From 8837be605cfc172d44d22abbfa853104f7aa9684 Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Tue, 5 Mar 2019 17:18:07 +0800 Subject: [PATCH 01/68] Fix jinja template bug under SA-Eventgen app --- docs/CONFIGURE.md | 2 +- docs/REFERENCE.md | 14 +++++- docs/SETUP.md | 8 ++++ docs/TUTORIAL.md | 2 + splunk_eventgen/README/eventgen.conf.spec | 14 +++++- .../lib/plugins/generator/jinja.py | 43 +++++++++++++------ .../splunk_app/README/eventgen.conf.spec | 14 +++++- tests/medium/plugins/test_jinja_generator.py | 37 ++++++++++++++++ .../jinja/eventgen.conf.jinja_basic | 11 +++++ .../jinja/templates/test_jinja_basic.template | 4 ++ 10 files changed, 133 insertions(+), 16 deletions(-) create mode 100644 tests/medium/plugins/test_jinja_generator.py create mode 100644 tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic create mode 100644 tests/sample_eventgen_conf/jinja/templates/test_jinja_basic.template diff --git a/docs/CONFIGURE.md b/docs/CONFIGURE.md index a171a184..3cb043ba 100644 --- a/docs/CONFIGURE.md +++ b/docs/CONFIGURE.md @@ -334,7 +334,7 @@ Tokens in the default generator can override the sample to allow dynamic content * Defaults to None. ###### Jinja -The following optinos are only valid with the jinja generator +The following options are only valid with the jinja generator. jinja_template_dir = example: templates * directory name inside the current eventgen.conf dir where jinja templates can be located diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 3361ebdb..e0326b97 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -402,7 +402,19 @@ latest = * Specifies the latest random time for generated events. * If this value is an absolute time, use the dispatch.time_format to format the value. * Defaults to now. - + +############################# +## JINJA TEMPLATE SETTINGS ## +############################# + +jinja_template_dir = + * directory name inside the current eventgen.conf dir where jinja templates can be located. + * default template directory is /samples/templates if not defined. +jinja_target_template = + * root template to load for all sample generation. +jinja_variables = + * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. + ################################ ## TOKEN REPLACEMENT SETTINGS ## ################################ diff --git a/docs/SETUP.md b/docs/SETUP.md index d2fc3756..bcaf3d70 100644 --- a/docs/SETUP.md +++ b/docs/SETUP.md @@ -161,4 +161,12 @@ To start generating data, simply enable the SA-Eventgen modinput by going to Set If you wish you add your bundle so that the modinput can detect your package: Package your eventgen.conf and sample files into a directory structure as outlined in the [configuration](CONFIGURE.md). After that's done, copy/move the bundle into your `${SPLUNK_HOME}/etc/apps/` directory and restart Splunk. If you have specific samples enabled in your eventgen.conf, you should see data streaming into the specified Splunk index. +Make sure the bundle app permission is global. You can config this in two ways: +* Log in to Splunk Web and navigate to Apps > Manage Apps. Find the bundle app row and set the permission to 'Global' on the Sharing column. +* Create a folder `metadata` under the bundle with file `default.meta` and add the following content: +``` +[] +export=system +``` + --- diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index f5b98499..7b2d746f 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -167,6 +167,8 @@ Running Eventgen with above conf file and template would result in below output. With above template, Eventgen iterates through a loop of 50000 and generate the data according to the template. Note that the template is in a JSON format with a key "_raw" which is a raw string of data. It is necessary that you follow this pattern for Eventgen Jinja generator to work. +> If you are using `SA-Eventgen` app rather than PyPi module, put `eventgen.conf` and template files into a directory structure as outlined in the [configuration](CONFIGURE.md). +Default templates folder is ``. You can also config absolute or relative path(relative to `eventgen.conf`) via `jinja_template_dir`. Let's look at how to extend an existing template. diff --git a/splunk_eventgen/README/eventgen.conf.spec b/splunk_eventgen/README/eventgen.conf.spec index efeb175a..87adb877 100644 --- a/splunk_eventgen/README/eventgen.conf.spec +++ b/splunk_eventgen/README/eventgen.conf.spec @@ -388,7 +388,19 @@ latest = * Specifies the latest random time for generated events. * If this value is an absolute time, use the dispatch.time_format to format the value. * Defaults to now. - + +############################# +## JINJA TEMPLATE SETTINGS ## +############################# + +jinja_template_dir = + * directory name inside the current eventgen.conf dir where jinja templates can be located. + * default template directory is /samples/templates if not defined. +jinja_target_template = + * root template to load for all sample generation. +jinja_variables = + * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. + ################################ ## TOKEN REPLACEMENT SETTINGS ## ################################ diff --git a/splunk_eventgen/lib/plugins/generator/jinja.py b/splunk_eventgen/lib/plugins/generator/jinja.py index 13ea0a44..52f3e63c 100644 --- a/splunk_eventgen/lib/plugins/generator/jinja.py +++ b/splunk_eventgen/lib/plugins/generator/jinja.py @@ -1,15 +1,17 @@ from __future__ import division -from generatorplugin import GeneratorPlugin -import datetime, time, os +import datetime +import time +import os +import random try: import ujson as json except: import json as json - from jinja2 import nodes from jinja2.ext import Extension -import random +from generatorplugin import GeneratorPlugin + class CantFindTemplate(Exception): @@ -21,6 +23,7 @@ def __init__(self, msg): self.msg = msg super(CantFindTemplate, self).__init__(msg) + class CantProcessTemplate(Exception): def __init__(self, msg): @@ -31,6 +34,7 @@ def __init__(self, msg): self.msg = msg super(CantProcessTemplate, self).__init__(msg) + class JinjaTime(Extension): tags = set(['time_now', 'time_slice', 'time_delta', 'time_backfill']) @@ -38,7 +42,7 @@ class JinjaTime(Extension): def _get_time_slice(earliest, latest, slices, target_slice, slice_type="lower"): """ This method will take a time block bounded by "earliest and latest", and a slice. It'll then divide the time - in sections and return a tuple with 3 arugments, the lower bound, the higher bound, and the target in the middle. + in sections and return a tuple with 3 arguments, the lower bound, the higher bound, and the target in the middle. :param earliest (in epoch): :param latest (in epoch): :param slices: @@ -83,7 +87,7 @@ def _time_now_epoch(self, date_format=None): time_now = time.mktime(time.localtime()) return time_now - def _time_slice_formatted(self,earliest, latest, count, slices, date_format='%Y-%m-%dT%H:%M:%S%z'): + def _time_slice_formatted(self, earliest, latest, count, slices, date_format='%Y-%m-%dT%H:%M:%S%z'): target_time = self._time_slice_epoch(earliest, latest, count, slices) return self._convert_epoch_formatted(target_time, date_format) @@ -173,7 +177,7 @@ def _increment_count(self, lines): raise Exception("Unable to process target count style: %s".format(self.jinja_count_type)) def gen(self, count, earliest, latest, samplename=None): - #TODO: Figure out how to gracefully tell generator plugins to exit when there is an error. + # TODO: Figure out how to gracefully tell generator plugins to exit when there is an error. try: from jinja2 import Environment, FileSystemLoader self.target_count = count @@ -186,20 +190,34 @@ def gen(self, count, earliest, latest, samplename=None): if self._sample.jinja_count_type in ["line_count", "cycles", "perDayVolume"]: self.jinja_count_type = self._sample.jinja_count_type startTime = datetime.datetime.now() - working_dir, working_config_file = os.path.split(self.config.configfile) + + # if eventgen is running as Splunk app the configfile is None + if self.config.configfile: + working_dir, working_config_file = os.path.split(self.config.configfile) + else: + splunk_home = os.environ["SPLUNK_HOME"] + app_name = getattr(self._sample, 'app', 'SA-Eventgen') + working_dir = os.path.join(splunk_home, 'etc', 'apps', app_name, 'default') + if not hasattr(self._sample, "jinja_template_dir"): - template_dir = "templates" + template_dir = os.path.join(os.path.dirname(working_dir), 'samples', 'templates') else: template_dir = self._sample.jinja_template_dir - target_template_dir = os.path.join(working_dir, template_dir) + + if not os.path.isabs(template_dir): + target_template_dir = os.path.join(working_dir, template_dir) + else: + target_template_dir = template_dir + if not hasattr(self._sample, "jinja_target_template"): raise CantFindTemplate("Template to load not specified in eventgen conf for stanza. Skipping Stanza") jinja_env = Environment( - loader=FileSystemLoader([target_template_dir, working_dir, template_dir], encoding='utf-8', followlinks=False), - extensions=['jinja2.ext.do', 'jinja2.ext.with_','jinja2.ext.loopcontrols', JinjaTime], + loader=FileSystemLoader([target_template_dir, working_dir, template_dir], encoding='utf-8', followlinks=False), + extensions=['jinja2.ext.do', 'jinja2.ext.with_', 'jinja2.ext.loopcontrols', JinjaTime], line_statement_prefix="#", line_comment_prefix="##" ) + jinja_loaded_template = jinja_env.get_template(str(self._sample.jinja_target_template)) if hasattr(self._sample, 'jinja_variables'): jinja_loaded_vars = json.loads(self._sample.jinja_variables) @@ -269,5 +287,6 @@ def gen(self, count, earliest, latest, samplename=None): self.logger.exception(e) return 1 + def load(): return JinjaGenerator diff --git a/splunk_eventgen/splunk_app/README/eventgen.conf.spec b/splunk_eventgen/splunk_app/README/eventgen.conf.spec index c2302eba..cf64da52 100644 --- a/splunk_eventgen/splunk_app/README/eventgen.conf.spec +++ b/splunk_eventgen/splunk_app/README/eventgen.conf.spec @@ -388,7 +388,19 @@ latest = * Specifies the latest random time for generated events. * If this value is an absolute time, use the dispatch.time_format to format the value. * Defaults to now. - + +############################# +## JINJA TEMPLATE SETTINGS ## +############################# + +jinja_template_dir = + * directory name inside the current eventgen.conf dir where jinja templates can be located. + * default template directory is /samples/templates if not defined. +jinja_target_template = + * root template to load for all sample generation. +jinja_variables = + * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. + ################################ ## TOKEN REPLACEMENT SETTINGS ## ################################ diff --git a/tests/medium/plugins/test_jinja_generator.py b/tests/medium/plugins/test_jinja_generator.py new file mode 100644 index 00000000..beab0b82 --- /dev/null +++ b/tests/medium/plugins/test_jinja_generator.py @@ -0,0 +1,37 @@ +import os +import sys +from mock import patch +from splunk_eventgen.__main__ import parse_args +from splunk_eventgen.eventgen_core import EventGenerator + +FILE_DIR = os.path.dirname(os.path.abspath(__file__)) +OUTPUT_FILE = 'test_jinja_generator_file_output.result' + + +class TestJinjaGenerator(object): + + def test_jinja_generator_to_file(self): + configfile = "tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic" + testargs = ["eventgen", "generate", configfile] + file_output_path = os.path.abspath(os.path.join(FILE_DIR, '..', '..', '..', OUTPUT_FILE)) + # remove the result file if it exists + if os.path.exists(file_output_path): + os.remove(file_output_path) + + with patch.object(sys, 'argv', testargs): + pargs = parse_args() + assert pargs.subcommand == 'generate' + assert pargs.configfile == configfile + eventgen = EventGenerator(args=pargs) + eventgen.start() + + assert os.path.isfile(file_output_path) + + with open(file_output_path, 'r') as outfile: + line_count = 1 + for output_line in outfile: + if not output_line or line_count == 11: + break + assert "I like little windbags" in output_line + assert "Im at: {0} out of: 10".format(line_count) in output_line + line_count += 1 diff --git a/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic new file mode 100644 index 00000000..e056790f --- /dev/null +++ b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic @@ -0,0 +1,11 @@ +[Test_Jinja] +end = 1 +count = 1 +generator = jinja +jinja_template_dir = templates +jinja_target_template = test_jinja_basic.template +jinja_variables = {"large_number":10} +earliest = -3s +latest = now +outputMode = file +fileName = test_jinja_generator_file_output.result diff --git a/tests/sample_eventgen_conf/jinja/templates/test_jinja_basic.template b/tests/sample_eventgen_conf/jinja/templates/test_jinja_basic.template new file mode 100644 index 00000000..486d629d --- /dev/null +++ b/tests/sample_eventgen_conf/jinja/templates/test_jinja_basic.template @@ -0,0 +1,4 @@ +{% for _ in range(0, large_number) %} +{%- time_now -%} + {"_time":"{{ time_now_epoch }}", "_raw":"{{ time_now_formatted }} I like little windbags. Im at: {{ loop.index }} out of: {{ large_number }}"} +{% endfor %} \ No newline at end of file From 3a664d31441b8c824b696fe5d540bb2f4631ffd7 Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Wed, 6 Mar 2019 12:56:42 -0800 Subject: [PATCH 02/68] Feature timeMultiple (#141) * Adjusting interval with timeMultiple --- docs/REFERENCE.md | 1 - splunk_eventgen/lib/eventgensamples.py | 36 ++++++++++---------------- splunk_eventgen/lib/eventgentimer.py | 20 +++++++++----- 3 files changed, 27 insertions(+), 30 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 3361ebdb..2897d1ab 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -287,7 +287,6 @@ autotimestamp = * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. timeMultiple = - * Only valid in mode = replay * Will slow down the replay of events by factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. diff --git a/splunk_eventgen/lib/eventgensamples.py b/splunk_eventgen/lib/eventgensamples.py index fd627ad1..7e14fb3f 100644 --- a/splunk_eventgen/lib/eventgensamples.py +++ b/splunk_eventgen/lib/eventgensamples.py @@ -84,7 +84,6 @@ class Sample(object): queueable = None autotimestamp = None - # Internal fields sampleLines = None sampleDict = None @@ -184,7 +183,7 @@ def getTSFromEvent(self, event, passed_token=None): # self.logger.debug("Testing '%s' as a time string against '%s'" % (timeString, timeFormat)) if timeFormat == "%s": ts = float(timeString) if len(timeString) < 10 else float(timeString) / (10**(len(timeString)-10)) - # self.logger.debugv("Getting time for timestamp '%s'" % ts) + # self.logger.debug("Getting time for timestamp '%s'" % ts) currentTime = datetime.datetime.fromtimestamp(ts) else: # self.logger.debugv("Getting time for timeFormat '%s' and timeString '%s'" % (timeFormat, timeString)) @@ -198,7 +197,7 @@ def getTSFromEvent(self, event, passed_token=None): currentTime = datetime.datetime.strptime(timeString, timeFormat) except AttributeError: pass - self.logger.debugv("Match '%s' Format '%s' result: '%s'" % (timeString, timeFormat, currentTime)) + self.logger.debug("Match '%s' Format '%s' result: '%s'" % (timeString, timeFormat, currentTime)) if type(currentTime) == datetime.datetime: break except ValueError: @@ -272,7 +271,7 @@ def earliestTime(self): # as an offset of now if they're relative times if self._earliestParsed != None: earliestTime = self.now() - self._earliestParsed - self.logger.debugv("Using cached earliest time: %s" % earliestTime) + self.logger.debug("Using cached earliest time: %s" % earliestTime) else: if self.earliest.strip()[0:1] == '+' or \ self.earliest.strip()[0:1] == '-' or \ @@ -281,18 +280,16 @@ def earliestTime(self): temptd = self.now(realnow=True) - tempearliest self._earliestParsed = datetime.timedelta(days=temptd.days, seconds=temptd.seconds) earliestTime = self.now() - self._earliestParsed - self.logger.debugv("Calulating earliestParsed as '%s' with earliestTime as '%s' and self.sample.earliest as '%s'" % (self._earliestParsed, earliestTime, tempearliest)) + self.logger.debug("Calulating earliestParsed as '%s' with earliestTime as '%s' and self.sample.earliest as '%s'" % (self._earliestParsed, earliestTime, tempearliest)) else: earliestTime = timeParser(self.earliest, timezone=self.timezone) - self.logger.debugv("earliestTime as absolute time '%s'" % earliestTime) - + self.logger.debug("earliestTime as absolute time '%s'" % earliestTime) return earliestTime - def latestTime(self): if self._latestParsed != None: latestTime = self.now() - self._latestParsed - self.logger.debugv("Using cached latestTime: %s" % latestTime) + self.logger.debug("Using cached latestTime: %s" % latestTime) else: if self.latest.strip()[0:1] == '+' or \ self.latest.strip()[0:1] == '-' or \ @@ -301,22 +298,21 @@ def latestTime(self): temptd = self.now(realnow=True) - templatest self._latestParsed = datetime.timedelta(days=temptd.days, seconds=temptd.seconds) latestTime = self.now() - self._latestParsed - self.logger.debugv("Calulating latestParsed as '%s' with latestTime as '%s' and self.sample.latest as '%s'" % (self._latestParsed, latestTime, templatest)) + self.logger.debug("Calulating latestParsed as '%s' with latestTime as '%s' and self.sample.latest as '%s'" % (self._latestParsed, latestTime, templatest)) else: latestTime = timeParser(self.latest, timezone=self.timezone) - self.logger.debugv("latstTime as absolute time '%s'" % latestTime) - + self.logger.debug("latstTime as absolute time '%s'" % latestTime) return latestTime def utcnow(self): return self.now(utcnow=True) def _openSampleFile(self): - self.logger.debugv("Opening sample '%s' in app '%s'" % (self.name, self.app)) + self.logger.debug("Opening sample '%s' in app '%s'" % (self.name, self.app)) self._sampleFH = open(self.filePath, 'rU') def _closeSampleFile(self): - self.logger.debugv("Closing sample '%s' in app '%s'" % (self.name, self.app)) + self.logger.debug("Closing sample '%s' in app '%s'" % (self.name, self.app)) self._sampleFH.close() def loadSample(self): @@ -329,11 +325,11 @@ def loadSample(self): if self.sampleDict == None: self._openSampleFile() if self.breaker == self.config.breaker: - self.logger.debugv("Reading raw sample '%s' in app '%s'" % (self.name, self.app)) + self.logger.debug("Reading raw sample '%s' in app '%s'" % (self.name, self.app)) self.sampleLines = self._sampleFH.readlines() # 1/5/14 CS Moving to using only sampleDict and doing the breaking up into events at load time instead of on every generation else: - self.logger.debugv("Non-default breaker '%s' detected for sample '%s' in app '%s'" \ + self.logger.debug("Non-default breaker '%s' detected for sample '%s' in app '%s'" \ % (self.breaker, self.name, self.app) ) sampleData = self._sampleFH.read() @@ -355,7 +351,7 @@ def loadSample(self): searchpos = 0 breakerMatch = breakerRE.search(sampleData, searchpos) while breakerMatch: - self.logger.debugv("Breaker found at: %d, %d" % (breakerMatch.span()[0], breakerMatch.span()[1])) + self.logger.debug("Breaker found at: %d, %d" % (breakerMatch.span()[0], breakerMatch.span()[1])) # Ignore matches at the beginning of the file if breakerMatch.span()[0] != 0: self.sampleLines.append(sampleData[extractpos:breakerMatch.span()[0]]) @@ -374,7 +370,7 @@ def loadSample(self): elif self.sampletype == 'csv': if self.sampleDict == None: self._openSampleFile() - self.logger.debugv("Reading csv sample '%s' in app '%s'" % (self.name, self.app)) + self.logger.debug("Reading csv sample '%s' in app '%s'" % (self.name, self.app)) self.sampleDict = [ ] self.sampleLines = [ ] # Fix to load large csv files, work with python 2.5 onwards @@ -415,7 +411,3 @@ def get_loaded_sample(self): else: self.loadSample() return self.sampleLines - - - - diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 2c7f6708..e82168b8 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -1,5 +1,5 @@ import logging -import datetime, time +import time import copy from timeparser import timeParserTimeMath from Queue import Full @@ -20,8 +20,6 @@ class Timer(object): Non-Queueable plugins, the Timer class calls the generator method of the plugin directly, tracks the amount of time the plugin takes to generate and sleeps the remaining interval before calling generate again. """ - - time = None countdown = None @@ -39,6 +37,7 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.time = time self.stopping = False self.countdown = 0 + self.interval = getattr(self.sample, "interval", config.interval) #enable the logger self._setup_logging() self.logger.debug('Initializing timer for %s' % sample.name if sample is not None else "None") @@ -48,6 +47,13 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.rater = rater_class(self.sample) self.generatorPlugin = self.config.getPlugin('generator.' + self.sample.generator, self.sample) self.outputPlugin = self.config.getPlugin('output.' + self.sample.outputMode, self.sample) + if self.sample.timeMultiple < 0: + self.logger.error("Invalid setting for timeMultiple: {}, value should be positive".format( + self.sample.timeMultiple)) + elif self.sample.timeMultiple != 1: + self.interval = self.sample.interval * self.sample.timeMultiple + self.logger.debug("Adjusting interval {} with timeMultiple {}, new interval: {}".format( + self.sample.interval, self.sample.timeMultiple, self.interval)) self.logger.info("Start '%s' generatorWorkers for sample '%s'" % (self.sample.config.generatorWorkers, self.sample.name)) # loggers can't be pickled due to the lock object, remove them before we try to pickle anything. @@ -92,7 +98,7 @@ def real_run(self): if self.sample.delay > 0: self.logger.info("Sample set to delay %s, sleeping." % self.sample.delay) time.sleep(self.sample.delay) - + self.logger.debug("Timer creating plugin for '%s'" % self.sample.name) self.executions = 0 @@ -127,7 +133,7 @@ def real_run(self): ret=realtime) while backfillearliest < realtime: et = backfillearliest - lt = timeParserTimeMath(plusminus="+", num=self.sample.interval, unit="s", ret=et) + lt = timeParserTimeMath(plusminus="+", num=self.interval, unit="s", ret=et) genPlugin = self.generatorPlugin(sample=self.sample) # need to make sure we set the queue right if we're using multiprocessing or thread modes genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) @@ -150,7 +156,7 @@ def real_run(self): "current interval size is {}, which is smaller than a raw event size {}. wait for the next turn.".format( count, raw_event_size)) previous_count_left = count - self.countdown = self.sample.interval + self.countdown = self.interval self.executions += 1 continue else: @@ -193,7 +199,7 @@ def real_run(self): pass # Sleep until we're supposed to wake up and generate more events - self.countdown = self.sample.interval + self.countdown = self.interval self.executions += 1 # 8/20/15 CS Adding support for ending generation at a certain time From a13e81960eb9287c60b3d665bbfe78ca446c411b Mon Sep 17 00:00:00 2001 From: Guodong Wang Date: Tue, 12 Mar 2019 17:48:13 +0800 Subject: [PATCH 03/68] Update issue templates add the bug report and feature request issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 49 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++ 2 files changed, 69 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..38af1c27 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,49 @@ +--- +name: Bug report +about: Provide the details of the bug to us in order to further triage and fix +title: "[BUG]" +labels: bug +assignees: li-wu, GordonWang + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Actual behavior** +A clear and concise description of what happens after doing the reproduce steps. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Sample files and eventgen.conf file** +Please attach your sample files and eventgen conf file + +**Do you run eventgen with SA-eventgen?** +Yes/No(No means you run eventgen with pip module mode) + +**If you are using SA-Eventgen with Splunk (please complete the following information):** + - OS: [e.g. Windows/Mac OS 10.14] + - Browser [e.g. chrome, safari] + - Eventgen Version [e.g. 22] + - Splunk Version[e.g. 7.1.3] + - What other apps you have installed in Splunk etc/apps? + +**If you are using eventgen with pip module mode (please complete the following information):** + - python version: [e.g. 2.6] + - OS: [e.g. Windows10] + - Virtual Env is used: Yes/No + - Eventgen Version [e.g. 6.3.2] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..30a5b6f2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea or improvement for this project +title: "[FEATURE/IMPROVEMENT]" +labels: enhancement +assignees: li-wu, GordonWang + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. What is the expect behavior of eventgen which can help you to resolve this problem. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From 571dbd6b0a8ebfcb5a413973818bcc8f3086f70e Mon Sep 17 00:00:00 2001 From: tonyl Date: Tue, 12 Mar 2019 13:53:47 -0700 Subject: [PATCH 04/68] changing the stanzas to produce data --- .../jinja/eventgen.conf.jinja | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja index cc9eab68..519cbcda 100644 --- a/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja +++ b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja @@ -1,4 +1,4 @@ -[Test_Jinja] +[test_jinja] end = 1 count = 1 generator = jinja @@ -7,10 +7,9 @@ jinja_target_template = test_jinja.template jinja_variables = {"large_number":50000} earliest = -3s latest = now -outputMode = httpevent -httpeventServers = {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]} +outputMode = modinput -[Test_Jinja_loop] +[test_jinja_loop] end = 1 count = 5 generator = jinja @@ -19,10 +18,9 @@ jinja_target_template = test_jinja_loop.template jinja_variables = {"large_number":1000} earliest = -3s latest = now -outputMode = httpevent -httpeventServers = {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]} +outputMode = modinput -[Test_Jinja_timeslice] +[test_jinja_timeslice] end = 1 generator = jinja jinja_template_dir = templates @@ -30,5 +28,4 @@ jinja_target_template = test_jinja_timeslice.template jinja_variables = {"large_number":1000} earliest = -3s latest = now -outputMode = httpevent -httpeventServers = {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]} \ No newline at end of file +outputMode = modinput From 03b7b919041e5122515b84c92feebfffb1f38d54 Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Fri, 15 Mar 2019 11:26:43 -0700 Subject: [PATCH 05/68] Windbag generator/count + end=0 edge cases (#145) * Generator handling for count = -1, end = 0 working properly --- docs/REFERENCE.md | 3 ++- splunk_eventgen/lib/eventgentimer.py | 5 ++++- splunk_eventgen/lib/plugins/generator/windbag.py | 7 ++++--- splunk_eventgen/lib/plugins/rater/config.py | 6 +++++- tests/sample_eventgen_conf/replay/eventgen.conf.replay | 5 ----- 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index dd44553a..25d08b77 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -320,9 +320,10 @@ backfillSearchUrl = in a cluster. count = - * Maximum number of events to generate per sample file + * Maximum number of events to generate per sample file (only used with sample mode). * -1 means replay the entire sample. * Defaults to -1. + * When count is -1 and the default generator is used, count depends on the size of the sample. perDayVolume = * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index e82168b8..6079cbaa 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -37,6 +37,7 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.time = time self.stopping = False self.countdown = 0 + self.executions = 0 self.interval = getattr(self.sample, "interval", config.interval) #enable the logger self._setup_logging() @@ -101,10 +102,12 @@ def real_run(self): self.logger.debug("Timer creating plugin for '%s'" % self.sample.name) - self.executions = 0 end = False previous_count_left = 0 raw_event_size = self.predict_event_size() + if self.end and int(self.end) == 0: + self.logger.info("End = 0, no events will be generated for sample '%s'" % self.sample.name) + end = True while not end: # Need to be able to stop threads by the main thread or this thread. self.config will stop all threads # referenced in the config object, while, self.stopping will only stop this one. diff --git a/splunk_eventgen/lib/plugins/generator/windbag.py b/splunk_eventgen/lib/plugins/generator/windbag.py index a279f008..a8276382 100644 --- a/splunk_eventgen/lib/plugins/generator/windbag.py +++ b/splunk_eventgen/lib/plugins/generator/windbag.py @@ -1,7 +1,6 @@ from __future__ import division from generatorplugin import GeneratorPlugin -import logging -import datetime, time +import datetime from datetime import timedelta class WindbagGenerator(GeneratorPlugin): @@ -9,7 +8,9 @@ def __init__(self, sample): GeneratorPlugin.__init__(self, sample) def gen(self, count, earliest, latest, samplename=None): - # print type(latest - earliest).total_seconds() + if count < 0: + self.logger.warn('Sample size not found for count=-1 and generator=windbag, defaulting to count=60') + count = 60 time_interval = timedelta.total_seconds((latest - earliest)) / count for i in xrange(count): current_time_object = earliest + datetime.timedelta(0, time_interval*(i+1)) diff --git a/splunk_eventgen/lib/plugins/rater/config.py b/splunk_eventgen/lib/plugins/rater/config.py index 1784de87..d15136bd 100644 --- a/splunk_eventgen/lib/plugins/rater/config.py +++ b/splunk_eventgen/lib/plugins/rater/config.py @@ -3,6 +3,7 @@ import logging.handlers import datetime import random +import os class ConfigRater(object): @@ -43,7 +44,10 @@ def _setup_logging(self): def rate(self): self._sample.count = int(self._sample.count) - if self._sample.count == -1: + # Let generators handle infinite count for themselves + if self._sample.count == -1 and self._sample.generator == 'default': + if not self._sample.sampleDict: + self.logger.error('No sample found for default generator, cannot generate events') self._sample.count = len(self._sample.sampleDict) self._generatorWorkers = int(self._generatorWorkers) count = self._sample.count/self._generatorWorkers diff --git a/tests/sample_eventgen_conf/replay/eventgen.conf.replay b/tests/sample_eventgen_conf/replay/eventgen.conf.replay index 7ecbaf29..6011721f 100755 --- a/tests/sample_eventgen_conf/replay/eventgen.conf.replay +++ b/tests/sample_eventgen_conf/replay/eventgen.conf.replay @@ -1,13 +1,8 @@ [replay] sampleDir = tests/sample_eventgen_conf/replay -timeMultiple = 1 backfill = -5s sampletype = raw outputMode = stdout -index = main -sourcetype = windbag -source = windbag.log -host = localhost end = 1 mode = replay From 9018b34b47d028afeb01f232a5b593c77ed907f3 Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Fri, 15 Mar 2019 15:36:57 -0700 Subject: [PATCH 06/68] Update docs (#146) * Updated docs, added release notes to changelog --- docs/ARCHITECTURE.md | 12 +- docs/BASICS.md | 8 +- docs/CHANGELOG.md | 47 +++ docs/CONFIGURE.md | 191 +++++---- docs/PERFORMANCE.md | 4 +- docs/PLUGINS.md | 32 +- docs/REFERENCE.md | 63 +-- docs/SETUP.md | 6 +- docs/TUTORIAL.md | 12 +- splunk_eventgen/README/eventgen.conf.spec | 479 ---------------------- 10 files changed, 218 insertions(+), 636 deletions(-) delete mode 100644 splunk_eventgen/README/eventgen.conf.spec diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index f8ec717c..4c185ab7 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -38,19 +38,19 @@ Depending on tunable parameters, these can be threads or processes and can eithe # Scaling -This queue architecture allows to get significant advantage by distributing processing. At each timer execution a generation job gets put in the queue. This queue by default is a Python Queue (either in queue.Queue or multiprocessing.Queue), but can also be configured to be a [Zeromq](http://zeromq.org/) push/pull queue via the network as well. This is significantly faster than Python's multiprocessing.Queue and allows us to scale beyond one machine. For details, see the [Performance guide](Performance.md) +This queue architecture allows significant advantages by distributing processing. At each timer execution a generation job gets put in the queue. This queue by default is a Python Queue (either in queue.Queue or multiprocessing.Queue). For details, see the [Performance guide](Performance.md) # Testing -Given the complexity and the reimplementation of a number of features during the version 4 refactor, we've also built out a number of test examples. We currently don't have test scripts built with assertions etc, but there are a series of configs and samples under the `tests/` directory which should demonstrate and allow testing of basic functionality. Check out the ``tests`` directory in the project for a set of example configs and samples. You can execute a test config by doing: +Given the complexity and the reimplementation of a number of features during refactors, we've also built out a number of test examples. We currently don't have test scripts built with assertions etc, but there are a series of configs and samples under the `tests/` directory which should demonstrate and allow testing of basic functionality. Check out the ``tests/sample_eventgen_conf`` directory in the project for commonly-used plugins and configurations. You can execute a test config by doing: - python bin/eventgen.py tests//.conf + python bin/eventgen.py generate tests//.conf # Server-Controller Architecture -This is a new feature included in/from the version 6.0.0. Traditionally, it has been difficult to configure multiple Eventgen instances at the same time. The performance of a single Eventgen instance is often limited in its architecture and compute power of the host machine. -Therefore, it is inevitable to use more than one Eventgen instance for larger data generation. We introduce server-controller architecture to do this in a more user friendly way. +This is a new feature included in version >= 6.0 Traditionally, it has been difficult to configure multiple Eventgen instances at the same time. The performance of a single Eventgen instance is often limited in its architecture and compute power of the host machine. +Therefore, it is inevitable that we will need to use more than one Eventgen instance for larger data generation. We introduce server-controller architecture to do this in a more user friendly way. In Server-Controller Architecture, we may have one or multiple servers (Eventgen instances), one controller and one instance of RabbitMQ. It is ok to run RabbitMQ locally with the controller. -Servers and a controller are communicating via RabbitMQ and a controller has a capability to broadcast incoming requests to the servers and aggregate the results to output to the users. +The Servers and controller are communicating via RabbitMQ, where the controller has a capability to broadcast incoming requests to the servers and aggregate the results to output to the users. diff --git a/docs/BASICS.md b/docs/BASICS.md index ddaf1b13..4762eb87 100644 --- a/docs/BASICS.md +++ b/docs/BASICS.md @@ -1,18 +1,16 @@ # Welcome -Thanks for checking out the tutorial. -This should hopefully get you through setting up a working event generator. It's only a tutorial though, so if you want a complete reference of all of the available configuration options, please check out the [eventgen.conf.spec](REFERENCE.md#eventgenconfspec) in the README directory. With that, feel free to dig right in, and feel free to post to the Issues page if you have any questions. +Welcome to the basics of Eventgen. +This should hopefully get you through setting up a working eventgen instance. For a complete reference of all of the available configuration options, please check out the [eventgen.conf.spec](REFERENCE.md#eventgenconfspec) in the docs directory. With that, feel free to dig right in, and please post to the Issues page if you have any questions. ## Replay Example -The first example we'll show you should likely cover 90% of the use cases you can imagine. Eventgen can take an export from another Splunk instance, or just a plain text file, and replay those events while replacing the time stamps. Eventgen will pause the amount of time between each event just like it happened in the original, so the events will appear to be coming out in real time. When Eventgen reaches the end of the file, it will automatically start over from the beginning. Since this allows you to use real data as your eventgen, like we said earlier, it'll cover 9 out of 10 of most people's use cases. +The first example we'll show you should likely cover 90% of the use cases you can imagine. Eventgen can take an export from another Splunk instance, or just a plain text file, and replay those events while replacing the time stamps. Eventgen will pause the amount of time between each event just like it happened in the original, so the events will appear to be coming out in real time. When Eventgen reaches the end of the file, it will automatically start over from the beginning. ### Making a Splunk export To build a seed for your new Eventgen, I recommend taking an export from an existing Splunk instance. You could also take a regular log file and use it for replay (in which case, you can omit sampletype=csv). There are a few considerations. First, Eventgen assumes its sample files are in chronological order. Second, it only uses index, host, source, sourcetype and \_raw fields. To accommodate that, whatever search you write, we recommend appending '| reverse | fields index, host, source, sourcetype, _raw' to your Splunk search and then doing an export to CSV format. Third, make sure you find all the different time formats inside the log file and set up tokens to replace for them, so limiting your initial search to a few sourcetypes is probably advisable. -This example was pulled from a simple search of \_internal on my Splunk instance. - ### Running the example You can easily run these examples by hand. In fact, for testing purposes, I almost always change outputMode = stdout to visually examine the data. Run the command below from the base directory of Eventgen. diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e69de29b..fc97f715 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -0,0 +1,47 @@ +6.3.4: +- Documentation cleanup +- Jinja template bugfix in app +- Implementation of 'timeMultiple’ option +- Templates for bugs/feature requests +- Fixed Jinja test configuration stanzas +- Default behavior for 'count' edge cases + +6.3.3: +- Added performance metrics compared to Eventgen 5.x +- New config option for generation-time metrics: outputCounter +- Jinja template fixes +- Timestamp parsing fix +- Output queueing fix for outputMode splunkstream +- Count rater fixes, now supports indefinite generation + +6.3.2: +- Fixed verbosity bug +- Added documentation + +6.3.1: +- Fixed Eventgen Volume APIs +- Improved Eventgen Server Logging +- Corrected Eventgen Server and Controller conf syncing issue +- Adding verbosity options (ERROR, INFO, DEBUG) to Eventgen modinput +- Implemented future event generation support in replay mode +- Fixed Jinja template's missing default values +- Adjusted logging message levels for less verbosity +- Fixed event count off by 1 issue +- Fixed unnecessary empty data generators being created +- Updated dependency list + +6.3.0: +- Bug fixes for the customer issues +- Documentation upgrade +- Code refactoring for version unification +- Logging improvements + +6.2.1: +- Fixing SA-Eventgen Dashboard and log searching +- Improving internal logging and fixing splunkd logging issue +- Fixing timestamping in default generator +- Fixing custom plugin integration +- Fixing SA-Eventgen app settings +- Supporting Eventgen 5 backward compatibility with additional features +- Better modinput process management +- Minor Bugfixes with various customer cases \ No newline at end of file diff --git a/docs/CONFIGURE.md b/docs/CONFIGURE.md index 3cb043ba..34c666a2 100644 --- a/docs/CONFIGURE.md +++ b/docs/CONFIGURE.md @@ -1,12 +1,20 @@ ## Configure ## -Now you probably wonder about how much data should Eventgen send? Or where should Eventgen send data to? Or how does Eventgen send data? Or what type of data do you want Eventgen to send? -After Eventgen is installed in any of the forms mentioned above, it is time to configure Eventgen. +After you have installed Eventgen by the method of your choosing, you may be asking some of the following questions: +* How much data should Eventgen send? +* Where should Eventgen send data? +* How does Eventgen send data? +* What type of data should Eventgen to send? +It's now time to configure Eventgen to your liking. There are two key concepts behind the configuration process of Eventgen: -* `eventgen.conf`: This is a ini-style configuration file that Eventgen parses to set global, default, and even sample-specific settings. These settings include which plugin to use, how much data to send, and where to send it to. Due to the complexity of the configuration file, it's strongly recommended you follow the [tutorial sections](TUTORIAL.md). Below you'll find every possible setting for configuration. -* `sample files`: This is a collection of text files that Eventgen will read on initiation. Samples act as templates for the raw data that Eventgen pumps out. As such, these templates can include tokens or specific replacement strings that will get modified during processing-time (ex. timestamps updated in real-time). For more information, see [this section](TUTORIAL.md#the-sample-file). +* `eventgen.conf`: This is a ini-style configuration file that Eventgen parses to set global, default, and even sample-specific settings. + These settings include which plugin to use, how much data to send, and where to send it to. Due to the complexity of the configuration file, + it's strongly recommended you follow the [tutorial sections](TUTORIAL.md). Below you'll find every possible setting for configuration. +* `sample files`: This is a collection of text files that Eventgen will read on initiation. Samples act as templates for the raw data that Eventgen pumps out. + As such, these templates can include tokens or specific replacement strings that will get modified during processing-time (ex. timestamps updated in real-time). + For more information, see [this section](TUTORIAL.md#the-sample-file). In addition, common use cases work around bundling these relevant files. Because Eventgen configs can be tightly coupled with custom sample files, they can be bundled up into a package itself, in the format: @@ -34,19 +42,18 @@ sample you wish to create, followed by key = value tuning options for that sampl count=100 ``` -Stanza names are one of the most important things and have default things it'll try to match. Stanza names will preform a match -search for a name of a sample file located in the current directory, or in a sample directory. If there is no match, eventgen will attempt -match any previous samples loaded. If there's a match, the stanza settings will be applied to all matches. Lastely, -if there is no match on the sample name or on the regex, then it'll check to see if there is a generator plugin name, and then will load that plugin for -generation. **Please note, "default" is a reserved name, and should not be used in any stanza title.** If you wish to apply a setting to all samples, please use the +Stanza names are one of the most important early configurations because they are used to find your sample file. Stanza names will perform a +search for the stanza name as a file, located in the current directory, the default samples directory, or a sample directory specified by the user. If no matching sample is found, Eventgen +finally searches for a generator plugin with the same name. Once a match is found, the stanza settings will be applied to all matched samples. +**Please note, "default" is a reserved name, and should not be used in any stanza title.** If you wish to apply a setting to all samples, please use the stanza name "global". #### Global Configuration Settings -There are some configuration settings that are meant to only be set on the global configuration. These settings will control and override settings that are core -eventgen settings. Below is a list of those options their descriptions: +There are some configuration settings that are meant to only be set on the global configuration. These settings will control and override settings that are core +eventgen settings. Below is a list of those options with their descriptions: threading = thread | process - * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. + * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. * Defaults to thread --- profiler = true | false @@ -54,65 +61,65 @@ eventgen settings. Below is a list of those options their descriptions: * Defaults to false --- useOutputQueue = true | false - * Disable the use of the output Queue. This forces every plugin to use a single outputqueue instead of allowing plugins that support - multithreading / processing to use uniq queues. ---- + * Disable the use of the output Queue. + * The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputtingto a file or to stdout/modular input. + * If you can multithread output, for example with splunkstream or s2s type outputs, setting this to false will give an order of magnitude or better performance improvement. + * Defaults to true + +--- outputWorkers = - * Has no use and still exists to stop eventgen from throwing errors while migrating from earlier versions + * Specifies how many threads or processes to stand up for handling output * Defaults to 1 --- generatorWorkers = - * Specifies how many threads/processes to use to generate events. Each stanza you have will occupy 1 thread / process as it processes. - tuning this number will consume more CPU and can have negatvie effects if overallocated. + * Specifies how many threads/processes to use to generate events. Each stanza you have will occupy 1 thread / process as it processes. + tuning this number will consume more CPU and can have negatvie effects if overallocated. * Defaults to 1 #### Stanza Configuration Settings -The following settings can be used on a per-stanza level. They allow each different generation sample to be massively changed and tuned. +The following settings can be used on a per-stanza level. They allow each different generation sample to be massively changed and tuned. ##### Generic Settings Generic settings work on all stanzas and all stanza types. disabled = true | false - * Like what it looks like. Will disable event generation for this sample. + * Like what it looks like. Will disable event generation for this sample. --- sampleDir = * Set a different directory to look for samples in -Eventgen is built of a simple connection of plugins. These plugins will control how fast events are generated, how they are generated, and where they are sent. +Eventgen is built of a simple connection of plugins. These plugins will control how fast events are generated, how they are generated, and where they are sent. As sample is processed, Eventgen will look at those plugins in the following in order: Timer > Rater > Generator > Outputer > Marker -Timer plugins are not configurable at this time, as most of the logic is pretty static for every followup plugin. They will run at a set frequency, and keep track of the time -between runs, as well as the amount of intervals that have been called. Every sample will create a timer, and those timers are placed in a timing queue. Right now there is a hardcoded limit -of 100 samples that are able to be processed at any given time. Adding more samples than this number, will cause previous samples to be pruned after a single -run. As each sample runs, it will then instantly call the rater to decide how many, if any, events should be created based on the specified configuration. +Timer plugins are not configurable at this time, as most of the logic is pretty static for every followup plugin. They will run at a set frequency, and keep track of the time +between runs, as well as the amount of intervals that have been called. Every sample will create a timer, and those timers are placed in a timing queue. Right now there is a hardcoded limit +of 100 samples that are able to be processed at any given time. Adding more samples than this number, will cause previous samples to be pruned after a single +run. As each sample runs, it will then instantly call the rater to decide how many, if any, events should be created based on the specified configuration. If there is supposed to be an event created, it will then create the generator, place it into the generator queue, and inform the generator how many events to create. -The generator will then run as fast as it can to finish generating ALL of those required events. As events are produced, they are placed in an output queue. -If the Eventgen is set to run in multiprocess mode, this outputqueue can be in 1 of two places. It will either be on the main eventgen process, or it'll be located -in the generator process. The generator will then check, "Can this outputter handle multi-thread?" If the answer is yes, the generator will place those events -on the generator output queue, if the answer is no, those events will be placed on the main Eventgen process' outputqueue. As soon as the maxout or max flush is hit for the outputter, -the generator will pause to send all of the currently queued events through the outputter. During the outputter process, if a marker plugin is specified, the marker -plugin will be called after processing the desired number of events. Once all of the required events have been generated, the timer will then check if the sample should be ran again, +The generator will then run as fast as it can to finish generating ALL of those required events. As events are produced, they are placed in an output queue. +If the Eventgen is set to run in multiprocess mode, this outputqueue can be in 1 of two places. It will either be on the main eventgen process, or it'll be located +in the generator process. The generator will then check, "Can this outputter handle multi-thread?" If the answer is yes, the generator will place those events +on the generator output queue, if the answer is no, those events will be placed on the main Eventgen process' outputqueue. As soon as the maxout or max flush is hit for the outputter, +the generator will pause to send all of the currently queued events through the outputter. During the outputter process, if a marker plugin is specified, the marker +plugin will be called after processing the desired number of events. Once all of the required events have been generated, the timer will then check if the sample should be ran again, if so, it places it at the end of the timing queue. The remainder of this document will follow the above structure on tuning the respective items for each plugin type. ##### Timer Settings -Timer settings will influence how frequently a generator is added into the generator queue. These settings will directly control the amount -of time and the frequency between each sample run. Example, a sample that has an interval of 10, will be checked every 10s for the amount of events -to create, and processed. Replay mode however, will only run 1 time. If you wish to have replay run multiple times, use the "end" attribute. +Timer settings will influence how frequently a generator is added into the generator queue. These settings will directly control the amount +of time and the frequency between each sample run. Example, a sample that has an interval of 10, will be checked every 10s for the amount of events +to create, and processed. Replay mode however, will only run 1 time. If you wish to have replay run multiple times, use the "end" attribute. interval = - * Not valid in mode = replay * How often to generate sample (in seconds). - * 0 means disabled. - * Defaults to 60 seconds. + * Defaults to 60. --- - rater = config | - * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify - how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. - * Required + rater = default | + * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify + how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. --- delay = * Specifies how long to wait until we begin generating events for this sample from startup. @@ -120,22 +127,23 @@ to create, and processed. Replay mode however, will only run 1 time. If you wi * Defaults to 0 which is disabled. --- end = | - * Will end execution on a specific time or a number of events - * Can be used to execute only a specified number of intervals or with backfill to generate events over a specific time window. + * Will end execution on a specific time or a number of intervals + * Can be used to execute only a specified number of intervals or with backfill to generate events over a specific time window. + * Disabled by default ##### Rater Settings -Rater settings will control "how many events" are generated. These plugins have the ability to dynamically adjust the flow of events to -create complex eventgeneration schemes. Rater plugins can create "noise" or "rampup/rampdown" examples or control datavolume based on a desired -amount of volume perday. These plugins can be set either in the cwd, or in lib/plugins/rater. +Rater settings will control "how many events" are generated. These plugins have the ability to dynamically adjust the flow of events to +create complex eventgeneration schemes. Rater plugins can create "noise" or "rampup/rampdown" examples or control datavolume based on a desired +amount of volume perday. These plugins can be set either in the cwd, or in lib/plugins/rater. count = * Not valid with "replay" mode. * Maximum number of events to generate per sample file - * 0 means replay the entire sample. - * Defaults to 0. + * -1 means replay the entire sample. + * Defaults to -1. --- perDayVolume = - * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow + * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow * eventgen to supply a target datavolume instead of a count for event generation. * Defaults to Null --- @@ -181,19 +189,19 @@ amount of volume perday. These plugins can be set either in the cwd, or in lib/ * Recommend passing 0.2 to give 20% randomization either way (plus or minus) ##### Generation Settings -All event generation in Eventgen, is controlled by generator plugins. These plugins can either exist in the cwd, or in lib/plugins/generators. -By changing the geneartor plugin, you will effecitvely completely change what's required in the stanza to produce events, and how they are produced. -Eventgen ships with a few stock generators: cweblog, default, perdayvolumegenerator, replay, jinja and windbag. Perdayvolume / Replay / sample are automatically -configured based on the "mode" option of the default generator. Generators also are also controlled by the "rater" plugin. Rater plugins are grouped -into this section, as eventgeneration would not be possible without specifying the rate of that generation. +All event generation in Eventgen is controlled by generator plugins. These plugins can either exist in the cwd, or in lib/plugins/generators. +By changing the generator plugin, you will effecitvely change what's required in the stanza to produce events, and how they are produced. +Eventgen ships with a few stock generators: cweblog, default, perdayvolumegenerator, replay, jinja and windbag. Perdayvolume / Replay / sample are automatically +configured based on the "mode" option of the default generator. Generators can also depend on the implementation of its corresponding "rater" plugin. Rater plugins are grouped +into this section, as eventgeneration would not be possible without determining the rate of that generation. ###### Generic Settings Generic settings are valid for all generators. generator = default | - * Specifies the generator plugin to use. Default generator will give behavior of eventgen pre-3.0 - which exclusively uses settings in eventgen.conf to control behavior. Generators in 3.0 are now - pluggable python modules which can be custom code. + * Specifies the generator plugin to use. + * The default generator exclusively uses settings in eventgen.conf to control behavior. + * All other generators are pluggable python modules which can be custom code. --- mode = sample | replay * Default is sample, which will generate count (+/- rating) events every configured interval @@ -204,7 +212,7 @@ Generic settings are valid for all generators. * Raw are raw events (default) * CSV are from an outputcsv or export from Splunk. CSV allows you to override output fields for the sample like host, index, source and sourcetype - from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has + from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has a header row which defines field names. --- timezone = local | @@ -230,13 +238,13 @@ The following options are only valid for the default Eventgen generator plugin. timeMultiple = * Only valid in mode = replay - * Will slow down the replay of events by factor. For example, allows a 10 minute sample + * Will slow down the replay of events by factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. --- timeField = * Only valid in mode = replay - * Will select the field to find the timestamp in. In many cases, time will come from a different + * Will select the field to find the timestamp in. In many cases, time will come from a different field in the CSV. --- backfill = @@ -254,7 +262,7 @@ The following options are only valid for the default Eventgen generator plugin. * For outside use cases where you need to take all the lines in a sample file and pretend they are one event, but count = 0 will not work because you want to replay all the lines more than once. Also, please note you can also use breaker=\r*\n\r*\n to break the sample file into multi-line - transactions that would work better than this as well. This is also useful where you want to bring + transactions that would work better than this as well. This is also useful where you want to bring in sampletype = csv and bundle that multiple times. * If bundlelines = true and the token replacementType is replaytimestamp, we will introduce some randomness into the times between items in the transaction in microseconds. @@ -288,16 +296,17 @@ Tokens in the default generator can override the sample to allow dynamic content * For replaytimestamp, the token will be replaced with the strptime specified in the replacement setting but the time will not be based on earliest and latest, but will instead be replaced by looking at the offset of the timestamp in the current event versus the first event, and then adding that time difference - to the timestamp when we started processing the sample. This allows for replaying events with a - new timestamp but to look much like the original transaction. Assumes replacement value is the same - strptime format as the original token we're replacing, otherwise it will fail. First timestamp will - be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file - with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. + to the timestamp when we started processing the sample. This allows for replaying events with a + new timestamp but to look much like the original transaction. Assumes replacement value is the same + strptime format as the original token we're replacing, otherwise it will fail. First timestamp will + be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file + with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. * For random, the token will be replaced with a type aware value (i.e. valid IPv4 Address). * For rated, the token will be replaced with a subset of random types (float, integer), which are rated by hourOfDayRate and dayOfWeekRate. * For file, the token will be replaced with a random value retrieved from a file specified in the replacement setting. - * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. + * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. + Multiple files can reference the same source file and receive different columns from the same random line. * For seqfile, the token will be replaced with a value that retrieved from (a column of) file sequentially. * For integerid, will use an incrementing integer as the replacement. * Defaults to None. @@ -307,20 +316,20 @@ Tokens in the default generator can override the sample to allow dynamic content * For , the token will be replaced with the value specified. * For , a strptime formatted string to replace the timestamp with * For ["list","of","strptime"], only used with replaytimestamp, a JSON formatted list of strptime - formats to try. Will find the replace with the same format which matches the replayed timestamp. + formats to try. Will find the replace with the same format which matches the replayed timestamp. * For guid, the token will be replaced with a random GUID value. * For ipv4, the token will be replaced with a random valid IPv4 Address (i.e. 10.10.200.1). * For ipv6, the token will be replaced with a random valid IPv6 Address (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). * For mac, the token will be replaced with a random valid MAC Address (i.e. 6e:0c:51:c6:c6:3a). * For integer[:], the token will be replaced with a random integer between start and end values where is a number greater than 0 - and is a number greater than 0 and greater than or equal to . If rated, + and is a number greater than 0 and greater than or equal to . If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For float[:], the token will be replaced with a random float between start and end values where is a number greater than 0 and is a number greater than 0 and greater than or equal to . For floating point numbers, precision will be based off the precision specified - in . For example, if we specify 1.0, precision will be one digit, if we specify + in . For example, if we specify 1.0, precision will be one digit, if we specify 1.0000, precision will be four digits. If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For string(), the token will be replaced with i number(s) of ASCII characters where 'i' is a number greater than 0. * For hex(), the token will be replaced with i number of Hexadecimal characters [0-9A-F] where 'i' is a number greater than 0. @@ -346,30 +355,30 @@ The following options are only valid with the jinja generator. * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. ##### Output Related Settings -These settings all relate to the currently selected output plugin. outputMode will search for a plugin located in either the cwd or lib>plugins>output. -There must be a loaded plugin that has a name corresponding to this value in order for the sample to be loaded. Below are the main outputplugins that ship with -eventgen today, and their values / settings. Please note while some plugins share options, each pluging will implement it's own configuration options. -Please note, any item that says "Required" must be set in order for that respective plugin to function. Anything with a default value will automatically -be set for you in the event you don't supply the configuration option. **If the required field is NOT supplied and a default is NOT set, your sample will be IGNORED.** +These settings all relate to the currently selected output plugin. outputMode will search for a plugin located in either the cwd or lib>plugins>output. +There must be a loaded plugin that has a name corresponding to this value in order for the sample to be loaded. Below are the main outputplugins that ship with +eventgen today, and their values / settings. Please note while some plugins share options, each pluging will implement it's own configuration options. +Please note, any item that says "Required" must be set in order for that respective plugin to function. Anything with a default value will automatically +be set for you in the event you don't supply the configuration option. **If the required field is NOT supplied and a default is NOT set, your sample will be IGNORED.** outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout - * Specifies how to output log data. Modinput is default. + * Specifies how to output log data. * If setting s2s, should set splunkHost and splunkPort * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort - * Required + * Defaults to modinput -After you've selected what plugin you'd like to use, please check that respective plugin's configuration. +After you've selected what plugin you'd like to use, please check that respective plugin's configuration. ###### Generic Settings The following are generic items that can be set for all outputplugins, but may not -specifically be supported by all plugins. Plugins that write to files like spool / file, will use Splunk's props/transforms on ingestion no matter what these items are set to. +specifically be supported by all plugins. Plugins that write to files like spool / file, will use Splunk's props/transforms on ingestion no matter what these items are set to. index = - * ONLY VALID WITH outputMode SPLUNKSTREAM - * Splunk index to write events to. Defaults to main if none specified. + * Only valid with outputMode 'splunkstream'. + * Splunk index to write events to. Defaults to main if none specified. --- source = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent - * Set event source in Splunk to . Defaults to 'eventgen' if none specified. + * Set event source in Splunk to . Defaults to 'eventgen' if none specified. --- sourcetype = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent @@ -377,7 +386,7 @@ specifically be supported by all plugins. Plugins that write to files like spoo --- host = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. + * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. --- host.token = * PCRE expression used to identify the host name (or partial name) for replacement. @@ -394,7 +403,7 @@ specifically be supported by all plugins. Plugins that write to files like spoo --- hostRegex = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Allows setting the event host via a regex from the actual event itself. Only used if host not set. + * Allows setting the event host via a regex from the actual event itself. Only used if host not set. --- maxIntervalsBeforeFlush = * Number of intervals before flushing the queue if the queue hasn't filled to maxQueueLength @@ -402,7 +411,7 @@ specifically be supported by all plugins. Plugins that write to files like spoo --- maxQueueLength = * Number of items before flushing the output queue - * Default is per outputMode specific + * Default is per outputMode specific ###### syslog syslogDestinationHost = @@ -436,7 +445,7 @@ specifically be supported by all plugins. Plugins that write to files like spoo ###### httpevent httpeventServers = * valid json that contains a list of server objects - * valid server objects contain a protocol, a address, a port and a session key. Example: + * valid server objects contain a protocol, a address, a port and a session key. Example: {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"12345-12345-123123123123123123"}]} * Required --- @@ -447,10 +456,10 @@ specifically be supported by all plugins. Plugins that write to files like spoo --- httpeventMaxPayloadSize = * the max payload size that is currently configured for HTTP event - * This setting can be tuned to send more events than Splunk is configured for. Please use caution when adjusting this value. + * This setting can be tuned to send more events than Splunk is configured for. Please use caution when adjusting this value. --- httpeventWaitResponse = - * wait for all responses on a generator output before returning the outputter. + * wait for all responses on a generator output before returning the outputter. * Defaults to true. ###### spool @@ -471,7 +480,7 @@ specifically be supported by all plugins. Plugins that write to files like spoo fileName = * Should set the full path * Uses a rotating file handler which will rotate the file at a certain size, by default 10 megs - and will by default only save 5 files. See fileMaxBytes and fileBackupFiles + and will by default only save 5 files. See fileMaxBytes and fileBackupFiles * Required --- fileMaxBytes = @@ -482,10 +491,10 @@ specifically be supported by all plugins. Plugins that write to files like spoo * Will keep this number of files (.1, .2, etc) after rotation * Defaults to 5 -###### splunkstream +###### splunkstream splunkHost = | * If you specify just one host, will only POST to that host, if you specify a JSON list, - it will POST to multiple hosts in a random distribution. This allows us from one eventgen to + it will POST to multiple hosts in a random distribution. This allows us from one eventgen to feed an entire cluster of Splunk indexers without needing forwarders. * JSON list should look like [ "host.name", "host2.name" ] * Required diff --git a/docs/PERFORMANCE.md b/docs/PERFORMANCE.md index c09975d9..90069adc 100644 --- a/docs/PERFORMANCE.md +++ b/docs/PERFORMANCE.md @@ -88,6 +88,4 @@ As a result, for a eventgen cluster with one server and one controller, we found # Removing the bottleneck -In this architecture, the primary bottleneck is serializing and deserializing the data between processes. We added the reduce step of the outputqueue primarily to handle modular input and file outputs where we needed a limited number of things touching a file or outputting to stdout. Where we can parallelize this work, we can remove the majority of the CPU bottleneck of passing data around between processes. - -For this reason, in July of 2014, we added a config option to disable using the outputqueue. In default/eventgen.conf, setting useOutputQueue to false or using `--disableOutputQueue` on the command line will output data directly from each GeneratorWorker rather than forcing the data back through the output queue. \ No newline at end of file +In this architecture, the primary bottleneck is serializing and deserializing the data between processes. We added the reduce step of the outputqueue primarily to handle modular input and file outputs where we needed a limited number of things touching a file or outputting to stdout. Where we can parallelize this work, we can remove the majority of the CPU bottleneck of passing data around between processes. \ No newline at end of file diff --git a/docs/PLUGINS.md b/docs/PLUGINS.md index 0ca68973..1f42c973 100644 --- a/docs/PLUGINS.md +++ b/docs/PLUGINS.md @@ -1,6 +1,6 @@ # Plugin Architecture -As of version 3.0, Eventgen now allows for plugins which extend our core functionality. There are three types of Plugins: +Eventgen allows for plugins which extend our core functionality. There are three types of Plugins: * Output * Output plugins take generated lists of events and send the events to a specific target @@ -12,7 +12,8 @@ As of version 3.0, Eventgen now allows for plugins which extend our core functio ## Anatomy of a Plugin -Plugins inherit from a OutputPlugin class and are placed in their appropriate directory, either in Eventgen app itself or inside another Splunk App's ``lib/plugins/`` directory. Let's take a look at the simplest plugin available to us, the Devnull output plugin: +Plugins inherit from a base plugin class and are placed in their appropriate directory, either in Eventgen app itself or inside another Splunk App's ``lib/plugins/`` directory. +Let's take a look at the simplest plugin available to us, the Devnull output plugin: ```python from __future__ import division @@ -37,13 +38,14 @@ def load(): return DevNullOutputPlugin ``` -First, we import the OutputPlugin superclass. For output plugins, they define a constant MAXQUEUELENGTH to determine the maximum amount of items in queue before forcing a queue flush. +First, we import the OutputPlugin superclass. For output plugins, they define a constant MAXQUEUELENGTH to determine the maximum amount of items in queue before forcing a queue flush. -``__init__()`` is very simple. It calls its superclass init and sets one variable, firsttime. ``flush()`` is also very simple. If it's the first time, open the file /dev/null, otherwise, output the queue by writing it to the already open file. +``__init__()`` is very simple. It calls its superclass init and sets one variable, firsttime. ``flush()`` is also very simple. +If it's the first time, open the file /dev/null, otherwise, output the queue by writing it to the already open file. Every Eventgen plugin defines a class and a ``load()`` method. The load() method is a universal function for determinig the class defined in the file. -Now, let's look at a slightly more complicated plugin, splunkstream.py in ``lib/plugins/output/splunkstream.py``. We're going to look just at the top of the class as its being defined: +Now, let's look at a slightly more complicated plugin, splunkstream.py in ``lib/plugins/output/splunkstream.py``. We're going to look just at the top of the class as its being defined: ```python class SplunkStreamOutputPlugin(OutputPlugin): @@ -57,11 +59,14 @@ class SplunkStreamOutputPlugin(OutputPlugin): MAXQUEUELENGTH should look normal, but these other class variables need a little explanation. ### Configuration Validation -Config validation is a modular system in Eventgen, and plugins must be allowed to specify additional configuration parameters that the main Eventgen will consider valid and store. *Note that eventgen.conf.spec generation is not yet automated, which means plugins must ship with the default distribution and eventgen.conf.spec must be maintained manually.* Eventually spec file generation will be automated as well. +Config validation is a modular system in Eventgen, and plugins must be allowed to specify additional configuration parameters that the main Eventgen will consider valid and store. +*Note that eventgen.conf.spec generation is not yet automated, which means plugins must ship with the default distribution and eventgen.conf.spec must be maintained manually.* +Eventually spec file generation will be automated as well. -The main configuration of Eventgen validates itself by a list of configuration parameters assigned by type, and each of the configuration parameters is validated by that type. The settings list is required: +The main configuration of Eventgen validates itself by a list of configuration parameters assigned by type, and each of the configuration parameters is validated by that type. +The settings list is required: -* validSettings | Defines the list of valid settings for this plugin +* validSettings | Defines the list of valid settings for this plugin The following lists are optional and likely to be used by many plugins: @@ -116,9 +121,13 @@ def load(): return WindbagGenerator ``` -For this generator plugin, notice we inherit from GeneratorPlugin instead of OutputPlugin. This plugin is also quite simple. In its ``__init__()`` method, it calls the superclass ``__init__()`` and it sets up two global variables, c, which holds the config (and is a Singleton pattern which can be instantiated many times) and a copy of the logger which we'll use for logging in most plugins. +For this generator plugin, notice we inherit from GeneratorPlugin instead of OutputPlugin. This plugin is also quite simple. +In its ``__init__()`` method, it calls the superclass ``__init__()`` and it sets up two global variables, c, which holds the config +(and is a Singleton pattern which can be instantiated many times) and a copy of the logger which we'll use for logging in most plugins. -Secondly, it defines a gen() method, which generates ``count`` events between ``earliest`` and ``latest`` time. In this case, we ignore the timestamp and return just event text. Then we call bulksend. This plugin has several performance optimizations: using a list constructor instead of a loop and using bulksend instead of send. Let's see how this could be implemented in a slightly less performant but easier to understand way: +Secondly, it defines a gen() method, which generates ``count`` events between ``earliest`` and ``latest`` time. In this case, we ignore the timestamp and return just event text. +Then we call bulksend. This plugin has several performance optimizations: using a list constructor instead of a loop and using bulksend instead of send. +Let's see how this could be implemented in a slightly less performant but easier to understand way: ```python def gen(self, count, earliest, latest): @@ -132,4 +141,5 @@ Here, we use ``send()`` instead of ``bulksend()`` and a loop to make it easier t # Shipping a Plugin -When you've developed a plugin that you want to use in your app, shipping it with your app is easy. Place any Eventgen plugin in your Splunk app's ``bin/`` directory and we'll search for and find any plugins referenced by a ``outputMode``, ``generator`` or ``rater`` config statement. \ No newline at end of file +When you've developed a plugin that you want to use in your app, shipping it with your app is easy. +Place any Eventgen plugin in your Splunk app's ``bin/`` directory and we'll search for and find any plugins referenced by a ``outputMode``, ``generator`` or ``rater`` config statement. \ No newline at end of file diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 25d08b77..2b939a14 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -3,7 +3,7 @@ ``` # Copyright (C) 2005-2018 Splunk Inc. All Rights Reserved. # -# This file contains all possible options for an eventgen.conf file. Use this file to configure +# This file contains all possible options for an eventgen.conf file. Use this file to configure # Splunk's event generation properties. # # To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. @@ -12,7 +12,7 @@ # To learn more about configuration files (including precedence) please see the documentation # located at http://www.splunk.com/base/Documentation/latest/Admin/Aboutconfigurationfiles # -# CAUTION: You can drastically affect your Splunk installation by changing these settings. +# CAUTION: You can drastically affect your Splunk installation by changing these settings. # Consult technical support (http://www.splunk.com/page/submit_issue) if you are not sure how # to configure this file. # @@ -88,13 +88,13 @@ outputCounter = false * seqfile -> OR : disabled = true | false - * Like what it looks like. Will disable event generation for this sample. + * Like what it looks like. Will disable event generation for this sample. sampleDir = * Set a different directory to look for samples in threading = thread | process - * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. + * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. * Defaults to thread profiler = true | false @@ -102,7 +102,8 @@ profiler = true | false * Defaults to false useOutputQueue = true | false - * Disable the use of the output Queue. The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputting to a file or to stdout/modular input. Defaults to true. If you can multithread output, for example with splunkstream or s2s type outputs, setting this to false will give an order of magnitude or better performance improvement. + * Disable the use of the output Queue. The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputting to a file or to stdout/modular input. + * Default value depends on the output plugin being used. ############################# ## OUTPUT RELATED SETTINGS ## @@ -114,7 +115,7 @@ outputWorkers = * Defaults to 1 outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout - * Specifies how to output log data. Modinput is default. + * Specifies how to output log data. Modinput is default. * If setting spool, should set spoolDir * If setting file, should set fileName * If setting splunkstream, should set splunkHost, splunkPort, splunkMethod, splunkUser and splunkPassword if not Splunk embedded @@ -154,7 +155,7 @@ httpeventMaxPayloadSize = * the max payload size that is currently configured for HTTP event httpeventWaitResponse = - * wait for all responses on a generator output before returning the outputter. Defaults to true. + * wait for all responses on a generator output before returning the outputter. Defaults to true. spoolDir = * Spool directory is the generated files destination directory. @@ -171,7 +172,7 @@ spoolFile = fileName = * Should set the full path * Uses a rotating file handler which will rotate the file at a certain size, by default 10 megs - and will by default only save 5 files. See fileMaxBytes and fileBackupFiles + and will by default only save 5 files. See fileMaxBytes and fileBackupFiles fileMaxBytes = * Will rotate a file output at this given size @@ -183,7 +184,7 @@ fileBackupFiles = splunkHost = | * If you specify just one host, will only POST to that host, if you specify a JSON list, - it will POST to multiple hosts in a random distribution. This allows us from one eventgen to + it will POST to multiple hosts in a random distribution. This allows us from one eventgen to feed an entire cluster of Splunk indexers without needing forwarders. * JSON list should look like [ "host.name", "host2.name" ] @@ -207,11 +208,11 @@ accessToken = index = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Splunk index to write events to. Defaults to main if none specified. + * Splunk index to write events to. Defaults to main if none specified. source = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent - * Set event source in Splunk to . Defaults to 'eventgen' if none specified. + * Set event source in Splunk to . Defaults to 'eventgen' if none specified. sourcetype = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent @@ -219,11 +220,11 @@ sourcetype = host = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. + * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. hostRegex = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Allows setting the event host via a regex from the actual event itself. Only used if host not set. + * Allows setting the event host via a regex from the actual event itself. Only used if host not set. maxIntervalsBeforeFlush = * Number of intervals before flushing the queue if the queue hasn't filled to maxQueueLength @@ -243,8 +244,8 @@ outputCounter = true | false ############################### generator = default | - * Specifies the generator plugin to use. Default generator will give behavior of eventgen pre-3.0 - which exclusively uses settings in eventgen.conf to control behavior. Generators in 3.0 are now + * Specifies the generator plugin to use. Default generator will give behavior of eventgen pre-3.0 + which exclusively uses settings in eventgen.conf to control behavior. Generators in 3.0 are now pluggable python modules which can be custom code. generatorWorkers = @@ -252,8 +253,8 @@ generatorWorkers = * Defaults to 1 rater = config | - * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify - how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. + * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify + how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. mode = sample | replay * Default is sample, which will generate count (+/- rating) events every configured interval @@ -263,7 +264,7 @@ sampletype = raw | csv * Raw are raw events (default) * CSV are from an outputcsv or export from Splunk. CSV allows you to override output fields for the sample like host, index, source and sourcetype - from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has + from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has a header row which defines field names. OVERRIDES FOR DEFAULT FIELDS WILL ONLY WITH WITH outputMode SPLUNKSTREAM. @@ -287,13 +288,13 @@ autotimestamp = * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. timeMultiple = - * Will slow down the replay of events by factor. For example, allows a 10 minute sample + * Will slow down the replay of events by factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. timeField = * Only valid in mode = replay - * Will select the field to find the timestamp in. In many cases, time will come from a different + * Will select the field to find the timestamp in. In many cases, time will come from a different field in the CSV. timezone = local | @@ -326,7 +327,7 @@ count = * When count is -1 and the default generator is used, count depends on the size of the sample. perDayVolume = - * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow + * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow * eventgen to supply a target datavolume instead of a count for event generation. * Defaults to Null @@ -334,7 +335,7 @@ bundlelines = true | false * For outside use cases where you need to take all the lines in a sample file and pretend they are one event. Also, please note you can also use breaker=\r*\n\r*\n to break the sample file into multi-line - transactions that would work better than this as well. This is also useful where you want to bring + transactions that would work better than this as well. This is also useful where you want to bring in sampletype = csv and bundle that multiple times. * If bundlelines = true and the token replacementType is replaytimestamp, we will introduce some randomness into the times between items in the transaction in microseconds. @@ -432,16 +433,16 @@ token..replacementType = static | timestamp | replaytimestamp | random | rate * For replaytimestamp, the token will be replaced with the strptime specified in the replacement setting but the time will not be based on earliest and latest, but will instead be replaced by looking at the offset of the timestamp in the current event versus the first event, and then adding that time difference - to the timestamp when we started processing the sample. This allows for replaying events with a - new timestamp but to look much like the original transaction. Assumes replacement value is the same - strptime format as the original token we're replacing, otherwise it will fail. First timestamp will - be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file - with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. + to the timestamp when we started processing the sample. This allows for replaying events with a + new timestamp but to look much like the original transaction. Assumes replacement value is the same + strptime format as the original token we're replacing, otherwise it will fail. First timestamp will + be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file + with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. * For random, the token will be replaced with a type aware value (i.e. valid IPv4 Address). * For rated, the token will be replaced with a subset of random types (float, integer), which are rated by hourOfDayRate and dayOfWeekRate. * For file, the token will be replaced with a random value retrieved from a file specified in the replacement setting. - * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. + * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. * For integerid, will use an incrementing integer as the replacement. * Defaults to None. @@ -450,20 +451,20 @@ token..replacement = | | ["list","of","strptime"] | guid * For , the token will be replaced with the value specified. * For , a strptime formatted string to replace the timestamp with * For ["list","of","strptime"], only used with replaytimestamp, a JSON formatted list of strptime - formats to try. Will find the replace with the same format which matches the replayed timestamp. + formats to try. Will find the replace with the same format which matches the replayed timestamp. * For guid, the token will be replaced with a random GUID value. * For ipv4, the token will be replaced with a random valid IPv4 Address (i.e. 10.10.200.1). * For ipv6, the token will be replaced with a random valid IPv6 Address (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). * For mac, the token will be replaced with a random valid MAC Address (i.e. 6e:0c:51:c6:c6:3a). * For integer[:], the token will be replaced with a random integer between start and end values where is a number greater than 0 - and is a number greater than 0 and greater than or equal to . If rated, + and is a number greater than 0 and greater than or equal to . If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For float[:], the token will be replaced with a random float between start and end values where is a number greater than 0 and is a number greater than 0 and greater than or equal to . For floating point numbers, precision will be based off the precision specified - in . For example, if we specify 1.0, precision will be one digit, if we specify + in . For example, if we specify 1.0, precision will be one digit, if we specify 1.0000, precision will be four digits. If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For string(), the token will be replaced with i number(s) of ASCII characters where 'i' is a number greater than 0. * For hex(), the token will be replaced with i number of Hexadecimal characters [0-9A-F] where 'i' is a number greater than 0. diff --git a/docs/SETUP.md b/docs/SETUP.md index bcaf3d70..0558b6e6 100644 --- a/docs/SETUP.md +++ b/docs/SETUP.md @@ -1,6 +1,7 @@ ## Install ## -There are a multiple ways to using Eventgen, and you should choose the method that best fits your use case. Below are the two major ways to use Eventgen - as a PyPI module and as a Splunk App. Follow the instructions below depending on your ideal use: +There are multiple ways to use Eventgen, and you should choose the method that best fits your use case. +Below are the two major ways to use Eventgen - as a PyPI module and as a Splunk App. Follow the instructions below depending on your ideal use: * Install / Use Eventgen as a [Splunk App](#splunk-app-installation) @@ -33,9 +34,6 @@ There are a multiple ways to using Eventgen, and you should choose the method th * You have to run the "build" command to produce a Splunk app * Harder to troubleshoot (especially in multiprocess mode) - - - --- ## PyPI Installation / First Run ##### diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index 7b2d746f..4710a78e 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -3,7 +3,7 @@ The primary source of configuration done in Eventgen is governed by the `eventgen.conf` file. * If deployed using containers, Eventgen will look for eventgen.conf in bundles under the `default` directory. For instance, if your bundle is named "datamix-app", you should archive your eventgen.conf in "datamix-app/default/eventgen.conf". -* If deployed as a Splunk App, Eventgen will look for eventgen.conf files for every app installed in Splunk, and will generate events for every eventgen.conf file it finds. This is convenient if you want to design event generation into a Technology Addon (TA) or other type of Splunk app. You can ship Eventgen configurations with your app and distribute Eventgen app separately. +* If deployed as a Splunk App, Eventgen will look for eventgen.conf files for every app installed in Splunk, and will generate events for every eventgen.conf file it finds. This is convenient if you want to design event generation into a Technology Addon (TA) or other type of Splunk app. You can ship Eventgen configurations with your app and distribute the Eventgen app separately. The INI format of eventgen.conf can have one or more stanzas. Each stanza name is a sample file it will be reading from. There a number of options available in each stanza. For instance, breaking down this tutorial file option-by-option, we can see how this file will be used to set up Eventgen: @@ -28,7 +28,7 @@ The INI format of eventgen.conf can have one or more stanzas. Each stanza name i ``` [sample.tutorial1] ``` -This is the stanza name and the name of the file in the samples/ directory of Eventgen or your bundle that you want to read from. You can also specify a regex here to match multiple files of similar extensions/naming conventions. +This is the stanza name and the name of the sample file in Eventgen or your bundle that you want to read from. You can also specify a regex here to match multiple files of similar extensions/naming conventions. ``` mode = replay @@ -58,7 +58,7 @@ A search to run to find the last events generated for this stanza. If this retur ``` outputMode = splunkstream ``` -There are various outputModes available (see the [spec](REFERENCE.md#eventgenconfspec)). The splunkstream mode will output via the Splunk [receivers/stream](http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTinput#receivers.2Fstream) endpoint straight into Splunk. This allows us to specify things like index, host, source and sourcetype to Splunk at index time. In this case, we're getting those values from sampletype = csv rather than specifying them here in eventgen.conf for the sample. +There are various outputModes available (see the [spec](REFERENCE.md#eventgenconfspec)). The splunkstream mode will output via the Splunk [receivers/stream](http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI/RESTinput#receivers.2Fstream) endpoint straight into Splunk. This allows us to specify things like index, host, source and sourcetype to Splunk at index time. In this case, we're getting those values directly from our sample rather than specifying them here in eventgen.conf. ``` splunkHost = localhost @@ -69,11 +69,11 @@ Parameters for setting up outputMode = splunkstream. This is only required if we ``` token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2},\d{3} - token.0.replacementType = timestamp + token.0.replacementType = replaytimestamp token.0.replacement = %Y-%m-%d %H:%M:%S,%f ``` -The 3 tokens are virtually the same, only with different regular expressions and strptime formats. This is a timestamp replacement, which will find the timestamp specified by the regular expression and replace it with a current (or relative to a backfill) time based on the stprtime format. Generally you'll define a regular expression and a strptime format to match. -For more information see [regular expressions](http://lmgtfy.com/?q=regex) and [striptime](http://lmgtfy.com/?q=strptime). +All sets of token replacement lines will look very similar, with different regular expressions and strptime formats. This is a replaytimestamp replacement, which will find the timestamp specified by the regular expression and replace it with a current (or relative to the first event) time based on the stprtime format. Generally you'll define a regular expression and a strptime format to match. +For more information see [regular expressions](http://lmgtfy.com/?q=regex) and [striptime](http://lmgtfy.com/?q=strptime). You can also read more about the different replacement types on the [reference page](REFERENCE.md#eventgenconfspec). That's it, pretty simple! diff --git a/splunk_eventgen/README/eventgen.conf.spec b/splunk_eventgen/README/eventgen.conf.spec deleted file mode 100644 index 87adb877..00000000 --- a/splunk_eventgen/README/eventgen.conf.spec +++ /dev/null @@ -1,479 +0,0 @@ -# Copyright (C) 2005-2015 Splunk Inc. All Rights Reserved. -# -# This file contains all possible options for an eventgen.conf file. Use this file to configure -# Splunk's event generation properties. -# -# To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. -# For examples, see eventgen.conf.example. You must restart Splunk to enable configurations. -# -# To learn more about configuration files (including precedence) please see the documentation -# located at http://www.splunk.com/base/Documentation/latest/Admin/Aboutconfigurationfiles -# -# CAUTION: You can drastically affect your Splunk installation by changing these settings. -# Consult technical support (http://www.splunk.com/page/submit_issue) if you are not sure how -# to configure this file. -# - -## IMPORTANT! Do not specify any settings under a default stanza -## The layering system will not behave appropriately -## Use [global] instead -[default] - -[global] -disabled = false -debug = false -verbosity = 40 -spoolDir = $SPLUNK_HOME/var/spool/splunk -spoolFile = -breaker = [^\r\n\s]+ -mode = sample -sampletype = raw -interval = 60 -delay = 0 -timeMultiple = 1 -## 0 means all lines in sample -count = 0 -## earliest/latest = now means timestamp replacements default to current time -earliest = now -latest = now -# hourOfDayRate = { "0": 0.30, "1": 0.10, "2": 0.05, "3": 0.10, "4": 0.15, "5": 0.25, "6": 0.35, "7": 0.50, "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82, "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70, "22": 0.60, "23": 0.45 } -# dayOfWeekRate = { "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 } -# minuteOfHourRate = { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 1, "36": 1, "37": 1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1, "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1, "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 } -randomizeCount = 0.2 -randomizeEvents = false -outputMode = spool -fileMaxBytes = 10485760 -fileBackupFiles = 5 -splunkPort = 8089 -splunkMethod = https -index = main -source = eventgen -sourcetype = eventgen -host = 127.0.0.1 -outputWorkers = 1 -generator = default -rater = config -generatorWorkers = 1 -timeField = _raw -threading = thread -profiler = false -maxIntervalsBeforeFlush = 3 -maxQueueLength = 0 -autotimestamps = [ ] -autotimestamp = false - - -[] - * This stanza defines a given sample file contained within the samples directory. - * This stanza can be specified as a PCRE. - * Hardcoded to $SPLUNK_HOME/etc/apps//samples/. - * This stanza is only valid for the following replacementType -> replacement values: - * static -> - * timestamp -> - * replaytimestamp -> - * random -> ipv4 - * random -> ipv6 - * random -> mac - * random -> integer[:] - * random -> float[:] - * random -> string() - * random -> hex([integer]) - * rated -> integer[:] - * rated -> float[:] - * file -> - * mvfile -> : - -disabled = true | false - * Like what it looks like. Will disable event generation for this sample. - -sampleDir = - * Set a different directory to look for samples in - -threading = thread | process - * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. - * Defaults to thread - -profiler = true | false - * Run eventgen with python profiler on - * Defaults to false - -useOutputQueue = true | false - * Disable the use of the output Queue. The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputting to a file or to stdout/modular input. Defaults to true. If you can multithread output, for example with splunkstream or s2s type outputs, setting this to false will give an order of magnitude or better performance improvement. - -############################# -## OUTPUT RELATED SETTINGS ## -############################# - -outputWorkers = - * Specifies how many threads or processes to stand up to handle output - * Generally if using TCP based outputs like splunkstream, more could be required - * Defaults to 1 - -outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout - * Specifies how to output log data. Modinput is default. - * If setting spool, should set spoolDir - * If setting file, should set fileName - * If setting splunkstream, should set splunkHost, splunkPort, splunkMethod, splunkUser and splunkPassword if not Splunk embedded - * If setting s2s, should set splunkHost and splunkPort - * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort - -syslogDestinationHost = - * Defaults to 127.0.0.1 - -syslogDestinationPort = - * Defaults to port 1514 - * Only supports UDP ports - -tcpDestinationHost = - * Defaults to 127.0.0.1 - -tcpDestinationPort = - * Defaults to port 3333 - -udpDestinationHost = - * Defaults to 127.0.0.1 - -udpDestinationPort = - * Defaults to port 3333 - -httpeventServers = - * valid json that contains a list of server objects - * valid server objects contain a protocol, a address, a port and a session key - * {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"12345-12345-123123123123123123"}]} - -httpeventOutputMode = roundrobin | mirror - * in roundrobin mode, the HEC/Battlecat plugin will output to a random server out of the server pool - * in mirror moded, HEC/Battlecat plugin will mirror the event to every server specified in the server pool - -httpeventMaxPayloadSize = - * the max payload size that is currently configured for HTTP event - -httpeventWaitResponse = - * wait for all responses on a generator output before returning the outputter. Defaults to true. - -spoolDir = - * Spool directory is the generated files destination directory. - * Only valid in spool outputMode. - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\var\\spool\\splunk). - * Unix separators will work on Windows and vice-versa. - * Defaults to $SPLUNK_HOME/var/spool/splunk - -spoolFile = - * Spool file is the generated files name. - * Not valid if stanza is a pattern. - * Defaults to (sample file name). - -fileName = - * Should set the full path - * Uses a rotating file handler which will rotate the file at a certain size, by default 10 megs - and will by default only save 5 files. See fileMaxBytes and fileBackupFiles - -fileMaxBytes = - * Will rotate a file output at this given size - * Defaults to 10 Megabytes (10485760 bytes) - -fileBackupFiles = - * Will keep this number of files (.1, .2, etc) after rotation - * Defaults to 5 - -splunkHost = | - * If you specify just one host, will only POST to that host, if you specify a JSON list, - it will POST to multiple hosts in a random distribution. This allows us from one eventgen to - feed an entire cluster of Splunk indexers without needing forwarders. - * JSON list should look like [ "host.name", "host2.name" ] - -splunkPort = - * Defaults to the default Splunk management port 8089 - -splunkMethod = http | https - * Defaults to https - -splunkUser = - * User with rights to post to REST endpoint receivers/stream - -splunkPass = - * Password for SplunkUser - -projectID = - * Project ID for Splunk Storm - -accessToken = - * Access Token for Splunk Storm - -index = - * ONLY VALID WITH outputMode SPLUNKSTREAM - * Splunk index to write events to. Defaults to main if none specified. - -source = - * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent - * Set event source in Splunk to . Defaults to 'eventgen' if none specified. - -sourcetype = - * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent - * Set event sourcetype in Splunk to Defaults to 'eventgen' if none specified. - -host = - * ONLY VALID WITH outputMode SPLUNKSTREAM - * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. - -hostRegex = - * ONLY VALID WITH outputMode SPLUNKSTREAM - * Allows setting the event host via a regex from the actual event itself. Only used if host not set. - -maxIntervalsBeforeFlush = - * Number of intervals before flushing the queue if the queue hasn't filled to maxQueueLength - * Defaults to 3 - -maxQueueLength = - * Number of items before flushing the output queue - * Default is per outputMode specific - - -############################### -## EVENT GENERATION SETTINGS ## -############################### - -generator = default | - * Specifies the generator plugin to use. Default generator will give behavior of eventgen pre-3.0 - which exclusively uses settings in eventgen.conf to control behavior. Generators in 3.0 are now - pluggable python modules which can be custom code. - -generatorWorkers = - * Specifies how many threads to use to generate events - * Defaults to 1 - -rater = config | - * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify - how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. - -mode = sample | replay - * Default is sample, which will generate count (+/- rating) events every configured interval - * Replay will instead read the file and leak out events, replacing timestamps, - -sampletype = raw | csv - * Raw are raw events (default) - * CSV are from an outputcsv or export from Splunk. - CSV allows you to override output fields for the sample like host, index, source and sourcetype - from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has - a header row which defines field names. - OVERRIDES FOR DEFAULT FIELDS WILL ONLY WITH WITH outputMode SPLUNKSTREAM. - -interval = - * Only valid in mode = sample - * How often to generate sample (in seconds). - * 0 means disabled. - * Defaults to 60 seconds. - -delay = - * Specifies how long to wait until we begin generating events for this sample - * Primarily this is used so we can stagger sets of samples which similar but slightly different data - * Defaults to 0 which is disabled. - -autotimestamp = - * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. - -timeMultiple = - * Only valid in mode = replay - * Will slow down the replay of events by factor. For example, allows a 10 minute sample - to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. - By the converse, make timeMultiple 0.5 will make the events run twice as fast. - -timeField = - * Only valid in mode = replay - * Will select the field to find the timestamp in. In many cases, time will come from a different - field in the CSV. - -timezone = local | - * If set to 'local', will output local time, if set to '0000' will output UTC time - * Otherwise it must be a timezone offset like +hhmm or -hhmm, for example: - US Eastern Standard (EST) would be: timezone = -0500 - US Pacific Daylight (PDT) would be: timezone = -0700 - Indian Standard would be timezone = +0530 - * Valid range +2359 to -2359 (The last two digits are MINUTES, so they should be within 0-59) - -backfill = - * Specified in Splunk's relative time language, used to set a time to backfill events - -end = | - * Will end execution on a specific time or a number of events - * Can be used to execute only a specified number of intervals or with backfill to generate events over a specific time window. - -backfillSearch = - * If outputMode = splunkstream, this will run this search, appending '| head 1', and narrow the - backfill range specified with backfill to when the search has last seen events. - -backfillSearchUrl = - * Defaults to splunkMethod://splunkHost:splunkPort/, can override in case you're running - in a cluster. - -count = - * Maximum number of events to generate per sample file - * 0 means replay the entire sample. - * Defaults to 0. - -perDayVolume = - * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow - * eventgen to supply a target datavolume instead of a count for event generation. - * Defaults to Null - -bundlelines = true | false - * For outside use cases where you need to take all the lines in a sample file and pretend they are - one event, but count = 0 will not work because you want to replay all the lines more than once. - Also, please note you can also use breaker=\r*\n\r*\n to break the sample file into multi-line - transactions that would work better than this as well. This is also useful where you want to bring - in sampletype = csv and bundle that multiple times. - * If bundlelines = true and the token replacementType is replaytimestamp, we will introduce some randomness - into the times between items in the transaction in microseconds. - * Will override any breaker setting. - -hourOfDayRate = - * Takes a JSON hash of 24 hours with float values to rate limit how many events we should see - in a given hour. - * Sample JSON: - { "0": 0.05, "1": 0.05: "2": 0.07... } - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, minuteOfHourRate, dayOfMonthRate, monthOfYearRate - -dayOfWeekRate = - * Takes a JSON hash of 7 days of the week in Splunk format (0 is Sunday) - * Sample JSON: - { "0": 0.55, "1": 0.97, "2": 0.95, "3": 0.90, "4": 0.97, "5": 1.0, "6": 0.99 } - * If a match is not found, will default to count events - * Also multiplied times hourOfDayRate, minuteOfHourRate, dayOfMonthRate, monthOfYearRate - -minuteOfHourRate = - * Takes a JSON hash of 60 minutes of an hour, starting with 0 - * Sample JSON: - { "0": 1, "2": 1...} - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, dayOfMonthRate, monthOfYearRate - -dayOfMonthRate = - * Takes a JSON hash of 31 days of the month, starting with 1 - * Sample JSON: - { "1": 1, "2": 1...} - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, monthOfYearRate - -monthOfYearRate = - * Takes a JSON hash of 60 minutes of an hour, starting with 0 - * Sample JSON: - { "0": 1, "2": 1...} - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, dayOfMonthRate - -randomizeCount = - * Will randomize the number of events generated by percentage passed - * Example values: 0.2, 0.5 - * Recommend passing 0.2 to give 20% randomization either way (plus or minus) - -randomizeEvents = - * Will randomize the events found in the sample file before choosing the events. - * NOT SUPPORTED WITH sampletype csv - * NOT SUPPORTED WITH mode = replay OR custom generators like generator = replay - -breaker = - * NOT to be confused w/ props.conf LINE_BREAKER. - * PCRE used for flow control. - * If count > 0; data will be generated until number of discovered breakers <= "count". - * If breaker does not match in sample, one iteration of sample will be generated. - * Defaults to [^\r\n\s]+ - -earliest = - * Specifies the earliest random time for generated events. - * If this value is an absolute time, use the dispatch.time_format to format the value. - * Defaults to now. - -latest = - * Specifies the latest random time for generated events. - * If this value is an absolute time, use the dispatch.time_format to format the value. - * Defaults to now. - -############################# -## JINJA TEMPLATE SETTINGS ## -############################# - -jinja_template_dir = - * directory name inside the current eventgen.conf dir where jinja templates can be located. - * default template directory is /samples/templates if not defined. -jinja_target_template = - * root template to load for all sample generation. -jinja_variables = - * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. - -################################ -## TOKEN REPLACEMENT SETTINGS ## -################################ - -token..token = - * 'n' is a number starting at 0, and increasing by 1. - * PCRE expression used to identify segment for replacement. - * If one or more capture groups are present the replacement will be performed on group 1. - * Defaults to None. - -token..replacementType = static | timestamp | replaytimestamp | random | rated | file | mvfile | integerid - * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. - * For static, the token will be replaced with the value specified in the replacement setting. - * For timestamp, the token will be replaced with the strptime specified in the replacement setting - * For replaytimestamp, the token will be replaced with the strptime specified in the replacement setting - but the time will not be based on earliest and latest, but will instead be replaced by looking at the - offset of the timestamp in the current event versus the first event, and then adding that time difference - to the timestamp when we started processing the sample. This allows for replaying events with a - new timestamp but to look much like the original transaction. Assumes replacement value is the same - strptime format as the original token we're replacing, otherwise it will fail. First timestamp will - be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file - with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. - * For random, the token will be replaced with a type aware value (i.e. valid IPv4 Address). - * For rated, the token will be replaced with a subset of random types (float, integer), which are - rated by hourOfDayRate and dayOfWeekRate. - * For file, the token will be replaced with a random value retrieved from a file specified in the replacement setting. - * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. - * For integerid, will use an incrementing integer as the replacement. - * Defaults to None. - -token..replacement = | | ["list","of","strptime"] | guid | ipv4 | ipv6 | mac | integer[:] | float[:] | string() | hex() | list["list", "of", "values"] | | : | - * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. - * For , the token will be replaced with the value specified. - * For , a strptime formatted string to replace the timestamp with - * For ["list","of","strptime"], only used with replaytimestamp, a JSON formatted list of strptime - formats to try. Will find the replace with the same format which matches the replayed timestamp. - * For guid, the token will be replaced with a random GUID value. - * For ipv4, the token will be replaced with a random valid IPv4 Address (i.e. 10.10.200.1). - * For ipv6, the token will be replaced with a random valid IPv6 Address (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). - * For mac, the token will be replaced with a random valid MAC Address (i.e. 6e:0c:51:c6:c6:3a). - * For integer[:], the token will be replaced with a random integer between - start and end values where is a number greater than 0 - and is a number greater than 0 and greater than or equal to . If rated, - will be multiplied times hourOfDayRate and dayOfWeekRate. - * For float[:], the token will be replaced with a random float between - start and end values where is a number greater than or equal to . - For floating point numbers, precision will be based off the precision specified - in . For example, if we specify 1.0, precision will be one digit, if we specify - 1.0000, precision will be four digits. If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. - * For string(), the token will be replaced with i number(s) of ASCII characters where 'i' is a number greater than 0. - * For hex(), the token will be replaced with i number of Hexadecimal characters [0-9A-F] where 'i' is a number greater than 0. - * For list, the token will be replaced with a random member of the JSON list provided. - * For , the token will be replaced with a random line in the replacement file. - * Replacement file name should be a fully qualified path (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). - * Unix separators will work on Windows and vice-versa. - * Column numbers in mvfile references are indexed at 1, meaning the first column is column 1, not 0. - * used as the seed for integerid. - * Defaults to None. - -################################ -## HOST REPLACEMENT SETTINGS ## -################################ - -host.token = - * PCRE expression used to identify the host name (or partial name) for replacement. - * If one or more capture groups are present the replacement will be performed on group 1. - * Defaults to None. - -host.replacement = | : - * For , the token will be replaced with a random line in the replacement file. - * Replacement file name should be a fully qualified path (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). - * Unix separators will work on Windows and vice-versa. - * Column numbers in mvfile references are indexed at 1, meaning the first column is column 1, not 0. - * Defaults to None. \ No newline at end of file From a3fd0e365a55ad455bdf7512974e41be615cea43 Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Fri, 15 Mar 2019 15:47:32 -0700 Subject: [PATCH 07/68] Bump version --- splunk_eventgen/version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunk_eventgen/version.json b/splunk_eventgen/version.json index 0cf8bfe0..07e6fd0f 100644 --- a/splunk_eventgen/version.json +++ b/splunk_eventgen/version.json @@ -1 +1 @@ -{"version": "6.3.3"} \ No newline at end of file +{"version": "6.3.4"} From e1e7929771b4763a6b31d3896992c779fa49e1a0 Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Wed, 20 Mar 2019 10:57:59 +0800 Subject: [PATCH 08/68] add python code style lint and format --- .editorconfig | 19 +++++++++++++++++++ Makefile | 25 ++++++++++++++++++++++++- setup.cfg | 7 ++++++- setup.py | 11 ++++++++--- 4 files changed, 57 insertions(+), 5 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..c95fe5b5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# http://editorconfig.org + +root = true + +[*] +# We recommend you to keep these unchanged +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.py] +indent_style = space +indent_size = 4 + +[Makefile] +indent_style = tab diff --git a/Makefile b/Makefile index 945c57c0..19969eb9 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,10 @@ SMALL ?= 'tests/small' MEDIUM ?= 'tests/medium' LARGE ?= 'tests/large' XLARGE ?= 'tests/xlarge' +NEWLY_ADDED_PY_FILES = $(shell git ls-files -o --exclude-standard | grep -E '\.py$$') +CHANGED_ADDED_PY_FILES = $(shell git ls-files -mo --exclude-standard | grep -E '\.py$$') -.PHONY: tests +.PHONY: tests, lint, format all: egg @@ -101,3 +103,24 @@ docs: build_spl: clean python -m splunk_eventgen build --destination ./ + +lint: +ifeq ($(NEWLY_ADDED_PY_FILES), ) + @echo 'No newly added python files. Skip...' +else + @flake8 $(NEWLY_ADDED_PY_FILES) || true +endif + @git diff -U0 -- '*.py' | flake8 --diff || true + +format: +ifeq ($(CHANGED_ADDED_PY_FILES), ) + @echo 'No changed python files. Skip...' +else + @isort $(CHANGED_ADDED_PY_FILES) +endif +ifeq ($(NEWLY_ADDED_PY_FILES), ) + @echo 'No newly added python files. Skip...' +else + @yapf -i $(NEWLY_ADDED_PY_FILES) +endif + diff --git a/setup.cfg b/setup.cfg index 4510099b..ab926b67 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,12 @@ [flake8] -exclude = .git,.tox,__pycache__,env,venv +exclude = .git,.tox,__pycache__,env,venv,build,dist,docs max-line-length = 120 [metadata] description-file = README.md version-from-file: __init__.py + +[yapf] +based_on_style = pep8 +spaces_before_comment = 4 +split_before_logical_operator = true diff --git a/setup.py b/setup.py index b555653a..3df22c4a 100644 --- a/setup.py +++ b/setup.py @@ -14,10 +14,12 @@ except(IOError, ImportError): long_description = open('README.md').read() + def readme(): with open('README.md') as f: return f.read() + setup( name='splunk_eventgen', version=VERSION, @@ -38,18 +40,21 @@ def readme(): packages=find_packages(), package_data={"splunk_eventgen": ['*.sh', '*.txt', '*.yml'], '': ['*.sh', '*.txt', '*.yml']}, install_requires=[ - 'pytest>=3.0.0', # Required to test functional tests in eventgen. + 'pytest>=3.0.0', # Required to test functional tests in eventgen. 'boto3', 'requests>=2.18.4', 'requests[security]', 'logutils>=0.3.4.1', 'futures>=3.0.5', - 'ujson>=1.35', # way faster implementation of JSON processing + 'ujson>=1.35', # way faster implementation of JSON processing 'pyyaml', 'httplib2', 'jinja2', 'pyrabbit==1.1.0', 'urllib3==1.23', - 'pyOpenSSL' + 'pyOpenSSL', + 'flake8>=3.7.7', + 'yapf>=0.26.0', + 'isort>=4.3.15' ] ) From c24f655dba875f97fb475c6c4a55f38ebc23a832 Mon Sep 17 00:00:00 2001 From: Guodong Wang Date: Fri, 22 Mar 2019 11:36:16 +0800 Subject: [PATCH 09/68] [Docs] update contribute docs (#148) * [Docs] update contribute docs * [Docs] update the contribute --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- CONTRIBUTING.md | 91 +------------- README.md | 2 +- docs/.gitignore | 3 + docs/CONTRIBUTE.md | 97 +++++++++++++++ docs/CONTRIBUTE_CODE.md | 140 ++++++++++++++++++++++ docs/FILE_ISSUES.md | 20 ++++ docs/SUMMARY.md | 1 + docs/index.md | 1 + 10 files changed, 269 insertions(+), 90 deletions(-) create mode 100644 docs/.gitignore create mode 100644 docs/CONTRIBUTE.md create mode 100644 docs/CONTRIBUTE_CODE.md create mode 100644 docs/FILE_ISSUES.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 38af1c27..9df6ca8b 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -3,7 +3,7 @@ name: Bug report about: Provide the details of the bug to us in order to further triage and fix title: "[BUG]" labels: bug -assignees: li-wu, GordonWang +assignees: lephino, arctan5x, jmeixensperger, li-wu, GordonWang --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 30a5b6f2..046874e8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature request about: Suggest an idea or improvement for this project title: "[FEATURE/IMPROVEMENT]" labels: enhancement -assignees: li-wu, GordonWang +assignees: lephino, arctan5x, jmeixensperger, li-wu, GordonWang --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38ab06bd..f418bcb2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,99 +1,16 @@ # Contributing -When contributing to this repository, please first discuss the change you wish to make via issue, -email, or any other method with the owners of this repository before making a change. +When contributing to this repository, please read over the [contributing document](http://splunk.github.io/eventgen/CONTRIBUTE.html). [Create a issue](http://splunk.github.io/eventgen/FILE_ISSUES.html) to discuss your demand and follow the [guidelines](http://splunk.github.io/eventgen/CONTRIBUTE_CODE.html) to make the code change -Please note we have a code of conduct, please follow it in all your interactions with the project. +Please note we have a [code of conduct](http://splunk.github.io/eventgen/CONTRIBUTE.html#code-of-conduct), please follow it in all your interactions with the project. -## Pull Request Process - -1. Ensure any install or build dependencies are removed before the end of the layer when doing a - build. -2. Update the splunk_eventgen/README/eventgen.conf.spec with details of changes to the interface, this includes new environment - variables, exposed ports, useful file locations and container parameters. Also, update the necessary documentation. -3. Increase the version numbers in splunk_eventgen/version.json. The versioning scheme we use is [SemVer](http://semver.org/). -4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you - do not have permission to do that, you may request the second reviewer to merge it for you. - -## Code of Conduct - -### Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -nationality, personal appearance, race, religion, or sexual identity and -orientation. - -### Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or -advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -### Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -### Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -### Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at tonyl@splunk.com. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -### Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at [http://contributor-covenant.org/version/1/4][version] - -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ ### Past / Active(marked as *) Contributors bbingham* arctan5x* jmeixensperger* +li-wu* +GordonWang* coccyx Jaykul allanwsplk diff --git a/README.md b/README.md index 06670a58..36080834 100644 --- a/README.md +++ b/README.md @@ -33,4 +33,4 @@ The Splunk Event Generator is licensed under the Apache License 2.0. Details can ### Support This software is released as-is. Splunk provides no warranty and no support on this software. -If you have any issues with the software, please file an issue (https://github.com/splunk/eventgen/issues/new) +If you have any issues with the software, please read over the [guidelines](http://splunk.github.io/eventgen/FILE_ISSUES.md) and file an issue. \ No newline at end of file diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 00000000..2ebd62b2 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,3 @@ +_site +Gemfile +Gemfile.lock \ No newline at end of file diff --git a/docs/CONTRIBUTE.md b/docs/CONTRIBUTE.md new file mode 100644 index 00000000..51135f9b --- /dev/null +++ b/docs/CONTRIBUTE.md @@ -0,0 +1,97 @@ +# Contribute to Eventgen + +Please be sure to read the contribution guidelines before making or requesting a change. + +## Code of conduct + +### Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +### Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + + +### Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +### Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +### Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at tonyl@splunk.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +### Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ + +## Filing issues + +Before filing an issue, please be sure to read the guidelines for what you're reporting: + +* [Reporting bugs](FILE_ISSUES.md#reporting-bugs) +* [Requesting changes](FILE_ISSUES.md#requesting-changes) + + +## Contributing code + +Before working on the code, please read over the guidelines about how to contributing code. + +* [Pull Request](CONTRIBUTE_CODE.md#pull-request-guidelines) +* [Build Eventgen](CONTRIBUTE_CODE.md#how-to-build-eventgen) +* [Code Style](CONTRIBUTE_CODE.md#code-style-and-formatting-tools) + + diff --git a/docs/CONTRIBUTE_CODE.md b/docs/CONTRIBUTE_CODE.md new file mode 100644 index 00000000..14c4453d --- /dev/null +++ b/docs/CONTRIBUTE_CODE.md @@ -0,0 +1,140 @@ +# Contribute Code To Eventgen + +If you want to contribute code to eventgen, please read over the following guidelines before creating any pull request. + + +## Pull request guidelines + + +If you want to contribute to an eventgen repo, please use a GitHub pull request. This is the fastest way for us to evaluate your code and to merge it into the code base. Please don’t file an issue with snippets of code. Doing so means that we need to manually merge the changes in and update any appropriate tests. That decreases the likelihood that your code is going to get included in a timely manner. Please use pull requests. + +### Get started + +If you’d like to work on a pull request and you’ve never submitted code before, follow these steps: +1. fork eventgen to your github workspace +2. If you want to fix bugs or make enhancement, please make sure there is a issue in eventgen project. Refer [this guide](FILE_ISSUES.md) to create a issue. + + +After that, you’re ready to start working on code. + +### Working on the code + +The process of submitting a pull request is fairly straightforward and generally follows the same pattern each time: +1. Create a new branch +2. Make your changes and check into local branch +3. Rebase onto upstream +4. Run the test +5. Push your change +6. Submit the pull request + +#### Step1: Create a new branch + +The first step to sending a pull request is to create a new branch in your eventgen fork. Give the branch a descriptive name that describes what it is you’re fixing. Although the branch name can be any words, we highly recommend you to use some descriptive and structured name. It will be good for you to manage the branches when there are many branches in your fork. +```bash +# The branch name contains 2 parts. First part works like a label, it describe what type of issue this branch is working on. Second part is the issue id. +# For example, if the code change is a bug fix +$ git checkout -b bug/issue123 +# For example, if the code change is to address change request +$ git checkout -b change/issue123 +# For example, if the code change is only about refine the build process, such as making changes about CICD process +$ git checkout -b build/issue123 +# For example, if the code change is only about refining the test cases or paying for tech debt +$ git checkout -b chore/issue123 +``` + +#### Step2: Make your changes and check into local branch + +Once you finished your change, commit them into your local branch. +```bash +$ git add -A +$ git commit +``` + +Our commit message format is as follows: +``` +Tag: Short description (fixes #1234) +// empty line +Longer description here if necessary +``` + +The first line of the commit message (the summary) must have a specific format. This format is checked by our build tools. + +The **Tag** is one of the following: + +* **Fix** - for a bug fix. +* **Update** - update or enhance an existing feature. +* **New** - implemented a new feature. +* **Docs** - changes to documentation only. +* **Build** - changes to build process only, updating the dependency libs etc. +* **Chore** - for refactoring, adding tests, paying tech debt etc. (anything that isn’t user-facing). + + +Use the labels of the issue you are working on to determine the best tag. + +The message summary should be a one-sentence description of the change, and it must be 72 characters in length or shorter. Please make the short description concise. If the pull request addresses an issue, then the issue number should be mentioned at the end. If the commit doesn’t completely fix the issue, then use (refs #1234) instead of (fixes #1234). + +**Note**: please squash you changes in one commit before firing the pull request. One commit in one PR keeps the git history clean. + +#### Step 3: Rebase onto upstream + +Before you send the pull request, be sure to rebase onto the upstream source. This ensures your code is running on the latest available code. We prefer rebase instead of merge when upstream changes. Rebase keeps the git history clearer. +```bash +git fetch upstream +git rebase upstream/master +``` + +#### Step 4: Run the tests + +The is a place holder as well. We should write about +* how to run unit test +* how to run funcional test +* what is the acceptance criteria about the test +* how to add test cases + + +#### Step 5: Push your change +Before pushing the changes, double check your changes follows the [code style](#code-style-and-formatting-tools) and all tests are passed. + + +Next, push your changes to your clone: +```bash +git push origin fix/issue123 +``` + +#### Step 6: Submit the pull request + +Before creating a pull request, here are some recommended **check points**. + +1. Ensure any install or build dependencies are removed before the end of the layer when doing a + build. +2. Update the splunk_eventgen/README/eventgen.conf.spec with details of changes to the interface, this includes new environment + variables, exposed ports, useful file locations and container parameters. Also, update the necessary documentation. +3. Make sure the build is successful and all test cases are passed. +4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you + do not have permission to do that, you may request the second reviewer to merge it for you. + + +Next, create a pull request from your branch to the eventgen develop branch. +Mark @lephino , @arctan5x , @jmeixensperger , @li-wu , @GordonWang as the reviewers. + + + +## Code style and formatting tools + +Since Eventgen is written in python, we apply a coding style based on [PEP8](https://www.python.org/dev/peps/pep-0008/). + + +**TODO: Add section refrencing the code formatter.** + + +## How to build eventgen + +**TODO: consolidate the setup page information into this section.** + +### Build eventgen pip module + +### Build eventgen splunk app + +### Run unit test + +### Run functional test \ No newline at end of file diff --git a/docs/FILE_ISSUES.md b/docs/FILE_ISSUES.md new file mode 100644 index 00000000..018d85f6 --- /dev/null +++ b/docs/FILE_ISSUES.md @@ -0,0 +1,20 @@ +# Filing Issues For Eventgen + +## Reporting bugs + + +If you think you've found a bug in eventgen, please [create a bug report](https://github.com/splunk/eventgen/issues/new/choose) on github. + + +For bugs, please choose the bug report template. Then, provide information as much as possible according to the tempalte. If we need to triage issues and constantly ask people for more detail, that’s time taken away from actually fixing issues. Help us be as efficient as possible by including a lot of detail in your issues. + +**Note:** If you just have a question that won’t necessarily result in a change to eventgen, such as asking how something works or how to contribute, please use the slack channel instead of filing an issue. + + +## Requesting changes + + +If you want some enhancement or new feature which is not in current eventgen release, please [create a feature request](https://github.com/splunk/eventgen/issues/new/choose) on github. + + +For change requests, please choose the feature request template. Then, provide the information as much as possible according to the template. When creating a change request issue, please provide clear description about the user scenario and the expected behavior following to the template. It is very important to save the time and avoid back and forth discussion. \ No newline at end of file diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index a69ffe38..8245d492 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -9,6 +9,7 @@ * [Plugins](PLUGINS.md) * [Architecture](ARCHITECTURE.md) * [Performance](PERFORMANCE.md) +* [Contributing](CONTRIBUTE.md) --- * [Reference](REFERENCE.md) * [eventgen.conf.spec](REFERENCE.md#eventgenconfspec) diff --git a/docs/index.md b/docs/index.md index 4da11b23..bc7893f8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,6 +20,7 @@ * [Basics](BASICS.md) * [Plugins](PLUGINS.md) * [Architecture](ARCHITECTURE.md) +* [Contribute](CONTRIBUTE.md) * [Performance](PERFORMANCE.md) * [Reference](REFERENCE.md) * [eventgen.conf.spec](REFERENCE.md#eventgenconfspec) From 96028955fa31449c2a2cd717f6618e4dc7c290cc Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Thu, 28 Mar 2019 11:45:23 +0800 Subject: [PATCH 10/68] Fix make docs bug and summary anchor link error --- Makefile | 6 +- docs/.gitignore | 2 - docs/Dockerfile | 30 ------ docs/Gemfile | 2 + docs/Gemfile.lock | 248 +++++++++++++++++++++++++++++++++++++++++++++ docs/SETUP.md | 6 +- docs/SUMMARY.md | 4 +- docs/book.json | 30 ------ docs/entrypoint.sh | 11 -- 9 files changed, 257 insertions(+), 82 deletions(-) delete mode 100644 docs/Dockerfile create mode 100644 docs/Gemfile create mode 100644 docs/Gemfile.lock delete mode 100644 docs/book.json delete mode 100755 docs/entrypoint.sh diff --git a/Makefile b/Makefile index 19969eb9..e49e4daf 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ XLARGE ?= 'tests/xlarge' NEWLY_ADDED_PY_FILES = $(shell git ls-files -o --exclude-standard | grep -E '\.py$$') CHANGED_ADDED_PY_FILES = $(shell git ls-files -mo --exclude-standard | grep -E '\.py$$') -.PHONY: tests, lint, format +.PHONY: tests, lint, format, docs all: egg @@ -97,9 +97,7 @@ run_controller: eg_network docker run --name eg_controller --network eg_network -d -p 5672:5672 -p 15672:15672 -p 9500:9500 eventgen:latest controller docs: - npm install -g gitbook-serve - cd docs/ - gitbookserve + cd docs/; bundle install; bundle exec jekyll serve build_spl: clean python -m splunk_eventgen build --destination ./ diff --git a/docs/.gitignore b/docs/.gitignore index 2ebd62b2..ca35be08 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -1,3 +1 @@ _site -Gemfile -Gemfile.lock \ No newline at end of file diff --git a/docs/Dockerfile b/docs/Dockerfile deleted file mode 100644 index 46e7dff7..00000000 --- a/docs/Dockerfile +++ /dev/null @@ -1,30 +0,0 @@ -FROM alpine:3.6 - -# Install stuff -RUN apk upgrade --update && \ - apk add --no-cache --update \ - nodejs \ - nodejs-npm \ - curl \ - python3 \ - build-base && \ - rm -rf /var/cache/apk/* && \ - npm install -g npm q gitbook-cli lodash commander optimist bash-color fs-extra - -# Copy gitbook files -COPY *.md /root/ -COPY book.json /root/ - -# Copy entrypoint -COPY entrypoint.sh /sbin/entrypoint.sh - -# Run gitbook install -RUN cd /root/ && gitbook install - -EXPOSE 4000 - -HEALTHCHECK --interval=1m --timeout=15s --start-period=1m --retries=3 \ - CMD curl -f http://localhost:4000 || exit 1 - -WORKDIR /root/ -ENTRYPOINT ["/sbin/entrypoint.sh"] diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 00000000..37f5eaa4 --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'github-pages', group: :jekyll_plugins diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock new file mode 100644 index 00000000..057c847b --- /dev/null +++ b/docs/Gemfile.lock @@ -0,0 +1,248 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.10) + i18n (~> 0.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.11.1) + colorator (1.1.0) + commonmarker (0.17.13) + ruby-enum (~> 0.5) + concurrent-ruby (1.1.5) + dnsruby (1.61.2) + addressable (~> 2.5) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + ethon (0.12.0) + ffi (>= 1.3.0) + eventmachine (1.2.7) + execjs (2.7.0) + faraday (0.15.4) + multipart-post (>= 1.2, < 3) + ffi (1.10.0) + forwardable-extended (2.6.0) + gemoji (3.0.0) + github-pages (197) + activesupport (= 4.2.10) + github-pages-health-check (= 1.16.1) + jekyll (= 3.7.4) + jekyll-avatar (= 0.6.0) + jekyll-coffeescript (= 1.1.1) + jekyll-commonmark-ghpages (= 0.1.5) + jekyll-default-layout (= 0.1.4) + jekyll-feed (= 0.11.0) + jekyll-gist (= 1.5.0) + jekyll-github-metadata (= 2.12.1) + jekyll-mentions (= 1.4.1) + jekyll-optional-front-matter (= 0.3.0) + jekyll-paginate (= 1.1.0) + jekyll-readme-index (= 0.2.0) + jekyll-redirect-from (= 0.14.0) + jekyll-relative-links (= 0.6.0) + jekyll-remote-theme (= 0.3.1) + jekyll-sass-converter (= 1.5.2) + jekyll-seo-tag (= 2.5.0) + jekyll-sitemap (= 1.2.0) + jekyll-swiss (= 0.4.0) + jekyll-theme-architect (= 0.1.1) + jekyll-theme-cayman (= 0.1.1) + jekyll-theme-dinky (= 0.1.1) + jekyll-theme-hacker (= 0.1.1) + jekyll-theme-leap-day (= 0.1.1) + jekyll-theme-merlot (= 0.1.1) + jekyll-theme-midnight (= 0.1.1) + jekyll-theme-minimal (= 0.1.1) + jekyll-theme-modernist (= 0.1.1) + jekyll-theme-primer (= 0.5.3) + jekyll-theme-slate (= 0.1.1) + jekyll-theme-tactile (= 0.1.1) + jekyll-theme-time-machine (= 0.1.1) + jekyll-titles-from-headings (= 0.5.1) + jemoji (= 0.10.2) + kramdown (= 1.17.0) + liquid (= 4.0.0) + listen (= 3.1.5) + mercenary (~> 0.3) + minima (= 2.5.0) + nokogiri (>= 1.8.5, < 2.0) + rouge (= 2.2.1) + terminal-table (~> 1.4) + github-pages-health-check (1.16.1) + addressable (~> 2.3) + dnsruby (~> 1.60) + octokit (~> 4.0) + public_suffix (~> 3.0) + typhoeus (~> 1.3) + html-pipeline (2.10.0) + activesupport (>= 2) + nokogiri (>= 1.4) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.7.4) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 2.0) + kramdown (~> 1.14) + liquid (~> 4.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (>= 1.7, < 4) + safe_yaml (~> 1.0) + jekyll-avatar (0.6.0) + jekyll (~> 3.0) + jekyll-coffeescript (1.1.1) + coffee-script (~> 2.2) + coffee-script-source (~> 1.11.1) + jekyll-commonmark (1.3.1) + commonmarker (~> 0.14) + jekyll (>= 3.7, < 5.0) + jekyll-commonmark-ghpages (0.1.5) + commonmarker (~> 0.17.6) + jekyll-commonmark (~> 1) + rouge (~> 2) + jekyll-default-layout (0.1.4) + jekyll (~> 3.0) + jekyll-feed (0.11.0) + jekyll (~> 3.3) + jekyll-gist (1.5.0) + octokit (~> 4.2) + jekyll-github-metadata (2.12.1) + jekyll (~> 3.4) + octokit (~> 4.0, != 4.4.0) + jekyll-mentions (1.4.1) + html-pipeline (~> 2.3) + jekyll (~> 3.0) + jekyll-optional-front-matter (0.3.0) + jekyll (~> 3.0) + jekyll-paginate (1.1.0) + jekyll-readme-index (0.2.0) + jekyll (~> 3.0) + jekyll-redirect-from (0.14.0) + jekyll (~> 3.3) + jekyll-relative-links (0.6.0) + jekyll (~> 3.3) + jekyll-remote-theme (0.3.1) + jekyll (~> 3.5) + rubyzip (>= 1.2.1, < 3.0) + jekyll-sass-converter (1.5.2) + sass (~> 3.4) + jekyll-seo-tag (2.5.0) + jekyll (~> 3.3) + jekyll-sitemap (1.2.0) + jekyll (~> 3.3) + jekyll-swiss (0.4.0) + jekyll-theme-architect (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-cayman (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-dinky (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-hacker (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-leap-day (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-merlot (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-midnight (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-minimal (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-modernist (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-primer (0.5.3) + jekyll (~> 3.5) + jekyll-github-metadata (~> 2.9) + jekyll-seo-tag (~> 2.0) + jekyll-theme-slate (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-tactile (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-theme-time-machine (0.1.1) + jekyll (~> 3.5) + jekyll-seo-tag (~> 2.0) + jekyll-titles-from-headings (0.5.1) + jekyll (~> 3.3) + jekyll-watch (2.2.1) + listen (~> 3.0) + jemoji (0.10.2) + gemoji (~> 3.0) + html-pipeline (~> 2.2) + jekyll (~> 3.0) + kramdown (1.17.0) + liquid (4.0.0) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + mercenary (0.3.6) + mini_portile2 (2.4.0) + minima (2.5.0) + jekyll (~> 3.5) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + minitest (5.11.3) + multipart-post (2.0.0) + nokogiri (1.10.2) + mini_portile2 (~> 2.4.0) + octokit (4.14.0) + sawyer (~> 0.8.0, >= 0.5.3) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (3.0.3) + rb-fsevent (0.10.3) + rb-inotify (0.10.0) + ffi (~> 1.0) + rouge (2.2.1) + ruby-enum (0.7.2) + i18n + ruby_dep (1.5.0) + rubyzip (1.2.2) + safe_yaml (1.0.5) + sass (3.7.3) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sawyer (0.8.1) + addressable (>= 2.3.5, < 2.6) + faraday (~> 0.8, < 1.0) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thread_safe (0.3.6) + typhoeus (1.3.1) + ethon (>= 0.9.0) + tzinfo (1.2.5) + thread_safe (~> 0.1) + unicode-display_width (1.5.0) + +PLATFORMS + ruby + +DEPENDENCIES + github-pages + +BUNDLED WITH + 2.0.1 diff --git a/docs/SETUP.md b/docs/SETUP.md index 0558b6e6..6c50433c 100644 --- a/docs/SETUP.md +++ b/docs/SETUP.md @@ -1,4 +1,4 @@ -## Install ## +## Install There are multiple ways to use Eventgen, and you should choose the method that best fits your use case. Below are the two major ways to use Eventgen - as a PyPI module and as a Splunk App. Follow the instructions below depending on your ideal use: @@ -36,7 +36,7 @@ Below are the two major ways to use Eventgen - as a PyPI module and as a Splunk --- -## PyPI Installation / First Run ##### +## PyPI Installation / First Run To use Eventgen as a PyPI module, you need to either download/clone the source code or install direct from github. @@ -116,7 +116,7 @@ A quick preface on this mode of operation: due to its complexity, this is only r --- -## Splunk App Installation / First Run ##### +## Splunk App Installation / First Run To use Eventgen as a Splunk app, you need a SPL file. This SPL file can be obtained in one of two ways: 1. Through running the "build" process of the splunk_eventgen pypi module diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 8245d492..4e09f36f 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -1,8 +1,8 @@ # Eventgen * [Getting Started](SETUP.md) - * [Install](SETUP.md#install) - * [Configure](SETUP.md#configure) + * [Install](SETUP.md) + * [Configure](CONFIGURE.md) * [Tutorial](TUTORIAL.md) --- * [Basics](BASICS.md) diff --git a/docs/book.json b/docs/book.json deleted file mode 100644 index 39bf0c28..00000000 --- a/docs/book.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "title": "Eventgen Documentation", - "gitbook": "3.1.1", - "plugins": [ - "versions", - "expand-active-chapter", - "-sharing", - "fontsettings" - ], - "pluginsConfig": { - "fontsettings": { - "theme": "white", - "family": "sans", - "size": 1 - }, - "versions": { - "options": [ - { - "value": "http://go.sv.splunk.com/egdocs", - "text": "latest", - "selected": true - }, - { - "value": "http://go.sv.splunk.com/egdocs", - "text": "develop" - } - ] - } - } -} \ No newline at end of file diff --git a/docs/entrypoint.sh b/docs/entrypoint.sh deleted file mode 100755 index c5fbc0fb..00000000 --- a/docs/entrypoint.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -if [ "$#" -eq "0" ]; then - cd /root/ - gitbook build - cd _book && python3 -m http.server 4000 -else - "$@" -fi From 26f0ed2a9015dda9c127712199e9901cbd24080b Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Thu, 14 Mar 2019 10:20:50 +0800 Subject: [PATCH 11/68] init unittest --- tests/unit/conftest.py | 10 +++++++ tests/unit/test_eventgenconfig.py | 46 +++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 tests/unit/conftest.py create mode 100644 tests/unit/test_eventgenconfig.py diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py new file mode 100644 index 00000000..19d8ec58 --- /dev/null +++ b/tests/unit/conftest.py @@ -0,0 +1,10 @@ +import pytest + +from splunk_eventgen.lib.eventgenconfig import Config + + +@pytest.fixture(scope='module', params=['configfile']) +def eventgen_config(configfile=None): + config = Config(configfile=configfile) + yield config + del config diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py new file mode 100644 index 00000000..cc41519b --- /dev/null +++ b/tests/unit/test_eventgenconfig.py @@ -0,0 +1,46 @@ +import os +from ConfigParser import ConfigParser + + +def test_makeSplunkEmbedded(eventgen_config): + session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' + eventgen_config.makeSplunkEmbedded(session_key) + assert eventgen_config.splunkEmbedded + # reset splunkEmbedded since all instances share the attribute + eventgen_config.splunkEmbedded = False + + +def test_buildConfDict(eventgen_config): + eventgen_config._buildConfDict() + configparser = ConfigParser() + splunk_eventgen_folder = os.path.join( + os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') + configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) + configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) + + for key, value in eventgen_config._confDict['global'].items(): + assert value == configparser.get('global', key) + + +def test_validateSetting(eventgen_config): + # 1. tokens./hosts. + # 2. _validSettings: int/float/bool/json + # 3. _complexSettings + valid_token_types = ['token', 'replacementType', 'replacement'] + valid_host_token = ['token', 'replacement'] + valid_replacement_type = ['static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', 'seqfile', + 'integerid'] + pass + + +def test_validateTimezone(): + pass + + +def test_validateSeed(): + pass + + +def test_parse(): + pass + From 986d89f89d4f64e6db9ff3b6dee3a5cf0951cb32 Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Tue, 19 Mar 2019 14:16:53 +0800 Subject: [PATCH 12/68] Add more UT for config module --- .../unit/eventgen.conf.config | 35 +++ tests/unit/conftest.py | 13 +- tests/unit/test_eventgenconfig.py | 220 +++++++++++++++++- 3 files changed, 252 insertions(+), 16 deletions(-) create mode 100644 tests/sample_eventgen_conf/unit/eventgen.conf.config diff --git a/tests/sample_eventgen_conf/unit/eventgen.conf.config b/tests/sample_eventgen_conf/unit/eventgen.conf.config new file mode 100644 index 00000000..48eaa726 --- /dev/null +++ b/tests/sample_eventgen_conf/unit/eventgen.conf.config @@ -0,0 +1,35 @@ +[sample] +sampleDir = tests/sample_eventgen_conf/sample +outputMode = stdout +earliest = -3s +latest = now + +count = 0 +delay = 10 +interval = 3 + +perDayVolume = 1 +randomizeCount = 0.2 +timeMultiple = 2 + +disabled = true +profiler = false +useOutputQueue = false +bundlelines = false +httpeventWaitResponse = false +sequentialTimestamp = false +autotimestamp = false +randomizeEvents = false +outputCounter = false + +minuteOfHourRate = { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1, "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1, "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1, "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 } +hourOfDayRate = { "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50, "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82, "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70, "22": 0.60, "23": 0.45 } +dayOfWeekRate = { "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 } +dayOfMonthRate = { "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1, "31": 1 } +monthOfYearRate = { "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 } +httpeventServers = {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]} +autotimestamps = [["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ",%m/%d/%Y %I:%M:%S %p,"], ["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"], ["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", "%Y-%m-%dT%H:%M:%S"], ["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]] + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index 19d8ec58..d30411d5 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -1,10 +1,13 @@ +from os import path as op import pytest from splunk_eventgen.lib.eventgenconfig import Config -@pytest.fixture(scope='module', params=['configfile']) -def eventgen_config(configfile=None): - config = Config(configfile=configfile) - yield config - del config +@pytest.fixture +def eventgen_config(): + def _make_eventgen_config_instance(configfile=None): + if configfile is not None: + configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) + return Config(configfile=configfile) + return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py index cc41519b..c3c8082b 100644 --- a/tests/unit/test_eventgenconfig.py +++ b/tests/unit/test_eventgenconfig.py @@ -1,36 +1,235 @@ +import json import os from ConfigParser import ConfigParser def test_makeSplunkEmbedded(eventgen_config): + config_instance = eventgen_config() session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' - eventgen_config.makeSplunkEmbedded(session_key) - assert eventgen_config.splunkEmbedded + config_instance.makeSplunkEmbedded(session_key) + assert config_instance.splunkEmbedded # reset splunkEmbedded since all instances share the attribute - eventgen_config.splunkEmbedded = False + config_instance.splunkEmbedded = False def test_buildConfDict(eventgen_config): - eventgen_config._buildConfDict() + config_instance = eventgen_config() + config_instance._buildConfDict() configparser = ConfigParser() splunk_eventgen_folder = os.path.join( os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) - for key, value in eventgen_config._confDict['global'].items(): + for key, value in config_instance._confDict['global'].items(): assert value == configparser.get('global', key) +def test_validate_setting_count(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'count', '0')) == int + assert config_instance._validateSetting('sample', 'count', '0') == 0 + + +def test_validate_setting_delay(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'delay', '10')) == int + assert config_instance._validateSetting('sample', 'delay', '10') == 10 + + +def test_validate_setting_interval(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'interval', '3')) == int + assert config_instance._validateSetting('sample', 'interval', '3') == 3 + + +def test_validate_setting_perdayvolume(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float + assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 + + +def test_validate_setting_randomizeCount(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float + assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 + + +def test_validate_setting_timeMultiple(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float + assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 + + +def test_validate_setting_disabled(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'disabled', 'true')) == bool + assert config_instance._validateSetting('sample', 'disabled', 'true') is True + + +def test_validate_setting_profiler(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool + assert config_instance._validateSetting('sample', 'profiler', 'false') is False + + +def test_validate_setting_useOutputQueue(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool + assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False + + +def test_validate_setting_bundlelines(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool + assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False + + +def test_validate_setting_httpeventWaitResponse(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool + assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False + + +def test_validate_setting_sequentialTimestamp(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False + + +def test_validate_setting_autotimestamp(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False + + +def test_validate_setting_randomizeEvents(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool + assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False + + +def test_validate_setting_outputCounter(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool + assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False + + +def test_validate_setting_minuteOfHourRate(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ + ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ + ' "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1,' \ + ' "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1,' \ + ' "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1,' \ + ' "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1,' \ + ' "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 }' + assert type(config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate)) == dict + result = json.loads(minuteOfHourRate) + assert config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate) == result + + +def test_validate_setting_hourOfDayRate(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ + ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ + ' "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70,' \ + ' "22": 0.60, "23": 0.45 }' + assert type(config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate)) == dict + result = json.loads(hourOfDayRate) + assert config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate) == result + + +def test_validate_setting_dayOfWeekRate(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' + assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict + result = json.loads(dayOfWeekRate) + assert config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate) == result + + +def test_validate_setting_dayOfMonthRate(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ + ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ + ' "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1,' \ + ' "31": 1 }' + assert type(config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate)) == dict + result = json.loads(dayOfMonthRate) + assert config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate) == result + + +def test_validate_setting_monthOfYearRate(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ + ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' + assert type(config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate)) == dict + result = json.loads(monthOfYearRate) + assert config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate) == result + + +def test_validate_setting_httpeventServers(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ + ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' + assert type(config_instance._validateSetting('sample', 'httpeventServers', httpeventServers)) == dict + result = json.loads(httpeventServers) + assert config_instance._validateSetting('sample', 'httpeventServers', httpeventServers) == result + + +def test_validate_setting_autotimestamps(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ + r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ' \ + r'["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ' \ + r'["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ' \ + r'["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ' \ + r'["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ' \ + r'",%m/%d/%Y %I:%M:%S %p,"], ' \ + r'["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ' \ + r'["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ' \ + r'["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"],' \ + r'["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ' \ + r'["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ' \ + r'["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", ' \ + r'"%Y-%m-%dT%H:%M:%S"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]]' + assert type(config_instance._validateSetting('sample', 'autotimestamps', autotimestamps)) == list + result = json.loads(autotimestamps) + assert config_instance._validateSetting('sample', 'autotimestamps', autotimestamps) == result + + +def test_getPlugin(eventgen_config): + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert config_instance.getPlugin('output.awss3') is not None + + def test_validateSetting(eventgen_config): # 1. tokens./hosts. # 2. _validSettings: int/float/bool/json # 3. _complexSettings - valid_token_types = ['token', 'replacementType', 'replacement'] - valid_host_token = ['token', 'replacement'] - valid_replacement_type = ['static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', 'seqfile', - 'integerid'] - pass + # valid_token_types = ['token', 'replacementType', 'replacement'] + # valid_host_token = ['token', 'replacement'] + # valid_replacement_type = ['static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', + # 'seqfile', 'integerid'] + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert config_instance._validateSetting('sample', 'sampleDir', + 'tests/sample_eventgen_conf/sample') == 'tests/sample_eventgen_conf/sample' + + # assert type(config_instance._validateSetting('sample', 'count', '0')) == int + # assert config_instance._validateSetting('sample', 'count', '0') == 0 + # + # assert type(config_instance._validateSetting('sample', 'delay', '10')) == int + # assert config_instance._validateSetting('sample', 'delay', '10') == 10 def test_validateTimezone(): @@ -43,4 +242,3 @@ def test_validateSeed(): def test_parse(): pass - From 574c64cf56ba369be9c61866694d46ef6dd0127d Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Mon, 25 Mar 2019 11:50:24 +0800 Subject: [PATCH 13/68] Add more unit tests for config module --- .../unit/eventgen.conf.config | 7 +- tests/unit/conftest.py | 1 + tests/unit/test_eventgenconfig.py | 76 +++++++++++++------ 3 files changed, 60 insertions(+), 24 deletions(-) diff --git a/tests/sample_eventgen_conf/unit/eventgen.conf.config b/tests/sample_eventgen_conf/unit/eventgen.conf.config index 48eaa726..3b10ce9f 100644 --- a/tests/sample_eventgen_conf/unit/eventgen.conf.config +++ b/tests/sample_eventgen_conf/unit/eventgen.conf.config @@ -1,6 +1,9 @@ [sample] sampleDir = tests/sample_eventgen_conf/sample -outputMode = stdout +outputMode = splunkstream +splunkMethod = https +splunkHost = localhost +splunkPort = 8088 earliest = -3s latest = now @@ -12,7 +15,7 @@ perDayVolume = 1 randomizeCount = 0.2 timeMultiple = 2 -disabled = true +disabled = false profiler = false useOutputQueue = false bundlelines = false diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index d30411d5..fddf8c5d 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -6,6 +6,7 @@ @pytest.fixture def eventgen_config(): + """Returns a function to create config instance based on config file""" def _make_eventgen_config_instance(configfile=None): if configfile is not None: configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py index c3c8082b..e46feabb 100644 --- a/tests/unit/test_eventgenconfig.py +++ b/tests/unit/test_eventgenconfig.py @@ -1,9 +1,13 @@ import json import os from ConfigParser import ConfigParser +import pytest + +from splunk_eventgen.lib.eventgensamples import Sample def test_makeSplunkEmbedded(eventgen_config): + """Test makeSplunkEmbedded works""" config_instance = eventgen_config() session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' config_instance.makeSplunkEmbedded(session_key) @@ -13,6 +17,7 @@ def test_makeSplunkEmbedded(eventgen_config): def test_buildConfDict(eventgen_config): + """Test buildConfDict returns the same as reading directly from file""" config_instance = eventgen_config() config_instance._buildConfDict() configparser = ConfigParser() @@ -26,96 +31,112 @@ def test_buildConfDict(eventgen_config): def test_validate_setting_count(eventgen_config): + """Test count config is int with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'count', '0')) == int assert config_instance._validateSetting('sample', 'count', '0') == 0 def test_validate_setting_delay(eventgen_config): + """Test delay config is int with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'delay', '10')) == int assert config_instance._validateSetting('sample', 'delay', '10') == 10 def test_validate_setting_interval(eventgen_config): + """Test interval config is int with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'interval', '3')) == int assert config_instance._validateSetting('sample', 'interval', '3') == 3 def test_validate_setting_perdayvolume(eventgen_config): + """Test perdayvolume config is float with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 def test_validate_setting_randomizeCount(eventgen_config): + """Test randomizeCount config is float with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 def test_validate_setting_timeMultiple(eventgen_config): + """Test timeMultiple config is float with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 def test_validate_setting_disabled(eventgen_config): + """Test disabled config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'disabled', 'true')) == bool - assert config_instance._validateSetting('sample', 'disabled', 'true') is True + assert type(config_instance._validateSetting('sample', 'disabled', 'false')) == bool + assert config_instance._validateSetting('sample', 'disabled', 'false') is False def test_validate_setting_profiler(eventgen_config): + """Test profiler config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool assert config_instance._validateSetting('sample', 'profiler', 'false') is False def test_validate_setting_useOutputQueue(eventgen_config): + """Test useOutputQueue config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False def test_validate_setting_bundlelines(eventgen_config): + """Test bundlelines config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False def test_validate_setting_httpeventWaitResponse(eventgen_config): + """Test httpeventWaitResponse config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False def test_validate_setting_sequentialTimestamp(eventgen_config): + """Test sequentialTimestamp config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False def test_validate_setting_autotimestamp(eventgen_config): + """Test autotimestamp config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False def test_validate_setting_randomizeEvents(eventgen_config): + """Test randomizeEvents config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False def test_validate_setting_outputCounter(eventgen_config): + """Test outputCounter config is bool with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False def test_validate_setting_minuteOfHourRate(eventgen_config): + """Test minuteOfHourRate config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ @@ -130,6 +151,7 @@ def test_validate_setting_minuteOfHourRate(eventgen_config): def test_validate_setting_hourOfDayRate(eventgen_config): + """Test hourOfDayRate config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ @@ -141,6 +163,7 @@ def test_validate_setting_hourOfDayRate(eventgen_config): def test_validate_setting_dayOfWeekRate(eventgen_config): + """Test dayOfWeekRate config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict @@ -149,6 +172,7 @@ def test_validate_setting_dayOfWeekRate(eventgen_config): def test_validate_setting_dayOfMonthRate(eventgen_config): + """Test dayOfMonthRate config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ @@ -160,6 +184,7 @@ def test_validate_setting_dayOfMonthRate(eventgen_config): def test_validate_setting_monthOfYearRate(eventgen_config): + """Test monthOfYearRate config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' @@ -169,6 +194,7 @@ def test_validate_setting_monthOfYearRate(eventgen_config): def test_validate_setting_httpeventServers(eventgen_config): + """Test httpeventServers config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' @@ -178,6 +204,7 @@ def test_validate_setting_httpeventServers(eventgen_config): def test_validate_setting_autotimestamps(eventgen_config): + """Test autotimestamps config is dict with right value""" config_instance = eventgen_config(configfile='eventgen.conf.config') autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ @@ -209,36 +236,41 @@ def test_validate_setting_autotimestamps(eventgen_config): def test_getPlugin(eventgen_config): + """Test getPlugin method without loading any plugins""" config_instance = eventgen_config(configfile='eventgen.conf.config') - assert config_instance.getPlugin('output.awss3') is not None + with pytest.raises(KeyError): + config_instance.getPlugin('output.awss3') -def test_validateSetting(eventgen_config): - # 1. tokens./hosts. - # 2. _validSettings: int/float/bool/json - # 3. _complexSettings - # valid_token_types = ['token', 'replacementType', 'replacement'] - # valid_host_token = ['token', 'replacement'] - # valid_replacement_type = ['static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', - # 'seqfile', 'integerid'] +def test_getSplunkUrl(eventgen_config): + """Test getSplunkUrl with provided sample object""" config_instance = eventgen_config(configfile='eventgen.conf.config') - assert config_instance._validateSetting('sample', 'sampleDir', - 'tests/sample_eventgen_conf/sample') == 'tests/sample_eventgen_conf/sample' + sample = Sample('test') + sample.splunkHost = 'localhost' + sample.splunkMethod = 'https' + sample.splunkPort = '8088' - # assert type(config_instance._validateSetting('sample', 'count', '0')) == int - # assert config_instance._validateSetting('sample', 'count', '0') == 0 - # - # assert type(config_instance._validateSetting('sample', 'delay', '10')) == int - # assert config_instance._validateSetting('sample', 'delay', '10') == 10 + assert ('https://localhost:8088', 'https', 'localhost', '8088') == config_instance.getSplunkUrl(sample) -def test_validateTimezone(): +def test_validateTimeZone(eventgen_config): + """Test _validateTimeZone method""" pass -def test_validateSeed(): +def test_validateSeed(eventgen_config): + """Test _validateSeed method""" pass -def test_parse(): - pass +def test_punct(eventgen_config): + """Test _punct method with given string""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert '--:\n$^' == config_instance._punct('this-is-a: test \ntest $^') + + +def test_parse(eventgen_config): + """Test parse method with given evengen config""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + config_instance.parse() + assert len(config_instance.samples) == 1 From f0cc38b33d069e129be56772cd4b7ce9923e1ced Mon Sep 17 00:00:00 2001 From: Gordon Wang Date: Fri, 15 Mar 2019 12:18:07 +0800 Subject: [PATCH 14/68] [Build] add ut for timeparser functions --- .../unit/eventgen.conf.config | 4 +- tests/unit/test_timeparser.py | 123 ++++++++++++++++++ 2 files changed, 125 insertions(+), 2 deletions(-) create mode 100644 tests/unit/test_timeparser.py diff --git a/tests/sample_eventgen_conf/unit/eventgen.conf.config b/tests/sample_eventgen_conf/unit/eventgen.conf.config index 3b10ce9f..81f3c44e 100644 --- a/tests/sample_eventgen_conf/unit/eventgen.conf.config +++ b/tests/sample_eventgen_conf/unit/eventgen.conf.config @@ -7,7 +7,7 @@ splunkPort = 8088 earliest = -3s latest = now -count = 0 +count = -1 delay = 10 interval = 3 @@ -35,4 +35,4 @@ autotimestamps = [["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M: token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py new file mode 100644 index 00000000..b39f0549 --- /dev/null +++ b/tests/unit/test_timeparser.py @@ -0,0 +1,123 @@ +import datetime + +import pytest + +from splunk_eventgen.lib import timeparser + +time_delta_test_params = [(datetime.timedelta(days=1), 86400), + (datetime.timedelta( + days=1, hours=3, minutes=15, seconds=32), 98132), + (datetime.timedelta(hours=1, minutes=10), 4200), + (datetime.timedelta(hours=-1), -3600), (None, 0)] + + +@pytest.mark.parametrize('delta,expect', time_delta_test_params) +def test_time_delta_2_second(delta, expect): + ''' Test timeDelta2secs function, convert time delta object to seconds + Normal cases: + case 1: time delta is 1 day, expect is 86400 + case 2: time delta is 1 day 3 hour 15 minutes 32 seconds, expect is 98132 + case 3: time delta is less than 1 day, only 1 hour 10 minutes, expect is 4200 + case 4: time delta is 1 hour ago, expect is -3600 + + Corner cases: + case 1: delta object is None -- invalid input, expect is + ''' + assert timeparser.timeDelta2secs(delta) == expect + + +def check_datetime_equal(d1, d2): + assert d1.year == d2.year + assert d1.month == d2.month + assert d1.day == d2.day + assert d1.hour == d2.hour + assert d1.minute == d2.minute + assert d1.second == d2.second + + +parse_time_math_params = [('+', '100', 's', + datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 12, 0)), + ('-', '20', 'm', + datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2017, 7, 8, 4, 10, 20)), + ('', '3', 'w', + datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 29, 4, 10, 20)), + ('', '0', 's', + datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20)), + ('', '123', '', + datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20))] + + +@pytest.mark.parametrize('plusminus,num,unit,ret,expect', + parse_time_math_params) +def test_time_parser_time_math(plusminus, num, unit, ret, expect): + ''' + test timeParserTimeMath function, parse the time modifier + Normal Case: + Case 1: input "+100s" -- the parser should translate it as 100 seconds later. + Case 2: input "-20m" -- the parser should handle the month larger than 12 and translate as 20 months ago + Case 3: input '3w' -- the parser should translate as 21 days later. + + Corner Cases: + Case 1: input "0s" -- the time parser should return now + Case 2: input "123" -- unit is the empty string, behavior + ''' + check_datetime_equal(timeparser.timeParserTimeMath(plusminus, num, unichr, ret), expect) + + +def mock_now(): + return datetime.datetime(2019, 3, 10, 13, 20, 15) + + +def mock_utc_now(): + return datetime.datetime(2019, 3, 10, 5, 20, 15) + + +timeparser_params = [ + ('now', datetime.timedelta(days=1), + datetime.datetime(2019, 3, 10, 13, 20, 15)), + ('now', datetime.timedelta(days=0), + datetime.datetime(2019, 3, 10, 5, 20, 15)), + ('now', datetime.timedelta(hours=2), + datetime.datetime(2019, 3, 10, 7, 20, 15)), + ('now', datetime.timedelta(hours=-3), + datetime.datetime(2019, 3, 10, 2, 20, 15)), + ('-7d', datetime.timedelta(days=1), + datetime.datetime(2019, 3, 3, 13, 20, 15)), + ('-0mon@mon', datetime.timedelta(days=1), + datetime.datetime(2019, 3, 1, 0, 0, 0)), + ('-1mon@mon', datetime.timedelta(days=1), + datetime.datetime(2019, 2, 1, 0, 0, 0)), + ('-3d@d', datetime.timedelta(days=1), datetime.datetime( + 2019, 3, 7, 0, 0, 0)), + ('+5d', datetime.timedelta(days=1), + datetime.datetime(2019, 3, 15, 13, 20, 15)), + ('', datetime.timedelta(days=1), + datetime.datetime(2019, 3, 10, 13, 20, 15)), +] + + +@pytest.mark.parametrize('ts,tz,expect', timeparser_params) +def test_timeparser(ts, tz, expect): + ''' + test timeParser function, parse splunk time modifier + Normal Cases: + Case 1: get now timestamp + Case 2: get utc now timestamp + Case 3: get utc+2 timezone timestamp + Case 4: get utc-2 timezone timestamp + Case 5: get the 7 days ago timestamp + Case 5: get the beginning of this month. check the snap to month + Case 6: get the beginning of last month. check the snap to last month + Case 7: get 3 days ago, snap to day + Case 8: get 5 days later + + Corner Cases: + Case 1: empty string as input. behavior + ''' + r = timeparser.timeParser(ts, tz, mock_now, mock_utc_now) + check_datetime_equal(r, expect) From 710da6e5b5e9c79789c2f592ade0657cbccef17e Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Thu, 4 Apr 2019 10:07:54 -0700 Subject: [PATCH 15/68] Pep8 (#151) * Format to code standards, addressed linter errors/warnings --- .gitignore | 2 +- Makefile | 9 +- setup.cfg | 18 +- setup.py | 19 +- splunk_eventgen/__init__.py | 5 +- splunk_eventgen/__main__.py | 110 ++- splunk_eventgen/eventgen_core.py | 160 +++-- splunk_eventgen/eventgen_nameko_controller.py | 48 +- splunk_eventgen/eventgen_nameko_dependency.py | 12 +- splunk_eventgen/eventgen_nameko_server.py | 117 ++-- splunk_eventgen/identitygen.py | 224 +++--- splunk_eventgen/lib/eventgenconfig.py | 289 ++++---- splunk_eventgen/lib/eventgenexceptions.py | 4 +- splunk_eventgen/lib/eventgenoutput.py | 41 +- splunk_eventgen/lib/eventgensamples.py | 136 ++-- splunk_eventgen/lib/eventgentimer.py | 78 ++- splunk_eventgen/lib/eventgentimestamp.py | 10 +- splunk_eventgen/lib/eventgentoken.py | 171 ++--- splunk_eventgen/lib/generatorplugin.py | 101 +-- splunk_eventgen/lib/logutils_src/doc/conf.py | 73 +- .../lib/logutils_src/logutils/__init__.py | 16 +- .../lib/logutils_src/logutils/adapter.py | 2 + .../lib/logutils_src/logutils/colorize.py | 40 +- .../lib/logutils_src/logutils/dictconfig.py | 156 ++--- .../lib/logutils_src/logutils/http.py | 10 +- .../lib/logutils_src/logutils/queue.py | 7 +- .../lib/logutils_src/logutils/redis.py | 5 + .../lib/logutils_src/logutils/testing.py | 12 +- .../lib/logutils_src/logutils_src_setup.py | 16 +- .../lib/logutils_src/tests/logutil_tests.py | 22 - .../lib/logutils_src/tests/mytest.py | 3 +- .../lib/logutils_src/tests/test_adapter.py | 31 +- .../lib/logutils_src/tests/test_colorize.py | 6 +- .../lib/logutils_src/tests/test_dictconfig.py | 659 +++++++----------- .../lib/logutils_src/tests/test_formatter.py | 11 +- .../lib/logutils_src/tests/test_messages.py | 11 +- .../lib/logutils_src/tests/test_queue.py | 28 +- .../lib/logutils_src/tests/test_redis.py | 38 +- .../lib/logutils_src/tests/test_testing.py | 25 +- splunk_eventgen/lib/outputcounter.py | 7 +- splunk_eventgen/lib/outputplugin.py | 9 +- .../lib/plugins/generator/default.py | 41 +- .../lib/plugins/generator/jinja.py | 73 +- .../generator/perdayvolumegenerator.py | 34 +- .../lib/plugins/generator/replay.py | 42 +- .../lib/plugins/generator/weblog.py | 41 +- .../lib/plugins/generator/windbag.py | 9 +- splunk_eventgen/lib/plugins/output/awss3.py | 92 +-- splunk_eventgen/lib/plugins/output/devnull.py | 6 +- splunk_eventgen/lib/plugins/output/file.py | 43 +- .../lib/plugins/output/httpevent.py | 132 ++-- .../lib/plugins/output/modinput.py | 10 +- splunk_eventgen/lib/plugins/output/s2s.py | 25 +- .../lib/plugins/output/splunkstream.py | 51 +- splunk_eventgen/lib/plugins/output/spool.py | 16 +- splunk_eventgen/lib/plugins/output/stdout.py | 8 +- .../lib/plugins/output/syslogout.py | 24 +- splunk_eventgen/lib/plugins/output/tcpout.py | 15 +- splunk_eventgen/lib/plugins/output/udpout.py | 14 +- splunk_eventgen/lib/plugins/rater/config.py | 57 +- .../lib/plugins/rater/perdayvolume.py | 53 +- splunk_eventgen/lib/timeparser.py | 132 ++-- splunk_eventgen/logger/logger_config.py | 27 +- .../logger/requests_futures/__init__.py | 3 +- .../logger/requests_futures/sessions.py | 11 +- .../splunk_app/bin/modinput_eventgen.py | 33 +- .../splunk_app/lib/modinput/__init__.py | 125 ++-- .../splunk_app/lib/modinput/fields.py | 75 +- splunk_eventgen/splunk_app/lib/xmloutput.py | 39 +- tests/large/test_eventgen_orchestration.py | 515 +++++++------- tests/medium/plugins/test_file_output.py | 3 +- tests/medium/plugins/test_jinja_generator.py | 3 +- tests/medium/plugins/test_syslog_output.py | 5 +- tests/medium/plugins/test_tcp_output.py | 4 +- tests/medium/plugins/test_udp_output.py | 3 +- tests/run_tests.py | 16 +- tests/small/test_main.py | 68 +- 77 files changed, 2315 insertions(+), 2274 deletions(-) delete mode 100644 splunk_eventgen/lib/logutils_src/tests/logutil_tests.py diff --git a/.gitignore b/.gitignore index 228e620a..d0e9c0ba 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ stage/ local/ eventgen_wsgi.conf *.log -dist *.egg-info **/*.tgz .cache @@ -27,3 +26,4 @@ _book *.result venv/* *.log.* +splunk_eventgen-*/ diff --git a/Makefile b/Makefile index e49e4daf..81d1b419 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ image: setup_eventgen egg rm splunk_eventgen/default/eventgen_engine.conf || true docker build -f dockerfiles/Dockerfile . -t eventgen -test: egg image test_helper test_collection_cleanup +test: egg image test_helper run_tests test_collection_cleanup test_helper: docker run -d -t --net=host -v /var/run/docker.sock:/var/run/docker.sock --name ${EVENTGEN_TEST_IMAGE} eventgen:latest cat @@ -41,15 +41,10 @@ test_helper: @echo 'Installing test requirements' docker exec -i ${EVENTGEN_TEST_IMAGE} /bin/sh -c "pip install -r $(shell pwd)/tests/requirements.txt" || true +run_tests: @echo 'Running the super awesome tests' docker exec -i ${EVENTGEN_TEST_IMAGE} /bin/sh -c "cd $(shell pwd); python tests/run_tests.py ${SMALL} ${MEDIUM} ${LARGE} ${XLARGE}" || true - echo 'Collecting results' - #TODO: Should be paramaterized or generalized so that we don't need to add this here - docker cp ${EVENTGEN_TEST_IMAGE}:$(shell pwd)/tests_results.xml tests_results.xml || echo "no tests_results.xml" || true - - docker stop ${EVENTGEN_TEST_IMAGE} || true - test_collection_cleanup: @echo 'Collecting results' #TODO: Should be paramaterized or generalized so that we don't need to add this here diff --git a/setup.cfg b/setup.cfg index ab926b67..d8f0d78f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,22 @@ [flake8] -exclude = .git,.tox,__pycache__,env,venv,build,dist,docs +exclude = .git,.tox,__pycache__,env,venv,splunk_eventgen/lib/concurrent,splunk_eventgen/lib/requests_futures max-line-length = 120 +ignore = E121,E123,E126,E226,E24,E704,W503,W504,E722,E731,W605 +# Includes default ignores, E722 (bare excepts), E731 (lambda usage), and W605 (escape sequences) [metadata] description-file = README.md version-from-file: __init__.py [yapf] -based_on_style = pep8 -spaces_before_comment = 4 -split_before_logical_operator = true +column_limit = 120 +split_all_comma_separated_values = false +split_before_named_assigns = false +split_before_first_argument = false +split_before_expression_after_opening_paren = false +split_before_closing_bracket = false +each_dict_entry_on_separate_line = false + +[isort] +# isort/yapf solutions to below files are not compatible +skip = splunk_eventgen/lib/concurrent,splunk_eventgen/lib/requests_futures diff --git a/setup.py b/setup.py index 3df22c4a..0cf07e05 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,16 @@ #!/usr/bin/env python # encoding: utf-8 -from setuptools import setup -from setuptools import find_packages -import splunk_eventgen +from setuptools import find_packages, setup +import splunk_eventgen VERSION = splunk_eventgen.__version__ try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') -except(IOError, ImportError): +except (IOError, ImportError): long_description = open('README.md').read() @@ -27,12 +26,9 @@ def readme(): long_description=long_description, author='Splunk, Inc.', classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'Topic :: Software Development :: Libraries :: Python Modules', - 'Topic :: Software Development :: Build Tools', - 'Topic :: Software Development :: Testing', - 'Programming Language :: Python', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', + 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Build Tools', + 'Topic :: Software Development :: Testing', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7'], keywords='splunk eventgen container containers docker automation', entry_points={'console_scripts': ["splunk_eventgen = splunk_eventgen.__main__:main"]}, @@ -56,5 +52,4 @@ def readme(): 'flake8>=3.7.7', 'yapf>=0.26.0', 'isort>=4.3.15' - ] - ) + ]) diff --git a/splunk_eventgen/__init__.py b/splunk_eventgen/__init__.py index 6bbcdcc3..04a51e0b 100644 --- a/splunk_eventgen/__init__.py +++ b/splunk_eventgen/__init__.py @@ -3,6 +3,7 @@ import json import os + file_location = os.path.normpath(os.path.realpath(__file__)) VERSION_FILE = "version.json" VERSION_LOCATION = os.path.normpath(os.path.join(file_location, '..', VERSION_FILE)) @@ -10,7 +11,7 @@ def _get_version(versionfile): """ - @param versionfile: File to get the version info from + @param versionfile: File to get the version info from @return: Version Number """ with open(VERSION_LOCATION, 'r') as fp: @@ -19,6 +20,7 @@ def _get_version(versionfile): fp.close() return version + def _set_dev_version(): """ Write .dev at the end of version @@ -33,6 +35,7 @@ def _set_dev_version(): fp.write(json.dumps(json_data)) fp.close() + def _set_release_version(): """ Remove .dev at end of version if it exists diff --git a/splunk_eventgen/__main__.py b/splunk_eventgen/__main__.py index c4c5d453..d9e43d3d 100644 --- a/splunk_eventgen/__main__.py +++ b/splunk_eventgen/__main__.py @@ -6,6 +6,7 @@ import argparse import errno +import logging import os import shutil import sys @@ -13,64 +14,97 @@ import requests +import eventgen_core + FILE_LOCATION = os.path.dirname(os.path.abspath(__file__)) path_prepend = os.path.join(FILE_LOCATION, 'lib') sys.path.append(path_prepend) -import __init__ as splunk_eventgen_init -import logging -import eventgen_core + +import __init__ as splunk_eventgen_init # noqa isort:skip EVENTGEN_VERSION = splunk_eventgen_init.__version__ logger = logging.getLogger() + def parse_args(): """Parse command line arguments""" subparser_dict = {} - parser = argparse.ArgumentParser(prog='Eventgen', - description='Splunk Event Generation Tool') + parser = argparse.ArgumentParser(prog='Eventgen', description='Splunk Event Generation Tool') parser.add_argument("-v", "--verbosity", action="count", help="increase output verbosity") parser.add_argument("--version", action='version', default=False, version='%(prog)s ' + EVENTGEN_VERSION) parser.add_argument("--modinput-mode", default=False) subparsers = parser.add_subparsers(title='commands', help="valid subcommands", dest='subcommand') # Generate subparser generate_subparser = subparsers.add_parser('generate', help="Generate events using a supplied config file") - generate_subparser.add_argument("configfile", help="Location of eventgen.conf, app folder, or name of an app in $SPLUNK_HOME/etc/apps to run") + generate_subparser.add_argument( + "configfile", help="Location of eventgen.conf, app folder, or name of an app in $SPLUNK_HOME/etc/apps to run") generate_subparser.add_argument("-s", "--sample", help="Run specified sample only, disabling all other samples") generate_subparser.add_argument("--keepoutput", action="store_true", help="Keep original outputMode for the sample") generate_subparser.add_argument("--devnull", action="store_true", help="Set outputMode to devnull") - generate_subparser.add_argument("--modinput", action="store_true", help="Set outputMode to modinput, to see metadata") + generate_subparser.add_argument("--modinput", action="store_true", + help="Set outputMode to modinput, to see metadata") generate_subparser.add_argument("-c", "--count", type=int, help="Set sample count") generate_subparser.add_argument("-i", "--interval", type=int, help="Set sample interval") - generate_subparser.add_argument("-b", "--backfill", help="Set time to backfill from. Note: to use it, send the parameter with space in front like ' -60m'") - generate_subparser.add_argument("-e", "--end", help="Set time to end generation at or a number of intervals to run. Note: to use it with a time, send the parameter with space in front like ' -10m'") + generate_subparser.add_argument("-b", "--backfill", help="Set time to backfill from") + generate_subparser.add_argument("-e", "--end", help="Set time to end generation at or a number of intervals to run") generate_subparser.add_argument("--generators", type=int, help="Number of GeneratorWorkers (mappers)") generate_subparser.add_argument("--outputters", type=int, help="Number of OutputWorkers (reducers)") generate_subparser.add_argument("--disableOutputQueue", action="store_true", help="Disable reducer step") - generate_subparser.add_argument("--multiprocess", action="store_true", help="Use multiprocesing instead of threading") + generate_subparser.add_argument("--multiprocess", action="store_true", + help="Use multiprocesing instead of threading") generate_subparser.add_argument("--profiler", action="store_true", help="Turn on cProfiler") generate_subparser.add_argument("--log-path", type=str, default="{0}/logs".format(FILE_LOCATION)) # Build subparser build_subparser = subparsers.add_parser('build', help="Will build different forms of sa-eventgen") - build_subparser.add_argument("--mode", type=str, default="splunk-app", help="Specify what type of package to build, defaults to splunk-app mode.") + build_subparser.add_argument("--mode", type=str, default="splunk-app", + help="Specify what type of package to build, defaults to splunk-app mode.") build_subparser.add_argument("--destination", help="Specify where to store the output of the build command.") - build_subparser.add_argument("--remove", default=True, help="Remove the build directory after completion. Defaults to True") + build_subparser.add_argument("--remove", default=True, + help="Remove the build directory after completion. Defaults to True") # WSGI subparser wsgi_subparser = subparsers.add_parser('wsgi', help="start a wsgi server to interact with eventgen.") - wsgi_subparser.add_argument("--daemon", action="store_true", help="Daemon will tell the wsgi server to start in a daemon mode and will release the cli.") + wsgi_subparser.add_argument( + "--daemon", action="store_true", + help="Daemon will tell the wsgi server to start in a daemon mode and will release the cli.") # Service subparser - service_subparser = subparsers.add_parser('service', help="Run Eventgen as a Nameko service. Parameters for starting this service can be defined as either environment variables or CLI arguments, where environment variables takes precedence. See help for more info.") - service_subparser.add_argument("--role", "-r", type=str, default=None, required=True, choices=["controller", "server"], help="Define the role for this Eventgen node. Options: master, slave") - service_subparser.add_argument("--amqp-uri", type=str, default=None, help="Full URI to AMQP endpoint in the format pyamqp://:@:. This can also be set using the environment variable EVENTGEN_AMQP_URI") - service_subparser.add_argument("--amqp-host", type=str, default=None, help="Specify AMQP hostname. This can also be set using the environment variable EVENTGEN_AMQP_HOST. Default is localhost") - service_subparser.add_argument("--amqp-port", type=int, default=None, help="Specify AMQP port. This can also be set using the environment variable EVENTGEN_AMQP_PORT. Default is 5672") - service_subparser.add_argument("--amqp-webport", type=int, default=None, help="Specify AMQP web port. This can also be set using the environment variable EVENTGEN_AMQP_WEBPORT. Default is 15672") - service_subparser.add_argument("--amqp-user", type=str, default=None, help="Specify AMQP user. This can also be set using the environment variable EVENTGEN_AMQP_USER. Default is 'guest'") - service_subparser.add_argument("--amqp-pass", type=str, default=None, help="Specify AMQP password. This can also be set using the environment variable EVENTGEN_AMQP_PASS. Default is 'guest'") - service_subparser.add_argument("--web-server-address", type=str, default=None, help="Specify nameko webserver address. This can also be set using the environment variable EVENTGEN_WEB_SERVER_ADDR. Default is 0.0.0.0:9500") + service_subparser = subparsers.add_parser( + 'service', + help=("Run Eventgen as a Nameko service. Parameters for starting this service can be defined as either env" + "variables or CLI arguments, where env variables takes precedence. See help for more info.")) + service_subparser.add_argument("--role", "-r", type=str, default=None, required=True, choices=[ + "controller", "server"], help="Define the role for this Eventgen node. Options: master, slave") + service_subparser.add_argument( + "--amqp-uri", type=str, default=None, + help=("Full URI to AMQP endpoint in the format pyamqp://:@:." + "This can also be set using the environment variable EVENTGEN_AMQP_URI")) + service_subparser.add_argument( + "--amqp-host", type=str, default=None, + help=("Specify AMQP hostname. This can also be set using the environment variable EVENTGEN_AMQP_HOST." + + "Default is localhost")) + service_subparser.add_argument( + "--amqp-port", type=int, default=None, + help=("Specify AMQP port. This can also be set using the environment variable EVENTGEN_AMQP_PORT." + + "Default is 5672")) + service_subparser.add_argument( + "--amqp-webport", type=int, default=None, + help=("Specify AMQP web port. This can also be set using the environment variable EVENTGEN_AMQP_WEBPORT." + + "Default is 15672")) + service_subparser.add_argument( + "--amqp-user", type=str, default=None, + help=("Specify AMQP user. This can also be set using the environment variable EVENTGEN_AMQP_USER." + + "Default is 'guest'")) + service_subparser.add_argument( + "--amqp-pass", type=str, default=None, + help=("Specify AMQP password. This can also be set using the environment variable EVENTGEN_AMQP_PASS." + + "Default is 'guest'")) + service_subparser.add_argument( + "--web-server-address", type=str, default=None, + help=("Specify nameko webserver address. This can also be set using the environment variable" + + "EVENTGEN_WEB_SERVER_ADDR. Default is 0.0.0.0:9500")) # Help subparser # NOTE: Keep this at the end so we can use the subparser_dict.keys() to display valid commands help_subparser = subparsers.add_parser('help', help="Display usage on a subcommand") - helpstr = "Help on a specific command, valid commands are: " + ", ".join(subparser_dict.keys() + ["help"]) + helpstr = "Help on a specific command, valid commands are: " + ", ".join(subparser_dict.keys() + ["help"]) help_subparser.add_argument("command", nargs='?', default="default", help=helpstr) # add subparsers to the subparser dict, this will be used later for usage / help statements. subparser_dict['generate'] = generate_subparser @@ -91,7 +125,7 @@ def parse_args(): if 'subcommand' not in args: parser.print_help() sys.exit(2) - + if args.subcommand == "service": if not args.role: msg = "Role is undefined. Please specify a role for this Eventgen service using --role/-r." @@ -120,10 +154,11 @@ def parse_args(): args.configfile = None return args + def wait_for_response(address, webport, timeout=300): ''' - This function extracts the hostname off the given address in the form ://:@: - and builds a URL in the form http://:. Using this URL, it tries to verify the endpoint is reachable. + Extracts the hostname off the given address in the form ://:@: and + builds a URL in the form http://:. Using this URL, it tries to verify the endpoint is reachable. Retry will occur for ~300s ''' @@ -133,12 +168,12 @@ def wait_for_response(address, webport, timeout=300): userid, password = creds.split(":") start = time.time() end = start - while end-start < timeout: + while end - start < timeout: try: r = requests.get("http://{}:{}".format(host, webport)) r.raise_for_status() return - except requests.exceptions.ConnectionError as e: + except requests.exceptions.ConnectionError: time.sleep(1) finally: end = time.time() @@ -146,6 +181,7 @@ def wait_for_response(address, webport, timeout=300): logger.exception(msg) raise Exception(msg) + def parse_cli_vars(config, args): config["AMQP_URI"] = args.amqp_uri if args.amqp_uri else config["AMQP_URI"] config["AMQP_HOST"] = args.amqp_host if args.amqp_host else config["AMQP_HOST"] @@ -156,6 +192,7 @@ def parse_cli_vars(config, args): config["WEB_SERVER_ADDRESS"] = args.web_server_address if args.web_server_address else config["WEB_SERVER_ADDRESS"] return config + def parse_env_vars(): osvars, config = dict(os.environ), {} config["AMQP_URI"] = osvars.get("EVENTGEN_AMQP_URI", None) @@ -167,6 +204,7 @@ def parse_env_vars(): config["WEB_SERVER_ADDRESS"] = osvars.get("EVENTGEN_WEB_SERVER_ADDR", "0.0.0.0:9500") return config + def rectify_config(config): # For nameko purposes, all we need to pass into the config is AMQP_URI and WEB_SERVER_ADDRESS. new = {} @@ -176,22 +214,21 @@ def rectify_config(config): new["AMQP_URI"] = config["AMQP_URI"] else: if all([config["AMQP_HOST"], config["AMQP_PORT"], config["AMQP_USER"], config["AMQP_PASS"]]): - new["AMQP_URI"] = "pyamqp://{user}:{pw}@{host}:{port}".format(user=config["AMQP_USER"], - pw=config["AMQP_PASS"], - host=config["AMQP_HOST"], - port=config["AMQP_PORT"]) + new["AMQP_URI"] = "pyamqp://{user}:{pw}@{host}:{port}".format( + user=config["AMQP_USER"], pw=config["AMQP_PASS"], host=config["AMQP_HOST"], port=config["AMQP_PORT"]) else: msg = "AMQP_URI is not defined and cannot be constructed. Check environment variables/CLI arguments." logger.exception(msg) raise Exception(msg) return new + def run_nameko(args): # Running nameko imports here so that Eventgen as a module does not require nameko to run. import eventlet eventlet.monkey_patch() from nameko.runners import ServiceRunner - # In order to make this run locally as well as within a container-ized environment, we're to pull variables + # In order to make this run locally as well as within a container-ized environment, we're to pull variables # from both environment variables and CLI arguments, where CLI will take precendence. config = parse_env_vars() config = parse_cli_vars(config, args) @@ -229,6 +266,7 @@ def run_nameko(args): # runner.wait completed break + def exclude_function(filename): # removing any hidden . files. last_index = filename.rfind('/') @@ -240,13 +278,15 @@ def exclude_function(filename): else: return False + def make_tarfile(output_filename, source_dir): import tarfile with tarfile.open(output_filename, "w:gz") as tar: tar.add(source_dir, arcname=os.path.basename(source_dir), exclude=exclude_function) + def build_splunk_app(dest, source=os.getcwd(), remove=True): - import errno, imp + import imp cwd = os.getcwd() os.chdir(source) directory = os.path.join(dest, 'SA-Eventgen') @@ -275,6 +315,7 @@ def build_splunk_app(dest, source=os.getcwd(), remove=True): shutil.rmtree(directory) os.chdir(cwd) + def convert_verbosity_count_to_logging_level(verbosity): if verbosity == 0: return logging.ERROR @@ -285,6 +326,7 @@ def convert_verbosity_count_to_logging_level(verbosity): else: return logging.ERROR + def main(): cwd = os.getcwd() args = parse_args() diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index e9db47f6..71c80647 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -1,17 +1,19 @@ #!/usr/bin/env python # encoding: utf-8 -from lib.eventgenconfig import Config -from lib.eventgentimer import Timer -from lib.eventgenexceptions import PluginNotLoaded, FailedLoadingPlugin -from lib.outputcounter import OutputCounter +import imp +import json import logging import logging.config import os import sys -import imp -from Queue import Queue, Empty -from threading import Thread import time +from Queue import Empty, Queue +from threading import Thread + +from lib.eventgenconfig import Config +from lib.eventgenexceptions import PluginNotLoaded +from lib.eventgentimer import Timer +from lib.outputcounter import OutputCounter lib_path_prepend = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'lib') sys.path.insert(0, lib_path_prepend) @@ -26,23 +28,24 @@ import logutils import logutils.queue -file_path=os.path.dirname(os.path.realpath(__file__)) +file_path = os.path.dirname(os.path.realpath(__file__)) EVENTGEN_DIR = os.path.realpath(os.path.join(file_path, "..")) EVENTGEN_ENGINE_CONF_PATH = os.path.abspath(os.path.join(file_path, "default", "eventgen_engine.conf")) -import json + class JSONFormatter(logging.Formatter): """ Quick and dirty formatter that turns the log into a quick json format """ + def format(self, record): message = record.msg if not isinstance(message, dict): - #The record is probably a string + # The record is probably a string try: message = json.loads(message) except ValueError: - #Abort, just store the message as an attribute + # Abort, just store the message as an attribute message = {"message": message} if "timestamp" not in message: @@ -51,8 +54,9 @@ def format(self, record): message["level"] = logging.getLevelName(record.levelno) return json.dumps(message) + class EventGenerator(object): - def __init__(self, args=None ): + def __init__(self, args=None): ''' This object will allow you to generate and control eventgen. It should be handed the parse_args object from __main__ and will hand the argument object to the config parser of eventgen5. This will provide the @@ -81,12 +85,11 @@ def _load_config(self, configfile, **kwargs): :param configfile: :return: ''' - #TODO: The old eventgen had strange cli args, and usage of args. We should probably update the module args - #to match more of what this is doing... - new_args={} + # TODO: The old eventgen had strange cli args. We should probably update the module args to match this usage. + new_args = {} if "args" in kwargs: args = kwargs["args"] - outputer = [key for key in ["keepoutput","devnull","modinput"] if getattr(args, key)] + outputer = [key for key in ["keepoutput", "devnull", "modinput"] if getattr(args, key)] if len(outputer) > 0: new_args["override_outputter"] = outputer[0] if getattr(args, "count"): @@ -112,7 +115,7 @@ def _load_config(self, configfile, **kwargs): self.config = Config(configfile, **new_args) self.config.parse() self._reload_plugins() - #TODO: Probably should destroy pools better so processes are cleaned. + # TODO: Probably should destroy pools better so processes are cleaned. self._setup_pools() def _reload_plugins(self): @@ -120,11 +123,14 @@ def _reload_plugins(self): # Plugins must be loaded before objects that do work, otherwise threads and processes generated will not have # the modules loaded in active memory. try: - self.config.outputPlugins = { } - plugins = self._initializePlugins(os.path.join(file_path, 'lib', 'plugins', 'output'), self.config.outputPlugins, 'output') + self.config.outputPlugins = {} + plugins = self._initializePlugins( + os.path.join(file_path, 'lib', 'plugins', 'output'), self.config.outputPlugins, 'output') self.config.validOutputModes.extend(plugins) - self._initializePlugins(os.path.join(file_path, 'lib', 'plugins', 'generator'), self.config.plugins, 'generator') - plugins = self._initializePlugins(os.path.join(file_path, 'lib', 'plugins', 'rater'), self.config.plugins, 'rater') + self._initializePlugins( + os.path.join(file_path, 'lib', 'plugins', 'generator'), self.config.plugins, 'generator') + plugins = self._initializePlugins( + os.path.join(file_path, 'lib', 'plugins', 'rater'), self.config.plugins, 'rater') self.config._complexSettings['rater'] = plugins except Exception as e: self.logger.exception(e) @@ -133,13 +139,12 @@ def _load_custom_plugins(self, PluginNotLoadedException): plugintype = PluginNotLoadedException.type plugin = PluginNotLoadedException.name bindir = PluginNotLoadedException.bindir - libdir = PluginNotLoadedException.libdir plugindir = PluginNotLoadedException.plugindir pluginsdict = self.config.plugins if plugintype in ('generator', 'rater') else self.config.outputPlugins - #APPPERF-263: be picky when loading from an app bindir (only load name) + # APPPERF-263: be picky when loading from an app bindir (only load name) self._initializePlugins(bindir, pluginsdict, plugintype, name=plugin) - #APPPERF-263: be greedy when scanning plugin dir (eat all the pys) + # APPPERF-263: be greedy when scanning plugin dir (eat all the pys) self._initializePlugins(plugindir, pluginsdict, plugintype) def _setup_pools(self): @@ -165,31 +170,33 @@ def _create_timer_threadpool(self, threadcount=100): self.sampleQueue = Queue(maxsize=0) num_threads = threadcount for i in range(num_threads): - worker = Thread(target=self._worker_do_work, - args=(self.sampleQueue, self.loggingQueue, ), - name="TimeThread{0}".format(i)) + worker = Thread(target=self._worker_do_work, args=( + self.sampleQueue, + self.loggingQueue, + ), name="TimeThread{0}".format(i)) worker.setDaemon(True) worker.start() def _create_output_threadpool(self, threadcount=1): ''' the output thread pool is used for output plugins that need to control file locking, or only have 1 set thread - to send all the data out of. this FIFO queue just helps make sure there are file collisions or write collisions. + to send all the data out of. This FIFO queue just helps make sure there are file collisions or write collisions. There's only 1 active thread for this queue, if you're ever considering upping this, don't. Just shut off the outputQueue and let each generator directly output it's data. :param threadcount: is how many active output threads we want to allow inside of eventgen. Default 1 :return: ''' - #TODO: Make this take the config param and figure out what we want to do with this. + # TODO: Make this take the config param and figure out what we want to do with this. if getattr(self, "manager", None): self.outputQueue = self.manager.Queue(maxsize=500) else: self.outputQueue = Queue(maxsize=500) num_threads = threadcount for i in range(num_threads): - worker = Thread(target=self._worker_do_work, - args=(self.outputQueue, self.loggingQueue, ), - name="OutputThread{0}".format(i)) + worker = Thread(target=self._worker_do_work, args=( + self.outputQueue, + self.loggingQueue, + ), name="OutputThread{0}".format(i)) worker.setDaemon(True) worker.start() @@ -206,7 +213,7 @@ def _create_generator_pool(self, workercount=20): import multiprocessing self.manager = multiprocessing.Manager() self.loggingQueue = self.manager.Queue() - self.logging_pool = Thread(target=self.logger_thread, args=(self.loggingQueue,), name="LoggerThread") + self.logging_pool = Thread(target=self.logger_thread, args=(self.loggingQueue, ), name="LoggerThread") self.logging_pool.start() # since we're now in multiprocess, we need to use better queues. self.workerQueue = multiprocessing.JoinableQueue(maxsize=500) @@ -220,7 +227,8 @@ def _create_generator_pool(self, workercount=20): for i in range(workercount): self.output_counters.append(OutputCounter()) for i in range(worker_threads): - worker = Thread(target=self._generator_do_work, args=(self.workerQueue, self.loggingQueue, self.output_counters[i])) + worker = Thread(target=self._generator_do_work, args=(self.workerQueue, self.loggingQueue, + self.output_counters[i])) worker.setDaemon(True) worker.start() else: @@ -234,9 +242,12 @@ def _create_generator_workers(self, workercount=20): import multiprocessing self.workerPool = [] for worker in xrange(workercount): - #builds a list of tuples to use the map function - process = multiprocessing.Process(target=self._proc_worker_do_work, - args=(self.workerQueue, self.loggingQueue, self.genconfig, )) + # builds a list of tuples to use the map function + process = multiprocessing.Process(target=self._proc_worker_do_work, args=( + self.workerQueue, + self.loggingQueue, + self.genconfig, + )) self.workerPool.append(process) process.start() else: @@ -262,23 +273,28 @@ def _setup_loggers(self, args=None, config=None): console_handler.setFormatter(detailed_formatter) console_handler.setLevel(logging.DEBUG) - file_handler = logging.handlers.RotatingFileHandler(eventgen_main_logger_path, maxBytes=2500000, backupCount=20) + file_handler = logging.handlers.RotatingFileHandler(eventgen_main_logger_path, maxBytes=2500000, + backupCount=20) file_handler.setFormatter(detailed_formatter) file_handler.setLevel(logging.DEBUG) - eventgen_controller_file_handler = logging.handlers.RotatingFileHandler(eventgen_controller_logger_path, maxBytes=2500000, backupCount=20) + eventgen_controller_file_handler = logging.handlers.RotatingFileHandler(eventgen_controller_logger_path, + maxBytes=2500000, backupCount=20) eventgen_controller_file_handler.setFormatter(detailed_formatter) eventgen_controller_file_handler.setLevel(logging.DEBUG) - error_file_handler = logging.handlers.RotatingFileHandler(eventgen_error_logger_path, maxBytes=2500000, backupCount=20) + error_file_handler = logging.handlers.RotatingFileHandler(eventgen_error_logger_path, maxBytes=2500000, + backupCount=20) error_file_handler.setFormatter(detailed_formatter) error_file_handler.setLevel(logging.ERROR) - metrics_file_handler = logging.handlers.RotatingFileHandler(eventgen_metrics_logger_path, maxBytes=2500000, backupCount=20) + metrics_file_handler = logging.handlers.RotatingFileHandler(eventgen_metrics_logger_path, maxBytes=2500000, + backupCount=20) metrics_file_handler.setFormatter(json_formatter) metrics_file_handler.setLevel(logging.INFO) - server_file_handler = logging.handlers.RotatingFileHandler(eventgen_server_logger_path, maxBytes=2500000, backupCount=10) + server_file_handler = logging.handlers.RotatingFileHandler(eventgen_server_logger_path, maxBytes=2500000, + backupCount=10) server_file_handler.setFormatter(json_formatter) server_file_handler.setLevel(logging.INFO) @@ -321,10 +337,12 @@ def _setup_loggers(self, args=None, config=None): # We need to have debugv from the olderversions of eventgen. DEBUG_LEVELV_NUM = 9 logging.addLevelName(DEBUG_LEVELV_NUM, "DEBUGV") + def debugv(self, message, *args, **kws): # Yes, logger takes its '*args' as 'args'. if self.isEnabledFor(DEBUG_LEVELV_NUM): self._log(DEBUG_LEVELV_NUM, message, args, **kws) + logging.Logger.debugv = debugv self.logger = logging.getLogger('eventgen') self.loggingQueue = None @@ -344,6 +362,7 @@ def _worker_do_work(self, work_queue, logging_queue): except Exception as e: self.logger.exception(e) raise e + def _generator_do_work(self, work_queue, logging_queue, output_counter=None): while not self.stopping: try: @@ -408,13 +427,13 @@ def _initializePlugins(self, dirname, plugins, plugintype, name=None): syspathset = set(sys.path) dirname = os.path.abspath(dirname) - self.logger.debugv("looking for plugin(s) in {}".format(dirname)) + self.logger.debug("looking for plugin(s) in {}".format(dirname)) if not os.path.isdir(dirname): - self.logger.debugv("directory {} does not exist ... moving on".format(dirname)) + self.logger.debug("directory {} does not exist ... moving on".format(dirname)) return ret # Include all plugin directories in sys.path for includes - if not dirname in sys.path: + if dirname not in sys.path: syspathset.add(dirname) sys.path = list(syspathset) @@ -429,16 +448,16 @@ def _initializePlugins(self, dirname, plugins, plugintype, name=None): base, extension = os.path.splitext(basename) # If we're a python file and we don't start with _ - #if extension == ".py" and not basename.startswith("_"): + # if extension == ".py" and not basename.startswith("_"): # APPPERF-263: If name param is supplied, only attempt to load # {name}.py from {app}/bin directory if extension == ".py" and ((name is None and not basename.startswith("_")) or base == name): - self.logger.debugv("Searching for plugin in file '%s'" % filename) + self.logger.debug("Searching for plugin in file '%s'" % filename) try: # Import the module - #module = imp.load_source(base, filename) + # module = imp.load_source(base, filename) mod_name, mod_path, mod_desc = imp.find_module(base, [dirname]) - #TODO: Probably need to adjust module.load() to be added later so this can be pickled. + # TODO: Probably need to adjust module.load() to be added later so this can be pickled. module = imp.load_module(base, mod_name, mod_path, mod_desc) plugin = module.load() @@ -487,33 +506,36 @@ def start(self, join_after_start=True): self.logger.info("No samples found. Exiting.") for s in self.config.samples: if s.interval > 0 or s.mode == 'replay' or s.end != "0": - self.logger.info("Creating timer object for sample '%s' in app '%s'" % (s.name, s.app) ) + self.logger.info("Creating timer object for sample '%s' in app '%s'" % (s.name, s.app)) # This is where the timer is finally sent to a queue to be processed. Needs to move to this object. try: - t = Timer(1.0, sample=s, config=self.config, - genqueue=self.workerQueue, outputqueue=self.outputQueue, loggingqueue=self.loggingQueue) + t = Timer(1.0, sample=s, config=self.config, genqueue=self.workerQueue, + outputqueue=self.outputQueue, loggingqueue=self.loggingQueue) except PluginNotLoaded as pnl: self._load_custom_plugins(pnl) - t = Timer(1.0, sample=s, config=self.config, - genqueue=self.workerQueue, outputqueue=self.outputQueue, loggingqueue=self.loggingQueue) + t = Timer(1.0, sample=s, config=self.config, genqueue=self.workerQueue, + outputqueue=self.outputQueue, loggingqueue=self.loggingQueue) except Exception as e: raise e self.sampleQueue.put(t) if join_after_start: self.logger.info("All timers started, joining queue until it's empty.") self.join_process() - ## Only need to start timers once + # Only need to start timers once # Every 5 seconds, get values and output basic statistics about our operations - #TODO: Figure out how to do this better... - #generatorsPerSec = (generatorDecrements - generatorQueueCounter) / 5 - #outputtersPerSec = (outputDecrements - outputQueueCounter) / 5 - #outputQueueCounter = outputDecrements - #generatorQueueCounter = generatorDecrements - #self.logger.info('OutputQueueDepth=%d GeneratorQueueDepth=%d GeneratorsPerSec=%d OutputtersPerSec=%d' % (self.config.outputQueueSize.value(), self.config.generatorQueueSize.value(), generatorsPerSec, outputtersPerSec)) - #kiloBytesPerSec = self.config.bytesSent.valueAndClear() / 5 / 1024 - #gbPerDay = (kiloBytesPerSec / 1024 / 1024) * 60 * 60 * 24 - #eventsPerSec = self.config.eventsSent.valueAndClear() / 5 - #self.logger.info('GlobalEventsPerSec=%s KilobytesPerSec=%1f GigabytesPerDay=%1f' % (eventsPerSec, kiloBytesPerSec, gbPerDay)) + # TODO: Figure out how to do this better... + # generatorsPerSec = (generatorDecrements - generatorQueueCounter) / 5 + # outputtersPerSec = (outputDecrements - outputQueueCounter) / 5 + # outputQueueCounter = outputDecrements + # generatorQueueCounter = generatorDecrements + # self.logger.info('OutputQueueDepth=%d GeneratorQueueDepth=%d GeneratorsPerSec=%d OutputtersPerSec=%d' % + # (self.config.outputQueueSize.value(), self.config.generatorQueueSize.value(), + # generatorsPerSec, outputtersPerSec)) + # kiloBytesPerSec = self.config.bytesSent.valueAndClear() / 5 / 1024 + # gbPerDay = (kiloBytesPerSec / 1024 / 1024) * 60 * 60 * 24 + # eventsPerSec = self.config.eventsSent.valueAndClear() / 5 + # self.logger.info('GlobalEventsPerSec=%s KilobytesPerSec=%1f GigabytesPerDay=%1f' % + # (eventsPerSec, kiloBytesPerSec, gbPerDay)) def join_process(self): ''' @@ -522,7 +544,8 @@ def join_process(self): :return: ''' try: - while not self.sampleQueue.empty() or self.sampleQueue.unfinished_tasks > 0 or not self.workerQueue.empty() or self.workerQueue.unfinished_tasks > 0: + while not self.sampleQueue.empty() or self.sampleQueue.unfinished_tasks > 0 or not self.workerQueue.empty( + ) or self.workerQueue.unfinished_tasks > 0: time.sleep(5) self.logger.info("All timers have finished, signalling workers to exit.") self.stop() @@ -538,13 +561,13 @@ def stop(self): self.logger.info("All timers exited, joining generation queue until it's empty.") self.workerQueue.join() - # if we're in multiprocess, make sure that since all the timers stopped, we don't let any more generators get added. + # if we're in multiprocess, make sure we don't add more generators after the timers stopped. if self.args.multiprocess: self.genconfig["stopping"] = True for worker in self.workerPool: count = 0 # We wait for a minute until terminating the worker - while worker.exitcode == None and count != 20: + while worker.exitcode is None and count != 20: if count == 30: self.logger.info("Terminating worker {0}".format(worker._name)) worker.terminate() @@ -586,4 +609,3 @@ def check_running(self): else: return True return False - diff --git a/splunk_eventgen/eventgen_nameko_controller.py b/splunk_eventgen/eventgen_nameko_controller.py index 12cda2e7..52192859 100644 --- a/splunk_eventgen/eventgen_nameko_controller.py +++ b/splunk_eventgen/eventgen_nameko_controller.py @@ -1,22 +1,26 @@ -from nameko.rpc import rpc -from nameko.events import EventDispatcher, event_handler, BROADCAST -from nameko.web.handlers import http -from pyrabbit.api import Client import atexit +import json import logging import os import socket -from logger.logger_config import controller_logger_config import time -import json + +from pyrabbit.api import Client + +from logger.logger_config import controller_logger_config +from nameko.events import BROADCAST, EventDispatcher, event_handler +from nameko.rpc import rpc +from nameko.web.handlers import http FILE_PATH = os.path.dirname(os.path.realpath(__file__)) EVENTGEN_ENGINE_CONF_PATH = os.path.abspath(os.path.join(FILE_PATH, "default", "eventgen_engine.conf")) + def exit_handler(client, hostname, logger): client.delete_vhost(hostname) logger.info("Deleted vhost {}. Shutting down.".format(hostname)) + class EventgenController(object): name = "eventgen_controller" @@ -38,17 +42,14 @@ class EventgenController(object): config["AMQP_PASS"] = osvars.get("EVENTGEN_AMQP_PASS", "guest") pyrabbit_cl = Client('{0}:{1}'.format(config['AMQP_HOST'], config['AMQP_WEBPORT']), - '{0}'.format(config['AMQP_USER']), - '{0}'.format(config['AMQP_PASS'])) + '{0}'.format(config['AMQP_USER']), '{0}'.format(config['AMQP_PASS'])) pyrabbit_cl.create_vhost(host) log.info("Vhost set to {}".format(host)) log.info("Current Vhosts are {}".format(pyrabbit_cl.get_vhost_names())) atexit.register(exit_handler, client=pyrabbit_cl, hostname=host, logger=log) - ############################################## - ################ RPC Methods ################# - ############################################## + # RPC Methods @event_handler("eventgen_server", "server_status", handler_type=BROADCAST, reliable_delivery=False) def event_handler_server_status(self, payload): @@ -188,7 +189,7 @@ def bundle(self, target, data): except Exception as e: self.log.exception(e) return "500", "Exception: {}".format(e.message) - + @rpc def setup(self, target, data): try: @@ -210,7 +211,7 @@ def get_volume(self, target): except Exception as e: self.log.exception(e) return "500", "Exception: {}".format(e.message) - + @rpc def set_volume(self, target, data): try: @@ -238,10 +239,7 @@ def reset(self, target): self.log.exception(e) return '500', "Exception: {}".format(e.message) - - ############################################## - ################ HTTP Methods ################ - ############################################## + # HTTP Methods @http('GET', '/') def root_page(self, request): @@ -439,15 +437,13 @@ def http_set_volume_target(self, request, target="all"): def http_reset(self, request): return self.reset(target="all") - ############################################## - ############### Helper Methods ############### - ############################################## + # Helper Methods def receive_status(self, data): if data['server_name'] and data['server_status']: self.server_status[data['server_name']] = data['server_status'] rec_time = time.time() - self.log.info("receive {}'s status, update the status at time:{}".format(data['server_name'],rec_time)) + self.log.info("receive {}'s status, update the status at time:{}".format(data['server_name'], rec_time)) self.server_status['time'] = rec_time def receive_conf(self, data): @@ -461,14 +457,15 @@ def receive_volume(self, data): def process_server_status(self, current_time, num_retries=15, delay=0.3): current_server_vhosts = self.get_current_server_vhosts() server_time = self.server_status['time'] if 'time' in self.server_status else 0 - server_vhost_len = len(self.server_status) if 'time' not in self.server_status else len(self.server_status)-1 + server_vhost_len = len(self.server_status) if 'time' not in self.server_status else len(self.server_status) - 1 if current_server_vhosts: for i in range(num_retries): if server_vhost_len != len(current_server_vhosts) or server_time < current_time: time.sleep(delay) current_server_vhosts = self.get_current_server_vhosts() server_time = self.server_status['time'] if 'time' in self.server_status else 0 - server_vhost_len = len(self.server_status) if 'time' not in self.server_status else len(self.server_status)-1 + server_vhost_len = len( + self.server_status) if 'time' not in self.server_status else len(self.server_status) - 1 else: break dump_value = self.calculate_throughput(self.server_status) @@ -515,10 +512,7 @@ def check_vhost(self, vhost_name): return False def calculate_throughput(self, data): - throughput_summary = { 'TOTAL_VOLUME_MB': 0, - 'TOTAL_COUNT': 0, - 'THROUGHPUT_VOLUME_KB': 0, - 'THROUGHPUT_COUNT': 0} + throughput_summary = {'TOTAL_VOLUME_MB': 0, 'TOTAL_COUNT': 0, 'THROUGHPUT_VOLUME_KB': 0, 'THROUGHPUT_COUNT': 0} for server_name, server_status in data.items(): if server_name != 'time' and 'THROUGHPUT_STATUS' in server_status: server_throughput = server_status['THROUGHPUT_STATUS'] diff --git a/splunk_eventgen/eventgen_nameko_dependency.py b/splunk_eventgen/eventgen_nameko_dependency.py index a22577c9..6bbcd54e 100644 --- a/splunk_eventgen/eventgen_nameko_dependency.py +++ b/splunk_eventgen/eventgen_nameko_dependency.py @@ -1,9 +1,11 @@ -from nameko.extensions import DependencyProvider -import eventgen_core -import logging import argparse -import sys +import logging import os +import sys + +import eventgen_core +from nameko.extensions import DependencyProvider + FILE_PATH = os.path.dirname(os.path.realpath(__file__)) CUSTOM_CONFIG_PATH = os.path.realpath(os.path.join(FILE_PATH, "default", "eventgen_wsgi.conf")) @@ -12,6 +14,7 @@ # eventgen_nameko_dependency: error: unrecognized arguments: --role master --config server_conf.yml sys.argv = [sys.argv.pop(0)] + def create_args(): parser = argparse.ArgumentParser(prog="eventgen_nameko_dependency") args = parser.parse_args() @@ -38,6 +41,7 @@ def create_args(): args.modinput_mode = False return args + class EventgenDependency(DependencyProvider): arguments = create_args() diff --git a/splunk_eventgen/eventgen_nameko_server.py b/splunk_eventgen/eventgen_nameko_server.py index 4bb89e50..cdfe2f35 100644 --- a/splunk_eventgen/eventgen_nameko_server.py +++ b/splunk_eventgen/eventgen_nameko_server.py @@ -1,21 +1,23 @@ -from nameko.rpc import rpc -from nameko.web.handlers import http -from nameko.events import EventDispatcher, event_handler, BROADCAST -from pyrabbit.api import Client import atexit import ConfigParser -import yaml +import glob import json +import logging import os +import shutil import socket -import time -import requests -import glob import tarfile +import time import zipfile -import shutil + +import requests +import yaml +from pyrabbit.api import Client + import eventgen_nameko_dependency -import logging +from nameko.events import BROADCAST, EventDispatcher, event_handler +from nameko.rpc import rpc +from nameko.web.handlers import http FILE_PATH = os.path.dirname(os.path.realpath(__file__)) EVENTGEN_DIR = os.path.realpath(os.path.join(FILE_PATH, "..")) @@ -27,7 +29,6 @@ def get_eventgen_name_from_conf(): with open(os.path.abspath(os.path.join(FILE_PATH, "server_conf.yml"))) as config_yml: loaded_yml = yaml.load(config_yml) return loaded_yml['EVENTGEN_NAME'] if 'EVENTGEN_NAME' in loaded_yml else socket.gethostname() - return None def exit_handler(client, hostname, logger): @@ -53,8 +54,7 @@ class EventgenServer(object): config["AMQP_PASS"] = osvars.get("EVENTGEN_AMQP_PASS", "guest") pyrabbit_cl = Client('{0}:{1}'.format(config['AMQP_HOST'], config['AMQP_WEBPORT']), - '{0}'.format(config['AMQP_USER']), - '{0}'.format(config['AMQP_PASS'])) + '{0}'.format(config['AMQP_USER']), '{0}'.format(config['AMQP_PASS'])) pyrabbit_cl.create_vhost(host) log.info("Vhost set to {}".format(host)) @@ -85,7 +85,7 @@ def get_status(self): if self.eventgen_dependency.eventgen.check_running(): # running status = 1 - elif self.eventgen_dependency.eventgen.completed == True: + elif self.eventgen_dependency.eventgen.completed is True: # all samples completed and stop status = 2 else: @@ -96,9 +96,10 @@ def get_status(self): res["CONFIGURED"] = self.eventgen_dependency.configured res["CONFIG_FILE"] = self.eventgen_dependency.configfile res["TOTAL_VOLUME"] = self.total_volume - res["QUEUE_STATUS"] = {'SAMPLE_QUEUE': {'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}, - 'OUTPUT_QUEUE': {'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}, - 'WORKER_QUEUE': {'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}} + res["QUEUE_STATUS"] = { + 'SAMPLE_QUEUE': {'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}, 'OUTPUT_QUEUE': { + 'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}, 'WORKER_QUEUE': { + 'UNFINISHED_TASK': 'N/A', 'QUEUE_LENGTH': 'N/A'}} res['THROUGHPUT_STATUS'] = self.get_throughput() if hasattr(self.eventgen_dependency.eventgen, "sampleQueue"): res["QUEUE_STATUS"]['SAMPLE_QUEUE'][ @@ -114,9 +115,7 @@ def get_status(self): res["QUEUE_STATUS"]['WORKER_QUEUE']['QUEUE_LENGTH'] = self.eventgen_dependency.eventgen.workerQueue.qsize() return res - ############################################## - ############### Real Methods ################# - ############################################## + # Real Methods def index(self): self.log.info("index method called") @@ -139,14 +138,8 @@ def index(self): sample_queue_status = status["QUEUE_STATUS"]["SAMPLE_QUEUE"] output_queue_status = status["QUEUE_STATUS"]["OUTPUT_QUEUE"] - return home_page.format(host, - eventgen_status, - configured, - config_file, - total_volume, - worker_queue_status, - sample_queue_status, - output_queue_status) + return home_page.format(host, eventgen_status, configured, config_file, total_volume, worker_queue_status, + sample_queue_status, output_queue_status) def status(self): self.log.info('Status method called.') @@ -344,28 +337,18 @@ def setup(self, data): new_key = bool(data.get("new_key", True)) def create_new_hec_key(hostname): - requests.post("https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/http".format( - hostname, mgmt_port), - auth=("admin", password), - data={"disabled": "0"}, - verify=False) + requests.post( + "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/http".format( + hostname, mgmt_port), auth=("admin", password), data={"disabled": "0"}, verify=False) requests.delete( - "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/{2}".format( - hostname, mgmt_port,key_name), - verify=False, - auth=("admin", password) - ) + "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/{2}".format( + hostname, mgmt_port, key_name), verify=False, auth=("admin", password)) requests.post( - "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http?output_mode=json".format( - hostname, mgmt_port), - verify=False, - auth=("admin", password), - data={"name": key_name}) + "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http?output_mode=json".format( + hostname, mgmt_port), verify=False, auth=("admin", password), data={"name": key_name}) r = requests.post( - "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/{2}?output_mode=json".format( - hostname, mgmt_port, key_name), - verify=False, - auth=("admin", password)) + "https://{0}:{1}/servicesNS/admin/splunk_httpinput/data/inputs/http/{2}?output_mode=json".format( + hostname, mgmt_port, key_name), verify=False, auth=("admin", password)) return str(json.loads(r.text)["entry"][0]["content"]["token"]) self.discovered_servers = [] @@ -375,10 +358,9 @@ def create_new_hec_key(hostname): if new_key: key = create_new_hec_key(formatted_hostname) - self.discovered_servers.append({"protocol": str(protocol), - "address": str(formatted_hostname), - "port": str(hec_port), - "key": str(key)}) + self.discovered_servers.append({ + "protocol": str(protocol), "address": str(formatted_hostname), "port": str(hec_port), "key": + str(key)}) except socket.gaierror: continue @@ -389,10 +371,9 @@ def create_new_hec_key(hostname): if new_key: key = create_new_hec_key(formatted_hostname) - self.discovered_servers.append({"protocol": str(protocol), - "address": str(formatted_hostname), - "port": str(hec_port), - "key": str(key)}) + self.discovered_servers.append({ + "protocol": str(protocol), "address": str(formatted_hostname), "port": str(hec_port), "key": + str(key)}) counter += 1 except socket.gaierror: break @@ -477,9 +458,7 @@ def reset(self): self.log.exception(e) return '500', "Exception: {}".format(e.message) - ############################################## - ############ Event Handler Methods ########### - ############################################## + # Event Handler Methods @event_handler("eventgen_controller", "all_index", handler_type=BROADCAST, reliable_delivery=False) def event_handler_all_index(self, payload): @@ -602,9 +581,7 @@ def event_handler_set_volume(self, payload): def event_handler_reset(self, payload): return self.reset() - ############################################## - ################ HTTP Methods ################ - ############################################## + # HTTP Methods @http('GET', '/') def http_root(self, request): @@ -696,9 +673,7 @@ def http_set_volume(self, request): def http_reset(self, request): return json.dumps(self.reset()) - ############################################## - ################ Helper Methods ############## - ############################################## + # Helper Methods def parse_eventgen_conf(self, path): config = ConfigParser.ConfigParser() @@ -759,10 +734,7 @@ def get_data_volumes(self, config): def get_throughput(self): self.log.debug("Getting throughput ...") - empty_throughput = {'TOTAL_VOLUME_MB': 0, - 'TOTAL_COUNT': 0, - 'THROUGHPUT_VOLUME_KB': 0, - 'THROUGHPUT_COUNT': 0} + empty_throughput = {'TOTAL_VOLUME_MB': 0, 'TOTAL_COUNT': 0, 'THROUGHPUT_VOLUME_KB': 0, 'THROUGHPUT_COUNT': 0} if hasattr(self.eventgen_dependency.eventgen, 'output_counters'): total_volume = 0 total_count = 0 @@ -773,10 +745,9 @@ def get_throughput(self): total_count += output_counter.total_output_count throughput_volume += output_counter.throughput_volume throughput_count += output_counter.throughput_count - return {'TOTAL_VOLUME_MB': total_volume / (1024*1024), - 'TOTAL_COUNT': total_count, - 'THROUGHPUT_VOLUME_KB': throughput_volume / (1024), - 'THROUGHPUT_COUNT': throughput_count} + return { + 'TOTAL_VOLUME_MB': total_volume / (1024 * 1024), 'TOTAL_COUNT': total_count, 'THROUGHPUT_VOLUME_KB': + throughput_volume / (1024), 'THROUGHPUT_COUNT': throughput_count} else: self.log.debug("return empty throughput because of output_counters not found.") - return empty_throughput \ No newline at end of file + return empty_throughput diff --git a/splunk_eventgen/identitygen.py b/splunk_eventgen/identitygen.py index a0c29939..f95a1047 100644 --- a/splunk_eventgen/identitygen.py +++ b/splunk_eventgen/identitygen.py @@ -4,115 +4,135 @@ import time from string import ascii_uppercase -BASE_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__),"..")) +BASE_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) + class identityGenerator(object): - ''' - Generates csv file with the following values - ''' - CATEGORIES = ["cardholder","cardholder|pci","officer|pci","intern","default","default","default","default","sox","pci","officer","","","","","","","","","",""] - LOCATION = [["San Francisco","USA","americas","37.3382N","121.6663W"],["San Jose","USA","americas","37.78N","122.41W"]] - EMAIL_DOMAIN = "@splunk.com" - PRIORITIES = ["low","low","low","low","low","low","medium","medium","high","critical"] - def __init__(self): - try: - self.last = [i.split()[0] for i in open("%s/samples/dist.all.last"%BASE_PATH,"rb").readlines()] - except IOError as e: - self.last = [(''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4,12)))) for i in xrange(100)] - try: - self.female_first = [i.split()[0] for i in open("%s/samples/dist.female.first"%BASE_PATH,"rb").readlines()] - except IOError as e: - self.female_first = [(''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4,12)))) for i in xrange(100)] - try: - self.male_first = [i.split()[0] for i in open("%s/samples/dist.male.first"%BASE_PATH,"rb").readlines()] - except IOError as e: - self.male_first = [(''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4,12)))) for i in xrange(100)] + """ + Generates csv file with the following values + """ + CATEGORIES = [ + "cardholder", "cardholder|pci", "officer|pci", "intern", "default", "default", "default", "default", "sox", + "pci", "officer", "", "", "", "", "", "", "", "", "", ""] + LOCATION = [["San Francisco", "USA", "americas", "37.3382N", "121.6663W"], + ["San Jose", "USA", "americas", "37.78N", "122.41W"]] + EMAIL_DOMAIN = "@splunk.com" + PRIORITIES = ["low", "low", "low", "low", "low", "low", "medium", "medium", "high", "critical"] + + def __init__(self): + try: + self.last = [i.split()[0] for i in open("%s/samples/dist.all.last" % BASE_PATH, "rb").readlines()] + except IOError: + self.last = [ + (''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4, 12)))) for i in xrange(100)] + try: + self.female_first = [ + i.split()[0] for i in open("%s/samples/dist.female.first" % BASE_PATH, "rb").readlines()] + except IOError: + self.female_first = [ + (''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4, 12)))) for i in xrange(100)] + try: + self.male_first = [i.split()[0] for i in open("%s/samples/dist.male.first" % BASE_PATH, "rb").readlines()] + except IOError: + self.male_first = [ + (''.join(random.choice(ascii_uppercase) for i in xrange(random.randint(4, 12)))) for i in xrange(100)] + + def generate(self, count): + self.identities = [] + usernames = dict() + username = "" + len_last = len(self.last) + len_male_first = len(self.male_first) + len_female_first = len(self.female_first) + for i in xrange(count): + gender = random.choice(["m", "f"]) + last_name = self.last[int(random.triangular(0, len_last, 0))] + if gender == "m": + first_name = self.male_first[int(random.triangular(0, len_male_first, 0))] + else: + first_name = self.female_first[int(random.triangular(0, len_female_first, 0))] + category = random.choice(self.CATEGORIES) + priority = random.choice(self.PRIORITIES) + startDate = time.strftime("%m/%d/%Y", time.localtime(time.time() - random.randint(2592000, 77760000)) + ) # random start date between 30 days ago to 900 days ago + (work_city, work_country, bunit, work_lat, work_long) = random.choice(self.LOCATION) + identity = { + "first_name": first_name, "last_name": last_name, "work_city": work_city, "work_country": work_country, + "bunit": bunit, "work_lat": work_lat, "work_long": work_long, "priority": priority, "category": + category, "startDate": startDate} + base_username = identity["first_name"] + identity["last_name"] + if base_username in usernames: + tmp_val = 0 + while username + str(tmp_val) in usernames[base_username]: + tmp_val += 1 + username = base_username + str(tmp_val) + usernames[base_username].append(username) + else: + username = base_username + usernames[username] = list() + identity["username"] = username + identity["ip"] = self.int2InternalIP(i) + self.identities.append(identity) - def generate(self, count): - self.identities = [] - usernames = dict() - len_last = len(self.last) - len_male_first = len(self.male_first) - len_female_first = len(self.female_first) - prev_time = time.time() - for i in xrange(count): - gender = random.choice(["m","f"]) - last_name = self.last[int(random.triangular(0,len_last,0))] - if gender == "m": - first_name = self.male_first[int(random.triangular(0,len_male_first,0))] - else: - first_name = self.female_first[int(random.triangular(0,len_female_first,0))] - category = random.choice(self.CATEGORIES) - priority = random.choice(self.PRIORITIES) - startDate = time.strftime("%m/%d/%Y", time.localtime(time.time()-random.randint(2592000,77760000))) # random start date between 30 days ago to 900 days ago - (work_city, work_country, bunit, work_lat, work_long)= random.choice(self.LOCATION) - identity = {"first_name":first_name,"last_name":last_name,"work_city":work_city,"work_country":work_country,"bunit":bunit,"work_lat":work_lat,"work_long":work_long,"priority":priority,"category":category,"startDate":startDate} - base_username = identity["first_name"] + identity["last_name"] - t = time.time() - if base_username in usernames: - tmp_val = 0 - while username + str(tmp_val) in usernames[base_username]: - tmp_val += 1 - username = base_username + str(tmp_val) - usernames[base_username].append(username) - else: - username = base_username - usernames[username] = list() - identity["username"] = username - identity["ip"] = self.int2InternalIP(i) - self.identities.append(identity) - + def int2InternalIP(self, i): + return "10.%s.%s.%s" % (str(int(i / 65536)), str(int(i / 256) % 256), str(i % 256)) - def int2InternalIP(self,i): - return "10.%s.%s.%s" % (str(int(i/65536)), str(int(i/256)%256), str(i%256)) + def setLocations(self, new_locations): + for location in new_locations: + if len(location) != 5: + raise ValueError + self.CATEGORIES = new_locations - def setLocations(self,new_locations): - for location in new_locations: - if len(location)!=5: - raise ValueError - self.CATEGORIES = new_locations + def setCategories(self, new_categories): + self.CATEGORIES = new_categories - def setCategories(self,new_categories): - self.CATEGORIES = new_categories + def setEmail(self, new_email): + if "@" in new_email: + self.EMAIL_DOMAIN = new_email + else: + raise ValueError - def setEmail(self,new_email): - if "@" in new_email: - self.EMAIL_DOMAIN = new_email - else: - raise ValueError + def getFile(self, count=0, filename="../default", fields=["username", "first_name", "last_name"], fieldnames=[ + "username", "first_name", "last_name"]): + """ + Returns a rest endpoint to download a csv file + """ + if count == 0: + with open(filename, "wb") as lookupFile: + file = csv.writer(lookupFile) + file.writerow(fieldnames) + for identity in self.identities: + row = [] + for field in fields: + try: + row.append(identity[field]) + except KeyError: + row.append("") + file.writerow(row) + else: + with open(filename, "wb") as lookupFile: + file = csv.writer(lookupFile) + file.writerow(fieldnames) + for i in xrange(min(count + 1, len(self.identities))): # + 1 to account for the header + row = [] + identity = self.identities[i] + for field in fields: + try: + row.append(identity[field]) + except KeyError: + row.append("") + file.writerow(row) + return open(filename, "rb") - def getFile(self,count=0,filename="../default",fields=["username","first_name","last_name"],fieldnames=["username","first_name","last_name"]): - 'Returns a rest endpoint to download a csv file' - if count == 0: - with open(filename,"wb") as lookupFile: - file = csv.writer(lookupFile) - file.writerow(fieldnames) - for identity in self.identities: - row = [] - for field in fields: - try: - row.append(identity[field]) - except KeyError: - row.append("") - file.writerow(row) - else: - with open(filename,"wb") as lookupFile: - file = csv.writer(lookupFile) - file.writerow(fieldnames) - for i in xrange(min(count+1,len(identities))): # + 1 to account for the header - row = [] - identity = identities[i] - for field in fields: - try: - row.append(identity[field]) - except KeyError: - row.append("") - file.writerow(row) - return open(filename,"rb") if __name__ == "__main__": - identityGenerator = identityGenerator() - identityGenerator.generate(300000) - identityGenerator.getFile(filename="identities.csv", - fields=["username","prefix","username","first_name","last_name","suffix","email","phone","phone2","managedBy","priority","bunit","category","watchlist","startDate","endDate","work_city","work_country","work_lat","work_long"], - fieldnames = ["identity","prefix","nick","first","last","suffix","email","phone","phone2","managedBy","priority","bunit","category","watchlist","startDate","endDate","work_city","work_country","work_lat","work_long"]) \ No newline at end of file + identityGenerator = identityGenerator() + identityGenerator.generate(300000) + identityGenerator.getFile( + filename="identities.csv", fields=[ + "username", "prefix", "username", "first_name", "last_name", "suffix", "email", "phone", "phone2", + "managedBy", "priority", "bunit", "category", "watchlist", "startDate", "endDate", "work_city", + "work_country", "work_lat", "work_long"], fieldnames=[ + "identity", "prefix", "nick", "first", "last", "suffix", "email", "phone", "phone2", "managedBy", + "priority", "bunit", "category", "watchlist", "startDate", "endDate", "work_city", "work_country", + "work_lat", "work_long"]) diff --git a/splunk_eventgen/lib/eventgenconfig.py b/splunk_eventgen/lib/eventgenconfig.py index 161fca6b..b9f1db38 100644 --- a/splunk_eventgen/lib/eventgenconfig.py +++ b/splunk_eventgen/lib/eventgenconfig.py @@ -1,17 +1,20 @@ from __future__ import division -from ConfigParser import ConfigParser -import os + import datetime -import re -import logging, logging.handlers import json +import logging +import logging.handlers +import os import pprint +import random +import re +import types +import urllib +from ConfigParser import ConfigParser + +from eventgenexceptions import FailedLoadingPlugin, PluginNotLoaded from eventgensamples import Sample from eventgentoken import Token -from eventgenexceptions import PluginNotLoaded, FailedLoadingPlugin -import urllib -import types -import random # 4/21/14 CS Adding a defined constant whether we're running in standalone mode or not # Standalone mode is when we know we're Splunk embedded but we want to force @@ -27,6 +30,7 @@ STANDALONE = False + # 5/10/12 CS Some people consider Singleton to be lazy. Dunno, I like it for convenience. # My general thought on that sort of stuff is if you don't like it, reimplement it. I'll consider # your patch. @@ -50,11 +54,11 @@ class Config(object): sessionKey = None grandparentdir = None greatgrandparentdir = None - samples = [ ] + samples = [] sampleDir = None outputWorkers = None generatorWorkers = None - sampleTimers = [ ] + sampleTimers = [] # Config file options. We do not define defaults here, rather we pull them in # from eventgen.conf. @@ -65,47 +69,49 @@ class Config(object): disabled = None blacklist = ".*\.part" - __generatorworkers = [ ] - __outputworkers = [ ] - outputPlugins = { } - plugins = { } + __generatorworkers = [] + __outputworkers = [] + outputPlugins = {} + plugins = {} outputQueue = None generatorQueue = None args = None - ## Validations - _validSettings = ['disabled', 'blacklist', 'spoolDir', 'spoolFile', 'breaker', 'sampletype' , 'interval', - 'delay', 'count', 'bundlelines', 'earliest', 'latest', 'eai:acl', 'hourOfDayRate', - 'dayOfWeekRate', 'randomizeCount', 'randomizeEvents', 'outputMode', 'fileName', 'fileMaxBytes', - 'fileBackupFiles', 'index', 'source', 'sourcetype', 'host', 'hostRegex', 'projectID', 'accessToken', - 'mode', 'backfill', 'backfillSearch', 'eai:userName', 'eai:appName', 'timeMultiple', 'debug', - 'minuteOfHourRate', 'timezone', 'dayOfMonthRate', 'monthOfYearRate', 'perDayVolume', - 'outputWorkers', 'generator', 'rater', 'generatorWorkers', 'timeField', 'sampleDir', 'threading', - 'profiler', 'maxIntervalsBeforeFlush', 'maxQueueLength', 'splunkMethod', 'splunkPort', - 'verbosity', 'useOutputQueue', 'seed','end', 'autotimestamps', 'autotimestamp', 'httpeventWaitResponse', 'outputCounter', 'sequentialTimestamp'] + # Validations + _validSettings = [ + 'disabled', 'blacklist', 'spoolDir', 'spoolFile', 'breaker', 'sampletype', 'interval', 'delay', 'count', + 'bundlelines', 'earliest', 'latest', 'eai:acl', 'hourOfDayRate', 'dayOfWeekRate', 'randomizeCount', + 'randomizeEvents', 'outputMode', 'fileName', 'fileMaxBytes', 'fileBackupFiles', 'index', 'source', 'sourcetype', + 'host', 'hostRegex', 'projectID', 'accessToken', 'mode', 'backfill', 'backfillSearch', 'eai:userName', + 'eai:appName', 'timeMultiple', 'debug', 'minuteOfHourRate', 'timezone', 'dayOfMonthRate', 'monthOfYearRate', + 'perDayVolume', 'outputWorkers', 'generator', 'rater', 'generatorWorkers', 'timeField', 'sampleDir', + 'threading', 'profiler', 'maxIntervalsBeforeFlush', 'maxQueueLength', 'splunkMethod', 'splunkPort', 'verbosity', + 'useOutputQueue', 'seed', 'end', 'autotimestamps', 'autotimestamp', 'httpeventWaitResponse', 'outputCounter', + 'sequentialTimestamp'] _validTokenTypes = {'token': 0, 'replacementType': 1, 'replacement': 2} _validHostTokens = {'token': 0, 'replacement': 1} - _validReplacementTypes = ['static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', 'seqfile', 'integerid'] - validOutputModes = [ ] + _validReplacementTypes = [ + 'static', 'timestamp', 'replaytimestamp', 'random', 'rated', 'file', 'mvfile', 'seqfile', 'integerid'] + validOutputModes = [] _intSettings = ['interval', 'outputWorkers', 'generatorWorkers', 'maxIntervalsBeforeFlush', 'maxQueueLength'] _floatSettings = ['randomizeCount', 'delay', 'timeMultiple'] - _boolSettings = ['disabled', 'randomizeEvents', 'bundlelines', 'profiler', 'useOutputQueue', 'autotimestamp', 'httpeventWaitResponse', 'outputCounter', 'sequentialTimestamp'] - _jsonSettings = ['hourOfDayRate', 'dayOfWeekRate', 'minuteOfHourRate', 'dayOfMonthRate', 'monthOfYearRate', 'autotimestamps'] - _defaultableSettings = ['disabled', 'spoolDir', 'spoolFile', 'breaker', 'sampletype', 'interval', 'delay', - 'count', 'bundlelines', 'earliest', 'latest', 'hourOfDayRate', 'dayOfWeekRate', - 'randomizeCount', 'randomizeEvents', 'outputMode', 'fileMaxBytes', 'fileBackupFiles', - 'splunkHost', 'splunkPort', 'splunkMethod', 'index', 'source', 'sourcetype', 'host', 'hostRegex', - 'projectID', 'accessToken', 'mode', 'minuteOfHourRate', 'timeMultiple', 'dayOfMonthRate', - 'monthOfYearRate', 'perDayVolume', 'sessionKey', 'generator', 'rater', 'timeField', 'maxQueueLength', - 'maxIntervalsBeforeFlush', 'autotimestamp'] - _complexSettings = { 'sampletype': ['raw', 'csv'], - 'mode': ['sample', 'replay'], - 'threading': ['thread', 'process']} + _boolSettings = [ + 'disabled', 'randomizeEvents', 'bundlelines', 'profiler', 'useOutputQueue', 'autotimestamp', + 'httpeventWaitResponse', 'outputCounter', 'sequentialTimestamp'] + _jsonSettings = [ + 'hourOfDayRate', 'dayOfWeekRate', 'minuteOfHourRate', 'dayOfMonthRate', 'monthOfYearRate', 'autotimestamps'] + _defaultableSettings = [ + 'disabled', 'spoolDir', 'spoolFile', 'breaker', 'sampletype', 'interval', 'delay', 'count', 'bundlelines', + 'earliest', 'latest', 'hourOfDayRate', 'dayOfWeekRate', 'randomizeCount', 'randomizeEvents', 'outputMode', + 'fileMaxBytes', 'fileBackupFiles', 'splunkHost', 'splunkPort', 'splunkMethod', 'index', 'source', 'sourcetype', + 'host', 'hostRegex', 'projectID', 'accessToken', 'mode', 'minuteOfHourRate', 'timeMultiple', 'dayOfMonthRate', + 'monthOfYearRate', 'perDayVolume', 'sessionKey', 'generator', 'rater', 'timeField', 'maxQueueLength', + 'maxIntervalsBeforeFlush', 'autotimestamp'] + _complexSettings = {'sampletype': ['raw', 'csv'], 'mode': ['sample', 'replay'], 'threading': ['thread', 'process']} def __init__(self, configfile=None, sample=None, override_outputter=False, override_count=False, - override_interval=False, override_backfill=False, override_end=False, - threading="thread", override_generators=None, override_outputqueue=False, - profiler=False, verbosity=40): + override_interval=False, override_backfill=False, override_end=False, threading="thread", + override_generators=None, override_outputqueue=False, profiler=False, verbosity=40): """Setup Config object. Sets up Logging and path related variables.""" # Rebind the internal datastore of the class to an Instance variable self.__dict__ = self.__sharedState @@ -144,18 +150,18 @@ def __init__(self, configfile=None, sample=None, override_outputter=False, overr self.stopping = False - #self.copyLock = threading.Lock() if self.threading == 'thread' else multiprocessing.Lock() + # self.copyLock = threading.Lock() if self.threading == 'thread' else multiprocessing.Lock() self._firsttime = False def __str__(self): """Only used for debugging, outputs a pretty printed representation of our Config""" # Filter items from config we don't want to pretty print - filter_list = [ 'samples', 'sampleTimers', '__generatorworkers', '__outputworkers' ] + filter_list = ['samples', 'sampleTimers', '__generatorworkers', '__outputworkers'] # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key not in filter_list ]) + temp = dict([(key, value) for (key, value) in self.__dict__.items() if key not in filter_list]) - return 'Config:'+pprint.pformat(temp)+'\nSamples:\n'+pprint.pformat(self.samples) + return 'Config:' + pprint.pformat(temp) + '\nSamples:\n' + pprint.pformat(self.samples) # loggers can't be pickled due to the lock object, remove them before we try to pickle anything. def __getstate__(self): @@ -173,14 +179,13 @@ def _setup_logging(self): def getPlugin(self, name, s=None): """Return a reference to a Python object (not an instance) referenced by passed name""" - ''' APPPERF-263: make sure we look in __outputPlugins as well. For some reason we keep 2 separate dicts of plugins. ''' - plugintype=name.split(".")[0] - if not name in self.plugins and not name in self.outputPlugins: + plugintype = name.split(".")[0] + if name not in self.plugins and name not in self.outputPlugins: # 2/1/15 CS If we haven't already seen the plugin, try to load it # Note, this will only work for plugins which do not specify config validation # parameters. If they do, configs may not validate for user provided plugins. @@ -189,14 +194,14 @@ def getPlugin(self, name, s=None): plugin = getattr(s, plugintype) else: plugin = getattr(s, 'outputMode') - if plugin != None: - self.logger.debug("Attempting to dynamically load plugintype '%s' named '%s' for sample '%s'" - % (plugintype, plugin, s.name)) + if plugin is not None: + self.logger.debug("Attempting to dynamically load plugintype '%s' named '%s' for sample '%s'" % + (plugintype, plugin, s.name)) bindir = os.path.join(s.sampleDir, os.pardir, 'bin') libdir = os.path.join(s.sampleDir, os.pardir, 'lib') plugindir = os.path.join(libdir, 'plugins', plugintype) - targetplugin = PluginNotLoaded(bindir=bindir, libdir=libdir, - plugindir=plugindir, name=plugin, type=plugintype) + targetplugin = PluginNotLoaded(bindir=bindir, libdir=libdir, plugindir=plugindir, name=plugin, + type=plugintype) if targetplugin.name not in self.extraplugins: self.extraplugins.append(targetplugin.name) raise targetplugin @@ -204,7 +209,7 @@ def getPlugin(self, name, s=None): raise FailedLoadingPlugin(name=plugin) # APPPERF-263: consult both __outputPlugins and __plugins - if not name in self.plugins and not name in self.outputPlugins: + if name not in self.plugins and name not in self.outputPlugins: raise KeyError('Plugin ' + name + ' not found') # return in order of precedence: __plugins, __outputPlugins, None @@ -218,7 +223,7 @@ def makeSplunkEmbedded(self, sessionKey): def getSplunkUrl(self, s): """ - Get Splunk URL. If we're embedded in Splunk, get it from Splunk's Python libraries, otherwise get it from config. + If we're embedded in Splunk, get it from Splunk's Python libraries, otherwise get it from config. Returns a tuple of ( splunkUrl, splunkMethod, splunkHost, splunkPort ) """ @@ -233,11 +238,14 @@ def getSplunkUrl(self, s): except: import traceback trace = traceback.format_exc() - self.logger.error('Error parsing host from splunk.auth.splunk.getLocalServerInfo() for sample %s. Stacktrace: %s' % (s.name, trace)) - raise ValueError('Error parsing host from splunk.auth.splunk.getLocalServerInfo() for sample %s' % s.name) + self.logger.error( + 'Error parsing host from splunk.auth.splunk.getLocalServerInfo() for sample %s. Stacktrace: %s' % + (s.name, trace)) + raise ValueError( + 'Error parsing host from splunk.auth.splunk.getLocalServerInfo() for sample %s' % s.name) else: # splunkMethod and splunkPort are defaulted so only check for splunkHost - if s.splunkHost == None: + if s.splunkHost is None: self.logger.error("Splunk URL Requested but splunkHost not set for sample '%s'" % s.name) raise ValueError("Splunk URL Requested but splunkHost not set for sample '%s'" % s.name) @@ -246,7 +254,8 @@ def getSplunkUrl(self, s): splunkHost = s.splunkHost splunkPort = s.splunkPort - self.logger.debug("Getting Splunk URL: %s Method: %s Host: %s Port: %s" % (splunkUrl, splunkMethod, splunkHost, splunkPort)) + self.logger.debug( + "Getting Splunk URL: %s Method: %s Host: %s Port: %s" % (splunkUrl, splunkMethod, splunkHost, splunkPort)) return (splunkUrl, splunkMethod, splunkHost, splunkPort) def parse(self): @@ -267,8 +276,8 @@ def parse(self): if 'default' in self._confDict: del self._confDict['default'] - tempsamples = [ ] - tempsamples2 = [ ] + tempsamples = [] + tempsamples2 = [] stanza_map = {} stanza_list = [] @@ -322,7 +331,8 @@ def parse(self): if 'token.{}.token'.format(i) in self._confDict[global_stanza]: token = self._confDict[global_stanza].get('token.{}.token'.format(i)) replacement = self._confDict[global_stanza].get('token.{}.replacement'.format(i)) - replacementType = self._confDict[global_stanza].get('token.{}.replacementType'.format(i)) + replacementType = self._confDict[global_stanza].get( + 'token.{}.replacementType'.format(i)) last_token_number += 1 if token: @@ -343,9 +353,9 @@ def parse(self): break keys = settings.keys() - for k,v in self._confDict[global_stanza].items(): + for k, v in self._confDict[global_stanza].items(): if 'token' not in k and k not in keys: - kv_pair_items.append((k,v)) + kv_pair_items.append((k, v)) for key, value in kv_pair_items: oldvalue = value @@ -359,7 +369,7 @@ def parse(self): # Token indices could be out of order, so we must check to # see whether we have enough items in the list to update the token # In general this will keep growing the list by whatever length we need - if(key.find("host.") > -1): + if (key.find("host.") > -1): # self.logger.info("hostToken.{} = {}".format(value[1],oldvalue)) if not isinstance(s.hostToken, Token): s.hostToken = Token(s) @@ -368,8 +378,8 @@ def parse(self): setattr(s.hostToken, value[0], oldvalue) else: if len(s.tokens) <= value[0]: - x = (value[0]+1) - len(s.tokens) - s.tokens.extend([None for i in xrange(0, x)]) + x = (value[0] + 1) - len(s.tokens) + s.tokens.extend([None for num in xrange(0, x)]) if not isinstance(s.tokens[value[0]], Token): s.tokens[value[0]] = Token(s) # logger.info("token[{}].{} = {}".format(value[0],value[1],oldvalue)) @@ -383,42 +393,39 @@ def parse(self): s._lockedSettings.append(key) # self.logger.debug("Appending '%s' to locked settings for sample '%s'" % (key, s.name)) - - # Validate all the tokens are fully setup, can't do this in _validateSettings # because they come over multiple lines # Don't error out at this point, just log it and remove the token and move on - deleteidx = [ ] + deleteidx = [] for i in xrange(0, len(s.tokens)): t = s.tokens[i] # If the index doesn't exist at all - if t == None: + if t is None: self.logger.error("Token at index %s invalid" % i) # Can't modify list in place while we're looping through it # so create a list to remove later deleteidx.append(i) - elif t.token == None or t.replacementType == None or t.replacement == None: + elif t.token is None or t.replacementType is None or t.replacement is None: self.logger.error("Token at index %s invalid" % i) deleteidx.append(i) - newtokens = [ ] + newtokens = [] for i in xrange(0, len(s.tokens)): if i not in deleteidx: newtokens.append(s.tokens[i]) s.tokens = newtokens - # Must have eai:acl key to determine app name which determines where actual files are - if s.app == None: + if s.app is None: self.logger.error("App not set for sample '%s' in stanza '%s'" % (s.name, stanza)) raise ValueError("App not set for sample '%s' in stanza '%s'" % (s.name, stanza)) # Set defaults for items not included in the config file for setting in self._defaultableSettings: - if not hasattr(s, setting) or getattr(s, setting) == None: + if not hasattr(s, setting) or getattr(s, setting) is None: setattr(s, setting, getattr(self, setting, None)) # Append to temporary holding list if not s.disabled: - s._priority = len(tempsamples)+1 + s._priority = len(tempsamples) + 1 tempsamples.append(s) # 6/22/12 CS Rewriting the config matching code yet again to handling flattening better. @@ -427,14 +434,15 @@ def parse(self): # every other match to that one. for s in tempsamples: # Now we need to match this up to real files. May generate multiple copies of the sample. - foundFiles = [ ] + foundFiles = [] # 1/5/14 Adding a config setting to override sample directory, primarily so I can put tests in their own # directories - if s.sampleDir == None: + if s.sampleDir is None: self.logger.debug("Sample directory not specified in config, setting based on standard") if self.splunkEmbedded and not STANDALONE: - s.sampleDir = os.path.normpath(os.path.join(self.grandparentdir, '..', '..', '..', s.app, 'samples')) + s.sampleDir = os.path.normpath( + os.path.join(self.grandparentdir, '..', '..', '..', s.app, 'samples')) else: # 2/1/15 CS Adding support for looking for samples based on the config file specified on # the command line. @@ -452,7 +460,8 @@ def parse(self): if not os.path.exists(s.sampleDir): newSampleDir = os.path.join(self.grandparentdir, 'samples') - self.logger.error("Path not found for samples '%s', trying '%s'" % (s.sampleDir, newSampleDir)) + self.logger.error( + "Path not found for samples '%s', trying '%s'" % (s.sampleDir, newSampleDir)) s.sampleDir = newSampleDir else: self.logger.debug("Sample directory specified in config, checking for relative") @@ -485,10 +494,12 @@ def parse(self): self.maxIntervalsBeforeFlush = 1 s.maxIntervalsBeforeFlush = 1 s.maxQueueLength = s.maxQueueLength or 1 - self.logger.debug("Sample '%s' setting maxQueueLength to '%s' from command line" % (s.name, s.maxQueueLength)) + self.logger.debug( + "Sample '%s' setting maxQueueLength to '%s' from command line" % (s.name, s.maxQueueLength)) if self.override_outputter: - self.logger.debug("Sample '%s' setting output to '%s' from command line" % (s.name, self.override_outputter)) + self.logger.debug( + "Sample '%s' setting output to '%s' from command line" % (s.name, self.override_outputter)) s.outputMode = self.override_outputter if self.override_count: @@ -498,11 +509,13 @@ def parse(self): s.backfill = None if self.override_interval: - self.logger.debug("Overriding interval to '%d' for sample '%s'" % (self.override_interval, s.name)) + self.logger.debug( + "Overriding interval to '%d' for sample '%s'" % (self.override_interval, s.name)) s.interval = self.override_interval if self.override_backfill: - self.logger.debug("Overriding backfill to '%s' for sample '%s'" % (self.override_backfill, s.name)) + self.logger.debug( + "Overriding backfill to '%s' for sample '%s'" % (self.override_backfill, s.name)) s.backfill = self.override_backfill.lstrip() if self.override_end: @@ -517,7 +530,7 @@ def parse(self): for token in s.tokens: if token.replacementType == 'integerid': try: - stateFile = open(os.path.join(s.sampleDir, 'state.'+urllib.pathname2url(token.token)), 'rU') + stateFile = open(os.path.join(s.sampleDir, 'state.' + urllib.pathname2url(token.token)), 'rU') token.replacement = stateFile.read() stateFile.close() # The file doesn't exist, use the default value in the config @@ -532,8 +545,9 @@ def parse(self): self.logger.debug("Matched file {0} with sample name {1}".format(results.group(0), s.name)) samplePath = os.path.join(s.sampleDir, sample) if os.path.isfile(samplePath): - self.logger.debug("Found sample file '%s' for app '%s' using config '%s' with priority '%s'; adding to list" \ - % (sample, s.app, s.name, s._priority) ) + self.logger.debug( + "Found sample file '%s' for app '%s' using config '%s' with priority '%s'" % + (sample, s.app, s.name, s._priority) + "; adding to list") foundFiles.append(samplePath) # If we didn't find any files, log about it @@ -554,9 +568,9 @@ def parse(self): # Override with real name if s.outputMode == 'spool' and s.spoolFile == self.spoolFile: news.spoolFile = f.split(os.sep)[-1] - if s.outputMode == 'file' and s.fileName == None and s.spoolFile == self.spoolFile: + if s.outputMode == 'file' and s.fileName is None and s.spoolFile == self.spoolFile: news.fileName = os.path.join(s.spoolDir, f.split(os.sep)[-1]) - elif s.outputMode == 'file' and s.fileName == None and s.spoolFile != None: + elif s.outputMode == 'file' and s.fileName is None and s.spoolFile is not None: news.fileName = os.path.join(s.spoolDir, s.spoolFile) # Override s.name with file name. Usually they'll match unless we've been a regex # 6/22/12 CS Save original name for later matching @@ -568,7 +582,7 @@ def parse(self): self.logger.info("Sample '%s' for app '%s' is marked disabled." % (news.name, news.app)) # Clear tempsamples, we're going to reuse it - tempsamples = [ ] + tempsamples = [] # We're now going go through the samples and attempt to apply any matches from other stanzas # This allows us to specify a wildcard at the beginning of the file and get more specific as we go on @@ -576,25 +590,26 @@ def parse(self): # Loop through all samples, create a list of the master samples for s in tempsamples2: foundHigherPriority = False - othermatches = [ ] + othermatches = [] # If we're an exact match, don't go looking for higher priorities if not s.name == s._origName: for matchs in tempsamples2: if matchs.filePath == s.filePath and s._origName != matchs._origName: # We have a match, now determine if we're higher priority or not - # If this is a longer pattern or our match is an exact match - # then we're a higher priority match + # If this is a longer pattern or our match is an exact match + # then we're a higher priority match if len(matchs._origName) > len(s._origName) or matchs.name == matchs._origName: # if s._priority < matchs._priority: - self.logger.debug("Found higher priority for sample '%s' with priority '%s' from sample '%s' with priority '%s'" \ - % (s._origName, s._priority, matchs._origName, matchs._priority)) + self.logger.debug("Found higher priority for sample '%s' with priority '%s' from sample " % + (s._origName, s._priority) + + "'%s' with priority '%s'" % (matchs._origName, matchs._priority)) foundHigherPriority = True break else: othermatches.append(matchs._origName) if not foundHigherPriority: - self.logger.debug("Chose sample '%s' from samples '%s' for file '%s'" \ - % (s._origName, othermatches, s.name)) + self.logger.debug( + "Chose sample '%s' from samples '%s' for file '%s'" % (s._origName, othermatches, s.name)) tempsamples.append(s) # Now we have two lists, tempsamples which contains only the highest priority matches, and @@ -625,13 +640,14 @@ def parse(self): # 6/22/12 CS Added support for non-overrideable (locked) settings # logger.debug("Locked settings: %s" % pprint.pformat(matchs._lockedSettings)) # if settingname in matchs._lockedSettings: - # logger.debug("Matched setting '%s' in sample '%s' lockedSettings" \ + # logger.debug("Matched setting '%s' in sample '%s' lockedSettings" # % (settingname, matchs.name)) - if (destsetting == None or destsetting == getattr(self, settingname)) \ - and sourcesetting != None and sourcesetting != getattr(self, settingname) \ - and not settingname in s._lockedSettings: - self.logger.debug("Overriding setting '%s' with value '%s' from sample '%s' to sample '%s' in app '%s'" \ - % (settingname, sourcesetting, overridesample._origName, s.name, s.app)) + if (destsetting is None or destsetting == getattr(self, settingname)) \ + and sourcesetting is not None and sourcesetting != getattr(self, settingname) \ + and settingname not in s._lockedSettings: + self.logger.debug("Overriding setting '%s' with value '%s' from sample '%s' to " % + (settingname, sourcesetting, overridesample._origName) + + "sample '%s' in app '%s'" % (s.name, s.app)) setattr(s, settingname, sourcesetting) except AttributeError: pass @@ -649,7 +665,8 @@ def parse(self): # We've added replay mode, so lets loop through the samples again and set the earliest and latest # settings for any samples that were set to replay mode if s.perDayVolume: - self.logger.info("Stanza contains per day volume, changing rater and generator to perdayvolume instead of count") + self.logger.info( + "Stanza contains per day volume, changing rater and generator to perdayvolume instead of count") s.rater = 'perdayvolume' s.count = 1 s.generator = 'perdayvolumegenerator' @@ -676,7 +693,7 @@ def parse(self): if s.autotimestamp: at = self.autotimestamps - line_puncts = [ ] + line_puncts = [] # Check for _time field, if it exists, add a timestamp to support it if len(s.sampleDict) > 0: @@ -712,7 +729,8 @@ def parse(self): t.replacement = x[1] try: - self.logger.debug("Trying regex '%s' for format '%s' on '%s'" % (x[0], x[1], e[s.timeField])) + self.logger.debug( + "Trying regex '%s' for format '%s' on '%s'" % (x[0], x[1], e[s.timeField])) ts = s.getTSFromEvent(e['_raw'], t) if type(ts) == datetime.datetime: found_token = False @@ -722,10 +740,11 @@ def parse(self): found_token = True break if not found_token: - self.logger.debug("Found timestamp '%s', extending token with format '%s'" % (x[0], x[1])) + self.logger.debug( + "Found timestamp '%s', extending token with format '%s'" % (x[0], x[1])) s.tokens.append(t) # Drop this pattern from ones we try in the future - at = [ z for z in at if z[0] != x[0] ] + at = [z for z in at if z[0] != x[0]] break except ValueError: pass @@ -749,23 +768,23 @@ def _validateSetting(self, stanza, key, value): self.logger.debug("Validating setting for '%s' with value '%s' in stanza '%s'" % (key, value, stanza)) if key.find('token.') > -1: results = re.match('token\.(\d+)\.(\w+)', key) - if results != None: + if results is not None: groups = results.groups() if groups[1] not in self._validTokenTypes: - self.logger.error("Could not parse token index '%s' token type '%s' in stanza '%s'" % \ - (groups[0], groups[1], stanza)) - raise ValueError("Could not parse token index '%s' token type '%s' in stanza '%s'" % \ - (groups[0], groups[1], stanza)) + self.logger.error("Could not parse token index '%s' token type '%s' in stanza '%s'" % + (groups[0], groups[1], stanza)) + raise ValueError("Could not parse token index '%s' token type '%s' in stanza '%s'" % + (groups[0], groups[1], stanza)) if groups[1] == 'replacementType': if value not in self._validReplacementTypes: - self.logger.error("Invalid replacementType '%s' for token index '%s' in stanza '%s'" % \ - (value, groups[0], stanza)) - raise ValueError("Could not parse token index '%s' token type '%s' in stanza '%s'" % \ - (groups[0], groups[1], stanza)) + self.logger.error("Invalid replacementType '%s' for token index '%s' in stanza '%s'" % + (value, groups[0], stanza)) + raise ValueError("Could not parse token index '%s' token type '%s' in stanza '%s'" % + (groups[0], groups[1], stanza)) return (int(groups[0]), groups[1]) elif key.find('host.') > -1: results = re.match('host\.(\w+)', key) - if results != None: + if results is not None: groups = results.groups() if groups[0] not in self._validHostTokens: self.logger.error("Could not parse host token type '%s' in stanza '%s'" % (groups[0], stanza)) @@ -811,8 +830,9 @@ def _validateSetting(self, stanza, key, value): self.logger.debug("Calling function for setting '%s' with value '%s'" % (key, value)) value = complexSetting(value) elif isinstance(complexSetting, list): - if not value in complexSetting: - self.logger.error("Setting '%s' is invalid for value '%s' in stanza '%s'" % (key, value, stanza)) + if value not in complexSetting: + self.logger.error( + "Setting '%s' is invalid for value '%s' in stanza '%s'" % (key, value, stanza)) raise ValueError("Setting '%s' is invalid for value '%s' in stanza '%s'" % (key, value, stanza)) else: # Notifying only if the setting isn't valid and continuing on @@ -832,7 +852,7 @@ def _validateTimezone(self, value): mod = 100 else: mod = -100 - value = datetime.timedelta(hours=int(int(value) / 100.0), minutes=int(value) % mod ) + value = datetime.timedelta(hours=int(int(value) / 100.0), minutes=int(value) % mod) except: self.logger.error("Could not parse timezone {}".format(value)) raise ValueError("Could not parse timezone {}".format(value)) @@ -855,7 +875,6 @@ def _buildConfDict(self): """Build configuration dictionary that we will use """ # Abstracts grabbing configuration from Splunk or directly from Configuration Files - if self.splunkEmbedded and not STANDALONE: self.logger.info('Retrieving eventgen configurations from /configs/eventgen') import splunk.entity as entity @@ -866,9 +885,7 @@ def _buildConfDict(self): conf = ConfigParser() # Make case sensitive conf.optionxform = str - currentdir = os.getcwd() - - conffiles = [ ] + conffiles = [] # 2/1/15 CS Moving to argparse way of grabbing command line parameters if self.configfile: if os.path.exists(self.configfile): @@ -876,26 +893,26 @@ def _buildConfDict(self): # In which case we'll assume it's a splunk app and look for config files in # default and local if os.path.isdir(self.configfile): - conffiles = [os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), - os.path.join(self.configfile, 'default', 'eventgen.conf'), - os.path.join(self.configfile, 'local', 'eventgen.conf')] + conffiles = [ + os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), + os.path.join(self.configfile, 'default', 'eventgen.conf'), + os.path.join(self.configfile, 'local', 'eventgen.conf')] else: - conffiles = [os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), - self.configfile] + conffiles = [os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), self.configfile] if len(conffiles) == 0: - conffiles = [os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), - os.path.join(self.grandparentdir, 'local', 'eventgen.conf')] + conffiles = [ + os.path.join(self.grandparentdir, 'default', 'eventgen.conf'), + os.path.join(self.grandparentdir, 'local', 'eventgen.conf')] self.logger.debug('Reading configuration files for non-splunkembedded: %s' % conffiles) conf.read(conffiles) sections = conf.sections() - ret = { } - orig = { } + ret = {} for section in sections: ret[section] = dict(conf.items(section)) # For compatibility with Splunk's configs, need to add the app name to an eai:acl key - ret[section]['eai:acl'] = { 'app': self.grandparentdir.split(os.sep)[-1] } + ret[section]['eai:acl'] = {'app': self.grandparentdir.split(os.sep)[-1]} self._confDict = ret self.logger.debug("ConfDict returned %s" % pprint.pformat(dict(self._confDict))) diff --git a/splunk_eventgen/lib/eventgenexceptions.py b/splunk_eventgen/lib/eventgenexceptions.py index f954192c..3d0d0d91 100644 --- a/splunk_eventgen/lib/eventgenexceptions.py +++ b/splunk_eventgen/lib/eventgenexceptions.py @@ -3,9 +3,7 @@ """ - class PluginNotLoaded(Exception): - def __init__(self, bindir, libdir, plugindir, name, type, msg="Plugin {} Not Loaded, attempting to load."): """Exception raised when a sample asks for a plugin that is not in the plugin list. This exception triggers an upload reload of plugins that expands the search path of plugins to add. @@ -26,8 +24,8 @@ def __init__(self, bindir, libdir, plugindir, name, type, msg="Plugin {} Not Loa self.type = type super(PluginNotLoaded, self).__init__(msg) -class FailedLoadingPlugin(Exception): +class FailedLoadingPlugin(Exception): def __init__(self, name, msg="Plugin {} Not Found or Failed to load."): """Exception raised when a sample asks for a plugin that can't be found diff --git a/splunk_eventgen/lib/eventgenoutput.py b/splunk_eventgen/lib/eventgenoutput.py index b8454dc6..c2b8c1c1 100644 --- a/splunk_eventgen/lib/eventgenoutput.py +++ b/splunk_eventgen/lib/eventgenoutput.py @@ -1,12 +1,13 @@ from __future__ import division + +import datetime import logging import logging.handlers -from Queue import Full -import json import time -import datetime +from Queue import Full + -#TODO: Figure out why we load plugins from here instead of the base plugin class. +# TODO: Figure out why we load plugins from here instead of the base plugin class. class Output(object): """ Base class which loads output plugins in BASE_DIR/lib/plugins/output and handles queueing @@ -22,11 +23,10 @@ def __init__(self, sample): self._setup_logging() self.output_counter = None - def __str__(self): """Only used for debugging, outputs a pretty printed representation of this output""" # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key != '_c']) + # temp = dict([(key, value) for (key, value) in self.__dict__.items() if key != '_c']) # return pprint.pformat(temp) return "" @@ -55,18 +55,18 @@ def setOutputCounter(self, output_counter): def updateConfig(self, config): self.config = config - #TODO: This is where the actual output plugin is loaded, and pushed out. This should be handled way better... + # TODO: This is where the actual output plugin is loaded, and pushed out. This should be handled way better... self.outputPlugin = self.config.getPlugin('output.' + self._sample.outputMode, self._sample) def send(self, msg): """ Adds msg to the output buffer, flushes if buffer is more than MAXQUEUELENGTH """ - ts = self._sample.timestamp if self._sample.timestamp != None else self._sample.now() - self._queue.append({'_raw': msg, 'index': self._sample.index, - 'source': self._sample.source, 'sourcetype': self._sample.sourcetype, - 'host': self._sample.host, 'hostRegex': self._sample.hostRegex, - '_time': int(time.mktime(ts.timetuple()))}) + ts = self._sample.timestamp if self._sample.timestamp is not None else self._sample.now() + self._queue.append({ + '_raw': msg, 'index': self._sample.index, 'source': self._sample.source, 'sourcetype': + self._sample.sourcetype, 'host': self._sample.host, 'hostRegex': self._sample.hostRegex, '_time': int( + time.mktime(ts.timetuple()))}) if len(self._queue) >= self.MAXQUEUELENGTH: self.flush() @@ -90,7 +90,7 @@ def flush(self, endOfInterval=False): more than maxIntervalsBeforeFlush tunable. """ flushing = False - #TODO: Fix interval flushing somehow with a queue, not sure I even want to support this feature anymore. + # TODO: Fix interval flushing somehow with a queue, not sure I even want to support this feature anymore. '''if endOfInterval: logger.debugv("Sample calling flush, checking increment against maxIntervalsBeforeFlush") c.intervalsSinceFlush[self._sample.name].increment() @@ -104,7 +104,7 @@ def flush(self, endOfInterval=False): logger.debugv("maxQueueLength exceeded, flushing") flushing = True''' - #TODO: This is set this way just for the time being while I decide if we want this feature. + # TODO: This is set this way just for the time being while I decide if we want this feature. flushing = True if flushing: q = self._queue @@ -113,8 +113,10 @@ def flush(self, endOfInterval=False): outputer = self.outputPlugin(self._sample, self.output_counter) outputer.updateConfig(self.config) outputer.set_events(q) - # When an outputQueue is used, it needs to run in a single threaded nature which requires to be put back into the outputqueue so a single thread worker can execute it. - # When an outputQueue is not used, it can be ran by multiple processes or threads. Therefore, no need to put the outputer back into the Queue. Just execute it. + # When an outputQueue is used, it needs to run in a single threaded nature which requires to be put back + # into the outputqueue so a single thread worker can execute it. When an outputQueue is not used, it can be + # ran by multiple processes or threads. Therefore, no need to put the outputer back into the Queue. Just + # execute it. # if outputPlugin must be used for useOutputQueue, use outputQueue regardless of user config useOutputQueue: if self.outputPlugin.useOutputQueue or self.config.useOutputQueue: try: @@ -126,9 +128,10 @@ def flush(self, endOfInterval=False): # TODO: clean out eventsSend and bytesSent if they are not being used in config # self.config.eventsSent.add(len(tmp)) # self.config.bytesSent.add(sum(tmp)) - if self.config.splunkEmbedded and len(tmp)>0: + if self.config.splunkEmbedded and len(tmp) > 0: metrics = logging.getLogger('eventgen_metrics') - metrics.info({'timestamp': datetime.datetime.strftime(datetime.datetime.now(), '%Y-%m-%d %H:%M:%S'), - 'sample': self._sample.name, 'events': len(tmp), 'bytes': sum(tmp)}) + metrics.info({ + 'timestamp': datetime.datetime.strftime(datetime.datetime.now(), '%Y-%m-%d %H:%M:%S'), 'sample': + self._sample.name, 'events': len(tmp), 'bytes': sum(tmp)}) tmp = None outputer.run() diff --git a/splunk_eventgen/lib/eventgensamples.py b/splunk_eventgen/lib/eventgensamples.py index 7e14fb3f..269ffe43 100644 --- a/splunk_eventgen/lib/eventgensamples.py +++ b/splunk_eventgen/lib/eventgensamples.py @@ -1,14 +1,17 @@ # TODO Move config settings to plugins from __future__ import division, with_statement -import os, sys + +import copy +import csv +import datetime import logging +import os import pprint -import datetime import re -import csv -import copy +import sys import urllib + from timeparser import timeParser @@ -23,7 +26,7 @@ class Sample(object): name = None app = None filePath = None - + # Options which are all valid for a sample disabled = None spoolDir = None @@ -93,11 +96,11 @@ class Sample(object): _lastts = None _earliestParsed = None _latestParsed = None - + def __init__(self, name): self.name = name - self.tokens = [ ] - self._lockedSettings = [ ] + self.tokens = [] + self._lockedSettings = [] self.backfilldone = False self._setup_logging() @@ -106,10 +109,10 @@ def updateConfig(self, config): def __str__(self): """Only used for debugging, outputs a pretty printed representation of this sample""" - filter_list = [ 'sampleLines', 'sampleDict' ] - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key not in filter_list ]) + filter_list = ['sampleLines', 'sampleDict'] + temp = dict([(key, value) for (key, value) in self.__dict__.items() if key not in filter_list]) return pprint.pformat(temp) - + def __repr__(self): return self.__str__() @@ -128,17 +131,17 @@ def _setup_logging(self): logger = logging.getLogger('eventgen') self.logger = logger - ## Replaces $SPLUNK_HOME w/ correct pathing + # Replaces $SPLUNK_HOME w/ correct pathing def pathParser(self, path): greatgreatgrandparentdir = os.path.dirname(os.path.dirname(self.config.grandparentdir)) sharedStorage = ['$SPLUNK_HOME/etc/apps', '$SPLUNK_HOME/etc/users/', '$SPLUNK_HOME/var/run/splunk'] - ## Replace windows os.sep w/ nix os.sep + # Replace windows os.sep w/ nix os.sep path = path.replace('\\', '/') - ## Normalize path to os.sep + # Normalize path to os.sep path = os.path.normpath(path) - ## Iterate special paths + # Iterate special paths for x in range(0, len(sharedStorage)): sharedPath = os.path.normpath(sharedStorage[x]) @@ -146,17 +149,17 @@ def pathParser(self, path): path.replace('$SPLUNK_HOME', greatgreatgrandparentdir) break - ## Split path + # Split path path = path.split(os.sep) - ## Iterate path segments + # Iterate path segments for x in range(0, len(path)): segment = path[x].lstrip('$') - ## If segement is an environment variable then replace - if os.environ.has_key(segment): + # If segement is an environment variable then replace + if segment in os.environ: path[x] = os.environ[segment] - ## Join path + # Join path path = os.sep.join(path) return path @@ -164,11 +167,11 @@ def pathParser(self, path): # 9/2/15 Adding ability to pass in a token rather than using the tokens from the sample def getTSFromEvent(self, event, passed_token=None): currentTime = None - formats = [ ] + formats = [] # JB: 2012/11/20 - Can we optimize this by only testing tokens of type = *timestamp? # JB: 2012/11/20 - Alternatively, documentation should suggest putting timestamp as token.0. - if passed_token != None: - tokens = [ passed_token ] + if passed_token is not None: + tokens = [passed_token] else: tokens = self.tokens for token in tokens: @@ -182,14 +185,16 @@ def getTSFromEvent(self, event, passed_token=None): timeString = results.group(group) # self.logger.debug("Testing '%s' as a time string against '%s'" % (timeString, timeFormat)) if timeFormat == "%s": - ts = float(timeString) if len(timeString) < 10 else float(timeString) / (10**(len(timeString)-10)) + ts = float(timeString) if len(timeString) < 10 else float(timeString) \ + / (10**(len(timeString) - 10)) # self.logger.debug("Getting time for timestamp '%s'" % ts) currentTime = datetime.datetime.fromtimestamp(ts) else: - # self.logger.debugv("Getting time for timeFormat '%s' and timeString '%s'" % (timeFormat, timeString)) - # Working around Python bug with a non thread-safe strptime. Randomly get AttributeError + # self.logger.debug("Getting time for timeFormat '%s' and timeString '%s'" % + # (timeFormat, timeString)) + # Working around Python bug with a non thread-safe strptime. Randomly get AttributeError # when calling strptime, so if we get that, try again - while currentTime == None: + while currentTime is None: try: # Checking for timezone adjustment if timeString[-5] == "+": @@ -201,11 +206,13 @@ def getTSFromEvent(self, event, passed_token=None): if type(currentTime) == datetime.datetime: break except ValueError: - self.logger.warning("Match found ('%s') but time parse failed. Timeformat '%s' Event '%s'" % (timeString, timeFormat, event)) + self.logger.warning("Match found ('%s') but time parse failed. Timeformat '%s' Event '%s'" % + (timeString, timeFormat, event)) if type(currentTime) != datetime.datetime: # Total fail - if passed_token == None: # If we're running for autotimestamp don't log error - self.logger.warning("Can't find a timestamp (using patterns '%s') in this event: '%s'." % (formats, event)) + if passed_token is None: # If we're running for autotimestamp don't log error + self.logger.warning( + "Can't find a timestamp (using patterns '%s') in this event: '%s'." % (formats, event)) raise ValueError("Can't find a timestamp (using patterns '%s') in this event: '%s'." % (formats, event)) # Check to make sure we parsed a year if currentTime.year == 1900: @@ -216,18 +223,18 @@ def getTSFromEvent(self, event, passed_token=None): # if self.timestamp == None: # self.timestamp = currentTime return currentTime - + def saveState(self): """Saves state of all integer IDs of this sample to a file so when we restart we'll pick them up""" for token in self.tokens: if token.replacementType == 'integerid': - stateFile = open(os.path.join(self.sampleDir, 'state.'+urllib.pathname2url(token.token)), 'w') + stateFile = open(os.path.join(self.sampleDir, 'state.' + urllib.pathname2url(token.token)), 'w') stateFile.write(token.replacement) stateFile.close() def now(self, utcnow=False, realnow=False): # self.logger.info("Getting time (timezone %s)" % (self.timezone)) - if not self.backfilldone and not self.backfillts == None and not realnow: + if not self.backfilldone and self.backfillts is not None and not realnow: return self.backfillts elif self.timezone.days > 0: return datetime.datetime.now() @@ -246,11 +253,12 @@ def get_backfill_time(self, current_time): if self.backfill[-2:] == 'ms': time_unit = 'ms' backfill_time = self.backfill[1:-2] - return self.get_time_difference(current_time=current_time, different_time=backfill_time, sign='-', time_unit=time_unit) + return self.get_time_difference(current_time=current_time, different_time=backfill_time, sign='-', + time_unit=time_unit) else: self.logger.error("Backfill time is not in the past.") return current_time - + def get_time_difference(self, current_time, different_time, sign='-', time_unit='ms'): if time_unit == 'ms': return current_time + (int(sign + '1') * datetime.timedelta(milliseconds=int(different_time))) @@ -263,13 +271,10 @@ def get_time_difference(self, current_time, different_time, sign='-', time_unit= elif time_unit == 'd': return current_time + (int(sign + '1') * datetime.timedelta(days=int(different_time))) - - - def earliestTime(self): # First optimization, we need only store earliest and latest # as an offset of now if they're relative times - if self._earliestParsed != None: + if self._earliestParsed is not None: earliestTime = self.now() - self._earliestParsed self.logger.debug("Using cached earliest time: %s" % earliestTime) else: @@ -280,14 +285,16 @@ def earliestTime(self): temptd = self.now(realnow=True) - tempearliest self._earliestParsed = datetime.timedelta(days=temptd.days, seconds=temptd.seconds) earliestTime = self.now() - self._earliestParsed - self.logger.debug("Calulating earliestParsed as '%s' with earliestTime as '%s' and self.sample.earliest as '%s'" % (self._earliestParsed, earliestTime, tempearliest)) + self.logger.debug( + "Calulating earliestParsed as '%s' with earliestTime as '%s' and self.sample.earliest as '%s'" % + (self._earliestParsed, earliestTime, tempearliest)) else: earliestTime = timeParser(self.earliest, timezone=self.timezone) self.logger.debug("earliestTime as absolute time '%s'" % earliestTime) return earliestTime def latestTime(self): - if self._latestParsed != None: + if self._latestParsed is not None: latestTime = self.now() - self._latestParsed self.logger.debug("Using cached latestTime: %s" % latestTime) else: @@ -298,7 +305,9 @@ def latestTime(self): temptd = self.now(realnow=True) - templatest self._latestParsed = datetime.timedelta(days=temptd.days, seconds=temptd.seconds) latestTime = self.now() - self._latestParsed - self.logger.debug("Calulating latestParsed as '%s' with latestTime as '%s' and self.sample.latest as '%s'" % (self._latestParsed, latestTime, templatest)) + self.logger.debug( + "Calulating latestParsed as '%s' with latestTime as '%s' and self.sample.latest as '%s'" % + (self._latestParsed, latestTime, templatest)) else: latestTime = timeParser(self.latest, timezone=self.timezone) self.logger.debug("latstTime as absolute time '%s'" % latestTime) @@ -316,33 +325,36 @@ def _closeSampleFile(self): self._sampleFH.close() def loadSample(self): + """ + Load sample from disk into self._sample.sampleLines and self._sample.sampleDict, using cached copy if possible + """ if not self.logger: self._setup_logging() - """Load sample from disk into self._sample.sampleLines and self._sample.sampleDict, - using cached copy if possible""" if self.sampletype == 'raw': # 5/27/12 CS Added caching of the sample file - if self.sampleDict == None: + if self.sampleDict is None: self._openSampleFile() if self.breaker == self.config.breaker: self.logger.debug("Reading raw sample '%s' in app '%s'" % (self.name, self.app)) self.sampleLines = self._sampleFH.readlines() - # 1/5/14 CS Moving to using only sampleDict and doing the breaking up into events at load time instead of on every generation + # 1/5/14 CS Moving to using only sampleDict and doing the breaking up into events at load time instead + # of on every generation else: - self.logger.debug("Non-default breaker '%s' detected for sample '%s' in app '%s'" \ - % (self.breaker, self.name, self.app) ) + self.logger.debug("Non-default breaker '%s' detected for sample '%s' in app '%s'" % + (self.breaker, self.name, self.app)) sampleData = self._sampleFH.read() - self.sampleLines = [ ] + self.sampleLines = [] - self.logger.debug("Filling array for sample '%s' in app '%s'; sampleData=%s, breaker=%s" \ - % (self.name, self.app, len(sampleData), self.breaker)) + self.logger.debug("Filling array for sample '%s' in app '%s'; sampleData=%s, breaker=%s" % + (self.name, self.app, len(sampleData), self.breaker)) try: breakerRE = re.compile(self.breaker, re.M) except: - self.logger.error("Line breaker '%s' for sample '%s' in app '%s' could not be compiled; using default breaker" \ - % (self.breaker, self.name, self.app) ) + self.logger.error( + "Line breaker '%s' for sample '%s' in app '%s' could not be compiled; using default breaker" + % (self.breaker, self.name, self.app)) self.breaker = self.config.breaker # Loop through data, finding matches of the regular expression and breaking them up into @@ -365,14 +377,17 @@ def loadSample(self): for line in self.sampleLines: if line and line[-1] != '\n': line = line + '\n' - self.sampleDict.append({ '_raw': line, 'index': self.index, 'host': self.host, 'source': self.source, 'sourcetype': self.sourcetype }) - self.logger.debug('Finished creating sampleDict & sampleLines. Len samplesLines: %d Len sampleDict: %d' % (len(self.sampleLines), len(self.sampleDict))) + self.sampleDict.append({ + '_raw': line, 'index': self.index, 'host': self.host, 'source': self.source, 'sourcetype': + self.sourcetype}) + self.logger.debug('Finished creating sampleDict & sampleLines. Len samplesLines: %d Len sampleDict: %d' + % (len(self.sampleLines), len(self.sampleDict))) elif self.sampletype == 'csv': - if self.sampleDict == None: + if self.sampleDict is None: self._openSampleFile() self.logger.debug("Reading csv sample '%s' in app '%s'" % (self.name, self.app)) - self.sampleDict = [ ] - self.sampleLines = [ ] + self.sampleDict = [] + self.sampleLines = [] # Fix to load large csv files, work with python 2.5 onwards csv.field_size_limit(sys.maxint) csvReader = csv.DictReader(self._sampleFH) @@ -395,14 +410,15 @@ def loadSample(self): else: self.logger.error("Missing _raw in line '%s'" % pprint.pformat(line)) self._closeSampleFile() - self.logger.debug("Finished creating sampleDict & sampleLines for sample '%s'. Len sampleDict: %d" % (self.name, len(self.sampleDict))) + self.logger.debug("Finished creating sampleDict & sampleLines for sample '%s'. Len sampleDict: %d" % + (self.name, len(self.sampleDict))) for i in xrange(0, len(self.sampleDict)): if len(self.sampleDict[i]['_raw']) < 1 or self.sampleDict[i]['_raw'][-1] != '\n': self.sampleDict[i]['_raw'] += '\n' def get_loaded_sample(self): - if self.sampletype != 'csv' and os.path.getsize(self.filePath) > 10000000 : + if self.sampletype != 'csv' and os.path.getsize(self.filePath) > 10000000: self._openSampleFile() return self._sampleFH elif self.sampletype == 'csv': diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 6079cbaa..f37d726b 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -1,24 +1,26 @@ +import copy import logging import time -import copy -from timeparser import timeParserTimeMath from Queue import Full +from timeparser import timeParserTimeMath + + class Timer(object): """ - Overall governor in Eventgen. A timer is created for every sample in Eventgen. The Timer has the responsibility - for executing each sample. There are two ways the timer can execute: + Overall governor in Eventgen. A timer is created for every sample in Eventgen. The Timer has the responsibility + for executing each sample. There are two ways the timer can execute: * Queueable * Non-Queueable - For Queueable plugins, we place a work item in the generator queue. Generator workers pick up the item from the generator - queue and do work. This queueing architecture allows for parallel execution of workers. Workers then place items in the - output queue for Output workers to pick up and output. + For Queueable plugins, we place a work item in the generator queue. Generator workers pick up the item from the + generator queue and do work. This queueing architecture allows for parallel execution of workers. Workers then place + items in the output queue for Output workers to pick up and output. - However, for some generators, like the replay generator, we need to keep a single view of state of where we are in the replay. - This means we cannot generate items in parallel. This is why we also offer Non-Queueable plugins. In the case of - Non-Queueable plugins, the Timer class calls the generator method of the plugin directly, tracks the amount of time - the plugin takes to generate and sleeps the remaining interval before calling generate again. + However, for some generators, like the replay generator, we need to keep a single view of state of where we are in + the replay. This means we cannot generate items in parallel. This is why we also offer Non-Queueable plugins. In + the case of Non-Queueable plugins, the Timer class calls the generator method of the plugin directly, tracks the + amount of time the plugin takes to generate and sleeps the remaining interval before calling generate again. """ time = None countdown = None @@ -39,23 +41,24 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.countdown = 0 self.executions = 0 self.interval = getattr(self.sample, "interval", config.interval) - #enable the logger + # enable the logger self._setup_logging() self.logger.debug('Initializing timer for %s' % sample.name if sample is not None else "None") # load plugins - if self.sample != None: + if self.sample is not None: rater_class = self.config.getPlugin('rater.' + self.sample.rater, self.sample) self.rater = rater_class(self.sample) self.generatorPlugin = self.config.getPlugin('generator.' + self.sample.generator, self.sample) self.outputPlugin = self.config.getPlugin('output.' + self.sample.outputMode, self.sample) if self.sample.timeMultiple < 0: self.logger.error("Invalid setting for timeMultiple: {}, value should be positive".format( - self.sample.timeMultiple)) + self.sample.timeMultiple)) elif self.sample.timeMultiple != 1: self.interval = self.sample.interval * self.sample.timeMultiple self.logger.debug("Adjusting interval {} with timeMultiple {}, new interval: {}".format( - self.sample.interval, self.sample.timeMultiple, self.interval)) - self.logger.info("Start '%s' generatorWorkers for sample '%s'" % (self.sample.config.generatorWorkers, self.sample.name)) + self.sample.interval, self.sample.timeMultiple, self.interval)) + self.logger.info( + "Start '%s' generatorWorkers for sample '%s'" % (self.sample.config.generatorWorkers, self.sample.name)) # loggers can't be pickled due to the lock object, remove them before we try to pickle anything. def __getstate__(self): @@ -114,9 +117,9 @@ def real_run(self): if self.config.stopping or self.stopping: end = True count = self.rater.rate() - #First run of the generator, see if we have any backfill work to do. + # First run of the generator, see if we have any backfill work to do. if self.countdown <= 0: - + if self.sample.backfill and not self.sample.backfilldone: realtime = self.sample.now(realnow=True) if "-" in self.sample.backfill[0]: @@ -130,9 +133,7 @@ def real_run(self): backfillnumber += char elif char != "-": backfillletter += char - backfillearliest = timeParserTimeMath(plusminus=mathsymbol, - num=backfillnumber, - unit=backfillletter, + backfillearliest = timeParserTimeMath(plusminus=mathsymbol, num=backfillnumber, unit=backfillletter, ret=realtime) while backfillearliest < realtime: et = backfillearliest @@ -140,9 +141,7 @@ def real_run(self): genPlugin = self.generatorPlugin(sample=self.sample) # need to make sure we set the queue right if we're using multiprocessing or thread modes genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) - genPlugin.updateCounts(count=count, - start_time=et, - end_time=lt) + genPlugin.updateCounts(count=count, start_time=et, end_time=lt) try: self.generatorQueue.put(genPlugin) except Full: @@ -154,10 +153,9 @@ def real_run(self): # Save previous interval count left to avoid perdayvolumegenerator drop small tasks if self.sample.generator == 'perdayvolumegenerator': count = self.rater.rate() + previous_count_left - if count < raw_event_size and count > 0: - self.logger.info( - "current interval size is {}, which is smaller than a raw event size {}. wait for the next turn.".format( - count, raw_event_size)) + if 0 < count < raw_event_size: + self.logger.info("current interval size is {}, which is smaller than a raw event size {}.". + format(count, raw_event_size) + "Wait for the next turn.") previous_count_left = count self.countdown = self.interval self.executions += 1 @@ -172,11 +170,13 @@ def real_run(self): try: if count < 1 and count != -1: - self.logger.info("There is no data to be generated in worker {0} because the count is {1}.".format(self.sample.config.generatorWorkers, count)) + self.logger.info( + "There is no data to be generated in worker {0} because the count is {1}.".format( + self.sample.config.generatorWorkers, count)) else: # Spawn workers at the beginning of job rather than wait for next interval - self.logger.info("Start '%d' generatorWorkers for sample '%s'" % ( - self.sample.config.generatorWorkers, self.sample.name)) + self.logger.info("Start '%d' generatorWorkers for sample '%s'" % + (self.sample.config.generatorWorkers, self.sample.name)) for worker_id in range(self.config.generatorWorkers): # self.generatorPlugin is only an instance, now we need a real plugin. Make a copy of # of the sample in case another generator corrupts it. @@ -186,13 +186,14 @@ def real_run(self): genPlugin = self.generatorPlugin(sample=copy_sample) # Adjust queue for threading mode genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) - genPlugin.updateCounts(count=count, - start_time=et, - end_time=lt) + genPlugin.updateCounts(count=count, start_time=et, end_time=lt) try: self.generatorQueue.put(genPlugin) - self.logger.info("Worker# {0}: Put {1} MB of events in queue for sample '{2}' with et '{3}' and lt '{4}'".format(worker_id, round((count / 1024.0 / 1024), 4), self.sample.name, et, lt)) + self.logger.info(("Worker# {0}: Put {1} MB of events in queue for sample '{2}'" + + "with et '{3}' and lt '{4}'").format( + worker_id, round((count / 1024.0 / 1024), 4), + self.sample.name, et, lt)) except Full: self.logger.warning("Generator Queue Full. Skipping current generation.") except Exception as e: @@ -212,15 +213,16 @@ def real_run(self): # timer thread if not self.endts: if self.executions >= int(self.end): - self.logger.info("End executions %d reached, ending generation of sample '%s'" % (int(self.end), self.sample.name)) + self.logger.info("End executions %d reached, ending generation of sample '%s'" % (int( + self.end), self.sample.name)) self.stopping = True end = True elif lt >= self.endts: - self.logger.info("End Time '%s' reached, ending generation of sample '%s'" % (self.sample.endts, self.sample.name)) + self.logger.info("End Time '%s' reached, ending generation of sample '%s'" % (self.sample.endts, + self.sample.name)) self.stopping = True end = True else: time.sleep(self.time) self.countdown -= self.time - diff --git a/splunk_eventgen/lib/eventgentimestamp.py b/splunk_eventgen/lib/eventgentimestamp.py index f42fb4d9..d1dca9e5 100644 --- a/splunk_eventgen/lib/eventgentimestamp.py +++ b/splunk_eventgen/lib/eventgentimestamp.py @@ -1,9 +1,9 @@ import datetime -import time import random +import time -class EventgenTimestamp(object): +class EventgenTimestamp(object): @staticmethod def get_random_timestamp(earliest, latest): if type(earliest) != datetime.datetime or type(latest) != datetime.datetime: @@ -23,7 +23,8 @@ def get_random_timestamp_backfill(earliest, latest, sample_earliest, sample_late earliest and latest timestamp gets generated with an interval sample_earliest and sample_latest are the user config key values from eventgen.conf we are using earliest as a pivot time and creating a random variance using sample_earliest and sample_latest. - in this way, we respect an interval passed in by a user and use user input earliest and latest to create a random variance + in this way, we respect an interval passed in by a user and use user input earliest and latest to create a + random variance. ''' if type(earliest) != datetime.datetime or type(latest) != datetime.datetime: raise Exception("Earliest {0} or latest {1} arguments are not datetime objects".format(earliest, latest)) @@ -50,7 +51,8 @@ def get_sequential_timestamp(earliest, latest, slot, total_slot): latest_in_epoch = time.mktime(latest.timetuple()) if earliest_in_epoch > latest_in_epoch: raise Exception("Latest time is earlier than earliest time.") - return datetime.datetime.fromtimestamp(earliest_in_epoch + (latest_in_epoch-earliest_in_epoch)*slot/total_slot) + return datetime.datetime.fromtimestamp(earliest_in_epoch + + (latest_in_epoch - earliest_in_epoch) * slot / total_slot) @staticmethod def _convert_time_difference_to_seconds(time_difference): diff --git a/splunk_eventgen/lib/eventgentoken.py b/splunk_eventgen/lib/eventgentoken.py index 9e883e05..f409d90f 100644 --- a/splunk_eventgen/lib/eventgentoken.py +++ b/splunk_eventgen/lib/eventgentoken.py @@ -1,26 +1,29 @@ -# TODO Handle timestamp generation for modular input output where we set sample.timestamp properly when we do a timestamp replacement +# TODO: Handle timestamp generation for modinput and set sample.timestamp properly for timestamp replacement from __future__ import division, with_statement -import os + +import datetime +import json import logging +import os import pprint import random -import datetime, time import re -import json -import copy -from timeparser import timeParser, timeDelta2secs +import time import urllib import uuid +from timeparser import timeDelta2secs + + class Token(object): """Contains data and methods for replacing a token in a given sample""" token = None replacementType = None replacement = None sample = None - mvhash = { } - + mvhash = {} + _replaytd = None _lastts = None _tokenfile = None @@ -35,24 +38,18 @@ class Token(object): _stringMatch = None _listMatch = None _tokenfilecounter = 0 - + def __init__(self, sample=None): - + # Logger already setup by config, just get an instance self._setup_logging() - - if sample == None: - name = "None" - else: - name = sample.name - self._earliestTime = (None, None) self._latestTime = (None, None) - + def __str__(self): """Only used for debugging, outputs a pretty printed representation of this token""" # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key != 'sample' ]) + temp = dict([(key, value) for (key, value) in self.__dict__.items() if key != 'sample']) return pprint.pformat(temp) def __repr__(self): @@ -75,11 +72,11 @@ def _setup_logging(self): def _match(self, event): """Executes regular expression match and returns the re.Match object""" return re.match(self.token, event) - + def _search(self, event): """Executes regular expression search and returns the re.Match object""" return re.search(self.token, event) - + def _finditer(self, event): """Executes regular expression finditer and returns the re.Match object""" return re.finditer(self.token, event) @@ -87,7 +84,7 @@ def _finditer(self, event): def _findall(self, event): """Executes regular expression finditer and returns the re.Match object""" return re.findall(self.token, event) - + def replace(self, event, et=None, lt=None, s=None, pivot_timestamp=None): """Replaces all instances of this token in provided event and returns event""" if not getattr(self, 'logger', None): @@ -96,10 +93,11 @@ def replace(self, event, et=None, lt=None, s=None, pivot_timestamp=None): tokenMatch = list(self._finditer(event)) if len(tokenMatch) > 0: - replacement = self._getReplacement(event[tokenMatch[0].start(0):tokenMatch[0].end(0)], et, lt, s, pivot_timestamp=pivot_timestamp) + replacement = self._getReplacement(event[tokenMatch[0].start(0):tokenMatch[0].end(0)], et, lt, s, + pivot_timestamp=pivot_timestamp) if replacement is not None or self.replacementType == 'replaytimestamp': # logger.debug("Replacement: '%s'" % replacement) - ## Iterate matches + # Iterate matches for match in tokenMatch: # logger.debug("Match: %s" % (match)) try: @@ -131,8 +129,8 @@ def replace(self, event, et=None, lt=None, s=None, pivot_timestamp=None): self._replaytd = None self._lastts = None return event - - def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, pivot_timestamp=None): + + def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, pivot_timestamp=None): if self.replacementType == 'static': return self.replacement # This logic is done in replay.py @@ -141,86 +139,89 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, elif self.replacementType == 'timestamp': if s.earliest and s.latest: if earliestTime and latestTime: - if latestTime>=earliestTime: + if latestTime >= earliestTime: if pivot_timestamp: replacementTime = pivot_timestamp - elif s.timestamp == None: + elif s.timestamp is None: minDelta = 0 - ## Compute timeDelta as total_seconds + # Compute timeDelta as total_seconds td = latestTime - earliestTime if not type(td) == float: maxDelta = timeDelta2secs(td) else: maxDelta = td - ## Get random timeDelta - randomDelta = datetime.timedelta(seconds=random.randint(minDelta, maxDelta), microseconds=random.randint(0, latestTime.microsecond if latestTime.microsecond > 0 else 999999)) + # Get random timeDelta + randomDelta = datetime.timedelta( + seconds=random.randint(minDelta, maxDelta), microseconds=random.randint( + 0, latestTime.microsecond if latestTime.microsecond > 0 else 999999)) - ## Compute replacmentTime + # Compute replacmentTime replacementTime = latestTime - randomDelta s.timestamp = replacementTime else: replacementTime = s.timestamp - # logger.debug("Generating timestamp for sample '%s' with randomDelta %s, minDelta %s, maxDelta %s, earliestTime %s, latestTime %s, earliest: %s, latest: %s" % (s.name, randomDelta, minDelta, maxDelta, earliestTime, latestTime, s.earliest, s.latest)) - - replacement = self.replacement.replace('%s', str(round(time.mktime(replacementTime.timetuple()))).rstrip('0').rstrip('.')) + replacement = self.replacement.replace( + '%s', + str(round(time.mktime(replacementTime.timetuple()))).rstrip('0').rstrip('.')) replacementTime = replacementTime.strftime(replacement) - ## replacementTime == replacement for invalid strptime specifiers + # replacementTime == replacement for invalid strptime specifiers if replacementTime != self.replacement.replace('%', ''): return replacementTime else: - self.logger.error("Invalid strptime specifier '%s' detected; will not replace" \ - % (self.replacement) ) + self.logger.error( + "Invalid strptime specifier '%s' detected; will not replace" % (self.replacement)) return old - ## earliestTime/latestTime not proper + # earliestTime/latestTime not proper else: - self.logger.error("Earliest specifier '%s', value '%s' is greater than latest specifier '%s', value '%s' for sample '%s'; will not replace" \ - % (s.earliest, earliestTime, s.latest, latestTime, s.name) ) + self.logger.error(("Earliest specifier '%s', value '%s' is greater than latest specifier '%s'" + + "value '%s' for sample '%s'; will not replace") % + (s.earliest, earliestTime, s.latest, latestTime, s.name)) return old - ## earliest/latest not proper + # earliest/latest not proper else: self.logger.error('Earliest or latest specifier were not set; will not replace') return old elif self.replacementType in ('random', 'rated'): - ## Validations: - if self._integerMatch != None: + # Validations: + if self._integerMatch is not None: integerMatch = self._integerMatch else: integerRE = re.compile('integer\[([-]?\d+):([-]?\d+)\]', re.I) integerMatch = integerRE.match(self.replacement) self._integerMatch = integerMatch - - if self._floatMatch != None: + + if self._floatMatch is not None: floatMatch = self._floatMatch else: floatRE = re.compile('float\[(-?\d+|\d+\.(\d+)):(-?\d+|\d+\.(\d+))\]', re.I) floatMatch = floatRE.match(self.replacement) self._floatMatch = floatMatch - if self._stringMatch != None: + if self._stringMatch is not None: stringMatch = self._stringMatch else: stringRE = re.compile('string\((\d+)\)', re.I) stringMatch = stringRE.match(self.replacement) self._stringMatch = stringMatch - if self._hexMatch != None: + if self._hexMatch is not None: hexMatch = self._hexMatch - else: + else: hexRE = re.compile('hex\((\d+)\)', re.I) hexMatch = hexRE.match(self.replacement) self._hexMatch = hexMatch - if self._listMatch != None: + if self._listMatch is not None: listMatch = self._listMatch else: listRE = re.compile('list(\[[^\]]+\])', re.I) listMatch = listRE.match(self.replacement) self._listMatch = listMatch - ## Valid replacements: ipv4 | ipv6 | integer[:] | string() + # Valid replacements: ipv4 | ipv6 | integer[:] | string() if self.replacement.lower() == 'ipv4': x = 0 replacement = '' @@ -245,7 +246,7 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, x = 0 replacement = '' - ## Give me 6 blocks of 2 hex + # Give me 6 blocks of 2 hex while x < 6: y = 0 while y < 2: @@ -271,7 +272,7 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, rateFactor *= s.hourOfDayRate[str(s.now())] except KeyError: import traceback - stack = traceback.format_exc() + stack = traceback.format_exc() self.logger.error("Hour of day rate failed for token %s. Stacktrace %s" % stack) if type(s.dayOfWeekRate) == dict: try: @@ -283,13 +284,14 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, rateFactor *= s.dayOfWeekRate[str(weekday)] except KeyError: import traceback - stack = traceback.format_exc() + stack = traceback.format_exc() self.logger.error("Day of week rate failed. Stacktrace %s" % stack) replacementInt = int(round(replacementInt * rateFactor, 0)) replacement = str(replacementInt) return replacement else: - self.logger.error("Start integer %s greater than end integer %s; will not replace" % (startInt, endInt) ) + self.logger.error( + "Start integer %s greater than end integer %s; will not replace" % (startInt, endInt)) return old elif floatMatch: try: @@ -301,7 +303,7 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, significance = len(floatMatch.group(2)) if endFloat >= startFloat: - floatret = round(random.uniform(startFloat,endFloat), significance) + floatret = round(random.uniform(startFloat, endFloat), significance) if self.replacementType == 'rated': rateFactor = 1.0 now = s.now() @@ -310,7 +312,7 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, rateFactor *= s.hourOfDayRate[str(now.hour)] except KeyError: import traceback - stack = traceback.format_exc() + stack = traceback.format_exc() self.logger.error("Hour of day rate failed for token %s. Stacktrace %s" % stack) if type(s.dayOfWeekRate) == dict: try: @@ -322,13 +324,14 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, rateFactor *= s.dayOfWeekRate[str(weekday)] except KeyError: import traceback - stack = traceback.format_exc() + stack = traceback.format_exc() self.logger.error("Day of week rate failed. Stacktrace %s" % stack) floatret = round(floatret * rateFactor, significance) floatret = str(floatret) return floatret else: - self.logger.error("Start float %s greater than end float %s; will not replace" % (startFloat, endFloat)) + self.logger.error( + "Start float %s greater than end float %s; will not replace" % (startFloat, endFloat)) return old except ValueError: self.logger.error("Could not parse float[%s:%s]" % (floatMatch.group(1), floatMatch.group(4))) @@ -340,14 +343,16 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, elif strLength > 0: replacement = '' while len(replacement) < strLength: - ## Generate a random ASCII between dec 33->126 + # Generate a random ASCII between dec 33->126 replacement += chr(random.randint(33, 126)) - ## Practice safe strings + # Practice safe strings replacement = re.sub('%[0-9a-fA-F]+', '', urllib.quote(replacement)) - + return replacement else: - self.logger.error("Length specifier %s for string replacement must be greater than 0; will not replace" % (strLength) ) + self.logger.error( + "Length specifier %s for string replacement must be greater than 0; will not replace" % + (strLength)) return old elif hexMatch: strLength = int(hexMatch.group(1)) @@ -367,29 +372,32 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, return random.choice(value) else: - self.logger.error("Unknown replacement value '%s' for replacementType '%s'; will not replace" % (self.replacement, self.replacementType) ) + self.logger.error("Unknown replacement value '%s' for replacementType '%s'; will not replace" % + (self.replacement, self.replacementType)) return old elif self.replacementType in ('file', 'mvfile', 'seqfile'): - if self._replacementFile != None: + if self._replacementFile is not None: replacementFile = self._replacementFile replacementColumn = self._replacementColumn else: try: paths = self.replacement.split(':') - if(len(paths) == 1): + if (len(paths) == 1): replacementColumn = 0 else: - try: # When it's not a mvfile, there's no number on the end: + try: # When it's not a mvfile, there's no number on the end: replacementColumn = int(paths[-1]) except (ValueError): replacementColumn = 0 - if(replacementColumn > 0): + if (replacementColumn > 0): # This supports having a drive-letter colon replacementFile = s.pathParser(":".join(paths[0:-1])) else: replacementFile = s.pathParser(self.replacement) - except ValueError, e: - self.logger.error("Replacement string '%s' improperly formatted. Should be /path/to/file or /path/to/file:column" % (self.replacement)) + except ValueError: + self.logger.error( + "Replacement string '%s' improperly formatted. Should be /path/to/file or /path/to/file:column" + % self.replacement) return old self._replacementFile = replacementFile self._replacementColumn = replacementColumn @@ -399,18 +407,20 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, # return the same random pick on every iteration if replacementColumn > 0 and replacementFile in self.mvhash: if replacementColumn > len(self.mvhash[replacementFile]): - self.logger.error("Index for column '%s' in replacement file '%s' is out of bounds" % (replacementColumn, replacementFile)) + self.logger.error("Index for column '%s' in replacement file '%s' is out of bounds" % + (replacementColumn, replacementFile)) return old else: # self.logger.debug("Returning mvhash: %s" % self.mvhash[replacementFile][replacementColumn-1]) - return self.mvhash[replacementFile][replacementColumn-1] + return self.mvhash[replacementFile][replacementColumn - 1] else: # Adding caching of the token file to avoid reading it every iteration - if self._tokenfile != None: + if self._tokenfile is not None: replacementLines = self._tokenfile - ## Otherwise, lets read the file and build our cached results, pick a result and return it + # Otherwise, lets read the file and build our cached results, pick a result and return it else: - # self.logger.debug("replacementFile: %s replacementColumn: %s" % (replacementFile, replacementColumn)) + # self.logger.debug("replacementFile: %s replacementColumn: %s" % + # (replacementFile, replacementColumn)) replacementFile = os.path.abspath(replacementFile) self.logger.debug("Normalized replacement file %s" % replacementFile) if os.path.exists(replacementFile) and os.path.isfile(replacementFile): @@ -419,7 +429,7 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, replacementFH.close() if len(replacementLines) == 0: - self.logger.error("Replacement file '%s' is empty; will not replace" % (replacementFile) ) + self.logger.error("Replacement file '%s' is empty; will not replace" % (replacementFile)) return old else: self._tokenfile = replacementLines @@ -432,16 +442,17 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, self._tokenfilecounter += 1 else: # pick value randomly from replacement file - replacement = replacementLines[random.randint(0, len(replacementLines)-1)].strip() + replacement = replacementLines[random.randint(0, len(replacementLines) - 1)].strip() if replacementColumn > 0: self.mvhash[replacementFile] = replacement.split(',') if replacementColumn > len(self.mvhash[replacementFile]): - self.logger.error("Index for column '%s' in replacement file '%s' is out of bounds" % (replacementColumn, replacementFile)) + self.logger.error("Index for column '%s' in replacement file '%s' is out of bounds" % + (replacementColumn, replacementFile)) return old else: - return self.mvhash[replacementFile][replacementColumn-1] + return self.mvhash[replacementFile][replacementColumn - 1] else: return replacement elif self.replacementType == 'integerid': @@ -450,5 +461,5 @@ def _getReplacement(self, old=None, earliestTime=None, latestTime=None, s=None, return temp else: - self.logger.error("Unknown replacementType '%s'; will not replace" % (self.replacementType) ) - return old \ No newline at end of file + self.logger.error("Unknown replacementType '%s'; will not replace" % self.replacementType) + return old diff --git a/splunk_eventgen/lib/generatorplugin.py b/splunk_eventgen/lib/generatorplugin.py index ebca83a2..f8364b2d 100644 --- a/splunk_eventgen/lib/generatorplugin.py +++ b/splunk_eventgen/lib/generatorplugin.py @@ -1,15 +1,20 @@ from __future__ import division + +import datetime import logging import logging.handlers import pprint -import datetime -from timeparser import timeParser -import httplib2, urllib +import time +import urllib from xml.dom import minidom from xml.parsers.expat import ExpatError + +import httplib2 + from eventgenoutput import Output from eventgentimestamp import EventgenTimestamp -import time +from timeparser import timeParser + class GeneratorPlugin(object): sampleLines = None @@ -22,7 +27,7 @@ def __init__(self, sample): def __str__(self): """Only used for debugging, outputs a pretty printed representation of this output""" # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key != '_c']) + # temp = dict([(key, value) for (key, value) in self.__dict__.items() if key != '_c']) # return pprint.pformat(temp) return "" @@ -56,8 +61,8 @@ def build_events(self, eventsDict, startTime, earliest, latest, ignore_tokens=Fa timeDiffFrac = "%d.%06d" % (timeDiff.seconds, timeDiff.microseconds) self.logger.debug("Interval complete, flushing feed") self._out.flush(endOfInterval=True) - self.logger.debug("Generation of sample '%s' in app '%s' completed in %s seconds." % ( - self._sample.name, self._sample.app, timeDiffFrac)) + self.logger.debug("Generation of sample '%s' in app '%s' completed in %s seconds." % + (self._sample.name, self._sample.app, timeDiffFrac)) except Exception as e: self.logger.exception("Exception {} happened.".format(type(e))) raise e @@ -81,60 +86,66 @@ def updateConfig(self, config, outqueue): def updateCounts(self, sample=None, count=None, start_time=None, end_time=None): if sample: - self._sample=sample + self._sample = sample self.count = count self.start_time = start_time self.end_time = end_time def setOutputMetadata(self, event): - # self.logger.debug("Sample Index: %s Host: %s Source: %s Sourcetype: %s" % (self.index, self.host, self.source, self.sourcetype)) - # self.logger.debug("Event Index: %s Host: %s Source: %s Sourcetype: %s" % (sampleDict[x]['index'], sampleDict[x]['host'], sampleDict[x]['source'], sampleDict[x]['sourcetype'])) - if self._sample.sampletype == 'csv' and (event['index'] != self._sample.index or - event['host'] != self._sample.host or - event['source'] != self._sample.source or - event['sourcetype'] != self._sample.sourcetype): + # self.logger.debug("Sample Index: %s Host: %s Source: %s Sourcetype: %s" % + # (self.index, self.host, self.source, self.sourcetype)) + # self.logger.debug("Event Index: %s Host: %s Source: %s Sourcetype: %s" % + # (sampleDict[x]['index'], sampleDict[x]['host'], sampleDict[x]['source'], + # sampleDict[x]['sourcetype'])) + if self._sample.sampletype == 'csv' and (event['index'] != self._sample.index + or event['host'] != self._sample.host + or event['source'] != self._sample.source + or event['sourcetype'] != self._sample.sourcetype): self._sample.index = event['index'] self._sample.host = event['host'] # Allow randomizing the host: - if(self._sample.hostToken): + if self._sample.hostToken: self.host = self._sample.hostToken.replace(self.host) self._sample.source = event['source'] self._sample.sourcetype = event['sourcetype'] - self.logger.debugv("Sampletype CSV. Setting CSV parameters. index: '%s' host: '%s' source: '%s' sourcetype: '%s'" \ - % (self._sample.index, self._sample.host, self._sample.source, self._sample.sourcetype)) + self.logger.debug("Setting CSV parameters. index: '%s' host: '%s' source: '%s' sourcetype: '%s'" % + (self._sample.index, self._sample.host, self._sample.source, self._sample.sourcetype)) def setupBackfill(self): - """Called by non-queueable plugins or by the timer to setup backfill times per config or based on a Splunk Search""" + """ + Called by non-queueable plugins or by the timer to setup backfill times per config or based on a Splunk Search + """ s = self._sample - if s.backfill != None: + if s.backfill is not None: try: s.backfillts = timeParser(s.backfill, timezone=s.timezone) - self.logger.info("Setting up backfill of %s (%s)" % (s.backfill,s.backfillts)) + self.logger.info("Setting up backfill of %s (%s)" % (s.backfill, s.backfillts)) except Exception as ex: self.logger.error("Failed to parse backfill '%s': %s" % (s.backfill, ex)) raise - if s.backfillSearch != None: - if s.backfillSearchUrl == None: + if s.backfillSearch is not None: + if s.backfillSearchUrl is None: try: - s.backfillSearchUrl = c.getSplunkUrl(s)[0] + s.backfillSearchUrl = c.getSplunkUrl(s)[0] # noqa, we update c in the globals() dict except ValueError: - self.logger.error("Backfill Search URL not specified for sample '%s', not running backfill search" % s.name) + self.logger.error( + "Backfill Search URL not specified for sample '%s', not running backfill search" % s.name) if not s.backfillSearch.startswith('search'): s.backfillSearch = 'search ' + s.backfillSearch s.backfillSearch += '| head 1 | table _time' - if s.backfillSearchUrl != None: - self.logger.debug("Searching Splunk URL '%s/services/search/jobs' with search '%s' with sessionKey '%s'" % (s.backfillSearchUrl, s.backfillSearch, s.sessionKey)) - + if s.backfillSearchUrl is not None: + self.logger.debug( + "Searching Splunk URL '%s/services/search/jobs' with search '%s' with sessionKey '%s'" % + (s.backfillSearchUrl, s.backfillSearch, s.sessionKey)) + results = httplib2.Http(disable_ssl_certificate_validation=True).request( - s.backfillSearchUrl + '/services/search/jobs', - 'POST', headers={'Authorization': 'Splunk %s' % s.sessionKey}, - body=urllib.urlencode({'search': s.backfillSearch, - 'earliest_time': s.backfill, - 'exec_mode': 'oneshot'}))[1] + s.backfillSearchUrl + '/services/search/jobs', 'POST', headers={ + 'Authorization': 'Splunk %s' % s.sessionKey}, body=urllib.urlencode({ + 'search': s.backfillSearch, 'earliest_time': s.backfill, 'exec_mode': 'oneshot'}))[1] try: temptime = minidom.parseString(results).getElementsByTagName('text')[0].childNodes[0].nodeValue # self.logger.debug("Time returned from backfill search: %s" % temptime) @@ -145,8 +156,9 @@ def setupBackfill(self): temptime = temptime.split('+')[0] temptime = '-'.join(temptime.split('-')[0:3]) s.backfillts = datetime.datetime.strptime(temptime, '%Y-%m-%dT%H:%M:%S.%f') - self.logger.debug("Backfill search results: '%s' value: '%s' time: '%s'" % (pprint.pformat(results), temptime, s.backfillts)) - except (ExpatError, IndexError): + self.logger.debug("Backfill search results: '%s' value: '%s' time: '%s'" % + (pprint.pformat(results), temptime, s.backfillts)) + except (ExpatError, IndexError): pass if s.end is not None: @@ -157,13 +169,14 @@ def setupBackfill(self): parsed = True except ValueError: self.logger.debug("Failed to parse end '%s' for sample '%s', treating as end time" % (s.end, s.name)) - - if not parsed: + + if not parsed: try: s.endts = timeParser(s.end, timezone=s.timezone) self.logger.info("Ending generation at %s (%s)" % (s.end, s.endts)) except Exception as ex: - self.logger.error("Failed to parse end '%s' for sample '%s', treating as number of executions" % (s.end, s.name)) + self.logger.error( + "Failed to parse end '%s' for sample '%s', treating as number of executions" % (s.end, s.name)) raise def run(self, output_counter=None): @@ -189,7 +202,7 @@ def replace_tokens(self, eventsDict, earliest, latest, ignore_tokens=False): mvhash = {} host = targetevent['host'] if hasattr(self._sample, "sequentialTimestamp") and self._sample.sequentialTimestamp and \ - self._sample.generator != 'perdayvolumegenerator': + self._sample.generator != 'perdayvolumegenerator': pivot_timestamp = EventgenTimestamp.get_sequential_timestamp(earliest, latest, eventcount, total_count) else: pivot_timestamp = EventgenTimestamp.get_random_timestamp(earliest, latest) @@ -212,14 +225,10 @@ def replace_tokens(self, eventsDict, earliest, latest, ignore_tokens=False): time_val = int(time.mktime(pivot_timestamp.timetuple())) except Exception: time_val = int(time.mktime(self._sample.now().timetuple())) - l = {'_raw': event, - 'index': targetevent['index'], - 'host': host, - 'hostRegex': self._sample.hostRegex, - 'source': targetevent['source'], - 'sourcetype': targetevent['sourcetype'], - '_time': time_val} - send_events.append(l) + temp_event = { + '_raw': event, 'index': targetevent['index'], 'host': host, 'hostRegex': self._sample.hostRegex, + 'source': targetevent['source'], 'sourcetype': targetevent['sourcetype'], '_time': time_val} + send_events.append(temp_event) return send_events diff --git a/splunk_eventgen/lib/logutils_src/doc/conf.py b/splunk_eventgen/lib/logutils_src/doc/conf.py index 2f89fe54..17a8499c 100644 --- a/splunk_eventgen/lib/logutils_src/doc/conf.py +++ b/splunk_eventgen/lib/logutils_src/doc/conf.py @@ -14,7 +14,8 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys, os +import os +import sys # If your extensions (or modules documented by autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -35,7 +36,7 @@ source_suffix = '.rst' # The encoding of source files. -#source_encoding = 'utf-8' +# source_encoding = 'utf-8' # The master toctree document. master_doc = 'index' @@ -55,39 +56,38 @@ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of documents that shouldn't be included in the build. -#unused_docs = [] +# unused_docs = [] # List of directories, relative to source directory, that shouldn't be searched # for source files. exclude_trees = ['_build'] # The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' - # Options for HTML output # ----------------------- @@ -98,19 +98,19 @@ # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +# html_title = None # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +# html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +# html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, @@ -119,38 +119,38 @@ # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_use_modindex = True +# html_use_modindex = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, the reST sources are included in the HTML build as _sources/. -#html_copy_source = True +# html_copy_source = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = '' +# html_file_suffix = '' html_theme = os.environ.get('DOCS_THEME', 'alabaster') html_theme_path = ['themes'] @@ -158,42 +158,37 @@ # Output file base name for HTML help builder. htmlhelp_basename = 'Logutilsdoc' - # Options for LaTeX output # ------------------------ # The paper size ('letter' or 'a4'). -#latex_paper_size = 'letter' +# latex_paper_size = 'letter' # The font size ('10pt', '11pt' or '12pt'). -#latex_font_size = '10pt' +# latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, document class [howto/manual]). latex_documents = [ - ('index', 'Logutils.tex', ur'Logutils Documentation', - ur'Vinay Sajip', 'manual'), -] + ('index', 'Logutils.tex', ur'Logutils Documentation', ur'Vinay Sajip', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # Additional stuff for the LaTeX preamble. -#latex_preamble = '' +# latex_preamble = '' # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_use_modindex = True - +# latex_use_modindex = True # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { - 'http://docs.python.org/dev': None, -} + 'http://docs.python.org/dev': None, } diff --git a/splunk_eventgen/lib/logutils_src/logutils/__init__.py b/splunk_eventgen/lib/logutils_src/logutils/__init__.py index 963c8df4..2811a987 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/__init__.py +++ b/splunk_eventgen/lib/logutils_src/logutils/__init__.py @@ -15,6 +15,7 @@ __version__ = '0.3.4.1' + class NullHandler(logging.Handler): """ This handler does nothing. It's intended to be used to avoid the @@ -48,6 +49,7 @@ def createLock(self): """ self.lock = None + class PercentStyle(object): default_format = '%(message)s' @@ -62,6 +64,7 @@ def usesTime(self): def format(self, record): return self._fmt % record.__dict__ + class StrFormatStyle(PercentStyle): default_format = '{message}' asctime_format = '{asctime}' @@ -85,11 +88,9 @@ def usesTime(self): def format(self, record): return self._tpl.substitute(**record.__dict__) -_STYLES = { - '%': PercentStyle, - '{': StrFormatStyle, - '$': StringTemplateStyle -} + +_STYLES = {'%': PercentStyle, '{': StrFormatStyle, '$': StringTemplateStyle} + class Formatter(logging.Formatter): """ @@ -97,6 +98,7 @@ class Formatter(logging.Formatter): 3.2 Formatter behaviour with respect to allowing %-, {} or $- formatting. """ + def __init__(self, fmt=None, datefmt=None, style='%'): """ Initialize the formatter with specified format strings. @@ -110,8 +112,7 @@ def __init__(self, fmt=None, datefmt=None, style='%'): :class:`string.Template` formatting in your format string. """ if style not in _STYLES: - raise ValueError('Style must be one of: %s' % ','.join( - _STYLES.keys())) + raise ValueError('Style must be one of: %s' % ','.join(_STYLES.keys())) self._style = _STYLES[style](fmt) self._fmt = self._style._fmt self.datefmt = datefmt @@ -166,6 +167,7 @@ def __str__(self): self.str = self.fmt.format(*self.args, **self.kwargs) return self.str + class DollarMessage(object): def __init__(self, fmt, **kwargs): self.fmt = fmt diff --git a/splunk_eventgen/lib/logutils_src/logutils/adapter.py b/splunk_eventgen/lib/logutils_src/logutils/adapter.py index 92706c0f..220c188d 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/adapter.py +++ b/splunk_eventgen/lib/logutils_src/logutils/adapter.py @@ -2,8 +2,10 @@ # Copyright (C) 2010-2017 Vinay Sajip. See LICENSE.txt for details. # import logging + import logutils + class LoggerAdapter(object): """ An adapter for loggers which makes it easier to specify contextual diff --git a/splunk_eventgen/lib/logutils_src/logutils/colorize.py b/splunk_eventgen/lib/logutils_src/logutils/colorize.py index f95c0366..8f375e5d 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/colorize.py +++ b/splunk_eventgen/lib/logutils_src/logutils/colorize.py @@ -10,6 +10,7 @@ except NameError: unicode = None + class ColorizingStreamHandler(logging.StreamHandler): """ A stream handler which supports colorizing of console streams @@ -28,18 +29,16 @@ class ColorizingStreamHandler(logging.StreamHandler): 'blue': 4, 'magenta': 5, 'cyan': 6, - 'white': 7, - } + 'white': 7, } - #levels to (background, foreground, bold/intense) + # levels to (background, foreground, bold/intense) if os.name == 'nt': level_map = { logging.DEBUG: (None, 'blue', True), logging.INFO: (None, 'white', False), logging.WARNING: (None, 'yellow', True), logging.ERROR: (None, 'red', True), - logging.CRITICAL: ('red', 'white', True), - } + logging.CRITICAL: ('red', 'white', True), } else: "Maps levels to colour/intensity settings." level_map = { @@ -47,8 +46,7 @@ class ColorizingStreamHandler(logging.StreamHandler): logging.INFO: (None, 'black', False), logging.WARNING: (None, 'yellow', False), logging.ERROR: (None, 'red', False), - logging.CRITICAL: ('red', 'white', True), - } + logging.CRITICAL: ('red', 'white', True), } csi = '\x1b[' reset = '\x1b[0m' @@ -78,6 +76,7 @@ def emit(self, record): self.handleError(record) if os.name != 'nt': + def output_colorized(self, message): """ Output a colorized message. @@ -98,14 +97,14 @@ def output_colorized(self, message): ansi_esc = re.compile(r'\x1b\[((?:\d+)(?:;(?:\d+))*)m') nt_color_map = { - 0: 0x00, # black - 1: 0x04, # red - 2: 0x02, # green - 3: 0x06, # yellow - 4: 0x01, # blue - 5: 0x05, # magenta - 6: 0x03, # cyan - 7: 0x07, # white + 0: 0x00, # black + 1: 0x04, # red + 2: 0x02, # green + 3: 0x06, # yellow + 4: 0x01, # blue + 5: 0x05, # magenta + 6: 0x03, # cyan + 7: 0x07, # white } def output_colorized(self, message): @@ -128,7 +127,7 @@ def output_colorized(self, message): fd = getattr(self.stream, 'fileno', None) if fd is not None: fd = fd() - if fd in (1, 2): # stdout or stderr + if fd in (1, 2): # stdout or stderr h = ctypes.windll.kernel32.GetStdHandle(-10 - fd) while parts: text = parts.pop(0) @@ -145,11 +144,11 @@ def output_colorized(self, message): elif 30 <= p <= 37: color |= self.nt_color_map[p - 30] elif p == 1: - color |= 0x08 # foreground intensity on - elif p == 0: # reset to default color + color |= 0x08 # foreground intensity on + elif p == 0: # reset to default color color = 0x07 else: - pass # error condition ignored + pass # error condition ignored ctypes.windll.kernel32.SetConsoleTextAttribute(h, color) def colorize(self, message, record): @@ -173,8 +172,7 @@ def colorize(self, message, record): if bold: params.append('1') if params: - message = ''.join((self.csi, ';'.join(params), - 'm', message, self.reset)) + message = ''.join((self.csi, ';'.join(params), 'm', message, self.reset)) return message def format(self, record): diff --git a/splunk_eventgen/lib/logutils_src/logutils/dictconfig.py b/splunk_eventgen/lib/logutils_src/logutils/dictconfig.py index c774552e..26b8886e 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/dictconfig.py +++ b/splunk_eventgen/lib/logutils_src/logutils/dictconfig.py @@ -4,7 +4,6 @@ import logging.handlers import re import sys -import types try: basestring @@ -17,18 +16,21 @@ IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) + def valid_ident(s): m = IDENTIFIER.match(s) if not m: raise ValueError('Not a valid Python identifier: %r' % s) return True + # # This function is defined in logging only in recent versions of Python # try: from logging import _checkLevel except ImportError: + def _checkLevel(level): if isinstance(level, int): rv = level @@ -41,10 +43,10 @@ def _checkLevel(level): raise ValueError('Unknown level: %r' % level) rv = levelnames[level] else: - raise TypeError('Level not an integer or a ' - 'valid string: %r' % level) + raise TypeError('Level not an integer or a ' 'valid string: %r' % level) return rv + # The ConvertingXXX classes are wrappers around standard Python containers, # and they serve to convert any suitable values in the container. The # conversion converts base dicts, lists and tuples to their wrapped @@ -54,17 +56,17 @@ def _checkLevel(level): # Each wrapper should have a configurator attribute holding the actual # configurator to use for conversion. + class ConvertingDict(dict): """A converting dictionary wrapper.""" def __getitem__(self, key): value = dict.__getitem__(self, key) result = self.configurator.convert(value) - #If the converted value is different, save for next time + # If the converted value is different, save for next time if value is not result: self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result @@ -72,11 +74,10 @@ def __getitem__(self, key): def get(self, key, default=None): value = dict.get(self, key, default) result = self.configurator.convert(value) - #If the converted value is different, save for next time + # If the converted value is different, save for next time if value is not result: self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result @@ -85,22 +86,22 @@ def pop(self, key, default=None): value = dict.pop(self, key, default) result = self.configurator.convert(value) if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result + class ConvertingList(list): """A converting list wrapper.""" + def __getitem__(self, key): value = list.__getitem__(self, key) result = self.configurator.convert(value) - #If the converted value is different, save for next time + # If the converted value is different, save for next time if value is not result: self[key] = result - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result @@ -109,23 +110,24 @@ def pop(self, idx=-1): value = list.pop(self, idx) result = self.configurator.convert(value) if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self return result + class ConvertingTuple(tuple): """A converting tuple wrapper.""" + def __getitem__(self, key): value = tuple.__getitem__(self, key) result = self.configurator.convert(value) if value is not result: - if type(result) in (ConvertingDict, ConvertingList, - ConvertingTuple): + if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result + class BaseConfigurator(object): """ The configurator base class which defines some useful defaults. @@ -139,9 +141,8 @@ class BaseConfigurator(object): DIGIT_PATTERN = re.compile(r'^\d+$') value_converters = { - 'ext' : 'ext_convert', - 'cfg' : 'cfg_convert', - } + 'ext': 'ext_convert', + 'cfg': 'cfg_convert', } # We might want to use a different one, e.g. importlib importer = __import__ @@ -191,7 +192,6 @@ def cfg_convert(self, value): else: rest = rest[m.end():] d = self.config[m.groups()[0]] - #print d, rest while rest: m = self.DOT_PATTERN.match(rest) if m: @@ -204,16 +204,15 @@ def cfg_convert(self, value): d = d[idx] else: try: - n = int(idx) # try as number first (most likely) + n = int(idx) # try as number first (most likely) d = d[n] except TypeError: d = d[idx] if m: rest = rest[m.end():] else: - raise ValueError('Unable to convert ' - '%r at %r' % (value, rest)) - #rest should be empty + raise ValueError('Unable to convert ' '%r at %r' % (value, rest)) + # rest should be empty return d def convert(self, value): @@ -228,8 +227,7 @@ def convert(self, value): elif not isinstance(value, ConvertingList) and isinstance(value, list): value = ConvertingList(value) value.configurator = self - elif not isinstance(value, ConvertingTuple) and\ - isinstance(value, tuple): + elif not isinstance(value, ConvertingTuple) and isinstance(value, tuple): value = ConvertingTuple(value) value.configurator = self elif isinstance(value, basestring): @@ -264,6 +262,7 @@ def as_tuple(self, value): value = tuple(value) return value + def named_handlers_supported(): major, minor = sys.version_info[:2] if major == 2: @@ -274,6 +273,7 @@ def named_handlers_supported(): result = (major > 3) return result + class DictConfigurator(BaseConfigurator): """ Configure logging using a dictionary-like object to describe the @@ -299,8 +299,7 @@ def configure(self): if named_handlers_supported(): for name in handlers: if name not in logging._handlers: - raise ValueError('No handler found with ' - 'name %r' % name) + raise ValueError('No handler found with ' 'name %r' % name) else: try: handler = logging._handlers[name] @@ -310,24 +309,21 @@ def configure(self): handler.setLevel(_checkLevel(level)) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure handler ' - '%r: %s' % (name, e)) + raise ValueError('Unable to configure handler ' '%r: %s' % (name, e)) loggers = config.get('loggers', EMPTY_DICT) for name in loggers: try: self.configure_logger(name, loggers[name], True) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure logger ' - '%r: %s' % (name, e)) + raise ValueError('Unable to configure logger ' '%r: %s' % (name, e)) root = config.get('root', None) if root: try: self.configure_root(root, True) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure root ' - 'logger: %s' % e) + raise ValueError('Unable to configure root ' 'logger: %s' % e) else: disable_existing = config.pop('disable_existing_loggers', True) @@ -338,12 +334,10 @@ def configure(self): formatters = config.get('formatters', EMPTY_DICT) for name in formatters: try: - formatters[name] = self.configure_formatter( - formatters[name]) + formatters[name] = self.configure_formatter(formatters[name]) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure ' - 'formatter %r: %s' % (name, e)) + raise ValueError('Unable to configure ' 'formatter %r: %s' % (name, e)) # Next, do filters - they don't refer to anything else, either filters = config.get('filters', EMPTY_DICT) for name in filters: @@ -351,8 +345,7 @@ def configure(self): filters[name] = self.configure_filter(filters[name]) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure ' - 'filter %r: %s' % (name, e)) + raise ValueError('Unable to configure ' 'filter %r: %s' % (name, e)) # Next, do handlers - they refer to formatters and filters # As handlers can refer to other handlers, sort the keys @@ -365,28 +358,20 @@ def configure(self): handlers[name] = handler except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure handler ' - '%r: %s' % (name, e)) + raise ValueError('Unable to configure handler ' '%r: %s' % (name, e)) # Next, do loggers - they refer to handlers and filters - #we don't want to lose the existing loggers, - #since other threads may have pointers to them. - #existing is set to contain all existing loggers, - #and as we go through the new configuration we - #remove any which are configured. At the end, - #what's left in existing is the set of loggers - #which were in the previous configuration but - #which are not in the new configuration. + # We don't want to lose the existing loggers, since other threads may have pointers to them. + # Existing is set to contain all existing loggers, and as we go through the new configuration we + # remove any which are configured. At the end, what's left in existing is the set of loggers + # which were in the previous configuration but which are not in the new configuration. root = logging.root existing = sorted(root.manager.loggerDict.keys()) - #The list needs to be sorted so that we can - #avoid disabling child loggers of explicitly - #named loggers. With a sorted list it is easier - #to find the child loggers. - #We'll keep the list of existing loggers - #which are children of named loggers here... + # The list needs to be sorted so that we can avoid disabling child loggers of explicitly named loggers. + # With a sorted list it is easier to find the child loggers. We'll keep the list of existing loggers + # which are children of named loggers here... child_loggers = [] - #now set up the new ones... + # now set up the new ones... loggers = config.get('loggers', EMPTY_DICT) for name in loggers: if name in existing: @@ -394,7 +379,7 @@ def configure(self): prefixed = name + "." pflen = len(prefixed) num_existing = len(existing) - i = i + 1 # look at the entry after name + i = i + 1 # look at the entry after name while (i < num_existing) and\ (existing[i][:pflen] == prefixed): child_loggers.append(existing[i]) @@ -404,14 +389,11 @@ def configure(self): self.configure_logger(name, loggers[name]) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure logger ' - '%r: %s' % (name, e)) - - #Disable any old loggers. There's no point deleting - #them as other threads may continue to hold references - #and by disabling them, you stop them doing any logging. - #However, don't disable children of named loggers, as that's - #probably not what was intended by the user. + raise ValueError('Unable to configure logger ' '%r: %s' % (name, e)) + + # Disable any old loggers. There's no point deleting them as other threads may continue to hold + # references and by disabling them, you stop them doing any logging. However, don't disable children of + # named loggers, as that's probably not what was intended by the user. for log in existing: logger = root.manager.loggerDict[log] if log in child_loggers: @@ -428,25 +410,22 @@ def configure(self): self.configure_root(root) except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to configure root ' - 'logger: %s' % e) + raise ValueError('Unable to configure root ' 'logger: %s' % e) finally: logging._releaseLock() def configure_formatter(self, config): """Configure a formatter from a dictionary.""" if '()' in config: - factory = config['()'] # for use in exception handler + factory = config['()'] # for use in exception handler try: result = self.configure_custom(config) except TypeError: te = sys.exc_info()[1] if "'format'" not in str(te): raise - #Name of parameter changed from fmt to format. - #Retry with old name. - #This is so that code can be used with older Python versions - #(e.g. by Django) + # Name of parameter changed from fmt to format. Retry with old name. This is so that code can be used + # with older Python versions (e.g. by Django) config['fmt'] = config.pop('format') config['()'] = factory result = self.configure_custom(config) @@ -482,8 +461,7 @@ def configure_handler(self, config): formatter = self.config['formatters'][formatter] except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to set formatter ' - '%r: %s' % (formatter, e)) + raise ValueError('Unable to set formatter ' '%r: %s' % (formatter, e)) level = config.pop('level', None) filters = config.pop('filters', None) if '()' in config: @@ -493,20 +471,16 @@ def configure_handler(self, config): factory = c else: klass = self.resolve(config.pop('class')) - #Special case for handler which refers to another handler - if issubclass(klass, logging.handlers.MemoryHandler) and\ - 'target' in config: + # Special case for handler which refers to another handler + if issubclass(klass, logging.handlers.MemoryHandler) and 'target' in config: try: config['target'] = self.config['handlers'][config['target']] except StandardError: e = sys.exc_info()[1] - raise ValueError('Unable to set target handler ' - '%r: %s' % (config['target'], e)) - elif issubclass(klass, logging.handlers.SMTPHandler) and\ - 'mailhost' in config: + raise ValueError('Unable to set target handler ' '%r: %s' % (config['target'], e)) + elif issubclass(klass, logging.handlers.SMTPHandler) and 'mailhost' in config: config['mailhost'] = self.as_tuple(config['mailhost']) - elif issubclass(klass, logging.handlers.SysLogHandler) and\ - 'address' in config: + elif issubclass(klass, logging.handlers.SysLogHandler) and 'address' in config: config['address'] = self.as_tuple(config['address']) factory = klass kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) @@ -516,10 +490,8 @@ def configure_handler(self, config): te = sys.exc_info()[1] if "'stream'" not in str(te): raise - #The argument name changed from strm to stream - #Retry with old name. - #This is so that code can be used with older Python versions - #(e.g. by Django) + # The argument name changed from strm to stream, so we retry with the old name. This is so that code can be + # used with older Python versions (e.g. by Django) kwargs['strm'] = kwargs.pop('stream') result = factory(**kwargs) if formatter: @@ -547,7 +519,7 @@ def common_logger_config(self, logger, config, incremental=False): if level is not None: logger.setLevel(_checkLevel(level)) if not incremental: - #Remove any existing handlers + # Remove any existing handlers for h in logger.handlers[:]: logger.removeHandler(h) handlers = config.get('handlers', None) @@ -570,8 +542,10 @@ def configure_root(self, config, incremental=False): root = logging.getLogger() self.common_logger_config(root, config, incremental) + dictConfigClass = DictConfigurator + def dictConfig(config): """Configure logging using a dictionary.""" dictConfigClass(config).configure() diff --git a/splunk_eventgen/lib/logutils_src/logutils/http.py b/splunk_eventgen/lib/logutils_src/logutils/http.py index d1fe99d3..2d59dc88 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/http.py +++ b/splunk_eventgen/lib/logutils_src/logutils/http.py @@ -3,6 +3,7 @@ # import logging + class HTTPHandler(logging.Handler): """ A class which sends records to a Web server, using either GET or @@ -18,6 +19,7 @@ class HTTPHandler(logging.Handler): to avoid sending usernames and passwords in cleartext over the wire. """ + def __init__(self, host, url, method="GET", secure=False, credentials=None): """ Initialize an instance. @@ -51,7 +53,8 @@ def emit(self, record): :param record: The record to be emitted. """ try: - import http.client, urllib.parse + import http.client + import urllib.parse host = self.host if self.secure: h = http.client.HTTPSConnection(host) @@ -73,8 +76,7 @@ def emit(self, record): host = host[:i] h.putheader("Host", host) if self.method == "POST": - h.putheader("Content-type", - "application/x-www-form-urlencoded") + h.putheader("Content-type", "application/x-www-form-urlencoded") h.putheader("Content-length", str(len(data))) if self.credentials: import base64 @@ -82,7 +84,7 @@ def emit(self, record): s = 'Basic ' + base64.b64encode(s).strip() h.putheader('Authorization', s) h.endheaders(data if self.method == "POST" else None) - h.getresponse() #can't do anything with the result + h.getresponse() # can't do anything with the result except (KeyboardInterrupt, SystemExit): raise except: diff --git a/splunk_eventgen/lib/logutils_src/logutils/queue.py b/splunk_eventgen/lib/logutils_src/logutils/queue.py index fea91d8d..0a7d22a2 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/queue.py +++ b/splunk_eventgen/lib/logutils_src/logutils/queue.py @@ -20,11 +20,13 @@ version here is for use with earlier Python versions. """ import logging +import threading + try: import Queue as queue except ImportError: import queue -import threading + class QueueHandler(logging.Handler): """ @@ -97,6 +99,7 @@ def emit(self, record): except: self.handleError(record) + class QueueListener(object): """ This class implements an internal threaded listener which watches for @@ -144,7 +147,7 @@ def start(self): t.setDaemon(True) t.start() - def prepare(self , record): + def prepare(self, record): """ Prepare a record for handling. diff --git a/splunk_eventgen/lib/logutils_src/logutils/redis.py b/splunk_eventgen/lib/logutils_src/logutils/redis.py index a8ead302..46641bf2 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/redis.py +++ b/splunk_eventgen/lib/logutils_src/logutils/redis.py @@ -6,11 +6,13 @@ """ from logutils.queue import QueueHandler, QueueListener + try: import cPickle as pickle except ImportError: import pickle + class RedisQueueHandler(QueueHandler): """ A QueueHandler implementation which pushes pickled @@ -23,6 +25,7 @@ class RedisQueueHandler(QueueHandler): :param limit: If specified, the queue is restricted to have only this many elements. """ + def __init__(self, key='python.logging', redis=None, limit=0): if redis is None: from redis import Redis @@ -38,6 +41,7 @@ def enqueue(self, record): if self.limit: self.queue.ltrim(self.key, -self.limit, -1) + class RedisQueueListener(QueueListener): """ A QueueListener implementation which fetches pickled @@ -48,6 +52,7 @@ class RedisQueueListener(QueueListener): :param redis: If specified, this instance is used to communicate with a Redis instance. """ + def __init__(self, *handlers, **kwargs): redis = kwargs.get('redis') if redis is None: diff --git a/splunk_eventgen/lib/logutils_src/logutils/testing.py b/splunk_eventgen/lib/logutils_src/logutils/testing.py index 3c612179..bb8ac3df 100644 --- a/splunk_eventgen/lib/logutils_src/logutils/testing.py +++ b/splunk_eventgen/lib/logutils_src/logutils/testing.py @@ -1,9 +1,9 @@ # # Copyright (C) 2010-2017 Vinay Sajip. See LICENSE.txt for details. # -import logging from logging.handlers import BufferingHandler + class TestHandler(BufferingHandler): """ This handler collects records in a buffer for later inspection by @@ -12,6 +12,7 @@ class TestHandler(BufferingHandler): :param matcher: The :class:`~logutils.testing.Matcher` instance to use for matching. """ + def __init__(self, matcher): # BufferingHandler takes a "capacity" argument # so as to know when to flush. As we're overriding @@ -64,8 +65,8 @@ def matches(self, **kwargs): if self.matcher.matches(d, **kwargs): result = True break - #if not result: - # print('*** matcher failed completely on %d records' % len(self.buffer)) + # if not result: + # print('*** matcher failed completely on %d records' % len(self.buffer)) return result def matchall(self, kwarglist): @@ -96,6 +97,7 @@ def count(self): """ return len(self.buffer) + class Matcher(object): """ This utility class matches a stored dictionary of @@ -129,7 +131,7 @@ def matches(self, d, **kwargs): v = kwargs[k] dv = d.get(k) if not self.match_value(k, dv, v): - #print('*** matcher failed: %s, %r, %r' % (k, dv, v)) + # print('*** matcher failed: %s, %r, %r' % (k, dv, v)) result = False break return result @@ -150,6 +152,6 @@ def match_value(self, k, dv, v): result = (v == dv) else: result = dv.find(v) >= 0 - #if not result: + # if not result: # print('*** matcher failed on %s: %r vs. %r' % (k, dv, v)) return result diff --git a/splunk_eventgen/lib/logutils_src/logutils_src_setup.py b/splunk_eventgen/lib/logutils_src/logutils_src_setup.py index f0891d65..8eb90944 100644 --- a/splunk_eventgen/lib/logutils_src/logutils_src_setup.py +++ b/splunk_eventgen/lib/logutils_src/logutils_src_setup.py @@ -1,9 +1,10 @@ # -*- coding: utf-8 -*- import distutils.core -import logutils -from os.path import join, dirname, abspath import re +from os.path import dirname, join + +import logutils def description(): @@ -16,6 +17,7 @@ def description(): avail, = re.findall(regexp, readme, re.DOTALL) return reqts + avail + class TestCommand(distutils.core.Command): user_options = [] @@ -37,6 +39,7 @@ def initialize_options(self): def finalize_options(self): pass + distutils.core.setup( name='logutils', version=logutils.__version__, @@ -44,7 +47,7 @@ def finalize_options(self): author_email='vinay_sajip@red-dove.com', url='http://code.google.com/p/logutils/', description='Logging utilities', - long_description = description(), + long_description=description(), license='Copyright (C) 2010-2017 by Vinay Sajip. All Rights Reserved. See LICENSE.txt for license.', classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -55,11 +58,8 @@ def finalize_options(self): 'Programming Language :: Python', "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", - 'Topic :: Software Development', - ], + 'Topic :: Software Development', ], packages=['logutils'], cmdclass={ - 'test': TestCommand, - }, - + 'test': TestCommand, }, ) diff --git a/splunk_eventgen/lib/logutils_src/tests/logutil_tests.py b/splunk_eventgen/lib/logutils_src/tests/logutil_tests.py deleted file mode 100644 index e86d1062..00000000 --- a/splunk_eventgen/lib/logutils_src/tests/logutil_tests.py +++ /dev/null @@ -1,22 +0,0 @@ -# -# Copyright (C) 2008-2017 Vinay Sajip. See LICENSE.txt for details. -# -import sys -from test_testing import LoggingTest -from test_dictconfig import ConfigDictTest -from test_queue import QueueTest -from test_formatter import FormatterTest -from test_messages import MessageTest -from test_colorize import ColorizeTest -try: - from test_redis import RedisQueueTest -except ImportError: - pass - -# The adapter won't work in < 2.5 because the "extra" parameter used by it -# only appeared in 2.5 :-( -if sys.version_info[:2] >= (2, 5): - from test_adapter import AdapterTest -else: - print("LoggerAdapter won't work in Python < 2.5, so its tests are being " - "skipped.") diff --git a/splunk_eventgen/lib/logutils_src/tests/mytest.py b/splunk_eventgen/lib/logutils_src/tests/mytest.py index a5f40d32..ac9cbcc2 100644 --- a/splunk_eventgen/lib/logutils_src/tests/mytest.py +++ b/splunk_eventgen/lib/logutils_src/tests/mytest.py @@ -1,6 +1,7 @@ from __future__ import absolute_import -from logutils.testing import TestHandler, Matcher +from logutils.testing import Matcher, TestHandler + class MyTestHandler(TestHandler): def __init__(self): diff --git a/splunk_eventgen/lib/logutils_src/tests/test_adapter.py b/splunk_eventgen/lib/logutils_src/tests/test_adapter.py index d29bd106..a827f95d 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_adapter.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_adapter.py @@ -2,23 +2,25 @@ # Copyright (C) 2008-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -from logutils.adapter import LoggerAdapter -from logutils.testing import TestHandler, Matcher import unittest +from logutils.adapter import LoggerAdapter +from logutils.testing import Matcher, TestHandler + + class AdapterTest(unittest.TestCase): def setUp(self): self.handler = h = TestHandler(Matcher()) - self.logger = l = logging.getLogger() - l.addHandler(h) - self.adapter = LoggerAdapter(l, {}) + self.logger = temp_logger = logging.getLogger() + temp_logger.addHandler(h) + self.adapter = LoggerAdapter(temp_logger, {}) def tearDown(self): self.logger.removeHandler(self.handler) self.handler.close() def test_simple(self): - "Simple test of logging test harness." + """Simple test of logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.adapter.debug("This won't show up.") @@ -30,20 +32,20 @@ def test_simple(self): self.assertFalse(h.matches(levelno=logging.INFO)) def test_partial(self): - "Test of partial matching in logging test harness." + """Test of partial matching in logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.adapter.debug("This won't show up.") self.adapter.info("Neither will this.") self.adapter.warning("But this will.") h = self.handler - self.assertTrue(h.matches(msg="ut th")) # from "But this will" - self.assertTrue(h.matches(message="ut th")) # from "But this will" + self.assertTrue(h.matches(msg="ut th")) # from "But this will" + self.assertTrue(h.matches(message="ut th")) # from "But this will" self.assertFalse(h.matches(message="either")) self.assertFalse(h.matches(message="won't")) def test_multiple(self): - "Test of matching multiple values in logging test harness." + """Test of matching multiple values in logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.adapter.debug("This won't show up.") @@ -51,19 +53,18 @@ def test_multiple(self): self.adapter.warning("But this will.") self.adapter.error("And so will this.") h = self.handler - self.assertTrue(h.matches(levelno=logging.WARNING, - message='ut th')) - self.assertTrue(h.matches(levelno=logging.ERROR, - message='nd so w')) + self.assertTrue(h.matches(levelno=logging.WARNING, message='ut th')) + self.assertTrue(h.matches(levelno=logging.ERROR, message='nd so w')) self.assertFalse(h.matches(levelno=logging.INFO)) def test_hashandlers(self): - "Test of hasHandlers() functionality." + """Test of hasHandlers() functionality.""" self.assertTrue(self.adapter.hasHandlers()) self.logger.removeHandler(self.handler) self.assertFalse(self.adapter.hasHandlers()) self.logger.addHandler(self.handler) self.assertTrue(self.adapter.hasHandlers()) + if __name__ == '__main__': unittest.main() diff --git a/splunk_eventgen/lib/logutils_src/tests/test_colorize.py b/splunk_eventgen/lib/logutils_src/tests/test_colorize.py index 022b6318..18d1b263 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_colorize.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_colorize.py @@ -2,18 +2,18 @@ # Copyright (C) 2012-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -import logutils.colorize -import os import sys import unittest +import logutils.colorize + if sys.version_info[0] < 3: u = lambda o: unicode(o, 'unicode_escape') else: u = lambda o: o -class ColorizeTest(unittest.TestCase): +class ColorizeTest(unittest.TestCase): def test_colorize(self): logger = logging.getLogger() handler = logutils.colorize.ColorizingStreamHandler() diff --git a/splunk_eventgen/lib/logutils_src/tests/test_dictconfig.py b/splunk_eventgen/lib/logutils_src/tests/test_dictconfig.py index 3aee9841..950bcc6c 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_dictconfig.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_dictconfig.py @@ -2,41 +2,47 @@ # Copyright 2009-2017 by Vinay Sajip. See LICENSE.txt for details. # import logging +import unittest + from logutils.adapter import LoggerAdapter from logutils.dictconfig import dictConfig, named_handlers_supported -from logutils.testing import TestHandler, Matcher -import sys -import unittest +from logutils.testing import Matcher, TestHandler try: StandardError except NameError: StandardError = Exception + class ExceptionFormatter(logging.Formatter): """A special exception formatter.""" + def formatException(self, ei): return "Got a [%s]" % ei[0].__name__ + def formatFunc(format, datefmt=None): return logging.Formatter(format, datefmt) + def testHandler(): return TestHandler(Matcher()) + def handlerFunc(): return logging.StreamHandler() + class CustomHandler(logging.StreamHandler): pass -class ConfigDictTest(unittest.TestCase): +class ConfigDictTest(unittest.TestCase): """Reading logging config from a dictionary.""" def setUp(self): - self.logger = l = logging.getLogger() - self.adapter = LoggerAdapter(l, {}) + self.logger = temp_logger = logging.getLogger() + self.adapter = LoggerAdapter(temp_logger, {}) logger_dict = logging.getLogger().manager.loggerDict logging._acquireLock() @@ -55,7 +61,6 @@ def setUp(self): self.root_logger = logging.getLogger("") self.original_logging_level = self.root_logger.getEffectiveLevel() - def tearDown(self): self.root_logger.setLevel(self.original_logging_level) logging._acquireLock() @@ -89,429 +94,287 @@ def next_message(self): config0 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'root' : { - 'level' : 'WARNING', - 'handlers' : ['hand1'], - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'root': { + 'level': 'WARNING', + 'handlers': ['hand1'], }, } # config1 adds a little to the standard configuration. config1 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } # config2 has a subtle configuration error that should be reported config2 = { 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - 'class' : 'logging.StreamHandler', - 'formatter' : 'form1', - 'level' : 'NOTSET', - 'stream' : 'ext://sys.stdbout', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } - - #As config1 but with a misspelt level on a handler + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': { + 'hand1': { + 'class': 'logging.StreamHandler', + 'formatter': 'form1', + 'level': 'NOTSET', + 'stream': 'ext://sys.stdbout', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } + + # As config1 but with a misspelt level on a handler config2a = { 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - 'class' : 'logging.StreamHandler', - 'formatter' : 'form1', - 'level' : 'NTOSET', - 'stream' : 'ext://sys.stdout', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } - - - #As config1 but with a misspelt level on a logger + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': { + 'hand1': { + 'class': 'logging.StreamHandler', + 'formatter': 'form1', + 'level': 'NTOSET', + 'stream': 'ext://sys.stdout', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } + + # As config1 but with a misspelt level on a logger config2b = { 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - 'class' : 'logging.StreamHandler', - 'formatter' : 'form1', - 'level' : 'NOTSET', - 'stream' : 'ext://sys.stdout', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WRANING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': { + 'hand1': { + 'class': 'logging.StreamHandler', + 'formatter': 'form1', + 'level': 'NOTSET', + 'stream': 'ext://sys.stdout', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WRANING', }, } # config3 has a less subtle configuration error config3 = { 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - 'class' : 'logging.StreamHandler', - 'formatter' : 'misspelled_name', - 'level' : 'NOTSET', - 'stream' : 'ext://sys.stdout', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': { + 'hand1': { + 'class': 'logging.StreamHandler', + 'formatter': 'misspelled_name', + 'level': 'NOTSET', + 'stream': 'ext://sys.stdout', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } # config4 specifies a custom formatter class to be loaded config4 = { 'version': 1, 'formatters': { - 'form1' : { - '()' : __name__ + '.ExceptionFormatter', - 'format' : '%(levelname)s:%(name)s:%(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'root' : { - 'level' : 'NOTSET', - 'handlers' : ['hand1'], - }, - } + 'form1': { + '()': __name__ + '.ExceptionFormatter', + 'format': '%(levelname)s:%(name)s:%(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'root': { + 'level': 'NOTSET', + 'handlers': ['hand1'], }, } # As config4 but using an actual callable rather than a string config4a = { 'version': 1, 'formatters': { - 'form1' : { - '()' : ExceptionFormatter, - 'format' : '%(levelname)s:%(name)s:%(message)s', - }, - 'form2' : { - '()' : __name__ + '.formatFunc', - 'format' : '%(levelname)s:%(name)s:%(message)s', - }, - 'form3' : { - '()' : formatFunc, - 'format' : '%(levelname)s:%(name)s:%(message)s', - }, - }, - 'handlers' : { - 'hand1' : { + 'form1': { + '()': ExceptionFormatter, + 'format': '%(levelname)s:%(name)s:%(message)s', }, + 'form2': { + '()': __name__ + '.formatFunc', + 'format': '%(levelname)s:%(name)s:%(message)s', }, + 'form3': { + '()': formatFunc, + 'format': '%(levelname)s:%(name)s:%(message)s', }, }, + 'handlers': { + 'hand1': { '()': testHandler, - 'formatter': 'form1', - }, - 'hand2' : { - '()' : handlerFunc, - }, - }, - 'root' : { - 'level' : 'NOTSET', - 'handlers' : ['hand1'], - }, - } + 'formatter': 'form1', }, + 'hand2': { + '()': handlerFunc, }, }, + 'root': { + 'level': 'NOTSET', + 'handlers': ['hand1'], }, } # config5 specifies a custom handler class to be loaded config5 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } # config6 specifies a custom handler class to be loaded # but has bad arguments config6 = { 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - 'class' : __name__ + '.CustomHandler', - 'formatter' : 'form1', - 'level' : 'NOTSET', - 'stream' : 'ext://sys.stdout', - '9' : 'invalid parameter name', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } - - #config 7 does not define compiler.parser but defines compiler.lexer - #so compiler.parser should be disabled after applying it + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': { + 'hand1': { + 'class': __name__ + '.CustomHandler', + 'formatter': 'form1', + 'level': 'NOTSET', + 'stream': 'ext://sys.stdout', + '9': 'invalid parameter name', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } + + # config 7 does not define compiler.parser but defines compiler.lexer + # so compiler.parser should be disabled after applying it config7 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'loggers' : { - 'compiler.lexer' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'loggers': { + 'compiler.lexer': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'WARNING', }, } config8 = { 'version': 1, - 'disable_existing_loggers' : False, + 'disable_existing_loggers': False, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'loggers' : { - 'compiler' : { - 'level' : 'DEBUG', - 'handlers' : ['hand1'], - }, - 'compiler.lexer' : { - }, - }, - 'root' : { - 'level' : 'WARNING', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'loggers': { + 'compiler': { + 'level': 'DEBUG', + 'handlers': ['hand1'], }, + 'compiler.lexer': {}, }, + 'root': { + 'level': 'WARNING', }, } config9 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - } - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'WARNING', - 'handlers' : ['hand1'], - }, - }, - 'root' : { - 'level' : 'NOTSET', - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', }}, + 'loggers': { + 'compiler.parser': { + 'level': 'WARNING', + 'handlers': ['hand1'], }, }, + 'root': { + 'level': 'NOTSET', }, } config9a = { 'version': 1, - 'incremental' : True, - 'handlers' : { - 'hand1' : { - 'level' : 'WARNING', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'INFO', - }, - }, - } + 'incremental': True, + 'handlers': { + 'hand1': { + 'level': 'WARNING', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'INFO', }, }, } config9b = { 'version': 1, - 'incremental' : True, - 'handlers' : { - 'hand1' : { - 'level' : 'INFO', - }, - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'INFO', - }, - }, - } - - #As config1 but with a filter added + 'incremental': True, + 'handlers': { + 'hand1': { + 'level': 'INFO', }, }, + 'loggers': { + 'compiler.parser': { + 'level': 'INFO', }, }, } + + # As config1 but with a filter added config10 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'filters' : { - 'filt1' : { - 'name' : 'compiler.parser', - }, - }, - 'handlers' : { - 'hand1' : { - '()': testHandler, - 'formatter': 'form1', - 'filters' : ['filt1'], - } - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'filters' : ['filt1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - 'handlers' : ['hand1'], - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'filters': { + 'filt1': { + 'name': 'compiler.parser', }, }, + 'handlers': {'hand1': { + '()': testHandler, + 'formatter': 'form1', + 'filters': ['filt1'], }}, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'filters': ['filt1'], }, }, + 'root': { + 'level': 'WARNING', + 'handlers': ['hand1'], }, } # As config10, but declaring a handler in a module using # absolute imports config11 = { 'version': 1, 'formatters': { - 'form1' : { - 'format' : '%(levelname)s ++ %(message)s', - }, - }, - 'filters' : { - 'filt1' : { - 'name' : 'compiler.parser', - }, - }, - 'handlers' : { - 'hand1' : { - '()': 'mytest.MyTestHandler', - 'formatter': 'form1', - 'filters' : ['filt1'], - } - }, - 'loggers' : { - 'compiler.parser' : { - 'level' : 'DEBUG', - 'filters' : ['filt1'], - }, - }, - 'root' : { - 'level' : 'WARNING', - 'handlers' : ['hand1'], - }, - } + 'form1': { + 'format': '%(levelname)s ++ %(message)s', }, }, + 'filters': { + 'filt1': { + 'name': 'compiler.parser', }, }, + 'handlers': {'hand1': { + '()': 'mytest.MyTestHandler', + 'formatter': 'form1', + 'filters': ['filt1'], }}, + 'loggers': { + 'compiler.parser': { + 'level': 'DEBUG', + 'filters': ['filt1'], }, }, + 'root': { + 'level': 'WARNING', + 'handlers': ['hand1'], }, } def apply_config(self, conf): dictConfig(conf) @@ -526,9 +389,7 @@ def test_config0_ok(self): logger.error(self.next_message()) h = logger.handlers[0] self.assertEqual(1, h.count) - self.assertTrue(h.matchall([ - dict(levelname='ERROR', message='2') - ])) + self.assertTrue(h.matchall([dict(levelname='ERROR', message='2')])) def test_config1_ok(self, config=config1): # A config defining a sub-parser as well. @@ -539,9 +400,8 @@ def test_config1_ok(self, config=config1): logger.error(self.next_message()) h = logger.handlers[0] self.assertTrue(h.matchall([ - dict(levelname='INFO', message='1'), - dict(levelname='ERROR', message='2'), - ])) + dict(levelname='INFO', message='1'), + dict(levelname='ERROR', message='2'), ])) def test_config2_failure(self): # A simple config which overrides the default settings. @@ -568,8 +428,7 @@ def test_config4_ok(self): raise RuntimeError() except RuntimeError: logging.exception("just testing") - self.assertEquals(h.formatted[0], - "ERROR:root:just testing\nGot a [RuntimeError]") + self.assertEquals(h.formatted[0], "ERROR:root:just testing\nGot a [RuntimeError]") def test_config4a_ok(self): # A config specifying a custom formatter class. @@ -580,8 +439,7 @@ def test_config4a_ok(self): raise RuntimeError() except RuntimeError: logging.exception("just testing") - self.assertEquals(h.formatted[0], - "ERROR:root:just testing\nGot a [RuntimeError]") + self.assertEquals(h.formatted[0], "ERROR:root:just testing\nGot a [RuntimeError]") def test_config5_ok(self): self.test_config1_ok(config=self.config5) @@ -597,9 +455,8 @@ def test_config7_ok(self): logger.error(self.next_message()) h = logger.handlers[0] self.assertTrue(h.matchall([ - dict(levelname='INFO', message='1'), - dict(levelname='ERROR', message='2'), - ])) + dict(levelname='INFO', message='1'), + dict(levelname='ERROR', message='2'), ])) self.apply_config(self.config7) logger = logging.getLogger("compiler.parser") self.assertTrue(logger.disabled) @@ -609,11 +466,10 @@ def test_config7_ok(self): logger.info(self.next_message()) logger.error(self.next_message()) self.assertTrue(h.matchall([ - dict(levelname='INFO', message='3'), - dict(levelname='ERROR', message='4'), - ])) + dict(levelname='INFO', message='3'), + dict(levelname='ERROR', message='4'), ])) - #Same as test_config_7_ok but don't disable old loggers. + # Same as test_config_7_ok but don't disable old loggers. def test_config_8_ok(self): self.apply_config(self.config1) logger = logging.getLogger("compiler.parser") @@ -622,9 +478,8 @@ def test_config_8_ok(self): logger.error(self.next_message()) h = logger.handlers[0] self.assertTrue(h.matchall([ - dict(levelname='INFO', message='1'), - dict(levelname='ERROR', message='2'), - ])) + dict(levelname='INFO', message='1'), + dict(levelname='ERROR', message='2'), ])) self.apply_config(self.config8) logger = logging.getLogger("compiler.parser") self.assertFalse(logger.disabled) @@ -637,22 +492,22 @@ def test_config_8_ok(self): logger.info(self.next_message()) logger.error(self.next_message()) h = toplogger.handlers[0] - self.assertTrue(h.matchall([ - dict(levelname='INFO', message='3'), - dict(levelname='ERROR', message='4'), - dict(levelname='INFO', message='5'), - dict(levelname='ERROR', message='6'), - ])) + self.assertTrue( + h.matchall([ + dict(levelname='INFO', message='3'), + dict(levelname='ERROR', message='4'), + dict(levelname='INFO', message='5'), + dict(levelname='ERROR', message='6'), ])) def test_config_9_ok(self): self.apply_config(self.config9) logger = logging.getLogger("compiler.parser") - #Nothing will be output since both handler and logger are set to WARNING + # Nothing will be output since both handler and logger are set to WARNING logger.info(self.next_message()) h = logger.handlers[0] self.assertEqual(0, h.count) self.apply_config(self.config9a) - #Nothing will be output since both handler is still set to WARNING + # Nothing will be output since both handler is still set to WARNING logger.info(self.next_message()) h = logger.handlers[0] nhs = named_handlers_supported() @@ -661,13 +516,12 @@ def test_config_9_ok(self): else: self.assertEqual(1, h.count) self.apply_config(self.config9b) - #Message should now be output + # Message should now be output logger.info(self.next_message()) if nhs: h = logger.handlers[0] self.assertTrue(h.matchall([ - dict(levelname='INFO', message='3'), - ])) + dict(levelname='INFO', message='3'), ])) else: self.assertEqual(2, h.count) @@ -676,19 +530,18 @@ def test_config_10_ok(self): logger = logging.getLogger("compiler.parser") logger.warning(self.next_message()) logger = logging.getLogger('compiler') - #Not output, because filtered + # Not output, because filtered logger.warning(self.next_message()) logger = logging.getLogger('compiler.lexer') - #Not output, because filtered + # Not output, because filtered logger.warning(self.next_message()) logger = logging.getLogger("compiler.parser.codegen") - #Output, as not filtered + # Output, as not filtered logger.error(self.next_message()) h = logging.getLogger().handlers[0] self.assertTrue(h.matchall([ - dict(levelname='WARNING', message='1'), - dict(levelname='ERROR', message='4'), - ])) + dict(levelname='WARNING', message='1'), + dict(levelname='ERROR', message='4'), ])) def test_config_11_ok(self): self.apply_config(self.config11) diff --git a/splunk_eventgen/lib/logutils_src/tests/test_formatter.py b/splunk_eventgen/lib/logutils_src/tests/test_formatter.py index 0a069c78..011ba234 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_formatter.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_formatter.py @@ -2,11 +2,13 @@ # Copyright (C) 2009-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -import logutils import os import sys import unittest +import logutils + + class FormatterTest(unittest.TestCase): def setUp(self): self.common = { @@ -17,10 +19,8 @@ def setUp(self): 'exc_info': None, 'func': None, 'msg': 'Message with %d %s', - 'args': (2, 'placeholders'), - } - self.variants = { - } + 'args': (2, 'placeholders'), } + self.variants = {} def get_record(self, name=None): result = dict(self.common) @@ -42,6 +42,7 @@ def test_percent(self): self.assertFalse(f.usesTime()) if sys.version_info[:2] >= (2, 6): + def test_braces(self): "Test {}-formatting" r = self.get_record() diff --git a/splunk_eventgen/lib/logutils_src/tests/test_messages.py b/splunk_eventgen/lib/logutils_src/tests/test_messages.py index 17f80bbd..0a221105 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_messages.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_messages.py @@ -1,9 +1,12 @@ -import logutils import sys import unittest +import logutils + + class MessageTest(unittest.TestCase): if sys.version_info[:2] >= (2, 6): + def test_braces(self): "Test whether brace-formatting works." __ = logutils.BraceMessage @@ -19,8 +22,7 @@ class Dummy: dummy = Dummy() dummy.x, dummy.y = 0.0, 1.0 - m = __('Message with coordinates: ({point.x:.2f}, {point.y:.2f})', - point=dummy) + m = __('Message with coordinates: ({point.x:.2f}, {point.y:.2f})', point=dummy) self.assertEqual(str(m), 'Message with coordinates: (0.00, 1.00)') def test_dollars(self): @@ -29,5 +31,4 @@ def test_dollars(self): m = __('Message with $num ${what}', num=2, what='placeholders') self.assertEqual(str(m), 'Message with 2 placeholders') ignored = object() - self.assertRaises(TypeError, __, 'Message with $num ${what}', - ignored, num=2, what='placeholders') + self.assertRaises(TypeError, __, 'Message with $num ${what}', ignored, num=2, what='placeholders') diff --git a/splunk_eventgen/lib/logutils_src/tests/test_queue.py b/splunk_eventgen/lib/logutils_src/tests/test_queue.py index 34152e37..f85074c6 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_queue.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_queue.py @@ -2,19 +2,21 @@ # Copyright (C) 2010-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -from logutils.testing import TestHandler, Matcher -from logutils.queue import QueueHandler, QueueListener, queue import unittest +from logutils.queue import QueueHandler, QueueListener, queue +from logutils.testing import Matcher, TestHandler + + class QueueTest(unittest.TestCase): def setUp(self): self.handler = h = TestHandler(Matcher()) - self.logger = l = logging.getLogger() + self.logger = temp_logger = logging.getLogger() self.queue = q = queue.Queue(-1) self.qh = qh = QueueHandler(q) self.ql = ql = QueueListener(q, h) ql.start() - l.addHandler(qh) + temp_logger.addHandler(qh) def tearDown(self): self.logger.removeHandler(self.qh) @@ -28,9 +30,8 @@ def test_simple(self): self.logger.debug("This won't show up.") self.logger.info("Neither will this.") self.logger.warning("But this will.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - #import pdb; pdb.set_trace() self.assertTrue(h.matches(levelno=logging.WARNING)) self.assertFalse(h.matches(levelno=logging.DEBUG)) self.assertFalse(h.matches(levelno=logging.INFO)) @@ -42,10 +43,10 @@ def test_partial(self): self.logger.debug("This won't show up.") self.logger.info("Neither will this.") self.logger.warning("But this will.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - self.assertTrue(h.matches(msg="ut th")) # from "But this will" - self.assertTrue(h.matches(message="ut th")) # from "But this will" + self.assertTrue(h.matches(msg="ut th")) # from "But this will" + self.assertTrue(h.matches(message="ut th")) # from "But this will" self.assertFalse(h.matches(message="either")) self.assertFalse(h.matches(message="won't")) @@ -57,13 +58,12 @@ def test_multiple(self): self.logger.info("Neither will this.") self.logger.warning("But this will.") self.logger.error("And so will this.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - self.assertTrue(h.matches(levelno=logging.WARNING, - message='ut thi')) - self.assertTrue(h.matches(levelno=logging.ERROR, - message='nd so wi')) + self.assertTrue(h.matches(levelno=logging.WARNING, message='ut thi')) + self.assertTrue(h.matches(levelno=logging.ERROR, message='nd so wi')) self.assertFalse(h.matches(levelno=logging.INFO)) + if __name__ == '__main__': unittest.main() diff --git a/splunk_eventgen/lib/logutils_src/tests/test_redis.py b/splunk_eventgen/lib/logutils_src/tests/test_redis.py index 858192cd..e53bdb5d 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_redis.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_redis.py @@ -2,14 +2,17 @@ # Copyright (C) 2011-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -from logutils.testing import TestHandler, Matcher -from logutils.redis import RedisQueueHandler, RedisQueueListener -from redis import Redis import socket import subprocess import time import unittest +from logutils.redis import RedisQueueHandler, RedisQueueListener +from logutils.testing import Matcher, TestHandler + +from redis import Redis + + class QueueListener(RedisQueueListener): def dequeue(self, block): record = RedisQueueListener.dequeue(self, block) @@ -17,19 +20,18 @@ def dequeue(self, block): record = logging.makeLogRecord(record) return record + class RedisQueueTest(unittest.TestCase): def setUp(self): self.handler = h = TestHandler(Matcher()) - self.logger = l = logging.getLogger() - self.server = subprocess.Popen(['redis-server'], - stdout=subprocess.PIPE, - stderr=subprocess.PIPE) + self.logger = temp_logger = logging.getLogger() + self.server = subprocess.Popen(['redis-server'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) self.wait_for_server() self.queue = q = Redis() self.qh = qh = RedisQueueHandler(redis=q) self.ql = ql = QueueListener(h, redis=q) ql.start() - l.addHandler(qh) + temp_logger.addHandler(qh) def tearDown(self): self.logger.removeHandler(self.qh) @@ -38,7 +40,7 @@ def tearDown(self): self.server.terminate() def wait_for_server(self): - maxtime = time.time() + 2 # 2 seconds to wait for server + maxtime = time.time() + 2 # 2 seconds to wait for server sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) while time.time() < maxtime: try: @@ -57,9 +59,8 @@ def test_simple(self): self.logger.debug("This won't show up.") self.logger.info("Neither will this.") self.logger.warning("But this will.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - #import pdb; pdb.set_trace() self.assertTrue(h.matches(levelno=logging.WARNING)) self.assertFalse(h.matches(levelno=logging.DEBUG)) self.assertFalse(h.matches(levelno=logging.INFO)) @@ -71,10 +72,10 @@ def test_partial(self): self.logger.debug("This won't show up.") self.logger.info("Neither will this.") self.logger.warning("But this will.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - self.assertTrue(h.matches(msg="ut th")) # from "But this will" - self.assertTrue(h.matches(message="ut th")) # from "But this will" + self.assertTrue(h.matches(msg="ut th")) # from "But this will" + self.assertTrue(h.matches(message="ut th")) # from "But this will" self.assertFalse(h.matches(message="either")) self.assertFalse(h.matches(message="won't")) @@ -86,13 +87,12 @@ def test_multiple(self): self.logger.info("Neither will this.") self.logger.warning("But this will.") self.logger.error("And so will this.") - self.ql.stop() #ensure all records have come through. + self.ql.stop() # ensure all records have come through. h = self.handler - self.assertTrue(h.matches(levelno=logging.WARNING, - message='ut thi')) - self.assertTrue(h.matches(levelno=logging.ERROR, - message='nd so wi')) + self.assertTrue(h.matches(levelno=logging.WARNING, message='ut thi')) + self.assertTrue(h.matches(levelno=logging.ERROR, message='nd so wi')) self.assertFalse(h.matches(levelno=logging.INFO)) + if __name__ == '__main__': unittest.main() diff --git a/splunk_eventgen/lib/logutils_src/tests/test_testing.py b/splunk_eventgen/lib/logutils_src/tests/test_testing.py index c0b7409a..ef61beb7 100644 --- a/splunk_eventgen/lib/logutils_src/tests/test_testing.py +++ b/splunk_eventgen/lib/logutils_src/tests/test_testing.py @@ -2,21 +2,23 @@ # Copyright (C) 2010-2017 Vinay Sajip. See LICENSE.txt for details. # import logging -from logutils.testing import TestHandler, Matcher import unittest +from logutils.testing import Matcher, TestHandler + + class LoggingTest(unittest.TestCase): def setUp(self): self.handler = h = TestHandler(Matcher()) - self.logger = l = logging.getLogger() - l.addHandler(h) + self.logger = temp_logger = logging.getLogger() + temp_logger.addHandler(h) def tearDown(self): self.logger.removeHandler(self.handler) self.handler.close() def test_simple(self): - "Simple test of logging test harness." + """Simple test of logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.logger.debug("This won't show up.") @@ -28,20 +30,20 @@ def test_simple(self): self.assertFalse(h.matches(levelno=logging.INFO)) def test_partial(self): - "Test of partial matching in logging test harness." + """Test of partial matching in logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.logger.debug("This won't show up.") self.logger.info("Neither will this.") self.logger.warning("But this will.") h = self.handler - self.assertTrue(h.matches(msg="ut th")) # from "But this will" - self.assertTrue(h.matches(message="ut th")) # from "But this will" + self.assertTrue(h.matches(msg="ut th")) # from "But this will" + self.assertTrue(h.matches(message="ut th")) # from "But this will" self.assertFalse(h.matches(message="either")) self.assertFalse(h.matches(message="won't")) def test_multiple(self): - "Test of matching multiple values in logging test harness." + """Test of matching multiple values in logging test harness.""" # Just as a demo, let's log some messages. # Only one should show up in the log. self.logger.debug("This won't show up.") @@ -49,11 +51,10 @@ def test_multiple(self): self.logger.warning("But this will.") self.logger.error("And so will this.") h = self.handler - self.assertTrue(h.matches(levelno=logging.WARNING, - message='ut thi')) - self.assertTrue(h.matches(levelno=logging.ERROR, - message='nd so wi')) + self.assertTrue(h.matches(levelno=logging.WARNING, message='ut thi')) + self.assertTrue(h.matches(levelno=logging.ERROR, message='nd so wi')) self.assertFalse(h.matches(levelno=logging.INFO)) + if __name__ == '__main__': unittest.main() diff --git a/splunk_eventgen/lib/outputcounter.py b/splunk_eventgen/lib/outputcounter.py index 37547f11..2e9b803c 100644 --- a/splunk_eventgen/lib/outputcounter.py +++ b/splunk_eventgen/lib/outputcounter.py @@ -1,11 +1,13 @@ -import time import logging +import time + class OutputCounter(object): ''' This object is used as a global variable for outputer to collect how many events and how much size of raw events egx has generated, and use them to calculate a real-time throughput. ''' + def __init__(self): self.event_size_1_min = 0 self.event_count_1_min = 0 @@ -24,7 +26,8 @@ def update_throughput(self, timestamp): self.current_time = timestamp self.event_count_1_min = 0 self.event_size_1_min = 0 - self.logger.error("Current throughput is {} B/s, {} count/s".format(self.throughput_volume, self.throughput_count)) + self.logger.error("Current throughput is {} B/s, {} count/s".format(self.throughput_volume, + self.throughput_count)) def collect(self, event_count, event_size): timestamp = time.time() diff --git a/splunk_eventgen/lib/outputplugin.py b/splunk_eventgen/lib/outputplugin.py index f1dee615..e3bb2fb3 100644 --- a/splunk_eventgen/lib/outputplugin.py +++ b/splunk_eventgen/lib/outputplugin.py @@ -1,8 +1,10 @@ from __future__ import division + import logging import logging.handlers from collections import deque + class OutputPlugin(object): name = 'OutputPlugin' @@ -12,14 +14,15 @@ def __init__(self, sample, output_counter=None): self._outputMode = sample.outputMode self.events = None self._setup_logging() - self.logger.debug("Starting OutputPlugin for sample '%s' with output '%s'" % (self._sample.name, self._sample.outputMode)) + self.logger.debug( + "Starting OutputPlugin for sample '%s' with output '%s'" % (self._sample.name, self._sample.outputMode)) self._queue = deque([]) self.output_counter = output_counter def __str__(self): """Only used for debugging, outputs a pretty printed representation of this output""" # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key != '_c']) + # temp = dict([(key, value) for (key, value) in self.__dict__.items() if key != '_c']) # return pprint.pformat(temp) return "" @@ -55,4 +58,4 @@ def run(self): def load(): - return OutputPlugin \ No newline at end of file + return OutputPlugin diff --git a/splunk_eventgen/lib/plugins/generator/default.py b/splunk_eventgen/lib/plugins/generator/default.py index 52bafe19..ed106e39 100644 --- a/splunk_eventgen/lib/plugins/generator/default.py +++ b/splunk_eventgen/lib/plugins/generator/default.py @@ -1,11 +1,12 @@ -# TODO Sample object now incredibly overloaded and not threadsafe. Need to make it threadsafe and make it simpler to get a -# copy of whats needed without the whole object. +# TODO: Sample object is incredibly overloaded and not threadsafe. Need to make it simpler to get a copy without the +# whole object get a copy of whats needed without the whole object. from __future__ import division -from generatorplugin import GeneratorPlugin -import datetime, time + +import datetime import random -from eventgentimestamp import EventgenTimestamp + +from generatorplugin import GeneratorPlugin class DefaultGenerator(GeneratorPlugin): @@ -13,27 +14,29 @@ def __init__(self, sample): GeneratorPlugin.__init__(self, sample) def gen(self, count, earliest, latest, samplename=None): - s = self._sample - - self.logger.debug("Generating sample '%s' in app '%s' with count %d, et: '%s', lt '%s'" % (self._sample.name, self._sample.app, count, earliest, latest)) + self.logger.debug("Generating sample '%s' in app '%s' with count %d, et: '%s', lt '%s'" % + (self._sample.name, self._sample.app, count, earliest, latest)) startTime = datetime.datetime.now() # If we're random, fill random events from sampleDict into eventsDict if self._sample.randomizeEvents: - eventsDict = [ ] + eventsDict = [] sdlen = len(self._sample.sampleDict) - self.logger.debugv("Random filling eventsDict for sample '%s' in app '%s' with %d events" % (self._sample.name, self._sample.app, count)) - # Count is -1, replay the whole file, but in randomizeEvents I think we'd want it to actually + self.logger.debugv("Random filling eventsDict for sample '%s' in app '%s' with %d events" % + (self._sample.name, self._sample.app, count)) + # Count is -1, replay the whole file, but in randomizeEvents I think we'd want it to actually # just put as many events as there are in the file if count == -1: count = sdlen while len(eventsDict) < count: - eventsDict.append(self._sample.sampleDict[random.randint(0, sdlen-1)]) + eventsDict.append(self._sample.sampleDict[random.randint(0, sdlen - 1)]) # If we're bundlelines, create count copies of the sampleDict elif self._sample.bundlelines: - eventsDict = [ ] - self.logger.debugv("Bundlelines, filling eventsDict for sample '%s' in app '%s' with %d copies of sampleDict" % (self._sample.name, self._sample.app, count)) + eventsDict = [] + self.logger.debugv( + "Bundlelines, filling eventsDict for sample '%s' in app '%s' with %d copies of sampleDict" % + (self._sample.name, self._sample.app, count)) for x in xrange(count): eventsDict.extend(self._sample.sampleDict) @@ -45,9 +48,11 @@ def gen(self, count, earliest, latest, samplename=None): count = len(self._sample.sampleDict) eventsDict = self._sample.sampleDict[0:count] - ## Continue to fill events array until len(events) == count + # Continue to fill events array until len(events) == count if len(eventsDict) < count: - self.logger.debugv("Events fill for sample '%s' in app '%s' less than count (%s vs. %s); continuing fill" % (self._sample.name, self._sample.app, len(eventsDict), count) ) + self.logger.debugv( + "Events fill for sample '%s' in app '%s' less than count (%s vs. %s); continuing fill" % + (self._sample.name, self._sample.app, len(eventsDict), count)) self.logger.debugv("Current eventsDict: %s" % eventsDict) # run a modulus on the size of the eventdict to figure out what the last event was. Populate to count # from there. @@ -57,9 +62,11 @@ def gen(self, count, earliest, latest, samplename=None): nextEventToUse = self._sample.sampleDict[len(eventsDict) % len(self._sample.sampleDict)] self.logger.debugv("Next event to add: %s" % nextEventToUse) eventsDict.append(nextEventToUse) - self.logger.debugv("Events fill complete for sample '%s' in app '%s' length %d" % (self._sample.name, self._sample.app, len(eventsDict))) + self.logger.debugv("Events fill complete for sample '%s' in app '%s' length %d" % + (self._sample.name, self._sample.app, len(eventsDict))) GeneratorPlugin.build_events(self, eventsDict, startTime, earliest, latest) + def load(): return DefaultGenerator diff --git a/splunk_eventgen/lib/plugins/generator/jinja.py b/splunk_eventgen/lib/plugins/generator/jinja.py index 52f3e63c..65644ff7 100644 --- a/splunk_eventgen/lib/plugins/generator/jinja.py +++ b/splunk_eventgen/lib/plugins/generator/jinja.py @@ -1,20 +1,22 @@ from __future__ import division + import datetime -import time import os import random -try: - import ujson as json -except: - import json as json +import time + from jinja2 import nodes from jinja2.ext import Extension from generatorplugin import GeneratorPlugin +try: + import ujson as json +except: + import json as json -class CantFindTemplate(Exception): +class CantFindTemplate(Exception): def __init__(self, msg): """Exception raised when we / Jinja can't find the template @@ -25,7 +27,6 @@ def __init__(self, msg): class CantProcessTemplate(Exception): - def __init__(self, msg): """Exception raised when we / Jinja can't find the template @@ -41,8 +42,8 @@ class JinjaTime(Extension): @staticmethod def _get_time_slice(earliest, latest, slices, target_slice, slice_type="lower"): """ - This method will take a time block bounded by "earliest and latest", and a slice. It'll then divide the time - in sections and return a tuple with 3 arguments, the lower bound, the higher bound, and the target in the middle. + This method will take a time block bounded by "earliest and latest", and a slice. It'll then divide the time in + sections and return a tuple with 3 arguments, the lower bound, the higher bound, and the target in the middle. :param earliest (in epoch): :param latest (in epoch): :param slices: @@ -62,12 +63,12 @@ def _get_time_slice(earliest, latest, slices, target_slice, slice_type="lower"): if slice_type == "lower": slice_time = slice_start elif slice_type == "middle": - slice_time = slice_start + (slice_size/2) + slice_time = slice_start + (slice_size / 2) elif slice_type == "upper": slice_time = slice_end elif slice_type == "random": - start = int(slice_start*100) - end = int(slice_end*100) + start = int(slice_start * 100) + end = int(slice_end * 100) if start == end: slice_time = end * 0.01 else: @@ -93,7 +94,8 @@ def _time_slice_formatted(self, earliest, latest, count, slices, date_format='%Y def _time_slice_epoch(self, earliest, latest, count, slices, date_format=None): slice_start, slice_end, slice_size, slice_time = \ - self._get_time_slice(earliest=earliest, latest=latest, slices=slices, target_slice=count, slice_type="lower") + self._get_time_slice(earliest=earliest, latest=latest, slices=slices, target_slice=count, + slice_type="lower") return slice_time @staticmethod @@ -106,17 +108,14 @@ def _output_var(var_value, lineno): return nodes.Output([var_value], lineno=lineno) def parse(self, parser): - target_var_name = { - "time_now": "time_now", - "time_slice": "time_target" - } + target_var_name = {"time_now": "time_now", "time_slice": "time_target"} tag = parser.stream.current.value name_base = target_var_name[tag] lineno = parser.stream.next().lineno args, kwargs = self.parse_args(parser) task_list = [] - epoch_name = name_base+"_epoch" - formatted_name = name_base+"_formatted" + epoch_name = name_base + "_epoch" + formatted_name = name_base + "_formatted" target_epoch_method = "_{0}_epoch".format(tag) target_formatted_method = "_{0}_formatted".format(tag) epoch_call = self.call_method(target_epoch_method, args=args, kwargs=kwargs, lineno=lineno) @@ -139,8 +138,7 @@ def parse_args(self, parser): kwargs.append(nodes.Keyword(key, value, lineno=value.lineno)) else: if kwargs: - parser.fail('Invalid argument syntax for WrapExtension tag', - parser.stream.current.lineno) + parser.fail('Invalid argument syntax for WrapExtension tag', parser.stream.current.lineno) args.append(parser.parse_expression()) require_comma = True return args, kwargs @@ -212,11 +210,10 @@ def gen(self, count, earliest, latest, samplename=None): if not hasattr(self._sample, "jinja_target_template"): raise CantFindTemplate("Template to load not specified in eventgen conf for stanza. Skipping Stanza") jinja_env = Environment( - loader=FileSystemLoader([target_template_dir, working_dir, template_dir], encoding='utf-8', followlinks=False), - extensions=['jinja2.ext.do', 'jinja2.ext.with_', 'jinja2.ext.loopcontrols', JinjaTime], - line_statement_prefix="#", - line_comment_prefix="##" - ) + loader=FileSystemLoader([target_template_dir, working_dir, template_dir], encoding='utf-8', + followlinks=False), extensions=[ + 'jinja2.ext.do', 'jinja2.ext.with_', 'jinja2.ext.loopcontrols', JinjaTime], + line_statement_prefix="#", line_comment_prefix="##") jinja_loaded_template = jinja_env.get_template(str(self._sample.jinja_target_template)) if hasattr(self._sample, 'jinja_variables'): @@ -227,36 +224,40 @@ def gen(self, count, earliest, latest, samplename=None): jinja_loaded_vars["eventgen_count"] = self.current_count jinja_loaded_vars["eventgen_maxcount"] = self.target_count jinja_loaded_vars["eventgen_earliest"] = self.earliest - self.earliest_epoch = (self.earliest - datetime.datetime(1970,1,1)).total_seconds() + self.earliest_epoch = (self.earliest - datetime.datetime(1970, 1, 1)).total_seconds() jinja_loaded_vars["eventgen_earliest_epoch"] = self.earliest_epoch jinja_loaded_vars["eventgen_latest"] = self.latest - jinja_loaded_vars["eventgen_latest_epoch"] = (self.latest - datetime.datetime(1970,1,1)).total_seconds() - self.latest_epoch = (self.latest - datetime.datetime(1970,1,1)).total_seconds() + jinja_loaded_vars["eventgen_latest_epoch"] = (self.latest - datetime.datetime(1970, 1, 1)).total_seconds() + self.latest_epoch = (self.latest - datetime.datetime(1970, 1, 1)).total_seconds() while self.current_count < self.target_count: self.end_of_cycle = False jinja_loaded_vars["eventgen_count"] = self.current_count jinja_loaded_vars["eventgen_target_time_earliest"], jinja_loaded_vars["eventgen_target_time_latest"], \ - jinja_loaded_vars["eventgen_target_time_slice_size"], jinja_loaded_vars["eventgen_target_time_epoch"] = \ - JinjaTime._get_time_slice(self.earliest_epoch, self.latest_epoch, self.target_count, self.current_count, slice_type="random") + jinja_loaded_vars["eventgen_target_time_slice_size"], \ + jinja_loaded_vars["eventgen_target_time_epoch"] = \ + JinjaTime._get_time_slice(self.earliest_epoch, self.latest_epoch, self.target_count, + self.current_count, slice_type="random") self.jinja_stream = jinja_loaded_template.stream(jinja_loaded_vars) lines_out = [] try: for line in self.jinja_stream: if line != "\n": - #TODO: Time can be supported by self._sample.timestamp, should probably set that up in this logic. + # TODO: Time can be supported by self._sample.timestamp, should probably set that up here. try: target_line = json.loads(line) except ValueError as e: self.logger.error("Unable to parse Jinja's return. Line: {0}".format(line)) self.logger.error("Parse Failure Reason: {0}".format(e.message)) - self.logger.error("Please note, you must meet the requirements for json.loads in python if you have not installed ujson. Native python does not support multi-line events.") + self.logger.error( + "Please note, you must meet the requirements for json.loads in python if you have" + + "not installed ujson. Native python does not support multi-line events.") continue current_line_keys = target_line.keys() if "_time" not in current_line_keys: - #TODO: Add a custom exception here + # TODO: Add a custom exception here raise Exception("No _time field supplied, please add time to your jinja template.") if "_raw" not in current_line_keys: - #TODO: Add a custom exception here + # TODO: Add a custom exception here raise Exception("No _raw field supplied, please add time to your jinja template.") if "host" not in current_line_keys: target_line["host"] = self._sample.host @@ -281,7 +282,7 @@ def gen(self, count, earliest, latest, samplename=None): timeDiffFrac = "%d.%06d" % (timeDiff.seconds, timeDiff.microseconds) self.logger.debugv("Interval complete, flushing feed") self._out.flush(endOfInterval=True) - self.logger.info("Generation of sample '%s' completed in %s seconds." % (self._sample.name, timeDiffFrac) ) + self.logger.info("Generation of sample '%s' completed in %s seconds." % (self._sample.name, timeDiffFrac)) return 0 except Exception as e: self.logger.exception(e) diff --git a/splunk_eventgen/lib/plugins/generator/perdayvolumegenerator.py b/splunk_eventgen/lib/plugins/generator/perdayvolumegenerator.py index 7e91948c..c58f7bae 100644 --- a/splunk_eventgen/lib/plugins/generator/perdayvolumegenerator.py +++ b/splunk_eventgen/lib/plugins/generator/perdayvolumegenerator.py @@ -1,18 +1,21 @@ from __future__ import division -from generatorplugin import GeneratorPlugin -import datetime, time + +import datetime import random +from generatorplugin import GeneratorPlugin + class PerDayVolumeGenerator(GeneratorPlugin): def __init__(self, sample): GeneratorPlugin.__init__(self, sample) - #TODO: Make this work with replay mode. + # TODO: Make this work with replay mode. def gen(self, count, earliest, latest, samplename=None): # count in this plugin is a measurement of byteself._sample. size = count - self.logger.debug("PerDayVolumeGenerator Called with a Size of: %s with Earliest: %s and Latest: %s" % (size, earliest, latest)) + self.logger.debug("PerDayVolumeGenerator Called with a Size of: %s with Earliest: %s and Latest: %s" % + (size, earliest, latest)) # very similar to the default generator. only difference is we go by size instead of count. try: self._sample.loadSample() @@ -21,7 +24,8 @@ def gen(self, count, earliest, latest, samplename=None): self.logger.error("Error loading sample file for sample '%s'" % self._sample.name) return - self.logger.debug("Generating sample '%s' in app '%s' with count %d, et: '%s', lt '%s'" % (self._sample.name, self._sample.app, size, earliest, latest)) + self.logger.debug("Generating sample '%s' in app '%s' with count %d, et: '%s', lt '%s'" % + (self._sample.name, self._sample.app, size, earliest, latest)) startTime = datetime.datetime.now() # Create a counter for the current byte size of the read in samples @@ -33,15 +37,18 @@ def gen(self, count, earliest, latest, samplename=None): eventsDict = [] if self._sample.randomizeEvents: sdlen = len(updated_sample_dict) - self.logger.debugv("Random filling eventsDict for sample '%s' in app '%s' with %d bytes" % (self._sample.name, self._sample.app, size)) + self.logger.debugv("Random filling eventsDict for sample '%s' in app '%s' with %d bytes" % + (self._sample.name, self._sample.app, size)) while currentSize < size: - currentevent = updated_sample_dict[random.randint(0, sdlen-1)] + currentevent = updated_sample_dict[random.randint(0, sdlen - 1)] eventsDict.append(currentevent) currentSize += len(currentevent['_raw']) # If we're bundlelines, create count copies of the sampleDict elif self._sample.bundlelines: - self.logger.debugv("Bundlelines, filling eventsDict for sample '%s' in app '%s' with %d copies of sampleDict" % (self._sample.name, self._sample.app, size)) + self.logger.debugv( + "Bundlelines, filling eventsDict for sample '%s' in app '%s' with %d copies of sampleDict" % + (self._sample.name, self._sample.app, size)) while currentSize <= size: sizeofsample = sum(len(sample['_raw']) for sample in updated_sample_dict) eventsDict.extend(updated_sample_dict) @@ -62,19 +69,22 @@ def gen(self, count, earliest, latest, samplename=None): sizeremaining = size - currentreadsize targetlinesize = len(updated_sample_dict[targetline]['_raw']) if size < targetlinesize: - self.logger.error("Size is too small for sample {}. For this interval, we need {} bytes but size of one event is {} bytes.".format(self._sample.name, size, targetlinesize)) + self.logger.error( + "Size is too small for sample {}. We need {} bytes but size of one event is {} bytes.".format( + self._sample.name, size, targetlinesize)) break - if targetlinesize <= sizeremaining or targetlinesize*.9 <= sizeremaining: + if targetlinesize <= sizeremaining or targetlinesize * .9 <= sizeremaining: currentreadsize += targetlinesize eventsDict.append(updated_sample_dict[targetline]) else: break linecount += 1 - self.logger.debugv("Events fill complete for sample '%s' in app '%s' length %d" % (self._sample.name, self._sample.app, len(eventsDict))) + self.logger.debugv("Events fill complete for sample '%s' in app '%s' length %d" % + (self._sample.name, self._sample.app, len(eventsDict))) # Ignore token replacement here because we completed it at the beginning of event generation GeneratorPlugin.build_events(self, eventsDict, startTime, earliest, latest, ignore_tokens=True) def load(): - return PerDayVolumeGenerator \ No newline at end of file + return PerDayVolumeGenerator diff --git a/splunk_eventgen/lib/plugins/generator/replay.py b/splunk_eventgen/lib/plugins/generator/replay.py index 8854f392..5f1a6900 100644 --- a/splunk_eventgen/lib/plugins/generator/replay.py +++ b/splunk_eventgen/lib/plugins/generator/replay.py @@ -1,12 +1,12 @@ # TODO Add timestamp detection for common timestamp format from __future__ import division -from generatorplugin import GeneratorPlugin -import datetime, time -import re -from eventgentimestamp import EventgenTimestamp +import datetime +import time +from eventgentimestamp import EventgenTimestamp +from generatorplugin import GeneratorPlugin class ReplayGenerator(GeneratorPlugin): @@ -22,14 +22,12 @@ def __init__(self, sample): self._currentevent = 0 self._timeSinceSleep = datetime.timedelta() - self._times = [ ] - - + self._times = [] def set_time_and_send(self, rpevent, event_time, earliest, latest): # temporary time append rpevent['_raw'] = rpevent['_raw'][:-1] - rpevent['_time'] = (event_time - datetime.datetime(1970,1,1)).total_seconds() + rpevent['_time'] = (event_time - datetime.datetime(1970, 1, 1)).total_seconds() event = rpevent['_raw'] @@ -38,10 +36,10 @@ def set_time_and_send(self, rpevent, event_time, earliest, latest): # picked from a random line in that file mvhash = {} - ## Iterate tokens + # Iterate tokens for token in self._sample.tokens: token.mvhash = mvhash - if token.replacementType in ['timestamp', 'replaytimestamp'] : + if token.replacementType in ['timestamp', 'replaytimestamp']: event = token.replace(event, et=event_time, lt=event_time, s=self._sample) else: event = token.replace(event, s=self._sample) @@ -68,7 +66,8 @@ def gen(self, count, earliest, latest, samplename=None): self.backfill_time = self._sample.get_backfill_time(self.current_time) if not self._sample.backfill or self._sample.backfilldone: - self.backfill_time = EventgenTimestamp.get_random_timestamp_backfill(earliest, latest, self._sample.earliest, self._sample.latest) + self.backfill_time = EventgenTimestamp.get_random_timestamp_backfill( + earliest, latest, self._sample.earliest, self._sample.latest) for line in self._sample.get_loaded_sample(): # Add newline to a raw line if necessary @@ -81,27 +80,29 @@ def gen(self, count, earliest, latest, samplename=None): hostRegex = line.get('hostRegex', self._sample.hostRegex) source = line.get('source', self._sample.source) sourcetype = line.get('sourcetype', self._sample.sourcetype) - rpevent = {'_raw': line['_raw'], 'index': index, 'host': host, 'hostRegex': hostRegex, - 'source': source, 'sourcetype': sourcetype} + rpevent = { + '_raw': line['_raw'], 'index': index, 'host': host, 'hostRegex': hostRegex, 'source': source, + 'sourcetype': sourcetype} except: if line[-1] != '\n': line += '\n' - rpevent = {'_raw': line, 'index': self._sample.index, 'host': self._sample.host, - 'hostRegex': self._sample.hostRegex, - 'source': self._sample.source, 'sourcetype': self._sample.sourcetype} + rpevent = { + '_raw': line, 'index': self._sample.index, 'host': self._sample.host, 'hostRegex': + self._sample.hostRegex, 'source': self._sample.source, 'sourcetype': self._sample.sourcetype} # If timestamp doesn't exist, the sample file should be fixed to include timestamp for every event. try: current_event_timestamp = self._sample.getTSFromEvent(rpevent[self._sample.timeField]) - except Exception as e: + except Exception: try: current_event_timestamp = self._sample.getTSFromEvent(line[self._sample.timeField]) - except Exception as e: + except Exception: try: - self.logger.debug("Sample timeField {} failed to locate. Trying to locate _time field.".format(self._sample.timeField)) + self.logger.debug("Sample timeField {} failed to locate. Trying to locate _time field.".format( + self._sample.timeField)) current_event_timestamp = self._sample.getTSFromEvent(line["_time"]) - except Exception as e: + except Exception: self.logger.exception("Extracting timestamp from an event failed.") continue @@ -130,5 +131,6 @@ def gen(self, count, earliest, latest, samplename=None): self._out.flush(endOfInterval=True) return + def load(): return ReplayGenerator diff --git a/splunk_eventgen/lib/plugins/generator/weblog.py b/splunk_eventgen/lib/plugins/generator/weblog.py index 39cda67f..b6c0e841 100755 --- a/splunk_eventgen/lib/plugins/generator/weblog.py +++ b/splunk_eventgen/lib/plugins/generator/weblog.py @@ -1,7 +1,9 @@ from __future__ import division -from generatorplugin import GeneratorPlugin -import time + import random +import time + +from generatorplugin import GeneratorPlugin class WeblogGenerator(GeneratorPlugin): @@ -30,25 +32,22 @@ def __init__(self, sample): def gen(self, count, earliest, latest, **kwargs): # logger.debug("weblog: external_ips_len: %s webhosts_len: %s useragents_len: %s webserverstatus_len: %s" % \ - # (self.external_ips_len, self.webhosts_len, self.useragents_len, self.webserverstatus_len)) - l = [ { '_raw': ('%s %s - - [%s] ' - + '"GET /product.screen?product_id=HolyGouda&JSESSIONID=SD3SL1FF7ADFF8 HTTP 1.1" ' - + '%s %s "http://shop.buttercupgames.com/cart.do?action=view&itemId=HolyGouda" ' - + '"%s" %s') % \ - (self.external_ips[random.randint(0, self.external_ips_len-1)], - self.webhosts[random.randint(0, self.webhosts_len-1)], - latest.strftime('%d/%b/%Y %H:%M:%S:%f'), - self.webserverstatus[random.randint(0, self.webserverstatus_len-1)], - random.randint(100, 1000), - self.useragents[random.randint(0, self.useragents_len-1)], - random.randint(200, 2000)), - 'index': self._sample.index, - 'sourcetype': self._sample.sourcetype, - 'host': self._sample.host, - 'source': self._sample.source, - '_time': int(time.mktime(latest.timetuple())) } for i in xrange(count) ] - - self._out.bulksend(l) + # (self.external_ips_len, self.webhosts_len, self.useragents_len, self.webserverstatus_len)) + payload = [{ + '_raw': + ('%s %s - - [%s] ' + '"GET /product.screen?product_id=HolyGouda&JSESSIONID=SD3SL1FF7ADFF8 HTTP 1.1" ' + + '%s %s "http://shop.buttercupgames.com/cart.do?action=view&itemId=HolyGouda" ' + '"%s" %s') % + (self.external_ips[random.randint(0, self.external_ips_len - 1)], self.webhosts[random.randint( + 0, self.webhosts_len - 1)], latest.strftime('%d/%b/%Y %H:%M:%S:%f'), + self.webserverstatus[random.randint(0, self.webserverstatus_len - 1)], random.randint(100, 1000), + self.useragents[random.randint(0, self.useragents_len - 1)], random.randint(200, 2000)), 'index': + self._sample.index, 'sourcetype': + self._sample.sourcetype, 'host': + self._sample.host, 'source': + self._sample.source, '_time': + int(time.mktime(latest.timetuple()))} for i in xrange(count)] + + self._out.bulksend(payload) return 0 diff --git a/splunk_eventgen/lib/plugins/generator/windbag.py b/splunk_eventgen/lib/plugins/generator/windbag.py index a8276382..4f2dd00e 100644 --- a/splunk_eventgen/lib/plugins/generator/windbag.py +++ b/splunk_eventgen/lib/plugins/generator/windbag.py @@ -1,8 +1,11 @@ from __future__ import division -from generatorplugin import GeneratorPlugin + import datetime from datetime import timedelta +from generatorplugin import GeneratorPlugin + + class WindbagGenerator(GeneratorPlugin): def __init__(self, sample): GeneratorPlugin.__init__(self, sample) @@ -13,8 +16,8 @@ def gen(self, count, earliest, latest, samplename=None): count = 60 time_interval = timedelta.total_seconds((latest - earliest)) / count for i in xrange(count): - current_time_object = earliest + datetime.timedelta(0, time_interval*(i+1)) - msg = '{0} -0700 WINDBAG Event {1} of {2}'.format(current_time_object, (i+1), count) + current_time_object = earliest + datetime.timedelta(0, time_interval * (i + 1)) + msg = '{0} -0700 WINDBAG Event {1} of {2}'.format(current_time_object, (i + 1), count) self._out.send(msg) return 0 diff --git a/splunk_eventgen/lib/plugins/output/awss3.py b/splunk_eventgen/lib/plugins/output/awss3.py index 0e9210d9..223d90fa 100644 --- a/splunk_eventgen/lib/plugins/output/awss3.py +++ b/splunk_eventgen/lib/plugins/output/awss3.py @@ -1,16 +1,20 @@ from __future__ import division -from outputplugin import OutputPlugin + +import datetime +import logging +import threading +import uuid + import requests + +from outputplugin import OutputPlugin + try: import boto3 import botocore.exceptions boto_imported = True except ImportError: boto_imported = False -import uuid -import datetime -import threading -import logging def threaded(fn): @@ -31,18 +35,14 @@ class AwsS3OutputPlugin(OutputPlugin): name = 'awsS3' useOutputQueue = False # MAXQUEUELENGTH = 100 - validSettings = ['awsS3BucketName', 'awsS3CompressionType', - 'awsS3EventType', 'awsS3ObjectPrefix', - 'awsS3ObjectSuffix', 'awsRegion', 'awsKeyId', - 'awsSecretKey', 'awsS3EventPerKey'] - defaultableSettings = ['awsKeyId', 'awsSecretKey', 'awsS3EventType', - 'awsS3CompressionType', 'awsS3ObjectPrefix', - 'awsS3ObjectSuffix'] + validSettings = [ + 'awsS3BucketName', 'awsS3CompressionType', 'awsS3EventType', 'awsS3ObjectPrefix', 'awsS3ObjectSuffix', + 'awsRegion', 'awsKeyId', 'awsSecretKey', 'awsS3EventPerKey'] + defaultableSettings = [ + 'awsKeyId', 'awsSecretKey', 'awsS3EventType', 'awsS3CompressionType', 'awsS3ObjectPrefix', 'awsS3ObjectSuffix'] def __init__(self, sample, output_counter=None): - - # Override maxQueueLength to EventPerKey so that each flush # will generate one aws key if sample.awsS3EventPerKey: @@ -59,17 +59,15 @@ def __init__(self, sample, output_counter=None): # Bind passed in samples to the outputter. self.awsS3compressiontype = sample.awsS3CompressionType if hasattr( - sample, - 'awsS3CompressionType') and sample.awsS3CompressionType else None - self.awsS3eventtype = sample.awsS3EventType if hasattr( - sample, 'awsS3EventType') and sample.awsS3EventType else 'syslog' + sample, 'awsS3CompressionType') and sample.awsS3CompressionType else None + self.awsS3eventtype = sample.awsS3EventType if hasattr(sample, + 'awsS3EventType') and sample.awsS3EventType else 'syslog' self.awsS3objectprefix = sample.awsS3ObjectPrefix if hasattr( sample, 'awsS3ObjectPrefix') and sample.awsS3ObjectPrefix else "" self.awsS3objectsuffix = sample.awsS3ObjectSuffix if hasattr( sample, 'awsS3ObjectSuffix') and sample.awsS3ObjectSuffix else "" self.awsS3bucketname = sample.awsS3BucketName - self.logger.debug("Setting up the connection pool for %s in %s" % - (self._sample.name, self._app)) + self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) self._client = None self._createConnections(sample) self.logger.debug("Finished init of awsS3 plugin.") @@ -77,11 +75,8 @@ def __init__(self, sample, output_counter=None): def _createConnections(self, sample): try: if hasattr(sample, 'awsKeyId') and hasattr(sample, 'awsSecretKey'): - self._client = boto3.client( - "s3", - region_name=sample.awsRegion, - aws_access_key_id=sample.awsKeyId, - aws_secret_access_key=sample.awsSecretKey) + self._client = boto3.client("s3", region_name=sample.awsRegion, aws_access_key_id=sample.awsKeyId, + aws_secret_access_key=sample.awsSecretKey) if self._client is None: msg = ''' [your_eventgen_stanza] @@ -89,10 +84,9 @@ def _createConnections(self, sample): awsSecretKey = YOUR_SECRET_KEY ''' - self.logger.error( - "Failed for init boto3 client: %s, you should define correct 'awsKeyId'\ + self.logger.error("Failed for init boto3 client: %s, you should define correct 'awsKeyId'\ and 'awsSecretKey' in eventgen conf %s" % msg) - raise + raise Exception(msg) else: self._client = boto3.client('s3', region_name=sample.awsRegion) except Exception as e: @@ -109,38 +103,29 @@ def _createConnections(self, sample): ''' self.logger.error("Failed for init boto3 client, you should create " - "'~/.aws/credentials' with credential info %s" % msg) + "'~/.aws/credentials' with credential info %s" % msg) raise self.logger.debug("Init conn done, conn = %s" % self._client) def _sendPayloads(self, payload): - currentreadsize = 0 - currentreadevent = 0 - stringpayload = [] - totalbytesexpected = 0 - totalbytessent = 0 numberevents = len(payload) self.logger.debug("Sending %s events to s3 key" % numberevents) self._transmitEvents(payload) def _transmitEvents(self, payloadstring): - self.logger.debug("Transmission called with payloadstring event number: %d " - % len(payloadstring)) + self.logger.debug("Transmission called with payloadstring event number: %d " % len(payloadstring)) records = "".join(payloadstring) # Different key prefix for different log type if self.awsS3eventtype == 'elbaccesslog': - s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow( - ).strftime("%Y%m%dT%H%MZ") + '_' + str(uuid.uuid1( - )) + self.awsS3objectsuffix + s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow().strftime("%Y%m%dT%H%MZ") + '_' + str( + uuid.uuid1()) + self.awsS3objectsuffix elif self.awsS3eventtype == 's3accesslog': - s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow( - ).strftime("%Y-%m-%d-%H-%M-%S") + '-' + str(uuid.uuid1()).replace( - '-', '').upper()[0:15] + self.awsS3objectsuffix + s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow().strftime("%Y-%m-%d-%H-%M-%S") + '-' + str( + uuid.uuid1()).replace('-', '').upper()[0:15] + self.awsS3objectsuffix else: - s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow( - ).isoformat() + str(uuid.uuid1()) + self.awsS3objectsuffix - self.logger.debugv("Uploading %d events into s3 key: %s " % - (len(records), s3keyname)) + s3keyname = self.awsS3objectprefix + datetime.datetime.utcnow().isoformat() + str( + uuid.uuid1()) + self.awsS3objectsuffix + self.logger.debug("Uploading %d events into s3 key: %s " % (len(records), s3keyname)) if self.awsS3compressiontype == 'gz': import StringIO import gzip @@ -149,14 +134,11 @@ def _transmitEvents(self, payloadstring): f.write(records) records = out.getvalue() try: - response = self._client.put_object(Bucket=self.awsS3bucketname, - Key=s3keyname, - Body=records) - self.logger.debugv("response = %s" % response) + response = self._client.put_object(Bucket=self.awsS3bucketname, Key=s3keyname, Body=records) + self.logger.debug("response = %s" % response) except Exception as e: self.logger.error("Failed for exception: %s" % e) - self.logger.debugv("Failed sending events to payload: %s" % - (payloadstring)) + self.logger.debug("Failed sending events to payload: %s" % (payloadstring)) raise e def flush(self, q): @@ -167,12 +149,10 @@ def flush(self, q): self.logger.debug("Currently being called with %d events" % len(q)) for event in q: if event.get('_raw') is None: - self.logger.error( - 'failure outputting event, does not contain _raw') + self.logger.error('failure outputting event, does not contain _raw') else: payload.append(event['_raw']) - self.logger.debug( - "Finished processing events, sending all to AWS S3") + self.logger.debug("Finished processing events, sending all to AWS S3") self._sendPayloads(payload) except Exception as e: import traceback diff --git a/splunk_eventgen/lib/plugins/output/devnull.py b/splunk_eventgen/lib/plugins/output/devnull.py index 70bbdde6..faf26a81 100755 --- a/splunk_eventgen/lib/plugins/output/devnull.py +++ b/splunk_eventgen/lib/plugins/output/devnull.py @@ -1,7 +1,10 @@ from __future__ import division -from outputplugin import OutputPlugin + import logging +from outputplugin import OutputPlugin + + class DevNullOutputPlugin(OutputPlugin): name = 'devnull' MAXQUEUELENGTH = 1000 @@ -21,6 +24,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen_devnullout') + def load(): """Returns an instance of the plugin""" return DevNullOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/file.py b/splunk_eventgen/lib/plugins/output/file.py index d04b23a1..3287c49d 100644 --- a/splunk_eventgen/lib/plugins/output/file.py +++ b/splunk_eventgen/lib/plugins/output/file.py @@ -1,9 +1,11 @@ # Note as implemented this plugin is not threadsafe, file should only be used with one output worker from __future__ import division -from outputplugin import OutputPlugin -import os + import logging +import os + +from outputplugin import OutputPlugin class FileOutputPlugin(OutputPlugin): @@ -11,28 +13,29 @@ class FileOutputPlugin(OutputPlugin): MAXQUEUELENGTH = 10 useOutputQueue = False - validSettings = [ 'fileMaxBytes', 'fileBackupFiles' ] - intSettings = [ 'fileMaxBytes', 'fileBackupFiles' ] + validSettings = ['fileMaxBytes', 'fileBackupFiles'] + intSettings = ['fileMaxBytes', 'fileBackupFiles'] def __init__(self, sample, output_counter=None): OutputPlugin.__init__(self, sample, output_counter) - if sample.fileName == None: + if sample.fileName is None: self.logger.error('outputMode file but file not specified for sample %s' % self._sample.name) raise ValueError('outputMode file but file not specified for sample %s' % self._sample.name) - + self._file = sample.pathParser(sample.fileName) self._fileMaxBytes = sample.fileMaxBytes self._fileBackupFiles = sample.fileBackupFiles self._fileHandle = open(self._file, 'a') self._fileLength = os.stat(self._file).st_size - self.logger.debug("Configured to log to '%s' with maxBytes '%s' with backupCount '%s'" % \ - (self._file, self._fileMaxBytes, self._fileBackupFiles)) + self.logger.debug("Configured to log to '%s' with maxBytes '%s' with backupCount '%s'" % + (self._file, self._fileMaxBytes, self._fileBackupFiles)) def flush(self, q): if len(q) > 0: - self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % (self._sample.name, self._app, self._sample.source)) + self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % + (self._sample.name, self._app, self._sample.source)) # Loop through all the messages and build the long string, write once for each flush # This may cause the file exceed the maxFileBytes a little bit but will greatly improve the performance @@ -52,19 +55,22 @@ def flush(self, q): if self._fileLength > self._fileMaxBytes: self._fileHandle.flush() self._fileHandle.close() - if os.path.exists(self._file+'.'+str(self._fileBackupFiles)): - self.logger.debug('File Output: Removing file: %s' % self._file+'.'+str(self._fileBackupFiles)) - os.unlink(self._file+'.'+str(self._fileBackupFiles)) + if os.path.exists(self._file + '.' + str(self._fileBackupFiles)): + self.logger.debug('File Output: Removing file: %s' % self._file + '.' + + str(self._fileBackupFiles)) + os.unlink(self._file + '.' + str(self._fileBackupFiles)) for x in range(1, self._fileBackupFiles)[::-1]: - self.logger.debug('File Output: Checking for file: %s' % self._file+'.'+str(x)) - if os.path.exists(self._file+'.'+str(x)): - self.logger.debug('File Output: Renaming file %s to %s' % (self._file+'.'+str(x), self._file+'.'+str(x+1))) - os.rename(self._file+'.'+str(x), self._file+'.'+str(x+1)) - os.rename(self._file, self._file+'.1') + self.logger.debug('File Output: Checking for file: %s' % self._file + '.' + str(x)) + if os.path.exists(self._file + '.' + str(x)): + self.logger.debug('File Output: Renaming file %s to %s' % (self._file + '.' + str(x), + self._file + '.' + str(x + 1))) + os.rename(self._file + '.' + str(x), self._file + '.' + str(x + 1)) + os.rename(self._file, self._file + '.1') self._fileHandle = open(self._file, 'w') self._fileLength = 0 except IndexError: - self.logger.warning("IndexError when writting for app '%s' sample '%s'" % (self._app, self._sample.name)) + self.logger.warning( + "IndexError when writting for app '%s' sample '%s'" % (self._app, self._sample.name)) if not self._fileHandle.closed: self._fileHandle.flush() @@ -75,6 +81,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen') + def load(): """Returns an instance of the plugin""" return FileOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index 107371c5..81082a1c 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -1,8 +1,13 @@ from __future__ import division + +import logging +import random +import urllib + from outputplugin import OutputPlugin + try: import requests - import requests_futures from requests import Session from requests_futures.sessions import FuturesSession from concurrent.futures import ThreadPoolExecutor @@ -12,17 +17,17 @@ import ujson as json except: import json -import random -import urllib -import logging + class NoServers(Exception): - def __init__(self,*args,**kwargs): - Exception.__init__(self,*args,**kwargs) + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + class BadConnection(Exception): - def __init__(self,*args,**kwargs): - Exception.__init__(self,*args,**kwargs) + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + class HTTPEventOutputPlugin(OutputPlugin): ''' @@ -30,9 +35,9 @@ class HTTPEventOutputPlugin(OutputPlugin): to splunk through the HTTP event input. In order to use this output plugin, you will need to supply an attribute 'httpeventServers' as a valid json object. this json object should look like the following: - + {servers:[{ protocol:http/https, address:127.0.0.1, port:8088, key:12345-12345-123123123123123123}]} - + ''' name = 'httpevent' MAXQUEUELENGTH = 1000 @@ -44,11 +49,11 @@ class HTTPEventOutputPlugin(OutputPlugin): def __init__(self, sample, output_counter=None): OutputPlugin.__init__(self, sample, output_counter) - #TODO: make workers a param that can be set in eventgen.conf + # TODO: make workers a param that can be set in eventgen.conf def _setup_REST_workers(self, session=None, workers=10): - #disable any "requests" warnings + # disable any "requests" warnings requests.packages.urllib3.disable_warnings() - #Bind passed in samples to the outputter. + # Bind passed in samples to the outputter. self.lastsourcetype = None if not session: session = Session() @@ -67,8 +72,8 @@ def _urlencode(value): @staticmethod def _bg_convert_json(sess, resp): ''' - Takes a futures session object, and will set the data to a parsed json output. Use this as a background task - for the sesssion queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) + Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the + session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) :param sess: futures session object. Automatically called on a background_callback as aruguments. :param resp: futures resp object. Automatically called on a background_callback as aruguments. :return: @@ -83,12 +88,14 @@ def _bg_convert_json(sess, resp): def updateConfig(self, config): OutputPlugin.updateConfig(self, config) try: - if hasattr(self.config, 'httpeventServers') == False: + if hasattr(self.config, 'httpeventServers') is False: if hasattr(self._sample, 'httpeventServers'): self.config.httpeventServers = self._sample.httpeventServers else: - self.logger.error('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) - raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + self.logger.error( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + raise NoServers( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) # set default output mode to round robin if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: self.httpeventoutputmode = config.httpeventOutputMode @@ -106,9 +113,9 @@ def updateConfig(self, config): self.httpeventmaxsize = 10000 self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) if isinstance(config.httpeventServers, str): - self.httpeventServers = json.loads(config.httpeventServers) + self.httpeventServers = json.loads(config.httpeventServers) else: - self.httpeventServers = config.httpeventServers + self.httpeventServers = config.httpeventServers self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) self.createConnections() self.logger.debug("Pool created.") @@ -116,27 +123,40 @@ def updateConfig(self, config): except Exception as e: self.logger.exception(e) - def createConnections(self): self.serverPool = [] if self.httpeventServers: for server in self.httpeventServers.get('servers'): if not server.get('address'): - self.logger.error('requested a connection to a httpevent server, but no address specified for sample %s' % self._sample.name) - raise ValueError('requested a connection to a httpevent server, but no address specified for sample %s' % self._sample.name) + self.logger.error( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + raise ValueError( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) if not server.get('port'): - self.logger.error('requested a connection to a httpevent server, but no port specified for server %s' % server) - raise ValueError('requested a connection to a httpevent server, but no port specified for server %s' % server) + self.logger.error( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) if not server.get('key'): - self.logger.error('requested a connection to a httpevent server, but no key specified for server %s' % server) - raise ValueError('requested a connection to a httpevent server, but no key specified for server %s' % server) + self.logger.error( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error('requested a connection to a httpevent server, but no protocol specified for server %s' % server) - raise ValueError('requested a connection to a httpevent server, but no protocol specified for server %s' % server) - self.logger.debug("Validation Passed, Creating a requests object for server: %s" % server.get('address')) + self.logger.error( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + raise ValueError( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + self.logger.debug( + "Validation Passed, Creating a requests object for server: %s" % server.get('address')) setserver = {} - setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), server.get('port')) + setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), + server.get('port')) setserver['header'] = "Splunk %s" % server.get('key') self.logger.debug("Adding server set to pool, server: %s" % setserver) self.serverPool.append(setserver) @@ -151,15 +171,15 @@ def _sendHTTPEvents(self, payload): numberevents = len(payload) self.logger.debug("Sending %s events to splunk" % numberevents) for line in payload: - self.logger.debugv("line: %s " % line) + self.logger.debug("line: %s " % line) targetline = json.dumps(line) - self.logger.debugv("targetline: %s " % targetline) + self.logger.debug("targetline: %s " % targetline) targetlinesize = len(targetline) totalbytesexpected += targetlinesize if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): stringpayload = stringpayload + targetline currentreadsize = currentreadsize + targetlinesize - self.logger.debugv("stringpayload: %s " % stringpayload) + self.logger.debug("stringpayload: %s " % stringpayload) else: self.logger.debug("Max size for payload hit, sending to splunk then continuing.") try: @@ -173,7 +193,9 @@ def _sendHTTPEvents(self, payload): else: try: totalbytessent += len(stringpayload) - self.logger.debug("End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % (totalbytessent, totalbytesexpected)) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) self._transmitEvents(stringpayload) except Exception as e: self.logger.exception(e) @@ -181,7 +203,7 @@ def _sendHTTPEvents(self, payload): def _transmitEvents(self, payloadstring): targetServer = [] - self.logger.debugv("Transmission called with payloadstring: %s " % payloadstring) + self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) if self.httpeventoutputmode == "mirror": targetServer = self.serverPool else: @@ -194,12 +216,15 @@ def _transmitEvents(self, payloadstring): headers['content-type'] = 'application/json' try: payloadsize = len(payloadstring) - #response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append(self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + # response = requests.post(url, data=payloadstring, headers=headers, verify=False) + self.active_sessions.append( + self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) except Exception as e: self.logger.error("Failed for exception: %s" % e) - self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % (url, self.lastsourcetype, payloadsize)) - self.logger.debugv("Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) + self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % + (url, self.lastsourcetype, payloadsize)) + self.logger.debug( + "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) raise e def flush(self, q): @@ -208,39 +233,37 @@ def flush(self, q): if len(q) > 0: try: payload = [] - lastsourcetype = "" - payloadsize = 0 self.logger.debug("Currently being called with %d events" % len(q)) for event in q: - self.logger.debugv("HTTPEvent proccessing event: %s" % event) + self.logger.debug("HTTPEvent proccessing event: %s" % event) payloadFragment = {} - if event.get('_raw') == None or event['_raw'] == "\n": + if event.get('_raw') is None or event['_raw'] == "\n": self.logger.error('failure outputting event, does not contain _raw') else: - self.logger.debugv("Event contains _raw, attempting to process...") + self.logger.debug("Event contains _raw, attempting to process...") payloadFragment['event'] = event['_raw'] if event.get('source'): - self.logger.debugv("Event contains source, adding to httpevent event") + self.logger.debug("Event contains source, adding to httpevent event") payloadFragment['source'] = event['source'] if event.get('sourcetype'): - self.logger.debugv("Event contains sourcetype, adding to httpevent event") + self.logger.debug("Event contains sourcetype, adding to httpevent event") payloadFragment['sourcetype'] = event['sourcetype'] self.lastsourcetype = event['sourcetype'] if event.get('host'): - self.logger.debugv("Event contains host, adding to httpevent event") + self.logger.debug("Event contains host, adding to httpevent event") payloadFragment['host'] = event['host'] if event.get('_time'): # make sure _time can be an epoch timestamp try: float(event.get("_time")) - self.logger.debugv("Event contains _time, adding to httpevent event") + self.logger.debug("Event contains _time, adding to httpevent event") payloadFragment['time'] = event['_time'] except: self.logger.error("Timestamp not in epoch format, ignoring event: {0}".format(event)) if event.get('index'): - self.logger.debugv("Event contains index, adding to httpevent event") + self.logger.debug("Event contains index, adding to httpevent event") payloadFragment['index'] = event['index'] - self.logger.debugv("Full payloadFragment: %s" % json.dumps(payloadFragment)) + self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) payload.append(payloadFragment) self.logger.debug("Finished processing events, sending all to splunk") self._sendHTTPEvents(payload) @@ -250,8 +273,10 @@ def flush(self, q): if not response.raise_for_status(): self.logger.debug("Payload successfully sent to httpevent server.") else: - self.logger.error("Server returned an error while trying to send, response code: %s" % response.status_code) - raise BadConnection("Server returned an error while sending, response code: %s" % response.status_code) + self.logger.error("Server returned an error while trying to send, response code: %s" % + response.status_code) + raise BadConnection( + "Server returned an error while sending, response code: %s" % response.status_code) else: self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") except Exception as e: @@ -260,6 +285,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen_httpeventout') + def load(): """Returns an instance of the plugin""" return HTTPEventOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/modinput.py b/splunk_eventgen/lib/plugins/output/modinput.py index ac748396..cd2b792b 100644 --- a/splunk_eventgen/lib/plugins/output/modinput.py +++ b/splunk_eventgen/lib/plugins/output/modinput.py @@ -4,10 +4,13 @@ # from eventgenoutputtemplates import OutputTemplate from __future__ import division -from outputplugin import OutputPlugin + +import logging import sys from xml.sax.saxutils import escape -import logging + +from outputplugin import OutputPlugin + class ModInputOutputPlugin(OutputPlugin): name = 'modinput' @@ -45,6 +48,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen') + def load(): """Returns an instance of the plugin""" - return ModInputOutputPlugin \ No newline at end of file + return ModInputOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/s2s.py b/splunk_eventgen/lib/plugins/output/s2s.py index 26f132e3..6798dbcc 100644 --- a/splunk_eventgen/lib/plugins/output/s2s.py +++ b/splunk_eventgen/lib/plugins/output/s2s.py @@ -1,9 +1,10 @@ from __future__ import division -from outputplugin import OutputPlugin -import struct -import socket import logging +import socket +import struct + +from outputplugin import OutputPlugin class S2S: @@ -60,7 +61,7 @@ def _encode_string(self, tosend=''): by a null terminated string. """ tosend = str(tosend) - return struct.pack('!I%ds' % (len(tosend)+1), len(tosend)+1, tosend) + return struct.pack('!I%ds' % (len(tosend) + 1), len(tosend) + 1, tosend) def _encode_key_value(self, key='', value=''): """ @@ -74,30 +75,29 @@ def _encode_event(self, index='main', host='', source='', sourcetype='', _raw='_ # Create signature sig = self._encode_sig() - msg_size = len(struct.pack('!I', 0)) # size of unsigned 32 bit integer, which is the count of map entries + msg_size = len(struct.pack('!I', 0)) # size of unsigned 32 bit integer, which is the count of map entries maps = 1 # May not have these, so set them first encoded_source = False encoded_sourcetype = False encoded_host = False - encoded_index = False # Encode source if len(source) > 0: - encoded_source = self._encode_key_value('MetaData:Source', 'source::'+source) + encoded_source = self._encode_key_value('MetaData:Source', 'source::' + source) maps += 1 msg_size += len(encoded_source) # Encode sourcetype if len(sourcetype) > 0: - encoded_sourcetype = self._encode_key_value('MetaData:Sourcetype', 'sourcetype::'+sourcetype) + encoded_sourcetype = self._encode_key_value('MetaData:Sourcetype', 'sourcetype::' + sourcetype) maps += 1 msg_size += len(encoded_sourcetype) - + # Encode host if len(host) > 0: - encoded_host = self._encode_key_value('MetaData:Host', 'host::'+host) + encoded_host = self._encode_key_value('MetaData:Host', 'host::' + host) maps += 1 msg_size += len(encoded_host) @@ -105,7 +105,7 @@ def _encode_event(self, index='main', host='', source='', sourcetype='', _raw='_ encoded_index = self._encode_key_value('_MetaData:Index', index) maps += 1 msg_size += len(encoded_index) - + # Encode _raw encoded_raw = self._encode_key_value('_raw', _raw) msg_size += len(encoded_raw) @@ -124,7 +124,7 @@ def _encode_event(self, index='main', host='', source='', sourcetype='', _raw='_ msg_size += len(encoded_done) # Encode _time - if _time != None: + if _time is not None: encoded_time = self._encode_key_value('_time', _time) msg_size += len(encoded_time) maps += 1 @@ -163,6 +163,7 @@ def close(self): """ self.s.close() + class S2SOutputPlugin(OutputPlugin): name = 's2s' MAXQUEUELENGTH = 10 diff --git a/splunk_eventgen/lib/plugins/output/splunkstream.py b/splunk_eventgen/lib/plugins/output/splunkstream.py index 39fb8432..e258872c 100644 --- a/splunk_eventgen/lib/plugins/output/splunkstream.py +++ b/splunk_eventgen/lib/plugins/output/splunkstream.py @@ -1,10 +1,14 @@ from __future__ import division -from outputplugin import OutputPlugin -from xml.dom import minidom -from collections import deque -import httplib, httplib2 -import urllib + +import httplib import logging +import urllib +from collections import deque +from xml.dom import minidom + +import httplib2 + +from outputplugin import OutputPlugin class SplunkStreamOutputPlugin(OutputPlugin): @@ -29,24 +33,31 @@ def __init__(self, sample, output_counter=None): from eventgenconfig import Config globals()['c'] = Config() - self._splunkUrl, self._splunkMethod, self._splunkHost, self._splunkPort = c.getSplunkUrl(self._sample) + self._splunkUrl, self._splunkMethod, self._splunkHost, self._splunkPort = c.getSplunkUrl(self._sample) # noqa self._splunkUser = self._sample.splunkUser self._splunkPass = self._sample.splunkPass if not self._sample.sessionKey: try: myhttp = httplib2.Http(disable_ssl_certificate_validation=True) - self.logger.debug("Getting session key from '%s' with user '%s' and pass '%s'" % (self._splunkUrl + '/services/auth/login', self._splunkUser, self._splunkPass)) - response = myhttp.request(self._splunkUrl + '/services/auth/login', 'POST', - headers = {}, body=urllib.urlencode({'username': self._splunkUser, - 'password': self._splunkPass}))[1] - self._sample.sessionKey = minidom.parseString(response).getElementsByTagName('sessionKey')[0].childNodes[0].nodeValue + self.logger.debug("Getting session key from '%s' with user '%s' and pass '%s'" % + (self._splunkUrl + '/services/auth/login', self._splunkUser, self._splunkPass)) + response = myhttp.request( + self._splunkUrl + '/services/auth/login', 'POST', headers={}, body=urllib.urlencode({ + 'username': + self._splunkUser, 'password': + self._splunkPass}))[1] + self._sample.sessionKey = minidom.parseString(response).getElementsByTagName( + 'sessionKey')[0].childNodes[0].nodeValue self.logger.debug("Got new session for splunkstream, sessionKey '%s'" % self._sample.sessionKey) except: - self.logger.error("Error getting session key for non-SPLUNK_EMBEEDED for sample '%s'. Credentials are missing or wrong" % self._sample.name) - raise IOError("Error getting session key for non-SPLUNK_EMBEEDED for sample '%s'. Credentials are missing or wrong" % self._sample.name) + self.logger.error("Error getting session key for non-SPLUNK_EMBEEDED for sample '%s'." % + self._sample.name + " Credentials are missing or wrong") + raise IOError("Error getting session key for non-SPLUNK_EMBEEDED for sample '%s'." % self._sample.name + + "Credentials are missing or wrong") - self.logger.debug("Retrieved session key '%s' for Splunk session for sample %s'" % (self._sample.sessionKey, self._sample.name)) + self.logger.debug("Retrieved session key '%s' for Splunk session for sample %s'" % (self._sample.sessionKey, + self._sample.name)) def flush(self, q): if len(q) > 0: @@ -78,7 +89,8 @@ def flush(self, q): except KeyError: pass - self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % (self._sample.name, self._app, self._sample.source)) + self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % + (self._sample.name, self._app, self._sample.source)) try: if self._splunkMethod == 'https': connmethod = httplib.HTTPSConnection @@ -111,11 +123,14 @@ def flush(self, q): msg = False splunkhttp.request("POST", url, streamout, headers) - self.logger.debug("POSTing to url %s on %s://%s:%s with sessionKey %s" \ - % (url, self._splunkMethod, self._splunkHost, self._splunkPort, self._sample.sessionKey)) + self.logger.debug( + "POSTing to url %s on %s://%s:%s with sessionKey %s" % + (url, self._splunkMethod, self._splunkHost, self._splunkPort, self._sample.sessionKey)) except httplib.HTTPException, e: - self.logger.error('Error connecting to Splunk for logging for sample %s. Exception "%s" Config: %s' % (self._sample.name, e.args, self)) + self.logger.error( + 'Error connecting to Splunk for logging for sample %s. Exception "%s" Config: %s' % + (self._sample.name, e.args, self)) raise IOError('Error connecting to Splunk for logging for sample %s' % self._sample) try: diff --git a/splunk_eventgen/lib/plugins/output/spool.py b/splunk_eventgen/lib/plugins/output/spool.py index cd478123..60a76d69 100644 --- a/splunk_eventgen/lib/plugins/output/spool.py +++ b/splunk_eventgen/lib/plugins/output/spool.py @@ -4,18 +4,21 @@ # from eventgenoutputtemplates import OutputTemplate from __future__ import division -from outputplugin import OutputPlugin -import time -import os + import logging +import os +import time + +from outputplugin import OutputPlugin + class SpoolOutputPlugin(OutputPlugin): useOutputQueue = True name = 'spool' MAXQUEUELENGTH = 10 - validSettings = [ 'spoolDir', 'spoolFile' ] - defaultableSettings = [ 'spoolDir', 'spoolFile' ] + validSettings = ['spoolDir', 'spoolFile'] + defaultableSettings = ['spoolDir', 'spoolFile'] _spoolDir = None _spoolFile = None @@ -28,7 +31,8 @@ def __init__(self, sample, output_counter=None): def flush(self, q): if len(q) > 0: - self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % (self._sample.name, self._app, self._sample.source)) + self.logger.debug("Flushing output for sample '%s' in app '%s' for queue '%s'" % + (self._sample.name, self._app, self._sample.source)) # Keep trying to open destination file as it might be touched by other processes data = ''.join(event['_raw'] for event in q if event.get('_raw')) while True: diff --git a/splunk_eventgen/lib/plugins/output/stdout.py b/splunk_eventgen/lib/plugins/output/stdout.py index 3edc44df..a0ea46e1 100644 --- a/splunk_eventgen/lib/plugins/output/stdout.py +++ b/splunk_eventgen/lib/plugins/output/stdout.py @@ -1,7 +1,10 @@ from __future__ import division -from outputplugin import OutputPlugin + import logging +from outputplugin import OutputPlugin + + class StdOutOutputPlugin(OutputPlugin): useOutputQueue = False name = 'stdout' @@ -17,6 +20,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen_stdout') + def load(): """Returns an instance of the plugin""" - return StdOutOutputPlugin \ No newline at end of file + return StdOutOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/syslogout.py b/splunk_eventgen/lib/plugins/output/syslogout.py index eb07a2e1..b1faad28 100644 --- a/splunk_eventgen/lib/plugins/output/syslogout.py +++ b/splunk_eventgen/lib/plugins/output/syslogout.py @@ -1,22 +1,28 @@ from __future__ import division + +import logging +import logging.handlers + from outputplugin import OutputPlugin -import logging, logging.handlers # Dict of flags to gate adding the syslogHandler only once to the given singleton logger loggerInitialized = {} + class SyslogOutOutputPlugin(OutputPlugin): useOutputQueue = True name = 'syslogout' MAXQUEUELENGTH = 10 - validSettings = [ 'syslogDestinationHost', 'syslogDestinationPort' ] - defaultableSettings = [ 'syslogDestinationHost', 'syslogDestinationPort' ] - intSettings = [ 'syslogDestinationPort' ] + validSettings = ['syslogDestinationHost', 'syslogDestinationPort'] + defaultableSettings = ['syslogDestinationHost', 'syslogDestinationPort'] + intSettings = ['syslogDestinationPort'] def __init__(self, sample, output_counter=None): OutputPlugin.__init__(self, sample, output_counter) - self._syslogDestinationHost = sample.syslogDestinationHost if hasattr(sample, 'syslogDestinationHost') and sample.syslogDestinationHost else '127.0.0.1' - self._syslogDestinationPort = sample.syslogDestinationPort if hasattr(sample, 'syslogDestinationPort') and sample.syslogDestinationPort else 1514 + self._syslogDestinationHost = sample.syslogDestinationHost if hasattr( + sample, 'syslogDestinationHost') and sample.syslogDestinationHost else '127.0.0.1' + self._syslogDestinationPort = sample.syslogDestinationPort if hasattr( + sample, 'syslogDestinationPort') and sample.syslogDestinationPort else 1514 loggerName = 'syslog' + sample.name self._l = logging.getLogger(loggerName) @@ -25,8 +31,9 @@ def __init__(self, sample, output_counter=None): global loggerInitialized # This class is instantiated at least once each interval. Since each logger with a given name is a singleton, # only add the syslog handler once instead of every interval. - if not loggerName in loggerInitialized: - syslogHandler = logging.handlers.SysLogHandler(address=(self._syslogDestinationHost, int(self._syslogDestinationPort))) + if loggerName not in loggerInitialized: + syslogHandler = logging.handlers.SysLogHandler( + address=(self._syslogDestinationHost, int(self._syslogDestinationPort))) self._l.addHandler(syslogHandler) loggerInitialized[loggerName] = True @@ -34,6 +41,7 @@ def flush(self, q): for x in q: self._l.info(x['_raw'].rstrip()) + def load(): """Returns an instance of the plugin""" return SyslogOutOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/tcpout.py b/splunk_eventgen/lib/plugins/output/tcpout.py index 3432d4bd..4658a00f 100644 --- a/splunk_eventgen/lib/plugins/output/tcpout.py +++ b/splunk_eventgen/lib/plugins/output/tcpout.py @@ -1,7 +1,10 @@ from __future__ import division -from outputplugin import OutputPlugin + import logging +from outputplugin import OutputPlugin + + class TcpOutputPlugin(OutputPlugin): useOutputQueue = False name = 'tcpout' @@ -10,13 +13,14 @@ class TcpOutputPlugin(OutputPlugin): def __init__(self, sample, output_counter=None): OutputPlugin.__init__(self, sample, output_counter) - self._tcpDestinationHost = sample.tcpDestinationHost if hasattr(sample,'tcpDestinationHost') and sample.tcpDestinationHost else '127.0.0.1' - self._tcpDestinationPort = sample.tcpDestinationPort if hasattr(sample,'tcpDestinationPort') and sample.tcpDestinationPort else '3333' + self._tcpDestinationHost = sample.tcpDestinationHost if hasattr( + sample, 'tcpDestinationHost') and sample.tcpDestinationHost else '127.0.0.1' + self._tcpDestinationPort = sample.tcpDestinationPort if hasattr( + sample, 'tcpDestinationPort') and sample.tcpDestinationPort else '3333' import socket # Import socket module self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - # Bind to the port def flush(self, q): self.s.connect((self._tcpDestinationHost, int(self._tcpDestinationPort))) self.logger.info("Socket connected to {0}:{1}".format(self._tcpDestinationHost, self._tcpDestinationPort)) @@ -27,6 +31,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen') + def load(): """Returns an instance of the plugin""" - return TcpOutputPlugin \ No newline at end of file + return TcpOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/udpout.py b/splunk_eventgen/lib/plugins/output/udpout.py index 43477d0f..30e74324 100644 --- a/splunk_eventgen/lib/plugins/output/udpout.py +++ b/splunk_eventgen/lib/plugins/output/udpout.py @@ -1,7 +1,10 @@ from __future__ import division -from outputplugin import OutputPlugin + import logging +from outputplugin import OutputPlugin + + class UdpOutputPlugin(OutputPlugin): useOutputQueue = False name = 'udpout' @@ -10,8 +13,10 @@ class UdpOutputPlugin(OutputPlugin): def __init__(self, sample, output_counter=None): OutputPlugin.__init__(self, sample, output_counter) - self._udpDestinationHost = sample.udpDestinationHost if hasattr(sample,'udpDestinationHost') and sample.udpDestinationHost else '127.0.0.1' - self._udpDestinationPort = sample.udpDestinationPort if hasattr(sample,'udpDestinationPort') and sample.udpDestinationPort else '3333' + self._udpDestinationHost = sample.udpDestinationHost if hasattr( + sample, 'udpDestinationHost') and sample.udpDestinationHost else '127.0.0.1' + self._udpDestinationPort = sample.udpDestinationPort if hasattr( + sample, 'udpDestinationPort') and sample.udpDestinationPort else '3333' import socket # Import socket module self.s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) @@ -25,6 +30,7 @@ def flush(self, q): def _setup_logging(self): self.logger = logging.getLogger('eventgen') + def load(): """Returns an instance of the plugin""" - return UdpOutputPlugin \ No newline at end of file + return UdpOutputPlugin diff --git a/splunk_eventgen/lib/plugins/rater/config.py b/splunk_eventgen/lib/plugins/rater/config.py index d15136bd..846b080d 100644 --- a/splunk_eventgen/lib/plugins/rater/config.py +++ b/splunk_eventgen/lib/plugins/rater/config.py @@ -1,9 +1,9 @@ from __future__ import division + +import datetime import logging import logging.handlers -import datetime import random -import os class ConfigRater(object): @@ -21,7 +21,7 @@ def __init__(self, sample): def __str__(self): """Only used for debugging, outputs a pretty printed representation of this output""" # Eliminate recursive going back to parent - temp = dict([ (key, value) for (key, value) in self.__dict__.items() if key != '_c']) + # temp = dict([(key, value) for (key, value) in self.__dict__.items() if key != '_c']) # return pprint.pformat(temp) return "" @@ -50,21 +50,21 @@ def rate(self): self.logger.error('No sample found for default generator, cannot generate events') self._sample.count = len(self._sample.sampleDict) self._generatorWorkers = int(self._generatorWorkers) - count = self._sample.count/self._generatorWorkers + count = self._sample.count / self._generatorWorkers # 5/8/12 CS We've requested not the whole file, so we should adjust count based on # hourOfDay, dayOfWeek and randomizeCount configs rateFactor = 1.0 if self._sample.randomizeCount: try: - self.logger.debug("randomizeCount for sample '%s' in app '%s' is %s" - % (self._sample.name, self._sample.app, self._sample.randomizeCount)) + self.logger.debug("randomizeCount for sample '%s' in app '%s' is %s" % + (self._sample.name, self._sample.app, self._sample.randomizeCount)) # If we say we're going to be 20% variable, then that means we # can be .1% high or .1% low. Math below does that. randBound = round(self._sample.randomizeCount * 1000, 0) rand = random.randint(0, randBound) - randFactor = 1+((-((randBound / 2) - rand)) / 1000) - self.logger.debug("randFactor for sample '%s' in app '%s' is %s" \ - % (self._sample.name, self._sample.app, randFactor)) + randFactor = 1 + ((-((randBound / 2) - rand)) / 1000) + self.logger.debug( + "randFactor for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, randFactor)) rateFactor *= randFactor except: import traceback @@ -73,12 +73,14 @@ def rate(self): if type(self._sample.hourOfDayRate) == dict: try: rate = self._sample.hourOfDayRate[str(self._sample.now().hour)] - self.logger.debug("hourOfDayRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debug( + "hourOfDayRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.dayOfWeekRate) == dict: try: weekday = datetime.date.weekday(self._sample.now()) @@ -87,43 +89,52 @@ def rate(self): else: weekday += 1 rate = self._sample.dayOfWeekRate[str(weekday)] - self.logger.debugv("dayOfWeekRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debug( + "dayOfWeekRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback - stack = traceback.format_exc() - self.logger.error("Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + stack = traceback.format_exc() + self.logger.error( + "Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.minuteOfHourRate) == dict: try: rate = self._sample.minuteOfHourRate[str(self._sample.now().minute)] - self.logger.debugv("minuteOfHourRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debug( + "minuteOfHourRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback - stack = traceback.format_exc() - self.logger.error("Minute of hour rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + stack = traceback.format_exc() + self.logger.error( + "Minute of hour rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.dayOfMonthRate) == dict: try: rate = self._sample.dayOfMonthRate[str(self._sample.now().day)] - self.logger.debugv("dayOfMonthRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debug( + "dayOfMonthRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback - stack = traceback.format_exc() - self.logger.error("Day of Month rate for sample '%s' failed. Stacktrace %s" % (self._sample.name, stack)) + stack = traceback.format_exc() + self.logger.error( + "Day of Month rate for sample '%s' failed. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.monthOfYearRate) == dict: try: rate = self._sample.monthOfYearRate[str(self._sample.now().month)] - self.logger.debugv("monthOfYearRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debug( + "monthOfYearRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback - stack = traceback.format_exc() - self.logger.error("Month Of Year rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + stack = traceback.format_exc() + self.logger.error( + "Month Of Year rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) ret = int(round(count * rateFactor, 0)) if rateFactor != 1.0: self.logger.debug("Original count: %s Rated count: %s Rate factor: %s" % (count, ret, rateFactor)) return ret + def load(): return ConfigRater diff --git a/splunk_eventgen/lib/plugins/rater/perdayvolume.py b/splunk_eventgen/lib/plugins/rater/perdayvolume.py index cfdf8746..3c8d217f 100644 --- a/splunk_eventgen/lib/plugins/rater/perdayvolume.py +++ b/splunk_eventgen/lib/plugins/rater/perdayvolume.py @@ -1,7 +1,8 @@ from __future__ import division -from config import ConfigRater + import datetime import random +from config import ConfigRater class PerDayVolume(ConfigRater): @@ -16,7 +17,7 @@ def __init__(self, sample): self._generatorWorkers = self._sample.config.generatorWorkers def rate(self): - perdayvolume = float(self._sample.perDayVolume)/self._generatorWorkers + perdayvolume = float(self._sample.perDayVolume) / self._generatorWorkers # Convert perdayvolume to bytes from GB perdayvolume = perdayvolume * 1024 * 1024 * 1024 interval = self._sample.interval @@ -28,21 +29,20 @@ def rate(self): perintervalvolume = (perdayvolume / intervalsperday) count = self._sample.count - # 5/8/12 CS We've requested not the whole file, so we should adjust count based on # hourOfDay, dayOfWeek and randomizeCount configs rateFactor = 1.0 - if self._sample.randomizeCount != 0 and self._sample.randomizeCount != None: + if self._sample.randomizeCount != 0 and self._sample.randomizeCount is not None: try: - self.logger.debugv("randomizeCount for sample '%s' in app '%s' is %s" \ - % (self._sample.name, self._sample.app, self._sample.randomizeCount)) + self.logger.debugv("randomizeCount for sample '%s' in app '%s' is %s" % + (self._sample.name, self._sample.app, self._sample.randomizeCount)) # If we say we're going to be 20% variable, then that means we # can be .1% high or .1% low. Math below does that. randBound = round(self._sample.randomizeCount * 1000, 0) rand = random.randint(0, randBound) - randFactor = 1+((-((randBound / 2) - rand)) / 1000) - self.logger.debug("randFactor for sample '%s' in app '%s' is %s" \ - % (self._sample.name, self._sample.app, randFactor)) + randFactor = 1 + ((-((randBound / 2) - rand)) / 1000) + self.logger.debug( + "randFactor for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, randFactor)) rateFactor *= randFactor except: import traceback @@ -51,12 +51,14 @@ def rate(self): if type(self._sample.hourOfDayRate) == dict: try: rate = self._sample.hourOfDayRate[str(self._sample.now().hour)] - self.logger.debugv("hourOfDayRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debugv( + "hourOfDayRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.dayOfWeekRate) == dict: try: weekday = datetime.date.weekday(self._sample.now()) @@ -65,46 +67,55 @@ def rate(self): else: weekday += 1 rate = self._sample.dayOfWeekRate[str(weekday)] - self.logger.debugv("dayOfWeekRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debugv( + "dayOfWeekRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Hour of day rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.minuteOfHourRate) == dict: try: rate = self._sample.minuteOfHourRate[str(self._sample.now().minute)] - self.logger.debugv("minuteOfHourRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debugv( + "minuteOfHourRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Minute of hour rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Minute of hour rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.dayOfMonthRate) == dict: try: rate = self._sample.dayOfMonthRate[str(self._sample.now().day)] - self.logger.debugv("dayOfMonthRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debugv( + "dayOfMonthRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Day of Month rate for sample '%s' failed. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Day of Month rate for sample '%s' failed. Stacktrace %s" % (self._sample.name, stack)) if type(self._sample.monthOfYearRate) == dict: try: rate = self._sample.monthOfYearRate[str(self._sample.now().month)] - self.logger.debugv("monthOfYearRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) + self.logger.debugv( + "monthOfYearRate for sample '%s' in app '%s' is %s" % (self._sample.name, self._sample.app, rate)) rateFactor *= rate except KeyError: import traceback stack = traceback.format_exc() - self.logger.error("Month Of Year rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) + self.logger.error( + "Month Of Year rate failed for sample '%s'. Stacktrace %s" % (self._sample.name, stack)) self.logger.debug("Size per interval: %s, rate factor to adjust by: %s" % (perintervalvolume, rateFactor)) ret = int(round(perintervalvolume * rateFactor, 0)) if rateFactor != 1.0: self.logger.debug("Original count: %s Rated count: %s Rate factor: %s" % (count, ret, rateFactor)) - self.logger.debug("Finished rating, interval: {0}s, generation rate: {1} MB/interval".format(interval, round((ret / 1024 / 1024), 4))) + self.logger.debug("Finished rating, interval: {0}s, generation rate: {1} MB/interval".format( + interval, round((ret / 1024 / 1024), 4))) return ret def load(): - return PerDayVolume \ No newline at end of file + return PerDayVolume diff --git a/splunk_eventgen/lib/timeparser.py b/splunk_eventgen/lib/timeparser.py index 4efeab36..020818b8 100644 --- a/splunk_eventgen/lib/timeparser.py +++ b/splunk_eventgen/lib/timeparser.py @@ -1,86 +1,89 @@ import datetime -import re -import math import logging - +import math +import os +import re # Hack to allow distributing python modules since Splunk doesn't have setuptools # We create the egg outside of Splunk (with a copy of python2.7 and using Python only modules # To avoid being platform specific) and then append the egg path and import the module # If we get a lot of these we'll move the eggs from bin to lib # # python-dateutil acquired from http://labix.org/python-dateutil. BSD Licensed -import sys, os +import sys + path_prepend = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'lib') sys.path.append(path_prepend + '/python_dateutil-1.4.1-py2.7.egg') -import dateutil.parser as dateutil_parser +import dateutil.parser as dateutil_parser # noqa isort:skip # If we're inside eventgen, we'll have a global logger, if not set one up logging.getLogger('eventgen') + # 5-5-2012 CS Replacing TimeParser with our own code to remove Splunk dependency -# Based off spec for relative time identifiers at http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/SearchTimeModifiers#How_to_specify_relative_time_modifiers +# Based off spec for relative time identifiers at http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/SearchTimeModifiers#How_to_specify_relative_time_modifiers # noqa # If we're not relative, we'll try to parse it as an ISO compliant time def timeParser(ts='now', timezone=datetime.timedelta(days=1), now=None, utcnow=None): if ts == 'now': if timezone.days > 0: - if now == None: + if now is None: return datetime.datetime.now() else: return now() else: - if utcnow == None: + if utcnow is None: return datetime.datetime.now() else: return utcnow() + timezone else: if ts[:1] == '+' or ts[:1] == '-': if timezone.days > 0: - if now == None: + if now is None: ret = datetime.datetime.now() else: ret = now() else: - if utcnow == None: + if utcnow is None: ret = datetime.datetime.utcnow() + timezone else: ret = utcnow() + timezone - - unitsre = "(seconds|second|secs|sec|minutes|minute|min|hours|hour|hrs|hr|days|day|weeks|week|w[0-6]|months|month|mon|quarters|quarter|qtrs|qtr|years|year|yrs|yr|s|h|m|d|w|y|w|q)" - reltimere = "(?i)(?P[+-]*)(?P\d{1,})(?P"+unitsre+"{1})(([\@](?P"+unitsre+"{1})((?P[+-])(?P\d+)(?P"+unitsre+"{1}))*)*)" - + + unitsre = "(seconds|second|secs|sec|minutes|minute|min|hours|hour|hrs|hr|days|day|weeks|week|w[0-6]|" + \ + "months|month|mon|quarters|quarter|qtrs|qtr|years|year|yrs|yr|s|h|m|d|w|y|w|q)" + reltimere = "(?i)(?P[+-]*)(?P\d{1,})(?P" + unitsre + "{1})(([\@](?P" + \ + unitsre + "{1})((?P[+-])(?P\d+)(?P" + unitsre + \ + "{1}))*)*)" + results = re.match(reltimere, ts) resultsdict = results.groupdict() - + # Handle first part of the time string - if resultsdict['plusminus'] != None and resultsdict['num'] != None \ - and resultsdict['unit'] != None: + if resultsdict['plusminus'] is not None and resultsdict['num'] is not None \ + and resultsdict['unit'] is not None: ret = timeParserTimeMath(resultsdict['plusminus'], resultsdict['num'], resultsdict['unit'], ret) - + # Now handle snap-to - if resultsdict['snapunit'] != None: + if resultsdict['snapunit'] is not None: if resultsdict['snapunit'] in ('s', 'sec', 'secs', 'second', 'seconds'): - ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, \ - ret.minute, ret.second, 0) + ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, ret.minute, ret.second, 0) elif resultsdict['snapunit'] in ('m', 'min', 'minute', 'minutes'): - ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, \ - ret.minute, 0, 0) + ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, ret.minute, 0, 0) elif resultsdict['snapunit'] in ('h', 'hr', 'hrs', 'hour', 'hours'): ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, 0, 0, 0) elif resultsdict['snapunit'] in ('d', 'day', 'days'): ret = datetime.datetime(ret.year, ret.month, ret.day, 0, 0, 0, 0) - elif re.match('w[0-6]', resultsdict['snapunit']) != None or \ + elif re.match('w[0-6]', resultsdict['snapunit']) is not None or \ resultsdict['snapunit'] in ('w', 'week', 'weeks'): if resultsdict['snapunit'] in ('w', 'week', 'weeks'): resultsdict['snapunit'] = 'w0' weekdaynum = int(resultsdict['snapunit'][1:2]) - + # Convert python's weekdays to Splunk's retweekday = datetime.date.weekday(ret) if retweekday == 6: retweekday = 0 else: retweekday += 1 - + if weekdaynum <= retweekday: ret = ret + datetime.timedelta(days=(weekdaynum - retweekday)) ret = datetime.datetime(ret.year, ret.month, ret.day, 0, 0, 0, 0) @@ -96,23 +99,24 @@ def timeParser(ts='now', timezone=datetime.timedelta(days=1), now=None, utcnow=N ret = datetime.datetime(ret.year, int(math.floor(ret.month / 3.3 + 1) * 3), 1, 0, 0, 0, 0) elif resultsdict['snapunit'] in ('y', 'yr', 'yrs', 'year', 'years'): ret = datetime.datetime(ret.year, 1, 1, 0, 0, 0, 0) - - if resultsdict['snapplusminus'] != None and resultsdict['snaprelnum'] != None \ - and resultsdict['snaprelunit'] != None: - ret = timeParserTimeMath(resultsdict['snapplusminus'], resultsdict['snaprelnum'], - resultsdict['snaprelunit'], ret) + + if resultsdict['snapplusminus'] is not None and resultsdict['snaprelnum'] is not None \ + and resultsdict['snaprelunit'] is not None: + ret = timeParserTimeMath(resultsdict['snapplusminus'], resultsdict['snaprelnum'], + resultsdict['snaprelunit'], ret) return ret - + else: - raise ValueError('Cannot parse relative time string for %s' %(ts)) + raise ValueError('Cannot parse relative time string for %s' % (ts)) else: - # The spec says we must be a ISO8601 time. This parser should be able to handle + # The spec says we must be a ISO8601 time. This parser should be able to handle # more date formats though, so we can be liberal in what we accept return dateutil_parser.parse(ts) - #except ValueError: + # except ValueError: # raise ValueError("Cannot parse date/time for %s" % (ts)) + def timeParserTimeMath(plusminus, num, unit, ret): try: num = int(num) @@ -126,59 +130,59 @@ def timeParserTimeMath(plusminus, num, unit, ret): elif unit in ('d', 'day', 'days'): td = datetime.timedelta(days=int(num)) elif unit in ('w', 'week', 'weeks'): - td = datetime.timedelta(days=(int(num)*7)) - elif re.match('w[0-6]', unit) != None: - logger.error('Day of week is only available in snap-to. Time string: %s' % (ts)) + td = datetime.timedelta(days=(int(num) * 7)) + elif re.match('w[0-6]', unit) is not None: + logging.error('Day of week is only available in snap-to. Time string: %s' % td) return False # Normalize out all year/quarter/months to months and do the math on that - elif unit in ('mon', 'month', 'months') or \ - unit in ('q', 'qtr', 'qtrs', 'quarter', 'quarters') or \ - unit in ('y', 'yr', 'yrs', 'year', 'years'): + elif unit in ('mon', 'month', 'months') or unit in ('q', 'qtr', 'qtrs', 'quarter', 'quarters') or \ + unit in ('y', 'yr', 'yrs', 'year', 'years'): if unit in ('q', 'qtr', 'qtrs', 'quarter', 'quarters'): num *= 3 elif unit in ('y', 'yr', 'yrs', 'year', 'years'): num *= 12 - + monthnum = int(num) * -1 if plusminus == '-' else int(num) if abs(monthnum) / 12 > 0: - yearnum = int(math.floor(abs(monthnum)/12) * -1 if plusminus == '-' else int(math.floor(abs(monthnum)/12))) - monthnum = int((abs(monthnum) % 12) * -1 if plusminus == '-' else int((abs(monthnum)%12))) - ret = datetime.datetime(ret.year + yearnum, ret.month + monthnum, ret.day, ret.hour, - ret.minute, ret.second, ret.microsecond) + yearnum = int( + math.floor(abs(monthnum) / 12) * -1 if plusminus == '-' else int(math.floor(abs(monthnum) / 12))) + monthnum = int((abs(monthnum) % 12) * -1 if plusminus == '-' else int((abs(monthnum) % 12))) + ret = datetime.datetime(ret.year + yearnum, ret.month + monthnum, ret.day, ret.hour, ret.minute, + ret.second, ret.microsecond) elif monthnum > 0: if ret.month + monthnum > 12: - ret = datetime.datetime(ret.year+1, ((ret.month+monthnum)%12), - ret.day, ret.hour, ret.minute, ret.second, ret.microsecond) + ret = datetime.datetime(ret.year + 1, ((ret.month + monthnum) % 12), ret.day, ret.hour, ret.minute, + ret.second, ret.microsecond) else: - ret = datetime.datetime(ret.year, ret.month+monthnum, ret.day, - ret.hour, ret.minute, ret.second, ret.microsecond) + ret = datetime.datetime(ret.year, ret.month + monthnum, ret.day, ret.hour, ret.minute, ret.second, + ret.microsecond) elif monthnum <= 0: if ret.month + monthnum <= 0: - ret = datetime.datetime(ret.year-1, (12-abs(ret.month+monthnum)), - ret.day, ret.hour, ret.minute, ret.second, ret.microsecond) + ret = datetime.datetime(ret.year - 1, (12 - abs(ret.month + monthnum)), ret.day, ret.hour, + ret.minute, ret.second, ret.microsecond) else: - ret = datetime.datetime(ret.year, ret.month+monthnum, ret.day, - ret.hour, ret.minute, ret.second, ret.microsecond) + ret = datetime.datetime(ret.year, ret.month + monthnum, ret.day, ret.hour, ret.minute, ret.second, + ret.microsecond) except ValueError: - logger.error('Cannot parse relative time string') + logging.error('Cannot parse relative time string') import traceback - stack = traceback.format_exc() - logger.debug('%s', stack) + stack = traceback.format_exc() + logging.debug('%s', stack) return False - - if td != None: + + if td is not None: if plusminus == '-': td = td * -1 ret = ret + td - + # Always chop microseconds to maintain compatibility with Splunk's parser ret = datetime.datetime(ret.year, ret.month, ret.day, ret.hour, ret.minute, ret.second) - + return ret - -## Converts Time Delta object to number of seconds in delta + + +# Converts Time Delta object to number of seconds in delta def timeDelta2secs(timeDiff): deltaSecs = (timeDiff.microseconds + (timeDiff.seconds + timeDiff.days * 24 * 3600) * 10**6) / 10**6 return int(deltaSecs) - \ No newline at end of file diff --git a/splunk_eventgen/logger/logger_config.py b/splunk_eventgen/logger/logger_config.py index d2d5b46f..444ef5f9 100644 --- a/splunk_eventgen/logger/logger_config.py +++ b/splunk_eventgen/logger/logger_config.py @@ -2,26 +2,15 @@ 'version': 1, 'formatters': { 'detailed': { - 'class': 'logging.Formatter', - 'format': '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s' - } - }, + 'class': 'logging.Formatter', 'format': + '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s'}}, 'handlers': { 'console': { 'class': 'logging.StreamHandler', 'level': 'INFO', - 'formatter': 'detailed', - }, - 'main': { - 'class': 'logging.FileHandler', - 'filename': 'eventgen-controller-main.log', - 'mode': 'w', - 'formatter': 'detailed', - } - }, - 'root': { - 'level': 'DEBUG', - 'handlers': ['console', 'main'] - }, -} - + 'formatter': 'detailed', }, 'main': { + 'class': 'logging.FileHandler', + 'filename': 'eventgen-controller-main.log', + 'mode': 'w', + 'formatter': 'detailed', }}, + 'root': {'level': 'DEBUG', 'handlers': ['console', 'main']}, } diff --git a/splunk_eventgen/logger/requests_futures/__init__.py b/splunk_eventgen/logger/requests_futures/__init__.py index 9ac9cd31..ac0c4f3e 100755 --- a/splunk_eventgen/logger/requests_futures/__init__.py +++ b/splunk_eventgen/logger/requests_futures/__init__.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- # Requests Futures - """ async requests HTTP library ~~~~~~~~~~~~~~~~~~~~~ @@ -22,8 +21,10 @@ try: # Python 2.7+ from logging import NullHandler except ImportError: + class NullHandler(logging.Handler): def emit(self, record): pass + logging.getLogger(__name__).addHandler(NullHandler()) diff --git a/splunk_eventgen/logger/requests_futures/sessions.py b/splunk_eventgen/logger/requests_futures/sessions.py index 7fba4226..643f4e1d 100755 --- a/splunk_eventgen/logger/requests_futures/sessions.py +++ b/splunk_eventgen/logger/requests_futures/sessions.py @@ -19,9 +19,9 @@ print(response.content) """ -from concurrent.futures import ThreadPoolExecutor, ProcessPoolExecutor +from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor from functools import partial -from pickle import dumps, PickleError +from pickle import PickleError, dumps from requests import Session from requests.adapters import DEFAULT_POOLSIZE, HTTPAdapter @@ -38,9 +38,7 @@ def wrap(self, sup, background_callback, *args_, **kwargs_): class FuturesSession(Session): - - def __init__(self, executor=None, max_workers=2, session=None, *args, - **kwargs): + def __init__(self, executor=None, max_workers=2, session=None, *args, **kwargs): """Creates a FuturesSession Notes @@ -56,8 +54,7 @@ def __init__(self, executor=None, max_workers=2, session=None, *args, executor = ThreadPoolExecutor(max_workers=max_workers) # set connection pool size equal to max_workers if needed if max_workers > DEFAULT_POOLSIZE: - adapter_kwargs = dict(pool_connections=max_workers, - pool_maxsize=max_workers) + adapter_kwargs = dict(pool_connections=max_workers, pool_maxsize=max_workers) self.mount('https://', HTTPAdapter(**adapter_kwargs)) self.mount('http://', HTTPAdapter(**adapter_kwargs)) diff --git a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py index db1e6115..15463bc5 100644 --- a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py +++ b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py @@ -1,25 +1,26 @@ #!/usr/bin/env python # encoding: utf-8 -import sys -import logging import argparse +import logging import signal +import sys +from modinput import ModularInput +from modinput.fields import VerbosityField # Set path so libraries will load from splunk.clilib.bundle_paths import make_splunkhome_path -sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib'])) -sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib', 'splunk_eventgen', 'lib'])) - -from modinput.fields import BooleanField, Field, VerbosityField -from xmloutput import setupLogger, XMLOutputManager -from modinput import ModularInput from splunk_eventgen import eventgen_core from splunk_eventgen.lib import eventgenconfig +from xmloutput import XMLOutputManager, setupLogger + +sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib'])) +sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib', 'splunk_eventgen', 'lib'])) # Initialize logging logger = setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [Eventgen] %(message)s', level=logging.DEBUG, log_name="modinput_eventgen.log", logger_name="eventgen_app") + class SimpleNamespace(dict): """dot.notation access to dictionary attributes""" __getattr__ = dict.get @@ -29,12 +30,8 @@ class SimpleNamespace(dict): class Eventgen(ModularInput): scheme_args = { - 'title': "SA-Eventgen", - 'description': "This modular input generates data for Splunk.", - 'use_external_validation': "true", - 'streaming_mode': "xml", - 'use_single_instance': "False" - } + 'title': "SA-Eventgen", 'description': "This modular input generates data for Splunk.", + 'use_external_validation': "true", 'streaming_mode': "xml", 'use_single_instance': "False"} def __init__(self): logger.debug("Setting up SA-Eventgen Modular Input") @@ -42,9 +39,8 @@ def __init__(self): self.args = [ VerbosityField("verbosity", "Verbosity", - "Logging Level (DEBUG(10), INFO(20), WARN(30), ERROR(40), CRITICAL(50))", - required_on_create=True, required_on_edit=True) - ] + "Logging Level (DEBUG(10), INFO(20), WARN(30), ERROR(40), CRITICAL(50))", + required_on_create=True, required_on_edit=True)] ModularInput.__init__(self, self.scheme_args, self.args) def create_args(self): @@ -138,14 +134,17 @@ def run(self, stanza, input_config, **kwargs): logger.error("Main code exit, Exception caught: %s" % e) raise e + def handler(signum, frame): logger.info("Eventgen Modinput takes signal {0}. Exiting".format(signum)) sys.exit(0) + def handle_signal(): if not sys.platform.startswith('win') and sys.platform != "cygwin": signal.signal(signal.SIGPIPE, handler) + if __name__ == '__main__': handle_signal() worker = Eventgen() diff --git a/splunk_eventgen/splunk_app/lib/modinput/__init__.py b/splunk_eventgen/splunk_app/lib/modinput/__init__.py index 11542901..1d2da228 100644 --- a/splunk_eventgen/splunk_app/lib/modinput/__init__.py +++ b/splunk_eventgen/splunk_app/lib/modinput/__init__.py @@ -10,14 +10,19 @@ import sys import time import xml.dom -from xml.dom.minidom import Document import xml.sax.saxutils +from xml.dom.minidom import Document import splunk import splunk.clilib import splunk.version -from splunk.models.app import App from splunk.clilib.bundle_paths import get_slaveapps_base_path +from splunk.models.app import App +from xmloutput import setupLogger + +from .fields import (BooleanField, Field, FieldValidationException, + IntervalField) + try: from splunk.clilib.bundle_paths import make_splunkhome_path except ImportError: @@ -28,27 +33,13 @@ else: sys.path.append(make_splunkhome_path(["etc", "apps", "@appname@", "lib"])) -from .fields import BooleanField -from .fields import DurationField -from .fields import Field -from .fields import FieldValidationException -from .fields import FloatField -from .fields import IntegerField -from .fields import IntervalField -from .fields import ListField -from .fields import RangeField -from .fields import RegexField -from .fields import SeverityField - -from xmloutput import setupLogger, XMLOutputManager - # Define logger using the name of the script here, versus in the modular_input class. -#logger = log.setup_logger(name='python_modular_input', level=logging.INFO) -logger = setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [ModularInput] %(message)s', level=logging.INFO, log_name="python_modular_input.log", logger_name="modinput") +# logger = log.setup_logger(name='python_modular_input', level=logging.INFO) +logger = setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [ModularInput] %(message)s', level=logging.INFO, + log_name="python_modular_input.log", logger_name="modinput") class ModularInputConfig(object): - def __init__(self, server_host, server_uri, session_key, checkpoint_dir, configuration): self.server_host = server_host self.server_uri = server_uri @@ -135,14 +126,13 @@ class ModularInput(object): # These arguments cover the standard fields that are always supplied standard_args = [ - BooleanField("disabled", "Disabled", "Whether the modular input is disabled or not"), - Field("host", "Host", "The host that is running the input"), - Field("index", "Index", "The index that data should be sent to"), - IntervalField("interval", "Interval", "The interval the script will be run on"), - Field("name", "Stanza name", "The name of the stanza for this modular input"), - Field("source", "Source", "The source for events created by this modular input"), - Field("sourcetype", "Stanza name", "The name of the stanza for this modular input") - ] + BooleanField("disabled", "Disabled", "Whether the modular input is disabled or not"), + Field("host", "Host", "The host that is running the input"), + Field("index", "Index", "The index that data should be sent to"), + IntervalField("interval", "Interval", "The interval the script will be run on"), + Field("name", "Stanza name", "The name of the stanza for this modular input"), + Field("source", "Source", "The source for events created by this modular input"), + Field("sourcetype", "Stanza name", "The name of the stanza for this modular input")] checkpoint_dir = None @@ -401,7 +391,8 @@ def add_xml_args(self, doc, element_args): def do_validation(self, in_stream=sys.stdin): """ - Get the validation data from standard input and attempt to validate it. Returns true if the arguments validated, false otherwise. + Get the validation data from standard input and attempt to validate it. Returns true if the arguments validated, + false otherwise. Arguments: in_stream -- The stream to get the input from (defaults to standard input) @@ -421,7 +412,7 @@ def validate(self, arguments): Validate the argument dictionary where each key is a stanza. Arguments: - arguments -- The arguments as an dictionary where the key is the stanza and the value is a dictionary of the values. + arguments -- a dictionary where the key is the stanza and the value is a dictionary of the values. """ # Check each stanza @@ -541,23 +532,19 @@ def needs_another_run(cls, checkpoint_dir, stanza, interval, cur_time=None): try: last_ran = cls.last_ran(checkpoint_dir, stanza) - return cls.is_expired(last_ran, interval, cur_time) - - except IOError as e: + except IOError: # The file likely doesn't exist logger.exception("The checkpoint file likely doesn't exist") return True - except ValueError as e: + except ValueError: # The file could not be loaded logger.exception("The checkpoint file could not be loaded") return True except Exception as e: - #Catch all that enforces an extra run + # Catch all that enforces an extra run logger.exception("Unexpected exception caught, enforcing extra run, exception info: " + str(e)) return True - # Default return value - return True @classmethod def time_to_next_run(cls, checkpoint_dir, stanza, duration): @@ -582,18 +569,17 @@ def time_to_next_run(cls, checkpoint_dir, stanza, duration): return time_to_next except IOError: # The file likely doesn't exist - logger.warning("Could not read checkpoint file for last time run, likely does not exist, if this persists debug input immediately") + logger.warning("Could not read checkpoint file for last time run, likely does not exist, if this" + + "persists debug input immediately") return 1 except ValueError: # The file could not be loaded - logger.exception("Could not read checkpoint file for last time run, if this persists debug input immediately") + logger.exception( + "Could not read checkpoint file for last time run, if this persists debug input immediately") return 1 except Exception as e: logger.exception("Unexpected exception caught, enforcing extra run, exception info: " + str(e)) return 1 - # Default return value - logger.info("This really should be impossible, but whatevs if your input is breaking check the duration calculations") - return 1 @classmethod def save_checkpoint(cls, checkpoint_dir, stanza, last_run): @@ -663,7 +649,9 @@ def delete_checkpoint_data(self, filename, checkpoint_dir=None): os.unlink(os.path.join(checkpoint_dir, filename)) return True except IOError: - logger.exception('msg="IOError exception when deleting checkpoint data" checkpoint_dir="{}" filename="{}"'.format(checkpoint_dir, filename)) + logger.exception( + 'msg="IOError exception when deleting checkpoint data" checkpoint_dir="{}" filename="{}"'.format( + checkpoint_dir, filename)) return False def set_checkpoint_data(self, filename, data, checkpoint_dir=None): @@ -693,11 +681,17 @@ def set_checkpoint_data(self, filename, data, checkpoint_dir=None): json.dump(data, fp) success = True except IOError: - logger.exception('msg="IOError exception when saving checkpoint data" checkpoint_dir="{}" filename="{}"'.format(checkpoint_dir, filename)) + logger.exception( + 'msg="IOError exception when saving checkpoint data" checkpoint_dir="{}" filename="{}"'.format( + checkpoint_dir, filename)) except ValueError: - logger.exception('msg="ValueError when saving checkpoint data (perhaps invalid JSON)" checkpoint_dir="{}" filename="{}"'.format(checkpoint_dir, filename)) + logger.exception( + 'msg="ValueError when saving checkpoint data (perhaps invalid JSON)" checkpoint_dir="{}" filename="{}"'. + format(checkpoint_dir, filename)) except Exception: - logger.exception('msg="Unknown exception when saving checkpoint data" checkpoint_dir="{}" filename="{}"'.format(checkpoint_dir, filename)) + logger.exception( + 'msg="Unknown exception when saving checkpoint data" checkpoint_dir="{}" filename="{}"'.format( + checkpoint_dir, filename)) return success def get_checkpoint_data(self, filename, checkpoint_dir=None, raise_known_exceptions=False): @@ -727,11 +721,15 @@ def get_checkpoint_data(self, filename, checkpoint_dir=None, raise_known_excepti with open(checkpoint_path, 'r') as fp: data = json.load(fp) except (IOError, ValueError) as e: - logger.exception('msg="Exception when reading checkpoint data" checkpoint_dir="{}" filename="{}" exception="%s"'.format(checkpoint_dir, filename, e)) + logger.exception( + 'msg="Exception when reading checkpoint data" checkpoint_dir="{}" filename="{}" exception="%s"'.format( + checkpoint_dir, filename, e)) if raise_known_exceptions: raise except Exception: - logger.exception('msg="Unknown exception when reading checkpoint data" checkpoint_dir="{}" filename="{}"'.format(checkpoint_dir, filename)) + logger.exception( + 'msg="Unknown exception when reading checkpoint data" checkpoint_dir="{}" filename="{}"'.format( + checkpoint_dir, filename)) raise return data @@ -741,7 +739,8 @@ def do_run(self, in_stream=sys.stdin, log_exception_and_continue=False): Read the config from standard input and return the configuration. in_stream -- The stream to get the input from (defaults to standard input) - log_exception_and_continue -- If true, exceptions will not be thrown for invalid configurations and instead the stanza will be skipped. + log_exception_and_continue -- If true, exceptions will not be thrown for invalid configurations and instead the + stanza will be skipped. """ # Run the modular import @@ -779,14 +778,12 @@ def do_run(self, in_stream=sys.stdin, log_exception_and_continue=False): # Note: The "duration" parameter emulates the behavior of the "interval" # parameter available on Splunk 6.x and higher, and is mainly used by the # VMWare application. - - # TODO: A run() method may pass results back for optional processing - results = None + # TODO: should we collect/process results from run()? if stanzas: if single_instance: # Run the input across all defined stanzas and exit. - results = self.run(stanzas, self._input_config) + self.run(stanzas, self._input_config) else: # Retrieve the single input stanza. stanza = stanzas[0] @@ -795,7 +792,8 @@ def do_run(self, in_stream=sys.stdin, log_exception_and_continue=False): except ValueError as e: # This should never happen unless the author of the modular input # fails to specify "duration" as an IntegerField. - logger.exception("Input stanza '%s' specified an invalid duration: %s" % (stanza.get('name', 'unknown'), str(e))) + logger.exception( + "Input stanza '%s' specified an invalid duration: %s" % (stanza.get('name', 'unknown'), str(e))) # Exit with non-zero exit code so services/admin/inputstatus correctly reflects script status. sys.exit(1) @@ -805,7 +803,7 @@ def do_run(self, in_stream=sys.stdin, log_exception_and_continue=False): # If there splunk 6.0 and interval field is defined, then ignore duration fields completely if stanza.get("interval", -1) >= 0 and splunk.version.__version__ >= '6.0': # Run the single stanza and exit. - results = self.run(stanza, self._input_config) + self.run(stanza, self._input_config) else: # Run duration field if duration > 0 and self.checkpoint_dir: @@ -819,13 +817,13 @@ def do_run(self, in_stream=sys.stdin, log_exception_and_continue=False): # use the name of the input itself, unhashed. Name collisions would # be a configuration error. self.save_checkpoint(self.checkpoint_dir, stanza_name, int(time.time())) - results = self.run(stanza, ) + self.run(stanza, self._input_config) # Results processing, if any, could occur here. time.sleep(ModularInput.time_to_next_run(self.checkpoint_dir, stanza_name, duration)) else: # Duration is not defined # Run the single stanza and exit for Splunk 5.x - results = self.run(stanza, self._input_config) + self.run(stanza, self._input_config) else: logger.info("No input stanzas defined") @@ -899,13 +897,11 @@ def _parse_args(self, argv): parser = argparse.ArgumentParser(description='Modular input parameters') - mode_args= parser.add_mutually_exclusive_group() + mode_args = parser.add_mutually_exclusive_group() debug_args = parser.add_argument_group() - debug_args.add_argument('--username', action="store", default=None, - help="Splunk username (%s)" % warning_text) - debug_args.add_argument('--password', action="store", default=None, - help="Splunk password (%s)" % warning_text) + debug_args.add_argument('--username', action="store", default=None, help="Splunk username (%s)" % warning_text) + debug_args.add_argument('--password', action="store", default=None, help="Splunk password (%s)" % warning_text) debug_args.add_argument('--infile', type=argparse.FileType(), default=None, help="Filename containing XML modular input configuration (%s)" % warning_text) @@ -936,7 +932,7 @@ def execute(self, in_stream=sys.stdin, out_stream=sys.stdout): logger.info("Modular input: validate arguments called") # Exit with a code of -1 if validation failed - if self.do_validation() == False: + if self.do_validation() is False: sys.exit(-1) else: @@ -959,7 +955,8 @@ def execute(self, in_stream=sys.stdin, out_stream=sys.stdout): try: self.do_run(args.infile, log_exception_and_continue=True) except IOError: - logger.exception("Modular input: modinput configuration could not be read from file %s.", args.infile.name) + logger.exception("Modular input: modinput configuration could not be read from file %s.", + args.infile.name) else: try: self.do_run(in_stream, log_exception_and_continue=True) @@ -1034,4 +1031,4 @@ def is_configured(self, app=None, assume_true_on_error=False): except splunk.RESTException: return assume_true_on_error else: - return assume_true_on_error \ No newline at end of file + return assume_true_on_error diff --git a/splunk_eventgen/splunk_app/lib/modinput/fields.py b/splunk_eventgen/splunk_app/lib/modinput/fields.py index 40d6b37b..681ae6d5 100644 --- a/splunk_eventgen/splunk_app/lib/modinput/fields.py +++ b/splunk_eventgen/splunk_app/lib/modinput/fields.py @@ -11,7 +11,8 @@ class FieldValidationException(Exception): class Field(object): """ - This is the base class that should be used to create field validators. Sub-class this and override to_python if you need custom validation. + This is the base class that should be used to create field validators. Sub-class this and override to_python if you + need custom validation. """ DATA_TYPE_STRING = 'string' @@ -32,7 +33,8 @@ def __init__(self, name, title, description, required_on_create=True, required_o Arguments: name -- Set the name of the field (e.g. "database_server") title -- Set the human readable title (e.g. "Database server") - description -- Set the human readable description of the field (e.g. "The IP or domain name of the database server") + description -- Set the human-readable description of the field + (e.g. "The IP or domain name of the database server") required_on_create -- If "true", the parameter is required on input stanza creation. required_on_edit -- If "true", the parameter is required on input stanza modification. @@ -70,7 +72,8 @@ def to_python(self, value): def to_string(self, value): """ - Convert the field to a string value that can be returned. Should throw a FieldValidationException if the data is invalid. + Convert the field to a string value that can be returned. Should throw a FieldValidationException if the data is + invalid. Arguments: value -- The value to convert @@ -80,7 +83,6 @@ def to_string(self, value): class BooleanField(Field): - def to_python(self, value): Field.to_python(self, value) @@ -93,14 +95,15 @@ def to_python(self, value): elif str(value).strip().lower() in ["false", "f", "0"]: return False - raise FieldValidationException("The value of '%s' for the '%s' parameter is not a valid boolean" % (str(value), self.name)) + raise FieldValidationException( + "The value of '%s' for the '%s' parameter is not a valid boolean" % (str(value), self.name)) def to_string(self, value): - if value == True: + if value is True: return "1" - elif value == False: + elif value is False: return "0" return str(value) @@ -110,7 +113,6 @@ def get_data_type(self): class DelimitedField(Field): - def __init__(self, name, title, description, delim, required_on_create=True, required_on_edit=False): super(DelimitedField, self).__init__(name, title, description, required_on_create, required_on_edit) self._delim = delim @@ -154,17 +156,8 @@ class DurationField(Field): WEEK = 604800 UNITS = { - 'w': WEEK, - 'week': WEEK, - 'd': DAY, - 'day': DAY, - 'h': HOUR, - 'hour': HOUR, - 'm': MINUTE, - 'min': MINUTE, - 'minute': MINUTE, - 's': 1 - } + 'w': WEEK, 'week': WEEK, 'd': DAY, 'day': DAY, 'h': HOUR, 'hour': HOUR, 'm': MINUTE, 'min': MINUTE, 'minute': + MINUTE, 's': 1} def to_python(self, value): Field.to_python(self, value) @@ -174,7 +167,8 @@ def to_python(self, value): # Make sure the duration could be parsed if m is None: - raise FieldValidationException("The value of '%s' for the '%s' parameter is not a valid duration" % (str(value), self.name)) + raise FieldValidationException( + "The value of '%s' for the '%s' parameter is not a valid duration" % (str(value), self.name)) # Get the units and duration d = m.groupdict() @@ -185,11 +179,13 @@ def to_python(self, value): try: duration = int(d['duration']) except ValueError: - raise FieldValidationException("The duration '%s' for the '%s' parameter is not a valid number" % (d['duration'], self.name)) + raise FieldValidationException( + "The duration '%s' for the '%s' parameter is not a valid number" % (d['duration'], self.name)) # Make sure the units are valid if len(units) > 0 and units not in DurationField.UNITS: - raise FieldValidationException("The unit '%s' for the '%s' parameter is not a valid unit of duration" % (units, self.name)) + raise FieldValidationException( + "The unit '%s' for the '%s' parameter is not a valid unit of duration" % (units, self.name)) # Convert the units to seconds if len(units) > 0: @@ -202,7 +198,6 @@ def to_string(self, value): class FloatField(Field): - def to_python(self, value): Field.to_python(self, value) @@ -227,7 +222,6 @@ def get_data_type(self): class IntegerField(Field): - def to_python(self, value): Field.to_python(self, value) @@ -270,7 +264,8 @@ class IntervalField(Field): # Note that we don't check explicitly for correct numeric values for each # cron field. - cron_rx = re.compile(''' + cron_rx = re.compile( + ''' ( \d{1,2} # A digit. |\d{1,2}-\d{1,2} # A range. @@ -279,22 +274,20 @@ class IntervalField(Field): |\* # The asterisk character. |\*/\d{1,2} # An asterisk followed by a step. ) - ''', - re.VERBOSE - ) + ''', re.VERBOSE) def to_python(self, value): try: # Try parsing the string as an integer. - tmp = int(value) - return value + return int(value) except ValueError: # Try parsing the string as a cron schedule. if self.parse_cron(value): return value - raise FieldValidationException("The value of '{}' for the '{}' parameter is not a valid value".format(value, self.name)) + raise FieldValidationException("The value of '{}' for the '{}' parameter is not a valid value".format( + value, self.name)) def get_data_type(self): return Field.DATA_TYPE_STRING @@ -309,14 +302,14 @@ def parse_cron(self, value): class JsonField(Field): - def to_python(self, value): Field.to_python(self, value) try: return json.loads(value) except (TypeError, ValueError): - raise FieldValidationException("The value of '%s' for the '%s' parameter is not a valid JSON object" % (str(value), self.name)) + raise FieldValidationException( + "The value of '%s' for the '%s' parameter is not a valid JSON object" % (str(value), self.name)) def to_string(self, value): return str(value) @@ -326,7 +319,6 @@ def get_data_type(self): class ListField(Field): - def to_python(self, value): Field.to_python(self, value) @@ -345,7 +337,6 @@ def to_string(self, value): class RangeField(Field): - def __init__(self, name, title, description, low, high, required_on_create=True, required_on_edit=False): super(RangeField, self).__init__(name, title, description, required_on_create, required_on_edit) self.low = low @@ -379,7 +370,6 @@ def get_data_type(self): class RegexField(Field): - def to_python(self, value): Field.to_python(self, value) @@ -404,11 +394,7 @@ class SeverityField(Field): # Note: We ignore "FATAL" severity since Python's logging assigns it the # same value as "CRITICAL". - SEVERITIES = {'DEBUG': 10, - 'INFO': 20, - 'WARN': 30, - 'ERROR': 40, - 'CRITICAL': 50} + SEVERITIES = {'DEBUG': 10, 'INFO': 20, 'WARN': 30, 'ERROR': 40, 'CRITICAL': 50} SEVERITIES_BY_INT = {v: k for k, v in SEVERITIES.iteritems()} @@ -421,7 +407,8 @@ def to_python(self, value): # Did not receive a string for some reason. pass - raise FieldValidationException("The value of '{}' for the '{}' parameter is not a valid value".format(value, self.name)) + raise FieldValidationException("The value of '{}' for the '{}' parameter is not a valid value".format( + value, self.name)) def to_string(self, value): if value in SeverityField.SEVERITIES_BY_INT: @@ -432,8 +419,8 @@ def to_string(self, value): def get_data_type(self): return Field.DATA_TYPE_NUMBER -class VerbosityField(Field): +class VerbosityField(Field): def to_python(self, value): Field.to_python(self, value) @@ -455,4 +442,4 @@ def to_string(self, value): return "" def get_data_type(self): - return Field.DATA_TYPE_NUMBER \ No newline at end of file + return Field.DATA_TYPE_NUMBER diff --git a/splunk_eventgen/splunk_app/lib/xmloutput.py b/splunk_eventgen/splunk_app/lib/xmloutput.py index 5f378d0d..d1277166 100644 --- a/splunk_eventgen/splunk_app/lib/xmloutput.py +++ b/splunk_eventgen/splunk_app/lib/xmloutput.py @@ -1,9 +1,9 @@ -import xml.sax.saxutils +import datetime import logging import logging.handlers import sys -import time -import datetime +import xml.sax.saxutils + from splunk.appserver.mrsparkle.lib.util import make_splunkhome_path @@ -18,8 +18,8 @@ def setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [ModInput] %( logger.propagate = False # Prevent the log messages from being duplicated in the python.log file logger.setLevel(level) - file_handler = logging.handlers.RotatingFileHandler(make_splunkhome_path(['var', 'log', 'splunk', log_name]), - maxBytes=2500000, backupCount=5) + file_handler = logging.handlers.RotatingFileHandler( + make_splunkhome_path(['var', 'log', 'splunk', log_name]), maxBytes=2500000, backupCount=5) formatter = logging.Formatter(log_format) file_handler.setFormatter(formatter) @@ -30,22 +30,21 @@ def setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [ModInput] %( return logger -######################################################################## -# COMMUNICATION WITH SPLUNKD -# We provide a class for printing data out to splunkd. Essentially this -# is just a wrapper on using xml formatted data delivery to splunkd -######################################################################## +######################################################################### +# COMMUNICATION WITH SPLUNKD # +# We provide a class for printing data out to splunkd. Essentially this # +# is just a wrapper on using xml formatted data delivery to splunkd # +######################################################################### class XMLOutputManager(object): """ - This guy handles writing data to splunkd with modular input xml - streaming mode. + This guy handles writing data to splunkd with modular input xml streaming mode. """ def __init__(self, out=sys.stdout): """ - Construct an output manager. - kwargs: - out - represents the stream to print to. Defaults to sys.stdout. + Construct an output manager. + kwargs: + out - represents the stream to print to. Defaults to sys.stdout. """ self.stream_initiated = False self.out = out @@ -72,13 +71,13 @@ def sendData(self, buf, unbroken=None, sourcetype=None, source=None, host=None, args: buf - the buffer of data to send (string). REQUIRED. kwargs: - unbroken - this is a boolean indicating the buf passed is unbroken data if this is True. + unbroken - this is a boolean indicating the buf passed is unbroken data if this is True. Defaults to False (buf is a single event). sourcetype - the sourcetype to assign to the event (string). Defaults to input default. source - the source to assign to the event (string). Defaults to input default. host - the host to assign to the event (string). Defaults to input default. - time - the time to assign to the event (string of UTC UNIX timestamp, - miliseconds supported). Defaults to letting splunkd work it out. + time - the time to assign to the event (string of UTC UNIX timestamp, + milliseconds supported). Defaults to letting splunkd work it out. index - the index into which the data should be stored. Defaults to the input default. """ if not unbroken: @@ -107,7 +106,7 @@ def sendDoneKey(self, sourcetype=None, source=None, host=None, time=None, index= """ Let splunkd know that previously sent, unbroken events are now complete and ready for processing. Typically you will send some data, like chunks of a log file - then when you know you are done, say at the end of the log file you will send a + then when you know you are done, say at the end of the log file you will send a done key to indicate that sent data may be processed for the provided source, sourcetype, host, and index kwargs: @@ -135,4 +134,4 @@ def sendDoneKey(self, sourcetype=None, source=None, host=None, time=None, index= # prints XML error data to be consumed by Splunk def printError(self, s): - self.out.write("{0}".format(xml.sax.saxutils.escape(s))) \ No newline at end of file + self.out.write("{0}".format(xml.sax.saxutils.escape(s))) diff --git a/tests/large/test_eventgen_orchestration.py b/tests/large/test_eventgen_orchestration.py index d5bc7cbe..19d35da3 100644 --- a/tests/large/test_eventgen_orchestration.py +++ b/tests/large/test_eventgen_orchestration.py @@ -1,16 +1,18 @@ #!/usr/bin/env python # encoding: utf-8 +import json import os import time -import json +from random import choice +from string import ascii_lowercase + import pytest import requests from docker import APIClient -from random import choice -from string import ascii_lowercase # Code to suppress insecure https warnings from requests.packages.urllib3.exceptions import InsecureRequestWarning + requests.packages.urllib3.disable_warnings(InsecureRequestWarning) FILE_DIR = os.path.dirname(os.path.realpath(__file__)) @@ -18,12 +20,14 @@ IMAGE_NAME = "eventgen:test" NETWORK_NAME = "eg_network_test" + def generate_random_string(): return ''.join(choice(ascii_lowercase) for b in range(20)) + def wait_for_response(url, timeout=60): start, end = time.time(), time.time() - while end-start < timeout: + while end - start < timeout: try: r = requests.get(url) r.raise_for_status() @@ -35,249 +39,260 @@ def wait_for_response(url, timeout=60): @pytest.mark.large class TestEventgenOrchestration(object): - ''' - This test class is used to test the Docker image published as part of this repo. - Specifically, this is testing: - * Eventgen "controller" API and responses - * Eventgen "server" API and responses - * Eventgen controller/server orchestration - ''' - - @classmethod - def setup_class(cls): - # Build the image from scratch - cls.client = APIClient(base_url="unix://var/run/docker.sock") - response = cls.client.build(path=REPO_DIR, dockerfile=os.path.join("dockerfiles", "Dockerfile"), tag=IMAGE_NAME, rm=True, nocache=True, pull=True, stream=False) - for line in response: - print line, - # Create a network for both the controller + server to run in - cls.client.create_network(NETWORK_NAME, driver="bridge", attachable=True) - networking_config = cls.client.create_networking_config({NETWORK_NAME: cls.client.create_endpoint_config()}) - # Start the controller - print 'creating controller' - host_config = cls.client.create_host_config(auto_remove=True, publish_all_ports=True) - container = cls.client.create_container(image=IMAGE_NAME, - command="controller", - host_config=host_config, - networking_config=networking_config) - cls.client.start(container["Id"]) - TestEventgenOrchestration.controller_id = container["Id"] - print container["Id"] - cls.controller_container = cls.client.inspect_container(container["Id"]) - cls.controller_eventgen_webport = cls.controller_container["NetworkSettings"]["Ports"]["9500/tcp"][0]["HostPort"] - cls.controller_rabbitmq_webport = cls.controller_container["NetworkSettings"]["Ports"]["15672/tcp"][0]["HostPort"] - # Start the server - print 'creating server' - container = cls.client.create_container(image=IMAGE_NAME, - command="server", - environment=["EVENTGEN_AMQP_HOST={}".format(cls.controller_container["Id"][:12])], - host_config=host_config, - networking_config=networking_config) - cls.client.start(container["Id"]) - TestEventgenOrchestration.server_id = container["Id"] - print container["Id"] - cls.server_container = cls.client.inspect_container(container["Id"]) - cls.server_eventgen_webport = cls.server_container["NetworkSettings"]["Ports"]["9500/tcp"][0]["HostPort"] - cls.server_rabbitmq_webport = cls.server_container["NetworkSettings"]["Ports"]["15672/tcp"][0]["HostPort"] - # Wait for the controller to be available - print "Waiting for Eventgen Controller to become available." - wait_for_response("http://127.0.0.1:{}".format(cls.controller_eventgen_webport)) - print "Eventgen Controller has become available." - # Wait for the server to be available - print "Waiting for Eventgen Server to become available." - wait_for_response("http://127.0.0.1:{}".format(cls.server_eventgen_webport)) - print "Eventgen Server has become available." - time.sleep(60) - - @classmethod - def teardown_class(cls): - cls.client.remove_container(cls.server_container, v=True, force=True) - cls.client.remove_container(cls.controller_container, v=True, force=True) - cls.client.remove_image(IMAGE_NAME, force=True, noprune=False) - cls.client.remove_network(NETWORK_NAME) - - ### Controller tests ### - - def test_controller_rabbitmq(self): - r = requests.get("http://127.0.0.1:{}".format(self.controller_rabbitmq_webport)) - assert r.status_code == 200 - assert "RabbitMQ" in r.content - - def test_controller_root(self): - r = requests.get("http://127.0.0.1:{}".format(self.controller_eventgen_webport)) - assert r.status_code == 200 - assert "Eventgen Controller" in r.content - assert "Host: " in r.content - assert "You are running Eventgen Controller" in r.content - - def test_controller_index(self): - r = requests.get("http://127.0.0.1:{}/index".format(self.controller_eventgen_webport)) - assert r.status_code == 200 - assert "Eventgen Controller" in r.content - assert "Host: " in r.content - assert "You are running Eventgen Controller" in r.content - - def test_controller_status(self): - max_retry = 5 - current_retry = 1 - output = {} - while not output and current_retry <= max_retry: - response = requests.get("http://127.0.0.1:{}/status".format(self.controller_eventgen_webport), timeout=10) - if response.status_code == 200: - output = json.loads(response.content) - current_retry += 1 - time.sleep(10) - assert output - - def test_controller_start(self): - r = requests.post("http://127.0.0.1:{}/start".format(self.controller_eventgen_webport)) - assert r.status_code == 200 - assert "Start event dispatched to all" in r.content - - def test_controller_start_with_target(self): - r = requests.post("http://127.0.0.1:{}/start/{}".format(self.controller_eventgen_webport, TestEventgenOrchestration.server_id[:12])) - assert r.status_code == 200 - assert "Start event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content - - def test_controller_stop(self): - r = requests.post("http://127.0.0.1:{}/stop".format(self.controller_eventgen_webport)) - assert r.status_code == 200 - assert "Stop event dispatched to all" in r.content - - def test_controller_stop_with_target(self): - r = requests.post("http://127.0.0.1:{}/stop/{}".format(self.controller_eventgen_webport, TestEventgenOrchestration.server_id[:12])) - assert r.status_code == 200 - assert "Stop event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content - - def test_controller_restart(self): - r = requests.post("http://127.0.0.1:{}/stop".format(self.controller_eventgen_webport)) - assert r.status_code == 200 - assert "Stop event dispatched to all" in r.content - - def test_controller_restart_with_target(self): - r = requests.post("http://127.0.0.1:{}/stop/{}".format(self.controller_eventgen_webport, TestEventgenOrchestration.server_id[:12])) - assert r.status_code == 200 - assert "Stop event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content - - def test_controller_bundle_invalid_request(self): - r = requests.post("http://127.0.0.1:{}/bundle".format(self.controller_eventgen_webport)) - assert r.status_code == 400 - assert "Please pass in a valid object with bundle URL" in r.content - - def test_controller_bundle_with_url(self): - r = requests.post("http://127.0.0.1:{}/bundle".format(self.controller_eventgen_webport), json={"url": "http://server.com/bundle.tgz"}) - assert r.status_code == 200 - assert "Bundle event dispatched to all with url http://server.com/bundle.tgz" in r.content - - def test_controller_bundle_with_url_and_target(self): - r = requests.post("http://127.0.0.1:{}/bundle/{}".format(self.controller_eventgen_webport, TestEventgenOrchestration.server_id[:12]), json={"url": "http://server.com/bundle.tgz"}) - assert r.status_code == 200 - assert "Bundle event dispatched to {} with url http://server.com/bundle.tgz".format(TestEventgenOrchestration.server_id[:12]) in r.content - - @pytest.mark.skip(reason="Change in implementation") - def test_controller_get_volume(self): - max_retry = 5 - current_retry = 1 - output = {} - while not output and current_retry <= max_retry: - response = requests.get("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport), timeout=10) - if response.status_code == 200: - output = json.loads(response.content) - current_retry += 1 - time.sleep(10) - assert output[TestEventgenOrchestration.server_id[:12]] == 0.0 - - def test_controller_set_volume_invalid_request(self): - r = requests.post("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport)) - assert r.status_code == 400 - assert "Please pass in a valid object with volume" in r.content - - def test_controller_set_volume_with_volume(self): - r = requests.post("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport), json={"perDayVolume": 10}) - assert r.status_code == 200 - assert "set_volume event dispatched to all" in r.content - - def test_controller_set_volume_with_volume_and_target(self): - r = requests.post("http://127.0.0.1:{}/volume/{}".format(self.controller_eventgen_webport, TestEventgenOrchestration.server_id[:12]), json={"perDayVolume": 10}) - assert r.status_code == 200 - assert "set_volume event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content - - ### Server tests ### - - def test_server_root(self): - r = requests.get("http://127.0.0.1:{}".format(self.server_eventgen_webport)) - assert r.status_code == 200 - assert "Host: " in r.content - assert "Eventgen Status" in r.content - assert "Eventgen Config file path" in r.content - assert "Total volume:" in r.content - assert "Worker Queue Status" in r.content - assert "Sample Queue Status" in r.content - assert "Output Queue Status" in r.content - - def test_server_index(self): - r = requests.get("http://127.0.0.1:{}/index".format(self.server_eventgen_webport)) - assert r.status_code == 200 - assert "Host: " in r.content - assert "Eventgen Status" in r.content - assert "Eventgen Config file path" in r.content - assert "Total volume:" in r.content - assert "Worker Queue Status" in r.content - assert "Sample Queue Status" in r.content - assert "Output Queue Status" in r.content - - def test_server_status(self): - r = requests.get("http://127.0.0.1:{}/status".format(self.server_eventgen_webport)) - assert r.status_code == 200 - output = json.loads(r.content) - assert output - assert output['EVENTGEN_STATUS'] == 0 - - def test_server_get_and_set_conf(self): - r = requests.get("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport)) - assert r.status_code == 200 - assert json.loads(r.content) == {} - config_json = {"windbag": {"outputMode": "stdout"}} - r = requests.post("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport), json=config_json) - assert r.status_code == 200 - assert json.loads(r.content) == config_json - - def test_server_start(self): - r = requests.post("http://127.0.0.1:{}/start".format(self.server_eventgen_webport), timeout=5) - assert r.status_code == 200 - assert json.loads(r.content) == "Eventgen has successfully started." - - def test_server_restart(self): - r = requests.post("http://127.0.0.1:{}/restart".format(self.server_eventgen_webport)) - assert r.status_code == 200 - assert json.loads(r.content) == "Eventgen restarted." - - def test_server_stop(self): - r = requests.post("http://127.0.0.1:{}/stop".format(self.server_eventgen_webport)) - assert r.status_code == 200 - assert json.loads(r.content) == "Eventgen is stopped." - - def test_server_bundle(self): - r = requests.post("http://127.0.0.1:{}/bundle".format(self.server_eventgen_webport)) - assert r.status_code == 400 - assert "Please pass in a valid object with bundle URL" in r.content - - def test_server_get_and_set_volume(self): - # Must initialize a stanza with the perDayVolume setting before hitting the /volume endpoint - r = requests.put("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport), json={"windbag": {}}) - assert r.status_code == 200 - assert json.loads(r.content) - r = requests.post("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport), json={"perDayVolume": 10}) - assert r.status_code == 200 - assert json.loads(r.content) - r = requests.get("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport)) - assert r.status_code == 200 - output = json.loads(r.content) - assert output == 10.0 - r = requests.post("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport), json={"perDayVolume": 150}) - assert r.status_code == 200 - assert json.loads(r.content) - r = requests.get("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport)) - assert r.status_code == 200 - output = json.loads(r.content) - assert output == 150.0 + """ + This test class is used to test the Docker image published as part of this repo. + Specifically, this is testing: + * Eventgen "controller" API and responses + * Eventgen "server" API and responses + * Eventgen controller/server orchestration + """ + + @classmethod + def setup_class(cls): + # Build the image from scratch + cls.client = APIClient(base_url="unix://var/run/docker.sock") + response = cls.client.build(path=REPO_DIR, dockerfile=os.path.join("dockerfiles", "Dockerfile"), tag=IMAGE_NAME, + rm=True, nocache=True, pull=True, stream=False) + for line in response: + print line, + # Create a network for both the controller + server to run in + cls.client.create_network(NETWORK_NAME, driver="bridge", attachable=True) + networking_config = cls.client.create_networking_config({NETWORK_NAME: cls.client.create_endpoint_config()}) + # Start the controller + print 'creating controller' + host_config = cls.client.create_host_config(auto_remove=True, publish_all_ports=True) + container = cls.client.create_container(image=IMAGE_NAME, command="controller", host_config=host_config, + networking_config=networking_config) + cls.client.start(container["Id"]) + TestEventgenOrchestration.controller_id = container["Id"] + print container["Id"] + cls.controller_container = cls.client.inspect_container(container["Id"]) + cls.controller_eventgen_webport = cls.controller_container["NetworkSettings"]["Ports"]["9500/tcp"][0][ + "HostPort"] + cls.controller_rabbitmq_webport = cls.controller_container["NetworkSettings"]["Ports"]["15672/tcp"][0][ + "HostPort"] + # Start the server + print 'creating server' + container = cls.client.create_container( + image=IMAGE_NAME, command="server", environment=[ + "EVENTGEN_AMQP_HOST={}".format(cls.controller_container["Id"][:12])], host_config=host_config, + networking_config=networking_config) + cls.client.start(container["Id"]) + TestEventgenOrchestration.server_id = container["Id"] + print container["Id"] + cls.server_container = cls.client.inspect_container(container["Id"]) + cls.server_eventgen_webport = cls.server_container["NetworkSettings"]["Ports"]["9500/tcp"][0]["HostPort"] + cls.server_rabbitmq_webport = cls.server_container["NetworkSettings"]["Ports"]["15672/tcp"][0]["HostPort"] + # Wait for the controller to be available + print "Waiting for Eventgen Controller to become available." + wait_for_response("http://127.0.0.1:{}".format(cls.controller_eventgen_webport)) + print "Eventgen Controller has become available." + # Wait for the server to be available + print "Waiting for Eventgen Server to become available." + wait_for_response("http://127.0.0.1:{}".format(cls.server_eventgen_webport)) + print "Eventgen Server has become available." + time.sleep(60) + + @classmethod + def teardown_class(cls): + cls.client.remove_container(cls.server_container, v=True, force=True) + cls.client.remove_container(cls.controller_container, v=True, force=True) + cls.client.remove_image(IMAGE_NAME, force=True, noprune=False) + cls.client.remove_network(NETWORK_NAME) + + # Controller tests # + + def test_controller_rabbitmq(self): + r = requests.get("http://127.0.0.1:{}".format(self.controller_rabbitmq_webport)) + assert r.status_code == 200 + assert "RabbitMQ" in r.content + + def test_controller_root(self): + r = requests.get("http://127.0.0.1:{}".format(self.controller_eventgen_webport)) + assert r.status_code == 200 + assert "Eventgen Controller" in r.content + assert "Host: " in r.content + assert "You are running Eventgen Controller" in r.content + + def test_controller_index(self): + r = requests.get("http://127.0.0.1:{}/index".format(self.controller_eventgen_webport)) + assert r.status_code == 200 + assert "Eventgen Controller" in r.content + assert "Host: " in r.content + assert "You are running Eventgen Controller" in r.content + + def test_controller_status(self): + max_retry = 5 + current_retry = 1 + output = {} + while not output and current_retry <= max_retry: + response = requests.get("http://127.0.0.1:{}/status".format(self.controller_eventgen_webport), timeout=10) + if response.status_code == 200: + output = json.loads(response.content) + current_retry += 1 + time.sleep(10) + assert output + + def test_controller_start(self): + r = requests.post("http://127.0.0.1:{}/start".format(self.controller_eventgen_webport)) + assert r.status_code == 200 + assert "Start event dispatched to all" in r.content + + def test_controller_start_with_target(self): + r = requests.post("http://127.0.0.1:{}/start/{}".format(self.controller_eventgen_webport, + TestEventgenOrchestration.server_id[:12])) + assert r.status_code == 200 + assert "Start event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content + + def test_controller_stop(self): + r = requests.post("http://127.0.0.1:{}/stop".format(self.controller_eventgen_webport)) + assert r.status_code == 200 + assert "Stop event dispatched to all" in r.content + + def test_controller_stop_with_target(self): + r = requests.post("http://127.0.0.1:{}/stop/{}".format(self.controller_eventgen_webport, + TestEventgenOrchestration.server_id[:12])) + assert r.status_code == 200 + assert "Stop event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content + + def test_controller_restart(self): + r = requests.post("http://127.0.0.1:{}/stop".format(self.controller_eventgen_webport)) + assert r.status_code == 200 + assert "Stop event dispatched to all" in r.content + + def test_controller_restart_with_target(self): + r = requests.post("http://127.0.0.1:{}/stop/{}".format(self.controller_eventgen_webport, + TestEventgenOrchestration.server_id[:12])) + assert r.status_code == 200 + assert "Stop event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content + + def test_controller_bundle_invalid_request(self): + r = requests.post("http://127.0.0.1:{}/bundle".format(self.controller_eventgen_webport)) + assert r.status_code == 400 + assert "Please pass in a valid object with bundle URL" in r.content + + def test_controller_bundle_with_url(self): + r = requests.post("http://127.0.0.1:{}/bundle".format(self.controller_eventgen_webport), json={ + "url": "http://server.com/bundle.tgz"}) + assert r.status_code == 200 + assert "Bundle event dispatched to all with url http://server.com/bundle.tgz" in r.content + + def test_controller_bundle_with_url_and_target(self): + r = requests.post( + "http://127.0.0.1:{}/bundle/{}".format(self.controller_eventgen_webport, + TestEventgenOrchestration.server_id[:12]), json={ + "url": "http://server.com/bundle.tgz"}) + assert r.status_code == 200 + assert "Bundle event dispatched to {} with url http://server.com/bundle.tgz".format( + TestEventgenOrchestration.server_id[:12]) in r.content + + @pytest.mark.skip(reason="Change in implementation") + def test_controller_get_volume(self): + max_retry = 5 + current_retry = 1 + output = {} + while not output and current_retry <= max_retry: + response = requests.get("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport), timeout=10) + if response.status_code == 200: + output = json.loads(response.content) + current_retry += 1 + time.sleep(10) + assert output[TestEventgenOrchestration.server_id[:12]] == 0.0 + + def test_controller_set_volume_invalid_request(self): + r = requests.post("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport)) + assert r.status_code == 400 + assert "Please pass in a valid object with volume" in r.content + + def test_controller_set_volume_with_volume(self): + r = requests.post("http://127.0.0.1:{}/volume".format(self.controller_eventgen_webport), json={ + "perDayVolume": 10}) + assert r.status_code == 200 + assert "set_volume event dispatched to all" in r.content + + def test_controller_set_volume_with_volume_and_target(self): + r = requests.post( + "http://127.0.0.1:{}/volume/{}".format(self.controller_eventgen_webport, + TestEventgenOrchestration.server_id[:12]), json={"perDayVolume": 10}) + assert r.status_code == 200 + assert "set_volume event dispatched to {}".format(TestEventgenOrchestration.server_id[:12]) in r.content + + # Server tests # + + def test_server_root(self): + r = requests.get("http://127.0.0.1:{}".format(self.server_eventgen_webport)) + assert r.status_code == 200 + assert "Host: " in r.content + assert "Eventgen Status" in r.content + assert "Eventgen Config file path" in r.content + assert "Total volume:" in r.content + assert "Worker Queue Status" in r.content + assert "Sample Queue Status" in r.content + assert "Output Queue Status" in r.content + + def test_server_index(self): + r = requests.get("http://127.0.0.1:{}/index".format(self.server_eventgen_webport)) + assert r.status_code == 200 + assert "Host: " in r.content + assert "Eventgen Status" in r.content + assert "Eventgen Config file path" in r.content + assert "Total volume:" in r.content + assert "Worker Queue Status" in r.content + assert "Sample Queue Status" in r.content + assert "Output Queue Status" in r.content + + def test_server_status(self): + r = requests.get("http://127.0.0.1:{}/status".format(self.server_eventgen_webport)) + assert r.status_code == 200 + output = json.loads(r.content) + assert output + assert output['EVENTGEN_STATUS'] == 0 + + def test_server_get_and_set_conf(self): + r = requests.get("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport)) + assert r.status_code == 200 + assert json.loads(r.content) == {} + config_json = {"windbag": {"outputMode": "stdout"}} + r = requests.post("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport), json=config_json) + assert r.status_code == 200 + assert json.loads(r.content) == config_json + + def test_server_start(self): + r = requests.post("http://127.0.0.1:{}/start".format(self.server_eventgen_webport), timeout=5) + assert r.status_code == 200 + assert json.loads(r.content) == "Eventgen has successfully started." + + def test_server_restart(self): + r = requests.post("http://127.0.0.1:{}/restart".format(self.server_eventgen_webport)) + assert r.status_code == 200 + assert json.loads(r.content) == "Eventgen restarted." + + def test_server_stop(self): + r = requests.post("http://127.0.0.1:{}/stop".format(self.server_eventgen_webport)) + assert r.status_code == 200 + assert json.loads(r.content) == "Eventgen is stopped." + + def test_server_bundle(self): + r = requests.post("http://127.0.0.1:{}/bundle".format(self.server_eventgen_webport)) + assert r.status_code == 400 + assert "Please pass in a valid object with bundle URL" in r.content + + def test_server_get_and_set_volume(self): + # Must initialize a stanza with the perDayVolume setting before hitting the /volume endpoint + r = requests.put("http://127.0.0.1:{}/conf".format(self.server_eventgen_webport), json={"windbag": {}}) + assert r.status_code == 200 + assert json.loads(r.content) + r = requests.post("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport), json={"perDayVolume": 10}) + assert r.status_code == 200 + assert json.loads(r.content) + r = requests.get("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport)) + assert r.status_code == 200 + output = json.loads(r.content) + assert output == 10.0 + r = requests.post("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport), json={"perDayVolume": 150}) + assert r.status_code == 200 + assert json.loads(r.content) + r = requests.get("http://127.0.0.1:{}/volume".format(self.server_eventgen_webport)) + assert r.status_code == 200 + output = json.loads(r.content) + assert output == 150.0 diff --git a/tests/medium/plugins/test_file_output.py b/tests/medium/plugins/test_file_output.py index d1b7a92a..f290f640 100644 --- a/tests/medium/plugins/test_file_output.py +++ b/tests/medium/plugins/test_file_output.py @@ -3,7 +3,9 @@ import os import sys + from mock import patch + from splunk_eventgen.__main__ import parse_args from splunk_eventgen.eventgen_core import EventGenerator @@ -11,7 +13,6 @@ class TestFileOutputPlugin(object): - def test_output_data_to_file(self): configfile = "tests/sample_eventgen_conf/medium_test/eventgen.conf.fileoutput" testargs = ["eventgen", "generate", configfile] diff --git a/tests/medium/plugins/test_jinja_generator.py b/tests/medium/plugins/test_jinja_generator.py index beab0b82..7a4201d7 100644 --- a/tests/medium/plugins/test_jinja_generator.py +++ b/tests/medium/plugins/test_jinja_generator.py @@ -1,6 +1,8 @@ import os import sys + from mock import patch + from splunk_eventgen.__main__ import parse_args from splunk_eventgen.eventgen_core import EventGenerator @@ -9,7 +11,6 @@ class TestJinjaGenerator(object): - def test_jinja_generator_to_file(self): configfile = "tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic" testargs = ["eventgen", "generate", configfile] diff --git a/tests/medium/plugins/test_syslog_output.py b/tests/medium/plugins/test_syslog_output.py index eb5b8c45..831296c4 100644 --- a/tests/medium/plugins/test_syslog_output.py +++ b/tests/medium/plugins/test_syslog_output.py @@ -3,7 +3,9 @@ import os import sys + from mock import MagicMock, patch + from splunk_eventgen.__main__ import parse_args from splunk_eventgen.eventgen_core import EventGenerator from splunk_eventgen.lib.plugins.output.syslogout import SyslogOutOutputPlugin @@ -12,12 +14,11 @@ class TestSyslogOutputPlugin(object): - def test_output_data_to_syslog(self): configfile = "tests/sample_eventgen_conf/medium_test/eventgen.conf.syslogoutput" testargs = ["eventgen", "generate", configfile] with patch.object(sys, 'argv', testargs): - with patch('logging.getLogger') as mock_log: + with patch('logging.getLogger'): pargs = parse_args() assert pargs.subcommand == 'generate' assert pargs.configfile == configfile diff --git a/tests/medium/plugins/test_tcp_output.py b/tests/medium/plugins/test_tcp_output.py index e62ecdaa..e3ea1320 100644 --- a/tests/medium/plugins/test_tcp_output.py +++ b/tests/medium/plugins/test_tcp_output.py @@ -3,7 +3,9 @@ import os import sys + from mock import MagicMock, patch + from splunk_eventgen.__main__ import parse_args from splunk_eventgen.eventgen_core import EventGenerator from splunk_eventgen.lib.plugins.output.tcpout import TcpOutputPlugin @@ -12,7 +14,6 @@ class TestTcpOutputPlugin(object): - def test_output_data_to_tcp_port(self): configfile = "tests/sample_eventgen_conf/medium_test/eventgen.conf.tcpoutput" testargs = ["eventgen", "generate", configfile] @@ -35,4 +36,3 @@ def test_output_data_to_tcp_port(self): eventgen.start() tcpoutput.s.connect.assert_called_with(('127.0.0.1', 9999)) assert tcpoutput.s.send.call_count == 5 - diff --git a/tests/medium/plugins/test_udp_output.py b/tests/medium/plugins/test_udp_output.py index aec78fa6..a7cbde26 100644 --- a/tests/medium/plugins/test_udp_output.py +++ b/tests/medium/plugins/test_udp_output.py @@ -3,7 +3,9 @@ import os import sys + from mock import MagicMock, patch + from splunk_eventgen.__main__ import parse_args from splunk_eventgen.eventgen_core import EventGenerator from splunk_eventgen.lib.plugins.output.udpout import UdpOutputPlugin @@ -12,7 +14,6 @@ class TestUdpOutputPlugin(object): - def test_output_data_to_udp_port(self): configfile = "tests/sample_eventgen_conf/medium_test/eventgen.conf.udpoutput" testargs = ["eventgen", "generate", configfile] diff --git a/tests/run_tests.py b/tests/run_tests.py index 871c29c2..8d433456 100644 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -1,7 +1,8 @@ -import pytest -import sys -import time import os +import sys + +import pytest + SMALL = 'tests/small' MEDIUM = 'tests/medium' LARGE = 'tests/large' @@ -11,13 +12,12 @@ ENV = os.environ PATH = sys.path -# Set to 1 is debugging is a problem. Normally, it is 8, which should match the cores/hyperthreads of most of our systems. +# Normally, it is 8, which should match the cores/hyperthreads of most of our systems. NUM_TEST_WORKERS_LARGE = '8' - """ How to run the tests: 1. python run_tests.py -2. python run_tests.py {SMALL_TESTS_TO_RUN} {MEDIUM_TESTS_TO_RUN} {LARGE_TESTS_TO_RUN} {XLARGE_TESTS_TO_RUN} {optional RUN_DESTROY} +2. python run_tests.py {SMALL_TEST_PATH} {MEDIUM_TEST_PATH} {LARGE_TEST_PATH} {XLARGE_TEST_PATH} {optional RUN_DESTROY} - You can pass 'None' as a value to either to ignore those tests - To run a specific folder, file, pass it in as a value. ex * python run_tests.py None None tests/large/test_destroy.py None @@ -46,7 +46,9 @@ if SMALL: sys.path = PATH os.environ = ENV - args = [ "--cov=splunk_eventgen", "--cov-config=tests/.coveragerc", "--cov-report=term", "--cov-report=html", SMALL, "--junitxml=tests/test-reports/tests_small_results.xml"] + args = [ + "--cov=splunk_eventgen", "--cov-config=tests/.coveragerc", "--cov-report=term", "--cov-report=html", SMALL, + "--junitxml=tests/test-reports/tests_small_results.xml"] return_codes.append(pytest.main(args)) # Run medium tests diff --git a/tests/small/test_main.py b/tests/small/test_main.py index 6dda5007..3f68254d 100644 --- a/tests/small/test_main.py +++ b/tests/small/test_main.py @@ -1,23 +1,25 @@ #!/usr/bin/env python2 -import pytest import os import sys -from mock import MagicMock, call, patch, mock_open + +import pytest +from mock import MagicMock, patch + +from splunk_eventgen.__main__ import parse_cli_vars, parse_env_vars FILE_DIR = os.path.dirname(os.path.realpath(__file__)) sys.path.insert(0, os.path.join(FILE_DIR, "..", "..", "..")) sys.path.insert(0, os.path.join(FILE_DIR, "..", "..", "..", "splunk_eventgen")) -from splunk_eventgen.__main__ import parse_cli_vars, parse_env_vars -@pytest.mark.parametrize(('config'), - [ - # Empty config - ({}), - # Some elements already defined - function should override - ({"AMQP_HOST": "guest", "AMQP_PASS": "guest"}) - ]) +@pytest.mark.parametrize( + ('config'), + [ + # Empty config + ({}), + # Some elements already defined - function should override + ({"AMQP_HOST": "guest", "AMQP_PASS": "guest"})]) def test_parse_cli_vars(config): args = MagicMock() args.amqp_uri = "pyamqp://user:pass@host:port" @@ -28,32 +30,34 @@ def test_parse_cli_vars(config): args.amqp_pass = "world" args.web_server_address = "0.0.0.:1111" obj = parse_cli_vars(config, args) - assert obj == { "AMQP_URI": "pyamqp://user:pass@host:port", - "AMQP_HOST": "hostname", - "AMQP_PORT": 8001, - "AMQP_WEBPORT": 8000 , - "AMQP_USER": "hello", - "AMQP_PASS": "world", - "WEB_SERVER_ADDRESS": "0.0.0.:1111" } + assert obj == { + "AMQP_URI": "pyamqp://user:pass@host:port", "AMQP_HOST": "hostname", "AMQP_PORT": 8001, "AMQP_WEBPORT": 8000, + "AMQP_USER": "hello", "AMQP_PASS": "world", "WEB_SERVER_ADDRESS": "0.0.0.:1111"} -@pytest.mark.parametrize(('env_vars'), - [ - # No environment vars defined - ({}), - # All environemnt vars defined - ({"EVENTGEN_AMQP_URI": "test", "EVENTGEN_AMQP_HOST": "host", "EVENTGEN_AMQP_PORT": 8000, "EVENTGEN_AMQP_WEBPORT": 8001, "EVENTGEN_AMQP_USER": "hello", "EVENTGEN_AMQP_PASS": "world", "EVENTGEN_WEB_SERVER_ADDR": "0.0.0.0:1111"}) - ]) + +@pytest.mark.parametrize( + ('env_vars'), + [ + # No environment vars defined + ({}), + # All environemnt vars defined + ({ + "EVENTGEN_AMQP_URI": "test", "EVENTGEN_AMQP_HOST": "host", "EVENTGEN_AMQP_PORT": 8000, + "EVENTGEN_AMQP_WEBPORT": 8001, "EVENTGEN_AMQP_USER": "hello", "EVENTGEN_AMQP_PASS": "world", + "EVENTGEN_WEB_SERVER_ADDR": "0.0.0.0:1111"})]) def test_parse_env_vars(env_vars): with patch("splunk_eventgen.__main__.os") as mock_os: mock_os.environ = env_vars obj = parse_env_vars() - assert obj.keys() == ['AMQP_WEBPORT', 'AMQP_USER', 'AMQP_PASS', 'AMQP_PORT', 'AMQP_URI', 'WEB_SERVER_ADDRESS', 'AMQP_HOST'] + assert obj.keys() == [ + 'AMQP_WEBPORT', 'AMQP_USER', 'AMQP_PASS', 'AMQP_PORT', 'AMQP_URI', 'WEB_SERVER_ADDRESS', 'AMQP_HOST'] if env_vars: # If enviroment vars are defined, let's make sure they are set instead of default values assert obj["WEB_SERVER_ADDRESS"] == "0.0.0.0:1111" assert obj["AMQP_HOST"] == "host" assert obj["AMQP_PORT"] == 8000 + def test_parse_env_vars_and_parse_cli_vars(): ''' This test checks the layering effect of both parsing CLI and env vars. @@ -67,7 +71,7 @@ def test_parse_env_vars_and_parse_cli_vars(): assert obj["AMQP_PORT"] == 5672 assert obj["AMQP_PASS"] == "guest" assert obj["AMQP_USER"] == "guest" - assert obj["AMQP_URI"] == None + assert obj["AMQP_URI"] is None assert obj["WEB_SERVER_ADDRESS"] == "0.0.0.0:9500" args = MagicMock() args.amqp_uri = "pyamqp://user:pass@host:port" @@ -78,11 +82,7 @@ def test_parse_env_vars_and_parse_cli_vars(): # Purposely defining None vars here for these CLI args - in this case, environment vars will be used args.amqp_user = None args.amqp_pass = None - newobj = parse_cli_vars(obj, args) - assert obj == { "AMQP_URI": "pyamqp://user:pass@host:port", - "AMQP_HOST": "hostname", - "AMQP_PORT": 8001, - "AMQP_WEBPORT": 8000 , - "AMQP_USER": "guest", - "AMQP_PASS": "guest", - "WEB_SERVER_ADDRESS": "0.0.0.:1111" } + parse_cli_vars(obj, args) + assert obj == { + "AMQP_URI": "pyamqp://user:pass@host:port", "AMQP_HOST": "hostname", "AMQP_PORT": 8001, "AMQP_WEBPORT": + 8000, "AMQP_USER": "guest", "AMQP_PASS": "guest", "WEB_SERVER_ADDRESS": "0.0.0.:1111"} From 0279c9c8143cf42d3969a53da2d6698727cc1e50 Mon Sep 17 00:00:00 2001 From: Lynch Wu Date: Wed, 10 Apr 2019 15:43:43 +0800 Subject: [PATCH 16/68] Update docs --- docs/ARCHITECTURE.md | 6 +++--- docs/BASICS.md | 51 ++++++++++++++++++++++---------------------- docs/REFERENCE.md | 12 +++++------ docs/TUTORIAL.md | 8 ++++--- 4 files changed, 40 insertions(+), 37 deletions(-) diff --git a/docs/ARCHITECTURE.md b/docs/ARCHITECTURE.md index 4c185ab7..bcb926cb 100644 --- a/docs/ARCHITECTURE.md +++ b/docs/ARCHITECTURE.md @@ -19,7 +19,7 @@ These requirements have led to this new architecture in verison 4. Eventgen is * Handles flattening of configs from global defaults and individual config files * Loading Plugins * Load plugins from the `lib/plugins` directory or App's `bin` directories, with three types of Plugins: Rating, Generator and Output - * For more detail on writing plugins, see the [Plugins documentation](Plugins.md) + * For more detail on writing plugins, see the [Plugins documentation](PLUGINS.md) * Creating timers for each sample * For samples with queueable generators (meaning we can have multiple threads generating sample simultaneously), the timer wakes up every interval and puts a task in the queue to be generated by a generator worker * For samples which are not queueable (meaning we can only run one simultaneous thread of the generator), the thread runs the generator plugin single threaded and handles sleeping the proper amount to manage intervals. @@ -38,13 +38,13 @@ Depending on tunable parameters, these can be threads or processes and can eithe # Scaling -This queue architecture allows significant advantages by distributing processing. At each timer execution a generation job gets put in the queue. This queue by default is a Python Queue (either in queue.Queue or multiprocessing.Queue). For details, see the [Performance guide](Performance.md) +This queue architecture allows significant advantages by distributing processing. At each timer execution a generation job gets put in the queue. This queue by default is a Python Queue (either in queue.Queue or multiprocessing.Queue). For details, see the [Performance guide](PERFORMANCE.md) # Testing Given the complexity and the reimplementation of a number of features during refactors, we've also built out a number of test examples. We currently don't have test scripts built with assertions etc, but there are a series of configs and samples under the `tests/` directory which should demonstrate and allow testing of basic functionality. Check out the ``tests/sample_eventgen_conf`` directory in the project for commonly-used plugins and configurations. You can execute a test config by doing: - python bin/eventgen.py generate tests//.conf + python -m splunk_eventgen generate tests//.conf # Server-Controller Architecture diff --git a/docs/BASICS.md b/docs/BASICS.md index 4762eb87..b02b1cc3 100644 --- a/docs/BASICS.md +++ b/docs/BASICS.md @@ -7,14 +7,17 @@ This should hopefully get you through setting up a working eventgen instance. Fo The first example we'll show you should likely cover 90% of the use cases you can imagine. Eventgen can take an export from another Splunk instance, or just a plain text file, and replay those events while replacing the time stamps. Eventgen will pause the amount of time between each event just like it happened in the original, so the events will appear to be coming out in real time. When Eventgen reaches the end of the file, it will automatically start over from the beginning. -### Making a Splunk export +### Making a Splunk Export -To build a seed for your new Eventgen, I recommend taking an export from an existing Splunk instance. You could also take a regular log file and use it for replay (in which case, you can omit sampletype=csv). There are a few considerations. First, Eventgen assumes its sample files are in chronological order. Second, it only uses index, host, source, sourcetype and \_raw fields. To accommodate that, whatever search you write, we recommend appending '| reverse | fields index, host, source, sourcetype, _raw' to your Splunk search and then doing an export to CSV format. Third, make sure you find all the different time formats inside the log file and set up tokens to replace for them, so limiting your initial search to a few sourcetypes is probably advisable. +To build a seed for your new Eventgen, I recommend taking an export from an existing Splunk instance. You could also take a regular log file and use it for replay (in which case, you can omit sampletype=csv). There are a few considerations. +* First, Eventgen assumes its sample files are in chronological order. +* Second, it only uses `index`, `host`, `source`, `sourcetype` and `_raw` fields. To accommodate that, whatever search you write, we recommend appending `| reverse | fields index, host, source, sourcetype, _raw` to your Splunk search and then doing an export to CSV format. +* Third, make sure you find all the different time formats inside the log file and set up tokens to replace for them, so limiting your initial search to a few sourcetypes is probably advisable. ### Running the example -You can easily run these examples by hand. In fact, for testing purposes, I almost always change outputMode = stdout to visually examine the data. Run the command below from the base directory of Eventgen. +You can easily run these examples by hand. In fact, for testing purposes, I almost always change outputMode = stdout to visually examine the data. Run the command below from directory `$EVENTGEN_HOME/splunk_eventgen`. - python -m splunk_eventgen generate splunk_eventgen/README/eventgen.conf.tutorial1 + python -m splunk_eventgen generate README/eventgen.conf.tutorial1 You should now see events showing up on your terminal window. You can see Eventgen will sleep between events as it sees gaps in the events in the source log. @@ -23,9 +26,9 @@ This will cover most, if not all, of most people's use cases. Find a real world ## Basic Sample -Next, lets build a basic noise generator from a log file. This will use sample mode, which take a file and replay all or a subset of that file every X seconds, defined by the interval. Sample mode is the original way eventgen ran, and it's still very useful for generating random data where you want to engineer the data generated from the ground up. To run the example: +Next, lets build a basic noise generator from a log file. This will use sample mode, which take a file and replay all or a subset of that file every X seconds, defined by the interval. Sample mode is the original way eventgen ran, and it's still very useful for generating random data where you want to engineer the data generated from the ground up. Run the command below from directory `$EVENTGEN_HOME/splunk_eventgen`: - python -m splunk_eventgen generate splunk_eventgen/README/eventgen.conf.tutorial2 + python -m splunk_eventgen generate README/eventgen.conf.tutorial2 ### Grabbing and rating events @@ -67,7 +70,7 @@ Let's us decide how often we want to generate events and how we want to generate randomizeEvents = true Eventgen by default will rate events by the time of day and the day of the week and introduce some randomness every interval. Also by default, we'll only grab the first X events from the log file every time. For this example, we're looking at router and switch events, which actually is the opposite of the normal business flow. We expect to see more events overnight for a few hours during maintenance windows and calm down during the day, so we'll need to override the default rating which looks like a standard business cycle. -hourOfDayRate is a JSON formatted hash, with a string identifier for the current hour and a float representing the multiplier we want to use for that hour. In general, I've always configured the rate to be between 0 and 1, but nothing limits you from putting it at any valid floating point value. dayOfWeekRate is similar, but the number is the day of the week, starting with Sunday. In this example, Saturday and Sunday early mornings should have the greatest number of events, with fewer events evenly distributed during the week. randomizeCount says to introduce 20% randomess, which means plus or minus 10% of the rated total, to every rated count just to make sure we don't have a flat rate of events. randomizeEvents we discussed previously, it makes sure we don't grab the same lines from the file every time. +`hourOfDayRate` is a JSON formatted hash, with a string identifier for the current hour and a float representing the multiplier we want to use for that hour. In general, I've always configured the rate to be between 0 and 1, but nothing limits you from putting it at any valid floating point value. `dayOfWeekRate` is similar, but the number is the day of the week, starting with Sunday. In this example, Saturday and Sunday early mornings should have the greatest number of events, with fewer events evenly distributed during the week. `randomizeCount` says to introduce 20% randomness, which means plus or minus 10% of the rated total, to every rated count just to make sure we don't have a flat rate of events. `randomizeEvents` we discussed previously, it makes sure we don't grab the same lines from the file every time. outputMode = file fileName = /tmp/ciscosample.log @@ -81,7 +84,7 @@ As we've seen before, here's a simple token substitution for the timestamp. Thi Let's look in detail at this configuration format. token is the configuration statement, 0 is the token number (we'll want a different number for every token we define, although they can be non-contiguous). The third part defines the three subitems of token configuration. The first, token, defines a regular expression we're going to look for in the events as they stream through Eventgen. The second, replacementType, defines what type of replacement we're going to need. This is a timestamp, but we also offer a variety of other token replacement types such as random for randomly generated values, file for grabbing lines out of files, static for replacing with static strings, etc. We'll cover those in detail later. The third subitem, replacement, is specific for the replacementType, and in this case defines a strptime format we're going to use to output the time using strftime. For a reference on how to configure strptime, check python's documentation on strptime format strings. -This should now replay random events from the file we have configured. Go ahead and cd to $EVENTGEN\_HOME/bin and run python eventgen.py ../README/eventgen.conf.tutorial1. In another shell, tail -f /tmp/ciscosample.log and you should see events replaying from the cisco.sample file! You can reuse this same example to easily replay a customer log file, of course accounting for the different regular expressions and strptime formats you'll need for their timestamps. Remember to customize interval, earliest, and count for the number of events you want the generator to build. +This should now replay random events from the file we have configured. Go ahead and cd to `$EVENTGEN_HOME/splunk_eventgen` and run `python -m splunk_eventgen generate README/eventgen.conf.tutorial1`. In another shell, tail -f /tmp/ciscosample.log and you should see events replaying from the cisco.sample file! You can reuse this same example to easily replay a customer log file, of course accounting for the different regular expressions and strptime formats you'll need for their timestamps. Remember to customize interval, earliest, and count for the number of events you want the generator to build. ## Second example, building events from scratch @@ -151,7 +154,7 @@ Note here that we've specified index, host, source and sourceType. In the past ### Defining tokens -If you look at the sample.tutorial3 file, you'll see that we took just one sample event and placed it in the file. Eventgen will look at this one event, continue to replay it a number of times defined by our rating parameters, and then substitute in tokens we're going to define. First, let's get the one token we understand out of the way, the timestamp: +If you look at the `sample.tutorial3` file, you'll see that we took just one sample event and placed it in the file. Eventgen will look at this one event, continue to replay it a number of times defined by our rating parameters, and then substitute in tokens we're going to define. First, let's get the one token we understand out of the way, the timestamp: token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2},\d{3} token.0.replacementType = timestamp @@ -237,29 +240,27 @@ Secondly, in the replacement clause, we have a JSON formatted list. This allows ## Command Line -This revision of Eventgen can be run by itself from a command line for testing. This means you can simply run bin/eventgen.py and start seeing output, which is great for testing. Please note to do this you'll want to set the $SPLUNK\_HOME environment variable properly so your configurations will work. **Command Line and Embedded Defaults are defined in the lib/eventgen\_defaults file in the [global] stanza**. +This revision of Eventgen can be run by itself from a command line for testing. This means you can simply run `splunk_eventgen generate eventgen.conf` and start seeing output, which is great for testing. **Command Line and Embedded Defaults are defined in the `splunk_eventgen/default/eventgen.conf` file in the [global] stanza**. ## Splunk App -The original SA-Eventgen was written as a Splunk app, and this Eventgen release supports that deployment method as well. In this deployment method, we will read configurations through Splunk's internal REST interface for grabbing config info, and Eventgen will look for configurations in every installed apps default and local directories in eventgen.conf file. This is how ES is deployed, and it provides a very good example of this deployment method. If you are writing a complicated Splunk application which will be deployed in multiple Applications, like ES, this is the recommended deployment method as it will simply your needs of building scripted inputs for each of those individual applications. Installed a separate application, there is also a setup.xml provided which allows for easy disabling of the scripted input in Eventgen application. **Defaults are defined in the default/eventgen.conf file in App mode**. +The original `SA-Eventgen` was written as a Splunk app, and this Eventgen release supports that deployment method as well. In this deployment method, we will read configurations through Splunk's internal REST interface for grabbing config info, and Eventgen will look for configurations in every installed apps default and local directories in `eventgen.conf` file. This is how ES is deployed, and it provides a very good example of this deployment method. If you are writing a complicated Splunk application which will be deployed in multiple Applications, like ES, this is the recommended deployment method. -In your app's eventgen.conf file, sample files for file, mvfile and seqfile substitution should be referenced using `$SPLUNK_HOME/etc/apps//samples/`. +Install the latest SA-Eventgen App. There is no additional configuration required. SA-Eventgen app will automatically identify with any apps with `eventgen.conf`. -## Scripted Input +To start generating data, simply enable the SA-Eventgen modinput by going to Settings > Data Inputs > SA-Eventgen and by clicking "enable" on the default modular input stanza. -If you are writing an Eventgen for one application, like the Operational Intelligence demo, bundling two applications together is more complex than required and complicates distribution. In this case, Eventgen supports being deployed as a scripted input inside your application. **Note, you must set 'passAuth = splunk-system-user' in your inputs.conf for this to work**. An example inputs.conf entry: +If you wish you add your bundle so that the modinput can detect your package: +Package your `eventgen.conf` and sample files into a directory structure as outlined in the [configuration](CONFIGURE.md). After that's done, copy/move the bundle into your `${SPLUNK_HOME}/etc/apps/` directory and restart Splunk. If you have specific samples enabled in your `eventgen.conf`, you should see data streaming into the specified Splunk index. - [script://./bin/eventgen.py] - disabled = false - interval = 300 - passAuth = splunk-system-user - sourcetype = eventgen - index = _internal - -Note, the interval can be set to anything. Eventgen will stay running as soon as Splunk launches it. To embed Eventgen into your application, you need to include everything in the bin and lib directories in your application. In Scripted Input mode, we also read eventgen-standalone.conf in the default and local directories, and again **it will not flatten these configurations, so the local file will completely override the default**. It is recommended that when deploying standalone, you only write one configuration file in the local directory. Remember to copy any stock samples you are using into your apps samples directory as well. **Defaults are defined in the lib/eventgen\_defaults file in the [global] stanza**. - -In your app's eventgen.conf file, sample files for file, mvfile and seqfile substitution should be referenced using `$SPLUNK_HOME/etc/apps//samples/`. +Make sure the bundle app permission is global. You can config this in two ways: +* Log in to Splunk Web and navigate to Apps > Manage Apps. Find the bundle app row and set the permission to 'Global' on the Sharing column. +* Create a folder `metadata` under the bundle with file `default.meta` and add the following content: +``` +[] +export=system +``` ## Wrapping up -We hope the tutorial covers most use cases you would need. If you have something you're struggling to model, please reach out to Tony Lee (tonyl@splunk.com). We believe we can cover just about anything you'd want to model with this Eventgen, but if not, we're happy to add features to the software so that everyone can benefit! \ No newline at end of file +We hope the tutorial covers most use cases you would need. If you have something you're struggling to model, please reach out to Tony Lee (tonyl@splunk.com). We believe we can cover just about anything you'd want to model with this Eventgen, but if not, we're happy to add features to the software so that everyone can benefit! diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 2b939a14..2706b9c0 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -266,7 +266,7 @@ sampletype = raw | csv CSV allows you to override output fields for the sample like host, index, source and sourcetype from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has a header row which defines field names. - OVERRIDES FOR DEFAULT FIELDS WILL ONLY WITH WITH outputMode SPLUNKSTREAM. + OVERRIDES FOR DEFAULT FIELDS WILL ONLY WORK WITH outputMode SPLUNKSTREAM. interval = * Only valid in mode = sample @@ -359,21 +359,21 @@ dayOfWeekRate = minuteOfHourRate = * Takes a JSON hash of 60 minutes of an hour, starting with 0 * Sample JSON: - { "0": 1, "2": 1...} + { "0": 1, "1": 1...} * If a match is not found, will default to count events * Also multiplied times dayOfWeekRate, hourOfDateRate, dayOfMonthRate, monthOfYearRate dayOfMonthRate = * Takes a JSON hash of 31 days of the month, starting with 1 * Sample JSON: - { "1": 1, "2": 1...} + { "1": 1, "1": 1...} * If a match is not found, will default to count events * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, monthOfYearRate monthOfYearRate = - * Takes a JSON hash of 60 minutes of an hour, starting with 0 + * Takes a JSON hash of 12 months of a year, starting with 1 * Sample JSON: - { "0": 1, "2": 1...} + { "1": 1, "2": 1...} * If a match is not found, will default to count events * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, dayOfMonthRate @@ -606,4 +606,4 @@ Note, "TARGET_NAME" is a variable that should be replaced by the hostname of Eve * Example: ``` $ curl http://localhost:9500/volume/egx1 -X POST -d '{"perDayVolume": 200}' - ``` \ No newline at end of file + ``` diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index 4710a78e..d51c0d9b 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -2,10 +2,10 @@ The primary source of configuration done in Eventgen is governed by the `eventgen.conf` file. -* If deployed using containers, Eventgen will look for eventgen.conf in bundles under the `default` directory. For instance, if your bundle is named "datamix-app", you should archive your eventgen.conf in "datamix-app/default/eventgen.conf". -* If deployed as a Splunk App, Eventgen will look for eventgen.conf files for every app installed in Splunk, and will generate events for every eventgen.conf file it finds. This is convenient if you want to design event generation into a Technology Addon (TA) or other type of Splunk app. You can ship Eventgen configurations with your app and distribute the Eventgen app separately. +* If deployed using containers, Eventgen will look for `eventgen.conf` in bundles under the `default` directory. For instance, if your bundle is named `datamix-app`, you should archive your `eventgen.conf` in `datamix-app/default/eventgen.conf`. +* If deployed as a Splunk App, Eventgen will look for `eventgen.conf` files for every app installed in Splunk, and will generate events for every `eventgen.conf` file it finds. This is convenient if you want to design event generation into a Technology Addon (TA) or other type of Splunk app. You can ship Eventgen configurations with your app and distribute the Eventgen app separately. -The INI format of eventgen.conf can have one or more stanzas. Each stanza name is a sample file it will be reading from. There a number of options available in each stanza. For instance, breaking down this tutorial file option-by-option, we can see how this file will be used to set up Eventgen: +The INI format of `eventgen.conf` can have one or more stanzas. Each stanza name is a sample file it will be reading from. There a number of options available in each stanza. For instance, breaking down this tutorial file option-by-option, we can see how this file will be used to set up Eventgen: ``` [sample.tutorial1] @@ -66,6 +66,8 @@ There are various outputModes available (see the [spec](REFERENCE.md#eventgencon splunkPass = changeme ``` Parameters for setting up outputMode = splunkstream. This is only required if we want to run Eventgen outside of Splunk. As a Splunk App and running as a scripted input, eventgen will gather this information from Splunk itself. Since we'll be running this from the command line for the tutorial, please customize your username and password in the tutorial. +Note: +>When using outputMode=splunkstream for running Eventgen outside of Splunk, use parameter `PYTHONHTTPSVERIFY=0` to ignore the SSL error: `SSLError: [SSL: CERTIFICATE_VERIFY_FAILED]` ``` token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2},\d{3} From 1a35eea4aa3912856b6f0838d5d661455c86d87b Mon Sep 17 00:00:00 2001 From: Jack Meixensperger Date: Mon, 15 Apr 2019 10:22:51 -0700 Subject: [PATCH 17/68] Post-PEP8 Fixes (#157) * skip sort, gitignore 3rd party libs * fixed yapf ignore, ran format across repo --- .yapfignore | 2 + Makefile | 6 ++ setup.py | 3 +- splunk_eventgen/__main__.py | 3 +- .../splunk_app/lib/modinput/__init__.py | 3 +- tests/unit/conftest.py | 3 + tests/unit/test_eventgenconfig.py | 1 + tests/unit/test_timeparser.py | 56 +++++++------------ 8 files changed, 34 insertions(+), 43 deletions(-) create mode 100644 .yapfignore diff --git a/.yapfignore b/.yapfignore new file mode 100644 index 00000000..85fef0c5 --- /dev/null +++ b/.yapfignore @@ -0,0 +1,2 @@ +splunk_eventgen/lib/concurrent +splunk_eventgen/lib/requests_futures diff --git a/Makefile b/Makefile index 81d1b419..559bd63b 100644 --- a/Makefile +++ b/Makefile @@ -117,3 +117,9 @@ else @yapf -i $(NEWLY_ADDED_PY_FILES) endif +lint-all: + @flake8 . + +format-all: + @isort -rc . + @yapf -r -i . diff --git a/setup.py b/setup.py index 0cf07e05..c46fc7e7 100644 --- a/setup.py +++ b/setup.py @@ -51,5 +51,4 @@ def readme(): 'pyOpenSSL', 'flake8>=3.7.7', 'yapf>=0.26.0', - 'isort>=4.3.15' - ]) + 'isort>=4.3.15']) diff --git a/splunk_eventgen/__main__.py b/splunk_eventgen/__main__.py index d9e43d3d..1dd058e9 100644 --- a/splunk_eventgen/__main__.py +++ b/splunk_eventgen/__main__.py @@ -14,13 +14,12 @@ import requests -import eventgen_core - FILE_LOCATION = os.path.dirname(os.path.abspath(__file__)) path_prepend = os.path.join(FILE_LOCATION, 'lib') sys.path.append(path_prepend) import __init__ as splunk_eventgen_init # noqa isort:skip +import eventgen_core # noqa isort:skip EVENTGEN_VERSION = splunk_eventgen_init.__version__ logger = logging.getLogger() diff --git a/splunk_eventgen/splunk_app/lib/modinput/__init__.py b/splunk_eventgen/splunk_app/lib/modinput/__init__.py index 1d2da228..44c4bcc3 100644 --- a/splunk_eventgen/splunk_app/lib/modinput/__init__.py +++ b/splunk_eventgen/splunk_app/lib/modinput/__init__.py @@ -20,8 +20,7 @@ from splunk.models.app import App from xmloutput import setupLogger -from .fields import (BooleanField, Field, FieldValidationException, - IntervalField) +from .fields import (BooleanField, Field, FieldValidationException, IntervalField) try: from splunk.clilib.bundle_paths import make_splunkhome_path diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py index fddf8c5d..528209ef 100644 --- a/tests/unit/conftest.py +++ b/tests/unit/conftest.py @@ -1,4 +1,5 @@ from os import path as op + import pytest from splunk_eventgen.lib.eventgenconfig import Config @@ -7,8 +8,10 @@ @pytest.fixture def eventgen_config(): """Returns a function to create config instance based on config file""" + def _make_eventgen_config_instance(configfile=None): if configfile is not None: configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) return Config(configfile=configfile) + return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py index e46feabb..b0391ef6 100644 --- a/tests/unit/test_eventgenconfig.py +++ b/tests/unit/test_eventgenconfig.py @@ -1,6 +1,7 @@ import json import os from ConfigParser import ConfigParser + import pytest from splunk_eventgen.lib.eventgensamples import Sample diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py index b39f0549..4dc7d13d 100644 --- a/tests/unit/test_timeparser.py +++ b/tests/unit/test_timeparser.py @@ -5,10 +5,9 @@ from splunk_eventgen.lib import timeparser time_delta_test_params = [(datetime.timedelta(days=1), 86400), - (datetime.timedelta( - days=1, hours=3, minutes=15, seconds=32), 98132), - (datetime.timedelta(hours=1, minutes=10), 4200), - (datetime.timedelta(hours=-1), -3600), (None, 0)] + (datetime.timedelta(days=1, hours=3, minutes=15, seconds=32), 98132), + (datetime.timedelta(hours=1, minutes=10), 4200), (datetime.timedelta(hours=-1), -3600), + (None, 0)] @pytest.mark.parametrize('delta,expect', time_delta_test_params) @@ -35,25 +34,19 @@ def check_datetime_equal(d1, d2): assert d1.second == d2.second -parse_time_math_params = [('+', '100', 's', - datetime.datetime(2019, 3, 8, 4, 10, 20), +parse_time_math_params = [('+', '100', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), datetime.datetime(2019, 3, 8, 4, 12, 0)), - ('-', '20', 'm', - datetime.datetime(2019, 3, 8, 4, 10, 20), + ('-', '20', 'm', datetime.datetime(2019, 3, 8, 4, 10, 20), datetime.datetime(2017, 7, 8, 4, 10, 20)), - ('', '3', 'w', - datetime.datetime(2019, 3, 8, 4, 10, 20), + ('', '3', 'w', datetime.datetime(2019, 3, 8, 4, 10, 20), datetime.datetime(2019, 3, 29, 4, 10, 20)), - ('', '0', 's', - datetime.datetime(2019, 3, 8, 4, 10, 20), + ('', '0', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), datetime.datetime(2019, 3, 8, 4, 10, 20)), - ('', '123', '', - datetime.datetime(2019, 3, 8, 4, 10, 20), + ('', '123', '', datetime.datetime(2019, 3, 8, 4, 10, 20), datetime.datetime(2019, 3, 8, 4, 10, 20))] -@pytest.mark.parametrize('plusminus,num,unit,ret,expect', - parse_time_math_params) +@pytest.mark.parametrize('plusminus,num,unit,ret,expect', parse_time_math_params) def test_time_parser_time_math(plusminus, num, unit, ret, expect): ''' test timeParserTimeMath function, parse the time modifier @@ -78,27 +71,16 @@ def mock_utc_now(): timeparser_params = [ - ('now', datetime.timedelta(days=1), - datetime.datetime(2019, 3, 10, 13, 20, 15)), - ('now', datetime.timedelta(days=0), - datetime.datetime(2019, 3, 10, 5, 20, 15)), - ('now', datetime.timedelta(hours=2), - datetime.datetime(2019, 3, 10, 7, 20, 15)), - ('now', datetime.timedelta(hours=-3), - datetime.datetime(2019, 3, 10, 2, 20, 15)), - ('-7d', datetime.timedelta(days=1), - datetime.datetime(2019, 3, 3, 13, 20, 15)), - ('-0mon@mon', datetime.timedelta(days=1), - datetime.datetime(2019, 3, 1, 0, 0, 0)), - ('-1mon@mon', datetime.timedelta(days=1), - datetime.datetime(2019, 2, 1, 0, 0, 0)), - ('-3d@d', datetime.timedelta(days=1), datetime.datetime( - 2019, 3, 7, 0, 0, 0)), - ('+5d', datetime.timedelta(days=1), - datetime.datetime(2019, 3, 15, 13, 20, 15)), - ('', datetime.timedelta(days=1), - datetime.datetime(2019, 3, 10, 13, 20, 15)), -] + ('now', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), + ('now', datetime.timedelta(days=0), datetime.datetime(2019, 3, 10, 5, 20, 15)), + ('now', datetime.timedelta(hours=2), datetime.datetime(2019, 3, 10, 7, 20, 15)), + ('now', datetime.timedelta(hours=-3), datetime.datetime(2019, 3, 10, 2, 20, 15)), + ('-7d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 3, 13, 20, 15)), + ('-0mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 3, 1, 0, 0, 0)), + ('-1mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 2, 1, 0, 0, 0)), + ('-3d@d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 7, 0, 0, 0)), + ('+5d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 15, 13, 20, 15)), + ('', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), ] @pytest.mark.parametrize('ts,tz,expect', timeparser_params) From 2a416a915a5c66c575c245f1a1d2da1ab4361dbd Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 18 Apr 2019 10:39:38 +0800 Subject: [PATCH 18/68] Issue 160 (#163) * Fixed timer and token * Added a conditional for end=-1 * Update eventgentimer.py --- splunk_eventgen/lib/eventgentimer.py | 29 +++++++++++++++++++++------- splunk_eventgen/lib/eventgentoken.py | 13 ++++++++++++- 2 files changed, 34 insertions(+), 8 deletions(-) diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index f37d726b..5ad5bb1b 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -108,9 +108,12 @@ def real_run(self): end = False previous_count_left = 0 raw_event_size = self.predict_event_size() - if self.end and int(self.end) == 0: - self.logger.info("End = 0, no events will be generated for sample '%s'" % self.sample.name) - end = True + if self.end: + if int(self.end) == 0: + self.logger.info("End = 0, no events will be generated for sample '%s'" % self.sample.name) + end = True + elif int(self.end) == -1: + self.logger.info("End is set to -1. Will be running without stopping for sample %s" % self.sample.name) while not end: # Need to be able to stop threads by the main thread or this thread. self.config will stop all threads # referenced in the config object, while, self.stopping will only stop this one. @@ -119,7 +122,6 @@ def real_run(self): count = self.rater.rate() # First run of the generator, see if we have any backfill work to do. if self.countdown <= 0: - if self.sample.backfill and not self.sample.backfilldone: realtime = self.sample.now(realnow=True) if "-" in self.sample.backfill[0]: @@ -136,6 +138,10 @@ def real_run(self): backfillearliest = timeParserTimeMath(plusminus=mathsymbol, num=backfillnumber, unit=backfillletter, ret=realtime) while backfillearliest < realtime: + if self.executions == int(self.end): + self.logger.info("End executions %d reached, ending generation of sample '%s'" % (int( + self.end), self.sample.name)) + break et = backfillearliest lt = timeParserTimeMath(plusminus="+", num=self.interval, unit="s", ret=et) genPlugin = self.generatorPlugin(sample=self.sample) @@ -144,9 +150,11 @@ def real_run(self): genPlugin.updateCounts(count=count, start_time=et, end_time=lt) try: self.generatorQueue.put(genPlugin) + self.executions += 1 except Full: self.logger.warning("Generator Queue Full. Skipping current generation.") backfillearliest = lt + self.sample.backfilldone = True else: # 12/15/13 CS Moving the rating to a separate plugin architecture @@ -181,8 +189,10 @@ def real_run(self): # self.generatorPlugin is only an instance, now we need a real plugin. Make a copy of # of the sample in case another generator corrupts it. copy_sample = copy.copy(self.sample) - tokens = copy.deepcopy(self.sample.tokens) - copy_sample.tokens = tokens + copy_tokens = [] + for token in self.sample.tokens: + copy_tokens.append(token.deepcopy(self.sample)) + copy_sample.tokens = copy_tokens genPlugin = self.generatorPlugin(sample=copy_sample) # Adjust queue for threading mode genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) @@ -190,6 +200,7 @@ def real_run(self): try: self.generatorQueue.put(genPlugin) + self.executions += 1 self.logger.info(("Worker# {0}: Put {1} MB of events in queue for sample '{2}'" + "with et '{3}' and lt '{4}'").format( worker_id, round((count / 1024.0 / 1024), 4), @@ -204,10 +215,14 @@ def real_run(self): # Sleep until we're supposed to wake up and generate more events self.countdown = self.interval - self.executions += 1 # 8/20/15 CS Adding support for ending generation at a certain time + if self.end: + if int(self.end) == -1: + time.sleep(self.time) + self.countdown -= self.time + continue # 3/16/16 CS Adding support for ending on a number of executions instead of time # Should be fine with storing state in this sample object since each sample has it's own unique # timer thread diff --git a/splunk_eventgen/lib/eventgentoken.py b/splunk_eventgen/lib/eventgentoken.py index f409d90f..d6c402fe 100644 --- a/splunk_eventgen/lib/eventgentoken.py +++ b/splunk_eventgen/lib/eventgentoken.py @@ -46,6 +46,9 @@ def __init__(self, sample=None): self._earliestTime = (None, None) self._latestTime = (None, None) + if sample: + self.sample = sample + def __str__(self): """Only used for debugging, outputs a pretty printed representation of this token""" # Eliminate recursive going back to parent @@ -65,10 +68,18 @@ def __getstate__(self): def __setstate__(self, d): self.__dict__ = d self._setup_logging() + + def deepcopy(self, sample=None): + # temp = dict([(key, value) for (key, value) in token_object.items() if key != 'sample' and key != 'logger']) + cp = Token() + cp.__setstate__(self.__getstate__()) + if sample: + cp.sample = sample + return cp def _setup_logging(self): self.logger = logging.getLogger('eventgen') - + def _match(self, event): """Executes regular expression match and returns the re.Match object""" return re.match(self.token, event) From b67c295e0b30ad8674a28bffbe2f5073df440a7c Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 18 Apr 2019 10:40:02 +0800 Subject: [PATCH 19/68] Fixed timer and token (#162) From ad6b9420f575e3701dbce11b70205da1700beb77 Mon Sep 17 00:00:00 2001 From: Ryan Yeung Date: Thu, 18 Apr 2019 10:40:28 +0800 Subject: [PATCH 20/68] add extendIndexes feature (#154) * add extendIndexes feature * set extendIndexes as a list value * correct log level * upate doc, change num to weight --- docs/REFERENCE.md | 7 +++++++ splunk_eventgen/lib/eventgenconfig.py | 23 +++++++++++------------ splunk_eventgen/lib/eventgensamples.py | 16 ++++++++++++++++ splunk_eventgen/lib/generatorplugin.py | 3 ++- splunk_eventgen/lib/outputcounter.py | 2 +- 5 files changed, 37 insertions(+), 14 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 2706b9c0..5eadb898 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -210,6 +210,13 @@ index = * ONLY VALID WITH outputMode SPLUNKSTREAM * Splunk index to write events to. Defaults to main if none specified. +extendIndexes = :,, + * Sample level setting. Use this setting enable eventgen to generate multi indexes for one sample. + * if you set the value with pattern like ":", it will treat as a prefix of an actual index, + * and is an integer that indicate the count of index you want to extend for this sample. + * eg: events from a sample with "extendIndexes = test_:5, main, web" setting will be added with indexes "test_0, test_1, + * test_2, test_3, test_4, main, web" randomly. + source = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent * Set event source in Splunk to . Defaults to 'eventgen' if none specified. diff --git a/splunk_eventgen/lib/eventgenconfig.py b/splunk_eventgen/lib/eventgenconfig.py index b9f1db38..d9382bfc 100644 --- a/splunk_eventgen/lib/eventgenconfig.py +++ b/splunk_eventgen/lib/eventgenconfig.py @@ -30,7 +30,6 @@ STANDALONE = False - # 5/10/12 CS Some people consider Singleton to be lazy. Dunno, I like it for convenience. # My general thought on that sort of stuff is if you don't like it, reimplement it. I'll consider # your patch. @@ -77,17 +76,17 @@ class Config(object): generatorQueue = None args = None - # Validations - _validSettings = [ - 'disabled', 'blacklist', 'spoolDir', 'spoolFile', 'breaker', 'sampletype', 'interval', 'delay', 'count', - 'bundlelines', 'earliest', 'latest', 'eai:acl', 'hourOfDayRate', 'dayOfWeekRate', 'randomizeCount', - 'randomizeEvents', 'outputMode', 'fileName', 'fileMaxBytes', 'fileBackupFiles', 'index', 'source', 'sourcetype', - 'host', 'hostRegex', 'projectID', 'accessToken', 'mode', 'backfill', 'backfillSearch', 'eai:userName', - 'eai:appName', 'timeMultiple', 'debug', 'minuteOfHourRate', 'timezone', 'dayOfMonthRate', 'monthOfYearRate', - 'perDayVolume', 'outputWorkers', 'generator', 'rater', 'generatorWorkers', 'timeField', 'sampleDir', - 'threading', 'profiler', 'maxIntervalsBeforeFlush', 'maxQueueLength', 'splunkMethod', 'splunkPort', 'verbosity', - 'useOutputQueue', 'seed', 'end', 'autotimestamps', 'autotimestamp', 'httpeventWaitResponse', 'outputCounter', - 'sequentialTimestamp'] + ## Validations + _validSettings = ['disabled', 'blacklist', 'spoolDir', 'spoolFile', 'breaker', 'sampletype' , 'interval', + 'delay', 'count', 'bundlelines', 'earliest', 'latest', 'eai:acl', 'hourOfDayRate', + 'dayOfWeekRate', 'randomizeCount', 'randomizeEvents', 'outputMode', 'fileName', 'fileMaxBytes', + 'fileBackupFiles', 'index', 'source', 'sourcetype', 'host', 'hostRegex', 'projectID', 'accessToken', + 'mode', 'backfill', 'backfillSearch', 'eai:userName', 'eai:appName', 'timeMultiple', 'debug', + 'minuteOfHourRate', 'timezone', 'dayOfMonthRate', 'monthOfYearRate', 'perDayVolume', + 'outputWorkers', 'generator', 'rater', 'generatorWorkers', 'timeField', 'sampleDir', 'threading', + 'profiler', 'maxIntervalsBeforeFlush', 'maxQueueLength', 'splunkMethod', 'splunkPort', + 'verbosity', 'useOutputQueue', 'seed','end', 'autotimestamps', 'autotimestamp', 'httpeventWaitResponse', + 'outputCounter', 'sequentialTimestamp', 'extendIndexes'] _validTokenTypes = {'token': 0, 'replacementType': 1, 'replacement': 2} _validHostTokens = {'token': 0, 'replacement': 1} _validReplacementTypes = [ diff --git a/splunk_eventgen/lib/eventgensamples.py b/splunk_eventgen/lib/eventgensamples.py index 269ffe43..8a0c21b3 100644 --- a/splunk_eventgen/lib/eventgensamples.py +++ b/splunk_eventgen/lib/eventgensamples.py @@ -86,6 +86,8 @@ class Sample(object): end = None queueable = None autotimestamp = None + extendIndexes = None + index_list = [] # Internal fields sampleLines = None @@ -416,6 +418,20 @@ def loadSample(self): for i in xrange(0, len(self.sampleDict)): if len(self.sampleDict[i]['_raw']) < 1 or self.sampleDict[i]['_raw'][-1] != '\n': self.sampleDict[i]['_raw'] += '\n' + if self.extendIndexes: + try: + for index_item in self.extendIndexes.split(','): + index_item = index_item.strip() + if ':' in index_item: + extend_indexes_count = int(index_item.split(':')[-1]) + extend_indexes_prefix = index_item.split(':')[0] + "{}" + self.index_list.extend([extend_indexes_prefix.format(_i) for _i in range(extend_indexes_count)]) + elif len(index_item): + self.index_list.append(index_item) + except Exception: + self.logger.error("Failed to parse extendIndexes, using index={} now.".format(self.index)) + self.index_list = [] + self.extendIndexes = None def get_loaded_sample(self): if self.sampletype != 'csv' and os.path.getsize(self.filePath) > 10000000: diff --git a/splunk_eventgen/lib/generatorplugin.py b/splunk_eventgen/lib/generatorplugin.py index f8364b2d..6ab1ecac 100644 --- a/splunk_eventgen/lib/generatorplugin.py +++ b/splunk_eventgen/lib/generatorplugin.py @@ -5,6 +5,7 @@ import logging.handlers import pprint import time +import random import urllib from xml.dom import minidom from xml.parsers.expat import ExpatError @@ -226,7 +227,7 @@ def replace_tokens(self, eventsDict, earliest, latest, ignore_tokens=False): except Exception: time_val = int(time.mktime(self._sample.now().timetuple())) temp_event = { - '_raw': event, 'index': targetevent['index'], 'host': host, 'hostRegex': self._sample.hostRegex, + '_raw': event, 'index': random.choice(self._sample.index_list)if len(self._sample.index_list) else targetevent['index'], 'host': host, 'hostRegex': self._sample.hostRegex, 'source': targetevent['source'], 'sourcetype': targetevent['sourcetype'], '_time': time_val} send_events.append(temp_event) return send_events diff --git a/splunk_eventgen/lib/outputcounter.py b/splunk_eventgen/lib/outputcounter.py index 2e9b803c..46d455e2 100644 --- a/splunk_eventgen/lib/outputcounter.py +++ b/splunk_eventgen/lib/outputcounter.py @@ -26,7 +26,7 @@ def update_throughput(self, timestamp): self.current_time = timestamp self.event_count_1_min = 0 self.event_size_1_min = 0 - self.logger.error("Current throughput is {} B/s, {} count/s".format(self.throughput_volume, + self.logger.debug("Current throughput is {} B/s, {} count/s".format(self.throughput_volume, self.throughput_count)) def collect(self, event_count, event_size): From da1fb02f0aeb75844434ed654f92f8a66401abb9 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 18 Apr 2019 15:25:06 +0800 Subject: [PATCH 21/68] Test fix (#168) * Add sample functional test for replay mode * Add token replacement functional tests * skip failed case * Added a timeout * created a results dir --- .circleci/config.yml | 1 + tests/.gitignore | 1 + tests/large/README.md | 12 + tests/large/conf/eventgen_replay.conf | 14 + .../large/conf/eventgen_replay_backfill.conf | 15 + tests/large/conf/eventgen_replay_csv.conf | 10 + tests/large/conf/eventgen_replay_end_1.conf | 15 + tests/large/conf/eventgen_replay_end_2.conf | 15 + .../conf/eventgen_replay_timeMultiple.conf | 14 + tests/large/conf/eventgen_sample.conf | 15 + .../large/conf/eventgen_sample_backfill.conf | 15 + tests/large/conf/eventgen_sample_breaker.conf | 14 + tests/large/conf/eventgen_sample_count.conf | 16 + tests/large/conf/eventgen_sample_csv.conf | 14 + .../large/conf/eventgen_sample_earliest.conf | 16 + tests/large/conf/eventgen_sample_end.conf | 16 + .../large/conf/eventgen_sample_interval.conf | 15 + tests/large/conf/eventgen_sample_latest.conf | 16 + .../conf/eventgen_token_replacement.conf | 62 + tests/large/conftest.py | 18 + tests/large/results/__init__.py | 0 tests/large/sample/breakersample | 9 + tests/large/sample/city.csv | 7472 +++++++++++++++++ tests/large/sample/cp.csv | 3 + tests/large/sample/id.csv | 100 + tests/large/sample/ip.csv | 100 + tests/large/sample/replay | 12 + tests/large/sample/sample | 12 + tests/large/sample/timeorder.csv | 11 + tests/large/sample/tokenreplacement.sample | 10 + tests/large/test_mode_replay.py | 61 + tests/large/test_mode_sample.py | 101 + tests/large/test_token_replacement.py | 68 + tests/large/utils/__init__.py | 0 tests/large/utils/eventgen_test_helper.py | 77 + 35 files changed, 8350 insertions(+) create mode 100644 tests/large/README.md create mode 100755 tests/large/conf/eventgen_replay.conf create mode 100644 tests/large/conf/eventgen_replay_backfill.conf create mode 100755 tests/large/conf/eventgen_replay_csv.conf create mode 100755 tests/large/conf/eventgen_replay_end_1.conf create mode 100755 tests/large/conf/eventgen_replay_end_2.conf create mode 100755 tests/large/conf/eventgen_replay_timeMultiple.conf create mode 100755 tests/large/conf/eventgen_sample.conf create mode 100755 tests/large/conf/eventgen_sample_backfill.conf create mode 100755 tests/large/conf/eventgen_sample_breaker.conf create mode 100755 tests/large/conf/eventgen_sample_count.conf create mode 100755 tests/large/conf/eventgen_sample_csv.conf create mode 100755 tests/large/conf/eventgen_sample_earliest.conf create mode 100755 tests/large/conf/eventgen_sample_end.conf create mode 100755 tests/large/conf/eventgen_sample_interval.conf create mode 100755 tests/large/conf/eventgen_sample_latest.conf create mode 100755 tests/large/conf/eventgen_token_replacement.conf create mode 100644 tests/large/conftest.py create mode 100644 tests/large/results/__init__.py create mode 100755 tests/large/sample/breakersample create mode 100644 tests/large/sample/city.csv create mode 100644 tests/large/sample/cp.csv create mode 100644 tests/large/sample/id.csv create mode 100644 tests/large/sample/ip.csv create mode 100755 tests/large/sample/replay create mode 100755 tests/large/sample/sample create mode 100644 tests/large/sample/timeorder.csv create mode 100644 tests/large/sample/tokenreplacement.sample create mode 100644 tests/large/test_mode_replay.py create mode 100644 tests/large/test_mode_sample.py create mode 100644 tests/large/test_token_replacement.py create mode 100644 tests/large/utils/__init__.py create mode 100644 tests/large/utils/eventgen_test_helper.py diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ae3eb9a..20edc98f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,6 +17,7 @@ jobs: name: Run Tests command: | make test + no_output_timeout: 30m - store_test_results: path: /home/circleci/project/tests/test-reports - store_artifacts: diff --git a/tests/.gitignore b/tests/.gitignore index 0d20b648..0dde16b9 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1 +1,2 @@ *.pyc +results/ diff --git a/tests/large/README.md b/tests/large/README.md new file mode 100644 index 00000000..74380daf --- /dev/null +++ b/tests/large/README.md @@ -0,0 +1,12 @@ +Convention: +* Test conf files are located at `conf` folder; +* Sample files are located at `sample` folder; +* Other utils related tools are located at `utils` folder; +* `fileName` in `conf` settings is relative which will write results to folder `tests/large/results`; + +How to add a new functional test: +* Add eventgen conf file in `conf` folder;(`sampleDir = tests/large/sample` should be in the conf) +* Add sample file defined in above eventgen conf in folder `sample`; +* Add a new functional test `py` file and add test case; +* Use `eventgen_test_helper` fixture to create a helper instance and use `get_events()` to get events generated; +* Pass `timeout=60` if you want to stop eventgen instance after 60s; diff --git a/tests/large/conf/eventgen_replay.conf b/tests/large/conf/eventgen_replay.conf new file mode 100755 index 00000000..c919f072 --- /dev/null +++ b/tests/large/conf/eventgen_replay.conf @@ -0,0 +1,14 @@ +[replay] +sampleDir = tests/large/sample +mode = replay +sampletype = raw +outputMode = stdout +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_replay_backfill.conf b/tests/large/conf/eventgen_replay_backfill.conf new file mode 100644 index 00000000..c8e0b1ca --- /dev/null +++ b/tests/large/conf/eventgen_replay_backfill.conf @@ -0,0 +1,15 @@ +[replay] +sampleDir = tests/large/sample +backfill = -5s +sampletype = raw +outputMode = stdout +mode = replay +end = 2 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_replay_csv.conf b/tests/large/conf/eventgen_replay_csv.conf new file mode 100755 index 00000000..a00ca925 --- /dev/null +++ b/tests/large/conf/eventgen_replay_csv.conf @@ -0,0 +1,10 @@ +[timeorder] +sampleDir = tests/large/sample +mode = replay +sampletype = csv +timeField = _time +outputMode = stdout + +token.0.token = \d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%dT%H:%M:%S diff --git a/tests/large/conf/eventgen_replay_end_1.conf b/tests/large/conf/eventgen_replay_end_1.conf new file mode 100755 index 00000000..f9295a8f --- /dev/null +++ b/tests/large/conf/eventgen_replay_end_1.conf @@ -0,0 +1,15 @@ +[replay] +sampleDir = tests/large/sample +mode = replay +earliest = -5s +sampletype = raw +outputMode = stdout +end = 2 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_replay_end_2.conf b/tests/large/conf/eventgen_replay_end_2.conf new file mode 100755 index 00000000..afbcb35a --- /dev/null +++ b/tests/large/conf/eventgen_replay_end_2.conf @@ -0,0 +1,15 @@ +[replay] +sampleDir = tests/large/sample +mode = replay +earliest = -5s +sampletype = raw +outputMode = stdout +end = -1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_replay_timeMultiple.conf b/tests/large/conf/eventgen_replay_timeMultiple.conf new file mode 100755 index 00000000..c51ff32b --- /dev/null +++ b/tests/large/conf/eventgen_replay_timeMultiple.conf @@ -0,0 +1,14 @@ +[replay] +sampleDir = tests/large/sample +mode = replay +sampletype = raw +outputMode = stdout +timeMultiple = 0.5 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = replaytimestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample.conf b/tests/large/conf/eventgen_sample.conf new file mode 100755 index 00000000..657ec987 --- /dev/null +++ b/tests/large/conf/eventgen_sample.conf @@ -0,0 +1,15 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +earliest = -15s +sampletype = raw +outputMode = stdout +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_backfill.conf b/tests/large/conf/eventgen_sample_backfill.conf new file mode 100755 index 00000000..8c9d56ac --- /dev/null +++ b/tests/large/conf/eventgen_sample_backfill.conf @@ -0,0 +1,15 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +backfill = -15s +sampletype = raw +outputMode = stdout +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_breaker.conf b/tests/large/conf/eventgen_sample_breaker.conf new file mode 100755 index 00000000..99a41ded --- /dev/null +++ b/tests/large/conf/eventgen_sample_breaker.conf @@ -0,0 +1,14 @@ +[breakersample] +sampleDir = tests/large/sample +outputMode = file +fileName = tests/large/results/eventgen_sample_breaker.result +count = 3 +earliest = -3s +latest = now +interval = 3 +breaker = ^\d{14}\.\d{6} +end = 1 + +token.0.token = ^(\d{14})\.\d{6} +token.0.replacementType = timestamp +token.0.replacement = %Y%m%d%H%M%S diff --git a/tests/large/conf/eventgen_sample_count.conf b/tests/large/conf/eventgen_sample_count.conf new file mode 100755 index 00000000..688c4b0f --- /dev/null +++ b/tests/large/conf/eventgen_sample_count.conf @@ -0,0 +1,16 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +earliest = -15s +sampletype = raw +outputMode = stdout +end = 1 +count = 5 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_csv.conf b/tests/large/conf/eventgen_sample_csv.conf new file mode 100755 index 00000000..18065dac --- /dev/null +++ b/tests/large/conf/eventgen_sample_csv.conf @@ -0,0 +1,14 @@ +[timeorder] +sampleDir = tests/large/sample +mode = sample +sampletype = csv +outputMode = stdout +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_earliest.conf b/tests/large/conf/eventgen_sample_earliest.conf new file mode 100755 index 00000000..8c505b14 --- /dev/null +++ b/tests/large/conf/eventgen_sample_earliest.conf @@ -0,0 +1,16 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +earliest = -15s +sampletype = raw +outputMode = file +fileName = tests/large/results/eventgen_sample_earliest.result +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_end.conf b/tests/large/conf/eventgen_sample_end.conf new file mode 100755 index 00000000..9918bc79 --- /dev/null +++ b/tests/large/conf/eventgen_sample_end.conf @@ -0,0 +1,16 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +earliest = -15s +sampletype = raw +outputMode = file +fileName = tests/large/results/eventgen_sample_end.result +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_interval.conf b/tests/large/conf/eventgen_sample_interval.conf new file mode 100755 index 00000000..74d95c8a --- /dev/null +++ b/tests/large/conf/eventgen_sample_interval.conf @@ -0,0 +1,15 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +sampletype = raw +outputMode = file +fileName = tests/large/results/eventgen_sample_interval.result +interval = 10 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_sample_latest.conf b/tests/large/conf/eventgen_sample_latest.conf new file mode 100755 index 00000000..00ff18aa --- /dev/null +++ b/tests/large/conf/eventgen_sample_latest.conf @@ -0,0 +1,16 @@ +[sample] +sampleDir = tests/large/sample +mode = sample +latest = +15s +sampletype = raw +outputMode = file +fileName = tests/large/results/eventgen_sample_latest.result +end = 1 + +token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} +token.0.replacementType = timestamp +token.0.replacement = %Y-%m-%d %H:%M:%S + +token.1.token = @@integer +token.1.replacementType = random +token.1.replacement = integer[0:10] diff --git a/tests/large/conf/eventgen_token_replacement.conf b/tests/large/conf/eventgen_token_replacement.conf new file mode 100755 index 00000000..9b521e4b --- /dev/null +++ b/tests/large/conf/eventgen_token_replacement.conf @@ -0,0 +1,62 @@ +[tokenreplacement.sample] +sampleDir = tests/large/sample +mode = sample +sampletype = raw +outputMode = stdout +end = 1 + +token.0.token = "start":"(\d+) +token.0.replacementType = timestamp +token.0.replacement = %s + +token.1.token = "cp":"([\d\.]+) +token.1.replacementType = file +token.1.replacement = tests/large/sample/cp.csv + +token.2.token = "country":"(\w+) +token.2.replacementType = mvfile +token.2.replacement = tests/large/sample/city.csv:1 + +token.3.token = "city":"(\w+) +token.3.replacementType = file +token.3.replacement = tests/large/sample/city.csv:2 + +token.4.token = "lat":"(-?\d+.\d+) +token.4.replacementType = file +token.4.replacement = tests/large/sample/city.csv:4 + +token.5.token = "long":"(-?\d+.\d+) +token.5.replacementType = file +token.5.replacement = tests/large/sample/city.csv:5 + +token.6.token = "id":"([\w\-]+) +token.6.replacementType = file +token.6.replacement = tests/large/sample/id.csv + +token.7.token = "bytes":"(\d+) +token.7.replacementType = random +token.7.replacement = integer[40:5000] + +token.8.token = "cliIP":"(\d+.\d+.\d+.\d+) +token.8.replacementType = file +token.8.replacement = tests/large/sample/ip.csv + +token.9.token = "lastByte":"(\d+) +token.9.replacementType = static +token.9.replacement = 0 + +token.10.token = "receiver_id":"(\d*) +token.10.replacementType = integerid +token.10.replacement = 1 + +token.11.token = "Ak_IP":"(\d+.\d+.\d+.\d+) +token.11.replacementType = random +token.11.replacement = ipv4 + +token.12.token = "forward-origin-ip":"(\d+.\d+.\d+.\d+) +token.12.replacementType = random +token.12.replacement = ipv6 + +token.13.token = "end-user-ip":"(\d+.\d+.\d+.\d+) +token.13.replacementType = random +token.13.replacement = mac diff --git a/tests/large/conftest.py b/tests/large/conftest.py new file mode 100644 index 00000000..60663dd6 --- /dev/null +++ b/tests/large/conftest.py @@ -0,0 +1,18 @@ +import pytest + +from utils.eventgen_test_helper import EventgenTestHelper + + +@pytest.fixture +def eventgen_test_helper(): + """Returns a function to create EventgenTestHelper instance based on config file""" + created_instances = [] + + def _create_eventgen_test_helper_instance(conf, timeout=None): + instance = EventgenTestHelper(conf, timeout) + created_instances.append(instance) + return instance + yield _create_eventgen_test_helper_instance + + for instance in created_instances: + instance.tear_down() diff --git a/tests/large/results/__init__.py b/tests/large/results/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/sample/breakersample b/tests/large/sample/breakersample new file mode 100755 index 00000000..51304b28 --- /dev/null +++ b/tests/large/sample/breakersample @@ -0,0 +1,9 @@ +20110414114247.083068 +PercentProcessorTime=@@proc_time +PercentUserTime=37 +wmi_type=CPUTime + +20110414114247.083068 +PercentProcessorTime=100 +PercentUserTime=37 +wmi_type=CPUTime diff --git a/tests/large/sample/city.csv b/tests/large/sample/city.csv new file mode 100644 index 00000000..e9a15c34 --- /dev/null +++ b/tests/large/sample/city.csv @@ -0,0 +1,7472 @@ +US,ATLANTA,GA,33.7486,-84.3884,23.74.2.12 +US,WASHINGTON,DC,38.9102,-77.0179,204.93.39.36 +GB,LONDON,EN,51.50,-0.12,88.221.87.112 +TW,TAIPEI,"",25.02,121.45,61.220.62.171 +US,AUSTIN,TX,30.2669,-97.7429,23.215.15.32 +AU,BRISBANE,QLD,-27.50,153.02,210.11.142.64 +US,LOSANGELES,CA,33.9733,-118.2487,173.223.52.67 +CA,VANCOUVER,BC,49.25,-123.13,24.244.17.205 +CA,MONTREAL,QC,45.50,-73.58,72.246.43.237 +DE,FRANKFURT,HE,50.12,8.68,2.20.142.166 +US,POTTSTOWN,PA,40.2616,-75.6182,184.26.44.42 +UA,KIEV,"",50.43,30.52,80.239.222.190 +CA,TORONTO,ON,43.67,-79.42,165.254.48.150 +US,MILILANI,HI,21.4601,-157.9603,23.67.56.205 +EC,GUAYAQUIL,"",-2.17,-79.90,23.74.2.7 +CN,GUANGZHOU,GD,23.12,113.25,72.246.191.16 +MX,GUADALAJARA,JAL,20.67,-103.33,107.14.32.235 +VN,SAIGON,"",10.75,106.67,184.84.239.186 +US,NEWYORK,NY,40.7500,-73.9967,209.170.113.237 +US,PRINEVILLE,OR,44.3258,-120.6504,23.79.240.37 +CA,CALGARY,AB,51.08,-114.08,24.244.17.197 +US,SANANTONIO,TX,29.4697,-98.5294,165.254.96.242 +US,SAINTPETERSBURG,FL,27.7710,-82.6368,23.74.2.12 +US,MOUNTAINVIEW,CA,37.4154,-122.0585,63.80.12.225 +US,CHARLOTTESVILLE,VA,38.0464,-78.4686,184.26.44.42 +US,JACKSONVILLE,FL,30.3383,-81.7706,23.79.240.48 +US,DALLAS,TX,32.7874,-96.7989,23.212.53.64 +US,CHICAGO,IL,41.8643,-87.645,23.79.255.153 +IN,KOLKATA,WB,22.57,88.37,23.57.76.18 +US,ROSEVILLE,CA,38.7399,-121.2479,23.61.195.149 +US,PATERSON,NJ,40.9126,-74.171,184.51.125.79 +DE,HERBORN,HE,50.68,8.32,23.14.94.228 +GE,TBILISI,"",41.72,44.78,80.15.235.171 +US,GOLETA,CA,34.4356,-119.8269,184.50.26.179 +LV,RIGA,"",56.95,24.10,2.21.240.40 +NZ,AUCKLAND,"",-36.87,174.77,184.28.126.7 +KR,ANYANG,"",37.39,126.93,125.56.214.147 +HK,HONGKONG,"",22.28,114.15,219.76.10.103 +IT,MILANO,"",45.47,9.20,193.45.15.199 +US,SUNNYVALE,CA,37.3873,-122.0158,23.212.52.82 +US,INDEPENDENCE,MO,39.1129,-94.4077,23.77.234.11 +DE,WILHELMSHAVEN,NI,53.52,8.13,2.20.142.166 +US,RIVERFOREST,IL,41.8950,-87.8194,23.67.60.220 +US,REDWOODCITY,CA,37.4611,-122.2355,23.61.195.150 +IN,BHOPAL,MP,23.27,77.40,96.17.180.175 +CN,NANNING,GX,22.82,108.32,184.51.199.145 +CN,BEIJING,BJ,39.90,116.41,184.51.199.132 +US,FRESNO,CA,36.8419,-119.7952,23.212.52.79 +US,MCKINNEY,TX,33.2109,-96.5677,107.14.43.30 +FR,SAINTDENIS,"",48.93,2.37,217.89.107.179 +US,MODESTO,CA,37.6733,-121.0107,96.17.12.44 +UA,KERCH,CRIMEA,45.36,36.48,2.22.52.109 +US,WILMINGTON,CA,33.7841,-118.2613,184.87.195.109 +SG,SINGAPORE,"",1.29,103.86,23.75.23.135 +US,GERMANTOWN,MD,39.1292,-77.2953,23.192.161.16 +US,SAINTLOUIS,MO,38.6312,-90.1926,96.17.14.16 +TH,BANGKOK,"",13.75,100.52,23.14.94.228 +US,PORTLAND,OR,45.4978,-122.6937,67.131.104.14 +US,UNIONCITY,CA,37.5970,-122.059,96.17.12.44 +US,SEATTLE,WA,47.6115,-122.3343,184.27.179.187 +US,FORTCOLLINS,CO,40.5917,-105.129,63.235.21.141 +US,ROCHESTER,NY,43.1544,-77.6156,107.14.38.227 +PH,ROOSEVELT,"",12.73,123.70,202.78.83.175 +US,SALTLAKECITY,UT,40.7566,-111.8992,23.212.53.75 +AU,RIVERWOOD,NSW,-33.95,151.05,23.62.8.25 +US,GLENDALE,CA,34.1697,-118.2902,184.87.195.99 +AU,CANBERRA,ACT,-35.28,149.22,60.254.143.114 +US,SPRINGFIELD,MO,37.2155,-93.2981,23.77.234.11 +US,KANSASCITY,MO,39.1034,-94.6,23.63.227.227 +US,MARTIN,TN,36.3557,-88.8417,23.79.240.36 +US,BRIDGEVIEW,IL,41.7407,-87.8064,23.67.60.222 +US,HOMESTEAD,FL,25.4848,-80.5094,23.79.240.48 +ZA,CAPETOWN,"",-33.92,18.42,41.193.163.53 +US,WAUKEE,IA,41.6100,-93.8635,23.67.60.217 +FR,NICE,"",43.70,7.25,2.16.117.190 +US,WESTPALMBEACH,FL,26.7174,-80.0695,184.51.207.103 +US,JACKSON,MS,32.2896,-90.1841,23.79.240.36 +US,BUFFALO,NY,42.8954,-78.8862,23.63.227.227 +US,INDIANAPOLIS,IN,39.7745,-86.1096,65.113.249.8 +DE,DUSSELDORF,NW,51.22,6.77,92.122.207.164 +MX,MEXICOCITY,DIF,19.43,-99.14,23.216.10.54 +ES,MADRID,"",40.40,-3.68,92.123.73.233 +CN,FUZHOU,FJ,26.08,119.30,72.246.191.16 +US,DETROIT,MI,42.3465,-83.0598,23.62.100.152 +US,SANTAFE,NM,35.7998,-105.9892,184.84.180.97 +US,MADISON,WI,43.0733,-89.4012,184.85.215.165 +US,GLASGOW,KY,36.9602,-85.9175,65.113.249.8 +US,FAIRFAX,SC,32.8821,-81.3268,64.86.201.118 +AU,SYDNEY,NSW,-33.88,151.22,184.28.17.55 +US,RANTOUL,IL,40.3044,-88.1569,23.67.60.223 +US,NORMAN,OK,35.2227,-97.4395,23.215.15.9 +IN,BHANDUP,MH,19.15,72.93,23.57.69.157 +GB,EALING,EN,51.50,-0.32,173.222.211.203 +US,MILWAUKEE,WI,43.0386,-87.9067,23.74.8.24 +US,BROOKLYN,NY,40.6944,-73.9902,184.26.44.42 +JP,TOKYO,13,35.69,139.75,23.15.1.15 +DE,HAMBURG,HH,53.55,10.00,194.25.95.214 +US,PHOENIX,AZ,33.4486,-112.0733,184.50.26.179 +US,RALEIGH,NC,35.7750,-78.6336,184.27.45.157 +LT,VILNIUS,"",54.68,25.32,2.21.240.40 +US,ORLANDO,FL,28.5418,-81.3736,23.33.186.101 +US,FREMONT,CA,37.5710,-121.9858,23.61.195.150 +CA,EDMONTON,AB,53.55,-113.50,65.113.249.11 +US,SMYRNA,GA,33.8714,-84.4998,184.51.35.226 +MY,KUALALUMPUR,"",3.17,101.70,58.26.185.125 +ES,VALENCIA,"",39.47,-0.37,213.248.113.118 +US,TEMPE,AZ,33.4148,-111.9088,184.50.26.201 +US,MIAMI,FL,25.7738,-80.1936,23.79.240.48 +BG,STARAZAGORA,"",42.42,25.63,23.62.237.133 +KE,NAIROBI,"",-1.28,36.82,95.101.2.112 +UA,KHARKIV,"",50.00,36.25,2.22.52.102 +US,MARIETTA,GA,33.9527,-84.5502,23.79.240.36 +FR,PARIS,"",48.87,2.33,23.212.108.8 +US,HUMBOLDT,IA,42.7370,-94.1578,23.63.227.214 +US,OAKLAND,NJ,41.0312,-74.241,184.51.125.79 +GB,BIRMINGHAM,EN,52.47,-1.92,23.67.255.106 +US,SANFRANCISCO,CA,37.7795,-122.4195,96.17.12.44 +FR,LYON,"",45.75,4.85,23.62.237.137 +RU,TOMSK,"",56.50,84.97,2.21.240.40 +DE,NEUISENBURG,HE,50.05,8.70,77.67.27.231 +US,RICHLAND,WA,46.3844,-119.3775,184.27.179.187 +US,HIALEAH,FL,25.8579,-80.2783,23.79.240.36 +US,TACOMA,WA,47.2534,-122.4432,23.212.59.64 +US,DURHAM,NC,35.9993,-78.8978,209.18.41.23 +AU,MELBOURNE,VIC,-37.82,144.97,60.254.143.211 +LU,LUXEMBOURG,"",49.61,6.13,77.67.27.250 +CH,ZURICH,"",47.37,8.55,194.25.95.225 +US,MAULDIN,SC,34.7791,-82.3072,23.79.240.48 +GB,RENFREW,SC,55.87,-4.37,88.221.87.94 +US,DIAMONDBAR,CA,33.9944,-117.8149,184.50.26.179 +US,ASHBURN,VA,39.0438,-77.4879,96.6.47.106 +US,OREM,UT,40.3142,-111.7099,184.84.180.68 +US,MENLOPARK,CA,37.4524,-122.1842,23.212.52.88 +US,TORRANCE,CA,33.8331,-118.3144,23.216.10.78 +US,SANDIEGO,CA,32.7253,-117.1721,63.151.119.16 +IN,HYDERABAD,AP,17.38,78.47,23.57.69.156 +US,WARRENSBURG,MO,38.8247,-93.6796,204.93.47.216 +US,SANLORENZO,CA,37.6786,-122.133,184.84.180.101 +DE,KOLN,NW,50.93,6.95,23.14.94.228 +VN,HANOI,"",21.03,105.85,23.76.205.111 +US,BOISE,ID,43.6139,-116.2025,206.104.149.146 +US,CANALWINCHESTER,OH,39.8265,-82.7973,96.17.9.14 +US,SACRAMENTO,CA,38.5819,-121.4935,96.17.12.48 +US,ELOY,AZ,32.6521,-111.6069,173.223.52.70 +US,BOWLINGGREEN,KY,37.1031,-86.4201,107.14.38.224 +AU,CARLINGFORD,NSW,-33.78,151.05,23.62.8.25 +KR,SEOUL,"",37.57,127.00,61.111.58.43 +US,REDMOND,WA,47.6833,-122.1231,184.27.179.159 +RO,DEVA,"",45.88,22.90,81.196.26.236 +IN,BANGALORE,KA,12.98,77.58,122.178.225.70 +RU,MOSCOW,"",55.75,37.58,217.212.227.25 +US,BEDFORD,PA,39.9363,-78.5519,205.185.195.170 +US,MOUNTEPHRAIM,NJ,39.8811,-75.0919,184.26.44.38 +DE,BERLIN,BE,52.52,13.40,23.14.94.220 +SE,STOCKHOLM,AB,59.33,18.05,2.21.240.40 +US,GASTONIA,NC,35.2205,-81.2501,63.141.200.241 +US,MAITLAND,FL,28.6318,-81.3625,23.33.186.101 +US,PUYALLUP,WA,47.1905,-122.3289,23.212.59.90 +US,COEURDALENE,ID,47.6719,-116.5794,107.14.43.30 +DE,REGENSBURG,BY,49.02,12.10,194.25.95.214 +PL,WARSAW,"",52.25,21.00,2.22.52.109 +CN,SHENYANG,LN,41.80,123.41,184.50.87.176 +DE,HEILBRONN,BW,49.14,9.22,92.122.215.89 +US,SANTAROSA,CA,38.4507,-122.7923,96.17.12.44 +US,SANDY,UT,40.5769,-111.8884,63.151.119.25 +AR,MUNRO,"",-34.53,-58.55,80.239.222.167 +US,SANTACLARA,CA,37.3519,-121.952,23.204.109.61 +MT,MELITA,"",35.89,14.40,193.45.15.199 +IE,DUBLIN,"",53.33,-6.25,88.221.222.33 +IN,NEWDELHI,DL,28.60,77.20,23.57.69.157 +US,DESMOINES,IA,41.6006,-93.6087,23.67.60.223 +US,GREENVILLE,NC,35.6116,-77.3732,184.28.17.76 +AT,EGGENBURG,"",48.63,15.82,195.145.147.107 +US,WALNUT,CA,34.0203,-117.8647,184.50.26.179 +US,SALEM,OR,44.9053,-122.9167,23.212.59.63 +US,CENTREVILLE,VA,38.8530,-77.4732,23.67.242.139 +PK,FAZAL,"",26.63,69.53,23.5.165.168 +JP,NAGOYA,23,35.17,136.92,72.246.191.19 +RU,PROGRESS,"",53.88,37.85,80.239.222.169 +US,LEXINGTON,KY,38.0142,-84.4842,23.74.8.24 +DK,COPENHAGEN,"",55.67,12.58,2.21.240.61 +BR,RIODEJANEIRO,RJ,-22.90,-43.23,177.159.174.13 +US,CANYONCOUNTRY,CA,34.4009,-118.3941,184.50.26.194 +US,NASHVILLE,TN,36.1649,-86.7761,23.67.60.223 +US,FULTON,MO,38.8555,-91.9568,23.79.255.153 +US,MONROE,LA,32.5324,-92.1046,65.113.249.8 +CA,REGINA,SK,50.45,-104.62,184.27.179.181 +UA,LVIV,"",49.83,24.00,23.14.94.224 +US,MORGANHILL,CA,37.2101,-121.5392,23.216.10.78 +US,HAYS,KS,38.8338,-99.3297,165.254.96.248 +US,PASADENA,CA,34.1465,-118.1393,23.216.10.54 +LV,ILGUCIEMS,"",56.97,24.07,2.21.240.61 +US,SANJOSE,CA,37.3435,-121.8887,23.61.195.165 +ID,JAKARTA,"",-6.17,106.80,23.0.162.46 +US,NEWBALTIMORE,MI,42.6814,-82.776,23.67.60.222 +US,HOUSTON,TX,29.7634,-95.3634,23.215.15.22 +RS,BELGRADE,"",44.82,20.47,23.62.237.135 +IN,CHENNAI,TN,13.08,80.28,23.205.118.106 +US,MENOMONEEFALLS,WI,43.1490,-88.1221,65.113.249.8 +US,WINDER,GA,33.9995,-83.6956,23.79.240.36 +US,SHERMANOAKS,CA,34.1460,-118.4632,184.50.26.203 +SA,RIYADH,"",24.64,46.77,80.239.237.231 +US,NORTHRIDGE,CA,34.2385,-118.5501,184.50.26.179 +US,FORTWORTH,TX,32.7254,-97.3208,96.17.177.63 +US,STAMFORD,CT,41.0531,-73.5379,65.113.249.11 +GB,BELFAST,NI,54.58,-5.93,23.212.108.28 +US,GRANDFORKS,ND,47.8810,-97.0607,107.14.38.217 +US,HOMEWOOD,IL,41.5602,-87.657,23.67.60.223 +US,LOUISVILLE,KY,38.2545,-85.7595,107.14.38.227 +US,SANTACRUZ,CA,37.0412,-122.124,23.61.195.163 +HU,BUDAPEST,"",47.50,19.08,46.33.70.104 +US,MILESCITY,MT,46.3777,-105.7778,23.215.15.32 +US,PALMDALE,CA,34.4834,-118.0804,184.50.26.179 +DE,DARMSTADT,HE,49.87,8.65,194.25.95.212 +GB,CROYDON,EN,51.38,-0.10,23.67.255.158 +AR,BUENOSAIRES,"",-34.59,-58.67,190.98.167.220 +FR,AMIENS,"",49.90,2.30,2.20.243.45 +US,NOVI,MI,42.4713,-83.5253,184.26.93.116 +US,FREEPORT,NY,40.6517,-73.5837,184.26.44.38 +US,BALTIMORE,MD,39.2940,-76.6226,23.67.242.139 +AU,PERTH,WA,-31.93,115.83,184.86.223.76 +US,LAKEJACKSON,TX,29.0424,-95.4739,23.215.15.9 +US,STATECOLLEGE,PA,40.8020,-77.8329,63.216.54.216 +US,NAPA,CA,38.3929,-122.2917,23.212.52.79 +US,BRUNSWICK,OH,41.2414,-81.829,107.14.32.235 +US,ELCENTRO,CA,32.7712,-115.5933,184.50.26.179 +US,CHULAVISTA,CA,32.6403,-117.0834,23.220.149.114 +IL,HAIFA,"",32.82,34.99,212.143.162.162 +US,GEORGETOWN,TX,30.6233,-97.6645,204.2.223.90 +US,SAGINAW,MI,43.4083,-83.8878,23.63.227.227 +BG,SOFIA,"",42.68,23.32,23.62.237.133 +CA,BURNABY,BC,49.25,-122.95,24.244.17.197 +US,CULVERCITY,CA,33.9886,-118.3988,165.254.51.142 +CA,OTTAWA,ON,45.42,-75.70,107.14.38.227 +IT,ROME,"",41.90,12.48,95.101.34.109 +BR,BRASILIA,DF,-15.78,-47.92,2.22.52.102 +US,SCOTTSDALE,AZ,33.5251,-111.8956,63.226.34.173 +JP,MARUNOUCHI,13,35.68,139.77,104.74.70.105 +RO,CONSTANTA,"",44.18,28.65,81.196.26.236 +US,TEMECULA,CA,33.4939,-117.1475,184.50.26.179 +US,SARALAND,AL,30.8789,-88.1101,96.17.153.162 +PK,LAHORE,"",31.57,74.32,79.140.94.234 +US,NEWARK,CA,37.5187,-122.045,96.17.12.48 +US,OLYMPIA,WA,46.9755,-122.8721,184.84.180.101 +US,RENTON,WA,47.4624,-122.211,23.212.59.85 +PH,MAKATI,"",14.57,121.03,58.71.107.120 +FR,GRENOBLE,"",45.17,5.72,2.20.243.42 +DE,ROTTWEIL,BW,48.17,8.62,194.25.95.225 +US,REDFORD,MI,42.3767,-83.2863,69.22.154.212 +US,SPOKANE,WA,47.6670,-117.4381,206.104.149.133 +US,KALAMAZOO,MI,42.2663,-85.5617,23.63.227.214 +JP,OSAKA,27,34.67,135.50,72.246.184.89 +US,BURLINGTON,NJ,40.0691,-74.8276,184.26.44.42 +IN,MUMBAI,MH,18.98,72.83,124.124.252.159 +US,SANGABRIEL,CA,34.1144,-118.0896,23.215.15.9 +PT,LISBON,"",38.72,-9.13,92.122.127.109 +US,PALOALTO,CA,37.4439,-122.1504,184.84.180.101 +GB,MANCHESTER,EN,53.50,-2.22,23.67.255.158 +US,LEWISVILLE,TX,33.0463,-96.9939,107.14.43.29 +US,PINELLASPARK,FL,27.8427,-82.6999,63.141.200.248 +US,GRANDJUNCTION,CO,39.0723,-108.5429,184.85.215.165 +US,WYOMING,MI,42.8655,-85.6221,23.67.60.223 +US,ROSEMEAD,CA,34.0646,-118.0833,23.216.10.54 +US,ROCKYRIVER,OH,41.4702,-81.8524,72.247.10.237 +AU,ADELAIDE,SA,-34.93,138.60,23.205.117.14 +DE,BAYREUTH,BY,49.95,11.58,195.145.147.107 +US,QUINCY,WA,47.1872,-119.8129,184.27.45.150 +US,HUNTINGTONPARK,CA,33.9770,-118.2172,184.87.195.109 +US,CARY,NC,35.7524,-78.7781,209.18.41.27 +DE,ESCHBORN,HE,50.13,8.55,92.122.207.179 +US,LYNN,MA,42.4611,-70.947,23.67.244.240 +US,BIXBY,OK,35.9022,-95.8422,23.215.15.22 +AE,DUBAI,"",25.25,55.28,173.223.52.70 +DE,SIEGEN,NW,50.87,8.03,195.145.147.109 +US,PECOS,TX,31.4465,-103.7134,23.74.8.24 +CA,JOLIETTE,QC,46.03,-73.43,67.69.197.95 +US,DENVER,CO,39.7393,-104.9844,23.215.15.32 +CN,SHIJIAZHUANG,HE,38.04,114.48,72.246.191.19 +CN,URUMQI,XJ,43.80,87.58,72.246.191.19 +DE,MUNICH,BY,48.15,11.58,84.53.146.39 +US,SWEDESBORO,NJ,39.7570,-75.3338,72.247.10.237 +US,MEDFORD,MA,42.4184,-71.1069,184.25.109.196 +US,SHREVEPORT,LA,32.5051,-93.7448,96.17.153.157 +DE,AUGSBURG,BY,48.37,10.88,195.145.147.101 +BR,CURITIBA,PR,-25.42,-49.25,189.75.165.189 +US,POMPANOBEACH,FL,26.2349,-80.1201,23.79.240.36 +BR,PORTOALEGRE,RS,-30.03,-51.20,189.75.165.189 +PR,SANJUAN,"",18.4697,-66.1179,23.61.195.163 +BD,DHAKA,"",23.72,90.41,165.254.134.201 +LK,COLOMBO,"",6.93,79.85,23.220.148.146 +US,SANYSIDRO,CA,32.7154,-117.1565,23.220.149.124 +US,IRVINE,CA,33.6880,-117.7988,184.50.26.201 +US,LYNNWOOD,WA,47.8111,-122.2834,184.27.179.159 +US,BAYTOWN,TX,29.7803,-94.894,23.212.53.75 +US,AMARILLO,TX,35.2118,-101.7582,23.5.164.146 +US,MOUNTJULIET,TN,36.1974,-86.4365,23.79.240.36 +US,BAYCITY,MI,43.5968,-83.9583,23.63.227.214 +US,CLEVELAND,OH,41.4995,-81.6959,23.74.8.24 +CA,BRANDON,MB,49.83,-99.95,23.74.8.24 +US,CONYERS,GA,33.7241,-83.9735,23.79.240.36 +US,TAMPA,FL,27.9475,-82.4588,165.254.205.7 +US,LUSBY,MD,38.3848,-76.4416,23.192.161.21 +US,HARRIMAN,TN,35.9599,-84.4439,23.79.240.48 +DE,STUTTGART,BW,48.77,9.18,84.53.146.34 +US,SANMATEO,CA,37.5741,-122.3193,69.22.166.208 +US,WEATHERFORD,TX,32.8532,-97.696,204.93.47.216 +US,RICHMOND,VA,37.5539,-77.4608,63.130.161.140 +BE,BRUSSELS,"",50.83,4.33,23.62.100.152 +US,GROVE,OK,36.5736,-94.7059,23.5.164.143 +US,REDDING,CA,40.4417,-122.9863,23.216.10.54 +US,BLOOMINGTON,IL,40.4766,-88.992,23.67.60.223 +US,SIOUXFALLS,SD,43.5503,-96.7002,107.14.38.217 +US,KILLEEN,TX,31.1169,-97.7264,107.14.43.30 +US,LONGVIEW,WA,46.2098,-123.0644,23.212.59.85 +KZ,ALMATY,"",43.25,76.95,23.14.94.224 +JP,IZUMO,32,35.37,132.77,23.3.74.113 +US,DALTON,GA,34.7698,-84.9703,63.216.54.236 +US,RIVERSIDE,CA,33.9951,-117.3732,23.216.10.54 +US,OXFORD,OH,39.4851,-84.7501,107.14.38.224 +DE,LEIPZIG,SN,51.30,12.33,80.157.150.169 +DE,MAINZ,RP,50.00,8.27,194.25.95.214 +GB,HUDDERSFIELD,EN,53.65,-1.78,88.221.87.94 +NZ,TAURANGA,"",-37.69,176.17,219.88.186.164 +RO,TIMISOARA,"",45.76,21.23,23.212.108.28 +HU,TOROKBALINT,"",47.43,18.92,213.198.95.213 +DE,BAYERN,BY,47.80,12.53,2.16.217.206 +US,FOUNTAINVALLEY,CA,33.7104,-117.9513,107.14.44.185 +US,VISTA,CA,33.1789,-117.2437,63.151.119.16 +US,REYNOLDSBURG,OH,39.9581,-82.7839,23.212.53.75 +US,CHEYENNE,WY,41.1301,-104.8689,69.31.59.63 +US,TUCSON,AZ,32.2167,-110.9709,184.50.26.204 +US,KIRKLAND,WA,47.6755,-122.1871,23.61.195.163 +US,EAGLERIVER,AK,61.1936,-149.321,96.17.108.26 +CO,BOGOTA,"",4.60,-74.08,23.74.2.7 +US,ELPASO,TX,31.7603,-106.4799,107.14.43.29 +US,OMAHA,NE,41.2596,-95.9374,23.74.8.8 +CA,NANAIMO,BC,49.15,-123.92,184.27.179.159 +US,MILPITAS,CA,37.4486,-121.8587,96.17.12.48 +US,NEWHARTFORD,NY,43.0600,-75.2864,107.14.38.227 +UA,UKRAINA,"",47.33,36.27,2.20.142.166 +US,CHARLOTTE,NC,35.2287,-80.8458,63.151.29.15 +US,GARDENGROVE,CA,33.7860,-117.9318,184.50.26.201 +US,APPLETON,WI,44.2816,-88.3849,107.14.38.224 +US,LANCASTER,CA,34.7349,-118.1508,184.50.26.204 +BR,SAOPAULO,SP,-23.53,-46.62,177.159.181.174 +CN,TAIYUAN,SX,37.87,112.56,72.246.191.16 +US,CICERO,IL,41.8443,-87.7585,23.67.60.222 +US,ELKIN,NC,36.3086,-80.843,209.18.41.27 +US,MOUNTVERNON,WA,48.4305,-122.4357,184.27.179.159 +AZ,BAKI,"",40.37,49.88,80.239.149.123 +US,LARAMIE,WY,41.3416,-105.6973,23.212.53.64 +US,ALBANY,OR,44.6313,-123.0676,184.27.179.159 +US,ADDISON,IL,41.9314,-88.011,107.14.38.224 +RU,CHITA,"",52.03,113.55,2.21.240.61 +US,GAMBRILLS,MD,38.9852,-76.6657,23.192.161.30 +US,FAIRFIELD,OH,39.3284,-84.5465,107.14.38.217 +US,BOERNE,TX,29.8239,-98.758,107.14.36.199 +DE,SULZBACH,HE,50.13,8.53,92.122.207.179 +CN,CHANGSHA,HN,28.20,112.97,72.246.191.19 +US,LONGBEACH,CA,33.7668,-118.1886,23.216.10.54 +US,SEARCY,AR,35.2662,-91.8491,96.16.7.101 +NL,AMSTERDAM,"",52.35,4.92,95.100.169.105 +US,HUNTINGTONBEACH,CA,33.7036,-117.9942,23.216.10.78 +CN,JINAN,SD,36.67,117.00,184.50.87.176 +CH,BERN,"",46.92,7.47,193.247.167.211 +US,BILLINGS,MT,45.6311,-108.3519,107.14.32.235 +CL,SANTIAGO,"",-33.45,-70.67,200.91.22.117 +DE,OLDENBURG,NI,53.17,8.20,92.122.207.179 +US,VISALIA,CA,36.2961,-119.382,96.17.12.44 +AU,HOBART,TAS,-42.92,147.33,210.9.88.72 +ET,ADISABEBA,"",9.03,38.70,80.239.237.231 +US,ROCKPORT,TX,28.0205,-97.0545,107.14.43.29 +HK,KOWLOON,"",22.32,114.18,23.76.205.90 +US,CHANDLER,AZ,33.3240,-111.8671,184.50.26.204 +CA,HAMILTON,ON,43.25,-79.83,72.246.43.233 +US,ANCHORAGE,AK,61.2169,-149.8682,165.254.1.206 +HK,HUNGHOM,"",22.30,114.18,23.76.205.111 +JP,NAKANO,14,35.57,139.28,72.246.184.89 +US,MOUNTDORA,FL,28.8027,-81.6446,63.148.206.235 +US,PISCATAWAY,NJ,40.5465,-74.4629,216.151.187.186 +US,LASVEGAS,NV,36.1730,-115.1233,23.61.195.163 +FR,MONTPELLIER,"",43.60,3.88,2.20.243.42 +US,SULLIVAN,MO,38.2643,-91.1348,63.216.54.216 +US,FAIROAKS,CA,38.6525,-121.2544,96.17.12.44 +US,RANCHOCUCAMONGA,CA,34.1370,-117.5982,23.216.10.54 +AF,KABUL,"",34.52,69.18,23.14.94.224 +TT,PORTOFSPAIN,"",10.65,-61.52,204.93.33.141 +DE,BREMEN,HB,53.08,8.80,194.25.95.225 +ZA,JOHANNESBURG,"",-26.20,28.08,41.193.163.53 +US,COACHELLA,CA,33.6820,-116.1678,184.50.26.194 +US,CHAMPAIGN,IL,40.1154,-88.2438,23.67.60.223 +FR,BAYONNE,"",43.48,-1.48,81.52.201.85 +PR,LUQUILLO,"",18.3744,-65.7168,72.246.65.26 +JP,YOKOHAMA,14,35.45,139.65,72.246.191.16 +FR,MARSEILLE,"",43.30,5.40,90.84.50.108 +AU,SUNSHINE,VIC,-37.78,144.83,184.84.221.85 +US,LIVERMORE,CA,37.6209,-121.6768,184.84.180.101 +US,PHILADELPHIA,PA,39.9525,-75.1644,23.67.242.139 +JM,KINGSTON,"",18.00,-76.80,165.254.205.7 +US,BEAVERTON,OR,45.4908,-122.8046,23.212.59.85 +US,ALHAMBRA,CA,34.0905,-118.1279,205.185.195.183 +US,PLEASANTHILL,CA,37.9547,-122.076,96.17.12.48 +US,CUPERTINO,CA,37.3086,-122.0891,96.17.12.44 +US,DAVIS,CA,38.5631,-121.7605,23.61.195.165 +CA,KAMLOOPS,BC,50.67,-120.33,184.27.179.187 +DE,HOYERSWERDA,SN,51.43,14.25,195.95.193.132 +DE,AACHEN,NW,50.77,6.10,80.157.170.158 +IT,PALERMO,"",38.12,13.37,79.140.80.222 +NL,ROTTERDAM,"",51.92,4.50,92.122.189.114 +IL,TELAVIV,"",32.07,34.77,212.25.69.134 +US,CORVALLIS,OR,44.6364,-123.2804,23.212.59.78 +HT,PORTAUPRINCE,"",18.54,-72.33,23.74.2.7 +NO,OSLO,"",59.92,10.75,2.21.240.40 +US,SOUTHFIELD,MI,42.4750,-83.2896,72.247.10.241 +PL,KRAKOW,"",50.08,19.92,88.221.93.150 +US,GILROY,CA,37.0418,-121.4684,23.216.10.54 +US,MINNEAPOLIS,MN,44.9847,-93.2709,23.67.60.223 +US,HICKSVILLE,NY,40.7626,-73.5241,184.26.44.42 +US,BELLEVUE,WA,47.6186,-122.204,23.212.59.85 +US,HYDEPARK,NY,41.8034,-73.8926,184.51.125.79 +SE,VAXJO,G,56.88,14.82,213.155.156.212 +US,LAKELAND,FL,28.0375,-81.9046,23.33.186.101 +US,DUBUQUE,IA,42.5490,-90.6988,23.77.234.35 +US,OAKLANDGARDENS,NY,40.7457,-73.7574,24.143.199.188 +ID,MULIA,"",-2.33,106.27,23.0.162.21 +US,DAVENPORT,IA,41.5221,-90.5751,107.14.38.217 +FR,NANCY,"",48.68,6.20,81.52.201.85 +AU,NORTHSYDNEY,NSW,-33.84,151.21,210.11.142.64 +US,AURORA,IL,41.7671,-88.2508,23.67.60.217 +DE,ERFURT,TH,50.98,11.03,80.157.150.201 +US,APOPKA,FL,28.6645,-81.5402,23.33.186.101 +US,WOODBURY,NJ,39.8266,-75.1276,184.26.44.42 +CA,FREDERICTON,NB,45.95,-66.63,2.20.142.166 +GR,THESSALONIKI,"",40.63,22.93,2.16.217.206 +US,ATHENS,OH,39.3095,-82.081,107.14.38.217 +US,CHESTERTOWN,MD,39.2007,-76.1457,168.143.243.37 +GT,GUATEMALACITY,"",14.63,-90.52,72.246.65.38 +US,PURCHASE,NY,41.0397,-73.7118,69.31.77.208 +US,TRACY,CA,37.7546,-121.3694,23.61.195.163 +US,HEWITT,TX,31.4546,-97.1957,184.26.93.116 +US,LUFKIN,TX,31.3301,-94.744,64.86.135.210 +AT,VIENNA,"",48.20,16.37,195.145.147.108 +US,PLEASANTON,CA,37.6395,-121.8586,23.215.15.22 +US,ELKO,NV,40.8858,-115.7034,23.74.8.8 +US,ARLINGTON,TX,32.6288,-97.1183,184.28.23.4 +US,VICTORVILLE,CA,34.5003,-117.3379,23.216.10.54 +US,FULLERTON,CA,33.8793,-117.8962,184.50.26.179 +US,FORTSMITH,AR,35.3642,-94.4158,23.215.15.22 +PR,AGUADILLA,"",18.4409,-67.1508,23.33.186.101 +US,TEMPLECITY,CA,34.1016,-118.0554,23.216.10.54 +FR,CHAUMONT,"",49.27,1.88,2.16.117.200 +US,WAUKEGAN,IL,42.3639,-87.8447,23.212.53.64 +US,SUNCITY,AZ,33.6050,-112.2837,184.50.26.179 +US,CUMMING,GA,34.2093,-84.1423,72.246.247.5 +US,INDIO,CA,33.7269,-116.2361,184.50.26.179 +US,BAKERSFIELD,CA,35.3841,-119.0207,184.26.93.111 +US,MALIBU,CA,34.0402,-118.6328,173.223.52.70 +DE,BADEN,BW,48.75,8.25,2.16.217.206 +US,RUCKERSVILLE,VA,38.2469,-78.3926,184.26.44.42 +CN,HANGZHOU,ZJ,30.26,120.17,23.76.205.90 +US,BOSSIERCITY,LA,32.5785,-93.6897,23.5.164.146 +DE,HANNOVER,NI,52.37,9.72,80.157.170.154 +US,DENISON,TX,33.7390,-96.5197,23.215.15.22 +US,CLIFTON,NJ,40.8800,-74.1446,184.26.44.42 +US,HONOLULU,HI,21.3069,-157.8584,23.212.53.75 +US,LODI,CA,38.1161,-121.1069,23.212.52.79 +CA,SASKATOON,SK,52.13,-106.67,205.185.195.183 +US,TUSCALOOSA,AL,33.1664,-87.6118,205.185.205.102 +US,MOBILE,AL,30.6945,-88.0431,65.120.60.228 +IN,SURAT,GJ,21.17,72.83,23.57.69.156 +US,SAINTMARYS,GA,30.7777,-81.5701,184.51.35.215 +DE,GOTTINGEN,NI,51.53,9.93,194.25.95.225 +US,AUGUSTA,GA,33.4341,-81.956,23.79.240.36 +US,SANMARCOS,CA,33.1507,-117.1748,184.50.26.204 +SE,ARJEPLOG,BD,66.05,17.90,213.155.156.212 +GB,MILTONKEYNES,EN,52.03,-0.70,92.122.54.12 +JP,NIHONBASHIGOFUKUBASHI,13,35.68,139.77,23.61.250.113 +US,NORTHHILLS,CA,34.2386,-118.4807,184.50.26.194 +US,MESA,AZ,33.4340,-111.8483,63.226.34.173 +TR,ISTANBUL,"",41.02,28.96,2.16.217.211 +US,WILBURTON,OK,34.8806,-95.3086,23.215.15.9 +DE,SAARBRUCKEN,SL,49.23,7.00,194.25.95.212 +RO,ALBAIULIA,"",45.07,28.53,88.221.93.150 +US,WESTCOVINA,CA,34.0668,-117.9376,23.216.10.54 +IN,ROHTAK,HR,28.90,76.57,124.124.252.153 +PK,KARACHI,"",24.87,67.05,23.5.165.167 +IN,HARYANA,HR,29.62,76.98,96.17.182.136 +AU,ROSEDALE,VIC,-38.15,146.78,23.62.157.32 +MY,SHAHALAM,"",3.08,101.53,23.198.99.130 +US,HOLLYWOOD,FL,26.0478,-80.1254,23.79.240.36 +US,ALTON,IL,38.9395,-90.1236,96.17.14.16 +BG,SEVLIEVO,"",43.02,25.10,2.20.45.102 +PH,QUEZONCITY,"",14.63,121.03,202.78.83.170 +GB,ILFORD,EN,51.55,0.05,23.3.15.22 +US,HUNTINGTON,WV,38.3693,-82.4123,184.26.44.42 +US,CARLSBAD,CA,33.1500,-117.3007,184.50.26.189 +US,GARNER,NC,35.6418,-78.5748,96.16.12.216 +RU,URAL,"",54.11,38.33,213.155.156.208 +RU,VOLGOGRAD,"",48.80,44.59,80.239.217.238 +AU,NORTHRYDE,NSW,-33.82,151.10,23.62.224.60 +US,NEWLENOX,IL,41.5052,-87.9609,23.74.8.24 +US,VENICE,CA,33.9944,-118.4634,184.27.45.150 +US,STOCKTON,CA,37.9578,-121.2897,96.17.12.44 +US,AZUSA,CA,34.1312,-117.9157,23.216.10.78 +US,ESCONDIDO,CA,33.0829,-117.0241,23.216.10.54 +MT,VALLETTA,"",35.90,14.51,77.67.29.109 +KR,YONGDONG,"",36.92,126.98,23.65.188.30 +US,BRONX,NY,40.8208,-73.9235,184.51.125.79 +IN,ANDRA,AP,18.35,83.20,80.239.237.231 +CN,WUHAN,HB,30.58,114.27,117.103.188.218 +CA,PARKSVILLE,BC,49.30,-124.32,184.27.179.181 +DE,PADERBORN,NW,51.72,8.77,195.145.147.101 +GB,LEICESTER,EN,52.63,-1.13,184.27.139.24 +JP,OTEMACHI,13,35.68,139.77,72.246.191.19 +US,ROSAMOND,CA,34.8931,-118.3533,23.216.10.78 +US,EUGENE,OR,44.0685,-123.082,206.104.149.133 +US,SNOQUALMIE,WA,47.5717,-121.7785,206.104.149.146 +CN,HEFEI,AH,31.86,117.28,72.246.191.19 +IN,NAGORE,TN,10.82,79.85,117.239.240.96 +US,ROSWELL,NM,33.4293,-104.519,65.116.149.89 +DE,GOERLITZ,SN,51.17,15.00,195.95.193.147 +US,WAUPACA,WI,44.3534,-89.1229,23.63.227.227 +US,MURFREESBORO,TN,35.7571,-86.3959,23.79.240.36 +IN,PUNE,MH,18.53,73.87,23.57.69.159 +IQ,BAGHDAD,"",33.34,44.39,195.27.155.188 +QA,DOHA,"",25.29,51.53,82.148.111.135 +US,JERSEYCITY,NJ,40.7286,-74.0775,23.61.195.165 +US,LITTLEROCK,AR,34.7467,-92.2799,184.84.180.101 +US,EVERGREEN,AL,31.4945,-86.9123,184.51.35.226 +US,DANVILLE,VA,36.6603,-79.4863,184.27.45.150 +FR,PUTEAUX,"",48.87,2.23,23.200.87.59 +US,YUBACITY,CA,39.0204,-121.6141,23.212.52.88 +TR,KOCA,"",41.68,32.48,92.122.215.67 +US,BALDWINPARK,CA,34.0941,-117.9709,184.27.45.150 +US,SANTAMONICA,CA,34.0153,-118.4926,23.216.10.78 +US,MARION,MA,41.7087,-70.7664,184.25.109.213 +CN,CHENGDU,SC,30.67,104.07,72.246.191.16 +US,LAWNDALE,CA,33.8885,-118.3514,184.50.26.204 +US,MEAD,CO,40.2553,-104.9897,23.215.15.9 +US,BLYTHE,CA,33.5664,-114.6283,24.143.194.216 +US,LINCOLN,NE,40.8000,-96.6664,184.26.93.116 +US,ANTIOCH,CA,37.9799,-121.8022,23.212.52.79 +AT,AINET,"",46.87,12.70,23.62.237.133 +KZ,ASTANA,"",51.17,71.50,80.239.222.167 +US,BIGRAPIDS,MI,43.6800,-85.5606,23.63.227.214 +HR,ZAGREB,"",45.80,16.00,23.14.94.220 +US,BRIGHAMCITY,UT,41.4833,-112.0954,184.84.180.98 +GB,KNOWSLEY,EN,53.45,-2.85,88.221.87.112 +FI,SAUNALAHTI,"",63.22,28.55,193.184.164.239 +NZ,PORIRUA,"",-41.13,174.85,219.88.186.172 +PH,MANILA,"",14.58,121.00,202.78.83.170 +DE,DORTMUND,NW,51.52,7.45,80.157.170.158 +US,ELKCITY,OK,35.4257,-99.4694,23.215.15.32 +US,MEMPHIS,TN,35.1496,-90.0487,23.220.100.224 +US,WINTERPARK,FL,28.5987,-81.3537,209.170.117.178 +US,NEWORLEANS,LA,29.9574,-90.0769,23.215.15.22 +US,CATHEDRALCITY,CA,33.8234,-116.4603,184.50.26.194 +FR,ROUEN,"",49.43,1.08,2.20.243.45 +US,PALMCOAST,FL,29.4748,-81.1274,23.33.186.101 +CH,BIEL,"",47.17,7.25,193.247.167.214 +UA,ODESA,"",46.47,30.73,80.239.149.123 +US,ELKGROVEVILLAGE,IL,42.0131,-87.9972,23.220.148.122 +US,RICHARDSON,TX,32.9743,-96.7425,107.14.36.200 +US,COCOABEACH,FL,28.3302,-80.6145,23.33.186.134 +US,SANTABARBARA,CA,34.4179,-119.711,184.50.26.204 +US,SHERWOOD,OR,45.3505,-122.8661,184.27.179.181 +US,HAYWARD,CA,37.6687,-122.0799,23.212.52.82 +CN,GUIYANG,GZ,26.58,106.72,23.76.205.111 +RU,NOVOSIBIRSK,"",55.03,82.92,2.21.240.61 +US,CLOVIS,CA,36.8770,-119.5829,96.17.12.48 +MX,HERMOSILLO,SON,29.07,-110.97,173.223.52.67 +US,LAKEHAVASUCITY,AZ,34.6022,-113.772,24.143.194.180 +US,DOWNEY,CA,33.9400,-118.1319,184.50.26.179 +US,MANSFIELD,OH,40.7584,-82.5156,205.185.195.170 +MV,MALE,"",4.17,73.50,96.17.182.136 +US,MURRIETA,CA,33.5484,-117.2689,23.216.10.54 +US,IRMO,SC,34.1400,-81.2028,72.246.247.5 +US,COSTAMESA,CA,33.6791,-117.9087,184.50.26.201 +US,TOMBALL,TX,30.0721,-95.6453,96.17.163.165 +US,BELLINGHAM,WA,48.7531,-122.5024,184.27.179.179 +US,GARDENA,CA,33.8912,-118.2972,184.50.26.201 +DE,KOBLENZ,RP,50.35,7.60,194.25.95.212 +US,KIRKSVILLE,MO,40.1490,-92.6667,107.14.43.30 +US,WICHITAFALLS,TX,33.9834,-98.4403,184.28.23.24 +JP,HODOGAYA,14,35.45,139.60,117.104.139.162 +HR,SPLIT,"",43.51,16.46,46.33.70.97 +US,TURLOCK,CA,37.4741,-120.8695,23.216.10.54 +CA,ETOBICOKE,ON,43.70,-79.57,209.148.192.57 +US,JOLIET,IL,41.5083,-88.2276,23.67.60.223 +US,SOUTHJORDAN,UT,40.5586,-111.9523,23.215.15.32 +US,TUJUNGA,CA,34.3190,-118.2411,184.50.26.179 +FR,AUBERVILLIERS,"",48.92,2.38,2.20.243.42 +FI,HELSINKI,"",60.18,24.93,80.239.237.84 +US,OCEANSIDE,CA,33.1959,-117.3789,63.233.112.196 +US,CASTAIC,CA,34.4864,-118.5786,184.50.26.204 +US,GROTON,CT,41.3595,-72.0439,72.247.10.237 +US,COLLINSVILLE,IL,38.6902,-89.9816,96.17.14.16 +US,ALBUQUERQUE,NM,35.0846,-106.6516,184.84.180.101 +MX,CIUDADJUAREZ,CHH,19.07,-103.88,23.215.15.22 +US,WOODBRIDGE,VA,38.6245,-77.2692,184.28.17.55 +US,VEROBEACH,FL,27.6406,-80.4018,184.28.184.16 +US,HIGHLAND,CA,34.1353,-117.1532,23.216.10.78 +ES,BARCELONA,"",41.38,2.18,213.248.113.93 +US,HARTSELLE,AL,34.4480,-86.8894,23.220.100.223 +EG,CAIRO,"",30.05,31.25,79.140.94.243 +US,BIGSTONEGAP,VA,36.8453,-82.7571,23.212.53.64 +US,WALNUTCREEK,CA,37.8720,-122.0686,23.212.52.82 +CA,KELOWNA,BC,49.90,-119.48,184.27.179.187 +US,THOMASTON,GA,32.8808,-84.3396,23.79.240.36 +DE,MEERBUSCH,NW,51.28,6.67,2.22.61.102 +NO,FORNEBU,"",59.90,10.63,2.21.240.40 +FR,STRASBOURG,"",48.58,7.75,77.67.27.231 +US,ANNARBOR,MI,42.2601,-83.8448,23.63.227.214 +US,ALLEN,TX,33.0968,-96.6341,96.16.7.120 +US,COVINGTON,LA,30.4598,-90.1271,96.17.153.157 +SE,UPPSALA,C,59.85,17.63,80.239.237.93 +MX,MONTERREY,NLE,25.67,-100.32,23.215.15.22 +US,ORANGE,CA,33.7878,-117.8523,184.50.26.179 +JP,SOKA,11,35.82,139.81,117.104.139.136 +GU,HAGATNA,"",13.4744,144.7478,64.145.95.145 +US,BOSTON,MA,42.3581,-71.0647,23.67.244.224 +US,REDONDOBEACH,CA,33.8305,-118.3842,184.50.26.192 +AU,BURNIE,TAS,-41.07,145.92,202.7.177.76 +US,MAMMOTHLAKES,CA,37.6599,-118.912,23.216.10.54 +US,KENNEWICK,WA,46.2117,-119.1733,23.61.195.165 +DE,CHEMNITZ,SN,50.83,12.92,194.25.95.214 +AD,ANDORRA,"",42.50,1.52,80.149.168.114 +US,SANFORD,FL,28.8131,-81.3279,23.34.56.142 +US,LAKEVILLE,CT,41.9547,-73.4419,165.254.202.92 +US,AKRON,OH,41.0433,-81.5239,107.14.38.218 +AU,FERNTREEGULLY,VIC,-37.88,145.30,184.84.221.116 +US,AUDUBON,NJ,39.8910,-75.0738,23.67.60.223 +DE,NURNBERG,BY,49.45,11.07,195.145.147.108 +US,EAUCLAIRE,WI,44.7381,-91.5038,184.85.215.165 +US,CONWAY,AR,35.0822,-92.366,96.16.7.120 +US,EASTSYRACUSE,NY,43.1073,-76.0418,107.14.38.218 +US,OZONEPARK,NY,40.6844,-73.8499,184.26.44.42 +FR,VILLARDBONNOT,"",45.23,5.88,2.16.117.200 +US,COLUMBUS,OH,40.0994,-83.0166,107.14.38.217 +US,PLATTEVILLE,WI,42.7466,-90.4931,63.151.29.15 +US,WAKEFOREST,NC,35.9666,-78.5355,209.18.41.27 +NZ,WELLINGTON,"",-41.30,174.78,219.88.186.167 +HR,CORE,"",45.09,16.33,23.14.94.228 +KH,PHNOMPENH,"",11.55,104.92,23.76.205.111 +US,SAHUARITA,AZ,31.9776,-110.9216,23.215.15.22 +JP,HAMAMATSU,22,34.70,137.73,117.104.138.235 +US,LIVINGSTON,NJ,40.7857,-74.3293,23.67.242.156 +US,HEMET,CA,33.6979,-116.9786,184.27.45.157 +US,PUEBLO,CO,38.2964,-104.5387,184.84.180.68 +US,ELMONTE,CA,34.0769,-118.0327,184.50.26.201 +US,CHESTERFIELD,MO,38.6405,-90.6464,63.216.54.216 +GB,UDDINGSTON,SC,55.80,-4.07,88.221.87.94 +US,BABYLON,NY,40.6311,-73.3431,184.26.44.38 +DE,KASSEL,HE,51.32,9.50,194.25.95.225 +US,GRANADAHILLS,CA,34.2913,-118.506,184.27.45.157 +DE,DREIEICH,HE,50.00,8.70,92.122.215.89 +US,MANTECA,CA,37.8341,-121.2013,23.212.52.79 +PL,KATOWICE,"",50.27,19.02,95.101.2.112 +US,MCKEE,KY,37.4446,-84.0227,23.63.227.227 +US,WESTWARWICK,RI,41.7000,-71.516,72.247.10.241 +US,ENDICOTT,NY,42.1332,-76.0798,107.14.38.227 +ID,DENPASAR,"",-8.65,115.22,23.0.162.46 +RU,VOLOGDA,"",59.22,39.90,2.21.240.40 +US,MIDLOTHIAN,VA,37.4373,-77.6622,63.130.161.140 +US,BRECKSVILLE,OH,41.3049,-81.6177,96.17.9.14 +US,AMHERST,MA,42.3773,-72.4671,165.254.35.197 +US,SANLUISOBISPO,CA,35.2383,-120.6214,23.216.10.78 +US,NEWHOLLAND,PA,40.1038,-76.0725,184.27.45.150 +US,GILBERT,AZ,33.3504,-111.8085,184.50.26.203 +US,SYOSSET,NY,40.8243,-73.4974,165.254.35.182 +US,PACIFICA,CA,37.6009,-122.4839,173.223.52.70 +RU,AKTAY,"",55.82,46.78,92.122.215.67 +US,AUBREY,TX,33.2863,-96.9901,184.28.23.24 +US,ROMA,TX,26.5818,-98.985,184.26.93.116 +US,FORTMYERS,FL,26.6175,-81.8713,23.79.240.36 +US,WINSTONSALEM,NC,36.1131,-80.1983,184.27.45.157 +US,BUCKEYE,AZ,33.2239,-112.8563,184.50.26.203 +US,MIDDLETOWN,PA,40.1873,-76.6948,23.192.161.21 +US,BOWIE,MD,38.9862,-76.7389,23.192.161.21 +DE,NETZE,HE,51.22,9.10,23.14.94.224 +UA,DNIPROPETROVSK,"",48.45,34.98,23.14.94.224 +MY,SEMENYIH,"",2.95,101.85,203.106.85.195 +US,GAITHERSBURG,MD,39.1382,-77.1868,184.27.45.157 +US,MISSIONVIEJO,CA,33.6002,-117.6711,2.20.142.166 +US,CENTERVILLE,IA,40.7100,-92.9234,63.216.54.229 +US,MONEE,IL,41.4121,-87.7808,23.67.60.220 +US,CLINTON,MD,38.7501,-76.9068,184.27.45.150 +TR,IZMIR,"",38.42,27.15,193.45.15.198 +KZ,ATYRAU,"",47.12,51.88,23.14.94.228 +US,BINGHAMTON,NY,42.1934,-75.8849,107.14.38.227 +DE,HOST,NW,51.65,6.18,92.122.215.89 +US,PORTOLAVALLEY,CA,37.3686,-122.2154,184.85.249.6 +RU,ROSTOVONDON,"",47.24,39.71,2.21.240.40 +US,PARKER,CO,39.5027,-104.7087,184.84.180.101 +US,HOLLISTER,CA,36.7975,-121.2316,96.17.12.44 +CN,WENZHOU,ZJ,28.02,120.65,72.246.191.19 +US,ANAHEIM,CA,33.8444,-117.9519,184.50.26.179 +US,CASTROVALLEY,CA,37.7052,-122.0821,23.212.52.79 +US,BERKELEY,CA,37.8718,-122.2718,23.61.195.163 +US,KATY,TX,29.8394,-95.7377,23.212.53.64 +IR,GOSTAR,"",35.47,48.88,23.215.60.48 +RU,NOVGOROD,"",58.52,31.28,213.155.156.208 +US,BLACKSBURG,VA,37.2556,-80.429,65.121.209.133 +RU,KRASNODAR,"",45.03,38.98,2.21.240.40 +LT,PANEVEZYS,"",55.73,24.35,92.122.189.114 +GB,SOUTHBANK,EN,54.57,-1.15,173.222.211.203 +US,WELLSBORO,PA,41.7308,-77.349,184.27.45.157 +US,RIVERDALE,GA,33.5562,-84.3998,72.246.247.5 +VN,HOCHIMINHCITY,"",10.75,106.67,23.5.165.168 +US,HERNDON,VA,38.9807,-77.3799,184.27.45.157 +US,INGLEWOOD,CA,33.9563,-118.3585,184.50.26.194 +US,PICKERINGTON,OH,39.9019,-82.7452,96.17.9.8 +US,GRENADA,MS,33.8096,-89.8042,96.17.153.162 +US,RANCHOSANTAMARGARITA,CA,33.6340,-117.6061,23.215.15.22 +SV,SANSALVADOR,"",13.70,-89.20,72.246.65.23 +CZ,PRAGUE,"",50.08,14.47,23.62.237.138 +IM,DOUGLAS,"",54.15,-4.48,195.245.125.249 +FR,NANTES,"",47.22,-1.55,81.52.201.101 +US,BLYTHEVILLE,AR,35.9221,-89.9037,65.113.249.11 +RO,GHEORGHENI,"",46.72,25.62,88.221.93.150 +US,CORONA,CA,33.8754,-117.5659,165.254.51.142 +TZ,ARUSHA,"",-3.37,36.68,41.193.163.45 +JP,KYOWA,01,43.82,144.02,72.246.184.81 +US,MENDOTA,MN,44.8871,-93.1617,63.151.29.15 +US,ALSIP,IL,41.6719,-87.7294,23.67.60.223 +US,SPARTANBURG,SC,34.9341,-82.0149,23.79.240.36 +US,CANTON,GA,34.2348,-84.4442,63.216.54.229 +MY,CYBERJAYA,"",2.97,101.58,23.15.10.91 +US,MORRISTOWN,TN,36.1752,-83.2659,64.86.201.118 +US,MONSON,MA,42.0890,-72.3226,184.25.109.200 +BA,SRPSKA,"",44.81,18.30,23.62.237.133 +US,TRENTON,NJ,40.2167,-74.7433,184.26.44.42 +RO,BUCHAREST,"",44.43,26.10,92.122.215.67 +US,WHITTIER,CA,34.0076,-118.0335,23.216.10.78 +US,MADISONVILLE,KY,37.3245,-87.464,107.14.38.227 +US,AZLE,TX,32.9120,-97.556,23.215.15.22 +IN,BHIWANDI,MH,19.30,73.07,23.57.69.159 +US,BRENTWOOD,TN,36.0347,-86.7836,23.220.100.224 +US,LORAIN,OH,41.4482,-82.1803,107.14.38.227 +US,PINOLE,CA,37.9896,-122.2692,23.61.195.166 +AT,GRAZ,"",47.07,15.45,195.145.147.108 +ID,TANGERANG,"",-6.18,106.62,23.0.162.46 +US,HUMBLE,TX,29.9987,-95.2618,23.212.53.75 +US,ATLANTICBEACH,FL,30.3485,-81.4173,23.79.240.37 +US,BRIDGEPORT,CT,41.1667,-73.2054,184.51.125.79 +US,WARRIOR,AL,33.8170,-86.8457,23.220.100.224 +SE,MALMO,M,55.60,13.00,213.155.156.206 +DE,KAISERSLAUTERN,RP,49.45,7.75,194.25.95.212 +US,FALLBROOK,CA,33.3988,-117.2649,165.254.138.165 +US,IDAHOFALLS,ID,43.4980,-111.7302,192.80.13.117 +SE,LILJEHOLMEN,AB,59.32,18.02,213.155.156.207 +FR,BERGERAC,"",44.85,0.48,92.122.189.114 +US,SMITHTOWN,NY,40.8527,-73.2109,23.67.242.139 +US,PALMSPRINGS,CA,33.8563,-116.5712,184.50.26.194 +DE,BAMBERG,BY,49.87,10.87,194.25.95.214 +AU,ROCHEDALE,QLD,-27.57,153.13,104.72.70.95 +RU,ROSTOV,"",57.19,39.42,217.212.227.31 +US,RAINSVILLE,AL,34.5004,-85.8413,64.86.201.121 +HK,KWUNTONG,"",22.32,114.22,23.76.205.111 +US,SANANGELO,TX,31.5873,-100.522,23.5.164.146 +HK,KWAICHUNG,"",22.35,114.13,23.76.205.90 +US,VIDOR,TX,30.1707,-94.0082,107.14.43.30 +US,GRANDPRAIRIE,TX,32.7740,-97.0052,184.26.93.111 +US,GREATFALLS,MT,47.5115,-111.2723,184.27.179.181 +US,PERRIS,CA,33.7921,-117.3085,184.50.26.201 +US,PLACENTIA,CA,33.8804,-117.8555,23.220.149.114 +US,CHINOHILLS,CA,33.9508,-117.7322,23.216.10.78 +US,MONTGOMERY,AL,32.3667,-86.3002,23.79.240.37 +MX,TIJUANA,BCN,32.53,-117.02,165.254.144.32 +US,FLUSHING,NY,40.7553,-73.8268,24.143.199.188 +VE,CARACAS,"",10.50,-66.92,72.246.65.37 +US,FREDERICK,MD,39.4393,-77.3428,23.192.161.16 +US,WESTPLAINS,MO,36.7256,-91.9123,107.14.38.218 +US,PIOCHE,NV,38.2635,-114.484,23.216.10.78 +US,LEAGUECITY,TX,29.4885,-95.1021,23.212.53.75 +CN,ZHENGZHOU,HA,34.76,113.65,23.76.205.90 +DE,NORDERSTEDT,SH,53.70,10.02,92.122.207.164 +US,LIVONIA,MI,42.3684,-83.3717,69.22.154.219 +US,PORTORANGE,FL,29.2107,-81.0232,184.51.145.22 +US,ROGERS,AR,36.3725,-94.0691,23.215.15.32 +DE,SAARLOUIS,SL,49.32,6.75,2.20.142.166 +BE,ANTWERP,"",51.22,4.42,23.62.100.152 +US,BURBANK,CA,34.2040,-118.3029,184.50.26.201 +CN,SHANGHAI,SH,31.22,121.46,184.50.87.176 +US,MIDLAND,MI,43.5802,-84.3509,23.63.227.214 +US,ONEIDA,NY,43.0606,-75.6518,107.14.38.227 +US,ROYALOAK,MI,42.4907,-83.1379,69.22.154.215 +US,ROANOKE,TX,32.9960,-97.2275,184.28.23.4 +PE,LIMA,"",-12.05,-77.05,200.60.190.82 +US,WESTLAKEVILLAGE,CA,34.1707,-118.8364,184.50.26.203 +CA,WINNIPEG,MB,49.88,-97.17,23.74.8.24 +US,SAINTPAUL,MN,44.9661,-93.0837,63.151.29.12 +US,BUENAPARK,CA,33.8459,-118.0114,107.14.44.212 +US,COLTON,CA,34.0027,-117.2405,184.87.195.99 +GB,ACTON,EN,51.50,-0.25,23.67.255.158 +DE,ROLAND,NW,51.77,8.00,95.101.2.122 +PK,ISLAMABAD,"",33.70,73.17,79.140.94.234 +US,CAMARILLO,CA,34.2276,-119.0699,23.61.195.163 +US,MARYSVILLE,WA,48.0544,-122.1499,184.84.180.98 +RU,PETROZAVODSK,"",61.82,34.33,2.21.240.61 +US,SANLEANDRO,CA,37.7164,-122.1648,96.17.12.44 +US,WALDORF,MD,38.6041,-76.8335,23.192.161.16 +US,NANUET,NY,41.0984,-74.0095,184.26.44.40 +DE,MANNHEIM,BW,49.49,8.46,80.239.237.231 +US,SAINTJAMES,NY,40.8903,-73.169,184.26.44.42 +US,SANBRUNO,CA,37.6225,-122.4186,216.246.93.44 +DE,FREIBURG,BW,48.00,7.85,80.157.150.201 +GR,IRAKLEIO,"",35.33,25.13,23.14.94.220 +FR,GIGNY,"",48.60,4.57,2.16.117.200 +DE,BREMERHAVEN,HB,53.55,8.58,80.157.150.197 +US,NORTHBERGEN,NJ,40.7933,-74.0263,184.51.125.79 +DE,KREFELD,NW,51.33,6.57,80.157.170.154 +US,PLACERVILLE,CA,38.7308,-120.774,23.212.52.88 +US,PROVIDENCE,RI,41.8238,-71.4133,165.254.35.197 +US,NORTHBRUNSWICK,NJ,40.4497,-74.482,184.51.125.68 +US,CARSON,CA,33.8231,-118.267,184.50.26.194 +US,SECAUCUS,NJ,40.7808,-74.0651,204.94.155.231 +US,CINCINNATI,OH,39.1616,-84.4569,23.74.8.8 +US,PORTSMOUTH,VA,36.8107,-76.3702,23.220.148.108 +US,SPRING,TX,30.0613,-95.3841,23.212.53.75 +CY,NICOSIA,"",35.17,33.37,92.122.215.89 +US,ELKRIDGE,MD,39.0285,-76.7125,184.28.17.76 +US,KISSIMMEE,FL,28.3074,-81.4274,23.34.56.142 +US,BATTLECREEK,MI,42.3247,-85.0949,23.67.60.223 +US,FORTLAUDERDALE,FL,26.1210,-80.1281,23.79.240.36 +US,WESTLAFAYETTE,IN,40.4858,-86.9802,23.63.227.214 +CA,CHATHAM,ON,42.40,-82.18,72.246.43.215 +DE,SINGEN,BW,48.97,8.57,2.16.217.211 +CN,NANJING,JS,32.06,118.78,117.103.188.218 +US,EVANSTON,IL,42.0566,-87.6974,107.14.38.217 +US,LANDER,WY,42.6143,-108.5863,23.63.227.214 +US,MICHIGANCITY,IN,41.6870,-86.8677,23.67.60.220 +US,FAYETTEVILLE,AR,35.9902,-94.083,23.77.234.35 +RU,SERPUKHOV,"",54.92,37.41,2.21.240.61 +US,WESTRICHLAND,WA,46.3012,-119.3697,184.27.179.159 +RU,YOSHKAROLA,"",56.64,47.87,80.239.237.80 +RU,SETI,"",53.36,34.21,217.212.227.25 +US,INDIANA,PA,40.6222,-79.1593,184.28.17.55 +US,LAWTON,OK,34.5483,-98.2849,184.28.23.4 +US,MIAMIBEACH,FL,25.7928,-80.3138,165.254.205.13 +CA,VICTORIA,BC,48.43,-123.35,165.254.35.197 +US,HENDERSONVILLE,NC,35.2687,-82.5413,184.51.35.226 +FR,LADEFENSE,"",48.90,2.23,90.84.50.204 +DE,BOCHUM,NW,51.48,7.22,194.25.95.219 +DO,SANTODOMINGO,"",18.47,-69.90,72.246.65.38 +US,MILLINGTON,MI,43.2680,-83.543,23.74.8.24 +US,LASALLE,IL,41.3955,-89.0957,23.67.60.223 +PL,POZNAN,"",52.42,16.97,2.22.52.105 +AU,THOMASTOWN,VIC,-37.68,145.02,23.62.8.21 +US,FRANKFORT,IL,41.4748,-87.8351,23.67.60.222 +BA,MOSTAR,"",43.34,17.81,77.67.29.109 +US,OKLAHOMACITY,OK,35.4678,-97.5164,23.215.15.22 +US,HAWTHORNE,CA,33.9143,-118.3494,184.87.195.99 +US,OLATHE,KS,38.8815,-94.8187,23.67.60.222 +SA,JEDDAH,"",21.52,39.22,79.140.94.234 +US,BURLESON,TX,32.5215,-97.3032,96.16.7.120 +US,PANORAMACITY,CA,34.2243,-118.4446,184.50.26.179 +US,WADSWORTH,OH,41.0524,-81.7404,184.27.45.157 +DE,ULM,BW,48.40,10.00,80.157.150.192 +JP,MORIOKA,03,39.70,141.15,96.7.251.97 +US,NAPLES,FL,26.1418,-81.795,23.79.240.37 +CN,TIANJIN,TJ,39.14,117.18,184.50.87.178 +US,WESTJORDAN,UT,40.6225,-111.9765,184.84.180.68 +US,KELLER,TX,32.9347,-97.2515,23.5.164.146 +US,GRESHAM,OR,45.5092,-122.431,23.212.59.63 +US,FALLSCHURCH,VA,38.8669,-77.1528,23.220.148.108 +US,STERLING,MI,44.0665,-84.046,23.67.60.217 +US,ENGLEWOOD,CO,39.6440,-104.9826,184.84.180.92 +US,GENEVA,NY,42.8475,-77.0198,107.14.38.224 +US,PALMBAY,FL,28.0264,-80.6045,23.33.186.134 +US,WESTFIELD,MA,42.1558,-72.7734,23.74.8.24 +US,PICORIVERA,CA,33.9895,-118.0913,184.50.26.201 +US,CHAMBERSBURG,PA,39.9438,-77.6827,23.192.161.16 +US,RUSTON,LA,32.5075,-92.6828,23.5.164.146 +US,WALLINGFORD,PA,39.8901,-75.3702,184.26.44.42 +US,REDLANDS,CA,34.0057,-117.1506,184.50.26.201 +US,WENATCHEE,WA,47.3635,-120.3481,184.27.179.187 +US,WILLITS,CA,39.4525,-123.3878,184.84.180.98 +CA,KITCHENER,ON,43.45,-80.50,72.246.43.233 +US,RIALTO,CA,34.1109,-117.3774,184.87.195.109 +JP,SHIZUOKA,22,34.97,138.38,72.246.191.16 +US,MARYVILLE,TN,35.7829,-83.8797,184.28.127.55 +US,SEASIDE,CA,36.6221,-121.8217,96.17.12.44 +IN,ANANDNAGAR,UP,27.10,83.28,124.124.252.153 +US,WASILLA,AK,61.5827,-149.4056,96.17.108.26 +US,VANNUYS,CA,34.1781,-118.4316,107.14.44.185 +RU,VLADIKAVKAZ,"",43.04,44.68,96.7.251.95 +MC,MONACO,"",43.73,7.42,2.22.49.28 +US,MCMINNVILLE,OR,45.1977,-123.2704,184.27.179.159 +GB,SOUTHAMPTON,EN,50.90,-1.40,184.27.45.157 +CN,CHANGCHUN,JL,43.89,125.32,72.246.190.189 +RU,KRASNOYARSK,"",56.01,92.79,2.21.240.61 +DE,GIESSEN,HE,50.58,8.65,194.25.95.214 +US,ELCAJON,CA,32.7856,-116.8874,184.50.26.204 +US,WINDSOR,CO,40.4952,-104.8788,173.197.194.159 +US,AUBURNHILLS,MI,42.6398,-83.2944,23.67.60.223 +US,JUSTICE,IL,41.7509,-87.8345,23.67.60.223 +US,IRVING,TX,32.8139,-96.9488,23.215.15.32 +GU,TAMUNING,"",13.4839,144.7769,165.254.96.242 +ZA,DURBAN,"",-29.85,31.02,195.245.125.249 +US,CRANBURY,NJ,40.3132,-74.5206,23.67.60.222 +US,GRANDRAPIDS,MI,42.9634,-85.6681,23.67.60.223 +US,RAYMORE,MO,38.7996,-94.4429,23.67.60.222 +US,PLANO,TX,33.0562,-96.7336,107.14.36.200 +US,EASTLANSING,MI,42.7547,-84.4613,165.254.207.111 +BH,ALMANAMAH,"",26.24,50.58,2.20.249.5 +US,WHITEMARSH,MD,39.3909,-76.4042,23.192.161.21 +US,PADUCAH,KY,37.0331,-88.716,23.220.100.223 +DE,BONN,NW,50.73,7.10,92.122.215.67 +IN,AHMADABAD,GJ,23.03,72.62,96.17.182.136 +US,NEWPORTNEWS,VA,37.0588,-76.4641,96.6.47.120 +US,TERREHAUTE,IN,39.4668,-87.4112,107.14.38.217 +US,PERRYTON,TX,36.2791,-100.8094,23.74.8.24 +US,GONZALES,LA,30.2383,-90.9202,23.215.15.22 +US,POTTSVILLE,PA,40.6882,-76.264,23.67.242.156 +US,PARKERSBURG,WV,39.2786,-81.5101,96.17.9.14 +US,FLINT,MI,43.0125,-83.6878,23.67.60.220 +US,LITHONIA,GA,33.6707,-84.1416,72.246.247.5 +NZ,PARADISE,"",-44.73,168.37,184.28.126.7 +US,ENTERPRISE,AL,31.4127,-85.8669,184.26.93.116 +US,SAINTPETERS,MO,38.8003,-90.6176,204.93.47.220 +US,PRINCETON,WV,37.3649,-81.0293,184.28.17.76 +OM,MASQAT,"",23.61,58.59,23.57.69.159 +JP,KOBE,28,34.68,135.17,117.104.139.136 +FR,LILLE,"",50.63,3.07,2.20.243.42 +US,PERRYVILLE,MO,37.7127,-89.8903,96.17.14.16 +US,ELKGROVE,CA,38.4313,-121.306,23.61.195.163 +US,ROSLYN,NY,40.8044,-73.641,184.26.44.42 +US,BROOMFIELD,CO,39.9510,-105.0448,63.235.21.140 +US,FONTANA,CA,34.0924,-117.4344,184.50.26.201 +US,LITTLETON,CO,39.5942,-105.0086,107.14.43.30 +GB,LEWISHAM,EN,51.45,-0.02,23.67.255.106 +US,SEMINOLE,FL,27.8440,-82.797,165.254.205.13 +PR,CAYEY,"",18.1193,-66.1642,72.164.253.83 +US,MAINEVILLE,OH,39.3164,-84.2265,165.254.207.111 +US,SINTON,TX,28.0577,-97.5365,96.17.163.161 +US,SEAFORD,DE,38.6412,-75.6063,23.192.161.21 +RU,ORENBURG,"",51.78,55.05,80.239.217.238 +US,PINEBLUFF,AR,34.1930,-91.9403,184.28.23.4 +US,BOYDTON,VA,36.6580,-78.3793,184.27.45.157 +US,WICHITA,KS,37.6923,-97.3374,23.215.15.9 +US,CEDARFALLS,IA,42.5035,-92.4936,23.63.227.225 +US,LITTLEFERRY,NJ,40.8469,-74.0394,24.143.199.156 +US,CALERA,AL,33.1091,-86.7183,23.79.240.48 +DE,SCHWALBACH,HE,50.15,8.53,2.22.61.99 +AW,ORANJESTAD,"",12.52,-70.03,23.74.2.12 +US,HAMPTON,SC,32.9081,-81.0847,184.27.45.150 +US,PITTSBURGH,PA,40.4747,-79.9521,184.26.44.40 +US,WARREN,NJ,40.6309,-74.5141,213.248.117.201 +MA,CASABLANCA,"",33.59,-7.62,92.123.73.26 +US,ALEXANDRIA,VA,38.8194,-77.0596,23.192.161.21 +NC,NOUMEA,"",-22.27,166.45,104.72.70.96 +US,STRUTHERS,OH,41.0502,-80.5914,107.14.38.217 +US,NAPERVILLE,IL,41.7638,-88.1463,107.14.38.224 +US,PASOROBLES,CA,35.6618,-120.7074,23.216.10.54 +US,BELTON,TX,31.0788,-97.4732,184.26.93.116 +DE,WUPPERTAL,NW,51.27,7.18,80.157.170.158 +US,DESOTO,TX,32.5973,-96.864,184.28.23.4 +US,FORTWAINWRIGHT,AK,64.8285,-147.6246,165.254.1.165 +MY,BAHARU,"",6.85,116.83,23.5.165.167 +AU,TOOWOOMBA,QLD,-27.55,151.97,23.62.157.31 +AU,MACKAY,QLD,-21.15,149.20,23.209.183.50 +US,RANCHOPALOSVERDES,CA,33.7553,-118.3641,184.50.26.203 +NZ,GLENFIELD,"",-36.77,174.73,219.88.186.172 +IN,INDORE,MP,22.72,75.83,23.211.135.110 +US,FEDERALWAY,WA,47.3073,-122.3138,23.212.59.90 +CN,XIAN,SN,34.26,108.94,72.246.191.16 +US,MACOMB,MI,42.6839,-82.9078,23.67.60.220 +US,WAPPINGERSFALLS,NY,41.5960,-73.8849,184.51.125.79 +JP,KANAZAWA,17,36.57,136.65,117.104.139.162 +US,MCDONOUGH,GA,33.4474,-84.1473,184.28.127.58 +US,WINDSORMILL,MD,39.3333,-76.7813,23.67.242.156 +US,REEDLEY,CA,36.6362,-119.4115,184.84.180.92 +US,NEWROADS,LA,30.7095,-91.4494,205.185.195.170 +US,LOWELL,MA,42.6562,-71.3029,184.25.109.196 +US,MCLEAN,VA,38.9398,-77.1677,184.27.45.157 +US,SPRINGVILLE,UT,40.1286,-111.4916,23.61.195.165 +US,CAPITOLHEIGHTS,MD,38.9876,-76.8808,23.192.161.21 +RU,PERM,"",58.00,56.25,80.239.217.238 +US,XENIA,OH,39.6596,-83.8999,65.113.249.8 +US,BOULDER,CO,40.0440,-105.194,184.84.180.98 +US,NORCO,CA,33.9289,-117.5482,184.87.195.99 +US,BUCKHANNON,WV,38.9980,-80.2065,184.27.45.150 +FR,ORLEANS,"",47.92,1.90,81.52.201.77 +US,DEQUEEN,AR,34.0794,-94.3022,63.216.54.231 +BN,BANDARSERIBEGAWAN,"",4.88,114.93,23.75.23.140 +DE,COTTBUS,BB,51.77,14.33,80.157.150.169 +NL,UTRECHT,"",52.08,5.13,95.101.2.112 +US,MAMARONECK,NY,40.9533,-73.7381,184.51.125.68 +MX,LOSMOCHIS,SIN,25.77,-108.97,173.223.52.70 +AU,CHATSWOOD,NSW,-33.80,151.18,23.62.8.25 +US,DUNCANVILLE,TX,32.6601,-96.9139,96.16.7.101 +US,FARMINGTON,ME,44.6583,-70.1012,107.14.38.218 +US,RAPIDCITY,SD,44.0755,-103.1782,107.14.38.227 +RU,SAMARA,"",53.20,50.15,80.239.237.80 +US,GIGHARBOR,WA,47.3779,-122.7277,23.212.59.63 +US,NACOGDOCHES,TX,31.6232,-94.6616,23.5.164.146 +US,LACROSSE,WI,43.8000,-91.145,184.85.215.170 +TR,MERSIN,"",36.80,34.63,95.100.169.112 +GB,NOTTINGHAM,EN,52.97,-1.17,88.221.87.94 +JP,NAGANO,20,36.65,138.18,23.3.104.16 +ID,BALI,"",-6.12,106.98,72.246.191.16 +US,WILDOMAR,CA,33.5994,-117.2537,184.50.26.194 +MY,SELANGOR,"",3.35,101.25,203.106.85.13 +US,RHINELANDER,WI,45.6521,-89.3386,184.85.215.170 +BW,GABORONE,"",-24.67,25.92,41.193.163.53 +MU,PORTLOUIS,"",-20.17,57.50,203.106.85.13 +US,DALYCITY,CA,37.6927,-122.4471,23.212.52.88 +JP,KYOTO,26,35.00,135.75,117.104.139.162 +US,MOODY,AL,33.6013,-86.5003,63.216.54.229 +US,CABOT,AR,34.9494,-92.0505,23.5.164.143 +DK,VALBY,"",55.65,12.52,23.65.29.93 +DE,TRAUNSTEIN,BY,47.88,12.65,195.145.147.108 +US,MOUNTLAUREL,NJ,39.9480,-74.9047,23.212.53.64 +US,BROOKLINE,MA,42.3337,-71.1298,184.29.107.20 +CZ,CESKA,"",49.28,16.57,23.74.24.69 +CA,NORTHYORK,ON,43.79,-79.43,72.246.43.232 +MX,MATAMOROS,TAM,25.88,-97.50,165.254.16.86 +TH,DINDAENG,"",12.80,102.08,203.144.145.96 +US,SPANISHFORT,AL,30.6968,-87.8613,96.17.153.157 +GB,SWINDON,EN,51.52,-1.78,96.17.163.165 +US,CHAPELHILL,NC,35.8944,-79.0318,209.18.41.23 +US,EASTPEORIA,IL,40.7043,-89.529,23.67.60.222 +US,SANJACINTO,CA,33.7837,-116.9578,23.216.10.54 +US,WOOSTER,OH,40.8061,-81.9813,107.14.38.227 +BR,JOINVILLE,SC,-26.30,-48.83,72.246.216.144 +US,SIOUXCITY,IA,42.4941,-96.3985,65.113.249.11 +CN,NANCHANG,JX,28.68,115.88,23.76.205.90 +KZ,KARAGANDA,"",49.80,73.10,2.22.52.101 +DE,RECKLINGHAUSEN,NW,51.62,7.20,23.14.94.224 +PF,PAPEETE,"",-17.53,-149.57,64.145.95.126 +FR,CAEN,"",49.18,-0.35,2.20.243.42 +GB,SIDCUP,EN,51.42,0.12,23.61.251.145 +US,PULLMAN,WA,46.7352,-117.1817,212.143.162.169 +US,FORNEY,TX,32.7342,-96.451,23.212.53.64 +US,MERIDIAN,ID,43.6053,-116.4124,192.80.13.117 +US,NIXA,MO,37.0415,-93.3061,23.5.164.143 +US,LAUREL,MD,39.0931,-76.8847,184.28.17.55 +MX,TEPIC,NAY,21.50,-104.90,173.223.52.70 +DE,SINSHEIM,BW,49.26,8.88,80.157.150.197 +LR,MONROVIA,"",6.31,-10.80,217.212.227.31 +US,BEREA,KY,37.5750,-84.2637,23.74.8.8 +US,CANALFULTON,OH,40.8849,-81.5861,205.185.195.183 +NG,LAGOS,"",6.45,3.40,2.20.44.118 +US,SOUTHPASADENA,CA,34.1101,-118.1575,184.50.26.201 +US,LITTLEELM,TX,33.1913,-96.9829,23.5.164.143 +US,LOVELAND,CO,40.3726,-105.133,184.84.180.92 +ZA,SILVERTON,"",-25.73,28.33,165.165.46.40 +US,SHAWNEE,OK,35.3679,-96.9107,174.76.226.117 +IT,TURIN,"",45.05,7.67,2.18.240.114 +US,BRADENTON,FL,27.4044,-82.4667,204.93.33.140 +RO,CLUJNAPOCA,"",46.77,23.60,80.15.235.163 +FR,TOULON,"",43.12,5.93,81.52.201.85 +US,WESTMINSTER,CA,33.7517,-117.9944,184.50.26.201 +US,MALDEN,MA,42.4305,-71.0574,184.25.109.196 +US,MISSOULA,MT,46.8557,-114.0158,107.14.32.228 +US,YAKIMA,WA,46.6267,-120.4248,184.27.179.187 +US,AVENEL,NJ,40.5832,-74.2709,23.67.60.220 +US,NORTHHOLLYWOOD,CA,34.1679,-118.3721,184.50.26.201 +DE,LEER,NI,53.23,7.43,80.157.150.197 +US,REVERE,MA,42.4188,-71.0044,184.25.109.200 +HK,CENTRALDISTRICT,"",22.28,114.15,23.76.205.90 +US,TROUTDALE,OR,45.5277,-122.3738,23.212.59.78 +RU,IVANOVO,"",55.81,36.11,2.21.240.40 +US,MISSION,TX,26.3187,-98.3913,23.215.15.22 +US,FORTBRAGG,CA,39.4588,-123.7157,23.61.195.163 +US,CIRCLEVILLE,OH,39.5752,-82.907,107.14.38.218 +US,BELLEROSE,NY,40.7366,-73.7227,23.67.242.139 +US,POMONA,CA,34.0419,-117.7548,184.50.26.194 +US,MATHER,CA,37.8825,-119.8558,96.17.12.48 +US,EVANS,GA,33.5549,-82.1635,184.27.45.157 +US,HARTFORD,CT,41.7826,-72.6613,184.25.109.200 +NZ,RICCARTON,"",-43.53,172.59,219.88.186.165 +SE,BLACKEBERG,AB,59.35,17.87,213.155.156.207 +UG,KAMPALA,"",0.32,32.58,41.193.163.53 +US,PALMDESERT,CA,33.7547,-116.336,107.14.44.212 +US,MONTEREY,CA,36.5816,-121.8436,96.17.12.48 +US,BECKLEY,WV,37.8169,-81.243,184.28.17.76 +US,SOUTHSANFRANCISCO,CA,37.6562,-122.4257,23.61.195.165 +US,GRANTSPASS,OR,42.6114,-123.7001,206.104.149.146 +US,HUNTSVILLE,AL,34.7252,-86.5616,23.79.240.36 +US,REDBUD,IL,38.1575,-89.9813,23.74.8.8 +CA,HALIFAX,NS,44.65,-63.60,184.29.107.38 +US,EMORY,TX,32.8293,-95.7283,23.212.53.64 +MX,PUEBLA,PUE,19.05,-98.20,23.212.53.75 +US,DEFOREST,WI,43.2338,-89.3318,184.85.215.165 +US,PASCO,WA,46.4588,-118.8176,184.27.179.159 +US,SUGARLAND,TX,29.6334,-95.63,23.212.53.64 +AR,DEMAYO,"",-25.92,-54.58,65.121.209.127 +US,FLORISSANT,MO,38.8119,-90.347,23.215.15.32 +US,FOXBORO,MA,42.0631,-71.2456,184.25.109.196 +CZ,HLUBOKANADVLTAVOU,"",49.05,14.43,23.62.237.138 +US,WILSONVILLE,OR,45.3090,-122.7696,184.27.179.181 +US,MAYNARD,MA,42.4225,-71.4615,184.25.109.196 +US,COLUMBIA,TN,35.6275,-86.9932,23.61.195.163 +US,SUNCITYCENTER,FL,27.7206,-82.4333,23.33.186.134 +US,LEMOORE,CA,36.2897,-119.848,23.212.52.79 +US,ENOLA,PA,40.2947,-76.9833,165.254.96.242 +US,SANTAANA,CA,33.7484,-117.8593,184.50.26.204 +DE,KARLSRUHE,BW,49.00,8.39,23.14.94.228 +AR,DORREGO,"",-38.70,-61.28,200.123.201.215 +DE,GERA,TH,50.87,12.08,194.25.95.219 +US,LEWISTON,ME,44.0905,-70.1653,107.14.38.217 +US,BROWNSVILLE,TX,26.0002,-97.5729,184.26.93.116 +US,LAKEWOOD,CA,33.8539,-118.1333,23.216.10.48 +CA,MARKHAM,ON,43.87,-79.27,72.246.43.215 +US,GREENWOOD,IN,39.6166,-86.1775,23.67.60.220 +RU,VOSTOCHNAYA,"",62.12,34.03,213.155.156.208 +US,WINTERGARDEN,FL,28.5650,-81.5866,23.33.186.134 +US,MELROSEPARK,IL,41.9027,-87.8623,184.27.45.150 +US,CLUTE,TX,29.0650,-95.3887,23.212.53.64 +US,ABSECON,NJ,39.4748,-74.4723,23.61.195.165 +US,ALABASTER,AL,33.2261,-86.7662,72.246.247.30 +US,ELIZABETH,NJ,40.6709,-74.179,184.51.125.79 +MK,SKOPJE,"",42.00,21.43,23.76.205.111 +US,TUSTIN,CA,33.7360,-117.8185,107.14.44.185 +US,ORANGEBURG,SC,33.4964,-80.8317,209.18.41.23 +US,BRYAN,TX,30.6361,-96.3666,204.2.223.90 +US,CHINO,CA,34.0123,-117.6883,184.50.26.201 +US,PIMA,AZ,32.9846,-109.9963,23.212.52.79 +RS,TOPOLA,"",43.88,21.19,184.27.179.159 +US,DAYTON,OH,39.7587,-84.1919,107.14.38.217 +RU,BRYANSK,"",53.24,34.35,2.21.240.40 +US,REGOPARK,NY,40.7254,-73.8614,24.143.199.188 +SG,AYERRAJAH,"",1.30,103.78,203.26.28.181 +AE,FUJAIRAH,"",25.12,56.34,2.20.249.12 +US,WINTERHAVEN,FL,27.9768,-81.764,23.33.186.101 +US,CERES,CA,37.5547,-120.9558,23.216.10.54 +US,GLENVIEW,IL,42.0783,-87.8242,23.67.60.220 +US,BEAUMONT,CA,33.9205,-116.9736,23.216.10.78 +US,SANJUANCAPISTRANO,CA,33.5241,-117.605,23.5.164.143 +US,SHAWNEEMISSION,KS,39.0276,-94.6559,23.77.234.11 +US,BISMARCK,ND,46.8193,-100.7748,107.14.38.218 +PH,DAVAO,"",7.07,125.60,202.78.83.170 +MX,SANPEDROCHOLULA,PUE,19.68,-97.97,201.148.68.240 +FR,CAPELLE,"",49.05,0.48,77.67.27.250 +IR,HAMADAN,"",34.80,48.52,23.62.238.220 +US,NEWHAVEN,CT,41.3083,-72.9287,184.28.17.76 +US,BROCKTON,MA,42.0777,-71.0422,184.25.109.208 +US,TULLAHOMA,TN,35.3402,-86.229,184.51.35.226 +MX,CIUDADOBREGON,SON,27.48,-109.93,187.141.186.95 +UA,KRASNOPEREKOPSK,CRIMEA,45.95,33.79,2.21.240.40 +RU,NAUKA,"",51.97,49.77,80.239.149.123 +UA,DONETSK,"",48.00,37.80,213.155.156.206 +US,NORASPRINGS,IA,43.1638,-92.9674,23.212.53.75 +US,CHALFONT,PA,40.2892,-75.2124,72.247.10.237 +DE,DRESDEN,SN,51.05,13.75,80.157.150.201 +US,TULSA,OK,36.1537,-95.9926,23.212.53.75 +US,ROHNERTPARK,CA,38.3267,-122.7061,23.212.52.79 +US,MOUNTPLEASANT,SC,32.8517,-79.8228,184.27.45.157 +US,WILLIAMSPORT,PA,41.1994,-77.0775,23.192.161.21 +US,FOOTHILLRANCH,CA,33.6255,-117.6932,184.50.26.204 +FR,REIMS,"",49.25,4.03,81.52.201.77 +US,GALION,OH,40.7120,-82.796,23.74.8.24 +BR,FORTALEZA,CE,-3.72,-38.50,190.98.140.184 +US,FERRIS,TX,32.5206,-96.6077,184.25.157.169 +US,CHELSEA,AL,33.3864,-86.611,23.220.100.223 +US,OSSINING,NY,41.1949,-73.8307,184.26.44.38 +BR,MARINGA,PR,-23.42,-51.92,72.246.216.139 +US,ANNANDALE,VA,38.8275,-77.2418,96.6.47.106 +US,PORTER,TX,30.1192,-95.2824,23.212.53.64 +US,PATCHOGUE,NY,40.7718,-72.9949,184.26.44.42 +DE,BIELEFELD,NW,52.03,8.53,80.157.150.197 +US,COLORADOSPRINGS,CO,38.8336,-104.8206,63.151.29.15 +DE,MUNSTER,NW,51.97,7.63,80.157.170.221 +JP,NAHA,47,26.21,127.68,72.246.184.92 +US,TUALATIN,OR,45.3689,-122.7641,184.84.180.92 +US,CLARKSDALE,MS,34.1809,-90.6118,23.212.53.75 +ES,BILBAO,"",43.25,-2.97,77.67.41.223 +US,HALTOMCITY,TX,32.8036,-97.2675,204.93.47.220 +DE,TRIER,RP,49.75,6.63,194.25.95.212 +GB,LEEDS,EN,53.80,-1.58,23.67.255.158 +US,GAMBIER,OH,40.3386,-82.3417,184.27.45.157 +US,CAMBRIDGE,MA,42.3802,-71.1347,184.25.109.200 +US,RIVERTON,UT,40.4909,-112.0097,23.61.195.165 +US,WAYNE,NJ,40.9484,-74.2449,184.26.44.38 +US,CARROLLTON,GA,33.5541,-85.0099,23.79.240.36 +US,PEARLAND,TX,29.5651,-95.2786,23.212.53.64 +US,BELL,CA,33.9704,-118.1852,184.50.26.179 +US,SOUTHLAKE,TX,32.9492,-97.1451,23.215.15.9 +US,DESTREHAN,LA,29.9844,-90.363,174.76.226.110 +US,DESPLAINES,IL,42.0490,-87.8913,107.14.38.218 +DE,DESSAU,ST,51.83,12.25,80.157.170.158 +ZA,PRETORIA,"",-25.71,28.23,165.165.46.40 +US,COLLEGESTATION,TX,30.5416,-96.2298,107.14.43.29 +US,SANDUSKY,MI,43.4191,-82.8598,23.212.53.64 +AU,WAVERLEY,NSW,-33.90,151.27,23.62.8.25 +FR,CLERMONTFERRAND,"",45.78,3.08,2.20.243.45 +US,SOUTHGATE,CA,33.9490,-118.202,184.50.26.203 +ME,PODGORICA,"",42.44,19.26,23.14.94.228 +US,CHATSWORTH,CA,34.2895,-118.607,184.87.195.99 +US,LAKESIDE,CA,32.9105,-116.888,23.216.10.54 +US,LAKEELSINORE,CA,33.5976,-117.3895,184.50.26.179 +US,ROCKFORD,IL,42.3405,-89.1484,23.67.60.222 +EE,TALLINN,"",59.43,24.73,213.155.156.207 +US,ORONO,ME,45.0868,-68.6498,23.74.8.8 +MN,ULAANBAATAR,"",47.92,106.92,23.76.205.90 +US,KETCHIKAN,AK,55.5909,-131.3492,184.27.179.181 +US,LOGAN,UT,41.6898,-111.6435,173.197.192.214 +AT,LINZ,"",48.30,14.30,2.16.217.211 +US,ROUNDROCK,TX,30.5230,-97.6428,107.14.43.30 +US,YUKON,OK,35.5068,-97.7625,23.215.15.9 +RU,POTOK,"",59.46,35.15,23.14.94.224 +VN,DUNG,"",19.83,105.25,23.75.23.135 +JP,KOSE,37,34.47,134.15,23.15.1.55 +BY,GOMEL,"",55.32,28.78,92.122.189.85 +IR,TABRIZ,"",38.08,46.29,23.74.24.69 +RU,TAGIL,"",56.00,51.50,2.21.240.40 +CN,HOHHOT,NM,40.81,111.65,72.246.191.16 +CO,BARRANQUILLA,"",10.98,-74.80,200.14.44.103 +US,MYRTLEBEACH,SC,33.7665,-78.7956,184.27.45.150 +US,SEDALIA,MO,38.6763,-93.2612,65.113.249.8 +US,BOONVILLE,MO,38.8814,-92.7602,96.16.7.101 +CA,OSHAWA,ON,43.90,-78.87,72.246.43.215 +US,PITTSBURG,CA,38.0121,-121.92,23.212.52.79 +US,PORTHURON,MI,42.9793,-82.4643,65.113.249.8 +DE,KALTENBACH,RP,49.20,7.75,80.157.150.197 +US,ELLENDALE,ND,46.0577,-98.4986,107.14.38.224 +US,CARLISLE,PA,40.1805,-77.2345,65.113.249.11 +PR,HUMACAO,"",18.1494,-65.8294,72.246.65.37 +US,MERCED,CA,37.2829,-120.4535,23.212.52.79 +US,TEMPLEHILLS,MD,38.8182,-76.9414,23.192.161.21 +US,LAJOLLA,CA,32.8548,-117.2497,23.216.10.54 +US,BROOKVILLE,OH,39.8424,-84.4242,107.14.38.217 +US,SEVIERVILLE,TN,35.7905,-83.4826,23.79.240.36 +US,SNOHOMISH,WA,47.9468,-122.0122,23.74.8.24 +US,WHITEVILLE,NC,34.2997,-78.6775,184.27.45.157 +US,ELDORADO,AR,33.1732,-92.6868,23.5.164.146 +US,UNIVERSITYPARK,PA,40.8092,-77.8868,96.6.47.120 +US,SUFFOLK,VA,36.8725,-76.5524,96.6.47.120 +CA,LETHBRIDGE,AB,49.70,-112.83,24.244.17.205 +BR,BELEM,PA,-1.45,-48.48,177.159.174.13 +CN,KUNMING,YN,25.04,102.72,72.246.191.19 +BY,MINSK,"",53.90,27.57,2.20.142.173 +AU,LOXTON,SA,-34.45,140.57,60.254.143.219 +US,CORAM,NY,40.8776,-73.0024,184.26.44.42 +DE,LUBECK,SH,53.87,10.70,194.25.95.214 +US,GREATLAKES,IL,42.3045,-87.8638,23.67.60.223 +US,CARTHAGE,NY,43.9769,-75.558,107.14.38.227 +NZ,DUNEDIN,"",-45.87,170.50,219.88.186.164 +US,DICKSON,TN,36.0826,-87.4349,23.79.240.36 +US,RUIDOSO,NM,33.3909,-105.6341,173.223.52.67 +BR,BELOHORIZONTE,MG,-19.92,-43.93,200.174.107.50 +DE,ROSTOCK,MV,54.08,12.13,194.25.95.214 +US,WILKESBORO,NC,36.1256,-81.1459,204.93.62.75 +DE,WEIDEN,RP,49.82,7.30,2.16.217.206 +US,IRONMOUNTAIN,MI,45.9025,-88.0366,165.254.207.117 +US,LYNWOOD,CA,33.9236,-118.2003,184.87.195.99 +RU,YAROSLAVL,"",57.62,39.87,2.21.240.40 +US,PACOIMA,CA,34.2561,-118.4203,184.50.26.179 +US,BARTLETT,IL,41.9753,-88.1848,23.67.60.217 +CA,SIMCOE,ON,42.83,-80.30,72.246.43.232 +US,SUMMERVILLE,SC,33.0633,-80.1896,209.18.41.27 +US,JEFFERSONCITY,MO,38.5003,-92.1516,209.170.117.178 +US,LAFAYETTE,LA,30.2373,-91.9924,23.215.15.22 +US,CHESAPEAKE,VA,36.7522,-76.2168,23.212.53.64 +CH,DIETIKON,"",47.42,8.40,193.45.15.198 +RU,VLADIVOSTOK,"",43.13,131.90,96.7.251.95 +US,EXTON,PA,40.0430,-75.64,23.67.242.139 +US,CAROLSTREAM,IL,41.9125,-88.1349,107.14.38.217 +MY,KUALAKANGSAR,"",4.77,100.93,58.26.185.142 +US,TUCKER,GA,33.8539,-84.2185,72.246.247.30 +CN,GUOJI,JS,34.06,117.41,23.15.10.106 +US,MIAMISBURG,OH,39.6178,-84.2528,107.14.38.217 +US,DEKALB,IL,41.8888,-88.7558,23.67.60.223 +FR,NIMES,"",43.83,4.35,2.16.117.190 +BR,SALVADOR,BA,-12.98,-38.52,200.174.107.42 +US,NORTON,MA,41.9632,-71.1829,23.62.238.215 +US,BOTHELL,WA,47.7527,-122.2153,184.84.180.101 +US,TROY,OH,40.0416,-84.1531,23.74.8.8 +US,STAFFORD,VA,38.4716,-77.4391,184.26.44.40 +US,ORRVILLE,OH,40.8369,-81.7632,2.22.52.101 +US,LEBANON,MO,37.6765,-92.6098,63.216.54.216 +US,WACO,TX,31.5520,-97.1385,23.212.53.64 +FR,CHOISYLEROI,"",48.77,2.42,2.16.117.190 +US,HARTSVILLE,SC,34.3720,-80.0853,209.18.41.27 +US,FAIRVIEW,OR,45.5383,-122.4348,23.212.59.90 +US,GLENDORA,CA,34.1187,-117.8538,184.50.26.204 +US,CRANSTON,RI,41.7750,-71.4355,23.67.244.226 +US,MUNDELEIN,IL,42.2666,-88.0352,107.14.38.217 +US,NILES,IL,42.0285,-87.8124,23.67.60.222 +US,SEBASTIAN,FL,27.7861,-80.4788,23.79.240.48 +RU,YAKUTSK,"",62.00,129.67,2.21.240.40 +RU,ULYANOVSK,"",52.12,34.41,217.212.227.25 +AU,BALAKLAVA,SA,-34.15,138.42,210.11.142.65 +DE,BAUTZEN,SN,51.18,14.43,80.157.150.201 +US,WORCESTER,MA,42.2627,-71.8028,63.141.200.248 +CH,VERNIER,"",46.22,6.08,193.247.167.214 +TR,DENIZLI,"",40.90,29.53,193.45.15.199 +US,HOUMA,LA,29.5867,-90.8252,23.212.53.75 +US,EASTWENATCHEE,WA,47.4725,-120.2224,184.27.179.179 +US,NORTHPOLE,AK,64.7816,-147.3481,23.212.59.64 +US,GALLATIN,TN,36.4052,-86.4555,23.79.240.36 +CA,AYLMER,ON,42.78,-80.98,72.246.43.237 +US,ODESSA,TX,31.8458,-102.3673,23.212.53.75 +US,CHALMETTE,LA,29.9614,-89.9537,23.215.15.18 +US,SOUTHYARMOUTH,MA,41.6739,-70.1961,184.25.109.196 +US,SIGNALHILL,CA,33.7834,-118.1506,184.50.26.179 +US,HARRISONBURG,VA,38.5056,-78.9398,184.28.17.76 +US,FRANKLIN,VA,36.6905,-76.9426,184.28.17.76 +US,MISSOURICITY,TX,29.5470,-95.5308,23.212.53.75 +US,CLERMONT,FL,28.4862,-81.7428,72.164.253.83 +US,CHERAW,SC,34.6398,-79.9151,209.18.41.23 +US,SOUTHHILL,VA,36.7430,-78.1806,184.29.107.38 +US,LAGUNAHILLS,CA,33.5987,-117.7127,184.50.26.203 +SG,BEDOK,"",1.33,103.94,23.75.23.135 +US,LANGDON,ND,48.8344,-98.3538,63.216.54.231 +US,BALLWIN,MO,38.6038,-90.5556,204.93.47.216 +US,TULIA,TX,34.5509,-101.7483,23.74.8.24 +JP,MATSUSAKA,24,34.57,136.53,23.15.1.29 +RU,UFA,"",54.73,55.93,217.212.227.25 +US,SANRAFAEL,CA,37.9769,-122.5052,23.212.52.79 +SK,BRATISLAVA,"",48.15,17.12,23.14.94.220 +US,LOCKPORT,NY,43.1860,-78.742,184.29.107.20 +KZ,SHYMKENT,"",42.30,69.60,80.239.222.190 +MD,CHISINAU,"",47.01,28.86,92.122.189.114 +US,PLATTSBURGH,NY,44.7370,-73.4626,63.141.200.248 +GB,HARINGEY,EN,51.58,-0.08,23.67.255.158 +US,OSKALOOSA,IA,41.3158,-92.6258,65.113.249.8 +CA,GUELPH,ON,43.55,-80.25,67.231.211.237 +US,HILLSBORO,OR,45.4461,-122.9838,63.217.232.22 +US,PLAINFIELD,NJ,40.6310,-74.4312,184.26.44.42 +IN,DEHRADUN,UL,30.32,78.03,96.17.182.130 +ES,ZARAGOZA,"",41.63,-0.88,80.149.168.109 +US,SANBERNARDINO,CA,34.1053,-117.2917,23.216.10.78 +US,LITCHFIELD,CT,41.7562,-73.2062,184.51.125.68 +DE,MEPPEN,NI,52.68,7.32,80.157.170.231 +FR,BOISDARCY,"",48.80,2.02,2.16.117.190 +SI,LJUBLJANA,"",46.06,14.51,23.62.237.138 +US,CONVERSE,TX,29.5102,-98.277,184.26.93.116 +US,RARITAN,NJ,40.5726,-74.6423,184.26.44.38 +US,DEVINE,TX,29.1707,-98.9599,96.17.163.161 +reserved,reserved,reserved,reserved,reserved,63.80.12.225 +DE,DEGGINGEN,BW,48.60,9.72,23.14.94.224 +US,PIEDMONT,SC,34.7207,-82.4772,23.79.240.48 +US,MANHATTANBEACH,CA,33.8907,-118.3967,23.216.10.54 +IR,TEHRAN,"",35.67,51.42,184.29.107.20 +US,ITHACA,NY,42.4320,-76.4974,69.31.77.208 +US,NORWALK,CA,33.9069,-118.082,23.216.10.54 +US,WILLOUGHBY,OH,41.6111,-81.3789,107.14.38.224 +US,RUSSELLVILLE,AR,35.2872,-93.0945,23.5.164.143 +US,WATSONVILLE,CA,36.9274,-121.7472,63.233.61.151 +US,LORENA,TX,31.3976,-97.22,107.14.43.29 +GB,OLDHAM,EN,53.55,-2.12,88.221.87.94 +US,SPRINGDALE,AR,36.1895,-94.2305,23.215.15.9 +US,WASCO,CA,35.6321,-119.4058,184.87.195.109 +US,NORTHEAST,MD,39.5890,-75.9588,23.192.161.16 +CN,CHONGQING,CQ,29.56,106.55,23.76.205.90 +BD,MEDIA,"",23.13,89.18,23.57.76.20 +NZ,NAPIER,"",-39.48,176.92,219.88.186.164 +US,HENDERSON,NV,36.0394,-114.9813,165.254.144.32 +US,PEORIA,AZ,33.5921,-112.4065,184.50.26.179 +US,THOMASVILLE,NC,35.8640,-80.1016,209.18.41.23 +US,HOPEMILLS,NC,34.9210,-78.9114,209.18.41.27 +KG,BISHKEK,"",42.90,74.60,80.239.217.238 +US,UPPERDARBY,PA,39.9602,-75.2702,184.29.107.20 +JP,TOKUSHIMA,36,34.07,134.57,72.246.184.84 +US,CLARKSVILLE,TN,36.5878,-87.3074,165.254.138.175 +US,RIDGECREST,CA,35.7401,-117.4536,184.50.26.179 +RO,ROSIORIIDEVEDE,"",44.12,24.98,81.196.26.237 +US,RENO,NV,39.5263,-119.8124,23.216.10.78 +US,KENOSHA,WI,42.6168,-87.8302,65.113.249.11 +BY,BREST,"",52.10,23.70,217.212.227.31 +US,GREENFIELD,IN,39.7974,-85.7653,65.113.249.11 +IE,CASHEL,"",52.52,-7.89,88.221.222.34 +US,STARKVILLE,MS,33.4256,-88.8438,208.185.55.117 +LT,KAUNAS,"",54.90,23.90,2.21.240.61 +DE,WESEL,NW,51.67,6.62,80.157.170.154 +US,WESTERNSPRINGS,IL,41.8114,-87.9019,23.67.60.223 +DE,WURZBURG,BY,49.79,9.94,195.145.147.109 +US,SANRAMON,CA,37.7661,-121.9734,23.61.195.165 +DE,MAGDEBURG,ST,52.17,11.67,80.157.150.201 +US,CROWNPOINT,IN,41.4039,-87.3294,23.67.60.223 +US,PALMHARBOR,FL,28.0778,-82.7637,192.204.11.246 +SE,SODERTALJE,AB,59.20,17.62,2.21.240.61 +US,LAMONI,IA,40.6492,-93.957,23.67.60.223 +US,KEYLARGO,FL,25.2553,-80.3918,23.79.240.36 +PL,ZAMOSC,"",52.13,21.12,2.22.52.109 +US,MOORPARK,CA,34.2858,-118.8813,63.235.21.147 +US,GARDNERVILLE,NV,38.7983,-119.574,184.85.249.14 +US,EVERETT,WA,47.9874,-122.2011,23.212.59.63 +US,SYLMAR,CA,34.3277,-118.3895,184.50.26.201 +US,LAWRENCEVILLE,GA,33.9563,-83.9881,23.79.240.36 +CA,PRINCERUPERT,BC,54.32,-130.33,184.27.179.181 +US,GLADSTONE,OR,45.3872,-122.5921,23.212.59.63 +US,HARWOODHEIGHTS,IL,41.9530,-87.7822,23.67.60.223 +US,SAINTCHARLES,IL,41.9372,-88.2876,107.14.38.224 +US,COVINA,CA,34.0976,-117.9068,23.216.10.54 +VN,PHUONG,"",17.17,106.92,23.2.16.104 +US,VERNONHILLS,IL,42.2230,-87.9651,23.67.60.223 +RU,TAMBOV,"",52.73,41.43,80.239.237.231 +MM,YANGON,"",16.78,96.17,203.106.85.13 +CH,PULLY,"",46.52,6.65,193.247.167.211 +US,HICKORY,NC,35.7628,-81.3219,23.79.240.37 +US,HOLLYSPRINGS,NC,35.6211,-78.8587,63.151.29.15 +GB,NEWBURY,EN,51.40,-1.32,23.212.108.8 +US,SOUTHSALEM,NY,41.2554,-73.5385,184.26.44.42 +US,FORTWAYNE,IN,41.1306,-85.1289,23.67.60.223 +US,TAYLOR,MI,42.2256,-83.2685,23.67.60.222 +IN,GUNTUR,AP,16.30,80.45,23.57.69.161 +US,CUMBERLAND,MD,39.6528,-78.7626,184.28.17.55 +US,LANHAM,MD,38.9666,-76.8622,184.27.45.157 +RU,SAKHALIN,"",52.43,32.90,2.22.52.102 +US,NORFOLK,VA,36.8511,-76.2784,184.28.127.58 +US,YOUNGSTOWN,OH,41.0994,-80.6494,96.17.9.8 +CA,VERNON,BC,50.27,-119.27,24.244.17.205 +US,CASPER,WY,43.1744,-106.3605,107.14.32.228 +US,ELLICOTTCITY,MD,39.2673,-76.7986,23.67.242.139 +TW,TAICHUNG,"",24.15,120.68,61.220.62.175 +US,HACKENSACK,NJ,40.8892,-74.0466,23.67.242.139 +US,BONNEYLAKE,WA,47.1879,-122.183,23.212.59.85 +US,YORK,PA,39.9626,-76.7282,23.192.161.16 +DE,HAGEN,NW,51.03,7.43,195.95.193.147 +FR,POITIERS,"",46.58,0.33,2.20.243.45 +BR,COTIA,SP,-23.62,-46.93,72.246.216.139 +US,MILFORD,MA,42.1566,-71.5186,184.25.109.200 +DE,NEUBRANDENBURG,MV,53.57,13.27,195.95.193.132 +US,WILLIAMSBURG,KY,36.7356,-84.1501,23.220.148.122 +US,BENTONVILLE,AR,36.3232,-94.2666,23.77.234.11 +FR,TOULOUSE,"",43.60,1.43,2.20.243.45 +CA,YELLOWKNIFE,NT,62.45,-114.35,184.150.187.229 +US,COUDERSPORT,PA,41.7605,-77.9728,209.18.41.23 +DE,BRAUNSCHWEIG,NI,52.27,10.53,194.25.95.214 +AU,MIRANDA,NSW,-34.03,151.10,23.62.8.25 +US,SYLVANIA,OH,41.6992,-83.7379,23.74.8.24 +US,WESTCHESTER,PA,39.9842,-75.6084,184.27.45.157 +US,TULARE,CA,36.1798,-119.3666,23.212.52.79 +US,ELMHURST,NY,40.7372,-73.8787,184.29.107.38 +GR,IOANNINA,"",39.67,20.83,23.14.94.214 +JP,ASAHI,14,35.53,139.70,72.246.191.16 +US,LANSING,MI,42.7327,-84.5558,65.113.249.8 +US,TRABUCOCANYON,CA,33.6636,-117.5894,184.50.26.194 +US,CLEARWATER,FL,27.9797,-82.7794,72.164.253.83 +US,MORGANTON,NC,35.7567,-81.7518,23.79.240.48 +US,SIERRAMADRE,CA,34.1687,-118.0505,184.50.26.204 +US,SPRINGHILL,FL,28.4679,-82.5981,23.33.186.134 +US,TYLER,TX,32.3248,-95.3025,165.254.207.117 +US,IOWACITY,IA,41.6899,-91.4517,65.113.249.8 +US,MUSKOGEE,OK,35.6818,-95.3578,23.5.164.143 +US,LAKECHARLES,LA,30.2894,-93.0808,96.17.153.162 +US,LAKESTEVENS,WA,48.0434,-122.062,23.212.59.90 +JO,AL,"",31.82,35.83,80.239.154.193 +US,CARIBOU,ME,46.8928,-68.1493,107.14.38.218 +BG,PAZARDJIK,"",42.20,24.33,23.62.237.137 +JP,MATSUYAMA,38,33.84,132.76,184.51.199.132 +US,UNIVERSALCITY,TX,29.5519,-98.3081,107.14.43.30 +US,SIERRAVISTA,AZ,31.5436,-110.254,184.50.26.194 +US,VIRGINIABEACH,VA,36.8598,-75.9812,23.220.148.122 +AU,DANDENONG,VIC,-37.98,145.20,23.62.8.25 +CA,MISSISSAUGA,ON,43.15,-79.50,67.231.211.247 +CA,BRAMPTON,ON,43.68,-79.77,72.246.43.233 +UZ,ANDIJAN,"",40.78,72.34,2.22.52.105 +US,WHARTFORD,CT,41.7542,-72.7573,184.25.109.213 +JP,TAKAMATSU,37,34.33,134.05,117.104.139.136 +SO,MOGADISCIO,"",2.07,45.37,80.239.237.230 +US,SARASOTA,FL,27.3364,-82.5308,192.204.11.235 +AT,PURGSTALL,"",48.75,15.72,195.145.147.108 +RU,TOLYATTI,"",53.52,49.41,80.239.217.238 +US,MARQUETTE,MI,46.5095,-87.3836,184.85.215.170 +IN,KOCHI,KL,9.97,76.23,117.239.240.76 +US,EASTMAN,GA,32.2112,-83.1979,72.246.247.30 +US,ALBEMARLE,NC,35.3503,-80.2174,63.216.54.229 +US,CONCORD,NC,35.3735,-80.5212,209.18.41.27 +US,MOUNTPROSPECT,IL,42.0663,-87.9341,23.67.60.223 +DE,JENA,TH,50.93,11.58,23.14.94.220 +US,PERRY,GA,32.4431,-83.7439,23.215.15.22 +ES,ZAMUDIO,"",43.28,-2.87,92.123.73.221 +FR,DIJON,"",47.32,5.02,2.20.243.42 +US,MORENOVALLEY,CA,33.8879,-117.225,184.50.26.179 +US,YUCAIPA,CA,34.0360,-117.0172,184.50.26.179 +AU,BELROSE,NSW,-33.73,151.22,23.62.8.21 +US,DRIPPINGSPRINGS,TX,30.2468,-98.1159,65.116.149.102 +US,ONTARIO,CA,34.0635,-117.6503,184.50.26.179 +US,RIGBY,ID,43.6749,-111.8908,67.131.104.6 +US,ROCKVILLE,MD,39.0839,-77.1534,96.6.47.120 +US,CUYAHOGAFALLS,OH,41.1403,-81.4761,96.17.9.8 +US,WESTLAND,MI,42.3351,-83.3852,65.113.249.11 +CA,MILLBROOK,ON,44.15,-78.45,72.246.43.237 +GB,HAYES,EN,51.37,0.02,88.221.87.94 +CZ,HAVLICKUVBROD,"",49.62,15.58,23.62.237.135 +SI,MARIBOR,"",46.55,15.65,213.248.108.233 +JP,IBARAKI,27,34.82,135.57,202.229.2.213 +DE,OSNABRUCK,NI,52.27,8.05,80.157.170.231 +RU,MURMANSK,"",68.48,33.35,2.21.240.61 +US,WYLIE,TX,33.0138,-96.5409,23.215.15.32 +US,DADECITY,FL,28.3653,-82.1963,23.33.186.101 +US,DOYLESTOWN,PA,40.3369,-75.1195,65.113.249.11 +GB,BRENTFORD,EN,51.50,-0.32,23.67.255.158 +US,ROCKWALL,TX,32.8846,-96.42,96.16.7.120 +US,WAVERLY,OH,39.1500,-83.0509,107.14.38.227 +US,ABERDEEN,WA,47.1445,-123.7718,184.84.180.101 +US,TOLEDO,OH,41.6525,-83.5486,23.74.8.24 +US,SANPABLO,CA,37.9790,-122.3365,23.212.52.79 +US,LAGUNANIGUEL,CA,33.5425,-117.7825,184.50.26.194 +US,DEPEW,NY,42.9001,-78.7029,184.26.44.38 +US,LOSALTOS,CA,37.3688,-122.1527,23.212.52.88 +US,WATERFORD,CT,41.3583,-72.1558,165.254.48.150 +US,ASHEVILLE,NC,35.5948,-82.5572,23.79.240.37 +US,DENTON,TX,33.2208,-97.1437,204.93.47.216 +US,EPHRATA,PA,40.1811,-76.176,63.216.54.236 +US,DICKINSON,ND,46.9271,-102.7543,205.185.195.183 +US,PANAMACITY,FL,30.1608,-85.6475,23.212.53.75 +ID,MEDAN,"",3.58,98.67,23.0.162.46 +US,SUNLAND,CA,34.2589,-118.3307,107.14.44.212 +US,SANTAMARIA,CA,34.9332,-120.2665,23.212.52.79 +US,LEMONGROVE,CA,32.7331,-117.0343,184.50.26.179 +US,BRIDGETON,NJ,39.4433,-75.2554,184.26.44.38 +US,FLORENCE,OR,44.1259,-124.0315,165.254.96.248 +FR,BORDEAUX,"",44.83,-0.57,81.52.201.77 +VN,CANTHO,"",10.03,105.78,96.17.180.177 +MO,MACAU,"",22.20,113.55,202.175.5.87 +US,QUEENCREEK,AZ,33.3064,-111.8406,63.226.34.173 +AO,LUANDA,"",-8.82,13.23,23.62.100.154 +DE,SACK,BY,49.50,11.02,23.14.94.224 +EC,CUENCA,"",-2.88,-78.98,165.254.205.7 +US,LAKEWORTH,FL,26.6214,-80.0578,23.79.240.37 +US,MATTHEWS,NC,35.0912,-80.6904,63.216.54.236 +JP,SAPPORO,01,43.05,141.35,72.246.184.89 +US,CHANTILLY,VA,38.8959,-77.4456,184.85.249.6 +US,WESTMONT,IL,41.7959,-87.9751,107.14.38.218 +US,MORGANCITY,LA,29.8739,-91.2977,23.215.15.9 +US,OAKBROOK,IL,41.7836,-87.9391,23.67.60.222 +US,GREENSBORO,NC,36.0706,-79.7656,72.246.247.30 +US,CORTLAND,NY,42.5863,-76.1831,72.247.10.237 +AT,WIENERNEUDORF,"",48.07,16.32,195.145.147.108 +CZ,PRAHA,"",50.08,14.47,23.62.237.133 +NA,WINDHOEK,"",-22.57,17.08,41.193.163.53 +SZ,MBABANE,"",-26.32,31.13,41.193.163.45 +US,MANNING,SC,33.6434,-80.1966,184.51.35.215 +US,LOVETTSVILLE,VA,39.2666,-77.6386,2.20.142.166 +US,ISLIP,NY,40.7426,-73.2171,184.26.44.38 +US,MESQUITE,TX,32.7700,-96.614,107.14.43.30 +US,FERGUSFALLS,MN,46.2829,-96.0991,165.254.207.117 +AR,RIVADAVIA,"",-34.85,-58.37,184.50.26.179 +US,LASCRUCES,NM,32.6621,-106.6414,23.212.52.79 +US,GLASSBORO,NJ,39.6996,-75.1187,23.67.242.156 +KR,KISA,"",36.72,126.80,92.122.215.89 +US,PETALUMA,CA,38.2181,-122.773,23.212.52.88 +RU,KOLOMNA,"",55.08,38.78,213.155.156.212 +US,YUCCAVALLEY,CA,34.2832,-116.5958,184.50.26.203 +CL,VINADELMAR,"",-33.01,-71.52,190.98.143.69 +CA,THUNDERBAY,ON,48.40,-89.23,72.246.43.215 +US,CORPUSCHRISTI,TX,27.7980,-97.4011,23.212.53.75 +IN,VASHI,MH,18.75,73.03,23.57.69.157 +VN,DONGDA,"",22.63,106.40,23.5.165.167 +US,SEVERNAPARK,MD,39.0808,-76.5571,23.67.242.156 +US,ASHLAND,OR,42.1843,-122.5624,23.212.59.90 +ID,MALANG,"",-7.98,112.62,23.0.162.21 +GB,ASHFORD,EN,51.42,-0.47,23.67.255.158 +RU,SVERDLOVSK,"",56.85,60.60,2.21.240.40 +US,WESTERVILLE,OH,40.1219,-82.9191,96.17.9.14 +US,SULPHURSPRINGS,TX,33.1779,-95.567,23.5.164.146 +US,RATHDRUM,ID,47.8426,-116.9074,107.14.43.30 +US,EATON,CO,40.5202,-104.6808,23.215.15.9 +US,RIVERFALLS,WI,44.8561,-92.6272,23.67.60.222 +US,ANTELOPE,CA,38.7156,-121.3637,23.212.52.93 +SE,SKARHOLMEN,AB,59.28,17.88,217.212.227.25 +US,HEARNE,TX,30.8324,-96.5749,23.212.53.75 +US,WAUSAU,WI,45.0598,-89.4871,23.74.8.24 +US,ELGIN,IL,42.0350,-88.2392,23.67.60.222 +UZ,TASHKENT,"",40.13,68.37,2.21.240.61 +NP,KATHMANDU,"",27.72,85.32,23.212.108.8 +US,LAWRENCE,KS,39.0131,-95.2254,23.63.227.214 +US,ALPHARETTA,GA,34.1327,-84.2992,72.246.247.30 +US,ODENTON,MD,39.0496,-76.7176,23.192.161.21 +EC,QUITO,"",-0.22,-78.50,165.254.205.13 +TW,TAINAN,"",23.31,120.31,61.220.62.175 +CN,NINGBO,ZJ,29.88,121.54,23.15.10.106 +US,MANAHAWKIN,NJ,39.7102,-74.2577,184.26.44.42 +RU,ROSTOVNADONU,"",47.24,39.71,23.14.94.228 +US,"","",38.7657,-77.4852,184.25.157.169 +RU,CHELYABINSK,"",55.17,61.40,213.155.156.206 +US,WALLACE,NC,34.7667,-77.8738,63.151.29.15 +FI,ESPOO,"",60.22,24.67,193.184.164.219 +US,BATONROUGE,LA,30.4499,-91.1876,96.17.153.162 +FI,KAJAANI,"",64.23,27.68,193.184.164.219 +US,GROVERBEACH,CA,35.1287,-120.6191,23.216.10.54 +US,HUNTINGDON,PA,40.6074,-77.8631,23.192.161.16 +US,SIMIVALLEY,CA,34.2707,-118.7905,184.50.26.204 +US,BUTLER,PA,40.9096,-79.9361,65.121.209.127 +US,GARDENCITY,MI,42.3244,-83.3417,23.67.60.222 +IT,CAGLIARI,"",39.22,9.12,213.144.173.198 +MX,AGUASCALIENTES,AGU,21.88,-102.30,23.215.15.22 +US,OWASSO,OK,36.2942,-95.797,72.164.253.68 +TR,INKILAP,"",36.75,37.53,23.61.195.163 +US,DULUTH,MN,47.1196,-91.8629,23.63.227.227 +US,VALDOSTA,GA,30.7579,-83.3062,72.246.247.5 +US,PFLUGERVILLE,TX,30.4432,-97.5977,204.2.223.90 +US,EDMOND,OK,35.6833,-97.5261,23.63.227.227 +FI,VANTAA,"",60.30,24.85,82.96.58.102 +RU,KALUGA,"",54.54,36.27,80.239.217.238 +US,MENA,AR,34.5920,-94.1901,96.16.7.101 +ID,JOGJAKARTA,"",-7.80,110.37,23.0.162.40 +US,PEVELY,MO,38.2842,-90.4297,204.93.47.220 +US,WESTROXBURY,MA,42.2799,-71.1623,23.192.161.21 +PH,LEGASPI,"",15.82,120.60,202.78.83.170 +CN,YUETAN,AH,29.65,118.14,184.50.87.178 +US,HUMMELSTOWN,PA,40.2988,-76.709,23.192.161.30 +ID,TENGAH,"",-3.18,113.32,23.0.162.40 +UY,MONTEVIDEO,"",-34.88,-56.18,200.40.28.31 +BR,PELOTAS,RS,-31.77,-52.33,187.59.4.154 +GN,CONAKRY,"",9.51,-13.71,213.200.109.183 +KR,KIMCHON,"",36.12,128.12,125.56.214.149 +US,CORNING,NY,42.0806,-77.0397,209.18.41.23 +ML,BAMAKO,"",12.65,-8.00,81.52.201.82 +BY,GRODNO,"",53.68,23.83,80.239.222.190 +US,CORAOPOLIS,PA,40.5042,-80.1934,184.27.45.150 +CA,TROISRIVIERES,QC,46.35,-72.55,72.246.43.233 +US,SPARKS,NV,39.5386,-119.7498,23.216.10.78 +US,NORWICH,CT,41.5523,-72.0921,184.25.109.213 +US,HATTIESBURG,MS,31.1996,-89.2694,72.246.247.5 +US,CLIFTONHEIGHTS,PA,39.9228,-75.2984,184.28.17.76 +US,CENTRALIA,WA,46.7386,-122.9449,23.212.59.85 +US,JONESBORO,GA,33.5203,-84.3178,23.79.240.37 +JO,AMMAN,"",31.95,35.93,77.67.27.250 +US,MASSENA,NY,44.9476,-74.9244,107.14.38.217 +US,BRISTOL,VA,36.6927,-82.2134,209.48.37.188 +US,SAINTGEORGE,UT,37.1317,-113.7959,165.254.144.25 +US,CLAREMONT,CA,34.1276,-117.7153,173.223.52.70 +US,NEWBERG,OR,45.3226,-122.99,184.27.179.181 +US,MADERA,CA,36.9046,-120.1728,23.212.52.88 +AU,MARULAN,NSW,-34.70,150.02,202.7.177.87 +US,LAHABRA,CA,33.9421,-117.9517,23.216.10.54 +TR,KAYSERI,"",38.72,35.50,2.21.240.61 +US,CLINTONTOWNSHIP,MI,42.5574,-82.8963,23.67.60.222 +US,GLOBE,AZ,33.5677,-110.7249,63.226.34.174 +US,APACHEJUNCTION,AZ,33.4152,-111.5488,63.226.34.162 +DE,HAG,BW,47.73,7.92,2.16.217.211 +US,WAXHAW,NC,34.9191,-80.7283,209.18.41.23 +US,BEVERLYHILLS,CA,34.0738,-118.3994,63.141.193.62 +RU,KALININGRAD,"",55.92,37.88,2.21.240.40 +US,DELAWARE,OH,40.3029,-83.0602,107.14.38.227 +DE,OFFENBURG,BW,48.48,7.93,80.157.150.197 +US,CLEARFIELD,UT,41.1230,-112.0639,63.217.232.17 +US,PIKEVILLE,KY,37.5348,-82.513,184.27.45.157 +US,THIBODAUX,LA,29.8127,-90.7428,96.17.153.157 +US,LATHROP,CA,37.8212,-121.2919,96.17.12.48 +US,HAZEN,ND,47.3960,-101.6023,107.14.38.227 +AT,SALZBURG,"",47.80,13.03,195.145.147.108 +US,NEVADA,MO,37.8504,-94.3445,23.77.234.35 +US,DUMFRIES,VA,38.5915,-77.3508,184.28.17.76 +US,MACON,GA,32.8993,-83.468,184.51.35.226 +CN,SHENZHEN,GD,22.53,114.13,184.50.87.176 +US,KALAMA,WA,46.0150,-122.7836,192.80.13.117 +US,ROCKLIN,CA,38.8019,-121.2492,96.17.12.48 +US,WINTER,WI,45.8255,-90.8897,23.74.8.8 +US,SCHOOLCRAFT,MI,42.1212,-85.6839,23.74.8.24 +TN,TUNIS,"",36.80,10.18,46.33.70.213 +US,BERGENFIELD,NJ,40.9234,-73.9981,184.26.44.38 +FR,VITRYSURSEINE,"",48.78,2.40,2.16.117.200 +US,PEYTON,CO,39.0051,-104.5039,63.151.29.12 +PL,LUBLIN,"",51.25,22.57,2.22.52.101 +US,LAKEWALES,FL,27.8661,-81.4384,184.51.35.226 +US,POWAY,CA,32.9789,-117.0196,23.216.10.54 +FR,MONTOISON,"",44.78,4.92,2.16.117.190 +US,MONTCLAIR,CA,34.0753,-117.6972,184.50.26.179 +KR,MOKPO,"",34.79,126.39,61.111.58.229 +US,OWINGSMILLS,MD,39.4250,-76.7779,23.192.161.16 +FJ,SUVA,"",-18.13,178.42,104.72.70.95 +US,PORTERVILLE,CA,36.0318,-118.9656,23.216.10.78 +US,LINDEN,NJ,40.6259,-74.2395,23.67.242.156 +PL,KRASNIK,"",50.92,22.23,2.22.52.109 +US,DUNNELLON,FL,29.0187,-82.4395,23.33.186.134 +LB,BEIRUT,"",33.87,35.51,95.101.34.105 +DE,HEIDELBERG,BW,49.42,8.70,23.14.94.224 +KZ,TALDYKURGAN,"",45.00,77.92,2.20.142.173 +US,LAKEFOREST,CA,33.6490,-117.6848,184.50.26.179 +RU,IRKUTSK,"",52.27,104.33,217.212.227.31 +US,NEWBURYPARK,CA,34.1843,-118.9097,184.50.26.204 +US,MARINADELREY,CA,33.9786,-118.4476,184.50.26.204 +US,WETUMPKA,AL,32.5691,-86.1584,72.246.247.5 +US,NORTHTAZEWELL,VA,37.1608,-81.5125,107.14.43.30 +US,ALLENTOWN,PA,40.6019,-75.4727,184.29.107.38 +US,BAYSAINTLOUIS,MS,30.3134,-89.5231,96.17.153.157 +US,PEACHTREECITY,GA,33.3924,-84.5695,72.246.247.5 +US,ONEONTA,NY,42.4787,-75.0181,107.14.38.218 +US,HACIENDAHEIGHTS,CA,33.9955,-117.9764,107.14.44.212 +US,HARVEY,LA,29.8673,-90.069,96.17.153.162 +US,ELKTON,VA,38.3599,-78.6227,23.192.161.16 +US,ALBERTVILLE,AL,34.3010,-86.1927,72.246.247.5 +IE,CORK,"",51.90,-8.50,95.101.2.112 +US,DUBOIS,PA,41.1434,-78.731,184.26.44.38 +US,SOUTHHADLEY,MA,42.2564,-72.5775,165.254.202.96 +US,HATBORO,PA,40.1770,-75.1061,184.26.44.42 +NZ,NAENAE,"",-41.20,174.94,219.88.186.172 +ID,SEMARANG,"",-6.97,110.42,23.14.94.228 +US,SYRACUSE,NY,43.0499,-76.1506,107.14.38.227 +US,RIDGELAND,MS,32.4200,-90.1289,23.79.240.48 +US,NORTHAMPTON,MA,42.3230,-72.6707,184.25.109.213 +US,STOCKBRIDGE,GA,33.5641,-84.1952,23.79.240.36 +CZ,PLZEN,"",49.75,13.37,2.22.52.105 +PL,REDA,"",54.62,18.35,2.22.52.109 +US,BRIGHTON,CO,39.9758,-104.8092,23.212.53.75 +US,NEWPORT,AR,35.5678,-91.2073,23.5.164.143 +ES,OVIEDO,"",43.37,-5.83,80.149.168.111 +US,CANOGAPARK,CA,34.1977,-118.6018,184.87.195.109 +US,BENTON,KY,36.8777,-88.361,107.14.38.217 +US,MONTEREYPARK,CA,34.0511,-118.144,23.216.10.78 +US,LAMESA,CA,32.7605,-116.9997,184.50.26.194 +FI,YLIVIESKA,"",64.08,24.55,193.184.164.237 +HK,SHATIN,"",22.38,114.18,219.76.10.81 +BB,BRIDGETOWN,"",13.10,-59.62,23.74.2.7 +PL,ELBLAG,"",54.17,19.38,2.22.52.109 +US,COMPTON,CA,33.8794,-118.2368,184.50.26.201 +US,STATESBORO,GA,32.4474,-81.7452,184.27.45.157 +US,OAKDALE,CA,37.7848,-120.7726,96.17.12.48 +BR,GUARULHOS,SP,-23.47,-46.53,200.174.107.50 +FR,RENNES,"",48.08,-1.68,2.20.243.42 +IN,SION,MH,19.03,72.85,96.17.180.166 +US,DESTIN,FL,30.3934,-86.4958,184.51.35.226 +US,JENKS,OK,36.0001,-95.9806,23.215.15.32 +US,FORESTGROVE,OR,45.6684,-123.3405,184.27.179.181 +US,GREENCASTLE,IN,39.6767,-86.9214,23.63.227.227 +US,TAYLORVILLE,IL,39.5521,-89.3216,23.63.227.227 +MX,SANPEDROGARZAGARCIA,NLE,25.41,-99.91,184.26.93.116 +US,CONROE,TX,30.3059,-95.4359,204.2.223.91 +US,HYATTSVILLE,MD,38.9534,-76.9444,23.192.161.16 +JP,FUJITA,07,37.87,140.55,72.246.191.19 +US,ESPANOLA,NM,35.9775,-106.1582,63.216.54.229 +US,BULLHEADCITY,AZ,35.1469,-114.5576,23.5.164.146 +PL,KOLOBRZEG,"",54.18,15.58,2.22.52.101 +FR,ASNIERES,"",48.92,2.28,88.221.15.111 +US,STILLWATER,OK,36.0774,-97.0817,107.14.43.30 +US,GREELEY,CO,40.4475,-104.6861,184.84.180.68 +NZ,CHRISTCHURCH,"",-43.53,172.63,203.97.86.239 +US,LEESVILLE,LA,31.2063,-93.1344,204.2.223.90 +US,SCITUATE,MA,42.2010,-70.7631,184.26.44.42 +UA,ALUSHTA,CRIMEA,44.67,34.42,80.239.222.167 +US,VACAVILLE,CA,38.3470,-121.9283,165.254.45.13 +US,NEWHALL,CA,34.3744,-118.4762,184.50.26.194 +ID,DEPOK,"",-6.40,106.83,202.43.190.246 +US,HILO,HI,19.6686,-155.3062,165.254.96.248 +DE,NEUSS,NW,51.20,6.68,2.16.217.211 +US,LAJUNTA,CO,37.8368,-103.544,107.14.32.228 +DE,OLPE,NW,51.03,7.85,80.157.170.154 +ID,BOGOR,"",-6.15,106.98,23.0.162.54 +AU,WOLLONGONG,NSW,-34.43,150.88,23.62.157.32 +US,WOODSTOCK,GA,34.1201,-84.4649,23.212.53.64 +US,SILVERDALE,WA,47.7228,-122.7145,23.212.59.63 +US,SMITHFIELD,UT,41.8466,-111.898,184.84.180.101 +US,ABILENE,TX,32.4816,-99.6841,23.5.164.146 +PR,GUAYNABO,"",18.3658,-66.0928,72.246.65.26 +GB,EXETER,EN,50.70,-3.53,88.221.87.94 +US,LAGRANGE,GA,33.0069,-85.1034,23.79.240.36 +US,ARCADIA,CA,34.1380,-118.0283,165.254.144.25 +US,RIVERBANK,CA,37.7323,-120.941,96.17.12.44 +DE,TRAUBING,BY,47.95,11.27,195.145.147.107 +US,MONTEVISTA,CO,37.5196,-106.1764,107.14.32.228 +US,ALISOVIEJO,CA,33.5767,-117.7127,63.151.119.16 +US,SAINTCLOUD,FL,28.2446,-81.2943,23.33.186.101 +US,WESTMIFFLIN,PA,40.3582,-79.9065,23.192.161.16 +DE,KEMPTEN,BY,47.72,10.32,194.25.95.214 +US,BATAVIA,NY,42.9969,-78.2158,107.14.38.224 +MX,CULIACAN,SIN,24.00,-107.03,173.223.52.70 +US,POCATELLO,ID,42.8976,-112.3706,65.116.149.89 +EE,TARTU,"",58.37,26.74,82.96.58.102 +JP,KANDA,07,37.20,140.38,202.229.2.213 +US,BAYSIDE,NY,40.7918,-73.7759,184.26.44.38 +US,BUFORD,GA,34.1046,-84.0037,23.79.240.37 +RU,KIROV,"",54.83,36.47,80.239.222.190 +US,ROWLANDHEIGHTS,CA,33.9850,-117.9013,184.50.26.204 +US,CULLOWHEE,NC,35.2608,-83.1173,184.27.45.157 +US,AUBURN,AL,32.6014,-85.5082,204.2.243.135 +DE,KRONBERG,HE,50.18,8.50,92.122.188.163 +AU,IPSWICH,QLD,-27.62,152.77,23.62.157.32 +SE,GAVLE,X,60.67,17.17,213.155.156.207 +US,METAIRIE,LA,29.9840,-90.1664,96.17.153.157 +US,HERCULES,CA,38.0074,-122.2624,23.212.52.79 +US,PRESCOTT,AZ,34.7884,-112.8659,63.226.34.176 +US,SAYRE,PA,41.9771,-76.4144,107.14.38.217 +FR,NOISYLEGRAND,"",48.85,2.57,2.16.117.190 +US,TAPPAHANNOCK,VA,37.9112,-76.9715,208.185.55.86 +ID,YOGYAKARTA,"",-7.80,110.37,23.0.162.40 +FR,LOGNES,"",48.83,2.62,2.16.117.200 +PL,SZCZECIN,"",51.92,19.72,80.239.222.169 +US,ARANSASPASS,TX,27.9093,-97.1497,23.215.15.9 +ID,PALEMBANG,"",-2.92,104.75,96.17.180.177 +US,LAREDO,TX,27.5137,-99.5021,23.5.164.146 +US,QUAKERTOWN,PA,40.4606,-75.3304,184.26.44.42 +GB,ALFRETON,EN,53.10,-1.38,195.245.125.114 +CA,HINTON,AB,53.40,-117.58,24.244.17.205 +US,SEWARD,NE,40.8874,-97.126,107.14.43.30 +PL,WROCLAW,"",51.10,17.03,2.22.61.102 +US,SANTACLARITA,CA,34.5130,-118.4027,184.50.26.204 +US,AVON,CO,39.5815,-106.4966,184.84.180.68 +KZ,BELOUSOVKA,"",50.13,82.52,2.21.240.40 +IN,CHANDIGARH,CH,30.74,76.79,117.239.91.75 +US,CROSBY,TX,29.9299,-95.0527,23.212.53.75 +CN,QIAOTOU,ZJ,30.15,121.36,23.15.10.112 +US,FLORA,IL,38.6705,-88.5031,23.74.8.8 +DE,KIEL,SH,54.33,10.13,194.25.95.225 +RU,OMSK,"",55.00,73.40,2.21.240.61 +US,PALMCITY,FL,27.1320,-80.3491,23.79.240.48 +US,NEEDHAM,MA,42.2750,-71.2465,184.25.109.200 +US,CHARLESTON,WV,38.3510,-81.6265,184.27.45.157 +US,CENTERCONWAY,NH,43.9597,-71.0453,165.254.35.197 +US,VALLEY,AL,32.7858,-85.1946,23.79.240.36 +US,FRENCHCAMP,CA,37.8805,-121.2989,23.212.52.88 +US,STUDIOCITY,CA,34.1386,-118.3879,107.14.44.185 +DE,KONSTANZ,BW,47.67,9.18,194.25.95.225 +US,URBANDALE,IA,41.6320,-93.7353,65.113.249.8 +US,AUSTELL,GA,33.8340,-84.6343,72.246.247.5 +US,NEWCASTLE,DE,39.6483,-75.6041,23.192.161.30 +RU,TYUMEN,"",58.52,48.27,80.239.237.84 +US,BELMAR,NJ,40.1783,-74.0222,184.51.125.79 +FR,AMBERIEUENBUGEY,"",45.92,4.73,2.16.117.200 +US,ORANGEVALE,CA,38.6892,-121.2198,23.212.52.82 +US,BROKENARROW,OK,35.9842,-95.8102,63.216.54.229 +FR,ALFORTVILLE,"",48.80,2.42,2.16.117.190 +US,BLOOMSBURG,PA,41.0301,-76.4558,23.67.242.139 +US,FERNDALE,WA,48.8653,-122.6362,23.212.59.64 +US,MORGANTOWN,WV,39.5846,-79.9182,23.192.161.16 +VN,BINHTHANH,"",10.77,106.75,96.17.180.177 +IN,LUDHIANA,PB,30.90,75.85,23.211.135.66 +AR,ROSARIO,"",-32.95,-60.67,200.123.201.215 +RU,GRAN,"",50.72,39.78,80.239.217.231 +US,WATERLOO,IL,38.3034,-90.1358,23.63.227.227 +CA,COURTENAY,BC,49.68,-125.00,184.27.179.187 +US,LEWISBURG,WV,37.8469,-80.447,184.28.17.55 +US,ELMWOODPARK,NJ,40.9049,-74.1196,23.67.242.156 +US,JOPLIN,MO,37.1074,-94.5218,23.215.15.9 +ID,BARAT,"",-7.57,111.45,202.43.190.246 +US,PHOENIXVILLE,PA,40.1221,-75.5397,23.192.161.16 +US,GRETNA,LA,29.9128,-90.0524,23.215.15.22 +US,SHEFFIELDLAKE,OH,41.4650,-82.0929,107.14.32.235 +US,SILVERSPRING,MD,39.0245,-77.0094,96.6.47.120 +CA,REDDEER,AB,52.27,-113.80,184.27.179.187 +US,MORTONGROVE,IL,42.0422,-87.789,23.67.60.223 +ZA,ISANDO,"",-26.15,28.20,41.193.163.45 +US,HAINESCITY,FL,28.0703,-81.5695,192.204.11.244 +JP,OKI,33,34.62,134.13,72.246.184.92 +US,KINGSPORT,TN,36.4877,-82.6162,184.29.107.20 +US,CASTLEROCK,CO,39.3765,-104.8554,184.84.180.92 +US,CENTEREACH,NY,40.8699,-73.0833,184.26.44.42 +TR,DIYARBAKIR,"",37.92,40.23,193.45.15.199 +AR,LARIOJA,"",-29.43,-66.85,190.98.167.220 +US,OROVILLE,CA,39.5324,-121.6485,63.151.119.25 +FR,LIGNE,"",50.67,2.33,23.67.255.158 +DZ,ALGIERS,"",36.76,3.05,213.200.109.183 +US,TUPELO,MS,34.2235,-88.7398,23.220.100.223 +US,RACINE,WI,42.7263,-87.7829,165.254.96.242 +CN,TAIZHOU,ZJ,28.85,121.12,72.246.191.19 +US,OREGONCITY,OR,45.3306,-122.529,23.212.59.85 +PL,LODZ,"",51.75,19.47,80.239.222.169 +US,BROWNSBURG,IN,39.8655,-86.3812,65.113.249.8 +MX,GUAYMAS,SON,27.93,-110.90,173.223.52.70 +US,DOUGLASVILLE,GA,33.7516,-84.7478,23.79.240.37 +US,SUISUNCITY,CA,38.2546,-122.0486,23.212.52.88 +US,HALETHORPE,MD,39.2187,-76.722,23.192.161.16 +US,MIDDLETON,ID,43.7467,-116.5805,192.80.13.108 +US,NEWBEDFORD,MA,41.6384,-70.9419,184.25.109.196 +CA,SAINTLAURENT,QC,45.52,-73.67,72.246.43.237 +US,PORTCHARLOTTE,FL,26.9751,-82.152,23.79.240.36 +US,MIDDLERIVER,MD,39.3459,-76.3996,23.192.161.21 +US,VERONA,NJ,40.8330,-74.2435,23.74.8.24 +BR,CAMPINAS,SP,-22.90,-47.08,200.174.107.42 +US,TOPEKA,KS,39.0486,-95.6778,23.77.234.35 +GB,BRENT,EN,51.55,-0.27,92.122.126.82 +US,YORKTOWN,VA,37.2346,-76.5585,23.220.148.108 +US,SANLUIS,AZ,32.4906,-114.7753,184.50.26.201 +ID,MAKASSAR,"",2.45,99.78,118.98.42.129 +US,QUINLAN,TX,32.9155,-96.1709,107.14.43.30 +US,LINDALE,GA,34.1582,-85.1905,23.79.240.37 +US,CEDARPARK,TX,30.4956,-97.8267,23.215.15.9 +KR,TAEJON,"",36.32,127.42,183.111.23.63 +PL,GOGOLIN,"",53.40,18.67,2.22.52.109 +PH,MANDALUYONG,"",14.58,121.03,120.28.5.110 +US,WARRINGTON,PA,40.2476,-75.1421,23.67.242.139 +CZ,BLANSKO,"",50.70,14.10,195.27.155.188 +IN,BHUBANESHWAR,OR,20.23,85.83,23.57.76.20 +US,WARWICK,NY,41.2642,-74.3694,184.51.125.79 +US,AMERICANFORK,UT,40.4102,-111.814,184.84.180.101 +US,OXNARD,CA,34.2254,-119.1713,23.216.10.78 +MX,MAZATLAN,SIN,23.22,-106.42,173.223.52.67 +US,HAGERSTOWN,MD,39.6364,-77.7249,168.143.243.33 +US,URBANA,IL,40.1590,-88.187,23.63.227.214 +US,SUMMERFIELD,FL,28.9926,-82.0497,23.79.240.48 +US,HAMMOND,IN,41.6065,-87.4967,23.67.60.222 +US,MOAB,UT,38.6903,-109.2562,184.85.249.14 +JP,IWAMI,28,34.78,134.53,23.3.74.113 +US,GALVESTON,TX,29.3093,-94.7816,23.212.53.75 +US,COALTOWNSHIP,PA,40.7855,-76.5082,184.26.44.38 +US,LUBBOCK,TX,33.5838,-101.8403,23.5.164.143 +US,HAUGHTON,LA,32.5391,-93.5257,96.17.153.162 +PS,GAZA,"",31.50,34.47,95.100.169.105 +US,TALLAHASSEE,FL,30.4294,-84.2579,69.31.132.229 +PL,OSIELSKO,"",53.18,18.07,80.239.222.190 +US,LAGRANDE,OR,45.2284,-118.272,165.254.1.165 +US,WOODBURN,OR,45.1385,-122.8359,184.27.179.159 +US,HOLBROOK,NY,40.7951,-73.0765,184.26.44.38 +LV,CESIS,"",57.30,25.25,213.155.156.206 +US,FORTHUACHUCA,AZ,31.5925,-110.3847,204.94.155.235 +US,MOUNTAINHOMEAFB,ID,43.0653,-116.032,206.104.149.146 +US,HAVERFORD,PA,40.0078,-75.3135,184.26.44.35 +US,MECHANICSBURG,PA,40.2485,-77.0142,23.67.242.156 +US,PARSIPPANY,NJ,40.8553,-74.3996,184.51.125.68 +US,GREENBAY,WI,44.4814,-88.0196,23.63.227.214 +YE,SANA,"",15.35,44.21,79.140.94.183 +US,BESSEMER,AL,33.4077,-86.9494,204.2.243.132 +MX,ZAPOPAN,JAL,20.72,-103.40,23.215.15.9 +US,OGDEN,UT,41.2234,-111.9731,23.61.195.165 +US,GRANITECITY,IL,38.7259,-90.0982,69.31.97.120 +US,MUNCIE,IN,40.1286,-85.3767,204.93.47.220 +US,KNOXVILLE,TN,35.9646,-83.9197,23.79.240.37 +US,APPLEVALLEY,CA,34.5744,-117.1146,63.233.61.151 +US,SHEBOYGAN,WI,43.7072,-87.7387,23.63.227.227 +US,SCHAUMBURG,IL,42.0334,-88.0833,107.14.38.224 +BR,GOIANIA,GO,-16.67,-49.27,200.174.107.42 +US,HERKIMER,NY,43.0566,-75.0112,107.14.38.218 +NL,DELFT,"",52.00,4.37,2.16.153.173 +TW,CHIAI,"",23.48,120.44,61.220.62.175 +US,DEPERE,WI,44.4310,-88.1738,107.14.38.218 +US,SOUDERTON,PA,40.2970,-75.3345,184.26.44.42 +US,MONTVILLE,CT,41.4628,-72.1545,165.254.48.150 +RO,RAMNICUVALCEA,"",45.10,24.37,81.196.26.237 +AT,ETZELSDORF,"",47.95,14.05,195.145.147.108 +US,SIMPSONVILLE,SC,34.6913,-82.2915,23.79.240.37 +CA,FORTMCMURRAY,AB,56.73,-111.38,24.244.17.197 +US,CARSONCITY,NV,39.1386,-119.6595,23.216.10.78 +PH,DILIMAN,"",14.63,121.07,202.78.83.175 +US,CAPECANAVERAL,FL,28.3971,-80.6086,96.6.47.106 +US,SOMERVILLE,MA,42.3814,-71.0971,184.29.107.20 +CN,QUANZHOU,FJ,24.90,118.58,184.50.87.178 +GB,BASILDON,EN,51.57,0.47,23.67.255.158 +KW,KUWAIT,"",29.37,47.98,63.80.12.225 +US,DOWNERSGROVE,IL,41.8086,-88.0231,23.215.15.9 +US,YORKSHIRE,NY,42.5238,-78.4755,184.26.44.42 +FR,BEZONS,"",48.93,2.22,2.16.117.190 +US,WARMINSTER,PA,40.2185,-75.0735,23.192.161.16 +US,HERRIMAN,UT,40.4909,-112.0097,23.61.195.163 +US,MONTEBELLO,CA,34.0167,-118.1107,63.151.119.25 +US,DAYTONABEACH,FL,29.1935,-81.0536,184.51.145.22 +US,LACEY,WA,47.0254,-122.7992,23.212.59.63 +CM,YAOUNDE,"",3.87,11.52,184.84.239.175 +US,BRYNMAWR,PA,40.0226,-75.3301,23.67.242.139 +US,OWENSBORO,KY,37.7353,-87.2433,107.14.38.218 +JP,KUMAGAYA,11,36.13,139.38,202.239.172.94 +US,EGGHARBORTOWNSHIP,NJ,39.3650,-74.6283,184.26.44.38 +RU,BARNAUL,"",55.65,66.27,2.21.240.40 +PL,BYTOM,"",50.35,18.97,2.22.52.105 +CN,HARBIN,HL,45.75,126.65,72.246.191.19 +US,PLYMOUTH,IN,41.3572,-86.3281,23.67.60.223 +US,LEANDER,TX,30.5580,-97.9247,184.28.23.24 +IN,NIWAS,MP,23.05,80.43,124.124.252.153 +BY,VITEBSK,"",55.19,30.19,92.122.189.114 +US,EVANSVILLE,IN,37.9744,-87.5555,23.63.227.227 +JP,KAGOSHIMA,46,31.60,130.55,202.229.2.212 +US,JAMAICA,NY,40.6917,-73.8061,209.18.41.27 +ZA,NORTHCLIFF,"",-26.13,27.95,165.165.46.37 +DE,POTSDAM,BB,52.40,13.07,195.95.193.150 +JP,CHIBA,12,35.60,140.12,104.74.70.98 +US,NORTHFIELD,MN,44.4726,-93.1785,184.85.215.170 +US,BRENHAM,TX,30.2352,-96.4076,204.2.223.91 +US,MONTROSE,CA,34.2114,-118.231,23.216.10.54 +US,SNYDER,TX,33.0123,-100.8338,23.215.15.9 +ID,BARU,"",-6.13,106.78,23.0.162.40 +US,JOHNSONCITY,TN,36.3400,-82.3328,23.79.240.36 +US,FORTWALTONBEACH,FL,30.4494,-86.6242,183.111.23.63 +AE,ABUDHABI,"",24.47,54.37,23.5.164.146 +JP,NIIGATA,15,37.92,139.05,117.104.139.162 +US,JASPER,GA,34.4645,-84.4746,184.28.127.58 +US,TALLMADGE,OH,41.1018,-81.4225,107.14.38.217 +CA,BOWMANVILLE,ON,43.90,-78.68,72.246.43.232 +TR,ULUS,"",39.93,32.87,193.45.15.198 +US,GLENELLYN,IL,41.8564,-88.062,23.67.60.220 +US,ANDERSON,IN,40.1325,-85.7642,65.113.249.11 +US,WEXFORD,PA,40.6275,-80.0614,72.246.52.107 +US,NICEVILLE,FL,30.4944,-86.0572,184.51.35.226 +US,DEARBORN,MI,42.3055,-83.1724,63.141.200.241 +US,EASTLIVERPOOL,OH,40.6788,-80.5838,23.192.161.21 +US,NEWPORTBEACH,CA,33.6187,-117.9283,23.215.15.22 +US,DEBARY,FL,28.8805,-81.3193,23.212.53.75 +BY,MOGILEV,"",53.91,30.34,23.14.94.224 +US,NORCROSS,GA,33.9378,-84.2013,72.246.247.30 +RU,KAZAN,"",55.75,49.13,2.21.240.61 +RO,SIBIU,"",45.80,24.15,81.196.26.231 +CZ,FRENSTATPODRADHOSTEM,"",49.55,18.22,23.62.237.133 +CN,HAIKOU,HI,20.05,110.34,72.246.191.19 +US,SOUTHRICHMONDHILL,NY,40.6884,-73.8234,184.26.44.42 +US,EDMONDS,WA,47.8000,-122.3719,23.212.59.63 +US,WINCHESTER,TN,35.1786,-86.12,23.212.53.64 +US,CENTRALPOINT,OR,42.4072,-122.9556,192.80.13.117 +US,JESUP,GA,31.5041,-81.8277,23.79.240.48 +US,ALIEF,TX,29.7106,-95.5963,23.212.53.64 +JP,UJI,26,34.88,135.80,23.3.74.112 +JP,TAMA,33,34.48,133.93,118.155.230.132 +US,ELMENDORFAFB,AK,61.2646,-149.8047,23.212.59.85 +IN,JAISALMER,RJ,26.92,70.90,184.25.157.169 +US,MUKILTEO,WA,47.9095,-122.3022,23.212.59.85 +US,HOBOKEN,NJ,40.7453,-74.032,23.67.242.139 +DE,EBERSWALDE,BB,52.83,13.83,92.122.207.179 +US,YUMA,AZ,32.7006,-114.6726,184.50.26.179 +US,HYDEN,KY,37.1647,-83.4362,184.51.35.226 +US,ARDMORE,PA,40.0021,-75.2992,23.67.242.139 +US,CEDARHILL,TX,32.5815,-96.9616,107.14.43.30 +RU,TIS,"",57.01,57.60,80.239.217.231 +US,UNION,NJ,40.6941,-74.2694,184.26.44.38 +US,BELLEVILLE,IL,38.4985,-89.9796,204.93.47.216 +IT,BOLZANO,"",46.52,11.37,213.144.173.218 +US,NOBLE,OK,35.1418,-97.2907,64.129.104.135 +US,HUTCHINSON,KS,38.0313,-98.1636,23.215.15.22 +US,PULASKI,VA,37.0726,-80.7961,184.26.44.40 +CY,LEMESOS,"",34.67,33.03,2.20.142.173 +BG,KLIMENT,"",42.60,24.68,80.239.222.167 +DE,BRANDENBURG,BB,52.42,12.55,80.157.150.169 +US,ORMONDBEACH,FL,29.2856,-81.0563,184.51.145.7 +US,WOODSIDE,NY,40.7439,-73.9053,184.29.107.20 +US,OREGON,OH,41.6550,-83.4472,23.74.8.24 +US,FORTMOHAVE,AZ,35.0028,-114.5797,24.143.194.216 +IR,KERMANSHAH,"",34.31,47.06,213.155.156.212 +US,NOBLESVILLE,IN,40.0583,-85.9657,23.67.60.222 +RU,ZHIGULI,"",53.35,49.30,2.21.240.40 +US,CHAMPLIN,MN,45.1692,-93.3912,23.67.60.223 +US,DELANO,CA,35.7580,-119.1095,184.87.195.109 +CY,PAPHOS,"",34.77,32.42,173.223.52.70 +US,SALIDA,CA,37.7163,-121.0942,23.216.10.54 +US,BENSENVILLE,IL,41.9552,-87.9401,107.14.38.224 +US,LONGMONT,CO,40.1771,-105.0797,184.84.180.92 +US,PROVO,UT,40.2247,-111.6938,63.80.12.225 +JP,YAMAGUCHI,35,34.17,131.48,184.51.199.132 +AU,PENNANTHILLS,NSW,-33.73,151.07,23.205.116.7 +US,STATESVILLE,NC,35.7886,-80.8801,96.16.12.216 +US,NORTHAURORA,IL,41.8068,-88.3366,23.67.60.223 +US,BEAR,DE,39.5786,-75.7006,184.26.44.38 +AU,LIVERPOOL,NSW,-33.90,150.93,23.62.8.25 +US,CLAREMORE,OK,36.3346,-95.5666,23.215.15.22 +DE,BAUMGARTEN,BY,50.15,11.47,80.157.150.192 +US,CHATTANOOGA,TN,35.0459,-85.3097,184.51.35.215 +US,GRAPEVINE,TX,32.9275,-97.0735,192.204.11.244 +US,AMES,IA,42.0383,-93.6284,204.93.47.216 +RO,GALATI,"",45.85,24.97,2.22.52.102 +US,ACWORTH,GA,34.0445,-84.7171,23.79.240.37 +US,GOLDSBORO,NC,35.4141,-78.0215,209.18.41.23 +ID,SURABAYA,"",-4.67,105.72,118.98.37.99 +US,GALLUP,NM,35.4315,-108.7243,63.226.34.173 +US,UPLAND,CA,34.1381,-117.6589,23.216.10.78 +US,OAKPARK,CA,34.1839,-118.7702,184.50.26.179 +US,CALABASAS,CA,34.1257,-118.6769,184.50.26.179 +IT,COMO,"",45.78,9.08,213.144.173.218 +US,MUSCLESHOALS,AL,34.7605,-87.6264,72.246.247.30 +US,BAUDETTE,MN,48.5595,-94.661,23.212.53.75 +US,LAWRENCEBURG,IN,39.1597,-84.8764,23.74.8.8 +US,KENMORE,WA,47.7577,-122.2428,23.212.59.85 +US,DELAND,FL,28.9706,-81.4214,184.51.145.22 +US,COMSTOCKPARK,MI,43.0682,-85.6853,65.113.249.8 +HT,PETIONVILLE,"",18.51,-72.29,23.74.2.7 +US,CHICO,CA,39.9285,-121.8223,184.84.180.101 +RO,BRAILA,"",45.27,27.98,81.196.26.231 +US,TINLEYPARK,IL,41.5679,-87.7949,23.67.60.222 +RU,FRYAZINO,"",55.96,38.05,213.155.156.212 +US,FALLRIVER,MA,41.7314,-71.1164,184.25.109.196 +US,SAINTJOSEPH,MO,39.7657,-94.8425,23.5.164.143 +SA,ALKHOBAR,"",26.28,50.21,79.140.94.183 +US,MONMOUTH,OR,44.7727,-123.3556,192.80.13.117 +US,GLENSIDE,PA,40.1012,-75.1722,23.67.242.156 +US,RESTON,VA,38.9597,-77.3374,65.121.209.125 +RU,EKATERINBURG,"",56.85,60.60,2.21.240.61 +US,PENSACOLA,FL,30.4205,-87.2234,184.51.35.226 +US,ADAMSVILLE,AL,33.5928,-86.9876,23.220.100.223 +PL,DEBICA,"",51.65,22.57,80.239.222.169 +US,ALAMOGORDO,NM,32.7929,-106.161,63.226.34.176 +IT,SAVONA,"",44.28,8.50,213.144.173.218 +US,SOUTHELGIN,IL,41.9935,-88.277,107.14.38.218 +US,GOODYEAR,AZ,33.4238,-112.4015,63.226.34.176 +US,KENNESAW,GA,34.0374,-84.5922,72.246.247.5 +DZ,CONSTANTINE,"",36.37,6.61,79.140.94.183 +IN,JAIPUR,RJ,26.92,75.82,96.17.182.136 +US,ANNANDALEONHUDSON,NY,42.0124,-73.8998,184.29.107.20 +US,CARPINTERIA,CA,34.6066,-119.5558,173.223.52.70 +US,GAINESVILLE,GA,34.3157,-83.8152,23.79.240.37 +US,LANSDALE,PA,40.2305,-75.2995,23.77.238.9 +YE,SANAA,"",15.35,44.21,184.84.180.98 +NL,THEHAGUE,"",52.08,4.30,92.122.189.114 +US,KINGFISHER,OK,35.9153,-98.0257,174.76.226.117 +US,DOVER,NH,43.1854,-70.9128,184.25.109.213 +PR,MAYAGUEZ,"",18.1211,-67.0824,64.86.201.118 +US,ZION,IL,42.4565,-87.8597,107.14.38.218 +US,SEYMOUR,CT,41.3811,-73.0868,184.25.109.196 +DE,DEGGENDORF,BY,48.83,12.97,84.53.146.39 +VE,MARACAIBO,"",10.63,-71.64,72.246.65.37 +US,VALLEYVILLAGE,CA,34.1666,-118.3996,184.50.26.179 +AT,INNSBRUCK,"",47.27,11.40,95.100.169.112 +US,MORRIS,IL,41.3973,-88.4715,23.67.60.223 +US,BANNING,CA,33.9464,-116.8543,23.216.10.78 +US,VINELAND,NJ,39.5016,-75.0264,184.26.44.38 +UA,TERNOPOL,"",49.55,25.58,23.14.94.220 +IN,BALAJINAGAR,TN,13.12,80.23,96.17.180.166 +US,BOUNTIFUL,UT,40.8715,-111.8314,23.61.195.160 +FR,RUEILMALMAISON,"",48.88,2.20,2.16.117.200 +US,PITTSFORD,NY,43.0476,-77.5243,23.79.240.36 +KR,KWANGJU,"",35.15,126.92,23.65.188.30 +US,TRAVISAFB,CA,38.2626,-121.9405,63.217.232.22 +US,BONIFAY,FL,30.8908,-85.6931,2.21.240.61 +GB,COSHAM,EN,50.83,-1.07,23.67.255.158 +US,JANESVILLE,WI,42.6846,-89.1369,184.85.215.165 +JP,FUKUOKA,40,33.58,130.40,117.104.139.162 +NZ,TIMARU,"",-44.40,171.25,219.88.186.164 +MM,RANGOON,"",16.78,96.17,96.17.180.166 +US,NORTHLASVEGAS,NV,36.2132,-115.1197,65.116.149.89 +US,PORTRICHEY,FL,28.3040,-82.7021,23.33.186.134 +US,PAINTSVILLE,KY,37.7517,-82.9074,184.28.17.76 +US,LIVEOAK,FL,30.2764,-83.0529,23.79.240.37 +US,POPLARBLUFF,MO,36.7803,-90.4373,23.63.227.227 +BE,LIEGE,"",50.63,5.57,2.18.243.1 +US,FORTLEE,NJ,40.8502,-73.9734,184.26.44.38 +RO,IP,"",47.23,22.65,80.239.222.169 +US,LEOMINSTER,MA,42.5209,-71.7716,184.25.109.201 +US,CHILLICOTHE,OH,39.3125,-83.0274,107.14.38.224 +US,SAINTPAULPARK,MN,44.8338,-92.9932,63.151.29.12 +PL,GDANSK,"",54.35,18.67,2.22.52.102 +US,WYNNE,AR,35.2584,-90.8369,173.197.194.166 +US,CASSELBERRY,FL,28.6630,-81.3122,23.33.186.101 +US,PIKESVILLE,MD,39.3860,-76.7222,96.6.47.120 +TW,TAOYUAN,"",24.27,121.25,203.69.138.118 +AT,HEIDENREICHSTEIN,"",48.87,15.12,195.145.147.108 +CN,HUAIHUA,HN,27.55,109.95,72.246.191.16 +RU,LENIN,"",48.30,40.88,213.248.108.233 +US,WINNETKA,CA,34.2090,-118.5753,184.87.195.99 +US,STIGLER,OK,35.2928,-95.0844,174.76.226.110 +US,GREENCOVESPRINGS,FL,29.9530,-81.7369,184.51.145.7 +AR,MARGARITA,"",-31.70,-61.65,190.98.167.220 +US,CLEMENTON,NJ,39.8055,-74.9997,184.26.44.38 +US,DARBY,PA,39.9168,-75.2677,184.26.44.40 +US,CARLYLE,IL,38.5905,-89.3709,23.63.227.214 +RU,IZHEVSK,"",56.85,53.23,92.122.215.67 +US,RANCHOCORDOVA,CA,38.5857,-121.2825,96.17.12.44 +US,WATERTOWN,MA,42.3708,-71.1833,184.29.107.20 +US,KEARNEY,NE,40.7317,-98.9983,184.85.215.165 +AU,BRAESIDE,VIC,-37.98,145.12,184.84.221.116 +GQ,MALABO,"",3.75,8.78,2.20.44.118 +US,TWENTYNINEPALMS,CA,34.1466,-115.8753,184.50.26.179 +RW,KIGALI,"",-1.96,30.04,41.193.163.45 +US,LAMIRADA,CA,33.9172,-118.0114,184.50.26.179 +US,HOTSPRINGSNATIONALPARK,AR,34.5331,-93.0035,66.171.227.82 +US,STERLINGHEIGHTS,MI,42.5651,-83.0651,23.67.60.222 +DE,LUE,BY,49.58,12.15,2.16.217.211 +US,JOHNSTOWN,PA,40.3358,-78.9111,23.192.161.16 +US,PAOLI,PA,40.0429,-75.48,23.67.242.139 +US,BLAIR,NE,41.5565,-96.2448,23.79.255.149 +US,HUNTERSVILLE,NC,35.4108,-80.8434,209.18.41.27 +TH,NAKHONRATCHASIMA,"",14.97,102.12,61.19.12.164 +AU,BUNBURY,WA,-33.33,115.63,202.7.177.76 +GB,BROMSGROVE,EN,52.33,-2.07,23.67.255.158 +DE,HALLE,ST,51.50,12.00,80.157.150.192 +CU,HAVANA,"",23.13,-82.36,72.246.65.38 +US,FONDDULAC,WI,43.7436,-88.3886,184.85.215.165 +US,ORCHARDPARK,NY,42.7477,-78.7413,107.14.38.227 +CN,JIAXING,ZJ,30.77,120.75,72.246.191.19 +US,EDINBURG,TX,26.3620,-98.1616,184.26.93.116 +US,SHAWANO,WI,44.7924,-88.6722,23.74.8.24 +US,COTTONWOOD,AZ,34.6334,-112.1256,63.226.34.174 +CN,XINING,QH,36.62,101.77,72.246.191.19 +US,VENTURA,CA,34.3488,-119.3304,23.216.10.54 +US,HILLSBOROUGH,NJ,40.4995,-74.629,184.26.44.38 +US,PRYOR,OK,36.2697,-95.3138,165.254.138.165 +US,LAKEZURICH,IL,42.2010,-88.0504,107.14.38.224 +US,LAPLACE,LA,30.1499,-90.4621,184.84.180.68 +US,FEASTERVILLETREVOSE,PA,40.1496,-74.9856,23.67.242.139 +US,YONKERS,NY,40.9431,-73.8809,184.51.125.68 +US,BENTONHARBOR,MI,42.1150,-86.3578,96.17.9.8 +GB,CARDIFF,WA,51.50,-3.20,184.27.139.24 +US,BLUERIDGE,GA,34.7762,-84.2671,184.28.127.55 +US,BREMERTON,WA,47.5964,-122.6209,23.212.59.85 +IN,RAJAHMUNDRY,AP,16.98,81.78,23.57.69.157 +US,HACKETTSTOWN,NJ,40.8661,-74.8361,184.26.44.38 +US,SANFERNANDO,CA,34.2870,-118.435,184.50.26.179 +US,ODELL,OR,45.5565,-121.4733,184.27.179.187 +US,TWINFALLS,ID,42.2444,-114.6624,192.80.13.108 +SR,PARAMARIBO,"",5.83,-55.17,23.74.2.12 +RU,STAVROPOL,"",53.52,49.41,2.21.240.40 +US,SEFFNER,FL,27.9906,-82.2811,23.33.186.101 +AM,EREVAN,"",40.18,44.50,80.239.237.230 +CN,WUZHOU,GX,23.48,111.32,192.80.13.108 +IT,BOLOGNA,"",44.48,11.33,2.18.240.95 +US,PAWTUCKET,RI,41.8706,-71.3891,72.246.43.237 +JP,TAISEI,17,36.45,136.47,23.3.104.16 +IT,ALESSANDRIA,"",44.90,8.62,195.22.200.243 +GB,BAGULEY,EN,53.38,-2.25,88.221.87.112 +US,SAINTJOHNS,AZ,34.4981,-109.2419,184.85.249.14 +US,ATASCADERO,CA,35.4482,-120.6696,23.216.10.54 +DE,HAU,NW,51.15,6.27,23.14.94.220 +US,SHELBYVILLE,TN,35.4645,-86.4889,23.79.240.36 +CA,SCARBOROUGH,ON,43.75,-79.20,192.204.11.226 +US,GENESEO,NY,42.7919,-77.7757,107.14.38.217 +US,PERRYSBURG,OH,41.5209,-83.5671,23.74.8.8 +US,SANTANVALLEY,AZ,33.3064,-111.8406,23.5.164.143 +DE,HAUPT,NW,51.80,8.62,2.20.142.166 +DE,SCHWEDT,BB,53.07,14.30,92.122.207.164 +TZ,DARESSALAAM,"",-6.80,39.28,92.122.127.109 +FR,CHAMBERY,"",45.57,5.93,88.221.83.122 +US,SPARTA,IL,38.1133,-89.7153,23.63.227.227 +CA,GRANDEPRAIRIE,AB,55.17,-118.80,184.27.179.165 +US,STURGEONBAY,WI,44.7888,-87.4464,184.85.215.165 +US,SALINAS,CA,36.6625,-121.6487,69.22.154.219 +JP,OKINAWA,47,26.34,127.80,184.51.199.145 +US,WHITEFISH,MT,48.5029,-114.5829,107.14.32.228 +BR,BARRAMANSA,RJ,-22.53,-44.18,200.174.107.50 +US,NAMPA,ID,43.5891,-116.6159,192.80.13.108 +MX,MORELIA,MIC,19.70,-101.12,23.215.15.22 +US,ADRIAN,MI,41.9076,-84.0644,165.254.207.111 +US,BOAZ,AL,34.2012,-86.1667,23.79.240.36 +US,GARLAND,TX,32.9284,-96.6206,23.215.15.22 +PH,PAMPANGA,"",15.18,120.54,23.2.16.104 +CZ,KARVINA,"",49.87,18.55,23.74.24.69 +US,SAVANNAH,GA,32.0721,-81.0952,72.246.247.5 +US,PAMPA,TX,35.4253,-100.8386,23.215.15.9 +HN,TEGUCIGALPA,"",14.10,-87.22,165.254.205.13 +US,NEWTON,KS,38.0076,-97.2953,23.215.15.9 +CA,MONTROYAL,QC,45.52,-73.65,72.246.43.232 +DK,AALBORG,"",57.05,9.93,213.155.156.206 +AT,SCHWARZACH,"",47.45,9.75,2.16.217.206 +PL,GORZOW,"",51.03,18.43,80.239.222.169 +US,OFALLON,MO,38.8357,-90.7206,96.17.14.16 +US,KENT,WA,47.3814,-122.2339,184.84.180.101 +US,WANTAGH,NY,40.6810,-73.5104,184.26.44.38 +US,UNIONTOWN,PA,39.8676,-79.7351,184.28.17.76 +US,BROKENBOW,OK,34.0533,-94.7758,23.215.15.32 +US,RAMSEY,NJ,41.0594,-74.1457,184.51.125.68 +US,FRAZIERPARK,CA,34.9441,-119.1553,184.50.26.201 +US,YPSILANTI,MI,42.1967,-83.6251,23.63.227.227 +MP,SAIPAN,"",16.0000,145.5003,63.243.241.248 +US,MACCLENNY,FL,30.2647,-82.1181,23.79.240.37 +ID,TIME,"",0.15,101.25,23.15.10.106 +BG,VARNA,"",43.22,27.92,23.62.237.133 +US,OILCITY,PA,41.4798,-79.6741,165.254.144.25 +DK,EJBY,"",55.43,9.95,213.155.156.207 +US,HUDSON,OH,41.2467,-81.4522,63.216.54.236 +AL,TIRANA,"",41.33,19.82,85.205.31.88 +US,ANNISTON,AL,33.6763,-85.9351,72.246.65.37 +IT,ANCONA,"",43.63,13.50,193.45.15.198 +US,CABERY,IL,40.9777,-88.1923,65.113.249.11 +CH,REINACH,"",47.27,8.18,23.14.94.224 +US,NEWTOWN,PA,40.2672,-74.9516,184.26.44.38 +US,CRESCENTCITY,CA,41.7011,-123.7874,184.27.179.181 +US,COUNTRYCLUBHILLS,IL,41.5589,-87.7259,23.67.60.223 +US,NASHUA,NH,42.7370,-71.4488,23.67.244.248 +US,CAMDEN,NJ,39.9258,-75.12,23.67.242.156 +US,SHARPSBURG,GA,33.3810,-84.6468,23.79.240.36 +JP,OITA,44,33.24,131.61,23.15.1.67 +CN,JINHUA,ZJ,29.12,119.65,72.246.191.19 +US,SPRINGVALLEY,CA,32.7449,-116.9981,23.216.10.78 +US,LAVERNE,CA,34.1693,-117.7375,107.14.44.185 +US,PACIFIC,WA,47.2721,-122.2428,23.212.59.63 +DZ,OUARGLA,"",31.96,5.33,79.140.94.254 +AU,LOWERPLENTY,VIC,-37.73,145.12,184.84.221.116 +CO,PEREIRA,"",4.82,-75.70,23.74.2.12 +CA,CORNWALL,ON,45.02,-74.73,67.69.197.95 +DE,WEINBACH,HE,50.43,8.30,195.145.147.101 +US,LAKEVILLA,IL,42.4132,-88.0615,23.67.60.217 +US,AVONDALE,AZ,33.4440,-112.3152,184.50.26.179 +TC,GRANDTURK,"",21.47,-71.13,23.74.2.7 +NO,HALDEN,"",59.15,11.38,2.21.240.61 +IN,ERNAKULAM,KL,9.98,76.28,2.21.240.40 +CA,MOOSEJAW,SK,50.40,-105.55,184.150.187.229 +DZ,ALGER,"",36.76,3.05,79.140.94.254 +US,HARTWELL,GA,34.3416,-82.926,23.79.240.36 +RU,ASTRAKHAN,"",57.82,51.26,2.21.240.40 +US,GLENNVILLE,GA,31.9485,-81.9795,63.216.54.231 +AU,ARTARMON,NSW,-33.82,151.18,23.62.8.21 +US,MISSIONHILLS,CA,34.2663,-118.4599,184.50.26.179 +US,WAYNESBORO,VA,38.0936,-78.8951,184.26.44.40 +US,NOVATO,CA,38.1262,-122.559,23.61.195.165 +US,MARSHALL,MO,39.0733,-93.1988,23.215.15.9 +US,ALTOONA,PA,40.5542,-78.4349,184.28.17.55 +DE,ESSEN,NW,51.45,7.02,80.157.170.154 +US,LOMBARD,IL,41.8742,-88.0172,23.67.60.220 +GB,GLOUCESTER,EN,51.83,-2.25,95.101.2.122 +US,NATICK,MA,42.2868,-71.3531,23.67.242.139 +US,ENGLISHTOWN,NJ,40.2769,-74.3692,184.26.44.38 +US,FRESHMEADOWS,NY,40.7391,-73.7931,184.26.44.42 +CA,BARRIE,ON,44.38,-79.70,209.148.192.61 +PT,PORTO,"",41.15,-8.62,212.113.165.106 +US,BRIDGEWATER,NJ,40.5945,-74.6244,184.26.44.38 +US,ALVIN,TX,29.4018,-95.2649,23.212.53.64 +US,INOLA,OK,36.1597,-95.5177,23.74.8.8 +US,JUPITER,FL,26.9429,-80.1337,184.25.157.155 +CO,MEDELLIN,"",6.25,-75.58,23.74.2.12 +US,TRAVERSECITY,MI,44.7515,-85.6942,23.63.227.214 +US,LIBBY,MT,48.3326,-115.3444,184.27.179.179 +BO,SANTACRUZDELASIERRA,"",-17.80,-63.17,200.91.22.125 +US,SOMERSET,KY,37.0813,-84.4741,107.14.38.227 +AU,FRANKSTON,VIC,-38.13,145.12,165.254.45.32 +US,ROCKINGHAM,NC,34.9229,-79.8048,209.18.41.23 +US,SALISBURY,MD,38.3511,-75.5976,23.192.161.16 +US,SCARSDALE,NY,40.9890,-73.793,184.51.125.79 +US,BELAIR,MD,39.5372,-76.3514,23.192.161.16 +US,RIORANCHO,NM,35.2441,-106.7528,63.226.34.173 +UA,POLTAVA,"",49.58,34.57,92.122.215.67 +IR,FARS,"",35.18,59.38,96.17.182.130 +US,PANAMACITYBEACH,FL,30.2113,-85.7957,23.79.240.48 +CZ,OSTRAVA,"",49.83,18.28,23.62.237.138 +US,ABBEVILLE,SC,34.1653,-82.3751,204.2.243.143 +US,GAS,KS,37.9244,-95.3395,23.77.234.11 +US,GULFPORT,MS,30.3896,-89.0988,23.212.53.75 +DE,DUISBURG,NW,51.43,6.75,80.157.170.221 +US,LEAKESVILLE,MS,31.1153,-88.5168,184.51.35.226 +UA,KYYIV,"",50.43,30.52,92.122.215.89 +AU,BLACKTOWN,NSW,-33.77,150.92,23.62.8.25 +PH,CEBU,"",10.31,123.89,202.78.83.175 +US,BARTLESVILLE,OK,36.7524,-96.0733,63.235.21.140 +US,WOBURN,MA,42.4867,-71.1543,184.25.109.196 +ID,CIREBON,"",-6.73,108.57,118.98.37.103 +US,COCOA,FL,28.3696,-80.7478,184.51.145.7 +US,CASAGRANDE,AZ,32.8794,-111.7568,184.50.26.201 +US,MARKSVILLE,LA,31.1750,-91.9985,96.17.153.162 +RU,DELTA,"",46.64,48.05,2.22.52.105 +IN,PATNA,KA,12.77,74.87,96.17.182.136 +US,HELENA,MT,46.5543,-112.1629,165.254.1.206 +US,MCALLEN,TX,26.2183,-98.2399,184.26.93.111 +CA,ESTEVAN,SK,49.15,-103.00,184.150.187.229 +IT,PESCARA,"",42.75,13.27,95.101.34.105 +SE,LULEA,BD,65.58,22.15,82.96.58.102 +RU,SEVEROKURILSK,"",50.68,156.12,96.7.251.97 +JP,OKAYAMA,33,34.65,133.92,202.229.2.213 +US,PALATKA,FL,29.7389,-81.6715,23.79.240.36 +US,WESTCHICAGO,IL,41.9000,-88.2142,107.14.38.217 +RO,RESITA,"",45.30,21.90,81.196.26.237 +US,CROSSVILLE,TN,35.9347,-85.0211,23.215.15.9 +US,YORBALINDA,CA,33.8876,-117.8023,184.87.195.109 +US,SYKESVILLE,MD,39.3995,-76.9748,23.192.161.21 +US,HANA,HI,20.7422,-156.1196,23.216.10.78 +US,NEWPALTZ,NY,41.7512,-74.0601,24.143.199.156 +GB,POOLE,EN,50.72,-2.00,23.67.255.106 +RO,IASI,"",45.77,24.93,81.196.26.231 +US,SOUTHHOLLAND,IL,41.5964,-87.6014,107.14.38.217 +US,WARRENTON,VA,38.6876,-77.819,184.26.44.42 +US,GILMER,TX,32.7226,-94.9896,23.212.53.64 +US,CHOCTAW,OK,35.4577,-97.2616,23.74.8.8 +IN,MANGALORE,KA,12.86,74.84,23.57.76.20 +US,WALLINGTON,NJ,40.8534,-74.1065,23.67.242.139 +AT,WEISSACH,"",47.47,12.52,195.145.147.101 +US,MABLETON,GA,33.8161,-84.553,23.212.53.64 +CR,HEREDIA,"",10.00,-84.12,23.215.15.22 +US,OTTUMWA,IA,41.0803,-92.3054,65.113.249.8 +US,VERMILION,OH,41.3884,-82.3643,107.14.38.217 +HU,GYOR,"",47.68,17.63,23.14.94.220 +IN,PATEL,JK,32.98,74.86,23.57.69.157 +JE,SAINTHELIER,"",49.18,-2.10,195.59.54.141 +AU,ASHFIELD,NSW,-33.88,151.12,165.254.45.13 +US,FORESTHILLS,NY,40.7228,-73.845,24.143.199.188 +SA,LINE,"",28.76,43.74,79.140.94.243 +IN,LUCKNOW,UP,26.85,80.92,23.57.69.156 +US,SUNBURY,OH,40.2799,-82.849,107.14.38.217 +CA,LABAIE,QC,48.33,-70.87,67.69.197.92 +US,SARANACLAKE,NY,44.3202,-74.2149,107.14.38.227 +KZ,TALDYKORGAN,"",45.02,78.37,23.14.94.224 +US,CATONSVILLE,MD,39.2711,-76.7461,23.192.161.21 +US,DAMASCUS,MD,39.2916,-77.2137,184.27.45.150 +AR,SANMIGUEL,"",-34.52,-58.78,200.123.201.219 +JP,YAMAGATA,06,38.25,140.34,202.229.2.212 +US,NORTHPORT,FL,27.0874,-82.2022,192.204.11.226 +RU,SARATOV,"",51.57,46.03,2.21.240.61 +GH,ACCRA,"",5.55,-0.22,23.212.108.28 +US,FAIRBURN,GA,33.5864,-84.6255,23.79.240.37 +CZ,BRNO,"",49.20,16.63,23.62.237.135 +US,ELSOBRANTE,CA,37.9619,-122.283,96.17.12.48 +US,STEPHENVILLE,TX,32.2465,-98.2492,23.215.15.22 +US,SYCAMORE,IL,42.0146,-88.6891,23.67.60.223 +US,WOODLANDHILLS,CA,34.1552,-118.5942,184.50.26.179 +BR,CANOAS,MG,-21.42,-46.97,187.59.4.154 +IL,PETACHTIKVAH,"",32.09,34.87,212.25.69.142 +US,MURRELLSINLET,SC,33.5501,-79.0592,69.31.132.226 +US,COLONIALHEIGHTS,VA,37.2887,-77.3954,184.28.17.76 +US,HOPKINS,MN,44.9540,-93.4312,165.254.96.242 +GB,WALTON,EN,51.38,-0.43,23.67.255.158 +US,DEXTER,MO,36.7491,-89.9236,184.28.17.55 +US,MARICOPA,AZ,33.0567,-112.0467,63.226.34.176 +US,WESTHILLS,CA,34.2068,-118.6798,184.50.26.179 +US,HILLSDALE,MI,41.8825,-84.6162,23.67.60.223 +CZ,LIBEREC,"",50.76,15.07,92.122.189.85 +BR,NATAL,RN,-5.78,-35.22,190.98.142.115 +PK,WAN,"",32.42,71.69,23.75.23.140 +RO,CRAIOVA,"",44.32,23.80,81.196.26.231 +US,HARTVILLE,OH,40.9665,-81.3038,107.14.38.217 +US,BEAVER,WV,37.7672,-81.0206,184.28.17.76 +US,BOLINGBROOK,IL,41.6956,-88.0759,23.67.60.223 +US,LYNBROOK,NY,40.6573,-73.674,23.67.242.139 +HU,DUNAUJVAROS,"",46.98,18.93,23.14.94.220 +TR,INCESU,"",39.92,32.88,193.45.15.198 +CA,SELKIRK,MB,50.15,-96.88,23.74.8.8 +US,HOWE,IN,41.7293,-85.4292,205.185.195.170 +US,CHERRYHILL,NJ,39.9312,-75.0244,23.67.242.139 +JP,TSUKUBA,08,36.08,140.12,23.15.1.55 +US,ALLENDALE,MI,42.9767,-85.9382,165.254.207.111 +SE,NORRKOPING,E,58.60,16.18,213.155.156.207 +US,OMAK,WA,48.4274,-119.5241,184.27.179.159 +US,ESCALON,CA,37.8207,-121.0167,96.17.12.48 +US,RIDGEWOOD,NY,40.7008,-73.8892,24.143.199.156 +US,RESEDA,CA,34.2011,-118.5406,184.50.26.204 +ID,BANJARMASIN,"",-4.75,104.55,23.0.162.54 +US,SEABROOK,TX,29.5802,-95.0274,23.212.53.75 +BR,PALMAS,TO,-10.42,-48.44,189.72.175.118 +US,CANONCITY,CO,38.5330,-105.3899,107.14.32.235 +US,CALDWELL,TX,30.5405,-96.7258,23.215.15.22 +FR,REST,"",47.92,-4.20,77.67.27.250 +MX,CAMPECHE,CAM,19.85,-90.53,23.212.53.75 +US,NORRISTOWN,PA,40.1271,-75.3202,184.26.44.38 +JP,GIFU,21,35.42,136.75,117.104.139.136 +US,KERNERSVILLE,NC,36.1188,-80.075,209.18.41.23 +US,POUGHKEEPSIE,NY,41.7144,-73.9069,184.26.44.42 +US,EULESS,TX,32.8604,-97.0691,213.155.156.206 +US,FOUNTAINHILLS,AZ,33.5988,-111.7413,184.50.26.204 +US,REIDSVILLE,NC,36.3355,-79.6561,209.18.41.27 +PL,BYDGOSZCZ,"",53.15,18.00,2.22.52.101 +US,WAXAHACHIE,TX,32.3150,-96.7926,96.16.7.101 +US,WIGGINS,MS,30.8678,-89.1157,96.17.153.162 +RE,LEPORT,"",-20.92,55.30,81.52.201.77 +US,DERRY,NH,42.8895,-71.2818,184.25.109.200 +BO,COCHABAMBA,"",-17.38,-66.15,72.246.65.26 +PL,KOSZALIN,"",54.20,16.18,2.22.52.101 +US,MUKWONAGO,WI,42.8738,-88.3526,107.14.38.218 +DE,SCHWERIN,MV,53.63,11.38,80.157.170.221 +LA,VIENTIANE,"",17.97,102.60,23.61.195.149 +JP,OMIHACHIMAN,25,35.14,136.08,202.229.2.227 +US,AUBURNDALE,FL,28.0903,-81.8298,23.33.186.101 +CA,VERDUN,QC,45.45,-73.57,204.93.33.141 +HU,KISVARDA,"",48.22,22.08,80.239.222.167 +LY,TRIPOLI,"",32.89,13.18,79.140.94.234 +US,BELLFLOWER,CA,33.8879,-118.1274,23.216.10.54 +US,REISTERSTOWN,MD,39.4886,-76.8057,23.192.161.21 +US,KEYWEST,FL,24.5796,-81.6849,23.79.240.48 +ID,TIMUR,"",-8.18,131.08,96.17.180.166 +US,MUNFORDVILLE,KY,37.3145,-85.9322,23.220.100.223 +US,WATERVLIET,NY,42.7341,-73.7188,23.215.15.9 +US,PARKCITY,UT,40.6558,-111.5034,23.61.195.165 +US,PORTALES,NM,34.1669,-103.2665,96.17.177.63 +US,COLLEGEVILLE,PA,40.1903,-75.4384,184.26.44.38 +US,SOUTHLAKETAHOE,CA,38.8829,-120.0344,23.216.10.54 +VE,MERIDA,"",8.60,-71.14,23.74.2.7 +US,LADERARANCH,CA,33.5682,-117.6365,184.50.26.194 +US,GAFFNEY,SC,35.0161,-81.6141,23.79.240.36 +US,LAMARQUE,TX,29.3673,-94.9891,23.212.53.75 +VG,ROADTOWN,"",18.42,-64.62,23.33.186.134 +RU,ARKHANGELSK,"",55.48,36.40,2.21.240.61 +ZM,LUSAKA,"",-15.42,28.28,41.193.163.53 +US,CYPRESS,TX,29.9695,-95.6976,96.17.163.165 +US,PURCELLVILLE,VA,39.1720,-77.7306,184.27.45.150 +US,PITTSFIELD,MA,42.4608,-73.282,107.14.38.218 +HU,SZOLNOK,"",47.18,20.20,23.62.237.135 +US,BRODHEADSVILLE,PA,40.9370,-75.4125,184.26.44.40 +IN,KALYAN,MH,19.25,73.15,23.211.135.66 +DK,BALLERUP,"",55.73,12.37,23.65.29.106 +US,ARVADA,CO,39.8028,-105.0869,63.235.21.147 +US,SAINTCLAIRSHORES,MI,42.4633,-82.9002,23.67.60.220 +KR,ILSAN,"",38.18,127.82,125.56.214.147 +US,LOGANSPORT,IN,40.8028,-86.3678,23.67.60.222 +US,CHARLEVOIX,MI,45.2393,-85.3038,23.63.227.214 +ID,BANDUNG,"",-6.90,107.60,23.0.162.54 +US,LOGANVILLE,GA,33.8218,-83.8917,72.246.65.23 +US,MACUNGIE,PA,40.5204,-75.5692,184.26.44.38 +US,SANDSPRINGS,OK,36.1933,-96.1589,165.254.137.75 +US,BALDWIN,NY,40.6539,-73.609,23.67.242.139 +US,SANDIMAS,CA,34.1088,-117.8082,23.216.10.78 +NZ,PAPATOETOE,"",-36.98,174.85,219.88.186.164 +FI,OULU,"",65.02,25.47,2.21.240.40 +DE,HERZOGENAURACH,BY,49.55,10.88,84.53.146.39 +CN,CHANGZHOU,JS,31.78,119.97,184.50.87.178 +US,JERSEYSHORE,PA,41.4260,-77.4189,23.192.161.21 +US,GROVES,TX,29.9495,-93.9207,107.14.36.199 +CA,YORKTON,SK,51.22,-102.47,184.150.187.229 +US,SARATOGASPRINGS,NY,43.0842,-73.7411,209.18.41.23 +US,BUFFALOGROVE,IL,42.1650,-87.9695,107.14.38.218 +BR,FOZDOIGUACU,PR,-25.55,-54.58,187.59.4.147 +US,KILMARNOCK,VA,37.7427,-76.3858,208.185.55.117 +US,CUSTER,SD,43.6653,-103.7669,23.63.227.227 +US,KEWANEE,IL,41.2504,-89.9568,23.67.60.220 +RO,SLATINA,"",44.43,24.37,81.196.26.236 +US,ELIZABETHTOWN,KY,37.7021,-85.8419,23.220.100.223 +US,ROBERT,LA,30.5167,-90.3282,96.17.153.157 +US,CALEXICO,CA,32.6882,-115.5488,23.215.15.9 +JP,MITO,08,36.37,140.47,72.246.191.19 +DE,WIESBADEN,HE,50.08,8.25,23.14.94.228 +US,ORION,IL,41.3669,-90.3966,23.74.8.8 +NO,GREAKER,"",59.27,11.03,213.155.156.212 +CR,SANPEDRO,"",9.93,-84.05,72.164.253.83 +US,CASTROVILLE,TX,29.3805,-98.9015,107.14.43.29 +US,ABINGDON,VA,36.7393,-82.0092,23.67.60.222 +US,MILLBURN,NJ,40.7229,-74.3006,23.67.242.156 +CA,QUEBEC,QC,46.80,-71.25,67.69.197.95 +US,PALOSHILLS,IL,41.7012,-87.8574,23.67.60.217 +US,GLENROSE,TX,32.2052,-97.8091,205.185.195.170 +US,CHENEY,WA,47.4110,-117.6288,206.104.149.133 +US,FRISCO,TX,33.1507,-96.8235,184.28.23.4 +US,ARTESIA,CA,33.8679,-118.081,23.216.10.78 +US,ROCKLEDGE,FL,28.2781,-80.7792,23.34.56.147 +US,SCRANTON,PA,41.4088,-75.6626,23.192.161.21 +BR,CASCAVEL,PR,-24.95,-53.47,187.59.4.154 +US,NEWIBERIA,LA,29.9366,-91.8695,96.17.153.157 +US,ARMONK,NY,41.1347,-73.7005,23.67.242.139 +US,FORTMILL,SC,35.0493,-80.9623,184.51.35.226 +US,READING,PA,40.3659,-75.9566,23.192.161.16 +US,MATTOON,IL,39.5101,-88.3823,205.185.195.170 +RU,VOLGA,"",57.95,38.40,213.200.109.183 +NO,DRAMMEN,"",59.74,10.21,213.155.156.212 +US,ELSEGUNDO,CA,33.9182,-118.4042,184.50.26.179 +US,EGYPT,TX,29.4044,-96.2367,23.212.53.64 +IR,KARAJ,"",35.72,51.11,96.17.182.136 +NZ,PALMERSTONNORTH,"",-40.35,175.62,219.88.186.167 +ID,MAGELANG,"",-7.47,110.22,23.0.162.46 +US,EAGLEMOUNTAIN,UT,40.3099,-111.9316,184.50.26.179 +US,BULVERDE,TX,29.7881,-98.4616,184.26.93.116 +CH,SANKTGALLEN,"",47.47,9.40,193.247.167.214 +IN,RAJKOT,GJ,22.30,70.78,23.211.135.66 +US,SAVAGE,MN,44.7628,-93.362,204.93.47.216 +US,ALTADENA,CA,34.1951,-118.14,63.217.232.17 +RO,BACAU,"",46.57,26.90,81.196.26.231 +DE,MAUER,BW,49.34,8.80,195.95.193.147 +PL,LECZNA,"",52.42,20.72,2.22.52.109 +CZ,TEPLICE,"",50.63,13.83,23.74.24.66 +US,HILLAFB,UT,41.1284,-111.9912,184.84.180.98 +US,SPRINGTOWN,TX,32.9715,-97.6513,23.212.53.64 +US,ROSELLE,NJ,40.6527,-74.2601,184.26.44.38 +SE,LYCKSELE,AC,64.60,18.67,2.21.240.61 +VN,QUANGTRUNG,"",20.70,105.37,23.76.205.111 +US,CERRITOS,CA,33.8673,-118.0676,184.50.26.194 +US,BETHLEHEM,PA,40.5862,-75.372,184.27.45.150 +US,PRICE,UT,39.5589,-110.9112,23.215.15.9 +US,OAKRIDGE,NC,36.1724,-79.9835,209.18.41.27 +FR,BELFORT,"",47.63,6.87,2.16.117.200 +US,LEHIGHACRES,FL,26.5583,-81.6174,23.212.53.75 +US,HESPERIA,CA,34.4264,-117.3001,23.216.10.54 +US,PENNSVILLE,NJ,39.6375,-75.5059,23.192.161.30 +IT,RIPESANGINESIO,"",43.15,13.37,95.101.34.109 +FR,LESMINIMES,"",43.62,1.43,2.16.117.185 +US,LAPUENTE,CA,34.0289,-117.9371,23.216.10.78 +MY,SABAH,"",3.77,100.98,203.106.85.4 +US,SUNVALLEY,CA,34.2294,-118.357,63.233.112.196 +US,PLAYADELREY,CA,33.9505,-118.4382,23.216.10.54 +CA,DUNCAN,BC,48.78,-123.70,184.27.179.159 +US,MAPLEHEIGHTS,OH,41.4092,-81.5624,96.17.9.14 +GB,GUILDFORD,EN,51.22,-0.57,88.221.87.94 +TH,PAKKRED,"",13.92,100.50,110.164.11.181 +US,ELCAMPO,TX,29.1916,-96.2212,184.28.23.24 +US,ROWLETT,TX,32.9026,-96.5636,23.5.164.143 +US,WOODVILLE,TX,30.7643,-94.4448,65.116.149.89 +US,OLIVEHURST,CA,39.0904,-121.5521,23.212.52.79 +CA,LENNOXVILLE,QC,45.37,-71.87,72.246.43.215 +US,WINFIELD,WV,38.5058,-81.9328,184.27.45.150 +US,MAHWAH,NJ,41.0818,-74.1862,165.254.35.182 +US,RAMONA,CA,33.0538,-116.8517,173.223.52.67 +US,REHOBOTH,MA,41.8440,-71.246,184.25.109.200 +US,MANISTIQUE,MI,46.1571,-86.3397,184.85.215.170 +US,LARGO,FL,27.9154,-82.8023,192.204.82.239 +ES,BASAURI,"",43.02,-2.40,92.122.188.161 +US,WALLAWALLA,WA,46.1270,-118.3596,184.27.179.187 +US,SCOTTSVILLE,KY,36.7794,-86.196,63.216.54.236 +US,MANASSAS,VA,38.7657,-77.4852,23.192.161.16 +IN,GOLD,JK,33.59,74.14,96.17.182.130 +US,SANMARINO,CA,34.1223,-118.1135,23.215.15.9 +SE,SOLNA,AB,59.37,18.02,2.21.240.40 +BG,PERNIK,"",42.60,23.03,2.20.45.104 +JP,HIROSHIMA,34,34.40,132.45,23.3.74.113 +GB,EDINBURGH,SC,55.95,-3.20,88.221.87.94 +MX,NUEVOLAREDO,TAM,27.50,-99.52,23.5.164.146 +US,GLENWOOD,IA,41.0322,-95.6979,23.77.234.11 +US,THECOLONY,TX,33.0886,-96.9013,184.28.23.24 +HU,GODOLLO,"",47.60,19.37,23.14.94.220 +US,LLANO,TX,30.6126,-98.6923,23.215.15.9 +US,NEWALBANY,IN,38.2909,-85.8472,23.220.100.224 +US,THOUSANDOAKS,CA,34.1707,-118.8364,184.50.26.179 +US,DECATUR,IL,39.8055,-88.9128,23.67.60.220 +CR,ALAJUELA,"",10.02,-84.22,23.74.2.12 +US,HOLLAND,MI,42.7878,-86.1086,23.63.227.223 +BS,NASSAU,"",25.08,-77.35,72.164.253.83 +SE,VASTERAS,U,59.62,16.55,2.21.240.61 +RO,SLOBOZIA,"",44.38,25.93,72.246.43.237 +US,BARTONSVILLE,PA,41.0176,-75.2939,204.94.155.231 +GB,BRADFORD,EN,53.78,-1.75,88.221.87.94 +US,WHITESBURG,KY,37.1283,-82.8498,63.151.29.12 +US,STEVENSPOINT,WI,44.5531,-89.5186,65.113.249.11 +US,MILLBRAE,CA,37.5972,-122.4192,96.17.12.44 +VU,PORTVILA,"",-17.73,168.32,23.62.8.25 +US,ROCKWELL,NC,35.5293,-80.4409,209.18.41.27 +US,JEMISON,AL,32.9898,-86.6799,184.51.35.215 +US,EDENPRAIRIE,MN,44.8655,-93.4304,23.215.15.22 +NO,MANGER,"",60.77,5.35,213.155.156.212 +US,MCCALLA,AL,33.3452,-87.0035,23.220.100.224 +CG,BRAZZAVILLE,"",-4.26,15.28,95.101.34.109 +US,EDINBORO,PA,41.8735,-80.1661,184.26.44.38 +US,WOODDALE,IL,41.9645,-87.9808,23.67.60.220 +US,ENCINITAS,CA,33.0368,-117.2914,63.235.21.147 +US,ERLANGER,KY,39.0170,-84.607,184.51.147.33 +US,LYNCHBURG,VA,37.3527,-79.1576,184.27.45.157 +US,LULING,TX,29.6952,-97.6509,107.14.36.199 +US,PRATTVILLE,AL,32.4989,-86.4129,64.86.201.121 +US,CULLMAN,AL,34.1748,-86.8225,23.5.164.143 +US,WHITEPLAINS,NY,41.0328,-73.7651,184.51.125.79 +US,WILDWOOD,NJ,38.9808,-74.8281,184.26.44.38 +EE,PARNU,"",58.37,24.51,2.21.240.40 +US,PRAIRIEDUSAC,WI,43.3094,-89.8029,184.85.215.170 +US,CHARLTONHEIGHTS,WV,38.1238,-81.2342,184.28.17.76 +US,GREENVALLEY,AZ,31.8307,-111.0345,63.226.34.174 +US,EATONTOWN,NJ,40.2996,-74.074,23.212.53.64 +US,HYANNIS,MA,41.6607,-70.2924,184.25.109.196 +US,BRAWLEY,CA,32.9870,-115.4637,63.235.21.141 +TR,SABANCI,"",37.48,39.35,2.20.142.166 +US,BROWNWOOD,TX,31.6193,-98.9922,23.215.15.22 +AT,MICHELDORF,"",47.87,14.13,46.33.70.104 +US,DAHLONEGA,GA,34.5608,-84.0088,63.216.54.216 +DE,MANHEIM,NW,50.88,6.60,23.14.94.224 +US,ESTHERVILLE,IA,43.3937,-94.7541,65.113.249.8 +TW,SHOUFENG,"",23.87,121.50,61.220.62.171 +US,LOCKHART,TX,29.8965,-97.6713,107.14.36.199 +US,RADFORD,VA,37.1746,-80.6425,96.6.47.106 +IN,SIKKA,GJ,22.43,69.83,23.57.69.157 +KZ,PETROPAVLOVSK,"",54.88,69.16,23.14.94.228 +US,KAYSVILLE,UT,41.0365,-111.927,23.61.195.166 +US,PONTIAC,MI,42.6705,-83.292,23.67.60.222 +US,FRAMINGHAM,MA,42.3203,-71.4404,184.29.107.20 +CA,AJAX,ON,43.85,-79.02,72.246.43.215 +US,HAYDEN,ID,47.7955,-116.5418,184.27.179.181 +US,VALLEJO,CA,38.1438,-122.2502,23.61.195.165 +FR,CROIX,"",49.80,2.98,95.100.171.16 +US,DELRIO,TX,29.8301,-100.8984,107.14.36.199 +KH,PREAH,"",13.60,105.07,23.76.205.111 +RU,KEMEROVO,"",55.33,86.08,2.21.240.61 +VN,DONGNAI,"",18.10,106.33,23.5.165.167 +MG,ANTANANARIVO,"",-18.92,47.52,81.52.201.98 +US,ETTERS,PA,40.1451,-76.7914,23.192.161.16 +US,MATHIS,TX,28.0654,-97.7489,184.26.93.111 +US,VALDESE,NC,35.7374,-81.5644,184.27.45.157 +GB,MIDDLESBROUGH,EN,54.57,-1.16,88.221.87.94 +RU,VLADIMIR,"",56.14,40.40,217.212.227.25 +FR,SUCYENBRIE,"",48.77,2.53,2.16.117.190 +US,RIDGEFIELDPARK,NJ,40.8547,-74.0203,23.67.242.139 +US,SURPRISE,AZ,33.6321,-112.3824,184.50.26.185 +US,BROOKFIELD,WI,43.0627,-88.099,107.14.38.227 +AU,SAINTLUCIA,QLD,-27.50,153.00,23.62.157.31 +US,MOUNTSTERLING,KY,38.0657,-83.9424,23.61.195.163 +US,BURNSVILLE,MN,44.7310,-93.293,23.67.60.222 +BA,ZENICA,"",43.89,18.31,23.14.94.220 +US,FLOURTOWN,PA,40.1083,-75.2168,184.27.45.157 +CA,PETERBOROUGH,ON,44.30,-78.33,72.246.43.237 +RU,BELGOROD,"",52.87,34.65,2.21.240.40 +US,LUTHERVILLETIMONIUM,MD,39.4394,-76.6555,23.192.161.21 +US,PORTMURRAY,NJ,40.7953,-74.9091,23.192.161.16 +ID,JEMBER,"",-8.17,113.70,23.0.162.54 +US,LIBERTY,NY,41.7928,-74.7401,184.26.44.42 +US,CUSHING,OK,35.9968,-96.7376,184.28.23.24 +AT,ENNSDORF,"",48.20,14.48,46.33.70.97 +GR,KOMOTINI,"",41.12,25.40,80.157.169.18 +US,ESSEXJUNCTION,VT,44.5358,-73.0548,184.25.109.200 +US,OCALA,FL,29.2239,-82.088,184.51.35.226 +US,ALMA,MI,43.3819,-84.6786,23.63.227.227 +US,PORTLAVACA,TX,28.5342,-96.663,23.215.15.9 +HU,GOD,"",47.70,19.13,23.14.94.220 +US,NORTHHIGHLANDS,CA,38.6687,-121.3891,96.17.12.48 +US,TUNKHANNOCK,PA,41.5722,-75.9275,184.26.44.42 +US,ALLISONPARK,PA,40.5779,-79.9517,184.27.45.157 +US,MONROEVILLE,PA,40.4264,-79.7596,96.6.47.120 +US,PEWAUKEE,WI,43.0807,-88.2675,107.14.38.218 +US,STREAMWOOD,IL,42.0230,-88.1742,23.67.60.220 +US,BATH,NY,42.3460,-77.3478,107.14.38.218 +JP,KOKURYO,13,35.65,139.57,96.7.251.95 +TR,BAHCELIEVLER,"",39.93,32.83,46.33.70.213 +RU,RYAZAN,"",55.67,36.67,213.155.156.212 +US,HORNITOS,CA,37.4864,-120.2361,165.254.144.32 +US,CHANNAHON,IL,41.4089,-88.1749,96.17.14.16 +US,PHILLIPSBURG,NJ,40.7083,-75.1472,23.67.242.139 +US,WINONA,MN,43.9823,-91.6349,184.51.147.6 +US,BASTROP,LA,32.8721,-91.912,23.5.164.143 +US,LEESBURG,FL,28.8097,-81.8939,184.25.157.169 +US,HANFORD,CA,36.2869,-119.6218,23.212.52.88 +DE,LEVERKUSEN,NW,51.03,7.00,92.122.215.67 +IN,ERODE,TN,11.35,77.73,117.239.240.96 +US,NAPOLEON,OH,41.4176,-84.1859,107.14.38.218 +US,KINGMAN,AZ,35.4636,-113.9441,184.85.249.14 +RO,TARGUJIU,"",45.05,23.28,81.196.26.236 +DE,FULDA,HE,50.55,9.67,80.157.150.197 +AU,PORTMELBOURNE,VIC,-37.83,144.93,150.101.152.249 +US,SALINA,KS,38.8424,-97.6193,23.77.234.35 +CH,OERLIKON,"",47.42,8.55,194.25.95.214 +US,FLAGSTAFF,AZ,35.4784,-111.738,24.143.194.216 +ES,MALAGA,"",36.72,-4.42,2.16.1.106 +US,COLLEGEPARK,MD,38.9974,-76.9284,184.27.45.150 +CN,WUXI,JS,31.58,120.29,117.103.188.218 +US,BOYNTONBEACH,FL,26.5253,-80.0668,184.28.184.6 +US,NORTHRICHLANDHILLS,TX,32.8656,-97.2164,23.215.15.22 +US,BLACKWOOD,NJ,39.7780,-75.0552,184.26.44.38 +US,MCHENRY,IL,42.3590,-88.2783,184.27.120.50 +US,DEERPARK,TX,29.7032,-95.1146,23.212.53.75 +US,MARRERO,LA,29.8286,-90.1189,96.17.153.157 +US,LOVINGTON,NM,32.9094,-103.4796,198.172.88.205 +CA,ORANGEVILLE,ON,43.92,-80.08,72.246.43.215 +CN,DONGYING,SD,37.46,118.49,173.223.52.67 +RO,BUZAU,"",45.15,26.83,88.221.93.157 +PK,ISAN,"",31.46,74.01,96.17.182.130 +ES,ALICANTE,"",38.35,-0.48,92.123.73.26 +US,MAYSLANDING,NJ,39.4502,-74.7366,184.26.44.38 +US,LENOIRCITY,TN,35.8295,-84.286,23.79.240.48 +US,AMERY,WI,45.3559,-92.3527,23.63.227.214 +US,SPENCER,MA,42.2477,-71.9927,63.141.200.241 +RU,KAMENSK,"",52.99,32.47,92.122.189.85 +US,GWYNNOAK,MD,39.3248,-76.7203,23.192.161.16 +US,WESTLEBANON,NH,43.6438,-72.295,23.192.161.21 +US,MAGNOLIA,AR,33.2253,-93.2572,23.5.164.143 +IN,MANIPALA,KA,13.35,74.78,23.57.69.159 +US,OSCEOLA,AR,35.6763,-90.0131,173.197.194.159 +US,LORTON,VA,38.6817,-77.2042,23.220.148.108 +US,SANTEE,CA,32.8510,-117.008,184.50.26.204 +US,KINGSTREE,SC,33.7042,-79.7562,209.18.41.23 +US,KERRVILLE,TX,30.0272,-99.1089,184.26.93.116 +US,BAINBRIDGE,GA,30.9045,-84.5727,184.28.127.55 +US,HALFMOONBAY,CA,37.4511,-122.4142,184.85.249.6 +FR,WOERTH,"",48.38,7.63,2.16.117.190 +US,SPANAWAY,WA,47.0761,-122.3963,23.212.59.63 +BR,FLORIANOPOLIS,SC,-27.58,-48.57,187.59.4.154 +ZA,BELLVILLE,"",-33.90,18.63,165.165.46.37 +US,WASHOUGAL,WA,45.6718,-122.2068,184.27.179.159 +US,ROUNDLAKE,IL,42.3442,-88.1158,107.14.38.224 +US,LYNCH,NE,42.8592,-98.4418,204.2.223.90 +US,LONGISLANDCITY,NY,40.7457,-73.9381,24.143.199.188 +US,RIVERVIEW,FL,27.8494,-82.3132,192.204.11.244 +US,SCHOFIELD,WI,44.9014,-89.5403,184.85.215.170 +US,ELYRIA,OH,41.3603,-82.1314,63.216.54.229 +US,GLENSFALLS,NY,43.3117,-73.645,107.14.38.217 +RU,STAR,"",53.62,34.15,80.239.237.84 +DE,WERDAU,SN,50.73,12.38,80.157.150.192 +US,ANKENY,IA,41.7301,-93.5923,23.79.255.149 +US,OWENSCROSSROADS,AL,34.6110,-86.4644,184.51.35.226 +US,ROCKYMOUNT,NC,35.9504,-77.6998,184.28.17.76 +US,HARRISON,OH,39.2734,-84.7476,184.51.147.33 +US,MINERVA,OH,40.7427,-81.0929,107.14.38.224 +US,SAYREVILLE,NJ,40.4595,-74.3616,184.51.125.68 +US,GRANBY,CO,40.0195,-105.8657,184.84.180.68 +US,OCOEE,FL,28.5761,-81.5328,23.34.56.142 +US,THIENSVILLE,WI,43.2173,-87.9347,107.14.38.218 +US,STOUGHTON,WI,42.9244,-89.2046,184.85.215.165 +US,WESTSACRAMENTO,CA,38.5921,-121.5456,23.61.195.149 +US,CALUMETCITY,IL,41.6123,-87.5504,23.67.60.222 +US,CHESWICK,PA,40.5780,-79.8433,23.192.161.21 +US,DUQUOIN,IL,38.0189,-89.2365,23.63.227.214 +PT,CORROIOS,"",38.63,-9.15,195.22.14.133 +US,CAPEGIRARDEAU,MO,37.3091,-89.5732,204.93.47.216 +US,COMBINEDLOCKS,WI,44.2639,-88.309,107.14.38.227 +US,GARDNER,MA,42.5847,-71.987,184.25.109.213 +US,DISTRICTHEIGHTS,MD,38.8541,-76.8832,184.27.45.157 +US,CORDOVA,TN,35.1578,-89.7651,23.79.240.36 +US,HERNANDO,MS,34.8026,-89.9999,23.79.240.48 +IN,BELGAUM,KA,15.87,74.50,23.57.76.18 +US,SELMA,CA,36.5405,-119.6527,23.212.52.88 +ES,SALAMANCA,"",40.97,-5.65,77.67.41.227 +RU,KHABAROVSK,"",48.50,135.10,72.246.184.81 +IN,UDAIPUR,RJ,24.58,73.68,23.205.118.109 +CA,WHITBY,ON,43.87,-78.93,72.246.43.237 +US,TARZANA,CA,34.1585,-118.5493,184.50.26.203 +US,ANDALUSIA,AL,31.2069,-86.6212,63.151.29.12 +RU,KUBAN,"",53.18,35.43,217.212.227.31 +FR,ROUBAIX,"",50.70,3.17,23.212.108.28 +GB,WOLVERHAMPTON,EN,52.58,-2.13,88.221.87.112 +JP,KAITA,31,35.45,133.85,23.3.74.113 +JP,TOYO,38,33.93,133.10,117.104.139.162 +UA,DMITRIY,"",46.65,30.40,80.239.222.167 +US,SALECREEK,TN,35.3979,-85.1221,184.51.35.226 +IN,COIMBATORE,TN,10.99,76.96,23.205.118.109 +BR,BLUMENAU,SC,-26.93,-49.05,187.59.4.154 +US,MCKEESPORT,PA,40.3339,-79.8011,23.192.161.21 +DE,FRANKEN,RP,50.50,7.23,80.157.170.221 +KZ,KUSTANAY,"",53.17,63.58,2.21.240.40 +US,ANDOVER,KS,37.7002,-97.0855,23.77.234.35 +US,TITUSVILLE,FL,28.5340,-80.8427,184.51.145.7 +US,NEWNAN,GA,33.3877,-84.8596,23.79.240.48 +UA,CHERKASY,"",49.43,32.07,23.14.94.228 +UZ,KASHKADARYA,"",38.97,65.78,23.76.205.111 +US,GOODLETTSVILLE,TN,36.3233,-86.7133,23.220.100.224 +RU,VORONEZH,"",51.67,39.17,213.155.156.208 +FR,VILLEURBANNE,"",45.77,4.88,2.16.117.190 +US,NEHALEM,OR,45.7222,-123.6842,192.80.13.117 +US,ALEXANDERCITY,AL,32.9346,-85.9597,23.79.240.48 +US,SANDPOINT,ID,48.4219,-116.5059,184.27.179.181 +AT,WINKL,"",48.38,15.90,195.145.147.101 +UA,NIKOLAEV,"",46.97,32.00,2.22.52.105 +US,SHENANDOAH,VA,38.4921,-78.5764,184.29.107.20 +US,MCLEMORESVILLE,TN,35.9867,-88.5772,69.31.132.226 +JP,YOKOSUKA,14,35.28,139.67,117.104.139.162 +US,CAPECORAL,FL,26.5778,-81.9505,23.79.240.48 +BD,TEJGAON,"",23.77,90.40,23.57.76.20 +ZW,HARARE,"",-17.86,31.03,165.165.46.36 +US,ARLINGTONHEIGHTS,IL,42.1121,-87.9793,107.14.38.218 +US,MOSESLAKE,WA,47.1758,-119.2892,206.104.149.146 +US,LONDONDERRY,NH,42.8794,-71.3877,184.25.109.200 +RU,LIPETSK,"",52.62,39.57,213.155.156.206 +US,EDWARDSVILLE,IL,38.8031,-89.9742,23.215.15.22 +US,BURNET,TX,30.8393,-98.2564,107.14.43.30 +JP,KUMAMOTO,43,32.80,130.72,117.104.139.136 +GG,SAINTPETERPORT,"",49.45,-2.53,81.25.206.208 +US,WHITEHOUSE,TX,32.2183,-95.2257,23.5.164.143 +TJ,DUSHANBE,"",38.57,68.77,2.21.240.40 +GB,WATFORD,EN,51.67,-0.40,23.67.255.158 +US,WHEATON,IL,41.8546,-88.116,23.67.60.222 +DE,TUBINGEN,BW,48.53,9.05,23.14.94.224 +NL,EINDHOVEN,"",51.45,5.47,92.122.189.114 +CD,GOMA,"",-5.32,14.40,95.101.34.105 +US,BOXBOROUGH,MA,42.4884,-71.5177,96.6.47.120 +RS,PETROVAC,"",42.42,20.43,23.62.237.137 +US,RANDOLPH,NJ,40.8481,-74.5726,184.51.125.79 +DE,WUNSIEDEL,BY,50.03,12.02,194.25.95.214 +AR,PUERTOMADRYN,"",-42.77,-65.05,72.246.216.139 +KR,INCHEON,"",37.45,126.73,61.111.58.229 +FR,NANTERRE,"",48.90,2.20,95.100.171.16 +IN,NASIK,MH,19.98,73.80,23.205.118.106 +GB,BARNSLEY,EN,53.55,-1.48,23.67.255.158 +US,ALIQUIPPA,PA,40.5921,-80.3191,184.28.17.76 +US,CONCORDIA,KS,39.4716,-97.7305,23.212.53.64 +RU,LESOSIBIRSK,"",58.29,92.39,213.155.156.207 +IN,NALGONDA,AP,17.05,79.27,23.205.118.106 +US,SHERIDAN,AR,34.3151,-92.3357,63.216.54.229 +US,EASLEY,SC,34.8763,-82.5796,23.79.240.48 +US,EAGLEPASS,TX,28.5841,-100.2545,23.74.2.7 +US,FORESTLAKE,MN,45.2627,-93.0169,107.14.38.218 +US,PONDERAY,ID,48.3056,-116.5325,184.27.179.165 +CZ,OLOMOUC,"",49.58,17.25,23.62.237.135 +IR,IMAM,"",36.70,48.81,184.27.45.150 +US,REXBURG,ID,43.7568,-111.6247,184.27.179.165 +US,WAUKESHA,WI,42.9721,-88.2283,107.14.38.218 +US,CHESTERLAND,OH,41.5320,-81.3349,107.14.38.218 +US,RICELAKE,WI,45.5296,-91.7231,23.74.8.24 +US,MEADVILLE,PA,41.6151,-80.1336,63.216.54.229 +US,BOCARATON,FL,26.3583,-80.0834,23.74.2.7 +US,OKEECHOBEE,FL,27.4513,-80.9004,184.27.45.157 +NL,BRUNSSUM,"",50.95,5.97,92.122.189.85 +GB,COLCHESTER,EN,51.88,0.90,88.221.87.112 +NL,SCHIPHOL,"",52.30,4.75,23.62.100.152 +BA,LUKA,"",43.95,18.48,194.25.95.219 +US,DELTONA,FL,28.9054,-81.2458,184.51.145.7 +US,ROCKHILL,SC,34.8891,-81.0214,184.51.35.215 +BR,SANTOS,SP,-23.95,-46.33,190.98.140.184 +BG,PLOVDIV,"",42.15,24.75,92.122.215.89 +US,ASHEBORO,NC,35.6532,-79.8468,209.18.41.27 +US,RATON,NM,36.7885,-104.4527,63.226.34.162 +US,VERSAILLES,KY,38.0184,-84.7389,63.216.54.216 +US,OPALOCKA,FL,25.9069,-80.2583,23.79.240.36 +AT,OBERPUCHENAU,"",48.32,14.23,195.145.147.109 +US,BILOXI,MS,30.4030,-88.8982,24.143.197.207 +US,ZANESVILLE,OH,39.9489,-82.0572,23.74.8.24 +US,ROY,UT,41.1733,-112.049,23.61.195.160 +DE,FLENSBURG,SH,54.78,9.43,194.25.95.214 +IR,BARAN,"",33.87,49.06,96.17.182.136 +US,PORTARTHUR,TX,29.7569,-94.1898,23.5.164.143 +US,OAKLEY,CA,37.9884,-121.6913,96.17.12.48 +CA,THORNHILL,ON,43.80,-79.42,72.246.43.237 +US,STONEMOUNTAIN,GA,33.7941,-84.2001,72.246.247.5 +US,SPRUCEPINE,NC,35.8996,-82.076,96.16.12.228 +US,PLEASANTVILLE,NY,41.1279,-73.7929,184.51.125.68 +US,SLATINGTON,PA,40.7371,-75.6374,23.67.242.156 +US,ENCINO,CA,34.1566,-118.5233,184.50.26.194 +US,STEELE,ND,46.8514,-99.9609,23.63.227.214 +US,WATERBURY,CT,41.5584,-73.0516,65.113.249.8 +US,CITRUSHEIGHTS,CA,38.6954,-121.2709,23.212.52.82 +RS,OBRENOVAC,"",43.04,22.72,2.20.45.104 +US,MOUNTGILEAD,OH,40.5633,-82.7592,65.113.249.11 +US,TEXASCITY,TX,29.3796,-94.9168,96.17.163.161 +US,GREENWELLSPRINGS,LA,30.5283,-91.0015,96.17.153.157 +US,AMELIA,OH,39.0167,-84.2069,165.254.207.111 +US,ANGOLA,IN,41.6594,-85.0055,23.67.60.220 +US,VALPARAISO,IN,41.4608,-87.0555,184.27.120.65 +JP,TOSHIMA,13,34.52,139.28,72.246.184.81 +US,MUSKEGON,MI,43.2355,-86.2532,23.67.60.223 +RU,NIJNIINOVGOROD,"",56.33,44.00,80.239.222.190 +KZ,TALDYK,"",54.65,67.80,23.14.94.214 +IT,NAPOLI,"",40.83,14.25,195.10.50.196 +US,COLLIERVILLE,TN,35.0596,-89.6789,23.79.240.48 +GB,BURY,EN,50.90,-0.57,195.245.125.107 +US,EASTTROY,WI,42.7945,-88.4154,107.14.38.227 +PL,GRZEGORZ,"",53.23,18.68,2.22.52.102 +UA,EUPATORIA,CRIMEA,45.20,33.36,92.122.215.89 +US,FARGO,ND,46.9259,-96.8507,165.254.114.164 +FR,PUGETVILLE,"",43.28,6.13,92.122.189.85 +SA,DHAHRAN,"",26.30,50.13,2.20.249.12 +KH,THMEY,"",11.80,104.93,23.76.205.90 +AU,DUBBO,NSW,-32.25,148.62,104.72.70.95 +CN,PUTIAN,FJ,25.44,119.01,184.50.87.178 +US,BLUESPRINGS,MO,39.0167,-94.2817,23.77.234.35 +US,PLAQUEMINE,LA,30.2546,-91.307,96.17.153.157 +DE,WITTEN,NW,51.43,7.33,194.25.95.212 +US,LOSALAMITOS,CA,33.7944,-118.0653,184.50.26.204 +ID,BATAM,"",1.08,104.03,23.0.162.40 +US,PENDLETON,OR,45.6098,-118.7308,184.27.179.159 +ID,CILEGON,"",-6.02,106.05,111.94.254.81 +CA,LEAMINGTON,ON,42.05,-82.58,72.246.43.215 +US,BARSTOW,CA,35.1476,-117.2068,184.50.26.204 +CA,WHITEHORSE,YT,60.72,-135.05,184.150.187.236 +US,HANNIBAL,MO,39.7145,-91.4209,204.93.47.216 +US,SOUTHBOSTON,VA,36.7012,-79.0269,184.29.107.38 +US,DESERTHOTSPRINGS,CA,33.9562,-116.5278,184.50.26.204 +PH,BAYAN,"",14.82,121.05,202.78.83.175 +FR,LECANNET,"",43.57,7.02,88.221.83.140 +US,EASTSTROUDSBURG,PA,41.0716,-75.148,184.26.44.42 +US,PORTAGE,WI,43.5939,-89.4754,23.74.8.8 +NI,MANAGUA,"",12.15,-86.27,184.26.44.38 +US,OPP,AL,31.2505,-86.2666,184.51.35.226 +US,KALISPELL,MT,48.0396,-113.5304,184.27.179.187 +US,FREEHOLD,NJ,40.2229,-74.3007,184.51.125.68 +US,SUWANEE,GA,34.0498,-84.0681,184.28.127.58 +IN,GOA,GA,15.50,73.92,23.211.135.66 +US,FERNANDINABEACH,FL,30.6056,-81.5268,23.79.240.36 +US,BELLEFONTE,PA,40.9455,-77.7398,23.192.161.21 +US,CALLAHAN,FL,30.5784,-81.8357,23.79.240.36 +RU,TVER,"",56.86,35.89,165.254.1.206 +US,ALGONQUIN,IL,42.1655,-88.2877,23.67.60.223 +TW,NANKANG,"",25.05,121.60,61.220.62.175 +US,LAQUINTA,CA,33.6713,-116.2873,184.50.26.201 +US,BARBERTON,OH,41.0203,-81.628,65.113.249.8 +US,WAYNESVILLE,NC,35.5777,-83.0002,23.79.240.48 +DE,PASSAU,BY,48.58,13.48,195.145.147.107 +VN,QUAN,"",18.43,105.75,23.76.205.111 +CH,LAUSANNE,"",46.53,6.67,193.247.167.211 +AR,ROQUESAENZPENA,"",-26.78,-60.45,200.123.201.219 +US,DONALDSONVILLE,LA,30.1206,-91.0306,23.215.15.32 +NZ,NEWPLYMOUTH,"",-39.07,174.08,219.88.186.165 +US,DEVILSLAKE,ND,48.1943,-98.7957,107.14.38.224 +IN,VASAI,MH,19.35,72.80,23.211.135.110 +RU,OREL,"",55.73,34.10,217.212.227.31 +US,LACRESCENTA,CA,34.2360,-118.2448,23.216.10.78 +US,COPPELL,TX,32.9610,-96.986,23.215.15.9 +US,ORLANDPARK,IL,41.6163,-87.8577,23.67.60.222 +US,PORTSAINTLUCIE,FL,27.2963,-80.2966,23.79.240.48 +UA,KRIVOYROG,"",47.92,33.35,23.14.94.224 +US,OPELIKA,AL,32.5952,-85.3164,23.79.240.36 +IS,REYKJAVIK,"",64.15,-21.95,23.212.108.8 +MX,TORREON,COA,25.55,-103.43,173.223.52.67 +ZA,POTCHEFSTROOM,"",-26.72,27.10,41.193.163.53 +AU,BROADMEADOWS,VIC,-37.67,144.90,184.84.221.85 +US,GRAMERCY,LA,30.1097,-90.6848,96.17.153.162 +US,PHILIPSBURG,PA,40.8621,-78.166,23.67.242.139 +US,BELCHERTOWN,MA,42.2771,-72.4022,23.67.244.224 +US,ORANGECITY,FL,28.9410,-81.3069,23.33.186.134 +US,LELAND,NC,34.2757,-78.1004,209.18.41.27 +KH,SIHANOUK,"",10.63,103.50,203.106.85.13 +GR,IRAKLIO,"",37.80,22.72,85.205.31.89 +US,JEFFERSON,GA,34.1004,-83.5698,63.216.54.231 +US,WALTERBORO,SC,32.8889,-80.7102,184.51.35.226 +DE,TETTNANG,BW,47.67,9.60,23.14.94.224 +IR,RAZAVI,"",34.28,58.47,165.254.96.242 +AR,CORDOBA,"",-31.40,-64.18,200.123.201.215 +CN,LANZHOU,GS,36.06,103.79,72.246.191.19 +US,POWDERSPRINGS,GA,33.8752,-84.6983,23.79.240.48 +US,BOURBONNAIS,IL,41.1818,-87.8739,23.67.60.222 +CI,ABIDJAN,"",5.32,-4.03,195.245.125.107 +US,WESTDESMOINES,IA,41.5662,-93.743,173.197.194.166 +US,CLARKSSUMMIT,PA,41.4656,-75.7341,184.25.157.155 +US,SAINTPETER,MN,44.3784,-94.0784,23.79.255.149 +US,NEWBREMEN,OH,40.4590,-84.3985,23.74.8.8 +US,FORTMORGAN,CO,40.1574,-103.8158,107.14.32.235 +CN,FOSHAN,GD,23.03,113.12,184.84.239.175 +AT,LOHNSBURG,"",48.15,13.40,84.53.146.39 +PL,GLIWICE,"",50.28,18.67,2.22.52.109 +HK,QUARRYBAY,"",22.28,114.22,23.76.205.90 +US,LUMBERTON,NC,34.6231,-78.9771,209.18.41.27 +FI,PORI,"",61.48,21.78,23.215.15.9 +US,BYRON,GA,32.6425,-83.775,23.212.53.64 +RU,KURSK,"",51.73,36.19,2.21.240.40 +MW,BLANTYRE,"",-15.78,35.00,217.89.107.166 +US,WESTWEGO,LA,29.9137,-90.2078,23.215.15.9 +AU,BENTLEY,WA,-32.00,115.92,23.62.224.33 +US,YAZOOCITY,MS,32.8273,-90.5829,23.215.15.32 +CD,KINSHASA,"",-4.33,15.31,77.67.40.172 +KZ,AKTOBE,"",43.98,78.80,80.239.149.123 +PL,ZYCHLIN,"",52.25,19.62,80.239.222.190 +US,FAIRBORN,OH,39.8173,-84.0025,107.14.38.218 +US,BLUEISLAND,IL,41.6641,-87.6855,107.14.38.218 +US,LISLE,IL,41.7894,-88.0823,23.67.60.223 +GB,LUTON,EN,51.88,-0.42,88.221.87.94 +US,NOLENSVILLE,TN,35.9350,-86.6688,165.254.138.175 +US,LACONIA,NH,43.5670,-71.4823,165.254.48.154 +US,SHOWLOW,AZ,34.0940,-110.0867,65.116.149.102 +US,GRIFFITH,IN,41.5177,-87.4208,107.14.38.218 +US,SCHENECTADY,NY,42.8148,-73.9393,72.247.10.237 +IR,GOLESTAN,"",35.77,51.46,80.239.149.123 +US,BEAUFORT,SC,32.4316,-80.67,165.254.138.165 +TR,BURSA,"",40.58,30.90,77.67.29.116 +JP,YOKKAICHI,24,34.97,136.62,117.104.139.162 +US,KEARNY,NJ,40.7563,-74.1217,184.26.44.40 +BR,CUIABA,MT,-15.58,-56.08,72.246.216.144 +US,ALPINE,CA,32.8087,-116.7197,184.50.26.204 +MA,RABAT,"",34.03,-6.83,95.100.171.27 +US,ROCKLAND,ME,44.1308,-69.1301,24.143.199.156 +US,HARRISBURG,PA,40.2628,-76.8813,23.67.242.139 +KZ,AKTAU,"",48.03,72.83,23.14.94.224 +US,SHREWSBURY,MA,42.2859,-71.7148,63.238.85.161 +US,PALMETTO,FL,27.5213,-82.5728,23.33.186.101 +US,LATHAM,NY,42.7511,-73.7732,107.14.38.217 +TR,ERCIYES,"",38.63,35.58,80.15.235.161 +US,EASTON,PA,40.7421,-75.2249,184.29.107.38 +SG,KALLANG,"",1.33,103.87,96.17.180.175 +US,OZARK,MO,36.9964,-93.1892,209.170.117.178 +US,MIDDLEBURY,VT,43.9961,-73.1846,184.29.107.20 +FR,ALGRANGE,"",49.35,6.05,88.221.15.110 +US,HOMOSASSA,FL,28.7478,-82.5258,23.34.56.147 +US,AGOURAHILLS,CA,34.1403,-118.7625,184.87.195.99 +CN,ZHUZHOU,HN,27.83,113.15,72.246.191.16 +PL,KALISZ,"",52.95,20.65,2.22.52.101 +US,DENHAMSPRINGS,LA,30.5870,-90.9124,23.212.53.64 +DE,KRUMMESSE,SH,53.78,10.65,92.122.207.164 +US,TARPONSPRINGS,FL,28.1455,-82.7568,184.27.45.157 +US,GILBERTSVILLE,PA,40.3096,-75.5833,184.26.44.38 +US,VALRICO,FL,27.9126,-82.237,23.33.186.101 +IN,MANDAPAM,TN,9.28,79.12,96.17.182.130 +PL,PILAWAGORNA,"",50.70,16.73,2.22.61.99 +US,SHAKOPEE,MN,44.7514,-93.5146,63.151.29.12 +IT,RIMINI,"",44.06,12.58,213.144.173.198 +US,WAYNESBURG,PA,39.8611,-80.1706,63.216.54.229 +US,GRANBURY,TX,32.4158,-97.782,204.93.47.216 +US,WALTHILL,NE,42.1478,-96.478,23.79.255.149 +IT,PIEMONTE,"",42.78,12.55,2.18.240.95 +US,NORTHFORTMYERS,FL,26.7437,-81.9862,23.79.240.36 +SE,HELSINGBORG,M,56.05,12.70,23.65.29.106 +US,BOONE,NC,36.2085,-81.6605,23.79.240.36 +US,LOSBANOS,CA,36.9711,-120.9668,23.212.52.93 +DZ,TIZIOUZOU,"",36.72,4.05,90.84.53.194 +CA,BRANTFORD,ON,43.13,-80.27,72.246.43.215 +US,NEWRIVER,AZ,33.8763,-112.0502,184.50.26.194 +FR,MONTESSON,"",48.92,2.15,2.16.117.190 +ID,RAYA,"",1.08,118.53,23.0.162.54 +US,LOCUSTGROVE,GA,33.3564,-84.1119,72.246.247.5 +US,WESTNEWYORK,NJ,40.7879,-74.0112,184.26.44.38 +US,NORTHOLMSTED,OH,41.4153,-81.9188,23.67.242.139 +US,CUDAHY,WI,42.9465,-87.8638,107.14.38.217 +US,POSTFALLS,ID,47.7405,-116.9576,184.26.93.116 +US,INVERNESS,FL,28.8296,-82.2553,23.33.186.101 +US,SKIATOOK,OK,36.3833,-96.0366,165.254.138.175 +PL,ZAMBROW,"",52.98,22.25,2.22.52.109 +IR,LIR,"",34.70,49.75,2.22.52.105 +US,CLOQUET,MN,46.7232,-92.5588,65.113.249.11 +US,MOCKSVILLE,NC,35.9339,-80.5455,209.18.41.23 +US,PEKIN,IL,40.5452,-89.6011,184.27.120.65 +AU,CAIRNS,QLD,-16.92,145.77,23.209.183.61 +HU,KECSKEMET,"",46.90,19.78,72.247.10.241 +DK,EM,"",57.35,9.92,2.21.240.61 +RO,BRASOV,"",45.63,25.58,2.22.52.102 +US,GRANDVIEW,WA,46.2604,-119.9241,67.131.104.14 +US,HIGHPOINT,NC,35.9808,-80.1272,184.27.45.150 +US,HAMPSTEAD,NC,34.4359,-77.683,23.79.240.37 +CO,BELLO,"",6.33,-75.55,23.215.15.22 +IR,PARS,"",35.74,51.53,23.62.238.220 +US,SENATOBIA,MS,34.6336,-89.8203,96.17.153.162 +RO,ORADEA,"",47.07,21.93,81.196.26.198 +SE,GOTEBORG,O,57.72,11.97,213.155.156.208 +US,WINDHAM,ME,43.7950,-70.4037,165.254.35.197 +US,WEYMOUTH,MA,42.2076,-70.9575,184.25.109.196 +US,MASCOUTAH,IL,38.4590,-89.7628,204.93.47.220 +US,SANCLEMENTE,CA,33.4046,-117.5066,23.212.53.64 +US,RISON,AR,33.9470,-92.1633,23.74.8.24 +US,OSHKOSH,WI,43.9500,-88.5387,184.50.26.179 +HU,SZEGED,"",46.25,20.17,23.14.94.214 +TR,HATAY,"",36.23,36.12,193.45.15.198 +IN,MALIANDMUNJERI,MH,18.53,73.87,117.239.189.99 +JP,UTSUNOMIYA,09,36.55,139.87,96.7.251.95 +US,SEGUIN,TX,29.5278,-97.9363,96.17.163.161 +FR,ROUVIGNIES,"",50.33,3.43,2.16.117.190 +GP,POINTEAPITRE,"",16.23,-61.52,184.26.44.38 +US,FORTEUSTIS,VA,37.1626,-76.5808,23.220.148.122 +US,GOSHEN,NY,41.3906,-74.3406,24.143.199.188 +US,LAURENS,SC,34.4899,-82.0542,23.79.240.48 +US,SUMTER,SC,33.9242,-80.1986,209.18.41.23 +US,GLENDIVE,MT,47.0499,-104.5596,184.51.35.215 +US,VICKSBURG,MI,42.1149,-85.4789,23.67.60.223 +US,MIDVALE,UT,40.6150,-111.8913,184.84.180.68 +FR,OUISTREHAM,"",49.28,-0.25,2.16.117.190 +US,ENUMCLAW,WA,47.1782,-121.6415,184.27.179.159 +US,NORTHANSON,ME,44.9516,-69.9465,165.254.35.182 +UA,MAKEEVKA,"",48.03,37.97,2.21.240.61 +US,CORSICANA,TX,32.0635,-96.4417,184.27.179.181 +JP,NIHO,35,34.22,131.55,117.104.139.162 +US,DILLON,MT,45.1146,-112.8794,107.14.32.235 +US,FORTDODGE,IA,42.5075,-94.2531,63.151.29.15 +US,BADAXE,MI,43.7988,-82.998,65.113.249.8 +US,KILLINGWORTH,CT,41.3791,-72.5783,184.25.109.200 +FR,CORBEIL,"",48.60,2.48,2.16.117.200 +US,WESTORANGE,NJ,40.7895,-74.2629,184.26.44.38 +US,ZEPHYRHILLS,FL,28.2333,-82.1815,23.34.56.142 +PL,WYRZYSK,"",53.17,17.28,2.22.52.102 +IN,KAKINADA,AP,16.93,82.22,23.205.118.109 +CZ,LITOMYSL,"",49.87,16.32,23.62.237.135 +JP,TOKAI,23,35.03,136.89,23.3.104.15 +US,ROLLA,MO,37.9394,-91.763,63.216.54.236 +CA,SHERBROOKE,QC,45.40,-71.90,204.93.33.141 +TH,SONGKHLA,"",7.20,100.60,61.19.12.177 +US,DODGECITY,KS,37.6960,-100.1054,23.215.15.9 +BA,SARAJEVO,"",43.85,18.38,23.14.94.224 +US,WAGONER,OK,35.9683,-95.3871,23.5.164.146 +US,TUCUMCARI,NM,35.0485,-103.7548,64.129.104.132 +US,THURMONT,MD,39.5936,-77.4215,23.192.161.16 +AU,WARRAGUL,VIC,-38.17,145.93,210.11.142.65 +US,ITASCA,IL,41.9751,-88.0186,23.67.60.220 +US,FORTCAMPBELL,KY,36.6606,-87.4578,23.212.53.64 +CH,BASEL,"",47.57,7.60,195.145.147.109 +US,HALLANDALE,FL,25.9808,-80.1486,23.79.240.36 +US,EASTAURORA,NY,42.7704,-78.5853,209.18.41.27 +US,ROYERSFORD,PA,40.2034,-75.5319,23.67.242.156 +US,SHALLOTTE,NC,33.9593,-78.431,184.51.35.215 +US,OAKHARBOR,WA,48.3182,-122.6341,23.212.59.64 +IE,PORTLAOISE,"",53.03,-7.30,88.221.222.34 +US,JERSEYVILLE,IL,39.1259,-90.3475,96.17.14.16 +US,LITITZ,PA,40.1769,-76.295,184.25.157.155 +US,BUTTE,MT,45.9274,-112.5042,165.254.1.165 +RO,ONESTI,"",46.25,26.75,81.196.26.236 +US,MONCKSCORNER,SC,33.1483,-80.0528,184.51.35.226 +SE,FALKENBERG,N,56.90,12.50,2.21.240.61 +US,BELLMAWR,NJ,39.8669,-75.093,23.67.60.220 +US,HOUGHTON,MI,47.1004,-88.5759,184.85.215.165 +KH,BOEUNG,"",12.43,105.12,23.15.10.106 +US,REEDSBURG,WI,43.5282,-90.0016,184.85.215.165 +HK,KOWLOONTONG,"",22.33,114.18,23.76.205.111 +US,TILTON,NH,43.4812,-71.5745,184.25.109.196 +US,ROBERTSDALE,AL,30.6097,-87.6111,184.51.35.215 +US,JACKSONHEIGHTS,NY,40.7514,-73.8836,209.18.41.27 +US,SNELLVILLE,GA,33.7958,-83.9918,23.79.240.36 +US,FORTLUPTON,CO,40.0874,-104.8664,23.212.53.75 +CA,MONCTON,NB,46.08,-64.77,209.148.192.57 +US,CLARKSTON,WA,46.2148,-117.2463,165.254.144.32 +US,LITTLEFALLS,NJ,40.8835,-74.2057,184.26.44.40 +PL,KUTNO,"",52.23,19.37,2.22.52.101 +US,WEBSTER,MN,44.5239,-93.3702,23.67.60.220 +ZW,ZIMBABWE,"",-20.27,30.92,41.193.163.53 +DE,HERNE,NW,51.55,7.22,23.14.94.220 +PL,RZESZOW,"",50.05,22.00,77.67.96.116 +TH,PATHUMTHANI,"",14.02,100.53,61.19.12.79 +US,ELSA,TX,26.2988,-97.9827,204.2.223.91 +CH,WIL,"",47.60,8.50,92.122.215.67 +US,FERNLEY,NV,39.5869,-119.1525,23.61.195.149 +US,VANDALIA,OH,39.8973,-84.2232,107.14.38.218 +US,HURON,SD,44.3587,-98.2248,107.14.38.224 +US,HORNLAKE,MS,34.9498,-90.0305,184.84.180.98 +US,OAKHURST,CA,37.5934,-119.4077,173.223.52.67 +US,MILAN,TN,35.9258,-88.7624,204.2.243.132 +IR,SISTAN,"",36.95,49.75,23.14.94.224 +JP,AOMORI,02,40.82,140.75,72.246.191.16 +US,LAYTON,UT,41.1018,-111.9067,184.84.180.101 +BG,BANSKO,"",41.83,23.48,2.20.142.173 +FR,AX,"",42.72,1.83,23.200.87.58 +US,ALLIANCE,OH,40.9181,-81.1273,96.6.47.120 +US,HUGO,OK,34.0348,-95.5268,96.16.7.101 +PL,KOZIENICE,"",51.58,21.57,2.22.52.102 +US,FORESTPARK,GA,33.6133,-84.3728,23.212.53.64 +US,KILLEN,AL,34.9168,-87.5035,23.220.100.224 +BZ,BELIZECITY,"",17.48,-88.18,23.74.2.7 +KR,POHANG,"",36.03,129.37,125.56.214.147 +US,SOUTHMILWAUKEE,WI,42.9118,-87.8624,107.14.38.227 +US,WINTERSPRINGS,FL,28.6860,-81.2771,23.34.56.147 +US,MEXICO,MO,39.1882,-91.8924,204.93.47.220 +US,BOZEMAN,MT,45.6891,-110.9295,107.14.32.228 +KZ,URALSK,"",51.23,51.37,2.20.142.173 +US,WESTHAVEN,CT,41.2716,-72.9666,184.25.109.213 +BE,OVERHEID,"",51.07,4.27,23.62.100.152 +US,GLENALLEN,VA,37.6656,-77.5069,184.26.44.38 +US,BROCKPORT,NY,43.2485,-77.9306,107.14.38.217 +US,MAQUOKETA,IA,42.1200,-90.7234,165.254.207.117 +US,MARTINSFERRY,OH,40.1258,-80.7518,23.192.161.21 +US,ROLLINGMEADOWS,IL,42.0703,-88.0209,107.14.38.218 +US,CYNTHIANA,KY,38.4145,-84.2859,23.79.240.48 +US,DANVERS,MA,42.5739,-70.9505,184.25.109.200 +US,ZILLAH,WA,46.4400,-120.2284,184.27.179.181 +RS,BEOGRAD,"",44.82,20.47,2.20.45.104 +US,SANTAFESPRINGS,CA,33.9363,-118.0653,184.50.26.194 +FR,ANNECY,"",45.90,6.12,92.122.189.85 +US,HEBERCITY,UT,40.2386,-111.1499,23.61.195.149 +US,LENOIR,NC,35.9137,-81.5393,23.79.240.48 +JP,FUKUSHIMA,07,37.75,140.47,72.246.184.92 +US,MOORESVILLE,NC,35.5822,-80.8122,209.18.41.27 +US,LAPORTE,TX,29.6785,-95.0483,96.17.163.165 +MX,QUERETARO,QUE,20.60,-100.38,187.141.2.151 +US,MURRYSVILLE,PA,40.4616,-79.6658,23.192.161.16 +US,NEWBRUNSWICK,NJ,40.4861,-74.4473,184.26.44.42 +US,HADDONHEIGHTS,NJ,39.8789,-75.0646,23.67.242.139 +US,FAIRBANKS,AK,64.5037,-147.6591,23.212.59.64 +NZ,PAPAKURA,"",-37.08,174.95,219.88.186.167 +UA,KHERSON,"",46.63,32.60,217.212.227.25 +AU,RANDWICK,NSW,-33.92,151.24,23.62.8.21 +US,SOUTHBEND,IN,41.6699,-86.2535,23.63.227.227 +US,MERIDIANVILLE,AL,34.8710,-86.5547,23.220.100.223 +US,BREAUXBRIDGE,LA,30.2731,-91.9325,23.215.15.9 +GB,GATESHEAD,EN,54.95,-1.62,88.221.87.112 +US,STEVENSONRANCH,CA,34.3795,-118.5754,63.233.112.196 +IT,POGGIBONSI,"",43.47,11.15,77.67.29.116 +CA,CORNERBROOK,NF,48.95,-57.93,209.148.192.57 +DE,GREIFSWALD,MV,54.10,13.38,80.157.150.201 +US,PARAMOUNT,CA,33.8963,-118.1642,184.50.26.194 +US,GOOCHLAND,VA,37.7179,-78.0059,184.26.44.38 +US,BEACH,ND,47.0809,-103.8785,63.216.54.231 +US,LEWISCENTER,OH,40.1839,-82.9843,107.14.38.224 +CA,OLIVER,BC,49.18,-119.55,184.27.179.187 +US,SONORA,TX,30.4983,-100.5382,23.215.15.9 +ID,BINTANG,"",-7.25,107.20,23.0.162.21 +US,SLOCOMB,AL,31.0914,-85.5835,184.27.45.157 +GI,GIBRALTAR,"",36.13,-5.35,92.123.73.233 +BA,BIHAC,"",44.82,15.87,23.14.94.224 +JP,HIMEJI,28,34.82,134.70,23.3.74.113 +US,GREER,SC,34.8978,-82.2584,72.246.247.5 +US,LEWISTOWN,PA,40.6073,-77.5812,23.192.161.30 +US,LINCOLNTON,NC,35.4951,-81.2237,23.79.240.48 +US,MISHAWAKA,IN,41.6161,-86.1361,23.67.60.220 +US,ISLEOFPALMS,SC,32.8046,-79.7534,23.79.240.36 +FR,TAVERNY,"",49.03,2.22,2.16.117.200 +RU,ROSSIYA,"",54.82,32.42,92.122.189.114 +FR,SAINTEGENEVIEVEDESBOIS,"",48.63,2.33,2.20.243.42 +US,YELM,WA,46.8659,-122.5344,23.212.59.63 +US,ALLSTON,MA,42.3585,-71.13,184.29.107.38 +US,CRYSTALCITY,MO,38.2311,-90.378,204.93.47.220 +US,LAKESIDEMARBLEHEAD,OH,41.5249,-82.7767,23.74.8.24 +US,MENTOR,OH,41.6763,-81.3297,107.14.38.218 +US,RICHLANDCENTER,WI,43.4015,-90.4109,184.85.215.165 +US,SOUTHAVEN,MS,34.9597,-89.9817,23.212.53.64 +US,WALTHAM,MA,42.3876,-71.2411,184.28.17.76 +IR,SEPAHAN,"",35.67,51.17,184.25.157.155 +US,TEMPLE,TX,31.0795,-97.3287,107.14.43.29 +US,DINUBA,CA,36.5216,-119.3869,23.212.52.79 +US,SAINTALBANS,VT,44.8111,-73.0813,23.192.161.30 +PL,TORUN,"",53.03,18.60,80.239.149.123 +US,NORTHWILKESBORO,NC,36.1585,-81.1478,23.79.240.36 +ID,PAKANBARU,"",0.53,101.45,118.98.37.99 +US,LEVELLAND,TX,33.6122,-102.3901,107.14.36.199 +SE,ESKILSTUNA,D,59.37,16.50,2.21.240.61 +ZA,PAROW,"",-33.90,18.60,165.165.46.36 +US,MCALESTER,OK,34.9351,-95.8929,174.76.226.117 +US,MOULTRIE,GA,31.1855,-83.7469,63.216.54.229 +FR,NEUILLYPLAISANCE,"",48.87,2.52,2.16.117.190 +AU,WENTWORTH,NSW,-34.12,141.92,210.11.142.64 +US,CLAYTON,NC,35.6321,-78.4269,209.18.41.23 +US,MILLEDGEVILLE,GA,33.0769,-83.3032,63.216.54.231 +US,BRYANSROAD,MD,38.6499,-77.0865,23.192.161.16 +IR,ALBORZ,"",34.73,50.97,23.14.94.224 +RO,ZALAU,"",47.20,23.05,80.239.222.190 +US,KANNAPOLIS,NC,35.5043,-80.6706,209.18.41.27 +HK,NORTHPOINT,"",22.30,114.20,184.84.239.186 +US,NOTREDAME,IN,41.7197,-86.2504,107.14.32.235 +PY,FERNANDODELAMORA,"",-25.32,-57.60,200.91.22.117 +US,BRUSH,CO,40.1479,-103.5597,173.197.194.159 +CN,SUQIAN,JS,33.95,118.30,23.15.10.91 +US,CHITTENANGO,NY,43.0618,-75.8688,107.14.38.217 +ZA,POINT,"",-29.87,31.05,41.193.163.45 +US,WESTFARGO,ND,46.8625,-96.9269,107.14.38.218 +TR,ANKARA,"",39.94,32.86,2.20.142.166 +GA,LIBREVILLE,"",0.38,9.45,195.245.125.249 +IN,AGRA,UP,27.18,78.02,213.248.108.233 +US,SUNPRAIRIE,WI,43.2012,-89.2037,184.85.215.170 +DE,CLAUSTHALZELLERFELD,NI,51.80,10.33,195.95.193.132 +US,GUALALA,CA,38.8361,-123.4304,23.63.227.214 +PL,BIALYSTOK,"",53.13,23.15,80.157.149.129 +IN,KARUR,TN,10.95,78.08,96.17.182.136 +US,TRUTHORCONSEQUENCES,NM,33.1866,-106.8454,23.212.53.64 +US,CLEMSON,SC,34.6740,-82.8212,64.86.201.118 +DE,LAUCHHAMMER,BB,51.50,13.80,195.95.193.150 +US,DAVISON,MI,43.0361,-83.513,23.63.227.227 +JP,SENDAI,04,38.26,140.89,117.104.139.136 +US,MINDEN,NE,40.5009,-98.902,23.212.53.64 +US,OCONOMOWOC,WI,43.1140,-88.4931,107.14.38.217 +US,RUSKIN,FL,27.7115,-82.4202,23.33.186.134 +US,QUEENSVILLAGE,NY,40.7303,-73.748,184.26.44.42 +US,BELPRE,OH,39.3164,-81.6086,107.14.38.227 +US,HARKERHEIGHTS,TX,31.0283,-97.6473,107.14.43.29 +US,LINTON,IN,39.0608,-87.1852,23.67.60.220 +SE,BOLLNAS,X,61.35,16.37,2.21.240.40 +US,WALLEDLAKE,MI,42.5503,-83.474,23.67.60.222 +US,CHIPPEWAFALLS,WI,44.9743,-91.4379,65.113.249.8 +DK,SKANDERBORG,"",56.03,9.93,23.65.29.93 +DE,FRIEDRICHSHAFEN,BW,47.65,9.48,23.14.94.224 +JP,HAKODATE,01,41.75,140.72,23.3.104.15 +US,GIRARD,OH,41.1741,-80.6779,107.14.38.217 +TR,ADANA,"",38.63,28.88,193.45.15.199 +MZ,MAPUTO,"",-25.97,32.59,165.165.46.38 +US,INVERGROVEHEIGHTS,MN,44.8348,-93.0357,23.67.60.220 +US,PINEVILLE,KY,36.7417,-83.6911,173.197.192.214 +US,BRAZIL,IN,39.5158,-87.1262,23.63.227.214 +GB,OVER,EN,52.32,0.02,195.245.125.249 +ID,RIAU,"",-1.72,105.93,23.0.162.40 +CN,SHANGXI,ZJ,29.30,119.90,23.76.205.111 +US,BALDWINCITY,KS,38.8017,-95.2855,23.67.60.223 +US,PROSPER,TX,33.2340,-96.7848,184.28.23.4 +US,NORMAL,IL,40.5373,-88.9869,23.67.60.222 +US,GILLETTE,WY,44.4735,-105.5945,23.212.53.75 +US,POTEAU,OK,35.0533,-94.5362,23.215.15.32 +US,FRIENDSWOOD,TX,29.5125,-95.188,96.17.163.161 +US,HOLDENVILLE,OK,35.0789,-96.319,96.16.7.101 +US,NEWPORTRICHEY,FL,28.2352,-82.7347,23.34.56.142 +NL,BREDA,"",51.57,4.80,92.122.189.114 +TR,KADIKOY,"",40.82,32.83,80.15.235.163 +KZ,KOKCHETAV,"",53.28,69.39,213.155.156.207 +US,METHUEN,MA,42.7346,-71.189,23.67.244.240 +NG,LIKE,"",6.90,7.48,95.101.2.122 +CZ,FRYDEKMISTEK,"",49.68,18.33,23.62.237.133 +PL,PODGORNE,"",53.42,21.78,61.111.58.229 +US,PIQUA,OH,40.1702,-84.2793,107.14.38.218 +IR,ILAM,"",33.64,46.43,80.239.149.123 +UA,SIMFEROPOL,CRIMEA,44.95,34.10,2.22.52.101 +US,VANBUREN,AR,35.4580,-94.2992,174.76.226.117 +IR,ARDABIL,"",38.25,48.30,23.62.238.215 +US,BANGOR,ME,44.8521,-68.8311,107.14.38.224 +FR,VELIZY,"",48.80,2.18,23.200.87.59 +US,BELTSVILLE,MD,39.0347,-76.9076,184.28.17.55 +JP,ASHIKAGA,09,36.33,139.45,23.3.104.20 +US,LOSALAMOS,NM,35.8375,-106.349,23.212.52.88 +CA,ALLISTON,ON,44.15,-79.87,72.246.43.215 +US,FOLSOM,CA,38.6648,-121.1414,96.17.12.48 +US,SCOTTSBORO,AL,34.7061,-86.0958,184.51.35.215 +US,DURANT,OK,34.0185,-96.3864,184.28.23.4 +MX,PATZCUARO,MIC,19.52,-101.60,23.212.53.64 +IN,ULUBARI,AS,26.50,90.42,23.57.76.18 +GB,STEVENAGE,EN,51.92,-0.22,23.67.255.158 +US,BETHESDA,MD,38.9806,-77.1008,23.192.161.16 +ID,BANTEN,"",-6.05,106.15,23.0.162.21 +RU,KOPEYSK,"",55.12,61.62,2.21.240.61 +US,PAINESVILLE,OH,41.6851,-81.2077,96.17.9.8 +US,PICKENS,SC,34.9245,-82.7166,72.246.247.5 +US,SANCARLOS,CA,37.4970,-122.2756,23.212.52.79 +US,CHARLESTOWN,WV,39.2635,-77.8778,23.192.161.21 +RU,NALCHIK,"",43.50,43.62,2.21.240.61 +US,BLAKELY,GA,31.3824,-84.9419,63.216.54.236 +US,STRONGSVILLE,OH,41.3148,-81.8093,96.17.9.14 +US,WESTHENRIETTA,NY,43.0409,-77.6888,107.14.38.227 +US,GENESEE,MI,43.1100,-83.6218,65.113.249.8 +PL,NOWYTOMYSL,"",52.32,16.15,2.22.61.99 +US,STATENISLAND,NY,40.6308,-74.0923,24.143.199.188 +US,BEEBE,AR,35.1238,-91.9422,96.17.14.15 +MO,TAIPA,"",22.15,113.55,202.175.5.87 +ID,BEKASI,"",-6.23,106.98,202.43.190.239 +US,HOPKINSVILLE,KY,36.8832,-87.4597,23.220.100.224 +US,OVERTON,NV,36.5809,-114.605,64.145.95.145 +RO,PITESTI,"",44.85,24.87,81.196.26.236 +US,WISCONSINRAPIDS,WI,44.3431,-89.7334,65.113.249.8 +US,DANAPOINT,CA,33.4774,-117.7048,64.86.201.118 +US,ELKHART,IN,41.7235,-85.9764,23.74.8.8 +US,BIGSPRING,TX,32.2854,-101.4495,23.5.164.143 +CA,SAINTLAMBERT,QC,45.48,-73.50,67.69.197.160 +US,MATTESON,IL,41.5063,-87.7446,107.14.38.218 +US,HANOVER,NH,43.7256,-72.2368,184.25.109.200 +CA,HULL,QC,45.43,-75.73,67.69.197.160 +AU,WERRIBEE,VIC,-37.90,144.67,184.84.221.87 +US,DELRAYBEACH,FL,26.4576,-80.0806,23.79.240.37 +US,MCCOMB,MS,31.1693,-90.3678,165.254.138.175 +US,MACHESNEYPARK,IL,42.3589,-89.0409,107.14.38.217 +VN,DANANG,"",21.72,105.35,112.175.42.120 +US,EUREKA,IL,40.7102,-89.2521,23.74.8.24 +US,HARMONY,PA,40.8638,-80.1313,209.48.37.188 +US,COUNCILBLUFFS,IA,41.2146,-95.8574,23.79.255.153 +AR,FUNES,"",-32.92,-60.82,200.123.201.215 +US,BUDA,TX,30.0694,-97.8797,184.26.93.116 +MN,BAYANGOL,"",48.91,106.09,80.239.237.230 +US,FORESTCITY,NC,35.2700,-81.8676,23.79.240.36 +AT,ALKOVEN,"",48.28,14.10,195.145.147.109 +IT,GENOVA,"",44.42,8.95,193.45.15.198 +US,KITTANNING,PA,40.8196,-79.4288,184.26.44.40 +UA,KHMELNITSKIY,"",49.42,27.00,2.21.240.61 +KZ,SEMEY,"",50.41,80.23,80.239.222.169 +US,GARRETSON,SD,43.7606,-96.5516,23.63.227.223 +US,DUNKIRK,NY,42.4788,-79.3113,107.14.38.227 +ID,MATARAM,"",-7.17,106.67,23.0.162.54 +US,UTICA,MI,42.6730,-82.9952,23.67.60.223 +US,VERNAL,UT,40.1055,-109.4989,63.235.21.141 +US,KELLOGG,ID,47.7187,-116.0875,24.143.194.180 +IN,VISHAKHAPATNAM,AP,17.70,83.30,23.57.69.157 +DE,ISERLOHN,NW,51.37,7.70,92.122.207.179 +US,ALTUS,OK,34.6829,-99.3441,23.215.15.22 +US,BOLIVAR,MO,37.6066,-93.4143,63.216.54.236 +US,BERWYN,IL,41.8314,-87.7884,107.14.38.227 +US,WESTCOLUMBIA,SC,33.9973,-81.0998,64.129.104.132 +US,ELLENSBURG,WA,47.0155,-120.3114,184.27.179.159 +US,LOMITA,CA,33.7935,-118.3174,184.50.26.204 +US,OPELOUSAS,LA,30.5146,-92.101,23.79.240.36 +US,SICKLERVILLE,NJ,39.7334,-74.9786,23.67.242.139 +US,CRAWFORDSVILLE,IN,40.0313,-86.9257,65.113.249.11 +US,MURPHY,NC,35.1195,-84.1344,184.27.45.150 +RU,DAGOMYS,"",43.66,39.65,92.122.189.114 +MX,XALAPAENRIQUEZ,VER,19.53,-96.92,165.254.1.206 +US,LIBERTYLAKE,WA,47.6567,-117.0803,184.27.179.187 +US,EDGEWATER,FL,28.9786,-80.9236,184.51.145.22 +ID,SURAKARTA,"",-6.42,105.87,23.0.162.46 +US,NEWMILFORD,NJ,40.9338,-74.0194,23.67.242.139 +US,OXONHILL,MD,38.8052,-76.9958,23.192.161.16 +US,MORRISVILLE,PA,40.1994,-74.8145,184.27.45.150 +BG,DOBRICH,"",42.02,25.52,92.122.189.85 +US,BLUFFTON,SC,32.2534,-80.8971,165.254.138.165 +DE,SCHLEGEL,TH,50.40,11.62,46.33.70.97 +US,LACANADAFLINTRIDGE,CA,34.2241,-118.1106,23.216.10.54 +CA,LONGUEUIL,QC,45.53,-73.52,72.246.43.215 +US,LEESSUMMIT,MO,38.9333,-94.3253,23.77.234.11 +RU,KALININA,"",53.52,36.03,2.21.240.61 +US,CLAWSON,MI,42.5361,-83.1514,23.67.60.222 +US,WHEATRIDGE,CO,39.7756,-105.108,184.84.180.98 +US,SCOTTDALE,PA,40.1122,-79.5869,65.121.209.127 +NL,DRONTEN,"",52.53,5.72,92.122.189.114 +DE,BEIERFELD,SN,50.57,12.80,92.122.215.67 +AU,TUGGERAH,NSW,-33.32,151.42,104.72.70.95 +DE,STROM,HB,53.08,8.72,194.25.95.225 +US,MOUNTAIRY,NC,36.4840,-80.6333,209.18.41.27 +CN,PO,AH,33.88,115.77,184.50.87.178 +IR,ARA,"",36.20,53.72,217.212.227.31 +AT,PURKERSDORF,"",48.20,16.17,195.145.147.107 +DE,STUHR,NI,53.03,8.75,80.157.170.221 +BA,TESANJ,"",44.61,17.99,46.33.70.216 +IN,AJMER,RJ,26.45,74.63,117.239.189.115 +PL,TOMASZOW,"",52.33,21.02,80.239.149.123 +DE,DOTTERNHAUSEN,BW,48.23,8.80,194.25.95.225 +MY,PENANG,"",5.42,100.33,203.106.85.113 +US,KANKAKEE,IL,41.1223,-87.9467,23.67.60.217 +PS,RAMALLAH,"",31.90,35.20,92.122.189.85 +ID,KETAPANG,"",-6.15,106.80,23.0.162.21 +IN,SECUNDERABAD,AP,17.45,78.50,23.205.118.109 +US,ASTON,PA,39.8645,-75.4349,184.26.44.42 +MY,KOTABHARU,"",4.40,101.08,58.27.124.241 +US,SAINTMICHAEL,MN,45.1957,-93.7002,63.151.29.12 +US,TIFTON,GA,31.4504,-83.5086,72.246.247.30 +US,PHENIXCITY,AL,32.3790,-85.1147,72.246.247.5 +UA,LUGANSK,"",47.37,37.10,80.239.237.231 +US,MALVERN,AR,34.3189,-92.8629,96.16.7.120 +NO,SANDEFJORD,"",59.13,10.23,2.21.240.40 +US,UPPERMARLBORO,MD,38.7800,-76.7676,184.28.17.76 +FR,STIRINGWENDEL,"",49.20,6.93,80.157.150.201 +US,ASHTABULA,OH,41.8515,-80.79,107.14.38.218 +US,MARLTON,NJ,39.8786,-74.8969,184.26.44.42 +DE,LUDWIGSHAFEN,RP,49.48,8.44,2.20.142.173 +DE,BADRA,TH,51.40,10.97,23.14.94.214 +IN,SHIMLA,RJ,28.68,74.57,96.17.182.136 +IR,KHORASAN,"",35.70,47.27,184.25.157.155 +US,GROVELAND,MA,42.7505,-71.0153,184.25.109.213 +US,GRANITEFALLS,NC,35.8300,-81.4147,23.79.240.37 +US,SMITHVILLE,TN,35.9094,-85.7998,23.79.240.36 +US,HOLT,MI,42.6321,-84.5423,23.67.60.222 +US,OCEANA,WV,37.7347,-81.5521,96.6.47.120 +US,NEWBURGH,IN,37.9445,-87.4053,23.63.227.214 +US,FOLKSTON,GA,30.9136,-82.1547,63.216.54.216 +US,ELMER,NJ,39.5646,-75.1874,184.27.45.150 +FR,LEBLANCMESNIL,"",48.93,2.45,2.16.117.190 +RU,CHEBOKSARY,"",56.13,47.25,213.155.156.212 +HK,HOMANTIN,"",22.32,114.18,203.186.47.99 +US,TAUNTON,MA,41.9112,-71.1289,184.25.109.196 +US,BIGBEARCITY,CA,34.2842,-116.9019,23.216.10.78 +LS,MASERU,"",-29.32,27.48,184.27.179.181 +US,ANGIER,NC,35.4757,-78.7203,23.79.240.36 +IN,SHILIGURI,WB,26.72,88.42,96.17.182.130 +UA,SEVASTOPOL,CRIMEA,44.60,33.53,88.221.15.111 +US,BATESVILLE,MS,34.3450,-89.8815,96.17.153.157 +IN,ANANTAPUR,AP,14.68,77.60,23.205.118.109 +US,NEWBRAUNFELS,TX,29.6944,-98.0725,96.17.163.165 +US,KILGORE,TX,32.3769,-94.8692,131.103.137.122 +US,COATESVILLE,PA,39.9700,-75.8325,184.26.44.42 +BD,DIAL,"",24.93,89.08,23.75.23.140 +US,MENTONE,CA,34.1048,-117.051,184.50.26.192 +TH,CHAENG,"",15.55,102.38,92.122.189.85 +NL,HILVERSUM,"",52.23,5.18,95.101.2.112 +US,INGRAM,TX,30.1349,-99.4936,23.215.15.32 +US,PIERRE,SD,44.3693,-100.0402,107.14.38.218 +LT,KALVARIJA,"",54.73,25.28,2.21.240.40 +US,COOKEVILLE,TN,36.1802,-85.4582,23.79.240.37 +US,NORTHMANCHESTER,IN,40.9831,-85.7915,23.74.8.8 +BI,BUJUMBURA,"",-3.38,29.36,23.205.169.195 +FI,SALO,"",60.73,24.18,2.21.240.61 +NZ,HOWICK,"",-36.89,174.92,219.88.186.172 +DE,HERTEN,NW,51.60,7.13,194.25.95.212 +US,LAFOLLETTE,TN,36.3953,-84.1409,23.79.240.37 +IT,BARI,"",41.13,16.85,193.45.15.198 +IR,GHARBI,"",28.94,53.24,23.14.94.228 +KR,SUWON,"",37.28,127.02,184.51.199.132 +US,SOUTHPORT,NC,34.0734,-78.0547,209.18.41.23 +DJ,DJIBOUTI,"",11.60,43.15,95.101.34.109 +US,MANDEVILLE,LA,30.3898,-90.0068,184.28.127.55 +IN,THANE,MH,19.20,72.97,96.17.180.166 +US,CORNELIUS,NC,35.4867,-80.8605,72.246.247.30 +US,LINDENHURST,NY,40.6894,-73.3745,184.26.44.38 +DK,LYNGBY,"",55.77,12.52,23.65.29.106 +US,GRASSVALLEY,CA,39.2183,-120.9247,23.61.195.165 +US,FREDONIA,WI,43.4948,-87.9836,107.14.38.217 +LT,KLAIPEDA,"",55.72,21.12,77.67.27.235 +US,MOUNTAINHOME,ID,43.2609,-115.7811,206.104.149.146 +JP,URAWA,11,35.87,139.65,23.3.104.16 +US,RUSSELL,KS,38.8001,-98.8561,23.215.15.32 +US,SENECA,SC,34.7097,-82.9753,72.246.247.30 +US,WALLER,TX,30.0958,-95.9497,96.17.163.161 +JP,KANAGAWA,07,37.58,139.92,202.229.2.227 +US,BERNE,IN,40.6587,-84.8982,65.113.249.11 +SD,KHARTOUM,"",15.59,32.53,23.212.108.28 +US,FORTPIERCE,FL,27.4538,-80.5447,23.79.240.36 +RO,TARGUMURES,"",46.55,24.57,81.196.26.231 +DE,DILLENBURG,HE,50.73,8.28,95.100.169.105 +FR,EVRY,"",48.63,2.45,2.16.117.200 +GB,WIGAN,EN,53.53,-2.62,184.27.139.24 +DE,WORMS,RP,49.64,8.36,92.122.215.67 +US,BUNA,TX,30.4154,-93.9904,165.254.207.117 +US,NEDERLAND,TX,29.9798,-94.0164,107.14.36.199 +US,KERMAN,CA,36.7225,-120.1318,23.61.195.165 +US,LEVITTOWN,PA,40.1722,-74.822,23.67.242.156 +US,SLIDELL,LA,30.2612,-89.7907,184.28.127.58 +US,WELLSBURG,WV,40.2340,-80.5842,184.27.45.157 +US,WESTON,FL,26.0970,-80.3968,72.246.65.23 +US,DEQUINCY,LA,30.3794,-93.4077,23.5.164.146 +PL,STALOWAWOLA,"",50.57,22.05,80.15.235.156 +TR,ANTALYA,"",36.88,30.70,80.239.222.169 +US,STURGIS,MI,41.8205,-85.4431,23.63.227.214 +JP,OKIDATE,02,40.83,140.73,72.246.184.84 +US,GALLOWAY,OH,39.9347,-83.1992,96.17.9.14 +IL,REHOVOT,"",31.90,34.82,82.102.137.137 +US,ARNOLD,MO,38.4305,-90.3985,96.17.14.15 +US,COLVILLE,WA,48.6776,-117.7361,206.104.149.146 +CZ,MILICIN,"",49.57,14.67,92.122.215.89 +US,KRUM,TX,33.2811,-97.313,23.5.164.146 +US,BREA,CA,33.9296,-117.8713,23.61.195.163 +BG,HASKOVO,"",41.93,25.55,93.186.137.228 +FR,DREUX,"",48.73,1.37,2.16.117.200 +JP,TOYONAKA,27,34.78,135.47,23.3.104.20 +US,HERMITAGE,TN,36.1840,-86.6033,23.212.53.75 +US,SELLERSBURG,IN,38.3931,-85.7713,107.14.38.218 +AR,MENDOZA,"",-32.88,-68.82,190.98.167.230 +CN,XINGFA,ZJ,28.44,120.46,72.246.191.16 +US,SHERMAN,TX,33.6449,-96.5899,23.215.15.9 +ID,KALIMANTAN,"",1.62,109.18,96.17.180.177 +US,ADAIRSVILLE,GA,34.3646,-84.9223,72.246.247.5 +RE,REUNION,"",-21.07,55.27,2.20.243.42 +CN,LANGFANG,HE,39.52,116.70,184.84.239.186 +US,BURLEY,ID,42.5011,-113.8145,67.131.104.14 +US,OAKLAWN,IL,41.7129,-87.7521,23.67.60.223 +US,MARTINSBURG,WV,39.4645,-77.9544,184.27.45.150 +PL,TYLAWA,"",49.47,21.70,77.67.96.116 +US,CAMPHILL,PA,40.2398,-76.9205,23.192.161.16 +US,DEERFIELD,MA,42.5381,-72.6067,184.25.109.201 +GB,PRESTON,EN,51.57,-0.30,184.27.139.24 +MY,MELAKA,"",2.20,102.25,58.27.124.248 +US,KLAMATHFALLS,OR,42.2527,-121.8343,184.27.179.159 +US,STEAMBOATSPRINGS,CO,40.4850,-106.8312,184.84.180.101 +US,NEENAH,WI,44.1857,-88.529,107.14.38.218 +US,FLOWERYBRANCH,GA,34.1717,-83.8975,72.246.247.5 +US,ESSEX,MD,39.2951,-76.4387,23.192.161.16 +TH,BANGRAK,"",13.73,100.53,80.239.222.167 +US,LORIS,SC,34.0573,-78.931,184.51.35.215 +JP,JOETSU,15,37.10,138.25,210.175.5.177 +US,VOORHEES,NJ,39.8445,-74.9532,23.67.60.220 +MX,NAVOJOA,SON,27.10,-109.43,173.223.52.70 +GB,KINGSTONUPONHULL,EN,53.72,-0.33,173.222.211.203 +US,PIGEONFORGE,TN,35.7901,-83.5658,23.79.240.48 +AT,RIEDIMINNKREIS,"",48.22,13.50,77.67.27.235 +RO,BOTOSANI,"",47.75,26.67,81.196.26.236 +US,CLEVES,OH,39.2102,-84.7493,165.254.207.117 +US,MANHATTAN,KS,39.1124,-96.5124,23.215.15.9 +US,MINOT,ND,48.1414,-101.3873,107.14.38.218 +US,EASTHARTFORD,CT,41.7810,-72.6206,184.27.45.150 +US,NEWSMYRNABEACH,FL,28.9806,-81.0592,23.34.56.147 +US,MARINGOUIN,LA,30.4461,-91.569,204.93.43.168 +PL,KACZOR,"",50.58,23.15,2.22.52.102 +VN,TANG,"",22.62,104.17,92.122.189.85 +US,GRANDHAVEN,MI,43.0131,-86.1392,23.63.227.227 +FR,AIXENPROVENCE,"",43.53,5.43,2.16.117.200 +US,MONTGOMERYVILLAGE,MD,39.1743,-77.1915,23.192.161.30 +CZ,ZBRASLAV,"",49.97,14.40,92.122.215.67 +US,MANVEL,TX,29.4777,-95.3591,184.28.23.24 +PL,CIS,"",51.28,20.22,2.22.52.105 +US,CLIFTONFORGE,VA,37.8336,-79.7447,184.27.45.157 +US,HASTINGS,MN,44.6820,-92.8732,63.151.29.15 +US,MANTENO,IL,41.2496,-87.8949,184.27.120.65 +MY,JOHORBAHRU,"",1.47,103.75,96.17.180.166 +CA,SUDBURY,ON,46.50,-80.97,67.69.197.92 +TR,ATAKOY,"",38.73,30.55,193.45.15.198 +IR,ZANJAN,"",36.66,48.49,96.17.182.136 +CA,SAINTCATHARINES,ON,43.17,-79.23,72.246.43.215 +US,SHELBY,NC,35.3693,-81.5992,184.27.45.150 +IN,MATHURA,UP,27.50,77.68,124.124.252.160 +US,THEDALLES,OR,45.5517,-121.219,184.27.179.187 +US,RIOGRANDE,NJ,39.0203,-74.8749,184.26.44.38 +SN,MEDINA,"",14.68,-17.45,81.52.201.98 +US,VIRDEN,IL,39.5001,-89.8147,65.113.249.11 +TR,IZMIT,"",40.77,29.92,193.45.15.198 +GR,PATRA,"",38.25,21.73,80.157.169.4 +US,BOGALUSA,LA,30.7419,-89.8828,96.17.153.162 +PL,GOLENIOW,"",53.57,14.82,2.22.52.101 +DE,HAND,NW,50.80,6.05,2.20.142.166 +SB,HONIARA,"",-9.43,159.95,173.197.192.214 +US,ADA,OK,34.7965,-96.7902,23.215.15.22 +CZ,KOLIN,"",50.02,15.20,23.62.237.133 +US,DOWNSVILLE,WI,44.7748,-91.9318,23.74.8.24 +US,ROSEBURG,OR,43.2103,-123.4286,206.104.149.146 +TH,PHUKET,"",7.88,98.40,184.84.180.68 +RO,RAMNICUSARAT,"",45.38,27.05,23.62.237.135 +AT,KLOSTERNEUBURG,"",48.30,16.32,46.33.70.104 +US,OAKCREEK,WI,42.8802,-87.9005,107.14.38.224 +CZ,USTINADLABEM,"",50.67,14.03,23.62.237.135 +JP,WAKAYAMA,30,34.09,135.09,65.116.149.102 +UA,MAKSIM,"",51.20,30.95,92.122.215.67 +FR,BAGNOLET,"",48.87,2.42,2.16.117.190 +US,CHISHOLM,MN,47.5741,-92.8546,23.215.15.32 +US,COTTONDALE,AL,33.1618,-87.3671,192.204.82.239 +US,WILKESBARRE,PA,41.2438,-75.8848,184.25.157.169 +US,FLANDERS,NJ,40.8455,-74.7097,184.26.44.38 +CA,PORTPERRY,ON,44.10,-78.93,72.246.43.215 +RU,VYATKA,"",58.47,35.67,80.239.237.80 +NO,SKI,"",59.72,10.83,2.21.240.40 +IL,JERUSALEM,"",31.77,35.23,96.17.163.165 +MY,LABUAN,"",5.28,115.24,23.15.10.91 +US,HONESDALE,PA,41.6240,-75.2495,184.26.44.38 +US,MAPLESHADE,NJ,39.9516,-74.9946,184.26.44.38 +HK,STANLEY,"",22.22,114.20,96.16.12.216 +US,MAUMELLE,AR,34.8504,-92.3916,96.16.7.101 +DE,NEUBIBERG,BY,48.08,11.68,195.95.193.134 +US,PERTHAMBOY,NJ,40.5225,-74.2746,184.26.44.38 +US,TYRONE,PA,40.6572,-78.2228,184.26.44.38 +US,LILBURN,GA,33.8704,-84.1214,72.246.247.5 +US,KEASBEY,NJ,40.5142,-74.3145,184.26.44.38 +CZ,OPAVA,"",49.95,17.92,23.62.237.137 +MX,VERACRUZ,VER,19.20,-96.13,165.254.1.206 +US,GOOSECREEK,SC,32.9946,-79.999,23.79.240.44 +MY,KOTAKINABALU,"",5.98,116.07,96.17.180.155 +US,WALNUTRIDGE,AR,36.1072,-90.9128,96.16.7.120 +US,SHAMOKIN,PA,40.7842,-76.5797,184.26.44.42 +RO,PETROSANI,"",43.72,25.63,88.221.93.157 +US,OSSEO,MN,45.0992,-93.4917,23.67.60.220 +US,CLEMMONS,NC,36.0036,-80.372,209.18.41.23 +BD,SYLHET,"",24.53,91.87,96.17.180.166 +US,SELAH,WA,46.8035,-120.6744,23.212.59.85 +FR,VILLEPINTE,"",48.97,2.53,217.212.239.109 +US,GADSDEN,AL,34.0512,-85.9648,23.212.53.75 +US,RAILROAD,PA,39.7607,-76.6988,23.192.161.16 +CN,LUOYANG,HA,34.68,112.45,184.50.87.178 +US,LUTZ,FL,28.1415,-82.4686,23.34.56.147 +US,HARRINGTON,DE,38.9242,-75.6177,23.192.161.21 +CN,HUIZHOU,GD,23.08,114.40,184.50.87.178 +VU,LOLTONG,"",-15.55,168.13,88.221.15.111 +US,PORTORCHARD,WA,47.5378,-122.5894,165.254.1.165 +US,HAMDEN,CT,41.3720,-72.9418,184.25.109.213 +US,MENOMONIE,WI,44.8570,-92.0071,184.85.215.165 +US,LAKEINTHEHILLS,IL,42.1832,-88.3453,107.14.38.227 +US,GREENSBURG,IN,39.3206,-85.4768,23.67.60.217 +US,DACULA,GA,33.9712,-83.8738,72.246.247.30 +US,WHITETHORN,CA,40.0707,-124.0094,63.151.119.16 +CN,LANTIAN,GD,23.87,114.22,107.14.44.212 +US,NORWOOD,MA,42.1844,-71.1953,184.25.109.213 +US,MERRITTISLAND,FL,28.2972,-80.6751,23.33.186.134 +US,SUMMERSVILLE,WV,38.3477,-80.8565,184.27.45.150 +US,BROOKINGS,SD,44.3014,-96.8692,23.63.227.227 +CA,CHICOUTIMI,QC,48.43,-71.07,67.69.197.106 +US,DARDANELLE,AR,35.1648,-93.2292,23.79.240.37 +AR,ALVEAR,"",-33.07,-60.62,190.98.167.220 +US,LOMALINDA,CA,34.0484,-117.2603,184.50.26.179 +US,REDOAK,TX,32.5150,-96.8153,96.16.7.120 +US,TOOELE,UT,40.5393,-112.3531,23.215.15.9 +IL,YAKUM,"",32.25,34.85,212.143.162.162 +US,HOCKLEY,TX,30.0437,-95.8249,96.17.163.165 +TR,KONYA,"",37.87,32.52,88.221.93.157 +DE,SOLTAU,NI,52.98,9.83,92.122.207.179 +US,TURTLECREEK,PA,40.4160,-79.8228,72.247.10.237 +US,MASONCITY,IA,43.1451,-93.1385,23.63.227.214 +ID,MENTENG,"",-6.22,106.83,23.0.162.21 +AR,SANMARTIN,"",-34.57,-58.55,23.61.195.149 +US,PORTNECHES,TX,29.9818,-93.9497,184.26.93.116 +US,ERIE,CO,40.0782,-105.0312,184.84.180.98 +US,SWANSBORO,NC,34.7017,-77.1399,209.18.41.23 +RU,BAZA,"",60.60,40.15,2.21.240.40 +US,BLAIRSVILLE,PA,40.4741,-79.2341,23.192.161.16 +SK,KOSICE,"",48.72,21.25,23.62.237.138 +US,BUCYRUS,OH,40.8150,-82.9723,107.14.38.217 +US,WHEELING,IL,42.1311,-87.9211,107.14.38.227 +PR,CAGUAS,"",18.2357,-66.0369,72.246.65.38 +KR,SILLIMDONG,"",37.23,128.08,112.175.42.120 +ES,LINARES,"",40.58,-5.92,92.122.188.163 +US,SKOKIE,IL,42.0355,-87.7304,107.14.38.218 +US,MOUNTCLEMENS,MI,42.5974,-82.8814,69.22.154.219 +US,BEULAVILLE,NC,34.9398,-77.7738,63.151.29.12 +US,RAINBOWCITY,AL,33.9427,-86.0638,23.79.240.36 +FR,BOUGIVAL,"",48.87,2.13,2.16.117.190 +US,HONDO,TX,29.4252,-99.1005,96.17.163.161 +TR,ACI,"",39.73,34.18,80.239.237.231 +US,WESTHAVERSTRAW,NY,41.2083,-73.9777,184.26.44.42 +ID,SOLO,"",-7.58,110.83,23.0.162.21 +GB,WINNERSH,EN,51.42,-0.87,88.221.87.94 +US,SAINTJOHNSBURY,VT,44.4161,-71.9767,63.141.200.241 +IN,AURANGABAD,MH,19.88,75.33,117.239.189.115 +RU,URENGOY,"",65.97,78.37,2.21.240.61 +DE,GELSENKIRCHEN,NW,51.52,7.05,2.20.142.173 +US,EMMETT,ID,43.9488,-116.5537,192.80.13.117 +US,SIDNEY,OH,40.2838,-84.1519,107.14.38.218 +US,CADILLAC,MI,44.2433,-85.5328,23.63.227.214 +US,HOLLIS,NY,40.7171,-73.7686,24.143.199.188 +US,ALVARADO,TX,32.4269,-97.2192,23.5.164.143 +ID,RUNGKUT,"",-7.33,112.77,23.0.162.54 +US,MOKENA,IL,41.5339,-87.885,23.67.60.220 +US,DONORA,PA,40.1785,-79.8649,23.192.161.16 +FR,LORIENT,"",47.75,-3.37,2.16.117.200 +US,WHEATLAND,WY,42.0178,-105.0984,23.212.53.75 +RU,SURGUT,"",53.93,51.23,2.21.240.61 +AT,AMSTETTEN,"",48.12,14.87,23.14.94.224 +RU,VSI,"",60.05,32.38,80.239.237.93 +US,JORDAN,MN,44.6530,-93.5873,23.67.60.222 +US,GRANGER,IN,41.7389,-86.1232,23.67.60.220 +UA,SUDAK,CRIMEA,44.85,34.97,92.122.189.85 +US,LINCOLNSHIRE,IL,42.1941,-87.9317,23.67.60.217 +US,RIVERHEAD,NY,40.9530,-72.642,184.26.44.40 +TR,CANAKKALE,"",40.15,26.40,80.239.237.230 +US,CRAWFORDVILLE,FL,30.1758,-84.3754,184.84.180.98 +FM,POHNPEI,"",8.0001,147.0001,96.17.70.93 +US,TEAGUE,TX,31.6463,-96.2786,184.28.23.24 +US,CANONSBURG,PA,40.2740,-80.1538,184.27.45.162 +US,SOLON,OH,41.3834,-81.4439,107.14.38.224 +US,FREDERICKSBURG,VA,38.2993,-77.4869,96.6.47.120 +US,FOXLAKE,IL,42.3951,-88.1755,23.67.60.222 +IR,ESFAHAN,"",32.66,51.67,96.17.182.136 +US,WHITEWATER,WI,42.8048,-88.7446,184.85.215.170 +US,HARRISONVILLE,MO,38.6236,-94.3109,205.185.195.170 +AT,SCHWAZ,"",47.33,11.70,46.33.70.97 +DK,RY,"",56.08,9.77,95.101.2.122 +US,STAUNTON,VA,38.1221,-79.0825,184.26.44.42 +US,HUGHSON,CA,37.5927,-120.8607,23.216.10.54 +IN,MOHALI,PB,30.78,76.69,23.211.135.66 +US,CALHOUN,GA,34.4962,-84.9097,72.246.247.5 +US,CHILDRESS,TX,34.4383,-100.1979,23.5.164.146 +US,BELOIT,WI,42.5474,-89.1358,184.85.215.165 +US,PORTTOWNSEND,WA,48.0260,-122.8596,24.244.17.205 +KZ,BALKHASH,"",46.67,79.33,217.212.227.25 +CA,SAINTETHERESE,QC,45.63,-73.85,67.69.197.95 +US,FINDLAY,OH,41.0444,-83.65,209.18.41.27 +US,IMPERIAL,MO,38.3874,-90.4319,96.17.14.16 +FR,CACHAN,"",48.78,2.33,2.16.117.190 +US,MORAGA,CA,37.8315,-122.1123,23.61.195.163 +US,NEWBERLIN,WI,42.9726,-88.1602,23.63.227.214 +IN,JHANSI,UP,25.43,78.58,96.17.182.136 +US,DEERFIELDBEACH,FL,26.3109,-80.1005,23.79.240.36 +US,GOLDEN,CO,39.7164,-105.2437,63.235.21.141 +US,WESTMONROE,LA,32.5473,-92.2007,184.84.180.92 +US,TIFFIN,OH,41.1540,-83.2212,184.27.45.150 +CZ,BENESOV,"",49.78,14.68,23.62.237.135 +IN,TIRUCHENGODU,TN,11.38,77.93,117.239.240.76 +CA,WELLAND,ON,42.98,-79.25,72.246.43.237 +US,GREENBELT,MD,39.0047,-76.8758,23.192.161.21 +IR,SHIRAZ,"",29.61,52.54,96.17.182.136 +SG,WOODLANDS,"",1.44,103.78,23.5.165.168 +AU,MOUNTWAVERLEY,VIC,-37.88,145.13,184.84.238.30 +GB,SHEFFIELD,EN,53.37,-1.50,173.222.211.190 +US,INDIALANTIC,FL,28.1099,-80.5786,23.33.186.134 +US,MORRISPLAINS,NJ,40.8475,-74.4826,184.26.44.42 +US,TILLAMOOK,OR,45.4813,-123.6742,184.27.179.165 +US,LUDINGTON,MI,43.9737,-86.4001,23.63.227.227 +US,NORTHBROOK,IL,42.1255,-87.8406,165.254.207.111 +AU,CEDUNA,SA,-32.12,133.67,23.205.117.4 +IT,PISA,"",43.72,10.38,2.18.240.95 +CN,QUZHOU,ZJ,28.97,118.87,72.246.191.19 +US,PERHAM,MN,46.6280,-95.6018,198.63.196.223 +US,BRADY,TX,31.0630,-99.3372,23.215.15.9 +US,BENSALEM,PA,40.1068,-74.9379,184.27.45.157 +US,MONTOURSVILLE,PA,41.2816,-76.8857,23.67.242.139 +US,HODGENVILLE,KY,37.5720,-85.7077,23.79.240.36 +US,BRYSONCITY,NC,35.5051,-83.603,96.6.47.106 +FI,RAAHE,"",64.68,24.48,46.33.64.237 +US,SAINTAUGUSTINE,FL,29.8475,-81.2787,80.239.237.231 +AF,ENAW,"",37.02,70.13,23.212.108.28 +US,GRAYSON,GA,33.8909,-83.9601,72.246.247.5 +CN,DEQING,ZJ,30.55,120.08,117.103.188.218 +BR,AMERICANA,SP,-22.74,-47.33,201.6.5.13 +US,CARTERSVILLE,GA,34.1498,-84.8279,23.79.240.36 +CN,XIANGTAN,HN,27.85,112.90,184.50.87.178 +JP,TOTTORI,31,35.50,134.23,117.104.139.162 +US,BELLEVIEW,FL,29.0589,-82.0588,23.34.56.142 +DE,ETTLINGEN,BW,48.95,8.40,92.122.207.164 +US,CREEDMOOR,NC,36.1139,-78.6265,184.27.45.150 +MQ,FORTDEFRANCE,"",14.60,-61.08,23.74.2.7 +CZ,TRINEC,"",49.68,18.65,23.62.237.137 +CN,HAIDIAN,BJ,39.98,116.30,184.51.199.145 +US,PAGOSASPRINGS,CO,37.1765,-106.8964,23.212.53.64 +US,STANTON,IA,40.9868,-95.099,65.113.249.8 +US,WAUNAKEE,WI,43.1852,-89.4585,23.63.227.214 +US,DUNDALK,MD,39.2639,-76.497,23.67.242.139 +US,SOUTHINGTON,CT,41.6129,-72.8728,184.28.17.76 +US,EUCLID,OH,41.5709,-81.5266,96.17.9.14 +US,LAKEOSWEGO,OR,45.4082,-122.6837,23.212.59.63 +US,MONTICELLO,IN,40.8005,-86.6926,23.67.60.217 +US,MORROBAY,CA,35.4012,-120.7993,23.216.10.78 +NZ,GREYMOUTH,"",-42.47,171.20,219.88.186.167 +HN,LACEIBA,"",13.80,-87.28,23.74.2.7 +US,PARKHILLS,MO,37.8386,-90.5648,204.93.47.220 +ZA,MIDRAND,"",-25.96,28.14,41.193.163.53 +US,PERU,IL,41.3434,-89.1366,184.27.120.65 +IN,TIRUVANNAMALAI,TN,12.22,79.07,184.25.157.155 +US,ARAB,AL,34.3320,-86.4894,204.2.243.135 +FI,VAASA,"",63.10,21.60,2.21.240.40 +CA,NORTHBATTLEFORD,SK,52.77,-108.28,184.150.187.237 +US,ROSEMOUNT,MN,44.7330,-93.0593,184.85.215.170 +AU,DONCASTER,VIC,-37.78,145.13,60.254.143.219 +NO,HORTEN,"",59.41,10.47,2.21.240.40 +IN,VADODARA,GJ,22.30,73.20,23.57.69.159 +RU,PODOLSK,"",55.43,37.55,2.21.240.61 +US,CANANDAIGUA,NY,42.8488,-77.3077,209.18.41.23 +US,HUTTO,TX,30.5231,-97.5348,63.141.200.241 +US,ROBESONIA,PA,40.3646,-76.1416,184.27.45.157 +US,MANKATO,MN,44.1156,-93.9984,184.85.215.165 +CN,SUZHOU,JS,31.31,120.62,72.246.191.16 +US,ALTAMONTESPRINGS,FL,28.6657,-81.3692,23.34.56.147 +US,LAVEEN,AZ,33.3032,-112.1882,63.226.34.165 +AU,CHELTENHAM,VIC,-37.97,145.05,184.84.238.9 +US,YOUNGSVILLE,LA,30.0840,-92.0053,23.215.15.9 +DE,KAMPLINTFORT,NW,51.50,6.53,92.122.189.85 +US,SANGER,TX,33.3623,-97.2076,23.5.164.146 +US,POST,TX,33.1799,-101.2984,205.185.195.170 +WS,APIA,"",-13.83,-171.73,63.217.8.137 +GB,STOURBRIDGE,EN,52.47,-2.13,195.245.125.107 +JP,MIYAGI,01,43.37,143.80,202.229.2.212 +US,SULPHUR,OK,34.4826,-96.973,107.14.43.30 +BD,MOLLA,"",23.80,90.92,96.17.180.166 +US,PONTEVEDRABEACH,FL,30.2396,-81.3855,184.51.145.7 +AT,HOCHSTRASS,"",48.13,15.97,195.145.147.108 +US,SUNNYSIDE,NY,40.7442,-73.9205,24.143.199.156 +US,CARLJUNCTION,MO,37.2082,-94.5634,209.170.117.178 +JP,FUSSA,13,35.74,139.33,23.15.1.67 +US,WESLACO,TX,26.1701,-97.9943,184.26.93.116 +US,IONIA,MI,43.0186,-85.0515,23.63.227.227 +US,CLIFTONPARK,NY,42.8536,-73.7851,107.14.38.218 +US,FARIBAULT,MN,44.3009,-93.28,23.79.255.153 +GB,WALFORD,EN,51.88,-2.60,23.67.255.106 +US,MERRILL,WI,45.2167,-89.8732,92.122.189.114 +US,MILTON,FL,30.7972,-86.9425,96.17.153.162 +US,MATAWAN,NJ,40.4118,-74.2499,23.67.242.139 +MY,KAMPAR,"",4.30,101.15,203.106.85.113 +CZ,SKUTEC,"",49.85,16.00,23.62.237.135 +DE,HATTINGEN,NW,51.40,7.17,195.145.147.101 +US,VILLARICA,GA,33.7153,-84.9212,23.79.240.37 +US,KENNER,LA,29.9910,-90.2553,96.17.153.157 +US,WESTBURY,NY,40.7560,-73.5739,184.26.44.38 +US,PHARR,TX,26.1569,-98.1914,184.26.93.116 +US,SAINTCLAIRSVILLE,OH,40.0964,-80.9221,23.192.161.21 +KZ,AKMOLA,"",42.67,70.97,80.239.237.80 +AT,TULLN,"",48.33,16.05,46.33.70.97 +CH,BUCHS,"",47.45,8.43,2.16.217.206 +US,FAIRLESSHILLS,PA,40.1749,-74.8541,23.79.240.37 +VC,KINGSTOWN,"",13.13,-61.22,23.74.2.12 +IT,LIMANA,"",46.09,12.14,2.18.240.114 +US,BAKER,LA,30.5884,-91.1684,23.215.15.32 +US,ARCHBALD,PA,41.5069,-75.5327,184.27.45.157 +US,CAMERON,MO,39.6971,-94.2694,209.170.117.178 +PW,PALAU,"",7.5002,134.5003,23.76.205.111 +NZ,TASMAN,"",-41.20,173.05,203.96.118.166 +US,MAYFIELD,KY,36.7237,-88.6867,69.31.132.233 +US,WILLIAMSTOWN,NJ,39.6478,-74.9514,184.26.44.38 +JP,SHOWA,05,39.87,140.08,72.246.191.19 +US,GROVECITY,PA,41.1722,-80.0759,65.121.209.141 +US,BETHELPARK,PA,40.3204,-80.0367,96.6.47.106 +US,MENDENHALL,MS,31.9629,-89.7927,96.17.153.157 +US,GARRETT,IN,41.3275,-85.1414,23.74.8.24 +US,LANDRUM,SC,35.1429,-82.1944,63.216.54.236 +ES,MAQUINAS,"",37.70,-4.12,80.239.237.231 +US,PLANTCITY,FL,27.9421,-82.1345,165.254.205.7 +BR,SAOJOSEDOSCAMPOS,SP,-23.18,-45.88,200.174.107.42 +US,BALACYNWYD,PA,40.0138,-75.23,184.27.45.157 +US,FLOWERMOUND,TX,33.0308,-97.0985,23.215.15.32 +US,OLMSTEDFALLS,OH,41.3740,-81.9211,96.17.9.14 +ID,MOJOKERTO,"",-7.47,112.43,23.0.162.54 +US,HAMMONTON,NJ,39.6370,-74.7602,23.67.60.217 +US,HERMOSABEACH,CA,33.8651,-118.3964,184.50.26.185 +US,VALDEZ,AK,60.9721,-146.4265,184.27.179.159 +AU,MASCOT,NSW,-33.93,151.20,23.62.8.21 +CZ,VITKOVICE,"",50.12,13.30,23.62.237.137 +AU,SOUTHBRISBANE,QLD,-27.48,153.02,23.62.8.25 +US,LOVESPARK,IL,42.3453,-89.0028,23.67.60.220 +RU,SOVETSK,"",53.94,37.63,2.20.142.166 +US,AVONLAKE,OH,41.4945,-82.016,107.14.32.235 +US,LYNDHURST,NJ,40.7971,-74.1109,23.67.60.222 +VI,CHRISTIANSTED,"",17.7488,-64.7039,23.34.56.142 +RO,SUCEAVA,"",47.63,26.25,81.196.26.198 +ID,BALIKPAPAN,"",-1.28,116.83,23.0.162.21 +US,CHRISTIANSBURG,VA,37.1299,-80.4092,96.6.47.120 +IR,AHVAZ,"",31.33,48.69,96.17.182.130 +US,ZACHARY,LA,30.6604,-91.1897,23.215.15.22 +MX,DURANGO,DUR,24.03,-104.67,173.223.52.67 +US,SAVOY,IL,40.0399,-88.2643,69.22.154.219 +AT,LEOBEN,"",47.38,15.10,23.62.237.133 +JP,NAKASHIMA,07,37.08,140.95,184.51.199.132 +US,WAUSEON,OH,41.5765,-84.1519,65.113.249.11 +US,HAMEL,MN,45.0776,-93.5754,23.67.60.220 +TR,VAN,"",38.50,43.38,88.221.93.150 +US,RINGGOLD,GA,34.8973,-85.1353,23.79.240.36 +DE,BIEDENKOPF,HE,50.92,8.53,23.14.94.228 +US,MULLINS,SC,34.1893,-79.2589,209.18.41.27 +AU,GOLDCOAST,QLD,-28.00,153.43,23.209.183.50 +FR,BESANCON,"",47.25,6.03,2.16.117.190 +US,MILLHALL,PA,41.0898,-77.4915,23.192.161.30 +IN,MAMALLAPURAM,TN,12.63,80.17,117.239.240.96 +US,KOKOMO,IN,40.5251,-86.1768,23.74.8.24 +FR,SAINTANDRELESVERGERS,"",48.28,4.05,2.16.117.190 +IT,NOLA,"",40.92,14.55,195.22.200.221 +DE,GARCHING,BY,48.13,12.60,23.14.94.220 +US,GREATBEND,KS,38.3903,-98.8296,23.215.15.9 +US,WESTPOINT,MS,33.6681,-88.7618,23.79.240.36 +US,CHESTER,VA,37.3415,-77.403,184.27.45.150 +DE,HAMM,NW,51.68,7.80,92.122.215.89 +US,LAMBERTVILLE,MI,41.7532,-83.627,23.63.227.214 +NO,ASKER,"",59.83,10.43,213.155.156.206 +US,CHECOTAH,OK,35.4498,-95.4869,174.76.226.117 +CZ,PRELOUC,"",50.03,15.57,23.62.237.135 +NL,ENSCHEDE,"",52.22,6.90,95.101.2.112 +US,MENDOCINO,CA,39.3125,-123.7473,23.61.195.165 +US,EQUALITY,IL,37.6964,-88.3404,205.185.195.170 +FR,MOUANSSARTOUX,"",43.62,6.97,81.52.201.98 +CA,SAINTJOHN,NB,45.27,-66.07,72.246.43.215 +US,NORTHCHARLESTON,SC,32.8537,-79.9839,184.27.45.150 +US,NORTHDARTMOUTH,MA,41.6650,-71.0141,184.29.107.38 +US,ELIZABETHCITY,NC,36.3018,-76.2238,63.151.29.15 +JP,HAKATA,27,34.48,135.43,23.3.74.113 +US,DALEVILLE,VA,37.4044,-79.9221,184.26.44.38 +TR,BUYUKCEKMECE,"",41.03,28.58,77.67.29.116 +JP,KAGAWA,35,34.07,131.03,117.104.139.162 +KR,ULSAN,"",35.54,129.32,125.56.214.169 +US,VESTAL,NY,42.0463,-76.0314,107.14.38.227 +DK,VEJLE,"",55.27,10.32,95.101.2.112 +US,TRIANGLE,VA,38.5576,-77.3506,184.27.45.157 +HK,SHEUNGWAN,"",22.28,114.15,58.27.124.248 +US,LEECHBURG,PA,40.6690,-79.6041,23.192.161.16 +CA,THOMPSON,MB,55.75,-97.87,23.74.8.8 +US,GRAHAM,WA,47.0168,-122.2798,23.212.59.63 +AU,NUNAWADING,VIC,-37.82,145.17,150.101.152.245 +US,DOVERPLAINS,NY,41.7225,-73.5844,184.26.44.38 +HK,TAIPO,"",22.45,114.17,23.76.205.90 +CO,BUCARAMANGA,"",4.98,-74.55,200.14.44.108 +US,BRICK,NJ,40.0399,-74.1255,23.67.242.156 +US,LONOKE,AR,34.7557,-91.9476,165.254.138.165 +UA,IVANOFRANKIVSK,"",48.92,24.71,80.239.222.190 +US,NORTHLITTLEROCK,AR,34.7664,-92.255,173.197.194.159 +CH,LIESTAL,"",47.47,7.73,23.14.94.220 +US,PLAINVIEW,TX,34.1983,-101.7867,23.5.164.146 +MN,KHANUUL,"",48.02,114.67,92.122.215.89 +US,SMITHERS,WV,38.1675,-81.3038,184.28.17.76 +FO,THORSHAVN,"",62.02,-6.77,23.215.60.64 +IN,PUDUCHERRY,PY,11.93,79.83,124.124.252.153 +PL,STARACHOWICE,"",51.07,21.07,80.15.235.163 +US,ISHPEMING,MI,46.4126,-87.6827,65.113.249.11 +AT,THAL,"",48.23,15.40,195.145.147.107 +US,AMESBURY,MA,42.8537,-70.9439,184.25.109.200 +KZ,USTKAMENOGORSK,"",49.98,82.61,2.21.240.40 +US,ALACHUA,FL,29.8204,-82.4896,63.216.54.231 +IN,WARANGAL,AP,18.00,79.58,213.248.108.233 +CH,REGENSDORF,"",47.43,8.47,193.247.167.214 +RU,SEVERSK,"",56.62,84.88,80.239.237.93 +US,BAYVILLE,NJ,39.9119,-74.2096,184.26.44.38 +US,TOWSON,MD,39.4025,-76.6344,23.192.161.16 +US,YORKVILLE,IL,41.5984,-88.4334,23.67.60.222 +US,PURCELL,OK,34.9880,-97.4962,23.5.164.143 +US,COPPERASCOVE,TX,31.2607,-98.1131,107.14.43.29 +FI,JYVASKYLA,"",62.23,25.73,82.96.58.102 +RU,KOSTROMA,"",57.77,40.93,2.21.240.61 +CA,GIMLI,MB,50.63,-97.00,184.27.120.50 +FR,SAINTMAURICE,"",48.82,2.43,2.16.117.190 +TR,BORNOVA,"",38.45,27.23,2.16.153.150 +US,THORNDALE,PA,40.0002,-75.7594,184.26.44.40 +US,ALBION,NE,41.7470,-98.0152,198.173.2.247 +CY,STROVOLOS,"",35.15,33.34,79.140.94.243 +AT,BREGENZ,"",47.50,9.77,195.145.147.107 +CZ,DUKOVANY,"",49.08,16.20,23.62.237.138 +RU,SMOLENSK,"",54.78,32.04,2.21.240.61 +IN,MODASA,GJ,23.47,73.30,117.239.189.110 +US,CONNEAUT,OH,41.8949,-80.5816,204.93.39.36 +US,FORTGEORGEGMEADE,MD,39.0822,-76.7601,23.192.161.21 +US,HOLIDAY,FL,28.1960,-82.7256,23.33.186.101 +CA,DARTMOUTH,NS,44.67,-63.57,67.69.197.95 +US,WESTLIBERTY,KY,37.9370,-83.2694,184.27.45.150 +US,CEDARRAPIDS,IA,41.9747,-91.658,23.79.255.153 +US,WARNERROBINS,GA,32.5887,-83.6576,184.51.35.226 +AE,RASALKHAIMAH,"",25.79,55.94,195.245.125.117 +BR,BAURU,SP,-22.32,-49.07,200.174.107.42 +US,HUBBARD,OH,41.1682,-80.5712,107.14.38.217 +VN,TRUONGDINH,"",9.92,106.13,96.17.180.177 +PL,SLUBICE,"",52.37,19.95,2.22.52.102 +DE,VECHTA,NI,52.72,8.28,195.95.193.132 +FR,VIRYCHATILLON,"",48.67,2.38,2.16.117.200 +US,WESTMILFORD,NJ,41.0879,-74.3771,184.26.44.38 +DE,EMMENDINGEN,BW,48.13,7.85,195.145.147.107 +CA,FERGUS,ON,43.70,-80.37,65.116.149.102 +RS,DOLOVO,"",42.57,20.56,23.14.94.228 +CA,STONEYCREEK,ON,43.22,-79.75,72.246.43.237 +US,GROVETOWN,GA,33.5121,-82.2984,184.27.45.157 +KG,JALALABAD,"",40.93,73.00,80.239.217.231 +US,CRESTVIEW,FL,30.7849,-86.5136,184.27.45.157 +US,BEACHWOOD,OH,41.4698,-81.5121,96.17.9.14 +NP,PALPA,"",27.87,83.48,23.205.118.109 +RO,TIMIS,"",48.03,26.98,80.239.149.123 +PL,LIS,"",51.72,18.12,2.22.52.105 +RU,VOLGODONSK,"",47.51,42.15,213.155.156.206 +US,SOUTHPLAINFIELD,NJ,40.5745,-74.4149,184.28.17.76 +NO,TAFJORD,"",62.25,7.43,82.96.58.85 +TH,DHONBURI,"",13.72,100.48,110.164.11.192 +SI,GORA,"",46.13,14.80,194.25.95.225 +US,BATESBURG,SC,33.9549,-81.564,204.2.243.143 +PH,MONTE,"",18.03,120.52,58.71.107.119 +CR,DESAMPARADOS,"",9.90,-84.07,72.246.65.38 +RO,PLOIESTI,"",44.95,26.02,2.22.52.102 +SK,SLIAC,"",48.62,19.18,23.62.237.138 +US,ULYSSES,KS,37.5622,-101.308,23.215.15.9 +FR,DORDIVES,"",48.15,2.77,72.246.65.26 +US,DUARTE,CA,34.1397,-117.9765,184.50.26.201 +US,HUNTINGTOWN,MD,38.6096,-76.6075,23.192.161.21 +JP,KAWAJIMA,11,36.01,139.48,23.3.104.29 +US,STANFORD,CA,37.4162,-122.1722,23.61.195.165 +HU,KOBANYA,"",47.48,19.17,23.14.94.220 +US,RUPERT,ID,42.6416,-113.6373,67.131.104.6 +RU,SAVVA,"",54.08,43.07,213.155.156.212 +US,HOQUIAM,WA,47.0202,-123.8781,23.212.59.85 +TR,MANISA,"",38.60,27.43,193.45.15.199 +AT,MARIAENZERSDORF,"",48.10,16.28,23.74.24.66 +US,BEECHGROVE,IN,39.7156,-86.0931,23.67.60.223 +US,GLENPOOL,OK,35.9484,-96.0042,23.215.15.22 +SE,RINGON,O,57.72,11.97,2.21.240.61 +RU,CHELIABINSK,"",55.17,61.40,2.21.240.61 +US,NEWBURYPORT,MA,42.8125,-70.9023,184.25.109.200 +US,EDISON,NJ,40.5175,-74.3955,96.17.180.175 +US,HILTONHEADISLAND,SC,32.2161,-80.7525,23.61.195.165 +US,ROCKWOOD,MI,42.0725,-83.2169,23.67.60.222 +CN,MADIAN,HA,34.23,112.58,72.246.191.16 +US,WABASH,IN,40.7414,-85.8426,23.67.60.222 +US,WINSTED,MN,44.9422,-94.0752,23.74.8.24 +HK,SAIKUNG,"",22.38,114.27,184.84.239.186 +US,HILLSVILLE,VA,36.7370,-80.6935,184.29.107.20 +US,HEMPSTEAD,NY,40.7141,-73.6003,23.62.237.133 +US,BARNWELL,SC,33.2109,-81.3471,72.246.247.30 +US,CARENCRO,LA,30.3321,-92.0496,96.17.153.157 +US,GLENBURNIE,MD,39.1605,-76.5823,23.192.161.30 +PL,KIELCE,"",50.83,20.67,80.15.235.163 +US,PARKRIVER,ND,48.4562,-97.7315,63.216.54.231 +US,SORRENTO,FL,28.8172,-81.4964,23.79.240.48 +US,HURRICANE,WV,38.3842,-81.9872,184.28.17.55 +PL,MAJORAT,"",51.20,21.08,2.22.52.105 +US,CHOCOWINITY,NC,35.4436,-77.0766,63.151.29.15 +US,PARAGOULD,AR,36.0612,-90.5641,204.93.47.220 +US,WITTENBERG,WI,44.8179,-89.172,23.63.227.214 +US,CARBONDALE,IL,37.7248,-89.197,23.74.8.24 +KZ,PAVLODAR,"",52.30,76.95,213.155.156.208 +ID,KELAPAGADING,"",-6.17,106.88,23.0.162.21 +AT,TIROL,"",47.70,15.55,195.145.147.101 +US,COTTAGEGROVE,WI,43.0705,-89.1909,184.85.215.165 +US,CANFIELD,OH,41.0050,-80.7708,184.25.157.169 +CL,CONCEPCION,"",-36.83,-73.05,200.91.22.116 +US,BERTHOUD,CO,40.2947,-105.104,23.212.53.64 +US,IRWIN,PA,40.3156,-79.724,23.192.161.16 +DE,REISER,TH,51.25,10.47,195.145.147.108 +NZ,PARNELL,"",-36.87,174.78,184.28.126.7 +CA,HANNA,AB,51.63,-111.92,66.185.88.190 +US,WOODWAY,TX,31.5103,-97.2578,107.14.43.29 +CN,YINCHUAN,NX,38.47,106.27,72.246.191.16 +FR,GOLFEJUAN,"",43.57,7.08,88.221.83.140 +VE,BARQUISIMETO,"",10.07,-69.33,72.246.65.26 +US,HAVRE,MT,48.7104,-109.7919,165.254.207.117 +US,LEAVENWORTH,KS,39.2650,-95.0476,23.77.234.11 +JP,OI,11,35.85,139.52,72.246.191.16 +MT,BKARA,"",35.90,14.46,79.140.94.234 +US,HEBERSPRINGS,AR,35.6262,-92.064,23.5.164.143 +RU,MOSHKOVO,"",53.89,38.71,80.239.237.93 +US,REDLION,PA,39.8974,-76.608,23.192.161.30 +TH,PHITSANULOK,"",16.83,100.25,61.19.12.79 +US,DUFFIELD,VA,36.7086,-82.8103,23.79.240.36 +US,KAUKAUNA,WI,44.3542,-88.2601,107.14.38.224 +US,LAMAR,MO,37.5121,-94.2674,23.212.53.64 +US,WALNUTPORT,PA,40.7653,-75.56,184.26.44.38 +TR,ALAYBEY,"",38.47,27.13,193.45.15.198 +DE,ARNSTADT,TH,50.83,10.95,23.14.94.214 +US,EASTORANGE,NJ,40.7716,-74.2073,184.26.44.38 +BA,GORAZDE,"",43.67,18.98,23.14.94.228 +CH,PRATTELN,"",47.52,7.68,23.14.94.224 +RU,DON,"",52.43,35.16,2.21.240.40 +US,BURKE,VA,38.7935,-77.2718,63.130.161.239 +US,SHOREWOOD,IL,41.5083,-88.2276,23.67.60.220 +US,BETHANY,OK,35.5140,-97.6431,23.215.15.32 +CA,COQUITLAM,BC,49.27,-122.78,24.244.17.205 +EE,RAKVERE,"",59.35,26.36,217.212.227.31 +UA,NOVOTROITSKOE,"",46.95,36.66,80.239.222.169 +US,RIOVISTA,CA,38.2185,-121.7701,23.212.52.79 +US,HAYSVILLE,KS,37.5657,-97.3491,23.215.15.22 +US,MASSILLON,OH,40.8118,-81.4987,205.185.195.183 +SK,PRIEVIDZA,"",48.77,18.63,92.122.215.67 +RO,ROMANA,"",44.20,24.17,80.239.149.123 +US,CEDARCITY,UT,37.7617,-113.2197,23.61.195.150 +US,BAYVILLAGE,OH,41.4853,-81.9318,96.17.9.8 +US,ERWIN,TN,36.0829,-82.4955,23.79.240.48 +NL,TIEL,"",51.88,5.43,92.122.189.114 +DE,ESCHBACH,HE,50.35,8.53,92.122.215.89 +US,OLEAN,NY,42.0970,-78.4026,107.14.38.218 +NL,ALBLASSERDAM,"",51.87,4.67,95.101.2.122 +US,BARNESVILLE,GA,33.0291,-84.1327,72.246.247.30 +US,HAVERHILL,MA,42.7965,-71.0534,2.21.240.61 +US,LEHIGHTON,PA,40.8001,-75.751,165.254.48.155 +FR,FERRETTE,"",47.50,7.32,2.16.117.200 +GD,SAINTGEORGES,"",12.05,-61.75,23.74.2.12 +US,BELLAVISTA,AR,36.4493,-94.2399,23.215.15.9 +GB,LANGLEY,EN,51.98,0.10,88.221.87.94 +FR,SAINTANDREDESEAUX,"",48.37,-2.02,2.16.117.190 +RO,VASLUI,"",46.63,27.73,213.200.109.183 +MX,PACHUCADESOTO,HID,20.12,-98.73,201.144.215.104 +US,SHELTON,CT,41.3059,-73.1393,184.25.109.200 +US,ASHFLAT,AR,36.2067,-91.585,205.185.195.183 +UA,GONCHAROV,"",48.67,25.20,2.22.52.105 +US,BARABOO,WI,43.4869,-89.7322,184.85.215.165 +US,SWEETWATER,TX,32.5104,-100.3053,23.5.164.143 +NO,TRONDHEIM,"",63.42,10.42,2.21.240.40 +US,DOTHAN,AL,31.2035,-85.4998,23.79.240.48 +US,RUTLAND,VT,43.6369,-72.9375,184.25.109.201 +IN,PHAGWARA,PB,31.22,75.77,213.248.108.244 +UA,VINOGRADAR,"",46.67,30.35,2.22.52.105 +FR,BRUNOY,"",48.70,2.50,2.16.117.200 +FR,PERPIGNAN,"",42.68,2.88,2.16.117.190 +US,LANDOLAKES,FL,28.2463,-82.453,23.79.255.149 +MX,ANAHUAC,NLE,27.23,-100.15,187.210.208.101 +US,KEYSTONEHEIGHTS,FL,29.8670,-81.9355,23.79.240.36 +AR,VILLAMARIA,"",-34.90,-60.37,200.123.201.215 +US,HORNELL,NY,42.3231,-77.6478,107.14.38.217 +AU,MULLUMBIMBY,NSW,-28.55,153.50,202.7.177.76 +FR,BRON,"",47.17,-0.12,2.16.117.190 +US,FISHERS,IN,39.9571,-85.9923,23.67.60.220 +US,MASON,OH,39.3540,-84.3079,107.14.38.224 +BR,UBERLANDIA,MG,-18.92,-48.30,200.174.107.42 +US,BEAVERFALLS,PA,40.7641,-80.3864,23.192.161.21 +US,TAYLORSVILLE,NC,35.9243,-81.216,72.246.247.30 +US,DELPHI,IN,40.5373,-86.6356,72.247.10.237 +CK,AVARUA,"",-21.20,-159.77,23.216.10.54 +US,MEXIA,TX,31.6887,-96.511,67.131.44.154 +US,GOFFSTOWN,NH,43.0165,-71.5582,184.25.109.213 +CN,SHAOXING,ZJ,30.00,120.58,117.103.188.205 +US,HARDINSBURG,KY,37.7834,-86.4612,23.220.100.223 +GB,BROMLEY,EN,51.42,0.02,23.67.255.158 +US,GARDENDALE,AL,33.7057,-86.8471,72.246.247.5 +US,SATELLITEBEACH,FL,28.1733,-80.598,23.33.186.101 +CY,LARNACA,"",34.92,33.63,79.140.94.183 +AT,GERASDORF,"",48.28,16.47,46.33.70.97 +US,STOW,OH,41.1788,-81.4432,107.14.38.227 +US,MARSHFIELD,WI,44.6687,-90.1714,184.85.215.165 +US,POOLER,GA,32.1122,-81.2597,23.79.240.36 +PL,WLOCLAWEK,"",52.65,19.03,80.239.222.190 +CA,STEINBACH,MB,49.52,-96.68,184.25.157.155 +US,SPANISHFORK,UT,40.1192,-111.6894,23.215.15.32 +US,LAKECITY,FL,30.1899,-82.6394,23.79.240.48 +AU,BAYSWATER,VIC,-37.85,145.27,23.14.94.224 +TR,BALIKESIR,"",39.65,27.88,2.21.240.61 +US,DERBY,NY,42.6878,-78.9939,184.26.44.40 +FR,TOURS,"",47.38,0.68,2.16.117.190 +JP,IWAKUNI,35,34.15,132.18,184.51.199.145 +FR,DOUAI,"",50.37,3.07,2.16.117.200 +RO,TARGOVISTE,"",44.93,25.45,81.196.26.198 +BG,BALCHIK,"",43.42,28.17,93.186.137.230 +US,PETERSBURG,VA,37.2163,-77.4783,184.27.45.150 +DE,BEILNGRIES,BY,49.04,11.47,2.22.61.102 +CN,LIAOYANG,LN,41.23,123.10,23.5.164.143 +GB,WORTHING,EN,50.80,-0.37,23.67.255.158 +US,BLOOMFIELD,NJ,40.8099,-74.187,23.67.242.139 +US,MAYWOOD,CA,33.9888,-118.1876,184.50.26.194 +US,PELHAM,AL,33.3024,-86.8026,72.246.247.30 +US,STREATOR,IL,41.1182,-88.8294,23.74.8.24 +US,RIORICO,AZ,31.4762,-111.1242,63.226.34.181 +US,UMATILLA,FL,28.9435,-81.6854,63.148.206.235 +PH,CAGAYANDEORO,"",8.48,124.65,202.78.83.170 +US,DEFIANCE,OH,41.3548,-84.3569,107.14.38.227 +EC,AMBATO,"",-1.25,-78.62,23.74.2.12 +US,HARPERWOODS,MI,42.4389,-82.9295,69.22.154.212 +US,NAVARRE,FL,30.5228,-86.8762,96.17.153.157 +PH,MACTAN,"",12.12,123.77,63.217.232.22 +NO,BERGEN,"",60.39,5.32,23.65.29.93 +US,TAFT,CA,35.1546,-119.4343,107.14.43.29 +TR,TEKIRDAG,"",40.98,27.52,193.45.15.199 +US,RAEFORD,NC,35.0278,-79.2454,63.151.29.15 +US,ENNIS,TX,32.3479,-96.579,65.113.249.8 +JP,KASAOKA,33,34.50,133.50,23.3.104.29 +US,SOUTHHAVEN,MI,42.4049,-86.2175,23.67.60.220 +US,HARLINGEN,TX,26.2089,-97.6849,65.113.249.11 +BE,MONS,"",50.45,3.93,23.62.100.154 +US,SALKUM,WA,46.5139,-122.656,165.254.144.25 +RO,SATUMARE,"",46.33,25.37,46.33.70.104 +VN,TANLAP,"",10.92,107.18,96.17.180.155 +IN,MYLAPORE,TN,13.03,80.27,124.124.201.227 +US,PLEASANTGROVE,UT,40.3798,-111.7415,184.84.180.68 +SE,KARLSTAD,S,59.37,13.50,80.239.237.93 +US,CROCKETT,TX,31.2828,-95.4821,23.215.15.9 +US,HARBORCITY,CA,33.7982,-118.3001,184.87.195.109 +US,HIXSON,TN,35.1670,-85.2137,23.79.240.36 +NO,STAVANGER,"",58.97,5.75,217.212.227.25 +US,SANBENITO,TX,26.1784,-97.6678,184.26.93.111 +US,ATLANTICCITY,NJ,39.3648,-74.4342,23.67.242.156 +US,MIDDLEVILLAGE,NY,40.7154,-73.8794,24.143.199.188 +AU,HILLCREST,QLD,-17.37,145.60,23.62.157.32 +US,HURST,TX,32.8164,-97.1774,23.215.15.32 +IN,UDAGAMANDALAM,TN,11.40,76.70,117.239.240.96 +US,DOLTON,IL,41.6290,-87.5979,23.67.60.220 +NZ,WHANGAREI,"",-35.72,174.32,219.88.186.167 +US,FORDS,NJ,40.5421,-74.3112,23.192.161.30 +US,CORTEMADERA,CA,37.9238,-122.5131,216.246.93.44 +AT,SCHLADMING,"",47.38,13.68,46.33.70.104 +ID,SAMBU,"",1.17,103.90,118.98.42.129 +US,STILWELL,OK,35.7926,-94.6204,184.51.101.56 +ZA,MARSHALLTOWN,"",-26.20,28.08,196.37.155.136 +FR,LAGNY,"",49.08,2.75,2.20.243.45 +GB,BECKTON,EN,51.52,0.07,23.67.255.158 +AU,DARWIN,NT,-12.47,130.83,184.86.223.76 +US,PORTISABEL,TX,26.0776,-97.3389,184.26.93.111 +US,RAVENNA,OH,41.1736,-81.1686,107.14.38.227 +IR,QOM,"",34.65,50.88,92.122.215.67 +US,LINCOLNPARK,MI,42.2429,-83.1811,69.22.154.219 +US,SILSBEE,TX,30.3978,-94.1766,107.14.43.30 +US,GALLIPOLIS,OH,38.7997,-82.2553,96.17.9.14 +US,NEWROCHELLE,NY,40.9182,-73.785,23.67.242.156 +US,WILSON,NC,35.7058,-77.9227,209.18.41.23 +US,FARMERVILLE,LA,32.7394,-92.2308,96.17.153.157 +US,BAXTERSPRINGS,KS,37.0595,-94.7764,209.170.117.178 +IR,SHAHRIYAR,"",35.66,51.06,23.57.69.156 +PL,TARNOBRZEG,"",50.58,21.68,80.15.235.161 +US,LYNNHAVEN,FL,30.2384,-85.6449,184.84.180.97 +KR,CHUNGNAM,"",36.27,128.02,125.56.214.169 +ID,SOSIAL,"",-9.49,124.85,23.0.162.40 +US,ROYSECITY,TX,32.9603,-96.3618,23.5.164.143 +IN,RANIPPETTAI,TN,12.93,79.33,117.239.240.96 +US,HARWOOD,MD,38.8654,-76.6145,23.192.161.30 +US,CHICAGOHEIGHTS,IL,41.5054,-87.5907,23.63.227.227 +US,DRAPER,UT,40.5003,-111.8772,184.84.180.98 +US,WOODRIVER,IL,38.8622,-90.0969,204.93.47.216 +US,STRUM,WI,44.5831,-91.3728,23.74.8.8 +JP,OTSUKA,32,35.38,133.27,104.74.70.98 +US,NEWTOWNSQUARE,PA,39.9794,-75.4369,23.74.8.8 +US,GRAYSLAKE,IL,42.3279,-88.0546,107.14.38.224 +US,SMITHTON,MO,38.6141,-93.1156,65.113.249.11 +US,WHITEHALL,MI,43.3852,-86.3162,23.63.227.227 +US,GULFSHORES,AL,30.2490,-87.8145,184.51.35.215 +IR,KAMYARAN,"",34.79,46.94,23.14.94.214 +US,CENTRE,AL,34.0680,-85.5772,23.79.240.36 +JP,KAKEGAWA,22,34.77,138.02,23.3.104.29 +BG,BURGAS,"",42.50,27.47,213.248.108.233 +US,HERCULANEUM,MO,38.2616,-90.3893,96.17.14.15 +FR,PFAFFENHOFFEN,"",48.85,7.62,2.16.117.190 +US,CANDLER,NC,35.5160,-82.718,23.79.240.48 +US,ABITASPRINGS,LA,30.4796,-89.9372,23.215.15.22 +FR,COURBEVOIE,"",48.54,2.15,2.16.117.190 +KR,HANGYANG,"",35.41,127.84,125.56.214.149 +US,MOREHEAD,KY,38.2298,-83.4396,184.51.101.56 +CN,DANJIANGKOU,HB,32.54,111.51,63.233.61.151 +US,MUSKEGO,WI,42.8864,-88.1268,65.113.249.8 +IR,MALAYER,"",34.29,48.82,80.239.149.123 +IN,ANNANAGAR,TN,13.08,80.22,23.205.118.109 +RU,KOMSOMOLSKNAAMURE,"",50.56,137.00,2.21.240.40 +US,BARTOW,FL,27.8693,-81.7818,165.254.205.13 +KN,BASSETERRE,"",17.30,-62.72,184.26.44.38 +RU,SIBIR,"",59.13,48.55,2.21.240.61 +DE,OHL,NW,50.98,7.38,194.25.95.214 +US,LAKESTATION,IN,41.5743,-87.2638,23.67.60.222 +JP,SAKURA,12,35.72,140.23,23.61.250.113 +RO,MEDIAS,"",46.17,24.35,81.196.26.237 +US,NEWTONFALLS,OH,41.1752,-80.9706,107.14.38.218 +US,BRANSON,MO,36.6436,-93.2185,23.5.164.146 +US,LAVERGNE,TN,36.0144,-86.5554,23.212.53.75 +CH,NOIRMONT,"",47.22,6.95,213.254.212.98 +US,WESTBROOK,ME,43.7142,-70.3494,107.14.38.227 +IN,ROORKEE,UL,29.87,77.88,96.17.182.136 +FR,CERGYPONTOISE,"",49.00,2.03,2.20.243.42 +US,SAPULPA,OK,35.9978,-96.1373,23.215.15.9 +LI,VADUZ,"",47.13,9.52,195.27.155.193 +US,THREERIVERS,MI,41.9815,-85.6518,23.67.60.220 +US,MURRAY,KY,36.6180,-88.2562,107.14.38.224 +US,YANKTON,SD,42.8878,-97.454,23.63.227.227 +SE,KARLSKRONA,K,56.17,15.58,23.65.29.106 +CA,NELSON,BC,49.48,-117.28,184.27.179.187 +US,KODAK,TN,35.9712,-83.6158,72.246.247.30 +US,TAYLORS,SC,34.9846,-82.3279,72.246.247.5 +US,ELCERRITO,CA,37.9232,-122.2937,23.212.52.79 +SK,HRKOVCE,"",48.08,18.92,23.62.237.135 +US,GETTYSBURG,PA,39.8288,-77.2253,23.192.161.16 +US,FAIRMONT,WV,39.4675,-80.064,23.192.161.16 +US,BROOKHAVEN,MS,31.5898,-90.4722,165.254.138.175 +US,EVERGREENPARK,IL,41.7213,-87.7012,107.14.38.227 +US,WASHINGTONCOURTHOUSE,OH,39.5227,-83.4503,107.14.38.224 +US,HARTLAND,WI,43.1384,-88.3524,65.113.249.11 +KR,DAEGU,"",35.87,128.60,125.56.214.147 +JP,MIYAZAKI,45,31.90,131.43,23.3.104.15 +CA,CHARLOTTETOWN,PE,46.23,-63.13,23.220.148.122 +US,STANDISH,ME,43.8159,-70.4792,23.61.195.150 +US,LADYLAKE,FL,28.9173,-81.9232,23.79.240.36 +LC,CASTRIES,"",14.00,-61.00,23.33.186.134 +CN,NANTONG,JS,32.03,120.87,184.50.87.178 +US,BREWTON,AL,31.1650,-87.0243,96.17.153.162 +ID,MAKASAR,"",-6.28,106.87,184.27.179.159 +AT,RUM,"",47.28,11.45,195.145.147.108 +US,ORTING,WA,46.9930,-122.097,67.131.104.14 +US,AVONPARK,FL,27.5936,-81.3646,184.27.45.150 +US,MINNETONKA,MN,44.9156,-93.484,23.67.60.222 +US,WINDOM,MN,43.9264,-95.2282,23.63.227.227 +US,NORTHMIAMIBEACH,FL,25.9339,-80.1467,165.254.205.13 +US,VINCENNES,IN,38.6298,-87.5042,23.63.227.214 +US,PAYSON,UT,40.0019,-111.732,184.84.180.98 +SE,JARNA,AB,59.10,17.57,2.21.240.40 +JP,KAMO,12,35.50,140.12,184.51.199.132 +EE,KOHTLAJARVE,"",59.40,27.27,213.155.156.207 +US,CODY,WY,44.5150,-109.5903,23.63.227.223 +PL,TRZESZCZYN,"",53.55,14.52,92.122.189.114 +AU,LISMORE,NSW,-28.80,153.27,104.72.70.95 +BT,THIMPHU,"",27.48,89.60,23.76.205.111 +GB,SWANSEA,WA,51.63,-3.97,88.221.87.112 +RO,COMANESTI,"",44.42,24.13,88.221.93.150 +CA,UCLUELET,BC,48.93,-125.52,24.244.17.197 +FR,VER,"",49.10,2.68,23.200.87.59 +US,CATASAUQUA,PA,40.6570,-75.4675,184.29.107.20 +US,CALIFORNIA,MO,38.6124,-92.5168,23.79.255.153 +FR,TOURNONSURRHONE,"",45.07,4.83,2.16.117.190 +US,NEWKENSINGTON,PA,40.5657,-79.707,23.192.161.30 +MW,LILONGWE,"",-13.98,33.78,41.193.163.45 +US,GREENEVILLE,TN,36.1512,-82.8404,23.79.240.48 +US,CAVECITY,KY,37.1209,-85.9332,65.113.249.11 +JP,YOSIDA,38,33.27,132.55,96.7.251.95 +GF,CAYENNE,"",4.93,-52.33,72.246.65.23 +US,DANBURY,CT,41.3768,-73.4601,23.67.60.220 +CM,DOUALA,"",4.05,9.70,2.16.158.137 +US,PASSAIC,NJ,40.8575,-74.1285,184.26.44.40 +US,ATKINS,IA,41.9918,-91.8933,65.113.249.11 +ES,ACORUNA,"",43.37,-8.38,92.122.189.85 +US,WYANDOTTE,MI,42.1883,-83.1904,69.22.154.215 +US,ANDREWS,TX,32.3051,-102.6378,23.5.164.146 +US,ASPEN,CO,39.1256,-106.7972,184.84.180.68 +TR,FATIH,"",41.02,28.94,217.212.227.25 +US,BRISTOW,VA,38.7380,-77.5569,184.28.17.55 +FR,BRIGNOLES,"",43.40,6.07,2.16.117.190 +US,WESTLINN,OR,45.3523,-122.6694,23.212.59.63 +US,CROFTON,MD,39.0135,-76.6813,23.67.242.139 +FR,ANGERS,"",47.47,-0.55,2.16.117.190 +BO,LAPAZ,"",-16.50,-68.15,200.91.22.116 +AU,TEMPLESTOWELOWER,VIC,-37.77,145.12,23.62.224.33 +US,KELSO,WA,46.1383,-122.7605,23.212.59.63 +PG,WAIGANI,"",-9.43,147.17,23.62.157.32 +US,BRONXVILLE,NY,40.9389,-73.8308,69.31.77.200 +US,NORTHCONWAY,NH,44.0406,-71.0915,107.14.38.217 +US,CATSKILL,NY,42.2274,-73.9283,184.29.107.38 +US,OAKFOREST,IL,41.6061,-87.7549,107.14.38.218 +PL,NOWYTARG,"",53.90,19.20,80.239.255.214 +US,PHILOMATH,OR,44.6158,-123.5018,23.212.59.63 +US,HARROGATE,TN,36.5673,-83.5418,184.25.157.169 +TH,PATTAYA,"",12.93,100.88,61.19.12.79 +US,PORTHUENEME,CA,34.1619,-119.2034,23.216.10.48 +US,DEARBORNHEIGHTS,MI,42.2751,-83.2624,23.67.60.222 +US,OELWEIN,IA,42.7073,-91.8755,184.27.120.50 +US,METTER,GA,32.4031,-82.0735,8.18.43.219 +ES,ARTES,"",41.80,1.95,2.20.44.111 +US,STONYBROOK,NY,40.9035,-73.127,209.170.113.240 +CN,YICHUN,HL,47.70,128.90,184.50.87.178 +TM,ASHGABAT,"",37.95,58.38,117.103.188.218 +FR,SARCELLES,"",49.00,2.38,2.16.117.190 +US,DONNA,TX,26.1405,-98.071,184.26.93.111 +IR,PISHGAMAN,"",37.27,48.44,77.67.27.235 +JP,NARA,29,34.68,135.83,117.104.139.162 +SK,SKALICA,"",48.85,17.23,23.62.237.137 +RO,HUNEDOARA,"",45.75,22.90,81.196.26.236 +US,SEALY,TX,29.7835,-96.2064,96.16.7.120 +US,GREENRIVER,WY,41.9520,-109.6565,63.217.8.168 +US,BAYSPRINGS,MS,31.9429,-89.2,69.31.59.63 +US,SILERCITY,NC,35.7397,-79.4342,184.51.35.226 +IT,PIGNONE,"",44.17,9.72,2.18.240.95 +FR,ILLKIRCHGRAFFENSTADEN,"",48.53,7.72,2.16.117.200 +AT,ORTIMINNKREIS,"",47.90,13.78,195.145.147.109 +RU,ISKRA,"",55.16,36.89,80.239.237.84 +US,LONGWOOD,FL,28.7075,-81.3526,23.34.56.142 +JP,MITANI,36,33.93,134.48,23.3.104.29 +DK,MARIAGER,"",56.65,10.00,23.65.29.106 +US,MOUNTHOLLY,NJ,39.9896,-74.8021,184.26.44.40 +IN,JORHAT,AS,26.75,94.22,124.124.252.165 +DE,APEN,NI,53.22,7.80,92.122.207.164 +PG,LAE,"",-6.73,147.00,23.62.157.32 +US,HINSDALE,NH,42.8109,-72.499,184.25.109.213 +US,DODGEVILLE,WI,42.9917,-90.1451,23.74.8.24 +IT,MILANESE,"",38.20,15.73,193.45.15.198 +DE,HANAU,HE,50.13,8.92,23.14.94.214 +RU,KHANTYMANSIYSK,"",61.00,69.10,80.239.217.238 +US,HAZARD,KY,37.2415,-83.2013,63.216.54.231 +BR,JUIZDEFORA,MG,-21.75,-43.35,184.25.157.155 +US,LYONS,KS,38.3042,-98.1167,23.215.15.9 +TR,ISIK,"",39.02,28.37,2.20.142.173 +RO,FOCSANI,"",45.70,27.18,81.196.26.237 +CZ,HAVEL,"",49.08,14.83,2.20.142.166 +ID,SLIPI,"",-6.20,106.78,23.0.162.21 +US,CEREDO,WV,38.3954,-82.5576,209.48.37.183 +US,ORELAND,PA,40.1145,-75.1853,23.67.242.139 +MX,CUAUTITLAN,MEX,19.67,-99.18,201.144.215.103 +US,TRUMBULL,CT,41.2599,-73.2099,65.113.249.11 +CN,NINGDE,FJ,26.66,119.52,184.50.87.176 +SE,KALMAR,H,56.67,16.37,213.155.156.207 +JP,KAWAGUCHI,11,35.81,139.72,23.3.104.16 +RU,ODIN,"",60.08,55.12,2.21.240.61 +DE,GEISELGASTEIG,BY,48.07,11.55,23.14.94.214 +KR,NAEDONG,"",37.27,126.81,80.239.237.230 +US,GRANDISLAND,NE,40.9005,-98.3297,204.93.47.220 +RU,MAGNITOGORSK,"",53.45,59.07,80.239.237.80 +US,GODFREY,IL,38.9622,-90.2202,96.17.14.31 +US,WEST,TX,31.7636,-97.1357,23.5.164.146 +US,SAGHARBOR,NY,40.9692,-72.306,69.31.77.208 +US,DENVILLE,NJ,40.8897,-74.4855,184.26.44.38 +US,TAKOMAPARK,MD,38.9819,-77.0006,23.192.161.16 +US,COLUMBIACITY,IN,41.1479,-85.4772,65.113.249.8 +CA,NEWMARKET,ON,44.05,-79.45,72.246.43.237 +US,WILLOWGROVE,PA,40.1476,-75.1216,23.192.161.16 +US,KAMRAR,IA,42.3937,-93.7196,23.74.8.8 +US,KENDRICK,ID,46.6455,-116.5458,165.254.144.25 +US,PALMERTON,PA,40.8306,-75.5685,165.254.48.150 +SN,DAKAR,"",14.67,-17.43,213.200.109.173 +US,BONITASPRINGS,FL,26.3319,-81.7522,204.93.43.168 +KR,SAMCHOK,"",37.44,129.17,125.56.214.147 +US,SHINGLESPRINGS,CA,38.6203,-120.9818,23.61.195.165 +KE,MERU,"",0.05,37.65,41.193.163.45 +US,ELKINS,WV,38.9430,-79.8268,96.17.9.14 +JP,WAGO,06,38.32,140.17,23.3.104.16 +IR,POLEFASA,"",29.48,52.64,96.17.182.130 +SE,HANINGE,AB,59.10,18.08,217.212.227.25 +US,YULEE,FL,30.6324,-81.6068,184.51.145.22 +US,ROCHELLE,IL,41.9424,-89.0653,23.67.60.220 +US,CARPENTERSVILLE,IL,42.1252,-88.2633,23.67.60.222 +BD,RAMNA,"",23.73,90.40,23.75.23.135 +US,WILLISTON,FL,29.4056,-82.488,23.74.2.12 +US,HALEYVILLE,AL,34.2053,-87.5643,184.27.45.157 +JP,OBIHIRO,01,42.92,143.20,210.175.5.180 +SE,JONKOPING,F,57.78,14.18,82.96.58.102 +CA,VALDOR,QC,48.12,-77.77,67.69.197.95 +US,ROSLINDALE,MA,42.2845,-71.1256,23.67.244.248 +AR,TUCUMAN,"",-26.82,-65.22,200.123.201.219 +US,MILLERSBURG,OH,40.5444,-81.851,65.113.249.11 +FR,LAGARENNECOLOMBES,"",48.90,2.25,2.16.117.190 +US,HUNKER,PA,40.2070,-79.5798,23.192.161.21 +US,CROWLEY,LA,30.2290,-92.3861,23.215.15.9 +MH,MAJURO,"",7.10,171.38,96.7.251.97 +US,OSWEGO,IL,41.6565,-88.316,184.27.120.50 +KR,INCHON,"",37.45,126.73,125.56.214.147 +US,FAIRLAWN,NJ,40.9359,-74.1174,184.26.44.38 +CA,RICHMONDHILL,ON,43.87,-79.43,72.246.43.237 +DE,MUNCHEN,BY,49.55,11.58,23.14.94.228 +EC,LAGOAGRIO,"",0.08,-76.88,200.110.126.67 +RO,ARAD,"",46.18,21.32,80.239.149.123 +NO,PORSGRUNN,"",59.15,9.67,2.21.240.40 +US,MARATHON,FL,24.7161,-81.0717,23.79.240.48 +US,MOORHEAD,MN,46.9239,-96.7135,165.254.114.164 +JP,MIHARA,34,34.40,133.08,117.104.139.162 +US,ELLIJAY,GA,34.6692,-84.4462,184.28.127.55 +TR,ERZURUM,"",39.92,41.28,193.45.15.198 +US,KEOKUK,IA,40.4274,-91.4507,23.67.60.223 +US,MOUNTWASHINGTON,KY,38.0404,-85.559,63.216.54.236 +KZ,TARAZ,"",42.90,71.37,2.20.142.173 +US,MORRILTON,AR,35.2270,-92.6879,23.79.240.48 +US,CRYSTALLAKE,IL,42.2766,-88.31,23.67.60.223 +US,BEVERLY,MA,42.5685,-70.8619,184.25.109.213 +RU,MAGADAN,"",59.57,150.80,72.246.184.84 +US,BELVIDERE,IL,42.2430,-88.8419,23.67.60.220 +RO,BAIAMARE,"",47.67,23.58,81.196.26.231 +US,BANDON,OR,43.0374,-124.3662,184.27.179.187 +US,COPLAY,PA,40.6874,-75.5488,184.26.44.38 +US,OBERLIN,OH,41.2855,-82.2459,184.27.45.157 +CA,ORILLIA,ON,44.60,-79.42,72.246.43.215 +US,ROMEOVILLE,IL,41.6509,-88.0865,23.67.60.222 +US,LUVERNE,AL,31.6954,-86.2748,184.51.35.215 +GB,STIRLING,SC,56.12,-3.95,88.221.87.94 +US,PRIORLAKE,MN,44.6768,-93.4069,23.212.59.85 +US,PLUMMER,ID,47.3045,-116.8787,184.27.179.159 +FR,MOURS,"",49.13,2.27,2.16.117.190 +UA,BELAYATSERKOV,"",49.78,30.12,92.122.189.114 +DK,FREDERIKSHAVN,"",57.43,10.53,23.65.29.106 +NP,JAWALAKHEL,"",27.67,85.32,23.205.118.109 +US,ROCKSPRINGS,WY,41.6045,-108.9543,23.212.53.75 +CD,LUBUMBASHI,"",-11.67,27.47,23.3.15.22 +HU,KAPUVAR,"",47.60,17.03,80.157.150.192 +US,TEHACHAPI,CA,35.1338,-118.5522,184.26.93.111 +GB,WOKING,EN,51.32,-0.53,23.212.108.28 +IN,SOLAPUR,MH,17.68,75.92,23.205.118.106 +FR,SAINTVALERYENCAUX,"",49.87,0.73,2.16.117.190 +US,JONESTOWN,PA,40.4723,-76.5465,23.192.161.30 +MX,ZAMORADEHIDALGO,MIC,19.98,-102.27,23.215.15.9 +DE,GARMISCHPARTENKIRCHEN,BY,47.50,11.10,2.16.217.211 +US,MCCARR,KY,37.6155,-82.1695,184.27.45.157 +FR,SETE,"",43.40,3.68,88.221.15.111 +US,FARMVILLE,NC,35.5541,-77.5679,72.246.247.30 +US,CORALVILLE,IA,41.7135,-91.6243,205.185.195.170 +GB,CROY,SC,57.52,-4.03,23.67.255.106 +IL,SHEFER,"",32.94,35.43,212.25.69.136 +DE,BILSTEIN,NW,51.10,8.02,194.25.95.219 +US,GLADWIN,MI,44.0805,-84.4824,23.63.227.221 +US,CLANTON,AL,32.8085,-86.6769,72.246.247.30 +CN,KASHI,XJ,39.48,75.97,117.104.139.162 +US,SEMMES,AL,30.7548,-88.2659,96.17.153.162 +US,LAPWAI,ID,46.4250,-116.755,184.27.179.187 +AU,PARRAMATTA,NSW,-33.82,151.00,104.72.70.96 +FR,BLOIS,"",47.58,1.33,2.16.117.190 +CA,LEVIS,QC,46.80,-71.17,67.69.197.106 +US,OLIVEBRANCH,MS,34.9420,-89.5387,23.212.53.75 +US,OAKWOOD,IL,40.1323,-87.8022,23.74.8.8 +IN,BHAVNAGAR,GJ,21.77,72.15,92.122.215.67 +US,BLUEBELL,PA,40.1575,-75.2796,23.67.242.139 +US,LEONARDTOWN,MD,38.2757,-76.6352,208.185.55.117 +US,QUINTON,VA,37.5257,-77.1511,23.220.148.108 +US,LOUISBURG,KS,38.5671,-94.6773,23.215.15.22 +ZA,LOCATION,"",-29.33,21.15,196.37.155.135 +US,MONESSEN,PA,40.1512,-79.882,184.26.44.40 +US,REHOBOTHBEACH,DE,38.7115,-75.1086,23.67.242.139 +KR,MASAN,"",37.95,127.32,61.111.58.222 +PH,INTRAMUROS,"",14.60,120.97,23.76.205.90 +ES,MARCHENA,"",38.18,-2.50,213.248.113.118 +US,GRUNDY,VA,37.3014,-82.1027,184.27.45.162 +US,COSHOCTON,OH,40.2085,-81.7893,96.17.9.14 +US,PEABODY,MA,42.5338,-70.9728,184.25.109.196 +DE,SOLINGEN,NW,51.18,7.08,80.157.150.197 +US,CARMEL,NY,41.4470,-73.7115,184.25.109.200 +BE,VEURNE,"",51.07,2.67,46.33.74.161 +FI,KAUNIAINEN,"",60.22,24.74,193.184.164.237 +US,GRANDLEDGE,MI,42.7448,-84.7632,65.113.249.11 +US,FROSTBURG,MD,39.6524,-78.9473,65.121.209.133 +AU,COLO,NSW,-33.43,150.83,23.62.8.25 +DE,SINDELFINGEN,BW,48.70,9.02,23.14.94.228 +US,BURKBURNETT,TX,34.0937,-98.61,107.14.36.199 +US,MUSTANG,OK,35.3779,-97.7427,23.215.15.9 +US,FRANKLINLAKES,NJ,41.0086,-74.2082,23.67.242.139 +CA,KANATA,ON,45.33,-75.90,67.69.197.95 +US,FRUITLAND,MD,38.3183,-75.6331,23.192.161.16 +JP,MITAKA,13,35.68,139.55,23.3.104.29 +US,HOTCHKISS,CO,38.8373,-107.7837,23.74.8.8 +US,NEWINGTON,CT,41.6870,-72.7308,72.247.10.237 +CZ,KRALUPYNADVLTAVOU,"",50.23,14.32,23.74.24.69 +US,PICAYUNE,MS,30.5854,-89.6932,96.17.153.162 +CN,ZHUHAI,GD,22.28,113.57,184.50.87.178 +NO,TROMSO,"",69.67,18.97,2.21.240.40 +AT,RIEZLERN,"",47.37,10.18,92.122.189.114 +KR,CHONJU,"",35.82,127.15,61.111.58.43 +US,GRANDBLANC,MI,42.9173,-83.6285,65.113.249.11 +BA,LUKAVAC,"",43.68,18.27,2.20.142.166 +FR,MONTROUGE,"",48.82,2.32,2.16.117.200 +GB,PAPWORTH,EN,52.23,-0.12,23.67.255.106 +RU,NOVOKUZNETSK,"",53.75,87.10,2.21.240.40 +US,ELMACERO,CA,38.5361,-121.6397,65.113.249.11 +US,CHINAGROVE,NC,35.5831,-80.6086,209.18.41.27 +US,ANSON,TX,32.7550,-99.9177,23.215.15.9 +US,CUTOFF,LA,29.5615,-90.2815,23.212.53.75 +AT,LEOBERSDORF,"",47.92,16.22,195.145.147.109 +FR,VILLENEUVESAINTGEORGES,"",48.73,2.45,2.16.117.190 +MY,KLIAS,"",5.43,115.63,23.198.99.130 +PY,ASUNCION,"",-25.27,-57.67,177.159.159.51 +DE,LUEDENSCHEID,NW,51.22,7.62,195.95.193.134 +US,WINNER,SD,43.2923,-99.8934,23.63.227.214 +US,COUNCILGROVE,KS,38.6824,-96.5126,23.215.15.22 +RU,KASHIRA,"",54.84,38.17,80.239.222.190 +US,PALOSVERDESPENINSULA,CA,33.7772,-118.3685,184.50.26.194 +US,PILOTPOINT,TX,33.3456,-96.9066,23.5.164.143 +US,TOCCOA,GA,34.5647,-83.3246,204.2.243.135 +US,ALCOA,TN,35.7840,-83.9837,23.79.240.36 +JP,TOCHIGI,09,36.38,139.73,202.239.172.99 +IL,ROSHHAAYIN,"",32.09,34.95,82.102.137.148 +TH,BANGCHAK,"",13.68,100.58,180.180.251.217 +US,BUFFALOVALLEY,TN,36.1821,-85.7574,23.79.240.48 +PK,SUKKUR,"",27.70,68.87,23.5.165.167 +US,KENNETTSQUARE,PA,39.8638,-75.7134,23.62.238.220 +IN,RAJAMPET,AP,17.62,78.08,23.205.118.106 +RU,MEGION,"",61.05,76.10,80.239.237.80 +PT,CALDAS,"",41.53,-8.47,195.22.14.133 +US,JAY,OK,36.4327,-94.7494,23.215.15.9 +CN,QINGDAO,SD,36.08,120.34,117.104.138.235 +US,MORROW,GA,33.5846,-84.3286,23.212.53.74 +IN,DIGBOI,AS,27.38,95.62,96.17.182.136 +TZ,DODOMA,"",-7.28,36.35,196.37.155.134 +TW,HSINCHU,"",24.80,120.97,61.220.62.171 +CN,ZUNYI,GZ,27.69,106.91,72.246.191.16 +FR,BURESSURYVETTE,"",48.70,2.17,2.16.117.190 +US,AMITYVILLE,NY,40.6858,-73.4152,23.67.242.139 +US,WESTFORD,MA,42.5863,-71.4398,165.254.48.142 +CN,DATONG,SX,40.04,113.60,72.246.191.16 +US,HIDALGO,TX,26.0932,-98.2413,63.233.112.199 +US,WESTMEMPHIS,AR,35.1461,-90.1892,23.212.53.75 +FR,NIORT,"",46.32,-0.47,2.16.117.200 +US,EASTLAKE,OH,41.6454,-81.4495,96.17.9.8 +RO,HUSI,"",46.68,28.07,81.196.26.237 +CO,CALI,"",3.45,-76.52,200.14.44.100 +US,PARSONS,KS,37.3363,-95.2625,174.76.226.117 +FR,PLESSISBOUCHARD,"",49.00,2.23,2.20.243.45 +US,BORGER,TX,35.7207,-101.246,96.16.7.120 +US,CHEROKEE,IA,42.7282,-95.5804,165.254.207.111 +US,MONETT,MO,36.9016,-93.938,23.5.164.143 +AU,CROWSNEST,NSW,-33.83,151.20,104.72.70.95 +FR,AUCAMVILLE,"",43.80,1.22,2.16.117.200 +CA,LANCIENNELORETTE,QC,46.78,-71.38,67.69.197.106 +US,CHAPMANVILLE,WV,37.9307,-82.0853,209.48.37.183 +US,GUNTERSVILLE,AL,34.3002,-86.3298,204.2.243.135 +NZ,TORBAY,"",-36.69,174.75,219.88.186.167 +US,FOLEY,AL,30.3794,-87.7151,63.151.29.12 +EC,PUYO,"",-1.47,-77.98,72.164.253.68 +US,LAUGHLIN,NV,35.1676,-114.5723,165.254.144.32 +IT,ALZATE,"",45.57,8.58,95.101.34.109 +US,UHRICHSVILLE,OH,40.3767,-81.2875,107.14.38.217 +LT,ANYKSCIAI,"",55.53,25.10,217.212.227.31 +US,NORTHROYALTON,OH,41.3138,-81.7452,107.14.38.224 +IN,BHILWARA,RJ,25.35,74.63,23.14.94.214 +CZ,KROMERIZ,"",49.30,17.40,23.62.237.137 +IR,AZAD,"",36.53,48.52,96.17.182.130 +GB,TADWORTH,EN,51.28,-0.23,23.212.108.28 +RU,POKROVKA,"",56.27,36.93,96.7.251.95 +CN,HUZHOU,ZJ,30.87,120.10,117.103.188.218 +US,SUMNER,WA,47.2034,-122.2395,67.131.104.6 +US,HOTSPRINGS,SD,43.3460,-103.4837,23.63.227.227 +US,PAHRUMP,NV,36.2552,-116.0393,67.131.104.6 +US,ANOKA,MN,45.2924,-93.4325,23.67.60.222 +US,HOWELL,NJ,40.1478,-74.2133,184.26.44.38 +US,HERMON,NY,44.4225,-75.2101,165.254.35.197 +US,KENAI,AK,60.7681,-150.4457,165.254.1.206 +IR,MASHHAD,"",36.30,59.60,96.17.182.136 +US,ESCANABA,MI,45.7785,-87.1788,184.85.215.165 +US,SCHERTZ,TX,29.5872,-98.2801,184.26.93.116 +FR,LYS,"",47.35,3.60,88.221.15.110 +NO,LARVIK,"",59.07,10.00,2.21.240.61 +DE,BAU,NW,51.15,6.32,194.25.95.212 +US,PIPESTONE,MN,44.0660,-96.3302,23.61.195.163 +ID,PONTIANAK,"",-0.03,109.33,23.0.162.40 +AT,EGG,"",47.52,16.22,46.33.70.97 +DE,MELSUNGEN,HE,51.13,9.55,195.145.147.101 +IT,NOVARA,"",45.47,8.63,195.22.200.240 +US,JAMESTOWN,NY,42.0766,-79.2554,63.216.54.229 +US,JEANNETTE,PA,40.3273,-79.6141,63.216.54.216 +US,STORRSMANSFIELD,CT,41.8004,-72.2476,165.254.202.96 +US,FLEMINGSBURG,KY,38.4360,-83.6931,63.216.54.231 +NO,SKIEN,"",59.20,9.60,2.21.240.61 +US,FLOMATON,AL,31.1088,-87.2802,67.131.104.6 +PL,JAROSLAW,"",50.02,22.68,2.22.52.102 +US,GUERNSEY,WY,42.2368,-104.7818,107.14.32.235 +US,ELY,MN,48.0461,-92.0295,23.63.227.223 +NO,BRUMUNDDAL,"",60.88,10.93,2.21.240.40 +AT,KUFSTEIN,"",47.58,12.17,80.239.237.231 +US,EMERYVILLE,CA,37.8359,-122.2848,23.61.195.166 +US,PALESTINE,TX,31.7706,-95.5987,209.18.41.23 +RU,BUZULUK,"",52.81,40.23,80.239.237.80 +US,MUNISING,MI,46.4479,-86.4779,23.79.255.153 +US,NICHOLASVILLE,KY,37.8809,-84.5734,63.216.54.231 +IE,LIMERICK,"",52.66,-8.62,88.221.222.34 +US,CENTERMORICHES,NY,40.8046,-72.7931,184.26.44.38 +US,HARTFORDCITY,IN,40.4568,-85.3505,23.212.53.64 +US,THEODORE,AL,30.5153,-88.1489,96.17.153.157 +AT,PITTEN,"",47.72,16.18,195.145.147.108 +CZ,HOSTING,"",49.02,15.90,23.62.237.133 +AT,EGGELSBERG,"",48.08,13.00,195.145.147.108 +TW,KAOHSIUNG,"",22.63,120.28,61.220.62.175 +US,SEQUIM,WA,48.0015,-123.0905,184.27.179.181 +US,SIOUXCENTER,IA,43.0841,-96.2145,205.185.195.183 +US,SOUTHPORTLAND,ME,43.6292,-70.2915,107.14.38.218 +SE,NORSJO,X,61.72,16.30,80.239.217.238 +US,INDIANORCHARD,MA,42.1526,-72.5046,184.25.109.200 +US,HAZLEHURST,GA,31.8468,-82.5686,72.246.247.5 +US,NAVASOTA,TX,30.3670,-96.0045,23.212.53.64 +US,AMORY,MS,33.9755,-88.4422,23.220.100.223 +AR,LAPLATA,"",-34.93,-57.95,190.98.167.230 +CZ,NOVAVES,"",50.22,14.53,23.62.237.138 +PL,BOLESLAWIEC,"",51.20,18.20,2.22.52.105 +CA,LLOYDMINSTER,SK,53.28,-110.00,184.150.187.241 +FR,VALENCE,"",44.93,4.90,81.52.201.83 +DE,HOLZMINDEN,NI,51.82,9.45,195.95.193.150 +US,PUNTAGORDA,FL,26.9089,-82.0431,23.79.240.48 +MY,SERDANG,"",3.03,101.72,23.15.10.112 +PH,MUNTINLUPA,"",14.38,121.05,63.217.232.22 +MK,STRUMICA,"",41.44,22.64,23.74.24.66 +HU,SZOMBATHELY,"",47.23,16.62,80.157.150.169 +US,LONSDALE,MN,44.4527,-93.4244,23.63.227.227 +FI,HALLI,"",61.87,24.83,80.239.237.93 +DE,UNTERWELLENBORN,TH,50.65,11.43,92.122.215.89 +UA,SEVERODONETSK,"",48.95,38.50,213.155.156.207 +DE,TAXIS,BW,48.70,10.37,80.157.170.154 +US,WHARTON,TX,29.2926,-96.034,96.16.7.101 +US,LATROBE,PA,40.2834,-79.4033,23.192.161.21 +US,COLOMA,MI,42.2090,-86.3279,184.27.120.50 +CA,PRINCEALBERT,SK,53.20,-105.75,184.150.187.237 +US,FALLON,NV,39.5809,-118.3335,209.116.151.185 +CN,FENGTAI,BJ,39.84,116.29,184.51.199.145 +GB,CIRENCESTER,EN,51.73,-1.98,23.67.71.131 +RO,NASAUD,"",47.28,24.40,77.67.27.250 +RU,KOMBINAT,"",50.83,37.82,80.239.222.169 +CR,CARTAGO,"",9.87,-83.92,72.164.253.68 +US,ELMCITY,NC,35.8063,-77.8487,209.170.113.123 +IN,BENGALURU,KA,12.98,77.58,96.17.182.136 +SA,RADWA,"",26.72,50.08,79.140.94.254 +TH,NONTHABURI,"",13.83,100.48,110.164.253.209 +AR,CALETAOLIVIA,"",-46.43,-67.53,190.98.167.230 +US,TUSKEGEE,AL,32.4242,-85.6518,23.63.227.214 +US,PRESCOTTVALLEY,AZ,34.6100,-112.3153,63.226.34.173 +US,CLEBURNE,TX,32.2789,-97.4607,96.16.7.101 +US,KING,NC,36.3197,-80.3548,209.18.41.23 +JP,ISHIKAWA,07,37.15,140.45,23.61.250.113 +US,DIMMITT,TX,34.5255,-102.2563,23.74.8.24 +RU,CHEKHOV,"",55.15,37.48,2.22.52.101 +UA,VOZNESENSK,"",47.70,31.45,2.20.142.173 +JP,IWAKI,07,37.05,140.88,72.246.184.84 +US,HARLAN,IA,41.6064,-95.2684,63.216.54.231 +US,GLENDALEHEIGHTS,IL,41.9203,-88.081,23.74.8.8 +CN,LHASA,XZ,29.65,91.10,184.84.239.186 +HK,TSIMSHATSUI,"",22.30,114.17,23.76.205.111 +FR,LEROURET,"",43.68,7.02,63.80.12.205 +US,DUNDEE,IL,42.1081,-88.3234,107.14.38.218 +IN,VIZIANAGARAM,AP,18.12,83.42,117.239.240.76 +US,FENTON,MO,38.5035,-90.4616,96.17.14.31 +US,FORTPAYNE,AL,34.4140,-85.7188,23.220.100.223 +SE,ORE,AC,63.55,19.68,2.21.240.40 +AU,PYMBLE,NSW,-33.75,151.15,104.72.70.96 +DE,WEIMAR,HE,51.37,9.40,195.95.193.132 +IN,NAHAN,HP,30.55,77.30,2.21.240.61 +US,NASHOTAH,WI,43.1042,-88.4078,107.14.38.224 +IL,NIRIM,"",31.33,34.40,212.25.69.145 +US,LEXINGTONPARK,MD,38.2267,-76.4333,184.27.45.150 +US,WORTHINGTON,MN,43.6980,-95.6043,23.63.227.227 +IR,SEMNAN,"",35.58,53.39,80.239.149.123 +US,MECHANICSVILLE,VA,37.6340,-77.2585,23.79.240.36 +CZ,PRESTICE,"",49.57,13.32,23.62.237.137 +CA,SALABERRYDEVALLEYFIELD,QC,45.25,-74.13,67.69.197.92 +US,TOMSRIVER,NJ,39.9821,-74.1609,23.67.242.156 +US,EFFINGHAM,IL,39.1183,-88.6059,23.67.60.223 +US,ELKINSPARK,PA,40.0732,-75.1248,184.26.44.38 +US,NEWBRITAIN,CT,41.6612,-72.7801,184.25.109.200 +RO,DOROHOI,"",47.95,26.40,88.221.93.150 +US,UKIAH,CA,39.1539,-123.258,23.212.52.93 +US,ELMIRA,NY,42.1046,-76.758,107.14.38.218 +US,MEBANE,NC,36.1105,-79.2671,209.170.113.124 +US,CANTONMENT,FL,30.6195,-87.3241,96.17.153.162 +RO,DEJ,"",47.15,23.87,88.221.93.150 +PH,NAGA,"",12.53,122.10,80.239.237.230 +DE,LUDWIGSBURG,BW,48.90,9.18,84.53.175.90 +US,LOGANTON,PA,41.0290,-77.3175,165.254.35.197 +JP,TOYAMA,16,36.68,137.22,65.116.149.102 +US,COCHRAN,GA,32.4223,-83.3103,23.79.240.36 +US,GOTHENBURG,NE,40.9862,-100.1215,184.85.215.165 +PL,DABROWAGORNICZA,"",50.33,19.20,2.22.52.101 +DE,WALLDORF,HE,50.00,8.58,23.14.94.228 +US,PONCACITY,OK,36.7012,-97.1444,184.28.23.24 +CZ,USTINADORLICI,"",49.98,16.40,23.62.237.133 +US,SEBRING,FL,27.5025,-81.4505,184.51.207.83 +JP,IWAMIZAWA,01,43.20,141.77,23.3.74.113 +US,LEMARS,IA,42.8179,-96.1854,65.113.249.11 +US,KOSCIUSKO,MS,33.0153,-89.5142,165.254.138.175 +ID,SLEMAN,"",-6.47,108.30,23.0.162.21 +PH,CLARK,"",15.21,120.58,23.76.205.90 +US,MARLBOROUGH,MA,42.3495,-71.5482,23.220.148.122 +BR,CAXIASDOSUL,RS,-29.17,-51.18,177.159.174.7 +US,COMMERCECITY,CO,39.8641,-104.8219,184.84.180.98 +PL,WOJCIECH,"",53.87,23.08,2.22.52.105 +US,PLATTSMOUTH,NE,40.9697,-95.9883,184.85.215.165 +AT,HORN,"",48.65,15.65,195.145.147.108 +US,DUNN,NC,35.3234,-78.6207,24.143.197.207 +IT,AVELLINO,"",40.90,14.78,195.22.200.221 +US,FAIRPORT,NY,43.0902,-77.4171,107.14.38.217 +US,BLUEFIELD,VA,37.2441,-81.3675,209.48.37.183 +US,GULFBREEZE,FL,30.3906,-87.0518,96.17.153.157 +AU,BALLARAT,VIC,-37.57,143.85,202.7.177.87 +NL,PUTTE,"",51.37,4.38,92.122.189.85 +PL,IZABELA,"",52.20,21.30,23.14.94.224 +DE,EISENBERG,TH,50.97,11.90,92.122.207.164 +US,VINITA,OK,36.6347,-95.0928,23.212.53.75 +US,MOHEGANLAKE,NY,41.3106,-73.8477,184.26.44.38 +JP,KUNITACHI,13,35.68,139.44,96.7.251.95 +CA,PICKERING,ON,43.87,-79.03,72.246.43.215 +US,FORTATKINSON,WI,42.8930,-88.808,165.254.207.111 +US,GREENBRIER,TN,36.4312,-86.8077,23.79.240.37 +EE,NARVA,"",59.38,28.19,217.212.227.25 +PG,PORTMORESBY,"",-9.48,147.18,23.62.157.31 +US,HEREFORD,TX,34.9614,-102.6133,96.16.7.120 +US,EMPORIA,KS,38.5525,-96.1732,23.215.15.32 +RO,CORABIA,"",43.78,24.50,2.22.52.102 +ZA,WYNBERG,"",-26.10,28.08,95.101.2.113 +US,EASTHAMPTON,NY,40.9893,-72.1859,184.26.44.38 +SK,PIESTANY,"",48.60,17.83,23.14.94.224 +BF,OUAGADOUGOU,"",12.37,-1.52,184.27.45.157 +GB,FARNBOROUGH,EN,51.27,-0.73,184.27.45.150 +US,EXCELSIORSPRINGS,MO,39.3039,-94.2206,23.67.60.223 +DZ,BECHAR,"",31.62,-2.22,90.84.53.194 +ES,VALDECILLA,"",43.38,-3.73,2.20.44.111 +US,MANITOWOC,WI,44.0987,-87.7276,184.28.17.55 +AU,THORNLEIGH,NSW,-33.73,151.08,23.62.8.25 +US,OJAI,CA,34.5795,-119.1248,184.50.26.201 +AT,SIEZENHEIM,"",47.80,12.98,46.33.70.104 +AR,ALBERTI,"",-35.03,-60.27,200.123.201.219 +US,HIAWATHA,IA,42.0568,-91.6844,23.63.227.227 +PL,RODOWO,"",53.47,20.30,2.22.52.109 +DZ,CHLEF,"",36.16,1.33,90.84.53.224 +US,NEWPHILADELPHIA,OH,40.5013,-81.3604,107.14.38.217 +US,GASCITY,IN,40.4885,-85.6017,184.27.45.157 +DE,BRANDERBISDORF,SN,50.87,13.33,92.122.207.164 +RE,SAINTPIERRE,"",-21.32,55.48,23.15.10.106 +US,POLSON,MT,47.7086,-114.2472,23.212.53.64 +US,GRIFFIN,GA,33.2865,-84.3197,72.246.247.30 +US,SODASPRINGS,ID,42.7567,-111.4702,173.223.52.70 +US,ALPENA,MI,45.1042,-83.4937,23.74.8.24 +FI,PIETARSAARI,"",63.65,22.68,193.184.164.238 +US,HAZELWOOD,MO,38.7849,-90.3852,204.93.47.216 +BR,CAMPOGRANDE,MS,-20.45,-54.62,189.72.175.117 +US,KINGSVILLE,TX,27.4762,-97.7965,107.14.43.29 +US,LAVERNIA,TX,29.3560,-98.0927,23.215.15.22 +NO,KOLBOTN,"",59.81,10.80,2.21.240.40 +US,GRAYLING,MI,44.6717,-84.6485,23.79.255.153 +IL,RAMATGAN,"",32.08,34.81,2.18.243.1 +PH,BALABAG,"",11.98,121.92,184.84.239.186 +US,VERNONROCKVILLE,CT,41.8370,-72.4608,184.25.109.213 +US,GRANITEVILLE,SC,33.5725,-81.8284,204.2.243.132 +RU,TULA,"",54.20,37.61,80.239.217.231 +US,OKANOGAN,WA,48.3263,-119.6832,184.27.179.159 +US,TOWNSEND,TN,35.6244,-83.7794,23.79.240.37 +SE,UMEA,AC,63.83,20.25,2.21.240.40 +US,DERIDDER,LA,30.7742,-93.2493,23.5.164.143 +RU,KURGAN,"",53.71,37.10,2.22.52.105 +CH,LOCARNO,"",46.17,8.80,193.247.167.214 +US,GATLINBURG,TN,35.6579,-83.52,23.79.240.36 +US,ELLENWOOD,GA,33.6382,-84.2654,72.246.247.5 +CZ,CHOCEN,"",50.00,16.23,23.62.237.133 +IT,VICENZA,"",45.55,11.55,193.45.15.198 +CZ,CHOMUTOV,"",50.45,13.43,23.62.237.137 +US,ATOKA,TN,35.4184,-89.8065,184.51.147.33 +US,HAZLETON,PA,40.9531,-76.0034,165.254.48.154 +IN,ANDHERI,MH,19.12,72.83,23.211.135.66 +NZ,ROTORUA,"",-38.13,176.25,219.88.186.165 +US,CHIEFLAND,FL,29.4076,-82.903,184.51.145.7 +IR,RAMIN,"",35.58,51.06,165.254.48.155 +ZA,BRYANSTON,"",-26.05,28.03,41.193.163.53 +US,YADKINVILLE,NC,36.1267,-80.6582,184.51.35.226 +IN,RAMACHANDRAPURAM,AP,16.85,82.02,117.239.240.96 +CN,LISHUI,ZJ,28.45,119.90,204.2.166.220 +US,JAMAICAPLAIN,MA,42.3076,-71.1131,23.192.161.30 +US,WHITELAND,IN,39.5510,-86.0995,23.63.227.214 +US,NIAGARAFALLS,NY,43.0967,-79.0337,65.113.249.8 +DE,BADLAER,NI,52.10,8.08,92.122.207.164 +US,HORSHAM,PA,40.1879,-75.1531,23.67.242.139 +MY,BANDAR,"",2.87,101.43,23.198.99.130 +US,PINECITY,MN,45.8356,-92.9649,107.14.38.217 +RU,SARANSK,"",54.18,45.18,2.21.240.61 +US,KINGSBURG,CA,36.4785,-119.5245,96.17.12.44 +US,CATOOSA,OK,36.1721,-95.6946,23.5.164.143 +US,SPEARFISH,SD,44.4638,-103.897,107.14.38.227 +BD,CHITTAGONG,"",22.33,91.83,203.106.85.4 +KR,HWAGOK,"",37.42,127.73,61.111.58.229 +CH,FRAUENFELD,"",47.55,8.90,23.14.94.224 +US,BELMONT,NC,35.2342,-81.041,209.18.41.23 +AU,CAMBERWELL,VIC,-37.83,145.07,104.72.70.96 +CH,NIDAU,"",47.12,7.23,63.216.54.236 +US,KENDALLVILLE,IN,41.4608,-85.2531,65.113.249.11 +DE,SACHSEN,BY,49.30,10.40,213.200.109.183 +NZ,CROMWELL,"",-45.04,169.20,219.88.186.172 +US,CALEDONIA,MI,42.7912,-85.5517,23.63.227.214 +US,FISHKILL,NY,41.5306,-73.8899,184.51.125.79 +BY,NOVOPOLOTSK,"",55.53,28.65,217.212.227.25 +FR,ALLEVARD,"",45.40,6.07,2.16.117.200 +CN,XINYI,GD,22.35,110.94,216.206.101.214 +US,ASTORIA,NY,40.7715,-73.926,184.29.107.20 +US,SUSSEX,WI,43.1492,-88.2347,107.14.38.217 +CN,DONGGUAN,GD,23.03,113.73,184.50.87.178 +DE,NAILA,BY,50.32,11.70,23.14.94.224 +US,COCKEYSVILLE,MD,39.4879,-76.6611,23.67.242.156 +TL,DILI,"",-8.56,125.57,23.0.162.46 +GB,GRIMSBY,EN,53.53,-0.05,88.221.87.94 +PH,OLONGAPO,"",14.83,120.28,120.28.5.112 +US,ETNA,CA,41.4264,-123.0415,23.61.195.160 +US,NORTHAUGUSTA,SC,33.4766,-81.8963,23.79.240.36 +IN,MYSORE,KA,12.31,76.65,23.57.69.159 +US,MARCOISLAND,FL,25.9350,-81.6996,23.79.240.37 +US,HOMOSASSASPRINGS,FL,28.8033,-82.5763,23.33.186.134 +ID,AGUNG,"",-2.03,115.48,23.0.162.54 +PH,CUBAO,"",14.62,121.05,58.71.107.116 +US,BETHALTO,IL,38.9045,-90.0089,23.63.227.214 +PH,TAGUIG,"",14.54,121.06,58.71.107.120 +LV,JELGAVA,"",56.65,23.70,80.239.149.123 +RS,AVALA,"",44.43,19.93,2.20.45.104 +KE,KISUMU,"",-0.10,34.75,41.193.163.53 +US,DUMAS,TX,35.8084,-101.9581,23.215.15.22 +FR,MASSY,"",48.73,2.28,2.16.117.190 +US,CONNEAUTLAKE,PA,41.6180,-80.3248,209.48.37.183 +UA,YALTA,CRIMEA,44.50,34.17,23.14.94.224 +US,NEWBERN,NC,35.1731,-76.9871,184.28.17.76 +US,CARMICHAEL,CA,38.6263,-121.3281,184.84.180.68 +DE,KIRCHHEIMBOLANDEN,RP,49.67,8.02,23.14.94.220 +CA,POINTECLAIRE,QC,45.43,-73.75,165.254.35.197 +US,LURAY,VA,38.6496,-78.431,184.29.107.38 +US,ADELANTO,CA,34.6701,-117.539,184.50.26.194 +HR,RIJEKA,"",45.33,15.61,46.33.70.104 +RU,NEFTEYUGANSK,"",61.08,72.70,80.239.237.80 +US,BLACKMOUNTAIN,NC,35.5991,-82.3046,23.79.240.37 +US,NAPOLEONVILLE,LA,29.9154,-91.0326,23.79.240.37 +MX,SAHUAYODEMORELOS,MIC,20.07,-102.72,23.215.15.22 +US,SPRINGBRANCH,TX,29.8719,-98.3904,23.5.164.146 +JP,FUKUI,18,36.07,136.22,65.116.149.89 +US,PORTANGELES,WA,48.0203,-123.478,67.131.104.14 +CA,CLARKSON,ON,43.52,-79.62,72.246.43.215 +US,CAMBRIAHEIGHTS,NY,40.6944,-73.7359,23.215.15.9 +US,WEARE,NH,43.0801,-71.7237,184.29.107.38 +US,AIRWAYHEIGHTS,WA,47.6581,-117.5937,67.131.104.6 +IN,VALSAD,GJ,20.63,72.93,23.211.135.66 +RS,INDJIJA,"",45.05,20.08,23.62.237.133 +US,EASTLAND,TX,32.4120,-98.7997,23.212.53.75 +US,CORBIN,KY,36.9167,-84.1011,23.220.100.223 +US,MORTON,IL,40.6150,-89.4441,184.27.120.65 +DE,ROSENHEIM,BY,47.85,12.13,23.74.24.69 +HU,KAZINCBARCIKA,"",48.25,20.63,80.239.222.169 +FR,MONTREUIL,"",48.87,2.43,2.16.117.190 +US,FALFURRIAS,TX,27.2181,-98.2459,23.215.15.9 +US,HERMISTON,OR,45.8456,-119.2817,67.131.104.6 +US,WINNSBORO,SC,34.4133,-81.1456,204.2.243.143 +BR,MANAUS,AM,-3.11,-60.03,200.174.107.50 +DE,RASTATT,BW,48.85,8.20,2.16.217.206 +US,NORTHLIBERTY,IA,41.7609,-91.6574,96.17.9.8 +US,BROOKSHIRE,TX,29.8217,-95.9894,64.86.135.210 +US,AMBLER,PA,40.1823,-75.2133,184.26.44.40 +DE,GAGGENAU,BW,48.80,8.33,23.14.94.228 +US,CANYON,TX,34.8890,-101.9043,204.2.223.90 +US,ARDEN,NC,35.4582,-82.5975,96.16.12.216 +MV,NAIFARU,"",5.43,73.33,23.75.23.135 +FR,FERRIERESENGATINAIS,"",48.08,2.78,2.16.117.190 +US,CARROLL,IA,42.0800,-94.8598,65.113.249.8 +US,ALLEGAN,MI,42.5755,-85.8473,23.63.227.223 +US,CAMPBELL,CA,37.2798,-121.955,96.17.12.44 +BR,LONDRINA,PR,-23.30,-51.15,92.122.188.161 +SI,LOZ,"",45.73,14.48,2.20.142.166 +IN,MAHALAKSHMI,MH,18.98,72.80,23.57.69.157 +US,TUSCUMBIA,AL,34.6544,-87.6611,72.246.247.5 +AR,LANUS,"",-34.72,-58.41,200.123.201.215 +IN,MADHAPUR,AP,17.44,78.39,96.17.180.166 +AU,INDIGO,VIC,-36.10,146.57,104.72.70.95 +DE,LIPPE,NW,50.72,8.05,194.25.95.212 +US,ELKVIEW,WV,38.4976,-81.4683,184.28.17.76 +CH,CHIASSO,"",45.83,9.03,193.247.167.214 +US,ALVA,OK,36.8367,-98.8022,184.51.35.226 +US,AMERICANCANYON,CA,38.1778,-122.2572,23.212.52.82 +US,QUARTZSITE,AZ,33.6715,-114.2178,23.74.8.8 +AU,SURRYHILLS,NSW,-33.89,151.21,210.11.142.67 +DE,WEINGARTEN,RP,49.26,8.29,77.67.27.235 +PH,LOYOLA,"",8.33,126.33,23.76.205.111 +SK,NITRA,"",48.32,18.08,23.62.237.138 +US,SPRINGBORO,OH,39.5611,-84.22,107.14.38.224 +US,NORTHVERNON,IN,38.9859,-85.6189,23.74.8.8 +MY,KUCHING,"",1.55,110.33,203.106.85.4 +UA,IRSHAVA,"",48.32,23.05,2.22.52.102 +US,CORNELIA,GA,34.5117,-83.5924,184.25.157.169 +FR,LAGARDERE,"",43.83,0.32,90.84.50.108 +US,EBENSBURG,PA,40.4747,-78.7176,23.192.161.16 +KR,SUYUDONG,"",38.25,127.45,92.122.215.89 +AR,GUALEGUAYCHU,"",-33.01,-58.51,190.98.167.230 +HU,MONOR,"",47.35,19.45,88.221.93.150 +IR,ALI,"",31.88,50.00,96.17.182.130 +FR,LEHAVRE,"",49.50,0.13,2.16.117.200 +CA,TRURO,NS,45.37,-63.30,184.29.107.38 +CA,SAINTEFOY,QC,46.78,-71.30,72.246.43.233 +US,HIGHLANDPARK,NJ,40.5001,-74.4284,184.26.44.40 +GB,POPLAR,EN,51.50,-0.02,88.221.87.112 +US,WALKERSVILLE,MD,39.4904,-77.3477,23.192.161.21 +US,DAPHNE,AL,30.6100,-87.861,96.17.153.162 +FR,BOULOGNEBILLANCOURT,"",48.83,2.25,23.14.94.220 +RU,GEORGIEVSK,"",44.15,43.47,92.122.188.161 +PT,AMADORA,"",38.75,-9.23,212.113.165.116 +DE,AMBERG,BY,49.44,11.86,77.67.27.250 +DE,MARKKLEEBERG,SN,51.28,12.40,195.95.193.150 +DE,SANKTINGBERT,SL,49.28,7.12,194.25.95.212 +US,SPOTSYLVANIA,VA,38.1929,-77.6865,23.192.161.21 +CW,WILLEMSTAD,"",12.10,-68.92,72.246.65.26 +SA,DAMMAM,"",26.43,50.11,23.215.60.48 +MY,GENTING,"",5.28,100.38,58.26.185.116 +CO,IBAGUE,"",4.44,-75.23,200.14.44.100 +CA,NEPEAN,ON,45.45,-75.70,72.246.43.237 +DK,ODENSE,"",55.40,10.38,23.65.29.106 +JP,SANO,09,36.32,139.58,23.3.104.29 +FR,FONTENAYSOUSBOIS,"",48.85,2.48,88.221.15.110 +TR,BILGI,"",38.10,43.25,193.45.15.198 +DM,ROSEAU,"",15.30,-61.40,23.74.2.7 +US,COFFEYVILLE,KS,37.0670,-95.5817,23.215.15.32 +US,PALMYRA,VA,37.8582,-78.2803,184.26.44.40 +CZ,CESKALIPA,"",50.68,14.55,23.62.237.133 +US,ROXBORO,NC,36.4264,-78.951,23.79.240.48 +ID,GEDONG,"",-6.22,106.90,23.0.162.46 +US,GEYSERVILLE,CA,38.7422,-122.8612,184.84.180.92 +PL,SZCZECINEK,"",53.72,16.70,80.239.222.190 +US,SUFFERN,NY,41.1483,-74.1189,23.67.242.156 +FR,PAU,"",43.30,-0.37,2.16.117.190 +DE,HOHENHEIM,BW,48.70,9.22,2.20.142.173 +US,EUSTIS,FL,28.8842,-81.4638,23.79.240.48 +US,STEILACOOM,WA,47.1696,-122.5937,23.212.59.85 +US,RIFLE,CO,39.7934,-108.1357,184.84.180.68 +US,BROADVIEW,IL,41.8498,-87.8859,23.67.60.220 +US,BEATRICE,NE,40.2674,-96.7699,165.254.207.111 +US,WINNEMUCCA,NV,41.1353,-118.1862,65.113.249.11 +CN,QINHUANGDAO,HE,39.93,119.59,23.76.205.90 +US,CHINOVALLEY,AZ,34.8245,-112.4595,63.226.34.176 +US,WESTBEND,WI,43.4212,-88.1854,65.113.249.8 +UA,KRASNOARMEYSK,"",47.15,31.03,92.122.215.89 +US,CENTRALCITY,KY,37.3137,-87.1024,23.79.240.36 +FR,PORTDEBOUC,"",43.40,4.98,2.16.117.190 +US,PEARLCITY,HI,21.4205,-157.9279,184.50.26.203 +FR,PERTUIS,"",43.68,5.50,2.16.117.200 +AT,MITTERRETZBACH,"",48.79,15.99,195.145.147.109 +ZA,RANDBURG,"",-26.10,27.98,41.193.163.53 +US,KENNETT,MO,36.2279,-90.0425,96.17.14.16 +US,HOSCHTON,GA,34.0890,-83.7695,63.216.54.231 +BG,TARNOVO,"",43.07,25.65,23.14.94.220 +US,PARKVILLE,MD,39.3955,-76.5329,23.67.242.156 +US,INMAN,SC,35.0511,-82.0561,63.216.54.231 +US,STROUDSBURG,PA,40.9882,-75.2974,23.67.242.156 +HU,BOLY,"",45.97,18.52,81.93.191.127 +US,NORTHVILLE,MI,42.4188,-83.5284,23.67.60.220 +FI,LAPPEENRANTA,"",61.07,28.18,2.21.240.40 +PL,GDYNIA,"",54.50,18.55,2.22.52.105 +US,SHELLEY,ID,43.2015,-111.522,206.104.149.146 +FR,BERSEE,"",50.48,3.15,2.16.117.200 +US,HOOPESTON,IL,40.4428,-87.6416,23.74.8.8 +US,PLOVER,WI,44.4117,-89.5378,184.85.215.170 +US,MONTVERNON,NH,42.9030,-71.6963,184.25.109.201 +CA,SIOUXLOOKOUT,ON,50.10,-91.92,72.246.43.232 +NE,NIAMEY,"",13.52,2.12,81.52.201.98 +RU,STROITELEY,"",56.25,43.40,80.239.217.238 +US,MICCOSUKEE,FL,30.5947,-84.0417,23.79.240.36 +FR,LEPECQ,"",48.90,2.10,2.16.117.200 +US,NORTHEASTON,MA,42.0558,-71.1216,23.62.238.220 +CN,ZHOUSHAN,ZJ,30.02,122.10,23.15.10.91 +US,JEFFERSONVILLE,IN,38.3363,-85.6984,23.220.100.223 +AT,PRIEL,"",48.45,15.57,88.221.93.150 +RU,MIR,"",58.45,39.42,2.21.240.40 +JP,KYODO,13,35.67,139.75,72.246.184.81 +US,CARRIZOSPRINGS,TX,28.4732,-99.976,96.17.163.161 +SO,HARGEISA,"",9.58,44.07,95.101.34.109 +US,FRANKENMUTH,MI,43.3550,-83.7419,184.51.35.215 +PT,EVORA,"",39.52,-8.97,195.22.14.134 +US,DOWNINGTOWN,PA,40.0250,-75.7202,23.67.242.156 +FR,DOMONT,"",49.03,2.33,2.16.117.190 +US,OAKMAN,AL,33.6727,-87.3688,184.51.35.226 +US,JENNINGS,LA,30.1991,-92.6684,23.79.240.36 +PR,BAYAMON,"",18.4008,-66.1589,192.204.82.221 +DE,NEIDLINGEN,BY,49.22,10.32,80.157.170.154 +CH,KAISERAUGST,"",47.53,7.72,193.247.167.214 +BR,OSASCO,SP,-23.57,-46.78,200.174.107.50 +FI,KUUSAMO,"",65.97,29.18,2.21.240.40 +US,BISHOP,CA,37.4772,-118.401,63.151.119.25 +US,BELLS,TX,33.6182,-96.434,23.5.164.146 +US,PARRISH,FL,27.5583,-82.2583,165.254.205.13 +DE,ZANDT,BY,49.23,10.65,195.145.147.108 +US,GARNETT,KS,38.2898,-95.2918,209.170.117.178 +US,STATHAM,GA,33.9449,-83.5889,72.246.247.5 +IR,BIRJAND,"",32.89,59.24,80.239.222.167 +US,PEARISBURG,VA,37.2475,-80.7675,184.27.45.157 +AU,RYDE,NSW,-33.82,151.10,202.7.177.87 +RO,MORENI,"",44.98,25.65,88.221.93.150 +JP,OTSU,25,35.00,135.87,117.104.139.136 +RU,SYZRAN,"",53.17,48.47,80.239.237.93 +MA,MARRAKECH,"",31.63,-8.00,2.20.44.111 +US,FUQUAYVARINA,NC,35.5406,-78.8329,209.18.41.27 +US,HOOPER,UT,41.1783,-112.1209,23.61.195.150 +US,MINERSVILLE,PA,40.6888,-76.2602,23.192.161.16 +FR,COURNONDAUVERGNE,"",45.75,3.22,2.16.117.200 +US,HATFIELD,PA,40.2766,-75.2964,23.67.242.156 +NL,WOERDEN,"",52.08,4.92,92.122.189.114 +US,ENID,OK,36.3867,-97.8158,23.5.164.143 +US,CARNEGIE,PA,40.4095,-80.1154,184.27.45.150 +NG,IBADAN,"",6.53,2.77,23.212.108.8 +FI,HAMEENLINNA,"",61.00,24.45,213.155.156.212 +BA,BANJALUKA,"",44.78,17.19,80.239.237.230 +GE,BOLNISI,"",41.45,44.54,92.122.215.67 +US,STUART,FL,27.1804,-80.2454,23.79.240.36 +CH,ARLESHEIM,"",47.48,7.62,23.14.94.214 +AT,LANDECK,"",47.13,10.57,46.33.70.97 +CZ,JICINA,"",49.57,17.97,2.20.142.173 +US,SELMER,TN,35.1420,-88.6514,23.79.240.36 +US,ORANGEPARK,FL,30.1070,-81.7167,23.79.240.36 +US,LANGHORNE,PA,40.1816,-74.9144,184.26.44.38 +IT,BRESCIA,"",45.55,10.25,95.101.34.109 +CA,MOUNTPEARL,NF,47.52,-52.78,67.69.197.95 +HK,TSUENWAN,"",22.37,114.10,23.76.205.90 +MY,LIKAS,"",5.98,116.10,96.17.180.177 +KZ,KYZYLORDA,"",44.85,65.51,217.212.227.25 +US,ONLEY,VA,37.6704,-75.7049,184.27.45.157 +RO,PASCANI,"",44.63,26.20,77.67.27.250 +CH,PREGASSONA,"",46.03,8.97,193.45.15.199 +RU,ALEXANDROV,"",56.40,38.72,2.21.240.61 +US,GRANTS,NM,35.2644,-107.7333,63.151.29.15 +US,BATTLEBORO,NC,35.8571,-77.4097,63.151.29.12 +FI,TAIVALKOSKI,"",65.57,28.25,2.21.240.61 +SK,ZILINA,"",49.22,18.73,23.14.94.214 +PL,ZORY,"",50.05,18.70,2.22.52.109 +NL,VAASSEN,"",52.28,5.97,92.122.189.114 +NO,SOGN,"",60.30,10.42,213.155.156.206 +US,OGDENSBURG,NY,44.7176,-75.3859,184.29.107.20 +AF,BAGRAM,"",34.95,69.25,2.22.52.102 +US,PALOSHEIGHTS,IL,41.6608,-87.7892,23.67.60.223 +US,GRUNDYCENTER,IA,42.3726,-92.793,23.63.227.227 +DZ,ORAN,"",35.69,-0.64,90.84.53.225 +RO,PIATRANEAMT,"",46.92,26.33,80.239.222.169 +US,BLOUNTSTOWN,FL,30.3988,-85.0821,204.2.243.132 +US,KINGGEORGE,VA,38.2650,-77.1228,208.185.55.86 +US,DIXON,IA,41.7085,-90.7516,65.113.249.11 +US,ELKRIVER,MN,45.3450,-93.5658,63.151.29.15 +JO,IRBID,"",32.56,35.85,77.67.27.235 +US,FORTRILEY,KS,38.9760,-96.6098,204.94.155.231 +US,COLDWATER,MI,41.9063,-85.0231,23.79.255.153 +US,ALICE,TX,27.6821,-98.1034,23.5.164.143 +US,HELOTES,TX,29.6143,-98.747,96.17.163.161 +US,ATMORE,AL,31.1324,-87.4695,96.6.47.106 +CA,NIAGARAONTHELAKE,ON,43.25,-79.07,72.246.43.215 +US,DELPHOS,OH,40.8243,-84.3284,23.74.8.8 +US,OKMULGEE,OK,35.6454,-96.0285,165.254.138.175 +FR,ARS,"",49.08,6.07,23.200.87.58 +AT,KATSDORF,"",48.32,14.47,195.145.147.109 +US,MIDDLEFIELD,OH,41.4619,-81.025,63.216.54.229 +SE,HACKSTA,AB,59.48,18.30,2.21.240.61 +US,SOUTHORANGE,NJ,40.7490,-74.2606,23.62.238.220 +FR,GRASSE,"",43.67,6.92,2.16.117.190 +US,AIKEN,SC,33.6484,-81.682,204.2.243.64 +SK,TOPOLCANY,"",48.57,18.18,23.62.237.133 +ZW,BULAWAYO,"",-20.15,28.58,41.193.163.45 +US,CULPEPER,VA,38.4670,-77.9818,23.67.242.139 +CN,JINCHENG,SX,35.50,112.83,72.246.191.19 +DE,BURGDORF,NI,52.15,10.22,80.157.170.154 +US,OLIN,IA,41.9909,-91.1308,65.113.249.8 +RU,ZVEZDA,"",54.11,36.78,92.122.188.163 +DE,OBERURSEL,HE,50.20,8.58,92.122.215.89 +US,FAIRPLAY,CO,39.1352,-105.9815,23.212.53.75 +IL,MIGDAL,"",32.83,35.50,212.25.69.134 +FR,EGUILLES,"",43.57,5.37,2.16.117.190 +IR,NOVIN,"",35.19,46.36,23.57.76.18 +RU,KANSK,"",56.20,95.71,184.51.199.145 +IN,THIRUVANANTHAPURAM,KL,8.51,76.96,23.211.135.66 +NZ,INVERCARGILL,"",-46.40,168.35,219.88.186.164 +US,GUNNISON,CO,38.5539,-107.0907,184.50.26.179 +US,ATWATER,CA,37.2953,-120.6669,96.17.12.44 +US,NORTHBROOKFIELD,MA,42.2695,-72.0791,184.25.157.169 +US,HARWINTON,CT,41.7549,-73.0582,63.141.200.241 +US,PAYETTE,ID,44.0773,-116.6967,206.104.149.133 +US,THIEFRIVERFALLS,MN,48.0818,-96.1186,23.79.240.36 +PL,ZABRZE,"",50.32,18.78,213.200.109.173 +FR,LESPINASSE,"",44.98,1.03,2.16.117.190 +US,MOLINE,IL,41.4843,-90.4905,65.113.249.8 +RO,RASNOV,"",45.58,25.45,81.196.26.236 +US,SHARON,PA,41.2346,-80.4992,184.27.45.157 +US,HERSHEY,PA,40.2634,-76.626,23.67.242.139 +US,BROOKSVILLE,FL,28.5914,-82.358,23.33.186.101 +CA,SAINTHUBERT,QC,47.80,-69.15,67.69.197.92 +IL,DANIEL,"",31.93,34.93,212.25.69.145 +US,GORHAM,NH,44.3296,-71.1352,107.14.38.217 +US,WINTERVILLE,NC,35.5203,-77.4072,184.28.17.55 +KE,MOMBASA,"",-4.05,39.67,2.16.1.90 +TR,COM,"",36.07,36.25,193.45.15.198 +JP,TOHO,41,33.48,129.93,72.246.184.92 +US,FORTSILL,OK,34.6684,-98.399,23.5.164.143 +US,CORTEZ,CO,37.3484,-108.7341,64.129.104.135 +US,NEWCUMBERLAND,PA,40.2034,-76.87,184.26.44.40 +US,ONEALS,CA,37.1445,-119.6517,173.223.52.67 +FI,RAISIO,"",60.48,22.18,82.96.58.85 +TR,AYDIN,"",40.17,32.68,193.45.15.198 +DE,MONTABAUR,RP,50.43,7.83,77.67.27.235 +US,LINWOOD,KS,39.0229,-95.0014,209.170.117.169 +US,PORTALLEN,LA,30.4802,-91.3238,23.215.15.22 +RU,KOMSOMOLSK,"",57.03,40.38,2.21.240.61 +US,ELONCOLLEGE,NC,36.2189,-79.4807,23.215.15.22 +US,ATHERTON,CA,37.4538,-122.2033,23.212.52.82 +US,BRAY,OK,34.6379,-97.8173,23.215.15.22 +BR,ALFENAS,MG,-21.43,-45.95,200.216.8.55 +US,SCHERERVILLE,IN,41.4906,-87.4618,107.14.38.224 +US,GURNEE,IL,42.3764,-87.9424,107.14.38.227 +US,GLOUCESTERCITY,NJ,39.8885,-75.1173,184.26.44.38 +CA,OAKVILLE,ON,43.43,-79.67,72.246.43.233 +US,DEMING,NM,32.1825,-107.7499,23.215.15.22 +PL,PABIANICE,"",51.67,19.37,80.239.222.167 +BR,POUSOALEGRE,MG,-22.22,-45.93,200.216.8.55 +TR,MUGLA,"",37.20,28.37,193.45.15.199 +US,BRYANT,AR,34.5942,-92.5003,184.28.127.55 +US,MINERALWELLS,TX,32.7965,-98.1108,23.5.164.143 +CZ,VRBNOPODPRADEDEM,"",50.12,17.38,23.62.237.135 +UZ,SAMARKAND,"",39.65,66.96,80.239.222.167 +US,SASSAMANSVILLE,PA,40.3419,-75.5728,184.26.44.38 +JP,TAMASHIMA,33,34.53,133.67,23.15.1.29 +PL,OLSZTYN,"",53.78,20.48,80.157.149.129 +US,CLAXTON,GA,32.1564,-81.8865,23.79.240.48 +US,NAHUNTA,GA,31.1753,-81.969,23.212.53.75 +US,CARRBORO,NC,35.9085,-79.0807,209.18.41.23 +AU,TOWNSVILLE,QLD,-19.25,146.80,202.7.177.76 +FR,VERNANTES,"",47.40,0.05,2.16.117.200 +US,GRANDRONDE,OR,45.1093,-123.6869,184.27.179.187 +JP,SANNO,08,35.93,140.07,23.15.1.29 +US,BAXTER,TN,36.1069,-85.6452,204.2.243.143 +CA,SACKVILLE,NB,45.88,-64.35,184.29.107.38 +RU,SYKTYVKAR,"",61.67,50.81,80.239.237.231 +DE,COBURG,BY,50.25,10.97,92.122.215.89 +CZ,HORICE,"",49.60,15.18,23.62.237.133 +US,CHESTERTON,IN,41.6139,-87.0454,23.67.60.222 +US,DENVERCITY,TX,33.0189,-102.7913,65.113.249.11 +US,KNOX,IN,41.2954,-86.6039,65.113.249.8 +US,KYLE,TX,29.9978,-97.835,23.215.15.22 +FR,CHEVIGNYSAINTSAUVEUR,"",47.30,5.13,2.16.117.200 +AT,KREMSANDERDONAU,"",48.42,15.60,195.145.147.108 +DE,KURZ,BY,47.62,12.17,23.14.94.224 +US,BELGIUM,WI,43.4979,-87.8642,107.14.38.217 +US,SHOREHAM,VT,43.8808,-73.3057,165.254.48.150 +US,BASKINGRIDGE,NJ,40.6763,-74.5643,209.170.113.124 +UA,UZHGOROD,"",48.62,22.30,2.22.52.102 +RU,PERVOURALSK,"",56.91,59.95,2.21.240.40 +RU,PLASTUN,"",44.76,136.29,96.7.251.95 +WF,MATAUTU,"",-13.28,-176.13,104.72.70.96 +US,MINEOLA,TX,32.6629,-95.4808,23.5.164.146 +US,MOSSPOINT,MS,30.4116,-88.5345,24.143.197.207 +US,GREENWICH,CT,41.0502,-73.6235,184.26.44.38 +US,ANNAPOLIS,MD,38.9918,-76.5525,23.192.161.30 +CN,XUANWU,HA,33.97,115.23,23.2.16.103 +US,MEQUON,WI,43.2406,-88.022,23.63.227.214 +HU,PESTSZENTLORINC,"",47.43,19.20,23.14.94.224 +US,INKSTER,MI,42.2932,-83.3147,23.67.60.223 +DE,BERENBERG,BW,47.90,9.03,23.14.94.214 +DE,BEVERUNGEN,NW,51.67,9.37,92.122.207.179 +CZ,HRANICE,"",49.75,14.25,23.62.237.133 +US,WOODRIDGE,IL,41.7537,-88.05,23.67.60.220 +PL,STARGARDSZCZECINSKI,"",53.33,15.05,80.239.222.167 +RS,MITROVIC,"",42.88,20.87,23.62.237.133 +US,MEDFIELD,MA,42.1847,-71.3048,184.25.109.213 +FR,CADEROUSSE,"",44.10,4.75,2.16.117.200 +RU,ZHUKOVSKIY,"",55.61,38.11,80.239.217.231 +US,WOODINVILLE,WA,47.7581,-122.094,23.212.59.85 +US,BRAZORIA,TX,28.9272,-95.5834,23.63.227.214 +US,ATCHISON,KS,39.5229,-95.1427,65.113.249.8 +AU,FINDON,SA,-34.90,138.53,23.205.117.14 +IT,CARRARA,"",44.08,10.10,193.45.15.198 +US,HOODRIVER,OR,45.5726,-121.6583,184.27.179.159 +US,MONTPELIER,VT,44.2601,-72.5759,184.25.109.200 +KW,AHMADI,"",29.08,48.08,23.212.108.8 +CN,JIEYANG,GD,23.55,116.33,107.14.44.212 +ZA,PORTELIZABETH,"",-33.97,25.58,41.193.163.53 +FR,MAXEVILLE,"",48.72,6.17,23.14.94.214 +FI,TAMPERE,"",61.50,23.75,82.96.58.85 +US,MONTAGUE,MA,42.5391,-72.5186,184.25.109.201 +IT,SANPAOLO,"",45.37,10.02,193.45.15.198 +US,FARMINGDALE,NY,40.7334,-73.4289,184.26.44.38 +US,TIJERAS,NM,34.9842,-106.3226,23.212.52.79 +US,GUTHRIE,OK,35.8319,-97.4802,23.215.15.32 +CH,ZUG,"",47.17,8.52,193.247.167.214 +US,APEX,NC,35.7358,-78.8955,96.16.12.216 +UA,MELNIK,"",49.32,25.27,23.14.94.224 +US,ODENVILLE,AL,33.6693,-86.4042,63.216.54.229 +US,MOUNTSHASTA,CA,41.3683,-122.2492,23.61.195.165 +US,COLLEGEDALE,TN,35.0534,-85.0503,184.51.35.215 +FR,GUYANCOURT,"",48.77,2.07,2.16.117.190 +HU,TISZAVASVARI,"",47.97,21.35,194.25.95.214 +US,MARTINEZ,CA,37.9788,-122.1647,23.212.52.82 +US,KEANSBURG,NJ,40.4416,-74.1294,23.67.242.156 +CZ,ZLIN,"",49.23,17.67,23.62.237.137 +DE,GOELLHEIM,RP,49.59,8.05,23.14.94.224 +US,MANGUM,OK,34.8485,-99.5641,96.16.7.101 +IN,KHAMMAM,AP,17.25,80.15,96.17.182.130 +SE,SODERHAMN,AB,59.45,18.58,107.14.32.235 +US,PARKRIDGE,IL,42.0122,-87.8435,107.14.38.224 +US,JENISON,MI,42.9189,-85.8361,65.113.249.11 +TR,ERDEM,"",37.30,40.62,77.67.27.250 +US,HAVERTOWN,PA,39.9771,-75.3116,23.67.242.156 +US,CHELMSFORD,MA,42.5915,-71.3555,23.62.238.215 +MX,CHIHUAHUA,CHH,28.63,-106.08,92.122.188.163 +US,BAYSHORE,NY,40.7379,-73.2632,184.26.44.40 +CN,XIAMEN,FJ,24.45,118.08,184.50.87.176 +US,NAUGATUCK,CT,41.4890,-73.0518,184.25.109.200 +US,WILLIAMS,AZ,35.6062,-112.4411,63.226.34.176 +US,HOBESOUND,FL,27.0409,-80.17,23.79.240.36 +TR,TRABZON,"",41.00,39.72,23.74.24.69 +US,NORTHPLATTE,NE,41.1392,-100.7774,184.85.215.170 +SK,RUZOMBEROK,"",49.08,19.32,23.62.237.133 +IN,GANDHINAGAR,GJ,23.22,72.68,23.211.135.110 +CN,CAOXIAN,SD,34.82,115.53,23.3.104.15 +US,BEARDSTOWN,IL,39.9762,-90.4107,23.63.227.214 +US,BENICIA,CA,38.1051,-122.1359,96.17.12.44 +PL,BIALA,"",51.80,20.48,2.22.52.105 +US,FORTLOUDON,PA,39.9814,-77.8809,23.192.161.30 +ID,DATA,"",-8.30,115.61,80.239.237.230 +US,BEAVERDAM,WI,43.4576,-88.8551,184.85.215.165 +US,MOUNTLAKETERRACE,WA,47.7924,-122.3065,23.212.59.63 +CA,OMPAH,ON,45.02,-76.83,209.148.192.61 +US,PENNINGTONGAP,VA,36.7557,-83.038,23.79.240.48 +US,IUKA,MS,34.8106,-88.1999,96.17.153.162 +BY,ORSHA,"",54.52,30.41,80.239.222.167 +US,TORRINGTON,WY,41.9687,-104.195,63.226.34.176 +IL,DAN,"",33.24,35.65,82.102.137.137 +US,BARRINGTON,IL,42.1512,-88.1636,107.14.38.217 +US,TEMPLETON,CA,35.5330,-120.6957,23.61.195.165 +US,SAULTSAINTEMARIE,MI,46.3629,-84.3293,23.63.227.214 +DE,MITTWEIDA,SN,50.53,12.87,2.20.142.173 +RU,DZERZHINSK,"",56.24,43.46,213.155.156.207 +US,PLEASANTVIEW,TN,36.3846,-87.0359,23.215.60.48 +US,PALISADESPARK,NJ,40.8468,-73.9958,24.143.199.188 +US,GEISMAR,LA,30.2217,-91.0044,23.215.15.9 +CN,DUYUN,GZ,26.27,107.52,72.246.191.19 +RU,NORILSK,"",69.33,88.10,217.212.227.25 +US,WAHOO,NE,41.2013,-96.6192,165.254.207.117 +US,RAYMONDVILLE,TX,26.5112,-97.8502,23.215.15.9 +AT,ERPFENDORF,"",47.58,12.47,195.145.147.101 +BG,YAMBOL,"",42.48,26.50,23.62.237.137 +US,FITCHBURG,MA,42.5924,-71.8176,184.26.44.38 +AT,PERCHTOLDSDORF,"",48.12,16.27,46.33.70.97 +RU,CHELNY,"",55.23,48.90,213.155.156.206 +IL,EINHAHORESH,"",32.38,34.93,82.102.137.137 +SE,VISBY,I,57.63,18.30,213.155.156.206 +IR,YAZD,"",31.90,54.37,77.67.96.114 +LT,GIEDRAICIU,"",55.08,25.28,2.21.240.61 +US,FAIRHOPE,AL,30.4849,-87.8614,96.17.153.162 +UA,RADIO,"",47.70,33.85,2.20.142.173 +CZ,ROUDNICENADLABEM,"",50.42,14.25,23.62.237.137 +PL,SOSNOWIEC,"",51.88,19.57,2.22.52.102 +AR,AVELLANEDA,"",-34.65,-58.38,200.123.201.219 +US,PLAINWELL,MI,42.4690,-85.5608,23.212.53.75 +US,TAHLEQUAH,OK,35.9078,-95.0047,23.215.15.9 +US,PENNSAUKEN,NJ,39.9750,-75.0476,184.26.44.38 +SE,EKSJO,F,57.67,14.95,217.212.227.25 +AT,GAUBITSCH,"",48.65,16.38,195.145.147.101 +US,WALDRON,AR,34.9204,-94.0577,209.170.117.178 +JP,NAGASAKI,42,32.80,129.92,23.3.104.29 +DZ,BEJAIA,"",36.75,5.08,92.122.189.85 +CA,ABBOTSFORD,BC,49.05,-122.30,24.244.17.205 +US,BARRE,VT,44.1738,-72.4252,72.247.10.237 +IT,SINOPOLI,"",38.27,15.88,95.101.34.109 +US,ANGWIN,CA,38.5873,-122.4459,23.61.195.163 +US,BUNKERHILL,WV,39.3176,-78.0485,184.27.45.157 +US,STRASBURG,CO,39.8693,-103.9998,184.28.23.4 +US,BYRONCENTER,MI,42.7984,-85.7381,23.67.60.222 +US,CUTBANK,MT,48.8080,-112.4878,107.14.32.235 +UA,TERNOPIL,"",49.55,25.58,2.22.52.102 +BJ,COTONOU,"",6.35,2.43,80.239.171.190 +AR,PARANA,"",-31.73,-60.53,200.123.201.219 +US,OAKHALL,VA,37.9340,-75.5755,184.25.157.162 +US,GRANTHAM,PA,40.1564,-76.9967,184.26.44.38 +US,CORINTH,MS,34.9238,-88.6234,184.27.45.157 +ER,ASMERA,"",15.33,38.93,82.102.137.137 +IN,ALWAR,RJ,27.57,76.60,96.17.182.130 +DE,STRASSE,NW,50.87,7.48,80.157.170.221 +FR,BRIVELAGAILLARDE,"",45.15,1.53,2.16.117.200 +SE,SOLBACKEN,AB,59.12,18.24,213.155.156.208 +US,AUSTINBURG,OH,41.7602,-80.8589,63.216.54.216 +CO,NARINO,"",4.40,-74.83,200.14.44.104 +CZ,PARDUBICE,"",50.03,15.78,88.221.93.157 +US,MANLIUS,NY,42.9680,-75.9513,107.14.38.227 +US,MASTICBEACH,NY,40.7682,-72.8409,184.26.44.40 +US,CHIPLEY,FL,30.6040,-85.5678,96.17.153.157 +US,COLEMAN,TX,31.8779,-99.43,173.197.194.159 +PL,SKOCZOW,"",49.80,18.80,2.22.52.101 +US,TEXARKANA,TX,33.3633,-94.2141,23.215.15.32 +DE,EDENKOBEN,RP,49.29,8.12,80.157.170.221 +PR,MOROVIS,"",18.3346,-66.4186,72.246.65.37 +US,MORRISON,CO,39.5990,-105.2281,23.63.227.214 +US,MERCERISLAND,WA,47.5624,-122.2266,23.212.59.85 +US,CONNELLSVILLE,PA,39.9618,-79.5876,209.48.37.183 +CN,YANGQUAN,SX,37.86,113.56,72.246.191.16 +TH,CHANG,"",18.85,100.82,203.144.145.96 +US,BROWNFIELD,TX,33.1115,-102.3365,63.216.54.216 +CZ,SUSICE,"",49.92,15.60,23.62.237.138 +CZ,PELHRIMOV,"",49.43,15.23,23.62.237.133 +US,RICHLANDS,VA,37.1242,-81.807,184.26.93.111 +JP,AKITA,05,39.72,140.07,96.7.251.95 +US,SIXES,OR,42.8041,-124.3226,63.217.232.17 +CZ,CERNOVICE,"",49.37,14.97,23.62.237.137 +AR,GENERALPICO,"",-35.67,-63.73,190.98.167.220 +RU,TATARSTAN,"",52.90,141.07,2.21.240.40 +US,EAGLE,ID,43.7768,-116.3919,184.27.179.187 +CN,CHANGDE,HN,29.03,111.68,117.104.139.162 +US,BONNERSFERRY,ID,48.8159,-116.6507,184.27.179.181 +US,ZEELAND,MI,42.8513,-85.9891,23.63.227.214 +DK,SKAARUP,"",54.70,11.67,23.65.29.106 +FR,SAINTGERMAINLESCORBEIL,"",48.62,2.48,2.16.117.190 +US,DARIEN,GA,31.4067,-81.499,204.2.243.132 +ES,REDES,"",43.42,-8.20,2.20.44.111 +US,CARRINGTON,ND,47.4573,-99.0752,23.79.255.149 +US,REEDCITY,MI,43.9034,-85.5104,23.63.227.227 +US,FOWLERVILLE,MI,42.6682,-84.0758,107.14.38.224 +FR,TRESSIN,"",50.60,3.20,2.16.117.200 +TH,MUANGRAJBURI,"",13.53,99.80,61.19.12.177 +RU,SUMMA,"",60.50,29.02,217.212.227.25 +US,MITCHELL,SD,43.7034,-98.0626,23.63.227.227 +CZ,JIHLAVA,"",49.40,15.58,23.62.237.137 +FR,EAUBONNE,"",49.00,2.28,2.16.117.200 +BG,BISTRICA,"",42.23,23.17,92.122.215.89 +US,UVALDE,TX,29.3417,-99.8887,107.14.36.199 +IN,DWARKA,GJ,22.24,68.97,2.21.240.40 +US,LITHIASPRINGS,GA,33.7656,-84.6415,23.79.240.48 +US,LENORA,KS,39.6800,-99.7571,23.77.234.35 +AU,POTTSPOINT,NSW,-33.87,151.22,23.62.8.25 +US,HAINES,AK,59.1202,-135.7004,24.244.17.205 +NO,KVITESEID,"",59.40,8.50,213.155.156.206 +BD,COMILLA,"",23.45,91.20,23.57.76.18 +US,RICHFIELD,UT,38.7083,-111.7291,23.61.195.163 +GB,GATWICK,EN,51.17,-0.18,23.212.108.8 +US,LILLINGTON,NC,35.3213,-78.9874,184.28.127.58 +US,GREENACRES,WA,47.6286,-117.1038,206.104.149.146 +US,GRANTSVILLE,MD,39.6703,-79.1506,184.26.44.38 +CZ,RAKOVNIK,"",50.10,13.75,23.62.237.137 +US,PETAL,MS,31.3432,-89.178,96.17.153.162 +CZ,MNICHOVICE,"",49.93,14.70,23.62.237.137 +US,HOHENWALD,TN,35.5255,-87.548,23.79.240.36 +US,PECULIAR,MO,38.7126,-94.4101,23.212.53.75 +CN,YIGAO,ZJ,30.93,120.29,72.246.191.19 +CN,JILIN,JL,43.86,126.57,184.51.199.132 +IN,UDHAMPUR,JK,32.93,75.13,117.239.91.75 +PL,OBORNIKISLASKIE,"",51.30,16.92,2.22.61.102 +US,HEDGESVILLE,WV,39.5195,-78.0934,23.192.161.30 +FR,LEOGNAN,"",44.73,-0.60,2.16.117.190 +RO,GHEBOAIA,"",44.80,25.75,2.22.52.109 +US,WILLCOX,AZ,32.5598,-110.08,63.226.34.172 +DE,SANDESNEBEN,SH,53.68,10.50,92.122.207.179 +FR,AVALLON,"",47.48,3.90,2.16.117.200 +US,HAVREDEGRACE,MD,39.5690,-76.1506,165.254.48.142 +IL,ASHDOD,"",31.82,34.65,212.25.69.142 +KE,NAKURU,"",-0.28,36.07,2.16.1.106 +US,TRUCKEE,CA,39.3282,-120.1822,23.5.164.143 +US,MARIANNA,FL,30.7390,-85.2383,23.79.240.36 +UA,MARIUPOL,"",47.10,37.55,80.239.237.230 +RO,CAREI,"",47.68,22.47,81.196.26.231 +US,WESTFRANKFORT,IL,37.9074,-88.9501,165.254.207.117 +HU,TEGLAS,"",47.72,21.68,23.14.94.228 +NL,SHERTOGENBOSCH,"",51.70,5.32,2.16.153.173 +US,LINCOLNWOOD,IL,42.0082,-87.731,23.67.60.223 +US,BROADVIEWHEIGHTS,OH,41.3194,-81.6781,96.17.9.8 +US,GALESBURG,IL,40.9508,-90.3832,65.113.249.11 +PL,KUZNIARACIBORSKA,"",50.20,18.30,213.200.109.183 +US,GIBSONIA,PA,40.6378,-79.9434,209.48.37.188 +AU,MONASH,SA,-34.23,140.57,104.72.70.96 +CA,BANFF,AB,51.17,-115.57,24.244.17.205 +IR,PASARGAD,"",30.20,53.18,23.14.94.214 +US,INWOOD,WV,39.3765,-78.0298,23.192.161.30 +MX,SANANDRESCHOLULA,PUE,19.05,-98.30,23.215.15.22 +AT,PIRKA,"",47.00,15.38,195.145.147.109 +US,DYERSBURG,TN,36.0753,-89.423,23.220.100.224 +US,CEDAR,MN,45.3385,-93.2617,23.67.60.223 +US,APPLING,GA,33.6237,-82.2874,23.79.240.36 +US,MERRIMACK,NH,42.8551,-71.5193,209.170.113.237 +CA,VANDERHOOF,BC,54.02,-124.02,24.244.17.205 +US,EMMAUS,PA,40.5173,-75.5037,23.67.242.139 +US,CRANBERRYTWP,PA,40.6999,-80.1268,96.6.47.120 +CN,YIZHUANG,JS,34.17,117.58,184.50.87.178 +US,FRASER,MI,42.5384,-82.9497,69.22.154.209 +RS,IN,"",43.45,19.32,2.20.45.102 +HK,TUENMUN,"",22.40,113.98,23.76.205.111 +US,OCEANSPRINGS,MS,30.4180,-88.7558,165.254.138.165 +TG,LOME,"",6.13,1.22,77.67.41.227 +US,JACKSONVILLEBEACH,FL,30.3318,-81.6555,23.79.240.36 +US,WINSLOW,AZ,35.1934,-110.3619,65.116.149.102 +US,MAGNA,UT,40.7034,-112.1122,184.50.26.179 +UA,KALUSH,"",49.02,24.37,2.20.142.173 +US,WINOOSKI,VT,44.4955,-73.1839,165.254.48.150 +US,PINETOWN,NC,35.6052,-76.8394,184.28.17.55 +HU,SZEKESFEHERVAR,"",47.20,18.42,23.14.94.228 +FR,MARTRESDEVEYRE,"",45.68,3.20,88.221.83.118 +GR,KAVALA,"",40.94,24.40,93.186.137.228 +DK,ARHUS,"",56.15,10.22,213.155.156.206 +CN,ZHANGZHOU,FJ,24.52,117.67,184.50.87.176 +IN,KHARAGPUR,WB,22.33,87.33,96.17.182.130 +US,SAFETYHARBOR,FL,28.0080,-82.6963,23.33.186.101 +MG,ANTSIRABE,"",-19.85,47.03,195.10.8.202 +IL,MAGEN,"",31.30,34.43,212.25.69.136 +TH,BANKOK,"",13.58,100.22,88.221.15.111 +US,HOLMDEL,NJ,40.3764,-74.1727,23.220.148.122 +US,MONTEVALLO,AL,33.1388,-86.8879,23.79.240.36 +GB,SEACROFT,EN,53.82,-1.45,23.67.255.106 +FR,SAINTCHAMOND,"",45.47,4.50,2.16.117.212 +PW,KOROR,"",7.33,134.48,23.76.205.111 +US,BELEN,NM,34.5756,-106.5882,23.61.195.165 +US,MONAHANS,TX,31.5378,-102.956,64.145.95.141 +US,QUITMAN,GA,30.7559,-83.5353,184.84.180.68 +DE,PUCHHEIM,BY,48.15,11.35,84.53.175.92 +US,FAITH,SD,44.8511,-102.1289,23.74.8.61 +CN,DAQING,HL,46.58,125.00,184.51.199.132 +US,LAGUNABEACH,CA,33.5745,-117.7868,184.50.26.192 +IQ,SULAYMANIYAH,"",34.03,44.82,195.145.147.107 +US,FAIRVIEWHEIGHTS,IL,38.5952,-90.0039,204.93.47.220 +US,BALLSTONSPA,NY,43.0020,-73.8759,107.14.38.217 +FR,SAINTPRIEST,"",46.45,2.17,2.16.117.190 +US,ALAMOSA,CO,37.4690,-105.8365,107.14.32.228 +CN,LEDONG,HI,18.75,109.17,72.246.191.19 +US,MARGARETVILLE,NY,42.1471,-74.6599,165.254.48.155 +RO,BANCA,"",46.35,27.28,2.22.52.101 +PL,USTKA,"",54.58,16.85,77.67.96.114 +US,RINCON,GA,32.2490,-81.2731,23.79.240.36 +AT,STEINHAUS,"",47.62,15.80,195.145.147.109 +US,MADISONHEIGHTS,MI,42.5080,-83.103,23.63.227.227 +RU,NAKHODKA,"",51.63,43.97,80.239.237.231 +IN,PONDICHERRY,PY,11.93,79.83,80.239.237.230 +NA,TSUMEB,"",-19.23,17.72,41.193.163.45 +US,INDIANTRAIL,NC,35.0963,-80.6145,209.18.41.27 +RU,RAY,"",58.30,40.12,80.239.237.231 +PL,FRANK,"",53.90,18.25,2.22.52.101 +TH,KRABI,"",8.07,98.92,203.106.85.113 +RU,YEISK,"",46.70,38.28,2.22.52.102 +US,BARNSTABLE,MA,41.7011,-70.3019,184.25.109.196 +CN,TONGLING,AH,30.95,117.78,184.50.87.178 +DE,PFORZHEIM,BW,48.88,8.70,23.14.94.214 +US,COOPERSTOWN,NY,42.7228,-74.8929,209.18.41.27 +US,VALENTINE,NE,42.4840,-100.7562,184.27.120.65 +HU,HAJDUNANAS,"",47.85,21.43,23.14.94.228 +PR,ARECIBO,"",18.4739,-66.7295,72.164.253.83 +FR,BOBIGNY,"",48.90,2.45,90.84.50.230 +US,POWHATAN,VA,37.5492,-77.935,63.130.161.239 +TW,CHANGHUA,"",24.08,120.53,23.76.205.111 +US,STEUBENVILLE,OH,40.3582,-80.6994,184.28.17.76 +PH,TONDO,"",14.62,120.97,184.84.239.186 +DK,GALTEN,"",56.15,9.92,2.21.240.40 +NL,MIERLO,"",51.45,5.62,95.101.2.112 +UA,BERDYANSK,"",46.75,36.79,2.21.240.61 +VN,TRAI,"",17.12,106.95,184.84.239.175 +US,POWELL,OH,40.1701,-83.0808,107.14.38.227 +US,FAIRFAXSTATION,VA,38.7497,-77.3141,23.212.53.64 +AT,WELS,"",48.17,14.03,23.14.94.228 +US,LAMPASAS,TX,31.1064,-98.2303,96.17.163.161 +US,VILLAPARK,IL,41.8812,-87.9751,107.14.38.224 +US,NEWLEXINGTON,OH,39.7095,-82.1925,107.14.38.224 +MY,BATUPAHAT,"",1.85,102.93,203.106.85.195 +US,SHIRLEY,NY,40.7965,-72.8753,23.61.195.165 +BA,GRUDE,"",43.81,17.45,23.14.94.228 +AR,CARBONI,"",-35.20,-59.33,190.98.167.220 +US,BELLWOOD,IL,41.8827,-87.8764,23.67.60.223 +US,EXCELSIOR,MN,44.8924,-93.5895,23.67.60.217 +US,CEDARTOWN,GA,33.9973,-85.2758,72.246.247.30 +PL,SWINOUJSCIE,"",53.92,14.25,2.22.52.109 +US,NEOSHO,MO,36.8753,-94.3946,23.77.234.11 +VN,THUDUC,"",10.85,106.75,23.5.165.167 +CH,SCHAFFHAUSEN,"",47.70,8.63,193.247.167.214 +JP,SAKAE,30,33.65,135.40,23.61.250.108 +US,CHAPIN,SC,34.1436,-81.3335,209.18.41.27 +US,HOLLY,MI,42.7970,-83.603,184.27.120.65 +US,HARDIN,MT,45.8343,-107.7879,67.131.104.6 +BE,HASSELT,"",50.93,5.33,23.62.100.154 +JP,ASAHIKAWA,01,43.77,142.37,72.246.184.81 +RU,YUZHNOSAKHALINSK,"",46.95,142.74,96.7.251.97 +US,JOHNSISLAND,SC,32.6897,-80.0874,96.16.12.216 +US,LEITCHFIELD,KY,37.4975,-86.3182,63.216.54.216 +US,BASIN,WY,44.3702,-108.0775,184.27.179.181 +GB,STAPLE,EN,51.25,1.25,92.122.54.12 +UA,KREMENCHUK,"",49.07,33.42,80.239.149.123 +PK,SIALKOT,"",30.92,71.85,165.254.144.25 +US,RANDOMLAKE,WI,43.5753,-87.9876,23.79.255.149 +BG,RUSE,"",43.83,25.95,2.20.45.104 +US,BRAINERD,MN,46.2895,-94.0683,65.113.249.8 +CO,CUCUTA,"",7.90,-72.52,190.90.221.149 +US,BELLEGLADE,FL,26.5243,-80.6241,184.28.184.6 +IN,TADEPALLEGUDEM,AP,16.83,81.50,23.205.118.106 +US,MANDAN,ND,46.7289,-100.9833,107.14.38.217 +US,STREETSBORO,OH,41.2431,-81.3428,107.14.38.217 +BG,BALKAN,"",41.77,25.57,93.186.137.228 +US,WOODBINE,MD,39.3345,-77.0694,184.27.45.150 +GB,LANCING,EN,50.82,-0.33,173.222.211.190 +US,MERIDEN,CT,41.5330,-72.7742,184.29.107.38 +US,HAYMARKET,VA,38.8726,-77.6484,23.192.161.21 +US,DEDHAM,MA,42.2464,-71.1775,184.25.109.213 +SE,LUND,M,55.70,13.18,23.65.29.106 +MF,MARIGOT,"",18.07,-63.08,2.20.243.45 +GR,KALAMAKI,"",37.92,23.72,23.14.94.214 +FR,MAROLLESENHUREPOIX,"",48.57,2.30,2.16.117.200 +DE,WETZLAR,HE,50.55,8.50,92.122.207.179 +NA,WALVISBAY,"",-22.96,14.51,41.193.163.45 +BR,CRICIUMA,PR,-26.02,-51.72,187.59.4.147 +US,SKOWHEGAN,ME,44.8163,-69.6519,165.254.48.155 +MZ,MOCAMBIQUE,"",-17.07,36.75,165.165.46.38 +CN,YUNCHENG,SX,35.02,110.99,72.246.191.16 +US,NEWPORTCOAST,CA,33.5768,-117.7458,184.50.26.204 +US,SHAMOKINDAM,PA,40.8488,-76.8203,184.26.44.40 +SL,FREETOWN,"",8.49,-13.23,63.80.12.205 +US,GRASONVILLE,MD,38.9427,-76.1976,168.143.243.33 +US,FORSYTH,GA,33.0857,-83.918,72.246.247.30 +CZ,JICIN,"",50.43,15.35,2.20.142.166 +TR,TUZLA,"",40.50,30.52,23.62.237.138 +US,GRAFTON,WI,43.3305,-87.9299,65.113.249.8 +US,FREEBURG,IL,38.3845,-89.9186,96.17.14.15 +BE,MARAIS,"",50.55,4.32,23.62.100.154 +SA,YANBU,"",24.09,38.05,23.215.60.48 +US,KINGSMOUNTAIN,NC,35.2471,-81.3891,96.16.12.228 +US,TAOS,NM,36.4227,-105.5099,204.2.223.91 +US,CHICKASHA,OK,34.9953,-97.9747,173.197.194.159 +US,NATCHITOCHES,LA,31.7831,-93.1496,23.5.164.143 +US,EDEN,NY,42.6450,-78.8782,107.14.38.218 +US,EDGEWOOD,MD,39.4327,-76.2984,184.27.45.150 +US,SACO,ME,43.5496,-70.476,107.14.38.218 +CA,YARMOUTH,NS,43.83,-66.12,184.27.45.150 +US,MARLBORO,NJ,40.3194,-74.2497,184.26.44.38 +DE,LUNEBURG,NI,53.25,10.40,195.95.193.147 +US,LITCHFIELDPARK,AZ,33.5445,-112.5171,184.50.26.201 +GB,STOCKTONONTEES,EN,54.58,-1.42,23.67.255.106 +US,COMMERCE,TX,33.3007,-95.9347,184.26.93.116 +SK,PRESOV,"",49.00,21.25,23.62.237.137 +DZ,BATNA,"",35.56,6.18,77.67.96.114 +US,RUNNEMEDE,NJ,39.8519,-75.0768,23.67.60.223 +MZ,MOZAMBIQUE,"",-15.03,40.74,41.193.163.45 +US,BOALSBURG,PA,40.7669,-77.7668,23.192.161.16 +AU,BENDIGO,VIC,-36.77,144.28,210.11.142.67 +CZ,TABOR,"",49.42,14.67,23.62.237.138 +US,BERRIENSPRINGS,MI,41.9566,-86.3987,23.67.60.217 +US,HOLLIDAYSBURG,PA,40.4448,-78.3256,184.28.17.55 +NO,BODO,"",67.28,14.38,213.155.156.206 +RU,DIVNOGORSK,"",55.96,92.36,2.21.240.40 +US,REDHOUSE,WV,38.5624,-81.9059,184.28.17.76 +AT,NEUHAUS,"",48.00,16.05,195.145.147.101 +CN,XINGYI,GZ,25.05,104.98,72.246.191.16 +HK,WANCHAI,"",22.28,114.17,23.76.205.90 +ID,LUWUK,"",-6.28,106.18,23.0.162.40 +US,BATTLEGROUND,WA,45.8003,-122.4981,23.212.59.85 +DE,INGOLSTADT,BY,48.77,11.43,92.122.207.164 +FI,KOKKOLA,"",61.50,28.20,92.122.215.89 +RO,ROMAN,"",46.92,26.92,88.221.93.157 +AT,KLAGENFURT,"",46.62,14.31,195.145.147.109 +AU,MARIBYRNONG,VIC,-37.78,144.88,60.254.143.211 +US,SLOUGHHOUSE,CA,38.5091,-121.107,128.241.89.70 +US,VILLEPLATTE,LA,30.7127,-92.2634,23.212.53.64 +DE,OBERHAUSEN,NW,51.47,6.85,2.20.142.166 +GB,SALFORD,EN,52.03,-0.63,88.221.87.94 +GB,GIFFORD,SC,55.90,-2.73,23.212.108.28 +US,BALDWINSVILLE,NY,43.1825,-76.3664,184.26.44.40 +NO,ARENDAL,"",58.46,8.77,2.21.240.40 +IN,NAMAKKAL,TN,11.23,78.17,23.205.118.106 +CZ,HODONIN,"",49.83,15.78,195.27.155.188 +US,MANOR,TX,30.3520,-97.5205,96.17.163.161 +PL,ISKRZYCZYN,"",49.82,18.75,23.74.24.69 +CN,WUHU,AH,31.35,118.37,184.50.87.178 +UA,KRAMATORSK,"",48.72,37.53,80.239.237.231 +AR,LUJAN,"",-34.57,-59.10,2.21.240.40 +DE,NUSSE,SH,53.67,10.58,92.122.207.179 +NL,EDE,"",52.03,5.67,95.101.2.112 +US,OWATONNA,MN,44.0575,-93.2082,184.85.215.165 +US,SCIO,OR,44.6708,-122.6996,23.212.59.85 +FI,SEINAJOKI,"",62.80,22.83,2.21.240.40 +US,CHERRYVILLE,NC,35.3791,-81.3649,96.16.12.216 +IN,ATTUR,TN,12.73,79.95,23.205.118.106 +PH,TOWER,"",6.18,125.13,23.76.205.111 +US,TRUSSVILLE,AL,33.6426,-86.5754,165.254.138.175 +PT,PRIME,"",40.63,-7.83,195.22.14.133 +ES,MORON,"",41.42,-2.42,2.20.44.118 +CZ,KTIS,"",48.92,14.13,23.62.237.133 +CZ,NYRANY,"",49.72,13.20,195.27.155.188 +US,BONNERSPRINGS,KS,39.0619,-94.8881,23.77.234.35 +BA,BRCKO,"",44.88,18.81,95.101.34.105 +US,GODDARD,KS,37.6682,-97.5892,174.76.226.117 +US,PELZER,SC,34.6459,-82.4278,23.79.240.36 +US,GRANVILLE,OH,40.0812,-82.5297,77.67.86.217 +AU,ROSEBERY,NSW,-33.92,151.20,202.7.177.87 +US,LOUDONVILLE,OH,40.6534,-82.2246,23.74.8.8 +AU,ULTIMO,NSW,-33.88,151.20,104.72.70.96 +DE,BOTTROP,NW,51.52,6.92,2.22.61.99 +GR,KOZANI,"",40.30,21.78,23.14.94.228 +US,LAKEOZARK,MO,38.2106,-92.6582,204.93.47.220 +US,GLENCARBON,IL,38.7582,-89.9728,23.212.53.75 +NG,ODUA,"",4.92,6.45,90.84.53.225 +US,SMARR,GA,32.9834,-83.8751,63.234.249.61 +US,BELLEVERNON,PA,40.1536,-79.8119,23.192.161.16 +US,WINNFIELD,LA,31.8850,-92.6017,23.5.164.146 +HU,ANGYALFOLD,"",47.53,19.07,23.14.94.228 +US,CARO,MI,43.4866,-83.3855,65.113.249.8 +US,IGNACIO,CO,37.0891,-107.6496,64.129.104.132 +ID,MADIUN,"",-7.62,111.52,23.0.162.40 +US,PERRYSVILLE,OH,40.6625,-82.3165,23.215.15.22 +UA,KHIZHA,"",48.10,23.20,192.80.13.117 +IT,PARCO,"",38.05,13.30,96.17.180.155 +US,HEPHZIBAH,GA,33.2810,-82.1107,23.79.240.36 +US,DETROITLAKES,MN,46.9503,-95.6596,198.63.196.214 +US,HEBRON,KY,39.0882,-84.7043,107.14.38.217 +IN,ABHANPUR,CT,21.05,81.72,124.124.252.159 +US,LITTLERIVER,SC,33.8867,-78.6627,209.18.41.27 +IN,KANPUR,UP,26.47,80.35,23.57.76.18 +US,CHARDON,OH,41.5761,-81.1919,107.14.38.218 +HU,BALATON,"",48.10,20.32,23.14.94.214 +GM,BANJUL,"",13.45,-16.58,23.76.205.90 +US,TWINSBURG,OH,41.3169,-81.4404,107.14.38.218 +US,MOUNTPOCONO,PA,41.1358,-75.3944,23.67.242.156 +RO,TATARANI,"",44.90,26.03,80.239.222.169 +DZ,BLIDA,"",36.47,2.83,213.248.108.244 +US,SILOAMSPRINGS,AR,36.1693,-94.458,23.215.15.9 +AT,GROSSENDORF,"",48.05,14.05,195.145.147.109 +US,SEVERN,MD,39.1227,-76.6832,23.192.161.16 +RU,KURILSK,"",45.23,147.88,77.67.27.235 +US,BIRDSBORO,PA,40.2313,-75.8555,63.216.54.231 +US,BARBOURVILLE,KY,36.8650,-83.9507,184.27.45.150 +AR,ROJAS,"",-34.20,-60.73,80.239.237.230 +US,PALATINE,IL,42.1106,-88.0342,107.14.38.227 +RU,ULANUDE,"",51.83,107.62,184.51.199.145 +CA,CASTLEGAR,BC,49.32,-117.67,184.27.179.159 +AR,RIOCUARTO,"",-33.13,-64.35,80.239.237.231 +US,BURLINGAME,CA,37.5670,-122.3669,96.17.12.44 +US,KOHLER,WI,43.7428,-87.7817,23.74.8.24 +IN,GANDHIDHAM,GJ,23.08,70.13,23.211.135.66 +US,POULSBO,WA,47.7571,-122.6233,165.254.1.165 +KR,TAEGU,"",35.87,128.60,125.56.214.166 +RU,PENZA,"",53.20,45.00,2.22.52.109 +TR,BOGAZICI,"",37.52,30.07,23.14.94.224 +RU,PANFILOVA,"",56.00,39.10,2.21.240.61 +US,WESTLAKE,LA,30.2637,-93.2773,23.215.15.22 +BR,LIMEIRA,SP,-22.56,-47.40,187.59.4.154 +US,WOODRUFF,SC,34.7461,-82.0164,165.254.138.175 +US,GOLDTHWAITE,TX,31.3914,-98.5866,23.212.53.75 +CA,GASPE,QC,48.83,-64.48,184.27.120.65 +PL,BIALAPODLASKA,"",52.03,23.13,77.67.96.114 +US,FORTEDWARD,NY,43.2300,-73.5588,107.14.38.217 +US,BONAIRE,GA,32.5074,-83.5644,184.51.35.226 +US,LONGPOND,PA,41.0663,-75.4541,184.26.44.38 +IR,CHAMRAN,"",35.17,49.93,77.67.96.114 +US,NEWBOSTON,TX,33.4799,-94.4582,23.215.15.9 +TR,GENEL,"",40.88,39.57,23.74.24.66 +US,PROSPECT,KY,38.3571,-85.5869,107.14.38.217 +US,CLOVER,SC,35.1039,-81.2451,72.246.247.5 +US,RANCHOMIRAGE,CA,33.7825,-116.4136,184.50.26.192 +US,OLNEY,IL,38.7221,-88.0876,23.74.8.8 +US,MADRAS,OR,44.6442,-121.0642,67.131.104.14 +DE,LINDAU,BY,47.55,9.68,195.145.147.109 +US,ZEBULON,NC,35.8277,-78.3112,96.16.12.216 +US,BAKERCITY,OR,44.7595,-117.7162,165.254.144.32 +US,HUGOTON,KS,37.1182,-101.3229,23.215.15.22 +DE,ESPELKAMP,NW,52.38,8.62,92.122.207.179 +UA,GORODOK,"",49.60,29.20,2.22.52.109 +FR,TASSIN,"",45.77,4.78,2.16.117.190 +CA,MALTON,ON,43.70,-79.63,72.246.43.237 +SG,TAISENG,"",1.34,103.90,124.155.222.130 +DE,ALBERT,BW,47.58,8.12,80.157.170.154 +FR,SAINTDIDIERENVELAY,"",45.30,4.28,2.16.117.190 +FR,BONDY,"",48.90,2.47,2.16.117.200 +CZ,KURIM,"",49.30,16.53,2.22.52.102 +US,GLENWOODSPRINGS,CO,39.6119,-107.29,23.212.53.75 +US,LITTLESTOWN,PA,39.7552,-77.119,212.25.69.145 +RU,SOCHI,"",43.60,39.73,2.21.240.61 +CA,TIVERTON,ON,44.27,-81.54,209.148.192.61 +US,VINTON,VA,37.2726,-79.7653,23.220.148.108 +AU,SHEPPARTON,VIC,-36.38,145.40,202.7.177.87 +US,BRASELTON,GA,34.1410,-83.7809,23.79.240.48 +FI,NOKIA,"",61.47,23.50,95.101.2.122 +RU,YUG,"",56.25,56.05,2.21.240.61 +AT,LEBRING,"",46.85,15.54,195.145.147.107 +NL,NIJMEGEN,"",51.83,5.87,92.122.189.114 +IT,SESTO,"",45.53,9.23,193.45.15.198 +FI,ALAJARVI,"",63.00,23.82,2.21.240.40 +HU,DEBRECEN,"",47.53,21.63,23.14.94.220 +DE,SAARBURG,RP,49.60,6.55,95.101.2.112 +RO,BUSTENI,"",45.40,25.53,81.196.26.198 +UA,CHERNIHIV,"",51.50,31.30,23.14.94.224 +US,LAKEGENEVA,WI,42.5685,-88.4719,107.14.38.217 +IN,TEKANPUR,MP,25.98,78.27,96.17.182.130 +US,NORTHBEND,OR,43.4574,-123.9916,184.27.179.179 +RO,SIGHETUMARMATIEI,"",47.93,23.88,81.196.26.236 +US,GIDDINGS,TX,30.1637,-96.9376,65.116.149.89 +US,KANAB,UT,37.2711,-111.7696,165.254.137.75 +FR,CARPENTRAS,"",44.05,5.05,2.16.117.190 +PL,DZIALDOWO,"",53.23,20.18,2.22.52.101 +US,CHEBOYGAN,MI,45.5327,-84.3636,23.63.227.227 +PL,SUPRASL,"",53.22,23.35,80.157.149.129 +DE,HERFORD,NW,52.13,8.68,92.122.207.179 +US,CALIFORNIACITY,CA,35.1256,-117.9853,184.50.26.194 +DE,MONCHENGLADBACH,NW,51.20,6.43,80.157.170.158 +AU,GEELONG,VIC,-38.16,144.35,104.72.70.96 +US,OAKGROVE,MO,39.0160,-94.144,23.67.60.222 +RU,VYAZMA,"",56.49,35.78,80.239.222.169 +US,ISELIN,NJ,40.5710,-74.3169,184.26.44.38 +PL,CHOJNICE,"",53.70,17.57,80.239.222.169 +US,ATTALLA,AL,34.0771,-86.0689,23.79.240.36 +US,GATESVILLE,TX,31.4272,-97.7097,23.215.15.9 +IT,CARBONE,"",38.23,16.25,23.76.205.111 +US,PRESTONSBURG,KY,37.6405,-82.8256,184.27.45.157 +RS,NOVISAD,"",45.25,19.84,2.20.45.104 +CH,UITIKON,"",47.37,8.47,193.45.15.199 +SE,BORLANGE,W,60.48,15.42,82.96.58.85 +US,PINEGROVE,CA,38.4023,-120.6508,63.217.232.17 +US,TECUMSEH,OK,35.2189,-97.0168,205.185.195.170 +IT,STELLA,"",44.45,10.80,2.18.240.114 +FI,KOUVOLA,"",60.33,24.15,213.155.156.207 +DE,CRIMMITSCHAU,SN,50.82,12.38,195.95.193.150 +US,CIBOLO,TX,29.5774,-98.2236,23.5.164.146 +FR,LANGUEUX,"",48.50,-2.72,2.16.117.200 +US,EASTPROSPECT,PA,39.9710,-76.5165,23.192.161.21 +US,ELRENO,OK,35.5525,-97.9651,23.215.15.22 +US,LOUISIANA,MO,39.4061,-91.0955,96.17.14.16 +US,EUFAULA,AL,31.9293,-85.2612,72.246.247.5 +SE,OSTERSUND,Z,63.18,14.65,2.21.240.40 +US,WARRENVILLE,IL,41.8320,-88.2281,23.67.60.220 +US,GROVER,MO,38.5699,-90.6264,96.17.14.15 +US,CIRCLEPINES,MN,45.1631,-93.1211,23.67.60.223 +US,THERMOPOLIS,WY,43.7189,-108.4422,184.27.179.159 +FR,VENISSIEUX,"",45.68,4.88,2.16.117.200 +LT,NAUJOJIAKMENE,"",56.32,22.90,217.212.227.25 +RO,SEBES,"",45.72,25.03,81.196.26.198 +US,TERRABELLA,CA,35.9407,-119.0558,65.113.249.8 +VI,CHARLOTTEAMALIE,"",18.3436,-64.9314,192.204.11.246 +US,CRAIG,CO,40.7169,-107.7139,107.14.32.235 +CH,WINTERTHUR,"",47.50,8.75,193.247.167.214 +AU,OAKLEIGH,VIC,-37.90,145.10,60.254.143.211 +IT,TORREPELLICE,"",44.82,7.22,2.18.240.95 +US,NEWPALESTINE,IN,39.7310,-85.9032,23.67.60.217 +FR,MAYENNE,"",48.30,-0.62,2.16.117.190 +JP,ICHINOSEKI,03,38.92,141.13,72.246.191.16 +GB,SIDMOUTH,EN,50.68,-3.25,72.246.43.237 +DE,OFFENBACH,HE,50.10,8.77,84.53.146.39 +US,DIBERVILLE,MS,30.4863,-88.9554,165.254.138.165 +TH,CHONBURI,"",13.37,100.98,61.19.12.164 +IN,KOL,UL,30.50,77.92,23.57.69.161 +JP,HIKARI,35,33.96,131.95,118.155.230.136 +SG,CHANGI,"",1.34,103.96,23.75.23.135 +US,OAKLYN,NJ,39.9079,-75.0838,184.26.44.38 +US,HILLIARD,OH,40.0220,-83.1807,107.14.38.227 +US,CARLSTADT,NJ,40.8256,-74.0623,23.67.244.226 +AT,FIEBERBRUNN,"",47.48,12.55,195.145.147.108 +US,VERMILLION,SD,42.8915,-96.9263,23.212.53.64 +US,WALL,SD,43.9288,-102.204,23.63.227.214 +IR,SARI,"",36.57,53.06,96.17.182.130 +SK,VELICNA,"",49.22,19.25,23.14.94.220 +US,PELLA,IA,41.4226,-92.9246,63.216.54.229 +AR,PUNTAALTA,"",-38.88,-62.08,190.98.167.220 +MX,CIUDADVICTORIA,TAM,23.73,-99.13,165.254.16.86 +US,SOUTHGLENSFALLS,NY,43.2897,-73.6312,107.14.38.217 +US,PARLIN,NJ,40.4576,-74.306,184.26.44.38 +US,OGALLALA,NE,41.0603,-101.6294,23.215.15.22 +PH,PASAY,"",14.55,121.00,58.71.107.119 +CZ,ZNOJMO,"",48.85,16.05,23.62.237.135 +NL,LEEUWARDEN,"",53.20,5.78,2.16.153.150 +RU,SATIS,"",54.82,43.13,213.155.156.212 +IT,ROZZANO,"",45.37,9.15,195.22.200.221 +US,MARTINSVILLE,VA,36.7249,-79.8574,184.26.44.38 +DE,RHEIN,NW,50.85,7.70,2.20.142.166 +IN,RATNAGIRI,MH,16.98,73.30,117.239.240.96 +AT,DIETACH,"",48.08,14.42,195.145.147.109 +CA,SAINTEUSTACHE,QC,45.57,-73.90,67.69.197.92 +US,POULTNEY,VT,43.5323,-73.1932,165.254.48.155 +US,CHANHASSEN,MN,44.8569,-93.5486,204.93.47.216 +TH,NUA,"",18.65,101.03,202.183.253.37 +US,CRESTWOOD,KY,38.3420,-85.4306,23.220.100.223 +CA,HEARST,ON,49.70,-83.67,72.246.43.237 +AT,THERESIENFELD,"",47.85,16.23,195.145.147.108 +FR,FROMONT,"",48.25,2.50,2.16.117.200 +ID,CIANJUR,"",-6.82,107.13,23.0.162.21 +US,PAPILLION,NE,41.1138,-96.0413,23.79.255.153 +KZ,ZHEZKAZGAN,"",47.78,67.77,217.212.227.31 +US,THOMSON,GA,33.5142,-82.516,23.79.240.36 +CR,GUADALUPE,"",9.95,-84.05,23.74.2.7 +PT,BARCARENA,"",38.73,-9.28,195.22.14.134 +TM,TURKMENISTAN,"",40.47,62.22,2.20.142.166 +US,BARRON,WI,45.3978,-91.8834,23.74.8.8 +US,MABANK,TX,32.3389,-96.1042,23.212.53.75 +US,RUSK,TX,31.7956,-95.1946,67.131.44.150 +US,PINSON,AL,33.7345,-86.6508,23.220.100.223 +CZ,CHRUDIM,"",49.95,15.80,23.62.237.138 +US,HALLETTSVILLE,TX,29.3984,-96.8256,23.215.15.22 +US,CASSELTON,ND,46.8908,-97.241,23.74.8.24 +IE,GALWAY,"",53.27,-9.05,88.221.222.33 +JP,YAMANASHI,22,34.80,137.90,72.246.191.16 +IN,CHANDAUSI,UP,28.45,78.77,23.205.118.106 +IN,KALAMBOLI,MH,19.03,73.10,96.17.180.155 +US,HAYTI,MO,36.2659,-89.7083,96.17.14.15 +CN,SANMING,FJ,26.40,117.20,184.84.239.175 +DE,BINDLACH,BY,49.98,11.61,23.74.24.69 +CH,MURTEN,"",46.93,7.12,213.254.212.102 +US,SAMMAMISH,WA,47.6302,-122.0537,23.212.59.63 +AU,SOUTHYARRA,VIC,-37.83,144.98,23.205.116.7 +UA,SUMY,"",50.92,34.78,80.239.222.190 +US,KUNA,ID,43.3407,-116.2859,206.104.149.146 +PL,BARCINWIES,"",52.88,17.95,2.22.52.101 +US,TANEYTOWN,MD,39.6723,-77.1742,23.67.242.156 +US,PARKRAPIDS,MN,46.9966,-95.0029,184.85.215.170 +US,SHEPHERDSVILLE,KY,37.9787,-85.6645,63.216.54.231 +TR,KAVACIK,"",41.48,27.90,23.74.24.69 +RU,NIZHNEKAMSK,"",55.64,51.82,2.21.240.40 +US,ANTIGO,WI,45.1268,-89.1724,23.74.8.8 +US,WESTBLOOMFIELD,MI,42.5418,-83.3806,184.84.180.68 +FR,ISSYLESMOULINEAUX,"",48.82,2.27,2.16.117.190 +LV,VENTSPILS,"",57.39,21.56,23.14.94.224 +US,RISINGSUN,MD,39.6875,-76.0358,209.48.37.183 +US,BARNARD,MO,40.1964,-94.7908,184.51.147.33 +UA,POLE,"",48.53,25.38,46.33.70.216 +FR,CASTELGINEST,"",43.70,1.43,2.16.117.200 +SE,KINNARP,O,58.07,13.52,213.155.156.207 +US,SCOTTSBURG,IN,38.6926,-85.8877,107.14.38.224 +US,IOLA,KS,37.9552,-95.4332,23.215.15.22 +PH,PASIG,"",14.58,121.08,23.76.205.111 +IR,GARMSAR,"",35.33,52.22,23.215.60.48 +US,BALLINGER,TX,31.7639,-99.8991,23.212.53.75 +US,AMBRIDGE,PA,40.6018,-80.2094,23.192.161.21 +FR,LESCAR,"",43.33,-0.42,2.16.117.190 +US,PROSPECTHEIGHTS,IL,42.1027,-87.9288,23.67.60.222 +US,SISSETON,SD,45.7041,-96.9842,23.79.255.153 +DE,WINTERBERG,NW,51.20,8.53,23.14.94.224 +US,RIOGRANDECITY,TX,26.5735,-98.695,184.26.93.116 +US,NORTHCHICAGO,IL,42.3271,-87.865,65.113.249.11 +US,ANNA,TX,33.3451,-96.5758,23.5.164.146 +US,WIMBERLEY,TX,30.0586,-98.15,23.61.195.160 +CA,STREETSVILLE,ON,43.58,-79.72,72.246.43.232 +JP,KOFU,19,35.65,138.58,117.104.139.162 +DE,HENSTEDTULZBURG,SH,53.78,10.00,2.20.142.166 +US,MINOA,NY,43.0745,-76.0083,107.14.38.224 +IT,PADOVA,"",45.42,11.88,193.45.15.198 +US,MONUMENT,CO,39.0574,-104.9038,184.84.180.68 +CZ,KLECANY,"",50.18,14.42,23.62.237.137 +US,FORTBELVOIR,VA,38.6990,-77.1368,184.28.17.76 +US,COHOES,NY,42.7824,-73.7303,107.14.38.217 +US,NYACK,NY,41.0938,-73.9254,69.31.77.208 +US,HOULTON,ME,46.1163,-67.9329,23.79.240.36 +US,CHANNELVIEW,TX,29.7912,-95.1165,96.17.163.165 +US,SILVERTHORNE,CO,39.7695,-106.1063,184.84.180.101 +NL,COEVORDEN,"",52.67,6.75,92.122.189.85 +VI,SAINTTHOMAS,"",18.3436,-64.9314,72.164.253.73 +RU,NIKOLSKOE,"",54.29,35.88,2.21.240.61 +US,MOUNTCARMEL,IL,38.4145,-87.8638,23.74.8.8 +US,RIPLEY,WV,38.8125,-81.6945,96.17.9.14 +US,STEVENSVILLE,MI,42.0039,-86.5132,23.67.60.220 +GB,BURNLEY,EN,53.80,-2.23,184.27.139.11 +US,CELINA,OH,40.5555,-84.6061,107.14.38.218 +RO,SIGHET,"",47.93,23.88,88.221.93.157 +AT,SANKTJOHANNAMWALDE,"",48.12,13.28,23.14.94.224 +ID,MANADO,"",1.48,124.85,23.0.162.21 +DE,MUENCHEBERG,BB,52.50,14.13,195.95.193.134 +US,KUTZTOWN,PA,40.5336,-75.7775,23.62.238.215 +TR,SAMSUN,"",41.28,36.33,193.45.15.198 +KZ,SULU,"",44.67,61.20,88.221.15.110 +VA,VATICANCITY,"",41.90,12.45,95.101.34.105 +PL,BORYSZEW,"",52.18,21.32,2.22.52.101 +KR,BUSAN,"",35.10,129.04,61.111.58.224 +FI,HAAPAJARVI,"",60.27,24.45,193.184.164.239 +US,EADS,TN,35.2015,-89.6087,184.84.180.68 +DE,KAMPE,NI,53.08,7.83,92.122.207.179 +DE,OGE,NW,51.32,7.52,195.95.193.134 +CA,SWIFTCURRENT,SK,50.28,-107.77,184.150.187.241 +US,CHASKA,MN,44.8087,-93.6418,23.210.5.166 +US,MALONE,NY,44.7347,-74.2672,107.14.38.224 +US,PEARSALL,TX,28.8736,-99.1074,107.14.43.30 +NO,SKJOLD,"",59.52,5.58,2.21.240.61 +US,BRECKENRIDGE,CO,39.4661,-106.0618,23.212.53.64 +US,DYSART,IA,42.1670,-92.3578,65.113.249.11 +PL,MARIA,"",50.17,18.77,2.22.52.105 +US,LOSLUNAS,NM,34.7465,-106.6041,184.84.180.92 +DE,HOHENSTEINERNSTTHAL,SN,50.80,12.72,2.20.142.166 +US,CRESTONE,CO,37.9964,-105.6994,23.215.15.9 +IR,GHAZVIN,"",35.60,47.02,23.215.60.48 +CA,IQALUIT,NU,63.73,-68.50,67.69.197.95 +US,GREENCITY,MO,40.2455,-92.9523,23.215.15.32 +US,MEDICINELODGE,KS,37.2282,-98.6992,208.35.28.213 +AT,PISCHELSDORF,"",48.00,16.57,195.145.147.107 +FR,MELUN,"",48.53,2.67,2.16.117.200 +US,STEPHENSCITY,VA,39.0680,-78.1954,23.192.161.16 +ES,GETAFE,"",40.30,-3.72,2.20.44.111 +CA,LAVAL,QC,45.60,-73.73,67.69.197.92 +FR,NANTUA,"",46.15,5.62,2.16.117.190 +US,BURKESVILLE,KY,36.7332,-85.3312,65.113.249.8 +RO,LUGOJ,"",45.68,21.90,81.196.26.236 +FR,HELLEMMES,"",50.62,3.12,2.16.117.190 +DE,BLOMBERG,NW,51.12,7.72,80.157.150.192 +US,ROCKFALLS,IL,41.7267,-89.7066,23.67.60.220 +NO,ELVERUM,"",60.88,11.57,217.212.227.31 +SK,BANSKABYSTRICA,"",48.73,19.15,23.62.237.138 +DE,VIERNHEIM,HE,49.54,8.58,23.14.94.224 +DE,FREITAL,SN,51.02,13.65,195.95.193.134 +SK,STUROVO,"",47.80,18.73,23.62.237.137 +AU,PENRITH,NSW,-33.75,150.70,104.72.70.96 +US,MORGANFIELD,KY,37.6418,-87.8654,107.14.38.224 +US,OAKVALE,WV,37.3344,-80.9628,184.27.45.157 +US,SIKESTON,MO,36.9406,-89.5948,23.63.227.223 +US,PITTSTON,PA,41.2973,-75.7399,23.77.238.9 +US,INGLESIDE,TX,27.8594,-97.2055,23.215.15.9 +SI,KRANJ,"",46.24,14.36,194.25.95.225 +FR,CLICHY,"",48.90,2.30,80.239.237.231 +IN,LANKA,CT,19.23,80.77,23.79.240.36 +RU,PETROPAVLOVSKKAMCHATSKIY,"",53.02,158.65,2.21.240.40 +IN,TIRUPATI,AP,13.65,79.42,23.57.69.159 +US,SOCORRO,NM,33.8946,-106.5652,63.226.34.172 +US,COLFAX,WA,46.8882,-117.4005,192.80.13.108 +IR,YASUJ,"",30.65,51.62,184.25.157.162 +IT,MONTALCINO,"",43.05,11.48,213.144.173.198 +US,MASHPEE,MA,41.6167,-70.4906,23.67.60.223 +US,RANSON,WV,39.3053,-77.8555,23.192.161.16 +US,BUSHNELL,FL,28.6844,-82.1562,184.51.35.226 +GB,RUNCORN,EN,53.33,-2.75,23.67.255.158 +US,WILLARD,OH,41.0531,-82.7265,23.220.148.108 +US,HEADLAND,AL,31.3604,-85.3205,63.151.29.15 +FR,MULHOUSE,"",47.75,7.33,2.16.117.200 +KR,PUSAN,"",35.10,129.04,23.65.188.30 +US,CRESSON,PA,40.4517,-78.5846,23.192.161.16 +JP,KASHIBA,29,34.55,135.70,23.3.104.20 +CN,LONGYOU,ZJ,29.03,119.17,72.246.191.19 +JP,NARITA,12,35.78,140.32,202.229.2.211 +US,DELAVAN,WI,42.6189,-88.608,184.85.215.165 +US,BOLTON,CT,41.7651,-72.4389,184.25.109.213 +US,WALKER,LA,30.5547,-90.828,23.215.15.9 +DE,GERMERING,BY,48.13,11.37,195.145.147.101 +JP,ICHIKAWA,12,35.72,139.93,96.7.251.95 +HU,KOSZEG,"",47.38,16.55,23.14.94.214 +DE,MERZ,BB,52.20,14.35,195.145.147.108 +NL,HILVARENBEEK,"",51.48,5.13,92.122.189.114 +US,WETHERSFIELD,CT,41.7005,-72.6721,23.212.53.75 +UA,SUMI,"",50.92,34.78,23.14.94.224 +FR,VILLEJUIF,"",48.80,2.37,2.16.117.190 +TR,KIBRIS,"",39.88,32.99,2.20.142.166 +FR,MODANE,"",45.20,6.67,2.16.117.190 +US,SODDYDAISY,TN,35.2876,-85.1755,23.61.195.150 +CZ,BYSTRICEPODHOSTYNEM,"",49.40,17.68,23.62.237.138 +FR,LACIOTAT,"",43.17,5.60,2.16.117.200 +AR,TORTUGUITAS,"",-34.47,-58.77,190.98.167.220 +US,network,CA,,, +CN,SHANGQIU,HA,34.45,115.65,184.50.87.178 +US,CHANUTE,KS,37.6378,-95.4622,23.77.234.11 +CH,MURI,"",47.27,8.33,193.247.167.211 +PL,TYCHY,"",50.13,18.98,77.67.96.114 +US,SALINE,MI,42.1544,-83.8133,23.210.5.159 +FR,ANDREZIEUX,"",45.53,4.27,88.221.83.118 +US,GERALDINE,AL,34.3477,-86.0502,204.2.243.132 +US,QUARRYVILLE,PA,39.8731,-76.1426,23.192.161.21 +IN,CUDDAPAH,AP,14.47,78.82,23.205.118.106 +RU,PERESLAVLZALESSKIY,"",56.73,38.85,2.21.240.58 +PK,MULTAN,"",30.18,71.48,92.122.189.114 +AT,MATREIINOSTTIROL,"",47.00,12.53,195.145.147.107 +US,YOUNGTOWN,AZ,33.5903,-112.3029,63.226.34.176 +SI,SOSTANJ,"",46.38,15.05,84.53.175.90 +AT,NEUMARKT,"",48.13,15.05,88.221.93.157 +US,CORYDON,IN,38.1945,-86.1397,107.14.38.217 +US,GRIMES,IA,41.6833,-93.7869,23.67.60.217 +US,BONITA,CA,32.6730,-117.0021,63.151.119.16 +US,KNOBNOSTER,MO,38.6730,-93.5632,204.93.47.220 +DE,BERGHEIM,HE,50.35,9.08,80.157.170.158 +AR,LUISGUILLON,"",-34.80,-58.45,80.239.237.230 +RU,SOLNECHNOGORSK,"",56.18,36.98,213.155.156.207 +US,FORTTHOMAS,KY,39.0785,-84.4516,107.14.38.227 +DK,ESBJERG,"",55.47,8.45,23.65.29.93 +IN,AMALAPURAM,AP,16.58,82.02,23.57.69.156 +NG,ABUJA,"",9.25,6.93,23.212.108.8 +HN,SULACO,"",14.92,-87.27,72.246.65.37 +FI,TURKU,"",60.45,22.28,80.239.237.93 +KZ,ASYL,"",43.17,76.57,23.212.108.8 +US,INDIANOLA,IA,41.3316,-93.579,65.113.249.8 +IN,AGARPARA,WB,22.68,88.37,23.57.69.157 +US,MOREHEADCITY,NC,34.7367,-76.7587,209.18.41.27 +DE,HERBRECHTINGEN,BW,48.62,10.18,2.16.217.206 +GB,HERSHAM,EN,51.37,-0.40,23.67.255.158 +US,FREDERICKTOWN,MO,37.4979,-90.375,165.254.207.117 +IL,YAVNE,"",31.88,34.74,82.102.137.137 +US,LINCOLNCITY,OR,44.9454,-123.8611,184.27.179.187 +US,COOSBAY,OR,43.3057,-124.0564,184.27.179.187 +BY,STANTSIYA,"",53.61,30.22,80.239.222.190 +US,BAYARD,NM,32.6728,-108.0532,63.226.34.173 +US,VANALSTYNE,TX,33.4370,-96.5164,23.215.15.32 +US,KINGOFPRUSSIA,PA,40.0943,-75.3802,23.67.242.139 +US,SLATON,TX,33.4457,-101.6708,96.16.7.101 +FR,PLAISIR,"",48.82,1.95,2.16.117.190 +US,PISGAHFOREST,NC,35.2750,-82.6771,204.2.243.143 +US,CALISTOGA,CA,38.6394,-122.639,96.17.12.48 +FR,LEMANS,"",48.00,0.20,2.16.117.190 +US,CLARINDA,IA,40.7901,-95.0305,23.74.8.24 +MY,KINABALU,"",5.98,116.07,96.17.180.177 +AT,LEISACH,"",46.81,12.75,46.33.70.97 +IN,NANDED,MH,21.15,75.27,117.239.189.99 +IT,PIACENZA,"",45.02,9.67,2.18.240.95 +US,RAHWAY,NJ,40.6077,-74.2804,23.192.161.16 +MN,SUKHBAATAR,"",50.23,106.21,92.122.215.89 +BG,LOVECH,"",43.13,24.72,2.20.45.102 +NL,HAARLEM,"",52.37,4.65,92.122.189.85 +US,KINGSLAND,GA,30.8312,-81.764,63.234.249.61 +US,COLUMBIAFALLS,MT,48.4206,-114.1748,23.212.53.75 +US,TRAVELERSREST,SC,35.0688,-82.4166,72.246.247.5 +EE,JOE,"",59.43,24.58,213.155.156.212 +DE,HANSEN,NI,52.95,10.48,23.65.29.106 +IT,STEFANIA,"",44.38,11.45,193.45.15.199 +PR,VEGABAJA,"",18.4061,-66.3012,72.164.253.68 +IN,JODHPUR,RJ,26.29,73.03,96.17.182.130 +US,NEWULM,MN,44.2563,-94.471,23.67.60.220 +NL,GRONINGEN,"",53.22,6.55,2.20.243.45 +US,NEILLSVILLE,WI,44.5294,-90.6622,23.74.8.8 +NL,EERSEL,"",51.37,5.32,95.101.2.113 +NL,ARNHEM,"",51.98,5.92,2.16.153.173 +US,SYLVA,NC,35.3551,-83.1997,184.51.35.226 +SE,SKELLEFTEA,AC,64.77,20.95,2.21.240.61 +PL,LOWCE,"",49.93,22.73,80.15.235.171 +US,UNDERWOOD,MN,46.3249,-95.8405,23.74.8.8 +US,MOULTON,AL,34.4578,-87.2911,23.212.53.75 +NG,AUN,"",8.33,5.33,77.67.41.223 +US,NEVADACITY,CA,39.3517,-120.851,23.61.195.163 +UZ,NAMANGAN,"",41.00,71.67,2.21.240.61 +US,SOUTHPADREISLAND,TX,26.3706,-97.228,23.5.164.146 +IN,GOREGAON,MH,18.17,73.30,23.211.135.66 +US,GLENOLDEN,PA,39.9030,-75.2932,23.67.242.139 +US,ELBERTON,GA,34.1050,-82.81,23.79.240.36 +US,LARKSPUR,CO,39.1989,-104.8931,23.215.15.9 +AR,MARDEAJO,"",-36.72,-56.67,200.123.201.215 +IT,ASCOLIPICENO,"",42.85,13.57,2.18.240.95 +US,BERWICK,PA,41.0944,-76.241,165.254.48.142 +US,PASCAGOULA,MS,30.5698,-88.4248,24.143.197.206 +CH,LUCERNE,"",47.08,8.27,193.247.167.211 +US,PONCHATOULA,LA,30.4008,-90.3723,23.79.240.48 +US,MARFA,TX,30.1759,-104.2916,96.17.163.161 +US,IRONTON,OH,38.5450,-82.6629,96.17.9.8 +RU,BERYOZOVSKY,"",54.03,120.17,2.21.240.40 +RS,ZRENJANIN,"",45.38,20.38,2.20.45.104 +PT,MOITA,"",38.65,-8.98,195.22.14.133 +FR,SARTROUVILLE,"",48.95,2.18,2.16.117.190 +US,MARBLEFALLS,TX,30.5925,-98.2219,23.215.15.9 +ID,CIKUPA,"",-6.23,106.52,23.0.162.40 +CZ,UPICE,"",50.52,16.02,23.62.237.137 +IN,SILCHAR,AS,24.82,92.80,124.124.40.95 +JP,CHOFU,13,35.66,139.55,72.246.191.19 +IN,UJJAIN,MP,23.18,75.77,117.239.189.111 +GB,ROCHDALE,EN,53.62,-2.15,23.67.255.158 +US,EDENTON,NC,36.1056,-76.6017,96.16.12.228 +FR,FONTAINE,"",48.35,2.15,2.16.117.190 +US,WYTHEVILLE,VA,36.9511,-81.112,184.29.107.38 +EC,BABAHOYO,"",-1.82,-79.52,72.246.65.23 +IN,SANGRUR,PB,30.23,75.83,96.17.182.130 +FI,JOENSUU,"",62.60,29.77,2.21.240.40 +SA,JAZAN,"",16.89,42.55,46.33.70.216 +US,CANEY,KS,37.0586,-95.8808,69.31.59.73 +DE,ROS,BY,49.25,10.55,195.95.193.132 +AT,JERZENS,"",47.15,10.73,46.33.70.97 +US,METAMORA,IL,40.7942,-89.4075,23.79.240.36 +US,CHICOPEE,MA,42.1705,-72.6067,63.141.200.248 +US,CLEWISTON,FL,26.4660,-80.9492,23.79.240.48 +BN,SERIA,"",4.62,114.32,96.17.180.177 +US,VERADALE,WA,47.6287,-117.1938,23.212.59.85 +RU,NOGINSKAYA,"",60.78,42.68,63.216.54.236 +US,CIRCLE,MT,47.4646,-105.835,184.51.35.226 +NL,ALMELO,"",52.35,6.67,92.122.189.114 +IT,MARINO,"",42.83,13.65,46.33.73.225 +CN,DEYANG,SC,31.13,104.40,23.15.10.106 +CH,LANGENTHAL,"",47.22,7.78,193.247.167.211 +FR,ANGOULEME,"",45.65,0.15,2.16.117.200 +US,BARDSTOWN,KY,37.7964,-85.4724,107.14.38.227 +US,MUSCATINE,IA,41.4340,-91.0853,205.185.195.183 +PL,SIEMIANOWICESLASKIE,"",50.30,19.03,80.157.149.181 +IN,TIRUCHCHIRAPPALLI,TN,10.80,78.69,80.239.237.231 +US,EASTSAINTLOUIS,IL,38.6386,-90.1321,204.93.47.216 +US,PROCTORVILLE,OH,38.4900,-82.3527,23.212.53.75 +CZ,PROSTEJOV,"",49.47,17.12,23.62.237.133 +US,OAKTON,VA,38.8902,-77.3289,23.220.148.122 +HU,TATA,"",47.65,18.32,92.122.189.85 +US,HAZELCREST,IL,41.5748,-87.6813,23.67.60.220 +FR,VILLEFRANCHESURMER,"",43.70,7.32,2.16.117.200 +HU,BECSEHELY,"",46.45,16.80,195.145.147.107 +BG,PLEVEN,"",43.42,24.62,2.20.142.166 +US,MINOOKA,IL,41.4851,-88.3207,107.14.38.227 +US,FESTUS,MO,38.1363,-90.407,23.79.255.153 +ID,CENGKARENG,"",-6.15,106.72,2.22.52.102 +TH,CHIANGMAI,"",18.79,98.98,61.19.12.176 +US,NEWSTANTON,PA,40.2329,-79.6397,209.48.37.188 +US,WEEHAWKEN,NJ,40.7678,-74.0275,184.51.35.226 +US,WENONAH,NJ,39.7966,-75.1429,184.26.44.38 +US,MAYSVILLE,KY,38.5850,-83.7789,23.79.240.48 +SK,TRNAVA,"",48.37,17.60,92.122.215.67 +RU,DZERZHINSKIY,"",55.63,37.84,80.239.237.80 +US,WELCH,WV,37.3787,-81.5098,23.74.8.8 +FR,BEAUZELLE,"",43.67,1.37,2.16.117.190 +AT,GRIESKIRCHEN,"",48.23,13.83,195.145.147.109 +US,COPPEROPOLIS,CA,37.9530,-120.6995,173.223.52.70 +AR,DELVISO,"",-34.45,-58.80,190.98.167.230 +GB,GREATYARMOUTH,EN,52.63,1.75,23.67.255.158 +US,BONHAM,TX,33.5544,-96.2,23.215.15.9 +US,LAGRANGEPARK,IL,41.8338,-87.8701,23.67.60.217 +IT,SALUZZO,"",44.65,7.48,2.18.240.114 +DE,BADOLDESLOE,SH,53.82,10.38,92.122.207.179 +CA,SAINTJEAN,QC,45.30,-73.25,67.69.197.95 +CA,LORETTEVILLE,QC,46.85,-71.37,165.254.96.242 +AT,FUSSACH,"",47.48,9.67,84.53.146.34 +US,PENNSGROVE,NJ,39.6981,-75.4502,23.67.242.139 +FR,MARTIGNASSURJALLE,"",44.83,-0.77,2.16.117.200 +FR,LERAINCY,"",48.90,2.52,2.16.117.190 +US,NEWCANEY,TX,30.1594,-95.1973,96.17.163.165 +AT,EDT,"",47.87,14.68,195.145.147.108 +US,NATRONAHEIGHTS,PA,40.6420,-79.7309,65.121.209.141 +US,POPLARVILLE,MS,30.8781,-89.5858,96.17.153.157 +KR,SANGJU,"",36.41,128.15,61.111.58.229 +DE,CELLE,NI,52.62,10.08,195.245.125.114 +US,CENTER,TX,31.7586,-94.1975,64.145.68.38 +US,APOLLO,PA,40.5292,-79.5952,23.192.161.16 +US,TEANECK,NJ,40.8902,-74.0104,63.238.85.169 +AR,RAMALLO,"",-33.48,-60.02,200.123.201.215 +PL,KONIN,"",51.70,19.28,2.22.61.102 +PR,FAJARDO,"",18.3304,-65.6573,23.74.2.7 +US,PUNXSUTAWNEY,PA,40.9472,-78.981,23.67.242.156 +PL,GLOGOW,"",51.42,20.87,2.22.52.109 +US,NORTHBRANCH,MN,45.5343,-92.8964,107.14.38.217 +RU,NOYABRSK,"",63.17,75.62,2.21.240.40 +US,ZELIENOPLE,PA,40.7632,-80.1242,65.121.209.133 +RU,ALTAISK,"",51.96,85.35,80.239.237.80 +IR,ASHENA,"",36.45,49.98,184.27.45.150 +US,MARS,PA,40.7051,-80.0184,72.246.52.107 +ZA,GREENPOINT,"",-33.92,18.40,165.165.46.36 +US,BURNHAM,PA,40.6380,-77.5634,23.67.242.139 +RU,ZELENOGRAD,"",56.00,37.21,80.239.237.93 +US,WOODLANDPARK,CO,39.0237,-105.0999,23.212.53.75 +US,VALLEYCOTTAGE,NY,41.1240,-73.9363,184.51.125.79 +FR,BOURGES,"",47.08,2.40,2.16.117.200 +US,FORRESTCITY,AR,35.0264,-90.8596,23.220.100.223 +US,SANDERSVILLE,GA,33.0015,-82.8994,23.79.240.36 +SE,HALMSTAD,N,56.67,12.86,2.21.240.40 +CZ,BROD,"",49.67,14.02,23.62.237.133 +RO,COVASNA,"",45.85,26.18,2.22.52.105 +US,MIDDLESBORO,KY,36.6372,-83.7049,107.14.38.227 +US,BEND,OR,44.1187,-121.282,67.131.104.14 +SK,SKALITE,"",49.50,18.90,23.62.237.135 +US,UNIONBRIDGE,MD,39.5440,-77.1891,23.215.15.22 +PL,RAWAMAZOWIECKA,"",51.77,20.25,80.239.149.123 +HU,MISKOLC,"",48.10,20.78,23.14.94.228 +US,EMMETSBURG,IA,43.0838,-94.6785,165.254.207.111 +FR,JANZE,"",47.97,-1.50,2.16.117.190 +IN,WASHIM,MH,20.10,77.15,23.205.118.109 +US,WESTHELENA,AR,34.5741,-90.6745,23.5.164.143 +US,MARYESTHER,FL,30.4108,-86.7601,165.254.45.32 +CZ,BOSKOVICE,"",49.48,16.67,23.62.237.133 +BD,MIRPUR,"",23.57,90.62,23.57.76.18 +SS,JUBA,"",4.85,31.60,41.193.163.53 +US,CLAY,NY,43.1873,-76.1924,107.14.38.217 +US,BLACKFOOT,ID,43.2718,-112.4055,206.104.149.146 +RU,IGRA,"",57.56,53.05,2.21.240.61 +US,ROGERSVILLE,AL,34.8568,-87.316,23.220.100.223 +IN,GHATKOPAR,MH,19.08,72.90,23.14.94.214 +BG,GABROVO,"",42.62,25.17,92.122.188.161 +US,CHESTNUTHILL,MA,42.3163,-71.1603,107.14.32.235 +DE,PLAN,SN,50.93,14.13,80.157.150.201 +BD,FENI,"",23.00,91.40,96.17.180.177 +US,WEBBCITY,MO,37.1493,-94.4792,107.14.43.30 +FR,MONTFERMEIL,"",48.90,2.57,2.16.117.200 +US,RIPON,WI,43.8527,-88.8455,23.63.227.227 +FR,MONTIVILLIERS,"",49.55,0.20,88.221.15.110 +CZ,ZABREH,"",49.88,16.87,23.62.237.135 +AR,MARIANOACOSTA,"",-34.73,-58.79,190.98.167.230 +US,WATERVILLE,OH,41.4970,-83.7598,107.14.38.227 +AT,KIRCHBERGINTIROL,"",47.45,12.32,195.145.147.108 +ID,PRABUMULIH,"",-3.45,104.25,23.0.162.46 +UA,KURILOV,"",50.55,34.72,23.14.94.224 +RU,OBNINSK,"",55.10,36.61,80.239.222.167 +US,SEAGOVILLE,TX,32.6388,-96.5631,184.28.23.24 +US,CAVECREEK,AZ,33.8319,-111.9436,63.226.34.181 +US,BULLSGAP,TN,36.3360,-83.0112,23.79.240.48 +RU,NAROFOMINSK,"",55.39,36.74,2.21.240.40 +BG,KASPICHAN,"",43.32,27.17,95.101.34.105 +US,ATTLEBORO,MA,41.9304,-71.2954,23.192.161.21 +US,ROCKMART,GA,33.9615,-85.0722,23.79.240.48 +IR,BANK,"",27.87,52.03,23.62.238.215 +AU,NEWRYBAR,NSW,-28.72,153.53,104.72.70.95 +US,MCPHERSON,KS,38.4089,-97.6556,174.76.226.110 +SE,OREBRO,T,59.28,15.22,23.60.69.210 +UA,DRUZHKOVKA,"",48.62,37.55,23.14.94.228 +US,DEMOTTE,IN,41.1657,-87.2663,23.74.8.24 +GB,FLEET,EN,51.28,-0.83,23.67.71.116 +JP,TAKAYAMA,21,36.13,137.25,23.61.250.108 +AR,HUINCARENANCO,"",-34.83,-64.38,200.123.201.215 +FI,LOVIISA,"",60.45,26.23,2.21.240.40 +US,SNEADS,FL,30.7730,-84.9746,63.151.29.15 +US,CUBA,MO,38.1231,-91.4205,204.93.47.216 +GB,ENFIELD,EN,51.67,-0.07,23.3.15.11 +US,MAGEE,MS,31.8220,-89.7913,96.17.153.157 +PH,ILOILO,"",10.70,122.57,63.217.232.22 +SE,LINKOPING,E,58.42,15.62,2.21.240.40 +GR,XANTHI,"",41.13,24.88,23.14.94.214 +JP,NOMURA,36,34.05,134.10,118.155.230.132 +US,DECORAH,IA,43.3626,-91.8164,107.14.38.224 +IR,SENA,"",29.22,51.59,96.17.182.136 +RO,STEFANESTI,"",44.52,26.73,81.196.26.237 +US,MANTEO,NC,35.8834,-75.6616,184.28.127.58 +FR,EPINAYSURSEINE,"",48.95,2.32,2.16.117.200 +US,DALLASTOWN,PA,39.8950,-76.6501,23.192.161.16 +US,FORTDRUM,NY,44.1255,-75.6043,107.14.38.224 +LY,BENGHAZI,"",32.12,20.07,79.140.94.243 +US,SCHNECKSVILLE,PA,40.6716,-75.6276,184.26.44.38 +MY,KOTA,"",2.52,102.17,58.27.124.241 +BG,PANCHAREVO,"",42.60,23.42,2.20.142.173 +PL,SZCZYTNO,"",52.25,20.35,80.239.222.167 +US,KAUFMAN,TX,32.5074,-96.2414,23.212.53.64 +MY,PETALINGJAYA,"",3.08,101.65,58.26.185.142 +US,STUARTSDRAFT,VA,37.9955,-79.0396,184.27.45.157 +US,WHITESBORO,TX,33.6662,-96.8486,23.5.164.143 +US,KILLDEVILHILLS,NC,36.0144,-75.6824,23.79.240.48 +ES,ABI,"",42.47,0.43,90.84.53.193 +CZ,SEBROV,"",49.33,16.60,23.62.237.133 +RU,USSURIYSK,"",43.80,131.98,72.246.184.81 +US,CENTERVALLEY,PA,40.5452,-75.4231,184.27.45.157 +US,LAKEMARY,FL,28.7595,-81.3431,184.51.145.22 +US,DELMAR,CA,32.9697,-117.2461,63.151.119.16 +NL,DINXPERLO,"",51.87,6.48,92.122.189.114 +US,ROSELAND,NJ,40.8207,-74.3087,72.246.247.5 +PL,CZESTOCHOWA,"",50.80,19.12,80.239.222.169 +US,POLLOCKPINES,CA,38.7953,-120.4833,165.254.144.25 +US,HOLDREGE,NE,40.4958,-99.3198,65.113.249.8 +US,MERRILLVILLE,IN,41.4814,-87.338,23.67.60.220 +US,HUNTINGBURG,IN,38.3038,-86.9615,165.254.207.111 +US,EASTELMHURST,NY,40.7630,-73.8708,24.143.199.156 +US,MANNFORD,OK,36.0666,-96.3642,64.129.104.132 +DE,LAUF,BY,50.00,10.95,84.53.146.39 +RU,KLIMOVSK,"",61.28,53.63,80.239.237.93 +CZ,LOSAN,"",50.40,13.52,23.62.237.133 +DE,RADOLFZELL,BW,47.73,8.97,2.20.142.166 +IT,ANTEA,"",45.85,9.67,2.18.240.95 +CR,LIBERIA,"",10.63,-85.43,72.164.253.83 +US,ELIZABETHTON,TN,36.4118,-82.0968,184.29.107.20 +JP,SAGA,41,33.25,130.30,117.104.139.136 +US,BREVARD,NC,35.2304,-82.7632,184.51.35.226 +US,GALATIA,IL,37.8301,-88.6284,107.14.38.217 +US,GATECITY,VA,36.6668,-82.6167,64.86.201.121 +DE,DUREN,NW,50.80,6.48,23.14.94.228 +US,SHEBOYGANFALLS,WI,43.7266,-87.8486,184.85.215.165 +US,BUNKIE,LA,30.9328,-92.1876,96.17.153.157 +US,SAUKCITY,WI,43.2637,-89.8631,184.85.215.165 +IT,QUADRI,"",41.92,14.28,95.101.34.105 +BG,KAZANLAK,"",42.62,25.40,2.20.142.173 +IT,LADISPOLI,"",41.93,12.08,46.33.70.216 +PH,CAFE,"",15.32,120.70,58.71.107.120 +DE,KANZLEI,NW,51.25,6.68,80.157.170.158 +US,EASTROCHESTER,NY,43.1125,-77.4905,107.14.38.227 +IR,SHARIF,"",34.07,48.08,80.15.235.161 +FR,CANNES,"",43.55,7.02,2.16.117.200 +US,FRUITA,CO,39.2686,-108.68,63.235.21.147 +MT,SLIEMA,"",35.91,14.50,23.14.94.220 +US,HINCKLEY,OH,41.2388,-81.7346,107.14.38.224 +FR,RILLIEUX,"",45.82,4.90,90.84.50.115 +NL,LISSE,"",52.25,4.57,92.122.189.114 +DE,ENG,BY,48.85,12.80,80.157.170.231 +TH,KOH,"",18.82,101.05,180.180.251.220 +US,WORLAND,WY,43.9271,-107.8134,205.185.195.183 +US,OTISORCHARDS,WA,47.6956,-117.1108,67.131.104.14 +US,MIDDLEBORO,MA,41.8934,-70.9117,184.25.109.213 +US,MAUMEE,OH,41.5735,-83.6863,65.113.249.11 +US,MCRAE,GA,31.9833,-82.8682,63.216.54.229 +US,TRUMANN,AR,35.6187,-90.5393,173.197.194.159 +IN,NARAINA,RJ,26.78,75.20,96.17.182.130 +CZ,BORKOVANY,"",49.03,16.82,23.74.24.69 +FR,MONTARGIS,"",48.00,2.75,2.16.117.190 +CZ,HRADECKRALOVE,"",50.21,15.84,23.62.237.138 +SE,MALA,M,56.23,13.70,2.21.240.58 +DE,BENSHEIM,HE,49.68,8.62,77.67.27.250 +US,CASTLEHAYNE,NC,34.3390,-77.8941,184.27.45.150 +US,WOODSCROSS,UT,40.8888,-111.9281,23.61.195.165 +KR,ANSAN,"",37.32,126.82,61.111.58.43 +US,LAURINBURG,NC,34.7588,-79.4468,209.18.41.27 +JP,HACHIOJI,13,35.66,139.33,72.246.184.89 +US,MELVINDALE,MI,42.2809,-83.178,23.67.60.217 +US,KEENE,NH,42.9764,-72.2744,107.14.38.217 +US,NORTHMYRTLEBEACH,SC,33.8371,-78.6471,184.51.35.226 +US,CEDARBURG,WI,43.3081,-88.0364,65.113.249.8 +GB,SELLING,EN,51.27,0.92,77.67.27.235 +FR,SAINTJULIENENGENEVOIS,"",46.13,6.08,2.16.117.190 +FR,METZ,"",49.13,6.17,88.221.15.110 +US,HIGHSPRINGS,FL,29.8528,-82.6553,23.33.186.101 +US,JUNCTIONCITY,KS,38.9467,-96.7996,174.76.226.117 +US,MUNCY,PA,41.2250,-76.7388,63.216.54.236 +BR,NOVOHAMBURGO,RS,-29.68,-51.13,187.59.4.154 +IT,DESENZANODELGARDA,"",45.47,10.53,195.22.200.240 +US,BEALETON,VA,38.5752,-77.8213,23.192.161.21 +BR,ARACAJU,SE,-10.92,-37.07,200.216.8.59 +PL,CIECHOCINEK,"",52.87,18.80,80.239.222.190 +ID,BADUNG,"",-7.57,112.50,96.17.180.166 +JP,ISUZU,17,37.33,136.73,23.15.1.67 +ES,ARNEDO,"",42.22,-2.10,92.123.73.26 +US,VIVIAN,LA,32.8582,-93.9626,23.212.53.64 +US,SCOBEY,MT,48.7328,-105.3949,184.27.179.187 +FI,KUOPIO,"",62.90,27.68,193.184.164.238 +JP,TSUSHIMA,23,35.17,136.72,23.3.104.15 +US,WINAMAC,IN,41.0563,-86.6606,205.185.195.170 +PL,RADOM,"",51.42,21.15,95.101.2.112 +IR,GILAN,"",33.11,49.61,23.14.94.224 +NL,LEUR,"",51.82,5.70,92.122.189.114 +ME,CRNAGORA,"",43.22,19.01,23.14.94.214 +CF,BANGUI,"",4.37,18.58,95.101.34.105 +ID,SAMPIT,"",-2.53,112.95,23.0.162.21 +DE,KREISCHA,SN,51.28,13.10,195.95.193.147 +US,CAROLINABEACH,NC,34.0370,-77.9026,184.28.127.58 +MY,IPOH,"",4.58,101.08,63.233.61.159 +NL,NAALDWIJK,"",52.00,4.20,92.122.189.85 +PL,PODLASIE,"",51.93,17.95,2.22.52.109 +AT,MICHAEL,"",47.13,16.27,195.145.147.101 +US,LAVONIA,GA,34.4474,-83.1313,63.216.54.236 +US,RUSHVILLE,IN,39.6183,-85.4164,23.67.60.222 +IN,GULBARGA,KA,17.33,76.83,117.239.240.76 +US,ABERCROMBIE,ND,46.4479,-96.7302,23.79.255.153 +US,WENTZVILLE,MO,38.7993,-90.8471,204.93.47.220 +DE,PLAUEN,SN,50.50,12.13,80.157.150.192 +PL,GOSTYNIN,"",52.43,19.48,80.157.149.181 +EE,KURESSAARE,"",58.24,25.81,213.155.156.206 +RU,NADYM,"",65.53,72.52,92.122.215.89 +TR,ESKISEHIR,"",39.77,30.53,193.45.15.199 +DE,STRELITZ,MV,53.33,13.10,80.157.170.231 +FR,CREIL,"",49.27,2.48,2.16.117.190 +DE,NIEFERN,BW,48.92,8.78,23.14.94.220 +RU,UGRA,"",54.50,36.12,80.239.222.167 +US,STRATFORD,IA,42.2953,-93.8747,165.254.114.198 +US,BENNINGTON,VT,42.9148,-73.1152,107.14.38.217 +PH,LOPEZ,"",13.88,122.25,58.71.107.119 +JP,MATSUE,32,35.47,133.07,117.104.139.136 +US,SUGARGROVE,IL,41.7828,-88.4458,23.67.60.220 +CO,IPIALES,"",0.83,-77.62,200.14.44.103 +US,DELAFIELD,WI,43.0452,-88.3996,107.14.38.218 +NG,KANO,"",12.00,8.52,92.123.73.233 +FR,VAULXENVELIN,"",45.78,4.93,2.16.117.190 +MY,BADAK,"",6.48,100.57,203.106.85.4 +US,OLYMPICVALLEY,CA,38.9090,-121.0703,65.113.249.11 +SE,SKONDAL,AB,59.25,18.12,82.96.58.102 +US,BLANDON,PA,40.4457,-75.8746,165.254.48.154 +BE,LEUVEN,"",50.88,4.70,95.101.2.112 +US,IVYDALE,WV,38.5245,-81.029,23.74.8.8 +US,RAYNHAM,MA,41.9389,-71.0535,23.67.60.220 +US,HOPEWELL,VA,37.2760,-77.217,184.27.45.150 +US,APOLLOBEACH,FL,27.7623,-82.3865,192.204.82.221 +FR,CRETEIL,"",48.78,2.47,92.122.189.85 +DE,BIBERACH,BW,49.19,9.14,23.14.94.228 +PL,LESZNO,"",52.27,20.60,2.22.61.99 +YT,DZAOUDZI,"",-12.78,45.25,2.20.243.42 +RU,NIZHNIYNOVGOROD,"",56.33,44.00,217.212.227.25 +US,BOULDERCITY,NV,35.9098,-114.7587,165.254.144.32 +US,COLUMBIANA,OH,40.8786,-80.6854,23.192.161.16 +HN,SANPEDROSULA,"",15.50,-88.03,23.74.2.7 +US,BACLIFF,TX,29.5051,-94.9907,23.212.53.64 +RU,CHAPLYGIN,"",45.11,40.76,80.239.222.169 +CN,HENGYANG,HN,26.97,112.60,72.246.191.19 +US,GARRETTSVILLE,OH,41.3076,-81.0739,65.113.249.8 +DE,JULICH,NW,50.93,6.37,23.14.94.220 +US,MOORESTOWN,NJ,39.9782,-74.9415,184.26.44.42 +US,ROUNDHILL,VA,39.1007,-77.7961,96.6.47.106 +DE,MITTWALD,NW,52.38,8.63,92.122.207.179 +PL,GNIEZNO,"",52.55,17.60,23.14.94.228 +CN,WUXING,ZJ,30.87,120.10,72.246.191.16 +TR,ICEL,"",36.80,34.63,92.122.188.163 +FR,VIGNEUXSURSEINE,"",48.70,2.42,2.16.117.190 +US,CASSOPOLIS,MI,41.8990,-85.985,72.247.10.241 +IN,RAJPURA,PB,30.48,76.59,23.205.118.106 +ES,RIOJA,"",36.95,-2.45,92.122.188.163 +ID,PURWOKERTO,"",-7.42,109.23,23.0.162.46 +US,GRINNELL,IA,41.7319,-92.7662,23.74.8.24 +ES,ISLAS,"",43.37,-2.67,213.248.113.93 +US,MURPHYSBORO,IL,37.7760,-89.3234,23.74.8.24 +RU,BIZ,"",57.26,58.64,2.22.52.102 +FO,HOYVIK,"",62.03,-6.75,92.122.127.109 +FR,LETOUVET,"",45.35,5.95,2.16.117.200 +JP,MORI,22,34.83,137.93,23.15.1.29 +ID,LOMBOK,"",-8.50,116.67,23.0.162.21 +FR,ARGENTEUIL,"",48.95,2.25,2.16.117.190 +CN,SANYA,HI,18.24,109.50,184.50.87.176 +US,CORONADELMAR,CA,33.6005,-117.8539,184.50.26.204 +CH,DELEMONT,"",47.37,7.33,213.254.212.77 +US,WOODLAND,WA,45.9549,-122.6998,23.212.59.85 +RU,BALAKOVO,"",52.03,47.78,2.21.240.40 +FR,LAFRANCE,"",46.03,5.13,81.52.201.97 +DE,WADERN,SL,49.53,6.88,92.122.215.67 +US,LONGS,SC,33.8946,-78.7949,209.18.41.23 +US,ORANGEBEACH,AL,30.2789,-87.6082,72.246.247.30 +PK,MAIL,"",32.55,71.62,96.17.182.130 +US,HERINGTON,KS,38.7322,-97.0904,23.215.15.9 +PL,BIELANYWROCLAWSKIE,"",51.03,16.97,2.22.61.102 +FR,COLMAR,"",48.08,7.37,2.16.117.190 +CA,SAINTJEROME,QC,45.77,-74.00,67.69.197.160 +VN,HAIPHONG,"",20.87,106.68,23.76.205.111 +PL,INOWROCLAW,"",52.80,18.27,80.239.149.123 +CZ,PRIBRAM,"",49.70,14.02,23.62.237.135 +TR,GEBZE,"",40.80,29.42,79.140.94.183 +US,SANTAROSABEACH,FL,30.3512,-86.1547,184.51.35.215 +HU,PECS,"",46.08,18.23,80.239.237.231 +US,HUBERT,NC,34.6594,-77.2628,209.18.41.23 +NZ,KERIKERI,"",-35.22,173.97,219.88.186.167 +CZ,SVITAVKA,"",49.50,16.60,23.62.237.135 +UA,DNEPRODZERZHINSK,"",48.50,34.62,23.14.94.228 +PL,JASLO,"",49.75,21.47,2.22.52.105 +US,DEFUNIAKSPRINGS,FL,30.7313,-86.1987,184.51.35.226 +US,WHEELERSBURG,OH,38.7507,-82.7819,107.14.38.227 +US,WORTH,IL,41.6850,-87.7773,107.14.38.227 +US,PLATTECITY,MO,39.3588,-94.8136,209.170.117.169 +IN,NAVSARI,GJ,20.85,72.92,96.17.182.136 +AU,COFFSHARBOUR,NSW,-30.30,153.13,202.7.177.76 +US,COLLINS,MS,31.6692,-89.543,96.17.153.157 +DE,KNICK,NI,53.25,9.73,194.25.95.214 +US,BROWNSMILLS,NJ,39.9516,-74.5548,184.26.44.42 +NL,VEN,"",51.63,5.55,95.101.2.122 +RO,ORSOVA,"",46.75,24.90,81.196.26.236 +US,PROSSER,WA,46.3675,-119.7188,67.131.104.6 +TR,ESENTEPE,"",40.82,30.80,23.63.227.214 +US,SCHWENKSVILLE,PA,40.2583,-75.5011,23.67.242.156 +US,ROSCOE,IL,42.4315,-88.9848,184.85.215.165 +US,SOPHIA,WV,37.6919,-81.2784,184.28.17.55 +AU,HAWTHORN,VIC,-37.83,145.03,61.9.129.199 +US,BEGGS,OK,35.7942,-96.0408,173.197.194.166 +UA,RIVNE,"",48.25,31.75,2.22.52.102 +AT,REITH,"",48.10,15.63,195.145.147.109 +CZ,CESKEBUDEJOVICE,"",48.98,14.47,23.62.237.138 +SK,SURANY,"",48.08,18.18,23.62.237.133 +NZ,MIRAMAR,"",-41.32,174.82,184.28.126.8 +ID,PEKANBARU,"",0.53,101.45,124.155.222.130 +PL,KROSNO,"",51.17,19.68,80.157.149.129 +DE,EHRLICH,RP,50.70,7.75,23.14.94.228 +US,HARLEYSVILLE,PA,40.2685,-75.3957,184.26.44.42 +IT,MARCHE,"",45.90,11.90,193.45.15.198 +AT,AUEN,"",46.88,14.82,195.145.147.107 +DE,HELLWEG,NW,51.53,7.73,2.20.142.173 +ID,CAWANG,"",-6.25,106.87,23.0.162.46 +AT,ISCHGL,"",47.02,10.28,195.145.147.101 +US,TELLCITY,IN,38.0217,-86.7099,23.79.240.36 +SK,SNINA,"",48.98,22.15,23.62.237.137 +CA,LISTOWEL,ON,43.73,-80.97,72.246.43.233 +US,HAMPDEN,ME,44.7323,-68.9137,165.254.35.197 +US,HAPPYVALLEY,OR,45.4104,-122.5055,23.212.59.63 +HU,HARKANY,"",45.85,18.24,23.14.94.228 +VE,MARACAY,"",10.25,-67.60,72.246.65.26 +AQ,MCMURDO,"",-77.80,166.70,63.226.34.176 +US,SOMERSWORTH,NH,43.2536,-70.8856,23.192.161.16 +IN,KANGRA,HP,32.10,76.27,117.239.189.110 +US,DYER,IN,41.4630,-87.5082,107.14.38.217 +RO,SIMERIA,"",45.85,23.02,81.196.26.236 +PL,SWIETOCHLOWICE,"",50.28,18.92,2.22.52.102 +US,HAZELPARK,MI,42.4623,-83.0976,107.14.38.224 +US,ROCKISLAND,IL,41.4874,-90.5678,23.77.234.35 +UA,PERVOMAYSK,"",48.05,30.85,217.212.227.31 +PS,NABLUS,"",32.22,35.25,2.20.142.166 +US,BUZZARDSBAY,MA,41.7705,-70.5815,184.25.109.196 +TR,DUZCE,"",40.83,31.17,193.45.15.199 +US,ROMEO,MI,42.8454,-83.0393,23.67.60.217 +US,PICKWICKDAM,TN,35.0531,-88.2379,69.31.59.63 +US,NEBRASKACITY,NE,40.6534,-95.8738,107.14.43.29 +RU,VLADIMIRSKAYA,"",55.67,33.29,80.239.237.99 +NL,ZWOLLE,"",52.50,6.08,92.122.189.114 +US,LONGVALLEY,NJ,40.7842,-74.79,184.26.44.38 +AT,WAIDHOFENANDERYBBS,"",47.97,14.77,23.62.237.138 +FR,SAINTETIENNE,"",45.43,4.40,2.16.117.200 +FR,VALENCIENNES,"",50.35,3.53,2.16.117.200 +AT,SEEBODEN,"",46.82,13.49,195.145.147.107 +US,IRVINGTON,NJ,40.7242,-74.2319,23.67.242.139 +NL,HENGELO,"",52.27,6.80,92.122.189.114 +US,LEDGEWOOD,NJ,40.8749,-74.6666,72.247.10.241 +US,BRANFORD,CT,41.2857,-72.7978,184.25.109.200 +US,ARKADELPHIA,AR,34.0941,-93.0475,23.5.164.143 +JP,CHITOSE,01,42.82,141.65,72.246.184.89 +FI,LAUTTASAARI,"",60.16,24.87,82.96.58.85 +IT,SOLIGO,"",45.91,12.15,2.18.240.114 +JP,KAMAKURA,14,35.31,139.55,72.246.184.89 +AR,SANANDRES,"",-34.55,-58.53,80.239.237.231 +US,ANGLETON,TX,29.1898,-95.4754,96.17.163.165 +CA,CARP,ON,45.35,-76.03,67.231.211.247 +CN,MEIZHOU,GD,24.33,116.12,80.239.237.231 +US,PAGE,AZ,36.8282,-111.1539,65.116.149.89 +IN,ELURU,AP,16.70,81.10,124.124.201.221 +HT,DELMAS,"",18.54,-72.30,23.74.2.7 +US,THATCHER,AZ,32.7621,-109.8381,65.116.149.102 +CA,LAKELOUISE,AB,51.43,-116.18,24.244.17.197 +CN,KUITUN,XJ,44.42,85.00,80.239.237.230 +US,MONMOUTHJUNCTION,NJ,40.3897,-74.5487,124.155.222.130 +US,PEMBROKE,NC,34.6920,-79.1769,204.93.39.17 +US,SCOTTCITY,MO,37.1648,-89.4816,204.93.47.216 +US,LUCEDALE,MS,30.8443,-88.5703,96.17.153.162 +PL,MIROSLAW,"",52.53,19.82,2.22.52.101 +US,CHURCHVILLE,MD,39.5659,-76.2431,23.192.161.30 +IT,BARLASSINA,"",45.65,9.13,2.18.240.114 +US,COLBY,KS,39.3420,-101.0639,23.215.15.9 +TW,ILAN,"",24.77,121.75,60.199.191.59 +CZ,OSTRAVAZABREH,"",49.80,18.22,23.62.237.137 +EC,IBARRA,"",-0.30,-78.55,165.254.205.7 +US,LAKESAINTLOUIS,MO,38.7948,-90.7836,184.85.215.170 +DE,MEININGEN,TH,50.55,10.42,80.157.170.221 +RO,JIBOU,"",47.27,23.25,80.239.237.231 +VN,BINHAN,"",10.90,106.80,96.17.180.155 +US,WHITESULPHURSPRINGS,WV,37.8461,-80.2545,184.27.45.150 +NL,PIJNACKER,"",52.02,4.43,92.122.189.85 +US,MOBERLY,MO,39.4377,-92.3968,23.215.15.9 +US,SIBLEY,IA,43.4213,-95.7453,165.254.114.164 +US,WICKENBURG,AZ,33.9689,-112.7286,184.50.26.204 +CA,DAUPHIN,MB,51.15,-100.05,23.74.8.8 +PH,ZAMBOANGA,"",18.20,120.58,58.71.107.119 +US,BRONSTON,KY,36.8981,-84.635,80.239.237.230 +AU,EIGHTMILEPLAINS,QLD,-27.58,153.10,23.209.183.61 +US,NESCOPECK,PA,41.0389,-76.1727,165.254.48.150 +US,PEARLRIVER,LA,30.4339,-89.7967,96.17.153.157 +JP,SHINMACHI,06,38.40,140.38,72.246.184.92 +US,BENTLEYVILLE,PA,40.1179,-80.0044,184.28.17.76 +US,ASHLANDCITY,TN,36.2777,-87.0046,23.220.100.223 +IN,NAGPUR,MH,21.15,79.10,124.124.40.93 +IT,BERGAMO,"",45.68,9.72,195.22.200.221 +IN,JAMNAGAR,GJ,22.47,70.07,95.101.2.122 +US,SEDONA,AZ,34.6859,-111.2845,23.5.164.143 +NL,HOOFDDORP,"",52.30,4.70,92.122.189.85 +US,IOWAPARK,TX,33.9610,-98.717,107.14.36.200 +US,KIOWA,OK,34.7289,-95.9883,66.171.227.82 +PL,STAROGARDGDANSKI,"",53.97,18.55,2.22.52.101 +RU,KRASNOGORSK,"",55.83,37.33,80.239.222.169 +CH,BULLE,"",46.62,7.07,88.221.15.111 +IN,ALLAHABAD,UP,25.45,81.85,23.57.69.159 +LT,TAURAGE,"",55.25,22.28,92.122.189.85 +FR,HAMBACH,"",49.07,7.03,2.16.117.200 +FR,VEYREMONTON,"",45.68,3.17,2.16.117.200 +US,OTSEGO,MI,42.4993,-85.713,23.63.227.214 +FR,CERGY,"",49.03,2.07,2.16.117.200 +US,HOFFMANESTATES,IL,42.0425,-88.0794,23.67.242.156 +ES,SANTIAGODECOMPOSTELA,"",42.88,-8.55,2.20.44.111 +US,CLACKAMAS,OR,45.4104,-122.5055,23.212.59.63 +ES,MURCIA,"",37.98,-1.12,2.20.44.111 +KR,JEJU,"",33.51,126.52,61.111.58.229 +CN,LAIWU,SD,36.32,117.58,117.104.138.235 +DE,GUTERSLOH,NW,51.90,8.38,2.20.142.166 +CA,WHITECOURT,AB,54.13,-115.68,184.27.179.187 +RU,NOVATOR,"",60.74,46.21,213.155.156.212 +US,WOLCOTT,CT,41.6004,-72.9736,184.25.109.213 +US,SPRINGLAKE,MI,43.1035,-86.2217,23.63.227.227 +PL,WYSZKOW,"",52.60,21.47,80.157.149.129 +BT,MONGAR,"",27.25,91.20,23.76.205.111 +CN,LONGYAN,FJ,25.18,117.03,184.50.87.176 +CA,CHATEAUGUAY,QC,45.38,-73.75,67.69.197.92 +US,PRAIRIEVILLE,LA,30.3065,-90.9499,23.212.53.64 +TR,ERENKOY,"",40.97,29.07,77.67.29.109 +PL,KOSCIERZYNA,"",54.12,17.98,2.22.52.109 +IT,FERRERO,"",45.45,7.88,2.18.240.114 +US,MOSSLANDING,CA,36.7948,-121.7864,63.217.232.22 +US,CHESTERSPRINGS,PA,40.1084,-75.6462,184.26.44.38 +RU,NIZHNINOVGOROD,"",56.33,44.00,80.239.237.80 +CA,WINKLER,MB,49.18,-97.93,23.74.8.8 +PL,LOMZA,"",53.18,22.08,2.22.52.102 +US,HOLTSSUMMIT,MO,38.6152,-92.0964,209.170.117.178 +GB,MAYFAIR,EN,51.50,-0.15,195.245.125.107 +US,WESTHOLLYWOOD,CA,34.0942,-118.3815,165.254.144.25 +AU,FREMANTLE,WA,-32.05,115.77,23.62.224.28 +US,PRAIRIEDUCHIEN,WI,43.0613,-91.0624,23.67.60.217 +ES,LUGO,"",43.00,-7.57,80.149.168.109 +FR,LACOURNEUVE,"",48.92,2.38,2.16.117.190 +US,MOUNTMORRIS,MI,43.1205,-83.6765,23.67.60.223 +BR,MONTEAPRAZIVEL,SP,-20.75,-49.70,80.239.237.231 +FR,LANGUIDIC,"",47.83,-3.17,2.16.117.190 +DE,VELTEN,BB,52.68,13.18,213.248.108.244 +US,TIPTON,IN,40.2754,-86.0469,23.74.8.24 +TR,AFYON,"",38.75,30.55,80.239.237.231 +US,LUTCHER,LA,30.0539,-90.7041,96.17.153.157 +US,SEALBEACH,CA,33.7538,-118.0713,184.50.26.194 +CA,RIMOUSKI,QC,48.43,-68.52,184.27.120.65 +US,SYLVESTER,GA,31.5445,-83.898,63.141.200.241 +UA,MEGA,"",48.13,25.43,80.239.237.230 +US,BEMIDJI,MN,47.5271,-94.7611,63.151.29.15 +FR,LAROCHELLE,"",46.17,-1.15,2.16.117.200 +US,KAPLAN,LA,29.6422,-92.4232,23.79.240.36 +ES,SEVILLE,"",37.38,-5.99,80.239.237.231 +AT,WIESELBURG,"",48.13,15.13,195.145.147.107 +PL,WIELUN,"",52.98,20.03,2.22.52.102 +RU,KOGALYM,"",62.18,74.55,2.22.52.102 +PL,MALBORK,"",54.03,19.05,80.239.222.190 +RO,FILIASI,"",44.55,23.52,2.22.52.102 +BY,KIROVA,"",51.38,30.58,2.22.52.105 +IE,MULLINGAR,"",53.53,-7.35,88.221.222.33 +JP,MISAWA,02,40.68,141.40,72.246.184.81 +US,MARINETTE,WI,45.0728,-87.8197,107.14.38.224 +US,SILVERCITY,NM,33.0124,-108.2868,184.84.180.96 +FR,CHOLET,"",47.07,-0.88,2.16.117.200 +US,CROZET,VA,38.1379,-78.7036,184.27.45.157 +US,COLMAN,SD,43.9352,-96.8289,23.74.8.8 +US,NUTLEY,NJ,40.8192,-74.1574,23.67.242.156 +US,DANIA,FL,26.0519,-80.1424,184.28.184.16 +JP,KOWA,23,34.77,136.90,23.3.104.16 +BG,RAKOVSKI,"",42.30,24.97,2.20.142.166 +CA,WEYBURN,SK,49.67,-103.85,23.215.15.22 +PL,DZIERZONIOW,"",50.72,16.65,92.122.189.85 +ES,TOMELLOSO,"",39.17,-3.02,92.122.188.163 +US,PRINCESSANNE,MD,38.1954,-75.7083,209.48.37.183 +FR,SAINTPHILBERTDEGRANDLIEU,"",47.03,-1.63,81.52.201.82 +FR,MONTBELIARD,"",47.52,6.80,2.16.117.200 +DE,STRUTHHELMERSHOF,TH,50.75,10.50,77.67.27.235 +US,SOUTHOLD,NY,41.0609,-72.426,184.26.44.38 +PL,ZAWIERCIE,"",50.50,19.43,213.200.109.173 +CA,GATINEAU,QC,45.48,-75.65,67.69.197.92 +US,KERHONKSON,NY,41.7943,-74.3146,24.143.199.156 +US,PELLCITY,AL,33.5807,-86.3463,184.51.35.226 +CZ,NEUSTUPOV,"",49.62,14.70,2.20.142.166 +ES,FRANCO,"",42.72,-2.70,2.20.44.111 +RS,KOM,"",43.43,19.40,2.20.45.104 +IR,KORDESTAN,"",30.68,50.16,92.122.189.114 +US,HIGHRIDGE,MO,38.4787,-90.5323,96.17.14.16 +GB,FINCHLEY,EN,51.60,-0.17,23.67.255.158 +US,DIAMONDHEAD,MS,30.3820,-89.3694,92.122.188.163 +US,POQUOSON,VA,37.1315,-76.3584,204.2.243.143 +US,CHEVYCHASE,MD,38.9825,-77.0796,184.27.45.157 +UG,MAKERERE,"",0.33,32.57,195.245.125.114 +CZ,CHEB,"",50.07,12.37,23.74.24.69 +US,FALLSCITY,NE,40.1276,-95.5661,23.63.227.227 +IN,TIRUPPUR,TN,11.10,77.35,65.116.149.89 +US,CLARENDONHILLS,IL,41.7892,-87.957,23.67.60.222 +VN,LAI,"",15.77,107.72,23.5.165.167 +RS,DESPOTOVAC,"",44.09,21.45,23.62.237.138 +US,BEEVILLE,TX,28.4569,-97.768,184.26.93.111 +AU,ROCKDALE,NSW,-33.95,151.13,104.72.70.95 +AT,KLEDERING,"",48.13,16.43,23.74.24.66 +US,KIMBERLY,AL,33.7678,-86.8087,204.2.243.143 +US,EXPORT,PA,40.4280,-79.6049,184.26.44.42 +RU,LESNAYA,"",55.23,39.80,2.21.240.40 +JP,MAEBASHI,10,36.38,139.07,72.246.191.16 +SK,SENEC,"",48.22,17.40,23.14.94.228 +DE,KOCH,NW,51.17,6.33,23.212.108.28 +DE,BEIERSDORF,BY,50.28,10.93,2.20.142.166 +DE,RATINGEN,NW,51.30,6.85,2.16.217.206 +IN,SHIV,RJ,26.18,71.25,96.17.182.136 +FR,NEVERS,"",46.98,3.17,2.16.117.200 +US,FORTMITCHELL,KY,39.0279,-84.5635,184.51.147.6 +AT,FRITZ,"",47.53,15.87,23.62.237.137 +US,TALLASSEE,AL,32.5595,-85.8976,23.33.186.101 +HU,VARPALOTA,"",47.20,18.13,23.14.94.228 +TR,GAZIANTEP,"",37.08,37.37,23.74.24.69 +US,CHARLEROI,PA,40.1402,-79.9469,23.192.161.30 +AE,ALAIN,"",24.22,55.77,2.20.249.12 +US,FOSTORIA,OH,41.1667,-83.402,205.185.195.168 +US,MEADE,KS,37.2174,-100.3456,23.215.15.9 +US,GLOUCESTERPOINT,VA,37.2577,-76.4965,23.220.148.108 +US,WERNERSVILLE,PA,40.3472,-76.0868,23.192.161.21 +US,DAVIDSON,NC,35.4822,-80.8049,184.27.45.157 +AF,KHAN,"",33.60,70.08,79.140.94.183 +JP,SANYO,35,34.03,131.10,117.104.139.160 +MX,OAXACA,OAX,16.41,-96.63,107.14.43.30 +US,SAINTROBERT,MO,37.8445,-92.1463,209.170.117.178 +TR,SAKARYA,"",40.77,30.40,92.122.188.163 +FR,SAINTAIGNANGRANDLIEU,"",47.12,-1.63,2.16.117.200 +IT,FORLI,"",44.22,12.05,2.18.240.95 +US,HENNESSEY,OK,36.0641,-97.8809,174.76.226.110 +IT,SANSEVERINO,"",40.08,15.35,2.18.240.95 +AT,PERNITZ,"",47.90,15.97,195.145.147.101 +US,MARCUSHOOK,PA,39.8393,-75.4661,23.67.242.156 +JP,MIKATA,18,35.55,135.92,23.61.250.113 +KZ,TENGE,"",43.31,52.86,2.21.240.61 +RU,CHEREMKHOVO,"",60.73,30.50,2.21.240.61 +JP,KANUMA,09,36.55,139.73,23.3.104.16 +US,TOLLESON,AZ,33.1732,-112.3475,63.226.34.176 +DE,WEIHENSTEPHAN,BY,48.40,11.73,23.14.94.214 +RU,ENGELS,"",51.50,46.12,23.14.94.220 +US,CARBONCLIFF,IL,41.4962,-90.3857,165.254.134.201 +US,LANSDOWNE,PA,39.9372,-75.2636,23.67.242.156 +IN,BOLPUR,WB,23.67,87.72,23.57.76.18 +DE,BACKNANG,BW,48.95,9.43,194.25.95.225 +KZ,SEMIPALATINSK,"",50.41,80.23,23.14.94.224 +ID,PINANG,"",-6.22,106.67,23.0.162.40 +IN,SHRINAGAR,MP,22.95,79.52,96.17.182.130 +US,LARNED,KS,38.1779,-99.1746,23.215.15.22 +US,PORTWASHINGTON,WI,43.4225,-87.8809,65.113.249.8 +VN,BINHDUONG,"",15.85,108.38,165.254.1.165 +EC,BANOS,"",-1.40,-78.42,165.254.205.7 +US,WHITESTONE,NY,40.7862,-73.811,24.143.199.156 +DE,HILDEN,NW,51.17,6.93,23.14.94.224 +US,PINEBROOK,NJ,40.8673,-74.3427,184.26.44.42 +JP,OHORI,12,35.33,139.87,23.3.74.112 +PH,BINONDO,"",14.60,120.97,184.50.26.179 +MK,CAIR,"",42.02,21.44,195.145.147.101 +DE,WINTERBACH,RP,49.87,7.63,23.14.94.224 +PH,NOVALICHES,"",14.72,121.03,58.71.107.116 +US,PHILLIPS,WI,45.7439,-90.2959,23.74.8.24 +US,":{",NC,,, +AT,LENZING,"",47.97,13.62,84.53.146.35 +US,NATIONALCITY,CA,32.6702,-117.0918,23.216.10.78 +MX,TLAQUEPAQUE,JAL,20.65,-103.32,187.141.2.154 +US,AHOSKIE,NC,36.3091,-77.0137,209.18.41.23 +US,FRONTROYAL,VA,38.9572,-78.2104,184.26.44.40 +US,NEWHAMPTON,IA,43.0559,-92.3113,63.216.54.229 +ZM,KAFUE,"",-15.77,28.18,41.193.163.45 +DE,GIESEN,NI,52.20,9.90,80.157.150.192 +AR,MARCOSPAZ,"",-34.78,-58.85,23.74.2.12 +IN,KOLLAM,KL,11.45,75.68,117.239.240.96 +DE,BERKENTHIN,SH,53.73,10.65,92.122.207.179 +GB,HEMELHEMPSTEAD,EN,51.75,-0.47,23.212.108.8 +AU,FITZROY,VIC,-37.78,144.98,104.72.70.96 +FR,SATURARGUES,"",43.72,4.12,2.16.117.200 +GR,ARGOS,"",37.63,22.73,79.140.94.254 +PL,CHOJNOW,"",52.02,21.08,77.67.96.114 +TW,MIAOLI,"",24.57,120.82,61.220.62.175 +US,HOBBS,NM,32.6132,-103.3269,63.216.54.231 +IN,NAINITAL,UL,29.38,79.45,117.239.91.82 +RU,OREKHOVOZUEVO,"",55.82,38.98,213.155.156.206 +CZ,OBRANY,"",49.23,16.65,23.62.237.135 +PL,PONIATOWA,"",51.18,22.13,80.15.235.161 +DE,GOLDBACH,BY,49.99,9.19,23.14.94.214 +FR,SAINTLO,"",49.12,-1.08,2.16.117.200 +SE,SODERMALM,AB,59.32,18.08,213.155.156.206 +HU,SARVAR,"",47.25,16.93,23.62.237.138 +RU,NOVOROSSISK,"",44.72,37.77,2.21.240.61 +US,GAUTIER,MS,30.4104,-88.6488,24.143.197.189 +US,IMPERIALBEACH,CA,32.5734,-117.1175,23.220.149.124 +IT,PIAZZA,"",45.58,10.13,193.45.15.199 +US,CHEHALIS,WA,46.6561,-122.9934,67.131.104.6 +US,MARLIN,TX,31.3313,-96.8629,63.216.54.216 +US,WESTHARRISON,NY,41.0555,-73.7433,184.26.44.40 +US,BARBOURSVILLE,WV,38.3904,-82.2418,209.48.37.188 +US,NOWATA,OK,36.6745,-95.6917,63.235.21.141 +US,ELMIRAGE,AZ,33.5859,-112.3345,184.50.26.194 +IL,KINERET,"",32.71,35.57,212.143.162.162 +RO,BARLAD,"",46.23,27.67,81.196.26.198 +CZ,KLATOVY,"",49.40,13.30,23.62.237.133 +PL,ZIELONAGORA,"",51.70,19.70,2.22.52.101 +IN,PATAMATA,AP,16.48,80.65,23.205.118.106 +IT,MOZZATE,"",45.68,8.95,193.45.15.198 +FR,PANTIN,"",48.90,2.40,2.16.117.200 +RO,GIURGIU,"",43.88,25.97,88.221.93.150 +US,CRYSTALSPRINGS,MS,32.0027,-90.4734,65.113.249.8 +IN,MEERUT,UP,28.98,77.70,117.239.189.99 +CA,COBOURG,ON,43.97,-78.17,72.246.43.237 +DE,DIRLEWANG,BY,48.00,10.50,80.157.170.231 +US,STONYPOINT,NY,41.2394,-74.039,23.67.242.156 +DE,LIPPSTADT,NW,51.67,8.35,195.95.193.132 +HR,VARAZDIN,"",46.31,16.34,23.14.94.220 +FR,SURESNES,"",48.87,2.23,88.221.15.110 +KR,NAMSANDONG,"",37.72,126.50,23.14.94.214 +MY,SEPANG,"",2.70,101.75,58.26.185.125 +MX,MADERO,MIC,19.40,-101.27,187.210.208.101 +CN,LINCHENG,ZJ,30.93,119.79,117.103.188.205 +CZ,RUDOLTICE,"",49.70,14.60,2.16.217.211 +RO,MOLDOVANOUA,"",44.77,21.67,80.239.222.169 +AT,WILFERSDORF,"",48.27,16.10,46.33.70.97 +US,BUCHANAN,GA,33.8511,-85.2067,212.25.69.145 +PL,BRZESKO,"",49.97,20.62,80.239.222.167 +NO,KONGSVINGER,"",60.20,12.00,2.21.240.40 +RO,REGHIN,"",46.77,24.70,81.196.26.198 +US,MONONA,IA,43.0888,-91.4288,65.113.249.11 +JP,WASEDA,15,38.30,139.55,23.3.104.29 +PL,ZABKI,"",52.28,21.12,2.22.52.105 +RO,BISTRITA,"",45.18,24.05,81.196.26.237 +IN,KOLHAPUR,MH,16.70,74.22,117.239.189.111 +CA,MONTREALNORD,QC,45.60,-73.62,67.69.197.106 +CO,RIOHACHA,"",11.55,-72.92,190.90.221.149 +AU,MOONAH,TAS,-42.85,147.30,150.101.152.249 +US,WILLIAMSTON,NC,35.7282,-77.0495,23.5.164.143 +US,UNITY,ME,44.5885,-69.3433,23.212.53.64 +FR,SCHILTIGHEIM,"",48.60,7.75,2.16.117.190 +US,WAHPETON,ND,46.2654,-96.6056,63.216.54.236 +HU,VESZPREM,"",47.10,17.92,23.14.94.224 +FR,BELLEGARDESURVALSERINE,"",46.10,5.82,88.221.83.140 +CA,BROCKVILLE,ON,44.58,-75.68,23.79.255.153 +CA,VALCOURT,QC,45.48,-72.32,67.69.197.160 +US,WESTVILLE,IL,40.0417,-87.6306,204.93.47.220 +US,JESSUP,MD,39.1490,-76.7842,184.27.179.159 +NL,VORDEN,"",52.10,6.32,92.122.189.85 +IN,BHIMASHANKAR,MH,19.07,73.53,65.113.249.8 +IT,MAGNAGO,"",45.58,8.80,2.18.240.114 +ZA,RIVONIA,"",-26.05,28.05,41.193.163.53 +MK,SVETINIKOLE,"",41.87,21.94,23.74.24.69 +BE,NAMUR,"",50.47,4.87,23.62.100.152 +FR,GARGESLESGONESSE,"",48.97,2.42,2.16.117.200 +US,NEWBERRY,MI,46.4960,-85.4887,23.79.240.48 +AU,WAGGAWAGGA,NSW,-35.12,147.37,203.26.28.250 +AT,SOMMEREIN,"",47.98,16.65,195.145.147.108 +RU,SKALA,"",55.38,82.77,2.21.240.40 +US,LEESPORT,PA,40.4116,-75.999,184.26.44.38 +AT,STEYREGG,"",48.28,14.37,195.145.147.101 +IR,KISH,"",32.86,49.70,23.215.60.48 +JP,MOKA,09,36.43,140.02,72.246.191.16 +US,HIRAM,GA,33.8668,-84.7649,72.246.247.30 +MK,RADOVIS,"",41.64,22.46,95.101.34.109 +US,BREWER,ME,44.7782,-68.725,107.14.38.224 +SV,ANTIGUOCUSCATLAN,"",13.68,-89.23,23.33.186.101 +IN,GUWAHATI,AS,26.18,91.73,23.57.76.20 +US,DYERSVILLE,IA,42.4950,-91.1159,63.216.54.229 +FR,AULNAYSOUSBOIS,"",48.95,2.52,2.16.117.190 +US,COLLEGEPLACE,WA,46.0427,-118.4036,184.27.179.159 +JP,KINJO,12,35.92,139.88,72.246.191.16 +DE,NEUWIESE,SN,51.47,14.22,195.95.193.147 +TR,ANTEP,"",37.08,37.37,193.45.15.198 +IN,BODHGAYA,BR,24.70,84.98,23.205.118.109 +US,CAMPLEJEUNE,NC,34.7003,-77.3614,23.79.240.36 +US,MACEDONIA,OH,41.3152,-81.498,63.216.54.216 +SE,GALLIVARE,BD,67.13,20.70,80.239.237.80 +US,DELEON,TX,32.1142,-98.6051,23.212.53.64 +US,KINGSFORD,MI,45.8086,-88.101,72.246.247.30 +AT,NEUNKIRCHEN,"",47.72,16.08,23.74.24.69 +JP,YASHIMA,05,39.22,140.13,23.3.104.29 +IN,MACHILIPATNAM,AP,16.17,81.13,124.124.40.93 +PL,OSWIECIM,"",50.03,19.23,80.239.149.123 +AT,OEDT,"",48.75,15.48,84.53.146.37 +HU,MISEFA,"",46.80,16.98,195.145.147.109 +FR,HENINBEAUMONT,"",50.42,2.93,2.16.117.190 +TH,HATYAI,"",7.02,100.47,110.164.11.181 +PL,WIELOGLOWY,"",49.67,20.70,80.15.235.156 +PR,SANGERMAN,"",18.0846,-67.0463,204.2.243.135 +CN,FANYU,GD,23.12,113.25,184.84.239.175 +PL,MOSTOW,"",52.10,22.75,2.22.52.101 +AT,GASTHOF,"",47.43,13.38,46.33.70.104 +AR,MORENO,"",-34.46,-58.93,80.239.237.231 +PL,OSTROW,"",52.10,21.38,80.157.149.181 +AT,AXAMS,"",47.23,11.30,195.145.147.107 +US,SANDYHOOK,VA,37.7897,-77.9807,184.26.44.38 +AT,ERB,"",48.10,13.18,195.145.147.109 +US,CUTLER,CA,36.4976,-119.2842,63.217.8.169 +IR,ZAHEDAN,"",28.75,53.80,2.20.142.166 +PL,KWIDZYN,"",53.73,18.92,2.22.52.102 +US,THONOTOSASSA,FL,28.1050,-82.287,23.33.186.101 +PL,NIEPOLOMICE,"",50.03,20.23,80.15.235.156 +US,KENEDY,TX,28.7695,-97.8354,96.17.163.165 +RU,TOMARI,"",47.77,142.07,96.7.251.95 +UA,LISICHANSK,"",48.92,38.42,92.122.188.163 +CZ,MOST,"",50.53,13.65,23.74.24.69 +RO,MEDGIDIA,"",44.25,28.28,88.221.93.157 +BR,CERQUILHO,SP,-23.17,-47.74,92.122.188.163 +US,ATTICA,IN,40.2530,-87.1864,65.113.249.8 +BR,BRAGANCAPAULISTA,SP,-22.95,-46.57,200.174.107.42 +AT,KAPPL,"",47.52,10.47,195.145.147.108 +KR,JINJU,"",35.19,128.08,61.111.58.43 +IN,ULHASNAGAR,MH,19.22,73.15,213.248.108.244 +PL,NOWYSACZ,"",49.63,20.72,77.67.96.114 +BA,TRAVNIK,"",43.37,18.75,2.20.142.166 +AR,COMODORORIVADAVIA,"",-45.87,-67.50,190.98.167.230 +IN,CALICUT,KL,11.25,75.77,117.239.240.96 +US,LABELLE,FL,26.6279,-81.3332,23.79.240.36 +US,CASCADE,IA,42.2695,-91.0027,65.113.249.11 +RS,RUMA,"",45.01,19.82,23.62.237.135 +RU,BALASHIKHA,"",55.80,37.95,2.21.240.61 +PL,KOZIEGLOWY,"",51.77,21.00,2.22.52.101 +HR,VINKOVCI,"",45.29,18.80,46.33.70.104 +IN,ALIGARH,UP,27.45,83.13,184.25.157.169 +US,LENNON,MI,42.9989,-83.9455,23.74.8.8 +US,TONTOBASIN,AZ,33.8677,-111.3122,23.74.8.24 +US,POCAHONTAS,AR,36.3332,-91.0542,173.197.194.159 +RO,CAMPIATURZII,"",46.55,23.88,92.122.188.161 +HU,LAJOSMIZSE,"",47.02,19.55,23.62.237.138 +SK,ZVOLEN,"",48.58,19.13,23.62.237.133 +US,HAMLET,NC,34.8875,-79.6665,184.28.127.55 +ID,TEBET,"",-6.23,106.85,23.0.162.21 +RU,CHERNOGOLOVKA,"",56.00,38.37,92.122.188.163 +PL,ZALUSKI,"",52.17,20.93,80.239.222.190 +FR,POUILLYSOUSCHARLIEU,"",46.15,4.12,2.16.117.200 +BG,SHUMEN,"",43.27,26.92,2.20.142.166 +GR,SERRES,"",41.08,23.55,80.157.169.18 +US,ZAPATA,TX,26.8906,-99.1308,184.26.93.116 +RU,ELISTA,"",47.44,44.46,80.239.222.167 +US,HOMERVILLE,GA,31.0656,-82.7583,23.79.240.48 +BG,SILISTRA,"",44.12,27.27,23.14.94.228 +US,KATHLEEN,GA,32.4765,-83.6061,184.51.35.215 +PH,PARANAQUE,"",14.51,120.99,120.28.5.112 +CN,JINCHANG,GS,38.50,102.17,72.246.191.120 +IN,MADURAI,TN,9.93,78.12,92.122.188.163 +US,WALKERTOWN,NC,36.1899,-80.1591,209.18.41.23 +IL,HOLON,"",32.01,34.77,212.25.69.134 +US,GARFIELD,NJ,40.8788,-74.1075,23.67.242.139 +AR,GALVEZ,"",-33.03,-60.63,177.159.181.174 +DE,ED,BY,47.78,11.80,80.157.170.158 +RO,MOTRU,"",44.80,22.97,92.122.188.163 +DE,AALEN,BW,48.83,10.10,23.74.24.66 +DK,BORRIS,"",55.97,8.65,2.21.240.40 +US,MARYLANDHEIGHTS,MO,38.7275,-90.4524,204.93.47.216 +US,AMELIACOURTHOUSE,VA,37.3498,-77.9661,184.51.35.215 +DE,GRAS,BY,47.75,12.67,194.25.95.219 +US,PLAINSBORO,NJ,40.3338,-74.5836,184.26.44.42 +US,SILVERSPRINGS,NV,39.3955,-119.2669,23.61.195.165 +US,EASTHADDAM,CT,41.4660,-72.3865,184.25.109.196 +BG,SAMOKOV,"",42.33,23.55,93.186.137.231 +CZ,FRANTISEK,"",49.87,18.27,23.62.237.137 +AR,MARDELPLATA,"",-38.00,-57.55,190.98.167.230 +US,PORTDEPOSIT,MD,39.6245,-76.0756,65.121.209.127 +US,FORDYCE,AR,33.8659,-92.4841,23.74.8.8 +ID,SOLOK,"",-0.80,100.65,80.239.237.230 +FR,SASSETOTLEMAUCONDUIT,"",49.80,0.53,2.16.117.200 +US,LENOX,MA,42.3695,-73.2774,107.14.38.227 +US,BRUCE,WI,45.4985,-91.3289,23.74.8.24 +AT,PASCHING,"",48.25,14.20,23.62.237.138 +IN,DHARMAPURI,TN,12.13,78.17,23.205.118.106 +VE,LAGUAIRA,"",10.60,-66.93,23.74.2.7 +IL,EILAT,"",29.56,34.95,212.25.69.142 +IN,THANJAVUR,TN,10.80,79.15,117.239.240.96 +NZ,MOSGIEL,"",-45.88,170.35,184.28.126.7 +US,HANCOCK,MI,47.1715,-88.5503,65.113.249.11 +CH,GAMPELEN,"",47.02,7.05,193.247.167.211 +US,NORTHWOOD,OH,41.6045,-83.4717,65.113.249.11 +FR,VILLEFRANCHE,"",48.23,2.95,2.16.117.200 +CZ,PISEK,"",50.15,15.50,23.62.237.137 +BO,ORURO,"",-17.77,-67.48,72.246.65.37 +HR,SIBENIK,"",45.82,17.18,80.15.235.161 +EC,PASTAZA,"",0.04,-77.17,184.26.44.38 +RO,JILAVA,"",44.33,26.08,194.25.95.219 +DE,ROTHENBURG,BY,50.32,11.77,80.157.150.169 +US,TARRYTOWN,NY,41.0851,-73.846,23.79.255.149 +CA,TERREBONNE,QC,45.68,-73.63,67.69.197.92 +PL,ZDUNY,"",52.15,19.82,80.157.149.129 +US,LINN,MO,38.4764,-91.7793,23.63.227.227 +UA,VINNITSA,"",49.23,28.48,2.22.52.101 +CZ,VESELINADMORAVOU,"",48.95,17.40,92.122.188.163 +US,WAYZATA,MN,44.9781,-93.5263,23.67.60.223 +DE,BADHARZBURG,NI,51.88,10.57,92.122.207.179 +SE,KUNGSBACKA,N,57.48,12.07,2.21.240.40 +TH,RANGSIT,"",13.98,100.62,110.164.11.192 +NO,GRORUD,"",59.95,10.88,2.21.240.40 +US,NELSONVILLE,OH,39.4502,-82.2473,72.247.10.237 +RU,DOROZHNYY,"",59.22,39.88,2.21.240.40 +SE,KATRINEHOLM,D,59.00,16.20,213.155.156.212 +US,FITZGERALD,GA,31.7597,-83.2209,72.246.247.30 +GB,BUCKINGHAM,EN,52.00,-0.98,23.61.251.143 +DE,LEONBERG,BW,48.80,9.02,23.14.94.220 +US,FRUITLANDPARK,FL,28.8719,-81.9072,23.79.240.48 +US,NEAHBAY,WA,48.3685,-124.6238,165.254.1.165 +RU,OKHA,"",56.49,33.89,96.7.251.95 +FI,MARIEHAMN,"",60.10,19.95,2.21.240.40 +IN,KUKATPALLI,AP,17.48,78.42,117.239.240.96 +US,RIOLINDA,CA,38.6864,-121.4408,96.17.12.44 +GB,PADDINGTON,EN,51.50,-0.18,173.222.211.203 +US,NOKOMIS,FL,27.1186,-82.4447,23.79.240.36 +CH,HERISAU,"",47.40,9.27,213.254.212.102 +US,DILLSBURG,PA,40.0904,-77.0293,23.192.161.30 +DK,PADBORG,"",54.82,9.37,2.21.240.61 +US,LEMOYNE,PA,40.2478,-76.9006,23.192.161.21 +US,WRIGHTSVILLE,GA,32.7293,-82.7399,72.246.247.30 +CN,LOUDI,HN,27.75,111.98,72.246.191.19 +US,BRIDGMAN,MI,41.9364,-86.5496,23.67.60.223 +US,BETHPAGE,NY,40.7426,-73.4861,184.26.44.38 +US,EASTPOINTE,MI,42.4657,-82.946,23.63.227.227 +SI,ZRECE,"",46.38,15.37,194.25.95.214 +US,WICKLIFFE,OH,41.5969,-81.4651,107.14.38.218 +IN,SHILLONG,ML,25.58,91.87,124.124.40.93 +US,WELLSVILLE,NY,42.0803,-77.9333,107.14.38.217 +US,HAVELOCK,NC,34.8925,-76.9041,184.27.45.150 +TH,UTHAI,"",14.37,100.67,217.212.227.25 +TR,KAHRAMANMARAS,"",37.60,36.92,193.45.15.199 +KR,KARI,"",36.80,126.90,112.175.42.125 +US,ONAWA,IA,42.0513,-96.1326,165.254.207.117 +AU,BOTANY,NSW,-33.97,151.20,104.72.70.96 +IN,GUINDY,TN,13.01,80.22,23.205.118.109 +TW,HSINCHUANG,"",25.03,121.45,61.220.62.175 +US,KENTWOOD,LA,30.8810,-90.466,184.85.215.170 +US,PITMAN,NJ,39.7363,-75.1333,184.26.44.38 +AT,KAPFENBERG,"",47.43,15.30,2.16.217.211 +US,ALAMO,TX,26.2003,-98.1112,107.14.43.29 +US,ALTAVISTA,VA,37.1291,-79.2868,23.220.148.122 +US,STORMLAKE,IA,42.6740,-95.1635,23.63.227.214 +BE,KNOKKE,"",50.85,3.38,23.62.100.154 +JP,HYOGO,01,43.37,144.43,72.246.191.16 +KZ,SHKOLA,"",46.55,48.82,2.21.240.40 +US,GLADEWATER,TX,32.5672,-94.9346,23.5.164.143 +BG,DIMITROVGRAD,"",42.05,25.60,93.186.137.230 +TR,GAZI,"",38.25,35.47,23.14.94.214 +UA,DMITROVICH,"",49.77,23.35,92.122.215.89 +US,CUMBERLANDCENTER,ME,43.7981,-70.2656,107.14.38.218 +AT,ANIF,"",47.75,13.07,195.145.147.107 +US,WEAVERVILLE,NC,35.7234,-82.5239,184.27.45.150 +FR,MEY,"",49.13,6.23,23.200.87.58 +US,GEORGEWEST,TX,28.2189,-98.1396,184.25.157.162 +PH,FERNANDO,"",13.95,121.38,58.71.107.120 +JP,MITSUKE,22,34.72,137.87,23.3.104.29 +US,MILLRY,AL,31.6272,-88.354,184.51.35.226 +IT,LUCA,"",46.01,12.36,96.17.180.155 +US,BUHLER,KS,38.1245,-97.7604,23.215.15.22 +US,CLARENCE,NY,42.9851,-78.614,107.14.38.224 +US,MANISTEE,MI,44.1909,-86.1855,23.63.227.227 +US,CRYSTALRIVER,FL,28.9023,-82.5928,23.33.186.101 +IN,MOGA,PB,30.80,75.17,96.17.182.136 +PH,ROXAS,"",12.58,121.52,23.76.205.111 +CA,CHARLESBOURG,QC,46.87,-71.27,72.246.43.233 +NL,LEIDERDORP,"",52.15,4.53,92.122.189.85 +GB,ACCRINGTON,EN,53.77,-2.35,195.245.125.114 +SE,SOLLENTUNA,AB,59.42,17.95,213.155.156.212 +US,VIDALIA,GA,32.1357,-82.4052,72.246.247.5 +US,RANDALLSTOWN,MD,39.3744,-76.8156,184.27.45.150 +US,OLIVET,MI,42.4347,-84.8844,192.80.13.117 +US,HUDSONFALLS,NY,43.3537,-73.5472,23.67.242.139 +US,SCOTTSBLUFF,NE,41.9186,-103.6441,184.85.215.170 +US,NATCHEZ,MS,31.5340,-91.3231,96.17.153.157 +US,MILBANK,SD,45.1526,-96.6079,23.74.8.8 +RU,IM,"",52.82,138.33,72.246.184.81 +US,CLYDE,NC,35.6610,-82.9473,96.16.12.228 +US,GALAX,VA,36.6484,-80.9203,23.79.240.37 +JP,IKAWA,22,35.22,138.25,96.7.251.95 +US,LOCKHAVEN,PA,41.2558,-77.4987,184.28.17.55 +US,SHOEMAKERSVILLE,PA,40.4930,-75.9492,23.192.161.21 +IL,MAOZ,"",32.48,35.55,212.25.69.145 +US,FAIRBURY,NE,40.1696,-97.2152,184.26.93.111 +JO,FARAH,"",32.37,35.65,95.101.34.105 +US,LYNCHSTATION,VA,37.1483,-79.3585,184.29.107.38 +US,BERNALILLO,NM,35.4078,-106.8201,63.226.34.176 +GT,QUETZALTENANGO,"",14.83,-91.52,72.246.65.38 +ID,KARAWANG,"",-6.32,107.28,23.0.162.46 +US,FORESTHILL,MD,39.5864,-76.392,209.48.37.183 +CZ,KRALUPY,"",50.23,14.32,195.27.155.188 +DE,JESSEN,SN,51.18,13.28,23.14.94.214 +PR,MERCEDITA,"",18.1144,-66.8568,92.122.215.67 +CN,XUANCHENG,AH,30.95,118.76,72.246.191.19 +CA,TOFINO,BC,49.13,-125.90,24.244.17.197 +IN,MUZAFFARNAGAR,UP,29.47,77.68,23.205.118.106 +US,EMMITSBURG,MD,39.6880,-77.3321,72.247.10.237 +DE,WALDENBURG,BW,49.19,9.64,195.145.147.101 +IN,KOTTAYAM,KL,11.83,75.57,23.205.169.195 +US,WINDBER,PA,40.2054,-78.7856,23.192.161.21 +BR,JOAOPESSOA,PB,-7.12,-34.87,72.246.216.139 +AR,MAGDALENA,"",-35.07,-57.53,92.122.188.163 +IR,SHIRGAH,"",36.29,52.90,2.22.61.102 +SE,ASAKA,O,58.07,13.67,2.21.240.40 +ID,KEBALEN,"",-6.22,106.68,23.0.162.40 +US,BRAINTREE,MA,42.2036,-71.0017,72.247.10.241 +NL,URMOND,"",51.00,5.77,92.122.189.114 +AU,ALBURY,NSW,-36.08,146.92,60.254.143.211 +NL,APPINGEDAM,"",53.32,6.87,92.122.189.114 +DE,HILDESHEIM,NI,52.15,9.97,2.16.217.211 +RO,VULCAN,"",45.63,25.42,92.122.188.161 +NL,HEIDE,"",52.93,5.77,173.222.211.190 +IR,JAHROM,"",30.08,51.72,77.67.96.116 +US,HAROLD,KY,37.4843,-82.6492,23.63.227.214 +US,LOUDON,TN,35.7114,-84.3653,72.246.247.5 +US,BAYMINETTE,AL,30.8772,-87.7146,96.17.153.162 +RU,ARTEM,"",47.77,40.31,72.246.184.92 +RU,STUPINO,"",54.90,38.07,80.239.217.238 +US,SEATmidMileRTT,WA,,, +ES,BLANCA,"",38.18,-1.37,92.122.188.161 +DE,HAVIXBECK,NW,51.98,7.42,194.25.95.212 +US,MCFARLAND,WI,43.0035,-89.2832,184.85.215.170 +BY,KOBRYN,"",52.22,24.37,88.221.15.110 +FI,KEMI,"",65.73,24.57,193.184.164.219 +US,PITTSBORO,IN,39.8818,-86.4695,23.74.8.24 +UA,RODINSKOYE,"",48.35,37.20,92.122.188.163 +IN,WARDHA,MH,20.75,78.62,23.205.118.109 +AS,PAGOPAGO,"",-14.2702,-170.7003,184.28.126.8 +US,COOLIDGE,AZ,32.9772,-111.5231,184.50.26.179 +DK,ALBERTSLUND,"",55.65,12.35,213.155.156.207 +LV,AGENSKALNS,"",56.95,24.10,2.21.240.40 +DE,BRUCHSAL,BW,49.13,8.58,23.14.94.224 +PL,SIEDLCE,"",52.17,22.30,2.22.52.105 +BE,VILVOORDE,"",50.93,4.43,23.62.100.152 +US,MILLTOWN,WI,45.5218,-92.5019,23.63.227.227 +TR,ADIYAMAN,"",37.92,34.65,23.14.94.220 +FR,BOURGOGNE,"",49.35,4.07,81.52.201.82 +JP,WARABI,11,35.83,139.71,23.3.104.29 +US,NORTHSALTLAKE,UT,40.8433,-111.9231,96.17.180.155 +ID,SALATIGA,"",-7.32,110.50,23.0.162.54 +US,LEADVILLE,CO,39.2128,-106.3404,184.85.215.170 +RO,TECUCI,"",44.35,24.85,88.221.93.157 +US,SCOTCHPLAINS,NJ,40.6176,-74.3695,23.67.242.156 +PL,SOBOTKA,"",51.15,20.70,2.22.52.109 +RO,TULCEA,"",45.17,28.80,88.221.93.157 +IR,ABAD,"",32.56,51.90,96.17.182.136 +US,ROCKWELLCITY,IA,42.3850,-94.6304,184.27.120.50 +CO,YUMBO,"",3.58,-76.49,92.122.188.161 +RU,RUMYANTSEVO,"",55.63,37.43,2.21.240.61 +MG,TOAMASINA,"",-18.17,49.38,195.10.8.196 +FR,TOURLAVILLE,"",49.63,-1.57,2.16.117.200 +US,CANDOR,NY,42.2148,-76.3401,204.94.155.231 +IT,VAPRIODAGOGNA,"",45.60,8.55,2.18.240.95 +US,DANE,WI,43.2444,-89.5211,184.85.215.170 +US,WADESBORO,NC,35.0383,-80.0776,63.216.54.236 +RO,LUPENI,"",46.38,25.22,88.221.93.157 +TH,CHAIYAPHUM,"",15.80,102.03,180.180.251.220 +PL,PLOCK,"",52.55,19.70,80.239.222.169 +AT,STEYR,"",48.05,14.42,195.145.147.109 +US,WALBRIDGE,OH,41.5666,-83.5031,107.14.38.227 +US,NORTHADAMS,MA,42.6996,-73.0936,107.14.42.48 +FR,ROANNE,"",46.03,4.07,2.16.117.190 +US,NEWLONDON,NH,43.4164,-71.9863,165.254.35.182 +US,PORTCLINTON,OH,41.5070,-82.931,23.74.8.8 +PL,ZBOJNO,"",52.75,19.75,80.239.149.123 +US,NEWMAN,CA,37.2808,-121.2434,65.113.249.11 +NL,MEPPEL,"",52.70,6.20,92.122.189.114 +US,WOMELSDORF,PA,40.3905,-76.2083,23.192.161.21 +US,JAMISON,PA,40.2534,-75.0882,23.67.242.139 +US,WAMEGO,KS,39.2480,-96.3175,174.76.226.110 +CZ,KRENICE,"",50.03,14.67,23.62.237.133 +US,BETHEL,OH,38.9479,-84.0585,204.93.47.216 +US,HOLMES,PA,39.9003,-75.3086,184.27.45.150 +FR,PLANDECUQUES,"",43.35,5.47,2.16.117.200 +US,LEWES,DE,38.7339,-75.1733,23.192.161.16 +BR,PONTAGROSSA,PR,-25.08,-50.15,187.59.4.147 +FR,PONTDUCHATEAU,"",45.80,3.25,2.16.117.190 +TH,AYUDHYA,"",14.35,100.55,202.183.253.39 +US,SADDLEBROOK,NJ,40.9035,-74.0953,184.26.44.40 +DE,GARBSEN,NI,52.42,9.60,23.65.29.106 +PH,ANGELES,"",14.00,121.08,23.76.205.90 +CA,KINGCITY,ON,43.93,-79.53,72.246.43.232 +CZ,BYSTRICENADPERNSTEJNEM,"",49.52,16.27,23.62.237.138 +NO,RYGGE,"",59.38,10.72,82.96.58.85 +VN,HOANG,"",20.83,106.67,23.76.205.90 +US,DURAND,MI,42.9073,-83.9967,23.63.227.214 +JP,IRUMA,22,34.62,138.80,23.3.104.16 +RU,IRON,"",43.31,44.08,2.22.52.101 +DE,WOLFRATSHAUSEN,BY,47.92,11.42,195.145.147.101 +CA,NORTHBAY,ON,46.30,-79.45,92.122.189.85 +US,MCCOOK,NE,40.1761,-100.6468,23.215.15.32 +US,NEWEFFINGTON,SD,45.8778,-96.9166,23.79.255.153 +DE,BERGER,NW,51.72,7.50,194.25.95.212 +FR,SAINTSYMPHORIENDOZON,"",45.63,4.87,2.16.117.190 +FR,NOGENTSUROISE,"",49.27,2.47,2.16.117.190 +US,MIDDLEBURG,FL,30.0689,-81.8609,184.51.145.22 +SE,BORAS,O,57.72,12.92,23.65.29.106 +CN,CHENZHOU,HN,25.80,113.03,72.246.191.16 +CN,HUANGZHONG,QH,36.52,101.67,72.246.191.19 +US,UNIVERSITYCENTER,MI,43.5595,-83.9905,23.79.255.153 +US,BLOOMINGDALE,IL,41.9509,-88.0873,96.17.14.15 +JP,TSUYAMA,33,35.05,134.00,184.51.199.132 +KZ,PUSHKIN,"",50.29,73.79,80.239.237.80 +FI,TEUVA,"",62.48,21.73,193.184.164.239 +US,CAMBY,IN,39.6290,-86.3038,65.113.249.11 +US,MARNE,MI,43.0292,-85.8434,184.25.157.169 +BY,LOGOYSK,"",54.21,27.85,80.239.149.123 +US,VIRGINIA,MN,47.5233,-92.5364,23.77.234.35 +US,MOUNTRAINIER,MD,38.9430,-76.9649,23.192.161.16 +JP,UCHISAIWAICHO,13,35.67,139.75,72.246.184.89 +IN,BIHARSHARIF,BR,25.18,85.52,96.17.182.136 +DE,ILMENAU,TH,50.68,10.90,23.14.94.214 +AR,COLON,"",-33.89,-61.11,190.98.167.230 +AT,GROSSDORF,"",47.52,15.08,195.145.147.108 +RU,AVANGARD,"",54.47,37.12,80.239.237.93 +US,LEAVITTSBURG,OH,41.2542,-80.9112,107.14.38.227 +CN,CHENGMAI,HI,19.73,109.98,72.246.191.19 +PL,TARNOW,"",51.80,21.45,80.239.222.167 +US,GERING,NE,41.7826,-103.6811,184.85.215.165 +US,OSAGEBEACH,MO,38.1262,-92.6898,204.93.47.216 +US,VALLIANT,OK,33.9874,-95.0613,63.233.112.199 +US,CARMI,IL,38.0491,-88.1124,23.63.227.214 +DE,BADVILBEL,HE,50.18,8.75,194.25.95.214 +DE,UETZE,NI,52.47,10.20,23.14.94.220 +KR,SONGNAEDONG,"",37.53,127.12,125.56.214.149 +FR,BERGUES,"",50.03,3.72,2.16.117.190 +IN,VIRAMGAM,GJ,23.12,72.03,23.205.118.109 +US,CLARENDON,TX,35.0052,-100.8663,23.216.10.78 +CN,ZHENJIANG,JS,32.21,119.43,72.246.191.19 +PL,MIELEC,"",50.28,21.42,80.239.149.123 +RO,SIGHISOARA,"",46.22,24.80,92.122.188.161 +CH,FRIBOURG,"",46.80,7.15,213.254.212.98 +US,RAWLINS,WY,41.7532,-107.3722,23.61.195.163 +US,BELLEFOURCHE,SD,44.9293,-103.7531,23.63.227.227 +US,WINTERS,CA,38.5603,-121.9994,165.254.96.242 +AU,NORTHCOTE,VIC,-37.77,145.00,150.101.152.249 +RU,SMIRNYKH,"",49.75,142.83,72.246.184.84 +US,RONCEVERTE,WV,37.7253,-80.4371,184.27.45.157 +CZ,HUSTOPECE,"",48.93,16.73,23.74.24.66 +ID,KEMANG,"",-6.27,106.80,23.0.162.46 +US,CLEELUM,WA,47.3367,-121.0238,67.131.104.6 +US,PAWPAW,MI,42.2414,-85.9105,23.74.8.24 +BO,TARIJA,"",-19.49,-65.33,23.74.2.12 +CZ,JABLUNKOV,"",49.58,18.77,23.62.237.138 +US,ELBURN,IL,41.8654,-88.4653,23.67.60.222 +DE,ZWICKAU,SN,50.73,12.50,23.14.94.220 +RU,NOVOMOSKOVSK,"",54.09,38.22,92.122.188.163 +NL,VEENENDAAL,"",52.03,5.55,92.122.189.85 +DE,CUNEWALDE,SN,51.10,14.52,195.95.193.132 +FR,PONTCHATEAU,"",47.43,-2.08,2.16.117.190 +US,TUOLUMNE,CA,37.9468,-120.25,23.61.195.163 +DE,FAHNEN,NW,51.60,8.02,80.157.150.197 +VN,BA,"",21.30,106.50,23.76.205.111 +DE,ROTTENBURG,BW,48.47,8.93,23.14.94.224 +DK,ALLER,"",55.35,9.53,23.65.29.93 +US,ORADELL,NJ,40.9548,-74.0328,23.67.242.139 +CC,BANTAMVILLAGE,"",-12.12,96.88,96.17.180.166 +SE,SKANE,S,59.48,13.33,72.246.43.233 +JP,KITA,13,26.72,142.12,23.3.104.15 +US,OLDHICKORY,TN,36.2447,-86.616,23.79.240.36 +US,FOREST,MS,32.2901,-89.4443,165.254.138.175 +US,WILLIS,TX,30.4477,-95.5183,204.2.223.91 +US,VALLEYSTREAM,NY,40.6745,-73.7041,184.26.44.38 +RO,SFANTUGHEORGHE,"",44.65,26.83,2.22.52.101 +CZ,UHERSKYBROD,"",49.03,17.65,23.62.237.133 +US,EASTALTON,IL,38.8713,-90.0443,96.17.14.15 +CH,MASSAGNO,"",46.02,8.95,194.25.95.212 +CZ,OLBRAMKOSTEL,"",48.92,15.95,23.62.237.133 +DE,BROICH,NW,50.85,7.23,77.67.27.235 +RU,DOMODEDOVO,"",55.46,37.70,80.239.217.238 +FR,TOURCOING,"",50.72,3.15,2.16.117.185 +US,DIAMONDVILLE,WY,41.7777,-110.5371,23.212.53.75 +ES,ALORA,"",36.80,-4.70,2.20.44.111 +CH,URTENEN,"",47.03,7.48,193.247.167.211 +DZ,ANNABA,"",36.90,7.77,79.140.94.234 +TW,PANCHIAO,"",25.02,121.45,92.122.188.161 +PR,LARES,"",18.2912,-66.8528,72.246.65.26 +US,CENTRAL,SC,34.7453,-82.8049,23.79.240.36 +US,NEGAUNEE,MI,46.4658,-87.5578,184.85.215.170 +US,COCHRANE,WI,44.2495,-91.8243,23.63.227.227 +IT,VEROLI,"",41.68,13.42,193.45.15.198 +VN,CHITHANH,"",13.30,109.22,23.76.205.90 +IN,BELLARY,KA,15.15,76.93,23.205.118.106 +US,SUMMIT,MS,31.2993,-90.4958,72.246.247.30 +FI,LAHTI,"",60.97,25.67,82.96.58.102 +JP,TAGAWA,06,38.68,139.75,210.175.5.183 +CH,LOSTORF,"",47.38,7.95,193.247.167.214 +RU,LUCHEGORSK,"",46.48,134.20,72.246.184.84 +SE,SANDVIK,AB,59.35,17.98,23.62.100.152 +US,HARRISONCITY,PA,40.3834,-79.6667,23.192.161.21 +GB,CHORLEY,EN,53.65,-2.62,92.122.54.12 +FR,ALES,"",44.85,0.87,2.16.117.190 +UA,BROVARY,"",50.50,30.77,217.212.227.25 +MK,VELES,"",41.72,21.78,23.62.237.133 +DE,ASCHAFFENBURG,BY,49.97,9.15,23.14.94.224 +DE,TAUCHA,ST,51.20,12.08,80.157.150.197 +AR,QUILMES,"",-34.72,-58.27,92.122.188.161 +DE,DETTINGENANDERERMS,BW,48.53,9.35,84.53.146.39 +PL,ODRA,"",49.98,18.33,2.22.52.102 +US,NETCONG,NJ,40.8970,-74.7002,23.76.205.111 +DE,WECHLOY,NI,53.15,8.13,194.25.95.225 +CH,STEFFISBURG,"",46.78,7.63,193.247.167.214 +FR,SAINTJUSTENCHAUSSEE,"",49.50,2.43,2.16.117.190 +TZ,MOSHI,"",-3.35,37.33,23.212.108.8 +NL,VENLO,"",51.37,6.17,2.16.153.173 +US,SHALIMAR,FL,30.4411,-86.568,23.215.15.22 +US,BOSCOBEL,WI,43.1080,-90.6617,165.254.207.111 +US,REDSPRINGS,NC,34.7995,-79.1524,184.51.35.226 +BJ,SA,"",11.17,3.07,23.62.100.152 +US,BELFORD,NJ,40.4200,-74.0847,23.67.242.139 +DE,POHL,RP,50.25,7.87,23.74.24.66 +DE,ITZEHOE,SH,53.92,9.52,80.157.170.154 +US,PALA,CA,33.3876,-117.0743,65.113.249.8 +FR,CARPIQUET,"",49.18,-0.45,2.16.117.197 +UA,ZAPOROZHYE,"",47.60,33.40,92.122.188.161 +DE,MOELLN,SH,53.63,10.68,92.122.207.164 +US,PARKFOREST,IL,41.4594,-87.6908,23.67.60.223 +TZ,ZANZIBAR,"",-6.17,39.18,194.221.66.90 +IT,PARMA,"",44.80,10.33,2.18.240.114 +US,ROANOKERAPIDS,NC,36.4196,-77.714,23.79.240.48 +KR,GWANGJU,"",35.15,126.92,125.56.214.166 +NO,ROROS,"",62.58,11.40,213.155.156.212 +SE,LANDSKRONA,M,55.87,12.83,213.155.156.212 +FR,FAULQUEMONT,"",49.05,6.60,23.74.24.66 +SE,MOTALA,E,58.55,15.05,2.21.240.40 +US,SAINTLEO,FL,28.3162,-82.2455,72.164.253.83 +GB,PONTYPRIDD,WA,51.60,-3.33,23.61.251.145 +NL,BENTHUIZEN,"",52.08,4.55,23.62.100.152 +DE,FARMSEN,NI,52.17,10.10,80.157.150.201 +RU,KYZYL,"",53.78,55.25,2.21.240.61 +AT,UNTERHATZENDORF,"",46.97,16.02,195.145.147.107 +US,BROOKLET,GA,32.2794,-81.623,184.51.35.226 +MY,TASEK,"",4.65,101.12,203.106.85.4 +DE,WILSDRUFF,SN,51.05,13.53,195.95.193.132 +FR,PRA,"",45.83,5.85,23.200.87.58 +US,MAUSTON,WI,43.7786,-90.0517,23.74.8.8 +US,CLEARLAKE,IA,43.1769,-93.3674,65.113.249.11 +CA,PORTAGELAPRAIRIE,MB,49.97,-98.30,23.74.8.24 +FR,MENTON,"",43.78,7.50,2.16.117.197 +FR,DEUILLABARRE,"",48.98,2.33,2.16.117.197 +US,HAWKINSVILLE,GA,32.2568,-83.5362,184.51.35.226 +IE,MALLOW,"",52.13,-8.63,88.221.222.33 +US,NEWMARTINSVILLE,WV,39.6454,-80.8449,184.27.45.157 +FR,BONNEVILLE,"",48.55,2.28,2.16.117.185 +ID,TEGAL,"",-6.87,109.13,23.0.162.54 +US,HALLSVILLE,TX,32.4986,-94.513,23.215.15.9 +IN,JAUNPUR,UP,25.73,82.68,96.17.182.127 +US,TUBAC,AZ,31.6092,-111.0466,65.113.249.8 +US,CASEY,IL,39.3139,-87.9965,23.74.8.8 +HU,DUNAPATAJ,"",46.63,19.00,23.62.237.138 +DE,NEUSTADTBEICOBURG,BY,50.32,11.12,84.53.146.39 +CN,YUEYANG,HN,29.38,113.10,72.246.191.16 +CZ,MALES,"",50.30,13.18,23.74.24.66 +US,FORTRICHARDSON,AK,61.2265,-149.6208,23.212.59.63 +RU,PEROVO,"",55.73,37.77,217.212.227.31 +IN,RANCHI,JH,23.35,85.33,92.122.188.161 +US,RAYVILLE,LA,32.4475,-91.7992,72.246.247.5 +DE,ESSLINGEN,BW,48.75,9.30,84.53.146.39 +US,EASTQUOGUE,NY,40.8496,-72.6007,184.26.44.42 +IT,MODENA,"",44.67,10.92,195.22.200.221 +PL,JAKTOROW,"",52.08,20.57,80.157.149.181 +US,MOFFAT,CO,37.9777,-105.7795,64.145.95.126 +BA,ZAVIDOVICI,"",44.45,18.15,23.62.237.133 +US,SERGEANTBLUFF,IA,42.3991,-96.3551,165.254.207.117 +BR,BARRETOS,SP,-20.55,-48.55,177.159.174.13 +ID,CIKARANG,"",-6.25,107.15,23.0.162.21 +PL,PARCZEW,"",51.63,22.90,80.15.235.163 +US,CORTLANDTMANOR,NY,41.2893,-73.9009,184.26.44.38 +DK,VIBY,"",55.55,12.03,23.65.29.106 +RO,CAMPINA,"",45.13,25.73,88.221.93.157 +SI,KAMNIK,"",45.95,14.42,2.20.142.166 +DE,APOLDA,TH,51.02,11.50,92.122.207.179 +US,TWORIVERS,WI,44.2198,-87.5999,184.85.215.170 +SE,SAVSJO,F,57.40,14.67,107.14.32.228 +DE,NEUBURG,RP,48.98,8.25,2.22.61.102 +RO,BUFTEA,"",44.57,25.95,2.22.52.105 +GB,KEELE,EN,53.00,-2.28,88.221.87.112 +BG,SIMITLI,"",41.88,23.12,93.186.137.231 +US,FOUNTAININN,SC,34.6459,-82.2156,165.254.138.175 +AT,NEUSTADT,"",48.03,16.78,195.145.147.109 +IR,BUSHEHR,"",28.97,50.83,213.200.109.173 +US,FULTONDALE,AL,33.6060,-86.8244,184.28.127.55 +BE,KORTRIJK,"",50.83,3.27,23.62.100.152 +US,KENLY,NC,35.6072,-78.1393,23.79.240.37 +DE,FREIBERG,SN,50.92,13.37,84.53.146.35 +JP,SHIBUYA,13,35.66,139.70,72.246.184.89 +PH,BACOLOD,"",10.67,122.95,58.71.107.116 +US,ELMONT,NY,40.7013,-73.7074,184.26.44.42 +PL,SKIERNIEWICE,"",51.97,20.15,2.22.52.109 +NP,POKHARA,"",28.23,83.98,23.76.205.111 +MK,BITOLA,"",41.03,21.34,23.62.237.138 +US,HANCEVILLE,AL,34.0311,-86.8105,72.246.247.30 +US,GUYTON,GA,32.3167,-81.3986,184.51.35.215 +TH,HONG,"",18.43,99.45,92.122.188.161 +CH,RHEINFELDEN,"",47.55,7.78,23.14.94.228 +US,JEROME,ID,42.7238,-114.3385,67.131.104.14 +US,HINESVILLE,GA,31.8475,-81.5964,23.79.240.48 +IR,IRANSHAHR,"",28.95,58.88,107.14.32.228 +NZ,GISBORNE,"",-38.65,178.00,203.96.118.165 +US,IMMOKALEE,FL,26.3154,-81.2708,23.215.15.9 +US,JOPPA,MD,39.4408,-76.3547,184.27.45.157 +US,OLDWESTBURY,NY,40.7854,-73.596,184.26.44.38 +US,DALHART,TX,36.2600,-102.5337,23.215.15.22 +DE,ANSBACH,BY,49.30,10.58,80.157.150.192 +AT,DRAU,"",46.58,14.00,195.145.147.101 +DE,TORGELOW,BB,52.75,13.97,195.145.147.108 +JP,TOYOHASHI,23,34.77,137.38,23.61.250.108 +JP,KUROSAWA,20,35.85,137.63,23.15.1.67 +RU,ZVEREVA,"",46.10,47.70,213.155.156.212 +US,SOUTHWILLIAMSON,KY,37.6621,-82.2917,184.28.17.55 +FI,HYVINKAA,"",60.63,24.87,184.150.187.108 +IT,SANVINCENZO,"",43.10,10.53,2.18.240.114 +US,ELDRIDGE,IA,41.6660,-90.5607,23.79.240.47 +US,WISCONSINDELLS,WI,43.6772,-89.746,23.63.227.227 +US,COBLESKILL,NY,42.6995,-74.5108,165.254.48.155 +CN,CHUNAN,ZJ,29.60,119.02,72.246.191.16 +RO,TOPLITA,"",45.05,24.77,92.122.188.161 +US,HILLSIDE,NJ,40.6961,-74.2294,184.26.44.40 +US,BIDDEFORD,ME,43.4906,-70.5283,165.254.48.155 +US,HARRODSBURG,KY,37.7856,-84.8966,209.18.46.205 +US,PORTOLA,CA,39.8755,-120.4492,63.233.61.159 +US,PETOSKEY,MI,45.3433,-84.8827,96.17.180.177 +US,SHAWAFB,SC,33.9749,-80.463,209.18.41.27 +RO,TARNAVENI,"",46.33,24.28,77.67.27.250 +AT,HEILIGENKREUZ,"",48.05,16.13,195.145.147.101 +US,AFTON,WY,42.6962,-110.9188,173.223.52.70 +US,THOMPSONSSTATION,TN,35.8120,-86.9532,23.79.240.36 +JP,NISHINO,04,38.63,141.20,23.3.74.112 +TH,KONG,"",16.93,99.97,23.14.94.228 +CH,FLIMS,"",46.83,9.28,193.247.167.211 +US,CHAGRINFALLS,OH,41.4475,-81.4018,107.14.38.224 +US,SMARTT,TN,35.6544,-85.8274,23.79.240.37 +DE,LOHNE,HE,51.18,9.27,92.122.207.179 +CH,MONTHEY,"",46.25,6.95,92.122.189.85 +US,SHIPPENSBURG,PA,40.0414,-77.4967,205.185.195.170 +AT,HUBEN,"",46.93,12.57,195.145.147.107 +FR,AUBIGNY,"",48.60,2.68,2.16.117.197 +FR,SAINTMEDARDENJALLES,"",44.90,-0.73,2.16.117.212 +JP,MAKINO,27,34.35,135.28,72.246.184.84 +FR,CAMBRIN,"",50.50,2.73,2.16.117.212 +CZ,MEZIBORI,"",50.62,13.60,23.74.24.66 +IR,PARDIS,"",30.28,48.47,213.155.156.208 +IR,SABZ,"",37.43,47.82,96.17.182.136 +DK,VEJEN,"",55.48,9.15,2.21.240.40 +US,SPENCERPORT,NY,43.1672,-77.8292,23.74.8.24 +US,HICKORYHILLS,IL,41.7253,-87.8309,23.67.60.220 +RU,MICHURINSKIY,"",53.27,34.23,80.239.222.167 +US,BRADDOCK,PA,40.4039,-79.8613,184.28.17.55 +FR,BELLEY,"",48.30,4.15,2.16.117.185 +US,VILLANOVA,PA,40.0374,-75.3509,23.67.242.139 +US,WAUCHULA,FL,27.5499,-81.8315,23.33.186.134 +KZ,USHARAL,"",44.23,76.85,2.21.240.61 +CZ,PECKY,"",50.09,15.03,195.27.155.193 +DE,WOLF,HE,50.32,9.08,80.157.170.154 +DE,NORDHAUSEN,BW,49.10,9.11,195.95.193.132 +UA,ZHYTOMYR,"",50.25,28.67,23.14.94.214 +US,IJAMSVILLE,MD,39.3307,-77.3133,23.192.161.21 +US,FRIDAYHARBOR,WA,48.5377,-123.0836,23.212.59.85 +JP,NIKKO,09,36.75,139.62,96.7.251.95 +IN,VELLORE,TN,12.93,79.13,23.205.118.106 +AU,TUGGERANONG,ACT,-35.43,149.15,104.72.70.96 +US,MOUNTZION,IL,39.7516,-88.8516,23.67.60.220 +US,OLDORCHARDBEACH,ME,43.5280,-70.3929,107.14.38.218 +US,CLINTONVILLE,WI,44.6424,-88.7405,184.85.215.165 +RO,POPESTILEORDENI,"",44.38,26.17,81.196.26.198 +FR,PONTCHARRA,"",45.87,4.48,2.16.117.212 +NO,ALESUND,"",62.47,6.15,217.212.227.31 +US,COLLINGSWOOD,NJ,39.9152,-75.0615,184.26.44.42 +US,RICHTONPARK,IL,41.4788,-87.7394,23.67.60.222 +US,OSAWATOMIE,KS,38.4532,-94.9928,69.31.59.63 +IN,PUSA,BR,25.98,85.68,213.248.108.233 +US,ROSENBERG,TX,29.5301,-95.8155,23.215.15.22 +BR,JURUENA,MT,-12.85,-58.93,200.174.107.50 +FR,REALMONT,"",43.78,2.20,2.16.117.212 +US,PERRYHALL,MD,39.4067,-76.447,184.28.17.76 +IT,ROMANO,"",45.38,7.87,46.33.73.209 +FR,GOUSSAINVILLE,"",49.02,2.47,2.16.117.185 +BE,WAVER,"",50.93,4.10,23.62.100.154 +CA,PORTCOQUITLAM,BC,49.27,-122.78,96.17.180.166 +DE,HEIDENHEIM,BY,49.02,10.75,23.74.24.69 +US,WAPAKONETA,OH,40.5656,-84.1367,107.14.32.228 +CH,AARAU,"",47.38,8.05,88.221.93.150 +FR,CRE,"",47.68,-0.15,23.200.87.58 +PH,TACLOBAN,"",11.25,125.00,202.78.83.170 +DE,HOLTER,NW,51.77,8.12,195.145.147.108 +DO,BONAO,"",18.93,-70.42,72.246.65.38 +IN,REWA,MP,24.53,81.30,23.205.118.109 +US,BROWNSBORO,AL,34.7068,-86.4742,23.220.100.223 +BR,JANDIRA,SP,-23.52,-46.90,187.59.4.154 +TR,KARTAL,"",39.82,35.65,80.15.235.148 +US,NORTHPROVIDENCE,RI,41.8539,-71.4734,72.247.10.241 +US,NORTHVERSAILLES,PA,40.3802,-79.8167,23.192.161.21 +US,BRADLEY,CA,35.8301,-120.9932,23.215.15.22 +US,BLOOMER,WI,45.1062,-91.4948,23.63.227.214 +US,TELFORD,PA,40.3260,-75.3739,184.26.44.42 +AT,RANKWEIL,"",47.28,9.65,2.16.217.206 +DE,RHEINE,NW,52.28,7.45,2.22.61.102 +DE,BODEN,RP,50.47,7.85,92.122.215.89 +US,FORTWASHINGTON,PA,40.1333,-75.2109,96.17.180.166 +PL,JAWOROWA,"",52.13,20.95,80.157.149.181 +US,DEERLODGE,MT,46.3570,-112.7713,23.63.227.214 +CZ,DLOUHA,"",50.18,13.03,195.27.155.193 +US,LOUISA,KY,37.9848,-82.5857,184.28.17.76 +AR,SANTALUCIA,"",-33.87,-59.87,200.123.194.62 +IN,SOLAN,HP,30.92,77.12,96.17.182.127 +US,DANSVILLE,NY,42.5670,-77.738,107.14.38.227 +CN,SONGJIANG,SH,31.01,121.23,72.246.191.19 +AR,INGENIEROLUIGGI,"",-35.42,-64.48,200.123.201.219 +US,CENTERTON,AR,36.3689,-94.3208,23.215.15.22 +PH,MALACANANG,"",11.40,122.05,58.71.107.119 +US,MALTA,IL,41.8958,-88.8827,23.67.60.223 +FR,RAMONVILLESAINTAGNE,"",43.55,1.47,81.52.201.101 +IN,PAREL,MH,19.00,72.83,124.124.252.160 +RU,OR,"",51.20,58.70,80.239.222.167 +FR,CHEVRIERES,"",49.35,2.68,2.16.117.212 +NG,UYO,"",5.05,7.93,2.20.44.118 +JP,KANI,21,35.43,137.07,23.3.104.20 +US,RAYMOND,MS,32.2288,-90.4476,23.212.53.64 +ID,SENAYAN,"",-6.23,106.78,96.17.180.155 +RU,MIRNY,"",45.55,38.91,213.155.156.207 +AT,GROSSPETERSDORF,"",47.23,16.32,195.145.147.107 +AR,ALEJANDROKORN,"",-34.98,-58.38,190.98.167.230 +UA,IVANOV,"",49.48,28.35,46.33.70.97 +US,EPHRAIM,UT,39.3528,-111.5432,23.216.10.78 +AT,RANNERSDORF,"",48.12,16.47,195.145.147.107 +JP,KAWASAKI,14,35.52,139.72,118.155.230.132 +CA,BEACHBURG,ON,45.73,-76.85,72.246.43.237 +IN,HIMATNAGAR,GJ,23.60,72.95,117.239.189.111 +FR,CHEVREUSE,"",48.70,2.05,2.16.117.185 +IL,EINHAMIFRATZ,"",32.90,35.10,82.102.137.137 +RU,MAIKOP,"",44.61,40.11,80.239.237.93 +FR,BOULOGNESURMER,"",50.72,1.62,2.16.117.185 +US,GALVA,KS,38.3914,-97.5376,23.215.15.9 +US,REPUBLIC,MO,37.1404,-93.5188,23.77.234.35 +IR,CHAHARMAHAL,"",29.61,50.76,184.25.157.162 +DE,ANDERNACH,RP,50.43,7.40,23.14.94.228 +BR,PORTOVELHO,SP,-24.03,-46.72,187.59.4.147 +IT,VITO,"",38.13,15.70,96.17.180.155 +LT,VISAGINAS,"",55.60,26.42,92.122.189.85 +AT,KEMATEN,"",48.03,14.75,195.145.147.101 +PL,WARKA,"",51.78,21.20,2.22.52.105 +CI,BOUAKE,"",7.68,-5.03,23.0.162.40 +IR,MAHAN,"",34.18,48.21,184.25.157.162 +DK,HAARLEV,"",55.35,12.25,23.65.29.93 +CZ,BZENEC,"",48.98,17.27,195.27.155.188 +FR,CHATEAUDUN,"",48.08,1.33,2.16.117.200 +RO,CARACAL,"",45.02,24.88,88.221.93.150 +US,BARAGA,MI,46.8110,-88.5098,107.14.32.228 +CA,SALMONARM,BC,50.70,-119.28,184.27.179.159 +CA,PORTHARDY,BC,50.72,-127.50,184.27.179.159 +DE,FLORENBERG,HE,50.52,9.72,194.25.95.214 +TH,SAMUTPRAKAN,"",13.60,100.60,203.153.50.80 +IT,CESENA,"",44.14,12.25,2.20.142.166 +US,CARNEY,MI,45.5790,-87.5356,23.79.240.48 +CN,HEIHE,HL,50.27,127.47,184.84.239.175 +US,WADENA,MN,46.4558,-95.094,65.113.249.11 +FR,PONTEVEQUE,"",45.53,4.92,2.16.117.212 +PL,RADOSLAW,"",51.77,16.48,2.22.52.101 diff --git a/tests/large/sample/cp.csv b/tests/large/sample/cp.csv new file mode 100644 index 00000000..57d0074c --- /dev/null +++ b/tests/large/sample/cp.csv @@ -0,0 +1,3 @@ +113982 +277253 +323114 diff --git a/tests/large/sample/id.csv b/tests/large/sample/id.csv new file mode 100644 index 00000000..23b3c04c --- /dev/null +++ b/tests/large/sample/id.csv @@ -0,0 +1,100 @@ +ea7211754ec15b845ca906 +eab2c41754ec15b8124f9916-a +852612254ec15b81bbad91c +1007f54ec15b81341de68 +eae2ce1754ec15b810aac129 +ea12241754ec15b810397ca +2a3de1754ec15b8f18617f +ea82311754ec15b82e9bee9 +ea7291754ec15b876f64d47-a +1007f54ec15b838d595c2 +5dc1c11754ec15b87524 +eae2401754ec15b81e64092c +3cbe411754ec15b81a9f8da +abc3361754ec15b81a873d5 +ea7211754ec15b8231359ea-a +2c65421754ec15b8261e20a +f62d18b854ec15b899dd00a +ea6276054ec15b870c0e59-a +ea92341754ec15b87b147af +1682446854ec15b8c2ef917 +ea424f1754ec15b82fd3c688 +ea7211754ec15b823135fc9-a +ea92c11754ec15b8c577e60-a +ea82311754ec15b84122466f-a +eac2281754ec15b85354799 +ea7211754ec15b845ca8ff +ea62491754ec15b866af125-a +5dc1c11754ec15b8760c-a +ea424f1754ec15b83f96806-a +798e6ac54ec15b8205f877d +8e53e2ac54ec15b83a2d44c8 +8e53e2ac54ec15b81779f6c8 +ea62d11754ec15b84047f3b6 +545714254ec15b8261ef911-a +eae2ce1754ec15b810aac119 +1007f54ec15b8368562a +eac23b1754ec15b81a2f05 +eae2ce1754ec15b81f00403a +4032d1754ec15b84ef8f070 +1ff7201754ec15b81ca5de59 +eaf2251754ec15b847c3981 +eae2ce1754ec15b81f004033 +eab22b1754ec15b837f350c +abc3361754ec15b81a875bd +ea2361754ec15b84b66c3d6 +3863de1754ec15b840a41b6f-a +1007f54ec15b81ca5e0f4 +ea92311754ec15b81ba91fa4-a +1007f54ec15b8101f30ec +d47454b854ec15b83eeffc7 +a725d41754ec15b81c7c5873 +1007f54ec15b83757152a +1007f54ec15b837f5277 +ea12cc1754ec15b835e609e-a +ea2d31754ec15b88b1a11f +eab2d31754ec15b815a3d8a7-a +ea32251754ec15b838d595c2 +ea42d21754ec15b822711d5f +eac23b1754ec15b8f1cb626 +1007f54ec15b822710753 +3317a1754ec15b81b803928-a +c7872e1754ec15b82a4218a9-a +3317a1754ec15b81b80398d-a +eac23b1754ec15b8652720 +a39df1754ec15b81571b1c3-a +c7872e1754ec15b81fa5244e +ea7211754ec15b82313610e +ea2d31754ec15b8133f2c3c +13b5e2ac54ec15b8135fe4-a +abc3361754ec15b81a874cc +ea82361754ec15b8227494 +82db481754ec15b82c1f1327-a +d6b471754ec15b8210be9a3-a +ea723b1754ec15b85c05e90f-a +ea92341754ec15b87b147a3 +9ec34b1754ec15b8b132d9b-a +b4e14a1754ec15b81aea0e6c-a +1682446854ec15b8c2ef845-a +eaf2dfad54ec15b87630821 +ea7291754ec15b81ddfa729 +ea92c11754ec15b8c565b38 +1ff7201754ec15b81ca5d134 +ea12d61754ec15b8185ea12c +ea12d61754ec15b8185efa94 +8e53e2ac54ec15b81779f6b3 +82db481754ec15b82c1f0940-a +ea6261754ec15b8277ca2c6 +ead22e1754ec15b8618713-a +ea2411754ec15b869fc10a +8eaa436854ec15b812d62f36 +ea6261754ec15b81840a2f4 +3863de1754ec15b840a39abc +798e6ac54ec15b832b8f4e +7443211754ec15b83757152a +ea7211754ec15b845ca8f0 +218446854ec15b82b6381f9-a +9ec34b1754ec15b81591ba99 +c5e23a1754ec15b820275329 +ea92351754ec15b821848589 +eab2d31754ec15b815a3f23b diff --git a/tests/large/sample/ip.csv b/tests/large/sample/ip.csv new file mode 100644 index 00000000..cfe90552 --- /dev/null +++ b/tests/large/sample/ip.csv @@ -0,0 +1,100 @@ +23.1.114.234 +23.196.178.234 +2.18.38.133 +23.206.226.234 +23.36.18.234 +23.222.163.2 +23.49.130.234 +23.9.114.234 +23.193.193.93 +23.64.226.234 +23.65.190.60 +23.54.195.171 +23.66.101.44 +184.24.45.246 +96.7.98.234 +23.52.146.234 +104.68.130.22 +23.79.66.234 +23.193.146.234 +23.40.194.234 +23.73.98.234 +172.230.152.7 +172.226.83.142 +23.209.98.234 +2.20.87.84 +23.59.194.234 +23.13.50.64 +23.32.247.31 +23.37.242.234 +23.43.178.234 +23.54.2.234 +23.222.99.56 +23.49.146.234 +184.84.116.212 +23.212.37.167 +23.204.18.234 +23.211.2.234 +23.211.178.234 +23.37.50.234 +23.210.66.234 +23.10.23.51 +23.46.135.199 +23.223.57.10 +172.226.181.19 +23.54.130.234 +23.72.219.130 +23.7.180.214 +23.59.114.234 +23.75.195.158 +23.74.225.180 +173.223.242.234 +23.214.18.234 +23.6.98.234 +23.46.210.234 +23.65.2.234 +104.67.170.142 +23.33.67.116 +104.68.8.33 +23.58.226.197 +23.53.146.234 +23.77.18.234 +23.63.195.40 +2.20.98.234 +96.16.220.139 +23.50.146.234 +184.51.208.185 +23.201.210.234 +23.41.0.20 +23.194.50.234 +23.214.154.131 +95.100.126.200 +172.229.194.234 +23.50.82.234 +23.4.132.102 +23.79.99.50 +23.218.215.93 +23.203.2.234 +23.57.210.234 +23.195.122.147 +23.64.114.13 +23.37.151.160 +23.53.210.234 +172.231.252.196 +104.73.32.231 +23.43.66.234 +23.197.11.186 +23.73.162.234 +23.51.51.183 +23.220.18.234 +104.66.212.185 +23.73.2.234 +23.63.84.195 +23.212.200.244 +2.16.47.42 +172.233.88.222 +23.49.226.234 +23.74.82.234 +23.76.178.234 +23.212.226.234 +23.36.34.234 diff --git a/tests/large/sample/replay b/tests/large/sample/replay new file mode 100755 index 00000000..b906dc98 --- /dev/null +++ b/tests/large/sample/replay @@ -0,0 +1,12 @@ +2014-01-04 20:00:00 WINDBAG Event 1 of 12 randint @@integer +2014-01-04 20:00:01 WINDBAG Event 2 of 12 randint @@integer +2014-01-04 20:00:02 WINDBAG Event 3 of 12 randint @@integer +2014-01-04 20:00:03 WINDBAG Event 4 of 12 randint @@integer +2014-01-04 20:00:03 WINDBAG Event 5 of 12 randint @@integer +2014-01-04 20:00:04 WINDBAG Event 6 of 12 randint @@integer +2014-01-04 20:00:05 WINDBAG Event 7 of 12 randint @@integer +2014-01-04 20:00:06 WINDBAG Event 8 of 12 randint @@integer +2014-01-04 20:00:08 WINDBAG Event 9 of 12 randint @@integer +2014-01-04 20:00:20 WINDBAG Event 10 of 12 randint @@integer +2014-01-04 20:00:21 WINDBAG Event 11 of 12 randint @@integer +2014-01-04 20:00:21 WINDBAG Event 12 of 12 randint @@integer diff --git a/tests/large/sample/sample b/tests/large/sample/sample new file mode 100755 index 00000000..b906dc98 --- /dev/null +++ b/tests/large/sample/sample @@ -0,0 +1,12 @@ +2014-01-04 20:00:00 WINDBAG Event 1 of 12 randint @@integer +2014-01-04 20:00:01 WINDBAG Event 2 of 12 randint @@integer +2014-01-04 20:00:02 WINDBAG Event 3 of 12 randint @@integer +2014-01-04 20:00:03 WINDBAG Event 4 of 12 randint @@integer +2014-01-04 20:00:03 WINDBAG Event 5 of 12 randint @@integer +2014-01-04 20:00:04 WINDBAG Event 6 of 12 randint @@integer +2014-01-04 20:00:05 WINDBAG Event 7 of 12 randint @@integer +2014-01-04 20:00:06 WINDBAG Event 8 of 12 randint @@integer +2014-01-04 20:00:08 WINDBAG Event 9 of 12 randint @@integer +2014-01-04 20:00:20 WINDBAG Event 10 of 12 randint @@integer +2014-01-04 20:00:21 WINDBAG Event 11 of 12 randint @@integer +2014-01-04 20:00:21 WINDBAG Event 12 of 12 randint @@integer diff --git a/tests/large/sample/timeorder.csv b/tests/large/sample/timeorder.csv new file mode 100644 index 00000000..72e2fc31 --- /dev/null +++ b/tests/large/sample/timeorder.csv @@ -0,0 +1,11 @@ +_time,_raw,index,host,source,sourcetype +2015-08-18T16:28:54.695-0700,"127.0.0.1 - admin [18/Aug/2015:16:28:54.695 -0700] ""GET /en-US/api/shelper?snippet=true&snippetEmbedJS=false&namespace=search&search=search+index%3D_internal+%7C+fields+_time%2C+_raw%2C+index%2C+host%2C+source%2C+sourcetype+&useTypeahead=true&useAssistant=true&showCommandHelp=true&showCommandHistory=true&showFieldInfo=false&_=1439940537886 HTTP/1.1"" 200 994 ""https://host5.foobar.com:8000/en-US/app/search/search?q=search%20index%3D_internal%20%7C%20fields%20_time%2C%20_raw%2C%20index%2C%20host%2C%20source%2C%20sourcetype&sid=1439940529.1846224&earliest=&latest="" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36"" - 55d3bfb6b17f7ff8270d50 33ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/web_access.log,splunk_web_access +2015-08-18T16:28:54.569-0700,"2015-08-18 16:28:54,569 INFO streams_utils:24 - utils::readAsJson:: /usr/local/bamboo/itsi-demo/local/splunk/etc/apps/splunk_app_stream/local/apps",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunk_app_stream.log,splunk_app_stream.log +2015-08-18T16:28:54.568-0700,"2015-08-18 16:28:54,568 INFO streams_utils:74 - create dir /usr/local/bamboo/itsi-demo/local/splunk/etc/apps/splunk_app_stream/local/",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunk_app_stream.log,splunk_app_stream.log +2015-08-18T16:28:54.564-0700,"127.0.0.1 - - [18/Aug/2015:16:28:54.564 -0700] ""GET /en-us/custom/splunk_app_stream/ping/ HTTP/1.1"" 200 311 """" """" - 55d3bfb6907f7ff805f710 5ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/web_access.log,splunk_web_access +2015-08-18T16:28:52.798-0700,"10.160.255.115 - admin [18/Aug/2015:16:28:52.798 -0700] ""GET /en-US/splunkd/__raw/servicesNS/nobody/search/search/jobs/1439940529.1846224/summary?output_mode=json&min_freq=0&_=1439940537880 HTTP/1.1"" 200 503 ""https://host5.foobar.com:8000/en-US/app/search/search?q=search%20index%3D_internal%20%7C%20fields%20_time%2C%20_raw%2C%20index%2C%20host%2C%20source%2C%20sourcetype&sid=1439940529.1846224&earliest=&latest="" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36"" - 9f802569d5c3d77d468e897d34f8969f 6ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunkd_ui_access.log,splunkd_ui_access +2015-08-18T16:28:52.798-0700,"10.160.255.115 - admin [18/Aug/2015:16:28:52.798 -0700] ""GET /en-US/splunkd/__raw/services/search/jobs/1439940529.1846224/timeline?offset=0&count=1000&_=1439940537881 HTTP/1.1"" 200 349 ""https://host5.foobar.com:8000/en-US/app/search/search?q=search%20index%3D_internal%20%7C%20fields%20_time%2C%20_raw%2C%20index%2C%20host%2C%20source%2C%20sourcetype&sid=1439940529.1846224&earliest=&latest="" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36"" - 9f802569d5c3d77d468e897d34f8969f 4ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunkd_ui_access.log,splunkd_ui_access +2015-08-18T16:28:52.754-0700,"10.160.255.115 - admin [18/Aug/2015:16:28:52.754 -0700] ""GET /en-US/splunkd/__raw/servicesNS/nobody/search/search/jobs/1439940529.1846224?output_mode=json&_=1439940537879 HTTP/1.1"" 200 1543 ""https://host5.foobar.com:8000/en-US/app/search/search?q=search%20index%3D_internal%20%7C%20fields%20_time%2C%20_raw%2C%20index%2C%20host%2C%20source%2C%20sourcetype&sid=1439940529.1846224&earliest=&latest="" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.132 Safari/537.36"" - 9f802569d5c3d77d468e897d34f8969f 4ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunkd_ui_access.log,splunkd_ui_access +2015-08-18T16:28:52.270-0700,"2015-08-18 16:28:52,270 ERROR pid=16324 tid=MainThread file=__init__.py:execute:957 | Execution failed: [HTTP 401] Client is not authenticated +2015-08-18T16:28:52.268-0700,"127.0.0.1 - - [18/Aug/2015:16:28:52.268 -0700] ""GET /services/shcluster/config/config HTTP/1.0"" 401 148 - - - 0ms",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/splunkd_access.log,splunkd_access +2015-08-18T16:28:52.247-0700,"2015-08-18 16:28:52,247 INFO pid=16324 tid=MainThread file=__init__.py:execute:906 | Execute called",_internal,host5.foobar.com,/usr/local/bamboo/itsi-demo/local/splunk/var/log/splunk/python_modular_input.log,python_modular_input diff --git a/tests/large/sample/tokenreplacement.sample b/tests/large/sample/tokenreplacement.sample new file mode 100644 index 00000000..59dbc485 --- /dev/null +++ b/tests/large/sample/tokenreplacement.sample @@ -0,0 +1,10 @@ +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} +{"type":"cloud_monitor","format":"default","version":"1.0","id":"ea7211754ec15b845ca906","start":"1424758200.997","cp":"113982","message":{"reqQuery":"cmd%3d_dummyaccessrequest-submit%26dispatch%3d5885d80a13c0db1f8e263663d3faee8da8649a435e198e44a05ba053bc68d12e","reqLen":68,"reqCT":"application%2fjson%3b%20charset%3dUTF-8","proto":"http","protoVer":"1.1","status":"301","cliIP":"999.254.16.5","reqPort":"80","reqHost":"www.dummycompanytest.com","reqMethod":"GET","reqPath":"%2f","respLen":"0","bytes":"0","UA":"PowerShell%20Script","fwdHost":"origin-www.dummycompanytest.com.akadns.net"},"netPerf":{"downloadTime":"2","lastMileRTT":"22","cacheStatus":"0","firstByte":"0","lastByte":"1","asnum":"25667","edgeIP":"23.74.2.12"},"geo":{"country":"US","region":"GA","city":"ATLANTA","lat":"33.7486","long":"-84.3884"},"network":{"edgeIP":"23.74.2.12","asnum":"25667","network":"","networkType":""},"akadebug":{"Ak_IP":"23.1.114.234","akam-server-type":"Production","current-time":"1424758200","forward-origin-ip":"10.10.10.10","end-user-ip":"999.254.16.5","akamai-request-id":"45ca906","cpcode":"113982","origin-timeout":"no"},"ppcustomdata":{"hostheader":"","cmd":"","receiver_id":"","ADS":""},"reqHdr":{"accEnc":"gzip","referer":"https://www.splunk.com","cookie":"firebrowser","conn":"Keep-Alive"}} diff --git a/tests/large/test_mode_replay.py b/tests/large/test_mode_replay.py new file mode 100644 index 00000000..b58c8f51 --- /dev/null +++ b/tests/large/test_mode_replay.py @@ -0,0 +1,61 @@ +from datetime import datetime +import re +import time +import pytest + + +def test_mode_replay(eventgen_test_helper): + """Test normal replay mode settings""" + events = eventgen_test_helper('eventgen_replay.conf').get_events() + # assert the event length is the same as sample file size + assert len(events) == 12 + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + # assert that integer token is replaced + assert "@@integer" not in event + result = pattern.match(event) + assert result is not None + + +def test_mode_replay_end_1(eventgen_test_helper): + """Test normal replay mode with end = 2 which will replay the sample twice and exit""" + events = eventgen_test_helper('eventgen_replay_end_1.conf').get_events() + # assert the event length is twice of the events in the sample file + assert len(events) == 24 + + +def test_mode_replay_end_2(eventgen_test_helper): + """Test normal replay mode with end = -1 which will replay the sample forever""" + helper = eventgen_test_helper('eventgen_replay_end_2.conf') + time.sleep(60) + assert helper.is_alive() + + +def test_mode_replay_backfill(eventgen_test_helper): + """Test normal replay mode with backfill = -5s which should be ignore since backfill < interval""" + events = eventgen_test_helper('eventgen_replay_backfill.conf').get_events() + # assert the events length is twice of the events in the sample file + assert len(events) == 24 + + +@pytest.mark.skip(reason="this issue is not fixed") +def test_mode_replay_timemultiple(eventgen_test_helper): + """Test normal replay mode with timeMultiple = 0.5 which will replay the sample with half time interval""" + current_datetime = datetime.now() + events = eventgen_test_helper('eventgen_replay_timeMultiple.conf').get_events() + + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + result = pattern.match(event) + assert result is not None + event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") + delter_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - earliest) time + assert delter_seconds < 11 + + +def test_mode_replay_csv(eventgen_test_helper): + """Test normal replay mode with sampletype = csv which will get _raw row from the sample""" + events = eventgen_test_helper('eventgen_replay_csv.conf').get_events() + # assert the events equals to the sample csv file + assert len(events) == 10 diff --git a/tests/large/test_mode_sample.py b/tests/large/test_mode_sample.py new file mode 100644 index 00000000..e7d1575f --- /dev/null +++ b/tests/large/test_mode_sample.py @@ -0,0 +1,101 @@ +from datetime import datetime +import re + + +def test_mode_sample(eventgen_test_helper): + """Test normal sample mode with sampletype = raw""" + current_datetime = datetime.now() + events = eventgen_test_helper("eventgen_sample.conf").get_events() + # assert the event length is the same as sample file size when end = 1 + assert len(events) == 12 + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + # assert that integer token is replaced + assert "@@integer" not in event + result = pattern.match(event) + assert result is not None + event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") + delter_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - earliest) time + assert delter_seconds > -20 + + +def test_mode_sample_csv(eventgen_test_helper): + """Test normal sample mode with sampletype = csv""" + events = eventgen_test_helper("eventgen_sample_csv.conf").get_events() + # assert the event length is the same as sample file size when end = 1 + assert len(events) == 10 + + +def test_mode_sample_interval(eventgen_test_helper): + """Test normal sample mode with interval = 10s""" + events = eventgen_test_helper("eventgen_sample_interval.conf", timeout=30).get_events() + # assert the total events count is 12 * 3 + assert len(events) == 36 + + +def test_mode_sample_end(eventgen_test_helper): + """Test normal sample mode with end = 1 and outputMode = file which will generate from the sample once""" + helper = eventgen_test_helper("eventgen_sample_end.conf") + events = helper.get_events() + # assert the event length is the same as sample file size when end = 1 + assert len(events) == 12 + + +def test_mode_sample_backfill(eventgen_test_helper): + """Test normal sample mode with end = 1 and backfill = -15s which will generate from the sample once""" + current_datetime = datetime.now() + helper = eventgen_test_helper("eventgen_sample_backfill.conf") + events = helper.get_events() + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + result = pattern.match(event) + assert result is not None + event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") + delter_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - backfill) time + assert delter_seconds > -15 + + +def test_mode_sample_breaker(eventgen_test_helper): + r"""Test sample mode with end = 1, count = 3 and breaker = ^\d{14}\.\d{6}""" + helper = eventgen_test_helper("eventgen_sample_breaker.conf") + events = helper.get_events() + assert len(events) == 3 + + +def test_mode_sample_earliest(eventgen_test_helper): + """Test sample mode with earliest = -15s""" + current_datetime = datetime.now() + helper = eventgen_test_helper("eventgen_sample_earliest.conf") + events = helper.get_events() + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + result = pattern.match(event) + assert result is not None + event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") + delter_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - earliest) + 1 time, plus 1 to make it less flaky + assert delter_seconds > -16 + + +def test_mode_sample_latest(eventgen_test_helper): + """Test sample mode with latest = +15s""" + current_datetime = datetime.now() + helper = eventgen_test_helper("eventgen_sample_latest.conf") + events = helper.get_events() + pattern = re.compile(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}") + for event in events: + result = pattern.match(event) + assert result is not None + event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") + delter_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - earliest) time + assert delter_seconds < 16 + + +def test_mode_sample_count(eventgen_test_helper): + """Test sample mode with count = 5 which will output 5 events""" + helper = eventgen_test_helper("eventgen_sample_count.conf") + events = helper.get_events() + assert len(events) == 5 diff --git a/tests/large/test_token_replacement.py b/tests/large/test_token_replacement.py new file mode 100644 index 00000000..c602c291 --- /dev/null +++ b/tests/large/test_token_replacement.py @@ -0,0 +1,68 @@ +import json +import os +import csv +import re + +base_dir = os.path.dirname(os.path.abspath(__file__)) + + +def test_token_replacement(eventgen_test_helper): + """Test token replcement with replacementType= static | random | file | timestamp""" + events = eventgen_test_helper("eventgen_token_replacement.conf").get_events() + # assert the events size is 10 since end = 1 + assert len(events) == 10 + + with open(os.path.join(base_dir, 'sample', 'id.csv'), 'rb') as f: + id_content = f.read() + with open(os.path.join(base_dir, 'sample', 'ip.csv'), 'rb') as f: + ip_content = f.read() + with open(os.path.join(base_dir, 'sample', 'cp.csv'), 'rb') as f: + cp_content = f.read() + with open(os.path.join(base_dir, 'sample', 'city.csv'), 'rb') as f: + reader = csv.reader(f) + country = [] + city = [] + latitude = [] + longitude = [] + for row in reader: + country.append(row[0]) + city.append(row[1]) + latitude.append(row[3]) + longitude.append(row[4]) + + integer_id_seed = 1 + for event in events: + try: + event_obj = json.loads(event) + except ValueError: + raise Exception("Token replacement error") + + # assert replacementType = integerid + assert int(event_obj["ppcustomdata"]["receiver_id"]) == integer_id_seed + integer_id_seed += 1 + + # assert replacementType = file + assert event_obj["id"] in id_content + assert event_obj["cp"] in cp_content + assert event_obj["message"]["cliIP"] in ip_content + + # assert replacementType = static + assert event_obj["netPerf"]["lastByte"] == "0" + + # assert replacementType = random and replacement = integer[:] + assert 5000 > int(event_obj["message"]["bytes"]) > 40 + + # assert replacementType = random and replacement = ipv4 | ipv6 | mac + ipv4_pattern = re.compile(r"^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$") + ipv6_pattern = re.compile(r"^([A-Fa-f0-9]{1,4}:){7}[A-Fa-f0-9]{1,4}$") + mac_pattern = re.compile(r"^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$") + + assert ipv4_pattern.match(event_obj["akadebug"]["Ak_IP"]) is not None + assert ipv6_pattern.match(event_obj["akadebug"]["forward-origin-ip"]) is not None + assert mac_pattern.match(event_obj["akadebug"]["end-user-ip"]) is not None + + # assert replacementType = file | mvfile and replacement = : + assert event_obj["geo"]["city"] in city + assert event_obj["geo"]["country"] in country + assert event_obj["geo"]["lat"] in latitude + assert event_obj["geo"]["long"] in longitude diff --git a/tests/large/utils/__init__.py b/tests/large/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/utils/eventgen_test_helper.py b/tests/large/utils/eventgen_test_helper.py new file mode 100644 index 00000000..c53a04e6 --- /dev/null +++ b/tests/large/utils/eventgen_test_helper.py @@ -0,0 +1,77 @@ +import os +import subprocess +import re +from threading import Timer + +import configparser + +# $EVENTGEN_HOME/tests/large +base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +# change working directory so that 'splunk_eventgen' call in the project root directory +os.chdir(os.path.dirname(os.path.dirname(base_dir))) + + +class EventgenTestHelper(object): + def __init__(self, conf, timeout=None): + self.conf = os.path.join(base_dir, 'conf', conf) + self.config, self.section = self._read_conf(self.conf) + self.output_mode = self._get_output_mode() + self.file_name = self._get_file_name() + self.breaker = self._get_breaker() + self.process = subprocess.Popen(['splunk_eventgen', 'generate', self.conf], stdout=subprocess.PIPE) + if timeout: + timer = Timer(timeout, self.kill) + timer.start() + + def kill(self): + self.process.kill() + + def is_alive(self): + if self.process.poll() is None: + return True + else: + return False + + def get_events(self): + """Get events either from stdout or from file""" + self.process.wait() + if self.output_mode == 'stdout': + output = self.process.communicate()[0] + elif self.output_mode == 'file': + with open(os.path.join(base_dir, 'results', self.file_name), 'r') as f: + output = f.read() + + if self.breaker[0] == '^': + self.breaker = self.breaker[1:] + if self.breaker[-1] == '$': + self.breaker = self.breaker[:-1] + results = re.split(self.breaker, output) + return [x for x in results if x != ""] + + def tear_down(self): + """Kill sub-processes and remove results file""" + if self.is_alive(): + self.process.kill() + if self.file_name: + os.remove(os.path.join(base_dir, 'results', self.file_name)) + + def _get_output_mode(self): + return self.config.get(self.section, 'outputMode', fallback=None) + + def _get_file_name(self): + file_name = None + file_name_value = self.config.get(self.section, 'fileName', fallback=None) + if file_name_value is not None: + file_name = file_name_value.split(os.sep)[-1] + return file_name + + def _get_breaker(self): + return self.config.get(self.section, 'breaker', fallback='\n') + + @staticmethod + def _read_conf(conf): + config = configparser.ConfigParser() + config.read(conf) + if len(config.sections()) != 1 or config.sections()[0] == 'default' or config.sections()[0] == 'global': + raise Exception("Invalid test eventgen conf") + return config, config.sections()[0] From 7139cb5e94d7c69598c59fd5932e76d7eb3eb0ca Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 18 Apr 2019 15:26:01 +0800 Subject: [PATCH 22/68] Update version.json --- splunk_eventgen/version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunk_eventgen/version.json b/splunk_eventgen/version.json index 07e6fd0f..77b7280e 100644 --- a/splunk_eventgen/version.json +++ b/splunk_eventgen/version.json @@ -1 +1 @@ -{"version": "6.3.4"} +{"version": "6.3.5"} From 8cb2fe01a6f76310addbae65a56dd0017aedca35 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Thu, 18 Apr 2019 22:45:42 +0800 Subject: [PATCH 23/68] Fix previous pep8 format regression bug (#171) --- splunk_eventgen/splunk_app/bin/modinput_eventgen.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py index 15463bc5..c8c7e500 100644 --- a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py +++ b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py @@ -5,17 +5,17 @@ import signal import sys -from modinput import ModularInput -from modinput.fields import VerbosityField # Set path so libraries will load from splunk.clilib.bundle_paths import make_splunkhome_path -from splunk_eventgen import eventgen_core -from splunk_eventgen.lib import eventgenconfig -from xmloutput import XMLOutputManager, setupLogger - sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib'])) sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib', 'splunk_eventgen', 'lib'])) +from modinput import ModularInput # noqa isort:skip +from modinput.fields import VerbosityField # noqa isort:skip +from splunk_eventgen import eventgen_core # noqa isort:skip +from splunk_eventgen.lib import eventgenconfig # noqa isort:skip +from xmloutput import XMLOutputManager, setupLogger # noqa isort:skip + # Initialize logging logger = setupLogger(logger=None, log_format='%(asctime)s %(levelname)s [Eventgen] %(message)s', level=logging.DEBUG, log_name="modinput_eventgen.log", logger_name="eventgen_app") From 6cbdf22c1eebe3d6370c22a22035bfe3dbec3347 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Thu, 18 Apr 2019 23:53:54 +0800 Subject: [PATCH 24/68] Fix merge conflict bug --- splunk_eventgen/splunk_app/bin/modinput_eventgen.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py index 653beb55..c8c7e500 100644 --- a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py +++ b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py @@ -5,8 +5,6 @@ import signal import sys -from modinput import ModularInput -from modinput.fields import VerbosityField # Set path so libraries will load from splunk.clilib.bundle_paths import make_splunkhome_path sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib'])) From 6a3f27e096bbed281cf5d355e12e59dba5976ee8 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Wed, 24 Apr 2019 15:47:34 +0800 Subject: [PATCH 25/68] Delete tool orca related part (#178) --- docs/REFERENCE.md | 2 +- docs/TUTORIAL.md | 26 -------------------------- 2 files changed, 1 insertion(+), 27 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 05ebdd53..92e10a3f 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -1,7 +1,7 @@ ## eventgen.conf.spec ## ``` -# Copyright (C) 2005-2018 Splunk Inc. All Rights Reserved. +# Copyright (C) 2005-2019 Splunk Inc. All Rights Reserved. # # This file contains all possible options for an eventgen.conf file. Use this file to configure # Splunk's event generation properties. diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index d51c0d9b..ab84dc17 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -222,29 +222,3 @@ Please note Getting Started section for installation reference. There is an [Eventgen API Reference](REFERENCE.html#rest-api-reference) that you can also reference. --- - -## For Orca Users: Running Eventgen with Orca ## - -Orca 0.8.4 and above will natively support Eventgen 6.0.0 and above versions. - -``` -# The following command creates a specified number of eventgen instances as well as auto-configuring all servers and controllers. -orca create --egx -``` - -In addition, you can configure a custom scenario for automatic bundle install. - -``` -# Paste this into your ~/.orca/orca.conf -# Below scenario will download an app from a specified path and start pumping out data -[egxtest] -indexers = 3 -search_heads = 2 -eventgenx_instances = 1 -ansible_params = eventgen_app=,eventgen_volume=50,eventgen_start=now - -# Simply run this Orca command -orca create --sc egxtest -``` - - From c03c0f99e79cfee9f15b78e9f881cea71c38d213 Mon Sep 17 00:00:00 2001 From: Guodong Wang Date: Wed, 24 Apr 2019 20:19:06 +0800 Subject: [PATCH 26/68] add test for jinja template test (#177) * clean up the logic about sampleDir and jinja_template_dir setting Add functional test for jinja template generator Fixes #174 Fixes #167 * revert the change about token, sample mode test cases * merge the change from develop branch * merge test conf from develop branch * use urllib 1.24.2 * format with pep8 * fix bug in template dir resolution * update test case to address multiline event --- setup.py | 2 +- splunk_eventgen/lib/eventgenconfig.py | 44 ++++----- splunk_eventgen/lib/eventgensamples.py | 1 + .../lib/plugins/generator/jinja.py | 35 ++++--- splunk_eventgen/lib/plugins/rater/config.py | 1 - .../splunk_app/README/eventgen.conf.spec | 93 ++++++++++--------- tests/large/README.md | 2 +- tests/large/conf/eventgen_jinja_advance.conf | 11 +++ tests/large/conf/eventgen_jinja_simple.conf | 10 ++ tests/large/conf/eventgen_jinja_tmpl_dir.conf | 11 +++ tests/large/conf/eventgen_replay.conf | 2 +- .../large/conf/eventgen_replay_backfill.conf | 2 +- tests/large/conf/eventgen_replay_csv.conf | 2 +- tests/large/conf/eventgen_replay_end_1.conf | 2 +- tests/large/conf/eventgen_replay_end_2.conf | 2 +- .../conf/eventgen_replay_timeMultiple.conf | 2 +- tests/large/conf/eventgen_sample.conf | 2 +- .../large/conf/eventgen_sample_backfill.conf | 2 +- tests/large/conf/eventgen_sample_breaker.conf | 2 +- tests/large/conf/eventgen_sample_count.conf | 2 +- tests/large/conf/eventgen_sample_csv.conf | 2 +- .../large/conf/eventgen_sample_earliest.conf | 2 +- tests/large/conf/eventgen_sample_end.conf | 2 +- .../large/conf/eventgen_sample_interval.conf | 2 +- tests/large/conf/eventgen_sample_latest.conf | 2 +- .../conf/eventgen_token_replacement.conf | 2 +- tests/large/conftest.py | 1 + .../templates/test_jinja_tmpl_advance.j2 | 10 ++ .../templates/test_jinja_tmpl_simple.j2 | 4 + .../templates_4_test/test_jinja_tmpl_dir.j2 | 4 + tests/large/test_jinja_template.py | 92 ++++++++++++++++++ tests/large/utils/eventgen_test_helper.py | 14 ++- tests/medium/plugins/test_jinja_generator.py | 1 - 33 files changed, 264 insertions(+), 104 deletions(-) create mode 100644 tests/large/conf/eventgen_jinja_advance.conf create mode 100644 tests/large/conf/eventgen_jinja_simple.conf create mode 100644 tests/large/conf/eventgen_jinja_tmpl_dir.conf create mode 100644 tests/large/sample/templates/test_jinja_tmpl_advance.j2 create mode 100644 tests/large/sample/templates/test_jinja_tmpl_simple.j2 create mode 100644 tests/large/sample/templates_4_test/test_jinja_tmpl_dir.j2 create mode 100644 tests/large/test_jinja_template.py diff --git a/setup.py b/setup.py index c46fc7e7..f0d50654 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def readme(): 'httplib2', 'jinja2', 'pyrabbit==1.1.0', - 'urllib3==1.23', + 'urllib3==1.24.2', 'pyOpenSSL', 'flake8>=3.7.7', 'yapf>=0.26.0', diff --git a/splunk_eventgen/lib/eventgenconfig.py b/splunk_eventgen/lib/eventgenconfig.py index d9382bfc..616eaecf 100644 --- a/splunk_eventgen/lib/eventgenconfig.py +++ b/splunk_eventgen/lib/eventgenconfig.py @@ -37,6 +37,8 @@ class Config(object): """Reads configuration from files or Splunk REST endpoint and stores them in a 'Borg' global. Borg is a variation on the Singleton design pattern which allows us to continually instantiate the configuration object throughout the application and maintain state.""" + DEFAULT_SAMPLE_DIR = 'samples' + # Stolen from http://code.activestate.com/recipes/66531/ # This implements a Borg patterns, similar to Singleton # It allows numerous instantiations but always shared state @@ -310,6 +312,7 @@ def parse(self): # If we see the sample in two places, use the first and ignore the second if not sampleexists: s = Sample(stanza) + s.splunkEmbedded = self.splunkEmbedded s.updateConfig(self) @@ -441,38 +444,29 @@ def parse(self): self.logger.debug("Sample directory not specified in config, setting based on standard") if self.splunkEmbedded and not STANDALONE: s.sampleDir = os.path.normpath( - os.path.join(self.grandparentdir, '..', '..', '..', s.app, 'samples')) + os.path.join(self.grandparentdir, os.path.pardir, os.path.pardir, os.path.pardir, s.app, self.DEFAULT_SAMPLE_DIR)) else: # 2/1/15 CS Adding support for looking for samples based on the config file specified on # the command line. if self.configfile: - if os.path.isdir(self.configfile): - s.sampleDir = os.path.join(self.configfile, 'samples') - else: - s.sampleDir = os.path.join(os.getcwd(), 'samples') + base_dir = os.path.dirname(self.configfile) if os.path.isdir(self.configfile) else os.path.dirname(os.path.dirname(self.configfile)) + s.sampleDir = os.path.join(base_dir, self.DEFAULT_SAMPLE_DIR) else: - s.sampleDir = os.path.join(os.getcwd(), 'samples') - if not os.path.exists(s.sampleDir): - newSampleDir = os.path.join(os.sep.join(os.getcwd().split(os.sep)[:-1]), 'samples') - self.logger.error("Path not found for samples '%s', trying '%s'" % (s.sampleDir, newSampleDir)) - s.sampleDir = newSampleDir - + s.sampleDir = os.path.join(os.getcwd(), self.DEFAULT_SAMPLE_DIR) if not os.path.exists(s.sampleDir): - newSampleDir = os.path.join(self.grandparentdir, 'samples') - self.logger.error( - "Path not found for samples '%s', trying '%s'" % (s.sampleDir, newSampleDir)) - s.sampleDir = newSampleDir + # use the prebuilt sample dirs as the last choice + if not os.path.exists(s.sampleDir): + newSampleDir = os.path.join(self.grandparentdir, self.DEFAULT_SAMPLE_DIR) + self.logger.error( + "Path not found for samples '%s', trying '%s'" % (s.sampleDir, newSampleDir)) + s.sampleDir = newSampleDir else: - self.logger.debug("Sample directory specified in config, checking for relative") - # Allow for relative paths to the base directory - if not os.path.exists(s.sampleDir): - temp_sampleDir = os.path.join(self.grandparentdir, s.sampleDir) - # check the greatgrandparent just incase for the sample file. - if not os.path.exists(temp_sampleDir): - temp_sampleDir = os.path.join(self.greatgrandparentdir, s.sampleDir) - s.sampleDir = temp_sampleDir - else: - s.sampleDir = s.sampleDir + if not os.path.isabs(s.sampleDir): + # relative path use the conffile dir as the base dir + self.logger.debug("Sample directory specified in config, checking for relative") + base_path = self.configfile if os.path.isdir(self.configfile) else os.path.dirname(self.configfile) + s.sampleDir = os.path.join(base_path, s.sampleDir) + # do nothing when sampleDir is absolute path # 2/1/15 CS Adding support for command line options, specifically running a single sample # from the command line diff --git a/splunk_eventgen/lib/eventgensamples.py b/splunk_eventgen/lib/eventgensamples.py index 8a0c21b3..954ecd49 100644 --- a/splunk_eventgen/lib/eventgensamples.py +++ b/splunk_eventgen/lib/eventgensamples.py @@ -92,6 +92,7 @@ class Sample(object): # Internal fields sampleLines = None sampleDict = None + splunkEmbedded = False _lockedSettings = None _priority = None _origName = None diff --git a/splunk_eventgen/lib/plugins/generator/jinja.py b/splunk_eventgen/lib/plugins/generator/jinja.py index 96af5c6f..27de2200 100644 --- a/splunk_eventgen/lib/plugins/generator/jinja.py +++ b/splunk_eventgen/lib/plugins/generator/jinja.py @@ -24,6 +24,7 @@ def __init__(self, msg): self.msg = msg super(CantFindTemplate, self).__init__(msg) + class CantProcessTemplate(Exception): def __init__(self, msg): """Exception raised when we / Jinja can't find the template @@ -188,30 +189,35 @@ def gen(self, count, earliest, latest, samplename=None): startTime = datetime.datetime.now() # if eventgen is running as Splunk app the configfile is None - if self.config.configfile: - working_dir, working_config_file = os.path.split(self.config.configfile) - else: + sample_dir = self._sample.sampleDir + if self._sample.splunkEmbedded is True: splunk_home = os.environ["SPLUNK_HOME"] app_name = getattr(self._sample, 'app', 'SA-Eventgen') - working_dir = os.path.join(splunk_home, 'etc', 'apps', app_name, 'default') + sample_dir = os.path.join(splunk_home, 'etc', 'apps', app_name, + 'default', self._sample.DEFAULT_SAMPLE_DIR) if not hasattr(self._sample, "jinja_template_dir"): - template_dir = os.path.join(os.path.dirname(working_dir), 'samples', 'templates') + template_dir = 'templates' else: template_dir = self._sample.jinja_template_dir if not os.path.isabs(template_dir): - target_template_dir = os.path.join(working_dir, template_dir) + target_template_dir = os.path.join(sample_dir, template_dir) else: target_template_dir = template_dir + self.logger.info('set jinja template path to %s', target_template_dir) if not hasattr(self._sample, "jinja_target_template"): raise CantFindTemplate("Template to load not specified in eventgen conf for stanza. Skipping Stanza") jinja_env = Environment( - loader=FileSystemLoader([target_template_dir, working_dir, template_dir], encoding='utf-8', - followlinks=False), extensions=[ - 'jinja2.ext.do', 'jinja2.ext.with_', 'jinja2.ext.loopcontrols', JinjaTime], - line_statement_prefix="#", line_comment_prefix="##") + loader=FileSystemLoader( + [target_template_dir], encoding='utf-8', followlinks=False), + extensions=[ + 'jinja2.ext.do', 'jinja2.ext.with_', 'jinja2.ext.loopcontrols', + JinjaTime + ], + line_statement_prefix="#", + line_comment_prefix="##") jinja_loaded_template = jinja_env.get_template(str(self._sample.jinja_target_template)) if hasattr(self._sample, 'jinja_variables'): @@ -238,8 +244,11 @@ def gen(self, count, earliest, latest, samplename=None): self.jinja_stream = jinja_loaded_template.stream(jinja_loaded_vars) lines_out = [] try: - for line in self.jinja_stream: - if line != "\n": + for raw_line in self.jinja_stream: + # trim the newline char for jinja output + # it is quite normal to output empty newlines in jinja + line = raw_line.strip() + if line: # TODO: Time can be supported by self._sample.timestamp, should probably set that up here. try: target_line = json.loads(line) @@ -268,8 +277,6 @@ def gen(self, count, earliest, latest, samplename=None): if "index" not in current_line_keys: target_line["index"] = self._sample.index lines_out.append(target_line) - else: - break except TypeError as e: self.logger.exception(e) self.end_of_cycle = True diff --git a/splunk_eventgen/lib/plugins/rater/config.py b/splunk_eventgen/lib/plugins/rater/config.py index d49581de..846b080d 100644 --- a/splunk_eventgen/lib/plugins/rater/config.py +++ b/splunk_eventgen/lib/plugins/rater/config.py @@ -4,7 +4,6 @@ import logging import logging.handlers import random -import os class ConfigRater(object): diff --git a/splunk_eventgen/splunk_app/README/eventgen.conf.spec b/splunk_eventgen/splunk_app/README/eventgen.conf.spec index cf64da52..8a1925ce 100644 --- a/splunk_eventgen/splunk_app/README/eventgen.conf.spec +++ b/splunk_eventgen/splunk_app/README/eventgen.conf.spec @@ -1,16 +1,16 @@ # Copyright (C) 2005-2015 Splunk Inc. All Rights Reserved. # -# This file contains all possible options for an eventgen.conf file. Use this file to configure +# This file contains all possible options for an eventgen.conf file. Use this file to configure # Splunk's event generation properties. # -# To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. +# To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. # For examples, see eventgen.conf.example. You must restart Splunk to enable configurations. # -# To learn more about configuration files (including precedence) please see the documentation +# To learn more about configuration files (including precedence) please see the documentation # located at http://www.splunk.com/base/Documentation/latest/Admin/Aboutconfigurationfiles # -# CAUTION: You can drastically affect your Splunk installation by changing these settings. -# Consult technical support (http://www.splunk.com/page/submit_issue) if you are not sure how +# CAUTION: You can drastically affect your Splunk installation by changing these settings. +# Consult technical support (http://www.splunk.com/page/submit_issue) if you are not sure how # to configure this file. # @@ -82,12 +82,16 @@ autotimestamp = false * rated -> float[:] * file -> * mvfile -> : - + disabled = true | false * Like what it looks like. Will disable event generation for this sample. sampleDir = - * Set a different directory to look for samples in + * Set a different directory to look for samples in. + * if sampleDir is not set, by default, eventgen will loads the sample files from /../samples. conf_file_dir is the directory where eventgen conf file locates. + * You can set sampleDir to some relative path or some absolute path. + * When sampleDir is an absolute path, eventgen will load the sample files from the path directly. But absolute path is not recommended, absolute path makes your configuration not work with different OS. + * When sampleDir is a relative path, eventgen takes conf_file_dir as the base path when resolve sampleDir. For example, sampleDir=../../my_sample will be resolved to /../../my_sample. conf_file_dir is the directory where eventgen conf file locates. threading = thread | process * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. @@ -99,7 +103,7 @@ profiler = true | false useOutputQueue = true | false * Disable the use of the output Queue. The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputting to a file or to stdout/modular input. Defaults to true. If you can multithread output, for example with splunkstream or s2s type outputs, setting this to false will give an order of magnitude or better performance improvement. - + ############################# ## OUTPUT RELATED SETTINGS ## ############################# @@ -157,76 +161,76 @@ spoolDir = * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\var\\spool\\splunk). * Unix separators will work on Windows and vice-versa. * Defaults to $SPLUNK_HOME/var/spool/splunk - + spoolFile = * Spool file is the generated files name. * Not valid if stanza is a pattern. * Defaults to (sample file name). - + fileName = * Should set the full path * Uses a rotating file handler which will rotate the file at a certain size, by default 10 megs and will by default only save 5 files. See fileMaxBytes and fileBackupFiles - + fileMaxBytes = * Will rotate a file output at this given size * Defaults to 10 Megabytes (10485760 bytes) - + fileBackupFiles = * Will keep this number of files (.1, .2, etc) after rotation * Defaults to 5 - + splunkHost = | * If you specify just one host, will only POST to that host, if you specify a JSON list, it will POST to multiple hosts in a random distribution. This allows us from one eventgen to feed an entire cluster of Splunk indexers without needing forwarders. * JSON list should look like [ "host.name", "host2.name" ] - + splunkPort = * Defaults to the default Splunk management port 8089 splunkMethod = http | https * Defaults to https - + splunkUser = * User with rights to post to REST endpoint receivers/stream - + splunkPass = * Password for SplunkUser - + projectID = * Project ID for Splunk Storm - + accessToken = * Access Token for Splunk Storm - + index = * ONLY VALID WITH outputMode SPLUNKSTREAM * Splunk index to write events to. Defaults to main if none specified. - + source = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent * Set event source in Splunk to . Defaults to 'eventgen' if none specified. - + sourcetype = * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent * Set event sourcetype in Splunk to Defaults to 'eventgen' if none specified. - + host = * ONLY VALID WITH outputMode SPLUNKSTREAM * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. - + hostRegex = * ONLY VALID WITH outputMode SPLUNKSTREAM * Allows setting the event host via a regex from the actual event itself. Only used if host not set. - + maxIntervalsBeforeFlush = * Number of intervals before flushing the queue if the queue hasn't filled to maxQueueLength * Defaults to 3 maxQueueLength = * Number of items before flushing the output queue - * Default is per outputMode specific + * Default is per outputMode specific ############################### @@ -248,7 +252,7 @@ rater = config | mode = sample | replay * Default is sample, which will generate count (+/- rating) events every configured interval - * Replay will instead read the file and leak out events, replacing timestamps, + * Replay will instead read the file and leak out events, replacing timestamps, sampletype = raw | csv * Raw are raw events (default) @@ -263,12 +267,12 @@ interval = * How often to generate sample (in seconds). * 0 means disabled. * Defaults to 60 seconds. - + delay = * Specifies how long to wait until we begin generating events for this sample * Primarily this is used so we can stagger sets of samples which similar but slightly different data * Defaults to 0 which is disabled. - + autotimestamp = * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. @@ -305,7 +309,7 @@ backfillSearch = backfillSearchUrl = * Defaults to splunkMethod://splunkHost:splunkPort/, can override in case you're running in a cluster. - + count = * Maximum number of events to generate per sample file * 0 means replay the entire sample. @@ -325,7 +329,7 @@ bundlelines = true | false * If bundlelines = true and the token replacementType is replaytimestamp, we will introduce some randomness into the times between items in the transaction in microseconds. * Will override any breaker setting. - + hourOfDayRate = * Takes a JSON hash of 24 hours with float values to rate limit how many events we should see in a given hour. @@ -361,24 +365,24 @@ monthOfYearRate = { "0": 1, "2": 1...} * If a match is not found, will default to count events * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, dayOfMonthRate - + randomizeCount = * Will randomize the number of events generated by percentage passed * Example values: 0.2, 0.5 * Recommend passing 0.2 to give 20% randomization either way (plus or minus) - + randomizeEvents = * Will randomize the events found in the sample file before choosing the events. * NOT SUPPORTED WITH sampletype csv * NOT SUPPORTED WITH mode = replay OR custom generators like generator = replay - + breaker = * NOT to be confused w/ props.conf LINE_BREAKER. * PCRE used for flow control. * If count > 0; data will be generated until number of discovered breakers <= "count". * If breaker does not match in sample, one iteration of sample will be generated. * Defaults to [^\r\n\s]+ - + earliest = * Specifies the earliest random time for generated events. * If this value is an absolute time, use the dispatch.time_format to format the value. @@ -394,23 +398,28 @@ latest = ############################# jinja_template_dir = - * directory name inside the current eventgen.conf dir where jinja templates can be located. - * default template directory is /samples/templates if not defined. + * directory where jinja templates can be located. + * If it is not defined, default template directory is /templates. sampleDir is the parameter which defines the sample file directory. + * You can set it as some relative path or absolute path. + * When it is set as the absolute path, eventgen loads the jinja template from this directory directly. + * When it is set as the relative path, eventgen uses sampleDir as the base when resolving the path. sampleDir is the parameter which defines the sample file directory. For example, if jinja_template_dir=../my_templates, it will be resolved to /../my_templates. + jinja_target_template = * root template to load for all sample generation. + jinja_variables = * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. ################################ ## TOKEN REPLACEMENT SETTINGS ## ################################ - + token..token = * 'n' is a number starting at 0, and increasing by 1. * PCRE expression used to identify segment for replacement. * If one or more capture groups are present the replacement will be performed on group 1. * Defaults to None. - + token..replacementType = static | timestamp | replaytimestamp | random | rated | file | mvfile | integerid * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. * For static, the token will be replaced with the value specified in the replacement setting. @@ -430,7 +439,7 @@ token..replacementType = static | timestamp | replaytimestamp | random | rate * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. * For integerid, will use an incrementing integer as the replacement. * Defaults to None. - + token..replacement = | | ["list","of","strptime"] | guid | ipv4 | ipv6 | mac | integer[:] | float[:] | string() | hex() | list["list", "of", "values"] | | : | * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. * For , the token will be replaced with the value specified. @@ -441,8 +450,8 @@ token..replacement = | | ["list","of","strptime"] | guid * For ipv4, the token will be replaced with a random valid IPv4 Address (i.e. 10.10.200.1). * For ipv6, the token will be replaced with a random valid IPv6 Address (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). * For mac, the token will be replaced with a random valid MAC Address (i.e. 6e:0c:51:c6:c6:3a). - * For integer[:], the token will be replaced with a random integer between - start and end values where is a number greater than 0 + * For integer[:], the token will be replaced with a random integer between + start and end values where is a number greater than 0 and is a number greater than 0 and greater than or equal to . If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For float[:], the token will be replaced with a random float between @@ -477,4 +486,4 @@ host.replacement = | := -3 and delta_seconds < 3, 'fail to check event ```{}```'.format(event) + assert loop == int(result.group(2)), 'fail to check event ```{}```'.format(event) + loop += 1 + + +def test_jinja_template_dir_conf(eventgen_test_helper): + """Test customized jinja template dir""" + current_datetime = datetime.datetime.now() + events = eventgen_test_helper('eventgen_jinja_tmpl_dir.conf').get_events() + # assert the event length is the same as sample file size + assert len(events) == 10 + pattern = re.compile("^({}) test jinja template directory conf, seq: (\\d+)/10".format(ts_regex)) + loop = 1 + for event in events: + # assert that integer token is replaced + result = pattern.match(event) + assert result is not None + event_datetime = datetime.datetime.strptime(result.group(1), ts_format) + delta_seconds = (event_datetime - current_datetime).total_seconds() + # assert the event time is after (now - earliest) time + assert delta_seconds >= -3 and delta_seconds < 3 + assert loop == int(result.group(2)) + loop += 1 + + +def test_jinja_template_advance(eventgen_test_helper): + """Test advanced jinja template var feature""" + events = eventgen_test_helper('eventgen_jinja_advance.conf').get_events() + # print events + # events are the stdout lines, it is not the splunk indexed events + # splunk may index multiline event + assert len(events) == 27 + # because we use time slice method to mock the time, it should be static values + ts_map = { + 1: '1970-01-01T08:24:16', + 2: '1970-01-01T08:27:58', + 3: '1970-01-01T08:31:40', + } + + firstline_pattern = re.compile( + "^({}) \[admin\] test jinja template advance, switch=True, seq: (\\d+)/3".format(ts_regex)) + secondline_pattern = re.compile("^ this is the 2nd line, seq:(\\d+)/3") + thirdline_pattern = re.compile("^this is the 3rd line, seq:(\\d+)/3") + for i in range(3): + # because end = 3 + for j in range(3): + # because large_number=3 + for l in range(3): + idx = i * 9 + j * 3 + l + event = events[idx] + assert event, 'event is empty!' + # assert that integer token is replaced + if l == 0: + result1 = firstline_pattern.match(event) + assert result1 is not None + idx1 = int(result1.group(2)) + assert (j + 1 == idx1), 'event={}'.format(event) + assert (ts_map[idx1] == result1.group(1)), 'event={}'.format(event) + elif l == 1: + result2 = secondline_pattern.match(event) + assert result2 is not None + idx2 = int(result2.group(1)) + assert (j + 1 == idx2), 'event={}'.format(event) + elif l == 2: + result3 = thirdline_pattern.match(event) + assert result3 is not None + idx3 = int(result3.group(1)) + assert (j + 1 == idx3), 'event={}'.format(event) + else: + assert False, 'Invalid loop when check integer token replacement. i={} j={} l={} idx={}'.format(i, j, l, idx) diff --git a/tests/large/utils/eventgen_test_helper.py b/tests/large/utils/eventgen_test_helper.py index c53a04e6..b3bce311 100644 --- a/tests/large/utils/eventgen_test_helper.py +++ b/tests/large/utils/eventgen_test_helper.py @@ -7,18 +7,24 @@ # $EVENTGEN_HOME/tests/large base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +result_dir = os.path.join(base_dir, 'results') # change working directory so that 'splunk_eventgen' call in the project root directory os.chdir(os.path.dirname(os.path.dirname(base_dir))) class EventgenTestHelper(object): + @classmethod + def make_result_dir(cls): + if not os.path.isdir(result_dir): + os.makedirs(result_dir) + def __init__(self, conf, timeout=None): self.conf = os.path.join(base_dir, 'conf', conf) self.config, self.section = self._read_conf(self.conf) self.output_mode = self._get_output_mode() self.file_name = self._get_file_name() self.breaker = self._get_breaker() - self.process = subprocess.Popen(['splunk_eventgen', 'generate', self.conf], stdout=subprocess.PIPE) + self.process = subprocess.Popen(['splunk_eventgen', '-v', 'generate', self.conf], stdout=subprocess.PIPE) if timeout: timer = Timer(timeout, self.kill) timer.start() @@ -38,7 +44,7 @@ def get_events(self): if self.output_mode == 'stdout': output = self.process.communicate()[0] elif self.output_mode == 'file': - with open(os.path.join(base_dir, 'results', self.file_name), 'r') as f: + with open(os.path.join(result_dir, self.file_name), 'r') as f: output = f.read() if self.breaker[0] == '^': @@ -53,7 +59,9 @@ def tear_down(self): if self.is_alive(): self.process.kill() if self.file_name: - os.remove(os.path.join(base_dir, 'results', self.file_name)) + result_file = os.path.join(result_dir, self.file_name) + if os.path.isfile(result_file): + os.remove(result_file) def _get_output_mode(self): return self.config.get(self.section, 'outputMode', fallback=None) diff --git a/tests/medium/plugins/test_jinja_generator.py b/tests/medium/plugins/test_jinja_generator.py index 0bb7bd96..f40bcdd6 100644 --- a/tests/medium/plugins/test_jinja_generator.py +++ b/tests/medium/plugins/test_jinja_generator.py @@ -10,7 +10,6 @@ class TestJinjaGenerator(object): - def test_jinja_generator_to_file(self): configfile = "tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic" testargs = ["eventgen", "generate", configfile] From 965f9b995e354a601d39d956e89c8bc1d7750dc2 Mon Sep 17 00:00:00 2001 From: YifengMao Date: Thu, 25 Apr 2019 11:46:24 +0800 Subject: [PATCH 27/68] fix a issue that when setup eventgen with 200+ indexers, any exceptions will terminate setup and re-writing default configure files --- splunk_eventgen/eventgen_nameko_server.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/splunk_eventgen/eventgen_nameko_server.py b/splunk_eventgen/eventgen_nameko_server.py index cdfe2f35..bce211d6 100644 --- a/splunk_eventgen/eventgen_nameko_server.py +++ b/splunk_eventgen/eventgen_nameko_server.py @@ -357,13 +357,18 @@ def create_new_hec_key(hostname): formatted_hostname = socket.gethostbyname(host) if new_key: key = create_new_hec_key(formatted_hostname) - - self.discovered_servers.append({ - "protocol": str(protocol), "address": str(formatted_hostname), "port": str(hec_port), "key": - str(key)}) - except socket.gaierror: + except (socket.gaierror, requests.ConnectionError): + self.log.warning('failed to reach %s, skip...' % host) + continue + except (ValueError, KeyError): + self.log.warning('failed to setup hec token for %s, skip...' % host) continue + self.discovered_servers.append({"protocol": str(protocol), + "address": str(formatted_hostname), + "port": str(hec_port), + "key": str(key)}) + counter = 1 while True: try: @@ -395,7 +400,7 @@ def create_new_hec_key(hostname): return self.get_conf() except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def get_volume(self): From 4fa10b74ab4857bb42f8e6b2717725117a9086fb Mon Sep 17 00:00:00 2001 From: Li Wu Date: Sun, 28 Apr 2019 05:52:33 +0800 Subject: [PATCH 28/68] Fix bug #179 urlparams is not set (#181) --- splunk_eventgen/lib/plugins/output/splunkstream.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/splunk_eventgen/lib/plugins/output/splunkstream.py b/splunk_eventgen/lib/plugins/output/splunkstream.py index e258872c..27b971ea 100644 --- a/splunk_eventgen/lib/plugins/output/splunkstream.py +++ b/splunk_eventgen/lib/plugins/output/splunkstream.py @@ -99,15 +99,15 @@ def flush(self, q): splunkhttp = connmethod(self._splunkHost, self._splunkPort) splunkhttp.connect() urlparams = [] - if not index: + if index: urlparams.append(('index', index)) - if not source: + if source: urlparams.append(('source', source)) - if not sourcetype: + if sourcetype: urlparams.append(('sourcetype', sourcetype)) - if not hostRegex: + if hostRegex: urlparams.append(('host_regex', hostRegex)) - elif not host: + if host: urlparams.append(('host', host)) url = '/services/receivers/simple?%s' % (urllib.urlencode(urlparams)) headers = {'Authorization': "Splunk %s" % self._sample.sessionKey} @@ -141,7 +141,7 @@ def flush(self, q): except httplib.BadStatusLine: self.logger.error("Received bad status from Splunk for sample '%s'" % self._sample) self.logger.debug("Closing splunkhttp connection") - if not splunkhttp: + if splunkhttp: splunkhttp.close() def _setup_logging(self): From c6d95861ffa8471f5876848d1fe21b667afc6cc9 Mon Sep 17 00:00:00 2001 From: YifengMao Date: Sun, 28 Apr 2019 16:53:01 +0800 Subject: [PATCH 29/68] fix issue-183 --- dockerfiles/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 079cb2eb..f68354bb 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -25,6 +25,7 @@ RUN apk --no-cache upgrade && \ erlang-xmerl \ erlang-eldap \ erlang-syntax-tools \ + pwgen \ xz \ curl \ bash && \ @@ -40,6 +41,7 @@ RUN apk --no-cache upgrade && \ chmod 0700 /root/.ssh && \ pip install requests_futures nameko pyOpenSSL --upgrade +RUN echo "root:`pwgen 15 1`" | chpasswd COPY dockerfiles/sshd_config /etc/ssh/sshd_config COPY dockerfiles/entrypoint.sh /sbin/entrypoint.sh COPY dist/* /root/splunk_eventgen.tgz From b9ca648b28d1546ff0b41e98244a7d944dc61153 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Tue, 30 Apr 2019 10:32:29 +0800 Subject: [PATCH 30/68] add modinput ft (#185) --- .../splunk_app/bin/modinput_eventgen.py | 2 +- tests/large/sample/film.json | 9 ++++ tests/large/splunk/__init__.py | 0 tests/large/splunk/appserver/__init__.py | 0 .../splunk/appserver/mrsparkle/__init__.py | 0 .../appserver/mrsparkle/lib/__init__.py | 0 .../splunk/appserver/mrsparkle/lib/util.py | 7 ++++ tests/large/splunk/clilib/__init__.py | 0 tests/large/splunk/clilib/bundle_paths.py | 11 +++++ tests/large/splunk/clilib/cli_common.py | 6 +++ tests/large/splunk/entity.py | 5 +++ tests/large/splunk/models/__init__.py | 0 tests/large/splunk/models/app.py | 4 ++ tests/large/splunk/version.py | 1 + tests/large/test_modular_input.py | 42 +++++++++++++++++++ 15 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 tests/large/sample/film.json create mode 100644 tests/large/splunk/__init__.py create mode 100644 tests/large/splunk/appserver/__init__.py create mode 100644 tests/large/splunk/appserver/mrsparkle/__init__.py create mode 100644 tests/large/splunk/appserver/mrsparkle/lib/__init__.py create mode 100644 tests/large/splunk/appserver/mrsparkle/lib/util.py create mode 100644 tests/large/splunk/clilib/__init__.py create mode 100644 tests/large/splunk/clilib/bundle_paths.py create mode 100644 tests/large/splunk/clilib/cli_common.py create mode 100644 tests/large/splunk/entity.py create mode 100644 tests/large/splunk/models/__init__.py create mode 100644 tests/large/splunk/models/app.py create mode 100644 tests/large/splunk/version.py create mode 100644 tests/large/test_modular_input.py diff --git a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py index c8c7e500..174a0541 100644 --- a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py +++ b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py @@ -46,7 +46,7 @@ def __init__(self): def create_args(self): logger.debug("Creating default args for modinput") parser = argparse.ArgumentParser(prog="SA-Eventgen") - args = parser.parse_args() + args, unknown = parser.parse_known_args() args.daemon = False args.version = False args.backfill = None diff --git a/tests/large/sample/film.json b/tests/large/sample/film.json new file mode 100644 index 00000000..308c203a --- /dev/null +++ b/tests/large/sample/film.json @@ -0,0 +1,9 @@ +"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CENTERDINOSAUR","DESCRIPTION":"ABeautifulCharacterStudyofaSumoWrestlerAndaDentistwhomustFindaDoginCalifornia","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":5,"RENTAL_RATE":4.99,"LENGTH":152,"REPLACEMENT_COST":12.99,"RATING":"PG","SPECIAL_FEATURES":"DeletedScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHAINSAWUPTOWN","DESCRIPTION":"ABeautifulDocumentaryofaBoyAndaRobotwhomustDiscoveraSquirrelinAustralia","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":6,"RENTAL_RATE":0.99,"LENGTH":114,"REPLACEMENT_COST":25.99,"RATING":"PG","SPECIAL_FEATURES":"DeletedScenes,BehindtheScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHAMBERITALIAN","DESCRIPTION":"AFatefulReflectionofaMooseAndaHusbandwhomustOvercomeaMonkeyinNigeria","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":7,"RENTAL_RATE":4.99,"LENGTH":117,"REPLACEMENT_COST":14.99,"RATING":"NC-17","SPECIAL_FEATURES":"Trailers","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHAMPIONFLATLINERS","DESCRIPTION":"AAmazingStoryofaMadCowAndaDogwhomustKillaHusbandinAMonastery","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":4,"RENTAL_RATE":4.99,"LENGTH":51,"REPLACEMENT_COST":21.99,"RATING":"PG","SPECIAL_FEATURES":"Trailers","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHANCERESURRECTION","DESCRIPTION":"AAstoundingStoryofaForensicPsychologistAndaForensicPsychologistwhomustOvercomeaMooseinAncientChina","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":3,"RENTAL_RATE":2.99,"LENGTH":70,"REPLACEMENT_COST":22.99,"RATING":"R","SPECIAL_FEATURES":"Commentaries,DeletedScenes,BehindtheScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHAPLINLICENSE","DESCRIPTION":"ABoringDramaofaDogAndaForensicPsychologistwhomustOutraceaExplorerinAncientIndia","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":7,"RENTAL_RATE":2.99,"LENGTH":146,"REPLACEMENT_COST":26.99,"RATING":"NC-17","SPECIAL_FEATURES":"BehindtheScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHARADEDUFFEL","DESCRIPTION":"AAction-PackedDisplayofaManAndaWaitresswhomustBuildaDoginAMySQLConvention","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":3,"RENTAL_RATE":2.99,"LENGTH":66,"REPLACEMENT_COST":21.99,"RATING":"PG","SPECIAL_FEATURES":"Trailers,DeletedScenes,BehindtheScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHARIOTSCONSPIRACY","DESCRIPTION":"AUnbelieveableEpistleofaRobotAndaHusbandwhomustChaseaRobotinTheFirstMannedSpaceStation","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":5,"RENTAL_RATE":2.99,"LENGTH":71,"REPLACEMENT_COST":29.99,"RATING":"R","SPECIAL_FEATURES":"DeletedScenes,BehindtheScenes","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, +{"FILM_ID":0,"DIRECTOR_ID":0,"REGION_ID":0,"TITLE":"CHASINGFIGHT","DESCRIPTION":"AAstoundingSagaofaTechnicalWriterAndaButlerwhomustBattleaButlerinASharkTank","RELEASE_YEAR":2006,"LANGUAGE_ID":1,"ORIGINAL_LANGUAGE_ID":"(null)","RENTAL_DURATION":7,"RENTAL_RATE":4.99,"LENGTH":114,"REPLACEMENT_COST":21.99,"RATING":"PG","SPECIAL_FEATURES":"Trailers,Commentaries","LAST_UPDATE":"2/15/0605:03","_time":"Mon Jul 13 09:30:00 PDT 2017"}, diff --git a/tests/large/splunk/__init__.py b/tests/large/splunk/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/appserver/__init__.py b/tests/large/splunk/appserver/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/appserver/mrsparkle/__init__.py b/tests/large/splunk/appserver/mrsparkle/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/appserver/mrsparkle/lib/__init__.py b/tests/large/splunk/appserver/mrsparkle/lib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/appserver/mrsparkle/lib/util.py b/tests/large/splunk/appserver/mrsparkle/lib/util.py new file mode 100644 index 00000000..fc947d04 --- /dev/null +++ b/tests/large/splunk/appserver/mrsparkle/lib/util.py @@ -0,0 +1,7 @@ +import os + + +def make_splunkhome_path(*args): + splunk_test_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) + tests_large_dir = os.path.dirname(splunk_test_dir) + return os.path.join(tests_large_dir, 'results', 'test_modinput.log') diff --git a/tests/large/splunk/clilib/__init__.py b/tests/large/splunk/clilib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/clilib/bundle_paths.py b/tests/large/splunk/clilib/bundle_paths.py new file mode 100644 index 00000000..cf64e378 --- /dev/null +++ b/tests/large/splunk/clilib/bundle_paths.py @@ -0,0 +1,11 @@ +import os + + +def make_splunkhome_path(*args): + tests_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) + project_dir = os.path.dirname(tests_dir) + return os.path.join(project_dir, 'splunk_eventgen', 'splunk_app', 'lib') + + +def get_slaveapps_base_path(): + pass diff --git a/tests/large/splunk/clilib/cli_common.py b/tests/large/splunk/clilib/cli_common.py new file mode 100644 index 00000000..9093bc13 --- /dev/null +++ b/tests/large/splunk/clilib/cli_common.py @@ -0,0 +1,6 @@ +def get(name): + return {} + + +def getMergedConf(name): + return {} diff --git a/tests/large/splunk/entity.py b/tests/large/splunk/entity.py new file mode 100644 index 00000000..50669135 --- /dev/null +++ b/tests/large/splunk/entity.py @@ -0,0 +1,5 @@ +import json + + +def getEntities(endpoint, count, sessionKey): + return json.loads('{"film.json": {"mode": "sample", "end": "1", "eai:userName": "admin", "source": "film.json", "eai:acl": {"removable": "0", "can_share_global": "1", "perms": {"read": ["*"], "write": ["*"]}, "can_list": "1", "can_share_app": "1", "app": "modinput_test_app", "sharing": "global", "can_share_user": "0", "can_write": "1", "owner": "nobody", "can_change_perms": "1", "modifiable": "1"}, "sampletype": "raw", "eai:appName": "search", "sourcetype": "json", "count": "10", "disabled": "0", "index": "main" }, "global": {"generator": "default", "delay": "0", "splunkMethod": "https", "eai:userName": "admin", "maxQueueLength": "0", "mode": "sample", "eai:acl": {"removable": "0", "can_share_global": "1", "perms": {"read": ["*"], "write": ["admin"]}, "can_list": "1", "can_share_app": "1", "app": "SA-Eventgen", "sharing": "global", "can_share_user": "0", "can_write": "1", "owner": "nobody", "can_change_perms": "1", "modifiable": "1"}, "rater": "config", "interval": "60", "disabled": "0", "useOutputQueue": "0", "autotimestamp": "0", "threading": "thread", "eai:appName": "search", "sourcetype": "eventgen", "count": "-1", "outputWorkers": "1", "timeField": "_raw", "source": "eventgen", "sampletype": "raw", "timeMultiple": "1", "outputMode": "modinput", "httpeventWaitResponse": "1", "splunkPort": "8089", "verbose": "0", "host": "127.0.0.1", "profiler": "0", "generatorWorkers": "1", "fileMaxBytes": "10485760", "index": "main", "maxIntervalsBeforeFlush": "3", "debug": "0", "spoolFile": "", "earliest": "now", "randomizeEvents": "0", "fileBackupFiles": "5", "breaker": "\\n", "spoolDir": "$SPLUNK_HOME/var/spool/splunk", "latest": "now"}}') diff --git a/tests/large/splunk/models/__init__.py b/tests/large/splunk/models/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/large/splunk/models/app.py b/tests/large/splunk/models/app.py new file mode 100644 index 00000000..123d286b --- /dev/null +++ b/tests/large/splunk/models/app.py @@ -0,0 +1,4 @@ +class App(object): + @classmethod + def get(cls): + pass diff --git a/tests/large/splunk/version.py b/tests/large/splunk/version.py new file mode 100644 index 00000000..5220ac1a --- /dev/null +++ b/tests/large/splunk/version.py @@ -0,0 +1 @@ +__version__ = '7.0.0' diff --git a/tests/large/test_modular_input.py b/tests/large/test_modular_input.py new file mode 100644 index 00000000..38c81ec7 --- /dev/null +++ b/tests/large/test_modular_input.py @@ -0,0 +1,42 @@ +import os +import sys +from shutil import copyfile, rmtree + + +def test_modular_input(mocker, capsys): + # mock the splunk related module when used in modular input + sys.modules['bundle_paths'] = __import__('splunk.clilib.bundle_paths') + sys.modules['cli_common'] = __import__('splunk.clilib.cli_common') + sys.modules['entity'] = __import__('splunk.entity') + + # eventgen base directory + base_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + + # insert modular input directory to the sys path + mod_input_path = os.path.join(base_dir, 'splunk_eventgen', 'splunk_app', 'bin') + sys.path.insert(0, mod_input_path) + + # create needed sample file + simulated_splunk_etc_dir = os.path.dirname(os.path.dirname(base_dir)) + sample_path = os.path.join(simulated_splunk_etc_dir, 'modinput_test_app', 'samples') + # os.mkdir(os.path.join(simulated_splunk_etc_dir, 'modinput_test_app'), 0666) + os.makedirs(sample_path, 0o777) + copyfile(os.path.join(base_dir, 'tests', 'large', 'sample', 'film.json'), os.path.join(sample_path, 'film.json')) + + from modinput_eventgen import Eventgen + + # input xml stream used to start modular input + input_stream_path = os.path.join(base_dir, 'tests', 'large', 'splunk', 'input.xml') + mocker.patch('sys.argv', ['', '--infile', input_stream_path]) + worker = Eventgen() + worker.execute() + + # capture the generated events from std out + captured = capsys.readouterr() + assert "" in captured.out + assert "" in captured.out + assert "" in captured.out + + # remove above created simulated app folder + rmtree(os.path.join(simulated_splunk_etc_dir, 'modinput_test_app')) + From 15988e12cb69f238ef1a09de89196063091cf2a6 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 2 May 2019 10:48:21 -0700 Subject: [PATCH 31/68] Issue 159 (#186) * Fixed timer and token * Added a conditional for end=-1 * Added timeMultiple logic * Time Multiple Fix --- docs/CONFIGURE.md | 4 +--- docs/REFERENCE.md | 5 ++--- docs/TUTORIAL.md | 9 +++++++++ splunk_eventgen/lib/eventgentimer.py | 2 +- splunk_eventgen/lib/plugins/generator/replay.py | 4 ++-- tests/large/test_mode_replay.py | 2 -- 6 files changed, 15 insertions(+), 11 deletions(-) diff --git a/docs/CONFIGURE.md b/docs/CONFIGURE.md index 34c666a2..af878a01 100644 --- a/docs/CONFIGURE.md +++ b/docs/CONFIGURE.md @@ -238,9 +238,7 @@ The following options are only valid for the default Eventgen generator plugin. timeMultiple = * Only valid in mode = replay - * Will slow down the replay of events by factor. For example, allows a 10 minute sample - to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. - By the converse, make timeMultiple 0.5 will make the events run twice as fast. + * Will slow down the replay of events by factor. This is achieved by calculating the interval between events and adjusting the interval by the timeMultiple factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. NOTE that the interval timeMultiple is adjusting is actual time interval between events in your sample file. "timeMultiple" option should not affect your "interval" option. --- timeField = * Only valid in mode = replay diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 92e10a3f..8df27d18 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -295,9 +295,8 @@ autotimestamp = * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. timeMultiple = - * Will slow down the replay of events by factor. For example, allows a 10 minute sample - to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. - By the converse, make timeMultiple 0.5 will make the events run twice as fast. + * Only valid in mode = replay + * Will slow down the replay of events by factor. This is achieved by calculating the interval between events and adjusting the interval by the timeMultiple factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. NOTE that the interval timeMultiple is adjusting is actual time interval between events in your sample file. "timeMultiple" option should not affect your "interval" option. timeField = * Only valid in mode = replay diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md index ab84dc17..75499fac 100644 --- a/docs/TUTORIAL.md +++ b/docs/TUTORIAL.md @@ -44,6 +44,15 @@ Specify that the input file is in CSV format, rather than a plain text file. Wit timeMultiple = 2 ``` This will slow down the replay by a factor of 2 by multiplying all time intervals between events by 2. +For example, let's assume that you have 3 events generated like below: +12:05:04 helloworld +12:05:06 helloworld2 +12:05:09 helloworld3 + +Applying timeMultiple=2 would instead generate 3 events like below: +12:05:04 helloworld +12:05:08 helloworld2 +12:05:14 helloworld3 ``` backfill = -15m diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 364b9686..1c781563 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -53,7 +53,7 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.logger.error("Invalid setting for timeMultiple: {}, value should be positive".format( self.sample.timeMultiple)) elif self.sample.timeMultiple != 1: - self.interval = self.sample.interval * self.sample.timeMultiple + self.interval = self.sample.interval self.logger.debug("Adjusting interval {} with timeMultiple {}, new interval: {}".format( self.sample.interval, self.sample.timeMultiple, self.interval)) self.logger.info( diff --git a/splunk_eventgen/lib/plugins/generator/replay.py b/splunk_eventgen/lib/plugins/generator/replay.py index 5f1a6900..822c7c32 100644 --- a/splunk_eventgen/lib/plugins/generator/replay.py +++ b/splunk_eventgen/lib/plugins/generator/replay.py @@ -114,11 +114,11 @@ def gen(self, count, earliest, latest, samplename=None): continue # Refer to the last event to calculate the new backfill time - time_difference = current_event_timestamp - previous_event_timestamp + time_difference = datetime.timedelta(seconds=(current_event_timestamp - previous_event_timestamp) .total_seconds() * self._sample.timeMultiple) if self.backfill_time + time_difference >= self.current_time: sleep_time = time_difference - (self.current_time - self.backfill_time) - if self._sample.backfill and not self._sample.backfilldone: + if not self._sample.backfill or self._sample.backfilldone: time.sleep(sleep_time.seconds) self.current_time += sleep_time self.backfill_time = self.current_time diff --git a/tests/large/test_mode_replay.py b/tests/large/test_mode_replay.py index b58c8f51..f6c2cba4 100644 --- a/tests/large/test_mode_replay.py +++ b/tests/large/test_mode_replay.py @@ -38,7 +38,6 @@ def test_mode_replay_backfill(eventgen_test_helper): assert len(events) == 24 -@pytest.mark.skip(reason="this issue is not fixed") def test_mode_replay_timemultiple(eventgen_test_helper): """Test normal replay mode with timeMultiple = 0.5 which will replay the sample with half time interval""" current_datetime = datetime.now() @@ -53,7 +52,6 @@ def test_mode_replay_timemultiple(eventgen_test_helper): # assert the event time is after (now - earliest) time assert delter_seconds < 11 - def test_mode_replay_csv(eventgen_test_helper): """Test normal replay mode with sampletype = csv which will get _raw row from the sample""" events = eventgen_test_helper('eventgen_replay_csv.conf').get_events() From 999cd600fc2b6430e2517688ec9940429fce850a Mon Sep 17 00:00:00 2001 From: Li Wu Date: Sun, 5 May 2019 07:31:25 +0800 Subject: [PATCH 32/68] Add default pull request reviewers (#190) --- .github/CODEOWNERS | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..ee08bd27 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +@lephino +@arctan5x +@jmeixensperger +@GordonWang +@li-wu From be2a2ce72a3dbe0031bf01cf996a0e8f91a2bc26 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Sun, 5 May 2019 09:29:25 +0800 Subject: [PATCH 33/68] Default to -1 (#189) --- splunk_eventgen/lib/eventgentimer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 1c781563..92a690fd 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -32,7 +32,7 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.profiler = config.profiler self.config = config self.sample = sample - self.end = getattr(self.sample, "end", None) + self.end = getattr(self.sample, "end") if getattr(self.sample, "end") is not None else -1 self.endts = getattr(self.sample, "endts", None) self.generatorQueue = genqueue self.outputQueue = outputqueue From f8c6ffedca1550180a3b7a58c8c1070bf62cf505 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Sat, 4 May 2019 20:17:46 -0700 Subject: [PATCH 34/68] Changed verbose -> verbosity (#191) --- docs/REFERENCE.md | 2 +- splunk_eventgen/default/eventgen.conf | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 8df27d18..26f69235 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -25,7 +25,7 @@ [global] disabled = false debug = false -verbose = false +verbosity = false spoolDir = $SPLUNK_HOME/var/spool/splunk spoolFile = breaker = [^\r\n\s]+ diff --git a/splunk_eventgen/default/eventgen.conf b/splunk_eventgen/default/eventgen.conf index 1d035f27..d3cb85c5 100644 --- a/splunk_eventgen/default/eventgen.conf +++ b/splunk_eventgen/default/eventgen.conf @@ -13,7 +13,7 @@ [global] disabled = false debug = false -verbose = false +verbosity = false spoolDir = $SPLUNK_HOME/var/spool/splunk spoolFile = breaker = [^\r\n\s]+ @@ -23,12 +23,8 @@ interval = 60 delay = 0 timeMultiple = 1 count = -1 -## earliest/latest = now means timestamp replacements default to current time earliest = now latest = now -#hourOfDayRate = { "0": 0.30, "1": 0.10, "2": 0.05, "3": 0.10, "4": 0.15, "5": 0.25, "6": 0.35, "7": 0.50, "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82, "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70, "22": 0.60, "23": 0.45 } -#dayOfWeekRate = { "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 } -#randomizeCount = 0.2 randomizeEvents = false outputMode = modinput fileMaxBytes = 10485760 From 7c56c74da98a8560033391efd4490a6690d1e49b Mon Sep 17 00:00:00 2001 From: huntershen Date: Tue, 7 May 2019 13:27:39 +0800 Subject: [PATCH 35/68] Update README.md (#195) Like other Splunk products - Splunk Enterprise Security, Splunk Business Workflow ... - Splunk Event Generator does not need a definitive article "The" before the product name. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 36080834..d68a6bb8 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@ -# The Splunk Event Generator +# Splunk Event Generator (Eventgen) ### Status [![CircleCI](https://circleci.com/gh/splunk/eventgen/tree/develop.svg?style=svg)](https://circleci.com/gh/splunk/eventgen/tree/develop) -### Intro +### Introduction -The Splunk Event Generator is a utility which allows its user to easily build real-time event generators. +Splunk Event Generator is a utility that helps users easily build real-time event generators. The current maintainers of this project are Brian Bingham (bbingham@splunk.com), Tony Lee (tonyl@splunk.com), and Jack Meixensperger (jackm@splunk.com). The goals of this project: -* Eliminate the need for hand coded event generators in Splunk apps +* Eliminate the need for hand-coded event generators in Splunk apps * Allow for portability of event generators between applications and allow templates to be quickly adapted between use cases -* Allow every type of event or transaction to be modeled inside Eventgen +* Allow every type of events or transactions to be modeled inside Eventgen ### Downloading a Splunk Eventgen App @@ -28,9 +28,9 @@ Please note [CONTRIBUTING.md](CONTRIBUTING.md). ### License -The Splunk Event Generator is licensed under the Apache License 2.0. Details can be found in the [LICENSE](LICENSE) file. +Splunk Event Generator is licensed under the Apache License 2.0. Details can be found in the [LICENSE](LICENSE) file. ### Support This software is released as-is. Splunk provides no warranty and no support on this software. -If you have any issues with the software, please read over the [guidelines](http://splunk.github.io/eventgen/FILE_ISSUES.md) and file an issue. \ No newline at end of file +If you have any issues with the software, please read over the [guidelines](http://splunk.github.io/eventgen/FILE_ISSUES.md) and file an issue. From 10b3e41d0eb4d5d8909d96ecb66f958819a514fe Mon Sep 17 00:00:00 2001 From: Li Wu Date: Wed, 8 May 2019 09:24:26 +0800 Subject: [PATCH 36/68] update doc for friendly reading and add backward capability section. (#193) --- docs/BASICS.md | 5 + docs/CHANGELOG.md | 11 +- docs/CONFIGURE.md | 2 +- docs/REFERENCE.md | 403 +++++++++++++++++++++++++++------------------- 4 files changed, 257 insertions(+), 164 deletions(-) diff --git a/docs/BASICS.md b/docs/BASICS.md index b02b1cc3..ff72f8b9 100644 --- a/docs/BASICS.md +++ b/docs/BASICS.md @@ -261,6 +261,11 @@ Make sure the bundle app permission is global. You can config this in two ways: export=system ``` +## Backward Capability +If you are using Eventgen 5.x or even older versions, the `eventgen.conf` setting should be working in the latest Eventgen 6.x. If any thing broken, do not hesitate to open an issue on [GitHub](https://github.com/splunk/eventgen/issues/new/choose). + ## Wrapping up We hope the tutorial covers most use cases you would need. If you have something you're struggling to model, please reach out to Tony Lee (tonyl@splunk.com). We believe we can cover just about anything you'd want to model with this Eventgen, but if not, we're happy to add features to the software so that everyone can benefit! + + diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fc97f715..c3176d55 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,12 @@ +6.3.5 +- Added extendIndexes feature to support a list of indexes +- Fixed timer and token logic +- Changed end=-1 to continuously iterate without stopping +- Changed end=0 to not execute +- Added a linter for code quality +- Updated docs / docs format +- Added a suite of functional tests + 6.3.4: - Documentation cleanup - Jinja template bugfix in app @@ -44,4 +53,4 @@ - Fixing SA-Eventgen app settings - Supporting Eventgen 5 backward compatibility with additional features - Better modinput process management -- Minor Bugfixes with various customer cases \ No newline at end of file +- Minor Bugfixes with various customer cases diff --git a/docs/CONFIGURE.md b/docs/CONFIGURE.md index af878a01..ead6ca50 100644 --- a/docs/CONFIGURE.md +++ b/docs/CONFIGURE.md @@ -278,7 +278,7 @@ The following options are only valid for the default Eventgen generator plugin. * If breaker does not match in sample, one iteration of sample will be generated. * Defaults to [^\r\n\s]+ -####### Token Settings +###### Token Settings Tokens in the default generator can override the sample to allow dynamic content to be generated. token..token = diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 26f69235..0f089c84 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -3,19 +3,18 @@ ``` # Copyright (C) 2005-2019 Splunk Inc. All Rights Reserved. # -# This file contains all possible options for an eventgen.conf file. Use this file to configure -# Splunk's event generation properties. +# This file contains all possible options for an eventgen.conf file. +# Use this file to configure Splunk's event generation properties. # -# To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. -# For examples, see eventgen.conf.example. You must restart Splunk to enable configurations. +# To generate events place an eventgen.conf in $SPLUNK_HOME/etc/apps//local/. +# For example, see eventgen.conf.example. You must restart Splunk to enable configurations. # -# To learn more about configuration files (including precedence) please see the documentation +# To learn more about configuration files (including precedence) please see the documentation # located at http://www.splunk.com/base/Documentation/latest/Admin/Aboutconfigurationfiles # # CAUTION: You can drastically affect your Splunk installation by changing these settings. -# Consult technical support (http://www.splunk.com/page/submit_issue) if you are not sure how -# to configure this file. -# +# Consult technical support (http://www.splunk.com/page/submit_issue) if you are +# not sure how to configure this file. ## IMPORTANT! Do not specify any settings under a default stanza ## The layering system will not behave appropriately @@ -35,12 +34,8 @@ interval = 60 delay = 0 timeMultiple = 1 count = -1 -## earliest/latest = now means timestamp replacements default to current time earliest = now latest = now -# hourOfDayRate = { "0": 0.30, "1": 0.10, "2": 0.05, "3": 0.10, "4": 0.15, "5": 0.25, "6": 0.35, "7": 0.50, "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82, "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70, "22": 0.60, "23": 0.45 } -# dayOfWeekRate = { "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 } -# minuteOfHourRate = { "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 1, "36": 1, "37": 1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1, "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1, "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 } randomizeCount = 0.2 randomizeEvents = false outputMode = spool @@ -85,8 +80,9 @@ outputCounter = false * rated -> float[:] * file -> * mvfile -> : - * seqfile -> OR : - + * seqfile -> OR : + disabled = true | false * Like what it looks like. Will disable event generation for this sample. @@ -94,7 +90,8 @@ sampleDir = * Set a different directory to look for samples in threading = thread | process - * Configurable threading model. Process uses multiprocessing.Process in Python to get around issues with the GIL. + * Configurable threading model. + * Process uses multiprocessing. Process in Python to get around issues with the GIL. * Defaults to thread profiler = true | false @@ -102,9 +99,12 @@ profiler = true | false * Defaults to false useOutputQueue = true | false - * Disable the use of the output Queue. The output queue functions as a reduce step when you need to maintain a single thread or a limited number of threads outputting data, for instance if you're outputting to a file or to stdout/modular input. + * Disable the use of the output Queue. + * The output queue functions as a reduce step when you need to maintain + a single thread or a limited number of threads outputting data, + for instance if you're outputting to a file or to stdout/modular input. * Default value depends on the output plugin being used. - + ############################# ## OUTPUT RELATED SETTINGS ## ############################# @@ -118,7 +118,8 @@ outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | h * Specifies how to output log data. Modinput is default. * If setting spool, should set spoolDir * If setting file, should set fileName - * If setting splunkstream, should set splunkHost, splunkPort, splunkMethod, splunkUser and splunkPassword if not Splunk embedded + * If setting splunkstream, should set splunkHost, splunkPort, splunkMethod, + splunkUser and splunkPassword if not Splunk embedded * If setting s2s, should set splunkHost and splunkPort * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort * If setting httpevent, should set httpeventServers @@ -148,131 +149,149 @@ httpeventServers = * {"servers":[{ "protocol":"https", "address":"127.0.0.1", "port":"8088", "key":"12345-12345-123123123123123123"}]} httpeventOutputMode = roundrobin | mirror - * in roundrobin mode, the HEC/Battlecat plugin will output to a random server out of the server pool - * in mirror moded, HEC/Battlecat plugin will mirror the event to every server specified in the server pool + * in roundrobin mode, the HEC/Battlecat plugin will output to + a random server out of the server pool + * in mirror moded, HEC/Battlecat plugin will mirror the event to + every server specified in the server pool httpeventMaxPayloadSize = * the max payload size that is currently configured for HTTP event httpeventWaitResponse = - * wait for all responses on a generator output before returning the outputter. Defaults to true. + * wait for all responses on a generator output before returning the outputter. + * Defaults to true. spoolDir = * Spool directory is the generated files destination directory. * Only valid in spool outputMode. - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\var\\spool\\splunk). + * Windows separators should contain double forward slashes '\\'. + (i.e. $SPLUNK_HOME\\var\\spool\\splunk) * Unix separators will work on Windows and vice-versa. * Defaults to $SPLUNK_HOME/var/spool/splunk - + spoolFile = * Spool file is the generated files name. * Not valid if stanza is a pattern. * Defaults to (sample file name). - + fileName = * Should set the full path - * Uses a rotating file handler which will rotate the file at a certain size, by default 10 megs - and will by default only save 5 files. See fileMaxBytes and fileBackupFiles - + * Uses a rotating file handler which will rotate the file at a certain size, + by default 10 megs and will by default only save 5 files. + See fileMaxBytes and fileBackupFiles + fileMaxBytes = * Will rotate a file output at this given size * Defaults to 10 Megabytes (10485760 bytes) - + fileBackupFiles = * Will keep this number of files (.1, .2, etc) after rotation * Defaults to 5 - + splunkHost = | - * If you specify just one host, will only POST to that host, if you specify a JSON list, - it will POST to multiple hosts in a random distribution. This allows us from one eventgen to - feed an entire cluster of Splunk indexers without needing forwarders. + * If you specify just one host, will only POST to that host. + If you specify a JSON list, it will POST to multiple hosts in a random distribution. + This allows us from one eventgen to feed an entire cluster of Splunk indexers without + needing forwarders. * JSON list should look like [ "host.name", "host2.name" ] - + splunkPort = * Defaults to the default Splunk management port 8089 splunkMethod = http | https * Defaults to https - + splunkUser = * User with rights to post to REST endpoint receivers/stream - + splunkPass = * Password for SplunkUser - + projectID = * Project ID for Splunk Storm - + accessToken = * Access Token for Splunk Storm - + index = * ONLY VALID WITH outputMode SPLUNKSTREAM * Splunk index to write events to. Defaults to main if none specified. extendIndexes = :,, - * Sample level setting. Use this setting enable eventgen to generate multi indexes for one sample. - * if you set the value with pattern like ":", it will treat as a prefix of an actual index, - * and is an integer that indicate the count of index you want to extend for this sample. - * eg: events from a sample with "extendIndexes = test_:5, main, web" setting will be added with indexes "test_0, test_1, - * test_2, test_3, test_4, main, web" randomly. - + * Sample level setting. + Use this setting enable eventgen to generate multi indexes for one sample. + * If you set the value with pattern like ":", + it will treat as a prefix of an actual index, + * is an integer that indicates the count of index you want to extend + for this sample. eg: events from a sample with "extendIndexes = test_:5, main, web" + setting will be added with indexes "test_0, test_1, test_2, test_3, test_4, main, web" + randomly. + source = - * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent + * Valid with the following outputMode: + outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent * Set event source in Splunk to . Defaults to 'eventgen' if none specified. - + sourcetype = - * Valid with outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent - * Set event sourcetype in Splunk to Defaults to 'eventgen' if none specified. - + * Valid with the following outputMode: + outputMode=modinput (default) & outputMode=splunkstream & outputMode=httpevent + * Set event sourcetype in Splunk to . Defaults to 'eventgen' if none specified. + host = * ONLY VALID WITH outputMode SPLUNKSTREAM * Set event host in Splunk to . Defaults to 127.0.0.1 if none specified. - + hostRegex = * ONLY VALID WITH outputMode SPLUNKSTREAM - * Allows setting the event host via a regex from the actual event itself. Only used if host not set. - + * Allows setting the event host via a regex from the actual event itself. + * Only used if host not set. + maxIntervalsBeforeFlush = - * Number of intervals before flushing the queue if the queue hasn't filled to maxQueueLength + * Number of intervals before flushing the queue if the queue hasn't + filled to maxQueueLength * Defaults to 3 maxQueueLength = * Number of items before flushing the output queue - * Default is per outputMode specific + * Default is per outputMode specific outputCounter = true | false - * Default is false. Use outputCounter to record your output rate so that you can get the total volume, - * total count and real-time throughput of outputer from "status" api. This setting may - * cause 1.8% performance down. Only work on thread mode. - + * Default is false. + * Use outputCounter to record your output rate so that you can get the total volume, + total count and real-time throughput of outputer from "status" api. + * This setting may cause 1.8% performance down. Only work on thread mode. + ############################### ## EVENT GENERATION SETTINGS ## ############################### generator = default | - * Specifies the generator plugin to use. Default generator will give behavior of eventgen pre-3.0 - which exclusively uses settings in eventgen.conf to control behavior. Generators in 3.0 are now - pluggable python modules which can be custom code. + * Specifies the generator plugin to use. Default generator will give behavior + of eventgen pre-3.0 which exclusively uses settings in eventgen.conf + to control behavior. Generators in 3.0 are now pluggable python modules + which can be custom code. generatorWorkers = * Specifies how many threads or processes to stand up to handle generation * Defaults to 1 rater = config | - * Specifies which rater plugin to use. Default rater uses hourOfDayRate, etc, settings to specify - how to affect the count of events being generated. Raters in 3.0 are now pluggable python modules. + * Specifies which rater plugin to use. + Default rater uses hourOfDayRate, etc, settings to specify how to affect + the count of events being generated. Raters in 3.0 are now pluggable python modules. mode = sample | replay - * Default is sample, which will generate count (+/- rating) events every configured interval - * Replay will instead read the file and leak out events, replacing timestamps, + * Default is sample, which will generate count (+/- rating) events + every configured interval + * Replay will instead read the file and leak out events, replacing timestamps sampletype = raw | csv * Raw are raw events (default) * CSV are from an outputcsv or export from Splunk. - CSV allows you to override output fields for the sample like host, index, source and sourcetype - from the CSV file. Will read the raw events from a field called _raw. Assumes the CSV file has - a header row which defines field names. + CSV allows you to override output fields for the sample like + host, index, source and sourcetype from the CSV file. Will read the raw events + from a field called _raw. Assumes the CSV file has a header row which + defines field names. OVERRIDES FOR DEFAULT FIELDS WILL ONLY WORK WITH outputMode SPLUNKSTREAM. interval = @@ -280,28 +299,38 @@ interval = * How often to generate sample (in seconds). * 0 means disabled. * Defaults to 60 seconds. - + delay = * Specifies how long to wait until we begin generating events for this sample - * Primarily this is used so we can stagger sets of samples which similar but slightly different data + * Primarily this is used so we can stagger sets of samples which similar + but slightly different data * Defaults to 0 which is disabled. - + sequentialTimestamp = * Only valid on count mode. (perDayVolume mode is not work) - * Timestamp will be set from your "earliest" time to "latest" time sequentiallly. For example, if "earliest=-1d", "latest=now" and - "count=86400", then you can see all events have different timestamp. - + * Timestamp will be set from your "earliest" time to "latest" time sequentiallly. + For example, if "earliest=-1d", "latest=now" and "count=86400", + then you can see all events have different timestamp. + autotimestamp = - * Will enable autotimestamp feature which detects most common forms of timestamps in your samples with no configuration. + * Will enable autotimestamp feature which detects most common forms of timestamps + in your samples with no configuration. timeMultiple = * Only valid in mode = replay - * Will slow down the replay of events by factor. This is achieved by calculating the interval between events and adjusting the interval by the timeMultiple factor. For example, allows a 10 minute sample to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events run twice as fast. NOTE that the interval timeMultiple is adjusting is actual time interval between events in your sample file. "timeMultiple" option should not affect your "interval" option. + * Will slow down the replay of events by factor. + This is achieved by calculating the interval between events and adjusting + the interval by the timeMultiple factor. For example, allows a 10 minute sample + to play out over 20 minutes with a timeMultiple of 2, or 60 minutes with a + timeMultiple of 6. By the converse, make timeMultiple 0.5 will make the events + run twice as fast. NOTE that the interval timeMultiple is adjusting is actual + time interval between events in your sample file. "timeMultiple" option should not + affect your "interval" option. timeField = * Only valid in mode = replay - * Will select the field to find the timestamp in. In many cases, time will come from a different - field in the CSV. + * Will select the field to find the timestamp in. In many cases, time will come + from a different field in the CSV. timezone = local | * If set to 'local', will output local time, if set to '0000' will output UTC time @@ -309,97 +338,108 @@ timezone = local | US Eastern Standard (EST) would be: timezone = -0500 US Pacific Daylight (PDT) would be: timezone = -0700 Indian Standard would be timezone = +0530 - * Valid range +2359 to -2359 (The last two digits are MINUTES, so they should be within 0-59) + * Valid range +2359 to -2359 + (The last two digits are MINUTES, so they should be within 0-59) backfill = * Specified in Splunk's relative time language, used to set a time to backfill events end = | * Will end execution on a specific time or a number of events - * Can be used to execute only a specified number of intervals or with backfill to generate events over a specific time window. + * Can be used to execute only a specified number of intervals or with + backfill to generate events over a specific time window. backfillSearch = - * If outputMode = splunkstream, this will run this search, appending '| head 1', and narrow the - backfill range specified with backfill to when the search has last seen events. + * If outputMode = splunkstream, this will run this search, + appending '| head 1', and narrow the backfill range specified with + backfill to when the search has last seen events. backfillSearchUrl = - * Defaults to splunkMethod://splunkHost:splunkPort/, can override in case you're running - in a cluster. - + * Defaults to splunkMethod://splunkHost:splunkPort/, can override in case + you're running in a cluster. + count = * Maximum number of events to generate per sample file (only used with sample mode). * -1 means replay the entire sample. * Defaults to -1. - * When count is -1 and the default generator is used, count depends on the size of the sample. + * When count is -1 and the default generator is used, + count depends on the size of the sample. perDayVolume = - * This is used in place of count. The perDayVolume is a size supplied in GB per Day. This value will allow - * eventgen to supply a target datavolume instead of a count for event generation. + * This is used in place of count. The perDayVolume is a size supplied in GB per Day. + This value will allow eventgen to supply a target datavolume instead of + a count for event generation. * Defaults to Null bundlelines = true | false - * For outside use cases where you need to take all the lines in a sample file and pretend they are - one event. - Also, please note you can also use breaker=\r*\n\r*\n to break the sample file into multi-line - transactions that would work better than this as well. This is also useful where you want to bring - in sampletype = csv and bundle that multiple times. - * If bundlelines = true and the token replacementType is replaytimestamp, we will introduce some randomness - into the times between items in the transaction in microseconds. + * For outside use cases where you need to take all the lines in a sample file + and pretend they are one event. Also, please note you can also use + breaker=\r*\n\r*\n to break the sample file into multi-line transactions + that would work better than this as well. This is also useful where you + want to bring in sampletype = csv and bundle that multiple times. + * If bundlelines = true and the token replacementType is replaytimestamp, + we will introduce some randomness into the times between items in the + transaction in microseconds. * Will override any breaker setting. - + hourOfDayRate = - * Takes a JSON hash of 24 hours with float values to rate limit how many events we should see - in a given hour. + * Takes a JSON hash of 24 hours with float values to rate limit how many + events we should see in a given hour. * Sample JSON: { "0": 0.05, "1": 0.05: "2": 0.07... } - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, minuteOfHourRate, dayOfMonthRate, monthOfYearRate + * If a match is not found, will default to count events. + * Also multiplied times dayOfWeekRate, minuteOfHourRate, dayOfMonthRate, + monthOfYearRate. dayOfWeekRate = * Takes a JSON hash of 7 days of the week in Splunk format (0 is Sunday) * Sample JSON: { "0": 0.55, "1": 0.97, "2": 0.95, "3": 0.90, "4": 0.97, "5": 1.0, "6": 0.99 } - * If a match is not found, will default to count events - * Also multiplied times hourOfDayRate, minuteOfHourRate, dayOfMonthRate, monthOfYearRate + * If a match is not found, will default to count events. + * Also multiplied times hourOfDayRate, minuteOfHourRate, dayOfMonthRate, + monthOfYearRate. minuteOfHourRate = * Takes a JSON hash of 60 minutes of an hour, starting with 0 * Sample JSON: { "0": 1, "1": 1...} - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, dayOfMonthRate, monthOfYearRate + * If a match is not found, will default to count events. + * Also multiplied times dayOfWeekRate, hourOfDateRate, dayOfMonthRate, + monthOfYearRate. dayOfMonthRate = * Takes a JSON hash of 31 days of the month, starting with 1 * Sample JSON: { "1": 1, "1": 1...} - * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, monthOfYearRate + * If a match is not found, will default to count events. + * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, + monthOfYearRate. monthOfYearRate = * Takes a JSON hash of 12 months of a year, starting with 1 * Sample JSON: { "1": 1, "2": 1...} * If a match is not found, will default to count events - * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, dayOfMonthRate - + * Also multiplied times dayOfWeekRate, hourOfDateRate, minuteOfHourRate, + dayOfMonthRate. + randomizeCount = * Will randomize the number of events generated by percentage passed * Example values: 0.2, 0.5 * Recommend passing 0.2 to give 20% randomization either way (plus or minus) - + randomizeEvents = * Will randomize the events found in the sample file before choosing the events. * NOT SUPPORTED WITH sampletype csv * NOT SUPPORTED WITH mode = replay OR custom generators like generator = replay - + breaker = - * NOT to be confused w/ props.conf LINE_BREAKER. + * NOT to be confused with props.conf LINE_BREAKER. * PCRE used for flow control. * If count > 0; data will be generated until number of discovered breakers <= "count". * If breaker does not match in sample, one iteration of sample will be generated. * Defaults to [^\r\n\s]+ - + earliest = * Specifies the earliest random time for generated events. * If this value is an absolute time, use the dispatch.time_format to format the value. @@ -415,71 +455,100 @@ latest = ############################# jinja_template_dir = - * directory name inside the current eventgen.conf dir where jinja templates can be located. + * directory name inside the current eventgen.conf dir where + jinja templates can be located. * default template directory is /samples/templates if not defined. jinja_target_template = * root template to load for all sample generation. jinja_variables = - * json value that contains a dict of kv pairs to pass as options to load inside of the jinja templating engine. + * json value that contains a dict of kv pairs to pass as options to + load inside of the jinja templating engine. ################################ ## TOKEN REPLACEMENT SETTINGS ## ################################ - + token..token = * 'n' is a number starting at 0, and increasing by 1. * PCRE expression used to identify segment for replacement. - * If one or more capture groups are present the replacement will be performed on group 1. + * If one or more capture groups are present the replacement + will be performed on group 1. * Defaults to None. - + token..replacementType = static | timestamp | replaytimestamp | random | rated | file | mvfile | integerid - * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. - * For static, the token will be replaced with the value specified in the replacement setting. - * For timestamp, the token will be replaced with the strptime specified in the replacement setting - * For replaytimestamp, the token will be replaced with the strptime specified in the replacement setting - but the time will not be based on earliest and latest, but will instead be replaced by looking at the - offset of the timestamp in the current event versus the first event, and then adding that time difference - to the timestamp when we started processing the sample. This allows for replaying events with a - new timestamp but to look much like the original transaction. Assumes replacement value is the same - strptime format as the original token we're replacing, otherwise it will fail. First timestamp will - be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. Replay mode replays a whole file - with timing to look like the original file. This will allow a single transaction to be replayed with some randomness. - * For random, the token will be replaced with a type aware value (i.e. valid IPv4 Address). - * For rated, the token will be replaced with a subset of random types (float, integer), which are - rated by hourOfDayRate and dayOfWeekRate. - * For file, the token will be replaced with a random value retrieved from a file specified in the replacement setting. - * For mvfile, the token will be replaced with a random value of a column retrieved from a file specified in the replacement setting. Multiple files can reference the same source file and receive different columns from the same random line. + * 'n' is a number starting at 0, and increasing by 1. + Stop looking at the filter when 'n' breaks. + * For static, the token will be replaced with the value specified + in the replacement setting. + * For timestamp, the token will be replaced with the strptime specified + in the replacement setting. Strptime directive: + https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior + Note `%z` only matches against GMT, UTC and `time.tzname`: + https://bugs.python.org/issue22377. + * For replaytimestamp, the token will be replaced with the strptime specified + in the replacement setting but the time will not be based on earliest and latest, + but will instead be replaced by looking at the offset of the timestamp in the + current event versus the first event, and then adding that time difference + to the timestamp when we started processing the sample. + This allows for replaying events with a new timestamp but to look much like + the original transaction. Assumes replacement value is the same strptime format + as the original token we're replacing, otherwise it will fail. First timestamp will + be the value of earliest. NOT TO BE CONFUSED WITH REPLAY MODE. + Replay mode replays a whole file with timing to look like the original file. + This will allow a single transaction to be replayed with some randomness. + * For random, the token will be replaced with a type aware value + (i.e. valid IPv4 Address). + * For rated, the token will be replaced with a subset of random types + (float, integer), which are rated by hourOfDayRate and dayOfWeekRate. + * For file, the token will be replaced with a random value retrieved from a + file specified in the replacement setting. + * For mvfile, the token will be replaced with a random value of a column + retrieved from a file specified in the replacement setting. + Multiple files can reference the same source file and receive different + columns from the same random line. * For integerid, will use an incrementing integer as the replacement. * Defaults to None. - + token..replacement = | | ["list","of","strptime"] | guid | ipv4 | ipv6 | mac | integer[:] | float[:] | string() | hex() | list["list", "of", "values"] | | : | - * 'n' is a number starting at 0, and increasing by 1. Stop looking at the filter when 'n' breaks. + * 'n' is a number starting at 0, and increasing by 1. + Stop looking at the filter when 'n' breaks. * For , the token will be replaced with the value specified. * For , a strptime formatted string to replace the timestamp with - * For ["list","of","strptime"], only used with replaytimestamp, a JSON formatted list of strptime - formats to try. Will find the replace with the same format which matches the replayed timestamp. + * For ["list","of","strptime"], only used with replaytimestamp, + a JSON formatted list of strptime formats to try. + Will find the replace with the same format which matches the replayed timestamp. * For guid, the token will be replaced with a random GUID value. - * For ipv4, the token will be replaced with a random valid IPv4 Address (i.e. 10.10.200.1). - * For ipv6, the token will be replaced with a random valid IPv6 Address (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). - * For mac, the token will be replaced with a random valid MAC Address (i.e. 6e:0c:51:c6:c6:3a). - * For integer[:], the token will be replaced with a random integer between - start and end values where is a number greater than 0 - and is a number greater than 0 and greater than or equal to . If rated, - will be multiplied times hourOfDayRate and dayOfWeekRate. + * For ipv4, the token will be replaced with a random valid IPv4 Address + (i.e. 10.10.200.1). + * For ipv6, the token will be replaced with a random valid IPv6 Address + (i.e. c436:4a57:5dea:1035:7194:eebb:a210:6361). + * For mac, the token will be replaced with a random valid MAC Address + (i.e. 6e:0c:51:c6:c6:3a). + * For integer[:], the token will be replaced with a random integer + between start and end values where is a number greater than 0 + and is a number greater than 0 and greater than or equal to . + If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. * For float[:], the token will be replaced with a random float between start and end values where is a number greater than 0 and is a number greater than 0 and greater than or equal to . For floating point numbers, precision will be based off the precision specified - in . For example, if we specify 1.0, precision will be one digit, if we specify - 1.0000, precision will be four digits. If rated, will be multiplied times hourOfDayRate and dayOfWeekRate. - * For string(), the token will be replaced with i number(s) of ASCII characters where 'i' is a number greater than 0. - * For hex(), the token will be replaced with i number of Hexadecimal characters [0-9A-F] where 'i' is a number greater than 0. + in . For example, if we specify 1.0, precision will be one digit, + if we specify 1.0000, precision will be four digits. If rated, + will be multiplied times hourOfDayRate and dayOfWeekRate. + * For string(), the token will be replaced with i number(s) of + ASCII characters where 'i' is a number greater than 0. + * For hex(), the token will be replaced with i number of + Hexadecimal characters [0-9A-F] where 'i' is a number greater than 0. * For list, the token will be replaced with a random member of the JSON list provided. - * For , the token will be replaced with a random line in the replacement file. - * Replacement file name should be a fully qualified path (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). + * For , the token will be replaced with a + random line in the replacement file. + * Replacement file name should be a fully qualified path + (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). + * Windows separators should contain double forward slashes '\\' + (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). * Unix separators will work on Windows and vice-versa. - * Column numbers in mvfile references are indexed at 1, meaning the first column is column 1, not 0. + * Column numbers in mvfile references are indexed at 1, + meaning the first column is column 1, not 0. * used as the seed for integerid. * Defaults to None. @@ -488,16 +557,22 @@ token..replacement = | | ["list","of","strptime"] | guid ################################ host.token = - * PCRE expression used to identify the host name (or partial name) for replacement. - * If one or more capture groups are present the replacement will be performed on group 1. + * PCRE expression used to identify the host name (or partial name) + for replacement. + * If one or more capture groups are present the replacement will + be performed on group 1. * Defaults to None. host.replacement = | : - * For , the token will be replaced with a random line in the replacement file. - * Replacement file name should be a fully qualified path (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). - * Windows separators should contain double forward slashes '\\' (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). + * For , the token will be replaced with + a random line in the replacement file. + * Replacement file name should be a fully qualified path + (i.e. $SPLUNK_HOME/etc/apps/windows/samples/users.list). + * Windows separators should contain double forward slashes '\\' + (i.e. $SPLUNK_HOME\\etc\\apps\\windows\\samples\\users.list). * Unix separators will work on Windows and vice-versa. - * Column numbers in mvfile references are indexed at 1, meaning the first column is column 1, not 0. + * Column numbers in mvfile references are indexed at 1, + meaning the first column is column 1, not 0. * Defaults to None. ``` @@ -586,13 +661,15 @@ Note, "TARGET_NAME" is a variable that should be replaced by the hostname of Eve * mgmt_port: 8089 * new_key: True * ```GET /volume``` - Returns the cumulative perDayVolume for the current configuration of Eventgen. If you have multiple samples with varying perDayVolume specifications, this will return the sum of all your samples. + Returns the cumulative perDayVolume for the current configuration of Eventgen. + If you have multiple samples with varying perDayVolume specifications, this will return the sum of all your samples. * Example: ``` $ curl http://localhost:9500/volume ``` * ```GET /volume/``` - Returns the cumulative perDayVolume for the current configuration of Eventgen for that particular node. If you have multiple samples with varying perDayVolume specifications, this will return the sum of all your samples. + Returns the cumulative perDayVolume for the current configuration of Eventgen for that particular node. + If you have multiple samples with varying perDayVolume specifications, this will return the sum of all your samples. * Example: ``` $ curl http://localhost:9500/volume/egx1 @@ -600,7 +677,8 @@ Note, "TARGET_NAME" is a variable that should be replaced by the hostname of Eve * ```POST /volume``` * body * perDayVolume={NUMBER} - * Pass in the desired cumulative perDayVolume you want to scale each Eventgen server's configuraton to. If you have multiple samples with varying perDayVolume specifications, the perDayVolume will scale each sample identically to meet this desired number. + * Pass in the desired cumulative perDayVolume you want to scale each Eventgen server's configuraton to. + * If you have multiple samples with varying perDayVolume specifications, the perDayVolume will scale each sample identically to meet this desired number. * Example: ``` $ curl http://localhost:9500/volume -X POST -d '{"perDayVolume": 200}' @@ -608,7 +686,8 @@ Note, "TARGET_NAME" is a variable that should be replaced by the hostname of Eve * ```POST /volume/``` * body * perDayVolume={NUMBER} - * Pass in the desired cumulative perDayVolume you want to scale each Eventgen server's configuraton to. If you have multiple samples with varying perDayVolume specifications, the perDayVolume will scale each sample identically to meet this desired number. + * Pass in the desired cumulative perDayVolume you want to scale each Eventgen server's configuraton to. + * If you have multiple samples with varying perDayVolume specifications, the perDayVolume will scale each sample identically to meet this desired number. * Example: ``` $ curl http://localhost:9500/volume/egx1 -X POST -d '{"perDayVolume": 200}' From 1d2df70bbe37d8c21918dd8d4185662c2e9db6d8 Mon Sep 17 00:00:00 2001 From: huntershen Date: Wed, 8 May 2019 09:40:22 +0800 Subject: [PATCH 37/68] Update index.md (#194) Update index.md --- docs/index.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index bc7893f8..1e4dfbfc 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,15 +1,14 @@ # What is Eventgen? -**The Splunk Event Generator is a utility which allows its users to easily build real-time event generators.** +Splunk Event Generator (Eventgen) is a utility that helps users easily build real-time event generators and eliminates the need for one-off, hard-coded event generators. **Eventgen features:** -* Eliminate the need for one-off, hand-coded event generators -* Allow every type of event or transaction to be modeled -* Allow users to quickly build robust configuration-based event generators without having to write code -* Ability to be executed inside of Splunk (relying on a comment event generation framework) as well as outside of Splunk -* Event output can easily be directed to a Splunk input (modular inputs, HEC, etc.), a text file, or any REST endpoint in an easily extendible way -* Easily configurable to make fake data look as real as possible, either by rating events and token replacements by time of the day or by allowing generators to replay real data replacing current time by generating data exactly at the same time =intervals as the original data -* For scenarios that cannot be built using simple token replacements, allow developers to more quickly build sophisticated event generators by simply writing a generator plugin module but re-using the rest of the framework +* Allows every type of events or transactions to be modeled +* Allows users to quickly build robust configuration-based event generators without having to write code +* Can be executed inside of Splunk (relying on a comment event generation framework) as well as outside of Splunk +* Event output can easily be directed to a Splunk input (modular inputs, HEC, etc.), a text file, or any REST endpoint in an extensible way +* Easily configurable to make fake data look as real as possible, either by ordering events and token replacements by time of the day or by allowing generators to replay real data replacing current time by generating data exactly at the same time =intervals as the original data +* For scenarios in which simple token replacements do not work, developers can quickly build sophisticated event generators by writing a generator plugin module while re-using the rest of the framework ## Table of Contents From 1d2ffb3daf9d7abdb422575945c613739bf4a6dd Mon Sep 17 00:00:00 2001 From: Guodong Wang Date: Wed, 8 May 2019 09:56:30 +0800 Subject: [PATCH 38/68] change the sampleDir setting in test cases (#196) --- .gitignore | 3 +++ tests/perf/eventgen.conf.test1 | 2 +- tests/perf/eventgen.conf.test2 | 2 +- tests/perf/eventgen.conf.test3 | 2 +- .../autotimestamp/eventgen.conf.autotimestamp | 2 +- .../backfill/eventgen.conf.backfillend | 2 +- .../backfill/eventgen.conf.backfillreplay | 4 ++-- .../backfill/eventgen.conf.backfillsample | 4 ++-- .../breakersample/eventgen.conf.breakersample | 4 ++-- .../breakersample/eventgen.conf.randombreakersample | 4 ++-- .../bundlelines/eventgen.conf.bundlelinescsv | 4 ++-- .../bundlelines/eventgen.conf.bundlelinesraw | 4 ++-- .../largerconfig/eventgen.conf.largerconfig | 10 +++++----- .../perdayvolume/eventgen.conf.perdayvolume | 2 +- .../perdayvolume/eventgen.conf.perdayvolumesinglerun | 2 +- .../sample_eventgen_conf/perf/eventgen.conf.perfsample | 2 +- .../perf/eventgen.conf.perfsampleweblog | 2 +- .../perf/eventgen.conf.perfsampleweblog-s2s | 2 +- .../replay/eventgen.conf.badtimestamp | 2 +- tests/sample_eventgen_conf/replay/eventgen.conf.replay | 2 +- .../replay/eventgen.conf.timeorder | 2 +- .../replaytimestamp/eventgen.conf.replaytimestamp | 2 +- .../sample/eventgen.conf.epochtime | 2 +- .../sample/eventgen.conf.fullsample | 4 ++-- .../sample/eventgen.conf.longsample | 2 +- .../sample/eventgen.conf.randomsample | 4 ++-- .../sample/eventgen.conf.shortsample | 4 ++-- tests/sample_eventgen_conf/unit/eventgen.conf.config | 2 +- 28 files changed, 43 insertions(+), 40 deletions(-) diff --git a/.gitignore b/.gitignore index d0e9c0ba..a6f42c60 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,6 @@ _book venv/* *.log.* splunk_eventgen-*/ +.env +.vscode + diff --git a/tests/perf/eventgen.conf.test1 b/tests/perf/eventgen.conf.test1 index cbe8059b..1101de10 100644 --- a/tests/perf/eventgen.conf.test1 +++ b/tests/perf/eventgen.conf.test1 @@ -1,5 +1,5 @@ [windbag] -sampleDir = splunk_eventgen/samples +sampleDir = ../../splunk_eventgen/samples generator = windbag outputMode = httpevent httpeventServers = {"servers":[{ "protocol":"https", "address":"", "port":"", "key":""}]} diff --git a/tests/perf/eventgen.conf.test2 b/tests/perf/eventgen.conf.test2 index 73ef241a..3ca2c468 100644 --- a/tests/perf/eventgen.conf.test2 +++ b/tests/perf/eventgen.conf.test2 @@ -1,5 +1,5 @@ [windbag] -sampleDir = splunk_eventgen/samples +sampleDir = ../../splunk_eventgen/samples outputMode = httpevent httpeventServers = {"servers":[{ "protocol":"https", "address":"", "port":"", "key":""}]} index = eg diff --git a/tests/perf/eventgen.conf.test3 b/tests/perf/eventgen.conf.test3 index ebbc9635..6ac424cc 100644 --- a/tests/perf/eventgen.conf.test3 +++ b/tests/perf/eventgen.conf.test3 @@ -1,5 +1,5 @@ [windbag-5-tokens] -sampleDir = tests/perf/samples +sampleDir = ./samples outputMode = httpevent httpeventServers = {"servers":[{ "protocol":"https", "address":"", "port":"", "key":""}]} index = eg diff --git a/tests/sample_eventgen_conf/autotimestamp/eventgen.conf.autotimestamp b/tests/sample_eventgen_conf/autotimestamp/eventgen.conf.autotimestamp index 1e87dd72..e1d799a7 100755 --- a/tests/sample_eventgen_conf/autotimestamp/eventgen.conf.autotimestamp +++ b/tests/sample_eventgen_conf/autotimestamp/eventgen.conf.autotimestamp @@ -1,5 +1,5 @@ [replay] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = ../replay mode = sample timeMultiple = 2 autotimestamp = true diff --git a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillend b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillend index c6f69385..bd5e4bae 100755 --- a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillend +++ b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillend @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = ../sample outputMode = stdout count = 10 earliest = now diff --git a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillreplay b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillreplay index c2d494ed..e4cd4adf 100755 --- a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillreplay +++ b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillreplay @@ -1,5 +1,5 @@ [replay] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = ../replay generator = replay timeMultiple = 2 backfill = -15m @@ -17,4 +17,4 @@ splunkPass = changeme token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillsample b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillsample index 740a296d..bd5e4bae 100644 --- a/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillsample +++ b/tests/sample_eventgen_conf/backfill/eventgen.conf.backfillsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = ../sample outputMode = stdout count = 10 earliest = now @@ -11,4 +11,4 @@ end = 3 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/breakersample/eventgen.conf.breakersample b/tests/sample_eventgen_conf/breakersample/eventgen.conf.breakersample index f6872eef..2fa7c103 100755 --- a/tests/sample_eventgen_conf/breakersample/eventgen.conf.breakersample +++ b/tests/sample_eventgen_conf/breakersample/eventgen.conf.breakersample @@ -1,5 +1,5 @@ [breakersample] -sampleDir = tests/sample_eventgen_conf/breakersample +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -10,4 +10,4 @@ end = 3 token.0.token = ^(\d{14})\.\d{6} token.0.replacementType = timestamp -token.0.replacement = %Y%m%d%H%M%S \ No newline at end of file +token.0.replacement = %Y%m%d%H%M%S diff --git a/tests/sample_eventgen_conf/breakersample/eventgen.conf.randombreakersample b/tests/sample_eventgen_conf/breakersample/eventgen.conf.randombreakersample index 702868e7..efd6d5cb 100755 --- a/tests/sample_eventgen_conf/breakersample/eventgen.conf.randombreakersample +++ b/tests/sample_eventgen_conf/breakersample/eventgen.conf.randombreakersample @@ -1,5 +1,5 @@ [breakersample] -sampleDir = tests/sample_eventgen_conf/breakersample +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -11,4 +11,4 @@ end = 3 token.0.token = ^(\d{14})\.\d{6} token.0.replacementType = timestamp -token.0.replacement = %Y%m%d%H%M%S \ No newline at end of file +token.0.replacement = %Y%m%d%H%M%S diff --git a/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinescsv b/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinescsv index 29541be0..c9330838 100755 --- a/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinescsv +++ b/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinescsv @@ -1,5 +1,5 @@ [csv] -sampleDir = tests/sample_eventgen_conf/bundlelines +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -11,4 +11,4 @@ end = 3 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinesraw b/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinesraw index 5bb7d1ea..f4e1af75 100755 --- a/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinesraw +++ b/tests/sample_eventgen_conf/bundlelines/eventgen.conf.bundlelinesraw @@ -1,5 +1,5 @@ [raw] -sampleDir = tests/sample_eventgen_conf/bundlelines +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -10,4 +10,4 @@ end = 3 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/largerconfig/eventgen.conf.largerconfig b/tests/sample_eventgen_conf/largerconfig/eventgen.conf.largerconfig index 2a706a45..452720d8 100644 --- a/tests/sample_eventgen_conf/largerconfig/eventgen.conf.largerconfig +++ b/tests/sample_eventgen_conf/largerconfig/eventgen.conf.largerconfig @@ -8,7 +8,7 @@ outputMode = stdout end = 1 [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = ../sample outputMode = stdout count = 3 earliest = -3s @@ -21,7 +21,7 @@ token.0.replacementType = timestamp token.0.replacement = %s.%f [sample.mobilemusic.csv] -sampleDir = tests/sample_eventgen_conf/replaytimestamp +sampleDir = ../replaytimestamp outputMode = stdout sampletype = csv interval = 3 @@ -40,7 +40,7 @@ token.0.replacementType = replaytimestamp token.0.replacement = ["%b %d %H:%M:%S:%f", "%Y-%m-%d %H:%M:%S:%f"] [replay] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = ../replay generator = replay timeMultiple = 2 end = 1 @@ -56,7 +56,7 @@ token.0.replacementType = timestamp token.0.replacement = %Y-%m-%d %H:%M:%S [csv] -sampleDir = tests/sample_eventgen_conf/bundlelines +sampleDir = ../bundlelines outputMode = stdout count = 3 earliest = -3s @@ -71,7 +71,7 @@ token.0.replacementType = timestamp token.0.replacement = %Y-%m-%d %H:%M:%S [breakersample] -sampleDir = tests/sample_eventgen_conf/breakersample +sampleDir = ../breakersample outputMode = stdout count = 3 earliest = -3s diff --git a/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolume b/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolume index 5961a6f9..06e0926e 100644 --- a/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolume +++ b/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolume @@ -1,5 +1,5 @@ [perdayvolume] -sampleDir = tests/sample_eventgen_conf/perdayvolume +sampleDir = . perDayVolume = 1.1 outputMode = stdout interval = 1 diff --git a/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolumesinglerun b/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolumesinglerun index f8f68159..d9127440 100644 --- a/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolumesinglerun +++ b/tests/sample_eventgen_conf/perdayvolume/eventgen.conf.perdayvolumesinglerun @@ -1,5 +1,5 @@ [perdayvolume] -sampleDir = tests/sample_eventgen_conf/perdayvolume +sampleDir = . end = 1 interval=0 perDayVolume = .01 diff --git a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsample b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsample index 26a04981..2b611e93 100755 --- a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsample +++ b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = ../sample outputMode = devnull count = 100000 earliest = now diff --git a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog index 096d767c..0211b1f6 100755 --- a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog +++ b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog @@ -1,5 +1,5 @@ [sample.shoppingapacheBrowse] -sampleDir = tests/sample_eventgen_conf/perf/weblog +sampleDir = ./weblog mode = sample outputMode = devnull index = main diff --git a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog-s2s b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog-s2s index 56f33581..e7b45474 100755 --- a/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog-s2s +++ b/tests/sample_eventgen_conf/perf/eventgen.conf.perfsampleweblog-s2s @@ -1,5 +1,5 @@ [sample.shoppingapacheBrowse] -sampleDir = tests/sample_eventgen_conf/perf/weblog +sampleDir = ./weblog mode = sample outputMode = s2s splunkHost = localhost diff --git a/tests/sample_eventgen_conf/replay/eventgen.conf.badtimestamp b/tests/sample_eventgen_conf/replay/eventgen.conf.badtimestamp index 1a6b894c..7363bb0a 100755 --- a/tests/sample_eventgen_conf/replay/eventgen.conf.badtimestamp +++ b/tests/sample_eventgen_conf/replay/eventgen.conf.badtimestamp @@ -1,5 +1,5 @@ [badtimestamp] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = . generator = replay timeMultiple = 2 diff --git a/tests/sample_eventgen_conf/replay/eventgen.conf.replay b/tests/sample_eventgen_conf/replay/eventgen.conf.replay index 6011721f..4061b598 100755 --- a/tests/sample_eventgen_conf/replay/eventgen.conf.replay +++ b/tests/sample_eventgen_conf/replay/eventgen.conf.replay @@ -1,5 +1,5 @@ [replay] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = . backfill = -5s sampletype = raw outputMode = stdout diff --git a/tests/sample_eventgen_conf/replay/eventgen.conf.timeorder b/tests/sample_eventgen_conf/replay/eventgen.conf.timeorder index 5ff97cc5..6547fef9 100755 --- a/tests/sample_eventgen_conf/replay/eventgen.conf.timeorder +++ b/tests/sample_eventgen_conf/replay/eventgen.conf.timeorder @@ -1,5 +1,5 @@ [timeorder] -sampleDir = tests/sample_eventgen_conf/replay +sampleDir = . generator = replay timeMultiple = 2 sampletype = csv diff --git a/tests/sample_eventgen_conf/replaytimestamp/eventgen.conf.replaytimestamp b/tests/sample_eventgen_conf/replaytimestamp/eventgen.conf.replaytimestamp index bb152381..05508f16 100644 --- a/tests/sample_eventgen_conf/replaytimestamp/eventgen.conf.replaytimestamp +++ b/tests/sample_eventgen_conf/replaytimestamp/eventgen.conf.replaytimestamp @@ -1,5 +1,5 @@ [sample.mobilemusic.csv] -sampleDir = tests/sample_eventgen_conf/replaytimestamp +sampleDir = . outputMode = stdout sampletype = csv interval = 3 diff --git a/tests/sample_eventgen_conf/sample/eventgen.conf.epochtime b/tests/sample_eventgen_conf/sample/eventgen.conf.epochtime index ba598371..913f204d 100755 --- a/tests/sample_eventgen_conf/sample/eventgen.conf.epochtime +++ b/tests/sample_eventgen_conf/sample/eventgen.conf.epochtime @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = . outputMode = stdout count = 3 earliest = -3s diff --git a/tests/sample_eventgen_conf/sample/eventgen.conf.fullsample b/tests/sample_eventgen_conf/sample/eventgen.conf.fullsample index 2158c38a..ac08587a 100644 --- a/tests/sample_eventgen_conf/sample/eventgen.conf.fullsample +++ b/tests/sample_eventgen_conf/sample/eventgen.conf.fullsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = . outputMode = stdout count = 0 earliest = -3s @@ -9,4 +9,4 @@ end = 5 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/sample/eventgen.conf.longsample b/tests/sample_eventgen_conf/sample/eventgen.conf.longsample index 5aaf8b3d..3a977226 100755 --- a/tests/sample_eventgen_conf/sample/eventgen.conf.longsample +++ b/tests/sample_eventgen_conf/sample/eventgen.conf.longsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = . outputMode = stdout count = 10 earliest = -3s diff --git a/tests/sample_eventgen_conf/sample/eventgen.conf.randomsample b/tests/sample_eventgen_conf/sample/eventgen.conf.randomsample index 04890a08..50ab0b4a 100755 --- a/tests/sample_eventgen_conf/sample/eventgen.conf.randomsample +++ b/tests/sample_eventgen_conf/sample/eventgen.conf.randomsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -10,4 +10,4 @@ end = 5 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/sample/eventgen.conf.shortsample b/tests/sample_eventgen_conf/sample/eventgen.conf.shortsample index b334ad96..d76e3bdf 100755 --- a/tests/sample_eventgen_conf/sample/eventgen.conf.shortsample +++ b/tests/sample_eventgen_conf/sample/eventgen.conf.shortsample @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = . outputMode = stdout count = 3 earliest = -3s @@ -9,4 +9,4 @@ end = 5 token.0.token = \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} token.0.replacementType = timestamp -token.0.replacement = %Y-%m-%d %H:%M:%S \ No newline at end of file +token.0.replacement = %Y-%m-%d %H:%M:%S diff --git a/tests/sample_eventgen_conf/unit/eventgen.conf.config b/tests/sample_eventgen_conf/unit/eventgen.conf.config index 81f3c44e..2ed10378 100644 --- a/tests/sample_eventgen_conf/unit/eventgen.conf.config +++ b/tests/sample_eventgen_conf/unit/eventgen.conf.config @@ -1,5 +1,5 @@ [sample] -sampleDir = tests/sample_eventgen_conf/sample +sampleDir = ../sample outputMode = splunkstream splunkMethod = https splunkHost = localhost From 7341af588dfdd5a55d25078edf43bfdc63ecb78b Mon Sep 17 00:00:00 2001 From: Ryan Yeung Date: Wed, 8 May 2019 10:20:48 +0800 Subject: [PATCH 39/68] return status=2 when all tasks finished. (#182) * return status=2 when all tasks finished. --- splunk_eventgen/eventgen_core.py | 8 +++++++- splunk_eventgen/eventgen_nameko_server.py | 11 ++++++----- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 71c80647..05c2c90c 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -549,7 +549,6 @@ def join_process(self): time.sleep(5) self.logger.info("All timers have finished, signalling workers to exit.") self.stop() - self.completed = True except Exception as e: self.logger.exception(e) raise e @@ -609,3 +608,10 @@ def check_running(self): else: return True return False + + def check_done(self): + ''' + + :return: if eventgen jobs are finished, return True else False + ''' + return self.sampleQueue.empty() and self.sampleQueue.unfinished_tasks <= 0 and self.workerQueue.empty() and self.workerQueue.unfinished_tasks <= 0 diff --git a/splunk_eventgen/eventgen_nameko_server.py b/splunk_eventgen/eventgen_nameko_server.py index bce211d6..91a9b28b 100644 --- a/splunk_eventgen/eventgen_nameko_server.py +++ b/splunk_eventgen/eventgen_nameko_server.py @@ -83,11 +83,12 @@ def get_status(self): ''' res = dict() if self.eventgen_dependency.eventgen.check_running(): - # running - status = 1 - elif self.eventgen_dependency.eventgen.completed is True: - # all samples completed and stop - status = 2 + if self.eventgen_dependency.eventgen.check_done(): + # all jobs completed + status = 2 + else: + # still running + status = 1 else: # not start yet status = 0 From 6a36192c11cde8775de3c5bb3c6fbfc1ef249c3c Mon Sep 17 00:00:00 2001 From: Li Wu Date: Wed, 8 May 2019 15:39:13 +0800 Subject: [PATCH 40/68] Change release verion to 6.3.6 (#200) * Change release verion to 6.3.6 --- .github/CODEOWNERS | 6 +----- docs/CHANGELOG.md | 9 +++++++++ splunk_eventgen/version.json | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ee08bd27..ec3daeba 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,5 +1 @@ -@lephino -@arctan5x -@jmeixensperger -@GordonWang -@li-wu +* @lephino @arctan5x @jmeixensperger @GordonWang @li-wu diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c3176d55..6f14e596 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,12 @@ +6.3.6 +- Add functional tests for jinja template and modular input feature +- Fix default jinja template directory is not correctly resolved when sampleDir is set issue +- Fix verbose flag not working in splunk_eventgen command line issue +- Fix index, source, sourcetype are not correct when using splunkstream mode issue +- Fix ssh to container issue +- Fix perdayvolume without end setting error +- Update documentation for better reading and remove unrelated part + 6.3.5 - Added extendIndexes feature to support a list of indexes - Fixed timer and token logic diff --git a/splunk_eventgen/version.json b/splunk_eventgen/version.json index 1047d698..23203dc0 100644 --- a/splunk_eventgen/version.json +++ b/splunk_eventgen/version.json @@ -1 +1 @@ -{"version": "6.3.5"} \ No newline at end of file +{"version": "6.3.6"} From bed39a827c6425542813fc7e0ba00c159d630e6f Mon Sep 17 00:00:00 2001 From: Li Wu Date: Fri, 10 May 2019 13:33:28 +0800 Subject: [PATCH 41/68] Fix flaky tests (#204) * Fix flaky tests * Rename modinput to mod_input to avoid functional test fail --- .gitignore | 1 + setup.py | 1 + .../splunk_app/bin/modinput_eventgen.py | 4 ++-- .../lib/{modinput => mod_input}/__init__.py | 0 .../lib/{modinput => mod_input}/fields.py | 0 tests/large/splunk/input.xml | 1 + tests/large/test_jinja_template.py | 17 ++++++++++++++--- tests/large/test_mode_replay.py | 3 ++- tests/large/test_mode_sample.py | 4 ++-- tests/large/test_modular_input.py | 6 +++--- tests/large/test_token_replacement.py | 2 +- .../jinja/eventgen.conf.jinja_basic | 1 + 12 files changed, 28 insertions(+), 12 deletions(-) rename splunk_eventgen/splunk_app/lib/{modinput => mod_input}/__init__.py (100%) rename splunk_eventgen/splunk_app/lib/{modinput => mod_input}/fields.py (100%) create mode 100644 tests/large/splunk/input.xml diff --git a/.gitignore b/.gitignore index a6f42c60..ed66916a 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ eventgen_wsgi.conf **/*.tgz .cache *.xml +!tests/large/splunk/input.xml dist _book *.result diff --git a/setup.py b/setup.py index f0d50654..eebd1dd5 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ def readme(): package_data={"splunk_eventgen": ['*.sh', '*.txt', '*.yml'], '': ['*.sh', '*.txt', '*.yml']}, install_requires=[ 'pytest>=3.0.0', # Required to test functional tests in eventgen. + 'pytest-mock>=1.10.4', 'boto3', 'requests>=2.18.4', 'requests[security]', diff --git a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py index 174a0541..10be093e 100644 --- a/splunk_eventgen/splunk_app/bin/modinput_eventgen.py +++ b/splunk_eventgen/splunk_app/bin/modinput_eventgen.py @@ -10,8 +10,8 @@ sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib'])) sys.path.insert(0, make_splunkhome_path(['etc', 'apps', 'SA-Eventgen', 'lib', 'splunk_eventgen', 'lib'])) -from modinput import ModularInput # noqa isort:skip -from modinput.fields import VerbosityField # noqa isort:skip +from mod_input import ModularInput # noqa isort:skip +from mod_input.fields import VerbosityField # noqa isort:skip from splunk_eventgen import eventgen_core # noqa isort:skip from splunk_eventgen.lib import eventgenconfig # noqa isort:skip from xmloutput import XMLOutputManager, setupLogger # noqa isort:skip diff --git a/splunk_eventgen/splunk_app/lib/modinput/__init__.py b/splunk_eventgen/splunk_app/lib/mod_input/__init__.py similarity index 100% rename from splunk_eventgen/splunk_app/lib/modinput/__init__.py rename to splunk_eventgen/splunk_app/lib/mod_input/__init__.py diff --git a/splunk_eventgen/splunk_app/lib/modinput/fields.py b/splunk_eventgen/splunk_app/lib/mod_input/fields.py similarity index 100% rename from splunk_eventgen/splunk_app/lib/modinput/fields.py rename to splunk_eventgen/splunk_app/lib/mod_input/fields.py diff --git a/tests/large/splunk/input.xml b/tests/large/splunk/input.xml new file mode 100644 index 00000000..0f213e93 --- /dev/null +++ b/tests/large/splunk/input.xml @@ -0,0 +1 @@ + tiny https://127.0.0.1:8089 fXhJvxJRjP^7Vamh5^ZL^QIH^gdTSbtMzTw71DHdyhvGME5bZdntqBiDy2vDl2WQ6ey1s6EzkU1LT8yU30kS_gNWh5bJjabd2bs0Z6Ab04Gq7F1Buc6vGv0FeGFH /opt/splunk 0 main diff --git a/tests/large/test_jinja_template.py b/tests/large/test_jinja_template.py index 43695c67..e1240164 100644 --- a/tests/large/test_jinja_template.py +++ b/tests/large/test_jinja_template.py @@ -45,6 +45,12 @@ def test_jinja_template_dir_conf(eventgen_test_helper): loop += 1 +def _get_ts(base_time, delta): + time_format = '%Y-%m-%dT%H:%M:%S' + t = datetime.datetime.strptime(base_time, time_format) + delta + return t.strftime(time_format) + + def test_jinja_template_advance(eventgen_test_helper): """Test advanced jinja template var feature""" events = eventgen_test_helper('eventgen_jinja_advance.conf').get_events() @@ -53,10 +59,15 @@ def test_jinja_template_advance(eventgen_test_helper): # splunk may index multiline event assert len(events) == 27 # because we use time slice method to mock the time, it should be static values + + tz_delta = datetime.datetime.now() - datetime.datetime.utcnow() + # total seconds is a float number + delta_hours = int(round(tz_delta.total_seconds() / 3600)) + tz_delta = datetime.timedelta(hours=delta_hours) ts_map = { - 1: '1970-01-01T08:24:16', - 2: '1970-01-01T08:27:58', - 3: '1970-01-01T08:31:40', + 1: _get_ts('1970-01-01T00:24:16', tz_delta), + 2: _get_ts('1970-01-01T00:27:58', tz_delta), + 3: _get_ts('1970-01-01T00:31:40', tz_delta), } firstline_pattern = re.compile( diff --git a/tests/large/test_mode_replay.py b/tests/large/test_mode_replay.py index f6c2cba4..9f98e40f 100644 --- a/tests/large/test_mode_replay.py +++ b/tests/large/test_mode_replay.py @@ -50,7 +50,8 @@ def test_mode_replay_timemultiple(eventgen_test_helper): event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") delter_seconds = (event_datetime - current_datetime).total_seconds() # assert the event time is after (now - earliest) time - assert delter_seconds < 11 + assert delter_seconds < 12 + def test_mode_replay_csv(eventgen_test_helper): """Test normal replay mode with sampletype = csv which will get _raw row from the sample""" diff --git a/tests/large/test_mode_sample.py b/tests/large/test_mode_sample.py index e7d1575f..2d93804f 100644 --- a/tests/large/test_mode_sample.py +++ b/tests/large/test_mode_sample.py @@ -53,8 +53,8 @@ def test_mode_sample_backfill(eventgen_test_helper): assert result is not None event_datetime = datetime.strptime(result.group(), "%Y-%m-%d %H:%M:%S") delter_seconds = (event_datetime - current_datetime).total_seconds() - # assert the event time is after (now - backfill) time - assert delter_seconds > -15 + # assert the event time is after (now - backfill) + 1 time, plus 1 to make it less flaky + assert delter_seconds > -16 def test_mode_sample_breaker(eventgen_test_helper): diff --git a/tests/large/test_modular_input.py b/tests/large/test_modular_input.py index 38c81ec7..64980441 100644 --- a/tests/large/test_modular_input.py +++ b/tests/large/test_modular_input.py @@ -24,9 +24,9 @@ def test_modular_input(mocker, capsys): copyfile(os.path.join(base_dir, 'tests', 'large', 'sample', 'film.json'), os.path.join(sample_path, 'film.json')) from modinput_eventgen import Eventgen - # input xml stream used to start modular input input_stream_path = os.path.join(base_dir, 'tests', 'large', 'splunk', 'input.xml') + mocker.patch('sys.argv', ['', '--infile', input_stream_path]) worker = Eventgen() worker.execute() @@ -34,8 +34,8 @@ def test_modular_input(mocker, capsys): # capture the generated events from std out captured = capsys.readouterr() assert "" in captured.out - assert "" in captured.out - assert "" in captured.out + # assert "" in captured.out + # assert "" in captured.out # remove above created simulated app folder rmtree(os.path.join(simulated_splunk_etc_dir, 'modinput_test_app')) diff --git a/tests/large/test_token_replacement.py b/tests/large/test_token_replacement.py index c602c291..48eeb1df 100644 --- a/tests/large/test_token_replacement.py +++ b/tests/large/test_token_replacement.py @@ -50,7 +50,7 @@ def test_token_replacement(eventgen_test_helper): assert event_obj["netPerf"]["lastByte"] == "0" # assert replacementType = random and replacement = integer[:] - assert 5000 > int(event_obj["message"]["bytes"]) > 40 + assert 5000 >= int(event_obj["message"]["bytes"]) > 40 # assert replacementType = random and replacement = ipv4 | ipv6 | mac ipv4_pattern = re.compile(r"^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$") diff --git a/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic index e056790f..3f00012c 100644 --- a/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic +++ b/tests/sample_eventgen_conf/jinja/eventgen.conf.jinja_basic @@ -2,6 +2,7 @@ end = 1 count = 1 generator = jinja +sampleDir = . jinja_template_dir = templates jinja_target_template = test_jinja_basic.template jinja_variables = {"large_number":10} From 09811fd4bb430adc3203e73f6ab2503dc9fb42bc Mon Sep 17 00:00:00 2001 From: YifengMao Date: Mon, 13 May 2019 16:18:12 +0800 Subject: [PATCH 42/68] when hit an exception, make sure egx logs it to files --- splunk_eventgen/eventgen_core.py | 12 ++++---- splunk_eventgen/eventgen_nameko_controller.py | 26 ++++++++--------- splunk_eventgen/eventgen_nameko_server.py | 28 +++++++++---------- splunk_eventgen/lib/eventgentimer.py | 2 +- .../lib/plugins/generator/jinja.py | 4 +-- .../lib/plugins/output/httpevent.py | 6 ++-- 6 files changed, 39 insertions(+), 39 deletions(-) diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 05c2c90c..3fb19388 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -133,7 +133,7 @@ def _reload_plugins(self): os.path.join(file_path, 'lib', 'plugins', 'rater'), self.config.plugins, 'rater') self.config._complexSettings['rater'] = plugins except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) def _load_custom_plugins(self, PluginNotLoadedException): plugintype = PluginNotLoadedException.type @@ -360,7 +360,7 @@ def _worker_do_work(self, work_queue, logging_queue): except Empty: pass except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e def _generator_do_work(self, work_queue, logging_queue, output_counter=None): @@ -376,7 +376,7 @@ def _generator_do_work(self, work_queue, logging_queue, output_counter=None): except Empty: pass except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e @staticmethod @@ -418,7 +418,7 @@ def logger_thread(self, loggingQueue): except Empty: pass except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e def _initializePlugins(self, dirname, plugins, plugintype, name=None): @@ -493,7 +493,7 @@ def _initializePlugins(self, dirname, plugins, plugintype, name=None): self.logger.warn("Could not load plugin: %s, skipping" % mod_name.name) self.logger.exception(ie) except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e return ret @@ -550,7 +550,7 @@ def join_process(self): self.logger.info("All timers have finished, signalling workers to exit.") self.stop() except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e def stop(self): diff --git a/splunk_eventgen/eventgen_nameko_controller.py b/splunk_eventgen/eventgen_nameko_controller.py index 52192859..6ea271ee 100644 --- a/splunk_eventgen/eventgen_nameko_controller.py +++ b/splunk_eventgen/eventgen_nameko_controller.py @@ -74,7 +74,7 @@ def index(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -88,7 +88,7 @@ def status(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -102,7 +102,7 @@ def start(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -116,7 +116,7 @@ def stop(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -130,7 +130,7 @@ def restart(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -144,7 +144,7 @@ def get_conf(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -159,7 +159,7 @@ def set_conf(self, target, data): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -174,7 +174,7 @@ def edit_conf(self, target, data): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -187,7 +187,7 @@ def bundle(self, target, data): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return "500", "Exception: {}".format(e.message) @rpc @@ -198,7 +198,7 @@ def setup(self, target, data): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return "500", "Exception: {}".format(e.message) @rpc @@ -209,7 +209,7 @@ def get_volume(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return "500", "Exception: {}".format(e.message) @rpc @@ -222,7 +222,7 @@ def set_volume(self, target, data): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return "500", "Exception: {}".format(e.message) @rpc @@ -236,7 +236,7 @@ def reset(self, target): self.log.info(msg) return msg except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) # HTTP Methods diff --git a/splunk_eventgen/eventgen_nameko_server.py b/splunk_eventgen/eventgen_nameko_server.py index 91a9b28b..dbcf422a 100644 --- a/splunk_eventgen/eventgen_nameko_server.py +++ b/splunk_eventgen/eventgen_nameko_server.py @@ -166,7 +166,7 @@ def start(self): self.eventgen_dependency.eventgen.start(join_after_start=False) return "Eventgen has successfully started." except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def stop(self): @@ -177,7 +177,7 @@ def stop(self): return "Eventgen is stopped." return "There is no eventgen process running." except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def restart(self): @@ -188,7 +188,7 @@ def restart(self): self.start() return "Eventgen restarted." except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def get_conf(self): @@ -213,7 +213,7 @@ def get_conf(self): self.send_conf_to_controller(server_conf={}) return json.dumps({}, indent=4) except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -254,7 +254,7 @@ def set_conf(self, conf): self.log.info("custom_config_json is {}".format(conf_content)) return self.get_conf() except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def edit_conf(self, conf): @@ -285,7 +285,7 @@ def edit_conf(self, conf): self.restart() return self.get_conf() except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def bundle(self, url): @@ -314,7 +314,7 @@ def bundle(self, url): else: return self.get_conf() except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def setup(self, data): @@ -415,7 +415,7 @@ def get_volume(self): self.send_volume_to_controller(total_volume=self.total_volume) return str(self.total_volume) except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) @rpc @@ -451,7 +451,7 @@ def set_volume(self, volume): self.get_volume() return output except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) def reset(self): @@ -461,7 +461,7 @@ def reset(self): self.eventgen_dependency.refresh_eventgen() return "Eventgen Refreshed" except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '500', "Exception: {}".format(e.message) # Event Handler Methods @@ -645,10 +645,10 @@ def http_bundle(self, request): url = data["url"] return self.bundle(url) except ValueError as e: - self.log.exception(e) + self.log.exception(str(e)) return '400', "Please pass in a valid object with bundle URL" except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '400', "Exception: {}".format(e.message) @http('POST', '/setup') @@ -657,7 +657,7 @@ def http_setup(self, request): try: return self.setup(data) except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '400', "Exception: {}".format(e.message) @http('GET', '/volume') @@ -672,7 +672,7 @@ def http_set_volume(self, request): volume = data["perDayVolume"] return self.set_volume(volume) except Exception as e: - self.log.exception(e) + self.log.exception(str(e)) return '400', "Exception: {}".format(e.message) @http('POST', '/reset') diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 92a690fd..1e9f1af2 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -207,7 +207,7 @@ def real_run(self): except Full: self.logger.warning("Generator Queue Full. Skipping current generation.") except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) if self.stopping: end = True pass diff --git a/splunk_eventgen/lib/plugins/generator/jinja.py b/splunk_eventgen/lib/plugins/generator/jinja.py index 27de2200..4a61a461 100644 --- a/splunk_eventgen/lib/plugins/generator/jinja.py +++ b/splunk_eventgen/lib/plugins/generator/jinja.py @@ -278,7 +278,7 @@ def gen(self, count, earliest, latest, samplename=None): target_line["index"] = self._sample.index lines_out.append(target_line) except TypeError as e: - self.logger.exception(e) + self.logger.exception(str(e)) self.end_of_cycle = True self._increment_count(lines_out) self._out.bulksend(lines_out) @@ -290,7 +290,7 @@ def gen(self, count, earliest, latest, samplename=None): self.logger.info("Generation of sample '%s' completed in %s seconds." % (self._sample.name, timeDiffFrac)) return 0 except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) return 1 diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index 81082a1c..a000f430 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -121,7 +121,7 @@ def updateConfig(self, config): self.logger.debug("Pool created.") self.logger.debug("Finished init of httpevent plugin.") except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) def createConnections(self): self.serverPool = [] @@ -188,7 +188,7 @@ def _sendHTTPEvents(self, payload): currentreadsize = 0 stringpayload = targetline except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e else: try: @@ -198,7 +198,7 @@ def _sendHTTPEvents(self, payload): (totalbytessent, totalbytesexpected)) self._transmitEvents(stringpayload) except Exception as e: - self.logger.exception(e) + self.logger.exception(str(e)) raise e def _transmitEvents(self, payloadstring): From e7a9bba0c31653b71ac7caf5f6d117eb4d63f793 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Wed, 15 May 2019 11:38:28 +0800 Subject: [PATCH 43/68] Fix circleci status badges (#208) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d68a6bb8..821f69c3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Splunk Event Generator (Eventgen) ### Status -[![CircleCI](https://circleci.com/gh/splunk/eventgen/tree/develop.svg?style=svg)](https://circleci.com/gh/splunk/eventgen/tree/develop) +[![CircleCI](https://circleci.com/gh/splunk/eventgen/tree/develop.svg?style=svg&circle-token=15e952a75e368102d8cebc6d9445af87e6c7d57e)](https://circleci.com/gh/splunk/eventgen/tree/develop) ### Introduction From ab1363b2a74629cba714a2d08830485214ac96c8 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Thu, 16 May 2019 10:30:33 -0700 Subject: [PATCH 44/68] Clean up and interval error (#211) --- splunk_eventgen/eventgen_core.py | 21 +++---------------- splunk_eventgen/lib/eventgenoutput.py | 18 +++++++--------- .../lib/plugins/generator/default.py | 1 - 3 files changed, 11 insertions(+), 29 deletions(-) diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 3fb19388..c149452b 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -354,7 +354,7 @@ def _worker_do_work(self, work_queue, logging_queue): startTime = time.time() item.run() totalTime = time.time() - startTime - if totalTime > self.config.interval: + if totalTime > self.config.interval and self.config.end != 1: self.logger.warning("work took longer than current interval, queue/threading throughput limitation") work_queue.task_done() except Empty: @@ -370,7 +370,7 @@ def _generator_do_work(self, work_queue, logging_queue, output_counter=None): startTime = time.time() item.run(output_counter=output_counter) totalTime = time.time() - startTime - if totalTime > self.config.interval: + if totalTime > self.config.interval and item._sample.end != 1: self.logger.warning("work took longer than current interval, queue/threading throughput limitation") work_queue.task_done() except Empty: @@ -521,21 +521,6 @@ def start(self, join_after_start=True): if join_after_start: self.logger.info("All timers started, joining queue until it's empty.") self.join_process() - # Only need to start timers once - # Every 5 seconds, get values and output basic statistics about our operations - # TODO: Figure out how to do this better... - # generatorsPerSec = (generatorDecrements - generatorQueueCounter) / 5 - # outputtersPerSec = (outputDecrements - outputQueueCounter) / 5 - # outputQueueCounter = outputDecrements - # generatorQueueCounter = generatorDecrements - # self.logger.info('OutputQueueDepth=%d GeneratorQueueDepth=%d GeneratorsPerSec=%d OutputtersPerSec=%d' % - # (self.config.outputQueueSize.value(), self.config.generatorQueueSize.value(), - # generatorsPerSec, outputtersPerSec)) - # kiloBytesPerSec = self.config.bytesSent.valueAndClear() / 5 / 1024 - # gbPerDay = (kiloBytesPerSec / 1024 / 1024) * 60 * 60 * 24 - # eventsPerSec = self.config.eventsSent.valueAndClear() / 5 - # self.logger.info('GlobalEventsPerSec=%s KilobytesPerSec=%1f GigabytesPerDay=%1f' % - # (eventsPerSec, kiloBytesPerSec, gbPerDay)) def join_process(self): ''' @@ -546,7 +531,7 @@ def join_process(self): try: while not self.sampleQueue.empty() or self.sampleQueue.unfinished_tasks > 0 or not self.workerQueue.empty( ) or self.workerQueue.unfinished_tasks > 0: - time.sleep(5) + time.sleep(10) self.logger.info("All timers have finished, signalling workers to exit.") self.stop() except Exception as e: diff --git a/splunk_eventgen/lib/eventgenoutput.py b/splunk_eventgen/lib/eventgenoutput.py index c2b8c1c1..843bb088 100644 --- a/splunk_eventgen/lib/eventgenoutput.py +++ b/splunk_eventgen/lib/eventgenoutput.py @@ -124,14 +124,12 @@ def flush(self, endOfInterval=False): except Full: self.logger.warning("Output Queue full, looping again") else: - tmp = [len(s['_raw']) for s in q] - # TODO: clean out eventsSend and bytesSent if they are not being used in config - # self.config.eventsSent.add(len(tmp)) - # self.config.bytesSent.add(sum(tmp)) - if self.config.splunkEmbedded and len(tmp) > 0: - metrics = logging.getLogger('eventgen_metrics') - metrics.info({ - 'timestamp': datetime.datetime.strftime(datetime.datetime.now(), '%Y-%m-%d %H:%M:%S'), 'sample': - self._sample.name, 'events': len(tmp), 'bytes': sum(tmp)}) - tmp = None + if self.config.splunkEmbedded: + tmp = [len(s['_raw']) for s in q] + if len(tmp) > 0: + metrics = logging.getLogger('eventgen_metrics') + metrics.info({ + 'timestamp': datetime.datetime.strftime(datetime.datetime.now(), '%Y-%m-%d %H:%M:%S'), 'sample': + self._sample.name, 'events': len(tmp), 'bytes': sum(tmp)}) + tmp = None outputer.run() diff --git a/splunk_eventgen/lib/plugins/generator/default.py b/splunk_eventgen/lib/plugins/generator/default.py index ed106e39..80fc35cd 100644 --- a/splunk_eventgen/lib/plugins/generator/default.py +++ b/splunk_eventgen/lib/plugins/generator/default.py @@ -67,6 +67,5 @@ def gen(self, count, earliest, latest, samplename=None): GeneratorPlugin.build_events(self, eventsDict, startTime, earliest, latest) - def load(): return DefaultGenerator From e950a83c9a1d5f79a1be8518dad56345e3e8d423 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Fri, 17 May 2019 01:31:06 +0800 Subject: [PATCH 45/68] Fix generatorWorks not work issue (#207) --- splunk_eventgen/eventgen_core.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index c149452b..50ca3ccf 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -115,8 +115,13 @@ def _load_config(self, configfile, **kwargs): self.config = Config(configfile, **new_args) self.config.parse() self._reload_plugins() + if getattr(args, "generators"): + generator_worker_count = args.generators + else: + generator_worker_count = self.config.generatorWorkers + # TODO: Probably should destroy pools better so processes are cleaned. - self._setup_pools() + self._setup_pools(generator_worker_count) def _reload_plugins(self): # Initialize plugins @@ -147,7 +152,7 @@ def _load_custom_plugins(self, PluginNotLoadedException): # APPPERF-263: be greedy when scanning plugin dir (eat all the pys) self._initializePlugins(plugindir, pluginsdict, plugintype) - def _setup_pools(self): + def _setup_pools(self, generator_worker_count): ''' This method is an internal method called on init to generate pools needed for processing. @@ -157,7 +162,7 @@ def _setup_pools(self): self._create_generator_pool() self._create_timer_threadpool() self._create_output_threadpool() - self._create_generator_workers() + self._create_generator_workers(generator_worker_count) def _create_timer_threadpool(self, threadcount=100): ''' From 299432cd7176d2466b0cecb4f185768b0cc98443 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Tue, 21 May 2019 01:53:28 +0800 Subject: [PATCH 46/68] Fix navigation error with installed with splunk stream (#214) --- .gitignore | 1 + splunk_eventgen/splunk_app/default/data/ui/nav/default.xml | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 splunk_eventgen/splunk_app/default/data/ui/nav/default.xml diff --git a/.gitignore b/.gitignore index ed66916a..90bf0f85 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ eventgen_wsgi.conf .cache *.xml !tests/large/splunk/input.xml +!splunk_eventgen/splunk_app/default/data/ui/nav/default.xml dist _book *.result diff --git a/splunk_eventgen/splunk_app/default/data/ui/nav/default.xml b/splunk_eventgen/splunk_app/default/data/ui/nav/default.xml new file mode 100644 index 00000000..e4e189a6 --- /dev/null +++ b/splunk_eventgen/splunk_app/default/data/ui/nav/default.xml @@ -0,0 +1,3 @@ + From 6e5577d09d4c45a575dd79ec356313483de9b7c6 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Fri, 17 May 2019 11:24:49 +0800 Subject: [PATCH 47/68] add metric_httpevent plugin --- .../lib/plugins/output/metric_httpevent.py | 295 ++++++++++++++++++ 1 file changed, 295 insertions(+) create mode 100644 splunk_eventgen/lib/plugins/output/metric_httpevent.py diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py new file mode 100644 index 00000000..d5c45f83 --- /dev/null +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -0,0 +1,295 @@ +from __future__ import division + +import logging +import random +import urllib + +from outputplugin import OutputPlugin + +try: + import requests + from requests import Session + from requests_futures.sessions import FuturesSession + from concurrent.futures import ThreadPoolExecutor +except ImportError: + pass +try: + import ujson as json +except: + import json + + +class NoServers(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class BadConnection(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class MetricHTTPEventOutputPlugin(OutputPlugin): + ''' + HTTPEvent output will enable events that are generated to be sent directly + to splunk through the HTTP event input. In order to use this output plugin, + you will need to supply an attribute 'httpeventServers' as a valid json object. + this json object should look like the following: + + {servers:[{ protocol:http/https, address:127.0.0.1, port:8088, key:12345-12345-123123123123123123}]} + + ''' + name = 'metric_httpevent' + MAXQUEUELENGTH = 1000 + useOutputQueue = False + validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + jsonSettings = ['httpeventServers'] + + def __init__(self, sample, output_counter=None): + OutputPlugin.__init__(self, sample, output_counter) + + # TODO: make workers a param that can be set in eventgen.conf + def _setup_REST_workers(self, session=None, workers=10): + # disable any "requests" warnings + requests.packages.urllib3.disable_warnings() + # Bind passed in samples to the outputter. + self.lastsourcetype = None + if not session: + session = Session() + self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) + self.active_sessions = [] + + @staticmethod + def _urlencode(value): + ''' + Takes a value and make sure everything int he string is URL safe. + :param value: string + :return: urlencoded string + ''' + return urllib.quote(value) + + @staticmethod + def _bg_convert_json(sess, resp): + ''' + Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the + session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) + :param sess: futures session object. Automatically called on a background_callback as aruguments. + :param resp: futures resp object. Automatically called on a background_callback as aruguments. + :return: + ''' + if resp.status_code == 200: + if getattr(resp, "json", None): + resp.data = resp.json() + else: + if type(resp.data) == str: + resp.data = json.loads(resp.data) + + def updateConfig(self, config): + OutputPlugin.updateConfig(self, config) + try: + if hasattr(self.config, 'httpeventServers') is False: + if hasattr(self._sample, 'httpeventServers'): + self.config.httpeventServers = self._sample.httpeventServers + else: + self.logger.error( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + raise NoServers( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + # set default output mode to round robin + if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: + self.httpeventoutputmode = config.httpeventOutputMode + else: + if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: + self.httpeventoutputmode = self._sample.httpeventOutputMode + else: + self.httpeventoutputmode = 'roundrobin' + if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: + self.httpeventmaxsize = self.config.httpeventMaxPayloadSize + else: + if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: + self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize + else: + self.httpeventmaxsize = 10000 + self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) + if isinstance(config.httpeventServers, str): + self.httpeventServers = json.loads(config.httpeventServers) + else: + self.httpeventServers = config.httpeventServers + self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) + self.createConnections() + self.logger.debug("Pool created.") + self.logger.debug("Finished init of metric_httpevent plugin.") + except Exception as e: + self.logger.exception(str(e)) + + def createConnections(self): + self.serverPool = [] + if self.httpeventServers: + for server in self.httpeventServers.get('servers'): + if not server.get('address'): + self.logger.error( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + raise ValueError( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + if not server.get('port'): + self.logger.error( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + if not server.get('key'): + self.logger.error( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): + self.logger.error( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + raise ValueError( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + self.logger.debug( + "Validation Passed, Creating a requests object for server: %s" % server.get('address')) + + setserver = {} + setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), + server.get('port')) + setserver['header'] = "Splunk %s" % server.get('key') + self.logger.debug("Adding server set to pool, server: %s" % setserver) + self.serverPool.append(setserver) + else: + raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + + def _sendHTTPEvents(self, payload): + currentreadsize = 0 + stringpayload = "" + totalbytesexpected = 0 + totalbytessent = 0 + numberevents = len(payload) + self.logger.debug("Sending %s events to splunk" % numberevents) + for line in payload: + self.logger.debug("line: %s " % line) + targetline = json.dumps(line) + self.logger.debug("targetline: %s " % targetline) + targetlinesize = len(targetline) + totalbytesexpected += targetlinesize + if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): + stringpayload = stringpayload + targetline + currentreadsize = currentreadsize + targetlinesize + self.logger.debug("stringpayload: %s " % stringpayload) + else: + self.logger.debug("Max size for payload hit, sending to splunk then continuing.") + try: + self._transmitEvents(stringpayload) + totalbytessent += len(stringpayload) + currentreadsize = 0 + stringpayload = targetline + except Exception as e: + self.logger.exception(str(e)) + raise e + else: + try: + totalbytessent += len(stringpayload) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) + self._transmitEvents(stringpayload) + except Exception as e: + self.logger.exception(str(e)) + raise e + + def _transmitEvents(self, payloadstring): + targetServer = [] + self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) + if self.httpeventoutputmode == "mirror": + targetServer = self.serverPool + else: + targetServer.append(random.choice(self.serverPool)) + for server in targetServer: + self.logger.debug("Selected targetServer object: %s" % targetServer) + url = server['url'] + headers = {} + headers['Authorization'] = server['header'] + headers['content-type'] = 'application/json' + try: + payloadsize = len(payloadstring) + # response = requests.post(url, data=payloadstring, headers=headers, verify=False) + self.active_sessions.append( + self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + except Exception as e: + self.logger.error("Failed for exception: %s" % e) + self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % + (url, self.lastsourcetype, payloadsize)) + self.logger.debug( + "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) + raise e + + def flush(self, q): + self.logger.debug("Flush called on httpevent plugin") + self._setup_REST_workers() + if len(q) > 0: + try: + payload = [] + for event in q: + self.logger.debug("HTTPEvent proccessing event: %s" % event) + payloadFragment = {} + if event.get('_raw') is None or event['_raw'] == "\n": + self.logger.error('failure outputting event, does not contain _raw') + else: + self.logger.debug("Event contains _raw, attempting to process...") + self.logger.debug(event['_raw']) + fields = json.loads(event['_raw'])['fields'] + payloadFragment['fields'] = fields + payloadFragment['event'] = "metric" + if event.get('source'): + self.logger.debug("Event contains source, adding to httpevent event") + payloadFragment['source'] = event['source'] + if event.get('sourcetype'): + self.logger.debug("Event contains sourcetype, adding to httpevent event") + payloadFragment['sourcetype'] = event['sourcetype'] + self.lastsourcetype = event['sourcetype'] + if event.get('host'): + self.logger.debug("Event contains host, adding to httpevent event") + payloadFragment['host'] = event['host'] + if event.get('_time'): + # make sure _time can be an epoch timestamp + try: + float(event.get("_time")) + self.logger.debug("Event contains _time, adding to httpevent event") + payloadFragment['time'] = event['_time'] + except: + self.logger.error("Timestamp not in epoch format, ignoring event: {0}".format(event)) + if event.get('index'): + self.logger.debug("Event contains index, adding to httpevent event") + payloadFragment['index'] = event['index'] + + self.logger.debug("Full payloadFragment: {}".format(payloadFragment)) + # self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) + payload.append(payloadFragment) + self.logger.debug("Metric Finished processing events, sending all to splunk") + self._sendHTTPEvents(payload) + if self.config.httpeventWaitResponse: + for session in self.active_sessions: + response = session.result() + if not response.raise_for_status(): + self.logger.debug("Payload successfully sent to httpevent server.") + else: + self.logger.error("Server returned an error while trying to send, response code: %s" % + response.status_code) + raise BadConnection( + "Server returned an error while sending, response code: %s" % response.status_code) + else: + self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") + except Exception as e: + self.logger.error('failed indexing events, reason: %s ' % e) + + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_httpeventout') + + +def load(): + """Returns an instance of the plugin""" + return MetricHTTPEventOutputPlugin From a0bd53fa79c1d9a516b004245a29f41c2aefc63b Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 21 May 2019 17:47:15 +0800 Subject: [PATCH 48/68] update log content in metric_httpevent --- .../lib/plugins/output/metric_httpevent.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py index d5c45f83..f315b2fd 100644 --- a/splunk_eventgen/lib/plugins/output/metric_httpevent.py +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -31,8 +31,8 @@ def __init__(self, *args, **kwargs): class MetricHTTPEventOutputPlugin(OutputPlugin): ''' - HTTPEvent output will enable events that are generated to be sent directly - to splunk through the HTTP event input. In order to use this output plugin, + MetricHTTPEvent output will enable events that are generated to be sent directly + to splunk metrics indexes through the HTTP event input. In order to use this output plugin, you will need to supply an attribute 'httpeventServers' as a valid json object. this json object should look like the following: @@ -93,9 +93,9 @@ def updateConfig(self, config): self.config.httpeventServers = self._sample.httpeventServers else: self.logger.error( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) raise NoServers( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) # set default output mode to round robin if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: self.httpeventoutputmode = config.httpeventOutputMode @@ -161,7 +161,7 @@ def createConnections(self): self.logger.debug("Adding server set to pool, server: %s" % setserver) self.serverPool.append(setserver) else: - raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + raise NoServers('outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) def _sendHTTPEvents(self, payload): currentreadsize = 0 @@ -228,7 +228,7 @@ def _transmitEvents(self, payloadstring): raise e def flush(self, q): - self.logger.debug("Flush called on httpevent plugin") + self.logger.debug("Flush called on metric_httpevent plugin") self._setup_REST_workers() if len(q) > 0: try: @@ -241,7 +241,7 @@ def flush(self, q): else: self.logger.debug("Event contains _raw, attempting to process...") self.logger.debug(event['_raw']) - fields = json.loads(event['_raw'])['fields'] + fields = json.loads(event['_raw'])['fields'] payloadFragment['fields'] = fields payloadFragment['event'] = "metric" if event.get('source'): @@ -269,7 +269,7 @@ def flush(self, q): self.logger.debug("Full payloadFragment: {}".format(payloadFragment)) # self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) payload.append(payloadFragment) - self.logger.debug("Metric Finished processing events, sending all to splunk") + self.logger.debug("Metric_httpevent Finished processing events, sending all to splunk") self._sendHTTPEvents(payload) if self.config.httpeventWaitResponse: for session in self.active_sessions: @@ -282,7 +282,7 @@ def flush(self, q): raise BadConnection( "Server returned an error while sending, response code: %s" % response.status_code) else: - self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") + self.logger.debug("Ignoring response from HTTP server, leaving metric_httpevent outputter") except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) From 582893a7efb4ccd86d74fb3cd8f889b858447d3b Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 21 May 2019 17:55:32 +0800 Subject: [PATCH 49/68] add doc for metric_httpevent --- docs/REFERENCE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 0f089c84..17fafd3e 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -114,7 +114,7 @@ outputWorkers = * Generally if using TCP based outputs like splunkstream, more could be required * Defaults to 1 -outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout +outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout | metric_httpevent * Specifies how to output log data. Modinput is default. * If setting spool, should set spoolDir * If setting file, should set fileName @@ -123,6 +123,7 @@ outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | h * If setting s2s, should set splunkHost and splunkPort * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort * If setting httpevent, should set httpeventServers + * If setting metric_httpevent, should set httpeventServers and make sure your index is a splunk metric index syslogDestinationHost = * Defaults to 127.0.0.1 From ce3582e22aac6722dae48b6dab4ad867af66fcff Mon Sep 17 00:00:00 2001 From: Li Wu Date: Thu, 23 May 2019 09:20:59 +0800 Subject: [PATCH 50/68] Add 3rd lib in app (#210) * Add 3rd lib in app --- splunk_eventgen/__main__.py | 10 ++++++++++ splunk_eventgen/lib/plugins/generator/jinja.py | 3 +-- splunk_eventgen/lib/requirements.txt | 2 ++ splunk_eventgen/splunk_app/README/eventgen.conf.spec | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 splunk_eventgen/lib/requirements.txt diff --git a/splunk_eventgen/__main__.py b/splunk_eventgen/__main__.py index 1dd058e9..0437cc46 100644 --- a/splunk_eventgen/__main__.py +++ b/splunk_eventgen/__main__.py @@ -308,6 +308,16 @@ def build_splunk_app(dest, source=os.getcwd(), remove=True): directory_default_dir = os.path.join(directory, 'default', 'eventgen.conf') eventgen_conf = os.path.join(module_path, 'default', 'eventgen.conf') shutil.copyfile(eventgen_conf, directory_default_dir) + + # install 3rd lib dependencies + install_target = os.path.join(directory, 'lib') + install_cmd = "pip install --requirement splunk_eventgen/lib/requirements.txt --upgrade --no-compile " + \ + "--no-binary :all: --target " + install_target + return_code = os.system(install_cmd) + if return_code != 0: + print("Failed to install dependencies via pip. Please check whether pip is installed.") + os.system("rm -rf " + os.path.join(install_target, "*.egg-info")) + make_tarfile(target_file, directory) shutil.rmtree(splunk_app_samples) if remove: diff --git a/splunk_eventgen/lib/plugins/generator/jinja.py b/splunk_eventgen/lib/plugins/generator/jinja.py index 4a61a461..4bf6f8a1 100644 --- a/splunk_eventgen/lib/plugins/generator/jinja.py +++ b/splunk_eventgen/lib/plugins/generator/jinja.py @@ -193,8 +193,7 @@ def gen(self, count, earliest, latest, samplename=None): if self._sample.splunkEmbedded is True: splunk_home = os.environ["SPLUNK_HOME"] app_name = getattr(self._sample, 'app', 'SA-Eventgen') - sample_dir = os.path.join(splunk_home, 'etc', 'apps', app_name, - 'default', self._sample.DEFAULT_SAMPLE_DIR) + sample_dir = os.path.join(splunk_home, 'etc', 'apps', app_name, 'samples') if not hasattr(self._sample, "jinja_template_dir"): template_dir = 'templates' diff --git a/splunk_eventgen/lib/requirements.txt b/splunk_eventgen/lib/requirements.txt new file mode 100644 index 00000000..4bfb4b0b --- /dev/null +++ b/splunk_eventgen/lib/requirements.txt @@ -0,0 +1,2 @@ +ujson==1.35 +jinja2==2.10.1 diff --git a/splunk_eventgen/splunk_app/README/eventgen.conf.spec b/splunk_eventgen/splunk_app/README/eventgen.conf.spec index 8a1925ce..210743a7 100644 --- a/splunk_eventgen/splunk_app/README/eventgen.conf.spec +++ b/splunk_eventgen/splunk_app/README/eventgen.conf.spec @@ -22,7 +22,7 @@ [global] disabled = false debug = false -verbose = false +verbosity = false spoolDir = $SPLUNK_HOME/var/spool/splunk spoolFile = breaker = [^\r\n\s]+ From 04d2351dc60b7b9578653c6adb8aab63162f0c64 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Thu, 23 May 2019 09:47:00 +0800 Subject: [PATCH 51/68] Bugfix/197 multiprocess not working (#218) * Fix issue 197 multiprocess not working --- splunk_eventgen/lib/eventgentimer.py | 15 ++++++------ splunk_eventgen/lib/eventgentoken.py | 13 +--------- .../lib/plugins/output/httpevent.py | 24 +++++++++---------- 3 files changed, 20 insertions(+), 32 deletions(-) diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 1e9f1af2..3c68248f 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -32,7 +32,7 @@ def __init__(self, time, sample=None, config=None, genqueue=None, outputqueue=No self.profiler = config.profiler self.config = config self.sample = sample - self.end = getattr(self.sample, "end") if getattr(self.sample, "end") is not None else -1 + self.end = getattr(self.sample, "end", -1) self.endts = getattr(self.sample, "endts", None) self.generatorQueue = genqueue self.outputQueue = outputqueue @@ -153,7 +153,7 @@ def real_run(self): except Full: self.logger.warning("Generator Queue Full. Skipping current generation.") backfillearliest = lt - + self.sample.backfilldone = True else: # 12/15/13 CS Moving the rating to a separate plugin architecture @@ -187,12 +187,11 @@ def real_run(self): for worker_id in range(self.config.generatorWorkers): # self.generatorPlugin is only an instance, now we need a real plugin. Make a copy of # of the sample in case another generator corrupts it. - copy_sample = copy.copy(self.sample) - copy_tokens = [] - for token in self.sample.tokens: - copy_tokens.append(token.deepcopy(self.sample)) - copy_sample.tokens = copy_tokens - genPlugin = self.generatorPlugin(sample=copy_sample) + # copy_sample = copy.copy(self.sample) + # tokens = copy.deepcopy(self.sample.tokens) + # copy_sample.tokens = tokens + # genPlugin = self.generatorPlugin(sample=copy_sample) + genPlugin = self.generatorPlugin(sample=self.sample) # Adjust queue for threading mode genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) genPlugin.updateCounts(count=count, start_time=et, end_time=lt) diff --git a/splunk_eventgen/lib/eventgentoken.py b/splunk_eventgen/lib/eventgentoken.py index d6c402fe..f409d90f 100644 --- a/splunk_eventgen/lib/eventgentoken.py +++ b/splunk_eventgen/lib/eventgentoken.py @@ -46,9 +46,6 @@ def __init__(self, sample=None): self._earliestTime = (None, None) self._latestTime = (None, None) - if sample: - self.sample = sample - def __str__(self): """Only used for debugging, outputs a pretty printed representation of this token""" # Eliminate recursive going back to parent @@ -68,18 +65,10 @@ def __getstate__(self): def __setstate__(self, d): self.__dict__ = d self._setup_logging() - - def deepcopy(self, sample=None): - # temp = dict([(key, value) for (key, value) in token_object.items() if key != 'sample' and key != 'logger']) - cp = Token() - cp.__setstate__(self.__getstate__()) - if sample: - cp.sample = sample - return cp def _setup_logging(self): self.logger = logging.getLogger('eventgen') - + def _match(self, event): """Executes regular expression match and returns the re.Match object""" return re.match(self.token, event) diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index a000f430..1d2488f6 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -171,15 +171,15 @@ def _sendHTTPEvents(self, payload): numberevents = len(payload) self.logger.debug("Sending %s events to splunk" % numberevents) for line in payload: - self.logger.debug("line: %s " % line) + self.logger.debugv("line: %s " % line) targetline = json.dumps(line) - self.logger.debug("targetline: %s " % targetline) + self.logger.debugv("targetline: %s " % targetline) targetlinesize = len(targetline) totalbytesexpected += targetlinesize if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): stringpayload = stringpayload + targetline currentreadsize = currentreadsize + targetlinesize - self.logger.debug("stringpayload: %s " % stringpayload) + self.logger.debugv("stringpayload: %s " % stringpayload) else: self.logger.debug("Max size for payload hit, sending to splunk then continuing.") try: @@ -203,7 +203,7 @@ def _sendHTTPEvents(self, payload): def _transmitEvents(self, payloadstring): targetServer = [] - self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) + self.logger.debugv("Transmission called with payloadstring: %s " % payloadstring) if self.httpeventoutputmode == "mirror": targetServer = self.serverPool else: @@ -235,35 +235,35 @@ def flush(self, q): payload = [] self.logger.debug("Currently being called with %d events" % len(q)) for event in q: - self.logger.debug("HTTPEvent proccessing event: %s" % event) + self.logger.debugv("HTTPEvent proccessing event: %s" % event) payloadFragment = {} if event.get('_raw') is None or event['_raw'] == "\n": self.logger.error('failure outputting event, does not contain _raw') else: - self.logger.debug("Event contains _raw, attempting to process...") + self.logger.debugv("Event contains _raw, attempting to process...") payloadFragment['event'] = event['_raw'] if event.get('source'): - self.logger.debug("Event contains source, adding to httpevent event") + self.logger.debugv("Event contains source, adding to httpevent event") payloadFragment['source'] = event['source'] if event.get('sourcetype'): - self.logger.debug("Event contains sourcetype, adding to httpevent event") + self.logger.debugv("Event contains sourcetype, adding to httpevent event") payloadFragment['sourcetype'] = event['sourcetype'] self.lastsourcetype = event['sourcetype'] if event.get('host'): - self.logger.debug("Event contains host, adding to httpevent event") + self.logger.debugv("Event contains host, adding to httpevent event") payloadFragment['host'] = event['host'] if event.get('_time'): # make sure _time can be an epoch timestamp try: float(event.get("_time")) - self.logger.debug("Event contains _time, adding to httpevent event") + self.logger.debugv("Event contains _time, adding to httpevent event") payloadFragment['time'] = event['_time'] except: self.logger.error("Timestamp not in epoch format, ignoring event: {0}".format(event)) if event.get('index'): - self.logger.debug("Event contains index, adding to httpevent event") + self.logger.debugv("Event contains index, adding to httpevent event") payloadFragment['index'] = event['index'] - self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) + self.logger.debugv("Full payloadFragment: %s" % json.dumps(payloadFragment)) payload.append(payloadFragment) self.logger.debug("Finished processing events, sending all to splunk") self._sendHTTPEvents(payload) From e2e9a5eaa2d688919db4cfe40350441fbb2e8538 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Fri, 24 May 2019 11:19:10 +0800 Subject: [PATCH 52/68] fix issue 219 (#220) --- splunk_eventgen/eventgen_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 50ca3ccf..a4944cca 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -115,8 +115,8 @@ def _load_config(self, configfile, **kwargs): self.config = Config(configfile, **new_args) self.config.parse() self._reload_plugins() - if getattr(args, "generators"): - generator_worker_count = args.generators + if "args" in kwargs and getattr(kwargs["args"], "generators"): + generator_worker_count = kwargs["args"].generators else: generator_worker_count = self.config.generatorWorkers From c13170c8482f23222360400f7e89c6d658bd3af5 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:47:19 +0800 Subject: [PATCH 53/68] define httpevent_core and add fix eventgen-httpeventout log handler --- splunk_eventgen/eventgen_core.py | 12 + .../lib/plugins/output/httpevent.py | 198 +- .../lib/plugins/output/httpevent_core.py | 228 + .../lib/plugins/output/metric_httpevent.py | 196 +- .../samples/anomalous.hostname.sample | 1 - .../samples/anomalous.ip_address.sample | 1 - .../samples/anomalous.mac_address.sample | 1 - splunk_eventgen/samples/artIDs.sample | 21 - splunk_eventgen/samples/artists.sample | 0 splunk_eventgen/samples/city.state.zipcode | 29470 ----- splunk_eventgen/samples/dist.all.last | 88799 --------------- splunk_eventgen/samples/dist.female.first | 4275 - splunk_eventgen/samples/dist.male.first | 1219 - splunk_eventgen/samples/external_ips.sample | 150 - splunk_eventgen/samples/firstNames.sample | 2000 - splunk_eventgen/samples/hostname.sample | 50 - splunk_eventgen/samples/iana_domains.sample | 316 - splunk_eventgen/samples/internal_ips.sample | 951 - splunk_eventgen/samples/ip_address.sample | 50 - splunk_eventgen/samples/lastNames.sample | 1002 - splunk_eventgen/samples/linux_arch.sample | 25 - splunk_eventgen/samples/mac_address.sample | 50 - .../samples/malicious_domains.sample | 5 - splunk_eventgen/samples/markets.sample | 1 - splunk_eventgen/samples/mdn.sample | 815 - .../samples/networkProvider.sample | 39 - .../samples/oracle11.action.sample | 20 - .../samples/oracleUserNames.sample | 24 - splunk_eventgen/samples/orderType.sample | 6 - .../samples/orig.sample.mobilemusic.csv | 1 - splunk_eventgen/samples/phones.sample | 69 - splunk_eventgen/samples/plans.sample | 24 - splunk_eventgen/samples/radPIDs.sample | 3 - splunk_eventgen/samples/radhosts.sample | 3 - splunk_eventgen/samples/random_domains.sample | 73 - splunk_eventgen/samples/sample.businessevent | 1 - splunk_eventgen/samples/sample.mobilemusic | 3 - .../samples/sample.mobilemusic.csv | 6 - splunk_eventgen/samples/sample.tutorial1 | 2020 - splunk_eventgen/samples/sample.tutorial2 | 274 - splunk_eventgen/samples/sample.tutorial3 | 1 - splunk_eventgen/samples/sample.tutorial4 | 4 - splunk_eventgen/samples/searchArtists.sample | 21 - splunk_eventgen/samples/sha1_checksums.sample | 1000 - splunk_eventgen/samples/states | 50 - splunk_eventgen/samples/states.abbrev | 59 - splunk_eventgen/samples/street.types | 59 - splunk_eventgen/samples/streetNames.sample | 91670 ---------------- splunk_eventgen/samples/streetSuffixes.sample | 24 - splunk_eventgen/samples/streets | 168 - splunk_eventgen/samples/trackIDs.sample | 23 - splunk_eventgen/samples/transType.sample | 6 - splunk_eventgen/samples/uris.sample | 5 - splunk_eventgen/samples/userHostIp.sample | 1000 - splunk_eventgen/samples/userName.sample | 1000 - splunk_eventgen/samples/useragents.sample | 84 - .../samples/useragents_desktop.sample | 75 - .../samples/useragents_mobile.sample | 84 - .../vmware-actuals-guest-aggregate.csv | 847 - .../samples/vmware-actuals-guest-instance.csv | 847 - .../samples/vmware-actuals-guest.csv | 2 - .../samples/vmware-actuals-host-aggregate.csv | 860 - .../samples/vmware-actuals-host-instance.csv | 852 - .../samples/vmware-actuals-host.csv | 2 - splunk_eventgen/samples/vmware-fields.csv | 136 - splunk_eventgen/samples/vmware-hierarchy.csv | 9 - splunk_eventgen/samples/vmware-inventory.csv | 1 - splunk_eventgen/samples/vmware-migration.csv | 1 - .../samples/vmware-perf-guest-aggregate.csv | 29 - .../samples/vmware-perf-guest-instance.csv | 34 - .../samples/vmware-perf-host-aggregate.csv | 15 - .../samples/vmware-perf-host-instance.csv | 211 - splunk_eventgen/samples/vmware-perf.csv | 286 - splunk_eventgen/samples/webhosts.sample | 3 - splunk_eventgen/samples/windbag | 5 - tests/unit/conftest.py | 17 - tests/unit/test_eventgenconfig.py | 277 - tests/unit/test_timeparser.py | 105 - 78 files changed, 246 insertions(+), 232028 deletions(-) create mode 100644 splunk_eventgen/lib/plugins/output/httpevent_core.py delete mode 100644 splunk_eventgen/samples/anomalous.hostname.sample delete mode 100644 splunk_eventgen/samples/anomalous.ip_address.sample delete mode 100644 splunk_eventgen/samples/anomalous.mac_address.sample delete mode 100644 splunk_eventgen/samples/artIDs.sample delete mode 100644 splunk_eventgen/samples/artists.sample delete mode 100644 splunk_eventgen/samples/city.state.zipcode delete mode 100644 splunk_eventgen/samples/dist.all.last delete mode 100644 splunk_eventgen/samples/dist.female.first delete mode 100644 splunk_eventgen/samples/dist.male.first delete mode 100644 splunk_eventgen/samples/external_ips.sample delete mode 100644 splunk_eventgen/samples/firstNames.sample delete mode 100644 splunk_eventgen/samples/hostname.sample delete mode 100644 splunk_eventgen/samples/iana_domains.sample delete mode 100644 splunk_eventgen/samples/internal_ips.sample delete mode 100644 splunk_eventgen/samples/ip_address.sample delete mode 100644 splunk_eventgen/samples/lastNames.sample delete mode 100644 splunk_eventgen/samples/linux_arch.sample delete mode 100644 splunk_eventgen/samples/mac_address.sample delete mode 100644 splunk_eventgen/samples/malicious_domains.sample delete mode 100644 splunk_eventgen/samples/markets.sample delete mode 100644 splunk_eventgen/samples/mdn.sample delete mode 100644 splunk_eventgen/samples/networkProvider.sample delete mode 100644 splunk_eventgen/samples/oracle11.action.sample delete mode 100644 splunk_eventgen/samples/oracleUserNames.sample delete mode 100644 splunk_eventgen/samples/orderType.sample delete mode 100644 splunk_eventgen/samples/orig.sample.mobilemusic.csv delete mode 100644 splunk_eventgen/samples/phones.sample delete mode 100644 splunk_eventgen/samples/plans.sample delete mode 100644 splunk_eventgen/samples/radPIDs.sample delete mode 100644 splunk_eventgen/samples/radhosts.sample delete mode 100644 splunk_eventgen/samples/random_domains.sample delete mode 100644 splunk_eventgen/samples/sample.businessevent delete mode 100644 splunk_eventgen/samples/sample.mobilemusic delete mode 100644 splunk_eventgen/samples/sample.mobilemusic.csv delete mode 100644 splunk_eventgen/samples/sample.tutorial1 delete mode 100644 splunk_eventgen/samples/sample.tutorial2 delete mode 100644 splunk_eventgen/samples/sample.tutorial3 delete mode 100644 splunk_eventgen/samples/sample.tutorial4 delete mode 100644 splunk_eventgen/samples/searchArtists.sample delete mode 100644 splunk_eventgen/samples/sha1_checksums.sample delete mode 100644 splunk_eventgen/samples/states delete mode 100644 splunk_eventgen/samples/states.abbrev delete mode 100644 splunk_eventgen/samples/street.types delete mode 100644 splunk_eventgen/samples/streetNames.sample delete mode 100644 splunk_eventgen/samples/streetSuffixes.sample delete mode 100644 splunk_eventgen/samples/streets delete mode 100644 splunk_eventgen/samples/trackIDs.sample delete mode 100644 splunk_eventgen/samples/transType.sample delete mode 100644 splunk_eventgen/samples/uris.sample delete mode 100644 splunk_eventgen/samples/userHostIp.sample delete mode 100644 splunk_eventgen/samples/userName.sample delete mode 100644 splunk_eventgen/samples/useragents.sample delete mode 100644 splunk_eventgen/samples/useragents_desktop.sample delete mode 100644 splunk_eventgen/samples/useragents_mobile.sample delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host.csv delete mode 100644 splunk_eventgen/samples/vmware-fields.csv delete mode 100644 splunk_eventgen/samples/vmware-hierarchy.csv delete mode 100644 splunk_eventgen/samples/vmware-inventory.csv delete mode 100644 splunk_eventgen/samples/vmware-migration.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-guest-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-guest-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-host-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-host-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-perf.csv delete mode 100644 splunk_eventgen/samples/webhosts.sample delete mode 100644 splunk_eventgen/samples/windbag delete mode 100644 tests/unit/conftest.py delete mode 100644 tests/unit/test_eventgenconfig.py delete mode 100644 tests/unit/test_timeparser.py diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 50ca3ccf..43d35eac 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -265,6 +265,7 @@ def _setup_loggers(self, args=None, config=None): eventgen_metrics_logger_path = os.path.join(log_path, 'eventgen-metrics.log') eventgen_error_logger_path = os.path.join(log_path, 'eventgen-errors.log') eventgen_server_logger_path = os.path.join(log_path, 'eventgen-server.log') + eventgen_httpevent_logger_path = os.path.join(log_path, 'eventgen-httpevent.log') if not config: log_format = '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s' date_format = '%Y-%m-%d %H:%M:%S' @@ -303,6 +304,11 @@ def _setup_loggers(self, args=None, config=None): server_file_handler.setFormatter(json_formatter) server_file_handler.setLevel(logging.INFO) + httpevent_file_handler = logging.handlers.RotatingFileHandler(eventgen_httpevent_logger_path, maxBytes=2500000, + backupCount=10) + httpevent_file_handler.setFormatter(detailed_formatter) + httpevent_file_handler.setLevel(logging.INFO) + # Configure eventgen logger logger = logging.getLogger('eventgen') logger.setLevel(self.args.verbosity or logging.ERROR) @@ -336,6 +342,12 @@ def _setup_loggers(self, args=None, config=None): logger.handlers = [] logger.addHandler(server_file_handler) logger.addHandler(console_handler) + + logger = logging.getLogger('eventgen_httpeventout') + logger.setLevel(logging.INFO) + logger.propagate = False + logger.handlers = [] + logger.addHandler(httpevent_file_handler) else: self.logger_config = config logging.config.dictConfig(self.logger_config) diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index a000f430..96a507f5 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -1,10 +1,6 @@ from __future__ import division -import logging -import random -import urllib - -from outputplugin import OutputPlugin +from httpevent_core import HTTPCoreOutputPlugin try: import requests @@ -29,7 +25,7 @@ def __init__(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) -class HTTPEventOutputPlugin(OutputPlugin): +class HTTPEventOutputPlugin(HTTPCoreOutputPlugin): ''' HTTPEvent output will enable events that are generated to be sent directly to splunk through the HTTP event input. In order to use this output plugin, @@ -37,195 +33,10 @@ class HTTPEventOutputPlugin(OutputPlugin): this json object should look like the following: {servers:[{ protocol:http/https, address:127.0.0.1, port:8088, key:12345-12345-123123123123123123}]} - ''' name = 'httpevent' - MAXQUEUELENGTH = 1000 - useOutputQueue = False - validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - jsonSettings = ['httpeventServers'] - def __init__(self, sample, output_counter=None): - OutputPlugin.__init__(self, sample, output_counter) - - # TODO: make workers a param that can be set in eventgen.conf - def _setup_REST_workers(self, session=None, workers=10): - # disable any "requests" warnings - requests.packages.urllib3.disable_warnings() - # Bind passed in samples to the outputter. - self.lastsourcetype = None - if not session: - session = Session() - self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) - self.active_sessions = [] - - @staticmethod - def _urlencode(value): - ''' - Takes a value and make sure everything int he string is URL safe. - :param value: string - :return: urlencoded string - ''' - return urllib.quote(value) - - @staticmethod - def _bg_convert_json(sess, resp): - ''' - Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the - session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) - :param sess: futures session object. Automatically called on a background_callback as aruguments. - :param resp: futures resp object. Automatically called on a background_callback as aruguments. - :return: - ''' - if resp.status_code == 200: - if getattr(resp, "json", None): - resp.data = resp.json() - else: - if type(resp.data) == str: - resp.data = json.loads(resp.data) - - def updateConfig(self, config): - OutputPlugin.updateConfig(self, config) - try: - if hasattr(self.config, 'httpeventServers') is False: - if hasattr(self._sample, 'httpeventServers'): - self.config.httpeventServers = self._sample.httpeventServers - else: - self.logger.error( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) - raise NoServers( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) - # set default output mode to round robin - if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: - self.httpeventoutputmode = config.httpeventOutputMode - else: - if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: - self.httpeventoutputmode = self._sample.httpeventOutputMode - else: - self.httpeventoutputmode = 'roundrobin' - if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: - self.httpeventmaxsize = self.config.httpeventMaxPayloadSize - else: - if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: - self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize - else: - self.httpeventmaxsize = 10000 - self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) - if isinstance(config.httpeventServers, str): - self.httpeventServers = json.loads(config.httpeventServers) - else: - self.httpeventServers = config.httpeventServers - self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) - self.createConnections() - self.logger.debug("Pool created.") - self.logger.debug("Finished init of httpevent plugin.") - except Exception as e: - self.logger.exception(str(e)) - - def createConnections(self): - self.serverPool = [] - if self.httpeventServers: - for server in self.httpeventServers.get('servers'): - if not server.get('address'): - self.logger.error( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - raise ValueError( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - if not server.get('port'): - self.logger.error( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - if not server.get('key'): - self.logger.error( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - raise ValueError( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - self.logger.debug( - "Validation Passed, Creating a requests object for server: %s" % server.get('address')) - - setserver = {} - setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), - server.get('port')) - setserver['header'] = "Splunk %s" % server.get('key') - self.logger.debug("Adding server set to pool, server: %s" % setserver) - self.serverPool.append(setserver) - else: - raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) - - def _sendHTTPEvents(self, payload): - currentreadsize = 0 - stringpayload = "" - totalbytesexpected = 0 - totalbytessent = 0 - numberevents = len(payload) - self.logger.debug("Sending %s events to splunk" % numberevents) - for line in payload: - self.logger.debug("line: %s " % line) - targetline = json.dumps(line) - self.logger.debug("targetline: %s " % targetline) - targetlinesize = len(targetline) - totalbytesexpected += targetlinesize - if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): - stringpayload = stringpayload + targetline - currentreadsize = currentreadsize + targetlinesize - self.logger.debug("stringpayload: %s " % stringpayload) - else: - self.logger.debug("Max size for payload hit, sending to splunk then continuing.") - try: - self._transmitEvents(stringpayload) - totalbytessent += len(stringpayload) - currentreadsize = 0 - stringpayload = targetline - except Exception as e: - self.logger.exception(str(e)) - raise e - else: - try: - totalbytessent += len(stringpayload) - self.logger.debug( - "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % - (totalbytessent, totalbytesexpected)) - self._transmitEvents(stringpayload) - except Exception as e: - self.logger.exception(str(e)) - raise e - - def _transmitEvents(self, payloadstring): - targetServer = [] - self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) - if self.httpeventoutputmode == "mirror": - targetServer = self.serverPool - else: - targetServer.append(random.choice(self.serverPool)) - for server in targetServer: - self.logger.debug("Selected targetServer object: %s" % targetServer) - url = server['url'] - headers = {} - headers['Authorization'] = server['header'] - headers['content-type'] = 'application/json' - try: - payloadsize = len(payloadstring) - # response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append( - self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) - except Exception as e: - self.logger.error("Failed for exception: %s" % e) - self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % - (url, self.lastsourcetype, payloadsize)) - self.logger.debug( - "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) - raise e + super(HTTPEventOutputPlugin,self).__init__(sample,output_counter) def flush(self, q): self.logger.debug("Flush called on httpevent plugin") @@ -282,9 +93,6 @@ def flush(self, q): except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - def load(): """Returns an instance of the plugin""" diff --git a/splunk_eventgen/lib/plugins/output/httpevent_core.py b/splunk_eventgen/lib/plugins/output/httpevent_core.py new file mode 100644 index 00000000..35284dd3 --- /dev/null +++ b/splunk_eventgen/lib/plugins/output/httpevent_core.py @@ -0,0 +1,228 @@ +from __future__ import division + +import logging +import random +import urllib + +from outputplugin import OutputPlugin + +try: + import requests + from requests import Session + from requests_futures.sessions import FuturesSession + from concurrent.futures import ThreadPoolExecutor +except ImportError: + pass +try: + import ujson as json +except: + import json + + +class NoServers(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class BadConnection(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class HTTPCoreOutputPlugin(OutputPlugin): + name = 'httpcore' + MAXQUEUELENGTH = 1000 + useOutputQueue = False + validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + jsonSettings = ['httpeventServers'] + + def __init__(self, sample, output_counter=None): + OutputPlugin.__init__(self, sample, output_counter) + + # TODO: make workers a param that can be set in eventgen.conf + def _setup_REST_workers(self, session=None, workers=10): + # disable any "requests" warnings + requests.packages.urllib3.disable_warnings() + # Bind passed in samples to the outputter. + self.lastsourcetype = None + if not session: + session = Session() + self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) + self.active_sessions = [] + + @staticmethod + def _urlencode(value): + ''' + Takes a value and make sure everything int he string is URL safe. + :param value: string + :return: urlencoded string + ''' + return urllib.quote(value) + + @staticmethod + def _bg_convert_json(sess, resp): + ''' + Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the + session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) + :param sess: futures session object. Automatically called on a background_callback as aruguments. + :param resp: futures resp object. Automatically called on a background_callback as aruguments. + :return: + ''' + if resp.status_code == 200: + if getattr(resp, "json", None): + resp.data = resp.json() + else: + if type(resp.data) == str: + resp.data = json.loads(resp.data) + + def updateConfig(self, config): + OutputPlugin.updateConfig(self, config) + try: + if hasattr(self.config, 'httpeventServers') is False: + if hasattr(self._sample, 'httpeventServers'): + self.config.httpeventServers = self._sample.httpeventServers + else: + self.logger.error( + 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) + raise NoServers( + 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) + # set default output mode to round robin + if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: + self.httpeventoutputmode = config.httpeventOutputMode + else: + if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: + self.httpeventoutputmode = self._sample.httpeventOutputMode + else: + self.httpeventoutputmode = 'roundrobin' + if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: + self.httpeventmaxsize = self.config.httpeventMaxPayloadSize + else: + if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: + self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize + else: + self.httpeventmaxsize = 10000 + self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) + if isinstance(config.httpeventServers, str): + self.httpeventServers = json.loads(config.httpeventServers) + else: + self.httpeventServers = config.httpeventServers + self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) + self.createConnections() + self.logger.debug("Pool created.") + self.logger.debug("Finished init of %s plugin." % self.name) + except Exception as e: + self.logger.exception(str(e)) + + def createConnections(self): + self.serverPool = [] + if self.httpeventServers: + for server in self.httpeventServers.get('servers'): + if not server.get('address'): + self.logger.error( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + raise ValueError( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + if not server.get('port'): + self.logger.error( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + if not server.get('key'): + self.logger.error( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): + self.logger.error( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + raise ValueError( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + self.logger.debug( + "Validation Passed, Creating a requests object for server: %s" % server.get('address')) + + setserver = {} + setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), + server.get('port')) + setserver['header'] = "Splunk %s" % server.get('key') + self.logger.debug("Adding server set to pool, server: %s" % setserver) + self.serverPool.append(setserver) + else: + raise NoServers('outputMode %s but httpeventServers not specified for sample %s' %(self.name, self._sample.name)) + + def _sendHTTPEvents(self, payload): + currentreadsize = 0 + stringpayload = "" + totalbytesexpected = 0 + totalbytessent = 0 + numberevents = len(payload) + self.logger.debug("Sending %s events to splunk" % numberevents) + for line in payload: + self.logger.debug("line: %s " % line) + targetline = json.dumps(line) + self.logger.debug("targetline: %s " % targetline) + targetlinesize = len(targetline) + totalbytesexpected += targetlinesize + if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): + stringpayload = stringpayload + targetline + currentreadsize = currentreadsize + targetlinesize + self.logger.debug("stringpayload: %s " % stringpayload) + else: + self.logger.debug("Max size for payload hit, sending to splunk then continuing.") + try: + self._transmitEvents(stringpayload) + totalbytessent += len(stringpayload) + currentreadsize = 0 + stringpayload = targetline + except Exception as e: + self.logger.exception(str(e)) + raise e + else: + try: + totalbytessent += len(stringpayload) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) + self._transmitEvents(stringpayload) + except Exception as e: + self.logger.exception(str(e)) + raise e + + def _transmitEvents(self, payloadstring): + targetServer = [] + self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) + if self.httpeventoutputmode == "mirror": + targetServer = self.serverPool + else: + targetServer.append(random.choice(self.serverPool)) + for server in targetServer: + self.logger.debug("Selected targetServer object: %s" % targetServer) + url = server['url'] + headers = {} + headers['Authorization'] = server['header'] + headers['content-type'] = 'application/json' + try: + payloadsize = len(payloadstring) + # response = requests.post(url, data=payloadstring, headers=headers, verify=False) + self.active_sessions.append( + self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + except Exception as e: + self.logger.error("Failed for exception: %s" % e) + self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % + (url, self.lastsourcetype, payloadsize)) + self.logger.debug( + "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) + raise e + + + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_httpeventout') + + +def load(): + """Returns an instance of the plugin""" + return HTTPCoreOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py index f315b2fd..161b1420 100644 --- a/splunk_eventgen/lib/plugins/output/metric_httpevent.py +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -1,10 +1,6 @@ from __future__ import division -import logging -import random -import urllib - -from outputplugin import OutputPlugin +from httpevent_core import HTTPCoreOutputPlugin try: import requests @@ -29,7 +25,7 @@ def __init__(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) -class MetricHTTPEventOutputPlugin(OutputPlugin): +class MetricHTTPEventOutputPlugin(HTTPCoreOutputPlugin): ''' MetricHTTPEvent output will enable events that are generated to be sent directly to splunk metrics indexes through the HTTP event input. In order to use this output plugin, @@ -40,192 +36,9 @@ class MetricHTTPEventOutputPlugin(OutputPlugin): ''' name = 'metric_httpevent' - MAXQUEUELENGTH = 1000 - useOutputQueue = False - validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - jsonSettings = ['httpeventServers'] def __init__(self, sample, output_counter=None): - OutputPlugin.__init__(self, sample, output_counter) - - # TODO: make workers a param that can be set in eventgen.conf - def _setup_REST_workers(self, session=None, workers=10): - # disable any "requests" warnings - requests.packages.urllib3.disable_warnings() - # Bind passed in samples to the outputter. - self.lastsourcetype = None - if not session: - session = Session() - self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) - self.active_sessions = [] - - @staticmethod - def _urlencode(value): - ''' - Takes a value and make sure everything int he string is URL safe. - :param value: string - :return: urlencoded string - ''' - return urllib.quote(value) - - @staticmethod - def _bg_convert_json(sess, resp): - ''' - Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the - session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) - :param sess: futures session object. Automatically called on a background_callback as aruguments. - :param resp: futures resp object. Automatically called on a background_callback as aruguments. - :return: - ''' - if resp.status_code == 200: - if getattr(resp, "json", None): - resp.data = resp.json() - else: - if type(resp.data) == str: - resp.data = json.loads(resp.data) - - def updateConfig(self, config): - OutputPlugin.updateConfig(self, config) - try: - if hasattr(self.config, 'httpeventServers') is False: - if hasattr(self._sample, 'httpeventServers'): - self.config.httpeventServers = self._sample.httpeventServers - else: - self.logger.error( - 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - raise NoServers( - 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - # set default output mode to round robin - if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: - self.httpeventoutputmode = config.httpeventOutputMode - else: - if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: - self.httpeventoutputmode = self._sample.httpeventOutputMode - else: - self.httpeventoutputmode = 'roundrobin' - if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: - self.httpeventmaxsize = self.config.httpeventMaxPayloadSize - else: - if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: - self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize - else: - self.httpeventmaxsize = 10000 - self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) - if isinstance(config.httpeventServers, str): - self.httpeventServers = json.loads(config.httpeventServers) - else: - self.httpeventServers = config.httpeventServers - self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) - self.createConnections() - self.logger.debug("Pool created.") - self.logger.debug("Finished init of metric_httpevent plugin.") - except Exception as e: - self.logger.exception(str(e)) - - def createConnections(self): - self.serverPool = [] - if self.httpeventServers: - for server in self.httpeventServers.get('servers'): - if not server.get('address'): - self.logger.error( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - raise ValueError( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - if not server.get('port'): - self.logger.error( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - if not server.get('key'): - self.logger.error( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - raise ValueError( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - self.logger.debug( - "Validation Passed, Creating a requests object for server: %s" % server.get('address')) - - setserver = {} - setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), - server.get('port')) - setserver['header'] = "Splunk %s" % server.get('key') - self.logger.debug("Adding server set to pool, server: %s" % setserver) - self.serverPool.append(setserver) - else: - raise NoServers('outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - - def _sendHTTPEvents(self, payload): - currentreadsize = 0 - stringpayload = "" - totalbytesexpected = 0 - totalbytessent = 0 - numberevents = len(payload) - self.logger.debug("Sending %s events to splunk" % numberevents) - for line in payload: - self.logger.debug("line: %s " % line) - targetline = json.dumps(line) - self.logger.debug("targetline: %s " % targetline) - targetlinesize = len(targetline) - totalbytesexpected += targetlinesize - if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): - stringpayload = stringpayload + targetline - currentreadsize = currentreadsize + targetlinesize - self.logger.debug("stringpayload: %s " % stringpayload) - else: - self.logger.debug("Max size for payload hit, sending to splunk then continuing.") - try: - self._transmitEvents(stringpayload) - totalbytessent += len(stringpayload) - currentreadsize = 0 - stringpayload = targetline - except Exception as e: - self.logger.exception(str(e)) - raise e - else: - try: - totalbytessent += len(stringpayload) - self.logger.debug( - "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % - (totalbytessent, totalbytesexpected)) - self._transmitEvents(stringpayload) - except Exception as e: - self.logger.exception(str(e)) - raise e - - def _transmitEvents(self, payloadstring): - targetServer = [] - self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) - if self.httpeventoutputmode == "mirror": - targetServer = self.serverPool - else: - targetServer.append(random.choice(self.serverPool)) - for server in targetServer: - self.logger.debug("Selected targetServer object: %s" % targetServer) - url = server['url'] - headers = {} - headers['Authorization'] = server['header'] - headers['content-type'] = 'application/json' - try: - payloadsize = len(payloadstring) - # response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append( - self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) - except Exception as e: - self.logger.error("Failed for exception: %s" % e) - self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % - (url, self.lastsourcetype, payloadsize)) - self.logger.debug( - "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) - raise e + super(MetricHTTPEventOutputPlugin, self).__init__(sample, output_counter) def flush(self, q): self.logger.debug("Flush called on metric_httpevent plugin") @@ -286,9 +99,6 @@ def flush(self, q): except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - def load(): """Returns an instance of the plugin""" diff --git a/splunk_eventgen/samples/anomalous.hostname.sample b/splunk_eventgen/samples/anomalous.hostname.sample deleted file mode 100644 index be935ae0..00000000 --- a/splunk_eventgen/samples/anomalous.hostname.sample +++ /dev/null @@ -1 +0,0 @@ -HOST-001 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.ip_address.sample b/splunk_eventgen/samples/anomalous.ip_address.sample deleted file mode 100644 index 5c34a96d..00000000 --- a/splunk_eventgen/samples/anomalous.ip_address.sample +++ /dev/null @@ -1 +0,0 @@ -10.11.36.20 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.mac_address.sample b/splunk_eventgen/samples/anomalous.mac_address.sample deleted file mode 100644 index 4750e3b7..00000000 --- a/splunk_eventgen/samples/anomalous.mac_address.sample +++ /dev/null @@ -1 +0,0 @@ -19:61:3c:3e:20:84 \ No newline at end of file diff --git a/splunk_eventgen/samples/artIDs.sample b/splunk_eventgen/samples/artIDs.sample deleted file mode 100644 index 73029f91..00000000 --- a/splunk_eventgen/samples/artIDs.sample +++ /dev/null @@ -1,21 +0,0 @@ -0019 -0018 -0014 -006 -0026 -0017 -0016 -0015 -0027 -007 -0021 -0011 -0012 -0013 -0020 -005 -0044 -001 -0032 -008 -0022 \ No newline at end of file diff --git a/splunk_eventgen/samples/artists.sample b/splunk_eventgen/samples/artists.sample deleted file mode 100644 index e69de29b..00000000 diff --git a/splunk_eventgen/samples/city.state.zipcode b/splunk_eventgen/samples/city.state.zipcode deleted file mode 100644 index 100bb1dd..00000000 --- a/splunk_eventgen/samples/city.state.zipcode +++ /dev/null @@ -1,29470 +0,0 @@ -Acmar,AL,35004 -Adamsville,AL,35005 -Adger,AL,35006 -Keystone,AL,35007 -New Site,AL,35010 -Alpine,AL,35014 -Arab,AL,35016 -Baileyton,AL,35019 -Bessemer,AL,35020 -Hueytown,AL,35023 -Blountsville,AL,35031 -Bremen,AL,35033 -Brent,AL,35034 -Brierfield,AL,35035 -Calera,AL,35040 -Centreville,AL,35042 -Chelsea,AL,35043 -Coosa Pines,AL,35044 -Clanton,AL,35045 -Cleveland,AL,35049 -Columbiana,AL,35051 -Crane Hill,AL,35053 -Cropwell,AL,35054 -Cullman,AL,35055 -Dolomite,AL,35061 -Dora,AL,35062 -Empire,AL,35063 -Fairfield,AL,35064 -Coalburg,AL,35068 -Gardendale,AL,35071 -Goodwater,AL,35072 -Alden,AL,35073 -Hanceville,AL,35077 -Harpersville,AL,35078 -Hayden,AL,35079 -Helena,AL,35080 -Holly Pond,AL,35083 -Jemison,AL,35085 -Joppa,AL,35087 -Kellyton,AL,35089 -Kimberly,AL,35091 -Leeds,AL,35094 -Lincoln,AL,35096 -Logan,AL,35098 -Mc Calla,AL,35111 -Maylene,AL,35114 -Montevallo,AL,35115 -Morris,AL,35116 -Mount Olive,AL,35117 -Sylvan Springs,AL,35118 -Odenville,AL,35120 -Oneonta,AL,35121 -Indian Springs,AL,35124 -Pell City,AL,35125 -Dixiana,AL,35126 -Pleasant Grove,AL,35127 -Quinton,AL,35130 -Ragland,AL,35131 -Remlap,AL,35133 -Riverside,AL,35135 -Rockford,AL,35136 -Shelby,AL,35143 -Springville,AL,35146 -Sterrett,AL,35147 -Sumiton,AL,35148 -Sylacauga,AL,35150 -Talladega,AL,35160 -Thorsby,AL,35171 -Trafford,AL,35172 -Trussville,AL,35173 -Union Grove,AL,35175 -Vandiver,AL,35176 -Vincent,AL,35178 -Vinemont,AL,35179 -Warrior,AL,35180 -Weogufka,AL,35183 -West Blocton,AL,35184 -Wilsonville,AL,35186 -Woodstock,AL,35188 -Birmingham,AL,35203 -Birmingham,AL,35204 -Birmingham,AL,35205 -Birmingham,AL,35206 -Birmingham,AL,35207 -Birmingham,AL,35208 -Homewood,AL,35209 -Irondale,AL,35210 -Birmingham,AL,35211 -Birmingham,AL,35212 -Crestline Height,AL,35213 -Birmingham,AL,35214 -Center Point,AL,35215 -Vestavia Hills,AL,35216 -Birmingham,AL,35217 -Birmingham,AL,35218 -Birmingham,AL,35221 -Birmingham,AL,35222 -Mountain Brook,AL,35223 -Birmingham,AL,35224 -Bluff Park,AL,35226 -Midfield,AL,35228 -Birmingham,AL,35233 -Birmingham,AL,35234 -Center Point,AL,35235 -Shoal Creek,AL,35242 -Cahaba Heights,AL,35243 -Hoover,AL,35244 -Tuscaloosa,AL,35401 -Holt,AL,35404 -Tuscaloosa,AL,35405 -Tuscaloosa,AL,35406 -Stewart,AL,35441 -Aliceville,AL,35442 -Boligee,AL,35443 -Brookwood,AL,35444 -Buhl,AL,35446 -Carrollton,AL,35447 -Coker,AL,35452 -Cottondale,AL,35453 -Duncanville,AL,35456 -Echola,AL,35457 -Elrod,AL,35458 -Emelle,AL,35459 -Epes,AL,35460 -Ethelsville,AL,35461 -Eutaw,AL,35462 -Fosters,AL,35463 -Gainesville,AL,35464 -Gordo,AL,35466 -Knoxville,AL,35469 -Coatopa,AL,35470 -Cypress,AL,35474 -Northport,AL,35476 -Ralph,AL,35480 -Reform,AL,35481 -Vance,AL,35490 -Jasper,AL,35501 -Addison,AL,35540 -Arley,AL,35541 -Bankston,AL,35542 -Bear Creek,AL,35543 -Beaverton,AL,35544 -Berry,AL,35546 -Brilliant,AL,35548 -Carbon Hill,AL,35549 -Cordova,AL,35550 -Detroit,AL,35552 -Double Springs,AL,35553 -Eldridge,AL,35554 -Fayette,AL,35555 -Guin,AL,35563 -Hackleburg,AL,35564 -Haleyville,AL,35565 -Hamilton,AL,35570 -Hodges,AL,35571 -Houston,AL,35572 -Kennedy,AL,35574 -Lynn,AL,35575 -Millport,AL,35576 -Nauvoo,AL,35578 -Oakman,AL,35579 -Parrish,AL,35580 -Phil Campbell,AL,35581 -Red Bay,AL,35582 -Spruce Pine,AL,35585 -Sulligent,AL,35586 -Townley,AL,35587 -Vernon,AL,35592 -Vina,AL,35593 -Winfield,AL,35594 -Decatur,AL,35601 -Decatur,AL,35603 -Anderson,AL,35610 -Athens,AL,35611 -Cherokee,AL,35616 -Courtland,AL,35618 -Danville,AL,35619 -Elkmont,AL,35620 -Eva,AL,35621 -Falkville,AL,35622 -Florence,AL,35630 -Florence,AL,35633 -Hartselle,AL,35640 -Hillsboro,AL,35643 -Killen,AL,35645 -Leighton,AL,35646 -Lester,AL,35647 -Lexington,AL,35648 -Moulton,AL,35650 -Mount Hope,AL,35651 -Rogersville,AL,35652 -Russellville,AL,35653 -Sheffield,AL,35660 -Muscle Shoals,AL,35661 -Somerville,AL,35670 -Tanner,AL,35671 -Town Creek,AL,35672 -Trinity,AL,35673 -Tuscumbia,AL,35674 -Waterloo,AL,35677 -Ardmore,AL,35739 -Bridgeport,AL,35740 -Brownsboro,AL,35741 -Dutton,AL,35744 -Estillfork,AL,35745 -Fackler,AL,35746 -Grant,AL,35747 -Gurley,AL,35748 -Harvest,AL,35749 -Hazel Green,AL,35750 -Hollytree,AL,35751 -Hollywood,AL,35752 -Laceys Spring,AL,35754 -Langston,AL,35755 -Triana,AL,35758 -Meridianville,AL,35759 -New Hope,AL,35760 -New Market,AL,35761 -Big Cove,AL,35763 -Paint Rock,AL,35764 -Pisgah,AL,35765 -Princeton,AL,35766 -Hytop,AL,35768 -Section,AL,35771 -Stevenson,AL,35772 -Toney,AL,35773 -Trenton,AL,35774 -Valhermoso Sprin,AL,35775 -Woodville,AL,35776 -Huntsville,AL,35801 -Huntsville,AL,35802 -Huntsville,AL,35803 -Huntsville,AL,35805 -Huntsville,AL,35806 -Huntsville,AL,35808 -Huntsville,AL,35810 -Huntsville,AL,35811 -Huntsville,AL,35816 -Huntsville,AL,35824 -Southside,AL,35901 -Hokes Bluff,AL,35903 -Gadsden,AL,35904 -Glencoe,AL,35905 -Albertville,AL,35950 -Snead,AL,35952 -Ashville,AL,35953 -Attalla,AL,35954 -Boaz,AL,35957 -Bryant,AL,35958 -Cedar Bluff,AL,35959 -Centre,AL,35960 -Collinsville,AL,35961 -Crossville,AL,35962 -Dawson,AL,35963 -Flat Rock,AL,35966 -Fort Payne,AL,35967 -Fyffe,AL,35971 -Gallant,AL,35972 -Gaylesville,AL,35973 -Geraldine,AL,35974 -Groveoak,AL,35975 -Guntersville,AL,35976 -Henagar,AL,35978 -Higdon,AL,35979 -Horton,AL,35980 -Ider,AL,35981 -Leesburg,AL,35983 -Mentone,AL,35984 -Rainsville,AL,35986 -Steele,AL,35987 -Sylvania,AL,35988 -Valley Head,AL,35989 -Autaugaville,AL,36003 -Eufaula,AL,36004 -Banks,AL,36005 -Billingsley,AL,36006 -Brantley,AL,36009 -Brundidge,AL,36010 -Cecil,AL,36013 -Clayton,AL,36016 -Clio,AL,36017 -Deatsville,AL,36022 -Eclectic,AL,36024 -Elmore,AL,36025 -Equality,AL,36026 -Eufaula,AL,36027 -Dozier,AL,36028 -Fitzpatrick,AL,36029 -Forest Home,AL,36030 -Fort Davis,AL,36031 -Fort Deposit,AL,36032 -Georgiana,AL,36033 -Glenwood,AL,36034 -Goshen,AL,36035 -Grady,AL,36036 -Greenville,AL,36037 -Gantt,AL,36038 -Hardaway,AL,36039 -Hayneville,AL,36040 -Highland Home,AL,36041 -Honoraville,AL,36042 -Hope Hull,AL,36043 -Lapine,AL,36046 -Letohatchee,AL,36047 -Louisville,AL,36048 -Luverne,AL,36049 -Marbury,AL,36051 -Mathews,AL,36052 -Midway,AL,36053 -Millbrook,AL,36054 -Perote,AL,36061 -Pike Road,AL,36064 -Prattville,AL,36066 -Prattville,AL,36067 -Ramer,AL,36069 -Rutledge,AL,36071 -Shorter,AL,36075 -Tallassee,AL,36078 -Titus,AL,36080 -Troy,AL,36081 -Tuskegee,AL,36083 -Tuskegee Institu,AL,36088 -Union Springs,AL,36089 -Verbena,AL,36091 -Wetumpka,AL,36092 -Montgomery,AL,36104 -Montgomery,AL,36105 -Montgomery,AL,36106 -Montgomery,AL,36107 -Montgomery,AL,36108 -Montgomery,AL,36109 -Montgomery,AL,36110 -Montgomery,AL,36111 -Maxwell A F B,AL,36113 -Gunter Afs,AL,36115 -Montgomery,AL,36116 -Montgomery,AL,36117 -Anniston,AL,36201 -Oxford,AL,36203 -Fort Mc Clellan,AL,36205 -Anniston,AL,36206 -Alexandria,AL,36250 -Ashland,AL,36251 -Cragford,AL,36255 -Daviston,AL,36256 -Delta,AL,36258 -Eastaboga,AL,36260 -Fruithurst,AL,36262 -Graham,AL,36263 -Heflin,AL,36264 -Jacksonville,AL,36265 -Lineville,AL,36266 -Millerville,AL,36267 -Munford,AL,36268 -Muscadine,AL,36269 -Newell,AL,36270 -Ohatchee,AL,36271 -Piedmont,AL,36272 -Ranburne,AL,36273 -Rock Mills,AL,36274 -Wadley,AL,36276 -Weaver,AL,36277 -Wedowee,AL,36278 -Wellington,AL,36279 -Woodland,AL,36280 -Taylor,AL,36301 -Napier Field,AL,36303 -Abbeville,AL,36310 -Ariton,AL,36311 -Ashford,AL,36312 -Black,AL,36314 -Chancellor,AL,36316 -Clopton,AL,36317 -Coffee Springs,AL,36318 -Columbia,AL,36319 -Cottonwood,AL,36320 -Daleville,AL,36322 -Elba,AL,36323 -Enterprise,AL,36330 -Geneva,AL,36340 -Gordon,AL,36343 -Hartford,AL,36344 -Headland,AL,36345 -Jack,AL,36346 -Malvern,AL,36349 -Midland City,AL,36350 -New Brockton,AL,36351 -Newton,AL,36352 -Newville,AL,36353 -Ozark,AL,36360 -Fort Rucker,AL,36362 -Pansey,AL,36370 -Shorterville,AL,36373 -Skipperville,AL,36374 -Slocomb,AL,36375 -Webb,AL,36376 -Evergreen,AL,36401 -Allen,AL,36419 -Andalusia,AL,36420 -Beatrice,AL,36425 -East Brewton,AL,36426 -Castleberry,AL,36432 -Coy,AL,36435 -Dickinson,AL,36436 -Flomaton,AL,36441 -Florala,AL,36442 -Franklin,AL,36444 -Frisco City,AL,36445 -Fulton,AL,36446 -Grove Hill,AL,36451 -Kinston,AL,36453 -Lenox,AL,36454 -Mc Kenzie,AL,36456 -Monroeville,AL,36460 -Opp,AL,36467 -Peterman,AL,36471 -Range,AL,36473 -Red Level,AL,36474 -Repton,AL,36475 -Samson,AL,36477 -Uriah,AL,36480 -Vredenburgh,AL,36481 -Whatley,AL,36482 -Wing,AL,36483 -Atmore,AL,36502 -Axis,AL,36505 -Bay Minette,AL,36507 -Bayou La Batre,AL,36509 -Bigbee,AL,36510 -Bon Secour,AL,36511 -Carlton,AL,36515 -Chatom,AL,36518 -Chunchula,AL,36521 -Citronelle,AL,36522 -Coden,AL,36523 -Coffeeville,AL,36524 -Creola,AL,36525 -Daphne,AL,36526 -Spanish Fort,AL,36527 -Dauphin Island,AL,36528 -Deer Park,AL,36529 -Elberta,AL,36530 -Fairhope,AL,36532 -Foley,AL,36535 -Frankville,AL,36538 -Fruitdale,AL,36539 -Gainestown,AL,36540 -Grand Bay,AL,36541 -Fort Morgan,AL,36542 -Irvington,AL,36544 -Jackson,AL,36545 -Leroy,AL,36548 -Lillian,AL,36549 -Little River,AL,36550 -Loxley,AL,36551 -Mc Intosh,AL,36553 -Magnolia Springs,AL,36555 -Millry,AL,36558 -Mount Vernon,AL,36560 -Orange Beach,AL,36561 -Perdido,AL,36562 -Robertsdale,AL,36567 -Saint Stephens,AL,36569 -Salitpa,AL,36570 -Saraland,AL,36571 -Satsuma,AL,36572 -Seminole,AL,36574 -Semmes,AL,36575 -Silverhill,AL,36576 -Stockton,AL,36579 -Summerdale,AL,36580 -Theodore,AL,36582 -Tibbie,AL,36583 -Vinegar Bend,AL,36584 -Wagarville,AL,36585 -Walker Springs,AL,36586 -Wilmer,AL,36587 -Mobile,AL,36602 -Mobile,AL,36603 -Mobile,AL,36604 -Mobile,AL,36605 -Mobile,AL,36606 -Mobile,AL,36607 -Mobile,AL,36608 -Mobile,AL,36609 -Prichard,AL,36610 -Chickasaw,AL,36611 -Mobile,AL,36612 -Eight Mile,AL,36613 -Brookley Field,AL,36615 -Mobile,AL,36617 -Mobile,AL,36618 -Mobile,AL,36619 -Mobile,AL,36693 -Mobile,AL,36695 -Selma,AL,36701 -Selma,AL,36703 -Alberta,AL,36720 -Arlington,AL,36722 -Camden,AL,36726 -Campbell,AL,36727 -Catherine,AL,36728 -Demopolis,AL,36732 -Dixons Mills,AL,36736 -Faunsdale,AL,36738 -Forkland,AL,36740 -Gallion,AL,36742 -Greensboro,AL,36744 -Linden,AL,36748 -Jones,AL,36749 -Maplesville,AL,36750 -Lower Peach Tree,AL,36751 -Burkville,AL,36752 -Magnolia,AL,36754 -Marion,AL,36756 -Plantersville,AL,36758 -Marion Junction,AL,36759 -Boys Ranch,AL,36761 -Morvin,AL,36762 -Newbern,AL,36765 -Orrville,AL,36767 -Pine Apple,AL,36768 -Pine Hill,AL,36769 -Prairie,AL,36771 -Safford,AL,36773 -Sardis,AL,36775 -Sawyerville,AL,36776 -Sprott,AL,36779 -Sweet Water,AL,36782 -Thomaston,AL,36783 -Thomasville,AL,36784 -Benton,AL,36785 -Uniontown,AL,36786 -Stanton,AL,36790 -Randolph,AL,36792 -Lawley,AL,36793 -Opelika,AL,36801 -Auburn,AL,36830 -Camp Hill,AL,36850 -Cusseta,AL,36852 -Dadeville,AL,36853 -Valley,AL,36854 -Five Points,AL,36855 -Hatchechubbee,AL,36858 -Hurtsboro,AL,36860 -Jacksons Gap,AL,36861 -Lafayette,AL,36862 -Lanett,AL,36863 -Notasulga,AL,36866 -Phenix City,AL,36867 -Phenix City,AL,36869 -Pittsview,AL,36871 -Salem,AL,36874 -Seale,AL,36875 -Smiths,AL,36877 -Waverly,AL,36879 -Butler,AL,36904 -Cuba,AL,36907 -Gilbertown,AL,36908 -Jachin,AL,36910 -Lisman,AL,36912 -Needham,AL,36915 -Pennington,AL,36916 -Silas,AL,36919 -Toxey,AL,36921 -Ward,AL,36922 -York,AL,36925 -98791,AK,98791 -Anchorage,AK,99501 -Anchorage,AK,99502 -Anchorage,AK,99503 -Anchorage,AK,99504 -Fort Richardson,AK,99505 -Elmendorf Afb,AK,99506 -Anchorage,AK,99507 -Anchorage,AK,99508 -Anchorage,AK,99515 -Anchorage,AK,99516 -Anchorage,AK,99517 -Anchorage,AK,99518 -Port Heiden,AK,99549 -Akiachak,AK,99551 -Akiak,AK,99552 -Akutan,AK,99553 -Alakanuk,AK,99554 -Aleknagik,AK,99555 -Nikolaevsk,AK,99556 -Chuathbaluk,AK,99557 -Anvik,AK,99558 -Atmautluak,AK,99559 -Chefornak,AK,99561 -Chevak,AK,99563 -Chignik,AK,99564 -Chignik Lagoon,AK,99565 -Chugiak,AK,99567 -Clam Gulch,AK,99568 -Clarks Point,AK,99569 -Nelson Lagoon,AK,99571 -Cooper Landing,AK,99572 -Copper Center,AK,99573 -Chenega Bay,AK,99574 -Crooked Creek,AK,99575 -Koliganek,AK,99576 -Eagle River,AK,99577 -Eek,AK,99578 -Egegik,AK,99579 -Ekwok,AK,99580 -Emmonak,AK,99581 -False Pass,AK,99583 -Marshall,AK,99585 -Slana,AK,99586 -Glennallen,AK,99588 -Goodnews Bay,AK,99589 -Grayling,AK,99590 -Saint George Isl,AK,99591 -Holy Cross,AK,99602 -Port Graham,AK,99603 -Hooper Bay,AK,99604 -Kokhanok,AK,99606 -Kalskag,AK,99607 -Kasilof,AK,99610 -Kenai,AK,99611 -King Cove,AK,99612 -Igiugig,AK,99613 -Kipnuk,AK,99614 -Akhiok,AK,99615 -Kotlik,AK,99620 -Kwethluk,AK,99621 -Kwigillingok,AK,99622 -Levelock,AK,99625 -Lower Kalskag,AK,99626 -Mc Grath,AK,99627 -Manokotak,AK,99628 -Mekoryuk,AK,99630 -Moose Pass,AK,99631 -Mountain Village,AK,99632 -Naknek,AK,99633 -Napakiak,AK,99634 -New Stuyahok,AK,99636 -Nikolski,AK,99638 -Ninilchik,AK,99639 -Nondalton,AK,99640 -Butte,AK,99645 -Pedro Bay,AK,99647 -Perryville,AK,99648 -Pilot Point,AK,99649 -Pilot Station,AK,99650 -Platinum,AK,99651 -Port Alsworth,AK,99653 -Wasilla,AK,99654 -Quinhagak,AK,99655 -Red Devil,AK,99656 -Russian Mission,AK,99657 -Saint Marys,AK,99658 -Saint Michael,AK,99659 -Saint Paul Islan,AK,99660 -Sand Point,AK,99661 -Scammon Bay,AK,99662 -Seward,AK,99664 -Shageluk,AK,99665 -Sleetmute,AK,99668 -Soldotna,AK,99669 -South Naknek,AK,99670 -Stebbins,AK,99671 -Sterling,AK,99672 -Talkeetna,AK,99676 -Tuluksak,AK,99679 -Tununak,AK,99681 -Tyonek,AK,99682 -Trapper Creek,AK,99683 -Unalakleet,AK,99684 -Unalaska,AK,99685 -Valdez,AK,99686 -Wasilla,AK,99687 -Willow,AK,99688 -Yakutat,AK,99689 -Nikolai,AK,99691 -Dutch Harbor,AK,99692 -Coldfoot,AK,99701 -Eielson Afb,AK,99702 -Fort Wainwright,AK,99703 -Clear,AK,99704 -North Pole,AK,99705 -Fairbanks,AK,99709 -Fairbanks,AK,99712 -Salcha,AK,99714 -Allakaket,AK,99720 -Anaktuvuk Pass,AK,99721 -Arctic Village,AK,99722 -Barrow,AK,99723 -Beaver,AK,99724 -Bettles Field,AK,99726 -Buckland,AK,99727 -Cantwell,AK,99729 -Central,AK,99730 -Circle,AK,99733 -Prudhoe Bay,AK,99734 -Deering,AK,99736 -Dot Lake,AK,99737 -Elim,AK,99739 -Fort Yukon,AK,99740 -Galena,AK,99741 -Gambell,AK,99742 -Healy,AK,99743 -Anderson,AK,99744 -Hughes,AK,99745 -Huslia,AK,99746 -Kaktovik,AK,99747 -Kaltag,AK,99748 -Kiana,AK,99749 -Kivalina,AK,99750 -Kobuk,AK,99751 -Kotzebue,AK,99752 -Koyuk,AK,99753 -Denali National,AK,99755 -Manley Hot Sprin,AK,99756 -Lake Minchumina,AK,99757 -Minto,AK,99758 -Point Lay,AK,99759 -Nenana,AK,99760 -Noatak,AK,99761 -Golovin,AK,99762 -Noorvik,AK,99763 -Nulato,AK,99765 -Point Hope,AK,99766 -Rampart,AK,99767 -Ruby,AK,99768 -Savoonga,AK,99769 -Selawik,AK,99770 -Shaktoolik,AK,99771 -Shishmaref,AK,99772 -Shungnak,AK,99773 -Stevens Village,AK,99774 -Tanana,AK,99777 -Teller,AK,99778 -Border,AK,99780 -Venetie,AK,99781 -Wainwright,AK,99782 -Wales,AK,99783 -White Mountain,AK,99784 -Brevig Mission,AK,99785 -Ambler,AK,99786 -Chalkyitsik,AK,99788 -Nuiqsut,AK,99789 -Juneau,AK,99801 -Angoon,AK,99820 -Douglas,AK,99824 -Gustavus,AK,99826 -Haines,AK,99827 -Hoonah,AK,99829 -Petersburg,AK,99833 -Sitka,AK,99835 -Skagway,AK,99840 -Ketchikan,AK,99901 -Thorne Bay,AK,99919 -Craig,AK,99921 -Hydaburg,AK,99922 -Hyder,AK,99923 -Klawock,AK,99925 -Metlakatla,AK,99926 -Point Baker,AK,99927 -Wrangell,AK,99929 -Ketchikan,AK,99950 -Phoenix,AZ,85003 -Phoenix,AZ,85004 -Phoenix,AZ,85006 -Phoenix,AZ,85007 -Phoenix,AZ,85008 -Phoenix,AZ,85009 -Phoenix,AZ,85012 -Phoenix,AZ,85013 -Phoenix,AZ,85014 -Phoenix,AZ,85015 -Phoenix,AZ,85016 -Phoenix,AZ,85017 -Phoenix,AZ,85018 -Phoenix,AZ,85019 -Phoenix,AZ,85020 -Phoenix,AZ,85021 -Phoenix,AZ,85022 -Phoenix,AZ,85023 -Phoenix,AZ,85024 -New River Stage,AZ,85027 -Phoenix,AZ,85028 -Phoenix,AZ,85029 -Phoenix,AZ,85031 -Phoenix,AZ,85032 -Phoenix,AZ,85033 -Phoenix,AZ,85034 -Phoenix,AZ,85035 -Phoenix,AZ,85037 -Phoenix,AZ,85039 -Phoenix,AZ,85040 -Phoenix,AZ,85041 -Phoenix,AZ,85043 -Phoenix,AZ,85044 -Phoenix,AZ,85051 -Mesa,AZ,85201 -Mesa,AZ,85202 -Mesa,AZ,85203 -Mesa,AZ,85204 -Mesa,AZ,85205 -Mesa,AZ,85206 -Mesa,AZ,85207 -Mesa,AZ,85208 -Mesa,AZ,85210 -Mesa,AZ,85213 -Gold Canyon,AZ,85219 -Apache Junction,AZ,85220 -Eleven Mile Corn,AZ,85222 -Chandler,AZ,85224 -Chandler,AZ,85225 -Chandler,AZ,85226 -Coolidge,AZ,85228 -Eloy,AZ,85231 -Florence,AZ,85232 -Gilbert,AZ,85234 -Higley,AZ,85236 -Kearny,AZ,85237 -Mobile,AZ,85239 -Williams Afb,AZ,85240 -Arizona Boys Ran,AZ,85242 -Sacaton,AZ,85247 -Sun Lakes,AZ,85248 -Chandler,AZ,85249 -Scottsdale,AZ,85250 -Scottsdale,AZ,85251 -Paradise Valley,AZ,85253 -Scottsdale,AZ,85254 -Scottsdale,AZ,85255 -Scottsdale,AZ,85256 -Scottsdale,AZ,85257 -Scottsdale,AZ,85258 -Scottsdale,AZ,85259 -Scottsdale,AZ,85260 -Scottsdale,AZ,85262 -Fort Mcdowell,AZ,85264 -Fountain Hills,AZ,85268 -Stanfield,AZ,85272 -Superior,AZ,85273 -Tempe,AZ,85281 -Tempe,AZ,85282 -Tempe,AZ,85283 -Tempe,AZ,85284 -Winkelman,AZ,85292 -Glendale,AZ,85301 -Glendale,AZ,85302 -Glendale,AZ,85303 -Glendale,AZ,85304 -Glendale,AZ,85305 -Glendale,AZ,85306 -Luke Afb,AZ,85307 -Glendale,AZ,85308 -Luke Afb,AZ,85309 -Glendale,AZ,85310 -Why,AZ,85321 -Arlington,AZ,85322 -Avondale,AZ,85323 -Rock Springs,AZ,85324 -Buckeye,AZ,85326 -Cibola,AZ,85328 -Cave Creek,AZ,85331 -Congress,AZ,85332 -Dateland,AZ,85333 -El Mirage,AZ,85335 -Gila Bend,AZ,85337 -Goodyear,AZ,85338 -Laveen,AZ,85339 -Litchfield Park,AZ,85340 -Morristown,AZ,85342 -Palo Verde,AZ,85343 -Empire Landing,AZ,85344 -Peoria,AZ,85345 -Roll,AZ,85347 -Salome,AZ,85348 -Somerton,AZ,85350 -Sun City,AZ,85351 -Tolleson,AZ,85353 -Tonopah,AZ,85354 -Waddell,AZ,85355 -Wellton,AZ,85356 -Wittmann,AZ,85361 -Yarnell,AZ,85362 -Youngtown,AZ,85363 -Yuma,AZ,85364 -Yuma Proving Gro,AZ,85365 -Sun City,AZ,85373 -Surprise,AZ,85374 -Sun City West,AZ,85375 -Peoria,AZ,85381 -Peoria,AZ,85382 -Wickenburg,AZ,85390 -Globe,AZ,85501 -Bylas,AZ,85530 -Clifton,AZ,85533 -Franklin,AZ,85534 -Eden,AZ,85535 -Miami,AZ,85539 -Morenci,AZ,85540 -Payson,AZ,85541 -Peridot,AZ,85542 -Pima,AZ,85543 -Strawberry,AZ,85544 -Roosevelt,AZ,85545 -Safford,AZ,85546 -San Carlos,AZ,85550 -Thatcher,AZ,85552 -Benson,AZ,85602 -Bisbee,AZ,85603 -Cochise,AZ,85606 -Douglas,AZ,85607 -Elfrida,AZ,85610 -Elgin,AZ,85611 -Fort Huachuca,AZ,85613 -Green Valley,AZ,85614 -Hereford,AZ,85615 -Huachuca City,AZ,85616 -Mc Neal,AZ,85617 -Mammoth,AZ,85618 -Nogales,AZ,85621 -Oracle,AZ,85623 -Patagonia,AZ,85624 -Pearce,AZ,85625 -Sahuarita,AZ,85629 -Saint David,AZ,85630 -San Manuel,AZ,85631 -Portal,AZ,85632 -Pisinemo,AZ,85634 -Sierra Vista,AZ,85635 -Sonoita,AZ,85637 -Tombstone,AZ,85638 -Amado,AZ,85640 -Vail,AZ,85641 -Willcox,AZ,85643 -Amado,AZ,85645 -Marana,AZ,85653 -Tucson,AZ,85701 -Casas Adobes,AZ,85704 -Tucson,AZ,85705 -Tucson,AZ,85706 -Tucson,AZ,85708 -Tucson,AZ,85710 -Tucson,AZ,85711 -Tucson,AZ,85712 -Tucson,AZ,85713 -Tucson,AZ,85714 -Tucson,AZ,85715 -Tucson,AZ,85716 -Tucson,AZ,85718 -Tucson,AZ,85719 -Tucson,AZ,85730 -Tucson,AZ,85735 -Tucson,AZ,85736 -Oro Valley,AZ,85737 -Tucson,AZ,85741 -Tucson,AZ,85743 -Tucson,AZ,85745 -Tucson,AZ,85746 -Tucson,AZ,85747 -Tucson,AZ,85748 -Tucson,AZ,85749 -Show Low,AZ,85901 -Alpine,AZ,85920 -Blue,AZ,85922 -Concho,AZ,85924 -Eagar,AZ,85925 -Heber,AZ,85928 -Lakeside,AZ,85929 -Pinetop,AZ,85935 -Saint Johns,AZ,85936 -Snowflake,AZ,85937 -Springerville,AZ,85938 -Flagstaff,AZ,86001 -Flagstaff,AZ,86004 -Colorado City,AZ,86021 -Fredonia,AZ,86022 -Holbrook,AZ,86025 -Hotevilla,AZ,86030 -Kayenta,AZ,86033 -Keams Canyon,AZ,86034 -Leupp,AZ,86035 -Marble Canyon,AZ,86036 -Mormon Lake,AZ,86038 -Kykotsmovi Villa,AZ,86039 -Greenehaven,AZ,86040 -Polacca,AZ,86042 -Second Mesa,AZ,86043 -Tonalea,AZ,86044 -Tuba City,AZ,86045 -Williams,AZ,86046 -Winslow,AZ,86047 -Kaibito,AZ,86053 -Shonto,AZ,86054 -Prescott,AZ,86301 -Groom Creek,AZ,86303 -Prescott Valley,AZ,86314 -Ash Fork,AZ,86320 -Bagdad,AZ,86321 -Camp Verde,AZ,86322 -Chino Valley,AZ,86323 -Clarkdale,AZ,86324 -Cornville,AZ,86325 -Cottonwood,AZ,86326 -Dewey,AZ,86327 -Kirkland,AZ,86332 -Mayer,AZ,86333 -Paulden,AZ,86334 -Rimrock,AZ,86335 -Sedona,AZ,86336 -Seligman,AZ,86337 -Crown King,AZ,86343 -Kingman,AZ,86401 -Desert Hills,AZ,86403 -Hualapai,AZ,86412 -Bullhead City,AZ,86430 -Littlefield,AZ,86432 -Peach Springs,AZ,86434 -Supai,AZ,86435 -Topock,AZ,86436 -Mohave Valley,AZ,86440 -Dolan Springs,AZ,86441 -Bullhead City,AZ,86442 -Meadview,AZ,86444 -Chambers,AZ,86502 -Chinle,AZ,86503 -Ganado,AZ,86505 -Lukachukai,AZ,86507 -Navajo,AZ,86509 -Pinon,AZ,86510 -Teec Nos Pos,AZ,86514 -Dennehotso,AZ,86535 -Many Farms,AZ,86538 -Tsaile,AZ,86556 -North Cedar,AR,71601 -Dollarway,AR,71602 -Pine Bluff,AR,71603 -Arkansas City,AR,71630 -Banks,AR,71631 -North,AR,71635 -Dermott,AR,71638 -Dumas,AR,71639 -Eudora,AR,71640 -Fountain Hill,AR,71642 -Gould,AR,71643 -Tamo,AR,71644 -Hamburg,AR,71646 -Ingalls,AR,71647 -Jersey,AR,71651 -Kingsland,AR,71652 -Lake Village,AR,71653 -Mc Gehee,AR,71654 -Monticello,AR,71655 -Montrose,AR,71658 -New Edinburg,AR,71660 -Parkdale,AR,71661 -Pickens,AR,71662 -Portland,AR,71663 -Rison,AR,71665 -Rohwer,AR,71666 -Star City,AR,71667 -Reed,AR,71670 -Warren,AR,71671 -Watson,AR,71674 -Wilmar,AR,71675 -Wilmot,AR,71676 -Winchester,AR,71677 -Yorktown,AR,71678 -East Camden,AR,71701 -Bearden,AR,71720 -Bluff City,AR,71722 -Carthage,AR,71725 -Reader,AR,71726 -El Dorado,AR,71730 -Emerson,AR,71740 -Fordyce,AR,71742 -Gurdon,AR,71743 -Hampton,AR,71744 -Harrell,AR,71745 -Huttig,AR,71747 -Ivan,AR,71748 -Junction City,AR,71749 -Louann,AR,71751 -Mc Neil,AR,71752 -Magnolia,AR,71753 -Mount Holly,AR,71758 -Norphlet,AR,71759 -Smackover,AR,71762 -Manning,AR,71763 -Stephens,AR,71764 -Strong,AR,71765 -Thornton,AR,71766 -Tinsman,AR,71767 -Village,AR,71769 -Waldo,AR,71770 -Perrytown,AR,71801 -Ashdown,AR,71822 -Blevins,AR,71825 -Bradley,AR,71826 -Buckner,AR,71827 -Cale,AR,71828 -Columbus,AR,71831 -De Queen,AR,71832 -Dierks,AR,71833 -Doddridge,AR,71834 -Emmet,AR,71835 -Foreman,AR,71836 -Fouke,AR,71837 -Fulton,AR,71838 -Garland City,AR,71839 -Gillham,AR,71841 -Horatio,AR,71842 -Lewisville,AR,71845 -Lockesburg,AR,71846 -Mc Caskill,AR,71847 -Mineral Springs,AR,71851 -Nashville,AR,71852 -Ogden,AR,71853 -Ozan,AR,71855 -Prescott,AR,71857 -Rosston,AR,71858 -Saratoga,AR,71859 -Stamps,AR,71860 -Taylor,AR,71861 -Washington,AR,71862 -Willisville,AR,71864 -Wilton,AR,71865 -Winthrop,AR,71866 -Lake Catherine,AR,71901 -Hot Springs Vill,AR,71909 -Lake Hamilton,AR,71913 -Amity,AR,71921 -Antoine,AR,71922 -Arkadelphia,AR,71923 -Bismarck,AR,71929 -Blakely,AR,71931 -Bonnerdale,AR,71933 -Caddo Gap,AR,71935 -Cove,AR,71937 -Delight,AR,71940 -Donaldson,AR,71941 -Friendship,AR,71942 -Glenwood,AR,71943 -Grannis,AR,71944 -Hatfield,AR,71945 -Jessieville,AR,71949 -Kirby,AR,71950 -Langley,AR,71952 -Mena,AR,71953 -Buckville,AR,71956 -Mount Ida,AR,71957 -Murfreesboro,AR,71958 -Newhope,AR,71959 -Norman,AR,71960 -Oden,AR,71961 -Okolona,AR,71962 -Pearcy,AR,71964 -Pencil Bluff,AR,71965 -Royal,AR,71968 -Sims,AR,71969 -Story,AR,71970 -Umpire,AR,71971 -Vandervoort,AR,71972 -Wickes,AR,71973 -Adona,AR,72001 -Alexander,AR,72002 -Almyra,AR,72003 -Altheimer,AR,72004 -Amagon,AR,72005 -Augusta,AR,72006 -Austin,AR,72007 -Bald Knob,AR,72010 -Bauxite,AR,72011 -Beebe,AR,72012 -Bee Branch,AR,72013 -Beedeville,AR,72014 -Benton,AR,72015 -Bigelow,AR,72016 -Biscoe,AR,72017 -Bradford,AR,72020 -Brinkley,AR,72021 -Bryant,AR,72022 -Cabot,AR,72023 -Carlisle,AR,72024 -Casa,AR,72025 -Casscoe,AR,72026 -Center Ridge,AR,72027 -Choctaw,AR,72028 -Clarendon,AR,72029 -Cleveland,AR,72030 -Clinton,AR,72031 -Conway,AR,72032 -Cotton Plant,AR,72036 -Crocketts Bluff,AR,72038 -Twin Groves,AR,72039 -Des Arc,AR,72040 -De Valls Bluff,AR,72041 -De Witt,AR,72042 -Edgemont,AR,72044 -El Paso,AR,72045 -England,AR,72046 -Enola,AR,72047 -Ethel,AR,72048 -Fox,AR,72051 -Garner,AR,72052 -Gillett,AR,72055 -Grapevine,AR,72057 -Greenbrier,AR,72058 -Griffithville,AR,72060 -Guy,AR,72061 -Hattieville,AR,72063 -Hazen,AR,72064 -Hensley,AR,72065 -Hickory Plains,AR,72066 -Greers Ferry,AR,72067 -Higginson,AR,72068 -Holly Grove,AR,72069 -Houston,AR,72070 -Humnoke,AR,72072 -Humphrey,AR,72073 -Gravel Ridge,AR,72076 -Jefferson,AR,72079 -Jerusalem,AR,72080 -Judsonia,AR,72081 -Kensett,AR,72082 -Keo,AR,72083 -Leola,AR,72084 -Lonoke,AR,72086 -Lonsdale,AR,72087 -Mc Crory,AR,72101 -Mc Rae,AR,72102 -Shannon Hills,AR,72103 -Malvern,AR,72104 -Jones Mills,AR,72105 -Mayflower,AR,72106 -Morrilton,AR,72110 -Mount Vernon,AR,72111 -Newport,AR,72112 -Maumelle,AR,72113 -North Little Roc,AR,72114 -Sherwood,AR,72116 -North Little Roc,AR,72117 -Camp Joseph T Ro,AR,72118 -North Little Roc,AR,72120 -Pangburn,AR,72121 -Paron,AR,72122 -Perry,AR,72125 -Perryville,AR,72126 -Plumerville,AR,72127 -Poyen,AR,72128 -Prattsville,AR,72129 -Prim,AR,72130 -Quitman,AR,72131 -Redfield,AR,72132 -Reydell,AR,72133 -Roe,AR,72134 -Roland,AR,72135 -Romance,AR,72136 -Rose Bud,AR,72137 -Saint Charles,AR,72140 -Scotland,AR,72141 -Scott,AR,72142 -Georgetown,AR,72143 -Sheridan,AR,72150 -Sherrill,AR,72152 -Shirley,AR,72153 -Solgohachia,AR,72156 -Springfield,AR,72157 -Stuttgart,AR,72160 -Thida,AR,72165 -Tichnor,AR,72166 -Traskwood,AR,72167 -Tucker,AR,72168 -Ulm,AR,72170 -Vilonia,AR,72173 -Wabbaseka,AR,72175 -Ward,AR,72176 -Wilburn,AR,72179 -Wooster,AR,72181 -Wright,AR,72182 -Little Rock,AR,72201 -Little Rock,AR,72202 -Little Rock,AR,72204 -Little Rock,AR,72205 -Little Rock,AR,72206 -Little Rock,AR,72207 -Ferndale,AR,72208 -Little Rock,AR,72209 -Little Rock,AR,72210 -Little Rock,AR,72211 -Little Rock,AR,72212 -West Memphis,AR,72301 -Armorel,AR,72310 -Aubrey,AR,72311 -Bassett,AR,72313 -Birdeye,AR,72314 -Blytheville A F,AR,72315 -Brickeys,AR,72320 -Burdette,AR,72321 -Cherry Valley,AR,72324 -Colt,AR,72326 -Crawfordsville,AR,72327 -Crumrod,AR,72328 -Driver,AR,72329 -Dyess,AR,72330 -Earle,AR,72331 -Edmondson,AR,72332 -Elaine,AR,72333 -Forrest City,AR,72335 -Frenchmans Bayou,AR,72338 -Gilmore,AR,72339 -Goodwin,AR,72340 -Haynes,AR,72341 -Helena,AR,72342 -Heth,AR,72346 -Hickory Ridge,AR,72347 -Hughes,AR,72348 -Joiner,AR,72350 -Keiser,AR,72351 -Lepanto,AR,72354 -Lexa,AR,72355 -Luxora,AR,72358 -Marianna,AR,72360 -Marion,AR,72364 -Marked Tree,AR,72365 -Marvell,AR,72366 -Mellwood,AR,72367 -Moro,AR,72368 -Oneida,AR,72369 -Osceola,AR,72370 -Palestine,AR,72372 -Parkin,AR,72373 -Poplar Grove,AR,72374 -Proctor,AR,72376 -Snow Lake,AR,72379 -Tomato,AR,72381 -Turrell,AR,72384 -Tyronza,AR,72386 -West Helena,AR,72390 -Wheatley,AR,72392 -Widener,AR,72394 -Wilson,AR,72395 -Wynne,AR,72396 -Fair Oaks,AR,72397 -Jonesboro,AR,72401 -Alicia,AR,72410 -Bay,AR,72411 -Beech Grove,AR,72412 -Biggers,AR,72413 -Black Oak,AR,72414 -Black Rock,AR,72415 -Bono,AR,72416 -Brookland,AR,72417 -Caraway,AR,72419 -Cash,AR,72421 -Corning,AR,72422 -Datto,AR,72424 -Delaplaine,AR,72425 -Dell,AR,72426 -Etowah,AR,72428 -Fisher,AR,72429 -Greenway,AR,72430 -Harrisburg,AR,72432 -Hoxie,AR,72433 -Imboden,AR,72434 -Knobel,AR,72435 -Lafe,AR,72436 -Lake City,AR,72437 -Leachville,AR,72438 -Lynn,AR,72440 -Mc Dougal,AR,72441 -Roseland,AR,72442 -Marmaduke,AR,72443 -Maynard,AR,72444 -Minturn,AR,72445 -Monette,AR,72447 -O Kean,AR,72449 -Paragould,AR,72450 -Peach Orchard,AR,72453 -Piggott,AR,72454 -Pocahontas,AR,72455 -Pollard,AR,72456 -Portia,AR,72457 -Powhatan,AR,72458 -Ravenden,AR,72459 -Ravenden Springs,AR,72460 -Rector,AR,72461 -Saint Francis,AR,72464 -Sedgwick,AR,72465 -Smithville,AR,72466 -State University,AR,72467 -Calamine,AR,72469 -Success,AR,72470 -Swifton,AR,72471 -Payneway,AR,72472 -Tuckerman,AR,72473 -College City,AR,72476 -Warm Springs,AR,72478 -Weiner,AR,72479 -Williford,AR,72482 -Batesville,AR,72501 -Horseshoe Bend,AR,72512 -Agnos,AR,72513 -Bexar,AR,72515 -Boswell,AR,72516 -Brockwell,AR,72517 -Jordan,AR,72519 -Camp,AR,72520 -Cave City,AR,72521 -Charlotte,AR,72522 -Concord,AR,72523 -Cord,AR,72524 -Cushman,AR,72526 -Desha,AR,72527 -Dolph,AR,72528 -Cherokee Village,AR,72529 -Drasco,AR,72530 -Elizabeth,AR,72531 -Evening Shade,AR,72532 -Fifty Six,AR,72533 -Floral,AR,72534 -Franklin,AR,72536 -Gamaliel,AR,72537 -Gepp,AR,72538 -Glencoe,AR,72539 -Guion,AR,72540 -Hardy,AR,72542 -Heber Springs,AR,72543 -Henderson,AR,72544 -Ida,AR,72546 -Locust Grove,AR,72550 -Magness,AR,72553 -Mammoth Spring,AR,72554 -Marcella,AR,72555 -Zion,AR,72556 -Moko,AR,72557 -Hanover,AR,72560 -Mount Pleasant,AR,72561 -Newark,AR,72562 -Oil Trough,AR,72564 -Oxford,AR,72565 -Pineville,AR,72566 -Pleasant Grove,AR,72567 -Pleasant Plains,AR,72568 -Poughkeepsie,AR,72569 -Rosie,AR,72571 -Saffell,AR,72572 -Sage,AR,72573 -Salado,AR,72575 -Byron,AR,72576 -Sidney,AR,72577 -Sturkie,AR,72578 -Sulphur Rock,AR,72579 -Tumbling Shoals,AR,72581 -Viola,AR,72583 -Violet Hill,AR,72584 -Wideman,AR,72585 -Wiseman,AR,72587 -Harrison,AR,72601 -Alco,AR,72610 -Alpena,AR,72611 -Bass,AR,72612 -Berryville,AR,72616 -Big Flat,AR,72617 -Bruno,AR,72618 -Bull Shoals,AR,72619 -Clarkridge,AR,72623 -Compton,AR,72624 -Cotter,AR,72626 -Deer,AR,72628 -Dennard,AR,72629 -Eureka Springs,AR,72632 -Everton,AR,72633 -Flippin,AR,72634 -Gassville,AR,72635 -Green Forest,AR,72638 -Harriet,AR,72639 -Hasty,AR,72640 -Jasper,AR,72641 -Lakeview,AR,72642 -Lead Hill,AR,72644 -Leslie,AR,72645 -Dogpatch,AR,72648 -Marshall,AR,72650 -Midway,AR,72651 -Mountain Home,AR,72653 -Mount Judea,AR,72655 -Timbo,AR,72657 -Norfork,AR,72658 -Oak Grove,AR,72660 -Oakland,AR,72661 -Omaha,AR,72662 -Onia,AR,72663 -Parthenon,AR,72666 -Peel,AR,72668 -Pindall,AR,72669 -Ponca,AR,72670 -Saint Joe,AR,72675 -Tilly,AR,72679 -Newnata,AR,72680 -Valley Springs,AR,72682 -Vendor,AR,72683 -Western Grove,AR,72685 -Witts Springs,AR,72686 -Yellville,AR,72687 -Fayetteville,AR,72701 -Fayetteville,AR,72703 -Bentonville,AR,72712 -Bella Vista,AR,72714 -Wal-Mart Inc,AR,72716 -Canehill,AR,72717 -Cave Springs,AR,72718 -Centerton,AR,72719 -Combs,AR,72721 -Decatur,AR,72722 -Elkins,AR,72727 -Evansville,AR,72729 -Farmington,AR,72730 -Garfield,AR,72732 -Gateway,AR,72733 -Gentry,AR,72734 -Goshen,AR,72735 -Gravette,AR,72736 -Hindsville,AR,72738 -Hiwasse,AR,72739 -Huntsville,AR,72740 -Kingston,AR,72742 -Lincoln,AR,72744 -Lowell,AR,72745 -Maysville,AR,72747 -Morrow,AR,72749 -Pea Ridge,AR,72751 -Pettigrew,AR,72752 -Prairie Grove,AR,72753 -Rogers,AR,72756 -Saint Paul,AR,72760 -Siloam Springs,AR,72761 -Springdale,AR,72762 -Bethel Heights,AR,72764 -Sulphur Springs,AR,72768 -Summers,AR,72769 -Wesley,AR,72773 -West Fork,AR,72774 -Witter,AR,72776 -Russellville,AR,72801 -Alix,AR,72820 -Altus,AR,72821 -Atkins,AR,72823 -Belleville,AR,72824 -Blue Mountain,AR,72826 -Bluffton,AR,72827 -Briggsville,AR,72828 -Clarksville,AR,72830 -Coal Hill,AR,72832 -Danville,AR,72833 -Dardanelle,AR,72834 -Delaware,AR,72835 -Dover,AR,72837 -Gravelly,AR,72838 -Hagarville,AR,72839 -Hartman,AR,72840 -Harvey,AR,72841 -Waveland,AR,72842 -Hector,AR,72843 -Knoxville,AR,72845 -Lamar,AR,72846 -London,AR,72847 -New Blaine,AR,72851 -Oark,AR,72852 -Ola,AR,72853 -Ozone,AR,72854 -Paris,AR,72855 -Pelsor,AR,72856 -Plainview,AR,72857 -Pottsville,AR,72858 -Rover,AR,72860 -Scranton,AR,72863 -Subiaco,AR,72865 -Fort Smith,AR,72901 -Fort Smith,AR,72903 -Fort Smith,AR,72904 -Fort Chaffee,AR,72905 -Fort Smith,AR,72916 -Alma,AR,72921 -Barling,AR,72923 -Bates,AR,72924 -Boles,AR,72926 -Booneville,AR,72927 -Branch,AR,72928 -Cecil,AR,72930 -Cedarville,AR,72932 -Charleston,AR,72933 -Chester,AR,72934 -Greenwood,AR,72936 -Hackett,AR,72937 -Hartford,AR,72938 -Huntington,AR,72940 -Central City,AR,72941 -Magazine,AR,72943 -Mansfield,AR,72944 -Mountainburg,AR,72946 -Mulberry,AR,72947 -Natural Dam,AR,72948 -Ozark,AR,72949 -Parks,AR,72950 -Ratcliff,AR,72951 -Rudy,AR,72952 -Uniontown,AR,72955 -Van Buren,AR,72956 -Waldron,AR,72958 -Winslow,AR,72959 -Texarkana,AR,75502 -Los Angeles,CA,90001 -Los Angeles,CA,90002 -Los Angeles,CA,90003 -Los Angeles,CA,90004 -Los Angeles,CA,90005 -Los Angeles,CA,90006 -Los Angeles,CA,90007 -Los Angeles,CA,90008 -Los Angeles,CA,90010 -Los Angeles,CA,90011 -Los Angeles,CA,90012 -Los Angeles,CA,90013 -Los Angeles,CA,90014 -Los Angeles,CA,90015 -Los Angeles,CA,90016 -Los Angeles,CA,90017 -Los Angeles,CA,90018 -Los Angeles,CA,90019 -Los Angeles,CA,90020 -Los Angeles,CA,90021 -East Los Angeles,CA,90022 -Los Angeles,CA,90023 -Los Angeles,CA,90024 -Los Angeles,CA,90025 -Los Angeles,CA,90026 -Los Angeles,CA,90027 -Los Angeles,CA,90028 -Los Angeles,CA,90029 -Los Angeles,CA,90031 -Los Angeles,CA,90032 -Los Angeles,CA,90033 -Los Angeles,CA,90034 -Los Angeles,CA,90035 -Los Angeles,CA,90036 -Los Angeles,CA,90037 -Los Angeles,CA,90038 -Los Angeles,CA,90039 -City Of Commerce,CA,90040 -Los Angeles,CA,90041 -Los Angeles,CA,90042 -Los Angeles,CA,90043 -Los Angeles,CA,90044 -Los Angeles,CA,90045 -Cole,CA,90046 -Los Angeles,CA,90047 -Los Angeles,CA,90048 -Los Angeles,CA,90049 -Los Angeles,CA,90056 -Los Angeles,CA,90057 -Vernon,CA,90058 -Los Angeles,CA,90059 -Los Angeles,CA,90061 -Los Angeles,CA,90062 -Hazard,CA,90063 -Los Angeles,CA,90064 -Los Angeles,CA,90065 -Los Angeles,CA,90066 -Los Angeles,CA,90067 -Los Angeles,CA,90068 -West Hollywood,CA,90069 -Los Angeles,CA,90071 -Los Angeles,CA,90077 -Bell Gardens,CA,90201 -Beverly Hills,CA,90210 -Beverly Hills,CA,90211 -Beverly Hills,CA,90212 -Rancho Dominguez,CA,90220 -East Rancho Domi,CA,90221 -Rosewood,CA,90222 -Culver City,CA,90230 -Culver City,CA,90232 -Downey,CA,90240 -Downey,CA,90241 -Downey,CA,90242 -El Segundo,CA,90245 -Gardena,CA,90247 -Gardena,CA,90248 -Gardena,CA,90249 -Holly Park,CA,90250 -Hermosa Beach,CA,90254 -Huntington Park,CA,90255 -Lawndale,CA,90260 -Lynwood,CA,90262 -Malibu,CA,90265 -Manhattan Beach,CA,90266 -Maywood,CA,90270 -Pacific Palisade,CA,90272 -Palos Verdes Est,CA,90274 -Redondo Beach,CA,90277 -Redondo Beach,CA,90278 -South Gate,CA,90280 -Topanga,CA,90290 -Venice,CA,90291 -Marina Del Rey,CA,90292 -Playa Del Rey,CA,90293 -Inglewood,CA,90301 -Inglewood,CA,90302 -Inglewood,CA,90303 -Lennox,CA,90304 -Inglewood,CA,90305 -Santa Monica,CA,90401 -Santa Monica,CA,90402 -Santa Monica,CA,90403 -Santa Monica,CA,90404 -Santa Monica,CA,90405 -Torrance,CA,90501 -Torrance,CA,90502 -Torrance,CA,90503 -Torrance,CA,90504 -Torrance,CA,90505 -Torrance,CA,90506 -Whittier,CA,90601 -Whittier,CA,90602 -Whittier,CA,90603 -Whittier,CA,90604 -Whittier,CA,90605 -Los Nietos,CA,90606 -Buena Park,CA,90620 -Buena Park,CA,90621 -Cerritos,CA,90623 -Cypress,CA,90630 -La Habra Heights,CA,90631 -La Mirada,CA,90638 -Montebello,CA,90640 -Norwalk,CA,90650 -Pico Rivera,CA,90660 -Santa Fe Springs,CA,90670 -Stanton,CA,90680 -Cerritos,CA,90701 -Avalon,CA,90704 -Bellflower,CA,90706 -Harbor City,CA,90710 -Lakewood,CA,90712 -Lakewood,CA,90713 -Lakewood,CA,90715 -Hawaiian Gardens,CA,90716 -Rancho Palos Ver,CA,90717 -Rossmoor,CA,90720 -Paramount,CA,90723 -San Pedro,CA,90731 -Rancho Palos Ver,CA,90732 -Seal Beach,CA,90740 -Wilmington,CA,90744 -Carson,CA,90745 -Carson,CA,90746 -Long Beach,CA,90802 -Long Beach,CA,90803 -Signal Hill,CA,90804 -Long Beach,CA,90805 -Signal Hill,CA,90806 -Signal Hill,CA,90807 -Long Beach,CA,90808 -Carson,CA,90810 -Long Beach,CA,90813 -Long Beach,CA,90814 -Long Beach,CA,90815 -Long Beach,CA,90822 -Altadena,CA,91001 -Arcadia,CA,91006 -Arcadia,CA,91007 -Bradbury,CA,91010 -Flintridge,CA,91011 -Monrovia,CA,91016 -Montrose,CA,91020 -Sierra Madre,CA,91024 -South Pasadena,CA,91030 -Shadow Hills,CA,91040 -Tujunga,CA,91042 -Pasadena,CA,91101 -Pasadena,CA,91103 -Pasadena,CA,91104 -Pasadena,CA,91105 -Pasadena,CA,91106 -Pasadena,CA,91107 -San Marino,CA,91108 -Glendale,CA,91201 -Glendale,CA,91202 -Glendale,CA,91203 -Glendale,CA,91204 -Glendale,CA,91205 -Glendale,CA,91206 -Glendale,CA,91207 -Glendale,CA,91208 -La Crescenta,CA,91214 -Oak Park,CA,91301 -Calabasas,CA,91302 -Canoga Park,CA,91303 -Canoga Park,CA,91304 -Winnetka,CA,91306 -West Hills,CA,91307 -Chatsworth,CA,91311 -Encino,CA,91316 -Newbury Park,CA,91320 -Newhall,CA,91321 -Northridge,CA,91324 -Northridge,CA,91325 -Porter Ranch,CA,91326 -California State,CA,91330 -Arleta,CA,91331 -Reseda,CA,91335 -San Fernando,CA,91340 -Sylmar,CA,91342 -North Hills,CA,91343 -Granada Hills,CA,91344 -Mission Hills,CA,91345 -Agua Dulce,CA,91350 -Canyon Country,CA,91351 -Sun Valley,CA,91352 -Valencia,CA,91354 -Valencia,CA,91355 -Tarzana,CA,91356 -Thousand Oaks,CA,91360 -Westlake Village,CA,91361 -Westlake Village,CA,91362 -Woodland Hills,CA,91364 -Woodland Hills,CA,91367 -Newhall,CA,91381 -Castaic,CA,91384 -Van Nuys,CA,91401 -Panorama City,CA,91402 -Sherman Oaks,CA,91403 -Van Nuys,CA,91405 -Van Nuys,CA,91406 -Van Nuys,CA,91411 -Sherman Oaks,CA,91423 -Encino,CA,91436 -Burbank,CA,91501 -Burbank,CA,91502 -Burbank,CA,91504 -Burbank,CA,91505 -Burbank,CA,91506 -North Hollywood,CA,91601 -Toluca Lake,CA,91602 -Studio City,CA,91604 -North Hollywood,CA,91605 -North Hollywood,CA,91606 -Valley Village,CA,91607 -Alta Loma,CA,91701 -Azusa,CA,91702 -Irwindale,CA,91706 -Chino Hills,CA,91709 -Chino,CA,91710 -Claremont,CA,91711 -Corona,CA,91719 -Corona,CA,91720 -Covina,CA,91722 -Covina,CA,91723 -Covina,CA,91724 -Rancho Cucamonga,CA,91730 -El Monte,CA,91731 -El Monte,CA,91732 -South El Monte,CA,91733 -Alta Loma,CA,91737 -Etiwanda,CA,91739 -Glendora,CA,91740 -Industry,CA,91744 -Hacienda Heights,CA,91745 -Bassett,CA,91746 -Rowland Heights,CA,91748 -La Verne,CA,91750 -Mira Loma,CA,91752 -Monterey Park,CA,91754 -Mt Baldy,CA,91759 -Norco,CA,91760 -Ontario,CA,91761 -Ontario,CA,91762 -Montclair,CA,91763 -Ontario,CA,91764 -Diamond Bar,CA,91765 -Phillips Ranch,CA,91766 -Pomona,CA,91767 -Pomona,CA,91768 -Rosemead,CA,91770 -San Dimas,CA,91773 -San Gabriel,CA,91775 -San Gabriel,CA,91776 -Temple City,CA,91780 -Upland,CA,91786 -Diamond Bar,CA,91789 -West Covina,CA,91790 -West Covina,CA,91791 -West Covina,CA,91792 -Alhambra,CA,91801 -Alhambra,CA,91803 -Alpine,CA,91901 -Bonita,CA,91902 -Boulevard,CA,91905 -Campo,CA,91906 -Chula Vista,CA,91910 -Chula Vista,CA,91911 -Chula Vista,CA,91913 -Chula Vista,CA,91914 -Chula Vista,CA,91915 -Descanso,CA,91916 -Dulzura,CA,91917 -Imperial Beach,CA,91932 -Jacumba,CA,91934 -Jamul,CA,91935 -La Mesa,CA,91941 -La Mesa,CA,91942 -Lemon Grove,CA,91945 -National City,CA,91950 -Pine Valley,CA,91962 -Potrero,CA,91963 -Spring Valley,CA,91977 -Spring Valley,CA,91978 -Tecate,CA,91980 -Bonsall,CA,92003 -Borrego Springs,CA,92004 -Cardiff By The S,CA,92007 -Carlsbad,CA,92008 -Carlsbad,CA,92009 -Del Mar,CA,92014 -El Cajon,CA,92019 -El Cajon,CA,92020 -El Cajon,CA,92021 -Encinitas,CA,92024 -Escondido,CA,92025 -Escondido,CA,92026 -Escondido,CA,92027 -Fallbrook,CA,92028 -Escondido,CA,92029 -Julian,CA,92036 -La Jolla,CA,92037 -Lakeside,CA,92040 -Oceanside,CA,92054 -Marine Corp Base,CA,92055 -Oceanside,CA,92056 -Oceanside,CA,92057 -Pala,CA,92059 -Pauma Valley,CA,92061 -Poway,CA,92064 -Ramona,CA,92065 -Ranchita,CA,92066 -San Luis Rey,CA,92068 -San Marcos,CA,92069 -Santa Ysabel,CA,92070 -Santee,CA,92071 -Solana Beach,CA,92075 -Valley Center,CA,92082 -Vista,CA,92083 -Vista,CA,92084 -Warner Springs,CA,92086 -San Diego,CA,92101 -San Diego,CA,92102 -San Diego,CA,92103 -San Diego,CA,92104 -San Diego,CA,92105 -San Diego,CA,92106 -San Diego,CA,92107 -San Diego,CA,92108 -San Diego,CA,92109 -San Diego,CA,92110 -San Diego,CA,92111 -San Diego,CA,92113 -San Diego,CA,92114 -San Diego,CA,92115 -San Diego,CA,92116 -San Diego,CA,92117 -Coronado,CA,92118 -San Diego,CA,92119 -San Diego,CA,92120 -San Diego,CA,92121 -San Diego,CA,92122 -San Diego,CA,92123 -San Diego,CA,92124 -San Diego,CA,92126 -San Diego,CA,92127 -San Diego,CA,92128 -San Diego,CA,92129 -San Diego,CA,92130 -San Diego,CA,92131 -San Diego,CA,92135 -San Diego,CA,92136 -San Diego,CA,92139 -San Diego,CA,92145 -San Diego,CA,92154 -San Diego,CA,92155 -San Ysidro,CA,92173 -Chiriaco Summit,CA,92201 -Indian Wells,CA,92210 -Banning,CA,92220 -Beaumont,CA,92223 -Lost Lake,CA,92225 -Brawley,CA,92227 -Cabazon,CA,92230 -Calexico,CA,92231 -Calipatria,CA,92233 -Cathedral City,CA,92234 -Coachella,CA,92236 -Eagle Mountain,CA,92239 -Desert Hot Sprin,CA,92240 -Big River,CA,92242 -El Centro,CA,92243 -Heber,CA,92249 -Holtville,CA,92250 -Imperial,CA,92251 -Joshua Tree,CA,92252 -La Quinta,CA,92253 -Morongo Valley,CA,92256 -Niland,CA,92257 -Palm City,CA,92260 -Palm Springs,CA,92262 -Palm Springs,CA,92264 -Parker Dam,CA,92267 -Rancho Mirage,CA,92270 -Blythe,CA,92272 -Salton City,CA,92274 -Thousand Palms,CA,92276 -Twentynine Palms,CA,92277 -Twentynine Palms,CA,92278 -Vidal,CA,92280 -Westmorland,CA,92281 -White Water,CA,92282 -Felicity,CA,92283 -Yucca Valley,CA,92284 -Adelanto,CA,92301 -Amboy,CA,92304 -Angelus Oaks,CA,92305 -Apple Valley,CA,92307 -Apple Valley,CA,92308 -Baker,CA,92309 -Fort Irwin,CA,92310 -Barstow,CA,92311 -Big Bear City,CA,92314 -Bloomington,CA,92316 -Calimesa,CA,92320 -Grand Terrace,CA,92324 -Daggett,CA,92327 -Death Valley,CA,92328 -Essex,CA,92332 -Fontana,CA,92335 -Fontana,CA,92336 -Ludlow,CA,92338 -Forest Falls,CA,92339 -Helendale,CA,92342 -Hesperia,CA,92345 -East Highland,CA,92346 -Hinkley,CA,92347 -Kelso,CA,92351 -Loma Linda,CA,92354 -Lucerne Valley,CA,92356 -Lytle Creek,CA,92358 -Mentone,CA,92359 -Needles,CA,92363 -Nipton,CA,92364 -Newberry Springs,CA,92365 -Oro Grande,CA,92368 -Phelan,CA,92371 -Pinon Hills,CA,92372 -Redlands,CA,92373 -Redlands,CA,92374 -Rialto,CA,92376 -Shoshone,CA,92384 -Tecopa,CA,92389 -Spring Valley La,CA,92392 -George Afb,CA,92394 -Wrightwood,CA,92397 -Yucaipa,CA,92399 -San Bernardino,CA,92401 -San Bernardino,CA,92404 -Muscoy,CA,92405 -San Bernardino,CA,92407 -San Bernardino,CA,92408 -San Bernardino,CA,92409 -San Bernardino,CA,92410 -San Bernardino,CA,92411 -Riverside,CA,92501 -Riverside,CA,92503 -Riverside,CA,92504 -Riverside,CA,92505 -Riverside,CA,92506 -Riverside,CA,92507 -Riverside,CA,92508 -Rubidoux,CA,92509 -Lake Elsinore,CA,92530 -Lake Elsinore,CA,92532 -Aguanga,CA,92536 -Anza,CA,92539 -Hemet,CA,92543 -Hemet,CA,92544 -Hemet,CA,92545 -Homeland,CA,92548 -Idyllwild,CA,92549 -Moreno Valley,CA,92553 -Moreno Valley,CA,92555 -Moreno Valley,CA,92557 -Mountain Center,CA,92561 -Murrieta,CA,92562 -Murrieta,CA,92563 -Lakeview,CA,92567 -Mead Valley,CA,92570 -Perris,CA,92571 -San Jacinto,CA,92582 -Gilman Hot Sprin,CA,92583 -Menifee,CA,92584 -Romoland,CA,92585 -Sun City,CA,92586 -Canyon Lake,CA,92587 -Temecula,CA,92590 -Temecula,CA,92591 -Temecula,CA,92592 -Wildomar,CA,92595 -Winchester,CA,92596 -Foothill Ranch,CA,92610 -Brea,CA,92621 -Capistrano Beach,CA,92624 -Corona Del Mar,CA,92625 -Costa Mesa,CA,92626 -Costa Mesa,CA,92627 -Monarch Bay,CA,92629 -Lake Forest,CA,92630 -Fullerton,CA,92631 -Fullerton,CA,92632 -Fullerton,CA,92633 -Fullerton,CA,92635 -Garden Grove,CA,92640 -Garden Grove,CA,92641 -Garden Grove,CA,92643 -Garden Grove,CA,92644 -Garden Grove,CA,92645 -Huntington Beach,CA,92646 -Huntington Beach,CA,92647 -Huntington Beach,CA,92648 -Huntington Beach,CA,92649 -Laguna Niguel,CA,92651 -Laguna Hills,CA,92653 -Midway City,CA,92655 -Aliso Viejo,CA,92656 -Newport Beach,CA,92657 -Newport Beach,CA,92660 -Newport Beach,CA,92661 -Newport Beach,CA,92662 -Newport Beach,CA,92663 -Orange,CA,92665 -Orange,CA,92666 -Villa Park,CA,92667 -Orange,CA,92668 -Orange,CA,92669 -Placentia,CA,92670 -San Clemente,CA,92672 -Mission Viejo,CA,92675 -Laguna Niguel,CA,92677 -Coto De Caza,CA,92679 -Tustin,CA,92680 -Westminster,CA,92683 -Yorba Linda,CA,92686 -Yorba Linda,CA,92687 -Rancho Santa Mar,CA,92688 -Mission Viejo,CA,92691 -Mission Viejo,CA,92692 -Santa Ana,CA,92701 -Santa Ana,CA,92703 -Santa Ana,CA,92704 -Cowan Heights,CA,92705 -Santa Ana,CA,92706 -Santa Ana Height,CA,92707 -Fountain Valley,CA,92708 -El Toro Marine C,CA,92709 -Irvine,CA,92714 -Irvine,CA,92715 -Irvine,CA,92718 -Irvine,CA,92720 -Anaheim,CA,92801 -Anaheim,CA,92802 -Anaheim,CA,92804 -Anaheim,CA,92805 -Anaheim,CA,92806 -Anaheim,CA,92807 -Anaheim,CA,92808 -San Buenaventura,CA,93001 -San Buenaventura,CA,93003 -San Buenaventura,CA,93004 -Camarillo,CA,93010 -Camarillo,CA,93012 -Carpinteria,CA,93013 -Bardsdale,CA,93015 -Moorpark,CA,93021 -Oak View,CA,93022 -Ojai,CA,93023 -Oxnard,CA,93030 -Oxnard,CA,93033 -Oxnard,CA,93035 -Port Hueneme,CA,93041 -Point Mugu Nawc,CA,93042 -Port Hueneme Cbc,CA,93043 -Santa Paula,CA,93060 -Santa Susana,CA,93063 -Simi Valley,CA,93065 -Somis,CA,93066 -Summerland,CA,93067 -Santa Barbara,CA,93101 -Santa Barbara,CA,93103 -Santa Barbara,CA,93105 -Montecito,CA,93108 -Santa Barbara,CA,93109 -Santa Barbara,CA,93110 -Santa Barbara,CA,93111 -Goleta,CA,93117 -Armona,CA,93202 -Arvin,CA,93203 -Avenal,CA,93204 -Bodfish,CA,93205 -Buttonwillow,CA,93206 -California Hot S,CA,93207 -Coalinga,CA,93210 -Corcoran,CA,93212 -Cuyama,CA,93214 -Delano,CA,93215 -Di Giorgio,CA,93217 -Earlimart,CA,93219 -Exeter,CA,93221 -Farmersville,CA,93223 -Fellows,CA,93224 -Frazier Park,CA,93225 -Glennville,CA,93226 -Hanford,CA,93230 -Huron,CA,93234 -Ivanhoe,CA,93235 -Kernville,CA,93238 -Kettleman City,CA,93239 -Mountain Mesa,CA,93240 -Lamont,CA,93241 -Laton,CA,93242 -Gorman,CA,93243 -Lemoncove,CA,93244 -Lemoore Naval Ai,CA,93245 -Lindsay,CA,93247 -Lost Hills,CA,93249 -Mc Farland,CA,93250 -Mc Kittrick,CA,93251 -Maricopa,CA,93252 -New Cuyama,CA,93254 -Onyx,CA,93255 -Pixley,CA,93256 -Porterville,CA,93257 -Posey,CA,93260 -Giant Forest,CA,93262 -Shafter,CA,93263 -Springville,CA,93265 -Stratford,CA,93266 -Strathmore,CA,93267 -Taft,CA,93268 -Terra Bella,CA,93270 -Three Rivers,CA,93271 -Tipton,CA,93272 -Tulare,CA,93274 -Tupman,CA,93276 -Visalia,CA,93277 -Pond,CA,93280 -Weldon,CA,93283 -Wofford Heights,CA,93285 -Woodlake,CA,93286 -Woody,CA,93287 -Visalia,CA,93291 -Bakersfield,CA,93301 -Bakersfield,CA,93304 -College Heights,CA,93305 -Bakersfield,CA,93306 -Bakersfield,CA,93307 -Bakersfield,CA,93308 -Bakersfield,CA,93309 -Bakersfield,CA,93311 -Greenacres,CA,93312 -Bakersfield,CA,93313 -San Luis Obispo,CA,93401 -Los Osos,CA,93402 -San Luis Obispo,CA,93405 -Halcyon,CA,93420 -Atascadero,CA,93422 -Bradley,CA,93426 -Buellton,CA,93427 -Cambria,CA,93428 -Cayucos,CA,93430 -Cholame,CA,93431 -Creston,CA,93432 -Grover Beach,CA,93433 -Guadalupe,CA,93434 -Lompoc,CA,93436 -Lompoc,CA,93437 -Morro Bay,CA,93442 -Nipomo,CA,93444 -Oceano,CA,93445 -Adelaide,CA,93446 -Shell Beach,CA,93449 -San Ardo,CA,93450 -Parkfield,CA,93451 -San Simeon,CA,93452 -California Valle,CA,93453 -Santa Maria,CA,93454 -Orcutt,CA,93455 -Santa Ynez,CA,93460 -Shandon,CA,93461 -Ballard,CA,93463 -Templeton,CA,93465 -Mojave,CA,93501 -California City,CA,93505 -Acton,CA,93510 -Benton,CA,93512 -Big Pine,CA,93513 -Toms Place,CA,93514 -Boron,CA,93516 -Bridgeport,CA,93517 -Havilah,CA,93518 -Cantil,CA,93519 -North Edwards,CA,93523 -Independence,CA,93526 -Pearsonville,CA,93527 -Johannesburg,CA,93528 -June Lake,CA,93529 -Keene,CA,93531 -Elizabeth Lake,CA,93532 -Lancaster,CA,93534 -Hi Vista,CA,93535 -Quartz Hill,CA,93536 -Lee Vining,CA,93541 -Juniper Hills,CA,93543 -Crystalaire,CA,93544 -Lone Pine,CA,93545 -Crowley Lake,CA,93546 -Lake Los Angeles,CA,93550 -Leona Valley,CA,93551 -Juniper Hills,CA,93553 -Randsburg,CA,93554 -China Lake Nwc,CA,93555 -Willow Springs,CA,93560 -Bear Valley Spri,CA,93561 -Argus,CA,93562 -Valyermo,CA,93563 -Ahwahnee,CA,93601 -Auberry,CA,93602 -Bass Lake,CA,93604 -Cantua Creek,CA,93608 -Caruthers,CA,93609 -Chowchilla,CA,93610 -Clovis,CA,93612 -Coarsegold,CA,93614 -Cutler,CA,93615 -Del Rey,CA,93616 -Dinuba,CA,93618 -Dos Palos,CA,93620 -Dunlap,CA,93621 -Firebaugh,CA,93622 -Fish Camp,CA,93623 -Fowler,CA,93625 -Friant,CA,93626 -Helm,CA,93627 -Kerman,CA,93630 -Kingsburg,CA,93631 -Kings Canyon Nat,CA,93633 -Los Banos,CA,93635 -Madera,CA,93637 -Madera,CA,93638 -Mendota,CA,93640 -Miramonte,CA,93641 -North Fork,CA,93643 -Oakhurst,CA,93644 -O Neals,CA,93645 -Orange Cove,CA,93646 -Orosi,CA,93647 -Parlier,CA,93648 -Pinedale,CA,93650 -Prather,CA,93651 -Raisin,CA,93652 -Raymond,CA,93653 -Reedley,CA,93654 -Riverdale,CA,93656 -Sanger,CA,93657 -San Joaquin,CA,93660 -Selma,CA,93662 -Shaver Lake,CA,93664 -Tollhouse,CA,93667 -Tranquillity,CA,93668 -Wishon,CA,93669 -Squaw Valley,CA,93675 -Fresno,CA,93701 -Fresno,CA,93702 -Fresno,CA,93703 -Fig Garden Villa,CA,93704 -Fresno,CA,93705 -Easton,CA,93706 -Fresno,CA,93710 -Fresno,CA,93711 -Fresno,CA,93720 -Fresno,CA,93721 -Fresno,CA,93722 -Calwa,CA,93725 -Fresno,CA,93726 -Fresno,CA,93727 -Fresno,CA,93728 -Salinas,CA,93901 -Salinas,CA,93905 -Salinas,CA,93906 -Prunedale,CA,93907 -Salinas,CA,93908 -Big Sur,CA,93920 -Carmel,CA,93923 -Carmel Valley,CA,93924 -Chualar,CA,93925 -Gonzales,CA,93926 -Greenfield,CA,93927 -King City,CA,93930 -Lockwood,CA,93932 -Marina,CA,93933 -Del Rey Oaks,CA,93940 -Fort Ord,CA,93941 -Pacific Grove,CA,93950 -Pebble Beach,CA,93953 -Sand City,CA,93955 -Soledad,CA,93960 -Belmont,CA,94002 -Brisbane,CA,94005 -Hillsborough,CA,94010 -Colma,CA,94014 -Daly City,CA,94015 -Half Moon Bay,CA,94019 -La Honda,CA,94020 -Loma Mar,CA,94021 -Los Altos,CA,94022 -Los Altos,CA,94024 -West Menlo Park,CA,94025 -Atherton,CA,94027 -Ladera,CA,94028 -Millbrae,CA,94030 -Moffett Field,CA,94035 -Moss Beach,CA,94038 -Mountain View,CA,94040 -Mountain View,CA,94041 -Mountain View,CA,94043 -Pacifica,CA,94044 -Pescadero,CA,94060 -Redwood City,CA,94061 -Woodside,CA,94062 -Redwood City,CA,94063 -Redwood City,CA,94065 -San Bruno,CA,94066 -San Carlos,CA,94070 -San Gregorio,CA,94074 -South San Franci,CA,94080 -Sunnyvale,CA,94086 -Sunnyvale,CA,94087 -Sunnyvale,CA,94089 -San Francisco,CA,94102 -San Francisco,CA,94103 -San Francisco,CA,94104 -San Francisco,CA,94105 -San Francisco,CA,94107 -San Francisco,CA,94108 -San Francisco,CA,94109 -San Francisco,CA,94110 -San Francisco,CA,94111 -San Francisco,CA,94112 -San Francisco,CA,94114 -San Francisco,CA,94115 -San Francisco,CA,94116 -San Francisco,CA,94117 -San Francisco,CA,94118 -San Francisco,CA,94121 -San Francisco,CA,94122 -San Francisco,CA,94123 -San Francisco,CA,94124 -San Francisco,CA,94127 -San Francisco,CA,94129 -San Francisco,CA,94130 -San Francisco,CA,94131 -San Francisco,CA,94132 -San Francisco,CA,94133 -San Francisco,CA,94134 -Palo Alto,CA,94301 -East Palo Alto,CA,94303 -Palo Alto,CA,94304 -Stanford,CA,94305 -Palo Alto,CA,94306 -Russian River,CA,94401 -San Mateo,CA,94402 -San Mateo,CA,94403 -Foster City,CA,94404 -Coast Guard Isla,CA,94501 -Alamo,CA,94507 -Angwin,CA,94508 -Antioch,CA,94509 -Benicia,CA,94510 -Birds Landing,CA,94512 -Brentwood,CA,94513 -Byron,CA,94514 -Calistoga,CA,94515 -Clayton,CA,94517 -Concord,CA,94518 -Concord,CA,94519 -Concord,CA,94520 -Concord,CA,94521 -Pleasant Hill,CA,94523 -Crockett,CA,94525 -Danville,CA,94526 -Diablo,CA,94528 -El Cerrito,CA,94530 -Fairfield,CA,94533 -Travis Afb,CA,94535 -Fremont,CA,94536 -Fremont,CA,94538 -Fremont,CA,94539 -Hayward,CA,94541 -Hayward,CA,94542 -Hayward,CA,94544 -Hayward,CA,94545 -Castro Valley,CA,94546 -Hercules,CA,94547 -Knightsen,CA,94548 -Lafayette,CA,94549 -Livermore,CA,94550 -Castro Valley,CA,94552 -Pacheco,CA,94553 -Fremont,CA,94555 -Moraga,CA,94556 -Spanish Flat,CA,94558 -Napa,CA,94559 -Newark,CA,94560 -Oakley,CA,94561 -Orinda,CA,94563 -Pinole,CA,94564 -Shore Acres,CA,94565 -Pleasanton,CA,94566 -Pope Valley,CA,94567 -Dublin,CA,94568 -Port Costa,CA,94569 -Rio Vista,CA,94571 -Rodeo,CA,94572 -Saint Helena,CA,94574 -San Leandro,CA,94577 -San Leandro,CA,94578 -San Leandro,CA,94579 -San Lorenzo,CA,94580 -San Ramon,CA,94583 -Suisun City,CA,94585 -Sunol,CA,94586 -Union City,CA,94587 -Pleasanton,CA,94588 -American Canyon,CA,94589 -Vallejo,CA,94590 -Vallejo,CA,94591 -Mare Island,CA,94592 -Walnut Creek,CA,94595 -Walnut Creek,CA,94596 -Walnut Creek,CA,94598 -Yountville,CA,94599 -Oakland,CA,94601 -Oakland,CA,94602 -Oakland,CA,94603 -Oakland,CA,94605 -Oakland,CA,94606 -Oakland,CA,94607 -Emeryville,CA,94608 -Oakland,CA,94609 -Oakland,CA,94610 -Piedmont,CA,94611 -Oakland,CA,94612 -Oakland,CA,94613 -Piedmont,CA,94618 -Oakland,CA,94619 -Oakland,CA,94621 -Berkeley,CA,94702 -Berkeley,CA,94703 -Berkeley,CA,94704 -Berkeley,CA,94705 -Albany,CA,94706 -Kensington,CA,94707 -Kensington,CA,94708 -Berkeley,CA,94709 -Berkeley,CA,94710 -Richmond,CA,94801 -El Sobrante,CA,94803 -Richmond,CA,94804 -Richmond,CA,94805 -San Pablo,CA,94806 -San Rafael,CA,94901 -Civic Center,CA,94903 -Kentfield,CA,94904 -Belvedere,CA,94920 -Bodega,CA,94922 -Bodega Bay,CA,94923 -Bolinas,CA,94924 -Corte Madera,CA,94925 -Rohnert Park,CA,94928 -Fairfax,CA,94930 -Cotati,CA,94931 -Forest Knolls,CA,94933 -Inverness,CA,94937 -Lagunitas,CA,94938 -Larkspur,CA,94939 -Marshall,CA,94940 -Mill Valley,CA,94941 -Novato,CA,94945 -Nicasio,CA,94946 -Novato,CA,94947 -Novato,CA,94949 -Penngrove,CA,94951 -Petaluma,CA,94952 -Petaluma,CA,94954 -Point Reyes Stat,CA,94956 -San Anselmo,CA,94960 -San Geronimo,CA,94963 -Sausalito,CA,94965 -Stinson Beach,CA,94970 -Valley Ford,CA,94972 -Woodacre,CA,94973 -Alviso,CA,95002 -Aptos,CA,95003 -Aromas,CA,95004 -Ben Lomond,CA,95005 -Boulder Creek,CA,95006 -Campbell,CA,95008 -Capitola,CA,95010 -Castroville,CA,95012 -Coyote,CA,95013 -Monte Vista,CA,95014 -Davenport,CA,95017 -Felton,CA,95018 -Freedom,CA,95019 -Gilroy,CA,95020 -Hollister,CA,95023 -Monte Sereno,CA,95030 -Los Gatos,CA,95032 -Milpitas,CA,95035 -Morgan Hill,CA,95037 -Paicines,CA,95043 -San Juan Bautist,CA,95045 -San Martin,CA,95046 -Santa Clara,CA,95050 -Santa Clara,CA,95051 -Santa Clara,CA,95054 -Scotts Valley,CA,95060 -Santa Cruz,CA,95062 -Santa Cruz,CA,95064 -Santa Cruz,CA,95065 -Scotts Valley,CA,95066 -Saratoga,CA,95070 -Soquel,CA,95073 -La Selva Beach,CA,95076 -San Jose,CA,95110 -San Jose,CA,95111 -San Jose,CA,95112 -San Jose,CA,95113 -San Jose,CA,95116 -San Jose,CA,95117 -San Jose,CA,95118 -San Jose,CA,95119 -San Jose,CA,95120 -San Jose,CA,95121 -San Jose,CA,95122 -San Jose,CA,95123 -San Jose,CA,95124 -San Jose,CA,95125 -San Jose,CA,95126 -San Jose,CA,95127 -San Jose,CA,95128 -San Jose,CA,95129 -San Jose,CA,95130 -San Jose,CA,95131 -San Jose,CA,95132 -San Jose,CA,95133 -San Jose,CA,95134 -San Jose,CA,95135 -San Jose,CA,95136 -San Jose,CA,95138 -San Jose,CA,95139 -Mount Hamilton,CA,95140 -San Jose,CA,95141 -San Jose,CA,95148 -Stockton,CA,95202 -Stockton,CA,95203 -Stockton,CA,95204 -Stockton,CA,95205 -Stockton,CA,95206 -Stockton,CA,95207 -Stockton,CA,95209 -Stockton,CA,95210 -Univ Of The Paci,CA,95211 -Stockton,CA,95212 -Stockton,CA,95215 -Stockton,CA,95219 -Acampo,CA,95220 -Angels Camp,CA,95222 -Bear Valley,CA,95223 -Copperopolis,CA,95228 -Farmington,CA,95230 -French Camp,CA,95231 -Glencoe,CA,95232 -Linden,CA,95236 -Lockeford,CA,95237 -Lodi,CA,95240 -Lodi,CA,95242 -Mokelumne Hill,CA,95245 -Mountain Ranch,CA,95246 -Murphys,CA,95247 -San Andreas,CA,95249 -Vallecito,CA,95251 -Valley Springs,CA,95252 -West Point,CA,95255 -Wilseyville,CA,95257 -Woodbridge,CA,95258 -Atwater,CA,95301 -Ballico,CA,95303 -Catheys Valley,CA,95306 -Ceres,CA,95307 -Chinese Camp,CA,95309 -Columbia,CA,95310 -Coulterville,CA,95311 -Crows Landing,CA,95313 -Delhi,CA,95315 -Denair,CA,95316 -El Nido,CA,95317 -Escalon,CA,95320 -Groveland,CA,95321 -Gustine,CA,95322 -Hickman,CA,95323 -Hilmar,CA,95324 -Hornitos,CA,95325 -Hughson,CA,95326 -Jamestown,CA,95327 -La Grange,CA,95329 -Lathrop,CA,95330 -Le Grand,CA,95333 -Livingston,CA,95334 -Cold Springs,CA,95335 -Manteca,CA,95336 -Mariposa,CA,95338 -Red Top,CA,95340 -Midpines,CA,95345 -Mi Wuk Village,CA,95346 -Merced,CA,95348 -Modesto,CA,95350 -Modesto,CA,95351 -Modesto,CA,95354 -Modesto,CA,95355 -Modesto,CA,95356 -Newman,CA,95360 -Knights Ferry,CA,95361 -Patterson,CA,95363 -Pinecrest,CA,95364 -Ripon,CA,95366 -Riverbank,CA,95367 -Salida,CA,95368 -Snelling,CA,95369 -Sonora,CA,95370 -Soulsbyville,CA,95372 -Stevinson,CA,95374 -Tracy,CA,95376 -Tuolumne,CA,95379 -Turlock,CA,95380 -Twain Harte,CA,95383 -Waterford,CA,95386 -Winton,CA,95388 -Santa Rosa,CA,95401 -Santa Rosa,CA,95403 -Santa Rosa,CA,95404 -Santa Rosa,CA,95405 -Santa Rosa,CA,95407 -Santa Rosa,CA,95409 -Albion,CA,95410 -95411,CA,95411 -Annapolis,CA,95412 -95414,CA,95414 -Boonville,CA,95415 -Branscomb,CA,95417 -Caspar,CA,95420 -Cazadero,CA,95421 -Clearlake,CA,95422 -Clearlake Oaks,CA,95423 -Cloverdale,CA,95425 -Comptche,CA,95427 -Covelo,CA,95428 -Dos Rios,CA,95429 -Elk,CA,95432 -Forestville,CA,95436 -Fort Bragg,CA,95437 -Fulton,CA,95439 -95440,CA,95440 -Geyserville,CA,95441 -Glen Ellen,CA,95442 -Glenhaven,CA,95443 -Graton,CA,95444 -Gualala,CA,95445 -Guerneville,CA,95446 -Healdsburg,CA,95448 -Hopland,CA,95449 -Jenner,CA,95450 -Kelseyville,CA,95451 -Kenwood,CA,95452 -Lakeport,CA,95453 -Laytonville,CA,95454 -95455,CA,95455 -Littleriver,CA,95456 -Lower Lake,CA,95457 -Lucerne,CA,95458 -Manchester,CA,95459 -Mendocino,CA,95460 -Middletown,CA,95461 -Russian River Md,CA,95462 -Nice,CA,95464 -Occidental,CA,95465 -Philo,CA,95466 -95467,CA,95467 -Point Arena,CA,95468 -Potter Valley,CA,95469 -Redwood Valley,CA,95470 -Freestone,CA,95472 -Sonoma,CA,95476 -Ukiah,CA,95482 -Upper Lake,CA,95485 -Westport,CA,95488 -95489,CA,95489 -Willits,CA,95490 -Windsor,CA,95492 -Witter Springs,CA,95493 -Yorkville,CA,95494 -95495,CA,95495 -The Sea Ranch,CA,95497 -Eureka,CA,95501 -Mc Kinleyville,CA,95521 -Bayside,CA,95524 -Blue Lake,CA,95525 -Ruth,CA,95526 -Burnt Ranch,CA,95527 -Carlotta,CA,95528 -Crescent City,CA,95531 -Ferndale,CA,95536 -Fortuna,CA,95540 -Gasquet,CA,95543 -Hoopa,CA,95546 -Hydesville,CA,95547 -Klamath,CA,95548 -Kneeland,CA,95549 -Korbel,CA,95550 -Loleta,CA,95551 -Mad River,CA,95552 -Myers Flat,CA,95554 -Orick,CA,95555 -Orleans,CA,95556 -Petrolia,CA,95558 -Redway,CA,95560 -Rio Dell,CA,95562 -Salyer,CA,95563 -Samoa,CA,95564 -Scotia,CA,95565 -Smith River,CA,95567 -Somes Bar,CA,95568 -Redcrest,CA,95569 -Westhaven,CA,95570 -Willow Creek,CA,95573 -Auburn,CA,95603 -Bryte,CA,95605 -Brooks,CA,95606 -Capay,CA,95607 -Carmichael,CA,95608 -Citrus Heights,CA,95610 -Clarksburg,CA,95612 -Cool,CA,95614 -Courtland,CA,95615 -Davis,CA,95616 -El Macero,CA,95618 -Diamond Springs,CA,95619 -Liberty Farms,CA,95620 -Citrus Heights,CA,95621 -Elk Grove,CA,95624 -Elverta,CA,95626 -Esparto,CA,95627 -Fair Oaks,CA,95628 -Fiddletown,CA,95629 -El Dorado Hills,CA,95630 -Foresthill,CA,95631 -Galt,CA,95632 -Garden Valley,CA,95633 -Georgetown,CA,95634 -Greenwood,CA,95635 -Grizzly Flats,CA,95636 -Guinda,CA,95637 -Herald,CA,95638 -Ione,CA,95640 -Isleton,CA,95641 -Jackson,CA,95642 -Kelsey,CA,95643 -Knights Landing,CA,95645 -Lincoln,CA,95648 -Loomis,CA,95650 -Lotus,CA,95651 -Mcclellan Afb,CA,95652 -Madison,CA,95653 -Mather Afb,CA,95655 -Newcastle,CA,95658 -Trowbridge,CA,95659 -North Highlands,CA,95660 -Roseville,CA,95661 -Orangevale,CA,95662 -Penryn,CA,95663 -Pilot Hill,CA,95664 -Pine Grove,CA,95665 -Pioneer,CA,95666 -Placerville,CA,95667 -Pleasant Grove,CA,95668 -Plymouth,CA,95669 -Gold River,CA,95670 -Rescue,CA,95672 -Rio Linda,CA,95673 -Rio Oso,CA,95674 -Rocklin,CA,95677 -Roseville,CA,95678 -Rumsey,CA,95679 -Sheridan,CA,95681 -Cameron Park,CA,95682 -Rancho Murieta,CA,95683 -Somerset,CA,95684 -Sutter Creek,CA,95685 -Vacaville,CA,95687 -Vacaville,CA,95688 -Volcano,CA,95689 -Walnut Grove,CA,95690 -West Sacramento,CA,95691 -Wheatland,CA,95692 -Wilton,CA,95693 -Winters,CA,95694 -Woodland,CA,95695 -Zamora,CA,95698 -Alta,CA,95701 -Applegate,CA,95703 -Camino,CA,95709 -Iowa Hill,CA,95713 -Dutch Flat,CA,95714 -Emigrant Gap,CA,95715 -Gold Run,CA,95717 -Kyburz,CA,95720 -Echo Lake,CA,95721 -Meadow Vista,CA,95722 -Norden,CA,95724 -Pacific House,CA,95726 -Soda Springs,CA,95728 -Twin Bridges,CA,95735 -Rancho Cordova,CA,95742 -Elk Grove,CA,95758 -Sacramento,CA,95814 -Sacramento,CA,95815 -Sacramento,CA,95816 -Sacramento,CA,95817 -Sacramento,CA,95818 -Sacramento,CA,95819 -Sacramento,CA,95820 -Sacramento,CA,95821 -Sacramento,CA,95822 -Sacramento,CA,95823 -Sacramento,CA,95824 -Sacramento,CA,95825 -Sacramento,CA,95826 -Sacramento,CA,95827 -Sacramento,CA,95828 -Sacramento,CA,95829 -Sacramento,CA,95830 -Sacramento,CA,95831 -Sacramento,CA,95832 -Sacramento,CA,95833 -Sacramento,CA,95834 -Sacramento,CA,95835 -Sacramento,CA,95836 -Sacramento,CA,95837 -Sacramento,CA,95838 -Sacramento,CA,95841 -Sacramento,CA,95842 -Sacramento,CA,95864 -Marysville,CA,95901 -Alleghany,CA,95910 -Arbuckle,CA,95912 -Bangor,CA,95914 -Belden,CA,95915 -Berry Creek,CA,95916 -Biggs,CA,95917 -Browns Valley,CA,95918 -Brownsville,CA,95919 -Butte City,CA,95920 -Camptonville,CA,95922 -Canyondam,CA,95923 -Cohasset,CA,95926 -Chico,CA,95928 -Colusa,CA,95932 -Crescent Mills,CA,95934 -Dobbins,CA,95935 -Downieville,CA,95936 -Dunnigan,CA,95937 -Durham,CA,95938 -Elk Creek,CA,95939 -Forbestown,CA,95941 -Butte Meadows,CA,95942 -Glenn,CA,95943 -Goodyears Bar,CA,95944 -Grass Valley,CA,95945 -Penn Valley,CA,95946 -Greenville,CA,95947 -Gridley,CA,95948 -Grass Valley,CA,95949 -Live Oak,CA,95953 -Magalia,CA,95954 -Maxwell,CA,95955 -Meadow Valley,CA,95956 -Meridian,CA,95957 -Nevada City,CA,95959 -North San Juan,CA,95960 -Olivehurst,CA,95961 -Oregon House,CA,95962 -Orland,CA,95963 -Pulga,CA,95965 -Oroville,CA,95966 -Palermo,CA,95968 -Paradise,CA,95969 -Princeton,CA,95970 -Quincy,CA,95971 -Rackerby,CA,95972 -Rough And Ready,CA,95975 -Smartville,CA,95977 -Stonyford,CA,95979 -La Porte,CA,95981 -Sutter,CA,95982 -Taylorsville,CA,95983 -Twain,CA,95984 -Williams,CA,95987 -Willows,CA,95988 -Yuba City,CA,95991 -Yuba City,CA,95993 -Redding,CA,96001 -Redding,CA,96002 -Redding,CA,96003 -Adin,CA,96006 -Anderson,CA,96007 -Bella Vista,CA,96008 -Big Bar,CA,96010 -Burney,CA,96013 -Callahan,CA,96014 -Canby,CA,96015 -Cassel,CA,96016 -Shasta Lake,CA,96019 -Chester,CA,96020 -Corning,CA,96021 -Cottonwood,CA,96022 -Douglas City,CA,96024 -Dunsmuir,CA,96025 -Sawyers Bar,CA,96027 -Fall River Mills,CA,96028 -Forks Of Salmon,CA,96031 -Fort Jones,CA,96032 -French Gulch,CA,96033 -Gazelle,CA,96034 -Gerber,CA,96035 -Grenada,CA,96038 -Happy Camp,CA,96039 -Hat Creek,CA,96040 -Hayfork,CA,96041 -Hornbrook,CA,96044 -Horse Creek,CA,96045 -Igo,CA,96047 -Helena,CA,96048 -Klamath River,CA,96050 -Lakehead,CA,96051 -Lewiston,CA,96052 -Los Molinos,CA,96055 -Mcarthur,CA,96056 -Mccloud,CA,96057 -Macdoel,CA,96058 -Manton,CA,96059 -Millville,CA,96062 -Mineral,CA,96063 -Montague,CA,96064 -Montgomery Creek,CA,96065 -Mount Shasta,CA,96067 -Oak Run,CA,96069 -Old Station,CA,96071 -Palo Cedro,CA,96073 -Paynes Creek,CA,96075 -Wildwood,CA,96076 -Red Bluff,CA,96080 -Scott Bar,CA,96085 -Seiad Valley,CA,96086 -Shasta,CA,96087 -Shingletown,CA,96088 -Trinity Center,CA,96091 -Weaverville,CA,96093 -Edgewood,CA,96094 -Whitmore,CA,96096 -Yreka,CA,96097 -Alturas,CA,96101 -Cromberg,CA,96103 -Cedarville,CA,96104 -Chilcoot,CA,96105 -Clio,CA,96106 -Coleville,CA,96107 -Davis Creek,CA,96108 -Doyle,CA,96109 -Floriston,CA,96111 -Fort Bidwell,CA,96112 -Herlong,CA,96113 -Janesville,CA,96114 -Lake City,CA,96115 -Litchfield,CA,96117 -Loyalton,CA,96118 -Hope Valley,CA,96120 -Milford,CA,96121 -Portola,CA,96122 -Ravendale,CA,96123 -Calpine,CA,96124 -Sierra City,CA,96125 -Sierraville,CA,96126 -Standish,CA,96128 -Susanville,CA,96130 -Termo,CA,96132 -Topaz,CA,96133 -Tulelake,CA,96134 -Vinton,CA,96135 -Wendel,CA,96136 -Peninsula Villag,CA,96137 -Carnelian Bay,CA,96140 -Homewood,CA,96141 -Tahoma,CA,96142 -Kings Beach,CA,96143 -Tahoe City,CA,96145 -Tahoe Vista,CA,96148 -South Lake Tahoe,CA,96150 -Truckee,CA,96161 -Truckee,CA,96162 -Arvada,CO,80002 -Arvada,CO,80003 -Arvada,CO,80004 -Arvada,CO,80005 -Aurora,CO,80010 -Aurora,CO,80011 -Aurora,CO,80012 -Aurora,CO,80013 -Aurora,CO,80014 -Aurora,CO,80015 -Aurora,CO,80016 -Aurora,CO,80017 -Aurora,CO,80018 -Aurora,CO,80019 -Broomfield,CO,80020 -Westminster,CO,80021 -Commerce City,CO,80022 -Lafayette,CO,80026 -Louisville,CO,80027 -Westminster,CO,80030 -Wheat Ridge,CO,80033 -Aurora,CO,80045 -Agate,CO,80101 -Bennett,CO,80102 -Byers,CO,80103 -Castle Rock,CO,80104 -Deer Trail,CO,80105 -Elbert,CO,80106 -Elizabeth,CO,80107 -Cherry Hills Vil,CO,80110 -Cherry Hills Vil,CO,80111 -Englewood,CO,80112 -Franktown,CO,80116 -Kiowa,CO,80117 -Larkspur,CO,80118 -Littleton,CO,80120 -Greenwood Villag,CO,80121 -Littleton,CO,80122 -Bow Mar,CO,80123 -Littleton,CO,80124 -Littleton,CO,80125 -Highlands Ranch,CO,80126 -Littleton,CO,80127 -Monument,CO,80132 -Palmer Lake,CO,80133 -Parker,CO,80134 -Deckers,CO,80135 -Strasburg,CO,80136 -Watkins,CO,80137 -Denver,CO,80202 -Denver,CO,80203 -Denver,CO,80204 -Denver,CO,80205 -Denver,CO,80206 -Denver,CO,80207 -Denver,CO,80209 -Denver,CO,80210 -Denver,CO,80211 -Mountain View,CO,80212 -Edgewater,CO,80214 -Lakewood,CO,80215 -Denver,CO,80216 -Denver,CO,80218 -Denver,CO,80219 -Denver,CO,80220 -Federal Heights,CO,80221 -Glendale,CO,80222 -Denver,CO,80223 -Denver,CO,80224 -Lakewood,CO,80226 -Denver,CO,80227 -Lakewood,CO,80228 -Thornton,CO,80229 -Denver,CO,80231 -Lakewood,CO,80232 -Northglenn,CO,80233 -Northglenn,CO,80234 -Denver,CO,80235 -Denver,CO,80236 -Denver,CO,80237 -Denver,CO,80239 -Northglenn,CO,80241 -Denver,CO,80249 -Boulder,CO,80301 -Boulder,CO,80302 -Boulder,CO,80303 -Boulder,CO,80304 -Golden,CO,80401 -Golden,CO,80403 -Bailey,CO,80421 -Black Hawk,CO,80422 -Bond,CO,80423 -Clark,CO,80428 -Climax,CO,80429 -Coalmont,CO,80430 -Conifer,CO,80433 -Keystone,CO,80435 -Evergreen,CO,80439 -Fairplay,CO,80440 -Foxton,CO,80441 -Granby,CO,80446 -Grand Lake,CO,80447 -Idaho Springs,CO,80452 -Jamestown,CO,80455 -Jefferson,CO,80456 -Kremmling,CO,80459 -Leadville,CO,80461 -Mc Coy,CO,80463 -Morrison,CO,80465 -Nederland,CO,80466 -Oak Creek,CO,80467 -Parshall,CO,80468 -Pine,CO,80470 -Pinecliffe,CO,80471 -Rollinsville,CO,80474 -Toponas,CO,80479 -Walden,CO,80480 -Ward,CO,80481 -Steamboat Spring,CO,80487 -Longmont,CO,80501 -Longmont,CO,80503 -Longmont,CO,80504 -Allenspark,CO,80510 -Bellvue,CO,80512 -Berthoud,CO,80513 -Dacono,CO,80514 -Drake,CO,80515 -Erie,CO,80516 -Estes Park,CO,80517 -Fort Collins,CO,80521 -Fort Collins,CO,80524 -Fort Collins,CO,80525 -Fort Collins,CO,80526 -Johnstown,CO,80534 -Laporte,CO,80535 -Virginia Dale,CO,80536 -Loveland,CO,80537 -Loveland,CO,80538 -Lyons,CO,80540 -Milliken,CO,80543 -Red Feather Lake,CO,80545 -Wellington,CO,80549 -Windsor,CO,80550 -Lochbui,CO,80601 -Ault,CO,80610 -Briggsdale,CO,80611 -Carr,CO,80612 -Eaton,CO,80615 -Evans,CO,80620 -Wattenburg,CO,80621 -Galeton,CO,80622 -Gill,CO,80624 -Garden City,CO,80631 -Greeley,CO,80634 -Henderson,CO,80640 -Hudson,CO,80642 -Keenesburg,CO,80643 -Kersey,CO,80644 -La Salle,CO,80645 -Nunn,CO,80648 -Orchard,CO,80649 -Pierce,CO,80650 -Platteville,CO,80651 -Roggen,CO,80652 -Weldona,CO,80653 -Hoyt,CO,80654 -Fort Morgan,CO,80701 -Akron,CO,80720 -Amherst,CO,80721 -Atwood,CO,80722 -Brush,CO,80723 -Crook,CO,80726 -Eckley,CO,80727 -Fleming,CO,80728 -Grover,CO,80729 -Haxtun,CO,80731 -Hillrose,CO,80733 -Holyoke,CO,80734 -Hale,CO,80735 -Iliff,CO,80736 -Julesburg,CO,80737 -Lindon,CO,80740 -Willard,CO,80741 -New Raymer,CO,80742 -Otis,CO,80743 -Ovid,CO,80744 -Padroni,CO,80745 -Peetz,CO,80747 -Sedgwick,CO,80749 -Snyder,CO,80750 -Sterling,CO,80751 -Stoneham,CO,80754 -Vernon,CO,80755 -Last Chance,CO,80757 -Laird,CO,80758 -Yuma,CO,80759 -Anton,CO,80801 -Arapahoe,CO,80802 -Arriba,CO,80804 -Bethune,CO,80805 -Burlington,CO,80807 -Calhan,CO,80808 -North Pole,CO,80809 -Cheyenne Wells,CO,80810 -Cope,CO,80812 -Divide,CO,80814 -Flagler,CO,80815 -Florissant,CO,80816 -Fountain,CO,80817 -Genoa,CO,80818 -Guffey,CO,80820 -Hugo,CO,80821 -Joes,CO,80822 -Karval,CO,80823 -Kirk,CO,80824 -Kit Carson,CO,80825 -Lake George,CO,80827 -Limon,CO,80828 -Manitou Springs,CO,80829 -Matheson,CO,80830 -Peyton,CO,80831 -Ramah,CO,80832 -Rush,CO,80833 -Seibert,CO,80834 -Simla,CO,80835 -Stratton,CO,80836 -United States Ai,CO,80840 -Vona,CO,80861 -Woodland Park,CO,80863 -Yoder,CO,80864 -Colorado Springs,CO,80903 -Colorado Springs,CO,80904 -Colorado Springs,CO,80905 -Colorado Springs,CO,80906 -Colorado Springs,CO,80907 -Colorado Springs,CO,80908 -Colorado Springs,CO,80909 -Colorado Springs,CO,80910 -Colorado Springs,CO,80911 -Fort Carson,CO,80913 -Cheyenne Mtn Afb,CO,80914 -Colorado Springs,CO,80915 -Colorado Springs,CO,80916 -Colorado Springs,CO,80917 -Colorado Springs,CO,80918 -Colorado Springs,CO,80919 -Colorado Springs,CO,80920 -Colorado Springs,CO,80921 -Colorado Springs,CO,80922 -Colorado Springs,CO,80925 -Colorado Springs,CO,80926 -Colorado Springs,CO,80928 -Colorado Springs,CO,80929 -Colorado Springs,CO,80930 -Pueblo,CO,81001 -Pueblo,CO,81003 -Pueblo,CO,81004 -Pueblo,CO,81005 -Pueblo,CO,81006 -Pueblo West,CO,81007 -Pueblo,CO,81008 -Aguilar,CO,81020 -Arlington,CO,81021 -North Avondale,CO,81022 -Beulah,CO,81023 -Boone,CO,81025 -Brandon,CO,81026 -Branson,CO,81027 -Bristol,CO,81028 -Campo,CO,81029 -Chivington,CO,81036 -Fowler,CO,81039 -Farisita,CO,81040 -Granada,CO,81041 -Hartman,CO,81043 -Caddoa,CO,81044 -Haswell,CO,81045 -Holly,CO,81047 -Villegreen,CO,81049 -Timpas,CO,81050 -Lamar,CO,81052 -Deora,CO,81054 -Cuchara,CO,81055 -Mc Clave,CO,81057 -Manzanola,CO,81058 -Delhi,CO,81059 -Olney Springs,CO,81062 -Ordway,CO,81063 -Utleyville,CO,81064 -Rocky Ford,CO,81067 -Rye,CO,81069 -Towner,CO,81071 -Springfield,CO,81073 -Sugar City,CO,81076 -81080,CO,81080 -Trinchera,CO,81081 -Jansen,CO,81082 -Lycan,CO,81084 -Vilas,CO,81087 -Farista,CO,81089 -Walsh,CO,81090 -Weston,CO,81091 -Wiley,CO,81092 -Alamosa,CO,81101 -Antonito,CO,81120 -Arboles,CO,81121 -Bayfield,CO,81122 -Blanca,CO,81123 -Center,CO,81125 -Creede,CO,81130 -La Garita,CO,81132 -Fort Garland,CO,81133 -Hooper,CO,81136 -Ignacio,CO,81137 -La Jara,CO,81140 -Moffat,CO,81143 -Monte Vista,CO,81144 -Mosca,CO,81146 -Pagosa Springs,CO,81147 -Saguache,CO,81149 -San Acacio,CO,81150 -Sanford,CO,81151 -Mesita,CO,81152 -San Pablo,CO,81153 -South Fork,CO,81154 -Villa Grove,CO,81155 -Salida,CO,81201 -Almont,CO,81210 -Buena Vista,CO,81211 -Canon City,CO,81212 -Cimarron,CO,81220 -Crested Butte,CO,81224 -Florence,CO,81226 -Granite,CO,81228 -Gunnison,CO,81230 -Howard,CO,81233 -Lake City,CO,81235 -Nathrop,CO,81236 -Parlin,CO,81239 -Penrose,CO,81240 -Pitkin,CO,81241 -Powderhorn,CO,81243 -81250,CO,81250 -Twin Lakes,CO,81251 -Westcliffe,CO,81252 -Wetmore,CO,81253 -Durango,CO,81301 -Cahone,CO,81320 -Cortez,CO,81321 -Dolores,CO,81323 -Dove Creek,CO,81324 -Egnar,CO,81325 -Hesperus,CO,81326 -Lewis,CO,81327 -Mancos,CO,81328 -Pleasant View,CO,81331 -Towaoc,CO,81334 -Yellow Jacket,CO,81335 -Montrose,CO,81401 -Austin,CO,81410 -Bedrock,CO,81411 -Cedaredge,CO,81413 -Crawford,CO,81415 -Delta,CO,81416 -Eckert,CO,81418 -Hotchkiss,CO,81419 -Naturita,CO,81422 -Norwood,CO,81423 -Nucla,CO,81424 -Olathe,CO,81425 -Ophir,CO,81426 -Ouray,CO,81427 -Paonia,CO,81428 -Placerville,CO,81430 -Redvale,CO,81431 -Ridgway,CO,81432 -Silverton,CO,81433 -Somerset,CO,81434 -Telluride,CO,81435 -Grand Junction,CO,81501 -Grand Junction,CO,81503 -Fruitvale,CO,81504 -Grand Junction,CO,81505 -Grand Junction,CO,81506 -Clifton,CO,81520 -Fruita,CO,81521 -Gateway,CO,81522 -Loma,CO,81524 -Mack,CO,81525 -Palisade,CO,81526 -Whitewater,CO,81527 -Glenwood Springs,CO,81601 -Dinosaur,CO,81610 -Aspen,CO,81611 -Basalt,CO,81621 -Marble,CO,81623 -Collbran,CO,81624 -Craig,CO,81625 -De Beque,CO,81630 -Eagle,CO,81631 -Elk Springs,CO,81633 -Battlement Mesa,CO,81635 -Gypsum,CO,81637 -Hamilton,CO,81638 -Hayden,CO,81639 -Maybell,CO,81640 -Meeker,CO,81641 -Meredith,CO,81642 -Mesa,CO,81643 -New Castle,CO,81647 -Rangely,CO,81648 -Rifle,CO,81650 -Silt,CO,81652 -Slater,CO,81653 -Snowmass,CO,81654 -Vail,CO,81657 -Avon,CT,6001 -Bloomfield,CT,6002 -Bristol,CT,6010 -Burlington,CT,6013 -Windsorville,CT,6016 -Canaan,CT,6018 -Canton,CT,6019 -Canton Center,CT,6020 -Colebrook,CT,6021 -Collinsville,CT,6022 -East Berlin,CT,6023 -East Canaan,CT,6024 -East Granby,CT,6026 -East Hartland,CT,6027 -Ellington,CT,6029 -Falls Village,CT,6031 -Farmington,CT,6032 -Glastonbury,CT,6033 -Granby,CT,6035 -Berlin,CT,6037 -Lakeville,CT,6039 -Manchester,CT,6040 -Bolton,CT,6043 -New Britain,CT,6051 -New Britain,CT,6052 -New Britain,CT,6053 -New Hartford,CT,6057 -Norfolk,CT,6058 -North Canton,CT,6059 -North Granby,CT,6060 -Plainville,CT,6062 -Pleasant Valley,CT,6063 -Riverton,CT,6065 -Vernon Rockville,CT,6066 -Rocky Hill,CT,6067 -Salisbury,CT,6068 -Sharon,CT,6069 -Simsbury,CT,6070 -Somers,CT,6071 -South Glastonbur,CT,6073 -South Windsor,CT,6074 -Stafford Springs,CT,6076 -Suffield,CT,6078 -Tariffville,CT,6081 -Enfield,CT,6082 -Tolland,CT,6084 -Unionville,CT,6085 -East Windsor,CT,6088 -Weatogue,CT,6089 -West Granby,CT,6090 -West Simsbury,CT,6092 -West Suffield,CT,6093 -Windsor,CT,6095 -Windsor Locks,CT,6096 -Winsted,CT,6098 -Hartford,CT,6103 -Hartford,CT,6105 -Hartford,CT,6106 -W Hartford,CT,6107 -East Hartford,CT,6108 -Wethersfield,CT,6109 -W Hartford,CT,6110 -Maple Hill,CT,6111 -Hartford,CT,6112 -Hartford,CT,6114 -W Hartford,CT,6117 -East Hartford,CT,6118 -W Hartford,CT,6119 -Hartford,CT,6120 -Willimantic,CT,6226 -Amston,CT,6231 -Andover,CT,6232 -Brooklyn,CT,6234 -Chaplin,CT,6235 -Columbia,CT,6237 -Coventry,CT,6238 -Danielson,CT,6239 -Dayville,CT,6241 -Eastford,CT,6242 -East Killingly,CT,6243 -Hampton,CT,6247 -Hebron,CT,6248 -Lebanon,CT,6249 -Mansfield Center,CT,6250 -North Franklin,CT,6254 -North Grosvenord,CT,6255 -North Windham,CT,6256 -Pomfret Center,CT,6259 -Putnam,CT,6260 -Quinebaug,CT,6262 -Scotland,CT,6264 -South Windham,CT,6266 -Storrs Mansfield,CT,6268 -Thompson,CT,6277 -Warrenville,CT,6278 -West Willington,CT,6279 -Windham,CT,6280 -Woodstock,CT,6281 -Woodstock Valley,CT,6282 -New London,CT,6320 -Baltic,CT,6330 -Canterbury,CT,6331 -East Lyme,CT,6333 -Bozrah,CT,6334 -Gales Ferry,CT,6335 -Gilman,CT,6336 -Ledyard,CT,6339 -Groton,CT,6340 -Groton,CT,6349 -Jewett City,CT,6351 -Montville,CT,6353 -Moosup,CT,6354 -Mystic,CT,6355 -Niantic,CT,6357 -North Stonington,CT,6359 -Norwich,CT,6360 -Preston,CT,6365 -Oakdale,CT,6370 -Old Lyme,CT,6371 -Plainfield,CT,6374 -Quaker Hill,CT,6375 -Sterling,CT,6377 -Stonington,CT,6378 -Pawcatuck,CT,6379 -Taftville,CT,6380 -Uncasville,CT,6382 -Voluntown,CT,6384 -Waterford,CT,6385 -Ansonia,CT,6401 -Beacon Falls,CT,6403 -Branford,CT,6405 -Centerbrook,CT,6409 -Cheshire,CT,6410 -Chester,CT,6412 -Clinton,CT,6413 -Colchester,CT,6415 -Cromwell,CT,6416 -Deep River,CT,6417 -Derby,CT,6418 -Killingworth,CT,6419 -Salem,CT,6420 -Durham,CT,6422 -East Haddam,CT,6423 -East Hampton,CT,6424 -Essex,CT,6426 -Fairfield,CT,6430 -Fairfield,CT,6432 -Guilford,CT,6437 -Haddam,CT,6438 -Higganum,CT,6441 -Ivoryton,CT,6442 -Madison,CT,6443 -Marlborough,CT,6447 -Meriden,CT,6450 -Middlefield,CT,6455 -Middletown,CT,6457 -Milford,CT,6460 -Monroe,CT,6468 -Moodus,CT,6469 -Newtown,CT,6470 -North Branford,CT,6471 -Northford,CT,6472 -North Haven,CT,6473 -Old Saybrook,CT,6475 -Orange,CT,6477 -Oxford,CT,6478 -Plantsville,CT,6479 -Portland,CT,6480 -Rockfall,CT,6481 -Sandy Hook,CT,6482 -Seymour,CT,6483 -Shelton,CT,6484 -Southbury,CT,6488 -Southington,CT,6489 -Southport,CT,6490 -Wallingford,CT,6492 -Stratford,CT,6497 -Westbrook,CT,6498 -New Haven,CT,6510 -New Haven,CT,6511 -East Haven,CT,6512 -East Haven,CT,6513 -Hamden,CT,6514 -New Haven,CT,6515 -West Haven,CT,6516 -Hamden,CT,6517 -Hamden,CT,6518 -New Haven,CT,6519 -Bethany,CT,6524 -Woodbridge,CT,6525 -Bridgeport,CT,6604 -Bridgeport,CT,6605 -Bridgeport,CT,6606 -Bridgeport,CT,6607 -Bridgeport,CT,6608 -Bridgeport,CT,6610 -Trumbull,CT,6611 -Easton,CT,6612 -Waterbury,CT,6702 -Waterbury,CT,6704 -Waterbury,CT,6705 -Waterbury,CT,6706 -Waterbury,CT,6708 -Waterbury,CT,6710 -Prospect,CT,6712 -Wolcott,CT,6716 -Bantam,CT,6750 -Bethlehem,CT,6751 -Bridgewater,CT,6752 -Warren,CT,6754 -Gaylordsville,CT,6755 -Goshen,CT,6756 -Kent,CT,6757 -Lakeside,CT,6758 -Litchfield,CT,6759 -Middlebury,CT,6762 -Morris,CT,6763 -Naugatuck,CT,6770 -New Milford,CT,6776 -New Preston Marb,CT,6777 -Northfield,CT,6778 -Oakville,CT,6779 -Plymouth,CT,6782 -Roxbury,CT,6783 -Sherman,CT,6784 -South Kent,CT,6785 -Terryville,CT,6786 -Thomaston,CT,6787 -Torrington,CT,6790 -Harwinton,CT,6791 -Washington Depot,CT,6793 -Washington Depot,CT,6794 -Watertown,CT,6795 -West Cornwall,CT,6796 -Woodbury,CT,6798 -Bethel,CT,6801 -Brookfield,CT,6804 -Cos Cob,CT,6807 -Danbury,CT,6810 -Danbury,CT,6811 -New Fairfield,CT,6812 -Darien,CT,6820 -Byram,CT,6830 -Greenwich,CT,6831 -New Canaan,CT,6840 -Norwalk,CT,6850 -Norwalk,CT,6851 -Norwalk,CT,6853 -Norwalk,CT,6854 -Norwalk,CT,6855 -Old Greenwich,CT,6870 -Ridgefield,CT,6877 -Riverside,CT,6878 -Westport,CT,6880 -Weston,CT,6883 -West Redding,CT,6896 -Wilton,CT,6897 -Stamford,CT,6901 -Stamford,CT,6902 -Stamford,CT,6903 -Ridgeway,CT,6905 -Stamford,CT,6906 -Stamford,CT,6907 -Bear,DE,19701 -Newark,DE,19702 -Claymont,DE,19703 -Hockessin,DE,19707 -Middletown,DE,19709 -Newark,DE,19711 -Newark,DE,19713 -Manor,DE,19720 -Townsend,DE,19734 -Wilmington,DE,19801 -Wilmington,DE,19802 -Talleyville,DE,19803 -Newport,DE,19804 -Wilmington,DE,19805 -Wilmington,DE,19806 -Greenville,DE,19807 -Marshallton,DE,19808 -Edgemoor,DE,19809 -Edgemoor,DE,19810 -Dover,DE,19901 -Dover Afb,DE,19902 -Bethany Beach,DE,19930 -Bethel,DE,19931 -Bridgeville,DE,19933 -Camden Wyoming,DE,19934 -Clayton,DE,19938 -Dagsboro,DE,19939 -Delmar,DE,19940 -Ellendale,DE,19941 -Felton,DE,19943 -Frankford,DE,19945 -Frederica,DE,19946 -Georgetown,DE,19947 -Greenwood,DE,19950 -Harbeson,DE,19951 -Harrington,DE,19952 -Hartly,DE,19953 -Houston,DE,19954 -Laurel,DE,19956 -Lewes,DE,19958 -Lincoln,DE,19960 -Magnolia,DE,19962 -Milford,DE,19963 -Marydel,DE,19964 -Long Neck,DE,19966 -Millville,DE,19967 -Milton,DE,19968 -Millville,DE,19970 -Dewey Beach,DE,19971 -Seaford,DE,19973 -Selbyville,DE,19975 -Smyrna,DE,19977 -Viola,DE,19979 -Washington,DC,20001 -Washington,DC,20002 -Washington,DC,20003 -Washington,DC,20004 -Washington,DC,20005 -Washington,DC,20006 -Washington,DC,20007 -Washington,DC,20008 -Washington,DC,20009 -Washington,DC,20010 -Washington,DC,20011 -Washington,DC,20012 -Washington,DC,20015 -Washington,DC,20016 -Washington,DC,20017 -Washington,DC,20018 -Washington,DC,20019 -Washington,DC,20020 -Washington,DC,20024 -Washington,DC,20032 -Washington,DC,20036 -Washington,DC,20037 -Pentagon,DC,20301 -Washington,DC,20336 -Branford,FL,32008 -Bryceville,FL,32009 -Callahan,FL,32011 -Day,FL,32013 -Elkton,FL,32033 -Amelia Island,FL,32034 -Fort White,FL,32038 -Glen Saint Mary,FL,32040 -Green Cove Sprin,FL,32043 -Hampton,FL,32044 -Hilliard,FL,32046 -Jasper,FL,32052 -Jennings,FL,32053 -Lake Butler,FL,32054 -Lake City,FL,32055 -Lawtey,FL,32058 -Lee,FL,32059 -Boys Ranch,FL,32060 -Lulu,FL,32061 -Mc Alpin,FL,32062 -Macclenny,FL,32063 -Orange Park,FL,32065 -Mayo,FL,32066 -Middleburg,FL,32068 -O Brien,FL,32071 -Orange Park,FL,32073 -Ponte Vedra Beac,FL,32082 -Raiford,FL,32083 -Saint Augustine,FL,32084 -Saint Augustine,FL,32086 -Sanderson,FL,32087 -Starke,FL,32091 -Saint Augustine,FL,32092 -Wellborn,FL,32094 -Saint Augustine,FL,32095 -White Springs,FL,32096 -Yulee,FL,32097 -Astor,FL,32102 -Bunnell,FL,32110 -Crescent City,FL,32112 -Citra,FL,32113 -Daytona Beach,FL,32114 -Holly Hill,FL,32117 -Daytona Beach,FL,32118 -Dunlawton,FL,32119 -Port Orange,FL,32124 -Port Orange,FL,32127 -De Leon Springs,FL,32130 -East Palatka,FL,32131 -Edgewater,FL,32132 -Salt Springs,FL,32134 -Flagler Beach,FL,32136 -Palm Coast,FL,32137 -Georgetown,FL,32139 -Florahome,FL,32140 -Edgewater,FL,32141 -Hastings,FL,32145 -Interlachen,FL,32148 -Lady Lake,FL,32159 -New Smyrna Beach,FL,32168 -New Smyrna Beach,FL,32169 -Ormond Beach,FL,32174 -Ormond Beach,FL,32176 -Palatka,FL,32177 -Ocklawaha,FL,32179 -Pierson,FL,32180 -Pomona Park,FL,32181 -San Mateo,FL,32187 -Satsuma,FL,32189 -Seville,FL,32190 -Weirsdale,FL,32195 -Jacksonville,FL,32202 -Jacksonville,FL,32204 -Jacksonville,FL,32205 -Jacksonville,FL,32206 -Jacksonville,FL,32207 -Jacksonville,FL,32208 -Jacksonville,FL,32209 -Jacksonville,FL,32210 -Jacksonville,FL,32211 -Jacksonville N A,FL,32212 -Cecil Field Nas,FL,32215 -Jacksonville,FL,32216 -Jacksonville,FL,32217 -Jacksonville,FL,32218 -Jacksonville,FL,32219 -Jacksonville,FL,32220 -Jacksonville,FL,32221 -Jacksonville,FL,32222 -Jacksonville,FL,32223 -Jacksonville,FL,32224 -Jacksonville,FL,32225 -Jacksonville,FL,32226 -Jacksonville Bea,FL,32227 -Atlantic Beach,FL,32233 -Baldwin,FL,32234 -Jacksonville,FL,32244 -Jacksonville Bea,FL,32250 -Jacksonville,FL,32256 -Jacksonville,FL,32257 -Jacksonville,FL,32258 -Jacksonville,FL,32259 -Neptune Beach,FL,32266 -Tallahassee,FL,32301 -Tallahassee,FL,32303 -Tallahassee,FL,32304 -Tallahassee,FL,32306 -Tallahassee,FL,32308 -Tallahassee,FL,32310 -Tallahassee,FL,32311 -Tallahassee,FL,32312 -Apalachicola,FL,32320 -Bristol,FL,32321 -Carrabelle,FL,32322 -Chattahoochee,FL,32324 -Crawfordville,FL,32327 -Saint George Isl,FL,32328 -Greenville,FL,32331 -Havana,FL,32333 -Hosford,FL,32334 -Lamont,FL,32336 -Madison,FL,32340 -Monticello,FL,32344 -Panacea,FL,32346 -Perry,FL,32347 -Pinetta,FL,32350 -Quincy,FL,32351 -Salem,FL,32356 -Sopchoppy,FL,32358 -Steinhatchee,FL,32359 -Panama City,FL,32401 -Panama City,FL,32403 -Panama City,FL,32404 -Panama City,FL,32405 -Panama City Beac,FL,32407 -Panama City Beac,FL,32408 -Southport,FL,32409 -Panama City Beac,FL,32413 -Alford,FL,32420 -Altha,FL,32421 -Bascom,FL,32423 -Blountstown,FL,32424 -Bonifay,FL,32425 -Campbellton,FL,32426 -Caryville,FL,32427 -Chipley,FL,32428 -Clarksville,FL,32430 -Cottondale,FL,32431 -De Funiak Spring,FL,32433 -Ebro,FL,32437 -Fountain,FL,32438 -Freeport,FL,32439 -Graceville,FL,32440 -Grand Ridge,FL,32442 -Greenwood,FL,32443 -Lynn Haven,FL,32444 -Malone,FL,32445 -Marianna,FL,32446 -Kinard,FL,32449 -Ponce De Leon,FL,32455 -Port Saint Joe,FL,32456 -Santa Rosa Beach,FL,32459 -Sneads,FL,32460 -Vernon,FL,32462 -Westville,FL,32464 -Wewahitchka,FL,32465 -Youngstown,FL,32466 -Pensacola,FL,32501 -Pensacola,FL,32503 -Pensacola,FL,32504 -Pensacola,FL,32505 -Pensacola,FL,32506 -Pensacola,FL,32507 -Pensacola,FL,32508 -Pensacola,FL,32514 -Pensacola,FL,32526 -Baker,FL,32531 -Cantonment,FL,32533 -Pensacola,FL,32534 -Century,FL,32535 -Crestview,FL,32536 -Sandestin,FL,32541 -Eglin A F B,FL,32542 -Fort Walton Beac,FL,32547 -Fort Walton Beac,FL,32548 -Gulf Breeze,FL,32561 -Holt,FL,32564 -Jay,FL,32565 -Navarre,FL,32566 -Laurel Hill,FL,32567 -Walnut Hill,FL,32568 -Mary Esther,FL,32569 -Milton,FL,32570 -Pace,FL,32571 -Niceville,FL,32578 -Shalimar,FL,32579 -Valparaiso,FL,32580 -Milton,FL,32583 -Gainesville,FL,32601 -Gainesville,FL,32603 -Gainesville,FL,32605 -Gainesville,FL,32606 -Gainesville,FL,32607 -Gainesville,FL,32608 -Gainesville,FL,32609 -Gainesville,FL,32611 -Santa Fe,FL,32615 -Anthony,FL,32617 -Archer,FL,32618 -Bell,FL,32619 -32620,FL,32620 -Bronson,FL,32621 -Brooker,FL,32622 -Cedar Key,FL,32625 -Chiefland,FL,32626 -32629,FL,32629 -32630,FL,32630 -Earleton,FL,32631 -32636,FL,32636 -Hawthorne,FL,32640 -32642,FL,32642 -High Springs,FL,32643 -32646,FL,32646 -Horseshoe Beach,FL,32648 -32649,FL,32649 -32650,FL,32650 -32652,FL,32652 -Keystone Heights,FL,32656 -32661,FL,32661 -32665,FL,32665 -Melrose,FL,32666 -Micanopy,FL,32667 -Morriston,FL,32668 -Newberry,FL,32669 -32670,FL,32670 -32671,FL,32671 -32672,FL,32672 -32673,FL,32673 -32674,FL,32674 -32675,FL,32675 -32676,FL,32676 -Old Town,FL,32680 -32684,FL,32684 -Reddick,FL,32686 -32688,FL,32688 -32691,FL,32691 -Trenton,FL,32693 -Waldo,FL,32694 -Williston,FL,32696 -32698,FL,32698 -Altamonte Spring,FL,32701 -Altoona,FL,32702 -Hunt Club,FL,32703 -Casselberry,FL,32707 -Winter Springs,FL,32708 -Christmas,FL,32709 -Apopka,FL,32712 -Debary,FL,32713 -Forest City,FL,32714 -Deland,FL,32720 -Deland,FL,32724 -Deltona,FL,32725 -Eustis,FL,32726 -Fern Park,FL,32730 -Geneva,FL,32732 -Grand Island,FL,32735 -Deltona,FL,32738 -Lake Helen,FL,32744 -Heathrow,FL,32746 -Longwood,FL,32750 -Eatonville,FL,32751 -Mims,FL,32754 -Mount Dora,FL,32757 -Oak Hill,FL,32759 -Orange City,FL,32763 -Osteen,FL,32764 -Oviedo,FL,32765 -Chuluota,FL,32766 -Paisley,FL,32767 -Sanford,FL,32771 -Sanford,FL,32773 -Sorrento,FL,32776 -Tavares,FL,32778 -Springs Plaza,FL,32779 -Titusville,FL,32780 -Dona Vista,FL,32784 -Winter Park,FL,32789 -Aloma,FL,32792 -Titusville,FL,32796 -Zellwood,FL,32798 -Orlando,FL,32801 -Orlando,FL,32803 -Fairvilla,FL,32804 -Orlando,FL,32805 -Orlando,FL,32806 -Azalea Park,FL,32807 -Pine Hills,FL,32808 -Pine Castle,FL,32809 -Lockhart,FL,32810 -Orlo Vista,FL,32811 -Orlando,FL,32812 -Naval Training C,FL,32813 -Kennedy Space Ce,FL,32815 -Union Park,FL,32817 -Orlando,FL,32818 -Sand Lake,FL,32819 -Union Park,FL,32820 -Orlando,FL,32821 -Ventura,FL,32822 -Orlando,FL,32824 -Orlando,FL,32825 -Orlando,FL,32826 -Orlando,FL,32827 -Orlando,FL,32828 -Orlando,FL,32829 -Lake Buena Vista,FL,32830 -Orlando,FL,32831 -Orlando,FL,32832 -Union Park,FL,32833 -Orlando,FL,32835 -Orlando,FL,32836 -Orlando,FL,32837 -Orlando,FL,32839 -Melbourne,FL,32901 -Indialantic,FL,32903 -Melbourne Villag,FL,32904 -Palm Bay,FL,32905 -Palm Bay,FL,32907 -Palm Bay,FL,32908 -Palm Bay,FL,32909 -Cape Canaveral,FL,32920 -Cocoa,FL,32922 -Patrick A F B,FL,32925 -Cocoa,FL,32926 -Port Saint John,FL,32927 -Cocoa Beach,FL,32931 -Eau Gallie,FL,32934 -Melbourne,FL,32935 -Indian Harbor Be,FL,32937 -Melbourne,FL,32940 -Fellsmere,FL,32948 -Melbourne Beach,FL,32951 -Merritt Island,FL,32952 -Merritt Island,FL,32953 -Rockledge,FL,32955 -Sebastian,FL,32958 -Vero Beach,FL,32960 -Vero Beach,FL,32962 -Indian River Sho,FL,32963 -Vero Beach,FL,32966 -Vero Beach,FL,32967 -Vero Beach,FL,32968 -Barefoot Bay,FL,32976 -Dania,FL,33004 -Hallandale,FL,33009 -Hialeah,FL,33010 -Hialeah,FL,33012 -Hialeah,FL,33013 -Hialeah,FL,33014 -Hialeah,FL,33015 -Hialeah,FL,33016 -Hollywood,FL,33019 -Hollywood,FL,33020 -Hollywood,FL,33021 -Miramar,FL,33023 -Pembroke Pines,FL,33024 -Hollywood,FL,33025 -Hollywood,FL,33026 -Hollywood,FL,33027 -Hollywood,FL,33028 -Pembroke Pines,FL,33029 -Homestead,FL,33030 -Homestead,FL,33031 -Princeton,FL,33032 -Homestead,FL,33033 -Florida City,FL,33034 -Homestead,FL,33035 -Islamorada,FL,33036 -Ocean Reef,FL,33037 -Homestead Air Fo,FL,33039 -Naval Air Statio,FL,33040 -Summerland Key,FL,33042 -Big Pine Key,FL,33043 -Marathon,FL,33050 -Opa Locka,FL,33054 -Carol City,FL,33055 -Carol City,FL,33056 -Pompano Beach,FL,33060 -Pompano Beach,FL,33062 -Margate,FL,33063 -Lighthouse Point,FL,33064 -Coral Springs,FL,33065 -Margate,FL,33066 -North Coral Spri,FL,33067 -Pompano Beach,FL,33068 -Pompano Beach,FL,33069 -Tavernier,FL,33070 -Pompano Beach,FL,33071 -Pompano Beach,FL,33073 -Pompano Beach,FL,33076 -Miami,FL,33122 -Miami,FL,33125 -Miami,FL,33126 -Miami,FL,33127 -Miami,FL,33128 -Miami,FL,33129 -Miami,FL,33130 -Miami,FL,33131 -Miami,FL,33132 -Coral Gables,FL,33133 -Coral Gables,FL,33134 -Miami,FL,33135 -Miami,FL,33136 -Miami,FL,33137 -Miami Shores,FL,33138 -Carl Fisher,FL,33139 -Miami,FL,33140 -North Bay Villag,FL,33141 -Miami,FL,33142 -South Miami,FL,33143 -Miami,FL,33144 -Coral Gables,FL,33145 -Coral Gables,FL,33146 -Miami,FL,33147 -Key Biscayne,FL,33149 -Miami,FL,33150 -Bal Harbour,FL,33154 -Miami,FL,33155 -Kendall,FL,33156 -Perrine,FL,33157 -Miami,FL,33158 -North Miami Beac,FL,33160 -North Miami,FL,33161 -North Miami Beac,FL,33162 -Olympia Heights,FL,33165 -Miami Springs,FL,33166 -Miami,FL,33167 -Miami,FL,33168 -Miami,FL,33169 -Quail Heights,FL,33170 -Miami,FL,33172 -Miami,FL,33173 -Miami,FL,33174 -Olympia Heights,FL,33175 -Miami,FL,33176 -Quail Heights,FL,33177 -Miami,FL,33178 -Miami,FL,33179 -Ojus,FL,33180 -North Miami Beac,FL,33181 -Miami,FL,33182 -Miami,FL,33183 -Miami,FL,33184 -Olympia Heights,FL,33185 -Miami,FL,33186 -Quail Heights,FL,33187 -Quail Heights,FL,33189 -Quail Heights,FL,33190 -Miami,FL,33193 -Miami,FL,33196 -Fort Lauderdale,FL,33301 -Oakland Park,FL,33304 -Oakland Park,FL,33305 -Oakland Park,FL,33306 -Oakland Park,FL,33308 -Fort Lauderdale,FL,33309 -Fort Lauderdale,FL,33311 -Fort Lauderdale,FL,33312 -City Of Sunrise,FL,33313 -Davie,FL,33314 -Fort Lauderdale,FL,33315 -Fort Lauderdale,FL,33316 -Plantation,FL,33317 -Tamarac,FL,33319 -Tamarac,FL,33321 -Sunrise,FL,33322 -Sunrise,FL,33323 -Plantation,FL,33324 -Davie,FL,33325 -Davie,FL,33326 -Fort Lauderdale,FL,33327 -Davie,FL,33328 -Davie,FL,33330 -Davie,FL,33331 -Davie,FL,33332 -Oakland Park,FL,33334 -Tamarac,FL,33351 -Fort Lauderdale,FL,33388 -West Palm Beach,FL,33401 -Lake Park,FL,33403 -Riviera Beach,FL,33404 -West Palm Beach,FL,33405 -Glen Ridge,FL,33406 -West Palm Beach,FL,33407 -North Palm Beach,FL,33408 -Haverhill,FL,33409 -Palm Beach Garde,FL,33410 -Royal Palm Beach,FL,33411 -West Palm Beach,FL,33412 -West Palm Beach,FL,33413 -West Palm Beach,FL,33414 -Haverhill,FL,33415 -Haverhill,FL,33417 -Palm Beach Garde,FL,33418 -Boynton Beach,FL,33426 -Boca Raton,FL,33428 -Belle Glade,FL,33430 -Boca Raton,FL,33431 -Boca Raton,FL,33432 -Boca Raton,FL,33433 -Boca Raton,FL,33434 -Briny Breezes,FL,33435 -Village Of Golf,FL,33436 -Boynton Beach,FL,33437 -Canal Point,FL,33438 -Clewiston,FL,33440 -Deerfield Beach,FL,33441 -Deerfield Beach,FL,33442 -Delray Beach,FL,33444 -Delray Beach,FL,33445 -Delray Beach,FL,33446 -Hobe Sound,FL,33455 -Jupiter,FL,33458 -Lake Worth,FL,33460 -Lake Worth,FL,33461 -Lantana,FL,33462 -Greenacres,FL,33463 -Lake Worth,FL,33467 -Tequesta,FL,33469 -Loxahatchee,FL,33470 -Moore Haven,FL,33471 -Pahokee,FL,33476 -Jupiter,FL,33477 -Jupiter,FL,33478 -Palm Beach,FL,33480 -Delray Beach,FL,33483 -Delray Beach,FL,33484 -Boca Raton,FL,33486 -Highland Beach,FL,33487 -South Bay,FL,33493 -Boca Raton,FL,33496 -Boca Raton,FL,33498 -Brandon,FL,33510 -Brandon,FL,33511 -Bushnell,FL,33513 -Center Hill,FL,33514 -Ridge Manor,FL,33525 -Dover,FL,33527 -Gibsonton,FL,33534 -Lake Panasoffkee,FL,33538 -Zephyrhills,FL,33540 -Zephyrhills,FL,33541 -Wesley Chapel,FL,33543 -Zephyrhills,FL,33544 -Lithia,FL,33547 -Lutz,FL,33549 -Odessa,FL,33556 -Plant City,FL,33565 -Plant City,FL,33566 -Plant City,FL,33567 -Riverview,FL,33569 -Ruskin,FL,33570 -Apollo Beach,FL,33572 -Sun City Center,FL,33573 -San Antonio,FL,33576 -Seffner,FL,33584 -Thonotosassa,FL,33592 -Valrico,FL,33594 -Ridge Manor Esta,FL,33597 -Wimauma,FL,33598 -Tampa,FL,33602 -Tampa,FL,33603 -Tampa,FL,33604 -Tampa,FL,33605 -Tampa,FL,33606 -Tampa,FL,33607 -Tampa,FL,33608 -Tampa,FL,33609 -Tampa,FL,33610 -Tampa,FL,33611 -Tampa,FL,33612 -Tampa,FL,33613 -Tampa,FL,33614 -Tampa,FL,33615 -Tampa,FL,33616 -Tampa,FL,33617 -Carrollwood,FL,33618 -Tampa,FL,33619 -Tampa,FL,33620 -Carrollwood,FL,33624 -Tampa,FL,33625 -Tampa,FL,33626 -Tampa,FL,33629 -Tampa,FL,33634 -Tampa,FL,33635 -Tampa,FL,33637 -Tampa,FL,33647 -Saint Petersburg,FL,33701 -Saint Petersburg,FL,33702 -Saint Petersburg,FL,33703 -Saint Petersburg,FL,33704 -Saint Petersburg,FL,33705 -Saint Petersburg,FL,33706 -Saint Petersburg,FL,33707 -Madeira Beach,FL,33708 -Kenneth City,FL,33709 -Saint Petersburg,FL,33710 -Saint Petersburg,FL,33711 -Saint Petersburg,FL,33712 -Saint Petersburg,FL,33713 -Saint Petersburg,FL,33714 -Tierra Verde,FL,33715 -Saint Petersburg,FL,33716 -Lakeland,FL,33801 -Lakeland,FL,33803 -Lakeland,FL,33805 -Lakeland,FL,33809 -Southside,FL,33811 -Southside,FL,33813 -Arcadia,FL,33821 -Auburndale,FL,33823 -Avon Park,FL,33825 -Babson Park,FL,33827 -Bartow,FL,33830 -Duette,FL,33834 -Davenport,FL,33837 -Dundee,FL,33838 -Eagle Lake,FL,33839 -Fort Meade,FL,33841 -Frostproof,FL,33843 -Grenelefe,FL,33844 -Kathleen,FL,33849 -Lake Alfred,FL,33850 -Lake Placid,FL,33852 -Lake Wales,FL,33853 -Lorida,FL,33857 -Mulberry,FL,33860 -Ona,FL,33865 -Polk City,FL,33868 -Sebring,FL,33870 -Sebring,FL,33872 -Wauchula,FL,33873 -Eloise,FL,33880 -Winter Haven,FL,33881 -Cypress Gardens,FL,33884 -Zolfo Springs,FL,33890 -Fort Myers,FL,33901 -Fort Myers,FL,33903 -Cape Coral Centr,FL,33904 -Tice,FL,33905 -Fort Myers,FL,33907 -Fort Myers,FL,33908 -Cape Coral Centr,FL,33909 -Fort Myers,FL,33912 -Fort Myers,FL,33913 -Cape Coral Centr,FL,33914 -Fort Myers,FL,33916 -Fort Myers,FL,33917 -College Parkway,FL,33919 -Alva,FL,33920 -Bokeelia,FL,33922 -Bonita Springs,FL,33923 -Captiva,FL,33924 -El Jobean,FL,33927 -Estero,FL,33928 -Fort Myers Beach,FL,33931 -Immokalee,FL,33934 -Labelle,FL,33935 -Lehigh Acres,FL,33936 -Marco Island,FL,33937 -Naples,FL,33940 -Naples,FL,33942 -Ochopee,FL,33943 -Placida,FL,33946 -Placida,FL,33947 -Port Charlotte,FL,33948 -Punta Gorda,FL,33950 -Port Charlotte,FL,33952 -Port Charlotte,FL,33953 -Port Charlotte,FL,33954 -Punta Gorda,FL,33955 -Saint James City,FL,33956 -Sanibel,FL,33957 -Venus,FL,33960 -Naples,FL,33961 -Naples,FL,33962 -Naples,FL,33963 -Naples,FL,33964 -Lehigh Acres,FL,33971 -Port Charlotte,FL,33980 -Port Charlotte,FL,33981 -Punta Gorda,FL,33982 -Punta Gorda,FL,33983 -Cape Coral Centr,FL,33990 -Cape Coral Centr,FL,33991 -Naples,FL,33999 -Braden River,FL,34202 -Braden River,FL,34203 -Westgate,FL,34205 -College Plaza,FL,34207 -Braden River,FL,34208 -Palma Sola,FL,34209 -Bradenton,FL,34210 -Cortez,FL,34215 -Bradenton Beach,FL,34217 -Parrish,FL,34219 -Palmetto,FL,34221 -Ellenton,FL,34222 -Englewood,FL,34223 -Grove City,FL,34224 -Whitney Beach,FL,34228 -Osprey,FL,34229 -South Trail,FL,34231 -Forest Lakes,FL,34232 -Sarasota,FL,34233 -Meadows Village,FL,34234 -Sarasota,FL,34235 -Sarasota,FL,34236 -Sarasota,FL,34237 -Sarasota Square,FL,34238 -Sarasota,FL,34239 -Sarasota,FL,34240 -Sarasota,FL,34241 -Crescent Beach,FL,34242 -Sarasota,FL,34243 -Myakka City,FL,34251 -Nokomis,FL,34275 -Venice,FL,34285 -North Port,FL,34287 -Mid Venice,FL,34292 -South Venice,FL,34293 -Brooksville,FL,34601 -Ridge Manor West,FL,34602 -Spring Hill,FL,34606 -Spring Hill,FL,34607 -Spring Hill,FL,34608 -Spring Hill,FL,34609 -Shady Hills,FL,34610 -Brooksville,FL,34613 -Brooksville,FL,34614 -Clearwater,FL,34615 -Clearwater,FL,34616 -Clearwater,FL,34619 -Clearwater,FL,34620 -Clearwater,FL,34621 -Airport,FL,34622 -Clearwater,FL,34623 -Clearwater,FL,34624 -Clearwater,FL,34625 -Clearwater,FL,34630 -Belleair Beach,FL,34635 -Land O Lakes,FL,34639 -Belleair Bluffs,FL,34640 -Largo,FL,34641 -Seminole,FL,34642 -Largo,FL,34643 -Largo,FL,34644 -Largo,FL,34646 -Largo,FL,34647 -Largo,FL,34648 -New Port Richey,FL,34652 -New Port Richey,FL,34653 -New Port Richey,FL,34654 -New Port Richey,FL,34655 -Pinellas Park,FL,34665 -Pinellas Park,FL,34666 -Hudson,FL,34667 -Port Richey,FL,34668 -Hudson,FL,34669 -Oldsmar,FL,34677 -Palm Harbor,FL,34683 -Lake Tarpon,FL,34684 -Palm Harbor,FL,34685 -Tarpon Springs,FL,34689 -Holiday,FL,34690 -Holiday,FL,34691 -Safety Harbor,FL,34695 -Dunedin,FL,34698 -Astatula,FL,34705 -Clermont,FL,34711 -Fruitland Park,FL,34731 -Groveland,FL,34736 -Howey In The Hil,FL,34737 -Kenansville,FL,34739 -Kissimmee,FL,34741 -Buena Ventura La,FL,34743 -Kissimmee,FL,34744 -Kissimmee,FL,34746 -Leesburg,FL,34748 -Montverde,FL,34756 -Kissimmee,FL,34758 -Poinciana,FL,34759 -Ocoee,FL,34761 -Okahumpka,FL,34762 -Saint Cloud,FL,34769 -Saint Cloud,FL,34771 -Saint Cloud,FL,34772 -Saint Cloud,FL,34773 -Wildwood,FL,34785 -Windermere,FL,34786 -Winter Garden,FL,34787 -Haines Creek,FL,34788 -Yalaha,FL,34797 -Fort Pierce,FL,34945 -Fort Pierce,FL,34946 -Fort Pierce,FL,34947 -Fort Pierce,FL,34949 -Fort Pierce,FL,34950 -Fort Pierce,FL,34951 -Port Saint Lucie,FL,34952 -Port Saint Lucie,FL,34953 -Indiantown,FL,34956 -Jensen Beach,FL,34957 -Basinger,FL,34972 -Okeechobee,FL,34974 -Fort Pierce,FL,34981 -Fort Pierce,FL,34982 -Port Saint Lucie,FL,34983 -Port Saint Lucie,FL,34984 -Port Saint Lucie,FL,34986 -Port Saint Lucie,FL,34987 -Port Saint Lucie,FL,34988 -Palm City,FL,34990 -Stuart,FL,34994 -Stuart,FL,34996 -Stuart,FL,34997 -Austell,GA,30001 -Avondale Estates,GA,30002 -Clarkston,GA,30021 -Conley,GA,30027 -Decatur,GA,30030 -Decatur,GA,30032 -Decatur,GA,30033 -Decatur,GA,30034 -Decatur,GA,30035 -Lithonia,GA,30038 -Ellenwood,GA,30049 -Forest Park,GA,30050 -Lithia Springs,GA,30057 -Centerville Gwin,GA,30058 -Mableton,GA,30059 -Marietta,GA,30060 -Marietta,GA,30062 -Marietta,GA,30064 -Marietta,GA,30066 -Marietta,GA,30067 -Marietta,GA,30068 -Norcross,GA,30071 -Powder Springs,GA,30073 -Roswell,GA,30075 -Roswell,GA,30076 -Scottdale,GA,30079 -Smyrna,GA,30080 -Smyrna,GA,30082 -Stone Mountain,GA,30083 -Tucker,GA,30084 -Stone Mountain,GA,30087 -Stone Mountain,GA,30088 -Norcross,GA,30092 -Norcross,GA,30093 -Acworth,GA,30101 -Adairsville,GA,30103 -Aragon,GA,30104 -Armuchee,GA,30105 -Ball Ground,GA,30107 -Bowdon,GA,30108 -Bremen,GA,30110 -Buchanan,GA,30113 -Canton,GA,30114 -Carrollton,GA,30117 -Cartersville,GA,30120 -Cave Spring,GA,30124 -Cedartown,GA,30125 -Cumming,GA,30130 -Dallas,GA,30132 -Douglasville,GA,30134 -Douglasville,GA,30135 -Duluth,GA,30136 -Emerson,GA,30137 -Fairmount,GA,30139 -Felton,GA,30140 -Hiram,GA,30141 -Jasper,GA,30143 -Kennesaw,GA,30144 -Kingston,GA,30145 -Lindale,GA,30147 -Marble Hill,GA,30148 -Rockmart,GA,30153 -Rome,GA,30161 -Rome,GA,30165 -Roopville,GA,30170 -Pine Log,GA,30171 -Silver Creek,GA,30173 -Suwanee,GA,30174 -Talking Rock,GA,30175 -Tallapoosa,GA,30176 -Tate,GA,30177 -Taylorsville,GA,30178 -Temple,GA,30179 -Villa Rica,GA,30180 -Waco,GA,30182 -Waleska,GA,30183 -White,GA,30184 -Whitesburg,GA,30185 -Winston,GA,30187 -Woodstock,GA,30188 -Alpharetta,GA,30201 -Alpharetta,GA,30202 -Auburn,GA,30203 -Barnesville,GA,30204 -Brooks,GA,30205 -Concord,GA,30206 -Conyers,GA,30207 -Conyers,GA,30208 -Starrsville,GA,30209 -Dacula,GA,30211 -Fairburn,GA,30213 -Woolsey,GA,30214 -Flovilla,GA,30216 -Glenn,GA,30217 -Alvaton,GA,30218 -Grantville,GA,30220 -Grayson,GA,30221 -Stovall,GA,30222 -Griffin,GA,30223 -Hampton,GA,30228 -Hogansville,GA,30230 -Jackson,GA,30233 -Jenkinsburg,GA,30234 -Jonesboro,GA,30236 -La Grange,GA,30240 -Lawrenceville,GA,30243 -Lawrenceville,GA,30244 -Lawrenceville,GA,30245 -Lilburn,GA,30247 -Locust Grove,GA,30248 -Loganville,GA,30249 -Luthersville,GA,30251 -Mc Donough,GA,30253 -Mansfield,GA,30255 -Meansville,GA,30256 -Milner,GA,30257 -Molena,GA,30258 -Moreland,GA,30259 -Morrow,GA,30260 -Newborn,GA,30262 -Raymond,GA,30263 -Newnan,GA,30265 -Oxford,GA,30267 -Palmetto,GA,30268 -Peachtree City,GA,30269 -Rex,GA,30273 -Riverdale,GA,30274 -Senoia,GA,30276 -Sharpsburg,GA,30277 -Snellville,GA,30278 -Social Circle,GA,30279 -Stockbridge,GA,30281 -The Rock,GA,30285 -Thomaston,GA,30286 -Tyrone,GA,30290 -Union City,GA,30291 -Williamson,GA,30292 -Woodbury,GA,30293 -Zebulon,GA,30295 -Riverdale,GA,30296 -Atlanta,GA,30303 -Atlanta,GA,30305 -Atlanta,GA,30306 -Atlanta,GA,30307 -Atlanta,GA,30308 -Atlanta,GA,30309 -Atlanta,GA,30310 -Atlanta,GA,30311 -Atlanta,GA,30312 -Atlanta,GA,30313 -Atlanta,GA,30314 -Atlanta,GA,30315 -Atlanta,GA,30316 -Atlanta,GA,30317 -Atlanta,GA,30318 -Atlanta,GA,30319 -Atlanta,GA,30324 -Atlanta,GA,30326 -Atlanta,GA,30327 -Sandy Springs,GA,30328 -Atlanta,GA,30329 -Atlanta,GA,30330 -Atlanta,GA,30331 -Atlanta,GA,30334 -Atlanta,GA,30336 -College Park,GA,30337 -Dunwoody,GA,30338 -Atlanta,GA,30339 -Doraville,GA,30340 -Chamblee,GA,30341 -Atlanta,GA,30342 -East Point,GA,30344 -Atlanta,GA,30345 -Atlanta,GA,30346 -Atlanta,GA,30349 -Atlanta,GA,30350 -Hapeville,GA,30354 -Atlanta,GA,30360 -Oak Park,GA,30401 -Ailey,GA,30410 -Alamo,GA,30411 -Bartow,GA,30413 -Brooklet,GA,30415 -Claxton,GA,30417 -Cobbtown,GA,30420 -Collins,GA,30421 -Garfield,GA,30425 -Girard,GA,30426 -Glennville,GA,30427 -Glenwood,GA,30428 -Louisville,GA,30434 -Lyons,GA,30436 -Manassas,GA,30438 -Metter,GA,30439 -Midville,GA,30441 -Millen,GA,30442 -Mount Vernon,GA,30445 -Newington,GA,30446 -Portal,GA,30450 -Register,GA,30452 -Reidsville,GA,30453 -Rockledge,GA,30454 -Rocky Ford,GA,30455 -Sardis,GA,30456 -Soperton,GA,30457 -Statesboro,GA,30458 -Hiltonia,GA,30467 -Tarrytown,GA,30470 -Twin City,GA,30471 -Uvalda,GA,30473 -Vidalia,GA,30474 -Wadley,GA,30477 -Gainesville,GA,30501 -Gainesville,GA,30504 -Gainesville,GA,30506 -Gainesville,GA,30507 -Alto,GA,30510 -Baldwin,GA,30511 -Blairsville,GA,30512 -Blue Ridge,GA,30513 -Bowersville,GA,30516 -Braselton,GA,30517 -Buford,GA,30518 -Canon,GA,30520 -Carnesville,GA,30521 -Cherrylog,GA,30522 -Clarkesville,GA,30523 -Clayton,GA,30525 -Clermont,GA,30527 -Cleveland,GA,30528 -Commerce,GA,30529 -Cornelia,GA,30531 -Dahlonega,GA,30533 -Juno,GA,30534 -Demorest,GA,30535 -Sky Valley,GA,30537 -Eastanollee,GA,30538 -East Ellijay,GA,30539 -Ellijay,GA,30540 -Epworth,GA,30541 -Flowery Branch,GA,30542 -Gillsville,GA,30543 -Helen,GA,30545 -Hiawassee,GA,30546 -Homer,GA,30547 -Hoschton,GA,30548 -Jefferson,GA,30549 -Lakemont,GA,30552 -Lavonia,GA,30553 -Lula,GA,30554 -Mc Caysville,GA,30555 -Martin,GA,30557 -Maysville,GA,30558 -Mineral Bluff,GA,30559 -Morganton,GA,30560 -Mount Airy,GA,30563 -Murrayville,GA,30564 -Nicholson,GA,30565 -Oakwood,GA,30566 -Pendergrass,GA,30567 -Rabun Gap,GA,30568 -Sautee Nacoochee,GA,30571 -Suches,GA,30572 -Talmo,GA,30575 -Tiger,GA,30576 -Toccoa,GA,30577 -Young Harris,GA,30582 -Athens,GA,30601 -Athens,GA,30605 -Athens,GA,30606 -Athens,GA,30607 -Arnoldsville,GA,30619 -Bethlehem,GA,30620 -Bishop,GA,30621 -Bogart,GA,30622 -Bowman,GA,30624 -Buckhead,GA,30625 -Carlton,GA,30627 -Colbert,GA,30628 -Comer,GA,30629 -Crawford,GA,30630 -Crawfordville,GA,30631 -Danielsville,GA,30633 -Dewy Rose,GA,30634 -Elberton,GA,30635 -Good Hope,GA,30641 -Greensboro,GA,30642 -Hartwell,GA,30643 -Hull,GA,30646 -Lexington,GA,30648 -Madison,GA,30650 -Monroe,GA,30655 -Philomath,GA,30660 -Royston,GA,30662 -Rutledge,GA,30663 -Statham,GA,30666 -Stephens,GA,30667 -Danburg,GA,30668 -Union Point,GA,30669 -Washington,GA,30673 -Watkinsville,GA,30677 -White Plains,GA,30678 -Winder,GA,30680 -Winterville,GA,30683 -Calhoun,GA,30701 -Chatsworth,GA,30705 -Chickamauga,GA,30707 -Cisco,GA,30708 -Cohutta,GA,30710 -Crandall,GA,30711 -Dalton,GA,30720 -Dalton,GA,30721 -Flintstone,GA,30725 -La Fayette,GA,30728 -Lyerly,GA,30730 -Cloudland,GA,30731 -Plainville,GA,30733 -Ranger,GA,30734 -Hill City,GA,30735 -Ringgold,GA,30736 -Rising Fawn,GA,30738 -Rock Spring,GA,30739 -Rocky Face,GA,30740 -Rossville,GA,30741 -Fort Oglethorpe,GA,30742 -Sugar Valley,GA,30746 -Summerville,GA,30747 -Lookout Mountain,GA,30750 -Trenton,GA,30752 -Trion,GA,30753 -Tunnel Hill,GA,30755 -Wildwood,GA,30757 -Appling,GA,30802 -Avera,GA,30803 -Blythe,GA,30805 -Dearing,GA,30808 -Evans,GA,30809 -Gibson,GA,30810 -Grovetown,GA,30813 -Harlem,GA,30814 -Hephzibah,GA,30815 -Keysville,GA,30816 -Lincolnton,GA,30817 -Matthews,GA,30818 -Mitchell,GA,30820 -Norwood,GA,30821 -Perkins,GA,30822 -Stapleton,GA,30823 -Thomson,GA,30824 -Warrenton,GA,30828 -Waynesboro,GA,30830 -Wrens,GA,30833 -Augusta,GA,30901 -Augusta,GA,30904 -Fort Gordon,GA,30905 -Peach Orchard,GA,30906 -Martinez,GA,30907 -Forest Hills,GA,30909 -Abbeville,GA,31001 -Adrian,GA,31002 -Allentown,GA,31003 -Bonaire,GA,31005 -Butler,GA,31006 -Byromville,GA,31007 -Powersville,GA,31008 -Cadwell,GA,31009 -Chauncey,GA,31011 -Chester,GA,31012 -Cochran,GA,31014 -Cordele,GA,31015 -Culloden,GA,31016 -Danville,GA,31017 -Davisboro,GA,31018 -Dexter,GA,31019 -Dry Branch,GA,31020 -East Dublin,GA,31021 -Dudley,GA,31022 -Eastman,GA,31023 -Eatonton,GA,31024 -Elko,GA,31025 -Centerville,GA,31028 -Forsyth,GA,31029 -Fort Valley,GA,31030 -Stevens Pottery,GA,31031 -Gray,GA,31032 -Haddock,GA,31033 -Harrison,GA,31035 -Hawkinsville,GA,31036 -Helena,GA,31037 -Round Oak,GA,31038 -Ideal,GA,31041 -Irwinton,GA,31042 -Jeffersonville,GA,31044 -Jewell,GA,31045 -Juliette,GA,31046 -Kathleen,GA,31047 -Kite,GA,31049 -Knoxville,GA,31050 -Lizella,GA,31052 -Mc Intyre,GA,31054 -Mc Rae,GA,31055 -Marshallville,GA,31057 -Mauk,GA,31058 -Milan,GA,31060 -Milledgeville,GA,31061 -Montezuma,GA,31063 -Monticello,GA,31064 -Montrose,GA,31065 -Musella,GA,31066 -Oglethorpe,GA,31068 -Perry,GA,31069 -Pinehurst,GA,31070 -Pineview,GA,31071 -Pitts,GA,31072 -Rentz,GA,31075 -Reynolds,GA,31076 -Rhine,GA,31077 -Roberta,GA,31078 -Rochelle,GA,31079 -Rupert,GA,31081 -Deepstep,GA,31082 -Shady Dale,GA,31085 -Devereux,GA,31087 -Warner Robins,GA,31088 -Tennille,GA,31089 -Toomsboro,GA,31090 -Unadilla,GA,31091 -Vienna,GA,31092 -Warner Robins,GA,31093 -Warthen,GA,31094 -Wrightsville,GA,31096 -Yatesville,GA,31097 -Robins A F B,GA,31098 -Huber,GA,31201 -Macon,GA,31204 -Wilson Airport,GA,31206 -Macon,GA,31210 -Macon,GA,31211 -Allenhurst,GA,31301 -Bloomingdale,GA,31302 -Clyo,GA,31303 -Crescent,GA,31304 -Darien,GA,31305 -Ellabell,GA,31308 -Fleming,GA,31309 -Guyton,GA,31312 -Hinesville,GA,31313 -Fort Stewart,GA,31314 -Ludowici,GA,31316 -Meridian,GA,31319 -Midway,GA,31320 -Pembroke,GA,31321 -Pooler,GA,31322 -Riceboro,GA,31323 -Richmond Hill,GA,31324 -Rincon,GA,31326 -Sapelo Island,GA,31327 -Tybee Island,GA,31328 -Stillwell,GA,31329 -Townsend,GA,31331 -Savannah,GA,31401 -State College,GA,31404 -Savannah,GA,31405 -Savannah,GA,31406 -Port Wentworth,GA,31407 -Garden City,GA,31408 -Savannah,GA,31409 -Savannah,GA,31410 -Savannah,GA,31411 -M M,GA,31419 -Okefenokee,GA,31501 -Alma,GA,31510 -Ambrose,GA,31512 -Baxley,GA,31513 -Blackshear,GA,31516 -Bristol,GA,31518 -Broxton,GA,31519 -Glynco,GA,31520 -Saint Simons Isl,GA,31522 -Brunswick,GA,31525 -Jekyll Island,GA,31527 -Denton,GA,31532 -Douglas,GA,31533 -Folkston,GA,31537 -Hazlehurst,GA,31539 -Hoboken,GA,31542 -Hortense,GA,31543 -Jacksonville,GA,31544 -Jesup,GA,31545 -Kingsland,GA,31548 -Lumber City,GA,31549 -Manor,GA,31550 -Mershon,GA,31551 -Millwood,GA,31552 -Nahunta,GA,31553 -Nicholls,GA,31554 -Odum,GA,31555 -Patterson,GA,31557 -Saint Marys,GA,31558 -Screven,GA,31560 -Surrency,GA,31563 -Waverly,GA,31565 -Waynesville,GA,31566 -West Green,GA,31567 -White Oak,GA,31568 -Woodbine,GA,31569 -Clyattville,GA,31601 -Bemiss,GA,31602 -Adel,GA,31620 -Alapaha,GA,31622 -Axson,GA,31624 -Barney,GA,31625 -Boston,GA,31626 -Dixie,GA,31629 -Du Pont,GA,31630 -Fargo,GA,31631 -Hahira,GA,31632 -Cogdell,GA,31634 -Lakeland,GA,31635 -Lake Park,GA,31636 -Lenox,GA,31637 -Morven,GA,31638 -Nashville,GA,31639 -Naylor,GA,31641 -Pearson,GA,31642 -Quitman,GA,31643 -Ray City,GA,31645 -Saint George,GA,31646 -Sparks,GA,31647 -Statenville,GA,31648 -Stockton,GA,31649 -Willacoochee,GA,31650 -Albany,GA,31701 -Marine Corps Log,GA,31704 -Bridgeboro,GA,31705 -Albany,GA,31707 -Georgia Southwes,GA,31709 -Andersonville,GA,31711 -Arabi,GA,31712 -Arlington,GA,31713 -Ashburn,GA,31714 -Attapulgus,GA,31715 -Baconton,GA,31716 -Bainbridge,GA,31717 -Blakely,GA,31723 -Bluffton,GA,31724 -Brinson,GA,31725 -Bronwood,GA,31726 -Cairo,GA,31728 -Calvary,GA,31729 -Camilla,GA,31730 -Chula,GA,31733 -Climax,GA,31734 -Cobb,GA,31735 -Coleman,GA,31736 -Colquitt,GA,31737 -Coolidge,GA,31738 -Cuthbert,GA,31740 -Damascus,GA,31741 -Graves,GA,31742 -De Soto,GA,31743 -Doerun,GA,31744 -Donalsonville,GA,31745 -Edison,GA,31746 -Enigma,GA,31749 -Fitzgerald,GA,31750 -Fort Gaines,GA,31751 -Georgetown,GA,31754 -Hartsfield,GA,31756 -Iron City,GA,31759 -Irwinville,GA,31760 -Jakin,GA,31761 -Leary,GA,31762 -Leesburg,GA,31763 -Leslie,GA,31764 -Meigs,GA,31765 -Morgan,GA,31766 -Springvale,GA,31767 -Moultrie,GA,31768 -Newton,GA,31770 -Norman Park,GA,31771 -Oakfield,GA,31772 -Ochlocknee,GA,31773 -Ocilla,GA,31774 -Omega,GA,31775 -Parrott,GA,31777 -Pavo,GA,31778 -Pelham,GA,31779 -Plains,GA,31780 -Poulan,GA,31781 -Rebecca,GA,31783 -Sale City,GA,31784 -Shellman,GA,31786 -Smithville,GA,31787 -Sumner,GA,31789 -Sycamore,GA,31790 -Sylvester,GA,31791 -Thomasville,GA,31792 -Abac,GA,31794 -Ty Ty,GA,31795 -Warwick,GA,31796 -Whigham,GA,31797 -Wray,GA,31798 -Juniper,GA,31801 -Tazewell,GA,31803 -Cataula,GA,31804 -Cusseta,GA,31805 -Ellaville,GA,31806 -Ellerslie,GA,31807 -Fortson,GA,31808 -Hamilton,GA,31811 -Junction City,GA,31812 -Lumpkin,GA,31815 -Manchester,GA,31816 -Midland,GA,31820 -Omaha,GA,31821 -Pine Mountain,GA,31822 -Pine Mountain Va,GA,31823 -Preston,GA,31824 -Richland,GA,31825 -Shiloh,GA,31826 -Talbotton,GA,31827 -Upatoi,GA,31829 -Warm Springs,GA,31830 -Waverly Hall,GA,31831 -Weston,GA,31832 -West Point,GA,31833 -Woodland,GA,31836 -Columbus,GA,31901 -Columbus,GA,31903 -Columbus,GA,31904 -Custer Terrace,GA,31905 -Columbus,GA,31906 -Columbus,GA,31907 -Columbus,GA,31909 -Pinetta,GA,32350 -Aiea,HI,96701 -Captain Cook,HI,96704 -Eleele,HI,96705 -Ewa Beach,HI,96706 -Kapolei,HI,96707 -Haiku,HI,96708 -Hakalau,HI,96710 -Haleiwa,HI,96712 -Hana,HI,96713 -Hanapepe,HI,96716 -Hauula,HI,96717 -Hawaii National,HI,96718 -Hawi,HI,96719 -Hilo,HI,96720 -Princeville,HI,96722 -Holualoa,HI,96725 -Honaunau,HI,96726 -Honokaa,HI,96727 -Honomu,HI,96728 -Hoolehua,HI,96729 -Kaaawa,HI,96730 -Kahului,HI,96732 -Kailua,HI,96734 -Kailua Kona,HI,96740 -Kalaupapa,HI,96742 -Kamuela,HI,96743 -Kaneohe,HI,96744 -Kapaa,HI,96746 -Kaumakani,HI,96747 -Kaunakakai,HI,96748 -Keaau,HI,96749 -Kealakekua,HI,96750 -Kekaha,HI,96752 -Kihei,HI,96753 -Kapaau,HI,96755 -Koloa,HI,96756 -Kualapuu,HI,96757 -Kurtistown,HI,96760 -Lahaina,HI,96761 -Laie,HI,96762 -Lanai City,HI,96763 -Laupahoehoe,HI,96764 -Lihue,HI,96766 -Makawao,HI,96768 -Makaweli,HI,96769 -Maunaloa,HI,96770 -Mountain View,HI,96771 -Naalehu,HI,96772 -Ninole,HI,96773 -Ookala,HI,96774 -Paauhau,HI,96775 -Paauilo,HI,96776 -Pahala,HI,96777 -Pahoa,HI,96778 -Paia,HI,96779 -Papaaloa,HI,96780 -Papaikou,HI,96781 -Pearl City,HI,96782 -Pepeekeo,HI,96783 -Volcano,HI,96785 -Wahiawa,HI,96786 -Mililani,HI,96789 -Kula,HI,96790 -Waialua,HI,96791 -Waianae,HI,96792 -Wailuku,HI,96793 -Waimanalo,HI,96795 -Waimea,HI,96796 -Waipahu,HI,96797 -Honolulu,HI,96813 -Honolulu,HI,96814 -Honolulu,HI,96815 -Honolulu,HI,96816 -Honolulu,HI,96817 -Honolulu,HI,96818 -Honolulu,HI,96819 -Honolulu,HI,96821 -Honolulu,HI,96822 -Honolulu,HI,96825 -Honolulu,HI,96826 -Pocatello,ID,83201 -Chubbuck,ID,83202 -Fort Hall,ID,83203 -Pocatello,ID,83204 -Sterling,ID,83210 -American Falls,ID,83211 -Arbon,ID,83212 -Arco,ID,83213 -Arimo,ID,83214 -Bancroft,ID,83217 -Bern,ID,83220 -Blackfoot,ID,83221 -Challis,ID,83226 -Clayton,ID,83227 -Clifton,ID,83228 -Conda,ID,83230 -Darlington,ID,83231 -Dayton,ID,83232 -Downey,ID,83234 -Ellis,ID,83235 -Firth,ID,83236 -Franklin,ID,83237 -Geneva,ID,83238 -Grace,ID,83241 -Holbrook,ID,83243 -Inkom,ID,83245 -Lava Hot Springs,ID,83246 -Mc Cammon,ID,83250 -Mackay,ID,83251 -Malad City,ID,83252 -Patterson,ID,83253 -Montpelier,ID,83254 -Moore,ID,83255 -Ovid,ID,83260 -Paris,ID,83261 -Pingree,ID,83262 -Preston,ID,83263 -Rockland,ID,83271 -Saint Charles,ID,83272 -Shelley,ID,83274 -Soda Springs,ID,83276 -Stanley,ID,83278 -Stone,ID,83280 -Thatcher,ID,83283 -Wayan,ID,83285 -Weston,ID,83286 -Fish Haven,ID,83287 -Twin Falls,ID,83301 -Rogerson,ID,83302 -Bellevue,ID,83313 -Bliss,ID,83314 -Buhl,ID,83316 -Burley,ID,83318 -Carey,ID,83320 -Castleford,ID,83321 -Corral,ID,83322 -Declo,ID,83323 -Dietrich,ID,83324 -Eden,ID,83325 -Elba,ID,83326 -Fairfield,ID,83327 -Filer,ID,83328 -Gooding,ID,83330 -Hagerman,ID,83332 -Hailey,ID,83333 -Hansen,ID,83334 -Hazelton,ID,83335 -Heyburn,ID,83336 -Jerome,ID,83338 -Obsidian,ID,83340 -Kimberly,ID,83341 -Naf,ID,83342 -Minidoka,ID,83343 -Murtaugh,ID,83344 -Oakley,ID,83346 -Paul,ID,83347 -Picabo,ID,83348 -Richfield,ID,83349 -Acequia,ID,83350 -Shoshone,ID,83352 -Wendell,ID,83355 -Ammon,ID,83401 -Idaho Falls,ID,83402 -Idaho Falls,ID,83404 -Idaho Falls,ID,83406 -Ashton,ID,83420 -Driggs,ID,83422 -Dubois,ID,83423 -Felt,ID,83424 -Hamer,ID,83425 -Iona,ID,83427 -Island Park,ID,83429 -Lewisville,ID,83431 -Menan,ID,83434 -Monteview,ID,83435 -Newdale,ID,83436 -Rexburg,ID,83440 -Rigby,ID,83442 -Ririe,ID,83443 -Roberts,ID,83444 -Saint Anthony,ID,83445 -Spencer,ID,83446 -Sugar City,ID,83448 -Swan Valley,ID,83449 -Terreton,ID,83450 -Teton,ID,83451 -Tetonia,ID,83452 -Victor,ID,83455 -Carmen,ID,83462 -Gibbonsville,ID,83463 -Leadore,ID,83464 -North Fork,ID,83466 -Salmon,ID,83467 -Shoup,ID,83469 -South Gate Plaza,ID,83501 -Ahsahka,ID,83520 -Cottonwood,ID,83522 -Craigmont,ID,83523 -Culdesac,ID,83524 -Dixie,ID,83525 -Ferdinand,ID,83526 -Grangeville,ID,83530 -Greencreek,ID,83533 -Juliaetta,ID,83535 -Kamiah,ID,83536 -Kendrick,ID,83537 -Keuterville,ID,83538 -Clearwater,ID,83539 -Lapwai,ID,83540 -Lenore,ID,83541 -Lucile,ID,83542 -Nezperce,ID,83543 -Orofino,ID,83544 -Peck,ID,83545 -Pierce,ID,83546 -Pollock,ID,83547 -Reubens,ID,83548 -Riggins,ID,83549 -Weippe,ID,83553 -White Bird,ID,83554 -Winchester,ID,83555 -Atlanta,ID,83601 -Banks,ID,83602 -Grasmere,ID,83604 -Caldwell,ID,83605 -Cambridge,ID,83610 -West Mountain,ID,83611 -Council,ID,83612 -Donnelly,ID,83615 -Eagle,ID,83616 -Montour,ID,83617 -Fruitland,ID,83619 -Garden Valley,ID,83622 -Glenns Ferry,ID,83623 -Grand View,ID,83624 -Hammett,ID,83627 -Homedale,ID,83628 -Horseshoe Bend,ID,83629 -Idaho City,ID,83631 -Indian Valley,ID,83632 -King Hill,ID,83633 -Kuna,ID,83634 -Letha,ID,83636 -Lowman,ID,83637 -Mc Call,ID,83638 -Marsing,ID,83639 -Melba,ID,83641 -Meridian,ID,83642 -Mesa,ID,83643 -Middleton,ID,83644 -Midvale,ID,83645 -Mountain Home,ID,83647 -Mountain Home A,ID,83648 -Oreana,ID,83650 -Nampa,ID,83651 -New Meadows,ID,83654 -New Plymouth,ID,83655 -Ola,ID,83657 -Parma,ID,83660 -Payette,ID,83661 -Star,ID,83669 -Sweet,ID,83670 -Weiser,ID,83672 -Wilder,ID,83676 -Yellow Pine,ID,83677 -Nampa,ID,83686 -Nampa,ID,83687 -Boise,ID,83702 -Boise,ID,83703 -Boise,ID,83704 -Boise,ID,83705 -Boise,ID,83706 -Boise,ID,83709 -Boise,ID,83712 -Garden City,ID,83714 -Athol,ID,83801 -Avery,ID,83802 -Bayview,ID,83803 -Blanchard,ID,83804 -Bonners Ferry,ID,83805 -Calder,ID,83808 -Careywood,ID,83809 -Cataldo,ID,83810 -Clark Fork,ID,83811 -Clarkia,ID,83812 -Cocolalla,ID,83813 -Coeur D Alene,ID,83814 -Coolin,ID,83821 -Old Town,ID,83822 -Deary,ID,83823 -Desmet,ID,83824 -Elk River,ID,83827 -Fernwood,ID,83830 -Genesee,ID,83832 -Harrison,ID,83833 -Harvard,ID,83834 -Hayden Lake,ID,83835 -Hope,ID,83836 -Kellogg,ID,83837 -Kingston,ID,83839 -Medimont,ID,83842 -Moscow,ID,83843 -Moyie Springs,ID,83845 -Mullan,ID,83846 -Naples,ID,83847 -Nordman,ID,83848 -Pinehurst,ID,83850 -Plummer,ID,83851 -Porthill,ID,83853 -Post Falls,ID,83854 -Potlatch,ID,83855 -Priest River,ID,83856 -Princeton,ID,83857 -Rathdrum,ID,83858 -Sagle,ID,83860 -Saint Maries,ID,83861 -Sandpoint,ID,83864 -Smelterville,ID,83868 -Spirit Lake,ID,83869 -Tensed,ID,83870 -Troy,ID,83871 -Viola,ID,83872 -Wallace,ID,83873 -Worley,ID,83876 -Antioch,IL,60002 -Arlington Height,IL,60004 -Arlington Height,IL,60005 -Elk Grove Villag,IL,60007 -Rolling Meadows,IL,60008 -Barrington,IL,60010 -Crystal Lake,IL,60012 -Cary,IL,60013 -Crystal Lake,IL,60014 -Deerfield,IL,60015 -Des Plaines,IL,60016 -Rosemont,IL,60018 -Fox Lake,IL,60020 -Fox River Grove,IL,60021 -Glencoe,IL,60022 -Glenview,IL,60025 -Glenview Nas,IL,60026 -Gages Lake,IL,60030 -Gurnee,IL,60031 -Harvard,IL,60033 -Hebron,IL,60034 -Highland Park,IL,60035 -Fort Sheridan,IL,60037 -Highwood,IL,60040 -Ingleside,IL,60041 -Island Lake,IL,60042 -Kenilworth,IL,60043 -Lake Bluff,IL,60044 -Lake Forest,IL,60045 -Lindenhurst,IL,60046 -Long Grove,IL,60047 -Libertyville,IL,60048 -Mc Henry,IL,60050 -Morton Grove,IL,60053 -Mount Prospect,IL,60056 -Mundelein,IL,60060 -Vernon Hills,IL,60061 -Northbrook,IL,60062 -Abbott Park,IL,60064 -Palatine,IL,60067 -Park Ridge,IL,60068 -Prairie View,IL,60069 -Prospect Heights,IL,60070 -Richmond,IL,60071 -Ringwood,IL,60072 -Round Lake,IL,60073 -Palatine,IL,60074 -Skokie,IL,60076 -Skokie,IL,60077 -Spring Grove,IL,60081 -Techny,IL,60082 -Wadsworth,IL,60083 -Wauconda,IL,60084 -Mc Gaw Park,IL,60085 -Waukegan,IL,60087 -Great Lakes,IL,60088 -Buffalo Grove,IL,60089 -Wheeling,IL,60090 -Wilmette,IL,60091 -Northfield,IL,60093 -Winthrop Harbor,IL,60096 -Wonder Lake,IL,60097 -Woodstock,IL,60098 -Zion,IL,60099 -Addison,IL,60101 -Lake In The Hill,IL,60102 -Hanover Park,IL,60103 -Bellwood,IL,60104 -Bensenville,IL,60106 -Streamwood,IL,60107 -Bloomingdale,IL,60108 -Carpentersville,IL,60110 -Clare,IL,60111 -De Kalb,IL,60115 -Dundee,IL,60118 -Elburn,IL,60119 -Elgin,IL,60120 -Elgin,IL,60123 -Elmhurst,IL,60126 -Esmond,IL,60129 -Forest Park,IL,60130 -Franklin Park,IL,60131 -Geneva,IL,60134 -Genoa,IL,60135 -Gilberts,IL,60136 -Glen Ellyn,IL,60137 -Glendale Heights,IL,60139 -Hampshire,IL,60140 -Hines,IL,60141 -Huntley,IL,60142 -Itasca,IL,60143 -Kingston,IL,60145 -Kirkland,IL,60146 -Lombard,IL,60148 -Malta,IL,60150 -Maple Park,IL,60151 -Marengo,IL,60152 -Broadview,IL,60153 -Westchester,IL,60154 -Medinah,IL,60157 -Melrose Park,IL,60160 -Hillside,IL,60162 -Hillside,IL,60163 -Northlake,IL,60164 -Stone Park,IL,60165 -River Grove,IL,60171 -Roselle,IL,60172 -Schaumburg,IL,60173 -Saint Charles,IL,60174 -Saint Charles,IL,60175 -Schiller Park,IL,60176 -South Elgin,IL,60177 -Sycamore,IL,60178 -Union,IL,60180 -Villa Park,IL,60181 -West Chicago,IL,60185 -Wheaton,IL,60187 -Carol Stream,IL,60188 -Winfield,IL,60190 -Wood Dale,IL,60191 -Schaumburg,IL,60193 -Hoffman Estates,IL,60194 -Hoffman Estates,IL,60195 -Evanston,IL,60201 -Evanston,IL,60202 -Evanston,IL,60203 -Oak Park,IL,60301 -Oak Park,IL,60302 -Oak Park,IL,60304 -River Forest,IL,60305 -Beecher,IL,60401 -Stickney,IL,60402 -Blue Island,IL,60406 -Braceville,IL,60407 -Braidwood,IL,60408 -Calumet City,IL,60409 -Channahon,IL,60410 -Sauk Village,IL,60411 -Chicago Ridge,IL,60415 -Coal City,IL,60416 -Crete,IL,60417 -Dolton,IL,60419 -Dwight,IL,60420 -Elwood,IL,60421 -Flossmoor,IL,60422 -Frankfort,IL,60423 -Gardner,IL,60424 -Glenwood,IL,60425 -Markham,IL,60426 -Hazel Crest,IL,60429 -Homewood,IL,60430 -Joliet,IL,60431 -Joliet,IL,60432 -Joliet,IL,60433 -Shorewood,IL,60435 -Rockdale,IL,60436 -Kinsman,IL,60437 -Lansing,IL,60438 -Argonne,IL,60439 -Bolingbrook,IL,60440 -Romeoville,IL,60441 -Manhattan,IL,60442 -Matteson,IL,60443 -Mazon,IL,60444 -Crestwood,IL,60445 -Minooka,IL,60447 -Mokena,IL,60448 -Monee,IL,60449 -Morris,IL,60450 -New Lenox,IL,60451 -Oak Forest,IL,60452 -Oak Lawn,IL,60453 -Bridgeview,IL,60455 -Hometown,IL,60456 -Hickory Hills,IL,60457 -Justice,IL,60458 -Burbank,IL,60459 -Odell,IL,60460 -Olympia Fields,IL,60461 -Orland Park,IL,60462 -Palos Heights,IL,60463 -Palos Park,IL,60464 -Palos Hills,IL,60465 -University Park,IL,60466 -Peotone,IL,60468 -Posen,IL,60469 -Ransom,IL,60470 -Richton Park,IL,60471 -Robbins,IL,60472 -South Holland,IL,60473 -Steger,IL,60475 -Thornton,IL,60476 -Tinley Park,IL,60477 -Country Club Hil,IL,60478 -Verona,IL,60479 -Willow Springs,IL,60480 -Custer Park,IL,60481 -Worth,IL,60482 -Argo,IL,60501 -Aurora,IL,60504 -Aurora,IL,60505 -Aurora,IL,60506 -Batavia,IL,60510 -Big Rock,IL,60511 -Bristol,IL,60512 -Brookfield,IL,60513 -Clarendon Hills,IL,60514 -Downers Grove,IL,60515 -Downers Grove,IL,60516 -Woodridge,IL,60517 -Earlville,IL,60518 -Hinckley,IL,60520 -Oak Brook,IL,60521 -Hodgkins,IL,60525 -Lee,IL,60530 -Leland,IL,60531 -Lisle,IL,60532 -Lyons,IL,60534 -Montgomery,IL,60538 -Mooseheart,IL,60539 -Naperville,IL,60540 -Newark,IL,60541 -North Aurora,IL,60542 -Oswego,IL,60543 -Plainfield,IL,60544 -Plano,IL,60545 -North Riverside,IL,60546 -Sandwich,IL,60548 -Serena,IL,60549 -Shabbona,IL,60550 -Sheridan,IL,60551 -Somonauk,IL,60552 -Steward,IL,60553 -Sugar Grove,IL,60554 -Warrenville,IL,60555 -Waterman,IL,60556 -Western Springs,IL,60558 -Westmont,IL,60559 -Yorkville,IL,60560 -Naperville,IL,60563 -Naperville,IL,60564 -Naperville,IL,60565 -Chicago,IL,60601 -Chicago,IL,60602 -Chicago,IL,60603 -Chicago,IL,60604 -Chicago,IL,60605 -Chicago,IL,60606 -Chicago,IL,60607 -Chicago,IL,60608 -Chicago,IL,60609 -Chicago,IL,60610 -Chicago,IL,60611 -Chicago,IL,60612 -Chicago,IL,60613 -Chicago,IL,60614 -Chicago,IL,60615 -Chicago,IL,60616 -Chicago,IL,60617 -Chicago,IL,60618 -Chicago,IL,60619 -Chicago,IL,60620 -Chicago,IL,60621 -Chicago,IL,60622 -Chicago,IL,60623 -Chicago,IL,60624 -Chicago,IL,60625 -Chicago,IL,60626 -Riverdale,IL,60627 -Chicago,IL,60628 -Chicago,IL,60629 -Chicago,IL,60630 -Chicago,IL,60631 -Chicago,IL,60632 -Burnham,IL,60633 -Norridge,IL,60634 -Elmwood Park,IL,60635 -Chicago,IL,60636 -Chicago,IL,60637 -Bedford Park,IL,60638 -Chicago,IL,60639 -Chicago,IL,60640 -Chicago,IL,60641 -Evergreen Park,IL,60642 -Calumet Park,IL,60643 -Chicago,IL,60644 -Lincolnwood,IL,60645 -Lincolnwood,IL,60646 -Chicago,IL,60647 -Chicago,IL,60648 -Chicago,IL,60649 -Cicero,IL,60650 -Chicago,IL,60651 -Chicago,IL,60652 -Chicago,IL,60653 -Chicago,IL,60654 -Merrionette Park,IL,60655 -Harwood Heights,IL,60656 -Chicago,IL,60657 -Alsip,IL,60658 -Lincolnwood,IL,60659 -Chicago,IL,60660 -Chicago,IL,60661 -Amf Ohare,IL,60666 -Kankakee,IL,60901 -Aroma Park,IL,60910 -Ashkum,IL,60911 -Beaverville,IL,60912 -Bonfield,IL,60913 -Bourbonnais,IL,60914 -Bradley,IL,60915 -Buckingham,IL,60917 -Buckley,IL,60918 -Cabery,IL,60919 -Chatsworth,IL,60921 -Chebanse,IL,60922 -Cissna Park,IL,60924 -Clifton,IL,60927 -Crescent City,IL,60928 -Cullom,IL,60929 -Danforth,IL,60930 -Donovan,IL,60931 -Emington,IL,60934 -Essex,IL,60935 -Gibson City,IL,60936 -Gilman,IL,60938 -Grant Park,IL,60940 -Herscher,IL,60941 -Hoopeston,IL,60942 -Kempton,IL,60946 -Loda,IL,60948 -Ludlow,IL,60949 -Manteno,IL,60950 -Martinton,IL,60951 -Melvin,IL,60952 -Milford,IL,60953 -Momence,IL,60954 -Onarga,IL,60955 -Paxton,IL,60957 -Piper City,IL,60959 -Rankin,IL,60960 -Reddick,IL,60961 -Roberts,IL,60962 -Rossville,IL,60963 -Saint Anne,IL,60964 -Sheldon,IL,60966 -Thawville,IL,60968 -Watseka,IL,60970 -Wellington,IL,60973 -Apple River,IL,61001 -Ashton,IL,61006 -Baileyville,IL,61007 -Belvidere,IL,61008 -Byron,IL,61010 -Caledonia,IL,61011 -Capron,IL,61012 -Chadwick,IL,61014 -Chana,IL,61015 -Cherry Valley,IL,61016 -Dakota,IL,61018 -Davis,IL,61019 -Davis Junction,IL,61020 -Dixon,IL,61021 -Durand,IL,61024 -East Dubuque,IL,61025 -Elizabeth,IL,61028 -Forreston,IL,61030 -Franklin Grove,IL,61031 -Freeport,IL,61032 -Galena,IL,61036 -Garden Prairie,IL,61038 -German Valley,IL,61039 -Hanover,IL,61041 -Harmon,IL,61042 -Kent,IL,61044 -Kings,IL,61045 -Lanark,IL,61046 -Egan,IL,61047 -Lena,IL,61048 -Lindenwood,IL,61049 -Mc Connell,IL,61050 -Milledgeville,IL,61051 -Monroe Center,IL,61052 -Mount Carroll,IL,61053 -Mount Morris,IL,61054 -Orangeville,IL,61060 -Oregon,IL,61061 -Pearl City,IL,61062 -Pecatonica,IL,61063 -Polo,IL,61064 -Poplar Grove,IL,61065 -Ridott,IL,61067 -Rochelle,IL,61068 -Rock City,IL,61070 -Rock Falls,IL,61071 -Rockton,IL,61072 -Roscoe,IL,61073 -Savanna,IL,61074 -Scales Mound,IL,61075 -Shannon,IL,61078 -South Beloit,IL,61080 -Sterling,IL,61081 -Stillman Valley,IL,61084 -Stockton,IL,61085 -Warren,IL,61087 -Winnebago,IL,61088 -Winslow,IL,61089 -Rockford,IL,61101 -Rockford,IL,61102 -Rockford,IL,61103 -Rockford,IL,61104 -Rockford,IL,61107 -Rockford,IL,61108 -Rockford,IL,61109 -Loves Park,IL,61111 -Rockford,IL,61112 -Rock Island,IL,61201 -Albany,IL,61230 -Aledo,IL,61231 -Andalusia,IL,61232 -Annawan,IL,61234 -Atkinson,IL,61235 -Cambridge,IL,61238 -Coal Valley,IL,61240 -Green Rock,IL,61241 -Cordova,IL,61242 -Deer Grove,IL,61243 -East Moline,IL,61244 -Erie,IL,61250 -Fenton,IL,61251 -Fulton,IL,61252 -Geneseo,IL,61254 -Hampton,IL,61256 -Hillsdale,IL,61257 -Illinois City,IL,61259 -Joy,IL,61260 -Lyndon,IL,61261 -Lynn Center,IL,61262 -Matherville,IL,61263 -Milan,IL,61264 -Moline,IL,61265 -Morrison,IL,61270 -New Boston,IL,61272 -Orion,IL,61273 -Osco,IL,61274 -Port Byron,IL,61275 -Prophetstown,IL,61277 -Reynolds,IL,61279 -Sherrard,IL,61281 -Silvis,IL,61282 -Tampico,IL,61283 -Taylor Ridge,IL,61284 -Thomson,IL,61285 -La Salle,IL,61301 -Amboy,IL,61310 -Ancona,IL,61311 -Arlington,IL,61312 -Blackstone,IL,61313 -Buda,IL,61314 -Compton,IL,61318 -Manville,IL,61319 -Dalzell,IL,61320 -Dana,IL,61321 -Grand Ridge,IL,61325 -Granville,IL,61326 -Hennepin,IL,61327 -La Moille,IL,61330 -Leonore,IL,61332 -Long Point,IL,61333 -Lostant,IL,61334 -Mc Nabb,IL,61335 -Magnolia,IL,61336 -Malden,IL,61337 -Marseilles,IL,61341 -Mendota,IL,61342 -Mineral,IL,61344 -Neponset,IL,61345 -New Bedford,IL,61346 -Oglesby,IL,61348 -Ohio,IL,61349 -Ottawa,IL,61350 -Paw Paw,IL,61353 -Peru,IL,61354 -Princeton,IL,61356 -Rutland,IL,61358 -Seneca,IL,61360 -Sheffield,IL,61361 -Spring Valley,IL,61362 -Streator,IL,61364 -Sublette,IL,61367 -Tiskilwa,IL,61368 -Toluca,IL,61369 -Tonica,IL,61370 -Utica,IL,61373 -Varna,IL,61375 -Normandy,IL,61376 -Wenona,IL,61377 -West Brooklyn,IL,61378 -Wyanet,IL,61379 -Galesburg,IL,61401 -Abingdon,IL,61410 -Adair,IL,61411 -Alexis,IL,61412 -Alpha,IL,61413 -Altona,IL,61414 -Avon,IL,61415 -Bardolph,IL,61416 -Berwick,IL,61417 -Biggsville,IL,61418 -Blandinsville,IL,61420 -Bradford,IL,61421 -Bushnell,IL,61422 -Cameron,IL,61423 -Carman,IL,61425 -Cuba,IL,61427 -Dahinda,IL,61428 -Ellisville,IL,61431 -Fairview,IL,61432 -Fiatt,IL,61433 -Galva,IL,61434 -Gerlaw,IL,61435 -Gilson,IL,61436 -Gladstone,IL,61437 -Good Hope,IL,61438 -Industry,IL,61440 -Ipava,IL,61441 -Keithsburg,IL,61442 -Kewanee,IL,61443 -Kirkwood,IL,61447 -Knoxville,IL,61448 -La Fayette,IL,61449 -La Harpe,IL,61450 -Laura,IL,61451 -Littleton,IL,61452 -Little York,IL,61453 -Lomax,IL,61454 -Macomb,IL,61455 -Maquon,IL,61458 -Marietta,IL,61459 -Media,IL,61460 -Monmouth,IL,61462 -New Windsor,IL,61465 -North Henderson,IL,61466 -Oneida,IL,61467 -Oquawka,IL,61469 -Prairie City,IL,61470 -Raritan,IL,61471 -Rio,IL,61472 -Roseville,IL,61473 -Saint Augustine,IL,61474 -Sciota,IL,61475 -Seaton,IL,61476 -Smithfield,IL,61477 -Smithshire,IL,61478 -Speer,IL,61479 -Stronghurst,IL,61480 -Table Grove,IL,61482 -Toulon,IL,61483 -Vermont,IL,61484 -Victoria,IL,61485 -Viola,IL,61486 -Wataga,IL,61488 -Williamsfield,IL,61489 -Woodhull,IL,61490 -Wyoming,IL,61491 -Astoria,IL,61501 -Benson,IL,61516 -Brimfield,IL,61517 -Oak Hill,IL,61518 -Bryant,IL,61519 -Canton,IL,61520 -Chillicothe,IL,61523 -Dunfermline,IL,61524 -Dunlap,IL,61525 -Edelstein,IL,61526 -Edwards,IL,61528 -Elmwood,IL,61529 -Eureka,IL,61530 -Middlegrove,IL,61531 -Forest City,IL,61532 -Glasford,IL,61533 -Green Valley,IL,61534 -Hanna City,IL,61536 -Henry,IL,61537 -Kingston Mines,IL,61539 -Lacon,IL,61540 -Lewistown,IL,61542 -Liverpool,IL,61543 -London Mills,IL,61544 -Cazenovia,IL,61545 -Manito,IL,61546 -Mapleton,IL,61547 -Metamora,IL,61548 -Morton,IL,61550 -Pekin,IL,61554 -Princeville,IL,61559 -Putnam,IL,61560 -Roanoke,IL,61561 -Saint David,IL,61563 -Sparland,IL,61565 -Topeka,IL,61567 -Tremont,IL,61568 -Trivoli,IL,61569 -Washburn,IL,61570 -Sunnyland,IL,61571 -Yates City,IL,61572 -Peoria,IL,61602 -Peoria Heights,IL,61603 -Peoria,IL,61604 -Peoria,IL,61605 -Peoria,IL,61606 -Bartonville,IL,61607 -East Peoria,IL,61611 -Peoria Heights,IL,61614 -Peoria,IL,61615 -Bloomington,IL,61701 -Bloomington,IL,61704 -Anchor,IL,61720 -Armington,IL,61721 -Arrowsmith,IL,61722 -Atlanta,IL,61723 -Bellflower,IL,61724 -Carlock,IL,61725 -Chenoa,IL,61726 -Clinton,IL,61727 -Colfax,IL,61728 -Congerville,IL,61729 -Cooksville,IL,61730 -Cropsey,IL,61731 -Danvers,IL,61732 -Deer Creek,IL,61733 -Delavan,IL,61734 -Dewitt,IL,61735 -Holder,IL,61736 -Ellsworth,IL,61737 -El Paso,IL,61738 -Fairbury,IL,61739 -Flanagan,IL,61740 -Forrest,IL,61741 -Graymont,IL,61743 -Gridley,IL,61744 -Heyworth,IL,61745 -Hopedale,IL,61747 -Hudson,IL,61748 -Kenney,IL,61749 -Le Roy,IL,61752 -Lexington,IL,61753 -Mc Lean,IL,61754 -Mackinaw,IL,61755 -Maroa,IL,61756 -Minier,IL,61759 -Minonk,IL,61760 -Normal,IL,61761 -Pontiac,IL,61764 -Saunemin,IL,61769 -Saybrook,IL,61770 -Secor,IL,61771 -Shirley,IL,61772 -Sibley,IL,61773 -Stanford,IL,61774 -Strawn,IL,61775 -Towanda,IL,61776 -Wapella,IL,61777 -Waynesville,IL,61778 -Urbana,IL,61801 -Allerton,IL,61810 -Alvin,IL,61811 -Armstrong,IL,61812 -Bement,IL,61813 -Bismarck,IL,61814 -Broadlands,IL,61816 -Catlin,IL,61817 -Cerro Gordo,IL,61818 -Champaign,IL,61820 -Champaign,IL,61821 -Cisco,IL,61830 -Collison,IL,61831 -Danville,IL,61832 -Tilton,IL,61833 -De Land,IL,61839 -Dewey,IL,61840 -Fairmount,IL,61841 -Farmer City,IL,61842 -Fisher,IL,61843 -Fithian,IL,61844 -Foosland,IL,61845 -Georgetown,IL,61846 -Gifford,IL,61847 -Homer,IL,61849 -Indianola,IL,61850 -Ivesdale,IL,61851 -Longview,IL,61852 -Mahomet,IL,61853 -Mansfield,IL,61854 -Milmine,IL,61855 -Monticello,IL,61856 -Oakwood,IL,61858 -Ogden,IL,61859 -Penfield,IL,61862 -Pesotum,IL,61863 -Philo,IL,61864 -Potomac,IL,61865 -Rantoul,IL,61866 -Rantoul,IL,61868 -Ridge Farm,IL,61870 -Sadorus,IL,61872 -Saint Joseph,IL,61873 -Savoy,IL,61874 -Seymour,IL,61875 -Sidell,IL,61876 -Sidney,IL,61877 -Thomasboro,IL,61878 -Tolono,IL,61880 -Weldon,IL,61882 -Westville,IL,61883 -White Heath,IL,61884 -Arcola,IL,61910 -Arthur,IL,61911 -Ashmore,IL,61912 -Atwood,IL,61913 -Bethany,IL,61914 -Brocton,IL,61917 -Camargo,IL,61919 -Charleston,IL,61920 -Chrisman,IL,61924 -Dalton City,IL,61925 -Gays,IL,61928 -Hammond,IL,61929 -Hindsboro,IL,61930 -Humboldt,IL,61931 -Hume,IL,61932 -Kansas,IL,61933 -Lovington,IL,61937 -Mattoon,IL,61938 -Metcalf,IL,61940 -Newman,IL,61942 -Oakland,IL,61943 -Paris,IL,61944 -Sullivan,IL,61951 -Tuscola,IL,61953 -Villa Grove,IL,61956 -Windsor,IL,61957 -Alhambra,IL,62001 -Alton,IL,62002 -Batchtown,IL,62006 -Benld,IL,62009 -Bethalto,IL,62010 -Bingham,IL,62011 -Brighton,IL,62012 -Meppen,IL,62013 -Bunker Hill,IL,62014 -Butler,IL,62015 -Carrollton,IL,62016 -Coffeen,IL,62017 -Cottage Hills,IL,62018 -Donnellson,IL,62019 -62020,IL,62020 -Dorsey,IL,62021 -Dow,IL,62022 -East Alton,IL,62024 -Edwardsville,IL,62025 -Eldred,IL,62027 -Elsah,IL,62028 -Fidelity,IL,62030 -Fieldon,IL,62031 -Fillmore,IL,62032 -Dorchester,IL,62033 -Glen Carbon,IL,62034 -Godfrey,IL,62035 -Golden Eagle,IL,62036 -Grafton,IL,62037 -Mitchell,IL,62040 -Greenfield,IL,62044 -Hamburg,IL,62045 -Hamel,IL,62046 -Hardin,IL,62047 -Hartford,IL,62048 -Hillsboro,IL,62049 -Hillview,IL,62050 -Irving,IL,62051 -Jerseyville,IL,62052 -Kampsville,IL,62053 -Kane,IL,62054 -Litchfield,IL,62056 -Madison,IL,62060 -Marine,IL,62061 -Medora,IL,62063 -62064,IL,62064 -Michael,IL,62065 -Moro,IL,62067 -Mount Olive,IL,62069 -Mozier,IL,62070 -New Douglas,IL,62074 -Nokomis,IL,62075 -Piasa,IL,62079 -Ramsey,IL,62080 -Rockbridge,IL,62081 -Roodhouse,IL,62082 -Rosamond,IL,62083 -Roxana,IL,62084 -Sorento,IL,62086 -Staunton,IL,62088 -Venice,IL,62090 -Walshville,IL,62091 -White Hall,IL,62092 -Witt,IL,62094 -Wood River,IL,62095 -Worden,IL,62097 -Sauget,IL,62201 -East Saint Louis,IL,62203 -Washington Park,IL,62204 -East Saint Louis,IL,62205 -Cahokia,IL,62206 -Alorton,IL,62207 -Fairview Heights,IL,62208 -Venedy,IL,62214 -Albers,IL,62215 -Baldwin,IL,62217 -Bartelso,IL,62218 -Belleville,IL,62220 -Belleville,IL,62221 -Belleville,IL,62223 -Scott A F B,IL,62225 -Breese,IL,62230 -Carlyle,IL,62231 -Caseyville,IL,62232 -Chester,IL,62233 -Collinsville,IL,62234 -Columbia,IL,62236 -Swanwick,IL,62237 -Cutler,IL,62238 -Dupo,IL,62239 -East Carondelet,IL,62240 -Ellis Grove,IL,62241 -Evansville,IL,62242 -Freeburg,IL,62243 -Fults,IL,62244 -Germantown,IL,62245 -Greenville,IL,62246 -Hecker,IL,62248 -Highland,IL,62249 -Keyesport,IL,62253 -Lebanon,IL,62254 -Lenzburg,IL,62255 -Maeystown,IL,62256 -Marissa,IL,62257 -Mascoutah,IL,62258 -Millstadt,IL,62260 -Modoc,IL,62261 -Mulberry Grove,IL,62262 -Nashville,IL,62263 -New Athens,IL,62264 -New Baden,IL,62265 -Oakdale,IL,62268 -Shiloh,IL,62269 -Okawville,IL,62271 -Percy,IL,62272 -Pinckneyville,IL,62274 -Pocahontas,IL,62275 -Prairie Du Roche,IL,62277 -Red Bud,IL,62278 -Renault,IL,62279 -Rockwood,IL,62280 -Saint Jacob,IL,62281 -Shattuc,IL,62283 -Smithboro,IL,62284 -Smithton,IL,62285 -Sparta,IL,62286 -Steeleville,IL,62288 -Trenton,IL,62293 -Troy,IL,62294 -Valmeyer,IL,62295 -62296,IL,62296 -Walsh,IL,62297 -Waterloo,IL,62298 -Quincy,IL,62301 -Augusta,IL,62311 -Barry,IL,62312 -Basco,IL,62313 -Baylis,IL,62314 -Bowen,IL,62316 -Burnside,IL,62318 -Camden,IL,62319 -Camp Point,IL,62320 -Carthage,IL,62321 -Chambersburg,IL,62323 -Clayton,IL,62324 -Coatsburg,IL,62325 -Colchester,IL,62326 -Pontoosuc,IL,62330 -Detroit,IL,62332 -Elvaston,IL,62334 -Fowler,IL,62338 -Golden,IL,62339 -Griggsville,IL,62340 -Hamilton,IL,62341 -Hull,IL,62343 -Huntsville,IL,62344 -Kinderhook,IL,62345 -La Prairie,IL,62346 -Liberty,IL,62347 -Lima,IL,62348 -Loraine,IL,62349 -Mendon,IL,62351 -Milton,IL,62352 -Mount Sterling,IL,62353 -Nebo,IL,62355 -New Canton,IL,62356 -New Salem,IL,62357 -Niota,IL,62358 -Paloma,IL,62359 -Payson,IL,62360 -Pearl,IL,62361 -Perry,IL,62362 -Pittsfield,IL,62363 -Plainville,IL,62365 -Pleasant Hill,IL,62366 -Colmar,IL,62367 -Rockport,IL,62370 -Sutter,IL,62373 -Tennessee,IL,62374 -Timewell,IL,62375 -Ursa,IL,62376 -Versailles,IL,62378 -Warsaw,IL,62379 -West Point,IL,62380 -Effingham,IL,62401 -Allendale,IL,62410 -Altamont,IL,62411 -Annapolis,IL,62413 -Beecher City,IL,62414 -Birds,IL,62415 -Bridgeport,IL,62417 -Brownstown,IL,62418 -Calhoun,IL,62419 -Casey,IL,62420 -Claremont,IL,62421 -Cowden,IL,62422 -Dennison,IL,62423 -Dieterich,IL,62424 -Dundas,IL,62425 -Laclede,IL,62426 -Flat Rock,IL,62427 -Hazel Dell,IL,62428 -Herrick,IL,62431 -Hidalgo,IL,62432 -Hutsonville,IL,62433 -Ingraham,IL,62434 -Jewett,IL,62436 -Lakewood,IL,62438 -Lawrenceville,IL,62439 -Lerna,IL,62440 -Marshall,IL,62441 -Martinsville,IL,62442 -Mason,IL,62443 -Montrose,IL,62445 -Mount Erie,IL,62446 -Neoga,IL,62447 -Newton,IL,62448 -Oblong,IL,62449 -Olney,IL,62450 -Palestine,IL,62451 -Parkersburg,IL,62452 -Robinson,IL,62454 -Saint Elmo,IL,62458 -Saint Francisvil,IL,62460 -Shumway,IL,62461 -Sigel,IL,62462 -Stewardson,IL,62463 -Strasburg,IL,62465 -Sumner,IL,62466 -Teutopolis,IL,62467 -Toledo,IL,62468 -Trilla,IL,62469 -Vandalia,IL,62471 -Watson,IL,62473 -Westfield,IL,62474 -West Liberty,IL,62475 -West Salem,IL,62476 -West Union,IL,62477 -West York,IL,62478 -Wheeler,IL,62479 -Willow Hill,IL,62480 -Yale,IL,62481 -Newburg,IL,62501 -Assumption,IL,62510 -Atwater,IL,62511 -Beason,IL,62512 -Blue Mound,IL,62513 -Boody,IL,62514 -Buffalo Hart,IL,62515 -Chestnut,IL,62518 -Dawson,IL,62520 -Decatur,IL,62521 -Decatur,IL,62522 -Decatur,IL,62523 -Bearsdale,IL,62526 -Cimic,IL,62530 -Edinburg,IL,62531 -Thomasville,IL,62533 -Brunswick,IL,62534 -Glenarm,IL,62536 -Harvel,IL,62538 -Illiopolis,IL,62539 -Latham,IL,62543 -Macon,IL,62544 -Bolivia,IL,62545 -Morrisonville,IL,62546 -Mount Auburn,IL,62547 -Mount Pulaski,IL,62548 -Hervey City,IL,62549 -Radford,IL,62550 -Niantic,IL,62551 -Casner,IL,62552 -Oconee,IL,62553 -Oreana,IL,62554 -Owaneco,IL,62555 -Clarksdale,IL,62556 -Dunkel,IL,62557 -Sicily,IL,62558 -Raymond,IL,62560 -Spaulding,IL,62561 -Berry,IL,62563 -Clarksburg,IL,62565 -Stonington,IL,62567 -Hewittsville,IL,62568 -Dollville,IL,62571 -Waggoner,IL,62572 -Heman,IL,62573 -Orleans,IL,62601 -Arenzville,IL,62611 -Newmansville,IL,62612 -Fancy Prairie,IL,62613 -Auburn,IL,62615 -Lynchburg,IL,62617 -Beardstown,IL,62618 -Exeter,IL,62621 -Bader,IL,62624 -Cantrall,IL,62625 -Comer,IL,62626 -Panther Creek,IL,62627 -Chapin,IL,62628 -Chatham,IL,62629 -Hagaman,IL,62630 -Concord,IL,62631 -Biggs,IL,62633 -Broadwell,IL,62634 -Emden,IL,62635 -Clements,IL,62638 -Frederick,IL,62639 -Mcvey,IL,62640 -Hubly,IL,62642 -Hartsburg,IL,62643 -Eckard,IL,62644 -Hettick,IL,62649 -Arcadia,IL,62650 -Kilbourne,IL,62655 -Lincoln,IL,62656 -Loami,IL,62661 -Luther,IL,62664 -Naples,IL,62665 -Middletown,IL,62666 -Modesto,IL,62667 -Nortonville,IL,62668 -Bates,IL,62670 -New Holland,IL,62671 -Nilwood,IL,62672 -Oakford,IL,62673 -Barr,IL,62674 -Atterbury,IL,62675 -Plainview,IL,62676 -Farmingdale,IL,62677 -Layton,IL,62681 -Allen,IL,62682 -Scottville,IL,62683 -Barclay,IL,62684 -Royal Lakes,IL,62685 -Tallula,IL,62688 -Virden,IL,62690 -Little Indian,IL,62691 -Waverly,IL,62692 -Williamsville,IL,62693 -Glasgow,IL,62694 -Springfield,IL,62701 -Grandview,IL,62702 -Southern View,IL,62703 -Jerome,IL,62704 -Andrew,IL,62707 -Centralia,IL,62801 -Hoyleton,IL,62803 -Albion,IL,62806 -Alma,IL,62807 -Ashley,IL,62808 -Barnhill,IL,62809 -Belle Rive,IL,62810 -Benton,IL,62812 -Bluford,IL,62814 -Bone Gap,IL,62815 -Bonnie,IL,62816 -Broughton,IL,62817 -Browns,IL,62818 -Buckner,IL,62819 -Burnt Prairie,IL,62820 -Carmi,IL,62821 -Christopher,IL,62822 -Cisne,IL,62823 -Clay City,IL,62824 -Crossville,IL,62827 -Dahlgren,IL,62828 -Dale,IL,62829 -Dix,IL,62830 -Du Bois,IL,62831 -Du Quoin,IL,62832 -Ellery,IL,62833 -Enfield,IL,62835 -Ewing,IL,62836 -Fairfield,IL,62837 -Farina,IL,62838 -Flora,IL,62839 -Frankfort Height,IL,62840 -Geff,IL,62842 -Golden Gate,IL,62843 -Grayville,IL,62844 -Herald,IL,62845 -Ina,IL,62846 -Iuka,IL,62849 -Johnsonville,IL,62850 -Keenes,IL,62851 -Kell,IL,62853 -Kinmundy,IL,62854 -Lancaster,IL,62855 -Bible Grove,IL,62858 -Mc Leansboro,IL,62859 -Macedonia,IL,62860 -Mill Shoals,IL,62862 -Mount Carmel,IL,62863 -Mount Vernon,IL,62864 -Mulkeytown,IL,62865 -Nason,IL,62866 -New Haven,IL,62867 -Noble,IL,62868 -Norris City,IL,62869 -Odin,IL,62870 -Omaha,IL,62871 -Opdyke,IL,62872 -Patoka,IL,62875 -Richview,IL,62877 -Rinard,IL,62878 -Saint Peter,IL,62880 -Salem,IL,62881 -Sandoval,IL,62882 -Scheller,IL,62883 -Sesser,IL,62884 -Shobonier,IL,62885 -Sims,IL,62886 -Springerton,IL,62887 -Tamaroa,IL,62888 -Texico,IL,62889 -Thompsonville,IL,62890 -Vernon,IL,62892 -Walnut Hill,IL,62893 -Waltonville,IL,62894 -Wayne City,IL,62895 -West Frankfort,IL,62896 -Whittington,IL,62897 -Woodlawn,IL,62898 -Xenia,IL,62899 -Carbondale,IL,62901 -Alto Pass,IL,62905 -Anna,IL,62906 -Ava,IL,62907 -Belknap,IL,62908 -New Liberty,IL,62910 -Buncombe,IL,62912 -Cache,IL,62913 -Cairo,IL,62914 -Campbell Hill,IL,62916 -Carrier Mills,IL,62917 -Carterville,IL,62918 -Cave In Rock,IL,62919 -Cobden,IL,62920 -Creal Springs,IL,62922 -Cypress,IL,62923 -De Soto,IL,62924 -Dongola,IL,62926 -Eddyville,IL,62928 -Eldorado,IL,62930 -Elizabethtown,IL,62931 -Elkville,IL,62932 -Equality,IL,62934 -Galatia,IL,62935 -Brownfield,IL,62938 -Goreville,IL,62939 -Gorham,IL,62940 -Grand Chain,IL,62941 -Grand Tower,IL,62942 -Grantsburg,IL,62943 -Harrisburg,IL,62946 -Herod,IL,62947 -Herrin,IL,62948 -Jacob,IL,62950 -Johnston City,IL,62951 -Jonesboro,IL,62952 -Joppa,IL,62953 -Junction,IL,62954 -Karbers Ridge,IL,62955 -Karnak,IL,62956 -Mc Clure,IL,62957 -Makanda,IL,62958 -Marion,IL,62959 -Metropolis,IL,62960 -Millcreek,IL,62961 -Miller City,IL,62962 -Mound City,IL,62963 -Mounds,IL,62964 -Murphysboro,IL,62966 -New Burnside,IL,62967 -Olmsted,IL,62970 -Ozark,IL,62972 -Pittsburg,IL,62974 -Pomona,IL,62975 -Pulaski,IL,62976 -Raleigh,IL,62977 -Ridgway,IL,62979 -Rosiclare,IL,62982 -Royalton,IL,62983 -Shawneetown,IL,62984 -Robbs,IL,62985 -Stonefort,IL,62987 -Tamms,IL,62988 -Gale,IL,62990 -Tunnel Hill,IL,62991 -Ullin,IL,62992 -Vergennes,IL,62994 -Vienna,IL,62995 -Villa Ridge,IL,62996 -Willisville,IL,62997 -Wolf Lake,IL,62998 -Zeigler,IL,62999 -Saint Mary,IL,63673 -Alexandria,IN,46001 -Anderson,IN,46011 -Anderson,IN,46012 -Anderson,IN,46013 -Anderson,IN,46016 -Chesterfield,IN,46017 -Arcadia,IN,46030 -Atlanta,IN,46031 -Carmel,IN,46032 -Cicero,IN,46034 -Colfax,IN,46035 -Elwood,IN,46036 -Fishers,IN,46038 -Forest,IN,46039 -Fortville,IN,46040 -Hillisburg,IN,46041 -Frankton,IN,46044 -Ingalls,IN,46048 -Kempton,IN,46049 -Kirklin,IN,46050 -Lapel,IN,46051 -Lebanon,IN,46052 -Mc Cordsville,IN,46055 -Markleville,IN,46056 -Michigantown,IN,46057 -Mulberry,IN,46058 -Noblesville,IN,46060 -Pendleton,IN,46064 -Rossville,IN,46065 -Sharpsville,IN,46068 -Sheridan,IN,46069 -Summitville,IN,46070 -Thorntown,IN,46071 -Tipton,IN,46072 -Westfield,IN,46074 -Whitestown,IN,46075 -Windfall,IN,46076 -Zionsville,IN,46077 -Arlington,IN,46104 -Bainbridge,IN,46105 -Bargersville,IN,46106 -Beech Grove,IN,46107 -Boggstown,IN,46110 -Brownsburg,IN,46112 -Camby,IN,46113 -Carthage,IN,46115 -Charlottesville,IN,46117 -Clayton,IN,46118 -Cloverdale,IN,46120 -Coatesville,IN,46121 -Danville,IN,46122 -Edinburgh,IN,46124 -Fairland,IN,46126 -Falmouth,IN,46127 -Fillmore,IN,46128 -Fountaintown,IN,46130 -Franklin,IN,46131 -Glenwood,IN,46133 -Greencastle,IN,46135 -Greenfield,IN,46140 -Greenwood,IN,46142 -Greenwood,IN,46143 -Jamestown,IN,46147 -Knightstown,IN,46148 -Lizton,IN,46149 -Manilla,IN,46150 -Centerton,IN,46151 -Milroy,IN,46156 -Monrovia,IN,46157 -Mooresville,IN,46158 -Morgantown,IN,46160 -Morristown,IN,46161 -Needham,IN,46162 -New Palestine,IN,46163 -Nineveh,IN,46164 -North Salem,IN,46165 -Paragon,IN,46166 -Pittsboro,IN,46167 -Avon,IN,46168 -Reelsville,IN,46171 -Roachdale,IN,46172 -Rushville,IN,46173 -Russellville,IN,46175 -Shelbyville,IN,46176 -Stilesville,IN,46180 -Trafalgar,IN,46181 -Waldron,IN,46182 -New Whiteland,IN,46184 -Wilkinson,IN,46186 -Indianapolis,IN,46201 -Indianapolis,IN,46202 -Indianapolis,IN,46203 -Indianapolis,IN,46204 -Indianapolis,IN,46205 -Indianapolis,IN,46208 -Eagle Creek,IN,46214 -Fort Benjamin Ha,IN,46216 -Southport,IN,46217 -Indianapolis,IN,46218 -Indianapolis,IN,46219 -Indianapolis,IN,46220 -Indianapolis,IN,46221 -Indianapolis,IN,46222 -Speedway,IN,46224 -Indianapolis,IN,46225 -Lawrence,IN,46226 -Southport,IN,46227 -Cumberland,IN,46229 -Bridgeport,IN,46231 -Clermont,IN,46234 -Oaklandon,IN,46236 -Southport,IN,46237 -Wanamaker,IN,46239 -Nora,IN,46240 -Park Fletcher,IN,46241 -Castleton,IN,46250 -Eagle Creek,IN,46254 -Castleton,IN,46256 -Acton,IN,46259 -Nora,IN,46260 -New Augusta,IN,46268 -New Augusta,IN,46278 -Nora,IN,46280 -Nora,IN,46290 -East Cedar Lake,IN,46303 -Porter,IN,46304 -Crown Point,IN,46307 -Demotte,IN,46310 -Dyer,IN,46311 -East Chicago,IN,46312 -Griffith,IN,46319 -Hammond,IN,46320 -Munster,IN,46321 -Highland,IN,46322 -Hammond,IN,46323 -Hammond,IN,46324 -Hammond,IN,46327 -Hanna,IN,46340 -Hebron,IN,46341 -Hobart,IN,46342 -Kouts,IN,46347 -La Crosse,IN,46348 -Lake Village,IN,46349 -La Porte,IN,46350 -Lowell,IN,46356 -Michigan City,IN,46360 -Mill Creek,IN,46365 -North Judson,IN,46366 -Portage,IN,46368 -Rolling Prairie,IN,46371 -Saint John,IN,46373 -San Pierre,IN,46374 -Schererville,IN,46375 -Union Mills,IN,46382 -Valparaiso,IN,46383 -Wanatah,IN,46390 -Westville,IN,46391 -Wheatfield,IN,46392 -Whiting,IN,46394 -Gary,IN,46402 -Gary,IN,46403 -Gary,IN,46404 -Lake Station,IN,46405 -Gary,IN,46406 -Gary,IN,46407 -Gary,IN,46408 -Gary,IN,46409 -Merrillville,IN,46410 -Argos,IN,46501 -Bourbon,IN,46504 -Bremen,IN,46506 -Bristol,IN,46507 -Claypool,IN,46510 -Culver Military,IN,46511 -Elkhart,IN,46514 -Elkhart,IN,46516 -Elkhart,IN,46517 -Etna Green,IN,46524 -Foraker,IN,46526 -Granger,IN,46530 -Grovertown,IN,46531 -Hamlet,IN,46532 -Ober,IN,46534 -Lakeville,IN,46536 -Leesburg,IN,46538 -Mentone,IN,46539 -Middlebury,IN,46540 -Milford,IN,46542 -Millersburg,IN,46543 -Mishawaka,IN,46544 -Mishawaka,IN,46545 -Nappanee,IN,46550 -New Carlisle,IN,46552 -New Paris,IN,46553 -North Liberty,IN,46554 -North Webster,IN,46555 -Saint Marys,IN,46556 -Osceola,IN,46561 -Pierceton,IN,46562 -Inwood,IN,46563 -Shipshewana,IN,46565 -Syracuse,IN,46567 -Tippecanoe,IN,46570 -Topeka,IN,46571 -Wakarusa,IN,46573 -Walkerton,IN,46574 -Warsaw,IN,46580 -Winona Lake,IN,46590 -South Bend,IN,46601 -South Bend,IN,46613 -South Bend,IN,46614 -South Bend,IN,46615 -South Bend,IN,46616 -South Bend,IN,46617 -South Bend,IN,46619 -South Bend,IN,46628 -South Bend,IN,46635 -South Bend,IN,46637 -Albion,IN,46701 -Andrews,IN,46702 -Angola,IN,46703 -Ashley,IN,46705 -Auburn,IN,46706 -Avilla,IN,46710 -Linn Grove,IN,46711 -Bluffton,IN,46714 -Butler,IN,46721 -Churubusco,IN,46723 -Columbia City,IN,46725 -Corunna,IN,46730 -Craigville,IN,46731 -Cromwell,IN,46732 -Decatur,IN,46733 -Fremont,IN,46737 -Garrett,IN,46738 -Geneva,IN,46740 -Grabill,IN,46741 -Hamilton,IN,46742 -Harlan,IN,46743 -Hoagland,IN,46745 -Howe,IN,46746 -Helmer,IN,46747 -Huntertown,IN,46748 -Huntington,IN,46750 -Kendallville,IN,46755 -Keystone,IN,46759 -Kimmell,IN,46760 -Lagrange,IN,46761 -Laotto,IN,46763 -Larwill,IN,46764 -Leo,IN,46765 -Liberty Center,IN,46766 -Ligonier,IN,46767 -Markle,IN,46770 -Monroe,IN,46772 -Monroeville,IN,46773 -New Haven,IN,46774 -Orland,IN,46776 -Ossian,IN,46777 -Pleasant Lake,IN,46779 -Poneto,IN,46781 -Roanoke,IN,46783 -Rome City,IN,46784 -Saint Joe,IN,46785 -South Whitley,IN,46787 -Spencerville,IN,46788 -Uniondale,IN,46791 -Warren,IN,46792 -Waterloo,IN,46793 -Wawaka,IN,46794 -Wolcottville,IN,46795 -Woodburn,IN,46797 -Yoder,IN,46798 -Fort Wayne,IN,46802 -Fort Wayne,IN,46803 -Fort Wayne,IN,46804 -Fort Wayne,IN,46805 -Fort Wayne,IN,46806 -Fort Wayne,IN,46807 -Fort Wayne,IN,46808 -Fort Wayne,IN,46809 -Fort Wayne,IN,46815 -Fort Wayne,IN,46816 -Fort Wayne,IN,46818 -Fort Wayne,IN,46819 -Fort Wayne,IN,46825 -Fort Wayne,IN,46835 -Fort Wayne,IN,46845 -Kokomo,IN,46901 -Kokomo,IN,46902 -Akron,IN,46910 -Amboy,IN,46911 -Bringhurst,IN,46913 -Bunker Hill,IN,46914 -Camden,IN,46917 -Converse,IN,46919 -Cutler,IN,46920 -Delphi,IN,46923 -Chili,IN,46926 -Fairmount,IN,46928 -Flora,IN,46929 -Galveston,IN,46932 -Gas City,IN,46933 -Greentown,IN,46936 -Jonesboro,IN,46938 -Kewanna,IN,46939 -La Fontaine,IN,46940 -Lagro,IN,46941 -Logansport,IN,46947 -Lucerne,IN,46950 -Macy,IN,46951 -Marion,IN,46952 -Marion,IN,46953 -Monterey,IN,46960 -North Manchester,IN,46962 -Peru,IN,46970 -Grissom Air Forc,IN,46971 -Roann,IN,46974 -Rochester,IN,46975 -Royal Center,IN,46978 -Russiaville,IN,46979 -Silver Lake,IN,46982 -Star City,IN,46985 -Swayzee,IN,46986 -Twelve Mile,IN,46988 -Upland,IN,46989 -Urbana,IN,46990 -Landess,IN,46991 -Wabash,IN,46992 -Walton,IN,46994 -Winamac,IN,46996 -Aurora,IN,47001 -Batesville,IN,47006 -Bath,IN,47010 -Bennington,IN,47011 -Brookville,IN,47012 -Cedar Grove,IN,47016 -Cross Plains,IN,47017 -Dillsboro,IN,47018 -Florence,IN,47020 -Friendship,IN,47021 -Guilford,IN,47022 -Holton,IN,47023 -Laurel,IN,47024 -Lawrenceburg,IN,47025 -Metamora,IN,47030 -Milan,IN,47031 -Moores Hill,IN,47032 -Oldenburg,IN,47036 -Osgood,IN,47037 -Patriot,IN,47038 -Rising Sun,IN,47040 -Sunman,IN,47041 -Versailles,IN,47042 -Vevay,IN,47043 -W Harrison,IN,47060 -Austin,IN,47102 -Borden,IN,47106 -Campbellsburg,IN,47108 -Central,IN,47110 -Charlestown,IN,47111 -Corydon,IN,47112 -Crandall,IN,47114 -Depauw,IN,47115 -Eckerty,IN,47116 -Elizabeth,IN,47117 -English,IN,47118 -Floyds Knobs,IN,47119 -Fredericksburg,IN,47120 -Georgetown,IN,47122 -Grantsburg,IN,47123 -Greenville,IN,47124 -Hardinsburg,IN,47125 -Henryville,IN,47126 -Clarksville,IN,47129 -Jeffersonville,IN,47130 -Laconia,IN,47135 -Lanesville,IN,47136 -Leavenworth,IN,47137 -Lexington,IN,47138 -Marengo,IN,47140 -Marysville,IN,47141 -Mauckport,IN,47142 -Memphis,IN,47143 -Milltown,IN,47145 -Nabb,IN,47147 -New Albany,IN,47150 -New Middletown,IN,47160 -New Salisbury,IN,47161 -New Washington,IN,47162 -Otisco,IN,47163 -Palmyra,IN,47164 -Pekin,IN,47165 -Ramsey,IN,47166 -Salem,IN,47167 -Scottsburg,IN,47170 -Speed,IN,47172 -Sulphur,IN,47174 -Taswell,IN,47175 -Underwood,IN,47177 -Columbus,IN,47201 -Columbus,IN,47203 -Brownstown,IN,47220 -Butlerville,IN,47223 -Canaan,IN,47224 -Commiskey,IN,47227 -Cortland,IN,47228 -Crothersville,IN,47229 -Deputy,IN,47230 -Dupont,IN,47231 -Elizabethtown,IN,47232 -Flat Rock,IN,47234 -Freetown,IN,47235 -Grammer,IN,47236 -Adams,IN,47240 -Hanover,IN,47243 -Hartsville,IN,47244 -Hope,IN,47246 -Madison,IN,47250 -Medora,IN,47260 -Norman,IN,47264 -North Vernon,IN,47265 -Paris Crossing,IN,47270 -Saint Paul,IN,47272 -Scipio,IN,47273 -Seymour,IN,47274 -Vallonia,IN,47281 -Vernon,IN,47282 -Westport,IN,47283 -Muncie,IN,47302 -Muncie,IN,47303 -Muncie,IN,47304 -Muncie,IN,47305 -Ball State Unive,IN,47306 -Albany,IN,47320 -Brownsville,IN,47325 -Bryant,IN,47326 -Cambridge City,IN,47327 -Centerville,IN,47330 -Connersville,IN,47331 -Daleville,IN,47334 -Dunkirk,IN,47336 -Eaton,IN,47338 -Economy,IN,47339 -Farmland,IN,47340 -Fountain City,IN,47341 -Gaston,IN,47342 -Greens Fork,IN,47345 -Hagerstown,IN,47346 -Hartford City,IN,47348 -Lewisville,IN,47352 -Liberty,IN,47353 -Losantville,IN,47354 -Lynn,IN,47355 -Middletown,IN,47356 -Milton,IN,47357 -Modoc,IN,47358 -Montpelier,IN,47359 -Mooreland,IN,47360 -New Castle,IN,47362 -Parker City,IN,47368 -Pennville,IN,47369 -Portland,IN,47371 -Redkey,IN,47373 -Richmond,IN,47374 -Ridgeville,IN,47380 -Salamonia,IN,47381 -Saratoga,IN,47382 -Selma,IN,47383 -Shirley,IN,47384 -Spiceland,IN,47385 -Springport,IN,47386 -Straughn,IN,47387 -Sulphur Springs,IN,47388 -Union City,IN,47390 -Webster,IN,47392 -Williamsburg,IN,47393 -Winchester,IN,47394 -Yorktown,IN,47396 -Bloomington,IN,47401 -Bloomington,IN,47403 -Bloomington,IN,47404 -Woodbridge,IN,47408 -Bedford,IN,47421 -Bloomfield,IN,47424 -Coal City,IN,47427 -Ellettsville,IN,47429 -Freedom,IN,47431 -French Lick,IN,47432 -Gosport,IN,47433 -Heltonville,IN,47436 -Jasonville,IN,47438 -Linton,IN,47441 -Lyons,IN,47443 -Mitchell,IN,47446 -Nashville,IN,47448 -Newberry,IN,47449 -Oolitic,IN,47451 -Orleans,IN,47452 -Owensburg,IN,47453 -Paoli,IN,47454 -Quincy,IN,47456 -Solsberry,IN,47459 -Spencer,IN,47460 -Springville,IN,47462 -Switz City,IN,47465 -Unionville,IN,47468 -West Baden Sprin,IN,47469 -Williams,IN,47470 -Worthington,IN,47471 -Washington,IN,47501 -Bicknell,IN,47512 -Birdseye,IN,47513 -Branchville,IN,47514 -Siberia,IN,47515 -Bruceville,IN,47516 -Cannelburg,IN,47519 -Mount Pleasant,IN,47520 -Celestine,IN,47521 -Crane Naval Depo,IN,47522 -Dale,IN,47523 -Decker,IN,47524 -Derby,IN,47525 -Dubois,IN,47527 -Edwardsport,IN,47528 -Elnora,IN,47529 -Evanston,IN,47531 -Ferdinand,IN,47532 -Gentryville,IN,47537 -Holland,IN,47541 -Huntingburg,IN,47542 -Haysville,IN,47546 -Buffaloville,IN,47550 -Leopold,IN,47551 -Lincoln City,IN,47552 -Loogootee,IN,47553 -Magnet,IN,47555 -Mariah Hill,IN,47556 -Monroe City,IN,47557 -Montgomery,IN,47558 -47559,IN,47559 -Oaktown,IN,47561 -Odon,IN,47562 -Otwell,IN,47564 -Petersburg,IN,47567 -Plainville,IN,47568 -Rome,IN,47574 -Kyana,IN,47575 -Saint Croix,IN,47576 -Saint Meinrad,IN,47577 -Sandborn,IN,47578 -Santa Claus,IN,47579 -Schnellville,IN,47580 -Shoals,IN,47581 -Stendal,IN,47585 -Tell City,IN,47586 -Tobinsport,IN,47587 -Troy,IN,47588 -Velpen,IN,47590 -Vincennes,IN,47591 -Wheatland,IN,47597 -Winslow,IN,47598 -Boonville,IN,47601 -Chandler,IN,47610 -Chrisney,IN,47611 -Cynthiana,IN,47612 -Elberfeld,IN,47613 -Grandview,IN,47615 -Griffin,IN,47616 -Lynnville,IN,47619 -Mount Vernon,IN,47620 -Newburgh,IN,47630 -New Harmony,IN,47631 -Poseyville,IN,47633 -Richland,IN,47634 -Rockport,IN,47635 -Tennyson,IN,47637 -Wadesville,IN,47638 -Haubstadt,IN,47639 -Hazleton,IN,47640 -Buckskin,IN,47647 -Fort Branch,IN,47648 -Francisco,IN,47649 -Oakland City,IN,47660 -Owensville,IN,47665 -Patoka,IN,47666 -Princeton,IN,47670 -Evansville,IN,47708 -Evansville,IN,47710 -Evansville,IN,47711 -Evansville,IN,47712 -Evansville,IN,47713 -Evansville,IN,47714 -Evansville,IN,47715 -Evansville,IN,47720 -Terre Haute,IN,47802 -Terre Haute,IN,47803 -Terre Haute,IN,47804 -North Terre Haut,IN,47805 -Terre Haute,IN,47807 -Bloomingdale,IN,47832 -Bowling Green,IN,47833 -Brazil,IN,47834 -Bridgeton,IN,47836 -Carbon,IN,47837 -Carlisle,IN,47838 -Centerpoint,IN,47840 -Clay City,IN,47841 -Clinton,IN,47842 -Cory,IN,47846 -Dana,IN,47847 -Dugger,IN,47848 -Fairbanks,IN,47849 -Farmersburg,IN,47850 -Hillsdale,IN,47854 -Lewis,IN,47858 -Marshall,IN,47859 -Merom,IN,47861 -Montezuma,IN,47862 -Pimento,IN,47866 -Poland,IN,47868 -Rockville,IN,47872 -Rosedale,IN,47874 -Shelburn,IN,47879 -Sullivan,IN,47882 -Sandford,IN,47885 -Lafayette,IN,47901 -Lafayette,IN,47904 -Lafayette,IN,47905 -West Lafayette,IN,47906 -Ambia,IN,47917 -Attica,IN,47918 -Battle Ground,IN,47920 -Boswell,IN,47921 -Brook,IN,47922 -Brookston,IN,47923 -Burnettsville,IN,47926 -Cayuga,IN,47928 -Chalmers,IN,47929 -Clarks Hill,IN,47930 -Covington,IN,47932 -Crawfordsville,IN,47933 -Darlington,IN,47940 -Earl Park,IN,47942 -Fair Oaks,IN,47943 -Fowler,IN,47944 -Francesville,IN,47946 -Goodland,IN,47948 -Hillsboro,IN,47949 -Idaville,IN,47950 -Kentland,IN,47951 -Cates,IN,47952 -Ladoga,IN,47954 -Linden,IN,47955 -Medaryville,IN,47957 -Monon,IN,47959 -Monticello,IN,47960 -Morocco,IN,47963 -New Richmond,IN,47967 -New Ross,IN,47968 -Otterbein,IN,47970 -Oxford,IN,47971 -Perrysville,IN,47974 -Pine Village,IN,47975 -Remington,IN,47977 -Collegeville,IN,47978 -Reynolds,IN,47980 -Romney,IN,47981 -Tangier,IN,47985 -Veedersburg,IN,47987 -Waveland,IN,47989 -Waynetown,IN,47990 -West Lebanon,IN,47991 -Westpoint,IN,47992 -Marshfield,IN,47993 -Wingate,IN,47994 -Wolcott,IN,47995 -Ackworth,IA,50001 -Adair,IA,50002 -Adel,IA,50003 -Albion,IA,50005 -Alden,IA,50006 -Alleman,IA,50007 -Allerton,IA,50008 -Altoona,IA,50009 -Ames,IA,50010 -Anita,IA,50020 -Ankeny,IA,50021 -Atlantic,IA,50022 -Audubon,IA,50025 -Bagley,IA,50026 -Barnes City,IA,50027 -Baxter,IA,50028 -Bayard,IA,50029 -Beaconsfield,IA,50030 -Beaver,IA,50031 -Bevington,IA,50033 -Blairsburg,IA,50034 -Bondurant,IA,50035 -Boone,IA,50036 -Booneville,IA,50038 -Bouton,IA,50039 -Boxholm,IA,50040 -Bradford,IA,50041 -Brayton,IA,50042 -Bussey,IA,50044 -Cambridge,IA,50046 -Carlisle,IA,50047 -Casey,IA,50048 -Chariton,IA,50049 -Churdan,IA,50050 -Clemons,IA,50051 -Clio,IA,50052 -Colfax,IA,50054 -Collins,IA,50055 -Colo,IA,50056 -Columbia,IA,50057 -Coon Rapids,IA,50058 -Cooper,IA,50059 -Sewal,IA,50060 -Cumming,IA,50061 -Dallas,IA,50062 -Dallas Center,IA,50063 -Dana,IA,50064 -Pleasanton,IA,50065 -Dawson,IA,50066 -Decatur,IA,50067 -Derby,IA,50068 -De Soto,IA,50069 -Dexter,IA,50070 -Dows,IA,50071 -Earlham,IA,50072 -Elkhart,IA,50073 -Ellston,IA,50074 -Ellsworth,IA,50075 -Exira,IA,50076 -Galt,IA,50101 -Garden City,IA,50102 -Garden Grove,IA,50103 -Gibson,IA,50104 -Gilman,IA,50106 -Grand Junction,IA,50107 -Grand River,IA,50108 -Granger,IA,50109 -Gray,IA,50110 -Grimes,IA,50111 -Grinnell,IA,50112 -Guthrie Center,IA,50115 -Hamilton,IA,50116 -Hamlin,IA,50117 -Hartford,IA,50118 -Harvey,IA,50119 -Haverhill,IA,50120 -Hubbard,IA,50122 -Humeston,IA,50123 -Huxley,IA,50124 -Spring Hill,IA,50125 -Iowa Falls,IA,50126 -Ira,IA,50127 -Jamaica,IA,50128 -Jefferson,IA,50129 -Jewell,IA,50130 -Johnston,IA,50131 -Kamrar,IA,50132 -Kellerton,IA,50133 -Kelley,IA,50134 -Kellogg,IA,50135 -Keswick,IA,50136 -Knoxville,IA,50138 -Lacona,IA,50139 -Lamoni,IA,50140 -Laurel,IA,50141 -Leighton,IA,50143 -Leon,IA,50144 -Liberty Center,IA,50145 -Linden,IA,50146 -Lineville,IA,50147 -Liscomb,IA,50148 -Lorimor,IA,50149 -Lovilia,IA,50150 -Lucas,IA,50151 -Luther,IA,50152 -Lynnville,IA,50153 -Mc Callsburg,IA,50154 -Macksburg,IA,50155 -Madrid,IA,50156 -Malcom,IA,50157 -Marshalltown,IA,50158 -Maxwell,IA,50161 -Melbourne,IA,50162 -Melcher-Dallas,IA,50163 -Menlo,IA,50164 -Millerton,IA,50165 -Milo,IA,50166 -Minburn,IA,50167 -Mingo,IA,50168 -Mitchellville,IA,50169 -Monroe,IA,50170 -Montezuma,IA,50171 -Guernsey,IA,50172 -Montour,IA,50173 -Murray,IA,50174 -Nevada,IA,50201 -New Providence,IA,50206 -New Sharon,IA,50207 -Newton,IA,50208 -New Virginia,IA,50210 -Norwalk,IA,50211 -Ogden,IA,50212 -Osceola,IA,50213 -Otley,IA,50214 -Panora,IA,50216 -Paton,IA,50217 -Patterson,IA,50218 -Pella,IA,50219 -Perry,IA,50220 -Peru,IA,50222 -Pilot Mound,IA,50223 -Pleasantville,IA,50225 -Polk City,IA,50226 -Popejoy,IA,50227 -Prairie City,IA,50228 -Prole,IA,50229 -Radcliffe,IA,50230 -Randall,IA,50231 -Reasnor,IA,50232 -Redfield,IA,50233 -Rhodes,IA,50234 -Rippey,IA,50235 -Roland,IA,50236 -Runnells,IA,50237 -Russell,IA,50238 -Saint Anthony,IA,50239 -Saint Charles,IA,50240 -Saint Marys,IA,50241 -Searsboro,IA,50242 -Slater,IA,50244 -Stanhope,IA,50246 -State Center,IA,50247 -Story City,IA,50248 -Stratford,IA,50249 -Stuart,IA,50250 -Sully,IA,50251 -Swan,IA,50252 -Thayer,IA,50254 -Tracy,IA,50256 -Truro,IA,50257 -Union,IA,50258 -Van Meter,IA,50261 -Van Wert,IA,50262 -Waukee,IA,50263 -Weldon,IA,50264 -West Des Moines,IA,50265 -What Cheer,IA,50268 -Williams,IA,50271 -Williamson,IA,50272 -Winterset,IA,50273 -Wiota,IA,50274 -Woodburn,IA,50275 -Woodward,IA,50276 -Yale,IA,50277 -Zearing,IA,50278 -Des Moines,IA,50309 -Des Moines,IA,50310 -Windsor Heights,IA,50311 -Des Moines,IA,50312 -Des Moines,IA,50313 -Des Moines,IA,50314 -Des Moines,IA,50315 -Des Moines,IA,50316 -Pleasant Hill,IA,50317 -Des Moines,IA,50320 -Des Moines,IA,50321 -Urbandale,IA,50322 -Clive,IA,50325 -Mason City,IA,50401 -Alexander,IA,50420 -Belmond,IA,50421 -Britt,IA,50423 -Buffalo Center,IA,50424 -Clear Lake,IA,50428 -Corwith,IA,50430 -Crystal Lake,IA,50432 -Dougherty,IA,50433 -Fertile,IA,50434 -Floyd,IA,50435 -Forest City,IA,50436 -Garner,IA,50438 -Goodell,IA,50439 -Grafton,IA,50440 -Hampton,IA,50441 -Hanlontown,IA,50444 -Joice,IA,50446 -Kanawha,IA,50447 -Kensett,IA,50448 -Klemme,IA,50449 -Lake Mills,IA,50450 -Lakota,IA,50451 -Latimer,IA,50452 -Leland,IA,50453 -Little Cedar,IA,50454 -Mc Intire,IA,50455 -Manly,IA,50456 -Meservey,IA,50457 -Nora Springs,IA,50458 -Northwood,IA,50459 -Orchard,IA,50460 -Osage,IA,50461 -Plymouth,IA,50464 -Rake,IA,50465 -Riceville,IA,50466 -Rock Falls,IA,50467 -Rockford,IA,50468 -Rockwell,IA,50469 -Rowan,IA,50470 -Rudd,IA,50471 -Saint Ansgar,IA,50472 -Scarville,IA,50473 -Sheffield,IA,50475 -Stacyville,IA,50476 -Swaledale,IA,50477 -Thompson,IA,50478 -Thornton,IA,50479 -Titonka,IA,50480 -Ventura,IA,50482 -Wesley,IA,50483 -Woden,IA,50484 -Fort Dodge,IA,50501 -Albert City,IA,50510 -Algona,IA,50511 -Armstrong,IA,50514 -Ayrshire,IA,50515 -Badger,IA,50516 -Bancroft,IA,50517 -Barnum,IA,50518 -Bode,IA,50519 -Bradgate,IA,50520 -Burnside,IA,50521 -Burt,IA,50522 -Callender,IA,50523 -Clare,IA,50524 -Clarion,IA,50525 -Curlew,IA,50527 -Cylinder,IA,50528 -Dayton,IA,50530 -Dolliver,IA,50531 -Duncombe,IA,50532 -Eagle Grove,IA,50533 -Early,IA,50535 -Emmetsburg,IA,50536 -Farnhamville,IA,50538 -Fenton,IA,50539 -Fonda,IA,50540 -Gilmore City,IA,50541 -Goldfield,IA,50542 -Gowrie,IA,50543 -Harcourt,IA,50544 -Hardy,IA,50545 -Havelock,IA,50546 -Humboldt,IA,50548 -Jolley,IA,50551 -Knierim,IA,50552 -Knoke,IA,50553 -Laurens,IA,50554 -Ledyard,IA,50556 -Lehigh,IA,50557 -Livermore,IA,50558 -Lone Rock,IA,50559 -Lu Verne,IA,50560 -Lytton,IA,50561 -Mallard,IA,50562 -Manson,IA,50563 -Marathon,IA,50565 -Moorland,IA,50566 -Nemaha,IA,50567 -Newell,IA,50568 -Otho,IA,50569 -Ottosen,IA,50570 -Palmer,IA,50571 -Plover,IA,50573 -Pocahontas,IA,50574 -Pomeroy,IA,50575 -Rembrandt,IA,50576 -Renwick,IA,50577 -Ringsted,IA,50578 -Rockwell City,IA,50579 -Rodman,IA,50580 -Rolfe,IA,50581 -Rutland,IA,50582 -Sac City,IA,50583 -Sioux Rapids,IA,50585 -Somers,IA,50586 -Storm Lake,IA,50588 -Swea City,IA,50590 -Thor,IA,50591 -Vincent,IA,50594 -Webster City,IA,50595 -West Bend,IA,50597 -Whittemore,IA,50598 -Woolstock,IA,50599 -Ackley,IA,50601 -Allison,IA,50602 -Alta Vista,IA,50603 -Aplington,IA,50604 -Aredale,IA,50605 -Arlington,IA,50606 -Aurora,IA,50607 -Austinville,IA,50608 -Beaman,IA,50609 -Bristow,IA,50611 -Buckingham,IA,50612 -Cedar Falls,IA,50613 -Charles City,IA,50616 -Clarksville,IA,50619 -Conrad,IA,50621 -Denver,IA,50622 -Dike,IA,50624 -Dumont,IA,50625 -Dunkerton,IA,50626 -Eldora,IA,50627 -Elma,IA,50628 -Fairbank,IA,50629 -Fredericksburg,IA,50630 -Garwin,IA,50632 -Geneva,IA,50633 -Gladbrook,IA,50635 -Greene,IA,50636 -Grundy Center,IA,50638 -Hansell,IA,50640 -Hazleton,IA,50641 -Holland,IA,50642 -Hudson,IA,50643 -Independence,IA,50644 -Ionia,IA,50645 -Janesville,IA,50647 -Jesup,IA,50648 -Kesley,IA,50649 -Lamont,IA,50650 -La Porte City,IA,50651 -Lincoln,IA,50652 -Marble Rock,IA,50653 -Masonville,IA,50654 -Maynard,IA,50655 -Nashua,IA,50658 -New Hampton,IA,50659 -New Hartford,IA,50660 -Oelwein,IA,50662 -Parkersburg,IA,50665 -Plainfield,IA,50666 -Raymond,IA,50667 -Readlyn,IA,50668 -Reinbeck,IA,50669 -Shell Rock,IA,50670 -Stanley,IA,50671 -Steamboat Rock,IA,50672 -Sumner,IA,50674 -Traer,IA,50675 -Tripoli,IA,50676 -Bremer,IA,50677 -Wellsburg,IA,50680 -Westgate,IA,50681 -Winthrop,IA,50682 -Waterloo,IA,50701 -Waterloo,IA,50702 -Waterloo,IA,50703 -Washburn,IA,50706 -Evansdale,IA,50707 -Nevinville,IA,50801 -Afton,IA,50830 -Bedford,IA,50833 -Benton,IA,50835 -Blockton,IA,50836 -Bridgewater,IA,50837 -Clearfield,IA,50840 -Corning,IA,50841 -Cumberland,IA,50843 -Delphos,IA,50844 -Diagonal,IA,50845 -Fontanelle,IA,50846 -Grant,IA,50847 -Gravity,IA,50848 -Greenfield,IA,50849 -Kent,IA,50850 -Lenox,IA,50851 -Maloy,IA,50852 -Massena,IA,50853 -Mount Ayr,IA,50854 -50855,IA,50855 -Nodaway,IA,50857 -Orient,IA,50858 -Prescott,IA,50859 -Redding,IA,50860 -Shannon City,IA,50861 -Sharpsburg,IA,50862 -Tingley,IA,50863 -Villisca,IA,50864 -Akron,IA,51001 -Alta,IA,51002 -Alton,IA,51003 -Anthon,IA,51004 -Aurelia,IA,51005 -Battle Creek,IA,51006 -Bronson,IA,51007 -Calumet,IA,51009 -Castana,IA,51010 -Cherokee,IA,51012 -Cleghorn,IA,51014 -Correctionville,IA,51016 -Cushing,IA,51018 -Danbury,IA,51019 -Galva,IA,51020 -Granville,IA,51022 -Hawarden,IA,51023 -Hinton,IA,51024 -Holstein,IA,51025 -Hornick,IA,51026 -Ireton,IA,51027 -Kingsley,IA,51028 -Larrabee,IA,51029 -Lawton,IA,51030 -Le Mars,IA,51031 -Linn Grove,IA,51033 -Mapleton,IA,51034 -Marcus,IA,51035 -Maurice,IA,51036 -Meriden,IA,51037 -Merrill,IA,51038 -Moville,IA,51039 -Onawa,IA,51040 -Orange City,IA,51041 -Oto,IA,51044 -Paullina,IA,51046 -Peterson,IA,51047 -Pierson,IA,51048 -Quimby,IA,51049 -Remsen,IA,51050 -Rodney,IA,51051 -Salix,IA,51052 -Schaller,IA,51053 -Sergeant Bluff,IA,51054 -Sloan,IA,51055 -Smithland,IA,51056 -Sutherland,IA,51058 -Turin,IA,51059 -Ute,IA,51060 -Washta,IA,51061 -Westfield,IA,51062 -Whiting,IA,51063 -Sioux City,IA,51101 -Sioux City,IA,51103 -Sioux City,IA,51104 -Sioux City,IA,51105 -Sioux City,IA,51106 -Sioux City,IA,51107 -Sioux City,IA,51108 -Sioux City,IA,51109 -Sioux City,IA,51110 -Sioux City,IA,51111 -Sheldon,IA,51201 -Alvord,IA,51230 -Archer,IA,51231 -Ashton,IA,51232 -Boyden,IA,51234 -Doon,IA,51235 -George,IA,51237 -Hospers,IA,51238 -Hull,IA,51239 -Inwood,IA,51240 -Larchwood,IA,51241 -Little Rock,IA,51243 -Primghar,IA,51245 -Rock Rapids,IA,51246 -Rock Valley,IA,51247 -Sanborn,IA,51248 -Sibley,IA,51249 -Sioux Center,IA,51250 -Spencer,IA,51301 -Arnolds Park,IA,51331 -Dickens,IA,51333 -Estherville,IA,51334 -Everly,IA,51338 -Fostoria,IA,51340 -Graettinger,IA,51342 -Greenville,IA,51343 -Harris,IA,51345 -Hartley,IA,51346 -Lake Park,IA,51347 -Melvin,IA,51350 -Milford,IA,51351 -Ocheyedan,IA,51354 -Okoboji,IA,51355 -Royal,IA,51357 -Ruthven,IA,51358 -Spirit Lake,IA,51360 -Superior,IA,51363 -Terril,IA,51364 -Wallingford,IA,51365 -Webb,IA,51366 -Carroll,IA,51401 -Arcadia,IA,51430 -Arthur,IA,51431 -Aspinwall,IA,51432 -Yetter,IA,51433 -Breda,IA,51436 -Charter Oak,IA,51439 -Dedham,IA,51440 -Deloit,IA,51441 -Denison,IA,51442 -Glidden,IA,51443 -Halbur,IA,51444 -Ida Grove,IA,51445 -Irwin,IA,51446 -Kirkman,IA,51447 -Kiron,IA,51448 -Lake City,IA,51449 -Lake View,IA,51450 -Lanesboro,IA,51451 -Lidderdale,IA,51452 -Lohrville,IA,51453 -Manilla,IA,51454 -Manning,IA,51455 -Odebolt,IA,51458 -Ralston,IA,51459 -Ricketts,IA,51460 -Schleswig,IA,51461 -Scranton,IA,51462 -Templeton,IA,51463 -Vail,IA,51465 -Wall Lake,IA,51466 -Westside,IA,51467 -Manawa,IA,51501 -Council Bluffs,IA,51503 -Carter Lake,IA,51510 -Arion,IA,51520 -Avoca,IA,51521 -Blencoe,IA,51523 -Carson,IA,51525 -Crescent,IA,51526 -Earling,IA,51527 -Dow City,IA,51528 -Earling,IA,51529 -Earling,IA,51530 -Elk Horn,IA,51531 -Elliott,IA,51532 -Emerson,IA,51533 -Glenwood,IA,51534 -Griswold,IA,51535 -Hancock,IA,51536 -Harlan,IA,51537 -Hastings,IA,51540 -Henderson,IA,51541 -Honey Creek,IA,51542 -Kimballton,IA,51543 -Lewis,IA,51544 -Little Sioux,IA,51545 -Logan,IA,51546 -Mc Clelland,IA,51548 -Macedonia,IA,51549 -Magnolia,IA,51550 -Malvern,IA,51551 -Marne,IA,51552 -Minden,IA,51553 -Mineola,IA,51554 -Missouri Valley,IA,51555 -Modale,IA,51556 -Mondamin,IA,51557 -Moorhead,IA,51558 -Neola,IA,51559 -Oakland,IA,51560 -Pacific Junction,IA,51561 -Panama,IA,51562 -Persia,IA,51563 -Pisgah,IA,51564 -Portsmouth,IA,51565 -Red Oak,IA,51566 -Shelby,IA,51570 -Silver City,IA,51571 -Soldier,IA,51572 -Stanton,IA,51573 -Treynor,IA,51575 -Underwood,IA,51576 -Walnut,IA,51577 -Westphalia,IA,51578 -Woodbine,IA,51579 -Shenandoah,IA,51601 -Blanchard,IA,51630 -Braddyville,IA,51631 -Clarinda,IA,51632 -Coin,IA,51636 -College Springs,IA,51637 -Essex,IA,51638 -Farragut,IA,51639 -Hamburg,IA,51640 -Imogene,IA,51645 -New Market,IA,51646 -Northboro,IA,51647 -Percival,IA,51648 -Randolph,IA,51649 -Riverton,IA,51650 -Shambaugh,IA,51651 -Sidney,IA,51652 -Tabor,IA,51653 -Thurman,IA,51654 -Yorktown,IA,51656 -Dubuque,IA,52001 -Dubuque,IA,52002 -Dubuque,IA,52003 -Andrew,IA,52030 -Bellevue,IA,52031 -Bernard,IA,52032 -Cascade,IA,52033 -Colesburg,IA,52035 -Delaware,IA,52036 -Delmar,IA,52037 -Dundee,IA,52038 -Durango,IA,52039 -Dyersville,IA,52040 -Earlville,IA,52041 -Edgewood,IA,52042 -Elkader,IA,52043 -Elkport,IA,52044 -Epworth,IA,52045 -Farley,IA,52046 -Farmersburg,IA,52047 -Garber,IA,52048 -Garnavillo,IA,52049 -Greeley,IA,52050 -Guttenberg,IA,52052 -Holy Cross,IA,52053 -La Motte,IA,52054 -Manchester,IA,52057 -Maquoketa,IA,52060 -Miles,IA,52064 -New Vienna,IA,52065 -North Buena Vist,IA,52066 -Peosta,IA,52068 -Preston,IA,52069 -Sabula,IA,52070 -Saint Donatus,IA,52071 -Saint Olaf,IA,52072 -Sherrill,IA,52073 -Spragueville,IA,52074 -Springbrook,IA,52075 -Strawberry Point,IA,52076 -Volga,IA,52077 -Worthington,IA,52078 -Zwingle,IA,52079 -Decorah,IA,52101 -Burr Oak,IA,52131 -Calmar,IA,52132 -Castalia,IA,52133 -Chester,IA,52134 -Clermont,IA,52135 -Cresco,IA,52136 -Dorchester,IA,52140 -Elgin,IA,52141 -Fayette,IA,52142 -Fort Atkinson,IA,52144 -Harpers Ferry,IA,52146 -Hawkeye,IA,52147 -Jackson Junction,IA,52150 -Lansing,IA,52151 -Lawler,IA,52154 -Lime Springs,IA,52155 -Luana,IA,52156 -Mc Gregor,IA,52157 -Marquette,IA,52158 -Monona,IA,52159 -New Albin,IA,52160 -Ossian,IA,52161 -Postville,IA,52162 -Randalia,IA,52164 -Ridgeway,IA,52165 -Saint Lucas,IA,52166 -Wadena,IA,52169 -Waterville,IA,52170 -Waucoma,IA,52171 -Waukon,IA,52172 -Eldorado,IA,52175 -Ainsworth,IA,52201 -Alburnett,IA,52202 -Amana,IA,52203 -Anamosa,IA,52205 -Atkins,IA,52206 -Baldwin,IA,52207 -Belle Plaine,IA,52208 -Blairstown,IA,52209 -Brandon,IA,52210 -Brooklyn,IA,52211 -Center Junction,IA,52212 -Center Point,IA,52213 -Central City,IA,52214 -Chelsea,IA,52215 -Clarence,IA,52216 -Clutier,IA,52217 -Coggon,IA,52218 -Conroy,IA,52220 -Deep River,IA,52222 -Delhi,IA,52223 -Dysart,IA,52224 -Elberon,IA,52225 -Elwood,IA,52226 -Ely,IA,52227 -Fairfax,IA,52228 -Garrison,IA,52229 -Harper,IA,52231 -Hartwick,IA,52232 -Hiawatha,IA,52233 -Homestead,IA,52236 -Hopkinton,IA,52237 -Iowa City,IA,52240 -Coralville,IA,52241 -Iowa City,IA,52245 -Iowa City,IA,52246 -Kalona,IA,52247 -Keota,IA,52248 -Keystone,IA,52249 -Kinross,IA,52250 -Ladora,IA,52251 -Lisbon,IA,52253 -Lost Nation,IA,52254 -Lowden,IA,52255 -Luzerne,IA,52257 -Marengo,IA,52301 -Marion,IA,52302 -Martelle,IA,52305 -Mechanicsville,IA,52306 -Middle Amana,IA,52307 -Millersburg,IA,52308 -Monmouth,IA,52309 -Monticello,IA,52310 -Mount Auburn,IA,52313 -Mount Vernon,IA,52314 -Newhall,IA,52315 -North English,IA,52316 -North Liberty,IA,52317 -Norway,IA,52318 -Olin,IA,52320 -Onslow,IA,52321 -Oxford,IA,52322 -Oxford Junction,IA,52323 -Palo,IA,52324 -Parnell,IA,52325 -Quasqueton,IA,52326 -Riverside,IA,52327 -Robins,IA,52328 -Rowley,IA,52329 -Ryan,IA,52330 -Scotch Grove,IA,52331 -Shellsburg,IA,52332 -Solon,IA,52333 -South Amana,IA,52334 -South English,IA,52335 -Springville,IA,52336 -Stanwood,IA,52337 -Swisher,IA,52338 -Tama,IA,52339 -Toddville,IA,52341 -Toledo,IA,52342 -Toronto,IA,52343 -Van Horne,IA,52346 -Victor,IA,52347 -Vining,IA,52348 -Vinton,IA,52349 -Walker,IA,52352 -Washington,IA,52353 -Watkins,IA,52354 -Webster,IA,52355 -Wellman,IA,52356 -West Amana,IA,52357 -West Branch,IA,52358 -West Chester,IA,52359 -Williamsburg,IA,52361 -Wyoming,IA,52362 -Cedar Rapids,IA,52401 -Cedar Rapids,IA,52402 -Cedar Rapids,IA,52403 -Cedar Rapids,IA,52404 -Cedar Rapids,IA,52405 -Highland Center,IA,52501 -Agency,IA,52530 -Albia,IA,52531 -Batavia,IA,52533 -Beacon,IA,52534 -Birmingham,IA,52535 -Blakesburg,IA,52536 -Bloomfield,IA,52537 -West Grove,IA,52538 -Brighton,IA,52540 -Cantril,IA,52542 -Cedar,IA,52543 -Centerville,IA,52544 -Chillicothe,IA,52548 -Cincinnati,IA,52549 -Delta,IA,52550 -Douds,IA,52551 -Drakesville,IA,52552 -Eddyville,IA,52553 -Eldon,IA,52554 -Exline,IA,52555 -Fairfield,IA,52556 -Floris,IA,52560 -Fremont,IA,52561 -Hedrick,IA,52563 -Keosauqua,IA,52565 -Kirkville,IA,52566 -Libertyville,IA,52567 -Melrose,IA,52569 -Milton,IA,52570 -Moravia,IA,52571 -Moulton,IA,52572 -Mount Sterling,IA,52573 -Mystic,IA,52574 -Numa,IA,52575 -Ollie,IA,52576 -Oskaloosa,IA,52577 -Packwood,IA,52580 -Plano,IA,52581 -Promise City,IA,52583 -Pulaski,IA,52584 -Richland,IA,52585 -Rose Hill,IA,52586 -Selma,IA,52588 -Seymour,IA,52590 -Sigourney,IA,52591 -Udell,IA,52593 -Unionville,IA,52594 -Burlington,IA,52601 -Argyle,IA,52619 -Bonaparte,IA,52620 -Crawfordsville,IA,52621 -Danville,IA,52623 -Denmark,IA,52624 -Donnellson,IA,52625 -Farmington,IA,52626 -Fort Madison,IA,52627 -Hillsboro,IA,52630 -Houghton,IA,52631 -Keokuk,IA,52632 -Lockridge,IA,52635 -Mediapolis,IA,52637 -Middletown,IA,52638 -Montrose,IA,52639 -Morning Sun,IA,52640 -Mount Pleasant,IA,52641 -Mount Union,IA,52644 -New London,IA,52645 -Oakville,IA,52646 -Olds,IA,52647 -Salem,IA,52649 -Sperry,IA,52650 -Stockport,IA,52651 -Wapello,IA,52653 -Wayland,IA,52654 -West Burlington,IA,52655 -West Point,IA,52656 -Saint Paul,IA,52657 -Wever,IA,52658 -Winfield,IA,52659 -Yarmouth,IA,52660 -Andover,IA,52701 -Atalissa,IA,52720 -Bennett,IA,52721 -Bettendorf,IA,52722 -Blue Grass,IA,52726 -Bryant,IA,52727 -Calamus,IA,52729 -Camanche,IA,52730 -Charlotte,IA,52731 -Clinton,IA,52732 -Columbus Junctio,IA,52738 -Conesville,IA,52739 -De Witt,IA,52742 -Big Rock,IA,52745 -Donahue,IA,52746 -Durant,IA,52747 -Eldridge,IA,52748 -Goose Lake,IA,52750 -Grand Mound,IA,52751 -Le Claire,IA,52753 -Letts,IA,52754 -Lone Tree,IA,52755 -Long Grove,IA,52756 -Moscow,IA,52760 -Muscatine,IA,52761 -New Liberty,IA,52765 -Nichols,IA,52766 -Princeton,IA,52768 -Stockton,IA,52769 -Tipton,IA,52772 -Walcott,IA,52773 -Welton,IA,52774 -West Liberty,IA,52776 -Wheatland,IA,52777 -Wilton,IA,52778 -Davenport,IA,52802 -Davenport,IA,52803 -Davenport,IA,52804 -Davenport,IA,52806 -Davenport,IA,52807 -Atchison,KS,66002 -Baldwin City,KS,66006 -Basehor,KS,66007 -Bendena,KS,66008 -Blue Mound,KS,66010 -Lake Of The Fore,KS,66012 -Bucyrus,KS,66013 -Centerville,KS,66014 -Colony,KS,66015 -Cummings,KS,66016 -Denton,KS,66017 -De Soto,KS,66018 -Easton,KS,66020 -Edgerton,KS,66021 -Effingham,KS,66023 -Eudora,KS,66025 -Fontana,KS,66026 -Fort Leavenworth,KS,66027 -Gardner,KS,66030 -Industrial Airpo,KS,66031 -Garnett,KS,66032 -Greeley,KS,66033 -Highland,KS,66035 -Hillsdale,KS,66036 -Mildred,KS,66039 -La Cygne,KS,66040 -Huron,KS,66041 -Lane,KS,66042 -Lansing,KS,66043 -Lawrence,KS,66044 -Lawrence,KS,66046 -Lawrence,KS,66047 -Leavenworth,KS,66048 -Lawrence,KS,66049 -Lecompton,KS,66050 -Linwood,KS,66052 -Louisburg,KS,66053 -Mc Louth,KS,66054 -Mound City,KS,66056 -Muscotah,KS,66058 -Nortonville,KS,66060 -Olathe,KS,66061 -Olathe,KS,66062 -Osawatomie,KS,66064 -Oskaloosa,KS,66066 -Ottawa,KS,66067 -Ozawkie,KS,66070 -Paola,KS,66071 -Parker,KS,66072 -Perry,KS,66073 -Pleasanton,KS,66075 -Pomona,KS,66076 -Princeton,KS,66078 -Rantoul,KS,66079 -Richmond,KS,66080 -66081,KS,66081 -Spring Hill,KS,66083 -Stilwell,KS,66085 -Tonganoxie,KS,66086 -Severance,KS,66087 -Valley Falls,KS,66088 -Wathena,KS,66090 -Welda,KS,66091 -Wellsville,KS,66092 -Westphalia,KS,66093 -White Cloud,KS,66094 -Williamsburg,KS,66095 -Winchester,KS,66097 -Kansas City,KS,66101 -Kansas City,KS,66102 -Rosedale,KS,66103 -Kansas City,KS,66104 -Kansas City,KS,66105 -Lake Quivira,KS,66106 -Kansas City,KS,66109 -Kansas City,KS,66111 -Kansas City,KS,66112 -Kansas City,KS,66115 -Kansas City,KS,66118 -Countryside,KS,66202 -Shawnee,KS,66203 -Overland Park,KS,66204 -Mission,KS,66205 -Leawood,KS,66206 -Shawnee Mission,KS,66207 -Prairie Village,KS,66208 -Leawood,KS,66209 -Lenexa,KS,66210 -Leawood,KS,66211 -Overland Park,KS,66212 -Overland Park,KS,66213 -Lenexa,KS,66214 -Lenexa,KS,66215 -Shawnee,KS,66216 -Shawnee,KS,66217 -Shawnee,KS,66218 -Lenexa,KS,66219 -Lenexa,KS,66220 -Stanley,KS,66221 -Stanley,KS,66223 -Stanley,KS,66224 -Shawnee,KS,66226 -Lenexa,KS,66227 -Alma,KS,66401 -Auburn,KS,66402 -Axtell,KS,66403 -Baileyville,KS,66404 -Beattie,KS,66406 -Belvue,KS,66407 -Bern,KS,66408 -Berryton,KS,66409 -Blue Rapids,KS,66411 -Bremen,KS,66412 -Burlingame,KS,66413 -Carbondale,KS,66414 -Centralia,KS,66415 -Circleville,KS,66416 -Corning,KS,66417 -Delia,KS,66418 -Denison,KS,66419 -Dover,KS,66420 -Emmett,KS,66422 -Eskridge,KS,66423 -Everest,KS,66424 -Fairview,KS,66425 -Winifred,KS,66427 -Goff,KS,66428 -Grantville,KS,66429 -Harveyville,KS,66431 -Havensville,KS,66432 -Herkimer,KS,66433 -Reserve,KS,66434 -Holton,KS,66436 -Home,KS,66438 -Horton,KS,66439 -Hoyt,KS,66440 -Junction City,KS,66441 -Fort Riley,KS,66442 -Leonardville,KS,66449 -Louisville,KS,66450 -Lyndon,KS,66451 -Manhattan,KS,66502 -Maple Hill,KS,66507 -Marysville,KS,66508 -Mayetta,KS,66509 -Melvern,KS,66510 -Meriden,KS,66512 -Milford,KS,66514 -Morrill,KS,66515 -Netawaka,KS,66516 -Ogden,KS,66517 -Oketo,KS,66518 -Olsburg,KS,66520 -Duluth,KS,66521 -Oneida,KS,66522 -Osage City,KS,66523 -Overbrook,KS,66524 -Paxico,KS,66526 -Powhattan,KS,66527 -Quenemo,KS,66528 -Riley,KS,66531 -Leona,KS,66532 -Rossville,KS,66533 -Sabetha,KS,66534 -Saint George,KS,66535 -Saint Marys,KS,66536 -Scranton,KS,66537 -Kelly,KS,66538 -Silver Lake,KS,66539 -Soldier,KS,66540 -Summerfield,KS,66541 -Tecumseh,KS,66542 -Vassar,KS,66543 -Vliets,KS,66544 -66545,KS,66545 -Wakarusa,KS,66546 -Wamego,KS,66547 -Waterville,KS,66548 -Blaine,KS,66549 -Wetmore,KS,66550 -Onaga,KS,66551 -Whiting,KS,66552 -Randolph,KS,66554 -Topeka,KS,66603 -Topeka,KS,66604 -Topeka,KS,66605 -Topeka,KS,66606 -Topeka,KS,66607 -Topeka,KS,66608 -Topeka,KS,66609 -Topeka,KS,66610 -Topeka,KS,66611 -Topeka,KS,66612 -Topeka,KS,66614 -Topeka,KS,66615 -Topeka,KS,66616 -Topeka,KS,66617 -Topeka,KS,66618 -Pauline,KS,66619 -Hiattville,KS,66701 -Altoona,KS,66710 -Arcadia,KS,66711 -Baxter Springs,KS,66713 -Benedict,KS,66714 -Bronson,KS,66716 -Buffalo,KS,66717 -Chanute,KS,66720 -Cherokee,KS,66724 -Hallowell,KS,66725 -Coyville,KS,66727 -Crestline,KS,66728 -Elsmore,KS,66732 -Erie,KS,66733 -Farlington,KS,66734 -Lafontaine,KS,66736 -Fulton,KS,66738 -Galena,KS,66739 -Galesburg,KS,66740 -Garland,KS,66741 -Girard,KS,66743 -Hepler,KS,66746 -Humboldt,KS,66748 -Carlyle,KS,66749 -La Harpe,KS,66751 -Mc Cune,KS,66753 -Mapleton,KS,66754 -Moran,KS,66755 -Mulberry,KS,66756 -Neodesha,KS,66757 -Neosho Falls,KS,66758 -New Albany,KS,66759 -Piqua,KS,66761 -Radley,KS,66762 -Prescott,KS,66767 -Redfield,KS,66769 -Riverton,KS,66770 -Saint Paul,KS,66771 -Savonburg,KS,66772 -Carona,KS,66773 -Stark,KS,66775 -Thayer,KS,66776 -Toronto,KS,66777 -Treece,KS,66778 -Uniontown,KS,66779 -Walnut,KS,66780 -Lawton,KS,66781 -Yates Center,KS,66783 -Emporia,KS,66801 -Admire,KS,66830 -Bushong,KS,66833 -Alta Vista,KS,66834 -Americus,KS,66835 -Burdick,KS,66838 -Strawn,KS,66839 -Burns,KS,66840 -Cassoday,KS,66842 -Clements,KS,66843 -Cottonwood Falls,KS,66845 -Dunlap,KS,66846 -66847,KS,66847 -Dwight,KS,66849 -Elmdale,KS,66850 -Florence,KS,66851 -Gridley,KS,66852 -Hamilton,KS,66853 -Hartford,KS,66854 -Lebo,KS,66856 -Le Roy,KS,66857 -Antelope,KS,66858 -Lost Springs,KS,66859 -Madison,KS,66860 -Marion,KS,66861 -Matfield Green,KS,66862 -Neosho Rapids,KS,66864 -Olpe,KS,66865 -Peabody,KS,66866 -Reading,KS,66868 -Strong City,KS,66869 -Virgil,KS,66870 -Waverly,KS,66871 -White City,KS,66872 -Wilsey,KS,66873 -Rice,KS,66901 -Agenda,KS,66930 -Ames,KS,66931 -Athol,KS,66932 -Barnes,KS,66933 -Belleville,KS,66935 -Burr Oak,KS,66936 -Clifton,KS,66937 -Clyde,KS,66938 -Courtland,KS,66939 -Cuba,KS,66940 -Esbon,KS,66941 -Formoso,KS,66942 -Greenleaf,KS,66943 -Haddam,KS,66944 -Hanover,KS,66945 -Hollenberg,KS,66946 -Jamestown,KS,66948 -Ionia,KS,66949 -Kensington,KS,66951 -Bellaire,KS,66952 -Linn,KS,66953 -Mahaska,KS,66955 -Mankato,KS,66956 -Morrowville,KS,66958 -Munden,KS,66959 -Narka,KS,66960 -Norway,KS,66961 -Palmer,KS,66962 -Randall,KS,66963 -Republic,KS,66964 -Scandia,KS,66966 -Smith Center,KS,66967 -Washington,KS,66968 -Webber,KS,66970 -Andale,KS,67001 -Andover,KS,67002 -Anthony,KS,67003 -Argonia,KS,67004 -Arkansas City,KS,67005 -Atlanta,KS,67008 -Attica,KS,67009 -Augusta,KS,67010 -Beaumont,KS,67012 -Belle Plaine,KS,67013 -67014,KS,67014 -Bentley,KS,67016 -Benton,KS,67017 -Bluff City,KS,67018 -Burden,KS,67019 -Burrton,KS,67020 -Byers,KS,67021 -Caldwell,KS,67022 -Cambridge,KS,67023 -Cedar Vale,KS,67024 -Cheney,KS,67025 -Clearwater,KS,67026 -Coats,KS,67028 -Coldwater,KS,67029 -Colwich,KS,67030 -Conway Springs,KS,67031 -Corbin,KS,67032 -Penalosa,KS,67035 -Danville,KS,67036 -Derby,KS,67037 -Dexter,KS,67038 -Douglass,KS,67039 -Elbing,KS,67041 -El Dorado,KS,67042 -Eureka,KS,67045 -Fall River,KS,67047 -Freeport,KS,67049 -Garden Plain,KS,67050 -Geuda Springs,KS,67051 -Goddard,KS,67052 -Goessel,KS,67053 -Greensburg,KS,67054 -Halstead,KS,67056 -Hardtner,KS,67057 -Harper,KS,67058 -Haviland,KS,67059 -Haysville,KS,67060 -Hazelton,KS,67061 -Hesston,KS,67062 -Hillsboro,KS,67063 -Isabel,KS,67065 -Iuka,KS,67066 -Belmont,KS,67068 -Kiowa,KS,67070 -Lake City,KS,67071 -Latham,KS,67072 -Lehigh,KS,67073 -Leon,KS,67074 -Maize,KS,67101 -Maple City,KS,67102 -Mayfield,KS,67103 -Medicine Lodge,KS,67104 -Milan,KS,67105 -Milton,KS,67106 -Moundridge,KS,67107 -Mount Hope,KS,67108 -Mullinville,KS,67109 -Mulvane,KS,67110 -Murdock,KS,67111 -Nashville,KS,67112 -Newton,KS,67114 -North Newton,KS,67117 -Norwich,KS,67118 -Oxford,KS,67119 -Peck,KS,67120 -Piedmont,KS,67122 -Potwin,KS,67123 -Pratt,KS,67124 -Protection,KS,67127 -Rago,KS,67128 -Rock,KS,67131 -Rosalia,KS,67132 -Rose Hill,KS,67133 -Sawyer,KS,67134 -Sedgwick,KS,67135 -Climax,KS,67137 -Sharon,KS,67138 -South Haven,KS,67140 -Spivey,KS,67142 -Sun City,KS,67143 -Towanda,KS,67144 -Udall,KS,67146 -Valley Center,KS,67147 -Viola,KS,67149 -Waldron,KS,67150 -Walton,KS,67151 -Wellington,KS,67152 -Whitewater,KS,67154 -Wilmore,KS,67155 -Winfield,KS,67156 -Zenda,KS,67159 -Wichita,KS,67202 -Wichita,KS,67203 -Wichita,KS,67204 -Wichita,KS,67205 -Eastborough,KS,67206 -Eastborough,KS,67207 -Wichita,KS,67208 -Wichita,KS,67209 -Wichita,KS,67210 -Wichita,KS,67211 -Wichita,KS,67212 -Wichita,KS,67213 -Wichita,KS,67214 -Wichita,KS,67215 -Wichita,KS,67216 -Wichita,KS,67217 -Wichita,KS,67218 -Park City,KS,67219 -Bel Aire,KS,67220 -Mc Connell A F B,KS,67221 -Wichita,KS,67223 -Wichita,KS,67226 -Wichita,KS,67227 -Wichita,KS,67228 -Wichita,KS,67230 -Wichita,KS,67231 -Wichita,KS,67232 -Wichita,KS,67233 -Wichita,KS,67235 -Wichita,KS,67236 -Independence,KS,67301 -Altamont,KS,67330 -Bartlett,KS,67332 -Caney,KS,67333 -Cherryvale,KS,67335 -Chetopa,KS,67336 -Coffeyville,KS,67337 -Dennis,KS,67341 -Edna,KS,67342 -Elk City,KS,67344 -Elk Falls,KS,67345 -Grenola,KS,67346 -Havana,KS,67347 -Howard,KS,67349 -Liberty,KS,67351 -Longton,KS,67352 -Moline,KS,67353 -Mound Valley,KS,67354 -Niotaze,KS,67355 -Oswego,KS,67356 -Parsons,KS,67357 -Peru,KS,67360 -Sedan,KS,67361 -Bavaria,KS,67401 -Abilene,KS,67410 -Ada,KS,67414 -Assaria,KS,67416 -Aurora,KS,67417 -Barnard,KS,67418 -Scottsville,KS,67420 -Bennington,KS,67422 -Beverly,KS,67423 -Brookville,KS,67425 -Bushton,KS,67427 -Canton,KS,67428 -Carlton,KS,67429 -Cawker City,KS,67430 -Chapman,KS,67431 -Clay Center,KS,67432 -Delphos,KS,67436 -Downs,KS,67437 -Durham,KS,67438 -Ellsworth,KS,67439 -Enterprise,KS,67441 -Falun,KS,67442 -Galva,KS,67443 -Geneseo,KS,67444 -Glasco,KS,67445 -Glen Elder,KS,67446 -Green,KS,67447 -Gypsum,KS,67448 -Delavan,KS,67449 -Holyrood,KS,67450 -Hope,KS,67451 -Hunter,KS,67452 -Kanopolis,KS,67454 -Westfall,KS,67455 -Lindsborg,KS,67456 -Little River,KS,67457 -Longford,KS,67458 -Lorraine,KS,67459 -Conway,KS,67460 -Manchester,KS,67463 -Marquette,KS,67464 -Mentor,KS,67465 -Miltonvale,KS,67466 -Minneapolis,KS,67467 -Morganville,KS,67468 -Navarre,KS,67469 -New Cambria,KS,67470 -Oakhill,KS,67472 -Osborne,KS,67473 -Portis,KS,67474 -Ramona,KS,67475 -Roxbury,KS,67476 -Simpson,KS,67478 -Smolan,KS,67479 -Solomon,KS,67480 -Sylvan Grove,KS,67481 -Talmage,KS,67482 -Tampa,KS,67483 -Culver,KS,67484 -Tipton,KS,67485 -Wakefield,KS,67487 -Wells,KS,67488 -Wilson,KS,67490 -Windom,KS,67491 -Woodbine,KS,67492 -Hutchinson,KS,67501 -Medora,KS,67502 -South Hutchinson,KS,67505 -Abbyville,KS,67510 -Albert,KS,67511 -Alden,KS,67512 -Alexander,KS,67513 -Arlington,KS,67514 -Arnold,KS,67515 -Bazine,KS,67516 -Beaver,KS,67517 -Beeler,KS,67518 -Belpre,KS,67519 -Bison,KS,67520 -Brownell,KS,67521 -Buhler,KS,67522 -Burdett,KS,67523 -Chase,KS,67524 -Claflin,KS,67525 -Ellinwood,KS,67526 -Garfield,KS,67529 -Heizer,KS,67530 -Haven,KS,67543 -Susank,KS,67544 -Hudson,KS,67545 -Inman,KS,67546 -Kinsley,KS,67547 -La Crosse,KS,67548 -67549,KS,67549 -Radium,KS,67550 -Lewis,KS,67552 -Liebenthal,KS,67553 -Lyons,KS,67554 -Mc Cracken,KS,67556 -Macksville,KS,67557 -Nekoma,KS,67559 -Ness City,KS,67560 -Nickerson,KS,67561 -Odin,KS,67562 -Offerle,KS,67563 -Galatia,KS,67564 -Galatia,KS,67565 -Partridge,KS,67566 -Pawnee Rock,KS,67567 -Plevna,KS,67568 -Pretty Prairie,KS,67570 -Ransom,KS,67572 -Raymond,KS,67573 -Rozel,KS,67574 -Rush Center,KS,67575 -Saint John,KS,67576 -Seward,KS,67577 -Stafford,KS,67578 -Sterling,KS,67579 -67580,KS,67580 -Sylvia,KS,67581 -Timken,KS,67582 -Langdon,KS,67583 -Utica,KS,67584 -Antonino,KS,67601 -Agra,KS,67621 -Almena,KS,67622 -Alton,KS,67623 -Bogue,KS,67625 -Bunker Hill,KS,67626 -Catharine,KS,67627 -Cedar,KS,67628 -Clayton,KS,67629 -Codell,KS,67630 -Collyer,KS,67631 -Damar,KS,67632 -67633,KS,67633 -Dorrance,KS,67634 -Dresden,KS,67635 -Edmond,KS,67636 -Ellis,KS,67637 -Gaylord,KS,67638 -Glade,KS,67639 -Gorham,KS,67640 -Harlan,KS,67641 -Hill City,KS,67642 -Jennings,KS,67643 -Kirwin,KS,67644 -Densmore,KS,67645 -Logan,KS,67646 -Long Island,KS,67647 -Lucas,KS,67648 -Luray,KS,67649 -Morland,KS,67650 -Natoma,KS,67651 -New Almelo,KS,67652 -Norcatur,KS,67653 -Norton,KS,67654 -Ogallah,KS,67656 -Palco,KS,67657 -Paradise,KS,67658 -Penokee,KS,67659 -Pfeifer,KS,67660 -Phillipsburg,KS,67661 -Plainville,KS,67663 -Prairie View,KS,67664 -Russell,KS,67665 -Schoenchen,KS,67667 -Stockton,KS,67669 -Victoria,KS,67671 -Wa Keeney,KS,67672 -Waldo,KS,67673 -Woodston,KS,67675 -Zurich,KS,67676 -Colby,KS,67701 -Atwood,KS,67730 -Bird City,KS,67731 -Brewster,KS,67732 -Edson,KS,67733 -Gem,KS,67734 -Goodland,KS,67735 -Gove,KS,67736 -Grainfield,KS,67737 -Grinnell,KS,67738 -Herndon,KS,67739 -Hoxie,KS,67740 -Kanorado,KS,67741 -Levant,KS,67743 -Ludell,KS,67744 -Mc Donald,KS,67745 -67746,KS,67746 -Monument,KS,67747 -Oakley,KS,67748 -Oberlin,KS,67749 -Park,KS,67751 -Quinter,KS,67752 -Menlo,KS,67753 -Russell Springs,KS,67755 -Wheeler,KS,67756 -Selden,KS,67757 -Sharon Springs,KS,67758 -Studley,KS,67759 -Wallace,KS,67761 -Weskan,KS,67762 -Winona,KS,67764 -Dodge City,KS,67801 -67830,KS,67830 -Ashland,KS,67831 -67833,KS,67833 -Bucklin,KS,67834 -Cimarron,KS,67835 -Copeland,KS,67837 -Deerfield,KS,67838 -Alamota,KS,67839 -Englewood,KS,67840 -Ensign,KS,67841 -Ford,KS,67842 -Fort Dodge,KS,67843 -Fowler,KS,67844 -Garden City,KS,67846 -Hanston,KS,67849 -Healy,KS,67850 -Holcomb,KS,67851 -Ingalls,KS,67853 -Jetmore,KS,67854 -Johnson,KS,67855 -Kalvesta,KS,67856 -Kendall,KS,67857 -Kingsdown,KS,67858 -Kismet,KS,67859 -Lakin,KS,67860 -Leoti,KS,67861 -Manter,KS,67862 -Modoc,KS,67863 -Meade,KS,67864 -Bloom,KS,67865 -67866,KS,67866 -Montezuma,KS,67867 -Pierceville,KS,67868 -Plains,KS,67869 -Satanta,KS,67870 -Friend,KS,67871 -Shields,KS,67874 -Spearville,KS,67876 -Sublette,KS,67877 -Syracuse,KS,67878 -Tribune,KS,67879 -Ulysses,KS,67880 -Wright,KS,67882 -Liberal,KS,67901 -Elkhart,KS,67950 -Hugoton,KS,67951 -Moscow,KS,67952 -Richfield,KS,67953 -Rolla,KS,67954 -Bagdad,KY,40003 -Bardstown,KY,40004 -Bedford,KY,40006 -Bethlehem,KY,40007 -Bloomfield,KY,40008 -Bradfordsville,KY,40009 -Buckner,KY,40010 -Campbellsburg,KY,40011 -Chaplin,KY,40012 -Deatsville,KY,40013 -Crestwood,KY,40014 -Eminence,KY,40019 -Finchville,KY,40022 -Fisherville,KY,40023 -Goshen,KY,40026 -Howardstown,KY,40028 -La Grange,KY,40031 -Lebanon,KY,40033 -Lockport,KY,40036 -Loretto,KY,40037 -Mackville,KY,40040 -Milton,KY,40045 -Mount Eden,KY,40046 -Mount Washington,KY,40047 -New Castle,KY,40050 -Trappist,KY,40051 -Pendleton,KY,40055 -Pewee Valley,KY,40056 -Cropper,KY,40057 -Prospect,KY,40059 -Raywick,KY,40060 -Saint Catharine,KY,40061 -Saint Francis,KY,40062 -Shelbyville,KY,40065 -Simpsonville,KY,40067 -Smithfield,KY,40068 -Maud,KY,40069 -Sulphur,KY,40070 -Taylorsville,KY,40071 -Turners Station,KY,40075 -Waddy,KY,40076 -Westport,KY,40077 -Willisburg,KY,40078 -40103,KY,40103 -Battletown,KY,40104 -Big Spring,KY,40106 -Boston,KY,40107 -Brandenburg,KY,40108 -Brooks,KY,40109 -Cloverport,KY,40111 -Constantine,KY,40114 -Custer,KY,40115 -Ekron,KY,40117 -Fairdale,KY,40118 -Glen Dean,KY,40119 -Fort Knox,KY,40121 -Garfield,KY,40140 -40141,KY,40141 -Guston,KY,40142 -Mooleyville,KY,40143 -Locust Hill,KY,40144 -Hudson,KY,40145 -Irvington,KY,40146 -Lebanon Junction,KY,40150 -Mc Daniels,KY,40152 -Payneville,KY,40157 -Radcliff,KY,40160 -Rhodelia,KY,40161 -Rineyville,KY,40162 -40163,KY,40163 -Se Ree,KY,40164 -Shepherdsville,KY,40165 -Stephensport,KY,40170 -Union Star,KY,40171 -Vine Grove,KY,40175 -Webster,KY,40176 -West Point,KY,40177 -Westview,KY,40178 -Louisville,KY,40202 -Louisville,KY,40203 -Louisville,KY,40204 -Louisville,KY,40205 -Saint Matthews,KY,40206 -Saint Matthews,KY,40207 -Louisville,KY,40208 -Louisville,KY,40209 -Louisville,KY,40210 -Louisville,KY,40211 -Louisville,KY,40212 -Louisville,KY,40213 -Louisville,KY,40214 -Louisville,KY,40215 -Shively,KY,40216 -Louisville,KY,40217 -Buechel,KY,40218 -Okolona,KY,40219 -Louisville,KY,40220 -Lyndon,KY,40222 -Anchorage,KY,40223 -Buechel,KY,40228 -Okolona,KY,40229 -Lyndon,KY,40241 -Lyndon,KY,40242 -Middletown,KY,40243 -Louisville,KY,40245 -Pleasure Ridge P,KY,40258 -Valley Station,KY,40272 -Fern Creek,KY,40291 -Jeffersontown,KY,40299 -Carlisle,KY,40311 -Westbend,KY,40312 -Clearfield,KY,40313 -Denniston,KY,40316 -Scranton,KY,40322 -Georgetown,KY,40324 -Gratz,KY,40327 -Gravel Switch,KY,40328 -Cornishville,KY,40330 -Jinks,KY,40336 -Jeffersonville,KY,40337 -Keene,KY,40339 -Lamero,KY,40341 -Lawrenceburg,KY,40342 -Mariba,KY,40345 -Means,KY,40346 -Midway,KY,40347 -Moorefield,KY,40350 -Morehead,KY,40351 -Mount Sterling,KY,40353 -New Liberty,KY,40355 -Nicholasville,KY,40356 -Olympia,KY,40358 -Owenton,KY,40359 -Owingsville,KY,40360 -Paris,KY,40361 -Pomeroyton,KY,40365 -Sadieville,KY,40370 -Salt Lick,KY,40371 -Bondville,KY,40372 -Sharpsburg,KY,40374 -Slade,KY,40376 -Stamping Ground,KY,40379 -Patsey,KY,40380 -Versailles,KY,40383 -Bybee,KY,40385 -Korea,KY,40387 -High Bridge,KY,40390 -Winchester,KY,40391 -Moores Creek,KY,40402 -Berea,KY,40403 -Brodhead,KY,40409 -Cobhill,KY,40415 -Conway,KY,40417 -Crab Orchard,KY,40419 -Danville,KY,40422 -Dreyfus,KY,40426 -Hustonville,KY,40437 -Junction City,KY,40440 -Kings Mountain,KY,40442 -Lancaster,KY,40444 -Livingston,KY,40445 -Clover Bottom,KY,40447 -Climax,KY,40456 -Orlando,KY,40460 -Paint Lick,KY,40461 -Parksville,KY,40464 -Perryville,KY,40468 -Pryse,KY,40471 -Ravenna,KY,40472 -Richmond,KY,40475 -Sandgap,KY,40481 -Stanford,KY,40484 -Elias,KY,40486 -Waynesburg,KY,40489 -Lexington,KY,40502 -Lexington,KY,40503 -Lexington,KY,40504 -Lexington,KY,40505 -Lexington,KY,40507 -Lexington,KY,40508 -Lexington,KY,40509 -Lexington,KY,40510 -Lexington,KY,40511 -Lexington,KY,40513 -Lexington,KY,40514 -Lexington,KY,40515 -Lexington,KY,40516 -Lexington,KY,40517 -Hatton,KY,40601 -Corbin,KY,40701 -Bush,KY,40724 -Symbol,KY,40729 -Gray,KY,40734 -Keavy,KY,40737 -Lily,KY,40740 -Sasser,KY,40741 -Nevisdale,KY,40754 -Rockholds,KY,40759 -Siler,KY,40763 -Pleasant View,KY,40769 -Woodbine,KY,40771 -Ages Brookside,KY,40801 -Baxter,KY,40806 -Benham,KY,40807 -Big Laurel,KY,40808 -Lewis Creek,KY,40810 -Calvin,KY,40813 -Crummies,KY,40815 -40817,KY,40817 -Coalgood,KY,40818 -Coldiron,KY,40819 -Cranks,KY,40820 -Cumberland,KY,40823 -Dayhoit,KY,40824 -Dizney,KY,40825 -Eolia,KY,40826 -Louellen,KY,40828 -Grays Knob,KY,40829 -Gulston,KY,40830 -Chevrolet,KY,40831 -Holmes Mill,KY,40843 -Hulen,KY,40845 -Keith,KY,40846 -Kenvir,KY,40847 -Lejunior,KY,40849 -Lynch,KY,40855 -Mozelle,KY,40858 -Oven Fork,KY,40861 -Partridge,KY,40862 -Pathfork,KY,40863 -Putney,KY,40865 -Smith,KY,40867 -Stinnett,KY,40868 -Totz,KY,40870 -Wallins Creek,KY,40873 -Arjay,KY,40902 -Artemus,KY,40903 -40905,KY,40905 -Bailey Switch,KY,40906 -Beverly,KY,40913 -Big Creek,KY,40914 -Bimble,KY,40915 -Bryants Store,KY,40921 -Cannon,KY,40923 -Closplint,KY,40927 -Dewitt,KY,40930 -Salt Gum,KY,40935 -Fonde,KY,40940 -Girdler,KY,40943 -Green Road,KY,40946 -Heidrick,KY,40949 -Hinkle,KY,40953 -Kettle Island,KY,40958 -Bright Shade,KY,40962 -Mary Alice,KY,40964 -Middlesboro,KY,40965 -Mills,KY,40970 -Oneida,KY,40972 -Callaway,KY,40977 -Roark,KY,40979 -40980,KY,40980 -Scalf,KY,40982 -Sextons Creek,KY,40983 -Stoney Fork,KY,40988 -Trosper,KY,40995 -Walker,KY,40997 -Woollum,KY,40999 -Alexandria,KY,41001 -Augusta,KY,41002 -Berry,KY,41003 -Brooksville,KY,41004 -Rabbit Hash,KY,41005 -Butler,KY,41006 -California,KY,41007 -Carrollton,KY,41008 -Corinth,KY,41010 -Covington,KY,41011 -Rouse,KY,41014 -Latonia,KY,41015 -Ludlow,KY,41016 -Dixie,KY,41017 -Erlanger,KY,41018 -Crittenden,KY,41030 -Cynthiana,KY,41031 -Demossville,KY,41033 -Dover,KY,41034 -Dry Ridge,KY,41035 -Ewing,KY,41039 -Falmouth,KY,41040 -Flemingsburg,KY,41041 -Florence,KY,41042 -Foster,KY,41043 -Germantown,KY,41044 -Ghent,KY,41045 -Glencoe,KY,41046 -Hebron,KY,41048 -Hillsboro,KY,41049 -Independence,KY,41051 -Jonesville,KY,41052 -Mays Lick,KY,41055 -Limestone Sq,KY,41056 -Melbourne,KY,41059 -Morning View,KY,41063 -Mount Olivet,KY,41064 -Southgate,KY,41071 -Bellevue,KY,41073 -Dayton,KY,41074 -Fort Thomas,KY,41075 -Newport,KY,41076 -Petersburg,KY,41080 -Sanders,KY,41083 -Silver Grove,KY,41085 -Sparta,KY,41086 -Union,KY,41091 -Verona,KY,41092 -Wallingford,KY,41093 -Walton,KY,41094 -Warsaw,KY,41095 -Williamstown,KY,41097 -Worthville,KY,41098 -Westwood,KY,41101 -Ashland,KY,41102 -Argillite,KY,41121 -Blaine,KY,41124 -Camp Dix,KY,41127 -Catlettsburg,KY,41129 -Denton,KY,41132 -Head Of Grassy,KY,41135 -Firebrick,KY,41137 -Flatwoods,KY,41139 -Garrison,KY,41141 -Fultz,KY,41143 -Lynn,KY,41144 -Hitchins,KY,41146 -Isonville,KY,41149 -Martha,KY,41159 -Oldtown,KY,41163 -Lawton,KY,41164 -Quincy,KY,41166 -Rush,KY,41168 -Raceland,KY,41169 -Saint Paul,KY,41170 -Burke,KY,41171 -South Portsmouth,KY,41174 -Maloneton,KY,41175 -Stephens,KY,41177 -41178,KY,41178 -Trinity,KY,41179 -Webbville,KY,41180 -Worthington,KY,41183 -Tollesboro,KY,41189 -Adams,KY,41201 -Boons Camp,KY,41204 -Davella,KY,41214 -Denver,KY,41215 -East Point,KY,41216 -Elna,KY,41219 -Fuget,KY,41220 -Hagerhill,KY,41222 -Job,KY,41224 -41225,KY,41225 -Keaton,KY,41226 -Leander,KY,41228 -Clifford,KY,41230 -Lovely,KY,41231 -Meally,KY,41234 -Offutt,KY,41237 -Manila,KY,41238 -Nippa,KY,41240 -Laura,KY,41250 -River,KY,41254 -Sitka,KY,41255 -Barnetts Creek,KY,41256 -Stambaugh,KY,41257 -Riceville,KY,41258 -Thelma,KY,41260 -Davisport,KY,41262 -Tutor Key,KY,41263 -Van Lear,KY,41265 -Fuget,KY,41266 -Hode,KY,41267 -Whitehouse,KY,41269 -Williamsport,KY,41271 -Wittensville,KY,41274 -Flat,KY,41301 -Altro,KY,41306 -Vada,KY,41311 -Morris Fork,KY,41314 -Burkhart,KY,41315 -41316,KY,41316 -Clayhole,KY,41317 -Decoy,KY,41321 -Gillmore,KY,41327 -Green Hall,KY,41328 -Haddix,KY,41331 -Grassy Creek,KY,41332 -Island City,KY,41338 -Canoe,KY,41339 -Lambric,KY,41340 -Lee City,KY,41342 -Leeco,KY,41343 -Little,KY,41346 -Hardshell,KY,41348 -Mistletoe,KY,41351 -Noctor,KY,41357 -Old Landing,KY,41358 -41359,KY,41359 -Pine Ridge,KY,41360 -Quicksand,KY,41363 -Ricetown,KY,41364 -Rogers,KY,41365 -Rousseau,KY,41366 -Rowdy,KY,41367 -Saldee,KY,41369 -41370,KY,41370 -Talbert,KY,41377 -Vancleve,KY,41385 -Vincent,KY,41386 -Whick,KY,41390 -41393,KY,41393 -Zachariah,KY,41396 -Zoe,KY,41397 -41401,KY,41401 -Caney,KY,41407 -Carver,KY,41409 -Cottle,KY,41412 -Edna,KY,41419 -Elkfork,KY,41421 -Elsie,KY,41422 -Ezel,KY,41425 -41429,KY,41429 -41431,KY,41431 -Hendricks,KY,41441 -Lenox,KY,41447 -Royalton,KY,41464 -Bethanna,KY,41465 -Seitz,KY,41466 -Blairs Mill,KY,41472 -White Oak,KY,41474 -Broad Bottom,KY,41501 -South Williamson,KY,41503 -Ashcamp,KY,41512 -Belcher,KY,41513 -Belfry,KY,41514 -Canada,KY,41519 -Senterville,KY,41522 -Biggs,KY,41524 -Forest Hills,KY,41527 -Freeburn,KY,41528 -Aflex,KY,41529 -Hardy,KY,41531 -Huddy,KY,41535 -Jamboree,KY,41536 -Payne Gap,KY,41537 -Kimper,KY,41539 -Lick Creek,KY,41540 -Mc Andrews,KY,41543 -Mc Carr,KY,41544 -Mc Combs,KY,41545 -Mc Veigh,KY,41546 -Mouthcard,KY,41548 -Paw Paw,KY,41551 -Phelps,KY,41553 -Phyllis,KY,41554 -Pinsonfork,KY,41555 -Fishtrap,KY,41557 -Regina,KY,41559 -Robinson Creek,KY,41560 -Shelbiana,KY,41562 -Shelby Gap,KY,41563 -Sidney,KY,41564 -Speight,KY,41565 -Steele,KY,41566 -Stone,KY,41567 -Argo,KY,41568 -Turkey Creek,KY,41570 -Varney,KY,41571 -Etty,KY,41572 -Allen,KY,41601 -Auxier,KY,41602 -Banner,KY,41603 -Ligon,KY,41604 -Betsy Layne,KY,41605 -Bevinsville,KY,41606 -Blue River,KY,41607 -Craynor,KY,41614 -Dana,KY,41615 -David,KY,41616 -Eastern,KY,41622 -Endicott,KY,41626 -Estill,KY,41627 -Galveston,KY,41629 -Garrett,KY,41630 -Grethel,KY,41631 -Waldo,KY,41632 -Halo,KY,41633 -Harold,KY,41635 -Buckingham,KY,41636 -Pyrmid,KY,41637 -Honaker,KY,41639 -Elmrock,KY,41640 -Ivel,KY,41642 -Lackey,KY,41643 -Langley,KY,41645 -East Mc Dowell,KY,41647 -41648,KY,41648 -Hite,KY,41649 -Emma,KY,41653 -Printer,KY,41655 -Stanville,KY,41659 -Teaberry,KY,41660 -Wayland,KY,41666 -Darfork,KY,41701 -Ary,KY,41712 -Bear Branch,KY,41714 -Blue Diamond,KY,41719 -Buckhorn,KY,41721 -Tribbey,KY,41722 -Busy,KY,41723 -Carrie,KY,41725 -Chavies,KY,41727 -Cinda,KY,41728 -Combs,KY,41729 -Confluence,KY,41730 -Ulvah,KY,41731 -Cutshin,KY,41732 -Daisy,KY,41733 -Delphia,KY,41735 -Dice,KY,41736 -Bearville,KY,41740 -Fisty,KY,41743 -Gays Creek,KY,41745 -Happy,KY,41746 -Dryhill,KY,41749 -Napfor,KY,41754 -Leatherwood,KY,41756 -Anco,KY,41759 -Scuddy,KY,41760 -Slemp,KY,41763 -Smilax,KY,41764 -Talcum,KY,41765 -Vest,KY,41772 -Vicco,KY,41773 -Farler,KY,41774 -Wendover,KY,41775 -Frew,KY,41776 -Big Rock,KY,41777 -Amburgey,KY,41801 -Carcassonne,KY,41804 -Brinkley,KY,41805 -Crown,KY,41811 -Deane,KY,41812 -Ermine,KY,41815 -Larkslane,KY,41817 -Gilly,KY,41819 -Skyline,KY,41821 -Hindman,KY,41822 -Hollybush,KY,41823 -Isom,KY,41824 -Jackhorn,KY,41825 -Jeremiah,KY,41826 -Puncheon,KY,41828 -Kona,KY,41829 -Soft Shell,KY,41831 -Letcher,KY,41832 -Linefork,KY,41833 -Littcarr,KY,41834 -Mallie,KY,41836 -Millstone,KY,41838 -Mousie,KY,41839 -Fleming Neon,KY,41840 -Omaha,KY,41843 -Raven,KY,41844 -Premium,KY,41845 -Redfox,KY,41847 -Roxana,KY,41848 -Seco,KY,41849 -Thornton,KY,41855 -Day Rural,KY,41858 -Dema,KY,41859 -Raven,KY,41861 -Dry Creek,KY,41862 -Paducah,KY,42001 -Paducah,KY,42003 -Almo,KY,42020 -Arlington,KY,42021 -Bardwell,KY,42023 -Barlow,KY,42024 -Benton,KY,42025 -Boaz,KY,42027 -Burna,KY,42028 -Calvert City,KY,42029 -Clinton,KY,42031 -Columbus,KY,42032 -Cunningham,KY,42035 -Dexter,KY,42036 -Eddyville,KY,42038 -Fancy Farm,KY,42039 -Farmington,KY,42040 -Crutchfield,KY,42041 -Gilbertsville,KY,42044 -Iuka,KY,42045 -Hampton,KY,42047 -Hardin,KY,42048 -Hazel,KY,42049 -Hickman,KY,42050 -Hickory,KY,42051 -Kevil,KY,42053 -Kirksey,KY,42054 -Kuttawa,KY,42055 -La Center,KY,42056 -Ledbetter,KY,42058 -Marion,KY,42064 -Mayfield,KY,42066 -Melber,KY,42069 -Murray,KY,42071 -New Concord,KY,42076 -Salem,KY,42078 -Sedalia,KY,42079 -Carrsville,KY,42081 -Symsonia,KY,42082 -Tiline,KY,42083 -Water Valley,KY,42085 -West Paducah,KY,42086 -Wickliffe,KY,42087 -Wingo,KY,42088 -Plum Springs,KY,42101 -Bowling Green,KY,42103 -Bowling Green,KY,42104 -Adolphus,KY,42120 -Alvaton,KY,42122 -Austin,KY,42123 -Beaumont,KY,42124 -Cave City,KY,42127 -Subtle,KY,42129 -Eighty Eight,KY,42130 -Etoile,KY,42131 -Fountain Run,KY,42133 -Franklin,KY,42134 -Gamaliel,KY,42140 -Glasgow,KY,42141 -Hestand,KY,42151 -Holland,KY,42153 -Knob Lick,KY,42154 -Lamb,KY,42155 -Lucas,KY,42156 -Mount Herman,KY,42157 -Oakland,KY,42159 -Park City,KY,42160 -Rocky Hill,KY,42163 -Scottsville,KY,42164 -Summer Shade,KY,42166 -T Ville,KY,42167 -Willow Shade,KY,42169 -Woodburn,KY,42170 -Smiths Grove,KY,42171 -Adairville,KY,42202 -Allensville,KY,42204 -Auburn,KY,42206 -Bee Spring,KY,42207 -Reedyville,KY,42210 -Golden Pond,KY,42211 -Center,KY,42214 -Cerulean,KY,42215 -Crofton,KY,42217 -Elkton,KY,42220 -Fort Campbell,KY,42223 -Gracey,KY,42232 -Tiny Town,KY,42234 -Herndon,KY,42236 -Hopkinsville,KY,42240 -Huff,KY,42250 -Jetson,KY,42252 -La Fayette,KY,42254 -Lewisburg,KY,42256 -Lindseyville,KY,42257 -Mammoth Cave Nat,KY,42259 -Logansport,KY,42261 -Oak Grove,KY,42262 -Olmstead,KY,42265 -Pembroke,KY,42266 -Quality,KY,42268 -Rochester,KY,42273 -Browning,KY,42274 -Roundhill,KY,42275 -Daysville,KY,42276 -Sharon Grove,KY,42280 -Sunfish,KY,42284 -Kyrock,KY,42285 -Trenton,KY,42286 -Welchs Creek,KY,42287 -Owensboro,KY,42301 -Owensboro,KY,42303 -Beaver Dam,KY,42320 -Beech Creek,KY,42321 -Beechmont,KY,42323 -Belton,KY,42324 -Bremen,KY,42325 -Browder,KY,42326 -Calhoun,KY,42327 -Centertown,KY,42328 -Central City,KY,42330 -Cromwell,KY,42333 -Drakesboro,KY,42337 -Dundee,KY,42338 -Dunmor,KY,42339 -42340,KY,42340 -Fordsville,KY,42343 -Graham,KY,42344 -Greenville,KY,42345 -Hartford,KY,42347 -Hawesville,KY,42348 -Horse Branch,KY,42349 -Island,KY,42350 -Lewisport,KY,42351 -Livermore,KY,42352 -Maceo,KY,42355 -Narrows,KY,42358 -Olaton,KY,42361 -Penrod,KY,42365 -Philpot,KY,42366 -Reynolds Station,KY,42368 -Rockport,KY,42369 -Rumsey,KY,42371 -Sacramento,KY,42372 -Utica,KY,42376 -Whitesville,KY,42378 -Clay,KY,42404 -Corydon,KY,42406 -Dawson Springs,KY,42408 -Dixon,KY,42409 -Earlington,KY,42410 -Fredonia,KY,42411 -Hanson,KY,42413 -Henderson,KY,42420 -Madisonville,KY,42431 -Manitou,KY,42436 -Henshaw,KY,42437 -Nebo,KY,42441 -Nortonville,KY,42442 -Princeton,KY,42445 -Providence,KY,42450 -Reed,KY,42451 -Robards,KY,42452 -Saint Charles,KY,42453 -Sebree,KY,42455 -Slaughters,KY,42456 -Spottsville,KY,42458 -Sturgis,KY,42459 -Uniontown,KY,42461 -Waverly,KY,42462 -White Plains,KY,42464 -Alcalde,KY,42501 -Bethelridge,KY,42516 -Bronston,KY,42518 -Sloans Valley,KY,42519 -Dunnville,KY,42528 -Jabez,KY,42532 -Liberty,KY,42539 -Middleburg,KY,42541 -Pointer,KY,42544 -Science Hill,KY,42553 -Shopville,KY,42554 -Sloans Valley,KY,42555 -Tateville,KY,42558 -Yosemite,KY,42566 -Pulaski,KY,42567 -Aaron,KY,42601 -Albany,KY,42602 -Alpha,KY,42603 -Coopersville,KY,42611 -Delta,KY,42613 -Jamestown,KY,42629 -Pueblo,KY,42633 -Parkers Lake,KY,42634 -Hollyhill,KY,42635 -Revelo,KY,42638 -Rockybranch,KY,42640 -Webbs Cross Road,KY,42642 -Sawyer,KY,42643 -Stearns,KY,42647 -Strunk,KY,42649 -Wiborg,KY,42653 -Windy,KY,42655 -E Town,KY,42701 -Bakerton,KY,42711 -Big Clifty,KY,42712 -Bonnieville,KY,42713 -Bow,KY,42714 -Breeding,KY,42715 -Buffalo,KY,42716 -Burkesville,KY,42717 -Campbellsville,KY,42718 -Caneyville,KY,42721 -Canmer,KY,42722 -Casey Creek,KY,42723 -Stephensburg,KY,42724 -Wax,KY,42726 -Montpelier,KY,42728 -Cub Run,KY,42729 -Cundiff,KY,42730 -Dubre,KY,42731 -E View,KY,42732 -Elk Horn,KY,42733 -Fairplay,KY,42735 -Finley,KY,42736 -Glendale,KY,42740 -Glens Fork,KY,42741 -Gradyville,KY,42742 -Greensburg,KY,42743 -Hardyville,KY,42746 -Hodgenville,KY,42748 -Horse Cave,KY,42749 -Kettle,KY,42752 -Knifley,KY,42753 -Sadler,KY,42754 -Magnolia,KY,42757 -Milltown,KY,42761 -Millwood,KY,42762 -Mount Sherman,KY,42764 -Munfordville,KY,42765 -Peytonsburg,KY,42768 -Sonora,KY,42776 -Summersville,KY,42782 -Upton,KY,42784 -White Mills,KY,42788 -Metairie,LA,70001 -Metairie,LA,70002 -Metairie,LA,70003 -Metairie,LA,70005 -Metairie,LA,70006 -Des Allemands,LA,70030 -Ama,LA,70031 -Arabi,LA,70032 -Barataria,LA,70036 -Belle Chasse,LA,70037 -Boutte,LA,70039 -Braithwaite,LA,70040 -Buras,LA,70041 -Chalmette,LA,70043 -New Sarpy,LA,70047 -Edgard,LA,70049 -Garyville,LA,70051 -Gramercy,LA,70052 -Gretna,LA,70053 -Terrytown,LA,70056 -Hahnville,LA,70057 -Harvey,LA,70058 -Kenner,LA,70062 -Kenner,LA,70065 -Lafitte,LA,70067 -La Place,LA,70068 -Luling,LA,70070 -Lutcher,LA,70071 -Marrero,LA,70072 -Meraux,LA,70075 -Norco,LA,70079 -Paradis,LA,70080 -Port Sulphur,LA,70083 -Reserve,LA,70084 -Saint Bernard,LA,70085 -Saint James,LA,70086 -Saint Rose,LA,70087 -Vacherie,LA,70090 -Venice,LA,70091 -Violet,LA,70092 -Bridge City,LA,70094 -New Orleans,LA,70112 -New Orleans,LA,70113 -New Orleans,LA,70114 -New Orleans,LA,70115 -New Orleans,LA,70116 -New Orleans,LA,70117 -New Orleans,LA,70118 -New Orleans,LA,70119 -Jefferson,LA,70121 -New Orleans,LA,70122 -Harahan,LA,70123 -New Orleans,LA,70124 -New Orleans,LA,70125 -New Orleans,LA,70126 -New Orleans,LA,70127 -New Orleans,LA,70128 -New Orleans,LA,70129 -New Orleans,LA,70130 -New Orleans,LA,70131 -Thibodaux,LA,70301 -Pierre Part,LA,70339 -Amelia,LA,70340 -Belle Rose,LA,70341 -Berwick,LA,70342 -Bourg,LA,70343 -Chauvin,LA,70344 -Cut Off,LA,70345 -Donaldsonville,LA,70346 -Dulac,LA,70353 -Galliano,LA,70354 -Gheens,LA,70355 -Gibson,LA,70356 -Golden Meadow,LA,70357 -Grand Isle,LA,70358 -Gray,LA,70359 -Houma,LA,70360 -Houma,LA,70363 -Houma,LA,70364 -Labadieville,LA,70372 -Lockport,LA,70374 -Mathews,LA,70375 -Montegut,LA,70377 -Morgan City,LA,70380 -Napoleonville,LA,70390 -Patterson,LA,70392 -Raceland,LA,70394 -Schriever,LA,70395 -Theriot,LA,70397 -Hammond,LA,70401 -Hammond,LA,70403 -Abita Springs,LA,70420 -Amite,LA,70422 -Angie,LA,70426 -Bogalusa,LA,70427 -Bush,LA,70431 -Covington,LA,70433 -Fluker,LA,70436 -Folsom,LA,70437 -Franklinton,LA,70438 -Greensburg,LA,70441 -Independence,LA,70443 -Kentwood,LA,70444 -Lacombe,LA,70445 -Loranger,LA,70446 -Madisonville,LA,70447 -Mandeville,LA,70448 -Maurepas,LA,70449 -Mount Hermon,LA,70450 -Pearl River,LA,70452 -Pine Grove,LA,70453 -Ponchatoula,LA,70454 -Robert,LA,70455 -Roseland,LA,70456 -Slidell,LA,70458 -Slidell,LA,70460 -Slidell,LA,70461 -Springfield,LA,70462 -Tickfaw,LA,70466 -Varnado,LA,70467 -Lafayette,LA,70501 -Lafayette,LA,70503 -Lafayette,LA,70506 -Lafayette,LA,70507 -Lafayette,LA,70508 -Forked Island,LA,70510 -Arnaudville,LA,70512 -Baldwin,LA,70514 -Basile,LA,70515 -Branch,LA,70516 -Henderson,LA,70517 -Broussard,LA,70518 -Carencro,LA,70520 -Church Point,LA,70525 -Crowley,LA,70526 -Delcambre,LA,70528 -Duson,LA,70529 -Egan,LA,70531 -Elton,LA,70532 -Erath,LA,70533 -Eunice,LA,70535 -Evangeline,LA,70537 -Franklin,LA,70538 -Gueydan,LA,70542 -Iota,LA,70543 -Jeanerette,LA,70544 -Jennings,LA,70546 -Kaplan,LA,70548 -Lake Arthur,LA,70549 -Loreauville,LA,70552 -Mamou,LA,70554 -Maurice,LA,70555 -Midland,LA,70559 -New Iberia,LA,70560 -Opelousas,LA,70570 -Port Barre,LA,70577 -Rayne,LA,70578 -Roanoke,LA,70581 -Saint Martinvill,LA,70582 -Scott,LA,70583 -Cankton,LA,70584 -Ville Platte,LA,70586 -Washington,LA,70589 -Welsh,LA,70591 -Youngsville,LA,70592 -Lake Charles,LA,70601 -Lake Charles,LA,70605 -Lake Charles,LA,70611 -Bell City,LA,70630 -Cameron,LA,70631 -Creole,LA,70632 -Dequincy,LA,70633 -Deridder,LA,70634 -Dry Creek,LA,70637 -Evans,LA,70639 -Grand Chenier,LA,70643 -Hackberry,LA,70645 -Iowa,LA,70647 -Kinder,LA,70648 -Lacassine,LA,70650 -Longville,LA,70652 -Fields,LA,70653 -Mittie,LA,70654 -Oberlin,LA,70655 -Pitkin,LA,70656 -Ragley,LA,70657 -Reeves,LA,70658 -Singer,LA,70660 -Starks,LA,70661 -Sugartown,LA,70662 -Sulphur,LA,70663 -Vinton,LA,70668 -Westlake,LA,70669 -Addis,LA,70710 -Albany,LA,70711 -Angola,LA,70712 -Baker,LA,70714 -Batchelor,LA,70715 -Blanks,LA,70717 -Brusly,LA,70719 -Bueche,LA,70720 -Point Clair,LA,70721 -Clinton,LA,70722 -Convent,LA,70723 -Darrow,LA,70725 -Port Vincent,LA,70726 -Erwinville,LA,70729 -Ethel,LA,70730 -Fordoche,LA,70732 -French Settlemen,LA,70733 -Geismar,LA,70734 -Glynn,LA,70736 -Gonzales,LA,70737 -Greenwell Spring,LA,70739 -Grosse Tete,LA,70740 -Holden,LA,70744 -The Bluffs,LA,70748 -Jarreau,LA,70749 -Krotz Springs,LA,70750 -Lakeland,LA,70752 -Lettsworth,LA,70753 -Livingston,LA,70754 -Livonia,LA,70755 -Lottie,LA,70756 -Ramah,LA,70757 -Morganza,LA,70759 -New Roads,LA,70760 -Norwood,LA,70761 -Oscar,LA,70762 -Paulina,LA,70763 -Plaquemine,LA,70764 -Port Allen,LA,70767 -Galvez,LA,70769 -Pride,LA,70770 -Rosedale,LA,70772 -Rougon,LA,70773 -Saint Amant,LA,70774 -Bains,LA,70775 -Iberville,LA,70776 -Slaughter,LA,70777 -Sorrento,LA,70778 -Sunshine,LA,70780 -Torbert,LA,70781 -Ventress,LA,70783 -Walker,LA,70785 -White Castle,LA,70788 -Wilson,LA,70789 -Zachary,LA,70791 -Uncle Sam,LA,70792 -Baton Rouge,LA,70801 -Baton Rouge,LA,70802 -Baton Rouge,LA,70805 -Baton Rouge,LA,70806 -Scotlandville,LA,70807 -Baton Rouge,LA,70808 -Baton Rouge,LA,70809 -Baton Rouge,LA,70810 -Greenwood,LA,70811 -Baton Rouge,LA,70812 -Baton Rouge,LA,70814 -Baton Rouge,LA,70815 -Baton Rouge,LA,70816 -Baton Rouge,LA,70817 -Baton Rouge,LA,70818 -Baton Rouge,LA,70819 -Baton Rouge,LA,70820 -Arcadia,LA,71001 -Athens,LA,71003 -Belcher,LA,71004 -Benton,LA,71006 -Bethany,LA,71007 -Bienville,LA,71008 -Castor,LA,71016 -Cotton Valley,LA,71018 -Hanna,LA,71019 -Doyline,LA,71023 -Dubberly,LA,71024 -Frierson,LA,71027 -Gibsland,LA,71028 -Gilliam,LA,71029 -Gloster,LA,71030 -Goldonna,LA,71031 -Grand Cane,LA,71032 -Greenwood,LA,71033 -Hall Summit,LA,71034 -Haughton,LA,71037 -Haynesville,LA,71038 -Heflin,LA,71039 -Homer,LA,71040 -Hosston,LA,71043 -Ida,LA,71044 -Jamestown,LA,71045 -Keatchie,LA,71046 -Keithville,LA,71047 -Lisbon,LA,71048 -Logansport,LA,71049 -Elm Grove,LA,71051 -Mansfield,LA,71052 -Minden,LA,71055 -Mira,LA,71059 -Mooringsport,LA,71060 -Oil City,LA,71061 -Pelican,LA,71063 -Plain Dealing,LA,71064 -Pleasant Hill,LA,71065 -Princeton,LA,71067 -Ringgold,LA,71068 -Rodessa,LA,71069 -Chestnut,LA,71070 -Sarepta,LA,71071 -Shongaloo,LA,71072 -Sibley,LA,71073 -Springhill,LA,71075 -Stonewall,LA,71078 -Summerfield,LA,71079 -Trees,LA,71082 -Shreveport,LA,71101 -Shreveport,LA,71103 -Shreveport,LA,71104 -Shreveport,LA,71105 -Forbing,LA,71106 -Dixie,LA,71107 -Shreveport,LA,71108 -Shreveport,LA,71109 -Barksdale A F B,LA,71110 -Bossier City,LA,71111 -Bossier City,LA,71112 -Caspiana,LA,71115 -Shreveport,LA,71118 -Shreveport,LA,71119 -Shreveport,LA,71129 -Monroe,LA,71201 -Richwood,LA,71202 -Monroe,LA,71203 -Baskin,LA,71219 -Bastrop,LA,71220 -Bernice,LA,71222 -Bonita,LA,71223 -Calhoun,LA,71225 -Chatham,LA,71226 -Choudrant,LA,71227 -Collinston,LA,71229 -Warden,LA,71232 -Downsville,LA,71234 -Dubach,LA,71235 -Epps,LA,71237 -Eros,LA,71238 -Extension,LA,71239 -Farmerville,LA,71241 -Fort Necessity,LA,71243 -Grambling,LA,71245 -Jones,LA,71250 -Jonesboro,LA,71251 -Lake Providence,LA,71254 -Lillie,LA,71256 -Mangham,LA,71259 -Linville,LA,71260 -Mer Rouge,LA,71261 -Terry,LA,71263 -Oak Ridge,LA,71264 -Pioneer,LA,71266 -Quitman,LA,71268 -Alto,LA,71269 -Ruston,LA,71270 -Simsboro,LA,71275 -Sondheimer,LA,71276 -Spearsville,LA,71277 -Spencer,LA,71280 -Mound,LA,71282 -Transylvania,LA,71286 -West Monroe,LA,71291 -West Monroe,LA,71292 -Winnsboro,LA,71295 -Alexandria,LA,71301 -Alexandria,LA,71302 -Alexandria,LA,71303 -Acme,LA,71316 -Big Bend,LA,71318 -Eola,LA,71322 -Center Point,LA,71323 -Cheneyville,LA,71325 -Clayton,LA,71326 -Cottonport,LA,71327 -Buckeye,LA,71328 -Vick,LA,71331 -Goudeau,LA,71333 -Frogmore,LA,71334 -Gilbert,LA,71336 -Hamburg,LA,71339 -Harrisonburg,LA,71340 -Hessmer,LA,71341 -Jena,LA,71342 -Larto,LA,71343 -71344,LA,71344 -Lecompte,LA,71346 -Mansura,LA,71350 -Marksville,LA,71351 -Melville,LA,71353 -Monterey,LA,71354 -Moreauville,LA,71355 -Le Moyen,LA,71356 -Newellton,LA,71357 -Palmetto,LA,71358 -Kolin,LA,71360 -Plaucheville,LA,71362 -Saint Joseph,LA,71366 -Saint Landry,LA,71367 -Sicily Island,LA,71368 -Simmesport,LA,71369 -Trout,LA,71371 -71372,LA,71372 -Vidalia,LA,71373 -Waterproof,LA,71375 -Wisner,LA,71378 -Aimwell,LA,71401 -Anacoco,LA,71403 -Atlanta,LA,71404 -Belmont,LA,71406 -Bentley,LA,71407 -Boyce,LA,71409 -Campti,LA,71411 -Chopin,LA,71412 -Derry,LA,71416 -Colfax,LA,71417 -Hebert,LA,71418 -Mitchell,LA,71419 -71421,LA,71421 -Dodson,LA,71422 -Dry Prong,LA,71423 -Elmer,LA,71424 -Enterprise,LA,71425 -Fisher,LA,71426 -Flatwoods,LA,71427 -Florien,LA,71429 -Forest Hill,LA,71430 -Georgetown,LA,71432 -Calcasieu,LA,71433 -Grayson,LA,71435 -71436,LA,71436 -Leander,LA,71438 -Hornbeck,LA,71439 -Kelly,LA,71441 -Lacamp,LA,71444 -71445,LA,71445 -Hicks,LA,71446 -Chopin,LA,71447 -Many,LA,71449 -Marthaville,LA,71450 -Melder,LA,71451 -Montgomery,LA,71454 -Clifton,LA,71455 -Natchez,LA,71456 -Natchitoches,LA,71457 -Fort Polk,LA,71459 -Newllano,LA,71461 -Noble,LA,71462 -Oakdale,LA,71463 -Olla,LA,71465 -Otis,LA,71466 -Pollock,LA,71467 -Provencal,LA,71468 -Robeline,LA,71469 -Sieper,LA,71472 -Sikes,LA,71473 -Tioga,LA,71477 -Tullos,LA,71479 -Winnfield,LA,71483 -Woodworth,LA,71485 -Zwolle,LA,71486 -Berwick,ME,3901 -Cape Neddick,ME,3902 -Eliot,ME,3903 -Kittery,ME,3904 -Kittery Point,ME,3905 -North Berwick,ME,3906 -Ogunquit,ME,3907 -South Berwick,ME,3908 -York,ME,3909 -Acton,ME,4001 -Alfred,ME,4002 -Bailey Island,ME,4003 -Arundel,ME,4005 -Biddeford Pool,ME,4006 -Bowdoinham,ME,4008 -Bridgton,ME,4009 -Brownfield,ME,4010 -Birch Island,ME,4011 -Bustins Island,ME,4013 -Casco,ME,4015 -Center Lovell,ME,4016 -Chebeague Island,ME,4017 -Cliff Island,ME,4019 -Cornish,ME,4020 -Cumberland Cente,ME,4021 -Denmark,ME,4022 -East Baldwin,ME,4024 -West Lebanon,ME,4027 -North Sebago,ME,4029 -East Waterboro,ME,4030 -Freeport,ME,4032 -Fryeburg,ME,4037 -Gorham,ME,4038 -Gray,ME,4039 -Harrison,ME,4040 -Hiram,ME,4041 -Hollis Center,ME,4042 -Kennebunk,ME,4043 -Kennebunkport,ME,4046 -Kezar Falls,ME,4047 -Limerick,ME,4048 -Limington,ME,4049 -Long Island,ME,4050 -Lovell,ME,4051 -Merepoint,ME,4053 -Naples,ME,4055 -North Fryeburg,ME,4058 -North Shapleigh,ME,4060 -North Waterboro,ME,4061 -Windham,ME,4062 -Old Orchard Beac,ME,4064 -Orrs Island,ME,4066 -Porter,ME,4068 -Pownal,ME,4069 -Raymond,ME,4071 -Saco,ME,4072 -Sanford,ME,4073 -Scarborough,ME,4074 -Sebago Lake,ME,4075 -Shapleigh,ME,4076 -South Casco,ME,4077 -South Harpswell,ME,4079 -South Waterford,ME,4081 -Springvale,ME,4083 -Standish,ME,4084 -Steep Falls,ME,4085 -Pejepscot,ME,4086 -Waterboro,ME,4087 -Wells,ME,4090 -West Baldwin,ME,4091 -Westbrook,ME,4092 -West Buxton,ME,4093 -Maplewood,ME,4095 -Yarmouth,ME,4096 -Portland,ME,4101 -Portland,ME,4102 -Portland,ME,4103 -Falmouth,ME,4105 -South Portland,ME,4106 -Cape Elizabeth,ME,4107 -Peaks Island,ME,4108 -Cushing Island,ME,4109 -Cumberland Fores,ME,4110 -Auburn,ME,4210 -Andover,ME,4216 -Bethel,ME,4217 -Bryant Pond,ME,4219 -Buckfield,ME,4220 -Canton,ME,4221 -Danville,ME,4223 -Dixfield,ME,4224 -Dryden,ME,4225 -East Andover,ME,4226 -East Livermore,ME,4228 -East Stoneham,ME,4231 -Frye,ME,4235 -Greene,ME,4236 -Hanover,ME,4237 -Hebron,ME,4238 -Jay,ME,4239 -Lewiston,ME,4240 -Lisbon,ME,4250 -Lisbon Falls,ME,4252 -Livermore Falls,ME,4254 -Mechanic Falls,ME,4256 -Mexico,ME,4257 -Monmouth,ME,4259 -New Gloucester,ME,4260 -Newry,ME,4261 -Leeds,ME,4263 -North Monmouth,ME,4265 -North Turner,ME,4266 -North Waterford,ME,4267 -Norway,ME,4268 -Oxford,ME,4270 -Poland,ME,4273 -Poland Spring,ME,4274 -Roxbury,ME,4275 -Rumford,ME,4276 -Rumford Center,ME,4278 -Rumford Point,ME,4279 -Sabattus,ME,4280 -South Paris,ME,4281 -Turner,ME,4282 -Wayne,ME,4284 -Weld,ME,4285 -West Paris,ME,4289 -Peru,ME,4290 -West Poland,ME,4291 -West Sumner,ME,4292 -Wilton,ME,4294 -Augusta,ME,4330 -Coopers Mills,ME,4341 -Dresden,ME,4342 -Farmingdale,ME,4344 -Gardiner,ME,4345 -Randolph,ME,4346 -Hallowell,ME,4347 -Jefferson,ME,4348 -Kents Hill,ME,4349 -Litchfield,ME,4350 -Manchester,ME,4351 -Mount Vernon,ME,4352 -North Whitefield,ME,4353 -Palermo,ME,4354 -Readfield,ME,4355 -Richmond,ME,4357 -South China,ME,4358 -Weeks Mills,ME,4361 -Windsor,ME,4363 -Winthrop,ME,4364 -Bangor,ME,4401 -Abbot Village,ME,4406 -Aurora,ME,4408 -Bradford,ME,4410 -Bradley,ME,4411 -Brewer,ME,4412 -Brookton,ME,4413 -Brownville,ME,4414 -Bucksport,ME,4416 -Burlington,ME,4417 -Cardville,ME,4418 -Carmel,ME,4419 -Charleston,ME,4422 -Costigan,ME,4423 -Danforth,ME,4424 -Dover Foxcroft,ME,4426 -East Corinth,ME,4427 -East Eddington,ME,4428 -East Holden,ME,4429 -East Millinocket,ME,4430 -East Orland,ME,4431 -Enfield,ME,4433 -Etna,ME,4434 -Exeter,ME,4435 -Frankfort,ME,4438 -Greenville,ME,4441 -Greenville Junct,ME,4442 -Guilford,ME,4443 -Hampden,ME,4444 -Haynesville,ME,4446 -Seboeis,ME,4448 -Hudson,ME,4449 -Kenduskeag,ME,4450 -Kingman,ME,4451 -Lagrange,ME,4453 -Lee,ME,4455 -Levant,ME,4456 -Lincoln,ME,4457 -Lincoln Center,ME,4458 -Mattawamkeag,ME,4459 -Medway,ME,4460 -Milford,ME,4461 -Millinocket,ME,4462 -Derby,ME,4463 -Monson,ME,4464 -4465,ME,4465 -Old Town,ME,4468 -North Amity,ME,4471 -Orland,ME,4472 -Orono,ME,4473 -Orrington,ME,4474 -Passadumkeag,ME,4475 -Penobscot,ME,4476 -Rockwood,ME,4478 -Sangerville,ME,4479 -Springfield,ME,4487 -Stetson,ME,4488 -Topsfield,ME,4490 -Vanceboro,ME,4491 -Waite,ME,4492 -Winn,ME,4495 -Winterport,ME,4496 -Wytopitlock,ME,4497 -Bath,ME,4530 -Boothbay,ME,4537 -Capitol Island,ME,4538 -Bristol,ME,4539 -Chamberlain,ME,4541 -Damariscotta,ME,4543 -East Boothbay,ME,4544 -Friendship,ME,4547 -Mac Mahan,ME,4548 -Medomak,ME,4551 -Newcastle,ME,4553 -New Harbor,ME,4554 -Nobleboro,ME,4555 -Edgecomb,ME,4556 -Pemaquid,ME,4558 -Phippsburg,ME,4562 -Cushing,ME,4563 -Round Pond,ME,4564 -Sebasco Estates,ME,4565 -Small Point,ME,4567 -South Bristol,ME,4568 -Squirrel Island,ME,4570 -Trevett,ME,4571 -Waldoboro,ME,4572 -Walpole,ME,4573 -Washington,ME,4574 -West Southport,ME,4576 -Wiscasset,ME,4578 -Woolwich,ME,4579 -Ellsworth,ME,4605 -Addison,ME,4606 -Gouldsboro,ME,4607 -Bar Harbor,ME,4609 -Beals,ME,4611 -Bernard,ME,4612 -Birch Harbor,ME,4613 -Blue Hill,ME,4614 -Blue Hill Falls,ME,4615 -Brooklin,ME,4616 -Brooksville,ME,4617 -Bucks Harbor,ME,4618 -Calais,ME,4619 -Cherryfield,ME,4622 -Columbia Falls,ME,4623 -Corea,ME,4624 -Cutler,ME,4626 -Deer Isle,ME,4627 -Dennysville,ME,4628 -East Machias,ME,4630 -Eastport,ME,4631 -Franklin,ME,4634 -Hancock,ME,4640 -Harborside,ME,4642 -Harrington,ME,4643 -Isle Au Haut,ME,4645 -Jonesboro,ME,4648 -Jonesport,ME,4649 -Little Deer Isle,ME,4650 -Lubec,ME,4652 -Bass Harbor,ME,4653 -Machias,ME,4654 -Machiasport,ME,4655 -Manset,ME,4656 -Meddybemps,ME,4657 -Milbridge,ME,4658 -Mount Desert,ME,4660 -North Brooklin,ME,4661 -Pembroke,ME,4666 -Perry,ME,4667 -Princeton,ME,4668 -Prospect Harbor,ME,4669 -Robbinston,ME,4671 -Sargentville,ME,4673 -Sedgwick,ME,4676 -Sorrento,ME,4677 -South Gouldsboro,ME,4678 -Southwest Harbor,ME,4679 -Steuben,ME,4680 -Stonington,ME,4681 -Sunset,ME,4683 -Surry,ME,4684 -4689,ME,4689 -West Tremont,ME,4690 -Winter Harbor,ME,4693 -Woodland,ME,4694 -Houlton,ME,4730 -Ashland,ME,4732 -Benedicta,ME,4733 -Bridgewater,ME,4735 -Caribou,ME,4736 -Clayton Lake,ME,4737 -Easton,ME,4740 -Fort Fairfield,ME,4742 -Fort Kent,ME,4743 -Grand Isle,ME,4746 -Island Falls,ME,4747 -Lille,ME,4749 -Limestone,ME,4750 -Loring Afb,ME,4751 -Madawaska,ME,4756 -Mapleton,ME,4757 -Mars Hill,ME,4758 -Monticello,ME,4760 -New Sweden,ME,4762 -Oakfield,ME,4763 -Oxbow,ME,4764 -Patten,ME,4765 -Portage,ME,4768 -Presque Isle,ME,4769 -Saint Agatha,ME,4772 -Saint David,ME,4773 -Saint Francis,ME,4774 -Sherman Mills,ME,4776 -Sherman Station,ME,4777 -Sinclair,ME,4779 -Smyrna Mills,ME,4780 -Soldier Pond,ME,4781 -Stockholm,ME,4783 -Van Buren,ME,4785 -Washburn,ME,4786 -Westfield,ME,4787 -Rockland,ME,4841 -Camden,ME,4843 -Hope,ME,4847 -Islesboro,ME,4848 -Lincolnville,ME,4849 -Monhegan,ME,4852 -North Haven,ME,4853 -Owls Head,ME,4854 -Rockport,ME,4856 -Saint George,ME,4857 -South Thomaston,ME,4858 -Spruce Head,ME,4859 -Tenants Harbor,ME,4860 -Thomaston,ME,4861 -Union,ME,4862 -Vinalhaven,ME,4863 -Warren,ME,4864 -West Rockport,ME,4865 -Winslow,ME,4901 -Albion,ME,4910 -Anson,ME,4911 -Athens,ME,4912 -Belfast,ME,4915 -Belgrade,ME,4917 -Belgrade Lakes,ME,4918 -Bingham,ME,4920 -Brooks,ME,4921 -Burnham,ME,4922 -Cambridge,ME,4923 -Canaan,ME,4924 -Caratunk,ME,4925 -Clinton,ME,4927 -Corinna,ME,4928 -Detroit,ME,4929 -Dexter,ME,4930 -Dixmont,ME,4932 -Eustis,ME,4936 -Benton Station,ME,4937 -Farmington,ME,4938 -Freedom,ME,4941 -Wellington,ME,4942 -Hartland,ME,4943 -Jackman,ME,4945 -Kingfield,ME,4947 -Liberty,ME,4949 -Madison,ME,4950 -Monroe,ME,4951 -Morrill,ME,4952 -Newport,ME,4953 -New Portland,ME,4954 -New Sharon,ME,4955 -New Vineyard,ME,4956 -Norridgewock,ME,4957 -North Anson,ME,4958 -North New Portla,ME,4961 -North Vassalboro,ME,4962 -Oakland,ME,4963 -Palmyra,ME,4965 -Phillips,ME,4966 -Pittsfield,ME,4967 -Plymouth,ME,4969 -Rangeley,ME,4970 -Saint Albans,ME,4971 -Searsmont,ME,4973 -Searsport,ME,4974 -Skowhegan,ME,4976 -Smithfield,ME,4978 -Solon,ME,4979 -Stockton Springs,ME,4981 -Stratton,ME,4982 -Strong,ME,4983 -Temple,ME,4984 -West Forks,ME,4985 -Thorndike,ME,4986 -Troy,ME,4987 -Unity,ME,4988 -Vassalboro,ME,4989 -Andrews Afb,MD,20331 -Waldorf,MD,20601 -Saint Charles,MD,20602 -Saint Charles,MD,20603 -Abell,MD,20606 -Accokeek,MD,20607 -Aquasco,MD,20608 -Avenue,MD,20609 -Bel Alton,MD,20611 -Brandywine,MD,20613 -Broomes Island,MD,20615 -Bryans Road,MD,20616 -Bryantown,MD,20617 -Bushwood,MD,20618 -California,MD,20619 -Callaway,MD,20620 -Maddox,MD,20621 -Charlotte Hall,MD,20622 -Cheltenham,MD,20623 -Clements,MD,20624 -Coltons Point,MD,20626 -Dameron,MD,20628 -Drayden,MD,20630 -Faulkner,MD,20632 -Great Mills,MD,20634 -Hollywood,MD,20636 -Hughesville,MD,20637 -Huntingtown,MD,20639 -Pisgah,MD,20640 -Issue,MD,20645 -La Plata,MD,20646 -Leonardtown,MD,20650 -Lexington Park,MD,20653 -Loveville,MD,20656 -Lusby,MD,20657 -Rison,MD,20658 -Mechanicsville,MD,20659 -Nanjemoy,MD,20662 -Newburg,MD,20664 -Park Hall,MD,20667 -Patuxent River,MD,20670 -Piney Point,MD,20674 -Pomfret,MD,20675 -Port Republic,MD,20676 -Port Tobacco,MD,20677 -Prince Frederick,MD,20678 -Ridge,MD,20680 -Saint Inigoes,MD,20684 -Saint Leonard,MD,20685 -Scotland,MD,20687 -Solomons,MD,20688 -Sunderland,MD,20689 -Tall Timbers,MD,20690 -Valley Lee,MD,20692 -Welcome,MD,20693 -White Plains,MD,20695 -Annapolis Juncti,MD,20701 -Beltsville,MD,20705 -Lanham,MD,20706 -Laurel,MD,20707 -Montpelier,MD,20708 -Bladensburg,MD,20710 -Lothian,MD,20711 -Mount Rainier,MD,20712 -North Beach,MD,20714 -Bowie,MD,20715 -Mitchellville,MD,20716 -Bowie,MD,20720 -Mitchellville,MD,20721 -Brentwood,MD,20722 -Laurel,MD,20723 -Laurel,MD,20724 -Chesapeake Beach,MD,20732 -Churchton,MD,20733 -Clinton,MD,20735 -Owings,MD,20736 -Riverdale,MD,20737 -College Park,MD,20740 -Capital Heights,MD,20743 -Fort Washington,MD,20744 -Oxon Hill,MD,20745 -Suitland,MD,20746 -District Heights,MD,20747 -Temple Hills,MD,20748 -Deale,MD,20751 -Dunkirk,MD,20754 -Fort George G Me,MD,20755 -Friendship,MD,20758 -Fulton,MD,20759 -Savage,MD,20763 -Shady Side,MD,20764 -Glenn Dale,MD,20769 -Greenbelt,MD,20770 -Upper Marlboro,MD,20772 -Harwood,MD,20776 -Highland,MD,20777 -West River,MD,20778 -Tracys Landing,MD,20779 -Hyattsville,MD,20781 -West Hyattsville,MD,20782 -Adelphi,MD,20783 -Landover Hills,MD,20784 -Landover,MD,20785 -Jessup,MD,20794 -Glen Echo,MD,20812 -Bethesda,MD,20814 -Chevy Chase,MD,20815 -Bethesda,MD,20816 -West Bethesda,MD,20817 -Cabin John,MD,20818 -Olney,MD,20832 -Brookeville,MD,20833 -Poolesville,MD,20837 -Barnesville,MD,20838 -Beallsville,MD,20839 -Boyds,MD,20841 -Dickerson,MD,20842 -Rockville,MD,20850 -Rockville,MD,20851 -Rockville,MD,20852 -Rockville,MD,20853 -Potomac,MD,20854 -Derwood,MD,20855 -Sandy Spring,MD,20860 -Ashton,MD,20861 -Brinklow,MD,20862 -Burtonsville,MD,20866 -Spencerville,MD,20868 -Clarksburg,MD,20871 -Damascus,MD,20872 -Darnestown,MD,20874 -Germantown,MD,20876 -Gaithersburg,MD,20877 -Darnestown,MD,20878 -Laytonsville,MD,20879 -Laytonsville,MD,20882 -Kensington,MD,20895 -Silver Spring,MD,20901 -Wheaton,MD,20902 -Silver Spring,MD,20903 -Colesville,MD,20904 -Colesville,MD,20905 -Aspen Hill,MD,20906 -Silver Spring,MD,20910 -Takoma Park,MD,20912 -Aberdeen,MD,21001 -Aberdeen Proving,MD,21005 -Abingdon,MD,21009 -Gunpowder,MD,21010 -Arnold,MD,21012 -Baldwin,MD,21013 -Bel Air,MD,21014 -Bel Air,MD,21015 -Belcamp,MD,21017 -Bradshaw,MD,21021 -Churchville,MD,21028 -Clarksville,MD,21029 -Cockeysville Hun,MD,21030 -Cockeysville Hun,MD,21031 -Crownsville,MD,21032 -Darlington,MD,21034 -Davidsonville,MD,21035 -Dayton,MD,21036 -Edgewater Beach,MD,21037 -Edgewood,MD,21040 -Ellicott City,MD,21042 -Daniels,MD,21043 -Columbia,MD,21044 -Columbia,MD,21045 -Columbia,MD,21046 -Fallston,MD,21047 -Patapsco,MD,21048 -Forest Hill,MD,21050 -Fork,MD,21051 -Freeland,MD,21053 -Gambrills,MD,21054 -Gibson Island,MD,21056 -Glen Arm,MD,21057 -Glen Burnie,MD,21061 -Glyndon,MD,21071 -Greenmount,MD,21074 -Hanover,MD,21076 -Havre De Grace,MD,21078 -Hydes,MD,21082 -Jarrettsville,MD,21084 -Joppa,MD,21085 -Kingsville,MD,21087 -Lineboro,MD,21088 -Linthicum Height,MD,21090 -Lutherville,MD,21093 -Manchester,MD,21102 -Marriottsville,MD,21104 -Millers,MD,21107 -Millersville,MD,21108 -Hereford,MD,21111 -Odenton,MD,21113 -Crofton,MD,21114 -Owings Mills,MD,21117 -Bentley Springs,MD,21120 -Riviera Beach,MD,21122 -Perry Hall,MD,21128 -Jacksonville,MD,21131 -Pylesville,MD,21132 -Randallstown,MD,21133 -Reisterstown,MD,21136 -Riva,MD,21140 -Severn,MD,21144 -Severna Park,MD,21146 -Glencoe,MD,21152 -Rocks,MD,21154 -Fowbelsburg,MD,21155 -Upper Falls,MD,21156 -Carrollton,MD,21157 -Uniontown,MD,21158 -Whiteford,MD,21160 -White Hall,MD,21161 -White Marsh,MD,21162 -Granite,MD,21163 -Baltimore,MD,21201 -Baltimore,MD,21202 -Eudowood,MD,21204 -Baltimore,MD,21205 -Baltimore,MD,21206 -Gwynn Oak,MD,21207 -Pikesville,MD,21208 -Baltimore,MD,21209 -Baltimore,MD,21210 -Baltimore,MD,21211 -Baltimore,MD,21212 -Baltimore,MD,21213 -Baltimore,MD,21214 -Baltimore,MD,21215 -Baltimore,MD,21216 -Baltimore,MD,21217 -Baltimore,MD,21218 -Dundalk Sparrows,MD,21219 -Middle River,MD,21220 -Essex,MD,21221 -Dundalk Sparrows,MD,21222 -Baltimore,MD,21223 -Baltimore,MD,21224 -Brooklyn Curtis,MD,21225 -Brooklyn Curtis,MD,21226 -Halethorpe,MD,21227 -Catonsville,MD,21228 -Baltimore,MD,21229 -Baltimore,MD,21230 -Baltimore,MD,21231 -Parkville,MD,21234 -Nottingham,MD,21236 -Rosedale,MD,21237 -Baltimore,MD,21239 -Baltimore,MD,21240 -Cape Saint Clair,MD,21401 -Naval Academy,MD,21402 -Annapolis,MD,21403 -Cresaptown,MD,21502 -Accident,MD,21520 -Barton,MD,21521 -Bittinger,MD,21522 -Bloomington,MD,21523 -Flintstone,MD,21530 -Friendsville,MD,21531 -Frostburg,MD,21532 -Jennings,MD,21536 -Shallmar,MD,21538 -Lonaconing,MD,21539 -Luke,MD,21540 -Sang Run,MD,21541 -Mount Savage,MD,21545 -Deer Park,MD,21550 -Oldtown,MD,21555 -Rawlings,MD,21557 -Swanton,MD,21561 -Mccoole,MD,21562 -Easton,MD,21601 -Barclay,MD,21607 -Betterton,MD,21610 -Bozman,MD,21612 -Cambridge,MD,21613 -Centreville,MD,21617 -Chester,MD,21619 -Chestertown,MD,21620 -Church Creek,MD,21622 -Church Hill,MD,21623 -Cordova,MD,21625 -Crapo,MD,21626 -Crumpton,MD,21628 -Denton,MD,21629 -East New Market,MD,21631 -Federalsburg,MD,21632 -Fishing Creek,MD,21634 -Galena,MD,21635 -Goldsboro,MD,21636 -Golts,MD,21637 -Grasonville,MD,21638 -Greensboro,MD,21639 -Henderson,MD,21640 -Williamsburg,MD,21643 -Ingleside,MD,21644 -Kennedyville,MD,21645 -Mcdaniel,MD,21647 -Marydel,MD,21649 -Massey,MD,21650 -Millington,MD,21651 -Oxford,MD,21654 -Preston,MD,21655 -Queen Anne,MD,21657 -Queenstown,MD,21658 -Rhodesdale,MD,21659 -Ridgely,MD,21660 -Rock Hall,MD,21661 -Royal Oak,MD,21662 -Saint Michaels,MD,21663 -Sherwood,MD,21665 -Stevensville,MD,21666 -Still Pond,MD,21667 -Sudlersville,MD,21668 -Taylors Island,MD,21669 -Tilghman,MD,21671 -Toddville,MD,21672 -Trappe,MD,21673 -Wingate,MD,21675 -Wittman,MD,21676 -Woolford,MD,21677 -Worton,MD,21678 -Wye Mills,MD,21679 -Lewistown,MD,21701 -Fort Detrick,MD,21702 -Doubs,MD,21710 -Big Pool,MD,21711 -Fahrney Keedy Me,MD,21713 -Brunswick,MD,21716 -Burkittsville,MD,21718 -Fort Ritchie,MD,21719 -Big Spring,MD,21722 -Cooksville,MD,21723 -Detour,MD,21725 -Emmitsburg,MD,21727 -Fair Play,MD,21733 -Glenelg,MD,21737 -Glenwood,MD,21738 -Hagerstown,MD,21740 -Hagerstown,MD,21742 -Hancock,MD,21750 -Ijamsville,MD,21754 -Jefferson,MD,21755 -Keedysville,MD,21756 -Keymar,MD,21757 -Knoxville,MD,21758 -Linwood,MD,21764 -Little Orleans,MD,21766 -Maugansville,MD,21767 -Middletown,MD,21769 -Monrovia,MD,21770 -Mount Airy,MD,21771 -Myersville,MD,21773 -New Windsor,MD,21776 -Point Of Rocks,MD,21777 -Rocky Ridge,MD,21778 -Rohrersville,MD,21779 -Sabillasville,MD,21780 -Sharpsburg,MD,21782 -Smithsburg,MD,21783 -Carrolltowne,MD,21784 -Taneytown,MD,21787 -Graceham,MD,21788 -Tuscarora,MD,21790 -Unionville,MD,21791 -Walkersville,MD,21793 -West Friendship,MD,21794 -Williamsport,MD,21795 -Woodbine,MD,21797 -Woodsboro,MD,21798 -Salisbury,MD,21801 -Berlin,MD,21811 -Bishopville,MD,21813 -Bivalve,MD,21814 -Chance,MD,21816 -Crisfield,MD,21817 -Dames Quarter,MD,21820 -Deal Island,MD,21821 -Eden,MD,21822 -Ewell,MD,21824 -Fruitland,MD,21826 -Girdletree,MD,21829 -Hebron,MD,21830 -Linkwood,MD,21835 -Mardela Springs,MD,21837 -Marion Station,MD,21838 -Nanticoke,MD,21840 -Newark,MD,21841 -Ocean City,MD,21842 -Parsonsburg,MD,21849 -Pittsville,MD,21850 -Pocomoke City,MD,21851 -Princess Anne,MD,21853 -Quantico,MD,21856 -21858,MD,21858 -Snow Hill,MD,21863 -Stockton,MD,21864 -Tyaskin,MD,21865 -Tylerton,MD,21866 -Vienna,MD,21869 -Wenona,MD,21870 -Westover,MD,21871 -Whaleysville,MD,21872 -Willards,MD,21874 -Delmar,MD,21875 -North East,MD,21901 -Perryville,MD,21903 -Bainbridge,MD,21904 -Rising Sun,MD,21911 -Warwick,MD,21912 -Cecilton,MD,21913 -Charlestown,MD,21914 -Chesapeake City,MD,21915 -Colora,MD,21917 -Conowingo,MD,21918 -Earleville,MD,21919 -Elkton,MD,21921 -Agawam,MA,1001 -Cushman,MA,1002 -Barre,MA,1005 -Belchertown,MA,1007 -Blandford,MA,1008 -Brimfield,MA,1010 -Chester,MA,1011 -Chesterfield,MA,1012 -Chicopee,MA,1013 -Chicopee,MA,1020 -Westover Afb,MA,1022 -Cummington,MA,1026 -Mount Tom,MA,1027 -East Longmeadow,MA,1028 -Feeding Hills,MA,1030 -Gilbertville,MA,1031 -Goshen,MA,1032 -Granby,MA,1033 -Tolland,MA,1034 -Hadley,MA,1035 -Hampden,MA,1036 -Hatfield,MA,1038 -Haydenville,MA,1039 -Holyoke,MA,1040 -Huntington,MA,1050 -Leeds,MA,1053 -Leverett,MA,1054 -Ludlow,MA,1056 -Monson,MA,1057 -Florence,MA,1060 -Oakham,MA,1068 -Palmer,MA,1069 -Plainfield,MA,1070 -Russell,MA,1071 -Shutesbury,MA,1072 -Southampton,MA,1073 -South Hadley,MA,1075 -Southwick,MA,1077 -Three Rivers,MA,1080 -Wales,MA,1081 -Ware,MA,1082 -Montgomery,MA,1085 -West Springfield,MA,1089 -West Warren,MA,1092 -Wilbraham,MA,1095 -Williamsburg,MA,1096 -Worthington,MA,1098 -Springfield,MA,1103 -Springfield,MA,1104 -Springfield,MA,1105 -Longmeadow,MA,1106 -Springfield,MA,1107 -Springfield,MA,1108 -Springfield,MA,1109 -Springfield,MA,1118 -Springfield,MA,1119 -Springfield,MA,1128 -Springfield,MA,1129 -Indian Orchard,MA,1151 -Pittsfield,MA,1201 -Adams,MA,1220 -Ashley Falls,MA,1222 -Becket,MA,1223 -Cheshire,MA,1225 -Dalton,MA,1226 -Great Barrington,MA,1230 -Peru,MA,1235 -Housatonic,MA,1236 -Hancock,MA,1237 -Lee,MA,1238 -Lenox,MA,1240 -Middlefield,MA,1243 -West Otis,MA,1245 -Clarksburg,MA,1247 -Otis,MA,1253 -Richmond,MA,1254 -Sandisfield,MA,1255 -Savoy,MA,1256 -Sheffield,MA,1257 -South Egremont,MA,1258 -Southfield,MA,1259 -Stockbridge,MA,1262 -West Stockbridge,MA,1266 -Williamstown,MA,1267 -Windsor,MA,1270 -Leyden,MA,1301 -Ashfield,MA,1330 -New Salem,MA,1331 -Leyden,MA,1337 -Buckland,MA,1338 -Hawley,MA,1339 -Colrain,MA,1340 -Conway,MA,1341 -Deerfield,MA,1342 -Erving,MA,1344 -Heath,MA,1346 -Millers Falls,MA,1349 -Monroe,MA,1350 -Montague,MA,1351 -New Salem,MA,1355 -Northfield,MA,1360 -New Salem,MA,1364 -Petersham,MA,1366 -Rowe,MA,1367 -Shelburne Falls,MA,1370 -South Deerfield,MA,1373 -Sunderland,MA,1375 -Turners Falls,MA,1376 -Wendell,MA,1379 -Fitchburg,MA,1420 -Ashburnham,MA,1430 -Ashby,MA,1431 -Ayer,MA,1432 -Ft Devens,MA,1433 -Baldwinville,MA,1436 -Gardner,MA,1440 -Groton,MA,1450 -Harvard,MA,1451 -Hubbardston,MA,1452 -Leominster,MA,1453 -Littleton,MA,1460 -Lunenburg,MA,1462 -Pepperell,MA,1463 -Shirley Center,MA,1464 -Templeton,MA,1468 -Townsend,MA,1469 -Westminster,MA,1473 -W Townsend,MA,1474 -Winchendon,MA,1475 -Auburn,MA,1501 -Berlin,MA,1503 -Blackstone,MA,1504 -Boylston,MA,1505 -Brookfield,MA,1506 -Charlton,MA,1507 -Clinton,MA,1510 -East Brookfield,MA,1515 -East Douglas,MA,1516 -Fiskdale,MA,1518 -Grafton,MA,1519 -Holden,MA,1520 -Holland,MA,1521 -Jefferson,MA,1522 -Lancaster,MA,1523 -Leicester,MA,1524 -Millbury,MA,1527 -Millville,MA,1529 -New Braintree,MA,1531 -Northborough,MA,1532 -Northbridge,MA,1534 -North Brookfield,MA,1535 -North Grafton,MA,1536 -North Oxford,MA,1537 -Oxford,MA,1540 -Princeton,MA,1541 -Rochdale,MA,1542 -Rutland,MA,1543 -Shrewsbury,MA,1545 -Southbridge,MA,1550 -South Grafton,MA,1560 -Spencer,MA,1562 -Sterling,MA,1564 -Sturbridge,MA,1566 -West Upton,MA,1568 -Uxbridge,MA,1569 -Dudley Hill,MA,1570 -Dudley,MA,1571 -Westborough,MA,1581 -West Boylston,MA,1583 -West Brookfield,MA,1585 -Whitinsville,MA,1588 -Wilkinsonville,MA,1590 -Worcester,MA,1602 -Worcester,MA,1603 -Worcester,MA,1604 -Worcester,MA,1605 -Worcester,MA,1606 -Worcester,MA,1607 -Worcester,MA,1608 -Worcester,MA,1609 -Worcester,MA,1610 -Cherry Valley,MA,1611 -Paxton,MA,1612 -Framingham,MA,1701 -Village Of Nagog,MA,1718 -Boxboro,MA,1719 -Acton,MA,1720 -Ashland,MA,1721 -Bedford,MA,1730 -Bolton,MA,1740 -Carlisle,MA,1741 -Concord,MA,1742 -Southborough,MA,1745 -Holliston,MA,1746 -Hopedale,MA,1747 -Hopkinton,MA,1748 -Hudson,MA,1749 -Marlborough,MA,1752 -Maynard,MA,1754 -Mendon,MA,1756 -Milford,MA,1757 -Natick,MA,1760 -Sherborn,MA,1770 -Southborough,MA,1772 -Lincoln,MA,1773 -Stow,MA,1775 -Sudbury,MA,1776 -Wayland,MA,1778 -Woburn,MA,1801 -Burlington,MA,1803 -Andover,MA,1810 -Billerica,MA,1821 -South Chelmsford,MA,1824 -Dracut,MA,1826 -Dunstable,MA,1827 -Haverhill,MA,1830 -Haverhill,MA,1832 -Georgetown,MA,1833 -Groveland,MA,1834 -Bradford,MA,1835 -Lawrence,MA,1840 -Lawrence,MA,1841 -Lawrence,MA,1843 -Methuen,MA,1844 -North Andover,MA,1845 -Lowell,MA,1850 -Lowell,MA,1851 -Lowell,MA,1852 -Lowell,MA,1854 -Merrimac,MA,1860 -North Billerica,MA,1862 -North Chelmsford,MA,1863 -North Reading,MA,1864 -Reading,MA,1867 -Tewksbury,MA,1876 -Tyngsboro,MA,1879 -Wakefield,MA,1880 -Graniteville,MA,1886 -Wilmington,MA,1887 -Winchester,MA,1890 -Lynn,MA,1901 -Lynn,MA,1902 -East Lynn,MA,1904 -West Lynn,MA,1905 -Saugus,MA,1906 -Swampscott,MA,1907 -Nahant,MA,1908 -Amesbury,MA,1913 -Beverly,MA,1915 -Boxford,MA,1921 -Byfield,MA,1922 -Danvers,MA,1923 -Essex,MA,1929 -Gloucester,MA,1930 -Ipswich,MA,1938 -Lynnfield,MA,1940 -Manchester,MA,1944 -Marblehead,MA,1945 -Middleton,MA,1949 -Newburyport,MA,1950 -Newbury,MA,1951 -Salisbury,MA,1952 -Peabody,MA,1960 -Rockport,MA,1966 -Rowley,MA,1969 -Salem,MA,1970 -South Hamilton,MA,1982 -Topsfield,MA,1983 -Wenham,MA,1984 -West Newbury,MA,1985 -Bellingham,MA,2019 -Canton,MA,2021 -Cohasset,MA,2025 -Dedham,MA,2026 -Dover,MA,2030 -East Walpole,MA,2032 -Foxboro,MA,2035 -Franklin,MA,2038 -Hingham,MA,2043 -Hull,MA,2045 -Mansfield,MA,2048 -Marshfield,MA,2050 -Medfield,MA,2052 -Medway,MA,2053 -Millis,MA,2054 -Norfolk,MA,2056 -Norwell,MA,2061 -Norwood,MA,2062 -Scituate,MA,2066 -Sharon,MA,2067 -South Walpole,MA,2071 -Stoughton,MA,2072 -Walpole,MA,2081 -Westwood,MA,2090 -Wrentham,MA,2093 -Boston,MA,2108 -Boston,MA,2109 -Boston,MA,2110 -Boston,MA,2111 -Boston,MA,2113 -Boston,MA,2114 -Boston,MA,2115 -Boston,MA,2116 -Roxbury,MA,2118 -Roxbury,MA,2119 -Roxbury,MA,2120 -Dorchester,MA,2121 -Dorchester,MA,2122 -Dorchester,MA,2124 -Dorchester,MA,2125 -Mattapan,MA,2126 -South Boston,MA,2127 -East Boston,MA,2128 -Charlestown,MA,2129 -Jamaica Plain,MA,2130 -Roslindale,MA,2131 -West Roxbury,MA,2132 -Allston,MA,2134 -Brighton,MA,2135 -Hyde Park,MA,2136 -Cambridge,MA,2138 -Cambridge,MA,2139 -North Cambridge,MA,2140 -East Cambridge,MA,2141 -Cambridge,MA,2142 -Somerville,MA,2143 -Somerville,MA,2144 -Somerville,MA,2145 -Brookline,MA,2146 -Malden,MA,2148 -Everett,MA,2149 -Chelsea,MA,2150 -Revere,MA,2151 -Winthrop,MA,2152 -North Waltham,MA,2154 -Medford,MA,2155 -Newtonville,MA,2158 -Newton Center,MA,2159 -Newtonville,MA,2160 -Newton Highlands,MA,2161 -Newtonville,MA,2162 -Cambridge,MA,2163 -Newton Upper Fal,MA,2164 -Newtonville,MA,2165 -Auburndale,MA,2166 -Boston College,MA,2167 -Waban,MA,2168 -Quincy,MA,2169 -Quincy,MA,2170 -Quincy,MA,2171 -East Watertown,MA,2172 -Lexington,MA,2173 -Arlington,MA,2174 -Melrose,MA,2176 -Belmont,MA,2178 -Stoneham,MA,2180 -Wellesley,MA,2181 -Braintree,MA,2184 -Milton,MA,2186 -Weymouth,MA,2188 -Weymouth,MA,2189 -Weymouth,MA,2190 -Weymouth,MA,2191 -Needham,MA,2192 -Weston,MA,2193 -Needham,MA,2194 -Boston,MA,2199 -Boston,MA,2210 -Boston,MA,2215 -Avon,MA,2322 -Bridgewater,MA,2324 -Carver,MA,2330 -Duxbury,MA,2332 -East Bridgewater,MA,2333 -Halifax,MA,2338 -Hanover,MA,2339 -Hanson,MA,2341 -Holbrook,MA,2343 -Middleboro,MA,2346 -Lakeville,MA,2347 -Abington,MA,2351 -North Easton,MA,2356 -Pembroke,MA,2359 -Plymouth,MA,2360 -Kingston,MA,2364 -Plympton,MA,2367 -Randolph,MA,2368 -Rockland,MA,2370 -South Easton,MA,2375 -West Bridgewater,MA,2379 -Whitman,MA,2382 -Brockton,MA,2401 -Brockton,MA,2402 -Onset,MA,2532 -Chilmark,MA,2535 -Teaticket,MA,2536 -East Sandwich,MA,2537 -East Wareham,MA,2538 -Edgartown,MA,2539 -Falmouth,MA,2540 -Otis A F B,MA,2542 -Woods Hole,MA,2543 -Nantucket,MA,2554 -North Falmouth,MA,2556 -Pocasset,MA,2559 -Sandwich,MA,2563 -Vineyard Haven,MA,2568 -Wareham,MA,2571 -West Tisbury,MA,2575 -West Wareham,MA,2576 -West Yarmouth,MA,2601 -Barnstable,MA,2630 -Brewster,MA,2631 -Centerville,MA,2632 -South Chatham,MA,2633 -Cotuit,MA,2635 -Dennis,MA,2638 -Dennis Port,MA,2639 -Eastham,MA,2642 -Forestdale,MA,2644 -Harwich,MA,2645 -Harwich Port,MA,2646 -Marstons Mills,MA,2648 -Mashpee,MA,2649 -North Chatham,MA,2650 -North Truro,MA,2652 -Orleans,MA,2653 -Osterville,MA,2655 -Provincetown,MA,2657 -South Chatham,MA,2659 -South Dennis,MA,2660 -Bass River,MA,2664 -Truro,MA,2666 -Wellfleet,MA,2667 -West Barnstable,MA,2668 -West Dennis,MA,2670 -West Harwich,MA,2671 -West Yarmouth,MA,2673 -Yarmouth Port,MA,2675 -Assonet,MA,2702 -Attleboro,MA,2703 -Cuttyhunk,MA,2713 -Dighton,MA,2715 -East Freetown,MA,2717 -East Taunton,MA,2718 -Fairhaven,MA,2719 -Fall River,MA,2720 -Fall River,MA,2721 -Fall River,MA,2723 -Fall River,MA,2724 -Somerset,MA,2725 -Somerset,MA,2726 -Marion,MA,2738 -Mattapoisett,MA,2739 -New Bedford,MA,2740 -Acushnet,MA,2743 -New Bedford,MA,2744 -New Bedford,MA,2745 -New Bedford,MA,2746 -North Dartmouth,MA,2747 -Padanaram Villag,MA,2748 -North Attleboro,MA,2760 -Plainville,MA,2762 -North Attleboro,MA,2763 -North Dighton,MA,2764 -Norton,MA,2766 -Raynham,MA,2767 -Rehoboth,MA,2769 -Rochester,MA,2770 -Seekonk,MA,2771 -Swansea,MA,2777 -Berkley,MA,2779 -Taunton,MA,2780 -Westport,MA,2790 -Pearl Beach,MI,48001 -Berlin,MI,48002 -Almont,MI,48003 -Anchorville,MI,48004 -Armada,MI,48005 -Greenwood,MI,48006 -Birmingham,MI,48009 -Mussey,MI,48014 -Center Line,MI,48015 -Clawson,MI,48017 -Eastpointe,MI,48021 -Emmett,MI,48022 -Ira,MI,48023 -Franklin,MI,48025 -Fraser,MI,48026 -Wales,MI,48027 -Harsens Island,MI,48028 -Hazel Park,MI,48030 -Grant Township,MI,48032 -Southfield,MI,48034 -Cottrellville,MI,48039 -Marysville,MI,48040 -Riley,MI,48041 -Mount Clemens,MI,48043 -Macomb,MI,48044 -Selfridge A N G,MI,48045 -Chesterfield,MI,48047 -Lenox,MI,48048 -Ruby,MI,48049 -Port Huron,MI,48060 -Richmond,MI,48062 -Bruce,MI,48065 -Roseville,MI,48066 -Royal Oak,MI,48067 -Pleasant Ridge,MI,48069 -Huntington Woods,MI,48070 -Madison Heights,MI,48071 -Berkley,MI,48072 -Royal Oak,MI,48073 -Kimball,MI,48074 -Southfield,MI,48075 -Lathrup Village,MI,48076 -Saint Clair,MI,48079 -Saint Clair Shor,MI,48080 -Saint Clair Shor,MI,48081 -Saint Clair Shor,MI,48082 -Troy,MI,48083 -Troy,MI,48084 -Warren,MI,48089 -Warren,MI,48091 -Warren,MI,48092 -Warren,MI,48093 -Washington,MI,48094 -Brockway,MI,48097 -Troy,MI,48098 -Allen Park,MI,48101 -Ann Arbor,MI,48103 -Ann Arbor,MI,48104 -Ann Arbor,MI,48105 -Ann Arbor,MI,48108 -Ann Arbor,MI,48109 -Belleville,MI,48111 -Brighton,MI,48116 -Carleton,MI,48117 -Chelsea,MI,48118 -Dearborn,MI,48120 -Melvindale,MI,48122 -Dearborn,MI,48124 -Dearborn Heights,MI,48125 -Dearborn,MI,48126 -Dearborn Heights,MI,48127 -Dearborn,MI,48128 -Dexter,MI,48130 -Dundee,MI,48131 -Erie,MI,48133 -Flat Rock,MI,48134 -Garden City,MI,48135 -Gregory,MI,48137 -Grosse Ile,MI,48138 -Ida,MI,48140 -Inkster,MI,48141 -Lambertville,MI,48144 -La Salle,MI,48145 -Lincoln Park,MI,48146 -Livonia,MI,48150 -Livonia,MI,48152 -Livonia,MI,48154 -Luna Pier,MI,48157 -Manchester,MI,48158 -Maybee,MI,48159 -Milan,MI,48160 -Detroit Beach,MI,48161 -New Boston,MI,48164 -New Hudson,MI,48165 -Newport,MI,48166 -Northville,MI,48167 -Pinckney,MI,48169 -Plymouth,MI,48170 -Gibraltar,MI,48173 -Romulus,MI,48174 -Saline,MI,48176 -South Lyon,MI,48178 -South Rockwood,MI,48179 -Taylor,MI,48180 -Temperance,MI,48182 -Woodhaven,MI,48183 -Wayne,MI,48184 -Westland,MI,48185 -Canton,MI,48187 -Canton,MI,48188 -Whitmore Lake,MI,48189 -Willis,MI,48191 -Riverview,MI,48192 -Southgate,MI,48195 -Ypsilanti,MI,48197 -Ypsilanti,MI,48198 -Detroit,MI,48201 -Detroit,MI,48202 -Highland Park,MI,48203 -Detroit,MI,48204 -Detroit,MI,48205 -Detroit,MI,48206 -Detroit,MI,48207 -Detroit,MI,48208 -Detroit,MI,48209 -Detroit,MI,48210 -Detroit,MI,48211 -Hamtramck,MI,48212 -Detroit,MI,48213 -Detroit,MI,48214 -Detroit,MI,48215 -Detroit,MI,48216 -Detroit,MI,48217 -River Rouge,MI,48218 -Detroit,MI,48219 -Ferndale,MI,48220 -Detroit,MI,48221 -Detroit,MI,48223 -Detroit,MI,48224 -Harper Woods,MI,48225 -Detroit,MI,48226 -Detroit,MI,48227 -Detroit,MI,48228 -Ecorse,MI,48229 -Grosse Pointe,MI,48230 -Detroit,MI,48234 -Detroit,MI,48235 -Grosse Pointe,MI,48236 -Oak Park,MI,48237 -Detroit,MI,48238 -Redford,MI,48239 -Redford,MI,48240 -Detroit,MI,48242 -Bloomfield Towns,MI,48301 -Bloomfield Towns,MI,48302 -Bloomfield Towns,MI,48304 -Rochester Hills,MI,48306 -Rochester Hills,MI,48307 -Rochester Hills,MI,48309 -Sterling Heights,MI,48310 -Sterling Heights,MI,48312 -Sterling Heights,MI,48313 -Sterling Heights,MI,48314 -Shelby Township,MI,48315 -Shelby Township,MI,48316 -Shelby Township,MI,48317 -Sylvan Lake,MI,48320 -West Bloomfield,MI,48322 -Orchard Lake,MI,48323 -Orchard Lake,MI,48324 -Auburn Hills,MI,48326 -Waterford,MI,48327 -Waterford,MI,48328 -Waterford,MI,48329 -Farmington Hills,MI,48331 -Farmington Hills,MI,48334 -Farmington Hills,MI,48335 -Farmington Hills,MI,48336 -Pontiac,MI,48340 -Pontiac,MI,48341 -Pontiac,MI,48342 -Independence,MI,48346 -Independence,MI,48348 -Springfield,MI,48350 -Hartland,MI,48353 -Highland,MI,48356 -Highland,MI,48357 -Orion,MI,48359 -Orion,MI,48360 -Orion,MI,48362 -Oakland,MI,48363 -Addison Township,MI,48367 -Oxford,MI,48370 -Oxford,MI,48371 -Novi,MI,48374 -Novi,MI,48375 -Novi,MI,48377 -Milford,MI,48380 -Milford,MI,48381 -Commerce Townshi,MI,48382 -White Lake,MI,48383 -White Lake,MI,48386 -Wolverine Lake,MI,48390 -Wixom,MI,48393 -Applegate,MI,48401 -Attica,MI,48412 -Bad Axe,MI,48413 -Bancroft,MI,48414 -Birch Run,MI,48415 -Brown City,MI,48416 -Burt,MI,48417 -Byron,MI,48418 -Carsonville,MI,48419 -Clio,MI,48420 -Columbiaville,MI,48421 -Croswell,MI,48422 -Davison,MI,48423 -Decker,MI,48426 -Deckerville,MI,48427 -Dryden,MI,48428 -Durand,MI,48429 -Fenton,MI,48430 -Filion,MI,48432 -Flushing,MI,48433 -Fostoria,MI,48435 -Gaines,MI,48436 -Goodrich,MI,48438 -Grand Blanc,MI,48439 -Harbor Beach,MI,48441 -Holly,MI,48442 -Imlay City,MI,48444 -Kinde,MI,48445 -Lapeer,MI,48446 -Lennon,MI,48449 -Lexington,MI,48450 -Linden,MI,48451 -Marlette,MI,48453 -Melvin,MI,48454 -Metamora,MI,48455 -Minden City,MI,48456 -Montrose,MI,48457 -Mount Morris,MI,48458 -New Lothrop,MI,48460 -North Branch,MI,48461 -Ortonville,MI,48462 -Otisville,MI,48463 -Otter Lake,MI,48464 -Palms,MI,48465 -Peck,MI,48466 -Port Austin,MI,48467 -Port Hope,MI,48468 -Port Sanilac,MI,48469 -Ruth,MI,48470 -Sandusky,MI,48471 -Snover,MI,48472 -Swartz Creek,MI,48473 -Ubly,MI,48475 -Flint,MI,48502 -Flint,MI,48503 -Northwest,MI,48504 -Flint,MI,48505 -Northeast,MI,48506 -Flint,MI,48507 -Northeast,MI,48509 -Southeast,MI,48519 -Southeast,MI,48529 -Northwest,MI,48532 -Saginaw,MI,48601 -Saginaw,MI,48602 -Saginaw,MI,48603 -Saginaw,MI,48604 -Saginaw,MI,48607 -Alger,MI,48610 -Auburn,MI,48611 -Beaverton,MI,48612 -Bentley,MI,48613 -Brant,MI,48614 -Breckenridge,MI,48615 -Chesaning,MI,48616 -Clare,MI,48617 -Coleman,MI,48618 -Comins,MI,48619 -Edenville,MI,48620 -Fairview,MI,48621 -Farwell,MI,48622 -Freeland,MI,48623 -Gladwin,MI,48624 -Harrison,MI,48625 -Hemlock,MI,48626 -Hope,MI,48628 -Houghton Lake,MI,48629 -Kawkawlin,MI,48631 -Lake,MI,48632 -Linwood,MI,48634 -Lupton,MI,48635 -Luzerne,MI,48636 -Merrill,MI,48637 -Midland,MI,48640 -Midland,MI,48642 -Mio,MI,48647 -Oakley,MI,48649 -Pinconning,MI,48650 -Prudenville,MI,48651 -Rhodes,MI,48652 -Roscommon,MI,48653 -Rose City,MI,48654 -Saint Charles,MI,48655 -Saint Helen,MI,48656 -Sanford,MI,48657 -Standish,MI,48658 -Sterling,MI,48659 -West Branch,MI,48661 -Wheeler,MI,48662 -Akron,MI,48701 -Au Gres,MI,48703 -Barton City,MI,48705 -University Cente,MI,48706 -Bay City,MI,48708 -Bay Port,MI,48720 -Black River,MI,48721 -Bridgeport,MI,48722 -Caro,MI,48723 -Caseville,MI,48725 -Cass City,MI,48726 -Clifford,MI,48727 -Curran,MI,48728 -Deford,MI,48729 -East Tawas,MI,48730 -Elkton,MI,48731 -Essexville,MI,48732 -Fairgrove,MI,48733 -Frankenmuth,MI,48734 -Gagetown,MI,48735 -Glennie,MI,48737 -Greenbush,MI,48738 -Hale,MI,48739 -Harrisville,MI,48740 -Kingston,MI,48741 -Lincoln,MI,48742 -Long Lake,MI,48743 -Mayville,MI,48744 -Mikado,MI,48745 -Millington,MI,48746 -Munger,MI,48747 -National City,MI,48748 -Omer,MI,48749 -Oscoda,MI,48750 -Owendale,MI,48754 -Pigeon,MI,48755 -Prescott,MI,48756 -Reese,MI,48757 -Sebewaing,MI,48759 -Silverwood,MI,48760 -South Branch,MI,48761 -Spruce,MI,48762 -Tawas City,MI,48763 -Turner,MI,48765 -Twining,MI,48766 -Unionville,MI,48767 -Vassar,MI,48768 -Whittemore,MI,48770 -Alma,MI,48801 -Ashley,MI,48806 -Bannister,MI,48807 -Bath,MI,48808 -Belding,MI,48809 -Carson City,MI,48811 -Charlotte,MI,48813 -Clarksville,MI,48815 -Corunna,MI,48817 -Crystal,MI,48818 -Dansville,MI,48819 -Dewitt,MI,48820 -Dimondale,MI,48821 -Eagle,MI,48822 -East Lansing,MI,48823 -Eaton Rapids,MI,48827 -Edmore,MI,48829 -Carland,MI,48831 -Elwell,MI,48832 -Fenwick,MI,48834 -Fowler,MI,48835 -Fowlerville,MI,48836 -Grand Ledge,MI,48837 -Greenville,MI,48838 -Haslett,MI,48840 -Henderson,MI,48841 -Holt,MI,48842 -Howell,MI,48843 -Hubbardston,MI,48845 -Ionia,MI,48846 -Ithaca,MI,48847 -Laingsburg,MI,48848 -Lake Odessa,MI,48849 -Lakeview,MI,48850 -Lyons,MI,48851 -Mason,MI,48854 -Middleton,MI,48856 -Morrice,MI,48857 -Mount Pleasant,MI,48858 -Muir,MI,48860 -Mulliken,MI,48861 -Okemos,MI,48864 -Orleans,MI,48865 -Ovid,MI,48866 -Owosso,MI,48867 -Perrinton,MI,48871 -Perry,MI,48872 -Pewamo,MI,48873 -Portland,MI,48875 -Potterville,MI,48876 -Riverdale,MI,48877 -Rosebush,MI,48878 -Saint Johns,MI,48879 -Saint Louis,MI,48880 -Saranac,MI,48881 -Shepherd,MI,48883 -Sheridan,MI,48884 -Sidney,MI,48885 -Six Lakes,MI,48886 -Stanton,MI,48888 -Sumner,MI,48889 -Sunfield,MI,48890 -Vestaburg,MI,48891 -Webberville,MI,48892 -Weidman,MI,48893 -Westphalia,MI,48894 -Williamston,MI,48895 -Woodland,MI,48897 -Lansing,MI,48906 -Lansing,MI,48910 -Lansing,MI,48911 -Lansing,MI,48912 -Lansing,MI,48915 -Lansing,MI,48917 -Lansing,MI,48933 -Kalamazoo,MI,49001 -Kalamazoo,MI,49002 -Parchment,MI,49004 -Kalamazoo,MI,49007 -Kalamazoo,MI,49008 -Kalamazoo,MI,49009 -Allegan,MI,49010 -Athens,MI,49011 -Augusta,MI,49012 -Bangor,MI,49013 -Battle Creek,MI,49015 -Battle Creek,MI,49017 -Bellevue,MI,49021 -Benton Harbor,MI,49022 -Bloomingdale,MI,49026 -Bronson,MI,49028 -Burlington,MI,49029 -Burr Oak,MI,49030 -Cassopolis,MI,49031 -Centreville,MI,49032 -Ceresco,MI,49033 -Climax,MI,49034 -Coldwater,MI,49036 -Coloma,MI,49038 -Colon,MI,49040 -Constantine,MI,49042 -Covert,MI,49043 -Decatur,MI,49045 -Delton,MI,49046 -Dowagiac,MI,49047 -Dowling,MI,49050 -East Leroy,MI,49051 -Fulton,MI,49052 -Galesburg,MI,49053 -Gobles,MI,49055 -Grand Junction,MI,49056 -Hartford,MI,49057 -Hastings,MI,49058 -Hickory Corners,MI,49060 -Jones,MI,49061 -Lawrence,MI,49064 -Lawton,MI,49065 -Leonidas,MI,49066 -Marcellus,MI,49067 -Marshall,MI,49068 -Martin,MI,49070 -Mattawan,MI,49071 -Mendon,MI,49072 -Nashville,MI,49073 -Olivet,MI,49076 -Otsego,MI,49078 -Paw Paw,MI,49079 -Plainwell,MI,49080 -Quincy,MI,49082 -Richland,MI,49083 -Saint Joseph,MI,49085 -Schoolcraft,MI,49087 -Scotts,MI,49088 -Sherwood,MI,49089 -South Haven,MI,49090 -Sturgis,MI,49091 -Tekonsha,MI,49092 -Three Rivers,MI,49093 -Union City,MI,49094 -Vandalia,MI,49095 -Vermontville,MI,49096 -Vicksburg,MI,49097 -Watervliet,MI,49098 -White Pigeon,MI,49099 -Baroda,MI,49101 -Berrien Center,MI,49102 -Berrien Springs,MI,49103 -Bridgman,MI,49106 -Buchanan,MI,49107 -Eau Claire,MI,49111 -Edwardsburg,MI,49112 -Galien,MI,49113 -Lakeside,MI,49116 -Grand Beach,MI,49117 -Niles,MI,49120 -Sawyer,MI,49125 -Sodus,MI,49126 -Stevensville,MI,49127 -Three Oaks,MI,49128 -Union Pier,MI,49129 -Union,MI,49130 -Jackson,MI,49201 -Jackson,MI,49202 -Jackson,MI,49203 -Addison,MI,49220 -Adrian,MI,49221 -Albion,MI,49224 -Allen,MI,49227 -Blissfield,MI,49228 -Britton,MI,49229 -Brooklyn,MI,49230 -Camden,MI,49232 -Cement City,MI,49233 -Clarklake,MI,49234 -Clayton,MI,49235 -Clinton,MI,49236 -Concord,MI,49237 -Deerfield,MI,49238 -Grass Lake,MI,49240 -Hanover,MI,49241 -Hillsdale,MI,49242 -Homer,MI,49245 -Horton,MI,49246 -Hudson,MI,49247 -Jasper,MI,49248 -Jerome,MI,49249 -Jonesville,MI,49250 -Leslie,MI,49251 -Litchfield,MI,49252 -Manitou Beach,MI,49253 -Michigan Center,MI,49254 -Montgomery,MI,49255 -Morenci,MI,49256 -Munith,MI,49259 -North Adams,MI,49262 -Onondaga,MI,49264 -Onsted,MI,49265 -Osseo,MI,49266 -Ottawa Lake,MI,49267 -Palmyra,MI,49268 -Parma,MI,49269 -Petersburg,MI,49270 -Pittsford,MI,49271 -Pleasant Lake,MI,49272 -Reading,MI,49274 -Ridgeway,MI,49275 -Riga,MI,49276 -Rives Junction,MI,49277 -Sand Creek,MI,49279 -Somerset,MI,49281 -Spring Arbor,MI,49283 -Springport,MI,49284 -Stockbridge,MI,49285 -Tecumseh,MI,49286 -Tipton,MI,49287 -Waldron,MI,49288 -Ada,MI,49301 -Alto,MI,49302 -Bailey,MI,49303 -Baldwin,MI,49304 -Barryton,MI,49305 -Belmont,MI,49306 -Big Rapids,MI,49307 -Bitely,MI,49309 -Blanchard,MI,49310 -Byron Center,MI,49315 -Dutton,MI,49316 -Casnovia,MI,49318 -Cedar Springs,MI,49319 -Comstock Park,MI,49321 -Coral,MI,49322 -Dorr,MI,49323 -Freeport,MI,49325 -Gowen,MI,49326 -Grant,MI,49327 -Hopkins,MI,49328 -Howard City,MI,49329 -Kent City,MI,49330 -Lowell,MI,49331 -Mecosta,MI,49332 -Middleville,MI,49333 -Morley,MI,49336 -Newaygo,MI,49337 -Paris,MI,49338 -Pierson,MI,49339 -Remus,MI,49340 -Rockford,MI,49341 -Rodney,MI,49342 -Sand Lake,MI,49343 -Shelbyville,MI,49344 -Sparta,MI,49345 -Stanwood,MI,49346 -Trufant,MI,49347 -Wayland,MI,49348 -White Cloud,MI,49349 -Allendale,MI,49401 -Branch,MI,49402 -Conklin,MI,49403 -Coopersville,MI,49404 -Custer,MI,49405 -Fennville,MI,49408 -Fountain,MI,49410 -Free Soil,MI,49411 -Fremont,MI,49412 -Fruitport,MI,49415 -Grand Haven,MI,49417 -Grandville,MI,49418 -Hamilton,MI,49419 -Hart,MI,49420 -Hesperia,MI,49421 -Holland,MI,49423 -Holland,MI,49424 -Holton,MI,49425 -Hudsonville,MI,49426 -Jenison,MI,49428 -Ludington,MI,49431 -Marne,MI,49435 -Mears,MI,49436 -Montague,MI,49437 -Muskegon,MI,49440 -Muskegon,MI,49441 -Muskegon,MI,49442 -Muskegon Heights,MI,49444 -North Muskegon,MI,49445 -New Era,MI,49446 -New Richmond,MI,49447 -Nunica,MI,49448 -Pentwater,MI,49449 -Pullman,MI,49450 -Ravenna,MI,49451 -Rothbury,MI,49452 -Saugatuck,MI,49453 -Scottville,MI,49454 -Shelby,MI,49455 -Spring Lake,MI,49456 -Twin Lake,MI,49457 -Walkerville,MI,49459 -West Olive,MI,49460 -Whitehall,MI,49461 -Zeeland,MI,49464 -Grand Rapids,MI,49503 -Walker,MI,49504 -Grand Rapids,MI,49505 -Grand Rapids,MI,49506 -Grand Rapids,MI,49507 -Kentwood,MI,49508 -Wyoming,MI,49509 -Kentwood,MI,49512 -Grand Rapids,MI,49546 -Kentwood,MI,49548 -Cadillac,MI,49601 -Alden,MI,49612 -Arcadia,MI,49613 -Bear Lake,MI,49614 -Bellaire,MI,49615 -Benzonia,MI,49616 -Beulah,MI,49617 -Boon,MI,49618 -Brethren,MI,49619 -Buckley,MI,49620 -Cedar,MI,49621 -Central Lake,MI,49622 -Chase,MI,49623 -Copemish,MI,49625 -Elk Rapids,MI,49629 -Empire,MI,49630 -Evart,MI,49631 -Falmouth,MI,49632 -Fife Lake,MI,49633 -Frankfort,MI,49635 -Glen Arbor,MI,49636 -Grawn,MI,49637 -Harrietta,MI,49638 -Hersey,MI,49639 -Honor,MI,49640 -Idlewild,MI,49642 -Interlochen,MI,49643 -Irons,MI,49644 -Kaleva,MI,49645 -Kalkaska,MI,49646 -Karlin,MI,49647 -Kewadin,MI,49648 -Kingsley,MI,49649 -Lake Ann,MI,49650 -Moorestown,MI,49651 -Lake Leelanau,MI,49653 -Leland,MI,49654 -Leroy,MI,49655 -Luther,MI,49656 -Mc Bain,MI,49657 -Mancelona,MI,49659 -Stronach,MI,49660 -Manton,MI,49663 -Maple City,MI,49664 -Marion,MI,49665 -Merritt,MI,49667 -Mesick,MI,49668 -Northport,MI,49670 -Onekama,MI,49675 -Rapid City,MI,49676 -Reed City,MI,49677 -Sears,MI,49679 -South Boardman,MI,49680 -Suttons Bay,MI,49682 -Thompsonville,MI,49683 -Traverse City,MI,49684 -Tustin,MI,49688 -Wellston,MI,49689 -Williamsburg,MI,49690 -Afton,MI,49705 -Alanson,MI,49706 -Alpena,MI,49707 -Atlanta,MI,49709 -Barbeau,MI,49710 -Boyne City,MI,49712 -Boyne Falls,MI,49713 -Raco,MI,49715 -Brutus,MI,49716 -Carp Lake,MI,49718 -Cedarville,MI,49719 -Charlevoix,MI,49720 -Cheboygan,MI,49721 -Dafter,MI,49724 -De Tour Village,MI,49725 -Drummond Island,MI,49726 -East Jordan,MI,49727 -Eckerman,MI,49728 -Ellsworth,MI,49729 -Elmira,MI,49730 -Frederic,MI,49733 -Gaylord,MI,49735 -Goetzville,MI,49736 -Grayling,MI,49738 -Harbor Point,MI,49740 -Hawks,MI,49743 -Herron,MI,49744 -Hillman,MI,49746 -Hubbard Lake,MI,49747 -Indian River,MI,49749 -Johannesburg,MI,49751 -Kinross,MI,49752 -Lachine,MI,49753 -Levering,MI,49755 -Lewiston,MI,49756 -Mackinac Island,MI,49757 -Millersburg,MI,49759 -Moran,MI,49760 -Naubinway,MI,49762 -Onaway,MI,49765 -Ossineke,MI,49766 -Paradise,MI,49768 -Pellston,MI,49769 -Bay View,MI,49770 -Pickford,MI,49774 -Pointe Aux Pins,MI,49775 -Posen,MI,49776 -Rogers City,MI,49779 -Fibre,MI,49780 -Saint Ignace,MI,49781 -Saint James,MI,49782 -Sault Sainte Mar,MI,49783 -Kincheloe,MI,49788 -Stalwart,MI,49789 -Tower,MI,49792 -Vanderbilt,MI,49795 -Wolverine,MI,49799 -Iron Mountain,MI,49801 -Au Train,MI,49806 -Hardwood,MI,49807 -Carney,MI,49812 -Cedar River,MI,49813 -Champion,MI,49814 -Channing,MI,49815 -Limestone,MI,49816 -Cooks,MI,49817 -Cornell,MI,49818 -Curtis,MI,49820 -Daggett,MI,49821 -Deerton,MI,49822 -Eben Junction,MI,49825 -Rumely,MI,49826 -Engadine,MI,49827 -Escanaba,MI,49829 -Little Lake,MI,49833 -Foster City,MI,49834 -Garden,MI,49835 -Germfask,MI,49836 -Brampton,MI,49837 -Gould City,MI,49838 -Grand Marais,MI,49839 -Gulliver,MI,49840 -Princeton,MI,49841 -K I Sawyer A F B,MI,49843 -Hermansville,MI,49847 -Ingalls,MI,49848 -North Lake,MI,49849 -Mc Millan,MI,49853 -Thompson,MI,49854 -Beaver Grove,MI,49855 -Menominee,MI,49858 -Michigamme,MI,49861 -Christmas,MI,49862 -Negaunee,MI,49866 -Newberry,MI,49868 -Norway,MI,49870 -Perronville,MI,49873 -Powers,MI,49874 -Quinnesec,MI,49876 -Rapid River,MI,49878 -Republic,MI,49879 -Rock,MI,49880 -Sagola,MI,49881 -Seney,MI,49883 -Shingleton,MI,49884 -Skandia,MI,49885 -Spalding,MI,49886 -Stephenson,MI,49887 -Traunik,MI,49890 -Trenary,MI,49891 -Vulcan,MI,49892 -Wallace,MI,49893 -Wells,MI,49894 -Wetmore,MI,49895 -Wilson,MI,49896 -Atlantic Mine,MI,49905 -Keweenaw Bay,MI,49908 -Bergland,MI,49910 -Bessemer,MI,49911 -Bruce Crossing,MI,49912 -Laurium,MI,49913 -Chassell,MI,49916 -Covington,MI,49919 -Crystal Falls,MI,49920 -Dodgeville,MI,49921 -Ewen,MI,49925 -Gaastra,MI,49927 -Hancock,MI,49930 -Houghton,MI,49931 -Iron River,MI,49935 -Ironwood,MI,49938 -Kenton,MI,49943 -Gay,MI,49945 -Lanse,MI,49946 -Marenisco,MI,49947 -Mass City,MI,49948 -Eagle Harbor,MI,49950 -Nisula,MI,49952 -Ontonagon,MI,49953 -Pelkie,MI,49958 -Skanee,MI,49962 -Toivola,MI,49965 -Trout Creek,MI,49967 -Wakefield,MI,49968 -Watersmeet,MI,49969 -Watton,MI,49970 -Afton,MN,55001 -Bayport,MN,55003 -East Bethel,MN,55005 -Braham,MN,55006 -Quamba,MN,55007 -Cambridge,MN,55008 -Cannon Falls,MN,55009 -Castle Rock,MN,55010 -Cedar East Bethe,MN,55011 -Chisago City,MN,55013 -Circle Pines,MN,55014 -Cottage Grove,MN,55016 -Dalbo,MN,55017 -Stanton,MN,55018 -Dundas,MN,55019 -Elko,MN,55020 -Faribault,MN,55021 -Farmington,MN,55024 -Forest Lake,MN,55025 -Frontenac,MN,55026 -Goodhue,MN,55027 -Grasston,MN,55030 -Hampton,MN,55031 -Harris,MN,55032 -Welch,MN,55033 -Hinckley,MN,55037 -Centerville,MN,55038 -Isanti,MN,55040 -Lake City,MN,55041 -Lake Elmo,MN,55042 -Lakeland,MN,55043 -Lakeville,MN,55044 -Lindstrom,MN,55045 -Veseli,MN,55046 -Marine On Saint,MN,55047 -55048,MN,55048 -Medford,MN,55049 -Mora,MN,55051 -Morristown,MN,55052 -Nerstrand,MN,55053 -Newport,MN,55055 -North Branch,MN,55056 -Northfield,MN,55057 -Owatonna,MN,55060 -Beroun,MN,55063 -Randolph,MN,55065 -Red Wing,MN,55066 -Rock Creek,MN,55067 -Rosemount,MN,55068 -Rush City,MN,55069 -Saint Francis,MN,55070 -Saint Paul Park,MN,55071 -Markville,MN,55072 -Scandia,MN,55073 -Shafer,MN,55074 -South Saint Paul,MN,55075 -Inver Grove Heig,MN,55076 -Inver Grove Heig,MN,55077 -Stacy,MN,55079 -Stanchfield,MN,55080 -Oak Park Heights,MN,55082 -Taylors Falls,MN,55084 -Warsaw,MN,55087 -Webster,MN,55088 -Welch,MN,55089 -East Bethel,MN,55092 -Saint Paul,MN,55101 -Saint Paul,MN,55102 -Saint Paul,MN,55103 -Saint Paul,MN,55104 -Saint Paul,MN,55105 -Saint Paul,MN,55106 -West Saint Paul,MN,55107 -Lauderdale,MN,55108 -North Saint Paul,MN,55109 -White Bear Lake,MN,55110 -Fort Snelling,MN,55111 -New Brighton,MN,55112 -Roseville,MN,55113 -Saint Paul,MN,55114 -White Bear Lake,MN,55115 -Saint Paul,MN,55116 -Little Canada,MN,55117 -West Saint Paul,MN,55118 -Maplewood,MN,55119 -Eagan,MN,55120 -Eagan,MN,55121 -Eagan,MN,55122 -Eagan,MN,55123 -Apple Valley,MN,55124 -Woodbury,MN,55125 -Shoreview,MN,55126 -Vadnais Heights,MN,55127 -Oakdale,MN,55128 -Mendota,MN,55150 -Albertville,MN,55301 -Annandale,MN,55302 -Ramsey,MN,55303 -Ham Lake,MN,55304 -Arlington,MN,55307 -Becker,MN,55308 -Big Lake,MN,55309 -Bird Island,MN,55310 -Brownton,MN,55312 -Buffalo,MN,55313 -Buffalo Lake,MN,55314 -Carver,MN,55315 -Champlin,MN,55316 -Chanhassen,MN,55317 -Chaska,MN,55318 -Clear Lake,MN,55319 -Clearwater,MN,55320 -Cokato,MN,55321 -Cologne,MN,55322 -Darwin,MN,55324 -Dassel,MN,55325 -Dayton,MN,55327 -Delano,MN,55328 -Eden Valley,MN,55329 -Elk River,MN,55330 -Excelsior,MN,55331 -Fairfax,MN,55332 -Franklin,MN,55333 -Gaylord,MN,55334 -Gibbon,MN,55335 -Glencoe,MN,55336 -Burnsville,MN,55337 -Green Isle,MN,55338 -Hamburg,MN,55339 -Hamel,MN,55340 -Hector,MN,55342 -Eden Prairie,MN,55343 -Eden Prairie,MN,55344 -Minnetonka,MN,55345 -Eden Prairie,MN,55346 -Eden Prairie,MN,55347 -Howard Lake,MN,55349 -Hutchinson,MN,55350 -Jordan,MN,55352 -Kimball,MN,55353 -Lester Prairie,MN,55354 -Litchfield,MN,55355 -Long Lake,MN,55356 -Loretto,MN,55357 -Maple Lake,MN,55358 -Maple Plain,MN,55359 -Mayer,MN,55360 -Monticello,MN,55362 -Montrose,MN,55363 -Mound,MN,55364 -New Auburn,MN,55366 -New Germany,MN,55367 -Norwood,MN,55368 -Maple Grove,MN,55369 -Plato,MN,55370 -Princeton,MN,55371 -Prior Lake,MN,55372 -Rockford,MN,55373 -Rogers,MN,55374 -Saint Michael,MN,55376 -Savage,MN,55378 -Shakopee,MN,55379 -Silver Creek,MN,55380 -Silver Lake,MN,55381 -South Haven,MN,55382 -Spring Park,MN,55384 -Stewart,MN,55385 -Victoria,MN,55386 -Waconia,MN,55387 -Watertown,MN,55388 -Watkins,MN,55389 -Waverly,MN,55390 -Wayzata,MN,55391 -Winsted,MN,55395 -Winthrop,MN,55396 -Young America,MN,55397 -Zimmerman,MN,55398 -Minneapolis,MN,55401 -Minneapolis,MN,55402 -Minneapolis,MN,55403 -Minneapolis,MN,55404 -Minneapolis,MN,55405 -Minneapolis,MN,55406 -Minneapolis,MN,55407 -Minneapolis,MN,55408 -Minneapolis,MN,55409 -Edina,MN,55410 -Minneapolis,MN,55411 -Minneapolis,MN,55412 -Minneapolis,MN,55413 -Minneapolis,MN,55414 -Minneapolis,MN,55415 -Saint Louis Park,MN,55416 -Minneapolis,MN,55417 -Minneapolis,MN,55418 -Minneapolis,MN,55419 -Bloomington,MN,55420 -Columbia Heights,MN,55421 -Robbinsdale,MN,55422 -Richfield,MN,55423 -Edina,MN,55424 -Bloomington,MN,55425 -Saint Louis Park,MN,55426 -Golden Valley,MN,55427 -Crystal,MN,55428 -Brooklyn Center,MN,55429 -Brooklyn Center,MN,55430 -Bloomington,MN,55431 -Fridley,MN,55432 -Coon Rapids,MN,55433 -Blaine,MN,55434 -Edina,MN,55435 -Edina,MN,55436 -Bloomington,MN,55437 -Bloomington,MN,55438 -Edina,MN,55439 -Plymouth,MN,55441 -Plymouth,MN,55442 -Brooklyn Center,MN,55443 -Brooklyn Center,MN,55444 -Brooklyn Park,MN,55445 -Plymouth,MN,55446 -Plymouth,MN,55447 -Coon Rapids,MN,55448 -Minneapolis,MN,55450 -Minneapolis,MN,55454 -Minneapolis,MN,55455 -Loretto,MN,55599 -Brimson,MN,55602 -Finland,MN,55603 -Grand Marais,MN,55604 -Grand Portage,MN,55605 -Hovland,MN,55606 -Isabella,MN,55607 -Lutsen,MN,55612 -Schroeder,MN,55613 -Little Marais,MN,55614 -Tofte,MN,55615 -Two Harbors,MN,55616 -Alborn,MN,55702 -Angora,MN,55703 -Askov,MN,55704 -Aurora,MN,55705 -Babbitt,MN,55706 -Barnum,MN,55707 -Bovey,MN,55709 -Britt,MN,55710 -Brookston,MN,55711 -Bruno,MN,55712 -Canyon,MN,55717 -Carlton,MN,55718 -Chisholm,MN,55719 -Cloquet,MN,55720 -Cohasset,MN,55721 -Cook,MN,55723 -Kelsey,MN,55724 -Crane Lake,MN,55725 -Cromwell,MN,55726 -Culver,MN,55727 -Ely,MN,55731 -Embarrass,MN,55732 -Esko,MN,55733 -Eveleth,MN,55734 -Finlayson,MN,55735 -Floodwood,MN,55736 -Gheen,MN,55740 -Gilbert,MN,55741 -Goodland,MN,55742 -La Prairie,MN,55744 -Hibbing,MN,55746 -Hill City,MN,55748 -Holyoke,MN,55749 -Hoyt Lakes,MN,55750 -Iron,MN,55751 -Jacobson,MN,55752 -55755,MN,55755 -Kerrick,MN,55756 -Kettle River,MN,55757 -Mc Gregor,MN,55760 -Mahtowa,MN,55762 -Makinen,MN,55763 -Meadowlands,MN,55765 -Melrude,MN,55766 -Moose Lake,MN,55767 -Mountain Iron,MN,55768 -Nashwauk,MN,55769 -Buyck,MN,55771 -Parkville,MN,55773 -Pengilly,MN,55775 -Saginaw,MN,55779 -Sawyer,MN,55780 -Sturgeon Lake,MN,55783 -Swan River,MN,55784 -Swatara,MN,55785 -Tamarack,MN,55787 -Togo,MN,55788 -Tower,MN,55790 -Virginia,MN,55792 -Warba,MN,55793 -Willow River,MN,55795 -Wrenshall,MN,55797 -Wright,MN,55798 -Zim,MN,55799 -Duluth,MN,55801 -Duluth,MN,55802 -Duluth,MN,55803 -Duluth,MN,55804 -Duluth,MN,55805 -Duluth,MN,55806 -Duluth,MN,55807 -Duluth,MN,55808 -Proctor,MN,55810 -Hermantown,MN,55811 -Duluth,MN,55812 -Rochester,MN,55901 -Rochester,MN,55902 -Rochester,MN,55904 -Rochester,MN,55906 -Adams,MN,55909 -Altura,MN,55910 -Austin,MN,55912 -Blooming Prairie,MN,55917 -Brownsdale,MN,55918 -Brownsville,MN,55919 -Byron,MN,55920 -Caledonia,MN,55921 -Canton,MN,55922 -Chatfield,MN,55923 -Claremont,MN,55924 -Dakota,MN,55925 -Dexter,MN,55926 -Dodge Center,MN,55927 -Dover,MN,55929 -Elgin,MN,55932 -Elkton,MN,55933 -Viola,MN,55934 -Fountain,MN,55935 -Grand Meadow,MN,55936 -Granger,MN,55937 -Harmony,MN,55939 -Hayfield,MN,55940 -Hokah,MN,55941 -Houston,MN,55943 -Kasson,MN,55944 -Theilman,MN,55945 -Kenyon,MN,55946 -La Crescent,MN,55947 -Lanesboro,MN,55949 -Le Roy,MN,55951 -Lewiston,MN,55952 -Lyle,MN,55953 -Mabel,MN,55954 -Mantorville,MN,55955 -Mazeppa,MN,55956 -Millville,MN,55957 -Minnesota City,MN,55959 -Oronoco,MN,55960 -Ostrander,MN,55961 -Peterson,MN,55962 -Pine Island,MN,55963 -Plainview,MN,55964 -Preston,MN,55965 -Racine,MN,55967 -Rollingstone,MN,55969 -Rose Creek,MN,55970 -Rushford,MN,55971 -Saint Charles,MN,55972 -Sargeant,MN,55973 -Spring Grove,MN,55974 -Spring Valley,MN,55975 -Stewartville,MN,55976 -Taopi,MN,55977 -Theilman,MN,55978 -Utica,MN,55979 -Wabasha,MN,55981 -Waltham,MN,55982 -Wanamingo,MN,55983 -West Concord,MN,55985 -Whalan,MN,55986 -Goodview,MN,55987 -Wykoff,MN,55990 -Hammond,MN,55991 -Zumbrota,MN,55992 -Mankato,MN,56001 -North Mankato,MN,56003 -Albert Lea,MN,56007 -Alden,MN,56009 -Amboy,MN,56010 -Belle Plaine,MN,56011 -Blue Earth,MN,56013 -Bricelyn,MN,56014 -Clarks Grove,MN,56016 -Cleveland,MN,56017 -Comfrey,MN,56019 -Conger,MN,56020 -Courtland,MN,56021 -Darfur,MN,56022 -Delavan,MN,56023 -Eagle Lake,MN,56024 -Easton,MN,56025 -Ellendale,MN,56026 -Elmore,MN,56027 -Elysian,MN,56028 -Emmons,MN,56029 -Essig,MN,56030 -Fairmont,MN,56031 -Freeborn,MN,56032 -Frost,MN,56033 -Garden City,MN,56034 -Geneva,MN,56035 -Glenville,MN,56036 -Good Thunder,MN,56037 -Granada,MN,56039 -Hanska,MN,56041 -Hartland,MN,56042 -Hayward,MN,56043 -Henderson,MN,56044 -Hollandale,MN,56045 -Hope,MN,56046 -Huntley,MN,56047 -Janesville,MN,56048 -Kasota,MN,56050 -Kiester,MN,56051 -Kilkenny,MN,56052 -Lafayette,MN,56054 -Lake Crystal,MN,56055 -Le Center,MN,56057 -Le Sueur,MN,56058 -Lewisville,MN,56060 -London,MN,56061 -Madelia,MN,56062 -Madison Lake,MN,56063 -Manchester,MN,56064 -Mapleton,MN,56065 -Meriden,MN,56067 -Minnesota Lake,MN,56068 -Montgomery,MN,56069 -New Prague,MN,56071 -New Richland,MN,56072 -New Ulm,MN,56073 -Nicollet,MN,56074 -Northrop,MN,56075 -Oakland,MN,56076 -Otisco,MN,56077 -Pemberton,MN,56078 -Saint Clair,MN,56080 -Saint James,MN,56081 -Saint Peter,MN,56082 -Sanborn,MN,56083 -Sleepy Eye,MN,56085 -Springfield,MN,56087 -Truman,MN,56088 -Twin Lakes,MN,56089 -Vernon Center,MN,56090 -Waldorf,MN,56091 -Walters,MN,56092 -Waseca,MN,56093 -Waterville,MN,56096 -Wells,MN,56097 -Winnebago,MN,56098 -Wilder,MN,56101 -Adrian,MN,56110 -Alpha,MN,56111 -Amiret,MN,56112 -Arco,MN,56113 -Avoca,MN,56114 -Balaton,MN,56115 -Beaver Creek,MN,56116 -Bigelow,MN,56117 -Bingham Lake,MN,56118 -Brewster,MN,56119 -Butterfield,MN,56120 -Ceylon,MN,56121 -Chandler,MN,56122 -Currie,MN,56123 -Delft,MN,56124 -Dovray,MN,56125 -Dundee,MN,56126 -Dunnell,MN,56127 -Edgerton,MN,56128 -Ellsworth,MN,56129 -56130,MN,56130 -Fulda,MN,56131 -Garvin,MN,56132 -Hadley,MN,56133 -Hardwick,MN,56134 -56135,MN,56135 -Hendricks,MN,56136 -Heron Lake,MN,56137 -Hills,MN,56138 -Holland,MN,56139 -Iona,MN,56141 -Ivanhoe,MN,56142 -Jackson,MN,56143 -Jasper,MN,56144 -Jeffers,MN,56145 -Kanaranzi,MN,56146 -Kenneth,MN,56147 -Lake Benton,MN,56149 -Lakefield,MN,56150 -Lake Wilson,MN,56151 -Lamberton,MN,56152 -Leota,MN,56153 -Lismore,MN,56155 -Luverne,MN,56156 -Lynd,MN,56157 -Magnolia,MN,56158 -Mountain Lake,MN,56159 -Odin,MN,56160 -Okabena,MN,56161 -Ormsby,MN,56162 -Hatfield,MN,56164 -Reading,MN,56165 -Revere,MN,56166 -Round Lake,MN,56167 -Rushmore,MN,56168 -Russell,MN,56169 -Florence,MN,56170 -Sherburn,MN,56171 -Slayton,MN,56172 -Steen,MN,56173 -Storden,MN,56174 -Tracy,MN,56175 -Trimont,MN,56176 -Tyler,MN,56178 -Verdi,MN,56179 -Walnut Grove,MN,56180 -Welcome,MN,56181 -Westbrook,MN,56183 -Wilmont,MN,56185 -Woodstock,MN,56186 -Worthington,MN,56187 -Willmar,MN,56201 -Alberta,MN,56207 -Appleton,MN,56208 -Atwater,MN,56209 -Barry,MN,56210 -Beardsley,MN,56211 -Bellingham,MN,56212 -Belview,MN,56214 -Benson,MN,56215 -Svea,MN,56216 -Boyd,MN,56218 -Browns Valley,MN,56219 -Canby,MN,56220 -Chokio,MN,56221 -Clara City,MN,56222 -Clarkfield,MN,56223 -Clements,MN,56224 -Clinton,MN,56225 -Clontarf,MN,56226 -Correll,MN,56227 -Cosmos,MN,56228 -Cottonwood,MN,56229 -Danube,MN,56230 -Danvers,MN,56231 -Dawson,MN,56232 -De Graff,MN,56233 -Donnelly,MN,56235 -Dumont,MN,56236 -Echo,MN,56237 -Evan,MN,56238 -Ghent,MN,56239 -Graceville,MN,56240 -Granite Falls,MN,56241 -Grove City,MN,56243 -Hancock,MN,56244 -Hanley Falls,MN,56245 -Hawick,MN,56246 -Hazel Run,MN,56247 -Herman,MN,56248 -Holloway,MN,56249 -Johnson,MN,56250 -Kandiyohi,MN,56251 -Kerkhoven,MN,56252 -Lake Lillian,MN,56253 -Louisburg,MN,56254 -Lucan,MN,56255 -Madison,MN,56256 -Marietta,MN,56257 -Marshall,MN,56258 -Maynard,MN,56260 -Milan,MN,56262 -Milroy,MN,56263 -Minneota,MN,56264 -Montevideo,MN,56265 -Morgan,MN,56266 -Morris,MN,56267 -Morton,MN,56270 -Murdock,MN,56271 -Nassau,MN,56272 -New London,MN,56273 -Norcross,MN,56274 -Odessa,MN,56276 -Olivia,MN,56277 -Ortonville,MN,56278 -Pennock,MN,56279 -Porter,MN,56280 -Prinsburg,MN,56281 -Raymond,MN,56282 -Delhi,MN,56283 -Renville,MN,56284 -Sacred Heart,MN,56285 -Saint Leo,MN,56286 -Seaforth,MN,56287 -Spicer,MN,56288 -Sunburg,MN,56289 -56290,MN,56290 -Taunton,MN,56291 -Vesta,MN,56292 -Wabasso,MN,56293 -Wanda,MN,56294 -Watson,MN,56295 -Wheaton,MN,56296 -Wood Lake,MN,56297 -Saint Cloud,MN,56301 -Saint Cloud,MN,56303 -Saint Cloud,MN,56304 -Albany,MN,56307 -Alexandria,MN,56308 -Ashby,MN,56309 -Avon,MN,56310 -Barrett,MN,56311 -Belgrade,MN,56312 -Bock,MN,56313 -Bowlus,MN,56314 -Brandon,MN,56315 -Brooten,MN,56316 -Burtrum,MN,56318 -Carlos,MN,56319 -Cold Spring,MN,56320 -Cyrus,MN,56323 -Dalton,MN,56324 -Evansville,MN,56326 -Farwell,MN,56327 -Flensburg,MN,56328 -Foley,MN,56329 -Foreston,MN,56330 -Freeport,MN,56331 -Garfield,MN,56332 -Gilman,MN,56333 -Glenwood,MN,56334 -Grey Eagle,MN,56336 -Hillman,MN,56338 -Hoffman,MN,56339 -Holdingford,MN,56340 -Holmes City,MN,56341 -Isle,MN,56342 -Kensington,MN,56343 -Little Falls,MN,56345 -Little Sauk,MN,56347 -Lowry,MN,56349 -Mc Grath,MN,56350 -Melrose,MN,56352 -Milaca,MN,56353 -Miltona,MN,56354 -Nelson,MN,56355 -Oak Park,MN,56357 -Ogilvie,MN,56358 -Onamia,MN,56359 -Osakis,MN,56360 -Parkers Prairie,MN,56361 -Paynesville,MN,56362 -Pease,MN,56363 -Pierz,MN,56364 -Rice,MN,56367 -Richmond,MN,56368 -Royalton,MN,56373 -Saint Joseph,MN,56374 -Saint Stephen,MN,56375 -Sartell,MN,56377 -Sauk Centre,MN,56378 -Sauk Rapids,MN,56379 -Sedan,MN,56380 -Starbuck,MN,56381 -Swanville,MN,56382 -Upsala,MN,56384 -Villard,MN,56385 -Wahkon,MN,56386 -Waite Park,MN,56387 -West Union,MN,56389 -East Gull Lake,MN,56401 -Aitkin,MN,56431 -Akeley,MN,56433 -Aldrich,MN,56434 -Backus,MN,56435 -Bertha,MN,56437 -Browerville,MN,56438 -Clarissa,MN,56440 -Crosby,MN,56441 -Crosslake,MN,56442 -Cushing,MN,56443 -Deerwood,MN,56444 -Eagle Bend,MN,56446 -Emily,MN,56447 -Fifty Lakes,MN,56448 -Fort Ripley,MN,56449 -Garrison,MN,56450 -Hackensack,MN,56452 -Hewitt,MN,56453 -Ironton,MN,56455 -Jenkins,MN,56456 -Lake George,MN,56458 -Lake Itasca,MN,56460 -Laporte,MN,56461 -Manhattan Beach,MN,56463 -Menahga,MN,56464 -Merrifield,MN,56465 -Leader,MN,56466 -Nevis,MN,56467 -Lake Shore,MN,56468 -Palisade,MN,56469 -Park Rapids,MN,56470 -Pequot Lakes,MN,56472 -Pillager,MN,56473 -Pine River,MN,56474 -Randall,MN,56475 -Sebeka,MN,56477 -Staples,MN,56479 -Verndale,MN,56481 -Wadena,MN,56482 -Walker,MN,56484 -Whipholt,MN,56485 -Detroit Lakes,MN,56501 -Lockhart,MN,56510 -Audubon,MN,56511 -Baker,MN,56513 -Downer,MN,56514 -Battle Lake,MN,56515 -Bejou,MN,56516 -Beltrami,MN,56517 -Bluffton,MN,56518 -Borup,MN,56519 -Breckenridge,MN,56520 -Callaway,MN,56521 -Doran,MN,56522 -Eldred,MN,56523 -Clitherall,MN,56524 -Comstock,MN,56525 -Deer Creek,MN,56527 -Dent,MN,56528 -Dilworth,MN,56529 -Elbow Lake,MN,56531 -Elizabeth,MN,56533 -Erhard,MN,56534 -Erskine,MN,56535 -Felton,MN,56536 -Carlisle,MN,56537 -Fertile,MN,56540 -Fosston,MN,56542 -Foxhome,MN,56543 -Frazee,MN,56544 -Gary,MN,56545 -Georgetown,MN,56546 -Glyndon,MN,56547 -Halstad,MN,56548 -Rollag,MN,56549 -Hendrum,MN,56550 -Henning,MN,56551 -Hitterdal,MN,56552 -Kent,MN,56553 -Lake Park,MN,56554 -Mcintosh,MN,56556 -Mahnomen,MN,56557 -Moorhead,MN,56560 -Nashua,MN,56565 -Naytahwaush,MN,56566 -New York Mills,MN,56567 -Nielsville,MN,56568 -Ogema,MN,56569 -Osage,MN,56570 -Ottertail,MN,56571 -Pelican Rapids,MN,56572 -Perham,MN,56573 -Perley,MN,56574 -Ponsford,MN,56575 -Richville,MN,56576 -Richwood,MN,56577 -Rochert,MN,56578 -Rothsay,MN,56579 -Sabin,MN,56580 -Shelly,MN,56581 -Tenney,MN,56583 -Twin Valley,MN,56584 -Ulen,MN,56585 -Underwood,MN,56586 -Vergas,MN,56587 -Vining,MN,56588 -Waubun,MN,56589 -Wendell,MN,56590 -Winger,MN,56592 -Wolf Lake,MN,56593 -Wolverton,MN,56594 -Bemidji,MN,56601 -Bagley,MN,56621 -Baudette,MN,56623 -56625,MN,56625 -Bena,MN,56626 -Big Falls,MN,56627 -Bigfork,MN,56628 -Birchdale,MN,56629 -Blackduck,MN,56630 -Boy River,MN,56632 -Cass Lake,MN,56633 -Clearbrook,MN,56634 -Deer River,MN,56636 -Talmoon,MN,56637 -Effie,MN,56639 -Federal Dam,MN,56641 -Gonvick,MN,56644 -Gully,MN,56646 -Hines,MN,56647 -International Fa,MN,56649 -Kelliher,MN,56650 -Lengby,MN,56651 -Leonard,MN,56652 -Littlefork,MN,56653 -Loman,MN,56654 -Longville,MN,56655 -Marcell,MN,56657 -Max,MN,56659 -Mizpah,MN,56660 -Northome,MN,56661 -Outing,MN,56662 -Pennington,MN,56663 -Pitt,MN,56665 -Ponemah,MN,56666 -Puposky,MN,56667 -Ranier,MN,56668 -Ray,MN,56669 -Redby,MN,56670 -Redlake,MN,56671 -Remer,MN,56672 -Roosevelt,MN,56673 -Saum,MN,56674 -Shevlin,MN,56676 -Solway,MN,56678 -Spring Lake,MN,56680 -Squaw Lake,MN,56681 -Swift,MN,56682 -Tenstrike,MN,56683 -Trail,MN,56684 -Waskish,MN,56685 -Williams,MN,56686 -Wilton,MN,56687 -Wirt,MN,56688 -Thief River Fall,MN,56701 -Alvarado,MN,56710 -Angle Inlet,MN,56711 -Angus,MN,56712 -Argyle,MN,56713 -Badger,MN,56714 -Brooks,MN,56715 -Crookston,MN,56716 -Donaldson,MN,56720 -East Grand Forks,MN,56721 -Euclid,MN,56722 -Fisher,MN,56723 -Gatzke,MN,56724 -Goodridge,MN,56725 -Greenbush,MN,56726 -Grygla,MN,56727 -Hallock,MN,56728 -Halma,MN,56729 -Karlstad,MN,56732 -Kennedy,MN,56733 -Lake Bronson,MN,56734 -Orleans,MN,56735 -Mentor,MN,56736 -Middle River,MN,56737 -Newfolden,MN,56738 -Noyes,MN,56740 -Oak Island,MN,56741 -Oklee,MN,56742 -Oslo,MN,56744 -Plummer,MN,56748 -Red Lake Falls,MN,56750 -Pencer,MN,56751 -Saint Hilaire,MN,56754 -Saint Vincent,MN,56755 -Salol,MN,56756 -Stephen,MN,56757 -Strandquist,MN,56758 -Strathcona,MN,56759 -Viking,MN,56760 -Wannaska,MN,56761 -Radium,MN,56762 -Warroad,MN,56763 -Abbeville,MS,38601 -Cannon,MS,38603 -Batesville,MS,38606 -Blue Mountain,MS,38610 -Byhalia,MS,38611 -Stovall,MS,38614 -Coahoma,MS,38617 -Coldwater,MS,38618 -Como,MS,38619 -Courtland,MS,38620 -Askew,MS,38621 -Dumas,MS,38625 -Dundee,MS,38626 -Etta,MS,38627 -Falkner,MS,38629 -Hernando,MS,38632 -Hickory Flat,MS,38633 -Holly Springs,MS,38635 -Horn Lake,MS,38637 -Lake Cormorant,MS,38641 -Lamar,MS,38642 -Lambert,MS,38643 -Lyon,MS,38645 -Marks,MS,38646 -Michigan City,MS,38647 -Myrtle,MS,38650 -Nesbit,MS,38651 -New Albany,MS,38652 -Olive Branch,MS,38654 -Lafayette,MS,38655 -Pleasant Grove,MS,38657 -Pope,MS,38658 -Potts Camp,MS,38659 -Red Banks,MS,38661 -Ripley,MS,38663 -Robinsonville,MS,38664 -Savage,MS,38665 -Sardis,MS,38666 -Senatobia,MS,38668 -Sledge,MS,38670 -Southaven,MS,38671 -Taylor,MS,38673 -Tiplersville,MS,38674 -Tunica,MS,38676 -University,MS,38677 -Walls,MS,38680 -Walnut,MS,38683 -Waterford,MS,38685 -Greenville,MS,38701 -Greenville,MS,38703 -Alligator,MS,38720 -Anguilla,MS,38721 -Benoit,MS,38725 -Beulah,MS,38726 -Boyle,MS,38730 -Cleveland,MS,38732 -Doddsville,MS,38736 -Drew,MS,38737 -Duncan,MS,38740 -Glen Allan,MS,38744 -Gunnison,MS,38746 -Percy,MS,38748 -Baird,MS,38751 -Inverness,MS,38753 -Isola,MS,38754 -Elizabeth,MS,38756 -Merigold,MS,38759 -Moorhead,MS,38761 -Mound Bayou,MS,38762 -Rosedale,MS,38769 -Ruleville,MS,38771 -Shaw,MS,38773 -Shelby,MS,38774 -Sunflower,MS,38778 -Wayside,MS,38780 -Tupelo,MS,38801 -Amory,MS,38821 -Baldwyn,MS,38824 -Belden,MS,38826 -Belmont,MS,38827 -Blue Springs,MS,38828 -Booneville,MS,38829 -Burnsville,MS,38833 -Kossuth,MS,38834 -Dennis,MS,38838 -Ecru,MS,38841 -Fulton,MS,38843 -Gattman,MS,38844 -Glen,MS,38846 -Golden,MS,38847 -Greenwood Spring,MS,38848 -Guntown,MS,38849 -Houlka,MS,38850 -Houston,MS,38851 -Iuka,MS,38852 -Mantachie,MS,38855 -Marietta,MS,38856 -Mooreville,MS,38857 -Nettleton,MS,38858 -New Site,MS,38859 -Egypt,MS,38860 -Plantersville,MS,38862 -Pontotoc,MS,38863 -Sarepta,MS,38864 -Rienzi,MS,38865 -Saltillo,MS,38866 -Shannon,MS,38868 -Smithville,MS,38870 -Thaxton,MS,38871 -Tishomingo,MS,38873 -Tremont,MS,38876 -Vardaman,MS,38878 -Grenada,MS,38901 -Avalon,MS,38912 -Banner,MS,38913 -Big Creek,MS,38914 -Bruce,MS,38915 -Calhoun City,MS,38916 -Carrollton,MS,38917 -Cascilla,MS,38920 -Charleston,MS,38921 -Coffeeville,MS,38922 -Coila,MS,38923 -Cruger,MS,38924 -Duck Hill,MS,38925 -Enid,MS,38927 -Gore Springs,MS,38929 -Greenwood,MS,38930 -Holcomb,MS,38940 -Itta Bena,MS,38941 -Mc Carley,MS,38943 -Minter City,MS,38944 -Oakland,MS,38948 -Water Valley,MS,38949 -Philipp,MS,38950 -Pittsboro,MS,38951 -Schlater,MS,38952 -Scobey,MS,38953 -Sidon,MS,38954 -Tillatoba,MS,38961 -Tutwiler,MS,38963 -Vance,MS,38964 -Water Valley,MS,38965 -Winona,MS,38967 -Belzoni,MS,39038 -Benton,MS,39039 -Bentonia,MS,39040 -Bolton,MS,39041 -Brandon,MS,39042 -Braxton,MS,39044 -Camden,MS,39045 -Canton,MS,39046 -Carlisle,MS,39049 -Edinburg,MS,39051 -Church Hill,MS,39055 -Clinton,MS,39056 -Conehatta,MS,39057 -Crystal Springs,MS,39059 -Durant,MS,39063 -Edwards,MS,39066 -Ethel,MS,39067 -Fayette,MS,39069 -Flora,MS,39071 -Florence,MS,39073 -Forest,MS,39074 -Georgetown,MS,39078 -Goodman,MS,39079 -Harrisville,MS,39082 -Hazlehurst,MS,39083 -Hermanville,MS,39086 -Holly Bluff,MS,39088 -Kosciusko,MS,39090 -Lake,MS,39092 -Lena,MS,39094 -Lexington,MS,39095 -Lorman,MS,39096 -Louise,MS,39097 -Mc Cool,MS,39108 -Madden,MS,39109 -Madison,MS,39110 -Magee,MS,39111 -Mayersville,MS,39113 -Mendenhall,MS,39114 -Mize,MS,39116 -Morton,MS,39117 -Mount Olive,MS,39119 -Natchez,MS,39120 -Newhebron,MS,39140 -Pattison,MS,39144 -Pelahatchie,MS,39145 -Pickens,MS,39146 -Pinola,MS,39149 -Port Gibson,MS,39150 -Pulaski,MS,39152 -Raleigh,MS,39153 -Learned,MS,39154 -Redwood,MS,39156 -Ridgeland,MS,39157 -Rolling Fork,MS,39159 -Sallis,MS,39160 -Satartia,MS,39162 -Silver City,MS,39166 -Taylorsville,MS,39168 -Tchula,MS,39169 -Terry,MS,39170 -Utica,MS,39175 -Vaiden,MS,39176 -Valley Park,MS,39177 -Pickens,MS,39179 -Vicksburg,MS,39180 -Walnut Grove,MS,39189 -Wesson,MS,39191 -West,MS,39192 -Yazoo City,MS,39194 -Jackson,MS,39201 -Jackson,MS,39202 -Jackson,MS,39203 -Jackson,MS,39204 -Jackson,MS,39206 -Pearl,MS,39208 -Jackson,MS,39209 -Jackson,MS,39211 -Jackson,MS,39212 -Jackson,MS,39213 -Jackson,MS,39216 -Richland,MS,39218 -Jackson,MS,39269 -Meridian,MS,39301 -Meridian,MS,39305 -Meridian,MS,39307 -Bailey,MS,39320 -Buckatunna,MS,39322 -Chunky,MS,39323 -Collinsville,MS,39325 -Daleville,MS,39326 -Decatur,MS,39327 -De Kalb,MS,39328 -Enterprise,MS,39330 -Hickory,MS,39332 -Lauderdale,MS,39335 -Lawrence,MS,39336 -Little Rock,MS,39337 -Louin,MS,39338 -Louisville,MS,39339 -Macon,MS,39341 -Newton,MS,39345 -Noxapater,MS,39346 -Pachuta,MS,39347 -Paulding,MS,39348 -Philadelphia,MS,39350 -Porterville,MS,39352 -Preston,MS,39354 -Quitman,MS,39355 -Rose Hill,MS,39356 -Scooba,MS,39358 -Matherville,MS,39360 -Shuqualak,MS,39361 -State Line,MS,39362 -Stonewall,MS,39363 -Toomsuba,MS,39364 -Union,MS,39365 -Vossburg,MS,39366 -Waynesboro,MS,39367 -Hattiesburg,MS,39401 -Hattiesburg,MS,39402 -Bassfield,MS,39421 -Bay Springs,MS,39422 -Beaumont,MS,39423 -Brooklyn,MS,39425 -Carriere,MS,39426 -Carson,MS,39427 -Collins,MS,39428 -Columbia,MS,39429 -Ellisville,MS,39437 -Heidelberg,MS,39439 -Laurel,MS,39440 -Leakesville,MS,39451 -Agricola,MS,39452 -Lumberton,MS,39455 -Leaf,MS,39456 -Moselle,MS,39459 -Neely,MS,39461 -New Augusta,MS,39462 -Ovett,MS,39464 -Petal,MS,39465 -Picayune,MS,39466 -Poplarville,MS,39470 -Prentiss,MS,39474 -Purvis,MS,39475 -Richton,MS,39476 -Sandy Hook,MS,39478 -Seminary,MS,39479 -Soso,MS,39480 -Stringer,MS,39481 -Sumrall,MS,39482 -Foxworth,MS,39483 -Gulfport,MS,39501 -Gulfport,MS,39503 -Gulfport,MS,39507 -Diamondhead,MS,39520 -Biloxi,MS,39530 -Biloxi,MS,39531 -North Bay,MS,39532 -Gautier,MS,39553 -Long Beach,MS,39560 -Mc Henry,MS,39561 -Kreole,MS,39563 -Ocean Springs,MS,39564 -Pascagoula,MS,39567 -Pass Christian,MS,39571 -Perkinston,MS,39573 -Saucier,MS,39574 -Waveland,MS,39576 -Wiggins,MS,39577 -Pascagoula,MS,39581 -Brookhaven,MS,39601 -Bogue Chitto,MS,39629 -Centreville,MS,39631 -Crosby,MS,39633 -Gloster,MS,39638 -Jayess,MS,39641 -Kokomo,MS,39643 -Liberty,MS,39645 -Mc Call Creek,MS,39647 -Mc Comb,MS,39648 -Magnolia,MS,39652 -Meadville,MS,39653 -Monticello,MS,39654 -Oak Vale,MS,39656 -Osyka,MS,39657 -Roxie,MS,39661 -Ruth,MS,39662 -Silver Creek,MS,39663 -Smithdale,MS,39664 -Sontag,MS,39665 -Summit,MS,39666 -Tylertown,MS,39667 -Union Church,MS,39668 -Woodville,MS,39669 -Columbus,MS,39701 -Columbus,MS,39702 -Aberdeen,MS,39730 -Ackerman,MS,39735 -Brooksville,MS,39739 -Caledonia,MS,39740 -Cedarbluff,MS,39741 -Crawford,MS,39743 -Tomnolen,MS,39744 -French Camp,MS,39745 -Hamilton,MS,39746 -Kilmichael,MS,39747 -Maben,MS,39750 -Mantee,MS,39751 -Mathiston,MS,39752 -Pheba,MS,39755 -Prairie,MS,39756 -Sessums,MS,39759 -Steens,MS,39766 -Stewart,MS,39767 -Sturgis,MS,39769 -Weir,MS,39772 -West Point,MS,39773 -Woodland,MS,39776 -Chesterfield,MO,63005 -Arnold,MO,63010 -Manchester,MO,63011 -Barnhart,MO,63012 -Beaufort,MO,63013 -Berger,MO,63014 -Catawissa,MO,63015 -Cedar Hill,MO,63016 -Town And Country,MO,63017 -Crystal City,MO,63019 -De Soto,MO,63020 -Ballwin,MO,63021 -Dittmer,MO,63023 -Crescent,MO,63025 -Fenton,MO,63026 -Festus,MO,63028 -Fletcher,MO,63030 -Florissant,MO,63031 -Florissant,MO,63033 -Florissant,MO,63034 -French Village,MO,63036 -Gerald,MO,63037 -Glencoe,MO,63038 -Gray Summit,MO,63039 -Grover,MO,63040 -Hazelwood,MO,63042 -Maryland Heights,MO,63043 -Bridgeton,MO,63044 -Bridgeton,MO,63045 -Herculaneum,MO,63048 -High Ridge,MO,63049 -Hillsboro,MO,63050 -House Springs,MO,63051 -Antonia,MO,63052 -Labadie,MO,63055 -Leslie,MO,63056 -Lonedell,MO,63060 -Luebbering,MO,63061 -New Haven,MO,63068 -Pacific,MO,63069 -Pevely,MO,63070 -Richwoods,MO,63071 -Robertsville,MO,63072 -Saint Ann,MO,63074 -Saint Clair,MO,63077 -Sullivan,MO,63080 -Union,MO,63084 -Valley Park,MO,63088 -Villa Ridge,MO,63089 -Washington,MO,63090 -Rosebud,MO,63091 -Saint Louis,MO,63101 -Saint Louis,MO,63102 -Saint Louis,MO,63103 -Saint Louis,MO,63104 -Clayton,MO,63105 -Saint Louis,MO,63106 -Saint Louis,MO,63107 -Saint Louis,MO,63108 -Saint Louis,MO,63109 -Saint Louis,MO,63110 -Saint Louis,MO,63111 -Saint Louis,MO,63112 -Saint Louis,MO,63113 -Overland,MO,63114 -Saint Louis,MO,63115 -Saint Louis,MO,63116 -Richmond Heights,MO,63117 -Saint Louis,MO,63118 -Webster Groves,MO,63119 -Saint Louis,MO,63120 -Normandy,MO,63121 -Kirkwood,MO,63122 -Affton,MO,63123 -Ladue,MO,63124 -Lemay,MO,63125 -Sappington,MO,63126 -Sappington,MO,63127 -Sappington,MO,63128 -South County,MO,63129 -University City,MO,63130 -Des Peres,MO,63131 -Olivette,MO,63132 -Saint Louis,MO,63133 -Berkeley,MO,63134 -Ferguson,MO,63135 -Jennings,MO,63136 -North County,MO,63137 -North County,MO,63138 -Saint Louis,MO,63139 -Berkeley,MO,63140 -Creve Coeur,MO,63141 -Maplewood,MO,63143 -Brentwood,MO,63144 -West County,MO,63146 -Saint Louis,MO,63147 -Saint Charles,MO,63301 -Saint Charles,MO,63303 -Saint Charles,MO,63304 -Annada,MO,63330 -Augusta,MO,63332 -Bellflower,MO,63333 -Bowling Green,MO,63334 -Clarksville,MO,63336 -Curryville,MO,63339 -Defiance,MO,63341 -Elsberry,MO,63343 -Eolia,MO,63344 -Farber,MO,63345 -Foley,MO,63347 -Foristell,MO,63348 -Hawk Point,MO,63349 -High Hill,MO,63350 -Jonesburg,MO,63351 -Laddonia,MO,63352 -Louisiana,MO,63353 -Lake Sherwood,MO,63357 -Middletown,MO,63359 -Montgomery City,MO,63361 -Moscow Mills,MO,63362 -New Florence,MO,63363 -New Hartford,MO,63364 -Saint Paul,MO,63366 -Lake Saint Louis,MO,63367 -Old Monroe,MO,63369 -Olney,MO,63370 -Paynesville,MO,63371 -Portage Des Siou,MO,63373 -Saint Peters,MO,63376 -Silex,MO,63377 -Troy,MO,63379 -Truxton,MO,63381 -Vandalia,MO,63382 -Warrenton,MO,63383 -Wellsville,MO,63384 -Wentzville,MO,63385 -West Alton,MO,63386 -Williamsburg,MO,63388 -Winfield,MO,63389 -Wright City,MO,63390 -Hannibal,MO,63401 -Alexandria,MO,63430 -Anabel,MO,63431 -Arbela,MO,63432 -Ashburn,MO,63433 -Bethel,MO,63434 -Canton,MO,63435 -Center,MO,63436 -Clarence,MO,63437 -Durham,MO,63438 -Emden,MO,63439 -Ewing,MO,63440 -Frankford,MO,63441 -Hunnewell,MO,63443 -Kahoka,MO,63445 -Knox City,MO,63446 -La Belle,MO,63447 -La Grange,MO,63448 -Lentner,MO,63450 -Leonard,MO,63451 -Lewistown,MO,63452 -Luray,MO,63453 -Maywood,MO,63454 -Monroe City,MO,63456 -Monticello,MO,63457 -Newark,MO,63458 -New London,MO,63459 -Novelty,MO,63460 -Palmyra,MO,63461 -Perry,MO,63462 -Philadelphia,MO,63463 -Plevna,MO,63464 -Saint Patrick,MO,63466 -Shelbina,MO,63468 -Shelbyville,MO,63469 -Steffenville,MO,63470 -Taylor,MO,63471 -Wayland,MO,63472 -Williamstown,MO,63473 -Wyaconda,MO,63474 -Kirksville,MO,63501 -Atlanta,MO,63530 -Baring,MO,63531 -Bevier,MO,63532 -Brashear,MO,63533 -Callao,MO,63534 -Coatsville,MO,63535 -Downing,MO,63536 -Edina,MO,63537 -Elmer,MO,63538 -Ethel,MO,63539 -Gibbs,MO,63540 -Glenwood,MO,63541 -Gorin,MO,63543 -Green Castle,MO,63544 -Green City,MO,63545 -Greentop,MO,63546 -Hurdland,MO,63547 -Lancaster,MO,63548 -La Plata,MO,63549 -Livonia,MO,63551 -Macon,MO,63552 -Memphis,MO,63555 -Milan,MO,63556 -New Boston,MO,63557 -New Cambria,MO,63558 -Novinger,MO,63559 -Pollock,MO,63560 -Queen City,MO,63561 -Rutledge,MO,63563 -Unionville,MO,63565 -Winigan,MO,63566 -Worthington,MO,63567 -Desloge,MO,63601 -Annapolis,MO,63620 -Arcadia,MO,63621 -Belgrade,MO,63622 -Belleview,MO,63623 -Desloge,MO,63624 -Black,MO,63625 -Blackwell,MO,63626 -Bloomsdale,MO,63627 -Bonne Terre,MO,63628 -Bunker,MO,63629 -Cadet,MO,63630 -Caledonia,MO,63631 -Centerville,MO,63633 -Des Arc,MO,63636 -Doe Run,MO,63637 -Ellington,MO,63638 -Farmington,MO,63640 -Millcreek,MO,63645 -Irondale,MO,63648 -Iron Mountain,MO,63650 -Leadwood,MO,63653 -Lesterville,MO,63654 -Marquand,MO,63655 -Middle Brook,MO,63656 -Mineral Point,MO,63660 -Patton,MO,63662 -Potosi,MO,63664 -Redford,MO,63665 -Lake Forest Esta,MO,63670 -Saint Mary,MO,63673 -Vulcan,MO,63675 -Cape Girardeau,MO,63701 -Advance,MO,63730 -New Wells,MO,63732 -Arab,MO,63733 -Bell City,MO,63735 -Benton,MO,63736 -Burfordville,MO,63739 -Chaffee,MO,63740 -Daisy,MO,63743 -Delta,MO,63744 -Friedheim,MO,63747 -Frohna,MO,63748 -Gipsy,MO,63750 -Glenallen,MO,63751 -Grassy,MO,63753 -Jackson,MO,63755 -Leopold,MO,63760 -Mc Gee,MO,63763 -Scopus,MO,63764 -Millersville,MO,63766 -63768,MO,63768 -Oak Ridge,MO,63769 -Old Appleton,MO,63770 -Oran,MO,63771 -Perryville,MO,63775 -Scott City,MO,63780 -Sedgewickville,MO,63781 -Sturdivant,MO,63782 -Uniontown,MO,63783 -Whitewater,MO,63785 -Wittenberg,MO,63786 -Zalma,MO,63787 -Sikeston,MO,63801 -Arbyrd,MO,63821 -Bernie,MO,63822 -Bertrand,MO,63823 -Bloomfield,MO,63825 -Bragg City,MO,63827 -Cardwell,MO,63829 -Caruthersville,MO,63830 -Catron,MO,63833 -Charleston,MO,63834 -Clarkton,MO,63837 -Dexter,MO,63841 -East Prairie,MO,63845 -Essex,MO,63846 -Gideon,MO,63848 -Gobler,MO,63849 -Hayti Heights,MO,63851 -Holcomb,MO,63852 -Hornersville,MO,63855 -Kennett,MO,63857 -Lilbourn,MO,63862 -Malden,MO,63863 -Marston,MO,63866 -Matthews,MO,63867 -Morehouse,MO,63868 -New Madrid,MO,63869 -Parma,MO,63870 -Portageville,MO,63873 -Senath,MO,63876 -Steele,MO,63877 -Homestown,MO,63879 -Poplar Bluff,MO,63901 -Briar,MO,63931 -Broseley,MO,63932 -Campbell,MO,63933 -Clubb,MO,63934 -Poynor,MO,63935 -Dudley,MO,63936 -Ellsinore,MO,63937 -Fairdealing,MO,63939 -Fisk,MO,63940 -Fremont,MO,63941 -Gatewood,MO,63942 -Grandin,MO,63943 -Greenville,MO,63944 -Harviell,MO,63945 -Hiram,MO,63947 -Lodi,MO,63950 -Lowndes,MO,63951 -Mill Spring,MO,63952 -Naylor,MO,63953 -Neelyville,MO,63954 -Oxly,MO,63955 -Patterson,MO,63956 -Piedmont,MO,63957 -63959,MO,63959 -Puxico,MO,63960 -Qulin,MO,63961 -Shook,MO,63963 -Silva,MO,63964 -Van Buren,MO,63965 -Wappapello,MO,63966 -Williamsville,MO,63967 -Alma,MO,64001 -Bates City,MO,64011 -Belton,MO,64012 -Blue Springs,MO,64014 -Lake Tapawingo,MO,64015 -Buckner,MO,64016 -Camden,MO,64017 -Camden Point,MO,64018 -Centerview,MO,64019 -Concordia,MO,64020 -Corder,MO,64021 -Dover,MO,64022 -Excelsior Spring,MO,64024 -Grain Valley,MO,64029 -Grandview,MO,64030 -Lake Winnebago,MO,64034 -Hardin,MO,64035 -Henrietta,MO,64036 -Higginsville,MO,64037 -Holden,MO,64040 -Holt,MO,64048 -Independence,MO,64050 -Independence,MO,64052 -Independence,MO,64053 -Sugar Creek,MO,64054 -Independence,MO,64055 -Independence,MO,64056 -Independence,MO,64057 -Independence,MO,64058 -Kearney,MO,64060 -Kingsville,MO,64061 -Lawson,MO,64062 -Lake Lotawana,MO,64063 -Lees Summit,MO,64064 -Lexington,MO,64067 -Pleasant Valley,MO,64068 -Lone Jack,MO,64070 -Mayview,MO,64071 -Napoleon,MO,64074 -Oak Grove,MO,64075 -Odessa,MO,64076 -Orrick,MO,64077 -Peculiar,MO,64078 -Platte City,MO,64079 -Pleasant Hill,MO,64080 -Lees Summit,MO,64081 -Lees Summit,MO,64082 -Raymore,MO,64083 -Rayville,MO,64084 -Richmond,MO,64085 -Sibley,MO,64088 -Smithville,MO,64089 -Warrensburg,MO,64093 -Waverly,MO,64096 -Wellington,MO,64097 -Weston,MO,64098 -Kansas City,MO,64101 -Kansas City,MO,64102 -Kansas City,MO,64105 -Kansas City,MO,64106 -Kansas City,MO,64108 -Kansas City,MO,64109 -Kansas City,MO,64110 -Kansas City,MO,64111 -Kansas City,MO,64112 -Kansas City,MO,64113 -Kansas City,MO,64114 -North Kansas Cit,MO,64116 -Randolph,MO,64117 -Gladstone,MO,64118 -Kansas City,MO,64119 -Kansas City,MO,64120 -Kansas City,MO,64123 -Kansas City,MO,64124 -Kansas City,MO,64125 -Kansas City,MO,64126 -Kansas City,MO,64127 -Kansas City,MO,64128 -Kansas City,MO,64129 -Kansas City,MO,64130 -Kansas City,MO,64131 -Kansas City,MO,64132 -Raytown,MO,64133 -Kansas City,MO,64134 -Kansas City,MO,64136 -Kansas City,MO,64137 -Raytown,MO,64138 -Kansas City,MO,64139 -Kansas City,MO,64145 -Kansas City,MO,64146 -Martin City,MO,64147 -Kansas City,MO,64149 -Kansas City,MO,64150 -Lake Waukomis,MO,64151 -Parkville,MO,64152 -Kansas City,MO,64153 -Kansas City,MO,64154 -Kansas City,MO,64155 -Kansas City,MO,64156 -Kansas City,MO,64157 -Kansas City,MO,64158 -Randolph,MO,64161 -Ferrelview,MO,64163 -Kansas City,MO,64164 -Kansas City,MO,64165 -Kansas City,MO,64166 -Kansas City,MO,64167 -Agency,MO,64401 -Albany,MO,64402 -Amazonia,MO,64421 -Amity,MO,64422 -Barnard,MO,64423 -Bethany,MO,64424 -64425,MO,64425 -Blythedale,MO,64426 -Bolckow,MO,64427 -Burlington Junct,MO,64428 -Cameron,MO,64429 -Clarksdale,MO,64430 -Clearmont,MO,64431 -Clyde,MO,64432 -Conception,MO,64433 -Conception Junct,MO,64434 -Corning,MO,64435 -Cosby,MO,64436 -Bigelow,MO,64437 -Darlington,MO,64438 -Dearborn,MO,64439 -De Kalb,MO,64440 -Denver,MO,64441 -Eagleville,MO,64442 -Easton,MO,64443 -Edgerton,MO,64444 -Elmo,MO,64445 -Fairfax,MO,64446 -Faucett,MO,64448 -Fillmore,MO,64449 -Forest City,MO,64451 -Fortescue,MO,64452 -Gentry,MO,64453 -Gower,MO,64454 -Graham,MO,64455 -Grant City,MO,64456 -Guilford,MO,64457 -Hatfield,MO,64458 -Helena,MO,64459 -Hopkins,MO,64461 -King City,MO,64463 -Lathrop,MO,64465 -Maitland,MO,64466 -Martinsville,MO,64467 -Maryville,MO,64468 -Maysville,MO,64469 -Mound City,MO,64470 -New Hampton,MO,64471 -Oregon,MO,64473 -Osborn,MO,64474 -Parnell,MO,64475 -Pickering,MO,64476 -Plattsburg,MO,64477 -Quitman,MO,64478 -Ravenwood,MO,64479 -Rea,MO,64480 -Ridgeway,MO,64481 -Rock Port,MO,64482 -Rosendale,MO,64483 -Rushville,MO,64484 -Savannah,MO,64485 -Sheridan,MO,64486 -Skidmore,MO,64487 -Stanberry,MO,64489 -Hemple,MO,64490 -Tarkio,MO,64491 -Trimble,MO,64492 -Turney,MO,64493 -Union Star,MO,64494 -Watson,MO,64496 -Weatherby,MO,64497 -Westboro,MO,64498 -Worth,MO,64499 -Saint Joseph,MO,64501 -Saint Joseph,MO,64503 -Saint Joseph,MO,64504 -Saint Joseph,MO,64505 -Saint Joseph,MO,64506 -Saint Joseph,MO,64507 -Chillicothe,MO,64601 -Altamont,MO,64620 -Avalon,MO,64621 -Bogard,MO,64622 -Bosworth,MO,64623 -Braymer,MO,64624 -Breckenridge,MO,64625 -Brookfield,MO,64628 -Browning,MO,64630 -Bucklin,MO,64631 -Cainsville,MO,64632 -Carrollton,MO,64633 -Chula,MO,64635 -Coffey,MO,64636 -Cowgill,MO,64637 -Dawn,MO,64638 -De Witt,MO,64639 -Gallatin,MO,64640 -Galt,MO,64641 -Gilman City,MO,64642 -Hale,MO,64643 -Hamilton,MO,64644 -Harris,MO,64645 -Humphreys,MO,64646 -Jameson,MO,64647 -Jamesport,MO,64648 -Kidder,MO,64649 -Kingston,MO,64650 -Laclede,MO,64651 -Laredo,MO,64652 -Linneus,MO,64653 -Lock Springs,MO,64654 -Lucerne,MO,64655 -Ludlow,MO,64656 -Mc Fall,MO,64657 -Marceline,MO,64658 -Meadville,MO,64659 -Mendon,MO,64660 -Mercer,MO,64661 -Mooresville,MO,64664 -Mount Moriah,MO,64665 -Newtown,MO,64667 -Norborne,MO,64668 -Pattonsburg,MO,64670 -Polo,MO,64671 -Powersville,MO,64672 -Princeton,MO,64673 -Purdin,MO,64674 -Rothville,MO,64676 -Saint Catharine,MO,64677 -Spickard,MO,64679 -Sumner,MO,64681 -Tina,MO,64682 -Trenton,MO,64683 -Utica,MO,64686 -Wheeling,MO,64688 -Winston,MO,64689 -Harrisonville,MO,64701 -Adrian,MO,64720 -Amoret,MO,64722 -Amsterdam,MO,64723 -Appleton City,MO,64724 -Archie,MO,64725 -Blairstown,MO,64726 -Bronaugh,MO,64728 -Butler,MO,64730 -Chilhowee,MO,64733 -Cleveland,MO,64734 -Tightwad,MO,64735 -Collins,MO,64738 -Creighton,MO,64739 -Deepwater,MO,64740 -Deerfield,MO,64741 -Drexel,MO,64742 -El Dorado Spring,MO,64744 -Foster,MO,64745 -Freeman,MO,64746 -Garden City,MO,64747 -Golden City,MO,64748 -Harwood,MO,64750 -Horton,MO,64751 -Stotesbury,MO,64752 -Jasper,MO,64755 -Jerico Springs,MO,64756 -Iantha,MO,64759 -Latour,MO,64760 -Leeton,MO,64761 -Liberal,MO,64762 -Lowry City,MO,64763 -Milo,MO,64767 -Mindenmines,MO,64769 -Montrose,MO,64770 -Moundville,MO,64771 -Nevada,MO,64772 -Osceola,MO,64776 -Richards,MO,64778 -Rich Hill,MO,64779 -Rockville,MO,64780 -Schell City,MO,64783 -Sheldon,MO,64784 -Urich,MO,64788 -Walker,MO,64790 -Joplin,MO,64801 -Joplin,MO,64804 -Anderson,MO,64831 -Asbury,MO,64832 -Avilla,MO,64833 -Carl Junction,MO,64834 -Carterville,MO,64835 -Carthage,MO,64836 -Diamond,MO,64840 -Fairview,MO,64842 -Goodman,MO,64843 -Granby,MO,64844 -Lanagan,MO,64847 -La Russell,MO,64848 -Neosho,MO,64850 -Noel,MO,64854 -Oronogo,MO,64855 -Jane,MO,64856 -Reeds,MO,64859 -Rocky Comfort,MO,64861 -Sarcoxie,MO,64862 -South West City,MO,64863 -Seneca,MO,64865 -Stark City,MO,64866 -Stella,MO,64867 -Tiff City,MO,64868 -Webb City,MO,64870 -Wentworth,MO,64873 -Wheaton,MO,64874 -Argyle,MO,65001 -Ashland,MO,65010 -Barnett,MO,65011 -Belle,MO,65013 -Bland,MO,65014 -Bonnots Mill,MO,65016 -Brumley,MO,65017 -California,MO,65018 -Camdenton,MO,65020 -Centertown,MO,65023 -Chamois,MO,65024 -Clarksburg,MO,65025 -Eldon,MO,65026 -Eugene,MO,65032 -Fortuna,MO,65034 -Freeburg,MO,65035 -Gravois Mills,MO,65037 -Hartsburg,MO,65039 -Henley,MO,65040 -Bay,MO,65041 -High Point,MO,65042 -Holts Summit,MO,65043 -Jamestown,MO,65046 -Kaiser,MO,65047 -Koeltztown,MO,65048 -Four Seasons,MO,65049 -Latham,MO,65050 -Linn,MO,65051 -Linn Creek,MO,65052 -Lohman,MO,65053 -Loose Creek,MO,65054 -Meta,MO,65058 -Mokane,MO,65059 -Morrison,MO,65061 -Mount Sterling,MO,65062 -New Bloomfield,MO,65063 -Olean,MO,65064 -Osage Beach,MO,65065 -Owensville,MO,65066 -Portland,MO,65067 -Prairie Home,MO,65068 -Rhineland,MO,65069 -Rocky Mount,MO,65072 -Russellville,MO,65074 -Saint Elizabeth,MO,65075 -Saint Thomas,MO,65076 -Steedman,MO,65077 -Stover,MO,65078 -Sunrise Beach,MO,65079 -Tebbetts,MO,65080 -Tipton,MO,65081 -Tuscumbia,MO,65082 -Ulman,MO,65083 -Versailles,MO,65084 -Westphalia,MO,65085 -Jefferson City,MO,65101 -Jefferson City,MO,65109 -Columbia,MO,65201 -Columbia,MO,65202 -Columbia,MO,65203 -Armstrong,MO,65230 -Auxvasse,MO,65231 -Benton City,MO,65232 -Boonville,MO,65233 -Brunswick,MO,65236 -Bunceton,MO,65237 -Cairo,MO,65239 -Centralia,MO,65240 -Clark,MO,65243 -Clifton Hill,MO,65244 -Dalton,MO,65246 -Excello,MO,65247 -Fayette,MO,65248 -Franklin,MO,65250 -Fulton,MO,65251 -Glasgow,MO,65254 -Hallsville,MO,65255 -Harrisburg,MO,65256 -Higbee,MO,65257 -Holliday,MO,65258 -Huntsville,MO,65259 -Jacksonville,MO,65260 -Keytesville,MO,65261 -Kingdom City,MO,65262 -Madison,MO,65263 -Martinsburg,MO,65264 -Mexico,MO,65265 -Moberly,MO,65270 -New Franklin,MO,65274 -Paris,MO,65275 -Pilot Grove,MO,65276 -Rocheport,MO,65279 -Rush Hill,MO,65280 -Salisbury,MO,65281 -Santa Fe,MO,65282 -Stoutsville,MO,65283 -Sturgeon,MO,65284 -Thompson,MO,65285 -Triplett,MO,65286 -Wooldridge,MO,65287 -Sedalia,MO,65301 -Whiteman Afb,MO,65305 -Blackburn,MO,65321 -Blackwater,MO,65322 -Calhoun,MO,65323 -Climax Springs,MO,65324 -Cole Camp,MO,65325 -Edwards,MO,65326 -Florence,MO,65329 -Gilliam,MO,65330 -Green Ridge,MO,65332 -Houstonia,MO,65333 -Hughesville,MO,65334 -Ionia,MO,65335 -Knob Noster,MO,65336 -La Monte,MO,65337 -Lincoln,MO,65338 -Grand Pass,MO,65339 -Napton,MO,65340 -Miami,MO,65344 -Mora,MO,65345 -Nelson,MO,65347 -Otterville,MO,65348 -Slater,MO,65349 -Smithton,MO,65350 -Sweet Springs,MO,65351 -Syracuse,MO,65354 -Warsaw,MO,65355 -Windsor,MO,65360 -Rolla,MO,65401 -Bendavis,MO,65433 -Beulah,MO,65436 -Birch Tree,MO,65438 -Bixby,MO,65439 -Boss,MO,65440 -Bourbon,MO,65441 -Brinktown,MO,65443 -Bucyrus,MO,65444 -Cherryville,MO,65446 -Cook Station,MO,65449 -65451,MO,65451 -Crocker,MO,65452 -Cuba,MO,65453 -Davisville,MO,65456 -Devils Elbow,MO,65457 -Dixon,MO,65459 -Duke,MO,65461 -Edgar Springs,MO,65462 -Eldridge,MO,65463 -Elk Creek,MO,65464 -Eminence,MO,65466 -Eunice,MO,65468 -Falcon,MO,65470 -Fort Leonard Woo,MO,65473 -Hartshorn,MO,65479 -Houston,MO,65483 -Huggins,MO,65484 -Iberia,MO,65486 -Jadwin,MO,65501 -Jerome,MO,65529 -Laquey,MO,65534 -Leasburg,MO,65535 -Lebanon,MO,65536 -Anutt,MO,65540 -Lenox,MO,65541 -Licking,MO,65542 -Lynchburg,MO,65543 -Mountain View,MO,65548 -Newburg,MO,65550 -Plato,MO,65552 -Raymondville,MO,65555 -Richland,MO,65556 -Roby,MO,65557 -Saint James,MO,65559 -Salem,MO,65560 -Solo,MO,65564 -Berryman,MO,65565 -Viburnum,MO,65566 -Stoutland,MO,65567 -Success,MO,65570 -Summersville,MO,65571 -Teresita,MO,65573 -Vichy,MO,65580 -Vienna,MO,65582 -Saint Robert,MO,65583 -Wesco,MO,65586 -Winona,MO,65588 -Yukon,MO,65589 -Long Lane,MO,65590 -Montreal,MO,65591 -Aldrich,MO,65601 -Arcola,MO,65603 -Ash Grove,MO,65604 -Jenkins,MO,65605 -Riverton,MO,65606 -Ava,MO,65608 -Bakersfield,MO,65609 -Billings,MO,65610 -Blue Eye,MO,65611 -Bois D Arc,MO,65612 -Bolivar,MO,65613 -Bradleyville,MO,65614 -Marvel Cave Park,MO,65616 -Brighton,MO,65617 -Brixey,MO,65618 -Brookline Statio,MO,65619 -Bruner,MO,65620 -Buffalo,MO,65622 -Butterfield,MO,65623 -Cape Fair,MO,65624 -Cassville,MO,65625 -Caulfield,MO,65626 -Cedarcreek,MO,65627 -Chadwick,MO,65629 -Chestnutridge,MO,65630 -Clever,MO,65631 -Conway,MO,65632 -Crane,MO,65633 -Cross Timbers,MO,65634 -Dadeville,MO,65635 -Dora,MO,65637 -Drury,MO,65638 -Dunnegan,MO,65640 -Eagle Rock,MO,65641 -Elkland,MO,65644 -Everton,MO,65646 -Exeter,MO,65647 -Fair Grove,MO,65648 -Fair Play,MO,65649 -Flemington,MO,65650 -Fordland,MO,65652 -Forsyth,MO,65653 -Freistatt,MO,65654 -Gainesville,MO,65655 -Galena,MO,65656 -Garrison,MO,65657 -Golden,MO,65658 -Goodson,MO,65659 -Graff,MO,65660 -Greenfield,MO,65661 -Grovespring,MO,65662 -Half Way,MO,65663 -Hardenville,MO,65666 -Hartville,MO,65667 -Hermitage,MO,65668 -Highlandville,MO,65669 -Hollister,MO,65672 -Humansville,MO,65674 -Hurley,MO,65675 -Isabella,MO,65676 -Kirbyville,MO,65679 -Kissee Mills,MO,65680 -Lampe,MO,65681 -Lockwood,MO,65682 -Louisburg,MO,65685 -Kimberling City,MO,65686 -Brandsville,MO,65688 -Cabool,MO,65689 -Couch,MO,65690 -Koshkonong,MO,65692 -Mc Clurg,MO,65701 -Macomb,MO,65702 -Mansfield,MO,65704 -Marionville,MO,65705 -Marshfield,MO,65706 -Miller,MO,65707 -Monett,MO,65708 -Morrisville,MO,65710 -Mountain Grove,MO,65711 -Mount Vernon,MO,65712 -Niangua,MO,65713 -Nixa,MO,65714 -Noble,MO,65715 -Norwood,MO,65717 -Oldfield,MO,65720 -Ozark,MO,65721 -Phillipsburg,MO,65722 -Pierce City,MO,65723 -Pittsburg,MO,65724 -Pleasant Hope,MO,65725 -Polk,MO,65727 -Ponce De Leon,MO,65728 -Pontiac,MO,65729 -Powell,MO,65730 -Powersite,MO,65731 -Preston,MO,65732 -Protem,MO,65733 -Purdy,MO,65734 -Quincy,MO,65735 -Branson West,MO,65737 -Republic,MO,65738 -Ridgedale,MO,65739 -Rockaway Beach,MO,65740 -Rogersville,MO,65742 -Rueter,MO,65744 -Seligman,MO,65745 -Seymour,MO,65746 -Shell Knob,MO,65747 -65751,MO,65751 -South Greenfield,MO,65752 -Sparta,MO,65753 -Spokane,MO,65754 -Squires,MO,65755 -Stotts City,MO,65756 -Strafford,MO,65757 -Sycamore,MO,65758 -Taneyville,MO,65759 -Tecumseh,MO,65760 -Dugginsville,MO,65761 -Nottinghill,MO,65762 -Tunas,MO,65764 -Udall,MO,65766 -Urbana,MO,65767 -Vanzant,MO,65768 -Verona,MO,65769 -Walnut Grove,MO,65770 -Walnut Shade,MO,65771 -Washburn,MO,65772 -Souder,MO,65773 -Weaubleau,MO,65774 -West Plains,MO,65775 -South Fork,MO,65776 -Moody,MO,65777 -Myrtle,MO,65778 -Wheatland,MO,65779 -Willard,MO,65781 -Windyville,MO,65783 -Zanoni,MO,65784 -Stockton,MO,65785 -Macks Creek,MO,65786 -Roach,MO,65787 -Peace Valley,MO,65788 -Pomona,MO,65789 -Pottersville,MO,65790 -Thayer,MO,65791 -Willow Springs,MO,65793 -Springfield,MO,65802 -Springfield,MO,65803 -Springfield,MO,65804 -Springfield,MO,65806 -Springfield,MO,65807 -Springfield,MO,65809 -Springfield,MO,65810 -Absarokee,MT,59001 -Acton,MT,59002 -Ashland,MT,59003 -Ballantine,MT,59006 -Bearcreek,MT,59007 -Belfry,MT,59008 -Bighorn,MT,59010 -Big Timber,MT,59011 -Birney,MT,59012 -Bridger,MT,59014 -Broadview,MT,59015 -Busby,MT,59016 -Cat Creek,MT,59017 -Columbus,MT,59019 -Crow Agency,MT,59022 -Custer,MT,59024 -Decker,MT,59025 -Emigrant,MT,59027 -Fishtail,MT,59028 -Fromberg,MT,59029 -Gardiner,MT,59030 -Garryowen,MT,59031 -Grass Range,MT,59032 -Greycliff,MT,59033 -Hardin,MT,59034 -Huntley,MT,59037 -Hysham,MT,59038 -Ingomar,MT,59039 -Silesia,MT,59041 -Lame Deer,MT,59043 -Laurel,MT,59044 -Lavina,MT,59046 -Livingston,MT,59047 -Lodge Grass,MT,59050 -Luther,MT,59051 -Mc Leod,MT,59052 -Martinsdale,MT,59053 -Melville,MT,59055 -Molt,MT,59057 -Mosby,MT,59058 -Musselshell,MT,59059 -Nye,MT,59061 -Otter,MT,59062 -Park City,MT,59063 -Pompeys Pillar,MT,59064 -Pray,MT,59065 -Rapelje,MT,59067 -Red Lodge,MT,59068 -Reedpoint,MT,59069 -Roberts,MT,59070 -Roscoe,MT,59071 -Roundup,MT,59072 -Ryegate,MT,59074 -Saint Xavier,MT,59075 -Sand Springs,MT,59077 -Shawmut,MT,59078 -Shepherd,MT,59079 -59080,MT,59080 -Twodot,MT,59085 -Wilsall,MT,59086 -Winnett,MT,59087 -Worden,MT,59088 -Wyola,MT,59089 -Billings,MT,59101 -Billings,MT,59102 -Billings Heights,MT,59105 -Billings,MT,59106 -Wolf Point,MT,59201 -Antelope,MT,59211 -Bainville,MT,59212 -Brockton,MT,59213 -Brockway,MT,59214 -Circle,MT,59215 -Culbertson,MT,59218 -Dagmar,MT,59219 -Fairview,MT,59221 -Flaxville,MT,59222 -Fort Peck,MT,59223 -Lustre,MT,59225 -Froid,MT,59226 -Glasgow,MT,59230 -Hinsdale,MT,59241 -Homestead,MT,59242 -Lambert,MT,59243 -Larslan,MT,59244 -Medicine Lake,MT,59247 -Nashua,MT,59248 -Opheim,MT,59250 -Outlook,MT,59252 -Peerless,MT,59253 -Plentywood,MT,59254 -Poplar,MT,59255 -Raymond,MT,59256 -Redstone,MT,59257 -Reserve,MT,59258 -Richey,MT,59259 -Richland,MT,59260 -Saco,MT,59261 -Savage,MT,59262 -Scobey,MT,59263 -Sidney,MT,59270 -Vida,MT,59274 -Westby,MT,59275 -Whitetail,MT,59276 -Miles City,MT,59301 -Alzada,MT,59311 -Angela,MT,59312 -Baker,MT,59313 -Biddle,MT,59314 -Bloomfield,MT,59315 -Boyes,MT,59316 -Belle Creek,MT,59317 -Brusett,MT,59318 -Capitol,MT,59319 -Cohagen,MT,59322 -Ekalaka,MT,59324 -Fallon,MT,59326 -Forsyth,MT,59327 -Glendive,MT,59330 -Hammond,MT,59332 -Ismay,MT,59336 -Jordan,MT,59337 -Kinsey,MT,59338 -Lindsay,MT,59339 -Mildred,MT,59341 -Olive,MT,59343 -Plevna,MT,59344 -Powderville,MT,59345 -Rosebud,MT,59347 -Terry,MT,59349 -Volborg,MT,59351 -Wibaux,MT,59353 -Willard,MT,59354 -Great Falls,MT,59401 -Great Falls,MT,59404 -Great Falls,MT,59405 -Augusta,MT,59410 -Babb,MT,59411 -Belt,MT,59412 -Black Eagle,MT,59414 -Brady,MT,59416 -Saint Mary,MT,59417 -Buffalo,MT,59418 -Bynum,MT,59419 -Carter,MT,59420 -Cascade,MT,59421 -Choteau,MT,59422 -Coffee Creek,MT,59424 -Conrad,MT,59425 -Cut Bank,MT,59427 -Denton,MT,59430 -Dutton,MT,59433 -East Glacier Par,MT,59434 -Fairfield,MT,59436 -Floweree,MT,59440 -Forestgrove,MT,59441 -Fort Benton,MT,59442 -Fort Shaw,MT,59443 -Galata,MT,59444 -Geraldine,MT,59446 -Geyser,MT,59447 -Heart Butte,MT,59448 -Highwood,MT,59450 -Hilger,MT,59451 -Utica,MT,59452 -Judith Gap,MT,59453 -Kevin,MT,59454 -Ledger,MT,59456 -Lewistown,MT,59457 -Loma,MT,59460 -Moccasin,MT,59462 -Monarch,MT,59463 -Moore,MT,59464 -Neihart,MT,59465 -Pendroy,MT,59467 -Power,MT,59468 -Raynesford,MT,59469 -Roy,MT,59471 -Sand Coulee,MT,59472 -Shelby,MT,59474 -Stanford,MT,59479 -Stockett,MT,59480 -Sunburst,MT,59482 -Sun River,MT,59483 -Sweetgrass,MT,59484 -Valier,MT,59486 -Vaughn,MT,59487 -Winifred,MT,59489 -Havre,MT,59501 -Big Sandy,MT,59520 -Box Elder,MT,59521 -Chester,MT,59522 -Chinook,MT,59523 -Dodson,MT,59524 -Gildford,MT,59525 -Harlem,MT,59526 -Hays,MT,59527 -Hingham,MT,59528 -Hogeland,MT,59529 -Inverness,MT,59530 -Joplin,MT,59531 -Kremlin,MT,59532 -Lloyd,MT,59535 -Loring,MT,59537 -Malta,MT,59538 -Rudyard,MT,59540 -Turner,MT,59542 -Whitewater,MT,59544 -Whitlash,MT,59545 -Zortman,MT,59546 -Helena,MT,59601 -Boulder,MT,59632 -Canyon Creek,MT,59633 -Montana City,MT,59634 -East Helena,MT,59635 -Lincoln,MT,59639 -Radersburg,MT,59641 -Ringling,MT,59642 -Toston,MT,59643 -Townsend,MT,59644 -White Sulphur Sp,MT,59645 -Winston,MT,59647 -Wolf Creek,MT,59648 -Walkerville,MT,59701 -Anaconda,MT,59711 -Belgrade,MT,59714 -Bozeman,MT,59715 -Cameron,MT,59720 -Cardwell,MT,59721 -Deer Lodge,MT,59722 -Dell,MT,59724 -Dillon,MT,59725 -Divide,MT,59727 -Ennis,MT,59729 -Gallatin Gateway,MT,59730 -Garrison,MT,59731 -Gold Creek,MT,59733 -Harrison,MT,59735 -Jackson,MT,59736 -Lima,MT,59739 -Manhattan,MT,59741 -Norris,MT,59745 -Pony,MT,59747 -Ramsay,MT,59748 -Sheridan,MT,59749 -Butte,MT,59750 -Silver Star,MT,59751 -Three Forks,MT,59752 -Twin Bridges,MT,59754 -Virginia City,MT,59755 -Warmsprings,MT,59756 -West Yellowstone,MT,59758 -Whitehall,MT,59759 -Wisdom,MT,59761 -Wise River,MT,59762 -Missoula,MT,59801 -Missoula,MT,59802 -Missoula,MT,59803 -Alberton,MT,59820 -Arlee,MT,59821 -Bonner,MT,59823 -Moiese,MT,59824 -Clinton,MT,59825 -Condon,MT,59826 -Conner,MT,59827 -Corvallis,MT,59828 -Darby,MT,59829 -Dixon,MT,59831 -Drummond,MT,59832 -Florence,MT,59833 -Frenchtown,MT,59834 -Greenough,MT,59836 -Hall,MT,59837 -Hamilton,MT,59840 -Helmville,MT,59843 -Heron,MT,59844 -Hot Springs,MT,59845 -Huson,MT,59846 -Lolo,MT,59847 -Lonepine,MT,59848 -Niarada,MT,59852 -Noxon,MT,59853 -Ovando,MT,59854 -Philipsburg,MT,59858 -Plains,MT,59859 -Polson,MT,59860 -Ronan,MT,59864 -Saint Ignatius,MT,59865 -Saint Regis,MT,59866 -Seeley Lake,MT,59868 -Stevensville,MT,59870 -Sula,MT,59871 -Superior,MT,59872 -Thompson Falls,MT,59873 -Trout Creek,MT,59874 -Victor,MT,59875 -Evergreen,MT,59901 -Big Arm,MT,59910 -Swan Lake,MT,59911 -Columbia Falls,MT,59912 -Dayton,MT,59914 -Elmo,MT,59915 -Essex,MT,59916 -Eureka,MT,59917 -Kila,MT,59920 -Lakeside,MT,59922 -Libby,MT,59923 -Marion,MT,59925 -Polebridge,MT,59928 -Proctor,MT,59929 -Rexford,MT,59930 -Rollins,MT,59931 -Somers,MT,59932 -Troy,MT,59935 -Whitefish,MT,59937 -Abie,NE,68001 -Arlington,NE,68002 -Ashland,NE,68003 -Bancroft,NE,68004 -Bellevue,NE,68005 -Bennington,NE,68007 -Blair,NE,68008 -Bruno,NE,68014 -Cedar Bluffs,NE,68015 -Ceresco,NE,68017 -Colon,NE,68018 -Craig,NE,68019 -Decatur,NE,68020 -Elkhorn,NE,68022 -Fort Calhoun,NE,68023 -Fremont,NE,68025 -Gretna,NE,68028 -Herman,NE,68029 -Hooper,NE,68031 -Ithaca,NE,68033 -Kennard,NE,68034 -Leshara,NE,68035 -Linwood,NE,68036 -Louisville,NE,68037 -Lyons,NE,68038 -Macy,NE,68039 -Malmo,NE,68040 -Mead,NE,68041 -Nickerson,NE,68044 -Oakland,NE,68045 -Papillion,NE,68046 -Pender,NE,68047 -Plattsmouth,NE,68048 -Prague,NE,68050 -Richfield,NE,68054 -Rosalie,NE,68055 -Scribner,NE,68057 -Springfield,NE,68059 -Tekamah,NE,68061 -Thurston,NE,68062 -Valley,NE,68064 -Valparaiso,NE,68065 -Wahoo,NE,68066 -Walthill,NE,68067 -Waterloo,NE,68069 -Weston,NE,68070 -Winnebago,NE,68071 -Yutan,NE,68073 -Omaha,NE,68102 -Omaha,NE,68104 -Omaha,NE,68105 -Omaha,NE,68106 -Omaha,NE,68107 -Omaha,NE,68108 -Omaha,NE,68110 -Omaha,NE,68111 -Omaha,NE,68112 -Offutt A F B,NE,68113 -Omaha,NE,68114 -Omaha,NE,68116 -Omaha,NE,68117 -Omaha,NE,68118 -Omaha,NE,68122 -Omaha,NE,68123 -Omaha,NE,68124 -Ralston,NE,68127 -Papillion,NE,68128 -Omaha,NE,68130 -Omaha,NE,68131 -Omaha,NE,68132 -Papillion,NE,68133 -Omaha,NE,68134 -Omaha,NE,68135 -Omaha,NE,68136 -Millard,NE,68137 -Papillion,NE,68138 -Omaha,NE,68142 -Millard,NE,68144 -Omaha,NE,68147 -Omaha,NE,68152 -Omaha,NE,68154 -Papillion,NE,68157 -Omaha,NE,68164 -Adams,NE,68301 -Alexandria,NE,68303 -Alvo,NE,68304 -Auburn,NE,68305 -Avoca,NE,68307 -Beatrice,NE,68310 -Beaver Crossing,NE,68313 -Bee,NE,68314 -Belvidere,NE,68315 -Benedict,NE,68316 -Bennet,NE,68317 -Blue Springs,NE,68318 -Bradshaw,NE,68319 -Brock,NE,68320 -Brownville,NE,68321 -Bruning,NE,68322 -Burchard,NE,68323 -Burr,NE,68324 -Byron,NE,68325 -Carleton,NE,68326 -Chester,NE,68327 -Clatonia,NE,68328 -Cook,NE,68329 -Cordova,NE,68330 -Cortland,NE,68331 -Crab Orchard,NE,68332 -Crete,NE,68333 -Davenport,NE,68335 -Davey,NE,68336 -Dawson,NE,68337 -Daykin,NE,68338 -Denton,NE,68339 -Deshler,NE,68340 -De Witt,NE,68341 -Diller,NE,68342 -Dorchester,NE,68343 -Douglas,NE,68344 -Du Bois,NE,68345 -Dunbar,NE,68346 -Eagle,NE,68347 -Elk Creek,NE,68348 -Elmwood,NE,68349 -Endicott,NE,68350 -Exeter,NE,68351 -Fairbury,NE,68352 -Fairmont,NE,68354 -Falls City,NE,68355 -Filley,NE,68357 -Firth,NE,68358 -Friend,NE,68359 -Garland,NE,68360 -Geneva,NE,68361 -Gilead,NE,68362 -Goehner,NE,68364 -Grafton,NE,68365 -Greenwood,NE,68366 -Gresham,NE,68367 -Hallam,NE,68368 -Hebron,NE,68370 -Henderson,NE,68371 -Holland,NE,68372 -Holmesville,NE,68374 -Hubbell,NE,68375 -Humboldt,NE,68376 -Jansen,NE,68377 -Johnson,NE,68378 -Julian,NE,68379 -Lewiston,NE,68380 -Liberty,NE,68381 -Mc Cool Junction,NE,68401 -Malcolm,NE,68402 -Martell,NE,68404 -Milford,NE,68405 -Milligan,NE,68406 -Murdock,NE,68407 -Murray,NE,68409 -Nebraska City,NE,68410 -Nehawka,NE,68413 -Nemaha,NE,68414 -Odell,NE,68415 -Ohiowa,NE,68416 -Otoe,NE,68417 -Palmyra,NE,68418 -Pawnee City,NE,68420 -Peru,NE,68421 -Pickrell,NE,68422 -Pleasant Dale,NE,68423 -Plymouth,NE,68424 -Agnew,NE,68428 -Reynolds,NE,68429 -Roca,NE,68430 -Rulo,NE,68431 -Saint Mary,NE,68432 -Salem,NE,68433 -Seward,NE,68434 -Shickley,NE,68436 -Shubert,NE,68437 -Staplehurst,NE,68439 -Steele City,NE,68440 -Steinauer,NE,68441 -Stella,NE,68442 -Sterling,NE,68443 -Strang,NE,68444 -Swanton,NE,68445 -Syracuse,NE,68446 -Table Rock,NE,68447 -Talmage,NE,68448 -Tecumseh,NE,68450 -Ong,NE,68452 -Tobias,NE,68453 -Unadilla,NE,68454 -Union,NE,68455 -Utica,NE,68456 -Verdon,NE,68457 -Virginia,NE,68458 -Waco,NE,68460 -Walton,NE,68461 -Waverly,NE,68462 -Weeping Water,NE,68463 -Western,NE,68464 -Wilber,NE,68465 -Wymore,NE,68466 -York,NE,68467 -Lincoln,NE,68502 -Lincoln,NE,68503 -Lincoln,NE,68504 -Lincoln,NE,68505 -Lincoln,NE,68506 -Lincoln,NE,68507 -Lincoln,NE,68508 -Lincoln,NE,68510 -Lincoln,NE,68512 -Lincoln,NE,68514 -Lincoln,NE,68516 -Lincoln,NE,68517 -Lincoln,NE,68520 -Lincoln,NE,68521 -Lincoln,NE,68522 -Lincoln,NE,68523 -Lincoln,NE,68524 -Lincoln,NE,68526 -Lincoln,NE,68527 -Lincoln,NE,68528 -Lincoln,NE,68531 -Lincoln,NE,68532 -Richland,NE,68601 -Albion,NE,68620 -Ames,NE,68621 -Bartlett,NE,68622 -Belgrade,NE,68623 -Bellwood,NE,68624 -Brainard,NE,68626 -Cedar Rapids,NE,68627 -Clarks,NE,68628 -Clarkson,NE,68629 -Creston,NE,68631 -Garrison,NE,68632 -Dodge,NE,68633 -Dwight,NE,68635 -Elgin,NE,68636 -Ericson,NE,68637 -Fullerton,NE,68638 -Genoa,NE,68640 -Howells,NE,68641 -Humphrey,NE,68642 -Leigh,NE,68643 -Lindsay,NE,68644 -Monroe,NE,68647 -Morse Bluff,NE,68648 -North Bend,NE,68649 -Octavia,NE,68650 -Osceola,NE,68651 -Petersburg,NE,68652 -Platte Center,NE,68653 -Polk,NE,68654 -Primrose,NE,68655 -Rising City,NE,68658 -Rogers,NE,68659 -Saint Edward,NE,68660 -Schuyler,NE,68661 -Shelby,NE,68662 -Silver Creek,NE,68663 -Spalding,NE,68665 -Stromsburg,NE,68666 -Ulysses,NE,68667 -Ulysses,NE,68669 -Norfolk,NE,68701 -Allen,NE,68710 -Amelia,NE,68711 -Atkinson,NE,68713 -Bassett,NE,68714 -Battle Creek,NE,68715 -Beemer,NE,68716 -Belden,NE,68717 -Bloomfield,NE,68718 -Bristow,NE,68719 -Brunswick,NE,68720 -Butte,NE,68722 -Carroll,NE,68723 -Center,NE,68724 -Chambers,NE,68725 -Clearwater,NE,68726 -Coleridge,NE,68727 -Concord,NE,68728 -Creighton,NE,68729 -Crofton,NE,68730 -Dakota City,NE,68731 -Dixon,NE,68732 -Emerson,NE,68733 -Emmet,NE,68734 -Ewing,NE,68735 -Fordyce,NE,68736 -Foster,NE,68737 -Hartington,NE,68739 -Hoskins,NE,68740 -Hubbard,NE,68741 -Inman,NE,68742 -Jackson,NE,68743 -Laurel,NE,68745 -Lynch,NE,68746 -Mclean,NE,68747 -Madison,NE,68748 -Magnet,NE,68749 -Maskell,NE,68751 -Meadow Grove,NE,68752 -Mills,NE,68753 -Naper,NE,68755 -Neligh,NE,68756 -Newcastle,NE,68757 -Newman Grove,NE,68758 -Newport,NE,68759 -Verdel,NE,68760 -Oakdale,NE,68761 -Obert,NE,68762 -Oneill,NE,68763 -Orchard,NE,68764 -Osmond,NE,68765 -Page,NE,68766 -Pierce,NE,68767 -Pilger,NE,68768 -Plainview,NE,68769 -Ponca,NE,68770 -Randolph,NE,68771 -Rose,NE,68772 -Royal,NE,68773 -Saint Helena,NE,68774 -South Sioux City,NE,68776 -Spencer,NE,68777 -Springview,NE,68778 -Stanton,NE,68779 -Stuart,NE,68780 -Tilden,NE,68781 -68782,NE,68782 -Verdigre,NE,68783 -Wakefield,NE,68784 -Waterbury,NE,68785 -Wausa,NE,68786 -Wayne,NE,68787 -West Point,NE,68788 -Winnetoon,NE,68789 -Winside,NE,68790 -Wisner,NE,68791 -Wynot,NE,68792 -Grand Island,NE,68801 -Grand Island,NE,68803 -Alda,NE,68810 -Amherst,NE,68812 -Milburn,NE,68813 -Ansley,NE,68814 -Arcadia,NE,68815 -Archer,NE,68816 -Ashton,NE,68817 -Aurora,NE,68818 -Berwyn,NE,68819 -Boelus,NE,68820 -Brewster,NE,68821 -Broken Bow,NE,68822 -Burwell,NE,68823 -Cairo,NE,68824 -Callaway,NE,68825 -Central City,NE,68826 -Chapman,NE,68827 -Comstock,NE,68828 -Cotesfield,NE,68829 -Dannebrog,NE,68831 -Doniphan,NE,68832 -Dunning,NE,68833 -Eddyville,NE,68834 -Elba,NE,68835 -Elm Creek,NE,68836 -Elyria,NE,68837 -Farwell,NE,68838 -Gibbon,NE,68840 -Giltner,NE,68841 -Greeley,NE,68842 -Hampton,NE,68843 -Hazard,NE,68844 -Hordville,NE,68846 -Kearney,NE,68847 -Lexington,NE,68850 -Litchfield,NE,68852 -Loup City,NE,68853 -Marquette,NE,68854 -Mason City,NE,68855 -Merna,NE,68856 -Miller,NE,68858 -North Loup,NE,68859 -Oconto,NE,68860 -Odessa,NE,68861 -Ord,NE,68862 -Overton,NE,68863 -Palmer,NE,68864 -Phillips,NE,68865 -Pleasanton,NE,68866 -Prosser,NE,68868 -Ravenna,NE,68869 -Riverdale,NE,68870 -Rockville,NE,68871 -Saint Libory,NE,68872 -Saint Paul,NE,68873 -Sargent,NE,68874 -Scotia,NE,68875 -Shelton,NE,68876 -Sumner,NE,68878 -Almeria,NE,68879 -Westerville,NE,68881 -Wolbach,NE,68882 -Wood River,NE,68883 -Hastings,NE,68901 -Alma,NE,68920 -Arapahoe,NE,68922 -Atlanta,NE,68923 -Axtell,NE,68924 -Ayr,NE,68925 -Beaver City,NE,68926 -Bertrand,NE,68927 -Bladen,NE,68928 -Bloomington,NE,68929 -Blue Hill,NE,68930 -Campbell,NE,68932 -Clay Center,NE,68933 -Deweese,NE,68934 -Edgar,NE,68935 -Edison,NE,68936 -Elwood,NE,68937 -Fairfield,NE,68938 -Franklin,NE,68939 -Funk,NE,68940 -Glenvil,NE,68941 -Guide Rock,NE,68942 -Hardy,NE,68943 -Harvard,NE,68944 -Heartwell,NE,68945 -Hendley,NE,68946 -Hildreth,NE,68947 -Holbrook,NE,68948 -Holdrege,NE,68949 -Holstein,NE,68950 -Huntley,NE,68951 -Inavale,NE,68952 -Inland,NE,68954 -Juniata,NE,68955 -Kenesaw,NE,68956 -Lawrence,NE,68957 -Loomis,NE,68958 -Minden,NE,68959 -Naponee,NE,68960 -Nora,NE,68961 -Oak,NE,68964 -Orleans,NE,68966 -Oxford,NE,68967 -Ragan,NE,68969 -Red Cloud,NE,68970 -Republican City,NE,68971 -Riverton,NE,68972 -Roseland,NE,68973 -Ruskin,NE,68974 -Saronville,NE,68975 -Smithfield,NE,68976 -Stamford,NE,68977 -Superior,NE,68978 -Sutton,NE,68979 -Trumbull,NE,68980 -Upland,NE,68981 -Wilcox,NE,68982 -Mc Cook,NE,69001 -Bartley,NE,69020 -Benkelman,NE,69021 -Cambridge,NE,69022 -Champion,NE,69023 -Culbertson,NE,69024 -Curtis,NE,69025 -Danbury,NE,69026 -Enders,NE,69027 -Eustis,NE,69028 -Farnam,NE,69029 -Haigler,NE,69030 -Hamlet,NE,69031 -Hayes Center,NE,69032 -Imperial,NE,69033 -Indianola,NE,69034 -Lamar,NE,69035 -Lebanon,NE,69036 -Max,NE,69037 -Maywood,NE,69038 -Moorefield,NE,69039 -Palisade,NE,69040 -Parks,NE,69041 -Stockville,NE,69042 -Stratton,NE,69043 -Trenton,NE,69044 -Wauneta,NE,69045 -Wilsonville,NE,69046 -North Platte,NE,69101 -Arnold,NE,69120 -Arthur,NE,69121 -Big Springs,NE,69122 -Brady,NE,69123 -Broadwater,NE,69125 -Brule,NE,69127 -Bushnell,NE,69128 -Chappell,NE,69129 -Cozad,NE,69130 -Dalton,NE,69131 -Dickens,NE,69132 -Dix,NE,69133 -Elsie,NE,69134 -Elsmere,NE,69135 -Gothenburg,NE,69138 -Grant,NE,69140 -Gurley,NE,69141 -Halsey,NE,69142 -Hershey,NE,69143 -Keystone,NE,69144 -Kimball,NE,69145 -Lemoyne,NE,69146 -Lewellen,NE,69147 -Lisco,NE,69148 -Lodgepole,NE,69149 -Madrid,NE,69150 -Maxwell,NE,69151 -Mullen,NE,69152 -Ogallala,NE,69153 -Oshkosh,NE,69154 -Paxton,NE,69155 -Potter,NE,69156 -Purdum,NE,69157 -Seneca,NE,69161 -Sidney,NE,69162 -Stapleton,NE,69163 -Sutherland,NE,69165 -Brownlee,NE,69166 -Tryon,NE,69167 -Venango,NE,69168 -Wallace,NE,69169 -Wellfleet,NE,69170 -Valentine,NE,69201 -Ainsworth,NE,69210 -Cody,NE,69211 -Crookston,NE,69212 -Johnstown,NE,69214 -Kilgore,NE,69216 -Long Pine,NE,69217 -Merriman,NE,69218 -Wood Lake,NE,69221 -Alliance,NE,69301 -Angora,NE,69331 -Ashby,NE,69333 -Bayard,NE,69334 -Bingham,NE,69335 -Bridgeport,NE,69336 -Chadron,NE,69337 -Crawford,NE,69339 -Ellsworth,NE,69340 -Gering,NE,69341 -Gordon,NE,69343 -Harrisburg,NE,69345 -Harrison,NE,69346 -Hay Springs,NE,69347 -Hemingford,NE,69348 -Henry,NE,69349 -Hyannis,NE,69350 -Lakeside,NE,69351 -Lyman,NE,69352 -Marsland,NE,69354 -Minatare,NE,69356 -Mitchell,NE,69357 -Morrill,NE,69358 -Rushville,NE,69360 -Scottsbluff,NE,69361 -Whitman,NE,69366 -Whitney,NE,69367 -Alamo,NV,89001 -Boulder City,NV,89005 -Caliente,NV,89008 -Goldfield,NV,89013 -Henderson,NV,89014 -Henderson,NV,89015 -Hiko,NV,89017 -Indian Springs,NV,89018 -Goodsprings,NV,89019 -Amargosa Valley,NV,89020 -Laughlin,NV,89029 -North Las Vegas,NV,89030 -North Las Vegas,NV,89031 -Overton,NV,89040 -Pahrump,NV,89041 -Pioche,NV,89043 -Round Mountain,NV,89045 -Cottonwood Cove,NV,89046 -Silverpeak,NV,89047 -Tonopah,NV,89049 -Las Vegas,NV,89101 -Las Vegas,NV,89102 -Las Vegas,NV,89103 -Las Vegas,NV,89104 -Las Vegas,NV,89106 -Las Vegas,NV,89107 -Las Vegas,NV,89108 -Las Vegas,NV,89109 -Las Vegas,NV,89110 -Las Vegas,NV,89113 -Las Vegas,NV,89115 -Las Vegas,NV,89117 -Las Vegas,NV,89118 -Las Vegas,NV,89119 -Las Vegas,NV,89120 -Las Vegas,NV,89121 -Las Vegas,NV,89122 -Las Vegas,NV,89123 -Las Vegas,NV,89124 -Las Vegas,NV,89128 -Las Vegas,NV,89129 -Las Vegas,NV,89130 -Las Vegas,NV,89131 -Las Vegas,NV,89134 -Ely,NV,89301 -Austin,NV,89310 -Baker,NV,89311 -Eureka,NV,89316 -Lund,NV,89317 -Dayton,NV,89403 -Denio,NV,89404 -Empire,NV,89405 -Fallon,NV,89406 -Fernley,NV,89408 -Gabbs,NV,89409 -Gardnerville,NV,89410 -Gerlach,NV,89412 -Glenbrook,NV,89413 -Golconda,NV,89414 -Hawthorne,NV,89415 -Unionville,NV,89418 -Lovelock,NV,89419 -Luning,NV,89420 -Minden,NV,89423 -Nixon,NV,89424 -Orovada,NV,89425 -Paradise Valley,NV,89426 -Schurz,NV,89427 -Silver Springs,NV,89429 -Smith,NV,89430 -Sparks,NV,89431 -Sun Valley,NV,89433 -Sparks,NV,89434 -Sparks,NV,89436 -Virginia City,NV,89440 -Wadsworth,NV,89442 -Wellington,NV,89444 -Winnemucca,NV,89445 -Yerington,NV,89447 -Incline Village,NV,89451 -Reno,NV,89501 -Reno,NV,89502 -Reno,NV,89503 -Reno,NV,89506 -Reno,NV,89509 -Reno,NV,89510 -Reno,NV,89511 -Reno,NV,89512 -Reno,NV,89523 -Carson City,NV,89701 -Carson City,NV,89703 -Carson City,NV,89704 -Carson City,NV,89705 -Moundhouse,NV,89706 -Jiggs,NV,89801 -Battle Mountain,NV,89820 -Beowawe,NV,89821 -Carlin,NV,89822 -Deeth,NV,89823 -Jackpot,NV,89825 -Mountain City,NV,89831 -Ruby Valley,NV,89833 -Tuscarora,NV,89834 -Oasis,NV,89835 -Amherst,NH,3031 -Auburn,NH,3032 -Brookline,NH,3033 -Candia,NH,3034 -Chester,NH,3036 -Deerfield,NH,3037 -Derry,NH,3038 -Epping,NH,3042 -Francestown,NH,3043 -Fremont,NH,3044 -Dunbarton,NH,3045 -Greenfield,NH,3047 -Mason,NH,3048 -Hollis,NH,3049 -Hudson,NH,3051 -Londonderry,NH,3053 -Merrimack,NH,3054 -Milford,NH,3055 -Mont Vernon,NH,3057 -Nashua,NH,3060 -Nashua,NH,3062 -Nashua,NH,3063 -New Boston,NH,3070 -New Ipswich,NH,3071 -Pelham,NH,3076 -Raymond,NH,3077 -Salem,NH,3079 -Lyndeborough,NH,3082 -Temple,NH,3084 -Wilton,NH,3086 -Windham,NH,3087 -Manchester,NH,3101 -Manchester,NH,3102 -Manchester,NH,3103 -Manchester,NH,3104 -Hooksett,NH,3106 -Manchester,NH,3109 -Bedford,NH,3110 -Andover,NH,3216 -Ashland,NH,3217 -Barnstead,NH,3218 -Belmont,NH,3220 -Bradford,NH,3221 -Bristol,NH,3222 -Beebe River,NH,3223 -Canterbury,NH,3224 -Center Barnstead,NH,3225 -Center Harbor,NH,3226 -Center Sandwich,NH,3227 -Hopkinton,NH,3229 -Danbury,NH,3230 -East Andover,NH,3231 -East Hebron,NH,3232 -Epsom,NH,3234 -Franklin,NH,3235 -Gilmanton,NH,3237 -Grafton,NH,3240 -Hebron,NH,3241 -Henniker,NH,3242 -Hill,NH,3243 -Hillsboro,NH,3244 -Gilford,NH,3246 -Lincoln,NH,3251 -Meredith,NH,3253 -Moultonborough,NH,3254 -New Hampton,NH,3256 -New London,NH,3257 -North Sandwich,NH,3259 -Northwood,NH,3261 -North Woodstock,NH,3262 -Pittsfield,NH,3263 -Plymouth,NH,3264 -Rumney,NH,3266 -Salisbury,NH,3268 -Sanbornton,NH,3269 -Allenstown,NH,3275 -Tilton,NH,3276 -Warner,NH,3278 -Warren,NH,3279 -Washington,NH,3280 -Weare,NH,3281 -Wentworth,NH,3282 -West Springfield,NH,3284 -Wilmot Flat,NH,3287 -Nottingham,NH,3290 -West Nottingham,NH,3291 -Concord,NH,3301 -Boscawen,NH,3303 -Bow,NH,3304 -Surry,NH,3431 -Antrim,NH,3440 -Ashuelot,NH,3441 -Bennington,NH,3442 -Chesterfield,NH,3443 -Dublin,NH,3444 -East Sullivan,NH,3445 -East Swanzey,NH,3446 -Fitzwilliam,NH,3447 -Gilsum,NH,3448 -Hancock,NH,3449 -Harrisville,NH,3450 -Hinsdale,NH,3451 -Jaffrey,NH,3452 -Marlborough,NH,3455 -Marlow,NH,3456 -Munsonville,NH,3457 -Peterborough,NH,3458 -Rindge,NH,3461 -Spofford,NH,3462 -Stoddard,NH,3464 -Troy,NH,3465 -West Chesterfiel,NH,3466 -Westmoreland,NH,3467 -West Swanzey,NH,3469 -Richmond,NH,3470 -Littleton,NH,3561 -Berlin,NH,3570 -Bethlehem,NH,3574 -Colebrook,NH,3576 -Errol,NH,3579 -Franconia,NH,3580 -Gorham,NH,3581 -Groveton,NH,3582 -Jefferson,NH,3583 -Lancaster,NH,3584 -Lisbon,NH,3585 -Milan,NH,3588 -North Stratford,NH,3590 -Pittsburg,NH,3592 -Whitefield,NH,3598 -Alstead,NH,3602 -Charlestown,NH,3603 -East Lempster,NH,3605 -South Acworth,NH,3607 -Walpole,NH,3608 -North Walpole,NH,3609 -Bath,NH,3740 -Canaan,NH,3741 -Claremont,NH,3743 -Cornish,NH,3745 -Enfield,NH,3748 -Etna,NH,3750 -Goshen,NH,3752 -Grantham,NH,3753 -Hanover,NH,3755 -Haverhill,NH,3765 -Lebanon,NH,3766 -Lyme,NH,3768 -Meriden,NH,3770 -Monroe,NH,3771 -Newport,NH,3773 -North Haverhill,NH,3774 -Orford,NH,3777 -Piermont,NH,3779 -Pike,NH,3780 -Plainfield,NH,3781 -Sunapee,NH,3782 -West Lebanon,NH,3784 -Woodsville,NH,3785 -Newington,NH,3801 -Alton,NH,3809 -Alton Bay,NH,3810 -Atkinson,NH,3811 -Bartlett,NH,3812 -Center Conway,NH,3813 -Center Ossipee,NH,3814 -Center Strafford,NH,3815 -Center Tuftonbor,NH,3816 -Chocorua,NH,3817 -Conway,NH,3818 -Danville,NH,3819 -Madbury,NH,3820 -Lee,NH,3824 -Barrington,NH,3825 -East Hampstead,NH,3826 -South Hampton,NH,3827 -East Wakefield,NH,3830 -Brentwood,NH,3833 -Farmington,NH,3835 -Freedom,NH,3836 -Gilmanton Iron W,NH,3837 -Glen,NH,3838 -Gonic,NH,3839 -Greenland,NH,3840 -Hampstead,NH,3841 -Hampton,NH,3842 -Hampton Falls,NH,3844 -Intervale,NH,3845 -Jackson,NH,3846 -Kingston,NH,3848 -Madison,NH,3849 -Milton Mills,NH,3852 -Mirror Lake,NH,3853 -New Castle,NH,3854 -New Durham,NH,3855 -Newmarket,NH,3857 -Newton,NH,3858 -North Conway,NH,3860 -North Hampton,NH,3862 -Ossipee,NH,3864 -Plaistow,NH,3865 -Rochester,NH,3867 -East Rochester,NH,3868 -Rollinsford,NH,3869 -Rye,NH,3870 -Sanbornville,NH,3872 -Sandown,NH,3873 -Seabrook,NH,3874 -Silver Lake,NH,3875 -Somersworth,NH,3878 -South Effingham,NH,3882 -South Tamworth,NH,3883 -Strafford,NH,3884 -Stratham,NH,3885 -Tamworth,NH,3886 -Union,NH,3887 -West Ossipee,NH,3890 -Wolfeboro,NH,3894 -Avenel,NJ,7001 -Bayonne,NJ,7002 -Bloomfield,NJ,7003 -Fairfield,NJ,7004 -Boonton,NJ,7005 -West Caldwell,NJ,7006 -Carteret,NJ,7008 -Cedar Grove,NJ,7009 -Cliffside Park,NJ,7010 -Clifton,NJ,7011 -Clifton,NJ,7012 -Clifton,NJ,7013 -Clifton,NJ,7014 -Cranford,NJ,7016 -East Orange,NJ,7017 -East Orange,NJ,7018 -Edgewater,NJ,7020 -Essex Fells,NJ,7021 -Fairview,NJ,7022 -Fanwood,NJ,7023 -Fort Lee,NJ,7024 -Garfield,NJ,7026 -Garwood,NJ,7027 -Glen Ridge,NJ,7028 -Kearny,NJ,7029 -Hoboken,NJ,7030 -North Arlington,NJ,7031 -Kearny,NJ,7032 -Kenilworth,NJ,7033 -Lake Hiawatha,NJ,7034 -Lincoln Park,NJ,7035 -Linden,NJ,7036 -Livingston,NJ,7039 -Maplewood,NJ,7040 -Millburn,NJ,7041 -Montclair,NJ,7042 -Montclair,NJ,7043 -Verona,NJ,7044 -Montville,NJ,7045 -Mountain Lakes,NJ,7046 -North Bergen,NJ,7047 -Orange,NJ,7050 -West Orange,NJ,7052 -Parsippany,NJ,7054 -Passaic,NJ,7055 -Wallington,NJ,7057 -Pine Brook,NJ,7058 -Warren,NJ,7059 -North Plainfield,NJ,7060 -North Plainfield,NJ,7062 -North Plainfield,NJ,7063 -Port Reading,NJ,7064 -Rahway,NJ,7065 -Clark,NJ,7066 -Colonia,NJ,7067 -Roseland,NJ,7068 -Rutherford,NJ,7070 -Lyndhurst,NJ,7071 -Carlstadt,NJ,7072 -East Rutherford,NJ,7073 -Moonachie,NJ,7074 -Wood Ridge,NJ,7075 -Scotch Plains,NJ,7076 -Sewaren,NJ,7077 -Short Hills,NJ,7078 -South Orange,NJ,7079 -South Plainfield,NJ,7080 -Springfield,NJ,7081 -Towaco,NJ,7082 -Union,NJ,7083 -Weehawken,NJ,7087 -Vauxhall,NJ,7088 -Westfield,NJ,7090 -Mountainside,NJ,7092 -Guttenberg,NJ,7093 -Secaucus,NJ,7094 -Woodbridge,NJ,7095 -Newark,NJ,7102 -Newark,NJ,7103 -Newark,NJ,7104 -Newark,NJ,7105 -Newark,NJ,7106 -Newark,NJ,7107 -Newark,NJ,7108 -Belleville,NJ,7109 -Nutley,NJ,7110 -Irvington,NJ,7111 -Newark,NJ,7112 -Newark,NJ,7114 -Elizabeth,NJ,7201 -Elizabeth,NJ,7202 -Roselle,NJ,7203 -Roselle Park,NJ,7204 -Hillside,NJ,7205 -Elizabeth,NJ,7206 -Elizabeth,NJ,7208 -Jersey City,NJ,7302 -Jersey City,NJ,7304 -Jersey City,NJ,7305 -Jersey City,NJ,7306 -Jersey City,NJ,7307 -Jersey City,NJ,7310 -Allendale,NJ,7401 -Bloomingdale,NJ,7403 -Kinnelon,NJ,7405 -Elmwood Park,NJ,7407 -Fair Lawn,NJ,7410 -Franklin,NJ,7416 -Franklin Lakes,NJ,7417 -Glenwood,NJ,7418 -Hamburg,NJ,7419 -Haskell,NJ,7420 -Hewitt,NJ,7421 -Highland Lakes,NJ,7422 -Ho Ho Kus,NJ,7423 -West Paterson,NJ,7424 -Mahwah,NJ,7430 -Midland Park,NJ,7432 -Newfoundland,NJ,7435 -Oakland,NJ,7436 -Milton,NJ,7438 -Ogdensburg,NJ,7439 -Pequannock,NJ,7440 -Pompton Lakes,NJ,7442 -Pompton Plains,NJ,7444 -Ramsey,NJ,7446 -Ridgewood,NJ,7450 -Glen Rock,NJ,7452 -Ringwood,NJ,7456 -Riverdale,NJ,7457 -Upper Saddle Riv,NJ,7458 -Stockholm,NJ,7460 -Sussex,NJ,7461 -Vernon,NJ,7462 -Waldwick,NJ,7463 -Wanaque,NJ,7465 -Wayne,NJ,7470 -West Milford,NJ,7480 -Wyckoff,NJ,7481 -Paterson,NJ,7501 -Paterson,NJ,7502 -Paterson,NJ,7503 -Paterson,NJ,7504 -Paterson,NJ,7505 -Hawthorne,NJ,7506 -Haledon,NJ,7508 -Totowa,NJ,7512 -Paterson,NJ,7513 -Paterson,NJ,7514 -Paterson,NJ,7522 -Paterson,NJ,7524 -Hackensack,NJ,7601 -Bogota,NJ,7603 -Hasbrouck Height,NJ,7604 -Leonia,NJ,7605 -South Hackensack,NJ,7606 -Maywood,NJ,7607 -Teterboro,NJ,7608 -Alpine,NJ,7620 -Bergenfield,NJ,7621 -Closter,NJ,7624 -Cresskill,NJ,7626 -Demarest,NJ,7627 -Dumont,NJ,7628 -Emerson,NJ,7630 -Englewood,NJ,7631 -Englewood Cliffs,NJ,7632 -Harrington Park,NJ,7640 -Haworth,NJ,7641 -Hillsdale,NJ,7642 -Little Ferry,NJ,7643 -Lodi,NJ,7644 -Montvale,NJ,7645 -New Milford,NJ,7646 -Rockleigh,NJ,7647 -Norwood,NJ,7648 -Oradell,NJ,7649 -Palisades Park,NJ,7650 -Paramus,NJ,7652 -Park Ridge,NJ,7656 -Ridgefield,NJ,7657 -Ridgefield Park,NJ,7660 -River Edge,NJ,7661 -Saddle Brook,NJ,7662 -Teaneck,NJ,7666 -Tenafly,NJ,7670 -Old Tappan,NJ,7675 -Suburban,NJ,7701 -Shrewsbury,NJ,7702 -Fort Monmouth,NJ,7703 -Fair Haven,NJ,7704 -Allenhurst,NJ,7711 -Ocean,NJ,7712 -Atlantic Highlan,NJ,7716 -Avon By The Sea,NJ,7717 -Belford,NJ,7718 -Wall,NJ,7719 -Bradley Beach,NJ,7720 -Cliffwood,NJ,7721 -Colts Neck,NJ,7722 -Deal,NJ,7723 -Eatontown,NJ,7724 -Manalapan,NJ,7726 -Farmingdale,NJ,7727 -Freehold,NJ,7728 -Hazlet,NJ,7730 -Howell,NJ,7731 -Fort Hancock,NJ,7732 -Holmdel,NJ,7733 -Keansburg,NJ,7734 -Keyport,NJ,7735 -Leonardo,NJ,7737 -Lincroft,NJ,7738 -Little Silver,NJ,7739 -Long Branch,NJ,7740 -Marlboro,NJ,7746 -Matawan,NJ,7747 -New Monmouth,NJ,7748 -Monmouth Beach,NJ,7750 -Morganville,NJ,7751 -Neptune City,NJ,7753 -Oakhurst,NJ,7755 -Ocean Grove,NJ,7756 -Oceanport,NJ,7757 -Port Monmouth,NJ,7758 -Sea Bright,NJ,7760 -Spring Lake,NJ,7762 -West Long Branch,NJ,7764 -Mine Hill,NJ,7801 -Andover,NJ,7821 -Augusta,NJ,7822 -Belvidere,NJ,7823 -Blairstown,NJ,7825 -Branchville,NJ,7826 -Montague,NJ,7827 -Budd Lake,NJ,7828 -Califon,NJ,7830 -Columbia,NJ,7832 -Denville,NJ,7834 -Flanders,NJ,7836 -Great Meadows,NJ,7838 -Hackettstown,NJ,7840 -Hopatcong,NJ,7843 -Kenvil,NJ,7847 -Lafayette,NJ,7848 -Lake Hopatcong,NJ,7849 -Landing,NJ,7850 -Layton,NJ,7851 -Ledgewood,NJ,7852 -Long Valley,NJ,7853 -Mount Arlington,NJ,7856 -Netcong,NJ,7857 -Fredon Township,NJ,7860 -Oxford,NJ,7863 -Port Murray,NJ,7865 -Rockaway,NJ,7866 -Randolph,NJ,7869 -Sparta,NJ,7871 -Stanhope,NJ,7874 -Succasunna,NJ,7876 -Wallpack Center,NJ,7881 -Washington,NJ,7882 -Wharton,NJ,7885 -Summit,NJ,7901 -Basking Ridge,NJ,7920 -Bedminster,NJ,7921 -Berkeley Heights,NJ,7922 -Bernardsville,NJ,7924 -Cedar Knolls,NJ,7927 -Chatham,NJ,7928 -Chester,NJ,7930 -Far Hills,NJ,7931 -Florham Park,NJ,7932 -Gillette,NJ,7933 -Gladstone,NJ,7934 -Green Village,NJ,7935 -East Hanover,NJ,7936 -Madison,NJ,7940 -Mendham,NJ,7945 -Millington,NJ,7946 -Greystone Park,NJ,7950 -Morristown,NJ,7960 -New Providence,NJ,7974 -New Vernon,NJ,7976 -Stirling,NJ,7980 -Whippany,NJ,7981 -Cherry Hill,NJ,8002 -Cherry Hill,NJ,8003 -Winslow,NJ,8004 -Barnegat,NJ,8005 -Barrington,NJ,8007 -Harvey Cedars,NJ,8008 -Berlin,NJ,8009 -Beverly,NJ,8010 -Washington,NJ,8012 -Bridgeport,NJ,8014 -Browns Mills,NJ,8015 -Burlington,NJ,8016 -Chatsworth,NJ,8019 -Clarksboro,NJ,8020 -Laurel Springs,NJ,8021 -Columbus,NJ,8022 -Gibbsboro,NJ,8026 -Gibbstown,NJ,8027 -Glassboro,NJ,8028 -Glendora,NJ,8029 -Gloucester City,NJ,8030 -Bellmawr,NJ,8031 -Haddonfield,NJ,8033 -Cherry Hill,NJ,8034 -Haddon Heights,NJ,8035 -Batsto,NJ,8037 -Jobstown,NJ,8041 -Voorhees,NJ,8043 -Lawnside,NJ,8045 -Willingboro,NJ,8046 -Lumberton,NJ,8048 -Magnolia,NJ,8049 -Manahawkin,NJ,8050 -Mantua,NJ,8051 -Maple Shade,NJ,8052 -Marlton,NJ,8053 -Mount Laurel,NJ,8054 -Medford Lakes,NJ,8055 -Mickleton,NJ,8056 -Moorestown,NJ,8057 -Mount Ephraim,NJ,8059 -Eastampton Twp,NJ,8060 -Mount Royal,NJ,8061 -Mullica Hill,NJ,8062 -National Park,NJ,8063 -Palmyra,NJ,8065 -Paulsboro,NJ,8066 -Pedricktown,NJ,8067 -Pemberton,NJ,8068 -Carneys Point,NJ,8069 -Pennsville,NJ,8070 -Pitman,NJ,8071 -Delanco,NJ,8075 -Cinnaminson,NJ,8077 -Runnemede,NJ,8078 -Salem,NJ,8079 -Sewell,NJ,8080 -Sicklerville,NJ,8081 -Somerdale,NJ,8083 -Stratford,NJ,8084 -Swedesboro,NJ,8085 -Thorofare,NJ,8086 -Tuckerton,NJ,8087 -Southampton,NJ,8088 -Waterford Works,NJ,8089 -Wenonah,NJ,8090 -West Berlin,NJ,8091 -West Creek,NJ,8092 -Westville,NJ,8093 -Williamstown,NJ,8094 -Deptford,NJ,8096 -Woodbury Heights,NJ,8097 -Woodstown,NJ,8098 -Camden,NJ,8102 -Camden,NJ,8103 -Camden,NJ,8104 -Camden,NJ,8105 -Audubon,NJ,8106 -Oaklyn,NJ,8107 -Collingswood,NJ,8108 -Merchantville,NJ,8109 -Delair,NJ,8110 -Smithville,NJ,8201 -Avalon,NJ,8202 -Brigantine,NJ,8203 -North Cape May,NJ,8204 -Cape May Court H,NJ,8210 -Egg Harbor City,NJ,8215 -Linwood,NJ,8221 -Marmora,NJ,8223 -Northfield,NJ,8225 -Ocean City,NJ,8226 -Ocean View,NJ,8230 -Pleasantville,NJ,8232 -Port Republic,NJ,8241 -Rio Grande,NJ,8242 -Townsends Inlet,NJ,8243 -Somers Point,NJ,8244 -Stone Harbor,NJ,8247 -Strathmere,NJ,8248 -Villas,NJ,8251 -North Wildwood,NJ,8260 -Corbin City,NJ,8270 -Seabrook,NJ,8302 -Buena,NJ,8310 -Cedarville,NJ,8311 -Clayton,NJ,8312 -Delmont,NJ,8314 -Dorothy,NJ,8317 -Elmer,NJ,8318 -Estell Manor,NJ,8319 -Franklinville,NJ,8322 -Heislerville,NJ,8324 -Landisville,NJ,8326 -Leesburg,NJ,8327 -Malaga,NJ,8328 -Mays Landing,NJ,8330 -Millville,NJ,8332 -Milmay,NJ,8340 -Minotola,NJ,8341 -Monroeville,NJ,8343 -Newfield,NJ,8344 -Newport,NJ,8345 -Newtonville,NJ,8346 -Port Norris,NJ,8349 -Richland,NJ,8350 -Vineland,NJ,8360 -Atlantic City,NJ,8401 -Margate City,NJ,8402 -Longport,NJ,8403 -Ventnor City,NJ,8406 -Allentown,NJ,8501 -Belle Mead,NJ,8502 -Bordentown,NJ,8505 -Clarksburg,NJ,8510 -Cookstown,NJ,8511 -Cranbury,NJ,8512 -Creamridge,NJ,8514 -Crosswicks,NJ,8515 -Florence,NJ,8518 -Hightstown,NJ,8520 -Hopewell,NJ,8525 -Imlaystown,NJ,8526 -Jackson,NJ,8527 -Kingston,NJ,8528 -Lambertville,NJ,8530 -New Egypt,NJ,8533 -Pennington,NJ,8534 -Perrineville,NJ,8535 -Plainsboro,NJ,8536 -Princeton,NJ,8540 -Princeton,NJ,8542 -Princeton Univer,NJ,8544 -Princeton Juncti,NJ,8550 -Ringoes,NJ,8551 -Rocky Hill,NJ,8553 -Roebling,NJ,8554 -Rosemont,NJ,8556 -Skillman,NJ,8558 -Stockton,NJ,8559 -Titusville,NJ,8560 -Wrightstown,NJ,8562 -Trenton,NJ,8608 -Hamilton,NJ,8609 -Hamilton,NJ,8610 -Hamilton,NJ,8611 -Trenton,NJ,8618 -Mercerville,NJ,8619 -Yardville,NJ,8620 -West Trenton,NJ,8628 -Hamilton,NJ,8629 -Trenton,NJ,8638 -Fort Dix,NJ,8640 -Mc Guire Afb,NJ,8641 -Lawrenceville,NJ,8648 -Hamilton,NJ,8690 -Hamilton,NJ,8691 -Lakewood,NJ,8701 -Bayville,NJ,8721 -Beachwood,NJ,8722 -Osbornsville,NJ,8723 -Brick,NJ,8724 -Brielle,NJ,8730 -Forked River,NJ,8731 -Island Heights,NJ,8732 -Lakehurst Naec,NJ,8733 -Lanoka Harbor,NJ,8734 -Lavallette,NJ,8735 -Manasquan,NJ,8736 -Mantoloking,NJ,8738 -Ocean Gate,NJ,8740 -Pine Beach,NJ,8741 -Bay Head,NJ,8742 -Sea Girt,NJ,8750 -Seaside Heights,NJ,8751 -Seaside Park,NJ,8752 -Toms River,NJ,8753 -Toms River,NJ,8755 -Toms River,NJ,8757 -Waretown,NJ,8758 -Whiting,NJ,8759 -Annandale,NJ,8801 -Pattenburg,NJ,8802 -Bloomsbury,NJ,8804 -Bound Brook,NJ,8805 -Bridgewater,NJ,8807 -Clinton,NJ,8809 -Dayton,NJ,8810 -Green Brook,NJ,8812 -East Brunswick,NJ,8816 -Edison,NJ,8817 -Edison,NJ,8820 -Flemington,NJ,8822 -Franklin Park,NJ,8823 -Kendall Park,NJ,8824 -Frenchtown,NJ,8825 -Glen Gardner,NJ,8826 -Hampton,NJ,8827 -Helmetta,NJ,8828 -High Bridge,NJ,8829 -Iselin,NJ,8830 -Jamesburg,NJ,8831 -Keasbey,NJ,8832 -Lebanon,NJ,8833 -Manville,NJ,8835 -Martinsville,NJ,8836 -Edison,NJ,8837 -Metuchen,NJ,8840 -Middlesex,NJ,8846 -Milford,NJ,8848 -Milltown,NJ,8850 -Monmouth Junctio,NJ,8852 -Neshanic Station,NJ,8853 -Piscataway,NJ,8854 -Old Bridge,NJ,8857 -Parlin,NJ,8859 -Perth Amboy,NJ,8861 -Fords,NJ,8863 -Alpha,NJ,8865 -Pittstown,NJ,8867 -Raritan,NJ,8869 -Sayreville,NJ,8872 -Somerset,NJ,8873 -North Branch,NJ,8876 -Laurence Harbor,NJ,8879 -South Bound Broo,NJ,8880 -South River,NJ,8882 -Spotswood,NJ,8884 -Stewartsville,NJ,8886 -Three Bridges,NJ,8887 -Whitehouse Stati,NJ,8889 -New Brunswick,NJ,8901 -North Brunswick,NJ,8902 -Highland Park,NJ,8904 -Algodones,NM,87001 -Boys Ranch,NM,87002 -Bernalillo,NM,87004 -Bluewater,NM,87005 -Bosque,NM,87006 -Casa Blanca,NM,87007 -Cedar Crest,NM,87008 -Cedarvale,NM,87009 -Cerrillos,NM,87010 -Cuba,NM,87013 -Cubero,NM,87014 -Edgewood,NM,87015 -Estancia,NM,87016 -Gallina,NM,87017 -Counselor,NM,87018 -Grants,NM,87020 -Jarales,NM,87023 -Jemez Pueblo,NM,87024 -Jemez Springs,NM,87025 -Canoncito,NM,87026 -La Jara,NM,87027 -Lajoya,NM,87028 -Lindrith,NM,87029 -Los Lunas,NM,87031 -Moriarty,NM,87035 -Mountainair,NM,87036 -Cochiti Pueblo,NM,87041 -Peralta,NM,87042 -Placitas,NM,87043 -Ponderosa,NM,87044 -Prewitt,NM,87045 -Regina,NM,87046 -Sandia Park,NM,87047 -Corrales,NM,87048 -San Mateo,NM,87050 -Santo Domingo Pu,NM,87052 -Zia Pueblo,NM,87053 -Seboyeta,NM,87055 -Stanley,NM,87056 -Tijeras,NM,87059 -Veguita,NM,87062 -Willard,NM,87063 -Bosque Farms,NM,87068 -Albuquerque,NM,87102 -Albuquerque,NM,87104 -Albuquerque,NM,87105 -Albuquerque,NM,87106 -Albuquerque,NM,87107 -Albuquerque,NM,87108 -Albuquerque,NM,87109 -Albuquerque,NM,87110 -Albuquerque,NM,87111 -Albuquerque,NM,87112 -Albuquerque,NM,87113 -Alameda,NM,87114 -Kirtland A F B E,NM,87115 -Albuquerque,NM,87116 -Albuquerque,NM,87118 -Albuquerque,NM,87120 -Albuquerque,NM,87121 -Albuquerque,NM,87122 -Albuquerque,NM,87123 -Rio Rancho,NM,87124 -Gallup,NM,87301 -Brimhall,NM,87310 -Continental Divi,NM,87312 -Crownpoint,NM,87313 -Fence Lake,NM,87315 -Mexican Springs,NM,87320 -Ramah,NM,87321 -Thoreau,NM,87323 -Toadlena,NM,87324 -Tohatchi,NM,87325 -Zuni,NM,87327 -Navajo,NM,87328 -Farmington,NM,87401 -Farmington,NM,87402 -Aztec,NM,87410 -Blanco,NM,87412 -Bloomfield,NM,87413 -Flora Vista,NM,87415 -Fruitland,NM,87416 -Kirtland,NM,87417 -La Plata,NM,87418 -Navajo Dam,NM,87419 -Shiprock,NM,87420 -Waterflow,NM,87421 -Pojoaque Valley,NM,87501 -Santa Fe,NM,87505 -Abiquiu,NM,87510 -Arroyo Hondo,NM,87513 -Arroyo Seco,NM,87514 -Chama,NM,87520 -Chamisal,NM,87521 -Cundiyo,NM,87522 -Costilla,NM,87524 -Dixon,NM,87527 -Dulce,NM,87528 -El Rito,NM,87530 -Embudo,NM,87531 -Espanola,NM,87532 -Glorieta,NM,87535 -Hernandez,NM,87537 -La Madera,NM,87539 -Lamy,NM,87540 -Los Alamos,NM,87544 -Ojo Caliente,NM,87549 -Pecos,NM,87552 -Penasco,NM,87553 -Questa,NM,87556 -Ranchos De Taos,NM,87557 -Ribera,NM,87560 -Rutheron,NM,87563 -San Cristobal,NM,87564 -San Jose,NM,87565 -San Juan Pueblo,NM,87566 -Santa Cruz,NM,87567 -Taos,NM,87571 -Tererro,NM,87573 -Tierra Amarilla,NM,87575 -Vadito,NM,87579 -Valdez,NM,87580 -Vallecitos,NM,87581 -Las Vegas,NM,87701 -Anton Chico,NM,87711 -Chacon,NM,87713 -Cimarron,NM,87714 -Cleveland,NM,87715 -Eagle Nest,NM,87718 -Guadalupita,NM,87722 -La Loma,NM,87724 -Ledoux,NM,87725 -Maxwell,NM,87728 -Miami,NM,87729 -Mills,NM,87730 -Montezuma,NM,87731 -Mora,NM,87732 -Albert,NM,87733 -Ocate,NM,87734 -Raton,NM,87740 -Rociada,NM,87742 -Roy,NM,87743 -Sapello,NM,87745 -Solano,NM,87746 -Springer,NM,87747 -Valmora,NM,87750 -Wagon Mound,NM,87752 -Socorro,NM,87801 -Bingham,NM,87815 -Aragon,NM,87820 -Datil,NM,87821 -Lemitar,NM,87823 -Alamo,NM,87825 -Pie Town,NM,87827 -Polvadera,NM,87828 -Quemado,NM,87829 -Reserve,NM,87830 -San Acacia,NM,87831 -Truth Or Consequ,NM,87901 -Arrey,NM,87930 -Caballo,NM,87931 -Cuchillo,NM,87932 -Derry,NM,87933 -Garfield,NM,87936 -Hatch,NM,87937 -Rincon,NM,87940 -Salem,NM,87941 -Williamsburg,NM,87942 -Winston,NM,87943 -Las Cruces,NM,88001 -White Sands Miss,NM,88002 -Las Cruces,NM,88005 -Animas,NM,88020 -Chaparral,NM,88021 -Vanadium,NM,88023 -Buckhorn,NM,88025 -Central,NM,88026 -Deming,NM,88030 -Glenwood,NM,88039 -San Lorenzo,NM,88041 -Hillsboro,NM,88042 -Hurley,NM,88043 -La Mesa,NM,88044 -Road Forks,NM,88045 -Mesilla Park,NM,88047 -Mesquite,NM,88048 -Mimbres,NM,88049 -Silver City,NM,88061 -Clovis,NM,88101 -Broadview,NM,88112 -Causey,NM,88113 -Crossroads,NM,88114 -Elida,NM,88116 -Floyd,NM,88118 -Fort Sumner,NM,88119 -Grady,NM,88120 -House,NM,88121 -Lingo,NM,88123 -Melrose,NM,88124 -Milnesand,NM,88125 -Pep,NM,88126 -Portales,NM,88130 -Rogers,NM,88132 -Saint Vrain,NM,88133 -Taiban,NM,88134 -Texico,NM,88135 -Yeso,NM,88136 -Roswell,NM,88201 -Artesia,NM,88210 -Caprock,NM,88213 -Carlsbad,NM,88220 -Dexter,NM,88230 -Eunice,NM,88231 -Hagerman,NM,88232 -Hobbs,NM,88240 -Hope,NM,88250 -Jal,NM,88252 -Lake Arthur,NM,88253 -Loving,NM,88256 -Lovington,NM,88260 -Maljamar,NM,88264 -Monument,NM,88265 -Oil Center,NM,88266 -Tatum,NM,88267 -Carrizozo,NM,88301 -Alamogordo,NM,88310 -Bent,NM,88314 -Capitan,NM,88316 -Cloudcroft,NM,88317 -Corona,NM,88318 -Encino,NM,88321 -Glencoe,NM,88324 -Holloman Air For,NM,88330 -Hondo,NM,88336 -La Luz,NM,88337 -Lincoln,NM,88338 -Mayhill,NM,88339 -Mescalero,NM,88340 -Nogal,NM,88341 -Picacho,NM,88343 -Pinon,NM,88344 -Ruidoso,NM,88345 -Ruidoso Downs,NM,88346 -Sacramento,NM,88347 -San Patricio,NM,88348 -Tinnie,NM,88351 -Tularosa,NM,88352 -Vaughn,NM,88353 -Weed,NM,88354 -Tucumcari,NM,88401 -Amistad,NM,88410 -Bard,NM,88411 -Bueyeros,NM,88412 -Capulin,NM,88414 -Clayton,NM,88415 -Conchas Dam,NM,88416 -Cuervo,NM,88417 -Des Moines,NM,88418 -Folsom,NM,88419 -Garita,NM,88421 -Gladstone,NM,88422 -Grenville,NM,88424 -Logan,NM,88426 -Mc Alister,NM,88427 -Mount Dora,NM,88429 -Nara Visa,NM,88430 -Newkirk,NM,88431 -Puerto De Luna,NM,88432 -Quay,NM,88433 -San Jon,NM,88434 -Pastura,NM,88435 -Sedan,NM,88436 -Seneca,NM,88437 -Stead,NM,88438 -Trementina,NM,88439 -Bell Ranch,NM,88441 -Fishers Island,NY,6390 -New York,NY,10001 -New York,NY,10002 -New York,NY,10003 -Governors Island,NY,10004 -New York,NY,10005 -New York,NY,10006 -New York,NY,10007 -New York,NY,10009 -New York,NY,10010 -New York,NY,10011 -New York,NY,10012 -New York,NY,10013 -New York,NY,10014 -New York,NY,10016 -New York,NY,10017 -New York,NY,10018 -New York,NY,10019 -New York,NY,10020 -New York,NY,10021 -New York,NY,10022 -New York,NY,10023 -New York,NY,10024 -New York,NY,10025 -New York,NY,10026 -New York,NY,10027 -New York,NY,10028 -New York,NY,10029 -New York,NY,10030 -New York,NY,10031 -New York,NY,10032 -New York,NY,10033 -New York,NY,10034 -New York,NY,10035 -New York,NY,10036 -New York,NY,10037 -New York,NY,10038 -New York,NY,10039 -New York,NY,10040 -New York,NY,10044 -New York,NY,10128 -New York,NY,10280 -Staten Island,NY,10301 -Staten Island,NY,10302 -Staten Island,NY,10303 -Staten Island,NY,10304 -Staten Island,NY,10305 -Staten Island,NY,10306 -Staten Island,NY,10307 -Staten Island,NY,10308 -Staten Island,NY,10309 -Staten Island,NY,10310 -Staten Island,NY,10312 -Staten Island,NY,10314 -Bronx,NY,10451 -Bronx,NY,10452 -Bronx,NY,10453 -Bronx,NY,10454 -Bronx,NY,10455 -Bronx,NY,10456 -Bronx,NY,10457 -Bronx,NY,10458 -Bronx,NY,10459 -Bronx,NY,10460 -Bronx,NY,10461 -Bronx,NY,10462 -Bronx,NY,10463 -Bronx,NY,10464 -Bronx,NY,10465 -Bronx,NY,10466 -Bronx,NY,10467 -Bronx,NY,10468 -Bronx,NY,10469 -Bronx,NY,10470 -Bronx,NY,10471 -Bronx,NY,10472 -Bronx,NY,10473 -Bronx,NY,10474 -Bronx,NY,10475 -Amawalk,NY,10501 -Ardsley,NY,10502 -Armonk,NY,10504 -Bedford,NY,10506 -Bedford Hills,NY,10507 -Brewster,NY,10509 -Briarcliff Manor,NY,10510 -Buchanan,NY,10511 -Carmel,NY,10512 -Chappaqua,NY,10514 -Cold Spring,NY,10516 -Cross River,NY,10518 -Croton On Hudson,NY,10520 -Dobbs Ferry,NY,10522 -Elmsford,NY,10523 -Garrison,NY,10524 -Granite Springs,NY,10527 -Harrison,NY,10528 -Hartsdale,NY,10530 -Hawthorne,NY,10532 -Irvington,NY,10533 -Jefferson Valley,NY,10535 -Katonah,NY,10536 -Lake Peekskill,NY,10537 -Larchmont,NY,10538 -Mahopac,NY,10541 -Mamaroneck,NY,10543 -Millwood,NY,10546 -Mohegan Lake,NY,10547 -Montrose,NY,10548 -Mount Kisco,NY,10549 -Mount Vernon,NY,10550 -Mount Vernon,NY,10552 -Mount Vernon,NY,10553 -North Salem,NY,10560 -Ossining,NY,10562 -Cortlandt Manor,NY,10566 -Pleasantville,NY,10570 -Rye Brook,NY,10573 -Pound Ridge,NY,10576 -Purchase,NY,10577 -Purdys,NY,10578 -Putnam Valley,NY,10579 -Rye,NY,10580 -Heathcote,NY,10583 -Shrub Oak,NY,10588 -Somers,NY,10589 -South Salem,NY,10590 -North Tarrytown,NY,10591 -Thornwood,NY,10594 -Valhalla,NY,10595 -Waccabuc,NY,10597 -Yorktown Heights,NY,10598 -White Plains,NY,10601 -White Plains,NY,10603 -East White Plain,NY,10604 -White Plains,NY,10605 -White Plains,NY,10606 -White Plains,NY,10607 -Yonkers,NY,10701 -Yonkers,NY,10703 -Yonkers,NY,10704 -Yonkers,NY,10705 -Hastings On Huds,NY,10706 -Tuckahoe,NY,10707 -Bronxville,NY,10708 -Eastchester,NY,10709 -Yonkers,NY,10710 -New Rochelle,NY,10801 -Pelham,NY,10803 -New Rochelle,NY,10804 -New Rochelle,NY,10805 -Suffern,NY,10901 -Bear Mountain,NY,10911 -Blauvelt,NY,10913 -Campbell Hall,NY,10916 -Central Valley,NY,10917 -Chester,NY,10918 -Circleville,NY,10919 -Congers,NY,10920 -Florida,NY,10921 -Garnerville,NY,10923 -Goshen,NY,10924 -Greenwood Lake,NY,10925 -Harriman,NY,10926 -Haverstraw,NY,10927 -Highland Falls,NY,10928 -Highland Mills,NY,10930 -Hillburn,NY,10931 -Scotchtown,NY,10940 -Monroe,NY,10950 -Monsey,NY,10952 -Bardonia,NY,10954 -New City,NY,10956 -New Hampton,NY,10958 -Nyack,NY,10960 -Orangeburg,NY,10962 -Otisville,NY,10963 -Palisades,NY,10964 -Pearl River,NY,10965 -Piermont,NY,10968 -Pine Island,NY,10969 -Pomona,NY,10970 -Slate Hill,NY,10973 -Sterlington,NY,10974 -Southfields,NY,10975 -Sparkill,NY,10976 -Chestnut Ridge,NY,10977 -Stony Point,NY,10980 -Tappan,NY,10983 -Thiells,NY,10984 -Thompson Ridge,NY,10985 -Tomkins Cove,NY,10986 -Tuxedo Park,NY,10987 -Valley Cottage,NY,10989 -Warwick,NY,10990 -Washingtonville,NY,10992 -West Haverstraw,NY,10993 -West Nyack,NY,10994 -West Point,NY,10996 -Westtown,NY,10998 -Floral Park,NY,11001 -Alden Manor,NY,11003 -Glen Oaks,NY,11004 -Franklin Square,NY,11010 -Great Neck,NY,11020 -Great Neck,NY,11021 -Great Neck,NY,11023 -Kings Point Cont,NY,11024 -Plandome,NY,11030 -Hillside Manor,NY,11040 -New Hyde Park,NY,11042 -Port Washington,NY,11050 -Astoria,NY,11101 -Astoria,NY,11102 -Astoria,NY,11103 -Sunnyside,NY,11104 -Astoria,NY,11105 -Astoria,NY,11106 -Brooklyn,NY,11201 -Brooklyn,NY,11203 -Brooklyn,NY,11204 -Brooklyn,NY,11205 -Brooklyn,NY,11206 -Brooklyn,NY,11207 -Brooklyn,NY,11208 -Brooklyn,NY,11209 -Brooklyn,NY,11210 -Brooklyn,NY,11211 -Brooklyn,NY,11212 -Brooklyn,NY,11213 -Brooklyn,NY,11214 -Brooklyn,NY,11215 -Brooklyn,NY,11216 -Brooklyn,NY,11217 -Brooklyn,NY,11218 -Brooklyn,NY,11219 -Brooklyn,NY,11220 -Brooklyn,NY,11221 -Brooklyn,NY,11222 -Brooklyn,NY,11223 -Brooklyn,NY,11224 -Brooklyn,NY,11225 -Brooklyn,NY,11226 -Brooklyn,NY,11228 -Brooklyn,NY,11229 -Brooklyn,NY,11230 -Brooklyn,NY,11231 -Brooklyn,NY,11232 -Brooklyn,NY,11233 -Brooklyn,NY,11234 -Brooklyn,NY,11235 -Brooklyn,NY,11236 -Brooklyn,NY,11237 -Brooklyn,NY,11238 -Brooklyn,NY,11239 -Brooklyn Navy Ya,NY,11251 -Flushing,NY,11354 -Flushing,NY,11355 -College Point,NY,11356 -Whitestone,NY,11357 -Flushing,NY,11358 -Fort Totten,NY,11359 -Bayside,NY,11360 -Bayside,NY,11361 -Little Neck,NY,11362 -Little Neck,NY,11363 -Flushing,NY,11364 -Fresh Meadows,NY,11365 -Fresh Meadows,NY,11366 -Flushing,NY,11367 -Corona,NY,11368 -East Elmhurst,NY,11369 -East Elmhurst,NY,11370 -Flushing,NY,11371 -Jackson Heights,NY,11372 -Jackson Heights,NY,11373 -Rego Park,NY,11374 -Forest Hills,NY,11375 -Woodside,NY,11377 -Maspeth,NY,11378 -Middle Village,NY,11379 -Ridgewood,NY,11385 -Cambria Heights,NY,11411 -Kew Gardens,NY,11412 -Springfield Gard,NY,11413 -Kew Gardens,NY,11414 -Kew Gardens,NY,11415 -Ozone Park,NY,11416 -Ozone Park,NY,11417 -Richmond Hill,NY,11418 -S Richmond Hill,NY,11419 -S Ozone Park,NY,11420 -Woodhaven,NY,11421 -Rosedale,NY,11422 -Hollis,NY,11423 -Bellerose,NY,11426 -Queens Village,NY,11427 -Queens Village,NY,11428 -Queens Village,NY,11429 -Jamaica,NY,11430 -Jamaica,NY,11432 -Jamaica,NY,11433 -Jamaica,NY,11434 -Jamaica,NY,11435 -Jamaica,NY,11436 -Mineola,NY,11501 -Albertson,NY,11507 -Atlantic Beach,NY,11509 -Baldwin,NY,11510 -Carle Place,NY,11514 -Cedarhurst,NY,11516 -East Rockaway,NY,11518 -Freeport,NY,11520 -Garden City,NY,11530 -Glen Cove,NY,11542 -Glen Head,NY,11545 -Greenvale,NY,11548 -Hempstead,NY,11550 -West Hempstead,NY,11552 -Uniondale,NY,11553 -East Meadow,NY,11554 -Hewlett,NY,11557 -Island Park,NY,11558 -Lawrence,NY,11559 -Locust Valley,NY,11560 -Long Beach,NY,11561 -Lynbrook,NY,11563 -Malverne,NY,11565 -North Merrick,NY,11566 -Old Westbury,NY,11568 -Rockville Centre,NY,11570 -Oceanside,NY,11572 -Roosevelt,NY,11575 -Roslyn,NY,11576 -Roslyn Heights,NY,11577 -Sea Cliff,NY,11579 -Valley Stream,NY,11580 -North Woodmere,NY,11581 -Westbury,NY,11590 -Williston Park,NY,11596 -Woodmere,NY,11598 -Far Rockaway,NY,11691 -Far Rockaway,NY,11692 -Far Rockaway,NY,11693 -Far Rockaway,NY,11694 -Inwood,NY,11696 -Far Rockaway,NY,11697 -Amityville,NY,11701 -Oak Beach,NY,11702 -North Babylon,NY,11703 -West Babylon,NY,11704 -Bayport,NY,11705 -Kismet,NY,11706 -Bayville,NY,11709 -North Bellmore,NY,11710 -Bellport,NY,11713 -Bethpage,NY,11714 -Blue Point,NY,11715 -Bohemia,NY,11716 -West Brentwood,NY,11717 -Brightwaters,NY,11718 -Brookhaven,NY,11719 -Centereach,NY,11720 -Centerport,NY,11721 -Central Islip,NY,11722 -Cold Spring Harb,NY,11724 -Commack,NY,11725 -Copiague,NY,11726 -Coram,NY,11727 -Deer Park,NY,11729 -East Islip,NY,11730 -Elwood,NY,11731 -East Norwich,NY,11732 -Setauket,NY,11733 -South Farmingdal,NY,11735 -Farmingville,NY,11738 -Greenlawn,NY,11740 -Holbrook,NY,11741 -Holtsville,NY,11742 -Halesite,NY,11743 -Dix Hills,NY,11746 -Melville,NY,11747 -Islip,NY,11751 -Islip Terrace,NY,11752 -Jericho,NY,11753 -Kings Park,NY,11754 -Lake Grove,NY,11755 -Levittown,NY,11756 -Lindenhurst,NY,11757 -North Massapequa,NY,11758 -Massapequa Park,NY,11762 -Medford,NY,11763 -Miller Place,NY,11764 -Mill Neck,NY,11765 -Mount Sinai,NY,11766 -Nesconset,NY,11767 -Northport,NY,11768 -Oakdale,NY,11769 -Oyster Bay,NY,11771 -Davis Park,NY,11772 -Port Jefferson S,NY,11776 -Port Jefferson,NY,11777 -Rocky Point,NY,11778 -Lake Ronkonkoma,NY,11779 -Saint James,NY,11780 -Cherry Grove,NY,11782 -Seaford,NY,11783 -Selden,NY,11784 -Shoreham,NY,11786 -Smithtown,NY,11787 -Hauppauge,NY,11788 -Sound Beach,NY,11789 -Stony Brook,NY,11790 -Syosset,NY,11791 -Wading River,NY,11792 -Wantagh,NY,11793 -Suny Stony Brook,NY,11794 -West Islip,NY,11795 -West Sayville,NY,11796 -Woodbury,NY,11797 -Wheatley Heights,NY,11798 -Hicksville,NY,11801 -Plainview,NY,11803 -Old Bethpage,NY,11804 -Riverhead,NY,11901 -Calverton,NY,11933 -Center Moriches,NY,11934 -Cutchogue,NY,11935 -East Hampton,NY,11937 -East Marion,NY,11939 -East Moriches,NY,11940 -Eastport,NY,11941 -East Quogue,NY,11942 -Greenport,NY,11944 -Hampton Bays,NY,11946 -Laurel,NY,11948 -Manorville,NY,11949 -Mastic,NY,11950 -Mastic Beach,NY,11951 -Mattituck,NY,11952 -Middle Island,NY,11953 -Montauk,NY,11954 -Moriches,NY,11955 -Orient,NY,11957 -Ridge,NY,11961 -Sag Harbor,NY,11963 -Shelter Island,NY,11964 -Shelter Island H,NY,11965 -Shirley,NY,11967 -Southampton,NY,11968 -Southold,NY,11971 -Water Mill,NY,11976 -Westhampton,NY,11977 -Westhampton Beac,NY,11978 -Yaphank,NY,11980 -Alcove,NY,12007 -Alplaus,NY,12008 -Altamont,NY,12009 -West Charlton,NY,12010 -Athens,NY,12015 -Austerlitz,NY,12017 -Averill Park,NY,12018 -Ballston Lake,NY,12019 -Ballston Spa,NY,12020 -Berlin,NY,12022 -Berne,NY,12023 -Brainard,NY,12024 -Broadalbin,NY,12025 -Burnt Hills,NY,12027 -Buskirk,NY,12028 -Canaan,NY,12029 -Carlisle,NY,12031 -Caroga Lake,NY,12032 -Castleton On Hud,NY,12033 -Central Bridge,NY,12035 -Charlotteville,NY,12036 -Chatham,NY,12037 -Clarksville,NY,12041 -Climax,NY,12042 -Cobleskill,NY,12043 -Coeymans Hollow,NY,12046 -Cohoes,NY,12047 -Coxsackie,NY,12051 -Cropseyville,NY,12052 -Delanson,NY,12053 -Delmar,NY,12054 -Dormansville,NY,12055 -Duanesburg,NY,12056 -White Creek,NY,12057 -Earlton,NY,12058 -East Berne,NY,12059 -East Chatham,NY,12060 -East Greenbush,NY,12061 -East Nassau,NY,12062 -East Worcester,NY,12064 -Clifton Park,NY,12065 -Esperance,NY,12066 -Feura Bush,NY,12067 -Fonda,NY,12068 -Fort Johnson,NY,12070 -Fultonham,NY,12071 -Fultonville,NY,12072 -Galway,NY,12074 -Ghent,NY,12075 -Gilboa,NY,12076 -Glenmont,NY,12077 -Gloversville,NY,12078 -Greenville,NY,12083 -Guilderland,NY,12084 -Hagaman,NY,12086 -Hannacroix,NY,12087 -Hoosick Falls,NY,12090 -Howes Cave,NY,12092 -Jefferson,NY,12093 -Johnsonville,NY,12094 -Johnstown,NY,12095 -Kinderhook,NY,12106 -Lake Pleasant,NY,12108 -Latham,NY,12110 -Lawyersville,NY,12113 -Malden Bridge,NY,12115 -Maryland,NY,12116 -Mayfield,NY,12117 -Mechanicville,NY,12118 -Medusa,NY,12120 -Melrose,NY,12121 -Middleburgh,NY,12122 -Nassau,NY,12123 -New Lebanon,NY,12125 -Niverville,NY,12130 -North Blenheim,NY,12131 -Edinburg,NY,12134 -Norton Hill,NY,12135 -Old Chatham,NY,12136 -Pattersonville,NY,12137 -Taconic Lake,NY,12138 -Piseco,NY,12139 -Poestenkill,NY,12140 -Ravena,NY,12143 -Rensselaer,NY,12144 -Rensselaerville,NY,12147 -Rexford,NY,12148 -Richmondville,NY,12149 -Rotterdam Juncti,NY,12150 -Round Lake,NY,12151 -Sand Lake,NY,12153 -Schaghticoke,NY,12154 -Schenevus,NY,12155 -Schodack Landing,NY,12156 -Schoharie,NY,12157 -Selkirk,NY,12158 -Slingerlands,NY,12159 -Sloansville,NY,12160 -Speculator,NY,12164 -Spencertown,NY,12165 -Sprakers,NY,12166 -Stamford,NY,12167 -Stephentown,NY,12168 -Stephentown,NY,12169 -Stillwater,NY,12170 -Stuyvesant,NY,12173 -Summit,NY,12175 -Surprise,NY,12176 -Troy,NY,12180 -Troy,NY,12182 -Green Island,NY,12183 -Valatie,NY,12184 -Valley Falls,NY,12185 -Voorheesville,NY,12186 -Warnerville,NY,12187 -Waterford,NY,12188 -Watervliet,NY,12189 -Wells,NY,12190 -West Coxsackie,NY,12192 -Westerlo,NY,12193 -West Fulton,NY,12194 -West Sand Lake,NY,12196 -Worcester,NY,12197 -Wynantskill,NY,12198 -Albany,NY,12202 -Mc Kownville,NY,12203 -Albany,NY,12204 -Roessleville,NY,12205 -Albany,NY,12206 -Albany,NY,12207 -Albany,NY,12208 -Albany,NY,12209 -Albany,NY,12210 -Loudonville,NY,12211 -Mayfair,NY,12302 -Rotterdam,NY,12303 -Schenectady,NY,12304 -Schenectady,NY,12305 -Schenectady,NY,12306 -Schenectady,NY,12307 -Schenectady,NY,12308 -Niskayuna,NY,12309 -Eddyville,NY,12401 -Accord,NY,12404 -Acra,NY,12405 -Arkville,NY,12406 -Ashland,NY,12407 -Shady,NY,12409 -Oliverea,NY,12410 -Bloomington,NY,12411 -Boiceville,NY,12412 -Cairo,NY,12413 -Catskill,NY,12414 -Chichester,NY,12416 -Cornwallville,NY,12418 -Cottekill,NY,12419 -Denver,NY,12421 -Durham,NY,12422 -East Durham,NY,12423 -East Jewett,NY,12424 -Elka Park,NY,12427 -Ellenville,NY,12428 -Halcott Center,NY,12430 -Freehold,NY,12431 -Glenford,NY,12433 -Grand Gorge,NY,12434 -Greenfield Park,NY,12435 -East Windham,NY,12439 -High Falls,NY,12440 -Hunter,NY,12442 -Hurley,NY,12443 -Jewett,NY,12444 -Kerhonkson,NY,12446 -Lake Hill,NY,12448 -Lake Katrine,NY,12449 -Lanesville,NY,12450 -Leeds,NY,12451 -Maplecrest,NY,12454 -Kelly Corners,NY,12455 -Mount Marion,NY,12456 -Mount Tremper,NY,12457 -Napanoch,NY,12458 -Oak Hill,NY,12460 -Krumville,NY,12461 -12462,NY,12462 -Palenville,NY,12463 -Phoenicia,NY,12464 -Pine Hill,NY,12465 -Port Ewen,NY,12466 -Prattsville,NY,12468 -Preston Hollow,NY,12469 -Purling,NY,12470 -Rosendale,NY,12472 -Round Top,NY,12473 -Roxbury,NY,12474 -Saugerties,NY,12477 -Shandaken,NY,12480 -Shokan,NY,12481 -South Cairo,NY,12482 -Stone Ridge,NY,12484 -Tannersville,NY,12485 -Tillson,NY,12486 -Ulster Park,NY,12487 -West Hurley,NY,12491 -West Kill,NY,12492 -West Shokan,NY,12494 -Willow,NY,12495 -Windham,NY,12496 -Woodstock,NY,12498 -Amenia,NY,12501 -Ancram,NY,12502 -Ancramdale,NY,12503 -Barrytown,NY,12507 -Beacon,NY,12508 -Claverack,NY,12513 -Clinton Corners,NY,12514 -Clintondale,NY,12515 -Copake,NY,12516 -Copake Falls,NY,12517 -Cornwall,NY,12518 -Cornwall On Huds,NY,12520 -Craryville,NY,12521 -Dover Plains,NY,12522 -Elizaville,NY,12523 -Fishkill,NY,12524 -Gardiner,NY,12525 -Germantown,NY,12526 -Highland,NY,12528 -Hillsdale,NY,12529 -Holmes,NY,12531 -Hopewell Junctio,NY,12533 -Hudson,NY,12534 -Hyde Park,NY,12538 -Lagrangeville,NY,12540 -Marlboro,NY,12542 -Maybrook,NY,12543 -Millbrook,NY,12545 -Millerton,NY,12546 -Milton,NY,12547 -Modena,NY,12548 -Montgomery,NY,12549 -Middle Hope,NY,12550 -New Windsor,NY,12553 -Mohonk Lake,NY,12561 -Patterson,NY,12563 -Pawling,NY,12564 -Pine Bush,NY,12566 -Pine Plains,NY,12567 -Pleasant Valley,NY,12569 -Poughquag,NY,12570 -Red Hook,NY,12571 -Rhinebeck,NY,12572 -Rock Tavern,NY,12575 -Salisbury Mills,NY,12577 -Salt Point,NY,12578 -Staatsburg,NY,12580 -Stanfordville,NY,12581 -Stormville,NY,12582 -Tivoli,NY,12583 -Verbank,NY,12585 -Walden,NY,12586 -Wallkill,NY,12589 -New Hamburg,NY,12590 -Wassaic,NY,12592 -Wingdale,NY,12594 -South Road,NY,12601 -Arlington,NY,12603 -Monticello,NY,12701 -Barryville,NY,12719 -Bethel,NY,12720 -Bloomingburg,NY,12721 -Callicoon,NY,12723 -Claryville,NY,12725 -Fosterdale,NY,12726 -Cochecton Center,NY,12727 -Cuddebackville,NY,12729 -Eldred,NY,12732 -Fallsburg,NY,12733 -Grossinger,NY,12734 -Fremont Center,NY,12736 -Glen Spey,NY,12737 -Glen Wild,NY,12738 -Godeffroy,NY,12739 -Grahamsville,NY,12740 -Mileses,NY,12741 -Harris,NY,12742 -Highland Lake,NY,12743 -Hortonville,NY,12745 -Huguenot,NY,12746 -Hurleyville,NY,12747 -Jeffersonville,NY,12748 -Kenoza Lake,NY,12750 -Kiamesha Lake,NY,12751 -Lake Huntington,NY,12752 -Lew Beach,NY,12753 -Liberty,NY,12754 -Livingston Manor,NY,12758 -Loch Sheldrake,NY,12759 -Long Eddy,NY,12760 -Mongaup Valley,NY,12762 -Mountain Dale,NY,12763 -Narrowsburg,NY,12764 -Neversink,NY,12765 -North Branch,NY,12766 -Parksville,NY,12768 -Pond Eddy,NY,12770 -Port Jervis,NY,12771 -Rock Hill,NY,12775 -Cook Falls,NY,12776 -Forestburgh,NY,12777 -South Fallsburg,NY,12779 -Sparrowbush,NY,12780 -Sundown,NY,12782 -Swan Lake,NY,12783 -White Lake,NY,12786 -White Sulphur Sp,NY,12787 -Woodbourne,NY,12788 -Woodridge,NY,12789 -Wurtsboro,NY,12790 -Youngsville,NY,12791 -Yulan,NY,12792 -Queensbury,NY,12801 -South Glens Fall,NY,12803 -Queensbury,NY,12804 -Adirondack,NY,12808 -Argyle,NY,12809 -Athol,NY,12810 -Blue Mountain La,NY,12812 -Bolton Landing,NY,12814 -Brant Lake,NY,12815 -Cambridge,NY,12816 -Chestertown,NY,12817 -Clemons,NY,12819 -Comstock,NY,12821 -Corinth,NY,12822 -Cossayuna,NY,12823 -Diamond Point,NY,12824 -East Greenwich,NY,12826 -Fort Ann,NY,12827 -Fort Edward,NY,12828 -Gansevoort,NY,12831 -Granville,NY,12832 -Greenfield Cente,NY,12833 -Thomson,NY,12834 -Hadley,NY,12835 -Hague,NY,12836 -Hampton,NY,12837 -Hartford,NY,12838 -Hudson Falls,NY,12839 -Indian Lake,NY,12842 -Johnsburg,NY,12843 -Pilot Knob,NY,12844 -Lake George,NY,12845 -Lake Luzerne,NY,12846 -Long Lake,NY,12847 -Middle Granville,NY,12849 -Middle Grove,NY,12850 -Minerva,NY,12851 -Newcomb,NY,12852 -North Creek,NY,12853 -North Granville,NY,12854 -North Hudson,NY,12855 -Olmstedville,NY,12857 -Paradox,NY,12858 -Porter Corners,NY,12859 -Pottersville,NY,12860 -Putnam Station,NY,12861 -Rock City Falls,NY,12863 -Salem,NY,12865 -Wilton,NY,12866 -Schroon Lake,NY,12870 -Schuylerville,NY,12871 -Severance,NY,12872 -Shushan,NY,12873 -Silver Bay,NY,12874 -Stony Creek,NY,12878 -Ticonderoga,NY,12883 -Warrensburg,NY,12885 -Wevertown,NY,12886 -Whitehall,NY,12887 -Plattsburgh,NY,12901 -Altona,NY,12910 -Au Sable Chasm,NY,12911 -Au Sable Forks,NY,12912 -Bloomingdale,NY,12913 -Bombay,NY,12914 -Brushton,NY,12916 -Burke,NY,12917 -Cadyville,NY,12918 -Champlain,NY,12919 -Chateaugay,NY,12920 -Chazy,NY,12921 -Childwold,NY,12922 -Churubusco,NY,12923 -Keeseville,NY,12924 -Constable,NY,12926 -Crown Point,NY,12928 -Dickinson Center,NY,12930 -Elizabethtown,NY,12932 -Ellenburg Center,NY,12934 -Ellenburg Depot,NY,12935 -Essex,NY,12936 -Fort Covington,NY,12937 -Nicholville,NY,12938 -Jay,NY,12941 -Keene,NY,12942 -Saint Huberts,NY,12943 -Keeseville,NY,12944 -Upper Saint Regi,NY,12945 -North Pole,NY,12946 -Lawrenceville,NY,12949 -Lewis,NY,12950 -Lyon Mountain,NY,12952 -Malone,NY,12953 -Merrill,NY,12955 -Mineville,NY,12956 -Moira,NY,12957 -Mooers,NY,12958 -Mooers Forks,NY,12959 -Moriah,NY,12960 -Moriah Center,NY,12961 -Morrisonville,NY,12962 -New Russia,NY,12964 -Nicholville,NY,12965 -Bangor,NY,12966 -North Lawrence,NY,12967 -Onchiota,NY,12968 -Owls Head,NY,12969 -Paul Smiths,NY,12970 -Peru,NY,12972 -Piercefield,NY,12973 -Port Henry,NY,12974 -Redford,NY,12978 -Rouses Point,NY,12979 -Saint Regis Fall,NY,12980 -Saranac,NY,12981 -Saranac Lake,NY,12983 -Schuyler Falls,NY,12985 -Sunmount,NY,12986 -Upper Jay,NY,12987 -Vermontville,NY,12989 -West Chazy,NY,12992 -Westport,NY,12993 -Whallonsburg,NY,12994 -Willsboro,NY,12996 -Wilmington,NY,12997 -Auburn,NY,13021 -Aurora,NY,13026 -Baldwinsville,NY,13027 -Bernhards Bay,NY,13028 -Brewerton,NY,13029 -Bridgeport,NY,13030 -Camillus,NY,13031 -Canastota,NY,13032 -Cato,NY,13033 -Cayuga,NY,13034 -Cazenovia,NY,13035 -Central Square,NY,13036 -Chittenango,NY,13037 -Cicero,NY,13039 -Cincinnatus,NY,13040 -Clay,NY,13041 -Cleveland,NY,13042 -Constantia,NY,13044 -Cortland,NY,13045 -Cuyler,NY,13050 -De Ruyter,NY,13052 -Dryden,NY,13053 -Durhamville,NY,13054 -East Freetown,NY,13055 -East Syracuse,NY,13057 -Elbridge,NY,13060 -Erieville,NY,13061 -Fabius,NY,13063 -Fayetteville,NY,13066 -Freeville,NY,13068 -Fulton,NY,13069 -Genoa,NY,13071 -Georgetown,NY,13072 -Groton,NY,13073 -Hannibal,NY,13074 -Hastings,NY,13076 -Homer,NY,13077 -Jamesville,NY,13078 -Jordan,NY,13080 -King Ferry,NY,13081 -Kirkville,NY,13082 -Lacona,NY,13083 -La Fayette,NY,13084 -Lebanon,NY,13085 -Liverpool,NY,13088 -Bayberry,NY,13090 -Locke,NY,13092 -Mc Graw,NY,13101 -Mallory,NY,13103 -Manlius,NY,13104 -Marcellus,NY,13108 -Marietta,NY,13110 -Martville,NY,13111 -Memphis,NY,13112 -Mexico,NY,13114 -Minoa,NY,13116 -Moravia,NY,13118 -Nedrow,NY,13120 -New Woodstock,NY,13122 -North Pitcher,NY,13124 -Oswego,NY,13126 -Parish,NY,13131 -Pennellville,NY,13132 -Phoenix,NY,13135 -Pitcher,NY,13136 -Port Byron,NY,13140 -Preble,NY,13141 -Pulaski,NY,13142 -Red Creek,NY,13143 -Richland,NY,13144 -Sandy Creek,NY,13145 -Savannah,NY,13146 -Venice Center,NY,13147 -Seneca Falls,NY,13148 -Skaneateles,NY,13152 -South Otselic,NY,13155 -Sterling,NY,13156 -Truxton,NY,13158 -Tully,NY,13159 -Union Springs,NY,13160 -Warners,NY,13164 -Waterloo,NY,13165 -Weedsport,NY,13166 -West Monroe,NY,13167 -Syracuse,NY,13202 -Syracuse,NY,13203 -Syracuse,NY,13204 -Syracuse,NY,13205 -Syracuse,NY,13206 -Syracuse,NY,13207 -Syracuse,NY,13208 -Solvay,NY,13209 -Syracuse,NY,13210 -Mattydale,NY,13211 -North Syracuse,NY,13212 -De Witt,NY,13214 -Onondaga,NY,13215 -Syracuse,NY,13219 -Syracuse,NY,13224 -Alder Creek,NY,13301 -Altmar,NY,13302 -Ava,NY,13303 -Barneveld,NY,13304 -Blossvale,NY,13308 -Boonville,NY,13309 -Bouckville,NY,13310 -Brookfield,NY,13314 -Burlington Flats,NY,13315 -Camden,NY,13316 -Ames,NY,13317 -Cassville,NY,13318 -Chadwicks,NY,13319 -Cherry Valley,NY,13320 -Clayville,NY,13322 -Clinton,NY,13323 -Cold Brook,NY,13324 -Constableville,NY,13325 -Cooperstown,NY,13326 -Croghan,NY,13327 -Deansboro,NY,13328 -Dolgeville,NY,13329 -Eagle Bay,NY,13331 -Earlville,NY,13332 -East Springfield,NY,13333 -Eaton,NY,13334 -Edmeston,NY,13335 -Fly Creek,NY,13337 -Forestport,NY,13338 -Fort Plain,NY,13339 -Frankfort,NY,13340 -Garrattsville,NY,13342 -Glenfield,NY,13343 -Greig,NY,13345 -Hamilton,NY,13346 -Hartwick,NY,13348 -Herkimer,NY,13350 -Hoffmeister,NY,13353 -Holland Patent,NY,13354 -Hubbardsville,NY,13355 -Ilion,NY,13357 -Inlet,NY,13360 -Jordanville,NY,13361 -Lee Center,NY,13363 -Little Falls,NY,13365 -Beaver River,NY,13367 -Lyons Falls,NY,13368 -Mc Connellsville,NY,13401 -Madison,NY,13402 -Marcy,NY,13403 -Middleville,NY,13406 -Mohawk,NY,13407 -Morrisville,NY,13408 -Munnsville,NY,13409 -New Berlin,NY,13411 -New Hartford,NY,13413 -New Lisbon,NY,13415 -Newport,NY,13416 -New York Mills,NY,13417 -North Brookfield,NY,13418 -Old Forge,NY,13420 -Oneida,NY,13421 -Oriskany,NY,13424 -Oriskany Falls,NY,13425 -Palatine Bridge,NY,13428 -Poland,NY,13431 -Port Leyden,NY,13433 -Raquette Lake,NY,13436 -Redfield,NY,13437 -Remsen,NY,13438 -Richfield Spring,NY,13439 -Rome,NY,13440 -Roseboom,NY,13450 -Saint Johnsville,NY,13452 -Salisbury Center,NY,13454 -Sauquoit,NY,13456 -Sharon Springs,NY,13459 -Sherburne,NY,13460 -Sherrill,NY,13461 -Smyrna,NY,13464 -South Edmeston,NY,13466 -Springfield Cent,NY,13468 -Stittville,NY,13469 -Stratford,NY,13470 -Taberg,NY,13471 -Turin,NY,13473 -Van Hornesville,NY,13475 -Vernon,NY,13476 -Vernon Center,NY,13477 -Verona,NY,13478 -Waterville,NY,13480 -West Burlington,NY,13482 -Westdale,NY,13483 -West Edmeston,NY,13485 -Westernville,NY,13486 -Westford,NY,13488 -West Leyden,NY,13489 -Westmoreland,NY,13490 -West Winfield,NY,13491 -Whitesboro,NY,13492 -Williamstown,NY,13493 -Woodgate,NY,13494 -Yorkville,NY,13495 -Utica,NY,13501 -Utica,NY,13502 -Watertown,NY,13601 -Fort Drum,NY,13602 -Fort Drum,NY,13603 -Smithville,NY,13605 -Adams Center,NY,13606 -Point Vivian,NY,13607 -Antwerp,NY,13608 -Belleville,NY,13611 -Black River,NY,13612 -Brasher Falls,NY,13613 -Brier Hill,NY,13614 -Calcium,NY,13616 -Canton,NY,13617 -Cape Vincent,NY,13618 -Carthage,NY,13619 -Castorland,NY,13620 -Chase Mills,NY,13621 -Chaumont,NY,13622 -Frontenac,NY,13624 -Colton,NY,13625 -Copenhagen,NY,13626 -De Kalb Junction,NY,13630 -De Peyster,NY,13633 -Dexter,NY,13634 -Edwards,NY,13635 -Ellisburg,NY,13636 -Evans Mills,NY,13637 -Felts Mills,NY,13638 -Gouverneur,NY,13642 -Hammond,NY,13646 -Harrisville,NY,13648 -Henderson,NY,13650 -Hermon,NY,13652 -Heuvelton,NY,13654 -Hogansburg,NY,13655 -La Fargeville,NY,13656 -Lisbon,NY,13658 -Lorraine,NY,13659 -Madrid,NY,13660 -Mannsville,NY,13661 -Massena,NY,13662 -Natural Bridge,NY,13665 -Newton Falls,NY,13666 -Norfolk,NY,13667 -Norwood,NY,13668 -Ogdensburg,NY,13669 -Oswegatchie,NY,13670 -Parishville,NY,13672 -Philadelphia,NY,13673 -Plessis,NY,13675 -Potsdam,NY,13676 -Redwood,NY,13679 -Rensselaer Falls,NY,13680 -Richville,NY,13681 -Rodman,NY,13682 -Degrasse,NY,13684 -Sackets Harbor,NY,13685 -South Colton,NY,13687 -Star Lake,NY,13690 -Theresa,NY,13691 -Three Mile Bay,NY,13693 -Waddington,NY,13694 -Wanakena,NY,13695 -West Stockholm,NY,13696 -Winthrop,NY,13697 -Woodville,NY,13698 -Afton,NY,13730 -Andes,NY,13731 -Apalachin,NY,13732 -Bainbridge,NY,13733 -Barton,NY,13734 -Berkshire,NY,13736 -Bloomville,NY,13739 -Bovina Center,NY,13740 -Candor,NY,13743 -Castle Creek,NY,13744 -Chenango Forks,NY,13746 -Conklin,NY,13748 -Davenport,NY,13750 -Davenport Center,NY,13751 -De Lancey,NY,13752 -Meredith,NY,13753 -Deposit,NY,13754 -Downsville,NY,13755 -East Branch,NY,13756 -East Meredith,NY,13757 -Endwell,NY,13760 -Franklin,NY,13775 -Gilbertsville,NY,13776 -Glen Aubrey,NY,13777 -Greene,NY,13778 -Guilford,NY,13780 -Hamden,NY,13782 -Cadosia,NY,13783 -Harpersfield,NY,13786 -Harpursville,NY,13787 -Hobart,NY,13788 -Johnson City,NY,13790 -Kirkwood,NY,13795 -Laurens,NY,13796 -Lisle,NY,13797 -Mc Donough,NY,13801 -Maine,NY,13802 -Marathon,NY,13803 -Masonville,NY,13804 -Meridale,NY,13806 -Milford,NY,13807 -Morris,NY,13808 -Mount Upton,NY,13809 -Mount Vision,NY,13810 -Newark Valley,NY,13811 -Nichols,NY,13812 -Nineveh,NY,13813 -Norwich,NY,13815 -Oneonta,NY,13820 -Otego,NY,13825 -Ouaquaga,NY,13826 -Owego,NY,13827 -Brisben,NY,13830 -Plymouth,NY,13832 -Sanitaria Spring,NY,13833 -Portlandville,NY,13834 -Richford,NY,13835 -Sidney,NY,13838 -Sidney Center,NY,13839 -Smithville Flats,NY,13841 -South Kortright,NY,13842 -South New Berlin,NY,13843 -South Plymouth,NY,13844 -Treadwell,NY,13846 -Unadilla,NY,13849 -Vestal,NY,13850 -Walton,NY,13856 -Wells Bridge,NY,13859 -West Oneonta,NY,13861 -Whitney Point,NY,13862 -Willet,NY,13863 -Willseyville,NY,13864 -Windsor,NY,13865 -Binghamton,NY,13901 -Binghamton,NY,13903 -Binghamton,NY,13904 -Binghamton,NY,13905 -Akron,NY,14001 -Alabama,NY,14003 -Alden,NY,14004 -Alexander,NY,14005 -Angola,NY,14006 -Appleton,NY,14008 -Arcade,NY,14009 -Attica,NY,14011 -Barker,NY,14012 -Basom,NY,14013 -Batavia,NY,14020 -Bliss,NY,14024 -Boston,NY,14025 -Bowmansville,NY,14026 -Burt,NY,14028 -Chaffee,NY,14030 -Clarence,NY,14031 -Clarence Center,NY,14032 -Colden,NY,14033 -Collins,NY,14034 -Corfu,NY,14036 -Cowlesville,NY,14037 -Dale,NY,14039 -Darien Center,NY,14040 -Dayton,NY,14041 -Delevan,NY,14042 -Depew,NY,14043 -Derby,NY,14047 -Van Buren Bay,NY,14048 -Swormville,NY,14051 -East Aurora,NY,14052 -East Bethany,NY,14054 -East Concord,NY,14055 -Eden,NY,14057 -Elba,NY,14058 -Elma,NY,14059 -Farmersville Sta,NY,14060 -Forestville,NY,14062 -Fredonia,NY,14063 -Freedom,NY,14065 -Gainesville,NY,14066 -Gasport,NY,14067 -Getzville,NY,14068 -Glenwood,NY,14069 -Gowanda,NY,14070 -Grand Island,NY,14072 -Hamburg,NY,14075 -Holland,NY,14080 -Irving,NY,14081 -Java Center,NY,14082 -Java Village,NY,14083 -Lake View,NY,14085 -Lancaster,NY,14086 -Lawtons,NY,14091 -Lewiston,NY,14092 -Lockport,NY,14094 -Lyndonville,NY,14098 -Machias,NY,14101 -Marilla,NY,14102 -Medina,NY,14103 -Middleport,NY,14105 -Newfane,NY,14108 -North Collins,NY,14111 -North Java,NY,14113 -North Tonawanda,NY,14120 -Oakfield,NY,14125 -Orchard Park,NY,14127 -Perrysburg,NY,14129 -Ransomville,NY,14131 -Sanborn,NY,14132 -Sardinia,NY,14134 -Silver Creek,NY,14136 -South Dayton,NY,14138 -South Wales,NY,14139 -Springville,NY,14141 -Stafford,NY,14143 -Strykersville,NY,14145 -Tonawanda,NY,14150 -Varysburg,NY,14167 -West Falls,NY,14170 -West Valley,NY,14171 -Wilson,NY,14172 -Youngstown,NY,14174 -Buffalo,NY,14201 -Buffalo,NY,14202 -Buffalo,NY,14203 -Buffalo,NY,14204 -Buffalo,NY,14206 -Buffalo,NY,14207 -Buffalo,NY,14208 -Buffalo,NY,14209 -Buffalo,NY,14210 -Buffalo,NY,14211 -Buffalo,NY,14212 -Buffalo,NY,14213 -Buffalo,NY,14214 -Buffalo,NY,14215 -Buffalo,NY,14216 -Kenmore,NY,14217 -Lackawanna,NY,14218 -Blasdell,NY,14219 -Buffalo,NY,14220 -Williamsville,NY,14221 -Buffalo,NY,14222 -Buffalo,NY,14223 -West Seneca,NY,14224 -Cheektowaga,NY,14225 -Amherst,NY,14226 -Cheektowaga,NY,14227 -Amherst,NY,14228 -Niagara Falls,NY,14301 -Niagara Falls,NY,14303 -Niagara Falls,NY,14304 -Niagara Falls,NY,14305 -Adams Basin,NY,14410 -Albion,NY,14411 -Avon,NY,14414 -Bellona,NY,14415 -Bergen,NY,14416 -Branchport,NY,14418 -Brockport,NY,14420 -Byron,NY,14422 -Caledonia,NY,14423 -Canandaigua,NY,14424 -Canandaigua,NY,14425 -Castile,NY,14427 -Clifton,NY,14428 -Clifton Springs,NY,14432 -Clyde,NY,14433 -Conesus,NY,14435 -Dansville,NY,14437 -Dresden,NY,14441 -East Rochester,NY,14445 -Fairport,NY,14450 -Geneseo,NY,14454 -Geneva,NY,14456 -Groveland,NY,14462 -Hamlin,NY,14464 -Hemlock,NY,14466 -Henrietta,NY,14467 -Hilton,NY,14468 -Bloomfield,NY,14469 -Hulberton,NY,14470 -Honeoye,NY,14471 -Honeoye Falls,NY,14472 -Ionia,NY,14475 -Kendall,NY,14476 -Kent,NY,14477 -Bluff Point,NY,14478 -Lakeville,NY,14480 -Leicester,NY,14481 -Le Roy,NY,14482 -Lima,NY,14485 -Linwood,NY,14486 -Livonia,NY,14487 -Lyons,NY,14489 -Macedon,NY,14502 -Manchester,NY,14504 -Marion,NY,14505 -Mendon,NY,14506 -Middlesex,NY,14507 -Tuscarora,NY,14510 -Naples,NY,14512 -Newark,NY,14513 -North Chili,NY,14514 -North Rose,NY,14516 -Nunda,NY,14517 -Ontario,NY,14519 -Hayt Corners,NY,14521 -Palmyra,NY,14522 -Linwood,NY,14525 -Penfield,NY,14526 -Penn Yan,NY,14527 -Perry,NY,14530 -Phelps,NY,14532 -Wadsworth,NY,14533 -Pittsford,NY,14534 -Portageville,NY,14536 -Mac Dougall,NY,14541 -West Rush,NY,14543 -Rushville,NY,14544 -Scottsburg,NY,14545 -Scottsville,NY,14546 -Shortsville,NY,14548 -Rock Glen,NY,14550 -Sodus,NY,14551 -Sodus Point,NY,14555 -Spencerport,NY,14559 -Springwater,NY,14560 -Stanley,NY,14561 -Victor,NY,14564 -Walworth,NY,14568 -Warsaw,NY,14569 -Waterport,NY,14571 -Wayland,NY,14572 -Webster,NY,14580 -West Henrietta,NY,14586 -Williamson,NY,14589 -Wolcott,NY,14590 -Wyoming,NY,14591 -Rochester,NY,14604 -Rochester,NY,14605 -Rochester,NY,14606 -Rochester,NY,14607 -Rochester,NY,14608 -Rochester,NY,14609 -Rochester,NY,14610 -Rochester,NY,14611 -Rochester,NY,14612 -Rochester,NY,14613 -Rochester,NY,14614 -Rochester,NY,14615 -Greece,NY,14616 -Rochester,NY,14617 -Twelve Corners,NY,14618 -Rochester,NY,14619 -Rochester,NY,14620 -Rochester,NY,14621 -Rochester,NY,14622 -Rochester,NY,14623 -Westgate,NY,14624 -Panorama,NY,14625 -Rochester,NY,14626 -Jamestown,NY,14701 -Allegany,NY,14706 -Alma,NY,14708 -Angelica,NY,14709 -Ashville,NY,14710 -Belfast,NY,14711 -Bemus Point,NY,14712 -Black Creek,NY,14714 -Bolivar,NY,14715 -Brocton,NY,14716 -Caneadea,NY,14717 -Cassadaga,NY,14718 -Cattaraugus,NY,14719 -Ceres,NY,14721 -Cherry Creek,NY,14723 -Clymer,NY,14724 -Conewango Valley,NY,14726 -Cuba,NY,14727 -Dewittville,NY,14728 -East Otto,NY,14729 -Ellicottville,NY,14731 -Falconer,NY,14733 -Fillmore,NY,14735 -Findley Lake,NY,14736 -Franklinville,NY,14737 -Frewsburg,NY,14738 -Friendship,NY,14739 -Gerry,NY,14740 -Great Valley,NY,14741 -Ischua,NY,14743 -Houghton,NY,14744 -Kennedy,NY,14747 -Kill Buck,NY,14748 -Lakewood,NY,14750 -Limestone,NY,14753 -Little Genesee,NY,14754 -Little Valley,NY,14755 -Mayville,NY,14757 -Olean,NY,14760 -Panama,NY,14767 -Portland,NY,14769 -Portville,NY,14770 -Randolph,NY,14772 -Ripley,NY,14775 -Rushford,NY,14777 -Salamanca,NY,14779 -Sherman,NY,14781 -Sinclairville,NY,14782 -Stockton,NY,14784 -Westfield,NY,14787 -Addison,NY,14801 -Alfred,NY,14802 -Alfred Station,NY,14803 -Almond,NY,14804 -Alpine,NY,14805 -Andover,NY,14806 -Arkport,NY,14807 -Atlanta,NY,14808 -Wallace,NY,14809 -Veterans Adminis,NY,14810 -Beaver Dams,NY,14812 -Belmont,NY,14813 -Big Flats,NY,14814 -Bradford,NY,14815 -Breesport,NY,14816 -Brooktondale,NY,14817 -Burdett,NY,14818 -Cameron,NY,14819 -Cameron Mills,NY,14820 -Campbell,NY,14821 -Canaseraga,NY,14822 -Canisteo,NY,14823 -Cayuta,NY,14824 -Chemung,NY,14825 -Cohocton,NY,14826 -Corning,NY,14830 -Dalton,NY,14836 -Dundee,NY,14837 -Erin,NY,14838 -Greenwood,NY,14839 -Hammondsport,NY,14840 -Hector,NY,14841 -Himrod,NY,14842 -Hornell,NY,14843 -Horseheads,NY,14845 -Hunt,NY,14846 -Interlaken,NY,14847 -Ithaca College,NY,14850 -Ithaca,NY,14853 -Jasper,NY,14855 -Lindley,NY,14858 -Lockwood,NY,14859 -Lodi,NY,14860 -Lowman,NY,14861 -Millport,NY,14864 -Montour Falls,NY,14865 -Newfield,NY,14867 -Odessa,NY,14869 -Painted Post,NY,14870 -Pine City,NY,14871 -Pine Valley,NY,14872 -Prattsburg,NY,14873 -Pulteney,NY,14874 -Rexville,NY,14877 -Rock Stream,NY,14878 -Savona,NY,14879 -Scio,NY,14880 -Slaterville Spri,NY,14881 -Lansing,NY,14882 -Spencer,NY,14883 -Swain,NY,14884 -Troupsburg,NY,14885 -Trumansburg,NY,14886 -Valois,NY,14888 -Van Etten,NY,14889 -Watkins Glen,NY,14891 -Waverly,NY,14892 -Wellsburg,NY,14894 -Wellsville,NY,14895 -Whitesville,NY,14897 -Woodhull,NY,14898 -Elmira,NY,14901 -Elmira Heights,NY,14903 -Elmira,NY,14904 -Elmira,NY,14905 -Advance,NC,27006 -Ararat,NC,27007 -Belews Creek,NC,27009 -Boonville,NC,27011 -Clemmons,NC,27012 -Cleveland,NC,27013 -Danbury,NC,27016 -Dobson,NC,27017 -East Bend,NC,27018 -Germanton,NC,27019 -Hamptonville,NC,27020 -King,NC,27021 -Lawsonville,NC,27022 -Lewisville,NC,27023 -Lowgap,NC,27024 -Madison,NC,27025 -Mayodan,NC,27027 -Mocksville,NC,27028 -Mount Airy,NC,27030 -Pfafftown,NC,27040 -Pilot Mountain,NC,27041 -Pine Hall,NC,27042 -Pinnacle,NC,27043 -Rural Hall,NC,27045 -Sandy Ridge,NC,27046 -Siloam,NC,27047 -Stoneville,NC,27048 -Tobaccoville,NC,27050 -Walkertown,NC,27051 -Walnut Cove,NC,27052 -Westfield,NC,27053 -Woodleaf,NC,27054 -Yadkinville,NC,27055 -Winston Salem,NC,27101 -Winston Salem,NC,27103 -Winston Salem,NC,27104 -Winston Salem,NC,27105 -Winston Salem,NC,27106 -Winston Salem,NC,27107 -Winston Salem,NC,27127 -Farmer,NC,27203 -Bear Creek,NC,27207 -Bennett,NC,27208 -Biscoe,NC,27209 -Blanch,NC,27212 -Browns Summit,NC,27214 -Glen Raven,NC,27215 -Burlington,NC,27217 -Candor,NC,27229 -Cedar Grove,NC,27231 -Climax,NC,27233 -Colfax,NC,27235 -Denton,NC,27239 -Eagle Springs,NC,27242 -Efland,NC,27243 -Elon College,NC,27244 -Franklinville,NC,27248 -Gibsonville,NC,27249 -Goldston,NC,27252 -Graham,NC,27253 -Haw River,NC,27258 -High Point,NC,27260 -High Point,NC,27262 -Archdale,NC,27263 -High Point,NC,27265 -Hillsborough,NC,27278 -Jackson Springs,NC,27281 -Jamestown,NC,27282 -Julian,NC,27283 -Kernersville,NC,27284 -Eden,NC,27288 -Leasburg,NC,27291 -Lexington,NC,27292 -Liberty,NC,27298 -Linwood,NC,27299 -Mc Leansville,NC,27301 -Mebane,NC,27302 -Milton,NC,27305 -Mount Gilead,NC,27306 -Oak Ridge,NC,27310 -Pelham,NC,27311 -Pittsboro,NC,27312 -Pleasant Garden,NC,27313 -Prospect Hill,NC,27314 -Providence,NC,27315 -Coleridge,NC,27316 -Randleman,NC,27317 -Reidsville,NC,27320 -Robbins,NC,27325 -Ruffin,NC,27326 -Colon,NC,27330 -Seagrove,NC,27341 -Semora,NC,27343 -Siler City,NC,27344 -Snow Camp,NC,27349 -Sophia,NC,27350 -Staley,NC,27355 -Star,NC,27356 -Stokesdale,NC,27357 -Summerfield,NC,27358 -Thomasville,NC,27360 -Trinity,NC,27370 -Troy,NC,27371 -West End,NC,27376 -Whitsett,NC,27377 -Yanceyville,NC,27379 -Greensboro,NC,27401 -Greensboro,NC,27403 -Greensboro,NC,27405 -Greensboro,NC,27406 -Greensboro,NC,27407 -Greensboro,NC,27408 -Greensboro,NC,27409 -Greensboro,NC,27410 -Angier,NC,27501 -Apex,NC,27502 -Bahama,NC,27503 -Benson,NC,27504 -Broadway,NC,27505 -Bullock,NC,27507 -Butner,NC,27509 -Carrboro,NC,27510 -Cary,NC,27511 -Cary,NC,27513 -Chapel Hill,NC,27514 -Chapel Hill,NC,27516 -Clayton,NC,27520 -Coats,NC,27521 -Creedmoor,NC,27522 -Four Oaks,NC,27524 -Franklinton,NC,27525 -Fuquay Varina,NC,27526 -Garner,NC,27529 -Grantham,NC,27530 -Seymour Johnson,NC,27531 -Goldsboro,NC,27534 -Henderson,NC,27536 -Holly Springs,NC,27540 -Hurdle Mills,NC,27541 -Kenly,NC,27542 -Kittrell,NC,27544 -Knightdale,NC,27545 -Lillington,NC,27546 -Louisburg,NC,27549 -Macon,NC,27551 -Manson,NC,27553 -Middlesex,NC,27557 -Moncure,NC,27559 -Morrisville,NC,27560 -New Hill,NC,27562 -Norlina,NC,27563 -Oxford,NC,27565 -Princeton,NC,27569 -Rolesville,NC,27571 -Rougemont,NC,27572 -Roxboro,NC,27573 -Selma,NC,27576 -Smithfield,NC,27577 -Stem,NC,27581 -Timberlake,NC,27583 -Wake Forest,NC,27587 -Warrenton,NC,27589 -Wendell,NC,27591 -Willow Spring,NC,27592 -Youngsville,NC,27596 -Zebulon,NC,27597 -Raleigh,NC,27601 -Raleigh,NC,27603 -Raleigh,NC,27604 -Raleigh,NC,27605 -Raleigh,NC,27606 -Raleigh,NC,27607 -Raleigh,NC,27608 -Raleigh,NC,27609 -Raleigh,NC,27610 -Raleigh,NC,27612 -Raleigh,NC,27613 -Raleigh,NC,27614 -Raleigh,NC,27615 -Durham,NC,27701 -Durham,NC,27703 -Durham,NC,27704 -Durham,NC,27705 -Durham,NC,27706 -Durham,NC,27707 -Durham,NC,27712 -Research Triangl,NC,27713 -Rocky Mount,NC,27801 -Rocky Mount,NC,27803 -Wesleyan College,NC,27804 -Aulander,NC,27805 -Aurora,NC,27806 -Bailey,NC,27807 -Bath,NC,27808 -Battleboro,NC,27809 -Belhaven,NC,27810 -Bethel,NC,27812 -Blounts Creek,NC,27814 -Castalia,NC,27816 -Chocowinity,NC,27817 -Como,NC,27818 -Conway,NC,27820 -Edward,NC,27821 -Elm City,NC,27822 -Enfield,NC,27823 -Middletown,NC,27824 -Fairfield,NC,27826 -Farmville,NC,27828 -Fountain,NC,27829 -Eureka,NC,27830 -Garysburg,NC,27831 -Gaston,NC,27832 -Greenville,NC,27834 -Grimesland,NC,27837 -Halifax,NC,27839 -Hamilton,NC,27840 -Henrico,NC,27842 -Hobgood,NC,27843 -Hollister,NC,27844 -Jackson,NC,27845 -Jamesville,NC,27846 -Kelford,NC,27847 -Lasker,NC,27848 -Lewiston Woodvil,NC,27849 -Littleton,NC,27850 -Lucama,NC,27851 -Crisp,NC,27852 -Margarettsville,NC,27853 -Murfreesboro,NC,27855 -Nashville,NC,27856 -Oak City,NC,27857 -Greenville,NC,27858 -Palmyra,NC,27859 -Pantego,NC,27860 -Pendleton,NC,27862 -Pikeville,NC,27863 -Pinetops,NC,27864 -Pinetown,NC,27865 -Pleasant Hill,NC,27866 -Rich Square,NC,27869 -Roanoke Rapids,NC,27870 -Robersonville,NC,27871 -Roxobel,NC,27872 -Saratoga,NC,27873 -Scotland Neck,NC,27874 -Scranton,NC,27875 -Seaboard,NC,27876 -Sims,NC,27880 -Spring Hope,NC,27882 -Stantonsburg,NC,27883 -Stokes,NC,27884 -Swanquarter,NC,27885 -Tarboro,NC,27886 -Walstonburg,NC,27888 -Washington,NC,27889 -Weldon,NC,27890 -Whitakers,NC,27891 -Williamston,NC,27892 -Wilson,NC,27893 -George,NC,27897 -Elizabeth City,NC,27909 -Ahoskie,NC,27910 -Aydlett,NC,27916 -Barco,NC,27917 -Belvidere,NC,27919 -Camden,NC,27921 -Cofield,NC,27922 -Coinjock,NC,27923 -Colerain,NC,27924 -Columbia,NC,27925 -Corapeake,NC,27926 -Corolla,NC,27927 -Creswell,NC,27928 -Currituck,NC,27929 -Edenton,NC,27932 -Eure,NC,27935 -Gates,NC,27937 -Gatesville,NC,27938 -Grandy,NC,27939 -Harbinger,NC,27941 -Harrellsville,NC,27942 -Durants Neck,NC,27944 -Hobbsville,NC,27946 -Jarvisburg,NC,27947 -Kill Devil Hills,NC,27948 -Southern Shores,NC,27949 -Knotts Island,NC,27950 -East Lake,NC,27953 -Manteo,NC,27954 -Maple,NC,27956 -Merry Hill,NC,27957 -Moyock,NC,27958 -Nags Head,NC,27959 -Plymouth,NC,27962 -Point Harbor,NC,27964 -Poplar Branch,NC,27965 -Powells Point,NC,27966 -Roper,NC,27970 -Shawboro,NC,27973 -Shiloh,NC,27974 -South Mills,NC,27976 -Stumpy Point,NC,27978 -Sunbury,NC,27979 -Tyner,NC,27980 -Windsor,NC,27983 -Winton,NC,27986 -Albemarle,NC,28001 -Alexis,NC,28006 -Belmont,NC,28012 -Bessemer City,NC,28016 -Bostic,NC,28018 -Casar,NC,28020 -Cherryville,NC,28021 -China Grove,NC,28023 -Concord,NC,28025 -Concord,NC,28027 -Cramerton,NC,28032 -Crouse,NC,28033 -Dallas,NC,28034 -Cornelius,NC,28036 -Denver,NC,28037 -Ellenboro,NC,28040 -Alexander Mills,NC,28043 -Gastonia,NC,28052 -Gastonia,NC,28054 -Gastonia,NC,28056 -Gold Hill,NC,28071 -Grover,NC,28073 -Harrisburg,NC,28075 -Cornelius,NC,28078 -Indian Trail,NC,28079 -Iron Station,NC,28080 -Kannapolis,NC,28081 -Kannapolis,NC,28083 -Kings Mountain,NC,28086 -Landis,NC,28088 -Lawndale,NC,28090 -Lilesville,NC,28091 -Boger City,NC,28092 -Locust,NC,28097 -Lowell,NC,28098 -Marshville,NC,28103 -Stallings,NC,28105 -Midland,NC,28107 -Monroe,NC,28110 -Monroe,NC,28112 -Mooresboro,NC,28114 -Mooresville,NC,28115 -Morven,NC,28119 -Mount Holly,NC,28120 -Mount Pleasant,NC,28124 -Mount Ulla,NC,28125 -New London,NC,28127 -Norwood,NC,28128 -Oakboro,NC,28129 -Peachland,NC,28133 -Pineville,NC,28134 -Polkton,NC,28135 -Richfield,NC,28137 -Rockwell,NC,28138 -Rutherfordton,NC,28139 -Salisbury,NC,28144 -Salisbury,NC,28146 -Kingstown,NC,28150 -Shelby,NC,28152 -Spencer,NC,28159 -Spindale,NC,28160 -Stanfield,NC,28163 -Stanley,NC,28164 -Troutman,NC,28166 -Union Mills,NC,28167 -Vale,NC,28168 -Wadesboro,NC,28170 -Weddington,NC,28173 -Wingate,NC,28174 -Charlotte,NC,28202 -Charlotte,NC,28203 -Charlotte,NC,28204 -Charlotte,NC,28205 -Charlotte,NC,28206 -Charlotte,NC,28207 -Charlotte,NC,28208 -Charlotte,NC,28209 -Charlotte,NC,28210 -Charlotte,NC,28211 -Charlotte,NC,28212 -Charlotte,NC,28213 -Charlotte,NC,28214 -Charlotte,NC,28215 -Charlotte,NC,28216 -Charlotte,NC,28217 -Charlotte,NC,28226 -Charlotte,NC,28227 -Charlotte,NC,28262 -Charlotte,NC,28269 -Charlotte,NC,28270 -Charlotte,NC,28273 -Charlotte,NC,28277 -Charlotte,NC,28278 -East Fayettevill,NC,28301 -Bonnie Doone,NC,28303 -Fayetteville,NC,28304 -Fayetteville,NC,28305 -Fayetteville,NC,28306 -Fort Bragg,NC,28307 -Fayetteville,NC,28311 -Fayetteville,NC,28314 -Aberdeen,NC,28315 -Autryville,NC,28318 -Bladenboro,NC,28320 -Bunnlevel,NC,28323 -Johnsonville,NC,28326 -Carthage,NC,28327 -Clinton,NC,28328 -Dudley,NC,28333 -Dunn,NC,28334 -Elizabethtown,NC,28337 -Ellerbe,NC,28338 -Erwin,NC,28339 -Mcdonald,NC,28340 -Faison,NC,28341 -Gibson,NC,28343 -Godwin,NC,28344 -Hamlet,NC,28345 -Hoffman,NC,28347 -Hope Mills,NC,28348 -Kenansville,NC,28349 -Laurel Hill,NC,28351 -Laurinburg,NC,28352 -Linden,NC,28356 -Lumber Bridge,NC,28357 -Lumberton,NC,28358 -Marston,NC,28363 -Maxton,NC,28364 -Mount Olive,NC,28365 -Newton Grove,NC,28366 -Orrum,NC,28369 -Parkton,NC,28371 -Pembroke,NC,28372 -Pinehurst,NC,28374 -Raeford,NC,28376 -Red Springs,NC,28377 -Rockingham,NC,28379 -Roseboro,NC,28382 -Rowland,NC,28383 -Saint Pauls,NC,28384 -Salemburg,NC,28385 -Shannon,NC,28386 -Southern Pines,NC,28387 -Spring Lake,NC,28390 -Stedman,NC,28391 -Tar Heel,NC,28392 -Turkey,NC,28393 -Vass,NC,28394 -Wade,NC,28395 -Wagram,NC,28396 -Bowdens,NC,28398 -White Oak,NC,28399 -Cape Fear,NC,28401 -Wilmington,NC,28403 -Ogden,NC,28405 -Wilmington,NC,28409 -Wilmington,NC,28412 -Ash,NC,28420 -Atkinson,NC,28421 -Bolivia,NC,28422 -Bolton,NC,28423 -Burgaw,NC,28425 -Carolina Beach,NC,28428 -Castle Hayne,NC,28429 -Cerro Gordo,NC,28430 -Chadbourn,NC,28431 -Clarendon,NC,28432 -Clarkton,NC,28433 -Council,NC,28434 -Currie,NC,28435 -Delco,NC,28436 -Evergreen,NC,28438 -Fair Bluff,NC,28439 -Garland,NC,28441 -Hallsboro,NC,28442 -Hampstead,NC,28443 -Harrells,NC,28444 -Surf City,NC,28445 -Ivanhoe,NC,28447 -Kelly,NC,28448 -Kure Beach,NC,28449 -Lake Waccamaw,NC,28450 -Leland,NC,28451 -Longwood,NC,28452 -Magnolia,NC,28453 -Maple Hill,NC,28454 -Nakina,NC,28455 -Riegelwood,NC,28456 -Rocky Point,NC,28457 -Rose Hill,NC,28458 -Shallotte,NC,28459 -Sneads Ferry,NC,28460 -Boiling Spring L,NC,28461 -Holden Beach,NC,28462 -Tabor City,NC,28463 -Teachey,NC,28464 -Oak Island,NC,28465 -Wallace,NC,28466 -Calabash,NC,28467 -Sunset Beach,NC,28468 -Ocean Isle Beach,NC,28469 -Watha,NC,28471 -Whiteville,NC,28472 -Willard,NC,28478 -Winnabow,NC,28479 -Wrightsville Bea,NC,28480 -Kinston,NC,28501 -Albertson,NC,28508 -Arapahoe,NC,28510 -Atlantic,NC,28511 -Pine Knoll Shore,NC,28512 -Ayden,NC,28513 -Bayboro,NC,28515 -Beaufort,NC,28516 -Beulaville,NC,28518 -Cedar Island,NC,28520 -Chinquapin,NC,28521 -Cove City,NC,28523 -Deep Run,NC,28525 -Dover,NC,28526 -Ernul,NC,28527 -Gloucester,NC,28528 -Grantsboro,NC,28529 -Grifton,NC,28530 -Harkers Island,NC,28531 -Havelock,NC,28532 -Hobucken,NC,28537 -Hookerton,NC,28538 -Hubert,NC,28539 -Jacksonville,NC,28540 -Camp Lejeune,NC,28542 -Tarawa Terrace,NC,28543 -Midway Park,NC,28544 -Jacksonville,NC,28546 -La Grange,NC,28551 -Lowland,NC,28552 -Marshallberg,NC,28553 -Maysville,NC,28555 -Merritt,NC,28556 -Morehead City,NC,28557 -New Bern,NC,28560 -New Bern,NC,28562 -Newport,NC,28570 -Oriental,NC,28571 -Pink Hill,NC,28572 -Pollocksville,NC,28573 -Richlands,NC,28574 -Sealevel,NC,28577 -Seven Springs,NC,28578 -Smyrna,NC,28579 -Snow Hill,NC,28580 -Stacy,NC,28581 -Stella,NC,28582 -Swansboro,NC,28584 -Trenton,NC,28585 -Vanceboro,NC,28586 -Vandemere,NC,28587 -Winterville,NC,28590 -Emerald Isle,NC,28594 -Hickory,NC,28601 -Hickory,NC,28602 -Banner Elk,NC,28604 -Blowing Rock,NC,28605 -Boomer,NC,28606 -Boone,NC,28607 -Catawba,NC,28609 -Claremont,NC,28610 -Collettsville,NC,28611 -Connellys Spring,NC,28612 -Conover,NC,28613 -Creston,NC,28615 -Crumpler,NC,28617 -Deep Gap,NC,28618 -Elkin,NC,28621 -Elk Park,NC,28622 -Ennice,NC,28623 -Ferguson,NC,28624 -Fleetwood,NC,28626 -Glade Valley,NC,28627 -Granite Falls,NC,28630 -Grassy Creek,NC,28631 -Harmony,NC,28634 -Hays,NC,28635 -Hiddenite,NC,28636 -Hudson,NC,28638 -Jefferson,NC,28640 -Jonesville,NC,28642 -Lansing,NC,28643 -Laurel Springs,NC,28644 -Lenoir,NC,28645 -Longisland,NC,28648 -Mc Grady,NC,28649 -Maiden,NC,28650 -Millers Creek,NC,28651 -Moravian Falls,NC,28654 -Morganton,NC,28655 -Frank,NC,28657 -Newton,NC,28658 -North Wilkesboro,NC,28659 -Olin,NC,28660 -Purlear,NC,28665 -Roaring Gap,NC,28668 -Roaring River,NC,28669 -Ronda,NC,28670 -Sherrills Ford,NC,28673 -Sparta,NC,28675 -State Road,NC,28676 -Statesville,NC,28677 -Stony Point,NC,28678 -Sugar Grove,NC,28679 -Taylorsville,NC,28681 -Terrell,NC,28682 -Thurmond,NC,28683 -Todd,NC,28684 -Traphill,NC,28685 -Triplett,NC,28686 -Union Grove,NC,28689 -Valdese,NC,28690 -Valle Crucis,NC,28691 -Vilas,NC,28692 -Warrensville,NC,28693 -West Jefferson,NC,28694 -Wilkesboro,NC,28697 -Zionville,NC,28698 -Alexander,NC,28701 -Almond,NC,28702 -Aquone,NC,28703 -Arden,NC,28704 -Bakersville,NC,28705 -Balsam Grove,NC,28708 -Barnardsville,NC,28709 -Black Mountain S,NC,28711 -Brevard,NC,28712 -Bryson City,NC,28713 -Burnsville,NC,28714 -Candler,NC,28715 -Canton,NC,28716 -Cashiers,NC,28717 -Cherokee,NC,28719 -Clyde,NC,28721 -Columbus,NC,28722 -Cullowhee,NC,28723 -East Flat Rock,NC,28726 -Etowah,NC,28729 -Fairview,NC,28730 -Flat Rock,NC,28731 -Fletcher,NC,28732 -Fontana Dam,NC,28733 -Franklin,NC,28734 -Gerton,NC,28735 -Glenville,NC,28736 -Hazelwood,NC,28738 -Hendersonville,NC,28739 -Greenmountain,NC,28740 -Highlands,NC,28741 -Horse Shoe,NC,28742 -Hot Springs,NC,28743 -Lake Junaluska,NC,28745 -Lake Lure,NC,28746 -Lake Toxaway,NC,28747 -Leicester,NC,28748 -Maggie Valley,NC,28751 -Marion,NC,28752 -Walnut,NC,28753 -Mars Hill,NC,28754 -Mill Spring,NC,28756 -Nebo,NC,28761 -Old Fort,NC,28762 -Otto,NC,28763 -Penrose,NC,28766 -Pisgah Forest,NC,28768 -Robbinsville,NC,28771 -Rosman,NC,28772 -Saluda,NC,28773 -Sapphire,NC,28774 -Scaly Mountain,NC,28775 -Spruce Pine,NC,28777 -Warren Wilson Co,NC,28778 -Sylva,NC,28779 -Tapoco,NC,28780 -Topton,NC,28781 -Tryon,NC,28782 -Tuckasegee,NC,28783 -Waynesville,NC,28786 -Weaverville,NC,28787 -Whittier,NC,28789 -Zirconia,NC,28790 -Hendersonville,NC,28792 -Asheville,NC,28801 -Asheville,NC,28803 -Asheville,NC,28804 -Asheville,NC,28805 -Asheville,NC,28806 -Andrews,NC,28901 -Brasstown,NC,28902 -Hayesville,NC,28904 -Marble,NC,28905 -Unaka,NC,28906 -Warne,NC,28909 -Absaraka,ND,58002 -Alice,ND,58003 -Amenia,ND,58004 -Argusville,ND,58005 -Arthur,ND,58006 -Ayr,ND,58007 -Barney,ND,58008 -Blanchard,ND,58009 -Buffalo,ND,58011 -Casselton,ND,58012 -Cayuga,ND,58013 -Chaffee,ND,58014 -Christine,ND,58015 -Clifford,ND,58016 -Brampton,ND,58017 -Colfax,ND,58018 -Davenport,ND,58021 -Enderlin,ND,58027 -Erie,ND,58029 -Fairmount,ND,58030 -Fingal,ND,58031 -Forman,ND,58032 -Englevale,ND,58033 -Galesburg,ND,58035 -Gardner,ND,58036 -Grandin,ND,58038 -Great Bend,ND,58039 -Crete,ND,58040 -Hankinson,ND,58041 -Prosper,ND,58042 -Havana,ND,58043 -Kelso,ND,58045 -Colgate,ND,58046 -Hickson,ND,58047 -Hunter,ND,58048 -Hastings,ND,58049 -Kindred,ND,58051 -Leonard,ND,58052 -Geneseo,ND,58053 -Elliott,ND,58054 -Luverne,ND,58056 -Mcleod,ND,58057 -Mantador,ND,58058 -Durbin,ND,58059 -Delamere,ND,58060 -Mooreton,ND,58061 -Nome,ND,58062 -Oriska,ND,58063 -Page,ND,58064 -Rutland,ND,58067 -Sheldon,ND,58068 -Stirum,ND,58069 -Tower City,ND,58071 -Valley City,ND,58072 -Dwight,ND,58075 -Walcott,ND,58077 -Riverside,ND,58078 -Embden,ND,58079 -Wyndmere,ND,58081 -North River,ND,58102 -Fargo,ND,58103 -Briarwood,ND,58104 -Grand Forks,ND,58201 -Grand Forks,ND,58203 -Grand Forks,ND,58205 -Adams,ND,58210 -Aneta,ND,58212 -Ardoch,ND,58213 -Arvilla,ND,58214 -Bathgate,ND,58216 -Buxton,ND,58218 -Caledonia,ND,58219 -Concrete,ND,58220 -Crystal,ND,58222 -Cummings,ND,58223 -Dahlen,ND,58224 -Bowesmont,ND,58225 -Gardar,ND,58227 -Emerado,ND,58228 -Fairdale,ND,58229 -Finley,ND,58230 -Fordville,ND,58231 -Forest River,ND,58233 -Honeyford,ND,58235 -Nash,ND,58237 -Hamilton,ND,58238 -Hannah,ND,58239 -Hatton,ND,58240 -Hensel,ND,58241 -Hoople,ND,58243 -Orr,ND,58244 -58245,ND,58245 -58246,ND,58246 -Langdon,ND,58249 -Lankin,ND,58250 -Mccanna,ND,58251 -Kloten,ND,58254 -Maida,ND,58255 -Manvel,ND,58256 -Mayville,ND,58257 -Mekinock,ND,58258 -Whitman,ND,58259 -Milton,ND,58260 -Voss,ND,58261 -Mountain,ND,58262 -58264,ND,58264 -Neche,ND,58265 -Niagara,ND,58266 -Kempton,ND,58267 -Osnabrock,ND,58269 -Park River,ND,58270 -Joliette,ND,58271 -Petersburg,ND,58272 -Pisek,ND,58273 -Portland,ND,58274 -Reynolds,ND,58275 -Saint Thomas,ND,58276 -Sharon,ND,58277 -Thompson,ND,58278 -Wales,ND,58281 -Backoo,ND,58282 -Devils Lake,ND,58301 -Loma,ND,58311 -Barton,ND,58315 -Belcourt,ND,58316 -Bisbee,ND,58317 -Bottineau,ND,58318 -Bremen,ND,58319 -Brinsmade,ND,58320 -Brocket,ND,58321 -Calvin,ND,58323 -Maza,ND,58324 -Churchs Ferry,ND,58325 -Southam,ND,58327 -Doyon,ND,58328 -San Haven,ND,58329 -Edmore,ND,58330 -Egeland,ND,58331 -Fillmore,ND,58332 -Hamberg,ND,58337 -Hampden,ND,58338 -Hansboro,ND,58339 -Manfred,ND,58341 -Heimdal,ND,58342 -Knox,ND,58343 -Mapes,ND,58344 -Lawton,ND,58345 -Harlow,ND,58346 -Flora,ND,58348 -Minnewaukan,ND,58351 -Calio,ND,58352 -Mylo,ND,58353 -Brantford,ND,58356 -Oberon,ND,58357 -Overly,ND,58360 -Pekin,ND,58361 -Penn,ND,58362 -Perth,ND,58363 -Rocklake,ND,58365 -Nanson,ND,58366 -Rolla,ND,58367 -Pleasant Lake,ND,58368 -Saint John,ND,58369 -Saint Michael,ND,58370 -Sarles,ND,58372 -58373,ND,58373 -Sheyenne,ND,58374 -Starkweather,ND,58377 -Hamar,ND,58380 -Warwick,ND,58381 -Webster,ND,58382 -Willow City,ND,58384 -Wolford,ND,58385 -Baker,ND,58386 -Eldridge,ND,58401 -Alfred,ND,58411 -Arena,ND,58412 -Ashley,ND,58413 -Berlin,ND,58415 -Binford,ND,58416 -Bowdon,ND,58418 -Buchanan,ND,58420 -Bordulac,ND,58421 -Emrick,ND,58422 -Chaseley,ND,58423 -Windsor,ND,58424 -Cooperstown,ND,58425 -Courtenay,ND,58426 -Dawson,ND,58428 -Sibley,ND,58429 -Denhoff,ND,58430 -Dickey,ND,58431 -Eckelson,ND,58432 -Merricourt,ND,58433 -Ellendale,ND,58436 -Fessenden,ND,58438 -Forbes,ND,58439 -Fredonia,ND,58440 -Fullerton,ND,58441 -Gackle,ND,58442 -Juanita,ND,58443 -Goodrich,ND,58444 -Grace City,ND,58445 -Walum,ND,58448 -Heaton,ND,58450 -Hurdsfield,ND,58451 -Nortonville,ND,58454 -Kensal,ND,58455 -Kulm,ND,58456 -Grand Rapids,ND,58458 -Lehr,ND,58460 -Litchville,ND,58461 -Mcclusky,ND,58463 -Mchenry,ND,58464 -Manfred,ND,58465 -Marion,ND,58466 -Medina,ND,58467 -Monango,ND,58471 -Adrian,ND,58472 -Guelph,ND,58474 -Pettibone,ND,58475 -Edmunds,ND,58476 -Regan,ND,58477 -Lake Williams,ND,58478 -Leal,ND,58479 -Sanborn,ND,58480 -Spiritwood,ND,58481 -Steele,ND,58482 -Streeter,ND,58483 -Sutton,ND,58484 -Sykeston,ND,58486 -Tappen,ND,58487 -Tuttle,ND,58488 -Venturia,ND,58489 -Verona,ND,58490 -Wimbledon,ND,58492 -Wing,ND,58494 -Burnstad,ND,58495 -Woodworth,ND,58496 -Ypsilanti,ND,58497 -Bismarck,ND,58501 -Lincoln,ND,58504 -Almont,ND,58520 -Baldwin,ND,58521 -Beulah,ND,58523 -Braddock,ND,58524 -Cannon Ball,ND,58528 -Carson,ND,58529 -Fort Clark,ND,58530 -Coleharbor,ND,58531 -Driscoll,ND,58532 -Heil,ND,58533 -Lark,ND,58535 -Huff,ND,58537 -Fort Yates,ND,58538 -Emmet,ND,58540 -Golden Valley,ND,58541 -Hague,ND,58542 -Hazelton,ND,58544 -Hazen,ND,58545 -Kintyre,ND,58549 -Leith,ND,58551 -Temvik,ND,58552 -Mckenzie,ND,58553 -Mandan,ND,58554 -Menoken,ND,58558 -Mercer,ND,58559 -Moffit,ND,58560 -Napoleon,ND,58561 -Bentley,ND,58562 -Hannover,ND,58563 -Raleigh,ND,58564 -Riverdale,ND,58565 -Saint Anthony,ND,58566 -Selfridge,ND,58568 -Shields,ND,58569 -Breien,ND,58570 -Stanton,ND,58571 -Sterling,ND,58572 -Strasburg,ND,58573 -Turtle Lake,ND,58575 -Underwood,ND,58576 -Washburn,ND,58577 -Wilton,ND,58579 -Zap,ND,58580 -Zeeland,ND,58581 -New Hradec,ND,58601 -Amidon,ND,58620 -Beach,ND,58621 -Fryburg,ND,58622 -Bowman,ND,58623 -Dodge,ND,58625 -Dunn Center,ND,58626 -Gorham,ND,58627 -Gladstone,ND,58630 -Glen Ullin,ND,58631 -Golva,ND,58632 -Grassy Butte,ND,58634 -Werner,ND,58636 -Hebron,ND,58638 -Bucyrus,ND,58639 -Killdeer,ND,58640 -Lefor,ND,58641 -Manning,ND,58642 -Marmarth,ND,58643 -Medora,ND,58645 -Burt,ND,58646 -New England,ND,58647 -Reeder,ND,58649 -Regent,ND,58650 -Rhame,ND,58651 -Richardton,ND,58652 -Gascoyne,ND,58653 -Sentinel Butte,ND,58654 -South Heart,ND,58655 -Taylor,ND,58656 -Trotters,ND,58657 -Minot,ND,58701 -Minot Afb,ND,58704 -Anamoose,ND,58710 -Antler,ND,58711 -Balfour,ND,58712 -Bantry,ND,58713 -Benedict,ND,58716 -Blaisdell,ND,58718 -Coteau,ND,58721 -Burlington,ND,58722 -Butte,ND,58723 -Carpio,ND,58725 -Larson,ND,58727 -Crosby,ND,58730 -Deering,ND,58731 -Des Lacs,ND,58733 -Donnybrook,ND,58734 -Douglas,ND,58735 -Drake,ND,58736 -Northgate,ND,58737 -Foxholm,ND,58738 -Gardena,ND,58739 -Wolseth,ND,58740 -Granville,ND,58741 -Karlsruhe,ND,58744 -Coulee,ND,58746 -Kief,ND,58747 -Kramer,ND,58748 -Lansford,ND,58750 -Lignite,ND,58752 -Mcgregor,ND,58755 -Makoti,ND,58756 -Mandaree,ND,58757 -Martin,ND,58758 -Max,ND,58759 -Maxbass,ND,58760 -Loraine,ND,58761 -Newburg,ND,58762 -Charlson,ND,58763 -Noonan,ND,58765 -Norwich,ND,58768 -Palermo,ND,58769 -Parshall,ND,58770 -Plaza,ND,58771 -Portal,ND,58772 -Battleview,ND,58773 -Roseglen,ND,58775 -Ross,ND,58776 -Ruso,ND,58778 -Raub,ND,58779 -Sawyer,ND,58781 -Sherwood,ND,58782 -Carbury,ND,58783 -Belden,ND,58784 -Surrey,ND,58785 -Tolley,ND,58787 -Berwick,ND,58788 -Upham,ND,58789 -Velva,ND,58790 -Bergen,ND,58792 -Westhope,ND,58793 -White Earth,ND,58794 -Hamlet,ND,58795 -Bonetraill,ND,58801 -Appam,ND,58830 -Rawson,ND,58831 -Ambrose,ND,58833 -Arnegard,ND,58835 -Cartwright,ND,58838 -Springbrook,ND,58843 -Colgan,ND,58844 -Alkabo,ND,58845 -Keene,ND,58847 -Wheelock,ND,58849 -Temple,ND,58852 -Trenton,ND,58853 -Watford City,ND,58854 -Zahl,ND,58856 -Alexandria,OH,43001 -Amlin,OH,43002 -Ashley,OH,43003 -Blacklick,OH,43004 -Brinkhaven,OH,43006 -Cable,OH,43009 -Centerburg,OH,43011 -Croton,OH,43013 -Danville,OH,43014 -Delaware,OH,43015 -Dublin,OH,43017 -Fredericktown,OH,43019 -Galena,OH,43021 -Gambier,OH,43022 -Granville,OH,43023 -Hebron,OH,43025 -Hilliard,OH,43026 -Howard,OH,43028 -Irwin,OH,43029 -Johnstown,OH,43031 -Magnetic Springs,OH,43036 -Martinsburg,OH,43037 -Marysville,OH,43040 -Mechanicsburg,OH,43044 -Milford Center,OH,43045 -Millersport,OH,43046 -Mount Vernon,OH,43050 -New Albany,OH,43054 -Newark,OH,43055 -Heath,OH,43056 -North Lewisburg,OH,43060 -Ostrander,OH,43061 -Pataskala,OH,43062 -Plain City,OH,43064 -Shawnee Hills,OH,43065 -Radnor,OH,43066 -Raymond,OH,43067 -Reynoldsburg,OH,43068 -Saint Louisville,OH,43071 -Saint Paris,OH,43072 -Sunbury,OH,43074 -Thornville,OH,43076 -Urbana,OH,43078 -Utica,OH,43080 -Westerville,OH,43081 -Woodstock,OH,43084 -Worthington,OH,43085 -Amanda,OH,43102 -Ashville,OH,43103 -Baltimore,OH,43105 -Bloomingburg,OH,43106 -Hide A Way Hills,OH,43107 -Canal Winchester,OH,43110 -Carroll,OH,43112 -Circleville,OH,43113 -Clarksburg,OH,43115 -Galloway,OH,43119 -Grove City,OH,43123 -Groveport,OH,43125 -Jeffersonville,OH,43128 -Lancaster,OH,43130 -Laurelville,OH,43135 -Lockbourne,OH,43137 -Logan,OH,43138 -London,OH,43140 -Mount Sterling,OH,43143 -New Holland,OH,43145 -Orient,OH,43146 -Pickerington,OH,43147 -Pleasantville,OH,43148 -Rockbridge,OH,43149 -Rushville,OH,43150 -South Bloomingvi,OH,43152 -South Solon,OH,43153 -Stoutsville,OH,43154 -Sugar Grove,OH,43155 -Washington Court,OH,43160 -West Jefferson,OH,43162 -Williamsport,OH,43164 -Columbus,OH,43201 -Columbus,OH,43202 -Columbus,OH,43203 -Columbus,OH,43204 -Columbus,OH,43205 -Columbus,OH,43206 -Columbus,OH,43207 -Bexley,OH,43209 -Columbus,OH,43210 -Columbus,OH,43211 -Columbus,OH,43212 -Whitehall,OH,43213 -Columbus,OH,43214 -Columbus,OH,43215 -Columbus,OH,43217 -Shepard,OH,43219 -Columbus,OH,43220 -Upper Arlington,OH,43221 -Columbus,OH,43222 -Columbus,OH,43223 -Columbus,OH,43224 -Columbus,OH,43227 -Lincoln Village,OH,43228 -Columbus,OH,43229 -Gahanna,OH,43230 -Columbus,OH,43231 -Columbus,OH,43232 -West Worthington,OH,43235 -Marion,OH,43302 -Belle Center,OH,43310 -Bellefontaine,OH,43311 -Caledonia,OH,43314 -Cardington,OH,43315 -Carey,OH,43316 -De Graff,OH,43318 -East Liberty,OH,43319 -Edison,OH,43320 -Fulton,OH,43321 -Harpster,OH,43323 -Huntsville,OH,43324 -Kenton,OH,43326 -Lakeview,OH,43331 -La Rue,OH,43332 -Lewistown,OH,43333 -Marengo,OH,43334 -Martel,OH,43335 -Morral,OH,43337 -Mount Gilead,OH,43338 -Mount Victory,OH,43340 -New Bloomington,OH,43341 -Prospect,OH,43342 -Quincy,OH,43343 -Richwood,OH,43344 -Ridgeway,OH,43345 -Roundhead,OH,43346 -Rushsylvania,OH,43347 -Russells Point,OH,43348 -Sparta,OH,43350 -Upper Sandusky,OH,43351 -Waldo,OH,43356 -West Liberty,OH,43357 -West Mansfield,OH,43358 -Wharton,OH,43359 -Zanesfield,OH,43360 -Bowling Green,OH,43402 -Bradner,OH,43406 -Burgoon,OH,43407 -Clyde,OH,43410 -Curtice,OH,43412 -Cygnet,OH,43413 -Elmore,OH,43416 -Fremont,OH,43420 -Genoa,OH,43430 -Gibsonburg,OH,43431 -Elliston,OH,43432 -Millersville,OH,43435 -Isle Saint Georg,OH,43436 -Kelleys Island,OH,43438 -Lacarne,OH,43439 -Lakeside,OH,43440 -Lindsey,OH,43442 -Luckey,OH,43443 -Bono,OH,43445 -Millbury,OH,43447 -Oak Harbor,OH,43449 -Pemberville,OH,43450 -Portage,OH,43451 -Port Clinton,OH,43452 -Put In Bay,OH,43456 -Risingsun,OH,43457 -Rossford,OH,43460 -Rudolph,OH,43462 -Vickery,OH,43464 -Walbridge,OH,43465 -Wayne,OH,43466 -Woodville,OH,43469 -Alvordton,OH,43501 -Archbold,OH,43502 -Berkey,OH,43504 -Bryan,OH,43506 -Custar,OH,43511 -Defiance,OH,43512 -Delta,OH,43515 -Deshler,OH,43516 -Edgerton,OH,43517 -Edon,OH,43518 -Fayette,OH,43521 -Grand Rapids,OH,43522 -Hamler,OH,43524 -Haskins,OH,43525 -Hicksville,OH,43526 -Holgate,OH,43527 -Holland,OH,43528 -Liberty Center,OH,43532 -Lyons,OH,43533 -Mc Clure,OH,43534 -Malinta,OH,43535 -Mark Center,OH,43536 -Maumee,OH,43537 -Metamora,OH,43540 -Monclova,OH,43542 -Montpelier,OH,43543 -Napoleon,OH,43545 -New Bavaria,OH,43548 -Ney,OH,43549 -Perrysburg,OH,43551 -Pioneer,OH,43554 -Sherwood,OH,43556 -Stryker,OH,43557 -Swanton,OH,43558 -Sylvania,OH,43560 -Waterville,OH,43566 -Wauseon,OH,43567 -Weston,OH,43569 -West Unity,OH,43570 -Whitehouse,OH,43571 -Toledo,OH,43602 -Toledo,OH,43604 -Oregon,OH,43605 -Toledo,OH,43606 -Toledo,OH,43607 -Toledo,OH,43608 -Toledo,OH,43609 -Toledo,OH,43610 -Toledo,OH,43611 -Toledo,OH,43612 -Toledo,OH,43613 -Toledo,OH,43614 -Toledo,OH,43615 -Oregon,OH,43616 -Toledo,OH,43617 -Oregon,OH,43618 -Northwood,OH,43619 -Toledo,OH,43620 -Toledo,OH,43623 -Toledo,OH,43624 -Sonora,OH,43701 -Somerton,OH,43713 -Beallsville,OH,43716 -Belmont,OH,43718 -Bethesda,OH,43719 -Blue Rock,OH,43720 -Byesville,OH,43723 -Caldwell,OH,43724 -Claysville,OH,43725 -Chandlersville,OH,43727 -Chesterhill,OH,43728 -Hemlock,OH,43730 -Crooksville,OH,43731 -Cumberland,OH,43732 -Duncan Falls,OH,43734 -Glenford,OH,43739 -Hopewell,OH,43746 -Jerusalem,OH,43747 -Junction City,OH,43748 -Guernsey,OH,43749 -Lewisville,OH,43754 -Lore City,OH,43755 -Mc Connelsville,OH,43756 -Malta,OH,43758 -Mount Perry,OH,43760 -New Concord,OH,43762 -New Lexington,OH,43764 -New Straitsville,OH,43766 -Norwich,OH,43767 -Philo,OH,43771 -Pleasant City,OH,43772 -Quaker City,OH,43773 -Roseville,OH,43777 -Salesville,OH,43778 -Sarahsville,OH,43779 -Senecaville,OH,43780 -Shawnee,OH,43782 -Somerset,OH,43783 -Pennsville,OH,43787 -Summerfield,OH,43788 -Antioch,OH,43793 -Adamsville,OH,43802 -Baltic,OH,43804 -Conesville,OH,43811 -Coshocton,OH,43812 -Adams Mills,OH,43821 -Frazeysburg,OH,43822 -Fresno,OH,43824 -Nashport,OH,43830 -Newcomerstown,OH,43832 -Port Washington,OH,43837 -Stone Creek,OH,43840 -Walhonding,OH,43843 -Warsaw,OH,43844 -West Lafayette,OH,43845 -Adena,OH,43901 -Alledonia,OH,43902 -Amsterdam,OH,43903 -Bellaire,OH,43906 -Moorefield,OH,43907 -Bergholz,OH,43908 -Bloomingdale,OH,43910 -Bridgeport,OH,43912 -Brilliant,OH,43913 -Clarington,OH,43915 -Dillonvale,OH,43917 -Calcutta,OH,43920 -Hammondsville,OH,43930 -Irondale,OH,43932 -Armstrong Mills,OH,43933 -Martins Ferry,OH,43935 -Mingo Junction,OH,43938 -Powhatan Point,OH,43942 -Rayland,OH,43943 -Richmond,OH,43944 -Salineville,OH,43945 -Sardis,OH,43946 -Shadyside,OH,43947 -Saint Clairsvill,OH,43950 -Wintersville,OH,43952 -Tiltonsville,OH,43963 -Toronto,OH,43964 -Wellsville,OH,43968 -Yorkville,OH,43971 -Freeport,OH,43973 -Hopedale,OH,43976 -Flushing,OH,43977 -Piedmont,OH,43983 -Jewett,OH,43986 -Scio,OH,43988 -South Amherst,OH,44001 -Andover,OH,44003 -Ashtabula,OH,44004 -Austinburg,OH,44010 -Avon,OH,44011 -Avon Lake,OH,44012 -Berea,OH,44017 -Burton,OH,44021 -Chagrin Falls,OH,44022 -Chardon,OH,44024 -Chesterland,OH,44026 -Columbia Station,OH,44028 -Conneaut,OH,44030 -Dorset,OH,44032 -Elyria,OH,44035 -North Ridgeville,OH,44039 -Gates Mills,OH,44040 -Geneva,OH,44041 -Grafton,OH,44044 -Huntsburg,OH,44046 -Jefferson,OH,44047 -Kingsville,OH,44048 -Lagrange,OH,44050 -Lorain,OH,44052 -Lorain,OH,44053 -Sheffield Lake,OH,44054 -Lorain,OH,44055 -Macedonia,OH,44056 -Madison,OH,44057 -Mentor,OH,44060 -Middlefield,OH,44062 -Montville,OH,44064 -Newbury,OH,44065 -Northfield,OH,44067 -North Olmsted,OH,44070 -Novelty,OH,44072 -Oberlin,OH,44074 -East Orwell,OH,44076 -Fairport Harbor,OH,44077 -Perry,OH,44081 -Pierpont,OH,44082 -Roaming Shores,OH,44084 -Roaming Shores,OH,44085 -Thompson,OH,44086 -Twinsburg,OH,44087 -Vermilion,OH,44089 -Wellington,OH,44090 -Wickliffe,OH,44092 -Williamsfield,OH,44093 -Willoughby,OH,44094 -Willowick,OH,44095 -Windsor,OH,44099 -Cleveland,OH,44102 -Cleveland,OH,44103 -Cleveland,OH,44104 -Cleveland,OH,44105 -Cleveland,OH,44106 -Edgewater,OH,44107 -Cleveland,OH,44108 -Cleveland,OH,44109 -Cleveland,OH,44110 -Cleveland,OH,44111 -East Cleveland,OH,44112 -Cleveland,OH,44113 -Cleveland,OH,44114 -Cleveland,OH,44115 -Rocky River,OH,44116 -Euclid,OH,44117 -Cleveland Height,OH,44118 -Cleveland,OH,44119 -Cleveland,OH,44120 -South Euclid,OH,44121 -Beachwood,OH,44122 -Shore,OH,44123 -Lyndhurst Mayfie,OH,44124 -Garfield Heights,OH,44125 -Fairview Park,OH,44126 -Cleveland,OH,44127 -Cleveland,OH,44128 -Parma,OH,44129 -Midpark,OH,44130 -Independence,OH,44131 -Noble,OH,44132 -North Royalton,OH,44133 -Parma,OH,44134 -Cleveland,OH,44135 -Strongsville,OH,44136 -Maple Heights,OH,44137 -Olmsted Falls,OH,44138 -Solon,OH,44139 -Bay Village,OH,44140 -Brecksville,OH,44141 -Brookpark,OH,44142 -Richmond Heights,OH,44143 -Brooklyn,OH,44144 -Westlake,OH,44145 -Bedford,OH,44146 -Broadview Height,OH,44147 -Atwater,OH,44201 -Reminderville,OH,44202 -Norton,OH,44203 -Brunswick,OH,44212 -Burbank,OH,44214 -Chippewa Lake,OH,44215 -Clinton,OH,44216 -Creston,OH,44217 -Cuyahoga Falls,OH,44221 -Cuyahoga Falls,OH,44223 -Stow,OH,44224 -Doylestown,OH,44230 -Garrettsville,OH,44231 -Hinckley,OH,44233 -Hiram,OH,44234 -Homerville,OH,44235 -Hudson,OH,44236 -Kent,OH,44240 -Streetsboro,OH,44241 -Litchfield,OH,44253 -Lodi,OH,44254 -Mantua,OH,44255 -Medina,OH,44256 -Mogadore,OH,44260 -Munroe Falls,OH,44262 -Peninsula,OH,44264 -Ravenna,OH,44266 -Rittman,OH,44270 -Rootstown,OH,44272 -Seville,OH,44273 -Spencer,OH,44275 -Sterling,OH,44276 -Tallmadge,OH,44278 -Valley City,OH,44280 -Wadsworth,OH,44281 -Richfield,OH,44286 -West Salem,OH,44287 -Windham,OH,44288 -Akron,OH,44301 -Akron,OH,44302 -Akron,OH,44303 -Akron,OH,44304 -Akron,OH,44305 -Akron,OH,44306 -Akron,OH,44307 -Akron,OH,44308 -Akron,OH,44310 -Akron,OH,44311 -Akron,OH,44312 -Akron,OH,44313 -Akron,OH,44314 -Akron,OH,44319 -Akron,OH,44320 -Copley,OH,44321 -Fairlawn,OH,44333 -Berlin Center,OH,44401 -Bristolville,OH,44402 -Brookfield,OH,44403 -Burghill,OH,44404 -Campbell,OH,44405 -Canfield,OH,44406 -Columbiana,OH,44408 -Cortland,OH,44410 -Deerfield,OH,44411 -Diamond,OH,44412 -East Palestine,OH,44413 -Farmdale,OH,44417 -Fowler,OH,44418 -Girard,OH,44420 -Hanoverton,OH,44423 -Hubbard,OH,44425 -Kensington,OH,44427 -Kinsman,OH,44428 -Lake Milton,OH,44429 -Leavittsburg,OH,44430 -Leetonia,OH,44431 -Lisbon,OH,44432 -Lowellville,OH,44436 -Mc Donald,OH,44437 -Masury,OH,44438 -Mineral Ridge,OH,44440 -Negley,OH,44441 -New Middletown,OH,44442 -New Springfield,OH,44443 -Newton Falls,OH,44444 -New Waterford,OH,44445 -Niles,OH,44446 -North Benton,OH,44449 -North Bloomfield,OH,44450 -North Jackson,OH,44451 -North Lima,OH,44452 -Petersburg,OH,44454 -Rogers,OH,44455 -Salem,OH,44460 -Southington,OH,44470 -Struthers,OH,44471 -Vienna,OH,44473 -Warren,OH,44481 -Warren,OH,44483 -Warren,OH,44484 -Warren,OH,44485 -Washingtonville,OH,44490 -West Farmington,OH,44491 -Youngstown,OH,44502 -Youngstown,OH,44503 -Youngstown,OH,44504 -Youngstown,OH,44505 -Youngstown,OH,44506 -Youngstown,OH,44507 -Youngstown,OH,44509 -Youngstown,OH,44510 -Youngstown,OH,44511 -Boardman,OH,44512 -Poland,OH,44514 -Austintown,OH,44515 -Alliance,OH,44601 -Apple Creek,OH,44606 -Beach City,OH,44608 -Beloit,OH,44609 -Big Prairie,OH,44611 -Bolivar,OH,44612 -Brewster,OH,44613 -Canal Fulton,OH,44614 -Carrollton,OH,44615 -Dalton,OH,44618 -Dellroy,OH,44620 -Dennison,OH,44621 -Dover,OH,44622 -Dundee,OH,44624 -East Rochester,OH,44625 -East Sparta,OH,44626 -Fredericksburg,OH,44627 -Glenmont,OH,44628 -Gnadenhutten,OH,44629 -Hartville,OH,44632 -Holmesville,OH,44633 -Homeworth,OH,44634 -Killbuck,OH,44637 -Lakeville,OH,44638 -Louisville,OH,44641 -Magnolia,OH,44643 -Malvern,OH,44644 -Marshallville,OH,44645 -Massillon,OH,44646 -Massillon,OH,44647 -Mechanicstown,OH,44651 -Millersburg,OH,44654 -Zoarville,OH,44656 -Minerva,OH,44657 -Navarre,OH,44662 -New Philadelphia,OH,44663 -North Lawrence,OH,44666 -Orrville,OH,44667 -Paris,OH,44669 -Sebring,OH,44672 -Sherrodsville,OH,44675 -Shreve,OH,44676 -Smithville,OH,44677 -Strasburg,OH,44680 -Sugarcreek,OH,44681 -Uhrichsville,OH,44683 -Uniontown,OH,44685 -Waynesburg,OH,44688 -Wilmot,OH,44689 -Wooster,OH,44691 -Bowerston,OH,44695 -Tippecanoe,OH,44699 -Canton,OH,44702 -Canton,OH,44703 -Canton,OH,44704 -Canton,OH,44705 -Canton,OH,44706 -North Industry,OH,44707 -Canton,OH,44708 -North Canton,OH,44709 -Canton,OH,44710 -Canton,OH,44714 -Jackson Belden,OH,44718 -North Canton,OH,44720 -Canton,OH,44721 -East Canton,OH,44730 -Alvada,OH,44802 -Arcadia,OH,44804 -Ashland,OH,44805 -Carrothers,OH,44807 -Bellevue,OH,44811 -Bellville,OH,44813 -Berlin Heights,OH,44814 -Bloomdale,OH,44817 -Bloomville,OH,44818 -Bucyrus,OH,44820 -Butler,OH,44822 -Castalia,OH,44824 -Chatfield,OH,44825 -Collins,OH,44826 -Crestline,OH,44827 -Fostoria,OH,44830 -Galion,OH,44833 -Green Springs,OH,44836 -Greenwich,OH,44837 -Shinrock,OH,44839 -Jeromesville,OH,44840 -Kansas,OH,44841 -Loudonville,OH,44842 -Lucas,OH,44843 -Mc Cutchenville,OH,44844 -Melmore,OH,44845 -Milan,OH,44846 -Monroeville,OH,44847 -Nevada,OH,44849 -New London,OH,44851 -New Riegel,OH,44853 -New Washington,OH,44854 -North Fairfield,OH,44855 -Norwalk,OH,44857 -Nova,OH,44859 -Perrysville,OH,44864 -Plymouth,OH,44865 -Polk,OH,44866 -Republic,OH,44867 -Sandusky,OH,44870 -Savannah,OH,44874 -Shelby,OH,44875 -Shiloh,OH,44878 -Sullivan,OH,44880 -Sycamore,OH,44882 -Tiffin,OH,44883 -Tiro,OH,44887 -Wakeman,OH,44889 -Willard,OH,44890 -Mansfield,OH,44902 -Mansfield,OH,44903 -Lexington,OH,44904 -Lincoln,OH,44905 -Mansfield,OH,44906 -Mansfield,OH,44907 -Addyston,OH,45001 -Cleves,OH,45002 -College Corner,OH,45003 -Carlisle,OH,45005 -Hamilton,OH,45011 -Rossville,OH,45013 -Fairfield,OH,45014 -Lindenwald,OH,45015 -Harrison,OH,45030 -Otterbien Home,OH,45036 -Maineville,OH,45039 -Mason,OH,45040 -Middletown,OH,45042 -Excello,OH,45044 -Monroe,OH,45050 -North Bend,OH,45052 -Okeana,OH,45053 -Oregonia,OH,45054 -Miami University,OH,45056 -Somerville,OH,45064 -South Lebanon,OH,45065 -Springboro,OH,45066 -Trenton,OH,45067 -Waynesville,OH,45068 -West Chester,OH,45069 -Aberdeen,OH,45101 -Amelia,OH,45102 -Batavia,OH,45103 -Bethel,OH,45106 -Blanchester,OH,45107 -Camp Dennison,OH,45111 -Clarksville,OH,45113 -Fayetteville,OH,45118 -Felicity,OH,45120 -Georgetown,OH,45121 -Goshen,OH,45122 -Greenfield,OH,45123 -Hamersville,OH,45130 -Hillsboro,OH,45133 -Leesburg,OH,45135 -Loveland,OH,45140 -Lynchburg,OH,45142 -Manchester,OH,45144 -Martinsville,OH,45146 -Midland,OH,45148 -Day Heights,OH,45150 -Morrow,OH,45152 -Moscow,OH,45153 -Mount Orab,OH,45154 -New Richmond,OH,45157 -New Vienna,OH,45159 -Pleasant Plain,OH,45162 -Ripley,OH,45167 -Russellville,OH,45168 -Sabina,OH,45169 -Sardinia,OH,45171 -Terrace Park,OH,45174 -Williamsburg,OH,45176 -Wilmington,OH,45177 -Cincinnati,OH,45202 -Cincinnati,OH,45203 -Cincinnati,OH,45204 -Cincinnati,OH,45205 -Cincinnati,OH,45206 -Cincinnati,OH,45207 -Cincinnati,OH,45208 -Cincinnati,OH,45209 -Cincinnati,OH,45210 -Cincinnati,OH,45211 -Norwood,OH,45212 -Taft,OH,45213 -Cincinnati,OH,45214 -Lockland,OH,45215 -Elmwood Place,OH,45216 -Saint Bernard,OH,45217 -Greenhills,OH,45218 -Cincinnati,OH,45219 -Cincinnati,OH,45220 -Cincinnati,OH,45223 -College Hill,OH,45224 -Cincinnati,OH,45225 -Cincinnati,OH,45226 -Madisonville,OH,45227 -Cincinnati,OH,45228 -Cincinnati,OH,45229 -Anderson,OH,45230 -Cincinnati,OH,45231 -Cincinnati,OH,45232 -Saylor Park,OH,45233 -Taft,OH,45236 -Cincinnati,OH,45237 -Western Hills,OH,45238 -Groesbeck,OH,45239 -Parkdale,OH,45240 -Sharonville,OH,45241 -Sycamore,OH,45242 -Madeira,OH,45243 -Newtown,OH,45244 -Newtown,OH,45245 -Glendale,OH,45246 -Groesbeck,OH,45247 -Westwood,OH,45248 -Sycamore,OH,45249 -Groesbeck,OH,45251 -Cincinnati,OH,45252 -Anderson,OH,45255 -Anna,OH,45302 -Ansonia,OH,45303 -Castine,OH,45304 -Bellbrook,OH,45305 -Botkins,OH,45306 -Bradford,OH,45308 -Brookville,OH,45309 -Camden,OH,45311 -Casstown,OH,45312 -Cedarville,OH,45314 -Clayton,OH,45315 -Conover,OH,45317 -Covington,OH,45318 -Eaton,OH,45320 -Eldorado,OH,45321 -Union,OH,45322 -Enon,OH,45323 -Fairborn,OH,45324 -Farmersville,OH,45325 -Fletcher,OH,45326 -Germantown,OH,45327 -Greenville,OH,45331 -Hollansburg,OH,45332 -Houston,OH,45333 -Jackson Center,OH,45334 -Jamestown,OH,45335 -Laura,OH,45337 -Lewisburg,OH,45338 -Ludlow Falls,OH,45339 -Maplewood,OH,45340 -Medway,OH,45341 -Miamisburg,OH,45342 -New Carlisle,OH,45344 -New Lebanon,OH,45345 -New Madison,OH,45346 -New Paris,OH,45347 -New Weston,OH,45348 -Piqua,OH,45356 -Pleasant Hill,OH,45359 -Rossburg,OH,45362 -Russia,OH,45363 -Sidney,OH,45365 -Selma,OH,45368 -South Vienna,OH,45369 -Spring Valley,OH,45370 -Phoneton,OH,45371 -Troy,OH,45373 -Vandalia,OH,45377 -Versailles,OH,45380 -West Alexandria,OH,45381 -West Manchester,OH,45382 -West Milton,OH,45383 -Xenia,OH,45385 -Yellow Springs,OH,45387 -Yorkshire,OH,45388 -Union City,OH,45390 -Dayton,OH,45402 -Dayton,OH,45403 -Dayton,OH,45404 -Dayton,OH,45405 -Dayton,OH,45406 -Dayton,OH,45407 -Dayton,OH,45408 -Dayton,OH,45409 -Dayton,OH,45410 -Dayton,OH,45414 -Dayton,OH,45415 -Trotwood,OH,45416 -Dayton,OH,45417 -Dayton,OH,45418 -Dayton,OH,45419 -Kettering,OH,45420 -Huber Heights,OH,45424 -Trotwood,OH,45426 -Dayton,OH,45427 -Kettering,OH,45429 -Beavercreek,OH,45430 -Beavercreek,OH,45431 -Beavercreek,OH,45432 -Dayton,OH,45433 -Beavercreek,OH,45434 -West Carrollton,OH,45439 -Dayton,OH,45440 -West Carrollton,OH,45449 -Centerville,OH,45458 -Centerville,OH,45459 -Springfield,OH,45502 -Springfield,OH,45503 -Springfield,OH,45504 -Springfield,OH,45505 -Springfield,OH,45506 -Chillicothe,OH,45601 -Bainbridge,OH,45612 -Beaver,OH,45613 -Bidwell,OH,45614 -Blue Creek,OH,45616 -Chesapeake,OH,45619 -Cheshire,OH,45620 -Creola,OH,45622 -Crown City,OH,45623 -Frankfort,OH,45628 -Franklin Furnace,OH,45629 -Gallipolis,OH,45631 -Hamden,OH,45634 -Ironton,OH,45638 -Jackson,OH,45640 -Kingston,OH,45644 -Kitts Hill,OH,45645 -Latham,OH,45646 -Londonderry,OH,45647 -Lucasville,OH,45648 -Allensville,OH,45651 -Mc Dermott,OH,45652 -Minford,OH,45653 -New Plymouth,OH,45654 -Oak Hill,OH,45656 -Otway,OH,45657 -Patriot,OH,45658 -Pedro,OH,45659 -Peebles,OH,45660 -Idaho,OH,45661 -New Boston,OH,45662 -Portsmouth,OH,45663 -Proctorville,OH,45669 -Radcliff,OH,45670 -Rarden,OH,45671 -Ray,OH,45672 -Richmond Dale,OH,45673 -Rock Camp,OH,45675 -Scottown,OH,45678 -Seaman,OH,45679 -South Point,OH,45680 -South Salem,OH,45681 -South Webster,OH,45682 -Stout,OH,45684 -Thurman,OH,45685 -Vinton,OH,45686 -Waterloo,OH,45688 -Waverly,OH,45690 -Wellston,OH,45692 -West Union,OH,45693 -Wheelersburg,OH,45694 -Willow Wood,OH,45696 -Winchester,OH,45697 -Athens,OH,45701 -Albany,OH,45710 -Amesville,OH,45711 -Belpre,OH,45714 -Beverly,OH,45715 -Coolville,OH,45723 -Cutler,OH,45724 -Dexter City,OH,45727 -Fleming,OH,45729 -Glouster,OH,45732 -Rinard Mills,OH,45734 -Guysville,OH,45735 -Dexter,OH,45741 -Little Hocking,OH,45742 -Long Bottom,OH,45743 -Lowell,OH,45744 -Warner,OH,45745 -Macksburg,OH,45746 -Marietta,OH,45750 -Middleport,OH,45760 -Millfield,OH,45761 -Nelsonville,OH,45764 -New Marshfield,OH,45766 -New Matamoras,OH,45767 -Newport,OH,45768 -Pomeroy,OH,45769 -Portland,OH,45770 -Racine,OH,45771 -Reedsville,OH,45772 -Reno,OH,45773 -45774,OH,45774 -Rutland,OH,45775 -Shade,OH,45776 -Stewart,OH,45778 -The Plains,OH,45780 -Vincent,OH,45784 -Waterford,OH,45786 -Whipple,OH,45788 -Wingett Run,OH,45789 -Lima,OH,45801 -Lima,OH,45804 -Lima,OH,45805 -Cridersville,OH,45806 -Elida,OH,45807 -Ada,OH,45810 -Alger,OH,45812 -Antwerp,OH,45813 -Arlington,OH,45814 -Bluffton,OH,45817 -Cecil,OH,45821 -Carthagena,OH,45822 -Cloverdale,OH,45827 -Coldwater,OH,45828 -Columbus Grove,OH,45830 -Continental,OH,45831 -Convoy,OH,45832 -Delphos,OH,45833 -Dola,OH,45835 -Dunkirk,OH,45836 -Findlay,OH,45840 -Jenera,OH,45841 -Patterson,OH,45843 -Fort Jennings,OH,45844 -Fort Loramie,OH,45845 -Fort Recovery,OH,45846 -Grover Hill,OH,45849 -Harrod,OH,45850 -Haviland,OH,45851 -Leipsic,OH,45856 -Mc Comb,OH,45858 -Maria Stein,OH,45860 -Mendon,OH,45862 -Middle Point,OH,45863 -Minster,OH,45865 -Mount Blanchard,OH,45867 -Mount Cory,OH,45868 -New Bremen,OH,45869 -New Knoxville,OH,45871 -North Baltimore,OH,45872 -Oakwood,OH,45873 -Ohio City,OH,45874 -Gilboa,OH,45875 -Ottoville,OH,45876 -Pandora,OH,45877 -Paulding,OH,45879 -Payne,OH,45880 -Rawson,OH,45881 -Rockford,OH,45882 -Saint Henry,OH,45883 -Saint Marys,OH,45885 -Scott,OH,45886 -Spencerville,OH,45887 -Van Buren,OH,45889 -Vanlue,OH,45890 -Van Wert,OH,45891 -Venedocia,OH,45894 -Wapakoneta,OH,45895 -Waynesfield,OH,45896 -Willshire,OH,45898 -Alex,OK,73002 -Amber,OK,73004 -Anadarko,OK,73005 -Apache,OK,73006 -Arcadia,OK,73007 -Bethany,OK,73008 -Binger,OK,73009 -Blanchard,OK,73010 -Bradley,OK,73011 -Edmond,OK,73013 -Calumet,OK,73014 -Carnegie,OK,73015 -Cashion,OK,73016 -Cement,OK,73017 -Chickasha,OK,73018 -Choctaw,OK,73020 -Colony,OK,73021 -Corn,OK,73024 -Coyle,OK,73027 -Crescent,OK,73028 -Cyril,OK,73029 -Davis,OK,73030 -Edmond,OK,73034 -Elmore City,OK,73035 -El Reno,OK,73036 -Fort Cobb,OK,73038 -Foster,OK,73039 -Geary,OK,73040 -Gotebo,OK,73041 -Gracemont,OK,73042 -Greenfield,OK,73043 -Guthrie,OK,73044 -Harrah,OK,73045 -Hennepin,OK,73046 -Hinton,OK,73047 -Hydro,OK,73048 -Jones,OK,73049 -Lexington,OK,73051 -Lindsay,OK,73052 -Lookeba,OK,73053 -Luther,OK,73054 -Marlow,OK,73055 -Marshall,OK,73056 -Maysville,OK,73057 -Meridian,OK,73058 -Minco,OK,73059 -Morrison,OK,73061 -Mountain View,OK,73062 -Mulhall,OK,73063 -Mustang,OK,73064 -Newcastle,OK,73065 -Ninnekah,OK,73067 -Noble,OK,73068 -Norman,OK,73069 -Norman,OK,73071 -Norman,OK,73072 -Orlando,OK,73073 -Paoli,OK,73074 -Pauls Valley,OK,73075 -Perry,OK,73077 -Piedmont,OK,73078 -Pocasset,OK,73079 -Purcell,OK,73080 -Ratliff City,OK,73081 -Rush Springs,OK,73082 -Spencer,OK,73084 -Sulphur,OK,73086 -Tussy,OK,73088 -Tuttle,OK,73089 -Union City,OK,73090 -Verden,OK,73092 -Washington,OK,73093 -Wayne,OK,73095 -Weatherford,OK,73096 -Wynnewood,OK,73098 -Yukon,OK,73099 -Oklahoma City,OK,73102 -Oklahoma City,OK,73103 -Oklahoma City,OK,73104 -Oklahoma City,OK,73105 -Oklahoma City,OK,73106 -Oklahoma City,OK,73107 -Oklahoma City,OK,73108 -Oklahoma City,OK,73109 -Midwest City,OK,73110 -Oklahoma City,OK,73111 -Oklahoma City,OK,73112 -Oklahoma City,OK,73114 -Del City,OK,73115 -Nichols Hills,OK,73116 -Oklahoma City,OK,73117 -Oklahoma City,OK,73118 -Oklahoma City,OK,73119 -Oklahoma City,OK,73120 -Oklahoma City,OK,73121 -Warr Acres,OK,73122 -Oklahoma City,OK,73127 -Oklahoma City,OK,73128 -Oklahoma City,OK,73129 -Midwest City,OK,73130 -Oklahoma City,OK,73131 -Warr Acres,OK,73132 -Oklahoma City,OK,73134 -Oklahoma City,OK,73135 -Oklahoma City,OK,73139 -Oklahoma City,OK,73141 -Oklahoma City,OK,73142 -Tinker Afb,OK,73145 -Oklahoma City,OK,73149 -Oklahoma City,OK,73150 -Oklahoma City,OK,73151 -Oklahoma City,OK,73159 -Moore,OK,73160 -Oklahoma City,OK,73162 -Moore,OK,73165 -Oklahoma City,OK,73169 -Moore,OK,73170 -Oklahoma City,OK,73173 -Oklahoma City,OK,73179 -Milo,OK,73401 -Burneyville,OK,73430 -Coleman,OK,73432 -Graham,OK,73437 -Healdton,OK,73438 -Kingston,OK,73439 -Lebanon,OK,73440 -Leon,OK,73441 -Loco,OK,73442 -Lone Grove,OK,73443 -Mc Millan,OK,73446 -Mannsville,OK,73447 -Marietta,OK,73448 -Mead,OK,73449 -Milburn,OK,73450 -Overbrook,OK,73453 -Ringling,OK,73456 -Springer,OK,73458 -Thackerville,OK,73459 -Tishomingo,OK,73460 -Wapanucka,OK,73461 -Rubottom,OK,73463 -Lawton,OK,73501 -Fort Sill,OK,73503 -Lawton,OK,73505 -Lawton,OK,73507 -Altus,OK,73521 -Blair,OK,73526 -Cache,OK,73527 -Chattanooga,OK,73528 -Comanche,OK,73529 -Davidson,OK,73530 -Devol,OK,73531 -Duke,OK,73532 -Duncan,OK,73533 -Eldorado,OK,73537 -Elgin,OK,73538 -Elmer,OK,73539 -Faxon,OK,73540 -Fletcher,OK,73541 -Frederick,OK,73542 -Geronimo,OK,73543 -Gould,OK,73544 -Grandfield,OK,73546 -Granite,OK,73547 -Hastings,OK,73548 -Headrick,OK,73549 -Hollis,OK,73550 -Hollister,OK,73551 -Indiahoma,OK,73552 -Loveland,OK,73553 -Reed,OK,73554 -Mountain Park,OK,73559 -Olustee,OK,73560 -Oscar,OK,73561 -Randlett,OK,73562 -Roosevelt,OK,73564 -Ryan,OK,73565 -Snyder,OK,73566 -Temple,OK,73568 -Grady,OK,73569 -Tipton,OK,73570 -Vinson,OK,73571 -Walters,OK,73572 -Waurika,OK,73573 -Clinton,OK,73601 -Arapaho,OK,73620 -Bessie,OK,73622 -Butler,OK,73625 -Canute,OK,73626 -Carter,OK,73627 -Strong City,OK,73628 -Cordell,OK,73632 -Crawford,OK,73638 -Custer City,OK,73639 -Dill City,OK,73641 -Durham,OK,73642 -Elk City,OK,73644 -Erick,OK,73645 -Fay,OK,73646 -Foss,OK,73647 -Hammon,OK,73650 -Hobart,OK,73651 -Leedey,OK,73654 -Lone Wolf,OK,73655 -Eagle City,OK,73658 -Putnam,OK,73659 -Reydon,OK,73660 -Rocky,OK,73661 -Sayre,OK,73662 -Seiling,OK,73663 -Sentinel,OK,73664 -Sweetwater,OK,73666 -Taloga,OK,73667 -Texola,OK,73668 -Thomas,OK,73669 -Willow,OK,73673 -Enid,OK,73701 -Enid,OK,73703 -Aline,OK,73716 -Alva,OK,73717 -Ames,OK,73718 -Amorita,OK,73719 -Bison,OK,73720 -Burlington,OK,73722 -Byron,OK,73723 -Canton,OK,73724 -Capron,OK,73725 -Carmen,OK,73726 -Carrier,OK,73727 -Cherokee,OK,73728 -Cleo Springs,OK,73729 -Covington,OK,73730 -Dacoma,OK,73731 -Douglas,OK,73733 -Dover,OK,73734 -Drummond,OK,73735 -Fairmont,OK,73736 -Orienta,OK,73737 -Garber,OK,73738 -Goltry,OK,73739 -Helena,OK,73741 -Hennessey,OK,73742 -Hitchcock,OK,73744 -Isabella,OK,73747 -Jet,OK,73749 -Kingfisher,OK,73750 -Kremlin,OK,73753 -Lahoma,OK,73754 -Longdale,OK,73755 -Loyal,OK,73756 -Lucien,OK,73757 -Manchester,OK,73758 -Medford,OK,73759 -Meno,OK,73760 -Nash,OK,73761 -Okarche,OK,73762 -Okeene,OK,73763 -Omega,OK,73764 -Pond Creek,OK,73766 -Ringwood,OK,73768 -Southard,OK,73770 -Wakita,OK,73771 -Watonga,OK,73772 -Waukomis,OK,73773 -Woodward,OK,73801 -Harmon,OK,73832 -Selman,OK,73834 -Camargo,OK,73835 -Chester,OK,73838 -Fargo,OK,73840 -Fort Supply,OK,73841 -Freedom,OK,73842 -Gage,OK,73843 -Gate,OK,73844 -Knowles,OK,73847 -Laverne,OK,73848 -Logan,OK,73849 -May,OK,73851 -Mooreland,OK,73852 -Mutual,OK,73853 -Rosston,OK,73855 -Sharon,OK,73857 -Shattuck,OK,73858 -Vici,OK,73859 -Waynoka,OK,73860 -Balko,OK,73931 -Elmwood,OK,73932 -Boise City,OK,73933 -Felt,OK,73937 -Forgan,OK,73938 -Goodwell,OK,73939 -Guymon,OK,73942 -Hardesty,OK,73944 -Optima,OK,73945 -Kenton,OK,73946 -Keyes,OK,73947 -Texhoma,OK,73949 -Baker,OK,73950 -Tyrone,OK,73951 -Barnsdall,OK,74002 -Bartlesville,OK,74003 -Bartlesville,OK,74006 -Bixby,OK,74008 -Bristow,OK,74010 -Broken Arrow,OK,74011 -Broken Arrow,OK,74012 -Broken Arrow,OK,74014 -Catoosa,OK,74015 -Chelsea,OK,74016 -Claremore,OK,74017 -Cleveland,OK,74020 -Collinsville,OK,74021 -Copan,OK,74022 -Cushing,OK,74023 -Delaware,OK,74027 -Depew,OK,74028 -Dewey,OK,74029 -Drumright,OK,74030 -Glencoe,OK,74032 -Glenpool,OK,74033 -Hominy,OK,74035 -Inola,OK,74036 -Jenks,OK,74037 -Jennings,OK,74038 -Kellyville,OK,74039 -Lenapah,OK,74042 -Mannford,OK,74044 -Maramec,OK,74045 -Mounds,OK,74047 -Nowata,OK,74048 -Ochelata,OK,74051 -Oologah,OK,74053 -Osage,OK,74054 -Owasso,OK,74055 -Pawhuska,OK,74056 -Pawnee,OK,74058 -Perkins,OK,74059 -Prue,OK,74060 -Ramona,OK,74061 -Ripley,OK,74062 -Sand Springs,OK,74063 -Sapulpa,OK,74066 -Skiatook,OK,74070 -S Coffeyville,OK,74072 -Sperry,OK,74073 -Stillwater,OK,74074 -Stillwater,OK,74075 -Kendrick,OK,74079 -Talala,OK,74080 -Terlton,OK,74081 -Wann,OK,74083 -Wynona,OK,74084 -Yale,OK,74085 -Tulsa,OK,74103 -Tulsa,OK,74104 -Tulsa,OK,74105 -Tulsa,OK,74106 -Tulsa,OK,74107 -Tulsa,OK,74108 -Tulsa,OK,74110 -Tulsa,OK,74112 -Tulsa,OK,74114 -Tulsa,OK,74115 -Tulsa,OK,74116 -Tulsa,OK,74117 -Tulsa,OK,74119 -Tulsa,OK,74120 -Tulsa,OK,74126 -Tulsa,OK,74127 -Tulsa,OK,74128 -Tulsa,OK,74129 -Tulsa,OK,74130 -Tulsa,OK,74131 -Tulsa,OK,74132 -Tulsa,OK,74133 -Tulsa,OK,74134 -Tulsa,OK,74135 -Tulsa,OK,74136 -Tulsa,OK,74137 -Tulsa,OK,74145 -Tulsa,OK,74146 -Vinita,OK,74301 -Adair,OK,74330 -Bernice,OK,74331 -Big Cabin,OK,74332 -Bluejacket,OK,74333 -Chouteau,OK,74337 -Colcord,OK,74338 -Commerce,OK,74339 -Eucha,OK,74342 -Fairland,OK,74343 -Grove,OK,74344 -Jay,OK,74346 -Kansas,OK,74347 -Locust Grove,OK,74352 -Miami,OK,74354 -Oaks,OK,74359 -Picher,OK,74360 -Pryor,OK,74361 -Quapaw,OK,74363 -Leach,OK,74364 -Salina,OK,74365 -Spavinaw,OK,74366 -Strang,OK,74367 -Twin Oaks,OK,74368 -Welch,OK,74369 -Wyandotte,OK,74370 -Muskogee,OK,74401 -Muskogee,OK,74403 -Beggs,OK,74421 -Boynton,OK,74422 -Braggs,OK,74423 -Canadian,OK,74425 -Checotah,OK,74426 -Cookson,OK,74427 -Council Hill,OK,74428 -Coweta,OK,74429 -Eufaula,OK,74432 -Fort Gibson,OK,74434 -Gore,OK,74435 -Haskell,OK,74436 -Hoffman,OK,74437 -Hoyt,OK,74440 -Hulbert,OK,74441 -Indianola,OK,74442 -Morris,OK,74445 -Okmulgee,OK,74447 -Oktaha,OK,74450 -Park Hill,OK,74451 -Peggs,OK,74452 -Porter,OK,74454 -Porum,OK,74455 -Proctor,OK,74457 -Stidham,OK,74461 -Stigler,OK,74462 -Taft,OK,74463 -Tahlequah,OK,74464 -Wagoner,OK,74467 -Warner,OK,74469 -Webbers Falls,OK,74470 -Welling,OK,74471 -Whitefield,OK,74472 -Mcalester,OK,74501 -Antlers,OK,74523 -Atoka,OK,74525 -Blanco,OK,74528 -Calvin,OK,74531 -Caney,OK,74533 -Centrahoma,OK,74534 -Clayton,OK,74536 -Coalgate,OK,74538 -Daisy,OK,74540 -Farris,OK,74542 -Finley,OK,74543 -Hartshorne,OK,74547 -Haywood,OK,74548 -Honobia,OK,74549 -Kinta,OK,74552 -Kiowa,OK,74553 -Lane,OK,74555 -Moyers,OK,74557 -Nashoba,OK,74558 -Pittsburg,OK,74560 -Quinton,OK,74561 -Rattan,OK,74562 -Red Oak,OK,74563 -Snow,OK,74567 -Stringtown,OK,74569 -Stuart,OK,74570 -Talihina,OK,74571 -Tupelo,OK,74572 -Tuskahoma,OK,74574 -Wardville,OK,74576 -Whitesboro,OK,74577 -Wilburton,OK,74578 -Ponca City,OK,74601 -Ponca City,OK,74604 -Billings,OK,74630 -Blackwell,OK,74631 -Braman,OK,74632 -Burbank,OK,74633 -Deer Creek,OK,74636 -Fairfax,OK,74637 -Hunter,OK,74640 -Kaw City,OK,74641 -Lamont,OK,74643 -Marland,OK,74644 -Nardin,OK,74646 -Peckham,OK,74647 -Ralston,OK,74650 -Red Rock,OK,74651 -Foraker,OK,74652 -Tonkawa,OK,74653 -Durant,OK,74701 -Bennington,OK,74723 -Bethel,OK,74724 -Bokchito,OK,74726 -Boswell,OK,74727 -Broken Bow,OK,74728 -Caddo,OK,74729 -Calera,OK,74730 -Cartwright,OK,74731 -Colbert,OK,74733 -Eagletown,OK,74734 -Fort Towson,OK,74735 -Garvin,OK,74736 -Grant,OK,74738 -Tom,OK,74740 -Hendrix,OK,74741 -Hugo,OK,74743 -Idabel,OK,74745 -Kenefic,OK,74748 -Ringold,OK,74754 -Rufe,OK,74755 -Sawyer,OK,74756 -Soper,OK,74759 -Spencerville,OK,74760 -Valliant,OK,74764 -Wright City,OK,74766 -Shawnee,OK,74801 -Ada,OK,74820 -Agra,OK,74824 -Allen,OK,74825 -Asher,OK,74826 -Atwood,OK,74827 -Boley,OK,74829 -Byars,OK,74831 -Carney,OK,74832 -Castle,OK,74833 -Chandler,OK,74834 -Clearview,OK,74835 -Dustin,OK,74839 -Earlsboro,OK,74840 -Fittstown,OK,74842 -Fitzhugh,OK,74843 -Vernon,OK,74845 -Holdenville,OK,74848 -Konawa,OK,74849 -Lamar,OK,74850 -Mc Loud,OK,74851 -Macomb,OK,74852 -Maud,OK,74854 -Meeker,OK,74855 -Mill Creek,OK,74856 -Newalla,OK,74857 -Bearden,OK,74859 -Paden,OK,74860 -Prague,OK,74864 -Roff,OK,74865 -Sasakwa,OK,74867 -Seminole,OK,74868 -Sparks,OK,74869 -Harden City,OK,74871 -Stratford,OK,74872 -Tecumseh,OK,74873 -Tryon,OK,74875 -Wanette,OK,74878 -Weleetka,OK,74880 -Wellston,OK,74881 -Welty,OK,74882 -Wetumka,OK,74883 -New Lima,OK,74884 -Arkoma,OK,74901 -Pocola,OK,74902 -Bokoshe,OK,74930 -Bunch,OK,74931 -Cameron,OK,74932 -Heavener,OK,74937 -Hodgen,OK,74939 -Howe,OK,74940 -Keota,OK,74941 -Mccurtain,OK,74944 -Muldrow,OK,74948 -Muse,OK,74949 -Poteau,OK,74953 -Roland,OK,74954 -Sallisaw,OK,74955 -Shady Point,OK,74956 -Octavia,OK,74957 -Spiro,OK,74959 -Stilwell,OK,74960 -Vian,OK,74962 -Watson,OK,74963 -Watts,OK,74964 -Westville,OK,74965 -Wister,OK,74966 -Antelope,OR,97001 -Aurora,OR,97002 -Beavercreek,OR,97004 -Beaverton,OR,97005 -Aloha,OR,97006 -Aloha,OR,97007 -Boring,OR,97009 -Bridal Veil,OR,97010 -Brightwood,OR,97011 -Canby,OR,97013 -Bonneville,OR,97014 -Clackamas,OR,97015 -Westport,OR,97016 -Colton,OR,97017 -Columbia City,OR,97018 -Corbett,OR,97019 -Friend,OR,97021 -Eagle Creek,OR,97022 -Estacada,OR,97023 -Gervais,OR,97026 -Gladstone,OR,97027 -Timberline Lodge,OR,97028 -Grass Valley,OR,97029 -Gresham,OR,97030 -Hood River,OR,97031 -Hubbard,OR,97032 -Kent,OR,97033 -Lake Oswego,OR,97034 -Lake Oswego,OR,97035 -Maupin,OR,97037 -Molalla,OR,97038 -Moro,OR,97039 -Mosier,OR,97040 -Mount Hood Parkd,OR,97041 -Mulino,OR,97042 -Odell,OR,97044 -Oregon City,OR,97045 -Rainier,OR,97048 -Zigzag,OR,97049 -Rufus,OR,97050 -Saint Helens,OR,97051 -Warren,OR,97053 -Deer Island,OR,97054 -Sandy,OR,97055 -Scappoose,OR,97056 -Shaniko,OR,97057 -The Dalles,OR,97058 -Troutdale,OR,97060 -Tualatin,OR,97062 -Wamic,OR,97063 -Vernonia,OR,97064 -Wasco,OR,97065 -Welches,OR,97067 -West Linn,OR,97068 -Wilsonville,OR,97070 -Woodburn,OR,97071 -Gresham,OR,97080 -Amity,OR,97101 -Astoria,OR,97103 -Banks,OR,97106 -Bay City,OR,97107 -Beaver,OR,97108 -Buxton,OR,97109 -Carlton,OR,97111 -Cloverdale,OR,97112 -Cornelius,OR,97113 -Dayton,OR,97114 -Dundee,OR,97115 -Glenwood,OR,97116 -Gales Creek,OR,97117 -Gaston,OR,97119 -Hammond,OR,97121 -Hebo,OR,97122 -Hillsboro,OR,97123 -Hillsboro,OR,97124 -Manning,OR,97125 -Lafayette,OR,97127 -Mcminnville,OR,97128 -Nehalem,OR,97131 -Newberg,OR,97132 -Rockaway,OR,97136 -Saint Paul,OR,97137 -Gearhart,OR,97138 -Sherwood,OR,97140 -Tillamook,OR,97141 -Timber,OR,97144 -Tolovana Park,OR,97145 -Warrenton,OR,97146 -Yamhill,OR,97148 -Neskowin,OR,97149 -Portland,OR,97201 -Portland,OR,97202 -Portland,OR,97203 -Portland,OR,97204 -Portland,OR,97205 -Portland,OR,97206 -Portland,OR,97209 -Portland,OR,97210 -Portland,OR,97211 -Portland,OR,97212 -Portland,OR,97213 -Portland,OR,97214 -Portland,OR,97215 -Portland,OR,97216 -Portland,OR,97217 -Portland,OR,97218 -Portland,OR,97219 -Portland,OR,97220 -Portland,OR,97221 -Milwaukie,OR,97222 -Garden Home,OR,97223 -Tigard,OR,97224 -Cedar Hills,OR,97225 -Portland,OR,97227 -Portland,OR,97229 -Rockwood Corners,OR,97230 -Portland,OR,97231 -Portland,OR,97232 -Portland,OR,97233 -Portland,OR,97236 -Portland,OR,97266 -Oak Grove,OR,97267 -Salem,OR,97301 -Salem,OR,97302 -Keizer,OR,97303 -Salem,OR,97304 -Brooks,OR,97305 -Salem,OR,97306 -Albany,OR,97321 -Alsea,OR,97324 -West Stayton,OR,97325 -Blodgett,OR,97326 -Brownsville,OR,97327 -Cascadia,OR,97329 -Corvallis,OR,97330 -Corvallis,OR,97331 -Corvallis,OR,97333 -Dallas,OR,97338 -Depoe Bay,OR,97341 -Detroit,OR,97342 -Eddyville,OR,97343 -Falls City,OR,97344 -Foster,OR,97345 -Gates,OR,97346 -Grand Ronde,OR,97347 -Halsey,OR,97348 -Idanha,OR,97350 -Independence,OR,97351 -Jefferson,OR,97352 -Lebanon,OR,97355 -Logsden,OR,97357 -Lyons,OR,97358 -Mill City,OR,97360 -Monmouth,OR,97361 -Mount Angel,OR,97362 -Neotsu,OR,97364 -Newport,OR,97365 -South Beach,OR,97366 -Lincoln City,OR,97367 -Otis,OR,97368 -Philomath,OR,97370 -Rickreall,OR,97371 -Scio,OR,97374 -Scotts Mills,OR,97375 -Seal Rock,OR,97376 -Shedd,OR,97377 -Sheridan,OR,97378 -Siletz,OR,97380 -Silverton,OR,97381 -Stayton,OR,97383 -Sublimity,OR,97385 -Sweet Home,OR,97386 -Tangent,OR,97389 -Tidewater,OR,97390 -Toledo,OR,97391 -Turner,OR,97392 -Waldport,OR,97394 -Willamina,OR,97396 -Coburg,OR,97401 -Eugene,OR,97402 -Eugene,OR,97403 -Eugene,OR,97404 -Eugene,OR,97405 -Agness,OR,97406 -Azalea,OR,97410 -Bandon,OR,97411 -Blachly,OR,97412 -Mc Kenzie Bridge,OR,97413 -Broadbent,OR,97414 -Harbor,OR,97415 -Camas Valley,OR,97416 -Canyonville,OR,97417 -Cheshire,OR,97419 -Charleston,OR,97420 -Coquille,OR,97423 -Cottage Grove,OR,97424 -Creswell,OR,97426 -Culp Creek,OR,97427 -Days Creek,OR,97429 -Greenleaf,OR,97430 -Dexter,OR,97431 -Dorena,OR,97434 -Drain,OR,97435 -Elkton,OR,97436 -Elmira,OR,97437 -Fall Creek,OR,97438 -Florence,OR,97439 -Gardiner,OR,97441 -Glendale,OR,97442 -Glide,OR,97443 -Pistol River,OR,97444 -Harrisburg,OR,97446 -Idleyld Park,OR,97447 -Junction City,OR,97448 -Lakeside,OR,97449 -Langlois,OR,97450 -Lorane,OR,97451 -Lowell,OR,97452 -Mapleton,OR,97453 -Marcola,OR,97454 -Pleasant Hill,OR,97455 -Monroe,OR,97456 -Myrtle Creek,OR,97457 -Myrtle Point,OR,97458 -North Bend,OR,97459 -Noti,OR,97461 -Oakland,OR,97462 -Oakridge,OR,97463 -Port Orford,OR,97465 -Powers,OR,97466 -Winchester Bay,OR,97467 -Remote,OR,97468 -Riddle,OR,97469 -Roseburg,OR,97470 -Scottsburg,OR,97473 -Sixes,OR,97476 -Springfield,OR,97477 -Springfield,OR,97478 -Sutherlin,OR,97479 -Swisshome,OR,97480 -Tenmile,OR,97481 -Tiller,OR,97484 -Umpqua,OR,97486 -Veneta,OR,97487 -Vida,OR,97488 -Leaburg,OR,97489 -Walton,OR,97490 -Westfir,OR,97492 -Westlake,OR,97493 -Winston,OR,97496 -Sunny Valley,OR,97497 -Yachats,OR,97498 -Yoncalla,OR,97499 -West Main,OR,97501 -Central Point,OR,97502 -White City,OR,97503 -Medford,OR,97504 -Ashland,OR,97520 -Butte Falls,OR,97522 -Cave Junction,OR,97523 -Eagle Point,OR,97524 -Gold Hill,OR,97525 -Grants Pass,OR,97526 -Grants Pass,OR,97527 -Applegate,OR,97530 -Kerby,OR,97531 -Merlin,OR,97532 -O Brien,OR,97534 -Phoenix,OR,97535 -Prospect,OR,97536 -Rogue River,OR,97537 -Selma,OR,97538 -Shady Cove,OR,97539 -Talent,OR,97540 -Trail,OR,97541 -Wilderville,OR,97543 -Williams,OR,97544 -Oretech,OR,97601 -Klamath Falls,OR,97603 -Adel,OR,97620 -Beatty,OR,97621 -Bonanza,OR,97623 -Chiloquin,OR,97624 -Dairy,OR,97625 -Keno,OR,97627 -Lakeview,OR,97630 -Malin,OR,97632 -Merrill,OR,97633 -New Pine Creek,OR,97635 -Paisley,OR,97636 -Plush,OR,97637 -Silver Lake,OR,97638 -Summer Lake,OR,97640 -Bend,OR,97701 -Bend,OR,97702 -Sunriver,OR,97707 -Ashwood,OR,97711 -Brothers,OR,97712 -Burns,OR,97720 -Camp Sherman,OR,97730 -Diamond Lake,OR,97731 -Crane,OR,97732 -Crescent,OR,97733 -Culver,OR,97734 -Fort Rock,OR,97735 -Gilchrist,OR,97737 -La Pine,OR,97739 -Lawen,OR,97740 -Madras,OR,97741 -Mitchell,OR,97750 -Paulina,OR,97751 -Post,OR,97752 -Powell Butte,OR,97753 -Prineville,OR,97754 -Redmond,OR,97756 -Riley,OR,97758 -Black Butte Ranc,OR,97759 -Crooked River Ra,OR,97760 -Warm Springs,OR,97761 -Pendleton,OR,97801 -Adams,OR,97810 -Arlington,OR,97812 -Athena,OR,97813 -Medical Springs,OR,97814 -Boardman,OR,97818 -Canyon City,OR,97820 -Condon,OR,97823 -Cove,OR,97824 -Dayville,OR,97825 -Echo,OR,97826 -Elgin,OR,97827 -Enterprise,OR,97828 -Kinzua,OR,97830 -Fox,OR,97831 -Haines,OR,97833 -Halfway,OR,97834 -Helix,OR,97835 -Heppner,OR,97836 -Hereford,OR,97837 -Hermiston,OR,97838 -Lexington,OR,97839 -Imbler,OR,97841 -Imnaha,OR,97842 -Ione,OR,97843 -Irrigon,OR,97844 -John Day,OR,97845 -Joseph,OR,97846 -Kimberly,OR,97848 -La Grande,OR,97850 -Long Creek,OR,97856 -Lostine,OR,97857 -Milton Freewater,OR,97862 -Monument,OR,97864 -Mount Vernon,OR,97865 -North Powder,OR,97867 -Pilot Rock,OR,97868 -Prairie City,OR,97869 -Richland,OR,97870 -Ritter,OR,97872 -Seneca,OR,97873 -Spray,OR,97874 -Stanfield,OR,97875 -Summerville,OR,97876 -Sumpter,OR,97877 -Mcnary,OR,97882 -Union,OR,97883 -Unity,OR,97884 -Wallowa,OR,97885 -Weston,OR,97886 -Adrian,OR,97901 -Arock,OR,97902 -Brogan,OR,97903 -Drewsey,OR,97904 -Harper,OR,97906 -Huntington,OR,97907 -Ironside,OR,97908 -Jamieson,OR,97909 -Jordan Valley,OR,97910 -Juntura,OR,97911 -Nyssa,OR,97913 -Ontario,OR,97914 -Riverside,OR,97917 -Vale,OR,97918 -Westfall,OR,97920 -Macarthur,PA,15001 -Fairoaks,PA,15003 -Baden,PA,15005 -Bakerstown,PA,15007 -Beaver,PA,15009 -Racine,PA,15010 -Rostraver,PA,15012 -Brackenridge,PA,15014 -Bradfordwoods,PA,15015 -Bridgeville,PA,15017 -Buena Vista,PA,15018 -Bulger,PA,15019 -Paris,PA,15021 -Charleroi,PA,15022 -Cheswick,PA,15024 -Large,PA,15025 -Clinton,PA,15026 -Conway,PA,15027 -Creighton,PA,15030 -Cuddy,PA,15031 -Donora,PA,15033 -Dravosburg,PA,15034 -East Mc Keesport,PA,15035 -Elizabeth,PA,15037 -Freedom,PA,15042 -Georgetown,PA,15043 -Gibsonia,PA,15044 -Glassport,PA,15045 -Harwick,PA,15049 -Hookstown,PA,15050 -Indianola,PA,15051 -Industry,PA,15052 -Joffre,PA,15053 -Lawrence,PA,15055 -Leetsdale,PA,15056 -Mc Donald,PA,15057 -Midland,PA,15059 -Midway,PA,15060 -Monaca,PA,15061 -Monessen,PA,15062 -Monongahela,PA,15063 -Morgan,PA,15064 -Natrona,PA,15065 -New Brighton,PA,15066 -New Eagle,PA,15067 -Arnold,PA,15068 -Noblestown,PA,15071 -Rochester,PA,15074 -Russellton,PA,15076 -Shippingport,PA,15077 -Slovan,PA,15078 -Sutersville,PA,15083 -Tarentum,PA,15084 -Level Green,PA,15085 -Warrendale,PA,15086 -West Newton,PA,15089 -Wexford,PA,15090 -Allison Park,PA,15101 -Bethel Park,PA,15102 -Rankin,PA,15104 -Carnegie,PA,15106 -Moon Twp,PA,15108 -Duquesne,PA,15110 -East Pittsburgh,PA,15112 -Glenshaw,PA,15116 -Munhall,PA,15120 -W Mifflin Fin,PA,15122 -Imperial,PA,15126 -Library,PA,15129 -White Oak,PA,15131 -Mc Keesport,PA,15132 -Mc Keesport,PA,15133 -Boston,PA,15135 -Mc Kees Rocks,PA,15136 -North Versailles,PA,15137 -Oakmont,PA,15139 -Pitcairn,PA,15140 -Presto,PA,15142 -Sewickley,PA,15143 -Springdale,PA,15144 -Turtle Creek,PA,15145 -Monroeville,PA,15146 -Verona,PA,15147 -Wall,PA,15148 -Arsenal,PA,15201 -Bellevue,PA,15202 -Carson,PA,15203 -Corliss,PA,15204 -Crafton,PA,15205 -East Liberty,PA,15206 -Hazelwood,PA,15207 -Homewood,PA,15208 -Millvale,PA,15209 -Mount Oliver,PA,15210 -Mount Washington,PA,15211 -Allegheny,PA,15212 -Oakland,PA,15213 -Observatory,PA,15214 -Aspinwall,PA,15215 -South Hills,PA,15216 -Squirrel Hill,PA,15217 -Swissvale,PA,15218 -Uptown,PA,15219 -Parkway Center,PA,15220 -Wilkinsburg,PA,15221 -Downtown,PA,15222 -Etna,PA,15223 -Bloomfield,PA,15224 -Neville Island,PA,15225 -Brookline,PA,15226 -Brentwood,PA,15227 -Mount Lebanon,PA,15228 -West View,PA,15229 -Shadyside,PA,15232 -Kilbuck,PA,15233 -Castle Shannon,PA,15234 -Penn Hills,PA,15235 -Caste Village,PA,15236 -Mc Knight,PA,15237 -Blawnox,PA,15238 -Plum,PA,15239 -Upper Saint Clai,PA,15241 -Cedarhurst,PA,15243 -Washington,PA,15301 -Aleppo,PA,15310 -Amity,PA,15311 -Avella,PA,15312 -Beallsville,PA,15313 -Bentleyville,PA,15314 -Mc Murray,PA,15317 -Carmichaels,PA,15320 -Cecil,PA,15321 -Clarksville,PA,15322 -Claysville,PA,15323 -Cokeburg,PA,15324 -Dilliner,PA,15327 -Prosperity,PA,15329 -Eighty Four,PA,15330 -Ellsworth,PA,15331 -Finleyville,PA,15332 -Fredericktown,PA,15333 -Graysville,PA,15337 -Greensboro,PA,15338 -Hickory,PA,15340 -Holbrook,PA,15341 -Houston,PA,15342 -Jefferson,PA,15344 -Marianna,PA,15345 -Mather,PA,15346 -Davistown,PA,15349 -New Freeport,PA,15352 -Nineveh,PA,15353 -Rices Landing,PA,15357 -Rogersville,PA,15359 -Scenery Hill,PA,15360 -Spraggs,PA,15362 -Strabane,PA,15363 -Sycamore,PA,15364 -Venetia,PA,15367 -Waynesburg,PA,15370 -West Alexander,PA,15376 -West Finley,PA,15377 -Wind Ridge,PA,15380 -Uniontown,PA,15401 -Adah,PA,15410 -Addison,PA,15411 -Allenport,PA,15412 -Allison,PA,15413 -West Brownsville,PA,15417 -California,PA,15419 -Coal Center,PA,15423 -Listonburg,PA,15424 -South Connellsvi,PA,15425 -Daisytown,PA,15427 -Dawson,PA,15428 -Dunbar,PA,15431 -Dunlevy,PA,15432 -East Millsboro,PA,15433 -Elco,PA,15434 -Fairchance,PA,15436 -Farmington,PA,15437 -Fayette City,PA,15438 -Gibbon Glade,PA,15440 -Grindstone,PA,15442 -Hiller,PA,15444 -Hopwood,PA,15445 -Indian Head,PA,15446 -La Belle,PA,15450 -Lake Lynn,PA,15451 -Lemont Furnace,PA,15456 -Lamberton,PA,15458 -Markleysburg,PA,15459 -Grays Landing,PA,15461 -Melcroft,PA,15462 -Merrittstown,PA,15463 -Mill Run,PA,15464 -New Salem,PA,15468 -Normalville,PA,15469 -Ohiopyle,PA,15470 -Oliver,PA,15472 -Layton,PA,15473 -Point Marion,PA,15474 -Republic,PA,15475 -Roscoe,PA,15477 -Smithfield,PA,15478 -Van Meter,PA,15479 -Smock,PA,15480 -Star Junction,PA,15482 -Stockdale,PA,15483 -Vanderbilt,PA,15486 -Waltersburg,PA,15488 -White,PA,15490 -Somerset,PA,15501 -Alum Bank,PA,15521 -Bedford,PA,15522 -Berlin,PA,15530 -Boswell,PA,15531 -Breezewood,PA,15533 -Buffalo Mills,PA,15534 -Clearville,PA,15535 -Crystal Spring,PA,15536 -Everett,PA,15537 -Glencoe,PA,15538 -Fort Hill,PA,15540 -Friedens,PA,15541 -Garrett,PA,15542 -Hyndman,PA,15545 -Jenners,PA,15546 -Manns Choice,PA,15550 -Markleton,PA,15551 -Meyersdale,PA,15552 -New Paris,PA,15554 -Rockwood,PA,15557 -Salisbury,PA,15558 -Schellsburg,PA,15559 -Springs,PA,15562 -Stoystown,PA,15563 -Greensburg,PA,15601 -Acme,PA,15610 -Adamsburg,PA,15611 -Alverton,PA,15612 -Apollo,PA,15613 -Ardara,PA,15615 -Armbrust,PA,15616 -Arona,PA,15617 -Avonmore,PA,15618 -Bradenville,PA,15620 -Champion,PA,15622 -Darragh,PA,15625 -Delmont,PA,15626 -Derry,PA,15627 -Donegal,PA,15628 -Everson,PA,15631 -Export,PA,15632 -Grapeville,PA,15634 -Harrison City,PA,15636 -Herminie,PA,15637 -Hunker,PA,15639 -Hyde Park,PA,15641 -North Huntingdon,PA,15642 -Jeannette,PA,15644 -Jones Mills,PA,15646 -Larimer,PA,15647 -Latrobe,PA,15650 -Laughlintown,PA,15655 -Leechburg,PA,15656 -Wilpen,PA,15658 -Loyalhanna,PA,15661 -Madison,PA,15663 -Manor,PA,15665 -Mount Pleasant,PA,15666 -Murrysville,PA,15668 -New Alexandria,PA,15670 -New Derry,PA,15671 -New Stanton,PA,15672 -Penn,PA,15675 -Rector,PA,15677 -Rillton,PA,15678 -Ruffs Dale,PA,15679 -Saltsburg,PA,15681 -Scottdale,PA,15683 -Slickville,PA,15684 -Spring Church,PA,15686 -Stahlstown,PA,15687 -Tarrs,PA,15688 -Park,PA,15690 -Westmoreland Cit,PA,15692 -Youngwood,PA,15697 -Yukon,PA,15698 -Indiana,PA,15701 -Anita,PA,15711 -Aultman,PA,15713 -Barnesboro,PA,15714 -Black Lick,PA,15716 -Blairsville,PA,15717 -Brush Valley,PA,15720 -Burnside,PA,15721 -Carrolltown,PA,15722 -Cherry Tree,PA,15724 -Clarksburg,PA,15725 -Clymer,PA,15728 -Commodore,PA,15729 -Coolspring,PA,15730 -Creekside,PA,15732 -Ernest,PA,15739 -Glen Campbell,PA,15742 -Hamilton,PA,15744 -Home,PA,15747 -Graceton,PA,15748 -La Jose,PA,15753 -Lucernemines,PA,15754 -Mc Gees Mills,PA,15757 -Marchand,PA,15758 -Marion Center,PA,15759 -Marsteller,PA,15760 -Nicktown,PA,15762 -Northpoint,PA,15763 -Oliveburg,PA,15764 -Penn Run,PA,15765 -Punxsutawney,PA,15767 -Ringgold,PA,15770 -Rochester Mills,PA,15771 -Rossiter,PA,15772 -Saint Benedict,PA,15773 -Shelocta,PA,15774 -Spangler,PA,15775 -Sprankle Mills,PA,15776 -Starford,PA,15777 -Timblin,PA,15778 -Valier,PA,15780 -Worthville,PA,15784 -Du Bois,PA,15801 -Benezett,PA,15821 -Brockport,PA,15823 -Brockway,PA,15824 -Hazen,PA,15825 -Byrnedale,PA,15827 -Clarington,PA,15828 -Corsica,PA,15829 -Driftwood,PA,15832 -Emporium,PA,15834 -Falls Creek,PA,15840 -Johnsonburg,PA,15845 -Kersey,PA,15846 -Luthersburg,PA,15848 -Penfield,PA,15849 -Reynoldsville,PA,15851 -Portland Mills,PA,15853 -Rockton,PA,15856 -Saint Marys,PA,15857 -Sigel,PA,15860 -Sinnamahoning,PA,15861 -Summerville,PA,15864 -Sykesville,PA,15865 -Weedville,PA,15868 -Wilcox,PA,15870 -Johnstown,PA,15901 -Johnstown,PA,15902 -Johnstown,PA,15904 -Johnstown,PA,15905 -Johnstown,PA,15906 -Johnstown,PA,15909 -Armagh,PA,15920 -Bolivar,PA,15923 -Cairnbrook,PA,15924 -Central City,PA,15926 -Colver,PA,15927 -Davidsville,PA,15928 -Ebensburg,PA,15931 -Hollsopple,PA,15935 -Hooversville,PA,15936 -Lilly,PA,15938 -Loretto,PA,15940 -Mineral Point,PA,15942 -Nanty Glo,PA,15943 -New Florence,PA,15944 -Parkhill,PA,15945 -Puritan,PA,15946 -Robinson,PA,15949 -Saint Michael,PA,15951 -Salix,PA,15952 -Seanor,PA,15953 -Seward,PA,15954 -Sidman,PA,15955 -South Fork,PA,15956 -Strongstown,PA,15957 -Summerhill,PA,15958 -Twin Rocks,PA,15960 -Vintondale,PA,15961 -Windber,PA,15963 -Bon Aire,PA,16001 -Boyers,PA,16020 -Bruin,PA,16022 -Marwood,PA,16023 -Chicora,PA,16025 -East Brady,PA,16028 -Eau Claire,PA,16030 -Evans City,PA,16033 -Fenelton,PA,16034 -Foxburg,PA,16036 -Harmony,PA,16037 -Harrisville,PA,16038 -Hilliards,PA,16040 -Karns City,PA,16041 -Lyndora,PA,16045 -Mars,PA,16046 -Parker,PA,16049 -Petrolia,PA,16050 -Portersville,PA,16051 -Prospect,PA,16052 -Renfrew,PA,16053 -Sarver,PA,16055 -Saxonburg,PA,16056 -Slippery Rock,PA,16057 -Valencia,PA,16059 -West Sunbury,PA,16061 -Zelienople,PA,16063 -New Castle,PA,16101 -New Castle,PA,16102 -Neshannock,PA,16105 -Adamsville,PA,16110 -Atlantic,PA,16111 -Bessemer,PA,16112 -Clarks Mills,PA,16114 -Darlington,PA,16115 -Edinburg,PA,16116 -Ellport,PA,16117 -Enon Valley,PA,16120 -Farrell,PA,16121 -Fombell,PA,16123 -Fredonia,PA,16124 -Shenango,PA,16125 -Grove City,PA,16127 -Hadley,PA,16130 -Hartstown,PA,16131 -Jackson Center,PA,16133 -Westford,PA,16134 -Mercer,PA,16137 -New Galilee,PA,16141 -New Wilmington,PA,16142 -Pulaski,PA,16143 -Sandy Lake,PA,16145 -Sharon,PA,16146 -Hermitage,PA,16148 -Sharpsville,PA,16150 -Stoneboro,PA,16153 -Transfer,PA,16154 -Volant,PA,16156 -Wampum,PA,16157 -West Middlesex,PA,16159 -Kittanning,PA,16201 -Adrian,PA,16210 -Cadogan,PA,16212 -Callensburg,PA,16213 -Clarion,PA,16214 -Cooksburg,PA,16217 -Cowansville,PA,16218 -Dayton,PA,16222 -Fairmount City,PA,16224 -Fisher,PA,16225 -Ford City,PA,16226 -Freeport,PA,16229 -Knox,PA,16232 -Leeper,PA,16233 -Limestone,PA,16234 -Lucinda,PA,16235 -Mc Grann,PA,16236 -Manorville,PA,16238 -Marienville,PA,16239 -Mayport,PA,16240 -New Bethlehem,PA,16242 -Huey,PA,16248 -Rural Valley,PA,16249 -Shippenville,PA,16254 -Sligo,PA,16255 -Smicksburg,PA,16256 -Strattanville,PA,16258 -Templeton,PA,16259 -Vowinckel,PA,16260 -Craigsville,PA,16262 -Oil City,PA,16301 -Carlton,PA,16311 -Clarendon,PA,16313 -Cochranton,PA,16314 -Conneaut Lake,PA,16316 -Cooperstown,PA,16317 -Cranberry,PA,16319 -East Hickory,PA,16321 -Franklin,PA,16323 -Fryburg,PA,16326 -Guys Mills,PA,16327 -Irvine,PA,16329 -Kossuth,PA,16331 -Lickingville,PA,16332 -Ludlow,PA,16333 -Marble,PA,16334 -Meadville,PA,16335 -Pittsfield,PA,16340 -Pleasantville,PA,16341 -Polk,PA,16342 -Russell,PA,16345 -Seneca,PA,16346 -Sheffield,PA,16347 -Sugar Grove,PA,16350 -Tidioute,PA,16351 -Tionesta,PA,16353 -Titusville,PA,16354 -Townville,PA,16360 -Utica,PA,16362 -Venus,PA,16364 -North Warren,PA,16365 -Youngsville,PA,16371 -Clintonville,PA,16372 -Emlenton,PA,16373 -Kennerdell,PA,16374 -Lundys Lane,PA,16401 -Bear Lake,PA,16402 -Cambridge Spring,PA,16403 -Centerville,PA,16404 -Columbus,PA,16405 -Conneautville,PA,16406 -Corry,PA,16407 -Cranesville,PA,16410 -East Springfield,PA,16411 -Edinboro,PA,16412 -Fairview,PA,16415 -Girard,PA,16417 -Grand Valley,PA,16420 -Harborcreek,PA,16421 -Lake City,PA,16423 -Espyville,PA,16424 -Mc Kean,PA,16426 -North East,PA,16428 -Saegertown,PA,16433 -Spartansburg,PA,16434 -Springboro,PA,16435 -Spring Creek,PA,16436 -Union City,PA,16438 -Venango,PA,16440 -Waterford,PA,16441 -Wattsburg,PA,16442 -West Springfield,PA,16443 -Erie,PA,16501 -Erie,PA,16502 -Erie,PA,16503 -Erie,PA,16504 -Presque Isle,PA,16505 -Erie,PA,16506 -Erie,PA,16507 -Erie,PA,16508 -Erie,PA,16509 -Wesleyville,PA,16510 -Erie,PA,16511 -Erie,PA,16565 -Altoona,PA,16601 -Altoona,PA,16602 -Barree,PA,16611 -Ashville,PA,16613 -Beccaria,PA,16616 -Bellwood,PA,16617 -Brisbin,PA,16620 -Broad Top,PA,16621 -Calvin,PA,16622 -Cassville,PA,16623 -Claysburg,PA,16625 -Coalport,PA,16627 -Cresson,PA,16630 -Dudley,PA,16634 -Duncansville,PA,16635 -Dysart,PA,16636 -East Freedom,PA,16637 -Fallentimber,PA,16639 -Flinton,PA,16640 -Gallitzin,PA,16641 -Glen Hope,PA,16645 -Hastings,PA,16646 -Hesston,PA,16647 -Hollidaysburg,PA,16648 -Hopewell,PA,16650 -Houtzdale,PA,16651 -Huntingdon,PA,16652 -Imler,PA,16655 -Irvona,PA,16656 -James Creek,PA,16657 -Loysburg,PA,16659 -Madera,PA,16661 -Martinsburg,PA,16662 -New Enterprise,PA,16664 -Osceola Mills,PA,16666 -St Clairsville,PA,16667 -Patton,PA,16668 -Petersburg,PA,16669 -Ramey,PA,16671 -Roaring Spring,PA,16673 -Robertsdale,PA,16674 -Saxton,PA,16678 -Six Mile Run,PA,16679 -Smithmill,PA,16680 -Spruce Creek,PA,16683 -Todd,PA,16685 -Tyrone,PA,16686 -Waterfall,PA,16689 -Wells Tannery,PA,16691 -Westover,PA,16692 -Ganister,PA,16693 -Woodbury,PA,16695 -Bradford,PA,16701 -Austin,PA,16720 -Crosby,PA,16724 -Ormsby,PA,16726 -Derrick City,PA,16727 -Duke Center,PA,16729 -Eldred,PA,16731 -Gifford,PA,16732 -James City,PA,16734 -Kane,PA,16735 -Lewis Run,PA,16738 -Mount Jewett,PA,16740 -Port Allegany,PA,16743 -Rew,PA,16744 -Rixford,PA,16745 -Roulette,PA,16746 -Shinglehouse,PA,16748 -Smethport,PA,16749 -Turtlepoint,PA,16750 -State College,PA,16801 -State College,PA,16803 -Aaronsburg,PA,16820 -Allport,PA,16821 -Beech Creek,PA,16822 -Pleasant Gap,PA,16823 -Boalsburg,PA,16827 -Centre Hall,PA,16828 -Clarence,PA,16829 -Clearfield,PA,16830 -Coburn,PA,16832 -Curwensville,PA,16833 -Frenchville,PA,16836 -Glen Richey,PA,16837 -Grampian,PA,16838 -Grassflat,PA,16839 -Hawk Run,PA,16840 -Howard,PA,16841 -Julian,PA,16844 -Karthaus,PA,16845 -Madisonburg,PA,16852 -Millheim,PA,16854 -Morrisdale,PA,16858 -Moshannon,PA,16859 -Munson,PA,16860 -New Millport,PA,16861 -Olanta,PA,16863 -Orviston,PA,16864 -Pennsylvania Fur,PA,16865 -Philipsburg,PA,16866 -Port Matilda,PA,16870 -Pottersdale,PA,16871 -Rebersburg,PA,16872 -Snow Shoe,PA,16874 -Spring Mills,PA,16875 -Warriors Mark,PA,16877 -West Decatur,PA,16878 -Winburne,PA,16879 -Woodland,PA,16881 -Woodward,PA,16882 -Wellsboro,PA,16901 -Blossburg,PA,16912 -Columbia Cross R,PA,16914 -Oswayo,PA,16915 -Covington,PA,16917 -Elkland,PA,16920 -Gaines,PA,16921 -Galeton,PA,16922 -North Bingham,PA,16923 -Gillett,PA,16925 -Granville Summit,PA,16926 -Harrison Valley,PA,16927 -Knoxville,PA,16928 -Lawrenceville,PA,16929 -Liberty,PA,16930 -Mainesburg,PA,16932 -Mansfield,PA,16933 -Middlebury Cente,PA,16935 -Millerton,PA,16936 -Mills,PA,16937 -Morris,PA,16938 -Morris Run,PA,16939 -Nelson,PA,16940 -Genesee,PA,16941 -Osceola,PA,16942 -Sabinsville,PA,16943 -Tioga,PA,16946 -Troy,PA,16947 -Ulysses,PA,16948 -Little Marsh,PA,16950 -Allensville,PA,17002 -Annville,PA,17003 -Belleville,PA,17004 -Berrysburg,PA,17005 -Blain,PA,17006 -Boiling Springs,PA,17007 -Burnham,PA,17009 -Shiremanstown,PA,17011 -Carlisle Barrack,PA,17013 -Cocolamus,PA,17014 -Dalmatia,PA,17017 -Dauphin,PA,17018 -Dillsburg,PA,17019 -Duncannon,PA,17020 -East Waterford,PA,17021 -Elizabethtown,PA,17022 -Elizabethville,PA,17023 -Elliottsburg,PA,17024 -Enola,PA,17025 -Fredericksburg,PA,17026 -Grantville,PA,17028 -Granville,PA,17029 -Gratz,PA,17030 -Green Park,PA,17031 -Halifax,PA,17032 -Hershey,PA,17033 -Highspire,PA,17034 -Honey Grove,PA,17035 -Hummelstown,PA,17036 -Ickesburg,PA,17037 -Jonestown,PA,17038 -Landisburg,PA,17040 -Cleona,PA,17042 -Wormleysburg,PA,17043 -Lewistown,PA,17044 -Liverpool,PA,17045 -Loysville,PA,17047 -Lykens,PA,17048 -Mc Alisterville,PA,17049 -Mc Veytown,PA,17051 -Mapleton Depot,PA,17052 -Marysville,PA,17053 -Hampden,PA,17055 -Middletown,PA,17057 -Mifflin,PA,17058 -Mifflintown,PA,17059 -Mill Creek,PA,17060 -Millersburg,PA,17061 -Millerstown,PA,17062 -Milroy,PA,17063 -Mount Holly Spri,PA,17065 -Mount Union,PA,17066 -Myerstown,PA,17067 -New Bloomfield,PA,17068 -New Cumberland,PA,17070 -New Germantown,PA,17071 -Newmanstown,PA,17073 -Newport,PA,17074 -Oakland Mills,PA,17076 -Palmyra,PA,17078 -Port Royal,PA,17082 -Reedsville,PA,17084 -Richfield,PA,17086 -Richland,PA,17087 -Shermans Dale,PA,17090 -Thompsontown,PA,17094 -Wiconisco,PA,17097 -Williamstown,PA,17098 -Yeagertown,PA,17099 -Harrisburg,PA,17101 -Harrisburg,PA,17102 -Penbrook,PA,17103 -Harrisburg,PA,17104 -Colonial Park,PA,17109 -Harrisburg,PA,17110 -Swatara,PA,17111 -Harrisburg,PA,17112 -Steelton,PA,17113 -Chambersburg,PA,17201 -Artemas,PA,17211 -Big Cove Tannery,PA,17212 -Blairs Mills,PA,17213 -Blue Ridge Summi,PA,17214 -Burnt Cabins,PA,17215 -Concord,PA,17217 -Doylesburg,PA,17219 -Dry Run,PA,17220 -Fannettsburg,PA,17221 -Fayetteville,PA,17222 -Fort Littleton,PA,17223 -Fort Loudon,PA,17224 -Greencastle,PA,17225 -Harrisonville,PA,17228 -Hustontown,PA,17229 -Lurgan,PA,17232 -Mc Connellsburg,PA,17233 -Mercersburg,PA,17236 -Mont Alto,PA,17237 -Needmore,PA,17238 -Neelyton,PA,17239 -Newburg,PA,17240 -Newville,PA,17241 -Orbisonia,PA,17243 -Orrstown,PA,17244 -Pleasant Hall,PA,17246 -Saint Thomas,PA,17252 -Shade Gap,PA,17255 -Shippensburg,PA,17257 -Shirleysburg,PA,17260 -Spring Run,PA,17262 -Three Springs,PA,17264 -Upperstrasburg,PA,17265 -Walnut Bottom,PA,17266 -Warfordsburg,PA,17267 -Waynesboro,PA,17268 -Willow Hill,PA,17271 -Abbottstown,PA,17301 -Airville,PA,17302 -Aspers,PA,17304 -Biglerville,PA,17307 -Brogue,PA,17309 -Yoe,PA,17313 -Delta,PA,17314 -Dover,PA,17315 -East Berlin,PA,17316 -Etters,PA,17319 -Greenstone,PA,17320 -Fawn Grove,PA,17321 -Felton,PA,17322 -Gardners,PA,17324 -Gettysburg,PA,17325 -Glen Rock,PA,17327 -Brodbecks,PA,17329 -Hanover,PA,17331 -Lewisberry,PA,17339 -Littlestown,PA,17340 -Mc Sherrystown,PA,17344 -Manchester,PA,17345 -Mount Wolf,PA,17347 -New Freedom,PA,17349 -New Oxford,PA,17350 -New Park,PA,17352 -Orrtanna,PA,17353 -Red Lion,PA,17356 -Seven Valleys,PA,17360 -Shrewsbury,PA,17361 -Spring Grove,PA,17362 -Stewartstown,PA,17363 -Thomasville,PA,17364 -Wellsville,PA,17365 -Windsor,PA,17366 -Wrightsville,PA,17368 -York Haven,PA,17370 -York Springs,PA,17372 -York,PA,17401 -East York,PA,17402 -York,PA,17403 -West York,PA,17404 -Hellam,PA,17406 -Jacobus,PA,17407 -Akron,PA,17501 -Bainbridge,PA,17502 -Bird In Hand,PA,17505 -Ninepoints,PA,17509 -Columbia,PA,17512 -Conestoga,PA,17516 -Denver,PA,17517 -Drumore,PA,17518 -East Earl,PA,17519 -East Petersburg,PA,17520 -Ephrata,PA,17522 -Gap,PA,17527 -Gordonville,PA,17529 -Holtwood,PA,17532 -Kinzers,PA,17535 -Kirkwood,PA,17536 -Salunga,PA,17538 -Leola,PA,17540 -Brunnerville,PA,17543 -Manheim,PA,17545 -Marietta,PA,17547 -Millersville,PA,17551 -Florin,PA,17552 -Mountville,PA,17554 -Narvon,PA,17555 -New Holland,PA,17557 -New Providence,PA,17560 -Paradise,PA,17562 -Peach Bottom,PA,17563 -Pequea,PA,17565 -Quarryville,PA,17566 -Reinholds,PA,17569 -Ronks,PA,17572 -Smoketown,PA,17576 -Stevens,PA,17578 -Strasburg,PA,17579 -Terre Hill,PA,17581 -Washington Boro,PA,17582 -Willow Street,PA,17584 -Neffsville,PA,17601 -Lancaster,PA,17602 -Rohrerstown,PA,17603 -South Williamspo,PA,17701 -Cammal,PA,17723 -Canton,PA,17724 -Cedar Run,PA,17727 -Cogan Station,PA,17728 -Cross Fork,PA,17729 -Hughesville,PA,17737 -Salladasburg,PA,17740 -Lairdsville,PA,17742 -Linden,PA,17744 -Lock Haven,PA,17745 -Loganton,PA,17747 -Mill Hall,PA,17751 -Montgomery,PA,17752 -Montoursville,PA,17754 -Muncy,PA,17756 -Muncy Valley,PA,17758 -Ralston,PA,17763 -Renovo,PA,17764 -Roaring Branch,PA,17765 -Shunk,PA,17768 -Trout Run,PA,17771 -Turbotville,PA,17772 -Unityville,PA,17774 -Waterville,PA,17776 -Watsontown,PA,17777 -Westport,PA,17778 -Woolrich,PA,17779 -Sunbury,PA,17801 -Allenwood,PA,17810 -Beaver Springs,PA,17812 -Beavertown,PA,17813 -Benton,PA,17814 -Bloomsburg,PA,17815 -Catawissa,PA,17820 -Danville,PA,17821 -Dornsife,PA,17823 -Elysburg,PA,17824 -Freeburg,PA,17827 -Gowen City,PA,17828 -Herndon,PA,17830 -Marion Heights,PA,17832 -Kulpmont,PA,17834 -Laurelton,PA,17835 -Leck Kill,PA,17836 -Lewisburg,PA,17837 -Mc Clure,PA,17841 -Middleburg,PA,17842 -Beaver Springs,PA,17843 -Mifflinburg,PA,17844 -Millmont,PA,17845 -Millville,PA,17846 -Milton,PA,17847 -Montandon,PA,17850 -Mount Carmel,PA,17851 -Mount Pleasant M,PA,17853 -New Berlin,PA,17855 -New Columbia,PA,17856 -Northumberland,PA,17857 -Orangeville,PA,17859 -Paxinos,PA,17860 -Port Trevorton,PA,17864 -Ranshaw,PA,17866 -Rebuck,PA,17867 -Riverside,PA,17868 -Selinsgrove,PA,17870 -Excelsior,PA,17872 -Snydertown,PA,17877 -Stillwater,PA,17878 -Trevorton,PA,17881 -Wilburton,PA,17888 -Winfield,PA,17889 -Pottsville,PA,17901 -Ashland,PA,17921 -Auburn,PA,17922 -Branchdale,PA,17923 -Brockton,PA,17925 -Centralia,PA,17927 -Cressona,PA,17929 -Frackville,PA,17931 -Girardville,PA,17935 -Hegins,PA,17938 -Klingerstown,PA,17941 -Mahanoy City,PA,17948 -Minersville,PA,17954 -Muir,PA,17957 -Kaska,PA,17959 -New Ringgold,PA,17960 -Orwigsburg,PA,17961 -Pine Grove,PA,17963 -Pitman,PA,17964 -Port Carbon,PA,17965 -Ringtown,PA,17967 -Sacramento,PA,17968 -Saint Clair,PA,17970 -Schuylkill Haven,PA,17972 -Shenandoah,PA,17976 -Spring Glen,PA,17978 -Tower City,PA,17980 -Donaldson,PA,17981 -Valley View,PA,17983 -Zion Grove,PA,17985 -Alburtis,PA,18011 -Roseto,PA,18013 -Bath,PA,18014 -Bethlehem,PA,18015 -Butztown,PA,18017 -Bethlehem,PA,18018 -Breinigsville,PA,18031 -Catasauqua,PA,18032 -Center Valley,PA,18034 -Cherryville,PA,18035 -Coopersburg,PA,18036 -Coplay,PA,18037 -Danielsville,PA,18038 -East Greenville,PA,18041 -Forks Township,PA,18042 -Emmaus,PA,18049 -Fogelsville,PA,18051 -Hokendauqua,PA,18052 -Germansville,PA,18053 -Green Lane,PA,18054 -Hellertown,PA,18055 -Hereford,PA,18056 -Kunkletown,PA,18058 -Macungie,PA,18062 -Nazareth,PA,18064 -New Tripoli,PA,18066 -Northampton,PA,18067 -Orefield,PA,18069 -Palm,PA,18070 -Palmerton,PA,18071 -Pen Argyl,PA,18072 -Pennsburg,PA,18073 -Perkiomenville,PA,18074 -Red Hill,PA,18076 -Riegelsville,PA,18077 -Schnecksville,PA,18078 -Emerald,PA,18080 -Trexlertown,PA,18087 -Walnutport,PA,18088 -Wind Gap,PA,18091 -Zionsville,PA,18092 -Allentown,PA,18101 -Allentown,PA,18102 -Allentown,PA,18103 -Allentown,PA,18104 -Wescosville,PA,18106 -West Hazleton,PA,18201 -Albrightsville,PA,18210 -Andreas,PA,18211 -Barnesville,PA,18214 -Beaver Meadows,PA,18216 -Coaldale,PA,18218 -Delano,PA,18220 -Drums,PA,18222 -Freeland,PA,18224 -Jim Thorpe,PA,18229 -Lansford,PA,18232 -Weissport,PA,18235 -Mcadoo,PA,18237 -Nesquehoning,PA,18240 -Quakake,PA,18245 -Rock Glen,PA,18246 -Sheppton,PA,18248 -Sugarloaf,PA,18249 -Summit Hill,PA,18250 -Tamaqua,PA,18252 -Weatherly,PA,18255 -East Stroudsburg,PA,18301 -Bartonsville,PA,18321 -Brodheadsville,PA,18322 -Bushkill,PA,18324 -Canadensis,PA,18325 -Cresco,PA,18326 -Delaware Water G,PA,18327 -Dingmans Ferry,PA,18328 -Effort,PA,18330 -Gilbert,PA,18331 -Henryville,PA,18332 -Kresgeville,PA,18333 -Long Pond,PA,18334 -Matamoras,PA,18336 -Milford,PA,18337 -Millrift,PA,18340 -Mount Bethel,PA,18343 -Mount Pocono,PA,18344 -Pocono Summit,PA,18346 -Pocono Lake,PA,18347 -Pocono Pines,PA,18350 -Reeders,PA,18352 -Saylorsburg,PA,18353 -Sciota,PA,18354 -Scotrun,PA,18355 -Stroudsburg,PA,18360 -Swiftwater,PA,18370 -Tamiment,PA,18371 -Tannersville,PA,18372 -Aldenville,PA,18401 -Eynon,PA,18403 -Beach Lake,PA,18405 -Simpson,PA,18407 -Clarks Summit,PA,18411 -Dalton,PA,18414 -Damascus,PA,18415 -Equinunk,PA,18417 -Factoryville,PA,18419 -Browndale,PA,18421 -Gouldsboro,PA,18424 -Greeley,PA,18425 -Greentown,PA,18426 -Hamlin,PA,18427 -Hawley,PA,18428 -Herrick Center,PA,18430 -Honesdale,PA,18431 -Mayfield,PA,18433 -Jessup,PA,18434 -Lackawaxen,PA,18435 -Lake Ariel,PA,18436 -Lake Como,PA,18437 -Lakeville,PA,18438 -Lakewood,PA,18439 -Lenoxville,PA,18441 -Milanville,PA,18443 -Moscow,PA,18444 -Newfoundland,PA,18445 -Nicholson,PA,18446 -Olyphant,PA,18447 -Paupack,PA,18451 -Peckville,PA,18452 -Pleasant Mount,PA,18453 -Preston Park,PA,18455 -Prompton,PA,18456 -Shohola,PA,18458 -South Sterling,PA,18460 -Starlight,PA,18461 -Starrucca,PA,18462 -Sterling,PA,18463 -Tafton,PA,18464 -Thompson,PA,18465 -Tobyhanna,PA,18466 -Tyler Hill,PA,18469 -Union Dale,PA,18470 -Waymart,PA,18472 -Scranton,PA,18503 -Scranton,PA,18504 -Scranton,PA,18505 -Moosic,PA,18507 -Scranton,PA,18508 -Scranton,PA,18509 -Scranton,PA,18510 -Dunmore,PA,18512 -Taylor,PA,18517 -Old Forge,PA,18518 -Dickson City,PA,18519 -Berwick,PA,18603 -Blakeslee,PA,18610 -College Miserico,PA,18612 -Dushore,PA,18614 -Falls,PA,18615 -Forksville,PA,18616 -Glen Lyon,PA,18617 -Harveys Lake,PA,18618 -Hillsgrove,PA,18619 -Hunlock Creek,PA,18621 -Huntington Mills,PA,18622 -Laceyville,PA,18623 -Lake Harmony,PA,18624 -Lopez,PA,18628 -Mehoopany,PA,18629 -Meshoppen,PA,18630 -Mifflinville,PA,18631 -Mildred,PA,18632 -Nanticoke,PA,18634 -Nescopeck,PA,18635 -Noxen,PA,18636 -Pittston,PA,18640 -Avoca,PA,18641 -Duryea,PA,18642 -West Pittston,PA,18643 -Wyoming,PA,18644 -Plymouth,PA,18651 -Mocanaqua,PA,18655 -Sweet Valley,PA,18656 -Center Moreland,PA,18657 -Wapwallopen,PA,18660 -White Haven,PA,18661 -Wilkes Barre,PA,18701 -Hanover Township,PA,18702 -Kingston,PA,18704 -Wilkes Barre,PA,18705 -Ashley,PA,18706 -Mountain Top,PA,18707 -Shavertown,PA,18708 -Luzerne,PA,18709 -Montrose,PA,18801 -Athens,PA,18810 -Brackney,PA,18812 -East Smithfield,PA,18817 -Friendsville,PA,18818 -Great Bend,PA,18821 -Hallstead,PA,18822 -Harford,PA,18823 -Hop Bottom,PA,18824 -Jackson,PA,18825 -Kingsley,PA,18826 -Lawton,PA,18828 -Le Raysville,PA,18829 -Little Meadows,PA,18830 -Milan,PA,18831 -Monroeton,PA,18832 -New Albany,PA,18833 -New Milford,PA,18834 -Rome,PA,18837 -Rushville,PA,18839 -Sayre,PA,18840 -South Gibson,PA,18842 -Springville,PA,18844 -Stevensville,PA,18845 -Sugar Run,PA,18846 -Susquehanna,PA,18847 -Towanda,PA,18848 -Ulster,PA,18850 -Warren Center,PA,18851 -Wyalusing,PA,18853 -Wysox,PA,18854 -New Britain,PA,18901 -Carversville,PA,18913 -Chalfont,PA,18914 -Colmar,PA,18915 -Dublin,PA,18917 -Erwinna,PA,18920 -Fountainville,PA,18923 -Furlong,PA,18925 -Hilltown,PA,18927 -Jamison,PA,18929 -Kintnersville,PA,18930 -Line Lexington,PA,18932 -Lumberville,PA,18933 -Mechanicsville,PA,18934 -Montgomeryville,PA,18936 -New Hope,PA,18938 -George School,PA,18940 -Ottsville,PA,18942 -Perkasie,PA,18944 -Pipersville,PA,18947 -Quakertown,PA,18951 -Richboro,PA,18954 -Richlandtown,PA,18955 -Sellersville,PA,18960 -Bethton,PA,18964 -Holland,PA,18966 -Telford,PA,18969 -Upper Black Eddy,PA,18972 -Warminster,PA,18974 -Warrington,PA,18976 -Washington Cross,PA,18977 -Ogontz Campus,PA,19001 -Maple Glen,PA,19002 -Ardmore,PA,19003 -Bala Cynwyd,PA,19004 -Huntingdon Valle,PA,19006 -Tullytown,PA,19007 -Broomall,PA,19008 -Bryn Mawr,PA,19010 -Cheltenham,PA,19012 -Chester,PA,19013 -Aston,PA,19014 -Brookhaven,PA,19015 -Primos Secane,PA,19018 -Bensalem,PA,19020 -Croydon,PA,19021 -Crum Lynne,PA,19022 -Collingdale,PA,19023 -Dresher,PA,19025 -Pilgrim Gardens,PA,19026 -Lester,PA,19029 -Fairless Hills,PA,19030 -Flourtown,PA,19031 -Folcroft,PA,19032 -Folsom,PA,19033 -Fort Washington,PA,19034 -Gladwyne,PA,19035 -Glenolden,PA,19036 -Glenside,PA,19038 -Hatboro,PA,19040 -Haverford,PA,19041 -Holmes,PA,19043 -Horsham,PA,19044 -Meadowbrook,PA,19046 -Penndel,PA,19047 -Yeadon,PA,19050 -Feasterville Tre,PA,19053 -Levittown,PA,19054 -Levittown,PA,19055 -Levittown,PA,19056 -Levittown,PA,19057 -Boothwyn,PA,19061 -Glen Riddle Lima,PA,19063 -Springfield,PA,19064 -Merion Station,PA,19066 -Yardley,PA,19067 -Morton,PA,19070 -Narberth,PA,19072 -Newtown Square,PA,19073 -Norwood,PA,19074 -Oreland,PA,19075 -Prospect Park,PA,19076 -Ridley Park,PA,19078 -Sharon Hill,PA,19079 -Swarthmore,PA,19081 -Upper Darby,PA,19082 -Havertown,PA,19083 -Villanova,PA,19085 -Wallingford,PA,19086 -Radnor,PA,19087 -Willow Grove Nas,PA,19090 -Woodlyn,PA,19094 -Wyncote,PA,19095 -Wynnewood,PA,19096 -Philadelphia,PA,19102 -Philadelphia,PA,19103 -Philadelphia,PA,19104 -Philadelphia,PA,19106 -Philadelphia,PA,19107 -Philadelphia,PA,19111 -Philadelphia,PA,19112 -Philadelphia,PA,19113 -Philadelphia,PA,19114 -Philadelphia,PA,19115 -Philadelphia,PA,19116 -Elkins Park,PA,19117 -Philadelphia,PA,19118 -Philadelphia,PA,19119 -Philadelphia,PA,19120 -Philadelphia,PA,19121 -Philadelphia,PA,19122 -Philadelphia,PA,19123 -Philadelphia,PA,19124 -Philadelphia,PA,19125 -Philadelphia,PA,19126 -Philadelphia,PA,19127 -Philadelphia,PA,19128 -Philadelphia,PA,19129 -Philadelphia,PA,19130 -Philadelphia,PA,19131 -Philadelphia,PA,19132 -Philadelphia,PA,19133 -Philadelphia,PA,19134 -Philadelphia,PA,19135 -Philadelphia,PA,19136 -Philadelphia,PA,19137 -Philadelphia,PA,19138 -Philadelphia,PA,19139 -Philadelphia,PA,19140 -Philadelphia,PA,19141 -Philadelphia,PA,19142 -Philadelphia,PA,19143 -Philadelphia,PA,19144 -Philadelphia,PA,19145 -Philadelphia,PA,19146 -Philadelphia,PA,19147 -Philadelphia,PA,19148 -Philadelphia,PA,19149 -Philadelphia,PA,19150 -Philadelphia,PA,19151 -Philadelphia,PA,19152 -Philadelphia,PA,19153 -Philadelphia,PA,19154 -Paoli,PA,19301 -Atglen,PA,19310 -Avondale,PA,19311 -Berwyn,PA,19312 -Chadds Ford,PA,19317 -Cheyney,PA,19319 -Coatesville,PA,19320 -Cochranville,PA,19330 -Devon,PA,19333 -Downingtown,PA,19335 -Exton,PA,19341 -Glen Mills,PA,19342 -Glenmoore,PA,19343 -Honey Brook,PA,19344 -Kelton,PA,19346 -Kennett Square,PA,19348 -Landenberg,PA,19350 -Lincoln Universi,PA,19352 -Frazer,PA,19355 -Nottingham,PA,19362 -Oxford,PA,19363 -Parkesburg,PA,19365 -Thorndale,PA,19372 -Thornton,PA,19373 -Toughkenamon,PA,19374 -West Chester,PA,19380 -West Chester,PA,19382 -West Grove,PA,19390 -Norristown,PA,19401 -Eagleville,PA,19403 -Bridgeport,PA,19405 -King Of Prussia,PA,19406 -Penllyn,PA,19422 -Chester Springs,PA,19425 -Collegeville,PA,19426 -West Conshohocke,PA,19428 -Frederick,PA,19435 -Gwynedd,PA,19436 -Harleysville,PA,19438 -Hatfield,PA,19440 -Lafayette Hill,PA,19444 -Lansdale,PA,19446 -Mont Clare,PA,19453 -North Wales,PA,19454 -Phoenixville,PA,19460 -Plymouth Meeting,PA,19462 -Sanatoga,PA,19464 -Limerick,PA,19468 -Schwenksville,PA,19473 -Spring City,PA,19475 -Spring House,PA,19477 -Zieglersville,PA,19492 -Adamstown,PA,19501 -Bally,PA,19503 -Barto,PA,19504 -Bechtelsville,PA,19505 -Bernville,PA,19506 -Bethel,PA,19507 -Birdsboro,PA,19508 -Blandon,PA,19510 -Boyertown,PA,19512 -Douglassville,PA,19518 -Elverson,PA,19520 -Evansville,PA,19522 -Gilbertsville,PA,19525 -Hamburg,PA,19526 -Kempton,PA,19529 -Kutztown,PA,19530 -Leesport,PA,19533 -Lenhartsville,PA,19534 -Mertztown,PA,19539 -Mohnton,PA,19540 -Mohrsville,PA,19541 -Morgantown,PA,19543 -Oley,PA,19547 -Port Clinton,PA,19549 -Robesonia,PA,19551 -Shoemakersville,PA,19555 -Temple,PA,19560 -Topton,PA,19562 -Wernersville,PA,19565 -Womelsdorf,PA,19567 -Reading,PA,19601 -Reading,PA,19602 -Reading,PA,19604 -Reading,PA,19605 -Mount Penn,PA,19606 -Shillington,PA,19607 -Sinking Spring,PA,19608 -West Lawn,PA,19609 -Wyomissing,PA,19610 -Reading,PA,19611 -Ashaway,RI,2804 -Barrington,RI,2806 -Block Island,RI,2807 -Bradford,RI,2808 -Bristol,RI,2809 -Richmond,RI,2812 -Charlestown,RI,2813 -Chepachet,RI,2814 -Clayville,RI,2815 -Coventry,RI,2816 -West Greenwich,RI,2817 -East Greenwich,RI,2818 -2821,RI,2821 -Exeter,RI,2822 -Foster,RI,2825 -Greene,RI,2827 -Greenville,RI,2828 -Harrisville,RI,2830 -Hope,RI,2831 -Richmond,RI,2832 -Jamestown,RI,2835 -Richmond,RI,2836 -Little Compton,RI,2837 -Manville,RI,2838 -Middletown,RI,2840 -North Kingstown,RI,2852 -North Scituate,RI,2857 -Oakland,RI,2858 -Pascoag,RI,2859 -Pawtucket,RI,2860 -Pawtucket,RI,2861 -Central Falls,RI,2863 -Cumberland,RI,2864 -Lincoln,RI,2865 -Portsmouth,RI,2871 -Prudence Island,RI,2872 -Saunderstown,RI,2874 -Slatersville,RI,2876 -Slocum,RI,2877 -Tiverton,RI,2878 -Narragansett,RI,2879 -Kingston,RI,2881 -Narragansett,RI,2882 -Peace Dale,RI,2883 -Warren,RI,2885 -Warwick,RI,2886 -Warwick,RI,2888 -Warwick,RI,2889 -Westerly,RI,2891 -Richmond,RI,2892 -West Warwick,RI,2893 -Wood River Junct,RI,2894 -North Smithfield,RI,2895 -Richmond,RI,2898 -Providence,RI,2903 -Centredale,RI,2904 -Cranston,RI,2905 -Providence,RI,2906 -Cranston,RI,2907 -Providence,RI,2908 -Cranston,RI,2909 -Cranston,RI,2910 -Centredale,RI,2911 -East Providence,RI,2914 -Riverside,RI,2915 -Rumford,RI,2916 -Smithfield,RI,2917 -Cranston,RI,2919 -Cranston,RI,2920 -Cranston,RI,2921 -Alcolu,SC,29001 -Bamberg,SC,29003 -Batesburg,SC,29006 -Bethune,SC,29009 -Bishopville,SC,29010 -Blackstock,SC,29014 -Blair,SC,29015 -Blythewood,SC,29016 -Bowman,SC,29018 -Camden,SC,29020 -Cameron,SC,29030 -Carlisle,SC,29031 -Cassatt,SC,29032 -Cayce,SC,29033 -Chapin,SC,29036 -Chappells,SC,29037 -Cope,SC,29038 -Cordova,SC,29039 -Dalzell,SC,29040 -Denmark,SC,29042 -Eastover,SC,29044 -Elgin,SC,29045 -Elliott,SC,29046 -Elloree,SC,29047 -Eutawville,SC,29048 -Gable,SC,29051 -Gadsden,SC,29052 -Gaston,SC,29053 -Gilbert,SC,29054 -Great Falls,SC,29055 -Greeleyville,SC,29056 -Heath Springs,SC,29058 -Holly Hill,SC,29059 -Hopkins,SC,29061 -Irmo,SC,29063 -Jenkinsville,SC,29065 -Kershaw,SC,29067 -Lamar,SC,29069 -Leesville,SC,29070 -Lexington,SC,29072 -Lexington,SC,29073 -Little Mountain,SC,29075 -Lone Star,SC,29077 -Lugoff,SC,29078 -Lynchburg,SC,29080 -Ehrhardt,SC,29081 -Lodge,SC,29082 -Mc Bee,SC,29101 -Paxville,SC,29102 -Saint Charles,SC,29104 -Monetta,SC,29105 -Neeses,SC,29107 -Newberry,SC,29108 -New Zion,SC,29111 -North,SC,29112 -Norway,SC,29113 -Olanta,SC,29114 -Orangeburg,SC,29115 -Pelion,SC,29123 -Pinewood,SC,29125 -Pomaria,SC,29126 -Prosperity,SC,29127 -Rembert,SC,29128 -Ridge Spring,SC,29129 -Ridgeway,SC,29130 -Rimini,SC,29131 -Rowesville,SC,29133 -Fort Motte,SC,29135 -Salley,SC,29137 -Saluda,SC,29138 -Santee,SC,29142 -Silverstreet,SC,29145 -Springfield,SC,29146 -Summerton,SC,29148 -Oswego,SC,29150 -Shaw A F B,SC,29152 -Sumter,SC,29154 -Swansea,SC,29160 -Timmonsville,SC,29161 -Turbeville,SC,29162 -Vance,SC,29163 -Wagener,SC,29164 -Ward,SC,29166 -Wedgefield,SC,29168 -West Columbia,SC,29169 -West Columbia,SC,29170 -West Columbia,SC,29172 -Westville,SC,29175 -Whitmire,SC,29178 -Winnsboro,SC,29180 -Columbia,SC,29201 -Columbia,SC,29203 -Columbia,SC,29204 -Columbia,SC,29205 -Columbia,SC,29206 -Columbia,SC,29209 -Columbia,SC,29210 -Columbia,SC,29212 -Columbia,SC,29223 -Spartanburg,SC,29301 -Spartanburg,SC,29302 -Valley Falls,SC,29303 -Buffalo,SC,29321 -Campobello,SC,29322 -Chesnee,SC,29323 -Clinton,SC,29325 -Cowpens,SC,29330 -Cross Hill,SC,29332 -Duncan,SC,29334 -Enoree,SC,29335 -Gaffney,SC,29340 -Inman,SC,29349 -Joanna,SC,29351 -Kelton,SC,29353 -Kinards,SC,29355 -Landrum,SC,29356 -Ora,SC,29360 -Lyman,SC,29365 -Moore,SC,29369 -Mountville,SC,29370 -Pacolet,SC,29372 -Glenn Springs,SC,29374 -Roebuck,SC,29376 -Union,SC,29379 -Waterloo,SC,29384 -Wellford,SC,29385 -Woodruff,SC,29388 -Charleston,SC,29401 -Charleston,SC,29403 -Charleston,SC,29404 -Charleston,SC,29405 -North Charleston,SC,29406 -Charleston,SC,29407 -Charleston,SC,29412 -Charleston,SC,29414 -Charleston,SC,29418 -Charleston,SC,29420 -Jericho,SC,29426 -Awendaw,SC,29429 -Bonneau,SC,29431 -Branchville,SC,29432 -Cordesville,SC,29434 -Cottageville,SC,29435 -Cross,SC,29436 -Dorchester,SC,29437 -Edisto Island,SC,29438 -Georgetown,SC,29440 -Mount Holly,SC,29445 -Green Pond,SC,29446 -Harleyville,SC,29448 -Meggett,SC,29449 -Huger,SC,29450 -Isle Of Palms,SC,29451 -Shulerville,SC,29453 -Johns Island,SC,29455 -Ladson,SC,29456 -Mc Clellanville,SC,29458 -Oakley,SC,29461 -Mount Pleasant,SC,29464 -Pineville,SC,29468 -Pinopolis,SC,29469 -Ravenel,SC,29470 -Reevesville,SC,29471 -Ridgeville,SC,29472 -Round O,SC,29474 -Ruffin,SC,29475 -Saint George,SC,29477 -Alvin,SC,29479 -Smoaks,SC,29481 -Sullivans Island,SC,29482 -Summerville,SC,29483 -Summerville,SC,29485 -Wadmalaw Island,SC,29487 -Ritter,SC,29488 -Wando,SC,29492 -Florence,SC,29501 -Florence,SC,29505 -Quinby,SC,29506 -Andrews,SC,29510 -Aynor,SC,29511 -Bennettsville,SC,29512 -Blenheim,SC,29516 -Cades,SC,29518 -Cheraw,SC,29520 -Clio,SC,29525 -Conway,SC,29526 -Bucksport,SC,29527 -Coward,SC,29530 -Darlington,SC,29532 -Dillon,SC,29536 -Effingham,SC,29541 -Fork,SC,29543 -Galivants Ferry,SC,29544 -Green Sea,SC,29545 -Gresham,SC,29546 -South Of The Bor,SC,29547 -Hartsville,SC,29550 -Hemingway,SC,29554 -Johnsonville,SC,29555 -Kingstree,SC,29556 -Lake City,SC,29560 -Lake View,SC,29563 -Lane,SC,29564 -Latta,SC,29565 -Little River,SC,29566 -Little Rock,SC,29567 -Longs,SC,29568 -Loris,SC,29569 -Mc Coll,SC,29570 -Marion,SC,29571 -Myrtle Beach,SC,29572 -Mullins,SC,29574 -Surfside Beach,SC,29575 -Murrells Inlet,SC,29576 -Myrtle Beach,SC,29577 -Nesmith,SC,29580 -Nichols,SC,29581 -Cherry Grove Bea,SC,29582 -Pamplico,SC,29583 -Patrick,SC,29584 -Pawleys Island,SC,29585 -Salters,SC,29590 -Scranton,SC,29591 -Sellers,SC,29592 -Society Hill,SC,29593 -Wallace,SC,29596 -Greenville,SC,29601 -Greenville,SC,29605 -Greenville,SC,29607 -Greenville,SC,29609 -Greenville,SC,29611 -Greenville,SC,29615 -Abbeville,SC,29620 -Anderson,SC,29621 -Anderson,SC,29624 -Anderson,SC,29625 -Belton,SC,29627 -Calhoun Falls,SC,29628 -Central,SC,29630 -Clemson,SC,29631 -Cleveland,SC,29635 -Shoals Junction,SC,29638 -Due West,SC,29639 -Easley,SC,29640 -Easley,SC,29642 -Fair Play,SC,29643 -Fountain Inn,SC,29644 -Ora,SC,29645 -Greenwood,SC,29646 -Greenwood,SC,29649 -Greer,SC,29650 -Greer,SC,29651 -Hodges,SC,29653 -Honea Path,SC,29654 -Iva,SC,29655 -Liberty,SC,29657 -Long Creek,SC,29658 -Lowndesville,SC,29659 -Marietta,SC,29661 -Mauldin,SC,29662 -Mountain Rest,SC,29664 -Ninety Six,SC,29666 -Cateechee,SC,29667 -Pelzer,SC,29669 -Pendleton,SC,29670 -Pickens,SC,29671 -Piedmont,SC,29673 -Salem,SC,29676 -Seneca,SC,29678 -Simpsonville,SC,29681 -Six Mile,SC,29682 -Starr,SC,29684 -Sunset,SC,29685 -Tamassee,SC,29686 -Taylors,SC,29687 -Tigerville,SC,29688 -Townville,SC,29689 -Travelers Rest,SC,29690 -Walhalla,SC,29691 -Ware Shoals,SC,29692 -Madison,SC,29693 -West Union,SC,29696 -Williamston,SC,29697 -Cherokee Falls,SC,29702 -Catawba,SC,29704 -Chester,SC,29706 -Chesterfield,SC,29709 -Lake Wylie,SC,29710 -Edgemoor,SC,29712 -Fort Lawn,SC,29714 -Tega Cay,SC,29715 -Hickory Grove,SC,29717 -Jefferson,SC,29718 -Lancaster,SC,29720 -Mc Connells,SC,29726 -Mount Croghan,SC,29727 -Pageland,SC,29728 -Richburg,SC,29729 -Rock Hill,SC,29730 -Rock Hill,SC,29732 -Ruby,SC,29741 -Sharon,SC,29742 -Smyrna,SC,29743 -York,SC,29745 -Aiken,SC,29801 -Aiken,SC,29803 -New Ellenton,SC,29809 -Allendale,SC,29810 -Barnwell,SC,29812 -Blackville,SC,29817 -Bradley,SC,29819 -Clarks Hill,SC,29821 -Edgefield,SC,29824 -Fairfax,SC,29827 -Graniteville,SC,29829 -Jackson,SC,29831 -Johnston,SC,29832 -Mc Cormick,SC,29835 -Martin,SC,29836 -Modoc,SC,29838 -Mount Carmel,SC,29840 -Beech Island,SC,29841 -Olar,SC,29843 -Plum Branch,SC,29845 -Trenton,SC,29847 -Troy,SC,29848 -Ulmer,SC,29849 -Warrenville,SC,29851 -Williston,SC,29853 -Windsor,SC,29856 -Burton,SC,29902 -Bluffton,SC,29910 -Brunson,SC,29911 -Early Branch,SC,29916 -Estill,SC,29918 -St Helena Island,SC,29920 -Garnett,SC,29922 -Hampton,SC,29924 -Hilton Head Isla,SC,29926 -Hardeeville,SC,29927 -Hilton Head Isla,SC,29928 -Islandton,SC,29929 -Luray,SC,29932 -Pineland,SC,29934 -Port Royal,SC,29935 -Coosawatchie,SC,29936 -Seabrook,SC,29940 -Tillman,SC,29943 -Varnville,SC,29944 -Yemassee,SC,29945 -Alcester,SD,57001 -Aurora,SD,57002 -Baltic,SD,57003 -Beresford,SD,57004 -Corson,SD,57005 -Brookings,SD,57006 -Burbank,SD,57010 -Canistota,SD,57012 -Canton,SD,57013 -Centerville,SD,57014 -Chancellor,SD,57015 -Chester,SD,57016 -Colman,SD,57017 -Colton,SD,57018 -Crooks,SD,57020 -Davis,SD,57021 -Dell Rapids,SD,57022 -Egan,SD,57024 -Elk Point,SD,57025 -Elkton,SD,57026 -Fairview,SD,57027 -Flandreau,SD,57028 -Freeman,SD,57029 -Garretson,SD,57030 -Gayville,SD,57031 -Harrisburg,SD,57032 -Hartford,SD,57033 -Hudson,SD,57034 -Humboldt,SD,57035 -Hurley,SD,57036 -Irene,SD,57037 -Jefferson,SD,57038 -Lennox,SD,57039 -Lesterville,SD,57040 -Madison,SD,57042 -Marion,SD,57043 -Meckling,SD,57044 -Menno,SD,57045 -Mission Hill,SD,57046 -Monroe,SD,57047 -Montrose,SD,57048 -Dakota Dunes,SD,57049 -Nunda,SD,57050 -Oldham,SD,57051 -Olivet,SD,57052 -Parker,SD,57053 -Ramona,SD,57054 -Renner,SD,57055 -Rutland,SD,57057 -Salem,SD,57058 -Scotland,SD,57059 -Sherman,SD,57060 -Sinai,SD,57061 -Springfield,SD,57062 -Tabor,SD,57063 -Tea,SD,57064 -Trent,SD,57065 -Tyndall,SD,57066 -Utica,SD,57067 -Valley Springs,SD,57068 -Vermillion,SD,57069 -Viborg,SD,57070 -Volga,SD,57071 -Volin,SD,57072 -Wakonda,SD,57073 -Ward,SD,57074 -Wentworth,SD,57075 -Winfred,SD,57076 -Worthing,SD,57077 -Yankton,SD,57078 -Sioux Falls,SD,57102 -Sioux Falls,SD,57103 -Sioux Falls,SD,57104 -Sioux Falls,SD,57105 -Sioux Falls,SD,57106 -Sioux Falls,SD,57107 -Buffalo Ridge,SD,57115 -Sioux Falls,SD,57116 -Watertown,SD,57201 -Waverly,SD,57202 -Arlington,SD,57212 -Astoria,SD,57213 -Badger,SD,57214 -Big Stone City,SD,57216 -Bradley,SD,57217 -Brandt,SD,57218 -Butler,SD,57219 -Bruce,SD,57220 -Bryant,SD,57221 -Castlewood,SD,57223 -Claire City,SD,57224 -Clark,SD,57225 -Altamont,SD,57226 -Corona,SD,57227 -57230,SD,57230 -De Smet,SD,57231 -Eden,SD,57232 -Erwin,SD,57233 -Dempster,SD,57234 -Florence,SD,57235 -Garden City,SD,57236 -Gary,SD,57237 -Bemis,SD,57238 -Grenville,SD,57239 -Hayti,SD,57241 -Hazel,SD,57242 -Henry,SD,57243 -Hetland,SD,57244 -Kranzburg,SD,57245 -Labolt,SD,57246 -Lake City,SD,57247 -Lake Norden,SD,57248 -Lake Preston,SD,57249 -Marvin,SD,57251 -Milbank,SD,57252 -New Effington,SD,57255 -Ortley,SD,57256 -Peever,SD,57257 -Raymond,SD,57258 -Albee,SD,57259 -Rosholt,SD,57260 -Roslyn,SD,57261 -Agency Village,SD,57262 -South Shore,SD,57263 -Stockholm,SD,57264 -Strandburg,SD,57265 -Summit,SD,57266 -Toronto,SD,57268 -Twin Brooks,SD,57269 -Veblen,SD,57270 -Vienna,SD,57271 -Wallace,SD,57272 -Waubay,SD,57273 -Lily,SD,57274 -White,SD,57276 -Willow Lake,SD,57278 -Wilmot,SD,57279 -Loomis,SD,57301 -Farmer,SD,57311 -Alpena,SD,57312 -Armour,SD,57313 -Forestburg,SD,57314 -Avon,SD,57315 -Bancroft,SD,57316 -Bonesteel,SD,57317 -Dolton,SD,57319 -Canova,SD,57321 -Carpenter,SD,57322 -Carthage,SD,57323 -Cavour,SD,57324 -Chamberlain,SD,57325 -Corsica,SD,57328 -Dante,SD,57329 -Delmont,SD,57330 -Dimock,SD,57331 -Emery,SD,57332 -Ethan,SD,57334 -Fairfax,SD,57335 -57336,SD,57336 -Fedora,SD,57337 -Fort Thompson,SD,57339 -Fulton,SD,57340 -Gann Valley,SD,57341 -Geddes,SD,57342 -Harrison,SD,57344 -Highmore,SD,57345 -Hitchcock,SD,57348 -Roswell,SD,57349 -Huron,SD,57350 -Iroquois,SD,57353 -Kaylor,SD,57354 -Kimball,SD,57355 -Lake Andes,SD,57356 -Ravinia,SD,57357 -Lane,SD,57358 -Letcher,SD,57359 -Marty,SD,57361 -Miller,SD,57362 -Mount Vernon,SD,57363 -New Holland,SD,57364 -Parkston,SD,57366 -Plankinton,SD,57368 -Academy,SD,57369 -Pukwana,SD,57370 -Ree Heights,SD,57371 -Saint Lawrence,SD,57373 -Spencer,SD,57374 -Stickney,SD,57375 -Tripp,SD,57376 -Virgil,SD,57379 -Wagner,SD,57380 -Wessington,SD,57381 -Wessington Sprin,SD,57382 -White Lake,SD,57383 -Wolsey,SD,57384 -Woonsocket,SD,57385 -Yale,SD,57386 -Aberdeen,SD,57401 -Akaska,SD,57420 -Amherst,SD,57421 -Andover,SD,57422 -Athol,SD,57424 -57425,SD,57425 -Barnard,SD,57426 -Bath,SD,57427 -Bowdle,SD,57428 -Brentford,SD,57429 -Britton,SD,57430 -Claremont,SD,57432 -Columbia,SD,57433 -Verdon,SD,57434 -Cresbard,SD,57435 -Doland,SD,57436 -Artas,SD,57437 -Miranda,SD,57438 -Frankfort,SD,57440 -Frederick,SD,57441 -Gettysburg,SD,57442 -Groton,SD,57445 -Hecla,SD,57446 -Hosmer,SD,57448 -Houghton,SD,57449 -Hoven,SD,57450 -Ipswich,SD,57451 -Java,SD,57452 -Langford,SD,57454 -Lebanon,SD,57455 -Leola,SD,57456 -Longlake,SD,57457 -Mansfield,SD,57460 -Mellette,SD,57461 -Mina,SD,57462 -Northville,SD,57465 -Onaka,SD,57466 -Orient,SD,57467 -Pierpont,SD,57468 -Redfield,SD,57469 -Rockham,SD,57470 -Roscoe,SD,57471 -Selby,SD,57472 -Seneca,SD,57473 -Stratford,SD,57474 -Tolstoy,SD,57475 -Tulare,SD,57476 -Turton,SD,57477 -Warner,SD,57479 -Wetonka,SD,57481 -Zell,SD,57483 -Pierre,SD,57501 -Agar,SD,57520 -Belvidere,SD,57521 -Blunt,SD,57522 -Lucas,SD,57523 -Carter,SD,57526 -Cedarbutte,SD,57527 -Colome,SD,57528 -Dallas,SD,57529 -Draper,SD,57531 -Fort Pierre,SD,57532 -Dixon,SD,57533 -Hamill,SD,57534 -Harrold,SD,57536 -Hayes,SD,57537 -Herrick,SD,57538 -Holabird,SD,57540 -Ideal,SD,57541 -Iona,SD,57542 -Kadoka,SD,57543 -Kennebec,SD,57544 -Keyapaha,SD,57545 -Long Valley,SD,57547 -Lower Brule,SD,57548 -Vetal,SD,57551 -Ottumwa,SD,57552 -Milesville,SD,57553 -Mission,SD,57555 -Mission Ridge,SD,57557 -Murdo,SD,57559 -Norris,SD,57560 -Okaton,SD,57562 -Onida,SD,57564 -Parmelee,SD,57566 -Philip,SD,57567 -Presho,SD,57568 -Reliance,SD,57569 -Saint Charles,SD,57571 -Saint Francis,SD,57572 -Tuthill,SD,57574 -Vivian,SD,57576 -Wanblee,SD,57577 -Wewela,SD,57578 -White River,SD,57579 -Clearfield,SD,57580 -Witten,SD,57584 -Wood,SD,57585 -Mobridge,SD,57601 -Bison,SD,57620 -Cherry Creek,SD,57622 -Dupree,SD,57623 -Faith,SD,57626 -Firesteel,SD,57628 -Glad Valley,SD,57629 -Glencross,SD,57630 -Glenham,SD,57631 -Herreid,SD,57632 -Isabel,SD,57633 -Keldron,SD,57634 -Lemmon,SD,57638 -Lodgepole,SD,57640 -Mc Intosh,SD,57641 -Mc Laughlin,SD,57642 -Mahto,SD,57643 -Meadow,SD,57644 -Morristown,SD,57645 -Mound City,SD,57646 -Parade,SD,57647 -Pollock,SD,57648 -Prairie City,SD,57649 -Ralph,SD,57650 -Reva,SD,57651 -Shadehill,SD,57653 -Timber Lake,SD,57656 -Trail City,SD,57657 -Wakpala,SD,57658 -Watauga,SD,57660 -Rockerville,SD,57701 -Silver City,SD,57702 -Ellsworth Afb,SD,57706 -Bethlehem,SD,57708 -Allen,SD,57714 -Denby,SD,57716 -Belle Fourche,SD,57717 -Black Hawk,SD,57718 -Box Elder,SD,57719 -Buffalo,SD,57720 -Buffalo Gap,SD,57722 -Sky Ranch,SD,57724 -Caputa,SD,57725 -Creighton,SD,57729 -Crazy Horse,SD,57730 -Deadwood,SD,57732 -Edgemont,SD,57735 -Elm Springs,SD,57736 -Enning,SD,57737 -Fairburn,SD,57738 -Fort Meade,SD,57741 -Fruitdale,SD,57742 -Hermosa,SD,57744 -Hill City,SD,57745 -Hot Springs,SD,57747 -Plainview,SD,57748 -Interior,SD,57750 -Keystone,SD,57751 -Kyle,SD,57752 -Spearfish Canyon,SD,57754 -Ludlow,SD,57755 -Manderson,SD,57756 -Marcus,SD,57757 -Mud Butte,SD,57758 -Nemo,SD,57759 -Newell,SD,57760 -New Underwood,SD,57761 -Nisland,SD,57762 -Oelrichs,SD,57763 -Opal,SD,57765 -Oral,SD,57766 -Owanka,SD,57767 -Piedmont,SD,57769 -Pine Ridge,SD,57770 -Porcupine,SD,57772 -Provo,SD,57774 -Cottonwood,SD,57775 -Redowl,SD,57777 -Rochford,SD,57778 -Saint Onge,SD,57779 -Scenic,SD,57780 -Smithwick,SD,57782 -Spearfish,SD,57783 -Hereford,SD,57785 -Stoneville,SD,57787 -Vale,SD,57788 -Wall,SD,57790 -Wasta,SD,57791 -White Owl,SD,57792 -Whitewood,SD,57793 -Wounded Knee,SD,57794 -Zeona,SD,57795 -Adams,TN,37010 -Alexandria,TN,37012 -Antioch,TN,37013 -Arrington,TN,37014 -Ashland City,TN,37015 -Auburntown,TN,37016 -Beechgrove,TN,37018 -Belfast,TN,37019 -Bell Buckle,TN,37020 -Bethpage,TN,37022 -Big Rock,TN,37023 -Bon Aqua,TN,37025 -Bradyville,TN,37026 -Brentwood,TN,37027 -Bumpus Mills,TN,37028 -Burns,TN,37029 -Defeated,TN,37030 -Castalian Spring,TN,37031 -Cedar Hill,TN,37032 -Centerville,TN,37033 -Chapel Hill,TN,37034 -Chapmansboro,TN,37035 -Charlotte,TN,37036 -Christiana,TN,37037 -Clarksville,TN,37040 -Clarksville,TN,37042 -Clarksville,TN,37043 -College Grove,TN,37046 -Cornersville,TN,37047 -Cottontown,TN,37048 -Cross Plains,TN,37049 -Cumberland City,TN,37050 -Cumberland Furna,TN,37051 -Cunningham,TN,37052 -Dickson,TN,37055 -Dixon Springs,TN,37057 -Dover,TN,37058 -Dowelltown,TN,37059 -Eagleville,TN,37060 -Erin,TN,37061 -Fairview,TN,37062 -Franklin,TN,37064 -Gallatin,TN,37066 -Goodlettsville,TN,37072 -Greenbrier,TN,37073 -Hartsville,TN,37074 -Hendersonville,TN,37075 -Hermitage,TN,37076 -Hurricane Mills,TN,37078 -Indian Mound,TN,37079 -Joelton,TN,37080 -Kingston Springs,TN,37082 -Lafayette,TN,37083 -Lascassas,TN,37085 -La Vergne,TN,37086 -Lebanon,TN,37087 -Lewisburg,TN,37091 -Gassaway,TN,37095 -Flatwoods,TN,37096 -Lobelville,TN,37097 -Wrigley,TN,37098 -Mc Ewen,TN,37101 -Plaza,TN,37110 -Madison,TN,37115 -Milton,TN,37118 -Mount Juliet,TN,37122 -Murfreesboro,TN,37129 -Murfreesboro,TN,37130 -New Johnsonville,TN,37134 -Nolensville,TN,37135 -Nunnelly,TN,37137 -Old Hickory,TN,37138 -Only,TN,37140 -Orlinda,TN,37141 -Palmyra,TN,37142 -Pegram,TN,37143 -Petersburg,TN,37144 -Pleasant Shade,TN,37145 -Pleasant View,TN,37146 -Pleasantville,TN,37147 -Portland,TN,37148 -Readyville,TN,37149 -Red Boiling Spri,TN,37150 -Riddleton,TN,37151 -Rockvale,TN,37153 -Royal,TN,37160 -Smithville,TN,37166 -Smyrna,TN,37167 -Southside,TN,37171 -Springfield,TN,37172 -Spring Hill,TN,37174 -Stewart,TN,37175 -Tennessee Ridge,TN,37178 -Thompsons Statio,TN,37179 -Unionville,TN,37180 -Vanleer,TN,37181 -Wartrace,TN,37183 -Watertown,TN,37184 -Waverly,TN,37185 -Westmoreland,TN,37186 -White Bluff,TN,37187 -White House,TN,37188 -Whites Creek,TN,37189 -Woodbury,TN,37190 -Woodlawn,TN,37191 -Nashville,TN,37201 -Nashville,TN,37203 -Melrose,TN,37204 -Nashville,TN,37205 -Nashville,TN,37206 -Nashville,TN,37207 -Nashville,TN,37208 -Nashville,TN,37209 -Nashville,TN,37210 -Nashville,TN,37211 -Nashville,TN,37212 -Nashville,TN,37213 -Nashville,TN,37214 -Nashville,TN,37215 -Nashville,TN,37216 -Nashville,TN,37217 -Nashville,TN,37218 -Nashville,TN,37219 -Nashville,TN,37220 -Bellevue,TN,37221 -Nashville,TN,37228 -Altamont,TN,37301 -Apison,TN,37302 -Athens,TN,37303 -Beersheba Spring,TN,37305 -Belvidere,TN,37306 -Benton,TN,37307 -Birchwood,TN,37308 -Calhoun,TN,37309 -Charleston,TN,37310 -Cleveland,TN,37311 -Cleveland,TN,37312 -Coalmont,TN,37313 -Postelle,TN,37317 -Cowan,TN,37318 -Dayton,TN,37321 -Decatur,TN,37322 -Decherd,TN,37324 -Delano,TN,37325 -Dunlap,TN,37327 -Elora,TN,37328 -Englewood,TN,37329 -Estill Springs,TN,37330 -Etowah,TN,37331 -Evensville,TN,37332 -Farner,TN,37333 -Fayetteville,TN,37334 -Flintville,TN,37335 -Georgetown,TN,37336 -Grandview,TN,37337 -Graysville,TN,37338 -Gruetli Laager,TN,37339 -Guild,TN,37340 -Harrison,TN,37341 -Hillsboro,TN,37342 -Hixson,TN,37343 -Huntland,TN,37345 -Kimball,TN,37347 -Kelso,TN,37348 -Lookout Mountain,TN,37350 -Lynchburg,TN,37352 -Mc Donald,TN,37353 -Hiwassee College,TN,37354 -Manchester,TN,37355 -Monteagle,TN,37356 -Morrison,TN,37357 -Mulberry,TN,37359 -Normandy,TN,37360 -Ocoee,TN,37361 -Oldfort,TN,37362 -Ooltewah,TN,37363 -Palmer,TN,37365 -Pelham,TN,37366 -Pikeville,TN,37367 -Reliance,TN,37369 -Riceville,TN,37370 -Sale Creek,TN,37373 -Sequatchie,TN,37374 -Sewanee,TN,37375 -Sherwood,TN,37376 -Signal Mountain,TN,37377 -Soddy Daisy,TN,37379 -South Pittsburg,TN,37380 -Spring City,TN,37381 -Tellico Plains,TN,37385 -Tracy City,TN,37387 -Dickel,TN,37388 -Turtletown,TN,37391 -Whiteside,TN,37396 -Whitwell,TN,37397 -Winchester,TN,37398 -Chattanooga,TN,37402 -Chattanooga,TN,37403 -Chattanooga,TN,37404 -Chattanooga,TN,37405 -Chattanooga,TN,37406 -Chattanooga,TN,37407 -Chattanooga,TN,37408 -Chattanooga,TN,37409 -Chattanooga,TN,37410 -Chattanooga,TN,37411 -East Ridge,TN,37412 -Red Bank,TN,37415 -Chattanooga,TN,37416 -Chattanooga,TN,37419 -Chattanooga,TN,37421 -Johnson City,TN,37601 -Johnson City,TN,37604 -Gray,TN,37615 -Afton,TN,37616 -Blountville,TN,37617 -Bluff City,TN,37618 -Bristol,TN,37620 -Butler,TN,37640 -Chuckey,TN,37641 -Church Hill,TN,37642 -Elizabethton,TN,37643 -Mount Carmel,TN,37645 -Erwin,TN,37650 -Fall Branch,TN,37656 -Flag Pond,TN,37657 -Hampton,TN,37658 -Jonesborough,TN,37659 -Bloomingdale,TN,37660 -Colonial Heights,TN,37663 -Kingsport,TN,37664 -Lynn Garden,TN,37665 -Laurel Bloomery,TN,37680 -Washington Colle,TN,37681 -Mountain City,TN,37683 -Piney Flats,TN,37686 -Roan Mountain,TN,37687 -Shady Valley,TN,37688 -Telford,TN,37690 -Trade,TN,37691 -Unicoi,TN,37692 -Watauga,TN,37694 -Alcoa,TN,37701 -Andersonville,TN,37705 -Bean Station,TN,37708 -Blaine,TN,37709 -Devonia,TN,37710 -Bulls Gap,TN,37711 -Bybee,TN,37713 -Caryville,TN,37714 -Clairfield,TN,37715 -Clinton,TN,37716 -Corryton,TN,37721 -Cosby,TN,37722 -Crab Orchard,TN,37723 -Cumberland Gap,TN,37724 -Dandridge,TN,37725 -Deer Lodge,TN,37726 -Del Rio,TN,37727 -Duff,TN,37729 -Eidson,TN,37731 -Friendsville,TN,37737 -Gatlinburg,TN,37738 -Greenback,TN,37742 -Baileyton,TN,37743 -Harriman,TN,37748 -Harrogate,TN,37752 -Hartford,TN,37753 -Heiskell,TN,37754 -Helenwood,TN,37755 -Huntsville,TN,37756 -Jacksboro,TN,37757 -Jefferson City,TN,37760 -Jellico,TN,37762 -Kingston,TN,37763 -Kodak,TN,37764 -Kyles Ford,TN,37765 -Morley,TN,37766 -Lake City,TN,37769 -Lancing,TN,37770 -Lenoir City,TN,37771 -Loudon,TN,37774 -Louisville,TN,37777 -Lowland,TN,37778 -Luttrell,TN,37779 -Maryville,TN,37801 -Maryville,TN,37804 -Mascot,TN,37806 -Maynardville,TN,37807 -Midway,TN,37809 -Mohawk,TN,37810 -Mooresburg,TN,37811 -Morristown,TN,37813 -Morristown,TN,37814 -Mosheim,TN,37818 -Newcomb,TN,37819 -New Market,TN,37820 -Newport,TN,37821 -New Tazewell,TN,37825 -Niota,TN,37826 -Oakdale,TN,37829 -Oak Ridge,TN,37830 -Oliver Springs,TN,37840 -Oneida,TN,37841 -Parrottsville,TN,37843 -Petros,TN,37845 -Philadelphia,TN,37846 -Pioneer,TN,37847 -Powder Springs,TN,37848 -Powell,TN,37849 -Robbins,TN,37852 -Rockford,TN,37853 -Rockwood,TN,37854 -Rogersville,TN,37857 -Russellville,TN,37860 -Rutledge,TN,37861 -Sevierville,TN,37862 -Pigeon Forge,TN,37863 -Seymour,TN,37865 -Sharps Chapel,TN,37866 -Sneedville,TN,37869 -Speedwell,TN,37870 -Strawberry Plain,TN,37871 -Sunbright,TN,37872 -Surgoinsville,TN,37873 -Sweetwater,TN,37874 -Talbott,TN,37877 -Tallassee,TN,37878 -Tazewell,TN,37879 -Ten Mile,TN,37880 -Thorn Hill,TN,37881 -Townsend,TN,37882 -Treadway,TN,37883 -Vonore,TN,37885 -Walland,TN,37886 -Wartburg,TN,37887 -Washburn,TN,37888 -Baneberry,TN,37890 -Whitesburg,TN,37891 -Winfield,TN,37892 -Knoxville,TN,37902 -Knoxville,TN,37909 -Knoxville,TN,37912 -Knoxville,TN,37914 -Knoxville,TN,37915 -Knoxville,TN,37916 -Knoxville,TN,37917 -Knoxville,TN,37918 -Knoxville,TN,37919 -Kimberlin Height,TN,37920 -Karns,TN,37921 -Concord,TN,37922 -Knoxville,TN,37923 -Knoxville,TN,37924 -Knoxville,TN,37931 -Concord Farragut,TN,37932 -Knoxville,TN,37938 -Alamo,TN,38001 -Arlington,TN,38002 -Atoka,TN,38004 -Bells,TN,38006 -Bolivar,TN,38008 -Brighton,TN,38011 -Brownsville,TN,38012 -Burlison,TN,38015 -Collierville,TN,38017 -Cordova,TN,38018 -Covington,TN,38019 -Drummonds,TN,38023 -Dyersburg,TN,38024 -Eads,TN,38028 -Finley,TN,38030 -Friendship,TN,38034 -Gates,TN,38037 -Grand Junction,TN,38039 -Halls,TN,38040 -Fort Pillow,TN,38041 -Hickory Valley,TN,38042 -Hornsby,TN,38044 -Mason,TN,38049 -Middleton,TN,38052 -Millington,TN,38053 -Moscow,TN,38057 -Newbern,TN,38059 -Oakland,TN,38060 -Pocahontas,TN,38061 -Ripley,TN,38063 -Rossville,TN,38066 -Saulsbury,TN,38067 -Somerville,TN,38068 -Stanton,TN,38069 -Whiteville,TN,38075 -Williston,TN,38076 -Tiptonville,TN,38079 -Ridgely,TN,38080 -Memphis,TN,38103 -Memphis,TN,38104 -Memphis,TN,38105 -Memphis,TN,38106 -Memphis,TN,38107 -Memphis,TN,38108 -Memphis,TN,38109 -Memphis,TN,38111 -Memphis,TN,38112 -Memphis,TN,38113 -Memphis,TN,38114 -Hickory Hill,TN,38115 -Memphis,TN,38116 -Memphis,TN,38117 -Memphis,TN,38118 -Memphis,TN,38119 -Memphis,TN,38120 -Memphis,TN,38122 -Memphis,TN,38125 -Memphis,TN,38126 -Memphis,TN,38127 -Memphis,TN,38128 -Memphis,TN,38131 -Memphis,TN,38132 -Memphis,TN,38133 -Bartlett,TN,38134 -Memphis,TN,38135 -Germantown,TN,38138 -Germantown,TN,38139 -Memphis,TN,38141 -Mc Kenzie,TN,38201 -Atwood,TN,38220 -Big Sandy,TN,38221 -Buchanan,TN,38222 -Cottage Grove,TN,38224 -Dresden,TN,38225 -Dukedom,TN,38226 -Gleason,TN,38229 -Greenfield,TN,38230 -Henry,TN,38231 -Hornbeak,TN,38232 -Kenton,TN,38233 -Mansfield,TN,38236 -Martin,TN,38237 -Obion,TN,38240 -Palmersville,TN,38241 -Paris,TN,38242 -Puryear,TN,38251 -Rives,TN,38253 -Sharon,TN,38255 -Springville,TN,38256 -South Fulton,TN,38257 -Trezevant,TN,38258 -Trimble,TN,38259 -Troy,TN,38260 -Union City,TN,38261 -Jackson,TN,38301 -Jackson,TN,38305 -Adamsville,TN,38310 -Bath Springs,TN,38311 -Beech Bluff,TN,38313 -Bethel Springs,TN,38315 -Bradford,TN,38316 -Bruceton,TN,38317 -Buena Vista,TN,38318 -Camden,TN,38320 -Cedar Grove,TN,38321 -Counce,TN,38326 -Crump,TN,38327 -Darden,TN,38328 -Decaturville,TN,38329 -Dyer,TN,38330 -Enville,TN,38332 -Eva,TN,38333 -Finger,TN,38334 -Gadsden,TN,38337 -Guys,TN,38339 -Henderson,TN,38340 -Holladay,TN,38341 -Hollow Rock,TN,38342 -Humboldt,TN,38343 -Huntingdon,TN,38344 -Huron,TN,38345 -Jacks Creek,TN,38347 -Lavinia,TN,38348 -Lexington,TN,38351 -Luray,TN,38352 -Medina,TN,38355 -Medon,TN,38356 -Michie,TN,38357 -Milan,TN,38358 -Milledgeville,TN,38359 -Morris Chapel,TN,38361 -Oakfield,TN,38362 -Parsons,TN,38363 -Pinson,TN,38366 -Ramer,TN,38367 -Reagan,TN,38368 -Rutherford,TN,38369 -Saltillo,TN,38370 -Sardis,TN,38371 -Savannah,TN,38372 -Scotts Hill,TN,38374 -Selmer,TN,38375 -Shiloh,TN,38376 -Stantonville,TN,38379 -Sugar Tree,TN,38380 -Toone,TN,38381 -Trenton,TN,38382 -Westport,TN,38387 -Wildersville,TN,38388 -Yuma,TN,38390 -Denmark,TN,38391 -Mercer,TN,38392 -Columbia,TN,38401 -Clifton,TN,38425 -Ardmore,TN,38449 -Collinwood,TN,38450 -Culleoka,TN,38451 -Cypress Inn,TN,38452 -Ardmore,TN,38453 -Duck River,TN,38454 -Ethridge,TN,38456 -Five Points,TN,38457 -Frankewing,TN,38459 -Goodspring,TN,38460 -Hampshire,TN,38461 -Kimmins,TN,38462 -Iron City,TN,38463 -Lawrenceburg,TN,38464 -Leoma,TN,38468 -Loretto,TN,38469 -Lutts,TN,38471 -Lynnville,TN,38472 -Minor Hill,TN,38473 -Mount Pleasant,TN,38474 -Olivehill,TN,38475 -Primm Springs,TN,38476 -Prospect,TN,38477 -Pulaski,TN,38478 -Saint Joseph,TN,38481 -Santa Fe,TN,38482 -Summertown,TN,38483 -Waynesboro,TN,38485 -Westpoint,TN,38486 -Williamsport,TN,38487 -Taft,TN,38488 -Algood,TN,38501 -Allardt,TN,38504 -Allons,TN,38541 -Allred,TN,38542 -Alpine,TN,38543 -Baxter,TN,38544 -Bloomington Spri,TN,38545 -Brush Creek,TN,38547 -Buffalo Valley,TN,38548 -Byrdstown,TN,38549 -Celina,TN,38551 -Chestnut Mound,TN,38552 -Clarkrange,TN,38553 -Crawford,TN,38554 -Fairfield Glade,TN,38555 -Jamestown,TN,38556 -Doyle,TN,38559 -Elmwood,TN,38560 -Gainesboro,TN,38562 -Gordonsville,TN,38563 -Granville,TN,38564 -Grimsley,TN,38565 -Hickman,TN,38567 -Hilham,TN,38568 -Lancaster,TN,38569 -Livingston,TN,38570 -Monroe,TN,38573 -Monterey,TN,38574 -Moss,TN,38575 -Pall Mall,TN,38577 -Pleasant Hill,TN,38578 -Quebeck,TN,38579 -Rickman,TN,38580 -Bone Cave,TN,38581 -Silver Point,TN,38582 -Ravenscroft,TN,38583 -Spencer,TN,38585 -Walling,TN,38587 -Whitleyville,TN,38588 -Wilder,TN,38589 -Fort Campbell,TN,42223 -Allen,TX,75002 -Carrollton,TX,75006 -Carrollton,TX,75007 -Carrollton,TX,75008 -Celina,TX,75009 -Carrollton,TX,75010 -Coppell,TX,75019 -Denison,TX,75020 -Plano,TX,75023 -Plano,TX,75024 -Plano,TX,75025 -Flower Mound,TX,75028 -Frisco,TX,75034 -Irving,TX,75038 -Irving,TX,75039 -Garland,TX,75040 -Garland,TX,75041 -Garland,TX,75042 -Garland,TX,75043 -Garland,TX,75044 -Sachse,TX,75048 -Grand Prairie,TX,75050 -Grand Prairie,TX,75051 -Grand Prairie,TX,75052 -The Colony,TX,75056 -Lewisville,TX,75057 -Gunter,TX,75058 -Irving,TX,75060 -Irving,TX,75061 -Irving,TX,75062 -Irving,TX,75063 -Lake Dallas,TX,75065 -Highland Village,TX,75067 -Lakewood Village,TX,75068 -Mc Kinney,TX,75069 -Mc Kinney,TX,75070 -Plano,TX,75074 -Plano,TX,75075 -Pottsboro,TX,75076 -Prosper,TX,75078 -Richardson,TX,75080 -Richardson,TX,75081 -Richardson,TX,75082 -Heath,TX,75087 -Rowlett,TX,75088 -Sherman,TX,75090 -Plano,TX,75093 -Murphy,TX,75094 -Wylie,TX,75098 -Barry,TX,75102 -Canton,TX,75103 -Cedar Hill,TX,75104 -Chatfield,TX,75105 -Corsicana,TX,75110 -Crandall,TX,75114 -De Soto,TX,75115 -Duncanville,TX,75116 -Edgewood,TX,75117 -Ennis,TX,75119 -Eustace,TX,75124 -Ferris,TX,75125 -Forney,TX,75126 -Fruitvale,TX,75127 -Lancaster,TX,75134 -Caddo Mills,TX,75135 -Duncanville,TX,75137 -Grand Saline,TX,75140 -Hutchins,TX,75141 -Kaufman,TX,75142 -Seven Points,TX,75143 -Kerens,TX,75144 -Lancaster,TX,75146 -Gun Barrel City,TX,75147 -Malakoff,TX,75148 -Mesquite,TX,75149 -Mesquite,TX,75150 -Palmer,TX,75152 -Powell,TX,75153 -Ovilla,TX,75154 -Rice,TX,75155 -Scurry,TX,75158 -Seagoville,TX,75159 -Terrell,TX,75160 -Trinidad,TX,75163 -Waxahachie,TX,75165 -Wills Point,TX,75169 -Wilmer,TX,75172 -Nevada,TX,75173 -Balch Springs,TX,75180 -Mesquite,TX,75181 -Mesquite,TX,75182 -Royse City,TX,75189 -Dallas,TX,75201 -Dallas,TX,75202 -Dallas,TX,75203 -Dallas,TX,75204 -Village,TX,75205 -Dallas,TX,75206 -Dallas,TX,75207 -Dallas,TX,75208 -Dallas,TX,75209 -Dallas,TX,75210 -Cockrell Hill,TX,75211 -Dallas,TX,75212 -Dallas,TX,75214 -Dallas,TX,75215 -Dallas,TX,75216 -Dallas,TX,75217 -Dallas,TX,75218 -Dallas,TX,75219 -Dallas,TX,75220 -Dallas,TX,75223 -Dallas,TX,75224 -Dallas,TX,75225 -Dallas,TX,75226 -Dallas,TX,75227 -Dallas,TX,75228 -Dallas,TX,75229 -Dallas,TX,75230 -Dallas,TX,75231 -Dallas,TX,75232 -Dallas,TX,75233 -Farmers Branch,TX,75234 -Dallas,TX,75235 -Dallas,TX,75236 -Dallas,TX,75237 -Dallas,TX,75238 -Dallas,TX,75239 -Dallas,TX,75240 -Dallas,TX,75241 -Dallas,TX,75243 -Farmers Branch,TX,75244 -Dallas,TX,75246 -Dallas,TX,75247 -Dallas,TX,75248 -Dallas,TX,75249 -Dallas,TX,75251 -Dallas,TX,75252 -Dallas,TX,75253 -Dallas,TX,75287 -Greenville,TX,75401 -Princeton,TX,75407 -Anna,TX,75409 -Alba,TX,75410 -Arthur City,TX,75411 -Bagwell,TX,75412 -Bells,TX,75414 -Ben Franklin,TX,75415 -Blossom,TX,75416 -Bogata,TX,75417 -Bonham,TX,75418 -Brashear,TX,75420 -Brookston,TX,75421 -Campbell,TX,75422 -Celeste,TX,75423 -Blue Ridge,TX,75424 -Clarksville,TX,75426 -Commerce,TX,75428 -Como,TX,75431 -Cooper,TX,75432 -Cumby,TX,75433 -Deport,TX,75435 -Detroit,TX,75436 -Dike,TX,75437 -Dodd City,TX,75438 -Ector,TX,75439 -Emory,TX,75440 -Farmersville,TX,75442 -Honey Grove,TX,75446 -Ivanhoe,TX,75447 -Klondike,TX,75448 -Ladonia,TX,75449 -Lake Creek,TX,75450 -Leesburg,TX,75451 -Leonard,TX,75452 -Lone Oak,TX,75453 -Melissa,TX,75454 -Mount Pleasant,TX,75455 -Mount Vernon,TX,75457 -Howe,TX,75459 -Paris,TX,75460 -Pattonville,TX,75468 -Pecan Gap,TX,75469 -Petty,TX,75470 -Pickton,TX,75471 -Point,TX,75472 -Powderly,TX,75473 -Quinlan,TX,75474 -Ravenna,TX,75476 -Roxton,TX,75477 -Saltillo,TX,75478 -Savoy,TX,75479 -Scroggins,TX,75480 -Sulphur Bluff,TX,75481 -Sulphur Springs,TX,75482 -Sumner,TX,75486 -Talco,TX,75487 -Telephone,TX,75488 -Trenton,TX,75490 -Whitewright,TX,75491 -Windom,TX,75492 -Winfield,TX,75493 -Winnsboro,TX,75494 -Van Alstyne,TX,75495 -Wolfe City,TX,75496 -Yantis,TX,75497 -Wake Village,TX,75501 -Texarkana,TX,75503 -Annona,TX,75550 -Atlanta,TX,75551 -Avery,TX,75554 -Bivins,TX,75555 -Bloomburg,TX,75556 -Cookville,TX,75558 -De Kalb,TX,75559 -Douglassville,TX,75560 -Leary,TX,75561 -Linden,TX,75563 -Marietta,TX,75566 -Maud,TX,75567 -Naples,TX,75568 -Nash,TX,75569 -Boston,TX,75570 -Omaha,TX,75571 -Queen City,TX,75572 -Simms,TX,75574 -Longview,TX,75601 -Longview,TX,75602 -Longview,TX,75603 -Longview,TX,75604 -Longview,TX,75605 -Avinger,TX,75630 -Beckville,TX,75631 -Carthage,TX,75633 -Daingerfield,TX,75638 -De Berry,TX,75639 -New Diana,TX,75640 -Gary,TX,75643 -Gilmer,TX,75644 -Gladewater,TX,75647 -Hallsville,TX,75650 -Harleton,TX,75651 -Henderson,TX,75652 -Hughes Springs,TX,75656 -Smithland,TX,75657 -Karnack,TX,75661 -Kilgore,TX,75662 -Laneville,TX,75667 -Lone Star,TX,75668 -Long Branch,TX,75669 -Marshall,TX,75670 -Mount Enterprise,TX,75681 -Ore City,TX,75683 -Overton,TX,75684 -Pittsburg,TX,75686 -Price,TX,75687 -Turnertown,TX,75689 -Tatum,TX,75691 -Waskom,TX,75692 -Clarksville City,TX,75693 -Tyler,TX,75701 -Tyler,TX,75702 -Tyler,TX,75703 -Tyler,TX,75704 -Tyler,TX,75705 -Tyler,TX,75706 -Tyler,TX,75707 -East Texas Cente,TX,75708 -Tyler,TX,75709 -Arp,TX,75750 -Athens,TX,75751 -Ben Wheeler,TX,75754 -Big Sandy,TX,75755 -Edom,TX,75756 -Mount Selman,TX,75757 -Chandler,TX,75758 -Cushing,TX,75760 -Flint,TX,75762 -Frankston,TX,75763 -Hawkins,TX,75765 -Jacksonville,TX,75766 -Larue,TX,75770 -Mt Sylvan,TX,75771 -Mineola,TX,75773 -Murchison,TX,75778 -Quitman,TX,75783 -Reklaw,TX,75784 -Dialville,TX,75785 -Troup,TX,75789 -Van,TX,75790 -Whitehouse,TX,75791 -Winona,TX,75792 -Palestine,TX,75801 -Freestone,TX,75831 -Centerville,TX,75833 -Austonio,TX,75835 -Donie,TX,75838 -Slocum,TX,75839 -Fairfield,TX,75840 -Grapeland,TX,75844 -Groveton,TX,75845 -Jewett,TX,75846 -Kennard,TX,75847 -Leona,TX,75850 -Lovelady,TX,75851 -Midway,TX,75852 -Montalba,TX,75853 -Oakwood,TX,75855 -Pennington,TX,75856 -Streetman,TX,75859 -Teague,TX,75860 -Tennessee Colony,TX,75861 -Trinity,TX,75862 -Keltys,TX,75901 -Forest,TX,75925 -Apple Springs,TX,75926 -Bon Wier,TX,75928 -Broaddus,TX,75929 -Bronson,TX,75930 -Brookeland,TX,75931 -Burkeville,TX,75932 -Call,TX,75933 -Center,TX,75935 -Chester,TX,75936 -Chireno,TX,75937 -Rockland,TX,75938 -Barnum,TX,75939 -Diboll,TX,75941 -Douglass,TX,75943 -Garrison,TX,75946 -Hemphill,TX,75948 -Huntington,TX,75949 -Sam Rayburn,TX,75951 -Joaquin,TX,75954 -Bon Ami,TX,75956 -Magnolia Springs,TX,75957 -Milam,TX,75959 -Moscow,TX,75960 -Appleby,TX,75961 -Newton,TX,75966 -Pineland,TX,75968 -Pollok,TX,75969 -San Augustine,TX,75972 -Shelbyville,TX,75973 -Tenaha,TX,75974 -Timpson,TX,75975 -Wells,TX,75976 -Wiergate,TX,75977 -Dogwood,TX,75979 -Zavalla,TX,75980 -Arlington,TX,76006 -Aledo,TX,76008 -Alvarado,TX,76009 -Arlington,TX,76010 -Arlington,TX,76011 -Arlington,TX,76012 -Arlington,TX,76013 -Arlington,TX,76014 -Arlington,TX,76015 -Arlington,TX,76016 -Arlington,TX,76017 -Arlington,TX,76018 -Azle,TX,76020 -Bedford,TX,76021 -Bedford,TX,76022 -Boyd,TX,76023 -Burleson,TX,76028 -Cleburne,TX,76031 -Colleyville,TX,76034 -Cresson,TX,76035 -Crowley,TX,76036 -Euless,TX,76039 -Euless,TX,76040 -Forreston,TX,76041 -Glen Rose,TX,76043 -Godley,TX,76044 -Granbury,TX,76048 -Granbury,TX,76049 -Grandview,TX,76050 -Grapevine,TX,76051 -Haslet,TX,76052 -Hurst,TX,76053 -Hurst,TX,76054 -Itasca,TX,76055 -Joshua,TX,76058 -Keene,TX,76059 -Kennedale,TX,76060 -Mansfield,TX,76063 -Maypearl,TX,76064 -Midlothian,TX,76065 -Millsap,TX,76066 -Mineral Wells,TX,76067 -Nemo,TX,76070 -Newark,TX,76071 -Paradise,TX,76073 -Rainbow,TX,76077 -Rhome,TX,76078 -Springtown,TX,76082 -Venus,TX,76084 -Weatherford,TX,76086 -Weatherford,TX,76087 -Grapevine,TX,76092 -Rio Vista,TX,76093 -Fort Worth,TX,76102 -Fort Worth,TX,76103 -Fort Worth,TX,76104 -Fort Worth,TX,76105 -Fort Worth,TX,76106 -Fort Worth,TX,76107 -White Settlement,TX,76108 -Fort Worth,TX,76109 -Fort Worth,TX,76110 -Fort Worth,TX,76111 -Fort Worth,TX,76112 -River Oaks,TX,76114 -Fort Worth,TX,76115 -Fort Worth,TX,76116 -Haltom City,TX,76117 -North Richland H,TX,76118 -Fort Worth,TX,76119 -Fort Worth,TX,76120 -Fort Worth,TX,76123 -Benbrook,TX,76126 -Carswell Afb,TX,76127 -Fort Worth,TX,76131 -Fort Worth,TX,76132 -Fort Worth,TX,76133 -Fort Worth,TX,76134 -Fort Worth,TX,76135 -Fort Worth,TX,76137 -Everman,TX,76140 -Watauga,TX,76148 -Fort Worth,TX,76155 -Fort Worth,TX,76177 -Saginaw,TX,76179 -North Richland H,TX,76180 -Denton,TX,76201 -Denton,TX,76205 -Alvord,TX,76225 -Argyle,TX,76226 -Aubrey,TX,76227 -Bellevue,TX,76228 -Bowie,TX,76230 -Collinsville,TX,76233 -Decatur,TX,76234 -Era,TX,76238 -Forestburg,TX,76239 -Lake Kiowa,TX,76240 -Gordonville,TX,76245 -Justin,TX,76247 -Keller,TX,76248 -Krum,TX,76249 -Lindsay,TX,76250 -Montague,TX,76251 -Muenster,TX,76252 -Nocona,TX,76255 -Pilot Point,TX,76258 -Ponder,TX,76259 -Ringgold,TX,76261 -Trophy Club,TX,76262 -Rosston,TX,76263 -Sadler,TX,76264 -Saint Jo,TX,76265 -Sanger,TX,76266 -Sunset,TX,76270 -Tioga,TX,76271 -Valley View,TX,76272 -Whitesboro,TX,76273 -Wichita Falls,TX,76301 -Wichita Falls,TX,76302 -Wichita Falls,TX,76303 -Wichita Falls,TX,76304 -Wichita Falls,TX,76305 -Wichita Falls,TX,76306 -Wichita Falls,TX,76308 -Wichita Falls,TX,76309 -Wichita Falls,TX,76310 -Sheppard Afb,TX,76311 -76350,TX,76350 -Burkburnett,TX,76354 -Byers,TX,76357 -Elbert,TX,76359 -Electra,TX,76360 -Goree,TX,76363 -Harrold,TX,76364 -Henrietta,TX,76365 -Holliday,TX,76366 -Iowa Park,TX,76367 -Munday,TX,76371 -Newcastle,TX,76372 -Oklaunion,TX,76373 -Olney,TX,76374 -Petrolia,TX,76377 -76378,TX,76378 -Scotland,TX,76379 -Seymour,TX,76380 -Vera,TX,76383 -Vernon,TX,76384 -Weinert,TX,76388 -Windthorst,TX,76389 -Stephenville,TX,76401 -Breckenridge,TX,76424 -Bridgeport,TX,76426 -Bryson,TX,76427 -Caddo,TX,76429 -Albany,TX,76430 -Chico,TX,76431 -Blanket,TX,76432 -Bluff Dale,TX,76433 -Carbon,TX,76435 -Carlton,TX,76436 -Cisco,TX,76437 -Comanche,TX,76442 -Cross Plains,TX,76443 -De Leon,TX,76444 -Desdemona,TX,76445 -Dublin,TX,76446 -76447,TX,76447 -Eastland,TX,76448 -Graford,TX,76449 -Graham,TX,76450 -Gordon,TX,76453 -Gorman,TX,76454 -Gustine,TX,76455 -Hico,TX,76457 -Jacksboro,TX,76458 -Jermyn,TX,76459 -Loving,TX,76460 -Lipan,TX,76462 -Mingus,TX,76463 -Moran,TX,76464 -Ranger,TX,76470 -Rising Star,TX,76471 -Santo,TX,76472 -Sidney,TX,76474 -Strawn,TX,76475 -Tolar,TX,76476 -Throckmorton,TX,76483 -Palo Pinto,TX,76484 -Perrin,TX,76486 -Poolville,TX,76487 -Whitt,TX,76490 -Woodson,TX,76491 -Temple,TX,76501 -Temple,TX,76502 -Temple,TX,76504 -Bartlett,TX,76511 -Belton,TX,76513 -Buckholts,TX,76518 -Burlington,TX,76519 -Cameron,TX,76520 -Izoro,TX,76522 -Davilla,TX,76523 -Eddy,TX,76524 -Bee House,TX,76525 -Flat,TX,76526 -Florence,TX,76527 -Turnersville,TX,76528 -Granger,TX,76530 -Hamilton,TX,76531 -Holland,TX,76534 -Jarrell,TX,76537 -Jonesboro,TX,76538 -Kempner,TX,76539 -Killeen,TX,76541 -Harker Heights,TX,76542 -Harker Heights,TX,76543 -Fort Hood,TX,76544 -Lampasas,TX,76550 -Milano,TX,76556 -Moody,TX,76557 -Nolanville,TX,76559 -Oglesby,TX,76561 -Pottsville,TX,76565 -Purmela,TX,76566 -Rockdale,TX,76567 -Rogers,TX,76569 -Rosebud,TX,76570 -Salado,TX,76571 -Taylor,TX,76574 -Thorndale,TX,76577 -Thrall,TX,76578 -Troy,TX,76579 -Abbott,TX,76621 -Aquilla,TX,76622 -Axtell,TX,76624 -Blooming Grove,TX,76626 -Blum,TX,76627 -Bremond,TX,76629 -Bruceville,TX,76630 -Bynum,TX,76631 -Chilton,TX,76632 -China Spring,TX,76633 -Laguna Park,TX,76634 -Coolidge,TX,76635 -Covington,TX,76636 -Cranfills Gap,TX,76637 -Crawford,TX,76638 -Dawson,TX,76639 -Elm Mott,TX,76640 -Frost,TX,76641 -Groesbeck,TX,76642 -Hewitt,TX,76643 -Hillsboro,TX,76645 -Hubbard,TX,76648 -Iredell,TX,76649 -Italy,TX,76651 -Kopperl,TX,76652 -Kosse,TX,76653 -Lorena,TX,76655 -Lott,TX,76656 -Mc Gregor,TX,76657 -Malone,TX,76660 -Marlin,TX,76661 -Mart,TX,76664 -Meridian,TX,76665 -Mertens,TX,76666 -Mexia,TX,76667 -Milford,TX,76670 -Morgan,TX,76671 -Mount Calm,TX,76673 -Otto,TX,76675 -Penelope,TX,76676 -Prairie Hill,TX,76678 -Purdon,TX,76679 -Reagan,TX,76680 -Richland,TX,76681 -Riesel,TX,76682 -Thornton,TX,76687 -Valley Mills,TX,76689 -Walnut Springs,TX,76690 -West,TX,76691 -Bonanza,TX,76692 -Wortham,TX,76693 -Waco,TX,76701 -Bellmead,TX,76704 -Bellmead,TX,76705 -Waco,TX,76706 -Waco,TX,76707 -Waco,TX,76708 -Waco,TX,76710 -Beverly Hills,TX,76711 -Woodway,TX,76712 -Early,TX,76801 -Art,TX,76820 -Ballinger,TX,76821 -Bangs,TX,76823 -Bend,TX,76824 -Fife,TX,76825 -Brookesmith,TX,76827 -Burkett,TX,76828 -Castell,TX,76831 -Cherokee,TX,76832 -Coleman,TX,76834 -Doole,TX,76836 -Eden,TX,76837 -Fort Mc Kavett,TX,76841 -Fredonia,TX,76842 -Goldthwaite,TX,76844 -Gouldbusk,TX,76845 -Hext,TX,76848 -Junction,TX,76849 -76850,TX,76850 -Lohn,TX,76852 -Lometa,TX,76853 -London,TX,76854 -Mason,TX,76856 -May,TX,76857 -Melvin,TX,76858 -Menard,TX,76859 -Miles,TX,76861 -Millersview,TX,76862 -Mullin,TX,76864 -Norton,TX,76865 -Paint Rock,TX,76866 -Pear Valley,TX,76867 -Pontotoc,TX,76869 -Priddy,TX,76870 -Richland Springs,TX,76871 -Rochelle,TX,76872 -Rockwood,TX,76873 -Roosevelt,TX,76874 -Rowena,TX,76875 -San Saba,TX,76877 -Santa Anna,TX,76878 -Star,TX,76880 -Talpa,TX,76882 -Telegraph,TX,76883 -Valera,TX,76884 -Valley Spring,TX,76885 -Voca,TX,76887 -Leaday,TX,76888 -Zephyr,TX,76890 -San Angelo,TX,76901 -San Angelo,TX,76903 -San Angelo,TX,76904 -San Angelo,TX,76905 -Barnhart,TX,76930 -Best,TX,76932 -Bronte,TX,76933 -Carlsbad,TX,76934 -Christoval,TX,76935 -Eldorado,TX,76936 -Eola,TX,76937 -Mereta,TX,76940 -Mertzon,TX,76941 -Ozona,TX,76943 -Robert Lee,TX,76945 -Silver,TX,76949 -Sonora,TX,76950 -Sterling City,TX,76951 -Vancourt,TX,76955 -Wall,TX,76957 -Houston,TX,77002 -Houston,TX,77003 -Houston,TX,77004 -Houston,TX,77005 -Houston,TX,77006 -Houston,TX,77007 -Houston,TX,77008 -Houston,TX,77009 -Houston,TX,77010 -Houston,TX,77011 -Houston,TX,77012 -Houston,TX,77013 -Houston,TX,77014 -Houston,TX,77015 -Houston,TX,77016 -Houston,TX,77017 -Houston,TX,77018 -Houston,TX,77019 -Houston,TX,77020 -Houston,TX,77021 -Houston,TX,77022 -Houston,TX,77023 -Houston,TX,77024 -Houston,TX,77025 -Houston,TX,77026 -Houston,TX,77027 -Houston,TX,77028 -Jacinto City,TX,77029 -V A Hospital,TX,77030 -Houston,TX,77031 -Houston,TX,77032 -Houston,TX,77033 -Houston,TX,77034 -Houston,TX,77035 -Houston,TX,77036 -Houston,TX,77037 -Houston,TX,77038 -Houston,TX,77039 -Jersey Village,TX,77040 -Houston,TX,77041 -Houston,TX,77042 -Houston,TX,77043 -Houston,TX,77044 -Houston,TX,77045 -Houston,TX,77046 -Houston,TX,77047 -Houston,TX,77048 -Houston,TX,77049 -Houston,TX,77050 -Houston,TX,77051 -Houston,TX,77053 -Houston,TX,77054 -Houston,TX,77055 -Houston,TX,77056 -Houston,TX,77057 -Houston,TX,77058 -Houston,TX,77059 -Houston,TX,77060 -Houston,TX,77061 -Houston,TX,77062 -Houston,TX,77063 -Houston,TX,77064 -Houston,TX,77065 -Houston,TX,77066 -Houston,TX,77067 -Houston,TX,77068 -Houston,TX,77069 -Houston,TX,77070 -Houston,TX,77071 -Houston,TX,77072 -Houston,TX,77073 -Houston,TX,77074 -Houston,TX,77075 -Houston,TX,77076 -Houston,TX,77077 -Houston,TX,77078 -Houston,TX,77079 -Houston,TX,77080 -Houston,TX,77081 -Houston,TX,77082 -Houston,TX,77083 -Houston,TX,77084 -Houston,TX,77085 -Houston,TX,77086 -Houston,TX,77087 -Houston,TX,77088 -Houston,TX,77089 -Houston,TX,77090 -Houston,TX,77091 -Houston,TX,77092 -Houston,TX,77093 -Houston,TX,77094 -Houston,TX,77095 -Houston,TX,77096 -Houston,TX,77098 -Houston,TX,77099 -Conroe,TX,77301 -Grangerland,TX,77302 -Cut And Shoot,TX,77303 -Panorama Village,TX,77304 -Cleveland,TX,77327 -Coldspring,TX,77331 -Goodrich,TX,77335 -Huffman,TX,77336 -Humble,TX,77338 -Humble,TX,77339 -Huntsville,TX,77340 -Humble,TX,77345 -Humble,TX,77346 -Segno,TX,77351 -Magnolia,TX,77355 -Montgomery,TX,77356 -New Caney,TX,77357 -New Waverly,TX,77358 -Oakhurst,TX,77359 -Pinehurst,TX,77362 -Plantersville,TX,77363 -Pointblank,TX,77364 -Porter,TX,77365 -Shepherd,TX,77371 -Splendora,TX,77372 -Spring,TX,77373 -Tomball,TX,77375 -Willis,TX,77378 -Klein,TX,77379 -The Woodlands,TX,77380 -The Woodlands,TX,77381 -Conroe,TX,77384 -Conroe,TX,77385 -Spring,TX,77386 -Spring,TX,77388 -Spring,TX,77389 -Humble,TX,77396 -Bellaire,TX,77401 -Sargent,TX,77414 -Beasley,TX,77417 -Bellville,TX,77418 -Blessing,TX,77419 -Boling,TX,77420 -Brazoria,TX,77422 -Brookshire,TX,77423 -Chappell Hill,TX,77426 -Cypress,TX,77429 -Damon,TX,77430 -Danevang,TX,77432 -Cypress,TX,77433 -Eagle Lake,TX,77434 -East Bernard,TX,77435 -El Campo,TX,77437 -Elmaton,TX,77440 -Fulshear,TX,77441 -Garwood,TX,77442 -Guy,TX,77444 -Hempstead,TX,77445 -Hockley,TX,77447 -Park Row,TX,77449 -Park Row,TX,77450 -Louise,TX,77455 -Markham,TX,77456 -Matagorda,TX,77457 -Midfield,TX,77458 -Missouri City,TX,77459 -Needville,TX,77461 -Palacios,TX,77465 -Pledger,TX,77468 -Clodine,TX,77469 -Rosenberg,TX,77471 -Sealy,TX,77474 -Stafford,TX,77477 -Sugar Land,TX,77478 -Sugar Land,TX,77479 -Sweeny,TX,77480 -Van Vleck,TX,77482 -Wadsworth,TX,77483 -Waller,TX,77484 -Wallis,TX,77485 -West Columbia,TX,77486 -Wharton,TX,77488 -Missouri City,TX,77489 -Park Row,TX,77493 -Park Row,TX,77494 -Pasadena,TX,77502 -Pasadena,TX,77503 -Pasadena,TX,77504 -Pasadena,TX,77505 -Pasadena,TX,77506 -Pasadena,TX,77507 -Alta Loma,TX,77510 -Alvin,TX,77511 -Monroe City,TX,77514 -Angleton,TX,77515 -Arcadia,TX,77517 -Bacliff,TX,77518 -Batson,TX,77519 -Baytown,TX,77520 -Baytown,TX,77521 -Channelview,TX,77530 -Clute,TX,77531 -Barrett,TX,77532 -Danbury,TX,77534 -Dayton,TX,77535 -Deer Park,TX,77536 -Devers,TX,77538 -San Leon,TX,77539 -Quintana,TX,77541 -Fresno,TX,77545 -Friendswood,TX,77546 -Galena Park,TX,77547 -Galveston,TX,77550 -Galveston,TX,77551 -Galveston,TX,77554 -Hankamer,TX,77560 -Highlands,TX,77562 -Hitchcock,TX,77563 -Hull,TX,77564 -Clear Lake Shore,TX,77565 -Lake Jackson,TX,77566 -La Marque,TX,77568 -Shoreacres,TX,77571 -League City,TX,77573 -Ames,TX,77575 -Liverpool,TX,77577 -Manvel,TX,77578 -Pearland,TX,77581 -Rosharon,TX,77583 -Pearland,TX,77584 -Saratoga,TX,77585 -El Lago,TX,77586 -South Houston,TX,77587 -Texas City,TX,77590 -Texas City,TX,77591 -Wallisville,TX,77597 -Webster,TX,77598 -Bridge City,TX,77611 -Buna,TX,77612 -Deweyville,TX,77614 -Fred,TX,77616 -Groves,TX,77619 -Hamshire,TX,77622 -Hillister,TX,77624 -Kountze,TX,77625 -Nederland,TX,77627 -West Orange,TX,77630 -Port Acres,TX,77640 -Port Arthur,TX,77642 -Crystal Beach,TX,77650 -Port Neches,TX,77651 -Silsbee,TX,77656 -Sour Lake,TX,77659 -Spurger,TX,77660 -Vidor,TX,77662 -Warren,TX,77664 -Winnie,TX,77665 -Beaumont,TX,77701 -Beaumont,TX,77702 -Beaumont,TX,77703 -Beaumont,TX,77705 -Beaumont,TX,77706 -Beaumont,TX,77707 -Beaumont,TX,77708 -Beaumont,TX,77713 -Bryan,TX,77801 -Bryan,TX,77802 -Bryan,TX,77803 -Anderson,TX,77830 -Singleton,TX,77831 -Brenham,TX,77833 -Burton,TX,77835 -Caldwell,TX,77836 -Calvert,TX,77837 -College Station,TX,77840 -College Station,TX,77843 -College Station,TX,77845 -Concord,TX,77850 -Dime Box,TX,77853 -Franklin,TX,77856 -Hearne,TX,77859 -Iola,TX,77861 -Madisonville,TX,77864 -Marquez,TX,77865 -Navasota,TX,77868 -Hilltop Lakes,TX,77871 -North Zulch,TX,77872 -Richards,TX,77873 -Somerville,TX,77879 -Washington,TX,77880 -Victoria,TX,77901 -Victoria,TX,77904 -Bloomington,TX,77951 -Cuero,TX,77954 -Edna,TX,77957 -Ganado,TX,77962 -Goliad,TX,77963 -Hallettsville,TX,77964 -Inez,TX,77968 -Lolita,TX,77971 -Meyersville,TX,77974 -Moulton,TX,77975 -Port Lavaca,TX,77979 -Port O Connor,TX,77982 -Seadrift,TX,77983 -Shiner,TX,77984 -Tivoli,TX,77990 -Westhoff,TX,77994 -Yoakum,TX,77995 -Atascosa,TX,78002 -Bandera,TX,78003 -Bergheim,TX,78004 -Bigfoot,TX,78005 -Sisterdale,TX,78006 -Calliham,TX,78007 -Campbellton,TX,78008 -Castroville,TX,78009 -Camp Verde,TX,78010 -Charlotte,TX,78011 -Comfort,TX,78013 -Cotulla,TX,78014 -Devine,TX,78016 -Dilley,TX,78017 -Encinal,TX,78019 -Fowlerton,TX,78021 -George West,TX,78022 -Grey Forest,TX,78023 -Hunt,TX,78024 -Ingram,TX,78025 -Jourdanton,TX,78026 -Kendalia,TX,78027 -Kerrville,TX,78028 -La Coste,TX,78039 -Laredo,TX,78040 -Laredo,TX,78041 -Rio Bravo,TX,78043 -Lytle,TX,78052 -Mc Coy,TX,78053 -Medina,TX,78055 -Mico,TX,78056 -Moore,TX,78057 -Mountain Home,TX,78058 -Natalia,TX,78059 -Oakville,TX,78060 -Pearsall,TX,78061 -Lakehills,TX,78063 -Pleasanton,TX,78064 -Poteet,TX,78065 -Riomedina,TX,78066 -San Ygnacio,TX,78067 -Somerset,TX,78069 -Spring Branch,TX,78070 -Three Rivers,TX,78071 -Tilden,TX,78072 -Von Ormy,TX,78073 -Whitsett,TX,78075 -Zapata,TX,78076 -Adkins,TX,78101 -Beeville,TX,78102 -Cibolo,TX,78108 -Converse,TX,78109 -Ecleto,TX,78111 -Elmendorf,TX,78112 -Falls City,TX,78113 -Floresville,TX,78114 -Gillett,TX,78116 -Hobson,TX,78117 -Karnes City,TX,78118 -Kenedy,TX,78119 -La Vernia,TX,78121 -Leesville,TX,78122 -Mc Queeney,TX,78123 -Marion,TX,78124 -Canyon Lake,TX,78130 -Canyon Lake,TX,78132 -Canyon Lake,TX,78133 -Nixon,TX,78140 -Nordheim,TX,78141 -Poth,TX,78147 -Randolph A F B,TX,78148 -Randolph A F B,TX,78150 -Runge,TX,78151 -Saint Hedwig,TX,78152 -Selma,TX,78154 -Seguin,TX,78155 -Smiley,TX,78159 -Stockdale,TX,78160 -Sutherland Sprin,TX,78161 -Wetmore,TX,78163 -Yorktown,TX,78164 -Balcones Heights,TX,78201 -San Antonio,TX,78202 -San Antonio,TX,78203 -San Antonio,TX,78204 -San Antonio,TX,78205 -San Antonio,TX,78207 -San Antonio,TX,78208 -Alamo Heights,TX,78209 -San Antonio,TX,78210 -San Antonio,TX,78211 -Olmos Park,TX,78212 -Castle Hills,TX,78213 -San Antonio,TX,78214 -San Antonio,TX,78215 -San Antonio,TX,78216 -San Antonio,TX,78217 -San Antonio,TX,78218 -Kirby,TX,78219 -San Antonio,TX,78220 -San Antonio,TX,78221 -San Antonio,TX,78222 -San Antonio,TX,78223 -San Antonio,TX,78224 -San Antonio,TX,78225 -San Antonio,TX,78226 -San Antonio,TX,78227 -San Antonio,TX,78228 -San Antonio,TX,78229 -San Antonio,TX,78230 -Shavano Park,TX,78231 -Hollywood Park,TX,78232 -Live Oak,TX,78233 -Fort Sam Houston,TX,78234 -Brooks A F B,TX,78235 -Wilford Hall U S,TX,78236 -San Antonio,TX,78237 -Leon Valley,TX,78238 -Windcrest,TX,78239 -San Antonio,TX,78240 -Kelly A F B,TX,78241 -San Antonio,TX,78242 -San Antonio,TX,78244 -San Antonio,TX,78245 -Wetmore,TX,78247 -San Antonio,TX,78248 -San Antonio,TX,78249 -San Antonio,TX,78250 -San Antonio,TX,78251 -San Antonio,TX,78252 -San Antonio,TX,78253 -San Antonio,TX,78254 -San Antonio,TX,78255 -San Antonio,TX,78256 -San Antonio,TX,78257 -San Antonio,TX,78258 -San Antonio,TX,78259 -San Antonio,TX,78260 -San Antonio,TX,78261 -San Antonio,TX,78263 -San Antonio,TX,78264 -Garden Ridge,TX,78266 -Alice,TX,78332 -Aransas Pass,TX,78336 -Armstrong,TX,78338 -Bayside,TX,78340 -Bishop,TX,78343 -Bruni,TX,78344 -Concepcion,TX,78349 -Encino,TX,78353 -Falfurrias,TX,78355 -Freer,TX,78357 -Fulton,TX,78358 -Guerra,TX,78360 -Hebbronville,TX,78361 -Ingleside,TX,78362 -Kingsville Naval,TX,78363 -Mathis,TX,78368 -Mirando City,TX,78369 -Odem,TX,78370 -Orange Grove,TX,78372 -Portland,TX,78374 -Premont,TX,78375 -Realitos,TX,78376 -Refugio,TX,78377 -Riviera,TX,78379 -Robstown,TX,78380 -Rockport,TX,78382 -Sandia,TX,78383 -San Diego,TX,78384 -Sarita,TX,78385 -Sinton,TX,78387 -Skidmore,TX,78389 -Taft,TX,78390 -Tynan,TX,78391 -Woodsboro,TX,78393 -Corpus Christi,TX,78401 -Corpus Christi,TX,78402 -Corpus Christi,TX,78404 -Corpus Christi,TX,78405 -Corpus Christi,TX,78406 -Corpus Christi,TX,78407 -Corpus Christi,TX,78408 -Corpus Christi,TX,78409 -Corpus Christi,TX,78410 -Corpus Christi,TX,78411 -Corpus Christi,TX,78412 -Corpus Christi,TX,78413 -Corpus Christi,TX,78414 -Corpus Christi,TX,78415 -Corpus Christi,TX,78416 -Corpus Christi,TX,78417 -Corpus Christi,TX,78418 -Corpus Christi,TX,78419 -Corpus Christi,TX,78473 -Mcallen,TX,78501 -Mcallen,TX,78503 -Mcallen,TX,78504 -Alamo,TX,78516 -Brownsville,TX,78520 -Brownsville,TX,78521 -Delmita,TX,78536 -Donna,TX,78537 -Monte Alto,TX,78538 -Edinburg,TX,78539 -Garciasville,TX,78547 -Grulla,TX,78548 -Hargill,TX,78549 -Harlingen,TX,78550 -Harlingen,TX,78552 -Hidalgo,TX,78557 -La Feria,TX,78559 -Linn,TX,78563 -Bayview,TX,78566 -Lyford,TX,78569 -Mercedes,TX,78570 -Alton,TX,78572 -Pharr,TX,78577 -Port Isabel,TX,78578 -Raymondville,TX,78580 -Rio Grande City,TX,78582 -Rio Hondo,TX,78583 -Roma,TX,78584 -San Benito,TX,78586 -San Isidro,TX,78588 -San Juan,TX,78589 -San Perlita,TX,78590 -Santa Elena,TX,78591 -Santa Rosa,TX,78593 -Sebastian,TX,78594 -Sullivan City,TX,78595 -Weslaco,TX,78596 -South Padre Isla,TX,78597 -Port Mansfield,TX,78598 -Bastrop,TX,78602 -Bebe,TX,78603 -Bertram,TX,78605 -Blanco,TX,78606 -Bluffton,TX,78607 -Briggs,TX,78608 -Buchanan Dam,TX,78609 -Buda,TX,78610 -Burnet,TX,78611 -Cedar Creek,TX,78612 -Cedar Park,TX,78613 -Cost,TX,78614 -Coupland,TX,78615 -Dale,TX,78616 -Del Valle,TX,78617 -Doss,TX,78618 -Driftwood,TX,78619 -Dripping Springs,TX,78620 -Elgin,TX,78621 -Fischer,TX,78623 -Fredericksburg,TX,78624 -Georgetown,TX,78626 -Andice,TX,78628 -Gonzales,TX,78629 -Harper,TX,78631 -Harwood,TX,78632 -Hutto,TX,78634 -Hye,TX,78635 -Johnson City,TX,78636 -Kingsbury,TX,78638 -Kingsland,TX,78639 -Uhland,TX,78640 -Leander,TX,78641 -Liberty Hill,TX,78642 -Sunrise Beach,TX,78643 -Lockhart,TX,78644 -Jonestown,TX,78645 -Luling,TX,78648 -Mc Dade,TX,78650 -Manchaca,TX,78652 -Manor,TX,78653 -Cypress Mill,TX,78654 -Martindale,TX,78655 -Maxwell,TX,78656 -Paige,TX,78659 -Pflugerville,TX,78660 -Red Rock,TX,78662 -Round Mountain,TX,78663 -Round Rock,TX,78664 -Sandy,TX,78665 -San Marcos,TX,78666 -Spicewood,TX,78669 -Albert,TX,78671 -Tow,TX,78672 -Willow City,TX,78675 -Wimberley,TX,78676 -Wrightsboro,TX,78677 -Round Rock,TX,78681 -Austin,TX,78701 -Austin,TX,78702 -Austin,TX,78703 -Austin,TX,78704 -Austin,TX,78705 -Austin,TX,78717 -Austin,TX,78719 -Austin,TX,78721 -Austin,TX,78722 -Austin,TX,78723 -Austin,TX,78724 -Austin,TX,78725 -Austin,TX,78726 -Austin,TX,78727 -Austin,TX,78728 -Austin,TX,78729 -Austin,TX,78730 -Austin,TX,78731 -Austin,TX,78732 -Austin,TX,78733 -Lakeway,TX,78734 -Austin,TX,78735 -Austin,TX,78736 -Austin,TX,78737 -Austin,TX,78738 -Austin,TX,78739 -Austin,TX,78741 -Austin,TX,78742 -Austin,TX,78744 -Austin,TX,78745 -West Lake Hills,TX,78746 -Creedmoor,TX,78747 -Austin,TX,78748 -Austin,TX,78749 -Austin,TX,78750 -Austin,TX,78751 -Austin,TX,78752 -Austin,TX,78753 -Austin,TX,78754 -Austin,TX,78756 -Austin,TX,78757 -Austin,TX,78758 -Austin,TX,78759 -Uvalde,TX,78801 -Asherton,TX,78827 -Barksdale,TX,78828 -Batesville,TX,78829 -Big Wells,TX,78830 -Brackettville,TX,78832 -Camp Wood,TX,78833 -Carrizo Springs,TX,78834 -Comstock,TX,78837 -Concan,TX,78838 -Crystal City,TX,78839 -Laughlin A F B,TX,78840 -D Hanis,TX,78850 -Dryden,TX,78851 -Eagle Pass,TX,78852 -Dunlay,TX,78861 -Knippa,TX,78870 -La Pryor,TX,78872 -Leakey,TX,78873 -Spofford,TX,78877 -Rio Frio,TX,78879 -Rocksprings,TX,78880 -Sabinal,TX,78881 -Tarpley,TX,78883 -Utopia,TX,78884 -Vanderpool,TX,78885 -Yancey,TX,78886 -Bleiblerville,TX,78931 -Carmine,TX,78932 -Cat Spring,TX,78933 -Columbus,TX,78934 -Alleyton,TX,78935 -Ellinger,TX,78938 -Fayetteville,TX,78940 -Flatonia,TX,78941 -Giddings,TX,78942 -Industry,TX,78944 -La Grange,TX,78945 -Ledbetter,TX,78946 -Lexington,TX,78947 -Lincoln,TX,78948 -Muldoon,TX,78949 -New Ulm,TX,78950 -Rosanky,TX,78953 -Round Top,TX,78954 -Schulenburg,TX,78956 -Smithville,TX,78957 -Waelder,TX,78959 -Weimar,TX,78962 -West Point,TX,78963 -Adrian,TX,79001 -Booker,TX,79005 -Phillips,TX,79007 -Bovina,TX,79009 -Briscoe,TX,79011 -Glazier,TX,79014 -Canyon,TX,79015 -Channing,TX,79018 -Claude,TX,79019 -Dalhart,TX,79022 -Dimmitt,TX,79027 -Dumas,TX,79029 -Earth,TX,79031 -Follett,TX,79034 -Black,TX,79035 -Fritch,TX,79036 -Groom,TX,79039 -Gruver,TX,79040 -Hale Center,TX,79041 -Happy,TX,79042 -Hart,TX,79043 -Hartley,TX,79044 -Hereford,TX,79045 -Higgins,TX,79046 -Kress,TX,79052 -Lipscomb,TX,79056 -Kellerville,TX,79057 -Miami,TX,79059 -Mobeetie,TX,79061 -Morse,TX,79062 -Nazareth,TX,79063 -Olton,TX,79064 -Pampa,TX,79065 -Panhandle,TX,79068 -Perryton,TX,79070 -Plainview,TX,79072 -Twitty,TX,79079 -Skellytown,TX,79080 -Spearman,TX,79081 -Springlake,TX,79082 -Stinnett,TX,79083 -Stratford,TX,79084 -Summerfield,TX,79085 -Sunray,TX,79086 -Texline,TX,79087 -Vigo Park,TX,79088 -Vega,TX,79092 -Wayside,TX,79094 -Wellington,TX,79095 -Wheeler,TX,79096 -White Deer,TX,79097 -Wildorado,TX,79098 -Amarillo,TX,79101 -Amarillo,TX,79102 -Amarillo,TX,79103 -Amarillo,TX,79104 -Amarillo,TX,79106 -Amarillo,TX,79107 -Amarillo,TX,79108 -Amarillo,TX,79109 -Amarillo,TX,79110 -Amarillo,TX,79111 -Amarillo,TX,79118 -Amarillo,TX,79119 -Amarillo,TX,79121 -Amarillo,TX,79124 -Kirkland,TX,79201 -Afton,TX,79220 -Chillicothe,TX,79225 -Clarendon,TX,79226 -Crowell,TX,79227 -Dickens,TX,79229 -Dodson,TX,79230 -Dumont,TX,79232 -Flomot,TX,79234 -Floydada,TX,79235 -Hedley,TX,79237 -Lakeview,TX,79239 -Lockney,TX,79241 -Mcadoo,TX,79243 -Matador,TX,79244 -Memphis,TX,79245 -Chalk,TX,79248 -Petersburg,TX,79250 -Quail,TX,79251 -Quanah,TX,79252 -Quitaque,TX,79255 -Roaring Springs,TX,79256 -Silverton,TX,79257 -Tell,TX,79259 -Truscott,TX,79260 -Turkey,TX,79261 -Abernathy,TX,79311 -Amherst,TX,79312 -Anton,TX,79313 -Brownfield,TX,79316 -Bula,TX,79320 -Crosbyton,TX,79322 -Denver City,TX,79323 -Enochs,TX,79324 -Farwell,TX,79325 -Fieldton,TX,79326 -Idalou,TX,79329 -Lamesa,TX,79331 -Levelland,TX,79336 -Littlefield,TX,79339 -Loop,TX,79342 -Lorenzo,TX,79343 -Maple,TX,79344 -Meadow,TX,79345 -Morton,TX,79346 -Muleshoe,TX,79347 -Odonnell,TX,79351 -Pep,TX,79353 -Plains,TX,79355 -Post,TX,79356 -Cone,TX,79357 -Ropesville,TX,79358 -Seagraves,TX,79359 -Seminole,TX,79360 -Shallowater,TX,79363 -Ransom Canyon,TX,79364 -Ransom Canyon,TX,79366 -Spur,TX,79370 -Sudan,TX,79371 -Tahoka,TX,79373 -Tokio,TX,79376 -Welch,TX,79377 -Whiteface,TX,79379 -Wilson,TX,79381 -Wolfforth,TX,79382 -Lubbock,TX,79401 -Lubbock,TX,79403 -Lubbock,TX,79404 -Lubbock,TX,79405 -Lubbock,TX,79406 -Lubbock,TX,79407 -Lubbock,TX,79410 -Lubbock,TX,79411 -Lubbock,TX,79412 -Lubbock,TX,79413 -Lubbock,TX,79414 -Lubbock,TX,79415 -Lubbock,TX,79416 -Lubbock,TX,79423 -Lubbock,TX,79424 -Reese Air Force,TX,79489 -Anson,TX,79501 -Aspermont,TX,79502 -Avoca,TX,79503 -Baird,TX,79504 -Blackwell,TX,79506 -Clyde,TX,79510 -Coahoma,TX,79511 -Colorado City,TX,79512 -Fluvanna,TX,79517 -Girard,TX,79518 -Goldsboro,TX,79519 -Hamlin,TX,79520 -Haskell,TX,79521 -Hawley,TX,79525 -Hermleigh,TX,79526 -Ira,TX,79527 -Jayton,TX,79528 -Knox City,TX,79529 -Lawn,TX,79530 -Loraine,TX,79532 -Lueders,TX,79533 -Mc Caulley,TX,79534 -Maryneal,TX,79535 -Merkel,TX,79536 -Nolan,TX,79537 -Novice,TX,79538 -O Brien,TX,79539 -Old Glory,TX,79540 -Ovalo,TX,79541 -79542,TX,79542 -Roby,TX,79543 -Rochester,TX,79544 -Roscoe,TX,79545 -Rotan,TX,79546 -Rule,TX,79547 -Sagerton,TX,79548 -Dermott,TX,79549 -Stamford,TX,79553 -Sweetwater,TX,79556 -Sylvester,TX,79560 -Trent,TX,79561 -Tuscola,TX,79562 -Tye,TX,79563 -Westbrook,TX,79565 -Wingate,TX,79566 -Winters,TX,79567 -Abilene,TX,79601 -Abilene,TX,79602 -Abilene,TX,79603 -Abilene,TX,79605 -Abilene,TX,79606 -Dyess Afb,TX,79607 -Midland,TX,79701 -Midland,TX,79703 -Midland,TX,79705 -Midland,TX,79707 -Ackerly,TX,79713 -Andrews,TX,79714 -Balmorhea,TX,79718 -Barstow,TX,79719 -Vealmoor,TX,79720 -Coyanosa,TX,79730 -Crane,TX,79731 -Fort Davis,TX,79734 -Fort Stockton,TX,79735 -Gail,TX,79738 -Garden City,TX,79739 -Goldsmith,TX,79741 -Grandfalls,TX,79742 -Imperial,TX,79743 -Iraan,TX,79744 -Kermit,TX,79745 -Knott,TX,79748 -Lenorah,TX,79749 -Mc Camey,TX,79752 -Mentone,TX,79754 -Midkiff,TX,79755 -Monahans,TX,79756 -Gardendale,TX,79758 -Odessa,TX,79761 -Odessa,TX,79762 -Odessa,TX,79763 -Odessa,TX,79764 -Odessa,TX,79765 -Odessa,TX,79766 -Verhalen,TX,79772 -Pyote,TX,79777 -Sheffield,TX,79781 -Stanton,TX,79782 -Tarzan,TX,79783 -Wink,TX,79789 -Anthony,TX,79821 -Alpine,TX,79830 -Big Bend Nationa,TX,79834 -Canutillo,TX,79835 -Clint,TX,79836 -Dell City,TX,79837 -Fort Hancock,TX,79839 -Marathon,TX,79842 -Marfa,TX,79843 -Presidio,TX,79845 -Salt Flat,TX,79847 -Sierra Blanca,TX,79851 -Terlingua,TX,79852 -Valentine,TX,79854 -Kent,TX,79855 -El Paso,TX,79901 -El Paso,TX,79902 -El Paso,TX,79903 -El Paso,TX,79904 -El Paso,TX,79905 -Fort Bliss,TX,79906 -El Paso,TX,79907 -Fort Bliss,TX,79908 -El Paso,TX,79912 -El Paso,TX,79915 -Fort Bliss,TX,79916 -El Paso,TX,79922 -El Paso,TX,79924 -El Paso,TX,79925 -Horizon City,TX,79927 -El Paso,TX,79930 -El Paso,TX,79932 -El Paso,TX,79934 -El Paso,TX,79935 -El Paso,TX,79936 -Altamont,UT,84001 -Altonah,UT,84002 -American Fork,UT,84003 -Alpine,UT,84004 -Bingham Canyon,UT,84006 -Bluebell,UT,84007 -Bountiful,UT,84010 -Bridgeland,UT,84012 -Cedar Valley,UT,84013 -Centerville,UT,84014 -Clearfield,UT,84015 -Coalville,UT,84017 -Croydon,UT,84018 -Draper,UT,84020 -Duchesne,UT,84021 -Dugway,UT,84022 -Dutch John,UT,84023 -Farmington,UT,84025 -Fort Duchesne,UT,84026 -Garden City,UT,84028 -Grantsville,UT,84029 -Hanna,UT,84031 -Heber City,UT,84032 -Jensen,UT,84035 -Kamas,UT,84036 -Kaysville,UT,84037 -Laketown,UT,84038 -Lapoint,UT,84039 -Layton,UT,84040 -Layton,UT,84041 -Lindon,UT,84042 -Lehi,UT,84043 -Magna,UT,84044 -Manila,UT,84046 -Midvale,UT,84047 -Midway,UT,84049 -Morgan,UT,84050 -Mountain Home,UT,84051 -Myton,UT,84052 -Neola,UT,84053 -North Salt Lake,UT,84054 -Hill Air Force B,UT,84056 -Orem,UT,84057 -Vineyard,UT,84058 -Park City,UT,84060 -Peoa,UT,84061 -Pleasant Grove,UT,84062 -Randlett,UT,84063 -Randolph,UT,84064 -Lark,UT,84065 -Roosevelt,UT,84066 -Roy,UT,84067 -Rush Valley,UT,84069 -Sandy,UT,84070 -Stockton,UT,84071 -Tabiona,UT,84072 -Talmage,UT,84073 -Tooele,UT,84074 -Syracuse,UT,84075 -Tridell,UT,84076 -Vernal,UT,84078 -Vernon,UT,84080 -Wallsburg,UT,84082 -Trout Creek,UT,84083 -West Jordan,UT,84084 -Whiterocks,UT,84085 -Woodruff,UT,84086 -Woods Cross,UT,84087 -West Jordan,UT,84088 -Alta,UT,84092 -Sandy,UT,84093 -Sandy,UT,84094 -Salt Lake City,UT,84101 -Salt Lake City,UT,84102 -Salt Lake City,UT,84103 -Salt Lake City,UT,84104 -Salt Lake City,UT,84105 -Salt Lake City,UT,84106 -Murray,UT,84107 -Salt Lake City,UT,84108 -Salt Lake City,UT,84109 -Salt Lake City,UT,84111 -Salt Lake City,UT,84112 -Salt Lake City,UT,84113 -South Salt Lake,UT,84115 -Salt Lake City,UT,84116 -Holladay,UT,84117 -Kearns,UT,84118 -West Valley City,UT,84119 -West Valley City,UT,84120 -Cottonwood,UT,84121 -Murray,UT,84123 -Holladay,UT,84124 -Brigham City,UT,84302 -Clarkston,UT,84305 -Collinston,UT,84306 -Corinne,UT,84307 -Cornish,UT,84308 -Deweyville,UT,84309 -Eden,UT,84310 -Fielding,UT,84311 -Garland,UT,84312 -Grouse Creek,UT,84313 -Honeyville,UT,84314 -Hooper,UT,84315 -Huntsville,UT,84317 -Hyrum,UT,84319 -Lewiston,UT,84320 -Logan,UT,84321 -Mantua,UT,84324 -Mendon,UT,84325 -Paradise,UT,84328 -Park Valley,UT,84329 -Providence,UT,84332 -Richmond,UT,84333 -Smithfield,UT,84335 -Snowville,UT,84336 -Tremonton,UT,84337 -Trenton,UT,84338 -Wellsville,UT,84339 -Willard,UT,84340 -Ogden,UT,84401 -Ogden,UT,84403 -Ogden,UT,84404 -Ogden,UT,84405 -Ogden,UT,84414 -Price,UT,84501 -Aneth,UT,84510 -Blanding,UT,84511 -East Carbon,UT,84520 -Ferron,UT,84523 -Green River,UT,84525 -Helper,UT,84526 -Huntington,UT,84528 -Mexican Hat,UT,84531 -Moab,UT,84532 -Bullfrog,UT,84533 -Monticello,UT,84535 -Monument Valley,UT,84536 -Thompson,UT,84540 -Wellington,UT,84542 -Provo,UT,84601 -Provo,UT,84604 -Provo,UT,84606 -Axtell,UT,84621 -Centerfield,UT,84622 -Delta,UT,84624 -Ephraim,UT,84627 -Eureka,UT,84628 -Fairview,UT,84629 -Fayette,UT,84630 -Fillmore,UT,84631 -Gunnison,UT,84634 -Hinckley,UT,84635 -Manti,UT,84642 -Mona,UT,84645 -Mount Pleasant,UT,84647 -Nephi,UT,84648 -Oasis,UT,84650 -Payson,UT,84651 -Woodland Hills,UT,84653 -Salina,UT,84654 -Genola,UT,84655 -Spanish Fork,UT,84660 -Springville,UT,84663 -Mapleton,UT,84664 -Venice,UT,84701 -Alton,UT,84710 -Antimony,UT,84712 -Beaver,UT,84713 -Beryl,UT,84714 -Boulder,UT,84716 -Bryce Canyon,UT,84717 -Brian Head,UT,84719 -Pintura,UT,84720 -Central,UT,84722 -Escalante,UT,84726 -Garrison,UT,84728 -Glendale,UT,84729 -Greenville,UT,84731 -Hanksville,UT,84734 -Hurricane,UT,84737 -Joseph,UT,84739 -Big Water,UT,84741 -Kingston,UT,84743 -Fremont,UT,84747 -Marysvale,UT,84750 -Milford,UT,84751 -Modena,UT,84753 -Austin,UT,84754 -Mount Carmel,UT,84755 -Newcastle,UT,84756 -Orderville,UT,84758 -Panguitch,UT,84759 -Paragonah,UT,84760 -Parowan,UT,84761 -Sevier,UT,84766 -St George,UT,84770 -Summit,UT,84772 -Teasdale,UT,84773 -Torrey,UT,84775 -Washington,UT,84780 -Pine Valley,UT,84781 -Veyo,UT,84782 -Dammeron Valley,UT,84783 -White River Junc,VT,5001 -Bethel,VT,5032 -Bradford,VT,5033 -Bridgewater,VT,5034 -Bridgewater Corn,VT,5035 -Brookfield,VT,5036 -Brownsville,VT,5037 -Chelsea,VT,5038 -Corinth,VT,5039 -East Corinth,VT,5040 -East Randolph,VT,5041 -Ryegate,VT,5042 -East Thetford,VT,5043 -Fairlee,VT,5045 -Groton,VT,5046 -Hartland,VT,5048 -Newbury,VT,5051 -North Hartland,VT,5052 -North Pomfret,VT,5053 -Norwich,VT,5055 -Plymouth,VT,5056 -Post Mills,VT,5058 -Randolph,VT,5060 -Randolph Center,VT,5061 -Reading,VT,5062 -Sharon,VT,5065 -South Pomfret,VT,5067 -South Royalton,VT,5068 -South Ryegate,VT,5069 -South Strafford,VT,5070 -South Woodstock,VT,5071 -Strafford,VT,5072 -Taftsville,VT,5073 -Thetford Center,VT,5075 -Tunbridge,VT,5077 -Vershire,VT,5079 -Wells River,VT,5081 -West Fairlee,VT,5083 -West Hartford,VT,5084 -West Topsham,VT,5086 -Windsor,VT,5089 -Woodstock,VT,5091 -Bellows Falls,VT,5101 -Cambridgeport,VT,5141 -Cavendish,VT,5142 -Chester,VT,5143 -Grafton,VT,5146 -Bromley Mtn,VT,5148 -Ludlow,VT,5149 -North Springfiel,VT,5150 -Perkinsville,VT,5151 -Peru,VT,5152 -Proctorsville,VT,5153 -Saxtons River,VT,5154 -South Londonderr,VT,5155 -Springfield,VT,5156 -Weston,VT,5161 -Bennington,VT,5201 -Arlington,VT,5250 -Dorset,VT,5251 -East Arlington,VT,5252 -East Dorset,VT,5253 -Manchester Cente,VT,5255 -North Bennington,VT,5257 -North Pownal,VT,5260 -Pownal,VT,5261 -Shaftsbury,VT,5262 -Brattleboro,VT,5301 -Bondville,VT,5340 -East Dover,VT,5341 -Jacksonville,VT,5342 -Jamaica,VT,5343 -Newfane,VT,5345 -Putney,VT,5346 -Readsboro,VT,5350 -Stamford,VT,5352 -Townshend,VT,5353 -Vernon,VT,5354 -Wardsboro,VT,5355 -Mount Snow,VT,5356 -West Halifax,VT,5358 -West Townshend,VT,5359 -West Wardsboro,VT,5360 -Whitingham,VT,5361 -Williamsville,VT,5362 -Wilmington,VT,5363 -Burlington,VT,5401 -South Burlington,VT,5403 -Winooski,VT,5404 -Univ Of Vermont,VT,5405 -Alburg,VT,5440 -Bakersfield,VT,5441 -Bristol,VT,5443 -Cambridge,VT,5444 -Charlotte,VT,5445 -Colchester,VT,5446 -East Berkshire,VT,5447 -East Fairfield,VT,5448 -Enosburg Falls,VT,5450 -Essex Junction,VT,5452 -Fairfax,VT,5454 -Fairfield,VT,5455 -Ferrisburg,VT,5456 -Franklin,VT,5457 -Grand Isle,VT,5458 -Highgate Center,VT,5459 -Hinesburg,VT,5461 -Huntington,VT,5462 -Isle La Motte,VT,5463 -Smugglers Notch,VT,5464 -Jericho Center,VT,5465 -Milton,VT,5468 -Montgomery Cente,VT,5471 -New Haven,VT,5472 -North Ferrisburg,VT,5473 -North Hero,VT,5474 -Richford,VT,5476 -Bolton Valley,VT,5477 -Saint Albans,VT,5478 -Shelburne,VT,5482 -Sheldon,VT,5483 -South Hero,VT,5486 -Starksboro,VT,5487 -Swanton,VT,5488 -Underhill,VT,5489 -Vergennes,VT,5491 -Waterville,VT,5492 -Westford,VT,5494 -Williston,VT,5495 -Montpelier,VT,5602 -Adamant,VT,5640 -Barre,VT,5641 -Cabot,VT,5647 -Calais,VT,5648 -East Barre,VT,5649 -East Calais,VT,5650 -East Montpelier,VT,5651 -Eden,VT,5652 -Eden Mills,VT,5653 -Graniteville,VT,5654 -Hyde Park,VT,5655 -Johnson,VT,5656 -Marshfield,VT,5658 -Moretown,VT,5660 -Morrisville,VT,5661 -Riverton,VT,5663 -North Montpelier,VT,5666 -Plainfield,VT,5667 -Roxbury,VT,5669 -Stowe,VT,5672 -Waitsfield,VT,5673 -Sugarbush Valley,VT,5674 -Washgtin,VT,5675 -Waterbury,VT,5676 -Waterbury Center,VT,5677 -Williamstown,VT,5679 -Wolcott,VT,5680 -Woodbury,VT,5681 -Worcester,VT,5682 -Rutland,VT,5701 -Belmont,VT,5730 -Hubbardton,VT,5732 -Brandon,VT,5733 -Bridport,VT,5734 -Castleton,VT,5735 -Center Rutland,VT,5736 -Chittenden,VT,5737 -Cuttingsville,VT,5738 -Danby,VT,5739 -East Wallingford,VT,5742 -Fair Haven,VT,5743 -Florence,VT,5744 -Gaysville,VT,5746 -Granville,VT,5747 -Hancock,VT,5748 -Killington,VT,5751 -Bread Loaf,VT,5753 -Middletown Sprin,VT,5757 -Mount Holly,VT,5758 -North Clarendon,VT,5759 -Orwell,VT,5760 -Pawlet,VT,5761 -Pittsfield,VT,5762 -Pittsford,VT,5763 -Poultney,VT,5764 -Proctor,VT,5765 -Ripton,VT,5766 -Rochester,VT,5767 -Salisbury,VT,5769 -Shoreham,VT,5770 -Stockbridge,VT,5772 -Wallingford,VT,5773 -Wells,VT,5774 -West Pawlet,VT,5775 -West Rupert,VT,5776 -West Rutland,VT,5777 -Leicester Juncti,VT,5778 -Saint Johnsbury,VT,5819 -Albany,VT,5820 -Barnet,VT,5821 -Barton,VT,5822 -Concord,VT,5824 -Coventry,VT,5825 -Craftsbury,VT,5826 -Craftsbury Commo,VT,5827 -Danville,VT,5828 -Derby,VT,5829 -Derby Line,VT,5830 -East Burke,VT,5832 -East Charleston,VT,5833 -East Hardwick,VT,5836 -East Haven,VT,5837 -Glover,VT,5839 -Greensboro,VT,5841 -Greensboro Bend,VT,5842 -Hardwick,VT,5843 -Irasburg,VT,5845 -Island Pond,VT,5846 -Lowell,VT,5847 -Lyndon Center,VT,5850 -Lyndonville,VT,5851 -Morgan Ctr,VT,5853 -Newport,VT,5855 -Newport Center,VT,5857 -North Concord,VT,5858 -Jay Peak,VT,5859 -Orleans,VT,5860 -Peacham,VT,5862 -Sheffield,VT,5866 -Sutton,VT,5867 -Troy,VT,5868 -West Burke,VT,5871 -West Charleston,VT,5872 -West Danville,VT,5873 -Westfield,VT,5874 -West Glover,VT,5875 -Averill,VT,5901 -Beecher Falls,VT,5902 -Canaan,VT,5903 -Gilman,VT,5904 -Guildhall,VT,5905 -Lunenburg,VT,5906 -Norton,VT,5907 -Aldie,VA,22001 -Amissville,VA,22002 -Annandale,VA,22003 -Arcola,VA,22010 -Ashburn,VA,22011 -Bluemont,VA,22012 -Bristow,VA,22013 -Broad Run,VA,22014 -Burke,VA,22015 -Catharpin,VA,22018 -Catlett,VA,22019 -Centreville,VA,22020 -Chantilly,VA,22021 -Clifton,VA,22024 -Delaplane,VA,22025 -Dumfries,VA,22026 -Dunn Loring,VA,22027 -Fairfax,VA,22030 -Fairfax,VA,22031 -Fairfax,VA,22032 -Fairfax,VA,22033 -Fairfax Station,VA,22039 -Baileys Crossroa,VA,22041 -Mosby,VA,22042 -Pimmit,VA,22043 -Seven Corners,VA,22044 -Falls Church,VA,22046 -Fort Belvoir,VA,22060 -Gainesville,VA,22065 -Great Falls,VA,22066 -Hamilton,VA,22068 -Haymarket,VA,22069 -Herndon,VA,22070 -Herndon,VA,22071 -Leesburg,VA,22075 -Mason Neck,VA,22079 -Lovettsville,VA,22080 -Lake Anne,VA,22090 -Reston,VA,22091 -Reston,VA,22094 -Mc Lean,VA,22101 -West Mclean,VA,22102 -Manassas,VA,22110 -Manassas Park,VA,22111 -Marshall,VA,22115 -Middleburg,VA,22117 -Nokesville,VA,22123 -Oakton,VA,22124 -Paeonian Springs,VA,22129 -Paris,VA,22130 -Hillsboro,VA,22132 -Quantico,VA,22134 -Round Hill,VA,22141 -Springfield,VA,22150 -North Springfiel,VA,22151 -West Springfield,VA,22152 -Springfield,VA,22153 -Sterling,VA,22170 -The Plains,VA,22171 -Triangle,VA,22172 -Upperville,VA,22176 -Vienna,VA,22180 -Vienna,VA,22181 -Vienna,VA,22182 -Airlie,VA,22186 -Waterford,VA,22190 -Woodbridge,VA,22191 -Lakeridge,VA,22192 -Dale City,VA,22193 -Arlington,VA,22201 -Arlington,VA,22202 -Arlington,VA,22203 -Arlington,VA,22204 -Arlington,VA,22205 -Arlington,VA,22206 -Arlington,VA,22207 -Arlington,VA,22209 -Arlington,VA,22211 -Arlington,VA,22213 -Alexandria,VA,22301 -Alexandria,VA,22302 -Jefferson Manor,VA,22303 -Alexandria,VA,22304 -Alexandria,VA,22305 -Community,VA,22306 -Belle View,VA,22307 -Wellington,VA,22308 -Engleside,VA,22309 -Franconia,VA,22310 -Alexandria,VA,22311 -Alexandria,VA,22312 -Alexandria,VA,22314 -Fredericksburg,VA,22401 -Falmouth,VA,22405 -Fredericksburg,VA,22406 -Fredericksburg,VA,22407 -Fredericksburg,VA,22408 -Bowling Green,VA,22427 -Burgess,VA,22432 -Burr Hill,VA,22433 -Callao,VA,22435 -Caret,VA,22436 -Center Cross,VA,22437 -Champlain,VA,22438 -Chance,VA,22439 -Oak Grove,VA,22443 -Dahlgren,VA,22448 -Howertons,VA,22454 -Farnham,VA,22460 -Hague,VA,22469 -Heathsville,VA,22473 -Hustle,VA,22476 -Irvington,VA,22480 -Kilmarnock,VA,22482 -King George,VA,22485 -Kinsale,VA,22488 -Lancaster,VA,22503 -Laneview,VA,22504 -Locust Grove,VA,22508 -Loretto,VA,22509 -Lottsburg,VA,22511 -Milford,VA,22514 -Montross,VA,22520 -Partlow,VA,22534 -Port Royal,VA,22535 -Rappahannock Aca,VA,22538 -Reedville,VA,22539 -Rhoadesville,VA,22542 -Ruther Glen,VA,22546 -Snell,VA,22553 -Stafford,VA,22554 -Supply,VA,22559 -Tappahannock,VA,22560 -Unionville,VA,22567 -Mine Run,VA,22568 -Nomini Grove,VA,22572 -Weems,VA,22576 -Windmill Point,VA,22578 -Wicomico Church,VA,22579 -Woodford,VA,22580 -Winchester,VA,22601 -Browntown,VA,22610 -Berryville,VA,22611 -Boyce,VA,22620 -Clear Brook,VA,22624 -Whitacre,VA,22625 -Flint Hill,VA,22627 -Front Royal,VA,22630 -Gore,VA,22637 -Hume,VA,22639 -Huntly,VA,22640 -Lebanon Church,VA,22641 -Linden,VA,22642 -Markham,VA,22643 -Maurertown,VA,22644 -Middletown,VA,22645 -Reliance,VA,22649 -Rileyville,VA,22650 -Saint Davids Chu,VA,22652 -Star Tannery,VA,22654 -Stephens City,VA,22655 -Stephenson,VA,22656 -Strasburg,VA,22657 -Toms Brook,VA,22660 -White Post,VA,22663 -Woodstock,VA,22664 -Raccoon Ford,VA,22701 -Aroda,VA,22709 -Morrisville,VA,22712 -Boston,VA,22713 -Brandy Station,VA,22714 -Brightwood,VA,22715 -Castleton,VA,22716 -Elkwood,VA,22718 -Etlan,VA,22719 -Goldvein,VA,22720 -Haywood,VA,22722 -Jeffersonton,VA,22724 -Leon,VA,22725 -Lignum,VA,22726 -Aylor,VA,22727 -Midland,VA,22728 -Mitchells,VA,22729 -Pratts,VA,22731 -Radiant,VA,22732 -Rapidan,VA,22733 -Remington,VA,22734 -Reva,VA,22735 -Richardsville,VA,22736 -Rixeyville,VA,22737 -Uno,VA,22738 -Sperryville,VA,22740 -Stevensburg,VA,22741 -Sumerduck,VA,22742 -Syria,VA,22743 -Viewtown,VA,22746 -Washington,VA,22747 -Woodville,VA,22749 -Harrisonburg,VA,22801 -Basye,VA,22810 -Bergton,VA,22811 -Bridgewater,VA,22812 -Broadway,VA,22815 -Criders,VA,22820 -Montezuma,VA,22821 -Edinburg,VA,22824 -Elkton,VA,22827 -Fulks Run,VA,22830 -Hinton,VA,22831 -Keezletown,VA,22832 -Linville,VA,22834 -Luray,VA,22835 -Mc Gaheysville,VA,22840 -Mount Crawford,VA,22841 -Conicville,VA,22842 -Mount Solon,VA,22843 -New Market,VA,22844 -Orkney Springs,VA,22845 -Montevideo,VA,22846 -Shenandoah Caver,VA,22847 -Shenandoah,VA,22849 -Stanley,VA,22851 -Timberville,VA,22853 -Charlottesville,VA,22901 -University,VA,22903 -Afton,VA,22920 -Tye River,VA,22922 -Burnleys,VA,22923 -Cobham,VA,22929 -Covesville,VA,22931 -Yancey Mills,VA,22932 -Boonesville,VA,22935 -Earlysville,VA,22936 -Esmont,VA,22937 -Faber,VA,22938 -Woodrow Wilson,VA,22939 -Mission Home,VA,22940 -Cashs Corner,VA,22942 -Greenwood,VA,22943 -Keene,VA,22946 -Boyd Tavern,VA,22947 -Locust Dale,VA,22948 -Lovingston,VA,22949 -Lowesville,VA,22951 -Sherando,VA,22952 -Wintergreen,VA,22958 -Alberene,VA,22959 -Montford,VA,22960 -Bybee,VA,22963 -Piney River,VA,22964 -Roseland,VA,22967 -Advance Mills,VA,22968 -Schuyler,VA,22969 -Rockfish,VA,22971 -Somerset,VA,22972 -Geer,VA,22973 -Troy,VA,22974 -Waynesboro,VA,22980 -Amelia Court Hou,VA,23002 -Arvonia,VA,23004 -Ashland,VA,23005 -Aylett,VA,23009 -Barhamsville,VA,23011 -23013,VA,23013 -Beaverdam,VA,23015 -Beaverlett,VA,23016 -23020,VA,23020 -Bohannon,VA,23021 -Bremo Bluff,VA,23022 -Bruington,VA,23023 -Bumpass,VA,23024 -Miles,VA,23025 -Tamworth,VA,23027 -Cauthornville,VA,23029 -Charles City,VA,23030 -Church View,VA,23032 -Cologne,VA,23037 -Columbia,VA,23038 -Crozier,VA,23039 -Cumberland,VA,23040 -23042,VA,23042 -Deltaville,VA,23043 -Diggs,VA,23045 -Doswell,VA,23047 -Dutton,VA,23050 -Fork Union,VA,23055 -Glen Allen,VA,23060 -Pinero,VA,23061 -Gloucester Point,VA,23062 -Goochland,VA,23063 -Gum Spring,VA,23065 -Gwynn,VA,23066 -Hanover,VA,23069 -Hardyville,VA,23070 -Hartfield,VA,23071 -Hayes,VA,23072 -Highland Springs,VA,23075 -Jamaica,VA,23079 -James Store,VA,23080 -Jetersville,VA,23083 -Kents Store,VA,23084 -King And Queen C,VA,23085 -King William,VA,23086 -Lanexa,VA,23089 -Little Plymouth,VA,23091 -Locust Hill,VA,23092 -Louisa,VA,23093 -Dabneys,VA,23102 -Manakin Sabot,VA,23103 -Manquin,VA,23106 -Mascot,VA,23108 -Mathews,VA,23109 -Shanghai,VA,23110 -Mechanicsville,VA,23111 -Midlothian,VA,23112 -Midlothian,VA,23113 -23114,VA,23114 -Mineral,VA,23117 -Mobjack,VA,23118 -Moon,VA,23119 -Moseley,VA,23120 -New Canton,VA,23123 -New Kent,VA,23124 -New Point,VA,23125 -Newtown,VA,23126 -North,VA,23128 -Oilville,VA,23129 -Onemo,VA,23130 -23137,VA,23137 -Bavon,VA,23138 -Powhatan,VA,23139 -Providence Forge,VA,23140 -Quinton,VA,23141 -Rockville,VA,23146 -Indian Neck,VA,23148 -Saluda,VA,23149 -Sandston,VA,23150 -Sandy Hook,VA,23153 -Plain View,VA,23156 -23157,VA,23157 -Stevensville,VA,23161 -Shadow,VA,23163 -Toano,VA,23168 -Syringa,VA,23169 -Remlik,VA,23175 -Wake,VA,23176 -Walkerton,VA,23177 -Warner,VA,23179 -Water View,VA,23180 -West Point,VA,23181 -Merrimac,VA,23185 -Williamsburg,VA,23188 -Montpelier,VA,23192 -Richmond,VA,23219 -Richmond,VA,23220 -Richmond,VA,23221 -Richmond,VA,23222 -Richmond,VA,23223 -Richmond,VA,23224 -Richmond,VA,23225 -Richmond,VA,23226 -Bellevue,VA,23227 -Lakeside,VA,23228 -Regency,VA,23229 -West End,VA,23230 -Richmond,VA,23231 -Ridge,VA,23233 -Ampthill,VA,23234 -Bon Air,VA,23235 -Richmond,VA,23236 -Richmond,VA,23237 -Richmond,VA,23294 -Accomac,VA,23301 -Assawoman,VA,23302 -Belle Haven,VA,23306 -Birdsnest,VA,23307 -Bloxom,VA,23308 -Cape Charles,VA,23310 -Carrollton,VA,23314 -Carrsville,VA,23315 -Chesapeake,VA,23320 -Bowers Hill,VA,23321 -Fentress,VA,23322 -Chesapeake,VA,23323 -Chesapeake,VA,23324 -Chesapeake,VA,23325 -Chincoteague,VA,23336 -Wallops Island,VA,23337 -Exmore,VA,23350 -Franktown,VA,23354 -Greenbackville,VA,23356 -Greenbush,VA,23357 -Hallwood,VA,23359 -Horntown,VA,23395 -Horsey,VA,23396 -Jenkins Bridge,VA,23399 -Locustville,VA,23404 -Machipongo,VA,23405 -Mappsville,VA,23407 -Mears,VA,23409 -Melfa,VA,23410 -New Church,VA,23415 -Oak Hall,VA,23416 -Onancock,VA,23417 -Onley,VA,23418 -Painter,VA,23420 -Parksley,VA,23421 -Sanford,VA,23426 -Smithfield,VA,23430 -Suffolk,VA,23432 -Suffolk,VA,23433 -Suffolk,VA,23434 -Suffolk,VA,23435 -Suffolk,VA,23436 -Suffolk,VA,23437 -Suffolk,VA,23438 -Tangier,VA,23440 -Temperanceville,VA,23442 -Virginia Beach,VA,23451 -Virginia Beach,VA,23452 -Virginia Beach,VA,23454 -Virginia Beach,VA,23455 -Virginia Beach,VA,23456 -Blackwater Bridg,VA,23457 -Virginia Beach,VA,23459 -Virginia Beach,VA,23462 -Virginia Beach,VA,23464 -Walters,VA,23481 -Windsor,VA,23487 -Norfolk,VA,23502 -Norfolk,VA,23503 -Norfolk,VA,23504 -Norfolk,VA,23505 -Norfolk,VA,23507 -Norfolk,VA,23508 -Norfolk,VA,23509 -Norfolk,VA,23510 -Fleet,VA,23511 -Norfolk,VA,23513 -Norfolk,VA,23517 -Norfolk,VA,23518 -Naval Amphibious,VA,23521 -Norfolk,VA,23523 -Newport News,VA,23601 -Newport News,VA,23602 -Newport News,VA,23603 -Newport News,VA,23604 -Newport News,VA,23605 -Newport News,VA,23606 -Newport News,VA,23607 -Hampton,VA,23651 -Hampton,VA,23661 -Poquoson,VA,23662 -Hampton,VA,23663 -Hampton,VA,23664 -Hampton,VA,23665 -Hampton,VA,23666 -Hampton,VA,23669 -Yorktown,VA,23690 -Grafton,VA,23692 -Tabb,VA,23693 -Seaford,VA,23696 -Portsmouth,VA,23701 -Portsmouth,VA,23702 -Portsmouth,VA,23703 -Portsmouth,VA,23704 -Portsmouth,VA,23707 -Portsmouth,VA,23709 -Fort Lee,VA,23801 -Ettrick,VA,23803 -Petersburg,VA,23805 -Alberta,VA,23821 -Blackstone,VA,23824 -Boykins,VA,23827 -Branchville,VA,23828 -Capron,VA,23829 -Carson,VA,23830 -Chester,VA,23831 -Chesterfield,VA,23832 -Church Road,VA,23833 -Colonial Heights,VA,23834 -Courtland,VA,23837 -Dendron,VA,23839 -Dewitt,VA,23840 -Dinwiddie,VA,23841 -Disputanta,VA,23842 -Dolphin,VA,23843 -Drewryville,VA,23844 -Ebony,VA,23845 -Elberon,VA,23846 -Emporia,VA,23847 -Ammon,VA,23850 -Franklin,VA,23851 -Freeman,VA,23856 -Gasburg,VA,23857 -Handsom,VA,23859 -Hopewell,VA,23860 -Ivor,VA,23866 -Jarratt,VA,23867 -Triplet,VA,23868 -Mc Kenney,VA,23872 -Newsoms,VA,23874 -Prince George,VA,23875 -Rawlings,VA,23876 -Sedley,VA,23878 -Skippers,VA,23879 -Spring Grove,VA,23881 -Stony Creek,VA,23882 -Surry,VA,23883 -Sutherland,VA,23885 -Valentines,VA,23887 -Wakefield,VA,23888 -Warfield,VA,23889 -Waverly,VA,23890 -White Plains,VA,23893 -Wilsons,VA,23894 -Yale,VA,23897 -Zuni,VA,23898 -Farmville,VA,23901 -Baskerville,VA,23915 -Boydton,VA,23917 -Bracey,VA,23919 -Brodnax,VA,23920 -Buckingham,VA,23921 -Burkeville,VA,23922 -Charlotte Court,VA,23923 -Chase City,VA,23924 -Clarksville,VA,23927 -Crewe,VA,23930 -Cullen,VA,23934 -Sprouses Corner,VA,23936 -Drakes Branch,VA,23937 -Dundas,VA,23938 -Green Bay,VA,23942 -Kenbridge,VA,23944 -Keysville,VA,23947 -Blackridge,VA,23950 -Lunenburg,VA,23952 -Meherrin,VA,23954 -Pamplin,VA,23958 -Phenix,VA,23959 -Prospect,VA,23960 -Randolph,VA,23962 -Red House,VA,23963 -Red Oak,VA,23964 -Rice,VA,23966 -Saxe,VA,23967 -Skipwith,VA,23968 -South Hill,VA,23970 -23973,VA,23973 -Victoria,VA,23974 -Wylliesburg,VA,23976 -Roanoke,VA,24011 -Roanoke,VA,24012 -Roanoke,VA,24013 -Roanoke,VA,24014 -Roanoke,VA,24015 -Roanoke,VA,24016 -Roanoke,VA,24017 -Cave Spring,VA,24018 -Hollins,VA,24019 -Ararat,VA,24053 -Axton,VA,24054 -Bassett,VA,24055 -Bent Mountain,VA,24059 -Whitethorne,VA,24060 -Blue Ridge,VA,24064 -Boones Mill,VA,24065 -Lithia,VA,24066 -Callaway,VA,24067 -Cascade,VA,24069 -Catawba,VA,24070 -Simpsons,VA,24072 -Christiansburg,VA,24073 -Claudville,VA,24076 -Cloverdale,VA,24077 -Collinsville,VA,24078 -Copper Hill,VA,24079 -Critz,VA,24082 -Daleville,VA,24083 -Dublin,VA,24084 -Eagle Rock,VA,24085 -Eggleston,VA,24086 -Ironto,VA,24087 -Ferrum,VA,24088 -Fieldale,VA,24089 -Fincastle,VA,24090 -Alum Ridge,VA,24091 -Gladehill,VA,24092 -Glen Lyn,VA,24093 -Goldbond,VA,24094 -Goodview,VA,24095 -Hardy,VA,24101 -Henry,VA,24102 -Huddleston,VA,24104 -Indian Valley,VA,24105 -Martinsville,VA,24112 -Meadows Of Dan,VA,24120 -Moneta,VA,24121 -Montvale,VA,24122 -Narrows,VA,24124 -New Castle,VA,24127 -Newport,VA,24128 -Paint Bank,VA,24131 -Patrick Springs,VA,24133 -Pearisburg,VA,24134 -Mountain Lake,VA,24136 -Penhook,VA,24137 -Pilot,VA,24138 -Pittsville,VA,24139 -Fairlawn,VA,24141 -Rich Creek,VA,24147 -Ridgeway,VA,24148 -Riner,VA,24149 -Ripplemead,VA,24150 -Rocky Mount,VA,24151 -Salem,VA,24153 -Sandy Level,VA,24161 -Shawsville,VA,24162 -Spencer,VA,24165 -Staffordsville,VA,24167 -Stanleytown,VA,24168 -Stuart,VA,24171 -Thaxton,VA,24174 -Troutville,VA,24175 -Union Hall,VA,24176 -Stewartsville,VA,24179 -Wirtz,VA,24184 -Woolwine,VA,24185 -Bristol,VA,24201 -Abingdon,VA,24210 -Exeter,VA,24216 -Bee,VA,24217 -Big Stone Gap,VA,24219 -Birchleaf,VA,24220 -Blackwater,VA,24221 -Castlewood,VA,24224 -Cleveland,VA,24225 -Clinchco,VA,24226 -Clintwood,VA,24228 -Coeburn,VA,24230 -Damascus,VA,24236 -Dante,VA,24237 -Davenport,VA,24239 -Dryden,VA,24243 -Clinchport,VA,24244 -Dungannon,VA,24245 -Ewing,VA,24248 -Fort Blackmore,VA,24250 -Gate City,VA,24251 -Haysi,VA,24256 -Hiltons,VA,24258 -Council,VA,24260 -Jonesville,VA,24263 -Keokee,VA,24265 -Lebanon,VA,24266 -Mc Clure,VA,24269 -Mendota,VA,24270 -Nickelsville,VA,24271 -Nora,VA,24272 -Norton,VA,24273 -Pennington Gap,VA,24277 -Pound,VA,24279 -Rosedale,VA,24280 -Rose Hill,VA,24281 -Saint Charles,VA,24282 -Saint Paul,VA,24283 -Stonega,VA,24285 -Trammel,VA,24289 -Weber City,VA,24290 -Whitetop,VA,24292 -Wise,VA,24293 -Pulaski,VA,24301 -Atkins,VA,24311 -Austinville,VA,24312 -Barren Springs,VA,24313 -Bastian,VA,24314 -Bland,VA,24315 -Broadford,VA,24316 -Cana,VA,24317 -Ceres,VA,24318 -Chilhowie,VA,24319 -Cripple Creek,VA,24322 -Crockett,VA,24323 -Draper,VA,24324 -Dugspur,VA,24325 -Elk Creek,VA,24326 -Fancy Gap,VA,24328 -24329,VA,24329 -Fries,VA,24330 -Galax,VA,24333 -Glade Spring,VA,24340 -Hillsville,VA,24343 -Allisonia,VA,24347 -Independence,VA,24348 -Ivanhoe,VA,24350 -Lambsburg,VA,24351 -Laurel Fork,VA,24352 -Marion,VA,24354 -Foster Falls,VA,24360 -Meadowview,VA,24361 -Mouth Of Wilson,VA,24363 -Rocky Gap,VA,24366 -Rural Retreat,VA,24368 -Saltville,VA,24370 -Seven Mile Ford,VA,24373 -Speedwell,VA,24374 -Sugar Grove,VA,24375 -Tannersville,VA,24377 -Trout Dale,VA,24378 -Willis,VA,24380 -Woodlawn,VA,24381 -Wytheville,VA,24382 -Woodrum,VA,24401 -Blue Grass,VA,24413 -Buena Vista,VA,24416 -Churchville,VA,24421 -Clifton Forge,VA,24422 -Alleghany,VA,24426 -Craigsville,VA,24430 -Crimora,VA,24431 -Deerfield,VA,24432 -Doe Hill,VA,24433 -Fairfield,VA,24435 -Fort Defiance,VA,24437 -Goshen,VA,24439 -Greenville,VA,24440 -Grottoes,VA,24441 -Head Waters,VA,24442 -Hightown,VA,24444 -Hot Springs,VA,24445 -Lexington,VA,24450 -Mc Dowell,VA,24458 -Middlebrook,VA,24459 -Millboro Spring,VA,24460 -Montebello,VA,24464 -Monterey,VA,24465 -Mount Sidney,VA,24467 -Mustoe,VA,24468 -Port Republic,VA,24471 -Raphine,VA,24472 -Rockbridge Baths,VA,24473 -Spottswood,VA,24475 -Stuarts Draft,VA,24477 -Swoope,VA,24479 -Verona,VA,24482 -Vesuvius,VA,24483 -Bolar,VA,24484 -West Augusta,VA,24485 -Weyers Cave,VA,24486 -Burnsville,VA,24487 -Lynchburg,VA,24501 -Timberlake,VA,24502 -Lynchburg,VA,24503 -Lynchburg,VA,24504 -Altavista,VA,24517 -Alton,VA,24520 -Amherst,VA,24521 -Appomattox,VA,24522 -Bedford,VA,24523 -Big Island,VA,24526 -Blairs,VA,24527 -Brookneal,VA,24528 -Buffalo Junction,VA,24529 -Callands,VA,24530 -Chatham,VA,24531 -Clover,VA,24534 -Coleman Falls,VA,24536 -Concord,VA,24538 -Crystal Hill,VA,24539 -Danville,VA,24540 -Danville,VA,24541 -Dry Fork,VA,24549 -Evington,VA,24550 -Forest,VA,24551 -Gladstone,VA,24553 -Gladys,VA,24554 -Glasgow,VA,24555 -Goode,VA,24556 -Gretna,VA,24557 -Halifax,VA,24558 -Howardsville,VA,24562 -Hurt,VA,24563 -Java,VA,24565 -Keeling,VA,24566 -Long Island,VA,24569 -Lowry,VA,24570 -Lynch Station,VA,24571 -Madison Heights,VA,24572 -Monroe,VA,24574 -Lennig,VA,24577 -Natural Bridge,VA,24578 -Natural Bridge S,VA,24579 -Nelson,VA,24580 -Ringgold,VA,24586 -Rustburg,VA,24588 -Scottsburg,VA,24589 -Scottsville,VA,24590 -South Boston,VA,24592 -Spout Spring,VA,24593 -Sutherlin,VA,24594 -Ingram,VA,24597 -Virgilina,VA,24598 -Wingina,VA,24599 -Bandy,VA,24602 -Conaway,VA,24603 -Bluefield,VA,24605 -Cedar Bluff,VA,24609 -Falls Mills,VA,24613 -Grundy,VA,24614 -Hurley,VA,24620 -Jewell Valley,VA,24622 -Mavisdale,VA,24627 -Tiptop,VA,24630 -Patterson,VA,24631 -24633,VA,24633 -Pilgrims Knob,VA,24634 -Pounding Mill,VA,24637 -Raven,VA,24639 -Richlands,VA,24641 -Rowe,VA,24646 -Swords Creek,VA,24649 -Tazewell,VA,24651 -Vansant,VA,24656 -Whitewood,VA,24657 -Algona,WA,98001 -Auburn,WA,98002 -Federal Way,WA,98003 -Beaux Arts,WA,98004 -Bellevue,WA,98005 -Bellevue,WA,98006 -Bellevue,WA,98007 -Bellevue,WA,98008 -Black Diamond,WA,98010 -Bothell,WA,98011 -Mill Creek,WA,98012 -Carnation,WA,98014 -Duvall,WA,98019 -Woodway,WA,98020 -Bothell,WA,98021 -Enumclaw,WA,98022 -Federal Way,WA,98023 -Fall City,WA,98024 -Edmonds,WA,98026 -Issaquah,WA,98027 -Kent,WA,98031 -Kent,WA,98032 -Kirkland,WA,98033 -Kirkland,WA,98034 -Brier,WA,98036 -Lynnwood,WA,98037 -Maple Valley,WA,98038 -Mercer Island,WA,98040 -Kent,WA,98042 -Mountlake Terrac,WA,98043 -North Bend,WA,98045 -Pacific,WA,98047 -Ravensdale,WA,98051 -Redmond,WA,98052 -Redmond,WA,98053 -Renton,WA,98055 -Renton,WA,98056 -Renton,WA,98058 -Renton,WA,98059 -Snoqualmie,WA,98065 -Vashon,WA,98070 -Woodinville,WA,98072 -Seattle,WA,98101 -Seattle,WA,98102 -Seattle,WA,98103 -Seattle,WA,98104 -Seattle,WA,98105 -Seattle,WA,98106 -Seattle,WA,98107 -Tukwila,WA,98108 -Seattle,WA,98109 -Bainbridge Islan,WA,98110 -Seattle,WA,98112 -Seattle,WA,98115 -Seattle,WA,98116 -Seattle,WA,98117 -Seattle,WA,98118 -Seattle,WA,98119 -Seattle,WA,98121 -Seattle,WA,98122 -Seattle,WA,98125 -Seattle,WA,98126 -Seattle,WA,98133 -Seattle,WA,98134 -Seattle,WA,98136 -Seattle,WA,98144 -Burien,WA,98146 -Normandy Park,WA,98148 -Lk Forest Park,WA,98155 -Seatac,WA,98158 -Normandy Park,WA,98166 -Tukwila,WA,98168 -Seattle,WA,98177 -Tukwila,WA,98178 -Tukwila,WA,98188 -Des Moines,WA,98198 -Seattle,WA,98199 -Everett,WA,98201 -Everett,WA,98203 -Everett,WA,98204 -Everett,WA,98205 -Everett,WA,98208 -Acme,WA,98220 -Anacortes,WA,98221 -Arlington,WA,98223 -Baring,WA,98224 -Bellingham,WA,98225 -Bellingham,WA,98226 -Blaine,WA,98230 -Bow,WA,98232 -Burlington,WA,98233 -Clinton,WA,98236 -Concrete,WA,98237 -Coupeville,WA,98239 -Custer,WA,98240 -Darrington,WA,98241 -Glacier,WA,98244 -Eastsound,WA,98245 -Everson,WA,98247 -Ferndale,WA,98248 -Freeland,WA,98249 -Friday Harbor,WA,98250 -Granite Falls,WA,98252 -Greenbank,WA,98253 -La Conner,WA,98257 -Lake Stevens,WA,98258 -Langley,WA,98260 -Lopez,WA,98261 -Lummi Island,WA,98262 -Lyman,WA,98263 -Lynden,WA,98264 -Marysville,WA,98270 -Marysville,WA,98271 -Monroe,WA,98272 -Mount Vernon,WA,98273 -Mukilteo,WA,98275 -Oak Harbor,WA,98277 -Whidbey Island N,WA,98278 -Olga,WA,98279 -Point Roberts,WA,98281 -Rockport,WA,98283 -Sedro Woolley,WA,98284 -Skykomish,WA,98288 -Snohomish,WA,98290 -Stanwood,WA,98292 -Sultan,WA,98294 -Sumas,WA,98295 -Anderson Island,WA,98303 -Ashford,WA,98304 -Beaver,WA,98305 -Bremerton,WA,98310 -Bremerton,WA,98312 -Puget Sound Nava,WA,98314 -Silverdale,WA,98315 -Brinnon,WA,98320 -Buckley,WA,98321 -Carbonado,WA,98323 -Chimacum,WA,98325 -Clallam Bay,WA,98326 -Eatonville,WA,98328 -Gig Harbor,WA,98329 -Elbe,WA,98330 -Forks,WA,98331 -Gig Harbor,WA,98332 -Fox Island,WA,98333 -Gig Harbor,WA,98335 -Glenoma,WA,98336 -Graham,WA,98338 -Port Hadlock,WA,98339 -Hansville,WA,98340 -Kingston,WA,98346 -Home,WA,98349 -Longbranch,WA,98351 -Milton,WA,98354 -Mineral,WA,98355 -Morton,WA,98356 -Nordland,WA,98358 -Olalla,WA,98359 -Orting,WA,98360 -Packwood,WA,98361 -Port Angeles,WA,98362 -Port Ludlow,WA,98365 -South Park Villa,WA,98366 -Port Townsend,WA,98368 -Poulsbo,WA,98370 -Puyallup,WA,98371 -Puyallup,WA,98372 -Puyallup,WA,98373 -Puyallup,WA,98374 -Quilcene,WA,98376 -Randle,WA,98377 -Seabeck,WA,98380 -Sekiu,WA,98381 -Sequim,WA,98382 -Silverdale,WA,98383 -Spanaway,WA,98387 -Steilacoom,WA,98388 -Bonney Lake,WA,98390 -Suquamish,WA,98392 -Vaughn,WA,98394 -Tacoma,WA,98402 -Tacoma,WA,98403 -Tacoma,WA,98404 -Tacoma,WA,98405 -Tacoma,WA,98406 -Tacoma,WA,98407 -Tacoma,WA,98408 -Tacoma,WA,98409 -Tacoma,WA,98421 -Tacoma,WA,98422 -Fife,WA,98424 -Fort Lewis,WA,98433 -Lakewood Center,WA,98439 -Tacoma,WA,98443 -Parkland,WA,98444 -Parkland,WA,98445 -Parkland,WA,98446 -Tacoma,WA,98465 -Fircrest,WA,98466 -Tacoma,WA,98467 -Lakewood Center,WA,98498 -Lakewood Center,WA,98499 -Olympia,WA,98501 -Olympia,WA,98502 -Lacey,WA,98503 -Lacey,WA,98506 -Aberdeen,WA,98520 -Allyn,WA,98524 -Amanda Park,WA,98526 -Bear Creek,WA,98528 -Centralia,WA,98531 -Chehalis,WA,98532 -Cinebar,WA,98533 -Copalis Beach,WA,98535 -Copalis Crossing,WA,98536 -Cosmopolis,WA,98537 -Curtis,WA,98538 -Elma,WA,98541 -Ethel,WA,98542 -Grapeview,WA,98546 -Grayland,WA,98547 -Hoodsport,WA,98548 -Hoquiam,WA,98550 -Humptulips,WA,98552 -Lilliwaup,WA,98555 -Mc Cleary,WA,98557 -Matlock,WA,98560 -Moclips,WA,98562 -Montesano,WA,98563 -Mossyrock,WA,98564 -Oakville,WA,98568 -Ocean City,WA,98569 -Onalaska,WA,98570 -Pacific Beach,WA,98571 -Pe Ell,WA,98572 -Quinault,WA,98575 -Rainier,WA,98576 -Raymond,WA,98577 -Rochester,WA,98579 -Roy,WA,98580 -Ryderwood,WA,98581 -Salkum,WA,98582 -Shelton,WA,98584 -Silver Creek,WA,98585 -South Bend,WA,98586 -Taholah,WA,98587 -Tahuya,WA,98588 -Tenino,WA,98589 -Tokeland,WA,98590 -Toledo,WA,98591 -Union,WA,98592 -Vader,WA,98593 -Westport,WA,98595 -Winlock,WA,98596 -Yelm,WA,98597 -Amboy,WA,98601 -Appleton,WA,98602 -Ariel,WA,98603 -Battle Ground,WA,98604 -Cook,WA,98605 -Brush Prairie,WA,98606 -Camas,WA,98607 -Carson,WA,98610 -Castle Rock,WA,98611 -Cathlamet,WA,98612 -Centerville,WA,98613 -Cougar,WA,98616 -Glenwood,WA,98619 -Goldendale,WA,98620 -Grays River,WA,98621 -Ilwaco,WA,98624 -Kalama,WA,98625 -Kelso,WA,98626 -Klickitat,WA,98628 -La Center,WA,98629 -Long Beach,WA,98631 -Longview,WA,98632 -Lyle,WA,98635 -Naselle,WA,98638 -Ocean Park,WA,98640 -Ridgefield,WA,98642 -Rosburg,WA,98643 -Silverlake,WA,98645 -Skamokawa,WA,98647 -Stevenson,WA,98648 -Toutle,WA,98649 -Trout Lake,WA,98650 -Underwood,WA,98651 -Vancouver,WA,98660 -Vancouver,WA,98661 -Orchards,WA,98662 -Vancouver,WA,98663 -Vancouver,WA,98664 -Hazel Dell,WA,98665 -Wahkiacus,WA,98670 -Washougal,WA,98671 -White Salmon,WA,98672 -Woodland,WA,98674 -Yacolt,WA,98675 -Vancouver,WA,98682 -Cascade Park,WA,98684 -Felida,WA,98685 -Vancouver,WA,98686 -Wenatchee,WA,98801 -East Wenatchee,WA,98802 -Brewster,WA,98812 -Bridgeport,WA,98813 -Carlton,WA,98814 -Cashmere,WA,98815 -Chelan,WA,98816 -Entiat,WA,98822 -Ephrata,WA,98823 -Leavenworth,WA,98826 -Loomis,WA,98827 -Malaga,WA,98828 -Mansfield,WA,98830 -Manson,WA,98831 -Marlin,WA,98832 -Mazama,WA,98833 -Methow,WA,98834 -Moses Lake,WA,98837 -Okanogan,WA,98840 -Omak,WA,98841 -Orondo,WA,98843 -Oroville,WA,98844 -Palisades,WA,98845 -Pateros,WA,98846 -Peshastin,WA,98847 -Quincy,WA,98848 -Riverside,WA,98849 -Rock Island,WA,98850 -Soap Lake,WA,98851 -Stehekin,WA,98852 -Tonasket,WA,98855 -Twisp,WA,98856 -Warden,WA,98857 -Waterville,WA,98858 -Wauconda,WA,98859 -Winthrop,WA,98862 -Terrace Heights,WA,98901 -Yakima,WA,98902 -Union Gap,WA,98903 -Wide Hollow,WA,98908 -Cle Elum,WA,98922 -Cowiche,WA,98923 -Ellensburg,WA,98926 -Grandview,WA,98930 -Granger,WA,98932 -Harrah,WA,98933 -Mabton,WA,98935 -Moxee,WA,98936 -White Pass,WA,98937 -Outlook,WA,98938 -Selah,WA,98942 -Sunnyside,WA,98944 -Thorp,WA,98946 -Tieton,WA,98947 -Toppenish,WA,98948 -Wapato,WA,98951 -White Swan,WA,98952 -Zillah,WA,98953 -Chattaroy,WA,99003 -Cheney,WA,99004 -Colbert,WA,99005 -Deer Park,WA,99006 -Edwall,WA,99008 -Elk,WA,99009 -Fairchild Air Fo,WA,99011 -Fairfield,WA,99012 -Ford,WA,99013 -Greenacres,WA,99016 -Lamont,WA,99017 -Latah,WA,99018 -Liberty Lake,WA,99019 -Mead,WA,99021 -Espanola,WA,99022 -Mica,WA,99023 -Newman Lake,WA,99025 -Nine Mile Falls,WA,99026 -Otis Orchards,WA,99027 -Reardan,WA,99029 -Rockford,WA,99030 -Spangle,WA,99031 -Sprague,WA,99032 -Tekoa,WA,99033 -Tumtum,WA,99034 -Valleyford,WA,99036 -Veradale,WA,99037 -Waverly,WA,99039 -Wellpinit,WA,99040 -Addy,WA,99101 -Almira,WA,99103 -Benge,WA,99105 -Boyds,WA,99107 -Chewelah,WA,99109 -Clayton,WA,99110 -Colfax,WA,99111 -Colton,WA,99113 -Colville,WA,99114 -Coulee City,WA,99115 -Coulee Dam,WA,99116 -Creston,WA,99117 -Curlew,WA,99118 -Cusick,WA,99119 -Danville,WA,99121 -Davenport,WA,99122 -Electric City,WA,99123 -Endicott,WA,99125 -Evans,WA,99126 -Farmington,WA,99128 -Fruitland,WA,99129 -Garfield,WA,99130 -Gifford,WA,99131 -Grand Coulee,WA,99133 -Harrington,WA,99134 -Hartline,WA,99135 -Hunters,WA,99137 -Inchelium,WA,99138 -Ione,WA,99139 -Keller,WA,99140 -Kettle Falls,WA,99141 -Lacrosse,WA,99143 -Lincoln,WA,99147 -Loon Lake,WA,99148 -Malo,WA,99150 -Metaline Falls,WA,99153 -Newport,WA,99156 -Northport,WA,99157 -Oakesdale,WA,99158 -Odessa,WA,99159 -Palouse,WA,99161 -Pullman,WA,99163 -Republic,WA,99166 -Rice,WA,99167 -Ritzville,WA,99169 -Rosalia,WA,99170 -Saint John,WA,99171 -Springdale,WA,99173 -Thornton,WA,99176 -Uniontown,WA,99179 -Usk,WA,99180 -Valley,WA,99181 -Wilbur,WA,99185 -Spokane,WA,99201 -Spokane,WA,99202 -Spokane,WA,99203 -Spokane,WA,99204 -Spokane,WA,99205 -Spokane,WA,99206 -Spokane,WA,99207 -Spokane,WA,99208 -Spokane,WA,99212 -Spokane,WA,99216 -Spokane,WA,99218 -Spokane,WA,99223 -Pasco,WA,99301 -Benton City,WA,99320 -Beverly,WA,99321 -Bickleton,WA,99322 -College Place,WA,99324 -Connell,WA,99326 -Cunningham,WA,99327 -Dayton,WA,99328 -Eltopia,WA,99330 -Kennewick,WA,99336 -Kennewick,WA,99337 -Lind,WA,99341 -Mesa,WA,99343 -Mattawa,WA,99344 -Paterson,WA,99345 -Plymouth,WA,99346 -Pomeroy,WA,99347 -Prescott,WA,99348 -Prosser,WA,99350 -Richland,WA,99352 -Roosevelt,WA,99356 -Royal City,WA,99357 -Lowden,WA,99360 -Waitsburg,WA,99361 -Walla Walla,WA,99362 -Washtucna,WA,99371 -Anatone,WA,99401 -Asotin,WA,99402 -Clarkston,WA,99403 -Bluewell,WV,24701 -Athens,WV,24712 -Beeson,WV,24714 -Bramwell,WV,24715 -Herndon,WV,24726 -Kegley,WV,24731 -Lashmeet,WV,24733 -Dott,WV,24736 -Elgood,WV,24740 -Duhring,WV,24747 -Welch,WV,24801 -Mc Dowell,WV,24810 -Brenton,WV,24818 -Vallscreek,WV,24819 -Clear Fork,WV,24822 -Coal Mountain,WV,24823 -Cyclone,WV,24827 -Asco,WV,24828 -Fanrock,WV,24834 -Hanover,WV,24839 -Iaeger,WV,24844 -Jesse,WV,24849 -Jolo,WV,24850 -Marianna,WV,24859 -Matheny,WV,24860 -Mohawk,WV,24862 -Algoma,WV,24868 -North Spring,WV,24869 -Oceana,WV,24870 -Paynesville,WV,24873 -Pineville,WV,24874 -Simon,WV,24882 -Squire,WV,24884 -Lewisburg,WV,24901 -Dawson,WV,24910 -Arbovale,WV,24915 -Asbury,WV,24916 -Auto,WV,24917 -Ballard,WV,24918 -Ballengee,WV,24919 -Bartow,WV,24920 -Bozoo,WV,24923 -Buckeye,WV,24924 -Caldwell,WV,24925 -Stony Bottom,WV,24927 -Clintonville,WV,24928 -Crawley,WV,24931 -Dunmore,WV,24934 -Indian Mills,WV,24935 -Fort Spring,WV,24936 -Anthony,WV,24938 -24939,WV,24939 -Gap Mills,WV,24941 -Glace,WV,24942 -Grassy Meadows,WV,24943 -Green Bank,WV,24944 -Greenville,WV,24945 -Droop,WV,24946 -Kieffer,WV,24950 -Lindside,WV,24951 -Minnehaha Spring,WV,24954 -Maxwelton,WV,24957 -Meadow Bluff,WV,24958 -Pence Springs,WV,24962 -Peterstown,WV,24963 -Renick,WV,24966 -Ronceverte,WV,24970 -Secondcreek,WV,24974 -Pickaway,WV,24976 -Smoot,WV,24977 -Sweet Springs,WV,24980 -Talcott,WV,24981 -Union,WV,24983 -Waiteville,WV,24984 -Wayside,WV,24985 -Neola,WV,24986 -Trout,WV,24991 -Wolfcreek,WV,24993 -Alum Creek,WV,25003 -Ameagle,WV,25004 -Amma,WV,25005 -Arnett,WV,25007 -Artie,WV,25008 -Ashford,WV,25009 -Bald Knob,WV,25010 -Barrett,WV,25013 -Diamond,WV,25015 -Bentree,WV,25018 -Fola,WV,25019 -Bim,WV,25021 -Bloomingrose,WV,25024 -Blount,WV,25025 -Bob White,WV,25028 -Bomont,WV,25030 -Buffalo,WV,25033 -Burnwell,WV,25034 -Cabin Creek,WV,25035 -Cedar Grove,WV,25039 -Clay,WV,25043 -Clear Creek,WV,25044 -Quick,WV,25045 -Clio,WV,25046 -Clothier,WV,25047 -Colcord,WV,25048 -Comfort,WV,25049 -Costa,WV,25051 -Danville,WV,25053 -Dixie,WV,25059 -Dorothy,WV,25060 -Dry Creek,WV,25062 -Duck,WV,25063 -Dunbar,WV,25064 -Frame,WV,25071 -Falling Rock,WV,25079 -Foster,WV,25081 -Fraziers Bottom,WV,25082 -Whittaker,WV,25083 -Gauley Bridge,WV,25085 -Glen,WV,25088 -Gordon,WV,25093 -Hansford,WV,25103 -Harrison,WV,25105 -Henderson,WV,25106 -Hernshaw,WV,25107 -Hewett,WV,25108 -Indore,WV,25111 -Big Otter,WV,25113 -Ramage,WV,25114 -Kanawha Falls,WV,25115 -Kimberly,WV,25118 -Kincaid,WV,25119 -Lake,WV,25121 -Carbon,WV,25122 -Arbuckle,WV,25123 -Liberty,WV,25124 -Lizemores,WV,25125 -Madison,WV,25130 -Mammoth,WV,25132 -Maysel,WV,25133 -Montgomery,WV,25136 -Mount Carbon,WV,25139 -Naoma,WV,25140 -Nebo,WV,25141 -Nellis,WV,25142 -Nitro,WV,25143 -Orgas,WV,25148 -Ovapa,WV,25150 -Peytona,WV,25154 -Pliny,WV,25158 -Lanham,WV,25159 -Pond Gap,WV,25160 -Powellton,WV,25161 -Williams Mountai,WV,25163 -Pigeon,WV,25164 -Racine,WV,25165 -Red House,WV,25168 -Ridgeview,WV,25169 -Robertsburg,WV,25172 -Robson,WV,25173 -Rock Creek,WV,25174 -Saint Albans,WV,25177 -Saxon,WV,25180 -Seth,WV,25181 -Southside,WV,25187 -Stickney,WV,25189 -Sylvester,WV,25193 -Tornado,WV,25202 -Turtle Creek,WV,25203 -Bandytown,WV,25204 -Van,WV,25206 -Garrison,WV,25209 -Winfield,WV,25213 -Winifrede,WV,25214 -Advent,WV,25231 -Arnoldsburg,WV,25234 -Floe,WV,25235 -Cottageville,WV,25239 -Evans,WV,25241 -25242,WV,25242 -Gandeeville,WV,25243 -Gay,WV,25244 -Given,WV,25245 -Harmony,WV,25246 -Romance,WV,25248 -Kentuck,WV,25249 -Left Hand,WV,25251 -Duncan,WV,25252 -Letart,WV,25253 -Letter Gap,WV,25255 -Linden,WV,25256 -Lockney,WV,25258 -Looneyville,WV,25259 -Mason,WV,25260 -Millstone,WV,25261 -Millwood,WV,25262 -Mount Alto,WV,25264 -Uler,WV,25266 -Normantown,WV,25267 -Minnora,WV,25268 -Reedy,WV,25270 -Ripley,WV,25271 -Rock Castle,WV,25272 -Sand Ridge,WV,25274 -Sandyville,WV,25275 -Spencer,WV,25276 -Statts Mills,WV,25279 -Stumptown,WV,25280 -Tariff,WV,25281 -Valley Fork,WV,25283 -Wallback,WV,25285 -Walton,WV,25286 -West Columbia,WV,25287 -Charleston,WV,25301 -Big Chimney,WV,25302 -South Charleston,WV,25303 -Charleston,WV,25304 -Malden,WV,25306 -South Charleston,WV,25309 -Charleston,WV,25311 -Charleston,WV,25312 -Cross Lanes,WV,25313 -Charleston,WV,25314 -Marmet,WV,25315 -Sissonville,WV,25320 -Martinsburg,WV,25401 -Hancock,WV,25411 -Bunker Hill,WV,25413 -Charles Town,WV,25414 -Falling Waters,WV,25419 -Gerrardstown,WV,25420 -Great Cacapon,WV,25422 -Harpers Ferry,WV,25425 -Cherry Run,WV,25427 -Inwood,WV,25428 -Kearneysville,WV,25430 -Levels,WV,25431 -Paw Paw,WV,25434 -Points,WV,25437 -Ranson,WV,25438 -Shenandoah Junct,WV,25442 -Shepherdstown,WV,25443 -Slanesville,WV,25444 -Summit Point,WV,25446 -Alkol,WV,25501 -Apple Grove,WV,25502 -Ashton,WV,25503 -Barboursville,WV,25504 -Big Creek,WV,25505 -Branchland,WV,25506 -Chapmanville,WV,25508 -Culloden,WV,25510 -Dunlow,WV,25511 -East Lynn,WV,25512 -Fort Gay,WV,25514 -Gallipolis Ferry,WV,25515 -Radnor,WV,25517 -Glenwood,WV,25520 -Griffithsville,WV,25521 -Hamlin,WV,25523 -Ferrellsburg,WV,25524 -Hurricane,WV,25526 -Julian,WV,25529 -Kenova,WV,25530 -Cove Gap,WV,25534 -Lavalette,WV,25535 -25536,WV,25536 -Lesage,WV,25537 -Midkiff,WV,25540 -Milton,WV,25541 -Myra,WV,25544 -Ona,WV,25545 -Palermo,WV,25546 -Pecks Mill,WV,25547 -Point Pleasant,WV,25550 -Prichard,WV,25555 -Ranger,WV,25557 -Salt Rock,WV,25559 -Scott Depot,WV,25560 -Sias,WV,25563 -Sod,WV,25564 -Morrisvale,WV,25565 -Sumerco,WV,25567 -Sweetland,WV,25568 -Wayne,WV,25570 -West Hamlin,WV,25571 -Woodville,WV,25572 -Yawkey,WV,25573 -West Logan,WV,25601 -Robinette,WV,25607 -Baisden,WV,25608 -Davin,WV,25617 -Gilbert,WV,25621 -Hampden,WV,25623 -Earling,WV,25632 -Hunt,WV,25635 -Barnabus,WV,25638 -Verner,WV,25650 -Wharncliffe,WV,25651 -Dehue,WV,25654 -Williamson,WV,25661 -Breeden,WV,25666 -Crum,WV,25669 -Myrtle,WV,25670 -Dingess,WV,25671 -Kermit,WV,25674 -Lenore,WV,25676 -Lobata,WV,25678 -Meador,WV,25682 -Thacker,WV,25694 -Wilsondale,WV,25699 -Huntington,WV,25701 -Huntington,WV,25702 -Huntington,WV,25703 -Huntington,WV,25704 -Huntington,WV,25705 -Beckley,WV,25801 -Amigo,WV,25811 -Ansted,WV,25812 -Beaver,WV,25813 -Bolt,WV,25817 -Camp Creek,WV,25820 -Cool Ridge,WV,25825 -Crab Orchard,WV,25827 -Clifftop,WV,25831 -Daniels,WV,25832 -Edmond,WV,25837 -Fairdale,WV,25839 -Cunard,WV,25840 -Flat Top,WV,25841 -Ghent,WV,25843 -Glen Daniel,WV,25844 -Glen Fork,WV,25845 -Sullivan,WV,25847 -Glen Rogers,WV,25848 -Hico,WV,25854 -Josephine,WV,25857 -Lansing,WV,25862 -Lawton,WV,25864 -Lester,WV,25865 -Lookout,WV,25868 -Maben,WV,25870 -Saulsville,WV,25876 -Mount Hope,WV,25880 -Mullens,WV,25882 -Harvey,WV,25901 -Odd,WV,25902 -Winding Gulf,WV,25908 -Ramsey,WV,25912 -Ravencliff,WV,25913 -East Gulf,WV,25915 -Scarbro,WV,25917 -Abraham,WV,25918 -Slab Fork,WV,25920 -Spanishburg,WV,25922 -Stephenson,WV,25928 -Surveyor,WV,25932 -Thurmond,WV,25936 -Victor,WV,25938 -Hinton,WV,25951 -Charmco,WV,25958 -Rainelle,WV,25962 -Elton,WV,25965 -Green Sulphur Sp,WV,25966 -Streeter,WV,25969 -Lerona,WV,25971 -Meadow Bridge,WV,25976 -Meadow Creek,WV,25977 -Nimitz,WV,25978 -Pipestem,WV,25979 -Marfrance,WV,25981 -Kessler,WV,25984 -Sandstone,WV,25985 -Spring Dale,WV,25986 -True,WV,25988 -White Oak,WV,25989 -Elm Grove,WV,26003 -Benwood,WV,26031 -Bethany,WV,26032 -Cameron,WV,26033 -Chester,WV,26034 -Colliers,WV,26035 -Dallas,WV,26036 -Follansbee,WV,26037 -Glen Dale,WV,26038 -Glen Easton,WV,26039 -Mc Mechen,WV,26040 -Moundsville,WV,26041 -New Cumberland,WV,26047 -Newell,WV,26050 -Proctor,WV,26055 -Triadelphia,WV,26059 -Valley Grove,WV,26060 -Weirton,WV,26062 -Wellsburg,WV,26070 -Parkersburg,WV,26101 -North Parkersbur,WV,26104 -Vienna,WV,26105 -Belleville,WV,26133 -Willow Island,WV,26134 -Bens Run,WV,26135 -Big Bend,WV,26136 -Nobe,WV,26137 -Brohard,WV,26138 -Creston,WV,26141 -Davisville,WV,26142 -Elizabeth,WV,26143 -Five Forks,WV,26145 -Friendly,WV,26146 -Grantsville,WV,26147 -Macfarlan,WV,26148 -Middlebourne,WV,26149 -Mineralwells,WV,26150 -Mount Zion,WV,26151 -Munday,WV,26152 -Murraysville,WV,26153 -New Martinsville,WV,26155 -Paden City,WV,26159 -Palestine,WV,26160 -Petroleum,WV,26161 -Ravenswood,WV,26164 -Reader,WV,26167 -Rockport,WV,26169 -Saint Marys,WV,26170 -Sherman,WV,26173 -Sistersville,WV,26175 -Smithville,WV,26178 -Tanner,WV,26179 -Walker,WV,26180 -New England,WV,26181 -Waverly,WV,26184 -Wick,WV,26185 -Wileyville,WV,26186 -Williamstown,WV,26187 -Tennerton,WV,26201 -Fenwick,WV,26202 -Erbacon,WV,26203 -Craigsville,WV,26205 -Cowen,WV,26206 -Gauley Mills,WV,26208 -Adrian,WV,26210 -Century,WV,26214 -Cleveland,WV,26215 -Diana,WV,26217 -Alexander,WV,26218 -Replete,WV,26222 -Helvetia,WV,26224 -Kanawha Head,WV,26228 -Pickens,WV,26230 -Rock Cave,WV,26234 -Selbyville,WV,26236 -Tallmansville,WV,26237 -Volga,WV,26238 -Elkins,WV,26241 -Belington,WV,26250 -Beverly,WV,26253 -Wymer,WV,26254 -Coalton,WV,26257 -Davis,WV,26260 -Richwood,WV,26261 -Dryfork,WV,26263 -Durbin,WV,26264 -Upperglade,WV,26266 -Ellamore,WV,26267 -Glady,WV,26268 -Hambleton,WV,26269 -Harman,WV,26270 -Hendricks,WV,26271 -Huttonsville,WV,26273 -Kerens,WV,26276 -Mabie,WV,26278 -Mill Creek,WV,26280 -Monterville,WV,26282 -Montrose,WV,26283 -Parsons,WV,26287 -Bolair,WV,26288 -Red Creek,WV,26289 -Slatyfork,WV,26291 -Thomas,WV,26292 -Valley Bend,WV,26293 -Mingo,WV,26294 -Job,WV,26296 -Boggs,WV,26299 -Nutter Fort Ston,WV,26301 -Wilbur,WV,26320 -Alum Bridge,WV,26321 -Alvy,WV,26322 -Auburn,WV,26325 -Berea,WV,26327 -Blandville,WV,26328 -Bridgeport,WV,26330 -Bristol,WV,26332 -Gem,WV,26335 -Cairo,WV,26337 -Camden,WV,26338 -Center Point,WV,26339 -Coxs Mills,WV,26342 -Crawford,WV,26343 -Highland,WV,26346 -Wendel,WV,26347 -Folsom,WV,26348 -Baldwin,WV,26351 -Grafton,WV,26354 -Greenwood,WV,26360 -Mahone,WV,26362 -Hazelgreen,WV,26367 -Horner,WV,26372 -Independence,WV,26374 -Wildcat,WV,26376 -Jacksonburg,WV,26377 -Jane Lew,WV,26378 -Lima,WV,26383 -Linn,WV,26384 -Lost Creek,WV,26385 -Lumberport,WV,26386 -Meadowbrook,WV,26404 -Kasson,WV,26405 -Mount Clare,WV,26408 -Newberne,WV,26409 -Newburg,WV,26410 -New Milton,WV,26411 -Orlando,WV,26412 -Toll Gate,WV,26415 -Broaddus,WV,26416 -Hastings,WV,26419 -Pullman,WV,26421 -Roanoke,WV,26423 -Manheim,WV,26425 -Salem,WV,26426 -Shinnston,WV,26431 -Smithfield,WV,26437 -Stouts Mills,WV,26439 -Thornton,WV,26440 -Troy,WV,26443 -Tunnelton,WV,26444 -Walkersville,WV,26447 -Wallace,WV,26448 -West Milford,WV,26451 -Weston,WV,26452 -West Union,WV,26456 -Wolf Summit,WV,26462 -Star City,WV,26505 -Albright,WV,26519 -Blacksville,WV,26521 -Bruceton Mills,WV,26525 -Core,WV,26529 -Kingwood,WV,26537 -Maidsville,WV,26541 -Cascade,WV,26542 -Pursglove,WV,26546 -Reedsville,WV,26547 -Monongah,WV,26554 -Baxter,WV,26560 -Big Run,WV,26561 -Coburn,WV,26562 -Enterprise,WV,26568 -Fairview,WV,26570 -Farmington,WV,26571 -Hundred,WV,26575 -Littleton,WV,26581 -Mannington,WV,26582 -Metz,WV,26585 -Rachel,WV,26587 -Rivesville,WV,26588 -Wadestown,WV,26589 -Wana,WV,26590 -Worthington,WV,26591 -Herold,WV,26601 -Birch River,WV,26610 -Flower,WV,26611 -Copen,WV,26615 -Dille,WV,26617 -Elmira,WV,26618 -Riffle,WV,26619 -Falls Mill,WV,26620 -Corley,WV,26621 -Clem,WV,26623 -Gassaway,WV,26624 -Glendon,WV,26626 -Heaters,WV,26627 -Tesla,WV,26629 -Napier,WV,26631 -Nicut,WV,26633 -Perkins,WV,26634 -Rosedale,WV,26636 -Shock,WV,26638 -Strange Creek,WV,26639 -Wilsie,WV,26641 -Summersville,WV,26651 -Belva,WV,26656 -Calvin,WV,26660 -Canvas,WV,26662 -Drennen,WV,26667 -Gilboa,WV,26671 -Jodie,WV,26674 -Keslers Cross La,WV,26675 -Leivasy,WV,26676 -Mount Lookout,WV,26678 -Runa,WV,26679 -Russelville,WV,26680 -Nettie,WV,26681 -Poe,WV,26683 -Pool,WV,26684 -Swiss,WV,26690 -Tioga,WV,26691 -Augusta,WV,26704 -Amboy,WV,26705 -Burlington,WV,26710 -Capon Bridge,WV,26711 -Corinth,WV,26713 -Delray,WV,26714 -Eglon,WV,26716 -Elk Garden,WV,26717 -Fort Ashby,WV,26719 -Gormania,WV,26720 -Green Spring,WV,26722 -Scherr,WV,26726 -Kirby,WV,26729 -Lahmansville,WV,26731 -Medley,WV,26734 -Mount Storm,WV,26739 -New Creek,WV,26743 -Piedmont,WV,26750 -Patterson Creek,WV,26753 -Rio,WV,26755 -Romney,WV,26757 -Shanks,WV,26761 -Springfield,WV,26763 -Hopemont,WV,26764 -Three Churches,WV,26765 -Wiley Ford,WV,26767 -Horse Shoe Run,WV,26769 -Baker,WV,26801 -Brandywine,WV,26802 -Circleville,WV,26804 -Fort Seybert,WV,26806 -Franklin,WV,26807 -High View,WV,26808 -Lost City,WV,26810 -Lost River,WV,26811 -Mathias,WV,26812 -Moyers,WV,26813 -Riverton,WV,26814 -Sugar Grove,WV,26815 -Arthur,WV,26816 -Bloomery,WV,26817 -Fisher,WV,26818 -Junction,WV,26824 -Maysville,WV,26833 -Rig,WV,26836 -Milam,WV,26838 -Old Fields,WV,26845 -Dorcas,WV,26847 -Wardensville,WV,26851 -Purgitsville,WV,26852 -Cabins,WV,26855 -Lehew,WV,26865 -Upper Tract,WV,26866 -Seneca Rocks,WV,26884 -Onego,WV,26886 -Adell,WI,53001 -Allenton,WI,53002 -Belgium,WI,53004 -Brookfield,WI,53005 -South Byron,WI,53006 -Butler,WI,53007 -Campbellsport,WI,53010 -Cascade,WI,53011 -Cedarburg,WI,53012 -Cedar Grove,WI,53013 -Chilton,WI,53014 -Cleveland,WI,53015 -Colgate,WI,53017 -Delafield,WI,53018 -Eden,WI,53019 -Elkhart Lake,WI,53020 -Waubeka,WI,53021 -Germantown,WI,53022 -Glenbeulah,WI,53023 -Grafton,WI,53024 -Hartford,WI,53027 -Hartland,WI,53029 -Horicon,WI,53032 -Hubertus,WI,53033 -Iron Ridge,WI,53035 -Ixonia,WI,53036 -Jackson,WI,53037 -Johnson Creek,WI,53038 -Juneau,WI,53039 -Kewaskum,WI,53040 -Kiel,WI,53042 -Kohler,WI,53044 -Brookfield,WI,53045 -Lannon,WI,53046 -Knowles,WI,53048 -Malone,WI,53049 -Mayville,WI,53050 -Menomonee Falls,WI,53051 -Mount Calvary,WI,53057 -Nashotah,WI,53058 -Neosho,WI,53059 -New Holstein,WI,53061 -Newton,WI,53063 -Oakfield,WI,53065 -Oconomowoc,WI,53066 -Okauchee,WI,53069 -Oostburg,WI,53070 -Pewaukee,WI,53072 -Plymouth,WI,53073 -Port Washington,WI,53074 -Random Lake,WI,53075 -Richfield,WI,53076 -Rubicon,WI,53078 -Saint Cloud,WI,53079 -Saukville,WI,53080 -Sheboygan,WI,53081 -Howards Grove,WI,53083 -Sheboygan Falls,WI,53085 -Slinger,WI,53086 -Sussex,WI,53089 -Theresa,WI,53091 -Mequon,WI,53092 -Waldo,WI,53093 -Watertown,WI,53094 -West Bend,WI,53095 -Big Bend,WI,53103 -Bristol,WI,53104 -Burlington,WI,53105 -Caledonia,WI,53108 -Cudahy,WI,53110 -Darien,WI,53114 -Delavan,WI,53115 -Dousman,WI,53118 -Eagle,WI,53119 -East Troy,WI,53120 -Elkhorn,WI,53121 -Elm Grove,WI,53122 -Fontana,WI,53125 -Franksville,WI,53126 -Genoa City,WI,53128 -Greendale,WI,53129 -Hales Corners,WI,53130 -Franklin,WI,53132 -Helenville,WI,53137 -Kansasville,WI,53139 -Kenosha,WI,53140 -Kenosha,WI,53142 -Kenosha,WI,53143 -Kenosha,WI,53144 -New Berlin,WI,53146 -Lake Geneva,WI,53147 -Mukwonago,WI,53149 -Muskego,WI,53150 -New Berlin,WI,53151 -North Prairie,WI,53153 -Oak Creek,WI,53154 -Palmyra,WI,53156 -Salem,WI,53168 -South Milwaukee,WI,53172 -Sturtevant,WI,53177 -Sullivan,WI,53178 -Trevor,WI,53179 -Twin Lakes,WI,53181 -Union Grove,WI,53182 -Wales,WI,53183 -Walworth,WI,53184 -Wind Lake,WI,53185 -Waukesha,WI,53186 -Waukesha,WI,53188 -Whitewater,WI,53190 -Williams Bay,WI,53191 -Milwaukee,WI,53202 -Milwaukee,WI,53203 -Milwaukee,WI,53204 -Milwaukee,WI,53205 -Milwaukee,WI,53206 -Bay View,WI,53207 -Milwaukee,WI,53208 -Milwaukee,WI,53209 -Milwaukee,WI,53210 -Shorewood,WI,53211 -Milwaukee,WI,53212 -Wauwatosa,WI,53213 -West Allis,WI,53214 -West Milwaukee,WI,53215 -Milwaukee,WI,53216 -Milwaukee,WI,53217 -Milwaukee,WI,53218 -Milwaukee,WI,53219 -Greenfield,WI,53220 -Milwaukee,WI,53221 -Milwaukee,WI,53222 -Milwaukee,WI,53223 -Milwaukee,WI,53224 -Milwaukee,WI,53225 -Wauwatosa,WI,53226 -Milwaukee,WI,53227 -Greenfield,WI,53228 -Milwaukee,WI,53233 -Racine,WI,53402 -Racine,WI,53403 -Racine,WI,53404 -Racine,WI,53405 -Racine,WI,53406 -Albany,WI,53502 -Arena,WI,53503 -Argyle,WI,53504 -Avalon,WI,53505 -Avoca,WI,53506 -Barneveld,WI,53507 -Belleville,WI,53508 -Belmont,WI,53510 -Shopiere,WI,53511 -Black Earth,WI,53515 -Blanchardville,WI,53516 -Blue Mounds,WI,53517 -Blue River,WI,53518 -Brodhead,WI,53520 -Brooklyn,WI,53521 -Browntown,WI,53522 -Cambridge,WI,53523 -Clinton,WI,53525 -Cobb,WI,53526 -Cottage Grove,WI,53527 -Cross Plains,WI,53528 -Dane,WI,53529 -Darlington,WI,53530 -Deerfield,WI,53531 -De Forest,WI,53532 -Dodgeville,WI,53533 -Edgerton,WI,53534 -Evansville,WI,53536 -Fort Atkinson,WI,53538 -Gratiot,WI,53541 -Highland,WI,53543 -Hollandale,WI,53544 -Janesville,WI,53545 -Janesville,WI,53546 -Jefferson,WI,53549 -Juda,WI,53550 -Lake Mills,WI,53551 -Linden,WI,53553 -Livingston,WI,53554 -Lodi,WI,53555 -Lone Rock,WI,53556 -Lowell,WI,53557 -Mc Farland,WI,53558 -Marshall,WI,53559 -Mazomanie,WI,53560 -Merrimac,WI,53561 -Middleton,WI,53562 -Milton,WI,53563 -Mineral Point,WI,53565 -Monroe,WI,53566 -Montfort,WI,53569 -Monticello,WI,53570 -Mount Horeb,WI,53572 -Muscoda,WI,53573 -New Glarus,WI,53574 -Oregon,WI,53575 -Orfordville,WI,53576 -Plain,WI,53577 -Prairie Du Sac,WI,53578 -Reeseville,WI,53579 -Rewey,WI,53580 -Gillingham,WI,53581 -Ridgeway,WI,53582 -Sauk City,WI,53583 -Sharon,WI,53585 -Shullsburg,WI,53586 -South Wayne,WI,53587 -Spring Green,WI,53588 -Stoughton,WI,53589 -Sun Prairie,WI,53590 -Verona,WI,53593 -Waterloo,WI,53594 -Waunakee,WI,53597 -Windsor,WI,53598 -Madison,WI,53703 -Madison,WI,53704 -Madison,WI,53705 -Madison,WI,53706 -Madison,WI,53711 -Fitchburg,WI,53713 -Madison,WI,53714 -Madison,WI,53715 -Monona,WI,53716 -Madison,WI,53717 -Madison,WI,53718 -Madison,WI,53719 -Bagley,WI,53801 -Benton,WI,53803 -Bloomington,WI,53804 -Boscobel,WI,53805 -Cassville,WI,53806 -Cuba City,WI,53807 -Fennimore,WI,53809 -Glen Haven,WI,53810 -Hazel Green,WI,53811 -Lancaster,WI,53813 -Mount Hope,WI,53816 -Platteville,WI,53818 -Potosi,WI,53820 -Prairie Du Chien,WI,53821 -Stitzer,WI,53825 -Wauzeka,WI,53826 -Woodman,WI,53827 -Portage,WI,53901 -Adams,WI,53910 -Arlington,WI,53911 -Baraboo,WI,53913 -Beaver Dam,WI,53916 -Brandon,WI,53919 -Briggsville,WI,53920 -Burnett,WI,53922 -Cambria,WI,53923 -Cazenovia,WI,53924 -Columbus,WI,53925 -Dalton,WI,53926 -Elroy,WI,53929 -Endeavor,WI,53930 -Fall River,WI,53932 -Fox Lake,WI,53933 -Friendship,WI,53934 -Grand Marsh,WI,53936 -Hillpoint,WI,53937 -Kingston,WI,53939 -La Valle,WI,53941 -Loganville,WI,53943 -Lyndon Station,WI,53944 -Markesan,WI,53946 -Marquette,WI,53947 -Mauston,WI,53948 -Montello,WI,53949 -New Lisbon,WI,53950 -North Freedom,WI,53951 -Oxford,WI,53952 -Pardeeville,WI,53954 -Poynette,WI,53955 -Randolph,WI,53956 -Reedsburg,WI,53959 -Rio,WI,53960 -Rock Springs,WI,53961 -Waupun,WI,53963 -Westfield,WI,53964 -Wisconsin Dells,WI,53965 -Wonewoc,WI,53968 -Deronda,WI,54001 -Baldwin,WI,54002 -Beldenville,WI,54003 -Clayton,WI,54004 -Clear Lake,WI,54005 -Cushing,WI,54006 -Deer Park,WI,54007 -Dresser,WI,54009 -Ellsworth,WI,54011 -Emerald,WI,54012 -Glenwood City,WI,54013 -Hager City,WI,54014 -Hammond,WI,54015 -Hudson,WI,54016 -New Richmond,WI,54017 -Osceola,WI,54020 -Prescott,WI,54021 -River Falls,WI,54022 -Roberts,WI,54023 -Saint Croix Fall,WI,54024 -Somerset,WI,54025 -Star Prairie,WI,54026 -Wilson,WI,54027 -Woodville,WI,54028 -Saint Joseph,WI,54082 -Abrams,WI,54101 -Amberg,WI,54102 -Armstrong Creek,WI,54103 -Athelstane,WI,54104 -Center Valley,WI,54106 -Navarino,WI,54107 -Brillion,WI,54110 -Cecil,WI,54111 -Coleman,WI,54112 -Combined Locks,WI,54113 -Beaver,WI,54114 -De Pere,WI,54115 -Dunbar,WI,54119 -Fence,WI,54120 -Florence,WI,54121 -Forest Junction,WI,54123 -Gillett,WI,54124 -Goodman,WI,54125 -Greenleaf,WI,54126 -Gresham,WI,54128 -Hilbert,WI,54129 -Kaukauna,WI,54130 -Keshena,WI,54135 -Kimberly,WI,54136 -Krakow,WI,54137 -Lakewood,WI,54138 -Stiles,WI,54139 -Little Chute,WI,54140 -Little Suamico,WI,54141 -Marinette,WI,54143 -Mountain,WI,54149 -Neopit,WI,54150 -Niagara,WI,54151 -Oconto,WI,54153 -Oconto Falls,WI,54154 -Oneida,WI,54155 -Pembine,WI,54156 -Peshtigo,WI,54157 -Porterfield,WI,54159 -Pound,WI,54161 -Pulaski,WI,54162 -Seymour,WI,54165 -Shawano,WI,54166 -Shiocton,WI,54170 -Sobieski,WI,54171 -Suring,WI,54174 -Townsend,WI,54175 -Underhill,WI,54176 -Wausaukee,WI,54177 -Wrightstown,WI,54180 -Algoma,WI,54201 -Baileys Harbor,WI,54202 -Brussels,WI,54204 -Casco,WI,54205 -Cato,WI,54206 -Denmark,WI,54208 -Egg Harbor,WI,54209 -Ellison Bay,WI,54210 -Fish Creek,WI,54212 -Forestville,WI,54213 -Francis Creek,WI,54214 -Kellnersville,WI,54215 -Kewaunee,WI,54216 -Luxemburg,WI,54217 -Manitowoc,WI,54220 -Maribel,WI,54227 -Mishicot,WI,54228 -New Franken,WI,54229 -Reedsville,WI,54230 -Saint Nazianz,WI,54232 -Sister Bay,WI,54234 -Sturgeon Bay,WI,54235 -Two Rivers,WI,54241 -Valders,WI,54245 -Washington Islan,WI,54246 -Whitelaw,WI,54247 -Allouez,WI,54301 -Green Bay,WI,54302 -Howard,WI,54303 -Ashwaubenon,WI,54304 -Green Bay,WI,54311 -Green Bay,WI,54313 -Wausau,WI,54401 -Abbotsford,WI,54405 -Amherst,WI,54406 -Amherst Junction,WI,54407 -Aniwa,WI,54408 -Antigo,WI,54409 -Arpin,WI,54410 -Hamburg,WI,54411 -Auburndale,WI,54412 -Babcock,WI,54413 -Birnamwood,WI,54414 -Bowler,WI,54416 -Bryant,WI,54418 -Chelsea,WI,54419 -Chili,WI,54420 -Colby,WI,54421 -Curtiss,WI,54422 -Custer,WI,54423 -Deerbrook,WI,54424 -Dorchester,WI,54425 -Fenwood,WI,54426 -Eland,WI,54427 -Elcho,WI,54428 -Elton,WI,54430 -Gilman,WI,54433 -Gleason,WI,54435 -Granton,WI,54436 -Greenwood,WI,54437 -Hatley,WI,54440 -Hewitt,WI,54441 -Irma,WI,54442 -Junction City,WI,54443 -Lily,WI,54445 -Loyal,WI,54446 -Lublin,WI,54447 -Marathon,WI,54448 -Marshfield,WI,54449 -Medford,WI,54451 -Merrill,WI,54452 -Milladore,WI,54454 -Mosinee,WI,54455 -Neillsville,WI,54456 -Nekoosa,WI,54457 -Ogema,WI,54459 -Owen,WI,54460 -Pearson,WI,54462 -Pelican Lake,WI,54463 -Pickerel,WI,54465 -Pittsville,WI,54466 -Plover,WI,54467 -Port Edwards,WI,54469 -Rib Lake,WI,54470 -Ringle,WI,54471 -Rosholt,WI,54473 -Rothschild,WI,54474 -Rudolph,WI,54475 -Schofield,WI,54476 -Spencer,WI,54479 -Stetsonville,WI,54480 -Stevens Point,WI,54481 -Stratford,WI,54484 -Summit Lake,WI,54485 -Tigerton,WI,54486 -Tomahawk,WI,54487 -Unity,WI,54488 -Vesper,WI,54489 -Westboro,WI,54490 -White Lake,WI,54491 -Willard,WI,54493 -Wisconsin Rapids,WI,54494 -Withee,WI,54498 -Wittenberg,WI,54499 -Monico,WI,54501 -Cavour,WI,54511 -Boulder Junction,WI,54512 -Brantwood,WI,54513 -Butternut,WI,54514 -Catawba,WI,54515 -Clam Lake,WI,54517 -Conover,WI,54519 -Crandon,WI,54520 -Eagle River,WI,54521 -Fifield,WI,54524 -Ingram,WI,54526 -Glidden,WI,54527 -Harshaw,WI,54529 -Hawkins,WI,54530 -Hazelhurst,WI,54531 -Hurley,WI,54534 -Iron Belt,WI,54536 -Kennan,WI,54537 -Lac Du Flambeau,WI,54538 -Lake Tomahawk,WI,54539 -Land O Lakes,WI,54540 -Laona,WI,54541 -Alvin,WI,54542 -Manitowish Water,WI,54545 -Mellen,WI,54546 -Mercer,WI,54547 -Minocqua,WI,54548 -Pence,WI,54550 -Park Falls,WI,54552 -Phelps,WI,54554 -Phillips,WI,54555 -Prentice,WI,54556 -Winchester,WI,54557 -Saint Germain,WI,54558 -Saxon,WI,54559 -Sayner,WI,54560 -Three Lakes,WI,54562 -Tony,WI,54563 -Tripoli,WI,54564 -Upson,WI,54565 -Wabeno,WI,54566 -Woodruff,WI,54568 -La Crosse,WI,54601 -La Crosse,WI,54603 -Alma,WI,54610 -Alma Center,WI,54611 -Arcadia,WI,54612 -Arkdale,WI,54613 -Bangor,WI,54614 -Black River Fall,WI,54615 -Blair,WI,54616 -Bloom City,WI,54617 -Cutler,WI,54618 -Cashton,WI,54619 -Chaseburg,WI,54621 -Waumandee,WI,54622 -Coon Valley,WI,54623 -Victory,WI,54624 -Dodge,WI,54625 -Eastman,WI,54626 -Ettrick,WI,54627 -Ferryville,WI,54628 -Fountain City,WI,54629 -Galesville,WI,54630 -Gays Mills,WI,54631 -Genoa,WI,54632 -Yuba,WI,54634 -Northfield,WI,54635 -Holmen,WI,54636 -Kendall,WI,54638 -West Lima,WI,54639 -Mather,WI,54641 -Melrose,WI,54642 -Mindoro,WI,54644 -Necedah,WI,54646 -Norwalk,WI,54648 -Onalaska,WI,54650 -Ontario,WI,54651 -Readstown,WI,54652 -Rockland,WI,54653 -Soldiers Grove,WI,54655 -Sparta,WI,54656 -Steuben,WI,54657 -Stoddard,WI,54658 -Taylor,WI,54659 -Wyeville,WI,54660 -Trempealeau,WI,54661 -Viola,WI,54664 -Viroqua,WI,54665 -Warrens,WI,54666 -Westby,WI,54667 -West Salem,WI,54669 -Wilton,WI,54670 -Eau Claire,WI,54701 -Eau Claire,WI,54703 -Altoona,WI,54720 -Arkansaw,WI,54721 -Augusta,WI,54722 -Bay City,WI,54723 -Bloomer,WI,54724 -Boyceville,WI,54725 -Boyd,WI,54726 -Cadott,WI,54727 -Chetek,WI,54728 -Chippewa Falls,WI,54729 -Colfax,WI,54730 -Conrath,WI,54731 -Cornell,WI,54732 -Dallas,WI,54733 -Downing,WI,54734 -Durand,WI,54736 -Eau Galle,WI,54737 -Eleva,WI,54738 -Elk Mound,WI,54739 -Elmwood,WI,54740 -Fairchild,WI,54741 -Fall Creek,WI,54742 -Hillsdale,WI,54744 -Holcombe,WI,54745 -Humbird,WI,54746 -Independence,WI,54747 -Jim Falls,WI,54748 -Knapp,WI,54749 -Maiden Rock,WI,54750 -Menomonie,WI,54751 -Merrillan,WI,54754 -Modena,WI,54755 -Nelson,WI,54756 -New Auburn,WI,54757 -Osseo,WI,54758 -Pepin,WI,54759 -Plum City,WI,54761 -Prairie Farm,WI,54762 -Ridgeland,WI,54763 -Sand Creek,WI,54765 -Sheldon,WI,54766 -Spring Valley,WI,54767 -Stanley,WI,54768 -Stockholm,WI,54769 -Strum,WI,54770 -Thorp,WI,54771 -Wheeler,WI,54772 -Whitehall,WI,54773 -Spooner,WI,54801 -Almena,WI,54805 -Moquah,WI,54806 -Balsam Lake,WI,54810 -Barron,WI,54812 -Barronett,WI,54813 -Bayfield,WI,54814 -Birchwood,WI,54817 -Bruce,WI,54819 -Brule,WI,54820 -Cable,WI,54821 -Cameron,WI,54822 -Centuria,WI,54824 -Comstock,WI,54826 -Cornucopia,WI,54827 -New Post,WI,54828 -Cumberland,WI,54829 -Dairyland,WI,54830 -Drummond,WI,54832 -Exeland,WI,54835 -Foxboro,WI,54836 -Clam Falls,WI,54837 -Gordon,WI,54838 -Grand View,WI,54839 -Evergreen,WI,54840 -North Woods Beac,WI,54843 -Herbster,WI,54844 -Hertel,WI,54845 -High Bridge,WI,54846 -Iron River,WI,54847 -Ladysmith,WI,54848 -Lake Nebagamon,WI,54849 -La Pointe,WI,54850 -Luck,WI,54853 -Maple,WI,54854 -Marengo,WI,54855 -Delta,WI,54856 -Milltown,WI,54858 -Minong,WI,54859 -Ojibwa,WI,54862 -Poplar,WI,54864 -Port Wing,WI,54865 -Radisson,WI,54867 -Canton,WI,54868 -Sarona,WI,54870 -Shell Lake,WI,54871 -Siren,WI,54872 -Barnes,WI,54873 -Wentworth,WI,54874 -Earl,WI,54875 -Stone Lake,WI,54876 -Superior,WI,54880 -Trego,WI,54888 -Turtle Lake,WI,54889 -Washburn,WI,54891 -Webster,WI,54893 -Weyerhaeuser,WI,54895 -Loretta,WI,54896 -Oshkosh,WI,54901 -Oshkosh,WI,54904 -Almond,WI,54909 -Appleton,WI,54911 -Appleton,WI,54914 -Appleton,WI,54915 -Bancroft,WI,54921 -Bear Creek,WI,54922 -Berlin,WI,54923 -Caroline,WI,54928 -Clintonville,WI,54929 -Coloma,WI,54930 -Eldorado,WI,54932 -Taycheedah,WI,54935 -North Fond Du La,WI,54937 -Fremont,WI,54940 -Green Lake,WI,54941 -Greenville,WI,54942 -Hancock,WI,54943 -Hortonville,WI,54944 -Iola,WI,54945 -King,WI,54946 -Larsen,WI,54947 -Leopolis,WI,54948 -Manawa,WI,54949 -Marion,WI,54950 -Menasha,WI,54952 -Neenah,WI,54956 -Neshkoro,WI,54960 -New London,WI,54961 -Ogdensburg,WI,54962 -Omro,WI,54963 -Pickett,WI,54964 -Pine River,WI,54965 -Plainfield,WI,54966 -Poy Sippi,WI,54967 -Princeton,WI,54968 -Redgranite,WI,54970 -Ripon,WI,54971 -Rosendale,WI,54974 -Scandinavia,WI,54977 -Tilleda,WI,54978 -Van Dyne,WI,54979 -Waupaca,WI,54981 -Wautoma,WI,54982 -Weyauwega,WI,54983 -Wild Rose,WI,54984 -Winneconne,WI,54986 -Cheyenne,WY,82001 -Cheyenne,WY,82007 -Cheyenne,WY,82009 -Albin,WY,82050 -Laramie,WY,82051 -Buford,WY,82052 -Burns,WY,82053 -Carpenter,WY,82054 -Centennial,WY,82055 -82057,WY,82057 -Garrett,WY,82058 -Jelm,WY,82063 -Laramie,WY,82070 -Mc Fadden,WY,82080 -Meriden,WY,82081 -Pine Bluffs,WY,82082 -Rock River,WY,82083 -Tie Siding,WY,82084 -Fishing Bridge,WY,82190 -Wheatland,WY,82201 -Chugwater,WY,82210 -Fort Laramie,WY,82212 -Glendo,WY,82213 -Guernsey,WY,82214 -Hartville,WY,82215 -Hawk Springs,WY,82217 -Jay Em,WY,82219 -Keeline,WY,82220 -Lagrange,WY,82221 -Lance Creek,WY,82222 -Lingle,WY,82223 -Lost Springs,WY,82224 -Lusk,WY,82225 -Shawnee,WY,82229 -Torrington,WY,82240 -Van Tassell,WY,82242 -Veteran,WY,82243 -Yoder,WY,82244 -Rawlins,WY,82301 -Jeffrey City,WY,82310 -Baggs,WY,82321 -Bairoil,WY,82322 -Dixon,WY,82323 -Encampment,WY,82325 -Hanna,WY,82327 -Medicine Bow,WY,82329 -Ryan Park,WY,82331 -Savery,WY,82332 -Sinclair,WY,82334 -Wamsutter,WY,82336 -Worland,WY,82401 -Basin,WY,82410 -Burlington,WY,82411 -Cody,WY,82414 -Deaver,WY,82421 -Greybull,WY,82426 -Hyattville,WY,82428 -Lovell,WY,82431 -Manderson,WY,82432 -Meeteetse,WY,82433 -Otto,WY,82434 -Powell,WY,82435 -Shell,WY,82441 -Ten Sleep,WY,82442 -Grass Creek,WY,82443 -Wapiti,WY,82450 -Gas Hills,WY,82501 -Arapahoe,WY,82510 -Crowheart,WY,82512 -Dubois,WY,82513 -Fort Washakie,WY,82514 -Kinnear,WY,82516 -Ethete,WY,82520 -Pavillion,WY,82523 -Casper,WY,82601 -Casper,WY,82604 -Casper,WY,82609 -Alcova,WY,82620 -Arminto,WY,82630 -Douglas,WY,82633 -Evansville,WY,82636 -Glenrock,WY,82637 -Kaycee,WY,82639 -Lysite,WY,82642 -Midwest,WY,82643 -Shoshoni,WY,82649 -Newcastle,WY,82701 -Aladdin,WY,82710 -Beulah,WY,82712 -Devils Tower,WY,82714 -Four Corners,WY,82715 -Gillette,WY,82716 -Hulett,WY,82720 -Pine Haven,WY,82721 -Osage,WY,82723 -Oshoto,WY,82724 -Recluse,WY,82725 -Rozet,WY,82727 -Sundance,WY,82729 -Upton,WY,82730 -Gillette,WY,82731 -Wright,WY,82732 -Sheridan,WY,82801 -Arvada,WY,82831 -Banner,WY,82832 -Buffalo,WY,82834 -Clearmont,WY,82835 -Dayton,WY,82836 -Parkman,WY,82838 -Acme,WY,82839 -Story,WY,82842 -Ranchester,WY,82844 -Rock Springs,WY,82901 -Bondurant,WY,82922 -Boulder,WY,82923 -Cora,WY,82925 -Evanston,WY,82930 -Fort Bridger,WY,82933 -Green River,WY,82935 -Lonetree,WY,82936 -Lyman,WY,82937 -Mc Kinnon,WY,82938 -Pinedale,WY,82941 -Colter Bay,WY,83001 -Kelly,WY,83011 -Moose,WY,83012 -Moran,WY,83013 -Wilson,WY,83014 -Kemmerer,WY,83101 -Afton,WY,83110 -Auburn,WY,83111 -Bedford,WY,83112 -Marbleton,WY,83113 -Cokeville,WY,83114 -Daniel,WY,83115 -Etna,WY,83118 -Freedom,WY,83120 -Grover,WY,83122 -La Barge,WY,83123 -Smoot,WY,83126 -Thayne,WY,83127 \ No newline at end of file diff --git a/splunk_eventgen/samples/dist.all.last b/splunk_eventgen/samples/dist.all.last deleted file mode 100644 index 75a994c1..00000000 --- a/splunk_eventgen/samples/dist.all.last +++ /dev/null @@ -1,88799 +0,0 @@ -smith -johnson -williams -jones -brown -davis -miller -wilson -moore -taylor -anderson -thomas -jackson -white -harris -martin -thompson -garcia -martinez -robinson -clark -rodriguez -lewis -lee -walker -hall -allen -young -hernandez -king -wright -lopez -hill -scott -green -adams -baker -gonzalez -nelson -carter -mitchell -perez -roberts -turner -phillips -campbell -parker -evans -edwards -collins -stewart -sanchez -morris -rogers -reed -cook -morgan -bell -murphy -bailey -rivera -cooper -richardson -cox -howard -ward -torres -peterson -gray -ramirez -james -watson -brooks -kelly -sanders -price -bennett -wood -barnes -ross -henderson -coleman -jenkins -perry -powell -long -patterson -hughes -flores -washington -butler -simmons -foster -gonzales -bryant -alexander -russell -griffin -diaz -hayes -myers -ford -hamilton -graham -sullivan -wallace -woods -cole -west -jordan -owens -reynolds -fisher -ellis -harrison -gibson -mcdonald -cruz -marshall -ortiz -gomez -murray -freeman -wells -webb -simpson -stevens -tucker -porter -hunter -hicks -crawford -henry -boyd -mason -morales -kennedy -warren -dixon -ramos -reyes -burns -gordon -shaw -holmes -rice -robertson -hunt -black -daniels -palmer -mills -nichols -grant -knight -ferguson -rose -stone -hawkins -dunn -perkins -hudson -spencer -gardner -stephens -payne -pierce -berry -matthews -arnold -wagner -willis -ray -watkins -olson -carroll -duncan -snyder -hart -cunningham -bradley -lane -andrews -ruiz -harper -fox -riley -armstrong -carpenter -weaver -greene -lawrence -elliott -chavez -sims -austin -peters -kelley -franklin -lawson -fields -gutierrez -ryan -schmidt -carr -vasquez -castillo -wheeler -chapman -oliver -montgomery -richards -williamson -johnston -banks -meyer -bishop -mccoy -howell -alvarez -morrison -hansen -fernandez -garza -harvey -little -burton -stanley -nguyen -george -jacobs -reid -kim -fuller -lynch -dean -gilbert -garrett -romero -welch -larson -frazier -burke -hanson -day -mendoza -moreno -bowman -medina -fowler -brewer -hoffman -carlson -silva -pearson -holland -douglas -fleming -jensen -vargas -byrd -davidson -hopkins -may -terry -herrera -wade -soto -walters -curtis -neal -caldwell -lowe -jennings -barnett -graves -jimenez -horton -shelton -barrett -obrien -castro -sutton -gregory -mckinney -lucas -miles -craig -rodriquez -chambers -holt -lambert -fletcher -watts -bates -hale -rhodes -pena -beck -newman -haynes -mcdaniel -mendez -bush -vaughn -parks -dawson -santiago -norris -hardy -love -steele -curry -powers -schultz -barker -guzman -page -munoz -ball -keller -chandler -weber -leonard -walsh -lyons -ramsey -wolfe -schneider -mullins -benson -sharp -bowen -daniel -barber -cummings -hines -baldwin -griffith -valdez -hubbard -salazar -reeves -warner -stevenson -burgess -santos -tate -cross -garner -mann -mack -moss -thornton -dennis -mcgee -farmer -delgado -aguilar -vega -glover -manning -cohen -harmon -rodgers -robbins -newton -todd -blair -higgins -ingram -reese -cannon -strickland -townsend -potter -goodwin -walton -rowe -hampton -ortega -patton -swanson -joseph -francis -goodman -maldonado -yates -becker -erickson -hodges -rios -conner -adkins -webster -norman -malone -hammond -flowers -cobb -moody -quinn -blake -maxwell -pope -floyd -osborne -paul -mccarthy -guerrero -lindsey -estrada -sandoval -gibbs -tyler -gross -fitzgerald -stokes -doyle -sherman -saunders -wise -colon -gill -alvarado -greer -padilla -simon -waters -nunez -ballard -schwartz -mcbride -houston -christensen -klein -pratt -briggs -parsons -mclaughlin -zimmerman -french -buchanan -moran -copeland -roy -pittman -brady -mccormick -holloway -brock -poole -frank -logan -owen -bass -marsh -drake -wong -jefferson -park -morton -abbott -sparks -patrick -norton -huff -clayton -massey -lloyd -figueroa -carson -bowers -roberson -barton -tran -lamb -harrington -casey -boone -cortez -clarke -mathis -singleton -wilkins -cain -bryan -underwood -hogan -mckenzie -collier -luna -phelps -mcguire -allison -bridges -wilkerson -nash -summers -atkins -wilcox -pitts -conley -marquez -burnett -richard -cochran -chase -davenport -hood -gates -clay -ayala -sawyer -roman -vazquez -dickerson -hodge -acosta -flynn -espinoza -nicholson -monroe -wolf -morrow -kirk -randall -anthony -whitaker -oconnor -skinner -ware -molina -kirby -huffman -bradford -charles -gilmore -dominguez -oneal -bruce -lang -combs -kramer -heath -hancock -gallagher -gaines -shaffer -short -wiggins -mathews -mcclain -fischer -wall -small -melton -hensley -bond -dyer -cameron -grimes -contreras -christian -wyatt -baxter -snow -mosley -shepherd -larsen -hoover -beasley -glenn -petersen -whitehead -meyers -keith -garrison -vincent -shields -horn -savage -olsen -schroeder -hartman -woodard -mueller -kemp -deleon -booth -patel -calhoun -wiley -eaton -cline -navarro -harrell -lester -humphrey -parrish -duran -hutchinson -hess -dorsey -bullock -robles -beard -dalton -avila -vance -rich -blackwell -york -johns -blankenship -trevino -salinas -campos -pruitt -moses -callahan -golden -montoya -hardin -guerra -mcdowell -carey -stafford -gallegos -henson -wilkinson -booker -merritt -miranda -atkinson -orr -decker -hobbs -preston -tanner -knox -pacheco -stephenson -glass -rojas -serrano -marks -hickman -english -sweeney -strong -prince -mcclure -conway -walter -roth -maynard -farrell -lowery -hurst -nixon -weiss -trujillo -ellison -sloan -juarez -winters -mclean -randolph -leon -boyer -villarreal -mccall -gentry -carrillo -kent -ayers -lara -shannon -sexton -pace -hull -leblanc -browning -velasquez -leach -chang -house -sellers -herring -noble -foley -bartlett -mercado -landry -durham -walls -barr -mckee -bauer -rivers -everett -bradshaw -pugh -velez -rush -estes -dodson -morse -sheppard -weeks -camacho -bean -barron -livingston -middleton -spears -branch -blevins -chen -kerr -mcconnell -hatfield -harding -ashley -solis -herman -frost -giles -blackburn -william -pennington -woodward -finley -mcintosh -koch -best -solomon -mccullough -dudley -nolan -blanchard -rivas -brennan -mejia -kane -benton -joyce -buckley -haley -valentine -maddox -russo -mcknight -buck -moon -mcmillan -crosby -berg -dotson -mays -roach -church -chan -richmond -meadows -faulkner -oneill -knapp -kline -barry -ochoa -jacobson -gay -avery -hendricks -horne -shepard -hebert -cherry -cardenas -mcintyre -whitney -waller -holman -donaldson -cantu -terrell -morin -gillespie -fuentes -tillman -sanford -bentley -peck -key -salas -rollins -gamble -dickson -battle -santana -cabrera -cervantes -howe -hinton -hurley -spence -zamora -yang -mcneil -suarez -case -petty -gould -mcfarland -sampson -carver -bray -rosario -macdonald -stout -hester -melendez -dillon -farley -hopper -galloway -potts -bernard -joyner -stein -aguirre -osborn -mercer -bender -franco -rowland -sykes -benjamin -travis -pickett -crane -sears -mayo -dunlap -hayden -wilder -mckay -coffey -mccarty -ewing -cooley -vaughan -bonner -cotton -holder -stark -ferrell -cantrell -fulton -lynn -lott -calderon -rosa -pollard -hooper -burch -mullen -fry -riddle -levy -david -duke -odonnell -guy -michael -britt -frederick -daugherty -berger -dillard -alston -jarvis -frye -riggs -chaney -odom -duffy -fitzpatrick -valenzuela -merrill -mayer -alford -mcpherson -acevedo -donovan -barrera -albert -cote -reilly -compton -raymond -mooney -mcgowan -craft -cleveland -clemons -wynn -nielsen -baird -stanton -snider -rosales -bright -witt -stuart -hays -holden -rutledge -kinney -clements -castaneda -slater -hahn -emerson -conrad -burks -delaney -pate -lancaster -sweet -justice -tyson -sharpe -whitfield -talley -macias -irwin -burris -ratliff -mccray -madden -kaufman -beach -goff -cash -bolton -mcfadden -levine -good -byers -kirkland -kidd -workman -carney -dale -mcleod -holcomb -england -finch -head -burt -hendrix -sosa -haney -franks -sargent -nieves -downs -rasmussen -bird -hewitt -lindsay -le -foreman -valencia -oneil -delacruz -vinson -dejesus -hyde -forbes -gilliam -guthrie -wooten -huber -barlow -boyle -mcmahon -buckner -rocha -puckett -langley -knowles -cooke -velazquez -whitley -noel -vang -shea -rouse -hartley -mayfield -elder -rankin -hanna -cowan -lucero -arroyo -slaughter -haas -oconnell -minor -kendrick -shirley -kendall -boucher -archer -boggs -odell -dougherty -andersen -newell -crowe -wang -friedman -bland -swain -holley -felix -pearce -childs -yarbrough -galvan -proctor -meeks -lozano -mora -rangel -bacon -villanueva -schaefer -rosado -helms -boyce -goss -stinson -smart -lake -ibarra -hutchins -covington -reyna -gregg -werner -crowley -hatcher -mackey -bunch -womack -polk -jamison -dodd -childress -childers -camp -villa -dye -springer -mahoney -dailey -belcher -lockhart -griggs -costa -connor -brandt -winter -walden -moser -tracy -tatum -mccann -akers -lutz -pryor -law -orozco -mcallister -lugo -davies -shoemaker -madison -rutherford -newsome -magee -chamberlain -blanton -simms -godfrey -flanagan -crum -cordova -escobar -downing -sinclair -donahue -krueger -mcginnis -gore -farris -webber -corbett -andrade -starr -lyon -yoder -hastings -mcgrath -spivey -krause -harden -crabtree -kirkpatrick -hollis -brandon -arrington -ervin -clifton -ritter -mcghee -bolden -maloney -gagnon -dunbar -ponce -pike -mayes -heard -beatty -mobley -kimball -butts -montes -herbert -grady -eldridge -braun -hamm -gibbons -seymour -moyer -manley -herron -plummer -elmore -cramer -gary -rucker -hilton -blue -pierson -fontenot -field -rubio -grace -goldstein -elkins -wills -novak -john -hickey -worley -gorman -katz -dickinson -broussard -fritz -woodruff -crow -christopher -britton -forrest -nance -lehman -bingham -zuniga -whaley -shafer -coffman -steward -delarosa -nix -neely -numbers -mata -manuel -davila -mccabe -kessler -emery -bowling -hinkle -welsh -pagan -goldberg -goins -crouch -cuevas -quinones -mcdermott -hendrickson -samuels -denton -bergeron -lam -ivey -locke -haines -thurman -snell -hoskins -byrne -milton -winston -arthur -arias -stanford -roe -corbin -beltran -chappell -hurt -downey -dooley -tuttle -couch -payton -mcelroy -crockett -groves -clement -leslie -cartwright -dickey -mcgill -dubois -muniz -erwin -self -tolbert -dempsey -cisneros -sewell -latham -garland -vigil -tapia -sterling -rainey -norwood -lacy -stroud -meade -amos -tipton -lord -kuhn -hilliard -bonilla -teague -courtney -gunn -ho -greenwood -correa -reece -weston -poe -trent -pineda -phipps -frey -kaiser -ames -paige -gunter -schmitt -milligan -espinosa -carlton -bowden -vickers -lowry -pritchard -costello -piper -mcclellan -lovell -drew -sheehan -quick -hatch -dobson -singh -jeffries -hollingsworth -sorensen -meza -fink -donnelly -burrell -bruno -tomlinson -colbert -billings -ritchie -helton -sutherland -peoples -mcqueen -gaston -thomason -mckinley -givens -crocker -vogel -robison -dunham -coker -swartz -keys -lilly -ladner -hannah -willard -richter -hargrove -edmonds -brantley -albright -murdock -boswell -muller -quintero -padgett -kenney -daly -connolly -pierre -inman -quintana -lund -barnard -villegas -simons -land -huggins -tidwell -sanderson -bullard -mcclendon -duarte -draper -meredith -marrero -dwyer -abrams -stover -goode -fraser -crews -bernal -smiley -godwin -fish -conklin -mcneal -baca -esparza -crowder -bower -nicholas -chung -brewster -mcneill -dick -rodrigues -leal -coates -raines -mccain -mccord -miner -holbrook -swift -dukes -carlisle -aldridge -ackerman -starks -ricks -holliday -ferris -hairston -sheffield -lange -fountain -marino -doss -betts -kaplan -carmichael -bloom -ruffin -penn -kern -bowles -sizemore -larkin -dupree -jewell -silver -seals -metcalf -hutchison -henley -farr -castle -mccauley -hankins -gustafson -deal -curran -ash -waddell -ramey -cates -pollock -major -irvin -cummins -messer -heller -dewitt -lin -funk -cornett -palacios -galindo -cano -hathaway -singer -pham -enriquez -aaron -salgado -pelletier -painter -wiseman -blount -hand -feliciano -temple -houser -doherty -mead -mcgraw -toney -swan -melvin -capps -blanco -blackmon -wesley -thomson -mcmanus -fair -burkett -post -gleason -rudolph -ott -dickens -cormier -voss -rushing -rosenberg -hurd -dumas -benitez -arellano -story -marin -caudill -bragg -jaramillo -huerta -gipson -colvin -biggs -vela -platt -cassidy -tompkins -mccollum -kay -gabriel -dolan -daley -crump -street -sneed -kilgore -grove -grimm -davison -brunson -prater -marcum -devine -kyle -dodge -stratton -rosas -choi -tripp -ledbetter -lay -hightower -haywood -feldman -epps -yeager -posey -sylvester -scruggs -cope -stubbs -richey -overton -trotter -sprague -cordero -butcher -burger -stiles -burgos -woodson -horner -bassett -purcell -haskins -gee -akins -abraham -hoyt -ziegler -spaulding -hadley -grubbs -sumner -murillo -zavala -shook -lockwood -jarrett -driscoll -dahl -thorpe -sheridan -redmond -putnam -mcwilliams -mcrae -cornell -felton -romano -joiner -sadler -hedrick -hager -hagen -fitch -coulter -thacker -mansfield -langston -guidry -ferreira -corley -conn -rossi -lackey -cody -baez -saenz -mcnamara -darnell -michel -mcmullen -mckenna -mcdonough -link -engel -browne -roper -peacock -eubanks -drummond -stringer -pritchett -parham -mims -landers -ham -grayson -stacy -schafer -egan -timmons -ohara -keen -hamlin -finn -cortes -mcnair -louis -clifford -nadeau -moseley -michaud -rosen -oakes -kurtz -jeffers -calloway -beal -bautista -winn -suggs -stern -stapleton -lyles -laird -montano -diamond -dawkins -roland -hagan -goldman -bryson -barajas -lovett -segura -metz -lockett -langford -hinson -eastman -rock -hooks -woody -smallwood -shapiro -crowell -whalen -triplett -hooker -chatman -aldrich -cahill -youngblood -ybarra -stallings -sheets -samuel -reeder -person -pack -lacey -connelly -bateman -abernathy -winkler -wilkes -masters -hackett -granger -gillis -schmitz -sapp -napier -souza -lanier -gomes -weir -otero -ledford -burroughs -babcock -ventura -siegel -dugan -clinton -christie -bledsoe -atwood -wray -varner -spangler -otto -anaya -staley -kraft -fournier -eddy -belanger -wolff -thorne -bynum -burnette -boykin -swenson -purvis -pina -khan -duvall -darby -xiong -kauffman -ali -yu -healy -engle -corona -benoit -valle -steiner -spicer -shaver -randle -lundy -dow -chin -calvert -staton -neff -kearney -darden -oakley -medeiros -mccracken -crenshaw -block -beaver -perdue -dill -whittaker -tobin -cornelius -washburn -hogue -goodrich -easley -bravo -dennison -vera -shipley -kerns -jorgensen -crain -abel -villalobos -maurer -longoria -keene -coon -sierra -witherspoon -staples -pettit -kincaid -eason -madrid -echols -lusk -wu -stahl -currie -thayer -shultz -sherwood -mcnally -seay -north -maher -kenny -hope -gagne -barrow -nava -myles -moreland -honeycutt -hearn -diggs -caron -whitten -westbrook -stovall -ragland -queen -munson -meier -looney -kimble -jolly -hobson -london -goddard -culver -burr -presley -negron -connell -tovar -marcus -huddleston -hammer -ashby -salter -root -pendleton -oleary -nickerson -myrick -judd -jacobsen -elliot -bain -adair -starnes -sheldon -matos -light -busby -herndon -hanley -bellamy -jack -doty -bartley -yazzie -rowell -parson -gifford -cullen -christiansen -benavides -barnhart -talbot -mock -crandall -connors -bonds -whitt -gage -bergman -arredondo -addison -marion -lujan -dowdy -jernigan -huynh -bouchard -dutton -rhoades -ouellette -kiser -rubin -herrington -hare -denny -blackman -babb -allred -rudd -paulson -ogden -koenig -jacob -irving -geiger -begay -parra -champion -lassiter -hawk -esposito -cho -waldron -vernon -ransom -prather -keenan -jean -grover -chacon -vick -sands -roark -parr -mayberry -greenberg -coley -bruner -whitman -skaggs -shipman -means -leary -hutton -romo -medrano -ladd -kruse -friend -darling -askew -valentin -schulz -alfaro -tabor -mohr -gallo -bermudez -pereira -isaac -bliss -reaves -flint -comer -boston -woodall -naquin -guevara -earl -delong -carrier -pickens -brand -tilley -schaffer -read -lim -knutson -fenton -doran -chu -vogt -vann -prescott -mclain -landis -corcoran -ambrose -zapata -hyatt -hemphill -faulk -call -dove -boudreaux -aragon -whitlock -trejo -tackett -shearer -saldana -hanks -gold -driver -mckinnon -koehler -champagne -bourgeois -pool -keyes -goodson -foote -early -lunsford -goldsmith -flood -winslow -sams -reagan -mccloud -hough -esquivel -naylor -loomis -coronado -ludwig -braswell -bearden -sherrill -huang -fagan -ezell -edmondson -cyr -cronin -nunn -lemon -guillory -grier -dubose -traylor -ryder -dobbins -coyle -aponte -whitmore -smalls -rowan -malloy -cardona -braxton -borden -humphries -carrasco -ruff -metzger -huntley -hinojosa -finney -madsen -hong -hills -ernst -dozier -burkhart -bowser -peralta -daigle -whittington -sorenson -saucedo -roche -redding -loyd -fugate -avalos -waite -lind -huston -hay -benedict -hawthorne -hamby -boyles -boles -regan -faust -crook -beam -barger -hinds -gallardo -elias -willoughby -willingham -wilburn -eckert -busch -zepeda -worthington -tinsley -russ -li -hoff -hawley -carmona -varela -rector -newcomb -mallory -kinsey -dube -whatley -strange -ragsdale -ivy -bernstein -becerra -yost -mattson -ly -felder -cheek -luke -handy -grossman -gauthier -escobedo -braden -beckman -mott -hillman -gil -flaherty -dykes -doe -stockton -stearns -lofton -kitchen -coats -cavazos -beavers -barrios -tang -parish -mosher -lincoln -cardwell -coles -burnham -weller -lemons -beebe -aguilera -ring -parnell -harman -couture -alley -schumacher -redd -dobbs -blum -blalock -merchant -ennis -denson -cottrell -chester -brannon -bagley -aviles -watt -sousa -rosenthal -rooney -dietz -blank -paquette -mcclelland -duff -velasco -lentz -grubb -burrows -barbour -ulrich -shockley -rader -german -beyer -mixon -layton -altman -alonzo -weathers -titus -stoner -squires -shipp -priest -lipscomb -cutler -caballero -zimmer -willett -thurston -storey -medley -lyle -epperson -shah -mcmillian -baggett -torrez -laws -hirsch -dent -corey -poirier -peachey -jacques -farrar -creech -barth -trimble -france -dupre -albrecht -sample -lawler -crisp -conroy -chadwick -wetzel -nesbitt -murry -jameson -wilhelm -patten -minton -matson -kimbrough -iverson -guinn -gale -fortune -croft -toth -pulliam -nugent -newby -littlejohn -dias -canales -bernier -baron -barney -singletary -renteria -pruett -mchugh -mabry -landrum -brower -weldon -stoddard -ruth -cagle -stjohn -scales -kohler -kellogg -hopson -gant -tharp -gann -zeigler -pringle -hammons -fairchild -deaton -chavis -carnes -rowley -matlock -libby -kearns -irizarry -carrington -starkey -pepper -lopes -jarrell -fay -craven -beverly -baum -spain -littlefield -linn -humphreys -hook -high -etheridge -cuellar -chastain -chance -bundy -speer -skelton -quiroz -pyle -portillo -ponder -moulton -machado -liu -killian -hutson -hitchcock -ellsworth -dowling -cloud -burdick -spann -pedersen -levin -leggett -hayward -hacker -dietrich -beaulieu -barksdale -wakefield -snowden -paris -briscoe -bowie -berman -ogle -mcgregor -laughlin -helm -burden -wheatley -schreiber -pressley -parris -ng -alaniz -agee -urban -swann -snodgrass -schuster -radford -monk -mattingly -main -lamar -harp -girard -cheney -yancey -wagoner -ridley -lombardo -lau -hudgins -gaskins -duckworth -coe -coburn -willey -prado -newberry -magana -hammonds -elam -whipple -slade -serna -ojeda -liles -dorman -diehl -angel -upton -reardon -michaels -kelsey -goetz -eller -bauman -baer -augustine -layne -hummel -brenner -amaya -adamson -ornelas -dowell -cloutier -christy -castellanos -wing -wellman -saylor -orourke -moya -montalvo -kilpatrick -harley -durbin -shell -oldham -kang -garvin -foss -branham -bartholomew -templeton -maguire -holton -alonso -rider -monahan -mccormack -beaty -anders -streeter -nieto -nielson -moffett -lankford -keating -heck -gatlin -delatorre -callaway -adcock -worrell -unger -robinette -nowak -jeter -brunner -ashton -steen -parrott -overstreet -nobles -montanez -luther -clevenger -brinkley -trahan -quarles -pickering -pederson -jansen -grantham -gilchrist -crespo -aiken -schell -schaeffer -lorenz -leyva -harms -dyson -wallis -pease -leavitt -hyman -cheng -cavanaugh -batts -warden -seaman -rockwell -quezada -paxton -linder -houck -fontaine -durant -caruso -adler -pimentel -mize -lytle -donald -cleary -cason -acker -switzer -salmon -isaacs -higginbotham -han -waterman -vandyke -stamper -sisk -shuler -riddick -redman -mcmahan -levesque -hatton -bronson -bollinger -arnett -okeefe -gerber -gannon -farnsworth -baughman -silverman -satterfield -royal -mccrary -kowalski -joy -grigsby -greco -cabral -trout -rinehart -mahon -linton -gooden -curley -baugh -wyman -weiner -schwab -schuler -morrissey -mahan -coy -bunn -andrew -thrasher -spear -waggoner -shelley -robert -qualls -purdy -mcwhorter -mauldin -mark -jordon -gilman -perryman -newsom -menard -martino -graf -billingsley -artis -simpkins -salisbury -quintanilla -gilliland -fraley -foust -crouse -scarborough -ngo -grissom -fultz -rico -marlow -markham -madrigal -lawton -barfield -whiting -varney -schwarz -huey -gooch -arce -wheat -truong -poulin -mackenzie -leone -hurtado -selby -gaither -fortner -culpepper -coughlin -brinson -boudreau -barkley -bales -stepp -holm -tan -schilling -morrell -kahn -heaton -gamez -douglass -causey -brothers -turpin -shanks -schrader -meek -isom -hardison -carranza -yanez -way -scroggins -schofield -runyon -ratcliff -murrell -moeller -irby -currier -butterfield -yee -ralston -pullen -pinson -estep -east -carbone -lance -hawks -ellington -casillas -spurlock -sikes -motley -mccartney -kruger -isbell -houle -francisco -burk -bone -tomlin -shelby -quigley -neumann -lovelace -fennell -colby -cheatham -bustamante -skidmore -hidalgo -forman -culp -bowens -betancourt -aquino -robb -rea -milner -martel -gresham -wiles -ricketts -gavin -dowd -collazo -bostic -blakely -sherrod -power -kenyon -gandy -ebert -deloach -cary -bull -allard -sauer -robins -olivares -gillette -chestnut -bourque -paine -lyman -hite -hauser -devore -crawley -chapa -vu -tobias -talbert -poindexter -millard -meador -mcduffie -mattox -kraus -harkins -choate -bess -wren -sledge -sanborn -outlaw -kinder -geary -cornwell -barclay -adam -abney -seward -rhoads -howland -fortier -easter -benner -vines -tubbs -troutman -rapp -noe -mccurdy -harder -deluca -westmoreland -south -havens -guajardo -ely -clary -seal -meehan -herzog -guillen -ashcraft -waugh -renner -milam -jung -elrod -churchill -buford -breaux -bolin -asher -windham -tirado -pemberton -nolen -noland -knott -emmons -cornish -christenson -brownlee -barbee -waldrop -pitt -olvera -lombardi -gruber -gaffney -eggleston -banda -archuleta -still -slone -prewitt -pfeiffer -nettles -mena -mcadams -henning -gardiner -cromwell -chisholm -burleson -box -vest -oglesby -mccarter -malcolm -lumpkin -larue -grey -wofford -vanhorn -thorn -teel -swafford -stclair -stanfield -ocampo -herrmann -hannon -arsenault -roush -mcalister -hiatt -gunderson -forsythe -duggan -delvalle -cintron -wilks -weinstein -uribe -rizzo -noyes -mclendon -gurley -bethea -winstead -maples -harry -guyton -giordano -alderman -valdes -polanco -pappas -lively -grogan -griffiths -bobo -arevalo -whitson -sowell -rendon -matthew -julian -fernandes -farrow -edmond -benavidez -ayres -alicea -stump -smalley -seitz -schulte -gilley -gallant -dewey -casper -canfield -wolford -omalley -mcnutt -mcnulty -mcgovern -hardman -harbin -cowart -chavarria -brink -beckett -bagwell -armstead -anglin -abreu -reynoso -krebs -jett -hoffmann -greenfield -forte -burney -broome -sisson -parent -jude -younger -trammell -partridge -marvin -mace -lomax -lemieux -gossett -frantz -fogle -cooney -broughton -pence -paulsen -neil -muncy -mcarthur -hollins -edward -beauchamp -withers -osorio -mulligan -hoyle -foy -dockery -cockrell -begley -amador -roby -rains -lindquist -gentile -everhart -bohannon -wylie -thao -sommers -purnell -palma -fortin -dunning -breeden -vail -phelan -phan -marx -cosby -colburn -chong -boling -biddle -ledesma -gaddis -denney -chow -bueno -berrios -wicker -tolliver -thibodeaux -nagle -lavoie -fisk -do -crist -barbosa -reedy -march -locklear -kolb -himes -behrens -beckwith -beckham -weems -wahl -shorter -shackelford -rees -muse -free -cerda -valadez -thibodeau -saavedra -ridgeway -reiter -mchenry -majors -lachance -keaton -israel -ferrara -falcon -clemens -blocker -applegate -paz -needham -mojica -kuykendall -hamel -escamilla -doughty -burchett -ainsworth -wilbur -vidal -upchurch -thigpen -strauss -spruill -sowers -riggins -ricker -mccombs -harlow -garnett -buffington -yi -sotelo -olivas -negrete -morey -macon -logsdon -lapointe -florence -cathey -bigelow -bello -westfall -stubblefield -peak -lindley -jeffrey -hein -hawes -farrington -edge -breen -birch -wilde -steed -sepulveda -reinhardt -proffitt -minter -messina -mcnabb -maier -keeler -gamboa -donohue -dexter -basham -shinn -orlando -crooks -cota -borders -bills -bachman -tisdale -tavares -schmid -pickard -jasper -gulley -fonseca -delossantos -condon -clancy -batista -wicks -wadsworth -new -martell -lo -littleton -ison -haag -folsom -brumfield -broyles -brito -mireles -mcdonnell -leclair -hamblin -gough -fanning -binder -winfield -whitworth -soriano -palumbo -newkirk -mangum -hutcherson -comstock -cecil -carlin -beall -bair -wendt -watters -walling -putman -otoole -oliva -morley -mares -lemus -keener -jeffery -hundley -dial -damico -billups -strother -mcfarlane -lamm -eaves -crutcher -caraballo -canty -atwell -taft -siler -rust -rawls -rawlings -prieto -niles -mcneely -mcafee -hulsey -harlan -hackney -galvez -escalante -delagarza -crider -charlton -bandy -wilbanks -stowe -steinberg -samson -renfro -masterson -massie -lanham -haskell -hamrick -fort -dehart -card -burdette -branson -bourne -babin -aleman -worthy -tibbs -sweat -smoot -slack -paradis -packard -mull -luce -houghton -gantt -furman -danner -christianson -burge -broderick -ashford -arndt -almeida -stallworth -shade -searcy -sager -noonan -mclemore -mcintire -maxey -lavigne -jobe -ireland -ferrer -falk -edgar -coffin -byrnes -aranda -apodaca -stamps -rounds -peek -olmstead -lewandowski -kaminski -her -dunaway -bruns -brackett -amato -reich -mcclung -lacroix -koontz -herrick -hardesty -flanders -cousins -close -cato -cade -vickery -shank -nagel -dupuis -croteau -cotter -cable -stuckey -stine -porterfield -pauley -nye -moffitt -lu -knudsen -hardwick -goforth -dupont -blunt -barrows -barnhill -shull -rash -ralph -penny -lorenzo -loftis -lemay -kitchens -horvath -grenier -fuchs -fairbanks -culbertson -calkins -burnside -beattie -ashworth -albertson -wertz -vo -vaught -vallejo -tyree -turk -tuck -tijerina -sage -picard -peterman -otis -marroquin -marr -lantz -hoang -demarco -daily -cone -berube -barnette -wharton -stinnett -slocum -scanlon -sander -pinto -mancuso -lima -judge -headley -epstein -counts -clarkson -carnahan -brice -boren -arteaga -adame -zook -whittle -whitehurst -wenzel -saxton -rhea -reddick -puente -hazel -handley -haggerty -earley -devlin -dallas -chaffin -cady -ahmed -acuna -solano -sigler -pollack -pendergrass -ostrander -janes -francois -fine -crutchfield -cordell -chamberlin -brubaker -baptiste -willson -reis -neeley -mullin -mercier -lira -layman -keeling -higdon -guest -forrester -espinal -dion -chapin -carl -warfield -toledo -pulido -peebles -nagy -montague -mello -lear -jaeger -hogg -graff -furr -derrick -cave -canada -soliz -poore -mendenhall -mclaurin -maestas -low -gable -belt -barraza -tillery -snead -pond -neill -mcculloch -mccorkle -lightfoot -hutchings -holloman -harness -dorn -council -bock -zielinski -turley -treadwell -stpierre -starling -somers -oswald -merrick -marquis -ivory -easterling -bivens -truitt -poston -parry -ontiveros -olivarez -neville -moreau -medlin -ma -lenz -knowlton -fairley -cobbs -chisolm -bannister -woodworth -toler -ocasio -noriega -neuman -moye -milburn -mcclanahan -lilley -hanes -flannery -dellinger -danielson -conti -blodgett -beers -weatherford -strain -karr -hitt -denham -custer -coble -clough -casteel -bolduc -batchelor -ammons -whitlow -tierney -staten -sibley -seifert -schubert -salcedo -mattison -laney -haggard -grooms -dix -dees -cromer -cooks -colson -caswell -zarate -swisher -stacey -shin -ragan -pridgen -mcvey -matheny -leigh -lafleur -franz -ferraro -dugger -whiteside -rigsby -mcmurray -lehmann -large -jacoby -hildebrand -hendrick -headrick -goad -fincher -drury -borges -archibald -albers -woodcock -trapp -soares -seaton -richie -monson -luckett -lindberg -kopp -keeton -hsu -healey -garvey -gaddy -fain -burchfield -badger -wentworth -strand -stack -spooner -saucier -sales -ruby -ricci -plunkett -pannell -ness -leger -hoy -freitas -fong -elizondo -duval -chun -calvin -beaudoin -urbina -stock -rickard -partin -moe -mcgrew -mcclintock -ledoux -forsyth -faison -devries -bertrand -wasson -tilton -scarbrough -pride -oh -leung -larry -irvine -garber -denning -corral -colley -castleberry -bowlin -bogan -beale -baines -true -trice -rayburn -parkinson -pak -nunes -mcmillen -leahy -lea -kimmel -higgs -fulmer -carden -bedford -taggart -spearman -register -prichard -morrill -koonce -heinz -hedges -guenther -grice -findley -earle -dover -creighton -boothe -bayer -arreola -vitale -valles -see -raney -peter -osgood -lowell -hanlon -burley -bounds -worden -weatherly -vetter -tanaka -stiltner -sell -nevarez -mosby -montero -melancon -harter -hamer -goble -gladden -gist -ginn -akin -zaragoza -towns -tarver -sammons -royster -oreilly -muir -morehead -luster -kingsley -kelso -grisham -glynn -baumann -alves -yount -tamayo -tam -paterson -oates -menendez -longo -hargis -greenlee -gillen -desantis -conover -breedlove -wayne -sumpter -scherer -rupp -reichert -heredia -fallon -creel -cohn -clemmons -casas -bickford -belton -bach -williford -whitcomb -tennant -sutter -stull -sessions -mccallum -manson -langlois -keel -keegan -emanuel -dangelo -dancy -damron -clapp -clanton -bankston -trinidad -oliveira -mintz -mcinnis -martens -mabe -laster -jolley -irish -hildreth -hefner -glaser -duckett -demers -brockman -blais -back -alcorn -agnew -toliver -tice -song -seeley -najera -musser -mcfall -laplante -galvin -fajardo -doan -coyne -copley -clawson -cheung -barone -wynne -woodley -tremblay -stoll -sparrow -sparkman -schweitzer -sasser -samples -roney -ramon -legg -lai -joe -heim -farias -concepcion -colwell -christman -bratcher -alba -winchester -upshaw -southerland -sorrell -shay -sells -mount -mccloskey -martindale -luttrell -loveless -lovejoy -linares -latimer -holly -embry -coombs -bratton -bostick -boss -venable -tuggle -toro -staggs -sandlin -jefferies -heckman -griffis -crayton -clem -button -browder -allan -thorton -sturgill -sprouse -royer -rousseau -ridenour -pogue -perales -peeples -metzler -mesa -mccutcheon -mcbee -jay -hornsby -heffner -corrigan -armijo -vue -romeo -plante -peyton -paredes -macklin -hussey -hodgson -granados -frias -carman -brent -becnel -batten -almanza -turney -teal -sturgeon -meeker -mcdaniels -limon -keeney -kee -hutto -holguin -gorham -fishman -fierro -blanchette -rodrigue -reddy -osburn -oden -lerma -kirkwood -keefer -haugen -hammett -chalmers -carlos -brinkman -baumgartner -zhang -valerio -tellez -steffen -shumate -sauls -ripley -kemper -jacks -guffey -evers -craddock -carvalho -blaylock -banuelos -balderas -wooden -wheaton -turnbull -shuman -pointer -mosier -mccue -ligon -kozlowski -johansen -ingle -herr -briones -southern -snipes -rickman -pipkin -peace -pantoja -orosco -moniz -lawless -kunkel -hibbard -galarza -enos -bussey -settle -schott -salcido -perreault -mcdougal -mccool -haight -garris -ferry -easton -conyers -atherton -wimberly -utley -stephen -spellman -smithson -slagle -skipper -ritchey -rand -petit -osullivan -oaks -nutt -mcvay -mccreary -mayhew -knoll -jewett -harwood -hailey -cardoza -ashe -arriaga -andres -zeller -wirth -whitmire -stauffer -spring -rountree -redden -mccaffrey -martz -loving -larose -langdon -humes -gaskin -faber -doll -devito -cass -almond -wingfield -wingate -villareal -tyner -smothers -severson -reno -pennell -maupin -leighton -janssen -hassell -hallman -halcomb -folse -fitzsimmons -fahey -cranford -bolen -battles -battaglia -wooldridge -weed -trask -rosser -regalado -mcewen -keefe -fuqua -echevarria -domingo -dang -caro -boynton -andrus -wild -viera -vanmeter -taber -spradlin -seibert -provost -prentice -oliphant -laporte -hwang -hatchett -hass -greiner -freedman -covert -chilton -byars -wiese -venegas -swank -shrader -roderick -roberge -mullis -mortensen -mccune -marlowe -kirchner -keck -isaacson -hostetler -halverson -gunther -griswold -gerard -fenner -durden -blackwood -bertram -ahrens -sawyers -savoy -nabors -mcswain -mackay -loy -lavender -lash -labbe -jessup -hubert -fullerton -donnell -cruse -crittenden -correia -centeno -caudle -canady -callender -alarcon -ahern -winfrey -tribble -tom -styles -salley -roden -musgrove -minnick -fortenberry -carrion -bunting -bethel -batiste -woo -whited -underhill -stillwell -silvia -rauch -pippin -perrin -messenger -mancini -lister -kinard -hartmann -fleck -broadway -wilt -treadway -thornhill -speed -spalding -sam -rafferty -pitre -patino -ordonez -linkous -kelleher -homan -holiday -galbraith -feeney -dorris -curtin -coward -camarillo -buss -bunnell -bolt -beeler -autry -alcala -witte -wentz -stidham -shively -nunley -meacham -martins -lemke -lefebvre -kaye -hynes -horowitz -hoppe -holcombe -estrella -dunne -derr -cochrane -brittain -bedard -beauregard -torrence -strunk -soria -simonson -shumaker -scoggins -packer -oconner -moriarty -leroy -kuntz -ives -hutcheson -horan -hales -garmon -fitts -dell -bohn -atchison -worth -wisniewski -will -vanwinkle -sturm -sallee -prosser -moen -lundberg -kunz -kohl -keane -jorgenson -jaynes -funderburk -freed -frame -durr -creamer -cosgrove -candelaria -berlin -batson -vanhoose -thomsen -teeter -sommer -smyth -sena -redmon -orellana -maness -lennon -heflin -goulet -frick -forney -dollar -bunker -asbury -aguiar -talbott -southard -pleasant -mowery -mears -lemmon -krieger -hickson -gracia -elston -duong -delgadillo -dayton -dasilva -conaway -catron -bruton -bradbury -bordelon -bivins -bittner -bergstrom -beals -abell -whelan -travers -tejada -pulley -pino -norfleet -nealy -maes -loper -held -gerald -gatewood -frierson -freund -finnegan -cupp -covey -catalano -boehm -bader -yoon -walston -tenney -sipes -roller -rawlins -medlock -mccaskill -mccallister -marcotte -maclean -hughey -henke -harwell -gladney -gilson -dew -chism -caskey -brandenburg -baylor -villasenor -veal -van -thatcher -stegall -shore -petrie -nowlin -navarrete -muhammad -lombard -loftin -lemaster -kroll -kovach -kimbrell -kidwell -hershberger -fulcher -eng -cantwell -bustos -boland -bobbitt -binkley -wester -weis -verdin -tong -tiller -sisco -sharkey -seymore -rosenbaum -rohr -quinonez -pinkston -nation -malley -logue -lessard -lerner -lebron -krauss -klinger -halstead -haller -getz -burrow -brant -alger -victor -shores -scully -pounds -pfeifer -perron -nelms -munn -mcmaster -mckenney -manns -knudson -hutchens -huskey -goebel -flagg -cushman -click -castellano -carder -bumgarner -blaine -bible -wampler -spinks -robson -neel -mcreynolds -mathias -maas -loera -kasper -jose -jenson -florez -coons -buckingham -brogan -berryman -wilmoth -wilhite -thrash -shephard -seidel -schulze -roldan -pettis -obryan -maki -mackie -hatley -frazer -fiore -falls -chesser -bui -bottoms -bisson -benefield -allman -wilke -trudeau -timm -shifflett -rau -mundy -milliken -mayers -leake -kohn -huntington -horsley -hermann -guerin -fryer -frizzell -foret -flemming -fife -criswell -carbajal -bozeman -boisvert -archie -antonio -angulo -wallen -tapp -silvers -ramsay -oshea -orta -moll -mckeever -mcgehee -luciano -linville -kiefer -ketchum -howerton -groce -gaylord -gass -fusco -corbitt -blythe -betz -bartels -amaral -aiello -yoo -weddle -troy -sun -sperry -seiler -runyan -raley -overby -osteen -olds -mckeown -mauro -matney -lauer -lattimore -hindman -hartwell -fredrickson -fredericks -espino -clegg -carswell -cambell -burkholder -august -woodbury -welker -totten -thornburg -theriault -stitt -stamm -stackhouse -simone -scholl -saxon -rife -razo -quinlan -pinkerton -olivo -nesmith -nall -mattos -leak -lafferty -justus -giron -geer -fielder -eagle -drayton -dortch -conners -conger -chau -boatwright -billiot -barden -armenta -antoine -tibbetts -steadman -slattery -sides -rinaldi -raynor -rayford -pinckney -pettigrew -nickel -milne -matteson -halsey -gonsalves -fellows -durand -desimone -cowley -cowles -brill -barham -barela -barba -ashmore -withrow -valenti -tejeda -spriggs -sayre -salerno -place -peltier -peel -merriman -matheson -lowman -lindstrom -hyland -homer -ha -giroux -fries -frasier -earls -dugas -damon -dabney -collado -briseno -baxley -andre -word -whyte -wenger -vanover -vanburen -thiel -schindler -schiller -rigby -pomeroy -passmore -marble -manzo -mahaffey -lindgren -laflamme -greathouse -fite -ferrari -calabrese -bayne -yamamoto -wick -townes -thames -steel -reinhart -peeler -naranjo -montez -mcdade -mast -markley -marchand -leeper -kong -kellum -hudgens -hennessey -hadden -guess -gainey -coppola -borrego -bolling -beane -ault -slaton -poland -pape -null -mulkey -lightner -langer -hillard -glasgow -fabian -ethridge -enright -derosa -baskin -alfred -weinberg -turman -tinker -somerville -pardo -noll -lashley -ingraham -hiller -hendon -glaze -flora -cothran -cooksey -conte -carrico -apple -abner -wooley -swope -summerlin -sturgis -sturdivant -stott -spurgeon -spillman -speight -roussel -popp -nutter -mckeon -mazza -magnuson -lanning -kozak -jankowski -heyward -forster -corwin -callaghan -bays -wortham -usher -theriot -sayers -sabo -rupert -poling -nathan -loya -lieberman -levi -laroche -labelle -howes -harr -garay -fogarty -everson -durkin -dominquez -chaves -chambliss -alfonso -witcher -wilber -vieira -vandiver -terrill -stoker -schreiner -nestor -moorman -liddell -lew -lawhorn -krug -irons -hylton -hollenbeck -herrin -hembree -hair -goolsby -goodin -gilmer -foltz -dinkins -daughtry -caban -brim -briley -bilodeau -bear -wyant -vergara -tallent -swearingen -stroup -sherry -scribner -roger -quillen -pitman -monaco -mccants -maxfield -martinson -landon -holtz -flournoy -brookins -brody -baumgardner -angelo -straub -sills -roybal -roundtree -oswalt -money -mcgriff -mcdougall -mccleary -maggard -gragg -gooding -godinez -doolittle -donato -cowell -cassell -bracken -appel -ahmad -zambrano -reuter -perea -olive -nakamura -monaghan -mickens -mcclinton -mcclary -marler -kish -judkins -gilbreath -freese -flanigan -felts -erdmann -dodds -chew -brownell -brazil -boatright -barreto -slayton -sandberg -saldivar -pettway -odum -narvaez -moultrie -montemayor -merrell -lees -keyser -hoke -hardaway -hannan -gilbertson -fogg -dumont -deberry -coggins -carrera -buxton -bucher -broadnax -beeson -araujo -appleton -amundson -aguayo -ackley -yocum -worsham -shivers -shelly -sanches -sacco -robey -rhoden -pender -ochs -mccurry -madera -luong -luis -knotts -jackman -heinrich -hargrave -gault -forest -comeaux -chitwood -child -caraway -boettcher -bernhardt -barrientos -zink -wickham -whiteman -thorp -stillman -settles -schoonover -roque -riddell -rey -pilcher -phifer -novotny -maple -macleod -hardee -haase -grider -fredrick -earnest -doucette -clausen -christmas -bevins -beamon -badillo -tolley -tindall -soule -snook -sebastian -seale -pitcher -pinkney -pellegrino -nowell -nemeth -nail -mondragon -mclane -lundgren -ingalls -hudspeth -hixson -gearhart -furlong -downes -dionne -dibble -deyoung -cornejo -camara -brookshire -boyette -wolcott -tracey -surratt -sellars -segal -salyer -reeve -rausch -philips -labonte -haro -gower -freeland -fawcett -eads -driggers -donley -collett -cage -bromley -boatman -ballinger -baldridge -volz -trombley -stonge -silas -shanahan -rivard -rhyne -pedroza -matias -mallard -jamieson -hedgepeth -hartnett -estevez -eskridge -denman -chiu -chinn -catlett -carmack -buie -book -bechtel -beardsley -bard -ballou -windsor -ulmer -storm -skeen -robledo -rincon -reitz -piazza -pearl -munger -moten -mcmichael -loftus -ledet -kersey -groff -fowlkes -folk -crumpton -collette -clouse -bettis -villagomez -timmerman -strom -saul -santoro -roddy -phillip -penrod -musselman -macpherson -leboeuf -harless -haddad -guido -golding -fulkerson -fannin -dulaney -dowdell -deane -cottle -ceja -cate -bosley -benge -albritton -voigt -trowbridge -soileau -seely -rome -rohde -pearsall -paulk -orth -nason -mota -mcmullin -marquardt -madigan -hoag -gillum -gayle -gabbard -fenwick -fender -eck -danforth -cushing -cress -creed -cazares -casanova -bey -bettencourt -barringer -baber -stansberry -schramm -rutter -rivero -race -oquendo -necaise -mouton -montenegro -miley -mcgough -marra -macmillan -lock -lamontagne -jasso -jaime -horst -hetrick -heilman -gaytan -gall -fried -fortney -eden -dingle -desjardins -dabbs -burbank -brigham -breland -beaman -banner -arriola -yarborough -wallin -treat -toscano -stowers -reiss -pichardo -orton -mitchel -michels -mcnamee -mccrory -leatherman -kell -keister -jerome -horning -hargett -guay -friday -ferro -deboer -dagostino -clemente -christ -carper -bowler -blanks -beaudry -willie -towle -tafoya -stricklin -strader -soper -sonnier -sigmon -schenk -saddler -rodman -pedigo -mendes -lunn -lohr -lahr -kingsbury -jarman -hume -holliman -hofmann -haworth -harrelson -hambrick -flick -edmunds -dacosta -crossman -colston -chaplin -carrell -budd -weiler -waits -viola -valentino -trantham -tarr -straight -solorio -roebuck -powe -plank -pettus -palm -pagano -mink -luker -leathers -joslin -hartzell -gambrell -fears -deutsch -cepeda -carty -caputo -brewington -bedell -ballew -applewhite -warnock -walz -urena -tudor -reel -pigg -parton -mickelson -meagher -mclellan -mcculley -mandel -leech -lavallee -kraemer -kling -kipp -kingston -kehoe -hochstetler -harriman -gregoire -grabowski -gosselin -gammon -fancher -edens -desai -butt -brannan -armendariz -woolsey -whitehouse -whetstone -ussery -towne -tower -testa -tallman -studer -strait -steinmetz -sorrells -sauceda -rolfe -rae -paddock -mitchem -mcginn -mccrea -luck -lovato -ling -hazen -gilpin -gaynor -fike -devoe -delrio -curiel -burkhardt -bristol -bode -backus -alton -zinn -watanabe -wachter -vanpelt -turnage -shaner -schroder -sato -riordan -quimby -portis -natale -mckoy -mccown -marker -lucio -kilmer -karl -hotchkiss -hesse -halbert -gwinn -godsey -desmond -delisle -chrisman -canter -brook -arbogast -angell -acree -yancy -woolley -wesson -weatherspoon -trainor -stockman -spiller -sipe -rooks -reavis -propst -porras -neilson -mullens -loucks -llewellyn -lamont -kumar -koester -klingensmith -kirsch -kester -honaker -hodson -hennessy -helmick -garrity -garibay -fee -drain -casarez -callis -botello -bay -aycock -avant -angle -wingard -wayman -tully -theisen -szymanski -stansbury -segovia -rudy -rainwater -preece -pirtle -padron -mincey -mckelvey -mathes -marty -larrabee -kornegay -klug -judy -ingersoll -hecht -germain -eggers -dykstra -denis -deering -decoteau -deason -dearing -cofield -carrigan -brush -bonham -bahr -aucoin -appleby -almonte -yager -womble -wimmer -weimer -vanderpool -stancil -sprinkle -romine -remington -pfaff -peckham -olivera -meraz -maze -lathrop -koehn -jonas -hazelton -halvorson -hallock -haddock -ducharme -dehaven -colton -caruthers -brehm -bosworth -bost -blow -bias -beeman -basile -bane -aikens -zachary -wold -walther -tabb -suber -strawn -stocks -stocker -shirey -schlosser -salvador -riedel -rembert -reimer -pyles -pickle -peele -merriweather -letourneau -latta -kidder -hixon -hillis -hight -herbst -henriquez -haygood -hamill -gabel -fritts -eubank -duty -dawes -correll -coffee -cha -bushey -buchholz -brotherton -bridge -botts -barnwell -auger -atchley -westphal -veilleux -ulloa -truman -stutzman -shriver -ryals -prior -pilkington -newport -moyers -miracle -marrs -mangrum -maddux -lockard -laing -kuhl -harney -hammock -hamlett -felker -doerr -depriest -carrasquillo -carothers -bogle -blood -bischoff -bergen -albanese -wyckoff -vermillion -vansickle -thibault -tetreault -stickney -shoemake -ruggiero -rawson -racine -philpot -paschal -mcelhaney -mathison -legrand -lapierre -kwan -kremer -jiles -hilbert -geyer -faircloth -ehlers -egbert -desrosiers -dalrymple -cotten -cashman -cadena -breeding -boardman -alcaraz -ahn -wyrick -therrien -tankersley -strickler -puryear -plourde -pattison -pardue -milan -mcginty -mcevoy -landreth -kuhns -koon -hewett -giddens -everette -emerick -eades -deangelis -cosme -ceballos -birdsong -benham -bemis -armour -anguiano -angeles -welborn -tsosie -storms -shoup -sessoms -samaniego -rood -rojo -rhinehart -raby -northcutt -myer -munguia -morehouse -more -mcdevitt -mateo -mallett -lozada -lemoine -kuehn -hallett -grim -gillard -gaylor -garman -gallaher -feaster -faris -darrow -dardar -coney -carreon -byron -braithwaite -boylan -boyett -born -bixler -bigham -benford -barragan -barnum -zuber -wyche -westcott -vining -stoltzfus -simonds -shupe -sabin -ruble -rittenhouse -richman -perrone -mulholland -millan -meister -mathew -lomeli -kite -jemison -hulett -holler -hickerson -herold -hazelwood -griffen -gause -forde -eisenberg -dilworth -charron -chaisson -brodie -bristow -breunig -brace -boutwell -bentz -belk -bayless -batchelder -baran -baeza -zimmermann -weathersby -volk -toole -theis -tedesco -shine -searle -schenck -satterwhite -sandy -ruelas -royce -rankins -partida -nesbit -morel -menchaca -levasseur -kaylor -johnstone -hulse -hollar -hersey -harrigan -harbison -guyer -gish -giese -gerlach -geller -geisler -falcone -ernest -elwell -doucet -deese -darr -corder -chafin -byler -bussell -burdett -brasher -bowe -bellinger -bastian -barner -alleyne -wilborn -weil -wegner -wales -tatro -spitzer -smithers -schoen -resendez -pete -parisi -overman -obrian -mudd -moy -mclaren -mahler -maggio -lindner -lalonde -lacasse -laboy -killion -kahl -jessen -jamerson -houk -henshaw -gustin -groom -graber -durst -duenas -davey -cundiff -conlon -colunga -coakley -chiles -capers -buell -bricker -bissonnette -birmingham -bartz -bagby -zayas -volpe -treece -toombs -thom -terrazas -swinney -skiles -silveira -shouse -senn -rambo -ramage -nez -moua -marlin -malik -langham -kyles -holston -hoagland -herd -hector -feller -emory -denison -corliss -carraway -burford -bickel -ambriz -abercrombie -yamada -winner -weidner -waddle -verduzco -thurmond -swindle -schrock -sanabria -rosenberger -probst -peabody -olinger -neighbors -nazario -mccafferty -mcbroom -mcabee -mazur -matherne -mapes -leverett -killingsworth -heisler -griego -grande -gosnell -frankel -franke -ferrante -fenn -elmer -ehrlich -christopherso -chick -chasse -chancellor -caton -brunelle -bly -bloomfield -babbitt -azevedo -abramson -ables -abeyta -youmans -wozniak -wainwright -summer -stowell -smitherman -sites -samuelson -runge -rule -rothman -rosenfeld -quan -peake -oxford -owings -olmos -munro -moreira -leatherwood -larkins -krantz -kovacs -kizer -kindred -karnes -jaffe -hubbell -hosey -hauck -harold -goodell -favors -erdman -dvorak -doane -cureton -cofer -buehler -bierman -berndt -banta -annis -abram -abdullah -warwick -waltz -turcotte -trinh -torrey -stith -seger -sachs -quesada -pinder -peppers -pascual -paschall -parkhurst -ozuna -oster -nicholls -mortimer -lheureux -lavalley -kimura -jablonski -haun -gourley -gilligan -fix -derby -croy -cotto -cargill -burwell -burgett -buckman -brett -booher -adorno -wrenn -whittemore -urias -szabo -sayles -saiz -rutland -rael -plant -pharr -penney -pelkey -ogrady -nickell -musick -moats -mather -massa -laurent -kirschner -kieffer -kellar -hendershot -gott -godoy -gadson -furtado -fiedler -erskine -edison -dutcher -dever -daggett -chevalier -chao -brake -ballesteros -amerson -alejandro -wingo -waldon -trott -spikes -silvey -showers -schlegel -rue -ritz -pepin -pelayo -parsley -palermo -moorehead -mchale -lett -kocher -kilburn -iglesias -humble -hulbert -huckaby -hix -haven -hartford -hardiman -gurney -grigg -grasso -goings -fillmore -farber -depew -dandrea -dame -cowen -covarrubias -cory -burrus -bracy -ardoin -thompkins -suzuki -standley -russel -radcliffe -pohl -persaud -percy -parenteau -pabon -newson -newhouse -napolitano -mulcahy -maya -malave -keim -hooten -hernandes -heffernan -hearne -greenleaf -glick -fuhrman -fetter -faria -dishman -dickenson -crites -criss -clapper -chenault -castor -casto -bugg -bove -bonney -blessing -ard -anderton -allgood -alderson -woodman -wisdom -warrick -toomey -tooley -tarrant -summerville -stebbins -sokol -sink -searles -schutz -schumann -scheer -remillard -raper -proulx -palmore -monroy -miguel -messier -melo -melanson -mashburn -manzano -lussier -lovely -lien -jenks -huneycutt -hartwig -grimsley -fulk -fielding -fidler -engstrom -eldred -dantzler -crandell -ching -calder -brumley -breton -brann -bramlett -boykins -bianco -bancroft -almaraz -alcantar -whitmer -whitener -welton -vineyard -su -rahn -paquin -mizell -mix -mcmillin -mckean -marston -maciel -lundquist -louie -liggins -lampkin -kranz -koski -kirkham -jiminez -hazzard -harrod -graziano -grammer -gendron -garrido -fordham -englert -elwood -dryden -demoss -deluna -crabb -comeau -claudio -brummett -blume -benally -wessel -vanbuskirk -thorson -stumpf -stockwell -rocco -reams -radtke -rackley -pelton -niemi -newland -nelsen -morrissette -miramontes -mcginley -mccluskey -marley -marchant -luevano -lampe -lail -jeffcoat -infante -hu -hinman -gaona -erb -eady -desmarais -decosta -dansby -cisco -choe -breckenridge -bostwick -borg -bianchi -beer -alberts -adrian -wilkie -whorton -vargo -tait -sylvia -soucy -schuman -ousley -mumford -lum -lippert -leath -lavergne -laliberte -kirksey -kenner -johnsen -izzo -hiles -gullett -greenwell -gaspar -galbreath -gaitan -ericson -duck -delapaz -croom -cottingham -clift -bushnell -boozer -bice -bernardo -beason -arrowood -waring -voorhees -truax -shreve -shockey -schatz -sandifer -rubino -rozier -roseberry -roll -player -pieper -peden -nester -nave -murphey -malinowski -macgregor -liang -lafrance -kunkle -kirkman -jorge -hipp -hasty -haddix -gervais -gerdes -garfield -gamache -fouts -fitzwater -dillingham -deming -deanda -cedeno -cannady -burson -bouldin -arceneaux -woodhouse -whitford -wescott -welty -weigel -torgerson -toms -surber -sunderland -sterner -setzer -salvatore -riojas -pumphrey -puga -pedro -patch -metts -mcgarry -mccandless -magill -lupo -loveland -llamas -leclerc -koons -kahler -huss -holbert -heintz -haupt -grimmett -gaskill -flower -ellingson -dorr -dingess -deweese -desilva -crossley -cordeiro -converse -conde -cheeks -caldera -cairns -burmeister -burkhalter -brawner -bott -youngs -vierra -valladares -tiffany -shrum -shropshire -sevilla -rusk -roof -rodarte -pedraza -nino -montana -merino -mcminn -markle -mapp -lucia -lajoie -koerner -kittrell -kato -hyder -hollifield -heiser -hazlett -greenwald -fant -eldredge -dreher -delafuente -cravens -claypool -beecher -aronson -alanis -worthen -wojcik -winger -whitacre -wellington -valverde -valdivia -troupe -thrower -swindell -suttles -suh -stroman -spires -slate -shealy -sarver -sartin -sadowski -rondeau -rolon -rick -rex -rascon -priddy -pine -paulino -nolte -munroe -molloy -mellon -mciver -lykins -loggins -lillie -lenoir -klotz -kempf -jone -hupp -hollowell -hollander -haynie -hassan -harkness -harker -gottlieb -frith -eddins -driskell -doggett -densmore -charette -cassady -carrol -byrum -burcham -buggs -benn -whitted -warrington -vandusen -vaillancourt -steger -spell -siebert -scofield -quirk -purser -plumb -orcutt -northern -nordstrom -mosely -michalski -mcphail -mcdavid -mccraw -martini -marchese -mannino -leo -lefevre -largent -lanza -kress -isham -hunsaker -hoch -hildebrandt -guarino -grijalva -graybill -fick -ewell -ewald -deangelo -cusick -crumley -coston -cathcart -carruthers -bullington -brian -bowes -blain -blackford -barboza -yingling -woodland -wert -weiland -varga -silverstein -sievers -shuster -shumway -scudder -runnels -rumsey -renfroe -provencher -polley -mohler -middlebrooks -kutz -koster -korn -grow -groth -glidden -fazio -deen -corn -copper -chipman -chenoweth -champlin -cedillo -carrero -carmody -buckles -brien -boutin -bosch -bill -berkowitz -altamirano -wilfong -wiegand -waites -truesdale -toussaint -tobey -tedder -steelman -sirois -schnell -robichaud -ridge -richburg -pray -plumley -pizarro -piercy -ortego -oberg -neace -music -mickey -mertz -mcnew -matta -lawyer -lapp -lair -kibler -jessie -howlett -hollister -hofer -hatten -hagler -germany -falgoust -engelhardt -eberle -eastwood -dombrowski -dinsmore -daye -cool -casares -capone -braud -balch -autrey -wendel -tyndall -toy -strobel -stoltz -spinelli -serrato -rochester -reber -real -rathbone -palomino -noah -nickels -mayle -mathers -mach -loeffler -littrell -levinson -leong -lemire -lejeune -lazo -lasley -koller -kennard -jester -hoelscher -hintz -hagerman -greaves -fore -eudy -engler -corrales -cordes -brunet -bidwell -bennet -bare -tyrrell -tharpe -swinton -stribling -steven -southworth -sisneros -shane -savoie -samons -ruvalcaba -roscoe -ries -ramer -omara -mosqueda -millar -mcpeak -macomber -luckey -litton -lehr -lavin -hubbs -hoard -hibbs -hagans -futrell -exum -evenson -dicks -culler -chou -carbaugh -callen -brashear -bloomer -blakeney -bigler -addington -woodford -witter -unruh -tolentino -sumrall -stgermain -smock -sherer -salem -rochelle -rayner -pooler -oquinn -nero -milano -mcglothlin -mars -linden -kowal -kerrigan -ibrahim -harvell -hanrahan -goodall -geist -fussell -fung -ferebee -federico -eley -eggert -dorsett -dingman -destefano -colucci -clemmer -caesar -burnell -brumbaugh -boddie -berryhill -avelar -alcantara -abbey -winder -winchell -vandenberg -trotman -thurber -thibeault -stlouis -stilwell -sperling -shattuck -sarmiento -ruppert -rumph -renaud -randazzo -rademacher -quiles -pearman -palomo -mercurio -lowrey -lindeman -lawlor -larosa -lander -labrecque -kimber -hovis -holifield -henninger -hawkes -hartfield -hann -hague -genovese -garrick -fudge -frink -eddings -dinh -dear -cutter -cribbs -constant -calvillo -bunton -brodeur -bolding -blanding -agosto -zahn -wiener -trussell -tew -tello -teixeira -stephan -speck -sharma -shanklin -sealy -scanlan -santamaria -roundy -robichaux -ringer -rigney -prevost -polson -philip -pass -nord -moxley -mohammed -medford -mccaslin -mcardle -macarthur -lewin -lasher -ketcham -keiser -heine -hackworth -grose -grizzle -grass -gillman -gartner -garth -frazee -fleury -fast -edson -edmonson -derry -deck -cronk -conant -burress -burgin -broom -brockington -bolick -boger -birchfield -billington -baily -bahena -armbruster -anson -yoho -wilcher -tinney -timberlake -thoma -thielen -sutphin -stultz -sikora -serra -schulman -scheffler -santillan -robin -rego -preciado -pinkham -monday -mickle -luu -lomas -lizotte -lent -lenard -kellerman -keil -juan -johanson -hernadez -hartsfield -hang -haber -gorski -farkas -eberhardt -duquette -delano -cropper -cozart -cockerham -chamblee -cartagena -cahoon -buzzell -brister -brewton -blackshear -benfield -aston -ashburn -arruda -wetmore -weise -vaccaro -tucci -sudduth -stromberg -stoops -showalter -shears -runion -rowden -rosenblum -riffle -renfrow -peres -obryant -nicolas -leftwich -lark -landeros -kistler -killough -kerley -kastner -hoggard -hartung -guertin -govan -gatling -gailey -fullmer -fulford -flatt -esquibel -endicott -edmiston -edelstein -dufresne -dressler -dickman -chee -busse -bonnett -bogart -berard -barrington -arena -anton -yoshida -velarde -veach -vanhouten -vachon -tolson -tolman -tennyson -stites -soler -shutt -ruggles -rhone -pegues -ong -neese -muro -moncrief -mefford -mcphee -mcmorris -mceachern -mcclurg -mansour -mai -mader -leija -lecompte -lafountain -labrie -jaquez -heald -hash -hartle -gainer -frisby -farina -eidson -edgerton -dyke -durrett -duhon -cuomo -cobos -cervantez -bybee -brockway -borowski -binion -beery -arguello -amaro -acton -yuen -winton -wigfall -weekley -vidrine -vannoy -tardiff -shoop -shilling -schick -sand -safford -prendergast -pilgrim -pellerin -osuna -nissen -nalley -moritz -moller -messner -messick -merry -merrifield -mcguinness -matherly -marcano -mahone -lemos -lebrun -jara -hoffer -hewlett -herren -hecker -haws -haug -hack -gwin -gober -gilliard -fredette -favela -echeverria -downer -donofrio -desrochers -dee -crozier -corson -clyde -bechtold -argueta -aparicio -zamudio -willette -westover -westerman -utter -troyer -thies -tapley -slavin -shirk -sandler -roop -rimmer -raymer -range -radcliff -otten -moorer -millet -mckibben -mccutchen -mcavoy -mcadoo -mayorga -mastin -martineau -marek -madore -leflore -kroeger -kennon -jimerson -javier -hostetter -hornback -hendley -hance -guardado -granado -gowen -goodale -flinn -fleetwood -fitz -durkee -duprey -dipietro -dilley -clyburn -brawley -beckley -arana -weatherby -vollmer -victoria -vestal -tunnell -trigg -tingle -takahashi -sweatt -storer -snapp -shiver -rooker -red -rathbun -poisson -perrine -perri -pastor -parmer -parke -pare -papa -palmieri -nottingham -midkiff -mecham -mccomas -mcalpine -lovelady -lillard -lally -knopp -kile -kiger -haile -gupta -goldsberry -gilreath -fulks -friesen -franzen -flack -findlay -ferland -dreyer -dore -dennard -deckard -debose -crim -coulombe -cork -chancey -cantor -branton -bissell -barns -woolard -witham -wasserman -waldo -spiegel -shoffner -scholz -ruch -rossman -ready -petry -palacio -paez -neary -mortenson -millsap -miele -mick -menke -mckim -mcanally -martines -manor -malcom -lemley -larochelle -klaus -klatt -kaufmann -kapp -helmer -hedge -halloran -glisson -frechette -fontana -enoch -eagan -drum -distefano -danley -creekmore -chartier -chaffee -carillo -burg -bolinger -berkley -benz -basso -bash -barrier -zelaya -woodring -witkowski -wilmot -wilkens -wieland -virgil -verdugo -urquhart -tsai -timms -swiger -swaim -sussman -scarlett -pires -molnar -mcatee -maurice -lowder -loos -linker -landes -kingery -keeley -hufford -higa -hendren -hammack -hamann -gillam -gerhardt -fell -eugene -edelman -eby -delk -deans -curl -constantine -cleaver -claar -casiano -carruth -carlyle -bump -brophy -bolanos -bibbs -bessette -beggs -baugher -bartel -averill -andresen -amin -alden -adames -wildman -via -valente -turnbow -tse -swink -sublett -stroh -stringfellow -ridgway -pugliese -poteat -pang -ohare -neubauer -murchison -mohamed -mingo -lucky -lemmons -kwon -kellam -kean -jarmon -hyden -hudak -hollinger -henkel -hemingway -hasson -hansel -halter -haire -goodnight -ginsberg -gillispie -fogel -flory -etter -elledge -eckman -deas -currin -crafton -coomer -colter -claxton -bulter -braddock -bowyer -blizzard -binns -bing -bellows -baskerville -barros -ansley -woolf -wight -waldman -wadley -tull -trull -tesch -struck -stouffer -stadler -slay -shubert -sedillo -santacruz -reinke -raleigh -poynter -neri -neale -natividad -mowry -moralez -monger -mitchum -merryman -manion -macdougall -lux -litchfield -ley -levitt -lepage -lasalle -laine -khoury -kavanagh -karns -ivie -huebner -hodgkins -halpin -garica -eversole -dutra -dunagan -duffey -dillman -dillion -deville -dearborn -damato -courson -coulson -burdine -bryce -bousquet -bonin -bish -atencio -westbrooks -wages -vaca -tye -toner -tomas -tillis -swett -surface -struble -stanfill -son -solorzano -slusher -sipple -sim -silvas -shults -schexnayder -saez -rodas -rager -pulver -plaza -penton -paniagua -meneses -mcfarlin -mcauley -matz -maloy -magruder -lohman -landa -lacombe -jaimes -hom -holzer -holst -heil -hackler -grundy -gregor -gilkey -farnham -durfee -dunton -dunston -duda -dews -dana -craver -corriveau -conwell -colella -chambless -bremer -boutte -bourassa -blaisdell -backman -babineaux -audette -alleman -towner -taveras -tarango -sullins -suiter -stallard -solberg -schlueter -poulos -pimental -owsley -olivier -okelley -nations -moffatt -metcalfe -meekins -medellin -mcglynn -mccowan -marriott -marable -lennox -lamoureux -koss -kerby -karp -jason -isenberg -howze -hockenberry -highsmith -harbour -hallmark -gusman -greeley -giddings -gaudet -gallup -fleenor -eicher -edington -dimaggio -dement -demello -decastro -cruise -bushman -brundage -brooker -brooke -bourg -board -blackstock -bergmann -beaton -banister -argo -appling -wortman -watterson -villalpando -tillotson -tighe -sundberg -sternberg -stamey -speaks -shipe -seeger -scarberry -sattler -sain -rothstein -poteet -plowman -pettiford -penland -peach -partain -pankey -oyler -ogletree -ogburn -moton -million -merkel -mask -markus -lucier -lazarus -lavelle -lakey -kratz -kinser -kershaw -josephson -jesse -imhoff -ibanez -hendry -hammon -frisbie -friedrich -frawley -fraga -forester -eskew -emmert -drennan -doyon -dominick -dandridge -cumming -cawley -carvajal -bracey -belisle -batey -ahner -wysocki -weiser -veliz -tincher -sherlock -santo -sansone -sankey -sandstrom -sale -rohrer -risner -pridemore -pfeffer -persinger -peery -oubre -orange -nowicki -musgrave -murdoch -mullinax -mccary -mathieu -livengood -leonardo -kyser -klink -kimes -kellner -kavanaugh -kasten -imes -hoey -hinshaw -halley -hake -gurule -grube -grillo -geter -gatto -garver -garretson -farwell -eiland -dunford -decarlo -corso -core -colman -collard -cleghorn -chasteen -cavender -carlile -calvo -byerly -brogdon -broadwater -breault -bono -bergin -behr -ballenger -amick -yan -vice -tamez -stiffler -steinke -simmon -shankle -schaller -salmons -sackett -saad -rideout -reader -ratcliffe -rao -ranson -randell -plascencia -petterson -olszewski -olney -olguin -nilsson -nevels -morelli -montiel -monge -michell -michaelson -mertens -mcchesney -mcalpin -mathewson -lower -loudermilk -lineberry -liggett -lamp -kinlaw -kight -just -jost -hereford -hardeman -halpern -halliday -hafer -gaul -friel -freitag -frances -forsberg -evangelista -doering -dicarlo -dendy -delp -deguzman -dameron -curtiss -cousin -cosper -charley -cauthen -cao -camper -bradberry -bouton -bonnell -bixby -bieber -beveridge -belle -bedwell -barhorst -bannon -baltazar -baier -ayotte -attaway -arenas -alex -abrego -watford -valley -turgeon -tunstall -thaxton -thai -tenorio -stotts -sthilaire -spiker -shedd -seng -seabolt -scalf -salyers -ruhl -rowlett -robinett -pfister -perlman -pepe -parkman -paradise -olin -nunnally -norvell -napper -modlin -mckellar -mcclean -mascarenas -manchester -leibowitz -ledezma -kuhlman -kobayashi -hunley -holmquist -hinkley -hazard -hartsell -gribble -gravely -fifield -eliason -doctor -doak -crossland -cover -clair -carleton -butters -bridgeman -bojorquez -boggess -banker -auten -woosley -wine -whiteley -wexler -twomey -tullis -townley -to -standridge -stamp -springs -santoyo -rueda -riendeau -revell -pless -ottinger -nigro -nickles -mulvey -menefee -mcshane -mcloughlin -mckinzie -marrow -markey -mariano -lockridge -lipsey -knisley -knepper -kitts -kiel -jinks -hathcock -godin -gallego -fikes -fecteau -estabrook -ellinger -dustin -dunlop -dudek -diego -countryman -chauvin -chatham -bullins -brownfield -boughton -bloodworth -bibb -baucom -barbieri -aubin -armitage -alessi -absher -abbate -zito -woolery -wiggs -wacker -violette -tynes -tolle -telles -tarter -swarey -strode -stockdale -stella -stalnaker -spina -schiff -saari -risley -reading -rameriz -rakes -pettaway -penner -paulus -palladino -omeara -montelongo -melnick -mehta -mcgary -mccourt -mccollough -marchetti -manzanares -lowther -leiva -lauderdale -lafontaine -kowalczyk -knighton -joubert -jaworski -ide -huth -hurdle -hung -housley -hackman -gulick -gordy -gilstrap -gehrke -gebhart -gaudette -foxworth -finger -essex -endres -dunkle -clare -cimino -cardinal -caddell -brauer -braley -bodine -blackmore -belden -backer -ayer -andress -alva -wisner -walk -vuong -valliere -twigg -tso -tavarez -strahan -steib -staub -sowder -shoulders -seiber -schutt -scharf -schade -rodriques -risinger -renshaw -rath -rahman -presnell -pillow -piatt -pasquale -nieman -nicol -nevins -milford -mcilwain -mcgaha -mccully -mccomb -maye -massengale -macedo -lines -lesher -leland -kearse -jauregui -husted -hudnall -holmberg -hertel -hershey -hardie -glidewell -frausto -fassett -dash -dalessandro -dahlgren -corum -constantino -conlin -colquitt -colombo -claycomb -carley -cardin -cancel -buller -boring -boney -bocanegra -blazer -biggers -benedetto -araiza -andino -albin -zorn -werth -weisman -walley -vanegas -ulibarri -towers -towe -tedford -teasley -suttle -steffens -stcyr -squire -smythe -singley -sifuentes -shuck -session -schram -sass -rieger -ridenhour -rickert -richerson -rayborn -rabe -raab -pendley -pastore -ordway -moynihan -mellott -mckissick -mcgann -mccready -mauney -marrufo -list -lenhart -lazar -lafave -keele -kautz -jardine -jahnke -jacobo -hord -hardcastle -hageman -griffey -giglio -gehring -fortson -duque -duplessis -donner -dicken -derosier -deitz -dalessio -cyrus -cram -chi -center -castleman -candelario -callison -caceres -bozarth -biles -bejarano -beech -bashaw -avina -armentrout -angus -alverez -acord -zack -waterhouse -vereen -vanlandingham -uhl -strawser -shotwell -severance -seltzer -schoonmaker -schock -schaub -schaffner -roeder -rodrigez -riffe -rhine -rasberry -rancourt -railey -quade -pursley -prouty -perdomo -oxley -osterman -nickens -murphree -mounts -monte -merida -maus -mattern -masse -martinelli -mangan -lutes -ludwick -loney -laureano -lasater -knighten -kissinger -kimsey -kessinger -honea -hollingshead -hockett -heyer -heron -gurrola -gove -glasscock -gillett -galan -featherstone -eckhardt -duron -dunson -dasher -culbreth -cowden -cowans -claypoole -churchwell -chabot -caviness -cater -caston -callan -byington -burkey -boden -beckford -atwater -arms -archambault -alvey -alsup -yon -whisenant -weese -voyles -verret -tsang -tessier -sweitzer -sherwin -shaughnessy -revis -remy -prine -philpott -peavy -paynter -parmenter -ovalle -offutt -nightingale -newlin -nakano -myatt -muth -mohan -mcmillon -mccarley -mccaleb -maxson -marinelli -maley -macy -liston -letendre -kain -huntsman -hirst -hagerty -gulledge -greenway -grajeda -gorton -goines -gittens -frederickson -fanelli -embree -eichelberger -dunkin -dull -dixson -dillow -defelice -chumley -burleigh -borkowski -binette -biggerstaff -berglund -beller -audet -arbuckle -allain -alfano -zander -youngman -wittman -weintraub -vanzant -vaden -twitty -trader -toon -till -stollings -standifer -spinner -sines -shope -scalise -saville -romans -posada -pisano -otte -nolasco -napoli -mier -merkle -mendiola -melcher -mejias -mcmurry -mccalla -markowitz -marine -manis -mallette -macfarlane -lough -looper -landin -kittle -kinsella -kinnard -hobart -herald -helman -hellman -hartsock -halford -hage -gordan -glasser -gayton -gattis -gastelum -gaspard -frisch -force -fitzhugh -eckstein -eberly -dowden -despain -crumpler -crotty -cornelison -collin -colin -chouinard -chamness -catlin -cann -bumgardner -budde -branum -bradfield -braddy -borst -birdwell -bent -bazan -bank -banas -bade -aubrey -arango -ahearn -addis -zumwalt -wurth -wilk -widener -wagstaff -vella -urrutia -terwilliger -tart -steinman -staats -sloat -rives -riggle -revels -reichard -prickett -poff -pitzer -petro -pell -northrup -nicks -moline -mielke -maynor -mallon -magness -lingle -lindell -lieb -lesko -lebeau -lammers -lafond -kiernan -ketron -jurado -holmgren -hilburn -hayashi -hashimoto -harbaugh -hans -guillot -gard -froehlich -felipe -feinberg -falco -dufour -drees -doney -diep -delao -daves -dail -cutting -crowson -coss -congdon -carner -camarena -butterworth -burlingame -bouffard -bloch -bilyeu -barta -bakke -baillargeon -avent -aquilar -ake -aho -zeringue -yeh -yarber -wolfson -wendell -vogler -voelker -truss -troxell -thrift -strouse -spielman -sistrunk -shows -sevigny -schuller -schaaf -ruffner -routh -roseman -ricciardi -peraza -pegram -overturf -olander -odaniel -neu -millner -melchor -maxie -marvel -maroney -machuca -macaluso -livesay -layfield -laskowski -kwiatkowski -ko -kiley -kilby -julien -hovey -heywood -hayman -havard -harville -haigh -hagood -grieco -glassman -gebhardt -garry -freeze -fleischer -fann -elson -eccles -cunha -crumb -crew -blakley -bardwell -abshire -woodham -wines -welter -wargo -varnado -tutt -traynor -swaney -svoboda -stricker -stoffel -stambaugh -sickler -shackleford -selman -seaver -sansom -sanmiguel -royston -rourke -rockett -rioux -puleo -pitchford -persons -normand -nardi -mulvaney -middaugh -manners -malek -lodge -leos -lathan -kujawa -kimbro -killebrew -joshua -houlihan -hobby -hinckley -herod -hepler -hamner -hammel -hallowell -gonsalez -gingerich -gambill -funkhouser -fricke -fewell -falkner -endsley -dulin -drennen -deaver -dambrosio -clover -chadwell -ceasar -castanon -canon -burkes -brune -brisco -brinker -bowker -boldt -berner -bee -beaumont -beaird -bazemore -barrick -arnette -albano -younts -wunderlich -weidman -vanness -tu -toland -theobald -stickler -steiger -stanger -spies -spector -sollars -smedley -seibel -scoville -saito -rye -rummel -rude -rowles -rouleau -roos -rogan -roemer -ream -raya -purkey -priester -perreira -penick -paulin -parkins -overcash -oleson -nicely -neves -muldrow -minard -midgett -michalak -melgar -mcentire -mcauliffe -marti -marte -lydon -lindholm -leyba -leader -langevin -lagasse -lafayette -kesler -kelton -kao -kaminsky -jump -jaggers -humbert -huck -howarth -hinrichs -higley -gupton -guimond -gravois -giguere -fretwell -fontes -feeley -faucher -fall -evan -eichhorn -ecker -earp -dole -dinger -derryberry -demars -deel -copenhaver -collinsworth -colangelo -cloyd -claiborne -caulfield -carlsen -calzada -caffey -broadus -brenneman -bouie -bodnar -blaney -blanc -blades -beltz -behling -begin -barahona -yun -yockey -winkle -windom -wimer -wilford -wash -villatoro -trexler -teran -taliaferro -sydnor -swinson -snelling -smtih -siu -simonton -simoneaux -simoneau -sherrer -seavey -scheel -rushton -rupe -ruano -rodney -rippy -reiner -reiff -rabinowitz -quach -penley -odle -nock -minnich -mckown -mccarver -mcandrew -longley -laux -lamothe -lafreniere -kropp -krick -kates -jepson -huie -howse -howie -henriques -haydon -haught -hatter -hartzog -harkey -grimaldo -goshorn -gormley -gluck -gilroy -gillenwater -giffin -folks -fluker -feder -eyre -eshelman -eakins -dryer -disney -detwiler -delrosario -davisson -celestine -catalan -canning -calton -buster -brammer -botelho -blakney -bartell -averett -askins -aker -zak -worcester -witmer -wiser -winkelman -widmer -whittier -western -weitzel -wardell -wagers -ullman -tupper -tingley -tilghman -talton -simard -seda -scheller -sala -rundell -rost -roa -ribeiro -rabideau -primm -porch -polite -pinon -peart -ostrom -ober -nystrom -nussbaum -nurse -naughton -murr -moorhead -monti -monteiro -melson -meissner -mclin -mcgruder -marotta -makowski -majewski -madewell -lunt -lukens -leininger -lebel -lakin -laguna -kepler -jaques -hunnicutt -hungerford -hoopes -hertz -heins -hammers -halliburton -grosso -gravitt -glasper -gideon -gallman -gallaway -funke -fulbright -falgout -eakin -dostie -dorado -dewberry -derose -cutshall -crampton -costanzo -colletti -cloninger -claytor -chiang -canterbury -campagna -burd -brokaw -broaddus -bretz -brainard -binford -bilbrey -alpert -aitken -ahlers -zajac -yale -woolfolk -witten -windle -wayland -tramel -tittle -talavera -suter -straley -stetson -specht -sommerville -soloman -so -skeens -sigman -sibert -shavers -schuck -schmit -sartain -sabol -rosenblatt -rollo -rashid -rabb -province -polston -nyberg -northrop -navarra -muldoon -mulder -mikesell -mcdougald -mcburney -mauricio -mariscal -lui -lozier -lingerfelt -legere -latour -lagunas -lacour -kurth -ku -killen -kiely -kayser -kahle -julius -isley -huertas -hower -hinz -haugh -gumm -given -galicia -fortunato -flake -dunleavy -duggins -doby -digiovanni -devaney -deltoro -cribb -crank -corpuz -coronel -comfort -coen -charbonneau -caine -burchette -blakey -blakemore -bergquist -beene -beaudette -bayles -ballance -bakker -bailes -asberry -arwood -zucker -willman -whitesell -wald -walcott -vancleave -trump -trail -strasser -simas -shorts -shick -schleicher -schaal -saleh -rotz -resnick -raphael -rainer -partee -ollis -oller -oday -noles -munday -mountain -mong -millican -merwin -mazzola -mansell -magallanes -llanes -lewellen -lepore -kisner -keesee -jim -jeanlouis -ingham -hornbeck -hermes -hawn -hartz -harber -haffner -gutshall -guth -grays -grams -gowan -finlay -finkelstein -eyler -enloe -dungan -diez -dearman -dann -cull -crosson -creek -chronister -cassity -campion -callihan -butz -breazeale -blumenthal -billy -berkey -batty -batton -barge -arvizu -alexis -alderete -aldana -albaugh -abernethy -work -wolter -wille -tweed -tollefson -thomasson -teter -testerman -sproul -spates -southwick -soukup -skelly -senter -sealey -sawicki -sargeant -rossiter -rosemond -repp -pound -pink -pifer -ormsby -nickelson -naumann -morabito -monzon -millsaps -millen -mcelrath -marcoux -mantooth -madson -macneil -mackinnon -louque -leister -lampley -kushner -krouse -kirwan -june -jessee -janson -jahn -jacquez -islas -hutt -holladay -hillyer -hepburn -hensel -harrold -guadalupe -gingrich -geis -gales -fults -finnell -ferri -featherston -epley -ebersole -eames -dunigan -drye -dismuke -devaughn -delorenzo -damiano -confer -collum -clower -clow -claussen -clack -caylor -cawthon -casias -carreno -carlo -bluhm -bingaman -bewley -belew -beckner -beamer -barefoot -auld -amey -wolfenbarger -wilkey -wicklund -waltman -villalba -valero -valdovinos -ung -ullrich -tyus -twyman -trost -tardif -tanguay -stripling -steinbach -shumpert -sasaki -sappington -sandusky -reinhold -reinert -quijano -pye -poor -placencia -pinkard -phinney -perrotta -pernell -parrett -oxendine -owensby -orman -nuno -mori -mcroberts -mcneese -mckamey -mccullum -markel -mardis -maines -lueck -lubin -lefler -leffler -lavery -larios -labarbera -kershner -josey -jeanbaptiste -izaguirre -hermosillo -haviland -hartshorn -hamlet -hafner -ginter -getty -franck -fiske -emmett -dufrene -doody -davie -dangerfield -dahlberg -cuthbertson -crone -coffelt -claus -chidester -chesson -cauley -caudell -cantara -campo -caines -bullis -bucci -brochu -bosco -bogard -bickerstaff -benning -arzola -antonelli -adkinson -zellers -wulf -worsley -woolridge -whitton -westerfield -walczak -vassar -truett -trueblood -trawick -townsley -topping -tobar -telford -sung -steverson -stagg -sitton -sill -sherrell -sergent -schoenfeld -sarabia -rutkowski -rubenstein -rigdon -prentiss -pomerleau -plumlee -phoenix -philbrick -peer -patty -patnode -oloughlin -obregon -nuss -napoleon -morell -moose -mikell -mele -mcinerney -mcguigan -mcbrayer -lore -lor -look -lollar -lakes -kuehl -kinzer -kamp -joplin -jacobi -howells -holstein -hedden -hassler -harty -halle -greig -granville -gouge -goodrum -gerhart -geier -geddes -gast -forehand -ferree -fendley -feltner -fang -esqueda -encarnacion -eichler -egger -edmundson -eatmon -dragon -doud -donohoe -donelson -dilorenzo -digiacomo -diggins -delozier -dejong -danford -crippen -coppage -cogswell -clardy -cioffi -cabe -brunette -bresnahan -bramble -blomquist -blackstone -biller -bevis -bevan -bethune -benbow -baty -basinger -balcom -andes -aman -aguero -adkisson -yandell -wilds -whisenhunt -weigand -weeden -voight -villar -trottier -tillett -suazo -setser -scurry -schuh -schreck -schauer -samora -roane -rinker -reimers -reason -ratchford -popovich -parkin -nichol -natal -melville -mcbryde -magdaleno -loehr -lockman -lingo -leduc -larocca -lao -lamere -laclair -krall -korte -koger -jumper -jalbert -hughs -higbee -henton -heaney -haith -gump -greeson -goodloe -gholston -gasper -gagliardi -fregoso -farthing -fabrizio -ensor -elswick -elgin -eklund -eaddy -drouin -dorton -dizon -derouen -delia -deherrera -davy -dark -dampier -cullum -culley -cowgill -cardoso -cardinale -brodsky -broadbent -brimmer -briceno -branscum -bolyard -boley -bennington -beadle -baur -ballentine -azure -aultman -augustus -asuncion -arciniega -aguila -aceves -yepez -yap -woodrum -wethington -weissman -veloz -trusty -troup -trammel -theodore -tarpley -stivers -steck -sprayberry -spraggins -spitler -spiers -sohn -seagraves -schiffman -rudnick -rizo -riccio -rennie -quinton -quackenbush -puma -plott -pearcy -parada -paiz -munford -moskowitz -mease -mcnary -mccusker -matt -lozoya -longmire -loesch -lasky -kuhlmann -krieg -koziol -kowalewski -konrad -kindle -jowers -jolin -jaco -hua -horgan -hine -hileman -hepner -heise -heady -hawkinson -hannigan -haberman -guilford -grimaldi -gilles -garton -gagliano -fruge -follett -fiscus -ferretti -ebner -easterday -eanes -dirks -dimarco -depalma -deforest -dance -cruce -craighead -christner -candler -cadwell -burchell -buettner -brinton -breed -brazier -brannen -brame -bova -bomar -blakeslee -belknap -bangs -balzer -athey -armes -alvis -alverson -alvardo -alter -zhao -yeung -yen -wheelock -westlund -wessels -volkman -threadgill -thelen -tandy -tague -ta -symons -swinford -sturtevant -straka -stier -stagner -segarra -seawright -sack -rutan -roux -ringler -riker -ramsdell -quattlebaum -purifoy -poulson -permenter -peloquin -pasley -pagel -osman -obannon -nygaard -nipper -newcomer -munos -motta -meadors -mcquiston -mcniel -mcmann -mccrae -mayne -matte -martine -lucy -legault -lechner -lack -kucera -krohn -kratzer -koopman -judson -jeske -horrocks -homes -hock -hibbler -hesson -hersh -harvin -halvorsen -griner -grindle -glen -gladstone -garofalo -frampton -forbis -fernando -eddington -diorio -dingus -dewar -desalvo -curcio -creasy -cortese -cordoba -connally -cluff -cascio -capuano -canaday -calabro -bussard -brayton -borja -bigley -arnone -arguelles -acuff -zamarripa -wooton -wolfgang -widner -wideman -threatt -thiele -templin -teeters -synder -swint -swick -sturges -stogner -stedman -spratt -six -siegfried -shetler -scull -savino -sather -rothwell -rook -rone -rolf -rhee -quevedo -privett -pouliot -poche -pickel -petrillo -pellegrini -peaslee -partlow -otey -nunnery -morelock -morello -meunier -messinger -mckie -mccubbin -mccarron -maria -lerch -lavine -laverty -lariviere -lamkin -kugler -krol -kissel -keeter -hummer -hubble -hickox -hetzel -hayner -hagy -hadlock -groh -gregorio -gottschalk -goodsell -gloria -gerry -gassaway -garrard -galligan -fye -firth -fenderson -feinstein -etienne -engleman -emrick -ellender -drews -doiron -degraw -deegan -dart -crissman -corr -cookson -coil -cleaves -charest -chapple -chaparro -castano -carpio -byer -bufford -bridgewater -bridgers -brandes -borrero -bonanno -aube -ancheta -abarca -abad -yung -yim -wooster -woodrow -wimbush -willhite -willams -wigley -weisberg -wardlaw -vigue -vanhook -unknow -torre -tasker -tarbox -strachan -standard -slover -shamblin -semple -schuyler -schrimsher -sayer -salzman -salomon -rubalcava -riles -rickey -reneau -reichel -rayfield -rabon -pyatt -prindle -poss -polito -plemmons -pesce -perrault -pereyra -ostrowski -nilsen -niemeyer -nick -munsey -mundell -moncada -miceli -meader -mcmasters -mckeehan -matsumoto -marron -marden -lizarraga -lingenfelter -lewallen -laurence -langan -lamanna -kovac -kinsler -kephart -keown -kass -kammerer -jeffreys -hysell -householder -hosmer -hardnett -hanner -guyette -greening -glazer -ginder -fromm -fortuna -fluellen -finkle -fey -fessler -essary -eisele -duren -dittmer -crochet -cosentino -cogan -coelho -cavin -carrizales -campuzano -brough -bow -bopp -bookman -bobb -blouin -beesley -battista -bascom -bakken -badgett -arneson -anselmo -albino -ahumada -agustin -woodyard -wolters -wireman -wilton -willison -warman -wan -waldrup -vowell -vantassel -vale -twombly -toomer -tennison -teets -tedeschi -swanner -swallow -stutz -stelly -sheehy -schermerhorn -scala -sandidge -salters -salo -saechao -roseboro -rolle -ressler -renz -renn -redford -raposa -rainbolt -pompey -pelfrey -orndorff -oney -nolin -nimmons -ney -nardone -myhre -morman -mines -menjivar -mcglone -mccammon -maxon -maris -marciano -manus -maiden -lowrance -lorenzen -lonergan -lollis -littles -lindahl -lansing -lamas -lach -kuster -krawczyk -knuth -knecht -kirkendall -keitt -keever -kantor -jarboe -hoye -houchens -holter -holsinger -hickok -herb -helwig -helgeson -heater -hassett -harner -hamman -hames -hadfield -goree -goldfarb -gaughan -gaudreau -gantz -gallion -frady -foti -flesher -ferrin -faught -engram -elbert -donegan -desouza -degroot -cutright -crowl -criner -coke -coan -clinkscales -chewning -chavira -catchings -carlock -bye -bulger -buenrostro -bramblett -brack -boulware -bordeaux -bookout -bitner -birt -baranowski -baisden -augustin -allmon -alberto -acklin -yoakum -wilbourn -whisler -weinberger -washer -vasques -vanzandt -vanatta -troxler -tomes -tindle -tims -throckmorton -thach -stpeter -stlaurent -stenson -spry -spitz -songer -snavely -sly -sleeper -shroyer -shortridge -shenk -sevier -seabrook -scrivner -saltzman -rosenberry -rockwood -robeson -roan -reiser -redwine -ramires -raber -profit -posner -popham -pipes -piotrowski -pinard -peterkin -pelham -peiffer -peay -peavey -nadler -musso -milo -millett -mestas -mcgowen -marques -marasco -manriquez -manos -mair -lipps -lesser -leiker -leeds -krumm -knorr -kinslow -kessel -kendricks -kelm -ito -irick -ickes -hurlburt -horta -hoekstra -heuer -helmuth -heatherly -hampson -hagar -haga -greenlaw -grau -godbey -gingras -gillies -gibb -gayden -gauvin -garrow -fontanez -florio -fleischman -finke -fasano -fan -faith -ezzell -ewers -eveland -eckenrode -duclos -drumm -dimmick -delancey -defazio -deacon -dashiell -damian -cusack -crowther -crigger -cray -coolidge -coldiron -cleland -chalfant -cassel -cape -camire -cabrales -broomfield -brittingham -brisson -brickey -braziel -brazell -bragdon -boulanger -bos -boman -bohannan -beem -barto -barre -barley -baptist -azar -ashbaugh -armistead -almazan -adamski -zendejas -winburn -willaims -wilhoit -westberry -wentzel -wendling -wager -visser -vanscoy -vankirk -vallee -tweedy -thornberry -sweeny -stalker -spradling -spano -smelser -shim -sechrist -schall -scaife -rugg -ruben -rothrock -roesler -riehl -ridings -render -ransdell -radke -pinero -petree -pendergast -peluso -pecoraro -pascoe -panek -oshiro -noon -navarrette -murguia -moores -moberg -mike -michaelis -mcwhirter -mcsweeney -mcquade -mccay -mauk -mariani -marceau -mandeville -maeda -lunde -ludlow -loeb -lindo -linderman -leveille -leith -larock -lambrecht -kulp -kinsley -kimberlin -kesterson -jacinto -ice -hui -hoyos -helfrich -hanke -hail -guillermo -grisby -goyette -gouveia -glazier -gile -gerena -gelinas -gasaway -garden -funches -fujimoto -flynt -fenske -fellers -fehr -eslinger -escalera -enciso -duley -dittman -dineen -diller -devault -dao -collings -clymer -clowers -chavers -charland -castorena -castello -camargo -bunce -bullen -boyes -borchers -borchardt -birnbaum -birdsall -billman -benites -bankhead -ange -ammerman -adkison -yuan -winegar -wickman -wear -warr -warnke -villeneuve -veasey -vassallo -vannatta -vadnais -twilley -truelove -towery -tomblin -tippett -theiss -talkington -talamantes -swart -swanger -streit -straw -stines -stabler -spurling -sobel -sine -simmers -shippy -shiflett -shearin -sauter -sanderlin -rusch -runkle -ruckman -rorie -roesch -roberto -richert -rehm -randel -ragin -quesenberry -puentes -plyler -plotkin -paugh -oshaughnessy -ohalloran -norsworthy -niemann -nader -moorefield -mooneyham -modica -miyamoto -mickel -mebane -mckinnie -mazurek -mancilla -lukas -lovins -loughlin -lotz -lindsley -liddle -levan -lederman -leclaire -lasseter -lapoint -lamoreaux -lafollette -kubiak -kirtley -keffer -kaczmarek -jennette -housman -honey -hiers -hibbert -herrod -hegarty -hathorn -harsh -greenhaw -grafton -govea -gardener -futch -furst -frisbee -fred -franko -forcier -foran -flickinger -fairfield -eure -emrich -embrey -edgington -ecklund -eckard -durante -deyo -delvecchio -deeds -dade -currey -cuff -creswell -cottrill -casavant -cartier -cargile -capel -cammack -calfee -buzzard -burse -burruss -brust -brousseau -bridwell -braaten -borkholder -bloomquist -bjork -bartelt -arp -amburgey -yeary -yao -whitefield -vinyard -vicente -vanvalkenburg -twitchell -timmins -tester -tapper -stringham -starcher -spotts -slaugh -simonsen -sheffer -sequeira -rosati -rode -rhymes -reza -record -quint -pollak -peirce -patillo -parkerson -paiva -nilson -nice -nevin -narcisse -nair -mitton -merriam -merced -meiners -mckain -mcelveen -mcbeth -marsden -marez -manke -mahurin -mabrey -luper -krull -kees -iles -hunsicker -hornbuckle -holtzclaw -hirt -hinnant -heston -hering -hemenway -hegwood -hearns -halterman -halls -guiterrez -grote -granillo -grainger -glasco -gilder -garren -garlock -garey -fu -fryar -fredricks -fraizer -foxx -foshee -ferrel -felty -feathers -everitt -evens -esser -elkin -eberhart -durso -duguay -driskill -doster -dewall -deveau -demps -demaio -delreal -deleo -delay -deem -darrah -cumberbatch -culberson -cranmer -cordle -colgan -chesley -cavallo -castellon -castelli -carreras -carnell -carmon -carmen -carlucci -bottom -bontrager -blumberg -blasingame -becton -ayon -artrip -arline -andujar -alkire -alder -agan -zukowski -zuckerman -zehr -wroblewski -wrigley -woodside -wigginton -westman -westgate -werts -washam -wardlow -walser -waiters -teller -tadlock -stuck -stringfield -stimpson -stickley -starbuck -standish -spurlin -spindler -speller -spaeth -sotomayor -sok -sluder -shryock -shepardson -shatley -scannell -santistevan -rosner -rolland -rhode -resto -reinhard -rathburn -prisco -poulsen -pinney -phares -pennock -pastrana -oviedo -ostler -noto -nauman -mulford -moise -moberly -mirabal -ming -metoyer -metheny -mentzer -meldrum -mcinturff -mcelyea -mcdougle -massaro -lumpkins -loveday -lofgren -loe -lirette -lesperance -lefkowitz -ledger -lauzon -lain -lachapelle -kurz -klassen -keough -kempton -kaelin -jeffords -im -huot -hsieh -hoyer -horwitz -hopp -hoeft -hennig -haskin -grill -gourdine -golightly -girouard -fulgham -fritsch -freer -frasher -foulk -firestone -fiorentino -fedor -feather -ensley -englehart -eells -ebel -dunphy -donahoe -dimas -dileo -dibenedetto -dabrowski -crick -coonrod -conder -coddington -chunn -choy -chaput -cerna -carreiro -calahan -braggs -bourdon -boner -bollman -bittle -ben -behm -bauder -batt -barreras -aubuchon -anzalone -adamo -zhou -zerbe -zachery -witty -wirt -willcox -westberg -weikel -waymire -vroman -vinci -vallejos -tutor -truesdell -troutt -trotta -tollison -toles -tichenor -tai -symonds -surles -sunday -strayer -stgeorge -sroka -sorrentino -solares -snelson -silvestri -sikorski -shawver -schumaker -schorr -schooley -scates -satterlee -satchell -sacks -rymer -roselli -robitaille -riegel -richer -regis -reames -provenzano -proper -priestley -plaisance -pettey -palomares -oman -nowakowski -nace -monette -minyard -mclamb -mchone -mccarroll -masson -marco -magoon -maddy -lundin -loza -licata -lesley -leonhardt -lema -landwehr -kircher -kinch -karpinski -johannsen -hussain -houghtaling -hoskinson -hollaway -holeman -hobgood -hilt -hiebert -gros -gram -goggin -gentle -geissler -gadbois -gabaldon -fleshman -flannigan -files -fairman -epp -eilers -dycus -dunmire -duffield -dowler -ditto -deloatch -dehaan -deemer -corner -clayborn -christofferso -chilson -chesney -chatfield -charlie -caster -carron -canale -camden -buff -brigman -branstetter -bosse -borton -bonar -blau -biron -beagle -barroso -arvin -arispe -zacharias -zabel -yaeger -works -woolford -whetzel -weakley -veatch -vandeusen -tufts -troxel -troche -traver -townsel -tosh -talarico -swilley -sterrett -stenger -springfield -speakman -sowards -sours -souders -souder -soles -sobers -snoddy -smither -sias -shute -shoaf -shahan -schuetz -scaggs -santini -rosson -rolen -robidoux -rentas -recio -pixley -pawlowski -pawlak -paull -pascal -overbey -orear -oliveri -oldenburg -nutting -naugle -mote -mossman -moor -misner -milazzo -michelson -mei -mcentee -mccullar -mccree -mcaleer -mazzone -maxim -marshal -mandell -manahan -malott -maisonet -mailloux -lumley -lowrie -louviere -lipinski -lindemann -leppert -leopold -leasure -leaf -labarge -kubik -knisely -knepp -kenworthy -kennelly -kelch -karg -kanter -ignacio -hyer -houchin -hosley -hosler -hollon -holleman -heitman -hebb -haggins -gwaltney -guin -greenman -goulding -gorden -goodyear -geraci -georges -gathers -frison -feagin -falconer -espada -erving -erikson -eisenhauer -eder -ebeling -durgin -drown -dowdle -dinwiddie -delcastillo -dedrick -crimmins -covell -cournoyer -coria -cohan -cataldo -carpentier -canas -campa -brode -brashears -blaser -bicknell -berk -bednar -barwick -ascencio -althoff -almodovar -alamo -zirkle -zabala -xu -wolverton -winebrenner -wetherell -westlake -wegener -weddington -vong -tuten -trosclair -trim -tressler -theroux -teske -sword -swinehart -swensen -sundquist -southall -socha -sizer -silverberg -shortt -shimizu -sherrard -shen -shaeffer -seth -scheid -scheetz -saravia -sanner -rubinstein -rozell -romer -ringo -rheaume -reisinger -raven -randles -pullum -petrella -payan -papp -pablo -nordin -norcross -nicoletti -nicholes -newbold -nakagawa -mraz -monteith -milstead -milliner -mellen -mccardle -matthias -marcy -luft -loo -locker -liptak -lipp -leitch -latimore -larrison -landau -laborde -koval -izquierdo -hymel -hoskin -holte -hoefer -hayworth -hausman -harrill -harrel -hardt -gully -groover -grinnell -greenspan -graver -grandberry -gorrell -goldenberg -goguen -gilleland -garr -fuson -foye -felt -feldmann -everly -dyess -dyal -dunnigan -downie -dolby -divine -deatherage -dates -danna -cosey -corrado -cheever -celaya -caver -cashion -caplinger -cansler -byrge -bruder -brew -breuer -breslin -brazelton -botkin -bonneau -bones -bondurant -bohanan -bogue -boes -bodner -boatner -blatt -bickley -belliveau -beiler -beier -beckstead -bart -bang -bachmann -atkin -aron -andreas -altizer -alloway -allaire -albro -abron -zellmer -yetter -yelverton -wiltshire -wiens -whidden -wait -viramontes -vanwormer -topper -tarantino -tanksley -sumlin -strauch -strang -stice -spahn -sosebee -sigala -shrout -seamon -schrum -schneck -schantz -said -ruddy -romig -roehl -renninger -reding -pyne -polak -pohlman -pasillas -oldfield -oldaker -ohanlon -ogilvie -norberg -nolette -nies -neufeld -nellis -mummert -mulvihill -mullaney -monteleone -mendonca -meisner -mcmullan -mccluney -mattis -massengill -manfredi -luedtke -lounsbury -lora -liberatore -leek -lease -lazaro -lamphere -laforge -kuo -koo -jourdan -ismail -iorio -iniguez -ikeda -hubler -hodgdon -hocking -heacock -haslam -haralson -hanshaw -hannum -hallam -haden -garnes -garces -gammage -gambino -finkel -faucett -fahy -esteban -ehrhardt -eggen -dusek -durrant -dubay -dones -dey -depasquale -delucia -degraff -deer -decamp -davalos -darwin -dan -cullins -conard -clouser -clontz -cifuentes -chico -chappel -chaffins -celis -carwile -byram -bruggeman -brick -bressler -brathwaite -brasfield -bradburn -boose -boon -bodie -blosser -blas -bise -bertsch -bernardi -bernabe -bengtson -barrette -astorga -armand -antone -alday -albee -abrahamson -yarnell -wiltse -wile -wiebe -waguespack -vasser -upham -tyre -turek -tune -traxler -torain -tomaszewski -tinnin -tiner -tindell -teed -styron -stahlman -staab -spoon -spells -skiba -shih -sheperd -seidl -secor -schutte -sanfilippo -ruder -rondon -reina -rearick -rank -procter -prochaska -pettengill -pauly -neilsen -nally -mutter -mullenax -morano -meads -mcnaughton -mcmurtry -mcmath -mckinsey -matthes -massenburg -marlar -margolis -marcos -malin -magallon -mackin -lovette -loughran -loring -longstreet -loiselle -lenihan -laub -kunze -kull -koepke -knights -kerwin -kalinowski -kagan -innis -innes -husband -holtzman -heinemann -harshman -haider -haack -guss -grondin -grissett -greenawalt -gravel -goudy -goodlett -goldston -gokey -goin -gardea -galaviz -gafford -gabrielson -furlow -fritch -fordyce -folger -elizalde -ehlert -eckhoff -eccleston -ealey -dubin -dolphin -dieter -diemer -deschamps -delapena -decicco -debolt -daum -cullinan -crittendon -crase -cossey -coppock -coots -colyer -columbus -cluck -chamberland -cane -burkhead -bumpus -buchan -borman -bork -boe -birkholz -berardi -benda -behnke -barter -auer -amezquita -wotring -wirtz -wingert -wiesner -whitesides -weyant -wainscott -vivian -venezia -varnell -tussey -trainer -toll -thurlow -tack -tabares -stiver -stell -starke -stanhope -stanek -sisler -sinnott -sidney -siciliano -shehan -selph -seager -scurlock -scranton -santucci -santangelo -saltsman -ruel -ropp -rolling -rogge -rettig -renwick -reidy -reider -redfield -quam -premo -port -pier -peet -parente -paolucci -pan -palmquist -orme -ohler -ogg -netherton -mutchler -morita -mistretta -minnis -middendorf -menzel -mendosa -mendelson -meaux -mcspadden -mcquaid -mcnatt -manigault -maney -mager -lung -lukes -lopresti -liriano -lipton -letson -lechuga -lazenby -lauria -larimore -kwok -kwak -krupp -krupa -krum -kopec -kinchen -kifer -kerney -kerner -kennison -kegley -kays -karcher -justis -johson -jellison -janke -isabell -huskins -holzman -hollie -hinojos -highland -hefley -he -hatmaker -harte -halloway -hallenbeck -goodwyn -glaspie -gillian -geise -fullwood -fryman -frew -frakes -fraire -farrer -enlow -engen -ellzey -eckles -earles -ealy -dunkley -drinkard -dreiling -draeger -dinardo -dills -desroches -desantiago -current -curlee -crumbley -critchlow -coury -courtright -coffield -cleek -christen -charpentier -cardone -caples -cantin -buntin -bugbee -brinkerhoff -brackin -bourland -bohl -bogdan -blassingame -beacham -banning -auguste -andreasen -amann -almon -alejo -adelman -abston -zeno -yerger -wymer -woodberry -windley -whiteaker -westfield -weibel -wanner -waldrep -vital -villani -vanarsdale -utterback -updike -triggs -topete -tolar -tigner -thoms -tauber -tarvin -tally -swiney -sweatman -studebaker -streets -stennett -states -starrett -stannard -stalvey -sonnenberg -smithey -sieber -sickles -shinault -segars -sanger -salmeron -rothe -rizzi -rine -ricard -restrepo -ralls -ragusa -quiroga -ping -phung -pero -pegg -pavlik -papenfuss -oropeza -omar -okane -neer -nee -nathaniel -mudge -mozingo -molinaro -mikel -mcvicker -mcgarvey -mcfalls -mccraney -matus -magers -llanos -livermore -liss -linehan -leto -leitner -laymon -lawing -lawerence -lacourse -kwong -kollar -kneeland -keo -kennett -kellett -kangas -janzen -hutter -huse -huling -hoss -hohn -hofmeister -hewes -hern -harjo -habib -gust -guice -grullon -greggs -grayer -granier -grable -gowdy -giannini -getchell -gartman -garnica -ganey -gallimore -fray -fetters -fergerson -farlow -fagundes -exley -esteves -enders -edenfield -easterwood -drakeford -dipasquale -desousa -deshields -deeter -dedmon -debord -daughtery -cutts -courtemanche -coursey -copple -coomes -collis -coll -cogburn -clopton -choquette -chaidez -castrejon -calhoon -burbach -bulloch -buchman -bruhn -bohon -blough -bien -belmont -baynes -barstow -zeman -zackery -yardley -yamashita -wulff -wilken -wiliams -wickersham -wible -whipkey -wedgeworth -walmsley -walkup -vreeland -verrill -valera -umana -traub -timothy -swingle -swing -summey -stroupe -stockstill -steffey -stefanski -statler -stapp -speights -sons -solari -soderberg -slick -shunk -shorey -shewmaker -sheilds -schiffer -schank -schaff -sagers -rodger -rochon -riser -rickett -reale -raglin -poon -polly -polen -plata -pitcock -percival -palen -pahl -orona -oberle -nocera -navas -nault -mullings -mouser -moos -montejano -monreal -minick -middlebrook -meece -mcmillion -mccullen -mauck -marshburn -maillet -mahaney -magner -maclin -lucey -litteral -lippincott -leite -leis -leaks -laurie -lamarre -kost -jurgens -jesus -jerkins -jager -hurwitz -hughley -hotaling -horstman -hohman -hocker -hively -hipps -hile -hessler -hermanson -hepworth -henn -helland -hedlund -harkless -haigler -gutierez -gum -grindstaff -glantz -giardina -gerken -gadsden -freda -finnerty -feld -farnum -encinas -elton -eager -drakes -dennie -cutlip -curtsinger -couto -cortinas -corby -choice -chiasson -carle -carballo -brindle -borum -bober -blagg -birk -berthiaume -beahm -batres -basnight -barbara -backes -axtell -aust -au -atterberry -alvares -alt -alegria -abe -yow -yip -woodell -wojciechowski -winfree -winbush -wiest -wesner -wax -wamsley -wakeman -verner -truex -trafton -toman -thorsen -thor -theus -tellier -tallant -szeto -strope -stills -stage -sorg -simkins -shuey -shaul -servin -serio -serafin -senior -sebring -salguero -saba -ryerson -rudder -ruark -rother -rohrbaugh -rohrbach -rohan -rogerson -risher -rigg -reeser -pryce -prokop -prins -priebe -prejean -pinheiro -petrone -petri -penson -pearlman -parikh -pal -pair -natoli -murakami -mullikin -mullane -motes -morningstar -monks -mcveigh -mcgrady -mcgaughey -mccurley -masi -marchan -manske -maine -maez -lusby -linde -lile -likens -licon -leroux -lemaire -legette -lax -laskey -laprade -laplant -lady -kolar -kittredge -kinley -kerber -kanagy -johannes -jetton -jayne -january -janik -ippolito -inouye -hunsinger -howley -howery -horrell -hoosier -holthaus -hiner -hilson -hilderbrand -hasan -hartzler -harnish -harada -hansford -halligan -hagedorn -gwynn -gudino -greenstein -greear -gracey -goudeau -gose -goodner -ginsburg -gerth -gerner -fyfe -fujii -frier -frenette -folmar -fleisher -fleischmann -fetzer -fern -eisenman -earhart -dupuy -dunkelberger -drummer -drexler -dillinger -dilbeck -diana -dewald -demby -deford -daniell -dake -craine -como -clever -chesnut -casady -carstens -carrick -carino -carignan -canchola -cale -bushong -burman -buono -brownlow -broach -britten -brickhouse -boyden -boulton -borne -borland -bohrer -blubaugh -bever -berggren -benevides -arocho -arends -amezcua -almendarez -zalewski -witzel -winkfield -wilhoite -vara -vangundy -vanfleet -vanetten -vandergriff -urbanski -tyrell -troiano -tickle -thibodaux -straus -stoneking -stjean -stillings -stiff -stange -square -speicher -speegle -sowa -smeltzer -slawson -simmonds -shuttleworth -serpa -senger -seidman -schweiger -schloss -schimmel -schechter -sayler -sabb -sabatini -ronan -rodiguez -riggleman -richins -reep -reamer -prunty -porath -plunk -piland -philbrook -pettitt -perna -peralez -pascale -padula -oboyle -nivens -nickols -murph -mundt -munden -montijo -mcmanis -mcgrane -mccrimmon -manzi -mangold -malick -mahar -maddock -lust -losey -loop -litten -liner -leff -leedy -leavell -ladue -krahn -kluge -junker -iversen -imler -hurtt -huizar -hubbert -howington -hollomon -holdren -hoisington -hise -heiden -hauge -hartigan -gutirrez -griffie -greenhill -gratton -granata -gottfried -gertz -gautreaux -furry -furey -funderburg -flippen -fitzgibbon -fergus -felice -eye -dyar -drucker -donoghue -dildy -devers -detweiler -despres -denby -degeorge -cueto -cranston -courville -clukey -cirillo -chon -chivers -caudillo -catt -butera -bulluck -buckmaster -braunstein -bracamonte -bourdeau -border -bonnette -bobadilla -boaz -blackledge -beshears -bernhard -bergeson -baver -barthel -balsamo -bak -aziz -awad -authement -altom -altieri -abels -zigler -zhu -younker -yeomans -yearwood -wurster -winget -whitsett -wechsler -weatherwax -wathen -warriner -wanamaker -walraven -viens -vandemark -vancamp -uchida -triana -tinoco -terpstra -tellis -tarin -taranto -takacs -studdard -struthers -strout -stiller -spataro -soderquist -sliger -silberman -shurtleff -sheetz -schillinger -ritch -reif -raybon -ratzlaff -radley -putt -putney -prime -press -pinette -piner -petrin -parise -osbourne -nyman -northington -noblitt -nishimura -nell -neher -nalls -naccarato -mucha -mounce -miron -millis -meaney -mcnichols -mckinnis -mcjunkin -mcduffy -max -marcello -manrique -mannion -mangual -malveaux -mains -lumsden -lucien -lohmann -lipe -lightsey -lemasters -leist -laxton -laverriere -latorre -lamons -kral -kopf -knauer -kitt -kaul -karas -kamps -jusino -janis -islam -hullinger -huges -hornung -hiser -hempel -helsel -hassinger -hargraves -hammes -hallberg -gutman -gumbs -gruver -graddy -gonsales -goncalves -glennon -gilford -geno -freshour -flippo -fifer -few -fermin -fason -farrish -fallin -ewert -estepp -escudero -ensminger -emmanuel -emberton -elms -ellerbe -eide -dysart -dougan -dierking -dicus -detrick -deroche -depue -demartino -delosreyes -dalke -culbreath -crownover -crisler -crass -corsi -chagnon -centers -cavanagh -casson -carollo -cadwallader -burnley -burciaga -burchard -broadhead -boris -booze -bolte -body -berens -bellman -bellard -baril -arden -antonucci -amado -allie -wolfgram -winsor -wimbish -wilbert -wier -wallach -viveros -vento -varley -vanslyke -vangorder -touchstone -tomko -tiemann -throop -tamura -talmadge -swayze -sturdevant -strauser -stolz -stenberg -stayton -spohn -spillers -spillane -sluss -sloane -slavens -simonetti -shofner -shead -senecal -seales -schueler -schley -schacht -sauve -sarno -salsbury -rothschild -rosier -rines -reveles -rein -redus -redfern -reck -ranney -raggs -prout -prill -preble -prager -plemons -pippen -pilon -piccirillo -pewitt -pesina -pecora -otani -orsini -ollie -oestreich -odea -ocallaghan -northup -niehaus -newberg -nasser -narron -monarrez -mishler -mcsherry -mcelfresh -mayon -mauer -mattice -mash -marrone -marmolejo -marini -marie -mara -malm -machen -lunceford -loewen -liverman -litwin -linscott -levins -lenox -legaspi -leeman -leavy -lannon -lamson -lambdin -labarre -knouse -klemm -kleinschmidt -kirklin -keels -juliano -howser -hott -hosier -hosea -hopwood -holyfield -hodnett -hirsh -heimann -height -heckel -harger -hamil -hajek -gurganus -gunning -grange -gonzalas -goggins -gerow -gaydos -garduno -ganley -galey -farner -ester -engles -emond -emert -ellenburg -edick -duell -dublin -dorazio -dong -dimond -diederich -dewalt -depuy -dempster -demaria -dehoyos -dearth -dealba -dane -czech -crose -crespin -cogdill -clinard -cipriano -chretien -chalk -cerny -ceniceros -celestin -caple -cacho -burrill -buhr -buckland -branam -boysen -bovee -boos -boler -blom -blasko -beyers -belz -belmonte -bednarz -beckmann -beaudin -bazile -barbeau -balentine -abrahams -able -zielke -yunker -yeates -wrobel -wike -whisnant -wherry -wagnon -vogan -vansant -vannest -vallo -ullery -towles -towell -tiger -thill -taormina -tannehill -taing -storrs -stickles -stetler -sparling -solt -silcox -sheard -shadle -seman -selleck -schlemmer -scher -sapien -sainz -rumble -roye -rosamond -romain -rizzuto -resch -rentz -rather -rasch -ranieri -purtell -primmer -portwood -pontius -pons -pletcher -pledger -pirkle -pillsbury -pentecost -peng -paxson -ortez -organ -oles -newborn -mullett -muirhead -mouzon -mork -mollett -mohn -mitcham -melillo -mee -medders -mcmiller -mccleery -mccaughey -manders -mak -maciejewski -macaulay -lute -lipman -lewter -larocque -langton -kriner -knipp -killeen -karn -kalish -kaczor -jonson -jerez -jarrard -janda -hymes -hollman -hollandsworth -holl -hobdy -hitch -hennen -hemmer -hagins -haddox -guitierrez -guernsey -gorsuch -gholson -genova -gazaway -gauna -gammons -freels -fonville -fly -florian -fleet -fetterman -fava -farquhar -farish -fabela -escoto -eisen -dossett -dority -dorfman -demmer -dehn -dawley -darbonne -damore -damm -crosley -cron -crompton -crichton -cotner -cordon -conerly -colvard -clauson -chess -cheeseman -charity -cavallaro -castille -cabello -burgan -buffum -bruss -brassfield -bowerman -bothwell -borgen -bonaparte -bombard -boivin -boissonneault -bogner -bodden -boan -blanche -bittinger -bickham -bedolla -bale -bainbridge -aybar -avendano -ashlock -amidon -almanzar -akridge -ackermann -zager -yong -xavier -worrall -winans -wilsey -wightman -westrick -wenner -warne -warford -verville -utecht -upson -tuma -tseng -troncoso -trollinger -torbert -taulbee -sutterfield -stough -storch -stonebraker -stolle -stilson -stiefel -steptoe -stepney -stender -stemple -staggers -spurrier -spray -spinney -spengler -smartt -skoog -silvis -sieg -shuford -selfridge -seguin -sedgwick -sease -scotti -schroer -schlenker -schill -savarese -sapienza -sanson -sandefur -salamone -rusnak -rudisill -royalty -rothermel -roca -resendiz -reliford -rasco -raiford -quisenberry -quijada -pullins -puccio -postell -poppe -pinter -piche -petrucci -pellegrin -pelaez -patti -paton -pasco -parkes -paden -pabst -orchard -olmsted -newlon -mynatt -mustafa -mower -morrone -moree -moffat -mixson -minner -min -millette -mederos -mcgahan -mcconville -maughan -massingill -marano -macri -lovern -lichtenstein -leonetti -lehner -lawley -laramie -lappin -lahti -lago -lacayo -kuester -knee -kincade -junior -juhl -joslyn -jiron -jessop -jerry -jarosz -jain -hults -hoge -hodgins -hoban -hinkson -hillyard -herzig -hervey -henriksen -hawker -hause -hard -hankerson -gregson -golliday -gilcrease -gessner -gerace -garwood -garst -gaillard -flinchum -fishel -fishback -filkins -fentress -fabre -ethier -espana -eisner -ehrhart -efird -drennon -dominy -dominique -domingue -dipaolo -dinan -dimartino -deskins -dengler -defreitas -defranco -dancer -dahlin -cutshaw -cuthbert -croyle -crothers -critchfield -cowie -costner -coppedge -copes -ciccone -champ -cesar -caufield -capo -cambron -cambridge -buser -burnes -buhl -buendia -brindley -brecht -bourgoin -boomer -blackshire -birge -benninger -bembry -beil -begaye -barrentine -barks -banton -balmer -baity -auerbach -ambler -alexandre -ackerson -zurcher -zell -wynkoop -wallick -waid -vos -vizcaino -vester -veale -vandermark -vanderford -tuthill -trivette -thiessen -tewksbury -tao -tabron -swim -swasey -swanigan -stoughton -stoudt -stimson -stecker -stead -stall -spady -souther -smoak -sklar -simcox -sidwell -sharon -seybert -sesco -seeman -seaborn -schwenk -schmeling -rossignol -robillard -robicheaux -riveria -rippeon -ridgley -remaley -rehkop -reddish -reach -rauscher -rachel -quirion -pusey -pruden -pressler -potvin -pospisil -paradiso -pangburn -palmateer -ownby -otwell -osterberg -osmond -olsson -old -oberlander -nusbaum -novack -nokes -nicastro -nehls -nay -naber -mulhern -motter -moretz -milian -mercedes -mckeel -mcclay -mccart -matsuda -mary -martucci -marple -marko -marciniak -manes -mancia -maker -macrae -lybarger -lint -lineberger -levingston -lecroy -lattimer -laseter -kulick -krier -knutsen -klem -kinne -kinkade -ketterman -kerstetter -kersten -karam -jury -joshi -jin -jent -jefcoat -hillier -hillhouse -hettinger -henthorn -henline -helzer -heitzman -heineman -heenan -haughton -haris -harbert -haman -grinstead -gremillion -gorby -giraldo -gioia -gerardi -geraghty -gaunt -gatson -gardin -gans -gammill -games -gain -friedlander -frahm -fossett -fosdick -forth -forbush -fondren -fleckenstein -fitchett -filer -feliz -feist -ewart -evelyn -esters -elsner -edgin -eddie -easterly -dussault -durazo -don -devereaux -deshotel -deckert -dargan -dare -cornman -conkle -condit -commander -claunch -clabaugh -chute -cheesman -chea -charney -charleston -casella -carone -carbonell -canipe -campana -calles -cabezas -cabell -buttram -bustillos -buskirk -boyland -bourke -blakeley -big -berumen -berrier -bench -belli -behrendt -baumbach -bartsch -baney -arambula -alldredge -allbritton -ziemba -zanders -youngquist -yoshioka -yohe -wunder -woodfin -wojtowicz -winkel -wilmore -willbanks -wesolowski -wendland -walko -votaw -vanek -uriarte -urbano -turnipseed -triche -trautman -towler -tokarz -temples -tefft -teegarden -syed -swigart -stryker -stoller -stapler -stansfield -smit -smelley -sicard -shulman -shew -shear -sheahan -sharpton -selvidge -schlesinger -savell -sandford -sabatino -rosenbloom -roepke -rish -rhames -renken -reger -rappaport -quarterman -puig -prasad -poplar -pizano -pigott -pick -phair -petrick -patt -pascua -paramore -papineau -olivieri -ogren -norden -noga -nisbet -munk -munch -mui -morvant -moro -moloney -merz -meng -meltzer -mellinger -mehl -mcnealy -mckernan -mchaney -mccleskey -mcandrews -mayton -mayor -markert -maresca -marcellus -maner -mandujano -malpass -macintyre -lytton -lyall -lummus -longshore -longfellow -lokey -locher -leverette -lepe -lefever -leeson -lederer -lampert -lagrone -la -kreider -korth -knopf -kleist -kiss -keltner -kelling -kaspar -kappler -justin -josephs -jiang -huckins -horace -holub -hofstetter -hoehn -higginson -hennings -heid -havel -hauer -harnden -hargreaves -hanger -guild -guidi -grate -grandy -grandstaff -goza -goodridge -goodfellow -goggans -godley -giusti -gilyard -geoghegan -galyon -gaeta -funes -font -flor -flanary -fales -erlandson -ellett -elia -edinger -dziedzic -duerr -draughn -donoho -dimatteo -devos -dematteo -degnan -darlington -danis -dam -dahlstrom -dahlke -czajkowski -cumbie -culbert -crosier -croley -corry -clinger -cheshire -chalker -cephas -caywood -cavalier -capehart -cales -cadiz -bussiere -burriss -burkart -brundidge -bronstein -breeze -bradt -boydston -bostrom -borel -bolles -blay -blackwelder -bissett -bevers -bester -bernardino -benefiel -belote -beedle -beckles -baysinger -bassler -bartee -barlett -bargas -barefield -baptista -arterburn -armas -apperson -amoroso -amedee -zullo -zellner -yelton -willems -wilkin -wiggin -widman -welk -weingarten -walla -viers -vess -verdi -veazey -vannote -tullos -trudell -trower -trosper -trimm -trew -tousignant -topp -tocco -thoreson -terhune -tatom -suniga -sumter -steeves -stansell -soltis -sloss -slaven -sing -shisler -sheriff -shanley -servantes -selders -segrest -seese -seeber -schaible -savala -sartor -rutt -rumbaugh -ruis -roten -roessler -ritenour -riney -restivo -rene -renard -rakestraw -rake -rachal -quiros -pullin -prudhomme -primeaux -prestridge -presswood -ponte -polzin -poarch -pittenger -piggott -pickell -phaneuf -parvin -parmley -palmeri -paisley -ozment -ormond -ordaz -ono -olea -obanion -oakman -novick -nicklas -nemec -nappi -mund -morfin -mera -melgoza -melby -mcgoldrick -mcelwain -mcchristian -mccaw -marquart -marlatt -markovich -mahr -lupton -lucus -lorusso -lerman -leddy -leaman -leachman -lavalle -laduke -kummer -koury -konopka -koh -koepp -kloss -klock -khalil -kernan -kappel -jakes -inoue -hutsell -howle -honore -hole -hockman -hockaday -hiltz -hetherington -hesser -hershman -heng -heffron -headen -haskett -hartline -harned -guillemette -guglielmo -guercio -greenbaum -goris -glines -gilmour -gardella -gadd -gabler -gabbert -fuselier -freudenburg -fragoso -follis -flemings -feltman -febus -farren -fallis -evert -ekstrom -eastridge -dyck -dufault -dubreuil -dresser -drapeau -domingues -dolezal -dinkel -didonato -devitt -devane -demott -daughtrey -daubert -das -darrell -creason -crary -costilla -chipps -cheatwood -carmean -canton -caffrey -burgher -buker -brunk -brodbeck -brantner -brandy -bolivar -boerner -bodkin -biel -betty -bencomo -bellino -beliveau -beauvais -beaupre -baylis -baskett -barcus -barbera -baltz -asay -arney -arcuri -ankney -agostini -addy -zwilling -zubia -zollinger -zeitz -yard -yanes -winship -winningham -wickline -webre -waddington -vosburgh -vessels -verrett -vedder -varnum -vandeventer -vacca -usry -towry -touchet -tookes -tonkin -timko -tibbitts -thedford -tarleton -talty -talamantez -tafolla -sugg -strecker -stirling -steffan -spiva -slape -siemens -shatzer -seyler -seamans -schmaltz -schipper -sasso -sailor -ruppe -runner -royals -roudebush -ripple -riemer -richarson -revilla -reichenbach -ratley -railsback -quayle -poplin -poorman -ponton -polo -pollitt -poitras -piscitelli -piedra -pickles -pew -perera -people -penwell -pelt -pauline -parkhill -paladino -ore -oram -olmo -oliveras -olivarria -ogorman -near -naron -na -muncie -mowbray -morones -moretti -monn -mitts -minks -minarik -mimms -milliron -millington -millhouse -messersmith -mcnett -mckinstry -mcgeorge -mcdill -mcateer -mazzeo -matchett -mahood -mabery -lundell -louden -losoya -lisk -lezama -leib -lebo -lanoue -lanford -lafortune -kump -krone -kreps -kott -kopecky -kolodziej -knuckles -kinman -kimmons -kelty -kaster -karlson -kania -jules -joyal -job -jenner -jasinski -jandreau -isenhour -hunziker -huhn -houde -houchins -holtman -hodo -heyman -hentges -hedberg -hayne -haycraft -harshbarger -harshaw -harriss -haring -hansell -hanford -handler -hamburg -hamblen -gunnell -groat -gorecki -gochenour -gleeson -genest -geiser -gabriele -fulghum -friese -fridley -freeborn -frailey -flaugher -fiala -ettinger -etheredge -espitia -eriksen -engelbrecht -engebretson -elie -eickhoff -edney -edelen -eberhard -eastin -eakes -driggs -doner -donaghy -disalvo -deshong -dahms -dahlquist -curren -cripe -cree -creager -corle -conatser -commons -coggin -coder -coaxum -closson -clodfelter -classen -chittenden -castilleja -casale -cartee -carriere -canup -canizales -burgoon -bunger -bugarin -buchanon -bruning -bruck -brookes -broadwell -brier -brekke -breese -bracero -bowley -bowersox -bose -bogar -blossom -blauser -blacker -bjorklund -belair -baumer -basler -barb -baltimore -baize -baden -auman -amundsen -amore -alvarenga -adan -adamczyk -yerkes -yerby -yawn -yamaguchi -worthey -wolk -wixom -wiersma -wieczorek -whiddon -weyer -wetherington -wein -watchman -warf -wansley -vesely -velazco -vannorman -valasquez -utz -urso -turco -turbeville -trivett -torrance -toothaker -toohey -tondreau -thaler -sylvain -swindler -swigert -swider -stiner -stever -steffes -stampley -stair -smidt -skeete -silvestre -shy -shutts -shock -shealey -seigler -schweizer -schuldt -schlichting -scherr -saulsberry -saner -rosin -rosato -roling -rohn -rix -rister -remley -remick -recinos -ramm -raabe -pursell -poythress -poli -pokorny -plum -pettry -petrey -petitt -penman -payson -paquet -pappalardo -outland -oscar -orenstein -nuttall -nuckols -nott -nimmo -murtagh -mousseau -moulder -mooneyhan -moak -minch -miera -mercuri -meighan -mcnelly -mcguffin -mccreery -mcclaskey -man -mainor -luongo -lundstrom -loughman -loose -lobo -lobb -linhart -liberty -lever -leu -leiter -lehoux -lehn -lares -lapan -langhorne -lamon -ladwig -ladson -kuzma -kreitzer -knop -keech -kea -kadlec -jo -jhonson -jantz -inglis -husk -hulme -housel -hofman -hillery -heidenreich -heaps -haslett -harting -hartig -hamler -halton -hallum -gutierres -guida -guerrier -grossi -gress -greenhalgh -gravelle -gow -goslin -gonyea -gipe -gerstner -gasser -garceau -gannaway -gama -gallop -gaiser -fullilove -foutz -fossum -flannagan -farrior -faller -ericksen -entrekin -enochs -englund -ellenberger -eastland -earwood -dudash -du -drozd -desoto -delph -dekker -dejohn -degarmo -defeo -defalco -deblois -dacus -cudd -crossen -crooms -cronan -costin -costanza -cordray -comerford -collie -colegrove -coldwell -claassen -chartrand -castiglione -carte -cardella -carberry -capp -capobianco -cangelosi -buch -brunell -brucker -brockett -brizendine -brinegar -brimer -brase -bosque -bonk -bolger -bohanon -bohan -blazek -berning -bergan -bennette -beauchemin -battiste -barra -balogh -avis -avallone -aubry -ashcroft -asencio -arledge -anchondo -amy -alvord -acheson -zaleski -yonker -wyss -wycoff -woodburn -wininger -winders -willmon -wiechmann -westley -weatherholt -warnick -wardle -warburton -volkert -virgin -villanveva -veit -vass -vanallen -tung -toribio -toothman -tiggs -thornsberry -thome -tepper -teeple -tebo -tassone -tann -sultan -stucker -stotler -stoneman -stehle -stanback -stallcup -spurr -speers -spada -solum -smolen -sinn -silvernail -sholes -shives -shain -secrest -seagle -schuette -schoch -schnieders -schild -schiavone -schiavo -scharff -santee -sandell -salvo -rollings -rollin -rivenburg -ritzman -rist -rio -ricardo -reynosa -retana -reiber -regnier -rarick -ransome -rall -propes -prall -poyner -ponds -poitra -plaster -pippins -pinion -piccolo -phu -perillo -penrose -pendergraft -pelchat -peed -patenaude -palko -odoms -oddo -novoa -noone -newburn -negri -nantz -mosser -moshier -molter -molinari -moler -millman -meurer -mendel -mcray -mcnicholas -mcnerney -mckillip -mcilvain -mcadory -matter -master -marmol -marinez -manzer -mankin -makris -majeski -magnus -maffei -luoma -luman -luebke -luby -lomonaco -loar -litchford -lintz -licht -levenson -legge -laughter -lanigan -krom -kreger -koop -kober -klima -kitterman -kinkead -kimbell -kilian -kibbe -kendig -kemmer -kash -jenkin -inniss -hurlbut -hunsucker -hugo -huckabee -hoxie -hoglund -hockensmith -hoadley -hinkel -higuera -herrman -heiner -hausmann -haubrich -hassen -hanlin -hallinan -haglund -hagberg -gullo -gullion -groner -greenwalt -grand -goodwill -gong -gobert -glowacki -glessner -gines -gildersleeve -gildea -gerke -gerhard -gebhard -gatton -gately -galasso -fralick -fouse -fluharty -faucette -fairfax -evanoff -elser -ellard -egerton -edie -ector -ebling -dunkel -duhart -drysdale -dostal -dorey -dolph -doles -dismukes -digregorio -digby -dewees -deramus -denniston -dennett -deloney -delaughter -darcy -cuneo -cumberland -crotts -crosswhite -cremeans -creasey -cottman -cothern -costales -cosner -corpus -cora -constable -colligan -cobble -clutter -chupp -chevez -chatmon -chaires -caplan -caffee -cabana -burrough -burditt -buckler -brunswick -brouillard -broady -bowlby -bouley -borgman -boltz -boddy -blackston -birdsell -bedgood -bate -basil -bartos -barriga -barrie -barna -barcenas -banach -baccus -auclair -ashman -arter -arendt -ansell -allums -allsop -allender -alber -albarran -adelson -zoll -wysong -wimbley -wildes -whitis -whitehill -whicker -weymouth -well -weldy -wark -wareham -waddy -viveiros -vito -vides -vecchio -vath -vandoren -vanderhoof -unrein -uecker -tsan -trepanier -tregre -torkelson -ton -tobler -tineo -timmer -swopes -swofford -sweeten -swarts -summerfield -sumler -stucky -strozier -stigall -stickel -stennis -stelzer -steely -solar -slayden -skillern -shurtz -shelor -shellenbarger -shand -shabazz -seo -scroggs -schwandt -schrecengost -schoenrock -schirmer -sandridge -ruzicka -rozek -rowlands -roser -rosendahl -romanowski -romaine -rolston -rink -riggio -reichman -redondo -reay -rawlinson -raskin -raine -quandt -purpura -purdue -pruneda -prevatte -prettyman -pinedo -pierro -pidgeon -phillippi -pfeil -penix -peasley -paro -overall -ospina -ortegon -ogata -ogara -normandin -nordman -nims -nassar -motz -morlan -mooring -moles -moir -mizrahi -mire -minaya -millwood -mikula -messmer -meikle -mctaggart -mcgonagle -mcewan -mccasland -mccane -mccaffery -mcalexander -mattocks -mattie -matranga -martone -markland -maravilla -manno -manly -mancha -mallery -magno -lorentz -locklin -livingstone -lipford -lininger -line -liao -lepley -leming -lemelin -leadbetter -lawhon -lattin -langworthy -lampman -lambeth -lamarr -lahey -krajewski -klopp -kinnison -kestner -kerry -kennell -karim -jozwiak -jakubowski -jagger -ivery -ishmael -iliff -iddings -hudkins -houseman -holz -holderman -hoehne -highfill -hiett -heskett -heldt -hedman -hayslett -hatchell -hasse -hamon -hamada -hakala -haislip -haffey -hackbarth -guo -gullickson -guerrette -guan -greenblatt -goudreau -gongora -godbout -glaude -gills -gillison -gigliotti -gargano -gallucci -galli -galante -frasure -fodor -fizer -fishburn -finkbeiner -finck -fager -estey -espiritu -eppinger -epperly -emig -eckley -dray -dorsch -dille -devita -deslauriers -demery -delorme -delbosque -dauphin -dantonio -curd -crume -crown -cozad -cossette -comacho -climer -chadbourne -cespedes -cayton -castaldo -carpino -carls -capozzi -canela -cadet -buzard -busick -burlison -brinkmann -bridgeforth -bourbeau -bornstein -boots -bonfiglio -boice -boese -biondi -bilski -betton -berwick -berlanga -behan -becraft -barrientez -banh -balke -balderrama -bahe -bachand -atlas -armer -arceo -aliff -alatorre -zermeno -zane -younce -you -yeoman -yamasaki -wroten -worm -woodby -winer -wilmer -willits -wilcoxon -wehmeyer -waterbury -wass -wann -wake -wachtel -vizcarra -vince -victory -veitch -vanderbilt -vallone -vallery -ureno -tyer -tipps -tiedeman -theberge -texeira -taub -tapscott -stutts -stults -stukes -staff -spink -sottile -smithwick -slane -simeone -silvester -siegrist -shiffer -sheedy -sheaffer -severin -sellman -scotto -schupp -schueller -schreier -schoolcraft -schoenberger -schnabel -sangster -samford -saliba -ryles -ryans -rossetti -rodriguz -risch -riel -rezendes -rester -rencher -recker -rathjen -profitt -poteete -polizzi -perrigo -patridge -osby -orvis -opperman -oppenheim -onorato -olaughlin -ohagan -ogles -oehler -obyrne -nuzzo -nickle -nease -neagle -navarette -nagata -musto -morning -morison -montz -mogensen -mizer -miraglia -mingus -migliore -merideth -menges -mellor -mcnear -mcnab -mcloud -mcelligott -mccollom -maynes -marquette -markowski -marcantonio -mar -maldanado -makin -macey -lundeen -lovin -longino -lisle -linthicum -limones -lesure -lesage -leisure -lauver -laubach -latshaw -lary -lapham -lacoste -lacher -kutcher -knickerbocker -klos -klingler -kleiman -kittleson -kimbrel -kimberly -kemmerer -kelson -keese -kam -kallas -jurgensen -junkins -juneau -juergens -jolliff -jelks -janicki -jang -innocent -ingles -inge -huguley -huggard -howton -hone -holford -holding -hogle -hipple -heimbach -heider -heidel -havener -hattaway -harrah -hanscom -hankinson -hamdan -gridley -goulette -goulart -goodspeed -goodrow -go -girardi -gent -gautreau -ganz -gandara -gamblin -galipeau -fyffe -furrow -fulp -fricks -frase -frandsen -fout -foulks -fouche -foskey -forgey -foor -fobbs -finklea -fincham -figueiredo -festa -ferrier -fellman -eslick -eilerman -eckart -eaglin -dunfee -dumond -drewry -douse -domino -dimick -diener -dickert -deines -degree -declue -daw -dattilo -danko -custodio -cuccia -crunk -crispin -corp -cornwall -corea -coppin -considine -coniglio -conboy -collar -cockrum -clute -clewis -claude -christiano -channell -channel -cerrato -cecere -catoe -castillon -castile -carstarphen -carmouche -caperton -buteau -bury -bumpers -brey -brenton -brazeal -brassard -brass -braga -bradham -bourget -borrelli -borba -boothby -bohr -bohm -boehme -bodin -bloss -blocher -bizzell -bieker -berthelot -bernardini -berends -benard -belser -baze -bartling -barrientes -barras -barcia -banfield -aurand -artman -arnott -arend -ardis -amon -almaguer -allee -albarado -alameda -abdo -zuehlke -zoeller -yokoyama -yocom -wyllie -woolum -wint -winland -wink -wilner -wilmes -whitlatch -westervelt -walthall -walkowiak -walburn -viviano -vanderhoff -valez -ugalde -trumbull -todaro -tilford -tidd -tibbits -terranova -templeman -tannenbaum -talmage -tabarez -swearengin -swartwood -svendsen -strum -strack -storie -stockard -steinbeck -starns -stanko -stankiewicz -stacks -stach -sproles -spenser -smotherman -slusser -sinha -silber -siefert -siddiqui -shuff -sherburne -seldon -seddon -schweigert -schroeter -schmucker -saffold -rutz -rundle -rosinski -rosenow -rogalski -ridout -rhymer -replogle -regina -reda -raygoza -ratner -rascoe -rahm -quincy -quast -pry -pressnell -predmore -pou -porto -pleasants -pigford -pavone -patnaude -parramore -papadopoulos -palmatier -ouzts -oshields -ortis -olmeda -olden -okamoto -norby -nitz -niebuhr -nevius -neiman -neidig -neece -murawski -mroz -moylan -moultry -mosteller -moring -morganti -mook -moffet -mettler -merlo -mengel -mendelsohn -meli -melchior -mcmeans -mcfaddin -mccullers -mccollister -mccloy -mcclaine -maury -maser -martelli -manthey -malkin -maio -magwood -maginnis -mabon -luton -lusher -lucht -lobato -levis -letellier -legendre -laurel -latson -larmon -largo -landreneau -landgraf -lamberson -kurland -kresge -korman -korando -klapper -kitson -kinyon -kincheloe -kawamoto -kawakami -jenney -jeanpierre -ivers -issa -ince -hugh -hug -honda -hollier -hollars -hoerner -hodgkinson -hiott -hibbitts -herlihy -henricks -heavner -hayhurst -harvill -harewood -hanselman -hanning -gwyn -gustavson -grounds -grizzard -grinder -graybeal -gravley -gorney -goll -goehring -godines -gobeil -glickman -giuliano -gimbel -gift -geib -gayhart -gatti -gains -gadberry -frei -fraise -fouch -forst -forsman -folden -fogleman -figaro -fetty -feely -fabry -eury -estill -epling -elamin -echavarria -dutil -duryea -dumais -drago -downard -douthit -doolin -dobos -dison -dinges -diebold -desilets -deshazo -depaz -degennaro -dall -cyphers -cryer -croce -crisman -credle -coriell -copp -coop -compos -colmenero -cogar -cliff -chapel -carnevale -campanella -caley -calderone -burtch -brouwer -brehmer -brassell -brafford -bourquin -bourn -bohnert -blewett -blass -blakes -bhakta -besser -berge -bellis -balfour -avera -austria -applin -ammon -alsop -aleshire -akbar -zoller -zapien -wymore -wyble -wolken -wix -wickstrom -whobrey -whigham -westerlund -welsch -weisser -weisner -weinstock -wehner -watlington -wakeland -wafer -virgen -victorino -veltri -veith -urich -uresti -umberger -twedt -tuohy -tschida -trumble -troia -tristan -trimmer -topps -tonn -tiernan -threet -thrall -thetford -teneyck -tartaglia -swords -strohl -streater -strausbaugh -stradley -stonecipher -steadham -stansel -stalcup -stabile -sprenger -spradley -speier -southwood -sorrels -slezak -skow -sirmans -simental -silk -sifford -sievert -shover -sheley -selzer -scriven -schwindt -schwan -schroth -saylors -saragosa -sant -salaam -saephan -routt -rousey -ros -rolfes -rieke -rieder -richeson -redinger -rasnick -rapoza -rambert -rafael -quist -pyron -punch -pullman -przybylski -pridmore -pooley -pines -perkinson -perine -perham -pecor -peavler -partington -panton -oliverio -olague -ohman -ohearn -noyola -nicolai -nebel -murtha -muff -mowrey -moroney -morgenstern -morant -monty -monsour -mohammad -moffit -mijares -meriwether -mendieta -melendrez -mejorado -mckittrick -mckey -mckenny -mckelvy -mckechnie -mcelvain -mccoin -mazzarella -mazon -maurin -matthies -maston -maske -marzano -marmon -marburger -mangus -mangino -mallet -luo -losada -londono -lobdell -lipson -lesniak -leighty -lei -league -lavallie -lareau -laperle -lape -laforce -laffey -kuehner -kravitz -kowalsky -kohr -kinsman -keppler -kennemer -keiper -keely -kaler -jun -jelinek -jarnagin -issac -isakson -hypes -hutzler -huls -horak -hitz -hice -herrell -henslee -heitz -heiss -heiman -hasting -hartwick -harmer -harland -hammontree -haldeman -hakes -guse -guillotte -guard -groleau -greve -greenough -golub -golson -goldschmidt -golder -godbolt -gilmartin -gies -gibby -geren -genthner -gendreau -gemmill -gaymon -galyean -galeano -friar -folkerts -fleeman -fitzgibbons -ferranti -felan -farrand -eoff -enger -engels -ducksworth -duby -dry -drumheller -douthitt -doris -donis -dixion -dittrich -dials -dessert -descoteaux -depaul -denker -demuth -demelo -delacerda -deforge -danos -dalley -daigneault -cybulski -crystal -cristobal -cothren -corns -corkery -copas -coco -clubb -clore -chitty -chichester -chery -charon -chamber -chace -catanzaro -castonguay -cassella -caroll -carlberg -cammarata -calle -cajigas -byas -buzbee -busey -burling -bufkin -brzezinski -brun -brickner -brabham -boller -bodily -bockman -bleich -blakeman -bisbee -bier -bezanson -bevilacqua -besaw -berrian -berkeley -bequette -beauford -baumgarten -baudoin -batie -basaldua -bardin -bangert -banes -backlund -avitia -artz -archey -apel -amico -alam -aden -zebrowski -yokota -wormley -wootton -woodie -womac -wiltz -wigington -whitehorn -whisman -weisgerber -weigle -weedman -watkin -wasilewski -wadlington -wadkins -viverette -vidaurri -vidales -vezina -vanleer -vanhoy -vanguilder -vanbrunt -uy -updegraff -tylor -trinkle -touchette -tilson -tilman -tengan -tarkington -surrett -super -summy -streetman -straughter -steere -stalling -spruell -spadaro -solley -smathers -silvera -siems -shreffler -sholar -selden -schaper -samayoa -ruggeri -rowen -rosso -rosenbalm -roosevelt -roose -ronquillo -rogowski -rexford -repass -renzi -renick -renda -rehberg -reaper -ranck -raffa -rackers -raap -pugsley -puglisi -prinz -primus -pounders -pon -pompa -plasencia -pipkins -pillar -petrosky -pelley -pauls -pauli -parkison -parisien -pangle -pancoast -palazzolo -owenby -overbay -orris -orlowski -nipp -newbern -nedd -nealon -najar -mysliwiec -myron -myres -musson -murrieta -munsell -mumma -muldowney -moyle -mowen -mose -morejon -moodie -monier -mikkelsen -miers -metzinger -melin -mcquay -mcpeek -mcneeley -mcglothin -mcghie -mcdonell -mccumber -mccranie -mcbean -mayhugh -marts -marenco -manges -lynam -lupien -luff -luebbert -loh -loflin -lococo -loch -lis -linke -lightle -lewellyn -leishman -lebow -lebouef -leanos -lanz -landy -landaverde -lacefield -kyler -kuebler -kropf -kroeker -kluesner -klass -kimberling -kilkenny -kiker -ketter -kelemen -keasler -kawamura -karst -kardos -jeremiah -jared -igo -huseman -huseby -hurlbert -huard -hottinger -hornberger -hopps -holdsworth -hensen -heilig -heeter -harpole -haak -gutowski -gunnels -grimmer -grieve -gravatt -granderson -gotcher -gleaves -genao -garfinkel -frerichs -foushee -flanery -finnie -feldt -fagin -ewalt -ellefson -eiler -eckhart -eastep -dwight -digirolamo -didomenico -devera -delavega -defilippo -debusk -daub -damiani -cupples -cuddy -crofoot -courter -coto -costigan -corning -corman -corlett -cooperman -collison -coghlan -cobbins -coady -coachman -clothier -client -clear -cipolla -chmielewski -chiodo -chatterton -chappelle -chairez -ceron -casperson -casler -casados -carrow -carolina -carlino -carico -cardillo -caouette -canto -canavan -cambra -byard -buterbaugh -buse -bucy -buckwalter -bubb -bryd -brissette -brault -bradwell -boshears -borchert -blansett -blanch -blade -biondo -bilbo -biehl -bessey -berta -belles -bella -beeks -beekman -beaufort -bayliss -bardsley -avilla -astudillo -ardito -anwar -antunez -amen -aderholt -abate -yowell -yin -yearby -ye -wurst -woolverton -woolbright -wildermuth -whittenburg -whitely -wetter -wetherbee -wenz -welliver -welling -welcome -wason -warrior -warlick -voorhies -vivier -villines -vida -verde -veiga -varghese -vanwyk -vanwingerden -vanhorne -umstead -twiggs -tusing -trego -tompson -tinkle -thoman -thole -tatman -tartt -suda -studley -strock -strawbridge -stokely -stec -stang -stalter -speidel -spafford -spade -sontag -sokolowski -skillman -skelley -skalski -sison -sippel -sinquefield -sin -siegle -sher -sharrow -setliff -sera -sellner -selig -seibold -seery -scriber -schull -schrupp -schippers -say -saulsbury -sao -santillo -sanor -sancho -rufus -rubalcaba -roosa -ronk -robbs -roache -river -riebe -reinoso -quin -prude -preuss -pottorff -pontiff -plouffe -picou -picklesimer -pettyjohn -petti -penaloza -parmelee -pardee -palazzo -overholt -ogawa -ofarrell -nova -nolting -noda -nicola -nickson -nevitt -neveu -navarre -nam -murrow -munz -mulloy -monzo -milliman -metivier -merlino -mcpeters -mckissack -mckeen -mcgurk -mcfee -mcfarren -mcelwee -mceachin -mcdonagh -mccarville -mayhall -mattoon -martello -marconi -marbury -mao -manzella -maly -malec -maitland -maheu -maclennan -lyke -luera -loyola -lowenstein -losh -lopiccolo -longacre -loman -loden -loaiza -lieber -libbey -lenhardt -lefebre -lauterbach -lauritsen -lass -larocco -larimer -lansford -lanclos -lamay -lal -kulikowski -kriebel -kosinski -kleinman -kleiner -kleckner -kistner -kissner -kissell -kilroy -kenna -keisler -keeble -keaney -kale -joly -jimison -jeans -ikner -hursey -hruska -hove -hou -host -hosking -hoose -holle -hoeppner -hittle -hitchens -hirth -hinerman -hilario -higby -hertzog -hentz -hensler -heist -heier -hegg -hassel -harpe -hara -hank -hain -hagopian -grimshaw -grado -gowin -gowans -googe -goodlow -goering -gleaton -gidley -giannone -gascon -garneau -gambrel -galaz -fuentez -frisina -fresquez -fraher -fitting -feuerstein -felten -everman -estell -ertel -erazo -ensign -endo -ellerman -eichorn -edgell -ebron -eaker -dundas -duncanson -duchene -ducan -dombroski -doman -dock -dickison -dewoody -deloera -delahoussaye -dejean -degroat -decaro -dearmond -dashner -dales -crossett -cressey -cowger -courts -court -cornette -corbo -coplin -coover -condie -cokley -cicero -ceaser -cannaday -callanan -cadle -buscher -bullion -bucklin -bruening -bruckner -brose -branan -bradway -botsford -bortz -borelli -bonetti -bolan -boerger -bloomberg -bingman -bilger -berns -beringer -beres -beets -beede -beaudet -beachum -baughn -bator -bastien -basquez -barreiro -barga -baratta -balser -baillie -axford -attebery -arakaki -annunziata -andrzejewski -ament -amendola -adcox -abril -zenon -zeitler -zang -zambrana -ybanez -yagi -wolak -wilcoxson -whitesel -whitehair -weyand -westendorf -welke -weinmann -wei -weesner -weekes -wedel -wedding -weatherall -warthen -vose -villalta -vila -viator -vaz -valtierra -urbanek -tulley -trojanowski -trapani -toups -torpey -tomita -tindal -tieman -tevis -tedrow -taul -tash -tammaro -sylva -swiderski -sweeting -sund -stutler -stocking -stich -sterns -stegner -stalder -splawn -speirs -southwell -soltys -smead -slye -skipworth -sipos -simmerman -sigmund -sidhu -shuffler -shingleton -shadwick -sermons -seefeldt -scipio -schwanke -schreffler -schiro -scheiber -sandoz -samsel -ruddell -royse -rouillard -rotella -rosalez -romriell -rommel -rizer -riner -rickards -rhoton -rhem -reppert -rayl -raulston -raposo -rapier -rainville -radel -quinney -purdie -puffer -pizzo -pincus -petrus -pendelton -pendarvis -peltz -peguero -peete -patricio -patchett -parrino -papke -pam -palafox -ottley -ostby -oritz -oren -ogan -odegaard -oatman -noell -nida -nicoll -newhall -newbill -netzer -nettleton -neblett -murley -mungo -mulhall -mosca -morissette -morford -montag -monsen -mitzel -miskell -minder -mehaffey -mcquillen -mclennan -mcgrail -mccreight -mayville -maysonet -maust -mathieson -mastrangelo -maskell -martina -manz -malmberg -makela -madruga -luz -lotts -longnecker -logston -littell -liska -lindauer -lillibridge -levron -letchworth -lesh -leffel -leday -leamon -laura -kulas -kula -kucharski -kromer -kraatz -konieczny -konen -komar -kivett -kirts -kinnear -kersh -keithley -keifer -judah -jimenes -jeppesen -jasmin -jansson -huntsberry -hund -huitt -huffine -hosford -hopes -holmstrom -hollen -hodgin -hirschman -hiltner -hilliker -hibner -hennis -helt -heidelberg -heger -heer -hartness -hardrick -halladay -gula -guillaume -guerriero -grunewald -grosse -griffeth -grenz -grassi -grandison -ginther -gimenez -gillingham -gillham -gess -gelman -gearheart -gaskell -gariepy -gamino -gallien -galentine -fuquay -froman -froelich -friedel -foos -fomby -focht -flythe -fiqueroa -filson -filip -fierros -fett -fedele -fasching -farney -fargo -everts -even -etzel -elzey -eichner -eger -eatman -ducker -duchesne -donati -domenech -dollard -dodrill -dinapoli -denn -delfino -delcid -delaune -delatte -deems -daluz -cusson -cullison -cue -cuadrado -crumrine -cruickshank -crosland -croll -criddle -crepeau -coutu -couey -cort -coppinger -collman -cockburn -coca -clayborne -claflin -cissell -chowdhury -chicoine -chenier -causby -caulder -cassano -casner -cardiel -burner -brunton -bruch -broxton -brosius -brooking -branco -bracco -bourgault -bosserman -books -bonet -bolds -bolander -bohman -boelter -blohm -blea -blaise -bischof -billie -beus -bellew -bastarache -bast -bartolome -bark -barcomb -barco -balls -balk -balas -bakos -avey -atnip -ashbrook -arno -arbour -aquirre -appell -aldaco -alcazar -alban -ahlstrom -abadie -zylstra -zick -zheng -yother -wyse -wunsch -whitty -weist -vrooman -vine -villalon -vidrio -vavra -vasbinder -vanmatre -vandorn -ugarte -turberville -tuel -trogdon -town -toupin -toone -tolleson -tinkham -tinch -tiano -teston -teer -tea -tawney -taplin -tant -tansey -swayne -sutcliffe -sunderman -suits -strothers -stromain -stork -stoneburner -stolte -stolp -stoehr -stingley -stegman -stangl -spinella -spier -soules -sommerfield -sipp -simek -siders -shufelt -shue -shor -shires -shellenberger -sheely -service -sepe -seaberg -schwing -scherrer -scalzo -saver -sasse -sarvis -santora -sansbury -salls -saleem -ryland -rybicki -ruggieri -rothenberg -rosenstein -roquemore -rollison -rodden -rivet -rita -ridlon -riche -riccardi -reiley -regner -rech -rayo -rawley -ranger -raff -radabaugh -quon -quill -privette -prange -pickrell -perino -penning -pankratz -orlandi -nyquist -norrell -noren -naples -nale -nakashima -musselwhite -murrin -murch -mullinix -mullican -mullan -morneau -mondor -molinar -mo -minjares -minix -mingle -minchew -mill -milewski -mikkelson -mifflin -messing -merkley -meis -meas -mcroy -mcphearson -mcneel -mcmunn -mcmorrow -mcdorman -mccroskey -mccoll -mcclusky -mcclaran -mccampbell -mazzariello -mauzy -mauch -mastro -martinek -marsala -marcantel -mahle -lyda -lucius -luciani -lubbers -louder -lobel -linsey -linch -liller -legros -layden -lapine -lansberry -lage -laforest -labriola -koga -knupp -klimek -kittinger -kirchoff -kinzel -killinger -kilbourne -ketner -kepley -kemble -kells -kear -kaya -karsten -kaneshiro -kamm -joines -joachim -janelle -jacobus -iler -holgate -hoar -hisey -hird -hilyard -heslin -herzberg -hennigan -hegland -hartl -haner -handel -gualtieri -greenly -grasser -gran -goetsch -godbold -gilland -gidney -gibney -giancola -gettinger -garzon -garret -galle -galgano -gaier -gaertner -fuston -freel -fortes -flock -fiorillo -figgs -fenstermacher -fedler -facer -fabiano -evins -eusebio -euler -esquer -enyeart -elem -eisenhower -eich -edgerly -durocher -durgan -duffin -drolet -drewes -dotts -dossantos -dolly -dockins -dirksen -difiore -dierks -dickerman -dice -dery -denault -demaree -delmonte -delcambre -days -daulton -darst -dahle -curnutt -cully -culligan -cueva -crosslin -croskey -cromartie -crofts -covin -coutee -countess -cost -coppa -coogan -condrey -concannon -coger -cloer -clatterbuck -cieslak -chumbley -choudhury -chiaramonte -charboneau -chai -carneal -cappello -campisi -callicoat -burgoyne -bucholz -brumback -brosnan -brogden -broder -brendle -breece -bown -bou -boser -bondy -bolster -boll -bluford -blandon -biscoe -bevill -bence -battin -basel -bartram -barnaby -barmore -balbuena -badgley -backstrom -auyeung -ater -arrellano -arant -ansari -alling -alejandre -alcock -alaimo -aguinaldo -aarons -zurita -zeiger -zawacki -yutzy -yarger -wygant -wurm -wuest -wolfram -witherell -wisneski -whitby -whelchel -weisz -weisinger -weishaar -wehr -wedge -waxman -waldschmidt -walck -waggener -vosburg -vita -villela -vercher -venters -vanscyoc -vandyne -valenza -utt -urick -ungar -ulm -tumlin -tsao -tryon -trudel -treiber -tow -tober -tipler -tillson -tiedemann -thornley -tetrault -temme -tarrance -tackitt -sykora -sweetman -swatzell -sutliff -suhr -sturtz -strub -strayhorn -stormer -steveson -stengel -steinfeldt -spiro -spieker -speth -spero -soza -souliere -soucie -snedeker -slifer -skillings -situ -siniard -simeon -signorelli -siggers -shultis -shrewsbury -shippee -shimp -sherron -shepler -sharpless -shadrick -severt -severs -semon -semmes -seiter -segers -sclafani -sciortino -schroyer -schrack -schoenberg -schober -scheidt -scheele -satter -sartori -sarris -sarratt -salvaggio -saladino -sakamoto -saine -ryman -rumley -ruggerio -rucks -roughton -room -robards -ricca -rexroad -resler -reny -rentschler -redrick -redick -reagle -raymo -rape -raker -racette -pyburn -pritt -presson -pressman -pough -plain -pisani -perz -perras -pelzer -pedrosa -palos -palmisano -paille -orem -orbison -oliveros -nourse -nordquist -newbury -nelligan -nawrocki -myler -mumaw -morphis -moldenhauer -miyashiro -mignone -mickelsen -michalec -mesta -mcree -mcqueary -mcninch -mcneilly -mclelland -mclawhorn -mcgreevy -mcconkey -mattes -maselli -marten -mart -marcucci -manseau -manjarrez -malbrough -machin -mabie -lynde -lykes -lueras -lokken -loken -linzy -lillis -lilienthal -levey -legler -leedom -lebowitz -lazzaro -larabee -lapinski -langner -langenfeld -lampkins -lamotte -lambright -lagarde -ladouceur -labrador -labounty -lablanc -laberge -kyte -kroon -kron -kraker -kouba -kirwin -kincer -kimbler -kegler -keach -katzman -katzer -kalman -journey -jimmerson -jenning -janus -iacovelli -hust -huson -husby -humphery -hufnagel -honig -holsey -holoman -hohl -hogge -hinderliter -hildebrant -hick -hey -hemby -helle -heintzelman -heidrick -hearon -heap -hazelip -hauk -hasbrouck -harton -hartin -harpster -hansley -hanchett -haar -guthridge -gulbranson -guill -guerrera -grund -grosvenor -grist -grell -grear -granberry -gonser -giunta -giuliani -gillon -gillmore -gillan -gibbon -gettys -gelb -gano -galliher -fullen -frese -frates -foxwell -fleishman -fleener -fielden -ferrera -feng -fells -feemster -fauntleroy -fails -evatt -espy -eno -emmerich -edwin -edler -eastham -dunavant -duca -drinnon -dowe -dorgan -dollinger -divers -dipalma -difranco -dietrick -denzer -demarest -delee -delariva -delany -decesare -debellis -deavers -deardorff -dawe -darosa -darley -dalzell -dahlen -curto -cupps -cunniff -cude -crivello -cripps -cresswell -cousar -cotta -compo -colorado -clyne -clayson -cearley -catania -carini -cargo -cantero -cali -buttrey -buttler -burpee -bulkley -buitron -buda -bublitz -bryer -bryden -brouillette -brott -brookman -bronk -breshears -brennen -brannum -brandl -braman -bracewell -boyter -bomberger -bold -bogen -boeding -bob -blauvelt -blandford -bigger -biermann -bielecki -bibby -berthold -berkman -belvin -bellomy -beland -behne -beecham -becher -beams -bax -bassham -barret -baley -bacchus -auxier -atkison -ary -arocha -arechiga -anspach -an -algarin -alcott -alberty -ager -adolph -ackman -abdul -abdallah -zwick -ziemer -zastrow -zajicek -yokum -yokley -wittrock -winebarger -wilker -wilham -whitham -wetzler -westling -westbury -wendler -wellborn -weitzman -weitz -weight -wallner -waldroup -vrabel -vowels -volker -vitiello -visconti -villicana -vibbert -vesey -vannatter -vangilder -vandervort -vandegrift -vanalstyne -vallecillo -usrey -tynan -turpen -tuller -trisler -townson -tillmon -threlkeld -thornell -terrio -taunton -tarry -tardy -swoboda -swihart -sustaita -suitt -stuber -strine -stookey -stmartin -stiger -stainbrook -solem -smail -sligh -siple -sieben -shumake -shriner -showman -shiner -sheen -sheckler -seim -secrist -scoggin -schultheis -schmalz -schendel -schacher -savard -saulter -santillanes -sandiford -sande -salzer -salvato -saltz -sakai -ryckman -ryant -ruck -ronald -rocker -rittenberry -ristau -risk -richart -rhynes -reyer -reulet -reser -redington -reddington -rebello -reasor -raftery -rabago -raasch -quintanar -pylant -purington -provencal -prom -prioleau -prestwood -pothier -popa -polster -politte -poffenberger -pinner -pietrzak -pettie -penaflor -pellot -pellham -paylor -payeur -papas -paik -oyola -osbourn -orzechowski -oppenheimer -olesen -oja -ohl -nuckolls -nordberg -noonkester -nold -nitta -niblett -neuhaus -nesler -ned -nanney -myrie -mutch -motto -mosquera -morena -montalto -montagna -mizelle -mincy -millikan -millay -miler -milbourn -mikels -migues -miesner -mershon -merrow -merlin -melia -meigs -mealey -mcraney -mcmartin -mclachlan -mcgeehan -mcferren -mcdole -mccaulley -mcanulty -maziarz -maul -mateer -martinsen -marson -mariotti -manna -mang -mance -malbon -mah -magnusson -maclachlan -macek -lurie -luc -lown -loranger -lonon -lisenby -linsley -linger -lenk -leavens -learned -lauritzen -lathem -lashbrook -landman -lamarche -lamantia -laguerre -lagrange -kogan -klingbeil -kist -kimpel -kime -kier -kerfoot -kennamer -kellems -kammer -kamen -jess -jepsen -jarnigan -isler -ishee -isabel -hux -hungate -hummell -hultgren -huffaker -hruby -hover -hornick -hooser -hooley -hoggan -hirano -hilley -higham -heuser -henrickson -henegar -hellwig -heide -hedley -hasegawa -hartt -hambright -halfacre -hafley -guion -guinan -grunwald -grothe -gries -greaney -granda -grabill -gothard -gossman -gosser -gossard -gosha -goldner -gobin -gloss -ginyard -gilkes -gilden -gerson -gephart -gengler -gautier -gassett -garon -gandhi -galusha -gallager -galdamez -fulmore -fritsche -fowles -foutch -forward -footman -fludd -flakes -ferriera -ferrero -ferreri -fenimore -fegley -fegan -fearn -farrier -fansler -fane -falzone -fairweather -etherton -elsberry -dykema -duppstadt -dunnam -dunklin -duet -due -dudgeon -dubuc -doxey -dory -donmoyer -dodgen -disanto -dingler -dimattia -dilday -digennaro -diedrich -derossett -deputy -depp -demasi -degraffenreid -deakins -deady -davin -daigre -daddario -czerwinski -cullens -cubbage -cracraft -constance -comes -combest -coletti -coghill -clerk -claybrooks -class -christofferse -chiesa -chason -chamorro -cessna -celentano -cayer -carolan -carnegie -capetillo -callier -cadogan -caba -byrom -byrns -burrowes -burket -burdge -burbage -bukowski -buchholtz -brunt -brungardt -brunetti -brumbelow -brugger -broadhurst -brigance -brandow -bouknight -bottorff -bottomley -bosarge -borger -bona -bombardier -bologna -boggan -blumer -blecha -birney -birkland -betances -beran -benny -benes -belin -belgrave -bealer -bauch -bath -bashir -bartow -baro -barnhouse -barile -ballweg -baisley -bains -baehr -badilla -bachus -bacher -bachelder -auzenne -aten -astle -allis -agarwal -adger -adamek -ziolkowski -zinke -zazueta -zamorano -younkin -won -wittig -witman -winsett -winkles -wiedman -whitner -whitcher -wetherby -westra -westhoff -wehrle -wee -wagaman -voris -vicknair -vegas -veasley -vaugh -vanish -vanderburg -valletta -tunney -trumbo -truluck -trueman -truby -trombly -trojan -tourville -tostado -tone -titcomb -timpson -tignor -thrush -thresher -thiede -tews -tamplin -taff -tacker -syverson -sylvestre -summerall -stumbaugh -strouth -straker -stradford -stoney -stokley -steinhoff -steinberger -stairs -spigner -soltero -snively -sletten -sinkler -sinegal -simoes -siller -sigel -shoe -shire -shinkle -shellman -sheller -sheats -sharer -selvage -sedlak -sea -schriver -schimke -scheuerman -schanz -savory -saulters -sauers -sais -rusin -rumfelt -ruhland -rozar -rosborough -ronning -rolph -roloff -rogue -robie -riviera -rimer -riehle -ricco -rhein -retzlaff -reisman -reimann -re -rayes -raub -raminez -quesinberry -pua -procopio -priolo -printz -prewett -preas -prahl -portugal -poovey -ploof -platz -plaisted -pinzon -pineiro -pickney -petrovich -perl -pehrson -peets -pavon -pautz -pascarella -paras -paolini -pals -pafford -oyer -ovellette -outten -outen -ours -orduna -odriscoll -oberlin -nosal -niven -nisbett -nevers -nathanson -mule -mukai -mozee -mowers -motyka -morency -montford -mollica -molden -mitten -miser -mina -millender -midgette -messerly -melendy -meisel -meidinger -meany -mcnitt -mcnemar -mcmakin -mcgaugh -mccaa -mauriello -maudlin -matzke -mattia -matteo -matsumura -masuda -mangels -maloof -malizia -mahmoud -maglione -maddix -lucchesi -lochner -linquist -lino -lietz -leventhal -leopard -lemanski -leiser -laury -lauber -lamberth -kuss -kung -kulik -kuiper -krout -kotter -kort -kohlmeier -koffler -koeller -knipe -knauss -kleiber -kissee -kirst -kirch -kilgo -kerlin -kellison -kehl -kalb -jorden -jantzen -jamar -inabinet -ikard -husman -hunsberger -hundt -hucks -houtz -houseknecht -hoots -hogsett -hogans -hintze -hession -henault -hemming -helsley -heinen -heffington -heberling -heasley -heal -hazley -hazeltine -hayton -hayse -hawke -haston -harward -harvard -harrow -hanneman -hafford -hadnot -guerro -graig -grahm -gowins -gordillo -goosby -glatt -gibbens -ghent -gerrard -germann -geil -gebo -gean -garling -gardenhire -garbutt -gagner -furguson -funchess -fujiwara -fujita -friley -frigo -forshee -folkes -filler -fernald -ferber -feingold -favorite -faul -farrelly -fairbank -failla -estelle -espey -eshleman -ertl -erhart -erhardt -erbe -elsea -ells -ellman -eisenhart -ehmann -earnhardt -duplantis -dulac -ducote -draves -dosch -dolce -divito -ditch -dimauro -derringer -demeo -demartini -delima -dehner -degen -defrancisco -defoor -dedeaux -debnam -cypert -cutrer -cusumano -custis -croker -courtois -costantino -cormack -corbeil -copher -conlan -conkling -cogdell -cilley -chapdelaine -cendejas -castiglia -cassette -cashin -carstensen -carol -caprio -calcote -calaway -byfield -butner -bushway -burritt -browner -brobst -briner -brighton -bridger -brickley -brendel -bratten -bratt -brainerd -brackman -bowne -bouck -borunda -bordner -bonenfant -boer -boehmer -bodiford -bleau -blankinship -blane -blaha -bitting -bissonette -bigby -bibeau -beverage -bermudes -berke -bergevin -bergerson -bendel -belville -bechard -bearce -beadles -batz -bartlow -barren -ayoub -avans -aumiller -arviso -arpin -arnwine -armwood -arent -arehart -arcand -antle -ambrosino -alongi -alm -allshouse -ahart -aguon -ziebarth -zeledon -zakrzewski -yuhas -yingst -yedinak -wommack -winnett -wingler -wilcoxen -whitmarsh -whistler -wayt -watley -wasser -warkentin -voll -vogelsang -voegele -vivanco -vinton -villafane -viles -versace -ver -venne -vanwagoner -vanwagenen -vanleuven -vanauken -uselton -uren -trumbauer -tritt -treadaway -tozier -tope -tomczak -tomberlin -tomasini -tollett -toller -titsworth -tirrell -tilly -tavera -tarnowski -tanouye -tall -swarthout -sutera -surette -styers -styer -stipe -stickland -steve -stembridge -stearn -starkes -stanberry -stahr -spino -spicher -sperber -speece -soo -sonntag -sneller -smalling -slowik -slocumb -sliva -slemp -slama -sitz -sisto -sisemore -sindelar -shipton -shillings -sheeley -sharber -shaddix -severns -severino -sever -sensabaugh -seder -seawell -seamons -schrantz -schooler -scheffer -scheerer -scalia -saum -santibanez -sano -sanjuan -sampley -sailer -sabella -sabbagh -royall -rottman -rivenbark -rikard -ricketson -rickel -rethman -reily -reddin -reasoner -reade -rast -ranallo -rana -quintal -pung -pucci -proto -prosperie -prim -preusser -preslar -powley -postma -pinnix -pilla -pietsch -pickerel -pica -pharris -petway -petillo -perin -pereda -pennypacker -pennebaker -pedrick -patin -patchell -parodi -parman -pantano -padua -padro -osterhout -orner -opp -olivar -ohlson -odonoghue -oceguera -oberry -novello -noguera -newquist -newcombe -neihoff -nehring -nees -nebeker -nau -mundo -mullenix -morrisey -moronta -morillo -morefield -mongillo -molino -minto -midgley -michie -menzies -medved -mechling -mealy -mcshan -mcquaig -mcnees -mcglade -mcgarity -mcgahey -mcduff -mayweather -mastropietro -masten -maranto -maniscalco -maize -mahmood -maddocks -maday -macha -maag -luken -lopp -lolley -llanas -litz -litherland -lindenberg -lieu -letcher -lentini -lemelle -leet -lecuyer -leber -laursen -latch -larrick -lantigua -langlinais -lalli -lafever -labat -labadie -kurt -krogman -kohut -knarr -klimas -klar -kittelson -kirschbaum -kintzel -kincannon -kimmell -killgore -kettner -kelsch -karle -kapoor -johansson -jock -jenkinson -janney -isabelle -iraheta -insley -hyslop -hy -human -huckstep -holleran -hoerr -hinze -hinnenkamp -hilger -higgin -hicklin -heroux -henkle -helfer -heikkinen -heckstall -heckler -heavener -haydel -haveman -haubert -harrop -harnois -hansard -hanover -hammitt -haliburton -haefner -hadsell -haakenson -guynn -guizar -grout -grosz -goo -gomer -golla -godby -glanz -glancy -givan -giesen -gerst -gayman -garraway -gabor -furness -frisk -fremont -frary -forand -fessenden -ferrigno -fearon -favreau -faulks -falbo -ewen -everton -eurich -etchison -esterly -entwistle -ellingsworth -elders -ek -eisenbarth -edelson -eckel -earnshaw -dunneback -doyal -donnellan -dolin -dibiase -deschenes -dermody -denmark -degregorio -darnall -dant -dansereau -danaher -dammann -dames -czarnecki -cuyler -custard -cummingham -cuffie -cuffee -cudney -cuadra -crigler -creger -coughlan -corvin -cortright -corchado -connery -conforti -condron -colosimo -colclough -cola -cohee -claire -ciotti -chill -chien -check -chacko -cevallos -cavitt -cavins -castagna -cashwell -carrozza -carrara -capra -campas -callas -caison -cai -caggiano -cabot -bynoe -buswell -burpo -burnam -burges -buerger -buelow -bueche -buckle -bruni -brummitt -brodersen -briese -breit -brakebill -braatz -boyers -boughner -borror -borquez -bonelli -bohner -blaze -blaker -blackmer -bissette -bibbins -bhatt -bhatia -bessler -bergh -beresford -bensen -benningfield -benito -bellantoni -behler -beehler -beazley -beauchesne -bargo -bannerman -baltes -balog -ballantyne -bad -axelson -apgar -aoki -anstett -alejos -alcocer -albury -aichele -ahl -ackles -zerangue -zehner -zank -zacarias -youngberg -yorke -yarbro -xie -wydra -worthley -wolbert -wittmer -witherington -wishart -wire -winnie -winkleman -willilams -willer -wiedeman -whittingham -whitbeck -whetsel -wheless -westerberg -welcher -wegman -waterfield -wasinger -warfel -wannamaker -walborn -wada -vogl -vizcarrondo -vitela -villeda -veras -venuti -veney -ulrey -uhlig -turcios -tremper -torian -torbett -thrailkill -terrones -teitelbaum -teems -tay -swoope -sunseri -stutes -stthomas -strohm -stroble -striegel -streicher -stodola -stinchcomb -steves -steppe -stem -steller -staudt -starner -stamant -stam -stackpole -sprankle -speciale -spahr -sowders -sova -soluri -soderlund -slinkard -skates -sjogren -sirianni -siewert -sickels -sica -shugart -shoults -shive -shimer -shier -shield -shepley -sheeran -sharper -sevin -severe -seto -segundo -sedlacek -scuderi -schurman -schuelke -scholten -schlater -schisler -schiefelbein -schalk -sanon -sae -sabala -ruyle -ruybal -ruf -rueb -rowsey -rosol -rocheleau -rishel -rippey -ringgold -rieves -ridinger -rew -retherford -rempe -reith -rafter -raffaele -quinto -putz -purdom -puls -pulaski -propp -principato -preiss -prada -polansky -poch -plath -pittard -pinnock -pfarr -pfannenstiel -penniman -pauling -patchen -paschke -parkey -pando -overly -ouimet -ottman -otter -ostlund -ormiston -occhipinti -nowacki -norred -noack -nishida -nilles -nicodemus -neth -nealey -myricks -murff -mungia -mullet -motsinger -moscato -mort -morado -moors -monnier -molyneux -modzelewski -miura -minich -militello -milbrandt -michalik -meserve -merle -mendivil -melara -meadow -mcnish -mcelhannon -mccroy -mccrady -mazzella -maule -mattera -mathena -matas -mass -mascorro -marone -marinello -marguez -marcell -manwaring -manhart -mangano -maggi -lymon -luter -luse -lukasik -luiz -ludlum -luczak -lowenthal -lossett -lorentzen -loredo -longworth -lomanto -lisi -lish -lipsky -linck -liedtke -levering -lessman -lemond -lembo -ledonne -leatham -laufer -lanphear -langlais -lando -lamphear -lamberton -lafon -lade -lacross -kyzer -krok -kring -krell -krehbiel -kratochvil -krach -kovar -kostka -knudtson -knaack -kliebert -klahn -kirkley -kimzey -kettle -kerrick -kennerson -keesler -karlin -kan -jenny -janousek -jan -imel -icenhour -hyler -hunger -hudock -houpt -hopping -hoops -holquin -holiman -holahan -hodapp -hires -hillen -hickmon -hersom -henrich -helvey -heidt -heideman -hedstrom -hedin -hebron -hayter -harn -hardage -harbor -halsted -hahne -hagemann -guzik -guel -groesbeck -gritton -grego -graziani -grasty -graney -gouin -gossage -golston -goheen -godina -glade -giorgi -giambrone -gerrity -gerrish -gero -gerling -gaulke -garlick -galiano -gaiter -gahagan -gagnier -friddle -fredericksen -franqui -follansbee -foerster -flury -fitzmaurice -fiorini -finlayson -fiecke -fickes -fichter -ferron -ferdinand -farrel -fackler -eyman -escarcega -errico -erler -erby -engman -engelmann -elsass -elliston -eddleman -eadie -dummer -drost -dorrough -dorrance -doolan -donalson -domenico -ditullio -dittmar -dishon -dionisio -dike -devinney -desir -deschamp -derrickson -delamora -deitch -dechant -dave -danek -dahmen -curci -cudjoe -crumble -croxton -creasman -craney -crader -cowling -coulston -cortina -corlew -corl -copland -convery -cohrs -clune -clausing -cipriani -cinnamon -cianciolo -chubb -chittum -chenard -charlesworth -charlebois -champine -chamlee -chagoya -casselman -cardello -capasso -cannella -calderwood -byford -buttars -bushee -burrage -buentello -brzozowski -bryner -brumit -brookover -bronner -bromberg -brixey -brinn -briganti -bremner -brawn -branscome -brannigan -bradsher -bozek -boulay -bormann -bongiorno -bollin -bohler -bogert -bodenhamer -blose -blind -bivona -bitter -billips -bibler -benfer -benedetti -belue -bellanger -belford -behn -beerman -barnhardt -baltzell -balling -balducci -bainter -babineau -babich -baade -attwood -asmus -asaro -artiaga -april -applebaum -ang -anding -amar -amaker -allsup -alligood -alers -agin -agar -achenbach -abramowitz -abbas -aasen -zehnder -yopp -yelle -yeldell -wynter -woodmansee -wooding -woll -winborne -willsey -willeford -widger -whiten -whitchurch -whang -wen -weissinger -weinman -weingartner -weidler -waltrip -walt -wagar -wafford -vitagliano -villalvazo -villacorta -vigna -vickrey -vicini -ventimiglia -vandenbosch -valvo -valazquez -utsey -urbaniak -unzueta -trombetta -trevizo -trembley -tremaine -traverso -tores -tolan -tillison -tietjen -tee -teachout -taube -tatham -tarwater -tarbell -sydow -sy -swims -swader -striplin -stops -stoltenberg -steinhauer -steil -steigerwald -starkweather -stallman -squier -sparacino -span -spadafora -shiflet -shibata -shevlin -sherrick -shake -sessums -servais -senters -seevers -seelye -searfoss -seabrooks -scoles -schwager -schrom -schmeltzer -scheffel -sax -sawin -saterfiel -sardina -sanroman -sane -sandin -salamanca -saladin -sak -sabia -rustin -rushin -ruley -rueter -row -rotter -rosenzweig -roles -rohe -roder -rockey -ro -riter -rieth -ried -riding -riddles -ridder -rennick -remmers -remer -relyea -reilley -reder -rasheed -rakowski -rabin -queener -pursel -prue -prowell -pritts -primo -presler -pouncy -porche -porcaro -pollman -pleas -planas -pinkley -pinegar -pilger -philson -petties -perrodin -pendergrast -patao -pasternak -passarelli -pasko -parshall -panos -panella -palombo -padillo -oyama -overlock -overbeck -otterson -orrell -ornellas -opitz -okelly -officer -obando -noggle -nicosia -netto -negrin -natali -nakayama -nagao -nadel -musial -murrill -murrah -munsch -mucci -mrozek -moyes -mowrer -moris -morais -moorhouse -monico -mone -mondy -moncayo -mole -miltenberger -milsap -milone -millikin -milardo -mika -micheals -micco -meyerson -mericle -mendell -meinhardt -meachum -mcleroy -mcgray -mcgonigal -maultsby -matis -matheney -matamoros -marro -marcil -marcial -mantz -mannings -maltby -malchow -maiorano -mahn -mahlum -maglio -mae -maberry -lustig -luellen -longwell -longenecker -lofland -locascio -linney -linneman -lighty -levell -levay -lenahan -lemen -lehto -lebaron -lanctot -lamy -lainez -laffoon -labombard -kujawski -kroger -kreutzer -korhonen -kondo -kollman -kohan -kogut -knaus -kivi -kittel -kinner -kindig -kindel -kiesel -kidney -kibby -khang -kettler -ketterer -kepner -kelliher -keenum -kanode -kail -july -juhasz -jowett -jolicoeur -jeon -iser -ingrassia -imai -hutchcraft -humiston -hulings -hukill -huizenga -hugley -huddle -hose -hornyak -hodder -hisle -hillenbrand -hille -higuchi -hertzler -herdon -heppner -hepp -heitmann -heckart -hazlewood -hayles -hayek -hawthorn -hawkin -haugland -hasler -harbuck -happel -hambly -hambleton -hagaman -guzzi -gullette -guinyard -grogg -grise -griffing -goto -gosney -goods -goley -goldblatt -gledhill -girton -giltner -gillock -gilham -gilfillan -giblin -gentner -gehlert -gehl -garten -garney -garlow -garett -galles -galeana -futral -fuhr -friedland -franson -fransen -foulds -follmer -foland -flax -flavin -firkins -fillion -figueredo -ferrill -fenster -fenley -fauver -farfan -factor -eustice -eppler -engelman -engelke -emmer -elzy -ellwood -ellerbee -elks -ehret -ebbert -durrah -dupras -dubuque -dragoo -donlon -dolloff -doi -dibella -derrico -demko -demar -darrington -czapla -crooker -creagh -cranor -craner -crafts -crabill -coyer -cowman -cowherd -cottone -costillo -coster -costas -cosenza -corker -collinson -coello -clingman -clingerman -claborn -citizen -chmura -chausse -chaudhry -chapell -chancy -cerrone -caves -caverly -caulkins -carn -campfield -campanelli -callaham -cadorette -butkovich -buske -burrier -burkley -bunyard -budge -buckelew -buchheit -broman -brescia -brasel -brain -boyster -booe -bonomo -bonnet -bondi -bohnsack -bobby -blomberg -blanford -bilderback -biggins -bently -behrends -beegle -bedoya -bechtol -beaubien -bayerl -baumgart -baumeister -barratt -barlowe -barkman -barbagallo -baldree -baine -bail -baggs -bacote -aylward -ashurst -arvidson -arthurs -arrieta -arrey -arreguin -arrant -arner -armor -arizmendi -anker -amis -amend -alphin -allbright -aikin -acres -zupan -zuchowski -zeolla -zanchez -zahradnik -zahler -younan -yeater -yearta -yarrington -yantis -woomer -wollard -wolfinger -woerner -witek -wishon -wisener -wingerter -willet -wilding -wiedemann -weisel -wedeking -weary -waybright -wardwell -walkins -waldorf -voth -voit -virden -viloria -villagran -vasta -vashon -vaquera -vantassell -vanderlinden -vandergrift -vancuren -valenta -underdahl -tyra -tygart -twining -twiford -turlington -tullius -tubman -trowell -trieu -transue -tousant -torgersen -tooker -tony -tome -toma -tocci -tippins -tinner -timlin -tillinghast -tidmore -teti -tedrick -tacey -swanberg -sunde -summitt -summerford -summa -sue -stratman -strandberg -storck -stober -steitz -stayer -stauber -staiger -sponaugle -spofford -sparano -spagnola -sokoloski -snay -slough -skowronski -sieck -shimkus -sheth -sherk -shankles -shakespeare -shahid -sevy -sergeant -senegal -seiden -seidell -searls -searight -schwalm -schug -schilke -schier -scheck -sawtelle -santore -santa -sanks -sandquist -sanden -saling -sabine -saathoff -ryberg -rustad -ruffing -rudnicki -ruane -rozzi -rowse -rosenau -rodes -risser -riggin -riess -riese -rhoten -reinecke -reigle -reichling -redner -rebelo -raynes -raimondi -rahe -rada -querry -quellette -pulsifer -prochnow -pretty -prato -poulton -poudrier -poll -policastro -polhemus -polasek -poissant -pohlmann -plotner -pitkin -pita -pio -pinkett -pilot -piekarski -pichon -philippe -pfau -petroff -petermann -peplinski -peller -pecinovsky -pearse -pattillo -patague -parlier -parenti -parchman -pane -paff -ota -ortner -oros -nolley -noakes -nigh -nicolosi -nicolay -newnam -netter -nass -napoles -nakata -nakamoto -muriel -muck -morlock -moraga -montilla -mongeau -molitor -mohney -mitchener -meyerhoff -medel -mcniff -mcmonagle -mcglown -mcglinchey -mcgarrity -mccright -mccorvey -mcconnel -mccargo -mazzei -matula -mastroianni -massingale -maring -maricle -marc -mans -mannon -mannix -manney -manger -manalo -malo -malan -mahony -madril -mackowiak -macko -macintosh -lurry -luczynski -lucke -lucarelli -luca -loud -lou -losee -lorence -loiacono -lohse -loder -lipari -linebarger -lindamood -limbaugh -letts -leleux -leep -leeder -leard -laxson -lawry -laverdiere -laughton -lastra -kurek -kriss -krishnan -kretschmer -krebsbach -kontos -knobel -knauf -klick -kleven -klawitter -kitchin -kirkendoll -kinkel -kingrey -kilbourn -kensinger -kennerly -kamin -justiniano -jurek -junkin -julia -judon -jordahl -jeanes -jarrells -jamal -iwamoto -isreal -ishida -ines -immel -iman -ihle -hyre -hurn -hunn -hultman -huffstetler -huffer -hubner -howey -horney -hooton -holts -holscher -holen -hoggatt -hilaire -herz -henne -helstrom -hellickson -heinlein -heckathorn -heckard -heather -heart -headlee -hauptman -haughey -hatt -harring -harford -hammill -hamed -halperin -haig -hagwood -hagstrom -gunnells -gundlach -guardiola -greeno -greenland -gonce -goldsby -gobel -gisi -gillins -gillie -germano -geibel -gauger -garriott -garbarino -gander -gajewski -funari -fullbright -fuell -fritzler -freshwater -freas -fortino -forbus -fonda -flohr -flemister -fisch -finks -fenstermaker -feldstein -faw -farhat -farah -fankhauser -fagg -fader -exline -emigh -eguia -edman -eckler -eastburn -dy -dunmore -dubuisson -dubinsky -drayer -doverspike -doubleday -doten -dorner -dolson -dohrmann -disla -direnzo -dipaola -dines -dickie -diblasi -dewolf -desanti -dennehy -demming -delker -decola -davilla -davids -daughtridge -darville -darland -danzy -dandy -dagenais -culotta -cruzado -crudup -croswell -coverdale -covelli -couts -corbell -coplan -coolbaugh -conyer -conlee -conigliaro -comiskey -coberly -clendening -clairmont -cienfuegos -chojnacki -chilcote -champney -cassara -casazza -casado -carew -carbin -carabajal -calcagni -cail -caddy -busbee -burts -burbridge -bunge -bundick -buhler -bucker -bucholtz -bruen -broce -brite -brignac -brierly -bridgman -braham -bradish -boyington -borjas -bonnie -bonn -bonhomme -bohlen -bogardus -bockelman -blick -blackerby -bizier -biro -binney -bertolini -bertin -berti -bert -bento -beno -belgarde -belding -beckel -becerril -bazaldua -bayes -bayard -barrus -barris -baros -bara -ballow -balboa -bakewell -baginski -badalamenti -backhaus -avilez -auvil -atteberry -ardon -anzaldua -anello -amsler -amo -ambrosio -althouse -alles -alix -alberti -alberson -aitchison -aguinaga -ziemann -zickefoose -zerr -zeh -zeck -zartman -zahm -zabriskie -yohn -yellowhair -yeaton -yarnall -yaple -wolski -wixon -winford -willner -willms -whitsitt -wheelwright -weyandt -wess -wengerd -weatherholtz -wattenbarger -walrath -walpole -waldrip -voges -violet -vinzant -viars -veres -veneziano -veillon -vawter -vaughns -vanwart -vanostrand -valiente -valderas -uhrig -tunison -tulloch -trostle -treaster -traywick -toye -tomson -tomasello -tomasek -tippit -tinajero -tift -tienda -thorington -thierry -thieme -thibeau -thakkar -tewell -test -telfer -sweetser -sum -stratford -stracener -stoke -stiverson -stelling -stefan -stavros -speaker -spatz -spagnoli -sorge -sober -slevin -slabaugh -simson -shupp -shoultz -shotts -shiroma -shetley -sherrow -sheffey -shawgo -shamburger -sester -segraves -seelig -seats -scioneaux -schwartzkopf -schwabe -scholes -schmuck -schluter -schlecht -schillaci -schildgen -schieber -schewe -schecter -scarpelli -scaglione -sautter -santelli -sandman -salmi -sabado -ryer -rydberg -ryba -rushford -running -runk -ruddick -rotondo -rote -rosenfield -roesner -rocchio -ritzer -rippel -rimes -riffel -richison -ribble -reynold -resh -rehn -ratti -rasor -rasnake -rappold -rando -radosevich -pulice -puff -prichett -pribble -poynor -plowden -pitzen -pittsley -pitter -pigeon -philyaw -philipps -petite -pestana -perro -perone -pera -peil -pedone -pawlowicz -pattee -parten -parlin -pariseau -paredez -pardon -panther -paek -pacifico -otts -ostrow -osornio -oslund -orso -ooten -onken -oniel -onan -ollison -ohlsen -ohlinger -odowd -niemiec -neubert -nembhard -neaves -neathery -nakasone -myerson -muto -muntz -munez -mumme -mumm -mujica -muise -muench -morriss -molock -mishoe -minier -metzgar -mero -meiser -meese -meals -mcsween -mcquire -mcquinn -mcpheeters -mckeller -mcilrath -mcgown -mcdavis -mccuen -mcclenton -maxham -matsui -marriner -marlette -mantle -mansur -mancino -maland -majka -maisch -maheux -madry -madriz -mackley -macke -lydick -lutterman -luppino -lundahl -lovingood -loudon -longmore -lippman -liefer -leveque -lescarbeau -lemmer -ledgerwood -lawver -lawrie -lattea -lasko -lahman -kulpa -kukowski -kukla -kubota -kubala -krizan -kriz -krikorian -kravetz -kramp -kowaleski -knobloch -klosterman -kloster -klepper -kirven -kinnaman -kinnaird -killam -kiesling -kesner -keebler -keagle -karls -kapinos -kantner -kaba -junious -jefferys -jacquet -izzi -ishii -irion -ifill -hyun -hotard -horman -hoppes -hopkin -hokanson -hoda -hocutt -hoaglin -hites -hirai -hindle -hinch -hilty -hild -hier -hickle -hibler -henrichs -hempstead -helmers -hellard -heims -heidler -hearst -hawbaker -hau -harkleroad -harari -hanney -hannaford -hamid -hamburger -haltom -hallford -guilliams -guerette -gryder -groseclose -groen -grimley -greenidge -greek -graffam -goucher -goodenough -goldsborough -goldie -gloster -glanton -gladson -gladding -ghee -gethers -gerstein -geesey -geddie -gayer -gaw -gaver -gauntt -gartland -garriga -garoutte -gao -gan -fronk -fritze -frenzel -forgione -fluitt -flinchbaugh -flach -fiorito -finan -finamore -fimbres -fillman -file -figeroa -ficklin -feher -feddersen -fambro -fairbairn -eves -esperanza -escalona -elsey -eisenstein -ehrenberg -eargle -dress -drane -dorothy -doria -dogan -dively -dewolfe -dettman -desiderio -desch -dennen -denk -demaris -delsignore -dejarnette -deere -dedman -daws -dawn -dauphinais -danz -dantin -dannenberg -dalby -currence -culwell -cuesta -croston -crossno -cromley -crisci -craw -coryell -cooter -condra -columbia -colpitts -colas -coach -clink -clevinger -clermont -cistrunk -cirilo -chirico -chiarello -cephus -cecena -cavaliere -caughey -casimir -carwell -carlon -carbonaro -caraveo -cantley -callejas -cagney -cadieux -cabaniss -bushard -burlew -buras -budzinski -bucklew -bruneau -brummer -brueggemann -brotzman -bross -broad -brittian -brimage -briles -brickman -breneman -breitenstein -brandel -brackins -boydstun -botta -bosket -boros -borgmann -bordeau -bonifacio -bolten -boehman -blundell -bloodsaw -bjerke -biffle -bickett -bickers -beville -bergren -bergey -benzing -belfiore -beirne -beckert -bebout -baumert -battey -bartman -barrs -barriere -barcelo -barbe -balliet -baham -babst -auton -asper -asbell -arzate -argento -arel -araki -arai -apo -antley -amodeo -ammann -allyn -allensworth -aldape -akey -abeita -zweifel -zeng -zeiler -zamor -zalenski -yzaguirre -yousef -yetman -yau -wyer -woolwine -wohlgemuth -wohlers -wittenberg -wingrove -wind -wimsatt -willimas -wilkenson -wildey -wilderman -wilczynski -wigton -whorley -wellons -welles -welle -weirich -weideman -weide -weekly -weast -wasmund -warshaw -walson -waldner -walch -walberg -wagener -wageman -vrieze -vossen -vorce -voorhis -vonderheide -viruet -vicari -verne -velasques -vautour -vartanian -varona -vankeuren -vandine -vandermeer -ursery -underdown -uhrich -uhlman -tworek -twine -twellman -tweedie -tutino -turmelle -tubb -troop -trivedi -triano -trevathan -treese -treanor -treacy -traina -topham -toenjes -tippetts -tieu -thomure -thatch -than -tetzlaff -tetterton -tena -tell -teamer -tappan -tank -talcott -tagg -szczepanski -syring -surace -sulzer -sugrue -sugarman -suess -styons -stwart -stupka -strey -straube -strate -stoddart -stockbridge -stjames -stinger -steimle -steenberg -start -stamand -staller -stahly -stager -spurgin -sprow -sponsler -speas -spainhour -sones -smits -smelcer -slovak -slaten -singleterry -simien -sidebottom -sibrian -shellhammer -shelburne -shambo -sepeda -seigel -scogin -scianna -schmoll -schmelzer -scheu -schachter -savant -sauseda -satcher -sandor -sampsell -rugh -rufener -rudolf -rotenberry -rossow -rossbach -roots -rollman -rodrique -rodreguez -rodkey -roda -rising -rini -riggan -rients -riedl -rhines -ress -reinbold -raschke -rardin -rain -racicot -quillin -pushard -primrose -pries -pressey -precourt -pratts -postel -poppell -plumer -pingree -pieroni -pflug -petre -petrarca -peterka -peru -perkin -pergande -peranio -penna -pekar -pea -paulhus -pasquariello -parras -parmentier -para -panzer -pamplin -oviatt -osterhoudt -ostendorf -osmun -ortman -orloff -orban -onofrio -olveda -oltman -okeeffe -ocana -nunemaker -novy -noffsinger -nish -niday -nethery -nestle -nemitz -neidert -nadal -nack -muszynski -munsterman -mulherin -mortimore -morter -montesino -montalvan -montalbano -momon -moman -mom -mogan -minns -millward -milling -michelsen -micheal -mewborn -metro -metayer -mensch -meloy -meggs -meaders -mcsorley -mcmenamin -mclead -mclauchlin -mcguffey -mcguckin -mcglaughlin -mcferron -mcentyre -mccrum -mccawley -mcbain -mayhue -mau -matzen -matton -marsee -marrin -marland -markum -mantilla -manfre -malta -makuch -madlock -maclaren -macauley -luzier -luthy -lufkin -lucena -loudin -lothrop -lorch -lona -loll -loadholt -lisa -lippold -likes -lichtman -liberto -liakos -lewicki -levett -level -lentine -leja -legree -lawhead -lauro -lauder -lard -lanman -lank -laning -lama -lalor -krob -kriger -kriegel -krejci -kreisel -kozel -kos -konkel -kolstad -koenen -kocsis -knoblock -knebel -klopfer -klee -kilday -kesten -kerbs -kempker -keathley -kazee -kawasaki -kaur -kamer -kamaka -kallenbach -kafka -jerrell -jehle -jaycox -jardin -jahns -ivester -hyppolite -hyche -husbands -hur -huppert -hulin -hubley -horsey -hornak -holzwarth -holmon -hollabaugh -holaway -hodes -hoak -hinesley -hillwig -hillebrand -highfield -heslop -herrada -hendryx -hellums -heit -heishman -heindel -hayslip -hayford -hastie -hartgrove -hanus -hakim -hains -hadnott -gundersen -gulino -guidroz -guebert -gressett -greenhouse -graydon -gramling -grahn -goupil -gory -gorelick -goodreau -goodnough -golay -going -goers -glatz -gillikin -gieseke -giammarino -getman -geronimo -gerardo -gensler -gazda -garibaldi -gahan -fury -funderburke -fukuda -fugitt -fuerst -fortman -forsgren -formica -fluke -flink -fitton -feltz -fekete -feit -fehrenbach -farone -farinas -faries -fagen -ewin -esquilin -esch -enderle -ellery -ellers -ekberg -egli -effinger -dymond -dulle -dula -duhe -dudney -duane -dowless -dower -dorminey -dopp -dooling -domer -disher -dillenbeck -difilippo -dibernardo -deyoe -devillier -denley -deland -defibaugh -deeb -debow -dauer -datta -darcangelo -daoust -damelio -dahm -dahlman -cypher -curling -curlin -cupit -culton -cuenca -cropp -croke -cremer -crace -cosio -corzine -coombe -coman -colone -coloma -collingwood -coletta -coderre -cocke -cobler -claybrook -circle -cincotta -cimmino -christoff -christina -chisum -chillemi -chevere -chae -chachere -cervone -cermak -cefalu -cauble -cather -caso -carns -carcamo -carbo -capoccia -capello -capell -canino -cambareri -calvi -cabiness -bushell -burtt -burstein -burkle -bunner -bundren -buechler -bryand -bruso -brownstein -brow -brouse -brodt -broaden -brisbin -brightman -bridgett -brenes -breitenbach -brazzell -brazee -bramwell -bramhall -bradstreet -boyton -bowland -boulter -bossert -bonura -bonebrake -bonacci -boeck -blystone -birchard -bilal -biddy -bibee -bevans -bethke -bertelsen -berney -bergfeld -benware -bellon -bellah -been -batterton -barberio -bamber -bagdon -badeaux -averitt -augsburger -ates -arvie -aronowitz -arens -arch -araya -angelos -andrada -amell -amante -alvin -almy -almquist -alls -aispuro -aguillon -agudelo -admire -acy -aceto -abbot -abalos -zdenek -zaremba -zaccaria -youssef -wrona -wrinkle -wrede -wotton -woolston -wolpert -wollman -wince -wimberley -willmore -willetts -wikoff -wieder -wickert -whitenack -wernick -welte -welden -weiskopf -weisenberger -weich -wallington -walder -vossler -vore -vigo -vierling -victorine -verdun -vencill -vena -vazguez -vassel -vanzile -vanvliet -vantrease -vannostrand -vanderveer -vanderveen -vancil -uyeda -umphrey -uhler -uber -tutson -turrentine -tullier -tugwell -trundy -tripodi -tomer -tomei -tomasi -tomaselli -tokarski -tisher -tibbets -thweatt -thistle -tharrington -tesar -telesco -teasdale -tatem -taniguchi -suriel -sudler -stutsman -sturman -strite -strelow -streight -strawder -stransky -strahl -stours -stong -stinebaugh -stilts -stillson -steyer -stelle -steffy -steffensmeier -statham -squillante -spiess -spargo -southward -soller -soden -snuggs -snellgrove -smyers -smiddy -slonaker -skyles -skowron -sivils -siqueiros -siers -siddall -shorty -shontz -shingler -shiley -shibley -sherard -shelnutt -shedrick -shasteen -sereno -selke -scovil -scola -schuett -schuessler -schreckengost -schranz -schoepp -schneiderman -schlanger -schiele -scheuermann -schertz -scheidler -scheff -schaner -schamber -scardina -savedra -saulnier -sater -sarro -sambrano -salomone -sabourin -ruud -rutten -ruffino -ruddock -rowser -roussell -rosengarten -rominger -rollinson -rohman -roeser -rodenberg -roberds -ridgell -rhodus -reynaga -rexrode -revelle -rempel -remigio -reising -reiling -reetz -rayos -ravenscroft -ravenell -raulerson -rasmusson -rask -rase -ragon -quesnel -quashie -puzo -puterbaugh -ptak -prost -prisbrey -principe -pricer -pratte -pouncey -portman -pontious -pomerantz -platter -planck -pilkenton -pilarski -piano -phegley -pertuit -perla -penta -pelc -peffer -pech -peagler -pavelka -pavao -patman -paskett -parrilla -pardini -papazian -panter -palin -paley -pai -pages -paetzold -packett -pacheo -ostrem -orsborn -olmedo -okamura -oiler -ohm -oglesbee -oatis -oakland -nuckles -notter -nordyke -nogueira -niswander -nibert -nesby -neloms -nading -naab -munns -mullarkey -moudy -moret -monnin -molder -modisette -moczygemba -moctezuma -mischke -miro -mings -milot -milledge -milhorn -milera -mieles -mickley -michelle -micek -metellus -mersch -merola -mercure -mencer -mellin -mell -meinke -mcquillan -mcmurtrie -mckillop -mckiernan -mckendrick -mckamie -mcilvaine -mcguffie -mcgonigle -mcgarrah -mcfetridge -mcenaney -mcdow -mccutchan -mccallie -mcadam -maycock -maybee -mattei -massi -masser -masiello -marth -marshell -marmo -marksberry -markell -marchal -manross -manganaro -mally -mallow -mailhot -magyar -madonna -madero -madding -maddalena -macfarland -lynes -lush -lugar -luckie -lucca -lovitt -loveridge -loux -loth -loso -lorenzana -lorance -lockley -lockamy -littler -litman -litke -liebel -lichtenberger -licea -leverich -letarte -lesesne -leno -legleiter -leffew -laurin -launius -laswell -lassen -lasala -laraway -laramore -landrith -lancon -lanahan -laiche -laford -lachermeier -kunst -kugel -kuck -kuchta -kube -korus -koppes -kolbe -koerber -kochan -knittel -kluck -kleve -kleine -kitch -kirton -kirker -kintz -kinghorn -kindell -kimrey -kilduff -kilcrease -kicklighter -kibble -kervin -keplinger -keogh -kellog -keeth -kealey -kazmierczak -karner -kamel -kalina -kaczynski -juel -joye -jerman -jeppson -jawad -jasik -jaqua -janusz -janco -island -inskeep -inks -ingold -ing -hyndman -hymer -hunte -hunkins -humber -huffstutler -huffines -hudon -hudec -hovland -houze -hout -hougland -hopf -hon -holsapple -holness -hollenbach -hoffmeister -hitchings -hirata -hieber -hickel -hewey -herriman -hermansen -herandez -henze -heffelfinger -hedgecock -hazlitt -hazelrigg -haycock -harren -harnage -harling -harcrow -hannold -hanline -hanel -hanberry -hammersley -hamernik -halliwell -hajduk -haithcock -haff -hadaway -haan -gullatt -guilbault -guidotti -gruner -grisson -grieves -granato -gracie -grabert -gover -gorka -glueck -girardin -giorgio -giesler -gersten -gering -geers -gaut -gaulin -gaskamp -garbett -gallivan -galland -gaeth -fullenkamp -fullam -friedrichs -freire -freeney -fredenburg -frappier -fowkes -foree -fleurant -fleig -fleagle -fitzsimons -fischetti -fiorenza -finneran -filippi -figueras -fesler -fertig -fennel -feltmann -felps -felmlee -faye -fannon -familia -fairall -fail -fadden -esslinger -enfinger -elsasser -elmendorf -ellisor -einhorn -ehrman -egner -edmisten -edlund -ebinger -dyment -dykeman -durling -dunstan -dunsmore -dugal -duer -drescher -doyel -down -dossey -donelan -dockstader -dobyns -divis -dilks -didier -desrosier -desanto -deppe -deng -delosh -delange -defrank -debo -dauber -dartez -daquila -dankert -dahn -cygan -cusic -curfman -croghan -croff -criger -creviston -crays -cravey -crandle -crail -crago -craghead -cousineau -couchman -cothron -corella -conine -coller -colberg -cogley -coatney -coale -clendenin -claywell -clagon -cifaldi -choiniere -chickering -chica -chennault -chavarin -chattin -chaloux -challis -cesario -certain -cazarez -caughman -catledge -casebolt -carrel -carra -carlow -capote -canez -camillo -caliendo -calbert -cairo -bylsma -bustle -buskey -buschman -burkhard -burghardt -burgard -buonocore -bunkley -bungard -bundrick -bumbrey -buice -buffkin -brundige -brockwell -brion -brin -briant -bredeson -bransford -brannock -brakefield -brackens -brabant -boxer -bowdoin -bouyer -bothe -boor -bonavita -bollig -blurton -blunk -blanke -blanck -birden -bierbaum -bevington -beutler -betters -bettcher -bera -benway -bengston -benesh -behar -bedsole -becenti -beachy -battersby -basta -bartmess -bartle -bartkowiak -barsky -barrio -barletta -barfoot -banegas -ballin -baldonado -bal -azcona -avants -austell -aungst -aune -aumann -audia -atterbury -asselin -asmussen -ashline -asbill -arvizo -arnot -ariola -ardrey -angstadt -anastasio -amsden -amor -amerman -alred -almeda -allington -alewine -alcina -alberico -alas -ahlgren -aguas -agrawal -agosta -adolphsen -addie -acre -acey -aburto -abler -zwiebel -zuk -zepp -zentz -ybarbo -yarberry -yamauchi -yamashiro -wurtz -wronski -worster -wootten -wool -wongus -woltz -wolanski -witzke -withey -wisecarver -wingham -wineinger -winegarden -windholz -wilgus -wiesen -wieck -widrick -wickliffe -whittenberg -westby -werley -wengert -wendorf -weimar -weick -weckerly -watrous -wasden -walford -wainright -wahlstrom -wadlow -vrba -voisin -vives -vivas -vitello -villescas -villavicencio -villanova -vialpando -vetrano -verona -vensel -vassell -varano -vanriper -vankleeck -vanduyne -vanderpol -vanantwerp -valenzula -udell -turnquist -tuff -trickett -tremble -tramble -tingey -ting -timbers -tietz -thon -thiem -then -tercero -tenner -tenaglia -teaster -tarlton -taitt -taggert -tabon -sward -swaby -suydam -surita -suman -sugar -suddeth -stumbo -studivant -strobl -stretch -streich -stow -stoodley -stoecker -stillwagon -stickle -stellmacher -stefanik -steedley -starbird -stake -stainback -stacker -speir -spath -sommerfeld -soltani -solie -sojka -sobota -sobieski -sobczak -smullen -sleeth -slaymaker -skolnick -skoglund -sires -singler -silliman -shrock -shott -shirah -shimek -shepperd -sheffler -sheeler -sharrock -sharman -shalash -seyfried -seybold -selander -seip -seifried -sedor -sedlock -sebesta -seago -scutt -scrivens -sciacca -schultze -schoemaker -schleifer -schlagel -schlachter -schempp -scheider -scarboro -santi -sang -sandhu -sally -salim -saia -rylander -ryburn -rutigliano -ruocco -ruland -rudloff -rott -rosenburg -rosenbeck -romberger -romanelli -rohloff -rohlfing -rodda -rodd -ritacco -rielly -rieck -rickles -rickenbacker -rhett -respass -reisner -reineck -reighard -rehbein -rega -redwood -reddix -razor -rawles -raver -rattler -ratledge -rathman -ramsburg -raisor -radovich -radigan -quail -puskar -purtee -priestly -prestidge -presti -pressly -pozo -pottinger -portier -porta -porcelli -poplawski -polin -points -poeppelman -pocock -plump -plantz -placek -piro -pinnell -pinkowski -pietz -picone -philbeck -pflum -peveto -perret -pentz -payer -paulette -patlan -paterno -papageorge -pae -overmyer -overland -osier -orwig -orum -orosz -oquin -opie -oda -ochsner -oathout -nygard -norville -northway -niver -nicolson -newhart -nery -neitzel -nath -nanez -mustard -murnane -mortellaro -morreale -morino -moriarity -morgado -moorehouse -mongiello -molton -mirza -minnix -millspaugh -milby -miland -miguez -mickles -michaux -mento -melugin -melrose -melito -meinecke -mehr -meares -mcneece -mckane -mcglasson -mcgirt -mcgilvery -mcculler -mccowen -mccook -mcclintic -mccallon -mazzotta -maza -mayse -mayeda -matousek -matley -martyn -maroon -marney -marnell -marling -marcelino -manuelito -maltos -malson -maire -mahi -maffucci -macken -maass -lyttle -lynd -lyden -lukasiewicz -luebbers -lovering -loveall -lords -longtin -lok -lobue -loberg -loan -lipka -lion -linen -lightbody -lichty -levert -lev -lettieri -letsinger -lepak -lemmond -lembke -leitz -lasso -lasiter -lango -landsman -lamirande -lamey -laber -kuta -kulesza -kua -krenz -kreiner -krein -kreiger -kraushaar -kottke -koser -kornreich -kopczynski -konecny -kok -koff -koehl -kocian -knaub -kmetz -kluender -klenke -kleeman -kitzmiller -kirsh -kilman -kildow -kielbasa -ketelsen -kesinger -kendra -kehr -keef -kauzlarich -karter -kahre -junk -jong -jobin -joaquin -jinkins -jines -jeffress -jaquith -jaillet -jablonowski -ishikawa -irey -ingerson -indelicato -in -huntzinger -huisman -huett -howson -houge -hosack -hora -hoobler -holtzen -holtsclaw -hollingworth -hollin -hoberg -hobaugh -hilker -hilgefort -higgenbotham -heyen -hetzler -hessel -hennessee -hendrie -hellmann -heft -heesch -haymond -haymon -haye -havlik -havis -haverland -haus -harstad -harriston -harm -harju -hardegree -hankey -hands -hampshire -hammell -hamaker -halbrook -halberg -guptill -guntrum -gunderman -gunder -gularte -guarnieri -gu -groll -grippo -greely -grave -gramlich -goh -goewey -goetzinger -goding -giraud -giefer -giberson -gennaro -gemmell -gearing -gayles -gaudin -gatz -gatts -gasca -garn -gandee -gammel -galindez -galati -gagliardo -fulop -fukushima -friedt -fretz -frenz -freeberg -frederic -fravel -fountaine -forry -forck -fonner -flippin -flewelling -flansburg -filippone -fettig -fenlon -felter -felkins -fein -faz -favor -favero -faulcon -farver -farless -fahnestock -facemire -faas -eyer -evett -every -esses -escareno -ensey -ennals -engelking -empey -emily -elvira -ellithorpe -effler -edling -edgley -durrell -dunkerson -draheim -domina -dombrosky -doescher -dobbin -divens -dinatale -dimitri -dieguez -diede -devivo -devilbiss -devaul -determan -desjardin -deshaies -demo -delpozo -delorey -delman -delapp -delamater -deibert -degroff -debelak -dapolito -dano -dacruz -dacanay -cushenberry -cruze -crosbie -cregan -cousino -corrie -corrao -corney -cookingham -conry -collingsworth -coldren -cobian -coate -clauss -chrysler -christine -christenberry -chmiel -chauez -charters -chait -cesare -cella -caya -castenada -cashen -captain -cantrelle -canova -candy -canary -campione -camel -calixte -caicedo -byerley -buttery -butter -burda -burchill -bun -bulmer -bulman -buesing -buczek -buckholz -buchner -buchler -buban -bryne -brutus -brunkhorst -brumsey -brumer -brownson -broker -brodnax -brezinski -brazile -braverman -brasil -branning -bradly -boye -boulden -bough -bossard -bosak -borth -borgmeyer -borge -blowers -blaschke -blann -blankenbaker -bisceglia -billingslea -bialek -beverlin -besecker -berquist -benigno -benavente -belizaire -beisner -behrman -beausoleil -bea -baylon -bayley -bassi -basnett -basilio -basden -basco -banerjee -balli -bake -bagnell -bady -averette -augusta -arzu -arn -archambeault -arboleda -arbaugh -arata -antrim -amrhein -amerine -alpers -alfrey -alcon -albus -albertini -aguiniga -aday -acquaviva -accardi -zygmont -zych -zollner -zobel -zinck -zertuche -zaragosa -zale -zaldivar -ying -yeadon -wykoff -woullard -wolfrum -wohlford -wison -wiseley -wisecup -winchenbach -wiltsie -whittlesey -whitelow -whiteford -wever -westrich -wertman -wensel -wenrich -weisbrod -weglarz -wedderburn -weatherhead -wease -warring -wand -wadleigh -voltz -vise -villano -vicario -vermeulen -vazques -vasko -varughese -vangieson -vanfossen -vanepps -vanderploeg -vancleve -valerius -uyehara -unsworth -twersky -turrell -tuner -tsui -trunzo -trousdale -trentham -traughber -torgrimson -toppin -tokar -tobia -tippens -tigue -thong -thiry -thackston -terhaar -tenny -tassin -tadeo -sweigart -sutherlin -sumrell -suen -stuhr -strzelecki -strosnider -streiff -stottlemyer -storment -storlie -stonesifer -stogsdill -stenzel -stemen -stellhorn -steidl -stecklein -statton -staple -stangle -spratling -spoor -spight -spelman -spece -spanos -spadoni -southers -sola -sobol -smyre -slaybaugh -sizelove -sirmons -simington -silversmith -siguenza -sieren -shelman -shawn -sharples -sharif -shack -seville -sessler -serrata -serino -serafini -semien -selvey -seedorf -seckman -seawood -screws -screen -scoby -scicchitano -schorn -schommer -schnitzer -schleusner -schlabach -schiel -schepers -schaber -scally -sautner -sartwell -santerre -sandage -salvia -salvetti -salsman -sallis -salais -saint -saeger -sable -sabat -saar -ruther -russom -ruoff -rumery -rubottom -rozelle -rowton -routon -rotolo -rostad -roseborough -rorick -ronco -rolls -roher -roberie -robare -ritts -rison -rippe -rinke -ringwood -righter -rieser -rideaux -rickerson -renfrew -releford -reinsch -reiman -reifsteck -reidhead -redfearn -reddout -reaux -rance -ram -rado -radebaugh -quinby -quigg -provo -provenza -provence -prophet -pridgeon -praylow -powel -poulter -portner -pontbriand -police -poirrier -poirer -platero -pixler -pintor -pigman -piersall -piel -pichette -phou -phillis -phillippe -pharis -phalen -petsche -perrier -penfield -pelosi -pebley -peat -pawloski -pawlik -pavlick -pavel -patz -patout -pascucci -pasch -parrinello -parekh -pantaleo -pannone -pankow -pangborn -pagani -pacelli -ort -orsi -oriley -orduno -oommen -olivero -okada -ocon -ocheltree -oberman -nyland -noss -norling -nolton -nobile -nitti -nishimoto -nghiem -neuner -neuberger -neifert -negus -naval -nagler -mullally -moulden -morra -morquecho -morocco -moots -monica -mizzell -mirsky -mirabito -minardi -milholland -mikus -mijangos -michener -michalek -methvin -merrit -menter -meneely -melody -meiers -mehring -mees -medal -mcwhirt -mcwain -mcphatter -mcnichol -mcnaught -mclarty -mcivor -mcginness -mcgaughy -mcferrin -mcfate -mcclenny -mcclard -mccaskey -mccallion -mcamis -mathisen -marton -marsico -mariner -marchi -mani -mangione -magda -macaraeg -lupi -lunday -lukowski -lucious -locicero -loach -littlewood -litt -litle -lipham -linley -lindon -lightford -lieser -leyendecker -lewey -lesane -lenzi -lenart -lena -leisinger -lehrman -lefebure -leandro -lazard -laycock -laver -launer -lastrapes -lastinger -lasker -larkey -larger -lanser -lanphere -landey -lan -lampton -lamark -lager -kumm -kullman -krzeminski -krasner -kram -koran -koning -kohls -kohen -kobel -kniffen -knick -kneip -knappenberger -knack -klumpp -klausner -kitamura -kisling -kirshner -kinloch -kingman -kin -kimery -kestler -kellen -keleher -keehn -kearley -kasprzak -kary -kampf -kamerer -kalis -kahan -kaestner -kadel -kabel -junge -juckett -joynt -jorstad -jetter -jelley -jefferis -jeff -jeansonne -janecek -jaffee -jacko -izzard -istre -isherwood -ipock -iannuzzi -hypolite -hussein -humfeld -huckleberry -hotz -hosein -honahni -holzworth -holdridge -holdaway -holaday -hodak -hitchman -hippler -hinchey -hillin -hiler -hibdon -hevey -heth -hepfer -henneman -hemsley -hemmings -hemminger -helbert -helberg -heinze -heeren -hee -heber -haver -hauff -haswell -harvison -hartson -harshberger -harryman -harries -hannibal -hane -hamsher -haggett -hagemeier -haecker -haddon -haberkorn -guttman -guttierrez -guthmiller -guillet -guilbert -gugino -grumbles -griffy -gregerson -greg -granada -grana -goya -goranson -gonsoulin -goettl -goertz -goe -godlewski -glandon -glad -gilsdorf -gillogly -gilkison -giard -giampaolo -gheen -gettings -gesell -gershon -gaumer -gartrell -garside -garrigan -garmany -garlitz -garlington -gamet -gail -fuss -furlough -funston -funaro -frix -frasca -francoeur -forshey -foose -flatley -flagler -fils -fillers -fickett -feth -fennelly -fencl -felch -fedrick -febres -fazekas -farnan -fairless -ewan -etsitty -enterline -elvin -elsworth -elliff -ell -eleby -eldreth -eidem -edgecomb -edds -ebarb -dworkin -dusenberry -durrance -duropan -durfey -dungy -dundon -dumbleton -duffel -dubon -dubberly -droz -drinkwater -dressel -doughtie -doshier -dorrell -dora -dople -doonan -donadio -dollison -doig -ditzler -dishner -discher -dimaio -digman -difalco -diem -devino -devens -derosia -deppen -depaola -deniz -denardo -demos -demay -delgiudice -davi -danielsen -dally -dais -dahmer -cutsforth -cusimano -curington -cumbee -cryan -crusoe -crowden -crete -cressman -crapo -cowens -coupe -councill -coty -cotnoir -correira -copen -consiglio -combes -coffer -cockrill -coad -clogston -clasen -chock -chesnutt -charrier -chain -chadburn -cerniglia -cebula -castruita -castilla -castaldi -casebeer -casagrande -carta -carrales -carnley -cardon -carasco -capshaw -capron -cappiello -capito -canney -candela -caminiti -califano -calico -calabria -caiazzo -cahall -buscemi -burtner -burgdorf -bureau -burdo -buffaloe -buchwald -brwon -brunke -brummond -brumm -broe -brocious -brocato -bro -britain -briski -brisker -brightwell -bresett -breiner -brazeau -braz -brayman -brandis -bramer -bradeen -boyko -bourbon -bossi -boshart -bortle -boniello -bomgardner -bolz -bolenbaugh -bohling -bohland -bochenek -blust -bloxham -blowe -blish -blackwater -bjelland -biros -birkhead -biederman -bickle -bialaszewski -bevil -beverley -beumer -bettinger -besse -bernett -bermejo -bement -belfield -beckler -beatrice -baxendale -batdorf -bastin -bashore -bascombe -bartlebaugh -barsh -ballantine -bahl -badon -bachelor -autin -audie -astin -askey -ascher -arrigo -arbeiter -antes -angers -amburn -amarante -alvidrez -althaus -allmond -alfieri -aldinger -akerley -akana -aikins -ader -acebedo -accardo -abila -aberle -abele -abboud -zollars -zimmerer -zieman -zerby -zelman -zellars -yule -yoshimura -yonts -yeats -yant -yamanaka -wyland -wuensche -worman -wordlaw -wohl -winslett -winberg -wilmeth -willcutt -wiers -wiemer -wickwire -wichman -whitting -whidbee -westergard -wemmer -wellner -weishaupt -weinert -weedon -waynick -wasielewski -waren -walworth -wallingford -walke -waechter -viviani -vitti -villagrana -vien -vicks -venema -varnes -varnadoe -varden -vanpatten -vanorden -vanderzee -vandenburg -vandehey -valls -vallarta -valderrama -valade -urman -ulery -tusa -tuft -tripoli -trimpe -trickey -tortora -torrens -torchia -toft -tjaden -tison -tindel -thurmon -thode -tardugno -tancredi -taketa -taillon -tagle -sytsma -symes -swindall -swicegood -swartout -sundstrom -sumners -sulton -studstill -student -stroop -stonerock -stmarie -stlawrence -stemm -steinhauser -steinert -steffensen -stefano -stefaniak -starck -stalzer -spidle -spake -sowinski -sosnowski -sorber -somma -soliday -soldner -soja -soderstrom -soder -sockwell -sobus -snowball -sloop -skeeter -sinner -sinkfield -simerly -silguero -sigg -siemers -siegmund -sidle -shum -sholtis -shkreli -sheikh -shattles -sharlow -shao -shambaugh -shaikh -serrao -serafino -selley -selle -seel -sedberry -secord -seat -schunk -schuch -schor -scholze -schnee -schmieder -schleich -schimpf -scherf -satterthwaite -sasson -sarkisian -sarinana -sanzone -salvas -salone -salido -saiki -sahr -rusher -rusek -ruse -ruppel -rubi -rubel -rough -rothfuss -rothenberger -rossell -rosenquist -rosebrook -romito -romines -rolando -rolan -roker -roehrig -rockhold -rocca -robuck -riss -rinaldo -right -riggenbach -rezentes -reuther -reuben -renolds -rench -remus -remsen -reller -relf -reitzel -reiher -rehder -redeker -ramero -rahaim -radice -quijas -qualey -purgason -prum -proudfoot -prock -probert -printup -primer -primavera -prenatt -pratico -polich -podkowka -podesta -plattner -plasse -plamondon -pittmon -pippenger -pineo -pierpont -petzold -petz -pettiway -petters -petroski -petrik -pesola -pershall -perlmutter -penepent -peevy -pechacek -pears -peaden -pazos -pavia -pascarelli -parm -parillo -parfait -paoletti -palomba -palencia -pagaduan -oxner -overfield -overcast -oullette -ouk -ostroff -osei -omarah -olenick -olah -odem -nygren -notaro -northcott -nodine -nilges -neyman -neve -neuendorf -neptune -neisler -neault -narciso -naff -muscarella -mun -most -morrisette -morphew -morein -mor -montville -montufar -montesinos -monterroso -mongold -mona -mojarro -moitoso -mode -mirarchi -mirando -minogue -milici -miga -midyett -michna -mey -meuser -messana -menzie -menz -mendicino -melone -mellish -meller -melle -meints -mechem -mealer -mcwilliam -mcwhite -mcquiggan -mcphillips -mcpartland -mcnellis -mcmackin -mclaughin -mckinny -mckeithan -mcguirk -mcgillivray -mcgarr -mcgahee -mcfaul -mcfadin -mceuen -mccullah -mcconico -mcclaren -mccaul -mccalley -mccalister -mazer -mayson -mayhan -maugeri -mauger -mattix -mattews -maslowski -masek -martir -marsch -marquess -maron -markwell -markow -marinaro -marietta -marcinek -manner -mannella -mango -mallen -majeed -mahnke -mahabir -magby -magallan -madere -machnik -lybrand -luque -lundholm -lueders -lucian -lubinski -lowy -loew -lippard -linson -lindblad -lightcap -levitsky -levens -leonardi -lenton -lengyel -leng -leitzel -leicht -leaver -laubscher -lashua -larusso -larrimore -lanterman -lanni -lanasa -lamoureaux -lambros -lamborn -lamberti -lall -lagos -lafuente -laferriere -laconte -kyger -kupiec -kunzman -kuehne -kuder -kubat -krogh -kreidler -krawiec -krauth -kratky -kottwitz -korb -kono -kolman -kolesar -koeppel -knapper -klingenberg -kjos -keppel -kennan -keltz -kealoha -kasel -karney -kanne -kamrowski -kagawa -joo -johnosn -joesph -jilek -jarvie -jarret -jansky -jacquemin -jacox -jacome -italiano -iriarte -ingwersen -imboden -iglesia -huyser -hurston -hursh -huntoon -hudman -hoying -horsman -horrigan -hornbaker -horiuchi -hopewell -hoop -hommel -homeyer -holzinger -holmer -hollow -hipsher -hinchman -hilts -higginbottom -hieb -heyne -hessling -hesler -hertlein -herford -heras -henricksen -hennemann -henery -hendershott -hemstreet -heiney -heckert -heatley -hazell -hazan -hayashida -hausler -hartsoe -harth -harriott -harriger -harpin -hardisty -hardge -hao -hannaman -hannahs -hamp -hammersmith -hamiton -halsell -halderman -hagge -habel -gusler -gushiken -gurr -gummer -gullick -grunden -grosch -greenburg -greb -greaver -gratz -grajales -gourlay -gotto -gorley -goodpasture -godard -glorioso -gloor -glascock -gizzi -giroir -gibeault -gauldin -gauer -gartin -garrels -gamber -gallogly -galley -gade -fusaro -fripp -freyer -freiberg -franzoni -fragale -foston -forti -forness -folts -followell -foard -flom -fling -flett -fleitas -flamm -fino -finnen -finchum -filippelli -fickel -feucht -feiler -feenstra -feagins -faver -faux -faulkenberry -farabaugh -fandel -fallen -faler -faivre -fairey -facey -exner -evensen -erion -erben -epting -epping -ephraim -engberg -elsen -ellingwood -ellen -eisenmann -eichman -ehle -edsall -eagles -durall -dupler -dunker -dumlao -duford -duffie -dudding -dries -doung -dorantes -donahoo -domenick -dollins -dobles -dipiazza -dino -dimeo -diehm -dicicco -devin -devenport -desormeaux -derrow -depaolo -denver -denise -demas -delpriore -delosantos -dela -degreenia -degenhardt -defrancesco -defenbaugh -deets -debonis -deary -dazey -dargie -dambrosia -dalal -dagen -cun -cuen -crupi -crossan -crichlow -creque -coutts -counce -coram -constante -connon -collelo -coit -cocklin -coblentz -cobey -coard -clutts -clingan -claw -clampitt -claeys -ciulla -cimini -ciampa -christon -choat -chiou -chenail -chavous -catto -catalfamo -casterline -cassinelli -caspers -carroway -carlen -carithers -cappel -calo -callow -calandra -cagley -cafferty -byun -byam -buttner -buth -burtenshaw -burget -burfield -buresh -bunt -bultman -bulow -buchta -buchmann -brunett -bruemmer -brueggeman -britto -briney -brimhall -bribiesca -bresler -brazan -brashier -brar -brandstetter -brandi -boze -boonstra -bluitt -blomgren -blattner -blasi -bladen -bitterman -bilby -bierce -biello -bettes -bertone -berrey -bernat -berberich -benshoof -bendickson -below -bellefeuille -bednarski -beddingfield -beckerman -beaston -bavaro -batalla -basye -baskins -bartolotta -bartkowski -barranco -barkett -band -banaszak -bame -bamberger -balsley -ballas -balicki -balding -bald -badura -aymond -aylor -aylesworth -axley -axelrod -aubert -armond -ariza -apicella -anstine -ankrom -angevine -anger -andreotti -andrea -alto -alspaugh -alpaugh -almada -allinder -alexandra -alequin -alan -aguillard -agron -agena -afanador -ackerley -abrev -abdalla -aaronson -zynda -zucco -zipp -zetina -zenz -zelinski -youngren -yochum -yearsley -yankey -woodfork -wohlwend -woelfel -wiste -wismer -winzer -winker -wilkison -wigger -wierenga -whipps -wheeling -westray -wesch -weld -weible -wedell -weddell -wawrzyniak -wasko -washinton -wantz -walts -wallander -wain -wahlen -wachowiak -voshell -viteri -vire -villafuerte -vieyra -viau -vescio -verrier -verhey -vause -vandermolen -vanderhorst -valois -valla -valcourt -vacek -uzzle -umland -um -ulman -ulland -turvey -tuley -trembath -trees -trabert -towsend -totman -toews -toby -tito -tisch -tisby -tipping -tierce -thivierge -tenenbaum -teagle -tacy -tabler -szewczyk -swearngin -suire -sturrock -stubbe -stronach -stoute -stoudemire -stoneberg -sterba -stejskal -steier -stehr -steckler -steckel -stearman -steakley -star -stanforth -stancill -stalls -srour -sprowl -spevak -sole -sokoloff -soderman -snover -sleeman -slaubaugh -sitzman -simpler -simmer -simes -siegal -sidoti -sidler -sider -sidener -siddiqi -shireman -shima -sheroan -shadduck -seyal -sentell -sennett -senko -seneca -sen -seligman -seipel -seekins -seabaugh -scouten -schweinsberg -schwartzberg -schurr -schult -schrick -schoening -schmitmeyer -schlicher -schlager -schack -schaar -scavuzzo -scarpa -sassano -santigo -sandavol -san -sampsel -samms -samet -salzano -salyards -salva -saidi -sabir -saam -saab -runions -rundquist -rousselle -round -rotunno -roses -rosch -romney -rohner -roff -rockhill -rockefeller -rocamora -rm -ringle -riggie -ricklefs -rexroat -reves -revel -reuss -reta -repka -rentfro -reineke -recore -recalde -rease -rawling -ravencraft -ravelo -rappa -randol -ramsier -ramerez -rahimi -rahim -radney -racey -raborn -rabalais -quebedeaux -pujol -puchalski -prothro -proffit -prigge -prideaux -prevo -portales -porco -popovic -popek -popejoy -pompei -plumber -plude -platner -plate -pizzuto -pizer -pistone -piller -pierri -piehl -pickert -piasecki -phong -philipp -peugh -pesqueira -perrett -perfetti -percell -penhollow -pelto -pellett -pavlak -paulo -paula -patricia -pastorius -parsell -parrales -pareja -parcell -pappan -pajak -owusu -ovitt -ory -orrick -oniell -olliff -olberding -oesterling -odwyer -ocegueda -obey -obermiller -nylander -nulph -nottage -northam -norgard -nodal -niel -nicols -newhard -nellum -neira -nazzaro -nassif -narducci -nalbandian -nails -musil -murga -muraoka -mumper -mulroy -mountjoy -mossey -moreton -morea -montoro -montesdeoca -montealegre -montanye -montandon -mok -moisan -mohl -modesto -modeste -mitra -mister -minson -minjarez -milbourne -michaelsen -metheney -mestre -mescher -mervis -mennenga -melgarejo -meisinger -meininger -mcwaters -mckern -mckendree -mchargue -mcglothlen -mcgibbon -mcgavock -mcduffee -mcclurkin -mccausland -mccardell -mccambridge -mazzoni -mayen -maxton -mawson -mauffray -mattinson -mattila -matsunaga -mater -mascia -marse -marotz -marois -markin -markee -marcinko -marcin -manville -mantyla -manser -manry -manderscheid -mallari -malia -malecha -malcomb -majerus -mailman -macinnis -mabey -lyford -luth -lupercio -luhman -luedke -lovick -lossing -loss -lorraine -lookabaugh -longway -lone -loisel -logiudice -loffredo -locust -lobe -lobaugh -lizaola -livers -littlepage -linnen -limmer -liebsch -liebman -leyden -levitan -levison -levier -leven -levalley -lettinga -lessley -lessig -lepine -leight -leick -leggio -leffingwell -leffert -lefevers -ledlow -leaton -leander -leaming -lazos -laviolette -lauffer -latz -lasorsa -lasch -larin -laporta -lanter -langstaff -landi -lamica -lambson -lambe -lamarca -laman -lamagna -lajeunesse -lafontant -lafler -labrum -laakso -kush -kuether -kuchar -kruk -kroner -kroh -kridler -kreuzer -kovats -koprowski -kohout -knicely -knell -klutts -kindrick -kiddy -khanna -ketcher -kerschner -kerfien -kensey -kenley -kenan -kemplin -kellerhouse -keesling -keep -keena -keas -kaplin -kanady -kampen -jutras -jungers -julio -jeschke -jen -janowski -janas -iskra -imperato -ikerd -igoe -hyneman -hynek -husain -hurrell -hultquist -hullett -hulen -huf -huberty -hoyte -hossain -hornstein -hori -hopton -holms -hollmann -holdman -holdeman -holben -hoffert -himel -hillsman -hillary -herdt -hellyer -hellen -heister -heimer -heidecker -hedgpeth -hedgepath -hebel -heatwole -hayer -hausner -haskew -haselden -hartranft -harsch -harres -harps -hardimon -halm -hallee -hallahan -hackley -hackenberg -hachey -haapala -guynes -gunnerson -gunby -gulotta -gudger -groman -grignon -griebel -gregori -greenan -grauer -gourd -gorin -gorgone -gooslin -goold -goltz -goldberger -gobble -glotfelty -glassford -glance -gladwin -giuffre -gilpatrick -germaine -gerdts -genna -geisel -gayler -gaunce -gaulding -gateley -gassman -gash -garson -garron -garand -gangestad -gallow -galbo -gabrielli -fullington -fucci -frum -frieden -friberg -frasco -francese -fowle -foucher -fothergill -foraker -fonder -foisy -fogal -flurry -flenniken -fitzhenry -fishbein -finton -filmore -filice -feola -felberbaum -fausnaught -fasciano -farrah -farquharson -faires -estridge -essman -enz -enriques -emmick -ekker -ekdahl -eisman -eggleton -eddinger -eakle -eagar -durio -dunwoody -duhaime -duenes -duden -dudas -dresher -dresel -doutt -donlan -donathan -domke -dobrowolski -dingee -dimmitt -dimery -dilullo -deveaux -devalle -desper -desnoyers -desautels -derouin -derbyshire -denmon -dena -demski -delucca -delpino -delmont -deller -dejulio -deibler -dehne -deharo -degner -defore -deerman -decuir -deckman -deasy -dease -deaner -dawdy -daughdrill -darrigo -darity -daniele -dalbey -dagenhart -daffron -curro -curnutte -curatolo -cruikshank -crosswell -croslin -croney -crofton -criado -crecelius -coscia -conniff -commodore -coltharp -colonna -collyer -collington -cobbley -coache -clonts -cloe -cliett -clemans -clara -cid -christo -chrisp -china -chiarini -chia -cheatam -cheadle -che -chauncey -chand -chadd -cervera -cerulli -cerezo -cedano -cayetano -cawthorne -cavalieri -cattaneo -caryl -cartlidge -carrithers -carreira -carranco -cargle -candanoza -camille -camburn -calender -calderin -calcagno -cahn -cadden -byham -buttry -burry -burruel -burkitt -burgio -burgener -buescher -buckalew -brymer -brumett -brugnoli -brugman -brosnahan -bronder -broeckel -broderson -brisbon -brinsfield -brinks -bresee -bregman -branner -brambila -brailsford -bouska -boster -borucki -bortner -boroughs -borgeson -bonier -bomba -bolender -boesch -boeke -bloyd -bley -binger -billing -bilbro -biery -bichrest -bezio -bevel -berrett -bermeo -bergdoll -bercier -benzel -bentler -bennetts -belnap -bellini -beitz -behrend -bednarczyk -bearse -batman -bartolini -bartol -barretta -barbero -barbaro -banvelos -bankes -ballengee -baldon -aye -ausmus -atilano -atienza -aschenbrenner -arora -armstong -aquilino -appleberry -applebee -apolinar -antos -angles -andrepont -ancona -amesquita -alvino -altschuler -allin -alire -ainslie -agular -aeschliman -accetta -abdulla -abbe -zwart -zufelt -zona -zirbel -zingaro -zilnicki -zenteno -zent -zemke -zayac -zarrella -yoshimoto -yearout -wrench -world -womer -woltman -wolin -wolery -woldt -witts -wittner -witherow -winward -winrow -wiemann -wichmann -whitwell -whitelaw -wheeless -whalley -wey -wessner -wenzl -wene -weatherbee -waye -wattles -wanke -walkes -waldeck -vonruden -voisine -vogus -vittetoe -villalva -villacis -victorian -verge -venturini -venturi -venson -vanloan -vanhooser -vanduzer -vandever -vanderwal -vanderheyden -vanbeek -vanbebber -vallance -vales -vahle -urbain -upshur -umfleet -twist -tsuji -trybus -triolo -trimarchi -trezza -trenholm -tovey -tourigny -torry -torrain -torgeson -tongue -tomey -tischler -tinkler -tinder -ticknor -tibbles -tibbals -throneberry -thormahlen -thibert -thibeaux -theurer -templet -tegeler -tavernier -taubman -tamashiro -tallon -tallarico -taboada -sypher -sybert -swyers -switalski -swinger -swedberg -suther -surprenant -sullen -sulik -sugden -suder -suchan -such -strube -stroope -strittmatter -streett -straughn -strasburg -stjacques -stimage -stimac -stifter -stgelais -steinhart -stehlik -steffenson -steenbergen -stanbery -stallone -sprung -spraggs -spoto -spilman -speno -spanbauer -spalla -spagnolo -soliman -solan -sobolik -snelgrove -snedden -smale -sliter -slankard -sircy -signor -shutter -shurtliff -shur -show -shirkey -shi -shewmake -shams -shadley -shaddox -sgro -serfass -seppala -segawa -segalla -seaberry -scruton -scism -schwein -schwartzman -schwantes -schomer -schoenborn -schlottmann -schissler -scheurer -schepis -scheidegger -saunier -sauders -sassman -sannicolas -sanderfur -salser -sagar -saffer -saeed -sadberry -saban -ryce -rybak -rux -rumore -rummell -rummage -rudasill -rozman -rota -rossin -rosell -rosel -romberg -rojero -rochin -rochell -robideau -robarge -roath -risko -ringel -ringdahl -riera -riemann -ribas -revard -renna -renegar -reinwald -rehman -regal -reels -ree -redel -reasons -raysor -rathke -rapozo -rampton -ramaker -rakow -raia -radin -raco -rackham -racca -racanelli -rabun -quaranta -purves -pundt -protsman -prosper -prezioso -presutti -president -presgraves -poydras -portnoy -portalatin -pop -pontes -poehler -poblete -poat -plumadore -pleiman -pizana -piscopo -piraino -pinelli -pillai -picken -picha -piccoli -philen -petteway -petros -peskin -perugini -perrella -pernice -peper -pensinger -pembleton -patron -passman -parrent -panetta -pancake -pallas -palka -pais -paglia -padmore -oum -ottesen -ost -oser -ortmann -ormand -oriol -orick -oler -okafor -ohair -obert -oberholtzer -number -nowland -nosek -nordeen -nolf -nogle -nobriga -nicley -niccum -newingham -neumeister -neugebauer -netherland -nerney -neiss -neis -neider -neeld -nailor -mustain -mussman -musante -murton -murden -munyon -muldrew -motton -moscoso -moschella -moroz -mormon -morelos -morace -moone -montesano -montemurro -montas -montalbo -molander -mleczko -miyake -mitschke -minger -minelli -minear -millener -mihelich -miedema -miah -metzer -mery -merrigan -merck -mennella -membreno -melecio -melder -mehling -mehler -medcalf -meche -mealing -mcqueeney -mcphaul -mcmickle -mcmeen -mcmains -mclees -mcgowin -mcfarlain -mcdivitt -mccotter -mcconn -mcclane -mccaster -mcbay -mcbath -mayoral -mayeux -matsuo -masur -massman -marzette -martensen -marlett -markie -markgraf -marcinkowski -marchbanks -marcella -mansir -mandez -mancil -malagon -magnani -madonia -madill -madia -mackiewicz -macgillivray -macdowell -macbeth -mabee -lundblad -lovvorn -lovings -loreto -linz -linwood -linnell -linebaugh -lindstedt -lindbloom -linda -limberg -liebig -lickteig -lichtenberg -licari -lex -lewison -levario -levar -lepper -lenzen -lenderman -lemarr -leinen -leider -legrande -lefort -lebleu -leask -learn -leacock -lazano -lawalin -laven -laplaca -lant -langsam -langone -landress -landen -lande -lamorte -lairsey -laidlaw -laffin -lackner -lacaze -labuda -labree -labella -labar -kyer -kuyper -kulinski -kulig -kuhnert -kuchera -kubicek -kruckeberg -kruchten -krider -kotch -kornfeld -koren -koogler -koll -kole -kohnke -kohli -kofoed -koelling -kluth -klump -klopfenstein -klippel -klinge -klett -klemp -kleis -klann -kitzman -kinnan -kingsberry -kind -kina -kilmon -killpack -kilbane -kijowski -kies -kierstead -kettering -kesselman -kenton -kennington -keniston -kehrer -kearl -keala -kassa -kasahara -kantz -kalin -kaina -jupin -juntunen -juares -joynes -jovel -joos -jn -jiggetts -jervis -jerabek -jennison -jaso -janz -izatt -ishibashi -iannotti -hymas -huneke -hulet -hougen -horvat -horstmann -hopple -holtkamp -holsten -hohenstein -hoefle -hoback -hiney -hiemstra -herwig -herter -herriott -hermsen -herdman -herder -herbig -hem -helper -helling -helbig -heitkamp -heinrichs -heinecke -heileman -heffley -heavrin -heaston -haymaker -hauenstein -hartlage -harlin -harig -hardenbrook -hankin -hamiter -hagens -hagel -grizzell -griest -griese -grief -grennan -graden -gosse -gorder -goldin -goatley -gillespi -gilbride -giel -gianni -ghoston -getter -gershman -geisinger -gehringer -gedeon -gebert -gaxiola -gawronski -gau -gathright -gatchell -gargiulo -garg -galang -gadison -fyock -furniss -furby -funnell -frizell -frenkel -freeburg -frankhouser -franchi -foulger -formby -forkey -fonte -folson -follette -flicker -flavors -flavell -finegan -fill -filippini -ferencz -ference -fennessey -feggins -feehan -fazzino -fazenbaker -fausto -faunce -farraj -farnell -farler -farabee -falkowski -facio -etzler -ethington -esterline -esper -esker -erxleben -ericsson -erick -engh -emling -elridge -ellenwood -elfrink -ekhoff -eisert -eis -eifert -eichenlaub -egnor -eggebrecht -edlin -edberg -eble -eber -easler -duwe -dutta -dutremble -dusseault -durney -dunworth -dumire -dukeman -dufner -duey -duble -dreese -dozal -douville -dougal -doom -done -diver -ditmore -distin -dimuzio -dildine -dignan -dieterich -dieckman -didonna -dhillon -dezern -devereux -devall -detty -detamore -derksen -deremer -deras -denslow -deno -denicola -denbow -demma -demille -delisa -delira -delawder -delara -delahanty -dejonge -deininger -dedios -dederick -decelles -debus -debruyn -deborde -deak -dauenhauer -darsey -daring -dansie -dalman -dakin -dagley -czaja -cybart -cutchin -currington -curbelo -croucher -crinklaw -cremin -cratty -cranfield -crafford -cowher -cowboy -couvillion -couturier -counter -corter -coombes -contos -consolini -connaughton -conely -coltrane -collom -cockett -clepper -cleavenger -claro -clarkin -ciriaco -ciesla -cichon -ciancio -cianci -chynoweth -chuang -chrzanowski -christion -cholewa -chipley -chilcott -cheyne -cheslock -chenevert -cheers -charlot -chagolla -chabolla -cesena -cerutti -cava -caul -cassone -cassin -cassese -casaus -casali -cartledge -carsten -cardamone -carcia -carbonneau -carboni -carabello -capozzoli -capella -cap -cannata -campoverde -campeau -cambre -camberos -calvery -calnan -calmes -calley -callery -calise -cacciotti -cacciatore -butterbaugh -burgo -burgamy -burell -bunde -bumbalough -buel -buechner -buchannon -bryon -brunn -brost -broadfoot -brittan -brevard -breda -brazel -brayboy -brasier -boyea -boxx -both -boso -bosio -boruff -borda -bongiovanni -bolerjack -boedeker -blye -blumstein -blumenfeld -blinn -bleakley -blatter -blan -bjornson -bisignano -billick -bieniek -bhatti -bevacqua -betterton -berra -berenbaum -bensinger -bennefield -belvins -belson -bellin -beighley -beecroft -beaudreau -baynard -bautch -bausch -basch -bartleson -barthelemy -barak -balzano -balistreri -bailer -bagnall -bagg -bae -auston -augustyn -aslinger -ashalintubbi -artist -arjona -arebalo -arab -appelbaum -anna -angst -angert -angelucci -andry -andersson -amorim -amavisca -alward -alvelo -alvear -alumbaugh -alsobrook -alli -allgeier -allende -aldrete -akiyama -ahlquist -adolphson -addario -acoff -abelson -abasta -zulauf -zirkind -zeoli -zemlicka -zawislak -zappia -zanella -yelvington -yeatman -yanni -wragg -wissing -wischmeier -wirta -wiren -wilmouth -williard -willert -willaert -wildt -whelpley -westwood -weingart -weidenbach -weidemann -weatherman -weakland -watwood -wattley -waterson -wambach -walzer -waldow -waag -vorpahl -volkmann -vitolo -visitacion -vincelette -vina -viggiano -vieth -vidana -vert -verna -verges -verdejo -venzon -velardi -varian -vargus -vandermeulen -vandam -vanasse -vanaman -utzinger -uriostegui -uplinger -twiss -tumlinson -tschanz -trunnell -troung -troublefield -trojacek -trial -treloar -tranmer -touchton -torsiello -torina -tootle -toki -toepfer -tippin -tippie -thronson -thomes -tezeno -texada -testani -tessmer -terrel -terra -terlizzi -tempel -temblador -tayler -tawil -tasch -tames -talor -talerico -swinderman -sweetland -swager -sulser -sullens -subia -sturgell -stumpff -stufflebeam -stucki -strohmeyer -strebel -straughan -strackbein -stobaugh -stetz -stelter -steinmann -steinfeld -stefani -stecher -stanwood -stanislawski -stander -speziale -soppe -soni -sol -sobotka -snipe -smuin -slider -slee -skerrett -sjoberg -sittig -simonelli -simo -sima -silvio -silverio -silveria -silsby -sillman -sienkiewicz -sick -sia -shomo -shoff -shoener -shiba -sherfey -shehane -shawl -sexson -setton -sergi -selvy -seiders -seegmiller -sebree -seabury -scroggin -sconyers -schwalb -schurg -schulenberg -schuld -schrage -schow -schon -schnur -schneller -schmidtke -schlatter -schieffer -schenkel -scheeler -schauwecker -schartz -schacherer -scafe -sayegh -savidge -saur -sarles -sarkissian -sarkis -sarcone -sagucio -saffell -saenger -sacher -rylee -ruvolo -ruston -ruple -rulison -ruge -ruffo -ruehl -rueckert -rudman -rudie -rubert -rozeboom -roysden -roylance -rothchild -rosse -rosecrans -rodrick -rodi -rockmore -robnett -roberti -rivett -riva -ritzel -rierson -ricotta -ricken -rezac -rendell -remo -reitman -reindl -reeb -reddic -reddell -rebuck -reali -raye -raso -ramthun -ramsden -rameau -ralphs -rak -rago -racz -quinteros -quinter -quinley -quiggle -quaid -purvines -purinton -purdum -pummill -puglia -puett -ptacek -przybyla -prowse -providence -prestwich -pracht -poutre -poucher -portera -polinsky -poage -platts -pineau -pinckard -pilson -pilling -pilkins -pili -pikes -pigram -pietila -pickron -pia -philippi -philhower -pflueger -pfalzgraf -pettibone -pett -petrosino -persing -perrino -perotti -periera -peri -peredo -peralto -pennywell -pennel -pen -pellegren -pella -pedroso -paulos -paulding -pates -pasek -paramo -paolino -panganiban -paneto -paluch -ozaki -ownbey -overfelt -outman -opper -onstad -oland -okuda -oertel -oelke -normandeau -nordby -nordahl -noecker -noblin -no -niswonger -nishioka -nett -nephew -negley -needles -nedeau -natera -nachman -naas -musich -mungin -mourer -mounsey -mottola -mothershed -moskal -mosbey -morini -moreles -mood -montaluo -moneypenny -monda -moench -moates -moad -mixer -missildine -misiewicz -mirabella -minott -minnifield -mincks -milum -milani -mikelson -mestayer -mess -mertes -merrihew -merlos -meritt -melnyk -medlen -meder -mean -mcvea -mcquarrie -mcquain -mclucas -mclester -mckitrick -mckennon -mcinnes -mcgrory -mcgranahan -mcglamery -mcgivney -mcgilvray -mccuiston -mccuin -mccrystal -mccolley -mcclerkin -mcclenon -mccamey -mcaninch -mazariegos -maynez -mattioli -mastronardi -masone -marzett -marsland -mari -margulies -margolin -malatesta -malachi -mainer -maietta -magrath -maese -madkins -madeiros -madamba -mackson -mac -maben -lytch -lundgreen -lumb -lukach -luick -luetkemeyer -luechtefeld -ludy -ludden -luckow -lubinsky -lowes -lout -lorenson -loran -lopinto -looby -lones -livsey -liskey -lisby -lintner -lindow -lindblom -liming -liechty -leth -lesniewski -lenig -lemonds -leisy -lehrer -lehnen -lehmkuhl -leeth -leer -leeks -lechler -lebsock -lavere -lautenschlage -laughridge -lauderback -laudenslager -lassonde -laroque -laramee -laracuente -lapeyrouse -lampron -lamers -lamer -laino -lague -laguardia -lafromboise -lafata -lacount -lachowicz -kysar -kwiecien -kuffel -kueter -kronenberg -kristensen -kristek -krings -kriesel -krey -krebbs -kreamer -krabbe -kossman -kosakowski -kosak -kopacz -konkol -koepsell -koening -koen -knerr -knapik -kluttz -klocke -klenk -klemme -klapp -kitchell -kita -kissane -kirkbride -kirchhoff -kinter -kinsel -kingsland -kimmer -kimler -killoran -kieser -khalsa -khalaf -kettel -kerekes -keplin -kentner -kennebrew -kenison -kellough -kellman -keatts -keasey -kauppi -katon -kari -kanner -kampa -kall -kai -kaczorowski -kaczmarski -juarbe -jordison -jonathan -jobst -jezierski -jeanbart -jarquin -janey -jagodzinski -ishak -isett -isa -infantino -imburgia -illingworth -hysmith -hynson -hydrick -hurla -hunton -hunnell -humbertson -housand -hottle -hosch -hoos -honn -hohlt -hodel -hochmuth -hixenbaugh -hislop -hisaw -hintzen -hilgendorf -hilchey -higgens -hersman -herrara -hendrixson -hendriks -hemond -hemmingway -heminger -helgren -heisey -heilmann -hehn -hegna -heffern -hawrylak -haverty -hauger -haslem -harnett -harb -happ -hanzlik -hanway -hanby -hanan -hamric -hammaker -halas -hagenbuch -hacking -habeck -gwozdz -gutter -gunia -guise -guadarrama -grubaugh -grivas -griffieth -grieb -grewell -gregorich -grazier -graeber -graciano -gowens -goodpaster -gondek -gohr -goffney -godbee -gitlin -gisler -gin -gillyard -gillooly -gilchrest -gilbo -gierlach -giebler -giang -geske -gervasio -gertner -gehling -geeter -gaus -gattison -gatica -gathings -gath -gassner -gassert -garabedian -gamon -gameros -galban -gabourel -gaal -fuoco -fullenwider -fudala -friscia -franceschini -foronda -fontanilla -florey -florentino -flore -flegle -flecha -fisler -fischbach -fiorita -fines -figura -figgins -fichera -fester -ferra -fear -fawley -fawbush -fausett -farnes -farago -fairclough -fahie -fabiani -everest -evanson -eutsey -eshbaugh -esh -ertle -eppley -englehardt -engelhard -emswiler -elza -elling -elderkin -eland -efaw -edstrom -edmund -edgemon -ecton -echeverri -ebright -earheart -dynes -dygert -dyches -dulmage -duhn -duhamel -dues -dubrey -dubray -dubbs -drone -drey -drewery -dreier -dorval -dorough -dorais -donlin -donatelli -doke -dohm -doetsch -dobek -ditty -disbrow -ding -dinardi -dillahunty -dillahunt -diers -dier -diekmann -diangelo -deskin -deschaine -depaoli -denner -demyan -demont -demaray -delillo -deleeuw -deibel -decato -deblasio -debartolo -daubenspeck -darner -dardon -danziger -danials -damewood -dalpiaz -dallman -dallaire -cunniffe -cumpston -cumbo -cubero -cruzan -cronkhite -critelli -crimi -creegan -crean -craycraft -crater -cranfill -coyt -courchesne -coufal -corradino -corprew -colville -cocco -coby -clinch -clickner -clavette -claggett -cirigliano -ciesielski -christain -chesbro -chavera -chard -casteneda -castanedo -cast -casseus -casa -caruana -carnero -cappelli -capellan -canedy -cancro -camilleri -calero -cada -burghart -burbidge -bulfer -buis -budniewski -bucko -bruney -brugh -brossard -brodmerkel -brockmann -bring -brigmond -briere -bremmer -breck -breau -brautigam -brasch -brandenberger -bran -bragan -bozell -bowsher -bosh -borgia -borey -boomhower -bonneville -bonam -bolland -boise -boeve -boettger -boersma -boateng -bliven -blazier -blanca -blahnik -bjornstad -bitton -biss -birkett -billingsly -biagioni -bettle -bertucci -bertolino -bermea -bergner -berber -bensley -bendixen -beltrami -bellone -belland -bein -behringer -begum -beans -bayona -batiz -bassin -baskette -bartolomeo -bartolo -bartholow -barkan -barish -barett -bardo -bamburg -ballerini -balla -balis -bakley -bailon -bachicha -babiarz -ayars -axton -axel -awong -awe -awalt -auslander -ausherman -aumick -athens -atha -atchinson -aslett -askren -arrowsmith -arras -arnhold -armagost -arey -arcos -archibeque -antunes -antilla -ann -andras -amyx -amison -amero -alzate -alphonse -alper -aller -alioto -alexandria -aigner -agtarap -agbayani -adami -achorn -aceuedo -acedo -abundis -aber -abee -zuccaro -ziglar -zier -ziebell -zieba -zamzow -zahl -yurko -yurick -yonkers -yerian -yeaman -yarman -yann -yahn -yadon -yadao -woodbridge -wolske -wollenberg -wojtczak -wnuk -witherite -winther -winick -widell -wickens -whichard -wheelis -wesely -wentzell -wenthold -wemple -weisenburger -wehling -weger -weaks -water -wassink -warn -walquist -wadman -wacaster -waage -voliva -vlcek -villafana -vigliotti -viger -viernes -viands -vey -veselka -versteeg -vero -verhoeven -vendetti -velardo -vatter -vasconcellos -varn -vanwagner -vanvoorhis -vanhecke -vanduyn -vandervoort -vanderslice -valone -vallier -vails -uvalle -ursua -urenda -upright -uphoff -tustin -turton -turnbough -turck -tullio -tuch -truehart -tropea -troester -trippe -tricarico -trevarthen -trembly -trace -trabue -traber -toto -tosi -toal -tinley -tingler -timoteo -tiffin -tien -ticer -thurgood -thorman -therriault -theel -tessman -tekulve -tejera -tebbs -tavernia -tarpey -tallmadge -takemoto -szot -sylvest -swindoll -swearinger -swantek -swaner -swainston -susi -surrette -sur -supple -sullenger -sudderth -suddarth -suckow -strider -strege -stream -strassburg -stoval -stotz -stoneham -stilley -stille -stierwalt -stfleur -steuck -stermer -stclaire -stano -staker -stahler -stablein -srinivasan -squillace -sprvill -sproull -sprau -sporer -spore -spittler -speelman -sparr -sparkes -spang -spagnuolo -sosinski -sorto -sorkin -sondag -sollers -socia -snarr -smrekar -smolka -slyter -slovinsky -sliwa -slavik -slatter -skiver -skeem -skala -sitzes -sitsler -sitler -sinko -simser -siegler -sideris -shrewsberry -shoopman -shoaff -shira -shindler -shimmin -shill -shenkel -shemwell -shehorn -severa -sergio -semones -selsor -seller -sekulski -segui -sechrest -scot -schwer -schwebach -schur -schmiesing -schlick -schlender -schebler -schear -schapiro -sauro -saunder -sauage -satterly -saraiva -saracino -saperstein -sanmartin -sanluis -sandt -sandrock -sammet -sama -salk -sakata -saini -sackrider -rys -russum -russi -russaw -rozzell -roza -rowlette -rothberg -rossano -rosebrock -romanski -romanik -romani -roma -roiger -roig -roehr -rodenberger -rodela -rod -rochford -ristow -rispoli -ripper -rigo -riesgo -riebel -ribera -ribaudo -rhoda -reys -resendes -repine -reisdorf -reisch -rebman -rasmus -raske -ranum -rames -rambin -raman -rajewski -raffield -rady -radich -raatz -quinnie -pyper -puthoff -prow -proehl -pribyl -pretti -prete -presby -poyer -powelson -porteous -poquette -pooser -pollan -ploss -plewa -plants -placide -pion -pinnick -pinales -pin -pillot -pille -pilato -piggee -pietrowski -piermarini -pickford -piccard -phenix -pevey -petrowski -petrillose -pesek -perrotti -perfecto -peppler -peppard -penfold -pellitier -pelland -pehowic -pedretti -paules -passero -pasha -panza -pallante -palau -pakele -pacetti -paavola -overy -overson -outler -osegueda -ord -oplinger -oldenkamp -ok -ohern -oetting -odums -oba -nowlen -nowack -nordlund -noblett -nobbe -nierman -nichelson -niblock -newbrough -nest -nemetz -neeson -needleman -necessary -navin -nastasi -naslund -naramore -nakken -nakanishi -najarro -mushrush -muma -mulero -morganfield -moreman -morain -moquin -montrose -monterrosa -monsivais -monroig -monje -monfort -moises -moffa -moeckel -mobbs -mitch -misiak -mires -mirelez -mineo -mineau -milnes -mikeska -michelin -michalowski -meszaros -messineo -meshell -merten -meola -menton -mends -mende -memmott -melius -mehan -mcnickle -mcmorran -mclennon -mcleish -mclaine -mckendry -mckell -mckeighan -mcisaac -mcie -mcguinn -mcgillis -mcfatridge -mcfarling -mcelravy -mcdonalds -mcculla -mcconnaughy -mcconnaughey -mcchriston -mcbeath -mayr -matyas -matthiesen -matsuura -matinez -mathys -matarazzo -masker -masden -mascio -martis -marrinan -marinucci -margerum -marengo -manthe -mansker -manoogian -mankey -manigo -manier -mangini -mandelbaum -maltese -malsam -mallo -maliszewski -mainolfi -maharaj -maggart -magar -maffett -macmaster -macky -macdonnell -mable -lyvers -lyn -luzzi -lutman -luk -lover -lovan -lonzo -longest -longerbeam -lofthouse -loethen -lodi -llorens -lizardo -lizama -liz -litscher -lisowski -lipski -lipsett -lipkin -linzey -lineman -limerick -limb -limas -lige -lierman -liebold -liberti -leverton -levene -lesueur -lenser -lenker -lemme -legnon -lefrancois -ledwell -lavecchia -laurich -lauricella -latino -lannigan -landor -lamprecht -lamountain -lamore -lamonica -lammert -lamboy -lamarque -lamacchia -lalley -lagace -lacorte -lacomb -kyllonen -kyker -kye -kuschel -kupfer -kunde -kucinski -kubacki -kuan -kroenke -krech -koziel -kovacich -kothari -koth -kotek -kostelnik -kosloski -knoles -knabe -kmiecik -klingman -kliethermes -kleffman -klees -klaiber -kittell -kissling -kisinger -kintner -kinoshita -kiener -khouri -kerman -kelii -keirn -keezer -kaup -kathan -kaser -karlsen -kapur -kandoll -kammel -kahele -justesen -jue -jonason -johnsrud -joerling -jochim -jespersen -jeong -jenness -jedlicka -jakob -isaman -inghram -ingenito -imperial -iadarola -hynd -huxtable -huwe -huron -hurless -humpal -hughston -hughart -huggett -hugar -huether -howdyshell -houtchens -houseworth -hoskie -holshouser -holmen -holloran -hohler -hoefler -hodsdon -hochman -hjort -hippert -hippe -hinzman -hillock -hilden -hilde -heyn -heyden -heyd -hergert -henrikson -henningsen -hendel -helget -helf -helbing -heintzman -heggie -hege -hecox -heatherington -heare -haxton -haverstock -haverly -hatler -haselton -hase -hartzfeld -harten -harken -hargrow -haran -hanton -hammar -hamamoto -halper -halko -hackathorn -haberle -haake -gunnoe -gunkel -gulyas -guiney -guilbeau -guider -guerrant -gudgel -guarisco -grossen -grossberg -gropp -groome -grobe -gremminger -greenley -grauberger -grabenstein -gowers -gostomski -gosier -goodenow -gonzoles -goliday -goettle -goens -goates -glymph -glavin -glassco -gladys -gladfelter -glackin -githens -girgis -gimpel -gilbreth -gilbeau -giffen -giannotti -gholar -gervasi -gertsch -gernatt -gephardt -genco -gehr -geddis -gear -gase -garrott -garrette -gapinski -ganter -ganser -gangi -gangemi -gang -gallina -galdi -gailes -gaetano -gadomski -gaccione -fuschetto -furtick -furfaro -fullman -frutos -fruchter -frogge -freytag -freudenthal -fregoe -franzone -frankum -francia -franceschi -fraction -forys -forero -folkers -foil -flug -flitter -flemons -fitzer -firpo -finizio -filiault -figg -fiddler -fichtner -fetterolf -ferringer -feil -fayne -farro -faddis -ezzo -ezelle -eynon -evitt -eutsler -euell -escovedo -erne -eriksson -enriguez -empson -elkington -elk -eisenmenger -eidt -eichenberger -ehrmann -ediger -earlywine -eacret -duzan -dunnington -duffer -ducasse -dubiel -drovin -drager -drage -donham -donat -dona -dolinger -dokken -doepke -dodwell -docherty -distasio -disandro -diniz -digangi -didion -dezzutti -devora -detmer -deshon -derrigo -dentler -demoura -demeter -demeritt -demayo -demark -demario -delzell -delnero -delgrosso -dejarnett -debernardi -dearmas -dau -dashnaw -daris -danks -danker -dangler -daignault -dafoe -dace -curet -cumberledge -culkin -cuba -crowner -crocket -crawshaw -craun -cranshaw -cragle -courser -costella -cornforth -corkill -cordy -coopersmith -conzemius -connett -connely -condict -condello -concha -comley -colt -collen -cohoon -coday -clugston -clowney -clippard -clinkenbeard -clines -clelland -clause -clapham -clancey -clabough -cichy -cicalese -chuck -chua -chittick -chisom -chisley -chino -chinchilla -cheramie -cerritos -cercone -cena -cawood -cavness -catanzarite -casada -carvell -carp -carmicheal -carll -cardozo -caplin -candia -canby -cammon -callister -calligan -calkin -caillouet -buzzelli -bute -bustillo -bursey -burgeson -bupp -bulson -bulls -buist -buffey -buczkowski -buckbee -bucio -brueckner -broz -brookhart -brong -brockmeyer -broberg -brittenham -brisbois -bridgmon -bride -breyer -brede -breakfield -breakey -brauner -branigan -brandewie -branche -brager -brader -bovell -bouthot -bostock -bosma -boseman -boschee -borthwick -borneman -borer -borek -boomershine -boni -bommarito -bolman -boleware -boisse -boehlke -bodle -blash -blasco -blakesley -blacklock -blackley -bittick -birks -birdin -bircher -bilbao -bick -biby -bertoni -bertino -bertini -berson -bern -berkebile -bergstresser -benne -benevento -belzer -beltre -bellomo -bellerose -beilke -begeman -bebee -beazer -beaven -beamish -baymon -baston -bastidas -basom -basket -basey -bartles -baroni -barocio -barnet -barclift -banville -balthazor -balleza -balkcom -baires -bailiff -bailie -baik -baggott -bagen -bachner -babington -babel -asmar -askin -arvelo -artega -arrendondo -arreaga -arrambide -arquette -aronoff -arico -argentieri -arevalos -archbold -apuzzo -antczak -ankeny -angelle -angelini -anfinson -amer -amberg -amarillas -altier -altenburg -alspach -alosa -allsbrook -alexopoulos -aleem -aldred -albertsen -akerson -ainsley -agler -adley -addams -acoba -achille -abplanalp -abella -abare -zwolinski -zollicoffer -zola -zins -ziff -zenner -zender -zelnick -zelenka -zeches -zaucha -zauala -zappa -zangari -zagorski -youtsey -yorker -yell -yasso -yarde -yarbough -xiao -woolever -woodsmall -woodfolk -wonders -wobig -wixson -wittwer -wirtanen -winson -wingerd -wilkening -wilhelms -wierzbicki -wiechman -whites -weyrick -wessell -wenrick -wenning -weltz -weinrich -weiand -wehunt -wareing -walth -waibel -wahlquist -vona -voelkel -vitek -vinsant -vincente -vilar -viel -vicars -vermette -verma -vent -venner -veazie -vayda -vashaw -varon -vardeman -vandevelde -vanbrocklin -valery -val -vaccarezza -urquidez -urie -urbach -uram -ungaro -umali -ulsh -tutwiler -turnbaugh -tumminello -tuite -tueller -trulove -troha -trivino -trisdale -trippett -tribbett -treptow -tremain -travelstead -trautwein -trautmann -tram -traeger -tonelli -tomsic -tomich -tomasulo -tomasino -tole -todhunter -toborg -tischer -tirpak -tircuit -tinnon -tinnel -tines -tina -timbs -tilden -tiede -thumm -throne -throgmorton -thorndike -thornburgh -thoren -thomann -therrell -thau -thammavong -tetrick -tessitore -tesreau -teicher -teaford -tauscher -tauer -tanabe -talamo -takeuchi -taite -tadych -sweeton -swecker -swartzentrube -swarner -surrell -surbaugh -suppa -sunshine -sumbry -suchy -stuteville -studt -stromer -strome -streng -stonestreet -stockley -stmichel -sticker -stfort -sternisha -stensrud -steinhardt -steinback -steichen -stauble -stasiak -starzyk -stango -standerfer -stachowiak -springston -spratlin -spracklen -sponseller -spilker -spiegelman -spellacy -speiser -spaziani -spader -spackman -space -sorum -sopha -sollis -sollenberger -solivan -solheim -sokolsky -sogge -smyser -smitley -sloas -slinker -skora -skiff -skare -siverd -sivels -siska -siordia -simmering -simko -sime -silmon -silano -sieger -siebold -shukla -shreves -shoun -shortle -shonkwiler -shoals -shimmel -shiel -shieh -sherbondy -shenkman -shein -shearon -shean -shatz -shanholtz -shafran -shaff -shackett -sgroi -sewall -severy -sethi -sessa -sequra -sepulvado -seper -senteno -sendejo -semmens -seipp -segler -seegers -sedwick -sedore -sechler -sebastiano -scovel -scotton -scopel -schwend -schwarting -schutter -schrier -schons -scholtes -schnetzer -schnelle -schmutz -schlichter -schelling -schams -schamp -scarber -scallan -scalisi -scaffidi -saxby -sawrey -sauvageau -sauder -sarrett -sanzo -santizo -santella -santander -sandez -sandel -sammon -salsedo -salge -sailors -sagun -safi -sader -sacchetti -sablan -saber -saade -runnion -runkel -rung -rumbo -ruesch -ruegg -ruckle -ruchti -rubens -rubano -rozycki -roupe -roufs -rossel -rosmarin -rosero -rosenwald -roselle -ronca -romos -rolla -rohling -rohleder -roell -roehm -rochefort -roch -robotham -rivenburgh -riopel -riederer -ridlen -rias -rhudy -reynard -retter -respess -reppond -repko -rengifo -reinking -reichelt -reeh -redenius -rebolledo -raymundo -rauh -ratajczak -rapley -ranalli -ramie -raitt -radloff -radle -rabbitt -quay -quant -pusateri -puffinberger -puerta -provencio -proano -privitera -prenger -prellwitz -pousson -potier -poster -portz -portlock -porth -portela -portee -porchia -pollick -polinski -polfer -polanski -polachek -pluta -plourd -plauche -pitner -piontkowski -pileggi -pierotti -pico -piacente -phinisee -phaup -pfost -pettinger -pettet -petrich -peto -persley -persad -perlstein -perko -pere -penders -peifer -peco -pear -pay -pawley -pash -parrack -parady -papen -pangilinan -pandolfo -palone -palmertree -padin -ou -ottey -ottem -ostroski -ornstein -ormonde -onstott -oncale -oltremari -olcott -olan -oishi -oien -odonell -odonald -ode -obeso -obeirne -oatley -nusser -novo -novicki -noreen -nora -nitschke -nistler -nim -nikkel -niese -nierenberg -nield -niedzwiecki -niebla -niebel -nicklin -neyhart -newsum -nevares -nageotte -nagai -myung -mutz -murata -muralles -munnerlyn -mumpower -muegge -muckle -muchmore -moulthrop -motl -moskos -mortland -morring -mormile -morimoto -morikawa -morgon -mordecai -montour -mont -mongan -monell -miyasato -mish -minshew -mimbs -millin -milliard -mihm -middlemiss -miano -mew -mesick -merlan -mendonsa -mench -melonson -melling -mecca -meachem -mctighe -mcnelis -mcmurtrey -mcmurphy -mckesson -mckenrick -mckelvie -mcjunkins -mcgory -mcgirr -mcgeever -mcfield -mcelhinney -mccrossen -mccommon -mccannon -mazyck -mawyer -maull -matute -mathies -maschino -marzan -martinie -marrotte -marmion -markarian -marinacci -margolies -margeson -marcia -marcel -marak -maraia -maracle -manygoats -mano -manker -mank -mandich -manderson -maltz -malmquist -malacara -majette -mais -magnan -magliocca -madina -madara -macwilliams -macqueen -maccallum -lyde -lyday -lutrick -lurz -lurvey -lumbreras -luhrs -luhr -lue -lowrimore -lowndes -lowers -lourenco -lougee -lorona -longstreth -loht -lofquist -loewenstein -lobos -lizardi -liverpool -lionberger -limoli -liljenquist -liguori -liebl -liburd -leukhardt -letizia -lesinski -lepisto -lenzini -leisenring -leipold -leier -leggitt -legare -leaphart -lazor -lazaga -lavey -laue -laudermilk -lauck -lassalle -larsson -larison -lanzo -lantzy -lanners -langtry -landford -lancour -lamour -lambertson -lalone -lairson -lainhart -lagreca -lacina -labranche -labate -kurtenbach -kuipers -kuechle -kue -kubo -krinsky -krauser -kraeger -kracht -kozeliski -kozar -kowalik -kotler -kotecki -koslosky -kosel -koob -kolasinski -koizumi -kohlman -koffman -knutt -knore -knaff -kmiec -klamm -kittler -kitner -kirkeby -kiper -kindler -kilmartin -killings -killin -kilbride -kerchner -kendell -keddy -keaveney -kearsley -karras -karlsson -karalis -kappes -kapadia -kallman -kallio -kalil -kader -jurkiewicz -joya -johann -jitchaku -jillson -jex -jeune -jarratt -jarchow -janak -ivins -ivans -isenhart -inocencio -inoa -imhof -iacono -hynds -hutching -hutchin -hulsman -hulsizer -hueston -huddleson -hrbek -howry -housey -hounshell -hosick -hortman -horseman -horky -horine -hootman -honeywell -honeyestewa -holste -holien -holbrooks -hoffmeyer -hof -hoese -hoenig -hirschfeld -hildenbrand -higson -higney -hibert -hibbetts -hewlin -hesley -herrold -hermon -heritage -hepker -henwood -helbling -heinzman -heidtbrink -hedger -havey -hatheway -hartshorne -harpel -haning -handelman -hamalainen -hamad -halt -halasz -haigwood -haggans -hackshaw -guzzo -gunner -gundrum -guilbeault -gugliuzza -guglielmi -gue -guderian -gruwell -grunow -grundman -gruen -grotzke -grossnickle -groomes -grode -grochowski -grob -grein -greif -greenwall -greenup -grassl -grannis -grandfield -grames -grabski -grabe -gouldsberry -gotham -gosch -goody -goodling -goodermote -gonzale -golebiowski -goldson -godlove -glanville -gillin -gilkerson -giessler -giambalvo -giacomini -giacobbe -ghio -gergen -gentz -genrich -gelormino -gelber -geitner -geimer -gauthreaux -gaultney -garvie -gareau -garbo -garbacz -ganoe -gangwer -gandarilla -galyen -galt -galluzzo -gallon -galardo -gager -gaddie -gaber -gabehart -gaarder -fusilier -furnari -furbee -fugua -fruth -frohman -friske -frilot -fridman -frescas -freier -frayer -franzese -franklyn -frankenberry -frain -fosse -foresman -forbess -foot -florida -flook -fletes -fleer -fleek -fleegle -fishburne -fiscalini -finnigan -fini -filipiak -figueira -fiero -ficek -fiaschetti -ferren -ferrando -ferman -fergusson -fenech -feiner -feig -fees -faulds -fate -fariss -fantasia -falor -falke -ewings -eversley -everding -eunice -etling -essen -erskin -enstrom -enrico -engebretsen -ender -emma -eitel -eichberger -ehler -eekhoff -edrington -edmonston -edgmon -edes -eberlein -dwinell -dux -dupee -dunklee -dunk -dungey -dunagin -dumoulin -duggar -duenez -dudzic -dudenhoeffer -ducey -dub -drouillard -dreibelbis -dreger -dreesman -draughon -downen -double -dorminy -dominic -dombeck -dolman -doebler -dittberner -dishaw -disanti -dinicola -dinham -dimino -dilling -difrancesco -dicello -dibert -deshazer -deserio -descoteau -deruyter -dering -depinto -dente -demus -demattos -demarsico -delude -dekok -debrito -debois -deakin -dea -dayley -dawsey -dauria -datson -darty -darsow -darragh -darensbourg -dalleva -dalbec -dadd -cutcher -curb -cung -cuello -cuadros -crute -crutchley -crispino -crislip -crisco -crevier -creekmur -crance -cragg -crager -cozby -coyan -coxon -covalt -couillard -costley -costilow -cossairt -corvino -corigliano -cordaro -corbridge -corban -coor -cooler -conkel -cong -conary -coltrain -collopy -colgin -colen -colbath -coiro -coffie -cochrum -cobbett -clopper -cliburn -clendenon -clemon -clementi -clausi -cirino -cina -churn -churchman -chilcutt -cherney -cheetham -cheatom -chatelain -chandra -chalifour -cesa -cervenka -cerullo -cerreta -cerbone -cecchini -ceccarelli -cawthorn -cavalero -catalina -castner -castlen -castine -casimiro -casdorph -cartmill -cartmell -carro -carriger -carlee -carias -caravella -cappas -capen -cantey -canedo -camuso -camps -campanaro -camero -cambria -calzado -callejo -caligiuri -cafaro -cadotte -cacace -byrant -busbey -burtle -burres -burnworth -burggraf -burback -bunte -bunke -bulle -bugos -budlong -buckhalter -buccellato -brummet -bruff -brubeck -brouk -broten -brosky -broner -brittle -brislin -brimm -brillhart -bridgham -brideau -brennecke -brenna -breer -breeland -bredesen -branden -brackney -brackeen -boza -boyum -bowdry -bowdish -bouwens -bouvier -bougie -bouche -bottenfield -bostian -bossie -bosler -boschert -boroff -borello -boom -bonser -bonfield -bon -bole -boldue -bogacz -boemer -bluth -bloxom -blickenstaff -blessinger -bleazard -blatz -blanchet -blacksher -birchler -binning -binkowski -biltz -bilotta -bilagody -bigbee -bieri -biehle -bidlack -betker -bethers -bethell -bertha -bero -bernacchi -bermingham -berkshire -benvenuto -bensman -benoff -bencivenga -beman -bellow -bellany -belflower -belch -bekker -bejar -beisel -beichner -began -beedy -beas -beanblossom -bawek -baus -baugus -battie -battershell -bateson -basque -basford -bartone -barritt -barko -bann -bamford -baltrip -balon -balliew -ballam -baldus -ayling -avelino -ashwell -ashland -arseneau -arroyos -armendarez -arita -argust -archuletta -arcement -antonacci -anthis -antal -annan -andree -anderman -amster -amiri -amadon -alveraz -altomari -altmann -altenhofen -allers -allbee -allaway -all -aleo -alcoser -alcorta -akhtar -ahuna -agramonte -agard -adkerson -achord -abt -abdi -abair -zurn -zoellner -zirk -zion -zee -zarro -zarco -zambo -zaiser -zaino -zachry -youd -yonan -yniguez -yepes -yeo -yellock -yellen -yeatts -yearling -yatsko -yannone -wyler -woodridge -wolfrom -wolaver -wolanin -wojnar -wojciak -wittmann -wittich -wiswell -wisser -wintersteen -wineland -willing -willford -wiginton -wigfield -wierman -wice -wiater -whitsel -whitbread -wheller -wettstein -werling -wente -wenig -wempe -welz -weinhold -weigelt -weichman -wedemeyer -weddel -ways -wayment -waycaster -wauneka -watzka -watton -warnell -warnecke -warmack -warder -wands -waldvogel -waldridge -wahs -wagganer -waddill -vyas -vought -votta -voiles -virga -viner -villella -villaverde -villaneda -viele -vickroy -vicencio -veve -vetere -vermilyea -verley -verburg -ventresca -veno -venard -venancio -velaquez -veenstra -vea -vasil -vanzee -vanwie -vantine -vant -vanschoyck -vannice -vankampen -vanicek -vandersloot -vanderpoel -vanderlinde -vallieres -uzzell -uzelac -uranga -uptain -updyke -uong -untiedt -umbrell -umbaugh -umbarger -ulysse -ullmann -ullah -tutko -turturro -turnmire -turnley -turcott -turbyfill -turano -tuminello -tumbleson -tsou -truscott -trulson -troutner -trone -troll -trinklein -tremmel -tredway -trease -traynham -traw -totty -torti -torregrossa -torok -tomkins -tomaino -tkach -tirey -tinsman -timpe -tiefenauer -tiedt -tidball -thwaites -thulin -throneburg -thorns -thorell -thorburn -thiemann -thieman -thesing -tham -terrien -terrance -telfair -taybron -tasson -tasso -tarro -tanenbaum -talent -tailor -taddeo -tada -taborn -tabios -szekely -szatkowski -sylve -swineford -swartzfager -swanton -swagerty -surrency -sunderlin -sumerlin -suero -suddith -sublette -stumpe -stueve -study -stuckert -strycker -struve -struss -strubbe -strough -strothmann -strahle -stoutner -stooksbury -stones -stonebarger -stokey -stoffer -stimmel -stief -stephans -stemper -steltenpohl -stellato -steinle -stegeman -steffler -steer -steege -steckman -stapel -stansbery -stanaland -stahley -stagnaro -stachowski -squibb -sprunger -sproule -sprehe -spreen -sprecher -sposato -spivery -souter -sopher -sommerfeldt -soffer -snowberger -snape -smylie -smyer -smack -slaydon -slatton -slaght -skovira -skeans -sjolund -sjodin -siragusa -singelton -sinatra -silis -siebenaler -shuffield -shobe -shiring -shimabukuro -shilts -sherley -sherbert -shelden -sheil -shedlock -shearn -shaub -sharbono -shapley -shands -shaheen -shaffner -servantez -sentz -seney -selin -seitzinger -seider -sehr -sego -segall -seeds -sebastien -scimeca -schwenck -schweiss -schwark -schwalbe -schucker -schronce -schrag -schouten -schoppe -schomaker -schnarr -schmied -schmader -schlicht -schlag -schield -schiano -scheve -scherbarth -schaumburg -schauman -scarpino -savinon -sassaman -sarah -saporito -sanville -santilli -santaana -sanda -salzmann -salman -saks -sagraves -safran -saccone -sa -rutty -russett -rupard -rump -rumbley -ruffins -ruacho -rozema -roxas -routson -rourk -rought -rotunda -rotermund -rosman -rosette -rork -rooke -rolin -rohm -rohlman -rohl -roeske -roecker -rober -robenson -riso -rinne -rima -riina -rigsbee -riggles -riester -rials -rhinehardt -reynaud -reyburn -rewis -revermann -reutzel -retz -rende -rendall -reistad -reinders -reichardt -rehrig -rehrer -recendez -reamy -raz -rauls -ratz -rattray -rasband -rapone -ragle -ragins -radican -raczka -rachels -raburn -rabren -raboin -ra -quesnell -quaintance -puccinelli -pruner -prouse -proud -prosise -proffer -prochazka -probasco -previte -prayer -pour -portell -porcher -popoca -poncho -pomroy -poma -polsky -polsgrove -polidore -podraza -plymale -plescia -pleau -platte -plato -pizzi -pinchon -picot -piccione -picazo -philibert -phebus -pfohl -petell -pesso -pesante -pervis -perrins -perley -perkey -pereida -penate -peloso -pellerito -peffley -peddicord -pecina -peale -peaks -payette -paxman -pawlikowski -pavy -pavlov -patry -patmon -patil -pater -patak -pasqua -pasche -partyka -parody -parmeter -pares -pardi -paonessa -pao -panozzo -panameno -paletta -pait -oyervides -ossman -oshima -ortlieb -orsak -orleans -onley -on -oldroyd -okano -ohora -offley -oestreicher -odonovan -odham -odegard -obst -obriant -obrecht -nuccio -nowling -nowden -novelli -novell -nost -norstrom -norfolk -nordgren -nopper -noller -nisonger -niskanen -nienhuis -nienaber -neuwirth -neumeyer -neice -naugher -naiman -nagamine -mustin -murrietta -murdaugh -munar -mulberry -muhlbauer -mroczkowski -mowdy -mouw -mousel -mountcastle -moscowitz -mosco -morro -moresi -morago -moomaw -montroy -montpas -montieth -montanaro -mongelli -mon -mollison -mollette -moldovan -mohar -mizuno -mitchelle -mishra -misenheimer -minshall -minozzi -minniefield -minion -milhous -migliaccio -migdal -mickell -meyering -methot -mester -mesler -meriweather -mensing -mensah -menge -mendola -mendibles -meloche -melnik -mellas -meinert -mehrhoff -medas -meckler -mctague -mcspirit -mcshea -mcquown -mcquiller -mclarney -mckiney -mckearney -mcguyer -mcfarlan -mcfadyen -mcdanial -mcdanel -mccurtis -mccrohan -mccorry -mcclune -mccant -mccanna -mccandlish -mcaloon -mayall -maver -maune -matza -matty -matsuzaki -matott -mathey -mateos -masoner -masino -mas -marzullo -marz -maryland -marsolek -marquard -mario -marchetta -marberry -manzione -many -manthei -manka -mangram -mangle -mangel -mandato -mancillas -mammen -malina -maletta -malecki -majkut -mages -maestre -macphail -maco -macneill -macadam -lysiak -lyne -luxton -luptak -lundmark -luginbill -lovallo -louthan -lousteau -loupe -lotti -lopresto -lonsdale -longsworth -lohnes -loghry -logemann -lofaro -loeber -locastro -livings -litzinger -litts -liotta -lingard -lineback -lindy -lindhorst -lill -lide -lickliter -liberman -lewinski -levandowski -leimbach -leifer -leidholt -leiby -leibel -leibee -lehrke -lehnherr -lego -leese -leen -ledo -lech -leblond -leap -leahey -lazzari -lawrance -lawlis -lawhorne -lawes -lavigna -lavell -lauzier -lauter -laumann -latsha -latourette -latona -latney -laska -larner -larmore -larke -larence -lapier -lanzarin -lands -lammey -lamke -laminack -lamastus -lamaster -lacewell -labarr -laabs -kutch -kuper -kuna -kubis -krzemien -krupinski -krepps -kreeger -kraner -krammer -kountz -kothe -korpela -komara -kolenda -kolek -kohnen -koelzer -koelsch -kocurek -knoke -knauff -knaggs -knab -kluver -klose -klien -klahr -kitagawa -kissler -kirstein -kinnon -kinnebrew -kinnamon -kimmins -kilgour -kilcoyne -kiester -kiehm -kha -kesselring -kerestes -kenniston -kennamore -kenebrew -kelderman -keitel -kefauver -katzenberger -katt -kast -kassel -kasey -karol -kamara -kalmbach -kaizer -kaiwi -kainz -jurczyk -jumonville -juliar -jourdain -johndrow -johanning -johannesen -joffrion -jobes -jerde -jentzsch -jenkens -jendro -jellerson -jefferds -jaure -jaquish -janeway -jago -iwasaki -ishman -isaza -inmon -inlow -inclan -ildefonso -ike -iezzi -ianni -iacovetto -hyldahl -huxhold -huser -humpherys -humburg -hult -hullender -hulburt -huckabay -howeth -hovermale -hoven -houtman -hourigan -hosek -hopgood -homrich -holstine -holsclaw -hokama -hoffpauir -hoffner -hochstein -hochstatter -hochberg -hjelm -hiscox -hinsley -hinks -hineman -hineline -hinck -hilbun -hewins -herzing -hertzberg -hertenstein -herrea -herington -hercules -henrie -henman -hengst -hemmen -helmke -helgerson -heinsohn -heigl -hegstad -heggen -hegge -hefti -heathcock -haylett -haupert -haufler -hatala -haslip -hartless -hartje -hartis -harpold -harmsen -harbach -hanten -hanington -hammen -hameister -hallstrom -habersham -habegger -gussman -gundy -guitterez -guisinger -guilfoyle -groulx -grismer -griesbach -grawe -grall -graft -graben -goulden -gornick -gori -gookin -gonzalaz -gonyer -gonder -golphin -goller -goergen -glosson -glor -gladin -girdler -gillim -gillians -gillaspie -gilhooly -gildon -gignac -gibler -gibbins -giardino -giampietro -gettman -gerringer -gerrald -gerlich -georgiou -georgia -georgi -geiselman -gehman -gauze -gangl -gamage -gallian -gallen -gallatin -galen -galea -gainor -gahr -furbush -fulfer -fuhrmann -fritter -friis -friendly -friedly -freudenberger -frees -freemon -fratus -frans -foulke -fosler -forquer -fontan -folwell -folds -foeller -fodge -fobes -florek -fliss -flight -flesner -flegel -fitzloff -fiser -first -firmin -firestine -finfrock -fineberg -figures -fiegel -fickling -fesperman -fernadez -felber -feimster -feazel -favre -faughn -fatula -fasone -farron -faron -farino -falvey -falkenberg -faley -faletti -faeth -fackrell -ezekiel -espe -eskola -escott -esaw -erps -erker -erath -enfield -emfinger -embury -embleton -emanuele -em -elvers -ellwanger -ellegood -einstein -eichinger -egge -egeland -edgett -echard -eblen -eastmond -duteau -durland -dure -dunlavy -dungee -dukette -dugay -duboise -dubey -dsouza -druck -dralle -doubek -dorta -dorch -dorce -dopson -dolney -dockter -distler -diss -dippel -diperna -dina -dichiara -dicerbo -dewindt -dewan -deveney -devargas -deutscher -deuel -detter -dess -derrington -deroberts -dern -deponte -denogean -denardi -denard -demary -demarcus -demarais -delucas -deloe -delmonico -delisi -delio -delduca -delaine -deihl -dehmer -deep -decoste -dechick -decatur -dec -debruce -debold -debell -deats -daunt -daquilante -dambrosi -damas -dalin -daisy -dahman -dahlem -daffin -dacquel -cutrell -cusano -curtner -currens -curnow -cuppett -cummiskey -cullers -culhane -crull -crossin -cropsey -cromie -crofford -criscuolo -crisafulli -crego -creeden -covello -covel -corse -correra -corners -cordner -cordier -coplen -copeman -contini -conteras -consalvo -conduff -condo -compher -comas -colliver -colan -cohill -cohenour -cogliano -codd -cockayne -clum -clowdus -clarida -clance -clairday -clagg -citron -citino -ciriello -cicciarelli -chrostowski -christley -christians -chrisco -chris -chrest -chisler -chieffo -cherne -cherico -cherian -cheirs -chauhan -charter -chamblin -cerra -cepero -cellini -celia -celeste -celedon -cejka -cavagnaro -cauffman -catanese -castrillo -castrellon -casserly -casino -caseres -carthen -carse -carragher -carpentieri -carmony -carmer -carlozzi -caradine -cappola -capece -capaldi -cantres -cantos -canevari -canete -calcaterra -cal -cadigan -cabbell -byrn -bykowski -butchko -busler -bushaw -buschmann -burow -buri -burgman -bunselmeyer -bunning -buhrman -budnick -buckson -buckhannon -brunjes -brummel -brumleve -bruckman -brouhard -brougham -brostrom -broerman -brocks -brison -brining -brindisi -brereton -breon -breitling -breedon -brasseaux -branaman -bramon -brackenridge -boyan -boxley -bouman -bouillion -botting -botti -bosshart -borup -borner -bordonaro -boot -bonsignore -bonsall -bolter -bojko -bohne -bohlmann -bogus -bogdon -boen -bodenschatz -bockoven -bobrow -blondin -blissett -bligen -blasini -blankenburg -bjorkman -bistline -bisset -birdow -biondolillo -bielski -biele -biddix -biddinger -bianchini -bevens -bevard -betancur -bernskoetter -bernet -bernardez -berliner -berland -berkheimer -berent -bensch -benesch -belleau -bedingfield -beckstrom -beckim -bechler -beachler -bazzell -basa -bartoszek -barsch -barrell -barnas -barnaba -barillas -barbier -baltodano -baltierra -balle -balint -baldi -balderson -balderama -baldauf -balcazar -balay -baiz -bairos -baba -azim -axe -aversa -avellaneda -ausburn -aurelio -auila -augusto -atwill -artiles -arterberry -aro -arnow -arnaud -arnall -armando -argyle -ares -arenz -arduini -archila -arakawa -appleman -aplin -antonini -anstey -anglen -andros -amweg -amstutz -amari -amadeo -aly -alteri -aloi -allebach -allah -aley -alamillo -airhart -ahrendt -africa -aegerter -adragna -admas -adderly -adderley -addair -abelar -abbamonte -abadi -zurek -zundel -zuidema -zuelke -zuck -zogg -zody -zets -zech -zecca -zavaleta -zarr -yousif -yoes -yoast -yeagley -yaney -yanda -yackel -wyles -wyke -woolman -woollard -woodis -woodin -wonderly -wombles -woloszyn -wollam -wnek -wms -wittie -withee -wissman -wisham -wintle -winthrop -winokur -winch -wilmarth -willhoite -wildner -wikel -wieser -wien -wicke -wiatrek -whitehall -whetstine -wheelus -weyrauch -weyers -westerling -wendelken -welner -welder -weinreb -weinheimer -weilbacher -weihe -weider -wecker -wead -watler -watkinson -wasmer -waskiewicz -wasik -warneke -wares -wangerin -wamble -walken -waker -wakeley -wahlgren -wahlberg -wagler -wachob -vorhies -vonseggern -vittitow -virgilio -vink -villarruel -villamil -villamar -villalovos -vidmar -victorero -vespa -vertrees -verissimo -veltman -vecchione -veals -varrone -varma -vanveen -vanterpool -vaneck -vandyck -vancise -vanausdal -vanalphen -valdiviezo -urton -urey -updegrove -unrue -ulbrich -tysinger -tyo -twiddy -tunson -trueheart -troyan -trier -traweek -trafford -tozzi -toulouse -touch -tosto -toste -torez -tooke -tonini -tonge -tomerlin -tolmie -tobe -tippen -tierno -tichy -thuss -threat -thran -thornbury -thone -theunissen -thelmon -theall -textor -teters -tesh -tennis -teng -tench -tekautz -tehrani -teat -teas -teare -te -tavenner -tartaglione -tanski -tanis -tanguma -tangeman -taney -tammen -tamburri -tamburello -talsma -tallie -takeda -taira -taheri -tademy -taddei -taaffe -szymczak -szczepaniak -szafranski -swygert -swem -swartzlander -sutley -supernaw -sundell -sullivant -suderman -sudbury -suares -stueber -stromme -striker -streeper -streck -strebe -stonehouse -stoia -stohr -stodghill -stirewalt -stick -sterry -stephanie -stenstrom -stene -steinbrecher -stear -stdenis -stanphill -staniszewski -stanard -stahlhut -stachowicz -srivastava -spong -spomer -spinosa -spindel -spera -spark -soward -sopp -sooter -sonnek -sonne -soland -sojourner -soeder -sobolewski -snellings -snare -smola -smetana -smeal -smarr -sloma -sligar -skenandore -skalsky -sitter -sissom -sirko -simkin -silverthorn -silman -sikkink -signorile -siddens -shumsky -shrider -shoulta -shonk -shomaker -shippey -shimada -shillingburg -shifflet -shiels -shepheard -sheerin -shedden -sheckles -sharrieff -sharpley -shappell -shaneyfelt -shampine -shaefer -shaddock -shadd -sforza -severtson -setzler -sepich -senne -senatore -sementilli -selway -selover -sellick -seigworth -sefton -seegars -sebourn -seaquist -sealock -seabreeze -scriver -scinto -schumer -schulke -schryver -schriner -schramek -schoon -schoolfield -schonberger -schnieder -schnider -schlitz -schlather -schirtzinger -scherman -schenker -scheiner -scheible -schaus -schakel -schaad -saxe -savely -savary -sardinas -santarelli -sanschagrin -sans -sanpedro -sanjose -sandra -sandine -sandigo -sandgren -sanderford -sandahl -salzwedel -salzar -salvino -salvatierra -salminen -salierno -salberg -sahagun -saelee -sabel -rynearson -ryker -rupprecht -runquist -rumrill -ruhnke -rovira -rottenberg -rosoff -rosete -rosebrough -roppolo -roope -romas -roley -rohrback -rohlfs -rogriguez -roel -rodriguiz -rodewald -roback -rizor -ritt -rippee -riolo -rinkenberger -riggsby -rigel -rieman -riedesel -rideau -ricke -rhinebolt -rheault -revak -relford -reinsmith -reichmann -rei -regula -redlinger -redhead -rayno -raycroft -rave -raus -raupp -rathmann -rastorfer -rasey -raponi -rantz -ranno -ranes -randal -ramp -ramnauth -rahal -raddatz -quattrocchi -quang -purchase -pullis -pulanco -pryde -prohaska -primiano -prez -prevatt -prechtl -pottle -potenza -portes -porowski -poppleton -pontillo -pong -polka -politz -politi -poggi -plonka -plaskett -placzek -pizzuti -pizzaro -pisciotta -pippens -pinkins -pinilla -pini -pingitore -piercey -pickup -piccola -piccioni -picciano -phy -philps -philp -philo -philmon -philbin -pflieger -pezzullo -petruso -petrea -petitti -peth -peshlakai -peschel -persico -persichetti -persechino -perris -perlow -perico -pergola -penniston -pembroke -pellman -pekarek -peirson -pearcey -pealer -pavlicek -passino -pasquarello -pasion -parzych -parziale -parga -papalia -papadakis -paino -pacini -oyen -ownes -owczarzak -outley -ouelette -ottosen -otting -ostwinkle -osment -oshita -osario -orlow -oriordan -orefice -orantes -oran -orahood -opel -olpin -oliveria -okon -okerlund -okazaki -ohta -offerman -nyce -nutall -northey -norcia -noor -noh -niehoff -niederhauser -nickolson -nguy -neylon -newstrom -nevill -netz -nesselrodt -nemes -neally -nauyen -nascimento -nardella -nanni -myren -murchinson -munter -munster -mundschenk -mujalli -muckleroy -mu -moussa -mouret -moulds -mottram -motte -mosey -morre -montreuil -monton -montellano -monninger -monhollen -mongeon -monestime -monegro -mondesir -monceaux -mola -moga -moening -moccia -misko -miske -mishaw -minturn -mingione -minerva -milstein -milos -milla -milks -milhouse -michl -micheletti -michals -mesia -merson -meras -menifee -meluso -mella -melick -mehlman -meffert -medoza -mecum -meaker -meahl -mczeal -mcwatters -mcomber -mcmonigle -mckiddy -mcgranor -mcgeary -mcgaw -mcenery -mcelderry -mcduffey -mccuistion -mccrudden -mccrossin -mccosh -mccolgan -mcclish -mcclenahan -mcclam -mccartt -mccarrell -mcbane -mc -maybury -mayben -maw -maulden -mauceri -matko -mathie -matheis -mathai -masucci -massiah -martorano -martnez -martindelcamp -marschke -marovich -markiewicz -marinaccio -marhefka -marcrum -manton -mantel -mannarino -manlove -mangham -manasco -malpica -mallernee -malinsky -malhotra -maish -maisel -mainville -maharrey -magid -maertz -mada -maclaughlin -macina -macdermott -macallister -macadangdang -maack -lynk -lydic -luyando -lutke -lupinacci -lunz -lundsten -lull -lujano -luhn -luecke -luebbe -ludolph -luckman -lucker -luckenbill -luckenbach -lucido -lowney -lowitz -lovaglio -louro -louk -loudy -louderback -lorick -lorenzini -lorensen -lorenc -lomuscio -loguidice -lockner -lockart -lochridge -litaker -lisowe -liptrap -linnane -linhares -lindfors -lindenmuth -lincourt -lina -like -liew -lies -liebowitz -levengood -leskovec -lesch -leoni -lennard -legner -leaser -leas -lean -leadingham -lazarski -layland -laurito -laulu -laughner -laughman -laughery -laube -latiolais -lasserre -lasser -lars -larrow -larrea -lapsley -lantrip -lanthier -langwell -langelier -landaker -lampi -lamond -lamblin -lambie -lakins -laipple -lagrimas -lafrancois -laffitte -laday -lacko -lacava -labor -labianca -kutsch -kuske -kunert -kubly -kuamoo -krummel -krise -krenek -kreiser -krausz -kraska -krakowski -kradel -kozik -koza -kotowski -koslow -korber -kojima -kochel -knabjian -klunder -klugh -klinkhammer -kliewer -klever -kleber -klages -klaas -kizziar -kitchel -kishimoto -kirschenman -kirschenbaum -kinnick -kinn -kinkle -kiner -kindla -kindall -kincaide -kilson -killins -kill -kightlinger -kienzle -kiah -khim -ketcherside -kerl -kelsoe -kelker -keizer -keir -keepers -kawano -kawa -kaveney -kath -kasparek -kaplowitz -kantrowitz -kant -kanoff -kano -kann -kamalii -kalt -kaleta -kalbach -kalauli -kalata -kalas -kaigler -kachel -juran -jubb -jonker -jonke -jolivette -joles -joas -jividen -jewel -jeffus -jeanty -jarvi -jardon -janvier -janosko -janoski -janiszewski -janish -janek -iwanski -iuliano -isabella -irle -ingmire -imber -ijames -iiams -ihrig -ichikawa -hynum -hutzel -hutts -huskin -husak -hurndon -huntsinger -humm -hulette -huitron -huguenin -hugg -hugee -huelskamp -huch -howen -hovanec -hoston -hostettler -horsfall -horodyski -holzhauer -hollimon -hollender -hogarth -hoffelmeyer -histand -hissem -hisel -hirayama -hinegardner -hinde -hinchcliffe -hiltbrand -hilsinger -hillstrom -hiley -hickenbottom -hickam -hibley -heying -hewson -hetland -hersch -herlong -herda -henzel -henshall -hendler -hence -helson -helfen -heinbach -heikkila -heggs -hefferon -hebard -heathcote -hearl -heaberlin -hauth -hauschild -haughney -hauch -hattori -haste -hasley -hartpence -harroun -harrier -harelson -hardgrove -hardel -hansbrough -handsome -handshoe -handly -haluska -hally -halling -halfhill -halferty -hakanson -haist -hairgrove -hahner -hagg -hafele -haaland -guttierez -gutknecht -gunnarson -gunlock -gummersheimer -gullatte -guity -guilmette -guhl -guenette -guardino -groshong -grober -gripp -grillot -grilli -greulich -gretzinger -greenwaldt -graven -grassman -granberg -graeser -graeff -graef -grabow -grabau -gotchy -goswick -gosa -gordineer -gorczyca -goodchild -golz -gollihue -goldwire -goldbach -goffredo -glassburn -glaeser -gillilan -gigante -giere -gieger -gidcumb -giarrusso -giannelli -gettle -gesualdi -geschke -gerwig -gervase -geoffrion -gentilcore -genther -gemes -gemberling -gelles -geitz -geeslin -gedney -gebauer -gaye -gawron -gavia -gautney -gaustad -gasmen -gargus -ganske -ganger -galvis -gallinger -gallichio -galletta -gaede -gadlin -gaby -gabrielsen -gaboriault -furlan -furgerson -fujioka -fugett -fuehrer -frisco -frint -frigon -frevert -frautschi -fraker -fradette -foulkes -forslund -forni -foo -fontenette -fones -folz -folmer -follman -folkman -flourney -flickner -flemmings -fleischacker -flander -flament -fithian -fister -fiorello -fiorelli -fioravanti -fieck -ficke -fiallos -fiacco -feuer -ferrington -fernholz -feria -fergurson -feick -febles -favila -faulkingham -fath -farnam -falter -fakhouri -fairhurst -failing -fahs -eva -estrello -essick -espree -esmond -eskelson -escue -escatel -erebia -epperley -epler -enyart -engelbert -enderson -emmitt -emch -elisondo -eli -elford -el -ekman -eick -eichmann -ehrich -ehlen -edwardson -edley -edghill -edel -eastes -easterbrooks -eagleson -eagen -eade -dyle -dutkiewicz -dunnagan -duncil -duling -drumgoole -droney -dreyfus -dragan -dowty -doscher -dornan -doremus -doogan -donaho -donahey -dombkowski -dolton -dolen -dobratz -diveley -dittemore -ditsch -disque -dishmon -disch -dirickson -dippolito -dimuccio -dilger -diefenderfer -dicola -diblasio -dibello -devan -dettmer -deschner -desbiens -derusha -denkins -demonbreun -demchak -delucchi -delprete -deloy -deliz -deline -delap -deiter -deignan -degiacomo -degaetano -defusco -dede -deboard -debiase -deaville -deadwyler -davanzo -daughton -darter -darrin -danser -dandrade -dando -dampeer -dalziel -dalen -dain -dai -dague -czekanski -cutwright -cutliff -curle -cuozzo -cunnington -cunning -cunnigham -cumings -crowston -croak -crittle -crispell -crisostomo -crear -creach -craigue -crabbs -cozzi -cozza -coxe -cowsert -coviello -couse -coull -cottier -costagliola -corra -corpening -cormany -corless -corkern -conteh -conquest -conkey -cones -conditt -conaty -colomb -collura -colledge -colins -colgate -coleson -colemon -coins -coffland -coccia -coast -clougherty -clewell -cleckley -cleaveland -clarno -clamp -civils -cillo -cifelli -ciesluk -chum -chui -christison -christiana -chowning -chouteau -choung -childres -cherrington -chenette -cheeves -cheairs -chaddock -cernoch -cerino -cazier -cathy -castel -casselberry -caserta -carvey -carton -cart -carry -carris -carrie -carmant -cariello -cardarelli -caras -caracciolo -capitano -cantoni -cantave -cancio -campillo -cam -callens -caldero -calamia -cahee -cahan -cahalan -cabanilla -cabal -bywater -bynes -byassee -butkus -busker -bushby -busack -burtis -burrola -buroker -burnias -burn -burlock -burham -burak -bulla -buffin -buffa -buening -budney -buchannan -buchalter -bua -brule -brugler -broxson -broun -brosh -brissey -brisby -brinlee -brinkmeyer -brimley -brickell -breth -breger -brees -brank -braker -bozak -bowlds -bowersock -bousman -boushie -botz -bordwell -bonkowski -bonine -bonifay -bonesteel -boldin -bohringer -bohlander -boecker -bocook -bocock -boblett -bobbett -boas -boarman -bleser -blazejewski -blaustein -blausey -blancarte -blaize -blackson -blacketer -blackard -bisch -birchett -billa -bilder -bierner -bienvenu -bielinski -bialas -biagini -beynon -beyl -bettini -bethany -betcher -bessent -beshara -besch -bernd -bergemann -bergeaux -berdan -bens -benedicto -bendall -beltron -beltram -bellville -beisch -behney -beemer -beechler -beckum -becks -batzer -batte -bastida -bassette -basley -base -bartosh -bartolone -barraclough -barnick -barket -barkdoll -baringer -barges -barella -barbian -barbati -bannan -banderas -balles -baldo -balasubramani -bala -baig -bahn -bachmeier -babyak -baas -baars -ayuso -axt -avinger -avella -ausbrooks -aull -augello -atkeson -atkerson -atherley -athan -assad -asebedo -arrison -armon -armfield -armbrust -arlington -arkin -archambeau -antonellis -angotti -andy -amorose -amini -amborn -amano -aluarez -alma -allgaier -allegood -ales -alen -aldama -albertine -aki -aird -ahsing -ahmann -aguado -agostino -agostinelli -agnes -adwell -adsit -adelstein -ade -actis -acierno -achee -abbs -abbitt -zwagerman -zuercher -zinno -zettler -zeff -zavalza -zaugg -zarzycki -zappulla -zanotti -zachman -zacher -yundt -yslas -younes -yontz -yglesias -yeske -yellow -yeargin -yauger -yamane -xang -wylam -wrobleski -wratchford -worker -woodlee -wolsey -wolfinbarger -wohlenhaus -wittler -wittenmyer -witkop -wishman -wintz -winkelmann -windus -winborn -wims -wiltrout -wilshire -willmott -williston -wilemon -wilbourne -wiedyk -widmann -wickland -wickes -wichert -whitsell -whisenand -whidby -wetz -westmeyer -wertheim -wernert -werle -werkheiser -weng -weldin -weissenborn -weingard -weinfeld -weihl -weightman -weichel -wehrheim -wegrzyn -wegmann -wearing -waszak -wankum -wangler -walthour -waltermire -walstad -waldren -walbert -walawender -wahlund -wahlert -wahlers -wach -vuncannon -vroom -vredenburgh -vonk -vollmar -voisinet -vlahos -viscardi -vires -vipperman -violante -vidro -vessey -vesper -veron -vergari -verbeck -venturino -velastegui -vegter -varas -vanwey -vanvranken -vanvalkenbur -vanorsdale -vanoli -vanochten -vanier -vanevery -vane -vanduser -vandersteen -vandell -vandall -vallot -vallon -vallez -vallely -vadenais -uthe -usery -unga -ultsch -ullom -tyminski -twogood -tursi -turay -tungate -truxillo -trulock -trovato -troise -tripi -trinks -trimboli -trickel -trezise -trefry -treen -trebilcock -travieso -trachtenberg -touhey -tougas -tortorella -tormey -torelli -torborg -toran -tomek -tomassi -tollerson -tolden -toda -tobon -tjelmeland -titmus -tilbury -tietje -thurner -thum -thrope -thornbrough -thibaudeau -thackeray -tesoro -territo -ternes -teich -tecson -teater -teagarden -tatsch -tarallo -tapanes -tanberg -tamm -sylvis -swenor -swedlund -swagger -sutfin -sura -sundt -sundin -summerson -sumatzkuku -sultemeier -sulivan -suggitt -suermann -sturkie -sturgess -stumph -stuemke -struckhoff -strose -stroder -stride -stricklen -strick -streib -strei -strawther -stratis -strahm -stortz -storrer -storino -stohler -stohl -stockel -stinnette -stile -stieber -stensland -steffenhagen -stefanowicz -steever -steagall -statum -stapley -stanish -standiford -standen -stamos -stahlecker -stadtler -spratley -spraker -sposito -spickard -spehar -spees -spearing -spangle -spallone -sox -soulard -sorel -sora -sopko -sood -sonnen -som -solly -solesbee -soldano -sobey -sobczyk -snedegar -sneddon -smolinski -smolik -slota -sloman -sleigh -slavick -skorupski -skolnik -skirvin -skeels -skains -skahan -skaar -siwiec -siverly -siver -sivak -sirk -sinton -sinor -sincell -silberstein -sieminski -sidelinger -shurman -shunnarah -shirer -shidler -sherlin -shepperson -shemanski -sharum -shartrand -shapard -shanafelt -shamp -shader -shackelton -seyer -seroka -sernas -seright -serano -sengupta -semper -selinger -seith -seidler -seehusen -seefried -seed -scovell -scorzelli -sconiers -schwind -schwichtenber -schwerin -schwenke -schwaderer -schussler -schuneman -schumpert -schultheiss -schroll -schroepfer -schroeden -schrimpf -schook -schoof -schomburg -schoenfeldt -schoener -schnoor -schmick -schlereth -schindele -schildt -schildknecht -schemmel -scharfenberg -schanno -schane -schaer -schad -scearce -scardino -sawka -sawinski -savoca -savery -saults -saucer -sarpy -saris -sardinha -sarafin -sankar -sanjurjo -sanderfer -sanagustin -samudio -sammartino -samas -salz -salmen -sallie -salkeld -salamon -sakurai -sakoda -safley -sada -sachse -ryden -ryback -russow -russey -ruprecht -rumple -ruffini -rudzinski -rudel -rudden -rud -rovero -routledge -roussin -rousse -rouser -rougeau -rosie -rosica -romey -romaniello -rolfs -rogoff -rogne -rodriquz -rodrequez -rodin -rocray -rocke -robbin -riviere -rivette -riske -risenhoover -rindfleisch -rinaudo -rimbey -riha -righi -ridner -ridling -riden -rhue -reyome -reynoldson -reusch -rensing -rensch -rennels -renderos -reininger -reiners -reigel -rehmer -regier -reff -reef -redlin -recchia -reaume -reagor -rayne -rawe -rattigan -raska -rashed -ranta -ranft -randlett -randa -ramiez -ramella -rallis -rajan -raisbeck -raimondo -raible -ragone -rackliffe -quirino -quiring -quero -quaife -pyke -purugganan -pursifull -purkett -purdon -punches -pun -pulos -pulling -puccia -provance -propper -preis -prehn -prata -prasek -pranger -pradier -portor -portley -porte -popiel -popescu -pomales -polowy -pollett -politis -polit -poley -pol -pohler -poggio -poet -podolak -poag -plymel -ploeger -planty -piskura -pirrone -pirro -piroso -pinsky -pile -pilant -pickerill -piccolomini -picart -piascik -phann -petruzzelli -petosa -persson -perretta -perkowski -perilli -percifield -perault -peppel -pember -pelotte -pelcher -peixoto -pehl -peatross -pearlstein -peacher -payden -paya -pawelek -pavey -pauda -pathak -parrillo -parness -parlee -paoli -pannebaker -palomar -palo -palmberg -paganelli -paffrath -padovano -padden -pachucki -over -ovando -othman -osowski -osler -osika -orsburn -orlowsky -oregel -oppelt -opfer -opdyke -onell -omer -olivos -okumura -okoro -ogas -offer -oelschlaeger -odette -oder -ocanas -obrion -obarr -oas -oare -nyhus -nyenhuis -nunnelley -nunamaker -nuckels -noyd -nowlan -novakovich -noteboom -norviel -nortz -norment -norland -nolt -nolie -nixson -nitka -nissley -nishiyama -niland -niewiadomski -niemeier -nieland -nickey -nicholsen -newark -neugent -neto -nerren -nein -neikirk -neigh -nedrow -neave -nazaire -navaro -navalta -nasworthy -nasif -nani -nalepa -nakao -nakai -nadolny -myklebust -mussel -murthy -muratore -murat -mundie -mulverhill -muilenburg -muetzel -mudra -mudgett -mrozinski -moura -mottinger -morson -moretto -morentin -mordan -mooreland -mooers -monts -montone -montondo -montiero -monserrate -monie -monat -monares -mollo -mollet -molacek -mokry -mohrmann -mohabir -mogavero -moes -moceri -miyoshi -mitzner -misra -mis -mirr -mira -minish -minge -minckler -milroy -mille -mileski -milanesi -miko -mihok -mihalik -mieczkowski -messerli -meskill -mesenbrink -merton -merryweather -merkl -menser -menner -menk -menden -menapace -melbourne -mekus -meinzer -mein -meers -mctigue -mcquitty -mcpheron -mcmurdie -mcleary -mclafferty -mckinzy -mckibbin -mckethan -mcintee -mcgurl -mceachran -mcdowall -mcdermitt -mccuaig -mccreedy -mccoskey -mcclosky -mcclintick -mccleese -mccanless -mazzucco -mazzocco -mazurkiewicz -mazariego -mayhorn -maxcy -mavity -mauzey -maulding -matuszewski -mattsson -mattke -matsushita -matsuno -matsko -matkin -mathur -mates -masterman -massett -massart -massari -mashni -martella -marren -margotta -marder -marczak -maran -maradiaga -manwarren -mantini -manter -mantelli -manso -mangone -manfredonia -malden -malboeuf -malanga -makara -maison -maisano -mairs -mailhiot -magri -magic -madron -madole -mackall -macduff -macartney -lynds -lusane -luffman -lua -louth -loughmiller -lougheed -lotspeich -lorenzi -loree -loosli -looker -longe -longanecker -lonero -lohmeyer -loeza -lobstein -lobner -lober -littman -litalien -lippe -lints -linear -lijewski -ligas -liebert -liebermann -liberati -lezcano -levinthal -lessor -less -lesieur -lenning -lengel -len -lempke -lemp -lemar -leitzke -leinweber -legrone -lege -leder -lawnicki -lauth -laun -laughary -latin -lassley -lashway -larrivee -largen -lare -lanouette -lanno -langille -langen -landing -lana -lamonte -lalin -lala -laible -lafratta -laforte -lacuesta -lacer -labore -laboe -labeau -kwasniewski -kunselman -kuhr -kuchler -kuc -krugman -kruckenberg -krotzer -kroemer -krist -krigbaum -kreke -kreisman -kreisler -kreft -krasnow -kras -krag -kouyate -kough -kotz -kostura -korner -kornblum -korczynski -koppa -kopczyk -konz -komorowski -kollen -kolander -koepnick -koehne -kochis -knoch -knippers -knaebel -klipp -klinedinst -klimczyk -klier -klement -klaphake -kisler -kinzie -kines -kindley -kimple -kimm -kimbel -kilker -kilborn -kibbey -khong -ketchie -kerbow -kennemore -kennebeck -kenneally -kenndy -kenmore -kemnitz -kemler -kemery -kelnhofer -kellstrom -kellis -kellams -keiter -keirstead -keeny -keelin -keefauver -keams -kautzman -kaus -katayama -kasson -kassim -kasparian -kase -karwoski -kapuscinski -kaneko -kamerling -kamada -kalka -kalar -kakacek -kaczmarczyk -jurica -junes -journell -jolliffe -johnsey -joel -jindra -jimenz -jette -jesperson -jerido -jenrette -jencks -jech -jayroe -jayo -jaye -javens -jaskot -jaros -jaquet -janowiak -jame -jaegers -jackel -izumi -ith -italia -irelan -ion -inzunza -imoto -imme -iglehart -iannone -iannacone -huyler -hussaini -hurlock -hurlbutt -huprich -humphry -hulslander -huelsman -hudelson -hudecek -hsia -hreha -hoyland -howk -housholder -housden -houff -horkey -honan -homme -holtzberg -hollyfield -hollings -hollenbaugh -hokenson -hogrefe -hogland -hoel -hodgkin -hochhalter -hjelle -hittson -hinderman -hinchliffe -hime -hilyer -hilby -hibshman -heydt -hewell -heward -hetu -hestand -heslep -herridge -herner -hernande -hermandez -hermance -herbold -heon -henthorne -henion -henao -heming -helmkamp -hellberg -heidgerken -heichel -hehl -hegedus -hefty -heckathorne -hearron -haymer -haycook -havlicek -hausladen -haseman -hartsook -hartog -harns -harne -harmann -haren -hanserd -hanners -hanekamp -hamra -hamley -hamelin -hamblet -hakimi -hagle -hagin -haehn -haeck -hackleman -haacke -gulan -guirand -guiles -guggemos -guerrieri -guerreiro -guereca -gudiel -guccione -gubler -gruenwald -gritz -grieser -grewe -grenon -gregersen -grefe -greener -grech -grecco -gravette -grassia -granholm -graner -grandi -grahan -gradowski -gradney -graczyk -gouthier -gottschall -goracke -gootee -goodknight -goodine -gonzalea -gonterman -gonalez -gomm -goleman -goldtooth -goldstone -goldey -golan -goes -goen -goeller -goel -goecke -godek -goan -glunz -gloyd -glodowski -glinski -glawe -girod -girdley -giovanni -gindi -gillings -gildner -giger -giesbrecht -gierke -gier -giboney -giaquinto -giannakopoulo -giaimo -giaccio -giacalone -gessel -gerould -gerlt -gerhold -geralds -genson -genereux -gellatly -geigel -gehrig -gehle -geerdes -geagan -gawel -gavina -gauss -gatwood -gathman -gaster -garske -garratt -garms -garis -gansburg -gammell -gambale -gamba -galimore -gadway -gadoury -furrer -furnish -furino -fullard -fukui -fuhrer -fryou -friesner -friedli -friedl -friedberg -freyermuth -fremin -fredell -fraze -franken -fought -foth -fote -fortini -fornea -formanek -forker -forgette -folan -foister -foglesong -flinck -flewellen -flaten -flaig -fitgerald -fischels -firman -finstad -finkelman -finister -finder -fina -fettes -fetterhoff -ferriter -ferch -fennessy -feltus -feltes -feinman -farve -farry -farrall -farag -falzarano -falck -falanga -fakhoury -faire -fairbrother -fagley -faggins -facteau -ewer -ewbank -evola -evener -eustis -eugenio -estwick -estel -essa -espinola -escutia -eschmann -erpelding -ernsberger -erling -entz -enrique -engelhart -enbody -emick -elsinger -ellinwood -ellingsen -ellicott -elkind -eisinger -eisenbeisz -eischen -eimer -eigner -eichhorst -ehmke -egleston -eggett -ege -efurd -edgeworth -eckels -ebey -eberling -eagleton -dwiggins -dweck -dunnings -dunnavant -dumler -duman -dugue -duerksen -dudeck -dreisbach -drawdy -drawbaugh -draine -draggoo -dowse -dovel -doughton -douds -doubrava -dort -dorshorst -dornier -doolen -donavan -dominque -dominion -dominik -domingez -dome -dom -dolder -dold -dobies -dk -diskin -disano -dirden -diponio -dipirro -dimock -diltz -dillabough -diley -dikes -digges -digerolamo -diel -dicker -dicharry -dicecco -dibartolomeo -diamant -dewire -devone -dessecker -dertinger -derousselle -derk -depauw -depalo -denherder -demeyer -demetro -demastus -delvillar -deloye -delosrios -delgreco -delarge -delangel -dejongh -deitsch -degiorgio -degidio -defreese -defoe -decambra -debenedetto -deaderick -daza -dauzat -daughenbaugh -dato -dass -darwish -dantuono -danton -dammeyer -daloia -daleo -dagg -dacey -curts -cuny -cunneen -culverhouse -cuervo -cucinella -cubit -crumm -crudo -crowford -crout -crotteau -crossfield -crooke -crom -critz -cristaldi -crickmore -cribbin -cremeens -crayne -cradduck -couvertier -cottam -cossio -correy -cordrey -coplon -copass -coone -coody -contois -consla -connelley -connard -congo -congleton -condry -conception -coltey -colindres -colgrove -colfer -colasurdo -cocker -cochell -cobbin -clouthier -closs -cloonan -clizbe -clennon -clayburn -claybourn -clausell -clasby -clagett -ciskowski -cirrincione -cinque -cinelli -cimaglia -ciaburri -christiani -christeson -chladek -chizmar -chinnici -chiarella -chevrier -cheves -chernow -cheong -chelton -charlette -chanin -cham -chaligoj -celestino -cayce -cavey -cavaretta -caughron -catmull -catapano -casio -cashaw -carullo -carualho -carthon -cartelli -carruba -carrere -carolus -carmine -carlstrom -carli -carfora -carello -carbary -car -caplette -cannell -cancilla -campell -cammarota -camilo -camejo -camarata -caisse -cacioppo -cabbagestalk -cabatu -cabanas -byles -buxbaum -butland -butch -burrington -burnsed -burningham -burlingham -burgy -buitrago -buffett -bueti -buehring -buday -bucks -bucknell -buchbinder -bucey -bruster -brunston -brumby -bruins -brouillet -brosious -broomes -brodin -broddy -brochard -britsch -britcher -brierley -brezina -bressi -bressette -breslow -brenden -breier -brei -braymer -brasuell -brash -branscomb -branin -brandley -brahler -bracht -bracamontes -brabson -boyne -boxell -bowery -bovard -boutelle -boulette -bottini -botkins -bosen -boscia -boscarino -borich -bores -boreman -bordoy -bordley -bordenet -boquet -boocks -bolner -boissy -boilard -bohnen -bohall -boening -boccia -boccella -bobe -blyth -blitz -blew -blacksmith -biviano -bitto -bisel -binstock -bines -billiter -bigsby -bighorse -bielawski -bickmore -bettin -bettenhausen -besson -beseau -berton -berroa -berntson -bernas -berisford -berhow -bergsma -benyo -benyard -bente -bennion -benko -belsky -bellavance -belasco -belardo -beidler -behring -begnaud -bega -befort -beek -bedore -beddard -becknell -beardslee -beardall -beagan -bayly -bauza -bautz -bausman -baumler -batterson -battenfield -bassford -basse -basemore -baruch -bartholf -bars -barman -baray -barabas -banghart -banez -balsam -ballester -ballagh -baldock -bagnoli -bagheri -bacus -bacho -baccam -axson -averhart -aver -ave -austill -auberry -athans -atcitty -atay -astarita -ascolese -artzer -arts -arrasmith -argenbright -aresco -arb -aranjo -appleyard -appenzeller -app -apilado -antonetti -antis -annett -annas -angwin -andris -andries -andreozzi -ando -andis -anderegg -anastasia -amyot -aminov -amelung -amelio -amason -alviar -allendorf -allday -alice -aldredge -alcivar -alaya -alapai -airington -aina -ailor -ahrns -ahmadi -agresta -agent -affolter -aeschlimann -adney -aderhold -adell -adachi -ackiss -aben -abdelhamid -abar -aase -zorilla -zordan -zollman -zoch -zipfel -zimmerle -zike -ziel -zhong -zens -zelada -zaman -zahner -zadora -zachar -zaborowski -zabinski -yzquierdo -yoshizawa -yori -yielding -yerton -yehl -yeargain -yeakley -yamaoka -yagle -yablonski -wynia -wyne -wyers -wrzesinski -wrye -wriston -woolums -woolen -woodlock -woodle -wonser -wombacher -wollschlager -wollen -wolfley -wolfer -wisse -wisell -wirsing -winstanley -winsley -winiecki -winiarski -winge -winesett -windell -winberry -willyard -willemsen -wilkosz -wilensky -wikle -wiford -wienke -wieneke -wiederhold -wiebold -widick -wickenhauser -whitrock -whisner -whinery -wherley -whedbee -wheadon -whary -wessling -wessells -wenninger -wendroth -wende -wellard -weirick -weinkauf -wehrman -weech -weathersbee -waterford -warton -warncke -warm -wardrip -walstrom -walks -walkowski -walcutt -waight -wai -wagman -waggett -wadford -vowles -vormwald -vondran -vohs -vitt -vitalo -viser -vinas -villena -villaneuva -villafranca -villaflor -vilain -vigilante -vicory -viana -vian -vial -verucchi -verra -venzke -venske -veley -veile -veeder -vaske -vasconez -vargason -varble -vanwert -vantol -vanscooter -vanmetre -vanmaanen -vanhise -vanetta -vaneaton -vandyk -vandriel -vandorp -vandewater -vandervelden -vanderstelt -vanderhoef -vanderbeck -vanbibber -vanalstine -vanacore -valdespino -vaill -vailes -vagliardo -ursini -urrea -urive -uriegas -umphress -ucci -uballe -tyrone -tynon -twiner -tutton -tudela -tuazon -troisi -tripplett -trias -trescott -treichel -tredo -tranter -tozer -toxey -tortorici -tornow -topolski -topia -topel -topalian -tonne -tondre -tola -toepke -tiu -tisdell -tiscareno -thornborrow -thomison -thilges -theuret -therien -thang -thagard -thacher -texter -terzo -teresa -tep -tenpenny -tempesta -teetz -teaff -tavella -taussig -tatton -tasler -tarrence -tardie -tarazon -tantillo -tanney -tankson -tangen -tamburo -takes -tabone -szilagyi -syphers -swistak -swiatkowski -sweigert -swayzer -swapp -svehla -sutphen -sutch -susa -surma -surls -sundermeyer -sundeen -sulek -suite -sughrue -sudol -sturms -stupar -stum -stuckman -strole -strohman -streed -strebeck -strausser -strassel -stpaul -storts -storr -stommes -stmary -stjulien -stika -stiggers -sthill -stevick -sterman -stephany -stepanek -stemler -stelman -stelmack -steinkamp -steinbock -stcroix -stcharles -staudinger -starry -stanly -stallsworth -stalley -stains -srock -spritzer -spracklin -spinuzzi -spidell -spice -speyrer -sperbeck -spendlove -speedy -speckman -spargur -spangenberg -spaid -sowle -soulier -sotolongo -sostre -sorey -sonier -somogyi -somera -solo -soldo -sofia -soderholm -snoots -snooks -snoke -snodderly -snide -snee -smoke -smithhart -smillie -smay -smallman -sliwinski -slentz -sledd -slager -skogen -skog -skarda -skalicky -siwek -sitterson -sisti -sissel -sis -sinopoli -similton -simila -simenson -silvertooth -silos -siggins -sieler -siburt -sianez -shurley -shular -shuecraft -shreeves -shon -shollenberger -shoen -shishido -shipps -shipes -shinall -sherfield -shawe -sharrett -sharrard -shankman -shan -sham -sessum -serviss -servello -serice -serda -semler -semenza -selmon -sellen -seley -seidner -seib -sehgal -seelbach -sedivy -sebren -sebo -seanez -seagroves -seagren -seagrave -seabron -schwertner -schwegel -schwarzer -schrunk -schriefer -schreder -schrank -schopp -schonfeld -schoenwetter -schnall -schnackenberg -schnack -schmutzler -schmierer -schmidgall -schlup -schloemer -schlitt -schermann -scherff -schellenberg -schain -schaedler -schabel -scaccia -saye -saxman -saurez -sasseen -sasnett -sas -sarti -sarra -sarber -saran -santoy -santeramo -sansoucy -sando -sandles -sandburg -sandau -samra -samaha -salon -salizar -salam -saindon -sagaser -saeteun -sadusky -sackman -sabater -saas -ruthven -ruszkowski -rusche -rumpf -ruhter -ruhenkamp -rufo -rudge -ruddle -rowlee -rowand -routhier -rougeot -rotramel -rotan -roswell -rosten -rosillo -rookard -roode -rongstad -rollie -roider -roffe -roettger -rodick -rochez -rochat -roads -rivkin -rivadeneira -riston -risso -rise -rinderknecht -riis -riggsbee -rifkin -rieker -riegle -riedy -richwine -richmon -ricciuti -riccardo -ricardson -rhew -revoir -revier -remsberg -remiszewski -rembold -rella -reinken -reiland -reidel -reichart -rehak -redway -rednour -redifer -redgate -redenbaugh -redburn -reap -readus -raybuck -rauhuff -rauda -ratte -rathje -rappley -rands -ramseyer -ramseur -ramsdale -ramo -ramariz -raitz -raisch -rainone -rahr -ragasa -rafalski -radunz -quenzer -queja -queenan -pyun -puz -putzier -puskas -purrington -puri -punt -pullar -pruse -pring -primeau -prevette -preuett -presto -prestage -pownell -pownall -potthoff -potratz -poth -poter -posthuma -posen -porritt -popkin -poormon -polidoro -poles -polcyn -pokora -poer -pluviose -plock -pleva -placke -pioli -pingleton -pinchback -pinch -pieretti -piccone -piatkowski -philley -phibbs -phay -phagan -pfund -peyer -pettersen -petter -petrucelli -petropoulos -petras -petix -pester -perks -pepperman -pennick -penado -pelot -pelis -peeden -pechon -peal -pazmino -patchin -pasierb -parran -parilla -pardy -parcells -paragas -paradee -papin -panko -pangrazio -pangelinan -pandya -pancheri -panas -palmiter -pallares -palinkas -palek -pagliaro -packham -pacitti -ozier -overbaugh -oursler -ouimette -otteson -otsuka -othon -osmundson -oroz -orgill -ordeneaux -orama -oppy -opheim -onkst -oltmanns -olstad -olofson -ollivier -olen -olejniczak -okura -okuna -okey -ohrt -oharra -oguendo -ogier -offermann -oetzel -oechsle -odor -odoherty -oddi -ockerman -occhiogrosso -obryon -obremski -nyreen -nylund -nylen -nyholm -nuon -nuanes -norrick -noris -nordell -norbury -nooner -nono -nomura -nole -nolden -nola -nofsinger -nocito -nobel -niedbala -niebergall -nicolini -nicole -nicklaus -nevils -neuburger -nemerofsky -nemecek -nazareno -nastri -nast -nancy -nagorski -myre -muzzey -mutton -mutschler -muther -musumeci -muranaka -muramoto -murad -murach -muns -munno -muncrief -mugrage -muecke -mozer -moyet -mowles -mottern -mosman -mosconi -morine -morge -moravec -morad -moneymaker -mones -moncur -monarez -molzahn -moglia -moesch -mody -modisett -mitnick -mithcell -mitchiner -mistry -misercola -mirabile -minvielle -mino -minkler -minifield -minichiello -mindell -minasian -milteer -millwee -millstein -millien -mikrut -mihaly -miggins -michard -mezo -metzner -mesquita -mervin -merriwether -merk -merfeld -mercik -mercadante -mention -menna -mendizabal -mender -members -melusky -melquist -mellado -meler -melendes -mekeel -meiggs -megginson -meck -mcwherter -mcwayne -mcsparren -mcrea -mcneff -mcnease -mcmurrin -mckeag -mchughes -mcguiness -mcgilton -mcelreath -mcelhone -mcelhenney -mceldowney -mccurtain -mccure -mccosker -mccory -mccormic -mccline -mccleave -mcclatchey -mccarney -mccanse -mcallen -mazzie -mazin -mazanec -mayette -mautz -mauser -maun -mattas -mathurin -mathiesen -massmann -masri -masias -mascolo -mascetti -mascagni -marzolf -maruska -martain -marta -marszalek -marolf -marmas -marlor -markwood -marines -marinero -marier -marich -marcom -marciante -marchman -marchio -marbach -manzone -mantey -mannina -manhardt -manfred -manaois -malmgren -mallonee -mallin -mallary -malette -makinson -makins -makarewicz -mainwaring -maida -maiava -magro -magouyrk -magett -maeder -madyun -maduena -maden -madeira -macnamara -mackins -mackel -macinnes -macia -macgowan -lyssy -lyerly -lyalls -lutter -lunney -luksa -ludeman -lucidi -lucci -lowden -lovier -loughridge -losch -lory -lorson -lorenzano -lorden -lorber -lopardo -loosier -loomer -longsdorf -longchamps -loncar -loker -logwood -loeffelholz -lockmiller -livoti -linford -linenberger -lindloff -lindenbaum -limoges -lilla -liley -lighthill -lightbourne -lieske -leza -levels -levandoski -leuck -lepere -leonhart -lenon -lemma -lemler -leising -leinonen -lehtinen -lehan -leetch -leeming -ledyard -ledwith -ledingham -leclere -leck -lebert -leandry -lazzell -layo -laye -laxen -lawther -lawn -lawerance -lavoy -lavertu -laverde -lauren -latouche -latner -lathen -last -laskin -lashbaugh -lascala -larroque -larick -laraia -laplume -lanzilotta -lannom -landrigan -landolt -landess -lancia -lamkins -lalla -lalk -lakeman -lakatos -laib -lahay -lagrave -lagerquist -lafoy -lafleche -lader -labrada -kwiecinski -kutner -kunshier -kulakowski -kujak -kuehnle -kubisiak -krzyminski -krugh -krois -kritikos -krill -kriener -krewson -kretzschmar -kretz -kresse -kreiter -kreischer -krebel -kraut -krans -kraling -krahenbuhl -kouns -kotson -kossow -kopriva -konkle -kolter -kolk -kolich -kohner -koeppen -koenigs -kock -kochanski -kobus -knowling -knouff -knoerzer -knippel -kloberdanz -kleinert -klarich -klaassen -kizzie -kisamore -kirn -kiraly -kipps -kinson -kinneman -kington -kine -kimbriel -kille -kick -kibodeaux -khamvongsa -keylon -kever -keser -kertz -kercheval -kenneth -kendrix -kendle -ken -kempt -kemple -keesey -keats -keatley -kazmierski -kazda -kazarian -kawashima -katsch -kasun -kassner -kassem -kasperski -kasinger -kaschak -karels -kantola -kana -kamai -kalthoff -kalla -kalani -kahrs -kahanek -kacher -jurasek -juniper -jungels -jukes -juelfs -judice -juda -ju -josselyn -jonsson -jonak -joens -jobson -jegede -jee -jeanjacques -jaworowski -jaspers -jannsen -janner -jankowiak -jank -janiak -jackowski -jacklin -jabbour -iyer -iveson -ivan -isner -iniquez -ingwerson -ingber -ina -imbrogno -ille -ikehara -iannelli -hyson -huxford -huseth -hurns -hurney -hurles -hunnings -humbarger -hulan -huisinga -hughett -hughen -hudler -hubiak -hricko -how -hoversten -hottel -hosaka -horsch -hormann -hordge -honzell -homburg -holten -holme -hollopeter -hollinsworth -hollibaugh -holberg -hohmann -hoenstine -hodell -hodde -hobert -hives -hiter -hirko -hipolito -hinzmann -hinrichsen -hinger -hincks -hilz -hilborn -highley -higashi -hieatt -hicken -heverly -hesch -hervert -hershkowitz -herreras -hermanns -herget -henriguez -hennon -hengel -helmlinger -helmig -helen -heldman -heizer -heinitz -heifner -heidorn -heglin -heffler -hebner -heathman -heaslip -hazlip -haymes -hayase -hawver -haw -havermale -havas -hauber -hashim -hasenauer -harvel -hartney -hartel -harsha -harpine -harkrider -harkin -harer -harclerode -hanzely -hanni -hannagan -hampel -hammerschmidt -hamar -hallums -hallin -hainline -haid -haggart -hafen -haer -hadiaris -hadad -hackford -habeeb -guymon -guttery -gunnett -gull -guillette -guiliano -guilbeaux -guiher -guignard -guerry -gude -gucman -guadian -grzybowski -grzelak -grussendorf -grumet -gruenhagen -grudzinski -ground -grossmann -grof -grisso -grisanti -griffitts -griesbaum -grella -gregston -graveline -grandusky -grandinetti -gramm -goynes -gowing -goudie -gosman -gort -gorsline -goralski -goodstein -goodroe -goodlin -goodheart -goodhart -gonzelez -gonthier -goldsworthy -goldade -goettel -goerlitz -goepfert -goehner -goben -gobeille -glock -gliem -gleich -glasson -glascoe -gladwell -giusto -girdner -gipple -giller -giesing -giammona -ghormley -germon -geringer -gergely -gerberich -gepner -gens -genier -gemme -gelsinger -geigle -gebbia -gayner -gavitt -gatrell -gastineau -gasiewski -gascoigne -garro -garin -ganong -ganga -galpin -gallus -galizia -gajda -gahm -gagen -gaffigan -furno -furnia -furgason -fronczak -frishman -friess -frierdich -fresh -freestone -franta -frankovich -fors -forres -forrer -floris -florido -floria -flis -flicek -flens -flegal -flamenco -finkler -finkenbinder -finefrock -filter -filpo -filion -fierman -fieldman -ferreyra -fernendez -fergeson -fera -fencil -feith -feight -federici -federer -fechtner -feagan -fausnaugh -faubert -fata -farman -farinella -fantauzzi -fanara -falso -falardeau -fagnani -fabro -excell -ewton -evey -everetts -eve -evarts -etherington -estremera -estis -estabrooks -essig -esplin -espenschied -ernzen -erich -eppes -eppard -entwisle -emmi -emison -elison -elguezabal -eledge -elbaz -eisler -eiden -eichorst -eichert -egle -eggler -eggimann -edey -eckerman -echelberger -ebbs -ebanks -dziak -dyche -dyce -dusch -duross -durley -durate -dunsworth -dumke -dulek -duhl -duggin -dufford -dudziak -ducrepin -dubree -dubre -dubie -dubas -droste -drisko -drewniak -doxtator -dowtin -downum -doubet -dottle -dosier -doshi -dorst -dorset -dornbusch -doren -donze -donica -domanski -domagala -dohse -doerner -doerfler -doble -dobkins -dilts -digiulio -digaetano -dietzel -diddle -dickel -dezarn -devoy -devoss -devonshire -devon -devilla -devere -deters -desvergnes -deshay -desena -deross -der -depedro -densley -demorest -demore -demora -demirjian -demerchant -dematteis -demateo -delgardo -delfavero -delaurentis -delamar -delacy -deitrich -deisher -degracia -degraaf -defries -defilippis -decoursey -debruin -debiasi -debar -dearden -dealy -dayhoff -davino -darvin -darrisaw -darbyshire -daquino -daprile -danial -danh -danahy -dalsanto -dallavalle -daine -dagel -dadamo -dacy -dacunha -dabadie -czyz -cutsinger -curney -cuppernell -cunliffe -cumby -cullop -cullinane -cugini -cudmore -cuda -cucuzza -cuch -crumby -crouser -crock -critton -critchley -cristy -cremona -cremar -crehan -creary -crasco -crall -crabbe -cozzolino -cozier -coyner -couvillier -counterman -coulthard -coudriet -cottom -corzo -cornutt -corkran -cords -corda -copelin -coonan -consolo -conrow -conran -connerton -conkwright -condren -comp -comly -comisky -colli -collet -colello -colbeck -colarusso -coiner -cohron -codere -cocks -cobia -cly -cluster -clure -clowser -clovis -clingenpeel -clenney -clendaniel -clemenson -cleere -cleckler -claybaugh -clason -cirullo -ciraulo -ciolek -ciampi -christopherse -christophe -chovanec -chopra -chol -chiem -chestnutt -chesterman -chernoff -chermak -chelette -checketts -charpia -charo -chargois -champman -challender -chafins -cerruto -celi -cea -cazenave -cay -cavaluzzi -cauthon -caudy -catino -caterina -catano -castell -cassaro -cassarino -carrano -carozza -carow -carmickle -carlyon -carlew -cardena -caputi -capley -capalbo -canseco -candella -canal -campton -camposano -calleros -calleja -callegari -calica -calarco -calais -caillier -cahue -cadenhead -cadenas -cabera -buzzo -busto -bussmann -busenbark -burzynski -bursley -bursell -burle -burkleo -burkette -burczyk -bumstead -bullett -buikema -buenaventura -buege -buechel -budreau -budhram -bucknam -brye -brushwood -brumbalow -brulotte -bruington -bruderer -browns -brougher -bromfield -broege -brodhead -brocklesby -broadie -brizuela -britz -brisendine -brilla -briggeman -brierton -bridgeford -breyfogle -brevig -breuninger -bresse -bresette -brelsford -breitbach -bread -brayley -braund -branscom -brando -brandner -brahm -braboy -brabble -bozman -boyte -boynes -boyken -bowell -bowan -boutet -bouse -boulet -boule -bottcher -bosquez -borrell -boria -bordes -borchard -bonson -bonino -bonas -bonamico -bolstad -bolser -bollis -bolich -bolf -boker -boileau -bohac -bogucki -bogren -boeger -bodziony -bodo -bodley -boback -blyther -blight -blenker -blazina -blase -blamer -blacknall -blackmond -bitz -biser -biscardi -binz -bilton -billotte -billafuerte -bigford -biegler -bibber -bhandari -beyersdorf -bevelle -bettendorf -bessard -bertsche -berne -berlinger -berish -beranek -bentson -bentsen -benskin -benoy -benoist -benitz -belongia -belmore -belka -belen -beitzel -beiter -beitel -behrns -beckworth -becka -beaudion -beary -beare -beames -beabout -beaber -bazzano -bazinet -baucum -batrez -baswell -bastos -bascomb -bartha -barstad -barrilleaux -barretto -barresi -barona -barkhurst -barke -bardales -barczak -barca -barash -banfill -bambino -balonek -balmes -ballon -balko -balestrieri -baldino -baldelli -baken -baiza -bahner -baek -badour -badman -badley -badia -backmon -bacich -bacca -ayscue -ayo -aynes -austen -ausiello -auringer -auiles -aspinwall -askwith -artiga -arroliga -arns -arman -arellanes -aracena -antwine -antuna -anselmi -ansel -annen -angelino -angeli -angarola -andrae -amparo -amodio -amie -ameen -alwine -alverio -altro -altobello -altemus -alquicira -ally -allphin -allemand -allam -alessio -akpan -akerman -aiona -aikman -agyeman -agredano -adamik -adamczak -acrey -achilles -acevado -abu -abreo -abrahamsen -abild -zwicker -zweig -zuvich -zumpano -zuluaga -zubek -zornes -zoglmann -ziminski -zimbelman -zhanel -zenor -zechman -zauner -zamarron -zaffino -yusuf -ytuarte -yoke -yett -yerkovich -yelder -yaw -yasuda -yapp -yankee -yaden -yackley -yaccarino -xia -wytch -wyre -wussow -worthing -wormwood -wormack -worlds -wordsworth -wordell -woodroof -woodington -woodhams -wooddell -wollner -wojtkowski -wojcicki -wogan -wlodarczyk -wixted -withington -withem -wisler -wirick -winterhalter -winski -winne -winemiller -wimett -wiltfong -willibrand -willes -wilkos -wilbon -wiktor -wiggers -wigg -wiegmann -wickliff -wiberg -whittler -whittenton -whitling -whitledge -whitherspoon -whiters -whitecotton -whitebird -wheary -wetherill -westmark -westaby -wertenberger -wentland -wenstrom -wenker -wellen -weier -wegleitner -wedekind -wawers -wassel -warehime -wank -wandersee -waltmon -waltersheid -walbridge -wakely -wakeham -wajda -waithe -waidelich -wahler -wahington -wagster -wadel -vuyovich -vuolo -vulich -vukovich -volmer -vollrath -vollbrecht -vogelgesang -voeller -vlach -vivar -vitullo -vitanza -visker -visalli -viray -vinning -viniard -villapando -villaman -vier -viar -viall -verstraete -vermilya -verdon -venn -velten -velis -vasey -vanoven -vanorder -vanlue -vanheel -vanderwoude -vanderheide -vandenheuvel -vandenbos -vandeberg -vandal -vanblarcom -vanaken -vanacker -vallian -valine -valent -vaine -vaile -vadner -uttech -urioste -urbanik -unrath -unnasch -underkofler -uehara -udy -tyrer -tyburski -twaddle -turntine -tunis -tullock -trunk -tropp -troilo -tritsch -triola -trigo -tribou -tribley -tri -trethewey -tress -trela -treharne -trefethen -trayler -trax -traut -trang -tranel -trager -traczyk -towsley -torrecillas -tornatore -tork -torivio -toriello -tooles -toodle -tomme -tolosa -tolen -toca -titterington -tipsword -tinklenberg -tim -tigney -tigert -thygerson -thurn -thur -threats -thorstad -thornberg -thoresen -thomaston -tholen -thicke -theiler -thebeau -theaux -thaker -tewani -teufel -tetley -terrebonne -terrano -terpening -telly -tela -teig -teichert -tegethoff -teele -tatar -tashjian -tarte -tanton -tanimoto -tamimi -tamas -talman -taal -szydlowski -szostak -swoyer -swerdlow -sweeden -sweda -swanke -swander -swackhammer -suyama -suriano -suri -surdam -suprenant -sundet -summerton -sult -suleiman -suffridge -suby -stych -studeny -stubbins -strupp -struckman -strief -strictland -stremcha -strehl -stramel -stoy -stoutamire -storozuk -stordahl -stopher -stolley -stolfi -stoeger -stockhausen -stjulian -stivanson -stinton -stinchfield -stigler -stieglitz -stgermaine -steuer -steuber -steuart -stepter -stepnowski -stepanian -steimer -stefanelli -stebner -stears -steans -stayner -staubin -statz -stasik -starn -starmer -stargel -stanzione -stankovich -stan -stamour -staib -stadelman -stadel -stachura -squadrito -sprinkles -springstead -spragg -spigelmyer -spieler -spielberg -spaur -sovocool -sovereign -soundara -soulia -souffrant -sos -sorce -sonkin -sodhi -soble -sniffen -smouse -smittle -smithee -smedick -smaller -slowinski -slovacek -slominski -slice -skowronek -skokan -skanes -sivertson -sinyard -sinka -sinard -simonin -simonian -simmions -silcott -silberg -siefken -siddon -shuttlesworth -shubin -shubeck -shiro -shiraki -shipper -shina -shilt -shikles -shideler -shenton -shelvey -shellito -shelhorse -shawcroft -shatto -shanholtzer -shamonsky -shall -shadden -seymer -seyfarth -sewer -setlock -servant -serratos -serr -sepulueda -senay -semmel -semans -selvig -selkirk -selk -seligson -seldin -seiple -seiersen -seidling -seidensticker -secker -searson -scordo -scollard -scoggan -scobee -sciandra -scialdone -schwimmer -schwieger -schweer -schwanz -schutzenhofer -schuetze -schrodt -schriever -schriber -schremp -schrecongost -schraeder -schonberg -scholtz -scholle -schoettle -schoenemann -schoene -schnitker -schmuhl -schmith -schlotterbeck -schleppenbach -schlee -schickel -schibi -schein -scheide -scheibe -scheib -schaumberg -schardein -schaalma -scantlin -scantlebury -sayle -sausedo -saurer -sassone -sarracino -saric -sanz -santino -santarpia -santano -santaniello -sangha -sandvik -sandoral -sandobal -sandercock -sanantonio -salviejo -salsberry -salois -salazer -sagon -saglibene -sagel -sagal -saetern -saefong -sadiq -sabori -saballos -rygiel -rushlow -runco -rulli -ruller -ruffcorn -ruess -ruebush -rudlong -rudin -rudgers -rudesill -ruderman -rucki -rucinski -rubner -rubinson -rubiano -ruan -roznowski -rozanski -rowson -rower -rounsaville -roudabush -rotundo -rothell -rotchford -rosiles -roshak -rosetti -rosenkranz -rorer -rollyson -rokosz -rojek -roitman -rohrs -rogel -roewe -rodriges -rodocker -rodgerson -rodan -rodak -rocque -rochholz -rochel -robicheau -robbinson -roady -ritchotte -ripplinger -rippetoe -ringstaff -ringenberg -rinard -rigler -rightmire -riesen -riek -ridges -richner -richberg -riback -rial -rhyner -rhees -resse -renno -renee -rendleman -ren -reisz -reisenauer -reinschmidt -reins -reinholt -reinard -reifsnyder -rehfeld -reha -regester -reffitt -redler -rediske -reckner -reckart -rebolloso -rebollar -reasonover -reasner -reaser -reano -reagh -raval -ratterman -ratigan -rater -rasp -raneses -randolf -ramil -ramdas -ramberg -rajaniemi -rail -raid -raggio -ragel -ragain -rade -radaker -racioppi -rabinovich -quickle -quertermous -queal -quartucci -quander -quain -pynes -putzel -purl -pulizzi -pugliares -prusak -prueter -protano -propps -primack -prieur -presta -preister -prawl -pratley -prairie -pozzo -powless -povey -pottorf -pote -postley -porzio -ports -portney -ponzi -pontoriero -ponto -pont -poncedeleon -polimeni -polhamus -pole -polan -poetker -poellnitz -podgurski -plotts -pliego -plaugher -plantenberg -plair -plagmann -pizzitola -pittinger -pitcavage -pischke -piontek -pintar -pinnow -pinneo -pinley -pingel -pinello -pimenta -pillard -piker -pietras -piere -picasso -phillps -pfleger -pfahl -pezzuti -petruccelli -petrello -peteet -pescatore -peruzzi -perusse -perotta -perona -perini -peretti -perelman -perciful -peppin -pennix -pennino -penalosa -pemble -pelz -peltzer -pelphrey -pelote -pellum -pellecchia -pelikan -peitz -peels -pebworth -peary -pawlicki -pavelich -paster -pasquarella -paskey -paseur -paschel -parslow -parrow -parrot -parlow -parlett -parler -pargo -parco -paprocki -panepinto -panebianco -pandy -pandey -pamphile -pamintuan -pamer -paluso -paleo -paker -pagett -paczkowski -ozburn -ovington -overmeyer -ouellet -osterlund -oslin -oseguera -osaki -orrock -ormsbee -orlikowski -organista -oregan -orebaugh -orabuena -openshaw -ontiveroz -ondo -omohundro -ollom -ollivierre -olivencia -oley -olazabal -okino -oki -offenberger -oestmann -ocker -obar -oakeson -nuzum -nurre -nowinski -novosel -norquist -nordlie -noorani -nonnemacher -nolder -njoku -niznik -niwa -niss -ninneman -niner -nimtz -niemczyk -nieder -nicolo -nichlos -niblack -newyear -newtown -newill -newcom -neverson -neuhart -neuenschwande -nestler -nenno -nejman -neiffer -neidlinger -neglia -needs -nearing -nazarian -navor -nary -narayan -nangle -nakama -naish -naik -nadolski -muscato -murphrey -murdick -murchie -muratalla -munnis -mundwiller -muncey -munce -mullenbach -mulhearn -mulcahey -muhammed -muchow -mountford -moudry -mosko -morvay -morrical -morr -moros -mormann -morgen -moredock -morden -mordarski -moravek -morandi -morale -mooradian -montejo -montegut -montan -monsanto -monford -moncus -molinas -molek -mohd -moehrle -moehring -modzeleski -model -modafferi -moala -moake -miyahira -mitani -mischel -minges -minella -mimes -milles -milbrett -milanes -mikolajczyk -mikami -meucci -metler -methven -metge -messmore -messerschmidt -mesrobian -meservey -merseal -menor -menon -menear -melott -melley -melfi -meinhart -megivern -megeath -meester -meeler -meegan -medoff -medler -meckley -meath -mearns -mcquigg -mcpadden -mclure -mckellips -mckeithen -mcglathery -mcginnes -mcghan -mcdonel -mccullom -mccraken -mccrackin -mcconathy -mccloe -mcclaughry -mcclaflin -mccarren -mccaig -mcaulay -mcaffee -mazzuca -maytubby -mayner -maymi -mattiello -matthis -matthees -matthai -mathiason -mastrogiovann -masteller -mashack -marucci -martorana -martiniz -marter -martellaro -marsteller -marris -marrara -maroni -marolda -marocco -maritn -margo -maresh -maready -marchione -marbut -maranan -maragno -mapps -manrriquez -manny -mannis -manni -mangina -manganelli -mancera -mamon -maloch -mallozzi -maller -majchrzak -majano -mainella -mahanna -maertens -madon -macumber -macioce -machuga -machlin -machida -machala -mabra -lynne -lybbert -luvert -lutts -luttrull -lupez -lukehart -ludewig -luchsinger -loyal -lovecchio -louissaint -loughney -lottie -lostroh -lose -lorton -lorette -lopeman -loparo -longs -loner -londo -lombera -lokietek -loiko -lohrenz -lohan -lofties -locklar -lockaby -lobianco -loader -loa -llano -livesey -litster -liter -liske -linsky -linne -lindbeck -limes -licudine -leyua -levie -letterman -leonelli -lenzo -lenze -lents -leitao -leif -leidecker -leibold -lehne -legan -legacy -lefave -leehy -ledue -lecount -lecea -leadley -lazzara -lazcano -lazalde -layer -lavi -lavancha -lavan -lav -laude -latu -latty -lato -larranaga -lapidus -lapenta -langridge -langeveld -langel -lanes -landowski -landgren -landfried -lame -lamattina -lallier -lairmore -lahaie -lagazo -lagan -lafoe -lafluer -laflame -lafevers -lada -lacoss -lachney -labreck -labreche -labay -laa -kwasnik -kuzyk -kutzner -kushnir -kusek -kurtzman -kurian -kulhanek -kuklinski -kuh -kueny -kuczynski -kubitz -kuang -kruschke -krous -krompel -kritz -krimple -kriese -krenzer -kreis -kratzke -krane -krage -kraebel -kozub -kozma -kouri -koudelka -kotcher -kotas -kostic -kosh -kosar -kopko -kopka -kooy -konigsberg -konarski -kolmer -kohlmeyer -kobbe -knoop -knoedler -knocke -knipple -knippenberg -knickrehm -kneisel -kluss -klossner -klipfel -klawiter -klasen -kittles -kissack -kirtland -kirschenmann -kirckof -kiphart -kinstler -kinion -kilton -killman -kiehl -kief -kett -kesling -keske -kerstein -kepple -keneipp -kempson -kempel -kelp -kehm -kehler -keh -keeran -keedy -kebert -keast -kearbey -kawaguchi -kaupu -kauble -katzenbach -kate -katcher -kartes -karpowicz -karpf -karen -karban -kanzler -kanarek -kamper -kaman -kalsow -kalafut -kaeser -kaercher -kaeo -kaeding -jurewicz -julson -jozwick -jollie -johnigan -johll -jochum -jewkes -jestes -jeska -jersey -jereb -jayson -jaurez -jarecki -jansma -janosik -jandris -jamin -jahr -jacot -jabs -ivens -itson -isenhower -iovino -ionescu -ingrum -ingels -inch -imrie -imlay -ihlenfeld -ihde -igou -ibach -huyett -hurry -huppe -hultberg -hullihen -hugi -hueso -huesman -hsiao -hronek -hovde -housewright -houlahan -hougham -houchen -hostler -hoster -hosang -hornik -hornes -horio -honyumptewa -honeyman -honer -hommerding -holsworth -hollobaugh -hollinshead -hollands -hollan -holecek -holdorf -hokes -hogston -hoesly -hodkinson -hodgman -hodgens -hochstedler -hochhauser -hobbie -hoare -hnat -hiss -hiskey -hirschy -hinostroza -hink -hing -hillmer -hillian -hillerman -hietala -hierro -hickling -hickingbottom -heye -heubusch -hesselschward -herriot -hernon -hermida -hermans -hentschel -henningson -henneke -henk -heninger -heltsley -helmle -helminiak -helmes -hellner -hellmuth -helke -heitmeyer -heird -heinle -heinicke -heinandez -heimsoth -heimlich -heibel -hegyi -heggan -hefel -heeralall -hedrington -heacox -hazlegrove -hazelett -haymore -havenhill -hautala -hascall -harvie -hartrick -hartling -harrer -harles -hargenrader -hanshew -hanly -hankla -hanisch -hancox -hammann -hambelton -halseth -hallisey -halleck -hallas -haisley -hairr -hainey -hainer -hailstock -haertel -guzek -guyett -guster -gussler -gurwitz -gurka -gunsolus -guinane -guiden -gugliotti -guevin -guevarra -guerard -gudaitis -guadeloupe -gschwind -grupe -grumbach -gruenes -gruenberg -grosser -grom -grodski -groden -grizzel -gritten -griswald -grishaber -grinage -grimwood -grims -griffon -griffies -gribben -grew -gressley -gren -greenstreet -grealish -gravett -grantz -granfield -granade -gowell -gossom -gorsky -goring -goodnow -goodfriend -goodemote -golob -gollnick -golladay -goldwyn -goldsboro -golds -goldrick -gohring -gohn -goettsch -goertzen -goelz -godinho -goans -glumac -gleisner -gleen -glassner -glanzer -gladue -gjelaj -givhan -girty -girone -girgenti -giorgianni -gilpatric -gillihan -gillet -gilbar -gierut -gierhart -gibert -gianotti -giannetto -gianelli -giambanco -gharing -geurts -gettis -gettel -gest -germani -gerdis -gerbitz -geppert -gennings -gemmer -gelvin -gellert -gehler -geddings -gearon -geach -gazaille -gayheart -gauld -gaukel -gaudio -gato -gathing -gasque -garstka -garsee -garringer -garofano -garo -garnsey -garigen -garcias -garbe -ganoung -ganfield -ganaway -gamero -galuska -galster -gallacher -galinski -galimi -galik -galeazzi -galdo -galdames -galas -galanis -gaglio -gaff -gaeddert -gadapee -fussner -furukawa -fuhs -fuerte -fuerstenberg -fryrear -fruits -froese -fringer -frieson -friesenhahn -frieler -friede -freymuth -freyman -freudenberg -freman -fredricksen -frech -frasch -frantum -frankin -franca -frago -fragnoli -fouquet -fossen -foskett -forner -formosa -formisano -forget -fooks -fons -folino -flott -floor -flesch -flener -flemmons -flattery -flanagin -flamino -flamand -fitzerald -findling -filsinger -fillyaw -fillinger -fiechter -ferre -ferdon -feldkamp -fazzio -favia -faulconer -faughnan -faubel -fassler -faso -farrey -farrare -farnworth -farland -fairrow -faille -faherty -fagnant -fabula -fabbri -eylicio -esteve -estala -espericueta -escajeda -erlich -equia -epson -enrriquez -enomoto -enmon -engemann -emmerson -emmel -emler -emilio -elstad -ellwein -ellerson -eliott -eliassen -elchert -eisenbeis -eisel -eikenberry -eichholz -ehmer -edris -edgerson -echenique -eberley -eans -dziuk -dykhouse -dworak -dutt -dupas -duntz -dunshee -dunovant -dunnaway -dummermuth -duerson -duddy -ducotey -duchon -duchesneau -ducci -dubord -duberry -dubach -drummonds -droege -drish -drier -drexel -dresch -dresbach -drenner -drechsler -dowen -dotter -dosreis -doser -dorward -dorin -dorf -door -domeier -doler -doleman -dolbow -dolbin -dobrunz -dobransky -dobberstein -dlouhy -diosdado -dingmann -dimmer -dimarino -dimaria -dilly -dillenburg -dilaura -dieken -dickhaus -dibbles -dibben -diamante -dewilde -dewaard -devich -devenney -devaux -dettinger -desroberts -dershem -dersch -derita -derickson -depina -deorio -deoliveira -denzler -dentremont -denoble -demshar -demond -demint -demichele -demel -delzer -delval -delorbe -delli -delbridge -delanoy -delancy -delahoya -dekle -deitrick -deis -dehnert -degrate -defrance -deetz -deeg -decoster -decena -dearment -daughety -datt -darrough -danzer -dante -danielovich -dandurand -dancause -dalo -dalgleish -daisley -daft -dadlani -daddona -daddio -dacpano -cyprian -cutillo -cush -curz -curvin -cuna -cumber -cullom -cudworth -cubas -crysler -cryderman -crummey -crumbly -crookshanks -croes -criscione -crimes -crespi -cresci -creaser -craton -cramp -cradle -cowin -cowdrey -coutcher -cotterman -cosselman -cosgriff -cortner -corsini -corporan -corniel -cornick -cordts -cordial -copening -coolman -connick -conlisk -conelli -common -comito -colten -colling -colletta -coldivar -colclasure -colantuono -colaizzi -coggeshall -cockman -cockfield -cobourn -cobo -cobarrubias -clyatt -cloney -clonch -climes -cleckner -clearo -claybourne -clavin -claridge -claffey -ciufo -cisnero -cipollone -cieslik -ciejka -cichocki -cicchetti -cianflone -chrusciel -christesen -chmielowiec -chirino -chillis -chihuahua -chhoun -chevas -chehab -chaviano -chavaria -chasten -charbonnet -chanley -champoux -champa -chalifoux -cerio -cedotal -cech -cavett -cavendish -catoire -castronovo -castellucci -castellow -castaner -casso -cassels -cassatt -cassar -cashon -cartright -carros -carrisalez -carrig -carrejo -carnicelli -carnett -carlise -carline -carhart -caren -cardova -cardell -carchi -caram -caquias -capper -capizzi -capano -cannedy -campese -calvello -callon -callins -callies -callicutt -calix -calin -califf -calderaro -caldeira -cadriel -cadmus -cadman -caccamise -buys -buttermore -butay -bustamente -busa -burmester -burkard -burhans -burgert -bure -burdin -bullman -bulin -buelna -buehner -budin -buco -buckhanon -bryars -brutger -brus -brumitt -brum -bruer -brucato -broyhill -broy -brownrigg -brownie -brossart -brookings -broden -brocklehurst -brockert -bristo -briskey -brisbane -bringle -bries -briar -bressman -bren -branyan -brands -bramson -brammell -brallier -bozich -boysel -bowthorpe -bowron -bowin -boutilier -boulos -boullion -boughter -bottiglieri -borruso -borrow -borreggine -borns -borkoski -borghese -borenstein -boran -bora -booton -bonvillain -bonini -bong -bonello -bolls -boitnott -boike -bohnet -bohnenkamp -bohmer -boeson -boeneke -bodey -bocchino -bobrowski -bobic -bluestein -bloomingdale -blogg -blewitt -blenman -bleck -blaszak -blankenbeckle -blando -blanchfield -blancato -blalack -blakenship -blackett -bisping -birkner -birckhead -bingle -bineau -billiel -bigness -bies -bierer -bhalla -beyerlein -bew -betesh -besler -berzins -bertalan -berntsen -berna -bergo -berganza -bennis -benney -benkert -benjamen -benincasa -bengochia -bendle -bendana -benchoff -benbrook -belsito -belshaw -belinsky -belak -bela -beigert -beidleman -behen -befus -beel -beebee -bedonie -beckstrand -beckerle -beato -bears -bauguess -baughan -bauerle -battis -batis -bastone -bastille -bassetti -bashor -bary -bartunek -bartoletti -barro -barno -barnicle -barlage -barkus -barkdull -bari -barcellos -barbarino -baranski -baranick -bankert -banchero -ban -bambrick -bamberg -bambenek -balthrop -balmaceda -ballman -balistrieri -balcomb -balboni -balbi -bakshi -bagner -bagent -badasci -bacot -bache -babu -babione -babic -babers -babbs -awkward -avitabile -avers -avena -avance -ausley -auker -audas -aud -aubut -athearn -atcheson -astorino -asplund -aslanian -askari -ashmead -asby -asai -arterbury -artalejo -arqueta -arquero -arostegui -arnell -armeli -arista -arender -arca -arballo -aprea -applen -applegarth -apfel -antonello -antolin -antkowiak -angis -angione -angerman -angelilli -andujo -andrick -anderberg -amigon -ambers -amalfitano -alviso -alvez -altice -altes -almarez -allton -allston -allgeyer -allegretti -aliaga -algood -alberg -albarez -albaladejo -akre -aitkin -ahles -ahlberg -agnello -adrien -adinolfi -adamis -abramek -abolt -abitong -zurich -zurawski -zufall -zubke -zizzo -zipperer -zinner -zinda -ziller -zill -zevallos -zesati -zenzen -zentner -zellmann -zelinsky -zboral -zarcone -zapalac -zaldana -zakes -zaker -zahniser -zacherl -zabawa -zabaneh -yum -youse -youree -younis -yorty -yonce -yero -yerkey -yeck -yeargan -yauch -yashinski -yambo -xiang -wrinn -wrightsman -worton -wortley -worland -woolworth -woolfrey -woodhead -woltjer -wolfenden -wolden -wolchesky -wojick -woessner -witwer -witters -witchard -wissler -wisnieski -wisinski -winnike -winkowski -winkels -wingenter -wineman -winegardner -wimpy -wilridge -wilmont -willy -willians -williamsen -wilhide -wilhelmsen -wilhelmi -wildrick -wilden -wiland -wiker -wigglesworth -wiebusch -widdowson -wiant -wiacek -whittet -whitter -whitelock -whiteis -whiley -westrope -westpfahl -westin -wessman -wessinger -wesemann -wesby -wertheimer -weppler -wenke -wengler -wender -welp -weitzner -weissberg -weisenborn -weipert -weiman -weidmann -wehrsig -wehrenberg -weemes -weeman -wayner -waston -wasicek -wascom -wasco -warmath -warbritton -waltner -wallenstein -waldoch -waldal -wala -waide -wadlinger -wadhams -vullo -voorheis -vonbargen -volner -vollstedt -vollman -vold -voge -vittorio -virtue -virginia -violett -viney -vinciguerra -vinal -villata -villarrvel -vilanova -vigor -vigneault -view -vielma -veyna -vessella -versteegh -verderber -venier -venice -venditti -velotta -vejarano -veil -vecchia -vecchi -vastine -vasguez -varella -vanry -vannah -vanhyning -vanhuss -vanhoff -vanhoesen -vandivort -vandevender -vanderlip -vanderkooi -vandebrink -vancott -vallien -vallas -vallandingham -valiquette -valasek -vahey -vagott -uyematsu -urbani -uran -upp -uno -union -umbach -udo -tyon -tyma -twyford -twombley -twohig -tutterrow -turnes -turkington -turchi -tunks -tumey -tumbaga -tuinstra -tsukamoto -tschetter -trussel -trubey -trovillion -troth -trostel -tron -trinka -trine -tribbey -triarsi -trevor -treto -trautz -tragesser -tooman -toolson -tonozzi -tomkiewicz -tomb -tomasso -tolin -tolfree -toelle -tisor -tiry -tinstman -timmermann -tillie -tickner -tiburcio -thunberg -thronton -thompsom -theil -thayne -thaggard -teschner -tensley -tenery -tempest -tellman -tellado -telep -teigen -teator -teall -tayag -tavis -tattersall -tassoni -tarshis -tappin -tappe -tansley -talone -talford -tainter -taha -taguchi -tacheny -tabak -szymczyk -szwaja -szopinski -sze -syvertsen -swogger -switcher -swist -swilling -swierczek -swiech -swickard -swiatek -swezey -swepson -sweezy -swaringen -swanagan -swailes -swade -sveum -svenningsen -svec -suttie -supry -sunga -summerhill -summars -sulit -stys -stutesman -stupak -stumpo -stuller -stuekerjuerge -stuckett -stuckel -stuchlik -stuard -strutton -strop -stromski -stroebel -strehlow -strause -strano -straney -stradling -stoyle -stormo -stopyra -stoots -stoop -stonis -stoltenburg -stoiber -stoessel -stitzer -stien -stichter -stezzi -stewert -stepler -steinkraus -stegemann -steeples -steenburg -steeley -staszak -stasko -starkson -stanwick -stanke -stanifer -stangel -stain -stai -squiers -sprout -springsteen -spraglin -spragins -spraberry -spoelstra -spisak -spirko -spille -spidel -speyer -speroni -spenst -speak -spartz -sparlin -sparacio -spaman -spainhower -sow -souers -souchet -sosbee -sorn -sorice -sorbo -soqui -somer -solon -soehl -sodergren -socorro -sobie -smucker -smsith -smoley -smolensky -smolenski -smolder -smethers -slusar -slowey -slonski -slemmons -slatkin -slates -slappy -slaney -slagter -slacum -skutnik -skrzypek -skibbe -sjostrom -sjoquist -sivret -sitko -sisca -sinnett -sineath -simoni -simar -simao -silvestro -silleman -silkwood -silha -silfies -silberhorn -silacci -sigrist -sieczkowski -sieczka -shure -shulz -shugrue -shrode -shown -shovlin -shortell -shonka -shiyou -shiraishi -shiplett -sheu -shermer -sherick -sheng -sheeks -shed -sharron -shantz -shakir -shaheed -shadoan -shadid -shackford -shabot -seung -seufert -setty -setters -servis -server -serres -serrell -serpico -serpas -serafine -sensenig -senft -semenec -semen -semas -semaan -selvera -sellmeyer -sek -segar -seever -seeney -seeliger -seehafer -seebach -sebben -seaward -seary -searl -searby -scotland -scordino -scolieri -scolaro -schwiebert -schwartze -schwaner -schuur -schupbach -schumacker -schum -schudel -schubbe -schroader -schramel -schollmeyer -schoenherr -schoeffler -schoeder -schnurr -schnorr -schneeman -schnake -schnaible -schmaus -schlotter -schinke -schimming -schimek -schikora -scheulen -scherping -schermer -scherb -schember -schellhase -schedler -schanck -schaffhauser -schaffert -schadler -scarola -scarfo -scarff -scantling -scaff -sayward -sayas -saxbury -savin -savel -savastano -savannah -sault -satre -sarkar -santellan -sandmeier -sampica -salvesen -saltis -salloum -salling -salce -salatino -salata -salamy -safe -sadowsky -sadlier -sabbatini -sabatelli -sabal -sabados -rydzewski -rybka -rybczyk -ruz -rusconi -rupright -rufino -ruffalo -rudiger -rudig -ruda -rubyor -royea -roxberry -rover -rouzer -roumeliotis -roston -rossmann -rosko -rosetta -rosene -rosenbluth -roseland -rosasco -rosano -rosal -rorabaugh -romie -romaro -rolstad -rollow -rohrich -roghair -rogala -roets -roen -roemmich -roelfs -roeker -roedl -roedel -rodeheaver -roddenberry -rockstad -rocchi -robirds -robben -robasciotti -robaina -rizzotto -rizzio -rittle -ritcher -rissman -riseden -ripa -rion -rintharamy -rinehimer -rinck -riling -rike -rietschlin -riesenberg -riemenschneid -rieland -rickenbaugh -rickenbach -riches -rhody -revells -reutter -respress -resnik -renton -remmel -reitmeyer -reitan -reister -reinstein -reino -reinkemeyer -reifschneider -reierson -reichle -rehmeier -rehl -regine -reeds -rede -records -recar -rebeiro -raybourn -rawl -rautio -raugust -raudenbush -raudales -rattan -rashad -rapuano -rapoport -rantanen -ransbottom -raner -ramkissoon -rambousek -raio -rainford -radakovich -rad -rabenhorst -quivers -quispe -quintin -quinoes -quince -quilici -quattrone -quates -quance -quale -purswell -purpora -pulera -pulcher -puckhaber -pryer -pruyne -pruit -prudencio -prows -protzman -prothero -prospero -prosperi -prospal -privott -pritchet -priem -prest -prell -preer -pree -preddy -preda -pravata -pradhan -potocki -postier -postema -posse -posadas -poremba -popper -popichak -ponti -pomrenke -pomponi -pomarico -pollok -polkinghorn -polino -pock -plough -plenty -plater -plagman -pipher -pinzone -pinkleton -pillette -pillers -pill -pilapil -pignone -pignatelli -piersol -piepho -picton -pickrel -picket -pichard -picchi -piatek -pharo -phanthanouvon -pettingill -pettinato -petrovits -pethtel -petersheim -pershing -perrez -perra -pergram -peretz -perego -perches -pennello -pennella -pennant -pendry -penaz -pellish -peeks -pecanty -peare -paysour -pavlovich -pavick -pavelko -paustian -patzer -patsy -patete -patadia -paszkiewicz -pase -pasculli -pascascio -parrotte -parlor -parajon -paparo -papandrea -paone -pantaleon -panning -paniccia -pancho -panarello -palmeter -pallan -palardy -pahmeier -padget -padel -oyster -oya -oxborrow -oveson -outwater -ottaway -otake -ostermeyer -osmer -osinski -osiecki -oroak -orndoff -orms -orkin -oregon -ordiway -opatz -onsurez -onishi -oliger -okubo -okoye -ohlmann -offord -offner -offerdahl -oesterle -oesch -odonnel -odeh -odebralski -obie -obermeier -oberhausen -obenshain -obenchain -oats -nute -nulty -norrington -norlin -nore -nordling -nordhoff -norder -nordan -norals -nogales -noboa -nitsche -niermann -nienhaus -niedringhaus -niedbalski -nicolella -nicolais -nickleberry -nicewander -newfield -neurohr -neumeier -netterville -nersesian -nern -nerio -nerby -nerbonne -neitz -neighbours -neighbor -neidecker -neat -neason -nead -navratil -naves -nastase -nasir -nasca -narine -narimatsu -nard -narayanan -nappo -namm -nalbone -nakonechny -nabarro -myott -muthler -muscatello -murriel -murin -murders -muoio -mundel -munafo -mulch -mukherjee -muffoletto -muessig -muckey -mucher -mruk -moyd -mowell -mowatt -moutray -mourning -mou -motzer -moster -mortis -morgenroth -morga -morataya -montross -montezuma -monterroza -montemarano -montello -montbriand -montavon -montaque -monigold -monforte -molgard -moleski -mohsin -mohead -mofield -moerbe -moeder -mochizuki -miyazaki -miyasaki -mital -miskin -mischler -minus -minniear -minero -milosevic -mildenhall -mila -mikhail -mielsch -midden -michonski -michniak -michitsch -michelotti -micheli -michelfelder -michand -miao -metelus -merkt -merando -meranda -mentz -meneley -menaker -memory -melino -meir -mehaffy -meehl -meech -meczywor -mcweeney -mcumber -mcredmond -mcneer -mcnay -mcmikle -mcmaken -mclaurine -mclauglin -mclaney -mckune -mckinnies -mckague -mchattie -mcgrapth -mcglothen -mcgath -mcfolley -mcdannell -mccurty -mccort -mcclymonds -mcclimon -mcclamy -mccaughan -mccartan -mccan -mccadden -mcburnie -mcburnett -mcbryar -mcannally -mcalevy -mcaleese -maytorena -mayrant -mayol -mayland -mayeaux -mauter -matthewson -mathiew -matern -matera -maslow -mashore -masaki -maruco -martorell -martenez -marry -marrujo -marrison -maroun -markway -markos -markoff -markman -marian -marello -marbry -marban -maranda -maphis -manuele -mansel -manganello -mandrell -mandoza -manard -manago -maltba -mallick -mallak -maline -malikowski -majure -majcher -maise -mahl -maffit -maffeo -madueno -madlem -madariaga -macvane -mackler -macconnell -macchi -maccarone -lyng -lynchard -lura -lunning -luneau -lunden -lumbra -lumbert -lueth -ludington -luckado -lucchini -lucatero -luallen -lozeau -lowen -lovera -lovelock -louck -lothian -lorio -lorimer -lorge -loretto -longhenry -lonas -loiseau -lohrman -logel -loft -locks -lockie -llerena -livington -liuzzi -liscomb -lippeatt -liou -linhardt -lindelof -lindbo -limehouse -limage -lillo -lillian -lilburn -liggons -lidster -liddy -liddick -lich -liberato -lian -lia -leysath -lewelling -lesney -leser -lescano -leonette -lentsch -lenius -lemmo -lemming -lemcke -lein -leggette -legerski -legard -leever -leete -ledin -lecomte -lecocq -leakes -leab -lazarz -layous -lawrey -lawery -lauze -lautz -laughinghouse -latulippe -lattus -lattanzio -later -lascano -larmer -laris -larcher -laprise -lapin -lapage -lano -langseth -langman -langland -landstrom -landsberg -landsaw -landram -lamphier -lamendola -lamberty -lakhani -laker -lajara -lagrow -lagman -ladewig -laderman -ladden -lacrue -laclaire -lachut -lachner -kwit -kvamme -kvam -kutscher -kushi -kurgan -kunsch -kundert -kun -kulju -kukene -kudo -kubin -kubes -kuberski -krystofiak -kruppa -krul -krukowski -kruegel -kronemeyer -krock -kriston -kretzer -krenn -kralik -krafft -krabill -kozisek -kovich -koverman -kovatch -kovarik -kotlowski -kosmala -kosky -kosir -kosa -korpi -kornbluth -koppen -kooistra -kohlhepp -kofahl -koeneman -koebel -koczur -kobrin -kobashigawa -koba -knuteson -knoff -knoble -knipper -knierim -kneisley -klusman -kloc -klitzing -klinko -klinefelter -klemetson -kleinpeter -klauser -klatte -klaren -klare -kissam -kirkhart -kirchmeier -kinzinger -kindt -kincy -kincey -kimoto -killingworth -kilcullen -kilbury -kietzman -kienle -kiedrowski -kidane -khamo -khalili -ketterling -ketchem -kessenich -kessell -kepp -kenon -kenning -kennady -kendzior -kemppainen -kellermann -keirns -keilen -keiffer -kehew -keelan -keawe -keator -kealy -keady -kathman -kastler -kastanes -kassab -karren -karpin -karau -karathanasis -kara -kaps -kaplun -kapaun -kannenberg -kanipe -kander -kandel -kanas -kanan -kamke -kaltenbach -kallenberger -kallam -kali -kaley -kafton -kafer -kabler -kaaihue -jupiter -jundt -jubilee -jovanovich -jojola -johnstad -jodon -joachin -jinright -jew -jessick -jeronimo -jerald -jenne -jelsma -jeannotte -jeangilles -jaworsky -jaubert -jarry -jarrette -jarreau -jarett -janos -janecka -janczak -jalomo -jagoda -jagla -jacquier -jaber -iwata -ivanoff -isola -iserman -isais -isaacks -iron -inverso -infinger -ibsen -hyser -hylan -hybarger -hwee -hutchenson -hutchcroft -husar -hurlebaus -hunsley -hunker -hummingbird -humberson -hulst -hulon -huhtala -hugill -hugghins -huffmaster -huckeba -hrabovsky -howden -hoverson -houts -houskeeper -housh -hosten -horras -horchler -hor -hopke -hooke -honie -holtsoi -holsomback -holoway -holmstead -hoistion -hohnstein -hoheisel -hoguet -hoggle -hogenson -hoffstetter -hoffler -hoffa -hofe -hoefling -hoague -hizer -hirschfield -hironaka -hiraldo -hinote -hingston -hind -hinaman -hillie -hillesheim -hilderman -hiestand -heyser -heys -hews -hew -hertler -herrero -herrandez -heppe -henle -henkensiefken -henigan -henandez -henagan -hemberger -heman -helser -helmich -hellinger -helfrick -heldenbrand -heinonen -heineck -heikes -heidkamp -heglar -heffren -heelan -hedgebeth -heckmann -heckaman -hechmer -hazelhurst -hawken -haverkamp -havatone -hausauer -hasch -harwick -hartse -harts -harrower -harle -hargroder -hardway -hardinger -hardemon -harbeck -hant -hamre -hamberg -hallback -haisten -hailstone -hahl -hagner -hagman -hagemeyer -haeussler -hackwell -haby -haataja -gverrero -gustovich -gustave -guske -gushee -gurski -gurnett -gura -gunto -gunselman -gugler -gudmundson -gudinas -guarneri -grumbine -gruis -grotz -grosskopf -grosman -grosbier -grinter -grilley -grieger -grewal -gressler -greaser -graus -grasman -graser -grannan -granath -gramer -graboski -goyne -gowler -gottwald -gottesman -goshay -gorr -gorovitz -gores -goossens -goodier -goodhue -gonzeles -gonzalos -gonnella -golomb -golick -golembiewski -goeke -godzik -goar -glosser -glendenning -glendening -glatter -glas -gittings -gitter -gisin -giscombe -gimlin -gillitzer -gillick -gilliand -gilb -gigler -gidden -gibeau -gibble -gianunzio -giannattasio -gertelman -gerosa -gerold -gerland -gerig -gerecke -gerbino -genz -genovesi -genet -gelrud -geitgey -geiszler -gehrlein -gazzo -gawrys -gavilanes -gaulden -gate -garthwaite -garmoe -gargis -gara -gannett -galligher -galler -galleher -gallahan -galford -gal -gahn -gacek -gabert -fuster -furuya -furse -fujihara -fuhriman -fruit -frueh -fromme -from -froemming -friskney -frietas -freiler -freelove -freber -frear -frankl -frankenfield -franey -francke -foxworthy -formella -foringer -forgue -forge -fonnesbeck -fonceca -folland -fodera -fode -floresca -fleurent -fleshner -flentge -fleischhacker -fleeger -flecher -flam -flair -flaim -fivecoat -firebaugh -fioretti -finucane -filley -figuroa -figuerda -fiddelke -feurtado -fetterly -fessel -femia -feild -fehling -fegett -fedde -fechter -fawver -faustino -faulhaber -fatchett -fassnacht -fashaw -fasel -farrugia -farran -farness -farhart -farbman -fama -falwell -falvo -falling -falkenstein -falin -failor -faigin -fagundo -fague -fagnan -fagerstrom -faden -eytchison -eyles -ewy -evon -everage -evangelist -estrin -estorga -esponda -espindola -escher -esche -escarsega -escandon -erven -erding -eplin -enix -englade -engdahl -enck -emmette -embery -emberson -eltzroth -else -elsayed -ellerby -ellens -elhard -elfers -elazegui -eisermann -eilertson -eiben -ehrhard -ehresman -egolf -egnew -eggins -efron -effland -eduardo -edminster -edgeston -ede -eckstrom -eckhard -eckford -echoles -ebsen -eatherly -eastlick -earnheart -ear -dykhuizen -dyas -duttweiler -dutka -dutch -dusenbury -dusenbery -durre -durnil -durnell -durie -durhan -durando -dupriest -dunsmoor -dunseith -dunnum -dunman -dunlevy -duma -dulude -dulong -duignan -dugar -dufek -ducos -duchaine -duch -dubow -drowne -dross -drollinger -droke -driggars -dredge -drawhorn -drach -drabek -doyne -doukas -dorvil -dorow -doroski -dornak -dormer -dorian -donnelson -donna -donn -donivan -dondero -dompe -dolle -doakes -diza -dixie -divirgilio -ditore -distel -disimone -disbro -dipiero -dingson -diluzio -dillehay -dilbert -digiorgio -diflorio -dietzler -dietsch -dieterle -dierolf -dierker -dicostanzo -dicesare -dexheimer -dewitte -dewing -devoti -devincentis -devary -deutschman -dettloff -detienne -destasio -dest -despard -desmet -deslatte -desfosses -derise -derenzo -deppner -depolo -denoyer -denoon -denno -denne -deniston -denike -denes -demoya -demick -demicco -demetriou -demange -delva -delorge -delley -delisio -delhoyo -delgrande -delgatto -delcour -delair -deinert -degruy -degrave -degeyter -defino -deffenbaugh -deener -decook -decant -deboe -deblanc -deatley -dearmitt -deale -deaguiar -dayan -daus -dauberman -datz -dase -dary -dartt -darocha -dario -dari -dardis -dapper -danowski -dancel -dami -dallmann -dalere -dalba -dakan -daise -dailing -dahan -dagnan -daggs -dagan -czarkowski -czaplinski -cutten -curtice -curenton -cure -curboy -cura -culliton -culberth -cucchiara -cubbison -csaszar -crytser -crotzer -crossgrove -crosser -croshaw -croissant -crocco -critzer -creveling -cressy -creps -creese -cratic -crate -craigo -craigen -craib -cracchiolo -crable -coykendall -cowick -coville -couzens -coutch -cousens -cousain -counselman -coult -cotterell -cott -cotham -corsaut -corriere -corredor -cornet -cornelia -corkum -coreas -cordoza -corbet -corathers -conwill -contreas -consuegra -constanza -conolly -conedy -companion -comins -combee -colosi -colom -colmenares -collymore -colleran -colina -colaw -colatruglio -colantro -colantonio -cohea -cogill -codner -code -codding -cockram -cocanougher -cobine -cluckey -clucas -cloward -cloke -clisham -clipper -clinebell -cliffe -clendenen -cisowski -cirelli -ciraolo -ciocca -cintora -ciesco -cibrian -chupka -chugg -christmann -choma -chiverton -chirinos -chinen -chimenti -chima -cheuvront -chesla -chesher -chesebro -chern -chehebar -cheatum -chastine -chapnick -chapelle -chambley -cercy -celius -celano -cayea -cavicchi -cattell -catanach -catacutan -castelluccio -castellani -cassmeyer -cassetta -cassada -caspi -cashmore -casebier -casanas -carrothers -carrizal -carriveau -carretero -carradine -carosella -carnine -carmel -carloni -carkhuff -cardosi -cardo -carchidi -caravello -caranza -carandang -capes -cantrall -canpos -canoy -cannizzaro -canion -canida -canham -cangemi -cange -candle -cancelliere -canard -camarda -calverley -calogero -callendar -calame -cadrette -cachero -caccavale -cabreros -cabrero -cabrara -cabler -butzer -butte -butrick -butala -bustios -busser -busic -bushorn -busher -burmaster -burl -burkland -burkins -burkert -burgueno -burgraff -buren -burel -burdon -burck -burby -buoy -bunk -bumford -bulock -bujnowski -buggie -buffy -budine -bucciero -bubier -brzoska -brydges -brumlow -brosseau -brooksher -brokke -broeker -brittin -bristle -briano -briand -brettschneide -bresnan -brentson -brenneis -brender -brazle -brassil -brasington -branstrom -branon -branker -brandwein -brandau -brana -bralley -brailey -brague -brade -bozzi -bownds -bowmer -bournes -bour -bouchey -botto -boteler -borroel -borra -boroski -boothroyd -boord -bonny -bonga -bonato -bonadonna -bolejack -boldman -boiser -boggio -bogacki -boerboom -boehnlein -boehle -bodah -bobst -boak -bluemel -blockmon -blitch -blincoe -bleier -blaydes -blasius -bittel -bir -binsfeld -bindel -bilotti -billiott -bilbrew -bihm -biersner -bielat -bidrowski -bickler -biasi -bianca -bhola -bhat -bewick -betzen -bettridge -betti -betsch -besley -beshero -besa -bertoli -berstein -berrien -berrie -berrell -bermel -berenguer -benzer -bensing -bennie -benedix -bemo -belile -beilman -behunin -behrmann -bedient -becht -beaule -beaudreault -bealle -beagley -bayuk -bayot -bayliff -baugess -battistoni -batrum -basinski -basgall -bartolomei -bartnik -bartl -bartko -bartholomay -barthlow -bartgis -barsness -barski -barlette -barickman -bargen -bardon -barcliff -barbu -barbar -barakat -baracani -baraban -banos -banko -bania -bambach -balok -balogun -bally -baldini -balck -balcer -balash -baim -bailor -bahm -bahar -bagshaw -baggerly -badie -badal -backues -babino -ba -aydelott -awbrey -aversano -avansino -auyon -aukamp -aujla -augenstein -astacio -ast -asplin -asato -asano -aruizu -artale -arrick -arneecher -armelin -armbrester -armacost -arkell -argue -argrave -areizaga -areas -apolo -anzures -anzualda -antwi -antillon -antenor -annand -anhalt -angove -anglemyer -anglada -angiano -angeloni -andaya -ancrum -anagnos -ammirati -amescua -america -ambrosius -amacker -amacher -amabile -alvizo -alvernaz -alvara -altobelli -altobell -althauser -alterman -altavilla -alsip -alphonso -almeyda -almeter -alman -allscheid -allaman -aliotta -alicia -aliberti -alghamdi -alfonzo -albiston -alberta -alberding -alarie -alano -aja -ailes -ahsan -ahrenstorff -ahler -aerni -ackland -achor -acero -acebo -ace -abshier -abruzzo -abrom -abood -abnet -abend -abegg -abbruzzese -aaberg -zysk -zutell -zumstein -zummo -zuhlke -zuehlsdorff -zuch -zucconi -zortman -zohn -ziv -zingone -zingg -zingale -zima -zientek -zieg -zervas -zerger -zenk -zeldin -zeiss -zeiders -zediker -zea -zavodny -zarazua -zappone -zappala -zapanta -zaniboni -zanchi -zampedri -zaller -zakrajsek -zagar -zadrozny -zablocki -zable -yust -yunk -youngkin -yosten -yockers -yochim -yerke -yerena -yeast -yanos -yam -wysinger -wyner -wrisley -woznicki -wortz -worsell -wooters -woon -woolcock -woodke -wonnacott -wolnik -wittstock -witting -witry -witfield -witcraft -wissmann -wissink -wisehart -wiscount -wironen -wipf -winterrowd -wingett -windon -windish -windisch -windes -wiltbank -willmarth -willick -wiler -wieseler -wiedmaier -wiederstein -wiedenheft -wieberg -wickware -wickkiser -wickell -whittmore -whitker -whitegoat -whitcraft -whisonant -whisby -whetsell -whedon -westry -westcoat -wernimont -wentling -wendlandt -wencl -weisgarber -weininger -weikle -weigold -weigl -weichbrodt -wehrli -wehe -weege -weare -watland -wassmann -warzecha -warrix -warrell -warnack -waples -wantland -wanger -wandrei -wander -wanat -wampole -waltjen -walterscheid -waligora -walding -waldie -walczyk -wakins -waitman -wair -wainio -wahpekeche -wahlman -wagley -wagenknecht -wadle -waddoups -wadding -wack -vuono -vuillemot -vugteveen -vosmus -vorkink -vories -vondra -voelz -vlashi -vivo -vitelli -vitali -viscarra -virgo -vinet -vimont -villega -villard -vignola -viereck -videtto -vicoy -vessell -vescovi -verros -vernier -vernaglia -vergin -verdone -verdier -verastequi -vejar -vasile -vasi -varnadore -vardaro -vanzanten -vansumeren -vanschuyver -vanleeuwen -vanhowe -vanhoozer -vaness -vandewalker -vandevoorde -vandeveer -vanderzwaag -vanderweide -vanderhyde -vandellen -vanamburg -vanalst -vallin -valk -valerie -valentini -valcarcel -valasco -valadao -vacher -urquijo -unterreiner -unsicker -unser -unrau -undercoffler -uhm -uffelman -uemura -ueda -tyszko -tyska -tymon -tyce -tyacke -twinam -tutas -tussing -turmel -turkowski -turkel -turchetta -tupick -tumblin -tukes -tufte -tufo -tuey -tuell -tuckerman -tsutsumi -tsuchiya -try -trossbach -trivitt -trippi -trippensee -trimbach -trillo -triller -trible -tribe -tribby -trevisan -tresch -tramonte -traff -trad -tousey -totaro -torregrosa -torralba -torn -tolly -tofil -tofani -tobiassen -tippy -tiogangco -tino -tinnes -tingstrom -tingen -tine -tindol -tifft -tiffee -tiet -thuesen -thruston -throndson -thornsbury -thornes -thiery -thielman -thie -theilen -thede -thate -thane -thalacker -thaden -teuscher -terracina -terell -terada -tepfer -tennessee -tenneson -tenant -temores -temkin -tellers -telleria -teaque -tealer -teachey -tavakoli -tauras -taucher -tator -tartaglino -tarpy -tape -tannery -tani -tams -tamlin -tambe -tallis -talamante -takayama -takaki -takagi -taibl -taffe -tadesse -tade -tabeling -tabag -szoke -szoc -szala -szady -sysak -sylver -syler -swonger -swiggett -swensson -sweis -sweers -sweene -sweany -sweaney -swartwout -swamy -swales -swab -susman -surman -surgeon -sundblad -summerset -summerhays -sumerall -sule -sugimoto -subramanian -sturch -stupp -stunkard -stumpp -struiksma -stropes -stromyer -stromquist -strede -strazza -strauf -storniolo -storjohann -stonum -stonier -stonecypher -stoneberger -stollar -stokke -stokan -stoetzel -stoeckel -stockner -stockinger -stockholm -stockert -stockdill -stobbe -stitzel -stitely -stirgus -stigers -stettner -stettler -sterlin -sterbenz -stemp -stelluti -steinmeyer -steininger -steinauer -steigerwalt -steider -steady -stavrou -staufenberger -stassi -starin -stankus -stanaway -stammer -stakem -staino -stahlnecker -stagnitta -staelens -staal -srsen -sprott -sprigg -sprenkle -sprenkel -spreitzer -spraque -sprandel -spotted -sporn -spivak -spira -spiewak -spieth -spiering -sperow -speh -specking -spease -spead -sparger -spanier -spall -sower -southcott -sosna -soran -sookram -sonders -solak -sohr -sohl -sofranko -soderling -sochor -sobon -smutz -smudrick -smithj -smid -slosser -sliker -slenker -sleight -sleger -sleet -slaby -skousen -skilling -skibinski -skeeters -skeet -skees -skane -skafidas -sivic -sivertsen -sivers -sitra -sito -siracusa -sinicki -simpers -simley -simbeck -silberberg -siever -siegwarth -sidman -siddons -siddle -sibbett -si -shumard -shubrooks -shough -shorb -shoptaw -sholty -shoffstall -shiverdecker -shininger -shimasaki -shifrin -shiffler -sheston -sherr -sherill -shere -shepeard -shelquist -shells -sheler -shave -shauf -sharrar -sharpnack -shanon -shamsiddeen -shambley -shallenberger -shadler -shaban -sha -sferra -seys -sexauer -sevey -severo -setlak -seta -sesko -sersen -serratore -serdula -senechal -seldomridge -seilhamer -seifer -seidlitz -sehnert -sedam -sebron -seber -sebek -seavers -sear -scullark -scroger -scovill -sciascia -sciarra -schweers -schwarze -schummer -schultes -schuchardt -schuchard -schrieber -schrenk -schreifels -schowalter -schoultz -scholer -schofill -schoff -schnuerer -schnettler -schmitke -schmiege -schloop -schlinger -schlessman -schlesser -schlageter -schiess -schiefer -schiavoni -scherzer -scherich -schechtman -schebel -scharpman -schaich -schaap -scappaticci -scadlock -savocchia -savini -savers -save -savageau -sauvage -sause -sauerwein -sary -sarwary -sarnicola -santone -santoli -santalucia -santacruce -sansoucie -sankoff -sanes -sandri -sanderman -sammartano -salmonson -salmela -salmans -sallaz -salis -sakuma -sakowski -sajdak -sahm -sagredo -safrit -sade -sackey -sabio -sabino -sabina -rybolt -ruzzo -ruthstrom -ruta -russin -russian -russak -rusko -ruskin -rusiecki -ruscher -rupar -rumberger -rullan -ruliffson -ruhlman -ruger -rufenacht -ruelle -rudisell -rudi -rucci -rublee -ruberto -rubeck -rowett -rouge -rottinghaus -roton -rothgeb -rothgaber -rothermich -rostek -rossini -roskelley -rosing -rosi -rosewell -rosebush -rosberg -roon -ronin -romesburg -romelus -rolley -rollerson -rollefson -rolins -rolens -rois -rohrig -rohrbacher -rohland -rohen -roh -rogness -roes -roering -roehrick -roebke -rodregez -rodabaugh -rocks -rockingham -roblee -robel -roadcap -rizzolo -riviezzo -rivest -riveron -risto -rissler -risen -rippentrop -ripka -rinn -ringuette -ringering -rindone -rindels -rim -rieffer -riedman -riede -riecke -riebow -riddlebarger -rhome -rhodd -rhatigan -rhame -reyers -rewitzer -revalee -retzer -rettinger -reschke -requa -reper -reopell -renzelman -renne -renker -renk -renicker -rendina -rendel -remund -remmele -remiasz -remaklus -remak -reitsma -reitmeier -reiswig -reishus -reining -reim -reidinger -reick -reiche -regans -reffett -reesor -reekie -redpath -redditt -rechtzigel -recht -rebel -rearden -raynoso -raxter -ratkowski -rasulo -rassmussen -rassel -raspberry -raser -rappleye -rappe -randy -randrup -randleman -ramson -rampey -ramming -rama -rainier -raider -radziewicz -quirarte -quintyne -quickel -query -quattrini -quarry -quakenbush -quaile -pytel -putty -pushaw -pusch -purslow -punzo -pullam -pugmire -puello -pu -przekop -pruss -pruiett -provow -prophete -procaccini -pritz -prillaman -priess -pretlow -prestia -presha -prescod -preast -praytor -prashad -praino -pozzi -pounder -pottenger -potash -porada -popplewell -ponzo -ponter -pommier -polland -polidori -polasky -pola -pok -poitier -poisso -poire -point -pofahl -podolsky -podell -plueger -plowe -plotz -plotnik -ploch -pliska -plessner -plaut -platzer -plake -pizzino -pizza -pirog -piquette -pipho -pioche -pintos -pinkert -pinet -pilkerton -pilch -pilarz -pignataro -piermatteo -picozzi -pickler -pickette -pichler -philogene -pheasant -phare -phang -pfrogner -pfisterer -pettinelli -petruzzi -petrovic -petretti -petermeier -pestone -pesterfield -pessin -pesch -persky -perruzza -perrott -perritt -perretti -perrera -peroutka -peroni -peron -peret -perdew -perazzo -peppe -peno -penberthy -penagos -peles -pelech -peiper -peight -pefferman -peddie -peckenpaugh -pean -payen -pavloski -pavlica -paullin -pattie -patteson -passon -passey -passe -passalacqua -pasquini -paskel -parter -partch -parriott -parrella -parraz -parmely -parizo -parisian -papelian -papasergi -pantojz -panto -panich -panchal -palys -palms -pallone -palinski -pali -palevic -pale -pagels -paciorek -pacho -pacella -paar -ozbun -overweg -overholser -ovalles -outhouse -outcalt -otterbein -otta -ostergren -osher -osbon -orzech -orwick -orrico -oropesa -orn -ormes -orillion -opal -onorati -onnen -omary -olk -olding -okonski -okimoto -ohlrich -ohayon -oguin -ogley -oftedahl -offen -ofallon -oeltjen -odam -ockmond -ockimey -ocean -obermeyer -oberdorf -obanner -oballe -oard -oakden -nyhan -nydam -numan -noyer -notte -nothstein -notestine -noser -nork -nolde -noa -nishihara -nishi -nikolic -nihart -nietupski -niesen -niehus -niece -nidiffer -nicoulin -nicolaysen -nicklow -nickl -nickeson -nichter -nicholl -ngyun -newsham -newmann -neveux -neuzil -neumayer -netland -nessen -nesheim -nelli -nelke -necochea -nazari -navy -navorro -navarez -navan -natter -natt -nater -nasta -narvaiz -nardelli -napp -nakahara -nairn -nagg -nager -nagano -nafziger -naffziger -nadelson -muzzillo -murri -murrey -murgia -murcia -muno -munier -mulqueen -mulliniks -mulkins -mulik -muhs -muffley -mozell -moynahan -mounger -mottley -motil -moseman -moseby -mosakowski -morten -mortell -morrisroe -morrero -mormino -morland -morger -morgenthaler -moren -morelle -morawski -morasca -morang -morand -moog -montney -montera -montee -montane -montagne -mons -monohan -monnett -monkhouse -moncure -momphard -molyneaux -molles -mollenkopf -molette -moland -mohs -mohmand -mohlke -moessner -moers -mockus -moccio -mlinar -mizzelle -mittler -mitri -mitchusson -mitchen -mistrot -mistler -misch -miriello -minkin -mininger -minerich -minehart -minderman -minden -minahan -milonas -millon -millholland -milleson -millerbernd -millage -militante -milionis -milhoan -mildenberger -milbury -mikolajczak -miklos -mikkola -mikes -migneault -mifsud -mietus -mieszala -mielnicki -midy -michon -michioka -micheau -michaeli -micali -methe -metallo -messler -mesch -merow -meroney -mergenthaler -meres -mercy -menuey -menousek -menning -menn -menghini -mendia -memmer -melot -mellow -mellenthin -melland -meland -meixner -meisenheimer -meineke -meinders -mehrens -mehlig -meglio -medsker -medicine -medero -mederios -meabon -mcwright -mcright -mcreath -mcrary -mcquirter -mcquerry -mcquary -mcphie -mcnurlen -mcnelley -mcnee -mcnairy -mcmanamy -mcmahen -mckowen -mckiver -mckinlay -mckearin -mcirvin -mcintrye -mchorse -mchaffie -mcgroarty -mcgoff -mcgivern -mceniry -mcelhiney -mcdiarmid -mccullars -mccubbins -mccrimon -mccovery -mccommons -mcclour -mccarrick -mccarey -mccallen -mcbrien -mcarthy -mayone -maybin -maximo -maxam -maurais -maughn -matzek -matts -matin -mathre -mathia -mateen -matava -masso -massar -massanet -masingale -mascaro -marthaler -martes -marso -marshman -marsalis -marrano -marolt -marold -markins -margulis -mardirosian -marchiano -marchak -marandola -marana -manues -mantis -mante -mansukhani -mansi -mannan -maniccia -mangine -manery -mandigo -manda -mancell -mamo -malstrom -malouf -malenfant -malena -maldenado -malandruccolo -malak -malabanan -makino -maj -maisonave -mainord -maino -mainard -maillard -maia -mahmud -mahdi -mahapatra -mahaley -mahaffy -magouirk -maglaras -magat -magan -maga -maffia -madrazo -madrano -maditz -mackert -mackellar -mackell -macht -macchia -maccarthy -maahs -lytal -lye -luzar -luzader -lutjen -lunger -lunan -luma -lukins -luhmann -luers -ludvigsen -ludlam -ludemann -luchini -lucente -lubrano -lubow -luber -lubeck -lowing -loven -loup -louise -louge -losco -lorts -lormand -lorenzetti -longford -longden -longbrake -lokhmatov -loge -loeven -loeser -locket -locey -locatelli -litka -lista -lisonbee -lisenbee -liscano -liranzo -liquori -liptrot -lionetti -lio -linscomb -linkovich -linington -lingefelt -lindler -lindig -lindall -lincks -linander -linan -limburg -limbrick -limbach -likos -lighthall -liford -lietzke -liebe -liddicoat -lickley -lichter -libel -lias -liapis -lezo -lewan -levitz -levesgue -leverson -levander -leuthauser -letbetter -lesuer -lesmeister -lesly -lerer -leppanen -lepinski -leota -lenherr -lembrick -lelonek -leisten -leiss -leins -leingang -leinberger -leinbach -leikam -leidig -lehtonen -lehnert -lehew -legier -lefchik -lecy -leconte -lecher -lebrecht -leather -leaper -lawter -lawrenz -lavy -laur -lauderbaugh -lauden -laudato -latting -latsko -latini -lassere -lasseigne -laspina -laso -laslie -laskowitz -laske -laser -lasenby -lascola -lariosa -larcade -lapete -laperouse -lanuza -lanting -lantagne -lansdale -lanphier -langmaid -langella -lanese -landrus -lampros -lamens -laizure -laitinen -laigle -lahm -lagueux -lagorio -lagomarsino -lagasca -lagana -lafont -laflen -lafavor -lafarge -laducer -ladnier -ladesma -lacognata -lackland -lacerte -labuff -laborin -labine -labauve -kuzio -kusterer -kussman -kusel -kusch -kurutz -kurdyla -kupka -kunzler -kunsman -kuni -kuney -kunc -kulish -kuliga -kulaga -kuilan -kuhre -kuhnke -kuemmerle -kueker -kudla -kudelka -kubinski -kubicki -kubal -krzyzanowski -krupicka -krumwiede -krumme -kross -kropidlowski -krokos -kroell -kritzer -kribs -kreitlow -kreisher -kraynak -krass -kranzler -kramb -kozyra -kozicki -kovalik -kovalchik -kovacevic -kotula -kotrba -koteles -kosowski -koskela -kosiba -koscinski -kosch -kory -korab -kopple -kopper -koppelman -koppel -konwinski -kon -kolosky -koloski -kolinsky -kolinski -kolbeck -kolasa -koepf -koda -kochevar -kochert -kobs -knust -knueppel -knoy -knieriem -knier -kneller -knappert -klitz -klintworth -klinkenberg -klinck -kleindienst -kleeb -klecker -kjellberg -kitten -kitsmiller -kisor -kisiel -kise -kirbo -kio -kinzle -kinkaid -kingsford -kingry -kimpton -kimel -kimberley -killmon -killick -kilgallon -kilcher -kihn -kiggins -kiecker -kher -khaleel -keziah -kettell -ketchen -keshishian -kersting -kersch -kerins -kercher -keno -kenefick -kemph -kempa -kelsheimer -kelln -kellenberger -kekahuna -keisling -keirnan -keimig -kehn -keal -ke -kaupp -kaufhold -kauffmann -katzenberg -katona -kaszynski -kaszuba -kassebaum -kasa -kartye -kartchner -karstens -karpinsky -karmely -karel -karasek -kapral -kaper -kanelos -kanahele -kampmann -kampe -kalp -kallus -kallevig -kallen -kaliszewski -kaleohano -kalchthaler -kalama -kalahiki -kaili -kahawai -kagey -justiss -jurkowski -jurgensmeyer -juilfs -josue -jopling -jondahl -jomes -joice -johannessen -joeckel -jezewski -jezek -jeswald -jervey -jeppsen -jenniges -jennifer -jennett -jemmott -jeffs -jeffry -jaurequi -janisch -janick -janice -jacek -jacaruso -iwanicki -ishihara -isenberger -isbister -iruegas -inzer -inyart -inscore -innocenti -inglish -infantolino -indovina -inaba -imondi -imdieke -imbert -illes -ida -iarocci -iannucci -huver -hutley -husser -husmann -hupf -huntsberger -hunnewell -hullum -huit -huish -huh -hughson -huft -hufstetler -hueser -hudnell -hovden -housen -houghtling -hoth -hossack -hoshaw -horsford -horry -hornbacher -horde -hoppenstedt -hopkinson -honza -honor -homann -holzmeister -holycross -holverson -holtzlander -holroyd -holmlund -hollywood -holderness -holderfield -holck -hojnacki -hohlfeld -hohenberger -hoganson -hogancamp -hoffses -hoerauf -hoell -hoefert -hodum -hoder -hockenbury -hoage -hisserich -hislip -hirons -hippensteel -hippen -hinkston -hindes -hinchcliff -hin -himmel -hillberry -hildring -hiester -hiefnar -hides -hibberd -hibben -heyliger -heyl -heyes -hevia -heu -hettrick -hert -hersha -hernandz -herkel -herber -henscheid -hennesy -henly -henegan -henebry -hench -hemsath -hemm -hemken -hemann -heltzel -hellriegel -hejny -heinl -heinke -heidinger -hegeman -hefferan -hedglin -hebdon -hearnen -hearing -heape -heagy -headings -headd -hazelbaker -havlick -hauschildt -haury -hassenfritz -hasenbeck -haseltine -hartstein -hartry -hartnell -harston -harpool -harmen -hardister -hardey -harders -harbolt -harbinson -haraway -haque -hansmann -hanser -hansch -hansberry -hankel -hanigan -haneline -hampe -hamons -hammerstone -hammerle -hamme -hammargren -hamelton -hamberger -hamasaki -halprin -halman -hallihan -halen -haldane -hails -haifley -hai -hages -hagadorn -hadwin -habicht -habermehl -gyles -gutzman -gutekunst -gustason -gusewelle -gurnsey -gurnee -gunterman -gumina -gulliver -gulbrandson -guiterez -guerino -guedry -gucwa -guardarrama -guagliano -guadagno -grulke -groote -groody -groft -groeneweg -grochow -grippe -grimstead -griepentrog -greenfeld -greenaway -grebe -graziosi -graw -gravina -grassie -grapes -granzow -grandjean -granby -gramacy -graces -gozalez -goyer -gotch -gosden -gorny -gormont -goodness -goodgion -gonya -gonnerman -gompert -golish -goligoski -goldmann -goike -goetze -godeaux -glenna -glaza -glassel -glaspy -glander -glady -giumarro -gitelman -gisondi -gismondi -girvan -girten -gironda -giovinco -ginkel -gilster -giesy -gierman -giddins -giardini -gianino -ghea -geurin -gett -getson -gerrero -germond -gere -gentsy -genta -gennette -genito -genis -gene -gendler -geltz -geiss -gehret -gegenheimer -geffert -geeting -gebel -gavette -gavenda -gaumond -gaudioso -gatzke -gatza -gattshall -gaton -gatchel -gasperi -gaska -gasiorowski -garritson -garrigus -garnier -garnick -gardinier -gardenas -garcy -garate -gandolfi -gamm -gamel -gambel -gallmon -gallemore -gallati -gainous -gainforth -gahring -gaffey -gaebler -gadzinski -gadbury -gabri -gabe -gaba -fyke -furtaw -furnas -furcron -funn -funck -fulwood -fulvio -fullmore -fukumoto -fuest -fuery -fuente -fuel -frymire -frush -frohlich -froedge -frodge -fritzinger -fricker -frericks -frein -freid -freggiaro -fratto -franzi -franciscus -fralix -fowble -fotheringham -foslien -foshie -fortmann -forsey -forkner -foppiano -fontanetta -fonohema -fogler -fockler -fluty -flusche -flud -florin -flori -flenory -fleharty -fleeks -flaxman -flash -flaming -fiumara -fitzmorris -finnicum -finkley -fineran -fillhart -filipi -fijal -fieldson -ficken -ficarra -fetch -festerman -fess -ferryman -ferner -fergason -ferell -fennern -femmer -feldmeier -feeser -feenan -federick -fedak -febbo -feazell -fearing -fazzone -fauth -fauset -faurote -faulker -faubion -fatzinger -fasick -fanguy -fambrough -falks -fahl -fabio -faaita -exler -ewens -estrado -esten -esteen -esquivez -espejo -esmiol -esguerra -esco -ertz -erspamer -ernstes -erisman -erhard -ereaux -ercanbrack -erbes -epple -entsminger -entriken -enslow -ennett -engquist -englebert -englander -engesser -engert -engeman -enge -enerson -end -emhoff -emge -emerald -elting -ellner -ellenberg -ellenbecker -elio -elfert -elden -elawar -ekstrand -eison -eismont -eisenbrandt -eiseman -eischens -ehrgott -egley -egert -eddlemon -economy -eckerson -eckersley -eckberg -echeverry -eberts -earthman -earnhart -eapen -eachus -dykas -dust -dusi -durning -during -durdan -dunomes -duncombe -dume -dullen -dullea -dulay -dul -duffett -dubs -dubard -drook -drenth -drahos -dragone -downin -downham -dowis -dowhower -doward -dovalina -dost -dopazo -doose -donson -donnan -dominski -dollarhide -dolinar -dolecki -dolbee -doege -dockus -dobler -dobkin -dobias -divoll -diviney -ditter -ditman -dissinger -dismang -dirlam -dinneen -dini -dingwall -dine -din -diloreto -dilmore -dillaman -dikeman -diiorio -dighton -diffley -dieudonne -dietel -dieringer -diercks -dienhart -diekrager -diefendorf -dicke -dicamillo -dibrito -dibona -dezeeuw -dewhurst -devins -deviney -deupree -detherage -despino -desmith -desjarlais -deshner -desha -desanctis -derring -derousse -derobertis -deridder -derego -derden -deprospero -deprofio -depping -deperro -denty -denoncourt -dencklau -demler -demirchyan -demichiel -demesa -demere -demaggio -delung -deluise -delmoral -delmastro -delmas -delligatti -delle -delena -delasbour -delarme -delargy -delagrange -delafontaine -deist -deiss -deighan -dehoff -degrazia -degman -defosses -deforrest -deeks -decoux -decarolis -debuhr -deberg -debarr -debari -dearmon -deare -deardurff -daywalt -dayer -davoren -davignon -daviau -dauteuil -dauterive -daul -darnley -darlin -darakjy -dapice -dannunzio -danison -daniello -damario -dalonzo -dallis -daleske -dalenberg -daiz -dains -daines -dagnese -dady -dadey -czyzewski -czapor -czaplewski -czajka -cyganiewicz -cuttino -cutrona -cussins -cusanelli -cuperus -cundy -cumiskey -cumins -cuizon -cuffia -cuffe -cuffari -cuccaro -cubie -cryder -cruson -crounse -cromedy -cring -creer -credeur -crea -cozort -cozine -cowee -cowdery -coventry -couser -courtway -courington -cotman -costlow -costell -corton -corsaro -corrieri -corrick -corradini -coron -coren -cord -corbi -corado -copus -coppenger -cooperwood -coontz -coonce -contrera -connealy -conell -comtois -compere -commins -commings -comegys -coma -colyar -colo -collister -collick -collella -coler -colborn -cohran -cogbill -coffen -cocuzzo -clynes -closter -clock -clipp -clingingsmith -clemence -clayman -classon -clas -clarey -clarence -clague -ciubal -citrino -citarella -cirone -cipponeri -cindrich -cimo -ciliberto -cichowski -ciccarello -cicala -chura -chubbuck -chronis -christlieb -chriss -chizek -chittester -chiquito -chimento -childree -chianese -chevrette -cheese -checo -chastang -chargualaf -chapmon -chantry -chahal -chafetz -cezar -ceruantes -cerrillo -cerrano -cerecedes -cerami -cegielski -cavallero -catinella -cassata -caslin -casano -casacchia -caruth -cartrette -carten -carodine -carnrike -carnall -carmicle -carlan -carlacci -caris -cariaga -cardine -cardimino -cardani -carbonara -carano -capua -capponi -cappellano -caporale -capelli -canupp -cantrel -cantone -canterberry -cannizzo -cannan -canelo -caneer -candill -candee -campbel -caminero -camble -caluya -callicott -calk -caito -caffie -caden -cadavid -cacy -cachu -cachola -cabreja -cabiles -cabada -caamano -byran -byon -buyck -bussman -bussie -bushner -burston -burnison -burkman -burkhammer -bures -burdeshaw -bumpass -bullinger -bullers -bulgrin -bugay -buffalo -budak -buczynski -buckendorf -buccieri -bubrig -brynteson -brunz -brunmeier -brunkow -brunetto -brunelli -brumwell -bruggman -brucki -brucculeri -brozovich -browing -brotman -broda -brocker -broadstreet -brix -britson -brinck -brimmage -brightly -brierre -bridenstine -brezenski -brezee -brevik -brest -brentlinger -brentley -breidenbach -breckel -brech -breaker -brazzle -braughton -brauch -brattin -brattain -branhan -branford -braner -brander -braly -braegelmann -brabec -boyt -boyack -bowren -bowl -bovian -boughan -botton -botner -bosques -borzea -borre -boron -bornhorst -borgstrom -borella -boop -bontempo -bonniwell -bonnes -bonjour -bonillo -bonano -bolek -bohol -bohaty -boffa -boetcher -boesen -boepple -boehler -boedecker -boeckx -bodi -boal -bloodsworth -bloodgood -blome -blockett -blixt -blanchett -blackhurst -blackaby -bjornberg -bitzer -bittenbender -bitler -birchall -binnicker -binggeli -billett -bilberry -bijou -biglow -bierly -bielby -biegel -beu -berzas -berte -bertagnolli -berreth -bernhart -bergum -berentson -berenson -berdy -bercegeay -bentle -bentivegna -bentham -benscoter -benns -bennick -benjamine -beneze -benett -beneke -bendure -bendix -bendick -benauides -belman -bellus -bellott -bellefleur -bellas -beljan -belgard -beith -beinlich -beierle -behme -beevers -beermann -beeching -bedward -bedrosian -bedner -bedeker -bechel -becera -beaubrun -beardmore -bealmear -bazin -bazer -baumhoer -baumgarner -bauknecht -battson -battiest -basulto -baster -basques -basista -basiliere -bashi -barzey -barz -bartus -bartucca -bartek -barrero -barreca -barnoski -barndt -barklow -baribeau -barette -bares -barentine -bareilles -barch -barbre -barberi -barbagelata -baraw -baratto -baranoski -bar -baptise -bankson -bankey -bankard -banik -baltzley -ballen -balkey -balius -balderston -bakula -bakalar -baffuto -baerga -badoni -backous -bachtel -bachrach -baccari -babine -babilonia -baar -azbill -azad -aycox -ayalla -avolio -austerberry -aughtry -aufderheide -auch -attanasio -athayde -atcher -astor -asselta -aslin -aslam -ashwood -ashraf -ashbacher -asbridge -asakura -arzaga -arriaza -arrez -arrequin -arrants -armiger -armenteros -armbrister -arko -argumedo -arguijo -ardolino -arcia -arbizo -aravjo -aper -anzaldo -antu -antrikin -antony -antonia -antonetty -antinoro -anthon -antenucci -anstead -annese -ankrum -andreason -andrado -andaverde -anastos -anable -amsterdam -amspoker -amrine -amrein -amorin -amel -ambrosini -amber -alsbrook -alnutt -almasi -allessio -allateef -alison -aldous -alderink -aldaz -akmal -akard -aiton -aites -ainscough -aikey -ahrends -ahlm -aguada -agans -adelmann -adebisi -addesso -adaway -adamaitis -ackison -abud -abendroth -abdur -abdool -aamodt -zywiec -zwiefelhofer -zwahlen -zunino -zuehl -zmuda -zmolek -zizza -ziska -zinser -zinkievich -zinger -zingarelli -ziesmer -ziegenfuss -ziebol -zettlemoyer -zettel -zervos -zenke -zembower -zelechowski -zelasko -zeise -zeek -zeeb -zarlenga -zarek -zaidi -zahnow -zahnke -zaharis -zach -zacate -zabrocki -zaborac -yurchak -yuengling -younie -youngers -youell -yott -yoshino -yorks -yordy -yochem -yerico -yerdon -yeiser -yearous -yearick -yeaney -ybarro -yasutake -yasin -yanke -yanish -yanik -yamazaki -yamat -yaggi -ximenez -wyzard -wynder -wyly -wykle -wutzke -wuori -wuertz -wuebker -wrightsel -worobel -worlie -worford -worek -woolson -woodrome -woodly -woodling -wontor -wondra -woltemath -wollmer -wolinski -wolfert -wojtanik -wojtak -wohlfarth -woeste -wobbleton -witz -wittmeyer -witchey -wisotzkey -wisnewski -wisman -wirch -wippert -wineberg -wimpee -wilusz -wiltsey -willig -williar -willers -willadsen -wilfred -wildhaber -wilday -wigham -wiggen -wiewel -wieting -wietbrock -wiesel -wiesehan -wiersema -wiegert -widney -widmark -wickson -wickings -wichern -whtie -whittie -whitlinger -whitfill -whitebread -whispell -whetten -wheeley -wheeles -wheelen -whatcott -weyland -weter -westrup -westphalen -westly -westland -wessler -wesolick -wesler -wesche -werry -wero -wernecke -werkhoven -wellspeak -wellings -welford -welander -weissgerber -weisheit -weins -weill -weigner -wehrmann -wehrley -wehmeier -wege -weers -weavers -watring -wassum -wassman -wassil -washabaugh -wascher -wary -warth -warbington -wanca -wammack -wamboldt -walterman -walkington -walkenhorst -walinski -wakley -wagg -wadell -vuckovich -voogd -voller -vokes -vogle -vogelsberg -vodicka -vissering -visage -vipond -vincik -villalona -vil -vickerman -vettel -veteto -vessel -vesperman -vesco -vertucci -versaw -verba -ventris -venecia -vendela -venanzi -veldhuizen -vehrs -veer -vee -vay -vaughen -vasilopoulos -vascocu -varvel -varno -varlas -varland -vario -vareschi -vanwyhe -vanweelden -vansciver -vannaman -vanluven -vanloo -vanlaningham -vankomen -vanhout -vanhampler -vangorp -vangorden -vanella -vandresar -vandis -vandeyacht -vandewerker -vandevsen -vanderwall -vandercook -vanderberg -vanbergen -valko -valesquez -valeriano -valen -vachula -vacha -uzee -uva -uselman -urizar -urion -urben -upthegrove -unzicker -unsell -unick -umscheid -umin -umanzor -ullo -ulicki -uhlir -uddin -tytler -tymeson -tyger -twisdale -twedell -tweddle -turrey -tures -turell -tur -tupa -tuitt -tuberville -tubby -tryner -trumpower -trumbore -truly -troglen -troff -troesch -trivisonno -tritto -tritten -tritle -trippany -tringali -tretheway -treon -trench -trejos -tregoning -treffert -traycheff -travali -trauth -trauernicht -transou -trane -trana -toves -tosta -torp -tornquist -tornes -torchio -toppings -toor -tooks -tonks -tomblinson -tomala -tollinchi -tolles -tokich -toh -tofte -todman -toddy -titze -timpone -tillema -tier -tienken -tiblier -thyberg -thursby -thurrell -thurm -thruman -thorsted -thorley -thomer -thoen -thissen -theimer -thee -thayn -thanpaeng -thammavongsa -thalman -texiera -texidor -teverbaugh -teska -ternullo -teplica -tepe -teno -tenholder -tenbusch -tenbrink -temby -tejedor -teitsworth -teichmann -tehan -tegtmeyer -tees -teem -tays -taubert -tauares -taschler -tartamella -tarquinio -tarbutton -tappendorf -tapija -tansil -tannahill -tamondong -talahytewa -takashima -taecker -tabora -tabin -tabbert -szymkowski -szymanowski -syversen -syrett -syracuse -synnott -sydnes -swimm -sweney -swearegene -swartzel -swanstrom -svedin -suss -suryan -surrey -supplice -supnet -suoboda -sundby -sumaya -sumabat -sulzen -sukovaty -sukhu -sugerman -sugalski -sugai -sudweeks -sudbeck -sucharski -stutheit -stumfoll -stuffle -struyk -strutz -strumpf -strowbridge -strothman -strojny -strohschein -stroffolino -stribble -strevel -strenke -stremming -strehle -strattman -stranak -stram -stracke -stoudamire -storks -stopp -stonebreaker -stolt -stoica -stofer -stockham -stockfisch -stjuste -stiteler -stiman -stillions -stillabower -stierle -sterlace -sterk -stepps -stenquist -stenner -stellman -steines -steinbaugh -steinbacher -steiling -steidel -steffee -stavinoha -staver -stastny -stasiuk -starrick -starliper -starlin -staniford -staner -standre -standefer -standafer -stanczyk -stallsmith -stagliano -staehle -staebler -stady -stadtmiller -squyres -spurbeck -sprunk -spranger -spoonamore -spoden -spilde -spezio -speros -sperandio -specchio -spearin -spayer -spallina -spadafino -sovie -sotello -sortor -sortino -sorrow -soros -sorola -sorbello -sonner -sonday -somes -soloway -soledad -soens -soellner -soderblom -sobin -sniezek -sneary -smyly -smutnick -smoots -smoldt -smitz -smitreski -smallen -smades -slunaker -sluka -slown -slovick -slocomb -slinger -slife -slicker -sleeter -slanker -skufca -skubis -skrocki -skov -skjei -skilton -skill -skarke -skalka -skalak -skaff -sixkiller -sitze -siter -sisko -sirman -sirls -sinotte -sinon -sincock -sincebaugh -simmoms -similien -silvius -silton -silloway -sikkema -sieracki -sienko -siemon -siemer -siefker -sieberg -siebens -siebe -sicurella -sicola -sickle -shumock -shumiloff -shuffstall -shuemaker -shuart -shu -shroff -shreeve -shostak -shortes -shorr -shivley -shintaku -shindo -shimomura -shiigi -sherow -sherburn -shepps -shenefield -shelvin -shelstad -shelp -sheild -sheaman -shaulis -sharrer -sharps -sharpes -shareef -shappy -shapero -shanor -shandy -shad -seyller -severn -sessom -sesley -servidio -serrin -sero -serge -septon -septer -sennott -sengstock -senff -senese -semprini -semone -sembrat -selva -sella -selbig -seiner -seif -seidt -sehrt -seemann -seelbinder -sedlay -sebert -searing -seaholm -seacord -seaburg -se -scungio -scroggie -scritchfield -scripture -scrimpsher -scrabeck -score -scorca -scobey -scivally -schwulst -schwinn -schwieson -schwery -schweppe -schwartzenbur -schurz -schumm -schulenburg -schuff -schuerholz -schryer -schrager -schorsch -schonhardt -schoenfelder -schoeck -schoeb -schnitzler -schnick -schnautz -schmig -schmelter -schmeichel -schluneger -schlosberg -schlobohm -schlenz -schlembach -schleisman -schleining -schleiff -schleider -schink -schilz -schiffler -schiavi -scheuer -schemonia -scheman -schelb -schaul -schaufelberge -scharer -schardt -scharbach -schabacker -scee -scavone -scarth -scarfone -scalese -sayne -sayed -savitz -satterlund -sattazahn -satow -sastre -sarr -sarjeant -sarff -sardella -santoya -santoni -santai -sankowski -sanft -sandow -sandoe -sandhaus -sandefer -sampey -samperi -sammarco -samia -samek -samay -samaan -salvadore -saltness -salsgiver -saller -salaz -salano -sakal -saka -saintlouis -saile -sahota -saggese -sagastume -sagan -sadri -sadak -sachez -saalfrank -saal -saadeh -ryu -rynn -ryley -ryle -rygg -rybarczyk -ruzich -ruyter -ruvo -rupel -ruopp -rundlett -runde -rundall -runck -rukavina -ruggiano -rufi -ruef -rubright -rubbo -rowbottom -route -rotner -rotman -rothweiler -rothlisberger -rosseau -rossean -rossa -roso -rosiek -roshia -rosenkrans -rosener -rosencrantz -rosencrans -rosello -roques -rookstool -rondo -romasanta -romack -rokus -rohweder -rog -roethler -roediger -rodwell -rodrigus -rodenbeck -rodefer -rodarmel -rockman -rockholt -rockford -rochow -roches -roblin -roblez -roble -robers -roat -rizza -rizvi -rizk -rixie -riveiro -rius -ritschard -ritrovato -risi -rishe -rippon -rinks -rings -ringley -ringgenberg -ringeisen -rimando -rilley -rijos -rieks -rieken -riechman -riddley -ricord -rickabaugh -richmeier -richesin -reyolds -rexach -revere -requena -reppucci -reposa -renzulli -renter -renault -remondini -relic -reither -reisig -reifsnider -reifer -reibsome -reibert -rehor -rehmann -reedus -redshaw -redfox -reczek -recupero -recor -reckard -recher -rear -realbuto -razer -rayman -raycraft -rayas -rawle -raviscioni -ravetto -ravenelle -rauth -raup -rattliff -rattley -rathfon -rataj -rasnic -rappleyea -rapaport -ransford -rann -rampersad -ramis -ramcharan -rainha -rainforth -ragans -ragains -rafidi -raffety -raducha -radsky -radler -radatz -raczkowski -rack -rabenold -quraishi -quinerly -quiet -quercia -quarnstrom -qian -pusser -puppo -pullan -pulis -pugel -puccini -puca -pruna -prowant -provines -pronk -prinkleton -prindall -primas -priesmeyer -pridgett -prevento -preti -presser -presnall -preseren -presas -presa -prchal -prattis -pratillo -praska -prak -powis -powderly -postlewait -postle -posch -porteus -portal -porraz -popwell -popoff -poplaski -poniatoski -pollina -polle -polhill -poletti -polaski -pokorney -poke -pointdexter -poinsette -po -ploszaj -plitt -pletz -pletsch -plemel -pleitez -playford -plaxco -platek -plambeck -plagens -placido -pisarski -pinuelas -pinnette -pinick -pinell -pinciaro -pinal -pilz -piltz -pillion -pilkinton -pilar -pikul -piepenburg -piening -piehler -piedrahita -piechocki -picknell -picker -pickelsimer -pich -picariello -phoeuk -phillipson -philbert -pherigo -phelka -peverini -petronis -petrina -petrash -petramale -petraglia -pery -personius -perrington -perrill -perpall -perot -perman -peragine -pentland -pennycuff -penninger -pennie -pennachio -penhall -pendexter -pencil -penalver -pelzel -pelter -pelow -pelo -peli -peinado -pedley -pecue -pecore -pechar -peairs -paynes -payano -pawelk -pavlock -pavlich -pavich -pavek -pautler -paulik -patmore -patella -patee -patalano -passini -passeri -paskell -parrigan -parmar -parayno -paparelli -pantuso -pante -panico -panduro -panagos -pama -palmo -pallotta -paling -palamino -pake -pajtas -pailthorpe -pahler -pagon -paglinawan -pagley -paget -paetz -paet -padley -pacleb -pacific -pachelo -pacer -paccione -pabey -ozley -ozimek -ozawa -owney -outram -oun -ouillette -oudekerk -ouch -ostrosky -ostermiller -ostermann -osterloh -osterfeld -ossenfort -osoria -oshell -orsino -orscheln -orrison -ororke -orf -orellano -orejuela -ordoyne -opsahl -opland -onofre -onaga -omahony -olszowka -olshan -ollig -oliff -olien -olexy -oldridge -oldfather -older -olalde -okun -okumoto -oktavec -okin -oka -ohme -ohlemacher -ohanesian -odneal -odgers -oderkirk -odden -ocain -obradovich -oakey -nussey -nunziato -nunoz -nunnenkamp -nuncio -noviello -novacek -nothstine -nostrand -northum -norsen -norlander -norkus -norgaard -norena -nored -nobrega -niziolek -ninnemann -nievas -nieratko -nieng -niedermeyer -niedermaier -nicolls -niang -newham -newcome -newberger -nevills -nevens -nevel -neumiller -netti -net -nessler -neria -nemet -nelon -nellon -neller -neisen -neilly -neifer -neid -negro -neering -neehouse -neef -needler -nebergall -nealis -naumoff -naufzinger -narum -narro -narramore -naraine -napps -nansteel -namisnak -namanny -nallie -nakhle -naito -naccari -nabb -myracle -myra -myhand -mwakitwile -muzzy -muscolino -musco -muscente -muscat -muscara -musacchia -musa -murrish -murfin -muray -munnelly -munley -munivez -mundine -mundahl -munari -mulling -mullennex -mullendore -mulkhey -mulinix -mulders -muhl -muenchow -muellner -mudget -mudger -muckenfuss -muchler -mozena -movius -mouldin -motola -mosseri -mossa -moselle -mory -morsell -morrish -morles -morie -morguson -moresco -morck -moppin -moosman -moons -montuori -montono -montogomery -montis -monterio -monter -monsalve -mongomery -mongar -mondello -moncivais -monard -monagan -molt -mollenhauer -moldrem -moldonado -molano -mokler -moisant -moilanen -mohrman -mohamad -moger -mogel -modine -modin -modic -modha -modena -mlynek -miya -mittiga -mittan -mitcheltree -miss -misfeldt -misener -mirchandani -miralles -miotke -miosky -minty -mintey -mins -minnie -mince -minassian -minar -mimis -milon -milloy -millison -milito -milfort -milbradt -mikulich -mikos -miklas -mihelcic -migliorisi -migliori -miesch -midura -miclette -michele -michela -micale -mezey -mews -mewes -mettert -mesker -mesich -mesecher -merthie -mersman -mersereau -merrithew -merriott -merring -merenda -merchen -mercardo -merati -mentzel -mentis -mentel -menotti -meno -mengle -mendolia -mellick -mellett -melichar -melhorn -melendres -melchiorre -meitzler -mehtani -mehrtens -megan -meditz -medeiras -meckes -me -mcteer -mctee -mcparland -mcniell -mcnealey -mcmanaway -mcleon -mclay -mclavrin -mcklveen -mckinzey -mcken -mckeand -mckale -mcilwraith -mcilroy -mcgreal -mcgougan -mcgettigan -mcgarey -mcfeeters -mcelhany -mcdaris -mccomis -mccomber -mccolm -mccollins -mccollin -mccollam -mccoach -mcclory -mcclennon -mccathern -mccarthey -mccarson -mccarrel -mccargar -mccandles -mccamish -mccally -mccage -mcbrearty -mcaneny -mcanallen -mcalarney -mcaferty -mazzo -mazy -mazurowski -mazique -mayoras -mayden -maxberry -mauller -matusiak -mattsen -matthey -matters -matkins -mathiasen -mathe -mateus -mate -matalka -masullo -massay -mashak -mascroft -martinex -martenson -marsiglia -marsella -marseille -maroudas -marotte -marner -marlo -markes -marina -maret -mareno -marean -marcinkiewicz -marchel -marasigan -manzueta -manzanilla -manternach -manring -manquero -manoni -manne -mankowski -manjarres -mangen -mangat -mandonado -mandia -mancias -manbeck -mamros -mam -maltez -mallia -mallar -malla -mall -malen -malaspina -malahan -malagisi -malachowski -makowsky -makinen -makepeace -majkowski -majid -majestic -majercin -maisey -mainguy -mailliard -maignan -mahlman -maha -magsamen -magpusao -magnano -magley -magedanz -magarelli -magaddino -maenner -madnick -maddrey -madaffari -macnaughton -macmullen -macksey -macknight -macki -macisaac -maciejczyk -maciag -macho -machenry -machamer -macguire -macdougal -macdaniel -maccormack -maccabe -mabbott -mabb -lynott -lyndon -lym -lydia -lycan -luy -lutwin -luscombe -lusco -lusardi -luria -lunetta -lundsford -lumas -luisi -luevanos -lueckenhoff -ludgate -ludd -lucherini -lubbs -lozado -lovie -lourens -lounsberry -loughrey -loughary -lotton -losser -loshbaugh -loser -loseke -loscalzo -los -lortz -loperena -loots -loosle -looman -longstaff -longobardi -longbottom -lomay -lomasney -lohrmann -lohmiller -logalbo -loetz -loeffel -lodwick -lodrigue -lockrem -llera -llarena -liv -littrel -littmann -lisser -lippa -lipner -linnemann -lingg -lindemuth -lindeen -limbo -lillig -likins -lights -lieurance -liesmann -liesman -liendo -lickert -lichliter -leyvas -leyrer -lewy -leubner -letters -lesslie -lesnick -lesmerises -lerno -lequire -lepera -lepard -lenske -leneau -lempka -lemmen -lemm -lemere -leinhart -leichner -leicher -leibman -lehmberg -leggins -lebeda -leavengood -leanard -lazaroff -laventure -lavant -lauster -laumea -latigo -lasota -lashure -lasecki -lascurain -lartigue -larouche -lappe -laplaunt -laplace -lanum -lansdell -lanpher -lanoie -lankard -laniado -langowski -langhorn -langfield -langfeldt -landt -landingham -landerman -landavazo -lampo -lampke -lamper -lamery -lambey -lamadrid -lallemand -laisure -laigo -laguer -lagerman -lageman -lagares -lacosse -lachappelle -labs -laborn -labonne -kyung -kuzia -kutt -kutil -kus -kurylo -kurowski -kuriger -kupcho -kulzer -kulesa -kules -kuhs -kuhne -krutz -krus -krupka -kronberg -kromka -kroese -krizek -krivanek -krishna -kringel -kreiss -kratofil -krapp -krakowsky -kracke -kozlow -koy -kowald -kover -kovaleski -kothakota -kosten -koskinen -kositzke -korff -korey -korbar -kor -kopplin -koplin -koos -konyn -konczak -komp -komo -kolber -kolash -kolakowski -kohm -kogen -koestner -koegler -kodama -kocik -kochheiser -kobler -kobara -knezevich -kneifl -knapchuck -knabb -klutz -klugman -klosner -klingel -klimesh -klice -kley -kleppe -klemke -kleinmann -kleinhans -kleinberg -kleffner -kleckley -klase -kisto -kissick -kisselburg -kirsten -kirschman -kirks -kirkner -kirkey -kirchman -kipling -kinville -kinnunen -kingdom -kimmey -kimmerle -kimbley -kilty -kilts -killmeyer -killilea -killay -kiest -kierce -kiepert -kielman -khalid -kewal -keszler -kesson -kesich -kerwood -kerksiek -kerkhoff -kerbo -keranen -keomuangtai -kenter -kennelley -keniry -kendzierski -kempner -kemmis -kemerling -kelsay -kelchner -kela -keithly -keipe -kegg -keer -keahey -kaywood -kayes -kawahara -kasuboski -kastendieck -kassin -kasprzyk -karraker -karnofski -karman -karger -karge -karella -karbowski -kapphahn -kap -kannel -kamrath -kaminer -kamansky -kalua -kaltz -kalpakoff -kalkbrenner -kaku -kaib -kaehler -kackley -kaber -justo -juris -jurich -jurgenson -jurez -junor -juniel -juncker -jugo -jubert -jowell -jovanovic -josiah -joosten -joncas -joma -johnso -johanns -jodoin -jockers -joans -jinwright -jinenez -jimeson -jerrett -jergens -jerden -jerdee -jepperson -jendras -jeanfrancois -jazwa -jaussi -jaster -jarzombek -jarencio -janocha -jakab -jadlowiec -jacobsma -jach -izaquirre -iwaoka -ivaska -iturbe -israelson -ismael -isles -isachsen -isaak -irland -inzerillo -insogna -ingegneri -ingalsbe -inciong -inagaki -idol -icenogle -hyon -hyett -hyers -huyck -hutti -hutten -hutnak -hussar -husky -hurrle -hurford -hurde -hupper -hunkin -hunkele -hunke -hun -humann -huhtasaari -hugger -hugel -huge -hufft -huegel -hrobsky -hren -hoyles -howlin -hovsepian -hovenga -hovatter -houdek -hotze -hossler -hossfeld -hosseini -horten -hort -horr -horgen -horen -hoopii -hoon -hoogland -hontz -honnold -homewood -holway -holtgrewe -holtan -holstrom -holstege -hollway -hollingshed -holling -hollenback -hollard -holberton -hoines -hogeland -hofstad -hoetger -hoen -hoaglund -hirota -hintermeister -hinnen -hinders -hinderer -hinchee -himelfarb -himber -hilzer -hilling -hillers -hillegas -hildinger -hignight -highman -hierholzer -heyde -hettich -hesketh -herzfeld -herzer -hershenson -hershberg -hernando -hermenegildo -hereth -hererra -hereda -herbin -heraty -herard -hepa -henschel -henrichsen -hennes -henneberger -heningburg -henig -hendron -hendericks -hemple -hempe -hemmingsen -hemler -helvie -helmly -helmbrecht -heling -helin -helfrey -helble -helaire -heizman -heisser -heiny -heinbaugh -heigh -heidemann -heidema -heiberger -hegel -heerdt -heeg -heefner -heckerman -heckendorf -heavin -headman -haynesworth -haylock -hayakawa -hawksley -hawking -haverstick -haut -hausen -hauke -haubold -hattan -hattabaugh -hasten -hasstedt -hashem -haselhorst -harrist -harpst -haroldsen -harmison -harkema -hark -harison -hariri -harcus -harcum -harcourt -harcharik -hanzel -hanvey -hantz -hansche -hansberger -hannig -hanken -hanhardt -hanf -hanauer -hamberlin -halward -halsall -hals -hallquist -hallmon -halk -halbach -halat -hajdas -hainsworth -haik -hahm -hagger -haggar -hader -hadel -haddick -hackmann -haasch -haaf -guzzetta -guzy -gutterman -gutmann -gutkowski -gustine -gursky -gurner -gunsolley -gumpert -gumbel -gulla -guilmain -guiliani -guier -guers -guerero -guerena -guebara -guadiana -grunder -grothoff -grosland -grosh -groos -grohs -grohmann -groepper -grodi -grizzaffi -grissinger -grippi -grinde -griffee -grether -greninger -greigo -gregorski -greger -grega -greenberger -graza -grattan -grasse -gras -grano -gramby -gradilla -govin -goutremout -goulas -gotay -gosling -gorey -goren -gordner -goossen -goon -goodwater -gonzaga -gonyo -gonska -gongalves -gomillion -gombos -golonka -gollman -goldtrap -goldammer -golas -golab -gola -gogan -goffman -goeppinger -godkin -godette -glore -glomb -glauner -glassey -glasner -gividen -giuffrida -gishal -giovanelli -ginoza -ginns -gindlesperger -gindhart -gillem -gilger -giggey -giebner -gibbson -giacomo -giacolone -giaccone -giacchino -ghere -gherardini -gherardi -gfeller -getts -gerwitz -gervin -gerstle -gerfin -geremia -gercak -general -gener -gencarelli -gehron -gehrmann -geffers -geery -geater -gawlik -gaudino -garsia -garrahan -garrabrant -garofolo -garigliano -garfinkle -garelick -gardocki -garafola -gappa -gantner -ganther -gangelhoff -gamarra -galstad -gally -gallik -gallier -galimba -gali -galassi -gaige -gadsby -gabby -gabbin -gabak -fyall -furney -funez -fulwider -fulson -fukunaga -fujikawa -fugere -fuertes -fuda -fryson -frump -frothingham -froning -froncillo -frohling -froberg -froats -fritchman -frische -friedrichsen -friedmann -fridge -friddell -frid -fresch -frentzel -freno -frelow -freimuth -freidel -freehan -freeby -freeburn -fredieu -frederiksen -fredeen -frazell -frayser -fratzke -frattini -franze -franich -francescon -francesco -frames -framer -fraiser -fragman -frack -foxe -fowlston -fosberg -fortna -fornataro -forden -foots -foody -fogt -foglia -fogerty -fogelson -flygare -flowe -florentine -flinner -flem -flatten -flath -flater -flahaven -flad -fjeld -fitanides -fistler -fishbaugh -firsching -fireman -finzel -finical -fingar -filosa -filicetti -filby -fierst -fierra -ficklen -ficher -fersner -ferrufino -ferrucci -fero -ferns -ferlenda -ferko -fergerstrom -ferge -fenty -fent -fennimore -fendt -femat -felux -felman -feldhaus -feisthamel -feijoo -feiertag -fehrman -fehl -feezell -feeny -feeback -fedigan -fedder -fechner -feary -fayson -faylor -fauteux -faustini -faure -fauci -fauber -fattig -farruggio -farrens -fare -faraci -fantini -fantin -fanno -fannings -faniel -fallaw -falker -falkenhagen -fajen -fahrner -fabel -fabacher -eytcheson -eyster -exford -exel -exe -evetts -evenstad -evanko -euresti -euber -etcitty -estler -esther -essner -essinger -esplain -espenshade -espanol -espaillat -escribano -escorcia -errington -errett -errera -erlanger -erenrich -erekson -erber -entinger -ensworth -ensell -enno -ennen -englin -engblom -engberson -encinias -enama -emel -elzie -elsbree -elmo -elman -elm -ellebracht -elkan -elfstrom -elerson -eleazer -eleam -eldrige -elcock -einspahr -eike -eidschun -eid -eickman -eichele -eiche -ehlke -eguchi -eggink -edouard -edgehill -eckes -eblin -ebberts -eavenson -earvin -eardley -eagon -eader -dzubak -dylla -dyckman -dwire -dutrow -dutile -dusza -dustman -dusing -duryee -durupan -durtschi -durtsche -durell -dunny -dunnegan -dunken -dun -dumm -dulak -duker -dukelow -dufort -dufilho -duffee -duett -dueck -dudzinski -dudasik -duckwall -duchemin -dubrow -dubis -dubicki -duba -drust -druckman -drinnen -drewett -drewel -dreitzler -dreckman -drappo -draffen -drabant -doyen -dowding -doub -dorson -dorschner -dorrington -dorney -dormaier -dorff -dorcy -donges -donelly -donel -domangue -dols -dollahite -dolese -doldo -doiley -dohrman -dohn -doheny -doceti -dobry -dobrinski -dobey -divincenzo -dischinger -dirusso -dirocco -dipiano -diop -dinitto -dinehart -dimsdale -diminich -dimalanta -dillavou -dilello -difusco -diffey -diffenderfer -diffee -difelice -difabio -dietzman -dieteman -diepenbrock -dieckmann -dicey -dicampli -dibari -diazdeleon -diallo -dewitz -dewiel -devoll -devol -devincent -devier -devendorf -devalk -detten -detraglia -dethomas -deter -detemple -desler -desharnais -desanty -derocco -dermer -derks -derito -derick -derhammer -deraney -dequattro -depass -depadua -deon -denzel -denyes -denyer -dentino -denlinger -deneal -demory -demopoulos -demontigny -demonte -demeza -delsol -delrosso -delpit -delpapa -delouise -delone -delo -delmundo -delmore -delmar -dellapaolera -delfin -delfierro -deleonardis -delenick -delcarlo -delcampo -delcamp -delawyer -delaware -delaroca -delaluz -delahunt -delaguardia -dekeyser -dekay -dejaeger -dejackome -dehay -dehass -degraffenried -degenhart -degan -deever -deedrick -deckelbaum -dechico -decent -dececco -decasas -debrock -debona -debeaumont -debarros -debaca -dearmore -deangelus -dealmeida -dawood -davney -daudt -datri -dasgupta -darring -darracott -darius -darcus -daoud -dansbury -dannels -danish -danielski -danehy -dancey -damour -dambra -daman -dalcour -daisey -dahlheimer -dagon -dadisman -dacunto -dacamara -dabe -cyrulik -cyphert -cwik -cussen -curles -curit -curby -curbo -cunas -cunard -cunanan -cumpton -culcasi -cui -cucinotta -cucco -csubak -cruthird -crumwell -crummitt -crumedy -crouthamel -cronce -cromack -cristina -crisafi -crimin -cresto -crescenzo -cremonese -creedon -credit -crankshaw -cozzens -cove -coval -courtwright -courcelle -coupland -counihan -coullard -cotrell -cosgrave -cornfield -cornelio -corish -cordoua -corbit -coppersmith -coonfield -cools -conville -contrell -contento -conser -conrod -connole -congrove -conery -condray -colver -coltman -colflesh -colcord -colavito -colar -coile -coggan -coenen -codling -coda -cockroft -cockrel -cockerill -cocca -coberley -coaster -clouden -clos -clive -clish -clint -clinkscale -clester -clammer -city -cittadino -citrano -ciresi -cillis -ciccarelli -ciborowski -ciarlo -ciardullo -chritton -chopp -choo -chirco -chilcoat -chevarie -cheslak -chernak -chay -chatterjee -chatten -chatagnier -chastin -chappuis -channing -channey -champlain -chalupsky -chalfin -chaffer -chadek -chadderton -cestone -cestero -cestari -cerros -cermeno -centola -cedrone -cayouette -cavan -cavaliero -casuse -castricone -castoreno -casten -castanada -castagnola -casstevens -cassio -cassi -cassanova -caspari -casher -cashatt -casco -casassa -casad -carville -carvel -cartland -cartegena -carsey -carsen -carrino -carrilo -carpinteyro -carmley -carlston -carlsson -carie -cariddi -caricofe -carel -cardy -carducci -carby -carangelo -capriotti -capria -caprario -capelo -canul -cantua -cantlow -canny -cangialosi -canepa -candland -campolo -campi -camors -camino -camfield -camelo -camarero -camaeho -calvano -callum -calliste -caldarella -calcutt -calcano -caissie -cager -caccamo -cabotage -cabble -byman -buzby -butkowski -bussler -busico -bushy -bushovisky -busbin -busard -busalacchi -burtman -burrous -burridge -burrer -burno -burin -burgette -burdock -burdier -burckhard -bunten -bungay -bundage -bumby -bultema -bulinski -bulan -bukhari -buganski -buerkle -buen -buehl -bue -budzynski -buckham -bub -bryk -brydon -bruyere -brunsvold -brunnett -brunker -brunfield -brumble -brue -brozina -brossman -brosey -brookens -broersma -brodrick -brockmeier -brockhouse -brisky -brinkly -brine -brincefield -brighenti -brigante -brieno -briede -bridenbaugh -bridegroom -brickett -bria -breske -brener -brenchley -breitkreutz -breitbart -breister -breining -breighner -breidel -brehon -breheny -breard -brean -breakell -breach -brazill -braymiller -braum -brau -brashaw -bransom -brandolino -brancato -branagan -braff -brading -bracker -brackenbury -bracher -braasch -boylen -boyda -boyanton -bowlus -bowditch -boutot -bouthillette -boursiquot -bourjolly -bouret -bouquet -boulerice -bouer -bouchillon -bouchie -bottin -boteilho -bosko -bosack -borys -bors -borla -borjon -borghi -borah -booty -booten -boore -bonuz -bonne -bongers -boneta -bonawitz -bonanni -bomer -bollen -bollard -bolla -bolio -boisseau -boies -boiani -bohorquez -boghossian -boespflug -boeser -boehl -boegel -bodrick -bodkins -bodenstein -bodell -bockover -bocci -bobbs -boals -boahn -boadway -bluma -bluett -bloor -blomker -blevens -blethen -bleecker -blayney -blaske -blasetti -blancas -blackner -blackie -bjorkquist -bjerk -bizub -bisono -bisges -bisaillon -birr -birnie -bires -birdtail -birdine -bina -billock -billinger -billig -billet -bigwood -bigalk -bielicki -biddick -biccum -biafore -bhagat -beza -beyah -bex -bevier -bevell -beute -betzer -betthauser -bethay -bethard -beshaw -bertholf -bertels -berridge -bernot -bernath -bernabei -berkson -berkovitz -berkich -bergsten -berget -berezny -berdin -beougher -benthin -benhaim -benenati -benejan -bemiss -beloate -bellucci -bells -bellotti -belling -bellido -bellaire -bellafiore -bekins -bekele -beish -behnken -beerly -beddo -becket -becke -bebeau -beauchaine -beaucage -beadling -beacher -bazar -baysmore -bayers -baun -baulch -baucher -batto -baton -bathe -basora -baruffi -bartimus -bartholemew -barrickman -barribeau -barreda -barrack -baroody -barness -barn -barmer -barillari -barias -barginear -barg -barde -barbone -barbato -barbarin -baoloy -bansal -bangle -banducci -bandel -bambeck -balter -ballif -baller -balladares -balkus -baldy -baldivia -balcerzak -balazs -baksh -bakr -bakemeier -baisey -bainer -bailly -bagge -badua -badini -bachtell -bachrodt -bachorski -bacak -babula -bable -babjeck -babecki -azbell -ayudan -awai -avita -avino -avellar -auzat -autman -autio -autery -ausman -ausland -aulabaugh -augle -aughenbaugh -augeri -audi -attleson -attig -attal -ator -asselmeier -askland -asiello -asch -arya -artola -arslanian -arron -arrezola -arnesen -arnau -armster -armintrout -armento -armato -arkenberg -ariaza -arguin -arenson -areias -archut -archibold -arave -arand -appelman -appello -antonson -antoniewicz -antill -antigua -annino -anness -anneler -angustia -angry -angiolillo -angelico -andreula -andreen -andreassi -andeson -ander -anda -anania -anadio -amicone -amenta -alzaga -alwardt -aluarado -altreche -altic -alsobrooks -alpern -almodova -almas -alltop -alliston -allio -alipio -alicandro -alibozek -alguire -alff -alcalde -alborn -albery -alberry -albany -albani -albanez -alavi -akkerman -ahlheim -agresti -agnelli -agilar -agib -aggas -afton -afonso -adil -adi -adank -adamsky -acri -accurso -abruzzese -abrew -abeln -abdullai -abdulkarim -abdelrahman -abbenante -abatiell -abaloz -zyskowski -zwiefel -zurmiller -zupancic -zuno -zumsteg -zumbrennen -zumaya -zullinger -zuleger -zozaya -zourkos -zorrilla -zorko -zolocsik -zittel -ziobro -zimmerly -zimmerli -zillmer -zigmond -zierer -zieber -zide -zevenbergen -zephier -zemel -zelazo -zeitlin -zeiser -zehring -zeger -zedian -zearfoss -zbranek -zaya -zatarain -zasso -zarn -zarilla -zari -zapp -zapf -zanghi -zange -zamacona -zalesky -zalazar -zaki -zafar -zade -yusko -yurman -yurkovich -yuhasz -younge -yiu -yeasted -yarrito -yark -yarboro -yannuzzi -yankovich -yanagawa -yago -yaffe -wyndham -wyms -wyand -wuensch -wryals -wrubel -worosz -woolstenhulme -wolpe -wolner -wolgamot -wolfman -wojtaszek -woeppel -woehr -wodarski -wizwer -wittkop -wisseman -wisor -wishum -wischmann -wisch -wirkkala -wion -wintjen -wintermute -wintermantel -winks -winkey -winham -windschitl -willow -willitzer -willier -willets -willenbrink -willen -willaimson -wilfahrt -wilenkin -wilen -wildeboer -wilchek -wigren -wignall -wiggington -wierson -wiegman -wiegel -widmayer -wider -widder -wickey -wickers -wical -whiton -whitenton -whiteleather -whiston -whirley -whetham -wheatly -wetenkamp -westenberger -westenbarger -westall -werblow -wengel -welson -welschmeyer -wellmann -wellbrock -wela -wekenborg -weiter -weisenstein -wehmann -weeda -wede -webley -waver -wauford -waterworth -watchorn -wassinger -wassell -wasp -wasiuta -warnix -warning -warnes -warmoth -warling -warila -warga -warburg -wanzer -want -waner -wanek -walwyn -walle -walkner -walin -waletzko -waler -walenta -wainer -wailes -wahr -waddel -wactor -wachtler -wachsman -wachowski -vulgamore -vukelich -vote -vost -voskamp -vorwerk -vongphakdy -volpi -volle -volino -voeks -vodopich -vittone -virdin -virag -vinroe -vinegar -vindiola -vilmont -villerreal -villaneva -villalobas -villada -vilhauer -vilchis -vilches -viggiani -vig -vieux -viets -vient -vielle -viejo -vidovich -vichi -veys -veverka -verser -veronesi -vernoy -vermont -verhines -verheyen -veren -vereb -verano -venuto -ventry -ventrone -veltz -velo -velazguez -veeser -vassey -vasque -varin -varaza -varady -vaquez -vaquerano -vansteenwyk -vanschoick -vanroekel -vannorden -vanlent -vangrouw -vangelder -vanes -vanelli -vanderkar -vanderbeek -vandenburgh -vandekieft -vandekamp -vancura -vancooten -vanconey -vancampen -vanaria -valvano -vallette -vallero -valiton -valin -valeri -valek -valdovino -valdivieso -vakas -vagas -vadala -vaccarella -vacanti -urrabazo -urguhart -urda -urbino -urbas -upmeyer -umphlett -ulerio -uitz -uchimura -uccello -tysdal -ty -tweedle -turrubiates -turrubiartes -turri -turnham -turko -turben -tupin -tumulty -tuffey -tuckey -tuckett -tucholski -tubolino -tubergen -tsuboi -tschumperlin -tschoepe -trynowski -tryba -truslow -truog -trumball -trudelle -trojillo -trnka -trizarry -trigueiro -trigleth -tricomi -tresselt -trentacoste -trendell -trenary -treml -treleven -treherne -treasure -trayer -travino -traugott -trappey -tranbarger -tramontano -tramell -trainum -traino -traill -trabucco -townsell -tourtillott -touar -toscani -torrella -torguson -torda -top -toomes -tonner -tommasino -tomaro -tolve -tolefree -toguchi -tofflemire -tofanelli -tody -toce -tobacco -toan -toalson -tkacik -tirone -tipple -tippery -tinson -tinnell -timper -timmers -times -timblin -tilotta -tillberg -tijernia -tigges -tigar -tielking -thyng -thonen -thomley -thombs -thimmesch -thier -thevenin -theodorov -theodoropoulo -tharnish -tharaldson -thackaberry -tewari -tetu -tetter -tersigni -tepezano -tennon -tennent -teichman -teehan -tayloe -taus -tatis -tata -tat -tashima -tarufelli -tarlow -tarkowski -tarka -targett -taran -tarabokija -tappen -tanzer -tanous -tanigawa -taneja -tammo -tallerico -tallada -talk -talhelm -takehara -takata -tagliavia -taffer -tadman -tacdol -tacconi -tables -szewczak -szeredy -szanto -sympson -symmes -syers -sydney -syas -swinny -swierk -swendsen -sweigard -sweezey -sweesy -sween -sweely -sweed -sweazy -swauger -swansbrough -swango -swanda -swamp -swallows -swaggerty -svatek -survant -surowka -surina -suozzi -sunstrom -sunford -sundseth -sundahl -summerill -sumida -sumbler -suma -sulyma -sulla -sulieman -suit -sugiyama -suell -sudo -suddreth -sucher -sturn -sturkey -studzinski -studler -stuckmeyer -stryjewski -stroy -strotman -strollo -stroik -stroede -streeby -stredny -strazi -stray -strawderman -straiton -stower -stoudmire -stormont -stopka -stoneback -stoldt -stolarz -stolarski -stockmaster -stobb -stivason -stirk -stipp -stipes -stingel -stike -stiebel -stidd -steurer -sterley -sterle -stepro -stepovich -stephson -stenseth -stenerson -stello -steinbrook -steidley -stehlin -stegmaier -stefanow -steese -steenhuis -stavely -stave -stautz -staunton -stater -stas -startup -startt -startin -starratt -stargell -starcevich -stank -stanis -standing -stancliff -stanchfield -stanbrough -stakes -stahmer -staheli -staebell -stadtlander -stadheim -sroufe -sroczynski -srnsky -sreaves -srader -squeo -spuler -sproat -springmeyer -sprengeler -sport -spolar -spivack -spinale -spiegler -spickerman -spessard -spenner -speich -spaziano -sparaco -spalter -sowells -sovich -southmayd -southgate -sotto -sotomayer -sosaya -sorvillo -sorrel -soos -songco -somerset -somero -soll -soldan -solarzano -solana -sokal -soibelman -soesbe -sobotta -sobina -sobeck -soard -snorton -snopek -snoozy -snethen -smithhisler -smee -smaniotto -slusarski -slowe -slotnick -sleva -sleighter -slappey -skyers -skutt -skorcz -skoczylas -skillicorn -skiffington -skibicki -skerl -skehan -skalla -siwinski -sivley -sittloh -sitterly -sith -sit -sise -siroky -sirles -sirin -sirignano -siren -sinsabaugh -sinks -sinisi -sinibaldi -singson -sindlinger -simpkin -siminski -simcoe -siford -siegert -sidor -sidhom -siddique -siddell -sicotte -sichting -sicari -sic -siano -shufflebarger -shramek -shortnacy -sholler -sholette -sholders -shogren -shoenberger -shoemate -shoat -shinoda -shines -shimshak -shigley -sheward -shetrone -shetlar -sherretts -sherod -shenkle -shely -sheltra -shelpman -shellabarger -shelite -sheldrick -shelburn -sheinbein -shebby -shawley -shatrau -shartle -sharifi -shanker -shami -shamel -shamburg -shamas -shallow -shaffstall -shadowens -shackleton -shaak -seykora -seyfert -sevillano -sevcik -seubert -seu -setter -sesler -servatius -serrant -serramo -serl -serini -serenil -serapion -sept -sensibaugh -sens -senich -sengbusch -sendra -senate -semrau -semrad -sempertegui -semons -semke -selma -sellinger -seliga -sekel -seilheimer -seigfried -seesholtz -seefeld -seecharran -sedrakyan -seavy -search -seamster -seabold -scyoc -sculley -scullawl -scrogham -scow -scopa -scontras -sciulli -sciola -scifres -schweyen -schwering -schwerdtfeger -schweim -schweikert -schweder -schwebel -schwartzwalde -schusterman -schuhmann -schuerman -schuchman -schrotenboer -schreurs -schoppert -schopper -schools -schoneman -scholfield -schoeppner -schoenleber -schoeman -schoel -schnurbusch -schnepel -schnader -schlarb -schlappi -schlangen -schlaht -schiraldi -schinkel -schimizzi -schifo -schiesher -scheyer -schettler -scheppke -schepper -scheinost -scheidel -scheets -schatzman -scharwath -scharp -schaarschmidt -schaack -scarnato -scarnati -scaringi -scarcia -scarano -sberna -sawina -sawer -sawaya -sawatzky -savcedo -sauser -saumier -sauchez -sauceman -sathre -satawa -sasala -sartoris -sare -sarchet -saracco -santulli -santory -santorelli -santopietro -sansing -sanseverino -saniatan -sangiacomo -sanges -sanfratello -sanflippo -sandona -sandelin -sandate -samona -sammis -sambor -samano -salvitti -salvietti -salvi -salum -salsa -salonek -salm -salles -sall -salera -salemo -salee -salak -sakihara -sakasegawa -sakaguchi -sagastegui -saeturn -sadan -sacayanan -saborio -sabeiha -sabedra -sabagh -rzepecki -rzasa -ryser -ryner -rydman -rycroft -rybij -ruyes -ruttan -russon -rushe -rusert -rusell -runnells -rundstrom -rumschlag -rullman -ruka -ruiloba -ruh -ruggs -ruffer -ruest -rueluas -rueger -ruediger -rubinoff -rubendall -rozmus -roxburgh -rowls -rousch -rothove -rotelli -roszel -roske -roskam -rosensteel -rosendo -roome -rombough -romash -romanson -romanello -romance -rolison -rogol -rogas -roese -roehrs -roegner -roeger -rodrguez -rodeman -rodebaugh -rockenbaugh -rocconi -robleto -robateau -roarty -roaf -rivenberg -rivara -rivali -risse -risby -ripperger -riopelle -ringrose -rinebarger -rile -riggen -rigano -riff -rifenbark -rieper -rieffenberger -riedmayer -ridolfi -ridderhoff -rickon -rickers -rickels -richoux -richens -ribao -rhodarmer -rheingans -reznik -reveron -reus -reph -renko -remme -remlinger -remke -remily -reitano -reissig -reisher -reinitz -reinholtz -reines -reigstad -reigh -reichelderfer -rehnert -rehagen -redline -rediger -redhouse -redepenning -recla -rechkemmer -reando -razavi -rayson -rayna -rax -raveling -rauser -rauschenberg -raupach -raum -rauen -ratulowski -ratterree -ratering -rapin -rannels -rane -randhawa -ramus -ramsfield -rams -ramroop -ramano -raj -raina -raikes -ragonese -rafaniello -raetz -raether -raeside -radwan -radman -rademaker -radar -racki -rachlin -rabena -rabassa -rabadan -raad -quoss -quizon -quito -quintela -quimet -quilty -quilimaco -quidley -quezaire -quave -quarto -quaranto -quandel -qiu -qazi -pyrdum -pyon -pyeatt -puzinski -putnal -punter -pumphery -pumper -pump -pummell -pumarejo -pulvermacher -pultz -pully -pullens -pulkrabek -pulk -pudlinski -puccetti -przygocki -przybyszewski -prusha -prudente -prucnal -prottsman -prosch -prodoehl -procell -prinzivalli -primes -prey -presnar -presho -prentis -preisler -preisel -pratka -pratcher -prass -pozzuoli -powanda -poundstone -potters -potra -potestio -potempa -postlethwait -posas -portrum -portland -portilla -portie -popovitch -popken -ponzio -pontremoli -pontarelli -pombo -pomainville -polycarpe -pollart -politowski -politano -poliquin -polczynski -pokoj -poitevint -poissonnier -poeppel -poellot -poehlman -poehlein -podratz -pociask -plocher -pline -plessinger -plautz -platten -plass -plageman -placko -pizzola -pizzella -pittsenbarger -pittner -pitstick -pitsch -pitney -pitaniello -pistoresi -pirc -pinski -pinera -pincock -pinckley -pincince -piliero -pilat -pigue -pietschman -pierpoint -pierini -picon -picking -picardi -phlegm -phippin -phetteplace -pharel -pfundt -pfluger -pfeuffer -pfefferle -pezzulo -pezzano -peveler -pettersson -petsch -petrusky -petruska -petrulis -petrossian -petroske -petrini -petitte -petito -petela -petaccio -pesto -pestka -pesta -pessoa -perun -perrow -perricone -peros -perney -perlin -perigo -perella -percle -pepple -penz -penttila -pensiero -penigar -penez -pendrak -penas -pellowski -pellow -pellin -pelissier -pelini -pekrul -peevey -pedraja -pecher -peasel -payment -pavolini -paviolitis -paulsell -paulina -paule -patrum -patrone -patrie -patras -patera -patek -patane -pastrano -pastora -passow -passley -passaretti -passantino -paske -partible -parsa -parnes -parliman -parlato -paravati -paradowski -papaleo -papagni -paoletta -panzarino -pannunzio -panis -pandit -paluzzi -palomin -palomaki -pallanes -palla -pall -palino -palfreyman -palazzi -palanza -palagi -painton -pain -pahulu -paganico -paeth -padlo -padillia -paddy -paddick -paciolla -pacholski -paap -paa -owolabi -overshown -overocker -overgaard -ouchi -ottoson -ostrye -osterland -osland -oslan -osick -osen -osdoba -osberg -orzel -ortmeier -orren -ormerod -orio -orgeron -orengo -orbaker -opiela -opdahl -onks -oltrogge -olnick -olivarres -olide -oleksy -olaya -okray -okonek -okinaka -ojima -ojala -oinonen -ohotto -ohan -ogwin -ogborn -oflaherty -offill -oetken -oertle -oehlert -odems -oconnel -ocha -ocarroll -oby -oblak -oberst -obermann -obas -oachs -nydegger -nybo -nuuanu -nutile -nuse -nuriddin -nungesser -nuber -noy -novinger -nouri -northan -norseworthy -norrod -normington -nori -norenberg -nordine -nop -noori -noblet -nives -nist -niskala -nilan -nikolai -nigl -nightengale -nichole -ni -nhek -ngvyen -newville -newsam -newnham -newmeyer -newlan -newbert -neuschwander -neusch -neun -nethken -nethercutt -nesser -neske -neman -nelton -nelles -nekola -neiling -neeser -neelly -nedved -neang -navejar -naveja -nauarro -natho -nathe -natcher -naser -nasby -narlock -nanton -naillon -naill -naguin -nagele -naftzger -naegle -naegele -naef -nacke -nabritt -mynhier -myart -muzquiz -mutty -musolino -mushero -murtaugh -murie -muresan -murdough -mura -munuz -munstermann -munsen -munselle -munise -mungle -munerlyn -muncher -mulrooney -mullee -mulaney -mulanax -muhlhauser -muhlestein -mugleston -mugg -mugford -muckel -mucerino -mt -mrotek -mrnak -mozdzierz -moyler -moury -moulin -moulding -moul -mottai -mostyn -mosimann -mosholder -mosburg -morrisseau -moron -morice -morgante -moreta -morcos -morasco -morante -mooe -montori -montminy -monteforte -montante -montanari -monsees -mondier -monden -monckton -monce -monarch -monarca -mompoint -mollema -molin -molima -molen -molash -moher -mogle -mogannam -moel -moehn -modesitt -mobilia -moag -miyagawa -mivshek -miu -mittman -mittleman -mittelsteadt -mittelstaedt -mitsch -mithell -miscione -mirbaha -mirabelli -mir -minon -minniti -minnerly -mingrone -minervini -minerd -minarcin -mimnaugh -milord -milnor -milnik -millers -milkowski -mikrot -mikles -miglorie -mientka -midthun -middlesworth -micklos -mickler -michetti -michelli -michelet -micallef -meyn -meullion -mette -metoxen -messore -messano -mesaros -mertel -merritts -merrion -merril -mermis -merlini -merker -meridith -mergel -merbaum -mente -mensi -menninger -mennen -menlove -menken -menezes -menette -mendyk -mendoca -mendivel -mendias -menasco -melloy -mellema -mellard -melis -meldahl -melberg -meirick -meinel -meiler -meile -meidl -meerdink -meer -medus -meduna -medovich -medine -medico -medici -mcvaigh -mctier -mcquirk -mcnight -mcmurrey -mcmurdo -mcmorries -mcmilleon -mcmickell -mcmicheal -mcmeel -mcleese -mclee -mclaws -mclanahan -mclaird -mckusker -mckibbens -mckenley -mckenize -mckendall -mckellop -mckellip -mckeirnan -mcinvale -mcguffee -mcgrue -mcgregory -mcgrann -mcgoey -mcglinn -mcgillicuddy -mcgillen -mcgeachy -mcgarrell -mcgannon -mcgalliard -mcfarlen -mcevers -mcerlean -mcennis -mcelvany -mcelvaine -mcdonal -mcdavitt -mccullick -mccrone -mccreadie -mccoun -mcconchie -mcconaughy -mcconahy -mcconaghy -mccomsey -mccoggle -mcclimans -mccleod -mccleaf -mcclafferty -mccatty -mccarry -mccance -mccament -mccaghren -mcbreen -mcardell -mcabier -mazell -mayotte -maybrier -mavis -mautone -matuszek -mattimoe -mattey -matterson -matten -matsushima -matsubara -matrone -matras -mato -matier -matheus -massucci -massoni -massare -maslin -mashaw -mase -mascola -masci -marze -marvray -marusak -martowski -martiny -martie -martabano -marsha -marschel -marsack -marsac -marohnic -markve -markis -marking -marken -marioni -marichalar -margosian -maretti -mardesich -marcussen -marchessault -marcey -maraldo -marafioti -manzanero -manwill -manual -manocchio -manko -manista -manire -manikowski -manganiello -manetta -mandy -mandino -mandarino -mancinelli -manasse -manary -manalang -malling -mallahan -maliska -malet -maleski -maldonaldo -malaterre -malaney -malagarie -malabe -maks -makinster -makar -maita -maiolo -mahley -magos -mago -magnotti -magnant -maglott -maglori -maenius -madkin -madarang -madagan -macrina -macquarrie -macphee -macneal -macmahon -maclellan -mackeen -maciver -machkovich -machan -macewen -macera -macer -maceachern -macdonell -macaskill -maaske -lysaght -lynum -lynema -lyas -lutton -luttman -lutsky -luthi -lutfy -lupoe -lundrigan -lunderville -lukan -luedeman -ludke -lucore -lucksinger -lucks -luckner -lucarell -lubelski -luarca -luaces -lozinski -loynes -lowis -lovorn -loverde -lovasz -loughery -lotzer -losito -loschiavo -lorsung -lorquet -lorkowski -lorino -lorey -lorente -loreman -lopaz -looft -lonie -longman -longhofer -longan -lomascolo -lomack -lolagne -lokaphone -logins -loggin -lofredo -loffler -loescher -loendorf -locus -lockyer -lockheart -lobendahn -lobasso -lob -lizana -livshits -litzau -litty -litteer -litsey -litrenta -litner -liszewski -lisman -lisboa -liquet -liptok -lineweaver -lindenpitz -lindel -lime -lillywhite -life -lievano -lieblong -liebler -lidey -libutti -liborio -libengood -leyson -leyland -lewczyk -lewark -leviner -levenstein -leuenberger -leszczynski -lestage -leske -lerwick -leray -lepkowski -leonor -lenyard -lenger -lendon -lemarie -leman -lelle -leisner -leisey -leischner -leimer -leigers -leiferman -leibfried -lehoullier -lehnortt -legget -legato -legath -legassie -legarreta -leftridge -leewright -ledsome -lecrone -lecourt -lecky -lechman -lebsack -lebouf -lebon -leazer -leavins -leadbeater -lawwill -lawall -lavorini -laviero -lavertue -lavalais -lautenbach -lausier -laurita -lauriano -laurange -launey -laughead -laufenberg -lauderman -laubhan -latunski -latulas -lastrape -lastiri -lason -laskoski -lasanta -laroux -larizza -larive -larish -laquerre -lappas -lapilio -lapadula -lapa -lanzi -lanzafame -lantier -lanski -laningham -langon -langdale -landron -landero -landauer -landacre -lamport -lamping -lamott -lamonda -lammi -lambiase -laite -lahaye -laframboise -lafone -laferte -laeger -ladieu -ladabouche -lachat -labonville -labbee -labatt -laban -kynaston -kwaterski -kuzniar -kuthe -kuter -kutchar -kurtin -kuramoto -kupstas -kuperman -kuns -kullmann -kuligowski -kukielka -kuehler -kudrna -kubie -kubera -kubas -kuba -kualii -krysinski -kryder -kronberger -kroft -kroencke -kristiansen -krigger -krieser -kretschman -krentz -krenke -kremers -kreitner -kreimer -kray -krawchuk -kravs -kranich -krampitz -kragh -krager -kozuch -kozloski -kozatek -kozakiewicz -kovalsky -kovalcik -kovack -kotera -kot -koszyk -kostel -kosmicki -koshy -korona -koroma -korba -koopmann -konstantinidi -kolodzik -kolodzieski -kolle -kolkmann -kolker -kolda -kokaly -kofford -koepper -koeing -koehnen -kodish -kodani -kocur -kocourek -kobza -koble -koback -knutzen -knows -knolton -knoblauch -knispel -knieper -knepshield -klyce -klunk -kluka -klostermann -klosinski -klish -klint -klinner -klindt -klimko -klicker -kleman -kleinsorge -kleinfelder -kleier -klas -klaman -kizzee -kitto -kitka -kirtdoll -kirscht -kintzer -kinstle -kinning -kinniburgh -kinnett -kinker -kinkelaar -kings -kingham -kingfisher -kimmet -killingbeck -kilberg -kikuchi -kikkert -kiesow -kienitz -kidner -kida -kid -khuu -khatak -khaleck -kezar -keyton -ketelhut -kesley -keshishyan -kerzman -kertesz -kerslake -kerscher -kernes -kerin -ker -kenimer -kenfield -kempe -kemick -kem -keitsock -keisker -keery -keblish -kebalka -kearny -kearby -kayler -kavin -kauer -kattan -katoa -kassis -kashuba -kashan -kartman -karry -karpel -karo -karnopp -karmazyn -karjala -karcz -karasti -karagiannis -kapoi -kapanke -kanz -kaniewski -kanemoto -kaneholani -kandt -kampfer -kammann -kamler -kamal -kalvig -kalmen -kalmar -kallstrom -kallin -kallbrier -kakaviatos -kakar -kahahane -kagel -kabat -kabanuck -kaas -jurczak -jurasin -juras -junke -junghans -jungen -jund -juliusson -juhnke -juett -jolla -jokinen -jokela -joffe -joecks -jochumsen -joa -jeziorski -jesseman -jessamy -jernejcic -jergenson -jerdon -jensrud -jellinek -jedrey -jedele -jeannette -jauron -jatho -jarrel -januszewski -janski -janovsek -janning -janikowski -jane -jandres -jamaica -jalonen -jainlett -jahnsen -jahde -jagow -jagielski -jaffray -jaecks -jacquot -jacoway -jacocks -iwami -isadore -irmeger -irie -iredale -iqbal -inscoe -inklebarger -ingemi -immen -imig -imberg -imamura -illies -ilacqua -ijams -iha -iden -ibraham -ibey -ialongo -iafrate -hyzer -hyacinthe -huyard -huxman -hutchkiss -hutchingson -husson -hussman -hurm -hupka -hunyadi -hunstad -humpert -hummons -hultz -hulton -hules -huisenga -huhta -hugueley -hughe -huggler -hufton -huffstickler -huddelston -huba -hrivnak -hoysradt -howorth -howenstine -hovda -hourani -houglum -houch -hotalen -hosse -horwich -horvitz -horoschak -hornor -hornbrook -horita -hoque -hopman -hoovler -hoople -hookfin -honeysucker -honeycut -honerkamp -homyak -homa -holzwart -holzerland -holyoke -holtry -holterman -holohan -hollinshed -hollington -hollenshead -holey -holderby -holak -hokkanen -hohner -hogsed -hoglen -hogen -hogberg -hofland -hofius -hoffis -hofferber -hoffarth -hofacker -hoekman -hodor -hochstetter -hochnadel -hobbins -hoa -hlavaty -hittner -hitson -hirtz -hirschi -hinkes -hinke -hindley -hince -hilse -hilke -hilferty -hildesheim -hikes -hignite -higman -hiemer -hidden -hickinbotham -hewatt -hetz -hetsler -hessian -hershaw -herra -hernander -herlocker -hepper -henseler -henri -hennick -hennecke -hendrikson -henderlight -hellstrom -helderman -heitland -heistand -heiskell -heisinger -heiserman -heinritz -heinly -heinlen -heimerdinger -heimbigner -heidbreder -hegwer -hedeen -hebrank -heberlein -heaslet -hearin -hazle -hazelbush -hayzlett -hayre -haymans -hayenga -hayduk -haward -havner -haushalter -hauf -hatke -hatchel -hassard -haskovec -hashmi -harvest -harvath -hartill -harteau -harshfield -harrigill -harriet -haros -haroldson -harmeson -harl -harkley -hariston -harington -harian -hargus -hargens -hardina -haraldson -harajly -hapke -hapeman -hanz -hanthorn -hanry -hannen -hannasch -hannam -hanifan -hanft -handon -handford -hancher -hancey -hample -hammrich -hammerstrom -hambric -halwick -halma -hallgren -hallet -hallada -halla -halik -halgas -halcon -halbrooks -hakel -hairfield -hainesworth -haggarty -hagenhoff -hagebusch -hagadone -haft -haflett -haefele -haddow -hackbart -haberer -haass -gwinner -gwathney -gwartney -gutterrez -gutoski -gutkin -gutherie -gutches -gustus -gustison -gustaveson -gurtner -gurkin -gummo -gulliksen -gulke -guldin -gulden -guitierez -guile -guildford -guidice -gugerty -guffy -gueningsman -gudgell -guderjahn -guastella -guariglia -guardia -gryniuk -grueser -grudem -growden -grossett -gropper -gron -grodin -groch -grismore -gripper -grinvalsky -grima -griffth -griess -greynolds -gresh -greminger -gregoria -greenwade -greenlief -greenier -grayes -gravell -grassmyer -grappe -grantland -grandin -grandel -grandbois -granahan -gramham -graffeo -graeter -gradwell -gradel -grabo -graban -goy -govoni -governale -govern -gouty -goughnour -goude -goubeaux -goth -gosline -goslee -goshen -gosewisch -gorzynski -gortman -gorter -gordin -gord -goos -goodwine -goodrick -goodley -gombert -goletz -goldy -goldthwaite -goldthwait -goldizen -golar -goist -gofman -goffer -goerges -goeltz -goedicke -goedecke -godnick -gocke -goade -gneiser -gluth -glovier -glomski -glodo -gloden -glenister -glawson -glasier -gladysz -gladstein -gjertsen -giudice -gitto -gittelman -girvin -girolamo -gionfriddo -gingell -gimble -gilhousen -gilboy -gilberti -gigantino -gietzen -gieseking -gianikas -ghosn -ghosh -geyman -gevara -getsinger -gessert -gerrits -gerrior -geris -gerhauser -gerety -genzone -genuario -gentles -gentille -genter -genetti -gelle -gelfand -gelabert -gekas -geck -gearin -gdovin -gaydosh -gawith -gave -gauntlett -gaugler -gaudy -gaub -gatten -gathje -gasperini -gasner -gasco -gascho -gasbarro -garvis -garra -garnette -garing -garick -gardunio -gardon -gardemal -garde -garczynski -garant -ganus -gantnier -ganis -gangloff -gangler -ganer -ganem -gandolfo -gampp -gallihugh -galletti -gallenstein -gallarello -galla -galka -galayda -galarneau -galapon -gaito -gaglione -gady -gadsen -gachupin -gaboury -futterman -fusch -furuta -furth -furber -fune -funai -fuess -frutchey -frumkin -fruhling -frommer -fromdahl -froehner -frizzle -friends -friederich -freyre -freilich -fregia -frediani -frederico -frater -fraile -foste -fosselman -fosnaugh -fosburg -fortis -fortgang -forstner -forson -forseth -forkin -forister -forinash -footer -fontillas -fontenelle -fonesca -folker -fogerson -fogelquist -flye -flummer -floth -floro -florine -flies -flexer -flessner -flatness -flank -fland -flahive -flager -fiveash -fitzner -fitzke -fitcheard -fisherman -fishbeck -fipps -fiorino -finster -finken -finigan -fingal -finer -filsaime -fillingim -filipponi -fila -fies -fiebelkorn -fiducia -fiallo -fetherston -fetherolf -fesmire -fesenmyer -ferroni -ferriss -ferrini -ferrick -ferraris -ferniza -fernades -ferdig -ferandez -feoli -fenninger -fenney -femi -fejes -fehlman -feger -fede -febo -febbraio -feasel -feagley -fayad -favaloro -fauerbach -fauble -fasheh -farrant -farra -faro -farinacci -farfaglia -farell -farb -farace -fanjoy -fangmann -famulare -falsetta -fallows -fallert -falero -faldyn -falconi -falce -fait -fairburn -faiola -faiella -fahlsing -faggett -fafinski -fadness -fabros -fabert -everidge -evaristo -eustache -etzkorn -etier -estabillo -esquivias -esquirel -eslava -eschete -esau -erway -ertzbischoff -eron -erner -ermitano -ermitanio -ermert -erie -erdley -equihua -enzor -ensing -enns -engleking -engelkes -endlich -endler -emry -emms -emmerling -emerich -ellsbury -ellie -elizarraras -eliot -eliopoulos -elery -elek -elderidge -elbaum -ekins -ekin -eisley -eilderts -eikleberry -eigo -eighmy -eichel -ehly -egloff -egland -eggington -eggenberger -egar -egans -eftekhari -efford -eeds -edvalson -edin -edgman -edemann -edelmann -eddens -eckl -eckerle -eckelman -ebrahim -eberth -eberspacher -ebbighausen -ebaugh -easly -eash -dzledzic -dyett -dyba -dworaczyk -duttry -duthie -duszynski -duso -dushaj -dusett -dus -durman -durkins -durick -duplechain -dunnivan -dunlow -dunivan -dumars -dumaine -duliba -dulany -duka -duft -dufrane -duffek -duellman -ducking -dubourg -drzewiecki -drugan -drozdowski -drozda -dronet -drilling -driesenga -dreyfuss -drevs -dreben -draudt -draleau -dragos -draghi -doyer -dowlin -douma -dotterweich -dottavio -doroff -dornon -dorland -doop -donndelinger -donehoo -donate -donado -dommer -dominici -domann -dolio -dolence -doland -dolak -doersam -doerrer -doede -dockham -dobrich -dobosz -dobin -dobbratz -divlio -divel -ditzel -disalvatore -diotte -dinnen -dinkin -dimler -dimiceli -dimeglio -dimascio -dimare -diluca -dilsaver -dillen -dilibero -dile -digioia -difede -diefenbach -diedrick -dickmann -dickes -dickason -dicapua -dicaprio -dibrell -dibley -dibattista -deyon -devotie -devoid -deval -detlefsen -destro -destiche -desposito -desola -deshotels -descombes -deschepper -desautel -desano -deroy -derosset -derosby -deroeck -derocher -dergance -deren -deptula -deprey -depolis -depner -depetro -denunzio -densford -dennington -dene -dender -denbo -demuro -demoranville -demling -demerson -demelis -demeglio -dembo -demattia -demarinis -delprincipe -deloria -delnoce -delmedico -dellow -delles -dellavalle -dellamora -delguidice -delgato -delfs -delcourt -delcolle -delbert -delaportilla -delahoz -delacueva -deisch -deike -degro -degonia -degollado -degolier -degirolamo -degener -degele -degeest -degeare -defina -defabio -deeley -decraene -decou -decorte -declercq -decinti -dechambeau -debutts -debro -deblieck -deblasi -debem -deavila -deases -deangeles -deahl -daymude -daven -datil -daros -darnick -darienzo -dardy -daponte -dannhaus -danneman -danielle -dani -danger -dangel -danes -danekas -dandrow -dambrose -dalpe -dalesandro -daiton -dainels -daigh -dahnke -dahme -dahling -dagata -dack -czaplicki -czachorowski -cuttitta -cutaia -custance -curless -curie -curi -cupelli -cumens -cumbass -cumba -cullars -cullar -cukaj -cubito -cuascut -crytzer -crye -cruzen -cruser -crunkleton -crummett -crumbliss -cropley -cronquist -cronkite -cronic -crombie -crockwell -crnkovich -critcher -cristo -cristales -crisanti -crier -cretsinger -crest -creson -crelia -crecco -craze -craveiro -cratch -crapps -cran -craigmiles -craiger -craige -crady -cradic -craddieth -cowels -coveney -courcy -coulbourne -cotsis -cotrone -cotney -cotilla -costaneda -costabile -cossel -cossa -cos -corte -corsino -corria -cornog -cornely -corio -corino -corington -coressel -cordone -corbisiero -corbelli -copps -coovert -coopwood -cooner -cookman -conzales -conver -contratto -conrady -conradi -connel -conneely -conmy -comunale -comber -comans -colvert -columbo -coluccio -colp -colop -collini -college -colestock -colebank -colasante -colasacco -colapietro -cokeley -coia -cocuzza -coalson -co -clowes -cliche -clevette -cleven -clerico -clearwater -civiello -ciullo -citro -cirocco -cioppa -cilek -cieszynski -cieri -cicerchia -ciaschi -ciani -cianchetti -chudy -chuc -chryst -christodoulou -christin -chrisley -chokshi -chmela -chkouri -chiodini -chio -chimilio -chilen -chilek -childrey -chier -chicas -chiaro -chiappone -chiappinelli -chiado -chhom -chesterfield -chesteen -cheshier -cherrez -cherep -chene -cheevers -checkett -cheaney -chayka -chawla -chasin -chasen -charvat -char -chapoton -chantos -chantler -chant -chadez -chad -chaco -chabez -cerrito -ceppetelli -centanni -celso -cederberg -cedar -cecchetti -cavel -cavanah -cavagna -catus -catton -catterton -catrambone -catherwood -catherman -cataldi -castellana -castellan -cassey -casparis -casilla -cashdollar -casaceli -carvana -carriedo -carrecter -carraher -carrabine -carpinelli -carouthers -carnovale -carmany -carles -caretto -careaga -cardosa -cardelli -carbine -carathers -caraker -caracci -capuchin -cappelletti -capistran -capdeville -caparros -canute -cante -canizares -canel -canclini -cancino -campus -campise -campen -cammarano -camilli -camic -camey -calwell -calvey -calvary -callo -callinan -callais -calizo -calixto -calisto -calip -calibuso -caira -cahillane -cahalane -cahal -caffery -caffarelli -cafarelli -cadlett -cacciatori -cabebe -byus -byrnside -byrer -byone -buza -buttrum -buttel -butremovic -butanda -bustin -bussen -bushlen -bushart -burtchell -burrel -burnard -burlett -burkeen -burce -buote -bunyan -buntrock -bunck -bumpas -bulleri -buglione -bugge -bueter -buerk -buenger -buehrle -buechele -budrow -buddenhagen -bucolo -buchenau -bucco -buccino -bubar -bruzas -brutsch -bruschke -brunot -brungard -brund -bruender -brucks -bruchey -brozowski -brownd -brothern -broomhead -bronw -brom -brog -brodigan -brockhaus -brockel -broadaway -brletich -briston -brissett -brines -brillon -brilliant -brightbill -brigges -briel -bresciani -brents -breitmeyer -breithaupt -breidenthal -breden -bredemeier -breckinridge -brecheisen -brecheen -breazeal -bream -brazzel -brawdy -brave -brashers -branz -branyon -brantz -brannam -brankovich -brandle -branchaud -branca -bramley -bramante -bramall -brakeman -bradby -bozzo -bozelle -boyarski -bowline -bowey -bowerize -bowdon -bowdler -boutros -bouten -bourdier -bouras -boufford -bottex -bottemiller -bothman -botcher -boshers -borris -bornemann -bonus -bonnot -bonifant -bongiardina -bonenberger -bonasera -bollier -bolar -bokman -bokanovich -boissonnault -boiles -bohrn -bohlke -bogenschutz -bogel -bogda -boevers -boever -boender -boehringer -boehne -bodor -bodda -bodak -bocker -bockenkamp -boche -blyden -bluto -bludworth -bloxsom -blomstrom -bloise -bloebaum -blier -bleiweiss -blegen -bleacher -blaum -blasz -blasingim -blasengame -blanda -blagman -blackstad -blackham -blache -bixel -bitters -bissegger -bisker -bishoff -bisard -bis -birtwell -birley -birkenmeier -birkenholz -birkeland -birdsey -birdo -birdinground -binner -bilsborough -billot -billops -billingham -bigney -bigg -bienkowski -bienek -bielefeld -bielec -biddie -bickell -bichler -bibo -biava -biagi -biagas -bhayani -bez -beyene -beyda -bevels -bettner -bettinson -betson -beto -bessix -bessire -bertschy -bertozzi -bertoncini -bertelson -berteau -berrong -berrones -berringer -berrigan -bernsen -berlingeri -berken -berka -berges -bergdorf -bergara -bergant -bergamini -beren -berdugo -berdine -berberian -benvenuti -benish -benincase -benek -benedith -bendas -benak -bena -beltrame -belsheim -belotti -bellrichard -belleville -beliles -belgrade -belcastro -bekius -bekhit -beightol -behel -beetz -bedson -becze -beckmeyer -beckey -beckers -beckelhimer -beccue -beberwyk -bebber -beamesderfer -beacom -bazzle -bazil -baynham -bayhonan -bayas -bawany -bava -baumgardt -bauerkemper -baudry -baudino -battko -battisti -batta -bassano -baskas -baseler -basanta -bartucci -bartron -barthold -bartamian -barsalou -barrineau -barriger -barreneche -barkie -barich -bardes -barbano -baral -baragar -baque -banther -banome -bannowsky -banke -baniaga -bandley -banahan -banaag -bamba -baltzer -balster -balnis -balkin -bali -balfe -balerio -balent -baldyga -baldor -baldinger -baldassano -baldacci -balanoff -balado -balaban -balaam -bakes -bajwa -baisch -bahnsen -bahls -bahler -bahamonde -bagdasarian -bagaoisan -bafia -baese -badolato -bado -badder -bacurin -backers -bachor -babe -babbit -babauta -baadsgaard -azzara -azebedo -avril -avello -aveline -authur -ausby -auricchio -auna -aukerman -auckerman -auck -auble -atterson -attard -aswegan -aste -asta -assaf -aspen -asken -asif -asiedu -ashner -asel -aschenbach -arvay -arvan -artus -artley -arrollo -aroyo -aronov -aromin -arnsworth -arnspiger -arnn -armant -arington -argubright -arentz -arcoraci -arbuthnot -arbo -aquilina -aquilera -apt -apsey -appolonia -apollo -apana -antista -anshutz -anon -anno -annala -anklam -angold -angelone -angeline -angeletti -andren -andreadis -andera -andelman -andel -anctil -anchors -anacker -ampy -amons -amirault -amir -amezaga -ameigh -alyea -altvater -altig -altermatt -alo -almengor -alme -allvin -allocco -allegrini -aliment -algee -alexanian -aler -aldo -albero -alarid -akiona -akemon -ajello -aitcheson -ainley -ailey -ahluwalia -ahlf -ahlbrecht -agundez -agro -agins -aggarwal -afalava -adriano -adomaitis -adolphus -adlam -adie -adey -adduci -addleman -adamyan -acothley -acklen -ackert -ackerly -acencio -accosta -abundiz -abedi -abbassi -abbasi -aanerud -aakre -aagaard -zwickl -zuver -zurasky -zumbo -zumba -zuckerwar -zuccarelli -zubris -zoucha -zorns -zorc -zitzow -zitzloff -zirkles -zippe -ziola -zinz -zinsmeister -zincke -zieschang -zierdt -zien -ziemke -zidek -zickler -zeuner -zerba -zera -zenger -zeltmann -zelle -zelinka -zelek -zele -zeiner -zeimet -zeidler -zecchini -zebley -zdanowicz -zbell -zaro -zaremski -zar -zani -zancanella -zana -zambarano -zakar -zadorozny -zader -zaccaro -ysquierdo -yoxall -youst -youngstrom -youn -youker -yoss -yoshina -yonke -yonemura -yohannes -yock -yerhot -yengo -yehle -yanofsky -yaker -yagues -yach -ya -xue -wyrosdick -wygle -wygand -wurzer -wurl -wunderlin -wunderle -wuerth -writer -wrighten -wrich -wozny -wozney -wowk -wouters -wormington -worf -woolem -woodrich -wooderson -wonder -womeldorf -wolz -woltmann -wolstenholme -wollmuth -wolle -wolfard -woldridge -wojtanowski -wojner -woitowitz -woehl -wittenburg -wittel -witschi -witaszek -witaker -wiszynski -wiswall -wiss -wisher -wisenbaker -wires -winsky -winfough -windler -winckler -wimes -wiltberger -wilm -willrich -willoby -willimon -willenborg -wilda -wilczewski -wilcock -wiggens -wigboldy -wiesler -wies -wienhoff -wielgus -wiebers -wieber -wickizer -wichrowski -wibbens -whyard -wholey -whitsey -whitlingum -whitlach -whirry -wharry -wharff -whack -weyman -weyler -wethje -westveer -westmorland -westerhold -wesselman -wesloh -wery -wermers -werlinger -werksman -wenzinger -weninger -wendeln -wendelin -wenck -wember -welters -welland -welchman -welchel -weitnauer -weissler -weinger -weimann -weigert -weidert -wehby -wehbe -weck -wechter -weaving -weather -weal -weagle -wdowiak -wayns -waycott -waychoff -waterfall -watcher -watahomigie -wasowski -wasner -washko -washing -washell -wartenberg -warson -warrenfeltz -warp -warmbrodt -warhurst -wardsworth -wanzek -wanta -wansing -wankel -wangberg -wanberg -wamack -waltzer -walthers -walterson -walshe -walrond -wallschlaeger -wallgren -walema -waldram -waldhauser -waldecker -walby -wakin -wakabayashi -wah -wagy -waggner -wagenaar -wage -waffle -wadzinski -wademan -wackerly -wachs -wable -vredenburg -vrana -vrable -voyer -voto -vosper -vosberg -vorhees -voran -vora -vonstein -vondoloski -voltin -volpicelli -volland -volentine -volcko -vojtko -voice -vogeler -vizzini -vizena -vix -vitko -viste -visor -visco -virock -vinup -vinion -vincenzo -villas -villarta -villari -vilello -vigne -viener -vielmas -vielhauer -viehman -vidulich -vidinha -videen -vickerson -vicker -vertz -verry -vermeesch -verhulst -verhoff -verhagen -verhaeghe -vergo -vergeer -verdino -venus -ventrella -ventola -venter -vennes -venneri -venditto -velzy -velilla -velie -velandia -vecker -vecellio -vear -vavricka -vautrin -vates -vassall -vasmadjides -varty -varriano -varriale -varrato -varnedoe -varillas -vardaman -varajas -vaquero -vanzyl -vanvleet -vanvleck -vansoest -vanskiver -vanskike -vanruler -vanputten -vanoy -vanous -vanoort -vanliew -vanlew -vanhulle -vanhoozier -vanhofwegen -vanhaitsma -vanecek -vandrunen -vandixon -vandivier -vandiford -vandezande -vandewege -vanderzanden -vanderwerff -vanderwerf -vanderschel -vandergiessen -vandenberghe -vandehei -vandee -vancheri -vanbramer -valsin -valli -valido -valenzano -vajda -vaillencourt -vacheresse -va -uzdygan -uyetake -usilton -urueta -ursprung -ursiak -urquilla -urquidi -urfer -ureta -urbancic -ura -upwall -uptegrove -uphaus -upadhyaya -unterburger -unch -unavailable -unangst -umphenour -umbenhauer -ulseth -ulatowski -ukosata -uhyrek -uhrmacher -uhlich -ueno -uelmen -udoh -ude -uchytil -tzeng -typhair -twelves -twehous -tuxhorn -turybury -turro -turne -turnblom -turkus -turks -turbin -turbes -tunick -tumpkin -tuholski -tuggie -tufnell -tubertini -tubaugh -tsutsui -tsuha -tsuda -tsinnie -trupp -trupiano -trupia -truner -trundle -trumm -trullinger -truell -trucco -trowers -trover -trosien -tronnes -trompeter -tromp -trolio -troendle -trobaugh -triska -trimarco -trifiletti -tridle -tricoche -tresvant -trest -tresler -tresca -tremont -tremayne -treinen -treichler -treglia -treamer -traxson -traugh -trasher -trapasso -trant -trancoso -traister -trailor -trageser -traficante -trac -toya -towson -tovrea -totherow -tote -tortorelli -torri -tornabene -torigian -torello -toppa -topor -toothill -toop -tonsil -tomsich -tommie -tomlison -tolmich -tollner -tollefsrud -toledano -tolayo -toenges -toefield -tock -tobiasz -tobery -tobert -toban -toback -tjarks -tiznado -titlow -tishler -tirabassi -tippet -tinkey -timson -timperman -timmis -timmermans -timme -timberman -tikkanen -tietze -tierman -tiberi -thuringer -thul -thu -thro -thornwell -thomlison -thomlinson -thomassen -thimmes -thilking -thierman -thielemann -thiboutot -thibideau -theresa -theard -thavichith -thaut -tezak -tetzloff -teto -tetlow -tessler -tesseyman -teskey -tes -terzian -terwillegar -tervo -terronez -ternasky -termini -terboss -teramoto -tepley -tenuta -tenen -tellio -tellefson -telecky -tekell -tefertiller -teece -tedesko -tederous -tebeau -tear -teahan -tazewell -tazelaar -tavano -tatsapaugh -tatlock -tataris -tassinari -tassie -tarvis -tarkey -tarangelo -tappa -tanna -tanikella -tamblyn -tamaro -talyor -tallas -talayumptewa -talaska -taj -tagliarini -tagata -taflinger -taddonio -tacderan -tablang -tabisula -tabicas -tabar -szwed -szumski -szumigala -szollosi -szczesny -sypniewski -syon -sylvan -syal -swor -swoopes -swoap -swire -swimmer -swiler -swida -sweezer -sweep -sweeley -swede -swearengen -sweadner -swartzwelder -swanhart -sveen -svay -sutyak -sutten -sutler -suski -surprise -supernault -suozzo -suns -sunder -sumney -summarell -sumera -sulzbach -sulfridge -sukhram -suk -suitor -sughroue -sugahara -sudlow -sudan -sudak -subido -style -stweart -sturz -sturdy -sturchio -stulce -stukenborg -stuckemeyer -stsauveur -stroll -strohmeier -strissel -strimple -stremmel -streczywilk -strawhorn -stratz -stratos -straton -strassner -strama -strada -stoss -storti -stomberg -stolze -stoliker -stoler -stolberg -stolarik -stohlton -stofko -stofflet -stoff -stoesser -stoeber -stodden -stobierski -stobbs -stjohns -stirrup -stirman -stinehelfer -stimmell -stimits -stigger -stiers -stieff -stidam -stewarts -stevinson -stevey -sterett -ster -steppello -stepnoski -stentzel -stencil -stencel -stempien -steketee -steinbruckner -steinborn -steigman -steiber -stegent -steffani -steerman -steenken -steenhard -steedman -steckley -stealey -stayrook -stavnes -stauss -stash -stary -stare -stant -stanfa -standfield -standberry -standage -stanco -stanage -stampe -stamdifer -stalworth -stalma -staires -staines -staine -stahlberg -stadden -staberg -stabel -spurgers -spruce -sprinkel -springman -spriggle -sporleder -sporcic -spontak -sponholz -spohr -spittle -spiry -spiece -spicuzza -sperlich -sperdute -sperazza -spelts -speares -speakes -sparhawk -spaniel -spaar -soyars -soverns -southam -sour -souphom -soun -soula -sossamon -sosh -sosby -sorsby -soroka -soricelli -sorgi -sorbera -soplop -soohoo -sonoda -sonny -sonneborn -somodi -sommese -solman -sollie -solla -solina -soliani -soley -solecki -solages -sohre -soenksen -sodeman -sobiech -soberanis -snobeck -snerling -sneider -snaza -smolic -smigel -smigaj -smiechowski -smida -smerkar -smeby -slothower -slotemaker -slodysko -slivka -slimmer -slight -slifko -slayter -slawski -slauson -slatten -slain -skultety -skrip -skowyra -skorupa -skordahl -skomsky -skoff -sklenar -skeldon -skeesick -skea -skagen -sjostrand -sixtos -sivyer -siverson -siverling -sivan -siva -sitzler -sither -siskind -siske -siron -siregar -sirbaugh -sirak -siptak -sinstack -sins -siniscalchi -singlton -sinden -sinagra -sina -simpon -simmoneau -simler -simkulet -simi -simeona -simens -silverstone -silverness -silsbee -sillas -sileo -silbert -sikula -siglin -sigley -sigafus -siew -sietsma -sierras -siembida -sieker -siedlik -sidur -sidell -siddoway -sibille -sibilia -sibbald -shusta -shuskey -shurts -shryack -shroll -showell -shove -shoulars -shortino -shopp -shmidt -shiu -shirar -shinners -shingles -shinabery -shimko -shibles -shertzer -sherrin -sherril -shellhamer -shellhaas -sheldrup -sheladia -shehab -sheff -sheck -shearman -sheaff -shauer -shatswell -shaske -sharick -shappard -shallcross -shala -shaklee -shakespear -shafe -shady -shadwell -shacklett -seymor -settlemire -setting -sether -sesma -sesareo -seryak -serven -sers -serbus -serb -seppi -sephus -sentinella -sensel -senf -senato -sempek -semidey -semasko -selz -seltz -selmer -selitto -selim -seiser -seikel -seigle -seid -segouia -segner -segerson -segala -sefcik -seeholzer -seegert -sedita -sedenko -sedar -secondo -seckinger -sebald -seba -seahorn -seabright -scotty -scothorn -scordato -scoma -scobie -scipione -sciara -schwieterman -schwendemann -schwede -schwartzbach -schwarcz -schwalen -schutzman -schunemann -schulweis -schul -schuffert -schuckers -schrull -schrubbe -schreyer -schreckhise -schreader -schoonhoven -schoolman -schol -schoettmer -schoepf -schoenle -schoenecker -schobert -schnyer -schnoke -schnipper -schneiter -schneekloth -schnapp -schmits -schmelzle -schmelz -schmeisser -schmeiser -schmahl -schlotzhauer -schlott -schlossberg -schlipf -schlicker -schleuder -schleimer -schlauch -schlau -schlaefer -schiesser -schieler -schied -schie -scheuvront -scheumann -scherz -scheperle -schenewerk -schemm -schellenger -schaupp -schauf -schaudel -schau -schatzberg -scharr -schappert -schapp -schamel -schallhorn -schaefers -schadt -schadel -schackow -schabowski -schabes -schabert -schab -schaab -scavotto -scarver -scarsella -scarbro -scampoli -scammon -scallon -scalley -scale -scafuri -scadden -scacco -sawchuk -saviano -saverchenko -savelli -savarino -satsky -satoe -sarwinski -sartorio -sartorelli -sarria -saro -sarna -sarkin -sarisky -sario -sarazin -sara -sapia -santmyer -santmier -santillana -santanna -santacroce -sansouci -sannes -sanez -sandvig -sandino -sandella -sanburg -samy -sammer -samit -salvucci -salvey -salvatori -salvant -salvage -salts -salton -saltarelli -salt -salome -sallade -saletta -salehi -saleeby -salameh -salama -salaiz -salafia -sakry -sako -sakash -saitta -sahu -sahara -saguil -sagrera -saglimben -sagi -saggio -sagen -safranek -safko -saeli -sadar -sacre -saccardi -saborido -sabins -sabet -sabbah -saale -rynne -rynders -rylands -rykowski -ruzbasan -ruwe -rutiaga -ruthledge -rutecki -rusu -russler -rurup -ruozzo -ruot -runels -rumphol -rumpel -rumpca -rullo -ruisi -ruic -ruhle -ruffaner -rufer -ruetz -ruesink -ruehle -ruedy -ruden -rubulcaba -rua -roya -rowald -rovner -rouselle -roura -roulston -rougeaux -rotty -rothery -rotert -rossler -roskowinski -rosiak -rosh -rosenstock -roselius -roscigno -rosaro -rosada -roperto -ropers -rookwood -rongo -rondinelli -ronda -ronchetti -romrell -rollinger -rola -rokos -rohwer -rohrscheib -rohlf -rogal -rogacion -roeschley -roers -roemen -roelofs -roekle -roehrich -rodriguel -rodges -rodeen -roddey -roddam -rocquemore -rockers -roccia -robishaw -robida -robichau -robertshaw -roberton -roberta -roberg -rob -roary -rizzuti -rizal -riveros -rittenour -risper -rippin -ripp -riola -riogas -rinner -ringus -ringhand -rinehardt -rinderer -rigotti -righetti -riggi -riggans -rigazio -rigatti -rifenburg -rieu -riehm -riegler -riech -riebau -ridgel -ridens -ridener -riddel -rickner -richardt -ricciardone -rhynard -rhyan -rhoderick -rho -rheinschmidt -rezak -reusing -rettkowski -retterath -retta -reshid -reppe -repke -reos -reome -rensen -renschler -renova -renollet -renison -reninger -rengers -rengel -renart -rena -relihan -reisen -reiniger -reindel -reil -reier -reh -reggio -regener -reekers -reeger -redmann -reddinger -redcay -reckling -rebert -reategui -reagin -reagen -readnour -razzano -raynolds -rayer -raybould -rawdon -ravotta -ravo -ravitz -ravert -rathert -raterman -ratel -raque -rapko -ransone -ransburg -rangnow -randon -rancifer -ramotar -ramones -ramone -ramire -ramin -rameres -rakoski -rajala -raithel -rainie -rainge -rainbow -raigoza -rahming -ragazzo -radomski -radish -radilla -raden -radde -racano -rabine -rabil -rabell -rabasca -quiterio -quinzi -quink -quinci -quilliams -quiller -quider -quenneville -quelch -queeley -quear -quattro -quastad -quaglieri -pyscher -pust -purtle -purtill -purdin -puorto -punja -pullem -pulfer -puleio -pujia -puetz -puehler -puebla -ptomey -przewozman -prysock -pruter -prunier -pruess -prudom -pruchnik -proveaux -prophit -promise -procknow -proby -pro -prive -preziosi -preza -prem -preite -preisser -pregler -precella -prazma -prats -prator -prakash -prahm -prader -pozniak -poxon -powledge -pouge -pott -postlewaite -posthumus -posnick -posley -poskey -porro -poreda -poppema -popat -pondexter -ponciano -pompilio -pommer -polosky -pollom -pollo -pollica -pollaro -polizio -polek -polack -polacek -poirot -poertner -poduska -pockrus -pochintesta -pluym -pluhar -pluck -pliner -pliml -plese -pleasent -playle -plasky -plane -plack -pizani -pitz -pittari -pitruzzello -pistorius -pistilli -pisha -piselli -pisco -piros -pirone -pirolli -pirman -pirkl -pirie -pique -pintado -pinkey -pingrey -pinger -pinelo -pilsner -pilley -pilgreen -piles -pila -pignatello -pietig -pierrott -pierron -pierceall -pieratt -pienta -piekos -piechota -picquet -pickar -picerno -piceno -phyfiher -phorng -phearsdorf -pharmes -phariss -pfuhl -pfenning -pezzetti -pevy -petzoldt -pettrey -pettas -petta -petross -petrochello -petriello -petrelli -petch -pestoni -pestano -pesick -pesavento -perzanowski -perrien -perrenoud -perque -peroff -perlas -perkerson -perisho -perich -perfect -peregrino -peregoy -perch -pequeno -penza -pensis -penquite -peniston -penister -pendola -pendergraph -pelle -pelczar -pelch -pela -pehler -pegoda -peelle -peeling -pedroni -pedlar -pedder -pecoraino -peckman -pechal -pebsworth -peasnall -peasant -pead -peacemaker -paytes -paysen -payn -pavletic -pavlat -pavlas -pavese -paup -paulis -patrice -patocka -pat -pastorino -pascocello -parthemer -parreira -parido -paretti -pardun -parchment -papstein -papps -papetti -papakostas -pantoni -panik -panfilov -panfil -pana -pampusch -pamperin -palmitessa -palmero -pallett -palilla -palese -palesano -palange -pagenkopf -padon -padmanabhan -padinha -packen -pacitto -pacchiana -pabich -oza -oyabu -overdorf -ourada -otukolo -otterbine -ottalagano -oto -other -otano -osting -ostiguy -osterholt -osley -oscarson -osaile -ortz -ortolano -ortea -orte -ortaga -orszulak -orser -orihuela -orejel -ordorica -ording -ordal -orbin -oransky -oppel -onsgard -ondrick -olsin -ollmann -olives -olavarria -olano -olafson -okuno -okuniewski -okuhara -okrent -okoniewski -okeke -ohs -ohotnicky -ohno -ohlund -ohlendorf -ohaire -ogaz -ogando -offield -odiorne -oclair -ockenfels -ochocki -ocamb -ocallahan -obleton -oberly -oberhelman -oberbeck -nylin -nydick -nwachukwu -nutzmann -nuque -nunz -nulle -nuffer -notti -nothum -nothnagel -notah -nossett -nose -nosbisch -norrix -norlien -norkin -nordon -nordmeyer -norat -nooe -nokleby -nofziger -noens -nivison -niu -nittler -nissalke -nishikawa -ninness -nin -nimon -nifong -niewieroski -nietzer -niemela -nicolette -nicoletta -nico -nickolas -nickless -nicklaw -niccoli -nibbs -neyland -newmark -newey -newbauer -nevwirth -neverman -neuser -neumaier -neufville -netzley -netzel -nettle -neiswonger -neiswender -neilan -neidhardt -neesmith -nebgen -navia -nate -nasuti -nasso -nassimi -nashe -nases -naro -nardo -narasimhan -naqvi -nanka -naman -nahrstedt -nagura -nagarajan -nadile -nabours -nabers -mysinger -mynear -muzzarelli -muthig -mustian -muskus -muskelly -musi -mushtaq -musca -murzynski -murzyn -murrillo -murello -murdy -murakawa -munsinger -munnell -munks -munkberg -mundorf -mummey -mullick -mulkin -mulhollen -mulgrew -mulderig -mulac -muehl -muddiman -muckerman -muckenthaler -much -mucciolo -mruczek -mrazek -mowat -moure -mould -motts -mosure -mossor -mossberg -mosler -mosha -moscrip -moschetti -mosbarger -morua -morss -morron -morrall -moroni -morioka -moricca -morgensen -morganson -moreshead -morely -morch -moras -morar -moranville -moralas -morak -moradel -moothart -moonen -monzingo -montpetit -montjoy -monteagudo -monoz -mongrain -mongon -mondejar -monas -monachino -momplaisir -momin -moment -molpus -molony -molner -molleda -molinski -molinelli -molfetta -molenda -molchan -mohseni -mogg -moerke -moenius -moehlman -modugno -modi -modest -moder -moch -moat -miyamura -mittlestadt -mittelstedt -mittelman -mitschelen -mitro -mitchan -misty -missey -misenhimer -mirra -mirjah -mirante -miosek -minteer -minrod -minning -minney -minnema -minium -minihane -minicucci -minecci -minchey -milota -millson -milloway -millonzi -millier -milley -millam -milillo -milbrath -mikowski -mikola -mikler -mihelic -mihaila -miesen -mierzejewski -mickels -michienzi -michalke -miazga -mezydlo -mezick -meynard -meylor -mexicano -metsker -metrick -meter -mestad -meske -mertins -merta -mersinger -merschman -merna -merila -meridieth -mergen -merel -menzella -menze -mentnech -menson -mensick -mennig -mendillo -memos -melroy -melochick -mells -mellgren -meline -melich -melena -melchiori -melching -melahn -meisler -meinerding -meilleur -meidlinger -mehner -megrabyan -megee -meeuwsen -medlar -medick -medema -mechler -mechanic -meadowcroft -mcpike -mcpeake -mcnell -mcneary -mcmutry -mcmeekin -mcmannus -mcluen -mclouth -mclerran -mcleoud -mclagan -mckone -mckneely -mckissic -mckinnell -mckillips -mckibbon -mckenty -mckennan -mckeeman -mckasson -mcinturf -mcinerny -mchan -mcgurn -mcguirl -mcgue -mcgrain -mcgonnell -mcglumphy -mcglauflin -mcginity -mcgibboney -mcgeough -mcgauley -mcgarvie -mcfatter -mcentegart -mcenroe -mcelmury -mcelhinny -mcdonnel -mcdoniel -mcdoe -mcdermond -mcdearmon -mcdearman -mcday -mcdannald -mcdaid -mccurren -mccrosky -mccrane -mccraig -mccooey -mccoo -mccolpin -mccolloch -mcclucas -mcclester -mcclement -mcclamroch -mcclammy -mcclallen -mccarte -mccaie -mccaddon -mcanelly -mcalmond -mcalary -mazzini -mazzarino -mazzara -mazzanti -mazurk -mazor -mayerle -mayenschein -mayard -mayans -maxedon -mavromatis -mavins -maves -mausser -maulsby -matya -matuke -matto -mattler -mattiace -matkowski -mathern -matero -matchette -matayoshi -matar -mastine -massing -massimo -masseria -massenberg -massard -masoud -masotti -maslak -masey -masella -mascarena -mascall -marzella -maryott -marwick -marugg -martt -martinis -martian -martha -marstaller -marsingill -marsicek -marotto -market -markegard -marke -marinella -marien -margison -margheim -margason -margaris -margaret -marett -marentes -marcott -marcon -marchena -marcellino -mapston -mantione -mantanona -mansouri -manoi -mankus -mankins -manin -manikas -mangieri -manfredini -mane -mandt -mandolini -mandley -mancina -manas -maltsberger -maltais -malmin -mallis -mallicoat -malleck -mallach -malkowski -malkani -malito -malensek -malandra -malander -makos -makanani -maille -mail -maidens -maid -mahowald -mahala -mahajan -magnotta -maggiore -magel -maestos -maerz -maedche -madise -madi -mades -maddaloni -madayag -madaras -macnair -mackinlay -mackesy -machon -machia -machey -machesky -machacek -maceyak -macchio -macbride -mabray -maasch -lyseski -lykken -luzania -luxenberg -lutrell -lupkes -lupino -lupardus -lunnon -lunghofer -lundvall -lundby -lundborg -lulow -lukman -lukin -lukaszewski -lukacs -lugones -luger -lueder -ludeke -lucek -lucchetti -lucchese -lozowski -lozaro -loyer -lowthert -lowdermilk -lovitz -lovinggood -lovenduski -loura -loung -lounder -louks -loughry -loudermill -lotta -lostetter -loskot -losiewski -lorman -loren -lorelli -lorange -lonsinger -longinotti -longhurst -lomedico -lola -lohwasser -lohn -lohden -lograsso -logie -loftman -loften -lofaso -loewer -loehrs -locy -loconte -lockerman -lockerby -locken -lobaton -loatman -lleras -lizak -livingood -litwiler -litvin -littledave -lites -lisee -lipszyc -lippy -lionello -linsday -linnear -linklater -lingbeck -lindie -lindenfelser -lindenberger -linarez -limber -lily -lightning -liffick -lieto -liestman -liepins -lieng -liebross -licciardi -licavoli -libbee -lhuillier -lhommedieu -leyra -lewman -levreault -levitre -levings -levick -levecke -levanger -leval -leva -leuthold -leuenthal -letze -letterlough -leski -lerwill -lertora -leppla -leopoldo -leonides -leonardis -lenoue -lenoch -lengerich -lemont -lemmert -lemery -lemaitre -lella -leko -leithauser -leisher -leise -leisch -leiendecker -leiber -leialoha -lehtomaki -lehigh -leggs -legate -leflar -lefeber -leezer -ledden -lecleir -lechliter -lebrane -lebarron -leason -leapheart -leadman -lazarte -lawin -lavole -lavesque -laverdure -lautner -lauthern -laurila -laurendeau -launderville -laumeyer -latina -laszlo -lassan -larzelere -larzazs -larubbio -larriuz -larew -laremont -laredo -lardizabal -larance -lappa -lapolla -lapatra -lapaglia -lantieri -lannan -lann -langwith -langolf -langloss -langlo -langholz -langhart -langfitt -langendorf -langenbach -langbehn -lanehart -landoni -landherr -landberg -landazuri -lancey -lamus -lamunyon -lampitt -lampiasi -lammon -lamme -lamirand -lambes -lamarta -lamarra -lalim -lalande -laky -laitila -laidler -laich -lahue -lahtinen -lagrasse -lagrand -lagle -lagerstrom -lagerberg -laferney -lacson -lachenauer -lablue -labean -lab -kuzara -kuza -kuy -kutchera -kustra -kurtyka -kurschner -kurka -kunstlinger -kunka -kunicki -kunda -kulling -kulla -kulbida -kuker -kujath -kujala -kuhta -kuhner -kuhle -kufalk -kuennen -kuen -kudley -kucharik -kuca -kubic -kryst -krysh -krumenauer -kruczek -kroschel -kronk -kroells -krivak -kristoff -kristin -kreuziger -kreitz -kreisberg -kreiman -kreighbaum -kreh -kreck -kraszewski -krason -krammes -krake -kozusko -kozola -kozikowski -kozielski -kowis -kowalske -kottman -kottler -kottenstette -kostelnick -kosmowski -koska -kosinar -kosik -kosanovic -kosanke -kortge -korsak -kornbau -kordas -korby -korbel -kopperman -koppenhaver -kopischke -koper -kopelman -kopel -kopas -kooser -koors -koor -koone -koogle -konzen -konieczka -kondracki -kondos -komatsu -kolo -kolarik -kolacki -kokesh -kohrt -kohrs -kogel -kofron -kofman -koewler -koetting -koes -koellner -koellmann -koczela -kocon -knoth -knollman -knoebel -knknown -knittle -kniphfer -knightly -kniffin -knaphus -knaak -kloth -klonoski -kloke -kloer -klinetob -kliger -klich -kleyman -klepchick -klemish -kleen -klebe -klakowicz -klaft -kithcart -kister -kisker -kishel -kishbaugh -kirt -kirouac -kirley -kirklen -kirkegaard -kirchen -kipka -kipfer -kinsinger -kiniry -kinikini -kingma -kinderknecht -kinahan -kimmes -kimak -killiany -killelea -kilkus -kilfoyle -kiflezghie -kiffer -kiesewetter -kienow -kieler -kiebler -kicks -kicker -kibel -kibe -kibbee -kiang -khounthavong -khatri -khamsyuorauon -kham -keye -keup -keto -ketch -kess -kerth -kero -kernell -kerkvliet -keomany -keomanivong -kennemur -kennel -kenndey -kendi -kempter -kempinski -kemna -kellan -keliikoa -keledjian -keithan -keisel -keib -kehs -kedley -keay -kearin -kawulok -kawai -kawaa -kava -kaunisto -kaumo -kauahi -kattner -katra -kastel -kastein -kassulke -kassman -kassing -kashani -kasch -karty -karstetter -karrenberg -karper -karow -karmo -karhoff -kardell -kardas -karapetian -kapper -kappen -kapichok -kanis -kaneakua -kanaris -kamuda -kamirez -kamat -kaloudis -kallberg -kallaher -kalkwarf -kalkman -kalk -kalisek -kalehuawehe -kalchik -kalbfleisch -kalberer -kalal -kala -kakimoto -kaing -kaigle -kahill -kahanaoi -kaemmerling -kadri -kadle -kading -kadi -kadar -kachmar -kachiroubas -kachelmeyer -kaase -juve -juul -justinger -jungwirth -jungman -jungck -julander -juenemann -jubie -joun -joswick -jossund -joss -jory -jonnson -jongsma -joliet -johngrass -jocoy -jing -jimerez -jimbo -jeudy -jerowski -jernstrom -jernstad -jernberg -jeoffroy -jentry -jennie -jeng -jenaye -jemerson -jeltema -jeanpaul -jeanmard -jax -javery -jaudon -jasperse -jasmer -jarred -jarrar -jargas -jardot -jardell -jaquay -jappa -janower -jankoski -janise -jandrey -jandl -jakubiak -jakobson -jakobsen -jahncke -jagers -jacobitz -jackon -izard -ivel -itzkowitz -itani -issacs -isome -isle -islar -isidro -isidoro -isch -irvan -irizary -irene -ipson -ip -ioele -interiano -insalaco -iniestra -ingargiola -impson -illiano -iller -illa -ilardi -iida -ihrke -igneri -igbal -igartua -iffland -idell -iberra -iba -ianacone -hysong -hyrkas -huzzard -huttle -husselbee -husseini -hupe -hunzeker -hunnicut -humprey -humbird -humason -hugle -hufana -huestis -huesing -huell -hudy -hudley -hudas -hudalla -hudack -huckfeldt -hubka -hubenthal -huante -hsing -hromek -hritz -hrdlicka -howzell -howles -howat -hovarter -houy -housler -houska -houseal -houlberg -hostert -hosman -hoscheid -horvers -hortin -hornish -hornbeak -hornaday -hoppman -hopfer -hoot -honts -honsberger -hons -honnen -honberger -honahnie -homma -homesley -holyoak -holweger -holubar -holtzer -holtrop -holtberg -holpp -holmquest -hollinghead -holje -holgerson -holabaugh -hoitt -hofford -hoffmaster -hoffine -hoffelt -hoes -hoellwarth -hoegh -hoegerl -hoeger -hodrick -hodgkiss -hodek -hockey -hobday -hlavacek -hlad -hitzeman -hitzel -hitsman -hissong -hissam -hiscock -hirz -hirshberg -hipkins -hinsch -hinken -hinckle -hinchliff -himmons -himmelwright -himmelspach -himebaugh -hilst -hilmes -hillsgrove -hillestad -hillesland -hillegass -hilfiger -hilado -highshaw -highers -higginbothan -higbie -hieronymus -hidy -hickory -hickernell -hibma -hibbets -heximer -hewgley -heutmaker -heuschkel -heupel -heumann -heuman -hetzer -hetherman -hesterman -hespe -hertweck -herson -herry -herrboldt -herms -hermosilla -herl -herbolsheimer -herbel -hera -heptinstall -heppler -heppell -henslin -henschen -hennington -hennagir -henkhaus -henken -henggeler -hempfling -hemmerling -hemish -hema -helveston -helsey -helscher -helo -heline -helfin -helder -heitner -heiple -heinzelman -heinricher -heines -heimsness -heiler -heidelburg -heiberg -hegner -hegler -hefferman -heffelbower -heebner -hediger -hedding -heckbert -hearnsberger -heaivilin -heagle -heafner -hazelrig -hayth -hayoz -haydu -haybarger -haya -havers -haverfield -hauze -haugabrook -haub -hathcoat -hasychak -hassin -hassey -hasenberg -hasek -harvat -haruta -hartvigsen -hartong -hartke -harre -harradon -harnisch -harmond -harmening -harlem -harkrader -harklerode -hargitt -hardon -hardgrave -hardester -harbeson -harben -hanrath -handville -handcock -hamza -hamson -hamming -hamic -hambley -halphen -halpain -halmes -hallaway -hallauer -half -haldiman -halbur -hakkila -hakimian -haimes -hahs -hagmann -hagglund -hagert -hagee -hafeman -haeber -haddan -hada -hackner -hackel -hacher -habisch -haarstad -haare -haaker -gyger -guzowski -guzi -guzalak -guyon -guyll -gutzmer -guttirez -gutt -gutierrex -gutierre -gut -gustis -gushwa -gurke -gurevich -gunyan -gumz -guisbert -guire -guintanilla -guimaraes -guillereault -guidos -guidera -guffin -guererro -guenthner -guedes -guareno -guardian -grussing -gruska -grudzien -growcock -grossenbacher -grosjean -groshans -grondahl -grollimund -groeneveld -groenendyk -grinnan -grindell -grindeland -grimaud -grigorov -griffard -grierson -grich -gribbins -gribbin -grever -gretter -grennon -grenfell -gremer -greising -greenhoward -gravitz -gravis -gravino -graubard -grates -granstrom -grannell -grandt -granat -grambling -gramajo -gralak -graise -grafe -grade -grad -gracy -goyco -goyal -govindeisami -govert -govero -gouras -goulbourne -goularte -gouker -gotwalt -gottshall -gottsch -gorum -gordo -gordils -gorbet -goonan -goombi -gooley -goolesby -goodlet -goodland -gomaz -golt -golombek -golom -golojuch -golightley -goldyn -goldkamp -goldfine -goldermann -goffinet -goetter -goethals -goerdt -goehl -goedken -goede -goedde -goeckel -godshall -godleski -godino -godine -godden -godar -gockley -gockel -gochnour -gobler -goard -gniewek -gnerre -gluszek -glunt -glotzbach -glory -glista -glisan -glende -glee -gleave -glaus -glau -glassing -gladhill -gizzo -giulian -gittins -girven -girt -girling -girardot -gipp -giovannini -gionet -gins -ginolfi -gimar -gilvin -gilliom -gilling -gillece -gilio -gildow -gilberg -gieser -gierisch -gielow -gieck -gica -gibboney -giarraputo -gianopoulos -giannecchini -giambruno -ghrist -ghiloni -geving -getto -gessford -gesner -gesick -gerstenkorn -gersbach -geroge -gerleman -gerl -gerkin -gerding -gerchak -georgiades -geoffroy -gentes -genre -genous -genge -geney -gendusa -gendel -gemma -gembler -gemaehlich -geldmacher -gehris -geffrard -geffken -geans -gavel -gavaldon -gaughran -gaud -gaucin -gauch -gattuso -gatliff -gather -gastonguay -gassen -gasior -garzia -gartz -gartley -garski -garramone -garoner -garone -garnow -garley -garibai -garguilo -garfunkel -gardley -gardecki -garcilazo -garbarini -garan -garafalo -gani -gandert -gampong -gamons -gamma -gambone -gambler -galves -galo -galm -galluccio -gallinari -gallentine -gallamore -galeotti -galella -gajica -gaisford -gaietto -gahlman -gahl -gaglia -gaffke -gaetz -gadwah -gabaree -gaar -fust -furutani -furner -furnace -furgison -furgeson -fundis -fullem -fullagar -fujisawa -fugit -fugh -fuemmeler -fuelling -fude -frusci -frosch -frontera -fronek -fritzman -fristoe -frishkorn -frilling -frigge -friels -friehe -friedline -fridlington -frezzo -frezza -fresta -freise -freiman -freidhof -freiberger -freetage -freet -freemyer -fredin -fredenberg -frayne -fraughton -franzel -frankie -frankenstein -frankenberg -francher -franch -francesconi -franc -fraize -fragmin -frabott -foxman -fouty -fournet -foulcard -fouhy -fougere -fotopoulos -forsmark -fornell -form -forline -forguson -fontus -fontanella -folkner -fok -foggie -fogelman -flumerfelt -fluegge -fluegel -fluck -floe -flocco -flitsch -flirt -flinders -fletchen -flechsig -flebbe -flathers -flatau -flamer -flaharty -fladger -fitten -fitchpatrick -fissori -fissel -fischler -fioritto -fiori -fiorentini -fiorella -finnemore -finkelson -fingleton -fingerhut -finazzo -filmer -fillip -fillingham -filipek -filan -figurski -figueron -figueiras -figley -fiedor -ficker -fickas -fevig -feutz -fetner -fertal -ferraiolo -fernsler -fernet -fernatt -fergusen -ferg -feraco -fenny -fengler -felsted -fellner -fellin -fellenz -felkner -felkel -feliu -feleppa -felderman -felde -feigel -feickert -feibusch -fedorek -fedora -federgreen -fedalen -feck -febre -fearnow -feagler -favorito -faville -favalora -fauls -faudree -fasulo -fassino -farson -farlin -faretra -farenbaugh -farella -faraone -faragoza -fanucchi -fantroy -fanny -fangman -famiglietti -faltus -faltin -falt -falley -falldorf -falick -fala -fahrney -faggs -fafard -faes -fadely -fadel -facchine -fabionar -ezagui -evoy -evilsizer -evick -eversoll -eversman -everley -evelo -euvrard -eun -etkin -ethen -estrela -esteb -estain -estacion -esquerra -esposto -espert -eskra -eskin -eskenazi -eshom -eshenbrenner -esera -escobio -eschief -eschenbrenner -erschen -erlewine -erdner -erck -erceg -erbach -epolito -ephriam -enwright -enwall -entrikin -entress -entler -enstad -engwall -engroff -englemann -engelson -enderlin -enamorado -emme -emlay -emke -emerton -embertson -elworthy -elwick -elward -eloy -ellyson -ellstrom -ellingboe -elliam -elifritz -elgart -elerick -eitzen -eismann -eisentrout -eischeid -eirich -eikner -eickhorst -ehrler -ehrle -eglinton -egerer -egelhoff -edmunson -ecord -eckrich -eckland -echevaria -ebersold -eberenz -ebener -ebadi -ealand -eaks -eagleston -eaglen -eagin -dyals -dwelley -duy -duva -dutter -dutko -duster -duskin -dusel -durrenberger -durke -durian -dupay -duntley -dunsford -dundee -dulemba -dugi -dufficy -duensing -dueno -dueitt -duclo -dubrock -dubitsky -drumgo -drozdowicz -dromgoole -drobot -drivas -drinkwine -drewing -dressman -dreessen -drainville -dragna -draffin -dowgiallo -dovey -dougher -dottin -dossous -dossie -dose -doronio -dorning -dorko -dorion -dorinirl -doring -doorn -donohoo -donnally -donkin -donez -donerson -dondlinger -donchez -donaway -donatien -donath -dommel -domine -domin -domiano -domhoff -domek -doller -dolinsky -dolberry -doker -doil -doidge -dohman -doeden -dodridge -dodgson -dobkowski -dobie -dobes -dobert -diwan -ditomasso -distaffen -distad -dispenza -disorbo -diskind -diserens -discipio -dirico -dire -dirago -diprima -dinwoodie -dinn -dinkens -dinius -dingeldein -dimon -dimitt -dimitriadis -dilliard -dilick -dilauro -dilallo -dilalla -dihel -digilio -difonzo -difeo -dietze -dietl -diesi -diesel -dieppa -dienes -diemert -diegel -dieffenbacher -diec -dickhoff -dickensheets -dibonaventura -dibblee -dibartolo -dibacco -dhondt -dewer -develbiss -devazier -devara -deuser -deur -deuell -detzel -dettling -detro -destine -destefanis -desorcy -desomma -deslandes -desisto -desiga -deshler -deshaw -desgroseillie -desaulniers -derwitsch -derrig -derouchie -dermady -derider -derfus -derbes -depperschmidt -depoyster -depaula -dense -dennin -deniro -denio -dengel -deneen -dempsy -demmy -demmert -demichelis -demedeiros -dembroski -dembitzer -demarse -demaranville -demagistris -deluz -delson -delrossi -delrie -delossanto -delos -delmolino -dellis -dellarocco -dellano -della -delisser -delille -deleston -delerme -deleone -delehanty -delbalso -delavina -delauter -delashmit -dekalb -deguire -degross -degroote -degrasse -degrange -degrace -degasperis -deffibaugh -defaber -decrosta -decristoforo -dechert -decelle -decapua -decapite -decandia -debuse -debruler -deblauw -debella -debeer -dayrit -davidian -davick -davich -davia -daversa -davern -davault -dautrich -dausch -dathe -dastrup -dassow -darras -darnold -darks -dargis -dargatz -darbouze -dannenfelser -dannard -dampf -dalzen -dalphonse -dalluge -dalhover -daivs -dainack -daher -dagle -daghita -dagdag -dafonseca -daffern -daehler -dadson -czuba -czlapinski -czarnik -czap -cynova -cwiklinski -cuzco -cutno -curt -curbow -cunninghan -cunis -cuningham -cunico -culmer -cuhel -cuestas -cuebas -cuchares -cubr -csizmadia -crumpacker -cruell -crousore -crosten -crosman -crooked -cromuel -cromey -crockarell -croan -crissler -crispen -crismon -crise -criscillis -crippin -crilly -cresta -cregar -cragun -coye -cowing -cower -coverstone -coverdell -couty -coutant -courtnage -courteau -couper -countee -coultas -coughran -cottew -cotler -cotelesse -costen -cossin -coskrey -cosen -cosden -corvera -cortis -corsello -corrion -corrigeux -correiro -coro -cornetta -corneil -corlee -corin -corgan -corfman -corell -cordovi -cordia -cordas -corcino -corchero -coral -coppolino -coppernoll -coppens -coote -cooperstein -cooperrider -conterras -consolazio -cons -connin -connerley -conkin -congress -concienne -conaghan -comrey -cominsky -comella -comee -come -combe -coln -collums -collamore -colicchio -colee -colding -colder -colbenson -colagiovanni -cokely -coin -codde -cobrin -coak -cluxton -cluesman -clouston -closser -clopp -cliatt -clendennen -clearman -clattenburg -clarks -clapsaddle -cius -cira -ciolli -cinotti -cimko -cima -cienega -cicatello -cicale -ciarlante -cianfrini -cianciulli -churley -churches -chuong -chukes -christou -christescu -christe -chrismon -chrisler -choun -chobot -chisem -chiong -chimera -chila -chicca -chiarito -chhun -chhum -chhim -chestang -chesler -cherubin -chernosky -cherebin -chepiga -chellis -chell -cheda -checca -cheater -cheatem -chaulk -chaudhuri -chauca -chatcho -chartraw -charping -charnley -charm -charlson -charbonneaux -charan -chapp -chango -chanez -chancer -chamnanphony -chalepah -chaiken -chaddlesone -chaconas -chabaud -cestia -cessor -cervetti -cerveny -cerise -cerecer -cerasoli -cera -centini -cenci -cembura -celli -cederstrom -cdebaca -cayo -cawthron -caviggia -cavers -caveney -causley -caughlin -cathie -catan -catala -castrogiovann -castleton -castilo -castillio -castellaw -castellari -castejon -caspersen -casivant -cashio -cascioli -casciano -casamento -casadei -carwin -carvin -carucci -cartin -cartez -carston -carrio -carriaga -carretino -carotenuto -carosiello -carolfi -carnathan -carnalla -carnagey -carlill -carinio -cariker -caride -care -cardero -cardenal -carasquillo -carabez -capwell -capurro -capulong -cappucci -cappetta -cappa -capouch -caporali -caponigro -capilla -capata -capan -canzoneri -cantine -cantarano -cannellos -cannard -cannada -canlas -cangey -canaan -campoy -campany -campainha -cambi -camba -camastro -camano -calrk -callin -callari -calicutt -calemine -caleb -caldon -caldas -cajas -cadelina -cacal -cabriales -cables -bytheway -byland -byes -byan -buzick -buziak -buzhardt -butzlaff -buttolph -butta -butron -butorac -butaud -butac -busuttil -busque -busing -busboom -burwood -burright -burri -burrall -burness -burlington -burlin -burkham -burick -burich -burgner -burdex -burdell -burde -burba -buol -bundi -bulick -bulgin -bukovsky -bukovac -bujak -bugett -buffo -bueschel -bueckers -budnik -buckey -buckel -buchko -buchinski -buchana -buchaman -bucek -buba -bryans -brustkern -brussel -brusseau -bruntz -brunscheen -brunken -brumbach -bruess -brueckman -brueck -brucken -brozena -brozek -brownley -browers -brosman -brosch -broody -brood -bronzo -bronn -bromwell -brome -bromagen -broll -brofman -broekemeier -brodi -brixner -brisban -brinkmeier -bringham -bridgforth -bridgette -breznak -brewbaker -breitweiser -breiten -breitbarth -brehaut -breedan -breech -bree -bredernitz -brechner -brechbiel -breashears -brazinski -brazille -bratz -bratu -bratsch -bras -branting -brannin -bramsen -brailford -bragas -bradney -bradner -bradigan -bradica -brad -brabston -bozwell -boys -boyn -boyar -boyance -boxton -bowering -bowar -bournazian -bourgue -bourgoine -bourdage -boulier -boulds -boulding -bouch -bottum -bottorf -botero -bossler -bosshardt -bossart -bosman -borzillo -borstad -borsos -borsellino -borrayo -borowiak -borio -borgos -borglum -borghoff -boreland -bordeleau -borchelt -boorman -boole -bookwalter -bookhart -bonventre -bonucchi -bonnema -bongard -bonardi -bonadio -bomstad -bombaci -bolus -bolognese -bolnick -bolebruch -boldrin -bolder -boje -boho -bohmker -bogosh -bognar -bogin -bogatitus -bogaert -boga -boehmke -boeh -bodway -bodemann -bockhorst -bochner -bocek -boblitt -bobbit -boatfield -boast -boardley -bo -blumhardt -blower -blondell -bloemer -bloczynski -blint -blenden -blend -blem -bleininger -bleile -blehm -blechman -bleak -blattler -blattel -blatherwick -blatchley -blasing -blasen -blandin -blaire -blad -blackler -bizzle -bison -bisogno -bisking -bishopp -bischke -biscaro -bisarra -birton -birrueta -birrell -birklid -binkerd -binetti -binegar -bindrup -billerbeck -bilka -biley -bilecki -biglin -bievenue -bierwagen -biernat -bienvenue -bielik -biedrzycki -bideaux -bidding -bickman -biber -bibel -biancardi -bialy -bialke -bialecki -bhattacharya -bezak -bevilaqua -beuth -beuter -beutel -beucler -betties -betteridge -betschart -betran -bethley -beteta -beswick -bessmer -bessemer -besherse -beserra -berver -bertuzzi -bertke -berthelsen -berthelette -bertagna -bersch -berrio -bernoski -bernatowicz -bernardy -berling -berl -bergmeier -bergland -bergfield -bergesen -bergem -bergantzel -bergamo -berdecia -berardo -berardino -bequillard -benzinger -benyamin -bentzen -bennice -benke -benet -beneker -benedum -benedick -bend -bencosme -bemrose -bemiller -bemer -belzung -belmarez -bellina -bellendir -bellemare -bellantuono -bellanca -belkin -belinski -belcourt -bejaran -behl -beeker -beeghly -bedney -bedker -bedeau -beddome -beddoe -becvar -beccaria -beaz -beaushaw -beaulac -beatley -beardon -beachem -beachel -bazydlo -baydal -baxi -bauserman -baudler -batzli -battino -battee -batley -batesole -batcher -basurto -basu -bastianelli -bassage -basner -bashford -basher -bashara -basha -baselice -bartosiewicz -bartolomucci -bartnick -bartholic -barthe -bartelson -barsuhn -barson -barries -barricelli -barrena -barredo -barraz -barrale -baroldy -barne -barmettler -barjas -baris -bareis -bardach -barcroft -barcello -barbuto -barbrick -barbo -barbish -barbaria -baras -baragona -baquet -banwell -banowetz -bandle -bambhrolia -balthazar -balson -balliett -ballestas -balin -balfany -balette -baldrige -baldenegro -baldassara -baldasaro -balcorta -balckwell -balcitis -balasco -baka -baish -bainum -bailin -baile -bahlmann -baher -bagoyo -baggette -bafford -baddley -badanguio -badamo -badame -baczewski -bacorn -bacolor -bacigalupi -bachtold -bacha -babick -azzano -azua -azhocar -ayre -aydt -aydlett -axsom -awada -averbach -avenoso -auzston -auyong -autaubo -austad -aus -aurora -aultz -aulds -auldridge -aul -auge -auel -audirsch -audain -auchmoody -aubertine -auber -astry -asquith -asp -ashdown -asen -aselage -ascensio -asam -asad -artuso -artinger -arritola -arre -arraiol -arra -arouri -arnzen -arntson -arnstein -arnoldy -arnhart -arnet -armentor -armel -arganbright -argall -argabright -arenstam -ardinger -arcuo -arambulo -aramboles -arabian -appelt -appelgren -apodoca -ape -anzai -anttila -antoniou -antoniotti -antonakos -antell -antee -antaya -anschutz -ano -annon -anne -annarummo -anick -angelovich -anes -androes -andrle -andreoli -andreassen -anderl -ancira -anastasi -anastacio -analla -ana -amunrud -amparan -amory -amores -amodei -amdahl -amazan -alway -alvira -aluise -altomonte -altidor -altadonna -alstott -alsina -alshouse -alpizar -alonge -almestica -almaras -almand -allwardt -allum -allgier -allerman -alkbsh -alier -aliano -alfson -alfero -alexender -alessandro -alesci -aldas -aldaba -alcide -alby -albelo -albares -albair -albach -alamin -alagna -akuna -akright -akim -akes -aken -akbari -akau -aitkins -aita -airola -aines -aimone -ailts -ahrent -ahne -ahlman -ahlin -aguire -agor -agner -agerter -age -agcaoili -afzal -afshari -affleck -aduddell -adu -adolfo -adolf -adjei -adham -aderholdt -adens -adee -adauto -acocella -ackroyd -ackers -acken -ack -achter -acheampong -aceret -accornero -abts -abruzzino -abrecht -abramov -aboud -abo -abes -abed -abby -aamot -aalbers -zwolensky -zwiener -zwanzig -zvorsky -zutter -zurowski -zupfer -zunker -zumbach -zubik -zubiate -zottola -zoss -zorman -zonker -zomer -zollo -zolezzi -znidarsic -zmijewski -zmich -zlaten -zisk -zinter -zingler -zindel -zimlich -zillman -zilliox -zigich -ziesemer -zielonka -ziebart -zia -zhuang -zeyer -zerkle -zepf -zenisek -zempel -zemaitis -zeltner -zellman -zelasco -zeisler -zeinert -zeier -zegarra -zeeman -zedaker -zecher -zeagler -zbinden -zaunbrecher -zarlengo -zannino -zanni -zangara -zanetti -zanes -zanderigo -zanayed -zambito -zalusky -zakutney -zaiss -zahar -zagrodnik -zaeske -zadroga -zadeh -zacek -yzaquirre -yuro -yupe -yunt -yue -youns -youngerman -youkhana -yoshizumi -yoshiyama -yoshikawa -yoshihara -yore -yoneda -yoh -yepsen -yepiz -yentzer -yelin -yedid -yeddo -yeboah -yeah -yauck -yattaw -yarrow -yarosh -yarn -yanuaria -yanko -yampolsky -yamin -yamagata -yakow -yaegle -yacono -yacko -xayavong -wythe -wyrich -wydeven -wyandt -wurtzel -wurdeman -wunner -wulffraat -wujcik -wry -wrighton -wreath -wraight -wragge -woznick -woten -wormuth -woofter -woodmore -woode -womeldorff -wolvin -wolman -wolgast -wolfgramm -wojtas -wojenski -wohletz -woetzel -woelke -woelk -woehrle -wittlinger -wittke -witthuhn -witthoft -wittekind -witkus -witbeck -wist -wissinger -wisnoski -wisley -wishard -wish -wipperfurth -winterling -winterholler -winterfeld -winsman -winkenwerder -wingerson -winegard -windland -winchel -wilmott -willwerth -willougby -willinger -willims -williby -willian -williamon -willhelm -willging -willens -willenbring -willcott -willardson -wilhelmy -wildsmith -wildoner -wildberger -wikholm -wigner -wiglesworth -wiggett -wiget -wigdor -wieman -wied -wieboldt -widen -wickett -wickard -wichterman -wichland -wicher -whysong -whyms -whooper -whooley -whitver -whitmoyer -whitehorse -whitebear -whish -whippo -wheler -whelehan -wheetley -wheeland -wheelan -whatoname -whalan -weygandt -wexell -wetherald -westfahl -westerholm -westerheide -westenhaver -westen -wessendorf -wescom -werstein -wersal -werra -werntz -wernicki -wernett -werger -werber -wenskoski -wenk -wendzel -wendelboe -wenciker -wemhoff -welshans -welde -welby -welburn -weisfeld -weisenfels -weinreich -weikert -weiglein -weida -wegweiser -wegley -weflen -weeler -wedo -wedin -wedgewood -wedderspoon -wedd -weberg -weathington -wears -weakly -weafer -weaber -waz -waxler -wave -wauson -waugaman -waterer -wasmuth -washmuth -warters -warsaw -warns -warnken -warney -wariner -warchol -wansitler -wanless -wanker -wandrie -wandler -wanczyk -waltmann -waltersdorf -walsworth -walseth -walp -walner -walmer -walloch -wallinger -wallett -walkley -walkingstick -walentoski -walega -wale -waldock -waldenmyer -walde -waldbauer -walchak -wakayama -waiau -waddick -wacyk -vreeken -vrbka -vradenburg -vounas -votolato -vosquez -vosika -vorwald -vorse -voros -vorgas -vorel -voorhes -voncannon -volstad -volo -volkmer -volden -volbrecht -voisard -voetsch -voetberg -voeltner -voegeli -vock -vlloa -vivona -vivino -vivenzio -vitucci -vittitoe -viti -viteaux -vitatoe -viscome -virzi -virula -virrey -virella -virani -viox -violetta -vinall -villatora -vilcan -vik -vigen -vieths -vielman -vidra -vidot -vidalez -vicent -vibert -vibbard -veth -vestering -veshedsky -versoza -verrell -veroeven -vernola -vernia -verjan -verity -veriato -verhague -verdusco -verderosa -verderame -verdell -verch -verbeke -venture -veness -vener -vendrick -vences -vellucci -vellone -velk -vegh -vedia -vecchiarelli -vazzana -vaux -vaupel -vaudrain -vatalaro -vastano -vasso -vasiliou -vasher -vascones -vas -varuzzo -varrelman -varnedore -vari -varel -vanwright -vanvoorhees -vanvolkinburg -vantrump -vanstraten -vanstone -vansice -vanscoter -vanscoit -vanord -vanoosten -vannortwick -vannette -vannatten -vanloon -vanliere -vanis -vanhese -vangalder -vanelderen -vandre -vandover -vandinter -vandewalle -vandevander -vanderroest -vandermay -vanderloo -vanderlee -vanderlaan -vandergraph -vanderen -vandenbrink -vandenboom -vandenberge -vandel -vandegriff -vandale -vanbruggen -vanboerum -vanbelle -vanauker -vanasten -vanarsdall -vallerand -valladao -valis -valintine -valenziano -valentia -valensuela -vaisman -vahena -vaglienty -vacchiano -uziel -uyemura -utsler -usie -urzua -ureste -urby -urbine -urabe -uptgraft -unterzuber -untalan -ungerman -ungerland -underland -underberg -umholtz -umbright -ulwelling -ulstad -ulmen -ulcena -ulanski -uhlenkott -uher -uhas -uglow -ugland -uerkwitz -uccellini -tysarczyk -tyron -twymon -twohey -twisselman -twichell -tweten -tuzzolo -tuzzo -tutoky -tusler -turnner -turja -turick -turiano -tunnicliff -tummons -tumlison -tumaneng -tuder -tuczynski -tuchman -tubville -tsukiyama -tselee -truxon -truxler -trussler -trusler -trusillo -trudillo -trude -truchan -trowery -trotochaud -tropiano -tronstad -trolinger -trocinski -triveno -trites -triplet -trick -trichell -trichel -trevey -trester -treisch -treger -trefz -tredwell -trebbe -treakle -travillion -travillian -travaglio -trauscht -traube -trapper -tranum -trani -train -towlson -towlerton -towey -tovmasyan -tousley -tourtellotte -toure -toulson -totin -tosti -tosado -toruno -torrisi -torris -torrent -torrado -torner -torino -torell -topolansky -tooze -toot -tontarski -tonnessen -tonneson -tones -tomisin -tomilson -tomasetti -tolomeo -tollman -tolhurst -tolchin -tolbent -toher -toffton -toepel -toelkes -todorovich -todisco -toczek -tockey -tochterman -tobiasson -tlucek -titzer -titman -tise -tippets -tio -tingwald -timmel -timbrook -tilmon -tijerino -tigerino -tigano -tieken -tiegs -tiefenbrun -tichacek -tica -thurmer -thuotte -thramer -thoroughman -thornock -thorndyke -thongchanh -thomen -thoe -thody -thigpin -thielemier -thi -therres -thal -thakur -tewes -teves -tesmer -teslow -tesler -teruel -terron -terris -terre -terrasi -terrace -tero -terman -tereska -teresi -tepp -teo -tenzer -tennille -tennies -tencza -tenamore -tejadilla -tecklenburg -techaira -tayse -tawwater -tavolacci -taverner -taurino -taulman -taublee -tauarez -tattershall -tatsuta -tatsuno -taschner -tasby -tarrats -tarrants -tarone -tarley -taraborelli -taper -tanniehill -tanks -tankard -tangri -tanequodle -tamporello -tamer -tamburro -tambunga -taliman -talib -talas -takala -takach -taiwo -taibi -taghon -tagaban -tadena -taccone -taccetta -tabatabai -szyszka -szmalc -szerszen -szczepanik -szarek -szafraniec -szafran -szablewski -syta -sysyn -syndergaard -symanski -sylvian -syck -swymer -swoffer -swoager -swiggum -swiat -swetnam -swestka -swentzel -sweetwood -swedenburg -swearingin -swartzendrube -swarm -swant -swancey -sverchek -svenson -sutor -suthoff -suthar -susong -suskin -surra -surano -supplee -supino -sundborg -summons -summerour -sumers -sultzer -sulouff -sulecki -suhoski -suhar -sugerak -suganuma -suddoth -sudberry -sud -stymiest -stvrestil -stuve -sturrup -sturmer -stumer -stuhlsatz -stuenkel -studier -stuczynski -stubbolo -struebing -struchen -strozzi -strowder -strohbehn -stroer -strobridge -strobeck -stritmater -strike -strieter -strickling -streu -streifel -straugter -stratakos -strasburger -straface -straatmann -stpeters -stovel -stoudenmire -stotsky -stothart -storz -stormes -storman -stoppel -stooks -stonelake -stonebrook -stombaugh -stoltzman -stolsig -stolpe -stoglin -stoffle -stodgell -stocke -stirna -stipetich -stinner -stimpert -stimer -stilphen -stikeleather -stifel -stiely -stielau -stieger -stidman -stickrath -stickman -stickels -stgerard -sternberger -stergios -stepien -stepanski -stent -stenkamp -stenehjem -stempel -stemmer -stelb -steiskal -steinmuller -steinmacher -steinhorst -steinhaus -steinharter -steinhagen -steinburg -steifle -stefanick -stefanich -steeber -stay -stawarz -stavropoulos -staves -staup -stauch -staubs -stathopoulos -stathis -startz -starowitz -starowicz -starkie -starcic -stanely -standrod -standahl -stanczak -stample -stampka -stamer -stallins -stalford -stahoski -stagger -stader -staack -srsic -srey -squitieri -spyres -spuhler -sprouffske -sprosty -sprinzl -springle -spoth -spletzer -spizer -spitsberg -spitale -spiroff -spirer -spiotta -spinola -spingler -spike -spierling -spickler -sphon -spettel -sperle -sperka -sperberg -speltz -spaw -spasiano -spare -spancake -spagna -sowerby -sovern -souvannasap -southerly -sous -sourwine -soult -sotiriou -sothman -sota -sortore -sorley -sorin -sorells -soratos -soose -soong -sonsino -sonnabend -sonia -songster -sondrol -sondergaard -soltau -solinski -solinger -solid -sojda -sohns -softleigh -soffel -soffa -sodaro -sodano -soda -sobran -sobczynski -sneeden -snater -snair -smoker -smithingell -smink -smiles -smialek -smetak -smejkal -smeck -smaldone -sluyter -slot -slostad -slingerland -sliffe -slemmer -slawter -slavinski -slagowski -slaff -skuse -skulski -skornia -skolfield -skogstad -skinkle -skidgel -skeffington -skeets -skeele -skarupa -skarphol -skaare -sjolander -sjaarda -sitts -sitterud -sitt -sissell -siprasoeuth -sipper -sipla -sipkema -sinning -sinitiere -single -simmens -simm -simiskey -simelton -silverthorne -silvernale -silvan -siliado -silbaugh -siket -siker -sigurdson -signore -sigers -siffert -sieving -sieverding -sietsema -siering -sienicki -siemsen -siemonsma -siemering -sielski -siedlecki -siebers -sidbury -sickman -sickinger -sicilian -sible -sibilio -sibble -shutler -shurgot -shuping -shulda -shula -shrieves -shreiner -shreckengost -shreck -showes -showe -shoupe -shoumaker -shortey -shorten -shorrock -shorkey -shones -shockency -shoats -shivel -shipmen -shinsel -shindledecker -shinabarger -shiminski -shiloh -shillingford -shigo -shifman -shiers -shibuya -shewchuk -shettsline -shetter -shetrawski -sheffel -sheesley -sheekey -sheeder -sheares -shauger -sharko -shanna -shankin -shani -shandley -shanaa -shammo -shamlin -shambrook -shadow -shackley -sgambati -sferrazza -seydel -sewald -sevenbergen -sevaaetasi -seumanu -seuell -settler -setterberg -setera -sesso -sesay -servoss -servino -serpe -sermeno -serles -serena -serapio -senske -semmler -seminole -semel -selvaggi -sellai -selissen -seling -seleg -seledon -selbo -selan -sekuterski -sekula -seiwell -seivert -seise -sein -seils -seier -seidita -seiberling -seher -segroves -segoviano -segel -segee -seftick -sees -seekell -seegobin -seebold -sedlack -sedbrook -section -secrease -secore -seckler -seastrand -seargent -seacrist -seachord -seabrooke -scudieri -scrim -scozzafava -scotten -sconce -scircle -scipioni -sciarretta -sciallo -schwingler -schwinghammer -schwingel -schwiesow -schweinfurth -schweda -schwebke -schwarzkopf -schwander -schwaller -schwall -schut -schurkamp -schunter -schulder -schuenemann -schue -schuckman -schuchart -schroff -schoville -schorzman -schorder -schooner -schones -scholler -schofell -schoewe -schoeninger -schoenhals -schoenbeck -schoefield -schoberg -schnittker -schneidermann -schneckloth -schnebly -schnathorst -schnarrs -schnakenberg -schmitzer -schmidbauer -schmeeckle -schmeckpeper -schmandt -schmalzried -schmal -schlinker -schliep -schlette -schlesier -schleig -schlehuber -schlarbaum -schlaffer -schkade -schissel -schindeldecke -schimandle -schiermeier -scheunemann -scherrman -schepp -schemmer -schelp -schehr -schayer -schaunaman -schauland -schatzel -scharrer -scharping -scharpf -scharnberg -scharmer -scharbor -schalow -schaf -schader -schacter -scelfo -scarpello -scarlet -scaringe -scarduzio -scamardo -scaman -sbano -sayman -saylee -saxena -sawdey -sawada -savitsky -savickas -savic -savaglio -sauriol -sauret -saulo -satar -sasportas -sarvas -sarullo -sarsfield -sarne -sarmento -sarjent -sarellano -sardin -saputo -santheson -santellana -santarsiero -santago -sansalone -sanos -sanna -sanko -sanker -sanghani -sangalli -sandven -sandmann -sandhoff -sandelius -sandall -sanchious -sancedo -sance -sampogna -sampilo -sampayan -sampaia -sampaga -samo -samlal -samela -samec -samad -salzberg -salway -salwasser -salveson -salvemini -salus -salquero -salowitz -salizzoni -salina -salin -salimi -salgero -salemi -salato -salassi -salamacha -salahubdin -salada -saintignon -saintamand -saines -sahl -saha -sagona -sagedahl -saffel -saemenes -sadow -sadlow -sadger -sacramento -sackal -sachtleben -sabota -sabot -sabe -sabata -sabastian -sabad -rzepka -ryzinski -rytuba -ryon -rynes -rykiel -rykert -rykard -rydolph -rydell -ruzicki -rutko -rutenbar -rustrian -rusinski -rushmore -rushenberg -rushen -ruschak -rury -ruper -ruotolo -rummerfield -rumer -rumbolt -rulon -ruleman -rufe -rudo -rudkin -rudick -rubinich -rubidoux -rubero -roys -rowman -rovere -rousu -rouillier -rotton -rotondi -rothenbach -roszell -rossotto -rossmiller -rossey -roshannon -rosenfeldt -roscioli -rosander -rorrer -rorex -ropes -ropac -rooth -roorda -ronsani -ronne -rong -ronfeldt -rondy -romp -romon -romness -romm -romera -romeiro -rombach -romar -romansky -romagnoli -rom -rolson -rojos -rohanna -rogstad -rogillio -rogg -rogacki -roffman -roethle -roeth -roetcisoender -rodibaugh -roderiques -rodenburg -rodemeyer -rodberg -rockovich -rocher -roccio -robeck -robe -robayo -robar -rizzardo -rivie -rival -ritterbush -ritchko -ritchhart -ristig -rishty -rippstein -rippelmeyer -rioseco -ringwald -ringquist -ringham -rinella -rineer -rimple -rilling -rill -rijo -riihimaki -riglos -riggens -rigaud -rigali -rietz -rietdorf -riessen -riesgraf -rienstra -riekena -riedle -riedinger -rieb -rickenbaker -richcreek -richbourg -riccelli -riberdy -ribb -rhodie -rheome -rheinhardt -rezai -reynalds -reyman -reyez -rewenko -reville -revello -revelez -reul -resue -restuccia -replenski -reon -rentar -rensberger -rens -rennaker -renell -remson -rell -relacion -rekuc -reker -reitler -reischl -reints -reinoehl -reinart -reimund -reimold -reikowsky -reiger -reifman -reicks -reichler -reichhardt -rehling -regos -regino -regalbuto -reffner -reents -reenders -reeks -reek -reeck -redmer -redican -reddoch -reddig -reddicks -redbird -rectenwald -recek -rebillard -rebich -rebeck -reagon -raziano -raymore -ravenel -ravel -rause -rauschenbach -rauer -rauchwerger -ratelle -rasinski -rasbury -rardon -rapson -rapkin -raoof -rannells -ranke -rangitsch -rangasammy -randt -ran -ramser -ramsaroop -ramsahai -ramrez -rampley -ramirec -ramesh -ralbovsky -rakoczy -rakoci -rajwani -rajaratnam -raiden -rahmani -ragno -raghunandan -ragas -ragar -rafuse -radvany -rados -radmacher -radick -radecki -raczynski -rachell -qureshi -quirin -quire -quintona -quinnett -quinalty -quiambao -quella -quatraro -quartararo -qualle -qin -pytko -pyer -pyanowski -puzio -pushcar -purviance -purtlebaugh -pupo -pulte -pulse -pullom -pullings -pullano -pulkkinen -puliafico -pulfrey -pujols -puhala -puchalla -pucciarelli -prutzman -prutt -pruneau -prucha -provitt -protin -prose -proco -proa -prisk -prioletti -priode -prinkey -princiotta -prich -pribnow -prial -preyer -prestino -pressimone -preskitt -preli -preissler -prehoda -predovich -precise -prazenica -prawdzik -prast -pozzobon -pozos -powles -pov -poullard -pouch -potucek -postert -posten -posson -posa -portuondo -porten -porst -poree -pora -poque -popiolek -poot -poock -pongkhamsing -ponessa -pone -poncio -polumbo -pollutro -pollet -pollen -poljak -polemeni -pokswinski -poisel -poette -poelman -pody -podewils -podaras -pocius -pobanz -plympton -ply -plush -plume -pluff -plues -plue -plona -plexico -plew -pleiss -pleil -pleasanton -plattsmier -plathe -plankey -plahs -plagge -placker -placha -pizira -piwowar -piwetz -pittelkow -pitta -pithan -pitcherello -pisciotti -pipilas -pintea -pinta -pinkstaff -pinkos -pinc -pilotte -pillo -pihl -pignotti -piggs -pietrzyk -piermont -pieczynski -piechowski -piech -pickersgill -picetti -picciuto -piccinini -picarello -picardo -picado -piantanida -pianka -pian -phothirath -phippard -philman -philipson -philavanh -phelts -phanor -phanco -pflughoeft -pflugh -pfliger -pfeister -pfeifle -peyre -peyatt -pettine -pettett -petru -petronio -petricka -petrak -petko -petitto -petersson -pesnell -peshek -pesh -pescador -perze -perteet -pertee -pert -perschbacher -perruzzi -perrish -perrigan -perriello -perr -perozo -perlich -perking -perkes -perfater -perce -pepez -peon -penunuri -penuel -penso -pennisi -penkins -penkalski -pendon -pellon -pellissier -pelino -pel -peick -peguese -peggs -pefanis -peeters -peedin -peduto -pedulla -pedrozo -pedrotti -pedroncelli -pedrogo -pedri -pedregon -pederzani -pedde -pecukonis -peckler -pecka -pecha -pecci -peatman -peals -pazo -paye -pawlusiak -pawlitschek -pavlosky -pavlo -paveglio -paulman -paukstis -pauk -patts -patter -patriss -patneaude -paszek -paswaters -pastula -pastuch -pastel -passy -passarella -pasquin -pasqualetti -pasqual -pascuzzi -pasceri -parviainen -parral -parolini -parmele -parma -parlavecchio -parfitt -parez -pardieck -pardew -parda -paraz -parat -papay -paparello -papaioannou -paolello -pansini -panelli -panell -pander -pancholi -panaro -panagiotopoul -palomarez -palmrose -palmisciano -palmese -pallotto -palleschi -palk -palhegyi -palenzuela -paleaae -palczynski -palakiko -palaia -paith -pagonis -pago -pagliuca -pagliari -paganini -padovani -padfield -padamadan -pacquette -paco -packwood -pachero -pachar -pacewicz -paasch -pa -ozols -ozga -ozenne -oxman -overpeck -overbeek -overbee -oulette -otsu -otremba -otool -otar -otanicar -osumi -osucha -ostrov -osthoff -ostertag -ostergard -ostaba -ospital -ososkie -osofsky -osisek -oshinsky -orzalli -orwin -ortwein -ortuno -orts -ortell -orpen -ornelaz -orewiler -ores -ordones -opunui -oppenlander -opoien -opalka -ooley -ontko -ondrey -omura -omtiveros -omland -olup -olthoff -olsten -ollila -olivia -olinsky -olinick -oleksa -olejarz -oldakowski -okoronkwo -okins -ohmer -ohlsson -oherron -oheron -ohanian -oganesian -ogaldez -oest -oehlenschlage -oedekerk -odon -odekirk -ocran -oconor -obrzut -obrist -obringer -oborny -oblander -obi -oberley -oberer -obeng -oatridge -oajaca -nypaver -nuzzi -nuzback -nuxoll -nussbaumer -nurmi -nuhn -nugen -nuara -nquyen -nozicka -noxon -nowick -nowaczyk -novielli -novembre -november -novas -noun -notto -notowich -norzagaray -norway -northover -northcross -norem -nordmann -nordenson -nolet -nojiri -nohel -noethiger -nodd -nitzel -nita -nisbit -nina -nikas -nigon -niglio -nighswander -nighbert -niemietz -niedzielski -niederkorn -niederhaus -niederer -nicometo -nicolaides -nickolich -nguyn -neyra -neymeyer -newmon -newgent -newbery -nevala -neuweg -neuhoff -neuhauser -neubecker -nettik -netters -nestingen -nesspor -nerad -nenez -neldon -neizer -neives -neils -neiger -neidich -neibert -negroni -neemann -needle -neeb -nedry -nedley -neas -naze -nazaroff -nayes -nayar -nattress -natonabah -nassr -nasseri -nassef -naso -narkier -naret -nardini -nardecchia -naragon -naputi -napierala -nanny -nanke -namdar -naji -naidoo -nahm -nahas -nagelschmidt -naes -naegeli -nacol -naclerio -nachor -nabozny -nabarrete -nab -myrlie -mykins -muzio -mutolo -muta -mustoe -muster -muske -muschamp -muscarello -musacchio -murzycki -murrufo -murnan -muraski -murany -murano -munzer -munis -munion -mumby -mumbower -mulrain -mullinex -mullineaux -mullennix -mullahey -mukhtar -muina -muha -muehlman -muccigrosso -mrozoski -mozier -mow -mova -moustafa -mousser -mouse -mousa -mouritsen -mourad -mottet -motten -motamedi -mostowy -mostafavi -mosiman -moscone -moscicki -mosbrucker -morva -mortinez -mortel -morsey -morrin -morren -morosco -morledge -morla -morisky -morishita -morisey -morgia -moretta -morera -morenz -mordue -mordhorst -mordaunt -morber -morawa -moravick -morarity -mooty -mooser -moock -moochler -montoure -montooth -montonez -montierth -monticello -monteverde -monterrano -montella -montecillo -monsrud -monsma -monserrat -monrreal -monro -monetti -mondok -mondella -moncion -monaldi -moltz -molon -mollicone -molle -moliterno -molinere -molinary -molesworth -moh -mogush -mogren -moellers -moeck -modert -mockbee -mocher -mochel -moc -moberley -moan -moallankamp -miyose -miyata -miyashita -miyagi -mitsuda -misumi -missel -miskelly -misiaszek -mirzadeh -mirto -mirsch -mirles -miolen -minzel -minutillo -minugh -mintzer -minskey -minnaert -minkoff -miniard -mingledorff -minas -minaai -milly -millinor -millie -millerd -millea -milkey -milham -milfeld -mileham -milas -milar -milak -mikulski -mihara -mihalek -mihalchik -mihal -mignot -mignano -mighty -miesse -mierzwinski -micthell -mickus -mickolick -mickiewicz -michlin -michelena -micha -miccio -micari -mezzatesta -mewbourn -meuse -meurin -metzker -mettling -metting -metters -metropoulos -metevia -mesteth -mesko -mesi -meserole -mervyn -mernin -mermelstein -merling -merli -merkowitz -merklin -merkerson -merica -merendino -mercury -meray -meranto -merancio -mensik -mense -menoni -mennie -mengsteab -menes -mend -mency -memolo -meltz -meling -melen -melcer -melamed -mekee -meiste -meise -meinhard -meierotto -mehok -meharg -meginnes -meenach -medicus -mediano -media -medell -mede -meddaugh -meconi -mech -mearse -meardon -mealor -meadville -meachen -mcvicar -mcsparin -mcrorie -mcrobbie -mcoy -mcowen -mcnorton -mcnertney -mcnamer -mcnail -mcmanamon -mcmain -mclyman -mcleland -mckirgan -mckew -mckevitt -mckercher -mckensie -mckeegan -mckeane -mckahan -mcinture -mcindoe -mcilvenny -mcillwain -mciff -mcgwin -mcguff -mcgrotty -mcgrone -mcgrant -mcgoogan -mcglon -mcgloin -mcgiveron -mcghehey -mcghay -mcgavin -mcgahen -mcfann -mcelwaine -mcelduff -mceachron -mcdilda -mcdermid -mcdannold -mcdale -mcculough -mccuien -mccrumb -mccrorey -mccreless -mccravy -mccourtney -mccorrison -mccorkell -mccorey -mcconney -mcconnaughhay -mccollester -mcclurkan -mccluer -mccloudy -mcclenaghan -mcclave -mcclarnon -mcclarin -mcclaney -mcclanan -mcclair -mcchristion -mccaskell -mccartha -mccarl -mccamant -mccalmont -mccalman -mccaine -mccahill -mccague -mcbrown -mcanany -mcalvain -mazzurco -mazuc -mazo -mazingo -mawhorter -mavro -mavraganis -mautner -mautino -mauceli -matzinger -maturi -matturro -mattlin -mattheis -matsuoka -matsuki -matro -matlack -matice -mathson -matheu -mathenia -math -matejka -mateja -matanane -masztal -mastropaolo -mastromarino -mastrolia -mastel -massy -massoud -massimino -maslanka -masini -mascioli -marzec -marvier -maruyama -marusarz -marum -martorella -martire -martinkus -martinas -martiez -marthe -marteney -marschall -marruffo -marrazzo -marples -marohl -marn -marlborough -markunas -marki -marjan -maritnez -marinkovic -marineau -margaitis -marentis -mare -marcou -marciel -marci -marchiori -marchello -marchell -marcelle -marcelin -marales -mapel -manzanarez -mantilia -mansmith -manon -mannschreck -mannick -mankiewicz -mankel -manila -manifold -manha -mangrich -mangiapane -mangiamele -manera -mandes -mandella -mandelik -mandaloniz -mand -mancusi -mancine -mana -mamula -mammoccio -malzhan -malzahn -malsom -maloon -malnar -mallone -mallinson -mallie -mallek -malle -malinoski -malinconico -malicoat -malicdem -malhi -malfatti -malandrino -malamud -malakowsky -makovec -makey -majercik -majer -majamay -maisenbacher -mainey -mailey -mailander -mahuna -mahomes -mahoe -mahnken -maheras -mahaxay -mahana -maham -magnia -magni -magnanti -magliano -magliacane -maglaughlin -magistrale -magierski -maggini -magano -mafnas -madren -mador -maderios -madena -maddron -madan -madalinski -macmanus -maclead -mackowski -mackinaw -mackessy -mackerl -macker -macivor -machold -machain -macedonio -macdiarmid -macchiaroli -macbean -macayan -macari -mabin -mabel -lyter -lyster -lysne -lynskey -lyness -lyndaker -lymaster -lykke -lyell -luxmore -luttmer -lutgen -lusignan -lupold -lungstrom -lunford -lundeby -lumbard -lule -lukaskiewicz -luinstra -luevand -luer -lueking -luehrs -luecking -ludvigson -ludgood -lucich -luchetti -lubman -lubic -lozito -lowhorn -lowd -loverich -loveman -lovas -lovaas -louvier -louthen -loury -loukanis -loughner -loughnane -louato -lotshaw -lother -lothamer -loter -losinski -losinger -loshek -losecco -lortie -lorin -lorent -lorello -loras -lorah -lopau -loosen -lontz -longpre -longie -loncaric -lombrana -lomba -lohrey -lohoff -logghe -loges -lofstead -lofft -loertscher -loeper -loeblein -lodato -lochen -lobbins -lobban -lizarrago -livigni -livernash -liukko -littich -litterer -littau -litchmore -lisy -lissy -lishman -lischak -lirag -liptow -lins -linkhart -linkert -lingren -lingelbach -lingel -lingad -linet -linegar -linebrink -lindroth -lindeland -lindboe -linardi -linard -ligman -liggans -lifland -liff -lieuallen -liesveld -liess -lienhard -liehr -liedy -liedke -liebau -lidtke -lidstrom -licano -libra -leys -leymeister -lewerke -lewand -levoci -leviton -levien -leveston -leverenz -levere -levangie -leuy -leukuma -lettman -letran -letlow -lethco -letersky -lestronge -lesso -lessey -leshem -lerud -leps -leonesio -leones -lento -lente -lennertz -lenior -lenhard -lenfest -lene -lendrum -lempicki -lemonier -lemle -lemkau -lemings -lem -lelli -lekas -leitten -leitheiser -leino -leiner -leinenbach -leidy -leidich -leid -leich -lehnhoff -leh -legum -legoullon -legeyt -legalley -legace -lefton -lefthand -leforge -lefore -lefleur -leerar -leef -leed -ledl -leddon -ledain -leckie -lecates -lebeouf -leben -lebeck -lebeaux -leban -leaverton -learman -leardi -leamy -lazare -lazarczyk -layssard -layson -layhew -layel -laychock -lawernce -lavzon -lavalla -lauterborn -laut -lauseng -lausen -laurino -lauri -laurenzano -laurenza -laundry -laumbach -lauinger -lauenroth -latzke -latulipe -lattig -latronica -latouf -latko -latiker -lathern -laterza -latchaw -lataquin -lasure -lashomb -lasell -lasasso -lartey -larriva -laro -lardner -lardieri -laprarie -lapping -lapitan -lapeyrolerie -lapar -lanzetta -lantis -lanka -lani -langshaw -langmyer -langin -langerman -langeland -langbein -landro -landrian -landmesser -landmann -landfair -landesberg -lanciotti -lamprey -lampey -lamos -lamora -lamoine -lamfers -lambka -lamance -lamana -laliotis -lajza -lajaunie -lainson -laher -lahar -lagrotta -lagrant -lagraize -lagnese -lafrazia -lafountaine -laflin -lafaso -lafarga -ladage -lacsamana -lacrosse -lacrone -lachowski -labruyere -labrake -labossiere -laba -laack -kyzar -kynard -kwek -kuzmin -kuttner -kusiak -kuser -kuse -kurtzer -kurtzeborn -kurpinski -kurohara -kuroda -kurnik -kurihara -kurdziel -kurban -kuras -kupper -kupferer -kupec -kunzelman -kunkler -kunin -kunesh -kumro -kumpf -kulon -kulka -kukucka -kuk -kuhse -kuhls -kuhlo -kuhar -kuerbitz -kuenzi -kuehneman -kudron -kuczenski -kuchle -kuchenmeister -kuchenbecker -kucan -kubu -kubsch -kubiszewski -kubish -kubicz -kubick -kubaska -kuarez -ksiazek -kshywonis -krzykowski -krzak -krysl -kruzewski -kruzan -krumrine -krumins -krucker -kroupa -krough -krotz -kronstedt -kromrey -krogstad -krogmann -kroeze -kroetz -kroc -kristianson -kristen -kriser -krips -kringas -kriete -kreuter -kretschmann -kresha -kreidel -kregger -kreatsoulas -kratochwil -krasovec -krase -krapf -kranawetter -krajnik -kozubal -koyanagi -kowalkowski -kovarovic -kovalcin -kou -kotzen -kotnik -kostelecky -kostek -kostecki -kostal -kosse -koslowski -koskie -kosicki -koshar -kosek -kortright -korpal -kornhauser -kormos -korinek -korgie -kordsmeier -kordish -koral -kops -kopps -kopperud -koppang -kopfer -kopet -kook -konno -konik -konek -konefal -komm -komis -komer -komarek -kolsrud -kolp -kolopajlo -kollmorgen -kolis -kolesnik -koles -kolding -kohs -kohlhoff -kohatsu -kohara -koetter -koestler -koepsel -koeppe -koenigsman -koelewyn -koe -kodadek -koci -kochler -kocab -kobylinski -kobryn -koberg -knower -knollenberg -knock -knizley -kniss -knies -knezovich -knesek -knepel -knehans -kneeskern -knaust -knapke -kmet -kluz -klukas -kloska -klopf -klinglesmith -klinekole -klimes -kliment -klimaszewski -klepfer -klepacki -klepac -klemash -kleinkopf -kleinknecht -kleimola -kleiboeker -klei -klehn -klegin -klavuhn -klauer -klasinski -klasing -klarr -klapec -klaass -klaameyer -kjelland -kiyuna -kitching -kistle -kissi -kishi -kirvin -kirtner -kirovac -kirnon -kirkby -kiritsy -kirchgesler -kippley -kipping -kinzig -kins -kinnare -kinna -kingcade -kinatyan -kimme -kimbrow -kimbril -kilzer -kiltz -killmer -killibrew -killeagle -kilger -kiles -kievit -kientzy -kielty -kiekbusch -kiehne -kiefert -khou -khiev -khat -khare -keywan -keyt -kevin -keville -kevern -keuler -ketola -ketelaar -kertis -kerson -kernen -kerkman -kerker -keogan -kenwood -kenne -kenaan -kempler -kempisty -kempfer -kempen -kemmerlin -kelter -kelman -kellie -keliihoomalu -keleman -kekiwi -keiswetter -keiss -keilty -keidong -kegel -keets -keeneth -keefner -kedzierski -kebort -keate -keat -kazmorck -kazi -kaz -kawachi -kaushiva -kauk -katzner -katzmark -katzen -katsuda -kats -kater -katen -kasting -kasserman -kassay -kassabian -kasprowicz -kasperek -kasowski -kasmir -kaska -kasik -kascak -karth -karsnak -karshner -karsh -karmel -karlstad -karley -karins -karimi -karcich -karch -karapetyan -karakas -kapsalis -kappeler -kapke -kaperonis -kapahu -kanthak -kansky -kansas -kanoy -kanno -kannady -kandarian -kanai -kanae -kanaan -kamphoefner -kammler -kaminetzky -kaminaka -kamienski -kamaunu -kamakea -kama -kaltefleiter -kaloustian -kaloi -kallmeyer -kalisch -kalinski -kaliher -kalgren -kalfas -kales -kalafatis -kagle -kadish -kachermeyer -kabina -kaawa -kaaua -kaatz -juvera -jutte -justen -jusko -juriga -jure -jungquist -jungbluth -juneja -juncaj -juliet -juhas -juenger -juell -jucean -jubinville -jovich -jorres -joris -jore -jonhson -joneson -jonassen -jolissaint -jointer -johnny -johengen -johar -joh -joern -jodway -jobs -joanette -jirik -jirasek -jipson -jinkerson -jinkens -jiminian -jimeno -jiau -jevnikar -jessel -jerauld -jephson -jentzen -jenkerson -jenista -jenifer -jemmett -jelovich -jehlicka -jeffris -jedziniak -jeantet -jeanclaude -jayme -javor -javaux -jaurigue -jaureguy -jarvinen -jarocki -japp -janszen -jansons -jans -jankauskas -janka -janhunen -janeczek -jandrin -janczewski -janack -jamir -jakuboski -jakubik -jakubek -jahnel -jageman -jaenicke -jacquem -jacquay -jaconski -jacobellis -jablon -iyo -ivancevic -iurato -iulianetti -itri -issler -isla -isip -ishmon -ishizu -isgrigg -iseri -iseli -iseley -isbrecht -isassi -isaiah -irsik -irias -inzana -intveld -intrieri -interdonato -instasi -inscho -ingwell -ingebretsen -inga -inda -incle -inabinett -imus -immordino -imbesi -imbach -illsley -illig -ill -ignowski -idler -idleburg -ideue -ibara -ianuzzi -ianniello -iacovone -hyter -hyles -hyle -hykes -hyams -huxley -hutch -hustead -huscher -hurtz -hurse -hurren -huret -huotari -huntress -hunting -hunstiger -hunking -humpries -humbles -hum -hulvey -hulcy -huizinga -huhman -huhammad -hufty -huesso -hueftle -huebschman -huebert -hue -hudmon -huberman -hubbartt -hubach -hsueh -hrycenko -hrabal -hoxit -howsare -howman -howitt -howerter -houlton -houis -hottman -hotovec -hostin -hoshall -hosfeld -hoschek -horwath -horsely -horsburgh -horovitz -hornstrom -hornbarger -horkley -horka -horey -horeth -hordyk -horack -hoppin -hoppel -hopfensperger -hooey -hooe -honhart -honga -honeck -homs -hommell -homles -homen -home -holzner -holzheimer -holzem -holsopple -holsman -holowell -holliway -holizna -holesovsky -holderbaum -holbach -holan -hoit -hoist -hohenbrink -hoger -hofmans -hofheimer -hoffhines -hofbauer -hoesing -hoeschen -hoerter -hoepfner -hoemann -hodgeman -hockersmith -hochadel -hobock -hobel -hluska -hlavac -hisrich -hirsbrunner -hirpara -hire -hinners -hindbaugh -himenez -hilles -hilleary -hillanbrand -hillan -hildner -hilding -hilderbrandt -hiland -hightree -highnote -highberger -higgason -higaneda -hidinger -hickock -heymann -heusinkveld -heusel -heuring -hettler -hesseltine -hesselink -hesford -herth -herskovits -herschell -heroman -hernton -herne -hernandaz -hermez -hermanstorfer -herling -herke -herimann -heriford -hergenrader -herforth -herdes -hercher -herceg -herbick -hentze -henniger -henney -henness -hennegan -henkes -heneisen -henderickson -henard -hemrick -hemric -hempton -hemp -hemme -hemeon -hembry -hembrough -hembrey -helstad -helmus -hellings -hellgren -helie -helgert -helgerman -helger -helgason -helfinstine -helfgott -helfenstein -heldreth -helander -heitzmann -heisserer -heising -heisel -heinold -heinis -heinemeyer -heimark -heiliger -heiderman -heidenescher -heidebrink -hehir -hegan -heersink -heep -hedquist -heckford -hebets -heberly -heberle -hebenstreit -heavilin -heartz -heaphy -heany -hazer -hazelgrove -haynsworth -haydock -hawelu -havnen -havely -hauss -hausam -haumesser -hauman -haulk -hauley -haubrick -haubner -hattman -hatman -hatherly -hatchcock -hastert -hassenplug -hasko -haser -haselhuhn -hasberry -has -harthorne -harthcock -harriett -harouff -harootunian -harkavy -harell -hardridge -hardacre -harborth -haraguchi -haptonstall -happenny -hantman -hanses -hannemann -hannay -hannafin -hanle -hangartner -handerson -hanberg -hamzik -hamstra -hammans -hamano -halsema -halonen -halim -halek -haleamau -halama -hakeem -hainley -hagley -hagist -hagie -haggberg -haggan -hagele -hafenstein -hafemeister -hady -hadges -hadef -hackey -hach -habbyshaw -haaga -haab -gysin -gwirtz -guzzio -guzzardo -guzma -gutzmann -gutta -gutermuth -guterman -gutenberger -gurganious -gural -guppy -gunzalez -guntert -gums -gumb -gullotta -gullixson -gulling -gullace -guler -gulbransen -guitian -guinta -guinasso -guilboard -guichard -gugliotta -guglielmina -guggenheim -gugel -guetierrez -guethle -gueth -guerrido -gueits -gudenkauf -gucciardo -guarnera -guadagnolo -gsell -gschwend -grush -grupp -grundmann -grunau -grueninger -gruca -groupe -grotzinger -grotheer -grossmeyer -grossetete -grossack -gromer -groenke -groening -groehler -groebner -grochmal -groby -grobes -gritman -griswould -grisset -grime -griffo -griesinger -greuel -greth -gressman -gremel -greiwe -greis -greil -greife -greider -grefrath -greff -greenmyer -greany -grazioplene -gravlin -gravito -gravert -grav -grater -grap -granzin -grannum -granlund -grando -grammes -gramley -grambo -grala -grahl -gradwohl -gradillas -gradert -graciana -grabner -grabinski -grabinger -grabel -graaf -gouzy -gouger -gottron -gottardo -gothro -gosso -gossi -gorringe -gorneault -gorn -gormly -gorenflo -goral -gopen -goosey -goodnoe -goodie -goodhile -goodfield -goodard -gonneville -gongalez -gondola -gompf -gommer -gollehon -golie -golebiewski -goldinger -goldhaber -goldfeder -goldbaum -golaszewski -gojcaj -gogerty -goettsche -goethe -goessl -godson -godbe -gochanour -gocha -gnau -gnatek -glud -glorius -glordano -gloodt -glod -glinka -glime -gleim -gleicher -glazewski -glay -glasford -glascott -glanzman -glahn -gladish -gjerde -gizinski -gitzen -girsh -girote -girman -giovino -giovanini -giorgini -ginty -ginsky -ginnings -gingues -gingg -ginger -giner -gimm -gilruth -gillund -gillenwaters -gilday -gilcrest -gilcher -gilani -gigstad -giernoth -gienger -gidaro -giczewski -gibas -giarratano -giantonio -giannitti -giannetti -giampapa -giacopelli -giacone -giacomelli -gherman -ghera -ghan -gevorkyan -gettig -getchman -gesinski -gerundo -gershenson -gerraro -gernert -germundson -gerloff -gergel -gerdeman -gerdel -geraldo -geraldes -georgopoulos -georgis -georgevic -georgeson -genzel -genung -gentzler -gentili -genich -gelzinis -geiken -geidner -geidl -gehrer -geho -gehlbach -geeding -gedye -geberth -geathers -gearan -gealy -gazzola -gazella -gawrych -gavidia -gautam -gaumont -gaudenzi -gaucher -gaubert -gattas -gatley -gaters -gatchalian -gassel -gasman -gaslin -garufi -garriepy -garrell -garrand -garnto -garns -garno -garlinger -garivay -garhart -gardino -garcea -garbin -garaventa -garavaglia -garahan -garafano -garacia -gapen -ganiron -ganino -ganim -gangwish -gange -ganes -gandia -gandeza -gamlin -gamelin -galway -galow -gallob -gallishaw -gallinaro -gallicchio -gallese -gallero -gallegas -galeoto -galeas -galbreth -galbavy -galavis -galam -gajate -gair -gagney -gagel -gagarin -gaete -gaetani -gadbaw -gack -gabrysch -gabardi -fyksen -futrelle -furl -furches -furbeck -funnye -funicello -fumagalli -fullford -fulginiti -fulenwider -fulena -fugler -fuerstenberge -fuentas -fucillo -fuapau -fryberger -frusciante -fruehling -fromberg -froeschle -frock -fritzgerald -fritcher -frisbey -frihart -frieling -friedler -frie -fridell -freuden -freud -frett -frend -freiling -freije -freie -freidman -freibert -fregozo -freehling -fredo -fredlund -fredley -frede -freberg -frayre -fraunfelter -frascella -franssen -frankowski -francour -francom -francillon -francey -fraioli -fracassa -fostervold -fossey -foshay -foscue -forsell -forrister -forren -fornicola -fornes -forgie -forbs -foppe -foore -fontecchio -fongeallaz -follick -folio -foder -flyzik -fluhman -fluet -flow -floto -floros -floriano -floren -floran -floerke -flitcroft -flipp -flintroy -fleschner -flenner -fleeting -flamio -flaggs -flagge -fjeseth -fithen -fissell -fischman -fire -fioranelli -finseth -finocchiaro -finerty -fineman -finchman -filyaw -filipovich -filas -figler -figge -fiers -fiereck -fidell -ficorilli -fico -ficks -fickle -fialkowski -feyen -fetz -fetsko -ferullo -fertitta -ferriman -ferrebee -ferrand -ferrales -fernelius -fernberg -ferioli -fergoson -ferenc -fereira -fequiere -fennema -fenelus -fenelon -feneis -femrite -feltenberger -felsenthal -fels -felmet -felgenhauer -felarca -feiteira -feirer -feinen -feigenbaum -fehlinger -federle -fecko -feavel -featheringham -fayer -faxon -faurrieta -faull -fatone -fatigate -fasy -fasula -fassio -fass -farwick -farrill -farquer -farmwald -fantozzi -fanoele -fannell -fanizza -fandrich -fallo -fallago -faist -faines -faine -fahrendorff -faggard -faessler -fadale -fabrizi -eychaner -exon -exilus -ewig -evitts -evinger -everheart -everhardt -eveleth -eveleigh -eurbin -esworthy -estus -estock -esterbrook -essler -esque -espina -espalin -eschenburg -eschberger -esbenshade -ertley -erstad -erp -eroman -erno -ermatinger -erkkila -erkela -eriquez -erin -ericks -erdahl -ercolani -equils -eppinette -eon -enter -enke -engley -englebrecht -engleberg -englar -engelstad -engelsman -engellant -ence -emslie -empie -emoto -emons -emley -emile -embly -embler -emanuelson -emal -elzinga -elwer -elvis -elvington -elshere -elmquist -ellout -ellifritz -ellerd -ellerbusch -elizando -elizabeth -elick -eliasen -elgert -elger -elena -elbers -ekstein -ekmark -eiser -einck -eimers -eilert -eidinger -eicke -ehsan -ehn -egleton -egel -effner -ednilao -edner -edmons -edmister -edmison -edlow -edholm -edgeman -edgcomb -edell -edelblute -eclarinal -eckroad -echave -ebesu -eberwein -ebeid -ebe -ebbing -eastlund -eary -earps -dzuro -dziuban -dysinger -dyner -dymek -dyll -dyl -dydell -dwelle -dwan -duvernois -dutson -dutro -dutchover -dusky -duskey -dusik -dushkin -dushane -durrani -duroseau -durnford -durk -durepo -duranceau -duprat -duplechin -duperry -dunscomb -dunkleberger -dung -dunegan -dundlow -dumpson -dumphy -dumpert -dumesnil -dullum -duldulao -dular -dukart -duhan -dugdale -dugat -duffney -duesing -duenow -duce -dubson -drzewicki -druetta -drube -drozdenko -drop -drohan -drivers -drinski -driever -drewer -dressen -drehmer -drawe -drapkin -draney -drahota -dowers -dowdall -dovenbarger -dousay -douin -doughan -doucett -douce -dorshimer -dorsaint -dorries -dorosky -dorl -dorich -dorenfeld -dorcelus -dool -donoso -donnick -donnely -donart -donalds -donaghey -donaghe -dominges -domebo -dollings -dolejsi -doggette -doell -dockwiller -dockal -dobosh -dobis -dobiesz -dluhy -dixons -divin -diventura -divenere -divelbiss -dittrick -ditommaso -dirosa -dircks -diogo -diodonet -dinning -dininno -dimodica -dimitroff -diminno -dimassimo -dillie -dilan -digsby -digrande -digmann -digirolomo -digian -digiacinto -dietzen -dietlin -dietert -diersen -dienst -dieffenbach -dicorcia -dickhaut -diberardino -diab -dhein -dhar -dhamer -dezan -dez -dewispelaere -dewhirst -devonish -devincenzo -devillez -devany -devalcourt -deubler -dettori -detone -detommaso -detoma -desue -destree -destephen -desso -desselle -desimoni -desadier -derham -derfler -dercole -derasmo -depugh -deporter -depolito -depa -deninno -deni -denenberg -denaro -denardis -demry -demro -demmel -demme -demiel -demeritte -demarzio -demaline -demaine -deluco -delton -delsordo -delosa -delongis -delois -deloff -delmuro -delmoro -delmonaco -delmage -dellen -dellaripa -dellamore -delhierro -delfuente -deleppo -delemos -delea -delcarmen -delaura -delanuez -delang -delamarter -delamare -delage -delacuesta -dekorte -dekenipp -dekany -deinhardt -deily -deierlein -degravelle -deglow -degler -degiulio -defoore -defonce -deflorio -defiore -defilippi -deed -dedeke -dedecker -dedaj -decost -decillis -dechellis -dechaine -decarr -decaprio -debutiaco -debski -debry -debruhl -debouse -deblase -debey -debenedetti -debacker -deang -deandrade -deadmond -deacy -daykin -dayhuff -dayal -davion -davidsen -dautremont -daughrity -daubs -datwyler -datko -dasmann -daruszka -darugar -darroch -daro -darkis -daricek -daras -dar -dapoz -dapinto -danuser -danoff -dankmeyer -danesi -danesh -daneker -dammen -damien -damberger -dalmoro -dallmier -daller -dalka -daliva -dahline -dahlhauser -daguerre -dagrella -dagraca -dagesse -dage -daehn -dado -dabbraccio -dabato -czolba -czepiel -czelusniak -czechowski -czarny -czar -czapski -cywinski -cyran -cypret -cwiek -cuzzort -cuzzi -cutty -cutrone -cuthrell -cuthill -cutbirth -custeau -cushingberry -curvey -curson -currell -curly -curll -curdy -curcuru -cupstid -cuoco -culverson -culnane -culliver -cullivan -culleton -cuddeback -cuckler -cubillo -cubias -cua -cryar -crutsinger -crusan -crupe -crummie -cruice -cruea -crowthers -crowers -crowdis -crovo -croson -crosno -crosdale -cronwell -cronon -crocetti -crnich -cristal -crisson -crismond -crighton -cridland -crickard -creten -cretella -crespino -cremins -cremers -creehan -creecy -credell -cranney -cranker -craker -craffey -cozzy -coyazo -coxum -cowdin -covino -coven -courtenay -course -courier -courchene -coup -couley -couchenour -cotugno -cottongim -cotti -cotillo -costine -costain -cosmo -coslan -cose -coryea -cortwright -corsoro -corrente -correl -cornford -corneluis -cornelious -corneau -corne -corkins -corippo -corgiat -coreil -cordwell -cordovano -cordill -cordano -corazza -coran -coppess -coonrad -coonfare -coomber -cooksley -cookis -coodey -contrino -contee -consorti -console -conorich -conole -connoly -connley -connington -connie -conness -conly -conkright -coner -conchas -comrie -compston -compagno -comnick -commiskey -commer -comiso -comish -comden -colondres -collica -colleen -colle -collaer -colinger -colford -colao -colanero -cohens -cofresi -coerver -cockriel -cockran -cockerell -cobham -cobert -cobern -cobell -clunie -clubs -clubbs -cloutman -clise -clippinger -clerkley -cler -clemmens -clemen -cleare -cleamons -claycamp -clawges -claverie -clarkston -clarity -clantz -clakley -clain -cizek -ciuffreda -citrone -ciraco -cinotto -cini -cinadr -cilento -cilano -cihon -ciganek -cieslinski -cicoria -cicco -cibula -ciarrocchi -ciak -ciafardoni -chubbs -chrzan -christophel -christoph -christoforou -christel -christan -chreene -chrabaszcz -chrabasz -chowhan -choules -chorney -chorley -cholico -cholewinski -cholakyan -chojnowski -chlebek -chittam -chiszar -chisam -chirafisi -chiprean -chinetti -chimes -chiera -chicon -chiarelli -chiaravalle -chiappetta -chesner -cheser -chesbrough -cherubino -cherrette -cherpak -chelf -cheesebrough -cheeney -cheely -chean -cheak -chavana -chauvette -chatt -chasser -chaskey -charriez -chappie -chappelear -chapparo -chapek -chanoine -chandley -challenger -challberg -challacombe -chaleun -chainey -chaffey -cetta -cerza -cervenak -certosimo -cerruti -cerqueira -cernohous -cereceres -ceovantes -ceo -centrich -centore -cellucci -ceglinski -ceconi -cecilio -cecchinato -cecchi -cazorla -cayne -cayabyab -cavill -cavicchia -cavez -cavener -cavasos -cavaness -cavalcante -caulk -caudel -cattano -catrett -catlow -catella -cataquet -catalino -cataline -catalanotto -catalanatto -cata -castenanos -castelo -cassiday -casparian -casillo -casewell -casarrubias -casalman -casal -carvalno -carskadon -carrus -carrison -carriker -carrazco -carratala -carpanini -carovski -caroli -carne -carmella -carlis -carfagno -carethers -carella -cardonia -cardno -carda -carcieri -carcano -carcana -carboneau -carbon -caravantes -carattini -caramanica -capriola -cappelluti -capossela -caponi -caperon -caper -capati -cantv -cantore -cantell -cantatore -cantarella -cantadore -canslor -canonico -cannonier -cannone -cannavo -cannatella -cangiano -campoli -campellone -campean -campanile -camera -camcam -cambel -calta -callsen -callarman -calicott -calhaun -calegari -calco -calciano -calabretta -cake -cairone -cahela -cagliostro -caflisch -cafferky -caetano -cadice -caddle -cadarette -cackowski -caccia -cabrena -cabotaje -caborn -caberto -bystrom -byndon -buzek -buysse -bux -buttrick -buttaro -butscher -butsch -butor -butman -buteux -butchee -but -bustard -busta -bussy -busson -bussing -bussa -busi -buseman -buschner -buscaglia -burttram -burth -bursch -burnsworth -burland -burkowski -burglin -burgdorfer -burdman -burau -buran -burakowski -buquet -buonomo -buntyn -bungo -bunche -bunal -bult -bulliner -bullaro -bulkeley -bulcao -bula -buisson -buissereth -bugni -buetow -buesgens -budziszewski -budinich -buddington -buchtel -buchli -buchert -buchar -buben -brzuchalski -brummell -brull -brudnicki -brucz -bruchman -brubach -brownwood -browen -browe -brossett -brosco -brookshear -brookfield -bronstad -bronsky -bronaugh -bron -brohawn -brogna -brodzik -brodsho -brodowski -brodnicki -brodell -brod -brockney -broas -broadrick -briz -britschgi -brint -brinich -bringard -brindamour -brincat -brimfield -brillant -brilhante -brihon -brignoni -brightful -briggman -bried -brickle -brickel -brezeale -brewen -breutzman -bretado -brester -bresko -brennon -brennaman -breniser -brendon -brems -breisch -breidenstein -brechtel -brea -brazington -brazen -brayer -brawer -bravata -braune -braunbeck -braue -braucht -braseth -brantly -branter -branski -brandler -bramham -brahney -bradac -brackley -brackey -brackemyre -brach -boyarsky -bowlan -bowhall -bowdre -bovie -bouyea -boustead -bourgeault -bounthapanya -boultinghouse -bouillon -boudrie -boudinot -bottgenbach -bottari -botos -bothof -botha -bosten -bostelmann -bossley -bossick -bossen -bosquet -boscio -bosche -bosa -borski -borsh -borowik -borom -borke -borgerding -borgatti -bordwine -booser -bookbinder -bookard -boock -bonte -bonomi -bonning -bonito -bonillas -bondura -bombich -boltinghouse -bollozos -bolliger -bollie -bolka -bolitho -boldenow -bolch -bolay -boissoneault -boisjolie -boisclair -boie -bohrman -bohley -boglioli -boghosian -boggus -boggiano -bogden -boey -boesenhofer -boerst -boerma -boenisch -boemig -boebinger -boday -bodamer -bocklage -bocchini -bobseine -bobian -boberg -bobek -blyler -blumenstein -bloyer -blotter -blore -blomme -blomdahl -bliske -blinston -bliek -blessman -bleggi -bleeker -bledsaw -blauch -blaskovich -blankley -blankenberg -blanken -blakelock -blaida -bjorgen -biven -bitzel -bittman -bitonti -bissen -bisom -bisher -birman -birky -birkes -bippus -bintz -bintner -bintliff -binnie -binks -binkiewicz -binienda -bingley -bilotto -billheimer -billen -billeck -billeaudeau -bilinski -bilello -bild -bihari -bigda -biez -bierwirth -bierle -bierbower -bienenstock -biemer -bieler -bielak -bidle -biddleman -biddiscombe -bicknese -bickerton -bickelhaupt -bichsel -bibles -bibian -biase -biancuzzo -biancaniello -biamonte -bia -bhatnagar -bhardwaj -bhan -beyett -bewig -beuchat -better -betsill -bethey -betenbaugh -betance -betacourt -beske -besendorfer -besemer -besco -bery -bertran -bertling -bertie -bernson -bernosky -bernon -berninger -bernes -bernecker -bernasconi -bernardin -berlo -berliew -berky -berhe -berhalter -bergsjo -bergholm -bergener -bergeman -beraun -benward -benusa -bense -bennage -benischek -benion -beninato -bengel -benedek -bene -bendzus -bendler -bendit -benderman -benberry -benallie -bemrich -belyea -beltrain -belter -bellue -bellocchio -bellisle -bellipanni -bellion -bellessa -bellavia -belay -bejjani -beisser -beiriger -beik -beien -behymer -behrenwald -behanna -beed -beechum -beechner -bednarik -bednarek -bedenbaugh -becwar -beckton -beckom -bech -bebo -beatie -beat -bearman -beaner -beakley -beahan -beachamp -bazzi -bayman -bayardo -bayala -bawcum -bavier -bauswell -baures -baune -baumgarter -bault -baughey -baugatz -bauernfeind -bauerlein -bau -batun -battistone -batteen -batko -batistich -bater -batcheller -batarse -bastow -bassuk -bassolino -bassel -bason -basilone -basich -bascle -bascetta -bartush -bartrum -bartlet -barthelmes -bartberger -bartash -barsoum -barsanti -barrott -barrom -barriner -barnhurst -barnell -barkle -barkes -barillaro -bargerstock -barganier -baremore -bardney -barda -barbot -barbie -barayuga -barager -bantz -bandulin -banasiak -balzarini -balwin -balton -balsiger -balmos -balmir -ballestero -ballek -balick -balian -balestra -balensiefen -balduf -balckburn -balasa -balafoutas -baksi -bakowski -baklund -bakko -bakey -bakanauskas -baj -baio -bainard -baima -baillet -baich -bahrmasel -bahrke -bahoora -bagsby -bagger -badena -badders -backfisch -bacik -bachler -bachleda -bachhuber -bachert -babiracki -baatz -azzarito -azzarella -azulay -azotea -azeem -ayoob -ayola -ayles -ayersman -ayaia -axthelm -ax -awtry -avrett -avilar -aveni -avellino -aurelia -aumend -auletta -augustson -augustave -aughe -auerswald -aubrecht -athalone -atanacio -atamian -astrologo -astrella -aspinall -asman -ashlin -ashenfelter -aschenbrener -ascheman -ascenzo -asante -asa -arvayo -artmann -artice -art -arslan -arrott -arrojo -arrizola -arriano -arrendell -arps -aronstein -aronow -aronica -arntz -arnst -arnio -arne -armengol -armantrout -arlt -arkadie -arjune -arismendez -arimas -aries -ariel -argandona -arflack -areola -arenales -ardman -arciga -arciba -archacki -arcaro -arcano -arbogust -arauz -aranas -aquil -aquero -apresa -appiah -appert -apostal -apodace -apadoca -antrobus -antoniuk -antione -antinarelli -antich -anslow -ansbro -annicchiarico -angleberger -angelson -angello -andruzzi -androsky -androlewicz -andrion -andringa -andracki -andra -ancelet -anastas -anast -anagnost -amsley -amsdell -amsberry -amsbaugh -amoruso -amoa -amici -amesbury -ambrosia -ambrogi -amack -alvia -alvaro -alvanas -altrogge -altomare -altmire -altenbach -alsheimer -alquisira -alouf -aloisi -aloe -almiron -allford -allex -allery -allenbach -allegrucci -alig -alicuben -alfisi -alferez -alfandre -alf -alexion -alevras -alessandrini -alesi -alescio -alegre -alea -aldecoa -alcini -albrittain -albrashi -alawdi -ala -aksamit -akima -akel -akahi -ajose -ajayi -aivao -aiu -ainge -ailshire -aidt -aicklen -ahuja -ahr -aholt -agle -agamao -affeld -aeschbacher -aeling -adriance -adkin -adhami -adeyemo -ades -adelgren -addicks -adamitis -ada -acor -acimovic -accomando -accola -acampora -abuaita -abshear -abrantes -abramovich -abrachinsky -abilay -abellera -abeles -abdula -abdon -abbed -abati -abascal -aavang -aadland -zylka -zwolak -zwingman -zwerschke -zwack -zurin -zupp -zumbrunnen -zukoski -zukor -zukas -zuanich -zoumis -zoulek -zou -zorra -zorich -zomorodi -zolty -zolondek -zolnoske -zoldesy -zoldak -zocklein -zlotnik -ziraldo -zipf -zinsli -ziniewicz -zindell -zin -zimmerebner -zimmel -zimm -zills -zilla -zilka -zietz -zietlow -ziemski -zielesch -zieler -zieglen -ziegenbein -ziegelbauer -ziegel -ziech -zicker -zicherman -zich -ziccardi -zgoda -zeschke -zerko -zerhusen -zepka -zents -zeni -zeme -zematis -zema -zella -zelkin -zelenski -zeilinger -zeidan -zegarelli -zeanah -zdon -zbikowski -zazula -zavesky -zavasky -zaruba -zarrineh -zarrillo -zarraluqui -zarling -zaring -zaretsky -zarebski -zanini -zanin -zangl -zaner -zand -zampieri -zaltz -zaloudek -zall -zalk -zalar -zakowski -zajc -zahran -zahnen -zagroba -zagel -zagara -zagami -zaffuto -zachmann -zachariades -zaccagnino -zaccagnini -zaborski -zabloudil -zabarkes -yvon -yusef -yuricic -yuill -yuenger -yuasa -ysbrand -yourshaw -younkers -youngdahl -youngblut -youkers -youkanaa -yorkey -yoneyama -yonamine -yoeckel -yodis -yocius -yocham -yobst -yeubanks -yetto -yerigan -yerbic -yentsch -yennard -yemchuk -yax -yaun -yasurek -yasui -yaskiewicz -yantzer -yantz -yanosky -yanek -yandle -yance -yanagi -yambao -yamakawa -yagoda -yaekel -yackeren -yacavone -yacano -ximines -xaimoungkhoun -wysock -wyont -wynott -wynans -wylde -wyett -wydner -wurzbacher -wulfing -wruck -wroe -wrobliski -wrobbel -wrights -wraspir -wrape -woytowicz -woy -worthan -worstel -worsfold -worrel -worbington -wools -woollen -woolems -woodmancy -woodhull -woodgate -woodfield -woodcox -woock -wonsik -wolven -wolslegel -wolny -wolma -wollyung -wollin -wolley -wollan -wolkow -wolke -wolever -woleslagle -wolansky -wojnicki -wohner -wohlfahrt -wohler -wloch -wittlin -wittkopp -wittenborn -wittels -withiam -withfield -wisz -wissel -wisseh -wislocki -wiscombe -wischmeyer -wischman -wirebaugh -winzelberg -winterstein -wintersmith -winterroth -winrich -winograd -winlock -winley -winkley -wings -winfred -winebaugh -windover -windly -winarski -wimbs -wimber -wiltgen -willmschen -williver -willinghurst -williamston -willenbrock -willars -willamson -wileman -wileczek -wildenberg -wildeman -wilcutt -wilch -wilby -wilbers -wikstrom -wigman -wigle -wigelsworth -wietzel -wiesneski -wienert -wienecke -wienandt -wieloch -wielgosz -wiedmann -wieckowski -wiece -wieand -widmar -widhalm -widgeon -widerski -widdows -widdop -widdison -widby -wida -whyne -whyel -whybrew -whittman -whittall -whitler -whitinger -whitewater -whitescarver -whitemarsh -whitecloud -whit -whistlehunt -whinnery -whillock -while -whilby -wheldon -wheatcroft -whapham -whaite -wettlaufer -wetterer -wettach -wetsel -wethern -westrum -westlie -westgaard -westerhof -westerfeld -westad -wesly -wesberry -werring -werre -wernz -wermter -werkmeister -werbelow -wentzlaff -weniger -wengreen -wendolski -wendelberger -wempa -weltzin -welti -weltch -wellnitz -wellenstein -wekenmann -weitze -weitman -weisholz -weishar -weisbaum -weinraub -weinbauer -weinbach -weidig -weiderhold -wehrwein -wehrs -wehrly -wehnes -wehn -wegge -weerts -weemhoff -weekey -wedman -weder -weckman -weckhorst -weaklend -wauters -wauer -waud -wattenberg -watte -watling -waszkiewicz -wasmus -wasilko -washor -wartchow -warshauer -warsham -warrender -warnstaff -warmuth -warmington -wardrup -wardhaugh -wardall -warchal -warboys -wanty -wanous -wanlass -wangstad -waneka -wandless -wandel -wanda -wamser -wamhoff -walvatne -waltemeyer -walsingham -walljasper -wallet -wallerich -walkling -walkers -walezak -waldroff -waldhoff -waldall -walbright -walat -wakita -waka -waisner -waiki -waiden -wagle -wagenblast -wadusky -wadden -waclawski -wackenhut -wackenheim -wachal -waananen -waack -vy -vukcevic -vreugdenhil -vreeman -vrazel -vranes -vranek -voytek -voves -vormelker -vorachek -vontungeln -vonniederhaus -vonner -vonhagen -vondrak -vondielingen -vonasek -vonallmen -voltaire -vollucci -vollick -vollenweider -volante -voitier -vogts -vocu -voci -voccia -vliet -vliem -vizarro -vizard -vittorini -vitro -vitolas -vititoe -viteo -visnic -visher -visel -viscia -viscera -vis -virrueta -virola -viren -vinz -vinke -vinger -vind -vinagre -viltz -villwock -villifana -villiard -villetas -villasana -villarin -villante -villacana -vile -vilcheck -vilardi -vigueras -vigoren -vignovich -vignaux -vignarath -vigier -vieweg -vietti -vietor -viegas -viebrock -vidals -victorin -vicsik -vicic -vicens -viapiano -vetsch -vetri -vertiz -versluis -verrilli -verrelli -verrecchia -verni -vernetti -vermeer -verling -verlato -verkler -verkamp -verghese -verducci -verant -venzeio -venturella -ventress -venton -venhorst -venerable -veneman -ven -velverton -velunza -velmontes -vellutini -vellekamp -veleta -veldkamp -velazques -veino -veigel -veeneman -vavro -vauters -vattes -vaszily -vastakis -vasiloff -vasilauskas -vasconcelos -vars -varos -varnon -varkey -vares -varenhorst -vardy -varcoe -vanwye -vanwoert -vanwieren -vanvickle -vantreese -vansyckle -vanstrander -vansteenburg -vanstee -vanslander -vanproosdy -vanpoucke -vanpoppelen -vanpatton -vanosdel -vannelli -vanmiddleswor -vanloh -vanlith -vankoten -vanisouvong -vanholland -vanhekken -vanharlingen -vanhandel -vangemert -vaneyck -vanert -vaneps -vanegdom -vandesteene -vanderschaege -vanderkam -vanderheiden -vandergriend -vanderark -vandeputte -vandenbergh -vandegraaff -vandebogart -vandamme -vandalsen -vandagriff -vanclief -vanboven -vanbecelaere -vanartsdalen -vanaller -vanakin -vanabel -valrie -valrey -valotta -vallangeon -valladolid -valaitis -vala -vair -vaidya -vaid -vagt -vagle -uyeno -uson -us -urwin -urtado -ursino -urry -urquiza -urps -urmeneta -urlaub -uribazo -urhahn -ure -urch -urbanic -urata -urankar -ur -uppinghouse -unthank -unland -unikel -ungvarsky -ungerleider -ungerecht -underkoffler -umlauf -umbdenstock -ulrick -uliano -uldrich -ulch -ulberg -uknown -ukena -uk -uhri -uhde -udley -uboldi -tzeremes -tysor -tyrus -tyrol -tyl -tyksinski -tycer -tyberg -twitt -tweden -tuy -tuton -tuter -tustison -tuschhoff -turso -turrigiano -turowski -turnbo -turnball -turlich -turli -turla -turkin -turke -turi -tuong -tulk -tulip -tugman -tuggles -tufano -tucknott -tuccillo -tubeszewski -tuason -tsuzuki -tsunoda -tschannen -trytten -trybala -truskowski -trueba -trueax -truden -trucchi -trotti -trongone -tromble -tromblay -trokey -troiani -troglin -trodden -troccoli -tritz -tritch -trischitta -trisch -trippet -triplette -trinca -trimmell -trilling -trieger -treworgy -trevorrow -trevillion -trevigne -trevett -tretter -treston -trepagnier -trentinella -trenkle -trenh -trenbeath -tremelling -treider -treib -treftz -tredennick -trecroci -trebil -traves -traversa -tratar -traster -trasport -trank -trampe -trammer -trame -trachte -toyoshima -towley -tovias -touvell -tout -toussant -tourikis -toten -tosten -tosic -tosches -tortoriello -tortorice -torstrick -torset -torrijos -torrie -torress -torred -torra -torma -torkildsen -toppi -toporek -topolosky -topick -topez -toper -toncrey -tompsett -tompkin -tomory -tommolino -tomjack -tombs -tombrello -tomaszycki -tomaski -tolzmann -tolston -tolosky -toldness -tokuoka -tokihiro -tokay -tok -tojo -tointon -tohill -togni -tognazzini -todeschi -tobola -tobeck -toala -toadvine -tllo -tkacz -titchener -titch -tissot -tiso -tirri -tipka -tintle -tinneberg -tinius -tinelli -tin -timmreck -timmerberg -timinsky -timi -timchak -tillberry -tilgner -tiff -tieszen -tiemeyer -tiemens -tiell -tiehen -tidey -tick -ticas -tiboni -tiberio -tibbert -thyne -thurton -thurau -thune -thrune -threets -thorngren -thornbrugh -thorin -thongdy -thommarson -thoene -thoben -thoams -thixton -thistlethwait -thingvold -thiesfeld -thierauf -thielbar -thiebeault -thiara -thews -theophilus -theodoratos -thenhaus -theam -thay -thalmann -thake -thady -tevlin -tevebaugh -testen -tesseneer -tervort -terri -terrey -terres -terrasas -terney -termeer -terlecki -terheggen -terhark -terhar -terepka -terault -terando -teppo -tepler -teper -tent -tenpas -tennill -tennett -tenley -templer -tempe -temp -teltschik -telschow -telle -tekippe -teitsort -teitenberg -tei -tegarden -teffeteller -tefera -teesdale -teemer -teekasingh -teddick -tebay -tebar -teats -teano -teagues -teachman -teabo -tchakian -tazzara -tayor -tavorn -tavira -taverna -tave -tautuiaki -tatters -tatevosian -tassey -taschereau -tarzia -tarring -tarrien -tarras -tarkenton -tariq -tardio -tarascio -tara -tappeiner -tannen -tankersly -tanious -tangren -tangredi -tangert -tamulis -tamburrino -tambasco -tamargo -tamanaha -talluto -taki -takeshita -takemura -takaoka -tajiri -taintor -tahu -tags -taglieri -tafel -tadiello -tacket -taborda -tabolt -tabisola -tabian -taback -szymansky -szwejbka -szweda -szufat -szubinski -szerlong -szekula -szczygiel -szczepanek -szalay -szafryk -syrek -syphard -synan -symmonds -sydner -swirsky -swires -swietoniowski -swickheimer -swets -swetland -swenk -sweetin -swavely -swatt -swatsworth -swatski -swartzmiller -swartzbeck -swartzbaugh -swansen -swalley -swaisgood -swails -swaggert -svrcek -svinth -svetz -svetlik -sutulovich -suttell -susswein -sussex -susor -susoev -susich -susana -surwillo -suran -sunn -sunkel -sundling -sundholm -sumsion -sump -summar -sumlar -suminski -sumi -sumas -sulzman -sultana -sullinger -suleski -sulcer -sul -sukeforth -suing -suglia -sugiki -suggett -sueltenfuss -suders -sudar -suchecki -sucharzewski -suchanek -subler -suben -subasic -styborski -stvil -stumme -stulick -studyvin -stubson -stuble -stubits -stubenrauch -strysko -struggs -strudwick -strowd -stroub -stroth -stropko -stroinski -strnad -stritzke -stritzinger -strittmater -strieker -strickert -strength -stremlow -stremel -strejcek -streitmatter -streif -streb -streams -straws -strausberg -strathy -strathman -strater -straseskie -strapp -stranger -strande -stramiello -strakbein -strachn -stoyer -stoyanoff -stowman -stowbridge -stove -stoutt -stoutenburg -stouer -stouder -store -stoppkotte -stopa -stolts -stolinski -stolecki -stole -stojanovic -stofsky -stoffregen -stoffels -stoffa -stoesz -stodolski -stockett -stittsworth -stipek -stinett -stillion -stillinger -stiel -stiehl -stiegler -stieg -stickrod -sticht -stibbins -stevener -steudeman -stetzel -sterr -sternal -sterback -stephco -stenman -stemmerman -stemme -stemarie -stelting -stellings -steir -steinlicht -steiniger -steinbrenner -steidinger -stehney -stehly -stefka -steffel -stefanovich -steeno -steeneck -steenburgh -steckline -steckelberg -stazenski -stavis -staum -stauffacher -stauder -staude -statzer -stasinos -starwalt -starrs -starnauld -starek -stapleford -stapf -stapels -stansifer -stanojevic -stanick -standring -standrew -standke -standford -stancle -stanciel -stamnos -stamison -stallons -stallion -stallbaumer -stailey -staie -staiano -stahnke -stahle -stageman -stacken -stachecki -stableford -stabb -sramek -squines -spurzem -sprock -springate -spreng -spratte -sprang -sprake -spotwood -splain -spiwak -spitznogle -spirito -spirek -spingola -spincic -spillett -spika -spigelman -spielmann -spetter -sperl -spenard -speilman -speigel -speice -speach -spaugh -spatafore -spatafora -spar -spanski -spannaus -spanish -spanfellner -spalinger -spagnolia -spadea -spadafore -spadaccini -spachtholz -spach -spacek -sozzi -sowels -soulasinh -souffront -soucier -sotolo -soteros -sotero -soter -sossaman -soshnik -sorrick -soron -soroa -sornsen -sorgente -sordahl -sonza -sontheimer -sonstroem -sonoski -sonnenfeld -sonderup -somani -soman -somalski -solymani -solton -soloveichik -solmonson -sollberger -solkowitz -solimini -soleman -solders -soldavini -solanki -sohm -sodek -sode -socks -sockalosky -sochan -sobilo -soapes -snyders -snowman -snowdy -sniffin -snetting -snellman -snellenberger -snellen -snellbaker -sneathen -sneath -smyrl -smull -smolko -smithheart -smiht -smestad -sluter -slupe -slomkowski -slomka -slomba -sliz -slipp -slim -slightam -sleper -sledz -slechta -slaughterbeck -slaughenhoupt -slaight -sladick -slader -skye -skupski -skroch -skripko -skrine -skreen -skradski -skorski -skornik -skokowski -skok -skocilich -skinnen -skillington -skemp -skay -skattebo -skagerberg -siwik -sivik -sitar -sitaca -sission -sissac -sisney -siruta -sirmon -sirkoch -siriano -siracuse -sipler -sipho -sinkovich -sinkey -sinistore -singo -sinclaire -simunovich -simuel -simril -simpton -simpliciano -simoson -simonis -simoncini -simister -simison -simenez -simco -simcheck -silvi -silveri -silvano -silletto -sillavan -siles -silbernagel -sigwart -sigona -signs -signaigo -sigmond -sigars -siemek -siem -sieloff -sieligowski -siefke -siebeneck -siebenberg -siderman -siderine -sidberry -sicilia -sichta -sibrel -sibell -sibayan -shyu -shvey -shuter -shumski -shulund -shulte -shuker -shugars -shufford -shubrick -shub -shouldice -shotton -shotkoski -shost -shortsleeve -shorette -shopen -shont -shonerd -shone -shomin -shomer -sholl -shoger -shirts -shirota -shinholster -shindle -shinaberry -shimura -shimsky -shimo -shillinger -shilleh -shihadeh -shierling -shewbridge -shevitz -sheumaker -shettle -shers -sherren -shern -sherling -sherle -sheridon -sherdon -shelter -shelmon -shelling -shelko -sheline -shelhamer -shekey -shekarchi -sheinberg -shehata -sheffo -shebchuk -shearing -sheaks -shazier -shayne -shawnee -shawhan -shaud -shastri -sharr -sharlin -shark -sharits -sharf -share -shapskinsky -shape -shankland -shames -shalhoup -shaftic -shadiack -shackle -shabala -sevick -sevedge -seurer -sette -servan -serva -serrett -serrand -serisky -sering -serie -serianni -sereda -sequin -senti -senosk -senno -senner -senna -senerchia -sendro -sencabaugh -semonick -semetara -sembler -selvaggio -seltzen -selser -sellek -sellberg -selking -seliba -selfe -seki -seifarth -seielstad -sehorn -sehl -segur -segrave -sefcovic -seeton -seek -seecharan -seeberger -sedman -sedano -secunda -seburg -sebold -sebastion -seate -seashore -seard -seang -seaney -seace -seabert -sczygiel -scurti -scullen -scroggy -scripter -scowden -scorsone -scoleri -scocca -scire -sciotti -sciera -scibilia -sciabica -schwisow -schwier -schweinert -schweinberg -schweiker -schweigart -schweickert -schwass -schwarzenbach -schwarts -schwarm -schwamberger -schwalenberg -schwabenbauer -schwabauer -schuttler -schutjer -schuring -schure -schuppert -schuner -schulthess -schulteis -schulle -schuhmacher -schuermann -schuepfer -schuele -schrott -schrope -schrauder -schrandt -schouviller -schonert -schonack -scholzen -scholnick -schoffstall -schoenthal -schoenstein -schoenhut -schoenhard -schoeneman -schoemer -schoborg -schnicke -schneidtmille -schneiders -schmunk -schmoyer -schmeider -schmale -schlottman -schlitzer -schlipp -schlink -schliesser -schlieper -schlesselman -schlensker -schleis -schlein -schleck -schlabaugh -schiver -schirpke -schindel -schimler -schiltz -schillings -schiffelbein -schiebel -schiaffino -schettig -schetrompf -schessler -scherler -scheppe -schepens -schellman -schellhammer -scheirman -scheibelhut -schei -schech -scheaffer -schattner -schatt -scharte -schappell -schanding -schanbacher -schan -schaming -schamburek -schaeffler -schadle -schadegg -schabot -schaberg -schaadt -scerra -scercy -scattergood -scarset -scarrow -scarritt -scarpaci -scarles -scarce -scanlin -scalice -scali -scahill -sazama -saysithideth -sayres -sayavong -sawlivich -sawczyszyn -savo -savina -savilla -savela -savasta -saurel -saupe -sauberan -satunas -sattley -satterley -satiago -satchel -saska -sarvey -saroukos -sarnowski -sarnoff -sarli -sarley -sarelas -sardi -sarconi -sarbacher -saragusa -saraceno -sar -sappenfield -sanzotta -santy -santorella -santopolo -santin -santiesteban -santhuff -santell -sansburn -sanpaolo -sanocki -sannon -sannella -sanlucas -sanjabi -sangrey -sangi -sanghvi -sangh -sanfiorenzo -sandrowicz -sandoual -sandora -sandlian -sandi -sandholm -samuelsen -samu -sampedro -samorano -samok -samide -samber -samain -saltzgaber -saltonstall -saltern -salte -salonia -salmond -sallas -saliva -saler -salek -saldibar -salabarria -sakon -sakelaris -sake -sajorda -sajor -sahni -sagoes -saglimbeni -sagehorn -sagayaga -safdeye -safa -sadlon -sadbury -sadahiro -sache -sacavage -sacarello -sables -sabean -sabates -sabataso -saager -saa -rzucidlo -rzeszutko -ryther -rylant -ryks -ryherd -ryhal -rygalski -rybacki -rviz -ruys -ruuska -ruttman -ruttinger -ruts -ruter -rutana -rusten -russnak -rusinko -rusi -rushiti -rushia -rushdan -ruscetti -rusboldt -ruppenthal -rupke -rundahl -rund -rummer -rummans -rumler -ruminski -rumfola -rull -ruise -ruggle -ruescher -ruegsegger -ruegger -rudzik -rudney -rudisail -rudis -rudduck -rucky -ruckdeschel -rubins -rubenzer -rozo -rox -rowzee -rownd -rowey -rowcliffe -rovinsky -roup -rottner -rothmiller -rothgery -rothbart -rotenberg -rotando -roswick -rosu -rossum -rossetto -rosseter -rosselli -roskos -roskopf -rosenholm -rosencranz -rosenbrook -rosella -rosebaugh -rosbough -rosan -roofe -ronson -ronhaar -rones -ronchetto -romeno -rombs -romanoski -romanini -romanick -roloson -rollock -rollheiser -rollans -rold -rolark -rokisky -roja -roik -rohaley -rognstad -rofkahr -roethel -roessner -roesser -roehrman -roehrenbeck -roegge -roefaro -rody -rodrigo -rodricks -rodino -rodillas -rodia -rodenbaugh -rodell -rodeiguez -rodarta -rockenbach -robley -robes -robertello -robello -robella -robak -roarx -rivlin -rivira -rivena -ritzert -ritell -ritcheson -riska -risberg -ripke -rinkel -riniker -ringman -ringlein -ringelheim -ringbloom -rinde -rincones -rimson -rimar -riliford -rihn -rihanek -rigoni -riggott -riffon -rievley -rieve -riesenweber -rieg -rieff -riedell -riechers -rieber -rieben -riebeling -ridpath -ridler -riddock -rickson -rickmon -rickley -rickie -richrdson -ribot -riblet -rhyme -rhoney -rhed -rhead -rezek -reynvaan -reynoza -reye -rexwinkle -revord -reven -reveal -reutlinger -reuland -reuer -retzler -rettke -retterbush -retort -reth -resureccion -restifo -resnikoff -rerko -repsher -repress -reppell -repinski -repenning -renze -rennix -renning -renney -rennell -renfer -rener -rendino -renaker -remmen -rementer -remenaric -relkin -reiterman -reist -reisser -reisling -reisert -reise -reio -reinmiller -reine -reill -reigner -reifler -reifel -reidenbach -rehnquist -rehler -rehfield -rehfeldt -rehberger -regler -regel -regehr -refsell -reen -reem -reeher -reech -reeber -redstone -redo -redish -redhage -redenz -redell -reddrick -redder -reckley -reckleben -recine -rebusi -rebuldela -rebera -rebell -rebeles -reavley -reau -reatherford -reaney -reaid -reagans -reado -razinger -razey -raza -rayside -raymos -raygosa -rawding -raw -ravens -ravenhorst -rav -rauzman -rautenberg -rausin -rauner -raudebaugh -rattner -ratleff -rathmell -rathgeb -ratermann -rataczak -rasher -rashdi -rashada -rasbery -rarang -rapose -rapa -ransick -ranos -rankhorn -raniero -rang -randzin -rancher -rances -rancatti -ramoutar -ramnarase -ramlakhan -ramiro -ramiriz -ramez -rameriez -rambus -ramaswamy -ramagos -ramadanovic -ramadan -ralko -ralat -rakel -raju -rajtar -raja -rairdon -raimo -raif -raiche -raheja -raheem -rahall -raguso -rafanan -rafalko -raes -radzavich -radune -radulescu -raduenz -radsek -radom -radell -rackett -racilis -rachi -rach -racedo -rabold -rabner -rabern -rabenstein -rabelo -quintas -quinlisk -quine -quincey -quilantang -quicksey -quereto -quelette -quaresma -quann -quall -quails -quaas -qadir -pytlovany -pybus -putaski -purwin -purter -purple -purol -purkiss -pummel -pults -pultorak -pullian -puller -pulham -puletasi -puidokas -puhuyaoma -puffinburger -puesey -puelo -puddephatt -pucillo -puc -przepiora -prys -pruzansky -pruyn -prust -prusinski -prus -pruette -provis -provine -proue -protz -prosonic -prophett -pronto -pronovost -proksch -prok -proietto -proia -proenza -probus -prizzi -privalsky -prisock -printy -primozich -priefert -pridham -preus -prettner -prester -pressel -preskar -premer -premeaux -preisinger -preisendorf -prehm -pregeant -preedom -pralle -prag -pradel -prabhakar -poyser -poupard -potterson -pottebaum -potolsky -poto -potes -postlethwaite -postin -pospishil -poskus -posik -portsche -portolese -porrini -poro -porietis -poppenhagen -poppen -poppel -pontonio -ponting -pono -pomposo -pomponio -pomplun -pomo -pomeranz -pomella -pomberg -pomares -polucha -polselli -polnau -pollins -pollara -polisky -polio -policz -policar -polchinski -polashek -polakowski -polaco -poitevin -poister -pointon -poinson -poinsett -pogar -poetter -podmore -poczobut -pockette -pocasangre -pobre -plys -plunket -plumpton -pluemer -plover -ploetz -ploense -plocek -plikerd -pleet -pleasure -plazza -plaxico -platko -platania -plassmann -plantier -plantenga -plancarte -plakke -pladson -pizzano -pivin -pittsinger -pittmann -pitsenbarger -pitonyak -pitmon -pitfield -pitek -pitassi -pistulka -pistole -piske -pishko -pisegna -pirnie -pirkey -pippitt -piorkowski -pinna -pinkton -pinks -pinkerman -pinchbeck -pimpare -pilloud -pillitteri -pilakowski -pikus -pikula -pikkarainen -pijanowski -pigao -piette -pietrzykowski -pietryga -pietropaolo -pies -piersaul -pieri -piepenbrink -pieloch -pieffer -picucci -pickl -pickhardt -picini -picerni -picaro -piatak -pianalto -piacquadio -phoun -phonharath -phomsoukha -phommaseng -phinazee -phillippy -phillians -philavong -phernetton -pheonix -phenes -pfotenhauer -pfleiderer -pfleider -pflanz -pfieffer -pfeiff -pfautz -pezzica -pevez -pevehouse -petrunger -petrullo -petrucco -petrson -petrilla -petrides -petrauskas -petkus -petiet -petgrave -peterschick -petaway -pesner -pesiri -pesin -pesa -pervine -pertubal -perschall -perrucci -perow -peroddy -perocho -perno -perloff -peria -pergerson -pereyda -pereria -pereiro -perdzock -perchinski -peraro -peques -pepito -pentek -pentaris -pennison -pennewell -pennacchio -penington -peninger -pengelly -penegar -pencek -penale -penaherrera -pembrook -pelyo -pelligra -pele -pekala -peine -peightal -peers -peerbolt -pedaci -ped -pectol -pecot -pecos -pecorelli -pechart -pebbles -peatry -pearle -peard -peakes -peaches -paywa -paysinger -payes -pawelczyk -pavoni -pavlovic -pavelec -pavan -paullus -pauldo -patuto -patruno -patoine -patock -patka -pata -pastiva -pastick -passwater -passineau -passi -pasquino -pasquel -pasquarelli -pason -paskert -pashley -pashia -partis -partido -parsi -parrill -parolari -parisio -pariser -parents -parduhn -parden -parcel -parbo -paray -papson -pappa -papillion -papik -paparella -papai -paoletto -pantone -pannhoff -pankowski -pangelina -pangallo -panda -panciera -panchana -panasci -panarella -paltanavage -palsgrove -palovick -paloma -palmiotto -palmiero -palmerton -palmerin -pallet -pallesen -pallazzo -palitti -palischak -paliotta -palifka -palenik -palecek -palczewski -palasik -palacious -pala -pahnke -pahls -paguirigan -pagnozzi -pagliarini -paduano -paddison -padavano -pacubas -packingham -packebush -pacius -paci -pacey -pacas -pac -ozolins -ozog -ozminkowski -oyuela -owston -ovsanik -overlie -overbo -oven -ovard -ourso -ouderkirk -ottis -otterholt -otomo -otley -osuch -ostling -ostlie -ostheimer -osterstuck -osterdyk -ostenson -osten -ossowski -osso -osmon -osle -oskins -osendorf -osburne -osawa -ortic -ortenzio -orrantia -orrala -orouke -orone -orofino -orkwis -orizetti -oris -orines -orgovan -orgain -orendorff -orendain -oree -orea -ordner -ordas -orbeck -oravec -opray -ophus -opela -opatrny -opara -oosterhof -onusko -onstead -onorata -onitsuka -onishea -oneel -ondrusek -omundson -omoyosi -omdahl -oltz -olton -olrich -olquin -olp -olmscheid -olm -olivio -oliverson -oliven -olis -oline -olexa -olesnevich -olesky -oleksiak -oldani -olcus -oksen -okolo -okojie -okerblom -okajima -ohrenich -ohms -ohmann -ohland -oguinn -ogiba -ogeen -oge -oganyan -offenbacker -oesterreich -oerther -oelschlager -odore -odonal -odonahue -odiase -odenwald -odens -odear -octave -ockey -ochwat -ochotorena -ochiltree -och -ocejo -ocano -obstfeld -obleness -obiesie -oberloh -oberfell -obannion -oakleaf -oak -nyswonger -nyseth -ny -nuvallie -nusom -nush -nurnberger -nunziata -nunev -nudelman -nucklos -nuce -novik -noury -notik -notari -nosis -nosel -northcraft -northcote -norskog -norrid -norquest -normann -norma -norlund -norley -norcott -norbeck -noonon -nooney -nonaka -nollora -nollman -nolda -nolau -nol -nogueras -nogowski -nogosek -noftsger -noeldner -nocum -nocket -nocar -noaks -niverson -nittinger -nitterhouse -nitkowski -niten -nitchals -nissila -nishiguchi -nippert -nippe -ninos -nine -nimocks -nimmer -nilsby -nill -nikolas -nikirk -niimi -nii -niheu -nihei -nigg -niforos -niezgoda -nieva -niethamer -niesman -nienow -niedermayer -niedecken -nied -niebyl -nie -nicotera -nicolet -nicolaisen -nickolls -nickol -nickleson -nickelston -nichois -nicewarner -niceswander -nicarry -nicar -nhep -ngueyn -nguen -ngov -nghe -newsted -newnum -newer -newburg -newall -nevland -neugin -neuenfeldt -neuby -nestel -nesseth -nervis -nerpio -nenninger -nemzek -nemoede -nemer -nelmark -nellem -neithercutt -neiswander -neisius -neish -neihart -neiderhiser -nehmer -negrisor -negrette -nefzger -neeper -neelon -needels -needam -nealley -nealen -nealeigh -nayee -nawn -navone -navejas -navedo -navar -naud -natiello -nathoo -nasson -naselli -nase -naschke -narez -nares -nappier -napoletano -napihaa -naone -nannini -nannie -nania -nanda -nampel -nalepka -najjar -nahass -naeve -naecker -nadell -myrum -myint -myhr -myerscough -muterspaw -mutana -muszar -mustafaa -must -mussenden -mussen -mushett -musetti -musemeche -musel -muscaro -murrock -murrie -murrain -murilla -murelli -murayama -murai -munzell -munteanu -munt -munshower -munlin -muni -munding -munda -mulvehill -mulry -mulliner -mullice -mullaly -muhr -muhn -mugica -muether -muehlberger -muehlbach -muccia -mrowka -mrotz -mrochek -mracek -moznett -moyse -moxham -mowris -moutoux -moussette -mousley -moun -moulinos -mostrom -mostert -mosses -moskovitz -mosinski -mosgrove -mosebach -moschetto -morway -morthland -morta -morsbach -morreau -morowski -moroles -morlas -morgenstein -morasch -moranda -moralis -moraitis -moraites -moote -moorcroft -montier -montie -montesa -monteros -montefusco -montecalvo -montazami -montaya -monsky -monsegur -monnet -monjaras -moniot -monholland -monet -monestine -monds -mondry -mondo -mondino -momsen -momaya -molski -mollins -molitoris -mokbel -moistner -moilien -mohring -mohrbacher -mogro -moerman -moellman -modero -moczo -mocco -mocarski -mobus -mizukami -miyares -miyahara -miyagishima -mittendorf -mittelstadt -mitsakos -mith -mita -misura -missler -misrahi -misnick -misemer -miscovich -miscavage -misasi -mirich -miravalle -miras -miramon -mioduszewski -mio -minster -minnier -minneweather -minnehan -minkel -miners -mineah -mincher -minatra -minato -minari -minardo -milush -miltner -milster -milovich -milman -millraney -millot -millisor -milliren -millimaki -millich -milland -milkovich -militano -mileti -milek -mildren -milder -milch -milbert -milbauer -milanowski -milanese -mikulecky -mikulak -mikita -mikelsen -mihlfeld -mihatsch -mihalkovic -mihalko -mignogna -migl -miessner -mieras -midcap -mickleberry -michocki -michelman -michales -michalenko -mias -mhoon -mezza -mezquita -mezera -meyette -meyerhoffer -meyerhofer -meury -meuller -mettle -metter -mettee -metta -metroka -metevier -metaxas -mestrovich -messa -mesidor -meschino -meryman -merrett -merrbach -merone -merkling -merickel -mercante -meo -mensinger -menist -menino -menhennett -mengarelli -menez -menesez -mendelowitz -mencl -men -mellors -mellom -mellencamp -mellekas -melkonian -melish -meleski -melero -melchin -melbert -melandez -melander -meisels -meighen -mehtala -mehserle -meholick -mehalic -megna -meginnis -meggitt -meggers -meger -meeter -meeske -meeder -medows -mednick -medich -mediate -median -medez -medbery -medak -mebus -meason -meanor -meager -mcwethy -mcvean -mcthune -mcsweeny -mcspedon -mcsharry -mcravin -mcraven -mcquistion -mcquilkin -mcquaide -mcquage -mcpherren -mcpeck -mcnaney -mcmindes -mcmilliam -mcmenomy -mcmarlin -mcmahill -mcloy -mcloone -mclear -mclaughlan -mckoan -mckerley -mckerchie -mckeone -mckennie -mckellan -mckaig -mcinally -mchendry -mcgwier -mcguirt -mcgugin -mcgready -mcgraff -mcgrade -mcgorry -mcglothian -mcglory -mcgavisk -mcgarrigle -mcever -mcelmurry -mcelheny -mcelhattan -mcdaries -mcdargh -mccumiskey -mccredie -mccraven -mccoyle -mccoppin -mccombie -mccloughan -mccleve -mcclenty -mcclennan -mcclees -mccleer -mcclearen -mccaskin -mccartin -mccamy -mccammack -mccaman -mccalop -mccaffity -mcburrows -mcburrough -mcbrady -mcalphin -mcalhaney -mcaboy -mazikowski -mazar -mayzes -maymon -mayeski -maycumber -mayala -maxin -maute -mauss -mauritz -maurey -maulin -matuszeski -matusik -matuseski -mattu -mattier -matthys -matteucci -matsuhara -matsen -matrejek -matlick -mathewes -mathal -matey -matesic -materna -matelic -matarese -matalavage -mataalii -mastrocovi -mastrobuono -mastoris -mastera -mastenbrook -mastella -massaglia -maslyn -masley -masin -masiclat -mashiah -mashek -mascot -maschke -maschio -masch -marzinske -marxen -marville -marushia -marungo -maruffo -maruca -martinz -martinetto -martinetti -martinea -martincic -martig -marske -marshalsea -marsette -marroguin -marreo -marquena -marona -marola -marmie -markstrom -marksbury -markrof -markovitz -markevich -markette -marius -maritt -marionneaux -marinos -marinese -maricich -marhoefer -margiotta -maren -marecki -marcone -marcoline -marcolina -marchuk -marcelynas -marcaida -marbus -marazzi -marazas -marashio -maranville -marani -marandi -marander -marade -mapalo -manza -manylath -manvelyan -manusyants -mantuano -mantsch -mantell -mantano -mansmann -manship -manozca -mannie -mannes -manliguis -manigold -maniatis -mania -mangon -manginelli -mangicavallo -mangiaracina -mangas -mangaoang -manford -mandiola -manchini -mamoran -mammucari -mamer -malys -malvin -malvaez -malusky -maltie -maltbie -malphurs -malotte -malloch -malkasian -malit -malis -malinski -malinchalk -malicote -malich -maletz -malesky -maler -malekzadeh -maleh -malech -malbaurn -malara -malakan -malakai -malafronte -malady -makley -makekau -majmundar -majersky -maiten -mainiero -mainello -mailes -maigret -mahusay -maharg -mahany -maguet -magowan -magone -magnall -magleby -maglaya -maginn -magin -magil -maggs -maggie -magelssen -magaw -magario -magallanez -maeweather -madura -madrueno -madinger -madho -maderas -maddry -madaris -maczko -macugay -macrowski -macomb -macnab -maclaurin -maclauchlan -mackynen -macksoud -macks -mackney -mackintosh -mackinder -maciej -macie -machowski -machol -machinsky -machalek -macchione -macall -macafee -mabus -mabins -mabane -maassen -lysen -lynaugh -lykens -luvian -luttenegger -lutkins -lutchman -lutao -luskin -luskey -lungren -lundburg -lumm -lulic -lulewicz -lukaszewicz -luiso -luhnow -lugg -lugardo -lufsey -luetmer -luepke -ludtke -luczkowiak -luckhardt -luckenbaugh -lucken -luchenbill -lubke -lubell -lube -lubbock -lozon -loze -lozaya -loynd -loxley -lowthorp -lowek -loviska -lovig -lovgren -loverink -lovensheimer -lounsbery -loukota -loughnan -loughborough -loudenslager -lotson -lothspeich -lotan -lossa -losolla -losier -lorna -lorimor -lori -lorett -lorens -loreg -loreaux -lorandeau -loque -lopus -lopriore -lootens -lookadoo -lonneman -lonn -longiotti -longhini -longendyke -longbotham -londre -londagin -lonabaugh -lomu -lominy -lomboy -lomartire -lollie -lokker -loia -loi -logrono -logosso -loggains -loflen -lofink -lofgreen -loewenthal -loeurm -loerzel -loeppke -loepp -loegering -lodholz -lockey -lockbaum -lochte -lochan -lobur -loban -llorca -lloid -llewlyn -llanez -liwanag -livernoche -litzenberg -litano -lissard -lisko -liscio -lipskar -lipscombe -lipschutz -lipphardt -lipinsky -lipani -lions -linnertz -links -linkowski -linko -lingafelter -lingafelt -lindzy -lindman -lindert -lindersmith -linders -linderholm -lindburg -lindaman -lincicome -linberg -linamen -limke -lilyquist -liloia -lillpop -lillick -lillich -lilien -lighter -liggin -lifton -lifsey -lifford -lifer -liest -liem -lidke -liddiard -lick -lichtenwalner -lichtenfeld -lichak -licerio -licausi -licause -libman -libera -liaw -leya -lewitt -lewandoski -levoy -levitin -leviston -leventer -levenhagen -leveillee -leve -lettre -letsche -lesiak -leshinsky -leriche -leri -lepri -leppke -lepping -lepp -lepo -leonhard -leonello -leona -leofsky -lensing -lenoci -lennington -lennihan -lenn -lenkiewicz -lenis -lenertz -lenehan -lenci -lenarz -lemucchi -lemick -lelah -lelacheur -lejenne -leitman -leithoff -leistiko -leipert -leibert -leibe -lehnertz -leheny -lehar -lehane -legorreta -legoff -legleu -legions -leggat -leggans -legaard -left -leesmann -leemaster -leemans -ledwig -ledlie -lederhos -lecorchick -leclear -leclare -leckman -leckbee -lebrecque -lebahn -leavenworth -leatherberry -leamer -leady -lazzeri -lazarini -lazarine -laza -layng -lawshe -lawman -lawer -laware -lavista -lavis -laviola -lavinder -lavern -lavene -lavelett -lavanway -lavanchy -lavalette -lavala -lavadie -lava -lautzenheiser -lautt -lauser -laurimore -lauridsen -laurey -laurenti -laurente -laurenitis -laurelli -laukitis -laud -lattrell -lattner -latterell -latten -lattari -lattanzi -latif -lastufka -lasswell -lasseson -lassa -laslo -laski -lashute -lashmet -larrieu -larrier -larribeau -laronda -larney -larita -lariccia -largin -larez -lardin -larch -lapusnak -laprete -lapre -lapradd -lapore -lapinsky -lapid -laperriere -laos -lantto -lantaff -lanson -lanois -lanius -lanini -languirand -languell -langstraat -langreck -langkabel -langill -langeness -langefels -langarica -langager -lanfranco -lanfear -lanfair -landvatter -landolfi -landborg -lanagan -lampson -lampshire -lamoreux -lambrukos -lambrakis -lamborne -lambing -lamax -lamarch -lallave -lalka -lais -lairy -laiben -lahren -lahn -lahmers -lah -lagory -laforrest -laflore -lafkas -lafield -lafay -laduc -laderer -ladell -ladakakos -lacoy -lacki -lacio -lacinski -lachowsky -lacerda -lace -lacasa -labruzzo -labre -labove -laberpool -labbadia -labarba -labady -kytle -kym -ky -kwasnicki -kwapniewski -kwang -kuzminski -kuzel -kuwahara -kut -kusko -kusick -kuruvilla -kurtulus -kurtis -kurtich -kurkowski -kurkeyerian -kuritz -kurelko -kurcaba -kuralt -kuprewicz -kupetz -kuntzman -kunishige -kundtz -kulwicki -kulow -kulis -kuhlmey -kufel -kues -kuehnel -kudrick -kudlacik -kudej -kuchel -kuchan -kucha -kuboushek -kubishta -kubilus -kubert -kubeika -kubasik -kuakini -krzyston -krzeczkowski -kryzak -krygier -kry -krupski -krupke -krupansky -krumvieda -krumholz -krumbholz -krudop -krstic -krovious -krommes -kromm -krolak -kroes -kroening -kroener -kritter -kristy -krisman -kriege -kridel -kreul -kretsinger -kretlow -kresal -krejsa -kreines -kreig -krefft -krauskopf -kratt -krassow -krasnecky -krance -krajcik -krail -kraham -krack -kozloff -kozlak -kozera -kozee -koyama -kowalowski -kowalchuk -kovalovsky -kovalcheck -koutz -kotts -kostyk -kosty -kostohryz -kostiuk -kostis -kostick -kosofsky -kosman -kosin -kosier -kosen -kosco -koschnitzki -kosbab -kosack -korzep -korvin -kortkamp -kornrumpf -korfhage -kordus -korchnak -koppinger -kopinski -kopald -kooyman -koopmans -koonz -kooker -kooch -konzal -konye -kontogiannis -konruff -konowal -konopnicki -konopacky -konopacki -konig -konicki -konecni -kondel -konakowitz -komlos -kombe -komatz -kolm -kollmeyer -kollasch -kolin -kolden -kolbo -kolata -kolaga -kokocinski -koko -koinzan -kohrman -kohnz -kogler -koets -koerwitz -koep -koenecke -koehly -kockler -kocka -kociolek -kobie -knudsuig -knoten -knotek -knole -knochel -knobbe -knightstep -knigge -knife -kniess -knickelbein -kneisler -kneedler -knedler -knall -knable -klym -klussmann -kluever -kludt -klouda -klotzbach -klosowski -klockars -klinker -klingshirn -klingelhoets -klingelhoefer -klena -klempa -klemisch -klemens -klemencic -klemen -kleinhenz -klecha -klebanow -klebanoff -klave -klang -klammer -klamet -klaers -klacic -kjar -kivisto -kivel -kitzrow -kitzerow -kitz -kiszka -kistenmacher -kisicki -kisak -kirylo -kirson -kirschke -kirmer -kirakosyan -kinton -kint -kinsland -kinlock -kini -kingsolver -kingdon -kindschuh -kindlimann -kindl -kindberg -kinas -kinaj -kimberl -killoy -killette -killer -killary -kilgor -kildoo -kilborne -kilbert -kil -kijek -kiewiet -kiever -kiesz -kiessling -kielar -kiehn -khosravi -kholodivker -kho -khatib -khatcherian -keyworth -keylor -kewanwytewa -kettman -kettlewell -kettl -kettelle -kethcart -ketay -keslar -kesby -kerne -kerk -kercy -kerchal -kerbel -kenrick -kennis -kennin -kennemuth -kennelty -kenkel -kemmerling -kemfort -kelstrom -kellow -kellom -kelk -keliiholokai -kelcourse -kekua -keiger -keglovic -keesecker -keehne -keedah -keding -keavney -keanu -keagy -keaffaber -keadle -kazemi -kazanowski -kazanjian -kazan -kawelo -kavanah -kautzer -kaukola -kaufusi -kauffeld -katowicz -katos -katheder -kately -kata -kastor -kastl -kassouf -kassler -kassam -kaskey -kasimis -kasdon -kaschmitter -kaschel -karratti -karpinen -karpen -karmann -karlovich -karlen -karkut -karin -kariger -karaffa -kapsos -kapps -kapnick -kanoa -kanney -kannas -kanduth -kampman -kamimura -kamens -kamemoto -kalvaitis -kaltenhauser -kalloch -kaller -kallenberg -kaliszuk -kalinoski -kalinger -kalich -kalfus -kalfayan -kalert -kalenkoski -kalen -kaleiwahea -kaleel -kaldas -kalawe -kalathas -kakos -kaiserman -kais -kailiponi -kaighn -kahuhu -kahoun -kahen -kahaleua -kah -kagy -kager -kagarise -kaffka -kaempfer -kaemmerer -kaelker -kady -kadner -kadlubowski -kadakia -kacynski -kacic -kach -kabrick -justman -justine -jurina -jurik -jurcik -junius -jumalon -julca -jui -jugan -juart -jove -journeay -joung -jou -josilowsky -josephsen -josephpauline -jorde -joor -jonte -jolie -johnke -johanningmeie -joerg -jochems -jilk -ji -jhonston -jez -jethva -jethro -jest -jesko -jerrel -jerich -jentsch -jensvold -jennrich -jenious -jenck -jemenez -jelle -jelinski -jeleniewski -jelen -jeffrie -jefford -jedik -jebbett -jayes -javarone -jauss -jaus -jaskolski -jasionowski -jasin -jarzynka -jarva -jaruis -jaross -jaret -jaquess -janovich -jannusch -jann -jankins -janitz -janicke -jangula -jamon -jammer -jamie -jameel -jakupcak -jakubczak -jakowich -jakeman -jagneaux -jagher -jaekel -jadin -jacobowitz -jackstadt -jackowiak -jackiewicz -jackels -jabour -izsak -izarraras -iwasa -iwanyszyn -iulo -iuliucci -iturbide -itkin -isby -isam -isales -isackson -irizarri -iribarren -irani -iracheta -iott -ioli -iodice -ioannidis -intriago -interrante -intermill -insco -inloes -ingrim -inglin -inglese -ingala -infield -inestroza -ineson -indest -incorvaia -inacio -imparato -imm -imfeld -imaizumi -illescas -ikuta -iino -ignasiak -igler -igel -iffert -idris -idema -ichinotsubo -ichinose -iburg -iarossi -iannaccone -iams -iacovissi -hytros -hyten -hysinger -hylle -hylinski -hvizdos -huyghe -huus -hutsler -hutchen -hustus -huso -husni -huslander -huska -hush -huschle -husayko -husanini -hurtis -hurter -hurrington -hurrigan -hurl -hurban -hunten -hundemer -humerickhouse -humbel -hulstine -hulm -huitzacua -hughlett -huger -huewe -huels -hudrick -hudek -huckeby -hubright -hubric -hubel -hsi -hryniewich -hrovat -hronick -hribar -hozempa -hoxworth -howryla -howison -howieson -howdeshell -hoving -hovi -hovelson -hovell -houten -housten -housekeeper -houpe -houp -houman -houghland -hougas -hothan -hotchkin -hoste -hosie -hosendove -hoseman -hoseck -hoschouer -horwood -horuath -hortillosa -horth -horsfield -horniak -hornby -hormander -horii -hores -horaney -horal -hopskins -hoppesch -hoopengardner -hoomana -hoolihan -hoof -honzel -honse -honohan -hongo -hongerholt -homola -homerding -homchick -holy -holvey -holsing -holshue -hollenberg -hollemon -holla -holka -holifeild -holets -holdt -holdness -holdiness -holda -holcey -holbein -hoium -hoisl -hohstadt -hohowski -hoh -hogy -hogsten -hogsette -hoggins -hofler -hoffstot -hoffschneider -hoffee -hoevel -hoernemann -hoeper -hoener -hoene -hoeke -hoeg -hoeflich -hoeffner -hoeffliger -hoecker -hoeck -hoe -hodgen -hodan -hockema -hochschild -hobkirk -hnatow -hledik -hjalmarson -hitzler -hittman -hisman -hirstein -hirschhorn -hirsche -hirkaler -hiraoka -hiraki -hipwell -hippo -hinsey -hinkey -hinish -hingst -hingle -hindin -hinahon -himelstein -hillburg -hillaire -hilgert -hildred -hildahl -hilcher -higueros -higle -higinbotham -hieserich -hidvegi -hidrogo -hickton -hickonbottom -hickert -hibl -heyveld -heydel -hevner -hevesy -heverley -heverin -heusley -heuberger -hettwer -hett -heter -hesters -hessong -hessing -hessenthaler -hessell -hessee -hesby -herzberger -herwood -herting -herscher -herschel -herrling -herrig -herriage -herrel -herre -herpolsheimer -hernanders -hermosura -hermie -hermens -herklotz -herkert -herby -herbster -herbison -herbers -herbein -heppeard -henrick -henrey -henretta -henneberg -hennagin -henington -henifin -heney -henesey -henehan -hendy -henderosn -hender -hendee -henby -henaire -hemrich -hemmie -hemmes -hemlepp -heminover -hemauer -helvy -helsing -helmy -helmstetler -helmink -helmcamp -hellar -hellams -helker -helgesen -helfritz -helena -hele -hektner -hejl -heitschmidt -heitger -heinzmann -heinzen -heininger -heineken -heimrich -heimbaugh -heiermann -hehr -hegre -hegmann -hefler -hefflinger -heese -heeney -heemstra -hedrich -hedgespeth -hedemann -hedegore -heddlesten -heckenberg -hebig -hebden -hebda -heatly -heathershaw -hearson -heally -healan -heads -hazleton -hazarika -hayhoe -haydal -hayburn -hawthrone -hawman -hawkey -hawf -havice -havercroft -hautamaki -hauskins -haulter -haugrud -hauan -hatzenbuhler -hatzenbuehler -hattub -hattier -hatteyer -hatstat -hathway -hataway -hassick -hassian -hasselman -hasselbarth -hasper -haspel -haske -hasgill -hasen -harviston -harvilla -harvilicz -harver -hartzer -hartup -hartsough -hartsch -hartly -hartlep -hartlein -hartkopf -harthun -hartfiel -hartery -hartert -hartage -harsey -harrey -harrett -harral -haroutunian -harmeyer -harlowe -harloff -hardyman -hards -hardrict -hardmon -hardigree -hardenburg -hardell -hardebeck -hardaman -hardaker -harcey -harbick -harajli -happer -hapgood -hanstein -hansbury -hanold -hanohano -hano -hanns -hannifan -hannes -hanko -hanis -hanenkrat -hanemann -hanek -handzel -handwerker -handwerk -handsaker -handrick -handelsman -handal -hancin -hanbury -hanaway -hanahan -hams -hammerly -hammeren -hammatt -hammarlund -hamling -hamiss -hamiel -hamelinck -hambrecht -halo -hallinger -hallick -halifax -halgrimson -halfmann -halder -hald -halburnt -halberstam -halaby -haker -haken -haine -hagos -hagmaier -hagenson -hagene -hagenbrok -hagenbaugh -hafter -haffling -haeger -haegele -hade -hadder -hadcock -haczynski -hackle -hachigian -hachez -habrock -habowski -habina -haberkamp -habben -habash -haaby -gyatso -gwalthney -guziec -guziak -guys -guynup -gutzwiller -guttmann -gutting -gutteridge -guterrez -guszak -gusky -gusciora -gurry -gurrieri -guritz -gunst -gundry -gundert -gulsvig -gulisano -gulinson -guittar -guitard -guisti -guiski -guinto -guinther -guinnip -guilliam -guillerault -guilfoil -guijarro -guidetti -guiberteau -guger -guevera -guetersloh -guerini -guella -guedea -guecho -gudis -guckin -guberman -guardipee -guanio -guagliardo -grzegorek -grybel -grunst -grunlien -grundmeier -grundhoefer -grun -grumer -grum -gruhn -gruger -grudt -growney -grotts -groton -grotelueschen -grotberg -grosswiler -gronowski -gronosky -gronewald -gronert -groholski -groetken -groeschel -groene -grodecki -groceman -griswell -griseta -grinkley -grinie -grinberg -grimmius -grieme -greytak -grett -grenke -grenda -greinke -greeves -greever -greet -greenlun -greenler -greenham -grebin -grboyan -grawburg -grattelo -grassham -granvold -granthan -gransky -grandolfo -grandmaison -grandchild -granbois -gramolini -grammatica -gramc -grajek -grahe -gragson -gragert -grage -grafenstein -graetz -gracely -graceffo -grabarczyk -gouzalez -gouse -gourdin -goudelock -goud -gottlob -gottke -gotthelf -gotthard -gotter -gotsche -gotschall -gosz -goston -gossack -gosdin -gorz -gorrill -gornto -gornie -gorenberg -gorelli -gordinier -gora -gopin -gopie -goolman -goolden -goodsite -goodmanson -goodly -goodkin -goodiel -gonzolas -gonsior -gonseth -gonez -gonchoff -gonales -gomzales -gomora -golly -gollihar -gollhofer -golka -golinski -golen -golembeski -golemba -goldwater -goldstock -goldklang -goldbeck -golda -gojmerac -goich -gohlke -goger -gogel -goga -gofton -goffe -goetting -goeser -goerner -goerke -goerdel -goeppner -godsman -godert -godel -gobeli -gnas -glucksman -glotzbecker -gloeckner -glockner -glish -glickson -glicken -glew -glessing -gleichman -glazener -glave -glausier -glatzel -glassett -glasbrenner -gladu -glab -glaab -giza -gittler -gittleman -gittinger -gitting -gitthens -gissel -gischer -girst -girsch -girona -girillo -gire -gira -giovanetti -gionest -gingles -gingery -ging -gillstrap -gillson -gillotti -gillmor -gilliss -gillig -gillert -gillcrest -gilgour -gilgore -gilding -gilderman -gilcreast -gieseman -gieselman -gieringer -gick -giangrosso -giangregorio -giambra -giambattista -ghibaudy -ghianni -ghelfi -ghaziani -ghantt -ghant -ghaemmaghami -gey -getler -getchius -gesualdo -gesmondi -gerweck -gerwe -gerula -gertsen -gershey -gershen -gers -gerritsen -gerdsen -gerczak -gerbatz -gerba -gerache -georgl -georgiadis -georgelis -georgalas -genualdo -gentery -gennock -gennett -genett -gendernalik -genas -gena -gemmen -gelston -gellman -gelfo -gelen -gelbowitz -geibig -gehlhausen -geffre -geesaman -geel -gedman -geckles -gebbie -gearwar -gearlds -gayne -gayfield -gawlas -gauwain -gaufin -gauani -gastley -gastello -gassoway -gasparino -gaskey -gaser -gascot -garuti -garrington -garreh -garnand -garlits -garity -garitty -gariety -garia -gari -garetson -garelik -garding -garb -garasha -ganzer -gantert -ganotisi -ganner -ganison -ganie -gangell -gangel -ganesh -gandrud -ganas -gamby -gambles -galyan -galuski -galper -gallwas -galluzzi -gallups -gallosa -gallipeau -gallet -gallerani -gallegly -gallaty -gallaspy -gallander -galioto -galicinao -galer -galdon -galardi -galamay -galabeas -gala -gaitor -gagg -gagan -gaerlan -gadley -gacke -gacia -gach -gabrelcik -gabay -gabard -fylnn -fydenkevez -futter -fuse -fuscaldo -furstenberg -furmanik -furlone -furia -furer -furci -furbish -funt -fulker -fukano -fujino -fuhrmeister -fugo -fuerman -frymyer -fryling -frontz -froncek -fronce -frolich -froio -froid -froehle -frischman -friou -friot -frieze -friesz -friemering -frieman -friedrick -friedle -frickson -frickel -frichette -fricano -fribley -frewing -frever -freudenstein -frerking -frenger -freisner -fregeau -freedle -frease -frazey -frascone -franzmann -franzetti -frankforter -francy -franckowiak -francies -franchette -fralin -fraleigh -fraint -fragozo -fracchia -frabizzio -fousek -fouraker -foucault -fosson -fossati -fosnough -forts -forthman -forsting -forstedt -forshay -forshaw -forsha -forro -forno -forlivio -forkosh -forkan -forcello -foradori -fontane -fonger -foney -fondy -fondow -folta -follin -folliard -folley -folken -foiles -fohn -foggs -foesch -foertsch -foecking -fodness -foat -flot -flosi -florenz -florens -florencio -florea -florczak -flodin -flocke -flo -flentroy -flenard -fleisner -flecther -flaks -flagstad -flagel -fjetland -fixico -fiume -fitterer -fisette -firlit -firestein -fiotodimitrak -fioto -finner -finnefrock -fingado -finely -fincel -finau -fimbrez -filoteo -fillpot -fillare -filipski -filippo -filipovic -filipelli -filimaua -filhiol -filgo -fileds -filbert -figuera -figliola -figart -fietsam -fieselman -fiene -fieldhouse -fiebig -fidel -fida -fickert -fiato -fevold -feuerborn -fetchko -fesh -feser -ferruso -ferriolo -ferriola -ferrence -ferrar -ferran -ferraiz -feroz -ferone -fernstrom -fernstaedt -fernow -ferkovich -fergen -ferdolage -ferdinandsen -ferbrache -fennewald -fenk -fenix -fendler -fenchel -felske -fellinger -felicetti -feldpausch -feighan -feichter -fehrle -fehringer -fegaro -feener -feeler -fedorchak -federowicz -fedd -feauto -feagen -feaganes -fazzina -fazzi -faykosh -fayard -favuzza -favolise -fausset -fauske -fausel -fauscett -faulknen -faulkenburg -fatica -fastlaben -fastic -farzan -farstvedt -farin -farguharson -fargnoli -farfalla -farese -farer -faraldo -faraj -fara -fanzo -fanton -fanney -fanizzi -fanion -fanelle -falterman -falsetti -fallone -falkiewicz -falconio -fake -fairleigh -fahringer -fahrenkrug -faerber -fadley -fadeley -facundo -fack -face -faby -fabrizius -fabozzi -fabiszewski -fabin -ezpeleta -ezparza -eyrich -eyerman -ewoldt -ewards -evasco -evanich -evangelo -eustace -eugley -euertz -etulain -etchells -esson -esskew -essery -esselink -espinol -espenoza -espelien -espeland -espadas -esler -eske -eska -escuriex -escovar -escort -eschrich -eschette -eschen -eschbaugh -escalon -escalero -esbrandt -esary -ertman -eroh -ernesto -erlenbusch -erle -erke -erichsen -eric -erholm -erbstein -erbst -eppolito -eppihimer -eppich -entin -enslinger -enslen -enockson -ennenga -enman -englett -engleson -englerth -engl -engholm -engelken -engelkemier -engelhaupt -engelbach -endries -endow -endito -enderby -encallado -emziah -embt -embs -embelton -emard -elwonger -elvsaas -elumbaugh -elstner -elsmore -elskamp -elshant -elmblad -ellson -ellias -elletson -ellestad -ellert -ellermann -ellerbrock -elleman -ellars -elland -eliezrie -eldib -eldert -elbe -ekwall -ekholm -eken -eitnier -eitniear -eisenzimmer -eisenstadt -eisensmith -eiselman -eisbach -eisaman -eiken -eibell -ehrke -ehrismann -ehrenfeld -ehlman -egizi -egitto -eggeman -effron -ednie -edelbrock -edde -edd -economos -eckols -eckloff -echegoyen -ebia -eberlin -ebbers -easterbrook -earney -earleywine -eanni -eadens -dyron -dykhoff -dyers -dyda -dybala -dwane -dwaileebe -duverne -duve -dusen -dusatko -dusablon -durrette -durphey -durnin -durkes -durette -durdy -durch -duracher -dupray -dupoux -duponte -duperclay -dupass -dupar -dunwiddie -dunsing -dunnaville -duncomb -duncklee -dunay -dunakin -dumpe -dumes -dumdei -dumay -dulkis -dukich -dukas -duin -dugo -duewall -duemmel -duelm -dueber -dudman -dudak -duckhorn -duchscherer -ducat -ducas -dubyk -dubill -dubiansky -dubaldi -dua -dspain -drzazgowski -drymon -drylie -druvenga -druschel -drungo -droze -drouse -drott -drosick -droneburg -droessler -droesch -drobny -drizin -dripps -drinkley -drillock -driesbach -dretzka -dresner -drentlaw -drenon -drehs -drehobl -drda -draxler -drath -drapeaux -dragula -drafts -draft -dozer -doxtater -doxie -dowst -dowson -downton -dowlen -dowey -dowery -douty -doughtry -doughtery -dotzler -dotterer -dothard -dosher -dosal -dorso -dorsette -doro -dornfeld -dorkin -dorka -dorge -dorchy -dorame -dopler -dopico -doore -dooms -donnie -donnelley -donnel -donayre -donatello -donachie -dominiguez -domingos -dominga -dominey -domenget -dolores -dollyhigh -dollen -dollak -doleac -dolch -dolbeare -dokka -dokes -doire -doing -dohring -dohogne -dohnal -dohan -doerle -doerhoff -doemelt -doehring -doegg -dodsworth -dodoo -dodier -dockendorf -docken -dobrowski -dobrin -dobine -doberstein -dizer -dixey -divita -diven -divalerio -dituri -ditton -disspain -disparte -dismore -disilvestro -dishong -dishian -diseth -discenza -dirkson -dirkse -dirker -dirk -dipippo -dipinto -dipierro -dinnocenzo -dinizio -dinis -dingivan -dingfelder -dincher -dimucci -dimpson -dimpfl -dimitrov -dimarzo -dils -dilisio -diliberto -diliberti -diles -dileonardo -dilena -dijulio -diiulio -digiuseppe -diga -difillippo -difebbo -dieng -diekman -didyk -didriksen -dickus -dickow -dickeson -dicastro -dibenedetti -dhaliwal -dezenzo -dewyse -dewinter -dewaters -dewaele -devoto -devor -devoogd -deviva -devitis -devit -deveyra -devericks -devenuto -deveja -devaughan -deutschendorf -deuink -deubner -detzler -detullio -detore -dethlefsen -dethlefs -detamble -desrevisseau -desotel -deso -desmeules -desmaris -desilvio -deshpande -deschambault -descamps -desatnik -desamito -desalle -desak -derwin -derting -derrah -deroven -derosso -deromer -dermott -deringer -derico -derga -derflinger -derezinski -derck -derbacher -deranick -depuydt -depung -depree -deppert -depierre -dephillips -deojay -denzin -denten -dentel -dennies -denina -denger -deneke -denegre -denboer -denapoli -demsky -demsey -demotta -demmons -demman -demendonca -demeester -dembowski -demarce -deman -demallie -demaire -delwiche -delphia -delore -dellenbaugh -dellbringge -dellaratta -dellaporta -dellapenna -dellacioppa -deliberto -delibertis -delgenio -delcueto -delaurie -delauder -delatrinidad -delash -delaet -del -dekrey -dejoie -deiters -deimund -degrenier -degre -degrand -degon -degeston -degelbeck -degaust -degasparre -defreece -defenderfer -defee -deeken -dedon -dedinas -dedicke -dedic -decristofaro -decoud -decos -deconti -deckers -decio -decenzo -debroux -debrot -debray -deboef -debiasio -debettignies -debenedittis -debbins -debaecke -dearson -dearo -deardon -deaquino -deacetis -dayne -dayem -dax -dawoud -davitt -davito -davidoff -dauterman -daughterty -daugaard -daudelin -daubendiek -dattilio -datcher -dasovich -daso -dasilua -dashem -darou -darke -dargin -darga -darco -darcey -dapas -dantos -danson -danny -danielian -danchetz -danby -damrow -damours -damboise -dambakly -dambach -damasco -damann -dallmeyer -dallesandro -dalfonso -dakins -dakes -daire -dahill -daguio -dagis -dabdoub -czerkies -czarnota -czachor -czach -cypress -cynthia -cylkowski -cyfers -cwiakala -cvetkovic -cuzman -cuzick -cuttler -cutt -cuti -cutforth -cutchins -cutchall -cushwa -curo -curbeam -cunnick -cuneio -cundick -cumbaa -cultice -cullity -cullip -cullifer -cucvas -cuculich -cucino -cubeta -cser -crupper -crunkilton -cruden -crover -crouter -crough -crouchet -crosthwaite -croon -cronshaw -cronenberg -crome -croman -crognale -crogan -croasmun -cristofori -cristiano -crisan -cringle -crincoli -crill -crieghton -cridge -criblez -crellin -cregeen -creeks -creath -creacy -crazier -crawmer -crawhorn -cratin -crapser -crapse -cranmore -cramm -cramblit -cramblet -cragin -cracas -cozzone -coyco -coxey -cowper -cowett -covone -covill -coverton -councilman -coultrap -coulas -coughenour -cough -cotty -cotherman -cother -costantini -cossell -cossano -cosley -coslett -coskey -cosgray -corza -corvi -corvan -corsetti -corscadden -corsa -corrow -corrice -correro -correale -corre -corna -corke -corid -corelli -cordonnier -cordona -corak -coppler -copelan -coore -coonradt -coones -cookus -conveniencia -contrerras -contrenas -contorno -constantini -constantineau -consolver -conrath -connet -connerly -conliffe -conforto -conda -conca -conales -compono -compau -commendatore -comings -comboy -combass -coltrin -colpetzer -colonel -colombini -cologie -colla -colbeth -colbaugh -colasuonno -colapinto -colamarino -colaluca -colaianni -colafrancesco -colace -colabella -coggsdale -coffill -codispoti -codell -cocoros -cocopoti -cocola -cockley -cockey -cochron -coch -cobden -coatsworth -coarsey -coar -clymore -clumpner -clougher -clolinger -clinkingbeard -clineman -clewes -clemments -claypole -clayburg -claybron -claybon -claughton -clase -clarenbach -clankscales -clampett -claessens -claburn -citrin -cisney -cirri -cipro -cipkowski -cione -cinquanti -cink -cimiano -ciervo -ciers -cicora -ciciora -cicione -cicerelli -ciccolini -ciccarone -cicarella -ciarletta -ciaccio -chuta -chustz -churan -chumbler -chuba -chruch -christler -christinsen -christinat -christello -chrispin -chrismer -chrislip -chrisjohn -chrestman -choute -chough -chorlton -chomka -chmelicek -chiulli -chislom -chiras -chinzi -chinnery -chinick -chim -chilvers -chilo -chiarmonte -chiarenza -chiapetti -chhuon -chhour -chheang -chetram -chessher -cherrier -cherepy -cherenfant -chenot -cheli -checa -cheathan -chears -chauvaux -chaudoin -chauarria -chatters -chatlos -chatley -chasey -charves -charsky -charania -chaplen -chaple -channer -chander -champey -champeau -challen -chall -chalkley -chalet -chalcraft -chaix -chadick -chadbourn -chaban -cesari -cervoni -cervin -certalich -cerni -cerney -cereo -cerce -ceravolo -ceparano -centrella -centner -centano -cenat -celmer -celenza -celadon -cefaratti -cefalo -cedillos -cecilia -cechini -cecala -cease -cearns -cazeau -cayson -cayanan -cavallario -cauthron -cattrell -catterson -catrone -catone -catoggio -caterino -catching -catalani -castrataro -castoe -castles -castillanos -castellonese -castelhano -cassman -cassius -cassisse -cassem -cassani -cassandra -casola -caselli -cascone -casburn -casbeer -casbarro -carrin -carreker -carrea -carre -carrauza -carranzo -carpinello -carolin -carmolli -carmena -carmell -carmain -carlye -carlsten -carlough -carlone -caringi -carine -carin -carela -cardono -cardle -cardinali -cardi -cardera -carback -capuzzi -capracotta -cappo -cappleman -capparelli -caponera -caplener -capanna -caoili -caoile -canzio -cantoran -cantillo -canta -canonica -cannington -canniff -cangas -canevazzi -canes -caneles -candido -canders -cance -canaway -canarte -canario -canan -camren -campusano -campman -camm -caminos -camferdam -camerena -camell -camak -camaj -calway -calvino -calvetti -calvani -caltabiano -calnimptewa -calnick -calnen -calmese -callander -callabrass -caliz -calija -calger -calendine -calderara -calcara -calamity -cailler -caho -caguimbal -cadoff -caddick -cadavieco -cabos -cabiltes -cabibbo -cabellero -cabasso -caballes -cabading -caal -byra -byod -bynon -byner -bynam -byker -buzzi -buzzeo -butzen -buttz -butteris -butkiewicz -buteaux -bustad -bussone -busman -bushmaker -busche -burwinkel -burum -burtless -bursi -burrup -burross -burries -burrichter -burrelli -buron -buro -burnstein -burnaugh -burnap -burkdoll -buris -burington -burgun -burgie -burghard -burgh -burgas -burgardt -burga -burdess -burcin -burchfiel -burchess -burandt -buonanno -buonamici -buntjer -bungert -bundschuh -bumps -buman -bulosan -bullocks -bullie -bularz -buland -bujarski -buhmann -buhman -bugna -buglisi -buggy -buemi -budke -buder -budds -buddie -buczak -buckwald -buckovitch -buckholtz -buckhanan -buchetto -buchauer -bucciarelli -buccheri -bucaram -bubis -bubash -bubak -brzostek -brzezowski -bryton -brusuelas -brussell -bruschi -brundrett -brundin -brumet -bruley -bruk -brug -bruestle -brudner -bruccoleri -brozie -broxterman -brox -browy -brownle -browm -broward -brouwers -brousard -brought -brotherson -brotemarkle -brossoit -broscious -brooms -broomhall -brookshaw -brookhouse -bronchetti -broks -broida -brohl -broglie -brofft -broermann -broenneke -brodnex -brodka -brodish -brockelmeyer -brockberg -broch -broccoli -brobeck -broadstone -brittman -brislan -brisk -brisentine -bringhurst -brindel -brinda -brincks -brimeyer -brihm -brignolo -briglia -brighi -brient -bridenbaker -briddell -briante -brians -briagas -brevo -breu -bretto -bretthauer -breslauer -bresemann -brentari -brenning -brenhaug -brengettey -brenek -brendal -brenagh -breiling -breidenbaugh -brehant -bregel -bredeweg -bredehoft -breceda -braylock -brause -brauning -braulio -braukus -braucher -bratchett -brasseur -brasser -branstutter -branstad -branscombe -brannick -brandolini -brandly -brandenberg -brandeis -brandal -branciforte -brancheau -brancati -bramlette -bramlet -brakhage -braitman -braisted -bradfute -bracks -bracket -braccia -braam -bozzone -bozenski -bozard -boyson -boylston -boxwell -bowlen -bowdle -bowdich -boward -bovia -bovey -boven -bouza -bouwman -bouwkamp -boutiette -boursaw -bourret -bourgoyne -bounleut -bound -bouma -bouleris -bouler -boughman -boughamer -boudoin -boudewyns -botwinick -bottone -bottino -botticello -botten -bottaro -bottalico -bostel -boshes -boshard -bosell -boscarello -bory -borsari -borok -borodec -bornmann -bormuth -bormet -borling -borlace -borkin -borkenhagen -boreen -bordin -borcherding -boote -booras -boody -bonton -bontemps -bonomini -bonina -bonifer -bongartz -boness -bonefont -bonefield -bonder -bonde -bondanza -bonavia -bonamo -bonadurer -bomkamp -bolognia -bollich -bollacker -bolinsky -boldosser -boldon -bolda -bolado -boken -bok -boisselle -boisen -bois -bohs -bohnenblust -bohlig -bohinc -bogumil -bogie -boggioni -boggi -bogenschneide -bogema -boge -bogdanski -bogdanovich -boettner -boesiger -boesel -boensch -boele -boeken -boehning -boehlar -bodwell -bodreau -bodovsky -boda -boczar -boclair -bockemehl -bochenski -bochat -boch -boccio -bocchicchio -boccanfuso -bobzien -bobson -bobino -bobier -bobeck -bobak -boarts -boardwine -boaldin -boakye -boady -blunden -blumenstock -blovin -blouir -bloschichak -bloome -bloodough -blonder -blommer -blok -bloeser -blinks -blinka -bline -blickem -bleyl -blews -bless -blenner -bleimehl -blecker -bleasdale -bleakney -blatnick -blaski -blare -blanzy -blankumsee -blancett -blaich -blada -blackbum -bjorseth -bjorlin -bizzaro -bivin -bitetto -bisso -biskup -biskach -bisio -bisi -bishard -bisesi -bisaccia -birtcher -birrittella -birkhimer -birkey -biringer -biren -birdette -birak -bio -binker -bink -bingler -bingert -bingamon -bindas -bilson -billow -billon -billo -bille -bilis -bilich -biler -bilek -bilden -bilazzo -bila -bigus -biggart -biggar -bigaud -biesheuvel -biernacki -bierley -bierlein -bielefeldt -biedermann -biedenbender -biddulph -bicksler -bickes -bicek -bica -bibiano -biangone -bi -bezzo -bezdicek -beyt -beydler -bevelacqua -beuther -beucke -betzold -bettman -bettino -betterley -betancourth -bessel -beska -beschorner -berwald -berum -bertotti -bertorelli -bertoldo -bertolami -bertley -berteotti -bertaina -berstler -berniard -berndsen -bernadette -berlinski -berkstresser -berks -berkovich -berkoff -berkhimer -berkery -bergmark -berga -berfield -bereznak -beresky -berenger -berendzen -berendt -berczel -berch -berbes -berardinelli -beppu -benziger -benzie -benzango -benthall -bentancourt -bensberg -benno -bennin -bennes -benken -benike -benigni -benestad -bendtsen -bendis -bendig -bendetti -bendele -benasher -benack -bemben -belts -belrose -belnas -bellusci -belloso -bellizzi -bellinghausen -belliard -belletto -bellettiere -belko -belitz -belfanti -beldon -bekis -bejcek -beitler -beiser -beine -beiley -beierschmitt -behrle -behran -behlmer -behlke -beguelin -beghtol -beger -begeal -beezley -beesmer -beerer -beere -beerbohm -beenel -beelby -beecken -bedor -bede -beddows -beddow -beddia -becky -beckius -beckfield -beckem -becena -beavis -beaumonte -beauman -beauharnois -beaudine -beasly -beales -be -bazylewicz -bazner -bazel -baytos -bayton -bayt -baylock -bayird -baygents -baxa -bawner -bawden -bavelas -bauske -baumberger -baul -battuello -battig -batterman -battani -battaglino -batimon -bathke -baters -batch -batas -batara -batala -bastine -bassani -bassali -baskind -baseman -basehore -basara -barze -barwell -barut -baruffa -bartlome -bartin -barthol -barthell -barters -barswell -barshaw -barrigan -barria -barrasa -barraco -barnthouse -barnt -barmes -barkhimer -barios -bario -barino -barie -barick -barfuss -barfknecht -barer -bareford -bardis -barcley -barchick -barcena -barbur -barbor -barbin -barben -barbella -barbaglia -baransky -baragan -baquiran -banzhaf -banter -bankowski -banet -bandt -banaszek -banana -balque -balowski -ballog -ballina -ballensky -ballato -baliga -baldomero -balden -balde -baldassare -balbontin -balbas -balassi -balandran -bakkala -bakhshian -bakerville -bakaler -bajaj -baites -baisten -bairam -bailard -baierl -baichan -bai -bahrs -bagozzi -bagni -bagnato -baglione -baggio -baggesen -baggenstoss -bagan -baessler -baerman -baerlocher -badgero -baddour -badami -baculpo -bacio -bacigalupo -bachta -bachar -bacchi -babrow -babonis -babish -babicke -babeu -baab -azzopardi -azore -azen -aykroid -axon -axelrad -awkard -awender -avon -avirett -averitte -averbeck -avellano -avary -auwaerter -autrano -auteri -austgen -ausdemore -aurich -aumen -auler -augustyniak -augliano -aughtman -aue -auduong -aucter -attianese -atiles -athas -asturias -astrup -astley -assante -aspden -aspacio -asley -asleson -askvig -askegren -askam -ashmen -ashauer -asfour -aschoff -aschim -aschan -asal -arzo -arvesen -arrow -arrocha -arris -arribas -arquitt -arone -aroche -arnt -arnoux -arnoldi -arning -arnholt -arndorfer -armson -arment -arlotta -arlinghaus -arlia -arkema -arizaga -arisumi -aristide -aris -arif -ariano -arguilez -argudo -argrow -argiro -argetsinger -arfman -arenburg -aredondo -area -ardry -ardner -ardizone -arcudi -arcizo -arcila -archilla -archangel -arcega -arbucci -arato -arano -aran -aragan -apostol -apolito -apland -apkin -aperges -apalategui -apaez -anzora -antonsen -antolos -antolini -antman -anter -anspaugh -anselm -annonio -annichiarico -annibale -annarumo -anliker -ankrapp -ankenman -anhorn -angton -angrisano -angon -angolo -angleton -anglebrandt -anglea -anglade -angilletta -angeron -angelotti -angelbeck -angela -anez -andueza -andrulis -andronis -andreu -andreoni -andert -anderlik -anauo -anastasiades -ananias -anand -amuso -amrich -amr -amour -amoss -amorosi -amoako -amoah -ammirato -ammar -amirian -amiot -amidi -ameduri -amderson -ambuehl -amass -amanza -amadio -alwang -alwan -alvine -alvarran -alvarracin -alvanez -aluqdah -altshuler -altonen -altmiller -altken -altiery -althiser -altaras -alstrom -alstad -alsbury -alsberry -alquijay -alpha -alonza -aloia -alnas -almerico -almenar -almen -allwood -allstott -allridge -alleva -allenson -allenbaugh -allegretta -allegra -allbritten -allara -allamon -alken -alizadeh -alirez -alires -aline -alim -algire -algier -algien -alfonsi -alexy -alexnder -alessandroni -alert -alemany -aleksey -alderton -alderfer -aldava -aldapa -alconcel -albornoz -albini -albergotti -alben -albea -albang -alario -alamilla -alalem -akoni -akles -akande -akamine -ajasin -aiyer -aihara -ahrendes -aherns -aharoni -agunos -aguliar -aguillar -agudo -agoras -agnor -agni -agers -agel -aery -aerts -adon -adessa -aderson -aderman -adema -adelsberg -adelblue -adel -addiego -adas -adamcik -acquilla -ackmann -achterhof -achane -abuhl -abrial -abreau -aboulahoud -aboudi -ablao -abilez -abete -aberson -abelman -abelardo -abedelah -abdulmateen -abato -aas -aarestad -aanenson -zymowski -zyla -zybia -zwolski -zwigart -zuwkowski -zurovec -zurkuhlen -zuppa -zunich -zumpfe -zumalt -zulkowski -zulfer -zugg -zuerlein -zuehls -zuckerberg -zuchelkowski -zucchetto -zucca -zubrowski -zubizarreta -zsadanyi -zrake -zotti -zosel -zoltek -zolla -zogopoulos -zogby -zmek -zitzmann -zitzelberger -zirker -zinzow -zimick -zimerman -zilk -zigomalas -ziesman -ziernicki -zierke -zierk -zierenberg -zierden -ziems -zieger -ziebert -zicafoose -zic -zibell -ziada -ziad -zhen -zetzer -zetino -zerphey -zercher -zeran -zephyr -zelonis -zellinger -zelko -zeliff -zeleznik -zekria -zeidman -zehrer -zehrbach -zeherquist -zehender -zegar -zega -zechiel -zeccardi -zebracki -zeavala -zbierski -zaza -zayicek -zawistowski -zawasky -zavitz -zaverl -zavcedo -zavattieri -zavacky -zausch -zatorski -zarrabi -zarlingo -zarin -zarillo -zaren -zapel -zapatero -zantow -zant -zannini -zangger -zanfardino -zanardi -zan -zampella -zamoro -zamborano -zambelli -zalamea -zajdel -zais -zahourek -zaharek -zagulski -zagacki -zadina -zaczek -zachter -zachariah -zacchini -zabenko -zabbo -yuska -yuscak -yurovic -yurek -yunes -yumas -yuk -yudell -ysaguirre -yray -yozzo -yovan -youssefi -yousko -younghans -youmon -youla -yotter -yoshi -yoseph -yorck -yono -yoneoka -yonashiro -yomes -yokel -yoest -ynocencio -yewell -yetzer -yetsko -yerty -yeropoli -yerka -yergin -yenor -yem -yeley -yearego -yeakel -yazzle -yazzi -yazdani -yaws -yasika -yarwood -yarris -yaroch -yarmitsky -yara -yantzi -yannucci -yannayon -yannantuono -yankovski -yankovitch -yandow -yanchik -yanagihara -yanagida -yanacek -yamanoha -yamaki -yalon -yaklin -yake -yaiva -yaish -yahne -yafuso -yafaie -yacullo -yacovone -yacoub -xyong -xayasith -wyze -wyrostek -wynes -wyker -wygal -wybenga -wurz -wung -wueste -wubnig -wubbena -wubben -wrzesien -wrynn -wrightington -wride -wreyford -woytowich -woytek -wosick -workowski -worell -wordlow -worchester -wooward -woolhiser -woodlin -woodka -woodbeck -woodal -wondoloski -wonderling -wolsdorf -wolper -wollert -wollenburg -woline -wolfing -wolfensperger -wolbrecht -wojnowski -wojewoda -wojdak -wohlfeil -wohlert -woge -woelfl -wodicka -wobser -wobbe -wnukowski -wnorowski -wmith -wlodarek -wiza -witucki -wittrup -wittnebel -witthoeft -wittenbrink -wittbrodt -witkowsky -wisnowski -wisely -wirtzfeld -wirfs -wipfli -winterberg -winslette -winscott -winnicki -winnen -winik -wingeier -windsheimer -windrow -windhorst -windfield -windauer -wincapaw -win -wimbrow -wimble -wilund -wilshusen -wilsen -willock -willmert -willies -williemae -williamis -willia -willi -willeto -willborn -wilkus -wilkson -wilkoff -wildridge -wilczak -wilcut -wiklund -wiggan -wigand -wig -wiesemann -wieseman -wiersteiner -wienberg -wielock -wielgasz -wiegard -wiedrich -wiederholt -wieben -widjaja -widera -wide -wicklin -wickersheim -wiborg -wiatrowski -why -whittum -whittinghill -whittenbeck -whitiker -whitey -whiter -whitelightnin -whitcome -whisted -whirlow -whiles -whilden -whetzell -whelihan -wheeldon -wheater -whaltey -weynand -weyker -weydert -weuve -wetzstein -wetzell -westler -westermeier -westermark -westermann -westerhoff -westbrooke -weske -weser -werst -werremeyer -wernsman -wernex -wern -werme -werline -werk -wergin -werdlow -werderman -went -wensman -wenske -wendorff -welzel -weltha -wellinghoff -welding -weit -weissenbach -weispfenning -weismantle -weisbecker -weirauch -weinzierl -weinrib -weinland -weinfurter -weinburg -weiher -weig -weidower -weicht -weibe -wehking -weglage -wegiel -wedige -weckwerth -weatherington -weasel -weant -wealer -weagraff -weader -wayts -wayson -waymon -waygood -wayford -waychowsky -waverly -wattigny -watsky -watry -wates -watah -wasurick -wassam -waskom -waskin -washum -washpun -washler -waser -warzybok -warstler -warrilow -warran -waroway -warntz -warnberg -warmka -warmbrod -warlow -warlock -warde -war -wapp -wantuck -wannlund -wannarka -wanko -wandell -walund -waltos -waltho -walstrum -walrod -walper -waln -wallwork -wallo -wallman -walliser -wallie -wallenbrock -wallau -walka -walizer -walgren -waley -walen -waldroop -walderon -wal -wakeford -waitz -waiss -waisanen -wais -wainkrantz -wahn -wahdan -wahba -wagnor -waggy -wagemann -wagatsuma -waffenschmidt -waegner -waddups -waddles -wadas -wacht -waas -waaga -vuoso -vukelj -vriens -vredeveld -vrbas -vranicar -vovak -votsmier -vostal -vorsburgh -vornes -vopava -vonseeger -vonschriltz -vonholt -vongsamphanh -vongkhamphanh -vongkhamchanh -vonfelden -voner -vondrasek -vondracek -vonderhaar -vonderahe -vonbank -volpone -volmar -vollmers -vollette -volinsky -volek -volbert -vojna -voigtlander -vogelzang -voeltz -voelkerding -vocelka -vljeric -vleming -vlchek -vizzi -vixayack -vixay -vivyan -vivion -vitrano -vitez -vitellaro -visounnaraj -visick -viscosi -virostko -virgile -virgadamo -virant -vintila -vinti -vint -vilven -vilt -villnave -villescaz -ville -villasis -villaplana -villao -villanveua -villanvera -villandry -villamayor -villamarin -villaluz -villaluazo -villaire -villacrusis -vilegas -vildosola -viker -vijil -vijayan -vigneau -vigilo -vigiano -vieu -vietzke -vierk -viengxay -vieau -vidas -vidaca -vicuna -vicueroa -vicenteno -vias -viard -viano -viale -viafara -vezza -vevea -vetterkind -vetterick -veto -vessar -vesperas -vesley -verwers -verunza -verso -versage -verrue -verrone -verrastro -verplanck -verone -vernazza -verlinden -verlin -verkuilen -verfaillie -venzor -venturelli -venskoske -venning -venneman -veneri -vendig -vence -veltkamp -velthuis -velovic -veller -velky -velega -velardes -veksler -veitinger -vehrenkamp -vegerano -vedovelli -veasman -vbiles -vautier -vaulet -vatterott -vasudevan -vasos -vasek -vasallo -varquez -varquera -varoz -varone -varisco -varieur -varanda -vanzie -vanwyck -vanwhy -vanweerd -vanwechel -vanvuren -vanvorst -vanveldhuize -vanuden -vantuyle -vantull -vansteenhuyse -vansteenberg -vanson -vansise -vanschoor -vanschoiack -vanrossum -vanosdol -vanos -vanorsouw -vanoni -vannuck -vanlinden -vanlier -vanlaere -vaninetti -vanhove -vanhoutte -vanhoecke -vanheusen -vanhamme -vanham -vangordon -vaneekelen -vandonsel -vandevanter -vandesande -vandernoot -vanderjagt -vanderiet -vanderhurst -vanderbie -vandawalker -vandaele -vanblaricum -vanbeveren -vanamerongen -vanamburgh -vanalstin -valtas -valme -vallow -vallotton -valliant -vallegos -vallar -valladores -valerino -valeriani -valela -valdo -valant -valado -vajnar -vais -vagnier -vadlamudi -vactor -vaccarello -vacarro -uzzo -uutela -utzig -useted -urtz -urtiz -urtiaga -urteaga -urquides -urmston -urmos -urbany -urbaez -uptmor -upole -uphold -uoy -unverzagt -unvarsky -unterseher -unterman -unglesbee -underdue -uncapher -umeh -ulven -ulvan -ulshafer -ulsamer -uljevic -ulbricht -ulabarro -ujano -uimari -uihlein -ugolini -uglum -ufford -ueckert -udani -uchiyama -ubl -ubaldo -tyrie -tyndal -tyms -tylwalk -tyeryar -twilligear -twidwell -twardy -tuzzio -tutterow -tutaj -turziano -turzak -turtura -turtle -turrietta -turns -turnell -turneer -turnbill -turello -turbacuski -tupaj -tupacyupanqui -tuomi -tuomala -tuohey -tuning -tumolo -tuman -tullar -tulino -tuggerson -tuckerson -tucke -tuchy -tucek -tucciarone -tuamoheloa -tuai -tua -tsu -tsironis -tsing -tsiatsos -tsemetzis -tscrious -tsau -tsasie -tsakonas -trypaluk -trygg -truxell -truver -trusso -trush -trusello -truocchio -truncellito -trumps -trumper -trumbley -trulli -truhe -truglia -trufin -trudnowski -trudics -trudgeon -trucks -trucker -troyano -troyani -trouser -trotty -tronaas -tromley -tromburg -troller -trojecki -trojahn -troike -troidl -troge -trofholz -trochesset -trish -trio -trinkley -trinkl -tringham -trindle -trimnell -trilli -trill -triguro -trigueros -triece -trider -trexel -trewin -trewhitt -treuter -treutel -trettin -trett -treso -trenton -trentini -trenholme -tremel -trell -tregan -trecarichi -trbovich -traverse -traunfeld -trapanese -tramp -tramm -trajillo -trahin -traher -tradup -toyne -toyama -townzen -towber -toussiant -tousom -tourtelotte -touma -toulmin -touhy -tottingham -totter -tott -totosz -toti -tota -tostanoski -toso -tory -torreson -torreon -torrell -torralva -torno -torngren -tornese -tordsen -torbit -torbeck -toppins -toppen -toppah -topolinski -toplk -topliss -toplin -topinka -topi -toomsen -tools -toof -too -tonic -toniatti -toni -tongren -tonche -tonas -tomsick -tomsche -tomopoulos -tomkowicz -tomasko -toliongco -toleston -tokunaga -tokita -tohonnie -tognetti -toevs -todora -todahl -tod -tocher -tocchio -tobosa -tobiason -tjepkema -tizon -tixier -tiwald -tittl -tisue -tisinger -tisa -tirona -tiro -tirk -tirino -tiotuico -tinnea -tinin -timone -timber -tilleman -tille -tiley -tijing -tigg -tiffner -tietjens -tieger -tidrington -tidrick -tibwell -tibolla -tibbit -tiangco -tian -thyfault -thurstonson -thundercloud -thuman -thrun -thrill -thorsten -thornquist -thorner -thormina -thormer -thoran -thomspon -thoeny -thoennes -thoele -thoby -thillet -thiesse -thibedeau -theuner -thessing -therurer -thero -theo -themot -them -thein -theim -theiling -theesfeld -theaker -thaniel -thamphia -thammorongsa -thalheimer -thain -thaemert -thackxton -thackrey -thackery -teyler -tewmey -tevada -tetz -tetteh -tetro -tetreau -testman -tessner -tesoriero -tesnow -tesauro -tersteeg -terrett -terrero -terrence -terrall -terr -terkelsen -terbush -teranishi -tepperberg -tentler -tenor -tenharmsel -tengwall -tenerowicz -tenebruso -tendick -tencer -ten -temoshenka -telman -tellinghuisen -telega -telchik -tejeiro -teitel -teichrow -teichmiller -tegtmeier -tegenkamp -teet -teeples -teepe -tebow -tebbetts -tebbe -tease -teach -tayo -taymon -taylan -taydus -tavolario -taves -tauteoli -tatu -tatsak -tatnall -tates -tasto -tasse -tashman -tartar -tarsis -tarris -tarricone -tarran -tarner -tarbor -tarbet -tarasuik -taraschke -taps -tappis -tapio -tapat -tapales -tapaha -taomoto -tanzosch -tanzman -tanweer -tanoue -tanori -tanon -tannazzo -tanker -tanke -tango -tanen -tandon -tandetzke -tancer -tamminen -tamiya -tameron -talladino -taliulu -talburt -talboti -talat -talamas -takiguchi -takenaka -tak -tahir -tagliente -taglialatela -tagge -tagami -tafuri -tafreshi -tacderen -taccariello -tacata -tacadina -tablada -tabet -taberski -tabbaa -taake -szypowski -szynkowicz -szymula -szychowski -szwarc -szuszkiewicz -szumny -szumilas -szumiesz -szuch -szuba -sznejkowski -szmidt -szlosek -szigethy -szenasi -szczurek -szczesniak -szalankiewicz -szalai -szal -szaflarski -syrstad -syrop -synowiec -synakowski -symore -symon -syddall -sybounheuan -swonke -swisshelm -swiller -swenton -swell -sweley -sweger -swefford -sweere -swee -swedeen -sweazey -swearngen -swaynos -swatloski -swatek -swary -swartley -swarr -swarn -swarb -swarat -swanzy -swantner -swantko -swanteck -swanick -swaine -swadling -svob -svensen -sutt -suto -sutherburg -susmilch -susla -susko -susan -surridge -surran -surkamer -suon -suominen -suneson -sundman -sumstad -sumruld -sumey -sumbera -sumaran -sultaire -sully -sulloway -sulkowski -sulc -sukut -sukup -sukovich -suihkonen -suga -suffern -sueyoshi -suet -suennen -suellentrop -sueda -suddath -succop -sub -sualevai -styler -stvictor -stuzman -stusse -sturwold -sturino -sturiale -sturdnant -stupke -stumm -stumb -stukel -stufflebean -stuever -stuessy -stuedemann -stueckrath -stueck -studwell -stubler -stubbert -strzyzewski -strzelczyk -strutynski -struckmann -struber -strow -stropus -strople -stroot -strohecker -string -strimel -stright -striffler -stridiron -stricklan -strem -streller -strekas -strek -streitz -streitenberge -strech -streat -strazzullo -strawberry -stratter -strathmann -strassell -strassberg -strangstalien -stoyanov -stouten -stoutamyer -stotelmyer -stoskopf -storton -storbeck -stoppenbach -stoot -stoor -stonewall -stonefield -stolzenberg -stollsteimer -stokel -stohs -stohrer -stofferahn -stoermer -stoen -stoecklin -stockhoff -stockburger -stoakley -stoa -stlucien -stitz -stittgen -stitch -stires -stippich -stinser -stinemetz -stinde -stinar -stimus -stiliner -stilgenbauer -stifflemire -stickfort -sticher -stibb -stewardson -stevison -steube -sternod -sterger -steptore -steppig -stepleton -stephanski -stephano -stepchinski -stepanik -stepaniak -stenslien -stenslie -stengle -stengele -stendal -stempert -steman -stelmach -steitzer -steinworth -steinway -steins -steinour -steinmiller -steinhouse -steinhour -steinger -steindorf -steinau -steinacker -stegmann -steff -stefansky -steensland -steenrod -steenland -steeby -stech -stealy -steagell -steadings -steach -stawasz -stavsvick -stavrides -stavish -stathes -state -stassinos -stasser -stasio -stasa -starzynski -starritt -starring -starnold -starchman -starch -starace -stapelton -stanuszek -stanovich -stankovic -stankey -stanislaw -staniforth -stanier -stangarone -stanganelli -standlee -standerwick -standback -stancombe -stancer -stancato -stammel -stambough -stallones -stakelin -stagnitto -stafiej -staffon -staffieri -staffen -stade -stachniw -stachnik -stacer -staber -stabell -staback -staadt -spunt -spueler -spruit -spruel -spriggins -spratlen -sprain -sprafka -sportsman -sports -sporle -spoerl -spoerer -splonskowski -splinter -splane -spizzirri -spinoso -spinka -spiney -spine -spindola -spindle -spinas -spilski -spielmaker -spiegle -spevacek -sperrey -sperger -sperduti -speranza -sperandeo -spender -spena -spella -speith -speis -speiden -speidell -speese -specter -speake -speagle -spaun -spara -spanton -spanswick -spannbauer -spana -spaide -spadlin -sowash -sovey -sovak -souvannavong -souvannarith -souvannakhiry -souser -soulek -soukkhavong -soucek -sottosanti -sotlar -sotak -sossong -sosso -sosinsky -soscia -sorotzkin -sorokin -sorman -sorgatz -soren -soravilla -sor -soprych -sopata -soorus -sookoo -sonnenburg -sonkens -sondrini -sondelski -somsana -sommerdorf -sommella -solverson -soltren -soltes -solonika -solomons -sollock -sollman -solle -solimeno -soliece -solgovic -soldow -solas -solarz -sokorai -sokolik -soisson -sohrabi -soho -sogol -soga -sofka -sodomka -sodachanh -sochocki -socci -sobrowski -sobrino -soboleski -soberano -sobba -sobania -soans -snuffer -snowdon -snowdeal -snoderly -snock -snitker -snith -sniff -snedeger -snearly -snachez -smurthwaite -smolski -smithmyer -smithen -smithberger -smisek -smily -smiglewski -smietana -smialowski -smeltz -smelko -smeenk -smedsrud -smayda -smaw -smarsh -smalt -smalarz -slutzky -sluis -sloup -slotkin -slosek -sloon -slomski -slocombe -slockbower -slisz -slinsky -slicer -sleek -slayman -slavis -slatin -slanina -slagel -sladky -sladek -skyberg -skwara -skursky -skurski -skura -skrobacki -skretowicz -skorepa -skomo -sknerski -skinsacos -skillom -skillen -skibosh -skibisky -skewis -skene -skender -skalecki -skafec -sixon -sivia -sivert -sitto -sita -sissman -sisneroz -siskey -sischo -sirwet -sirucek -sirrine -sirnio -siriani -sirek -sippial -sionesini -sioma -sinkiewicz -sininger -singuefield -sings -singhisen -singeltary -singco -siner -sindt -sindorf -sindoni -sindel -simzer -simunek -simplot -simpelo -simonetta -simonett -simoneavd -simmelink -simlick -simkowitz -simino -simers -simer -simcic -simank -silverwood -silverhorn -silquero -sillitti -sillery -silla -silker -silerio -silagy -silago -sikorra -sikkila -sikel -sikat -sikander -sigworth -signorino -sigafoos -siewers -sievel -sierzenga -sierer -siepker -siena -sien -siegfreid -siegers -siefkes -siefferman -siebel -sidles -side -siddiq -sida -sickmeir -sickendick -sichler -sicheneder -sichel -siangco -siad -shymske -shutte -shutes -shurkus -shumay -shukert -shuhi -shuga -shuckhart -shryer -shroeder -shrimplin -shrier -shrefler -shrake -shoyer -showden -shouts -shoto -shonts -shoeman -shoddie -shirilla -shird -shirai -shipwash -shiplet -shipler -shintani -shinney -shinko -shindorf -shimonishi -shimanuki -shiller -shiiba -shigemitsu -shigematsu -shifley -shifflette -shiever -shido -shidemantle -shidel -shibahara -shey -shevenell -shetz -sheskey -sherratt -sherif -sherfy -sherbo -shepp -shenberger -shenassa -shemper -sheltrown -shellum -shellnut -shellhorn -shellgren -shelenberger -sheive -sheasby -shearier -shearhart -shawler -shawaiki -shaull -shau -shatt -sharratt -sharrai -sharpsteen -sharpey -sharley -shariff -shariat -sharar -shapin -shansky -shannonhouse -shangraw -shammaa -shamapande -shalam -shaker -shahinian -shaginaw -shaggy -shafto -shafi -shaer -shae -shadix -shadburn -sfera -sfatcu -seymoure -sey -sewester -severyn -seutter -seuss -seufer -settecase -sespinosa -servey -servano -serum -sertuche -sert -serro -serret -serre -sermon -sermania -sergovia -seremet -serabia -ser -sephton -sep -senta -sensenbach -senneker -senk -senion -senemounnarat -seneker -semo -semenick -seltrecht -sellar -seliski -selis -seligmann -selia -selestewa -selem -sele -selca -selbert -selbe -sekerak -sejkora -seiz -seiver -seirer -seilhymer -seiley -seiger -seigart -seifts -seiffert -seidle -seide -seiberlich -segota -segobia -seewald -seepersaud -seen -sedy -sedtal -sedotal -sedler -sedlachek -secreto -secora -secky -seckington -sebestyen -sebers -searchwell -searchfield -searcey -seanor -sean -seamen -sealander -seaford -scullion -scrudato -scronce -scrobola -scribellito -scozzari -scoresby -scolnik -scoh -scoble -sclavi -sciuto -scisco -scigliano -scieszka -scierka -scibetta -sciavillo -sciarini -sciancalepore -schwuchow -schwoyer -schwoerer -schwien -schwetz -schwertfager -schwentker -schwent -schwendinger -schwemm -schweiner -schwarzenberg -schwartzer -schwarten -schwanebeck -schwanbeck -schwallie -schwald -schuyleman -schustrich -schurer -schuppenhauer -schumucker -schumans -schuiling -schueth -schuckert -schuchmann -schuble -schub -schroy -schromen -schroeppel -schroedel -schreur -schreimann -schrecker -schouweiler -schou -schornick -schoreplum -schooling -school -schoo -schontz -schoninger -schoneck -schone -schonaerts -schomberg -schollmeier -schoepflin -schoenegge -schoeneck -schoeller -schoebel -schnitman -schnetter -schnelzer -schneidmiller -schnair -schnabl -schmuff -schmoldt -schmider -schmeer -schlussel -schlissel -schlett -schlesner -schlesener -schlepphorst -schlepp -schlechten -schlaack -schiveley -schirm -schimanski -schilmoeller -schille -schilawski -schiffner -schiffert -schiedler -schickler -schiappa -scheuring -scheule -schepker -schenz -schenkelberg -schembri -schembra -schellhorn -schellenberge -schelle -scheitlin -scheidecker -scheibner -scheiblich -schehl -schefers -schee -schearer -schaubert -schattschneid -scharich -schares -scharber -schappach -schaneman -schamberger -schak -schaetzle -schaecher -scerbo -scelba -scavona -scatton -scarsdale -scarr -scarpone -scarlata -scariano -scandurra -scandura -scandalis -scammahorn -scafuto -scaffe -scachette -sayyed -sayko -sayco -sayasane -sayaphon -sawney -sawdo -sawatzke -sawallich -savko -savka -savitts -saviola -savio -savine -savich -savells -saulpaugh -saulino -sauler -saugis -sauber -sau -saturnio -sattel -satomba -saterfield -satava -sasseville -sasahara -sarzynski -sartorius -sartore -sartell -sarsour -sarson -sarp -sarnosky -sarni -sarlinas -sarka -sarinsky -sarin -sardo -sarden -sarchett -sarault -sarate -sarao -sarantakis -saralegui -sapper -sappah -sapinski -sapardanis -sapara -sanyaro -santwire -santrmire -santoriella -santor -santomassimo -santisteban -santillanez -santamarina -sansotta -sanpson -sannutti -sankoh -sangasy -sanfelix -sandvill -sandus -sandstede -sandling -sandland -sandhop -sandeen -sandblom -sanday -sandager -sancrant -sancken -sanchirico -sancher -sances -sanberg -sanacore -samyn -samul -samrov -samrah -sampere -sampang -samland -samii -samiento -sames -sambrook -samborski -samberg -samaroo -salzl -salvio -salvati -salvadge -saluan -saltzberg -saltus -saltman -salstrom -salotti -salmonsen -sallmen -salle -sallach -salines -salesky -saleme -saleha -saldano -salb -salazak -salasar -salado -salach -sakumoto -sakamaki -sajovic -sajous -sainte -sainliere -sainato -sails -saik -saieva -saice -sahe -sahady -sago -saft -safier -saffo -safer -saether -saens -saeler -saelens -sadvary -sadoski -sadorra -sadolsky -sadin -sadik -sadeghi -sadat -sacramed -sachetti -sacchi -sacca -saberi -saarela -saadat -saabatmand -rzeczycki -rysz -rynkowski -rynerson -ryneer -rymut -rymes -rymasz -rylaarsdam -rykaczewski -ryen -ryea -rydin -rydelek -rydel -rydeen -rybinski -ruvalcava -rutski -rutske -rutman -rutkin -ruths -ruthman -ruthers -rutheford -rutgers -rutenberg -rutar -russwurm -russomano -russomanno -russer -russello -rushanan -rusen -ruschmeyer -rusaw -rupnick -rupley -rupinski -ruopoli -rumps -rumbach -rulapaugh -ruivo -ruiter -ruhoff -ruhn -ruhman -ruggirello -ruffell -ruffel -ruezga -ruesga -ruelar -ruehter -ruehling -ruehlen -ruedas -rued -rueck -rudoy -rudio -rudh -rudell -rudat -rudack -ruckey -ruckel -ruckdaschel -rubsam -rubie -rubick -ruberti -rubeo -rubenfield -rubenfeld -rubash -rubalcave -rozzelle -rozon -royle -roxbury -rowlison -rowels -rowbotham -rovell -rouw -routzen -routzahn -routte -rousso -rousell -rous -rounsville -rouly -roulhac -roulette -roule -rouhoff -roughen -rouch -rottinghous -rottier -rotruck -rotkowski -rotkovecz -rothfeld -rotherham -rotch -rotanelli -rosul -rossie -rossen -rosseel -rosky -rosian -rosher -rosewall -roseum -roseth -rosenwinkel -rosentrater -rosenlof -rosenhagen -rosengren -rosendorf -rosendale -rosenbush -rosemore -rosek -rosebur -roscup -rosca -rosboril -rosazza -rosane -rorabacher -ropka -roofner -ronsini -ronnie -ronnfeldt -ronn -ronero -roner -ronayne -rona -ron -romprey -rommelfanger -romkema -romiro -romay -romanowicz -romanov -romanoff -romaniszyn -romanek -romane -rollf -rollag -rolfson -rolack -rokicki -rohrdanz -rohdenburg -rohal -rogowicz -rogish -rogian -rogens -rogado -roesslein -roesing -roerig -roenigk -roelle -roehler -rodvold -rodrigres -rodregues -rodolph -rodkin -rodiquez -rodina -rodero -roderman -roderiquez -rodenizer -rodenbough -rodebush -rodde -rocle -rochlitz -rochkes -rocheford -robyn -robusto -roberston -robbie -robbert -robberson -robair -roam -roadruck -roades -roaden -roadarmel -rizzardi -rivinius -riveras -rivello -rivelli -rivadulla -rittinger -rittie -rittichier -ritthaler -ritmiller -riskin -risien -rishor -risatti -ripson -ringold -ringen -rinfret -rineheart -rindal -rincan -rinauro -rinaldis -rina -rimkus -rimi -rimel -rimbach -rily -rillie -riller -rihner -riherd -rigley -rightmyer -righthouse -riggert -riggers -rigerman -rigas -rifai -riesner -rienzo -riemersma -riefer -ridgebear -rides -ridell -ridall -ricucci -ricley -rickerl -richemond -richelieu -richel -richardville -riccitelli -ricciardelli -ricardez -riblett -ribar -riase -rian -rhym -rhule -rhude -rhondes -rhodehamel -rhim -rheingold -rheaves -reznick -reynero -revolorio -revette -revelo -reuven -reusswig -reusser -reuhl -reuber -rettele -retka -retersdorf -resseguie -resper -resner -resides -reshard -resek -reseigh -repaci -renzullo -renuart -rentfrow -rennemeyer -renneker -renkes -renier -rendle -renburg -remsburg -remos -remmie -remmick -remlin -remkus -remfert -remey -remerez -remedies -remaly -relph -rellihan -relles -relaford -reksten -rekas -reitzes -reiten -reitema -reisin -reinmann -reinicke -reinholdt -reinheimer -reinfeld -reineman -reineking -reinartz -reimel -reik -reihe -reidling -reidler -reichenberg -reichenback -reho -rehnborg -rehnberg -rehart -regusters -regulus -reglin -reginal -reges -regensburg -regen -regas -reevers -reever -reeter -reedholm -redle -redic -redfear -reddekopp -rechel -rebick -rebholz -reazer -reauish -reath -reasinger -reas -reary -realmuto -reager -readenour -razze -rawicki -rawhoof -ravi -ravetti -ravenscraft -rava -rauf -rauelo -rattee -rattay -rattanachane -rattana -rathmanner -rathgeber -rathe -rathbum -rasul -rastogi -rastelli -rassman -rasmuson -rasely -raschko -raschilla -rasche -rasanen -rary -raring -raridon -rarey -raquel -rappenecker -rapelyea -ransier -ransberger -rannalli -ranjel -ranford -randoll -randklev -ramy -ramundo -ramu -ramsuer -ramstad -ramsbottom -ramphal -ramnarine -rammer -ramiscal -ramgel -ramesar -ramento -rambeau -ramales -ralon -rallison -rakich -raith -raiola -rainwaters -rainbott -raimundo -raimer -raimann -railing -rahl -rahama -ragusano -rafla -rafiq -rafi -raffone -raffo -rafail -raelson -raehl -raebel -radway -radue -radona -radisovich -radics -rademan -radeke -radder -radden -rackow -racitano -racina -rachar -racanello -rabuck -rabkin -rabidoux -rabello -rabel -rabara -qunnarath -quirindongo -quintel -quintano -quinlin -quinchia -quincel -quilling -quillian -quilliam -quillens -quihuiz -quiett -quicksall -quest -querta -querido -quent -quealy -quaye -quante -quamme -qualia -quaker -quagliano -quader -pytlewski -pyo -pylvainen -pyland -pych -py -puyear -puulei -puthiyamadam -putalavage -purzycki -purkerson -purcella -purce -puppe -pupa -pullon -pullie -pulgarin -pulford -pujals -puiatti -pugeda -puffett -puffenbarger -puertas -puddy -pucio -pucella -ptaszynski -psomiades -psencik -przybysz -przybycien -przedwiecki -pryzgoda -prvitt -pruskowski -prugh -prudent -prudden -provazek -protasewich -protain -proo -prondzinski -prokes -prohonic -progacz -proescher -prodan -privatsky -privateer -priore -prinzing -prinzi -printers -prigmore -priewe -prier -pribbeno -prezzia -preyor -prewer -prevett -preuitt -prepotente -prence -prekker -preisach -precythe -prebish -preato -prchlik -prazeres -prazak -prauner -prattella -prati -prat -prasser -prasomsack -praml -prabhakaran -prabel -poyneer -powroznik -powal -poux -poullion -pouliotte -pottier -potthast -potocnik -poties -poths -postuci -postal -posso -poser -portwine -portune -portaro -porrello -porreca -porrazzo -poremski -pore -porcello -popple -poppert -popowski -popovec -popke -popik -popielarczyk -popick -popi -poper -popelka -popec -poortinga -poorte -pooni -ponyah -pontin -pomerance -pomar -polynice -polyak -polverari -poltorak -polovoy -pollmann -pollio -pollinger -pollacco -polivka -polian -poleyestewa -polera -poldrack -polcovich -polakoff -polakis -poladian -pokorski -poiter -poffenroth -poetzsch -poeschl -poeschel -poepplein -poepping -poeling -podvin -podsiad -podrasky -podlas -pode -podbielski -podany -pochiba -pocchia -poalino -poaipuni -plymire -plyer -pluvoise -plungy -pluid -ploude -plosker -plomma -plohr -plocica -pliler -plevin -plessis -plesnarski -plesha -plenskofski -plecker -platenburg -platas -plansinis -plana -plamer -placencio -pizzolato -pizur -pius -piurkowski -pituch -pittillo -pitel -pitcak -piszczatowski -pisula -pishner -pirner -pirillo -pippert -pipe -pinyan -pinsonnault -pinnt -pinkelton -pinena -pinela -pineault -pinault -pilotti -pillips -pilbin -pilati -pikey -pih -piguet -pigna -pigler -pigat -pietzsch -pietrafesa -pieters -pierzchala -pierrie -pierfax -piercefield -piedmont -piedigrossi -piede -piechoski -piearcy -pidcock -picolet -pickren -pickings -picht -picco -pi -phomphithak -phommatheth -phlieger -phippen -philpotts -phillipi -philippon -philipose -philben -pherson -pherguson -phatdouang -phanthauong -phanord -pfirsch -pfendler -pfannenstein -pfahlert -pfahler -pezzuto -pezzimenti -pexton -pexsa -pewo -pevsner -petzel -petts -pettner -pettinella -petticrew -pettibon -pettes -petrov -petrosyan -petron -petrocelli -petrocco -petrizzo -petris -petrino -petricone -petralba -petrakis -petrain -petkoff -petitjean -petges -peteuil -petet -petersdorf -petchulis -pestronk -peskind -pesenti -pertsovsky -personette -persia -persampieri -persall -pers -perre -perper -perolta -perng -perler -perkoski -perish -perilloux -perey -peressini -percontino -perciballi -peral -peppas -pepitone -penzero -pentico -pent -penski -pense -penrice -penoyer -penovich -pennimpede -pennigton -pennig -penisson -pendl -pendill -penceal -penatac -penasa -penanegra -pelman -pelligrini -pelliccia -pellant -pelkowski -pelak -pein -peightell -pegler -pegelow -peffers -peetz -peelman -pee -pedrin -pedlow -pedelty -pede -peddy -peckinpaugh -peckens -pecht -pechin -peche -peccia -peca -peaker -pazik -pazderski -pazan -payno -payenda -pawluk -pawlosky -pawell -pavlikowski -pavlides -pavish -paviol -paulick -paukert -pattum -patrylak -patronella -patrich -patriarco -patraw -patierno -patient -patience -paten -pastorin -pasternack -pastano -passaro -pasqualino -paskoff -paskin -paskiewicz -pashel -pasey -pascher -pasaye -pasanen -parvis -partmann -parthemore -parshotam -parsens -parraga -paronto -paroda -parobek -parmann -parmalee -parlet -parle -parkers -pariente -paree -pardey -parde -pardall -parbs -parbol -paranada -parah -parado -pappy -pappenheim -paplow -papka -papich -papi -papallo -paolicelli -panzarella -panyik -pantle -pantera -pantalone -pansullo -panone -pano -panny -pannenbacker -pankiewicz -pankhurst -panke -pankau -pangan -panessa -pandolfi -pandiani -panchik -panchak -panakos -panak -panagakos -palubiak -palso -palowoda -palmucci -palmour -palmino -palmerino -palme -pallino -pallerino -palisi -palisano -palis -palazzola -palay -palaspas -palamara -paladini -paladin -paire -paillet -pailet -paider -paguin -pagoda -paglione -paglialunga -pageau -pagdanganan -pafundi -padiong -padberg -padarebones -padalecki -pacol -pacilio -pachter -pachew -pabelick -paaske -ozzella -owoc -owca -ovitz -overmann -overlee -overhulser -overholtzer -ovens -ovall -outhier -ouren -ouinones -ottum -ottomaniello -otteman -otsman -otinger -oszust -ostorga -ostolaza -osterhouse -osterberger -ostberg -ososki -osmers -osmera -oshey -osequera -osenkowski -oschmann -osbment -osbey -osazuwa -osayande -osako -orzell -orvin -ortwine -ortmeyer -ortelt -ortelli -orsten -orson -orrill -orphey -orndorf -orloski -orlich -orlander -orland -ork -orji -orison -orielly -orielley -ori -organek -orey -orender -ordona -ordon -ordman -orazine -oravetz -orandello -orabone -ora -or -oquenda -opyd -opteyndt -opoka -opiola -opielski -opell -opeka -onyeagu -onezne -ondeck -ona -oms -ommen -ominelli -omernik -omelia -olynger -olwin -olvey -olufson -olubunmi -olten -olshefski -olsby -olores -olma -olli -ollech -ollar -oliviera -olivarri -oligschlaeger -olheiser -olgin -olevera -olerud -olenski -olenius -oldow -oldershaw -oldenburger -olausen -olaes -okutsu -okken -okitsu -okie -okeson -okelberry -okel -ojito -ojano -ohyama -ohr -ohnstad -ohmen -ohlhauser -ohlensehlen -ohle -ohashi -ohanley -ogzewalla -ogutu -ogston -ogrodowicz -oginski -ogiamien -oger -ogarro -ofsak -oflynn -off -ofer -oelze -oehm -oehlschlager -oehl -odome -odo -odmark -odil -odgen -odermott -odair -oczon -ockman -ockleberry -ocken -ochal -ochakovsky -ocenasek -occhuizzo -ocanaz -obrein -obray -oborne -oblinski -obin -obierne -obholz -obhof -oberski -obermier -oberlies -obergfell -obenauer -obeid -obbink -obaker -oatney -oatfield -nyulassy -nwagbara -nutley -nuth -nurthen -nuntaray -nunno -nunlee -nuner -numkena -nuhfer -nugal -nuessen -nuding -nuchols -noye -noya -nowosielski -novickis -novi -novencido -novel -novad -noujaim -notoma -notice -noth -notch -notarnicola -nosworthy -nosacka -norum -northouse -nortesano -norstrand -norsingle -norrie -norr -norn -normoyle -norise -nordstrand -nordmark -nordes -norales -nopachai -noorda -nooman -nonroe -nonemaker -nonamaker -nommay -noman -nollet -nolle -noli -noice -noerr -nodland -nocon -nocks -nockels -nocella -nocek -njie -nizo -nitchman -nistendirk -nissan -nisly -nishitani -nishio -nishina -nirschl -niro -nirenberg -niquette -nip -nindorf -nincehelsor -nimz -nimura -nilmeier -nikula -nikach -nik -nightwine -night -nighman -nighbor -niffenegger -niez -niesporek -nier -nieminen -niemie -niedermeier -niederberger -nido -nicome -nicolozakes -nicolia -nicoles -nicolau -nickodem -nicklous -nickisch -nicka -nici -nibler -nibbe -nhatsavang -ngoun -neyer -newmyer -newitt -newgard -newenle -newbraugh -newbound -newand -nevue -nevison -nevis -nev -neujahr -neufer -nette -netkowicz -nethkin -nesvig -nestico -nessner -nesslein -nesset -nessel -neshem -nesbeth -neris -nerenberg -neren -nepomuceno -nemith -nelder -neitzke -neita -neiner -neimeyer -neigenfind -neiford -neidenbach -nehlsen -negreta -negrana -neenan -neddenriep -nech -neborak -nebesny -nazar -nawfel -navo -navarete -nauss -naumes -naugler -nauer -natvig -natalizio -natalie -natalia -nastasia -nasaire -naruaez -narrow -narkevicius -nardozzi -nardino -narain -napue -napenas -nap -naomi -nao -nanz -nantwi -nannen -nang -nanfito -nanes -nan -namsaly -namey -namer -namauu -namanworth -nalevanko -nalder -nakaoka -nakamatsu -nakajima -nakada -nakaahiki -naimoli -nahmias -nahhas -nagtalon -nagelkirk -nagasawa -naftel -nadine -naderman -nachbar -nacci -nabzdyk -nabor -nabavian -nabarowsky -naasz -myslim -myree -mylar -myall -muzii -muyres -muwwakkil -mutters -mutschelknaus -musulin -mustaro -mustache -musslewhite -mussell -mussa -musni -muslim -muskrat -muskopf -muskett -musitano -musilli -musielak -musguire -musgraves -muscott -muschik -muschaweck -mursch -murril -murra -muros -muri -murel -murcko -murak -muphy -muntean -mundz -mundinger -munder -mumaugh -mulville -mulrenin -mulnix -mullenaux -mullahy -mulkern -mulkerin -mulchrone -mulato -muinos -muhlstein -mugnolo -muggeo -mugge -muffett -muenzenberger -muellerleile -mudie -muckelroy -muccio -mrvan -mrkvicka -mraw -mozick -mozga -mozak -moxness -moxey -mounkes -mound -motonaga -mothershead -motayne -motayen -mosty -mostad -mossbarger -moskwa -moskop -mosena -mosen -moscoffian -moryl -morvillo -mortin -mortier -morsberger -morrey -morrales -morral -morphy -morock -morlino -morkert -morken -morisseau -morishito -morinville -morici -morgano -morgana -moreschi -morenco -morence -morella -mordeci -moratto -morath -morario -morando -moradian -morada -mootry -moomey -monville -montoto -montore -montoney -montfort -montey -montesi -monterrubio -montembeau -montayes -montalban -montaivo -monsay -monot -monopoli -monnerjahn -monkowski -monka -monjure -monios -monington -monges -monfils -moneyhun -moneaux -mondt -mondoza -mondloch -mondelli -mondale -monclova -moncher -monath -monagas -mominee -moma -molz -molstad -molsan -molnau -mollura -molleur -molla -molands -moitoza -moisa -moine -mohrlock -mohre -mohomed -mohmed -mohair -mogus -moeuy -moeser -moehr -moehle -modique -modgling -modglin -moderski -moczulski -moccasin -moayyad -moatz -mlodzianowski -mleczynski -mizwicki -mizutani -mizia -mizenko -miyataki -miyanaga -miville -mitsdarffer -mitrani -mitman -mitkowski -misuraca -miskinis -miskiewicz -miska -misik -mishulovin -mishulouin -mishkin -mishar -misenti -mischo -mischnick -mirisola -miricle -mirick -miramontez -mirafuentes -miraflores -miquel -mione -minzy -minzenmayer -minzenberger -mintken -minten -minot -minors -minn -minkowitz -minkins -minister -minic -minhas -mingioni -mingee -minert -minchow -mincer -minalga -mimozo -milward -milson -milosch -millings -millick -millare -milke -milinazzo -milin -milich -milette -mile -mildrum -mildon -milcher -milberger -mikuszewski -miklitz -mikko -mihalios -mihalick -mieth -mierzwiak -mierzwa -mierow -mierez -mierau -mielcarek -miecznikowski -miears -middlekauff -micucci -mickelberry -michno -michlich -michieli -michelstein -michelini -michalicek -michal -micciche -micalizzi -mguyen -mezzina -mezzenga -meydid -meusel -meusa -metty -mettig -mettenburg -metier -meth -metelko -mestemacher -messamore -mesplay -mespelt -mesiti -mesina -meshyock -mesenbring -meschke -merzlak -merrih -merner -merkwan -merklein -merkey -meringolo -merine -mergist -merganthaler -merckling -menzer -mensalvas -mennecke -menne -menjiva -mengwasser -menger -menedez -meneal -menck -mencia -menchen -menchavez -melzer -melve -melso -meloan -melman -mellison -mellerson -mellendorf -mellberg -melikian -melian -melgaard -meleo -melbye -melber -meja -meixelberger -meitz -meitner -meiss -meisch -meinen -meinberg -meigel -meierhofer -mehringer -mehrer -mehle -mehall -megahan -mega -mefferd -meenan -meecham -medvec -medinger -meddock -medawar -medaries -mecias -mecannic -meazell -measom -meaden -meach -mcwhinnie -mcwhinney -mcwells -mcvinney -mcvenes -mcthige -mcthay -mcshaw -mcroyal -mcrenolds -mcratt -mcquilliams -mcquesten -mcphetridge -mconnell -mcnolty -mcneish -mcnany -mcnamar -mcmullins -mcmulen -mcmenimen -mcmellen -mcmanuis -mcmanemy -mclernon -mclauren -mclamore -mckusick -mckosky -mckirryher -mckindra -mckin -mckever -mckernin -mckerlie -mckennzie -mckelvin -mckelphin -mckeague -mckaughan -mciwraith -mcilhinney -mchardy -mcgurie -mcgrevey -mcgreen -mcgohan -mcglocklin -mcglew -mcglaun -mcgibney -mcghinnis -mcgaughan -mcgathy -mcferran -mcfeely -mcfatten -mcewin -mcendarfer -mcenany -mcelvy -mcelmarry -mceathron -mceaddy -mcdugle -mcdoulett -mcdaneld -mcculloh -mccullin -mccullan -mccullagh -mccubrey -mccrobie -mccrain -mccraight -mccracker -mccrabb -mccowin -mccoubrey -mccoon -mcconomy -mcconnico -mcconahay -mccomish -mccoid -mccloude -mcclinsey -mcclenic -mcclee -mccier -mccathran -mccash -mccarvy -mccarrol -mccarraher -mccalpane -mccalebb -mccalanahan -mccade -mccadams -mcbroome -mcaskill -mcartor -mcaree -mbonu -mazzillo -mazzetti -mazuera -mazowieski -mazierski -mazella -mayze -maywalt -mayher -mawk -mavris -maushardt -mauras -mauracher -maupins -matysiak -matye -matusz -matuska -matusiewicz -matulewicz -mattock -mattingley -mattina -mattick -mattan -matskin -matros -matrisciano -matone -matonak -matlow -matkovic -matison -mathelier -matelski -mateiro -masunaga -masterton -mastalski -massini -massena -massed -massarelli -massanelli -maso -maslen -maslakowski -masincup -masilko -masher -mashall -masello -masell -maschmeyer -mascheck -maschak -mascari -masar -masak -masaitis -marxsen -maruschak -maruscak -marus -marumoto -martyr -martsolf -martorelli -martling -martischnig -martirano -martinsons -martinov -martinon -martinolli -martinet -martinell -martinel -martinat -martich -martey -martelles -martelle -marsolais -marsili -marshbanks -marshak -marseilles -marsaw -marrier -marrett -marrapodi -marrapese -marquitz -marousek -maronge -maro -marmerchant -marlene -markworth -markwardt -markuson -markou -markakis -marjenhoff -maritato -mariska -mariacher -margot -margis -marflak -marfil -marer -mardirossian -marcusen -marconis -marcisak -marcille -marchionni -marchesi -marchaland -marcet -marcelli -marca -marbley -marash -marascalco -marante -marangoni -marando -mapua -mapstone -mapa -maohu -manzur -manweiler -manuia -manto -mantifel -mantia -manteuffel -mantella -manteca -manspeaker -mansbach -manous -manoso -manolis -manocchia -mannheim -mannello -manlangit -manino -manieri -manicchio -maniar -maniaci -maniace -manglona -mangis -mangiafico -manghane -manero -manely -maneafaiga -mandril -mandolfo -mander -mandelberg -mandala -manco -mancill -mancher -manche -manaugh -manassa -manasares -manansala -manalili -mamudoski -mammo -mammenga -mamaril -mamaclay -malueg -malter -maltbia -maltas -malool -mallas -mallalieu -mallacara -malkiewicz -malinovsky -malewski -malett -maldomado -malcomson -malcik -malavet -malaver -malasky -malas -malango -malanaphy -malach -makofsky -mako -makler -maka -majuste -majied -majeske -majerowski -majera -maixner -maisto -maiocco -mailo -maile -maikoksoong -mahunik -mahrer -mahraun -maholmes -mahlke -mahli -mahfouz -maheia -mahalko -magwire -magpuri -magoun -magnone -magnetti -magliulo -magliolo -magliocco -magitt -magginson -maggert -magera -maged -mage -magbitang -magalong -magaha -maffitt -maffey -maestri -maenpaa -maenhout -maendel -mady -maduro -madu -madray -madras -madock -madlung -madler -madenford -madeau -maddaleno -macvean -macura -macrum -macrostie -macnaught -macnamee -macmurray -macmillen -maclay -mackle -mackimmie -mackedanz -maciejko -maciasz -maciak -machtley -machens -macentee -maceda -macdougald -maccauley -maccartney -macareno -macaraig -macapagal -macahilas -macadamia -mabone -mabary -maatta -maalouf -lysak -lynge -lynady -lykam -lyerla -lychwala -luzuriaga -luzinski -luxon -luvene -lutzi -luthe -luss -lushbaugh -luscavage -lurey -luquin -lupul -lupu -lupkin -lupfer -luoto -lundman -lundie -lundi -lundemo -luncsford -lumukanda -lumpp -lummis -lumantas -luloff -lukavsky -luitjens -luhring -luga -luffy -luelf -luehring -luedi -lueckenotte -luecht -luebano -ludvik -ludovici -ludkowski -luderman -luddy -lucksom -luckritz -luckadoo -lucion -luci -luchessa -luchesi -lucear -lucario -luben -luangsingotha -lozzi -lozo -loyst -loyed -lowin -lowber -lovich -lovenbury -loveh -lovec -louser -louris -lourence -loureiro -louras -lounds -loukidis -loukas -louissant -louer -louch -lotze -lotthammer -lotter -loterbauer -lotempio -lostracco -loston -lossman -loson -loskill -loske -loshe -lorz -lorion -lopuzzo -lopilato -lopera -loosey -looi -loock -lonsway -lons -longueville -longton -longknife -longin -longfield -longcor -londner -lompa -lommel -lomg -lolling -lolli -loli -lolar -lokuta -lokke -lokhmator -lojek -lois -loil -lohmeier -logero -loewe -loessberg -loeschner -loesche -loehlein -loeckle -loebs -loduca -lodense -lodeiro -locsin -locorriere -locklier -lockette -lochotzki -loche -locantore -locante -lobosco -lobingier -loats -loarca -llyod -llopis -llarenas -ljungquist -lizer -lizarda -livi -livezey -liverani -livas -liuzza -litzsinger -litza -littlehale -litter -litehiser -litecky -liskovec -liskiewicz -liskai -lisius -lisiecki -lisherness -lisanti -lipstone -lipsitz -lippi -lipovsky -lipkind -lipke -lipitz -lipa -liontos -linzie -linstrom -linssen -linsner -linsay -linnecke -linnan -linkkila -linginfelter -lingberg -lingardo -lingao -linea -lindwall -lindskog -lindline -lindesmith -lincicum -linahan -limthong -limesand -limauro -limardo -lilleberg -liljedahl -liljeberg -lilja -likio -ligons -lifshitz -liesch -lierle -lienke -lienemann -liekhus -liederbach -lieder -liechti -liebskind -liebhardt -liebelt -lie -liddie -lidbom -licor -lico -lickness -lickiss -lickey -lichtig -lichtenwalter -lichte -lichstein -lichorat -lichlyter -liccione -licalzi -librizzi -libre -librandi -libke -libert -liano -lianes -lezon -lezer -lezak -leynes -lewton -lewry -lewandowsky -levo -levites -levitch -levitas -levister -levinsky -leverentz -levendosky -leuty -leuters -leusink -leupold -leuchs -letteney -letteer -letrent -letourneaux -letofsky -letman -letko -letang -letalien -lestelle -lessin -lessenberry -lessen -lessa -lespier -lesky -leshure -leshko -lescavage -lermond -lerew -leonti -leonaggeo -lenza -lenters -lenord -lenny -lennert -lenix -lening -lengle -lengacher -lener -leneave -lencioni -lempe -lemone -lemin -lemich -lemert -lelis -lele -lekwa -lejune -leitze -leitem -leistner -leipheimer -leimkuehler -leiding -leidel -leidall -leichty -leichtman -leibenstein -leiba -lehrian -lehrfeld -legrow -legrant -legore -leghorn -legel -legallo -lefew -leemow -leebrick -ledy -leduke -ledon -ledley -ledec -ledebuhr -lecoultre -leconey -leckington -lechlak -lechel -lebovic -lebourgeois -leberman -lebario -leavelle -leasy -leah -leagjeld -leafe -leabow -lazzar -lazer -lazenson -lazenberry -layher -lawe -lavon -lavina -lavette -laverne -laverette -lavee -lavear -lavatch -lauwers -lauw -lauture -lautman -lauters -laurion -laurens -laurenceau -launt -launelez -laughbaum -lauerman -laudat -laubacher -latzka -latzig -latortue -lathon -lathim -latessa -latella -lataille -lasyone -lastovica -lasselle -lask -lashutva -laserna -lascody -lasaint -larve -laruffa -larsh -larreta -larko -largay -larey -lardydell -larde -laravie -larate -laquay -lapuz -laprairie -lapora -lapiana -lanzoni -lanzillotti -lanzillo -lanzer -lanzalotti -lanton -lantey -lansdowne -lansden -lansang -lanquist -lanosga -lanosa -laninga -langsdale -langoni -langlands -langhout -langhorst -langenheim -langehennig -laneve -landucci -landsberry -landrey -landolfo -landkamer -landham -landgrebe -landefeld -lampp -lamparski -lamorgese -lamorella -lammie -lamielle -lamela -lambourne -lambino -lamberto -lamber -lambeck -lamascolo -lamarsh -lamantagne -lamaitre -lalumiere -lallo -laliberty -lalata -lalanne -laland -lakner -laity -lahrman -lahmann -lahip -lagroon -lagoa -laginess -lagge -lagatella -lagassie -laganga -lafranca -lafosse -laffredo -laferty -lafera -lafaver -lafauci -laesser -ladyman -ladtkow -laditka -ladeau -ladas -lacouette -lacosta -lacock -lacks -lackman -lackie -lachley -lacassagne -labrune -labrode -labreque -labrec -labog -labkovsky -labita -labbie -lababit -laaker -kylish -kyhn -kwiat -kwasny -kwack -kvilhaug -kuznicki -kuzmish -kuzmanic -kuzemchak -kuttler -kutella -kutchin -kuszlyk -kusumoto -kusuma -kustes -kusinski -kushlan -kushiner -kushin -kusak -kurzyniec -kury -kurter -kurrie -kurpiel -kurkjian -kurk -kurisu -kupres -kuokkanen -kunzie -kunzel -kunis -kuning -kundrick -kundla -kundinger -kully -kullas -kulkarni -kulcona -kulak -kulacz -kuks -kuklis -kuka -kuja -kuizinas -kuhtz -kuhnle -kuhnen -kuhnemund -kuhnel -kuhens -kuharik -kufner -kufeldt -kuenstler -kuehnert -kudzma -kudasik -kuczkowski -kucinskas -kuchto -kuch -kucel -kucek -kubica -kubecka -kuban -kszaszcz -krzywicki -krzynowek -krzal -krystal -krysiak -krys -krutsch -kruss -krusen -krusemark -krupiak -krumsiek -kruml -krulish -krulik -krulicki -krueth -kruer -kruel -krows -krossen -krolikowski -krolczyk -kroetch -kriticos -krites -krisher -krinke -krienke -kriegh -krichbaum -kribbs -kretchmar -kreitzbender -kreitler -kreinbring -kreb -kreamalmeyer -kreager -krawiecz -krawetz -krasley -krapfl -kranze -kranendonk -kramper -krampe -kramm -kralicek -krajnovich -krajcer -krain -kracker -kozinski -kownacki -kown -kowing -kowallis -kowall -kowalcyk -kowalchick -kovacic -kourt -kourkoumellis -kounter -kounlavong -kounce -koulabout -koualeski -kotzur -kottsick -kottre -kotte -kotrys -kotow -kothenbeutel -kotara -kostyla -kostich -kostenko -kossmann -kossin -kossakowski -kossack -kosoff -kosmatka -koshiol -koscielak -koscho -korzenski -kortz -kortum -korthauer -korshak -korsen -korol -korns -kornprobst -kornman -kormann -korineck -korf -koretsky -korenic -korbal -koralewski -koppelmann -kopis -kopiak -kopera -kopchick -kooken -kontogianis -konon -konn -konieczko -konick -konicek -koneval -kondratowicz -koncan -konat -komsthoeft -komosinski -kommer -kominek -koman -kolthoff -kology -kolnik -kolmetz -kolling -kolkowski -kolkemeyer -kolias -kolen -kolehmainen -kolby -kolberg -kolat -kokoska -koistinen -kohnert -kohlmyer -kofutua -kofoid -kofler -kofa -koetz -koetje -koerper -koeppl -koenning -koenigstein -koenigsfeld -koelle -koegel -koebley -koczera -kochmanski -kocaj -koc -koblick -kobis -kobialka -kobernick -kobak -knost -knori -knopinski -knoepfler -knoche -knipping -knipfel -knighter -kniefel -knie -knickman -knezevic -knewtson -knestrick -knesel -kneifel -knavel -knappe -knackstedt -klusmeyer -klus -klund -klun -kloos -kloock -kloiber -klohr -kloepper -klocek -klis -klingerman -klingen -klines -klimkowicz -kliever -kliem -kleypas -klevene -kleppinger -kleparek -klepacz -klemenc -klemanski -kleinwolterin -kleinsmith -kleinke -kleinberger -kleidon -kleespies -kleese -kleekamp -kleban -klayman -klay -klaver -klarman -klarberg -klapperich -kjetland -kizewski -kiyabu -kivioja -kittner -kittelberger -kissik -kisser -kishaba -kisch -kirner -kirkpatric -kirchhofer -kirchgessner -kirchausen -kirbie -kiral -kippes -kipper -kippel -kintsel -kintop -kinseth -kinroth -kinnion -kinningham -kinnier -kinnie -kinkin -kinkella -kingshott -kingore -kingen -kinerson -kindermann -kinart -kinan -kinabrew -kimbral -killean -kilcrest -kilb -kilarjian -kiffe -kientz -kiening -kielich -kieger -kieft -kieff -kiefel -kie -khum -khu -khov -khounborine -khoun -khoo -khensovan -khela -khay -khansari -khanponaphan -khano -khammixay -khalife -khalifah -khachatoorian -keyna -kexel -kewish -kettmann -ketring -ketler -ketcheside -ket -kestle -kessner -kerzer -kerss -kerska -kershbaumer -keros -kerntke -kerkel -keri -kerger -kereluk -kerechanko -kercado -keppers -keohane -kennet -kennealy -kenely -keneally -kendrew -kenderdine -kenagy -kenady -kemner -kemmler -kemme -kemerer -kelzer -kellon -kello -kellin -kellebrew -kellaway -keliipio -kelder -kelash -keitzer -keigley -keicher -kegerries -keens -keemer -keckler -keaveny -keath -keasley -kears -keany -keanum -keamo -kealohanui -kazmi -kazmer -kazin -kazeck -kazakos -kayrouz -kaylo -kawata -kaveny -kavadias -kauphusman -kaune -kaull -kaub -katzberg -katynski -katula -katten -katsbulas -katnik -katechis -katcsmorak -katan -kastning -kastman -kassell -kassabaum -kasprak -kasica -kasack -karvonen -karvis -karpowich -karpiak -karnish -karma -karell -kareem -kardashian -karczewski -karayan -karatz -karadimas -kapusniak -kapraun -kappe -kappa -kapitula -kapfer -kapelke -kapa -kaopua -kantarian -kanta -kanoza -kannard -kanish -kaniecki -kanevsky -kaner -kandra -kanda -kanatzar -kanable -kamph -kamnik -kammes -kammerdiener -kamerad -kamelamela -kamealoha -kame -kamb -kaluzny -kalupa -kaluna -kaltved -kalter -kalscheuer -kalmus -kalmer -kalland -kalima -kalichman -kalfa -kalbaugh -kakudji -kaitz -kainoa -kailey -kaiama -kahrer -kahola -kahana -kagay -kafel -kaetzel -kaesemeyer -kaer -kaea -kaduk -kadis -kaderlik -kade -kacik -kachikian -kacerski -kaboos -kabba -kaaz -kaauamo -juza -justino -justason -jurs -jurisch -jurgensmeier -jurden -jura -jungling -julye -juluke -julock -julias -julen -jufer -juedes -jubic -juariqui -juaire -jozsa -joulwan -jostes -josten -josich -josias -joshlin -josefy -josef -jorski -jorn -jorinscay -jorda -jons -jongeling -jongebloed -jondle -jolls -johnshoy -johnico -johanek -jirjis -jiran -jimmison -jill -jewels -jevtic -jetty -jesmer -jes -jerone -jerko -jenschke -jenquin -jennins -jennelle -jenison -jendrick -jeminez -jellis -jekot -jekel -jehl -jebb -jeavons -jeanneret -jeane -jeancharles -jeanbaptise -jaworowicz -javellana -jaurigui -jauch -jastrzebski -jass -jasmine -jarzembowski -jarver -jarosh -jaroscak -jarnesky -jares -jarell -jaradat -jarad -jaquins -janulewicz -jansing -janrhett -janowicz -janosek -jannetti -jannell -janeczko -jandron -janczunski -jancik -janacek -jamwant -jamili -jakovac -jagoe -jaffy -jaeschke -jaenke -jacque -jacobos -jackovitz -jackola -jackley -jacka -jacckson -jablonsky -jabiro -jabaay -jaap -iyengar -iwanowski -iwanejko -ivon -iverslie -ivanov -ivancich -iturralde -ittner -israelsen -israels -ismay -isleib -isita -isiordia -ising -isidore -isbill -isagawa -isacs -isaacsen -irzyk -irizzary -irineo -irimata -ireton -irestone -iozzo -iozzi -iopa -intrabartolo -intihar -insko -insana -inocente -ink -inhulsen -ingole -inches -inafuku -imperatore -imgrund -imbimbo -imbier -imaino -ilse -illuzzi -illian -ilic -ilasin -ilagan -iker -ihnat -ihm -igwe -igtanloc -ifversen -iese -ieng -ienco -idemoto -icard -iborra -ible -iberg -ibbetson -ibale -iavarone -iatarola -iacovino -iacopino -iacobellis -iachetta -hysom -hymowitz -hymon -hymen -hylands -hych -huy -huval -hutmacher -huszar -hustace -hussien -huskinson -husfelt -husenaj -husch -hurtig -hurtgen -huro -hurne -hurlston -hupman -huor -hunzelman -hunsperger -hunneyman -hunckler -humphrys -humphers -humetewa -humeniuk -humenik -hulstrand -hullings -hulitt -hulick -huland -huiting -hugron -hufstedler -huffner -huezo -huettman -huereca -huenink -huelse -hueckman -hudgeons -hudach -huckstadt -huckle -huckabey -hubschmitt -hubin -hubertus -hubby -hubbel -huban -huaman -hsun -hsiang -hrapski -hoznour -hoyman -howkins -howick -howatt -hovorka -hovick -hovanesian -hounchell -houf -hotton -hottes -hotrum -hotelling -hotaki -hostoffer -hosterman -hosteller -hospkins -hospelhorn -hoscheit -hoschander -horstead -horris -hornoff -hornberg -hornandez -hornack -hormell -horikoshi -horigan -horger -hoppins -hopperstad -hopko -hootsell -hoopingarner -hookano -hooghkirk -hoofard -hoock -honsinger -honour -honnette -honnerlaw -honma -honkanen -hongach -honeycott -hondorp -honchell -honas -honanie -homsher -homestead -holze -holtorf -holthus -holster -holsonback -holom -hollinrake -hollidge -hollerman -hollendonner -hollberg -holk -holian -holes -holecz -holec -holdvogt -hokutan -hok -hoiness -hoilman -hohiudden -hohensee -hohaia -hogelin -hogatt -hogarty -hoftiezer -hoffstatter -hoffnagle -hoffeditz -hoffart -hoerl -hoefel -hodos -hodnefield -hockins -hockenbrock -hocke -hochard -hocate -hobler -hober -hoben -hobell -hobden -hoagberg -hnyda -hlavka -hladik -hladek -hitchen -hislope -hirschberg -hirneise -hirn -hirliman -hirleman -hirao -hippenstiel -hintson -hint -hinley -hinh -hinebaugh -hindson -hinderberger -himmelmann -himanga -him -hilston -hilstad -hilser -hilsendager -hilsenbeck -hilscher -hilsabeck -hilpert -hilman -hillerud -hillebrano -hillebrandt -hilland -hilgers -hilgeman -hilfiker -hildago -hilda -hilbrand -hikel -highbaugh -higgons -higgenbottom -hiersche -hierholcer -hiedeman -hiday -hickethier -hichens -hibbitt -heyduck -hewko -hevron -heuwinkel -heuvelmann -heusner -heung -heuett -heuck -hettinga -hessey -hespen -hescock -heschke -hervig -hertzel -herston -herstad -hershkop -hershelman -herschelman -herriges -herres -herrarte -herpich -hernanez -hernanadez -hernan -hermenau -hermanowicz -herkstroeter -herkenratt -herera -herendeen -herauf -henstrom -hense -henrity -hennigh -hennies -henneberry -henkey -henjes -hengl -hengen -henfling -henerson -henein -hendrik -hendricksen -hendeson -henderso -henderlite -hemon -hemmann -hemker -hemesath -hemani -helweg -helverson -helseth -helquist -helom -helmstetter -helmsing -hellweg -hellmich -helgager -helgaas -helfenbein -helems -helem -helde -heiting -heither -heisdorffer -heiro -heirendt -heinzig -heiniger -heingartner -heimlicher -heimburger -heiken -heidtman -heidrich -heidi -heidelberger -heidebrecht -heick -heibult -heholt -heggood -heeth -heers -heern -heerkes -hedtke -hedspeth -hedon -hedinger -hecke -hechinger -hebeisen -heatherton -heartsill -heagney -heafey -headly -headland -headlam -headington -heade -hazy -hazim -haza -haynam -hayertz -haydt -haxby -hawse -hawkinberry -hawe -havlin -havir -havelka -hauxwell -hautan -hausrath -hauptmann -haughn -hauersperger -hatzenbihler -hattley -hatta -hatori -hathorne -hatchitt -hatchet -hatada -hastin -hastedt -hassing -hassenger -hassanein -hasker -haskel -hashaway -hasenfuss -hasenfratz -hascup -hasas -hartwigsen -hartrum -hartquist -hartory -hartlen -hartleben -hartinger -harsin -harritt -harriage -harpham -harnos -harnist -harleman -harlee -harke -hargers -hardter -hardsock -hardnette -hardine -hardi -hardges -harderman -harde -hardan -harcar -harbater -harapat -harang -haq -hanzl -hansome -hansman -hansis -hansing -hanoa -hanninen -hannaway -hannawalt -hanmer -hankison -hanible -hanenberger -haneke -hanebutt -handzlik -handsom -handkins -handke -handin -hanback -hanawalt -hanavan -hamsik -hamonds -hammette -hammerman -hammacher -hamlette -hamiltan -hamidi -hamff -hamett -hamersly -hamers -hamdn -hamden -hamberry -hamara -hamacher -halyk -haltiwanger -halstrom -halse -halpert -halnon -hallo -halliman -hallemeyer -hallack -halima -halick -haldi -halcott -halbershtam -halajian -halaas -hakey -haitz -hairell -haims -haifa -hahnert -haggin -haggerton -haggermaker -hagey -hafferkamp -haferkamp -haeuser -haessly -haese -haerter -haering -haeder -hadvab -hadsall -hadler -hadesty -haddenham -hadaller -hacopian -hackl -hackerott -hacken -hachting -haboush -hable -habig -habibi -haberstroh -habenicht -haaz -haakenstad -haage -gyllensten -gwilt -gwillim -guzon -guzewicz -guye -gutzler -guttormson -gutsche -gutjahr -gutgesell -gutenberg -gustitus -gussow -gusmar -gushi -gushard -gurwell -gurske -gurrero -gurin -gurecki -guoan -gunzelman -gunyon -guntharp -gunstream -gungor -gundelach -gunawan -gumprecht -gumaer -gulston -gulnac -gulizio -gulbrandsen -guitano -guimares -guillebeau -guillary -guillama -guilfoos -guiggey -guiga -guieb -guidrey -guiab -guffanti -guerrini -guerrazzi -guerera -guenthur -guell -guedjian -gudmundsson -gucker -gubin -gubala -guba -guasp -guarriello -guarno -guarini -guanche -guagenti -gstohl -grzesik -grzebien -gryszowka -grymes -gruz -grustas -gruse -gruntz -grunert -grune -grunberg -grumney -grumbling -gruman -grulkey -gruiger -gruening -gruenewald -gruby -gruben -grubel -grubba -grriffin -groys -growell -grothaus -grosskreutz -groskreutz -grosclaude -groot -gronstal -gronquist -gronlund -gronitz -gronberg -grona -gromoll -grohowski -grohman -groetsch -groder -grobmyer -groberg -grivno -grivetti -grippen -grine -grimme -grills -grigoreas -griglen -griffitt -griffan -grieshop -grieshaber -griep -grieff -griebling -griblin -grev -greubel -gressmire -gresco -grenway -grensky -grennay -grenko -grenet -gremo -gremmels -gregware -gregus -greggory -gregan -greep -greenweig -greensfelder -greenhalge -greengo -greenbacker -greem -greder -greczkowski -grebner -greber -greason -gream -gravat -grauman -grauel -grassle -grasmick -grapp -granzella -granto -gransberry -granquist -granneman -granieri -granes -grandon -grandner -granai -grammont -gramble -graleski -grainey -grain -graichen -grahovac -grageda -gragas -graffney -graffagnino -grafals -gradley -gradias -gradford -grabowsky -grabonski -grabler -grabhorn -graap -gozman -goyen -goyda -gowey -gowda -govostes -govia -gour -gouldman -gouldie -gougis -gotts -gottemoeller -gottdenger -gotta -gotshall -gosvener -gostlin -gossow -gosson -gossling -gosset -gosey -gorrindo -gormanous -gormally -gorius -gorena -gorell -gordley -gordey -gorbea -goonen -goodmon -gonzelas -gonzalis -gonyou -gonsiewski -gonsar -goney -gomoran -gomoll -gollop -gollob -gollier -golik -golida -golias -golian -golia -golec -goldthorpe -goldhorn -goldhirsh -goldfuss -goldfeld -golderer -goldenstein -goldenman -golde -golbin -golackson -goicoechea -goffigan -goerlich -goepfarth -goepel -goeing -goehringer -godboldt -gochett -gochal -gocek -goblirsch -gnoza -gnegy -gnabah -gmernicki -glyn -glueckert -glowacky -glovinsky -gloston -gloshen -glos -glogowski -gloeckler -glimpse -glidwell -glesener -gleitz -gleckler -glebocki -gleber -glazner -glazebrook -glaves -glavan -glasby -gladysiewski -gladle -gladhart -gjeltema -givant -gius -giulioli -gitt -girres -girbach -girand -gip -giottonini -giorno -gionta -giombetti -gioffre -gioe -ginzel -ginsel -ginocchio -ginnis -ginard -gimse -gilzow -gilton -gilstad -gilomen -gilner -gilly -gillming -gillion -gillich -gillice -gille -giliberto -gilhuly -gilgan -gildemeister -gilcris -gigger -giffith -giffee -giff -gietz -giesel -giera -gibeaut -gibala -giasson -giarusso -giarrano -giaquinta -giannavola -giandomenico -gianandrea -giallorenzo -giacherio -giachelli -giacchi -ghebremicael -gezalyan -getzschman -getzlaff -gettens -gettelman -gestether -gesing -gesamondo -gerz -gerwin -gerveler -gertsema -gerthung -gerten -gertel -gerteisen -gerstenberger -gershkovich -gerney -germy -germana -gerich -gerdiman -gerckens -gerbig -georghiou -geoly -gentleman -gentges -gentelia -gensel -geniesse -genia -generalao -gemmiti -geml -gelner -gellings -gellinger -gelino -gelhar -gelfond -gelerter -gelder -gelbart -geisinsky -gehrki -gehm -geen -gederman -gede -gearn -geant -gazzara -gazitano -gazdik -gayanilo -gawthorp -gavit -gaviglia -gavett -gavan -gavagan -gausman -gaukroger -gaufusi -gaudier -gaudett -gauci -gatzow -gatta -gatheright -gatesy -gatesman -gastelo -gaschke -garwin -garter -gartenmayer -gartenhaus -garsjo -garroutte -garrettson -garrean -garre -garnham -garnache -garmire -garmen -garlett -garkow -garito -garinger -gargan -garcon -gapp -gantzler -gantvoort -gansert -gansen -ganns -gannetti -ganin -ganigan -gamotan -gammond -gamer -gamello -gambrill -gambold -gambee -gambardella -galven -galvani -galuszka -galuppo -galmore -gallusser -gallodoro -gallington -galleta -gallegoz -gallaugher -gallargo -galkin -galipo -galinis -galimberti -galic -galbiso -galathe -galassini -galanti -galano -galagher -gajeski -gajardo -gaiters -gails -gailliard -gaffer -gafanha -gaer -gadewoltz -gaden -gackle -gabrial -gabrenas -gabossi -gables -gabl -gabhart -gabeline -gabbamonte -fyler -fykes -fusner -fusillo -fushimi -fus -furtak -furblur -fundora -funderberg -fumero -fuls -fulham -fulco -fujimura -fujikake -fugueroa -fuger -fugatt -fuerstenau -fuerbringer -frymoyer -frymier -frymark -frutiger -frushour -fruman -fruin -frugoli -fruehauf -froyd -frosto -frontis -frontiero -fronick -froneberger -frohberg -froebe -frobish -frittz -fritchley -fritchey -frisinger -frisell -frija -friehauf -friedenthal -friebel -freundlich -fret -frerich -frens -freker -freiseis -freimark -freilino -freiheit -freiermuth -freidin -freemantle -freeh -freedlander -freeders -freeburger -fredregill -frederique -freckleton -frecker -frazzano -frauenfelder -frattali -fratta -fratrick -fratercangelo -frasso -frashure -fraschilla -franzman -franzini -franza -franty -fransisco -franpton -frankson -frankland -frankiewicz -frankart -frangione -franchini -francescone -fralic -fraklin -frair -fragosa -fradkin -fracasso -foyer -foxhoven -fowlie -fowley -fowlar -fower -foute -foussell -fouquette -founds -fougner -fosmire -fosher -fosbrook -fortun -forss -forsmann -forslin -forsee -forpahl -fornili -fornier -fornaro -formichelli -formaggioni -forkum -forkell -foriest -forgrave -foresta -forejt -foreback -forcum -forcht -forchione -forch -forberg -forbach -fonua -fonteno -fonteneau -fongvongsa -fondriest -fondaw -fonck -fohl -foglio -foersterling -foddrell -focke -flugum -flucas -fluaitt -floss -florendo -floras -floer -flockhart -flockerzi -floan -flin -fliger -flieller -fleurilus -flenord -fleniken -flenaugh -flemmon -flemm -fleites -fleischner -fleckles -flechas -flauding -flatter -flato -flanner -flanegan -flammang -flakne -flaker -flagiello -fladung -flachs -flaa -fiwck -fitzrandolph -fitzherbert -fitzgerrel -fitsgerald -fisser -fishell -fischl -fischhaber -fischel -fiscella -fiscel -firpi -firenze -fiorilli -fiorica -finwall -finklestein -fingerson -fingerman -fineout -finello -finell -findlen -finco -filthaut -filpus -filo -filla -fili -fil -figiel -figgeurs -figert -fietek -fiest -fieser -fiesel -fickbohm -ficht -ficchi -fialho -fial -feyh -feyereisen -feuss -feusier -fette -festini -fest -fesko -fertik -ferrusi -ferrone -ferrio -ferringo -ferries -ferrie -ferrett -ferrato -ferrario -ferraraccio -ferranto -ferr -ferouz -fernette -fernanders -ferkel -feret -ferer -ferenz -fenrich -fenniman -fennig -fenison -fendrick -fendlason -fend -fenbert -felver -feltham -felonia -felling -fellezs -felizardo -felio -felicien -felicia -felicano -feliberty -feistner -feister -feintuch -feilds -feighner -feierman -fehrs -fegueroa -fegles -fegette -feerick -feela -feehly -feehery -fedorko -fedie -fedezko -fedewa -federkeil -fecto -fechtig -fecher -featheroff -feagans -fazzari -faycurry -fawson -fawler -favuzzi -favro -favian -favazza -fausey -faus -faupel -fattore -fatora -fathy -fathree -fatheree -fassinger -faske -farug -fars -farnese -farkus -farinha -faren -faraimo -farahkhan -faragher -fanti -fanter -fantazia -fantauzzo -fansher -fandino -fanatia -famageltto -falzon -fallow -fallenstein -falencki -falcioni -falci -failey -failde -faigley -faidley -fahrni -fahrlander -fahrenthold -fahning -fago -fagle -fagerquist -fagerlund -fageraes -facello -ezzelle -eyton -eyestone -exton -exantus -evjen -evilsizor -evertt -evertsen -eversmeyer -everroad -everline -everet -evartt -evansky -evancho -eull -ettman -ettienne -ettel -etringer -eth -estronza -estrem -estrade -estok -estle -estimable -estess -estella -estanislau -essix -essency -esquinaldo -espiridion -espinel -esperon -espenlaub -espejel -esparsen -esmont -esmon -esmay -esmaili -eskins -eskind -eshmon -esfahani -escober -escanlar -erz -ersery -eros -ernster -erlebach -eriks -erichson -erger -eredia -erdos -ercole -ercolano -erazmus -eraso -epel -eovaldi -ensz -ensel -enock -ennes -enis -engnath -engfer -engelmeyer -engelberg -engard -endris -endreson -endorf -endersbe -ende -encino -emshwiller -empasis -emore -emmond -emiliano -emerling -emenaha -emde -emberling -emano -elway -elvey -eltringham -elter -elsken -elsheimer -elsaesser -elrick -elreda -elpert -elnicki -elmes -ellsmore -ellrod -ello -ellinghuysen -ellingham -ellingburg -elles -ellenbogen -elleby -ellcessor -ellamar -elke -elijah -eligio -elieff -elicker -elian -eliades -elhadi -elfenbein -elenbaas -eldringhoff -eld -elbie -eke -ekas -eisnaugle -eisiminger -eisenhaver -eisenhardt -eisenberger -eiselein -einwalter -eighmey -eidemiller -eickmeyer -eichstedt -eichenberg -eichberg -eibel -ehrisman -ehrenzeller -ehman -ehli -ehl -eheler -egwuohua -eglin -egler -egersdorf -egelston -efthimiou -eelkema -edu -edridge -edland -edenholm -edem -economou -eckmann -eckblad -eckardt -echternach -echter -ebrahimi -eberst -ebershoff -eberheart -ebbett -eayrs -eavey -eatough -eastling -eastern -easterlin -earthly -earing -eakles -eagleman -eacho -eaby -dzwonkowski -dzurnak -dzurilla -dziuba -dzinski -dziewanowski -dziekan -dyrstad -dydo -dvorsky -duyer -duttinger -dutchess -duston -dush -durward -dursteler -durpee -durough -durniok -durnan -durisseau -duris -duriga -durda -durboraw -dura -duquaine -duplessy -duplanti -dupes -duperre -dupaski -duos -dunshie -dunphe -dunnell -dunkinson -dunkerley -dunkan -dunemann -dunderman -duncans -dunahoe -dumouchel -dummett -dumeny -dumbar -dumar -dulan -dukett -duk -duis -duguette -dugre -dufrain -dufauchard -duesterhaus -duesterback -duerst -duenwald -dudzik -dudycha -dudenbostel -dudden -ducklow -duckey -duchnowski -duchane -duceman -dubovsky -dubler -duber -dubel -dubbert -drutman -drummey -drumbore -droy -drow -droubay -drorbaugh -dropinski -dronko -dronick -droggitis -drissel -driscol -drinen -driessen -driedric -dreuitt -drenning -drelick -drejka -dreiss -drebes -dratch -drakulic -drakos -draime -dragovich -dragich -draggett -dragg -drabicki -doyscher -doxbeck -downy -downhour -dowland -dowker -dowds -dowda -douyette -douthett -doughman -dougharty -douga -doudna -dotolo -dossman -dosh -dorsinville -dorsay -dorrill -dorosh -dornbrook -dorlando -dorio -dorie -dorcas -doporto -dopita -doorley -dooner -donton -dono -donnerberg -donnalley -donlyuk -donkle -donilon -doniger -donigan -doniel -doncaster -donatich -donaher -donah -donaghue -donaby -domowicz -domitrovich -dominowski -dominiak -domenice -dombek -domagalski -domagall -dolsen -dolmajian -dolley -dolinski -dolhun -dolfi -dolecek -dokovic -dok -dohrn -doerksen -doelger -doeberling -dody -dodimead -dodgion -dockum -dockerty -dochterman -dobrzykowski -dobrynski -dobrushin -dobrosky -dobrinin -dobison -dobbyn -dobbe -dlugos -ditucci -dittus -dittmann -dito -ditmars -disotell -disorda -disharoon -dischner -discala -disalvi -dirth -dirr -dirienzo -dipolito -dipilato -dipietrantoni -dipanfilo -dioneff -diomede -dinuzzo -dintino -dinsmoor -dinsdale -dinos -dinora -dinnendahl -dinkle -dininger -dingillo -dingie -dingell -dimitry -dimicco -dimezza -dimarzio -dimario -dimariano -dimanche -dilucca -dillis -dilliner -dillin -dillashaw -dilillo -dilg -dilella -diker -digiouanni -digeorgio -difronzo -difrancisco -dietterick -diestler -dies -dierkes -diekema -diederichs -dieball -didway -didonatis -didomizio -didio -didato -dicosmo -dicorpo -dicocco -diclaudio -dichiaro -dible -diblase -dibiasi -dibbern -diano -diani -diangelis -diamantopoulo -diaco -dhruva -dheel -dharas -dezalia -deyak -deya -dewolff -dewick -dewese -dewater -devot -devost -devis -devilliers -devery -deveny -devenny -develice -devasier -devarona -devanski -devai -deus -dettorre -dettor -detrolio -detrich -detillion -deteso -determann -deterline -deterding -detchon -detaeye -destina -destefani -desruisseaux -desormeau -desonia -desmore -desko -desimas -desher -deshayes -deschene -desantos -desando -desamparo -desalvatore -derx -deruiter -derosie -derogatis -derman -derkas -derivan -derington -derienzo -derian -dereus -derenzi -derentis -derderian -derastel -deraps -dequinzio -deprato -depont -depiro -depierro -depeyster -deonarine -deocampo -denzine -denwood -denos -denooyer -denomme -denoia -dennig -denjen -denisco -denick -denholm -denfip -deneui -denetclaw -denet -denery -demuzio -demske -dempewolf -demorrett -demorizi -demny -demiter -demilt -demik -demien -demianczyk -demetrakos -demer -dembek -demauro -demase -demart -demarino -deluzio -delullo -delucian -deltufo -deltora -delsoin -delsavio -delross -delperdang -delpaggio -delosier -delonge -delonais -deloge -delmendo -dellwo -dellum -dellosso -delliveneri -dellefave -dellarose -dellapenta -dellamonica -delgoda -delekta -delegado -deldonno -delco -delce -delbene -delavergne -delashmutt -delapuente -delaporte -delana -delallo -delahay -delagol -delagado -delabarre -dekruif -dekoning -dekeyzer -dejoseph -dejardin -dejarden -deister -deigado -deichmann -deichman -dehm -dehlinger -dehl -dehetre -dehaney -dehaas -degrood -degrass -degrande -degooyer -degnim -deglandon -degenfelder -degenaro -degear -degagne -defrang -defrain -defosset -defosse -defont -defir -defayette -deerdoff -deely -dedrickson -dednam -dederich -decurtis -decourt -decourcey -decock -declerk -decius -dechavez -dech -december -decarvalho -decarmine -decaire -decaen -debrosse -debreto -debrecht -debrae -debore -debien -debenedictis -debarge -debardelaben -debaets -deasis -dears -dearruda -dearring -dearinger -dearin -dearcos -deanes -deakyne -dazzi -dazi -dayao -dawkin -davolt -davise -davine -davidsmeyer -davidowicz -davaz -davari -davance -dauster -dause -daulerio -daughters -daugereau -daubney -datamphay -dasouza -daskal -dashno -dashne -dasen -daschofsky -dasch -darwich -darvish -darveau -darting -darthard -darron -daron -darnstaedt -darmody -darmiento -darington -dariano -daria -dardenne -darakjian -danyow -dannis -danniels -danni -dannelly -dannelley -dannatt -daniely -dangelis -danese -daner -dandoy -danco -danca -danas -damrell -damone -damms -damme -dalporto -daloisio -dalmata -dallison -dallam -dallago -dalegowski -dalecki -daku -daking -daken -dajer -dajani -daidone -dahlka -dagres -dago -dager -dafonte -dada -daczewitz -dach -czysz -czubakowski -czartoryski -czapiewski -cyrnek -cyree -cygrymus -cwikla -cwalinski -cutrera -cuther -cutchember -cushner -cusenza -curreri -curlis -curio -curimao -curia -curey -cunio -cumoletti -cumberlander -culpit -culloton -cuffy -cuffman -cuddington -cucuta -cucufate -cubine -cubano -cuadras -csuhta -crutison -cruther -crusinberry -crummell -crumly -cruff -crozat -crossmon -crosiar -crookshank -crookes -cronoble -croner -cromeans -crolley -crofutt -crockette -crivelli -crivaro -cristino -criste -crissey -crisalli -criley -cribari -crewe -creselious -crescenti -crepps -crenwelge -creitz -cregin -cregger -creekbaum -credi -crebs -crayford -cravy -cravalho -crauswell -crathers -crask -crapp -crape -crapanzano -cranson -crans -crannell -crandal -craigwell -craigmyle -crafter -cradler -coxwell -coxen -cowlin -covitz -coventon -coutre -coutinho -coutermarsh -courton -courseault -courrege -courey -coulon -coulibaly -couden -coton -coste -cossett -cosman -cosma -coslow -cosico -coshow -corwell -corvo -corujo -cortopassi -cortinez -cortijo -corrio -corrington -corriher -corridan -corrga -correla -corping -corpe -coroniti -cornn -cornmesser -cornella -corneille -corkron -corf -coreen -cordiero -cordew -cordenas -corcuera -corbley -coray -coraham -copstead -copsey -copping -coppes -copney -coopper -cooperider -coopage -coonse -cookerly -conwright -contreraz -continenza -contes -consuelo -constine -constanzo -constantin -constancio -consentino -conradt -conour -conoley -conney -connerat -conlogue -conforme -confalone -coneway -condroski -condina -condiff -condi -conchado -conch -concatelli -conaughty -commerford -comissiong -cominski -cominotti -comar -colschen -colpi -colpa -colony -collons -collon -collicott -collea -collari -colker -colier -colesar -colemen -colecchi -colcher -colchado -coklow -cokel -cohick -cofone -coffinberger -coffell -coffel -codispot -codilla -cocroft -cockerhan -cochren -cochenour -cobetto -cobar -coalter -clyman -cluver -clusky -clunes -clukies -clowerd -clouatre -clossin -cloos -clokey -clinkinbeard -cliffton -clibon -clevland -cleverley -clesca -clerc -clemenza -cleath -cleasby -cleal -clavijo -clater -claros -claghorn -clacher -clabo -civil -cittadini -citroni -cissel -cisar -cirella -circelli -ciprian -cipcic -ciotta -cinnamond -cinkan -cinco -cinar -cimorelli -ciminera -cilenti -cihak -cieloszyk -cidre -cicen -cicali -cibik -ciavardini -cianfrani -cianciola -ciallella -ciaffone -chyle -chy -churchfield -churape -chuma -chulla -chueng -chubicks -chrystal -chrosniak -chriswell -christopoulos -christi -christerson -christenbury -chowenhill -chowansky -choudhary -chor -chopton -cholula -chollett -choinski -chocron -chockley -chochrek -choates -chlebus -chiz -chitrik -chisman -chiphe -chiola -chiodi -chinault -chime -chimal -chilsom -chillo -chicles -chicharello -chicalace -chiariello -chiappari -chhan -chham -chez -chevis -cheverton -cheverez -cheu -chessman -cherubini -cherrin -cheroki -cherny -chernich -chernesky -cheranichit -cheeseboro -chech -cheam -chavoustie -chavies -chaumont -chaulklin -chatampaya -chasson -chassaniol -chary -charvet -charry -chari -chararria -chappo -chappa -chapmond -chaplik -chapen -chanthasene -chanler -chanco -chamul -champaco -chalupa -challinor -challa -chalender -chaknis -chakkalakal -chaisty -chaddick -chaboya -chaberek -chabbez -cevera -cerverizzo -cerventez -cervantsz -cerva -cerroni -cerri -cerrello -cerone -cernuto -cernota -cerminaro -cerf -ceretti -cerceo -cerasuolo -ceraso -cerasi -cerar -ceraos -cepin -cepas -centi -cendana -cendan -cellar -celeya -ceder -cecot -cazel -cazaree -cawon -cawein -cavrak -caveness -cavalaris -cavaiani -cauterucci -caughorn -caughell -cauazos -catts -cattanach -catrini -catozzi -catignani -catholic -catherson -catherine -cathell -catello -catchpole -catanzano -casuscelli -castros -castrey -castongvay -castillion -castelum -castells -castellion -cassler -cassino -cassilano -cassiano -cassetty -cassens -cassells -cassavaugh -cassagne -cassa -casolary -casmore -casley -caska -casis -casini -cashour -cashmer -cashett -casement -casciato -casavez -casasola -casarz -casar -casana -casales -carvill -carvallo -cartner -carrousal -carrizo -carretta -carrethers -carrao -carran -carpen -caroselli -carolla -carnillo -carnegia -carmin -carmickel -carlini -carland -carknard -carioscia -carina -carideo -carfrey -cardinalli -cardiff -cardazone -carbonella -carbery -carbee -caravetta -caravati -caramelo -caramella -caraig -carabine -cara -capristo -capri -cappellini -caporiccio -capicotto -capestro -capener -capek -capas -capaccino -caoagdan -canwell -cantella -cantakis -canson -cansino -cansibog -cannistraro -canner -caneza -caney -caneva -canetta -canestraro -candozo -candlish -candell -canant -canalez -can -camus -campora -campobasso -campble -campau -campain -camlin -camisa -camerino -camerano -camenisch -camelin -cameli -cambia -camareno -camancho -camack -calvan -calumag -caltagirone -calowell -callnan -callington -calliham -calligaro -caller -callar -callam -callagy -callagher -callado -caliman -caldron -caldoron -caldarera -calcao -calaf -cakmak -cajulus -cajka -caivano -caires -caire -caiozzo -cains -cainne -caimi -cagnon -cagno -cagan -caffentzis -cafasso -caez -caddigan -caddel -cacatian -cabugos -cabon -cabarcas -cabanillas -cabanela -cabam -bywaters -bystron -byse -byous -bynun -byczek -bybel -byal -buzza -buzo -buzis -buvinghausen -butzke -buttross -buttray -buttke -buttitta -butenhoff -busscher -busk -busitzky -bushweller -bushrod -bushfield -buschur -busacca -burzlaff -burvine -burtts -burtschi -burtell -bursik -burrs -burras -burows -burnie -burnash -burmside -burm -burly -burlson -burlile -burlaza -burlage -burkstrand -burkly -burklow -burkin -burian -burgs -burgoa -burgey -burgees -burfeind -burdzel -burchinal -burbine -buratti -buonassisi -buonaiuto -buntz -bunts -buntenbach -bunson -bunda -bumpaus -bumbalo -bumbaca -bullivant -bullin -bulisco -bulik -buley -bulat -bukowiecki -builes -buhrke -buhlig -bugh -buffone -buenviaje -bueler -buehlman -budzik -budy -budrovich -budish -budiao -budhu -buden -buddy -bud -buczko -bucknor -buckmeon -buckless -buckett -buckaloo -buchwalter -buchmiller -buchmeier -buchite -buchinsky -bucheli -buchann -buchal -bucaro -bubolz -buboltz -bubert -brzezicki -brzenk -brys -bryngelson -bryla -bryington -bruzewski -bruzek -brustmann -brusser -bruscato -brunzel -brunkhardt -brunick -brunetta -brunecz -bruna -brumaghim -bruker -bruin -brugliera -bruffee -brueske -bruegger -bruechert -bruckmeier -brroks -brozeski -broyle -brownlie -browman -broudy -brothen -broski -brosi -brookskennedy -brookie -bronston -broncheau -brommer -brola -broitzman -brohn -broglio -brogley -broers -broering -brodtmann -brodis -brodine -brodfuehrer -brodess -brodes -brockus -brockenberry -brociner -brochet -broadnay -brizeno -britts -brinley -brinkhaus -brinius -brininger -bringer -brindza -brindger -brinar -brilowski -brigner -brightharp -brighter -brienza -brienen -bridenbecker -brickson -breznay -brezinka -breyers -brevell -brettmann -bretos -bresser -brentz -brennick -brening -brendeland -brem -breiter -breihan -breidigan -bredlow -bredin -breckley -breckenstein -brebes -breaz -breaud -breath -bready -brazie -braunwarth -braunberger -brauman -braucks -brath -brasure -brasswell -brasseux -braskett -brasby -brantingham -bransfield -branseum -brano -brangers -brang -branes -brandstrom -brandorff -brandom -brandenburger -branck -brancaccio -bramuchi -bramlitt -bramel -bramasco -bram -brakke -brak -braget -bragado -brafman -bradmon -bradick -bradey -bradd -bracklin -brackbill -brabazon -braband -bozych -bozic -boyl -boyens -boyde -boyas -bowlick -bowle -bowcock -bouy -bouvia -bousum -bourraine -bourgon -bourbois -bouquin -boumthavee -boulger -boulch -boulais -boughn -bouges -boudle -boudjouk -boucouvalas -boucaud -bottrell -bottoni -bottella -bothner -botellio -boswink -bostow -bostain -bosson -bossier -bossey -bosold -boslet -boshnack -boshell -bosheers -bosefski -borza -boryszewski -borysewicz -borson -borseth -borroto -borrigo -borriello -borrello -borowicz -borovetz -borovec -borgelt -bordinger -bordas -bord -borcuk -borcher -borbridge -boothman -bookhardt -boocock -bonwell -bonsal -bonnoitt -bonnifield -bonnick -bonnel -bonker -bonita -boning -bonifield -boniface -bongle -bongivengo -bongio -bonge -bonett -bonebright -bondroff -bondoc -bonda -boncella -bonaventure -bonalumi -bonadona -bonaccorso -bonaccorsi -bompiani -bommer -bolvin -boluda -bolorin -bolon -bollom -bollettino -bolk -boliver -boline -bolieu -boliek -boleyn -boldul -boldery -bolante -bokor -boklund -bojanowski -boisuert -boislard -bohren -bohmann -bohlinger -bohart -boham -bogust -bogh -bogatay -bogany -boeving -boeshore -boesenberg -boerstler -boers -boenig -boelsche -boelke -boekhout -boekelman -boehner -boeckmann -bodwin -bodrey -bodman -bodiroga -bodford -bodensteiner -bodenheimer -boddorf -boddeker -bockskopf -bocchi -bocage -bobola -bobko -boben -boardway -boards -blyzes -blumenkranz -bloomgren -blong -blondeau -blommel -blois -bloem -blocklinger -blisset -blimka -bliler -bliese -blice -bleyer -blette -blesh -blender -blemel -bleifus -blechinger -bleattler -blazosky -blatti -blatteau -blatnik -blatchford -blankship -blankschan -blandy -blandino -blakeway -blakeborough -blaho -blackstar -blackgoat -blachly -blacher -blach -bizcassa -bizarro -bivings -bitsuie -bitsui -bitsko -bistodeau -bister -bisonette -bishel -bisconer -biscocho -biscahall -bisby -bisagna -birts -birnell -birkline -birkenhead -birenbaum -birckett -birckbichler -birchwood -biorkman -bimler -bilous -billinghurst -billey -billeter -billegas -billard -bilkiss -bile -bilcik -bigos -bignall -bigio -biggio -bigas -biffer -biffar -biesinger -bieschke -bierbrauer -bienfang -biehn -biederwolf -bieberle -biebel -bidon -bidner -bidgood -bidez -biderman -bickleman -bicklein -bicket -bicker -bickart -bichel -biard -bialik -bialczyk -bezner -beyrer -beylotte -beyerl -bevly -beulah -beul -betzel -betterman -betsinger -betschman -betita -bethurum -bethoney -beth -beston -besso -bessick -besio -beshear -besarra -bervig -bertus -bertrano -bertovich -bertolasio -bertog -bertinetti -bertelle -bertel -bertch -bertagnoli -berschauer -bersamin -bers -berri -berretti -berretta -berret -bernucho -bernt -bernstrom -berno -bernick -bernice -bernhagen -bernardoni -bernabo -bermers -berlove -berlinghof -berkhalter -berisha -bergseng -bergreen -bergholz -bergert -berez -beresnyak -berdes -beras -benzschawel -benzi -benya -benwell -benty -bentrup -bentele -benser -bennison -bennink -bennerson -bennerman -benitone -beniquez -benik -bengelsdorf -benell -beneduce -benecke -benear -bendzans -bendy -bendt -bendorf -bendolph -bendlage -benders -bendavid -benck -benassi -benari -benage -benadom -benabides -bembury -bemboom -bemberry -belyoussian -belveal -belsey -belongie -belone -belon -beloff -belluomini -belloma -bellmay -bellish -bellisario -bellingham -bellflower -bellfleur -bellerdine -bellemy -bellazer -belkowski -belich -belfiglio -beley -beldin -belback -belarde -belangia -bel -bekerman -beker -bek -beiswanger -beirise -behun -behning -behmer -behlen -begor -begg -beetley -bees -beermudez -beerling -beeck -bedsaul -bedoka -bednorz -becklund -beckerdite -beckendorf -beckenbach -bechthold -bechman -becherer -beavin -beauprez -beaumier -beauliev -beaugard -beaufait -beaudrie -beathe -beasmore -bearup -bearfield -beahn -beadnell -beadell -bazzel -bazzanella -bazelais -bazata -bazarte -baza -bayle -bayete -bawa -bavzee -bavard -bausley -baunleuang -baumgard -baumbusch -bauknight -baugham -bauers -bauermeister -baublitz -battistini -battiato -battiata -batters -battaglini -bathurst -bathrick -batel -batalona -basua -bastura -bastress -bastilla -bastidos -bastic -basten -bastedo -bastain -bassil -basset -bashinelli -basbas -baruth -barufaldi -bartylla -barts -bartrop -bartosz -bartosiak -bartolotto -bartolet -bartoldus -bartnett -bartlone -barthen -barthelman -bartenfield -bartczak -barsotti -barrocas -barrile -barrieau -barrer -barreira -barranger -barranca -barquera -barnscater -barnfield -barncastle -barnathan -barnar -barlip -barkins -barkenhagen -barkalow -barimah -baridon -barhydt -bargar -barff -bardeen -barcelona -barby -barbini -barbiere -barbetta -barberis -barberian -barban -barasch -baranow -baranovic -barajos -baraby -bapties -banyas -bantug -bantin -bantillan -bantay -bansbach -bankemper -banis -banick -banecker -bandin -bandemer -bandanza -bance -banales -bammon -bamfield -bambacigno -bambaci -balyeat -balvanz -balsano -balmores -ballreich -balloon -ballmer -ballintyn -balley -balletta -balhorn -balford -balezentis -baldrey -baldiviez -balder -baldassarre -baldacchino -balchunas -balceiro -balbin -balaz -balaski -balancia -balagtas -bakst -bakkum -bakios -bakeley -bajorek -bajdas -baizer -baitg -baise -bailony -baillio -baille -baiera -bahun -bah -bagne -bagi -baghdasarian -bageant -bagdonas -baetz -baeringer -badget -badeau -baddeley -bacy -backey -backenstose -backen -backe -backbone -baccouche -bacco -bacarella -babitsch -babena -babbin -babbel -babat -bab -azzaro -azoulay -azimi -azer -aylsworth -ayarza -axline -axelsen -awtrey -avola -avie -avetisyan -averyt -aveado -avanzato -avala -auyer -auxilien -auwarter -aurges -aures -auprey -aupperle -aunkst -aumich -aument -aumavae -aulbach -aukes -augspurger -auffrey -attridge -attkisson -attinger -atta -aton -atoe -atiyeh -athmann -athay -atchity -atallah -atala -astwood -astolfi -astol -asters -aspegren -asma -ashpole -ashfield -ashely -asevedo -aschmann -asar -asaeli -arzilli -arundel -arujo -aruiso -arturo -artry -artison -artinian -arrizaga -arriazola -arpino -arons -aronhalt -arntt -arniotes -arnholtz -arneberg -armillei -armijos -arm -arleth -arlen -arlan -arkins -arjes -arizzi -arizola -ariyoshi -aring -arimoto -arigo -arietta -arie -aridas -aricas -arhelger -arhart -arguillo -arguellez -argote -argenal -arenos -arenivas -arenivar -arendz -arendsee -arebela -ardizzone -ardion -ardery -ardd -ardan -arcino -arcilla -arcea -arcaute -arcangel -arcadipane -arbry -araque -aramini -arambuia -aragus -aragundi -aragoni -aragaki -aradanas -arabie -arabia -ar -apyuan -apuzzi -apruzzese -applewhaite -applebury -appeling -appelgate -apling -apking -apela -aparo -apa -aoay -anyan -antrican -antonopoulos -antonis -antonich -antonaccio -antona -antolik -antinore -anteby -anslinger -ansbacher -ansara -annette -ankersen -anis -aniol -aningalan -aniello -anichini -anibal -angviano -anglum -angley -angerer -angeloro -angeloff -angelocci -anestos -anerton -anelli -andzulis -andruss -andrian -andreatta -andonian -andon -anderon -andebe -andary -ancy -ancell -anasagasti -anakalea -anagnostou -amyotte -amtower -amstein -amsinger -amsili -amphy -amonette -amolsch -amistoso -amisano -amidei -amesquieto -amert -amento -ameling -amelang -ambroz -ambrosone -ambres -amble -amberson -ambeau -amati -amargo -amancio -amailla -amadi -alzugaray -alvorez -alverest -alven -alvarengo -alvalle -alvacado -alummoottil -alukonis -alu -altwies -altum -altringer -altop -altheimer -altew -alterio -alsman -alsdon -alsbrooks -alsandor -alrich -alrais -almario -allor -allocca -allnutt -allmand -allhands -allgaeuer -allessi -allenbrand -allemond -allegre -allcorn -allbones -allamong -allaband -algeo -alge -alfreds -alfera -alexzander -alexiou -alexaki -alexader -alevedo -alerte -alekna -aleizar -alegi -alegar -aleff -alecca -aldrege -aldi -aldarondo -alcosiba -alcombright -alce -alcaoa -alcaide -albriton -albrekht -albracht -alberthal -alberro -alberda -alattar -alar -alampi -alamos -alaibilla -alacano -akuchie -akram -akinyooye -akiereisen -aimbez -ailstock -ahyou -ahrenholtz -ahonen -ahmau -ahlstedt -ahle -ahlborn -aharonof -aharon -ahal -aguino -aguillera -aguiler -agueda -aguallo -agrios -agriesti -agricola -agreste -agrela -agre -agney -agne -agliam -agerton -afoa -aflalo -affelt -affagato -afan -aemmer -adzhabakyan -ady -adside -adrovel -adrid -adonis -adleman -adle -adjutant -adesso -adels -addo -adamiak -acron -ackins -ackies -achziger -achzet -achekian -ache -acfalle -accetturo -abubakr -abson -abramowski -aboytes -aboulissan -abling -ablin -ablang -abke -abetrani -abernatha -abela -abeb -abdin -abdelwahed -abdella -abdeldayen -abdel -abbinanti -abbay -abbadessa -abaya -abaunza -abatti -aasby -aaland -aaby -zysett -zwinger -zweier -zuziak -zusman -zuro -zurkus -zurheide -zurawik -zuniega -zumot -zullig -zukowsky -zukof -zukerman -zuclich -zuchara -zubrzycki -zuberbuhler -zuazo -zsohar -zschoche -zrimsek -zoutte -zotos -zorzi -zoroiwchak -zorens -zoquier -zonia -zone -zondlo -zomora -zombro -zombory -zombo -zomberg -zolman -zollar -zolinski -zolinas -zoellick -zoelle -zoebisch -zodrow -zoda -zobell -zmiejko -zlotnick -zlatkin -ziyad -ziter -zita -zissler -zisser -zirin -zircher -zipse -zipkin -zipay -zinni -zinkl -zimit -zimba -ziman -ziler -zilahi -ziko -zihal -zieske -zieser -zientara -ziencina -zielonko -ziek -ziehm -ziego -ziegenhagen -ziedan -ziebold -zidzik -zickuhr -zicari -zibert -zibelli -ziak -ziadie -zezima -zeyadeh -zeto -zetes -zerzan -zerring -zerom -zerck -zerbel -zentgraf -zenker -zener -zenbaver -zena -zemon -zemjanis -zeminski -zelmar -zellous -zellefrow -zelkind -zeleny -zelenko -zeis -zeimetz -zeimantz -zeilman -zehnpfennig -zehe -zeegers -zeckzer -zebell -zebel -zeals -zdrojkowski -zazozdor -zaxas -zawadzki -zavatson -zavadoski -zatko -zastawny -zaspel -zarzuela -zarycki -zarucki -zart -zarriello -zarozinski -zarnick -zarkin -zaritsky -zarella -zappolo -zappile -zappavigna -zapoticky -zapico -zapato -zapatas -zanueta -zanter -zanola -zanis -zaneski -zanco -zamzam -zamperini -zamparini -zampaglione -zamostny -zammiello -zammetti -zambotti -zamborsky -zam -zalwsky -zakarian -zaituna -zaitlin -zaidel -zaic -zaibel -zahri -zahradka -zahra -zahorchak -zaharchuk -zagorac -zagen -zaffina -zaffalon -zadra -zadow -zador -zadd -zacharia -zacharewicz -zablonski -zabka -zabik -zabielski -zabek -yuzn -yuste -yusi -yurkanin -yurich -yurchiak -yungclas -yungbluth -yunan -yuki -yueh -yucha -yslava -yrigollen -yragui -ypina -yozamp -yovino -yovanovich -yournet -younkins -younglove -younglas -youket -yosko -yoshimori -yorton -yorn -yorkman -yorio -yorgey -yoquelet -yonkoske -yongue -yonge -yoney -yonemori -yonek -yokiel -yokely -yoders -yo -yngsdal -ylonen -yilma -yidiaris -yezek -yestramski -yessios -yeskey -yerry -yerly -yerbich -yenz -yenney -yenner -yenglin -yengich -yendell -yeldon -yekel -yeisley -yeilding -yegge -yeend -yeeloy -yearicks -yeamans -yeakle -ydara -ybos -yballe -yavorsky -yater -yasutomi -yasinski -yarzabal -yarrell -yarish -yanoff -yannotti -yankovitz -yanity -yanetta -yandura -yancik -yanan -yanai -yamnitz -yammine -yamkosumpa -yakulis -yaklich -yakel -yahraus -yahna -yahl -yagoudaef -yagin -yagecic -yaftali -yafei -yafai -yablonsky -xander -wzorek -wykes -wydryck -wydo -wydler -wycuff -wyborny -wurts -wurgler -wuolle -wunderly -wun -wulkan -wuitschick -wuestenberg -wuerz -wuellenweber -wucherer -wublin -wubbel -wrotten -wrinkles -wriedt -wrenne -wreede -wraggs -woyahn -woulard -woudenberg -woskobojnik -wosher -wortinger -worstell -worst -worner -worn -wormely -worlow -workings -workinger -wootan -woolhouse -wooleyhan -woolcott -woodliff -woodert -woodend -woodburg -woodand -women -wombolt -wolzen -wolthuis -wolsted -wolsky -woloszczak -woller -wolkowski -wolkowiecki -woliver -wolhok -wolfsberger -wolfred -wolffe -wolfertz -wolbeck -wokwicz -wojtowich -wojtecki -wojnaroski -wojeik -woiwode -wohlwendi -wohlschlegel -wohlrab -wohld -woester -woernle -woelzlein -woelfle -wodskow -wlosinski -wlodyka -wlazlowski -wlach -wizar -wiuff -witvoet -wittstruck -wittry -wittliff -witterstauter -witsell -witosky -withy -witherbee -withenshaw -witczak -wisterman -wisnosky -wisniowski -wiskowski -wisk -wisinger -wisenor -wischner -wisbey -wirtjes -wirght -wirf -wipprecht -winzler -winzenried -wintringham -winterton -winterfeldt -winterbottom -winsted -wins -winninger -winning -winney -winnewisser -winners -winnegan -winklepleck -winkleblack -winkelpleck -winkeljohn -winkelbauer -winingear -winikoff -wingstrom -winett -winesickle -winesberry -winek -windmeyer -windhurst -windam -wimpey -wiman -wilts -wiltjer -wilterdink -willrett -willour -willmes -willmann -willinsky -willington -willigar -williama -willegal -willcoxon -willand -willame -willaby -wilkowitz -wilkers -wilison -wilis -wilgocki -wilging -wilfinger -wilebski -wildin -wildfong -wilderson -wildenthaler -wildeisen -wildauer -wilcinski -wilansky -wilabay -wikins -wikert -wik -wiinikainen -wiggains -wigen -wieto -wiess -wiesman -wierzba -wierschen -wierschem -wiehe -wieger -wiederwax -wiederin -wiede -wieciech -wiechert -wiechec -widrig -widowski -widmaier -widlak -widdoes -wickus -wicketts -wickemeyer -wicka -wicinsky -wibeto -wibberley -wibbenmeyer -wiatrak -wiatr -wiand -whyman -wholly -whittley -whittiker -whitteker -whitset -whitmyre -whitmeyer -whitheld -whitesinger -whitemore -whitacker -whistle -whisker -whisenton -whippie -whipp -whildin -whigum -whiby -whelton -wheeington -whan -whaler -whal -weyhrauch -wewerka -wetterauer -wetselline -wetklow -westwater -westrom -westre -westhouse -westervoorde -westergaard -westerbeck -westcote -westaway -wesselink -wesselhoft -weslowski -weslow -wescovich -werthman -wershey -werries -wernli -werning -werma -werking -wenzell -wentzloff -wentcell -wenstrand -wensky -wennersten -wenman -wengren -wener -weneck -wendy -wendte -wenderoth -wend -wenclawiak -wence -wemark -weltmer -welms -welman -wellendorf -welfel -weitkamp -weith -weiszbrod -weissmann -weissert -weisse -weissbrodt -weismiller -weisiger -weisenhorn -weisenfluh -weisend -weisenberg -weisdorfer -weisberger -weirather -weinzinger -weinzimer -weinzetl -weintz -weinand -weiker -weikal -weik -weigman -weigleb -weigart -weidenheimer -weiden -weickum -wehring -wehausen -weglin -weghorst -weeth -weeter -weenum -weelborg -weegar -weeber -wedwick -wedner -wedlow -wedlock -wedi -wedgworth -weckenborg -wechselblatt -webbs -webbink -weavil -weatherley -weatherill -wearrien -wearly -weagel -weadon -waymer -wayde -waybill -wavra -waughtel -waughtal -wauch -watzke -wattson -watrs -watral -watne -waterston -waszmer -wasylow -wasyliszyn -wassermann -wassenberg -wassenaar -waskow -waskey -waska -washurn -washup -washuk -washnock -washman -washinski -wasem -wartman -warsme -warsing -warschaw -warsager -warpool -warneka -warnasch -warmbier -warley -warick -warholic -warhola -warhol -warens -wareheim -wardrop -wardon -wardman -wardinsky -wardian -wappel -wanvig -wanser -wanschek -wanland -waninger -wanders -wampol -walzier -walvoord -walto -waltenbaugh -waltemath -waloven -walman -wally -wallravin -wallor -wallinga -walles -wallentine -wallenda -walleck -wallbrown -wallberg -wallbank -walland -wallaker -wallaert -wallack -walkinshaw -walking -walicki -waldrope -waldmann -waldenberg -walczynski -walchli -walbrecht -wakula -wakham -wakenight -wakeling -waitkus -waisman -waisath -wainman -wahoske -wahner -wahlenmaier -wahid -wagon -waggaman -wagenheim -waganer -wafula -waeyaert -waetzig -waelti -waeckerlin -waddouds -wackman -wackerbarth -wachsmuth -wabasha -vyhnal -vuturo -vulgamott -vukich -vrias -vranich -vrablic -votraw -voter -votaua -voskowsky -vorwaller -vorholt -voracek -voong -vonwagoner -vonstaden -vonsoosten -vonkrosigk -vongxay -vongvivath -vongunten -vongsakda -vongal -vonfeldt -vondohlen -vonderkell -vonbraunsberg -vonarx -volpert -volper -volpa -volmink -vollmering -volking -volkers -volkens -volin -volesky -volckmann -vojta -voita -voights -vogtman -vogtlin -voglund -vogland -vogenthaler -vogelpohl -vogds -voetmann -voedisch -vodder -voce -vlk -vlasaty -vlasak -vlahovich -vizza -vizuete -vivolo -vittum -vittek -vitorino -vitkus -vititow -vitera -vitantonio -vitaniemi -visvardis -vissman -visovsky -visosky -visocsky -visnosky -visnocky -viscarro -visaya -virts -virkler -virgili -virgie -virgel -virelli -viramontas -viorel -vintinner -vintimilla -vinsel -viniegra -vinck -villot -villenas -villemarette -villecus -villaquiran -villane -villalouos -villaescusa -vilkoski -vilkama -vilca -vilaro -vilardo -vilandre -viken -vigus -viguerie -vigorito -vigario -viessman -viesselman -viesca -vierthaler -vierps -vientos -vienneau -vidler -victorica -vickey -vicioso -vichidvongsa -viccica -veysey -vespia -veselic -verzi -versele -veroba -vernet -verlotte -verigan -verhaag -vergamini -verga -verfaille -verela -vere -verdine -verdiguel -verd -verbridge -verble -verbit -verbilla -verbasco -ventur -ventrice -ventre -ventors -venth -venosh -vennari -venkus -veninga -venible -venghaus -venetos -venere -veneable -vendelin -vemura -velzeboer -veltre -veltin -veloso -veles -vele -veld -veitz -veitenheimer -vein -veillette -vegher -vegetabile -vegar -veerkamp -veen -vecino -vebel -veater -veader -ve -vayon -vayner -vavricek -vauter -vaulx -vaughner -vaudreuil -vaubel -vattikuti -vathroder -vatch -vastola -vastardis -vassure -vassil -vassie -vasseur -vassen -vasquiz -vasaure -varvil -vartanyan -varron -varro -vargis -varesko -varda -varanese -varakuta -varagona -vanzante -vanyo -vanwyngaarden -vanwassenhove -vanvolkenburg -vanvalen -vantuyl -vantil -vanta -vanstrom -vanslooten -vansicklin -vanscoik -vanschaick -vanruiten -vanostberg -vanorsdol -vanolinda -vanoflen -vannuland -vannover -vannorsdell -vanniello -vanni -vanner -vanmarter -vanleuvan -vanlaar -vankilsdonk -vankammen -vanhevel -vanheukelem -vanhee -vanhauen -vanhamlin -vanhamersveld -vangyi -vangompel -vangoff -vangerbig -vangelos -vanfossan -vanez -vaneffen -vandygriff -vandy -vanduynhoven -vandunk -vandorien -vandon -vandiest -vandeweert -vandevort -vandevere -vandeveble -vandestreek -vandesteeg -vanderwyk -vanderwood -vanderwilt -vanderwege -vanderweerd -vanderweel -vandertuig -vanderstappen -vanderschoot -vandermoon -vanderkaaden -vanderhoot -vanderboom -vanderau -vandenacre -vandemortel -vandeman -vandelaare -vandebrake -vanconant -vancleaf -vanbogelen -vanbenthuyse -vanbeck -vanasselt -vanaprasert -vanandel -vampa -valseca -valree -valot -valorie -vallimont -vallie -vallentine -vallelonga -vallario -vall -valgren -valer -valenzvela -valentyn -valenstein -valenciana -valderamo -valcin -valcho -valakas -vaksman -vakil -vaka -vajgrt -vaissiere -vainio -vaiko -vaghy -vaghn -vafiadis -vafiades -vaeza -vaeth -vadasy -vaclavik -vacio -vaci -vache -vaccarino -vacante -uzun -uxa -uvalles -utvik -uttley -ustico -usman -usina -ushioda -ushijima -uscio -usack -urse -urrey -urreta -urraca -urness -urlanza -uriostejue -urik -urenio -urdiano -urbieta -uptegraft -uppencamp -unterkofler -unnold -unnewehr -unkn -uniacke -unglaub -unck -umnus -umezawa -umbel -ultseh -ultreras -ulses -ullum -ulisch -ulicnik -ulich -uleman -ukich -uken -uhrin -uhrhammer -uhles -uhlenhopp -ugaz -ugaitafa -ueki -uebersax -udinsky -udicious -ucha -uccio -uc -ubry -ubiles -ubertini -ubence -tyssens -tysseling -tyrance -tynio -tylman -tydings -tydeman -twohatchet -twito -twillie -twiet -twiest -tweet -tweddell -twait -tvedt -tuxbury -tuukanen -tutuska -tutoni -tutela -tushoski -turvaville -turturo -turrill -turrie -turpiano -turomsha -turocy -turnpaugh -turnow -turnmyre -turnier -turkmay -turkasz -turinetti -tureson -turdo -turcio -turbiner -turbide -turber -turbe -turansky -tupy -tuppen -tuplano -tuorto -tunon -tunget -tunby -tun -tumolillo -tumminia -tumbleston -tullison -tulis -tuliau -tukuafa -tukis -tujague -tuia -tugade -tuffin -tuesburg -tuerk -tuer -tuenge -tudruj -tudman -tudisco -tuccio -tucay -tuberman -tsuruda -tsuchiura -tsuchida -tsistinas -tshudy -tschirhart -tschache -tsantakis -trzaska -trythall -tryninewski -truont -trumpp -truka -truiolo -truglio -trueluck -trudo -truchon -trucchio -trube -truan -troxil -trowel -trovinger -trotz -trotto -trosen -troost -tronzo -tront -trometter -trombino -tromba -trollope -troke -trojanovich -trojak -trohanov -trogstad -troe -trocchio -trobridge -trobough -trnong -trivane -trippel -trimnal -trimis -trimino -trilt -trillas -trillana -triglia -trigillo -trifone -triffo -trifero -tridenti -tricoli -tricamo -tribue -triblett -trevithick -trevisone -trevis -trevillian -trevethan -treves -treusdell -tretola -tretina -tretera -tressel -treola -trentz -trento -trentman -trenor -trennell -trend -trenchard -tremore -tremillo -trembinski -trelles -treister -treine -treible -treff -tredinnick -treder -trebon -trebesch -trear -traviss -traux -trautner -trausch -traum -trattner -trass -traphagen -trapeni -trapalis -traner -tramonti -trainham -traicoff -trahern -traffanstedt -trachsel -tracewell -trabold -trabazo -tozloski -toyota -toyn -towse -townsand -towels -touton -toussand -toupe -touney -toudle -touchard -touby -touart -totzke -tototzintle -totino -toting -tossie -tosco -tosch -tortu -tortolano -tortelli -torruellas -torros -torrion -torrillo -torrico -torreblanca -torrano -torongeau -toromanides -tornincasa -torey -toren -torbus -toquinto -topolewski -topoian -topness -toplistky -topliffe -topal -topacio -toothacre -tooms -toolsiram -toolan -tookmanian -tonzi -tonti -tonschock -tonsall -tonrey -tonnesen -tonnar -tongate -tonetti -tonelson -tonder -tonai -tomspon -tomski -tomshack -tomkus -tomka -tomidy -tomichek -tomeldan -tomehak -tombleson -tomasson -tomasic -tomash -tomanek -tolontino -tollin -tollerud -tollefsen -toline -tokley -tokkesdal -tohen -togashi -tofolla -toepperwein -toeller -toelke -toedebusch -todt -todoroff -todor -todesco -toboz -tobolski -toaston -toa -tlumacki -tlatenchi -tlatelpa -tlamka -tjandra -tix -tivis -tivar -titterness -titone -titler -tith -tisi -tish -tisdel -tisdal -tischner -tipre -tippey -tipold -tinucci -tintinger -tinnerello -tinn -tinlin -tinger -timus -timothe -timons -timonere -timon -timenez -timchula -timbrell -timas -timar -tilzer -tilus -tilt -tilow -tillou -tietge -tieng -tichnell -tichi -tibor -thy -thury -thurness -thurlby -thurby -thuney -thuma -thull -thruthley -throssell -thress -threlfall -thrapp -thrams -thraen -thouvenel -thorstenson -thorsness -thoroughgood -thornborough -thormaehlen -thorade -thonney -thompon -thometz -thomeczek -thomases -thomae -thoburn -thobbs -thivener -thim -thilmony -thiengtham -thielges -thieklin -thidphy -thibaut -thibadeau -thew -theule -theuenin -thepbanthao -theos -thell -thelin -thelemaque -theinert -theeman -theden -thebo -thansamai -thanos -thangavelu -thanem -thanasouk -thanas -thamann -thaman -thalls -thaller -thall -thadison -tewolde -tewa -teuteberg -teteak -testolin -tessendorf -tess -tesmar -teschler -terwey -tertinek -terstage -terrone -terrible -terrian -terrezza -terracciano -terp -teroganesyan -termilus -terinoni -teri -terhorst -terherst -terazes -teravainen -teque -teoh -teodoro -tention -tenore -tenofsky -tenn -tenhoff -tenhaeff -tengben -tenerovich -tener -tenda -tenario -tempelton -temoney -teman -tellefsen -telkamp -telgen -teles -telch -telander -teklu -teixeria -teissedre -teisberg -tehney -tegner -tegan -teehee -teder -teddy -tecuanhuey -techau -tecchio -teakell -teager -taylar -tayan -tawwab -tavolieri -taverab -tavaris -tavana -tauzin -tautolo -tausch -taula -taualii -tattrie -tatsuhara -taton -tatge -tatel -tastet -tassa -tasma -taskey -tashiro -taruer -taruc -tartsah -tarski -tarrenis -tarnoff -tarmey -tarman -tarling -tarella -tarduno -tarboro -tarbert -taray -taras -taque -tapian -taphous -tapaoan -tanzi -tantum -tannous -tankxley -tankesly -tanh -tangney -tangerman -tangaro -tangari -tangabekyan -tandus -tande -tamkin -tami -tamburrelli -tamburino -tamborlane -tamai -talvy -talsky -talleut -tallacksen -taliferro -talicska -talentino -talaro -talamentez -talaga -tako -taker -takara -takai -tajudeen -tajima -taitague -taillefer -tail -tahon -tagupa -taglauer -tagalog -tagaloe -tagala -tagaca -tag -tafiti -tafelski -taetzsch -taegel -tadt -tadgerson -taddio -tadd -tacopino -tacneau -tackette -tackes -tacke -tachauer -tacason -tabuena -tabion -tabatt -szysh -szymonik -szwede -szulimowski -szpak -szoka -szocki -szklarski -szitar -szewc -szesterniak -szermer -szerbin -szczepkowski -szczeblewski -szachewicz -szabat -syzdek -syrrakos -syria -sypult -sypolt -synovic -syner -symkowick -symeon -sylney -sylla -syktich -syer -swopshire -swolley -swithenbank -swiss -swirczek -swingler -swingen -swinerton -swinea -swille -swierenga -swierczynski -swieca -swicord -swerdloff -swenceski -swelt -swelgart -swehla -sweets -sweem -swed -sweatmon -sweatfield -swatman -swartzman -swartzell -swantak -swanston -swancutt -swanay -swamm -swam -swait -swainey -swaggart -swabe -swabb -svobodny -svetlak -svennungsen -svedine -svatos -svare -svancara -suydan -suwannakintho -suvada -suttin -suttee -sutkus -sutic -suthers -sutcliff -suszynski -sustar -sustaire -suskay -susany -susanin -suryanarayana -survis -surpris -suro -surminec -surguy -surgoine -sures -suren -surbella -suomela -sunyich -sunniga -sunier -sumrow -sumption -summerlot -sumerix -sumeriski -sultani -sulley -sullenberger -sulipizio -sulin -sulima -sulikowski -sulentic -sulejmanovski -sugabo -suffield -suentenfuss -suehs -sudekum -sudbrock -sucre -suchocki -suchla -sucgang -succar -subijano -subich -subert -subera -suaava -stuttgen -sturner -sturk -sturgul -sturghill -stukowski -stuesse -stuermer -stuer -stuebe -studyvance -studnicki -studniarz -studmire -studdiford -stucke -stublaski -stubby -stubbendeck -strzalkowski -struzzi -struzik -strubel -strozewski -strowe -strous -strotz -strombeck -stroker -strohmayer -strogen -strizich -strini -stringari -strimling -strimback -strife -strid -stricklind -stribley -strevels -strevell -streva -stretz -strenge -stremi -strelecki -strejan -streitnatter -streff -strefeler -streeton -stred -strazisar -strayhand -strayham -stravinski -strausz -strausner -strauhal -straugh -strasters -stranford -strandburg -stranahan -strahin -stradtner -stracquatanio -strachman -straathof -stpierrie -stoviak -stovell -stoutenger -stoudymire -stoud -stouch -stouall -stottlar -stotko -stothard -stotesbury -stotesberry -storto -stores -storage -stoos -stonich -stolzenburg -stolly -stolebarger -stolcals -stolar -stoklasa -stogden -stoffey -stofferan -stoey -stoett -stoeltzing -stoel -stoeke -stoeffler -stoeckert -stoebner -stoeberl -stodomingo -stodder -stockwin -stockon -stocki -stockebrand -stocco -stobie -stlouise -stives -stirn -stire -stipanuk -stingle -stinespring -stinehour -stinebuck -stindt -stimple -stimler -stilwagen -stiltz -stilner -stillie -stigsell -stiern -stiens -stiehm -stiegman -stiegemeier -stieb -stidstone -sticklin -sticklen -stickford -sthole -stford -stflorant -steury -stetzenbach -stetke -sterpka -sterker -sterkenburg -sterkel -stephensen -stepan -step -stenz -stenn -stendeback -stenbeck -stenback -sten -stemmler -stelzl -steltzer -stellpflug -stellfox -stelk -stele -steinruck -steinmeiz -steinkuehler -steinkirchner -steinkellner -steinerkert -steine -steinbrink -steinbauer -steik -steighner -steiert -steich -steibel -stehno -steggeman -stefl -stefford -steffa -stefanatos -steep -steenwyk -steenhoven -steelmon -steeg -steeb -stedronsky -steczo -stecklair -stechuchak -stechlinski -steber -stebe -stearnes -stearne -stea -stdenny -stchur -stayter -stawicki -stavrositu -staudenmeier -stattelman -statires -station -stathos -stathas -stasulis -stassen -stasny -staser -staschke -starweather -stars -starnaud -starley -starkman -starken -starich -starghill -starcevic -staplins -stapelman -stanzak -stanway -stanowski -stankowitz -stankaitis -staniec -stania -stangroom -stanesic -stanert -staneart -stands -standors -standifur -standeven -standaert -stancoven -stanclift -stancey -stanbaugh -stana -stammler -stamenov -stambach -stamatopoulos -stamas -stalberger -stakoe -stakley -stakkeland -stakemann -stainbach -stagowski -stagno -stagman -stagles -stagers -staffeld -staenglen -staehler -stadther -stadt -stadnik -stadick -stachurski -stace -stabs -stabley -stable -srygley -srinvasan -squarciafico -squair -spyrakos -spyies -spycher -spurger -spulick -spudis -spuck -sprygada -spruiell -spruance -sprowls -sprouls -sprong -sprole -springe -sprewell -sprengelmeyer -sprawls -sprauve -spragley -spotorno -sporysz -sporman -sporich -spoonemore -spoleti -spohnholz -splitt -splett -splatt -spiter -spirounias -spirk -spire -spinoza -spinn -spinetti -spinello -spinar -spilis -spiliakos -spigutz -spielvogel -spicknall -spicker -sperier -speraw -spennicchia -spene -spellane -spegal -spee -specken -spearow -spearmon -spayd -spartin -spartichino -spart -sparacina -spannuth -spanner -spanicek -spanger -spane -spakes -spadard -spacht -spacagna -sozio -soyke -sowl -sowden -sowada -sovel -souvannakhily -souto -southand -sourlis -soulliere -souhrada -sou -sotos -sothen -sosbe -sorzano -sorvig -sortland -sorokata -soro -sorlie -sorhaindo -sorell -sordia -sorace -soptick -soppeland -sophy -sopczak -sooy -soop -soomaroo -soolua -sonterre -sonsteng -sonnefeld -sonnee -sonka -songy -sondrup -sondles -sondheimer -sonderman -sonderegger -somvang -somsy -somrak -somoza -somogye -somo -sommons -sommar -somji -somilleda -somerfield -somdah -somayor -solwold -solverud -soltow -soltmann -solow -solorsano -solonar -solomen -sollors -sollitto -solliday -solito -solinas -solima -solies -solien -solich -solian -solhjem -solera -soldeo -solazar -solarski -solaita -soladine -sokul -sokotowski -sokolski -sokolowich -sojo -soito -soiro -soifer -softich -sofer -soechting -sodini -sodervick -soders -sodawasser -sockey -sobrio -sobieraj -sobeski -sobery -soberanes -sobenes -sobe -sobanski -soape -snowder -snorden -snode -snetsinger -snaples -snaer -snaders -smyrski -smyntek -smykowski -smutzler -smutny -smulik -smugala -smuck -smolnicky -smolinsky -smitty -smithe -smiling -smiler -smigiel -smerdon -smeja -smedes -smeathers -smarra -smar -smallmon -smallin -smallidge -slyton -slutsky -sluski -slovinski -sloter -slonecker -slomer -slogeris -slobodnik -sloanes -slipper -slingluff -slingland -sliney -slimko -sliman -slimak -slessman -slepski -sleppy -sleiman -sleaford -slaugenhaupt -slark -slackman -slaboda -skyes -skweres -skwarek -skubik -skrzypinski -skrebes -skrabanek -skovlund -skotnicki -skone -skonczewski -skold -skoien -skoczen -skobiak -skimehorn -skillpa -skillett -skillan -skildum -skibski -skibo -skevofilakas -skepple -skarzynski -skartvedt -skar -skapura -skaflen -skaer -skabo -sjulstad -sjerven -sizar -sixt -sixsmith -siwicki -sivills -sivilay -sivie -sivick -sivay -sivalia -sival -siurek -siuda -sittre -sittner -sittman -sitterding -sitosky -sitkiewicz -sistek -sista -sisomphou -sisofo -sisley -siskin -sisavath -sirpilla -sirosky -sirolli -siroka -sirna -sirico -sirhan -siravo -sipriano -sippy -siphan -siona -siok -sinrich -sington -singharath -singewald -singerman -sinarath -simple -simper -simor -simoniello -simonetty -simonet -simokat -simoens -simmond -simmes -simitian -simich -simerson -simensky -simcock -silvestrini -silvaggio -siluis -siltman -silovich -sillitoe -silkenson -siliezar -silevinac -silence -silbiger -silao -sil -sikarskie -siglow -siglar -sifre -sifontes -sifers -sievertsen -sieverson -sieve -sietz -siert -sieradski -sier -sielaff -sieja -siedner -siedel -siebenthal -sidorowicz -sidley -sidi -sideman -sicks -sickel -sickafoose -sicinski -sibounma -sibgert -sibeto -sibel -sibal -siar -siaperas -siami -sialana -shyne -shybut -shwab -shutty -shutters -shusterman -shurr -shurak -shuptrine -shupert -shummon -shulthess -shult -shulse -shullick -shulick -shulenberger -shuffleburg -shubov -shry -shrigley -shren -shrawder -showen -shoulder -shorthair -shopbell -shoobridge -shongo -shoman -shollenbarger -shoji -shofestall -shodunke -shober -shivy -shisila -shirvanian -shirakawa -shippen -ship -shinsky -shinnick -shinkel -shingleur -shingledecker -shindel -shimon -shimaoka -shilo -shillito -shillingsford -shilkuski -shiliata -shildneck -shikuma -shike -shigeta -shigemi -shifferd -shider -shibi -shettleroe -shetterly -sherville -sherrock -sherrange -sherraden -sherles -sherief -sherbon -shepperdson -shenker -sheneman -shene -shempert -sheman -shelvy -shelsy -shelkoff -shekels -sheirich -sheingold -sheidler -shehee -shefte -sheftall -sheerer -sheer -sheakley -shbi -shawber -shatek -shasky -shary -sharplin -sharperson -sharabi -shappen -shapouri -shapleigh -shapino -shaper -shanno -shandro -shanberg -shamsi -shammah -shamir -shamily -shalwani -shalla -shaline -shalhoub -shakoor -shakin -shahinfar -shahin -shahim -shahbaz -shaffren -shaffen -shadfar -shadding -shadazz -shaben -shabel -sgueglia -sgrignoli -sgammato -seykoski -seyb -sewyerd -seweall -sewade -severi -seveney -sevadjian -settlemyre -settlemires -settino -settimo -setterland -seton -setler -setias -seti -setchell -setaro -sestoso -sessin -sesser -serville -servi -servedio -serve -serravalli -sermersheim -serfoss -serfling -serey -seres -serens -serene -sercovich -serban -seratti -seratt -serasio -serandos -seraiva -seraille -sepvlieda -sepulbeda -septelka -seppelt -seppanen -seppa -senz -senst -sensor -sensmeier -sensing -senseney -sensenbrenner -senseman -seniff -sengvilay -sengun -senethavilouk -senesenes -senderling -sender -senavanh -semsem -semonis -seminario -sember -selzler -selvester -selusi -selnes -sellin -sellards -selkey -selic -selgrade -selesnick -selakovic -seiters -seit -seisler -seil -seikaly -seidenbecker -seibt -seibers -seiavitch -segreto -segonia -seggerman -segerman -segelhorst -seferovic -sefcheck -seering -seemer -seekford -seekamp -seegar -seedorff -seedborg -seebaum -sedanos -secundo -second -seckletstewa -sechang -sebranek -sebion -sebero -sebeniecher -sebasovich -searer -seara -seanger -seajack -seaholtz -seagers -seaforth -seacrest -seacat -seaburn -sdoia -sczbecki -scurci -scullin -scuito -scudero -scucchi -scsarpisnato -scro -scrivener -scriuner -scripps -scrimsher -scrichfield -screnci -scrape -scouller -scotts -scotting -scorgie -scollan -sciullo -scites -scicutella -scialpi -sciacchitano -schy -schworm -schwizer -schwister -schwipps -schwertfeger -schwerdt -schwerd -schwenzer -schwenneker -schwendeman -schwemmer -schweitz -schwarzlose -schwart -schwantd -schwadron -schutze -schute -schusted -schurk -schumachor -schulter -schultens -schulkin -schulist -schuit -schuering -schueren -schueneman -schuemann -schuchat -schuber -schubach -schrumpf -schroot -schroen -schroedter -schreuder -schreacke -schrayter -schrawder -schrauger -schraub -schrameck -schraff -schradle -schrab -schowengerdt -schossow -schopmeyer -schopflin -schop -schomin -schomas -schomacker -scholtens -scholin -schoggen -schoessow -schoepfer -schoenmaker -schoenig -schoelman -schoellkopf -schoell -schoeben -schoderbek -schockley -schnure -schnorbus -schnopp -schnobrich -schnitz -schnickel -schnibbe -schnepf -schnelder -schneidman -schneeberger -schnackel -schmollinger -schmoak -schmittou -schmiot -schmille -schmier -schmiel -schmiedeskamp -schmidtka -schmidlin -schmertz -schmerge -schmerer -schmelmer -schmeidler -schmautz -schmauder -schmatz -schmand -schmaling -schlund -schlumaker -schlotthauer -schlotte -schlotfeldt -schlote -schlossman -schloemann -schlindwein -schlimmer -schlieter -schlichenmaye -schleppy -schlenger -schleker -schleibaum -schleh -schlecter -schlaefli -schladweiler -schlabs -schirrmacher -schiralli -schinnell -schinker -schingeck -schindewolf -schimel -schilsky -schilk -schilder -schifko -schiffmann -schierenbeck -schierbrock -schielke -schieferstein -schiefen -schickedanz -schey -scheuren -scheuers -scherschligt -scherma -scherbring -scherbel -scheno -schenfeld -schells -schellin -schellermann -scheiern -scheiderer -schegetz -scheffrahn -scheffert -schechinger -schavone -schaunt -schaumann -schauble -schaubhut -schatzle -scharmann -scharler -scharbrough -schap -schanzenbach -schantini -schange -schandel -schammel -schallig -schaffter -schaffeld -schaffel -schafersman -schaen -schachterle -schachsieck -schabbing -scelzo -scelsi -scavo -scavetta -scaturro -scatenato -scarpitto -scarpitta -scarpato -scarpati -scarp -scarlato -scargall -scarfi -scantlen -scanneu -scannapieco -scanio -scandrett -scandalios -scancarello -scamehorn -scalzi -scallorn -scallion -scalet -scaiano -scaia -scagliotti -scace -sboro -sbarra -saysongkham -saysana -sayloe -saxinger -saxfield -sawtell -sawransky -sawhill -sawatzki -sawaia -savitch -savinar -savi -saven -savas -savaria -savakis -sava -sauveur -sausser -saurey -sauredo -saunas -saulsbery -sauger -sauerhage -sauerbry -sauce -sauby -satz -sattlefield -satmary -sathiraboot -satchwell -sat -sasuille -sashington -sasengbong -sasao -sarwar -sarrell -sarraga -saroop -sarnes -sarnacki -sarlo -sarks -sarkodie -sark -sargis -sargetakis -saretto -sarette -sarensen -sarcinelli -sarcinella -sarcia -saras -saranzak -saraniti -sarani -sarafian -saraf -sarac -sarabando -saporita -sapnu -sapko -saous -sanzenbacher -santti -santrizos -santoscoy -santomauro -santolucito -santis -santio -santilukka -santaloci -santagata -santaella -sanseda -sanquenetti -sanots -sanosyan -sann -sanmarco -sanlatte -sankovich -sanke -sankary -sankaran -sanislo -sanipasi -saniger -sangren -sanghez -saneaux -sandstedt -sandry -sandovar -sandos -sandone -sandness -sandlan -sandison -sandersen -sandborg -sanchz -sanchec -sancen -sanasith -samway -samuell -sampselle -sampieri -sampair -samoyoa -samowitz -sammut -samiec -samick -samele -sambucetti -samara -samantha -samanlego -salverson -salvature -saluto -saluja -saltourides -saltmarsh -salta -salsberg -saloum -salos -saloom -sallings -sallies -sallah -salisberry -salimas -salfelder -salesses -salen -saleado -saldvir -saldi -saldeen -salceda -salazan -salaza -salay -salandy -sakshaug -sakovitch -sakkinen -sakkas -sakiestewa -sakic -sakakeeny -saison -saisa -saintfleur -saide -saicedo -sahsman -sahli -sahler -sahlberg -sahagian -saggione -sages -sagendorf -safron -safar -saetteurn -saenphimmacha -sadhu -sadhra -saden -sadee -saddat -sackos -sachleben -saches -sachar -saccucci -sacane -sablone -sablock -sablea -sabiston -sabini -sabi -sabha -sabellico -sabaj -saadd -ryun -rysavy -rysanek -rylowicz -ryll -ryken -rygiewicz -rydalch -rychlicki -rybowiak -ryal -ruzycki -ruyz -ruwet -rutley -ruthenberg -ruszala -rusteika -rusteberg -russotto -russotti -russman -russek -russe -rusley -rusich -rushworth -rushman -rushforth -ruscitti -ruscio -ruschmann -ruschel -rusak -rupertus -ruoho -runzler -runyons -runswick -runfola -rumney -rummler -rumford -rumburd -rumbold -ruman -rulnick -rujawitz -ruhstorfer -ruhmann -ruhling -ruhlin -ruggiere -ruggero -rugga -rugama -ruffolo -ruether -ruesswick -ruell -rudnitski -rudnicky -rudish -rudicil -rudes -rudeen -rubow -rubloff -rubison -rubinow -ruberte -rubenacker -rubarts -ruballos -rubal -rozgonyi -rozga -rozenberg -rozas -rozance -roytek -rowsell -rowray -rowold -rowntree -rowlins -rowling -rowback -rovelto -rovella -rovack -rouzzo -rout -roussos -rounkles -roundabush -rouisse -rougier -rouff -roudybush -roucoulet -roubekas -rotstein -rothmann -rothhaupt -rothfus -rothenburger -rothbauer -rothacher -rotering -roszales -rossnagel -rossingnol -rossing -rosselle -roskovensky -roskop -rositano -rosine -rosich -rosettie -rosentrance -rosenthall -rosenkoetter -rosenheim -rosenbarger -rosekrans -rosebure -roseboom -roscow -roscorla -rosbozom -rosavio -rosacker -ropiski -ronzoni -rons -rondell -ronde -roncskevitz -romulus -rompf -romjue -romenesko -rombult -rombardo -romaniak -romandia -romanchuk -romag -rolseth -rollind -rollend -rolfsen -rolff -rolek -rokusek -rohs -rohowetz -rohlack -rohla -rogugbakaa -roguemore -rogosky -roginson -roggero -roggensack -roggenbaum -roggeman -roever -roetzler -roettgen -roessing -roerish -roemhild -roehling -roede -roeber -rodriuez -rodrigeuz -rodnguez -rodis -rodinson -rodine -rodemoyer -rodeigues -rodea -roddick -rodar -rodamis -rodal -rockymore -rockelman -rockafellow -rocho -rochlin -rochenstire -rocasah -roblow -roblodowski -robinzine -robinsons -robinso -robinault -robilotto -robichard -robeza -robertos -roberrtson -robblee -robante -roats -roatch -roaoo -roanhorse -roal -roacho -rizas -rivord -riveroll -riverman -rivel -ritzke -ritzie -ritums -ritson -ritchlin -ritari -ristaino -rissell -rissanen -risler -riskalla -risius -rishell -risha -risewick -risden -rische -riscen -risbeck -riquelme -ripoll -rioz -riofrio -riobe -rinnert -rinkus -rininger -ringland -ringhouse -ringelspaugh -rinebold -rindler -rinderle -rimm -rillera -riise -riippi -rightnour -rightley -riggings -rigger -riffee -rifenbery -riexinger -riesland -rieske -riesinger -rieley -riekert -rief -riedlinger -ridgnal -ridgle -ridgill -ridep -ridel -riddleberger -ridders -riculfy -rickford -richters -richmann -richlin -richiusa -richerds -richan -ricenberg -ricaud -ricardi -ribsamen -ribron -ribiero -ribero -ribbink -rhump -rhum -rhorer -rhoe -rhoan -rhoad -rhinerson -rhen -reznicek -reyner -reyne -reynaldo -reyelts -rewerts -rewakowski -revira -revils -revering -revera -revelli -revay -reuteler -reust -reuschel -reudink -retzloff -rethmeier -retek -retchless -retamar -ressel -respicio -respes -respers -resos -resetar -resenz -resecker -res -rerucha -requarth -reprogle -repoff -replin -repetowski -repasky -reola -renzoni -renzo -renyer -rentoulis -rentie -renouf -renosky -renigar -renert -rendler -rend -remondet -remis -remian -remele -remeder -rellama -rekus -rekemeyer -reives -reitter -reistetter -reinsvold -reinsfelder -reinowski -reinier -reing -reinen -reineccius -reindeau -reinbolt -reimnitz -reimmer -reihl -reihing -reigleman -reighley -reidherd -reidhaar -reichow -reibman -reial -rehse -rehmert -rehlander -reher -rehbock -regulski -regueira -regn -reginaldo -regelman -regar -refsal -refazo -reemer -reefer -redlon -redkey -redinbo -rediker -redig -redemer -redcross -redal -recuparo -recksiek -reckers -recidivi -rechichi -reburn -rebold -rebik -rebar -reavish -reaver -reavely -reash -reaollano -reagey -readinger -readdy -razon -rayyan -rayshell -rayow -rayome -rayhel -raychard -rayam -rawi -rawhouser -rawat -ravizee -raviele -ravago -rautenstrauch -raulino -raul -rauhecker -rauhe -raught -rauco -raucci -ratzloff -rattu -rattell -rattanasinh -ratsep -ratkovich -rathrock -rathel -rathai -ratana -rasual -rastetter -rastegar -rasset -raspotnik -raspa -rasool -rasole -rasley -raskey -rasico -rasavong -ras -rarogal -rarden -raptis -rappl -rapkowicz -rapisura -rapanot -rapalo -rapacki -ranweiler -ransonet -ransler -ranni -ranmar -ranks -ranildi -randgaard -randahl -ranch -ranaudo -ranah -ramsy -ramsour -ramshur -ramsby -ramrirez -rampy -rampulla -rampadarat -rampa -ramonez -ramler -ramlall -ramjhon -ramjan -ramirel -rametta -ramelli -ramelize -ramelb -ramdeo -ramcharran -ramaudar -ramal -ramagano -ramach -rakyta -rakus -rakestrow -rakers -rajk -rajas -rajaphoumy -raisley -raisler -raisin -rais -railes -raike -raigosa -rahoche -rahmes -rahib -rahaman -ragus -ragula -raguay -raglow -rafus -rafey -rafel -rafala -raethke -raemer -raef -raeder -radziwon -radwick -radwanski -radoslovich -radon -radmall -radlinski -radie -raderstorf -radej -raddle -raczak -racko -raciti -racioppo -racer -rabuse -rabsatt -rabjohn -rabito -rabey -rabeneck -rabehl -rabeck -rabbe -rabal -quivoz -quiver -quituqua -quitugua -quittner -quitter -quitero -quitedo -quirke -quiram -quiralte -quintard -quintania -quinnan -quinlivan -quilter -quillman -quillan -quilindrino -quiel -quidas -quicho -quibodeaux -quezergue -quezad -quettant -queros -querio -quercioli -quenzel -quencer -queller -quebral -quatrevingt -quashnock -quasdorf -quartuccio -quartiero -quartieri -quartaro -quarrell -quanstrum -quammen -qualheim -quagliato -quadnau -qua -qasba -qare -qadeer -pywell -pysher -pyros -pyfrom -pyfer -pyette -pychardo -puzon -putzer -putton -putcha -puskarich -push -purkhiser -purfeerst -puraty -puotinen -puntillo -punihaole -pundsack -puna -pulwer -pullus -pullara -puita -puhrman -puhr -puhl -puffenberger -puerto -puent -pudenz -pucket -pucker -public -ptaschinski -psuty -psuik -psilovikos -przybyl -przeniczny -prye -prybylski -prukop -pruessner -provosty -provorse -provins -provino -provenzo -provent -protich -protas -pross -prosienski -prosenick -proscia -prosak -propheter -promisco -promer -prokup -prokos -progl -profeta -profera -profancik -procsal -prociuk -prochak -proch -procaccino -prizio -privado -pritzker -pritzel -pritcher -pritchell -prisoc -priolean -prinn -prindiville -princevalle -primos -prima -prigg -priego -priegnitz -prible -pribish -pribbenow -prevot -prevet -pretzer -pretzel -prety -presume -prestley -prestipino -presnal -preslipsky -presiado -prendes -prejsnar -preist -preissner -preisner -preheim -prefontaine -predom -precissi -prechtel -precht -prause -pratten -prately -prante -prang -pramuk -praley -prakoth -prach -pozar -poynton -powskey -powsey -powlen -powells -pourvase -pourner -pourier -pourchot -pouncil -poulisse -poulet -pouk -pouche -potulski -pottkotter -pottichen -potteiger -potsander -pothoven -potanovic -potaczala -posusta -posto -postles -postiglione -postemski -possinger -possick -possehl -pospicil -poskitt -poska -posis -portnoff -portello -porris -porres -porep -porell -porat -popularis -poppo -popadiuk -pooyouma -pooschke -poort -poolheco -ponsler -poniatowski -pomykala -pompi -pomilla -pomiecko -pomfret -polzer -polvino -poltrock -polton -polter -polski -poloskey -pollot -pollnow -polivick -polisoto -polintan -poliks -polikoff -policicchio -policastri -policare -poletski -polee -poledore -polacco -pokrzywa -pokallas -pointe -poinelli -pohorilla -pohlson -pogozelski -pogorelc -poellinetz -podwoski -podeszwa -pod -pocklington -pociengel -pochatko -pocekay -pocai -poague -pniewski -plutt -plumbar -pluma -plotzker -plotrowski -ploskunak -ploennigs -plimpton -plienis -plewinski -plett -pleskac -pleshe -plesant -pleppo -plegge -playl -plavnik -plateroti -plateros -plastow -plassmeyer -plassman -planer -plance -planagan -plan -plamondin -plainy -plackett -placino -plachecki -placeres -plaas -pjetrovic -pizzulo -pizzini -pizzico -pivec -pitpitan -pitorak -pitocco -pitka -pitch -pitcairn -pitarresi -piszczek -pistelli -piskel -pisicchio -piserchio -piscitello -pirrotta -pirrello -pirre -pirozhkov -pirollo -pirieda -pipper -pipia -pioske -piombino -pinzino -pintello -pinsonneault -pinsoneault -pinn -pinkenburg -pinke -pindell -pinchock -pince -pimple -pim -piluso -pillon -pillarella -pillado -pilkey -pilette -pilchowski -piirto -pihlaja -piggie -piganelli -piety -pietrowicz -pietrok -pietrini -piesco -piertraccini -piersiak -pierrot -pierdon -pierannunzio -pientka -pielow -piela -piek -piegaro -piefer -piecuch -pidro -picotte -pickman -picketts -picketpin -pickerell -pickenpaugh -pichoff -picher -piccuillo -piccirilli -piccinone -piccinich -piccillo -picchetti -piatz -piao -piacitelli -piacenza -phyfe -phurrough -phuong -phuma -phuaphes -phramany -phoubandith -phommajack -phom -pho -phimsoutham -phimpradapsy -philmore -phillies -philliber -philio -phildor -philabaum -phi -phetsanghane -phetphongsy -phelp -phaymany -pharmer -pharao -phanthavongsa -pfrommer -pfoutz -pforr -pfnister -pflugradt -pflugrad -pfleuger -pfingsten -pfifer -pfeiffenberge -pfefferkorn -pfanstiel -pfander -pfalmer -pfaffinger -pezley -pezina -pezez -peyser -pevahouse -petula -petton -pettipas -pettijohn -pettigrove -pettay -petrouits -petropulos -petronzio -petronella -petrilli -petriccione -petric -petrecca -petralia -petr -petka -petigny -petesic -petersik -petek -petanick -petalcu -peszynski -pessolano -pesses -pesicka -peschong -pesarchick -pesantes -perza -pertea -persyn -persten -persch -perrota -perrot -perriott -perring -perrilloux -perrette -perrelli -perrell -pernod -pernin -perniciaro -pernesky -permann -perlson -perkiss -perina -perie -perencevich -peredz -percey -peraha -peplau -pepka -pepion -penzien -penzel -penya -penwarden -penticoff -pensky -pensick -pensa -pennelle -penird -penhallurick -penha -pengra -penderel -pendegraft -pencak -pemelton -peluse -pelnar -pellom -pellitteri -pelligrino -pellietier -pellicone -pelletiu -pellet -pellam -peleg -pekas -pekara -pehowich -peha -pegeron -peffly -pefferkorn -peetoom -peerzada -peecha -peduzzi -pedralba -pedez -pedeare -pecinousky -pechaira -pecatoste -pecarina -pecararo -pearyer -peacy -peachay -payseur -payor -payna -payant -payamps -pax -pawluch -pavliska -pavis -pavelski -pavella -pav -pauza -pausch -paulshock -paulseth -paulmino -paulic -paulauskis -paulauskas -paulas -pauker -paugsch -patzner -patzke -patwell -patuel -pattyre -pattinson -pattengale -patriquin -patrin -patrias -patria -patolot -patik -paterniti -patellis -patches -patcher -patanella -pataki -patajo -pasvizaca -pastures -pasto -pastian -passerino -passer -paskow -pasket -pasinski -pasho -pashea -pashal -pascorell -pascoal -pascanik -pascall -pasaya -pasana -paruta -party -partman -partipilo -partenope -partelow -part -parsygnat -parsh -parsells -parrotta -parron -parrington -parrin -parriera -parreno -parquette -parpan -parone -parnin -parms -parmantier -parkos -parkhouse -parizek -paripovich -parinas -parihar -parhan -pargman -pardoe -parayuelos -paravano -paratore -parara -papranec -pappajohn -paponetti -papitto -papike -papiernik -papciak -papantonio -papanikolas -papania -papan -papale -pap -paongo -paola -panzica -panzella -panyko -panuccio -pantosa -pantoliano -pantelakis -panrell -panowicz -panora -pankiw -pankake -panitz -panila -panias -paneque -panela -paneczko -pandola -panahon -panah -panagoulias -panagis -paluszynski -paluk -paluck -palu -paloukos -palombit -palmios -palley -pallant -pallansch -pallafor -palisbo -palchetti -palazola -palas -palacois -pakonen -pajerski -paillant -pahk -pagni -pagnello -paglio -paga -pafel -padol -padgette -padeken -paddio -paddilla -paddack -padavich -pacquin -packineau -pacior -pacholec -pachlin -pachla -pach -pacenta -pacek -pacapac -pacana -paben -paarmann -paalan -ozer -ozane -ozaine -ozaeta -oz -oyston -oyellette -oxton -oxnam -oxenrider -oxborough -owers -ow -ovit -ovesen -overstrom -overshiner -overmire -overley -overkamp -overdick -overbough -ovdenk -ovadilla -ouye -outzen -ousdahl -oury -ourth -ounsy -ouellete -oudker -otutaha -otuafi -ottrix -ottogary -ottino -ottilige -ottenwess -otiz -othoudt -otex -otega -osvaldo -ostwald -ostrzyeki -ostrum -ostroot -osterhaut -ostendorff -ostenberg -ostasiewicz -osswald -ossola -osowicz -osorno -osollo -osol -osnoe -osmus -osmanski -osias -oshman -osentowski -osden -osche -osbeck -orttenburger -ortolf -orto -ortga -orrego -orpin -orozeo -orochena -orobona -oroark -ornelos -ornedo -orne -orm -orlove -orlosky -orlof -orlinsky -orlinski -orlin -orizabal -oriti -orion -origer -orie -orhenkowski -orford -orff -oreskovich -orellama -oreily -orehek -oreb -ordazzo -ordahl -orcholski -orce -oras -opula -opstein -oppliger -oppegard -opichka -opher -opet -opalicki -opaka -ooton -onyeanus -onwunli -onukogu -onisick -onifade -oneale -ondik -ondic -ondersma -omullan -omoto -omo -omlin -omli -omersa -olverson -olveira -olvedo -olowe -olona -olnes -olloqui -olliver -ollhoff -ollendick -olkowski -olivid -olivers -oliveres -olivarra -olinghouse -oligee -olgvin -olfers -olewinski -olewine -oleveda -oleskiewicz -olejarski -olecki -olde -olckhart -olbrish -olay -olarte -okwuona -okuley -okula -okorududu -okoren -okoli -okihara -okerson -oken -ojard -ojanen -oines -oilvares -oieda -ohrnstein -ohren -ohmit -ohmie -ohlmacher -ohlenbusch -ohlen -ohaver -oharroll -ogwynn -ogunyemi -ogram -ogilive -ogen -ogbonnaya -ogasawara -ogans -ogami -oflahrity -offret -oen -oeler -oehrlein -oehrle -oehmke -oehmig -oeftger -oeder -odougherty -odorizzi -odomes -odin -odien -odhner -odess -odenheimer -ocus -ochsenbein -ochinang -ochiai -ochalek -occhino -ocacio -obnegon -oblow -oblinger -obiano -obery -oberson -oberpriller -obermuller -obermoeller -oberholzer -oberhaus -oberdier -oberdick -oaxaca -oar -nysether -nykiel -nygaro -nycum -nyahay -nwankwo -nwakanma -nwadiora -nwabeke -nuzenski -nusz -nunnelee -nunmaker -nuniz -nunery -nulisch -nuetzman -nuessle -nuesca -nuckoles -nuccitelli -nucci -nozum -nozick -nowzari -nowosadko -nowley -nowitzke -novitsky -novitski -novitske -novikoff -novida -novetsky -novelly -novellino -novara -nouth -noullet -noud -notwick -notowitz -notley -notis -nothem -nothacker -nostro -noseff -norwell -northwood -northcut -norstrud -norseth -norse -norsaganay -norko -norkaitis -noriego -norg -noreiga -nordwall -nordsiek -nordlinger -nordick -nordenstrom -norbo -noorigian -noordam -nonu -nones -noneman -nondorf -noltensmeier -nollette -nolfe -nolazco -nokken -noke -noiseux -noia -nohe -nogueda -noguchi -nogoda -noggles -noggler -noftsier -noey -noerenberg -noegel -nodurft -nodarse -nockai -nobregas -nobis -nkuku -nkomo -njango -niziol -nixion -nixa -nivar -nivala -nitzschke -nitzsche -nitzkowski -nitcher -niswender -nisley -nishimori -nirmaier -nipps -nipple -ninke -nini -ninh -nimrod -nimox -nimick -nila -niksich -nikodem -nikocevic -nikaido -nightlinger -niggemann -nietfeldt -niess -niesent -niesborella -nierer -niemitzio -niemiel -niemants -niedzwiedzki -niedzwiedz -niedens -niedbalec -niebaum -nicoson -nicoli -nicolaus -nickoley -nicklos -nicklien -nickenberry -nickas -nicholason -nichell -nichalson -nicewonger -niau -nian -nham -nguyan -ngin -nezich -nezat -neyaci -newstead -newness -newhook -newes -newens -newbell -newball -nevinger -nevilles -nevil -never -nevarrez -neuse -neundorfer -neuenswander -neudeck -neubig -neubaum -neubacher -nettleingham -netrosio -netolicky -netley -nesti -nessmith -neslusan -nesline -nesland -nesin -nerlich -nepa -neonakis -nenni -nemzin -nemunaitis -nemets -nemard -nemani -nelmes -nellums -nellenback -nelisse -nejaime -neja -neither -neiswoger -neiper -neild -neidiger -nehrt -nehme -neglio -negbenebor -needy -nedman -nedina -nederostek -nedelman -neddo -nedbalek -nebred -neblock -nebesnik -nebarez -neall -nealious -nealer -neahr -ncneal -nazzise -nazzal -nazir -nazelrod -naz -naysmith -nayman -nawwar -nawda -naveed -navarrate -navaretta -navappo -navanjo -natwick -nattiah -natsis -nati -nathans -natewa -natani -natalello -nasti -nassie -nasr -nasers -nasalroad -narr -nargi -nardy -napieralski -nanthanong -nantanapibul -nanna -nanik -nanasy -nanas -namur -namihira -namaka -nalty -nalbach -naki -nakatsu -nakamori -najarian -nailer -naifeh -naidu -nahrwold -nahl -nahari -nagode -nagindas -nagengast -nagelhout -nagase -naftzinger -naftali -naeher -nadoff -naderi -nadelbach -naddeo -nacy -nacisse -nacion -nachtrieb -nachmias -nachazel -nacar -naborg -nabity -nabhan -mytych -myslinski -myslin -mysak -myrtle -myrman -myrck -myntti -mynnerlyn -mylott -myking -myes -mycroft -mway -muzyka -muzacz -muyskens -muysenberg -mutone -mutner -mutherspaw -muthart -muthana -mutart -musty -muston -mussmann -musshorn -musse -muss -musquiz -musolf -muskthel -muska -musinski -musigdilok -muschick -muschett -musch -murwin -murty -mursko -murnock -mure -murasso -muraro -muran -murallies -muraco -munyer -munshi -munning -munl -munir -muninger -munhall -muney -munet -mundziak -mundschau -mundhenk -munderville -muncil -munchmeyer -munaz -muna -mulzer -mulvahill -mulryan -mulroney -mulready -mulneix -mullowney -mullner -mullison -mullany -mulich -mula -muhtaseb -muhlenkamp -muhlbach -muggley -mueske -muenkel -muell -muehleisen -mudrick -muddaththir -muczynski -mucklow -muckley -muckelvaney -muchortow -mthimunye -mrazik -mozzone -mozo -mozley -mozie -mozgala -mozelak -moyerman -mowder -mowan -movlin -mouzas -mourino -moulhem -mottillo -motteshard -mottershead -motamed -mosz -mostoller -mostiller -mostero -mostella -mosson -mossing -mossien -mossel -mosmeyer -moskau -moshos -mosho -moscovic -moscaritolo -moscariello -moscardelli -morosow -morono -morneault -morna -morn -morkve -moriwaki -morise -moriera -moricle -moribayed -morgret -morgner -morgas -morgans -morgandi -morfee -morelen -moreida -moreci -moreb -mordino -mordini -mordehay -morda -mootz -mootispaw -moosbrugger -moosa -moonsommy -moonshower -moodispaugh -mooberry -monz -montuoro -montrella -montijano -montgonery -montelle -montell -montcalm -montalgo -monske -monrroy -monrow -monnot -moniak -mongue -mongolo -mongiovi -monfore -mondoux -mondone -mondell -mondaine -moncrieffe -moncrieff -moncier -monasterio -monarque -monaham -monagle -momper -momeni -moltrie -molone -molly -mollohan -molliere -mollere -molleker -mollberg -molinini -moling -molineaux -molett -moldan -molavi -molaison -mokriski -mokiao -mojzisik -mojardin -moisey -mohorovich -mohinani -mohaupt -mohabeer -mogollon -moghadam -mofle -mofford -moevao -moelter -moede -modrak -moddejonge -mockler -mocha -mobilio -mlenar -mizzi -mizner -mizee -miyasaka -miyao -mixdorf -mitter -mittchell -mittag -mithani -mitchler -misove -mismit -misluk -miskovich -mishou -miserendino -misek -miscoe -mirmow -mirman -mirkovich -mirao -miran -miquelon -minucci -mintreas -mintos -mintor -minotti -minock -minnatee -miniuk -minissale -minihan -minicozzi -mini -minford -minette -minery -minehan -mineconzo -mindingall -minchella -minarcik -minacci -mimaki -milz -milwee -miltz -milsaps -milosevich -millstead -millott -millora -millian -millhiser -millerr -millbrand -millbern -millberg -milkent -milius -milite -milelr -mildred -milderberger -mildenstein -milbrodt -milare -mikulec -mikovec -mikota -mikolon -mikhaiel -mikez -miker -mikasa -mihovk -mihor -mihaliak -mihalco -mihalak -miggo -miessler -miernik -miernicki -miene -mieloszyk -mielkie -mielczarek -mielcarz -miehe -midget -middough -middents -microni -mickulskis -micks -mickonis -mickenheim -michello -michealson -michavd -michalczik -mezzinni -mezzanotte -meysembourg -meyerowitz -meyerott -meyerman -meyerhoefer -mevis -mevers -meuler -meulemans -meua -metzga -metzel -mettlen -mettille -metott -metos -metil -metia -metherell -metevelis -metenosky -meteer -metchikoff -mestler -mestanza -messman -messey -messervy -messel -messan -mesoloras -mesmer -mesiona -mesias -meshew -meshanko -meservy -mesecar -mesdaq -merzig -mervine -mertine -merrills -merren -merlette -merles -merlain -merl -merksamer -merithew -merisier -mering -merilos -merical -merhar -merette -mereno -merdian -merceir -mercando -merante -merana -merales -menucci -mentkowski -mentgen -menso -mensen -menkin -menjes -menjares -menitz -menietto -menier -meneus -menefield -menees -mendrin -mendrala -mendler -mendiaz -mendesa -mencke -menchu -menches -menas -mems -memo -memmo -meltzner -melter -melstrom -melsheimer -melser -melodia -mellos -mellis -melliere -mellie -mellecker -mellage -mellady -melikyan -melford -meley -melencamp -meleen -melear -melchert -melaun -melaro -melady -mekonis -meisenburg -meireles -meinsen -meinershagen -meil -meihofer -mehrotra -mehlhaff -mehis -mehelich -mehdizadeh -mehdi -meharry -mehalko -megraw -megown -mego -megill -megia -meggison -meggett -meggerson -meetze -meeroff -meemken -meehleder -meeds -medure -medosch -medora -mednis -medling -medland -medious -medino -medin -medill -medieros -medi -medhus -medearis -medanich -medalion -meckel -meccia -mecardo -measheaw -measeck -mearing -meara -meakin -mcwilson -mcward -mcwalters -mcwade -mcvoy -mctush -mctiernan -mctarnaghan -mcswiggan -mcstay -mcritchie -mcrill -mcquiddy -mcqueeny -mcpharlane -mcphan -mcpartlin -mcnutty -mcnuh -mcnicoll -mcnicol -mcnevin -mcnespey -mcneme -mcnellie -mcnayr -mcmina -mcmenamy -mcmanigal -mcluckie -mclilly -mcleskey -mclearan -mclauchlen -mclatchy -mclaen -mckray -mckouen -mckoon -mckisson -mckinna -mckines -mckimmy -mckimley -mckewen -mckerrow -mckenzy -mckentie -mckemie -mckaskle -mckanic -mcintyde -mcinroy -mcinnish -mcilwaine -mciltrot -mchalffey -mcgurren -mcgurr -mcgunnis -mcgunnigle -mcgunagle -mcguinnes -mcguin -mcgrotha -mcgrogan -mcgraph -mcgoon -mcglothern -mcgloster -mcglohon -mcglockton -mcglawn -mcginnity -mcginister -mcgilberry -mcgiboney -mcghin -mcghaney -mcgeeney -mcgeady -mcgartland -mcgarraugh -mcgaffey -mcgafferty -mcgaffee -mcfeeley -mcfan -mceneny -mcelwine -mcelreavy -mcelpraug -mcelmeel -mceirath -mceady -mcdunn -mcdonnall -mcdewitt -mcdermett -mcdeavitt -mcdearmont -mccurine -mccunn -mccumbers -mccumbee -mccullors -mccullon -mccullogh -mccullock -mccuan -mccrate -mccra -mccoulskey -mccornack -mccormik -mccorkindale -mccorison -mcconnal -mccomack -mccole -mccoil -mccoard -mcclurken -mcclodden -mcclod -mcclimens -mccleveland -mcclenningham -mcclellon -mcclaugherty -mcclatcher -mcclarty -mcclamma -mcclaim -mcchain -mccelland -mccastle -mccarvill -mccarther -mccarr -mccarns -mccarn -mccard -mccandrew -mccandliss -mccalvin -mccalpin -mccalment -mccallun -mccallough -mccahan -mccaffree -mcbratney -mcaveney -mcausland -mcauly -mcarthun -mcanaw -mcall -mbamalu -mazzera -mazze -mazzawi -mazzaferro -mazzacano -mazuo -mazion -mazey -maywood -mayshack -mayrose -mayou -mayorca -mayoka -maynerich -maylone -mayhood -mayeshiba -maydew -maxi -maxell -mawhinney -mavropoulos -mavle -mavai -mautte -mauson -mausey -mauseth -mausbach -maurus -maurizio -maura -maupredi -maung -maultasch -mauleon -maud -matyi -matuszak -matushevsky -matusek -matuck -mattys -mattsey -mattione -mattias -matteis -matsu -matsoukas -matrey -matot -matlin -matkowsky -matise -mathwich -mathus -mathony -mathery -matherson -mathen -maten -matelich -matejek -matczak -matchen -matarrita -matakonis -mataka -matacale -masuyama -masure -masupha -masudi -masturzo -mastrocola -mastriano -mastrianni -mastrianna -mastrelli -massicotte -massetti -massella -massei -massee -massaquoi -masood -masom -maslowsky -masloski -maslonka -maski -maskaly -masiejczyk -masgalas -masero -masenten -masciantonio -masaya -masaracchia -marzocchi -marzili -marzigliano -marye -marusiak -marullo -marturano -martos -martorello -martineze -martillo -martignago -martiarena -marsters -marshalek -marsell -marsek -marseglia -marriot -marrion -marrington -marrietta -marrello -marreel -marrable -marquina -marque -marozzi -marovic -marotti -marose -marnett -marmolejos -markt -markson -marklund -markewich -marinoni -marinko -marinas -maril -mariello -marguardt -margreiter -margraf -margel -margaryan -margarita -margan -marevka -maresco -marero -marentez -maree -mardini -marcotrigiano -marcoguisepp -marcks -marcinka -marchizano -marchitto -marchiony -marchionese -marchesseault -marcheski -marchesano -marchall -marceaux -marbray -maratre -maratos -marashi -marasciulo -maras -marantz -marallo -maragni -maragh -marabella -maquis -maontesano -maobi -manzie -manzay -manvelito -manvel -manuell -mantik -mantele -mantegna -mansbridge -mansanares -manora -manolakis -manokey -mannine -mannheimer -mannebach -mannchen -manlito -mankoski -manivong -manheim -mangubat -manfra -manemann -manecke -mandry -mandler -mandi -mandap -mandahl -mancos -manciel -mancherian -manchel -manca -manby -manatt -manaker -mamone -mammano -malvern -malton -malsch -malovich -malouff -malory -maloff -malocha -malmanger -mallinger -mallinak -mallegni -mallat -malkoski -malinky -malinak -malichi -malgieri -maleszka -males -maleonado -malenke -malekan -malehorn -maleck -malcome -malay -malawy -malarkey -malanado -malama -malabey -makua -makhija -makel -makarem -majorga -majocka -majica -majic -majeau -maizes -mairot -maione -mainz -mainland -mainetti -mainero -maimone -maifeld -maiers -maiello -maidonado -maicus -mahung -mahula -mahrenholz -mahran -mahomly -mahin -mahe -mahall -mahal -magsby -magsayo -magrone -magraw -magrann -magpali -magouliotis -magorina -magobet -magnini -magnifico -magnie -magnett -maglioli -maggit -magg -magette -magdefrau -magdalena -magaziner -magathan -magalski -magaldi -magadan -mafua -maeno -maenaga -maedke -madziar -madre -madine -madin -madhavan -madge -madeja -maddoy -maddison -maddin -maddern -mad -macvicar -macurdy -macreno -macpartland -macoreno -macola -macnutt -macnevin -macmullan -maclain -mackstutis -macknair -macklem -mackillop -mackenthun -mackechnie -mackaman -macione -maciolek -maciarello -machover -machle -machi -machel -machak -macduffee -maccutcheon -macculloch -maccord -macconaghy -maccoll -macclellan -macclairty -maccini -macchiarella -maccheyne -maccarter -maccarino -maccarini -macandog -macanas -macalma -macabeo -maasen -maarx -lytell -lyson -lysher -lyngholm -lynchj -lynah -lyme -lyken -lyew -lydecker -lybert -lyberger -lybecker -lyau -lweis -luzi -luzell -luvianos -luvera -lutze -lutkus -luten -lusty -lustberg -lurye -lury -lurtz -luquette -lupiani -lupacchino -lunter -lunstrum -lungwitz -lungsford -lunemann -lunderman -lunch -luminati -lumbley -lumba -lumadue -lulas -lukow -lukianov -lukesh -lukander -luka -luing -luikart -lugabihl -lufborough -luette -luescher -lueschen -luersen -luensmann -luening -lueker -luedecke -lueckenbach -luebbering -ludovico -ludera -ludeker -ludecke -luczki -luco -luckinbill -lucis -lucik -lucie -lucic -luchterhand -luccous -lucash -luberger -lubbert -lubben -lubawy -lubahn -luangxay -luangrath -luangamath -luague -lozey -loyborg -loyack -loxton -loxtercamp -lownsbery -lowler -lowcks -lowa -lovstad -lovisone -lovfald -lovetinsky -lovet -lovero -loverdi -lovellette -loveberry -louwagie -lournes -louria -lourentzos -lourdes -louka -louil -loudermelt -louchen -loubier -lotto -lotridge -lothringer -lothridge -lota -lot -loszynski -lossius -losneck -loseth -losavio -losardo -losano -losado -losacco -losa -lorr -loron -lorincz -loria -loretz -lorentine -lordi -loraine -lopze -lopiccalo -lopey -loperfido -lope -lopata -lopas -loparco -loofbourrow -longwith -longhi -longenberger -longbine -longaker -longabaugh -lomonte -lomino -lominack -lomen -lombel -lombardino -lomago -loma -lokan -loiacona -lohry -lohrke -lohre -logoleo -loggens -logarbo -lofwall -lofty -lofts -lofthus -lofte -lofstrom -loforte -lofman -lofing -lofguist -loffier -loffelbein -loerwald -loeppky -loehrer -loehner -loecken -lockshaw -locknane -lockington -lockery -lockemer -lochrico -lobregat -lobley -lobello -lobell -lobalbo -lobach -llaneza -llanet -llams -livley -livinton -living -liversedge -livernois -livermon -liverance -liveoak -livecchi -livasy -liukkonen -litzenberger -litvak -littfin -litmanowicz -litchard -listi -listen -lisker -lisitano -lisena -lisbey -lipsie -lips -lippoldt -lippitt -lipper -lipoma -lipkovitch -lipira -lipan -linzan -linza -linsin -linsenmayer -linsdau -linnert -linman -linkon -lingner -lingley -lingerfelter -lingbeek -linero -lindorf -lindmeyer -lindinha -linderleaf -lindau -lindabury -linburg -linak -limmel -limle -limbert -limardi -lilyblade -lillehaug -likar -liiv -ligonis -ligler -lighthart -ligget -liftin -lifschitz -liewald -lievsay -lievens -lietzow -lierz -liegler -liedberg -lied -liebrecht -liebherr -lieberg -liebenthal -liebenow -liebeck -lidstone -lidie -lidge -lidder -licursi -licklider -lickfelt -lichota -lichenstein -liceaga -liccketto -libertini -libberton -leyton -leyh -leydecker -leyda -lexer -lewi -lewars -levreau -levra -levielle -levian -leveto -leversee -levers -leverone -leverance -levendoski -levee -levatino -levans -levandofsky -leuze -leutwiler -leuthe -leuhring -leuga -leuckel -leuasseur -lettsome -lettiere -letscher -letender -letchaw -leta -lestrange -lestourgeon -lestor -leston -lessner -lessmann -lessly -lespedes -leso -lesneski -leskovar -leskovac -lese -lesco -lesches -lesa -lerra -lerper -lerow -lero -lermon -lepretre -lepre -leppink -lepke -lepez -lepetich -leopardi -leonpacher -leonick -leonberger -leomiti -leny -lenski -lenorud -lenort -lennis -lennart -lennan -lenling -lenke -lenigan -lenhoff -lenharr -leners -lendt -lendor -lendo -lenczyk -lench -lenberg -lemoyne -lemmonds -lemmings -lemish -lemear -lembcke -lemansky -lemans -lellig -lekey -lekberg -lekan -lek -lejman -leitzinger -leithiser -leiper -leinwand -leimkuhler -leimberger -leilich -leigland -leichtenberge -leiberton -leho -lehning -lehneis -lehmer -lehenbauer -lehberger -legrotte -legro -legra -legat -legall -lefurgy -leflores -leffers -leffelman -lefeld -lefaver -leetham -leesman -leeker -leehan -leeber -ledsinger -ledermann -ledenbach -ledee -led -lecznar -leckband -lechleidner -lechelt -lecato -lecaros -lecain -lebroke -lebold -leblane -lebitski -lebish -leberte -lebedeff -lebby -lebaugh -lebarge -leavigne -leaven -leasor -leasher -leash -leanza -leanen -leaird -leahman -leadford -lazusky -lazurek -lazott -lazio -lazier -lazich -lazewski -lazares -layva -layell -laycox -lawsky -lawrentz -lawis -lawford -lawcewicz -lawbaugh -lawary -lawal -lavongsar -lavgle -lavezzo -lavelli -lave -lavani -lavander -lavagnino -lavadera -lautieri -lautaret -lausell -lauschus -laurole -lauretta -laureno -laureles -laurance -launiere -laundree -lauigne -laughon -laugen -laudeman -laudadio -lauckner -lauchaire -lauby -laubersheimer -latus -latourrette -latos -laton -lathrum -lather -lathe -latendresse -late -latassa -latam -lat -lastella -lassetter -laskosky -laskoskie -lasin -lasik -lashlee -lashier -laselle -laschinger -lascaro -lasane -lasagna -lasage -larusch -larrosa -larriviere -larralde -larr -larowe -larousse -larotta -laroia -laroe -larmett -larman -larkan -largena -laregina -lardone -larcom -larche -larbie -larbi -larason -laranjo -laragy -laraby -larabell -larabel -lapuerta -lappinga -lappi -laport -lapinta -lapila -laperuta -lapere -laper -lapek -lapari -lapalme -laorange -lanze -lanzarotta -lantry -lantgen -lantelme -lanteigne -lansey -lansberg -lannier -lannen -lanna -lankster -lanie -langrum -langness -langmo -langlitz -langi -langholdt -langhans -langgood -langanke -lanfor -lanen -laneaux -landu -landruth -landrie -landreville -landres -landquist -landolf -landmark -landini -landevos -landenberger -landan -lancz -lamudio -lampsas -lampl -lampinen -lamphiear -lampel -lamoree -lamoreau -lamoore -lamontagna -lammy -lammel -lamison -laming -lamie -lamia -lameda -lambuth -lambertus -lambermont -lamartina -lamango -lamaack -lalinde -lalich -lale -lakowski -lakhan -lajoye -lajoy -laios -lahne -laham -laguire -lagrenade -lagore -lagoo -lagonia -lagoni -laglie -laggan -lagesse -lagerstedt -lagergren -lagatta -lagard -lagant -lagamba -lagadinos -lafuze -lafrate -laforey -lafoon -lafontain -laflam -laffer -lafevre -lafemina -lafantano -laface -laessig -laehn -ladt -ladouce -ladonne -lado -ladika -ladick -ladebauche -lacz -lacusky -lacovara -lackett -lackage -lachino -lachiatto -lacharite -lacerenza -lacek -lacau -lacatena -lacaille -labovitch -labounta -labombar -laboissonnier -labo -labitan -labier -labeots -labarriere -labaro -labarbara -laatsch -laasaga -laake -kyseth -kypuros -kyper -kyner -kwilosz -kvzian -kvoeschen -kveton -kvek -kveen -kvaternik -kuziel -kuypers -kuykendoll -kuwana -kuwada -kutzer -kuty -kutlu -kuti -kutchie -kuszynski -kussmaul -kussel -kusnic -kusner -kusky -kushaney -kurzinski -kurtti -kurshuk -kurr -kurokawa -kurns -kuretich -kurasz -kurant -kura -kur -kupihea -kupferberg -kupersmith -kupchinsky -kunter -kunkleman -kuniyoshi -kunimitsu -kunich -kundanani -kunau -kummerow -kumlander -kumfer -kuman -kumalaa -kum -kulseth -kulbeth -kulbacki -kulback -kukura -kukler -kuklenski -kukauskas -kukahiko -kujat -kuiz -kuitu -kuick -kuhry -kuhlenschmidt -kuffa -kuepfer -kuehnhold -kuechler -kudro -kudrle -kuczma -kuckens -kuciemba -kuchinski -kuchem -kubley -kubler -kubesh -kubeck -kubasch -kub -kuanoni -krzewinski -krzesinski -krzan -kryston -krystek -krynicki -krylo -kruzel -kruyt -kruszewski -krusor -kruskie -krushansky -krush -kruppenbacher -krupinsky -krumroy -krumbein -krumbach -krukiel -kruizenga -kruis -kruiboesch -kruebbe -krucke -krotine -krostag -kropff -kropfelder -kroninger -kronau -krome -krolick -krokus -krog -krofta -krofft -kroesing -krochmal -krobath -krnach -krivanec -kristofferson -kristof -kristan -krissie -kriskovich -kriske -krishun -krishnamurthy -krishman -krinov -kriek -kriegshauser -krewer -kreutzbender -kreusch -kretzinger -kressler -kressin -kressierer -kresky -krepp -krenzke -krenning -krenik -kremple -kremmel -kremen -krejcik -kreissler -kreinhagen -krehel -kreese -krawitz -kravetsky -kravets -kravec -krausse -krausmann -krauel -kratowicz -kratchman -krasnici -krasnansky -kraskouskas -krasinski -kranwinkle -kranock -kramarczyk -krallman -krallis -krakowiak -krakauer -krainbucher -kraig -kraichely -krahulec -krahe -krah -kragt -kraetsch -krabel -krabbenhoft -kraasch -kraack -kozlovsky -kozlik -koziak -kozeyah -kozan -kowitz -kowalke -kowalec -koves -kovalaske -kovacik -koutras -koussa -kousonsavath -kounthong -kounthapanya -kounovsky -kounkel -kounick -koulavongsa -koulalis -kotyk -kotur -kottraba -kottlowski -kotterna -kotschevar -kotonski -kotlar -kotheimer -kotey -koterba -koteras -kotarski -kotaki -kosuta -kostrzewa -kostiv -kosters -kossey -kossen -kossak -kososky -kosorog -koso -koslan -kosiorek -koshi -koscielniak -kosareff -korzyniowski -korzybski -korynta -korwin -korwatch -kortemeier -korst -korsmeyer -korslund -koroch -kornn -kornfield -kornblatt -korkmas -koritko -korinta -koria -korewdit -kores -korenek -kordys -kordowski -kordiak -korbin -kopsho -koppy -kopke -kopin -kopicko -kopiasz -koperski -kopay -kopatz -kopan -koosman -koong -koolman -kool -konty -konow -konopski -konma -konishi -konger -konetchy -kone -konderla -konczewski -konarik -komula -kominski -komada -koma -kolwyck -kolupke -koltz -kolts -kolppa -koloc -kollross -kollos -kolkman -kolkhorst -kolikas -kolic -kolbusz -kolassa -kol -kokubun -kokoszka -kokko -kokenge -koitzsch -koiner -kohus -kohles -kohel -koguchi -kofoot -koers -koenitzer -koeninger -koenigsberg -koener -koenemund -koelbel -koehring -koeck -kody -kodera -koczwara -kocieda -kochkodin -kochen -kochanek -kobylski -kobylarz -kobylarczyk -kobold -knyzewski -knupke -knudsvig -knowiton -knowell -knous -knotowicz -knorp -knoflicek -knoeppel -knoepke -knoell -knoechel -knodel -knockaert -knobler -kniola -knill -knilands -kniesel -kniceley -kneuper -knetsch -kneser -knerien -knellinger -kneefe -knazs -knatt -knapko -knapick -knape -knap -knake -kmiotek -kment -kmatz -kman -klyn -klute -kluse -klumph -klukken -klukan -kluemper -kluber -klosky -kloppenburg -klonowski -klomp -klohs -klohe -kloeppel -kloeker -kloefkorn -kloeck -klobucar -kljucaric -klitzner -klitsch -kliskey -klinski -klinnert -klinich -klingner -klingenberger -klingberg -klingaman -klimo -klimavicius -klickman -klicka -klez -klevjer -klette -kletschka -kless -kleppen -klenovich -kleintop -kleinsasser -kleinfeld -kleifgen -kleid -kleftogiannis -kleefisch -kleck -klebes -klear -klawuhn -klawinski -klavon -klavetter -klarin -klappholz -klande -klancnik -klan -klamn -klamert -klaja -klaich -klafehn -klabunde -kjolseth -kjergaard -kjellsen -kjellman -kjeldgaard -kizzia -kizior -kivela -kitty -kitthikoune -kittelman -kitelinger -kitcher -kitchenman -kitanik -kisro -kisielewski -kiryakoza -kirsopp -kirshman -kirlin -kirkness -kirkling -kirkconnell -kirgan -kirchmann -kirchherr -kirchberg -kirchbaum -kirberger -kiracofe -kipple -kip -kious -kintopp -kintigh -kinsolving -kinsky -kinlin -kinlecheeny -kingwood -kingson -kinds -kindregan -kinderman -kinde -kimminau -kimbal -kilver -kiltie -kilstofte -kilogan -kilness -kilner -kilmister -killoren -killius -kilimnik -kilichowski -kildare -kiko -kijak -kiili -kihlstrom -kietzer -kiesser -kierzewski -kienbaum -kienast -kieke -kieck -kiebala -kiddle -kickel -kichline -kibbler -kiani -khubba -khora -khokher -khn -khlok -khilling -khensamphanh -khemmanivong -khazdozian -khazaleh -khauv -khairallah -kezele -keyon -keyl -kew -kevwitch -kevorkian -keveth -kevelin -kevan -keuper -ketzler -kettinger -ketterl -ketteringham -kettenring -ketchersid -kessans -kesey -kesek -kertzman -kertels -kerst -kerper -kernodle -kernighan -kernagis -kermes -kerens -kercheff -kerce -kerans -keppner -kepke -kepani -keovongxay -keoghan -keodalah -keobaunleuang -kenzie -kenson -kenoyer -kenouo -kennie -kenngott -kennaugh -kenik -keney -kenekham -kenealy -kendziora -kendal -kenaga -kempster -kemps -kempon -kempkens -kemmeries -kemerly -keltt -kellywood -kellish -kellem -keliipaakaua -kelau -keks -keisacker -keis -keinonen -keilholz -keilholtz -keihl -kehres -keetch -keetan -keet -keeser -keenom -keeman -keehner -keehan -kedra -kedia -kecskes -kecker -kebede -kebe -keba -keaty -keaten -keaser -kearsey -kearn -kazunas -kazimi -kazar -kazabi -kaza -kayat -kayastha -kawski -kawell -kawczynski -kawaiaea -kave -kavaney -kaut -kaushal -kausch -kauo -kaumans -kaui -kauder -kaucher -kaua -katzmann -katzaman -katterjohn -kattaura -katsaounis -katoh -katke -katis -katin -katie -kathleen -kathel -kataoka -kaszton -kaszinski -kasula -kasuba -kastens -kaspari -kasmarek -kasky -kashner -kasen -kasemeier -kasee -kasal -karz -karwowski -karstensen -karroach -karro -karrels -karpstein -karpe -karoly -karnath -karnas -karlinsky -karlgaard -kardux -karangelen -karamchandani -karagiannes -karageorge -karabin -kar -kapsner -kapperman -kappelmann -kapler -kapiloff -kapetanos -kanzenbach -kanwar -kantis -kantah -kanosh -kanoon -kanniard -kannan -kanjirathinga -kangleon -kaneta -kanekuni -kanealii -kand -kanakares -kamstra -kamradt -kampner -kamna -kammerzell -kamman -kamiya -kaminska -kamensky -kamber -kallhoff -kallfelz -kalley -kallestad -kallal -kalista -kalhorn -kalenak -kaldahl -kalberg -kalandek -kalan -kalamaras -kalafarski -kalaf -kakowski -kakeh -kakani -kajder -kaja -kaines -kaiktsian -kaid -kahookele -kahoohalphala -kahley -kahao -kahalehoe -kahal -kahae -kagimoto -kaewprasert -kaemingk -kadow -kadelak -kaczka -kacvinsky -kacprowski -kachmarsky -kabzinski -kabus -kabir -kabigting -kabala -kabacinski -kababik -kaarlela -kaanana -kaan -kaak -kaai -ka -juvenal -justian -juste -justak -jurries -jurney -jurkovich -jurist -jurin -jurgen -juray -junod -junkersfeld -junick -jumbo -julsrud -julitz -juliana -jukich -juengling -juen -juelich -judie -jubyna -jubran -jubeh -juback -juba -juanico -joynson -joyne -jover -journot -joto -jotblad -josic -jorrisch -jordt -jording -jondrow -jonah -jome -jollimore -joline -jolina -joler -joki -johnting -johnstonbaugh -johnikins -johniken -johe -johansing -johal -joganic -joerger -joelson -joehnck -jody -jodha -joanis -jirsa -jirak -jira -jingst -jhingree -jhanson -jews -jestis -jessica -jeskie -jesiolowski -jesenovec -jeschon -jermeland -jerkin -jericho -jerger -jergen -jerding -jepko -jens -jenovese -jennkie -jenderer -jenab -jempty -jemmings -jelome -jellings -jelden -jelarde -jeffryes -jeffirs -jedan -jecmenek -jecklin -jeck -jeanquart -jeanphilippe -jeannoel -jeanette -jeancy -jaysura -javis -javers -javed -jave -jaussen -jauhar -jastremski -jastrebski -jasmann -jaskolka -jasko -jaskiewicz -jasica -jasch -jarriett -jaroski -jarnutowski -jarmin -jaremka -jarema -jarels -jarecke -jarding -jardel -japak -janysek -janway -janowiec -janow -janofsky -janoff -jannise -jannett -jankoff -janeiro -jana -jaminet -jami -jamgochian -jamesson -jamer -jamel -jamason -jalovel -jalkut -jakubov -jaksic -jaksch -jakiela -jaji -jaiyesimi -jahosky -jahoda -jahaly -jagiello -jaggie -jafek -jafari -jae -jadoo -jaculina -jacquin -jacquelin -jacobsohn -jacobovits -jackso -jacksits -jackosn -jackett -jacinthe -jabbie -jabaut -jabali -jaarda -izak -izaguine -iwasko -iwashita -ivrin -ivener -iveans -ivancic -iuchs -itnyre -istorico -isiminger -isgur -isgro -isenbarger -iseman -isebrand -isaksen -isagba -isacson -isaack -irr -ironhorse -irigoyen -ireson -ipsen -iossa -inzano -introini -insognia -inserra -inostraza -innerst -innella -innarelli -innamorato -inkavesvanitc -ingvolostad -inguardsen -ingran -ingrahm -ingraffea -ingleton -inghem -ingersol -ingargiolo -inferrera -iner -induddi -indermuehle -indeck -indal -incomstanti -incera -incarnato -inbody -inabnit -imming -immerman -immediato -imholte -imeson -imbruglia -imbrock -imbriale -imbrenda -imam -imada -iltzsch -illovsky -illich -illas -illar -iliffe -ilg -ilarraza -ilaria -ilalio -ikzda -ikkela -ikenberry -ikemoto -ikemire -ikeard -ihnen -ihenyen -iheme -igus -iguina -ignoria -igles -igbinosun -ifie -ifft -ifeanyi -ifantides -iennaco -idrovo -idriss -idiart -ickert -icardo -ibric -ibdah -ibbotson -ibasitas -iarussi -iara -iannalo -iamiceli -iacuzio -iacobucci -iacobelli -hysquierdo -hyske -hydzik -hyberger -hyatte -huysman -huyna -hutyra -huttman -huttar -huter -husul -hustedt -hussy -hussong -hussian -huski -hushon -husein -husaini -hurtubise -hurta -hurni -hurme -hupy -huppenbauer -hunze -hunson -huner -hundertmark -hunderlach -humston -hummert -huminski -humerick -humbard -hulzing -hulshoff -hulmes -hukle -hujer -huitink -huirgs -hugus -huguet -hugghis -huffstutter -huerto -huertes -huenergardt -huemmer -huelle -huehn -huebsch -hudok -hudnut -hudlow -hudlin -hudes -huddy -huckabone -huckabaa -hubsch -hubl -hubertz -htwe -hsy -hrycko -hrna -hric -hribal -hrcka -hrbacek -hranchak -hradecky -hoysock -hoyne -hoylton -hoyal -hoxsie -howlingwolf -howett -howarter -hovnanian -hovard -hovantzi -hovanes -houzah -houtkooper -housner -housemate -hourihan -houltberg -houghtelling -houey -houchard -houben -hotter -hotten -hottell -hotek -hosoi -hosner -hosle -hoskyns -hoskey -hoshino -hosfield -hortein -horseford -horse -horridge -hornshaw -horns -hornlein -hornig -horneff -hormuth -horimoto -horesco -horenstein -horelick -hore -horbert -horabik -hoppenrath -hoppa -hopfauf -hoosock -hool -hoogheem -hoogendoorn -hoo -honus -honold -honokaupu -honigsberg -hongisto -hongeva -hones -honegger -hondros -hondel -honchul -honch -homza -homsey -homrighaus -hommer -homiak -homby -homans -holznecht -holzmiller -holzhueter -holzboog -holtmeier -holtmann -holthouse -holthoff -holtham -holtgrefe -holstad -holshovser -holquist -holmers -hollyday -hollo -hollner -hollinghurst -holleyman -hollett -hollerud -hollering -hollembaek -hollarn -hollamon -hollack -holihan -holibaugh -holgersen -holdy -holdgrafer -holdcraft -holdbrook -holcroft -holch -hokula -hokett -hojeij -hojczyk -hoivik -hoiseth -hoinacki -hohnson -hohney -hohmeier -hohm -hohlstein -hogstrum -hogon -hoglan -hogenmiller -hogains -hoga -hofstra -hofstadter -hofhine -hoffpavir -hoeser -hoerig -hoerger -hoelzel -hoelter -hoeller -hoek -hoehl -hoefflin -hoeffer -hodosy -hodnicki -hodermarsky -hodd -hockley -hochstine -hochfelder -hobstetter -hoblit -hobin -hoberek -hobb -hnot -hlywa -hlastala -hjermstad -hizkiya -hitzfelder -hiteman -hitchko -hitchingham -hissom -hismith -hiske -hirte -hirschmann -hirose -hirezi -hipsley -hippley -hipol -hintergardt -hinokawa -hinely -hindsman -hindmarsh -hinderaker -hindall -hinckson -hinajosa -himmelsbach -himmelright -hilyar -hilvers -hilu -hiltunen -hiltebeitel -hilsgen -hilovsky -hilo -hilmer -hillseth -hillered -hilleman -hillbrant -hillabush -hilla -hilkert -hilk -hildman -hilbner -hilbig -hilb -hila -hija -higy -hightshoe -higashida -hiens -hielscher -hidde -hidaka -hickley -hickingbotham -hickie -hiciano -hibble -hibbits -heziak -heynen -heykoop -heydenreich -heybrock -hevrin -hevessy -heugel -heuangvilay -hettes -hettenhausen -hetling -hetjonk -hethcox -hethcote -hetchman -hetcher -hesterly -hessman -hesselrode -hesselman -hesselbein -hesselbach -herzbrun -heryford -herwehe -hervol -hertle -herta -herskovic -hershnowitz -hershfield -herschaft -hersberger -herrud -herrnandez -herrlich -herritt -herrion -herrand -herran -herout -heroth -heronemus -hero -herny -hermus -herline -herley -hergenroeder -hergenreter -herena -herem -herek -hercman -heral -hequembourg -heppert -hepperly -heppel -heppding -henzler -hentrich -henter -hensle -hensdill -henschke -hennighausen -hennard -henkin -henges -henedia -hendson -hendsbee -hendrics -hendrickx -hencken -henchel -hencheck -hemsworth -hemry -hemperley -hemmig -hemmeter -hemmert -hemmelgarn -hemmeke -hemley -hemeyer -hemerly -hembre -hemans -hemanes -helwick -helvik -helphinstine -helphenstine -helowicz -helmert -helmen -helmbright -helliwell -helley -hellerman -hellenbrand -helferty -helfert -hekman -heitmuller -heitbrink -heisse -heisner -heir -heinzle -heinzerling -heino -heinig -heindl -heimerl -heimbuch -heilbrun -heilbron -heidtke -heidmann -heglund -heggins -heggestad -hegener -hegdahl -hefter -heffernen -heery -heebsh -hedrix -hedler -hedeiros -hedegaard -heddleson -heddins -hect -heckle -heckers -hebsch -hebrard -heberer -hebblethwaite -heaviland -heartley -hearston -heang -hean -heam -heagany -headlon -heading -hazouri -hazinski -hazekamp -hayword -haysbert -hayn -hayball -hawkings -havier -havermann -havekost -hauswald -haustein -hausteen -hauslein -hausher -haurin -hauptly -haulbrook -haukaas -haugaard -hauffe -hauben -hatzell -hatto -hattenbach -hatridge -hatlee -hathcox -hatchette -hatcherson -hatake -hassig -hasselvander -hasselkus -haslinger -haskamp -hashbarger -hasha -hasfjord -hasencamp -haseloff -haschke -hasbni -hasbell -hasak -harwin -harvley -harvilchuck -harvick -harutunian -hartzo -hartzheim -hartjen -hartgraves -hartgrave -hartgerink -hartenstein -harsy -harrisow -harrigton -harrellson -harralson -harrald -harradine -harraden -haroun -harnly -harnes -harnar -harnan -harnack -harlston -harlor -harleston -harkenreader -harkcom -harjochee -hargest -harges -harfert -harens -hardung -hardney -hardinson -hardigan -harby -harbus -harbough -harbottle -harbold -harary -haramoto -harader -harabedian -har -happney -happe -haper -hape -hanville -hanusey -hantzarides -hantula -hanstine -hansteen -hansson -hansrote -hansil -hanoharo -hanock -hannula -hanno -hannem -hanneken -hannegan -hanmore -hanisko -hanisco -hanify -hanhan -hanegan -handt -handshaw -handschumaker -handren -handlin -handing -handeland -hanagan -hanagami -hanafin -hanafan -hanacek -hamway -hampon -hamper -hamparian -hamor -hamontree -hamolik -hamnon -hamn -hammet -hammerstein -hammerstad -hammerlund -hammed -hammang -hameen -hamborsky -hamb -hamalak -hamai -halwood -halston -halpainy -halon -halmstead -halmick -hallstead -hallowich -hallio -hallie -hallerman -halleen -hallczuk -hallan -halgren -halechko -halcom -halbritter -halaliky -hal -hajdukiewicz -hait -haislett -hairster -hainsey -hainds -hailes -hagwell -hagon -haghighi -haggstrom -haggis -haggen -hageny -hagelgans -hagarty -hafenbrack -haessler -haessig -haerr -haener -haen -haeckel -hadson -hadland -hadian -haddaway -hackmeyer -hackethal -hackerd -hackenmiller -hackenbery -hacke -hackborn -hachette -habif -habermann -haberern -habbs -haakinson -haagensen -gzym -gyurko -gyllenband -gyaki -gwynes -gwenn -guzmdn -guziczek -guz -guyott -guyot -guyet -guttenberg -gutschow -gutreuter -gutrerrez -gutieres -gutiennez -guthorn -guthary -guterriez -gutenson -gussin -gushue -gusa -gurvine -gurtin -gurrad -gurne -guridi -gureczny -guralnick -gunzenhauser -gunthrop -gunkelman -gunagan -gun -gumphrey -gummersall -gumbert -gulnick -gullung -gullage -gulini -gulikers -guley -guldemond -gulde -gulbraa -gulati -guittennez -guitreau -guith -guitar -guirgis -guinle -guiltner -guilstorf -guillote -guillan -guilianelli -guilbe -guiffre -guiel -guidaboni -guiao -guialdo -guevana -guesman -guerrouxo -guerinot -gueretta -guenison -guenin -guempel -guemmer -guelpa -guelff -guelespe -guedesse -gudroe -gudat -guckes -gucciardi -gubser -gubitosi -gubernath -gubbins -guarracino -guarin -guariglio -guandique -guaman -gualdoni -guadalajara -grzywinski -grzywacz -grzyb -grzesiak -grygiel -gruzinsky -gruters -grusenmeyer -grupa -gruninger -grunin -grundon -gruhlke -gruett -gruesbeck -gruell -grueber -gruda -grubman -gruba -grovier -grothen -groszkiewicz -grossley -grossklaus -grosshans -grosky -groshek -grosenick -groscost -grosby -groombridge -gronvall -gromley -grollman -grohoske -groesser -groeber -grocott -grobstein -grix -grivna -gritsch -grit -gristede -grissam -grisostomo -grisom -grishan -grip -grinner -grinman -grines -grindel -grimlie -grimard -grillette -griggers -grigas -grigalonis -grigaliunas -grifin -griffins -griffes -griffel -grife -griesmeyer -griesi -griem -grham -grgurevic -greyovich -greydanus -greviston -gretzner -gretz -gretsch -greto -gresl -gresko -grengs -gremler -greist -greisser -greisiger -greiser -greiber -gregoroff -gregoreski -gregas -greenrose -greenlow -greenlees -greenfelder -greenen -greenbush -greeb -grebs -grebel -greaux -grdina -gravit -gravenstein -gravelin -grava -graul -graughard -graue -grat -grastorf -grassano -grasmuck -grashot -grasha -grappo -graper -granvil -granucci -grantier -granstaff -granroth -granizo -graniero -graniela -granelli -grandos -grandmont -gramza -graminski -gramberg -grahams -grago -graen -graefe -grae -gradle -graciani -graci -grabowiecki -grabauskas -gounder -gougeon -goudge -gouchie -gou -gottula -gottleber -gotthardt -gotowka -gotlib -gotimer -gothier -gothe -goswami -gostowski -gossin -gosserand -gossen -goshow -goshi -gosda -gosche -gorychka -gorri -gornikiewicz -gorlich -gorgo -gorglione -goretti -gorence -gorelik -goreczny -gordis -gorczynski -gorans -gootz -goosen -goonez -goolsbee -goolia -goodvin -goodpastor -goodgine -goodger -gooder -goodenberger -goodaker -goodacre -gonzolez -gonzaliz -gonsalues -gones -gone -gondran -gonda -gonazlez -gomzalez -gomey -gome -gomberg -golumski -goluba -goltry -goltra -golpe -golombecki -gollwitzer -gollogly -gollin -golkin -golk -goldware -goldrup -goldrich -goldhammer -goldhahn -goldfischer -goldfield -goldeman -goldak -golberg -golba -golanski -golabek -goick -gogocha -goglia -gogins -goetzke -goettman -goettig -goetjen -goeman -goeldner -goeken -goeden -godyn -godwyn -godown -godfray -goderich -gode -godde -goda -gockerell -gochnauer -gochie -gobrecht -gobeyn -gobern -gobea -gobbo -gobbi -gnagey -glugla -gluckman -gluc -glowski -glowka -glowinski -glow -glossner -gloff -gloe -glodich -gliwski -gliues -glise -glinkerman -glimp -glicher -glenny -glembocki -gleiss -gleichweit -gleghorn -glaviano -glauser -glaue -glaubke -glauberman -glathar -glasow -glashen -glasglow -glarson -glapion -glanden -glader -gladen -glacken -gjorven -gjokaj -gjesdal -gjelten -givliani -gitzlaff -gittere -gitlewski -gitchell -gissler -gisriel -gislason -girolami -girmazion -girellini -girauard -girardeau -girad -giove -gioriano -gionson -gioacchini -ginnetti -ginnery -ginanni -gillom -gillmer -gillerist -gillentine -gilhooley -gilfoy -gilespie -gildroy -gildore -gilcoine -gilarski -gihring -giggie -giessinger -gierling -gielstra -giehl -giegerich -giedlin -gieber -giebel -gidwani -gicker -gibes -gibbings -gibbard -gianopulos -gianola -giannell -giandelone -giancaspro -giancarlo -gian -giamichael -giagni -giacomazzi -giacoletti -giachino -ghramm -ghosten -ghiringhelli -ghiorso -ghil -ghia -gheza -ghekiere -gheewala -ghazvini -ghazi -ghazal -ghaor -ghane -ghanayem -ghamdi -gfroerer -geyette -gewinner -gewant -gevorkian -gevedon -geuder -getting -gettenberg -getschman -getachew -gestes -gesselli -geryol -gerych -gerty -gerton -gertken -gerster -gersch -gerpheide -geronime -gerondale -gerock -germinaro -germershausen -germer -gerlock -gerla -gerking -gerguson -geres -gerbs -gerbi -gerathy -gerardot -georgiana -georgales -geohagan -geoghan -geoffrey -genualdi -gentis -gennusa -gennaria -gennarelli -genin -genga -geng -geneseo -generous -generoso -genera -genberg -gemmel -gembe -gembarowski -gelzer -gelo -gellis -gellespie -gell -gelineau -gelger -geldrich -gelbach -geister -geissel -geisen -geiman -geils -gehrking -gehri -gehrett -gehred -gefroh -geerken -geelan -gedris -gedo -gechas -gecan -gebrayel -gebers -geasley -geanopulos -gdula -gbur -gazzillo -gazza -gazo -gaznes -gazdecki -gayoso -gayo -gaymes -gawlak -gavula -gavles -gaviria -gavinski -gavigan -gaves -gavell -gavalis -gautsch -gauron -gauntner -gaulzetti -gattie -gatski -gatch -gata -gastelun -gastellum -gastel -gasson -gassler -gasse -gasquet -gaspari -gasienica -gaseoma -gasch -garzone -garverick -garve -garthee -garrod -garriss -garrish -garraghty -garnet -garness -garnder -garlovsky -gariti -garich -garibaldo -garib -gargani -garfias -garff -garf -gares -garen -gardy -garder -garcelon -garced -garavelli -garala -garacci -ganze -gantewood -ganska -gannoe -ganji -ganja -ganibe -ganiban -ganguli -gangluff -gangadyal -gane -gandhy -gandarillia -gancio -gana -gamrath -gamewell -gamela -gamberini -gamberg -gambell -gambaiani -galvano -galva -galustian -galston -galstian -galson -gals -galon -galofaro -gallipo -gallery -galleno -gallegher -gallante -gallagos -gallaga -galjour -galinoo -galinol -galin -galietti -galhardo -galfayan -galetti -galetta -galecki -galauiz -galaska -galashaw -galarita -galanga -galacio -gailun -gailis -gaibler -gagon -gago -gagliardotto -gaetke -gaestel -gaekle -gadue -gades -gacusan -gacad -gabrel -gabouer -gabisi -gabino -gabbett -gabbay -gab -gaarsland -fyles -fventes -fusselman -fusik -fusi -fusha -fusca -furuyama -furubotten -furton -furrh -furne -furna -furlotte -furler -furkin -furfey -fure -furch -furay -fupocyupanqui -funderbunk -fundenberger -fulwiler -fulsom -fullwiler -fulliton -fulling -fuleki -fulda -fukuroku -fukada -fuhri -fuglsang -fugle -fugah -fuesting -fuents -fudacz -fucile -fuchser -frydman -fryday -fruusto -frutoz -frullate -fruchey -frossard -fross -froschheiser -froozy -fronduti -frondorf -fron -fromong -frometa -froiland -frohwein -frohock -froeliger -frodsham -fritzpatrick -frist -frisino -frisella -frischkorn -fringuello -frings -friling -frikken -frietsch -friest -friedstrom -friedhaber -friedenberg -friedeck -fridal -freytas -freydel -freudiger -freshley -frere -frenner -freniere -fremon -fremming -freme -freligh -freistuhler -freiser -freil -freifeld -freidkin -freidet -frehse -freguson -freerksen -freelon -freeley -freehoffer -freedland -fredrikson -fredric -fredline -fredicks -freddrick -frawkin -frauenkron -frati -franzeo -frantzich -frankina -frankford -frankenreiter -frankenfeld -franeo -frandeen -franculli -francolino -francoise -francisque -franciosa -francios -francione -franceski -franceschina -fram -fraine -fragassi -fracier -fraccola -frabotta -frabizio -fouyer -foux -foutain -fourre -fouracre -found -foules -foucha -fosso -fosser -fossa -fosburgh -forwood -fortado -forston -forsthoffer -forschner -forsch -fornkohl -fornerod -formhals -formey -formento -formato -forlani -forgy -forgach -fordon -forcino -forcell -forcade -forbish -forber -fontneau -fontelroy -fonteboa -fontanini -fonsecn -fondell -fon -follie -foller -folkins -folkens -folgar -foks -fogus -fogo -foerschler -foell -foecke -foderaro -foddrill -focks -flum -flugence -fluette -fluetsch -flueck -flournay -flotow -flota -florkowski -florestal -florance -floore -floerchinger -flodman -floch -flitton -flitt -flister -flinton -flinspach -flierl -flever -fleurissaint -fleurantin -flether -flennoy -fleitman -flegler -fleak -flautt -flaum -flasher -flaminio -fixari -fiumefreddo -fitzmier -fitzgerlad -fitzen -fittje -fitser -fitchette -fisichella -fisger -fischbein -fischang -fiscal -fisanick -firoozbakht -firlik -firkey -fiorenzi -fiora -finucan -finto -finona -finocan -finnley -finnin -finnila -finni -finnel -finne -finland -finkenbiner -finey -finders -filzen -filyan -filteau -filonuk -fillo -fillerup -filkey -filippides -filippello -filburn -filbrardt -filbey -filary -filarecki -filak -fijalkowski -figurelli -figone -figlioli -figlar -figary -figarsky -fiermonte -fierge -fiely -fieldstadt -fiedtkou -fiedorowicz -fiebich -fie -fidsky -fido -ficenec -feyler -fewless -feulner -feuerberg -fetui -fetrow -fesus -fesenbek -ferugson -ferster -ferrise -ferratt -ferratella -ferrarotti -ferrarini -ferrao -ferrandino -ferrall -ferracioli -feron -ferndez -fernandz -fermo -ferm -ferlic -ferjerang -feris -ferentz -fereday -ferdin -ferdico -ferderer -ferard -feramisco -fenti -fensel -fenoglio -fenoff -feno -fenniwald -fenger -fenceroy -felzien -felson -felsher -fellon -felli -fellhauer -fellenbaum -felleman -fellars -felks -felipa -felila -felico -felicione -felger -feldtman -feldner -feldker -feldhake -felciano -felcher -fekety -feindt -feinblatt -feilbach -feikles -feigh -feichtner -fehribach -fehnel -fehn -fegurgur -fego -fefer -feezor -feery -feerst -feeling -feekes -feduniewicz -feduccia -fedorka -fedoriw -fedorczyk -fedel -feddes -fedderly -fechtel -fecat -feazelle -feast -fearheller -fearen -feamster -fealy -fazzinga -fawell -favilla -favieri -favaron -favaro -faustman -faurot -faur -faulstick -faulstich -faulkes -faulkenbury -faulisi -faubus -fat -faster -fash -fasenmyer -fasci -fasbender -faruolo -farrin -farria -farrauto -farmsworth -farmar -farm -farlee -fariello -farid -farha -fardo -faraco -fantz -fanner -famy -famiano -fam -falu -faltz -falto -falson -fallie -fallick -falla -falknor -falkenthal -falis -falha -falge -falconeri -falcione -falchi -falb -falasco -falah -falack -falacco -faix -faisca -fairy -fairly -faigle -faichtinger -fahrenwald -fahrenbruck -fahner -fahlstedt -fagnoni -faglie -fagala -faehnle -fadri -fadei -facenda -fabus -fabroquez -fabello -fabeck -fabbozzi -ezernack -ezer -ezechu -ezdebski -eyubeh -eyermann -extine -expose -ewelike -evora -eviston -evertz -eversmann -everleth -evering -eveline -eveler -evanski -evanosky -evanoski -evanchyk -evanchalk -euton -euser -eurton -europe -ettl -ettison -etters -etoll -ethel -etchinson -esty -esteybar -estevane -esterson -esterling -estergard -estela -estaban -esshaki -essepian -esselman -essaid -essaff -esquiuel -esquerre -esquea -esposita -espenscheid -esparaza -esoimeme -esnard -eskuchen -eskelsen -eskeets -eskaran -eskaf -eshlerman -esenwein -escorza -escoe -escobeo -eschenbacher -eschenbach -eschborn -escarrega -escalet -esbensen -esannason -ervine -ervay -ertelt -erpenbach -ero -ernstrom -ernspiker -ernandez -ermogemous -ermita -erm -erlwein -erlanson -erixon -erice -erfert -ereth -erdmun -erdelt -erchul -ercek -erbentraut -erard -eracleo -equiluz -eppert -epperheimer -eppenger -epifano -eperson -enzenauer -entzi -entrup -entel -enote -enocencio -enny -ennist -ennels -ennaco -enkerud -enick -engwer -engleby -enget -engessor -engerman -engbretson -enfort -ends -endresen -endecott -encalade -emuka -emslander -emshoff -empleo -empfield -emperor -emo -emmrich -emlin -emigholz -emfield -emeru -emeche -emdee -emberlin -emberley -emberger -emayo -emanus -emami -elvert -elshair -elsensohn -elsbury -elsa -elroy -elquist -elofson -elmaghrabi -ellworths -ellifritt -ellies -elliem -ellerkamp -ellerbeck -ellenbee -ellena -ellebrecht -elldrege -ellanson -elko -elkayam -eliszewski -eliseo -elis -elion -elhosni -elhassan -elhaj -elhaddad -elgen -elgas -elgar -elg -elftman -elfering -elewa -eleveld -elefritz -elbogen -elbertson -elberson -elbahtity -elahi -ekstrum -eklov -ekis -ejide -eissinger -eirls -einfeldt -eilts -eilders -eilbert -eilbeck -eikmeier -eifler -eiesland -eichstadt -eichenmiller -eichenauer -eichelmann -ehr -ehorn -ehnis -ehmen -ehleiter -ehinger -ehiginator -ehigiator -egvirre -egure -eguizabal -ego -egidio -eggenberg -eggart -eget -egertson -egbe -efrati -eflin -eerkes -ee -edwads -edster -edralin -edmerson -edmeier -edleston -edlao -edith -edis -edeline -edeker -economus -economides -ecoffey -eckrote -eckmeyer -eckle -ecklar -eckis -echemendia -echavez -echaure -ebrani -ebo -ebilane -ebesugawa -eberting -ebersol -eberline -eberl -ebenstein -eben -ebbesen -ebach -easom -easlick -easker -easey -easdon -earman -earll -earlgy -earenfight -earehart -ealley -ealick -eagy -eafford -dziurawiec -dzierzanowski -dziegielewski -dziduch -dziadek -dzama -dyser -dys -dyreson -dymke -dyen -dwyar -dwornik -dwellingham -duxbury -duwhite -duverney -duvel -dutschmann -dutel -dute -dusak -durun -dursch -durrwachter -durousseau -durol -durig -durett -duresky -durelli -duree -dural -duraku -dupouy -duplin -duplesis -duplaga -dupaty -duonola -dunzelman -dunten -dunt -dunster -dunnahoo -dunmead -dunks -dunkentell -dunemn -duncker -dunckel -dunahoo -dummitt -dumez -dumag -dulberg -dulatre -dukhovny -dukeshire -dukeshier -duitscher -duitch -duh -dugmore -dughi -duffus -duffany -dufer -duesenberg -duerkson -duerkop -duenke -duel -dudleson -dudik -duderstadt -dudack -duchow -duchesney -duchatellier -ducceschi -ducayne -ducay -ducatelli -dubonnet -duberstein -dubej -dubeck -dubeau -dubbin -duban -duball -duartes -dsaachs -dryman -drybread -drumwright -drumheiser -drumgole -drullard -drue -drude -druckhammer -dru -drought -drossos -drossman -droski -drong -drones -dronen -droegmiller -drock -drisdelle -drinkall -drimmer -driggins -driesel -driere -drewski -dreps -dreka -dreith -dregrich -dreggs -drawy -drawec -dravland -drape -dramis -drainer -dragun -dragt -dragotta -dragaj -drafton -drafall -drader -draa -dozois -dozar -doyan -doxon -dowsett -dovenmuehler -douyon -douvier -douvia -douthart -doussan -dourado -doulani -douillet -dougharity -dougall -douet -dou -dotto -dottery -dotstry -doto -dotie -doswell -doskocil -doseck -dorweiler -dorvillier -dorvee -dortilla -dorsainvil -dorrian -dorpinghaus -dorph -dorosan -dornseif -dornhelm -dornellas -dorne -dornbos -dormanen -dormane -doriean -dorer -dorcent -dorat -dopf -dootson -doornbos -dooney -donten -dontas -donota -donohve -donning -donnellon -donne -donmore -donkor -donkervoet -donhoe -dongo -donelon -donchatz -donawa -donar -domnick -domkowski -domio -dominis -dominiquez -dominicus -dominico -domingus -domianus -domas -dolven -dolliver -doljac -doliveira -dolhon -dolgas -dolfay -dolcetto -dokuchitz -doino -doiel -doffing -doerflinger -doepner -doelling -dodich -doderer -dockray -dockett -docker -docimo -dobre -dobrasz -dobmeier -dobesh -dobberfuhl -dobb -dmitriev -dlobik -dlabaj -djuric -dizadare -divento -divan -diulio -ditti -dittbrenner -ditta -ditolla -ditchfield -distilo -distance -disponette -dispirito -dishinger -discon -disarufino -disabato -diruzzo -dirose -dirollo -dirado -dippery -dionisopoulos -diones -dinunzio -dinucci -dinovo -dinovi -dinola -dinho -dings -dinglasan -dingel -dinco -dimperio -dimoulakis -dimopoulos -dimmack -dimling -dimitriou -dimes -dilthey -dilox -dillworth -dillmore -dilligard -dilleshaw -dilgard -dilda -dilcher -dilchand -dikkers -diket -dikens -digrazia -digness -digiorgi -digiambattist -digesare -difiora -diffendal -diewold -dietsche -diestel -diesen -dien -diemoz -dielman -diegidio -diedricks -diebol -didlake -didamo -dickun -dickstein -dickirson -dickins -dicioccio -diciano -dichristopher -dicaro -dicara -dibrino -dibenedict -diamico -diak -diachenko -dhosane -dezell -dezayas -deyette -deyarmond -deyarmin -dewyer -dewulf -dewit -dewinne -dewaratanawan -devreese -devitto -devincenzi -devick -devey -devenecia -devel -deuschle -deuschel -deuman -deuermeyer -detz -deturenne -dettra -dettore -dettmering -dettmann -detterich -detorres -detlefs -detjen -detillier -dethomasis -detering -detar -desutter -destime -destephano -desrocher -desquare -desporte -desparrois -desort -desormo -desorbo -desolier -desmarias -desloge -deslaurier -desjardiws -desiyatnikov -desisles -desilvo -desiato -deshazior -desforges -deserres -deschomp -deschino -deschambeault -desautelle -desantigo -desan -deruso -derubeis -derriso -derricott -derrer -deroos -deroko -deroin -deroest -derobles -dernier -dermo -derkach -derizzio -deritis -derion -deriggi -dergurahian -dereu -derer -derenzis -derenthal -derensis -derendal -derenberger -deremiah -deraveniere -deramo -deralph -depsky -deprizio -deprince -deprez -depratt -depottey -depippo -depinho -depietro -depetris -deperte -depena -depaulis -depasse -depace -deonarian -deodato -denski -densieski -denoyelles -denofrio -denni -dennert -denna -deniken -denier -denice -denhartog -dench -dence -denburger -denafo -demyers -demulling -demuizon -demosthenes -demoney -demonett -demmon -demich -demian -demetris -demetree -demeris -demchok -dembosky -dembinski -dember -demauri -dematos -demasters -demarrais -demarini -demarc -demara -delvin -delveechio -delusia -deluney -deluccia -delre -delpiano -delosanglel -delosangeles -delon -delnegro -dellos -dellon -delling -dellibovi -dellasciucca -dellasanta -dellapina -dellajacono -dellagatta -dellaca -deliso -delinois -delilli -delilla -deliberato -delhomme -delguercio -delger -delgadilo -delfi -delfelder -deley -delevik -delettre -delessio -deleonardo -delellis -delehoy -delegeane -deldeo -delcine -delbusto -delbrune -delbrocco -delbo -delasko -delashaw -delasancha -delaremore -delaplane -delapenha -delanoche -delalla -delaguila -delaglio -dekuyper -dekort -dekorne -deklerk -dekine -dejoode -dejes -dejarme -dejager -deja -deischer -deir -deighton -deidrick -deida -deible -dehrer -dehombre -dehler -dehghani -dehan -dehaemers -degunya -deguise -degrella -degrazio -degrandpre -degori -degolyer -deglopper -deglanville -degado -defrates -defrancis -defranceschi -defouw -defiguero -defiglio -defide -defaria -deeters -dedominicis -dedo -dedier -dedek -deculus -decroo -decree -decourley -decomo -declouette -declet -declark -deckelman -dechart -dechamplain -decasanova -decardo -decardenas -decann -decaneo -debrita -debrie -debraga -debnar -debiew -debes -debenham -debello -debarba -deback -dearstyne -dearco -deanne -deanhardt -deamer -deaguero -daylong -daya -dawber -dawahoya -davydov -davtyan -davos -davirro -davidek -davide -davers -davensizer -davel -davda -dauzart -daurizio -dauila -daughetee -dauge -daufeldt -daudier -daubenmire -daty -datu -datte -dastoli -daste -dasso -daskam -dasinger -dasalia -daryanl -darvile -darsi -darsch -darrup -darnel -darm -darjean -dargenio -darey -dardashti -dardagnac -darbro -darbeau -daramola -daquip -dapvaala -danza -dantoni -dantes -danoski -danns -dannecker -danfield -danella -danczak -dancoes -damphousse -damoth -damoro -dammrich -dammad -damis -damerell -dambrozio -dama -daltorio -dalponte -dalomba -dalmida -dalmau -dallen -dalla -dalitz -dalio -dalhart -daleus -dalene -dalee -dalbeck -dalaq -dair -daimaru -daill -daichendt -dahood -dahlstedt -dahley -dahler -dagnone -dagnon -dagner -daggy -daer -dae -dadds -daddea -daddabbo -dad -dacres -dachs -dachelet -daber -czyrnik -czwakiel -czupryna -czubia -czosek -czernovski -czerno -czernik -czerniak -czekaj -czarniecki -cyler -cychosz -cuzzo -cuva -cutri -cutone -cutia -cutburth -cusworth -custa -cusmano -cushway -cushinberry -cusher -cushen -cushard -cusatis -curzi -curylo -curriere -currans -curra -curpupoz -curls -curleyhair -curella -cureau -curameng -cupe -cunningan -cunnane -cummisky -cummer -cumley -cumblidge -culotti -cullin -culajay -cujas -cuez -cuddihee -cudan -cuchiara -cuccinello -cucchiaro -cuartas -cuaresma -cuadro -csensich -cruthirds -cruthers -crutchev -crutch -crummedyo -crumlish -cruiz -cruey -cruel -croxford -croxen -crowin -croutch -croushorn -crotwell -crother -croslen -crookston -cronholm -cronauer -cromeens -crogier -croffie -crocitto -critzman -criton -critchelow -cristofaro -cristello -cristelli -crissinger -crispo -criqui -crickenberger -cressell -cresencio -creglow -creggett -creenan -creeley -credo -credille -crease -crawn -cravenho -cravatta -cration -crantz -cragar -cragan -cracolici -cracknell -craawford -craan -cozadd -coyier -cowser -cowns -cowder -covotta -covitt -covil -covarruvia -covarrubio -covarrubia -covar -cova -coutino -cousey -courtoy -courtad -couron -courneya -courie -couret -courchine -countis -counceller -cottillion -cottengim -cotroneo -cotreau -cotheran -cotey -coteat -cotant -coswell -costenive -costellowo -costeira -costanzi -cossaboon -cossaboom -cosimini -cosier -cosca -cosano -corvelli -corti -cortesi -corsilles -corsey -corseri -corron -corridoni -corrett -correo -corren -correau -corraro -corporon -corporal -corpeno -corolla -corolis -cornes -cornelson -cornea -cornacchio -cormican -cormia -coriz -coric -coriaty -coriano -corderman -cordel -corde -cordasco -corburn -corallo -coradi -coponen -coples -copier -copa -coopey -coonley -coomey -coolbrith -coolbeth -coolahan -cookey -coogen -cooey -cooch -conze -conzalez -contreros -contreres -contras -contraras -contopoulos -contofalsky -contino -consoli -consigli -conoly -connyer -conninghan -connette -connerty -connarton -conlans -conkrite -confrey -confair -coneys -conelly -conejo -condreay -condino -condell -condelario -concini -concilio -concho -conces -concepion -conceicao -conable -compres -compiseno -compeau -compean -comparoni -companie -compagna -comoletti -commes -comment -comeauy -colyott -columbres -colsch -colpaert -colpack -colorina -colopy -colonnese -colona -colomy -colombe -colomba -colmer -colly -collozo -collova -collora -collmeyer -collaco -colian -colglazier -colehour -colebrook -coldsmith -colden -colato -colasanti -colasamte -colarossi -colander -colaizzo -colaiacovo -coladonato -colacone -colabrese -cokins -cohoe -coho -cohlmia -cohagan -cogen -cofrancesco -cofran -codey -codeluppi -cocran -cocozza -cocoran -cocomazzi -cockrin -cockreham -cocking -cochis -cocherell -coccoli -cobio -cobane -coatley -coatie -coant -coaker -coachys -cmiel -clozza -cloughly -clothey -closovschi -closey -cloman -cloffi -cloepfil -clites -clinker -cleverly -cleve -clesen -clery -clerf -clemson -clemo -clemmon -clemmo -clemmey -cleark -clayter -clavey -clavelle -clausel -claud -claucherty -claton -clarson -clarendon -clarbour -clar -clap -clanin -clan -claman -clam -claes -civitello -civcci -civatte -civale -ciucci -cito -cisneroz -cislo -cisewski -cirioni -cirilli -cipullo -cippina -cipolone -cipolloni -cioni -cintra -cinkosky -cinalli -cimmiyotti -cimeno -cilva -cills -ciliento -cilibrasi -cilfone -ciesiolka -ciersezwski -cierpke -cierley -cieloha -cicio -cichosz -cichonski -cicconi -cibulskas -ciaramitaro -ciano -cianciotta -ciampanella -cialella -ciaccia -chwieroth -chwalek -chvilicek -chuyangher -churner -churchville -chuppa -chupik -chukri -chuh -chudzinski -chudzik -chudej -chrones -chroman -christoffer -christmau -christle -christaldi -christal -chrispen -chriscoe -chown -chowen -chowanec -chounlapane -choulnard -chott -chopelas -chomicki -chomali -choen -chodorov -chmelik -chludzinski -chivalette -chiv -chiumento -chittom -chisnall -chischilly -chisari -chirdon -chirasello -chipp -chiotti -chionchio -chioma -chinweze -chinskey -chinnis -chinni -chindlund -chimeno -chilinskas -childes -chikko -chihak -chiffriller -chieves -chieng -chiavaroli -chiara -chiapetto -chiaminto -chhor -chhon -chheng -chhabra -cheyney -chey -chevres -chetelat -chet -chestand -chessor -chesmore -chesick -chesanek -cherwinski -chervin -cherven -cherrie -chernick -chernay -cherchio -cheon -chenevey -chenet -chenauls -chenaille -chemin -chemell -chegwidden -cheffer -chefalo -chebret -chebahtah -cheas -chaven -chavayda -chautin -chauhdrey -chauffe -chaudet -chatterson -chatriand -chaton -chastant -chass -chasnoff -chars -charnoski -charleton -charle -charisse -charif -charfauros -chareunsri -chareunrath -charbonnel -chappan -chaples -chaplean -chapko -chaobal -chanthaumlsa -chantha -chanofsky -chanel -chandsawangbh -chandronnait -chandrasekhar -chandrasekara -chandier -chanchuan -chananie -chanady -champy -champany -chamley -chamers -chamble -chamberlian -chalow -chaloner -chalita -chalaban -chajon -chais -chaim -chaille -chaidy -chagollan -chafe -chadsey -chaderton -chabotte -cezil -cersey -cerritelli -ceronsky -ceroni -cernansky -cerenzia -cereghino -cerdan -cerchia -cerbantes -cerao -ceranski -centrone -centorino -censky -ceman -cely -celuch -cellupica -cellio -celani -cegla -cedars -ceasor -cearlock -cazzell -cazeault -caza -cavezon -cavalli -cavaleri -cavaco -cautillo -cauthorne -caulley -caughran -cauchon -catucci -cattladge -cattabriga -catillo -cathers -catenaccio -catena -catani -catalli -catacun -casumpang -casuat -castrovinci -castronova -castoral -castiola -castin -castillero -castillejo -castera -castellanoz -castellaneta -castelan -castanio -castanado -castagnier -cassis -cassion -cassello -casseday -cassase -cassarubias -cassard -cassaday -caspary -caspar -casoria -casilles -casile -casida -cashing -casgrove -caseman -caselton -casello -caselden -cascia -casario -casareno -casarella -casamayor -casaliggi -casalenda -casagranda -casabona -carza -caryk -carvett -carthew -carther -carthens -cartaya -cartan -carsno -carscallen -carrubba -carroca -carril -carrigg -carridine -carrelli -carraturo -carratura -carras -carransa -carrahan -carpente -carpenito -caroway -carota -caronna -caroline -carnoske -carnohan -carnighan -carnie -carnahiba -carmichel -carmello -carlsley -carlington -carleo -cariveau -caristo -carillion -carilli -caridine -cariaso -cardoni -cardish -cardino -cardinas -cardenos -cardejon -cardeiro -carco -carbal -caravalho -caraher -caradonna -caracso -caracciola -capshaws -caprice -capriccioso -capraro -cappaert -caposole -capitani -capinpin -capiga -capezzuto -capetl -capestany -capels -capellas -caparoula -caparelli -capalongan -capaldo -canu -cantre -cantoral -cantfield -cantabrana -canori -cannuli -canestro -canestrini -canerday -canellas -canella -candon -cancer -canatella -canak -cana -campolongo -campagnone -campagnini -campagne -camon -cammarn -caminita -camidge -cambronne -cambric -cambero -camaron -calzone -calzadilla -calver -calvent -calvelo -calvaruso -calvaresi -calpin -calonsag -calonne -caloca -calligy -callez -calleo -callaro -calixtro -caliguire -caligari -calicut -caler -calderson -caldarone -calchera -calcagino -calaycay -calamarino -calamari -calamare -cakanic -cajune -cajucom -cajero -cainion -cainglit -caiafa -cagey -cafourek -caffarel -cafarella -cafagno -cadoy -cadmen -cader -cademartori -cackett -cacibauda -caci -cacciola -cabrar -cabla -cabiya -cabido -cabeza -cabellon -cabeceira -cabanes -cabag -bzhyan -byther -byro -byrley -byrdsong -bynd -bylund -byant -bverger -buzzelle -buzzanca -buyes -buyak -buvens -buttino -buttimer -buttari -buttaccio -buther -butel -buszak -bustinza -bussom -busskohl -bussink -bussinger -bussert -busselberg -bussani -busl -buskohl -busie -bushie -busenius -buseck -buscarino -busacker -burwick -burtin -burriesci -burreson -burnum -burnet -burneisen -burnaman -burlette -burlando -burki -burker -burkel -burka -burigsay -burhanuddin -burgen -burgbacher -buretta -buress -burdsall -burdis -burdi -burdg -burbano -bur -buquo -buontempo -buonadonna -bunzey -bunyea -buntain -bunkers -bungy -bungart -bunetta -bunes -bundley -bundette -bumm -bumbray -bumba -bumatay -bulwinkle -bultron -bulnes -bullo -bullmore -bullerwell -bullert -bullara -bulland -bulkin -bulgarella -bulacan -bukrim -bukowinski -bujol -buja -buike -buhoveckey -buhite -bugtong -bugler -bugenhagen -bugayong -bugarewicz -bufton -buetti -buess -buerstatte -buergel -buerge -buer -buena -buegler -bueggens -buecher -budzyna -budz -budworth -budesa -buddle -budden -buddemeyer -buckridge -buckreis -buckmiller -bucke -buchser -buchsbaum -buchs -buchna -buchheim -buchberger -bucchin -bucanan -bubbico -buanno -bual -brzycki -brzostowski -bryum -brynga -brynestad -bryar -bruzewicz -bruyn -bruun -brutlag -bruson -bruski -bruse -brusco -bruscino -brunsting -brunskill -brunow -brunnemer -brunderman -brunckhorst -brunback -brumbley -bruh -brugal -bruenderman -bruegman -brucie -brozyna -brozell -brownsworth -brownsword -brownsberger -browley -brous -brounson -broumley -brostoff -brossmann -brosig -broschinsky -broomell -brookshier -brooklyn -bronikowski -brondyke -bromberek -brombach -brokins -broking -brojakowski -broich -brogren -brogglin -brodhurst -brodhag -brodey -brocklebank -brockie -brockell -brochure -brochhausen -broccolo -brixius -brittsan -brits -britnell -brisley -brisbone -briola -brintnall -bringman -bringas -bringantino -brinckerhoff -briguglio -briggerman -brigg -brigantino -briehl -brieger -bridson -bridjmohan -bridgford -bridget -bridgens -bridendolph -briden -briddick -bricknell -brickles -brichetto -briare -brez -brevitz -brevil -breutzmann -breuning -bretl -brethour -bretana -bresolin -breslawski -brentnall -brentano -brensnan -brensinger -brensel -brenowitz -brennenstuhl -brengle -brendlinger -brenda -brend -brence -brenaman -bremseth -bremme -breman -brelje -breitung -breitenfeldt -breitenbucher -breitenberg -breines -breiland -brehony -bregon -brege -bregantini -brefka -breeman -breehl -bredy -bredow -bredice -bredahl -brechbill -brearley -brdar -brazzi -brazler -braye -braver -bravender -bravard -braunsdorf -braunschweige -braught -brauchla -bratek -braskey -brasket -branske -branot -branine -braniff -brangan -branen -branecki -brandsrud -brandman -brandeland -brande -brandauer -brancazio -brancanto -branaugh -bramucci -brakstad -brais -braim -braig -brah -brage -bradtke -bradrick -bradon -bradicich -brackelsberg -brachman -brachle -bracetty -bracaloni -bozzell -bozovich -bozinovich -boyenga -bowring -bowlet -bowgren -bowersmith -bowels -bowcutt -bovio -boveja -bovain -boutchyard -bousson -bousqute -bousley -bourns -bourlier -bourgois -bourff -bourek -bourdeaux -bourdages -bourbonnais -boundy -bouliouris -boudrieau -boudin -bouchaert -botwin -bottomly -bottolfson -bottolene -bottiggi -botterbusch -botros -botras -botdorf -bostelman -bossenbroek -bossardet -bosowski -boschult -borycz -borwig -boruvka -bortignon -borsa -borromeo -borrolli -borries -borreta -borremans -borras -borr -borozny -borowiec -boronat -bornman -bormes -borlin -borguez -borgstede -borgese -borgert -borgers -borgella -borell -bordon -bordi -bordges -bordenkircher -borde -borbon -boratko -boque -boppre -boosalis -boorom -bookter -bookmiller -bookamer -bonzo -bonyai -bonugli -bonsu -bonsey -bonsell -bonsee -bonow -bonno -bonnlander -bonnin -bonnenfant -bonjorno -boniol -bongo -bonetto -bonepart -bondre -bonaventura -bonatti -bonapart -bonagurio -bonaguidi -bomzer -bompane -bomilla -bomia -bombino -bomaster -bollens -bollbach -bollaert -bolins -bolinder -bolig -bolian -bolfa -bolevice -boldwyn -bolduan -boldizsar -bolde -bokal -boitel -boin -boillot -boid -bohonik -bohnker -bohney -bohlsen -bohlman -bohlken -bogut -bognuda -bogguess -bogg -bofinger -boero -boerm -boeri -boera -boelk -boehnke -boege -bodyfelt -bodon -bodison -bodfish -boderick -bodenhagen -bodelson -bodary -bocskor -bockrath -bocklund -bockhorn -bockenstedt -bockelmann -bochicchio -boches -bochek -bocchieri -boccard -bobsin -bobrosky -bobowiec -boblak -bobet -boane -boamah -blyze -blute -blush -blunkall -blundo -blumkin -bluming -blumenschein -blumenkrantz -blumenberg -bluel -bloye -blott -blotsky -blossomgame -blosfield -bloomstrom -bloomstrand -bloomsburg -blonsky -blonigan -blomstrand -bloes -bloemker -bloedel -blochberger -blizard -blinebry -blindt -blihovde -blide -blicker -bleything -blevans -blessett -blesofsky -bleiler -bleichner -bleicher -bleeck -blee -blazon -blazing -blazich -blaydon -blaxland -blauw -blauman -blaszczyk -blasl -blashak -blasenhauer -blanscet -blanquet -blanquart -blannon -blanko -blankenbecler -blanga -blander -blakstad -blailock -blafield -blaeser -blaese -blady -bladt -blacock -blackwall -blackmoore -blackmar -blackington -blackbird -blacio -blachowski -bjornstrom -bjorn -bjerknes -bjerken -bjella -bizzard -bivans -bitzenhofer -bitar -bitah -bissol -bissel -bissada -bispham -bisikirski -bischel -biscari -bisanz -birthwright -birsner -bironas -birner -birnberg -birkmaier -birkenhagen -birely -birdon -bionda -binn -bininger -binet -binderup -binam -billus -billue -billotti -billinsley -billingsby -billigmeier -billiet -billiar -billesbach -bilchak -bilansky -bijan -bihler -bihl -bigusiak -bigony -bignell -biggard -biewald -biever -bietsch -biesenthal -biesecker -bierut -bierstedt -bierschbach -biersack -bierod -bierl -bierkortte -biener -bielser -bielke -bielefield -biedekapp -bidstrup -bidell -biddlecome -bicknase -bicking -bichoupan -bichoff -bibiloni -biastock -biasotti -bianchin -bhullar -bhaskar -bhamaraniyama -bhairo -bezenek -beyser -beyke -beyea -beydoun -beyale -beyal -bevevino -beuttel -beutnagel -beuthin -beuse -beurskens -beukema -beukelman -beuerle -beuchler -betzner -betzler -betzig -bettley -betry -betit -bethurem -betha -betenson -betak -bestwick -bestine -beste -bessone -bessinger -bessellieu -besong -besner -beskom -beshore -beser -besen -beseke -besares -besant -besanson -besancon -berzunza -berulie -bertrum -bertot -berto -bertman -berther -berth -bertella -bertao -bershadsky -bersaw -berrospe -berrocal -berray -bernstock -bernotas -bernos -bernmen -bernitsky -bernieri -berni -bernheim -berneri -bernell -bernbeck -bernaudo -bernau -bernatchez -bernarducci -bernardon -bernand -bernacki -berlingo -berley -berlandy -berlacher -berkovitch -berkenbile -berkbigler -berishaj -bering -bergstedt -bergsman -bergouignan -bergold -bergmeyer -bergfalk -bergenty -bergenstock -bergene -bergamine -bergami -berey -beresik -berentz -berenschot -bereda -berdux -berdar -berdahl -berczy -berchielli -bercher -berceir -berbig -berbereia -benzee -benwarc -benulis -bentzinger -bentrem -benthusen -benston -bennings -bennight -benneth -bennard -bennafield -benkosky -benker -benje -benisek -benintendi -bening -beninati -benimadho -benezra -beneuento -bendu -bending -bendell -benckendorf -benbenek -benanti -benamati -benafield -benach -benac -bembi -belwood -belvees -beltramo -belstad -belski -belschner -belscher -belovs -belousson -belous -belony -belonger -belluz -bellmore -bellitti -belliston -bellingtier -bellinder -bellhouse -bellflowers -bellen -bellehumeur -bellefontaine -bellar -bellantone -bellair -bellace -belken -belke -beliz -belina -belieu -belidor -beliard -belhumeur -belfy -belfort -belfi -belfast -belezos -belchior -belarmino -belanich -belancer -bejil -bejger -bejerano -beja -beiswenger -beissel -beilstein -beilinson -beilfuss -beile -behner -behizadeh -behimer -beherns -behanan -behal -begun -beguhl -begonia -begolli -begnoche -begen -beese -beerle -beemon -beelar -beedoo -beedles -beedham -beeckman -beebout -bedre -bedocs -bednarowicz -bedlion -bedillion -beder -bedenfield -bedee -bedaw -bedatsky -bedar -beckor -becklin -beckes -beckelheimer -beaureguard -beauparlant -beau -beattle -beatson -beath -beards -bearded -beandoin -beady -beachman -beachell -bayus -baysden -bayouth -bayon -bayn -bayani -baxtor -bawks -bawer -bawcombe -baves -bautiste -baute -baurer -baumohl -baumli -baumkirchner -baumiester -baumgartel -baumgarn -baumfalk -bauchspies -bauce -batzri -battisto -batter -battenhouse -batteiger -batrich -batra -batlle -batlis -batliner -batkin -batchellor -bastick -bastardi -bassiti -basore -basone -baskow -basini -basila -bashline -baseley -bascas -barvosa -barvick -barus -bartuska -bartula -bartosik -bartosch -bartoli -bartmes -bartlette -bartkus -bartkiewicz -bartholomeu -barte -bartch -barsegyan -barschdoor -barscewski -barsamian -barryman -barrowman -barrois -barrish -barriault -barrete -barree -barran -baronne -barninger -barners -barnebey -barnak -barnacle -barlup -barlock -barlau -barlak -barken -barkema -barjenbruch -barillo -barill -barientos -baria -bargstadt -bargmann -bargeron -baresi -barera -barends -bardos -bardoner -bardill -bardell -barck -barcik -barchus -barchacky -barberr -barbaza -barbarito -barbare -barbalich -barbadillo -baranga -barahana -baradi -barad -barach -barabin -baquero -banwarth -bansmer -banse -banowski -bannett -bankos -bangura -banerji -banek -bandyk -bandura -bandasak -bandarra -bancourt -banco -bancks -banbury -bamforth -bambas -bambace -balzotti -balzarine -balza -balwinski -baltruweit -baltazor -balsis -baloy -balow -balock -balo -balm -balluch -ballowe -ballmann -ballez -balletto -ballesterous -ballena -ballejos -ballar -ballan -ballagas -balitas -balish -baligod -balich -baldwyn -balduzzi -baldos -balderree -baldearena -balda -balcos -balasko -balangatan -balak -baladejo -bakalars -bajko -bajek -baitner -baison -bairo -baiotto -bainey -bailleu -bailado -baibak -bahri -bahde -bahadue -bagwill -bagu -bagron -bagnaschi -baffa -baff -baeskens -baerg -baenziger -baena -baell -badzinski -badruddin -badlam -badey -badertscher -badenoch -badagliacca -bacone -bacman -backhuus -bacino -bachmeyer -bachinski -bachas -bachan -bacerra -bacayo -babson -bablak -babinski -babilon -babikian -babicz -babey -babbish -baarts -baack -azznara -azuma -azor -azatyan -azapinto -azahar -ayyad -aytes -aysien -aymar -aylock -ayhens -ayele -aydin -axtman -axman -awyie -aw -avona -avner -avison -avenia -aveles -avarbuch -avancena -autullo -autovino -autobee -auther -auter -austino -austine -auster -auslam -aurrichio -aun -auls -aulder -aufiero -audrey -audibert -audelhuk -auckley -auces -aubel -auala -atzinger -atzhorn -attwell -attles -attilio -attia -atthowe -atteburg -atmore -atma -atleh -atkisson -athy -atherholt -athanasiou -atengco -atamanczyk -astillero -astafan -assum -assis -assing -assenmacher -assalone -assael -asrari -aspri -aspley -asperheim -aspell -asnicar -asner -askiew -askia -aske -ask -ashly -ashkettle -ashing -ashbourne -ashbach -ashaf -asenjo -aseng -aseltine -ascol -aschbacher -asamoah -arzt -arzabala -arview -arvez -arvanitis -arva -arunachalam -arton -arties -artibee -arthun -artez -arters -arsham -arseneault -arroyd -arroyano -arrospide -arrocho -arrisola -arrindel -arrigone -arrellin -arredla -arrand -arrance -arquelles -arosemena -arollo -aroca -arntzen -arnsberger -arnitz -arnerich -arndell -arnaudet -arnao -arnaldo -army -armout -armold -armocida -armlin -armiso -armesto -armen -armada -arkontaky -arking -aristizabal -arisa -arildsen -arichabala -ariail -argulewicz -argudin -argro -argie -argenziano -argenti -arendash -arendall -arendale -arelleano -arehano -ards -ardeneaux -ardelean -ardaly -arciola -arcieri -archiopoli -archdale -archbell -arbon -arbolida -arbetman -arbertha -arau -arashiro -araneo -arancibia -araldi -aragones -aragao -arabajian -aquas -apthorpe -apshire -aprill -aprigliano -applonie -appl -appia -appana -aponta -aplington -apley -apker -apelian -apadaca -aono -ao -anzideo -anway -antronica -antosh -antonovich -antoniak -antolak -antila -antignani -anthes -antao -ansoategui -ansloan -anreozzi -anos -anolick -anoe -annuzzi -anning -annarino -annal -annable -annabel -anitok -aninion -animashaun -anidi -angocicco -angland -angiolelli -angileri -angilello -angier -angermeier -angelozzi -angelou -angellotti -angelillo -angelica -angalich -aney -anewalt -anetsberger -anesi -aneshansley -anene -anecelle -andrzejczyk -andrzejczak -andruszkiewic -andrson -androde -andriopulos -andrino -andrich -andreola -andregg -andreessen -andrango -andradez -andrades -andrachak -andoh -andina -anderst -anderholm -andere -andalora -anciso -ancic -ancel -ancar -ancalade -anawaty -anawalt -amys -amstrong -amspaugh -amous -amott -amoros -amormino -amoriello -amorello -amoe -amodt -ammonds -ammirata -ammer -amlin -amith -amistadi -amill -amigo -amerio -american -amentler -amemiya -amela -amejorado -amedro -amedeo -amburgy -ambroziak -ambrister -amboree -amboise -ambert -ambagis -amauty -amat -amas -amarian -amara -amalong -alwin -alwazan -alvirez -alvero -alverado -alty -altstatt -altsisi -altmark -altimus -altamiruno -alson -alsing -alsaqri -alrod -alquesta -alpis -alpheaus -alperin -aloy -alosta -aloan -alnoor -almsteadt -almstead -almos -almgren -almarza -almajhoub -allyne -allsbrooks -allon -allinger -alliman -alliance -allgire -allevato -alleshouse -alleruzzo -allerton -allder -allcock -allbert -allanson -allabaugh -alkins -alkema -alkana -aljemal -alisauskas -alimo -alimento -alie -alicer -alias -alhusseini -alhameed -alhambra -alhaddad -alfredo -alfiero -aleyandrez -alexidor -alexandropoul -alexanders -alexakis -alesse -alesna -alepin -alejandrez -aldworth -aldrow -aldrige -aldonza -alcine -alcantas -albu -albrough -albor -albe -albarracin -albarazi -alatosse -alarcone -alanko -aland -alamia -alameida -alambar -alai -akwei -aksoy -ako -akley -akinrefon -akimseu -akhavan -akhand -akery -akawanzie -akapo -akamiro -akal -ajoku -ajani -aiuto -aiudi -airth -aipperspach -aiporlani -aipopo -aiola -aini -ailsworth -aills -ailiff -aievoli -aid -aiava -ahyet -ahrenholz -ahnell -ahlo -ahlfield -ahlemeyer -ahimud -ahia -ahhee -ahaus -ahalt -agustino -agustine -agurs -agumga -aguele -agresto -agreda -agpaoa -agosti -agoro -agonoy -agoff -aggers -agemy -ageboi -agbisit -afurong -afshar -affronti -afflick -affeltranger -afable -aeillo -adule -adrion -adolphe -adolfson -adner -adloff -adling -adickes -adib -adelsperger -adelmund -adelizzi -addeo -adamsonis -adamsen -adamowski -adamos -adamec -adalja -acosto -acors -acorda -acock -acly -ackah -achin -aceveda -acerra -acerno -aceituno -acee -accala -acal -abusufait -abugn -abuel -absalon -abriola -abrey -abrell -abramovitz -abramoff -abramian -abrahamian -abousaleh -aboshihata -abolafia -ableman -abkemeier -abington -abina -abigantus -abide -abeta -abercombie -abdulmuniem -abdulaziz -abdou -abdelmuti -abdelaziz -abdelal -abbington -abbatiello -abajian -abaja -aarsvold -aarhus -aardema -aarant -aanderud -aalund -aalderink diff --git a/splunk_eventgen/samples/dist.female.first b/splunk_eventgen/samples/dist.female.first deleted file mode 100644 index 30a4ebb0..00000000 --- a/splunk_eventgen/samples/dist.female.first +++ /dev/null @@ -1,4275 +0,0 @@ -mary -patricia -linda -barbara -elizabeth -jennifer -maria -susan -margaret -dorothy -lisa -nancy -karen -betty -helen -sandra -donna -carol -ruth -sharon -michelle -laura -sarah -kimberly -deborah -jessica -shirley -cynthia -angela -melissa -brenda -amy -anna -rebecca -virginia -kathleen -pamela -martha -debra -amanda -stephanie -carolyn -christine -marie -janet -catherine -frances -ann -joyce -diane -alice -julie -heather -teresa -doris -gloria -evelyn -jean -cheryl -mildred -katherine -joan -ashley -judith -rose -janice -kelly -nicole -judy -christina -kathy -theresa -beverly -denise -tammy -irene -jane -lori -rachel -marilyn -andrea -kathryn -louise -sara -anne -jacqueline -wanda -bonnie -julia -ruby -lois -tina -phyllis -norma -paula -diana -annie -lillian -emily -robin -peggy -crystal -gladys -rita -dawn -connie -florence -tracy -edna -tiffany -carmen -rosa -cindy -grace -wendy -victoria -edith -kim -sherry -sylvia -josephine -thelma -shannon -sheila -ethel -ellen -elaine -marjorie -carrie -charlotte -monica -esther -pauline -emma -juanita -anita -rhonda -hazel -amber -eva -debbie -april -leslie -clara -lucille -jamie -joanne -eleanor -valerie -danielle -megan -alicia -suzanne -michele -gail -bertha -darlene -veronica -jill -erin -geraldine -lauren -cathy -joann -lorraine -lynn -sally -regina -erica -beatrice -dolores -bernice -audrey -yvonne -annette -june -samantha -marion -dana -stacy -ana -renee -ida -vivian -roberta -holly -brittany -melanie -loretta -yolanda -jeanette -laurie -katie -kristen -vanessa -alma -sue -elsie -beth -jeanne -vicki -carla -tara -rosemary -eileen -terri -gertrude -lucy -tonya -ella -stacey -wilma -gina -kristin -jessie -natalie -agnes -vera -willie -charlene -bessie -delores -melinda -pearl -arlene -maureen -colleen -allison -tamara -joy -georgia -constance -lillie -claudia -jackie -marcia -tanya -nellie -minnie -marlene -heidi -glenda -lydia -viola -courtney -marian -stella -caroline -dora -jo -vickie -mattie -terry -maxine -irma -mabel -marsha -myrtle -lena -christy -deanna -patsy -hilda -gwendolyn -jennie -nora -margie -nina -cassandra -leah -penny -kay -priscilla -naomi -carole -brandy -olga -billie -dianne -tracey -leona -jenny -felicia -sonia -miriam -velma -becky -bobbie -violet -kristina -toni -misty -mae -shelly -daisy -ramona -sherri -erika -katrina -claire -lindsey -lindsay -geneva -guadalupe -belinda -margarita -sheryl -cora -faye -ada -natasha -sabrina -isabel -marguerite -hattie -harriet -molly -cecilia -kristi -brandi -blanche -sandy -rosie -joanna -iris -eunice -angie -inez -lynda -madeline -amelia -alberta -genevieve -monique -jodi -janie -maggie -kayla -sonya -jan -lee -kristine -candace -fannie -maryann -opal -alison -yvette -melody -luz -susie -olivia -flora -shelley -kristy -mamie -lula -lola -verna -beulah -antoinette -candice -juana -jeannette -pam -kelli -hannah -whitney -bridget -karla -celia -latoya -patty -shelia -gayle -della -vicky -lynne -sheri -marianne -kara -jacquelyn -erma -blanca -myra -leticia -pat -krista -roxanne -angelica -johnnie -robyn -francis -adrienne -rosalie -alexandra -brooke -bethany -sadie -bernadette -traci -jody -kendra -jasmine -nichole -rachael -chelsea -mable -ernestine -muriel -marcella -elena -krystal -angelina -nadine -kari -estelle -dianna -paulette -lora -mona -doreen -rosemarie -angel -desiree -antonia -hope -ginger -janis -betsy -christie -freda -mercedes -meredith -lynette -teri -cristina -eula -leigh -meghan -sophia -eloise -rochelle -gretchen -cecelia -raquel -henrietta -alyssa -jana -kelley -gwen -kerry -jenna -tricia -laverne -olive -alexis -tasha -silvia -elvira -casey -delia -sophie -kate -patti -lorena -kellie -sonja -lila -lana -darla -may -mindy -essie -mandy -lorene -elsa -josefina -jeannie -miranda -dixie -lucia -marta -faith -lela -johanna -shari -camille -tami -shawna -elisa -ebony -melba -ora -nettie -tabitha -ollie -jaime -winifred -kristie -marina -alisha -aimee -rena -myrna -marla -tammie -latasha -bonita -patrice -ronda -sherrie -addie -francine -deloris -stacie -adriana -cheri -shelby -abigail -celeste -jewel -cara -adele -rebekah -lucinda -dorthy -chris -effie -trina -reba -shawn -sallie -aurora -lenora -etta -lottie -kerri -trisha -nikki -estella -francisca -josie -tracie -marissa -karin -brittney -janelle -lourdes -laurel -helene -fern -elva -corinne -kelsey -ina -bettie -elisabeth -aida -caitlin -ingrid -iva -eugenia -christa -goldie -cassie -maude -jenifer -therese -frankie -dena -lorna -janette -latonya -candy -morgan -consuelo -tamika -rosetta -debora -cherie -polly -dina -jewell -fay -jillian -dorothea -nell -trudy -esperanza -patrica -kimberley -shanna -helena -carolina -cleo -stefanie -rosario -ola -janine -mollie -lupe -alisa -lou -maribel -susanne -bette -susana -elise -cecile -isabelle -lesley -jocelyn -paige -joni -rachelle -leola -daphne -alta -ester -petra -graciela -imogene -jolene -keisha -lacey -glenna -gabriela -keri -ursula -lizzie -kirsten -shana -adeline -mayra -jayne -jaclyn -gracie -sondra -carmela -marisa -rosalind -charity -tonia -beatriz -marisol -clarice -jeanine -sheena -angeline -frieda -lily -robbie -shauna -millie -claudette -cathleen -angelia -gabrielle -autumn -katharine -summer -jodie -staci -lea -christi -jimmie -justine -elma -luella -margret -dominique -socorro -rene -martina -margo -mavis -callie -bobbi -maritza -lucile -leanne -jeannine -deana -aileen -lorie -ladonna -willa -manuela -gale -selma -dolly -sybil -abby -lara -dale -ivy -dee -winnie -marcy -luisa -jeri -magdalena -ofelia -meagan -audra -matilda -leila -cornelia -bianca -simone -bettye -randi -virgie -latisha -barbra -georgina -eliza -leann -bridgette -rhoda -haley -adela -nola -bernadine -flossie -ila -greta -ruthie -nelda -minerva -lilly -terrie -letha -hilary -estela -valarie -brianna -rosalyn -earline -catalina -ava -mia -clarissa -lidia -corrine -alexandria -concepcion -tia -sharron -rae -dona -ericka -jami -elnora -chandra -lenore -neva -marylou -melisa -tabatha -serena -avis -allie -sofia -jeanie -odessa -nannie -harriett -loraine -penelope -milagros -emilia -benita -allyson -ashlee -tania -tommie -esmeralda -karina -eve -pearlie -zelma -malinda -noreen -tameka -saundra -hillary -amie -althea -rosalinda -jordan -lilia -alana -gay -clare -alejandra -elinor -michael -lorrie -jerri -darcy -earnestine -carmella -taylor -noemi -marcie -liza -annabelle -louisa -earlene -mallory -carlene -nita -selena -tanisha -katy -julianne -john -lakisha -edwina -maricela -margery -kenya -dollie -roxie -roslyn -kathrine -nanette -charmaine -lavonne -ilene -kris -tammi -suzette -corine -kaye -jerry -merle -chrystal -lina -deanne -lilian -juliana -aline -luann -kasey -maryanne -evangeline -colette -melva -lawanda -yesenia -nadia -madge -kathie -eddie -ophelia -valeria -nona -mitzi -mari -georgette -claudine -fran -alissa -roseann -lakeisha -susanna -reva -deidre -chasity -sheree -carly -james -elvia -alyce -deirdre -gena -briana -araceli -katelyn -rosanne -wendi -tessa -berta -marva -imelda -marietta -marci -leonor -arline -sasha -madelyn -janna -juliette -deena -aurelia -josefa -augusta -liliana -young -christian -lessie -amalia -savannah -anastasia -vilma -natalia -rosella -lynnette -corina -alfreda -leanna -carey -amparo -coleen -tamra -aisha -wilda -karyn -cherry -queen -maura -mai -evangelina -rosanna -hallie -erna -enid -mariana -lacy -juliet -jacklyn -freida -madeleine -mara -hester -cathryn -lelia -casandra -bridgett -angelita -jannie -dionne -annmarie -katina -beryl -phoebe -millicent -katheryn -diann -carissa -maryellen -liz -lauri -helga -gilda -adrian -rhea -marquita -hollie -tisha -tamera -angelique -francesca -britney -kaitlin -lolita -florine -rowena -reyna -twila -fanny -janell -ines -concetta -bertie -alba -brigitte -alyson -vonda -pansy -elba -noelle -letitia -kitty -deann -brandie -louella -leta -felecia -sharlene -lesa -beverley -robert -isabella -herminia -terra -celina -tori -octavia -jade -denice -germaine -sierra -michell -cortney -nelly -doretha -sydney -deidra -monika -lashonda -judi -chelsey -antionette -margot -bobby -adelaide -nan -leeann -elisha -dessie -libby -kathi -gayla -latanya -mina -mellisa -kimberlee -jasmin -renae -zelda -elda -ma -justina -gussie -emilie -camilla -abbie -rocio -kaitlyn -jesse -edythe -ashleigh -selina -lakesha -geri -allene -pamala -michaela -dayna -caryn -rosalia -sun -jacquline -rebeca -marybeth -krystle -iola -dottie -bennie -belle -aubrey -griselda -ernestina -elida -adrianne -demetria -delma -chong -jaqueline -destiny -arleen -virgina -retha -fatima -tillie -eleanore -cari -treva -birdie -wilhelmina -rosalee -maurine -latrice -yong -jena -taryn -elia -debby -maudie -jeanna -delilah -catrina -shonda -hortencia -theodora -teresita -robbin -danette -maryjane -freddie -delphine -brianne -nilda -danna -cindi -bess -iona -hanna -ariel -winona -vida -rosita -marianna -william -racheal -guillermina -eloisa -celestine -caren -malissa -lona -chantel -shellie -marisela -leora -agatha -soledad -migdalia -ivette -christen -athena -janel -chloe -veda -pattie -tessie -tera -marilynn -lucretia -karrie -dinah -daniela -alecia -adelina -vernice -shiela -portia -merry -lashawn -devon -dara -tawana -oma -verda -christin -alene -zella -sandi -rafaela -maya -kira -candida -alvina -suzan -shayla -lyn -lettie -alva -samatha -oralia -matilde -madonna -larissa -vesta -renita -india -delois -shanda -phillis -lorri -erlinda -cruz -cathrine -barb -zoe -isabell -ione -gisela -charlie -valencia -roxanna -mayme -kisha -ellie -mellissa -dorris -dalia -bella -annetta -zoila -reta -reina -lauretta -kylie -christal -pilar -charla -elissa -tiffani -tana -paulina -leota -breanna -jayme -carmel -vernell -tomasa -mandi -dominga -santa -melodie -lura -alexa -tamela -ryan -mirna -kerrie -venus -noel -felicita -cristy -carmelita -berniece -annemarie -tiara -roseanne -missy -cori -roxana -pricilla -kristal -jung -elyse -haydee -aletha -bettina -marge -gillian -filomena -charles -zenaida -harriette -caridad -vada -una -aretha -pearline -marjory -marcela -flor -evette -elouise -alina -trinidad -david -damaris -catharine -carroll -belva -nakia -marlena -luanne -lorine -karon -dorene -danita -brenna -tatiana -sammie -louann -loren -julianna -andria -philomena -lucila -leonora -dovie -romona -mimi -jacquelin -gaye -tonja -misti -joe -gene -chastity -stacia -roxann -micaela -nikita -mei -velda -marlys -johnna -aura -lavern -ivonne -hayley -nicki -majorie -herlinda -george -alpha -yadira -perla -gregoria -daniel -antonette -shelli -mozelle -mariah -joelle -cordelia -josette -chiquita -trista -louis -laquita -georgiana -candi -shanon -lonnie -hildegard -cecil -valentina -stephany -magda -karol -gerry -gabriella -tiana -roma -richelle -ray -princess -oleta -jacque -idella -alaina -suzanna -jovita -blair -tosha -raven -nereida -marlyn -kyla -joseph -delfina -tena -stephenie -sabina -nathalie -marcelle -gertie -darleen -thea -sharonda -shantel -belen -venessa -rosalina -ona -genoveva -corey -clementine -rosalba -renate -renata -mi -ivory -georgianna -floy -dorcas -ariana -tyra -theda -mariam -juli -jesica -donnie -vikki -verla -roselyn -melvina -jannette -ginny -debrah -corrie -asia -violeta -myrtis -latricia -collette -charleen -anissa -viviana -twyla -precious -nedra -latonia -lan -hellen -fabiola -annamarie -adell -sharyn -chantal -niki -maud -lizette -lindy -kia -kesha -jeana -danelle -charline -chanel -carrol -valorie -lia -dortha -cristal -sunny -leone -leilani -gerri -debi -andra -keshia -ima -eulalia -easter -dulce -natividad -linnie -kami -georgie -catina -brook -alda -winnifred -sharla -ruthann -meaghan -magdalene -lissette -adelaida -venita -trena -shirlene -shameka -elizebeth -dian -shanta -mickey -latosha -carlotta -windy -soon -rosina -mariann -leisa -jonnie -dawna -cathie -billy -astrid -sidney -laureen -janeen -holli -fawn -vickey -teressa -shante -rubye -marcelina -chanda -cary -terese -scarlett -marty -marnie -lulu -lisette -jeniffer -elenor -dorinda -donita -carman -bernita -altagracia -aleta -adrianna -zoraida -ronnie -nicola -lyndsey -kendall -janina -chrissy -ami -starla -phylis -phuong -kyra -charisse -blanch -sanjuanita -rona -nanci -marilee -maranda -cory -brigette -sanjuana -marita -kassandra -joycelyn -ira -felipa -chelsie -bonny -mireya -lorenza -kyong -ileana -candelaria -tony -toby -sherie -ok -mark -lucie -leatrice -lakeshia -gerda -edie -bambi -marylin -lavon -hortense -garnet -evie -tressa -shayna -lavina -kyung -jeanetta -sherrill -shara -phyliss -mittie -anabel -alesia -thuy -tawanda -richard -joanie -tiffanie -lashanda -karissa -enriqueta -daria -daniella -corinna -alanna -abbey -roxane -roseanna -magnolia -lida -kyle -joellen -era -coral -carleen -tresa -peggie -novella -nila -maybelle -jenelle -carina -nova -melina -marquerite -margarette -josephina -evonne -devin -cinthia -albina -toya -tawnya -sherita -santos -myriam -lizabeth -lise -keely -jenni -giselle -cheryle -ardith -ardis -alesha -adriane -shaina -linnea -karolyn -hong -florida -felisha -dori -darci -artie -armida -zola -xiomara -vergie -shamika -nena -nannette -maxie -lovie -jeane -jaimie -inge -farrah -elaina -caitlyn -starr -felicitas -cherly -caryl -yolonda -yasmin -teena -prudence -pennie -nydia -mackenzie -orpha -marvel -lizbeth -laurette -jerrie -hermelinda -carolee -tierra -mirian -meta -melony -kori -jennette -jamila -ena -anh -yoshiko -susannah -salina -rhiannon -joleen -cristine -ashton -aracely -tomeka -shalonda -marti -lacie -kala -jada -ilse -hailey -brittani -zona -syble -sherryl -randy -nidia -marlo -kandice -kandi -deb -dean -america -alycia -tommy -ronna -norene -mercy -jose -ingeborg -giovanna -gemma -christel -audry -zora -vita -van -trish -stephaine -shirlee -shanika -melonie -mazie -jazmin -inga -hoa -hettie -geralyn -fonda -estrella -adella -su -sarita -rina -milissa -maribeth -golda -evon -ethelyn -enedina -cherise -chana -velva -tawanna -sade -mirta -li -karie -jacinta -elna -davina -cierra -ashlie -albertha -tanesha -stephani -nelle -mindi -lu -lorinda -larue -florene -demetra -dedra -ciara -chantelle -ashly -suzy -rosalva -noelia -lyda -leatha -krystyna -kristan -karri -darline -darcie -cinda -cheyenne -cherrie -awilda -almeda -rolanda -lanette -jerilyn -gisele -evalyn -cyndi -cleta -carin -zina -zena -velia -tanika -paul -charissa -thomas -talia -margarete -lavonda -kaylee -kathlene -jonna -irena -ilona -idalia -candis -candance -brandee -anitra -alida -sigrid -nicolette -maryjo -linette -hedwig -christiana -cassidy -alexia -tressie -modesta -lupita -lita -gladis -evelia -davida -cherri -cecily -ashely -annabel -agustina -wanita -shirly -rosaura -hulda -eun -bailey -yetta -verona -thomasina -sibyl -shannan -mechelle -lue -leandra -lani -kylee -kandy -jolynn -ferne -eboni -corene -alysia -zula -nada -moira -lyndsay -lorretta -juan -jammie -hortensia -gaynell -cameron -adria -vina -vicenta -tangela -stephine -norine -nella -liana -leslee -kimberely -iliana -glory -felica -emogene -elfriede -eden -eartha -carma -bea -ocie -marry -lennie -kiara -jacalyn -carlota -arielle -yu -star -otilia -kirstin -kacey -johnetta -joey -joetta -jeraldine -jaunita -elana -dorthea -cami -amada -adelia -vernita -tamar -siobhan -renea -rashida -ouida -odell -nilsa -meryl -kristyn -julieta -danica -breanne -aurea -anglea -sherron -odette -malia -lorelei -lin -leesa -kenna -kathlyn -fiona -charlette -suzie -shantell -sabra -racquel -myong -mira -martine -lucienne -lavada -juliann -johnie -elvera -delphia -clair -christiane -charolette -carri -augustine -asha -angella -paola -ninfa -leda -lai -eda -sunshine -stefani -shanell -palma -machelle -lissa -kecia -kathryne -karlene -julissa -jettie -jenniffer -hui -corrina -christopher -carolann -alena -tess -rosaria -myrtice -marylee -liane -kenyatta -judie -janey -in -elmira -eldora -denna -cristi -cathi -zaida -vonnie -viva -vernie -rosaline -mariela -luciana -lesli -karan -felice -deneen -adina -wynona -tarsha -sheron -shasta -shanita -shani -shandra -randa -pinkie -paris -nelida -marilou -lyla -laurene -laci -joi -janene -dorotha -daniele -dani -carolynn -carlyn -berenice -ayesha -anneliese -alethea -thersa -tamiko -rufina -oliva -mozell -marylyn -madison -kristian -kathyrn -kasandra -kandace -janae -gabriel -domenica -debbra -dannielle -chun -buffy -barbie -arcelia -aja -zenobia -sharen -sharee -patrick -page -my -lavinia -kum -kacie -jackeline -huong -felisa -emelia -eleanora -cythia -cristin -clyde -claribel -caron -anastacia -zulma -zandra -yoko -tenisha -susann -sherilyn -shay -shawanda -sabine -romana -mathilda -linsey -keiko -joana -isela -gretta -georgetta -eugenie -dusty -desirae -delora -corazon -antonina -anika -willene -tracee -tamatha -regan -nichelle -mickie -maegan -luana -lanita -kelsie -edelmira -bree -afton -teodora -tamie -shena -meg -linh -keli -kaci -danyelle -britt -arlette -albertine -adelle -tiffiny -stormy -simona -numbers -nicolasa -nichol -nia -nakisha -mee -maira -loreen -kizzy -johnny -jay -fallon -christene -bobbye -anthony -ying -vincenza -tanja -rubie -roni -queenie -margarett -kimberli -irmgard -idell -hilma -evelina -esta -emilee -dennise -dania -carl -carie -antonio -wai -sang -risa -rikki -particia -mui -masako -mario -luvenia -loree -loni -lien -kevin -gigi -florencia -dorian -denita -dallas -chi -billye -alexander -tomika -sharita -rana -nikole -neoma -margarite -madalyn -lucina -laila -kali -jenette -gabriele -evelyne -elenora -clementina -alejandrina -zulema -violette -vannessa -thresa -retta -pia -patience -noella -nickie -jonell -delta -chung -chaya -camelia -bethel -anya -andrew -thanh -suzann -spring -shu -mila -lilla -laverna -keesha -kattie -gia -georgene -eveline -estell -elizbeth -vivienne -vallie -trudie -stephane -michel -magaly -madie -kenyetta -karren -janetta -hermine -harmony -drucilla -debbi -celestina -candie -britni -beckie -amina -zita -yun -yolande -vivien -vernetta -trudi -sommer -pearle -patrina -ossie -nicolle -loyce -letty -larisa -katharina -joselyn -jonelle -jenell -iesha -heide -florinda -florentina -flo -elodia -dorine -brunilda -brigid -ashli -ardella -twana -thu -tarah -sung -shea -shavon -shane -serina -rayna -ramonita -nga -margurite -lucrecia -kourtney -kati -jesus -jesenia -diamond -crista -ayana -alica -alia -vinnie -suellen -romelia -rachell -piper -olympia -michiko -kathaleen -jolie -jessi -janessa -hana -ha -elease -carletta -britany -shona -salome -rosamond -regena -raina -ngoc -nelia -louvenia -lesia -latrina -laticia -larhonda -jina -jacki -hollis -holley -emmy -deeann -coretta -arnetta -velvet -thalia -shanice -neta -mikki -micki -lonna -leana -lashunda -kiley -joye -jacqulyn -ignacia -hyun -hiroko -henry -henriette -elayne -delinda -darnell -dahlia -coreen -consuela -conchita -celine -babette -ayanna -anette -albertina -skye -shawnee -shaneka -quiana -pamelia -min -merri -merlene -margit -kiesha -kiera -kaylene -jodee -jenise -erlene -emmie -else -daryl -dalila -daisey -cody -casie -belia -babara -versie -vanesa -shelba -shawnda -sam -norman -nikia -naoma -marna -margeret -madaline -lawana -kindra -jutta -jazmine -janett -hannelore -glendora -gertrud -garnett -freeda -frederica -florance -flavia -dennis -carline -beverlee -anjanette -valda -trinity -tamala -stevie -shonna -sha -sarina -oneida -micah -merilyn -marleen -lurline -lenna -katherin -jin -jeni -hae -gracia -glady -farah -eric -enola -ema -dominque -devona -delana -cecila -caprice -alysha -ali -alethia -vena -theresia -tawny -song -shakira -samara -sachiko -rachele -pamella -nicky -marni -mariel -maren -malisa -ligia -lera -latoria -larae -kimber -kathern -karey -jennefer -janeth -halina -fredia -delisa -debroah -ciera -chin -angelika -andree -altha -yen -vivan -terresa -tanna -suk -sudie -soo -signe -salena -ronni -rebbecca -myrtie -mckenzie -malika -maida -loan -leonarda -kayleigh -france -ethyl -ellyn -dayle -cammie -brittni -birgit -avelina -asuncion -arianna -akiko -venice -tyesha -tonie -tiesha -takisha -steffanie -sindy -santana -meghann -manda -macie -lady -kellye -kellee -joslyn -jason -inger -indira -glinda -glennis -fernanda -faustina -eneida -elicia -dot -digna -dell -arletta -andre -willia -tammara -tabetha -sherrell -sari -refugio -rebbeca -pauletta -nieves -natosha -nakita -mammie -kenisha -kazuko -kassie -gary -earlean -daphine -corliss -clotilde -carolyne -bernetta -augustina -audrea -annis -annabell -yan -tennille -tamica -selene -sean -rosana -regenia -qiana -markita -macy -leeanne -laurine -kym -jessenia -janita -georgine -genie -emiko -elvie -deandra -dagmar -corie -collen -cherish -romaine -porsha -pearlene -micheline -merna -margorie -margaretta -lore -kenneth -jenine -hermina -fredericka -elke -drusilla -dorathy -dione -desire -celena -brigida -angeles -allegra -theo -tamekia -synthia -stephen -sook -slyvia -rosann -reatha -raye -marquetta -margart -ling -layla -kymberly -kiana -kayleen -katlyn -karmen -joella -irina -emelda -eleni -detra -clemmie -cheryll -chantell -cathey -arnita -arla -angle -angelic -alyse -zofia -thomasine -tennie -son -sherly -sherley -sharyl -remedios -petrina -nickole -myung -myrle -mozella -louanne -lisha -latia -lane -krysta -julienne -joel -jeanene -jacqualine -isaura -gwenda -earleen -donald -cleopatra -carlie -audie -antonietta -alise -alex -verdell -val -tyler -tomoko -thao -talisha -steven -so -shemika -shaun -scarlet -savanna -santina -rosia -raeann -odilia -nana -minna -magan -lynelle -le -karma -joeann -ivana -inell -ilana -hye -honey -hee -gudrun -frank -dreama -crissy -chante -carmelina -arvilla -arthur -annamae -alvera -aleida -aaron -yee -yanira -vanda -tianna -tam -stefania -shira -perry -nicol -nancie -monserrate -minh -melynda -melany -matthew -lovella -laure -kirby -kacy -jacquelynn -hyon -gertha -francisco -eliana -christena -christeen -charise -caterina -carley -candyce -arlena -ammie -yang -willette -vanita -tuyet -tiny -syreeta -silva -scott -ronald -penney -nyla -michal -maurice -maryam -marya -magen -ludie -loma -livia -lanell -kimberlie -julee -donetta -diedra -denisha -deane -dawne -clarine -cherryl -bronwyn -brandon -alla -valery -tonda -sueann -soraya -shoshana -shela -sharleen -shanelle -nerissa -micheal -meridith -mellie -maye -maple -magaret -luis -lili -leonila -leonie -leeanna -lavonia -lavera -kristel -kathey -kathe -justin -julian -jimmy -jann -ilda -hildred -hildegarde -genia -fumiko -evelin -ermelinda -elly -dung -doloris -dionna -danae -berneice -annice -alix -verena -verdie -tristan -shawnna -shawana -shaunna -rozella -randee -ranae -milagro -lynell -luise -louie -loida -lisbeth -karleen -junita -jona -isis -hyacinth -hedy -gwenn -ethelene -erline -edward -donya -domonique -delicia -dannette -cicely -branda -blythe -bethann -ashlyn -annalee -alline -yuko -vella -trang -towanda -tesha -sherlyn -narcisa -miguelina -meri -maybell -marlana -marguerita -madlyn -luna -lory -loriann -liberty -leonore -leighann -laurice -latesha -laronda -katrice -kasie -karl -kaley -jadwiga -glennie -gearldine -francina -epifania -dyan -dorie -diedre -denese -demetrice -delena -darby -cristie -cleora -catarina -carisa -bernie -barbera -almeta -trula -tereasa -solange -sheilah -shavonne -sanora -rochell -mathilde -margareta -maia -lynsey -lawanna -launa -kena -keena -katia -jamey -glynda -gaylene -elvina -elanor -danuta -danika -cristen -cordie -coletta -clarita -carmon -brynn -azucena -aundrea -angele -yi -walter -verlie -verlene -tamesha -silvana -sebrina -samira -reda -raylene -penni -pandora -norah -noma -mireille -melissia -maryalice -laraine -kimbery -karyl -karine -kam -jolanda -johana -jesusa -jaleesa -jae -jacquelyne -irish -iluminada -hilaria -hanh -gennie -francie -floretta -exie -edda -drema -delpha -bev -barbar -assunta -ardell -annalisa -alisia -yukiko -yolando -wonda -wei -waltraud -veta -tequila -temeka -tameika -shirleen -shenita -piedad -ozella -mirtha -marilu -kimiko -juliane -jenice -jen -janay -jacquiline -hilde -fe -fae -evan -eugene -elois -echo -devorah -chau -brinda -betsey -arminda -aracelis -apryl -annett -alishia -veola -usha -toshiko -theola -tashia -talitha -shery -rudy -renetta -reiko -rasheeda -omega -obdulia -mika -melaine -meggan -martin -marlen -marget -marceline -mana -magdalen -librada -lezlie -lexie -latashia -lasandra -kelle -isidra -isa -inocencia -gwyn -francoise -erminia -erinn -dimple -devora -criselda -armanda -arie -ariane -angelo -angelena -allen -aliza -adriene -adaline -xochitl -twanna -tran -tomiko -tamisha -taisha -susy -siu -rutha -roxy -rhona -raymond -otha -noriko -natashia -merrie -melvin -marinda -mariko -margert -loris -lizzette -leisha -kaila -ka -joannie -jerrica -jene -jannet -janee -jacinda -herta -elenore -doretta -delaine -daniell -claudie -china -britta -apolonia -amberly -alease -yuri -yuk -wen -waneta -ute -tomi -sharri -sandie -roselle -reynalda -raguel -phylicia -patria -olimpia -odelia -mitzie -mitchell -miss -minda -mignon -mica -mendy -marivel -maile -lynetta -lavette -lauryn -latrisha -lakiesha -kiersten -kary -josphine -jolyn -jetta -janise -jacquie -ivelisse -glynis -gianna -gaynelle -emerald -demetrius -danyell -danille -dacia -coralee -cher -ceola -brett -bell -arianne -aleshia -yung -williemae -troy -trinh -thora -tai -svetlana -sherika -shemeka -shaunda -roseline -ricki -melda -mallie -lavonna -latina -larry -laquanda -lala -lachelle -klara -kandis -johna -jeanmarie -jaye -hang -grayce -gertude -emerita -ebonie -clorinda -ching -chery -carola -breann -blossom -bernardine -becki -arletha -argelia -ara -alita -yulanda -yon -yessenia -tobi -tasia -sylvie -shirl -shirely -sheridan -shella -shantelle -sacha -royce -rebecka -reagan -providencia -paulene -misha -miki -marline -marica -lorita -latoyia -lasonya -kerstin -kenda -keitha -kathrin -jaymie -jack -gricelda -ginette -eryn -elina -elfrieda -danyel -cheree -chanelle -barrie -avery -aurore -annamaria -alleen -ailene -aide -yasmine -vashti -valentine -treasa -tory -tiffaney -sheryll -sharie -shanae -sau -raisa -pa -neda -mitsuko -mirella -milda -maryanna -maragret -mabelle -luetta -lorina -letisha -latarsha -lanelle -lajuana -krissy -karly -karena -jon -jessika -jerica -jeanelle -january -jalisa -jacelyn -izola -ivey -gregory -euna -etha -drew -domitila -dominica -daina -creola -carli -camie -bunny -brittny -ashanti -anisha -aleen -adah -yasuko -winter -viki -valrie -tona -tinisha -thi -terisa -tatum -taneka -simonne -shalanda -serita -ressie -refugia -paz -olene -na -merrill -margherita -mandie -man -maire -lyndia -luci -lorriane -loreta -leonia -lavona -lashawnda -lakia -kyoko -krystina -krysten -kenia -kelsi -jude -jeanice -isobel -georgiann -genny -felicidad -eilene -deon -deloise -deedee -dannie -conception -clora -cherilyn -chang -calandra -berry -armandina -anisa -ula -timothy -tiera -theressa -stephania -sima -shyla -shonta -shera -shaquita -shala -sammy -rossana -nohemi -nery -moriah -melita -melida -melani -marylynn -marisha -mariette -malorie -madelene -ludivina -loria -lorette -loralee -lianne -leon -lavenia -laurinda -lashon -kit -kimi -keila -katelynn -kai -jone -joane -ji -jayna -janella -ja -hue -hertha -francene -elinore -despina -delsie -deedra -clemencia -carry -carolin -carlos -bulah -brittanie -bok -blondell -bibi -beaulah -beata -annita -agripina -virgen -valene -un -twanda -tommye -toi -tarra -tari -tammera -shakia -sadye -ruthanne -rochel -rivka -pura -nenita -natisha -ming -merrilee -melodee -marvis -lucilla -leena -laveta -larita -lanie -keren -ileen -georgeann -genna -genesis -frida -ewa -eufemia -emely -ela -edyth -deonna -deadra -darlena -chanell -chan -cathern -cassondra -cassaundra -bernarda -berna -arlinda -anamaria -albert -wesley -vertie -valeri -torri -tatyana -stasia -sherise -sherill -season -scottie -sanda -ruthe -rosy -roberto -robbi -ranee -quyen -pearly -palmira -onita -nisha -niesha -nida -nevada -nam -merlyn -mayola -marylouise -maryland -marx -marth -margene -madelaine -londa -leontine -leoma -leia -lawrence -lauralee -lanora -lakita -kiyoko -keturah -katelin -kareen -jonie -johnette -jenee -jeanett -izetta -hiedi -heike -hassie -harold -giuseppina -georgann -fidela -fernande -elwanda -ellamae -eliz -dusti -dotty -cyndy -coralie -celesta -argentina -alverta -xenia -wava -vanetta -torrie -tashina -tandy -tambra -tama -stepanie -shila -shaunta -sharan -shaniqua -shae -setsuko -serafina -sandee -rosamaria -priscila -olinda -nadene -muoi -michelina -mercedez -maryrose -marin -marcene -mao -magali -mafalda -logan -linn -lannie -kayce -karoline -kamilah -kamala -justa -joline -jennine -jacquetta -iraida -gerald -georgeanna -franchesca -fairy -emeline -elane -ehtel -earlie -dulcie -dalene -cris -classie -chere -charis -caroyln -carmina -carita -brian -bethanie -ayako -arica -an -alysa -alessandra -akilah -adrien -zetta -youlanda -yelena -yahaira -xuan -wendolyn -victor -tijuana -terrell -terina -teresia -suzi -sunday -sherell -shavonda -shaunte -sharda -shakita -sena -ryann -rubi -riva -reginia -rea -rachal -parthenia -pamula -monnie -monet -michaele -melia -marine -malka -maisha -lisandra -leo -lekisha -lean -laurence -lakendra -krystin -kortney -kizzie -kittie -kera -kendal -kemberly -kanisha -julene -jule -joshua -johanne -jeffrey -jamee -han -halley -gidget -galina -fredricka -fleta -fatimah -eusebia -elza -eleonore -dorthey -doria -donella -dinorah -delorse -claretha -christinia -charlyn -bong -belkis -azzie -andera -aiko -adena -yer -yajaira -wan -vania -ulrike -toshia -tifany -stefany -shizue -shenika -shawanna -sharolyn -sharilyn -shaquana -shantay -see -rozanne -roselee -rickie -remona -reanna -raelene -quinn -phung -petronila -natacha -nancey -myrl -miyoko -miesha -merideth -marvella -marquitta -marhta -marchelle -lizeth -libbie -lahoma -ladawn -kina -katheleen -katharyn -karisa -kaleigh -junie -julieann -johnsie -janean -jaimee -jackqueline -hisako -herma -helaine -gwyneth -glenn -gita -eustolia -emelina -elin -edris -donnette -donnetta -dierdre -denae -darcel -claude -clarisa -cinderella -chia -charlesetta -charita -celsa -cassy -cassi -carlee -bruna -brittaney -brande -billi -bao -antonetta -angla -angelyn -analisa -alane -wenona -wendie -veronique -vannesa -tobie -tempie -sumiko -sulema -sparkle -somer -sheba -shayne -sharice -shanel -shalon -sage -roy -rosio -roselia -renay -rema -reena -porsche -ping -peg -ozie -oretha -oralee -oda -nu -ngan -nakesha -milly -marybelle -marlin -maris -margrett -maragaret -manie -lurlene -lillia -lieselotte -lavelle -lashaunda -lakeesha -keith -kaycee -kalyn -joya -joette -jenae -janiece -illa -grisel -glayds -genevie -gala -fredda -fred -elmer -eleonor -debera -deandrea -dan -corrinne -cordia -contessa -colene -cleotilde -charlott -chantay -cecille -beatris -azalee -arlean -ardath -anjelica -anja -alfredia -aleisha -adam -zada -yuonne -xiao -willodean -whitley -vennie -vanna -tyisha -tova -torie -tonisha -tilda -tien -temple -sirena -sherril -shanti -shan -senaida -samella -robbyn -renda -reita -phebe -paulita -nobuko -nguyet -neomi -moon -mikaela -melania -maximina -marg -maisie -lynna -lilli -layne -lashaun -lakenya -lael -kirstie -kathline -kasha -karlyn -karima -jovan -josefine -jennell -jacqui -jackelyn -hyo -hien -grazyna -florrie -floria -eleonora -dwana -dorla -dong -delmy -deja -dede -dann -crysta -clelia -claris -clarence -chieko -cherlyn -cherelle -charmain -chara -cammy -bee -arnette -ardelle -annika -amiee -amee -allena -yvone -yuki -yoshie -yevette -yael -willetta -voncile -venetta -tula -tonette -timika -temika -telma -teisha -taren -ta -stacee -shin -shawnta -saturnina -ricarda -pok -pasty -onie -nubia -mora -mike -marielle -mariella -marianela -mardell -many -luanna -loise -lisabeth -lindsy -lilliana -lilliam -lelah -leigha -leanora -lang -kristeen -khalilah -keeley -kandra -junko -joaquina -jerlene -jani -jamika -jame -hsiu -hermila -golden -genevive -evia -eugena -emmaline -elfreda -elene -donette -delcie -deeanna -darcey -cuc -clarinda -cira -chae -celinda -catheryn -catherin -casimira -carmelia -camellia -breana -bobette -bernardina -bebe -basilia -arlyne -amal -alayna -zonia -zenia -yuriko -yaeko -wynell -willow -willena -vernia -tu -travis -tora -terrilyn -terica -tenesha -tawna -tajuana -taina -stephnie -sona -sol -sina -shondra -shizuko -sherlene -sherice -sharika -rossie -rosena -rory -rima -ria -rheba -renna -peter -natalya -nancee -melodi -meda -maxima -matha -marketta -maricruz -marcelene -malvina -luba -louetta -leida -lecia -lauran -lashawna -laine -khadijah -katerine -kasi -kallie -julietta -jesusita -jestine -jessia -jeremy -jeffie -janyce -isadora -georgianne -fidelia -evita -eura -eulah -estefana -elsy -elizabet -eladia -dodie -dion -dia -denisse -deloras -delila -daysi -dakota -curtis -crystle -concha -colby -claretta -chu -christia -charlsie -charlena -carylon -bettyann -asley -ashlea -amira -ai -agueda -agnus -yuette -vinita -victorina -tynisha -treena -toccara -tish -thomasena -tegan -soila -shiloh -shenna -sharmaine -shantae -shandi -september -saran -sarai -sana -samuel -salley -rosette -rolande -regine -otelia -oscar -olevia -nicholle -necole -naida -myrta -myesha -mitsue -minta -mertie -margy -mahalia -madalene -love -loura -lorean -lewis -lesha -leonida -lenita -lavone -lashell -lashandra -lamonica -kimbra -katherina -karry -kanesha -julio -jong -jeneva -jaquelyn -hwa -gilma -ghislaine -gertrudis -fransisca -fermina -ettie -etsuko -ellis -ellan -elidia -edra -dorethea -doreatha -denyse -denny -deetta -daine -cyrstal -corrin -cayla -carlita -camila -burma -bula -buena -blake -barabara -avril -austin -alaine -zana -wilhemina -wanetta -virgil -vi -veronika -vernon -verline -vasiliki -tonita -tisa -teofila -tayna -taunya -tandra -takako -sunni -suanne -sixta -sharell -seema -russell -rosenda -robena -raymonde -pei -pamila -ozell -neida -neely -mistie -micha -merissa -maurita -maryln -maryetta -marshall -marcell -malena -makeda -maddie -lovetta -lourie -lorrine -lorilee -lester -laurena -lashay -larraine -laree -lacresha -kristle -krishna -keva -keira -karole -joie -jinny -jeannetta -jama -heidy -gilberte -gema -faviola -evelynn -enda -elli -ellena -divina -dagny -collene -codi -cindie -chassidy -chasidy -catrice -catherina -cassey -caroll -carlena -candra -calista -bryanna -britteny -beula -bari -audrie -audria -ardelia -annelle -angila -alona -allyn diff --git a/splunk_eventgen/samples/dist.male.first b/splunk_eventgen/samples/dist.male.first deleted file mode 100644 index 95b473d0..00000000 --- a/splunk_eventgen/samples/dist.male.first +++ /dev/null @@ -1,1219 +0,0 @@ -james -john -robert -michael -william -david -richard -charles -joseph -thomas -christopher -daniel -paul -mark -donald -george -kenneth -steven -edward -brian -ronald -anthony -kevin -jason -matthew -gary -timothy -jose -larry -jeffrey -frank -scott -eric -stephen -andrew -raymond -gregory -joshua -jerry -dennis -walter -patrick -peter -harold -douglas -henry -carl -arthur -ryan -roger -joe -juan -jack -albert -jonathan -justin -terry -gerald -keith -samuel -willie -ralph -lawrence -nicholas -roy -benjamin -bruce -brandon -adam -harry -fred -wayne -billy -steve -louis -jeremy -aaron -randy -howard -eugene -carlos -russell -bobby -victor -martin -ernest -phillip -todd -jesse -craig -alan -shawn -clarence -sean -philip -chris -johnny -earl -jimmy -antonio -danny -bryan -tony -luis -mike -stanley -leonard -nathan -dale -manuel -rodney -curtis -norman -allen -marvin -vincent -glenn -jeffery -travis -jeff -chad -jacob -lee -melvin -alfred -kyle -francis -bradley -jesus -herbert -frederick -ray -joel -edwin -don -eddie -ricky -troy -randall -barry -alexander -bernard -mario -leroy -francisco -marcus -micheal -theodore -clifford -miguel -oscar -jay -jim -tom -calvin -alex -jon -ronnie -bill -lloyd -tommy -leon -derek -warren -darrell -jerome -floyd -leo -alvin -tim -wesley -gordon -dean -greg -jorge -dustin -pedro -derrick -dan -lewis -zachary -corey -herman -maurice -vernon -roberto -clyde -glen -hector -shane -ricardo -sam -rick -lester -brent -ramon -charlie -tyler -gilbert -gene -marc -reginald -ruben -brett -angel -nathaniel -rafael -leslie -edgar -milton -raul -ben -chester -cecil -duane -franklin -andre -elmer -brad -gabriel -ron -mitchell -roland -arnold -harvey -jared -adrian -karl -cory -claude -erik -darryl -jamie -neil -jessie -christian -javier -fernando -clinton -ted -mathew -tyrone -darren -lonnie -lance -cody -julio -kelly -kurt -allan -nelson -guy -clayton -hugh -max -dwayne -dwight -armando -felix -jimmie -everett -jordan -ian -wallace -ken -bob -jaime -casey -alfredo -alberto -dave -ivan -johnnie -sidney -byron -julian -isaac -morris -clifton -willard -daryl -ross -virgil -andy -marshall -salvador -perry -kirk -sergio -marion -tracy -seth -kent -terrance -rene -eduardo -terrence -enrique -freddie -wade -austin -stuart -fredrick -arturo -alejandro -jackie -joey -nick -luther -wendell -jeremiah -evan -julius -dana -donnie -otis -shannon -trevor -oliver -luke -homer -gerard -doug -kenny -hubert -angelo -shaun -lyle -matt -lynn -alfonso -orlando -rex -carlton -ernesto -cameron -neal -pablo -lorenzo -omar -wilbur -blake -grant -horace -roderick -kerry -abraham -willis -rickey -jean -ira -andres -cesar -johnathan -malcolm -rudolph -damon -kelvin -rudy -preston -alton -archie -marco -wm -pete -randolph -garry -geoffrey -jonathon -felipe -bennie -gerardo -ed -dominic -robin -loren -delbert -colin -guillermo -earnest -lucas -benny -noel -spencer -rodolfo -myron -edmund -garrett -salvatore -cedric -lowell -gregg -sherman -wilson -devin -sylvester -kim -roosevelt -israel -jermaine -forrest -wilbert -leland -simon -guadalupe -clark -irving -carroll -bryant -owen -rufus -woodrow -sammy -kristopher -mack -levi -marcos -gustavo -jake -lionel -marty -taylor -ellis -dallas -gilberto -clint -nicolas -laurence -ismael -orville -drew -jody -ervin -dewey -al -wilfred -josh -hugo -ignacio -caleb -tomas -sheldon -erick -frankie -stewart -doyle -darrel -rogelio -terence -santiago -alonzo -elias -bert -elbert -ramiro -conrad -pat -noah -grady -phil -cornelius -lamar -rolando -clay -percy -dexter -bradford -merle -darin -amos -terrell -moses -irvin -saul -roman -darnell -randal -tommie -timmy -darrin -winston -brendan -toby -van -abel -dominick -boyd -courtney -jan -emilio -elijah -cary -domingo -santos -aubrey -emmett -marlon -emanuel -jerald -edmond -emil -dewayne -will -otto -teddy -reynaldo -bret -morgan -jess -trent -humberto -emmanuel -stephan -louie -vicente -lamont -stacy -garland -miles -micah -efrain -billie -logan -heath -rodger -harley -demetrius -ethan -eldon -rocky -pierre -junior -freddy -eli -bryce -antoine -robbie -kendall -royce -sterling -mickey -chase -grover -elton -cleveland -dylan -chuck -damian -reuben -stan -august -leonardo -jasper -russel -erwin -benito -hans -monte -blaine -ernie -curt -quentin -agustin -murray -jamal -devon -adolfo -harrison -tyson -burton -brady -elliott -wilfredo -bart -jarrod -vance -denis -damien -joaquin -harlan -desmond -elliot -darwin -ashley -gregorio -buddy -xavier -kermit -roscoe -esteban -anton -solomon -scotty -norbert -elvin -williams -nolan -carey -rod -quinton -hal -brain -rob -elwood -kendrick -darius -moises -son -marlin -fidel -thaddeus -cliff -marcel -ali -jackson -raphael -bryon -armand -alvaro -jeffry -dane -joesph -thurman -ned -sammie -rusty -michel -monty -rory -fabian -reggie -mason -graham -kris -isaiah -vaughn -gus -avery -loyd -diego -alexis -adolph -norris -millard -rocco -gonzalo -derick -rodrigo -gerry -stacey -carmen -wiley -rigoberto -alphonso -ty -shelby -rickie -noe -vern -bobbie -reed -jefferson -elvis -bernardo -mauricio -hiram -donovan -basil -riley -ollie -nickolas -maynard -scot -vince -quincy -eddy -sebastian -federico -ulysses -heriberto -donnell -cole -denny -davis -gavin -emery -ward -romeo -jayson -dion -dante -clement -coy -odell -maxwell -jarvis -bruno -issac -mary -dudley -brock -sanford -colby -carmelo -barney -nestor -hollis -stefan -donny -art -linwood -beau -weldon -galen -isidro -truman -delmar -johnathon -silas -frederic -dick -kirby -irwin -cruz -merlin -merrill -charley -marcelino -lane -harris -cleo -carlo -trenton -kurtis -hunter -aurelio -winfred -vito -collin -denver -carter -leonel -emory -pasquale -mohammad -mariano -danial -blair -landon -dirk -branden -adan -numbers -clair -buford -german -bernie -wilmer -joan -emerson -zachery -fletcher -jacques -errol -dalton -monroe -josue -dominique -edwardo -booker -wilford -sonny -shelton -carson -theron -raymundo -daren -tristan -houston -robby -lincoln -jame -genaro -gale -bennett -octavio -cornell -laverne -hung -arron -antony -herschel -alva -giovanni -garth -cyrus -cyril -ronny -stevie -lon -freeman -erin -duncan -kennith -carmine -augustine -young -erich -chadwick -wilburn -russ -reid -myles -anderson -morton -jonas -forest -mitchel -mervin -zane -rich -jamel -lazaro -alphonse -randell -major -johnie -jarrett -brooks -ariel -abdul -dusty -luciano -lindsey -tracey -seymour -scottie -eugenio -mohammed -sandy -valentin -chance -arnulfo -lucien -ferdinand -thad -ezra -sydney -aldo -rubin -royal -mitch -earle -abe -wyatt -marquis -lanny -kareem -jamar -boris -isiah -emile -elmo -aron -leopoldo -everette -josef -gail -eloy -dorian -rodrick -reinaldo -lucio -jerrod -weston -hershel -barton -parker -lemuel -lavern -burt -jules -gil -eliseo -ahmad -nigel -efren -antwan -alden -margarito -coleman -refugio -dino -osvaldo -les -deandre -normand -kieth -ivory -andrea -trey -norberto -napoleon -jerold -fritz -rosendo -milford -sang -deon -christoper -alfonzo -lyman -josiah -brant -wilton -rico -jamaal -dewitt -carol -brenton -yong -olin -foster -faustino -claudio -judson -gino -edgardo -berry -alec -tanner -jarred -donn -trinidad -tad -shirley -prince -porfirio -odis -maria -lenard -chauncey -chang -tod -mel -marcelo -kory -augustus -keven -hilario -bud -sal -rosario -orval -mauro -dannie -zachariah -olen -anibal -milo -jed -frances -thanh -dillon -amado -newton -connie -lenny -tory -richie -lupe -horacio -brice -mohamed -delmer -dario -reyes -dee -mac -jonah -jerrold -robt -hank -sung -rupert -rolland -kenton -damion -chi -antone -waldo -fredric -bradly -quinn -kip -burl -walker -tyree -jefferey -ahmed -willy -stanford -oren -noble -moshe -mikel -enoch -brendon -quintin -jamison -florencio -darrick -tobias -minh -hassan -giuseppe -demarcus -cletus -tyrell -lyndon -keenan -werner -theo -geraldo -lou -columbus -chet -bertram -markus -huey -hilton -dwain -donte -tyron -omer -isaias -hipolito -fermin -chung -adalberto -valentine -jamey -bo -barrett -whitney -teodoro -mckinley -maximo -garfield -sol -raleigh -lawerence -abram -rashad -king -emmitt -daron -chong -samual -paris -otha -miquel -lacy -eusebio -dong -domenic -darron -buster -antonia -wilber -renato -jc -hoyt -haywood -ezekiel -chas -florentino -elroy -clemente -arden -neville -kelley -edison -deshawn -carrol -shayne -nathanial -jordon -danilo -claud -val -sherwood -raymon -rayford -cristobal -ambrose -titus -hyman -felton -ezequiel -erasmo -stanton -lonny -len -ike -milan -lino -jarod -herb -andreas -walton -rhett -palmer -jude -douglass -cordell -oswaldo -ellsworth -virgilio -toney -nathanael -del -britt -benedict -mose -hong -leigh -johnson -isreal -gayle -garret -fausto -asa -arlen -zack -warner -modesto -francesco -manual -jae -gaylord -gaston -filiberto -deangelo -michale -granville -wes -malik -zackary -tuan -nicky -eldridge -cristopher -cortez -antione -malcom -long -korey -jospeh -colton -waylon -von -hosea -shad -santo -rudolf -rolf -rey -renaldo -marcellus -lucius -lesley -kristofer -boyce -benton -man -kasey -jewell -hayden -harland -arnoldo -rueben -leandro -kraig -jerrell -jeromy -hobert -cedrick -arlie -winford -wally -patricia -luigi -keneth -jacinto -graig -franklyn -edmundo -sid -porter -leif -lauren -jeramy -elisha -buck -willian -vincenzo -shon -michal -lynwood -lindsay -jewel -jere -hai -elden -dorsey -darell -broderick -alonso diff --git a/splunk_eventgen/samples/external_ips.sample b/splunk_eventgen/samples/external_ips.sample deleted file mode 100644 index 2c7ed056..00000000 --- a/splunk_eventgen/samples/external_ips.sample +++ /dev/null @@ -1,150 +0,0 @@ -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -142.162.221.28 -142.233.200.21 -194.215.205.19 -201.122.42.235 -201.28.109.162 -201.3.120.132 -201.42.223.29 -203.92.58.136 -212.235.92.150 -212.27.63.151 -217.132.169.69 -59.162.167.100 -74.125.19.106 -81.11.191.113 -82.245.228.36 -84.34.159.23 -86.212.199.60 -86.9.190.90 -87.194.216.51 -89.167.143.32 -90.205.111.169 -92.1.170.135 -1.16.0.0 -1.19.11.11 -27.1.0.0 -27.1.11.11 -27.35.0.0 -27.35.11.11 -27.96.128.0 -27.96.191.11 -27.101.0.0 -27.101.11.11 -27.102.0.0 -27.102.11.11 -27.160.0.0 -27.175.11.11 -27.176.0.0 -193.33.170.23 -194.146.236.22 -194.8.74.23 -195.216.243.24 -195.69.160.22 -195.69.252.22 -195.80.144.22 -200.6.134.23 -202.164.25.24 -203.223.0.20 -217.197.192.20 -62.216.64.19 -64.66.0.20 -69.80.0.18 -87.240.128.18 -89.11.192.18 -91.199.80.24 -91.205.40.22 -91.208.184.24 -91.214.92.22 -94.229.0.20 -94.229.0.21 \ No newline at end of file diff --git a/splunk_eventgen/samples/firstNames.sample b/splunk_eventgen/samples/firstNames.sample deleted file mode 100644 index c16e1d1c..00000000 --- a/splunk_eventgen/samples/firstNames.sample +++ /dev/null @@ -1,2000 +0,0 @@ -JAMES -JOHN -ROBERT -MICHAEL -WILLIAM -DAVID -RICHARD -CHARLES -JOSEPH -THOMAS -CHRISTOPHER -DANIEL -PAUL -MARK -DONALD -GEORGE -KENNETH -STEVEN -EDWARD -BRIAN -RONALD -ANTHONY -KEVIN -JASON -MATTHEW -GARY -TIMOTHY -JOSE -LARRY -JEFFREY -FRANK -SCOTT -ERIC -STEPHEN -ANDREW -RAYMOND -GREGORY -JOSHUA -JERRY -DENNIS -WALTER -PATRICK -PETER -HAROLD -DOUGLAS -HENRY -CARL -ARTHUR -RYAN -ROGER -JOE -JUAN -JACK -ALBERT -JONATHAN -JUSTIN -TERRY -GERALD -KEITH -SAMUEL -WILLIE -RALPH -LAWRENCE -NICHOLAS -ROY -BENJAMIN -BRUCE -BRANDON -ADAM -HARRY -FRED -WAYNE -BILLY -STEVE -LOUIS -JEREMY -AARON -RANDY -HOWARD -EUGENE -CARLOS -RUSSELL -BOBBY -VICTOR -MARTIN -ERNEST -PHILLIP -TODD -JESSE -CRAIG -ALAN -SHAWN -CLARENCE -SEAN -PHILIP -CHRIS -JOHNNY -EARL -JIMMY -ANTONIO -DANNY -BRYAN -TONY -LUIS -MIKE -STANLEY -LEONARD -NATHAN -DALE -MANUEL -RODNEY -CURTIS -NORMAN -ALLEN -MARVIN -VINCENT -GLENN -JEFFERY -TRAVIS -JEFF -CHAD -JACOB -LEE -MELVIN -ALFRED -KYLE -FRANCIS -BRADLEY -JESUS -HERBERT -FREDERICK -RAY -JOEL -EDWIN -DON -EDDIE -RICKY -TROY -RANDALL -BARRY -ALEXANDER -BERNARD -MARIO -LEROY -FRANCISCO -MARCUS -MICHEAL -THEODORE -CLIFFORD -MIGUEL -OSCAR -JAY -JIM -TOM -CALVIN -ALEX -JON -RONNIE -BILL -LLOYD -TOMMY -LEON -DEREK -WARREN -DARRELL -JEROME -FLOYD -LEO -ALVIN -TIM -WESLEY -GORDON -DEAN -GREG -JORGE -DUSTIN -PEDRO -DERRICK -DAN -LEWIS -ZACHARY -COREY -HERMAN -MAURICE -VERNON -ROBERTO -CLYDE -GLEN -HECTOR -SHANE -RICARDO -SAM -RICK -LESTER -BRENT -RAMON -CHARLIE -TYLER -GILBERT -GENE -MARC -REGINALD -RUBEN -BRETT -ANGEL -NATHANIEL -RAFAEL -LESLIE -EDGAR -MILTON -RAUL -BEN -CHESTER -CECIL -DUANE -FRANKLIN -ANDRE -ELMER -BRAD -GABRIEL -RON -MITCHELL -ROLAND -ARNOLD -HARVEY -JARED -ADRIAN -KARL -CORY -CLAUDE -ERIK -DARRYL -JAMIE -NEIL -JESSIE -CHRISTIAN -JAVIER -FERNANDO -CLINTON -TED -MATHEW -TYRONE -DARREN -LONNIE -LANCE -CODY -JULIO -KELLY -KURT -ALLAN -NELSON -GUY -CLAYTON -HUGH -MAX -DWAYNE -DWIGHT -ARMANDO -FELIX -JIMMIE -EVERETT -JORDAN -IAN -WALLACE -KEN -BOB -JAIME -CASEY -ALFREDO -ALBERTO -DAVE -IVAN -JOHNNIE -SIDNEY -BYRON -JULIAN -ISAAC -MORRIS -CLIFTON -WILLARD -DARYL -ROSS -VIRGIL -ANDY -MARSHALL -SALVADOR -PERRY -KIRK -SERGIO -MARION -TRACY -SETH -KENT -TERRANCE -RENE -EDUARDO -TERRENCE -ENRIQUE -FREDDIE -WADE -AUSTIN -STUART -FREDRICK -ARTURO -ALEJANDRO -JACKIE -JOEY -NICK -LUTHER -WENDELL -JEREMIAH -EVAN -JULIUS -DANA -DONNIE -OTIS -SHANNON -TREVOR -OLIVER -LUKE -HOMER -GERARD -DOUG -KENNY -HUBERT -ANGELO -SHAUN -LYLE -MATT -LYNN -ALFONSO -ORLANDO -REX -CARLTON -ERNESTO -CAMERON -NEAL -PABLO -LORENZO -OMAR -WILBUR -BLAKE -GRANT -HORACE -RODERICK -KERRY -ABRAHAM -WILLIS -RICKEY -JEAN -IRA -ANDRES -CESAR -JOHNATHAN -MALCOLM -RUDOLPH -DAMON -KELVIN -RUDY -PRESTON -ALTON -ARCHIE -MARCO -WM -PETE -RANDOLPH -GARRY -GEOFFREY -JONATHON -FELIPE -BENNIE -GERARDO -ED -DOMINIC -ROBIN -LOREN -DELBERT -COLIN -GUILLERMO -EARNEST -LUCAS -BENNY -NOEL -SPENCER -RODOLFO -MYRON -EDMUND -GARRETT -SALVATORE -CEDRIC -LOWELL -GREGG -SHERMAN -WILSON -DEVIN -SYLVESTER -KIM -ROOSEVELT -ISRAEL -JERMAINE -FORREST -WILBERT -LELAND -SIMON -GUADALUPE -CLARK -IRVING -CARROLL -BRYANT -OWEN -RUFUS -WOODROW -SAMMY -KRISTOPHER -MACK -LEVI -MARCOS -GUSTAVO -JAKE -LIONEL -MARTY -TAYLOR -ELLIS -DALLAS -GILBERTO -CLINT -NICOLAS -LAURENCE -ISMAEL -ORVILLE -DREW -JODY -ERVIN -DEWEY -AL -WILFRED -JOSH -HUGO -IGNACIO -CALEB -TOMAS -SHELDON -ERICK -FRANKIE -STEWART -DOYLE -DARREL -ROGELIO -TERENCE -SANTIAGO -ALONZO -ELIAS -BERT -ELBERT -RAMIRO -CONRAD -PAT -NOAH -GRADY -PHIL -CORNELIUS -LAMAR -ROLANDO -CLAY -PERCY -DEXTER -BRADFORD -MERLE -DARIN -AMOS -TERRELL -MOSES -IRVIN -SAUL -ROMAN -DARNELL -RANDAL -TOMMIE -TIMMY -DARRIN -WINSTON -BRENDAN -TOBY -VAN -ABEL -DOMINICK -BOYD -COURTNEY -JAN -EMILIO -ELIJAH -CARY -DOMINGO -SANTOS -AUBREY -EMMETT -MARLON -EMANUEL -JERALD -EDMOND -EMIL -DEWAYNE -WILL -OTTO -TEDDY -REYNALDO -BRET -MORGAN -JESS -TRENT -HUMBERTO -EMMANUEL -STEPHAN -LOUIE -VICENTE -LAMONT -STACY -GARLAND -MILES -MICAH -EFRAIN -BILLIE -LOGAN -HEATH -RODGER -HARLEY -DEMETRIUS -ETHAN -ELDON -ROCKY -PIERRE -JUNIOR -FREDDY -ELI -BRYCE -ANTOINE -ROBBIE -KENDALL -ROYCE -STERLING -MICKEY -CHASE -GROVER -ELTON -CLEVELAND -DYLAN -CHUCK -DAMIAN -REUBEN -STAN -AUGUST -LEONARDO -JASPER -RUSSEL -ERWIN -BENITO -HANS -MONTE -BLAINE -ERNIE -CURT -QUENTIN -AGUSTIN -MURRAY -JAMAL -DEVON -ADOLFO -HARRISON -TYSON -BURTON -BRADY -ELLIOTT -WILFREDO -BART -JARROD -VANCE -DENIS -DAMIEN -JOAQUIN -HARLAN -DESMOND -ELLIOT -DARWIN -ASHLEY -GREGORIO -BUDDY -XAVIER -KERMIT -ROSCOE -ESTEBAN -ANTON -SOLOMON -SCOTTY -NORBERT -ELVIN -WILLIAMS -NOLAN -CAREY -ROD -QUINTON -HAL -BRAIN -ROB -ELWOOD -KENDRICK -DARIUS -MOISES -SON -MARLIN -FIDEL -THADDEUS -CLIFF -MARCEL -ALI -JACKSON -RAPHAEL -BRYON -ARMAND -ALVARO -JEFFRY -DANE -JOESPH -THURMAN -NED -SAMMIE -RUSTY -MICHEL -MONTY -RORY -FABIAN -REGGIE -MASON -GRAHAM -KRIS -ISAIAH -VAUGHN -GUS -AVERY -LOYD -DIEGO -ALEXIS -ADOLPH -NORRIS -MILLARD -ROCCO -GONZALO -DERICK -RODRIGO -GERRY -STACEY -CARMEN -WILEY -RIGOBERTO -ALPHONSO -TY -SHELBY -RICKIE -NOE -VERN -BOBBIE -REED -JEFFERSON -ELVIS -BERNARDO -MAURICIO -HIRAM -DONOVAN -BASIL -RILEY -OLLIE -NICKOLAS -MAYNARD -SCOT -VINCE -QUINCY -EDDY -SEBASTIAN -FEDERICO -ULYSSES -HERIBERTO -DONNELL -COLE -DENNY -DAVIS -GAVIN -EMERY -WARD -ROMEO -JAYSON -DION -DANTE -CLEMENT -COY -ODELL -MAXWELL -JARVIS -BRUNO -ISSAC -MARY -DUDLEY -BROCK -SANFORD -COLBY -CARMELO -BARNEY -NESTOR -HOLLIS -STEFAN -DONNY -ART -LINWOOD -BEAU -WELDON -GALEN -ISIDRO -TRUMAN -DELMAR -JOHNATHON -SILAS -FREDERIC -DICK -KIRBY -IRWIN -CRUZ -MERLIN -MERRILL -CHARLEY -MARCELINO -LANE -HARRIS -CLEO -CARLO -TRENTON -KURTIS -HUNTER -AURELIO -WINFRED -VITO -COLLIN -DENVER -CARTER -LEONEL -EMORY -PASQUALE -MOHAMMAD -MARIANO -DANIAL -BLAIR -LANDON -DIRK -BRANDEN -ADAN -NUMBERS -CLAIR -BUFORD -GERMAN -BERNIE -WILMER -JOAN -EMERSON -ZACHERY -FLETCHER -JACQUES -ERROL -DALTON -MONROE -JOSUE -DOMINIQUE -EDWARDO -BOOKER -WILFORD -SONNY -SHELTON -CARSON -THERON -RAYMUNDO -DAREN -TRISTAN -HOUSTON -ROBBY -LINCOLN -JAME -GENARO -GALE -BENNETT -OCTAVIO -CORNELL -LAVERNE -HUNG -ARRON -ANTONY -HERSCHEL -ALVA -GIOVANNI -GARTH -CYRUS -CYRIL -RONNY -STEVIE -LON -FREEMAN -ERIN -DUNCAN -KENNITH -CARMINE -AUGUSTINE -YOUNG -ERICH -CHADWICK -WILBURN -RUSS -REID -MYLES -ANDERSON -MORTON -JONAS -FOREST -MITCHEL -MERVIN -ZANE -RICH -JAMEL -LAZARO -ALPHONSE -RANDELL -MAJOR -JOHNIE -JARRETT -BROOKS -ARIEL -ABDUL -DUSTY -LUCIANO -LINDSEY -TRACEY -SEYMOUR -SCOTTIE -EUGENIO -MOHAMMED -SANDY -VALENTIN -CHANCE -ARNULFO -LUCIEN -FERDINAND -THAD -EZRA -SYDNEY -ALDO -RUBIN -ROYAL -MITCH -EARLE -ABE -WYATT -MARQUIS -LANNY -KAREEM -JAMAR -BORIS -ISIAH -EMILE -ELMO -ARON -LEOPOLDO -EVERETTE -JOSEF -GAIL -ELOY -DORIAN -RODRICK -REINALDO -LUCIO -JERROD -WESTON -HERSHEL -BARTON -PARKER -LEMUEL -LAVERN -BURT -JULES -GIL -ELISEO -AHMAD -NIGEL -EFREN -ANTWAN -ALDEN -MARGARITO -COLEMAN -REFUGIO -DINO -OSVALDO -LES -DEANDRE -NORMAND -KIETH -IVORY -ANDREA -TREY -NORBERTO -NAPOLEON -JEROLD -FRITZ -ROSENDO -MILFORD -SANG -DEON -CHRISTOPER -ALFONZO -LYMAN -JOSIAH -BRANT -WILTON -RICO -JAMAAL -DEWITT -CAROL -BRENTON -YONG -OLIN -FOSTER -FAUSTINO -CLAUDIO -JUDSON -GINO -EDGARDO -BERRY -ALEC -TANNER -JARRED -DONN -TRINIDAD -TAD -SHIRLEY -PRINCE -PORFIRIO -ODIS -MARIA -LENARD -CHAUNCEY -CHANG -TOD -MEL -MARCELO -KORY -AUGUSTUS -KEVEN -HILARIO -BUD -SAL -ROSARIO -ORVAL -MAURO -DANNIE -ZACHARIAH -OLEN -ANIBAL -MILO -JED -FRANCES -THANH -DILLON -AMADO -NEWTON -CONNIE -LENNY -TORY -RICHIE -LUPE -HORACIO -BRICE -MOHAMED -DELMER -DARIO -REYES -DEE -MAC -JONAH -JERROLD -ROBT -HANK -SUNG -RUPERT -ROLLAND -KENTON -DAMION -CHI -ANTONE -WALDO -FREDRIC -BRADLY -QUINN -KIP -BURL -WALKER -TYREE -JEFFEREY -AHMED -MARY -PATRICIA -LINDA -BARBARA -ELIZABETH -JENNIFER -MARIA -SUSAN -MARGARET -DOROTHY -LISA -NANCY -KAREN -BETTY -HELEN -SANDRA -DONNA -CAROL -RUTH -SHARON -MICHELLE -LAURA -SARAH -KIMBERLY -DEBORAH -JESSICA -SHIRLEY -CYNTHIA -ANGELA -MELISSA -BRENDA -AMY -ANNA -REBECCA -VIRGINIA -KATHLEEN -PAMELA -MARTHA -DEBRA -AMANDA -STEPHANIE -CAROLYN -CHRISTINE -MARIE -JANET -CATHERINE -FRANCES -ANN -JOYCE -DIANE -ALICE -JULIE -HEATHER -TERESA -DORIS -GLORIA -EVELYN -JEAN -CHERYL -MILDRED -KATHERINE -JOAN -ASHLEY -JUDITH -ROSE -JANICE -KELLY -NICOLE -JUDY -CHRISTINA -KATHY -THERESA -BEVERLY -DENISE -TAMMY -IRENE -JANE -LORI -RACHEL -MARILYN -ANDREA -KATHRYN -LOUISE -SARA -ANNE -JACQUELINE -WANDA -BONNIE -JULIA -RUBY -LOIS -TINA -PHYLLIS -NORMA -PAULA -DIANA -ANNIE -LILLIAN -EMILY -ROBIN -PEGGY -CRYSTAL -GLADYS -RITA -DAWN -CONNIE -FLORENCE -TRACY -EDNA -TIFFANY -CARMEN -ROSA -CINDY -GRACE -WENDY -VICTORIA -EDITH -KIM -SHERRY -SYLVIA -JOSEPHINE -THELMA -SHANNON -SHEILA -ETHEL -ELLEN -ELAINE -MARJORIE -CARRIE -CHARLOTTE -MONICA -ESTHER -PAULINE -EMMA -JUANITA -ANITA -RHONDA -HAZEL -AMBER -EVA -DEBBIE -APRIL -LESLIE -CLARA -LUCILLE -JAMIE -JOANNE -ELEANOR -VALERIE -DANIELLE -MEGAN -ALICIA -SUZANNE -MICHELE -GAIL -BERTHA -DARLENE -VERONICA -JILL -ERIN -GERALDINE -LAUREN -CATHY -JOANN -LORRAINE -LYNN -SALLY -REGINA -ERICA -BEATRICE -DOLORES -BERNICE -AUDREY -YVONNE -ANNETTE -JUNE -SAMANTHA -MARION -DANA -STACY -ANA -RENEE -IDA -VIVIAN -ROBERTA -HOLLY -BRITTANY -MELANIE -LORETTA -YOLANDA -JEANETTE -LAURIE -KATIE -KRISTEN -VANESSA -ALMA -SUE -ELSIE -BETH -JEANNE -VICKI -CARLA -TARA -ROSEMARY -EILEEN -TERRI -GERTRUDE -LUCY -TONYA -ELLA -STACEY -WILMA -GINA -KRISTIN -JESSIE -NATALIE -AGNES -VERA -WILLIE -CHARLENE -BESSIE -DELORES -MELINDA -PEARL -ARLENE -MAUREEN -COLLEEN -ALLISON -TAMARA -JOY -GEORGIA -CONSTANCE -LILLIE -CLAUDIA -JACKIE -MARCIA -TANYA -NELLIE -MINNIE -MARLENE -HEIDI -GLENDA -LYDIA -VIOLA -COURTNEY -MARIAN -STELLA -CAROLINE -DORA -JO -VICKIE -MATTIE -TERRY -MAXINE -IRMA -MABEL -MARSHA -MYRTLE -LENA -CHRISTY -DEANNA -PATSY -HILDA -GWENDOLYN -JENNIE -NORA -MARGIE -NINA -CASSANDRA -LEAH -PENNY -KAY -PRISCILLA -NAOMI -CAROLE -BRANDY -OLGA -BILLIE -DIANNE -TRACEY -LEONA -JENNY -FELICIA -SONIA -MIRIAM -VELMA -BECKY -BOBBIE -VIOLET -KRISTINA -TONI -MISTY -MAE -SHELLY -DAISY -RAMONA -SHERRI -ERIKA -KATRINA -CLAIRE -LINDSEY -LINDSAY -GENEVA -GUADALUPE -BELINDA -MARGARITA -SHERYL -CORA -FAYE -ADA -NATASHA -SABRINA -ISABEL -MARGUERITE -HATTIE -HARRIET -MOLLY -CECILIA -KRISTI -BRANDI -BLANCHE -SANDY -ROSIE -JOANNA -IRIS -EUNICE -ANGIE -INEZ -LYNDA -MADELINE -AMELIA -ALBERTA -GENEVIEVE -MONIQUE -JODI -JANIE -MAGGIE -KAYLA -SONYA -JAN -LEE -KRISTINE -CANDACE -FANNIE -MARYANN -OPAL -ALISON -YVETTE -MELODY -LUZ -SUSIE -OLIVIA -FLORA -SHELLEY -KRISTY -MAMIE -LULA -LOLA -VERNA -BEULAH -ANTOINETTE -CANDICE -JUANA -JEANNETTE -PAM -KELLI -HANNAH -WHITNEY -BRIDGET -KARLA -CELIA -LATOYA -PATTY -SHELIA -GAYLE -DELLA -VICKY -LYNNE -SHERI -MARIANNE -KARA -JACQUELYN -ERMA -BLANCA -MYRA -LETICIA -PAT -KRISTA -ROXANNE -ANGELICA -JOHNNIE -ROBYN -FRANCIS -ADRIENNE -ROSALIE -ALEXANDRA -BROOKE -BETHANY -SADIE -BERNADETTE -TRACI -JODY -KENDRA -JASMINE -NICHOLE -RACHAEL -CHELSEA -MABLE -ERNESTINE -MURIEL -MARCELLA -ELENA -KRYSTAL -ANGELINA -NADINE -KARI -ESTELLE -DIANNA -PAULETTE -LORA -MONA -DOREEN -ROSEMARIE -ANGEL -DESIREE -ANTONIA -HOPE -GINGER -JANIS -BETSY -CHRISTIE -FREDA -MERCEDES -MEREDITH -LYNETTE -TERI -CRISTINA -EULA -LEIGH -MEGHAN -SOPHIA -ELOISE -ROCHELLE -GRETCHEN -CECELIA -RAQUEL -HENRIETTA -ALYSSA -JANA -KELLEY -GWEN -KERRY -JENNA -TRICIA -LAVERNE -OLIVE -ALEXIS -TASHA -SILVIA -ELVIRA -CASEY -DELIA -SOPHIE -KATE -PATTI -LORENA -KELLIE -SONJA -LILA -LANA -DARLA -MAY -MINDY -ESSIE -MANDY -LORENE -ELSA -JOSEFINA -JEANNIE -MIRANDA -DIXIE -LUCIA -MARTA -FAITH -LELA -JOHANNA -SHARI -CAMILLE -TAMI -SHAWNA -ELISA -EBONY -MELBA -ORA -NETTIE -TABITHA -OLLIE -JAIME -WINIFRED -KRISTIE -MARINA -ALISHA -AIMEE -RENA -MYRNA -MARLA -TAMMIE -LATASHA -BONITA -PATRICE -RONDA -SHERRIE -ADDIE -FRANCINE -DELORIS -STACIE -ADRIANA -CHERI -SHELBY -ABIGAIL -CELESTE -JEWEL -CARA -ADELE -REBEKAH -LUCINDA -DORTHY -CHRIS -EFFIE -TRINA -REBA -SHAWN -SALLIE -AURORA -LENORA -ETTA -LOTTIE -KERRI -TRISHA -NIKKI -ESTELLA -FRANCISCA -JOSIE -TRACIE -MARISSA -KARIN -BRITTNEY -JANELLE -LOURDES -LAUREL -HELENE -FERN -ELVA -CORINNE -KELSEY -INA -BETTIE -ELISABETH -AIDA -CAITLIN -INGRID -IVA -EUGENIA -CHRISTA -GOLDIE -CASSIE -MAUDE -JENIFER -THERESE -FRANKIE -DENA -LORNA -JANETTE -LATONYA -CANDY -MORGAN -CONSUELO -TAMIKA -ROSETTA -DEBORA -CHERIE -POLLY -DINA -JEWELL -FAY -JILLIAN -DOROTHEA -NELL -TRUDY -ESPERANZA -PATRICA -KIMBERLEY -SHANNA -HELENA -CAROLINA -CLEO -STEFANIE -ROSARIO -OLA -JANINE -MOLLIE -LUPE -ALISA -LOU -MARIBEL -SUSANNE -BETTE -SUSANA -ELISE -CECILE -ISABELLE -LESLEY -JOCELYN -PAIGE -JONI -RACHELLE -LEOLA -DAPHNE -ALTA -ESTER -PETRA -GRACIELA -IMOGENE -JOLENE -KEISHA -LACEY -GLENNA -GABRIELA -KERI -URSULA -LIZZIE -KIRSTEN -SHANA -ADELINE -MAYRA -JAYNE -JACLYN -GRACIE -SONDRA -CARMELA -MARISA -ROSALIND -CHARITY -TONIA -BEATRIZ -MARISOL -CLARICE -JEANINE -SHEENA -ANGELINE -FRIEDA -LILY -ROBBIE -SHAUNA -MILLIE -CLAUDETTE -CATHLEEN -ANGELIA -GABRIELLE -AUTUMN -KATHARINE -SUMMER -JODIE -STACI -LEA -CHRISTI -JIMMIE -JUSTINE -ELMA -LUELLA -MARGRET -DOMINIQUE -SOCORRO -RENE -MARTINA -MARGO -MAVIS -CALLIE -BOBBI -MARITZA -LUCILE -LEANNE -JEANNINE -DEANA -AILEEN -LORIE -LADONNA -WILLA -MANUELA -GALE -SELMA -DOLLY -SYBIL -ABBY -LARA -DALE -IVY -DEE -WINNIE -MARCY -LUISA -JERI -MAGDALENA -OFELIA -MEAGAN -AUDRA -MATILDA -LEILA -CORNELIA -BIANCA -SIMONE -BETTYE -RANDI -VIRGIE -LATISHA -BARBRA -GEORGINA -ELIZA -LEANN -BRIDGETTE -RHODA -HALEY -ADELA -NOLA -BERNADINE -FLOSSIE -ILA -GRETA -RUTHIE -NELDA -MINERVA -LILLY -TERRIE -LETHA -HILARY -ESTELA -VALARIE -BRIANNA -ROSALYN -EARLINE -CATALINA -AVA -MIA -CLARISSA -LIDIA -CORRINE -ALEXANDRIA -CONCEPCION -TIA -SHARRON -RAE -DONA -ERICKA -JAMI -ELNORA -CHANDRA -LENORE -NEVA -MARYLOU -MELISA -TABATHA -SERENA -AVIS -ALLIE -SOFIA -JEANIE -ODESSA -NANNIE -HARRIETT -LORAINE -PENELOPE -MILAGROS -EMILIA -BENITA -ALLYSON -ASHLEE -TANIA -TOMMIE -ESMERALDA -KARINA -EVE -PEARLIE -ZELMA -MALINDA -NOREEN -TAMEKA -SAUNDRA -HILLARY -AMIE -ALTHEA -ROSALINDA -JORDAN -LILIA -ALANA -GAY -CLARE -ALEJANDRA -ELINOR -MICHAEL -LORRIE -JERRI -DARCY -EARNESTINE -CARMELLA -TAYLOR -NOEMI -MARCIE -LIZA -ANNABELLE -LOUISA -EARLENE -MALLORY -CARLENE -NITA -SELENA -TANISHA -KATY -JULIANNE -JOHN -LAKISHA -EDWINA -MARICELA -MARGERY -KENYA -DOLLIE -ROXIE -ROSLYN -KATHRINE -NANETTE -CHARMAINE -LAVONNE -ILENE -KRIS -TAMMI -SUZETTE -CORINE -KAYE -JERRY -MERLE -CHRYSTAL -LINA -DEANNE -LILIAN -JULIANA -ALINE -LUANN -KASEY -MARYANNE -EVANGELINE -COLETTE -MELVA -LAWANDA -YESENIA -NADIA -MADGE -KATHIE -EDDIE -OPHELIA -VALERIA -NONA -MITZI -MARI -GEORGETTE -CLAUDINE -FRAN -ALISSA -ROSEANN -LAKEISHA -SUSANNA -REVA -DEIDRE -CHASITY -SHEREE -CARLY -JAMES -ELVIA -ALYCE -DEIRDRE -GENA -BRIANA -ARACELI -KATELYN -ROSANNE -WENDI -TESSA -BERTA -MARVA -IMELDA -MARIETTA -MARCI -LEONOR -ARLINE -SASHA -MADELYN -JANNA -JULIETTE -DEENA -AURELIA -JOSEFA -AUGUSTA -LILIANA -YOUNG -CHRISTIAN -LESSIE -AMALIA -SAVANNAH -ANASTASIA -VILMA -NATALIA -ROSELLA -LYNNETTE -CORINA -ALFREDA -LEANNA -CAREY -AMPARO -COLEEN -TAMRA -AISHA -WILDA -KARYN -CHERRY -QUEEN -MAURA -MAI -EVANGELINA -ROSANNA -HALLIE -ERNA -ENID -MARIANA -LACY -JULIET -JACKLYN -FREIDA -MADELEINE -MARA -HESTER -CATHRYN -LELIA -CASANDRA -BRIDGETT -ANGELITA -JANNIE -DIONNE -ANNMARIE -KATINA -BERYL -PHOEBE -MILLICENT -KATHERYN -DIANN -CARISSA -MARYELLEN -LIZ -LAURI -HELGA -GILDA -ADRIAN -RHEA -MARQUITA -HOLLIE -TISHA -TAMERA -ANGELIQUE -FRANCESCA -BRITNEY -KAITLIN -LOLITA -FLORINE -ROWENA -REYNA -TWILA -FANNY -JANELL -INES -CONCETTA -BERTIE -ALBA -BRIGITTE -ALYSON -VONDA -PANSY -ELBA -NOELLE -LETITIA -KITTY -DEANN -BRANDIE -LOUELLA -LETA -FELECIA -SHARLENE -LESA -BEVERLEY -ROBERT -ISABELLA -HERMINIA -TERRA -CELINA \ No newline at end of file diff --git a/splunk_eventgen/samples/hostname.sample b/splunk_eventgen/samples/hostname.sample deleted file mode 100644 index ce31533a..00000000 --- a/splunk_eventgen/samples/hostname.sample +++ /dev/null @@ -1,50 +0,0 @@ -ACME-001 -ACME-002 -ACME-003 -ACME-004 -ACME-005 -ACME-006 -HOST-001 -HOST-002 -HOST-003 -HOST-004 -HOST-005 -HOST-006 -ops-sys-001 -ops-sys-002 -ops-sys-003 -ops-sys-004 -ops-sys-005 -ops-sys-006 -PROD-POS-001 -PROD-POS-002 -PROD-POS-003 -PROD-POS-004 -PROD-POS-005 -PROD-POS-006 -PROD-MFS-001 -PROD-MFS-002 -PROD-MFS-003 -PROD-MFS-004 -PROD-MFS-005 -PROD-MFS-006 -COREDEV-001 -COREDEV-002 -COREDEV-003 -COREDEV-004 -COREDEV-005 -COREDEV-006 -SE-001 -SE-002 -SE-003 -SE-004 -SE-005 -SE-006 -BUSDEV-001 -BUSDEV-002 -BUSDEV-003 -BUSDEV-004 -BUSDEV-005 -BUSDEV-006 -BUSDEV-007 -BUSDEV-008 \ No newline at end of file diff --git a/splunk_eventgen/samples/iana_domains.sample b/splunk_eventgen/samples/iana_domains.sample deleted file mode 100644 index 07216ff1..00000000 --- a/splunk_eventgen/samples/iana_domains.sample +++ /dev/null @@ -1,316 +0,0 @@ -ac -ad -ae -aero -af -ag -ai -al -am -an -ao -aq -ar -arpa -as -asia -at -au -aw -ax -az -ba -bb -bd -be -bf -bg -bh -bi -biz -bj -bm -bn -bo -br -bs -bt -bv -bw -by -bz -ca -cat -cc -cd -cf -cg -ch -ci -ck -cl -cm -cn -co -com -coop -cr -cu -cv -cw -cx -cy -cz -de -dj -dk -dm -do -dz -ec -edu -ee -eg -er -es -et -eu -fi -fj -fk -fm -fo -fr -ga -gb -gd -ge -gf -gg -gh -gi -gl -gm -gn -gov -gp -gq -gr -gs -gt -gu -gw -gy -hk -hm -hn -hr -ht -hu -id -ie -il -im -in -info -int -io -iq -ir -is -it -je -jm -jo -jobs -jp -ke -kg -kh -ki -km -kn -kp -kr -kw -ky -kz -la -lb -lc -li -lk -lr -ls -lt -lu -lv -ly -ma -mc -md -me -mg -mh -mil -mk -ml -mm -mn -mo -mobi -mp -mq -mr -ms -mt -mu -museum -mv -mw -mx -my -mz -na -name -nc -ne -net -nf -ng -ni -nl -no -np -nr -nu -nz -om -org -pa -pe -pf -pg -ph -pk -pl -pm -pn -post -pr -pro -ps -pt -pw -py -qa -re -ro -rs -ru -rw -sa -sb -sc -sd -se -sg -sh -si -sj -sk -sl -sm -sn -so -sr -st -su -sv -sx -sy -sz -tc -td -tel -tf -tg -th -tj -tk -tl -tm -tn -to -tp -tr -travel -tt -tv -tw -tz -ua -ug -uk -us -uy -uz -va -vc -ve -vg -vi -vn -vu -wf -ws -xn--0zwm56d -xn--11b5bs3a9aj6g -xn--3e0b707e -xn--45brj9c -xn--80akhbyknj4f -xn--80ao21a -xn--90a3ac -xn--9t4b11yi5a -xn--clchc0ea0b2g2a9gcd -xn--deba0ad -xn--fiqs8s -xn--fiqz9s -xn--fpcrj9c3d -xn--fzc2c9e2c -xn--g6w251d -xn--gecrj9c -xn--h2brj9c -xn--hgbk6aj7f53bba -xn--hlcj6aya9esc7a -xn--j6w193g -xn--jxalpdlp -xn--kgbechtv -xn--kprw13d -xn--kpry57d -xn--lgbbat1ad8j -xn--mgb9awbf -xn--mgbaam7a8h -xn--mgbayh7gpa -xn--mgbbh1a71e -xn--mgbc0a9azcg -xn--mgberp4a5d4ar -xn--mgbx4cd0ab -xn--o3cw4h -xn--ogbpf8fl -xn--p1ai -xn--pgbs0dh -xn--s9brj9c -xn--wgbh1c -xn--wgbl6a -xn--xkc2al3hye2a -xn--xkc2dl3a5ee0h -xn--yfro4i67o -xn--ygbi2ammx -xn--zckzah -xxx -ye -yt -za -zm -zw \ No newline at end of file diff --git a/splunk_eventgen/samples/internal_ips.sample b/splunk_eventgen/samples/internal_ips.sample deleted file mode 100644 index a9070e8d..00000000 --- a/splunk_eventgen/samples/internal_ips.sample +++ /dev/null @@ -1,951 +0,0 @@ -10.88.232.170 -10.88.153.34 -10.89.86.103 -10.89.108.98 -10.123.2.9 -10.90.150.222 -10.178.191.121 -10.91.215.193 -10.123.194.42 -10.123.194.42 -10.88.50.221 -10.91.136.210 -10.151.125.19 -10.86.252.201 -10.145.73.211 -10.152.220.151 -10.145.224.179 -10.168.32.2 -10.95.22.60 -10.86.252.201 -10.175.207.190 -10.152.162.9 -10.90.100.32 -10.150.132.242 -10.150.132.242 -10.86.181.156 -10.91.202.219 -10.91.74.198 -10.91.202.219 -10.88.35.78 -10.172.22.224 -10.185.31.33 -10.162.247.125 -10.152.53.222 -10.91.25.243 -10.91.25.243 -10.98.40.77 -10.151.34.146 -10.84.250.163 -10.90.100.32 -10.148.188.147 -10.154.158.105 -10.170.246.4 -10.179.212.77 -10.123.124.28 -10.123.124.28 -10.173.60.83 -10.121.82.247 -10.168.40.117 -10.89.181.26 -10.153.208.149 -10.120.226.95 -10.162.247.125 -10.85.5.11 -10.89.254.80 -10.154.8.65 -10.122.171.246 -10.99.222.66 -10.177.237.244 -10.172.155.181 -10.89.107.135 -10.123.125.160 -10.179.193.254 -10.179.193.254 -10.85.245.109 -10.120.12.226 -10.184.180.90 -10.175.163.61 -10.88.35.78 -10.175.0.116 -10.85.245.109 -10.121.139.48 -10.86.220.2 -10.123.176.152 -10.120.12.226 -10.144.8.66 -10.167.67.70 -10.179.121.51 -10.166.101.209 -10.173.119.236 -10.120.251.250 -10.168.211.65 -10.122.68.227 -10.122.7.163 -10.94.33.205 -10.148.161.103 -10.187.180.140 -10.186.177.160 -10.185.186.50 -10.171.10.88 -10.161.146.110 -10.185.163.233 -10.151.12.232 -10.152.110.151 -10.123.141.235 -10.149.245.182 -10.91.164.40 -10.187.55.51 -10.149.245.182 -10.147.141.101 -10.162.65.160 -10.122.23.196 -10.145.233.94 -10.172.155.181 -10.174.58.87 -10.146.106.176 -10.123.125.160 -10.154.66.66 -10.148.17.16 -10.157.6.88 -10.151.191.20 -10.132.171.78 -10.187.165.92 -10.153.94.133 -10.148.17.16 -10.165.74.249 -10.185.198.156 -10.184.108.156 -10.99.199.248 -10.86.220.2 -10.99.199.248 -10.87.251.230 -10.168.118.92 -10.168.247.238 -10.163.249.196 -10.179.121.51 -10.187.36.80 -10.84.186.98 -10.166.101.209 -10.186.204.29 -10.86.7.223 -10.84.24.192 -10.123.50.113 -10.186.177.160 -10.187.180.140 -10.146.224.148 -10.186.28.31 -10.186.28.31 -10.147.6.208 -10.95.215.7 -10.185.163.233 -10.90.192.49 -10.88.232.170 -10.121.23.194 -10.157.120.61 -10.186.221.70 -10.152.127.222 -10.154.193.33 -10.176.87.78 -10.176.87.78 -10.122.23.196 -10.91.99.125 -10.89.81.236 -10.169.212.193 -10.120.73.193 -10.171.30.254 -10.175.12.58 -10.95.232.172 -10.120.28.237 -10.150.20.61 -10.177.122.209 -10.95.129.147 -10.150.20.61 -10.86.70.72 -10.177.122.209 -10.169.15.7 -10.86.70.72 -10.165.74.249 -10.85.15.2 -10.178.163.168 -10.168.118.92 -10.157.149.229 -10.168.247.238 -10.90.65.167 -10.147.16.248 -10.185.148.226 -10.91.154.210 -10.186.51.216 -10.152.116.119 -10.89.4.172 -10.120.251.250 -10.122.68.227 -10.122.242.60 -10.95.64.145 -10.169.43.34 -10.84.215.85 -10.148.236.57 -10.185.140.200 -10.186.73.143 -10.187.36.80 -10.167.0.233 -10.177.211.214 -10.167.0.233 -10.177.211.214 -10.187.66.116 -10.179.102.38 -10.179.102.38 -10.184.209.97 -10.169.160.173 -10.172.155.54 -10.91.172.61 -10.91.172.61 -10.172.137.16 -10.85.105.94 -10.171.30.254 -10.156.91.39 -10.178.163.168 -10.123.178.139 -10.172.155.54 -10.186.204.172 -10.151.118.232 -10.186.204.172 -10.88.53.92 -10.170.54.174 -10.151.118.232 -10.151.246.53 -10.88.33.180 -10.95.174.21 -10.88.33.180 -10.157.196.89 -10.149.49.10 -10.146.229.254 -10.123.164.101 -10.123.141.235 -10.155.61.131 -10.185.43.165 -10.120.83.93 -10.150.112.220 -10.157.191.113 -10.89.4.172 -10.174.0.16 -10.89.7.165 -10.169.187.156 -10.121.245.92 -10.170.114.49 -10.177.21.81 -10.177.21.81 -10.171.200.6 -10.85.33.246 -10.145.105.209 -10.154.100.208 -10.173.29.16 -10.84.30.158 -10.145.141.224 -10.85.105.94 -10.150.55.193 -10.171.200.6 -10.186.185.151 -10.187.99.83 -10.169.15.7 -10.84.113.180 -10.89.146.208 -10.88.53.92 -10.165.58.82 -10.185.34.113 -10.150.31.135 -10.120.208.207 -10.120.208.207 -10.88.156.50 -10.158.75.243 -10.179.125.134 -10.158.255.30 -10.151.89.208 -10.84.159.171 -10.91.165.150 -10.169.43.34 -10.157.71.11 -10.154.128.55 -10.173.215.179 -10.87.16.136 -10.95.64.145 -10.146.108.101 -10.170.128.166 -10.146.108.101 -10.121.245.92 -10.169.187.156 -10.121.49.110 -10.95.247.50 -10.174.0.16 -108.97.15.244 -10.176.240.103 -10.156.184.246 -10.170.114.49 -10.159.231.160 -10.163.196.156 -10.177.185.205 -10.84.167.96 -10.88.148.223 -10.184.125.119 -10.186.117.235 -108.106.227.179 -10.156.173.90 -10.178.147.108 -10.144.194.79 -10.178.152.155 -10.87.80.86 -10.87.80.86 -10.120.251.250 -10.156.52.17 -10.174.200.119 -10.84.30.158 -10.173.173.124 -10.122.68.227 -10.187.155.143 -10.86.25.63 -10.187.179.162 -10.144.235.14 -10.187.99.83 -10.95.74.112 -10.95.74.112 -10.179.242.29 -10.155.83.232 -10.145.157.40 -10.148.245.116 -10.88.156.50 -10.184.240.63 -10.171.11.219 -10.144.237.252 -10.150.11.179 -10.156.113.90 -10.123.178.139 -10.121.45.90 -10.145.188.245 -10.91.165.150 -10.173.215.179 -10.155.164.34 -10.84.100.124 -10.121.92.169 -10.156.165.11 -10.174.113.138 -10.95.5.109 -10.172.71.122 -10.147.9.147 -10.147.9.147 -10.162.152.219 -10.90.92.92 -10.175.130.131 -10.157.243.84 -10.156.252.253 -10.184.201.112 -10.186.159.239 -10.186.217.239 -10.186.217.239 -10.159.40.117 -10.184.238.250 -10.184.137.99 -10.149.73.47 -10.179.37.79 -10.87.210.253 -10.187.155.143 -10.177.249.16 -10.176.196.207 -10.152.11.202 -10.172.3.217 -10.85.105.184 -10.144.91.209 -10.122.124.96 -10.156.158.187 -10.152.151.49 -10.159.201.178 -10.98.58.47 -10.170.54.174 -10.144.119.50 -10.152.159.179 -10.179.10.238 -10.174.181.136 -10.172.199.60 -10.171.215.182 -10.155.231.52 -10.179.236.5 -10.164.232.181 -10.84.100.124 -10.174.113.138 -10.99.4.4 -10.179.200.152 -10.179.200.152 -10.89.128.158 -10.162.152.219 -10.148.143.37 -10.154.196.241 -10.187.6.61 -10.186.144.157 -10.153.166.229 -10.163.243.2 -10.168.80.39 -10.84.22.59 -10.87.142.37 -10.168.80.39 -10.186.129.250 -108.118.34.203 -10.155.20.94 -10.177.64.102 -10.148.223.135 -10.89.42.18 -10.178.198.97 -10.147.164.143 -10.95.22.60 -10.176.196.207 -10.186.126.101 -10.122.124.96 -10.120.251.250 -10.90.133.113 -10.152.36.225 -10.147.217.9 -10.184.253.224 -10.122.68.227 -10.171.10.242 -10.176.13.131 -10.176.13.131 -10.98.58.47 -10.168.30.195 -10.174.3.152 -10.85.170.88 -10.179.37.79 -10.178.1.102 -10.150.243.248 -10.171.10.242 -10.158.97.222 -10.122.27.216 -10.176.40.67 -10.122.27.216 -10.179.236.5 -10.94.63.34 -10.150.60.106 -10.150.60.106 -10.87.150.157 -10.164.232.181 -10.146.86.213 -10.99.4.4 -10.153.49.217 -10.184.13.57 -10.187.94.11 -10.147.177.144 -10.121.45.90 -10.89.128.158 -10.146.23.89 -10.151.115.126 -10.153.209.44 -10.186.144.157 -10.123.188.24 -10.163.243.2 -10.148.26.227 -10.147.160.121 -10.84.54.32 -10.95.129.147 -10.155.235.210 -10.123.80.140 -10.178.198.97 -10.156.242.55 -10.187.165.92 -10.145.145.57 -10.149.104.109 -10.170.238.215 -10.91.147.19 -10.146.66.45 -10.90.133.113 -10.85.89.218 -10.86.18.62 -10.170.241.199 -10.176.221.247 -10.176.221.247 -10.169.255.210 -10.122.252.23 -10.121.188.30 -10.85.7.243 -10.157.207.251 -10.184.217.203 -10.185.67.197 -10.151.178.216 -10.84.151.48 -10.153.93.82 -10.179.235.28 -10.172.20.47 -10.176.175.119 -10.184.91.45 -10.95.5.109 -10.186.60.244 -10.184.91.45 -10.146.213.92 -10.120.137.110 -10.120.137.110 -10.173.119.236 -10.175.130.131 -10.85.245.109 -10.168.142.202 -10.147.66.34 -10.121.11.184 -10.177.97.252 -10.173.5.59 -10.122.211.114 -10.90.86.21 -10.90.86.21 -10.186.178.69 -10.184.2.253 -10.159.153.246 -10.186.132.107 -10.170.224.65 -10.90.178.9 -10.85.89.218 -10.184.5.195 -10.86.18.62 -10.155.230.93 -10.121.37.17 -10.177.177.173 -10.177.177.173 -10.185.198.156 -10.88.204.248 -10.147.140.87 -10.173.158.251 -10.123.170.54 -10.88.204.248 -10.186.133.28 -10.87.16.136 -10.184.129.29 -10.169.255.210 -10.184.176.70 -10.179.251.234 -10.170.105.145 -10.150.112.220 -10.161.146.110 -10.157.173.134 -10.122.86.199 -10.146.66.83 -10.85.56.175 -10.158.114.195 -10.122.27.216 -10.186.123.127 -10.174.3.152 -10.168.80.39 -10.98.200.43 -10.157.236.62 -10.121.45.90 -10.184.2.253 -10.88.132.110 -10.90.178.9 -10.187.132.168 -10.184.167.136 -10.168.80.39 -10.179.176.113 -10.87.82.118 -10.186.60.244 -10.173.20.254 -10.144.90.219 -10.91.28.32 -10.86.31.223 -10.176.201.171 -10.176.201.171 -10.85.60.133 -10.177.97.252 -10.155.163.25 -10.186.133.28 -10.87.82.118 -10.173.158.251 -10.184.129.29 -10.123.85.91 -108.115.181.224 -10.184.176.70 -10.155.246.200 -10.156.90.230 -10.152.57.49 -10.153.0.219 -10.160.53.104 -10.169.199.125 -10.155.93.246 -10.178.1.102 -10.174.153.117 -10.145.60.177 -10.89.89.79 -10.85.56.175 -10.186.123.127 -10.91.22.183 -10.168.83.177 -10.177.170.216 -10.98.200.43 -10.173.71.214 -10.155.40.51 -10.120.137.110 -10.150.91.103 -10.185.57.185 -10.185.57.185 -10.150.51.219 -10.164.120.186 -10.157.163.53 -10.153.120.100 -10.173.20.254 -10.187.209.102 -10.99.226.145 -10.187.132.168 -10.153.252.194 -10.121.100.242 -10.186.127.115 -10.122.173.236 -10.122.171.246 -10.88.89.88 -10.122.11.175 -10.186.212.134 -10.88.59.8 -10.89.29.115 -10.154.224.252 -10.171.18.43 -10.123.33.21 -10.84.77.86 -10.179.75.61 -10.167.129.50 -10.89.62.241 -10.97.66.133 -10.121.37.17 -10.89.62.241 -10.179.176.113 -10.159.39.202 -10.87.120.201 -10.123.170.54 -10.85.69.60 -10.88.186.201 -10.94.48.216 -10.86.79.167 -10.186.60.244 -10.88.63.200 -10.88.63.200 -10.99.66.34 -10.121.211.216 -10.89.89.79 -10.148.36.45 -10.149.191.81 -10.186.236.22 -10.186.236.22 -10.174.96.92 -10.122.242.60 -10.87.73.240 -10.121.223.194 -10.121.5.92 -10.87.73.240 -10.168.165.97 -10.186.174.30 -10.185.94.54 -10.149.197.224 -10.146.132.200 -10.157.196.99 -10.120.7.193 -10.185.195.228 -10.89.138.237 -10.89.138.237 -10.122.27.216 -10.185.21.151 -10.147.131.243 -10.186.206.159 -10.187.184.50 -10.179.138.161 -10.99.43.62 -10.154.112.152 -10.154.112.152 -10.177.59.94 -10.152.32.227 -10.99.103.72 -10.85.157.9 -10.85.157.9 -10.121.45.90 -10.184.20.120 -10.156.3.224 -10.184.11.153 -10.156.3.224 -10.88.89.88 -10.184.11.153 -10.152.126.112 -10.149.94.44 -10.121.197.105 -10.123.33.21 -10.169.38.85 -10.178.196.196 -10.122.112.71 -10.159.77.23 -10.90.57.155 -10.171.18.43 -10.150.152.52 -10.86.254.51 -10.154.27.171 -10.97.66.133 -10.149.63.58 -10.169.199.125 -10.186.34.155 -10.169.38.85 -10.87.117.85 -10.87.120.201 -10.88.186.201 -10.178.193.141 -10.169.140.40 -10.86.79.167 -10.177.17.60 -10.154.25.106 -10.144.154.223 -10.90.54.1 -10.170.241.199 -10.123.105.247 -10.169.46.197 -10.159.132.197 -10.90.249.242 -10.168.83.177 -10.173.185.64 -10.185.94.54 -10.186.174.30 -10.174.96.92 -10.144.66.5 -10.155.38.154 -10.123.175.128 -10.122.253.51 -10.186.186.198 -10.185.104.182 -10.149.98.49 -10.157.248.45 -10.185.148.20 -10.84.187.44 -10.85.105.184 -10.158.83.94 -10.98.218.30 -10.185.195.228 -10.91.190.241 -10.158.203.37 -10.186.248.46 -10.120.109.82 -10.120.137.110 -10.184.171.56 -10.184.171.56 -10.184.20.120 -108.119.185.220 -10.121.197.105 -10.186.232.241 -10.123.182.223 -10.122.183.49 -10.176.185.54 -10.122.183.49 -10.87.212.228 -10.90.151.105 -10.121.194.104 -10.90.151.105 -10.177.200.59 -10.177.63.37 -10.149.150.1 -10.123.201.145 -10.155.3.240 -10.87.117.85 -10.186.140.173 -10.122.11.175 -10.187.55.51 -10.98.106.225 -10.159.88.132 -10.86.254.51 -10.90.54.1 -10.90.249.242 -10.149.111.250 -10.187.157.200 -10.149.111.250 -10.121.47.88 -10.186.85.250 -10.121.37.17 -10.91.199.143 -10.147.95.50 -10.185.29.26 -10.178.196.196 -10.158.164.2 -10.184.121.230 -10.154.16.165 -10.123.170.54 -10.123.175.128 -10.122.253.51 -10.147.70.19 -10.186.97.185 -10.186.115.80 -10.88.97.124 -10.153.140.122 -10.159.4.17 -10.105.159.56 -10.91.190.241 -10.94.48.216 -10.172.138.201 -10.123.210.96 -10.172.138.201 -10.120.109.82 -10.146.14.234 -10.99.53.164 -10.146.169.164 -10.186.248.46 -10.185.4.151 -10.154.242.95 -10.153.60.212 -10.157.200.154 -10.91.113.30 -10.90.84.191 -10.120.7.193 -10.157.83.114 -10.147.89.174 -10.84.12.108 -10.172.95.74 -10.88.239.25 -10.87.106.58 -10.150.8.76 -10.174.16.172 -10.173.145.191 -10.186.127.115 -10.173.145.191 -10.90.22.188 -10.123.139.156 -10.87.82.115 -10.95.233.119 -10.148.199.219 -10.177.63.37 -10.149.105.161 -10.97.154.146 -10.148.36.75 -10.174.187.15 -10.175.161.179 -10.174.187.15 -10.175.161.179 -10.87.82.115 -107.34.5.77 -108.119.77.220 -10.157.178.58 -10.175.163.61 -10.167.91.27 -10.166.221.58 -10.166.221.58 -10.177.104.14 -10.185.29.26 -10.159.199.89 -10.86.29.105 -10.187.157.200 -10.184.121.230 -10.164.61.128 -10.86.29.105 -10.85.38.37 -10.145.220.199 -10.186.85.250 -10.120.220.21 -10.91.79.22 -10.148.252.117 -10.157.236.62 -10.159.186.146 -10.87.102.57 -10.86.189.239 -10.88.97.124 -10.153.201.22 -10.145.50.55 -10.91.22.183 -10.98.27.195 -10.184.185.225 -10.152.233.66 -10.157.217.243 -10.123.210.96 -10.91.8.131 -10.184.4.195 -10.155.93.246 -10.186.97.28 -10.88.179.163 -10.91.95.2 -10.90.254.192 -10.91.95.2 -10.166.214.42 -10.99.53.164 -10.90.84.191 -10.122.201.54 -10.84.12.108 -10.86.83.139 -10.88.239.25 -10.87.106.58 -10.121.250.120 -10.186.233.107 -10.123.139.156 -10.187.39.60 -10.187.210.188 -10.184.224.137 -10.158.158.79 -10.91.169.242 -10.91.169.242 -10.121.175.224 -10.91.199.143 -10.175.215.17 -10.122.183.49 -10.155.85.64 -10.156.127.22 -10.88.4.22 -10.164.61.128 -10.122.89.26 -10.91.79.22 -10.151.94.91 -10.150.107.203 -10.149.126.245 -10.89.86.103 -10.151.27.87 -10.185.229.204 -10.145.97.184 -10.145.145.100 -10.177.2.84 -10.154.16.165 -10.85.103.2 -10.88.89.237 -10.88.89.237 -10.98.27.195 -10.145.138.114 -10.121.65.171 -10.85.33.246 -10.91.8.131 -10.121.37.17 -10.158.173.3 -10.90.150.222 -10.84.151.48 -10.151.67.172 -10.148.193.91 -10.178.155.199 -10.123.170.54 -10.169.212.193 -10.148.193.91 -10.176.170.148 -10.185.148.20 -10.186.186.198 -10.90.254.192 -10.185.124.240 -10.86.217.233 -10.86.83.139 -10.95.233.119 -10.177.123.11 -10.157.52.116 -10.170.189.248 -10.145.152.235 -10.122.216.74 -10.151.68.71 -10.97.14.129 -10.187.39.60 -10.184.227.115 -10.187.210.188 -10.96.16.252 -10.184.224.137 -10.150.170.55 -10.154.250.190 -10.89.107.135 -10.175.215.17 -10.84.159.171 -10.88.34.250 -10.184.238.250 -10.88.4.22 -10.175.90.228 -10.163.196.156 -10.158.68.159 -10.187.14.109 -10.184.180.90 -10.153.58.241 -10.150.219.53 -10.185.240.34 -10.97.175.248 -10.154.177.173 -10.87.234.179 -10.95.31.172 -10.95.31.172 diff --git a/splunk_eventgen/samples/ip_address.sample b/splunk_eventgen/samples/ip_address.sample deleted file mode 100644 index 1d8602d9..00000000 --- a/splunk_eventgen/samples/ip_address.sample +++ /dev/null @@ -1,50 +0,0 @@ -10.11.36.1 -10.11.36.2 -10.11.36.3 -10.11.36.4 -10.11.36.5 -10.11.36.6 -10.11.36.7 -10.11.36.8 -10.11.36.9 -10.11.36.10 -10.11.36.11 -10.11.36.12 -10.11.36.13 -10.11.36.14 -10.11.36.15 -10.11.36.16 -10.11.36.17 -10.11.36.18 -10.11.36.19 -10.11.36.20 -10.11.36.21 -10.11.36.22 -10.11.36.23 -10.11.36.24 -10.11.36.25 -10.11.36.26 -10.11.36.27 -10.11.36.28 -10.11.36.29 -10.11.36.30 -10.11.36.31 -10.11.36.32 -10.11.36.33 -10.11.36.34 -10.11.36.35 -10.11.36.36 -10.11.36.37 -10.11.36.38 -10.11.36.39 -10.11.36.40 -10.11.36.41 -10.11.36.42 -10.11.36.43 -10.11.36.44 -10.11.36.45 -10.11.36.46 -10.11.36.47 -10.11.36.48 -10.11.36.49 -10.11.36.50 \ No newline at end of file diff --git a/splunk_eventgen/samples/lastNames.sample b/splunk_eventgen/samples/lastNames.sample deleted file mode 100644 index 8e263542..00000000 --- a/splunk_eventgen/samples/lastNames.sample +++ /dev/null @@ -1,1002 +0,0 @@ -SMITH -JOHNSON -WILLIAMS -JONES -BROWN -DAVIS -MILLER -WILSON -MOORE -TAYLOR -ANDERSON -THOMAS -JACKSON -WHITE -HARRIS -MARTIN -THOMPSON -GARCIA -MARTINEZ -ROBINSON -CLARK -RODRIGUEZ -LEWIS -LEE -WALKER -HALL -ALLEN -YOUNG -HERNANDEZ -KING -WRIGHT -LOPEZ -HILL -SCOTT -GREEN -ADAMS -BAKER -GONZALEZ -NELSON -CARTER -MITCHELL -PEREZ -ROBERTS -TURNER -PHILLIPS -CAMPBELL -PARKER -EVANS -EDWARDS -COLLINS -STEWART -SANCHEZ -MORRIS -ROGERS -REED -COOK -MORGAN -BELL -MURPHY -BAILEY -RIVERA -COOPER -RICHARDSON -COX -HOWARD -WARD -TORRES -PETERSON -GRAY -RAMIREZ -JAMES -WATSON -BROOKS -KELLY -SANDERS -PRICE -BENNETT -WOOD -BARNES -ROSS -HENDERSON -COLEMAN -JENKINS -PERRY -POWELL -LONG -PATTERSON -HUGHES -FLORES -WASHINGTON -BUTLER -SIMMONS -FOSTER -GONZALES -BRYANT -ALEXANDER -RUSSELL -GRIFFIN -DIAZ -HAYES -MYERS -FORD -HAMILTON -GRAHAM -SULLIVAN -WALLACE -WOODS -COLE -WEST -JORDAN -OWENS -REYNOLDS -FISHER -ELLIS -HARRISON -GIBSON -MCDONALD -CRUZ -MARSHALL -ORTIZ -GOMEZ -MURRAY -FREEMAN -WELLS -WEBB -SIMPSON -STEVENS -TUCKER -PORTER -HUNTER -HICKS -CRAWFORD -HENRY -BOYD -MASON -MORALES -KENNEDY -WARREN -DIXON -RAMOS -REYES -BURNS -GORDON -SHAW -HOLMES -RICE -ROBERTSON -HUNT -BLACK -DANIELS -PALMER -MILLS -NICHOLS -GRANT -KNIGHT -FERGUSON -ROSE -STONE -HAWKINS -DUNN -PERKINS -HUDSON -SPENCER -GARDNER -STEPHENS -PAYNE -PIERCE -BERRY -MATTHEWS -ARNOLD -WAGNER -WILLIS -RAY -WATKINS -OLSON -CARROLL -DUNCAN -SNYDER -HART -CUNNINGHAM -BRADLEY -LANE -ANDREWS -RUIZ -HARPER -FOX -RILEY -ARMSTRONG -CARPENTER -WEAVER -GREENE -LAWRENCE -ELLIOTT -CHAVEZ -SIMS -AUSTIN -PETERS -KELLEY -FRANKLIN -LAWSON -FIELDS -GUTIERREZ -RYAN -SCHMIDT -CARR -VASQUEZ -CASTILLO -WHEELER -CHAPMAN -OLIVER -MONTGOMERY -RICHARDS -WILLIAMSON -JOHNSTON -BANKS -MEYER -BISHOP -MCCOY -HOWELL -ALVAREZ -MORRISON -HANSEN -FERNANDEZ -GARZA -HARVEY -LITTLE -BURTON -STANLEY -NGUYEN -GEORGE -JACOBS -REID -KIM -FULLER -LYNCH -DEAN -GILBERT -GARRETT -ROMERO -WELCH -LARSON -FRAZIER -BURKE -HANSON -DAY -MENDOZA -MORENO -BOWMAN -MEDINA -FOWLER -BREWER -HOFFMAN -CARLSON -SILVA -PEARSON -HOLLAND -DOUGLAS -FLEMING -JENSEN -VARGAS -BYRD -DAVIDSON -HOPKINS -MAY -TERRY -HERRERA -WADE -SOTO -WALTERS -CURTIS -NEAL -CALDWELL -LOWE -JENNINGS -BARNETT -GRAVES -JIMENEZ -HORTON -SHELTON -BARRETT -OBRIEN -CASTRO -SUTTON -GREGORY -MCKINNEY -LUCAS -MILES -CRAIG -RODRIQUEZ -CHAMBERS -HOLT -LAMBERT -FLETCHER -WATTS -BATES -HALE -RHODES -PENA -BECK -NEWMAN -HAYNES -MCDANIEL -MENDEZ -BUSH -VAUGHN -PARKS -DAWSON -SANTIAGO -NORRIS -HARDY -LOVE -STEELE -CURRY -POWERS -SCHULTZ -BARKER -GUZMAN -PAGE -MUNOZ -BALL -KELLER -CHANDLER -WEBER -LEONARD -WALSH -LYONS -RAMSEY -WOLFE -SCHNEIDER -MULLINS -BENSON -SHARP -BOWEN -DANIEL -BARBER -CUMMINGS -HINES -BALDWIN -GRIFFITH -VALDEZ -HUBBARD -SALAZAR -REEVES -WARNER -STEVENSON -BURGESS -SANTOS -TATE -CROSS -GARNER -MANN -MACK -MOSS -THORNTON -DENNIS -MCGEE -FARMER -DELGADO -AGUILAR -VEGA -GLOVER -MANNING -COHEN -HARMON -RODGERS -ROBBINS -NEWTON -TODD -BLAIR -HIGGINS -INGRAM -REESE -CANNON -STRICKLAND -TOWNSEND -POTTER -GOODWIN -WALTON -ROWE -HAMPTON -ORTEGA -PATTON -SWANSON -JOSEPH -FRANCIS -GOODMAN -MALDONADO -YATES -BECKER -ERICKSON -HODGES -RIOS -CONNER -ADKINS -WEBSTER -NORMAN -MALONE -HAMMOND -FLOWERS -COBB -MOODY -QUINN -BLAKE -MAXWELL -POPE -FLOYD -OSBORNE -PAUL -MCCARTHY -GUERRERO -LINDSEY -ESTRADA -SANDOVAL -GIBBS -TYLER -GROSS -FITZGERALD -STOKES -DOYLE -SHERMAN -SAUNDERS -WISE -COLON -GILL -ALVARADO -GREER -PADILLA -SIMON -WATERS -NUNEZ -BALLARD -SCHWARTZ -MCBRIDE -HOUSTON -CHRISTENSEN -KLEIN -PRATT -BRIGGS -PARSONS -MCLAUGHLIN -ZIMMERMAN -FRENCH -BUCHANAN -MORAN -COPELAND -ROY -PITTMAN -BRADY -MCCORMICK -HOLLOWAY -BROCK -POOLE -FRANK -LOGAN -OWEN -BASS -MARSH -DRAKE -WONG -JEFFERSON -PARK -MORTON -ABBOTT -SPARKS -PATRICK -NORTON -HUFF -CLAYTON -MASSEY -LLOYD -FIGUEROA -CARSON -BOWERS -ROBERSON -BARTON -TRAN -LAMB -HARRINGTON -CASEY -BOONE -CORTEZ -CLARKE -MATHIS -SINGLETON -WILKINS -CAIN -BRYAN -UNDERWOOD -HOGAN -MCKENZIE -COLLIER -LUNA -PHELPS -MCGUIRE -ALLISON -BRIDGES -WILKERSON -NASH -SUMMERS -ATKINS -WILCOX -PITTS -CONLEY -MARQUEZ -BURNETT -RICHARD -COCHRAN -CHASE -DAVENPORT -HOOD -GATES -CLAY -AYALA -SAWYER -ROMAN -VAZQUEZ -DICKERSON -HODGE -ACOSTA -FLYNN -ESPINOZA -NICHOLSON -MONROE -WOLF -MORROW -KIRK -RANDALL -ANTHONY -WHITAKER -OCONNOR -SKINNER -WARE -MOLINA -KIRBY -HUFFMAN -BRADFORD -CHARLES -GILMORE -DOMINGUEZ -ONEAL -BRUCE -LANG -COMBS -KRAMER -HEATH -HANCOCK -GALLAGHER -GAINES -SHAFFER -SHORT -WIGGINS -MATHEWS -MCCLAIN -FISCHER -WALL -SMALL -MELTON -HENSLEY -BOND -DYER -CAMERON -GRIMES -CONTRERAS -CHRISTIAN -WYATT -BAXTER -SNOW -MOSLEY -SHEPHERD -LARSEN -HOOVER -BEASLEY -GLENN -PETERSEN -WHITEHEAD -MEYERS -KEITH -GARRISON -VINCENT -SHIELDS -HORN -SAVAGE -OLSEN -SCHROEDER -HARTMAN -WOODARD -MUELLER -KEMP -DELEON -BOOTH -PATEL -CALHOUN -WILEY -EATON -CLINE -NAVARRO -HARRELL -LESTER -HUMPHREY -PARRISH -DURAN -HUTCHINSON -HESS -DORSEY -BULLOCK -ROBLES -BEARD -DALTON -AVILA -VANCE -RICH -BLACKWELL -YORK -JOHNS -BLANKENSHIP -TREVINO -SALINAS -CAMPOS -PRUITT -MOSES -CALLAHAN -GOLDEN -MONTOYA -HARDIN -GUERRA -MCDOWELL -CAREY -STAFFORD -GALLEGOS -HENSON -WILKINSON -BOOKER -MERRITT -MIRANDA -ATKINSON -ORR -DECKER -HOBBS -PRESTON -TANNER -KNOX -PACHECO -STEPHENSON -GLASS -ROJAS -SERRANO -MARKS -HICKMAN -ENGLISH -SWEENEY -STRONG -PRINCE -MCCLURE -CONWAY -WALTER -ROTH -MAYNARD -FARRELL -LOWERY -HURST -NIXON -WEISS -TRUJILLO -ELLISON -SLOAN -JUAREZ -WINTERS -MCLEAN -RANDOLPH -LEON -BOYER -VILLARREAL -MCCALL -GENTRY -CARRILLO -KENT -AYERS -LARA -SHANNON -SEXTON -PACE -HULL -LEBLANC -BROWNING -VELASQUEZ -LEACH -CHANG -HOUSE -SELLERS -HERRING -NOBLE -FOLEY -BARTLETT -MERCADO -LANDRY -DURHAM -WALLS -BARR -MCKEE -BAUER -RIVERS -EVERETT -BRADSHAW -PUGH -VELEZ -RUSH -ESTES -DODSON -MORSE -SHEPPARD -WEEKS -CAMACHO -BEAN -BARRON -LIVINGSTON -MIDDLETON -SPEARS -BRANCH -BLEVINS -CHEN -KERR -MCCONNELL -HATFIELD -HARDING -ASHLEY -SOLIS -HERMAN -FROST -GILES -BLACKBURN -WILLIAM -PENNINGTON -WOODWARD -FINLEY -MCINTOSH -KOCH -BEST -SOLOMON -MCCULLOUGH -DUDLEY -NOLAN -BLANCHARD -RIVAS -BRENNAN -MEJIA -KANE -BENTON -JOYCE -BUCKLEY -HALEY -VALENTINE -MADDOX -RUSSO -MCKNIGHT -BUCK -MOON -MCMILLAN -CROSBY -BERG -DOTSON -MAYS -ROACH -CHURCH -CHAN -RICHMOND -MEADOWS -FAULKNER -ONEILL -KNAPP -KLINE -BARRY -OCHOA -JACOBSON -GAY -AVERY -HENDRICKS -HORNE -SHEPARD -HEBERT -CHERRY -CARDENAS -MCINTYRE -WHITNEY -WALLER -HOLMAN -DONALDSON -CANTU -TERRELL -MORIN -GILLESPIE -FUENTES -TILLMAN -SANFORD -BENTLEY -PECK -KEY -SALAS -ROLLINS -GAMBLE -DICKSON -BATTLE -SANTANA -CABRERA -CERVANTES -HOWE -HINTON -HURLEY -SPENCE -ZAMORA -YANG -MCNEIL -SUAREZ -CASE -PETTY -GOULD -MCFARLAND -SAMPSON -CARVER -BRAY -ROSARIO -MACDONALD -STOUT -HESTER -MELENDEZ -DILLON -FARLEY -HOPPER -GALLOWAY -POTTS -BERNARD -JOYNER -STEIN -AGUIRRE -OSBORN -MERCER -BENDER -FRANCO -ROWLAND -SYKES -BENJAMIN -TRAVIS -PICKETT -CRANE -SEARS -MAYO -DUNLAP -HAYDEN -WILDER -MCKAY -COFFEY -MCCARTY -EWING -COOLEY -VAUGHAN -BONNER -COTTON -HOLDER -STARK -FERRELL -CANTRELL -FULTON -LYNN -LOTT -CALDERON -ROSA -POLLARD -HOOPER -BURCH -MULLEN -FRY -RIDDLE -LEVY -DAVID -DUKE -ODONNELL -GUY -MICHAEL -BRITT -FREDERICK -DAUGHERTY -BERGER -DILLARD -ALSTON -JARVIS -FRYE -RIGGS -CHANEY -ODOM -DUFFY -FITZPATRICK -VALENZUELA -MERRILL -MAYER -ALFORD -MCPHERSON -ACEVEDO -DONOVAN -BARRERA -ALBERT -COTE -REILLY -COMPTON -RAYMOND -MOONEY -MCGOWAN -CRAFT -CLEVELAND -CLEMONS -WYNN -NIELSEN -BAIRD -STANTON -SNIDER -ROSALES -BRIGHT -WITT -STUART -HAYS -HOLDEN -RUTLEDGE -KINNEY -CLEMENTS -CASTANEDA -SLATER -HAHN -EMERSON -CONRAD -BURKS -DELANEY -PATE -LANCASTER -SWEET -JUSTICE -TYSON -SHARPE -WHITFIELD -TALLEY -MACIAS -IRWIN -BURRIS -RATLIFF -MCCRAY -MADDEN -KAUFMAN -BEACH -GOFF -CASH -BOLTON -MCFADDEN -LEVINE -GOOD -BYERS -KIRKLAND -KIDD -WORKMAN -CARNEY -DALE -MCLEOD -HOLCOMB -ENGLAND -FINCH -HEAD -BURT -HENDRIX -SOSA -HANEY -FRANKS -SARGENT -NIEVES -DOWNS -RASMUSSEN -BIRD -HEWITT -LINDSAY -LE -FOREMAN -VALENCIA -ONEIL -DELACRUZ -VINSON -DEJESUS -HYDE -FORBES -GILLIAM -GUTHRIE -WOOTEN -HUBER -BARLOW -BOYLE -MCMAHON -BUCKNER -ROCHA -PUCKETT -LANGLEY -KNOWLES -COOKE -VELAZQUEZ -WHITLEY -NOEL -VANG - -Read more at http://names.mongabay.com/most_common_surnames.htm#CyreE4PYIvmxDJ5K.99 \ No newline at end of file diff --git a/splunk_eventgen/samples/linux_arch.sample b/splunk_eventgen/samples/linux_arch.sample deleted file mode 100644 index 33ef3111..00000000 --- a/splunk_eventgen/samples/linux_arch.sample +++ /dev/null @@ -1,25 +0,0 @@ -i386 -i686 -x86_64 -ia64 -alpha -amd64 -arm -armeb -armel -hppa -m32r -m68k -mips -mipsel -powerpc -ppc64 -s390 -s390x -sh3 -sh3eb -sh4 -sh4eb -sparc -sparcv8 -sparcv9 \ No newline at end of file diff --git a/splunk_eventgen/samples/mac_address.sample b/splunk_eventgen/samples/mac_address.sample deleted file mode 100644 index 37e425c9..00000000 --- a/splunk_eventgen/samples/mac_address.sample +++ /dev/null @@ -1,50 +0,0 @@ -19:61:3c:3e:20:84 -c7:df:23:1a:e8:ba -ba:b7:72:7a:16:30 -52:70:fa:52:7c:e4 -6a:83:f8:c6:5a:fc -e2:64:ae:81:26:f7 -ab:1a:41:74:87:2c -2f:29:25:a5:78:de -fb:69:33:d1:44:a4 -ac:d7:f5:9c:16:50 -67:c4:0e:fe:1a:34 -1a:ae:35:d8:b8:52 -af:fd:16:4f:9e:d8 -4a:43:e4:f5:3a:ae -0b:4a:fe:06:36:92 -73:09:b0:ec:6a:35 -d9:9d:e8:dc:91:d3 -76:a1:f8:7a:5b:6c -ec:ab:17:6c:17:c6 -92:90:55:51:61:31 -03:53:39:5b:ed:ab -da:b9:81:e1:17:01 -8b:66:79:4a:bf:c5 -f0:6c:88:2a:34:52 -74:c2:0a:56:49:99 -60:6e:74:df:78:fb -c0:eb:cf:50:74:6d -ad:7b:3d:db:49:8b -d8:9b:1f:b9:e6:01 -de:09:a2:ae:7a:93 -01:30:f9:d0:79:13 -20:c5:8e:0b:9d:a3 -ca:b6:07:cb:eb:a4 -ab:53:c2:c6:97:6b -84:df:af:01:a9:a5 -23:15:be:bc:d1:7f -d3:da:83:05:5e:2a -04:83:e5:65:6b:2c -5b:68:1e:b8:1d:25 -72:3d:78:de:38:ec -44:23:aa:bc:b0:b0 -3e:27:1c:ce:52:1f -88:7d:9a:11:64:de -81:4e:78:df:ad:d7 -59:7b:7f:54:da:c9 -8c:37:db:f0:2b:25 -d2:54:56:e0:f2:d9 -7e:70:7a:94:ca:76 -4b:a0:b6:18:fb:d0 -d0:ef:08:18:0d:8d \ No newline at end of file diff --git a/splunk_eventgen/samples/malicious_domains.sample b/splunk_eventgen/samples/malicious_domains.sample deleted file mode 100644 index cb292097..00000000 --- a/splunk_eventgen/samples/malicious_domains.sample +++ /dev/null @@ -1,5 +0,0 @@ -www.theflyingpoodles.com -www.partychimp.com -www.truepants.ru -www.makerealcashnow.com -www.freepetcaretips.com \ No newline at end of file diff --git a/splunk_eventgen/samples/markets.sample b/splunk_eventgen/samples/markets.sample deleted file mode 100644 index ccb98634..00000000 --- a/splunk_eventgen/samples/markets.sample +++ /dev/null @@ -1 +0,0 @@ -1101,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1102,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1103,SPRINGFIELD,MA,42.1029,-72.588735,HAMPDEN 1104,SPRINGFIELD,MA,42.128848,-72.577769,HAMPDEN 1105,SPRINGFIELD,MA,42.099931,-72.578312,HAMPDEN 1107,SPRINGFIELD,MA,42.117907,-72.606544,HAMPDEN 1108,SPRINGFIELD,MA,42.085314,-72.558432,HAMPDEN 1109,SPRINGFIELD,MA,42.114455,-72.554349,HAMPDEN 1111,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1115,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1118,SPRINGFIELD,MA,42.092937,-72.527445,HAMPDEN 1119,SPRINGFIELD,MA,42.12473,-72.51211,HAMPDEN 1128,SPRINGFIELD,MA,42.094397,-72.488903,HAMPDEN 1129,SPRINGFIELD,MA,42.122263,-72.487622,HAMPDEN 1133,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1138,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1139,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1144,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1151,SPRINGFIELD,MA,42.153225,-72.505048,HAMPDEN 1152,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1195,SPRINGFIELD,MA,42.1015,-72.5898,HAMPDEN 1199,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1601,WORCESTER,MA,42.2621,-71.8034,WORCESTER 1602,WORCESTER,MA,42.270251,-71.841678,WORCESTER 1603,WORCESTER,MA,42.245033,-71.837995,WORCESTER 1604,WORCESTER,MA,42.254084,-71.774626,WORCESTER 1605,WORCESTER,MA,42.289391,-71.788795,WORCESTER 1606,WORCESTER,MA,42.311029,-71.795774,WORCESTER 1607,WORCESTER,MA,42.230294,-71.793837,WORCESTER 1608,WORCESTER,MA,42.262425,-71.800262,WORCESTER 1609,WORCESTER,MA,42.275387,-71.817456,WORCESTER 1610,WORCESTER,MA,42.249186,-71.810798,WORCESTER 1613,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1614,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1615,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1653,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1654,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1655,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1801,WOBURN,MA,42.482894,-71.157404,MIDDLESEX 1806,WOBURN,MA,42.4791,-71.1527,MIDDLESEX 1807,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1808,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1813,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1815,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1888,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1901,LYNN,MA,42.463378,-70.945516,ESSEX 1902,LYNN,MA,42.469814,-70.941989,ESSEX 1903,LYNN,MA,42.4647,-70.9467,ESSEX 1904,LYNN,MA,42.487453,-70.962798,ESSEX 1905,LYNN,MA,42.46453,-70.973825,ESSEX 1910,LYNN,MA,42.4647,-70.9467,ESSEX 2108,BOSTON,MA,42.357603,-71.068432,SUFFOLK 2109,BOSTON,MA,42.362963,-71.053386,SUFFOLK 2110,BOSTON,MA,42.357636,-71.051417,SUFFOLK 2111,BOSTON,MA,42.350348,-71.0629,SUFFOLK 2112,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2113,BOSTON,MA,42.365656,-71.055958,SUFFOLK 2114,BOSTON,MA,42.361111,-71.06823,SUFFOLK 2115,BOSTON,MA,42.342706,-71.092215,SUFFOLK 2116,BOSTON,MA,42.349201,-71.076798,SUFFOLK 2117,BOSTON,MA,42.3503,-71.0762,SUFFOLK 2118,BOSTON,MA,42.340154,-71.075627,SUFFOLK 2119,BOSTON,MA,42.322414,-71.086923,SUFFOLK 2120,BOSTON,MA,42.332844,-71.097978,SUFFOLK 2121,BOSTON,MA,42.307503,-71.08305,SUFFOLK 2122,BOSTON,MA,42.297278,-71.058304,SUFFOLK 2123,BOSTON,MA,42.345,-71.0876,SUFFOLK 2124,BOSTON,MA,42.287984,-71.072898,SUFFOLK 2125,BOSTON,MA,42.315305,-71.061924,SUFFOLK 2127,BOSTON,MA,42.333454,-71.043792,SUFFOLK 2128,BOSTON,MA,42.378137,-71.028682,SUFFOLK 2133,BOSTON,MA,42.3573,-71.065,SUFFOLK 2138,CAMBRIDGE,MA,42.377045,-71.125611,MIDDLESEX 2139,CAMBRIDGE,MA,42.364688,-71.104155,MIDDLESEX 2140,CAMBRIDGE,MA,42.391366,-71.129379,MIDDLESEX 2141,CAMBRIDGE,MA,42.370701,-71.088277,MIDDLESEX 2142,CAMBRIDGE,MA,42.362025,-71.083011,MIDDLESEX 2163,BOSTON,MA,42.364005,-71.141879,SUFFOLK 2196,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2199,BOSTON,MA,42.347873,-71.082543,SUFFOLK 2201,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2203,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2204,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2205,BOSTON,MA,42.348,-71.0551,SUFFOLK 2206,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2207,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2210,BOSTON,MA,42.348921,-71.046511,SUFFOLK 2211,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2212,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2215,BOSTON,MA,42.347088,-71.102689,SUFFOLK 2216,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2217,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2222,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2238,CAMBRIDGE,MA,42.3731,-71.124,MIDDLESEX 2239,CAMBRIDGE,MA,42.3662,-71.1063,MIDDLESEX 2241,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2266,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2283,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2284,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2293,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2295,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2297,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2298,BOSTON,MA,42.3422,-71.0506,SUFFOLK 2740,NEW BEDFORD,MA,41.634749,-70.9372,BRISTOL 2741,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2742,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2744,NEW BEDFORD,MA,41.612716,-70.916746,BRISTOL 2745,NEW BEDFORD,MA,41.691337,-70.935545,BRISTOL 2746,NEW BEDFORD,MA,41.659972,-70.93243,BRISTOL 2901,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2902,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2903,PROVIDENCE,RI,41.820002,-71.415801,PROVIDENCE 2904,PROVIDENCE,RI,41.860461,-71.438102,PROVIDENCE 2905,PROVIDENCE,RI,41.786568,-71.403146,PROVIDENCE 2906,PROVIDENCE,RI,41.835104,-71.397065,PROVIDENCE 2907,PROVIDENCE,RI,41.800842,-71.424039,PROVIDENCE 2908,PROVIDENCE,RI,41.838294,-71.437684,PROVIDENCE 2909,PROVIDENCE,RI,41.816777,-71.448165,PROVIDENCE 2912,PROVIDENCE,RI,41.825833,-71.400833,PROVIDENCE 2918,PROVIDENCE,RI,41.8454,-71.4398,PROVIDENCE 2940,PROVIDENCE,RI,41.8238,-71.4133,PROVIDENCE 3101,MANCHESTER,NH,42.992858,-71.463255,HILLSBOROUGH 3102,MANCHESTER,NH,42.99442,-71.488433,HILLSBOROUGH 3103,MANCHESTER,NH,42.965563,-71.449325,HILLSBOROUGH 3104,MANCHESTER,NH,43.007307,-71.448233,HILLSBOROUGH 3105,MANCHESTER,NH,42.9925,-71.4635,HILLSBOROUGH 3107,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3108,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3109,MANCHESTER,NH,42.971349,-71.413474,HILLSBOROUGH 3111,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 4101,PORTLAND,ME,43.660564,-70.258864,CUMBERLAND 4102,PORTLAND,ME,43.660168,-70.28981,CUMBERLAND 4103,PORTLAND,ME,43.687568,-70.2876,CUMBERLAND 4104,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4109,PORTLAND,ME,43.674971,-70.202201,CUMBERLAND 4112,PORTLAND,ME,43.6613,-70.2558,CUMBERLAND 4122,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4123,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4124,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 5601,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5602,MONTPELIER,VT,44.264082,-72.576992,WASHINGTON 5603,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5604,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5609,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5620,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5633,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 6101,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6102,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6103,HARTFORD,CT,41.767196,-72.675966,HARTFORD 6104,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6105,HARTFORD,CT,41.769116,-72.701006,HARTFORD 6106,HARTFORD,CT,41.749841,-72.694734,HARTFORD 6107,WEST HARTFORD,CT,41.755553,-72.75322,HARTFORD 6110,WEST HARTFORD,CT,41.732566,-72.733691,HARTFORD 6112,HARTFORD,CT,41.79053,-72.69641,HARTFORD 6114,HARTFORD,CT,41.740293,-72.680726,HARTFORD 6115,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6117,WEST HARTFORD,CT,41.790021,-72.745689,HARTFORD 6119,WEST HARTFORD,CT,41.762765,-72.726799,HARTFORD 6120,HARTFORD,CT,41.78596,-72.675807,HARTFORD 6123,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6126,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6127,WEST HARTFORD,CT,41.7586,-72.7446,HARTFORD 6132,HARTFORD,CT,41.7813,-72.6968,HARTFORD 6133,WEST HARTFORD,CT,41.725,-72.7213,HARTFORD 6134,HARTFORD,CT,41.7431,-72.6834,HARTFORD 6137,WEST HARTFORD,CT,41.7619,-72.7425,HARTFORD 6140,HARTFORD,CT,41.7926,-72.678,HARTFORD 6141,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6142,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6143,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6144,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6145,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6146,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6147,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6150,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6151,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6152,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6153,HARTFORD,CT,41.6869,-72.7313,HARTFORD 6154,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6155,HARTFORD,CT,41.7692,-72.6861,HARTFORD 6156,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6160,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6161,HARTFORD,CT,41.6983,-72.6653,HARTFORD 6167,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6176,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6180,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6183,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6199,HARTFORD,CT,41.9266,-72.6546,HARTFORD 6501,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6502,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6503,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6504,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6505,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6506,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6507,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6508,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6509,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6510,NEW HAVEN,CT,41.308701,-72.92706,NEW HAVEN 6511,NEW HAVEN,CT,41.318364,-72.931771,NEW HAVEN 6513,NEW HAVEN,CT,41.314215,-72.882554,NEW HAVEN 6515,NEW HAVEN,CT,41.329301,-72.966445,NEW HAVEN 6519,NEW HAVEN,CT,41.296284,-72.937307,NEW HAVEN 6520,NEW HAVEN,CT,41.319,-72.9552,NEW HAVEN 6521,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6530,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6531,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6532,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6533,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6534,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6535,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6536,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6537,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6538,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6540,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6601,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6602,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6604,BRIDGEPORT,CT,41.179574,-73.201859,FAIRFIELD 6605,BRIDGEPORT,CT,41.166796,-73.216251,FAIRFIELD 6606,BRIDGEPORT,CT,41.20907,-73.208619,FAIRFIELD 6607,BRIDGEPORT,CT,41.178382,-73.165048,FAIRFIELD 6608,BRIDGEPORT,CT,41.189466,-73.181141,FAIRFIELD 6610,BRIDGEPORT,CT,41.200508,-73.168771,FAIRFIELD 6650,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6673,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6699,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6701,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6702,WATERBURY,CT,41.556568,-73.038545,NEW HAVEN 6703,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6704,WATERBURY,CT,41.575435,-73.031805,NEW HAVEN 6705,WATERBURY,CT,41.550328,-72.996268,NEW HAVEN 6706,WATERBURY,CT,41.536261,-73.03064,NEW HAVEN 6708,WATERBURY,CT,41.551102,-73.064495,NEW HAVEN 6710,WATERBURY,CT,41.567503,-73.046821,NEW HAVEN 6720,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6721,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6722,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6723,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6724,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6725,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6726,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6749,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6810,DANBURY,CT,41.391663,-73.453165,FAIRFIELD 6811,DANBURY,CT,41.423983,-73.471587,FAIRFIELD 6813,DANBURY,CT,41.3961,-73.4544,FAIRFIELD 6814,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6816,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6817,DANBURY,CT,41.3947,-73.4544,FAIRFIELD 6850,NORWALK,CT,41.12222,-73.435827,FAIRFIELD 6851,NORWALK,CT,41.132346,-73.405802,FAIRFIELD 6852,NORWALK,CT,41.1168,-73.4155,FAIRFIELD 6853,NORWALK,CT,41.070243,-73.439667,FAIRFIELD 6854,NORWALK,CT,41.095722,-73.428485,FAIRFIELD 6855,NORWALK,CT,41.101382,-73.401119,FAIRFIELD 6856,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6857,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6858,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6859,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6860,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6901,STAMFORD,CT,41.053083,-73.539039,FAIRFIELD 6902,STAMFORD,CT,41.052552,-73.537428,FAIRFIELD 6903,STAMFORD,CT,41.135235,-73.568356,FAIRFIELD 6904,STAMFORD,CT,41.0485,-73.5396,FAIRFIELD 6905,STAMFORD,CT,41.082576,-73.543757,FAIRFIELD 6906,STAMFORD,CT,41.069218,-73.523563,FAIRFIELD 6907,STAMFORD,CT,41.094206,-73.520297,FAIRFIELD 6910,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6911,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6912,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6913,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6914,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6920,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6921,STAMFORD,CT,41.0493,-73.5394,FAIRFIELD 6922,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6925,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6926,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6927,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6928,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 7097,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7101,NEWARK,NJ,40.7308,-74.1744,ESSEX 7102,NEWARK,NJ,40.73201,-74.176505,ESSEX 7103,NEWARK,NJ,40.736975,-74.196364,ESSEX 7104,NEWARK,NJ,40.766446,-74.1695,ESSEX 7105,NEWARK,NJ,40.727086,-74.156346,ESSEX 7106,NEWARK,NJ,40.741485,-74.233023,ESSEX 7107,NEWARK,NJ,40.760656,-74.18816,ESSEX 7108,NEWARK,NJ,40.723647,-74.201538,ESSEX 7112,NEWARK,NJ,40.71071,-74.213073,ESSEX 7114,NEWARK,NJ,40.708246,-74.189105,ESSEX 7175,NEWARK,NJ,40.7355,-74.1727,ESSEX 7182,NEWARK,NJ,40.731,-74.174,ESSEX 7184,NEWARK,NJ,40.7355,-74.1727,ESSEX 7188,NEWARK,NJ,40.7355,-74.1727,ESSEX 7189,NEWARK,NJ,40.7949,-74.1624,ESSEX 7191,NEWARK,NJ,40.7355,-74.1727,ESSEX 7192,NEWARK,NJ,40.7355,-74.1727,ESSEX 7193,NEWARK,NJ,40.7355,-74.1727,ESSEX 7194,NEWARK,NJ,40.7355,-74.1727,ESSEX 7195,NEWARK,NJ,40.7355,-74.1727,ESSEX 7198,NEWARK,NJ,40.7355,-74.1727,ESSEX 7199,NEWARK,NJ,40.7355,-74.1727,ESSEX 7302,JERSEY CITY,NJ,40.722126,-74.046878,HUDSON 7303,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7304,JERSEY CITY,NJ,40.717973,-74.075358,HUDSON 7305,JERSEY CITY,NJ,40.702007,-74.088998,HUDSON 7306,JERSEY CITY,NJ,40.732125,-74.066038,HUDSON 7307,JERSEY CITY,NJ,40.748167,-74.049752,HUDSON 7308,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7309,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7310,JERSEY CITY,NJ,40.732354,-74.043149,HUDSON 7311,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7395,JERSEY CITY,NJ,40.7282,-74.0776,HUDSON 7399,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7501,PATERSON,NJ,40.914273,-74.167141,PASSAIC 7502,PATERSON,NJ,40.919926,-74.193238,PASSAIC 7503,PATERSON,NJ,40.897046,-74.157272,PASSAIC 7504,PATERSON,NJ,40.912179,-74.145247,PASSAIC 7505,PATERSON,NJ,40.915581,-74.171947,PASSAIC 7509,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7510,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7513,PATERSON,NJ,40.906994,-74.152862,PASSAIC 7514,PATERSON,NJ,40.924764,-74.146717,PASSAIC 7522,PATERSON,NJ,40.925168,-74.178078,PASSAIC 7524,PATERSON,NJ,40.930916,-74.155457,PASSAIC 7533,PATERSON,NJ,40.8945,-74.1603,PASSAIC 7543,PATERSON,NJ,40.906,-74.1527,PASSAIC 7544,PATERSON,NJ,40.9335,-74.1545,PASSAIC 8601,TRENTON,NJ,40.2169,-74.7433,MERCER 8602,TRENTON,NJ,40.2169,-74.7433,MERCER 8603,TRENTON,NJ,40.2169,-74.7433,MERCER 8604,TRENTON,NJ,40.2169,-74.7433,MERCER 8605,TRENTON,NJ,40.2169,-74.7433,MERCER 8606,TRENTON,NJ,40.2169,-74.7433,MERCER 8607,TRENTON,NJ,40.2169,-74.7433,MERCER 8608,TRENTON,NJ,40.220437,-74.762237,MERCER 8609,TRENTON,NJ,40.223338,-74.742598,MERCER 8610,TRENTON,NJ,40.19894,-74.717205,MERCER 8611,TRENTON,NJ,40.207297,-74.751997,MERCER 8619,TRENTON,NJ,40.241977,-74.690377,MERCER 8620,TRENTON,NJ,40.178477,-74.671699,MERCER 8625,TRENTON,NJ,40.2712,-74.8179,MERCER 8629,TRENTON,NJ,40.219843,-74.732764,MERCER 8641,TRENTON,NJ,40.044026,-74.588195,BURLINGTON 8645,TRENTON,NJ,40.2169,-74.7433,MERCER 8646,TRENTON,NJ,40.2169,-74.7433,MERCER 8647,TRENTON,NJ,40.2169,-74.7433,MERCER 8648,TRENTON,NJ,40.277646,-74.723956,MERCER 8650,TRENTON,NJ,40.2169,-74.7433,MERCER 8666,TRENTON,NJ,40.2169,-74.7433,MERCER 8677,TRENTON,NJ,40.2169,-74.7433, 8690,TRENTON,NJ,40.223852,-74.659138,MERCER 8691,TRENTON,NJ,40.231785,-74.606262,MERCER 8695,TRENTON,NJ,40.2169,-74.7433,MERCER 8901,NEW BRUNSWICK,NJ,40.489073,-74.448193,MIDDLESEX 8903,NEW BRUNSWICK,NJ,40.5203,-74.4143,MIDDLESEX 8905,NEW BRUNSWICK,NJ,40.4587,-74.4648,MIDDLESEX 8906,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8922,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8933,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8988,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 8989,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 10001,NEW YORK,NY,40.74838,-73.996705,NEW YORK 10002,NEW YORK,NY,40.715231,-73.987681,NEW YORK 10003,NEW YORK,NY,40.731253,-73.989223,NEW YORK 10004,NEW YORK,NY,40.693604,-74.019025,NEW YORK 10005,NEW YORK,NY,40.705649,-74.008344,NEW YORK 10006,NEW YORK,NY,40.708451,-74.013474,NEW YORK 10007,NEW YORK,NY,40.713905,-74.007022,NEW YORK 10008,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10009,NEW YORK,NY,40.726188,-73.979591,NEW YORK 10010,NEW YORK,NY,40.737476,-73.981328,NEW YORK 10011,NEW YORK,NY,40.740225,-73.99963,NEW YORK 10012,NEW YORK,NY,40.72553,-73.998284,NEW YORK 10013,NEW YORK,NY,40.718511,-74.002529,NEW YORK 10014,NEW YORK,NY,40.73393,-74.005421,NEW YORK 10015,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10016,NEW YORK,NY,40.744281,-73.978134,NEW YORK 10017,NEW YORK,NY,40.75172,-73.970661,NEW YORK 10018,NEW YORK,NY,40.754713,-73.992503,NEW YORK 10019,NEW YORK,NY,40.765069,-73.985834,NEW YORK 10020,NEW YORK,NY,40.759729,-73.982347,NEW YORK 10021,NEW YORK,NY,40.768476,-73.958805,NEW YORK 10022,NEW YORK,NY,40.757091,-73.965703,NEW YORK 10023,NEW YORK,NY,40.77638,-73.982652,NEW YORK 10024,NEW YORK,NY,40.786446,-73.976385,NEW YORK 10025,NEW YORK,NY,40.797466,-73.968312,NEW YORK 10026,NEW YORK,NY,40.801942,-73.953069,NEW YORK 10027,NEW YORK,NY,40.811556,-73.954978,NEW YORK 10028,NEW YORK,NY,40.776267,-73.952866,NEW YORK 10029,NEW YORK,NY,40.791817,-73.94475,NEW YORK 10030,NEW YORK,NY,40.818333,-73.942597,NEW YORK 10031,NEW YORK,NY,40.82455,-73.950712,NEW YORK 10032,NEW YORK,NY,40.83819,-73.941978,NEW YORK 10033,NEW YORK,NY,40.84955,-73.935649,NEW YORK 10034,NEW YORK,NY,40.866222,-73.922077,NEW YORK 10035,NEW YORK,NY,40.801116,-73.937098,NEW YORK 10036,NEW YORK,NY,40.759724,-73.991826,NEW YORK 10037,NEW YORK,NY,40.813491,-73.9381,NEW YORK 10038,NEW YORK,NY,40.710092,-74.001298,NEW YORK 10039,NEW YORK,NY,40.826458,-73.938266,NEW YORK 10040,NEW YORK,NY,40.858308,-73.929601,NEW YORK 10041,NEW YORK,NY,40.7051,-74.014,NEW YORK 10043,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10044,NEW YORK,NY,40.762998,-73.949136,NEW YORK 10045,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10046,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10047,NEW YORK,NY,40.7102,-74.0128,NEW YORK 10048,NEW YORK,NY,40.7113,-74.0121,NEW YORK 10055,NEW YORK,NY,40.7589,-73.9735,NEW YORK 10060,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10065,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10069,NEW YORK,NY,40.7543,-73.9997,NEW YORK 10072,NEW YORK,NY,40.7501,-73.9978,NEW YORK 10075,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10079,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10080,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10081,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10082,NEW YORK,NY,40.7753,-73.9844,NEW YORK 10087,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10090,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10094,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10095,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10096,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10098,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10099,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10101,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10102,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10103,NEW YORK,NY,40.7597,-73.9762,NEW YORK 10104,NEW YORK,NY,40.7603,-73.9794,NEW YORK 10105,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10106,NEW YORK,NY,40.7647,-73.9804,NEW YORK 10107,NEW YORK,NY,40.7661,-73.9825,NEW YORK 10108,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10109,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10110,NEW YORK,NY,40.7533,-73.9808,NEW YORK 10111,NEW YORK,NY,40.7586,-73.9772,NEW YORK 10112,NEW YORK,NY,40.7584,-73.9784,NEW YORK 10113,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10114,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10115,NEW YORK,NY,40.8109,-73.954,NEW YORK 10116,NEW YORK,NY,40.8113,-73.9534,NEW YORK 10117,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10118,NEW YORK,NY,40.7483,-73.9865,NEW YORK 10119,NEW YORK,NY,40.7509,-73.9921,NEW YORK 10120,NEW YORK,NY,40.7496,-73.9884,NEW YORK 10121,NEW YORK,NY,40.7497,-73.9919,NEW YORK 10122,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10123,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10124,NEW YORK,NY,40.7577,-73.978,NEW YORK 10125,NEW YORK,NY,40.7995,-73.9679,NEW YORK 10126,NEW YORK,NY,40.7586,-73.9724,NEW YORK 10128,NEW YORK,NY,40.781618,-73.951112,NEW YORK 10129,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10130,NEW YORK,NY,40.7778,-73.9541,NEW YORK 10131,NEW YORK,NY,40.7679,-73.9611,NEW YORK 10132,NEW YORK,NY,40.7849,-73.9748,NEW YORK 10133,NEW YORK,NY,40.7716,-73.9873,NEW YORK 10138,NEW YORK,NY,40.754,-73.9909,NEW YORK 10149,NEW YORK,NY,40.7655,-73.9873,NEW YORK 10150,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10151,NEW YORK,NY,40.7631,-73.9733,NEW YORK 10152,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10153,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10154,NEW YORK,NY,40.7578,-73.973,NEW YORK 10155,NEW YORK,NY,40.7609,-73.9679,NEW YORK 10156,NEW YORK,NY,40.753,-73.9924,NEW YORK 10157,NEW YORK,NY,40.753,-73.9924,NEW YORK 10158,NEW YORK,NY,40.7487,-73.9753,NEW YORK 10159,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10160,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10161,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10162,NEW YORK,NY,40.7693,-73.9505,NEW YORK 10163,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10164,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10165,NEW YORK,NY,40.752,-73.9792,NEW YORK 10166,NEW YORK,NY,40.7532,-73.9766,NEW YORK 10167,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10168,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10169,NEW YORK,NY,40.754,-73.9771,NEW YORK 10170,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10171,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10172,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10173,NEW YORK,NY,40.7537,-73.9784,NEW YORK 10174,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10175,NEW YORK,NY,40.7538,-73.98,NEW YORK 10176,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10177,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10178,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10179,NEW YORK,NY,40.714167,-74.006667,NEW YORK 10184,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10185,NEW YORK,NY,40.7577,-73.978,NEW YORK 10196,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10197,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10199,NEW YORK,NY,40.7507,-73.9945,NEW YORK 10203,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10211,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10212,NEW YORK,NY,40.7051,-74.014,NEW YORK 10213,NEW YORK,NY,40.720278,-74.005,NEW YORK 10242,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10249,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10256,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10257,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10258,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10259,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10260,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10261,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10265,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10268,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10269,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10270,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10271,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10272,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10273,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10274,NEW YORK,NY,40.7051,-74.014,NEW YORK 10275,NEW YORK,NY,40.7051,-74.014,NEW YORK 10276,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10277,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10278,NEW YORK,NY,40.715,-74.0042,NEW YORK 10279,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10280,NEW YORK,NY,40.710537,-74.016323,NEW YORK 10281,NEW YORK,NY,40.7147,-74.016,NEW YORK 10282,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10285,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10286,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10292,NEW YORK,NY,40.7066,-74.0053,NEW YORK 10301,STATEN ISLAND,NY,40.631602,-74.092663,RICHMOND 10302,STATEN ISLAND,NY,40.630597,-74.137918,RICHMOND 10303,STATEN ISLAND,NY,40.630062,-74.160679,RICHMOND 10304,STATEN ISLAND,NY,40.610249,-74.087836,RICHMOND 10305,STATEN ISLAND,NY,40.597296,-74.076795,RICHMOND 10306,STATEN ISLAND,NY,40.568183,-74.118386,RICHMOND 10307,STATEN ISLAND,NY,40.508452,-74.244482,RICHMOND 10308,STATEN ISLAND,NY,40.55181,-74.152649,RICHMOND 10309,STATEN ISLAND,NY,40.535179,-74.211572,RICHMOND 10310,STATEN ISLAND,NY,40.632427,-74.11715,RICHMOND 10311,STATEN ISLAND,NY,40.6047,-74.1781,RICHMOND 10312,STATEN ISLAND,NY,40.545745,-74.179165,RICHMOND 10313,STATEN ISLAND,NY,40.5781,-74.1697,RICHMOND 10314,STATEN ISLAND,NY,40.603915,-74.147218,RICHMOND 10451,BRONX,NY,40.8222,-73.921735,BRONX 10452,BRONX,NY,40.837594,-73.921555,BRONX 10453,BRONX,NY,40.852047,-73.912937,BRONX 10454,BRONX,NY,40.808549,-73.919821,BRONX 10455,BRONX,NY,40.815309,-73.907172,BRONX 10456,BRONX,NY,40.831557,-73.909893,BRONX 10457,BRONX,NY,40.848635,-73.899907,BRONX 10458,BRONX,NY,40.863307,-73.889464,BRONX 10459,BRONX,NY,40.824699,-73.894047,BRONX 10460,BRONX,NY,40.840949,-73.879409,BRONX 10461,BRONX,NY,40.846506,-73.840953,BRONX 10462,BRONX,NY,40.843369,-73.860185,BRONX 10463,BRONX,NY,40.879812,-73.906737,BRONX 10464,BRONX,NY,40.846941,-73.787436,BRONX 10465,BRONX,NY,40.826065,-73.819581,BRONX 10466,BRONX,NY,40.890375,-73.850333,BRONX 10467,BRONX,NY,40.873671,-73.871242,BRONX 10468,BRONX,NY,40.866231,-73.900259,BRONX 10469,BRONX,NY,40.870193,-73.849465,BRONX 10470,BRONX,NY,40.900029,-73.862194,BRONX 10471,BRONX,NY,40.901084,-73.905283,BRONX 10472,BRONX,NY,40.829464,-73.871557,BRONX 10473,BRONX,NY,40.819364,-73.860626,BRONX 10474,BRONX,NY,40.801518,-73.886376,BRONX 10475,BRONX,NY,40.872903,-73.827817,BRONX 10499,BRONX,NY,40.85,-73.866667,BRONX 10550,MOUNT VERNON,NY,40.907863,-73.837961,WESTCHESTER 10551,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10552,MOUNT VERNON,NY,40.923056,-73.829919,WESTCHESTER 10553,MOUNT VERNON,NY,40.908645,-73.822111,WESTCHESTER 10557,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10558,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10601,WHITE PLAINS,NY,41.032955,-73.765231,WESTCHESTER 10602,WHITE PLAINS,NY,41.0274,-73.775,WESTCHESTER 10603,WHITE PLAINS,NY,41.049913,-73.77758,WESTCHESTER 10605,WHITE PLAINS,NY,41.014053,-73.755247,WESTCHESTER 10606,WHITE PLAINS,NY,41.024714,-73.778097,WESTCHESTER 10607,WHITE PLAINS,NY,41.039813,-73.811692,WESTCHESTER 10610,WHITE PLAINS,NY,41.0276,-73.7744,WESTCHESTER 10701,YONKERS,NY,40.940716,-73.888317,WESTCHESTER 10702,YONKERS,NY,40.931111,-73.899167,WESTCHESTER 10703,YONKERS,NY,40.951763,-73.885163,WESTCHESTER 10704,YONKERS,NY,40.917633,-73.859347,WESTCHESTER 10705,YONKERS,NY,40.917665,-73.895041,WESTCHESTER 10710,YONKERS,NY,40.965574,-73.843435,WESTCHESTER 11020,GREAT NECK,NY,40.774235,-73.718918,NASSAU 11021,GREAT NECK,NY,40.786674,-73.726984,NASSAU 11022,GREAT NECK,NY,40.7875,-73.725,NASSAU 11023,GREAT NECK,NY,40.799307,-73.734257,NASSAU 11024,GREAT NECK,NY,40.813307,-73.741391,NASSAU 11025,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11026,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11027,GREAT NECK,NY,40.7875,-73.725,NASSAU 11040,NEW HYDE PARK,NY,40.743926,-73.68042,NASSAU 11041,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11042,NEW HYDE PARK,NY,40.7602,-73.694978,NASSAU 11043,NEW HYDE PARK,NY,40.7317,-73.6821,NASSAU 11044,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11050,PORT WASHINGTON,NY,40.834995,-73.696356,NASSAU 11051,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11052,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11053,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11054,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11055,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11099,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11201,BROOKLYN,NY,40.694021,-73.99034,KINGS 11202,BROOKLYN,NY,40.6959,-73.9934,KINGS 11203,BROOKLYN,NY,40.650496,-73.934888,KINGS 11204,BROOKLYN,NY,40.617871,-73.985623,KINGS 11205,BROOKLYN,NY,40.692433,-73.96662,KINGS 11206,BROOKLYN,NY,40.701195,-73.943617,KINGS 11207,BROOKLYN,NY,40.670486,-73.893957,KINGS 11208,BROOKLYN,NY,40.676191,-73.873649,KINGS 11209,BROOKLYN,NY,40.625106,-74.030304,KINGS 11210,BROOKLYN,NY,40.628064,-73.946682,KINGS 11211,BROOKLYN,NY,40.709476,-73.956283,KINGS 11212,BROOKLYN,NY,40.662474,-73.914483,KINGS 11213,BROOKLYN,NY,40.669961,-73.93665,KINGS 11214,BROOKLYN,NY,40.601563,-73.99681,KINGS 11215,BROOKLYN,NY,40.666863,-73.982783,KINGS 11216,BROOKLYN,NY,40.67943,-73.949639,KINGS 11217,BROOKLYN,NY,40.68165,-73.979797,KINGS 11218,BROOKLYN,NY,40.642373,-73.975806,KINGS 11219,BROOKLYN,NY,40.633568,-73.996011,KINGS 11220,BROOKLYN,NY,40.641165,-74.013287,KINGS 11221,BROOKLYN,NY,40.690695,-73.927373,KINGS 11222,BROOKLYN,NY,40.727164,-73.949846,KINGS 11223,BROOKLYN,NY,40.597874,-73.974291,KINGS 11224,BROOKLYN,NY,40.576729,-73.988395,KINGS 11225,BROOKLYN,NY,40.662776,-73.954588,KINGS 11226,BROOKLYN,NY,40.646694,-73.956985,KINGS 11228,BROOKLYN,NY,40.617441,-74.012067,KINGS 11229,BROOKLYN,NY,40.601094,-73.94749,KINGS 11230,BROOKLYN,NY,40.622493,-73.965007,KINGS 11231,BROOKLYN,NY,40.679437,-74.00141,KINGS 11232,BROOKLYN,NY,40.652113,-74.001797,KINGS 11233,BROOKLYN,NY,40.678415,-73.921104,KINGS 11234,BROOKLYN,NY,40.620475,-73.923915,KINGS 11235,BROOKLYN,NY,40.583898,-73.953599,KINGS 11236,BROOKLYN,NY,40.640685,-73.902764,KINGS 11237,BROOKLYN,NY,40.700616,-73.917979,KINGS 11238,BROOKLYN,NY,40.679015,-73.964387,KINGS 11239,BROOKLYN,NY,40.649748,-73.882375,KINGS 11240,BROOKLYN,NY,40.6981,-73.986,KINGS 11241,BROOKLYN,NY,40.6932,-73.9911,KINGS 11242,BROOKLYN,NY,40.6932,-73.9911,KINGS 11243,BROOKLYN,NY,40.6846,-73.9804,KINGS 11244,BROOKLYN,NY,40.6895,-73.9906,KINGS 11245,BROOKLYN,NY,40.6873,-73.9896,KINGS 11247,BROOKLYN,NY,40.68,-73.9476,KINGS 11248,BROOKLYN,NY,40.6991,-73.9928,KINGS 11249,BROOKLYN,NY,40.6942,-73.9907,KINGS 11251,BROOKLYN,NY,40.703578,-73.966511,KINGS 11252,BROOKLYN,NY,40.618611,-74.033611,KINGS 11254,BROOKLYN,NY,40.6983,-73.9917,KINGS 11255,BROOKLYN,NY,40.6953,-73.9899,KINGS 11256,BROOKLYN,NY,40.6632,-73.8603,KINGS 11351,FLUSHING,NY,40.7816,-73.8272,QUEENS 11352,FLUSHING,NY,40.7476,-73.8263,QUEENS 11354,FLUSHING,NY,40.766722,-73.824142,QUEENS 11355,FLUSHING,NY,40.753573,-73.822609,QUEENS 11358,FLUSHING,NY,40.760636,-73.796788,QUEENS 11367,FLUSHING,NY,40.727966,-73.81953,QUEENS 11371,FLUSHING,NY,40.772117,-73.873535,QUEENS 11381,FLUSHING,NY,40.7652,-73.8177,QUEENS 11390,FLUSHING,NY,40.7652,-73.8177,QUEENS 11405,JAMAICA,NY,40.6913,-73.8061,QUEENS 11424,JAMAICA,NY,40.714167,-73.831389,QUEENS 11425,JAMAICA,NY,40.6913,-73.8061,QUEENS 11430,JAMAICA,NY,40.647221,-73.782663,QUEENS 11431,JAMAICA,NY,40.6913,-73.8061,QUEENS 11432,JAMAICA,NY,40.711867,-73.79442,QUEENS 11433,JAMAICA,NY,40.69691,-73.787669,QUEENS 11434,JAMAICA,NY,40.677483,-73.77584,QUEENS 11435,JAMAICA,NY,40.702934,-73.811121,QUEENS 11436,JAMAICA,NY,40.676347,-73.796596,QUEENS 11439,JAMAICA,NY,40.6913,-73.8061,QUEENS 11451,JAMAICA,NY,40.7011,-73.8006,QUEENS 11499,JAMAICA,NY,40.6913,-73.8061,QUEENS 11801,HICKSVILLE,NY,40.762305,-73.52297,NASSAU 11802,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11815,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11819,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11854,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11855,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 12201,ALBANY,NY,42.6525,-73.7566,ALBANY 12202,ALBANY,NY,42.641314,-73.764071,ALBANY 12203,ALBANY,NY,42.676757,-73.821988,ALBANY 12204,ALBANY,NY,42.684667,-73.735364,ALBANY 12205,ALBANY,NY,42.713116,-73.820174,ALBANY 12206,ALBANY,NY,42.668326,-73.774406,ALBANY 12207,ALBANY,NY,42.658133,-73.752327,ALBANY 12208,ALBANY,NY,42.655989,-73.796357,ALBANY 12209,ALBANY,NY,42.641665,-73.785385,ALBANY 12210,ALBANY,NY,42.65677,-73.76052,ALBANY 12211,ALBANY,NY,42.704693,-73.769982,ALBANY 12212,ALBANY,NY,42.6525,-73.7566,ALBANY 12214,ALBANY,NY,42.6525,-73.7566,ALBANY 12220,ALBANY,NY,42.6525,-73.7566,ALBANY 12222,ALBANY,NY,42.6525,-73.7566,ALBANY 12223,ALBANY,NY,42.6525,-73.7566,ALBANY 12224,ALBANY,NY,42.6525,-73.7566,ALBANY 12225,ALBANY,NY,42.6525,-73.7566,ALBANY 12226,ALBANY,NY,42.6525,-73.7566,ALBANY 12227,ALBANY,NY,42.6525,-73.7566,ALBANY 12228,ALBANY,NY,42.6525,-73.7566,ALBANY 12229,ALBANY,NY,42.6525,-73.7566,ALBANY 12230,ALBANY,NY,42.6525,-73.7566,ALBANY 12231,ALBANY,NY,42.6525,-73.7566,ALBANY 12232,ALBANY,NY,42.6525,-73.7566,ALBANY 12233,ALBANY,NY,42.7174,-73.8285,ALBANY 12234,ALBANY,NY,42.6525,-73.7566,ALBANY 12235,ALBANY,NY,42.7174,-73.8285,ALBANY 12236,ALBANY,NY,42.6525,-73.7566,ALBANY 12237,ALBANY,NY,42.6525,-73.7566,ALBANY 12238,ALBANY,NY,42.6525,-73.7566,ALBANY 12239,ALBANY,NY,42.6525,-73.7566,ALBANY 12240,ALBANY,NY,42.6525,-73.7566,ALBANY 12241,ALBANY,NY,42.6525,-73.7566,ALBANY 12242,ALBANY,NY,42.6525,-73.7566,ALBANY 12243,ALBANY,NY,42.6525,-73.7566,ALBANY 12244,ALBANY,NY,42.6525,-73.7566,ALBANY 12245,ALBANY,NY,42.6525,-73.7566,ALBANY 12246,ALBANY,NY,42.647,-73.75,ALBANY 12247,ALBANY,NY,42.6525,-73.7566,ALBANY 12248,ALBANY,NY,42.6525,-73.7566,ALBANY 12249,ALBANY,NY,42.6525,-73.7566,ALBANY 12250,ALBANY,NY,42.6525,-73.7566,ALBANY 12252,ALBANY,NY,42.6525,-73.7566,ALBANY 12255,ALBANY,NY,42.6525,-73.7566,ALBANY 12256,ALBANY,NY,42.6525,-73.7566,ALBANY 12257,ALBANY,NY,42.6525,-73.7566,ALBANY 12260,ALBANY,NY,42.6525,-73.7566,ALBANY 12261,ALBANY,NY,42.7174,-73.8285,ALBANY 12288,ALBANY,NY,42.7174,-73.8285,ALBANY 12301,SCHENECTADY,NY,42.8155,-73.9395,SCHENECTADY 12302,SCHENECTADY,NY,42.858839,-73.955051,SCHENECTADY 12303,SCHENECTADY,NY,42.769645,-73.938776,SCHENECTADY 12304,SCHENECTADY,NY,42.784083,-73.909432,SCHENECTADY 12305,SCHENECTADY,NY,42.816131,-73.939786,SCHENECTADY 12306,SCHENECTADY,NY,42.790384,-73.980876,SCHENECTADY 12307,SCHENECTADY,NY,42.804653,-73.936349,SCHENECTADY 12308,SCHENECTADY,NY,42.817928,-73.920591,SCHENECTADY 12309,SCHENECTADY,NY,42.796168,-73.878268,SCHENECTADY 12325,SCHENECTADY,NY,42.869,-73.9325,SCHENECTADY 12345,SCHENECTADY,NY,42.8102,-73.9507,SCHENECTADY 13201,SYRACUSE,NY,43.0459,-76.1528,ONONDAGA 13202,SYRACUSE,NY,43.040988,-76.148856,ONONDAGA 13203,SYRACUSE,NY,43.060703,-76.136931,ONONDAGA 13204,SYRACUSE,NY,43.044398,-76.175767,ONONDAGA 13205,SYRACUSE,NY,43.012314,-76.14518,ONONDAGA 13206,SYRACUSE,NY,43.06773,-76.110226,ONONDAGA 13207,SYRACUSE,NY,43.019482,-76.16501,ONONDAGA 13208,SYRACUSE,NY,43.073007,-76.148616,ONONDAGA 13209,SYRACUSE,NY,43.078204,-76.238448,ONONDAGA 13210,SYRACUSE,NY,43.035414,-76.128166,ONONDAGA 13211,SYRACUSE,NY,43.09951,-76.142181,ONONDAGA 13212,SYRACUSE,NY,43.130623,-76.137295,ONONDAGA 13214,SYRACUSE,NY,43.042529,-76.07844,ONONDAGA 13215,SYRACUSE,NY,42.997544,-76.211851,ONONDAGA 13217,SYRACUSE,NY,43.0512,-76.122,ONONDAGA 13218,SYRACUSE,NY,43.0301,-76.1259,ONONDAGA 13219,SYRACUSE,NY,43.040943,-76.226159,ONONDAGA 13220,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13221,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13224,SYRACUSE,NY,43.042134,-76.104609,ONONDAGA 13225,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13235,SYRACUSE,NY,43.0321,-76.1271,ONONDAGA 13244,SYRACUSE,NY,43.0394,-76.1361,ONONDAGA 13250,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13251,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13252,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13261,SYRACUSE,NY,43.0433,-76.1508,ONONDAGA 13290,SYRACUSE,NY,43.0685,-76.1709,ONONDAGA 13501,UTICA,NY,43.087112,-75.231463,ONEIDA 13502,UTICA,NY,43.106723,-75.231383,ONEIDA 13503,UTICA,NY,43.1015,-75.2319,ONEIDA 13504,UTICA,NY,43.1008,-75.233,ONEIDA 13505,UTICA,NY,43.1008,-75.233,ONEIDA 13599,UTICA,NY,43.1008,-75.233,ONEIDA 14201,BUFFALO,NY,42.896659,-78.884575,ERIE 14202,BUFFALO,NY,42.887038,-78.877948,ERIE 14203,BUFFALO,NY,42.893938,-78.868143,ERIE 14204,BUFFALO,NY,42.883978,-78.859736,ERIE 14205,BUFFALO,NY,42.8925,-78.8707,ERIE 14206,BUFFALO,NY,42.881132,-78.810375,ERIE 14207,BUFFALO,NY,42.949062,-78.897815,ERIE 14208,BUFFALO,NY,42.915416,-78.850487,ERIE 14209,BUFFALO,NY,42.913,-78.865629,ERIE 14210,BUFFALO,NY,42.861432,-78.82055,ERIE 14211,BUFFALO,NY,42.908153,-78.822477,ERIE 14212,BUFFALO,NY,42.894553,-78.824458,ERIE 14213,BUFFALO,NY,42.916675,-78.889461,ERIE 14214,BUFFALO,NY,42.941429,-78.837403,ERIE 14215,BUFFALO,NY,42.933536,-78.811504,ERIE 14216,BUFFALO,NY,42.949914,-78.859865,ERIE 14217,BUFFALO,NY,42.968618,-78.872948,ERIE 14218,BUFFALO,NY,42.818301,-78.817263,ERIE 14219,BUFFALO,NY,42.790039,-78.822228,ERIE 14220,BUFFALO,NY,42.844138,-78.818205,ERIE 14221,BUFFALO,NY,42.985621,-78.738044,ERIE 14222,BUFFALO,NY,42.916401,-78.876333,ERIE 14223,BUFFALO,NY,42.973088,-78.845,ERIE 14224,BUFFALO,NY,42.836162,-78.75109,ERIE 14225,BUFFALO,NY,42.928642,-78.760855,ERIE 14226,BUFFALO,NY,42.967232,-78.799849,ERIE 14227,BUFFALO,NY,42.877467,-78.741936,ERIE 14228,BUFFALO,NY,43.018414,-78.774604,ERIE 14231,BUFFALO,NY,42.963889,-78.738056,ERIE 14233,BUFFALO,NY,42.8849,-78.8265,ERIE 14240,BUFFALO,NY,42.8849,-78.8265,ERIE 14241,BUFFALO,NY,42.8849,-78.8265,ERIE 14260,BUFFALO,NY,43.0003,-78.7902,ERIE 14261,BUFFALO,NY,43.0013,-78.7853,ERIE 14263,BUFFALO,NY,42.8849,-78.8265,ERIE 14264,BUFFALO,NY,42.8849,-78.8265,ERIE 14265,BUFFALO,NY,42.8849,-78.8265,ERIE 14267,BUFFALO,NY,42.8849,-78.8265,ERIE 14269,BUFFALO,NY,42.8849,-78.8265,ERIE 14270,BUFFALO,NY,42.8849,-78.8265,ERIE 14272,BUFFALO,NY,42.8849,-78.8265,ERIE 14273,BUFFALO,NY,42.8849,-78.8265,ERIE 14276,BUFFALO,NY,42.8849,-78.8265,ERIE 14280,BUFFALO,NY,42.8849,-78.8265,ERIE 14602,ROCHESTER,NY,43.1683,-77.6026,MONROE 14603,ROCHESTER,NY,43.1615,-77.6073,MONROE 14604,ROCHESTER,NY,43.157729,-77.607978,MONROE 14605,ROCHESTER,NY,43.169758,-77.600711,MONROE 14606,ROCHESTER,NY,43.168455,-77.684488,MONROE 14607,ROCHESTER,NY,43.150086,-77.588976,MONROE 14608,ROCHESTER,NY,43.152144,-77.625803,MONROE 14609,ROCHESTER,NY,43.174001,-77.563701,MONROE 14610,ROCHESTER,NY,43.14524,-77.549501,MONROE 14611,ROCHESTER,NY,43.148375,-77.639353,MONROE 14612,ROCHESTER,NY,43.256576,-77.665228,MONROE 14613,ROCHESTER,NY,43.18308,-77.639276,MONROE 14614,ROCHESTER,NY,43.155823,-77.61419,MONROE 14615,ROCHESTER,NY,43.20575,-77.652118,MONROE 14616,ROCHESTER,NY,43.232359,-77.651238,MONROE 14617,ROCHESTER,NY,43.220258,-77.599442,MONROE 14618,ROCHESTER,NY,43.115416,-77.558801,MONROE 14619,ROCHESTER,NY,43.136685,-77.6481,MONROE 14620,ROCHESTER,NY,43.131711,-77.606239,MONROE 14621,ROCHESTER,NY,43.183362,-77.604284,MONROE 14622,ROCHESTER,NY,43.213959,-77.55549,MONROE 14623,ROCHESTER,NY,43.083371,-77.634412,MONROE 14624,ROCHESTER,NY,43.12589,-77.733552,MONROE 14625,ROCHESTER,NY,43.14949,-77.503188,MONROE 14626,ROCHESTER,NY,43.21257,-77.703996,MONROE 14627,ROCHESTER,NY,43.1284,-77.6295,MONROE 14638,ROCHESTER,NY,43.1572,-77.6064,MONROE 14639,ROCHESTER,NY,43.1572,-77.6064,MONROE 14642,ROCHESTER,NY,43.1242,-77.6231,MONROE 14643,ROCHESTER,NY,43.1572,-77.6064,MONROE 14644,ROCHESTER,NY,43.1572,-77.6064,MONROE 14645,ROCHESTER,NY,43.1572,-77.6064,MONROE 14646,ROCHESTER,NY,43.1572,-77.6064,MONROE 14647,ROCHESTER,NY,43.1572,-77.6064,MONROE 14649,ROCHESTER,NY,43.1572,-77.6064,MONROE 14650,ROCHESTER,NY,43.1541,-77.6255,MONROE 14651,ROCHESTER,NY,43.1541,-77.6255,MONROE 14652,ROCHESTER,NY,43.1541,-77.6255,MONROE 14653,ROCHESTER,NY,43.1541,-77.6255,MONROE 14664,ROCHESTER,NY,43.1572,-77.6064,MONROE 14673,ROCHESTER,NY,43.1572,-77.6064,MONROE 14683,ROCHESTER,NY,43.1572,-77.6064,MONROE 14692,ROCHESTER,NY,43.0869,-77.5973,MONROE 14694,ROCHESTER,NY,43.1541,-77.6255,MONROE 14901,ELMIRA,NY,42.100769,-76.811977,CHEMUNG 14902,ELMIRA,NY,42.0909,-76.8061,CHEMUNG 14903,ELMIRA,NY,42.130203,-76.843572,CHEMUNG 14904,ELMIRA,NY,42.072866,-76.803735,CHEMUNG 14905,ELMIRA,NY,42.086919,-76.839686,CHEMUNG 14925,ELMIRA,NY,42.1146,-76.8055,CHEMUNG 15201,PITTSBURGH,PA,40.474536,-79.952524,ALLEGHENY 15202,PITTSBURGH,PA,40.501321,-80.066966,ALLEGHENY 15203,PITTSBURGH,PA,40.425439,-79.977556,ALLEGHENY 15204,PITTSBURGH,PA,40.455569,-80.061056,ALLEGHENY 15205,PITTSBURGH,PA,40.438045,-80.073393,ALLEGHENY 15206,PITTSBURGH,PA,40.468885,-79.919267,ALLEGHENY 15207,PITTSBURGH,PA,40.401206,-79.933935,ALLEGHENY 15208,PITTSBURGH,PA,40.454955,-79.898474,ALLEGHENY 15209,PITTSBURGH,PA,40.49718,-79.97401,ALLEGHENY 15210,PITTSBURGH,PA,40.408541,-79.987405,ALLEGHENY 15211,PITTSBURGH,PA,40.42908,-80.012156,ALLEGHENY 15212,PITTSBURGH,PA,40.468873,-80.013128,ALLEGHENY 15213,PITTSBURGH,PA,40.44372,-79.954428,ALLEGHENY 15214,PITTSBURGH,PA,40.481309,-80.01393,ALLEGHENY 15215,PITTSBURGH,PA,40.499225,-79.917513,ALLEGHENY 15216,PITTSBURGH,PA,40.399584,-80.035727,ALLEGHENY 15217,PITTSBURGH,PA,40.431852,-79.924973,ALLEGHENY 15218,PITTSBURGH,PA,40.424468,-79.887591,ALLEGHENY 15219,PITTSBURGH,PA,40.44539,-79.977229,ALLEGHENY 15220,PITTSBURGH,PA,40.417405,-80.051202,ALLEGHENY 15221,PITTSBURGH,PA,40.438352,-79.870243,ALLEGHENY 15222,PITTSBURGH,PA,40.442111,-80.000556,ALLEGHENY 15223,PITTSBURGH,PA,40.50428,-79.95145,ALLEGHENY 15224,PITTSBURGH,PA,40.464215,-79.945445,ALLEGHENY 15225,PITTSBURGH,PA,40.513819,-80.137027,ALLEGHENY 15226,PITTSBURGH,PA,40.394628,-80.015759,ALLEGHENY 15227,PITTSBURGH,PA,40.37619,-79.975816,ALLEGHENY 15228,PITTSBURGH,PA,40.371326,-80.043186,ALLEGHENY 15229,PITTSBURGH,PA,40.519321,-80.035685,ALLEGHENY 15230,PITTSBURGH,PA,40.5085,-80.0786,ALLEGHENY 15231,PITTSBURGH,PA,40.502778,-80.188333,ALLEGHENY 15232,PITTSBURGH,PA,40.453598,-79.932557,ALLEGHENY 15233,PITTSBURGH,PA,40.460425,-80.029965,ALLEGHENY 15234,PITTSBURGH,PA,40.369424,-80.017907,ALLEGHENY 15235,PITTSBURGH,PA,40.4605,-79.826892,ALLEGHENY 15236,PITTSBURGH,PA,40.345244,-79.976894,ALLEGHENY 15237,PITTSBURGH,PA,40.552238,-80.034939,ALLEGHENY 15238,PITTSBURGH,PA,40.515077,-79.877423,ALLEGHENY 15239,PITTSBURGH,PA,40.477693,-79.734505,ALLEGHENY 15240,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15241,PITTSBURGH,PA,40.332174,-80.07921,ALLEGHENY 15242,PITTSBURGH,PA,40.420278,-80.05,ALLEGHENY 15243,PITTSBURGH,PA,40.373797,-80.072425,ALLEGHENY 15244,PITTSBURGH,PA,40.444444,-80.146111,ALLEGHENY 15250,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15251,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15252,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15253,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15254,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15255,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15257,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15258,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15259,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15260,PITTSBURGH,PA,40.4424,-79.9507,ALLEGHENY 15261,PITTSBURGH,PA,40.4442,-79.9617,ALLEGHENY 15262,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15263,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15264,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15265,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15267,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15268,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15270,PITTSBURGH,PA,40.4036,-80.0344,ALLEGHENY 15272,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15274,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15275,PITTSBURGH,PA,40.4513,-80.1788,ALLEGHENY 15276,PITTSBURGH,PA,40.4292,-80.1253,ALLEGHENY 15277,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15278,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15279,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15281,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15282,PITTSBURGH,PA,40.4371,-79.9929,ALLEGHENY 15283,PITTSBURGH,PA,40.4199,-80.0499,ALLEGHENY 15285,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15286,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15289,PITTSBURGH,PA,40.4406,-79.9961,ALLEGHENY 15290,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15295,PITTSBURGH,PA,40.4747,-79.9521,ALLEGHENY 15901,JOHNSTOWN,PA,40.325957,-78.91408,CAMBRIA 15902,JOHNSTOWN,PA,40.307787,-78.896905,CAMBRIA 15904,JOHNSTOWN,PA,40.285026,-78.865383,CAMBRIA 15905,JOHNSTOWN,PA,40.307188,-78.943006,CAMBRIA 15906,JOHNSTOWN,PA,40.352193,-78.938317,CAMBRIA 15907,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 15909,JOHNSTOWN,PA,40.387965,-78.862284,CAMBRIA 15915,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 16101,NEW CASTLE,PA,40.99222,-80.328449,LAWRENCE 16102,NEW CASTLE,PA,40.967745,-80.390704,LAWRENCE 16103,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16105,NEW CASTLE,PA,41.033502,-80.342191,LAWRENCE 16107,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16108,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16501,ERIE,PA,42.125962,-80.08601,ERIE 16502,ERIE,PA,42.113332,-80.097607,ERIE 16503,ERIE,PA,42.126506,-80.063976,ERIE 16504,ERIE,PA,42.1108,-80.05208,ERIE 16505,ERIE,PA,42.097526,-80.161902,ERIE 16506,ERIE,PA,42.073801,-80.14844,ERIE 16507,ERIE,PA,42.131579,-80.086424,ERIE 16508,ERIE,PA,42.097577,-80.093544,ERIE 16509,ERIE,PA,42.076326,-80.066827,ERIE 16510,ERIE,PA,42.123673,-80.003752,ERIE 16511,ERIE,PA,42.15529,-80.017665,ERIE 16512,ERIE,PA,42.1185,-80.0229,ERIE 16514,ERIE,PA,42.1185,-80.0229,ERIE 16515,ERIE,PA,42.1185,-80.0229,ERIE 16522,ERIE,PA,42.1185,-80.0229,ERIE 16530,ERIE,PA,42.1185,-80.0229,ERIE 16531,ERIE,PA,42.1185,-80.0229,ERIE 16532,ERIE,PA,42.1185,-80.0229,ERIE 16533,ERIE,PA,42.1185,-80.0229,ERIE 16534,ERIE,PA,42.1185,-80.0229,ERIE 16538,ERIE,PA,42.1185,-80.0229,ERIE 16541,ERIE,PA,42.1185,-80.0229,ERIE 16544,ERIE,PA,42.1185,-80.0229,ERIE 16546,ERIE,PA,42.1073,-80.0486,ERIE 16550,ERIE,PA,42.1185,-80.0229,ERIE 16553,ERIE,PA,42.1185,-80.0229,ERIE 16554,ERIE,PA,42.1185,-80.0229,ERIE 16563,ERIE,PA,42.1185,-80.0229,ERIE 16565,ERIE,PA,42.0687,-80.10011,ERIE 17101,HARRISBURG,PA,40.261767,-76.883079,DAUPHIN 17102,HARRISBURG,PA,40.27278,-76.891044,DAUPHIN 17103,HARRISBURG,PA,40.273852,-76.863812,DAUPHIN 17104,HARRISBURG,PA,40.259683,-76.859397,DAUPHIN 17105,HARRISBURG,PA,40.2846,-76.8736,DAUPHIN 17106,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17107,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17108,HARRISBURG,PA,40.2615,-76.8831,DAUPHIN 17109,HARRISBURG,PA,40.29122,-76.822612,DAUPHIN 17110,HARRISBURG,PA,40.302957,-76.886246,DAUPHIN 17111,HARRISBURG,PA,40.266058,-76.793918,DAUPHIN 17112,HARRISBURG,PA,40.335208,-76.791438,DAUPHIN 17113,HARRISBURG,PA,40.234007,-76.827568,DAUPHIN 17120,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17121,HARRISBURG,PA,40.3136,-76.875,DAUPHIN 17122,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17123,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17124,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17125,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17126,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17127,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17128,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17129,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17130,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17140,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17177,HARRISBURG,PA,40.2959,-76.8553,DAUPHIN 17401,YORK,PA,39.963539,-76.726887,YORK 17402,YORK,PA,39.971508,-76.674578,YORK 17403,YORK,PA,39.94943,-76.712998,YORK 17404,YORK,PA,39.961988,-76.768987,YORK 17405,YORK,PA,39.9594,-76.7263,YORK 17406,YORK,PA,39.998249,-76.592646,YORK 17407,YORK,PA,39.880203,-76.714634,YORK 17408,YORK,PA,39.9492,-76.8018,YORK 17415,YORK,PA,39.9933,-76.6475,YORK 17601,LANCASTER,PA,40.075381,-76.319888,LANCASTER 17602,LANCASTER,PA,40.033514,-76.284364,LANCASTER 17603,LANCASTER,PA,40.030475,-76.331583,LANCASTER 17604,LANCASTER,PA,40.0598,-76.3357,LANCASTER 17605,LANCASTER,PA,40.0494,-76.2506,LANCASTER 17606,LANCASTER,PA,40.0932,-76.3036,LANCASTER 17607,LANCASTER,PA,40.0516,-76.3608,LANCASTER 17608,LANCASTER,PA,40.0405,-76.308,LANCASTER 17611,LANCASTER,PA,40.0092,-76.372,LANCASTER 17622,LANCASTER,PA,40.0378755,-76.3055144,LANCASTER 17699,LANCASTER,PA,40.0377,-76.3058,LANCASTER 18015,BETHLEHEM,PA,40.600167,-75.380507,NORTHAMPTON 18016,BETHLEHEM,PA,40.6209,-75.3645,NORTHAMPTON 18017,BETHLEHEM,PA,40.65168,-75.35823,NORTHAMPTON 18018,BETHLEHEM,PA,40.627849,-75.392827,NORTHAMPTON 18020,BETHLEHEM,PA,40.6609,-75.3274,NORTHAMPTON 18025,BETHLEHEM,PA,40.6335,-75.3952,LEHIGH 18101,ALLENTOWN,PA,40.602729,-75.470955,LEHIGH 18102,ALLENTOWN,PA,40.606818,-75.478139,LEHIGH 18103,ALLENTOWN,PA,40.589145,-75.464521,LEHIGH 18104,ALLENTOWN,PA,40.601849,-75.522499,LEHIGH 18105,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18106,ALLENTOWN,PA,40.561451,-75.566424,LEHIGH 18109,ALLENTOWN,PA,40.6235,-75.4383,LEHIGH 18175,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18195,ALLENTOWN,PA,40.5728,-75.6153,LEHIGH 18501,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18502,SCRANTON,PA,41.3732,-75.6788,LACKAWANNA 18503,SCRANTON,PA,41.409517,-75.664205,LACKAWANNA 18504,SCRANTON,PA,41.412777,-75.686081,LACKAWANNA 18505,SCRANTON,PA,41.39145,-75.665738,LACKAWANNA 18508,SCRANTON,PA,41.438917,-75.662529,LACKAWANNA 18509,SCRANTON,PA,41.427353,-75.646454,LACKAWANNA 18510,SCRANTON,PA,41.408039,-75.648397,LACKAWANNA 18512,SCRANTON,PA,41.426184,-75.62294,LACKAWANNA 18514,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18515,SCRANTON,PA,41.4476,-75.6669,LACKAWANNA 18522,SCRANTON,PA,41.4303,-75.6437,LACKAWANNA 18540,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18577,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18701,WILKES BARRE,PA,41.244892,-75.884063,LUZERNE 18702,WILKES BARRE,PA,41.236512,-75.882557,LUZERNE 18703,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18705,WILKES BARRE,PA,41.268921,-75.845309,LUZERNE 18706,WILKES BARRE,PA,41.206709,-75.918157,LUZERNE 18710,WILKES BARRE,PA,41.2454,-75.8819,LUZERNE 18711,WILKES BARRE,PA,41.2474,-75.8536,LUZERNE 18762,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18764,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18765,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18766,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18767,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18769,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18773,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 19019,PHILADELPHIA,PA,40.1162,-75.0141,PHILADELPHIA 19092,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19093,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19099,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19101,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19102,PHILADELPHIA,PA,39.948908,-75.166109,PHILADELPHIA 19103,PHILADELPHIA,PA,39.951285,-75.174136,PHILADELPHIA 19104,PHILADELPHIA,PA,39.959732,-75.202445,PHILADELPHIA 19105,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19106,PHILADELPHIA,PA,39.94742,-75.147271,PHILADELPHIA 19107,PHILADELPHIA,PA,39.94867,-75.159339,PHILADELPHIA 19108,PHILADELPHIA,PA,39.9591,-75.1599,PHILADELPHIA 19109,PHILADELPHIA,PA,39.9498,-75.1641,PHILADELPHIA 19110,PHILADELPHIA,PA,39.9504,-75.164,PHILADELPHIA 19111,PHILADELPHIA,PA,40.059635,-75.081792,PHILADELPHIA 19112,PHILADELPHIA,PA,39.889252,-75.178207,PHILADELPHIA 19113,PHILADELPHIA,PA,39.864998,-75.275196,DELAWARE 19114,PHILADELPHIA,PA,40.063356,-74.999032,PHILADELPHIA 19115,PHILADELPHIA,PA,40.090286,-75.041036,PHILADELPHIA 19116,PHILADELPHIA,PA,40.116599,-75.019803,PHILADELPHIA 19118,PHILADELPHIA,PA,40.081247,-75.2006,PHILADELPHIA 19119,PHILADELPHIA,PA,40.054681,-75.186564,PHILADELPHIA 19120,PHILADELPHIA,PA,40.034254,-75.121256,PHILADELPHIA 19121,PHILADELPHIA,PA,39.981085,-75.174005,PHILADELPHIA 19122,PHILADELPHIA,PA,39.978014,-75.145882,PHILADELPHIA 19123,PHILADELPHIA,PA,39.965975,-75.150968,PHILADELPHIA 19124,PHILADELPHIA,PA,40.017798,-75.089526,PHILADELPHIA 19125,PHILADELPHIA,PA,39.978751,-75.126156,PHILADELPHIA 19126,PHILADELPHIA,PA,40.056839,-75.137854,PHILADELPHIA 19127,PHILADELPHIA,PA,40.027512,-75.224167,PHILADELPHIA 19128,PHILADELPHIA,PA,40.040247,-75.223084,PHILADELPHIA 19129,PHILADELPHIA,PA,40.011816,-75.186149,PHILADELPHIA 19130,PHILADELPHIA,PA,39.967677,-75.173467,PHILADELPHIA 19131,PHILADELPHIA,PA,39.98447,-75.228226,PHILADELPHIA 19132,PHILADELPHIA,PA,39.995393,-75.16982,PHILADELPHIA 19133,PHILADELPHIA,PA,39.992467,-75.141505,PHILADELPHIA 19134,PHILADELPHIA,PA,39.99252,-75.113284,PHILADELPHIA 19135,PHILADELPHIA,PA,40.024694,-75.051827,PHILADELPHIA 19136,PHILADELPHIA,PA,40.042159,-75.024388,PHILADELPHIA 19137,PHILADELPHIA,PA,40.000849,-75.072654,PHILADELPHIA 19138,PHILADELPHIA,PA,40.05683,-75.156898,PHILADELPHIA 19139,PHILADELPHIA,PA,39.961166,-75.230301,PHILADELPHIA 19140,PHILADELPHIA,PA,40.011771,-75.145626,PHILADELPHIA 19141,PHILADELPHIA,PA,40.036473,-75.145109,PHILADELPHIA 19142,PHILADELPHIA,PA,39.922332,-75.233796,PHILADELPHIA 19143,PHILADELPHIA,PA,39.944815,-75.228819,PHILADELPHIA 19144,PHILADELPHIA,PA,40.033773,-75.173099,PHILADELPHIA 19145,PHILADELPHIA,PA,39.922724,-75.181194,PHILADELPHIA 19146,PHILADELPHIA,PA,39.937949,-75.179364,PHILADELPHIA 19147,PHILADELPHIA,PA,39.936175,-75.156324,PHILADELPHIA 19148,PHILADELPHIA,PA,39.92068,-75.159538,PHILADELPHIA 19149,PHILADELPHIA,PA,40.036915,-75.066374,PHILADELPHIA 19150,PHILADELPHIA,PA,40.07262,-75.170621,PHILADELPHIA 19151,PHILADELPHIA,PA,39.977199,-75.254492,PHILADELPHIA 19152,PHILADELPHIA,PA,40.060571,-75.047079,PHILADELPHIA 19153,PHILADELPHIA,PA,39.905512,-75.244431,PHILADELPHIA 19154,PHILADELPHIA,PA,40.089738,-74.978052,PHILADELPHIA 19155,PHILADELPHIA,PA,40.0947,-74.9818,PHILADELPHIA 19160,PHILADELPHIA,PA,40.0117,-75.1463,PHILADELPHIA 19161,PHILADELPHIA,PA,40.0614,-75.0795,PHILADELPHIA 19162,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19170,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19171,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19172,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19173,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19175,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19176,PHILADELPHIA,PA,39.9523,-75.1638,PHILADELPHIA 19177,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19178,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19179,PHILADELPHIA,PA,40.0315,-75.1764,PHILADELPHIA 19181,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19182,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19183,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19184,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19185,PHILADELPHIA,PA,39.8893,-75.1701,PHILADELPHIA 19187,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19188,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19190,PHILADELPHIA,PA,39.952335,-75.163789,PHILADELPHIA 19191,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19192,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19193,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19194,PHILADELPHIA,PA,39.9543,-75.1827,PHILADELPHIA 19195,PHILADELPHIA,PA,39.9522,-75.1642,PHILADELPHIA 19196,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19197,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19244,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19255,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19481,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19482,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19483,VALLEY FORGE,PA,40.08,-75.4159,MONTGOMERY 19484,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19485,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19493,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19494,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19495,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19496,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19601,READING,PA,40.346621,-75.935132,BERKS 19602,READING,PA,40.330604,-75.919229,BERKS 19603,READING,PA,40.3362,-75.9277,BERKS 19604,READING,PA,40.350721,-75.914262,BERKS 19605,READING,PA,40.38859,-75.932769,BERKS 19606,READING,PA,40.325109,-75.868178,BERKS 19607,READING,PA,40.299696,-75.953103,BERKS 19608,READING,PA,40.31449,-76.024086,BERKS 19609,READING,PA,40.325778,-75.995347,BERKS 19610,READING,PA,40.333478,-75.976382,BERKS 19611,READING,PA,40.324989,-75.944188,BERKS 19612,READING,PA,40.3683,-75.9116,BERKS 19640,READING,PA,40.3683,-75.9116,BERKS 19702,NEWARK,DE,39.634869,-75.699339,NEW CASTLE 19711,NEWARK,DE,39.701129,-75.737534,NEW CASTLE 19712,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19713,NEWARK,DE,39.669881,-75.715101,NEW CASTLE 19714,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19715,NEWARK,DE,39.6832,-75.749,NEW CASTLE 19716,NEWARK,DE,39.6814,-75.754,NEW CASTLE 19717,NEWARK,DE,39.6816,-75.7545,NEW CASTLE 19718,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19725,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19726,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19801,WILMINGTON,DE,39.737752,-75.549658,NEW CASTLE 19802,WILMINGTON,DE,39.75638,-75.534041,NEW CASTLE 19803,WILMINGTON,DE,39.793236,-75.531076,NEW CASTLE 19804,WILMINGTON,DE,39.720854,-75.612815,NEW CASTLE 19805,WILMINGTON,DE,39.743375,-75.582724,NEW CASTLE 19806,WILMINGTON,DE,39.757076,-75.563503,NEW CASTLE 19807,WILMINGTON,DE,39.782206,-75.607205,NEW CASTLE 19808,WILMINGTON,DE,39.734737,-75.663891,NEW CASTLE 19809,WILMINGTON,DE,39.771913,-75.494592,NEW CASTLE 19810,WILMINGTON,DE,39.819377,-75.505999,NEW CASTLE 19850,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19880,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19884,WILMINGTON,DE,39.778889,-75.598611,NEW CASTLE 19885,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19886,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19887,WILMINGTON,DE,39.8187,-75.508,NEW CASTLE 19889,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19890,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19891,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19892,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19893,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19894,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19895,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19896,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19897,WILMINGTON,DE,39.7856,-75.5458,NEW CASTLE 19898,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19899,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 20001,WASHINGTON,DC,38.912217,-77.017691,DISTRICT OF COLUMBIA 20002,WASHINGTON,DC,38.902365,-76.990055,DISTRICT OF COLUMBIA 20003,WASHINGTON,DC,38.882941,-76.989539,DISTRICT OF COLUMBIA 20004,WASHINGTON,DC,38.892955,-77.026303,DISTRICT OF COLUMBIA 20005,WASHINGTON,DC,38.906731,-77.031236,DISTRICT OF COLUMBIA 20006,WASHINGTON,DC,38.896444,-77.044701,DISTRICT OF COLUMBIA 20007,WASHINGTON,DC,38.914365,-77.074042,DISTRICT OF COLUMBIA 20008,WASHINGTON,DC,38.936282,-77.059936,DISTRICT OF COLUMBIA 20009,WASHINGTON,DC,38.920202,-77.037504,DISTRICT OF COLUMBIA 20010,WASHINGTON,DC,38.93272,-77.032183,DISTRICT OF COLUMBIA 20011,WASHINGTON,DC,38.951786,-77.020251,DISTRICT OF COLUMBIA 20012,WASHINGTON,DC,38.975712,-77.028248,DISTRICT OF COLUMBIA 20013,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20015,WASHINGTON,DC,38.965768,-77.067961,DISTRICT OF COLUMBIA 20016,WASHINGTON,DC,38.938117,-77.086037,DISTRICT OF COLUMBIA 20017,WASHINGTON,DC,38.936723,-76.994038,DISTRICT OF COLUMBIA 20018,WASHINGTON,DC,38.927724,-76.976159,DISTRICT OF COLUMBIA 20019,WASHINGTON,DC,38.890237,-76.937588,DISTRICT OF COLUMBIA 20020,WASHINGTON,DC,38.860039,-76.974187,DISTRICT OF COLUMBIA 20022,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20023,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20024,WASHINGTON,DC,38.875939,-77.016028,DISTRICT OF COLUMBIA 20026,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20027,WASHINGTON,DC,38.9008,-76.9827,DISTRICT OF COLUMBIA 20029,WASHINGTON,DC,38.8938,-76.9501,DISTRICT OF COLUMBIA 20030,WASHINGTON,DC,38.8648,-76.9707,DISTRICT OF COLUMBIA 20032,WASHINGTON,DC,38.833843,-76.999549,DISTRICT OF COLUMBIA 20033,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20035,WASHINGTON,DC,38.9026,-77.0398,DISTRICT OF COLUMBIA 20036,WASHINGTON,DC,38.908704,-77.041434,DISTRICT OF COLUMBIA 20037,WASHINGTON,DC,38.901446,-77.050448,DISTRICT OF COLUMBIA 20038,WASHINGTON,DC,38.9008,-77.0328,DISTRICT OF COLUMBIA 20039,WASHINGTON,DC,38.9528,-77.0234,DISTRICT OF COLUMBIA 20040,WASHINGTON,DC,38.9658,-77.0276,DISTRICT OF COLUMBIA 20041,WASHINGTON,DC,38.944,-77.4624,DISTRICT OF COLUMBIA 20042,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20043,WASHINGTON,DC,38.9033,-77.0325,DISTRICT OF COLUMBIA 20044,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20045,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20046,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20047,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20049,WASHINGTON,DC,38.8963,-77.02,DISTRICT OF COLUMBIA 20050,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20051,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20052,WASHINGTON,DC,38.899,-77.0457,DISTRICT OF COLUMBIA 20053,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20055,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20056,WASHINGTON,DC,38.9158,-77.0321,DISTRICT OF COLUMBIA 20057,WASHINGTON,DC,38.9079,-77.0714,DISTRICT OF COLUMBIA 20058,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20059,WASHINGTON,DC,38.9226,-77.0212,DISTRICT OF COLUMBIA 20060,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20061,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20062,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20063,WASHINGTON,DC,38.9055,-77.0467,DISTRICT OF COLUMBIA 20064,WASHINGTON,DC,38.9326,-76.9973,DISTRICT OF COLUMBIA 20065,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20066,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20067,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20068,WASHINGTON,DC,38.9002,-77.0437,DISTRICT OF COLUMBIA 20069,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20070,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20071,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20073,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20074,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20075,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20076,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20077,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20078,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20080,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20081,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20082,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20088,WASHINGTON,DC,38.9417,-77.0771,DISTRICT OF COLUMBIA 20090,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20091,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20097,WASHINGTON,DC,38.8858,-77.0063,DISTRICT OF COLUMBIA 20098,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20101,DULLES,VA,38.9886,-77.4507,LOUDOUN 20102,DULLES,VA,38.9886,-77.4507,LOUDOUN 20103,DULLES,VA,38.9886,-77.4507,LOUDOUN 20104,DULLES,VA,38.9886,-77.4507,LOUDOUN 20108,MANASSAS,VA,38.7518,-77.4728,MANASSAS CITY 20109,MANASSAS,VA,38.841111,-77.538056,PRINCE WILLIAM 20110,MANASSAS,VA,38.7509,-77.48,MANASSAS CITY 20111,MANASSAS,VA,38.783889,-77.47,PRINCE WILLIAM 20112,MANASSAS,VA,38.6811,-77.4324,PRINCE WILLIAM 20113,MANASSAS,VA,38.7776,-77.5197,MANASSAS PARK CITY 20170,HERNDON,VA,38.9764,-77.3839,FAIRFAX 20171,HERNDON,VA,38.935556,-77.380278,FAIRFAX 20172,HERNDON,VA,38.9335,-77.3477,FAIRFAX 20189,DULLES,VA,38.8951,-77.0369,LOUDOUN 20190,RESTON,VA,38.96,-77.3456,FAIRFAX 20191,RESTON,VA,38.9379,-77.352,FAIRFAX 20192,HERNDON,VA,38.9496,-77.366,FAIRFAX 20193,RESTON,VA,38.959167,-77.336944,FAIRFAX 20194,RESTON,VA,38.9785,-77.347,FAIRFAX 20195,RESTON,VA,38.9335,-77.3477,FAIRFAX 20196,RESTON,VA,38.9253,-77.3971,FAIRFAX 20199,DULLES,VA,39.0011,-77.4562,LOUDOUN 20201,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20202,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20203,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20204,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20206,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20207,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20208,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20210,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20211,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20212,WASHINGTON,DC,38.8971,-77.0084,DISTRICT OF COLUMBIA 20213,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20214,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20215,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20216,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20217,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20218,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20219,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20220,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20221,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20222,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20223,WASHINGTON,DC,38.895,-77.036667,DISTRICT OF COLUMBIA 20224,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20226,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20227,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20228,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20229,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20230,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20232,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20233,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20235,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20237,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20238,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20239,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20240,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20241,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20242,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20244,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20245,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20250,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20251,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20254,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20260,WASHINGTON,DC,38.8836,-77.02,DISTRICT OF COLUMBIA 20261,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20262,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20265,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20266,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20268,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20270,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20277,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20289,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20299,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20301,WASHINGTON,DC,38.891019,-77.038196,DISTRICT OF COLUMBIA 20303,WASHINGTON,DC,38.9171,-76.994,DISTRICT OF COLUMBIA 20306,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20307,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20310,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20314,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20317,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20318,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20319,WASHINGTON,DC,38.867778,-77.015556,DISTRICT OF COLUMBIA 20330,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20340,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20350,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20355,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20370,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20372,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20375,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20380,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20389,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20390,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20392,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20393,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20394,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20395,WASHINGTON,DC,38.8619,-76.9738,DISTRICT OF COLUMBIA 20401,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20402,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20403,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20404,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20405,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20406,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20407,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20408,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20409,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20410,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20411,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20412,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20413,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20414,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20415,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20416,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20418,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20419,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20420,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20421,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20422,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20423,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20424,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20425,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20426,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20427,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20428,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20429,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20431,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20433,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20434,WASHINGTON,DC,38.9058,-77.0472,DISTRICT OF COLUMBIA 20435,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20436,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20437,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20439,WASHINGTON,DC,38.8991,-77.035,DISTRICT OF COLUMBIA 20440,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20441,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20442,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20444,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20447,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20451,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20453,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20456,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20460,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20463,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20468,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20469,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20470,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20472,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20500,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20501,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20502,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20503,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20504,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20505,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20506,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20507,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20508,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20509,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20510,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20511,WASHINGTON,DC,38.977,-77.0527,DISTRICT OF COLUMBIA 20515,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20520,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20521,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20522,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20523,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20524,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20525,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20526,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20527,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20528,WASHINGTON,DC,38.895,-77.0367,DISTRICT OF COLUMBIA 20529,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 20530,WASHINGTON,DC,38.894,-77.025,DISTRICT OF COLUMBIA 20531,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20532,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20533,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20534,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20535,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20536,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20537,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20538,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20539,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20540,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20541,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20542,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20543,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20544,WASHINGTON,DC,38.8968,-77.0079,DISTRICT OF COLUMBIA 20546,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20547,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20548,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20549,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20551,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20552,WASHINGTON,DC,38.8982,-77.0406,DISTRICT OF COLUMBIA 20553,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20554,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20555,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20557,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20558,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20559,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20560,WASHINGTON,DC,38.8888,-77.0254,DISTRICT OF COLUMBIA 20565,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20566,WASHINGTON,DC,38.8958,-77.056,DISTRICT OF COLUMBIA 20570,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20571,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20572,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20573,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20575,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20576,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20577,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20578,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20579,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20580,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20581,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20585,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20586,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20590,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20591,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20593,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20594,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20597,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20599,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20707,LAUREL,MD,39.107687,-76.872043,PRINCE GEORGES 20708,LAUREL,MD,39.068376,-76.847725,PRINCE GEORGES 20709,LAUREL,MD,39.061389,-76.851111,PRINCE GEORGES 20715,BOWIE,MD,38.979696,-76.743497,PRINCE GEORGES 20716,BOWIE,MD,38.927482,-76.731979,PRINCE GEORGES 20717,BOWIE,MD,38.925,-76.743056,PRINCE GEORGES 20718,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20719,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20720,BOWIE,MD,38.973733,-76.789526,PRINCE GEORGES 20721,BOWIE,MD,38.919588,-76.80527,PRINCE GEORGES 20723,LAUREL,MD,39.120806,-76.84345,HOWARD 20724,LAUREL,MD,39.095801,-76.815485,ANNE ARUNDEL 20725,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20726,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20781,HYATTSVILLE,MD,38.95063,-76.934652,PRINCE GEORGES 20782,HYATTSVILLE,MD,38.963575,-76.966632,PRINCE GEORGES 20783,HYATTSVILLE,MD,38.993751,-76.97472,PRINCE GEORGES 20784,HYATTSVILLE,MD,38.951541,-76.888829,PRINCE GEORGES 20785,HYATTSVILLE,MD,38.91992,-76.882243,PRINCE GEORGES 20787,HYATTSVILLE,MD,38.988611,-76.981667,PRINCE GEORGES 20788,HYATTSVILLE,MD,38.963333,-76.962222,PRINCE GEORGES 20810,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20811,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20813,BETHESDA,MD,38.9643,-77.0884,MONTGOMERY 20814,BETHESDA,MD,39.000343,-77.102165,MONTGOMERY 20816,BETHESDA,MD,38.958485,-77.11528,MONTGOMERY 20817,BETHESDA,MD,38.999659,-77.137239,MONTGOMERY 20824,BETHESDA,MD,38.9832,-77.0942,MONTGOMERY 20827,BETHESDA,MD,39.014,-77.1602,MONTGOMERY 20847,ROCKVILLE,MD,39.0838,-77.153,MONTGOMERY 20848,ROCKVILLE,MD,39.0753,-77.1165,MONTGOMERY 20849,ROCKVILLE,MD,39.084,-77.1537,MONTGOMERY 20850,ROCKVILLE,MD,39.087037,-77.167973,MONTGOMERY 20851,ROCKVILLE,MD,39.076265,-77.123449,MONTGOMERY 20852,ROCKVILLE,MD,39.049628,-77.120416,MONTGOMERY 20853,ROCKVILLE,MD,39.088738,-77.095037,MONTGOMERY 20857,ROCKVILLE,MD,39.0629,-77.1152,MONTGOMERY 20877,GAITHERSBURG,MD,39.14187,-77.188993,MONTGOMERY 20878,GAITHERSBURG,MD,39.115534,-77.236434,MONTGOMERY 20879,GAITHERSBURG,MD,39.172597,-77.194599,MONTGOMERY 20882,GAITHERSBURG,MD,39.238345,-77.174718,MONTGOMERY 20883,GAITHERSBURG,MD,39.1743,-77.1915,MONTGOMERY 20884,GAITHERSBURG,MD,39.139,-77.1942,MONTGOMERY 20885,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20889,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20892,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20894,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20898,GAITHERSBURG,MD,39.1272,-77.1727,MONTGOMERY 20899,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20901,SILVER SPRING,MD,39.019106,-77.007613,MONTGOMERY 20902,SILVER SPRING,MD,39.04158,-77.046348,MONTGOMERY 20903,SILVER SPRING,MD,39.009513,-76.984648,MONTGOMERY 20904,SILVER SPRING,MD,39.06524,-76.976399,MONTGOMERY 20905,SILVER SPRING,MD,39.102438,-76.989928,MONTGOMERY 20906,SILVER SPRING,MD,39.081041,-77.063233,MONTGOMERY 20907,SILVER SPRING,MD,38.9965,-77.0341,MONTGOMERY 20908,SILVER SPRING,MD,39.1029,-77.0763,MONTGOMERY 20910,SILVER SPRING,MD,38.998198,-77.033776,MONTGOMERY 20911,SILVER SPRING,MD,38.9943,-77.0302,MONTGOMERY 20914,SILVER SPRING,MD,39.075556,-77.002222,MONTGOMERY 20915,SILVER SPRING,MD,39.039722,-77.055556,MONTGOMERY 20916,SILVER SPRING,MD,39.083,-77.0785,MONTGOMERY 20918,SILVER SPRING,MD,39.0213,-77.015,MONTGOMERY 20993,SILVER SPRING,MD,38.9907,-77.0261,MONTGOMERY 20997,SILVER SPRING,MD,39.1127,-77.248,MONTGOMERY 21201,BALTIMORE,MD,39.29463,-76.625203,BALTIMORE CITY 21202,BALTIMORE,MD,39.299844,-76.607499,BALTIMORE CITY 21203,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21205,BALTIMORE,MD,39.300871,-76.579915,BALTIMORE CITY 21206,BALTIMORE,MD,39.336494,-76.541135,BALTIMORE CITY 21209,BALTIMORE,MD,39.371622,-76.674431,BALTIMORE CITY 21210,BALTIMORE,MD,39.350727,-76.632099,BALTIMORE CITY 21211,BALTIMORE,MD,39.331642,-76.633625,BALTIMORE CITY 21212,BALTIMORE,MD,39.362571,-76.609989,BALTIMORE CITY 21213,BALTIMORE,MD,39.312667,-76.581012,BALTIMORE CITY 21214,BALTIMORE,MD,39.35206,-76.564375,BALTIMORE CITY 21215,BALTIMORE,MD,39.344572,-76.679397,BALTIMORE CITY 21216,BALTIMORE,MD,39.309349,-76.669891,BALTIMORE CITY 21217,BALTIMORE,MD,39.306416,-76.639267,BALTIMORE CITY 21218,BALTIMORE,MD,39.3265,-76.6048,BALTIMORE CITY 21223,BALTIMORE,MD,39.287,-76.647586,BALTIMORE CITY 21224,BALTIMORE,MD,39.287558,-76.556831,BALTIMORE CITY 21229,BALTIMORE,MD,39.285645,-76.689885,BALTIMORE CITY 21230,BALTIMORE,MD,39.269943,-76.626193,BALTIMORE CITY 21231,BALTIMORE,MD,39.289193,-76.589956,BALTIMORE CITY 21233,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21235,BALTIMORE,MD,39.3111,-76.7213,BALTIMORE CITY 21239,BALTIMORE,MD,39.360977,-76.589082,BALTIMORE CITY 21240,BALTIMORE,MD,39.17185,-76.648287,ANNE ARUNDEL 21241,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21250,BALTIMORE,MD,39.2595,-76.7091,BALTIMORE 21251,BALTIMORE,MD,39.3459,-76.5856,BALTIMORE CITY 21252,BALTIMORE,MD,39.3875,-76.6184,BALTIMORE 21263,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21264,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21265,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21268,BALTIMORE,MD,39.2192,-76.7214,BALTIMORE CITY 21270,BALTIMORE,MD,39.3339,-76.674,BALTIMORE CITY 21273,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21274,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21275,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21278,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21279,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21280,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21281,BALTIMORE,MD,39.2873,-76.5419,BALTIMORE CITY 21282,BALTIMORE,MD,39.374167,-76.722778,BALTIMORE 21283,BALTIMORE,MD,39.2902,-76.6125,BALTIMORE CITY 21284,BALTIMORE,MD,39.418889,-76.535556,BALTIMORE 21285,BALTIMORE,MD,39.4164,-76.608,BALTIMORE 21287,BALTIMORE,MD,39.2946,-76.5908,BALTIMORE CITY 21288,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21289,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21290,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21297,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21298,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21401,ANNAPOLIS,MD,38.999645,-76.503139,ANNE ARUNDEL 21402,ANNAPOLIS,MD,38.982436,-76.48079,ANNE ARUNDEL 21403,ANNAPOLIS,MD,38.952394,-76.49103,ANNE ARUNDEL 21404,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21405,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21409,ANNAPOLIS,MD,39.01932,-76.441827,ANNE ARUNDEL 21411,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21412,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21660,RIDGELY,MD,38.956787,-75.884825,CAROLINE 21681,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21682,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21683,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21684,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21685,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21686,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21687,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21688,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21701,FREDERICK,MD,39.408235,-77.400875,FREDERICK 21702,FREDERICK,MD,39.436532,-77.447369,FREDERICK 21703,FREDERICK,MD,39.3876,-77.4471,FREDERICK 21704,FREDERICK,MD,39.325833,-77.351667,FREDERICK 21705,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21709,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21740,HAGERSTOWN,MD,39.632022,-77.737215,WASHINGTON 21741,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21742,HAGERSTOWN,MD,39.657291,-77.692102,WASHINGTON 21746,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21747,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21748,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21749,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 22030,FAIRFAX,VA,38.845826,-77.324151,FAIRFAX CITY 22031,FAIRFAX,VA,38.860353,-77.264937,FAIRFAX 22032,FAIRFAX,VA,38.817729,-77.292527,FAIRFAX 22033,FAIRFAX,VA,38.877627,-77.388451,FAIRFAX 22034,FAIRFAX,VA,38.8595,-77.2659,FAIRFAX 22035,FAIRFAX,VA,38.854,-77.3577,FAIRFAX 22036,FAIRFAX,VA,38.86,-77.2593,FAIRFAX 22037,FAIRFAX,VA,38.8594,-77.2269,FAIRFAX 22038,FAIRFAX,VA,38.8482,-77.3065,FAIRFAX CITY 22040,FALLS CHURCH,VA,38.8838,-77.1741,FALLS CHURCH CITY 22041,FALLS CHURCH,VA,38.848506,-77.136928,FAIRFAX 22042,FALLS CHURCH,VA,38.866272,-77.192271,FAIRFAX 22043,FALLS CHURCH,VA,38.901226,-77.20005,FAIRFAX 22044,FALLS CHURCH,VA,38.863544,-77.150819,FAIRFAX 22046,FALLS CHURCH,VA,38.88559,-77.180231,FALLS CHURCH CITY 22047,FALLS CHURCH,VA,38.869,-77.2241,FAIRFAX 22081,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22082,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22092,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22095,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22096,RESTON,VA,38.925278,-77.396944,FAIRFAX 22101,MC LEAN,VA,38.932624,-77.170628,FAIRFAX 22102,MC LEAN,VA,38.936318,-77.221934,FAIRFAX 22106,MC LEAN,VA,38.9372,-77.1786,FAIRFAX 22107,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22108,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22109,MC LEAN,VA,38.9327,-77.1825,FAIRFAX 22116,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22118,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22119,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22120,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22150,SPRINGFIELD,VA,38.779718,-77.186582,FAIRFAX 22151,SPRINGFIELD,VA,38.803323,-77.213908,FAIRFAX 22152,SPRINGFIELD,VA,38.776488,-77.233243,FAIRFAX 22153,SPRINGFIELD,VA,38.744859,-77.237026,FAIRFAX 22156,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22158,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22159,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22160,SPRINGFIELD,VA,38.8111,-77.2182,FAIRFAX 22161,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22180,VIENNA,VA,38.893527,-77.253219,FAIRFAX 22181,VIENNA,VA,38.897695,-77.288048,FAIRFAX 22182,VIENNA,VA,38.928005,-77.264876,FAIRFAX 22183,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22184,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22185,VIENNA,VA,38.880833,-77.301111,FAIRFAX 22201,ARLINGTON,VA,38.887103,-77.093197,ARLINGTON 22202,ARLINGTON,VA,38.856547,-77.059228,ARLINGTON 22203,ARLINGTON,VA,38.873799,-77.114191,ARLINGTON 22204,ARLINGTON,VA,38.858962,-77.099688,ARLINGTON 22205,ARLINGTON,VA,38.883557,-77.139488,ARLINGTON 22206,ARLINGTON,VA,38.841508,-77.09046,ARLINGTON 22207,ARLINGTON,VA,38.903321,-77.126287,ARLINGTON 22209,ARLINGTON,VA,38.8926,-77.07531,ARLINGTON 22210,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22212,ARLINGTON,VA,38.8809,-76.8545,ARLINGTON 22213,ARLINGTON,VA,38.895375,-77.163295,ARLINGTON 22214,ARLINGTON,VA,38.8795,-77.0802,ARLINGTON 22215,ARLINGTON,VA,38.8793,-77.1131,ARLINGTON 22216,ARLINGTON,VA,38.8916,-77.0839,ARLINGTON 22217,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22218,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22219,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22222,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22223,ARLINGTON,VA,38.8867,-77.0936,ARLINGTON 22225,ARLINGTON,VA,38.8566,-77.0584,ARLINGTON 22226,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22227,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22229,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22230,ARLINGTON,VA,38.873,-77.1042,ARLINGTON 22234,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22240,ARLINGTON,VA,38.88,-77.1153,ARLINGTON 22241,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22242,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22243,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22244,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22245,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22246,ARLINGTON,VA,38.8575,-77.0531,ARLINGTON 22301,ALEXANDRIA,VA,38.820042,-77.058901,ALEXANDRIA CITY 22302,ALEXANDRIA,VA,38.83354,-77.092412,ALEXANDRIA CITY 22303,ALEXANDRIA,VA,38.791143,-77.076608,FAIRFAX 22304,ALEXANDRIA,VA,38.814871,-77.120989,ALEXANDRIA CITY 22305,ALEXANDRIA,VA,38.837184,-77.064039,ALEXANDRIA CITY 22306,ALEXANDRIA,VA,38.755769,-77.085389,FAIRFAX 22307,ALEXANDRIA,VA,38.77056,-77.062511,FAIRFAX 22308,ALEXANDRIA,VA,38.729122,-77.060639,FAIRFAX 22309,ALEXANDRIA,VA,38.727855,-77.108139,FAIRFAX 22310,ALEXANDRIA,VA,38.769132,-77.131707,FAIRFAX 22311,ALEXANDRIA,VA,38.832039,-77.119962,ALEXANDRIA CITY 22312,ALEXANDRIA,VA,38.819099,-77.148438,FAIRFAX 22313,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22314,ALEXANDRIA,VA,38.806018,-77.052867,ALEXANDRIA CITY 22315,ALEXANDRIA,VA,38.756667,-77.145556,FAIRFAX 22320,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22321,ALEXANDRIA,VA,38.8062,-77.0528,FAIRFAX 22331,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22332,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22333,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22334,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22336,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22401,FREDERICKSBURG,VA,38.299538,-77.477152,FREDERICKSBURG CITY 22402,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22403,FREDERICKSBURG,VA,38.3242,-77.4685,STAFFORD 22404,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22405,FREDERICKSBURG,VA,38.314557,-77.404537,STAFFORD 22406,FREDERICKSBURG,VA,38.379627,-77.534892,STAFFORD 22407,FREDERICKSBURG,VA,38.268803,-77.547584,SPOTSYLVANIA 22408,FREDERICKSBURG,VA,38.248141,-77.468068,SPOTSYLVANIA 22412,FREDERICKSBURG,VA,38.3971,-77.5516,STAFFORD 22901,CHARLOTTESVILLE,VA,38.054752,-78.490869,ALBEMARLE 22902,CHARLOTTESVILLE,VA,37.9962,-78.4782,CHARLOTTESVILLE CITY 22903,CHARLOTTESVILLE,VA,38.032728,-78.505758,CHARLOTTESVILLE CITY 22904,CHARLOTTESVILLE,VA,38.0337,-78.5153,CHARLOTTESVILLE CITY 22905,CHARLOTTESVILLE,VA,38.0519,-78.501,CHARLOTTESVILLE CITY 22906,CHARLOTTESVILLE,VA,38.0883,-78.4701,CHARLOTTESVILLE CITY 22907,CHARLOTTESVILLE,VA,38.0575,-78.4922,CHARLOTTESVILLE CITY 22908,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22909,CHARLOTTESVILLE,VA,38.0444,-78.4726,ALBEMARLE 22910,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22911,CHARLOTTESVILLE,VA,38.0943,-78.4232,ALBEMARLE 23218,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23219,RICHMOND,VA,37.546265,-77.437798,RICHMOND CITY 23220,RICHMOND,VA,37.549808,-77.458798,RICHMOND CITY 23221,RICHMOND,VA,37.558301,-77.4845,RICHMOND CITY 23222,RICHMOND,VA,37.574802,-77.426725,RICHMOND CITY 23223,RICHMOND,VA,37.547721,-77.394772,RICHMOND CITY 23224,RICHMOND,VA,37.495512,-77.471014,RICHMOND CITY 23225,RICHMOND,VA,37.515842,-77.504709,RICHMOND CITY 23226,RICHMOND,VA,37.582473,-77.519657,HENRICO 23227,RICHMOND,VA,37.604181,-77.446309,HENRICO 23228,RICHMOND,VA,37.623503,-77.493308,HENRICO 23229,RICHMOND,VA,37.596351,-77.566202,HENRICO 23230,RICHMOND,VA,37.588376,-77.496828,HENRICO 23231,RICHMOND,VA,37.491529,-77.368002,HENRICO 23232,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23233,RICHMOND,VA,37.619354,-77.614933,HENRICO 23234,RICHMOND,VA,37.453158,-77.469798,CHESTERFIELD 23235,RICHMOND,VA,37.512034,-77.565103,CHESTERFIELD 23236,RICHMOND,VA,37.478165,-77.585413,CHESTERFIELD 23237,RICHMOND,VA,37.401145,-77.461471,CHESTERFIELD 23238,RICHMOND,VA,37.605,-77.6209,HENRICO 23240,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23241,RICHMOND,VA,37.5441,-77.4406,RICHMOND CITY 23242,RICHMOND,VA,37.6171,-77.6149,HENRICO 23249,RICHMOND,VA,37.4967,-77.4672,RICHMOND CITY 23250,RICHMOND,VA,37.502778,-77.337222,HENRICO 23255,RICHMOND,VA,37.6074,-77.5672,HENRICO 23260,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23261,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23269,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23273,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23274,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23276,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23278,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23279,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23282,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23284,RICHMOND,VA,37.5484,-77.454,RICHMOND CITY 23285,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23286,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23288,RICHMOND,VA,37.5992,-77.5456,HENRICO 23289,RICHMOND,VA,37.5439,-77.4489,RICHMOND CITY 23290,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23291,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23292,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23293,RICHMOND,VA,37.5428,-77.4396,RICHMOND CITY 23294,RICHMOND,VA,37.632923,-77.545125,HENRICO 23295,RICHMOND,VA,37.5537,-77.4609,RICHMOND CITY 23297,RICHMOND,VA,37.4019,-77.4597,CHESTERFIELD 23298,RICHMOND,VA,37.5419,-77.4288,RICHMOND CITY 23320,CHESAPEAKE,VA,36.735246,-76.23843,CHESAPEAKE CITY 23321,CHESAPEAKE,VA,36.827964,-76.411012,CHESAPEAKE CITY 23322,CHESAPEAKE,VA,36.634008,-76.213064,CHESAPEAKE CITY 23323,CHESAPEAKE,VA,36.763424,-76.339743,CHESAPEAKE CITY 23324,CHESAPEAKE,VA,36.805568,-76.266557,CHESAPEAKE CITY 23325,CHESAPEAKE,VA,36.813963,-76.240555,CHESAPEAKE CITY 23326,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23327,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23328,CHESAPEAKE,VA,36.7296,-76.2268,CHESAPEAKE CITY 23432,SUFFOLK,VA,36.866823,-76.559811,SUFFOLK CITY 23433,SUFFOLK,VA,36.909027,-76.49286,SUFFOLK CITY 23434,SUFFOLK,VA,36.730433,-76.593147,SUFFOLK CITY 23435,SUFFOLK,VA,36.854427,-76.466397,SUFFOLK CITY 23436,SUFFOLK,VA,36.892625,-76.514157,SUFFOLK CITY 23437,SUFFOLK,VA,36.652611,-76.792043,SUFFOLK CITY 23438,SUFFOLK,VA,36.591311,-76.687097,SUFFOLK CITY 23439,SUFFOLK,VA,36.728056,-76.583889,SUFFOLK CITY 23450,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23451,VIRGINIA BEACH,VA,36.858451,-76.001928,VIRGINIA BEACH CITY 23452,VIRGINIA BEACH,VA,36.83481,-76.096142,VIRGINIA BEACH CITY 23453,VIRGINIA BEACH,VA,36.7891,-76.0852,VIRGINIA BEACH CITY 23454,VIRGINIA BEACH,VA,36.828187,-76.023723,VIRGINIA BEACH CITY 23455,VIRGINIA BEACH,VA,36.888121,-76.144552,VIRGINIA BEACH CITY 23456,VIRGINIA BEACH,VA,36.779851,-76.089162,VIRGINIA BEACH CITY 23457,VIRGINIA BEACH,VA,36.624793,-76.037816,VIRGINIA BEACH CITY 23458,VIRGINIA BEACH,VA,36.8525,-75.9767,VIRGINIA BEACH CITY 23459,VIRGINIA BEACH,VA,36.9216,-76.017122,VIRGINIA BEACH CITY 23460,VIRGINIA BEACH,VA,36.8133,-76.0288,VIRGINIA BEACH CITY 23461,VIRGINIA BEACH,VA,36.7779,-75.9608,VIRGINIA BEACH CITY 23462,VIRGINIA BEACH,VA,36.839193,-76.152184,VIRGINIA BEACH CITY 23463,VIRGINIA BEACH,VA,36.7996,-76.1902,VIRGINIA BEACH CITY 23464,VIRGINIA BEACH,VA,36.797772,-76.175909,VIRGINIA BEACH CITY 23465,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23466,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23467,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23471,VIRGINIA BEACH,VA,36.8952,-76.1416,VIRGINIA BEACH CITY 23479,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23501,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23502,NORFOLK,VA,36.854648,-76.214253,NORFOLK CITY 23503,NORFOLK,VA,36.944196,-76.252008,NORFOLK CITY 23504,NORFOLK,VA,36.858554,-76.268628,NORFOLK CITY 23505,NORFOLK,VA,36.91675,-76.28748,NORFOLK CITY 23506,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23507,NORFOLK,VA,36.864506,-76.300385,NORFOLK CITY 23508,NORFOLK,VA,36.885922,-76.300356,NORFOLK CITY 23509,NORFOLK,VA,36.878743,-76.260361,NORFOLK CITY 23510,NORFOLK,VA,36.852929,-76.287784,NORFOLK CITY 23511,NORFOLK,VA,36.951164,-76.309206,NORFOLK CITY 23512,NORFOLK,VA,36.9214,-76.3161,NORFOLK CITY 23513,NORFOLK,VA,36.891395,-76.239578,NORFOLK CITY 23514,NORFOLK,VA,36.8469,-76.2904,NORFOLK CITY 23515,NORFOLK,VA,36.9471,-76.3005,NORFOLK CITY 23517,NORFOLK,VA,36.869547,-76.294519,NORFOLK CITY 23518,NORFOLK,VA,36.920246,-76.216027,NORFOLK CITY 23519,NORFOLK,VA,36.9222,-76.1884,NORFOLK CITY 23520,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23521,NORFOLK,VA,36.916923,-76.163715,NORFOLK CITY 23523,NORFOLK,VA,36.82942,-76.270125,NORFOLK CITY 23529,NORFOLK,VA,36.8871,-76.3053,NORFOLK CITY 23541,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23551,NORFOLK,VA,36.9246,-76.3027,NORFOLK CITY 23601,NEWPORT NEWS,VA,37.057951,-76.460722,NEWPORT NEWS CITY 23602,NEWPORT NEWS,VA,37.131684,-76.532125,NEWPORT NEWS CITY 23603,NEWPORT NEWS,VA,37.198887,-76.582059,NEWPORT NEWS CITY 23605,NEWPORT NEWS,VA,37.015583,-76.433158,NEWPORT NEWS CITY 23606,NEWPORT NEWS,VA,37.076777,-76.496724,NEWPORT NEWS CITY 23607,NEWPORT NEWS,VA,36.986352,-76.416469,NEWPORT NEWS CITY 23608,NEWPORT NEWS,VA,37.1523,-76.5424,NEWPORT NEWS CITY 23609,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23612,NEWPORT NEWS,VA,37.0679,-76.4959,NEWPORT NEWS CITY 23628,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23630,HAMPTON,VA,37.0065,-76.413,HAMPTON CITY 23661,HAMPTON,VA,37.007432,-76.380085,HAMPTON CITY 23663,HAMPTON,VA,37.03181,-76.319875,HAMPTON CITY 23664,HAMPTON,VA,37.056611,-76.296639,HAMPTON CITY 23665,HAMPTON,VA,37.100565,-76.409939,YORK 23666,HAMPTON,VA,37.046241,-76.409617,HAMPTON CITY 23667,HAMPTON,VA,37.0297,-76.3455,HAMPTON CITY 23668,HAMPTON,VA,37.0207,-76.3323,HAMPTON CITY 23669,HAMPTON,VA,37.043559,-76.342573,HAMPTON CITY 23670,HAMPTON,VA,37.0059,-76.4122,HAMPTON CITY 23681,HAMPTON,VA,37.1009,-76.3932,HAMPTON CITY 23701,PORTSMOUTH,VA,36.808902,-76.36714,PORTSMOUTH CITY 23702,PORTSMOUTH,VA,36.803534,-76.326979,PORTSMOUTH CITY 23703,PORTSMOUTH,VA,36.869501,-76.386872,PORTSMOUTH CITY 23704,PORTSMOUTH,VA,36.829821,-76.314604,PORTSMOUTH CITY 23705,PORTSMOUTH,VA,36.8352,-76.2986,PORTSMOUTH CITY 23707,PORTSMOUTH,VA,36.836234,-76.344011,PORTSMOUTH CITY 23708,PORTSMOUTH,VA,36.8458,-76.3085,PORTSMOUTH CITY 23709,PORTSMOUTH,VA,36.813883,-76.305188,PORTSMOUTH CITY 24001,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24002,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24003,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24004,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24005,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24006,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24007,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24008,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24009,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24010,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24011,ROANOKE,VA,37.268997,-79.942019,ROANOKE CITY 24012,ROANOKE,VA,37.302912,-79.932179,ROANOKE CITY 24013,ROANOKE,VA,37.267685,-79.924747,ROANOKE CITY 24014,ROANOKE,VA,37.23268,-79.946332,ROANOKE CITY 24015,ROANOKE,VA,37.258363,-79.980694,ROANOKE CITY 24016,ROANOKE,VA,37.270407,-79.953495,ROANOKE CITY 24017,ROANOKE,VA,37.293655,-79.990248,ROANOKE CITY 24018,ROANOKE,VA,37.231554,-80.021749,ROANOKE 24019,ROANOKE,VA,37.33585,-79.956328,ROANOKE 24020,ROANOKE,VA,37.355278,-79.942222,ROANOKE 24022,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24023,ROANOKE,VA,37.2698,-79.9537,ROANOKE CITY 24024,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24025,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24026,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24027,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24028,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24029,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24030,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24031,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24032,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24033,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24034,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24035,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24036,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24037,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24038,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24040,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24042,ROANOKE,VA,37.2695,-79.9386,ROANOKE CITY 24043,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24044,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24045,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24048,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24050,ROANOKE,VA,37.2725,-79.953,BOTETOURT 24155,ROANOKE,VA,37.2935,-80.0553,SALEM 24157,ROANOKE,VA,37.2912,-80.0649,SALEM 24501,LYNCHBURG,VA,37.386228,-79.171464,LYNCHBURG CITY 24502,LYNCHBURG,VA,37.359635,-79.211783,LYNCHBURG CITY 24503,LYNCHBURG,VA,37.437646,-79.204982,LYNCHBURG CITY 24504,LYNCHBURG,VA,37.390422,-79.12142,LYNCHBURG CITY 24505,LYNCHBURG,VA,37.4146,-79.1434,LYNCHBURG CITY 24506,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24512,LYNCHBURG,VA,37.4502,-79.2501,LYNCHBURG CITY 24513,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24514,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24515,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 25301,CHARLESTON,WV,38.349,-81.630606,KANAWHA 25302,CHARLESTON,WV,38.383178,-81.623876,KANAWHA 25303,CHARLESTON,WV,38.359226,-81.684079,KANAWHA 25304,CHARLESTON,WV,38.317289,-81.590272,KANAWHA 25305,CHARLESTON,WV,38.3367,-81.6085,KANAWHA 25306,CHARLESTON,WV,38.30028,-81.536813,KANAWHA 25309,CHARLESTON,WV,38.344903,-81.734462,KANAWHA 25311,CHARLESTON,WV,38.349032,-81.599282,KANAWHA 25312,CHARLESTON,WV,38.409563,-81.674688,KANAWHA 25313,CHARLESTON,WV,38.424982,-81.764877,KANAWHA 25314,CHARLESTON,WV,38.327442,-81.668988,KANAWHA 25315,CHARLESTON,WV,38.233309,-81.554361,KANAWHA 25317,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25320,CHARLESTON,WV,38.509586,-81.629585,KANAWHA 25321,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25322,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25323,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25324,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25325,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25326,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25327,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25328,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25329,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25330,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25331,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25332,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25333,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25334,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25335,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25336,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25337,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25338,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25339,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25350,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25356,CHARLESTON,WV,38.4461,-81.7553,KANAWHA 25357,CHARLESTON,WV,38.3759,-81.6733,KANAWHA 25358,CHARLESTON,WV,38.3528,-81.6314,KANAWHA 25360,CHARLESTON,WV,38.4538,-81.6666,KANAWHA 25361,CHARLESTON,WV,38.3422,-81.6213,KANAWHA 25362,CHARLESTON,WV,38.3601,-81.6462,KANAWHA 25364,CHARLESTON,WV,38.3219,-81.5827,KANAWHA 25365,CHARLESTON,WV,38.2335,-81.5734,KANAWHA 25375,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25387,CHARLESTON,WV,38.3102,-81.5674,KANAWHA 25389,CHARLESTON,WV,38.3529,-81.6381,KANAWHA 25392,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25396,CHARLESTON,WV,38.3373,-81.6276,KANAWHA 25401,MARTINSBURG,WV,39.459959,-77.958915,BERKELEY 25402,MARTINSBURG,WV,39.4643,-77.9513,BERKELEY 25403,MARTINSBURG,WV,39.4895,-77.9909,BERKELEY 25404,MARTINSBURG,WV,39.4833,-77.9254,BERKELEY 25405,MARTINSBURG,WV,39.4151,-77.9647,BERKELEY 25429,MARTINSBURG,WV,39.3203,-77.9491,BERKELEY 25701,HUNTINGTON,WV,38.409726,-82.442348,CABELL 25702,HUNTINGTON,WV,38.42862,-82.391083,CABELL 25703,HUNTINGTON,WV,38.421116,-82.422666,CABELL 25704,HUNTINGTON,WV,38.384943,-82.503646,WAYNE 25705,HUNTINGTON,WV,38.409588,-82.36901,CABELL 25706,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25707,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25708,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25709,HUNTINGTON,WV,38.4141,-82.458,CABELL 25710,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25711,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25712,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25713,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25714,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25715,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25716,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25717,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25718,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25719,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25720,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25721,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25722,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25723,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25724,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25725,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25726,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25727,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25728,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25729,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25755,HUNTINGTON,WV,38.4226,-82.4315,CABELL 25770,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25771,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25772,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25773,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25774,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25775,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25776,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25777,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25778,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25779,HUNTINGTON,WV,38.4156,-82.4741,CABELL 26501,MORGANTOWN,WV,39.6368,-80.018,MONONGALIA 26502,MORGANTOWN,WV,39.5863,-79.959,MONONGALIA 26504,MORGANTOWN,WV,39.658333,-79.986667,MONONGALIA 26505,MORGANTOWN,WV,39.633858,-79.954225,MONONGALIA 26506,MORGANTOWN,WV,39.6494,-79.9571,MONONGALIA 26507,MORGANTOWN,WV,39.6276,-79.9574,MONONGALIA 26508,MORGANTOWN,WV,39.556667,-80,MONONGALIA 27101,WINSTON SALEM,NC,36.10237,-80.222798,FORSYTH 27102,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27103,WINSTON SALEM,NC,36.067127,-80.302509,FORSYTH 27104,WINSTON SALEM,NC,36.091985,-80.322423,FORSYTH 27105,WINSTON SALEM,NC,36.144039,-80.237646,FORSYTH 27106,WINSTON SALEM,NC,36.142762,-80.306866,FORSYTH 27107,WINSTON SALEM,NC,36.040324,-80.193265,FORSYTH 27108,WINSTON SALEM,NC,36.0869,-80.2486,FORSYTH 27109,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27110,WINSTON SALEM,NC,36.0902,-80.2275,FORSYTH 27111,WINSTON SALEM,NC,36.1267,-80.0669,FORSYTH 27113,WINSTON SALEM,NC,36.0894,-80.2738,FORSYTH 27114,WINSTON SALEM,NC,36.0758,-80.3103,FORSYTH 27115,WINSTON SALEM,NC,36.1351,-80.2426,FORSYTH 27116,WINSTON SALEM,NC,36.1412,-80.2995,FORSYTH 27117,WINSTON SALEM,NC,36.0699,-80.2067,FORSYTH 27120,WINSTON SALEM,NC,36.1042,-80.2442,FORSYTH 27127,WINSTON SALEM,NC,36.042534,-80.260946,FORSYTH 27130,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27150,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27151,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27152,WINSTON SALEM,NC,36.1005,-80.208,FORSYTH 27155,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27156,WINSTON SALEM,NC,36.1434,-80.2275,FORSYTH 27157,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27198,WINSTON SALEM,NC,36.1028,-80.2225,FORSYTH 27199,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27260,HIGH POINT,NC,35.959313,-80.011673,GUILFORD 27261,HIGH POINT,NC,35.9537,-80.0024,GUILFORD 27262,HIGH POINT,NC,35.973406,-80.010677,GUILFORD 27263,HIGH POINT,NC,35.910757,-79.961764,GUILFORD 27264,HIGH POINT,NC,36.0354,-79.998,GUILFORD 27265,HIGH POINT,NC,36.003584,-80.003571,GUILFORD 27395,GREENSBORO,NC,36.0726,-79.792,CASWELL 27401,GREENSBORO,NC,36.069741,-79.768151,GUILFORD 27402,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27403,GREENSBORO,NC,36.064147,-79.820181,GUILFORD 27404,GREENSBORO,NC,36.0853,-79.833,GUILFORD 27405,GREENSBORO,NC,36.121408,-79.7733,GUILFORD 27406,GREENSBORO,NC,36.021969,-79.782058,GUILFORD 27407,GREENSBORO,NC,36.033442,-79.862647,GUILFORD 27408,GREENSBORO,NC,36.1064,-79.816531,GUILFORD 27409,GREENSBORO,NC,36.077683,-79.908602,GUILFORD 27410,GREENSBORO,NC,36.103164,-79.879365,GUILFORD 27411,GREENSBORO,NC,36.078,-79.7706,GUILFORD 27412,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27413,GREENSBORO,NC,36.0712,-79.8114,GUILFORD 27415,GREENSBORO,NC,36.0917,-79.7805,GUILFORD 27416,GREENSBORO,NC,36.0018,-79.7626,GUILFORD 27417,GREENSBORO,NC,36.0091,-79.8743,GUILFORD 27419,GREENSBORO,NC,36.1271,-79.944,GUILFORD 27420,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27425,GREENSBORO,NC,36.126944,-79.943889,GUILFORD 27427,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27429,GREENSBORO,NC,36.0935,-79.8147,GUILFORD 27435,GREENSBORO,NC,36.0655,-79.8052,GUILFORD 27438,GREENSBORO,NC,36.1129,-79.8333,GUILFORD 27455,GREENSBORO,NC,36.1567,-79.8143,GUILFORD 27480,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27495,GREENSBORO,NC,36.0389,-79.9433,GUILFORD 27497,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27498,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27499,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27601,RALEIGH,NC,35.772701,-78.632439,WAKE 27602,RALEIGH,NC,35.7719,-78.6388,WAKE 27603,RALEIGH,NC,35.707569,-78.656265,WAKE 27604,RALEIGH,NC,35.833407,-78.579949,WAKE 27605,RALEIGH,NC,35.790795,-78.653025,WAKE 27606,RALEIGH,NC,35.764499,-78.711189,WAKE 27607,RALEIGH,NC,35.801385,-78.687747,WAKE 27608,RALEIGH,NC,35.807746,-78.646277,WAKE 27609,RALEIGH,NC,35.847989,-78.631654,WAKE 27610,RALEIGH,NC,35.766674,-78.60076,WAKE 27611,RALEIGH,NC,35.7719,-78.6388,WAKE 27612,RALEIGH,NC,35.851997,-78.684119,WAKE 27613,RALEIGH,NC,35.894932,-78.705059,WAKE 27614,RALEIGH,NC,35.945711,-78.643339,WAKE 27615,RALEIGH,NC,35.888744,-78.639277,WAKE 27616,RALEIGH,NC,35.8662,-78.549,WAKE 27617,RALEIGH,NC,35.9073,-78.7741,WAKE 27619,RALEIGH,NC,35.8973,-78.6338,WAKE 27620,RALEIGH,NC,35.7719,-78.6388,WAKE 27621,RALEIGH,NC,35.7719,-78.6388,WAKE 27622,RALEIGH,NC,35.8501,-78.6916,WAKE 27623,RALEIGH,NC,35.8607,-78.7928,WAKE 27624,RALEIGH,NC,35.8423,-78.6337,WAKE 27625,RALEIGH,NC,35.7719,-78.6388,WAKE 27626,RALEIGH,NC,35.7719,-78.6388,WAKE 27627,RALEIGH,NC,35.7676,-78.695,WAKE 27628,RALEIGH,NC,35.7719,-78.6388,WAKE 27629,RALEIGH,NC,35.7719,-78.6388,WAKE 27634,RALEIGH,NC,35.7719,-78.6388,WAKE 27635,RALEIGH,NC,35.7719,-78.6388,WAKE 27636,RALEIGH,NC,35.7719,-78.6388,WAKE 27640,RALEIGH,NC,35.7719,-78.6388,WAKE 27650,RALEIGH,NC,35.7719,-78.6388,WAKE 27656,RALEIGH,NC,35.8501,-78.6916,WAKE 27658,RALEIGH,NC,35.8478,-78.5965,WAKE 27661,RALEIGH,NC,35.8928,-78.56,WAKE 27668,RALEIGH,NC,35.8422,-78.6337,WAKE 27675,RALEIGH,NC,35.9025,-78.7452,WAKE 27676,RALEIGH,NC,35.9057,-78.7488,WAKE 27690,RALEIGH,NC,35.8932,-78.6251,WAKE 27695,RALEIGH,NC,35.8086,-78.7196,WAKE 27697,RALEIGH,NC,35.7719,-78.6388,WAKE 27698,RALEIGH,NC,35.7719,-78.6388,WAKE 27699,RALEIGH,NC,35.6682,-78.6618,WAKE 27701,DURHAM,NC,35.996725,-78.896613,DURHAM 27702,DURHAM,NC,35.9938,-78.8988,DURHAM 27703,DURHAM,NC,35.978122,-78.843874,DURHAM 27704,DURHAM,NC,36.038297,-78.876437,DURHAM 27705,DURHAM,NC,36.021846,-78.947776,DURHAM 27706,DURHAM,NC,36.002427,-78.937524,DURHAM 27707,DURHAM,NC,35.963076,-78.931484,DURHAM 27708,DURHAM,NC,35.9985,-78.9394,DURHAM 27710,DURHAM,NC,35.9938,-78.8988,DURHAM 27711,DURHAM,NC,35.905,-78.8785,DURHAM 27712,DURHAM,NC,36.091779,-78.929919,DURHAM 27713,DURHAM,NC,35.916105,-78.916641,DURHAM 27715,DURHAM,NC,35.9938,-78.8988,DURHAM 27717,DURHAM,NC,35.9938,-78.8988,DURHAM 27722,DURHAM,NC,36.1002,-78.9248,DURHAM 28201,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28202,CHARLOTTE,NC,35.229002,-80.841864,MECKLENBURG 28203,CHARLOTTE,NC,35.208139,-80.858279,MECKLENBURG 28204,CHARLOTTE,NC,35.213178,-80.823149,MECKLENBURG 28205,CHARLOTTE,NC,35.219951,-80.788129,MECKLENBURG 28206,CHARLOTTE,NC,35.252173,-80.826505,MECKLENBURG 28207,CHARLOTTE,NC,35.193474,-80.827248,MECKLENBURG 28208,CHARLOTTE,NC,35.235795,-80.896352,MECKLENBURG 28209,CHARLOTTE,NC,35.179629,-80.855926,MECKLENBURG 28210,CHARLOTTE,NC,35.131586,-80.857749,MECKLENBURG 28211,CHARLOTTE,NC,35.167653,-80.793244,MECKLENBURG 28212,CHARLOTTE,NC,35.190797,-80.744777,MECKLENBURG 28213,CHARLOTTE,NC,35.317868,-80.750079,MECKLENBURG 28214,CHARLOTTE,NC,35.273095,-80.95709,MECKLENBURG 28215,CHARLOTTE,NC,35.243962,-80.738669,MECKLENBURG 28216,CHARLOTTE,NC,35.283377,-80.870216,MECKLENBURG 28217,CHARLOTTE,NC,35.0972,-81.007848,MECKLENBURG 28218,CHARLOTTE,NC,35.1985,-80.7893,MECKLENBURG 28219,CHARLOTTE,NC,35.2063,-80.9419,MECKLENBURG 28220,CHARLOTTE,NC,35.1755,-80.851,MECKLENBURG 28221,CHARLOTTE,NC,35.2967,-80.7998,MECKLENBURG 28222,CHARLOTTE,NC,35.1663,-80.7959,MECKLENBURG 28223,CHARLOTTE,NC,35.3239,-80.7427,MECKLENBURG 28224,CHARLOTTE,NC,35.1503,-80.8763,MECKLENBURG 28226,CHARLOTTE,NC,35.086856,-80.816675,MECKLENBURG 28227,CHARLOTTE,NC,35.193612,-80.684634,MECKLENBURG 28228,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28229,CHARLOTTE,NC,35.2027,-80.7346,MECKLENBURG 28230,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28231,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28232,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28233,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28234,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28235,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28236,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28237,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28241,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28242,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28243,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28244,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28246,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28247,CHARLOTTE,NC,35.1034,-80.825,MECKLENBURG 28250,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28253,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28254,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28255,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28256,CHARLOTTE,NC,35.2802,-80.7656,MECKLENBURG 28258,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28260,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28262,CHARLOTTE,NC,35.272506,-80.775958,MECKLENBURG 28263,CHARLOTTE,NC,35.2101,-80.689,MECKLENBURG 28265,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28266,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28269,CHARLOTTE,NC,35.288635,-80.820941,MECKLENBURG 28270,CHARLOTTE,NC,35.135473,-80.766872,MECKLENBURG 28271,CHARLOTTE,NC,35.2267,-80.8434,MECKLENBURG 28272,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28273,CHARLOTTE,NC,35.159646,-80.896673,MECKLENBURG 28274,CHARLOTTE,NC,35.1873,-80.8298,MECKLENBURG 28275,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28277,CHARLOTTE,NC,35.134486,-80.800174,MECKLENBURG 28278,CHARLOTTE,NC,35.146685,-80.960421,MECKLENBURG 28280,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28281,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28282,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28284,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28285,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28287,CHARLOTTE,NC,35.15,-80.84,MECKLENBURG 28288,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28289,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28290,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28296,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28297,CHARLOTTE,NC,35.2762,-80.8558,MECKLENBURG 28299,CHARLOTTE,NC,35.2189,-80.8122,MECKLENBURG 28301,FAYETTEVILLE,NC,35.05099,-78.842255,CUMBERLAND 28302,FAYETTEVILLE,NC,34.9677,-78.7392,CUMBERLAND 28303,FAYETTEVILLE,NC,35.084046,-78.960135,CUMBERLAND 28304,FAYETTEVILLE,NC,35.025683,-78.970494,CUMBERLAND 28305,FAYETTEVILLE,NC,35.056022,-78.904658,CUMBERLAND 28306,FAYETTEVILLE,NC,35.001874,-78.936408,CUMBERLAND 28309,FAYETTEVILLE,NC,35.0554,-78.8777,CUMBERLAND 28311,FAYETTEVILLE,NC,35.129416,-78.898217,CUMBERLAND 28312,FAYETTEVILLE,NC,35.034,-78.7926,CUMBERLAND 28314,FAYETTEVILLE,NC,35.058322,-79.007985,CUMBERLAND 28401,WILMINGTON,NC,34.225304,-77.937856,NEW HANOVER 28402,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28403,WILMINGTON,NC,34.223653,-77.886213,NEW HANOVER 28404,WILMINGTON,NC,34.2251,-77.9377,NEW HANOVER 28405,WILMINGTON,NC,34.264065,-77.852937,NEW HANOVER 28406,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28407,WILMINGTON,NC,34.1569,-77.8925,NEW HANOVER 28408,WILMINGTON,NC,34.1279,-77.8991,NEW HANOVER 28409,WILMINGTON,NC,34.166256,-77.87227,NEW HANOVER 28410,WILMINGTON,NC,34.1388,-77.9168,NEW HANOVER 28411,WILMINGTON,NC,34.2834,-77.8044,NEW HANOVER 28412,WILMINGTON,NC,34.157173,-77.914137,NEW HANOVER 28801,ASHEVILLE,NC,35.597075,-82.556533,BUNCOMBE 28802,ASHEVILLE,NC,35.594,-82.5554,BUNCOMBE 28803,ASHEVILLE,NC,35.539291,-82.518021,BUNCOMBE 28804,ASHEVILLE,NC,35.63743,-82.564625,BUNCOMBE 28805,ASHEVILLE,NC,35.600363,-82.491781,BUNCOMBE 28806,ASHEVILLE,NC,35.580814,-82.607787,BUNCOMBE 28810,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28813,ASHEVILLE,NC,35.5439,-82.5335,BUNCOMBE 28814,ASHEVILLE,NC,35.6237,-82.5545,BUNCOMBE 28815,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28816,ASHEVILLE,NC,35.5835,-82.6048,BUNCOMBE 29201,COLUMBIA,SC,34.0004,-81.033418,RICHLAND 29202,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29203,COLUMBIA,SC,34.063452,-81.026462,RICHLAND 29204,COLUMBIA,SC,34.026037,-81.004647,RICHLAND 29205,COLUMBIA,SC,33.990309,-80.999731,RICHLAND 29206,COLUMBIA,SC,34.024655,-80.953152,RICHLAND 29207,COLUMBIA,SC,34.0133,-80.9407,RICHLAND 29208,COLUMBIA,SC,33.9964,-81.0265,RICHLAND 29209,COLUMBIA,SC,33.965863,-80.935525,RICHLAND 29210,COLUMBIA,SC,34.047863,-81.11006,RICHLAND 29211,COLUMBIA,SC,34.003,-81.0322,RICHLAND 29212,COLUMBIA,SC,34.072613,-81.179617,LEXINGTON 29214,COLUMBIA,SC,33.9967,-81.0481,RICHLAND 29215,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29216,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29217,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29218,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29219,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29220,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29221,COLUMBIA,SC,34.0407,-81.0973,RICHLAND 29222,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29223,COLUMBIA,SC,34.085267,-80.91667,RICHLAND 29224,COLUMBIA,SC,34.0568,-80.8456,RICHLAND 29225,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29226,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29227,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29228,COLUMBIA,SC,33.9207,-81.0927,LEXINGTON 29229,COLUMBIA,SC,34.1434,-80.8876,RICHLAND 29230,COLUMBIA,SC,34.1402,-81.0648,RICHLAND 29240,COLUMBIA,SC,34.0298,-81.0075,RICHLAND 29250,COLUMBIA,SC,34.0001,-81.0167,RICHLAND 29260,COLUMBIA,SC,34.0125,-80.9664,RICHLAND 29290,COLUMBIA,SC,33.9641,-80.9425,RICHLAND 29292,COLUMBIA,SC,34.0062,-81.0377,RICHLAND 29301,SPARTANBURG,SC,34.935211,-81.965377,SPARTANBURG 29302,SPARTANBURG,SC,34.956283,-81.873625,SPARTANBURG 29303,SPARTANBURG,SC,34.993728,-81.957566,SPARTANBURG 29304,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29305,SPARTANBURG,SC,35.0039,-81.9702,SPARTANBURG 29306,SPARTANBURG,SC,34.9195,-81.9291,SPARTANBURG 29307,SPARTANBURG,SC,34.983,-81.8569,SPARTANBURG 29318,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29319,SPARTANBURG,SC,34.95,-81.929,SPARTANBURG 29401,CHARLESTON,SC,32.779506,-79.937069,CHARLESTON 29402,CHARLESTON,SC,32.7763,-79.9317,CHARLESTON 29403,CHARLESTON,SC,32.797575,-79.949283,CHARLESTON 29405,NORTH CHARLESTON,SC,32.851206,-79.976442,CHARLESTON 29406,CHARLESTON,SC,32.903035,-80.001053,CHARLESTON 29407,CHARLESTON,SC,32.799322,-80.005953,CHARLESTON 29409,CHARLESTON,SC,32.7763,-79.9311,CHARLESTON 29410,NORTH CHARLESTON,SC,33.0562,-80.0759,BERKELEY 29412,CHARLESTON,SC,32.732319,-79.954727,CHARLESTON 29413,CHARLESTON,SC,32.7919,-79.9314,CHARLESTON 29414,CHARLESTON,SC,32.821538,-80.056756,CHARLESTON 29415,NORTH CHARLESTON,SC,32.8672,-79.9978,CHARLESTON 29416,CHARLESTON,SC,32.8753,-80.0599,CHARLESTON 29417,CHARLESTON,SC,32.7865,-79.9923,CHARLESTON 29418,NORTH CHARLESTON,SC,32.907135,-80.055126,CHARLESTON 29419,NORTH CHARLESTON,SC,32.9169,-80.0282,CHARLESTON 29420,NORTH CHARLESTON,SC,32.933096,-80.086463,DORCHESTER 29422,CHARLESTON,SC,32.6823,-79.9575,CHARLESTON 29423,CHARLESTON,SC,32.9521,-80.0641,CHARLESTON 29424,CHARLESTON,SC,32.7836,-79.937,CHARLESTON 29425,CHARLESTON,SC,32.7848,-79.9493,CHARLESTON 29492,CHARLESTON,SC,32.962223,-79.86533,BERKELEY 29501,FLORENCE,SC,34.18375,-79.772786,FLORENCE 29502,FLORENCE,SC,34.1952,-79.8026,FLORENCE 29503,FLORENCE,SC,34.1968,-79.7729,FLORENCE 29504,FLORENCE,SC,34.1652,-79.7644,FLORENCE 29505,FLORENCE,SC,34.256368,-79.775983,FLORENCE 29506,FLORENCE,SC,34.245178,-79.794547,FLORENCE 29572,MYRTLE BEACH,SC,33.758701,-78.804448,HORRY 29575,MYRTLE BEACH,SC,33.625245,-78.995228,HORRY 29577,MYRTLE BEACH,SC,33.699363,-78.913697,HORRY 29578,MYRTLE BEACH,SC,33.6888,-78.8869,HORRY 29579,MYRTLE BEACH,SC,33.7438,-78.9361,HORRY 29587,MYRTLE BEACH,SC,33.605833,-78.973333,HORRY 29588,MYRTLE BEACH,SC,33.6742,-79.0108,HORRY 29601,GREENVILLE,SC,34.847165,-82.406049,GREENVILLE 29602,GREENVILLE,SC,34.8545,-82.4091,GREENVILLE 29603,GREENVILLE,SC,34.8499,-82.3969,GREENVILLE 29604,GREENVILLE,SC,34.8276,-82.3996,GREENVILLE 29605,GREENVILLE,SC,34.800117,-82.393218,GREENVILLE 29606,GREENVILLE,SC,34.8422,-82.3612,GREENVILLE 29607,GREENVILLE,SC,34.828507,-82.35155,GREENVILLE 29608,GREENVILLE,SC,34.8794,-82.405,GREENVILLE 29609,GREENVILLE,SC,34.892101,-82.400195,GREENVILLE 29610,GREENVILLE,SC,34.8839,-82.4697,GREENVILLE 29611,GREENVILLE,SC,34.85331,-82.449296,GREENVILLE 29612,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29613,GREENVILLE,SC,34.9231,-82.4355,GREENVILLE 29614,GREENVILLE,SC,34.9152,-82.3905,GREENVILLE 29615,GREENVILLE,SC,34.866095,-82.319815,GREENVILLE 29616,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29617,GREENVILLE,SC,34.8988,-82.4482,GREENVILLE 29621,ANDERSON,SC,34.526051,-82.630436,ANDERSON 29622,ANDERSON,SC,34.5082,-82.6498,ANDERSON 29623,ANDERSON,SC,34.5453,-82.6696,ANDERSON 29624,ANDERSON,SC,34.474807,-82.677052,ANDERSON 29625,ANDERSON,SC,34.527134,-82.70868,ANDERSON 29626,ANDERSON,SC,34.4631,-82.7546,ANDERSON 29698,GREENVILLE,SC,34.9137,-82.0978,SPARTANBURG 29801,AIKEN,SC,33.553024,-81.719429,AIKEN 29802,AIKEN,SC,33.6125,-81.7089,AIKEN 29803,AIKEN,SC,33.531868,-81.594702,AIKEN 29804,AIKEN,SC,33.5149,-81.7321,AIKEN 29805,AIKEN,SC,33.6531,-81.6301,AIKEN 29808,AIKEN,SC,33.2541,-81.6281,AIKEN 29901,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29902,BEAUFORT,SC,32.418035,-80.709026,BEAUFORT 29903,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29904,BEAUFORT,SC,32.4583,-80.7102,BEAUFORT 29905,BEAUFORT,SC,32.3502,-80.682,BEAUFORT 29906,BEAUFORT,SC,32.4454,-80.747,BEAUFORT 30003,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30006,MARIETTA,GA,33.9043,-84.468,COBB 30007,MARIETTA,GA,33.9802,-84.425,COBB 30008,MARIETTA,GA,33.8997,-84.5847,COBB 30010,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30030,DECATUR,GA,33.769883,-84.295044,DEKALB 30031,DECATUR,GA,33.775,-84.3047,DEKALB 30032,DECATUR,GA,33.740825,-84.263165,DEKALB 30033,DECATUR,GA,33.812305,-84.281918,DEKALB 30034,DECATUR,GA,33.695385,-84.248939,DEKALB 30035,DECATUR,GA,33.72784,-84.2143,DEKALB 30036,DECATUR,GA,33.772,-84.2917,DEKALB 30037,DECATUR,GA,33.7059,-84.2719,DEKALB 30042,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30043,LAWRENCEVILLE,GA,33.9967,-84.0186,GWINNETT 30044,LAWRENCEVILLE,GA,33.9256,-84.0697,GWINNETT 30045,LAWRENCEVILLE,GA,33.9427,-83.9782,GWINNETT 30046,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30049,LAWRENCEVILLE,GA,33.635376,-84.264333,GWINNETT 30060,MARIETTA,GA,33.909199,-84.564881,COBB 30061,MARIETTA,GA,33.9529,-84.5454,COBB 30062,MARIETTA,GA,34.002521,-84.463291,COBB 30063,MARIETTA,GA,33.9529,-84.5454,COBB 30064,MARIETTA,GA,33.934285,-84.607584,COBB 30065,MARIETTA,GA,33.9525,-84.55,COBB 30066,MARIETTA,GA,34.037807,-84.503817,COBB 30067,MARIETTA,GA,33.928198,-84.473251,COBB 30068,MARIETTA,GA,33.967861,-84.438549,COBB 30069,MARIETTA,GA,33.9178,-84.5212,COBB 30071,NORCROSS,GA,33.938145,-84.197158,GWINNETT 30073,DECATUR,GA,33.875377,-84.685645,DEKALB 30090,MARIETTA,GA,33.9527,-84.5489,COBB 30091,NORCROSS,GA,33.9405,-84.2078,GWINNETT 30092,NORCROSS,GA,33.967688,-84.243787,GWINNETT 30093,NORCROSS,GA,33.905964,-84.183953,GWINNETT 30301,ATLANTA,GA,33.7564,-84.3918,FULTON 30302,ATLANTA,GA,33.7493,-84.3958,FULTON 30303,ATLANTA,GA,33.752504,-84.388846,FULTON 30304,ATLANTA,GA,33.6605,-84.3858,FULTON 30305,ATLANTA,GA,33.831963,-84.385145,FULTON 30306,ATLANTA,GA,33.786027,-84.351418,FULTON 30307,ATLANTA,GA,33.769138,-84.335957,FULTON 30308,ATLANTA,GA,33.771839,-84.375744,FULTON 30309,ATLANTA,GA,33.798407,-84.388338,FULTON 30310,ATLANTA,GA,33.727849,-84.423173,FULTON 30311,ATLANTA,GA,33.722957,-84.470219,FULTON 30312,ATLANTA,GA,33.746749,-84.378125,FULTON 30313,ATLANTA,GA,33.76825,-84.39352,FULTON 30314,ATLANTA,GA,33.756103,-84.425546,FULTON 30315,ATLANTA,GA,33.705062,-84.380771,FULTON 30316,ATLANTA,GA,33.721686,-84.333913,FULTON 30317,ATLANTA,GA,33.749788,-84.31685,DEKALB 30318,ATLANTA,GA,33.786454,-84.445432,FULTON 30319,ATLANTA,GA,33.868728,-84.335091,DEKALB 30320,ATLANTA,GA,33.6377,-84.4431,FULTON 30321,ATLANTA,GA,33.7488,-84.388,FULTON 30322,ATLANTA,GA,33.7931,-84.3244,DEKALB 30324,ATLANTA,GA,33.820609,-84.354867,FULTON 30325,ATLANTA,GA,33.8007,-84.4153,FULTON 30326,ATLANTA,GA,33.848168,-84.358232,FULTON 30327,ATLANTA,GA,33.862723,-84.419966,FULTON 30328,ATLANTA,GA,33.936295,-84.381143,FULTON 30329,ATLANTA,GA,33.823555,-84.321402,DEKALB 30330,ATLANTA,GA,33.70645,-84.434735,FULTON 30331,ATLANTA,GA,33.72241,-84.520468,FULTON 30332,ATLANTA,GA,33.7782,-84.3978,FULTON 30333,ATLANTA,GA,33.8049,-84.3369,DEKALB 30334,ATLANTA,GA,33.74715,-84.388188,FULTON 30336,ATLANTA,GA,33.78534,-84.510028,FULTON 30337,ATLANTA,GA,33.644227,-84.460849,FULTON 30338,ATLANTA,GA,33.944313,-84.316529,DEKALB 30339,ATLANTA,GA,33.87125,-84.462879,FULTON 30340,ATLANTA,GA,33.896377,-84.248265,DEKALB 30341,ATLANTA,GA,33.886727,-84.286969,DEKALB 30342,ATLANTA,GA,33.884245,-84.376091,FULTON 30343,ATLANTA,GA,33.7595,-84.387,FULTON 30344,ATLANTA,GA,33.676214,-84.457292,FULTON 30345,ATLANTA,GA,33.851347,-84.286961,DEKALB 30346,ATLANTA,GA,33.926717,-84.333354,DEKALB 30347,ATLANTA,GA,33.8281,-84.3337,FULTON 30348,ATLANTA,GA,33.8345,-84.3893,FULTON 30349,ATLANTA,GA,33.605331,-84.481258,FULTON 30350,ATLANTA,GA,33.979471,-84.341146,FULTON 30353,ATLANTA,GA,33.7488,-84.388,FULTON 30354,ATLANTA,GA,33.66546,-84.387025,FULTON 30355,ATLANTA,GA,33.8365,-84.3689,FULTON 30356,ATLANTA,GA,33.9472,-84.3321,DEKALB 30357,ATLANTA,GA,33.7488,-84.388,FULTON 30358,ATLANTA,GA,33.924167,-84.378611,FULTON 30359,ATLANTA,GA,33.8374,-84.3112,DEKALB 30360,ATLANTA,GA,33.937772,-84.271645,DEKALB 30361,ATLANTA,GA,33.7488,-84.388,FULTON 30362,ATLANTA,GA,33.9021,-84.2738,DEKALB 30363,ATLANTA,GA,33.7899,-84.3955,FULTON 30364,ATLANTA,GA,33.679444,-84.439444,FULTON 30366,ATLANTA,GA,33.8956,-84.2987,DEKALB 30368,ATLANTA,GA,33.7488,-84.388,FULTON 30369,ATLANTA,GA,33.7488,-84.388,FULTON 30370,ATLANTA,GA,33.7488,-84.388,FULTON 30371,ATLANTA,GA,33.7488,-84.388,FULTON 30374,ATLANTA,GA,33.7488,-84.388,FULTON 30375,ATLANTA,GA,33.6605,-84.3858,FULTON 30376,ATLANTA,GA,33.8196,-84.3563,FULTON 30377,ATLANTA,GA,33.781,-84.4125,FULTON 30378,ATLANTA,GA,33.7408,-84.5641,FULTON 30379,ATLANTA,GA,33.7488,-84.388,FULTON 30380,ATLANTA,GA,33.6605,-84.3858,FULTON 30384,ATLANTA,GA,33.7488,-84.388,FULTON 30385,ATLANTA,GA,33.6605,-84.3858,FULTON 30386,ATLANTA,GA,33.6487,-84.3915,FULTON 30387,ATLANTA,GA,33.7488,-84.388,FULTON 30388,ATLANTA,GA,33.6487,-84.3915,FULTON 30389,ATLANTA,GA,33.7488,-84.388,FULTON 30390,ATLANTA,GA,33.7488,-84.388,FULTON 30392,ATLANTA,GA,33.7488,-84.388,FULTON 30394,ATLANTA,GA,33.7488,-84.388,FULTON 30396,ATLANTA,GA,33.6487,-84.3915,FULTON 30398,ATLANTA,GA,33.7488,-84.388,FULTON 30399,ATLANTA,GA,33.7488,-84.388,FULTON 30601,ATHENS,GA,33.976097,-83.363174,CLARKE 30602,ATHENS,GA,33.9482,-83.3745,CLARKE 30603,ATHENS,GA,33.9597,-83.3765,CLARKE 30604,ATHENS,GA,33.9496,-83.41,CLARKE 30605,ATHENS,GA,33.932097,-83.352508,CLARKE 30606,ATHENS,GA,33.946085,-83.418019,CLARKE 30607,ATHENS,GA,34.006978,-83.427761,CLARKE 30608,ATHENS,GA,33.9608,-83.378,CLARKE 30609,ATHENS,GA,33.8983,-83.3688,CLARKE 30612,ATHENS,GA,33.9013,-83.3203,CLARKE 30901,AUGUSTA,GA,33.460084,-81.972959,RICHMOND 30903,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30904,AUGUSTA,GA,33.47374,-82.013078,RICHMOND 30905,AUGUSTA,GA,33.419032,-82.139179,RICHMOND 30906,AUGUSTA,GA,33.402024,-82.038358,RICHMOND 30907,AUGUSTA,GA,33.511692,-82.099505,COLUMBIA 30909,AUGUSTA,GA,33.480932,-82.060439,RICHMOND 30911,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30912,AUGUSTA,GA,33.4719,-81.9803,RICHMOND 30913,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30914,AUGUSTA,GA,33.4695,-82.0211,RICHMOND 30916,AUGUSTA,GA,33.4213,-82.0208,RICHMOND 30917,AUGUSTA,GA,33.5167,-82.0579,COLUMBIA 30919,AUGUSTA,GA,33.4692,-82.0669,RICHMOND 30999,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 31106,ATLANTA,GA,33.7488,-84.388,FULTON 31107,ATLANTA,GA,33.7488,-84.388,FULTON 31119,ATLANTA,GA,33.8571,-84.3462,DEKALB 31120,ATLANTA,GA,33.7844,-84.3828,DEKALB 31126,ATLANTA,GA,33.8473,-84.3606,FULTON 31131,ATLANTA,GA,33.6927,-84.5109,FULTON 31136,ATLANTA,GA,33.6619,-84.6288,FULTON 31139,ATLANTA,GA,33.8705,-84.4611,FULTON 31141,ATLANTA,GA,33.8872,-84.2897,DEKALB 31145,ATLANTA,GA,33.8491,-84.2835,DEKALB 31146,ATLANTA,GA,33.9246,-84.3381,DEKALB 31150,ATLANTA,GA,33.9861,-84.3439,FULTON 31156,ATLANTA,GA,33.9605,-84.3659,FULTON 31191,ATLANTA,GA,33.7917,-84.4476,FULTON 31192,ATLANTA,GA,33.6222,-84.53,FULTON 31193,ATLANTA,GA,33.6605,-84.3858,FULTON 31195,ATLANTA,GA,33.7488,-84.388,FULTON 31196,ATLANTA,GA,33.7488,-84.388,FULTON 31197,ATLANTA,GA,33.7488,-84.388,FULTON 31198,ATLANTA,GA,33.7488,-84.388,FULTON 31199,ATLANTA,GA,33.7488,-84.388,FULTON 31201,MACON,GA,32.84386,-83.598686,BIBB 31202,MACON,GA,32.8405,-83.6325,BIBB 31203,MACON,GA,32.8405,-83.6325,BIBB 31204,MACON,GA,32.842393,-83.676634,BIBB 31205,MACON,GA,32.7501,-83.658,BIBB 31206,MACON,GA,32.780758,-83.682303,BIBB 31207,MACON,GA,32.8297,-83.651,BIBB 31208,MACON,GA,32.8405,-83.6325,BIBB 31209,MACON,GA,32.8405,-83.6325,BIBB 31210,MACON,GA,32.892565,-83.745537,BIBB 31211,MACON,GA,32.886905,-83.602062,BIBB 31212,MACON,GA,32.7509,-83.6772,BIBB 31213,MACON,GA,32.7509,-83.6772,BIBB 31216,MACON,GA,32.7333,-83.6904,BIBB 31217,MACON,GA,32.8389,-83.5538,BIBB 31220,MACON,GA,32.8626,-83.7903,BIBB 31221,MACON,GA,32.88,-83.821,BIBB 31294,MACON,GA,32.8405,-83.6325,BIBB 31295,MACON,GA,32.8405,-83.6325,BIBB 31296,MACON,GA,32.8405,-83.6325,BIBB 31297,MACON,GA,32.7032,-83.65,BIBB 31401,SAVANNAH,GA,32.067631,-81.102394,CHATHAM 31402,SAVANNAH,GA,32.0828,-81.0992,CHATHAM 31403,SAVANNAH,GA,32.0454,-81.1094,CHATHAM 31404,SAVANNAH,GA,32.044178,-81.068704,CHATHAM 31405,SAVANNAH,GA,32.039119,-81.124192,CHATHAM 31406,SAVANNAH,GA,31.988993,-81.097893,CHATHAM 31407,SAVANNAH,GA,32.148075,-81.162891,CHATHAM 31408,SAVANNAH,GA,32.109245,-81.168181,CHATHAM 31409,SAVANNAH,GA,32.002104,-81.158371,CHATHAM 31410,SAVANNAH,GA,32.016188,-80.983859,CHATHAM 31411,SAVANNAH,GA,31.926801,-81.038074,CHATHAM 31412,SAVANNAH,GA,32.0771,-81.0927,CHATHAM 31414,SAVANNAH,GA,32.0436,-81.0639,CHATHAM 31415,SAVANNAH,GA,32.0768,-81.1193,CHATHAM 31416,SAVANNAH,GA,32.005,-81.0957,CHATHAM 31418,SAVANNAH,GA,32.1137,-81.1642,CHATHAM 31419,SAVANNAH,GA,31.985149,-81.177387,CHATHAM 31420,SAVANNAH,GA,32.0722,-81.1102,CHATHAM 31421,SAVANNAH,GA,32.0873,-81.0856,CHATHAM 31601,VALDOSTA,GA,30.810578,-83.277166,LOWNDES 31602,VALDOSTA,GA,30.890268,-83.273299,LOWNDES 31603,VALDOSTA,GA,30.7493,-83.3371,LOWNDES 31604,VALDOSTA,GA,30.9504,-83.238,LOWNDES 31605,VALDOSTA,GA,30.9244,-83.2526,LOWNDES 31606,VALDOSTA,GA,30.8043,-83.2007,LOWNDES 31698,VALDOSTA,GA,30.8495,-83.2888,LOWNDES 31701,ALBANY,GA,31.567783,-84.161923,DOUGHERTY 31702,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31703,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31704,ALBANY,GA,31.550099,-84.050812,DOUGHERTY 31705,ALBANY,GA,31.550851,-84.090089,DOUGHERTY 31706,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31707,ALBANY,GA,31.578908,-84.211834,DOUGHERTY 31708,ALBANY,GA,31.5221,-84.2955,DOUGHERTY 31721,ALBANY,GA,31.547,-84.2707,DOUGHERTY 31901,COLUMBUS,GA,32.473035,-84.979456,MUSCOGEE 31902,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31903,COLUMBUS,GA,32.424513,-84.948127,MUSCOGEE 31904,COLUMBUS,GA,32.516091,-84.978475,MUSCOGEE 31906,COLUMBUS,GA,32.463819,-84.948422,MUSCOGEE 31907,COLUMBUS,GA,32.477909,-84.89799,MUSCOGEE 31908,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31909,COLUMBUS,GA,32.536913,-84.927404,MUSCOGEE 31914,COLUMBUS,GA,32.5573,-85.0045,MUSCOGEE 31917,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31993,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31997,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31998,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31999,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 32080,SAINT AUGUSTINE,FL,29.8364,-81.2745,SAINT JOHNS 32084,SAINT AUGUSTINE,FL,29.880457,-81.298367,SAINT JOHNS 32085,SAINT AUGUSTINE,FL,29.8914,-81.3167,SAINT JOHNS 32086,SAINT AUGUSTINE,FL,29.828514,-81.323734,SAINT JOHNS 32092,SAINT AUGUSTINE,FL,29.947511,-81.526379,SAINT JOHNS 32095,SAINT AUGUSTINE,FL,29.905726,-81.347626,SAINT JOHNS 32099,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32114,DAYTONA BEACH,FL,29.201168,-81.037071,VOLUSIA 32115,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32116,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32117,DAYTONA BEACH,FL,29.236006,-81.054698,VOLUSIA 32118,DAYTONA BEACH,FL,29.221874,-81.009469,VOLUSIA 32119,DAYTONA BEACH,FL,29.152526,-81.022142,VOLUSIA 32120,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32121,DAYTONA BEACH,FL,29.165556,-81.004722,VOLUSIA 32122,DAYTONA BEACH,FL,29.1479,-81.03,VOLUSIA 32124,DAYTONA BEACH,FL,29.122456,-81.106746,VOLUSIA 32125,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32126,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32198,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32201,JACKSONVILLE,FL,30.3294,-81.6613,DUVAL 32202,JACKSONVILLE,FL,30.329882,-81.651672,DUVAL 32203,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32204,JACKSONVILLE,FL,30.318899,-81.685445,DUVAL 32205,JACKSONVILLE,FL,30.317236,-81.722034,DUVAL 32206,JACKSONVILLE,FL,30.351073,-81.648769,DUVAL 32207,JACKSONVILLE,FL,30.290766,-81.63205,DUVAL 32208,JACKSONVILLE,FL,30.393664,-81.688939,DUVAL 32209,JACKSONVILLE,FL,30.35841,-81.691974,DUVAL 32210,JACKSONVILLE,FL,30.268743,-81.747312,DUVAL 32211,JACKSONVILLE,FL,30.348034,-81.588248,DUVAL 32212,JACKSONVILLE,FL,30.220905,-81.68848,DUVAL 32214,JACKSONVILLE,FL,30.2128,-81.6867,DUVAL 32215,JACKSONVILLE,FL,30.23295,-81.663142,DUVAL 32216,JACKSONVILLE,FL,30.293907,-81.547387,DUVAL 32217,JACKSONVILLE,FL,30.240678,-81.616956,DUVAL 32218,JACKSONVILLE,FL,30.45067,-81.662631,DUVAL 32219,JACKSONVILLE,FL,30.403365,-81.763451,DUVAL 32220,JACKSONVILLE,FL,30.329003,-81.817572,DUVAL 32221,JACKSONVILLE,FL,30.283707,-81.820231,DUVAL 32222,JACKSONVILLE,FL,30.229176,-81.813081,DUVAL 32223,JACKSONVILLE,FL,30.154817,-81.629961,DUVAL 32224,JACKSONVILLE,FL,30.303076,-81.440427,DUVAL 32225,JACKSONVILLE,FL,30.350968,-81.506092,DUVAL 32226,JACKSONVILLE,FL,30.473485,-81.544808,DUVAL 32227,JACKSONVILLE,FL,30.388275,-81.405424,DUVAL 32228,JACKSONVILLE,FL,30.383889,-81.415278,DUVAL 32229,JACKSONVILLE,FL,30.4937,-81.6715,DUVAL 32230,JACKSONVILLE,FL,30.3268,-81.7339,DUVAL 32231,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32232,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32234,JACKSONVILLE,FL,30.229562,-81.978345,DUVAL 32235,JACKSONVILLE,FL,30.2908,-81.6316,DUVAL 32236,JACKSONVILLE,FL,30.3118,-81.7379,DUVAL 32237,JACKSONVILLE,FL,30.2006,-81.6157,DUVAL 32238,JACKSONVILLE,FL,30.2469,-81.7387,DUVAL 32239,JACKSONVILLE,FL,30.3521,-81.5688,DUVAL 32241,JACKSONVILLE,FL,30.1535,-81.6326,DUVAL 32244,JACKSONVILLE,FL,30.223137,-81.75558,DUVAL 32245,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32246,JACKSONVILLE,FL,30.297,-81.516,DUVAL 32247,JACKSONVILLE,FL,30.2937,-81.627,DUVAL 32254,JACKSONVILLE,FL,30.3357,-81.73,DUVAL 32255,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32256,JACKSONVILLE,FL,30.221356,-81.557139,DUVAL 32257,JACKSONVILLE,FL,30.192703,-81.605042,DUVAL 32258,JACKSONVILLE,FL,30.145944,-81.573864,DUVAL 32260,JACKSONVILLE,FL,30.0759,-81.5803,SAINT JOHNS 32267,JACKSONVILLE,FL,30.3826,-81.4199,DUVAL 32277,JACKSONVILLE,FL,30.3661,-81.5888,DUVAL 32290,JACKSONVILLE,FL,30.3318,-81.6555,DUVAL 32301,TALLAHASSEE,FL,30.428563,-84.259337,LEON 32302,TALLAHASSEE,FL,30.4418,-84.284,LEON 32303,TALLAHASSEE,FL,30.487433,-84.318946,LEON 32304,TALLAHASSEE,FL,30.447752,-84.321132,LEON 32305,TALLAHASSEE,FL,30.348,-84.2844,LEON 32306,TALLAHASSEE,FL,30.442152,-84.295594,LEON 32307,TALLAHASSEE,FL,30.426667,-84.285278,LEON 32308,TALLAHASSEE,FL,30.507725,-84.206903,LEON 32309,TALLAHASSEE,FL,30.594444,-84.041389,LEON 32310,TALLAHASSEE,FL,30.399125,-84.3298,LEON 32311,TALLAHASSEE,FL,30.415625,-84.186995,LEON 32312,TALLAHASSEE,FL,30.518474,-84.262708,LEON 32313,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32314,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32315,TALLAHASSEE,FL,30.4648,-84.2854,LEON 32316,TALLAHASSEE,FL,30.437,-84.2979,LEON 32317,TALLAHASSEE,FL,30.4675,-84.1231,LEON 32318,TALLAHASSEE,FL,30.5567,-84.1766,LEON 32395,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32399,TALLAHASSEE,FL,30.4328,-84.2671,LEON 32401,PANAMA CITY,FL,30.160624,-85.649403,BAY 32402,PANAMA CITY,FL,30.1558,-85.6629,BAY 32403,PANAMA CITY,FL,30.058252,-85.576225,BAY 32404,PANAMA CITY,FL,30.165291,-85.576264,BAY 32405,PANAMA CITY,FL,30.194949,-85.672686,BAY 32406,PANAMA CITY,FL,30.1786,-85.6841,BAY 32408,PANAMA CITY,FL,30.160859,-85.763628,BAY 32409,PANAMA CITY,FL,30.310679,-85.644536,BAY 32411,PANAMA CITY,FL,30.1516,-85.7246,BAY 32412,PANAMA CITY,FL,30.1586,-85.6602,BAY 32417,PANAMA CITY,FL,30.176389,-85.805556,BAY 32501,PENSACOLA,FL,30.422282,-87.224763,ESCAMBIA 32502,PENSACOLA,FL,30.4126,-87.2112,ESCAMBIA 32503,PENSACOLA,FL,30.456406,-87.210432,ESCAMBIA 32504,PENSACOLA,FL,30.487299,-87.187242,ESCAMBIA 32505,PENSACOLA,FL,30.448069,-87.258937,ESCAMBIA 32506,PENSACOLA,FL,30.412912,-87.309185,ESCAMBIA 32507,PENSACOLA,FL,30.373707,-87.312558,ESCAMBIA 32508,PENSACOLA,FL,30.351063,-87.274945,ESCAMBIA 32509,PENSACOLA,FL,30.4628,-87.3381,ESCAMBIA 32511,PENSACOLA,FL,30.4066,-87.2886,ESCAMBIA 32512,PENSACOLA,FL,30.3969,-87.3013,ESCAMBIA 32513,PENSACOLA,FL,30.4441,-87.215,ESCAMBIA 32514,PENSACOLA,FL,30.524148,-87.216723,ESCAMBIA 32516,PENSACOLA,FL,30.426,-87.2876,ESCAMBIA 32520,PENSACOLA,FL,30.4123,-87.2035,ESCAMBIA 32521,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32522,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32523,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32524,PENSACOLA,FL,30.498,-87.1961,ESCAMBIA 32526,PENSACOLA,FL,30.475593,-87.317925,ESCAMBIA 32534,PENSACOLA,FL,30.530065,-87.279324,ESCAMBIA 32559,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32590,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32591,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32592,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32601,GAINESVILLE,FL,29.645029,-82.310046,ALACHUA 32602,GAINESVILLE,FL,29.6513,-82.325,ALACHUA 32603,GAINESVILLE,FL,29.651484,-82.349286,ALACHUA 32604,GAINESVILLE,FL,29.6526,-82.3437,ALACHUA 32605,GAINESVILLE,FL,29.678458,-82.36794,ALACHUA 32606,GAINESVILLE,FL,29.695393,-82.402324,ALACHUA 32607,GAINESVILLE,FL,29.645618,-82.403252,ALACHUA 32608,GAINESVILLE,FL,29.613204,-82.387282,ALACHUA 32609,GAINESVILLE,FL,29.70053,-82.308032,ALACHUA 32610,GAINESVILLE,FL,29.6396,-82.3439,ALACHUA 32611,GAINESVILLE,FL,29.644148,-82.35092,ALACHUA 32612,GAINESVILLE,FL,29.6093,-82.3721,ALACHUA 32613,GAINESVILLE,FL,29.6646,-82.3244,ALACHUA 32614,GAINESVILLE,FL,29.6771,-82.3717,ALACHUA 32627,GAINESVILLE,FL,29.6462,-82.3261,ALACHUA 32635,GAINESVILLE,FL,29.7077,-82.3979,ALACHUA 32641,GAINESVILLE,FL,29.6434,-82.2805,ALACHUA 32653,GAINESVILLE,FL,29.7227,-82.3918,ALACHUA 32801,ORLANDO,FL,28.539882,-81.372668,ORANGE 32802,ORLANDO,FL,28.5453,-81.3783,ORANGE 32803,ORLANDO,FL,28.555897,-81.353462,ORANGE 32804,ORLANDO,FL,28.576547,-81.391955,ORANGE 32805,ORLANDO,FL,28.5302,-81.404516,ORANGE 32806,ORLANDO,FL,28.513958,-81.356968,ORANGE 32807,ORLANDO,FL,28.544924,-81.305274,ORANGE 32808,ORLANDO,FL,28.580463,-81.44758,ORANGE 32809,ORLANDO,FL,28.461916,-81.381751,ORANGE 32810,ORLANDO,FL,28.622183,-81.425852,ORANGE 32811,ORLANDO,FL,28.516082,-81.442014,ORANGE 32812,ORLANDO,FL,28.49981,-81.328816,ORANGE 32814,ORLANDO,FL,28.5675,-81.333,ORANGE 32815,ORLANDO,FL,28.498821,-80.58248,BREVARD 32816,ORLANDO,FL,28.6049,-81.205,ORANGE 32817,ORLANDO,FL,28.590251,-81.253537,ORANGE 32818,ORLANDO,FL,28.580147,-81.484618,ORANGE 32819,ORLANDO,FL,28.467258,-81.452484,ORANGE 32820,ORLANDO,FL,28.578256,-81.110628,ORANGE 32821,ORLANDO,FL,28.395724,-81.466602,ORANGE 32822,ORLANDO,FL,28.504765,-81.293874,ORANGE 32824,ORLANDO,FL,28.393157,-81.362187,ORANGE 32825,ORLANDO,FL,28.546865,-81.257081,ORANGE 32826,ORLANDO,FL,28.582601,-81.190705,ORANGE 32827,ORLANDO,FL,28.43168,-81.342979,ORANGE 32828,ORLANDO,FL,28.552297,-81.179489,ORANGE 32829,ORLANDO,FL,28.484877,-81.260778,ORANGE 32830,ORLANDO,FL,28.369378,-81.519034,ORANGE 32831,ORLANDO,FL,28.488229,-81.191768,ORANGE 32832,ORLANDO,FL,28.377428,-81.188807,ORANGE 32833,ORLANDO,FL,28.531797,-81.098129,ORANGE 32834,ORLANDO,FL,28.538,-81.3794,ORANGE 32835,ORLANDO,FL,28.528885,-81.478663,ORANGE 32836,ORLANDO,FL,28.460842,-81.49564,ORANGE 32837,ORLANDO,FL,28.394861,-81.417882,ORANGE 32839,ORLANDO,FL,28.487102,-81.408162,ORANGE 32853,ORLANDO,FL,28.5515,-81.3644,ORANGE 32854,ORLANDO,FL,28.5665,-81.3894,ORANGE 32855,ORLANDO,FL,28.538,-81.3794,ORANGE 32856,ORLANDO,FL,28.5109,-81.3727,ORANGE 32857,ORLANDO,FL,28.538,-81.3794,ORANGE 32858,ORLANDO,FL,28.5527,-81.4498,ORANGE 32859,ORLANDO,FL,28.4521,-81.3644,ORANGE 32860,ORLANDO,FL,28.6218,-81.4392,ORANGE 32861,ORLANDO,FL,28.538,-81.3794,ORANGE 32862,ORLANDO,FL,28.483,-81.3299,ORANGE 32867,ORLANDO,FL,28.5675,-81.253,ORANGE 32868,ORLANDO,FL,28.583,-81.476,ORANGE 32869,ORLANDO,FL,28.5901,-81.4936,ORANGE 32872,ORLANDO,FL,28.5148,-81.2882,ORANGE 32877,ORLANDO,FL,28.5416,-81.3739,ORANGE 32878,ORLANDO,FL,28.538,-81.3794,ORANGE 32885,ORLANDO,FL,28.5382,-81.3795,ORANGE 32886,ORLANDO,FL,28.538,-81.3794,ORANGE 32887,ORLANDO,FL,28.3804,-81.4704,ORANGE 32890,ORLANDO,FL,28.4611,-81.3845,ORANGE 32891,ORLANDO,FL,28.538,-81.3794,ORANGE 32893,ORLANDO,FL,28.4286,-81.3097,ORANGE 32896,ORLANDO,FL,28.3212,-81.2299,ORANGE 32897,ORLANDO,FL,28.538,-81.3794,ORANGE 32898,ORLANDO,FL,28.538,-81.3794,ORANGE 32899,ORLANDO,FL,28.6138,-80.6774,BREVARD 32901,MELBOURNE,FL,28.069132,-80.620015,BREVARD 32902,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32904,MELBOURNE,FL,28.073177,-80.668577,BREVARD 32905,PALM BAY,FL,28.014605,-80.599087,BREVARD 32906,PALM BAY,FL,28.0449,-80.6053,BREVARD 32907,PALM BAY,FL,28.016849,-80.673889,BREVARD 32908,PALM BAY,FL,27.981636,-80.689426,BREVARD 32909,PALM BAY,FL,27.96936,-80.647327,BREVARD 32910,PALM BAY,FL,28.0341,-80.5888,BREVARD 32911,PALM BAY,FL,28.0775,-80.6266,BREVARD 32912,MELBOURNE,FL,28.0775,-80.6266,BREVARD 32919,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32934,MELBOURNE,FL,28.136822,-80.691683,BREVARD 32935,MELBOURNE,FL,28.138385,-80.652353,BREVARD 32936,MELBOURNE,FL,28.1307,-80.6296,BREVARD 32940,MELBOURNE,FL,28.206136,-80.684959,BREVARD 32941,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32960,VERO BEACH,FL,27.632985,-80.403075,INDIAN RIVER 32961,VERO BEACH,FL,27.6383,-80.3975,INDIAN RIVER 32962,VERO BEACH,FL,27.588486,-80.392251,INDIAN RIVER 32963,VERO BEACH,FL,27.653623,-80.360916,INDIAN RIVER 32964,VERO BEACH,FL,27.6515,-80.3576,INDIAN RIVER 32965,VERO BEACH,FL,27.7257,-80.3893,INDIAN RIVER 32966,VERO BEACH,FL,27.637214,-80.47939,INDIAN RIVER 32967,VERO BEACH,FL,27.697223,-80.441617,INDIAN RIVER 32968,VERO BEACH,FL,27.59993,-80.438223,INDIAN RIVER 32969,VERO BEACH,FL,27.639,-80.3989,INDIAN RIVER 33002,HIALEAH,FL,25.905,-80.3049,MIAMI-DADE 33010,HIALEAH,FL,25.832536,-80.280801,MIAMI-DADE 33011,HIALEAH,FL,25.8248,-80.2835,MIAMI-DADE 33012,HIALEAH,FL,25.865395,-80.3059,MIAMI-DADE 33013,HIALEAH,FL,25.859351,-80.272533,MIAMI-DADE 33014,HIALEAH,FL,25.896349,-80.306255,MIAMI-DADE 33015,HIALEAH,FL,25.938841,-80.316545,MIAMI-DADE 33016,HIALEAH,FL,25.880262,-80.33681,MIAMI-DADE 33017,HIALEAH,FL,25.978889,-80.201667,MIAMI-DADE 33018,HIALEAH,FL,25.911667,-80.325,MIAMI-DADE 33019,HOLLYWOOD,FL,26.007011,-80.121931,BROWARD 33020,HOLLYWOOD,FL,26.016091,-80.15166,BROWARD 33021,HOLLYWOOD,FL,26.021836,-80.189085,BROWARD 33022,HOLLYWOOD,FL,26.0131,-80.1435,BROWARD 33023,HOLLYWOOD,FL,25.987516,-80.216035,BROWARD 33024,HOLLYWOOD,FL,26.024273,-80.240183,BROWARD 33025,HOLLYWOOD,FL,25.992061,-80.271236,BROWARD 33027,HOLLYWOOD,FL,25.997449,-80.32484,BROWARD 33028,HOLLYWOOD,FL,26.024804,-80.330797,BROWARD 33029,HOLLYWOOD,FL,26.01375,-80.428407,BROWARD 33030,HOMESTEAD,FL,25.476639,-80.483853,MIAMI-DADE 33031,HOMESTEAD,FL,25.532314,-80.507463,MIAMI-DADE 33032,HOMESTEAD,FL,25.521191,-80.40918,MIAMI-DADE 33033,HOMESTEAD,FL,25.490576,-80.438014,MIAMI-DADE 33034,HOMESTEAD,FL,25.396332,-80.548438,MIAMI-DADE 33035,HOMESTEAD,FL,25.457338,-80.457153,MIAMI-DADE 33039,HOMESTEAD,FL,25.499088,-80.390513,MIAMI-DADE 33060,POMPANO BEACH,FL,26.231529,-80.12346,BROWARD 33061,POMPANO BEACH,FL,26.2594,-80.1147,BROWARD 33062,POMPANO BEACH,FL,26.234314,-80.094133,BROWARD 33063,POMPANO BEACH,FL,26.249221,-80.211483,BROWARD 33065,POMPANO BEACH,FL,26.271403,-80.255578,BROWARD 33066,POMPANO BEACH,FL,26.254237,-80.177878,BROWARD 33067,POMPANO BEACH,FL,26.305134,-80.22188,BROWARD 33068,POMPANO BEACH,FL,26.216021,-80.22054,BROWARD 33069,POMPANO BEACH,FL,26.228817,-80.163486,BROWARD 33071,POMPANO BEACH,FL,26.243515,-80.260085,BROWARD 33072,POMPANO BEACH,FL,26.2327,-80.0925,BROWARD 33073,POMPANO BEACH,FL,26.299693,-80.180966,BROWARD 33075,POMPANO BEACH,FL,26.2434,-80.266,BROWARD 33076,POMPANO BEACH,FL,26.291902,-80.248086,BROWARD 33077,POMPANO BEACH,FL,26.2392,-80.2517,BROWARD 33081,HOLLYWOOD,FL,26.0174,-80.2036,BROWARD 33083,HOLLYWOOD,FL,26.1499,-80.2314,BROWARD 33084,HOLLYWOOD,FL,26.002778,-80.224167,BROWARD 33090,HOMESTEAD,FL,25.468333,-80.477778,MIAMI-DADE 33092,HOMESTEAD,FL,25.517222,-80.421667,MIAMI-DADE 33097,POMPANO BEACH,FL,26.3173,-80.1808,BROWARD 33101,MIAMI,FL,25.779,-80.1982,MIAMI-DADE 33102,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33107,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33109,MIAMI BEACH,FL,25.7611,-80.1403,MIAMI-DADE 33110,MIAMI,FL,25.8519,-80.2073,MIAMI-DADE 33111,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33112,MIAMI,FL,25.7968,-80.3826,MIAMI-DADE 33114,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33116,MIAMI,FL,25.6719,-80.3746,MIAMI-DADE 33119,MIAMI BEACH,FL,25.7836,-80.1324,MIAMI-DADE 33121,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33122,MIAMI,FL,25.7911,-80.320733,MIAMI-DADE 33124,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33125,MIAMI,FL,25.782547,-80.234118,MIAMI-DADE 33126,MIAMI,FL,25.776255,-80.291932,MIAMI-DADE 33127,MIAMI,FL,25.814344,-80.205121,MIAMI-DADE 33128,MIAMI,FL,25.775612,-80.208858,MIAMI-DADE 33129,MIAMI,FL,25.755926,-80.201301,MIAMI-DADE 33130,MIAMI,FL,25.767197,-80.205888,MIAMI-DADE 33131,MIAMI,FL,25.762852,-80.189506,MIAMI-DADE 33132,MIAMI,FL,25.786712,-80.179996,MIAMI-DADE 33133,MIAMI,FL,25.732251,-80.243639,MIAMI-DADE 33134,MIAMI,FL,25.755582,-80.269576,MIAMI-DADE 33135,MIAMI,FL,25.766391,-80.231746,MIAMI-DADE 33136,MIAMI,FL,25.786385,-80.204232,MIAMI-DADE 33137,MIAMI,FL,25.815648,-80.189663,MIAMI-DADE 33138,MIAMI,FL,25.850208,-80.18526,MIAMI-DADE 33139,MIAMI BEACH,FL,25.785179,-80.136378,MIAMI-DADE 33140,MIAMI BEACH,FL,25.819505,-80.127921,MIAMI-DADE 33141,MIAMI BEACH,FL,25.852384,-80.133578,MIAMI-DADE 33142,MIAMI,FL,25.812966,-80.232023,MIAMI-DADE 33143,MIAMI,FL,25.700252,-80.301408,MIAMI-DADE 33144,MIAMI,FL,25.762563,-80.309631,MIAMI-DADE 33145,MIAMI,FL,25.752648,-80.235134,MIAMI-DADE 33146,MIAMI,FL,25.720089,-80.274649,MIAMI-DADE 33147,MIAMI,FL,25.850675,-80.236558,MIAMI-DADE 33148,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33150,MIAMI,FL,25.851214,-80.206968,MIAMI-DADE 33151,MIAMI,FL,25.8315,-80.2098,MIAMI-DADE 33152,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33153,MIAMI,FL,25.8655,-80.1936,MIAMI-DADE 33154,MIAMI BEACH,FL,25.879094,-80.127055,MIAMI-DADE 33155,MIAMI,FL,25.7392,-80.31032,MIAMI-DADE 33156,MIAMI,FL,25.66767,-80.308535,MIAMI-DADE 33157,MIAMI,FL,25.604384,-80.352473,MIAMI-DADE 33158,MIAMI,FL,25.636433,-80.318703,MIAMI-DADE 33159,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33161,MIAMI,FL,25.893806,-80.182034,MIAMI-DADE 33162,MIAMI,FL,25.92807,-80.177238,MIAMI-DADE 33163,MIAMI,FL,25.948056,-80.150833,MIAMI-DADE 33164,MIAMI,FL,25.928889,-80.178333,MIAMI-DADE 33165,MIAMI,FL,25.735353,-80.359084,MIAMI-DADE 33166,MIAMI,FL,25.817473,-80.29902,MIAMI-DADE 33167,MIAMI,FL,25.885605,-80.229168,MIAMI-DADE 33168,MIAMI,FL,25.890232,-80.210106,MIAMI-DADE 33169,MIAMI,FL,25.944083,-80.21436,MIAMI-DADE 33170,MIAMI,FL,25.558847,-80.3981,MIAMI-DADE 33172,MIAMI,FL,25.773523,-80.357232,MIAMI-DADE 33173,MIAMI,FL,25.699242,-80.361824,MIAMI-DADE 33174,MIAMI,FL,25.762779,-80.361128,MIAMI-DADE 33175,MIAMI,FL,25.733677,-80.408226,MIAMI-DADE 33176,MIAMI,FL,25.657449,-80.362667,MIAMI-DADE 33177,MIAMI,FL,25.593255,-80.39377,MIAMI-DADE 33178,MIAMI,FL,25.814079,-80.354925,MIAMI-DADE 33179,MIAMI,FL,25.957095,-80.181382,MIAMI-DADE 33180,MIAMI,FL,25.961902,-80.139447,MIAMI-DADE 33181,MIAMI,FL,25.896548,-80.160329,MIAMI-DADE 33182,MIAMI,FL,25.787678,-80.416643,MIAMI-DADE 33183,MIAMI,FL,25.699977,-80.412969,MIAMI-DADE 33184,MIAMI,FL,25.757382,-80.402997,MIAMI-DADE 33185,MIAMI,FL,25.718082,-80.437366,MIAMI-DADE 33186,MIAMI,FL,25.669437,-80.408501,MIAMI-DADE 33187,MIAMI,FL,25.597112,-80.47137,MIAMI-DADE 33188,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33189,MIAMI,FL,25.57431,-80.350851,MIAMI-DADE 33190,MIAMI,FL,25.560935,-80.35381,MIAMI-DADE 33193,MIAMI,FL,25.696365,-80.440087,MIAMI-DADE 33194,MIAMI,FL,25.7576,-80.4505,MIAMI-DADE 33195,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33196,MIAMI,FL,25.661502,-80.441031,MIAMI-DADE 33197,MIAMI,FL,25.558333,-80.381667,MIAMI-DADE 33199,MIAMI,FL,25.7574,-80.3754,MIAMI-DADE 33222,MIAMI,FL,37.0625,-95.677068,MIAMI-DADE 33231,MIAMI,FL,25.7299,-80.3013,MIAMI-DADE 33233,MIAMI,FL,25.7272,-80.2585,MIAMI-DADE 33234,MIAMI,FL,25.7299,-80.2426,MIAMI-DADE 33238,MIAMI,FL,25.8518,-80.1944,MIAMI-DADE 33239,MIAMI BEACH,FL,25.7902,-80.1424,MIAMI-DADE 33242,MIAMI,FL,25.8059,-80.224,MIAMI-DADE 33243,MIAMI,FL,25.7057,-80.2902,MIAMI-DADE 33245,MIAMI,FL,25.7481,-80.2877,MIAMI-DADE 33247,MIAMI,FL,25.8348,-80.2415,MIAMI-DADE 33255,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33256,MIAMI,FL,25.666667,-80.308333,MIAMI-DADE 33257,MIAMI,FL,25.6113,-80.3486,MIAMI-DADE 33261,MIAMI,FL,25.9075,-80.1583,MIAMI-DADE 33265,MIAMI,FL,25.726389,-80.355556,MIAMI-DADE 33266,MIAMI,FL,25.821944,-80.289722,MIAMI-DADE 33269,MIAMI,FL,25.9449,-80.2057,MIAMI-DADE 33280,MIAMI,FL,25.9335,-80.1366,MIAMI-DADE 33283,MIAMI,FL,25.6933,-80.3821,MIAMI-DADE 33296,MIAMI,FL,25.657,-80.3592,MIAMI-DADE 33299,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33301,FORT LAUDERDALE,FL,26.121561,-80.128778,BROWARD 33302,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33303,FORT LAUDERDALE,FL,26.1186,-80.1296,BROWARD 33304,FORT LAUDERDALE,FL,26.137908,-80.125283,BROWARD 33305,FORT LAUDERDALE,FL,26.153115,-80.127768,BROWARD 33306,FORT LAUDERDALE,FL,26.165091,-80.112572,BROWARD 33307,FORT LAUDERDALE,FL,26.171944,-80.132222,BROWARD 33308,FORT LAUDERDALE,FL,26.187883,-80.107674,BROWARD 33309,FORT LAUDERDALE,FL,26.181698,-80.174624,BROWARD 33310,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33311,FORT LAUDERDALE,FL,26.142104,-80.172786,BROWARD 33312,FORT LAUDERDALE,FL,26.096819,-80.181038,BROWARD 33313,FORT LAUDERDALE,FL,26.151145,-80.223142,BROWARD 33314,FORT LAUDERDALE,FL,26.068199,-80.225034,BROWARD 33315,FORT LAUDERDALE,FL,26.098885,-80.15408,BROWARD 33316,FORT LAUDERDALE,FL,26.104193,-80.125951,BROWARD 33317,FORT LAUDERDALE,FL,26.113536,-80.224272,BROWARD 33318,FORT LAUDERDALE,FL,26.1278,-80.2502,BROWARD 33319,FORT LAUDERDALE,FL,26.181153,-80.225413,BROWARD 33320,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33321,FORT LAUDERDALE,FL,26.212072,-80.264356,BROWARD 33322,FORT LAUDERDALE,FL,26.151923,-80.271954,BROWARD 33323,FORT LAUDERDALE,FL,26.164641,-80.307583,BROWARD 33324,FORT LAUDERDALE,FL,26.113639,-80.271019,BROWARD 33325,FORT LAUDERDALE,FL,26.10862,-80.321952,BROWARD 33326,FORT LAUDERDALE,FL,26.114338,-80.369941,BROWARD 33327,FORT LAUDERDALE,FL,26.097291,-80.40645,BROWARD 33328,FORT LAUDERDALE,FL,26.060708,-80.272022,BROWARD 33329,FORT LAUDERDALE,FL,26.1219,-80.1436,BROWARD 33330,FORT LAUDERDALE,FL,26.055479,-80.312907,BROWARD 33331,FORT LAUDERDALE,FL,26.044366,-80.364533,BROWARD 33332,FORT LAUDERDALE,FL,26.054436,-80.41299,BROWARD 33334,FORT LAUDERDALE,FL,26.181514,-80.135511,BROWARD 33335,FORT LAUDERDALE,FL,26.1824,-80.1347,BROWARD 33336,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33337,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33338,FORT LAUDERDALE,FL,26.1367,-80.1231,BROWARD 33339,FORT LAUDERDALE,FL,26.1646,-80.1141,BROWARD 33340,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33345,FORT LAUDERDALE,FL,26.150278,-80.224444,BROWARD 33346,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33348,FORT LAUDERDALE,FL,26.1692,-80.1022,BROWARD 33349,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33351,FORT LAUDERDALE,FL,26.177148,-80.273376,BROWARD 33355,FORT LAUDERDALE,FL,26.112,-80.3037,BROWARD 33359,FORT LAUDERDALE,FL,26.1814,-80.2276,BROWARD 33388,FORT LAUDERDALE,FL,26.117586,-80.250587,BROWARD 33394,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33401,WEST PALM BEACH,FL,26.713956,-80.065874,PALM BEACH 33402,WEST PALM BEACH,FL,26.7131,-80.058,PALM BEACH 33403,WEST PALM BEACH,FL,26.803187,-80.073078,PALM BEACH 33404,WEST PALM BEACH,FL,26.781343,-80.06852,PALM BEACH 33405,WEST PALM BEACH,FL,26.669968,-80.058234,PALM BEACH 33406,WEST PALM BEACH,FL,26.655582,-80.093026,PALM BEACH 33407,WEST PALM BEACH,FL,26.749154,-80.072492,PALM BEACH 33409,WEST PALM BEACH,FL,26.713218,-80.096347,PALM BEACH 33411,WEST PALM BEACH,FL,26.700539,-80.209898,PALM BEACH 33412,WEST PALM BEACH,FL,26.805526,-80.248203,PALM BEACH 33413,WEST PALM BEACH,FL,26.67616,-80.140474,PALM BEACH 33414,WEST PALM BEACH,FL,26.662707,-80.25299,PALM BEACH 33415,WEST PALM BEACH,FL,26.655722,-80.127966,PALM BEACH 33416,WEST PALM BEACH,FL,26.715,-80.0536,PALM BEACH 33417,WEST PALM BEACH,FL,26.713006,-80.124764,PALM BEACH 33419,WEST PALM BEACH,FL,26.7819,-80.0927,PALM BEACH 33420,WEST PALM BEACH,FL,26.8555,-80.086,PALM BEACH 33421,WEST PALM BEACH,FL,26.708,-80.2308,PALM BEACH 33422,WEST PALM BEACH,FL,26.690833,-80.120278,PALM BEACH 33424,BOYNTON BEACH,FL,26.525,-80.0666,PALM BEACH 33425,BOYNTON BEACH,FL,26.5283,-80.0643,PALM BEACH 33426,BOYNTON BEACH,FL,26.51747,-80.083427,PALM BEACH 33427,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33428,BOCA RATON,FL,26.344605,-80.210942,PALM BEACH 33429,BOCA RATON,FL,26.352,-80.0847,PALM BEACH 33431,BOCA RATON,FL,26.379929,-80.097488,PALM BEACH 33432,BOCA RATON,FL,26.34619,-80.084421,PALM BEACH 33433,BOCA RATON,FL,26.346409,-80.156399,PALM BEACH 33434,BOCA RATON,FL,26.383909,-80.174858,PALM BEACH 33435,BOYNTON BEACH,FL,26.529161,-80.06424,PALM BEACH 33436,BOYNTON BEACH,FL,26.526862,-80.106423,PALM BEACH 33437,BOYNTON BEACH,FL,26.531187,-80.141812,PALM BEACH 33444,DELRAY BEACH,FL,26.456445,-80.079321,PALM BEACH 33445,DELRAY BEACH,FL,26.456359,-80.105397,PALM BEACH 33446,DELRAY BEACH,FL,26.451717,-80.158016,PALM BEACH 33447,DELRAY BEACH,FL,26.4685,-80.0718,PALM BEACH 33448,DELRAY BEACH,FL,26.4567,-80.1378,PALM BEACH 33449,LAKE WORTH,FL,26.6159015,-80.056986,PALM BEACH 33454,LAKE WORTH,FL,26.6155,-80.1469,PALM BEACH 33460,LAKE WORTH,FL,26.618207,-80.055996,PALM BEACH 33461,LAKE WORTH,FL,26.62316,-80.094573,PALM BEACH 33462,LAKE WORTH,FL,26.576766,-80.077264,PALM BEACH 33463,LAKE WORTH,FL,26.609609,-80.130503,PALM BEACH 33464,BOCA RATON,FL,26.5844,-80.0526,PALM BEACH 33465,LAKE WORTH,FL,26.5844,-80.0526,PALM BEACH 33466,LAKE WORTH,FL,26.618,-80.1083,PALM BEACH 33467,LAKE WORTH,FL,26.610366,-80.168299,PALM BEACH 33472,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33473,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33474,BOYNTON BEACH,FL,26.5272,-80.0911,PALM BEACH 33481,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33482,DELRAY BEACH,FL,26.4611,-80.073,PALM BEACH 33483,DELRAY BEACH,FL,26.45457,-80.065637,PALM BEACH 33484,DELRAY BEACH,FL,26.454272,-80.13459,PALM BEACH 33486,BOCA RATON,FL,26.348099,-80.110418,PALM BEACH 33487,BOCA RATON,FL,26.409142,-80.089072,PALM BEACH 33488,BOCA RATON,FL,26.349,-80.1141,PALM BEACH 33496,BOCA RATON,FL,26.402975,-80.181287,PALM BEACH 33497,BOCA RATON,FL,26.349,-80.2211,PALM BEACH 33498,BOCA RATON,FL,26.390693,-80.216087,PALM BEACH 33499,BOCA RATON,FL,26.3757,-80.1216,PALM BEACH 33601,TAMPA,FL,27.9428,-82.4549,HILLSBOROUGH 33602,TAMPA,FL,27.961381,-82.45972,HILLSBOROUGH 33603,TAMPA,FL,27.984534,-82.462997,HILLSBOROUGH 33604,TAMPA,FL,28.017312,-82.457848,HILLSBOROUGH 33605,TAMPA,FL,27.967078,-82.433368,HILLSBOROUGH 33606,TAMPA,FL,27.933828,-82.467035,HILLSBOROUGH 33607,TAMPA,FL,27.962538,-82.489535,HILLSBOROUGH 33608,TAMPA,FL,27.865916,-82.507097,HILLSBOROUGH 33609,TAMPA,FL,27.942456,-82.50572,HILLSBOROUGH 33610,TAMPA,FL,27.995125,-82.404584,HILLSBOROUGH 33611,TAMPA,FL,27.891422,-82.506714,HILLSBOROUGH 33612,TAMPA,FL,28.050187,-82.450018,HILLSBOROUGH 33613,TAMPA,FL,28.077184,-82.445519,HILLSBOROUGH 33614,TAMPA,FL,28.00914,-82.503393,HILLSBOROUGH 33615,TAMPA,FL,28.008057,-82.580495,HILLSBOROUGH 33616,TAMPA,FL,27.87418,-82.52029,HILLSBOROUGH 33617,TAMPA,FL,28.038358,-82.394876,HILLSBOROUGH 33618,TAMPA,FL,28.075875,-82.493291,HILLSBOROUGH 33619,TAMPA,FL,27.93824,-82.375558,HILLSBOROUGH 33620,TAMPA,FL,28.069465,-82.409188,HILLSBOROUGH 33621,TAMPA,FL,27.8516,-82.4885,HILLSBOROUGH 33622,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33623,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33624,TAMPA,FL,28.077194,-82.524944,HILLSBOROUGH 33625,TAMPA,FL,28.072551,-82.558987,HILLSBOROUGH 33626,TAMPA,FL,28.050932,-82.616378,HILLSBOROUGH 33629,TAMPA,FL,27.92102,-82.507897,HILLSBOROUGH 33630,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33631,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33633,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33634,TAMPA,FL,28.006783,-82.556006,HILLSBOROUGH 33635,TAMPA,FL,28.03013,-82.604822,HILLSBOROUGH 33637,TAMPA,FL,28.03377,-82.365876,HILLSBOROUGH 33646,TAMPA,FL,27.9475216,-82.4584279,HILLSBOROUGH 33647,TAMPA,FL,28.114698,-82.367751,HILLSBOROUGH 33650,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33651,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33655,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33660,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33661,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33662,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33663,TAMPA,FL,27.9281,-82.3734,HILLSBOROUGH 33664,TAMPA,FL,27.967,-82.5177,HILLSBOROUGH 33672,TAMPA,FL,27.9519,-82.4588,HILLSBOROUGH 33673,TAMPA,FL,27.9943,-82.4597,HILLSBOROUGH 33674,TAMPA,FL,28.0088,-82.4514,HILLSBOROUGH 33675,TAMPA,FL,27.9641,-82.4376,HILLSBOROUGH 33677,TAMPA,FL,27.958,-82.4833,HILLSBOROUGH 33679,TAMPA,FL,27.9521,-82.5083,HILLSBOROUGH 33680,TAMPA,FL,27.9958,-82.4273,HILLSBOROUGH 33681,TAMPA,FL,27.8959,-82.5227,HILLSBOROUGH 33682,TAMPA,FL,28.0552,-82.4593,HILLSBOROUGH 33684,TAMPA,FL,27.996,-82.4964,HILLSBOROUGH 33685,TAMPA,FL,27.9985,-82.5827,HILLSBOROUGH 33686,TAMPA,FL,27.8682,-82.5276,HILLSBOROUGH 33687,TAMPA,FL,28.0357,-82.394,HILLSBOROUGH 33688,TAMPA,FL,28.0613,-82.5036,HILLSBOROUGH 33689,TAMPA,FL,28.0792,-82.4924,HILLSBOROUGH 33690,TAMPA,FL,27.920556,-82.495556,HILLSBOROUGH 33694,TAMPA,FL,28.0696,-82.4949,HILLSBOROUGH 33697,TAMPA,FL,28.0879,-82.4593, 33701,SAINT PETERSBURG,FL,27.772318,-82.638609,PINELLAS 33702,SAINT PETERSBURG,FL,27.842712,-82.644795,PINELLAS 33703,SAINT PETERSBURG,FL,27.816957,-82.626393,PINELLAS 33704,SAINT PETERSBURG,FL,27.795435,-82.637289,PINELLAS 33705,SAINT PETERSBURG,FL,27.739113,-82.64349,PINELLAS 33706,SAINT PETERSBURG,FL,27.745606,-82.751646,PINELLAS 33707,SAINT PETERSBURG,FL,27.75487,-82.720791,PINELLAS 33708,SAINT PETERSBURG,FL,27.816529,-82.800779,PINELLAS 33709,SAINT PETERSBURG,FL,27.817427,-82.729845,PINELLAS 33710,SAINT PETERSBURG,FL,27.789798,-82.724285,PINELLAS 33711,SAINT PETERSBURG,FL,27.74649,-82.689708,PINELLAS 33712,SAINT PETERSBURG,FL,27.735336,-82.666298,PINELLAS 33713,SAINT PETERSBURG,FL,27.789015,-82.677939,PINELLAS 33714,SAINT PETERSBURG,FL,27.817621,-82.677612,PINELLAS 33715,SAINT PETERSBURG,FL,27.694792,-82.715646,PINELLAS 33716,SAINT PETERSBURG,FL,27.873764,-82.640039,PINELLAS 33729,SAINT PETERSBURG,FL,27.8831,-82.6672,PINELLAS 33730,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33731,SAINT PETERSBURG,FL,27.7717,-82.6387,PINELLAS 33732,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33733,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33734,SAINT PETERSBURG,FL,27.8031,-82.6469,PINELLAS 33736,SAINT PETERSBURG,FL,27.725,-82.741389,PINELLAS 33737,SAINT PETERSBURG,FL,27.7382,-82.7081,PINELLAS 33738,SAINT PETERSBURG,FL,27.797778,-82.7975,PINELLAS 33740,SAINT PETERSBURG,FL,27.7689,-82.7686,PINELLAS 33741,SAINT PETERSBURG,FL,27.743,-82.7516,PINELLAS 33742,SAINT PETERSBURG,FL,27.8423,-82.6478,PINELLAS 33743,SAINT PETERSBURG,FL,27.7838,-82.7293,PINELLAS 33747,SAINT PETERSBURG,FL,27.7893,-82.7268,PINELLAS 33755,CLEARWATER,FL,27.9799,-82.7806,PINELLAS 33756,CLEARWATER,FL,27.935556,-82.806389,PINELLAS 33757,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33758,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33759,CLEARWATER,FL,27.9777,-82.716,PINELLAS 33760,CLEARWATER,FL,27.9094,-82.7139,PINELLAS 33761,CLEARWATER,FL,28.0295,-82.7257,PINELLAS 33762,CLEARWATER,FL,27.8912,-82.6852,PINELLAS 33763,CLEARWATER,FL,28.0027,-82.7442,PINELLAS 33764,CLEARWATER,FL,27.9317,-82.7389,PINELLAS 33765,CLEARWATER,FL,27.9743,-82.745,PINELLAS 33766,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33769,CLEARWATER,FL,27.9887,-82.7548,PINELLAS 33770,LARGO,FL,27.9163,-82.7996,PINELLAS 33771,LARGO,FL,27.9061,-82.7597,PINELLAS 33773,LARGO,FL,27.8824,-82.7515,PINELLAS 33774,LARGO,FL,27.8821,-82.8274,PINELLAS 33778,LARGO,FL,27.8831,-82.7952,PINELLAS 33779,LARGO,FL,27.9062,-82.7599,PINELLAS 33784,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33801,LAKELAND,FL,28.038134,-81.939153,POLK 33802,LAKELAND,FL,28.0454,-81.9585,POLK 33803,LAKELAND,FL,28.014045,-81.952283,POLK 33804,LAKELAND,FL,28.0786,-81.9534,POLK 33805,LAKELAND,FL,28.072006,-81.96091,POLK 33806,LAKELAND,FL,28.029,-81.9576,POLK 33807,LAKELAND,FL,27.9734,-81.9607,POLK 33809,LAKELAND,FL,28.123356,-81.984219,POLK 33810,LAKELAND,FL,28.1129,-82.0112,POLK 33811,LAKELAND,FL,27.966284,-82.007236,POLK 33812,LAKELAND,FL,27.9694,-81.8943,POLK 33813,LAKELAND,FL,27.969534,-81.933187,POLK 33815,LAKELAND,FL,28.0416,-81.9876,POLK 33880,WINTER HAVEN,FL,27.999296,-81.751507,POLK 33881,WINTER HAVEN,FL,28.045219,-81.732485,POLK 33882,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33883,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33884,WINTER HAVEN,FL,27.994901,-81.678905,POLK 33885,WINTER HAVEN,FL,28.043333,-81.716944,POLK 33888,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33900,FORT MYERS,FL,26.640628,-81.8723084,LEE 33901,FORT MYERS,FL,26.620403,-81.8725,LEE 33902,FORT MYERS,FL,26.6439,-81.8727,LEE 33904,CAPE CORAL,FL,26.57746,-81.952243,LEE 33905,FORT MYERS,FL,26.676472,-81.785341,LEE 33906,FORT MYERS,FL,26.5932,-81.8578,LEE 33907,FORT MYERS,FL,26.568057,-81.873558,LEE 33908,FORT MYERS,FL,26.502518,-81.927589,LEE 33909,CAPE CORAL,FL,26.680276,-81.958909,LEE 33910,CAPE CORAL,FL,26.627778,-81.946667,LEE 33911,FORT MYERS,FL,26.6402,-81.8725,LEE 33912,FORT MYERS,FL,26.49722,-81.824554,LEE 33913,FORT MYERS,FL,26.522808,-81.706469,LEE 33914,CAPE CORAL,FL,26.56971,-81.990915,LEE 33915,CAPE CORAL,FL,26.5625,-81.949722,LEE 33916,FORT MYERS,FL,26.646595,-81.842946,LEE 33919,FORT MYERS,FL,26.554159,-81.900587,LEE 33936,LEHIGH ACRES,FL,26.615302,-81.61046,LEE 33948,PORT CHARLOTTE,FL,26.98268,-82.141173,CHARLOTTE 33949,PORT CHARLOTTE,FL,26.975833,-82.090833,CHARLOTTE 33952,PORT CHARLOTTE,FL,26.990475,-82.096372,CHARLOTTE 33953,PORT CHARLOTTE,FL,27.004008,-82.211743,CHARLOTTE 33954,PORT CHARLOTTE,FL,27.022815,-82.110782,CHARLOTTE 33965,FORT MYERS,FL,26.4737,-81.9397,LEE 33966,FORT MYERS,FL,26.583,-81.8339,LEE 33967,FORT MYERS,FL,26.4725,-81.8122,LEE 33970,LEHIGH ACRES,FL,26.625,-81.625,LEE 33971,LEHIGH ACRES,FL,26.602252,-81.665822,LEE 33972,LEHIGH ACRES,FL,26.6436,-81.6051,LEE 33973,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33974,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33976,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33980,PORT CHARLOTTE,FL,26.983969,-82.058886,CHARLOTTE 33981,PORT CHARLOTTE,FL,26.937925,-82.238774,CHARLOTTE 33990,CAPE CORAL,FL,26.630893,-81.945967,LEE 33991,CAPE CORAL,FL,26.628881,-82.006703,LEE 33993,CAPE CORAL,FL,26.629444,-82.071111,LEE 33994,FORT MYERS,FL,26.6734,-81.8175,LEE 34101,NAPLES,FL,26.1377,-81.7966,COLLIER 34102,NAPLES,FL,26.1427,-81.7974,COLLIER 34103,NAPLES,FL,26.1925,-81.8022,COLLIER 34104,NAPLES,FL,26.1515,-81.7407,COLLIER 34105,NAPLES,FL,26.1932,-81.7642,COLLIER 34106,NAPLES,FL,26.1377,-81.7966,COLLIER 34108,NAPLES,FL,26.2424,-81.8051,COLLIER 34109,NAPLES,FL,26.243,-81.7674,COLLIER 34110,NAPLES,FL,26.2922,-81.7812,COLLIER 34112,NAPLES,FL,26.1232,-81.7471,COLLIER 34113,NAPLES,FL,26.0791,-81.716,COLLIER 34114,NAPLES,FL,26.0374,-81.6448,COLLIER 34116,NAPLES,FL,26.1837,-81.7071,COLLIER 34117,NAPLES,FL,26.1335,-81.5508,COLLIER 34119,NAPLES,FL,26.2611,-81.7211,COLLIER 34120,NAPLES,FL,26.2909,-81.5996,COLLIER 34201,BRADENTON,FL,27.502778,-82.513889,MANATEE 34202,BRADENTON,FL,27.46521,-82.431487,MANATEE 34203,BRADENTON,FL,27.444871,-82.5404,MANATEE 34204,BRADENTON,FL,27.4462,-82.511,MANATEE 34205,BRADENTON,FL,27.480896,-82.584733,MANATEE 34206,BRADENTON,FL,27.4952,-82.5709,MANATEE 34207,BRADENTON,FL,27.439663,-82.580627,MANATEE 34208,BRADENTON,FL,27.485881,-82.536961,MANATEE 34209,BRADENTON,FL,27.487909,-82.627631,MANATEE 34210,BRADENTON,FL,27.454393,-82.635752,MANATEE 34211,BRADENTON,FL,27.4438,-82.3817,MANATEE 34212,BRADENTON,FL,27.5007,-82.4255,MANATEE 34230,SARASOTA,FL,27.3348,-82.5375,SARASOTA 34231,SARASOTA,FL,27.26757,-82.513793,SARASOTA 34232,SARASOTA,FL,27.320056,-82.475709,SARASOTA 34233,SARASOTA,FL,27.286614,-82.47698,SARASOTA 34234,SARASOTA,FL,27.365355,-82.535182,SARASOTA 34235,SARASOTA,FL,27.367162,-82.484759,SARASOTA 34236,SARASOTA,FL,27.331588,-82.548624,SARASOTA 34237,SARASOTA,FL,27.336915,-82.512778,SARASOTA 34238,SARASOTA,FL,27.243834,-82.482898,SARASOTA 34239,SARASOTA,FL,27.311137,-82.519545,SARASOTA 34240,SARASOTA,FL,27.32765,-82.385594,SARASOTA 34241,SARASOTA,FL,27.282179,-82.418112,SARASOTA 34242,SARASOTA,FL,27.266025,-82.546932,SARASOTA 34243,SARASOTA,FL,27.407235,-82.530299,MANATEE 34260,SARASOTA,FL,27.421667,-82.540278,MANATEE 34276,SARASOTA,FL,27.3361,-82.5308,SARASOTA 34277,SARASOTA,FL,27.3027,-82.5293,SARASOTA 34278,SARASOTA,FL,27.324722,-82.491389,SARASOTA 34280,BRADENTON,FL,27.4994,-82.6364,MANATEE 34281,BRADENTON,FL,27.4401,-82.5827,MANATEE 34282,BRADENTON,FL,27.4401,-82.5827,MANATEE 34286,NORTH PORT,FL,27.0781,-82.1735,SARASOTA 34287,NORTH PORT,FL,27.047839,-82.241616,SARASOTA 34288,NORTH PORT,FL,27.0516,-82.1208,SARASOTA 34289,NORTH PORT,FL,27.0854,-82.1537,SARASOTA 34290,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34291,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34470,OCALA,FL,29.1981,-82.0974,MARION 34471,OCALA,FL,29.1703,-82.1015,MARION 34472,OCALA,FL,29.1166,-82.0181,MARION 34473,OCALA,FL,29.0043,-82.1956,MARION 34474,OCALA,FL,29.1623,-82.1753,MARION 34475,OCALA,FL,29.2189,-82.1546,MARION 34476,OCALA,FL,29.0788,-82.2129,MARION 34477,OCALA,FL,29.1869,-82.1402,MARION 34478,OCALA,FL,29.1869,-82.1402,MARION 34479,OCALA,FL,29.2397,-82.1097,MARION 34480,OCALA,FL,29.1172,-82.0854,MARION 34481,OCALA,FL,29.1175,-82.3149,MARION 34482,OCALA,FL,29.2302,-82.2487,MARION 34483,OCALA,FL,29.1541,-82.1937,MARION 34601,BROOKSVILLE,FL,28.565805,-82.373674,HERNANDO 34602,BROOKSVILLE,FL,28.511167,-82.290545,HERNANDO 34603,BROOKSVILLE,FL,28.5562,-82.3862,HERNANDO 34604,BROOKSVILLE,FL,28.4766,-82.4528,HERNANDO 34605,BROOKSVILLE,FL,28.555,-82.388,HERNANDO 34606,SPRING HILL,FL,28.46551,-82.598084,HERNANDO 34607,SPRING HILL,FL,28.506546,-82.626671,HERNANDO 34608,SPRING HILL,FL,28.479696,-82.556206,HERNANDO 34609,SPRING HILL,FL,28.477611,-82.499896,HERNANDO 34610,SPRING HILL,FL,28.405084,-82.530148,PASCO 34611,SPRING HILL,FL,28.4859,-82.5832,HERNANDO 34613,BROOKSVILLE,FL,28.546558,-82.521286,HERNANDO 34614,BROOKSVILLE,FL,28.662244,-82.523613,HERNANDO 34741,KISSIMMEE,FL,28.305056,-81.424208,OSCEOLA 34742,KISSIMMEE,FL,28.2916,-81.4077,OSCEOLA 34743,KISSIMMEE,FL,28.329656,-81.356044,OSCEOLA 34744,KISSIMMEE,FL,28.307807,-81.368122,OSCEOLA 34745,KISSIMMEE,FL,28.3229,-81.3911,OSCEOLA 34746,KISSIMMEE,FL,28.26796,-81.467478,OSCEOLA 34747,KISSIMMEE,FL,28.325,-81.533333,OSCEOLA 34758,KISSIMMEE,FL,28.198436,-81.487014,OSCEOLA 34759,KISSIMMEE,FL,28.124786,-81.458984,POLK 34945,FORT PIERCE,FL,27.438233,-80.443963,SAINT LUCIE 34946,FORT PIERCE,FL,27.50077,-80.35996,SAINT LUCIE 34947,FORT PIERCE,FL,27.449281,-80.359185,SAINT LUCIE 34948,FORT PIERCE,FL,27.5147,-80.422,SAINT LUCIE 34949,FORT PIERCE,FL,27.389594,-80.261468,SAINT LUCIE 34950,FORT PIERCE,FL,27.448567,-80.3385,SAINT LUCIE 34951,FORT PIERCE,FL,27.539097,-80.405195,SAINT LUCIE 34952,PORT SAINT LUCIE,FL,27.288895,-80.297971,SAINT LUCIE 34953,PORT SAINT LUCIE,FL,27.262506,-80.379323,SAINT LUCIE 34954,FORT PIERCE,FL,27.4467,-80.3419,SAINT LUCIE 34979,FORT PIERCE,FL,27.4463,-80.3258,SAINT LUCIE 34981,FORT PIERCE,FL,27.404882,-80.362257,SAINT LUCIE 34982,FORT PIERCE,FL,27.390764,-80.324633,SAINT LUCIE 34983,PORT SAINT LUCIE,FL,27.309444,-80.345029,SAINT LUCIE 34984,PORT SAINT LUCIE,FL,27.265476,-80.338936,SAINT LUCIE 34985,PORT SAINT LUCIE,FL,27.293611,-80.350556,SAINT LUCIE 34986,PORT SAINT LUCIE,FL,27.32148,-80.403045,SAINT LUCIE 34987,PORT SAINT LUCIE,FL,27.260595,-80.477052,SAINT LUCIE 34988,PORT SAINT LUCIE,FL,27.323233,-80.51726,SAINT LUCIE 35201,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35202,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35203,BIRMINGHAM,AL,33.520994,-86.806626,JEFFERSON 35204,BIRMINGHAM,AL,33.51795,-86.837198,JEFFERSON 35205,BIRMINGHAM,AL,33.495144,-86.805937,JEFFERSON 35206,BIRMINGHAM,AL,33.567797,-86.719854,JEFFERSON 35207,BIRMINGHAM,AL,33.559383,-86.815344,JEFFERSON 35208,BIRMINGHAM,AL,33.497658,-86.879884,JEFFERSON 35209,BIRMINGHAM,AL,33.469624,-86.806738,JEFFERSON 35210,BIRMINGHAM,AL,33.532797,-86.685697,JEFFERSON 35211,BIRMINGHAM,AL,33.481565,-86.85904,JEFFERSON 35212,BIRMINGHAM,AL,33.540883,-86.749524,JEFFERSON 35213,BIRMINGHAM,AL,33.508195,-86.742108,JEFFERSON 35214,BIRMINGHAM,AL,33.555445,-86.886989,JEFFERSON 35215,BIRMINGHAM,AL,33.635447,-86.693197,JEFFERSON 35216,BIRMINGHAM,AL,33.41531,-86.790425,JEFFERSON 35217,BIRMINGHAM,AL,33.5887,-86.764995,JEFFERSON 35218,BIRMINGHAM,AL,33.505972,-86.892993,JEFFERSON 35219,BIRMINGHAM,AL,33.4735,-86.8259,JEFFERSON 35220,BIRMINGHAM,AL,33.6464,-86.6816,JEFFERSON 35221,BIRMINGHAM,AL,33.452316,-86.893493,JEFFERSON 35222,BIRMINGHAM,AL,33.521859,-86.766579,JEFFERSON 35223,BIRMINGHAM,AL,33.488726,-86.736584,JEFFERSON 35224,BIRMINGHAM,AL,33.519126,-86.934193,JEFFERSON 35225,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35226,BIRMINGHAM,AL,33.403675,-86.831257,JEFFERSON 35228,BIRMINGHAM,AL,33.462446,-86.914703,JEFFERSON 35229,BIRMINGHAM,AL,33.4633,-86.79,JEFFERSON 35230,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35231,BIRMINGHAM,AL,33.564,-86.8953,JEFFERSON 35232,BIRMINGHAM,AL,33.5375,-86.7564,JEFFERSON 35233,BIRMINGHAM,AL,33.506161,-86.800257,JEFFERSON 35234,BIRMINGHAM,AL,33.53775,-86.80685,JEFFERSON 35235,BIRMINGHAM,AL,33.618045,-86.661051,JEFFERSON 35236,BIRMINGHAM,AL,33.3733,-86.8104,JEFFERSON 35237,BIRMINGHAM,AL,33.5167,-86.8071,JEFFERSON 35238,BIRMINGHAM,AL,33.4144,-86.6753,JEFFERSON 35240,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35242,BIRMINGHAM,AL,33.401559,-86.705511,SHELBY 35243,BIRMINGHAM,AL,33.446053,-86.743676,JEFFERSON 35244,BIRMINGHAM,AL,33.371776,-86.776381,JEFFERSON 35245,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35246,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35249,BIRMINGHAM,AL,33.5055,-86.8015,JEFFERSON 35253,BIRMINGHAM,AL,33.4848,-86.7737,JEFFERSON 35254,BIRMINGHAM,AL,33.5129,-86.8537,JEFFERSON 35255,BIRMINGHAM,AL,33.4991,-86.7985,JEFFERSON 35259,BIRMINGHAM,AL,33.4828,-86.7918,JEFFERSON 35260,BIRMINGHAM,AL,33.4131,-86.8471,JEFFERSON 35261,BIRMINGHAM,AL,33.5847,-86.7038,JEFFERSON 35263,BIRMINGHAM,AL,33.5311,-86.7834,JEFFERSON 35266,BIRMINGHAM,AL,33.4444,-86.7908,JEFFERSON 35277,BIRMINGHAM,AL,33.4429,-86.739,JEFFERSON 35278,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35279,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35280,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35281,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35282,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35283,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35285,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35286,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35287,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35288,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35289,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35290,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35291,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35292,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35293,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35294,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35295,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35296,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35297,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35298,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35299,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35401,TUSCALOOSA,AL,33.196891,-87.562666,TUSCALOOSA 35402,TUSCALOOSA,AL,33.147,-87.6128,TUSCALOOSA 35403,TUSCALOOSA,AL,33.2029,-87.5621,TUSCALOOSA 35404,TUSCALOOSA,AL,33.210914,-87.488079,TUSCALOOSA 35405,TUSCALOOSA,AL,33.161704,-87.514435,TUSCALOOSA 35406,TUSCALOOSA,AL,33.272174,-87.536035,TUSCALOOSA 35407,TUSCALOOSA,AL,33.1681,-87.5216,TUSCALOOSA 35485,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35486,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35487,TUSCALOOSA,AL,33.2177,-87.5455,TUSCALOOSA 35801,HUNTSVILLE,AL,34.726866,-86.567318,MADISON 35802,HUNTSVILLE,AL,34.667922,-86.560347,MADISON 35803,HUNTSVILLE,AL,34.620506,-86.55096,MADISON 35804,HUNTSVILLE,AL,34.7277,-86.5926,MADISON 35805,HUNTSVILLE,AL,34.705943,-86.616493,MADISON 35806,HUNTSVILLE,AL,34.744765,-86.670411,MADISON 35807,HUNTSVILLE,AL,34.7197,-86.6148,MADISON 35808,HUNTSVILLE,AL,34.684525,-86.653821,MADISON 35809,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35810,HUNTSVILLE,AL,34.778378,-86.609063,MADISON 35811,HUNTSVILLE,AL,34.778949,-86.543786,MADISON 35812,HUNTSVILLE,AL,34.7953,-86.706,MADISON 35813,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35814,HUNTSVILLE,AL,34.7367,-86.6269,MADISON 35815,HUNTSVILLE,AL,34.7267,-86.5414,MADISON 35816,HUNTSVILLE,AL,34.738864,-86.624948,MADISON 35824,HUNTSVILLE,AL,34.658321,-86.729486,MADISON 35893,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35894,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35895,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35896,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35897,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35898,HUNTSVILLE,AL,34.6347,-86.6503,MADISON 35899,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35901,GADSDEN,AL,33.997248,-86.010279,ETOWAH 35902,GADSDEN,AL,34.0747,-85.9352,ETOWAH 35903,GADSDEN,AL,33.997057,-85.928724,ETOWAH 35904,GADSDEN,AL,34.021694,-86.049479,ETOWAH 35905,GADSDEN,AL,33.956787,-85.927586,ETOWAH 35906,GADSDEN,AL,33.9427,-86.0675,ETOWAH 35907,GADSDEN,AL,33.9045,-86.026,ETOWAH 36101,MONTGOMERY,AL,32.3743,-86.3118,MONTGOMERY 36102,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36103,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36104,MONTGOMERY,AL,32.373037,-86.308129,MONTGOMERY 36105,MONTGOMERY,AL,32.32573,-86.310449,MONTGOMERY 36106,MONTGOMERY,AL,32.354268,-86.267278,MONTGOMERY 36107,MONTGOMERY,AL,32.380405,-86.279885,MONTGOMERY 36108,MONTGOMERY,AL,32.341682,-86.352904,MONTGOMERY 36109,MONTGOMERY,AL,32.383443,-86.243394,MONTGOMERY 36110,MONTGOMERY,AL,32.421686,-86.274997,MONTGOMERY 36111,MONTGOMERY,AL,32.337363,-86.271543,MONTGOMERY 36112,MONTGOMERY,AL,32.378611,-86.346944,MONTGOMERY 36113,MONTGOMERY,AL,32.388133,-86.355848,MONTGOMERY 36114,MONTGOMERY,AL,32.406667,-86.248056,MONTGOMERY 36115,MONTGOMERY,AL,32.406814,-86.247327,MONTGOMERY 36116,MONTGOMERY,AL,32.312943,-86.242056,MONTGOMERY 36117,MONTGOMERY,AL,32.373568,-86.183299,MONTGOMERY 36118,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36119,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36120,MONTGOMERY,AL,32.3104,-86.2362,MONTGOMERY 36121,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36123,MONTGOMERY,AL,32.3494,-86.2212,MONTGOMERY 36124,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36125,MONTGOMERY,AL,32.3134,-86.3214,MONTGOMERY 36130,MONTGOMERY,AL,32.378,-86.2982,MONTGOMERY 36131,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36132,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36133,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36134,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36135,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36140,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36141,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36142,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36177,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36191,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36201,ANNISTON,AL,33.653896,-85.838152,CALHOUN 36202,ANNISTON,AL,33.6584,-85.8268,CALHOUN 36204,ANNISTON,AL,33.6853,-85.8231,CALHOUN 36205,ANNISTON,AL,33.710168,-85.801467,CALHOUN 36206,ANNISTON,AL,33.719124,-85.838904,CALHOUN 36207,ANNISTON,AL,33.6589,-85.761,CALHOUN 36210,ANNISTON,AL,33.6485,-85.9163,CALHOUN 36601,MOBILE,AL,30.6959,-88.0434,MOBILE 36602,MOBILE,AL,30.688828,-88.045308,MOBILE 36603,MOBILE,AL,30.692141,-88.05622,MOBILE 36604,MOBILE,AL,30.681963,-88.067804,MOBILE 36605,MOBILE,AL,30.634117,-88.084646,MOBILE 36606,MOBILE,AL,30.672899,-88.100909,MOBILE 36607,MOBILE,AL,30.697486,-88.1029,MOBILE 36608,MOBILE,AL,30.69636,-88.187784,MOBILE 36609,MOBILE,AL,30.660527,-88.161806,MOBILE 36610,MOBILE,AL,30.737846,-88.083761,MOBILE 36611,MOBILE,AL,30.766821,-88.084973,MOBILE 36612,MOBILE,AL,30.751844,-88.11311,MOBILE 36615,MOBILE,AL,30.631199,-88.068871,MOBILE 36616,MOBILE,AL,30.6941,-88.043,MOBILE 36617,MOBILE,AL,30.714522,-88.091796,MOBILE 36618,MOBILE,AL,30.732178,-88.175753,MOBILE 36619,MOBILE,AL,30.592803,-88.194645,MOBILE 36621,MOBILE,AL,30.6959,-88.0434,MOBILE 36622,MOBILE,AL,30.6959,-88.0434,MOBILE 36625,MOBILE,AL,30.6959,-88.0434,MOBILE 36628,MOBILE,AL,30.6959,-88.0434,MOBILE 36630,MOBILE,AL,30.6959,-88.0434,MOBILE 36633,MOBILE,AL,30.6959,-88.0434,MOBILE 36640,MOBILE,AL,30.6901,-88.0568,MOBILE 36641,MOBILE,AL,30.6901,-88.0568,MOBILE 36644,MOBILE,AL,30.6925,-88.0432,MOBILE 36652,MOBILE,AL,30.6959,-88.0434,MOBILE 36660,MOBILE,AL,30.675,-88.0867,MOBILE 36663,MOBILE,AL,30.8179,-88.1926,MOBILE 36670,MOBILE,AL,30.6954,-88.1059,MOBILE 36671,MOBILE,AL,30.7753,-88.0791,MOBILE 36675,MOBILE,AL,30.6941,-88.043,MOBILE 36685,MOBILE,AL,30.6941,-88.043,MOBILE 36688,MOBILE,AL,30.6966,-88.1741,MOBILE 36689,MOBILE,AL,30.6893,-88.1731,MOBILE 36690,MOBILE,AL,30.6959,-88.0434,MOBILE 36691,MOBILE,AL,30.6267,-88.1499,MOBILE 36693,MOBILE,AL,30.631076,-88.158843,MOBILE 36695,MOBILE,AL,30.647431,-88.229245,MOBILE 37127,MURFREESBORO,TN,35.7913,-86.357,RUTHERFORD 37128,MURFREESBORO,TN,35.8209,-86.4537,RUTHERFORD 37129,MURFREESBORO,TN,35.871019,-86.41809,RUTHERFORD 37130,MURFREESBORO,TN,35.847792,-86.364675,RUTHERFORD 37131,MURFREESBORO,TN,35.8911,-86.3822,RUTHERFORD 37132,MURFREESBORO,TN,35.8475,-86.3625,RUTHERFORD 37133,MURFREESBORO,TN,35.8369,-86.393,RUTHERFORD 37201,NASHVILLE,TN,36.167028,-86.778441,DAVIDSON 37202,NASHVILLE,TN,36.158,-86.7837,DAVIDSON 37203,NASHVILLE,TN,36.146802,-86.793922,DAVIDSON 37204,NASHVILLE,TN,36.114628,-86.781808,DAVIDSON 37205,NASHVILLE,TN,36.111432,-86.868954,DAVIDSON 37206,NASHVILLE,TN,36.179813,-86.741106,DAVIDSON 37207,NASHVILLE,TN,36.2195,-86.774008,DAVIDSON 37208,NASHVILLE,TN,36.176196,-86.807563,DAVIDSON 37209,NASHVILLE,TN,36.154592,-86.860212,DAVIDSON 37210,NASHVILLE,TN,36.137904,-86.741042,DAVIDSON 37211,NASHVILLE,TN,36.072486,-86.724038,DAVIDSON 37212,NASHVILLE,TN,36.133681,-86.800555,DAVIDSON 37213,NASHVILLE,TN,36.165512,-86.760556,DAVIDSON 37214,NASHVILLE,TN,36.163339,-86.660854,DAVIDSON 37215,NASHVILLE,TN,36.098584,-86.821917,DAVIDSON 37216,NASHVILLE,TN,36.212491,-86.725687,DAVIDSON 37217,NASHVILLE,TN,36.10585,-86.666585,DAVIDSON 37218,NASHVILLE,TN,36.207062,-86.845583,DAVIDSON 37219,NASHVILLE,TN,36.167768,-86.783676,DAVIDSON 37220,NASHVILLE,TN,36.064139,-86.769654,DAVIDSON 37221,NASHVILLE,TN,36.071512,-86.943674,DAVIDSON 37222,NASHVILLE,TN,36.0687,-86.7255,DAVIDSON 37224,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37227,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37228,NASHVILLE,TN,36.190145,-86.805264,DAVIDSON 37229,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37230,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37232,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37234,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37235,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37236,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37237,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37238,NASHVILLE,TN,36.1656,-86.7803,DAVIDSON 37240,NASHVILLE,TN,36.1491,-86.8035,DAVIDSON 37241,NASHVILLE,TN,36.1089,-86.672,DAVIDSON 37242,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37243,NASHVILLE,TN,36.1687,-86.7845,DAVIDSON 37244,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37245,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37246,NASHVILLE,TN,36.1585,-86.79,DAVIDSON 37247,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37248,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37249,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37250,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37401,CHATTANOOGA,TN,35.0455,-85.3081,HAMILTON 37402,CHATTANOOGA,TN,35.046288,-85.316126,HAMILTON 37403,CHATTANOOGA,TN,35.045045,-85.296516,HAMILTON 37404,CHATTANOOGA,TN,35.030634,-85.272229,HAMILTON 37405,CHATTANOOGA,TN,35.076801,-85.308224,HAMILTON 37406,CHATTANOOGA,TN,35.061446,-85.247839,HAMILTON 37407,CHATTANOOGA,TN,35.002361,-85.284913,HAMILTON 37408,CHATTANOOGA,TN,35.029236,-85.306809,HAMILTON 37409,CHATTANOOGA,TN,34.99809,-85.331016,HAMILTON 37410,CHATTANOOGA,TN,35.001787,-85.313762,HAMILTON 37411,CHATTANOOGA,TN,35.02706,-85.235583,HAMILTON 37412,CHATTANOOGA,TN,34.996726,-85.237957,HAMILTON 37414,CHATTANOOGA,TN,35.0123,-85.2267,HAMILTON 37415,CHATTANOOGA,TN,35.117668,-85.28633,HAMILTON 37416,CHATTANOOGA,TN,35.094246,-85.175656,HAMILTON 37419,CHATTANOOGA,TN,35.033092,-85.368698,HAMILTON 37421,CHATTANOOGA,TN,35.024986,-85.14594,HAMILTON 37422,CHATTANOOGA,TN,35.0537,-85.1893,HAMILTON 37424,CHATTANOOGA,TN,35.0455,-85.3097,HAMILTON 37450,CHATTANOOGA,TN,35.0489,-85.3116,HAMILTON 37501,MEMPHIS,TN,35.0337,-89.9343,SHELBY 37544,MEMPHIS,TN,35.1495,-90.049,SHELBY 37601,JOHNSON CITY,TN,36.333872,-82.340775,WASHINGTON 37602,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37604,JOHNSON CITY,TN,36.310744,-82.381042,WASHINGTON 37605,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37614,JOHNSON CITY,TN,36.3027,-82.3681,WASHINGTON 37615,JOHNSON CITY,TN,36.41006,-82.447128,WASHINGTON 37660,KINGSPORT,TN,36.552766,-82.554034,SULLIVAN 37662,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37663,KINGSPORT,TN,36.4693,-82.4948,SULLIVAN 37664,KINGSPORT,TN,36.520834,-82.516835,SULLIVAN 37665,KINGSPORT,TN,36.578305,-82.569906,SULLIVAN 37669,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37901,KNOXVILLE,TN,35.9609,-83.9189,KNOX 37902,KNOXVILLE,TN,35.962516,-83.920915,KNOX 37909,KNOXVILLE,TN,35.945978,-84.023501,KNOX 37912,KNOXVILLE,TN,36.005492,-83.977317,KNOX 37914,KNOXVILLE,TN,35.991755,-83.849624,KNOX 37915,KNOXVILLE,TN,35.972074,-83.901005,KNOX 37916,KNOXVILLE,TN,35.955584,-83.933576,KNOX 37917,KNOXVILLE,TN,35.99803,-83.915216,KNOX 37918,KNOXVILLE,TN,36.050054,-83.922558,KNOX 37919,KNOXVILLE,TN,35.924385,-84.001468,KNOX 37920,KNOXVILLE,TN,35.922976,-83.879793,KNOX 37921,KNOXVILLE,TN,35.976297,-83.982894,KNOX 37922,KNOXVILLE,TN,35.877697,-84.127332,KNOX 37923,KNOXVILLE,TN,35.933127,-84.076116,KNOX 37924,KNOXVILLE,TN,36.032044,-83.80207,KNOX 37927,KNOXVILLE,TN,35.9956,-83.9225,KNOX 37928,KNOXVILLE,TN,36.0357,-83.9309,KNOX 37929,KNOXVILLE,TN,35.9622,-83.9164,KNOX 37930,KNOXVILLE,TN,35.917,-84.0741,KNOX 37931,KNOXVILLE,TN,35.992363,-84.120072,KNOX 37932,KNOXVILLE,TN,35.923619,-84.169591,KNOX 37933,KNOXVILLE,TN,35.884444,-84.153611,KNOX 37934,KNOXVILLE,TN,35.876913,-84.176448,KNOX 37938,KNOXVILLE,TN,36.105473,-83.945968,KNOX 37939,KNOXVILLE,TN,35.9365,-83.9936,KNOX 37940,KNOXVILLE,TN,35.9081,-83.8654,KNOX 37950,KNOXVILLE,TN,35.945,-84.015,KNOX 37990,KNOXVILLE,TN,35.8655,-84.1267,KNOX 37995,KNOXVILLE,TN,35.945,-84.015,KNOX 37996,KNOXVILLE,TN,35.9529,-83.9293,KNOX 37997,KNOXVILLE,TN,35.945,-84.015,KNOX 37998,KNOXVILLE,TN,35.945,-84.015,KNOX 38101,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38103,MEMPHIS,TN,35.144001,-90.047995,SHELBY 38104,MEMPHIS,TN,35.133393,-90.004625,SHELBY 38105,MEMPHIS,TN,35.149748,-90.033042,SHELBY 38106,MEMPHIS,TN,35.102124,-90.032997,SHELBY 38107,MEMPHIS,TN,35.183136,-90.020077,SHELBY 38108,MEMPHIS,TN,35.178655,-89.968238,SHELBY 38109,MEMPHIS,TN,35.042538,-90.073238,SHELBY 38110,MEMPHIS,TN,35.0519,-89.941,SHELBY 38111,MEMPHIS,TN,35.107573,-89.945745,SHELBY 38112,MEMPHIS,TN,35.148277,-89.972895,SHELBY 38113,MEMPHIS,TN,35.111201,-90.079426,SHELBY 38114,MEMPHIS,TN,35.098094,-89.98254,SHELBY 38115,MEMPHIS,TN,35.054405,-89.86082,SHELBY 38116,MEMPHIS,TN,35.030298,-90.012314,SHELBY 38117,MEMPHIS,TN,35.112357,-89.903367,SHELBY 38118,MEMPHIS,TN,35.051421,-89.926538,SHELBY 38119,MEMPHIS,TN,35.082101,-89.850142,SHELBY 38120,MEMPHIS,TN,35.120654,-89.865119,SHELBY 38122,MEMPHIS,TN,35.157166,-89.926844,SHELBY 38124,MEMPHIS,TN,35.1144,-89.9059,SHELBY 38125,MEMPHIS,TN,35.031249,-89.812357,SHELBY 38126,MEMPHIS,TN,35.125518,-90.042444,SHELBY 38127,MEMPHIS,TN,35.250982,-90.029623,SHELBY 38128,MEMPHIS,TN,35.221273,-89.941314,SHELBY 38130,MEMPHIS,TN,35.0248,-89.9803,SHELBY 38131,MEMPHIS,TN,35.0655,-90.003699,SHELBY 38132,MEMPHIS,TN,35.071967,-89.988627,SHELBY 38133,MEMPHIS,TN,35.205362,-89.803564,SHELBY 38134,MEMPHIS,TN,35.188639,-89.86409,SHELBY 38135,MEMPHIS,TN,35.232301,-89.850878,SHELBY 38136,MEMPHIS,TN,35.1325,-90.0565,SHELBY 38137,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38141,MEMPHIS,TN,35.023091,-89.84916,SHELBY 38142,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38145,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38147,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38148,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38150,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38151,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38152,MEMPHIS,TN,35.1195,-89.9372,SHELBY 38157,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38159,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38161,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38163,MEMPHIS,TN,35.1506,-90.0155,SHELBY 38165,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38166,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38167,MEMPHIS,TN,35.2103,-90.023,SHELBY 38168,MEMPHIS,TN,35.2266,-89.904,SHELBY 38173,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38174,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38175,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38177,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38181,MEMPHIS,TN,35.0519,-89.941,SHELBY 38182,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38184,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38186,MEMPHIS,TN,35.0335,-90.0167,SHELBY 38187,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38188,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38190,MEMPHIS,TN,35.0549,-90.0599,SHELBY 38193,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38194,MEMPHIS,TN,35.0655,-89.9984,SHELBY 38197,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38301,JACKSON,TN,35.610222,-88.814011,MADISON 38302,JACKSON,TN,35.6144,-88.8138,MADISON 38303,JACKSON,TN,35.6144,-88.8138,MADISON 38305,JACKSON,TN,35.682875,-88.828127,MADISON 38308,JACKSON,TN,35.6144,-88.8138,MADISON 38314,JACKSON,TN,35.5727,-88.8213,MADISON 39201,JACKSON,MS,32.293502,-90.186655,HINDS 39202,JACKSON,MS,32.314883,-90.178194,HINDS 39203,JACKSON,MS,32.308145,-90.202064,HINDS 39204,JACKSON,MS,32.283162,-90.230579,HINDS 39205,JACKSON,MS,32.2986,-90.1847,HINDS 39206,JACKSON,MS,32.369956,-90.173787,HINDS 39207,JACKSON,MS,32.2986,-90.1847,HINDS 39209,JACKSON,MS,32.318422,-90.244626,HINDS 39210,JACKSON,MS,32.3242,-90.1765,HINDS 39211,JACKSON,MS,32.373924,-90.129297,HINDS 39212,JACKSON,MS,32.24347,-90.261201,HINDS 39213,JACKSON,MS,32.355288,-90.217099,HINDS 39215,JACKSON,MS,32.2986,-90.1847,HINDS 39216,JACKSON,MS,32.338574,-90.170814,HINDS 39217,JACKSON,MS,32.2976,-90.209,HINDS 39225,JACKSON,MS,32.2986,-90.1847,HINDS 39235,JACKSON,MS,32.2986,-90.1847,HINDS 39236,JACKSON,MS,32.3628,-90.1459,HINDS 39250,JACKSON,MS,32.2986,-90.1847,HINDS 39269,JACKSON,MS,32.30085,-90.188503,HINDS 39271,JACKSON,MS,32.2986,-90.1847,HINDS 39282,JACKSON,MS,32.2539,-90.2501,HINDS 39283,JACKSON,MS,32.3661,-90.2246,HINDS 39284,JACKSON,MS,32.2725,-90.216,HINDS 39286,JACKSON,MS,32.3509,-90.1765,HINDS 39289,JACKSON,MS,32.3852,-90.2747,HINDS 39296,JACKSON,MS,32.3342,-90.1755,HINDS 39298,JACKSON,MS,32.2999,-90.1843,RANKIN 39301,MERIDIAN,MS,32.357441,-88.655973,LAUDERDALE 39302,MERIDIAN,MS,32.3656,-88.7007,LAUDERDALE 39303,MERIDIAN,MS,32.41,-88.6994,LAUDERDALE 39304,MERIDIAN,MS,32.3656,-88.7227,LAUDERDALE 39305,MERIDIAN,MS,32.440129,-88.678322,LAUDERDALE 39307,MERIDIAN,MS,32.373591,-88.743598,LAUDERDALE 39309,MERIDIAN,MS,32.5519,-88.585,LAUDERDALE 39401,HATTIESBURG,MS,31.314553,-89.306471,FORREST 39402,HATTIESBURG,MS,31.309753,-89.37751,FORREST 39403,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39404,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39406,HATTIESBURG,MS,31.3282,-89.3303,FORREST 39407,HATTIESBURG,MS,31.3269,-89.2902,FORREST 39501,GULFPORT,MS,30.382556,-89.097618,HARRISON 39502,GULFPORT,MS,30.3672,-89.0927,HARRISON 39503,GULFPORT,MS,30.460105,-89.088552,HARRISON 39505,GULFPORT,MS,30.3672,-89.0927,HARRISON 39506,GULFPORT,MS,30.4756,-89.1444,HARRISON 39507,GULFPORT,MS,30.396248,-89.035347,HARRISON 39530,BILOXI,MS,30.403478,-88.897143,HARRISON 39531,BILOXI,MS,30.40334,-88.960499,HARRISON 39532,BILOXI,MS,30.452031,-88.918846,HARRISON 39533,BILOXI,MS,30.395,-88.8855,HARRISON 39534,BILOXI,MS,30.401389,-88.921389,HARRISON 39535,BILOXI,MS,30.4832,-89.1997,HARRISON 39701,COLUMBUS,MS,33.537699,-88.426194,LOWNDES 39702,COLUMBUS,MS,33.481175,-88.355387,LOWNDES 39703,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39704,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39705,COLUMBUS,MS,33.5694,-88.4305,LOWNDES 39710,COLUMBUS,MS,33.6298,-88.4468,LOWNDES 39901,ATLANTA,GA,33.8872,-84.2897,DEKALB 40201,LOUISVILLE,KY,38.2435,-85.7639,JEFFERSON 40202,LOUISVILLE,KY,38.250734,-85.747646,JEFFERSON 40203,LOUISVILLE,KY,38.245332,-85.762595,JEFFERSON 40204,LOUISVILLE,KY,38.236936,-85.724938,JEFFERSON 40205,LOUISVILLE,KY,38.22217,-85.688542,JEFFERSON 40206,LOUISVILLE,KY,38.256495,-85.697581,JEFFERSON 40207,LOUISVILLE,KY,38.257908,-85.649689,JEFFERSON 40208,LOUISVILLE,KY,38.219988,-85.764823,JEFFERSON 40209,LOUISVILLE,KY,38.190125,-85.751904,JEFFERSON 40210,LOUISVILLE,KY,38.230585,-85.790548,JEFFERSON 40211,LOUISVILLE,KY,38.241958,-85.81265,JEFFERSON 40212,LOUISVILLE,KY,38.265116,-85.804479,JEFFERSON 40213,LOUISVILLE,KY,38.183929,-85.710642,JEFFERSON 40214,LOUISVILLE,KY,38.159318,-85.778027,JEFFERSON 40215,LOUISVILLE,KY,38.191319,-85.784707,JEFFERSON 40216,LOUISVILLE,KY,38.186138,-85.831771,JEFFERSON 40217,LOUISVILLE,KY,38.21736,-85.740371,JEFFERSON 40218,LOUISVILLE,KY,38.191084,-85.654834,JEFFERSON 40219,LOUISVILLE,KY,38.141291,-85.680548,JEFFERSON 40220,LOUISVILLE,KY,38.21494,-85.624489,JEFFERSON 40221,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40222,LOUISVILLE,KY,38.263825,-85.611183,JEFFERSON 40223,LOUISVILLE,KY,38.253688,-85.561151,JEFFERSON 40224,LOUISVILLE,KY,38.2289,-85.575,JEFFERSON 40225,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40228,LOUISVILLE,KY,38.1392,-85.630967,JEFFERSON 40229,LOUISVILLE,KY,38.090655,-85.671889,JEFFERSON 40231,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40232,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40233,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40241,LOUISVILLE,KY,38.301509,-85.582421,JEFFERSON 40242,LOUISVILLE,KY,38.276858,-85.590224,JEFFERSON 40243,LOUISVILLE,KY,38.240115,-85.537381,JEFFERSON 40245,LOUISVILLE,KY,38.268273,-85.484461,JEFFERSON 40250,LOUISVILLE,KY,38.2164,-85.6236,JEFFERSON 40251,LOUISVILLE,KY,38.2497,-85.7974,JEFFERSON 40252,LOUISVILLE,KY,38.256667,-85.601667,JEFFERSON 40253,LOUISVILLE,KY,38.245278,-85.538889,JEFFERSON 40255,LOUISVILLE,KY,38.2237,-85.6868,JEFFERSON 40256,LOUISVILLE,KY,38.2,-85.822778,JEFFERSON 40257,LOUISVILLE,KY,38.252778,-85.655833,JEFFERSON 40258,LOUISVILLE,KY,38.142369,-85.862505,JEFFERSON 40259,LOUISVILLE,KY,38.141111,-85.687778,JEFFERSON 40261,LOUISVILLE,KY,38.1942,-85.6515,JEFFERSON 40266,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40268,LOUISVILLE,KY,38.1435,-85.8384,JEFFERSON 40269,LOUISVILLE,KY,38.1931,-85.5668,JEFFERSON 40270,LOUISVILLE,KY,38.111111,-85.870278,JEFFERSON 40272,LOUISVILLE,KY,38.097063,-85.858701,JEFFERSON 40280,LOUISVILLE,KY,38.2576,-85.7019,JEFFERSON 40281,LOUISVILLE,KY,38.144444,-85.866389,JEFFERSON 40282,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40283,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40285,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40287,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40289,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40290,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40291,LOUISVILLE,KY,38.15205,-85.594513,JEFFERSON 40292,LOUISVILLE,KY,38.2183,-85.7593,JEFFERSON 40293,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40294,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40295,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40296,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40297,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40298,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40299,LOUISVILLE,KY,38.188491,-85.568947,JEFFERSON 40502,LEXINGTON,KY,38.017394,-84.485423,FAYETTE 40503,LEXINGTON,KY,38.001002,-84.52821,FAYETTE 40504,LEXINGTON,KY,38.040628,-84.543325,FAYETTE 40505,LEXINGTON,KY,38.061201,-84.458338,FAYETTE 40506,LEXINGTON,KY,38.0244,-84.5047,FAYETTE 40507,LEXINGTON,KY,38.046385,-84.495289,FAYETTE 40508,LEXINGTON,KY,38.04754,-84.496435,FAYETTE 40509,LEXINGTON,KY,38.010166,-84.427419,FAYETTE 40510,LEXINGTON,KY,38.070211,-84.591046,FAYETTE 40511,LEXINGTON,KY,38.093233,-84.500671,FAYETTE 40512,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40513,LEXINGTON,KY,38.01388,-84.581522,FAYETTE 40514,LEXINGTON,KY,37.983291,-84.576667,FAYETTE 40515,LEXINGTON,KY,37.965102,-84.470751,FAYETTE 40516,LEXINGTON,KY,38.054355,-84.354802,FAYETTE 40517,LEXINGTON,KY,37.984864,-84.481588,FAYETTE 40522,LEXINGTON,KY,38.0196,-84.488,FAYETTE 40523,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40524,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40526,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40533,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40536,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40544,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40546,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40550,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40555,LEXINGTON,KY,38.0491,-84.5002,FAYETTE 40574,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40575,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40576,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40577,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40578,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40579,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40580,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40581,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40582,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40583,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40588,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40591,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40598,LEXINGTON,KY,38.0494,-84.5004,FAYETTE 40601,FRANKFORT,KY,38.192831,-84.88061,FRANKLIN 40602,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40603,FRANKFORT,KY,38.2017,-84.8324,FRANKLIN 40604,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40618,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40619,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40620,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40621,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40622,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 43085,COLUMBUS,OH,40.105155,-83.010069,FRANKLIN 43201,COLUMBUS,OH,39.995157,-83.004732,FRANKLIN 43202,COLUMBUS,OH,40.020084,-83.011842,FRANKLIN 43203,COLUMBUS,OH,39.971925,-82.969131,FRANKLIN 43204,COLUMBUS,OH,39.952333,-83.077999,FRANKLIN 43205,COLUMBUS,OH,39.956905,-82.964352,FRANKLIN 43206,COLUMBUS,OH,39.942639,-82.974845,FRANKLIN 43207,COLUMBUS,OH,39.904565,-82.970334,FRANKLIN 43209,COLUMBUS,OH,39.958999,-82.926595,FRANKLIN 43210,COLUMBUS,OH,40.002804,-83.016404,FRANKLIN 43211,COLUMBUS,OH,40.011792,-82.973196,FRANKLIN 43212,COLUMBUS,OH,39.987381,-83.045579,FRANKLIN 43213,COLUMBUS,OH,39.967146,-82.878275,FRANKLIN 43214,COLUMBUS,OH,40.053482,-83.01875,FRANKLIN 43215,COLUMBUS,OH,39.967106,-83.004383,FRANKLIN 43216,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43217,COLUMBUS,OH,39.806209,-82.947483,FRANKLIN 43218,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43219,COLUMBUS,OH,40.004394,-82.936459,FRANKLIN 43220,COLUMBUS,OH,40.049484,-83.066911,FRANKLIN 43221,COLUMBUS,OH,40.015431,-83.064592,FRANKLIN 43222,COLUMBUS,OH,39.957628,-83.031109,FRANKLIN 43223,COLUMBUS,OH,39.938753,-83.046344,FRANKLIN 43224,COLUMBUS,OH,40.042493,-82.968947,FRANKLIN 43226,COLUMBUS,OH,40.1035,-82.9866,FRANKLIN 43227,COLUMBUS,OH,39.944394,-82.890298,FRANKLIN 43228,COLUMBUS,OH,39.947876,-83.123858,FRANKLIN 43229,COLUMBUS,OH,40.083886,-82.972568,FRANKLIN 43230,COLUMBUS,OH,40.038458,-82.882429,FRANKLIN 43231,COLUMBUS,OH,40.080984,-82.938275,FRANKLIN 43232,COLUMBUS,OH,39.923024,-82.866432,FRANKLIN 43234,COLUMBUS,OH,40.1011,-83.0555,FRANKLIN 43235,COLUMBUS,OH,40.101271,-83.059287,FRANKLIN 43236,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43240,COLUMBUS,OH,40.1444,-82.9789,DELAWARE 43251,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43260,COLUMBUS,OH,39.9618,-83.0009,FRANKLIN 43265,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43266,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43268,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43270,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43271,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43272,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43279,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43287,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43291,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43299,COLUMBUS,OH,40.0395,-82.8695,FRANKLIN 43601,TOLEDO,OH,41.642,-83.5438,LUCAS 43603,TOLEDO,OH,41.6497,-83.5341,LUCAS 43604,TOLEDO,OH,41.661415,-83.524949,LUCAS 43605,TOLEDO,OH,41.640701,-83.512341,LUCAS 43606,TOLEDO,OH,41.671213,-83.605992,LUCAS 43607,TOLEDO,OH,41.650417,-83.597419,LUCAS 43608,TOLEDO,OH,41.677908,-83.534359,LUCAS 43609,TOLEDO,OH,41.629761,-83.577282,LUCAS 43610,TOLEDO,OH,41.676693,-83.557303,LUCAS 43611,TOLEDO,OH,41.704507,-83.489203,LUCAS 43612,TOLEDO,OH,41.704567,-83.565622,LUCAS 43613,TOLEDO,OH,41.703913,-83.603397,LUCAS 43614,TOLEDO,OH,41.60279,-83.62917,LUCAS 43615,TOLEDO,OH,41.649197,-83.670583,LUCAS 43617,TOLEDO,OH,41.666765,-83.716967,LUCAS 43620,TOLEDO,OH,41.66536,-83.553602,LUCAS 43623,TOLEDO,OH,41.707968,-83.643408,LUCAS 43635,TOLEDO,OH,41.6615,-83.6861,LUCAS 43652,TOLEDO,OH,41.642,-83.5438,LUCAS 43654,TOLEDO,OH,41.642,-83.5438,WOOD 43656,TOLEDO,OH,41.7043,-83.6509,LUCAS 43657,TOLEDO,OH,41.642,-83.5438,LUCAS 43659,TOLEDO,OH,41.6465,-83.536,LUCAS 43660,TOLEDO,OH,41.642,-83.5438,LUCAS 43661,TOLEDO,OH,41.642,-83.5438,LUCAS 43666,TOLEDO,OH,41.642,-83.5438,LUCAS 43667,TOLEDO,OH,41.642,-83.5438,LUCAS 43681,TOLEDO,OH,41.642,-83.5438,LUCAS 43682,TOLEDO,OH,41.642,-83.5438,LUCAS 43697,TOLEDO,OH,41.642,-83.5438,LUCAS 43699,TOLEDO,OH,41.642,-83.5438,LUCAS 44101,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44102,CLEVELAND,OH,41.473508,-81.739791,CUYAHOGA 44103,CLEVELAND,OH,41.515726,-81.640475,CUYAHOGA 44104,CLEVELAND,OH,41.480924,-81.624502,CUYAHOGA 44105,CLEVELAND,OH,41.450912,-81.619002,CUYAHOGA 44106,CLEVELAND,OH,41.508359,-81.60757,CUYAHOGA 44108,CLEVELAND,OH,41.53492,-81.608974,CUYAHOGA 44109,CLEVELAND,OH,41.445768,-81.703315,CUYAHOGA 44110,CLEVELAND,OH,41.563557,-81.573276,CUYAHOGA 44111,CLEVELAND,OH,41.457066,-81.78435,CUYAHOGA 44112,CLEVELAND,OH,41.535517,-81.576262,CUYAHOGA 44113,CLEVELAND,OH,41.481648,-81.701848,CUYAHOGA 44114,CLEVELAND,OH,41.506351,-81.67425,CUYAHOGA 44115,CLEVELAND,OH,41.494574,-81.667009,CUYAHOGA 44118,CLEVELAND,OH,41.501213,-81.553945,CUYAHOGA 44119,CLEVELAND,OH,41.588238,-81.546759,CUYAHOGA 44120,CLEVELAND,OH,41.471433,-81.583911,CUYAHOGA 44121,CLEVELAND,OH,41.526019,-81.533758,CUYAHOGA 44124,CLEVELAND,OH,41.514349,-81.46801,CUYAHOGA 44125,CLEVELAND,OH,41.415792,-81.605385,CUYAHOGA 44126,CLEVELAND,OH,41.4433,-81.856381,CUYAHOGA 44127,CLEVELAND,OH,41.470125,-81.648999,CUYAHOGA 44128,CLEVELAND,OH,41.441565,-81.548574,CUYAHOGA 44129,CLEVELAND,OH,41.396474,-81.734604,CUYAHOGA 44130,CLEVELAND,OH,41.377178,-81.774858,CUYAHOGA 44134,CLEVELAND,OH,41.390764,-81.705726,CUYAHOGA 44135,CLEVELAND,OH,41.434177,-81.804433,CUYAHOGA 44143,CLEVELAND,OH,41.552195,-81.484715,CUYAHOGA 44144,CLEVELAND,OH,41.434419,-81.735222,CUYAHOGA 44178,CLEVELAND,OH,41.4994,-81.6955,CUYAHOGA 44181,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44185,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44188,CLEVELAND,OH,41.4017,-81.8266,CUYAHOGA 44189,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44190,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44191,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44192,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44193,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44194,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44195,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44197,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44198,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44199,CLEVELAND,OH,41.5047,-81.6911,CUYAHOGA 44301,AKRON,OH,41.044852,-81.520048,SUMMIT 44302,AKRON,OH,41.091988,-81.542015,SUMMIT 44303,AKRON,OH,41.102508,-81.538609,SUMMIT 44304,AKRON,OH,41.080808,-81.508526,SUMMIT 44305,AKRON,OH,41.076029,-81.464409,SUMMIT 44306,AKRON,OH,41.04791,-81.491554,SUMMIT 44307,AKRON,OH,41.069465,-81.548786,SUMMIT 44308,AKRON,OH,41.079576,-81.519363,SUMMIT 44309,AKRON,OH,41.0655,-81.5204,SUMMIT 44310,AKRON,OH,41.107547,-81.500586,SUMMIT 44311,AKRON,OH,41.063784,-81.520005,SUMMIT 44312,AKRON,OH,41.033442,-81.438528,SUMMIT 44313,AKRON,OH,41.121995,-81.568487,SUMMIT 44314,AKRON,OH,41.040774,-81.559825,SUMMIT 44315,AKRON,OH,41.0655,-81.5204,SUMMIT 44316,AKRON,OH,41.0655,-81.5204,SUMMIT 44317,AKRON,OH,41.0655,-81.5204,SUMMIT 44319,AKRON,OH,40.97912,-81.53468,SUMMIT 44320,AKRON,OH,41.083496,-81.56744,SUMMIT 44321,AKRON,OH,41.103139,-81.648045,SUMMIT 44322,AKRON,OH,41.0655,-81.5204,SUMMIT 44325,AKRON,OH,41.0748,-81.5165,SUMMIT 44326,AKRON,OH,41.0655,-81.5204,SUMMIT 44328,AKRON,OH,41.0758,-81.5206,SUMMIT 44333,AKRON,OH,41.146734,-81.62385,SUMMIT 44372,AKRON,OH,41.112,-81.5746,SUMMIT 44393,AKRON,OH,41.0655,-81.5204,SUMMIT 44396,AKRON,OH,41.0813,-81.5191,SUMMIT 44398,AKRON,OH,41.0655,-81.5204,SUMMIT 44399,AKRON,OH,41.0655,-81.5204,SUMMIT 44481,WARREN,OH,41.172426,-80.871806,TRUMBULL 44482,WARREN,OH,41.1742,-80.8702,TRUMBULL 44483,WARREN,OH,41.263878,-80.816448,TRUMBULL 44484,WARREN,OH,41.231819,-80.764243,TRUMBULL 44485,WARREN,OH,41.240511,-80.844136,TRUMBULL 44486,WARREN,OH,41.3004,-80.8436,TRUMBULL 44488,WARREN,OH,41.2375,-80.8162,TRUMBULL 44501,YOUNGSTOWN,OH,41.0986,-80.6474,MAHONING 44502,YOUNGSTOWN,OH,41.077366,-80.640905,MAHONING 44503,YOUNGSTOWN,OH,41.102016,-80.650007,MAHONING 44504,YOUNGSTOWN,OH,41.123686,-80.653887,MAHONING 44505,YOUNGSTOWN,OH,41.125748,-80.627748,MAHONING 44506,YOUNGSTOWN,OH,41.096045,-80.625916,MAHONING 44507,YOUNGSTOWN,OH,41.073236,-80.655336,MAHONING 44509,YOUNGSTOWN,OH,41.10498,-80.694463,MAHONING 44510,YOUNGSTOWN,OH,41.119714,-80.667204,MAHONING 44511,YOUNGSTOWN,OH,41.070402,-80.693098,MAHONING 44512,YOUNGSTOWN,OH,41.031985,-80.666629,MAHONING 44513,YOUNGSTOWN,OH,41.024167,-80.663056,MAHONING 44514,YOUNGSTOWN,OH,41.023258,-80.610254,MAHONING 44515,YOUNGSTOWN,OH,41.093903,-80.743966,MAHONING 44555,YOUNGSTOWN,OH,41.1073,-80.6513,MAHONING 44701,CANTON,OH,40.7962,-81.3768,STARK 44702,CANTON,OH,40.80267,-81.373946,STARK 44703,CANTON,OH,40.809791,-81.381439,STARK 44704,CANTON,OH,40.799076,-81.353701,STARK 44705,CANTON,OH,40.825866,-81.339903,STARK 44706,CANTON,OH,40.767959,-81.411903,STARK 44707,CANTON,OH,40.776885,-81.360407,STARK 44708,CANTON,OH,40.81196,-81.424116,STARK 44709,CANTON,OH,40.837227,-81.385947,STARK 44710,CANTON,OH,40.791107,-81.416946,STARK 44711,CANTON,OH,40.827,-81.3853,STARK 44712,CANTON,OH,40.827,-81.3853, 44714,CANTON,OH,40.827174,-81.360963,STARK 44718,CANTON,OH,40.85479,-81.448514,STARK 44721,CANTON,OH,40.883446,-81.33279,STARK 44735,CANTON,OH,40.8436,-81.4363,STARK 44750,CANTON,OH,40.827,-81.3853,STARK 44767,CANTON,OH,40.827,-81.3853,STARK 44799,CANTON,OH,40.827,-81.3853,STARK 44901,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 44902,MANSFIELD,OH,40.755937,-82.512269,RICHLAND 44903,MANSFIELD,OH,40.762258,-82.52538,RICHLAND 44904,MANSFIELD,OH,40.682568,-82.590605,RICHLAND 44905,MANSFIELD,OH,40.777173,-82.474609,RICHLAND 44906,MANSFIELD,OH,40.762679,-82.559295,RICHLAND 44907,MANSFIELD,OH,40.734483,-82.519833,RICHLAND 44999,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 45011,HAMILTON,OH,39.405906,-84.522117,BUTLER 45012,HAMILTON,OH,39.3993,-84.5638,BUTLER 45013,HAMILTON,OH,39.40619,-84.606655,BUTLER 45015,HAMILTON,OH,39.367152,-84.551187,BUTLER 45025,HAMILTON,OH,39.3993,-84.5638,BUTLER 45026,HAMILTON,OH,39.3993,-84.5638,BUTLER 45201,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45202,CINCINNATI,OH,39.107225,-84.501956,HAMILTON 45203,CINCINNATI,OH,39.10754,-84.525684,HAMILTON 45204,CINCINNATI,OH,39.102498,-84.566794,HAMILTON 45205,CINCINNATI,OH,39.110439,-84.575672,HAMILTON 45206,CINCINNATI,OH,39.126916,-84.485258,HAMILTON 45207,CINCINNATI,OH,39.139747,-84.470621,HAMILTON 45208,CINCINNATI,OH,39.136082,-84.435474,HAMILTON 45209,CINCINNATI,OH,39.151578,-84.427833,HAMILTON 45211,CINCINNATI,OH,39.152401,-84.596714,HAMILTON 45212,CINCINNATI,OH,39.162505,-84.452765,HAMILTON 45213,CINCINNATI,OH,39.182905,-84.418701,HAMILTON 45214,CINCINNATI,OH,39.120642,-84.541442,HAMILTON 45215,CINCINNATI,OH,39.230063,-84.457168,HAMILTON 45216,CINCINNATI,OH,39.199183,-84.479232,HAMILTON 45217,CINCINNATI,OH,39.161715,-84.497424,HAMILTON 45218,CINCINNATI,OH,39.266573,-84.519608,HAMILTON 45219,CINCINNATI,OH,39.127027,-84.513127,HAMILTON 45220,CINCINNATI,OH,39.143183,-84.521738,HAMILTON 45221,CINCINNATI,OH,39.1325,-84.5159,HAMILTON 45222,CINCINNATI,OH,39.193611,-84.448611,HAMILTON 45223,CINCINNATI,OH,39.169619,-84.547807,HAMILTON 45224,CINCINNATI,OH,39.203079,-84.53883,HAMILTON 45225,CINCINNATI,OH,39.144654,-84.553267,HAMILTON 45226,CINCINNATI,OH,39.117356,-84.431194,HAMILTON 45227,CINCINNATI,OH,39.15431,-84.387211,HAMILTON 45228,CINCINNATI,OH,39.066448,-84.423539,HAMILTON 45229,CINCINNATI,OH,39.149016,-84.489184,HAMILTON 45230,CINCINNATI,OH,39.080861,-84.378727,HAMILTON 45231,CINCINNATI,OH,39.241827,-84.543702,HAMILTON 45232,CINCINNATI,OH,39.185926,-84.514101,HAMILTON 45233,CINCINNATI,OH,39.11928,-84.669411,HAMILTON 45234,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45235,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45236,CINCINNATI,OH,39.207302,-84.394746,HAMILTON 45237,CINCINNATI,OH,39.18797,-84.457997,HAMILTON 45238,CINCINNATI,OH,39.111667,-84.608805,HAMILTON 45239,CINCINNATI,OH,39.207995,-84.579225,HAMILTON 45240,CINCINNATI,OH,39.286424,-84.526299,HAMILTON 45241,CINCINNATI,OH,39.276745,-84.391161,HAMILTON 45242,CINCINNATI,OH,39.239881,-84.359919,HAMILTON 45243,CINCINNATI,OH,39.187847,-84.359349,HAMILTON 45244,CINCINNATI,OH,39.107091,-84.347765,HAMILTON 45245,CINCINNATI,OH,39.091293,-84.277383,CLERMONT 45246,CINCINNATI,OH,39.28751,-84.472353,HAMILTON 45247,CINCINNATI,OH,39.207604,-84.631608,HAMILTON 45248,CINCINNATI,OH,39.159056,-84.651535,HAMILTON 45249,CINCINNATI,OH,39.275946,-84.326673,HAMILTON 45250,CINCINNATI,OH,39.1145,-84.5359,HAMILTON 45251,CINCINNATI,OH,39.253005,-84.587987,HAMILTON 45252,CINCINNATI,OH,39.266803,-84.62832,HAMILTON 45253,CINCINNATI,OH,39.223056,-84.586944,HAMILTON 45254,CINCINNATI,OH,39.068889,-84.277222,HAMILTON 45255,CINCINNATI,OH,39.070642,-84.330774,HAMILTON 45258,CINCINNATI,OH,39.1419,-84.6254,HAMILTON 45262,CINCINNATI,OH,39.1212,-84.5448,HAMILTON 45263,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45264,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45267,CINCINNATI,OH,39.1396,-84.5038,HAMILTON 45268,CINCINNATI,OH,39.1329,-84.5093,HAMILTON 45269,CINCINNATI,OH,39.107,-84.4991,HAMILTON 45270,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45271,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45273,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45274,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45275,CINCINNATI,OH,39.0424,-84.6608,HAMILTON 45277,CINCINNATI,OH,38.9846,-84.4889,HAMILTON 45280,CINCINNATI,OH,39.1616,-84.4569,HAMILTON 45296,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45298,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 45299,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45401,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45402,DAYTON,OH,39.756305,-84.189508,MONTGOMERY 45403,DAYTON,OH,39.761728,-84.149802,MONTGOMERY 45404,DAYTON,OH,39.78619,-84.162157,MONTGOMERY 45405,DAYTON,OH,39.78993,-84.213546,MONTGOMERY 45406,DAYTON,OH,39.782148,-84.237297,MONTGOMERY 45408,DAYTON,OH,39.739526,-84.228963,MONTGOMERY 45409,DAYTON,OH,39.728496,-84.182495,MONTGOMERY 45410,DAYTON,OH,39.74743,-84.16001,MONTGOMERY 45412,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45413,DAYTON,OH,39.8225,-84.1914,MONTGOMERY 45414,DAYTON,OH,39.828528,-84.202444,MONTGOMERY 45415,DAYTON,OH,39.835488,-84.261328,MONTGOMERY 45416,DAYTON,OH,39.805541,-84.259824,MONTGOMERY 45417,DAYTON,OH,39.752812,-84.246961,MONTGOMERY 45418,DAYTON,OH,39.716251,-84.267696,MONTGOMERY 45419,DAYTON,OH,39.715486,-84.163656,MONTGOMERY 45420,DAYTON,OH,39.721286,-84.133892,MONTGOMERY 45422,DAYTON,OH,39.76,-84.1959,MONTGOMERY 45423,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45424,DAYTON,OH,39.845339,-84.123287,MONTGOMERY 45426,DAYTON,OH,39.810548,-84.298283,MONTGOMERY 45427,DAYTON,OH,39.754527,-84.281884,MONTGOMERY 45428,DAYTON,OH,39.7489,-84.2531,MONTGOMERY 45429,DAYTON,OH,39.686392,-84.156077,MONTGOMERY 45430,DAYTON,OH,39.709381,-84.083596,MONTGOMERY 45431,DAYTON,OH,39.765396,-84.099802,GREENE 45432,DAYTON,OH,39.740774,-84.094157,GREENE 45433,DAYTON,OH,39.813758,-84.059048,GREENE 45434,DAYTON,OH,39.716552,-84.040385,GREENE 45435,DAYTON,OH,39.7578,-84.1777,GREENE 45437,DAYTON,OH,39.7692,-84.1226,MONTGOMERY 45439,DAYTON,OH,39.689617,-84.21626,MONTGOMERY 45440,DAYTON,OH,39.674854,-84.113573,MONTGOMERY 45441,DAYTON,OH,39.6458,-84.1669,MONTGOMERY 45448,DAYTON,OH,39.6325,-84.1564,MONTGOMERY 45449,DAYTON,OH,39.662098,-84.237887,MONTGOMERY 45454,DAYTON,OH,39.6976,-84.2213,MONTGOMERY 45458,DAYTON,OH,39.615755,-84.162697,MONTGOMERY 45459,DAYTON,OH,39.645957,-84.166422,MONTGOMERY 45463,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45469,DAYTON,OH,39.7331,-84.1804,MONTGOMERY 45470,DAYTON,OH,39.6274,-84.2775,MONTGOMERY 45475,DAYTON,OH,39.6371,-84.2205,MONTGOMERY 45479,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45481,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45482,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45490,DAYTON,OH,39.8968,-84.2227,MONTGOMERY 45501,SPRINGFIELD,OH,39.924167,-83.808889,CLARK 45502,SPRINGFIELD,OH,39.930486,-83.841338,CLARK 45503,SPRINGFIELD,OH,39.9528,-83.78043,CLARK 45504,SPRINGFIELD,OH,39.940793,-83.834302,CLARK 45505,SPRINGFIELD,OH,39.910588,-83.785593,CLARK 45506,SPRINGFIELD,OH,39.910418,-83.827512,CLARK 45801,LIMA,OH,40.764066,-84.097296,ALLEN 45802,LIMA,OH,40.7425,-84.105278,ALLEN 45804,LIMA,OH,40.727476,-84.089023,ALLEN 45805,LIMA,OH,40.739911,-84.14591,ALLEN 45806,LIMA,OH,40.675926,-84.144049,AUGLAIZE 45807,LIMA,OH,40.791599,-84.163966,ALLEN 45999,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 46011,ANDERSON,IN,40.114577,-85.725305,MADISON 46012,ANDERSON,IN,40.130947,-85.653591,MADISON 46013,ANDERSON,IN,40.061865,-85.680073,MADISON 46014,ANDERSON,IN,40.0865,-85.6837,MADISON 46015,ANDERSON,IN,40.1059,-85.6784,MADISON 46016,ANDERSON,IN,40.098799,-85.684566,MADISON 46017,ANDERSON,IN,40.096431,-85.601493,MADISON 46018,ANDERSON,IN,40.1052,-85.6802,MADISON 46201,INDIANAPOLIS,IN,39.775006,-86.109348,MARION 46202,INDIANAPOLIS,IN,39.785063,-86.159502,MARION 46203,INDIANAPOLIS,IN,39.743025,-86.117859,MARION 46204,INDIANAPOLIS,IN,39.771986,-86.153491,MARION 46205,INDIANAPOLIS,IN,39.826761,-86.138582,MARION 46206,INDIANAPOLIS,IN,39.761,-86.161,MARION 46207,INDIANAPOLIS,IN,39.761,-86.161,MARION 46208,INDIANAPOLIS,IN,39.829905,-86.179444,MARION 46209,INDIANAPOLIS,IN,39.761,-86.161,MARION 46211,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46214,INDIANAPOLIS,IN,39.792678,-86.289952,MARION 46216,INDIANAPOLIS,IN,39.857731,-86.016688,MARION 46217,INDIANAPOLIS,IN,39.664141,-86.175394,MARION 46218,INDIANAPOLIS,IN,39.80817,-86.101425,MARION 46219,INDIANAPOLIS,IN,39.782092,-86.049533,MARION 46220,INDIANAPOLIS,IN,39.864685,-86.11815,MARION 46221,INDIANAPOLIS,IN,39.750885,-86.19243,MARION 46222,INDIANAPOLIS,IN,39.788971,-86.213574,MARION 46223,INDIANAPOLIS,IN,39.761,-86.161,MARION 46225,INDIANAPOLIS,IN,39.740599,-86.156944,MARION 46226,INDIANAPOLIS,IN,39.836969,-86.048945,MARION 46227,INDIANAPOLIS,IN,39.675,-86.129817,MARION 46228,INDIANAPOLIS,IN,39.8456,-86.2051,MARION 46229,INDIANAPOLIS,IN,39.792219,-85.983826,MARION 46230,INDIANAPOLIS,IN,39.8686,-86.1443,MARION 46231,INDIANAPOLIS,IN,39.740637,-86.318289,MARION 46234,INDIANAPOLIS,IN,39.788438,-86.324117,MARION 46235,INDIANAPOLIS,IN,39.836,-85.9829,MARION 46236,INDIANAPOLIS,IN,39.849588,-85.985059,MARION 46237,INDIANAPOLIS,IN,39.686777,-86.07891,MARION 46239,INDIANAPOLIS,IN,39.721826,-86.008209,MARION 46240,INDIANAPOLIS,IN,39.9057,-86.129548,MARION 46241,INDIANAPOLIS,IN,39.723814,-86.250856,MARION 46242,INDIANAPOLIS,IN,39.7279,-86.2559,MARION 46244,INDIANAPOLIS,IN,39.7735,-86.1583,MARION 46247,INDIANAPOLIS,IN,39.665,-86.127778,MARION 46249,INDIANAPOLIS,IN,39.8552,-86.0138,MARION 46250,INDIANAPOLIS,IN,39.9069,-86.069112,MARION 46251,INDIANAPOLIS,IN,39.7269,-86.268,MARION 46253,INDIANAPOLIS,IN,39.718056,-86.196389,MARION 46254,INDIANAPOLIS,IN,39.841379,-86.2638,MARION 46255,INDIANAPOLIS,IN,39.761,-86.161,MARION 46256,INDIANAPOLIS,IN,39.90114,-86.023877,MARION 46259,INDIANAPOLIS,IN,39.660901,-85.992603,MARION 46260,INDIANAPOLIS,IN,39.897488,-86.184809,MARION 46262,INDIANAPOLIS,IN,37.0625,-95.677068,MARION 46266,INDIANAPOLIS,IN,39.761,-86.161,MARION 46268,INDIANAPOLIS,IN,39.900296,-86.222104,MARION 46274,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46275,INDIANAPOLIS,IN,39.761,-86.161,MARION 46277,INDIANAPOLIS,IN,39.761,-86.161,MARION 46278,INDIANAPOLIS,IN,39.883858,-86.291455,MARION 46280,INDIANAPOLIS,IN,39.938417,-86.13894,HAMILTON 46282,INDIANAPOLIS,IN,39.761,-86.161,MARION 46283,INDIANAPOLIS,IN,39.761,-86.161,MARION 46285,INDIANAPOLIS,IN,39.761,-86.161,MARION 46290,INDIANAPOLIS,IN,39.93077,-86.167118,HAMILTON 46291,INDIANAPOLIS,IN,39.761,-86.161,MARION 46295,INDIANAPOLIS,IN,39.673,-86.1931,MARION 46296,INDIANAPOLIS,IN,39.7683,-86.1582,MARION 46298,INDIANAPOLIS,IN,39.8966,-86.2313,MARION 46401,GARY,IN,41.593333,-87.346389,LAKE 46402,GARY,IN,41.599711,-87.338548,LAKE 46403,GARY,IN,41.603612,-87.258984,LAKE 46404,GARY,IN,41.589937,-87.373153,LAKE 46406,GARY,IN,41.587806,-87.40621,LAKE 46407,GARY,IN,41.580429,-87.334958,LAKE 46408,GARY,IN,41.542178,-87.35883,LAKE 46409,GARY,IN,41.541247,-87.327126,LAKE 46601,SOUTH BEND,IN,41.672699,-86.253489,ST JOSEPH 46604,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46613,SOUTH BEND,IN,41.654636,-86.247865,ST JOSEPH 46614,SOUTH BEND,IN,41.625461,-86.243278,ST JOSEPH 46615,SOUTH BEND,IN,41.67413,-86.210375,ST JOSEPH 46616,SOUTH BEND,IN,41.691894,-86.264739,ST JOSEPH 46617,SOUTH BEND,IN,41.684966,-86.2351,ST JOSEPH 46619,SOUTH BEND,IN,41.667397,-86.315266,ST JOSEPH 46620,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46624,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46626,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46628,SOUTH BEND,IN,41.701525,-86.294929,ST JOSEPH 46634,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46635,SOUTH BEND,IN,41.716768,-86.207806,ST JOSEPH 46637,SOUTH BEND,IN,41.729936,-86.240694,ST JOSEPH 46660,SOUTH BEND,IN,41.6944,-86.2143,ST JOSEPH 46680,SOUTH BEND,IN,41.5762,-86.2407,ST JOSEPH 46699,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46801,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46802,FORT WAYNE,IN,41.070717,-85.15431,ALLEN 46803,FORT WAYNE,IN,41.069452,-85.107362,ALLEN 46804,FORT WAYNE,IN,41.050843,-85.256013,ALLEN 46805,FORT WAYNE,IN,41.097663,-85.118865,ALLEN 46806,FORT WAYNE,IN,41.047988,-85.113496,ALLEN 46807,FORT WAYNE,IN,41.049054,-85.146167,ALLEN 46808,FORT WAYNE,IN,41.093877,-85.162121,ALLEN 46809,FORT WAYNE,IN,41.02543,-85.1834,ALLEN 46814,FORT WAYNE,IN,41.0457,-85.3023,ALLEN 46815,FORT WAYNE,IN,41.105318,-85.062397,ALLEN 46816,FORT WAYNE,IN,41.016519,-85.097573,ALLEN 46818,FORT WAYNE,IN,41.146847,-85.206686,ALLEN 46819,FORT WAYNE,IN,41.005167,-85.152743,ALLEN 46825,FORT WAYNE,IN,41.146482,-85.123156,ALLEN 46835,FORT WAYNE,IN,41.137051,-85.068531,ALLEN 46845,FORT WAYNE,IN,41.195783,-85.119088,ALLEN 46850,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46851,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46852,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46853,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46854,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46855,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46856,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46857,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46858,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46859,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46860,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46861,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46862,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46863,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46864,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46865,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46866,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46867,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46868,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46869,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46885,FORT WAYNE,IN,41.1204,-85.0651,ALLEN 46895,FORT WAYNE,IN,41.1057,-85.1145,ALLEN 46896,FORT WAYNE,IN,41.0073,-85.0625,ALLEN 46897,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46898,FORT WAYNE,IN,41.1305,-85.1288,ALLEN 46899,FORT WAYNE,IN,41.0298,-85.1663,ALLEN 47130,JEFFERSONVILLE,IN,38.307767,-85.735885,CLARK 47131,JEFFERSONVILLE,IN,38.296667,-85.76,CLARK 47132,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47133,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47134,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47144,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47190,JEFFERSONVILLE,IN,38.28647,-85.732145,CLARK 47199,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47302,MUNCIE,IN,40.168414,-85.380689,DELAWARE 47303,MUNCIE,IN,40.217992,-85.378966,DELAWARE 47304,MUNCIE,IN,40.211134,-85.429115,DELAWARE 47305,MUNCIE,IN,40.193299,-85.386163,DELAWARE 47306,MUNCIE,IN,40.192739,-85.410153,DELAWARE 47307,MUNCIE,IN,40.1248,-85.3404,DELAWARE 47308,MUNCIE,IN,40.1314,-85.3764,DELAWARE 47401,BLOOMINGTON,IN,39.140057,-86.508262,MONROE 47402,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47403,BLOOMINGTON,IN,39.12632,-86.576867,MONROE 47404,BLOOMINGTON,IN,39.195026,-86.57572,MONROE 47405,BLOOMINGTON,IN,39.168,-86.5205,MONROE 47406,BLOOMINGTON,IN,39.1748,-86.5135,MONROE 47407,BLOOMINGTON,IN,39.2458,-86.4546,MONROE 47408,BLOOMINGTON,IN,39.183175,-86.505836,MONROE 47490,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47701,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47702,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47703,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47704,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47705,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47706,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47708,EVANSVILLE,IN,37.971818,-87.571973,VANDERBURGH 47710,EVANSVILLE,IN,38.008617,-87.574569,VANDERBURGH 47711,EVANSVILLE,IN,38.076377,-87.535236,VANDERBURGH 47712,EVANSVILLE,IN,37.998484,-87.634682,VANDERBURGH 47713,EVANSVILLE,IN,37.962326,-87.55768,VANDERBURGH 47714,EVANSVILLE,IN,37.959076,-87.529302,VANDERBURGH 47715,EVANSVILLE,IN,37.967815,-87.485526,VANDERBURGH 47716,EVANSVILLE,IN,37.9624,-87.4924,VANDERBURGH 47719,EVANSVILLE,IN,38.087,-87.5321,VANDERBURGH 47720,EVANSVILLE,IN,37.998832,-87.538793,VANDERBURGH 47721,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47722,EVANSVILLE,IN,37.9734,-87.5301,VANDERBURGH 47724,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47725,EVANSVILLE,IN,38.0934,-87.5243,VANDERBURGH 47727,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47728,EVANSVILLE,IN,37.9625,-87.5309,VANDERBURGH 47730,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47731,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47732,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47733,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47734,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47735,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47736,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47737,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47739,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47740,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47741,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47744,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47747,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47750,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47801,TERRE HAUTE,IN,39.4666,-87.4138,VIGO 47802,TERRE HAUTE,IN,39.40697,-87.402019,VIGO 47803,TERRE HAUTE,IN,39.465696,-87.353967,VIGO 47804,TERRE HAUTE,IN,39.493665,-87.394494,VIGO 47805,TERRE HAUTE,IN,39.535981,-87.341109,VIGO 47807,TERRE HAUTE,IN,39.470974,-87.400859,VIGO 47808,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47809,TERRE HAUTE,IN,39.4719,-87.4039,VIGO 47811,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47812,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47813,TERRE HAUTE,IN,39.4667,-87.4068, 47814,TERRE HAUTE,IN,39.4667,-87.4068, 47901,LAFAYETTE,IN,40.417743,-86.888358,TIPPECANOE 47902,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47903,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47904,LAFAYETTE,IN,40.427649,-86.873464,TIPPECANOE 47905,LAFAYETTE,IN,40.400054,-86.860236,TIPPECANOE 47909,LAFAYETTE,IN,40.3589,-86.8875,TIPPECANOE 47933,CRAWFORDSVILLE,IN,40.032524,-86.907424,MONTGOMERY 47934,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47935,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47936,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47937,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47938,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47939,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 48007,TROY,MI,42.5609,-83.1471,OAKLAND 48033,SOUTHFIELD,MI,42.46302,-83.288048,OAKLAND 48034,SOUTHFIELD,MI,42.477676,-83.288295,OAKLAND 48037,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48075,SOUTHFIELD,MI,42.463831,-83.225539,OAKLAND 48076,SOUTHFIELD,MI,42.499915,-83.22971,OAKLAND 48083,TROY,MI,42.559668,-83.113771,OAKLAND 48084,TROY,MI,42.562696,-83.179947,OAKLAND 48085,TROY,MI,42.5983,-83.1178,OAKLAND 48086,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48088,WARREN,MI,42.5159,-82.9824,MACOMB 48089,WARREN,MI,42.468494,-82.997385,MACOMB 48090,WARREN,MI,42.5009,-83.0461,MACOMB 48091,WARREN,MI,42.466463,-83.059263,MACOMB 48092,WARREN,MI,42.512459,-83.064278,MACOMB 48093,WARREN,MI,42.514943,-82.996764,MACOMB 48098,TROY,MI,42.598118,-83.145001,OAKLAND 48099,TROY,MI,42.5609,-83.1471,OAKLAND 48103,ANN ARBOR,MI,42.279379,-83.783998,WASHTENAW 48104,ANN ARBOR,MI,42.26939,-83.728156,WASHTENAW 48105,ANN ARBOR,MI,42.304247,-83.706756,WASHTENAW 48106,ANN ARBOR,MI,42.2723,-83.7747,WASHTENAW 48107,ANN ARBOR,MI,42.2796,-83.7461,WASHTENAW 48108,ANN ARBOR,MI,42.232782,-83.701481,WASHTENAW 48109,ANN ARBOR,MI,42.293,-83.715363,WASHTENAW 48113,ANN ARBOR,MI,42.3107,-83.6922,WASHTENAW 48120,DEARBORN,MI,42.305295,-83.160488,WAYNE 48121,DEARBORN,MI,42.3115,-83.1913,WAYNE 48123,DEARBORN,MI,42.3041,-83.2491,WAYNE 48124,DEARBORN,MI,42.294141,-83.253565,WAYNE 48126,DEARBORN,MI,42.334882,-83.180065,WAYNE 48128,DEARBORN,MI,42.319981,-83.270131,WAYNE 48201,DETROIT,MI,42.347429,-83.060398,WAYNE 48202,DETROIT,MI,42.377033,-83.079613,WAYNE 48204,DETROIT,MI,42.366098,-83.142151,WAYNE 48205,DETROIT,MI,42.431259,-82.981279,WAYNE 48206,DETROIT,MI,42.374893,-83.108695,WAYNE 48207,DETROIT,MI,42.352373,-83.027101,WAYNE 48208,DETROIT,MI,42.34947,-83.092711,WAYNE 48209,DETROIT,MI,42.309746,-83.115464,WAYNE 48210,DETROIT,MI,42.337603,-83.130281,WAYNE 48211,DETROIT,MI,42.380922,-83.040945,WAYNE 48213,DETROIT,MI,42.39816,-82.99253,WAYNE 48214,DETROIT,MI,42.366944,-82.993798,WAYNE 48215,DETROIT,MI,42.377272,-82.951319,WAYNE 48216,DETROIT,MI,42.327467,-83.082656,WAYNE 48217,DETROIT,MI,42.271914,-83.154545,WAYNE 48219,DETROIT,MI,42.426033,-83.249495,WAYNE 48221,DETROIT,MI,42.425998,-83.149976,WAYNE 48222,DETROIT,MI,42.2927,-83.1386,WAYNE 48223,DETROIT,MI,42.394453,-83.245403,WAYNE 48224,DETROIT,MI,42.409808,-82.944061,WAYNE 48226,DETROIT,MI,42.333346,-83.048432,WAYNE 48227,DETROIT,MI,42.388303,-83.193732,WAYNE 48228,DETROIT,MI,42.35473,-83.216753,WAYNE 48231,DETROIT,MI,42.3316,-83.05,WAYNE 48232,DETROIT,MI,42.2927,-83.1386,WAYNE 48233,DETROIT,MI,42.2927,-83.1386,WAYNE 48234,DETROIT,MI,42.4337,-83.043383,WAYNE 48235,DETROIT,MI,42.426098,-83.195124,WAYNE 48238,DETROIT,MI,42.395932,-83.141145,WAYNE 48242,DETROIT,MI,42.220718,-83.377081,WAYNE 48243,DETROIT,MI,42.3305,-83.0385,WAYNE 48244,DETROIT,MI,42.2927,-83.1386,WAYNE 48255,DETROIT,MI,42.2927,-83.1386,WAYNE 48260,DETROIT,MI,42.2927,-83.1386,WAYNE 48264,DETROIT,MI,42.2927,-83.1386,WAYNE 48265,DETROIT,MI,42.4388,-82.9293,WAYNE 48266,DETROIT,MI,42.2927,-83.1386,WAYNE 48267,DETROIT,MI,42.2927,-83.1386,WAYNE 48268,DETROIT,MI,42.2927,-83.1386,WAYNE 48269,DETROIT,MI,42.2927,-83.1386,WAYNE 48272,DETROIT,MI,42.2927,-83.1386,WAYNE 48275,DETROIT,MI,42.2927,-83.1386,WAYNE 48277,DETROIT,MI,42.2927,-83.1386,WAYNE 48278,DETROIT,MI,42.2927,-83.1386,WAYNE 48279,DETROIT,MI,42.2927,-83.1386,WAYNE 48288,DETROIT,MI,42.4221,-83.1034,WAYNE 48331,FARMINGTON,MI,42.510042,-83.405433,OAKLAND 48332,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48333,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48334,FARMINGTON,MI,42.506798,-83.35198,OAKLAND 48335,FARMINGTON,MI,42.463055,-83.400134,OAKLAND 48336,FARMINGTON,MI,42.460938,-83.345465,OAKLAND 48397,WARREN,MI,42.4916,-83.0402,MACOMB 48501,FLINT,MI,43.0233,-83.6856,GENESEE 48502,FLINT,MI,43.012321,-83.687768,GENESEE 48503,FLINT,MI,43.012836,-83.691429,GENESEE 48504,FLINT,MI,43.04247,-83.729908,GENESEE 48505,FLINT,MI,43.063369,-83.700093,GENESEE 48506,FLINT,MI,43.052596,-83.640192,GENESEE 48507,FLINT,MI,42.97303,-83.688999,GENESEE 48531,FLINT,MI,43.0467,-83.7444,GENESEE 48532,FLINT,MI,43.01021,-83.768576,GENESEE 48550,FLINT,MI,43.0233,-83.6856,GENESEE 48551,FLINT,MI,42.9645,-83.7185,GENESEE 48552,FLINT,MI,42.9645,-83.7185,GENESEE 48553,FLINT,MI,42.9645,-83.7185,GENESEE 48554,FLINT,MI,42.9724,-83.7952,GENESEE 48555,FLINT,MI,43.0097,-83.7093,GENESEE 48556,FLINT,MI,43.0233,-83.6856,GENESEE 48557,FLINT,MI,42.9645,-83.7185,GENESEE 48559,FLINT,MI,43.0233,-83.6856,GENESEE 48601,SAGINAW,MI,43.404692,-83.915626,SAGINAW 48602,SAGINAW,MI,43.424838,-83.974455,SAGINAW 48603,SAGINAW,MI,43.43251,-84.03028,SAGINAW 48604,SAGINAW,MI,43.473223,-83.951421,SAGINAW 48605,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48606,SAGINAW,MI,43.432,-83.9341,SAGINAW 48607,SAGINAW,MI,43.430141,-83.931872,SAGINAW 48608,SAGINAW,MI,43.4392,-84.0292,SAGINAW 48609,SAGINAW,MI,43.411,-84.0925,SAGINAW 48638,SAGINAW,MI,43.418551,-84.016734,SAGINAW 48640,MIDLAND,MI,43.637562,-84.26796,MIDLAND 48641,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48642,MIDLAND,MI,43.637488,-84.197941,MIDLAND 48663,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48667,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48670,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48674,MIDLAND,MI,43.6165,-84.1972,MIDLAND 48686,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48901,LANSING,MI,42.7323,-84.556,INGHAM 48906,LANSING,MI,42.763464,-84.558043,INGHAM 48908,LANSING,MI,42.7335,-84.6391,EATON 48909,LANSING,MI,42.6849,-84.4986,INGHAM 48910,LANSING,MI,42.700784,-84.549005,INGHAM 48911,LANSING,MI,42.679727,-84.577168,INGHAM 48912,LANSING,MI,42.737115,-84.524414,INGHAM 48913,LANSING,MI,42.6849,-84.4986,INGHAM 48915,LANSING,MI,42.739074,-84.570398,INGHAM 48916,LANSING,MI,42.6636,-84.5361,INGHAM 48917,LANSING,MI,42.737621,-84.62439,EATON 48918,LANSING,MI,42.6849,-84.4986,INGHAM 48919,LANSING,MI,42.6849,-84.4986,INGHAM 48921,LANSING,MI,42.6849,-84.4986,INGHAM 48922,LANSING,MI,42.6849,-84.4986,INGHAM 48924,LANSING,MI,42.6849,-84.4986,INGHAM 48929,LANSING,MI,42.6849,-84.4986,INGHAM 48930,LANSING,MI,42.6849,-84.4986,INGHAM 48933,LANSING,MI,42.733429,-84.557142,INGHAM 48937,LANSING,MI,42.7487,-84.5587,INGHAM 48950,LANSING,MI,42.6849,-84.4986,INGHAM 48951,LANSING,MI,42.7327,-84.5558,INGHAM 48956,LANSING,MI,42.6849,-84.4986,INGHAM 48980,LANSING,MI,42.6849,-84.4986,INGHAM 49001,KALAMAZOO,MI,42.273565,-85.545653,KALAMAZOO 49003,KALAMAZOO,MI,42.2661,-85.5663,KALAMAZOO 49004,KALAMAZOO,MI,42.326538,-85.541959,KALAMAZOO 49005,KALAMAZOO,MI,42.2919,-85.5798,KALAMAZOO 49006,KALAMAZOO,MI,42.2938,-85.6251,KALAMAZOO 49007,KALAMAZOO,MI,42.295688,-85.613722,KALAMAZOO 49008,KALAMAZOO,MI,42.262432,-85.609645,KALAMAZOO 49009,KALAMAZOO,MI,42.280947,-85.686333,KALAMAZOO 49014,BATTLE CREEK,MI,42.3053,-85.1389,CALHOUN 49015,BATTLE CREEK,MI,42.302806,-85.212825,CALHOUN 49016,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49017,BATTLE CREEK,MI,42.332218,-85.181106,CALHOUN 49018,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49019,KALAMAZOO,MI,42.2916,-85.5872,KALAMAZOO 49037,BATTLE CREEK,MI,42.3211522,-85.1797142,CALHOUN 49048,KALAMAZOO,MI,42.292,-85.5261,KALAMAZOO 49440,MUSKEGON,MI,43.232589,-86.249191,MUSKEGON 49441,MUSKEGON,MI,43.196184,-86.273819,MUSKEGON 49442,MUSKEGON,MI,43.232876,-86.188467,MUSKEGON 49443,MUSKEGON,MI,43.234167,-86.248333,MUSKEGON 49444,MUSKEGON,MI,43.195046,-86.216208,MUSKEGON 49445,MUSKEGON,MI,43.282873,-86.273297,MUSKEGON 49501,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49502,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49503,GRAND RAPIDS,MI,42.965879,-85.65273,KENT 49504,GRAND RAPIDS,MI,42.98392,-85.725543,KENT 49505,GRAND RAPIDS,MI,43.012025,-85.630931,KENT 49506,GRAND RAPIDS,MI,42.943978,-85.621317,KENT 49507,GRAND RAPIDS,MI,42.931788,-85.65417,KENT 49508,GRAND RAPIDS,MI,42.875653,-85.624179,KENT 49510,GRAND RAPIDS,MI,43.021,-85.6106,KENT 49512,GRAND RAPIDS,MI,42.89269,-85.578156,KENT 49514,GRAND RAPIDS,MI,42.9872,-85.7092,KENT 49515,GRAND RAPIDS,MI,43.0136,-85.6254,KENT 49516,GRAND RAPIDS,MI,42.9567,-85.6331,KENT 49518,GRAND RAPIDS,MI,42.8839,-85.6252,KENT 49523,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49525,GRAND RAPIDS,MI,43.0225,-85.6009,KENT 49528,GRAND RAPIDS,MI,42.9039,-85.6684,KENT 49530,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49534,GRAND RAPIDS,MI,43.008883,-85.774227,KENT 49544,GRAND RAPIDS,MI,43.0255,-85.7131,KENT 49546,GRAND RAPIDS,MI,42.928029,-85.548346,KENT 49548,GRAND RAPIDS,MI,42.867048,-85.660767,KENT 49550,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49555,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49560,GRAND RAPIDS,MI,42.8733,-85.6242,KENT 49588,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49599,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 50301,DES MOINES,IA,41.6005,-93.6088,POLK 50302,DES MOINES,IA,41.6005,-93.6088,POLK 50303,DES MOINES,IA,41.6005,-93.6088,POLK 50304,DES MOINES,IA,41.6005,-93.6088,POLK 50305,DES MOINES,IA,41.6005,-93.6088,POLK 50306,DES MOINES,IA,41.6005,-93.6088,POLK 50307,DES MOINES,IA,41.6005,-93.6088,POLK 50308,DES MOINES,IA,41.6005,-93.6088,POLK 50309,DES MOINES,IA,41.588743,-93.621175,POLK 50310,DES MOINES,IA,41.625475,-93.673611,POLK 50311,DES MOINES,IA,41.601562,-93.674371,POLK 50312,DES MOINES,IA,41.585453,-93.671908,POLK 50313,DES MOINES,IA,41.638085,-93.620305,POLK 50314,DES MOINES,IA,41.603003,-93.632993,POLK 50315,DES MOINES,IA,41.544394,-93.619226,POLK 50316,DES MOINES,IA,41.609228,-93.599966,POLK 50317,DES MOINES,IA,41.612499,-93.549446,POLK 50318,DES MOINES,IA,41.6005,-93.6088,POLK 50319,DES MOINES,IA,41.594,-93.6146,POLK 50320,DES MOINES,IA,41.548693,-93.582674,POLK 50321,DES MOINES,IA,41.547628,-93.661846,POLK 50327,DES MOINES,IA,41.583889,-93.519722,POLK 50328,DES MOINES,IA,41.6005,-93.6088,POLK 50329,DES MOINES,IA,41.6005,-93.6088,POLK 50330,DES MOINES,IA,41.6005,-93.6088,POLK 50331,DES MOINES,IA,41.6005,-93.6088,POLK 50332,DES MOINES,IA,41.6005,-93.6088,POLK 50333,DES MOINES,IA,41.6564,-93.623,POLK 50334,DES MOINES,IA,41.6005,-93.6088,POLK 50335,DES MOINES,IA,41.6005,-93.6088,POLK 50336,DES MOINES,IA,41.6005,-93.6088,POLK 50339,DES MOINES,IA,41.6005,-93.6088,POLK 50340,DES MOINES,IA,41.6005,-93.6088,POLK 50347,DES MOINES,IA,41.6005,-93.6088,POLK 50350,DES MOINES,IA,41.6005,-93.6088, 50359,DES MOINES,IA,41.6005,-93.6088,POLK 50360,DES MOINES,IA,41.6005,-93.6088,POLK 50361,DES MOINES,IA,41.6005,-93.6088,POLK 50362,DES MOINES,IA,41.6005,-93.6088,POLK 50363,DES MOINES,IA,41.6005,-93.6088,POLK 50364,DES MOINES,IA,41.6005,-93.6088,POLK 50367,DES MOINES,IA,41.6005,-93.6088,POLK 50368,DES MOINES,IA,41.6005,-93.6088,POLK 50369,DES MOINES,IA,41.6005,-93.6088,POLK 50380,DES MOINES,IA,41.6005,-93.6088,POLK 50381,DES MOINES,IA,41.6005,-93.6088,POLK 50391,DES MOINES,IA,41.6005,-93.6088,POLK 50392,DES MOINES,IA,41.5878,-93.6271,POLK 50393,DES MOINES,IA,41.6005,-93.6088,POLK 50394,DES MOINES,IA,41.6005,-93.6088,POLK 50395,DES MOINES,IA,41.6005,-93.6088,POLK 50396,DES MOINES,IA,41.6005,-93.6088,POLK 50397,DES MOINES,IA,41.6005,-93.6088,POLK 50936,DES MOINES,IA,41.6005,-93.6088,POLK 50940,DES MOINES,IA,41.6005,-93.6088,POLK 50947,DES MOINES,IA,41.6005,-93.6088,POLK 50950,DES MOINES,IA,41.6005,-93.6088,POLK 50980,DES MOINES,IA,41.6005,-93.6088,POLK 50981,DES MOINES,IA,41.6005,-93.6088,POLK 51101,SIOUX CITY,IA,42.497223,-96.40292,WOODBURY 51102,SIOUX CITY,IA,42.5,-96.4,WOODBURY 51103,SIOUX CITY,IA,42.506793,-96.42951,WOODBURY 51104,SIOUX CITY,IA,42.52536,-96.400453,WOODBURY 51105,SIOUX CITY,IA,42.503224,-96.382855,WOODBURY 51106,SIOUX CITY,IA,42.467057,-96.352755,WOODBURY 51108,SIOUX CITY,IA,42.546891,-96.361695,WOODBURY 51109,SIOUX CITY,IA,42.517287,-96.480304,WOODBURY 51111,SIOUX CITY,IA,42.408912,-96.371294,WOODBURY 52240,IOWA CITY,IA,41.654899,-91.511192,JOHNSON 52242,IOWA CITY,IA,41.6603,-91.541,JOHNSON 52243,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52244,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52245,IOWA CITY,IA,41.664916,-91.51507,JOHNSON 52246,IOWA CITY,IA,41.643813,-91.566882,JOHNSON 52401,CEDAR RAPIDS,IA,41.9743,-91.655382,LINN 52402,CEDAR RAPIDS,IA,42.018778,-91.661222,LINN 52403,CEDAR RAPIDS,IA,41.984312,-91.625919,LINN 52404,CEDAR RAPIDS,IA,41.952108,-91.685286,LINN 52405,CEDAR RAPIDS,IA,41.980422,-91.709816,LINN 52406,CEDAR RAPIDS,IA,41.9189,-91.6785,LINN 52407,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52408,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52409,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52410,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52411,CEDAR RAPIDS,IA,42.0421,-91.7178,LINN 52497,CEDAR RAPIDS,IA,42.0213,-91.66,LINN 52498,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52499,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52801,DAVENPORT,IA,41.5218,-90.5743,SCOTT 52802,DAVENPORT,IA,41.516358,-90.61409,SCOTT 52803,DAVENPORT,IA,41.538509,-90.561348,SCOTT 52804,DAVENPORT,IA,41.538603,-90.61147,SCOTT 52805,DAVENPORT,IA,41.521,-90.5865,SCOTT 52806,DAVENPORT,IA,41.573271,-90.603845,SCOTT 52807,DAVENPORT,IA,41.561822,-90.540262,SCOTT 52808,DAVENPORT,IA,41.521,-90.5865,SCOTT 52809,DAVENPORT,IA,41.521,-90.5865,SCOTT 53201,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53202,MILWAUKEE,WI,43.050601,-87.896792,MILWAUKEE 53203,MILWAUKEE,WI,43.040299,-87.915375,MILWAUKEE 53204,MILWAUKEE,WI,43.015778,-87.931685,MILWAUKEE 53205,MILWAUKEE,WI,43.052841,-87.935332,MILWAUKEE 53206,MILWAUKEE,WI,43.075324,-87.934714,MILWAUKEE 53207,MILWAUKEE,WI,42.981405,-87.894598,MILWAUKEE 53208,MILWAUKEE,WI,43.048775,-87.962454,MILWAUKEE 53209,MILWAUKEE,WI,43.118765,-87.947834,MILWAUKEE 53210,MILWAUKEE,WI,43.068545,-87.971466,MILWAUKEE 53211,MILWAUKEE,WI,43.080517,-87.885078,MILWAUKEE 53212,MILWAUKEE,WI,43.071195,-87.908415,MILWAUKEE 53213,MILWAUKEE,WI,43.051316,-88.000757,MILWAUKEE 53214,MILWAUKEE,WI,43.019113,-88.010757,MILWAUKEE 53215,MILWAUKEE,WI,43.000411,-87.94174,MILWAUKEE 53216,MILWAUKEE,WI,43.085868,-87.974218,MILWAUKEE 53217,MILWAUKEE,WI,43.14086,-87.907261,MILWAUKEE 53218,MILWAUKEE,WI,43.11218,-87.993161,MILWAUKEE 53219,MILWAUKEE,WI,42.995909,-87.994368,MILWAUKEE 53220,MILWAUKEE,WI,42.968186,-87.992209,MILWAUKEE 53221,MILWAUKEE,WI,42.954864,-87.944734,MILWAUKEE 53222,MILWAUKEE,WI,43.08283,-88.02687,MILWAUKEE 53223,MILWAUKEE,WI,43.162374,-87.989818,MILWAUKEE 53224,MILWAUKEE,WI,43.159415,-88.032744,MILWAUKEE 53225,MILWAUKEE,WI,43.115416,-88.03464,MILWAUKEE 53226,MILWAUKEE,WI,43.050006,-88.041386,MILWAUKEE 53227,MILWAUKEE,WI,42.994919,-88.036384,MILWAUKEE 53228,MILWAUKEE,WI,42.970251,-88.034638,MILWAUKEE 53233,MILWAUKEE,WI,43.040738,-87.93566,MILWAUKEE 53234,MILWAUKEE,WI,43.0031,-87.9679,MILWAUKEE 53235,MILWAUKEE,WI,42.9691,-87.8763,MILWAUKEE 53237,MILWAUKEE,WI,42.9443,-87.9093,MILWAUKEE 53244,MILWAUKEE,WI,43.0408,-87.9912,MILWAUKEE 53259,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53263,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53267,MILWAUKEE,WI,43.0439,-87.9097,MILWAUKEE 53268,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53274,MILWAUKEE,WI,43.0345,-87.9153,MILWAUKEE 53278,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53288,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53290,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53293,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53295,MILWAUKEE,WI,43.0186,-87.9772,MILWAUKEE 53401,RACINE,WI,42.726,-87.7825,RACINE 53402,RACINE,WI,42.772596,-87.795985,RACINE 53403,RACINE,WI,42.706015,-87.801375,RACINE 53404,RACINE,WI,42.743348,-87.8053,RACINE 53405,RACINE,WI,42.716112,-87.823329,RACINE 53406,RACINE,WI,42.724162,-87.855104,RACINE 53407,RACINE,WI,42.7261,-87.7827,RACINE 53408,RACINE,WI,42.717,-87.8395,RACINE 53490,RACINE,WI,42.6868,-87.8378, 53701,MADISON,WI,43.073,-89.3817,DANE 53702,MADISON,WI,43.0985,-89.317,DANE 53703,MADISON,WI,43.077535,-89.383068,DANE 53704,MADISON,WI,43.120526,-89.352295,DANE 53705,MADISON,WI,43.072999,-89.452823,DANE 53706,MADISON,WI,43.076929,-89.409362,DANE 53707,MADISON,WI,43.0985,-89.317,DANE 53708,MADISON,WI,43.0985,-89.317,DANE 53711,MADISON,WI,43.035644,-89.452558,DANE 53713,MADISON,WI,43.037381,-89.390008,DANE 53714,MADISON,WI,43.097735,-89.311758,DANE 53715,MADISON,WI,43.065287,-89.400045,DANE 53716,MADISON,WI,43.067413,-89.315921,DANE 53717,MADISON,WI,43.073587,-89.507984,DANE 53718,MADISON,WI,43.152143,-89.407339,DANE 53719,MADISON,WI,43.03207,-89.499324,DANE 53725,MADISON,WI,43.0569,-89.4038,DANE 53726,MADISON,WI,43.0701,-89.4215,DANE 53744,MADISON,WI,43.0157,-89.4166,DANE 53774,MADISON,WI,43.0733,-89.4012,DANE 53777,MADISON,WI,43.073,-89.4011,DANE 53778,MADISON,WI,43.0985,-89.317,DANE 53779,MADISON,WI,43.073,-89.4011,DANE 53782,MADISON,WI,43.073,-89.4011,DANE 53783,MADISON,WI,43.073,-89.4011,DANE 53784,MADISON,WI,43.073,-89.4011,DANE 53785,MADISON,WI,43.073,-89.4011,DANE 53786,MADISON,WI,43.073,-89.4011,DANE 53788,MADISON,WI,43.073,-89.4011,DANE 53789,MADISON,WI,43.073,-89.4011,DANE 53790,MADISON,WI,43.073,-89.4011,DANE 53791,MADISON,WI,43.0985,-89.317,DANE 53792,MADISON,WI,43.073,-89.4011,DANE 53793,MADISON,WI,43.073,-89.4011,DANE 53794,MADISON,WI,43.073,-89.4011,DANE 54301,GREEN BAY,WI,44.485313,-88.016868,BROWN 54302,GREEN BAY,WI,44.502508,-87.977136,BROWN 54303,GREEN BAY,WI,44.530146,-88.045262,BROWN 54304,GREEN BAY,WI,44.505525,-88.066799,BROWN 54305,GREEN BAY,WI,44.5126,-88.0103,BROWN 54306,GREEN BAY,WI,44.5191,-88.0197,BROWN 54307,GREEN BAY,WI,44.4817,-88.0206,BROWN 54308,GREEN BAY,WI,44.5192,-87.9718,BROWN 54311,GREEN BAY,WI,44.491405,-87.926685,BROWN 54313,GREEN BAY,WI,44.546289,-88.102054,BROWN 54324,GREEN BAY,WI,44.4794,-88.0181,BROWN 54344,GREEN BAY,WI,44.4207,-88.1102,BROWN 54911,APPLETON,WI,44.277325,-88.397649,OUTAGAMIE 54912,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 54913,APPLETON,WI,44.315,-88.4057,OUTAGAMIE 54914,APPLETON,WI,44.270992,-88.432608,OUTAGAMIE 54915,APPLETON,WI,44.26351,-88.399902,OUTAGAMIE 54919,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 55101,SAINT PAUL,MN,44.969963,-93.083167,RAMSEY 55102,SAINT PAUL,MN,44.937228,-93.120852,RAMSEY 55103,SAINT PAUL,MN,44.960798,-93.121594,RAMSEY 55104,SAINT PAUL,MN,44.953179,-93.15797,RAMSEY 55105,SAINT PAUL,MN,44.934723,-93.165148,RAMSEY 55106,SAINT PAUL,MN,44.968384,-93.048817,RAMSEY 55107,SAINT PAUL,MN,44.927235,-93.086157,RAMSEY 55108,SAINT PAUL,MN,44.982217,-93.17458,RAMSEY 55109,SAINT PAUL,MN,45.011859,-93.017072,RAMSEY 55110,SAINT PAUL,MN,45.074527,-93.011299,RAMSEY 55111,SAINT PAUL,MN,44.901548,-93.202579,HENNEPIN 55112,SAINT PAUL,MN,45.074129,-93.199691,RAMSEY 55113,SAINT PAUL,MN,45.012876,-93.149245,RAMSEY 55114,SAINT PAUL,MN,44.967968,-93.198067,RAMSEY 55115,SAINT PAUL,MN,45.061132,-92.954847,WASHINGTON 55116,SAINT PAUL,MN,44.914007,-93.172747,RAMSEY 55117,SAINT PAUL,MN,44.992165,-93.103659,RAMSEY 55118,SAINT PAUL,MN,44.902691,-93.096435,DAKOTA 55119,SAINT PAUL,MN,44.955384,-93.008019,RAMSEY 55120,SAINT PAUL,MN,44.873825,-93.12902,DAKOTA 55121,SAINT PAUL,MN,44.843039,-93.16753,DAKOTA 55122,SAINT PAUL,MN,44.803593,-93.196937,DAKOTA 55123,SAINT PAUL,MN,44.809764,-93.14135,DAKOTA 55124,SAINT PAUL,MN,44.746147,-93.20776,DAKOTA 55125,SAINT PAUL,MN,44.916195,-92.951413,WASHINGTON 55126,SAINT PAUL,MN,45.083334,-93.134367,RAMSEY 55127,SAINT PAUL,MN,45.070839,-93.07875,RAMSEY 55128,SAINT PAUL,MN,44.984648,-92.968128,WASHINGTON 55129,SAINT PAUL,MN,44.9114,-92.901,WASHINGTON 55130,SAINT PAUL,MN,44.9718,-93.0826,RAMSEY 55133,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55144,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55145,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55146,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55155,SAINT PAUL,MN,44.954,-93.1023,RAMSEY 55161,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55164,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55165,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55166,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55168,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55169,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55170,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55171,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55172,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55175,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55177,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55187,SAINT PAUL,MN,44.9445,-93.0932,RAMSEY 55188,SAINT PAUL,MN,44.9453,-92.9105,RAMSEY 55191,SAINT PAUL,MN,45.076,-93.1901,RAMSEY 55348,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55357,LORETTO,MN,45.106099,-93.669165,HENNEPIN 55359,MAPLE PLAIN,MN,44.978686,-93.700214,HENNEPIN 55362,MONTICELLO,MN,45.295557,-93.802252,WRIGHT 55365,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55393,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55394,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55397,YOUNG AMERICA,MN,44.792905,-93.918049,CARVER 55399,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55401,MINNEAPOLIS,MN,44.983473,-93.268251,HENNEPIN 55402,MINNEAPOLIS,MN,44.976184,-93.275871,HENNEPIN 55403,MINNEAPOLIS,MN,44.967345,-93.282841,HENNEPIN 55404,MINNEAPOLIS,MN,44.960891,-93.26416,HENNEPIN 55405,MINNEAPOLIS,MN,44.968734,-93.299096,HENNEPIN 55406,MINNEAPOLIS,MN,44.938359,-93.221357,HENNEPIN 55407,MINNEAPOLIS,MN,44.937787,-93.2545,HENNEPIN 55408,MINNEAPOLIS,MN,44.946575,-93.286173,HENNEPIN 55409,MINNEAPOLIS,MN,44.926378,-93.28182,HENNEPIN 55410,MINNEAPOLIS,MN,44.915366,-93.318187,HENNEPIN 55411,MINNEAPOLIS,MN,44.999601,-93.300548,HENNEPIN 55412,MINNEAPOLIS,MN,45.024236,-93.302033,HENNEPIN 55413,MINNEAPOLIS,MN,44.997994,-93.255194,HENNEPIN 55414,MINNEAPOLIS,MN,44.977908,-93.219904,HENNEPIN 55415,MINNEAPOLIS,MN,44.971455,-93.264403,HENNEPIN 55416,MINNEAPOLIS,MN,44.946899,-93.340344,HENNEPIN 55417,MINNEAPOLIS,MN,44.905371,-93.23606,HENNEPIN 55418,MINNEAPOLIS,MN,45.01923,-93.240108,HENNEPIN 55419,MINNEAPOLIS,MN,44.902567,-93.288618,HENNEPIN 55420,MINNEAPOLIS,MN,44.837284,-93.276034,HENNEPIN 55421,MINNEAPOLIS,MN,45.049582,-93.246095,ANOKA 55422,MINNEAPOLIS,MN,45.016722,-93.339769,HENNEPIN 55423,MINNEAPOLIS,MN,44.875731,-93.281351,HENNEPIN 55424,MINNEAPOLIS,MN,44.904385,-93.335005,HENNEPIN 55425,MINNEAPOLIS,MN,44.843198,-93.249413,HENNEPIN 55426,MINNEAPOLIS,MN,44.954448,-93.379627,HENNEPIN 55427,MINNEAPOLIS,MN,45.010374,-93.381585,HENNEPIN 55428,MINNEAPOLIS,MN,45.060299,-93.376908,HENNEPIN 55429,MINNEAPOLIS,MN,45.067667,-93.340203,HENNEPIN 55430,MINNEAPOLIS,MN,45.061106,-93.299068,HENNEPIN 55431,MINNEAPOLIS,MN,44.827776,-93.312322,HENNEPIN 55432,MINNEAPOLIS,MN,45.095695,-93.253905,ANOKA 55433,MINNEAPOLIS,MN,45.168192,-93.326253,ANOKA 55434,MINNEAPOLIS,MN,45.168083,-93.242557,ANOKA 55435,MINNEAPOLIS,MN,44.877143,-93.371452,HENNEPIN 55437,MINNEAPOLIS,MN,44.823279,-93.343499,HENNEPIN 55438,MINNEAPOLIS,MN,44.823924,-93.380141,HENNEPIN 55439,MINNEAPOLIS,MN,44.873716,-93.332169,HENNEPIN 55440,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55441,MINNEAPOLIS,MN,45.009836,-93.422782,HENNEPIN 55442,MINNEAPOLIS,MN,45.045151,-93.426316,HENNEPIN 55443,MINNEAPOLIS,MN,45.105586,-93.340184,HENNEPIN 55444,MINNEAPOLIS,MN,45.100172,-93.302455,HENNEPIN 55445,MINNEAPOLIS,MN,45.103956,-93.373495,HENNEPIN 55446,MINNEAPOLIS,MN,45.032446,-93.472323,HENNEPIN 55447,MINNEAPOLIS,MN,44.998593,-93.494695,HENNEPIN 55448,MINNEAPOLIS,MN,45.180626,-93.289699,ANOKA 55449,MINNEAPOLIS,MN,45.1647,-93.2111,ANOKA 55450,MINNEAPOLIS,MN,44.865883,-93.247414,HENNEPIN 55454,MINNEAPOLIS,MN,44.968161,-93.242898,HENNEPIN 55455,MINNEAPOLIS,MN,44.981562,-93.23928,HENNEPIN 55458,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55459,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55460,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55467,MINNEAPOLIS,MN,44.98,-93.2638,HENNEPIN 55468,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55470,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55472,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55473,MINNEAPOLIS,MN,44.7827,-93.9133,HENNEPIN 55474,MINNEAPOLIS,MN,44.9767,-93.2682,HENNEPIN 55478,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55479,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55480,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55483,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55484,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55485,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55486,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55487,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55488,MINNEAPOLIS,MN,44.9758,-93.262,HENNEPIN 55550,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55551,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55552,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55553,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55555,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55556,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55557,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55558,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55559,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55560,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55561,MONTICELLO,MN,45.2797,-93.8097,CARVER 55562,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55563,MONTICELLO,MN,45.2797,-93.8097,CARVER 55564,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55565,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55566,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55567,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55568,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55570,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55571,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55573,YOUNG AMERICA,MN,44.8148,-93.921,HENNEPIN 55574,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55576,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55578,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55579,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55580,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55581,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55582,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55584,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55585,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55586,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55587,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55588,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55589,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55590,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55591,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55592,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55593,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55594,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55595,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55596,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55597,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55598,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55599,LORETTO,MN,45.05604,-93.664534,HENNEPIN 55801,DULUTH,MN,47.094431,-91.846731,SAINT LOUIS 55802,DULUTH,MN,46.768475,-92.086497,SAINT LOUIS 55803,DULUTH,MN,46.874913,-92.094057,SAINT LOUIS 55804,DULUTH,MN,46.855131,-92.007433,SAINT LOUIS 55805,DULUTH,MN,46.798733,-92.094553,SAINT LOUIS 55806,DULUTH,MN,46.771457,-92.127871,SAINT LOUIS 55807,DULUTH,MN,46.740783,-92.169821,SAINT LOUIS 55808,DULUTH,MN,46.681002,-92.22261,SAINT LOUIS 55810,DULUTH,MN,46.74459,-92.232332,SAINT LOUIS 55811,DULUTH,MN,46.81341,-92.168225,SAINT LOUIS 55812,DULUTH,MN,46.810598,-92.076693,SAINT LOUIS 55814,DULUTH,MN,46.8367,-92.1878,SAINT LOUIS 55815,DULUTH,MN,46.8197,-92.2595,SAINT LOUIS 55816,DULUTH,MN,46.7596,-92.132,SAINT LOUIS 55901,ROCHESTER,MN,44.049572,-92.48962,OLMSTED 55902,ROCHESTER,MN,44.003217,-92.483519,OLMSTED 55903,ROCHESTER,MN,44.0216,-92.4627,OLMSTED 55904,ROCHESTER,MN,44.010545,-92.397276,OLMSTED 55905,ROCHESTER,MN,44.0213,-92.4671,OLMSTED 55906,ROCHESTER,MN,44.021001,-92.446874,OLMSTED 56301,SAINT CLOUD,MN,45.540972,-94.181857,STEARNS 56302,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56303,SAINT CLOUD,MN,45.571298,-94.203634,STEARNS 56304,SAINT CLOUD,MN,45.552113,-94.128447,BENTON 56372,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56393,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56395,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56396,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56397,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56398,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56399,SAINT CLOUD,MN,45.560556,-94.162222,STEARNS 56901,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56915,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 56920,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56933,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56944,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56972,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 57101,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57103,SIOUX FALLS,SD,43.537386,-96.686415,MINNEHAHA 57104,SIOUX FALLS,SD,43.551355,-96.737535,MINNEHAHA 57105,SIOUX FALLS,SD,43.523972,-96.734141,MINNEHAHA 57106,SIOUX FALLS,SD,43.517912,-96.792376,MINNEHAHA 57107,SIOUX FALLS,SD,43.556628,-96.802811,MINNEHAHA 57108,SIOUX FALLS,SD,43.488,-96.7343,LINCOLN 57109,SIOUX FALLS,SD,43.5149,-96.7508,MINNEHAHA 57110,SIOUX FALLS,SD,43.5409,-96.6523,MINNEHAHA 57117,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57118,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57186,SIOUX FALLS,SD,43.5503,-96.7002,MINNEHAHA 57188,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57189,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57192,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57193,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57194,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57195,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57196,SIOUX FALLS,SD,43.5444,-96.7232,MINNEHAHA 57197,SIOUX FALLS,SD,43.5271,-96.7364,MINNEHAHA 57198,SIOUX FALLS,SD,43.7326,-96.6285,MINNEHAHA 58102,FARGO,ND,46.900878,-96.793577,CASS 58103,FARGO,ND,46.856406,-96.812252,CASS 58104,FARGO,ND,46.81492,-96.823846,CASS 58105,FARGO,ND,46.8782,-96.7895,CASS 58106,FARGO,ND,46.8782,-96.7895,CASS 58107,FARGO,ND,46.8782,-96.7895,CASS 58108,FARGO,ND,46.8782,-96.7895,CASS 58109,FARGO,ND,46.808,-96.8642,CASS 58121,FARGO,ND,46.8772,-96.7894,CASS 58122,FARGO,ND,46.8772,-96.7894,CASS 58124,FARGO,ND,46.8772,-96.7894,CASS 58125,FARGO,ND,46.8548,-96.8563,CASS 58126,FARGO,ND,46.8772,-96.7894,CASS 58201,GRAND FORKS,ND,47.901041,-97.04463,GRAND FORKS 58202,GRAND FORKS,ND,47.9229,-97.0763,GRAND FORKS 58203,GRAND FORKS,ND,47.927217,-97.067156,GRAND FORKS 58206,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58207,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58208,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58501,BISMARCK,ND,46.823448,-100.774755,BURLEIGH 58502,BISMARCK,ND,46.849,-100.7169,BURLEIGH 58503,BISMARCK,ND,46.8645,-100.7711,BURLEIGH 58504,BISMARCK,ND,46.782463,-100.774411,BURLEIGH 58505,BISMARCK,ND,46.8166,-100.7789,BURLEIGH 58506,BISMARCK,ND,46.7287,-100.6156,BURLEIGH 58507,BISMARCK,ND,46.849,-100.7169,BURLEIGH 59101,BILLINGS,MT,45.774489,-108.500452,YELLOWSTONE 59102,BILLINGS,MT,45.781265,-108.572662,YELLOWSTONE 59103,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59104,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59105,BILLINGS,MT,45.828443,-108.474726,YELLOWSTONE 59106,BILLINGS,MT,45.775306,-108.65191,YELLOWSTONE 59107,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59108,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59111,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59112,BILLINGS,MT,45.7833,-108.5,YELLOWSTONE 59114,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59115,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59116,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59117,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59601,HELENA,MT,46.613066,-112.021283,LEWIS AND CLARK 59602,HELENA,MT,46.6652,-111.9939,LEWIS AND CLARK 59604,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59620,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59623,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59624,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59625,HELENA,MT,46.601,-112.0391,LEWIS AND CLARK 59626,HELENA,MT,46.5927,-112.0352,LEWIS AND CLARK 59715,BOZEMAN,MT,45.669269,-111.043057,GALLATIN 59717,BOZEMAN,MT,45.6678,-111.0499,GALLATIN 59718,BOZEMAN,MT,45.6723,-111.1211,GALLATIN 59719,BOZEMAN,MT,45.6476,-111.171,GALLATIN 59771,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59772,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59773,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59801,MISSOULA,MT,46.856274,-114.025207,MISSOULA 59802,MISSOULA,MT,46.900615,-114.002732,MISSOULA 59803,MISSOULA,MT,46.822362,-114.026528,MISSOULA 59804,MISSOULA,MT,46.858,-114.109,MISSOULA 59806,MISSOULA,MT,46.8516,-114.0141,MISSOULA 59807,MISSOULA,MT,47.0005,-113.9872,MISSOULA 59808,MISSOULA,MT,46.9403,-114.0875,MISSOULA 59812,MISSOULA,MT,46.8625,-113.9808,MISSOULA 60038,PALATINE,IL,42.1258,-88.0764,COOK 60055,PALATINE,IL,42.1258,-88.0764,COOK 60067,PALATINE,IL,42.113888,-88.042937,COOK 60074,PALATINE,IL,42.145775,-88.022998,COOK 60078,PALATINE,IL,42.1102,-88.0341,COOK 60094,PALATINE,IL,42.1258,-88.0764,COOK 60095,PALATINE,IL,42.0967,-88.0112,COOK 60116,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60122,CAROL STREAM,IL,42.0372,-88.2811,DUPAGE 60125,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60128,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60132,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60159,SCHAUMBURG,IL,42.0333,-88.0833,COOK 60168,SCHAUMBURG,IL,42.0269,-88.092,COOK 60173,SCHAUMBURG,IL,42.05807,-88.048189,COOK 60188,CAROL STREAM,IL,41.91784,-88.136962,DUPAGE 60193,SCHAUMBURG,IL,42.014432,-88.093481,COOK 60194,SCHAUMBURG,IL,42.039025,-88.109442,COOK 60195,SCHAUMBURG,IL,42.073865,-88.108709,COOK 60196,SCHAUMBURG,IL,42.0269,-88.092,COOK 60197,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60199,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60201,EVANSTON,IL,42.054551,-87.694331,COOK 60202,EVANSTON,IL,42.03022,-87.686544,COOK 60203,EVANSTON,IL,42.048487,-87.71759,COOK 60204,EVANSTON,IL,42.0472,-87.6872,COOK 60208,EVANSTON,IL,42.0491,-87.677,COOK 60209,EVANSTON,IL,42.0472,-87.6872,COOK 60290,CHICAGO,IL,41.850033,-87.6500523,COOK 60431,JOLIET,IL,41.527154,-88.08241,WILL 60432,JOLIET,IL,41.537758,-88.057178,WILL 60433,JOLIET,IL,41.511873,-88.05687,WILL 60434,JOLIET,IL,41.525,-88.081667,WILL 60435,JOLIET,IL,41.541468,-88.128107,WILL 60436,JOLIET,IL,41.508818,-88.135779,WILL 60502,AURORA,IL,41.78262,-88.260697,DUPAGE 60503,AURORA,IL,41.710269,-88.258888,DUPAGE 60504,AURORA,IL,41.752269,-88.245281,DUPAGE 60505,AURORA,IL,41.758209,-88.297139,KANE 60506,AURORA,IL,41.766414,-88.344582,KANE 60507,AURORA,IL,41.7605,-88.32,KANE 60540,NAPERVILLE,IL,41.766198,-88.141038,DUPAGE 60563,NAPERVILLE,IL,41.78955,-88.16901,DUPAGE 60564,NAPERVILLE,IL,41.704022,-88.195248,WILL 60565,NAPERVILLE,IL,41.732833,-88.128245,DUPAGE 60566,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60567,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60568,AURORA,IL,41.7605,-88.32,KANE 60572,AURORA,IL,41.8017,-88.0685,DUPAGE 60598,AURORA,IL,41.7749,-88.2486,DUPAGE 60601,CHICAGO,IL,41.885847,-87.618123,COOK 60602,CHICAGO,IL,41.882883,-87.632125,COOK 60603,CHICAGO,IL,41.87985,-87.628499,COOK 60604,CHICAGO,IL,41.87845,-87.632999,COOK 60605,CHICAGO,IL,41.87125,-87.627715,COOK 60606,CHICAGO,IL,41.886822,-87.638648,COOK 60607,CHICAGO,IL,41.872075,-87.657845,COOK 60608,CHICAGO,IL,41.851482,-87.669444,COOK 60609,CHICAGO,IL,41.809721,-87.653279,COOK 60610,CHICAGO,IL,41.903294,-87.633565,COOK 60611,CHICAGO,IL,41.897105,-87.622285,COOK 60612,CHICAGO,IL,41.880483,-87.687333,COOK 60613,CHICAGO,IL,41.954341,-87.657491,COOK 60614,CHICAGO,IL,41.92286,-87.648295,COOK 60615,CHICAGO,IL,41.802211,-87.600623,COOK 60616,CHICAGO,IL,41.84258,-87.630552,COOK 60617,CHICAGO,IL,41.725743,-87.556012,COOK 60618,CHICAGO,IL,41.946401,-87.704214,COOK 60619,CHICAGO,IL,41.745765,-87.60539,COOK 60620,CHICAGO,IL,41.741119,-87.654251,COOK 60621,CHICAGO,IL,41.774993,-87.642136,COOK 60622,CHICAGO,IL,41.901923,-87.67785,COOK 60623,CHICAGO,IL,41.849015,-87.7157,COOK 60624,CHICAGO,IL,41.880394,-87.722349,COOK 60625,CHICAGO,IL,41.970325,-87.704157,COOK 60626,CHICAGO,IL,42.009475,-87.668887,COOK 60628,CHICAGO,IL,41.693443,-87.624277,COOK 60629,CHICAGO,IL,41.778149,-87.706936,COOK 60630,CHICAGO,IL,41.969862,-87.760273,COOK 60631,CHICAGO,IL,41.995145,-87.808215,COOK 60632,CHICAGO,IL,41.809274,-87.70518,COOK 60633,CHICAGO,IL,41.649791,-87.549489,COOK 60634,CHICAGO,IL,41.945213,-87.796054,COOK 60636,CHICAGO,IL,41.775989,-87.667368,COOK 60637,CHICAGO,IL,41.781312,-87.605097,COOK 60638,CHICAGO,IL,41.789703,-87.771927,COOK 60639,CHICAGO,IL,41.920162,-87.753502,COOK 60640,CHICAGO,IL,41.971928,-87.662405,COOK 60641,CHICAGO,IL,41.945333,-87.747376,COOK 60643,CHICAGO,IL,41.693243,-87.659445,COOK 60644,CHICAGO,IL,41.882913,-87.758163,COOK 60645,CHICAGO,IL,42.007718,-87.6962,COOK 60646,CHICAGO,IL,41.996414,-87.759172,COOK 60647,CHICAGO,IL,41.920903,-87.704322,COOK 60649,CHICAGO,IL,41.761968,-87.570252,COOK 60651,CHICAGO,IL,41.902509,-87.739307,COOK 60652,CHICAGO,IL,41.745393,-87.713516,COOK 60653,CHICAGO,IL,41.819645,-87.612605,COOK 60654,CHICAGO,IL,41.888533,-87.635292,COOK 60655,CHICAGO,IL,41.693033,-87.702188,COOK 60656,CHICAGO,IL,41.971844,-87.819981,COOK 60657,CHICAGO,IL,41.93992,-87.652805,COOK 60659,CHICAGO,IL,41.991687,-87.700823,COOK 60660,CHICAGO,IL,41.990879,-87.662856,COOK 60661,CHICAGO,IL,41.881351,-87.642969,COOK 60663,CHICAGO,IL,41.8767,-87.6381,COOK 60664,CHICAGO,IL,41.85,-87.65,COOK 60666,CHICAGO,IL,41.9821,-87.906803,COOK 60668,CHICAGO,IL,41.879,-87.6306,COOK 60669,CHICAGO,IL,41.8767,-87.6381,COOK 60670,CHICAGO,IL,41.8767,-87.6381,COOK 60673,CHICAGO,IL,41.8767,-87.6381,COOK 60674,CHICAGO,IL,41.8796,-87.6322,COOK 60675,CHICAGO,IL,41.8767,-87.6381,COOK 60677,CHICAGO,IL,41.8819,-87.6369,COOK 60678,CHICAGO,IL,41.8767,-87.6381,COOK 60679,CHICAGO,IL,41.8767,-87.6381,COOK 60680,CHICAGO,IL,41.8767,-87.6381,COOK 60681,CHICAGO,IL,41.8846,-87.6222,COOK 60682,CHICAGO,IL,41.8649,-87.8115,COOK 60684,CHICAGO,IL,41.8767,-87.6381,COOK 60685,CHICAGO,IL,41.8767,-87.6381,COOK 60686,CHICAGO,IL,41.85,-87.65,COOK 60687,CHICAGO,IL,41.8767,-87.6381,COOK 60688,CHICAGO,IL,41.8501,-87.65,COOK 60689,CHICAGO,IL,41.8746,-87.6332,COOK 60690,CHICAGO,IL,41.879,-87.6306,COOK 60691,CHICAGO,IL,41.879,-87.6306,COOK 60693,CHICAGO,IL,41.8767,-87.6381,COOK 60694,CHICAGO,IL,41.8767,-87.6381,COOK 60695,CHICAGO,IL,41.8501,-87.65,COOK 60696,CHICAGO,IL,41.8501,-87.65,COOK 60697,CHICAGO,IL,41.8767,-87.6381,COOK 60699,CHICAGO,IL,41.8727,-87.6393,COOK 60701,CHICAGO,IL,42.0274,-87.808,COOK 61101,ROCKFORD,IL,42.292233,-89.116118,WINNEBAGO 61102,ROCKFORD,IL,42.254669,-89.124695,WINNEBAGO 61103,ROCKFORD,IL,42.300986,-89.083326,WINNEBAGO 61104,ROCKFORD,IL,42.255355,-89.076779,WINNEBAGO 61105,ROCKFORD,IL,42.3358,-89.1353,WINNEBAGO 61106,ROCKFORD,IL,42.2522,-89.0798,WINNEBAGO 61107,ROCKFORD,IL,42.278629,-89.036107,WINNEBAGO 61108,ROCKFORD,IL,42.251406,-89.023519,WINNEBAGO 61109,ROCKFORD,IL,42.216581,-89.05118,WINNEBAGO 61110,ROCKFORD,IL,42.2668,-89.0823,WINNEBAGO 61112,ROCKFORD,IL,42.245639,-88.970429,WINNEBAGO 61114,ROCKFORD,IL,42.3074,-89.0033,WINNEBAGO 61125,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61126,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61601,PEORIA,IL,40.6854,-89.5953,PEORIA 61602,PEORIA,IL,40.687987,-89.601178,PEORIA 61603,PEORIA,IL,40.713915,-89.580813,PEORIA 61604,PEORIA,IL,40.711142,-89.632377,PEORIA 61605,PEORIA,IL,40.677512,-89.626325,PEORIA 61606,PEORIA,IL,40.698926,-89.612189,PEORIA 61607,PEORIA,IL,40.652434,-89.673898,PEORIA 61612,PEORIA,IL,40.7595,-89.5926,PEORIA 61613,PEORIA,IL,40.7419,-89.6276,PEORIA 61614,PEORIA,IL,40.75481,-89.603295,PEORIA 61615,PEORIA,IL,40.770165,-89.632083,PEORIA 61625,PEORIA,IL,40.6981,-89.6157,PEORIA 61629,PEORIA,IL,40.6936,-89.5888,PEORIA 61630,PEORIA,IL,40.6854,-89.5953,PEORIA 61633,PEORIA,IL,40.7311,-89.6038,PEORIA 61634,PEORIA,IL,40.6893,-89.5921,PEORIA 61635,PEORIA,IL,40.7045,-89.5219,PEORIA 61636,PEORIA,IL,40.7005,-89.5949,PEORIA 61637,PEORIA,IL,40.6936,-89.5888,PEORIA 61638,PEORIA,IL,40.8019,-89.6281,PEORIA 61639,PEORIA,IL,40.6936,-89.5888,PEORIA 61641,PEORIA,IL,40.6936,-89.5888,PEORIA 61643,PEORIA,IL,40.7247,-89.5566,PEORIA 61650,PEORIA,IL,40.6936,-89.5888,PEORIA 61651,PEORIA,IL,40.6936,-89.5888,PEORIA 61652,PEORIA,IL,40.6936,-89.5888,PEORIA 61653,PEORIA,IL,40.6936,-89.5888,PEORIA 61654,PEORIA,IL,40.6936,-89.5888,PEORIA 61655,PEORIA,IL,40.6936,-89.5888,PEORIA 61656,PEORIA,IL,40.6936,-89.5888,PEORIA 61701,BLOOMINGTON,IL,40.478295,-88.989318,MCLEAN 61702,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61704,BLOOMINGTON,IL,40.471618,-88.962466,MCLEAN 61709,BLOOMINGTON,IL,40.4638,-88.9564,MCLEAN 61710,BLOOMINGTON,IL,40.4783,-88.9535,MCLEAN 61791,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61799,BLOOMINGTON,IL,40.4297,-88.9819,MCLEAN 61820,CHAMPAIGN,IL,40.111017,-88.240747,CHAMPAIGN 61821,CHAMPAIGN,IL,40.107262,-88.278847,CHAMPAIGN 61822,CHAMPAIGN,IL,40.1175,-88.293,CHAMPAIGN 61824,CHAMPAIGN,IL,40.109,-88.2433,CHAMPAIGN 61825,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 61826,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 62201,EAST SAINT LOUIS,IL,38.631538,-90.138066,SAINT CLAIR 62202,EAST SAINT LOUIS,IL,38.615278,-90.127778,SAINT CLAIR 62203,EAST SAINT LOUIS,IL,38.599191,-90.074449,SAINT CLAIR 62204,EAST SAINT LOUIS,IL,38.631335,-90.102008,SAINT CLAIR 62205,EAST SAINT LOUIS,IL,38.614947,-90.127502,SAINT CLAIR 62206,EAST SAINT LOUIS,IL,38.561899,-90.16587,SAINT CLAIR 62207,EAST SAINT LOUIS,IL,38.58734,-90.12829,SAINT CLAIR 62521,DECATUR,IL,39.827137,-88.925984,MACON 62522,DECATUR,IL,39.843237,-88.986139,MACON 62523,DECATUR,IL,39.841694,-88.953435,MACON 62524,DECATUR,IL,39.9045,-88.9642,MACON 62525,DECATUR,IL,39.8426,-88.9525,MACON 62526,DECATUR,IL,39.877413,-88.953515,MACON 62701,SPRINGFIELD,IL,39.80004,-89.649531,SANGAMON 62702,SPRINGFIELD,IL,39.816768,-89.644147,SANGAMON 62703,SPRINGFIELD,IL,39.772401,-89.63333,SANGAMON 62704,SPRINGFIELD,IL,39.780319,-89.681066,SANGAMON 62705,SPRINGFIELD,IL,39.799,-89.6465,SANGAMON 62706,SPRINGFIELD,IL,39.7987,-89.6534,SANGAMON 62707,SPRINGFIELD,IL,39.772842,-89.663991,SANGAMON 62708,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62711,SPRINGFIELD,IL,39.76,-89.7178,SANGAMON 62712,SPRINGFIELD,IL,39.7359,-89.5993,SANGAMON 62713,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62715,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62716,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62719,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62721,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62722,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62723,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62726,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62736,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62739,SPRINGFIELD,IL,39.8003,-89.6471,SANGAMON 62746,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62756,SPRINGFIELD,IL,39.7971,-89.6535,SANGAMON 62757,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62761,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62762,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62763,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62764,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62765,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62766,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62767,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62769,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62776,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62777,SPRINGFIELD,IL,39.8022,-89.6547,SANGAMON 62781,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62786,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62791,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62794,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62796,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 63101,SAINT LOUIS,MO,38.634616,-90.191313,SAINT LOUIS CITY 63102,SAINT LOUIS,MO,38.630803,-90.18736,SAINT LOUIS CITY 63103,SAINT LOUIS,MO,38.633176,-90.216444,SAINT LOUIS CITY 63104,SAINT LOUIS,MO,38.612819,-90.218512,SAINT LOUIS CITY 63105,SAINT LOUIS,MO,38.642574,-90.324189,SAINT LOUIS 63106,SAINT LOUIS,MO,38.644246,-90.208198,SAINT LOUIS CITY 63107,SAINT LOUIS,MO,38.664522,-90.21249,SAINT LOUIS CITY 63108,SAINT LOUIS,MO,38.644526,-90.254397,SAINT LOUIS CITY 63109,SAINT LOUIS,MO,38.585452,-90.292918,SAINT LOUIS CITY 63110,SAINT LOUIS,MO,38.618534,-90.256381,SAINT LOUIS CITY 63111,SAINT LOUIS,MO,38.563349,-90.249452,SAINT LOUIS CITY 63112,SAINT LOUIS,MO,38.661619,-90.28187,SAINT LOUIS CITY 63113,SAINT LOUIS,MO,38.65896,-90.249633,SAINT LOUIS CITY 63114,SAINT LOUIS,MO,38.704425,-90.363304,SAINT LOUIS 63115,SAINT LOUIS,MO,38.675618,-90.238478,SAINT LOUIS CITY 63116,SAINT LOUIS,MO,38.581356,-90.262543,SAINT LOUIS CITY 63117,SAINT LOUIS,MO,38.629202,-90.324817,SAINT LOUIS 63118,SAINT LOUIS,MO,38.594265,-90.230911,SAINT LOUIS CITY 63119,SAINT LOUIS,MO,38.588853,-90.350807,SAINT LOUIS 63120,SAINT LOUIS,MO,38.690914,-90.25945,SAINT LOUIS CITY 63121,SAINT LOUIS,MO,38.705086,-90.296719,SAINT LOUIS 63122,SAINT LOUIS,MO,38.58486,-90.410042,SAINT LOUIS 63123,SAINT LOUIS,MO,38.550594,-90.325304,SAINT LOUIS 63124,SAINT LOUIS,MO,38.642383,-90.375468,SAINT LOUIS 63125,SAINT LOUIS,MO,38.521899,-90.295909,SAINT LOUIS 63126,SAINT LOUIS,MO,38.550349,-90.378679,SAINT LOUIS 63127,SAINT LOUIS,MO,38.540369,-90.405967,SAINT LOUIS 63128,SAINT LOUIS,MO,38.498285,-90.372275,SAINT LOUIS 63129,SAINT LOUIS,MO,38.468864,-90.32139,SAINT LOUIS 63130,SAINT LOUIS,MO,38.663941,-90.321896,SAINT LOUIS 63131,SAINT LOUIS,MO,38.612479,-90.44264,SAINT LOUIS 63132,SAINT LOUIS,MO,38.672823,-90.369642,SAINT LOUIS 63133,SAINT LOUIS,MO,38.6779,-90.303272,SAINT LOUIS 63134,SAINT LOUIS,MO,38.739614,-90.337834,SAINT LOUIS 63135,SAINT LOUIS,MO,38.748429,-90.302241,SAINT LOUIS 63136,SAINT LOUIS,MO,38.738878,-90.260189,SAINT LOUIS 63137,SAINT LOUIS,MO,38.74885,-90.217778,SAINT LOUIS 63138,SAINT LOUIS,MO,38.787041,-90.211582,SAINT LOUIS 63139,SAINT LOUIS,MO,38.610776,-90.292045,SAINT LOUIS CITY 63140,SAINT LOUIS,MO,38.738482,-90.322846,SAINT LOUIS 63141,SAINT LOUIS,MO,38.661741,-90.457072,SAINT LOUIS 63143,SAINT LOUIS,MO,38.613116,-90.319611,SAINT LOUIS 63144,SAINT LOUIS,MO,38.620839,-90.350944,SAINT LOUIS 63145,SAINT LOUIS,MO,38.7397,-90.3627,SAINT LOUIS 63146,SAINT LOUIS,MO,38.688418,-90.448251,SAINT LOUIS 63147,SAINT LOUIS,MO,38.713889,-90.237512,SAINT LOUIS CITY 63150,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63151,SAINT LOUIS,MO,38.4688,-90.305,SAINT LOUIS 63155,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63156,SAINT LOUIS,MO,38.6368,-90.2445,SAINT LOUIS CITY 63157,SAINT LOUIS,MO,38.6072,-90.2007,SAINT LOUIS CITY 63158,SAINT LOUIS,MO,38.6041,-90.2226,SAINT LOUIS CITY 63160,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63163,SAINT LOUIS,MO,38.5994,-90.2422,SAINT LOUIS CITY 63164,SAINT LOUIS,MO,38.6189,-90.1994,SAINT LOUIS CITY 63166,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63167,SAINT LOUIS,MO,38.6723,-90.4048,SAINT LOUIS 63169,SAINT LOUIS,MO,38.6288,-90.1924,SAINT LOUIS CITY 63171,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63177,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63178,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63179,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63180,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63182,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63188,SAINT LOUIS,MO,38.6294,-90.1963,SAINT LOUIS CITY 63190,SAINT LOUIS,MO,38.6272,-90.1978,SAINT LOUIS CITY 63195,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63196,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63197,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63198,SAINT LOUIS,MO,38.6583,-90.5672,SAINT LOUIS 63199,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 64050,INDEPENDENCE,MO,39.098288,-94.411072,JACKSON 64051,INDEPENDENCE,MO,39.091111,-94.415278,JACKSON 64052,INDEPENDENCE,MO,39.074984,-94.449945,JACKSON 64053,INDEPENDENCE,MO,39.105041,-94.462461,JACKSON 64054,INDEPENDENCE,MO,39.107234,-94.441496,JACKSON 64055,INDEPENDENCE,MO,39.054504,-94.403902,JACKSON 64056,INDEPENDENCE,MO,39.11773,-94.359637,JACKSON 64057,INDEPENDENCE,MO,39.073099,-94.353284,JACKSON 64058,INDEPENDENCE,MO,39.141233,-94.351526,JACKSON 64063,LEES SUMMIT,MO,38.921094,-94.348744,JACKSON 64064,LEES SUMMIT,MO,38.995336,-94.365192,JACKSON 64065,LEES SUMMIT,MO,38.951389,-94.401389,JACKSON 64081,LEES SUMMIT,MO,38.914169,-94.407302,JACKSON 64082,LEES SUMMIT,MO,38.851803,-94.394368,JACKSON 64086,LEES SUMMIT,MO,38.923056,-94.243889,JACKSON 64101,KANSAS CITY,MO,39.10005,-94.601849,JACKSON 64102,KANSAS CITY,MO,39.086067,-94.606596,JACKSON 64105,KANSAS CITY,MO,39.102459,-94.590092,JACKSON 64106,KANSAS CITY,MO,39.105186,-94.569858,JACKSON 64108,KANSAS CITY,MO,39.0837,-94.586826,JACKSON 64109,KANSAS CITY,MO,39.066286,-94.567372,JACKSON 64110,KANSAS CITY,MO,39.036088,-94.572206,JACKSON 64111,KANSAS CITY,MO,39.056483,-94.592942,JACKSON 64112,KANSAS CITY,MO,39.038191,-94.592873,JACKSON 64113,KANSAS CITY,MO,39.01234,-94.593828,JACKSON 64114,KANSAS CITY,MO,38.962147,-94.595941,JACKSON 64116,KANSAS CITY,MO,39.163189,-94.569882,CLAY 64117,KANSAS CITY,MO,39.168111,-94.527367,CLAY 64118,KANSAS CITY,MO,39.213842,-94.570448,CLAY 64119,KANSAS CITY,MO,39.19785,-94.519873,CLAY 64120,KANSAS CITY,MO,39.122206,-94.54873,JACKSON 64121,KANSAS CITY,MO,39.0906,-94.538,JACKSON 64123,KANSAS CITY,MO,39.113593,-94.523545,JACKSON 64124,KANSAS CITY,MO,39.106832,-94.539402,JACKSON 64125,KANSAS CITY,MO,39.104157,-94.492328,JACKSON 64126,KANSAS CITY,MO,39.092255,-94.50466,JACKSON 64127,KANSAS CITY,MO,39.088303,-94.536636,JACKSON 64128,KANSAS CITY,MO,39.065932,-94.538634,JACKSON 64129,KANSAS CITY,MO,39.040093,-94.49513,JACKSON 64130,KANSAS CITY,MO,39.035106,-94.546674,JACKSON 64131,KANSAS CITY,MO,38.971303,-94.57741,JACKSON 64132,KANSAS CITY,MO,38.991073,-94.552156,JACKSON 64133,KANSAS CITY,MO,39.014909,-94.459229,JACKSON 64134,KANSAS CITY,MO,38.929633,-94.500908,JACKSON 64136,KANSAS CITY,MO,39.018684,-94.400774,JACKSON 64137,KANSAS CITY,MO,38.92988,-94.540487,JACKSON 64138,KANSAS CITY,MO,38.96871,-94.479361,JACKSON 64139,KANSAS CITY,MO,38.965891,-94.406086,JACKSON 64141,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64144,KANSAS CITY,MO,39.1433,-94.571,CLAY 64145,KANSAS CITY,MO,38.89767,-94.597607,JACKSON 64146,KANSAS CITY,MO,38.897264,-94.57638,JACKSON 64147,KANSAS CITY,MO,38.861352,-94.529717,JACKSON 64148,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64149,KANSAS CITY,MO,38.860646,-94.463554,JACKSON 64151,KANSAS CITY,MO,39.213876,-94.63318,PLATTE 64152,KANSAS CITY,MO,39.220954,-94.691313,PLATTE 64153,KANSAS CITY,MO,39.262746,-94.697008,PLATTE 64154,KANSAS CITY,MO,39.254728,-94.635444,PLATTE 64155,KANSAS CITY,MO,39.275831,-94.570401,CLAY 64156,KANSAS CITY,MO,39.290052,-94.533614,CLAY 64157,KANSAS CITY,MO,39.276673,-94.459456,CLAY 64158,KANSAS CITY,MO,39.228428,-94.472036,CLAY 64161,KANSAS CITY,MO,39.161506,-94.459829,CLAY 64163,KANSAS CITY,MO,39.359756,-94.719315,PLATTE 64164,KANSAS CITY,MO,39.3426,-94.644643,PLATTE 64165,KANSAS CITY,MO,39.340054,-94.572966,CLAY 64166,KANSAS CITY,MO,39.329399,-94.519858,CLAY 64167,KANSAS CITY,MO,39.309643,-94.465291,CLAY 64168,KANSAS CITY,MO,39.1775,-94.612778,PLATTE 64170,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64171,KANSAS CITY,MO,39.0544,-94.5886,JACKSON 64172,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64179,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64180,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64183,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64184,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64185,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64187,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64188,KANSAS CITY,MO,39.2239,-94.5852,CLAY 64190,KANSAS CITY,MO,39.2815,-94.7326,PLATTE 64191,KANSAS CITY,MO,39.0844,-94.5844,JACKSON 64192,KANSAS CITY,MO,38.9223,-94.5089,JACKSON 64193,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64194,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64195,KANSAS CITY,MO,39.3035,-94.7198,PLATTE 64196,KANSAS CITY,MO,39.1006,-94.5831,JACKSON 64197,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64198,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64199,KANSAS CITY,MO,39.1032,-94.5826,JACKSON 64501,SAINT JOSEPH,MO,39.768755,-94.838488,BUCHANAN 64502,SAINT JOSEPH,MO,39.7655,-94.8506,BUCHANAN 64503,SAINT JOSEPH,MO,39.733987,-94.817125,BUCHANAN 64504,SAINT JOSEPH,MO,39.707566,-94.867749,BUCHANAN 64505,SAINT JOSEPH,MO,39.796532,-94.844341,BUCHANAN 64506,SAINT JOSEPH,MO,39.789292,-94.804314,BUCHANAN 64507,SAINT JOSEPH,MO,39.755052,-94.817303,BUCHANAN 64508,SAINT JOSEPH,MO,39.7768,-94.7995,BUCHANAN 64944,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64999,KANSAS CITY,MO,38.9573,-94.574,JACKSON 65101,JEFFERSON CITY,MO,38.546212,-92.152462,COLE 65102,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65103,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65104,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65105,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65106,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65107,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65108,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65109,JEFFERSON CITY,MO,38.577272,-92.244298,COLE 65110,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65111,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65201,COLUMBIA,MO,38.938176,-92.304865,BOONE 65202,COLUMBIA,MO,38.995019,-92.311204,BOONE 65203,COLUMBIA,MO,38.93482,-92.363865,BOONE 65205,COLUMBIA,MO,38.9528,-92.3313,BOONE 65211,COLUMBIA,MO,38.9368,-92.3221,BOONE 65212,COLUMBIA,MO,38.9528,-92.3313,BOONE 65215,COLUMBIA,MO,38.9527,-92.3199,BOONE 65216,COLUMBIA,MO,38.9566,-92.3268,BOONE 65217,COLUMBIA,MO,38.8976,-92.3349,BOONE 65218,COLUMBIA,MO,38.8935,-92.3963,BOONE 65299,COLUMBIA,MO,38.909,-92.2463,BOONE 65801,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65802,SPRINGFIELD,MO,37.211663,-93.29903,GREENE 65803,SPRINGFIELD,MO,37.259327,-93.291232,GREENE 65804,SPRINGFIELD,MO,37.165361,-93.252154,GREENE 65805,SPRINGFIELD,MO,37.2152,-93.298,GREENE 65806,SPRINGFIELD,MO,37.203057,-93.297108,GREENE 65807,SPRINGFIELD,MO,37.166799,-93.308457,GREENE 65808,SPRINGFIELD,MO,37.1885,-93.2619,GREENE 65809,SPRINGFIELD,MO,37.185223,-93.205742,GREENE 65810,SPRINGFIELD,MO,37.113647,-93.289594,GREENE 65814,SPRINGFIELD,MO,37.1668,-93.3247,GREENE 65817,SPRINGFIELD,MO,37.1173,-93.3089,GREENE 65890,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65897,SPRINGFIELD,MO,37.199132,-93.279111,GREENE 65898,SPRINGFIELD,MO,37.2376,-93.2492,GREENE 65899,SPRINGFIELD,MO,37.1494,-93.2502,GREENE 66101,KANSAS CITY,KS,39.115733,-94.627139,WYANDOTTE 66102,KANSAS CITY,KS,39.113247,-94.669337,WYANDOTTE 66103,KANSAS CITY,KS,39.056193,-94.625105,WYANDOTTE 66104,KANSAS CITY,KS,39.137512,-94.679158,WYANDOTTE 66105,KANSAS CITY,KS,39.085025,-94.635646,WYANDOTTE 66106,KANSAS CITY,KS,39.061187,-94.687396,WYANDOTTE 66109,KANSAS CITY,KS,39.143376,-94.785598,WYANDOTTE 66110,KANSAS CITY,KS,39.1164,-94.6916,WYANDOTTE 66111,KANSAS CITY,KS,39.080332,-94.780593,WYANDOTTE 66112,KANSAS CITY,KS,39.115999,-94.764024,WYANDOTTE 66115,KANSAS CITY,KS,39.114534,-94.614647,WYANDOTTE 66117,KANSAS CITY,KS,39.1176,-94.6227,WYANDOTTE 66118,KANSAS CITY,KS,39.096867,-94.608361,WYANDOTTE 66119,KANSAS CITY,KS,39.0616,-94.6092,WYANDOTTE 66160,KANSAS CITY,KS,39.0572,-94.6117,WYANDOTTE 66203,SHAWNEE,KS,39.019802,-94.708303,JOHNSON 66204,OVERLAND PARK,KS,38.992488,-94.674769,JOHNSON 66207,OVERLAND PARK,KS,38.957472,-94.645193,JOHNSON 66210,OVERLAND PARK,KS,38.922007,-94.704788,JOHNSON 66212,OVERLAND PARK,KS,38.958954,-94.68414,JOHNSON 66213,OVERLAND PARK,KS,38.904899,-94.700344,JOHNSON 66214,OVERLAND PARK,KS,38.959929,-94.713265,JOHNSON 66216,SHAWNEE,KS,39.009289,-94.738234,JOHNSON 66217,SHAWNEE,KS,39.004835,-94.779663,JOHNSON 66218,SHAWNEE,KS,39.017431,-94.823913,JOHNSON 66221,OVERLAND PARK,KS,38.85272,-94.706745,JOHNSON 66223,OVERLAND PARK,KS,38.848477,-94.664467,JOHNSON 66224,OVERLAND PARK,KS,38.867526,-94.628903,JOHNSON 66225,OVERLAND PARK,KS,38.8878,-94.6861,JOHNSON 66226,SHAWNEE,KS,38.997764,-94.873017,JOHNSON 66251,OVERLAND PARK,KS,38.9165,-94.6579,JOHNSON 66282,OVERLAND PARK,KS,38.952,-94.6859,JOHNSON 66283,OVERLAND PARK,KS,38.8625,-94.6668,JOHNSON 66286,SHAWNEE,KS,39.024167,-94.718611,JOHNSON 66601,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66603,TOPEKA,KS,39.055344,-95.680212,SHAWNEE 66604,TOPEKA,KS,39.040549,-95.717831,SHAWNEE 66605,TOPEKA,KS,39.015076,-95.643894,SHAWNEE 66606,TOPEKA,KS,39.058345,-95.709458,SHAWNEE 66607,TOPEKA,KS,39.042111,-95.644858,SHAWNEE 66608,TOPEKA,KS,39.085812,-95.686651,SHAWNEE 66609,TOPEKA,KS,38.991899,-95.668069,SHAWNEE 66610,TOPEKA,KS,38.982213,-95.746061,SHAWNEE 66611,TOPEKA,KS,39.014152,-95.69815,SHAWNEE 66612,TOPEKA,KS,39.042714,-95.681806,SHAWNEE 66614,TOPEKA,KS,39.015403,-95.746883,SHAWNEE 66615,TOPEKA,KS,39.04458,-95.790561,SHAWNEE 66616,TOPEKA,KS,39.064479,-95.641302,SHAWNEE 66617,TOPEKA,KS,39.127098,-95.638388,SHAWNEE 66618,TOPEKA,KS,39.132853,-95.70231,SHAWNEE 66619,TOPEKA,KS,38.942859,-95.700728,SHAWNEE 66620,TOPEKA,KS,38.9459,-95.7131,SHAWNEE 66621,TOPEKA,KS,39.0361,-95.7004,SHAWNEE 66622,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66624,TOPEKA,KS,38.9353,-95.6898,SHAWNEE 66625,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66626,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66628,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66629,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66636,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66637,TOPEKA,KS,39.0154,-95.6957,SHAWNEE 66642,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66647,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66652,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66653,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66667,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66675,TOPEKA,KS,39.1439,-95.7457,SHAWNEE 66683,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66692,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66699,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 67201,WICHITA,KS,37.6898,-97.3415,SEDGWICK 67202,WICHITA,KS,37.689945,-97.33551,SEDGWICK 67203,WICHITA,KS,37.704798,-97.363766,SEDGWICK 67204,WICHITA,KS,37.748838,-97.356563,SEDGWICK 67205,WICHITA,KS,37.763929,-97.426924,SEDGWICK 67206,WICHITA,KS,37.699622,-97.239253,SEDGWICK 67207,WICHITA,KS,37.667152,-97.238962,SEDGWICK 67208,WICHITA,KS,37.702428,-97.281062,SEDGWICK 67209,WICHITA,KS,37.677855,-97.42354,SEDGWICK 67210,WICHITA,KS,37.637915,-97.261254,SEDGWICK 67211,WICHITA,KS,37.666181,-97.316451,SEDGWICK 67212,WICHITA,KS,37.700683,-97.438344,SEDGWICK 67213,WICHITA,KS,37.667959,-97.359074,SEDGWICK 67214,WICHITA,KS,37.705051,-97.313284,SEDGWICK 67215,WICHITA,KS,37.633333,-97.424985,SEDGWICK 67216,WICHITA,KS,37.622332,-97.313625,SEDGWICK 67217,WICHITA,KS,37.626574,-97.358139,SEDGWICK 67218,WICHITA,KS,37.669007,-97.280219,SEDGWICK 67219,WICHITA,KS,37.76482,-97.313517,SEDGWICK 67220,WICHITA,KS,37.74548,-97.275915,SEDGWICK 67223,WICHITA,KS,37.748434,-97.467421,SEDGWICK 67226,WICHITA,KS,37.737891,-97.247853,SEDGWICK 67227,WICHITA,KS,37.588466,-97.460561,SEDGWICK 67228,WICHITA,KS,37.776061,-97.201404,SEDGWICK 67230,WICHITA,KS,37.680814,-97.155764,SEDGWICK 67232,WICHITA,KS,37.642797,-97.164278,SEDGWICK 67235,WICHITA,KS,37.668631,-97.461145,SEDGWICK 67260,WICHITA,KS,37.7165,-97.2968,SEDGWICK 67275,WICHITA,KS,37.6728,-97.4437,SEDGWICK 67276,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67277,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67278,WICHITA,KS,37.6922,-97.3372,SEDGWICK 68101,OMAHA,NE,41.261,-95.9376,DOUGLAS 68102,OMAHA,NE,41.258961,-95.940909,DOUGLAS 68103,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68104,OMAHA,NE,41.29186,-95.999888,DOUGLAS 68105,OMAHA,NE,41.243502,-95.962938,DOUGLAS 68106,OMAHA,NE,41.240322,-95.997972,DOUGLAS 68107,OMAHA,NE,41.206783,-95.955877,DOUGLAS 68108,OMAHA,NE,41.238198,-95.933557,DOUGLAS 68109,OMAHA,NE,41.2345,-95.937,DOUGLAS 68110,OMAHA,NE,41.293342,-95.936072,DOUGLAS 68111,OMAHA,NE,41.296212,-95.965045,DOUGLAS 68112,OMAHA,NE,41.329614,-95.959684,DOUGLAS 68114,OMAHA,NE,41.265624,-96.049306,DOUGLAS 68116,OMAHA,NE,41.287854,-96.149462,DOUGLAS 68117,OMAHA,NE,41.206403,-95.995301,DOUGLAS 68118,OMAHA,NE,41.260636,-96.166118,DOUGLAS 68119,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68120,OMAHA,NE,41.2795,-95.9461,DOUGLAS 68122,OMAHA,NE,41.333312,-96.045772,DOUGLAS 68124,OMAHA,NE,41.233814,-96.049515,DOUGLAS 68127,OMAHA,NE,41.201782,-96.055019,DOUGLAS 68130,OMAHA,NE,41.235452,-96.168815,DOUGLAS 68131,OMAHA,NE,41.264658,-95.963891,DOUGLAS 68132,OMAHA,NE,41.265746,-95.995954,DOUGLAS 68134,OMAHA,NE,41.294917,-96.054569,DOUGLAS 68135,OMAHA,NE,41.210419,-96.169827,DOUGLAS 68136,OMAHA,NE,41.168343,-96.209633,SARPY 68137,OMAHA,NE,41.201067,-96.124462,DOUGLAS 68138,OMAHA,NE,41.177724,-96.129718,SARPY 68139,OMAHA,NE,41.2179,-96.1206,DOUGLAS 68142,OMAHA,NE,41.335904,-96.090109,DOUGLAS 68144,OMAHA,NE,41.235599,-96.116772,DOUGLAS 68145,OMAHA,NE,41.2348,-96.1198,DOUGLAS 68152,OMAHA,NE,41.334557,-96.000295,DOUGLAS 68154,OMAHA,NE,41.264167,-96.120611,DOUGLAS 68155,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68157,OMAHA,NE,41.183423,-95.995378,SARPY 68164,OMAHA,NE,41.29552,-96.100793,DOUGLAS 68172,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68175,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68176,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68178,OMAHA,NE,41.2649,-95.9488,DOUGLAS 68179,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68180,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68181,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68182,OMAHA,NE,41.2594,-96.0049,DOUGLAS 68183,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68197,OMAHA,NE,41.2353,-96.1213,DOUGLAS 68198,OMAHA,NE,41.2547,-95.9784,DOUGLAS 68501,LINCOLN,NE,40.8169,-96.7103,LANCASTER 68502,LINCOLN,NE,40.789282,-96.693763,LANCASTER 68503,LINCOLN,NE,40.823339,-96.676623,LANCASTER 68504,LINCOLN,NE,40.839226,-96.653248,LANCASTER 68505,LINCOLN,NE,40.824674,-96.625193,LANCASTER 68506,LINCOLN,NE,40.784796,-96.643052,LANCASTER 68507,LINCOLN,NE,40.847265,-96.628874,LANCASTER 68508,LINCOLN,NE,40.814503,-96.700907,LANCASTER 68509,LINCOLN,NE,40.8,-96.6666,LANCASTER 68510,LINCOLN,NE,40.806345,-96.654458,LANCASTER 68512,LINCOLN,NE,40.756487,-96.694606,LANCASTER 68514,LINCOLN,NE,40.925792,-96.661082,LANCASTER 68516,LINCOLN,NE,40.756807,-96.652304,LANCASTER 68517,LINCOLN,NE,40.931743,-96.604509,LANCASTER 68520,LINCOLN,NE,40.774441,-96.569341,LANCASTER 68521,LINCOLN,NE,40.851044,-96.711006,LANCASTER 68522,LINCOLN,NE,40.793407,-96.747871,LANCASTER 68523,LINCOLN,NE,40.740766,-96.758339,LANCASTER 68524,LINCOLN,NE,40.852913,-96.794345,LANCASTER 68526,LINCOLN,NE,40.731386,-96.587817,LANCASTER 68527,LINCOLN,NE,40.834708,-96.540053,LANCASTER 68528,LINCOLN,NE,40.819541,-96.754496,LANCASTER 68529,LINCOLN,NE,40.8583,-96.6349,LANCASTER 68531,LINCOLN,NE,40.899397,-96.715572,LANCASTER 68532,LINCOLN,NE,40.792159,-96.85509,LANCASTER 68542,LINCOLN,NE,40.8,-96.6666,LANCASTER 68583,LINCOLN,NE,40.8303,-96.6667,LANCASTER 68588,LINCOLN,NE,40.8207,-96.7026,LANCASTER 70001,METAIRIE,LA,29.987138,-90.169513,JEFFERSON 70002,METAIRIE,LA,30.009843,-90.16303,JEFFERSON 70003,METAIRIE,LA,29.99746,-90.21457,JEFFERSON 70004,METAIRIE,LA,29.9759,-90.1608,JEFFERSON 70005,METAIRIE,LA,30.000476,-90.13314,JEFFERSON 70006,METAIRIE,LA,30.012885,-90.191483,JEFFERSON 70009,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70010,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70011,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70033,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70055,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70060,METAIRIE,LA,29.8675,-90.0691,JEFFERSON 70112,NEW ORLEANS,LA,29.960484,-90.075301,ORLEANS 70113,NEW ORLEANS,LA,29.940511,-90.084777,ORLEANS 70114,NEW ORLEANS,LA,29.937934,-90.033126,ORLEANS 70115,NEW ORLEANS,LA,29.928863,-90.1005,ORLEANS 70116,NEW ORLEANS,LA,29.968608,-90.064614,ORLEANS 70117,NEW ORLEANS,LA,29.970298,-90.03124,ORLEANS 70118,NEW ORLEANS,LA,29.950352,-90.123598,ORLEANS 70119,NEW ORLEANS,LA,29.974552,-90.085156,ORLEANS 70121,NEW ORLEANS,LA,29.963071,-90.160953,JEFFERSON 70122,NEW ORLEANS,LA,30.005637,-90.064409,ORLEANS 70123,NEW ORLEANS,LA,29.953473,-90.210748,JEFFERSON 70124,NEW ORLEANS,LA,30.007081,-90.109384,ORLEANS 70125,NEW ORLEANS,LA,29.951225,-90.102785,ORLEANS 70126,NEW ORLEANS,LA,30.015341,-90.018913,ORLEANS 70127,NEW ORLEANS,LA,30.033811,-89.980688,ORLEANS 70128,NEW ORLEANS,LA,30.052691,-89.956421,ORLEANS 70129,NEW ORLEANS,LA,30.047984,-89.906206,ORLEANS 70130,NEW ORLEANS,LA,29.932438,-90.073949,ORLEANS 70131,NEW ORLEANS,LA,29.916811,-89.996033,ORLEANS 70139,NEW ORLEANS,LA,29.95,-90.071,ORLEANS 70140,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70141,NEW ORLEANS,LA,29.9928,-90.2587,JEFFERSON 70142,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70143,NEW ORLEANS,LA,29.8272,-90.0212,ORLEANS 70145,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70146,NEW ORLEANS,LA,29.9614,-90.0332,ORLEANS 70148,NEW ORLEANS,LA,30.0315,-90.0437,ORLEANS 70149,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70150,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70151,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70152,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70153,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70154,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70156,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70157,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70158,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70159,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70160,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70161,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70162,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70163,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70164,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70165,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70166,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70167,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70170,NEW ORLEANS,LA,29.9518,-90.0697,ORLEANS 70172,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70174,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70175,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70176,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70177,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70178,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70179,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70181,NEW ORLEANS,LA,29.9639,-90.0654,JEFFERSON 70182,NEW ORLEANS,LA,30.0089,-90.0647,ORLEANS 70183,NEW ORLEANS,LA,29.9656,-90.0644,JEFFERSON 70184,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70185,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70186,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70187,NEW ORLEANS,LA,30.0235,-89.975,ORLEANS 70189,NEW ORLEANS,LA,30.0749,-89.8161,ORLEANS 70190,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70195,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70500,LAFAYETTE,LA,30.2240897,-92.0198427,LAFAYETTE 70501,LAFAYETTE,LA,30.236141,-92.008261,LAFAYETTE 70502,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70503,LAFAYETTE,LA,30.184256,-92.049745,LAFAYETTE 70504,LAFAYETTE,LA,30.2244,-92.0451,LAFAYETTE 70505,LAFAYETTE,LA,30.205,-92.0157,LAFAYETTE 70506,LAFAYETTE,LA,30.207707,-92.065623,LAFAYETTE 70507,LAFAYETTE,LA,30.281313,-92.015962,LAFAYETTE 70508,LAFAYETTE,LA,30.158222,-92.023579,LAFAYETTE 70509,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70593,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70595,LAFAYETTE,LA,30.2195,-92.0074,LAFAYETTE 70596,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70598,LAFAYETTE,LA,30.1765,-92.008,LAFAYETTE 70601,LAKE CHARLES,LA,30.228453,-93.187966,CALCASIEU 70602,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70605,LAKE CHARLES,LA,30.169349,-93.221798,CALCASIEU 70606,LAKE CHARLES,LA,30.166,-93.232,CALCASIEU 70607,LAKE CHARLES,LA,30.1142,-93.2014,CALCASIEU 70609,LAKE CHARLES,LA,30.1809,-93.2157,CALCASIEU 70611,LAKE CHARLES,LA,30.322031,-93.211082,CALCASIEU 70612,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70615,LAKE CHARLES,LA,30.2404,-93.1523,CALCASIEU 70616,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70629,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70801,BATON ROUGE,LA,30.450731,-91.186954,EAST BATON ROUGE 70802,BATON ROUGE,LA,30.444236,-91.169037,EAST BATON ROUGE 70803,BATON ROUGE,LA,30.4124,-91.1822,EAST BATON ROUGE 70804,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70805,BATON ROUGE,LA,30.48604,-91.148095,EAST BATON ROUGE 70806,BATON ROUGE,LA,30.448486,-91.130046,EAST BATON ROUGE 70807,BATON ROUGE,LA,30.533199,-91.178615,EAST BATON ROUGE 70808,BATON ROUGE,LA,30.406596,-91.146765,EAST BATON ROUGE 70809,BATON ROUGE,LA,30.408891,-91.084213,EAST BATON ROUGE 70810,BATON ROUGE,LA,30.363309,-91.091898,EAST BATON ROUGE 70811,BATON ROUGE,LA,30.53046,-91.126539,EAST BATON ROUGE 70812,BATON ROUGE,LA,30.505159,-91.118111,EAST BATON ROUGE 70813,BATON ROUGE,LA,30.5262,-91.1955,EAST BATON ROUGE 70814,BATON ROUGE,LA,30.484808,-91.068936,EAST BATON ROUGE 70815,BATON ROUGE,LA,30.455809,-91.059558,EAST BATON ROUGE 70816,BATON ROUGE,LA,30.427289,-91.035645,EAST BATON ROUGE 70817,BATON ROUGE,LA,30.390404,-91.00213,EAST BATON ROUGE 70818,BATON ROUGE,LA,30.540832,-91.049964,EAST BATON ROUGE 70819,BATON ROUGE,LA,30.46679,-91.01565,EAST BATON ROUGE 70820,BATON ROUGE,LA,30.379523,-91.167064,EAST BATON ROUGE 70821,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70822,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70823,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70825,BATON ROUGE,LA,30.4484,-91.1832,EAST BATON ROUGE 70826,BATON ROUGE,LA,30.3979,-91.0768,EAST BATON ROUGE 70827,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70831,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70833,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70835,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70836,BATON ROUGE,LA,30.3909,-91.0909,EAST BATON ROUGE 70837,BATON ROUGE,LA,30.5538,-91.0373,EAST BATON ROUGE 70873,BATON ROUGE,LA,30.4476,-91.1772,EAST BATON ROUGE 70874,BATON ROUGE,LA,30.5211,-91.1451,EAST BATON ROUGE 70879,BATON ROUGE,LA,30.3733,-90.9815,EAST BATON ROUGE 70883,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70884,BATON ROUGE,LA,30.3786,-91.0974,EAST BATON ROUGE 70891,BATON ROUGE,LA,30.449,-91.1784,EAST BATON ROUGE 70892,BATON ROUGE,LA,30.4965,-91.1575,EAST BATON ROUGE 70893,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70894,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70895,BATON ROUGE,LA,30.4534,-91.0767,EAST BATON ROUGE 70896,BATON ROUGE,LA,30.444,-91.1434,EAST BATON ROUGE 70898,BATON ROUGE,LA,30.4205,-91.1396,EAST BATON ROUGE 71101,SHREVEPORT,LA,32.503743,-93.748696,CADDO 71102,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71103,SHREVEPORT,LA,32.494459,-93.772701,CADDO 71104,SHREVEPORT,LA,32.482978,-93.734862,CADDO 71105,SHREVEPORT,LA,32.458882,-93.714341,CADDO 71106,SHREVEPORT,LA,32.426251,-93.747922,CADDO 71107,SHREVEPORT,LA,32.564652,-93.828781,CADDO 71108,SHREVEPORT,LA,32.448596,-93.781378,CADDO 71109,SHREVEPORT,LA,32.473994,-93.801297,CADDO 71115,SHREVEPORT,LA,32.410156,-93.697402,CADDO 71118,SHREVEPORT,LA,32.397664,-93.802543,CADDO 71119,SHREVEPORT,LA,32.477121,-93.87261,CADDO 71120,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71129,SHREVEPORT,LA,32.41412,-93.874192,CADDO 71130,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71133,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71134,SHREVEPORT,LA,32.4814,-93.7367,CADDO 71135,SHREVEPORT,LA,32.4431,-93.7098,CADDO 71136,SHREVEPORT,LA,32.4222,-93.7587,CADDO 71137,SHREVEPORT,LA,32.5935,-93.8539,CADDO 71138,SHREVEPORT,LA,32.4081,-93.7979,CADDO 71148,SHREVEPORT,LA,32.456,-93.7777,CADDO 71149,SHREVEPORT,LA,32.525,-93.75,CADDO 71150,SHREVEPORT,LA,34.16812,-94.96993,CADDO 71151,SHREVEPORT,LA,32.525,-93.75,CADDO 71152,SHREVEPORT,LA,32.4405,-93.7886,CADDO 71153,SHREVEPORT,LA,32.525,-93.75,CADDO 71154,SHREVEPORT,LA,32.525,-93.75,CADDO 71156,SHREVEPORT,LA,32.525,-93.75,CADDO 71161,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71162,SHREVEPORT,LA,32.525,-93.75,CADDO 71163,SHREVEPORT,LA,32.525,-93.75,CADDO 71164,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71165,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71166,SHREVEPORT,LA,32.525,-93.75,CADDO 71201,MONROE,LA,32.528551,-92.106104,OUACHITA 71202,MONROE,LA,32.463327,-92.090231,OUACHITA 71203,MONROE,LA,32.553038,-92.042241,OUACHITA 71207,MONROE,LA,32.5148,-92.116,OUACHITA 71208,MONROE,LA,32.4967,-92.0756,OUACHITA 71209,MONROE,LA,32.5281,-92.0728,OUACHITA 71210,MONROE,LA,32.5006,-92.1146,OUACHITA 71211,MONROE,LA,32.5985,-92.0179,OUACHITA 71212,MONROE,LA,32.5091,-92.1191,OUACHITA 71213,MONROE,LA,32.5259,-92.0811,OUACHITA 71217,MONROE,LA,32.4923,-92.0957,OUACHITA 71301,ALEXANDRIA,LA,31.288519,-92.463349,RAPIDES 71302,ALEXANDRIA,LA,31.268272,-92.424169,RAPIDES 71303,ALEXANDRIA,LA,31.304838,-92.508892,RAPIDES 71306,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71307,ALEXANDRIA,LA,31.2856,-92.4507,RAPIDES 71309,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71315,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71901,HOT SPRINGS NATIONAL PARK,AR,34.501475,-93.026024,GARLAND 71902,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71903,HOT SPRINGS NATIONAL PARK,AR,34.5114,-93.0537,GARLAND 71909,HOT SPRINGS NATIONAL PARK,AR,34.65862,-93.006386,GARLAND 71913,HOT SPRINGS NATIONAL PARK,AR,34.473304,-93.109177,GARLAND 71914,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71951,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 72114,NORTH LITTLE ROCK,AR,34.766974,-92.265376,PULASKI 72115,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72116,NORTH LITTLE ROCK,AR,34.807629,-92.237359,PULASKI 72117,NORTH LITTLE ROCK,AR,34.776305,-92.194604,PULASKI 72118,NORTH LITTLE ROCK,AR,34.821598,-92.307875,PULASKI 72119,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72124,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72190,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72198,NORTH LITTLE ROCK,AR,34.772,-92.2717,PULASKI 72199,NORTH LITTLE ROCK,AR,34.901111,-92.310556,PULASKI 72201,LITTLE ROCK,AR,34.748342,-92.281939,PULASKI 72202,LITTLE ROCK,AR,34.736322,-92.274067,PULASKI 72203,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72204,LITTLE ROCK,AR,34.726904,-92.344041,PULASKI 72205,LITTLE ROCK,AR,34.750971,-92.345512,PULASKI 72206,LITTLE ROCK,AR,34.683599,-92.277606,PULASKI 72207,LITTLE ROCK,AR,34.772121,-92.356481,PULASKI 72209,LITTLE ROCK,AR,34.672509,-92.352919,PULASKI 72210,LITTLE ROCK,AR,34.707625,-92.465981,PULASKI 72211,LITTLE ROCK,AR,34.758819,-92.431485,PULASKI 72212,LITTLE ROCK,AR,34.787076,-92.422232,PULASKI 72214,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72215,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72216,LITTLE ROCK,AR,34.6537,-92.2489,PULASKI 72217,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72219,LITTLE ROCK,AR,34.6803,-92.3452,PULASKI 72221,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72222,LITTLE ROCK,AR,34.8025,-92.4398,PULASKI 72223,LITTLE ROCK,AR,34.7928,-92.4794,PULASKI 72225,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72227,LITTLE ROCK,AR,34.775,-92.3765,PULASKI 72231,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72260,LITTLE ROCK,AR,34.7476,-92.2814,PULASKI 72295,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72901,FORT SMITH,AR,35.365272,-94.411035,SEBASTIAN 72902,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72903,FORT SMITH,AR,35.342673,-94.378361,SEBASTIAN 72904,FORT SMITH,AR,35.405122,-94.38723,SEBASTIAN 72905,FORT SMITH,AR,35.297366,-94.340521,SEBASTIAN 72906,FORT SMITH,AR,35.332,-94.4001,SEBASTIAN 72908,FORT SMITH,AR,35.3028,-94.4093,SEBASTIAN 72913,FORT SMITH,AR,35.3339,-94.3753,SEBASTIAN 72914,FORT SMITH,AR,35.3858,-94.3983,SEBASTIAN 72916,FORT SMITH,AR,35.250175,-94.370308,SEBASTIAN 72917,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72918,FORT SMITH,AR,35.3511,-94.3509,SEBASTIAN 72919,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 73003,EDMOND,OK,35.68,-97.53,OKLAHOMA 73012,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73013,EDMOND,OK,35.621534,-97.473268,OKLAHOMA 73019,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73025,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73026,NORMAN,OK,35.2277,-97.2813,CLEVELAND 73034,EDMOND,OK,35.666483,-97.479835,OKLAHOMA 73069,NORMAN,OK,35.220389,-97.457743,CLEVELAND 73070,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73071,NORMAN,OK,35.224254,-97.379159,CLEVELAND 73072,NORMAN,OK,35.210733,-97.472984,CLEVELAND 73083,EDMOND,OK,35.5193,-97.3362,OKLAHOMA 73101,OKLAHOMA CITY,OK,35.473,-97.5177,OKLAHOMA 73102,OKLAHOMA CITY,OK,35.472601,-97.519926,OKLAHOMA 73103,OKLAHOMA CITY,OK,35.490957,-97.519591,OKLAHOMA 73104,OKLAHOMA CITY,OK,35.479388,-97.501714,OKLAHOMA 73105,OKLAHOMA CITY,OK,35.510811,-97.500291,OKLAHOMA 73106,OKLAHOMA CITY,OK,35.485328,-97.537228,OKLAHOMA 73107,OKLAHOMA CITY,OK,35.48736,-97.573974,OKLAHOMA 73108,OKLAHOMA CITY,OK,35.444485,-97.561928,OKLAHOMA 73109,OKLAHOMA CITY,OK,35.425944,-97.526131,OKLAHOMA 73110,OKLAHOMA CITY,OK,35.461978,-97.397661,OKLAHOMA 73111,OKLAHOMA CITY,OK,35.504238,-97.480607,OKLAHOMA 73112,OKLAHOMA CITY,OK,35.518435,-97.574639,OKLAHOMA 73113,OKLAHOMA CITY,OK,35.5657,-97.5175,OKLAHOMA 73114,OKLAHOMA CITY,OK,35.570357,-97.525736,OKLAHOMA 73115,OKLAHOMA CITY,OK,35.440093,-97.441645,OKLAHOMA 73116,OKLAHOMA CITY,OK,35.542484,-97.56394,OKLAHOMA 73117,OKLAHOMA CITY,OK,35.479667,-97.472195,OKLAHOMA 73118,OKLAHOMA CITY,OK,35.513645,-97.531908,OKLAHOMA 73119,OKLAHOMA CITY,OK,35.421033,-97.561584,OKLAHOMA 73120,OKLAHOMA CITY,OK,35.583478,-97.563756,OKLAHOMA 73121,OKLAHOMA CITY,OK,35.506235,-97.445183,OKLAHOMA 73122,OKLAHOMA CITY,OK,35.520239,-97.613305,OKLAHOMA 73123,OKLAHOMA CITY,OK,35.537,-97.6228,OKLAHOMA 73124,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73125,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73126,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73127,OKLAHOMA CITY,OK,35.483371,-97.629927,OKLAHOMA 73128,OKLAHOMA CITY,OK,35.444358,-97.616362,OKLAHOMA 73129,OKLAHOMA CITY,OK,35.43119,-97.491309,OKLAHOMA 73130,OKLAHOMA CITY,OK,35.460863,-97.351489,OKLAHOMA 73131,OKLAHOMA CITY,OK,35.579693,-97.469127,OKLAHOMA 73132,OKLAHOMA CITY,OK,35.552783,-97.636333,OKLAHOMA 73134,OKLAHOMA CITY,OK,35.617397,-97.558342,OKLAHOMA 73135,OKLAHOMA CITY,OK,35.411037,-97.438762,OKLAHOMA 73136,OKLAHOMA CITY,OK,35.4946,-97.4778,OKLAHOMA 73137,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73139,OKLAHOMA CITY,OK,35.379193,-97.536205,OKLAHOMA 73140,OKLAHOMA CITY,OK,35.449444,-97.396389,OKLAHOMA 73141,OKLAHOMA CITY,OK,35.491848,-97.366606,OKLAHOMA 73142,OKLAHOMA CITY,OK,35.598994,-97.625067,OKLAHOMA 73143,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73144,OKLAHOMA CITY,OK,35.4087,-97.5548,OKLAHOMA 73146,OKLAHOMA CITY,OK,35.4945,-97.53,OKLAHOMA 73147,OKLAHOMA CITY,OK,35.4861,-97.5817,OKLAHOMA 73148,OKLAHOMA CITY,OK,35.4546,-97.5543,OKLAHOMA 73149,OKLAHOMA CITY,OK,35.394998,-97.497175,OKLAHOMA 73150,OKLAHOMA CITY,OK,35.41231,-97.33308,OKLAHOMA 73151,OKLAHOMA CITY,OK,35.568508,-97.39057,OKLAHOMA 73152,OKLAHOMA CITY,OK,35.4933,-97.505,OKLAHOMA 73153,OKLAHOMA CITY,OK,35.3337,-97.4922,CLEVELAND 73154,OKLAHOMA CITY,OK,35.5235,-97.5249,OKLAHOMA 73155,OKLAHOMA CITY,OK,35.4203,-97.4376,OKLAHOMA 73156,OKLAHOMA CITY,OK,35.5659,-97.5489,OKLAHOMA 73157,OKLAHOMA CITY,OK,35.5109,-97.5658,OKLAHOMA 73159,OKLAHOMA CITY,OK,35.39224,-97.55674,OKLAHOMA 73160,OKLAHOMA CITY,OK,35.342465,-97.487352,CLEVELAND 73162,OKLAHOMA CITY,OK,35.580647,-97.641934,OKLAHOMA 73163,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73164,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73165,OKLAHOMA CITY,OK,35.337086,-97.349792,CLEVELAND 73167,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73169,OKLAHOMA CITY,OK,35.388233,-97.658683,OKLAHOMA 73170,OKLAHOMA CITY,OK,35.341554,-97.536,CLEVELAND 73172,OKLAHOMA CITY,OK,35.5797,-97.6449,OKLAHOMA 73173,OKLAHOMA CITY,OK,35.342455,-97.63171,OKLAHOMA 73178,OKLAHOMA CITY,OK,35.5368,-97.565,OKLAHOMA 73179,OKLAHOMA CITY,OK,35.424157,-97.654729,OKLAHOMA 73184,OKLAHOMA CITY,OK,35.6166,-97.568,OKLAHOMA 73185,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73189,OKLAHOMA CITY,OK,35.3929,-97.579,CLEVELAND 73190,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73193,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73194,OKLAHOMA CITY,OK,35.5182,-97.5025,OKLAHOMA 73195,OKLAHOMA CITY,OK,35.4678,-97.5164,OKLAHOMA 73196,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73197,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73198,OKLAHOMA CITY,OK,35.5277,-97.569,OKLAHOMA 73199,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73301,AUSTIN,TX,30.2303,-97.7144,TRAVIS 73344,AUSTIN,TX,30.1798,-97.729,TRAVIS 74101,TULSA,OK,36.1504,-95.9953,TULSA 74102,TULSA,OK,36.1504,-95.9953,TULSA 74103,TULSA,OK,36.153858,-95.995426,TULSA 74104,TULSA,OK,36.146446,-95.952566,TULSA 74105,TULSA,OK,36.094808,-95.965544,TULSA 74106,TULSA,OK,36.188296,-95.985956,TULSA 74107,TULSA,OK,36.104199,-96.024448,TULSA 74108,TULSA,OK,36.149893,-95.792311,TULSA 74110,TULSA,OK,36.180296,-95.952492,TULSA 74112,TULSA,OK,36.147039,-95.907036,TULSA 74114,TULSA,OK,36.126152,-95.940796,TULSA 74115,TULSA,OK,36.175408,-95.911183,TULSA 74116,TULSA,OK,36.174994,-95.847695,TULSA 74117,TULSA,OK,36.27949,-95.910768,TULSA 74119,TULSA,OK,36.140688,-95.990194,TULSA 74120,TULSA,OK,36.144228,-95.973373,TULSA 74121,TULSA,OK,36.1504,-95.9953,TULSA 74126,TULSA,OK,36.238288,-95.993113,TULSA 74127,TULSA,OK,36.157636,-96.03107,TULSA 74128,TULSA,OK,36.145927,-95.851377,TULSA 74129,TULSA,OK,36.125928,-95.865354,TULSA 74130,TULSA,OK,36.239481,-95.959649,TULSA 74131,TULSA,OK,36.05566,-96.060229,CREEK 74132,TULSA,OK,36.063971,-96.025104,TULSA 74133,TULSA,OK,36.046717,-95.884062,TULSA 74134,TULSA,OK,36.116223,-95.822472,TULSA 74135,TULSA,OK,36.097603,-95.922805,TULSA 74136,TULSA,OK,36.060548,-95.945178,TULSA 74137,TULSA,OK,36.028426,-95.930597,TULSA 74141,TULSA,OK,36.1303,-95.8752,TULSA 74145,TULSA,OK,36.093433,-95.885576,TULSA 74146,TULSA,OK,36.109293,-95.85061,TULSA 74147,TULSA,OK,36.0969,-95.8861,TULSA 74148,TULSA,OK,36.191,-95.9856,TULSA 74149,TULSA,OK,36.1607,-96.036,TULSA 74150,TULSA,OK,36.1592,-95.9578,TULSA 74152,TULSA,OK,36.1538,-95.9925,TULSA 74153,TULSA,OK,36.0888,-95.9058,TULSA 74155,TULSA,OK,36.097,-95.8775,TULSA 74156,TULSA,OK,36.2481,-95.9752,TULSA 74157,TULSA,OK,36.1011,-96.036,TULSA 74158,TULSA,OK,36.1661,-95.9176,TULSA 74159,TULSA,OK,36.1414,-95.9595,TULSA 74169,TULSA,OK,36.1218,-95.8327,TULSA 74170,TULSA,OK,36.0626,-95.9604,TULSA 74171,TULSA,OK,36.0513,-95.9577,TULSA 74172,TULSA,OK,36.1549,-95.9916,TULSA 74182,TULSA,OK,36.1504,-95.9953,TULSA 74183,TULSA,OK,36.0616,-95.9412,TULSA 74184,TULSA,OK,36.0616,-95.9412,TULSA 74186,TULSA,OK,36.1504,-95.9953,TULSA 74187,TULSA,OK,36.1504,-95.9953,TULSA 74189,TULSA,OK,36.1504,-95.9953,TULSA 74192,TULSA,OK,36.1504,-95.9953,TULSA 74193,TULSA,OK,36.1504,-95.9953,TULSA 74194,TULSA,OK,36.1504,-95.9953,TULSA 75014,IRVING,TX,32.842,-96.9719,DALLAS 75015,IRVING,TX,32.8297,-96.9815,DALLAS 75016,IRVING,TX,32.8138,-96.9486,DALLAS 75017,IRVING,TX,32.8118,-96.9473,DALLAS 75023,PLANO,TX,33.054972,-96.736454,COLLIN 75024,PLANO,TX,33.075211,-96.784307,COLLIN 75025,PLANO,TX,33.078377,-96.729142,COLLIN 75026,PLANO,TX,33.0378,-96.7334,COLLIN 75037,IRVING,TX,32.7833,-96.8,DALLAS 75038,IRVING,TX,32.865309,-96.990503,DALLAS 75039,IRVING,TX,32.869669,-96.938876,DALLAS 75040,GARLAND,TX,32.922744,-96.624804,DALLAS 75041,GARLAND,TX,32.87937,-96.641115,DALLAS 75042,GARLAND,TX,32.918486,-96.677545,DALLAS 75043,GARLAND,TX,32.856502,-96.599882,DALLAS 75044,GARLAND,TX,32.952228,-96.665383,DALLAS 75045,GARLAND,TX,32.945,-96.6822,DALLAS 75046,GARLAND,TX,32.9158,-96.6419,DALLAS 75047,GARLAND,TX,32.8766,-96.6477,DALLAS 75049,GARLAND,TX,32.8565,-96.6031,DALLAS 75060,IRVING,TX,32.80231,-96.959665,DALLAS 75061,IRVING,TX,32.826658,-96.963256,DALLAS 75062,IRVING,TX,32.847854,-96.974027,DALLAS 75063,IRVING,TX,32.924686,-96.959817,DALLAS 75074,PLANO,TX,33.027722,-96.67771,COLLIN 75075,PLANO,TX,33.024985,-96.739743,COLLIN 75086,PLANO,TX,33.0234,-96.6986,COLLIN 75093,PLANO,TX,33.029866,-96.788903,COLLIN 75094,PLANO,TX,33.004873,-96.609101,COLLIN 75149,MESQUITE,TX,32.767821,-96.608219,DALLAS 75150,MESQUITE,TX,32.815416,-96.630681,DALLAS 75180,MESQUITE,TX,32.720216,-96.615278,DALLAS 75181,MESQUITE,TX,32.727166,-96.566889,DALLAS 75185,MESQUITE,TX,32.7666,-96.5988,DALLAS 75187,MESQUITE,TX,32.7666,-96.5988,DALLAS 75201,DALLAS,TX,32.790439,-96.80439,DALLAS 75202,DALLAS,TX,32.778056,-96.805352,DALLAS 75203,DALLAS,TX,32.745985,-96.806976,DALLAS 75204,DALLAS,TX,32.803814,-96.785144,DALLAS 75205,DALLAS,TX,32.836878,-96.793828,DALLAS 75206,DALLAS,TX,32.831029,-96.769219,DALLAS 75207,DALLAS,TX,32.793897,-96.831871,DALLAS 75208,DALLAS,TX,32.749208,-96.838898,DALLAS 75209,DALLAS,TX,32.84564,-96.825984,DALLAS 75210,DALLAS,TX,32.769919,-96.742974,DALLAS 75211,DALLAS,TX,32.736928,-96.881797,DALLAS 75212,DALLAS,TX,32.782884,-96.871396,DALLAS 75214,DALLAS,TX,32.824789,-96.749774,DALLAS 75215,DALLAS,TX,32.758206,-96.76226,DALLAS 75216,DALLAS,TX,32.708611,-96.795488,DALLAS 75217,DALLAS,TX,32.724429,-96.675481,DALLAS 75218,DALLAS,TX,32.846335,-96.697212,DALLAS 75219,DALLAS,TX,32.813245,-96.814166,DALLAS 75220,DALLAS,TX,32.868131,-96.862202,DALLAS 75221,DALLAS,TX,32.7836,-96.7986,DALLAS 75222,DALLAS,TX,32.7833,-96.8,DALLAS 75223,DALLAS,TX,32.794173,-96.747475,DALLAS 75224,DALLAS,TX,32.711415,-96.838711,DALLAS 75225,DALLAS,TX,32.862808,-96.791753,DALLAS 75226,DALLAS,TX,32.78871,-96.767552,DALLAS 75227,DALLAS,TX,32.767226,-96.683586,DALLAS 75228,DALLAS,TX,32.824997,-96.678378,DALLAS 75229,DALLAS,TX,32.8958,-96.8588,DALLAS 75230,DALLAS,TX,32.89994,-96.789679,DALLAS 75231,DALLAS,TX,32.875621,-96.74953,DALLAS 75232,DALLAS,TX,32.664708,-96.838392,DALLAS 75233,DALLAS,TX,32.704638,-96.872547,DALLAS 75234,DALLAS,TX,32.929803,-96.876848,DALLAS 75235,DALLAS,TX,32.825213,-96.838843,DALLAS 75236,DALLAS,TX,32.690002,-96.917737,DALLAS 75237,DALLAS,TX,32.658972,-96.876453,DALLAS 75238,DALLAS,TX,32.876976,-96.707982,DALLAS 75240,DALLAS,TX,32.937431,-96.787214,DALLAS 75241,DALLAS,TX,32.672216,-96.777421,DALLAS 75242,DALLAS,TX,32.7833,-96.8,DALLAS 75243,DALLAS,TX,32.910347,-96.728472,DALLAS 75244,DALLAS,TX,32.925817,-96.842533,DALLAS 75245,DALLAS,TX,32.8207,-96.8398,DALLAS 75246,DALLAS,TX,32.79484,-96.769696,DALLAS 75247,DALLAS,TX,32.801323,-96.887123,DALLAS 75248,DALLAS,TX,32.968199,-96.794242,DALLAS 75249,DALLAS,TX,32.636024,-96.949266,DALLAS 75250,DALLAS,TX,32.7801,-96.8014,DALLAS 75251,DALLAS,TX,32.912203,-96.771831,DALLAS 75252,DALLAS,TX,32.996848,-96.792113,COLLIN 75253,DALLAS,TX,32.683311,-96.59643,DALLAS 75254,DALLAS,TX,32.9464,-96.8022,DALLAS 75258,DALLAS,TX,32.8092,-96.8894,DALLAS 75260,DALLAS,TX,32.7833,-96.8,DALLAS 75261,DALLAS,TX,32.8939,-97.0404,DALLAS 75262,DALLAS,TX,32.7833,-96.8,DALLAS 75263,DALLAS,TX,32.7833,-96.8,DALLAS 75264,DALLAS,TX,32.7833,-96.8,DALLAS 75265,DALLAS,TX,32.7833,-96.8,DALLAS 75266,DALLAS,TX,32.7833,-96.8,DALLAS 75267,DALLAS,TX,32.7833,-96.8,DALLAS 75270,DALLAS,TX,32.7807,-96.8015,DALLAS 75275,DALLAS,TX,32.8351,-96.7848,DALLAS 75277,DALLAS,TX,32.7833,-96.8,DALLAS 75283,DALLAS,TX,32.8366,-96.7963,DALLAS 75284,DALLAS,TX,32.8366,-96.7963,DALLAS 75285,DALLAS,TX,32.7833,-96.8,DALLAS 75286,DALLAS,TX,32.7833,-96.8,DALLAS 75287,DALLAS,TX,33.000458,-96.83143,COLLIN 75301,DALLAS,TX,32.7833,-96.8,DALLAS 75303,DALLAS,TX,32.7833,-96.8,DALLAS 75310,DALLAS,TX,32.7833,-96.8,DALLAS 75312,DALLAS,TX,32.7833,-96.8,DALLAS 75313,DALLAS,TX,32.7833,-96.8,DALLAS 75315,DALLAS,TX,32.7739,-96.7689,DALLAS 75320,DALLAS,TX,32.7833,-96.8,DALLAS 75323,DALLAS,TX,32.9698,-96.8001,DALLAS 75326,DALLAS,TX,32.8633,-96.9804,DALLAS 75334,DALLAS,TX,32.8375,-96.8653,DALLAS 75336,DALLAS,TX,32.6713,-96.6193,DALLAS 75339,DALLAS,TX,32.7144,-96.7835,DALLAS 75340,DALLAS,TX,32.8375,-96.8653,DALLAS 75342,DALLAS,TX,32.809,-96.8894,DALLAS 75343,DALLAS,TX,32.8375,-96.8653,DALLAS 75344,DALLAS,TX,32.8375,-96.8653,DALLAS 75353,DALLAS,TX,32.7833,-96.8,DALLAS 75354,DALLAS,TX,32.8601,-96.8869,DALLAS 75355,DALLAS,TX,32.8791,-96.708,DALLAS 75356,DALLAS,TX,32.8092,-96.8894,DALLAS 75357,DALLAS,TX,32.7833,-96.8,DALLAS 75358,DALLAS,TX,32.9397,-96.8722,DALLAS 75359,DALLAS,TX,32.8136,-96.7559,DALLAS 75360,DALLAS,TX,32.8282,-96.7456,DALLAS 75363,DALLAS,TX,32.9382,-96.7932,DALLAS 75364,DALLAS,TX,32.7833,-96.8,DALLAS 75367,DALLAS,TX,32.9022,-96.7921,DALLAS 75368,DALLAS,TX,32.9207,-96.9762,DALLAS 75370,DALLAS,TX,32.9899,-96.831,DALLAS 75371,DALLAS,TX,32.7739,-96.7689,DALLAS 75372,DALLAS,TX,32.8417,-96.7723,DALLAS 75373,DALLAS,TX,32.7833,-96.8,DALLAS 75374,DALLAS,TX,32.9133,-96.7439,DALLAS 75376,DALLAS,TX,32.7107,-96.8388,DALLAS 75378,DALLAS,TX,32.894,-96.8697,DALLAS 75379,DALLAS,TX,32.9382,-96.7932,DALLAS 75380,DALLAS,TX,32.9335,-96.8172,DALLAS 75381,DALLAS,TX,32.9439,-96.8899,DALLAS 75382,DALLAS,TX,32.8775,-96.7492,DALLAS 75386,DALLAS,TX,32.786667,-96.802222,DALLAS 75387,DALLAS,TX,32.7833,-96.8,DALLAS 75388,DALLAS,TX,32.7833,-96.8,DALLAS 75389,DALLAS,TX,32.7833,-96.8,DALLAS 75390,DALLAS,TX,32.8126,-96.8384,DALLAS 75391,DALLAS,TX,32.8366,-96.7963,DALLAS 75392,DALLAS,TX,32.7833,-96.8,DALLAS 75393,DALLAS,TX,32.7833,-96.8,DALLAS 75394,DALLAS,TX,32.7833,-96.8,DALLAS 75395,DALLAS,TX,32.7107,-96.8388,DALLAS 75396,DALLAS,TX,32.7833,-96.8,DALLAS 75397,DALLAS,TX,32.7833,-96.8,DALLAS 75398,DALLAS,TX,32.7833,-96.8,DALLAS 75501,TEXARKANA,TX,33.407371,-94.118245,BOWIE 75503,TEXARKANA,TX,33.466906,-94.077374,BOWIE 75504,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75505,TEXARKANA,TX,33.425,-94.0475,BOWIE 75507,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75599,TEXARKANA,TX,33.4425,-94.0776,BOWIE 75601,LONGVIEW,TX,32.526854,-94.72328,GREGG 75602,LONGVIEW,TX,32.472373,-94.710078,GREGG 75603,LONGVIEW,TX,32.426368,-94.711691,GREGG 75604,LONGVIEW,TX,32.525139,-94.798957,GREGG 75605,LONGVIEW,TX,32.554711,-94.776748,GREGG 75606,LONGVIEW,TX,32.4955,-94.7377,GREGG 75607,LONGVIEW,TX,32.4628,-94.7305,GREGG 75608,LONGVIEW,TX,32.5005,-94.7402,GREGG 75615,LONGVIEW,TX,32.4628,-94.7305,GREGG 75701,TYLER,TX,32.325366,-95.292179,SMITH 75702,TYLER,TX,32.361969,-95.311652,SMITH 75703,TYLER,TX,32.276827,-95.303147,SMITH 75704,TYLER,TX,32.373781,-95.406977,SMITH 75705,TYLER,TX,32.376599,-95.125225,SMITH 75706,TYLER,TX,32.444148,-95.330993,SMITH 75707,TYLER,TX,32.303782,-95.192692,SMITH 75708,TYLER,TX,32.389193,-95.244354,SMITH 75709,TYLER,TX,32.307817,-95.395563,SMITH 75710,TYLER,TX,32.3511,-95.3008,SMITH 75711,TYLER,TX,32.3511,-95.3008,SMITH 75712,TYLER,TX,32.3511,-95.3008,SMITH 75713,TYLER,TX,32.3511,-95.3008,SMITH 75798,TYLER,TX,32.3325,-95.2848,SMITH 75799,TYLER,TX,32.3132,-95.2457,SMITH 76001,ARLINGTON,TX,32.6336,-97.1469,TARRANT 76002,ARLINGTON,TX,32.6252,-97.0977,TARRANT 76003,ARLINGTON,TX,32.6578,-97.1723,TARRANT 76004,ARLINGTON,TX,32.7344,-97.1043,TARRANT 76005,ARLINGTON,TX,32.7531,-97.0591,TARRANT 76006,ARLINGTON,TX,32.778494,-97.083425,TARRANT 76007,ARLINGTON,TX,32.7204,-97.0822,TARRANT 76010,ARLINGTON,TX,32.720368,-97.082576,TARRANT 76011,ARLINGTON,TX,32.758236,-97.100302,TARRANT 76012,ARLINGTON,TX,32.753962,-97.134808,TARRANT 76013,ARLINGTON,TX,32.719905,-97.14416,TARRANT 76014,ARLINGTON,TX,32.695425,-97.087556,TARRANT 76015,ARLINGTON,TX,32.693125,-97.134685,TARRANT 76016,ARLINGTON,TX,32.688898,-97.190466,TARRANT 76017,ARLINGTON,TX,32.65545,-97.159899,TARRANT 76018,ARLINGTON,TX,32.654752,-97.091987,TARRANT 76019,ARLINGTON,TX,32.7286,-97.1159,TARRANT 76094,ARLINGTON,TX,32.7234,-97.1487,TARRANT 76096,ARLINGTON,TX,32.621,-97.0718,TARRANT 76101,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76102,FORT WORTH,TX,32.758897,-97.328023,TARRANT 76103,FORT WORTH,TX,32.747005,-97.260394,TARRANT 76104,FORT WORTH,TX,32.725551,-97.318409,TARRANT 76105,FORT WORTH,TX,32.723325,-97.26899,TARRANT 76106,FORT WORTH,TX,32.796849,-97.356008,TARRANT 76107,FORT WORTH,TX,32.739175,-97.385248,TARRANT 76108,FORT WORTH,TX,32.759271,-97.474063,TARRANT 76109,FORT WORTH,TX,32.700246,-97.378876,TARRANT 76110,FORT WORTH,TX,32.706505,-97.337505,TARRANT 76111,FORT WORTH,TX,32.782382,-97.300327,TARRANT 76112,FORT WORTH,TX,32.749297,-97.218122,TARRANT 76113,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76114,FORT WORTH,TX,32.775379,-97.401526,TARRANT 76115,FORT WORTH,TX,32.679618,-97.333634,TARRANT 76116,FORT WORTH,TX,32.723032,-97.448279,TARRANT 76118,FORT WORTH,TX,32.808944,-97.222781,TARRANT 76119,FORT WORTH,TX,32.691379,-97.267492,TARRANT 76120,FORT WORTH,TX,32.763912,-97.178112,TARRANT 76121,FORT WORTH,TX,32.7314,-97.4503,TARRANT 76122,FORT WORTH,TX,32.6824,-97.3469,TARRANT 76123,FORT WORTH,TX,32.625361,-97.365838,TARRANT 76124,FORT WORTH,TX,32.7471,-97.2159,TARRANT 76126,FORT WORTH,TX,32.670023,-97.464141,TARRANT 76129,FORT WORTH,TX,32.7108,-97.3602,TARRANT 76130,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76131,FORT WORTH,TX,32.863156,-97.337656,TARRANT 76132,FORT WORTH,TX,32.671092,-97.405626,TARRANT 76133,FORT WORTH,TX,32.652561,-97.375849,TARRANT 76134,FORT WORTH,TX,32.646886,-97.332467,TARRANT 76135,FORT WORTH,TX,32.824844,-97.45191,TARRANT 76136,FORT WORTH,TX,32.8967,-97.457,TARRANT 76137,FORT WORTH,TX,32.866421,-97.289114,TARRANT 76140,FORT WORTH,TX,32.631332,-97.270406,TARRANT 76147,FORT WORTH,TX,32.751,-97.364,TARRANT 76148,FORT WORTH,TX,32.8681,-97.249029,TARRANT 76150,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76155,FORT WORTH,TX,32.824742,-97.050285,TARRANT 76161,FORT WORTH,TX,32.8245,-97.3208,TARRANT 76162,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76163,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76164,FORT WORTH,TX,32.7822,-97.3564,TARRANT 76166,FORT WORTH,TX,32.725409,-97.3208496,TARRANT 76177,FORT WORTH,TX,32.901017,-97.332671,TARRANT 76179,FORT WORTH,TX,32.872961,-97.403149,TARRANT 76181,FORT WORTH,TX,32.8548,-97.2117,TARRANT 76185,FORT WORTH,TX,32.8647,-97.2151,TARRANT 76191,FORT WORTH,TX,32.8068,-97.3515,TARRANT 76192,FORT WORTH,TX,32.9295,-97.4351,TARRANT 76193,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76195,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76196,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76197,FORT WORTH,TX,32.7789,-97.2995,TARRANT 76198,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76199,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76201,DENTON,TX,33.22893,-97.131436,DENTON 76202,DENTON,TX,33.2147,-97.1327,DENTON 76203,DENTON,TX,33.2147,-97.1327,DENTON 76204,DENTON,TX,33.2147,-97.1327,DENTON 76205,DENTON,TX,33.180106,-97.101833,DENTON 76206,DENTON,TX,33.2566,-97.1536,DENTON 76207,DENTON,TX,33.2404,-97.1649,DENTON 76208,DENTON,TX,33.2031,-97.0642,DENTON 76209,DENTON,TX,33.2343,-97.1119,DENTON 76210,DENTON,TX,33.1511,-97.0905,DENTON 76301,WICHITA FALLS,TX,33.905284,-98.497645,WICHITA 76302,WICHITA FALLS,TX,33.864278,-98.493987,WICHITA 76305,WICHITA FALLS,TX,33.937345,-98.540679,WICHITA 76306,WICHITA FALLS,TX,33.974595,-98.524835,WICHITA 76307,WICHITA FALLS,TX,33.913611,-98.493056,WICHITA 76308,WICHITA FALLS,TX,33.863258,-98.533965,WICHITA 76309,WICHITA FALLS,TX,33.893084,-98.534288,WICHITA 76310,WICHITA FALLS,TX,33.858122,-98.575548,WICHITA 76501,TEMPLE,TX,31.089518,-97.334264,BELL 76502,TEMPLE,TX,31.071004,-97.389781,BELL 76503,TEMPLE,TX,31.1006,-97.3391,BELL 76504,TEMPLE,TX,31.091742,-97.364764,BELL 76505,TEMPLE,TX,31.0183,-97.3279,BELL 76508,TEMPLE,TX,31.1006,-97.3391,BELL 76540,KILLEEN,TX,31.117,-97.7261,BELL 76541,KILLEEN,TX,31.116426,-97.727808,BELL 76542,KILLEEN,TX,31.075056,-97.746736,BELL 76543,KILLEEN,TX,31.100505,-97.676864,BELL 76544,KILLEEN,TX,31.137953,-97.776404,BELL 76545,KILLEEN,TX,31.1169,-97.7275,BELL 76546,KILLEEN,TX,31.1169,-97.7275,BELL 76547,KILLEEN,TX,31.1169,-97.7275,BELL 76549,KILLEEN,TX,31.0839,-97.7818,BELL 76701,WACO,TX,31.552452,-97.139608,MCLENNAN 76702,WACO,TX,31.4721,-97.2468,MCLENNAN 76703,WACO,TX,31.5517,-97.1384,MCLENNAN 76704,WACO,TX,31.575701,-97.126742,MCLENNAN 76705,WACO,TX,31.610787,-97.094575,MCLENNAN 76706,WACO,TX,31.517086,-97.119752,MCLENNAN 76707,WACO,TX,31.552709,-97.158824,MCLENNAN 76708,WACO,TX,31.576544,-97.178635,MCLENNAN 76710,WACO,TX,31.534981,-97.189891,MCLENNAN 76711,WACO,TX,31.519863,-97.150254,MCLENNAN 76714,WACO,TX,31.5283,-97.1917,MCLENNAN 76715,WACO,TX,31.6032,-97.0796,MCLENNAN 76716,WACO,TX,31.4535,-97.0983,MCLENNAN 76795,WACO,TX,31.4721,-97.2468,MCLENNAN 76797,WACO,TX,31.5359,-97.1918,MCLENNAN 76798,WACO,TX,31.5446,-97.1192,MCLENNAN 76799,WACO,TX,31.5359,-97.1918,MCLENNAN 76901,SAN ANGELO,TX,31.478165,-100.481752,TOM GREEN 76902,SAN ANGELO,TX,31.5571,-100.5506,TOM GREEN 76903,SAN ANGELO,TX,31.470735,-100.438586,TOM GREEN 76904,SAN ANGELO,TX,31.419411,-100.480036,TOM GREEN 76905,SAN ANGELO,TX,31.464738,-100.390005,TOM GREEN 76906,SAN ANGELO,TX,31.4636,-100.4366,TOM GREEN 76909,SAN ANGELO,TX,31.4432,-100.4661,TOM GREEN 77001,HOUSTON,TX,29.7652,-95.3657,HARRIS 77002,HOUSTON,TX,29.759366,-95.359361,HARRIS 77003,HOUSTON,TX,29.748903,-95.339108,HARRIS 77004,HOUSTON,TX,29.724687,-95.362546,HARRIS 77005,HOUSTON,TX,29.717856,-95.426261,HARRIS 77006,HOUSTON,TX,29.740899,-95.392255,HARRIS 77007,HOUSTON,TX,29.773603,-95.403421,HARRIS 77008,HOUSTON,TX,29.799096,-95.411797,HARRIS 77009,HOUSTON,TX,29.793558,-95.367481,HARRIS 77010,HOUSTON,TX,29.75125,-95.356549,HARRIS 77011,HOUSTON,TX,29.741992,-95.307262,HARRIS 77012,HOUSTON,TX,29.71491,-95.281925,HARRIS 77013,HOUSTON,TX,29.784169,-95.230134,HARRIS 77014,HOUSTON,TX,29.979637,-95.462497,HARRIS 77015,HOUSTON,TX,29.785287,-95.185189,HARRIS 77016,HOUSTON,TX,29.857855,-95.303199,HARRIS 77017,HOUSTON,TX,29.686301,-95.255485,HARRIS 77018,HOUSTON,TX,29.827166,-95.426631,HARRIS 77019,HOUSTON,TX,29.751651,-95.40539,HARRIS 77020,HOUSTON,TX,29.775759,-95.312101,HARRIS 77021,HOUSTON,TX,29.69538,-95.356151,HARRIS 77022,HOUSTON,TX,29.829862,-95.376862,HARRIS 77023,HOUSTON,TX,29.724179,-95.317777,HARRIS 77024,HOUSTON,TX,29.76958,-95.520063,HARRIS 77025,HOUSTON,TX,29.688897,-95.434107,HARRIS 77026,HOUSTON,TX,29.797168,-95.328775,HARRIS 77027,HOUSTON,TX,29.739571,-95.446032,HARRIS 77028,HOUSTON,TX,29.829657,-95.287886,HARRIS 77029,HOUSTON,TX,29.760326,-95.254861,HARRIS 77030,HOUSTON,TX,29.70372,-95.40619,HARRIS 77031,HOUSTON,TX,29.658144,-95.541281,HARRIS 77032,HOUSTON,TX,29.93676,-95.329883,HARRIS 77033,HOUSTON,TX,29.668566,-95.338157,HARRIS 77034,HOUSTON,TX,29.636395,-95.221615,HARRIS 77035,HOUSTON,TX,29.651833,-95.485368,HARRIS 77036,HOUSTON,TX,29.698447,-95.540464,HARRIS 77037,HOUSTON,TX,29.889161,-95.393515,HARRIS 77038,HOUSTON,TX,29.91956,-95.438601,HARRIS 77039,HOUSTON,TX,29.906731,-95.33338,HARRIS 77040,HOUSTON,TX,29.879613,-95.529969,HARRIS 77041,HOUSTON,TX,29.860187,-95.581663,HARRIS 77042,HOUSTON,TX,29.740446,-95.558895,HARRIS 77043,HOUSTON,TX,29.805181,-95.560734,HARRIS 77044,HOUSTON,TX,29.863485,-95.19757,HARRIS 77045,HOUSTON,TX,29.629717,-95.438166,HARRIS 77046,HOUSTON,TX,29.73279,-95.431845,HARRIS 77047,HOUSTON,TX,29.625443,-95.374993,HARRIS 77048,HOUSTON,TX,29.632097,-95.341606,HARRIS 77049,HOUSTON,TX,29.823471,-95.184815,HARRIS 77050,HOUSTON,TX,29.901456,-95.284837,HARRIS 77051,HOUSTON,TX,29.65792,-95.368763,HARRIS 77052,HOUSTON,TX,29.7577,-95.361,HARRIS 77053,HOUSTON,TX,29.596156,-95.458709,FORT BEND 77054,HOUSTON,TX,29.685209,-95.401677,HARRIS 77055,HOUSTON,TX,29.797064,-95.495787,HARRIS 77056,HOUSTON,TX,29.744584,-95.468282,HARRIS 77057,HOUSTON,TX,29.74217,-95.490253,HARRIS 77058,HOUSTON,TX,29.574787,-95.057413,HARRIS 77059,HOUSTON,TX,29.597493,-95.113354,HARRIS 77060,HOUSTON,TX,29.933462,-95.398061,HARRIS 77061,HOUSTON,TX,29.665221,-95.278987,HARRIS 77062,HOUSTON,TX,29.572084,-95.130292,HARRIS 77063,HOUSTON,TX,29.734843,-95.522039,HARRIS 77064,HOUSTON,TX,29.918981,-95.556894,HARRIS 77065,HOUSTON,TX,29.931933,-95.61063,HARRIS 77066,HOUSTON,TX,29.961027,-95.494717,HARRIS 77067,HOUSTON,TX,29.954717,-95.452158,HARRIS 77068,HOUSTON,TX,30.006867,-95.489661,HARRIS 77069,HOUSTON,TX,29.986292,-95.520827,HARRIS 77070,HOUSTON,TX,29.978099,-95.58027,HARRIS 77071,HOUSTON,TX,29.651838,-95.517554,HARRIS 77072,HOUSTON,TX,29.699026,-95.586155,HARRIS 77073,HOUSTON,TX,30.019767,-95.408671,HARRIS 77074,HOUSTON,TX,29.689601,-95.510588,HARRIS 77075,HOUSTON,TX,29.622276,-95.259983,HARRIS 77076,HOUSTON,TX,29.85801,-95.383442,HARRIS 77077,HOUSTON,TX,29.747656,-95.602991,HARRIS 77078,HOUSTON,TX,29.849724,-95.258208,HARRIS 77079,HOUSTON,TX,29.773759,-95.597993,HARRIS 77080,HOUSTON,TX,29.815854,-95.522986,HARRIS 77081,HOUSTON,TX,29.711926,-95.484531,HARRIS 77082,HOUSTON,TX,29.722283,-95.628533,HARRIS 77083,HOUSTON,TX,29.694709,-95.651098,HARRIS 77084,HOUSTON,TX,29.844022,-95.662329,HARRIS 77085,HOUSTON,TX,29.621787,-95.481945,HARRIS 77086,HOUSTON,TX,29.922667,-95.493868,HARRIS 77087,HOUSTON,TX,29.687579,-95.301062,HARRIS 77088,HOUSTON,TX,29.881694,-95.453877,HARRIS 77089,HOUSTON,TX,29.593978,-95.221786,HARRIS 77090,HOUSTON,TX,30.016673,-95.447002,HARRIS 77091,HOUSTON,TX,29.853448,-95.443521,HARRIS 77092,HOUSTON,TX,29.832391,-95.472031,HARRIS 77093,HOUSTON,TX,29.861661,-95.340286,HARRIS 77094,HOUSTON,TX,29.770536,-95.710742,HARRIS 77095,HOUSTON,TX,29.894115,-95.648082,HARRIS 77096,HOUSTON,TX,29.672205,-95.486066,HARRIS 77097,HOUSTON,TX,29.7652,-95.3657,HARRIS 77098,HOUSTON,TX,29.734987,-95.411778,HARRIS 77099,HOUSTON,TX,29.670869,-95.586613,HARRIS 77201,HOUSTON,TX,29.7652,-95.3657,HARRIS 77202,HOUSTON,TX,29.763,-95.363,HARRIS 77203,HOUSTON,TX,29.763,-95.363,HARRIS 77204,HOUSTON,TX,29.763,-95.363,HARRIS 77205,HOUSTON,TX,29.982,-95.3427,HARRIS 77206,HOUSTON,TX,29.8267,-95.4259,HARRIS 77207,HOUSTON,TX,29.6858,-95.3031,HARRIS 77208,HOUSTON,TX,29.763,-95.363,HARRIS 77209,HOUSTON,TX,29.6198,-95.1882,HARRIS 77210,HOUSTON,TX,29.7652,-95.3657,HARRIS 77212,HOUSTON,TX,29.763,-95.363,HARRIS 77213,HOUSTON,TX,29.7857,-95.2183,HARRIS 77215,HOUSTON,TX,29.7351,-95.5202,HARRIS 77216,HOUSTON,TX,29.763,-95.363,HARRIS 77217,HOUSTON,TX,29.6761,-95.2478,HARRIS 77218,HOUSTON,TX,29.7848,-95.6749,HARRIS 77219,HOUSTON,TX,29.7526,-95.4042,HARRIS 77220,HOUSTON,TX,29.7728,-95.312,HARRIS 77221,HOUSTON,TX,29.7037,-95.355,HARRIS 77222,HOUSTON,TX,29.8299,-95.3763,HARRIS 77223,HOUSTON,TX,29.7273,-95.3206,HARRIS 77224,HOUSTON,TX,29.763,-95.363,HARRIS 77225,HOUSTON,TX,29.6925,-95.4174,HARRIS 77226,HOUSTON,TX,29.7939,-95.3415,HARRIS 77227,HOUSTON,TX,29.7392,-95.4365,HARRIS 77228,HOUSTON,TX,29.8247,-95.2863,HARRIS 77229,HOUSTON,TX,29.7857,-95.2183,HARRIS 77230,HOUSTON,TX,29.6958,-95.3873,HARRIS 77231,HOUSTON,TX,29.6536,-95.4825,HARRIS 77233,HOUSTON,TX,29.763056,-95.363056,HARRIS 77234,HOUSTON,TX,29.6256,-95.2205,HARRIS 77235,HOUSTON,TX,29.6536,-95.4825,HARRIS 77236,HOUSTON,TX,29.7066,-95.4967,HARRIS 77237,HOUSTON,TX,29.7337,-95.499,HARRIS 77238,HOUSTON,TX,29.9207,-95.4425,HARRIS 77240,HOUSTON,TX,29.8573,-95.5374,HARRIS 77241,HOUSTON,TX,29.8573,-95.5374,HARRIS 77242,HOUSTON,TX,29.7316,-95.5596,HARRIS 77243,HOUSTON,TX,29.8157,-95.5204,HARRIS 77244,HOUSTON,TX,29.7459,-95.6096,HARRIS 77245,HOUSTON,TX,29.6135,-95.4213,HARRIS 77246,HOUSTON,TX,29.7369,-95.2607,HARRIS 77247,HOUSTON,TX,29.7369,-95.2607,HARRIS 77248,HOUSTON,TX,29.763,-95.363,HARRIS 77249,HOUSTON,TX,29.8033,-95.3727,HARRIS 77250,HOUSTON,TX,29.8308,-95.4748,HARRIS 77251,HOUSTON,TX,29.7005,-95.5363,HARRIS 77252,HOUSTON,TX,29.7652,-95.3657,HARRIS 77253,HOUSTON,TX,29.7652,-95.3657,HARRIS 77254,HOUSTON,TX,29.6797,-95.4055,HARRIS 77255,HOUSTON,TX,29.8014,-95.4928,HARRIS 77256,HOUSTON,TX,29.7392,-95.4365,HARRIS 77257,HOUSTON,TX,29.7337,-95.499,HARRIS 77258,HOUSTON,TX,29.5481,-95.0887,HARRIS 77259,HOUSTON,TX,29.5768,-95.1407,HARRIS 77260,HOUSTON,TX,29.763,-95.363,HARRIS 77261,HOUSTON,TX,29.674,-95.2464,HARRIS 77262,HOUSTON,TX,29.7233,-95.2784,HARRIS 77263,HOUSTON,TX,29.7298,-95.5174,HARRIS 77265,HOUSTON,TX,29.7247,-95.4413,HARRIS 77266,HOUSTON,TX,29.7469,-95.3935,HARRIS 77267,HOUSTON,TX,29.953,-95.4444,HARRIS 77268,HOUSTON,TX,30.0062,-95.4876,HARRIS 77269,HOUSTON,TX,29.9774,-95.5723,HARRIS 77270,HOUSTON,TX,29.763,-95.363,HARRIS 77271,HOUSTON,TX,29.7562,-95.3653,HARRIS 77272,HOUSTON,TX,29.6883,-95.5847,HARRIS 77273,HOUSTON,TX,30.0174,-95.4453,HARRIS 77274,HOUSTON,TX,29.7066,-95.4967,HARRIS 77275,HOUSTON,TX,29.7562,-95.3653,HARRIS 77276,HOUSTON,TX,29.7369,-95.2607,HARRIS 77277,HOUSTON,TX,29.7247,-95.4413,HARRIS 77278,HOUSTON,TX,29.7369,-95.2607,HARRIS 77279,HOUSTON,TX,29.763,-95.363,HARRIS 77280,HOUSTON,TX,29.8157,-95.5204,HARRIS 77282,HOUSTON,TX,29.7459,-95.6096,HARRIS 77284,HOUSTON,TX,29.763,-95.363,HARRIS 77285,HOUSTON,TX,29.7369,-95.2607,HARRIS 77286,HOUSTON,TX,29.7369,-95.2607,HARRIS 77287,HOUSTON,TX,29.6761,-95.2478,HARRIS 77288,HOUSTON,TX,29.7317,-95.3767,HARRIS 77289,HOUSTON,TX,29.5768,-95.1407,HARRIS 77290,HOUSTON,TX,30.0174,-95.4453,HARRIS 77291,HOUSTON,TX,29.9207,-95.4425,HARRIS 77292,HOUSTON,TX,29.8268,-95.426,HARRIS 77293,HOUSTON,TX,29.8692,-95.3265,HARRIS 77294,HOUSTON,TX,29.7369,-95.2607,HARRIS 77296,HOUSTON,TX,29.7369,-95.2607,HARRIS 77297,HOUSTON,TX,29.763,-95.363,HARRIS 77298,HOUSTON,TX,29.763,-95.363,HARRIS 77299,HOUSTON,TX,29.763,-95.363,HARRIS 77301,CONROE,TX,30.312535,-95.452667,MONTGOMERY 77302,CONROE,TX,30.250357,-95.416087,MONTGOMERY 77303,CONROE,TX,30.344456,-95.369725,MONTGOMERY 77304,CONROE,TX,30.327351,-95.495244,MONTGOMERY 77305,CONROE,TX,30.311667,-95.455833,MONTGOMERY 77306,CONROE,TX,30.333056,-95.357778,MONTGOMERY 77320,HUNTSVILLE,TX,30.7947,-95.5337,WALKER 77340,HUNTSVILLE,TX,30.73435,-95.534186,WALKER 77341,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77342,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77343,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77344,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77348,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77349,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77373,SPRING,TX,30.053241,-95.377329,HARRIS 77379,SPRING,TX,30.023377,-95.528481,HARRIS 77380,SPRING,TX,30.13739,-95.468944,MONTGOMERY 77381,SPRING,TX,30.168887,-95.500743,MONTGOMERY 77382,SPRING,TX,30.2042,-95.5308,MONTGOMERY 77383,SPRING,TX,30.0136,-95.5177,HARRIS 77384,CONROE,TX,30.225725,-95.492392,MONTGOMERY 77385,CONROE,TX,30.187695,-95.428789,MONTGOMERY 77386,SPRING,TX,30.128805,-95.423943,MONTGOMERY 77387,SPRING,TX,30.1356,-95.4151,MONTGOMERY 77388,SPRING,TX,30.050546,-95.469456,HARRIS 77389,SPRING,TX,30.104398,-95.506624,HARRIS 77391,SPRING,TX,30.0234,-95.5685,HARRIS 77393,SPRING,TX,30.1474,-95.5086,MONTGOMERY 77449,KATY,TX,29.819922,-95.729267,HARRIS 77450,KATY,TX,29.767632,-95.744506,HARRIS 77491,KATY,TX,29.8398,-95.7771,HARRIS 77492,KATY,TX,29.8398,-95.7771,HARRIS 77493,KATY,TX,29.804876,-95.815988,HARRIS 77494,KATY,TX,29.750893,-95.811675,FORT BEND 77501,PASADENA,TX,29.692,-95.2005,HARRIS 77502,PASADENA,TX,29.678945,-95.198193,HARRIS 77503,PASADENA,TX,29.687696,-95.15721,HARRIS 77504,PASADENA,TX,29.650133,-95.188478,HARRIS 77505,PASADENA,TX,29.651753,-95.146388,HARRIS 77506,PASADENA,TX,29.70087,-95.19895,HARRIS 77507,PASADENA,TX,29.6055,-95.079365,HARRIS 77508,PASADENA,TX,29.6653,-95.1482,HARRIS 77550,GALVESTON,TX,29.298272,-94.79297,GALVESTON 77551,GALVESTON,TX,29.276584,-94.830334,GALVESTON 77552,GALVESTON,TX,29.2821,-94.8147,GALVESTON 77553,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77554,GALVESTON,TX,29.229638,-94.913716,GALVESTON 77555,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77701,BEAUMONT,TX,30.068805,-94.103896,JEFFERSON 77702,BEAUMONT,TX,30.087057,-94.125412,JEFFERSON 77703,BEAUMONT,TX,30.113201,-94.119698,JEFFERSON 77704,BEAUMONT,TX,30.0839,-94.1014,JEFFERSON 77705,BEAUMONT,TX,30.021128,-94.115673,JEFFERSON 77706,BEAUMONT,TX,30.094834,-94.164816,JEFFERSON 77707,BEAUMONT,TX,30.068567,-94.175541,JEFFERSON 77708,BEAUMONT,TX,30.139957,-94.160357,JEFFERSON 77709,BEAUMONT,TX,30.175,-94.201667,JEFFERSON 77710,BEAUMONT,TX,30.0471,-94.0758,JEFFERSON 77713,BEAUMONT,TX,30.084996,-94.260719,JEFFERSON 77720,BEAUMONT,TX,30.0382,-94.158,JEFFERSON 77725,BEAUMONT,TX,30.0976,-94.1665,JEFFERSON 77726,BEAUMONT,TX,30.0932,-94.1463,JEFFERSON 77801,BRYAN,TX,30.632698,-96.36616,BRAZOS 77802,BRYAN,TX,30.658171,-96.335143,BRAZOS 77803,BRYAN,TX,30.691293,-96.371398,BRAZOS 77805,BRYAN,TX,30.7546,-96.3317,BRAZOS 77806,BRYAN,TX,30.7546,-96.3317,BRAZOS 77807,BRYAN,TX,30.6626,-96.4589,BRAZOS 77808,BRYAN,TX,30.774,-96.3085,BRAZOS 77840,COLLEGE STATION,TX,30.604476,-96.31227,BRAZOS 77841,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77842,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77843,COLLEGE STATION,TX,30.614738,-96.340001,BRAZOS 77844,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77845,COLLEGE STATION,TX,30.511811,-96.317113,BRAZOS 78040,LAREDO,TX,27.515538,-99.498579,WEBB 78041,LAREDO,TX,27.556933,-99.490653,WEBB 78042,LAREDO,TX,27.5063,-99.508,WEBB 78043,LAREDO,TX,27.481537,-99.465488,WEBB 78044,LAREDO,TX,27.9133,-99.438,WEBB 78045,LAREDO,TX,27.6136,-99.5182,WEBB 78046,LAREDO,TX,27.43,-99.4664,WEBB 78049,LAREDO,TX,27.9133,-99.438,WEBB 78201,SAN ANTONIO,TX,29.468525,-98.526352,BEXAR 78202,SAN ANTONIO,TX,29.427462,-98.460112,BEXAR 78203,SAN ANTONIO,TX,29.414799,-98.460127,BEXAR 78204,SAN ANTONIO,TX,29.400217,-98.5063,BEXAR 78205,SAN ANTONIO,TX,29.423711,-98.492509,BEXAR 78206,SAN ANTONIO,TX,29.4153,-98.4823,BEXAR 78207,SAN ANTONIO,TX,29.422855,-98.525967,BEXAR 78208,SAN ANTONIO,TX,29.440039,-98.458983,BEXAR 78209,SAN ANTONIO,TX,29.488623,-98.455774,BEXAR 78210,SAN ANTONIO,TX,29.397718,-98.465796,BEXAR 78211,SAN ANTONIO,TX,29.358366,-98.545219,BEXAR 78212,SAN ANTONIO,TX,29.461181,-98.495815,BEXAR 78213,SAN ANTONIO,TX,29.513406,-98.522679,BEXAR 78214,SAN ANTONIO,TX,29.364115,-98.492436,BEXAR 78215,SAN ANTONIO,TX,29.441338,-98.479338,BEXAR 78216,SAN ANTONIO,TX,29.533387,-98.497511,BEXAR 78217,SAN ANTONIO,TX,29.539525,-98.419444,BEXAR 78218,SAN ANTONIO,TX,29.496852,-98.403184,BEXAR 78219,SAN ANTONIO,TX,29.448794,-98.397315,BEXAR 78220,SAN ANTONIO,TX,29.410641,-98.412791,BEXAR 78221,SAN ANTONIO,TX,29.330913,-98.505417,BEXAR 78222,SAN ANTONIO,TX,29.383113,-98.396005,BEXAR 78223,SAN ANTONIO,TX,29.357869,-98.435628,BEXAR 78224,SAN ANTONIO,TX,29.337432,-98.539335,BEXAR 78225,SAN ANTONIO,TX,29.387497,-98.524494,BEXAR 78226,SAN ANTONIO,TX,29.393001,-98.551095,BEXAR 78227,SAN ANTONIO,TX,29.402687,-98.643311,BEXAR 78228,SAN ANTONIO,TX,29.458937,-98.569871,BEXAR 78229,SAN ANTONIO,TX,29.504228,-98.569726,BEXAR 78230,SAN ANTONIO,TX,29.540738,-98.552117,BEXAR 78231,SAN ANTONIO,TX,29.571434,-98.536817,BEXAR 78232,SAN ANTONIO,TX,29.582833,-98.4673,BEXAR 78233,SAN ANTONIO,TX,29.554741,-98.369128,BEXAR 78234,SAN ANTONIO,TX,29.461961,-98.435404,BEXAR 78235,SAN ANTONIO,TX,29.341733,-98.439444,BEXAR 78236,SAN ANTONIO,TX,29.394267,-98.613367,BEXAR 78237,SAN ANTONIO,TX,29.420758,-98.564546,BEXAR 78238,SAN ANTONIO,TX,29.476833,-98.615451,BEXAR 78239,SAN ANTONIO,TX,29.515686,-98.361604,BEXAR 78240,SAN ANTONIO,TX,29.518896,-98.600566,BEXAR 78241,SAN ANTONIO,TX,29.392432,-98.578063,BEXAR 78242,SAN ANTONIO,TX,29.350905,-98.610927,BEXAR 78243,SAN ANTONIO,TX,29.3798,-98.5959,BEXAR 78244,SAN ANTONIO,TX,29.479264,-98.347585,BEXAR 78245,SAN ANTONIO,TX,29.418927,-98.689494,BEXAR 78246,SAN ANTONIO,TX,29.5362,-98.4881,BEXAR 78247,SAN ANTONIO,TX,29.577604,-98.409783,BEXAR 78248,SAN ANTONIO,TX,29.58936,-98.520105,BEXAR 78249,SAN ANTONIO,TX,29.561245,-98.611666,BEXAR 78250,SAN ANTONIO,TX,29.505394,-98.668765,BEXAR 78251,SAN ANTONIO,TX,29.459743,-98.655472,BEXAR 78252,SAN ANTONIO,TX,29.346015,-98.646395,BEXAR 78253,SAN ANTONIO,TX,29.459923,-98.747931,BEXAR 78254,SAN ANTONIO,TX,29.54091,-98.724841,BEXAR 78255,SAN ANTONIO,TX,29.636875,-98.655572,BEXAR 78256,SAN ANTONIO,TX,29.616946,-98.625215,BEXAR 78257,SAN ANTONIO,TX,29.64953,-98.613701,BEXAR 78258,SAN ANTONIO,TX,29.65624,-98.496699,BEXAR 78259,SAN ANTONIO,TX,29.628331,-98.444495,BEXAR 78260,SAN ANTONIO,TX,29.702578,-98.475908,BEXAR 78261,SAN ANTONIO,TX,29.705463,-98.419092,BEXAR 78262,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78263,SAN ANTONIO,TX,29.36143,-98.317386,BEXAR 78264,SAN ANTONIO,TX,29.173345,-98.472272,BEXAR 78265,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78266,SAN ANTONIO,TX,29.644226,-98.312774,COMAL 78268,SAN ANTONIO,TX,29.497,-98.6248,BEXAR 78269,SAN ANTONIO,TX,29.563,-98.5915,BEXAR 78270,SAN ANTONIO,TX,29.5827,-98.4538,BEXAR 78275,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78278,SAN ANTONIO,TX,29.5612,-98.5607,BEXAR 78279,SAN ANTONIO,TX,29.5334,-98.4929,BEXAR 78280,SAN ANTONIO,TX,29.5629,-98.3579,BEXAR 78283,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78284,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78285,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78286,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78287,SAN ANTONIO,TX,29.4892,-98.4566,BEXAR 78288,SAN ANTONIO,TX,29.5238,-98.6061,BEXAR 78289,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78291,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78292,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78293,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78294,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78295,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78296,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78297,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78298,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78299,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78401,CORPUS CHRISTI,TX,27.794086,-97.402994,NUECES 78402,CORPUS CHRISTI,TX,27.82621,-97.385659,NUECES 78403,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78405,CORPUS CHRISTI,TX,27.776234,-97.427132,NUECES 78406,CORPUS CHRISTI,TX,27.768412,-97.51445,NUECES 78407,CORPUS CHRISTI,TX,27.804195,-97.435597,NUECES 78408,CORPUS CHRISTI,TX,27.794477,-97.43815,NUECES 78409,CORPUS CHRISTI,TX,27.814555,-97.527034,NUECES 78410,CORPUS CHRISTI,TX,27.84585,-97.596002,NUECES 78411,CORPUS CHRISTI,TX,27.731139,-97.387732,NUECES 78412,CORPUS CHRISTI,TX,27.70608,-97.353694,NUECES 78413,CORPUS CHRISTI,TX,27.691041,-97.39832,NUECES 78414,CORPUS CHRISTI,TX,27.677016,-97.365016,NUECES 78415,CORPUS CHRISTI,TX,27.726204,-97.40778,NUECES 78416,CORPUS CHRISTI,TX,27.753593,-97.43468,NUECES 78417,CORPUS CHRISTI,TX,27.728964,-97.449429,NUECES 78418,CORPUS CHRISTI,TX,27.668531,-97.266558,NUECES 78419,CORPUS CHRISTI,TX,27.692502,-97.27636,NUECES 78426,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78427,CORPUS CHRISTI,TX,27.7961,-97.4002,NUECES 78460,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78461,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78463,CORPUS CHRISTI,TX,27.7739,-97.3983,NUECES 78465,CORPUS CHRISTI,TX,27.7765,-97.4198,NUECES 78466,CORPUS CHRISTI,TX,27.7438,-97.3804,NUECES 78467,CORPUS CHRISTI,TX,27.6574,-97.4676,NUECES 78468,CORPUS CHRISTI,TX,27.705,-97.3589,NUECES 78469,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78470,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78471,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78472,CORPUS CHRISTI,TX,27.6953,-97.4145,NUECES 78473,CORPUS CHRISTI,TX,27.79515,-97.396624,NUECES 78474,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78475,CORPUS CHRISTI,TX,27.7964,-97.3976,NUECES 78476,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78477,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78478,CORPUS CHRISTI,TX,27.7952,-97.3974,NUECES 78480,CORPUS CHRISTI,TX,27.6437,-97.3006,NUECES 78664,ROUND ROCK,TX,30.51452,-97.668028,WILLIAMSON 78665,ROUND ROCK,TX,30.5082551,-97.678896,WILLIAMSON 78680,ROUND ROCK,TX,30.517,-97.6987,WILLIAMSON 78681,ROUND ROCK,TX,30.508431,-97.706171,WILLIAMSON 78682,ROUND ROCK,TX,30.515278,-97.669167,WILLIAMSON 78683,ROUND ROCK,TX,30.4961,-97.646,WILLIAMSON 78701,AUSTIN,TX,30.271289,-97.742559,TRAVIS 78702,AUSTIN,TX,30.263817,-97.716589,TRAVIS 78703,AUSTIN,TX,30.290671,-97.764809,TRAVIS 78704,AUSTIN,TX,30.242831,-97.765788,TRAVIS 78705,AUSTIN,TX,30.289619,-97.739627,TRAVIS 78708,AUSTIN,TX,30.3911,-97.705,TRAVIS 78709,AUSTIN,TX,30.2342,-97.8497,TRAVIS 78710,AUSTIN,TX,30.3545,-97.655,TRAVIS 78711,AUSTIN,TX,30.2782,-97.7376,TRAVIS 78712,AUSTIN,TX,30.2858,-97.7349,TRAVIS 78713,AUSTIN,TX,30.2847,-97.7414,TRAVIS 78714,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78715,AUSTIN,TX,30.2065,-97.7966,TRAVIS 78716,AUSTIN,TX,30.2735,-97.7992,TRAVIS 78717,AUSTIN,TX,30.505972,-97.747187,WILLIAMSON 78718,AUSTIN,TX,30.3612,-97.7166,TRAVIS 78719,AUSTIN,TX,30.180243,-97.666701,TRAVIS 78720,AUSTIN,TX,30.4241,-97.7569,TRAVIS 78721,AUSTIN,TX,30.272144,-97.686798,TRAVIS 78722,AUSTIN,TX,30.289305,-97.71495,TRAVIS 78723,AUSTIN,TX,30.308515,-97.684941,TRAVIS 78724,AUSTIN,TX,30.295982,-97.639587,TRAVIS 78725,AUSTIN,TX,30.256186,-97.624301,TRAVIS 78726,AUSTIN,TX,30.43,-97.832649,TRAVIS 78727,AUSTIN,TX,30.425422,-97.719488,TRAVIS 78728,AUSTIN,TX,30.441679,-97.681123,TRAVIS 78729,AUSTIN,TX,30.45206,-97.768787,WILLIAMSON 78730,AUSTIN,TX,30.360745,-97.824062,TRAVIS 78731,AUSTIN,TX,30.347129,-97.760887,TRAVIS 78732,AUSTIN,TX,30.375233,-97.900685,TRAVIS 78733,AUSTIN,TX,30.331355,-97.866633,TRAVIS 78734,AUSTIN,TX,30.377404,-97.957558,TRAVIS 78735,AUSTIN,TX,30.248978,-97.841423,TRAVIS 78736,AUSTIN,TX,30.244433,-97.915968,TRAVIS 78737,AUSTIN,TX,30.210692,-97.942749,HAYS 78738,AUSTIN,TX,30.333708,-97.982367,TRAVIS 78739,AUSTIN,TX,30.172026,-97.878433,TRAVIS 78741,AUSTIN,TX,30.231513,-97.722317,TRAVIS 78742,AUSTIN,TX,30.231296,-97.670349,TRAVIS 78744,AUSTIN,TX,30.18764,-97.74723,TRAVIS 78745,AUSTIN,TX,30.206298,-97.795599,TRAVIS 78746,AUSTIN,TX,30.285009,-97.808129,TRAVIS 78747,AUSTIN,TX,30.130235,-97.762127,TRAVIS 78748,AUSTIN,TX,30.174311,-97.822474,TRAVIS 78749,AUSTIN,TX,30.216641,-97.850755,TRAVIS 78750,AUSTIN,TX,30.422401,-97.796676,TRAVIS 78751,AUSTIN,TX,30.309288,-97.724163,TRAVIS 78752,AUSTIN,TX,30.331562,-97.700394,TRAVIS 78753,AUSTIN,TX,30.36485,-97.682658,TRAVIS 78754,AUSTIN,TX,30.342331,-97.667267,TRAVIS 78755,AUSTIN,TX,30.3574,-97.7607,TRAVIS 78756,AUSTIN,TX,30.322312,-97.739032,TRAVIS 78757,AUSTIN,TX,30.343732,-97.731617,TRAVIS 78758,AUSTIN,TX,30.376431,-97.707758,TRAVIS 78759,AUSTIN,TX,30.403614,-97.752602,TRAVIS 78760,AUSTIN,TX,30.2139,-97.7339,TRAVIS 78761,AUSTIN,TX,30.3332,-97.6984,TRAVIS 78762,AUSTIN,TX,30.2615,-97.7218,TRAVIS 78763,AUSTIN,TX,30.2969,-97.7668,TRAVIS 78764,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78765,AUSTIN,TX,30.3065,-97.7296,TRAVIS 78766,AUSTIN,TX,30.3514,-97.7318,TRAVIS 78767,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78768,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78769,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78772,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78773,AUSTIN,TX,30.3306,-97.7036,TRAVIS 78774,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78778,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78779,AUSTIN,TX,30.3458,-97.7674,TRAVIS 78780,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78781,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78783,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78785,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78786,AUSTIN,TX,30.3545,-97.655,TRAVIS 78788,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78789,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78798,AUSTIN,TX,30.2822,-97.7639,TRAVIS 78799,AUSTIN,TX,30.2667,-97.7428,TRAVIS 79101,AMARILLO,TX,35.203238,-101.842052,POTTER 79102,AMARILLO,TX,35.199854,-101.84963,POTTER 79103,AMARILLO,TX,35.175134,-101.797587,POTTER 79104,AMARILLO,TX,35.193918,-101.797503,POTTER 79105,AMARILLO,TX,35.2219,-101.8308,POTTER 79106,AMARILLO,TX,35.197741,-101.894918,POTTER 79107,AMARILLO,TX,35.230866,-101.805962,POTTER 79108,AMARILLO,TX,35.277866,-101.830025,POTTER 79109,AMARILLO,TX,35.166332,-101.886764,RANDALL 79110,AMARILLO,TX,35.154468,-101.864063,RANDALL 79111,AMARILLO,TX,35.228619,-101.670342,POTTER 79114,AMARILLO,TX,35.1637,-101.882,RANDALL 79116,AMARILLO,TX,35.2138,-101.8834,POTTER 79117,AMARILLO,TX,35.2224,-101.8118,POTTER 79118,AMARILLO,TX,35.07629,-101.834936,RANDALL 79119,AMARILLO,TX,35.064214,-101.97432,RANDALL 79120,AMARILLO,TX,35.1886,-101.8165,POTTER 79121,AMARILLO,TX,35.169689,-101.926594,RANDALL 79124,AMARILLO,TX,35.270269,-101.942952,POTTER 79159,AMARILLO,TX,35.2219,-101.8308,POTTER 79166,AMARILLO,TX,35.1886,-101.8165,POTTER 79168,AMARILLO,TX,35.1886,-101.8165,POTTER 79172,AMARILLO,TX,35.1886,-101.8165,POTTER 79174,AMARILLO,TX,35.1886,-101.8165,POTTER 79178,AMARILLO,TX,35.1886,-101.8469,POTTER 79185,AMARILLO,TX,35.1886,-101.8165,POTTER 79187,AMARILLO,TX,35.2662,-101.7196,POTTER 79189,AMARILLO,TX,35.1886,-101.8165,POTTER 79401,LUBBOCK,TX,33.586527,-101.860634,LUBBOCK 79402,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79403,LUBBOCK,TX,33.619573,-101.80982,LUBBOCK 79404,LUBBOCK,TX,33.525979,-101.833263,LUBBOCK 79405,LUBBOCK,TX,33.570972,-101.850655,LUBBOCK 79406,LUBBOCK,TX,33.581934,-101.877828,LUBBOCK 79407,LUBBOCK,TX,33.568369,-101.942333,LUBBOCK 79408,LUBBOCK,TX,33.5916,-101.848,LUBBOCK 79409,LUBBOCK,TX,33.5837,-101.8809,LUBBOCK 79410,LUBBOCK,TX,33.56931,-101.890377,LUBBOCK 79411,LUBBOCK,TX,33.570393,-101.862593,LUBBOCK 79412,LUBBOCK,TX,33.546313,-101.857737,LUBBOCK 79413,LUBBOCK,TX,33.546597,-101.887142,LUBBOCK 79414,LUBBOCK,TX,33.549728,-101.918666,LUBBOCK 79415,LUBBOCK,TX,33.602117,-101.876015,LUBBOCK 79416,LUBBOCK,TX,33.592397,-101.936705,LUBBOCK 79423,LUBBOCK,TX,33.514604,-101.87946,LUBBOCK 79424,LUBBOCK,TX,33.515866,-101.93439,LUBBOCK 79430,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79452,LUBBOCK,TX,33.5483,-101.8481,LUBBOCK 79453,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79457,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79464,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79490,LUBBOCK,TX,33.5777,-101.8547,LUBBOCK 79491,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79493,LUBBOCK,TX,33.5482,-101.8831,LUBBOCK 79499,LUBBOCK,TX,33.5921,-102.018,LUBBOCK 79601,ABILENE,TX,32.468155,-99.718208,TAYLOR 79602,ABILENE,TX,32.41783,-99.721448,TAYLOR 79603,ABILENE,TX,32.467852,-99.761916,TAYLOR 79604,ABILENE,TX,32.3783,-99.6907,TAYLOR 79605,ABILENE,TX,32.431987,-99.772374,TAYLOR 79606,ABILENE,TX,32.392038,-99.774578,TAYLOR 79608,ABILENE,TX,32.4189,-99.7492,TAYLOR 79697,ABILENE,TX,32.4308,-99.749,TAYLOR 79698,ABILENE,TX,32.4486,-99.7327,TAYLOR 79699,ABILENE,TX,32.4699,-99.7082,TAYLOR 79701,MIDLAND,TX,31.989636,-102.06261,MIDLAND 79702,MIDLAND,TX,31.8691,-101.9227,MIDLAND 79703,MIDLAND,TX,31.972106,-102.136854,MIDLAND 79704,MIDLAND,TX,31.9972,-102.0775,MIDLAND 79705,MIDLAND,TX,32.029473,-102.091483,MIDLAND 79706,MIDLAND,TX,31.9089,-102.027,MIDLAND 79707,MIDLAND,TX,32.019911,-102.147599,MIDLAND 79708,MIDLAND,TX,32.0196,-102.1253,MIDLAND 79710,MIDLAND,TX,32.0593,-102.021,MIDLAND 79711,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79712,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79760,ODESSA,TX,31.8465,-102.3663,ECTOR 79761,ODESSA,TX,31.857945,-102.352252,ECTOR 79762,ODESSA,TX,31.889029,-102.354806,ECTOR 79763,ODESSA,TX,31.834085,-102.416179,ECTOR 79764,ODESSA,TX,31.876683,-102.437465,ECTOR 79765,ODESSA,TX,31.937548,-102.394403,ECTOR 79766,ODESSA,TX,31.782683,-102.344863,ECTOR 79768,ODESSA,TX,31.9037,-102.3324,ECTOR 79769,ODESSA,TX,31.8465,-102.3663,ECTOR 79901,EL PASO,TX,31.758411,-106.478311,EL PASO 79902,EL PASO,TX,31.776317,-106.493165,EL PASO 79903,EL PASO,TX,31.786213,-106.440569,EL PASO 79904,EL PASO,TX,31.853334,-106.438135,EL PASO 79905,EL PASO,TX,31.767447,-106.430445,EL PASO 79906,EL PASO,TX,31.807631,-106.421611,EL PASO 79907,EL PASO,TX,31.708908,-106.329281,EL PASO 79908,EL PASO,TX,31.82753,-106.386711,EL PASO 79910,EL PASO,TX,31.7691,-106.4264,EL PASO 79911,EL PASO,TX,31.7586,-106.4863,EL PASO 79912,EL PASO,TX,31.838309,-106.536433,EL PASO 79913,EL PASO,TX,31.8405,-106.5659,EL PASO 79914,EL PASO,TX,31.8816,-106.4195,EL PASO 79915,EL PASO,TX,31.743234,-106.368605,EL PASO 79916,EL PASO,TX,31.794873,-106.159157,EL PASO 79917,EL PASO,TX,31.6927,-106.327,EL PASO 79920,EL PASO,TX,31.8232,-106.4614,EL PASO 79922,EL PASO,TX,31.821767,-106.573176,EL PASO 79923,EL PASO,TX,31.7818,-106.4591,EL PASO 79924,EL PASO,TX,31.902098,-106.414857,EL PASO 79925,EL PASO,TX,31.781402,-106.361317,EL PASO 79926,EL PASO,TX,31.7649,-106.3659,EL PASO 79927,EL PASO,TX,31.653014,-106.273064,EL PASO 79928,EL PASO,TX,31.654444,-106.302778,EL PASO 79929,EL PASO,TX,31.692,-106.1575,EL PASO 79930,EL PASO,TX,31.804795,-106.456754,EL PASO 79931,EL PASO,TX,31.813,-106.4441,EL PASO 79932,EL PASO,TX,31.862334,-106.593186,EL PASO 79934,EL PASO,TX,31.938585,-106.407328,EL PASO 79935,EL PASO,TX,31.771847,-106.330258,EL PASO 79936,EL PASO,TX,31.767655,-106.30159,EL PASO 79937,EL PASO,TX,31.7847,-106.3363,EL PASO 79938,EL PASO,TX,31.8211,-106.117,EL PASO 79940,EL PASO,TX,31.7598,-106.4871,EL PASO 79941,EL PASO,TX,31.7598,-106.4871,EL PASO 79942,EL PASO,TX,31.7598,-106.4871,EL PASO 79943,EL PASO,TX,31.7598,-106.4871,EL PASO 79944,EL PASO,TX,31.7598,-106.4871,EL PASO 79945,EL PASO,TX,31.7598,-106.4871,EL PASO 79946,EL PASO,TX,31.7598,-106.4871,EL PASO 79947,EL PASO,TX,31.7598,-106.4871,EL PASO 79948,EL PASO,TX,31.7598,-106.4871,EL PASO 79949,EL PASO,TX,31.7598,-106.4871,EL PASO 79950,EL PASO,TX,31.7598,-106.4871,EL PASO 79951,EL PASO,TX,31.7598,-106.4871,EL PASO 79952,EL PASO,TX,31.7598,-106.4871,EL PASO 79953,EL PASO,TX,31.7598,-106.4871,EL PASO 79954,EL PASO,TX,31.7598,-106.4871,EL PASO 79955,EL PASO,TX,31.7598,-106.4871,EL PASO 79958,EL PASO,TX,31.7598,-106.4871,EL PASO 79960,EL PASO,TX,31.7598,-106.4871,EL PASO 79961,EL PASO,TX,31.7598,-106.4871,EL PASO 79968,EL PASO,TX,31.7707,-106.5037,EL PASO 79976,EL PASO,TX,31.7598,-106.4871,EL PASO 79978,EL PASO,TX,31.7598,-106.4871,EL PASO 79980,EL PASO,TX,31.7598,-106.4871,EL PASO 79990,EL PASO,TX,31.7691,-106.4264,EL PASO 79995,EL PASO,TX,31.7691,-106.4264,EL PASO 79996,EL PASO,TX,31.7691,-106.4264,EL PASO 79997,EL PASO,TX,31.7691,-106.4264,EL PASO 79998,EL PASO,TX,31.7691,-106.4264,EL PASO 79999,EL PASO,TX,31.7691,-106.4264,EL PASO 80001,ARVADA,CO,39.8039,-105.0859,JEFFERSON 80002,ARVADA,CO,39.794533,-105.098402,JEFFERSON 80003,ARVADA,CO,39.828572,-105.065549,JEFFERSON 80004,ARVADA,CO,39.814066,-105.11771,JEFFERSON 80005,ARVADA,CO,39.842189,-105.109719,JEFFERSON 80006,ARVADA,CO,39.8467,-105.0815,JEFFERSON 80007,ARVADA,CO,39.8296,-105.1828,JEFFERSON 80010,AURORA,CO,39.736788,-104.864618,ARAPAHOE 80011,AURORA,CO,39.737809,-104.815233,ADAMS 80012,AURORA,CO,39.698672,-104.837693,ARAPAHOE 80013,AURORA,CO,39.657457,-104.784566,ARAPAHOE 80014,AURORA,CO,39.666171,-104.834954,ARAPAHOE 80015,AURORA,CO,39.62552,-104.787438,ARAPAHOE 80016,AURORA,CO,39.618713,-104.741734,ARAPAHOE 80017,AURORA,CO,39.694827,-104.788093,ARAPAHOE 80018,AURORA,CO,39.710179,-104.707102,ARAPAHOE 80019,AURORA,CO,39.765608,-104.706906,ADAMS 80040,AURORA,CO,39.7412,-104.8749,ADAMS 80041,AURORA,CO,39.6986,-104.8371,ARAPAHOE 80042,AURORA,CO,39.7404,-104.8089,ADAMS 80044,AURORA,CO,39.6609,-104.8351,ARAPAHOE 80045,AURORA,CO,39.748014,-104.837954,ADAMS 80046,AURORA,CO,39.6283,-104.7966,ARAPAHOE 80047,AURORA,CO,39.7007,-104.767,ARAPAHOE 80110,ENGLEWOOD,CO,39.646027,-104.990022,ARAPAHOE 80111,ENGLEWOOD,CO,39.610327,-104.882832,ARAPAHOE 80112,ENGLEWOOD,CO,39.58051,-104.901115,ARAPAHOE 80113,ENGLEWOOD,CO,39.641667,-104.958889,ARAPAHOE 80120,LITTLETON,CO,39.599426,-105.0044,ARAPAHOE 80121,LITTLETON,CO,39.605835,-104.957285,ARAPAHOE 80122,LITTLETON,CO,39.581418,-104.955673,ARAPAHOE 80123,LITTLETON,CO,39.596854,-105.07766,JEFFERSON 80124,LITTLETON,CO,39.55061,-104.897204,DOUGLAS 80125,LITTLETON,CO,39.484466,-105.056098,DOUGLAS 80126,LITTLETON,CO,39.55134,-104.963751,DOUGLAS 80127,LITTLETON,CO,39.591968,-105.132811,JEFFERSON 80128,LITTLETON,CO,39.5752,-105.0809,JEFFERSON 80129,LITTLETON,CO,39.5446,-105.0097,DOUGLAS 80130,LITTLETON,CO,39.5408,-104.922,DOUGLAS 80150,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80151,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80155,ENGLEWOOD,CO,39.617222,-104.950278,ARAPAHOE 80160,LITTLETON,CO,39.6128,-105.0156,ARAPAHOE 80161,LITTLETON,CO,39.5953,-104.9622,ARAPAHOE 80162,LITTLETON,CO,39.5999,-105.1073,JEFFERSON 80163,LITTLETON,CO,39.5427,-104.9365,DOUGLAS 80165,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80166,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80201,DENVER,CO,39.7507,-104.989,DENVER 80202,DENVER,CO,39.749107,-104.994591,DENVER 80203,DENVER,CO,39.731285,-104.981111,DENVER 80204,DENVER,CO,39.734022,-105.025854,DENVER 80205,DENVER,CO,39.758993,-104.966141,DENVER 80206,DENVER,CO,39.733109,-104.9524,DENVER 80207,DENVER,CO,39.758425,-104.91771,DENVER 80208,DENVER,CO,39.676667,-104.961667,DENVER 80209,DENVER,CO,39.707437,-104.968587,DENVER 80210,DENVER,CO,39.679003,-104.963124,DENVER 80211,DENVER,CO,39.766515,-105.020377,DENVER 80212,DENVER,CO,39.772396,-105.046979,DENVER 80214,DENVER,CO,39.746931,-105.062036,JEFFERSON 80215,DENVER,CO,39.744033,-105.102329,JEFFERSON 80216,DENVER,CO,39.783469,-104.966946,DENVER 80217,DENVER,CO,39.7391,-104.9841,DENVER 80218,DENVER,CO,39.732747,-104.971652,DENVER 80219,DENVER,CO,39.695624,-105.034134,DENVER 80220,DENVER,CO,39.7312,-104.912866,DENVER 80221,DENVER,CO,39.840562,-105.007985,ADAMS 80222,DENVER,CO,39.682803,-104.927992,DENVER 80223,DENVER,CO,39.700239,-105.002799,DENVER 80224,DENVER,CO,39.687995,-104.910778,DENVER 80225,DENVER,CO,39.7204,-105.1201,JEFFERSON 80226,DENVER,CO,39.712186,-105.066703,JEFFERSON 80227,DENVER,CO,39.666746,-105.085359,JEFFERSON 80228,DENVER,CO,39.696898,-105.143009,JEFFERSON 80229,DENVER,CO,39.860998,-104.961749,ADAMS 80230,DENVER,CO,39.720556,-104.898611,DENVER 80231,DENVER,CO,39.679324,-104.884326,DENVER 80232,DENVER,CO,39.697282,-105.094524,JEFFERSON 80233,DENVER,CO,39.901222,-104.958257,ADAMS 80234,DENVER,CO,39.905479,-105.004474,ADAMS 80235,DENVER,CO,39.647175,-105.079466,JEFFERSON 80236,DENVER,CO,39.653535,-105.037595,DENVER 80237,DENVER,CO,39.64314,-104.89866,DENVER 80238,DENVER,CO,39.793611,-104.833056,DENVER 80239,DENVER,CO,39.787757,-104.828837,DENVER 80241,DENVER,CO,39.927792,-104.941809,ADAMS 80243,DENVER,CO,39.6875,-104.9613,DENVER 80244,DENVER,CO,39.7391,-104.9841,DENVER 80246,DENVER,CO,39.7025,-104.933611,DENVER 80247,DENVER,CO,39.6941,-104.8786,ARAPAHOE 80248,DENVER,CO,39.7516,-105.0008,DENVER 80249,DENVER,CO,39.778264,-104.75565,DENVER 80250,DENVER,CO,39.68,-104.9433,DENVER 80251,DENVER,CO,39.7391,-104.9841,DENVER 80252,DENVER,CO,39.7391,-104.9841,DENVER 80256,DENVER,CO,39.7391,-104.9841,DENVER 80257,DENVER,CO,39.7391,-104.9841,DENVER 80259,DENVER,CO,39.7391,-104.9841,DENVER 80260,DENVER,CO,39.851389,-104.998056,ADAMS 80261,DENVER,CO,39.7391,-104.9841,DENVER 80262,DENVER,CO,39.7328,-104.9366,DENVER 80263,DENVER,CO,39.6522,-104.9129,DENVER 80264,DENVER,CO,39.7423,-104.9853,DENVER 80265,DENVER,CO,39.7391,-104.9841,DENVER 80266,DENVER,CO,39.7983,-104.8999,DENVER 80271,DENVER,CO,39.7391,-104.9841,DENVER 80273,DENVER,CO,39.7391,-104.9841,DENVER 80274,DENVER,CO,39.7391,-104.9841,DENVER 80279,DENVER,CO,39.7391,-104.9841,DENVER 80280,DENVER,CO,39.7193,-104.8989,DENVER 80281,DENVER,CO,39.7391,-104.9841,DENVER 80290,DENVER,CO,39.7391,-104.9841,DENVER 80291,DENVER,CO,39.7391,-104.9841,DENVER 80293,DENVER,CO,39.7391,-104.9841,DENVER 80294,DENVER,CO,39.7491,-104.9885,DENVER 80295,DENVER,CO,39.7454,-104.9859,DENVER 80299,DENVER,CO,39.7472,-104.9912,DENVER 80301,BOULDER,CO,40.049733,-105.21426,BOULDER 80302,BOULDER,CO,40.017235,-105.285131,BOULDER 80303,BOULDER,CO,39.991381,-105.239178,BOULDER 80304,BOULDER,CO,40.037482,-105.277073,BOULDER 80305,BOULDER,CO,39.9802,-105.2516,BOULDER 80306,BOULDER,CO,40.0178,-105.2752,BOULDER 80307,BOULDER,CO,39.9858,-105.2371,BOULDER 80308,BOULDER,CO,40.015,-105.27,BOULDER 80309,BOULDER,CO,40.005556,-105.263889,BOULDER 80310,BOULDER,CO,40.015,-105.27,BOULDER 80314,BOULDER,CO,40.015,-105.27,BOULDER 80321,BOULDER,CO,40.015,-105.27,BOULDER 80322,BOULDER,CO,40.015,-105.27,BOULDER 80323,BOULDER,CO,40.015,-105.27,BOULDER 80328,BOULDER,CO,40.015,-105.27,BOULDER 80329,BOULDER,CO,40.015,-105.27,BOULDER 80521,FORT COLLINS,CO,40.581293,-105.103884,LARIMER 80522,FORT COLLINS,CO,40.584,-105.0804,LARIMER 80523,FORT COLLINS,CO,40.5731,-105.086,LARIMER 80524,FORT COLLINS,CO,40.59865,-105.05811,LARIMER 80525,FORT COLLINS,CO,40.538354,-105.054715,LARIMER 80526,FORT COLLINS,CO,40.547294,-105.107646,LARIMER 80527,FORT COLLINS,CO,40.532,-105.0731,LARIMER 80528,FORT COLLINS,CO,40.4977,-105.0041,LARIMER 80553,FORT COLLINS,CO,40.5675,-105.0453,LARIMER 80631,GREELEY,CO,40.413968,-104.704756,WELD 80632,GREELEY,CO,40.4236,-104.6959,WELD 80633,GREELEY,CO,40.4236,-104.6959,WELD 80634,GREELEY,CO,40.410947,-104.754113,WELD 80638,GREELEY,CO,40.4233,-104.7086,WELD 80639,GREELEY,CO,40.4025,-104.701111,WELD 80901,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80902,COLORADO SPRINGS,CO,38.8338816,-104.8213634,EL PASO 80903,COLORADO SPRINGS,CO,38.838832,-104.814466,EL PASO 80904,COLORADO SPRINGS,CO,38.853318,-104.859513,EL PASO 80905,COLORADO SPRINGS,CO,38.837692,-104.836997,EL PASO 80906,COLORADO SPRINGS,CO,38.790164,-104.819893,EL PASO 80907,COLORADO SPRINGS,CO,38.876001,-104.817034,EL PASO 80908,COLORADO SPRINGS,CO,39.023745,-104.693331,EL PASO 80909,COLORADO SPRINGS,CO,38.852038,-104.773483,EL PASO 80910,COLORADO SPRINGS,CO,38.815164,-104.770299,EL PASO 80911,COLORADO SPRINGS,CO,38.745665,-104.722322,EL PASO 80912,COLORADO SPRINGS,CO,39.0475,-104.6901,EL PASO 80913,COLORADO SPRINGS,CO,38.741967,-104.782218,EL PASO 80914,COLORADO SPRINGS,CO,38.784241,-104.719052,EL PASO 80915,COLORADO SPRINGS,CO,38.855845,-104.713422,EL PASO 80916,COLORADO SPRINGS,CO,38.807619,-104.74034,EL PASO 80917,COLORADO SPRINGS,CO,38.886027,-104.739904,EL PASO 80918,COLORADO SPRINGS,CO,38.912924,-104.773444,EL PASO 80919,COLORADO SPRINGS,CO,38.926795,-104.84642,EL PASO 80920,COLORADO SPRINGS,CO,38.949732,-104.766951,EL PASO 80921,COLORADO SPRINGS,CO,39.048674,-104.814042,EL PASO 80922,COLORADO SPRINGS,CO,38.90503,-104.698161,EL PASO 80923,COLORADO SPRINGS,CO,38.92538,-104.717101,EL PASO 80924,COLORADO SPRINGS,CO,38.951969,-104.71418,EL PASO 80925,COLORADO SPRINGS,CO,38.731329,-104.660087,EL PASO 80926,COLORADO SPRINGS,CO,38.698073,-104.85051,EL PASO 80927,COLORADO SPRINGS,CO,38.918882,-104.675545,EL PASO 80928,COLORADO SPRINGS,CO,38.623261,-104.457043,EL PASO 80929,COLORADO SPRINGS,CO,38.796837,-104.607857,EL PASO 80930,COLORADO SPRINGS,CO,38.828926,-104.526924,EL PASO 80931,COLORADO SPRINGS,CO,38.7513,-104.7322,EL PASO 80932,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80933,COLORADO SPRINGS,CO,38.8729,-104.8105,EL PASO 80934,COLORADO SPRINGS,CO,38.8459,-104.8632,EL PASO 80935,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80936,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 80937,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80938,COLORADO SPRINGS,CO,38.917468,-104.650769,EL PASO 80939,COLORADO SPRINGS,CO,38.879618,-104.679918,EL PASO 80940,COLORADO SPRINGS,CO,38.8864,-104.6716,EL PASO 80941,COLORADO SPRINGS,CO,38.9594,-104.7536,EL PASO 80942,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80943,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80944,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80945,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80946,COLORADO SPRINGS,CO,38.8466,-104.8238,EL PASO 80947,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80949,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80950,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80951,COLORADO SPRINGS,CO,38.863647,-104.670443,EL PASO 80960,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80962,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80970,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80977,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80995,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80997,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 81001,PUEBLO,CO,38.287876,-104.584828,PUEBLO 81002,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81003,PUEBLO,CO,38.284277,-104.62337,PUEBLO 81004,PUEBLO,CO,38.244063,-104.627829,PUEBLO 81005,PUEBLO,CO,38.235157,-104.660031,PUEBLO 81006,PUEBLO,CO,38.24465,-104.531834,PUEBLO 81007,PUEBLO,CO,38.319975,-104.743264,PUEBLO 81008,PUEBLO,CO,38.313251,-104.628433,PUEBLO 81009,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81010,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81011,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81012,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81501,GRAND JUNCTION,CO,39.078326,-108.545692,MESA 81502,GRAND JUNCTION,CO,39.063889,-108.55,MESA 81503,GRAND JUNCTION,CO,39.056777,-108.575609,MESA 81504,GRAND JUNCTION,CO,39.083136,-108.489094,MESA 81505,GRAND JUNCTION,CO,39.107097,-108.596834,MESA 81506,GRAND JUNCTION,CO,39.103209,-108.54911,MESA 82001,CHEYENNE,WY,41.143719,-104.796234,LARAMIE 82002,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82003,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82006,CHEYENNE,WY,41.4052,-104.8606,LARAMIE 82007,CHEYENNE,WY,41.108433,-104.810745,LARAMIE 82008,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82009,CHEYENNE,WY,41.183566,-104.802328,LARAMIE 82010,CHEYENNE,WY,41.1371,-104.818,LARAMIE 83201,POCATELLO,ID,42.887592,-112.438142,BANNOCK 83202,POCATELLO,ID,42.926548,-112.474873,BANNOCK 83204,POCATELLO,ID,42.846463,-112.443352,BANNOCK 83205,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83206,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83209,POCATELLO,ID,42.8628,-112.4338,BANNOCK 83401,IDAHO FALLS,ID,43.517679,-111.990626,BONNEVILLE 83402,IDAHO FALLS,ID,43.493373,-112.057762,BONNEVILLE 83403,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83404,IDAHO FALLS,ID,43.475043,-112.012449,BONNEVILLE 83405,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83406,IDAHO FALLS,ID,43.473233,-111.966052,BONNEVILLE 83415,IDAHO FALLS,ID,43.4666,-112.0333,BONNEVILLE 83701,BOISE,ID,43.6154,-116.2161,ADA 83702,BOISE,ID,43.632237,-116.205192,ADA 83703,BOISE,ID,43.660051,-116.252396,ADA 83704,BOISE,ID,43.633001,-116.295099,ADA 83705,BOISE,ID,43.585077,-116.219104,ADA 83706,BOISE,ID,43.588495,-116.191006,ADA 83707,BOISE,ID,43.6154,-116.2161,ADA 83708,BOISE,ID,43.6136,-116.2025,ADA 83709,BOISE,ID,43.574085,-116.29407,ADA 83711,BOISE,ID,43.6154,-116.2161,ADA 83712,BOISE,ID,43.602311,-116.164924,ADA 83713,BOISE,ID,43.6401,-116.3328,ADA 83715,BOISE,ID,43.5665,-116.2119,ADA 83716,BOISE,ID,43.5444,-116.043,ADA 83717,BOISE,ID,43.5544,-116.1472,ADA 83719,BOISE,ID,43.5476,-116.2836,ADA 83720,BOISE,ID,43.6154,-116.2161,ADA 83721,BOISE,ID,43.6136,-116.2025, 83722,BOISE,ID,43.6136,-116.2025,ADA 83724,BOISE,ID,43.6136,-116.2025,ADA 83725,BOISE,ID,43.605,-116.2054,ADA 83726,BOISE,ID,43.4343,-116.0029,ADA 83727,BOISE,ID,43.6136,-116.2025, 83728,BOISE,ID,43.6136,-116.2025,ADA 83729,BOISE,ID,43.6136,-116.2025,ADA 83730,BOISE,ID,43.6136,-116.2025, 83731,BOISE,ID,43.7435,-116.2024,ADA 83732,BOISE,ID,43.5476,-116.2836,ADA 83733,BOISE,ID,43.6136,-116.2025, 83735,BOISE,ID,43.6136,-116.2025,ADA 83756,BOISE,ID,43.6136,-116.2025,ADA 83757,BOISE,ID,43.6136,-116.2025,ADA 83799,BOISE,ID,43.6142,-116.2161,ADA 84070,SANDY,UT,40.579379,-111.881625,SALT LAKE 84090,SANDY,UT,40.583,-111.8332,SALT LAKE 84091,SANDY,UT,40.5897,-111.8713,SALT LAKE 84092,SANDY,UT,40.560245,-111.82736,SALT LAKE 84093,SANDY,UT,40.592651,-111.830989,SALT LAKE 84094,SANDY,UT,40.568757,-111.861716,SALT LAKE 84101,SALT LAKE CITY,UT,40.755851,-111.896657,SALT LAKE 84102,SALT LAKE CITY,UT,40.760034,-111.862721,SALT LAKE 84103,SALT LAKE CITY,UT,40.777584,-111.874891,SALT LAKE 84104,SALT LAKE CITY,UT,40.74985,-111.925979,SALT LAKE 84105,SALT LAKE CITY,UT,40.737236,-111.858087,SALT LAKE 84106,SALT LAKE CITY,UT,40.705597,-111.854841,SALT LAKE 84107,SALT LAKE CITY,UT,40.659014,-111.878383,SALT LAKE 84108,SALT LAKE CITY,UT,40.737136,-111.825822,SALT LAKE 84109,SALT LAKE CITY,UT,40.704251,-111.814218,SALT LAKE 84110,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84111,SALT LAKE CITY,UT,40.754834,-111.881,SALT LAKE 84112,SALT LAKE CITY,UT,40.752372,-111.827827,SALT LAKE 84113,SALT LAKE CITY,UT,40.763057,-111.841825,SALT LAKE 84114,SALT LAKE CITY,UT,40.7755,-111.8874,SALT LAKE 84115,SALT LAKE CITY,UT,40.715797,-111.883828,SALT LAKE 84116,SALT LAKE CITY,UT,40.785697,-111.929054,SALT LAKE 84117,SALT LAKE CITY,UT,40.666302,-111.832943,SALT LAKE 84118,SALT LAKE CITY,UT,40.652759,-111.98521,SALT LAKE 84119,SALT LAKE CITY,UT,40.690977,-111.952964,SALT LAKE 84120,SALT LAKE CITY,UT,40.68708,-112.009783,SALT LAKE 84121,SALT LAKE CITY,UT,40.623247,-111.82468,SALT LAKE 84122,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84123,SALT LAKE CITY,UT,40.660479,-111.919483,SALT LAKE 84124,SALT LAKE CITY,UT,40.67966,-111.820833,SALT LAKE 84125,SALT LAKE CITY,UT,40.7,-111.9443,SALT LAKE 84126,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84127,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84128,SALT LAKE CITY,UT,40.6951,-112.044,SALT LAKE 84130,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84131,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84132,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84133,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84134,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84136,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84138,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84139,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84141,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84143,SALT LAKE CITY,UT,40.7785,-111.8789,SALT LAKE 84144,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84145,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84147,SALT LAKE CITY,UT,40.7682,-111.8872,SALT LAKE 84148,SALT LAKE CITY,UT,40.7582,-111.8397,SALT LAKE 84150,SALT LAKE CITY,UT,40.7693,-111.8886,SALT LAKE 84151,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84152,SALT LAKE CITY,UT,40.7288,-111.8586,SALT LAKE 84157,SALT LAKE CITY,UT,40.6628,-111.8867,SALT LAKE 84158,SALT LAKE CITY,UT,40.7502,-111.8255,SALT LAKE 84165,SALT LAKE CITY,UT,40.713611,-111.891111,SALT LAKE 84170,SALT LAKE CITY,UT,40.6972,-111.9945,SALT LAKE 84171,SALT LAKE CITY,UT,40.619722,-111.809444,SALT LAKE 84180,SALT LAKE CITY,UT,40.7696,-111.9009,SALT LAKE 84184,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84189,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84190,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84199,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84201,OGDEN,UT,41.2443,-112.0072,WEBER 84244,OGDEN,UT,41.2839,-112.1235,WEBER 84401,OGDEN,UT,41.22148,-111.962121,WEBER 84402,OGDEN,UT,41.1976,-111.9844,WEBER 84403,OGDEN,UT,41.189412,-111.948927,WEBER 84404,OGDEN,UT,41.262727,-111.983686,WEBER 84405,OGDEN,UT,41.173928,-111.980945,WEBER 84407,OGDEN,UT,41.2839,-112.1235,WEBER 84408,OGDEN,UT,41.192,-111.9465,WEBER 84409,OGDEN,UT,41.1976,-111.9844,WEBER 84412,OGDEN,UT,41.2639,-111.9686,WEBER 84414,OGDEN,UT,41.311201,-111.968924,WEBER 84415,OGDEN,UT,41.1796,-111.9496,WEBER 84601,PROVO,UT,40.231949,-111.675504,UTAH 84602,PROVO,UT,40.2483,-111.6484,UTAH 84603,PROVO,UT,40.232,-111.6589,UTAH 84604,PROVO,UT,40.260681,-111.654906,UTAH 84605,PROVO,UT,40.2338,-111.6577,UTAH 84606,PROVO,UT,40.234675,-111.644724,UTAH 85001,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85002,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85003,PHOENIX,AZ,33.451095,-112.077428,MARICOPA 85004,PHOENIX,AZ,33.455708,-112.068584,MARICOPA 85005,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85006,PHOENIX,AZ,33.465016,-112.047357,MARICOPA 85007,PHOENIX,AZ,33.452298,-112.089326,MARICOPA 85008,PHOENIX,AZ,33.466457,-111.998381,MARICOPA 85009,PHOENIX,AZ,33.456373,-112.128368,MARICOPA 85010,PHOENIX,AZ,33.4659,-112.0236,MARICOPA 85011,PHOENIX,AZ,33.5054,-112.0634,MARICOPA 85012,PHOENIX,AZ,33.509744,-112.067816,MARICOPA 85013,PHOENIX,AZ,33.508493,-112.082657,MARICOPA 85014,PHOENIX,AZ,33.510263,-112.05557,MARICOPA 85015,PHOENIX,AZ,33.508164,-112.101064,MARICOPA 85016,PHOENIX,AZ,33.502117,-112.030496,MARICOPA 85017,PHOENIX,AZ,33.515263,-112.121232,MARICOPA 85018,PHOENIX,AZ,33.495796,-111.988259,MARICOPA 85019,PHOENIX,AZ,33.512284,-112.141681,MARICOPA 85020,PHOENIX,AZ,33.562281,-112.055888,MARICOPA 85021,PHOENIX,AZ,33.559965,-112.092686,MARICOPA 85022,PHOENIX,AZ,33.631513,-112.052008,MARICOPA 85023,PHOENIX,AZ,33.632383,-112.111838,MARICOPA 85024,PHOENIX,AZ,33.661664,-112.036956,MARICOPA 85025,PHOENIX,AZ,33.4506,-112.0773,MARICOPA 85026,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85027,PHOENIX,AZ,33.667157,-112.102723,MARICOPA 85028,PHOENIX,AZ,33.585115,-112.008724,MARICOPA 85029,PHOENIX,AZ,33.596133,-112.119913,MARICOPA 85030,PHOENIX,AZ,33.4519,-112.0775,MARICOPA 85031,PHOENIX,AZ,33.493909,-112.16963,MARICOPA 85032,PHOENIX,AZ,33.623807,-112.004369,MARICOPA 85033,PHOENIX,AZ,33.494426,-112.213185,MARICOPA 85034,PHOENIX,AZ,33.441251,-112.042135,MARICOPA 85035,PHOENIX,AZ,33.472353,-112.183177,MARICOPA 85036,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85037,PHOENIX,AZ,33.491278,-112.246763,MARICOPA 85038,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85039,PHOENIX,AZ,33.495362,-112.288573,MARICOPA 85040,PHOENIX,AZ,33.390475,-112.03126,MARICOPA 85041,PHOENIX,AZ,33.388882,-112.095437,MARICOPA 85042,PHOENIX,AZ,33.3783,-112.0313,MARICOPA 85043,PHOENIX,AZ,33.449056,-112.197245,MARICOPA 85044,PHOENIX,AZ,33.329124,-111.9943,MARICOPA 85045,PHOENIX,AZ,33.2997,-112.0958,MARICOPA 85046,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85048,PHOENIX,AZ,33.3042,-112.0282,MARICOPA 85050,PHOENIX,AZ,33.6794,-111.9991,MARICOPA 85051,PHOENIX,AZ,33.559113,-112.133168,MARICOPA 85053,PHOENIX,AZ,33.6279,-112.1315,MARICOPA 85054,PHOENIX,AZ,33.6764,-111.9569,MARICOPA 85055,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85060,PHOENIX,AZ,33.4805,-111.9963,MARICOPA 85061,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85062,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85063,PHOENIX,AZ,33.5014,-112.1723,MARICOPA 85064,PHOENIX,AZ,33.5098,-112.0378,MARICOPA 85065,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85066,PHOENIX,AZ,33.3924,-112.0675,MARICOPA 85067,PHOENIX,AZ,33.4934,-112.0823,MARICOPA 85068,PHOENIX,AZ,33.5742,-112.0644,MARICOPA 85069,PHOENIX,AZ,33.5562,-112.1113,MARICOPA 85070,PHOENIX,AZ,33.561,-112.0935,MARICOPA 85071,PHOENIX,AZ,33.597,-112.0987,MARICOPA 85072,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85073,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85074,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85075,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85076,PHOENIX,AZ,33.3475,-111.9742,MARICOPA 85077,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85078,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85079,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85080,PHOENIX,AZ,33.6548,-112.1043,MARICOPA 85082,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85083,PHOENIX,AZ,33.4483771,-112.0740373,MARICOPA 85085,PHOENIX,AZ,33.7485,-112.1254,MARICOPA 85086,PHOENIX,AZ,33.8405,-112.112,MARICOPA 85098,PHOENIX,AZ,33.4368,-112.1416,MARICOPA 85099,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85201,MESA,AZ,33.43174,-111.846931,MARICOPA 85202,MESA,AZ,33.385095,-111.872429,MARICOPA 85203,MESA,AZ,33.436952,-111.805697,MARICOPA 85204,MESA,AZ,33.399168,-111.789554,MARICOPA 85205,MESA,AZ,33.43685,-111.712939,MARICOPA 85206,MESA,AZ,33.402603,-111.724223,MARICOPA 85207,MESA,AZ,33.432073,-111.64256,MARICOPA 85208,MESA,AZ,33.398416,-111.651297,MARICOPA 85209,MESA,AZ,33.378332,-111.636262,MARICOPA 85210,MESA,AZ,33.38867,-111.842757,MARICOPA 85211,MESA,AZ,33.4181,-111.8304,MARICOPA 85212,MESA,AZ,33.3341,-111.6381,MARICOPA 85213,MESA,AZ,33.436688,-111.773114,MARICOPA 85214,MESA,AZ,33.4222,-111.8219,MARICOPA 85215,MESA,AZ,33.4702,-111.708,MARICOPA 85216,MESA,AZ,33.4085,-111.6853,MARICOPA 85224,CHANDLER,AZ,33.330091,-111.863156,MARICOPA 85225,CHANDLER,AZ,33.310505,-111.823881,MARICOPA 85226,CHANDLER,AZ,33.30917,-111.919827,MARICOPA 85233,GILBERT,AZ,33.35,-111.8092,MARICOPA 85234,GILBERT,AZ,33.352746,-111.780876,MARICOPA 85244,CHANDLER,AZ,33.3047,-111.8378,MARICOPA 85246,CHANDLER,AZ,33.3061,-111.8405,MARICOPA 85248,CHANDLER,AZ,33.223056,-111.866899,MARICOPA 85249,CHANDLER,AZ,33.241384,-111.774486,MARICOPA 85250,SCOTTSDALE,AZ,33.521767,-111.904926,MARICOPA 85251,SCOTTSDALE,AZ,33.493559,-111.916697,MARICOPA 85252,SCOTTSDALE,AZ,33.4873,-111.9247,MARICOPA 85254,SCOTTSDALE,AZ,33.616476,-111.955422,MARICOPA 85255,SCOTTSDALE,AZ,33.696801,-111.889213,MARICOPA 85256,SCOTTSDALE,AZ,33.485793,-111.85333,MARICOPA 85257,SCOTTSDALE,AZ,33.46693,-111.915129,MARICOPA 85258,SCOTTSDALE,AZ,33.564747,-111.893067,MARICOPA 85259,SCOTTSDALE,AZ,33.587943,-111.840438,MARICOPA 85260,SCOTTSDALE,AZ,33.601323,-111.88671,MARICOPA 85261,SCOTTSDALE,AZ,33.4946,-111.9204,MARICOPA 85262,SCOTTSDALE,AZ,33.77524,-111.779135,MARICOPA 85266,SCOTTSDALE,AZ,33.4359,-112.0201,MARICOPA 85267,SCOTTSDALE,AZ,33.6105,-111.8902,MARICOPA 85271,SCOTTSDALE,AZ,33.4657,-111.92,MARICOPA 85274,MESA,AZ,33.4073,-111.8829,MARICOPA 85275,MESA,AZ,33.4222,-111.8219,MARICOPA 85277,MESA,AZ,33.4591,-111.7199,MARICOPA 85280,TEMPE,AZ,33.4273,-111.9307,MARICOPA 85281,TEMPE,AZ,33.422675,-111.926144,MARICOPA 85282,TEMPE,AZ,33.391669,-111.924896,MARICOPA 85283,TEMPE,AZ,33.366524,-111.93122,MARICOPA 85284,TEMPE,AZ,33.336302,-111.919696,MARICOPA 85285,TEMPE,AZ,33.3926,-111.9352,MARICOPA 85286,CHANDLER,AZ,33.3061605,-111.8412502,MARICOPA 85287,TEMPE,AZ,33.420833,-111.93,MARICOPA 85289,TEMPE,AZ,33.4001,-111.9652,MARICOPA 85295,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85296,GILBERT,AZ,33.3196,-111.7595,MARICOPA 85297,GILBERT,AZ,33.2646,-111.7086,MARICOPA 85298,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85299,GILBERT,AZ,33.3496,-111.7914,MARICOPA 85301,GLENDALE,AZ,33.531122,-112.176703,MARICOPA 85302,GLENDALE,AZ,33.567487,-112.175289,MARICOPA 85303,GLENDALE,AZ,33.526215,-112.214937,MARICOPA 85304,GLENDALE,AZ,33.594289,-112.174575,MARICOPA 85305,GLENDALE,AZ,33.529103,-112.248232,MARICOPA 85306,GLENDALE,AZ,33.623882,-112.177563,MARICOPA 85307,GLENDALE,AZ,33.534879,-112.326735,MARICOPA 85308,GLENDALE,AZ,33.653924,-112.169391,MARICOPA 85310,GLENDALE,AZ,33.704726,-112.164131,MARICOPA 85311,GLENDALE,AZ,33.532,-112.1764,MARICOPA 85312,GLENDALE,AZ,33.6252,-112.1839,MARICOPA 85313,GLENDALE,AZ,33.6086,-112.1611,MARICOPA 85318,GLENDALE,AZ,33.6821,-112.1862,MARICOPA 85345,PEORIA,AZ,33.576135,-112.234424,MARICOPA 85380,PEORIA,AZ,33.5822,-112.2414,MARICOPA 85381,PEORIA,AZ,33.604761,-112.223723,MARICOPA 85382,PEORIA,AZ,33.63083,-112.207177,MARICOPA 85383,PEORIA,AZ,33.7218,-112.2594,MARICOPA 85385,PEORIA,AZ,33.6099,-112.2261,MARICOPA 85701,TUCSON,AZ,32.213873,-110.969445,PIMA 85702,TUCSON,AZ,32.2216,-110.9258,PIMA 85703,TUCSON,AZ,32.2465,-110.9786,PIMA 85704,TUCSON,AZ,32.329175,-110.984593,PIMA 85705,TUCSON,AZ,32.269088,-110.984536,PIMA 85706,TUCSON,AZ,32.139172,-110.945127,PIMA 85707,TUCSON,AZ,32.177778,-110.8775,PIMA 85708,TUCSON,AZ,32.179989,-110.869283,PIMA 85709,TUCSON,AZ,32.2251,-111.0167,PIMA 85710,TUCSON,AZ,32.213813,-110.824046,PIMA 85711,TUCSON,AZ,32.212729,-110.882892,PIMA 85712,TUCSON,AZ,32.250043,-110.886919,PIMA 85713,TUCSON,AZ,32.194065,-110.973896,PIMA 85714,TUCSON,AZ,32.170657,-110.971891,PIMA 85715,TUCSON,AZ,32.269213,-110.834837,PIMA 85716,TUCSON,AZ,32.246815,-110.922176,PIMA 85717,TUCSON,AZ,32.2356,-110.9398,PIMA 85718,TUCSON,AZ,32.311154,-110.917882,PIMA 85719,TUCSON,AZ,32.247426,-110.949142,PIMA 85720,TUCSON,AZ,32.2033,-110.9451,PIMA 85721,TUCSON,AZ,32.2335,-110.9521,PIMA 85722,TUCSON,AZ,32.2317,-110.9567,PIMA 85723,TUCSON,AZ,32.1812,-110.9683,PIMA 85724,TUCSON,AZ,32.2033,-110.9451,PIMA 85725,TUCSON,AZ,32.2216,-110.9258,PIMA 85726,TUCSON,AZ,32.2033,-110.9451,PIMA 85728,TUCSON,AZ,32.2885,-110.9435,PIMA 85730,TUCSON,AZ,32.180951,-110.81904,PIMA 85731,TUCSON,AZ,32.2216,-110.9258,PIMA 85732,TUCSON,AZ,32.225,-110.8833,PIMA 85733,TUCSON,AZ,32.2356,-110.9398,PIMA 85734,TUCSON,AZ,32.1336,-110.9741,PIMA 85735,TUCSON,AZ,32.057796,-111.260758,PIMA 85736,TUCSON,AZ,31.667909,-111.317842,PIMA 85737,TUCSON,AZ,32.431679,-110.954463,PIMA 85739,TUCSON,AZ,32.5088,-110.8969,PIMA 85740,TUCSON,AZ,32.3203,-110.9742,PIMA 85741,TUCSON,AZ,32.347215,-111.041873,PIMA 85742,TUCSON,AZ,32.3855,-111.0466,PIMA 85743,TUCSON,AZ,32.33655,-111.177071,PIMA 85744,TUCSON,AZ,32.0916,-110.8046,PIMA 85745,TUCSON,AZ,32.243359,-111.017907,PIMA 85746,TUCSON,AZ,32.142244,-111.050569,PIMA 85747,TUCSON,AZ,32.071142,-110.667337,PIMA 85748,TUCSON,AZ,32.214981,-110.775765,PIMA 85749,TUCSON,AZ,32.273285,-110.765829,PIMA 85750,TUCSON,AZ,32.2977,-110.8447,PIMA 85751,TUCSON,AZ,32.2501,-110.8527,PIMA 85752,TUCSON,AZ,32.3506,-111.0467,PIMA 85754,TUCSON,AZ,32.2345,-111.0024,PIMA 85755,TUCSON,AZ,32.44284,-110.98941,PIMA 85757,TUCSON,AZ,32.136691,-111.10789,PIMA 85775,TUCSON,AZ,32.2033,-110.9451,PIMA 85777,TUCSON,AZ,32.0907,-110.9103,PIMA 86301,PRESCOTT,AZ,34.629909,-113.022459,YAVAPAI 86302,PRESCOTT,AZ,34.754,-112.8314,YAVAPAI 86303,PRESCOTT,AZ,34.558577,-112.473459,YAVAPAI 86304,PRESCOTT,AZ,34.7363,-112.9576,YAVAPAI 86305,PRESCOTT,AZ,34.6476,-112.6458,YAVAPAI 86313,PRESCOTT,AZ,34.5495,-112.4496,YAVAPAI 87101,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87102,ALBUQUERQUE,NM,35.081831,-106.648171,BERNALILLO 87103,ALBUQUERQUE,NM,35.0826,-106.6526,BERNALILLO 87104,ALBUQUERQUE,NM,35.103822,-106.671215,BERNALILLO 87105,ALBUQUERQUE,NM,35.044761,-106.689341,BERNALILLO 87106,ALBUQUERQUE,NM,35.079011,-106.616917,BERNALILLO 87107,ALBUQUERQUE,NM,35.134742,-106.642747,BERNALILLO 87108,ALBUQUERQUE,NM,35.072586,-106.574864,BERNALILLO 87109,ALBUQUERQUE,NM,35.15058,-106.569004,BERNALILLO 87110,ALBUQUERQUE,NM,35.110417,-106.578052,BERNALILLO 87111,ALBUQUERQUE,NM,35.134724,-106.522164,BERNALILLO 87112,ALBUQUERQUE,NM,35.101026,-106.518338,BERNALILLO 87113,ALBUQUERQUE,NM,35.175906,-106.601467,BERNALILLO 87114,ALBUQUERQUE,NM,35.195612,-106.659138,BERNALILLO 87115,ALBUQUERQUE,NM,34.904876,-106.513896,BERNALILLO 87116,ALBUQUERQUE,NM,35.056116,-106.550605,BERNALILLO 87119,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87120,ALBUQUERQUE,NM,35.142146,-106.704137,BERNALILLO 87121,ALBUQUERQUE,NM,35.051209,-106.726861,BERNALILLO 87122,ALBUQUERQUE,NM,35.178715,-106.510176,BERNALILLO 87123,ALBUQUERQUE,NM,35.07166,-106.509003,BERNALILLO 87125,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87131,ALBUQUERQUE,NM,35.0862,-106.6213,BERNALILLO 87151,ALBUQUERQUE,NM,35.0844,-106.6508,BERNALILLO 87153,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87154,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87158,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87165,ALBUQUERQUE,NM,35.2533,-106.6459,BERNALILLO 87176,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87181,ALBUQUERQUE,NM,35.101,-106.5153,BERNALILLO 87184,ALBUQUERQUE,NM,35.1849,-106.6202,BERNALILLO 87185,ALBUQUERQUE,NM,34.9821,-106.5156,BERNALILLO 87187,ALBUQUERQUE,NM,35.1697,-106.8332,BERNALILLO 87190,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87191,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87192,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87193,ALBUQUERQUE,NM,35.1881,-106.6826,BERNALILLO 87194,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87195,ALBUQUERQUE,NM,35.001,-106.6511,BERNALILLO 87196,ALBUQUERQUE,NM,35.0806,-106.6189,BERNALILLO 87197,ALBUQUERQUE,NM,35.1211,-106.6446,BERNALILLO 87198,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87199,ALBUQUERQUE,NM,35.1595,-106.5782,BERNALILLO 87501,SANTA FE,NM,35.702472,-105.974818,SANTA FE 87502,SANTA FE,NM,35.8099,-105.985,SANTA FE 87503,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87504,SANTA FE,NM,35.8099,-105.985,SANTA FE 87505,SANTA FE,NM,35.619623,-105.981994,SANTA FE 87506,SANTA FE,NM,35.7956,-106.0122,SANTA FE 87507,SANTA FE,NM,35.635,-106.0446,SANTA FE 87508,SANTA FE,NM,35.5587,-105.9762,SANTA FE 87509,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87592,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87594,SANTA FE,NM,35.7946,-105.9929,SANTA FE 88001,LAS CRUCES,NM,32.321641,-106.746034,DONA ANA 88003,LAS CRUCES,NM,32.2809,-106.7473,DONA ANA 88004,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88005,LAS CRUCES,NM,32.316076,-106.79908,DONA ANA 88006,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88007,LAS CRUCES,NM,32.3538,-106.8395,DONA ANA 88011,LAS CRUCES,NM,32.327,-106.709,DONA ANA 88012,LAS CRUCES,NM,32.4435,-106.7253,DONA ANA 88013,LAS CRUCES,NM,32.3111,-106.7888,DONA ANA 88510,EL PASO,TX,31.7691,-106.4264,EL PASO 88511,EL PASO,TX,31.7691,-106.4264,EL PASO 88512,EL PASO,TX,31.7691,-106.4264,EL PASO 88513,EL PASO,TX,31.7691,-106.4264,EL PASO 88514,EL PASO,TX,31.7691,-106.4264,EL PASO 88515,EL PASO,TX,31.7691,-106.4264,EL PASO 88516,EL PASO,TX,31.7691,-106.4264,EL PASO 88517,EL PASO,TX,31.7691,-106.4264,EL PASO 88518,EL PASO,TX,31.7691,-106.4264,EL PASO 88519,EL PASO,TX,31.7691,-106.4264,EL PASO 88520,EL PASO,TX,31.7691,-106.4264,EL PASO 88521,EL PASO,TX,31.7691,-106.4264,EL PASO 88523,EL PASO,TX,31.7691,-106.4264,EL PASO 88524,EL PASO,TX,31.7691,-106.4264,EL PASO 88525,EL PASO,TX,31.7691,-106.4264,EL PASO 88526,EL PASO,TX,31.7691,-106.4264,EL PASO 88527,EL PASO,TX,31.7691,-106.4264,EL PASO 88528,EL PASO,TX,31.7691,-106.4264,EL PASO 88529,EL PASO,TX,31.7691,-106.4264,EL PASO 88530,EL PASO,TX,31.7691,-106.4264,EL PASO 88531,EL PASO,TX,31.7691,-106.4264,EL PASO 88532,EL PASO,TX,31.7691,-106.4264,EL PASO 88533,EL PASO,TX,31.7691,-106.4264,EL PASO 88534,EL PASO,TX,31.7691,-106.4264,EL PASO 88535,EL PASO,TX,31.7691,-106.4264,EL PASO 88536,EL PASO,TX,31.7691,-106.4264,EL PASO 88538,EL PASO,TX,31.7691,-106.4264,EL PASO 88539,EL PASO,TX,31.7691,-106.4264,EL PASO 88540,EL PASO,TX,31.7691,-106.4264,EL PASO 88541,EL PASO,TX,31.7691,-106.4264,EL PASO 88542,EL PASO,TX,31.7691,-106.4264,EL PASO 88543,EL PASO,TX,31.7691,-106.4264,EL PASO 88544,EL PASO,TX,31.7691,-106.4264,EL PASO 88545,EL PASO,TX,31.7691,-106.4264,EL PASO 88546,EL PASO,TX,31.7691,-106.4264,EL PASO 88547,EL PASO,TX,31.7691,-106.4264,EL PASO 88548,EL PASO,TX,31.7691,-106.4264,EL PASO 88549,EL PASO,TX,31.7691,-106.4264,EL PASO 88550,EL PASO,TX,31.7691,-106.4264,EL PASO 88553,EL PASO,TX,31.7691,-106.4264,EL PASO 88554,EL PASO,TX,31.7691,-106.4264,EL PASO 88555,EL PASO,TX,31.7691,-106.4264,EL PASO 88556,EL PASO,TX,31.7691,-106.4264,EL PASO 88557,EL PASO,TX,31.7691,-106.4264,EL PASO 88558,EL PASO,TX,31.7691,-106.4264,EL PASO 88559,EL PASO,TX,31.7691,-106.4264,EL PASO 88560,EL PASO,TX,31.7691,-106.4264,EL PASO 88561,EL PASO,TX,31.7691,-106.4264,EL PASO 88562,EL PASO,TX,31.7691,-106.4264,EL PASO 88563,EL PASO,TX,31.7691,-106.4264,EL PASO 88565,EL PASO,TX,31.7691,-106.4264,EL PASO 88566,EL PASO,TX,31.7691,-106.4264,EL PASO 88567,EL PASO,TX,31.7691,-106.4264,EL PASO 88568,EL PASO,TX,31.7691,-106.4264,EL PASO 88569,EL PASO,TX,31.7691,-106.4264,EL PASO 88570,EL PASO,TX,31.7691,-106.4264,EL PASO 88571,EL PASO,TX,31.7691,-106.4264,EL PASO 88572,EL PASO,TX,31.7691,-106.4264,EL PASO 88573,EL PASO,TX,31.7691,-106.4264,EL PASO 88574,EL PASO,TX,31.7691,-106.4264,EL PASO 88575,EL PASO,TX,31.7691,-106.4264,EL PASO 88576,EL PASO,TX,31.7691,-106.4264,EL PASO 88577,EL PASO,TX,31.7691,-106.4264,EL PASO 88578,EL PASO,TX,31.7691,-106.4264,EL PASO 88579,EL PASO,TX,31.7691,-106.4264,EL PASO 88580,EL PASO,TX,31.7691,-106.4264,EL PASO 88581,EL PASO,TX,31.7691,-106.4264,EL PASO 88582,EL PASO,TX,31.7691,-106.4264,EL PASO 88583,EL PASO,TX,31.7691,-106.4264,EL PASO 88584,EL PASO,TX,31.7691,-106.4264,EL PASO 88585,EL PASO,TX,31.7691,-106.4264,EL PASO 88586,EL PASO,TX,31.7691,-106.4264,EL PASO 88587,EL PASO,TX,31.7691,-106.4264,EL PASO 88588,EL PASO,TX,31.7691,-106.4264,EL PASO 88589,EL PASO,TX,31.8102,-106.4167,EL PASO 88590,EL PASO,TX,31.7691,-106.4264,EL PASO 88595,EL PASO,TX,31.7691,-106.4264,EL PASO 89002,HENDERSON,NV,35.992678,-114.951684,CLARK 89009,HENDERSON,NV,36.0938,-114.9445,CLARK 89011,HENDERSON,NV,36.0816,-114.9771,CLARK 89012,HENDERSON,NV,36.0188,-115.0512,CLARK 89014,HENDERSON,NV,36.056435,-115.077968,CLARK 89015,HENDERSON,NV,36.035705,-114.971809,CLARK 89016,HENDERSON,NV,36.0698,-115.0811,CLARK 89030,NORTH LAS VEGAS,NV,36.4475,-114.851389,CLARK 89031,NORTH LAS VEGAS,NV,36.206228,-115.124832,CLARK 89032,NORTH LAS VEGAS,NV,36.2236,-115.1745,CLARK 89033,NORTH LAS VEGAS,NV,36.3231,-115.1214,CLARK 89036,NORTH LAS VEGAS,NV,36.3709,-114.8819,CLARK 89044,HENDERSON,NV,35.9378,-115.098,CLARK 89052,HENDERSON,NV,35.9811,-115.1033,CLARK 89053,HENDERSON,NV,36.0865,-114.9434,CLARK 89074,HENDERSON,NV,36.0368,-115.0854,CLARK 89077,HENDERSON,NV,36.003889,-115.100556,CLARK 89081,NORTH LAS VEGAS,NV,36.2621,-115.1126,CLARK 89084,NORTH LAS VEGAS,NV,36.2873,-115.176,CLARK 89085,NORTH LAS VEGAS,NV,36.3096,-115.1963,CLARK 89086,NORTH LAS VEGAS,NV,36.2805,-115.1199,CLARK 89087,NORTH LAS VEGAS,NV,36.1989,-115.1175,CLARK 89101,LAS VEGAS,NV,36.172082,-115.122366,CLARK 89102,LAS VEGAS,NV,36.143303,-115.200351,CLARK 89103,LAS VEGAS,NV,36.114865,-115.216072,CLARK 89104,LAS VEGAS,NV,36.15197,-115.109195,CLARK 89105,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89106,LAS VEGAS,NV,36.184673,-115.161703,CLARK 89107,LAS VEGAS,NV,36.170457,-115.217638,CLARK 89108,LAS VEGAS,NV,36.204399,-115.223259,CLARK 89109,LAS VEGAS,NV,36.125991,-115.145378,CLARK 89110,LAS VEGAS,NV,36.173031,-115.066892,CLARK 89111,LAS VEGAS,NV,36.0856,-115.1458,CLARK 89112,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89113,LAS VEGAS,NV,36.085366,-115.256614,CLARK 89114,LAS VEGAS,NV,36.1328,-115.171,CLARK 89115,LAS VEGAS,NV,36.215818,-115.067062,CLARK 89116,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89117,LAS VEGAS,NV,36.130196,-115.275518,CLARK 89118,LAS VEGAS,NV,36.081052,-115.216856,CLARK 89119,LAS VEGAS,NV,36.100836,-115.136463,CLARK 89120,LAS VEGAS,NV,36.091423,-115.088485,CLARK 89121,LAS VEGAS,NV,36.12318,-115.090219,CLARK 89122,LAS VEGAS,NV,36.120501,-115.052322,CLARK 89123,LAS VEGAS,NV,36.038273,-115.146182,CLARK 89124,LAS VEGAS,NV,35.963391,-115.095067,CLARK 89125,LAS VEGAS,NV,36.1725,-115.1402,CLARK 89126,LAS VEGAS,NV,36.1507,-115.2075,CLARK 89127,LAS VEGAS,NV,36.1771,-115.1532,CLARK 89128,LAS VEGAS,NV,36.175992,-115.256252,CLARK 89129,LAS VEGAS,NV,36.245004,-115.274254,CLARK 89130,LAS VEGAS,NV,36.247137,-115.221032,CLARK 89131,LAS VEGAS,NV,36.295604,-115.241942,CLARK 89132,LAS VEGAS,NV,36.0998,-115.145,CLARK 89133,LAS VEGAS,NV,36.175,-115.1363,CLARK 89134,LAS VEGAS,NV,36.209234,-115.294123,CLARK 89135,LAS VEGAS,NV,36.1314,-115.3278,CLARK 89136,LAS VEGAS,NV,36.175,-115.1364,CLARK 89137,LAS VEGAS,NV,36.175,-115.1363,CLARK 89138,LAS VEGAS,NV,36.1694,-115.349,CLARK 89139,LAS VEGAS,NV,36.0411,-115.2163,CLARK 89140,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89141,LAS VEGAS,NV,35.9894,-115.203,CLARK 89142,LAS VEGAS,NV,36.1484,-115.0453,CLARK 89143,LAS VEGAS,NV,36.3158,-115.289,CLARK 89144,LAS VEGAS,NV,36.1788,-115.324,CLARK 89145,LAS VEGAS,NV,36.1678,-115.274,CLARK 89146,LAS VEGAS,NV,36.1428,-115.2253,CLARK 89147,LAS VEGAS,NV,36.1126,-115.2796,CLARK 89148,LAS VEGAS,NV,36.0643,-115.2964,CLARK 89149,LAS VEGAS,NV,36.2756,-115.2894,CLARK 89150,LAS VEGAS,NV,36.175,-115.1363,CLARK 89151,LAS VEGAS,NV,36.175,-115.1363,CLARK 89152,LAS VEGAS,NV,36.175,-115.1363,CLARK 89153,LAS VEGAS,NV,36.175,-115.1363,CLARK 89154,LAS VEGAS,NV,36.1065,-115.1372,CLARK 89155,LAS VEGAS,NV,36.1907,-115.1876,CLARK 89156,LAS VEGAS,NV,36.2012,-115.0327,CLARK 89157,LAS VEGAS,NV,36.175,-115.1372,CLARK 89159,LAS VEGAS,NV,36.0717,-115.14,CLARK 89160,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89161,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89162,LAS VEGAS,NV,36.175,-115.136,CLARK 89164,LAS VEGAS,NV,36.175,-115.1363,CLARK 89165,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89166,LAS VEGAS,NV,36.3211,-115.3335,CLARK 89169,LAS VEGAS,NV,36.122458,-115.141483,CLARK 89170,LAS VEGAS,NV,36.1059,-115.1362,CLARK 89173,LAS VEGAS,NV,36.1062,-115.1374,CLARK 89177,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89178,LAS VEGAS,NV,36.0115,-115.2711,CLARK 89179,LAS VEGAS,NV,35.987,-115.246,CLARK 89180,LAS VEGAS,NV,36.1276,-115.2421,CLARK 89183,LAS VEGAS,NV,35.991178,-115.147411,CLARK 89185,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89193,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89195,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89199,LAS VEGAS,NV,36.175,-115.1363,CLARK 89431,SPARKS,NV,39.547254,-119.755588,WASHOE 89432,SPARKS,NV,39.5407,-119.7466,WASHOE 89434,SPARKS,NV,39.550229,-119.717754,WASHOE 89435,SPARKS,NV,39.535,-119.7516,WASHOE 89436,SPARKS,NV,39.626861,-119.708125,WASHOE 89441,SPARKS,NV,39.6652,-119.6958,WASHOE 89501,RENO,NV,39.526812,-119.811275,WASHOE 89502,RENO,NV,39.497239,-119.776395,WASHOE 89503,RENO,NV,39.5354,-119.837409,WASHOE 89504,RENO,NV,39.5297,-119.8127,WASHOE 89505,RENO,NV,39.5297,-119.8127,WASHOE 89506,RENO,NV,39.641168,-119.873505,WASHOE 89507,RENO,NV,39.5385,-119.8179,WASHOE 89508,RENO,NV,39.5296329,-119.8138027,WASHOE 89509,RENO,NV,39.498042,-119.823932,WASHOE 89510,RENO,NV,39.769919,-119.602678,WASHOE 89511,RENO,NV,39.41512,-119.766846,WASHOE 89512,RENO,NV,39.548312,-119.795699,WASHOE 89513,RENO,NV,39.5297,-119.8127,WASHOE 89515,RENO,NV,39.5132,-119.7806,WASHOE 89519,RENO,NV,39.4857,-119.8522,WASHOE 89520,RENO,NV,39.5132,-119.7806,WASHOE 89521,RENO,NV,39.455833,-119.771667,WASHOE 89523,RENO,NV,39.524917,-119.903065,WASHOE 89533,RENO,NV,39.5297,-119.8127,WASHOE 89555,RENO,NV,39.5297,-119.8129,WASHOE 89557,RENO,NV,39.5452,-119.8201,WASHOE 89570,RENO,NV,39.5297,-119.8127,WASHOE 89595,RENO,NV,39.5132,-119.7806,WASHOE 89599,RENO,NV,39.5297,-119.8127,WASHOE 89701,CARSON CITY,NV,39.150746,-119.745904,CARSON CITY 89702,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89703,CARSON CITY,NV,39.17036,-119.778242,CARSON CITY 89705,CARSON CITY,NV,39.089147,-119.782899,DOUGLAS 89706,CARSON CITY,NV,39.210876,-119.742912,CARSON CITY 89711,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89712,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89713,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89714,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89721,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 90001,LOS ANGELES,CA,33.973093,-118.247896,LOS ANGELES 90002,LOS ANGELES,CA,33.94969,-118.246213,LOS ANGELES 90003,LOS ANGELES,CA,33.965335,-118.272739,LOS ANGELES 90004,LOS ANGELES,CA,34.076163,-118.302863,LOS ANGELES 90005,LOS ANGELES,CA,34.058508,-118.301197,LOS ANGELES 90006,LOS ANGELES,CA,34.049323,-118.291687,LOS ANGELES 90007,LOS ANGELES,CA,34.029442,-118.287095,LOS ANGELES 90008,LOS ANGELES,CA,34.011643,-118.341123,LOS ANGELES 90009,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90010,LOS ANGELES,CA,34.060633,-118.302664,LOS ANGELES 90011,LOS ANGELES,CA,34.007856,-118.258189,LOS ANGELES 90012,LOS ANGELES,CA,34.061396,-118.238479,LOS ANGELES 90013,LOS ANGELES,CA,34.044841,-118.243366,LOS ANGELES 90014,LOS ANGELES,CA,34.044272,-118.250937,LOS ANGELES 90015,LOS ANGELES,CA,34.043439,-118.271613,LOS ANGELES 90016,LOS ANGELES,CA,34.029826,-118.352787,LOS ANGELES 90017,LOS ANGELES,CA,34.055864,-118.266582,LOS ANGELES 90018,LOS ANGELES,CA,34.028972,-118.315173,LOS ANGELES 90019,LOS ANGELES,CA,34.048158,-118.33426,LOS ANGELES 90020,LOS ANGELES,CA,34.066535,-118.302211,LOS ANGELES 90021,LOS ANGELES,CA,34.033303,-118.244698,LOS ANGELES 90022,LOS ANGELES,CA,34.023638,-118.155319,LOS ANGELES 90023,LOS ANGELES,CA,34.024478,-118.197498,LOS ANGELES 90024,LOS ANGELES,CA,34.063691,-118.440796,LOS ANGELES 90025,LOS ANGELES,CA,34.044662,-118.448717,LOS ANGELES 90026,LOS ANGELES,CA,34.076629,-118.264641,LOS ANGELES 90027,LOS ANGELES,CA,34.104031,-118.292516,LOS ANGELES 90028,LOS ANGELES,CA,34.100549,-118.325363,LOS ANGELES 90029,LOS ANGELES,CA,34.089982,-118.294393,LOS ANGELES 90030,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90031,LOS ANGELES,CA,34.078349,-118.211279,LOS ANGELES 90032,LOS ANGELES,CA,34.081785,-118.175323,LOS ANGELES 90033,LOS ANGELES,CA,34.048676,-118.208442,LOS ANGELES 90034,LOS ANGELES,CA,34.028977,-118.400482,LOS ANGELES 90035,LOS ANGELES,CA,34.053096,-118.380615,LOS ANGELES 90036,LOS ANGELES,CA,34.069888,-118.349175,LOS ANGELES 90037,LOS ANGELES,CA,34.002982,-118.286284,LOS ANGELES 90038,LOS ANGELES,CA,34.089769,-118.321489,LOS ANGELES 90039,LOS ANGELES,CA,34.112089,-118.259428,LOS ANGELES 90040,LOS ANGELES,CA,33.99471,-118.151352,LOS ANGELES 90041,LOS ANGELES,CA,34.133932,-118.208205,LOS ANGELES 90042,LOS ANGELES,CA,34.114527,-118.192902,LOS ANGELES 90043,LOS ANGELES,CA,33.987099,-118.33211,LOS ANGELES 90044,LOS ANGELES,CA,33.955089,-118.290119,LOS ANGELES 90045,LOS ANGELES,CA,33.963075,-118.394128,LOS ANGELES 90046,LOS ANGELES,CA,34.09743,-118.357979,LOS ANGELES 90047,LOS ANGELES,CA,33.956896,-118.307304,LOS ANGELES 90048,LOS ANGELES,CA,34.073656,-118.371969,LOS ANGELES 90049,LOS ANGELES,CA,34.066,-118.473967,LOS ANGELES 90050,LOS ANGELES,CA,34.1208,-118.2033,LOS ANGELES 90051,LOS ANGELES,CA,33.948889,-118.247778,LOS ANGELES 90052,LOS ANGELES,CA,33.9818,-118.2579,LOS ANGELES 90053,LOS ANGELES,CA,34.0535,-118.2397,LOS ANGELES 90054,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90055,LOS ANGELES,CA,34.0449,-118.2579,LOS ANGELES 90056,LOS ANGELES,CA,33.985329,-118.370703,LOS ANGELES 90057,LOS ANGELES,CA,34.062172,-118.276262,LOS ANGELES 90058,LOS ANGELES,CA,33.997344,-118.235365,LOS ANGELES 90059,LOS ANGELES,CA,33.929331,-118.24628,LOS ANGELES 90060,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90061,LOS ANGELES,CA,33.924493,-118.271638,LOS ANGELES 90062,LOS ANGELES,CA,34.00324,-118.307277,LOS ANGELES 90063,LOS ANGELES,CA,34.044017,-118.185432,LOS ANGELES 90064,LOS ANGELES,CA,34.035279,-118.425911,LOS ANGELES 90065,LOS ANGELES,CA,34.107307,-118.226637,LOS ANGELES 90066,LOS ANGELES,CA,34.002956,-118.429769,LOS ANGELES 90067,LOS ANGELES,CA,34.055146,-118.409479,LOS ANGELES 90068,LOS ANGELES,CA,34.115625,-118.330476,LOS ANGELES 90070,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90071,LOS ANGELES,CA,34.052043,-118.257127,LOS ANGELES 90072,LOS ANGELES,CA,34.0961,-118.3086,LOS ANGELES 90073,LOS ANGELES,CA,34.056667,-118.456944,LOS ANGELES 90074,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90075,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90076,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90077,LOS ANGELES,CA,34.111245,-118.450155,LOS ANGELES 90078,LOS ANGELES,CA,34.0996,-118.3261,LOS ANGELES 90079,LOS ANGELES,CA,34.0522,-118.2427,LOS ANGELES 90080,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90081,LOS ANGELES,CA,33.9542,-118.3972,LOS ANGELES 90082,LOS ANGELES,CA,34.0008,-118.2772,LOS ANGELES 90083,LOS ANGELES,CA,33.9537,-118.398,LOS ANGELES 90084,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90086,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90087,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90088,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90089,LOS ANGELES,CA,34.0204,-118.2874,LOS ANGELES 90091,LOS ANGELES,CA,33.992222,-118.150278,LOS ANGELES 90093,LOS ANGELES,CA,34.0967,-118.3346,LOS ANGELES 90094,LOS ANGELES,CA,33.9732,-118.4231,LOS ANGELES 90095,LOS ANGELES,CA,34.070833,-118.444167,LOS ANGELES 90096,LOS ANGELES,CA,33.9681,-118.1696,LOS ANGELES 90099,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90101,LOS ANGELES,CA,33.974,-118.2488,LOS ANGELES 90102,LOS ANGELES,CA,34.0184,-118.1987,LOS ANGELES 90103,LOS ANGELES,CA,34.0184,-118.1996,LOS ANGELES 90189,LOS ANGELES,CA,34.0583,-118.2476,LOS ANGELES 90301,INGLEWOOD,CA,33.955048,-118.355575,LOS ANGELES 90302,INGLEWOOD,CA,33.974496,-118.354805,LOS ANGELES 90303,INGLEWOOD,CA,33.937691,-118.332058,LOS ANGELES 90304,INGLEWOOD,CA,33.938514,-118.355562,LOS ANGELES 90305,INGLEWOOD,CA,33.958304,-118.32585,LOS ANGELES 90306,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90307,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90308,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90309,INGLEWOOD,CA,33.9726,-118.3567,LOS ANGELES 90310,INGLEWOOD,CA,33.9306,-118.3218,LOS ANGELES 90311,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90312,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90313,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90397,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90398,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90401,SANTA MONICA,CA,34.017628,-118.490708,LOS ANGELES 90402,SANTA MONICA,CA,34.034875,-118.503011,LOS ANGELES 90403,SANTA MONICA,CA,34.028658,-118.49241,LOS ANGELES 90404,SANTA MONICA,CA,34.026828,-118.4733,LOS ANGELES 90405,SANTA MONICA,CA,34.01001,-118.471708,LOS ANGELES 90406,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90407,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90408,SANTA MONICA,CA,34.0259,-118.489,LOS ANGELES 90409,SANTA MONICA,CA,34.0003,-118.482,LOS ANGELES 90410,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90411,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90501,TORRANCE,CA,33.826817,-118.31183,LOS ANGELES 90502,TORRANCE,CA,33.828555,-118.292039,LOS ANGELES 90503,TORRANCE,CA,33.839709,-118.354236,LOS ANGELES 90504,TORRANCE,CA,33.870815,-118.329517,LOS ANGELES 90505,TORRANCE,CA,33.810635,-118.350733,LOS ANGELES 90506,TORRANCE,CA,33.885367,-118.329543,LOS ANGELES 90507,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90508,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90509,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90510,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90601,WHITTIER,CA,34.001119,-118.037139,LOS ANGELES 90602,WHITTIER,CA,33.96931,-118.033703,LOS ANGELES 90603,WHITTIER,CA,33.943199,-117.992685,LOS ANGELES 90604,WHITTIER,CA,33.929931,-118.012075,LOS ANGELES 90605,WHITTIER,CA,33.941338,-118.035568,LOS ANGELES 90606,WHITTIER,CA,33.977019,-118.065639,LOS ANGELES 90607,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90608,WHITTIER,CA,33.9804,-118.0342,LOS ANGELES 90609,WHITTIER,CA,33.9791,-118.0319,LOS ANGELES 90610,WHITTIER,CA,33.9686,-118.0702,LOS ANGELES 90612,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90801,LONG BEACH,CA,33.7705,-118.1885,LOS ANGELES 90802,LONG BEACH,CA,33.770553,-118.182025,LOS ANGELES 90803,LONG BEACH,CA,33.761932,-118.134073,LOS ANGELES 90804,LONG BEACH,CA,33.782993,-118.155187,LOS ANGELES 90805,LONG BEACH,CA,33.863457,-118.180102,LOS ANGELES 90806,LONG BEACH,CA,33.799319,-118.187443,LOS ANGELES 90807,LONG BEACH,CA,33.830712,-118.18092,LOS ANGELES 90808,LONG BEACH,CA,33.824145,-118.110299,LOS ANGELES 90809,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90810,LONG BEACH,CA,33.810985,-118.215006,LOS ANGELES 90813,LONG BEACH,CA,33.78202,-118.183488,LOS ANGELES 90814,LONG BEACH,CA,33.771576,-118.147988,LOS ANGELES 90815,LONG BEACH,CA,33.793908,-118.119249,LOS ANGELES 90822,LONG BEACH,CA,33.744415,-118.239257,LOS ANGELES 90831,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90832,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90833,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90834,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90835,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90840,LONG BEACH,CA,33.7828,-118.1153,LOS ANGELES 90842,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90844,LONG BEACH,CA,33.7744,-118.1923,LOS ANGELES 90845,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90846,LONG BEACH,CA,33.8281,-118.1427,LOS ANGELES 90847,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90848,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90853,LONG BEACH,CA,33.759,-118.1306,LOS ANGELES 90888,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90899,LONG BEACH,CA,33.7668,-118.1886,LOS ANGELES 91101,PASADENA,CA,34.146762,-118.139119,LOS ANGELES 91102,PASADENA,CA,34.146,-118.1438,LOS ANGELES 91103,PASADENA,CA,34.166906,-118.155119,LOS ANGELES 91104,PASADENA,CA,34.167776,-118.12609,LOS ANGELES 91105,PASADENA,CA,34.135455,-118.163577,LOS ANGELES 91106,PASADENA,CA,34.143527,-118.126647,LOS ANGELES 91107,PASADENA,CA,34.150997,-118.088905,LOS ANGELES 91109,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91110,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91114,PASADENA,CA,34.1692,-118.1302,LOS ANGELES 91115,PASADENA,CA,34.1359,-118.1532,LOS ANGELES 91116,PASADENA,CA,34.1461,-118.1295,LOS ANGELES 91117,PASADENA,CA,34.1463,-118.0956,LOS ANGELES 91121,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91123,PASADENA,CA,34.1445,-118.1566,LOS ANGELES 91124,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91125,PASADENA,CA,34.1359,-118.1262,LOS ANGELES 91126,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91129,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91131,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91182,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91184,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91185,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91188,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91189,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91191,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91199,PASADENA,CA,34.1668,-118.1216,LOS ANGELES 91201,GLENDALE,CA,34.171606,-118.289892,LOS ANGELES 91202,GLENDALE,CA,34.165235,-118.265649,LOS ANGELES 91203,GLENDALE,CA,34.151718,-118.263614,LOS ANGELES 91204,GLENDALE,CA,34.137871,-118.259947,LOS ANGELES 91205,GLENDALE,CA,34.137798,-118.24245,LOS ANGELES 91206,GLENDALE,CA,34.155605,-118.232217,LOS ANGELES 91207,GLENDALE,CA,34.164856,-118.245086,LOS ANGELES 91208,GLENDALE,CA,34.19212,-118.234966,LOS ANGELES 91209,GLENDALE,CA,34.1463,-118.2515,LOS ANGELES 91210,GLENDALE,CA,34.1441,-118.2593,LOS ANGELES 91221,GLENDALE,CA,34.1647,-118.2885,LOS ANGELES 91222,GLENDALE,CA,34.16,-118.2635,LOS ANGELES 91225,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91226,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91324,NORTHRIDGE,CA,34.236743,-118.546595,LOS ANGELES 91325,NORTHRIDGE,CA,34.235332,-118.51884,LOS ANGELES 91327,NORTHRIDGE,CA,34.274167,-118.541111,LOS ANGELES 91328,NORTHRIDGE,CA,34.2432,-118.535,LOS ANGELES 91329,NORTHRIDGE,CA,34.2224,-118.5024,LOS ANGELES 91330,NORTHRIDGE,CA,34.23805,-118.528634,LOS ANGELES 91388,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91401,VAN NUYS,CA,34.180152,-118.432375,LOS ANGELES 91404,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91405,VAN NUYS,CA,34.200068,-118.445636,LOS ANGELES 91406,VAN NUYS,CA,34.200568,-118.486821,LOS ANGELES 91407,VAN NUYS,CA,34.194,-118.4489,LOS ANGELES 91408,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91409,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91410,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91411,VAN NUYS,CA,34.178133,-118.457396,LOS ANGELES 91470,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91482,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91496,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91497,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91499,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91501,BURBANK,CA,34.186238,-118.300898,LOS ANGELES 91502,BURBANK,CA,34.174487,-118.305912,LOS ANGELES 91503,BURBANK,CA,34.1804,-118.3084,LOS ANGELES 91504,BURBANK,CA,34.200097,-118.326401,LOS ANGELES 91505,BURBANK,CA,34.168998,-118.344175,LOS ANGELES 91506,BURBANK,CA,34.171746,-118.323148,LOS ANGELES 91507,BURBANK,CA,34.1672,-118.3472,LOS ANGELES 91508,BURBANK,CA,34.1914,-118.3259,LOS ANGELES 91510,BURBANK,CA,34.187,-118.348,LOS ANGELES 91521,BURBANK,CA,34.1559,-118.3268,LOS ANGELES 91522,BURBANK,CA,34.1491,-118.3427,LOS ANGELES 91523,BURBANK,CA,34.1563,-118.3333,LOS ANGELES 91526,BURBANK,CA,34.1745,-118.3462,LOS ANGELES 91601,NORTH HOLLYWOOD,CA,34.16867,-118.371274,LOS ANGELES 91602,NORTH HOLLYWOOD,CA,34.151095,-118.367606,LOS ANGELES 91603,NORTH HOLLYWOOD,CA,34.1681,-118.3778,LOS ANGELES 91605,NORTH HOLLYWOOD,CA,34.205747,-118.400069,LOS ANGELES 91606,NORTH HOLLYWOOD,CA,34.187182,-118.386538,LOS ANGELES 91609,NORTH HOLLYWOOD,CA,34.1891,-118.387,LOS ANGELES 91611,NORTH HOLLYWOOD,CA,34.1867,-118.3976,LOS ANGELES 91612,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91615,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91616,NORTH HOLLYWOOD,CA,34.184,-118.3964,LOS ANGELES 91618,NORTH HOLLYWOOD,CA,34.1388,-118.3525,LOS ANGELES 91766,POMONA,CA,34.043268,-117.752086,LOS ANGELES 91767,POMONA,CA,34.081187,-117.736171,LOS ANGELES 91768,POMONA,CA,34.066168,-117.776312,LOS ANGELES 91769,POMONA,CA,34.0601,-117.7575,LOS ANGELES 91797,POMONA,CA,34.0852,-117.96,LOS ANGELES 91799,POMONA,CA,34.0552,-117.7513,LOS ANGELES 91801,ALHAMBRA,CA,34.091436,-118.129288,LOS ANGELES 91802,ALHAMBRA,CA,34.0931,-118.1257,LOS ANGELES 91803,ALHAMBRA,CA,34.074514,-118.143354,LOS ANGELES 91804,ALHAMBRA,CA,34.0952,-118.1261,LOS ANGELES 91841,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91896,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91899,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91909,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91910,CHULA VISTA,CA,32.637139,-117.06756,SAN DIEGO 91911,CHULA VISTA,CA,32.608428,-117.056459,SAN DIEGO 91912,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91913,CHULA VISTA,CA,32.651296,-116.985237,SAN DIEGO 91914,CHULA VISTA,CA,32.65875,-116.96517,SAN DIEGO 91915,CHULA VISTA,CA,32.631513,-116.940807,SAN DIEGO 91921,CHULA VISTA,CA,32.6248,-117.0142,SAN DIEGO 92008,CARLSBAD,CA,33.160241,-117.324998,SAN DIEGO 92009,CARLSBAD,CA,33.095407,-117.261888,SAN DIEGO 92010,CARLSBAD,CA,33.156116,-117.280831,SAN DIEGO 92011,CARLSBAD,CA,33.107933,-117.288181,SAN DIEGO 92013,CARLSBAD,CA,33.0986,-117.2788,SAN DIEGO 92018,CARLSBAD,CA,33.1626,-117.3489,SAN DIEGO 92025,ESCONDIDO,CA,33.110117,-117.069987,SAN DIEGO 92026,ESCONDIDO,CA,33.160513,-117.097808,SAN DIEGO 92027,ESCONDIDO,CA,33.138824,-117.051966,SAN DIEGO 92029,ESCONDIDO,CA,33.089497,-117.112793,SAN DIEGO 92030,ESCONDIDO,CA,33.1362,-117.0543,SAN DIEGO 92033,ESCONDIDO,CA,33.1236,-117.086,SAN DIEGO 92046,ESCONDIDO,CA,33.1249,-117.1016,SAN DIEGO 92049,OCEANSIDE,CA,33.1951,-117.3776,SAN DIEGO 92051,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92052,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92054,OCEANSIDE,CA,33.20723,-117.357294,SAN DIEGO 92056,OCEANSIDE,CA,33.196784,-117.283089,SAN DIEGO 92057,OCEANSIDE,CA,33.240654,-117.302484,SAN DIEGO 92058,OCEANSIDE,CA,33.1958696,-117.3794834,SAN DIEGO 92101,SAN DIEGO,CA,32.71852,-117.159316,SAN DIEGO 92102,SAN DIEGO,CA,32.713893,-117.121858,SAN DIEGO 92103,SAN DIEGO,CA,32.746638,-117.163552,SAN DIEGO 92104,SAN DIEGO,CA,32.745425,-117.127189,SAN DIEGO 92105,SAN DIEGO,CA,32.7423,-117.094681,SAN DIEGO 92106,SAN DIEGO,CA,32.72725,-117.226829,SAN DIEGO 92107,SAN DIEGO,CA,32.742531,-117.243307,SAN DIEGO 92108,SAN DIEGO,CA,32.778327,-117.133525,SAN DIEGO 92109,SAN DIEGO,CA,32.796923,-117.240534,SAN DIEGO 92110,SAN DIEGO,CA,32.763476,-117.202847,SAN DIEGO 92111,SAN DIEGO,CA,32.797185,-117.17081,SAN DIEGO 92112,SAN DIEGO,CA,32.7246,-117.1648,SAN DIEGO 92113,SAN DIEGO,CA,32.697047,-117.115257,SAN DIEGO 92114,SAN DIEGO,CA,32.705923,-117.05235,SAN DIEGO 92115,SAN DIEGO,CA,32.760742,-117.072056,SAN DIEGO 92116,SAN DIEGO,CA,32.762446,-117.124166,SAN DIEGO 92117,SAN DIEGO,CA,32.823948,-117.196536,SAN DIEGO 92119,SAN DIEGO,CA,32.803587,-117.026065,SAN DIEGO 92120,SAN DIEGO,CA,32.79581,-117.070708,SAN DIEGO 92121,SAN DIEGO,CA,32.891894,-117.203503,SAN DIEGO 92122,SAN DIEGO,CA,32.857736,-117.211507,SAN DIEGO 92123,SAN DIEGO,CA,32.797297,-117.139248,SAN DIEGO 92124,SAN DIEGO,CA,32.820113,-117.098613,SAN DIEGO 92126,SAN DIEGO,CA,32.916136,-117.140227,SAN DIEGO 92127,SAN DIEGO,CA,33.027854,-117.085596,SAN DIEGO 92128,SAN DIEGO,CA,33.00666,-117.068982,SAN DIEGO 92129,SAN DIEGO,CA,32.965185,-117.121308,SAN DIEGO 92130,SAN DIEGO,CA,32.955533,-117.225201,SAN DIEGO 92131,SAN DIEGO,CA,32.912343,-117.089758,SAN DIEGO 92132,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92133,SAN DIEGO,CA,32.7256,-117.2177,SAN DIEGO 92134,SAN DIEGO,CA,32.725,-117.1465,SAN DIEGO 92135,SAN DIEGO,CA,32.702482,-117.19202,SAN DIEGO 92136,SAN DIEGO,CA,32.681585,-117.124678,SAN DIEGO 92137,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92138,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92139,SAN DIEGO,CA,32.680612,-117.047375,SAN DIEGO 92140,SAN DIEGO,CA,32.7399,-117.198,SAN DIEGO 92142,SAN DIEGO,CA,32.8398,-117.0973,SAN DIEGO 92145,SAN DIEGO,CA,32.870365,-117.116518,SAN DIEGO 92147,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92149,SAN DIEGO,CA,32.6759,-117.0643,SAN DIEGO 92150,SAN DIEGO,CA,32.9847,-117.0786,SAN DIEGO 92152,SAN DIEGO,CA,32.7023,-117.2448,SAN DIEGO 92153,SAN DIEGO,CA,32.5656,-117.0805,SAN DIEGO 92154,SAN DIEGO,CA,32.575276,-117.070725,SAN DIEGO 92155,SAN DIEGO,CA,32.676144,-117.160335,SAN DIEGO 92158,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92159,SAN DIEGO,CA,32.8015,-117.0136,SAN DIEGO 92160,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92161,SAN DIEGO,CA,32.8717,-117.2319,SAN DIEGO 92162,SAN DIEGO,CA,32.7171,-117.1354,SAN DIEGO 92163,SAN DIEGO,CA,32.7476,-117.1665,SAN DIEGO 92164,SAN DIEGO,CA,32.7474,-117.1273,SAN DIEGO 92165,SAN DIEGO,CA,32.7496,-117.1039,SAN DIEGO 92166,SAN DIEGO,CA,32.7211,-117.2305,SAN DIEGO 92167,SAN DIEGO,CA,32.7458,-117.2468,SAN DIEGO 92168,SAN DIEGO,CA,32.7654,-117.1546,SAN DIEGO 92169,SAN DIEGO,CA,32.799,-117.2518,SAN DIEGO 92170,SAN DIEGO,CA,32.697,-117.1335,SAN DIEGO 92171,SAN DIEGO,CA,32.783,-117.1702,SAN DIEGO 92172,SAN DIEGO,CA,32.9627,-117.1329,SAN DIEGO 92174,SAN DIEGO,CA,32.7063,-117.0844,SAN DIEGO 92175,SAN DIEGO,CA,32.7651,-117.0598,SAN DIEGO 92176,SAN DIEGO,CA,32.7636,-117.1225,SAN DIEGO 92177,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92179,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92182,SAN DIEGO,CA,32.7768,-117.0702,SAN DIEGO 92184,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92186,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92187,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92190,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92191,SAN DIEGO,CA,32.9025,-117.218,SAN DIEGO 92192,SAN DIEGO,CA,32.8508,-117.2133,SAN DIEGO 92193,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92194,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92195,SAN DIEGO,CA,32.7442,-117.0525,SAN DIEGO 92196,SAN DIEGO,CA,32.9163,-117.1292,SAN DIEGO 92197,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92198,SAN DIEGO,CA,33.0222,-117.0739,SAN DIEGO 92199,SAN DIEGO,CA,32.9954,-117.0722,SAN DIEGO 92401,SAN BERNARDINO,CA,34.110521,-117.289753,SAN BERNARDINO 92402,SAN BERNARDINO,CA,34.1085,-117.2904,SAN BERNARDINO 92403,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92404,SAN BERNARDINO,CA,34.142577,-117.260572,SAN BERNARDINO 92405,SAN BERNARDINO,CA,34.144101,-117.310765,SAN BERNARDINO 92406,SAN BERNARDINO,CA,34.1351,-117.2891,SAN BERNARDINO 92407,SAN BERNARDINO,CA,34.20928,-117.293697,SAN BERNARDINO 92408,SAN BERNARDINO,CA,34.083127,-117.271059,SAN BERNARDINO 92410,SAN BERNARDINO,CA,34.107729,-117.296789,SAN BERNARDINO 92411,SAN BERNARDINO,CA,34.121414,-117.317158,SAN BERNARDINO 92412,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92413,SAN BERNARDINO,CA,34.141,-117.2504,SAN BERNARDINO 92414,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92415,SAN BERNARDINO,CA,34.1083,-117.2862,SAN BERNARDINO 92418,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92423,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92424,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92427,SAN BERNARDINO,CA,34.1982,-117.3405,SAN BERNARDINO 92501,RIVERSIDE,CA,33.9924,-117.369421,RIVERSIDE 92502,RIVERSIDE,CA,33.9805,-117.3727,RIVERSIDE 92503,RIVERSIDE,CA,33.920808,-117.458862,RIVERSIDE 92504,RIVERSIDE,CA,33.931458,-117.411948,RIVERSIDE 92505,RIVERSIDE,CA,33.922769,-117.486687,RIVERSIDE 92506,RIVERSIDE,CA,33.945485,-117.375696,RIVERSIDE 92507,RIVERSIDE,CA,33.976086,-117.338874,RIVERSIDE 92508,RIVERSIDE,CA,33.889676,-117.304264,RIVERSIDE 92509,RIVERSIDE,CA,33.997355,-117.444896,RIVERSIDE 92513,RIVERSIDE,CA,33.9151,-117.4626,RIVERSIDE 92514,RIVERSIDE,CA,33.946,-117.415,RIVERSIDE 92515,RIVERSIDE,CA,33.9187,-117.4887,RIVERSIDE 92516,RIVERSIDE,CA,33.9547,-117.3936,RIVERSIDE 92517,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92519,RIVERSIDE,CA,33.9957,-117.4128,RIVERSIDE 92521,RIVERSIDE,CA,33.9693,-117.3332,RIVERSIDE 92522,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92551,MORENO VALLEY,CA,33.8858,-117.2211,RIVERSIDE 92552,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92553,MORENO VALLEY,CA,33.915719,-117.235066,RIVERSIDE 92554,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92555,MORENO VALLEY,CA,33.937659,-117.185105,RIVERSIDE 92556,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92557,MORENO VALLEY,CA,33.955257,-117.245682,RIVERSIDE 92602,IRVINE,CA,33.7357,-117.7672,ORANGE 92603,IRVINE,CA,33.6345,-117.8022,ORANGE 92604,IRVINE,CA,33.6882,-117.7888,ORANGE 92605,HUNTINGTON BEACH,CA,33.7152,-118.0088,ORANGE 92606,IRVINE,CA,33.6984,-117.807,ORANGE 92612,IRVINE,CA,33.6611,-117.8271,ORANGE 92614,IRVINE,CA,33.6791,-117.8285,ORANGE 92615,HUNTINGTON BEACH,CA,33.6574,-117.968,ORANGE 92616,IRVINE,CA,33.6699,-117.7646,ORANGE 92617,IRVINE,CA,33.6422,-117.8459,ORANGE 92618,IRVINE,CA,33.6671,-117.7415,ORANGE 92619,IRVINE,CA,33.6699,-117.7646,ORANGE 92620,IRVINE,CA,33.7113,-117.762,ORANGE 92623,IRVINE,CA,33.6699,-117.7646,ORANGE 92646,HUNTINGTON BEACH,CA,33.668448,-117.967771,ORANGE 92647,HUNTINGTON BEACH,CA,33.721018,-118.003035,ORANGE 92648,HUNTINGTON BEACH,CA,33.674577,-117.999012,ORANGE 92649,HUNTINGTON BEACH,CA,33.719111,-118.045142,ORANGE 92658,NEWPORT BEACH,CA,33.6398,-117.8643,ORANGE 92659,NEWPORT BEACH,CA,33.6208,-117.923,ORANGE 92660,NEWPORT BEACH,CA,33.630027,-117.8757,ORANGE 92661,NEWPORT BEACH,CA,33.604429,-117.906237,ORANGE 92662,NEWPORT BEACH,CA,33.606459,-117.891732,ORANGE 92663,NEWPORT BEACH,CA,33.623084,-117.92788,ORANGE 92697,IRVINE,CA,33.650833,-117.825833,ORANGE 92701,SANTA ANA,CA,33.75016,-117.857665,ORANGE 92702,SANTA ANA,CA,33.75,-117.8665,ORANGE 92703,SANTA ANA,CA,33.746613,-117.899589,ORANGE 92704,SANTA ANA,CA,33.726513,-117.904683,ORANGE 92705,SANTA ANA,CA,33.74866,-117.768902,ORANGE 92706,SANTA ANA,CA,33.764434,-117.881791,ORANGE 92707,SANTA ANA,CA,33.715938,-117.870346,ORANGE 92709,IRVINE,CA,33.681287,-117.715018,ORANGE 92710,IRVINE,CA,33.720556,-117.9075,ORANGE 92711,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92712,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92725,SANTA ANA,CA,33.7484,-117.8593,ORANGE 92735,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92799,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92801,ANAHEIM,CA,33.842679,-117.954035,ORANGE 92802,ANAHEIM,CA,33.806909,-117.92219,ORANGE 92803,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92804,ANAHEIM,CA,33.81908,-117.974985,ORANGE 92805,ANAHEIM,CA,33.835332,-117.906263,ORANGE 92806,ANAHEIM,CA,33.837344,-117.875928,ORANGE 92807,ANAHEIM,CA,33.851583,-117.787657,ORANGE 92808,ANAHEIM,CA,33.857569,-117.748445,ORANGE 92809,ANAHEIM,CA,33.8444,-117.9519,ORANGE 92812,ANAHEIM,CA,33.8178,-117.9272,ORANGE 92814,ANAHEIM,CA,33.8177,-117.9604,ORANGE 92815,ANAHEIM,CA,33.8333,-117.9126,ORANGE 92816,ANAHEIM,CA,33.8391,-117.8832,ORANGE 92817,ANAHEIM,CA,33.852,-117.7924,ORANGE 92825,ANAHEIM,CA,33.8352,-117.9136,ORANGE 92831,FULLERTON,CA,33.8796,-117.8951,ORANGE 92832,FULLERTON,CA,33.8685,-117.9294,ORANGE 92833,FULLERTON,CA,33.8778,-117.9621,ORANGE 92834,FULLERTON,CA,33.8784,-117.8964,ORANGE 92835,FULLERTON,CA,33.9022,-117.9065,ORANGE 92836,FULLERTON,CA,33.8784,-117.8964,ORANGE 92837,FULLERTON,CA,33.8697,-117.963,ORANGE 92838,FULLERTON,CA,33.8784,-117.8964,ORANGE 92840,GARDEN GROVE,CA,33.7857,-117.9318,ORANGE 92841,GARDEN GROVE,CA,33.7869,-117.9788,ORANGE 92842,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92843,GARDEN GROVE,CA,33.7652,-117.9313,ORANGE 92844,GARDEN GROVE,CA,33.7662,-117.9717,ORANGE 92845,GARDEN GROVE,CA,33.7828,-118.0266,ORANGE 92846,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92850,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92856,ORANGE,CA,33.7877,-117.8755,ORANGE 92857,ORANGE,CA,33.7877,-117.8755,ORANGE 92859,ORANGE,CA,33.7877,-117.8755,ORANGE 92862,ORANGE,CA,33.813,-117.7143,ORANGE 92863,ORANGE,CA,33.7877,-117.8755,ORANGE 92864,ORANGE,CA,33.8146,-117.8271,ORANGE 92865,ORANGE,CA,33.8299,-117.8468,ORANGE 92866,ORANGE,CA,33.7831,-117.8435,ORANGE 92867,ORANGE,CA,33.814,-117.8252,ORANGE 92868,ORANGE,CA,33.7861,-117.8799,ORANGE 92869,ORANGE,CA,33.7936,-117.7932,ORANGE 92877,CORONA,CA,33.8815,-117.6078,RIVERSIDE 92878,CORONA,CA,33.8774,-117.5739,RIVERSIDE 92879,CORONA,CA,33.8812,-117.5391,RIVERSIDE 92880,CORONA,CA,33.9241,-117.5963,RIVERSIDE 92881,CORONA,CA,33.8382,-117.5382,RIVERSIDE 92882,CORONA,CA,33.8643,-117.5942,RIVERSIDE 92883,CORONA,CA,33.771,-117.4823,RIVERSIDE 92899,ANAHEIM,CA,33.8415,-117.9364,ORANGE 93001,VENTURA,CA,34.290531,-119.28882,VENTURA 93002,VENTURA,CA,34.3557,-119.3011,VENTURA 93003,VENTURA,CA,34.270568,-119.2214,VENTURA 93004,VENTURA,CA,34.278091,-119.168727,VENTURA 93005,VENTURA,CA,34.2509,-119.2058,VENTURA 93006,VENTURA,CA,34.2783,-119.2922,VENTURA 93007,VENTURA,CA,34.2918,-119.1569,VENTURA 93009,VENTURA,CA,34.27,-119.2123,VENTURA 93030,OXNARD,CA,34.214142,-119.174952,VENTURA 93031,OXNARD,CA,34.2199,-119.18,VENTURA 93032,OXNARD,CA,34.1981,-119.1777,VENTURA 93033,OXNARD,CA,34.168505,-119.171732,VENTURA 93034,OXNARD,CA,34.176,-119.1765,VENTURA 93035,OXNARD,CA,34.182177,-119.215975,VENTURA 93036,OXNARD,CA,34.2301,-119.1771,VENTURA 93062,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93063,SIMI VALLEY,CA,34.279202,-118.699229,VENTURA 93065,SIMI VALLEY,CA,34.265589,-118.765349,VENTURA 93093,SIMI VALLEY,CA,34.2718,-118.7123,VENTURA 93094,SIMI VALLEY,CA,34.279,-118.7021,VENTURA 93099,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93101,SANTA BARBARA,CA,34.419668,-119.70782,SANTA BARBARA 93102,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93103,SANTA BARBARA,CA,34.429065,-119.683275,SANTA BARBARA 93105,SANTA BARBARA,CA,34.436915,-119.728538,SANTA BARBARA 93106,SANTA BARBARA,CA,34.4173,-119.8459,SANTA BARBARA 93107,SANTA BARBARA,CA,34.4208,-119.6972,SANTA BARBARA 93108,SANTA BARBARA,CA,34.434258,-119.64255,SANTA BARBARA 93109,SANTA BARBARA,CA,34.403848,-119.7194,SANTA BARBARA 93110,SANTA BARBARA,CA,34.441814,-119.764668,SANTA BARBARA 93111,SANTA BARBARA,CA,34.445262,-119.802509,SANTA BARBARA 93120,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93121,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93130,SANTA BARBARA,CA,34.5283,-119.8192,SANTA BARBARA 93140,SANTA BARBARA,CA,34.4209,-119.6767,SANTA BARBARA 93150,SANTA BARBARA,CA,34.436667,-119.631111,SANTA BARBARA 93160,SANTA BARBARA,CA,34.4348,-119.803,SANTA BARBARA 93190,SANTA BARBARA,CA,34.4234,-119.7037,SANTA BARBARA 93277,VISALIA,CA,36.311379,-119.306471,TULARE 93278,VISALIA,CA,36.3093,-119.3142,TULARE 93279,VISALIA,CA,36.3289,-119.2922,TULARE 93290,VISALIA,CA,36.33,-119.291,TULARE 93291,VISALIA,CA,36.355108,-119.301029,TULARE 93292,VISALIA,CA,36.3469,-119.2483,TULARE 93301,BAKERSFIELD,CA,35.386611,-119.017063,KERN 93302,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93303,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93304,BAKERSFIELD,CA,35.339581,-119.021793,KERN 93305,BAKERSFIELD,CA,35.387772,-118.982042,KERN 93306,BAKERSFIELD,CA,35.386697,-118.939104,KERN 93307,BAKERSFIELD,CA,35.327484,-118.983851,KERN 93308,BAKERSFIELD,CA,35.424395,-119.043319,KERN 93309,BAKERSFIELD,CA,35.33839,-119.062713,KERN 93311,BAKERSFIELD,CA,35.303891,-119.105647,KERN 93312,BAKERSFIELD,CA,35.382082,-119.15014,KERN 93313,BAKERSFIELD,CA,35.297391,-119.050936,KERN 93314,BAKERSFIELD,CA,35.3993,-119.1895,KERN 93380,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93381,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93382,BAKERSFIELD,CA,35.2596,-119.0019,KERN 93383,BAKERSFIELD,CA,35.3329,-119.0859,KERN 93384,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93385,BAKERSFIELD,CA,35.3785,-118.9907,KERN 93386,BAKERSFIELD,CA,35.3764,-118.9537,KERN 93387,BAKERSFIELD,CA,35.2908,-118.9665,KERN 93388,BAKERSFIELD,CA,35.4714,-118.9667,KERN 93389,BAKERSFIELD,CA,35.3538,-119.0615,KERN 93390,BAKERSFIELD,CA,35.3431,-119.0635,KERN 93401,SAN LUIS OBISPO,CA,35.263453,-120.650933,SAN LUIS OBISPO 93403,SAN LUIS OBISPO,CA,35.2827,-120.6586,SAN LUIS OBISPO 93405,SAN LUIS OBISPO,CA,35.290058,-120.681724,SAN LUIS OBISPO 93406,SAN LUIS OBISPO,CA,35.2794,-120.6606,SAN LUIS OBISPO 93407,SAN LUIS OBISPO,CA,35.3011,-120.6607,SAN LUIS OBISPO 93408,SAN LUIS OBISPO,CA,35.2847,-120.6606,SAN LUIS OBISPO 93409,SAN LUIS OBISPO,CA,35.221,-120.6364,SAN LUIS OBISPO 93410,SAN LUIS OBISPO,CA,35.2996,-120.6555,SAN LUIS OBISPO 93534,LANCASTER,CA,34.690888,-118.149129,LOS ANGELES 93535,LANCASTER,CA,34.684751,-118.063245,LOS ANGELES 93536,LANCASTER,CA,34.673619,-118.213336,LOS ANGELES 93539,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93550,PALMDALE,CA,34.571483,-118.061306,LOS ANGELES 93551,PALMDALE,CA,34.601404,-118.181207,LOS ANGELES 93552,PALMDALE,CA,34.5636,-118.0349,LOS ANGELES 93584,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93586,LANCASTER,CA,34.6475,-118.2175,LOS ANGELES 93590,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93591,PALMDALE,CA,34.6042,-117.8506,LOS ANGELES 93599,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93650,FRESNO,CA,36.841107,-119.800359,FRESNO 93701,FRESNO,CA,36.748727,-119.786705,FRESNO 93702,FRESNO,CA,36.739954,-119.753215,FRESNO 93703,FRESNO,CA,36.768445,-119.759401,FRESNO 93704,FRESNO,CA,36.798781,-119.799745,FRESNO 93705,FRESNO,CA,36.786285,-119.828617,FRESNO 93706,FRESNO,CA,36.700589,-119.820408,FRESNO 93707,FRESNO,CA,36.7329,-119.7828,FRESNO 93708,FRESNO,CA,36.7329,-119.7828,FRESNO 93709,FRESNO,CA,36.7329,-119.7828,FRESNO 93710,FRESNO,CA,36.823643,-119.76205,FRESNO 93711,FRESNO,CA,36.830297,-119.831896,FRESNO 93712,FRESNO,CA,36.7329,-119.7828,FRESNO 93714,FRESNO,CA,36.7329,-119.7828,FRESNO 93715,FRESNO,CA,36.7329,-119.7828,FRESNO 93716,FRESNO,CA,36.7329,-119.7828,FRESNO 93717,FRESNO,CA,36.7329,-119.7828,FRESNO 93718,FRESNO,CA,36.7329,-119.7828,FRESNO 93720,FRESNO,CA,36.857944,-119.765522,FRESNO 93721,FRESNO,CA,36.737714,-119.784273,FRESNO 93722,FRESNO,CA,36.791779,-119.880119,FRESNO 93723,FRESNO,CA,36.79,-119.9532,FRESNO 93724,FRESNO,CA,36.7387,-119.8046,FRESNO 93725,FRESNO,CA,36.675312,-119.742477,FRESNO 93726,FRESNO,CA,36.794943,-119.760445,FRESNO 93727,FRESNO,CA,36.752796,-119.706055,FRESNO 93728,FRESNO,CA,36.758095,-119.811314,FRESNO 93729,FRESNO,CA,36.8518,-119.7669,FRESNO 93730,FRESNO,CA,36.8878,-119.7589,FRESNO 93740,FRESNO,CA,36.8142,-119.7461,FRESNO 93741,FRESNO,CA,36.7656,-119.7956,FRESNO 93744,FRESNO,CA,36.7585,-119.7995,FRESNO 93745,FRESNO,CA,36.6275,-119.7378,FRESNO 93747,FRESNO,CA,36.7432,-119.7012,FRESNO 93750,FRESNO,CA,36.7387,-119.8046,FRESNO 93755,FRESNO,CA,36.79,-119.7905,FRESNO 93760,FRESNO,CA,36.7387,-119.8046,FRESNO 93761,FRESNO,CA,36.7387,-119.8046,FRESNO 93764,FRESNO,CA,36.7387,-119.8046,FRESNO 93765,FRESNO,CA,36.8349,-119.8301,FRESNO 93771,FRESNO,CA,36.7387,-119.8046,FRESNO 93772,FRESNO,CA,36.7387,-119.8046,FRESNO 93773,FRESNO,CA,36.7387,-119.8046,FRESNO 93774,FRESNO,CA,36.7387,-119.8046,FRESNO 93775,FRESNO,CA,36.7387,-119.8046,FRESNO 93776,FRESNO,CA,36.7387,-119.8046,FRESNO 93777,FRESNO,CA,36.7387,-119.8046,FRESNO 93778,FRESNO,CA,36.7387,-119.8046,FRESNO 93779,FRESNO,CA,36.7387,-119.8046,FRESNO 93780,FRESNO,CA,36.7387,-119.8046,FRESNO 93784,FRESNO,CA,36.8243,-119.7615,FRESNO 93786,FRESNO,CA,36.6377,-119.8999,FRESNO 93790,FRESNO,CA,36.785,-119.8345,FRESNO 93791,FRESNO,CA,36.785,-119.8345,FRESNO 93792,FRESNO,CA,36.785,-119.8345,FRESNO 93793,FRESNO,CA,36.785,-119.8345,FRESNO 93794,FRESNO,CA,36.785,-119.8345,FRESNO 93844,FRESNO,CA,36.7387,-119.8046,FRESNO 93888,FRESNO,CA,36.7387,-119.8046,FRESNO 93901,SALINAS,CA,36.667693,-121.659589,MONTEREY 93902,SALINAS,CA,36.7758,-121.6562,MONTEREY 93905,SALINAS,CA,36.681143,-121.617606,MONTEREY 93906,SALINAS,CA,36.710339,-121.643805,MONTEREY 93907,SALINAS,CA,36.765385,-121.665588,MONTEREY 93908,SALINAS,CA,36.601122,-121.672861,MONTEREY 93912,SALINAS,CA,36.6964,-121.6688,MONTEREY 93915,SALINAS,CA,36.6665,-121.6269,MONTEREY 94035,MOUNTAIN VIEW,CA,37.41001,-122.051944,SANTA CLARA 94039,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94040,MOUNTAIN VIEW,CA,37.385532,-122.087983,SANTA CLARA 94041,MOUNTAIN VIEW,CA,37.389347,-122.078341,SANTA CLARA 94042,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94043,MOUNTAIN VIEW,CA,37.405567,-122.077468,SANTA CLARA 94101,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94102,SAN FRANCISCO,CA,37.781334,-122.416728,SAN FRANCISCO 94103,SAN FRANCISCO,CA,37.77254,-122.414664,SAN FRANCISCO 94104,SAN FRANCISCO,CA,37.791487,-122.401826,SAN FRANCISCO 94105,SAN FRANCISCO,CA,37.786427,-122.389229,SAN FRANCISCO 94106,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94107,SAN FRANCISCO,CA,37.762147,-122.397099,SAN FRANCISCO 94108,SAN FRANCISCO,CA,37.792931,-122.40791,SAN FRANCISCO 94109,SAN FRANCISCO,CA,37.791687,-122.418579,SAN FRANCISCO 94110,SAN FRANCISCO,CA,37.750858,-122.415344,SAN FRANCISCO 94111,SAN FRANCISCO,CA,37.797376,-122.400147,SAN FRANCISCO 94112,SAN FRANCISCO,CA,37.71954,-122.441081,SAN FRANCISCO 94114,SAN FRANCISCO,CA,37.758716,-122.432977,SAN FRANCISCO 94115,SAN FRANCISCO,CA,37.785607,-122.435835,SAN FRANCISCO 94116,SAN FRANCISCO,CA,37.744144,-122.486296,SAN FRANCISCO 94117,SAN FRANCISCO,CA,37.771234,-122.441272,SAN FRANCISCO 94118,SAN FRANCISCO,CA,37.781174,-122.461414,SAN FRANCISCO 94119,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94120,SAN FRANCISCO,CA,37.793,-122.4012,SAN FRANCISCO 94121,SAN FRANCISCO,CA,37.778616,-122.489178,SAN FRANCISCO 94122,SAN FRANCISCO,CA,37.759326,-122.483647,SAN FRANCISCO 94123,SAN FRANCISCO,CA,37.799865,-122.434163,SAN FRANCISCO 94124,SAN FRANCISCO,CA,37.730888,-122.388649,SAN FRANCISCO 94125,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94126,SAN FRANCISCO,CA,37.795,-122.3933,SAN FRANCISCO 94127,SAN FRANCISCO,CA,37.735385,-122.457116,SAN FRANCISCO 94128,SAN FRANCISCO,CA,37.621944,-122.381944,SAN MATEO 94129,SAN FRANCISCO,CA,37.800507,-122.464958,SAN FRANCISCO 94130,SAN FRANCISCO,CA,37.823128,-122.369319,SAN FRANCISCO 94131,SAN FRANCISCO,CA,37.745032,-122.438335,SAN FRANCISCO 94132,SAN FRANCISCO,CA,37.721118,-122.47545,SAN FRANCISCO 94133,SAN FRANCISCO,CA,37.800175,-122.409081,SAN FRANCISCO 94134,SAN FRANCISCO,CA,37.718968,-122.409577,SAN FRANCISCO 94135,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94136,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94137,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94138,SAN FRANCISCO,CA,37.7917,-122.4007,SAN FRANCISCO 94139,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94140,SAN FRANCISCO,CA,37.7555,-122.4153,SAN FRANCISCO 94141,SAN FRANCISCO,CA,37.7667,-122.4097,SAN FRANCISCO 94142,SAN FRANCISCO,CA,37.7819,-122.4146,SAN FRANCISCO 94143,SAN FRANCISCO,CA,37.7631,-122.4591,SAN FRANCISCO 94144,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94145,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94146,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94147,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94150,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94151,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94152,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94153,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94154,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94155,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94156,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94158,SAN FRANCISCO,CA,37.7705,-122.3926,SAN FRANCISCO 94159,SAN FRANCISCO,CA,37.7814,-122.4524,SAN FRANCISCO 94160,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94161,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94162,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94163,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94164,SAN FRANCISCO,CA,37.789,-122.4206,SAN FRANCISCO 94171,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94172,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94175,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94177,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94188,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94199,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94203,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94204,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94205,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94206,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94207,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94208,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94209,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94211,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94229,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94230,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94232,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94234,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94235,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94236,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94237,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94239,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94240,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94244,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94245,SACRAMENTO,CA,38.5599,-121.4841,SACRAMENTO 94246,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94247,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94248,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94249,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94250,SACRAMENTO,CA,38.5658,-121.4671,SACRAMENTO 94252,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94254,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94256,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94257,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94258,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94259,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94261,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94262,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94263,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94267,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94268,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94269,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94271,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94273,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94274,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94277,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94278,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94279,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94280,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94282,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94283,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94284,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94285,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94286,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94287,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94288,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94289,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94290,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94291,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94293,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94294,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94295,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94296,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94297,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94298,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94299,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94301,PALO ALTO,CA,37.444324,-122.149685,SANTA CLARA 94302,PALO ALTO,CA,37.441944,-122.141944,SANTA CLARA 94303,PALO ALTO,CA,37.455641,-122.131902,SANTA CLARA 94304,PALO ALTO,CA,37.433424,-122.184234,SANTA CLARA 94306,PALO ALTO,CA,37.418009,-122.127375,SANTA CLARA 94309,PALO ALTO,CA,37.424167,-122.165,SANTA CLARA 94518,CONCORD,CA,37.950434,-122.026296,CONTRA COSTA 94519,CONCORD,CA,37.984082,-122.011948,CONTRA COSTA 94520,CONCORD,CA,37.982259,-122.036178,CONTRA COSTA 94521,CONCORD,CA,37.957503,-121.974955,CONTRA COSTA 94522,CONCORD,CA,37.9857,-122.0357,CONTRA COSTA 94524,CONCORD,CA,37.9769,-122.0561,CONTRA COSTA 94527,CONCORD,CA,37.978,-122.0557,CONTRA COSTA 94529,CONCORD,CA,37.978,-122.03,CONTRA COSTA 94540,HAYWARD,CA,37.6564,-122.0957,ALAMEDA 94541,HAYWARD,CA,37.674048,-122.089418,ALAMEDA 94542,HAYWARD,CA,37.658566,-122.047236,ALAMEDA 94543,HAYWARD,CA,37.6707,-122.0827,ALAMEDA 94544,HAYWARD,CA,37.637443,-122.067029,ALAMEDA 94545,HAYWARD,CA,37.633245,-122.0971,ALAMEDA 94557,HAYWARD,CA,37.6335,-122.0961,ALAMEDA 94601,OAKLAND,CA,37.780595,-122.216587,ALAMEDA 94602,OAKLAND,CA,37.801133,-122.210368,ALAMEDA 94603,OAKLAND,CA,37.740239,-122.171017,ALAMEDA 94604,OAKLAND,CA,37.8018,-122.2652,ALAMEDA 94605,OAKLAND,CA,37.764132,-122.163326,ALAMEDA 94606,OAKLAND,CA,37.79565,-122.24292,ALAMEDA 94607,OAKLAND,CA,37.807084,-122.285051,ALAMEDA 94609,OAKLAND,CA,37.836096,-122.26367,ALAMEDA 94610,OAKLAND,CA,37.812636,-122.244322,ALAMEDA 94611,OAKLAND,CA,37.828157,-122.22683,ALAMEDA 94612,OAKLAND,CA,37.808473,-122.266774,ALAMEDA 94613,OAKLAND,CA,37.782427,-122.181585,ALAMEDA 94614,OAKLAND,CA,37.7209,-122.2154,ALAMEDA 94615,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94617,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94618,OAKLAND,CA,37.84368,-122.24191,ALAMEDA 94619,OAKLAND,CA,37.787786,-122.18838,ALAMEDA 94621,OAKLAND,CA,37.758924,-122.185335,ALAMEDA 94622,OAKLAND,CA,37.7417,-122.192,ALAMEDA 94623,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94624,OAKLAND,CA,37.7478,-122.1725,ALAMEDA 94625,OAKLAND,CA,37.8045,-122.3198,ALAMEDA 94649,OAKLAND,CA,37.827,-122.2998,ALAMEDA 94659,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94660,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94661,OAKLAND,CA,37.8285,-122.2094,ALAMEDA 94666,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94701,BERKELEY,CA,37.8691,-122.2696,ALAMEDA 94702,BERKELEY,CA,37.865611,-122.285126,ALAMEDA 94703,BERKELEY,CA,37.863028,-122.274914,ALAMEDA 94704,BERKELEY,CA,37.866428,-122.257048,ALAMEDA 94705,BERKELEY,CA,37.85711,-122.249964,ALAMEDA 94707,BERKELEY,CA,37.893118,-122.276517,ALAMEDA 94708,BERKELEY,CA,37.890829,-122.25976,ALAMEDA 94709,BERKELEY,CA,37.878397,-122.265461,ALAMEDA 94710,BERKELEY,CA,37.869603,-122.295929,ALAMEDA 94712,BERKELEY,CA,37.8693,-122.268,ALAMEDA 94720,BERKELEY,CA,37.8719,-122.2591,ALAMEDA 94801,RICHMOND,CA,37.940039,-122.36201,CONTRA COSTA 94802,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94804,RICHMOND,CA,37.926523,-122.33421,CONTRA COSTA 94805,RICHMOND,CA,37.941719,-122.323756,CONTRA COSTA 94807,RICHMOND,CA,37.9271,-122.384,CONTRA COSTA 94808,RICHMOND,CA,37.9338,-122.3432,CONTRA COSTA 94850,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94952,PETALUMA,CA,38.240349,-122.677727,SONOMA 94953,PETALUMA,CA,38.3221,-122.6441,SONOMA 94954,PETALUMA,CA,38.250739,-122.615536,SONOMA 94955,PETALUMA,CA,38.2325,-122.6355,SONOMA 94975,PETALUMA,CA,38.3221,-122.6441,SONOMA 94999,PETALUMA,CA,38.3221,-122.6441,SONOMA 95050,SANTA CLARA,CA,37.34732,-121.954079,SANTA CLARA 95051,SANTA CLARA,CA,37.346992,-121.983848,SANTA CLARA 95052,SANTA CLARA,CA,37.3522,-121.9583,SANTA CLARA 95053,SANTA CLARA,CA,37.3473,-121.9328,SANTA CLARA 95054,SANTA CLARA,CA,37.394673,-121.95394,SANTA CLARA 95055,SANTA CLARA,CA,37.3451,-121.9769,SANTA CLARA 95056,SANTA CLARA,CA,37.3997,-121.9608,SANTA CLARA 95060,SANTA CRUZ,CA,36.982946,-122.043612,SANTA CRUZ 95061,SANTA CRUZ,CA,37.063,-122.162,SANTA CRUZ 95062,SANTA CRUZ,CA,36.972101,-121.988055,SANTA CRUZ 95063,SANTA CRUZ,CA,36.9792,-122.0088,SANTA CRUZ 95064,SANTA CRUZ,CA,36.995851,-122.057803,SANTA CRUZ 95065,SANTA CRUZ,CA,37.003319,-121.982557,SANTA CRUZ 95101,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95103,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95106,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95108,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95109,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95110,SAN JOSE,CA,37.32966,-121.890299,SANTA CLARA 95111,SAN JOSE,CA,37.282276,-121.824038,SANTA CLARA 95112,SAN JOSE,CA,37.341388,-121.880414,SANTA CLARA 95113,SAN JOSE,CA,37.335188,-121.887227,SANTA CLARA 95115,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95116,SAN JOSE,CA,37.351342,-121.850221,SANTA CLARA 95117,SAN JOSE,CA,37.308896,-121.962126,SANTA CLARA 95118,SAN JOSE,CA,37.256162,-121.889845,SANTA CLARA 95119,SAN JOSE,CA,37.230135,-121.790067,SANTA CLARA 95120,SAN JOSE,CA,37.217538,-121.861547,SANTA CLARA 95121,SAN JOSE,CA,37.30593,-121.811939,SANTA CLARA 95122,SAN JOSE,CA,37.329313,-121.833949,SANTA CLARA 95123,SAN JOSE,CA,37.244594,-121.830502,SANTA CLARA 95124,SAN JOSE,CA,37.256844,-121.920831,SANTA CLARA 95125,SAN JOSE,CA,37.296187,-121.895476,SANTA CLARA 95126,SAN JOSE,CA,37.322482,-121.917398,SANTA CLARA 95127,SAN JOSE,CA,37.3664,-121.819516,SANTA CLARA 95128,SAN JOSE,CA,37.314657,-121.934364,SANTA CLARA 95129,SAN JOSE,CA,37.306537,-122.000494,SANTA CLARA 95130,SAN JOSE,CA,37.288628,-121.979182,SANTA CLARA 95131,SAN JOSE,CA,37.386368,-121.879977,SANTA CLARA 95132,SAN JOSE,CA,37.40408,-121.860336,SANTA CLARA 95133,SAN JOSE,CA,37.372875,-121.855959,SANTA CLARA 95134,SAN JOSE,CA,37.413999,-121.943399,SANTA CLARA 95135,SAN JOSE,CA,37.297539,-121.757228,SANTA CLARA 95136,SAN JOSE,CA,37.268423,-121.847625,SANTA CLARA 95138,SAN JOSE,CA,37.246259,-121.778641,SANTA CLARA 95139,SAN JOSE,CA,37.225162,-121.766867,SANTA CLARA 95141,SAN JOSE,CA,37.169912,-121.755808,SANTA CLARA 95148,SAN JOSE,CA,37.329765,-121.792111,SANTA CLARA 95150,SAN JOSE,CA,37.3866,-121.897,SANTA CLARA 95151,SAN JOSE,CA,37.3198,-121.8262,SANTA CLARA 95152,SAN JOSE,CA,37.4022,-121.847,SANTA CLARA 95153,SAN JOSE,CA,37.2488,-121.8459,SANTA CLARA 95154,SAN JOSE,CA,37.2649,-121.9139,SANTA CLARA 95155,SAN JOSE,CA,37.31,-121.9011,SANTA CLARA 95156,SAN JOSE,CA,37.3576,-121.8416,SANTA CLARA 95157,SAN JOSE,CA,37.3008,-121.9777,SANTA CLARA 95158,SAN JOSE,CA,37.2625,-121.8779,SANTA CLARA 95159,SAN JOSE,CA,37.3179,-121.9349,SANTA CLARA 95160,SAN JOSE,CA,37.2187,-121.8601,SANTA CLARA 95161,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95164,SAN JOSE,CA,37.3916,-121.9203,SANTA CLARA 95170,SAN JOSE,CA,37.3103,-122.0093,SANTA CLARA 95172,SAN JOSE,CA,37.334,-121.8847,SANTA CLARA 95173,SAN JOSE,CA,37.3352,-121.8938,SANTA CLARA 95190,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95191,SAN JOSE,CA,37.3262,-121.9158,SANTA CLARA 95192,SAN JOSE,CA,37.3383,-121.8801,SANTA CLARA 95193,SAN JOSE,CA,37.2441,-121.8287,SANTA CLARA 95194,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95196,SAN JOSE,CA,37.3338,-121.8894,SANTA CLARA 95201,STOCKTON,CA,37.958,-121.2876,SAN JOAQUIN 95202,STOCKTON,CA,37.960632,-121.287087,SAN JOAQUIN 95203,STOCKTON,CA,37.956515,-121.307688,SAN JOAQUIN 95204,STOCKTON,CA,37.974302,-121.315364,SAN JOAQUIN 95205,STOCKTON,CA,37.960986,-121.259241,SAN JOAQUIN 95206,STOCKTON,CA,37.931643,-121.287169,SAN JOAQUIN 95207,STOCKTON,CA,38.002025,-121.32056,SAN JOAQUIN 95208,STOCKTON,CA,37.9304,-121.436,SAN JOAQUIN 95209,STOCKTON,CA,38.033105,-121.343292,SAN JOAQUIN 95210,STOCKTON,CA,38.024997,-121.297229,SAN JOAQUIN 95211,STOCKTON,CA,37.980364,-121.310336,SAN JOAQUIN 95212,STOCKTON,CA,38.034428,-121.246018,SAN JOAQUIN 95213,STOCKTON,CA,37.9054,-121.2222,SAN JOAQUIN 95215,STOCKTON,CA,37.968545,-121.215295,SAN JOAQUIN 95219,STOCKTON,CA,38.010233,-121.363712,SAN JOAQUIN 95267,STOCKTON,CA,38.0003,-121.3174,SAN JOAQUIN 95269,STOCKTON,CA,38.0187,-121.3225,SAN JOAQUIN 95296,STOCKTON,CA,37.715833,-121.380556,SAN JOAQUIN 95297,STOCKTON,CA,38.0025,-121.324,SAN JOAQUIN 95350,MODESTO,CA,37.674649,-121.011303,STANISLAUS 95351,MODESTO,CA,37.625022,-121.006033,STANISLAUS 95352,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95353,MODESTO,CA,37.6424,-120.9999,STANISLAUS 95354,MODESTO,CA,37.644526,-120.968323,STANISLAUS 95355,MODESTO,CA,37.673515,-120.954658,STANISLAUS 95356,MODESTO,CA,37.699431,-121.027051,STANISLAUS 95357,MODESTO,CA,37.6635,-120.9186,STANISLAUS 95358,MODESTO,CA,37.622,-121.0453,STANISLAUS 95397,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95401,SANTA ROSA,CA,38.443123,-122.751722,SONOMA 95402,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95403,SANTA ROSA,CA,38.477273,-122.748528,SONOMA 95404,SANTA ROSA,CA,38.449556,-122.689524,SONOMA 95405,SANTA ROSA,CA,38.438279,-122.66988,SONOMA 95406,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95407,SANTA ROSA,CA,38.410462,-122.727896,SONOMA 95409,SANTA ROSA,CA,38.461242,-122.642125,SONOMA 95811,SACRAMENTO,CA,38.5815719,-121.4943996,SACRAMENTO 95812,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 95813,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95814,SACRAMENTO,CA,38.579792,-121.489404,SACRAMENTO 95815,SACRAMENTO,CA,38.613303,-121.443543,SACRAMENTO 95816,SACRAMENTO,CA,38.572788,-121.46753,SACRAMENTO 95817,SACRAMENTO,CA,38.549785,-121.458324,SACRAMENTO 95818,SACRAMENTO,CA,38.556778,-121.492884,SACRAMENTO 95819,SACRAMENTO,CA,38.568293,-121.436634,SACRAMENTO 95820,SACRAMENTO,CA,38.534694,-121.445139,SACRAMENTO 95821,SACRAMENTO,CA,38.623889,-121.383807,SACRAMENTO 95822,SACRAMENTO,CA,38.509139,-121.493541,SACRAMENTO 95823,SACRAMENTO,CA,38.479711,-121.443846,SACRAMENTO 95824,SACRAMENTO,CA,38.517843,-121.441883,SACRAMENTO 95825,SACRAMENTO,CA,38.589226,-121.405677,SACRAMENTO 95826,SACRAMENTO,CA,38.553868,-121.369265,SACRAMENTO 95827,SACRAMENTO,CA,38.56623,-121.328593,SACRAMENTO 95828,SACRAMENTO,CA,38.483718,-121.401504,SACRAMENTO 95829,SACRAMENTO,CA,38.472564,-121.346631,SACRAMENTO 95830,SACRAMENTO,CA,38.476556,-121.281453,SACRAMENTO 95831,SACRAMENTO,CA,38.496226,-121.529661,SACRAMENTO 95832,SACRAMENTO,CA,38.475387,-121.482967,SACRAMENTO 95833,SACRAMENTO,CA,38.616993,-121.494487,SACRAMENTO 95834,SACRAMENTO,CA,38.633418,-121.492052,SACRAMENTO 95835,SACRAMENTO,CA,38.662595,-121.483444,SACRAMENTO 95836,SACRAMENTO,CA,38.707346,-121.532259,SACRAMENTO 95837,SACRAMENTO,CA,38.681726,-121.60297,SACRAMENTO 95838,SACRAMENTO,CA,38.640566,-121.44396,SACRAMENTO 95840,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95841,SACRAMENTO,CA,38.662699,-121.340608,SACRAMENTO 95842,SACRAMENTO,CA,38.687385,-121.35046,SACRAMENTO 95851,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95852,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95853,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95860,SACRAMENTO,CA,38.6105,-121.3799,SACRAMENTO 95864,SACRAMENTO,CA,38.587768,-121.376889,SACRAMENTO 95865,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95866,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95867,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95887,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95894,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95899,SACRAMENTO,CA,38.5383,-121.5549,SACRAMENTO 95926,CHICO,CA,39.756466,-121.851806,BUTTE 95927,CHICO,CA,39.8117,-121.9398,BUTTE 95928,CHICO,CA,39.729523,-121.81555,BUTTE 95929,CHICO,CA,39.7301,-121.8414,BUTTE 95973,CHICO,CA,39.925556,-121.73,BUTTE 95976,CHICO,CA,39.7346,-121.8331,BUTTE 96150,SOUTH LAKE TAHOE,CA,38.916976,-119.986469,EL DORADO 96151,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96152,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96154,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96155,SOUTH LAKE TAHOE,CA,39.0166,-120.1229,EL DORADO 96156,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96157,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96158,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96801,HONOLULU,HI,21.3095,-157.863,HONOLULU 96802,HONOLULU,HI,21.3095,-157.863,HONOLULU 96803,HONOLULU,HI,21.3095,-157.863,HONOLULU 96804,HONOLULU,HI,21.3095,-157.863,HONOLULU 96805,HONOLULU,HI,21.3095,-157.863,HONOLULU 96806,HONOLULU,HI,21.3095,-157.863,HONOLULU 96807,HONOLULU,HI,21.3095,-157.863,HONOLULU 96808,HONOLULU,HI,21.3095,-157.863,HONOLULU 96809,HONOLULU,HI,21.3095,-157.863,HONOLULU 96810,HONOLULU,HI,21.3095,-157.863,HONOLULU 96811,HONOLULU,HI,21.3095,-157.863,HONOLULU 96812,HONOLULU,HI,21.3095,-157.863,HONOLULU 96813,HONOLULU,HI,21.317905,-157.852072,HONOLULU 96814,HONOLULU,HI,21.299846,-157.843876,HONOLULU 96815,HONOLULU,HI,21.281084,-157.826616,HONOLULU 96816,HONOLULU,HI,21.288677,-157.800626,HONOLULU 96817,HONOLULU,HI,21.329452,-157.861469,HONOLULU 96818,HONOLULU,HI,21.353173,-157.926925,HONOLULU 96819,HONOLULU,HI,21.34877,-157.875947,HONOLULU 96820,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96821,HONOLULU,HI,21.292811,-157.755242,HONOLULU 96822,HONOLULU,HI,21.311704,-157.829819,HONOLULU 96823,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96824,HONOLULU,HI,21.2808,-157.7552,HONOLULU 96825,HONOLULU,HI,21.298684,-157.698523,HONOLULU 96826,HONOLULU,HI,21.294139,-157.828388,HONOLULU 96827,HONOLULU,HI,21.3172,-157.8643,HONOLULU 96828,HONOLULU,HI,21.294,-157.8226,HONOLULU 96830,HONOLULU,HI,21.2841,-157.8341,HONOLULU 96835,HONOLULU,HI,21.3509,-157.8794,HONOLULU 96836,HONOLULU,HI,21.2899,-157.8384,HONOLULU 96837,HONOLULU,HI,21.315,-157.8633,HONOLULU 96838,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96839,HONOLULU,HI,21.3107,-157.812,HONOLULU 96840,HONOLULU,HI,21.3095,-157.863,HONOLULU 96841,HONOLULU,HI,21.3095,-157.863,HONOLULU 96843,HONOLULU,HI,21.3095,-157.863,HONOLULU 96844,HONOLULU,HI,21.2981,-157.8189,HONOLULU 96846,HONOLULU,HI,21.3095,-157.863,HONOLULU 96847,HONOLULU,HI,21.3095,-157.863,HONOLULU 96848,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96849,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96850,HONOLULU,HI,21.3095,-157.863,HONOLULU 97005,BEAVERTON,OR,45.475035,-122.805395,WASHINGTON 97006,BEAVERTON,OR,45.517675,-122.859209,WASHINGTON 97007,BEAVERTON,OR,45.472985,-122.859473,WASHINGTON 97008,BEAVERTON,OR,45.4614,-122.8062,WASHINGTON 97075,BEAVERTON,OR,45.4861,-122.8004,WASHINGTON 97076,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97077,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97078,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97201,PORTLAND,OR,45.498819,-122.690258,MULTNOMAH 97202,PORTLAND,OR,45.484007,-122.636534,MULTNOMAH 97203,PORTLAND,OR,45.588872,-122.734699,MULTNOMAH 97204,PORTLAND,OR,45.51807,-122.674498,MULTNOMAH 97205,PORTLAND,OR,45.52072,-122.688846,MULTNOMAH 97206,PORTLAND,OR,45.483995,-122.59727,MULTNOMAH 97207,PORTLAND,OR,45.5136,-122.6801,MULTNOMAH 97208,PORTLAND,OR,45.5273,-122.6786,MULTNOMAH 97209,PORTLAND,OR,45.526962,-122.685447,MULTNOMAH 97210,PORTLAND,OR,45.530318,-122.703348,MULTNOMAH 97211,PORTLAND,OR,45.565259,-122.644815,MULTNOMAH 97212,PORTLAND,OR,45.544127,-122.642319,MULTNOMAH 97213,PORTLAND,OR,45.537292,-122.59867,MULTNOMAH 97214,PORTLAND,OR,45.514207,-122.636397,MULTNOMAH 97215,PORTLAND,OR,45.514282,-122.599001,MULTNOMAH 97216,PORTLAND,OR,45.513746,-122.55688,MULTNOMAH 97217,PORTLAND,OR,45.57424,-122.684196,MULTNOMAH 97218,PORTLAND,OR,45.560032,-122.600131,MULTNOMAH 97219,PORTLAND,OR,45.457956,-122.70738,MULTNOMAH 97220,PORTLAND,OR,45.541109,-122.556586,MULTNOMAH 97221,PORTLAND,OR,45.491829,-122.726723,MULTNOMAH 97222,PORTLAND,OR,45.442919,-122.615092,CLACKAMAS 97223,PORTLAND,OR,45.443343,-122.775974,WASHINGTON 97224,PORTLAND,OR,45.407292,-122.788379,WASHINGTON 97225,PORTLAND,OR,45.500449,-122.768344,WASHINGTON 97227,PORTLAND,OR,45.549564,-122.674257,MULTNOMAH 97228,PORTLAND,OR,45.5275,-122.6764,MULTNOMAH 97229,PORTLAND,OR,45.541087,-122.829924,WASHINGTON 97230,PORTLAND,OR,45.535753,-122.500343,MULTNOMAH 97231,PORTLAND,OR,45.640124,-122.838032,MULTNOMAH 97232,PORTLAND,OR,45.528712,-122.63631,MULTNOMAH 97233,PORTLAND,OR,45.514206,-122.498493,MULTNOMAH 97236,PORTLAND,OR,45.488748,-122.509091,MULTNOMAH 97238,PORTLAND,OR,45.5849,-122.5804,MULTNOMAH 97239,PORTLAND,OR,45.489,-122.6881,MULTNOMAH 97240,PORTLAND,OR,45.522,-122.6741,MULTNOMAH 97242,PORTLAND,OR,45.5003,-122.6495,MULTNOMAH 97251,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97253,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97254,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97255,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97256,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97258,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97259,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97266,PORTLAND,OR,45.476207,-122.559607,MULTNOMAH 97267,PORTLAND,OR,45.407494,-122.610631,CLACKAMAS 97268,PORTLAND,OR,45.4012,-122.6203,CLACKAMAS 97269,PORTLAND,OR,45.4416,-122.6392,CLACKAMAS 97271,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97272,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97280,PORTLAND,OR,45.4685,-122.7164,MULTNOMAH 97281,PORTLAND,OR,45.431,-122.769,WASHINGTON 97282,PORTLAND,OR,45.474,-122.6488,MULTNOMAH 97283,PORTLAND,OR,45.5888,-122.7525,MULTNOMAH 97286,PORTLAND,OR,45.4966,-122.6091,MULTNOMAH 97290,PORTLAND,OR,45.5761,-122.6436,MULTNOMAH 97291,PORTLAND,OR,45.5623,-122.8316,WASHINGTON 97292,PORTLAND,OR,45.5164,-122.5359,MULTNOMAH 97293,PORTLAND,OR,45.5155,-122.6569,MULTNOMAH 97294,PORTLAND,OR,45.5519,-122.5357,MULTNOMAH 97296,PORTLAND,OR,45.5359,-122.6559,MULTNOMAH 97298,PORTLAND,OR,45.4968,-122.7658,WASHINGTON 97299,PORTLAND,OR,45.5402,-122.6106,MULTNOMAH 97301,SALEM,OR,44.926039,-122.979692,MARION 97302,SALEM,OR,44.903899,-123.044514,MARION 97303,SALEM,OR,44.985794,-123.019015,MARION 97304,SALEM,OR,44.958846,-123.075323,POLK 97305,SALEM,OR,44.982502,-122.966892,MARION 97306,SALEM,OR,44.8685,-123.043789,MARION 97308,SALEM,OR,44.943,-123.0338,MARION 97309,SALEM,OR,44.9253,-123.0091,MARION 97310,SALEM,OR,44.9406,-123.0054,MARION 97311,SALEM,OR,44.943,-123.0338,MARION 97312,SALEM,OR,44.9371,-123.0385,MARION 97313,SALEM,OR,45.0306,-123.0256,MARION 97314,SALEM,OR,45.0306,-123.0256,MARION 97317,SALEM,OR,44.9036,-122.9466,MARION 97401,EUGENE,OR,44.073677,-123.078757,LANE 97402,EUGENE,OR,44.061243,-123.155525,LANE 97403,EUGENE,OR,44.038534,-123.061422,LANE 97404,EUGENE,OR,44.100536,-123.13336,LANE 97405,EUGENE,OR,44.018497,-123.099769,LANE 97408,EUGENE,OR,44.1129,-123.0711,LANE 97440,EUGENE,OR,44.0541,-123.092,LANE 98004,BELLEVUE,WA,47.619899,-122.207371,KING 98005,BELLEVUE,WA,47.614961,-122.166288,KING 98006,BELLEVUE,WA,47.561425,-122.155179,KING 98007,BELLEVUE,WA,47.617443,-122.142572,KING 98008,BELLEVUE,WA,47.611468,-122.116173,KING 98009,BELLEVUE,WA,47.6105,-122.1994,KING 98015,BELLEVUE,WA,47.6122,-122.1862,KING 98030,KENT,WA,47.3695,-122.1949,KING 98031,KENT,WA,47.388004,-122.193184,KING 98032,KENT,WA,47.377633,-122.285362,KING 98035,KENT,WA,47.3808,-122.2346,KING 98042,KENT,WA,47.368044,-122.120615,KING 98064,KENT,WA,47.3873,-122.1983,KING 98089,KENT,WA,47.3811,-122.2336,KING 98101,SEATTLE,WA,47.611435,-122.330456,KING 98102,SEATTLE,WA,47.63025,-122.320993,KING 98103,SEATTLE,WA,47.67335,-122.342621,KING 98104,SEATTLE,WA,47.603631,-122.325644,KING 98105,SEATTLE,WA,47.663266,-122.302236,KING 98106,SEATTLE,WA,47.534362,-122.354688,KING 98107,SEATTLE,WA,47.67012,-122.37626,KING 98108,SEATTLE,WA,47.547448,-122.306823,KING 98109,SEATTLE,WA,47.633875,-122.347615,KING 98111,SEATTLE,WA,47.609,-122.3351,KING 98112,SEATTLE,WA,47.630115,-122.297157,KING 98113,SEATTLE,WA,47.6064,-122.3308,KING 98114,SEATTLE,WA,47.6036,-122.3258,KING 98115,SEATTLE,WA,47.684918,-122.296828,KING 98116,SEATTLE,WA,47.574591,-122.393445,KING 98117,SEATTLE,WA,47.687263,-122.377223,KING 98118,SEATTLE,WA,47.541234,-122.275021,KING 98119,SEATTLE,WA,47.637917,-122.364272,KING 98121,SEATTLE,WA,47.615135,-122.344696,KING 98122,SEATTLE,WA,47.611633,-122.305608,KING 98124,SEATTLE,WA,47.6063,-122.3308,KING 98125,SEATTLE,WA,47.717002,-122.301546,KING 98126,SEATTLE,WA,47.544361,-122.373458,KING 98127,SEATTLE,WA,47.6064,-122.3308,KING 98129,SEATTLE,WA,47.6063,-122.3308,KING 98131,SEATTLE,WA,47.6063,-122.3308,KING 98132,SEATTLE,WA,47.6063,-122.3308,KING 98133,SEATTLE,WA,47.737717,-122.343132,KING 98134,SEATTLE,WA,47.590276,-122.326346,KING 98136,SEATTLE,WA,47.539769,-122.387768,KING 98138,SEATTLE,WA,47.4572,-122.2529,KING 98139,SEATTLE,WA,47.6064,-122.3308,KING 98141,SEATTLE,WA,47.6064,-122.3308,KING 98144,SEATTLE,WA,47.584624,-122.300457,KING 98145,SEATTLE,WA,47.6591,-122.3115,KING 98146,SEATTLE,WA,47.501069,-122.353989,KING 98148,SEATTLE,WA,47.450209,-122.326112,KING 98151,SEATTLE,WA,47.6063,-122.3308,KING 98154,SEATTLE,WA,47.6036,-122.3258,KING 98155,SEATTLE,WA,47.758161,-122.296305,KING 98158,SEATTLE,WA,47.442739,-122.318454,KING 98160,SEATTLE,WA,47.7654,-122.3614,KING 98161,SEATTLE,WA,47.609,-122.3351,KING 98164,SEATTLE,WA,47.6036,-122.3258,KING 98165,SEATTLE,WA,47.6064,-122.3308,KING 98166,SEATTLE,WA,47.455052,-122.347392,KING 98168,SEATTLE,WA,47.48851,-122.302376,KING 98170,SEATTLE,WA,47.6064,-122.3308,KING 98171,SEATTLE,WA,47.609,-122.3351,KING 98174,SEATTLE,WA,47.6036,-122.3258,KING 98175,SEATTLE,WA,47.6064,-122.3308,KING 98177,SEATTLE,WA,47.746678,-122.368585,KING 98178,SEATTLE,WA,47.499489,-122.247366,KING 98181,SEATTLE,WA,47.6063,-122.3308,KING 98184,SEATTLE,WA,47.6063,-122.3308,KING 98185,SEATTLE,WA,47.6641,-122.2941,KING 98188,SEATTLE,WA,47.449808,-122.281159,KING 98190,SEATTLE,WA,47.6064,-122.3308,KING 98191,SEATTLE,WA,47.6063,-122.3308,KING 98194,SEATTLE,WA,47.6064,-122.3308,KING 98195,SEATTLE,WA,47.6518,-122.3101,KING 98198,SEATTLE,WA,47.407286,-122.309559,KING 98199,SEATTLE,WA,47.648845,-122.396357,KING 98201,EVERETT,WA,47.988431,-122.200571,SNOHOMISH 98203,EVERETT,WA,47.941937,-122.221846,SNOHOMISH 98204,EVERETT,WA,47.901659,-122.247217,SNOHOMISH 98205,EVERETT,WA,47.990065,-122.115759,SNOHOMISH 98206,EVERETT,WA,47.9763,-122.2088,SNOHOMISH 98207,EVERETT,WA,47.9988,-122.188,SNOHOMISH 98208,EVERETT,WA,47.894822,-122.198722,SNOHOMISH 98213,EVERETT,WA,47.9792,-122.2008,SNOHOMISH 98401,TACOMA,WA,47.2764,-122.7583,PIERCE 98402,TACOMA,WA,47.254508,-122.440536,PIERCE 98403,TACOMA,WA,47.26428,-122.457538,PIERCE 98404,TACOMA,WA,47.211312,-122.412625,PIERCE 98405,TACOMA,WA,47.248351,-122.46435,PIERCE 98406,TACOMA,WA,47.26325,-122.499349,PIERCE 98407,TACOMA,WA,47.282479,-122.503881,PIERCE 98408,TACOMA,WA,47.207267,-122.444381,PIERCE 98409,TACOMA,WA,47.20381,-122.482503,PIERCE 98411,TACOMA,WA,47.2215,-122.4717,PIERCE 98412,TACOMA,WA,47.1826,-122.4402,PIERCE 98413,TACOMA,WA,47.253,-122.443,PIERCE 98415,TACOMA,WA,47.253,-122.443,PIERCE 98416,TACOMA,WA,47.2633,-122.4803,PIERCE 98417,TACOMA,WA,47.1663,-12.2378,PIERCE 98418,TACOMA,WA,47.2242,-122.4473,PIERCE 98419,TACOMA,WA,47.1663,-12.2378,PIERCE 98421,TACOMA,WA,47.266373,-122.401457,PIERCE 98422,TACOMA,WA,47.294805,-122.398349,PIERCE 98424,TACOMA,WA,47.243632,-122.350962,PIERCE 98431,TACOMA,WA,47.063056,-122.553333,PIERCE 98433,TACOMA,WA,47.100864,-122.583486,PIERCE 98439,LAKEWOOD,WA,47.122905,-122.529326,PIERCE 98442,TACOMA,WA,47.1461,-122.4347,PIERCE 98443,TACOMA,WA,47.204369,-122.372815,PIERCE 98444,TACOMA,WA,47.156553,-122.448842,PIERCE 98445,TACOMA,WA,47.133967,-122.411614,PIERCE 98446,TACOMA,WA,47.14041,-122.37189,PIERCE 98447,TACOMA,WA,47.1458,-122.44,PIERCE 98448,TACOMA,WA,47.1663,-12.2378,PIERCE 98450,TACOMA,WA,47.253,-122.443,PIERCE 98455,TACOMA,WA,47.253,-122.443,PIERCE 98460,TACOMA,WA,47.253,-122.443,PIERCE 98464,TACOMA,WA,47.253,-122.443,PIERCE 98465,TACOMA,WA,47.249139,-122.527272,PIERCE 98466,TACOMA,WA,47.22788,-122.53503,PIERCE 98471,TACOMA,WA,47.2551,-122.4733,PIERCE 98477,TACOMA,WA,47.253,-122.443,PIERCE 98481,TACOMA,WA,47.2208,-122.4732,PIERCE 98490,TACOMA,WA,47.1663,-12.2378,PIERCE 98492,LAKEWOOD,WA,47.123611,-122.555833,PIERCE 98493,TACOMA,WA,47.0631,-122.5536,PIERCE 98496,LAKEWOOD,WA,47.1663,-12.2378,PIERCE 98497,LAKEWOOD,WA,47.1805,-122.5465,PIERCE 98498,LAKEWOOD,WA,47.164269,-122.555357,PIERCE 98499,LAKEWOOD,WA,47.160786,-122.509074,PIERCE 98501,OLYMPIA,WA,47.012906,-122.876311,THURSTON 98502,OLYMPIA,WA,47.029828,-122.95214,THURSTON 98504,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98505,OLYMPIA,WA,47.0704,-122.9604,THURSTON 98506,OLYMPIA,WA,47.076259,-122.832844,THURSTON 98507,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98508,OLYMPIA,WA,47.0352,-122.9369,THURSTON 98512,OLYMPIA,WA,46.974,-122.9871,THURSTON 98513,OLYMPIA,WA,47.008,-122.7571,THURSTON 98516,OLYMPIA,WA,47.0833,-122.7776,THURSTON 98599,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98660,VANCOUVER,WA,45.64183,-122.68014,CLARK 98661,VANCOUVER,WA,45.641807,-122.625146,CLARK 98662,VANCOUVER,WA,45.674519,-122.576182,CLARK 98663,VANCOUVER,WA,45.6514,-122.660385,CLARK 98664,VANCOUVER,WA,45.623086,-122.576741,CLARK 98665,VANCOUVER,WA,45.68217,-122.664223,CLARK 98666,VANCOUVER,WA,45.6307,-122.6733,CLARK 98667,VANCOUVER,WA,45.6388,-122.6602,CLARK 98668,VANCOUVER,WA,45.6408,-122.6221,CLARK 98682,VANCOUVER,WA,45.664399,-122.521224,CLARK 98683,VANCOUVER,WA,45.6034,-122.5101,CLARK 98684,VANCOUVER,WA,45.617522,-122.524969,CLARK 98685,VANCOUVER,WA,45.707313,-122.682474,CLARK 98686,VANCOUVER,WA,45.712017,-122.632226,CLARK 98687,VANCOUVER,WA,45.6311,-122.518,CLARK 98901,YAKIMA,WA,46.606991,-120.477336,YAKIMA 98902,YAKIMA,WA,46.593393,-120.531084,YAKIMA 98903,YAKIMA,WA,46.5572,-120.556587,YAKIMA 98904,YAKIMA,WA,46.6022,-120.5047,YAKIMA 98907,YAKIMA,WA,46.666,-120.3543,YAKIMA 98908,YAKIMA,WA,46.605865,-120.605175,YAKIMA 98909,YAKIMA,WA,46.5708,-120.5069,YAKIMA 99201,SPOKANE,WA,47.666485,-117.436527,SPOKANE 99202,SPOKANE,WA,47.654741,-117.380972,SPOKANE 99203,SPOKANE,WA,47.629443,-117.404121,SPOKANE 99204,SPOKANE,WA,47.640682,-117.471896,SPOKANE 99205,SPOKANE,WA,47.69641,-117.439912,SPOKANE 99206,SPOKANE,WA,47.649588,-117.258126,SPOKANE 99207,SPOKANE,WA,47.697712,-117.374565,SPOKANE 99208,SPOKANE,WA,47.737434,-117.435207,SPOKANE 99209,SPOKANE,WA,47.6934,-117.4382,SPOKANE 99210,SPOKANE,WA,47.6581,-117.424,SPOKANE 99211,SPOKANE,WA,47.6588,-117.425,SPOKANE 99212,SPOKANE,WA,47.668598,-117.304853,SPOKANE 99213,SPOKANE,WA,47.6588,-117.425,SPOKANE 99214,SPOKANE,WA,47.6588,-117.425,SPOKANE 99215,SPOKANE,WA,47.6953,-117.2105,SPOKANE 99216,SPOKANE,WA,47.663389,-117.219307,SPOKANE 99217,SPOKANE,WA,47.7143,-117.3247,SPOKANE 99218,SPOKANE,WA,47.755648,-117.4146,SPOKANE 99219,SPOKANE,WA,47.6588,-117.425,SPOKANE 99220,SPOKANE,WA,47.657,-117.3859,SPOKANE 99223,SPOKANE,WA,47.61558,-117.362215,SPOKANE 99224,SPOKANE,WA,47.6319,-117.4873,SPOKANE 99228,SPOKANE,WA,47.7155,-117.4245,SPOKANE 99251,SPOKANE,WA,47.7511,-117.4176,SPOKANE 99252,SPOKANE,WA,47.6717,-117.3897,SPOKANE 99256,SPOKANE,WA,47.657,-117.3859,SPOKANE 99258,SPOKANE,WA,47.6683,-117.4028,SPOKANE 99260,SPOKANE,WA,47.657,-117.3859,SPOKANE 99299,SPOKANE,WA,47.6588,-117.425,SPOKANE 99501,ANCHORAGE,AK,61.211571,-149.876077,ANCHORAGE 99502,ANCHORAGE,AK,61.096163,-150.093943,ANCHORAGE 99503,ANCHORAGE,AK,61.189953,-149.893844,ANCHORAGE 99504,ANCHORAGE,AK,61.203696,-149.74467,ANCHORAGE 99507,ANCHORAGE,AK,61.153543,-149.828912,ANCHORAGE 99508,ANCHORAGE,AK,61.205959,-149.810085,ANCHORAGE 99509,ANCHORAGE,AK,61.1897,-149.9063,ANCHORAGE 99510,ANCHORAGE,AK,61.2199,-149.8882,ANCHORAGE 99511,ANCHORAGE,AK,61.1104,-149.8577,ANCHORAGE 99513,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99514,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99515,ANCHORAGE,AK,61.119381,-149.897401,ANCHORAGE 99516,ANCHORAGE,AK,61.10541,-149.779998,ANCHORAGE 99517,ANCHORAGE,AK,61.190136,-149.936111,ANCHORAGE 99518,ANCHORAGE,AK,61.154862,-149.886571,ANCHORAGE 99519,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99520,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99521,ANCHORAGE,AK,61.1996,-149.7314,ANCHORAGE 99522,ANCHORAGE,AK,61.1521,-149.9198,ANCHORAGE 99523,ANCHORAGE,AK,61.1682,-149.8356,ANCHORAGE 99524,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99529,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99530,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99599,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99695,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99701,FAIRBANKS,AK,64.840238,-147.710431,FAIRBANKS NORTH STAR 99706,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99707,FAIRBANKS,AK,64.8419,-147.7227,FAIRBANKS NORTH STAR 99708,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99709,FAIRBANKS,AK,64.85437,-147.846917,FAIRBANKS NORTH STAR 99710,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99711,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99712,FAIRBANKS,AK,64.910879,-147.510479,FAIRBANKS NORTH STAR 99775,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99790,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99801,JUNEAU,AK,58.362767,-134.529429,JUNEAU 99802,JUNEAU,AK,58.2997,-134.4149,JUNEAU 99803,JUNEAU,AK,58.3722,-134.5868,JUNEAU 99811,JUNEAU,AK,58.4773,-134.1549,JUNEAU 99812,JUNEAU,AK,58.2806,-134.3994,JUNEAU 99850,JUNEAU,AK,58.4773,-134.1549,JUNEAU \ No newline at end of file diff --git a/splunk_eventgen/samples/mdn.sample b/splunk_eventgen/samples/mdn.sample deleted file mode 100644 index 33c645bb..00000000 --- a/splunk_eventgen/samples/mdn.sample +++ /dev/null @@ -1,815 +0,0 @@ -5556374832 -5559863091 -5557507373 -5554715490 -5553574320 -5553556664 -5554400219 -5556890861 -5557027750 -5557607034 -5557607034 -5555750129 -5556948686 -5557974528 -5552275314 -5553593502 -5557131993 -5557974528 -5556685507 -5559972146 -5556791445 -5556791445 -5555689490 -5554351797 -5555524026 -5554351797 -5559902928 -5557700462 -5555697044 -5557822114 -5552576124 -5552576124 -5552563627 -5559697090 -5559972146 -5555172530 -5558835506 -5553911046 -5553911046 -5555523241 -5552337761 -5558128479 -5555912195 -5553298804 -5559402954 -5557822114 -5556438360 -5559897094 -5552172942 -5553235675 -5554980675 -5558143038 -5559897465 -5558341450 -5558816449 -5558816449 -5558041235 -5557555207 -5553328482 -5555635916 -5559902928 -5556585650 -5558041235 -5558091300 -5555630768 -5552287241 -5557555207 -5555521164 -5558920996 -5555750166 -5557268571 -5554982823 -5552373863 -5554982823 -5552997923 -5556120001 -5554087740 -5555588602 -5552450005 -5553133793 -5559730494 -5555503191 -5557173544 -5552243212 -5556480338 -5553312305 -5555146289 -5556480338 -5557647981 -5554413449 -5554754883 -5554690066 -5558143038 -5559910004 -5558341450 -5552088600 -5556528711 -5553176306 -5552088600 -5556581781 -5555896510 -5554888539 -5553665199 -5555630768 -5553665199 -5552970411 -5556851965 -5557443407 -5552151677 -5558920996 -5557128051 -5557975756 -5555750166 -5559782161 -5555570461 -5556039988 -5557728712 -5555588602 -5554087740 -5553740044 -5553740044 -5557751404 -5555027890 -5555503191 -5559952550 -5559863091 -5553589476 -5553245990 -5558836762 -5558836762 -5554754883 -5555426586 -5555313257 -5559472318 -5557621778 -5554402125 -5556555960 -5557180594 -5557510869 -5558504854 -5559645866 -5557065509 -5558504854 -5552781642 -5559645866 -5555449287 -5552781642 -5556581781 -5552850129 -5556890751 -5556851965 -5557443407 -5556404243 -5552408987 -5555691525 -5554391346 -5556966188 -5552141758 -5557438596 -5554982823 -5554982823 -5554130240 -5557175702 -5556885463 -5555894233 -5555584413 -5557565865 -5557128051 -5556545078 -5559407533 -5556545078 -5559407533 -5552907674 -5552727287 -5552727287 -5554621247 -5555511538 -5559957668 -5552804625 -5552804625 -5552016739 -5552171436 -5554402125 -5556890751 -5552058127 -5559957668 -5557710320 -5558137769 -5557710320 -5556289887 -5556394690 -5558137769 -5557660601 -5557054702 -5555077653 -5557054702 -5553581943 -5552243212 -5558538413 -5552325580 -5559214497 -5557438596 -5554401598 -5557026126 -5559732639 -5553399856 -5559496764 -5553783890 -5553783890 -5552528438 -5557156220 -5558150968 -5558765231 -5552171436 -5552528438 -5555058619 -5553919201 -5555449287 -5557155799 -5558485552 -5556289887 -5557129269 -5554205531 -5557422487 -5552385950 -5552385950 -5556408359 -5558925695 -5555935051 -5558962220 -5556885463 -5555203745 -5557586339 -5557175702 -5556347018 -5556990675 -5556347018 -5553399856 -5559732639 -5554440405 -5559180045 -5554401598 -5554024269 -5559496764 -5557079104 -5558828667 -5553502807 -5559863782 -5554804798 -5553175253 -5555467300 -5552922603 -5555367836 -5555367836 -5554982823 -5554501823 -5558765231 -5552170636 -5554982823 -5557824204 -5552849794 -5553675132 -5559889370 -5553919201 -5555153211 -5555153211 -5558878613 -5554497192 -5556408359 -5557172548 -5554400905 -5559091902 -5556774478 -5552058127 -5553048905 -5558962220 -5555203745 -5557582164 -5557415314 -5559031692 -5555137632 -5555617468 -5557086916 -5558533825 -5558533825 -5558851093 -5553335032 -5555284427 -5557028894 -5556692087 -5556473983 -5556895290 -5556895290 -5556196234 -5553549339 -5554892806 -5558913765 -5554172753 -5557824204 -5558387327 -5558964348 -5557036858 -5552844302 -5554236100 -5557542589 -5552877073 -5556832579 -5556394690 -5552928425 -5555680076 -5554288136 -5553550994 -5552977358 -5552015132 -5557582164 -5555137632 -5557124211 -5559218961 -5559218961 -5555318017 -5558851093 -5554128400 -5555898487 -5559024813 -5555587773 -5558128479 -5557087464 -5557970692 -5557150288 -5557087464 -5555698038 -5552074216 -5554995736 -5556405854 -5558538687 -5553323028 -5557131993 -5558964348 -5555583797 -5554236100 -5554982823 -5557176938 -5552457324 -5554982823 -5553680161 -5554166546 -5554166546 -5556832579 -5552005169 -5558822901 -5555692646 -5558913765 -5553525787 -5553680161 -5552210369 -5556537930 -5553652782 -5556537930 -5552977358 -5559651635 -5557980797 -5557980797 -5552225223 -5552015132 -5557124211 -5553360775 -5557728710 -5554431953 -5553048905 -5555318017 -5557988971 -5559024813 -5552411345 -5558128479 -5559772622 -5557065509 -5556907433 -5552650754 -5558538687 -5553176306 -5555592565 -5555315487 -5557176938 -5559440881 -5553557993 -5558474082 -5552087114 -5552087114 -5555091383 -5554881085 -5552353726 -5556508603 -5553547104 -5556672043 -5554034102 -5556877632 -5556387619 -5552930599 -5553714142 -5555617468 -5552146585 -5553714142 -5554354010 -5554354010 -5557268571 -5555284427 -5558041235 -5557703964 -5552586726 -5553395569 -5558894047 -5554001467 -5554345946 -5558682270 -5558682270 -5553302696 -5559041911 -5553135921 -5559466325 -5555006434 -5559440881 -5553317465 -5553557993 -5555050861 -5552581799 -5552581799 -5555896510 -5552166319 -5556583481 -5555050861 -5552166319 -5555603215 -5557586339 -5552144871 -5555091383 -5555774294 -5552728442 -5559516691 -5559214497 -5559730494 -5554353477 -5553063863 -5559960243 -5553209206 -5556537930 -5555848323 -5558822901 -5557087464 -5558050416 -5559363979 -5553048905 -5559041911 -5554476746 -5555006434 -5556407407 -5555699353 -5557087464 -5554107516 -5559904661 -5552146585 -5555443145 -5556764110 -5559903808 -5559632128 -5558945948 -5558945948 -5555063834 -5558894047 -5555603215 -5559904661 -5556583481 -5552144871 -5554138369 -5555774294 -5556540735 -5556036834 -5553013039 -5552840736 -5556896328 -5553525787 -5558816406 -5554401225 -5553209206 -5555848323 -5557324659 -5552871462 -5554177692 -5558050416 -5552569278 -5554753149 -5554354010 -5552901307 -5552901307 -5558751138 -5553444703 -5555443145 -5554806740 -5557352957 -5556407407 -5554352852 -5557555323 -5553170091 -5554431584 -5552172942 -5556356064 -5552388108 -5552912306 -5556354463 -5552087376 -5557770172 -5552008689 -5553058588 -5559904126 -5558935490 -5552131557 -5555054504 -5552271621 -5555050861 -5555054504 -5554107516 -5553330495 -5553941873 -5555050861 -5558763139 -5555059345 -5552190099 -5558286514 -5552146585 -5554716578 -5554716578 -5558847998 -5553362389 -5554401225 -5554276306 -5554276306 -5558829079 -5554130240 -5552776222 -5555070167 -5554650353 -5552776222 -5556365753 -5556625350 -5553141973 -5552240784 -5555180934 -5554358850 -5555517941 -5554012188 -5555004149 -5555004149 -5556537930 -5556891148 -5554612296 -5559497591 -5554366087 -5557856809 -5553420368 -5555440660 -5555440660 -5557067982 -5557800633 -5559684208 -5559684208 -5553048905 -5558032080 -5555826139 -5553094374 -5555826139 -5556356064 -5553094374 -5552348684 -5554907454 -5553058588 -5554593084 -5553736792 -5555102551 -5553775173 -5552008689 -5558074421 -5552271621 -5553627942 -5552840736 -5557426959 -5554593084 -5555783154 -5553941873 -5555059345 -5553880365 -5554545971 -5558286514 -5558960097 -5557173434 -5558474082 -5554876003 -5555520055 -5553184966 -5552871462 -5557342102 -5553141973 -5556625350 -5558829079 -5554464236 -5555782091 -5552329283 -5554091818 -5553095742 -5555900494 -5559044005 -5559631398 -5552844302 -5557985767 -5554012188 -5554864285 -5559065754 -5554751737 -5554354010 -5556625625 -5556625625 -5558032080 -5554907454 -5557769297 -5552044271 -5557182867 -5552973036 -5557182867 -5558638661 -5559911292 -5555534432 -5559911292 -5559214572 -5552073900 -5557426305 -5555783154 -5552144967 -5552388108 -5555146289 -5557778727 -5558074421 -5557173434 -5553184966 -5558932732 -5552723389 -5558932732 -5552558308 -5559551802 -5555050861 -5557016622 -5557568693 -5553736792 -5552560481 -5558021323 -5555050861 -5552329283 -5554091818 -5555315987 -5554090471 -5556357136 -5559960266 -5557890985 -5554864285 -5552190099 -5558690103 -5552552547 -5558690103 -5554751737 -5554932300 -5559065754 -5554278541 -5552096870 -5552121383 -5554696820 -5555050508 -5555517941 -5557025652 -5555832993 -5557093122 -5555771813 -5553283593 -5552827515 -5559364524 -5553170091 -5559364524 -5557048233 -5557884966 -5552547017 -5558829713 -5552073900 -5556064559 -5555701707 -5554097351 -5554576909 -5555526825 -5554576909 -5555526825 -5552547017 -5555635916 -5557129302 -5552174328 -5552174328 -5558355074 -5557568693 -5554032644 -5552723389 -5552560481 -5556732133 -5554032644 -5555967795 -5554295458 -5559551802 -5553734614 -5557183004 -5559363979 -5553652050 -5554035226 -5556027308 -5559960266 -5557873635 -5557324659 -5554335264 -5552457570 -5556931054 -5556078837 -5552552547 -5552295483 -5553915812 -5556896328 -5553991921 -5559970518 -5556020864 -5555614349 -5556020864 -5556542168 -5554932300 -5555050508 -5559887089 -5555832993 -5552850848 -5555771813 -5553283593 -5557622385 -5553555893 -5557884966 -5553173463 -5555635542 -5552091642 -5555520932 -5555520932 -5555686173 -5557016622 -5552000229 -5557182867 -5554715129 -5556732133 -5552991250 -5557183004 -5557732351 -5556604980 -5554715490 -5552627113 -5553205881 -5553743316 -5553968260 -5558021323 -5553350609 -5558225901 -5558225901 -5554335264 -5558858078 -5554726718 -5557156220 -5552295483 -5555050861 -5554400219 -5554034102 -5553365287 -5558895202 -5555377331 -5555050861 -5559472318 -5558895202 -5558926329 -5559044005 -5553095742 -5555614349 -5558899235 -5553550742 -5552850848 -5558829713 -5556903157 -5555443830 -5555022781 -5558026056 -5559231459 -5553173463 -5553203396 -5555635542 -5558989194 -5552091642 -5555572800 -5559897465 -5552000229 -5555935051 -5553465315 -5556196234 -5554715129 -5555631799 -5557079104 -5553093101 -5553328482 -5559067772 -5554936719 -5553936269 -5554210126 -5554210126 diff --git a/splunk_eventgen/samples/networkProvider.sample b/splunk_eventgen/samples/networkProvider.sample deleted file mode 100644 index 5064233a..00000000 --- a/splunk_eventgen/samples/networkProvider.sample +++ /dev/null @@ -1,39 +0,0 @@ -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire \ No newline at end of file diff --git a/splunk_eventgen/samples/oracle11.action.sample b/splunk_eventgen/samples/oracle11.action.sample deleted file mode 100644 index aacd248a..00000000 --- a/splunk_eventgen/samples/oracle11.action.sample +++ /dev/null @@ -1,20 +0,0 @@ -100 -101 -102 -100 -101 -102 -100 -101 -102 -43 -51 -52 -53 -54 -55 -79 -108 -109 -114 -115 \ No newline at end of file diff --git a/splunk_eventgen/samples/oracleUserNames.sample b/splunk_eventgen/samples/oracleUserNames.sample deleted file mode 100644 index 55db3c2c..00000000 --- a/splunk_eventgen/samples/oracleUserNames.sample +++ /dev/null @@ -1,24 +0,0 @@ -scott -dba_user_1 -dba_user_2 -dba_user_3 -oracle_1 -oracle_2 -oracle_3 -oracle_4 -oracle_5 -oracle_6 -oracle_7 -oracle_8 -oracle_9 -oracle_10 -oracle_11 -oracle_12 -oracle_13 -oracle_14 -oracle_15 -oracle_16 -oracle_17 -oracle_18 -oracle_19 -oracle_20 \ No newline at end of file diff --git a/splunk_eventgen/samples/orderType.sample b/splunk_eventgen/samples/orderType.sample deleted file mode 100644 index 61c7b11d..00000000 --- a/splunk_eventgen/samples/orderType.sample +++ /dev/null @@ -1,6 +0,0 @@ -New -New -Change -Change -Change -Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/orig.sample.mobilemusic.csv b/splunk_eventgen/samples/orig.sample.mobilemusic.csv deleted file mode 100644 index bee172e5..00000000 --- a/splunk_eventgen/samples/orig.sample.mobilemusic.csv +++ /dev/null @@ -1 +0,0 @@ -index,host,source,sourcetype,_raw main,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. main,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" main,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO sample.mobilemusic.csv.origRADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/phones.sample b/splunk_eventgen/samples/phones.sample deleted file mode 100644 index 091173af..00000000 --- a/splunk_eventgen/samples/phones.sample +++ /dev/null @@ -1,69 +0,0 @@ -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4-8,iPhone,iPhone 4 8 Gig -IP4-8,iPhone,iPhone 4 8 Gig -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -SGS2,Android,Samsung GALAXY S2 -SGS2,Android,Samsung GALAXY S2 -SGS2,Android,Samsung GALAXY S2 -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SS,Android,Samsung Stratosphere -MDB,Android,Motorola Droid Bionic -MDB,Android,Motorola Droid Bionic -MDR,Android,Motorola Droid Razr -MDR,Android,Motorola Droid Razr -HE4G,Android,HTC Evo 4G -HE4G,Android,HTC Evo 4G -HDI,Android,HTC Droid Incredible -LGR,Android,LG Revolution -NL700,Windows Phone,Nokia Lumia 700 -NL1600,Windows Phone,Nokia Lumia 1600 -SFF,Windows Phone,Samsung Focus Flash -BBC,Blackberry,Blackberry Curve 9360 -BBT,Blackberry,Blackberry Torch 91660 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -MTUN,Feature,Motorola Tundra -MTUN,Feature,Motorola Tundra \ No newline at end of file diff --git a/splunk_eventgen/samples/plans.sample b/splunk_eventgen/samples/plans.sample deleted file mode 100644 index 9c678ef1..00000000 --- a/splunk_eventgen/samples/plans.sample +++ /dev/null @@ -1,24 +0,0 @@ -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text -900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text -ULPOST70,PostPaid,69.99,Unlimited,Nationwide Unlimited Minutes, Unlimited Text, Unlimited Data -5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -2100POST5L110,PostPaid,109.99,2100 Minute Family,Nationwide 2100 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -ULPOST5L120,PostPaid,119.99,2100 Minute Family,Nationwide Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -ULPRE2D,PrePaid,60.00,Unlimited Prepaid,Nationwide Prepaid Daily Unlimited Minutes, $2/Day, Unlimited Mobile to Mobile, Unlimited Data \ No newline at end of file diff --git a/splunk_eventgen/samples/radPIDs.sample b/splunk_eventgen/samples/radPIDs.sample deleted file mode 100644 index c94ffb74..00000000 --- a/splunk_eventgen/samples/radPIDs.sample +++ /dev/null @@ -1,3 +0,0 @@ -2363 -12676 -12548 \ No newline at end of file diff --git a/splunk_eventgen/samples/radhosts.sample b/splunk_eventgen/samples/radhosts.sample deleted file mode 100644 index c5d92cbc..00000000 --- a/splunk_eventgen/samples/radhosts.sample +++ /dev/null @@ -1,3 +0,0 @@ -aaa1 -aaa2 -aaa3 \ No newline at end of file diff --git a/splunk_eventgen/samples/random_domains.sample b/splunk_eventgen/samples/random_domains.sample deleted file mode 100644 index 1a35bb4f..00000000 --- a/splunk_eventgen/samples/random_domains.sample +++ /dev/null @@ -1,73 +0,0 @@ -ryanzdimyxojlks.ac -xyosowlnwqaihkq.by -dxqjhxwvqnnaeja.com -tkhwesmptszdody.dm -nrsosrvzugflgrr.edu -cpzwbasblwxuslm.fo -ymtwccawahahbln.gov -traqoovhxmnlzsw.hn -rlmzjhmoavhvecn.info -gtryuifjydlebbw.jobs -kisebvtvvbwpqvs.kp -uxdtcpgatmrkusb.ly -dtutxaqyplrqawt.mil -awgnwunsglcdniy.net -tfrrmvpxtgsqkgx.org -emyadlwbzdcvkji.post -becfmwohxowgrin.ro -zqtpdchgtqfaxeg.sm -qsjchqcocvyrfvf.travel -eetnpmejmgcjuts.ug -rpuqtuhgwosvgrw.vc -bbijrgibymvwkqh.wf -jpmnwejftfqnmdj.xn--11b5bs3a9aj6g -ctimibiiriizsfe.xn--9t4b11yi5a -jhievxgnocibcid.xn--pgbs0dh -wzpsynmmqaaytvk.xn--yfro4i67o -sbmbsavwlynzcdt.ye -umivkuhkfmnuqie.za -grrwtjyyrtrupmf.ac -vpsircrczggyxti.by -qdpqjkvtbrsvsfu.com -ttbxwberplbcpjt.dm -mpesgkjkvrvxttk.edu -yfgjawitvcjtlwx.fo -tlcficjhlotnbnw.gov -qlcasnxbwukyogy.hn -ovuroahuiqgstho.info -zkotiwaewxfbsra.jobs -omizpmexfthdtkn.kp -etabjoqkfincucc.ly -wunehceccozhicb.mil -vasfeglzezfrhin.net -ondbxluvhhdfrzz.org -rvpfszpypaprorv.post -ufcyhlsjhnilxyu.ro -cpynvdqsyyrmotr.sm -qmaeaqfaminmtyd.travel -bvaiwgaqcdsxupe.ug -ddqulhrvujjvanx.vc -pafzyzkypzovtmi.wf -dcaioweydsfexnz.xn--11b5bs3a9aj6g -hmrdxjpzmcdjpug.xn--9t4b11yi5a -gqtavlakkdkcryl.xn--pgbs0dh -dytwkhnhsuulniq.xn--yfro4i67o -saeleofdezzuvfs.ye -hojdytnzcsvpkok.za -pcqxcoxljjtcrui.ac -ymfojvebwimzpzm.by -vbhnlghrkdvbpov.com -rqsszeznvhhbrah.dm -ztluylwgnmpgcac.edu -ufvmgvfvklsrfgf.fo -abgyotorvogikfm.gov -dpznommctrfaycs.hn -qhkhdkextwrztdm.info -frlkmlrpxsjcmbx.jobs -rxqdywdxhfhckte.kp -buajzkdmvrsyljm.ly -juvzvpjgiuwvpfo.mil -bdprepgvmaafowj.net -aldpagsgbplmxli.org -meyeagtuyybatkh.post -vbdcxghnetrwljh.ro \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.businessevent b/splunk_eventgen/samples/sample.businessevent deleted file mode 100644 index c5914af3..00000000 --- a/splunk_eventgen/samples/sample.businessevent +++ /dev/null @@ -1 +0,0 @@ -2011-10-11 16:30:20,072,Event [Event=UpdateBillingProvQuote, timestamp=1318375820071, properties={JMSCorrelationID=NA, JMSMessageID=ID:ESP-PD.289F4E3F7A381:CEBE7D53, orderType=ChangeESN, quotePriority=NORMAL, conversationId=ESB~47af426612b50c97:5a04ce5c:132f52c51600:440d, credits=NA, JMSReplyTo=pub.esb.genericasync.response, timeToLive=-1, serviceName=UpdateBillingProvisioning, esn=NA, accountNumber=71081182961, MethodName=InternalEvent, AdapterName=UpdateBillingProvQuote, meid=NA, orderNumber=NA, quoteNumber=60354607, ReplyTo=NA, userName=cid, EventConversationID=NA, mdn=8322976226, accountType=PostPaid, marketCity="Houston", marketState=TX, marketZip=55555, billingCycle=5, autoBillPayment=T, phoneCode=IP4S, phoneType=iPhone, phoneName="iPhone 4S", planCode=700UD, planType=PostPaid, planPrice=45, planName="700 Minute Unlimited Data", planDescription="Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Texting, Unlimited Data", networkProviderName=Native}] \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic b/splunk_eventgen/samples/sample.mobilemusic deleted file mode 100644 index a8e1b03d..00000000 --- a/splunk_eventgen/samples/sample.mobilemusic +++ /dev/null @@ -1,3 +0,0 @@ -May 28 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. -2012-05-28 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 "Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" 200 0 0 468 1488 -May 28 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic.csv b/splunk_eventgen/samples/sample.mobilemusic.csv deleted file mode 100644 index 797ec2fa..00000000 --- a/splunk_eventgen/samples/sample.mobilemusic.csv +++ /dev/null @@ -1,6 +0,0 @@ -index,host,source,sourcetype,_raw -oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:125 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 200 0 0 468 1488" -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:137 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" -oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.tutorial1 b/splunk_eventgen/samples/sample.tutorial1 deleted file mode 100644 index 67d004c1..00000000 --- a/splunk_eventgen/samples/sample.tutorial1 +++ /dev/null @@ -1,2020 +0,0 @@ -index,host,source,sourcetype,"_raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=506" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=506" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44392" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4585" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229725, instantaneous_eps=1.450299, average_kbps=0.187305, total_k_processed=4351, kb=7.127930, ev=45, load_average=1.409668" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=14, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=507" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=507" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44468" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4589" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229747, instantaneous_eps=1.450238, average_kbps=0.187356, total_k_processed=4358, kb=7.128906, ev=45, load_average=1.789551" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44544" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229712, instantaneous_eps=1.450219, average_kbps=0.187407, total_k_processed=4365, kb=7.127930, ev=45, load_average=1.492676" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44620" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=3, cumulative_hits=4596" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229731, instantaneous_eps=1.450336, average_kbps=0.187457, total_k_processed=4372, kb=7.127930, ev=45, load_average=1.444336" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.963 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.974 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 84.80 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=mpool, max_used_interval=10761, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=509" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=509" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44696" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4603" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.233630, instantaneous_eps=1.450311, average_kbps=0.187508, total_k_processed=4379, kb=7.249023, ev=45, load_average=1.162598" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.219592, eps=1.385853, kb=6.813477, ev=43, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014037, eps=0.064458, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=43, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=510" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=510" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=44773" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4607" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236177, instantaneous_eps=1.482525, average_kbps=0.187559, total_k_processed=4386, kb=7.328125, ev=46, load_average=1.863281" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=22, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:25:04.953 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:25:15.391 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=1436 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=292" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=511" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=511" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=95, cumulative_hits=44868" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4630" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.315106, instantaneous_eps=2.062395, average_kbps=0.187694, total_k_processed=4395, kb=9.778320, ev=64, load_average=1.803711" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243166, eps=1.546796, kb=7.545898, ev=48, avg_age=0.979167, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.240145, eps=1.514571, kb=7.452148, ev=47, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229728, eps=1.450122, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236966, eps=1.482347, kb=7.353516, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=mpool, max_used_interval=14851, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=512" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=512" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=112, cumulative_hits=44980" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4650" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.405086, instantaneous_eps=2.623319, average_kbps=0.187959, total_k_processed=4407, kb=12.507812, ev=81, load_average=2.545898" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.279 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:26:16.298 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6853 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=mpool, max_used_interval=12307, max_used=95646, avg_rsv=251, capacity=268435456, used=688" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=513" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=513" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45087" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4673" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.376027, instantaneous_eps=2.449070, average_kbps=0.188179, total_k_processed=4418, kb=11.668945, ev=76, load_average=2.261719" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=3, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251597, eps=1.579006, kb=7.807617, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=mpool, max_used_interval=12606, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=514" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=514" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=104, cumulative_hits=45191" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=18, cumulative_hits=4691" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.361229, instantaneous_eps=2.352349, average_kbps=0.188399, total_k_processed=4429, kb=11.209961, ev=73, load_average=1.763672" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:27:16.362 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6817 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.373 INFO Metrics - group=mpool, max_used_interval=12985, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=515" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=515" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45298" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4714" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.374176, instantaneous_eps=2.449107, average_kbps=0.188618, total_k_processed=4440, kb=11.611328, ev=76, load_average=1.811523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251538, eps=1.579030, kb=7.805664, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=516" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=516" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=90, cumulative_hits=45388" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4724" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.298454, instantaneous_eps=1.901243, average_kbps=0.188751, total_k_processed=4449, kb=9.261719, ev=59, load_average=1.978027" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:00.924 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:28:16.424 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=3977 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=mpool, max_used_interval=12292, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=293" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=517" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=517" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4747" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.331881, instantaneous_eps=2.159083, average_kbps=0.188927, total_k_processed=4459, kb=10.298828, ev=67, load_average=2.186035" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264567, eps=1.675706, kb=8.209961, ev=52, avg_age=0.019231, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261546, eps=1.643481, kb=8.116211, ev=51, avg_age=0.019608, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251129, eps=1.579031, kb=7.792969, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258367, eps=1.611256, kb=8.017578, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:52.363 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=mpool, max_used_interval=14856, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=518" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=518" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=105, cumulative_hits=45591" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.369509, instantaneous_eps=2.392134, average_kbps=0.189145, total_k_processed=4470, kb=11.430664, ev=74, load_average=2.300293" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.298070, eps=1.874916, kb=9.220703, ev=58, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.295039, eps=1.842590, kb=9.126953, ev=57, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.950 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.961 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 76.48 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:29:17.392 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=4388 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=mpool, max_used_interval=13875, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=519" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=519" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45689" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=16, cumulative_hits=4783" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.345734, instantaneous_eps=2.159124, average_kbps=0.189319, total_k_processed=4480, kb=10.728516, ev=67, load_average=1.769043" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284335, eps=1.772415, kb=8.823242, ev=55, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=mpool, max_used_interval=12892, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=520" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=520" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=82, cumulative_hits=45771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4787" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.264461, instantaneous_eps=1.643410, average_kbps=0.189409, total_k_processed=4488, kb=8.207031, ev=51, load_average=1.705078" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=51, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - splunk-system-user [15/Sep/2012:22:30:29.494 -0700] ""POST /servicesNS/nobody/ui_examples/saved/searches/Sample%20scheduled%20search/notify?trigger.condition_state=1 HTTP/1.0"" 200 256 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/scheduler.log",scheduler,"09-15-2012 22:30:29.498 INFO SavedSplunker - savedsearch_id=""nobody;ui_examples;Sample scheduled search"", user=""nobody"", app=""ui_examples"", savedsearch_name=""Sample scheduled search"", status=success, digest_mode=1, scheduled_time=1347773400, dispatch_time=1347773429, run_time=0.263, result_count=5, alert_actions="""", sid=""scheduler__nobody_dWlfZXhhbXBsZXM_U2FtcGxlIHNjaGVkdWxlZCBzZWFyY2g_at_1347773400_5d094f1622375e86"", suppressed=0, thread_id=""AlertNotifierWorker-0""" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=521" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=521" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=45849" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=searchscheduler, dispatched=1, skipped=0, total_lag=29, max_ready=0, max_pending=0, max_lag=29, max_running=0, actions_triggered=0, completed=1, total_runtime=0.263, max_runtime=0.263" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.251102, instantaneous_eps=1.514604, average_kbps=0.189456, total_k_processed=4495, kb=7.791992, ev=47, load_average=1.481934" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/scheduler.log"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""scheduler"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, user=splunk-system-user, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:30:39.075 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.501 INFO Metrics - group=mpool, max_used_interval=12615, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=2, cumulative_hits=296" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=522" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=522" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=99, cumulative_hits=45948" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4820" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.347846, instantaneous_eps=2.191169, average_kbps=0.189630, total_k_processed=4505, kb=10.794922, ev=68, load_average=0.939453" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.280945, eps=1.707823, kb=8.718750, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261687, eps=1.643377, kb=8.121094, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:31:17.513 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2958 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=mpool, max_used_interval=13874, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=103, cumulative_hits=46051" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=17, cumulative_hits=4837" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362707, instantaneous_eps=2.320315, average_kbps=0.189845, total_k_processed=4516, kb=11.254883, ev=72, load_average=1.306641" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032227, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284312, eps=1.772463, kb=8.822266, ev=55, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.535 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.400 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=85, cumulative_hits=46136" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=6, cumulative_hits=4843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.277605, instantaneous_eps=1.749341, average_kbps=0.189935, total_k_processed=4524, kb=8.569336, ev=54, load_average=1.299316" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:32:18.412 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2000 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=mpool, max_used_interval=12291, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=525" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=525" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=81, cumulative_hits=46217" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4850" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.258340, instantaneous_eps=1.611281, average_kbps=0.190023, total_k_processed=4532, kb=8.016602, ev=50, load_average=1.508789" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251102, eps=1.579056, kb=7.791992, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.459 INFO Metrics - group=mpool, max_used_interval=11558, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=526" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=526" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4854" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236367, instantaneous_eps=1.482534, average_kbps=0.190069, total_k_processed=4539, kb=7.333984, ev=46, load_average=1.604004" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=47, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.490 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46370" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4858" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229703, instantaneous_eps=1.450162, average_kbps=0.190115, total_k_processed=4546, kb=7.127930, ev=45, load_average=1.450195" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.901 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.912 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 36.75 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=528" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=528" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46446" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4862" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229721, instantaneous_eps=1.450274, average_kbps=0.190161, total_k_processed=4553, kb=7.127930, ev=45, load_average=1.360352" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.550 INFO Metrics - group=mpool, max_used_interval=11881, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=529" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=529" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=46524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4869" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.243738, instantaneous_eps=1.514608, average_kbps=0.190207, total_k_processed=4560, kb=7.563477, ev=47, load_average=1.221680" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450157, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=48, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=530" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=530" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46601" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4873" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236166, instantaneous_eps=1.482460, average_kbps=0.190253, total_k_processed=4567, kb=7.328125, ev=46, load_average=1.238770" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms -09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0 -09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:35:21,387 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms -2012-09-15 22:36:36 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms -2012-09-15 22:36:36 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:24,887 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.321 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms -2012-09-15 22:36:36 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:30,164 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms -127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms -127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688 -127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms -127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms -127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms -127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms -127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, system total, active_hist_searches=4, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=4, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.487 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565317c433ec70 310ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:45,491 - admin search index=main | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.494 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.617 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.675 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.733 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.790 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 7135 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.811 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1923 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531cf1675b70 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.817 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 624 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d162a9d0 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.822 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 7959 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d262a470 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.828 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2181 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.831 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 8217 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.832 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 882 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.883 -0700] ""POST /en-US/api/search/jobs/1347773730.619/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a230 49ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.886 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3940 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a210 36ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10922 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.926 -0700] ""POST /services/search/jobs/1347773730.619/control HTTP/1.1"" 200 383 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.959 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1932 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f54334670 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.961 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1465 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f6433e310 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.969 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10238 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f862a510 35ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2190 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10496 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.985 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1723 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.026 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532061de6b90 57ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.034 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653208433b910 42ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.038 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.042 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.049 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 397 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.051 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1071 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320d4334d50 242ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.060 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3942 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320f62a910 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.082 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.083 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.101 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.113 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.126 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.158 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677850 116ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.159 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1949 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677cd0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.161 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653229273c790 114ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.185 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565322f4326d10 70ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.207 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2207 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.216 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.217 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.219 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.466 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3960 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532774277b10 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.472 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10946 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.487 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327c1de6d10 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.489 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d433e6f0 69ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.491 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d2740e10 65ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.501 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532802740290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.517 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.111 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 4073 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565331c4331350 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.116 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.131 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653321273c070 35ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.133 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533224331cd0 65ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.135 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533221672690 67ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.143 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653324432fc10 137ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.145 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533254325c30 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.156 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.157 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.158 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.170 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565332b432f270 75ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.256 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.684 -0700] ""GET /en-US/api/search/jobs/1347773745.621/result?isDownload=true&timeFormat=%25FT%25T.%25Q%25%3Az&maxLines=0&count=0&filename=sample.tutorial4&outputMode=csv&spl_ctrl-limit=unlimited&spl_ctrl-count=10000 HTTP/1.1"" 200 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556546af1e943b0 40ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.690 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=1&output_mode=xml HTTP/1.1"" 200 1055 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.703 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.714 -0700] ""GET /servicesNS/admin/search/search/jobs/1347773745.621/results/export?output_mode=csv&f=index&f=host&f=source&f=sourcetype&f=_raw HTTP/1.1"" 200 442032 - - - 634ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055654d6b4325050 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.425 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=mpool, max_used_interval=23242, max_used=95646, avg_rsv=251, capacity=268435456, used=1138" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=47, cumulative_hits=438" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=532" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=532" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=214, cumulative_hits=47131" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=295.993347, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=37, cumulative_hits=4968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.262388, instantaneous_eps=5.957074, average_kbps=0.193592, total_k_processed=4659, kb=38.780273, ev=183, load_average=1.042480" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.262388, eps=5.957074, kb=38.780273, ev=183, avg_age=0.901639, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.054263, eps=4.427115, kb=32.386719, ev=136, avg_age=1.213235, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.115 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565551d1e942f0 23ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.123 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.134 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:36:35.965 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=mpool, max_used_interval=54719, max_used=95646, avg_rsv=252, capacity=268435456, used=54719" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=3, cumulative_hits=441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=533" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=533" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=13.472726, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=260.400024, executes=248, cumulative_hits=47379" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=105.671432, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=17.018181, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4991" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.631942, instantaneous_eps=7.030721, average_kbps=0.195419, total_k_processed=4709, kb=50.369141, ev=217, load_average=1.270508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=4, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.631942, eps=7.030721, kb=50.369141, ev=217, avg_age=46.626728, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.620994, eps=6.933522, kb=50.031250, ev=214, avg_age=47.280374, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=183, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565896b1672ef0 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.424 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=mpool, max_used_interval=68161, max_used=95646, avg_rsv=252, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=6, cumulative_hits=447" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=92, cumulative_hits=47471" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=11, cumulative_hits=5002" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362699, instantaneous_eps=1.965783, average_kbps=0.195624, total_k_processed=4720, kb=11.254883, ev=61, load_average=1.154297" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.362699, eps=1.965783, kb=11.254883, ev=61, avg_age=0.032787, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292897, eps=1.772427, kb=9.088867, ev=55, avg_age=0.036364, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.114 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565911d1668190 23ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.122 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.132 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.546 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4417 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a38b1672e50 383ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.582 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.601 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.613 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.825 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 8912 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.834 -0700] ""GET /services/search/jobs/1347773859.646/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21348 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.860 -0700] ""GET /services/search/jobs/1347773859.646/results?count=84&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14687 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.878 -0700] ""POST /services/search/jobs/1347773859.646/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:40.846 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5005 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a4d81672f70 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.029 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6071672850 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:42,032 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.035 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:42,050 ERROR [505565a6071672850] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.062 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6101672ff0 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.069 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.079 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.273 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8461e1e7f0 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,276 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.280 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,282 ERROR [505565a8461e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.898 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8e61672c50 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,902 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.906 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,908 ERROR [505565a8e61672c50] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.083 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565aa151e1e7f0 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:46,087 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.090 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:46,093 ERROR [505565aa151e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=mpool, max_used_interval=13395, max_used=95646, avg_rsv=252, capacity=268435456, used=2972" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=15, cumulative_hits=462" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=535" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=535" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=127, cumulative_hits=47598" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=41, cumulative_hits=5043" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.575686, instantaneous_eps=3.096366, average_kbps=0.196077, total_k_processed=4737, kb=17.848633, ev=96, load_average=1.330566" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.575686, eps=3.096366, kb=17.848633, ev=96, avg_age=0.906250, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.507179, eps=2.580305, kb=15.724609, ev=80, avg_age=1.087500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=5, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:49,866 - admin search index=main | reveres | table index, host, source, sourcetype, _raw" diff --git a/splunk_eventgen/samples/sample.tutorial2 b/splunk_eventgen/samples/sample.tutorial2 deleted file mode 100644 index ca8bd283..00000000 --- a/splunk_eventgen/samples/sample.tutorial2 +++ /dev/null @@ -1,274 +0,0 @@ -Mar 1 00:01:50.575: %SYS-5-CONFIG_I: Configured from console by console -Mar 1 00:01:51.047: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 1 00:01:52.047: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up -Mar 1 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 1 00:04:37.815: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:04:42.135: OSPF: Send with youngest Key 1 -Mar 1 00:04:47.607: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:04:52.071: OSPF: Send with youngest Key 1 -Mar 1 00:04:57.091: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:05:01.095: OSPF: Send with youngest Key 1 -Mar 5 07:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 5 07:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 5 07:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 7 02:22:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 7 02:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 7 02:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 7 02:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 8 12:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 19:49:00.000: %SYS-6-CLOCKUPDATE: System clock has been updated from 00:05:06 UTC Fri Mar 1 2002 to 19:49:00 UTC Mon Mar 9 2012, configured from console by console. -Mar 9 19:49:00.411: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 9 19:49:04.483: OSPF: Send with youngest Key 1 -Mar 9 19:49:10.395: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 9 19:49:13.723: OSPF: Send with youngest Key 1 -Mar 9 19:49:28.407: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x622AC624, alignment 0 -Pool: Processor Free: 21244 Cause: Memory fragmentation -Alternate Pool: None Free: 0 Cause: No Alternate pool - -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x622AC62C 0x622AD9D8 0x622AE560 0x622AFEC4 0x6252CD28 0x6252D120 0x6252E004 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 -Mar 9 19:49:28.407: %SYS-2-CHUNKEXPANDFAIL: Could not expand chunk pool for regex. No memory available -Process= "Chunk Manager", ipl= 4, pid= 1, -Traceback= 0x6144B520 0x60024E24 0x6273BAAC 0x6273BA90 -Mar 9 19:49:28.487: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x62551FB0 0x62552584 0x6252C7CC 0x6252DA78 0x6252E014 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 9 19:49:37.099: %SYS-5-CONFIG_I: Configured from console by console -Mar 9 19:50:30.499: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x6254F9F8, alignment 0 -Pool: Processor Free: 29796 Cause: Memory fragmentation -Alternate Pool: None Free: 0 Cause: No Alternate pool - -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x6254FA00 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 -Mar 9 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 9 19:50:35.303: %SYS-5-CONFIG_I: Configured from console by console -Mar 9 19:51:41.523: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:52:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:52:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:53:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:53:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:54:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:54:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:55:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:55:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:56:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:56:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:57:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:57:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:58:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:58:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:59:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:59:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 20:00:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 20:00:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 21:40:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 9 22:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 9 22:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 9 22:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 9 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 9 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 9 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 10 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:03:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:04:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:05:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:10:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 10:40:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 10:50:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 11:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 12:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 11 08:13:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:15:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:15:20.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:16:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:17:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:18:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 22:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 11 17:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 12 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 12 15:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 14 05:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 15 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 19 20:01:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:01:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:02:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:02:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:03:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:03:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:04:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:04:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:05:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:05:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 19 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 19 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 20 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 21 08:41:38.199: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:41:47.039: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:47 UTC Wed Mar 21 2012 -Mar 21 08:41:49.451: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:49 UTC Wed Mar 21 2012 -Mar 21 08:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 -Mar 21 08:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 -Mar 21 08:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 -Mar 21 08:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 08:42:38.027: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:38 UTC Wed Mar 21 2012 -Mar 21 08:42:45.115: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:45 UTC Wed Mar 21 2012 -Mar 21 08:42:48.983: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:48 UTC Wed Mar 21 2012 -Mar 21 08:42:55.475: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:55 UTC Wed Mar 21 2012 -Mar 21 08:42:59.747: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:59 UTC Wed Mar 21 2012 -Mar 21 08:46:07.527: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:46:08.923: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:46:09.923: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up -Mar 21 08:46:28.435: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:47:01.147: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Init -Mar 21 08:47:02.203: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:47:21.659: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:48:46.283: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:48:50.003: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:49:00.575: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 21 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 21 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:53:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 21 09:00:54.371: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:02:54.743: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 09:03:00.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 21 09:03:10.547: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:03:10.915: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:03:59.615: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:03:59.907: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:04.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 21 09:04:05.007: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:05.275: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:25.631: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:26.243: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:31.343: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:31.755: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:06:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 21 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 10:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 -Mar 21 10:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 -Mar 21 10:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 -Mar 21 10:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:43:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:44:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:45:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:46:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:47:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:48:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:49:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:50:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:51:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:52:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:53:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:54:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:55:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:56:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:57:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:58:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:59:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:00:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:01:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:02:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:03:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:04:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:05:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:06:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:07:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:08:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:09:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:10:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 22 09:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 23 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:51:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:51:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:52:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:52:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:52:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:52:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:53:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:54:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 23 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 24 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). diff --git a/splunk_eventgen/samples/sample.tutorial3 b/splunk_eventgen/samples/sample.tutorial3 deleted file mode 100644 index 0ee0619c..00000000 --- a/splunk_eventgen/samples/sample.tutorial3 +++ /dev/null @@ -1 +0,0 @@ -2012-09-14 16:30:20,072 transType=ReplaceMe transID=000000 transGUID=0A0B0C userName=bob city="City" state=State zip=00000 value=0 diff --git a/splunk_eventgen/samples/sample.tutorial4 b/splunk_eventgen/samples/sample.tutorial4 deleted file mode 100644 index 20f40e7d..00000000 --- a/splunk_eventgen/samples/sample.tutorial4 +++ /dev/null @@ -1,4 +0,0 @@ -index,host,source,sourcetype,_raw -main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:28:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 open" -main,www.splunk.com,/var/log/httpd/access_log,access_custom,"2012-09-14 17:29:11:000 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.12.0.20 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" -main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:30:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 closed" \ No newline at end of file diff --git a/splunk_eventgen/samples/searchArtists.sample b/splunk_eventgen/samples/searchArtists.sample deleted file mode 100644 index 0761bc00..00000000 --- a/splunk_eventgen/samples/searchArtists.sample +++ /dev/null @@ -1,21 +0,0 @@ -Rihanna -Bruno+Mars -LMFAO -Flo+Rida -Katy+Perry -Kanye+West -Adele -David+Guetta -Maroon+5 -T-Pain -Gym+Class+Heroes -Big+Sean -J.Cole -Drake -Toby+Keith -Snoop+Dogg -Foster+The+People -Cobra+Starship -Kelly+Clarkson -Gavin+DeGraw -Luke+Bryan \ No newline at end of file diff --git a/splunk_eventgen/samples/sha1_checksums.sample b/splunk_eventgen/samples/sha1_checksums.sample deleted file mode 100644 index f79c853f..00000000 --- a/splunk_eventgen/samples/sha1_checksums.sample +++ /dev/null @@ -1,1000 +0,0 @@ -8f43e0bac89e62ad971e00963b0272a402419fd2 -d5990ec1660ccf9c43d4e67cbf4ac905ed1f41fd -debbeb03959805463ea63777e4f9457cf925e8fe -7ff82d64bccc5c896d6ea61ea4347bac1a3ea47c -135e485c4635cb2f22d96f7d0d7f77b58bd95d05 -046f14fd4fd13b449f4e0a1bcb57fd308fc1b19f -89e4f285f3d8015664e63d6289142221e06314fe -79f500040ec6555aa948856079f6627ebecc2b70 -ec0e3db341e9636de6274ed0b2fc32de9ad162bb -34e78655c17d87e2e3b5abca3bfdcf389b77d419 -cfdcc8006bdd48cf56ecba0c77b5e8dc14ad2e5d -7d79e4f94538ea319ae0092653cf6d8a777d427d -08ad65558308c762f2782d7179a380040d98b43b -cb8ef13b8d6c09afac0972a903ee5bebeca0ae62 -0dd39fd674706f4aad27181a1e51b79b879847aa -9a1ad1b820919522ca8263721520b7f931b8fe7b -244cc0ba509f0753a16b12d969af8c0ef4b31293 -6e443884b0b07ba53abae72cebc66c444e552d0d -7b91c1a5d2c29a2537a215be91f1b17f7413b3b3 -d03987c966b0a5c045f2dfd9dd6322ad3b0d0d5d -5b2b6ed1591a45a2b3eefa02649a55c8b704595a -cd8e7d0f4aea0154acfeac2e31f6ab8268bad15e -fef8ce08d57ea4570fa052c8bb23f7e357c0ada2 -ed7be8d52be86008f3e8ef29a65db6439fcf0eb7 -25463deebf294f9783bc49a3f40eee11974bdbea -5b9ae9529b3a24962e697949ec0e2f86317f6c15 -1e5fdca95de18cb439df7a0bc47ef1151dd79ef1 -e566cc71ee49042e1466ee991cf09c5ef30314d2 -8d617d0e675bf5e1c14076bc4603393c23fb1912 -a741f7308571e975f0478b7a1879706e4a561e6c -852f36e1468c2efc607e6832eb602d6cfae11141 -11ecaf6c0301ab8151e42f7e5a593c73442922a3 -3c696723e044aee3448825058e515bfd39130e7e -8038a239e8f0919c1ecac3ad9d48ef25315036f7 -4000d274490d909608171ad2cbf563aa498f44ee -7e3967689f66a2030526a0dfe124c3ba51a60a0a -eefb96c42f9f389b4355a61066c91a588b9ecf6f -eafe80fa8bb9d0332e40a4d5e148b8e029ac2d3a -c6e6956149d2fbf73faba54d509d1e2457c44fa0 -f02a338899e6d29de8dc48428aa6d86cb0499dc6 -813b1bd4b8674248668deb50eecfaf424edeec23 -64baaee1853f69e7d72d136de0858073239e978c -d9ca8078d8885eaf233b24dcb78803131a84687b -11b446639ec8b91d1d8dee42168e369abe50d73e -323369d79c1fe0aeb13da93e032a9b9a8eb61e03 -745f7877e88f6ed43688ad8145d5b48595bf52b2 -29bb3e222bae2466e340477d63252e2df8ec71be -f8440d8b4b379d86c1c11dbead8379e67a6866a2 -eb64a44a51fdf790dcf0a8bce63d005897b3e1b0 -f9dfb8b73708c36df76cf4b15cf591c1640fbac1 -fde9cfeb9c70ffae9b8d2e217efc048282d150a9 -dff78cdc36f9a8b10f540420571fa3e37f4b096e -998208107c71cd5930889b0309edb9401efe5567 -f896812812b13bbfd25b1c7e9d424b246eec45d8 -6c23807332aaae8dd0eeb7433e29d80592d8bc67 -b2b897b2b18c8e8dd164aca1e517f3b349266f3c -e4c6648764cab41dcaa054981e2b33ec466d9aac -3b6b16a91a9d4c24294184362caded4161260482 -d8b5e3025347ea6ff9861732924338f5bfddf8ee -15119f0cfa48bb45f1f6112a168c0a12530a597e -c8ea17ace7ba929b110591ef8c5bc62c4cd7f1d3 -23f89e04a4d6f7c46c26e3a7720ad15f3e6efe69 -6252fb60d3797d57ae1a9c69d5be70a3d8fa104a -8336e9b658c57f54da56fd4e36b3a11bac08cb63 -e02715b0b40ac5cb373a61e2968bb1cf7e0db4f4 -eb1f3976b298ed0366931fb8cd496934f3edb46a -fb2801f62a2731c348548d746f197a0505047f45 -855c4464d02b4cc023cc840c388c63e3d868357c -71aafd716684c223d9c7d2bd029ae97acef05585 -335604a88f0649775428e44e27dae6c42b55795d -84548f57569ac73579cf4f93be4322beddaeede6 -4da00f62524a29d536377a101db78fd027131120 -4fc7d1c333ec53005437081e33491f070d3f9a44 -e5ff8f0777969f7c536c856678d24cead1d9cad1 -7f4e00ae9d3e916b1b2116dd9e010e375e61f559 -3a64ed6e45236661edbd4f29e822b4e3463a2361 -63078e26907c7e0bf39caf3b1dbc33e46791c9ac -ce11428e96707ecfe63b5c01adac3429264a70b1 -dfa8427f3dc4a72abbdfb3b01e480916fa7890f5 -694ce787741e6f422b01d29e687a258e92a46ee9 -ecae8a331d7a8b1f83d536444dbde361c54da31d -1b3e887ef869e13e17cfd1f9d382176e815a4921 -41ce8c939dfab847ae11fb67a2766abdfaebb4ca -ced27174ec9520e22d5a7d8cd8d13dda6fbff3fc -6fbe8c8068fce1f7faa7048cf71553ff8818a39e -4a8e24a7e1c20576c87d4c5e6070be73332aba8f -99e811bdadfb0e2ce4f19825f525b6c35d1bc506 -b8db8b2d43689940fd23bf2bae27e40155fdc7d2 -ea7d2ec45b9ba1ddcd8491c67d864970017f0e5c -4afb6238f27c49259b9c3fe94d4bfe46e7981c5c -44dfc1a98af2ca9b01c987c7238e6c9829c0ca79 -7150517ccb77e21b108dd47d749085def371d78d -2884978dd45c124e64033a58eb8a09a159c4f8c5 -c8fd6c6b57bcee96740736e0ccaa2f95b382c590 -8e3314c894189678b461a92b1d634f7375d20382 -c2d818b18452638264eb38f7d9566794084efc98 -507acea6a662d70def1abeb492bc7781f6bd5c30 -3067e11a0decf9e389394b446ce2e11465b73b46 -77825c13fb1fe0ec9da497bd32d1d7d5b9fc1e9c -4dd0ab5cc22dbb7ba80ff5843130764ebc3f4953 -65e4a6169d0d3d9695673eebc90abb55eaf95c8e -6aea9a96e49e6b8a5d22638377fe492c6e6d9014 -54ed81ba14e427a8ff7aba8168a6124abe9ad280 -3bd562c4129c7210b3c3ee52e8b52887d281af0f -88f7cea4edf4a71113c4e53637be8c6c406101e1 -910fa87514244dfeeac94b3771dc9b6e2c442baa -83947fab9bddb434979a81cf7bfc0f1b91c1cf01 -6df00406e815bf118b34e2b20830faf9e9b573ea -773e5b4f3271f97cda1f9969f8dd6d9bb1251f21 -d8f6d7e0b29eb1895434c3fe61f278e12f3f2e30 -cccdd396bf6a6ad0c3921eae99ccdfddb49d71a2 -0f62ff1dc5414e4f7e72605d4f4fb78c195b7506 -45078804a6e5729d3fce86bad2e09f486bb8d922 -4c537ddff9d6fd01fb9ed7d6c67363c7719e81d3 -7981c35772d560e4eaab5bd9ff019dc2675bbf93 -a17d877e92c409baf16383bec5f193e25f9c99cf -de8668b9ca19acbdb47559502eb372fdb6e74519 -ef42fb2683227dc2525215334bb36f9e0a820f6c -b982fad361ff0249be3fd771020b0e26d17ec84c -47532f386b76da71326b5fd0cde8fed00de0df5e -7df732da0d6c1f053d6339fa47859cd4f184cbf5 -7dab3ea7746ecff9cf24eaecfd8e2b8784b36fa4 -444041d27a22117e20120369f1cfcef4aca0b7e3 -dc2bc5f79c88a52c049b2892e5235b9a10783889 -abd0fa7534a994bd8188ca271657684f831f0827 -f3a7c3be7482dafe37c20c4b1e39de8b7a014e66 -20a3ba4d0a4f74ac92ce786662aa804d7a7ee53e -329b5fcde781c4b8b8673d4efeb7d62fa9e6eea9 -c7634078d14b7ba2c6ed05df75840b3af50ecaae -bc845beaeda4c4cbd6ebb73d0fbd7a86686137b2 -b823c619bef218a4f3bd404127748f2256f6dc35 -e60aa47ac79ac2d683251ec4b91e5fc9fd8c9954 -bbb0c88cc607f1cce2a2d4fa11783e317323084b -98da69bc4ac675ca93f942f97693a9f3f1fe9119 -dd51e1c42b9bf4301e7e457f86ee84f56f4e020e -f1226fc18c62d03475b0297efc63823f89159ccf -1202737f4bb24f1002b27b2296cc1f592a14b45a -ef7237cbc6c7bfc16c0ceab13134908a999effed -f0b3be619e2d9d68e05fc16c15abfe88871a035c -6e24917e7715a1759a9f23910596ad5078bc9fa1 -1bd9f10278e871f24c9578426e838614d50f2301 -08743654931b04787f6ba8ff4f5ecec2bdf0f157 -56db6249e148d97e2147d676ba47f03b1deeedaa -78d2a53b72dff2291eaf17382592cdabc5a6d7d8 -6d746643ff20eff7d9aad8dba89a81bcecd090f3 -cc3c5a481258aafb9b8d3b6145c2b04debd532a4 -0b81c6699fd0a0655ae8f1459e66237d0f9be038 -4730f389e62019de95488c28d8c755f11f9bbb99 -c3e0ce4b2de0abeb8648cf154912aae7bf42d8c4 -bb7d3253ac3982c81dac8df293d44485c2b75459 -6d21b614f881d4b15b289847768d1d1f11bd8515 -5d2f9c1fe2119c88a2a44d90c113b9beff5f6496 -9bb5e28ae720e21f3eefb34f74960ba6577180ea -ff991087fb6313d1e1b4be781ae35ac87d796101 -4e438c6e579600dcc42067e23c3778efdca3c6c4 -0c311bfa94f465147c693552e94de28615b9eb18 -980aeb208d9e93a63c1d33ea400bdcc9293498c8 -842d591b38881fc5dcd75445338d6408ddfe4d12 -dea3282c25b5de4cab74793e7fdd31b0495c43dc -3218306b30703ac7968106c64a25ffc51f627a75 -d56ca2edb4df3cf60ab10b346cb25afdd750dea1 -b6b8a83c07cf5a23d570181d9bef184b7b9810fe -ebc7e6f60c43246455410beac016c4108c27d498 -42474a432626c240e80f52d6ff84fc6937156890 -f5dbfb3394680ba54f68765ad5b3e8979660853f -b36b4dc3d5a53832438596ec21a3ff64b15ee855 -a4060e36c6d881def0f855e9a467fefe9a238a86 -e3b0f1ac8c734d1545cac685ed454a4ab7069408 -2e5171e862afd686d9e3d9e8b387cad01ffa9ec1 -b56c6bf91676cf2294a94e8bb9e9b9fc8db539ff -8a36d9bd7d6d3bb10227bc2b12cef43b032dd03e -3f641128a87e46f4fe18ad8ac93eb0405a3ece91 -0e29a268548b1a3c2253be73e261527004f98946 -cfd92aa125380b36e56d2cda3f9d116ddf7c9c61 -17041fa7399d450dc8a3bd10362c0ba4fe46de9a -3e1a47ad15039d9c382c89508121f4c411ec93bc -b9a07505a69721e4a20ad20ec8d58f143226bd36 -86903ad2b03329cd200abb7b5f21813f084ae995 -db1100269fa59df56c331f946452889100fd0f1b -f33f85e8c04c400b1547e11a68dddaf4fea1e8bc -c4c23bddc01fd53f403535c9f88c08218743a516 -cb09982f6579f59d0467e208e6d14ffdadda4fee -58b1cb0e46b5f49e28494f3f0d9e3380cd2773ba -f01dd134139efd23d5eee126f998374c11e9416b -e7143c1cb384ffda7e94d8843352000a9f3771b5 -83c32af057801a7d6129036685159d306cbf6a0d -721c48b7c549bb477dee141286bc40f108f0f1f0 -455f17229f9b46306d784f436e2fd0265f23958a -bc4d2894f8ee8c457b56ef0f72ea8d663e7d9dec -bdb42c5f6e37eebbb04a91dfd49af91b2d5883d0 -42630483ae7d64147a0c819f284624fce8c453df -1df79f087525b50935d6a728e3ba380ac7b5cc8f -56617676a0a6111e910acb8e9fd9ef3e55178d5d -7b66d48661db2cf452f7a78f033c18fc31dc9e96 -5c45bc7e7127b0ccccf2572f6b79c24ca6a88a51 -cfd60c224bb4d14e9539fe993f7cc1e64e4fa5b1 -52bd56e2d935b18dd43ecf8882c5c0c6999b9b7a -2bece31f7e0cffaac62678b98c4c5de1a1b685f1 -8a4d3635bd1a5ee57fc73fed5b75def266ef6d15 -a6c47e51a08f14001346dd3563e11b0fcc40974c -8f083f3e507b817cd45a46788e6cdef759130729 -57cb7b03270450e5c5ae2e239dfc673263b5323f -d253fa85ad2c098dbfa3f7e40fe1ad055e040558 -fd64d55bca1e336b69cbab2cca173bc7c463fb87 -be5ea7619f14c06171ade12858989d0ef526974d -dbdd0206af5fde5d9716151a2513fc4fe86dadba -4519ba2e2742b29b7335ceee4de7f23a3f386a82 -e4ebcfca9d9cc55186bb3946ecf45dc5ad6c6f2f -e0cac937b8a4af5a59c8463ccdc83c85f02e75e5 -0f584b501af1a1d1b83d494df5182bdc8f0a090c -734ce7e53e6bf4e55bec7e5e5fd95ac1806dad72 -7adfab7deb5266ad2b11a75c4bdf520e5a47a80a -1991a9dbf49c5fc4dd4a01f4110b32683270c758 -fde9f109730db49efba744c17dbf77113928c3ab -67cdb7c7ca2053e891d96914057009ef04fedd0d -e5f53780005de2fbd8186914fd9a6c785f114a29 -b205fa7b461e008240f7def1ea2113596a9fdd35 -54f2bff0b90064bf3a0626a1c1d4e1321823dd10 -133d26abac76c2150dbfa916830503a036e00b9d -47e97a08ef89b9028d0aadc0ba44c65cb8e6ccd1 -c62b45680da1cfacdaf83fea284af73f509e68bf -e871eff417cf4120947f0059c31073679351da73 -c32beb7b15b18c8513ff48590f4be352b98eedb0 -5ae9d518dcca4908e5c044dfcf9e95e402a40347 -e1ce99ae4593e81a9df29e4873bf893c3a27ff5c -60a85a10681898ac32fafd9359bcb4c1889e0587 -c862e7f1f77b435d7362147da5e4072977f11d9b -1e540b7f29dc5f50cf076ec871488e803837cc89 -a3476caef8b981156259aaf9390218d28cb6c540 -788fad65622bc3f9ad1f39a05b28b1b4aca5af2d -a43bc6f3b4d5141cca4e97a2984c20893d7f340e -6ab150e47509c93359de7ef7a522f6d9789cbc4e -d34fa0ddb471314e30baf042b8c8560f350f866e -d13af0215d6bbec20310f5331c5a5fcd4e1a7720 -7d4ed057ec238ba3932f296497061493d93ac907 -7f8db1fbf364cf80d4bf85f3cbc706317aed7d7c -07a99de16c26a547a09661e1cc0dcb5de15b63ae -1f39403361d61d6f63669c35d44f54fafd5947a5 -cac63e943650bbc629cfd1a015cee12241d1fa95 -6554e93357e9119de1b5ffa6a341def2c8412670 -a7ad5ec36a37425e4c721e8bb6087b602314432b -b431d6a2db5e79e0c6753d64dd2913d7ffb3ccf7 -63ea4328757c720dbbe5d68dd59f2984404b7c63 -25b3ed62ebe05b4738993e4971538c45ff43bc22 -1fe279e603981b0b2319c606a1886a2a345ae37d -6278bcadc46fdf5bc23ee1f95f71d0912b58aa12 -161c17beae2c4a98804327139c450ade4861d09b -fce9350201e084c400a2ad1b8f44e82007a68ae8 -8ef1c8c10bc6f465eaf1fb031192ca8832dc6fe9 -ca290fdfdbaca08d689d4bc6424cd3adc2d94b83 -b14a748afd708a96baf33f3bdfa0a68a68404cc3 -b355ee59e65e442d5d47e09c4d1a4adbc3eab92a -5a44b2286404537b12b75067303baadeaf58cf6b -042e35c25a23c636342a62904359adf42ee5fa80 -9fcbea49eb08cfdc9252588acaa9e2bb6505761d -df110888a94f9f1d0d3e57dc36d601ff38713d99 -b44dab64e956bcdd6719b085ff97d30044c80f1a -257c3ba27c91ff2961b4b7a8a0974b489ed2df27 -bf1a2e0c49adf023c39b2dc14819faa56e1e6524 -5b37a60dffb97b6bba73fbd61fced418833cd39b -4837d25331e13ff240a939e1b9c867276539214f -b643568f87e0f8af6af7734b750800c4ec69273f -442d5ee582b8bc65e139d9b878fb9a25afd58fb4 -8167eb5d4327454889a642631e462957b0ac6f23 -4fb17f89f0a27586f08ef8a98b83ce4a4b35613f -9c5a4af7870ca4d5f929b581fce0e1537bb4cbe0 -36adad535a80c99e358a13526d86ddfed8ed7c1a -371248997c7188ef9754449dd5f3850fbb6dbc1d -68b63867410c0e3627d65c94c229c1d65dc7b9a3 -09f79d3b0b6d7d20291816be7f75726711112ab6 -d9960959420c70534ccc6073a5e2779003d95834 -9335d7ace2c0a5149049fa742921d2fc8c8933ed -0abbddf2c16dc4e41145cf55dcaccd868e141f91 -58011c9babf5583e5f3f433f1f3ab931d11cfaed -d946a78e9ebda75f655607fe1ee79c8e1e86192f -d2bcb13aaf3437f9dd0ac959b573e6e835374500 -7d78326f226227a0d70c2ff8b922c2a85288ff2e -b8168bcdb73b652d11db9336f988cce5990bc833 -21a289e3406d697b9a6ad3c3d534c7c52049d02e -f53346b3c0802251d69a47ccb485a4cd1a028480 -c840c04109090cebca49e3bd238dc76f42c78033 -460b06fddd834c2b5a577aedecdb55a308b4fa1e -05bdc6bf8c3f02093277f944347133c3cf747040 -3c3b072983bf9e438ce6e4c0d6138262dc9bb998 -e39871bea6fb4e18b480b2a7d63a653bdf391b66 -fb81b20a2a954bb3a11964944aac1f9dfa9698e3 -2677974df51d481c4cab68a37f64354202a61ba7 -5b03e377ea9672b2493e469bc80bcc8cca23fa03 -9a08799cc14ddee16307a4074eb99e81161d98b1 -4da2022083388dec61b6d17bd955fd4989a73117 -5ab460b0f72ac9b12fc843c8d51b21c8749c2d9a -3e232422ceff6f5df0760f82242fd009939d4732 -eae0620ab4fa01e71c59e25562cad00a8f0ef394 -3056d58984623068272ecfe6a675941e13918369 -1d5905d4924f318070c590334da1321d9679a703 -69ef69bdb32cb9608e8a83e0fe93061ab19445fd -2550a27f3f90f2ccc25bb6d1db039c5e5e4317b7 -d71e2498ccd66f8e6f27ec47a78edfd19ada67a9 -d1cbd58629769474c66c4fd1218c02a7f0108bd1 -6f63b646a54e4fd99dc829f5c59e9cef765a7d90 -eb971dfbce994b1d5059c50cba8075b0d7b5a704 -b49b722fb3362d92a660383d05188e2ea6cd2c47 -a406567b826e1556d3c9fdebc4d8f5251431accd -ef237e681704f38a5bd4bcd9d1fd56eb99e8b718 -15bf15308b7b914bc06d36a7219149e53b34882c -0284399fcc478d4f94eef5940cbef172dedbd0b7 -e0b032f0a76945a39144744b715be6574b1f64c2 -f040464bd0687d9fa3d5cefab95584a564973d9f -73ffa728648ac4b2e0dedb0f62a09699434e5d0e -6f2d810709155bf8b085c23de5f128ce3daef428 -86ccedca76193425f1dbc0ee5fa2400867351ca5 -fd2de60a6813877298ef9f84edf48ce3cdef51d6 -15711b4a1e3dda8256101f826fecb7c018d1c825 -d871755ffff5425b343d8bde03345cd5863b6cb6 -2cf2eeba7b6c38b2f69bec30f5a6f8f4206a9ac1 -ae711b2c3740b25271c6e2f6e052147a59a6f02e -8e7d8848bbf34dad445e513770e144e22ac2181f -be375c3174303f7fd178ce0db0197ec9531e7a2b -0bd59a38e0008e62a957a7e5e37ada9fbedbe32e -43a95ebdbfae7ce5e776e0b3547438a39333aca1 -bbdba347dd84b910d13b0b10d60c939fbeef9d39 -0a4b1f129d141eff16386a7f50d30aa861305620 -0368d941fc4cb318a31507f6cfa8372c6c1f11b6 -2ca850e9729d1c09889ca5bb15fc116a13d4b5c3 -ca4cb5862bbb9608c144ec8708ecef6d7dd4b873 -f75d04f53d0fce8987742753f7634fafb71094c6 -e46f410405c31d0843e654b945e66f864a20e42b -e0cce19c892925132c82c2f1ad81477b5d08ff0b -8e3d68bd95c27a50c6cd02fad9352373b3fd7246 -5e848e99955fbb4ec297854d88aca8b925e22cd0 -8e0d39be69d2940633745ed970e03dd6218a5eb3 -efcc936fe9e6129defee9358903c4db313f4b780 -976055fb24b3079ea56d0e5eb2507a812a4f063c -47bd2bc5172cd9224d266afaceea785772973baf -bbe71c36d810e0ee70d7486c035ee0cd8b27fd0b -cd1890db1bc46df64fdf02eba150c0d195b93b4c -679e4d3837778ebdbcbfcfdd84e9b3dec68ae4b3 -43c80c79f53ab43bcbd3c70cc0d890412ab1b345 -131855a69b35df1b0910cec9e8411f8fec240189 -f9cb18c98af61685ac34e65c30efe8a7d9a33848 -edc757058f61ac774a8e1e12955c470037fb7bf7 -40f80fe783b90fd64c1b248646a9f14c5b25183c -1f4b244806e2518c805d5782a84a5849bf7f136a -b7e7b76aa9830a74f16bfbf992e0d5a2ef474170 -8551960ec5f098a4f4d4cc064d1765e8e6772aa4 -f5c7fb2141f5a9a0484557064d2f48b62a72735b -155a44113dd14630d2b5e230cbc76e3ad7df6bc4 -ca3113e3ee36e73873a499ee6207accc88af0629 -f95e804087830b0f9f9e64277dd6c5196a0237ea -dea6ff22e709c971f120bc3f8b962363e1bf26fd -845e3b0070e97ee8c805d27c19ce99022573f6a3 -da77608ca01951ed15f6b81921bc95e993be5bb6 -d0763e4b3f350575e5ec1a76ffc5a6d036d769a5 -bd904b4532a63c1d7d850058aa33f9d9c921033e -f55eb4c26ed71e6415243b95d48db479a0597324 -0af1cd007a9fc76d87ab94f202bcfc3a9afbb787 -d594b7c6326adb0539b7318fa3b9ba4230c69991 -e364cbac30c0259c910041f958ed5c2189a3577b -500be5e425935c76bf87f5edb8c3fb65538fecc8 -fafb3acfe68ac4ec87ead21ffb8648225b21d1fd -37662cbdafc9a71690c341fe8ed4b7ccd430429e -2b00739491c584c2be0a3c54cc19f118dacba6de -0b03073a5742fa2d45172febaecc0e47840db8af -30d48df9b68163bed0815c7b62f32e606031324c -f92307ee6f485353bd6ba9f9ef395fa2340a3fb4 -caf4265c45a13d2f7d15226c71c62e4660c48248 -7b462084919b9e1db70417707a8fb785a43e2067 -0e151ddd2f046793ff1ba4ed0e1d2c031f53783f -59e6d3c78cbfbe94dc65f0ff523546873e34fd25 -d3f108bead61024a4a631371ef12286129625b0d -ed70b8354692b68b4fd42f1aabb91d53c4d4c324 -e515b0f7d31893b068541d0bf0b5cd4a4dac057d -aa98b2122466afd27d0a9e0c70f282be56761e13 -032a990935cc1769eadb8422ec5776253b643e30 -64609804acb5914b509851714e7c651128ab2c15 -47b837abd56108db2124bf7a6086ec5deac5830f -828f89f64391f9499a131717ef48384242bbc7fd -496d0e0add9ca578a9e3209be1a96a78292a67a3 -38eca61281c5d787cd0e2ab040d454b559039666 -667c0618ea2b7109b7063041ae4dd718c85067eb -d11a12307d87a3c04073e87404b6e4555d2df921 -a561ff0d076adf82f939158b07ccabfc8700ffdb -8fbbc916d909c2b00f48e2cdcbf51976198015b2 -85bb67563172ac0c3340eb3feebaafbe347eb40d -4e198f792afa95edb2a55d9b287c2cc7bb499fa1 -18b42acc4c494a554513c91791de48c875583490 -414f362fe87453e94d7b9b861932d826d3dc693c -beea9c7dc1d9eb2e970bcf64ae9f95b350da8508 -3b4421830e121ac0a8d3c0419dfc3dfc73ba5b5e -54018a72e3f6b193e8fc24cd1140c1bec20cee39 -c15fbcfc07db9f3c93cea58d61e6e4138ad14ab5 -ad6536d89a6e44184a01c8757a0739662398e224 -9869177322e7acced78073e23d11746fea136d79 -f57a07d3f2b0f8e43611031bb861fa0f936bc65e -4890006c2033aaf2a22c7e1cfec035c3d6a6b0c5 -a7e24cd38d6d83fd9f9c1f757e30afceee989542 -ece5445fe303bd6dec379c700e51a20f6907ea4d -7139fa93805a085b08e23c17d867c2ac8b14d7f2 -ed613ae198f098e427ccebc1494e321fc3f5d590 -3cc26ca51d51bda6eaf02dd18d126b82d1f8251b -fe638266c42c704c1eb4866a38d0c56164a11b74 -aa78bec2242a877e3656a211904ed1cba3b8106e -82d43b0fbe8d0b1a6ab4a872db6c5746c7c73a05 -b7e52f3c378dec4e0e05cba7df85edbbeee442f7 -698670a36233aaa93d45e824de736182dd9d894b -178ffa6947290e9fa8fa0398568178fd010db71b -2f4a9a0422d6a9ec726bc937cdc9dee3ff4c8a68 -6f489b6e205d82b96448a43068a2ee02e1840acc -b1b2b0cc90712ef1a399c8a668eef52d0a500546 -ba160026ebaaeefaa717c6734c799efbda94201e -fc7bdf99eb5a7e94c10f1fcce9ecc203ea6e1c81 -98cb30738ce6aeb24fe1b6cf4468a2b6fb6cadda -91ad298a1dac5551f62b296980f16f39d1684401 -0ec7ee885a7bb05d782652d4cf7a8993aaf613aa -ac92c622d613d0bfa6d1e04d631f4e929383afd0 -65628345ec92dc55aca858e7b645d32ec81d3e6e -81bef11ebe58987ba694e3c613ef4ad1623093a7 -12b8a8610123c3ab4482011773e6eefa4681fa57 -04965c0a15abded3dd29150b03b580bda11e62ba -423e69e2b0519a16944decda74d11ecbcf5e1ce9 -bc39619d8aaa3c4964f3548c2e28b10d718d98b2 -6981b8da8a769ca57b9d657a64aac1e9aa2d35bb -c5b5fcbc0dcba6c13cc77a5110ae40829bfdd66a -30a1e1dc1b9c35b600d1c2968a7da210f0bc1a3f -0652ccb29ae17a29cb642e184cbbc3791530bcb3 -a913fc5e5633fd0a6037ff7d40f831f66ac83483 -68a7fafcbf055b92a1464819ac393725a7b5efa4 -cd1184c753ec41fbf88d2688df3d29b79231c857 -16c1f154ed36f48c7ba8e264dfce5af71d6e1ea1 -aa8145bf9bf8114c9528c309f573eb44d7450d3a -5cfe7c6bf6eb9baaeb1258d3ba09fd06724615d4 -3dced74f740952c8e5f8d9a3f44cd5ae8c8b8fcc -434caf4e0832c798a5a46e949aa04954b79c0d74 -9c9a1935d2c07c4d1ced89640326cfdd2a5b38a8 -1de2fc199e9a2cc64808b28c3ab136b376bc8849 -53cb2e18852c90d2f572a0c8065c5ec0e491af5d -80f6790d17bdbfbe6100405e4ca282231bc129ec -bd630343acda3b8254825893d43bf540c25ff65b -dcbe57e48939c945ad5a30b541aec050acb4cf34 -eb1bfd41af5ac50dbb1e7f8b617243bd9ee1eff7 -d98ca8b2e07ac1d67499d5a987ff35a0b68ce453 -11f317b0d235365fe466669b193c300938a9a0a7 -b0f55b1709346729aeea7adce0da1c1bcb218a27 -2744537a0fd616479a6f22b9adae6ae8cda8896d -98ce92ee23af518cb983dad79b7e5332217f1db2 -ef8e28bdeae9bd1378b29848c4b4607a40443ca6 -50e064e3979e39384e5ebbfca8ac0407723e59bb -d86af34d5b15a0904549fadcb1eafcbb043b0d6d -58c4d797e8a33222fe9599f36b2d066116d09f2f -bf275d3d18154c19c8838fdea574de696e67620e -7089d0b49dec804ede626129460c0560fff8f5ad -4a962febc4362f259d4f48528917f29e0f2ec997 -6f5c55119bc985b8801288c8c26cc9611b39f010 -5a327575d2ad37e56a10f097046dde853e6aa2cd -db125de3a6a5c0ca6c4663e947920f7129ed7c18 -0aedc6bc13c891cef40fb655d4187473ab737279 -facd5540dedc301a2594ac024863496696d499bc -8e88327fc4811bad3b220b28ba44321b707881ef -297924142683e37c0451597f81051df85cbd1d2c -f87a6f254359f4330c5de5b96c477ca38fc95ea9 -254993dac988e11231b1195146af41208916c690 -1c42d0f0dbc82cdd6bf922991bb573acd3275025 -b1c19d59ad0ab844f5174d847705d088f774a83a -a4ab98c6bfe2f453e406192980c6a16fc760085e -f44027b2b3d40d50f64a2009f9676dc2f9213f54 -2494aa2253aae1674e536ec007d4da8b8fa8359c -8df626a56640082f633dbc0edb32d1a3a087e451 -256b47cd5cfb1e1de06dee97293f2d1f2be5fd56 -d0a04fac342eb0c67f8e5bddaa5a4f97f904c765 -4d3ad85a319f527183ea4ccaff4fbac95c48e4a0 -de6025ae924a8a657bc9477e71c1b183131f7b49 -97daa03d4ed01ccf137d3c5c94b0d1660955f5e2 -4e2316b741ea9cceb84d2b18c3a914d5e1d0a2af -50de82d8f7e5e3cdcc98f3f0773b0b2ab6578253 -bce847a7f327bb10c4e8fb49a2e0fe760fed5714 -ff64cf4c6ceb51aa3fbd8310f9510cc3f3f16054 -f091d5439a0dd78b52959aa2beec5a7a11047c87 -c68f439b7c87d22e6a9f919d33bec571b542d878 -35e95a468e6d59278def89608a323239a7c2a31e -9e00415d17b4478ccfca4278d85001153360ad8c -c0428bdd9987d5b1457abd101bf0e60970fb532f -18c85efc7837fcd4447d32e6543e8fd96c18f872 -04551e68c319e66b32881395b72c712b3d895faa -64aa0443dae19d8d274121985acda48bb5b13b93 -c9537cec5630955f1f4d99f527be3f883fad0d26 -6c5a56fb95f508623acbb3d772148b724b578387 -fc0eb197e2701f931c24d3234ef7930e81c3f3ee -a144be04d0eaa98cab2f9ce2c1f3ff2986db7156 -e2b1a872cc8363b427577df27c351ace34bcf3e6 -58e7ab7380d4bd324ee3663b7fc9042b98038673 -351706f54fde077f05d439ea97bec3de199e09ba -149cc8db6d46890caf8ef634214ff59cbb8f8d97 -fa5768b69093bacfef294e2e869588b31a4c3ecd -a1bf1a8f5a4f56bfd29b40fa60f5418ea42a76e9 -b426368e3c63f6242b10794b98ffacf9a931f9b9 -6c77b1356eca816e566b94a278241041c20470ba -1cefbe3582c247e5d99f6cf517e8099967c8a6ea -5c69740109e85724f539b7e12935961891c65a30 -9810518ccf0a3c47217f6601ab1dea5389951898 -74e23d46532fc6844325cdfc1de340d11882f88e -d5d072bbde1fd07d9d53d5f9758504a4ac99b5f0 -68463d6ee6e7ad3dfce164f2e09d5e68926a4b6c -0760a3be41e252ade9edde0bea93edffaf692344 -0611ee3721e0f1f6d46ecdfe5069fabaea47a272 -1e5d806dfc8d1cbdb2fa8c3c5ca5e2d6e29db365 -3cabe15632c4254333d54a0c2682c67e855d9fe0 -194720840afcba4655dc8c94fddb0f817e0ff356 -48d9c8852d93dff7da345ae92b4fc273282d0fb0 -e7aee25c66a5ca0113acd83746d6312c16978a58 -3ec2e929d7a7b89672898038afc81564fa26aa4a -58d1d761f8164dd59e7afa047d910126169427e5 -9e6876369694fefdffe353005ba07c9aeb3210a4 -3f18ce1042bfa4813c502277727620f5e7c1b5b9 -2e63025a5940b045948f908297697c7f1527ff35 -50a8f64d5971be72c20aff88cec4c3f4d33bfae4 -c050418bc7a706f5ec32e3185aeb12c8dd294604 -996fe73b49d602d0fa1542f34a0a6264179fa155 -89d7985ae6fdecb08b5d7b34c1a81fdba080b2bf -9f5481748584fc6a0206bdb5c4355da87b5875c8 -0cda53bfac6a4e67691cc10e359175babcc0ee72 -9d5cd7527e2aa1a02bc8c40de740919ce7f13b7b -9a6876d2c67a1f2d51b4325580b7d76e079f6f1f -de8005ff7a1a4f65baef21f5945c01934c1752c7 -312ff5d32d9d8e92700ca438a623c9bdfe9f9573 -d73ed59a4039629b3f0e31c1fab4a6b8508d72d0 -270b04ba86d9a7daf626c6d59b23f632268aec60 -da63e706176284b5509ec8d9ce56578e5118075d -8ea7cb6c06ba53a13b5b342bd90222ef58fde5d1 -45e30c1f1c71ae6f1c3954f3c3e3558b534117fa -5c57ce6e79001b4ff444140751fa28f36a206adf -ae377f98078d0aaa53d31ff07844e4159195a6bd -fa7848f24b9383f2b32acda473decf9b8a36e314 -279d11183bfb50566064eb5db08d69198a89f9a6 -4cceef250aab38fa6f08c9427bf3d7ed7be5bd22 -79d28966c37434ca5dbdf46af8b3b6b1918b43cb -ec5cf7def10c51865a598a32cf7567ec50b501a3 -45cf07da481589fbde460575a00863f5e4783e9c -cef0040eb2704f2065135d12a2373b0aa58ff6c7 -4f9bf3f2eec88946bc503b4e7fbcddf6a316d062 -d8683d24cda3bacb42746d6bdcd2b27571bc4134 -be932506129939607372412af984eac65ed8594c -647ced600e8ec3de150f7927d37f4a1366eb467f -9e1fd503480117fbd39db138496735bc3fc7e25f -ab84175ce8e0c77118ad94e09352f2262008df73 -5e75b71198f02b447c5fc1676a659227a882d689 -ffe847e1f105b95a1ee6107bbd3c1098bc6652eb -4eccb54368b420216f1286d273322fe840411025 -f191c46147f1b4b0cd97b4feba3aa63fd1f733b5 -637de03c36c28c6a90b5f8a94f6644348cd5526e -8f55d67011877242670b36a902668394d4aeedd7 -1b6e3e82e8f9b536e313620bf9fb099227977e44 -14b9b31a0d72fbecdf56600719a071257d8ae925 -54f40dac31b93220807b2c3208fb428e642572a7 -e8c5bd44ef6d92bf9df8b1396fc9841ee0e16553 -cbef753dc615fd59dd7da017444c1e3719a0208b -0677a6e7ac8e8ca2e5a55241fbfaf2762265790d -479df35be1bf5d7c3a841910b7905e1645858623 -947c3de4861743223fa83cfd99e8a00ee58e82ef -56afad5bb7b5342e65d2d84fa2a5eb0a8b7c81b7 -8c10c102695d5e6c5e0db10c72210a05dd308982 -d436a04d4636bc92a8a30fa01113c671099cc0f8 -9f1d42fd65f47a62829cb0ed7b98216ffbff5da3 -0e2b63b11e7fe156374074b1c760d23340857f30 -de0ced8b3d36ddd1b36ca0beee51a7ad1b5cb190 -d11e7178fa97742c2afc8502eca023c8cbbeb2f3 -6d3fbf7ccb1ca062f958f7d237081c80f69744b6 -e5a1f108704284670be96a31ec70a48f8d8f65ac -9c798e4a40596f093475d02b12d58657c72b233c -d76857ce9a9d0ec9eb7b8e8a446515a7583e1b3b -f9f2a592724a41b10bce58739b52131d4d674803 -218b5dc556736950e40490d3ee6d550b780094b4 -d5cb083d1aa6fa2699aa38a215ceeb8102040d7c -e08f4873c83e54409690f05672830b220a4acdb7 -05a71547fdce0e0e32b166843f575b427f518e13 -224c8c299c5b520b9c87dd00687a8b103bff431e -07f6073783804eececeed66a025ed5163e319e5a -0616b273d98b6b7a5cf573baa816bc5b4c131b87 -12f2db24512e450f4e87ccb03c965c61f5abfcf7 -adee26fc3c0b5526204a209f60c04932882f1fc2 -1cb36ce34d895767a6dcfe41f017166ec0f9f855 -6377404cad7bb8af9ee34ceeeb78a7dacce95e9f -47d69950b9ceae9ded78bac4562c1599443b1b46 -643e8f217206bc2ddaa7a2cb2c03545b9780d36b -ab3accb0686750fc1b2d8ee28fd058b536bba4bf -794c310c1c1aabaef0464793c977061d6a1f4731 -4d862111c9b8648c4ebd74d9a7794780d1f42851 -c5d4d9ed99a011f5176e59bdd0a6d1742ce8fed8 -dbe85e6b3435574a0ed0a0090aa88fbe52eb2093 -0936b6d135594e94ffb695c91ea1e5ad43a27d23 -715940d21e2ae7e41f06806d4f83072d6624a107 -a3cb1088cc64d3f9794679a78bd753d7b8219f80 -4326bba7874a688a1275dc248c5a610c725ac4bd -a703385d8a8e52ef12eca30dd3228c81689eb8c8 -c868b823c728c8d41260a07b0acab5087fd9044f -01f1643ee2fb042026d155e3dd2558501abcd802 -45c549e21be00401a674066086c74f88358cfb96 -3927415715ca6a162e89b478914156f761086652 -d06836512877077939266d16e82617c6404e7dad -2f27b138d1ee8049279c25eeacfb958d6b8e64ed -98f0c3b29b2d4dd0aeb69b9cedf062a77a15d207 -e08f92f2fb1ee5e565571e29eb60d3982b8ec17c -e5f7318c47698e3fcef72bd25ffcdaf502bb719a -53dc3a8dacf91d92b112b72b698ee5d7309974b9 -5d2279bcc8c1ad8453dbca7e502e5794fa17f555 -c4066c76b6c82a006d10b10a4f00b9d8753c9c4e -fdb3b98e73e17e98e69b5ca27bc579c7eaf2a0a3 -49b54dbd5edc9ab4f8f751c8e9d8297e53c56375 -c147129f11f46921dc0751872a12660c25504942 -18395b3bca008ad13733e6df91acefe6fbd4cd21 -d3bcf7302a51c1e5000fd0f72d4f8ad5f230f909 -c655239b49957384953811ae707b9add4123d7c6 -a448b669940fb9d5cbb99f4b828f7dc6b2d14fcc -b584c9710d5c3ba96adfceeda4487eb58c5d85ba -86480e345f50a132b774033f5c14b4fbccbb7c71 -e2e1b2ad5bcda9faa47ad00bf32aabc403d616d5 -a47114c7556e7e73f6944a26b3ce6e50491cccf7 -03e67583de0a0b3adb0269bde1746bfcee599185 -2d9035d81ce9f7d59722bf9b5b41748efd56c3c1 -8bc45e41acdeda13ac44295f84927374a21229b6 -c6092e45eef3577aa87b8ac4b7e6b39bf07964a3 -67740262f2abe5e9e75cfb32c2a640e88143caf0 -6f70e93f46bdcaf82c0cf52cfae9b61b6205646d -a4131f1a99d8a257787a401aac53818dc9d6f89e -994d54fee264f5a15ecf690448d90a75b5e330a8 -f1941dbd08077b4511604ca4f3ee8622cbc3c4b1 -171194436de640b6570106c6e316506d328640b9 -b55d2513b7ddf5a25bdd2173e1e469bc7ec610e8 -a76a666595787280d2d7707f2609cd87df490b80 -da9cc1f16e9776634987361e94d476efd9825fdb -9dc8b4afa944812a2a47a414b6c4d67f9f52347e -2710171bb91691cd611ef4f2fa10d83305bb0115 -48a36b26deb226baebfa9ad6b108745cb3a5e9a7 -5d8fa0ee9456d9b8db8a423d5babb81a184ba6e8 -1003042311c4c5de6056abef616ea968ff839ae2 -2a9e13c05d8c7c3e21adb348baaae74b52c4029b -89f6fb91d89e33abae20f1e43fe0caa0152e651a -c9804a0f84d3e770fde3414a3a1958bfbc5d63cd -24ac1782cd4c51cf6feea6dcd49bea791d20b246 -b25fc6be2f56569c0d054ca786eb6be7bbfd0b4e -9649c0e835d3d57c3d646950ffe98d888a3d6629 -f9acdc7c243891ea549e2ea9424f10635cdbc61c -1c655721d09d9a5063a0e794f78e7d325c4619d2 -44eca901d337c56cacade83dd20cc99b48dbb15f -7c257e0ca7d95bc0519d052f7366c6e195736acd -5b2fd02ac7e6678724229436b7e38379d061d3a3 -e02469c669e2538c91553ff00af93e8b68a2d4fb -e2ce2868541b5619ace23f0b2039f91523fc4599 -96355028158cf9b5814c4caa614b7857e572a051 -2abf9000b65b20c09e37bd5ec225447b37cc32a4 -2f2e5528011a5fdddfc194da008b591b63e21191 -9815b6dd21a635fbafbc6a737a9b6cf0bdc981a3 -918be8a89d667f17a3956f5cb6c5f9517bf47b13 -1b18252107675b00ce034beddee74fa2a15969d3 -e0256a2c86d9ca20d3474bdeae12a33887270754 -2b366ab561d3baa75daf68ec1fdd12812858e426 -bcb23258538636d5d1668484833411ef17210cb7 -2bcc6e04c2bd89ac2d0a662edd99883810521074 -19f4dabeccb28c609d64055634e10c2a9b2596a1 -4932b2b65a725eb56ef8d40219c061c178496250 -9dd0cd225dbc654cb2e85fde7cc26c751cfc0a66 -4158cdc3c32f0c18910640559c3fc85e738c0533 -4fa80cc2fd942b9fb2bb63d4dd525e8d4da51e27 -7b10b39ada3befb1c397a07cb0aafda07960d3ce -671830a1f0764d26ef2ed99c925a73a2e7399fae -1deace23c02bea665ce3535e6269f89a0a1378e9 -ad3b61c096905f42d3bc83e77268075de54914aa -6fd536dce54a08007ff110d7916e8c379f8013c5 -23f534167393770cc33b81e09266e85dd2e5b05d -80c0652a57712325859a9389d1149a288769257c -a67091a0baf75fe9db27676430e722eed5156bf0 -f8c2fd1a45447d576642b41aab6f71d3576955e1 -82e90f5e923a11843c69c65cfddbd107e2251c02 -68bcce0060bac06a73d78dfe37fa5857c0a947e5 -3e035e7a26e64ddd4600fc383666a4d194f8c103 -a882b7c8b186b1a637a14303c6154040d2ac0463 -f20e44a97e6e4d8c6b8870808d49336a491669ee -0e120fe943db8d6eeca347e66361b966fae2c52f -c2eb8591123a05c6c3bbf3c0439ecbeeec03d23a -0f9f8e5a5a6149d2e888091d338ace360b08da5a -572a0bc4491bd05b07765ab4ba8dfe878ab16b02 -46b7b907968bd74024a23a872d258c4ab1159da8 -117f764eda7e4d2970c436d4eec7f4cab77b42ea -4d8e5c50f5c491a4a4a596dea84dd3cebbda9fde -8bae6ec37fb25cfd49eae64d3f346100316401db -0d8b5cb1a5b1c668cdacbdf71f3dd3c5c4273075 -4c278803e4d9788c2e08e57a4d944e0e45216d18 -ee3711f054b261c98d4820d6bd0096316be52243 -0846ea8577df75ad007ac123068e3e784865b659 -de4e48e37e99901816a96022a590c9435631420f -eca59fababcfc909813dfe68dab5705c7dc2a422 -c0641d5434dd1719206c257b43fe7475b6e11c00 -605b8ffa176e8337f47a131b7fd247d64a9304c3 -3ac1c90c574b87032de4913b7069e56527e9ac1c -8a20a7a574999f13c272aeff2f5cccef17801b6f -4963a1d62d8dcb6d0b3b9c2c27d6b77018294719 -78988d252bb6627608a87b51e08c7b073c047d4d -61fbfcd8b72a590f79247e90305d34a7db7792a1 -e5839e212faab84f05649652c2a767c2e5786845 -1179f748ac0d033d046e7a301a17258f49abb69e -84db5c8b71bce2bc1c86c26b4962c3babb2ff05e -1728a9fdbe6d62d375408f593f0ecba1dd48518a -cd5c1fbc82e4c9b1e484c9d3a52e949441d0e53e -c73c1e2cecbca9e544f8dde26ce0007755cdfb66 -0b371f11a28697670a48f32355ae54718eb02f71 -85726d15f2e2c62a879cfcd11fb1597a76a6892c -7e2b9cc47b641de67119392dc3c0d7dbda14edd2 -aaa58b0061c39acd1bac200a60b8b137841b0001 -9816ef3a8c7f81b2ad4f472fb15c796f0cb38c66 -9aac0c256878c206b2cb14aca9990bcf84d02082 -95e3e78f3026b558af059fa84d98462e1de0b500 -efd7699e848a31ee8111ad8ddb793b69fb0995b3 -63c67785035a7c6f5b6d55bc6178e24580389fda -836622a7330dba6a0da6723988b9e7c88e99df2c -a8ad6f41f3ef887b4ac94d8255a808623fb10d83 -1bebab793b3e4a673112962d6d7cb2fb8b7c5efc -5c1d6659d7e38d3b4a6a7f959270440f6cc50240 -2a73e25c86083f9191528d4a763886ac10516748 -283d1998cbe503e58eddbafd562fa3d4a7136712 -4e9bb9b0a461dd8a9fc9bb0696527da9d4df6e12 -0b67cfd7f959e7413fa6c0f807f4470f120dcda2 -1aa2fa29ef0f06fa7911ff3d5e0e1fcaf4293d01 -fed41f6cbbe1b7c4e267f296b9c826cbc104eb87 -ad49fdc34d6134b7c018d7ba5632fe537bf210d4 -c23aefd1c32208a456e2d1520efc189ba7e64ab8 -24a5c61ae5d81dc9eb49253b6e01a1082dae877e -de2015557d9f940913441be0acd3d56f4dca7625 -a007048f449d3d84fb63ac884353335afaec64b2 -bfd49dcb4c10ad5c2c07ff52d62174a1f3f94f52 -85ff8b8718e4f853b5f037c3c02a2a24d3902eb5 -5db0878296645ef9479c20a80ef9149ef4038977 -247ce34ef0ca21cf63302d3ef7f465b0a941cf78 -f2150d09b5b0f9e32bb30f9cdcd273f6f36c1ab8 -e1c0a6d93cf9c4ab400bd7b45dcb79fb6f37e6c9 -b1fd46c2341f592a5ca7ce0ace524626c5a9fab8 -94258743828143cfc92c8399ce0bad52da08bb0a -41d75a50c552f3fd79d2f1148a7ee91a3aa9721c -07af0f058e33d3603f14d64f77e23bc8db26f112 -34b18e6530ed832f0d26a62cf5b2d15576543de4 -0b3e2ca9b8a7badc3f26d2e885fe9041eca99395 -5af42e1dfff690931957622d428d96017c843678 -d1baaa60a13c369aae738dae53defa3785a6c711 -f60b77e2c9527bba80017f66082f24cf256eb3da -6a2a7d0dae9b2900dfe44a0c682fa9ecbb130409 -1d9a6995ffa7fc9029cb8c3230f6dda8849b4e6d -23a0964044daac7200d93511a40be0fa648924bb -ad62ab3d638ed52b0d0138f2d78d7bc3dfa2bf62 -38f72f576c0f005b1f8712fc9770f328e76779f7 -047cc1dff6f7ab024a7a01b0f348ba4d56587ae1 -e5cbf7b0aa68ab41e82218de1284f80f074992ea -66a221ab71a731ad4c2c478bbeacde4b7fa2ea0f -bdeee0a178760bfc86e1fd7d4594cdc40c9be300 -96225e72ad49e26b62492933742edabf265d8cb8 -7fbf047718c84aece38b1fe8c4d187c411742700 -fb76fbcf4a377bc3b0048f3575ae7727b61d3c1e -68af9ca915026ba27c06fb09177d9724690d2439 -eb9874ae4fc5eb458a3c90a33aed04007a93408a -73f57bb7982e0f63a9e49d73bb722fb77b129a00 -bea5e7081049bdd8417ef8a95105b3f07eb1698c -b232eb6fb86204143afb560c8bf19b32cf7634cf -3509915cf54053abce78de68f29066db39d53a64 -7b29c231b754dd692f3fec1fcb2a84d820379ebd -ed10b9e64b7146fd266c8f081308aae5231ba809 -53af246217a52b43a09163a28b57a343d3fc9754 -1b66d8bf25e0e6311d54549167448f93a30853fa -0b9c392cdcb2fd94d0758717a979675e2d6fa658 -fd75eef7ffb81af96f07fe03f3b7074a7a2352ef -8c655c4e6f11973f7087c9a46983eaaf9dfcbef3 -14f474b84b249d35cc16c7dad7bce3780f724002 -0bcb0fa1f81b086b45f38cf0a277aaf58b9f4467 -aaad0d9bbff20bb2660311bb6f8f16fdec905d6e -24211c071be5a4ac13bf10aaeb9f72ba7a02bba1 -2bcfd1491f904b10b78e4c41b4abb29d85b90020 -c99df5ab7d1b0753b1f73233f39bcb0813b5de0f -11ede745157b5f3754b1b3290421a93d51478b93 -df60e035cd72e5aaafdebcbf1b6d48bddc5df3d0 -dbd43fbcc41e46b96cd8a2b3b4743155d7f33fab -241c9246e49d899bbab6932aad4a6caa48a53c12 -fc73a0202dcbcda51aa92101b7d851c45db4a4c4 -b6f6eb90d7907f73a65931ea291b423cfa30b64a -a089a2a76fab50019a25001a56d48023f8094b81 -040f5b27354a7989541165b6f17398758bec1795 -54db5cd8d4d7fff2e9265618f9f41d04deceee84 -ec52671def2732383f387e55a3bf5152046db869 -9ab25d0dea129411a42380009a2aae3048012075 -5f3530b0f9b0e597467c1e625b9d4987833c9e1b -339d28495dde0cc63849a55b96ced816c7d9d032 -5a489d2090c5af754a1e2e185248d19513efc4cc -783713e1cd64935240f687cfd3944dc38e33b57a -b933f419492ea954707d6745ab1a43c3f3789460 -afa9ef4682a3370c473d6c652743652928bff1f1 -62bc6e7e88b052400a732f1bff451eb922651d12 -671c30116bdf0f14dcda204bea96899e4699f15c -aee9d32650a17ed3ef812505d505937f7b02be3e -30e7267f13f12cb50f604503989b7f30455c4b0f -479cb04472777a41d470d9382bd266b13237afd6 -6d79def0face19bc275cb8d32608e451bf0b39e4 -d524e6ea2e94554abe4423732470bc962aa0fc37 -384b5dd23fa9cf60a577aa8c1a22ca862077aa5a -99e97484b13c5f85f6547b7374472acd560f5f78 -1b7e470883353ee61a71e931445a2ee68cf4548b -14bce4218302d486d9abb784c7a61414b21b285a -f106b9d364edbf597f189d231470bec201d3b0b6 -3f3ca9cc85da8dc2dfb3780586daeed934c9b623 -f816b693c07971be77effe27f38aa6be259c2b8f -966a1bd7031cfd4aa1c67425d8513666e37d0e36 -5a375adb469c5df0a82a3cc5d5782439605fbd6e -1f90da8d5178d78dc2a284915c38be132467caaa -cff35afeec7e533b726a28964820dfaadedfb19e -81d1fcdacdfe299157afd9edca619acd05ba8e28 -e5f8d91923cea42077a263a187f24702c6efe6c7 -e1964767766938bb5f381f72543b01d4dc5fcc20 -44bafa51620fa90ed7dd32bed35ff345649ea47d -3220d09b4bd74b1cca8b4182dcc6e46d3a8a2b69 -833b04042608a2aea3e6a2b7a2b648bda6990817 -359e18606c5ad84e9b846b3901adbd8b186cc595 -122b48d8bd42c650d6d406012cf76faf7995dab5 -2d22d3ca54882695e0fd22e6c8359d536cd940db -a7afe8d88ceba1d6bacb0aa13bd53f613af80bc7 -00429af86eff3b9b48f7585d2d0357c73929641d -aa71e4bf941c15481345419187667109c47d464d -d6d9f569e76ea6aa9a5001be190eac1ad4f4cfde -6af1a6fb5415be283ac066e2bae11e38781bb966 -2622966cbf4fb998f4559dd5c9af968b9ada7904 -7af07818842d22a3592293752df519c02458a330 -2168ea462d734d1ddf927f22d4b87f666e5e528d -1f028537fcf274a940c09be24459da7f3f66dfd3 -f4cedf091cdb5d5594bf0579b2b07e411742c6e9 -32adcafafb24995980b957abac736e65766bfdad -f43013665e53aa998c82574d662a9b6c16b585fb -9f57aa2b8fca2596264fb705176e468f96ca6afd -28a85dc6f2cff10844bd1dd0ad0874965d5e6007 -8b06f68d68002c39b89af790f1e0cdbd9b12c36f -885d7c1e41c22d0841c0a2b10db0662fd5619f35 -e1641da12fd73ec44d0927f8d2eceacefcd05477 -da7ee6004d27071890e22dcb0960415646503d0f -7487d6368272fa82b638c7ca2efce56d77451f5f -3ff804654ad7efe3f06409429b9907269ae29e90 -52e45aa2eb85fe39d5895f7c9b7b55b43a0bc038 -059835254490a9dfe17d3e4600d459ecbb46a49c -f5f07c844f29f50ade7fdcd744df2db4ae028e8f -3015c09cdfd816546f02e3c72dcc87b33d76183f -cbf5a80e3a10bb1bd69a657fff47e08ac44076e6 -689fddf3464fffc82a472487fbbd8a968745154c -2fa2fbbecbfe8073637a0e89c96e84b3f512dd50 -d747cf976b0d02130cd84377e45e7d4565b8b977 -79217ddce0ada9df57b969f55cd5543a05ae44e9 -83aa1a6678c11a628e826186e6f7a8cdee6a74c8 -bacb89507dddae9799b854514ec58a373cc8d18d -e43cc67a13574c28f1f47ecd110f7e753d451a4c -d99be7fc55f6605e3df840dca460d1a0a19ef732 -6ad7fd5433f0a86a19d448076d86c6128ffb222b -3872f892f693139644fd1b263ade87272746f00e -faa579abbfcc76548b7b4fb6c1e5ae363789abcd -8e6654fe9772b35ea404cc13f54218ee6a5abd61 -8eac08a1659e10ef844a197ad8d371a5bcba528f -26ca4bb1cbd817a77c09ee9d13ae94be46959605 -c3d87b077cff057441ba394c31651547688749cc -827777e3daa9cb45e07625d881a9aea33ed24e3c -8b168513c59c739c011af2f0c09ee5cbdb1b1a7b -2c536c21bf168fe1aebd5ab1c8e139970d2819be -85ca45762f82b12a00e6457454791e1cad9896e9 -05609159a19b91c3a9118877f863cc4f57836673 -a4997757f99b79b5e8687a2614fc2f71de418af0 -d078dc1e4cf1bad18315be7fa6a3fcc68a20d64d -276c402bb28b161d6c73f0ce272369347e9736cf -cc66155f3f2023c3c66b3f27682a1534954d37d8 -0b49a2f9f816e9690f8b59e5f6b54d4deaf695ae -07d253f3018984546453dff2ac8adc9b6504f3e8 -6d9ab5da7bf2d7a84dd0d06b16a0e654946de80b -36a6d4337a5a4450732610e7aa27b946a4bcd93f -d616796818f0a729bd72f6620ae9ce6d4bcdaaee -9e56fc6b65ecacc853e77dc607fd1947068ee5ac -df711a02a2f20f6734205cde678e9f0aa6904709 -fa422c483e51b35e828ce724e320b3d4cc1b9749 -78c01deebb6c477d0374695e89a32e753609540a -724c7258a2c35e3135d6b7d3531784e4630e5f74 -7a7abfe73efe1e36b388b65501b16fc7b5016e01 -5d4823d44496c69f9ea85cefed0b66f3af988528 -47794ec44b2bf56090b6d0b922053653f1a18f5c -950e8bbd9de9c0cdbac0ff9bd69fcb64268794c1 -a8abf040dcb86fc4932d6d1a6a3d5ae69719dda6 -ff1c6bcc1b64c1235da9984fc66cab14e63ec526 -130e6b518988b330ecec2dc199c96378803dc130 -f1c51199e3b7841a02060298dff7244896e0bc77 -132eba05a80c380872c9f0b0f29dadcc6a7ff951 -c0f996b85a11a680c0f95a680dfe08cba62dfc78 -aecf51fca000eac6e53005bed74c7c975bb02ec4 -f1ddaae4cd7ecb9de0b51782d017eee5dbca257a -860718af6151ad972ffc7b77021789c49a883d8c -cc14e7371abb36343c5b2cdb79ae93737364403f -28b770af7c5cfdc57c44d6ab6935904067f066ef -bea9fd27b9ffe76d6a3ab8b535e9604d5c6df304 -82a72afc15b63f6c27fb1249ad8d2d9f85cd990e -d2662badddfd10a505f3e776720ec9cf6ed575c5 -664a253e593580a61e6da6d60d1051342205a664 -2b34f8cefbf2c45f1e49b4f470797718410a04d2 -e3fc8cf5ba208834951c21b96d76b3aa88a0c244 -157d0fa5978103864e7b183267464d9306fe50f6 -e03610ff9dc39cb35a236c20bb36773d0681968c -981df59ebce85fbce5642a74e3c273891b25411b -7e8fd0cd650361318a694cf7f9cf6bda5ed3b1b5 -096c3a35fb23f658962803814aaeb1912d5e4d25 -7b1e7cade3a14c25f1712b5b9d543b4720ee1752 -f63fcaa64cab6f17ac45e57055fccce225440505 -0d091ac5bc71b18521a32e8ade3e00367e5aea10 -06e0d152d36736b8355ea53b5da518a254078d24 -222c29951c105959016648d68e52bc06cbd3bc1c -927e33577124cc69d07dbe642cee909ccf7ccb03 -76f85bd0901be8986ef172caf0863b101c1a6123 -66672a0ca6462851e545c598977ab44827dc60ca -6c57cbefbf4642deb06ffd48b7600242c7bca86d -5cc938a2603d7ddc20c83b488f6bc7be8bafa0b8 -828bb79e31942a219dd022e9083dd20eb09f3d0d -0e5f5e2d0304b1fde6b172b430ba8808767ab575 -2f936c94172e7717e12656eef320a619c503fba0 -88204a1fbdac059fb060336766e5dfb5e08da667 -068b17d0d05146e6db606baba35193ab3cd20159 -6fcea75eca2796eb153caaec5d4de9c4abe7fa0e -344addb6f8240a2bde845ee43d8020da8f7ed2d7 -3186f70c2b53949b0629bdc2b1ddf04c0d1021d3 -af4a6d169e39f9b7a7cda44aa9cfa023881c9323 -264b078c6df792db42dcd69021690f507d1d2270 -3bd6a390a1c7888141975a48ed0a6689c6e2d371 -5a5c3fac4777990c1f377384aa1be0a60f14e0c7 -61095bd7fd962aa623b78f3756ea9ddb17fdc328 -21f59eb19e7cc76d83bac58bb233eb47218ac45d -97ddd0336729a2a53d0b5f9cfd2334f73421ed24 -249829457cddf0f1a9d3651e67721a32ac404e22 -568d7c18f99c4ff38a592dbe01cec2a7e9a9382d -1c481f7cd58d81858ee635c91a29bab245e0ff18 -4e64d9d4d5188511923f571589a589ddbcdfae12 -f45d6576976af58f8dbaafbc672a16a41ec92443 -2fad73a0de6431fd239732606d03dcedc6ab1920 -34eccc91f0baa2f6511002bcc60e30704b1f8b82 -d71a6860811645be4880941f7fe26ec440dff47e -15087243a17c0a05d7437ce85f1b802351e889af -f7508232ec452da12f85bcb34e01207a11eb4d2c -54d38277b0c75d2c17874edd2b2c5a250a2f0a29 -0af153efe4f3d98528f126fe34b021588e2107a4 -8727b83f4184b94dacb49768cb9abdc45e63b2d8 -fddb92e76a0e170c3009a932c5218bab041d9b45 -17ba30e253535834cf3ccf5c89ee0984355e5d56 -32a66c598820a44483a239536bb5a49fe00045b1 -31649b709dfe8b3a58a6d03769fe0bcbc2299aeb -d012ce536e82ecfba4c4917aa1ffee2fe65d03b5 -3d39c69b6c9523a23d4537273f7b9b58073a74af -d025c474f9a990f28cc1e460be3ea1a0e4db5b5e -42e1c6ff2ece64619fca26ddb740f2f25f9ccd9e -a1dea8ebb9e2a1d6f1e15724d69b8abc07eaf97f -093d073a9b476ff69d916cc08f2852f59d06a880 -722ccd33662ff742736d2005c0558c51f93fe506 -76f2adff7bd26cef8384e6f1b20b048bfbe8c57f -335a058b9941fed98348435d0962306bf8346ebe -6b737bca08af7b155c4d283a66f5f608b0ea40dd -27b93c8defb124e40077183f445316eab8513ae9 -a7ad71511c33428ec3ea097fb65d434cb22d4752 -28bff1c8a96c3a39db2652bc6a69e986d0c77f71 -b4c5a435b10092c8bd0655e36f0e2914d957dd75 -ca3169157135f70be56d1757067a80a183dd0de7 -a4d00badfd9930bc2484d6c0df4b41dd9c152d78 -5d3e7beffca75a153289036fb98c2b49b0c6e26a -f70af7226bf6b9ada686a70afb899eb879dc24aa -9ee7169df55852d0cbb9c0e1a42e597e083a190d -a53a5c9ade8c49299819246a430d6fb1943093cd -b2ee04b7df92e1280e4859d533baeca498e5433c -fed84f05c3f310951d8d93ee25c9d2f1bc1fe2ad -319f9e395e64ad2af0eb1eb3118e337b86f12618 -65658423850a3edab6e25577f7aa94ff42eebcc2 -c9799f7f40bee2ca46ff2c036e97d7730a505c2a -2c82600de5c34f1ed6d05856ebe6579ab90ef3ce -c6dd7baa055fa3b03feadbdded30d3005106e765 -b75b35302870ca1269c9694b12df5aec053adcdf -8c5a4fa55cd7170aa7815fffed70f75f8d9247ab -21c25195090a9ebb4a6419d58675d2c1ddb1a19f -7b28d48c20d08f570a05b3f1a58865cf90c4472c -0813f33b6eafe88a8af264d580a3de978fcefb5a -79528439eb4029d3a9e93c55b1221598a496e063 -923b1e75e9a96644b84cc25f9c4b31772829a644 -e92ab0b843916354d70b2fb02d1a9afaf696859c -e9b50cf7a07a44ce077db9ea22cb6d4bd5121330 -eb1b15e96fa22207fee73c7291046c79e7c01b9e -bd0b00e3933d6ddd04a3e39514bc6bbb244654f1 -6e6f9c070087fb3a4f1c7da9a708feb2f9a94a7a -0df111354c7093399301307abdc84ec024f96f57 -1b24ee66de08656aff4fa5f57ad831573dff5b76 -e17cc9f5674de44dc8380c048c36933cad1a2cb4 -bb8c2be64eb080d29c312e7dd1cfea3cd8aa7969 -0244d78f6eb52f099778e410ff91482bee236e29 -7fd6dfbfd17c7eefc49884ac7741097f047be1b2 -43ae598226735e98162dfcba05e756c4192c1349 -279a9d83a2a369fd606b1b5889fc2e8822f7fdaf -9ffe4581fd464104433b0f83e3219e0f99422941 -b697209c983421c365f6da410d9779f345bcccd5 -fec411445c0be0d929b28412d09d2e59ef459871 -4f73bf531632ecb69a63566362535cf118427119 -8924df03ddc1128865627b8c53bc9a9e126cc263 -d02c0613ffa50f7039d77d45a83c57f0437e5333 -a100726a64ace0e816fb9377fbc5b9e3c38b375d -b226472cafab4e9fad102e20d37c9a42c3be233b -ca4799fd522c13e55600bf09ace7ce3c6e9dbb1a diff --git a/splunk_eventgen/samples/states b/splunk_eventgen/samples/states deleted file mode 100644 index ad6632e6..00000000 --- a/splunk_eventgen/samples/states +++ /dev/null @@ -1,50 +0,0 @@ -Alabama -Alaska -Arizona -Arkansas -California -Colorado -Connecticut -Delaware -Florida -Georgia -Hawaii -Idaho -Illinois -Indiana -Iowa -Kansas -Kentucky -Louisiana -Maine -Maryland -Massachusetts -Michigan -Minnesota -Mississippi -Missouri -Montana -Nebraska -Nevada -New Hampshire -New Jersey -New Mexico -New York -North Carolina -North Dakota -Ohio -Oklahoma -Oregon -Pennsylvania -Rhode Island -South Carolina -South Dakota -Tennessee -Texas -Utah -Vermont -Virginia -Washington -West Virginia -Wisconsin -Wyoming \ No newline at end of file diff --git a/splunk_eventgen/samples/states.abbrev b/splunk_eventgen/samples/states.abbrev deleted file mode 100644 index a20d9ce6..00000000 --- a/splunk_eventgen/samples/states.abbrev +++ /dev/null @@ -1,59 +0,0 @@ -AK -AL -AR -AS -AZ -CA -CO -CT -DC -DE -FL -FM -GA -GU -HI -IA -ID -IL -IN -KS -KY -LA -MA -MD -ME -MH -MI -MN -MO -MP -MS -MT -NC -ND -NE -NH -NJ -NM -NV -NY -OH -OK -OR -PA -PR -PW -RI -SC -SD -TN -TX -UT -VA -VI -VT -WA -WI -WV -WY \ No newline at end of file diff --git a/splunk_eventgen/samples/street.types b/splunk_eventgen/samples/street.types deleted file mode 100644 index 6b86ed6b..00000000 --- a/splunk_eventgen/samples/street.types +++ /dev/null @@ -1,59 +0,0 @@ -Ally -App -Arc -Ave -Blvd -Brow -Bypa -Cway -Cct -Circ -Cl -Cpse -Cnr -Cove -Ct -Cres -Dr -End -Esp -Flat -Fway -Frnt -Gdns -Gld -Glen -Grn -Gr -Hts -Hwy -Lane -Link -Loop -Mall -Mews -Pckt -Pde -Park -Pkwy -Pl -Prom -Res -Rdge -Rise -Rd -Row -Sq -St -Strp -Tarn -Tce -Tfre -Trac -Tway -View -Vsta -Walk -Way -Wway -Yard \ No newline at end of file diff --git a/splunk_eventgen/samples/streetNames.sample b/splunk_eventgen/samples/streetNames.sample deleted file mode 100644 index 736df459..00000000 --- a/splunk_eventgen/samples/streetNames.sample +++ /dev/null @@ -1,91670 +0,0 @@ -A E Smythe -A Fernwood -A G Spanos -A H Gray -A Jones -A New -A York -A. Alfred Lombardi -A.J. Hare -ASDA Britannia -AVRowe -Aa -Aalten -Aaron -Aaron Hill -Aaron Park -Aaron River -Abalone -Abanaki -Abandoned -Abaroo -Abate -Abbe -Abberton -Abbett -Abbetts -Abbeville -Abbey -Abbey Barn -Abbey Ellen -Abbey Field -Abbey Glen -Abbey Hey -Abbey Hill -Abbey Hills -Abbey Manor -Abbey Mill -Abbey Oak -Abbey Oaks -Abbey Orchard -Abbey Valley -Abbey Wood -Abbeydale -Abbeyfeale -Abbeyfield -Abbeyhill -Abbeystead -Abbeyview -Abbeyville -Abbeywood -Abbie -Abbington -Abbington Farm -Abbot -Abbotford -Abbots -Abbots Court -Abbots Ford -Abbots Wick -Abbots Wood -Abbotsbury -Abbotsfield -Abbotsford -Abbotsford Cove -Abbotshade -Abbotshall -Abbotsleigh -Abbotstone -Abbotswood -Abbott -Abbott Bridge -Abbott Valley View -Abbotts -Abbotts Park -Abbottsford -Abbottswell -Abbruzzi -Abby -Abby Wood -Abbywood -Abchurch -Abdale -Abden -Abdon -Abdul -Abe -Abecrombie -Abeel -Abel -Abele -Abelia -Abell -Abels -Abelyn -Abenaki -Abend -Abendroth -Abensburg -Aber -Aberavon -Abercairn -Abercombie -Aberconway -Abercorn -Abercrombie -Abercromby -Aberdare -Aberdeen -Aberdour -Aberfeldy -Aberfield -Aberfoil -Aberford -Aberford Highfield -Aberfoyle -Abergeldie -Abergele -Aberjona -Abermain -Abernathy -Abernethy -Abersoch -Abert -Abery -Abescon -Abierto -Abigail -Abilene -Abinante -Abingdon -Abinger -Abington -Abington Cambs -Abington Manor -Abington Woods -Abirdge -Able -Ablemarle -Ablett -Ablondi -Abner -Abner Belcher -Abney -Abney Court -Abode -Aborn -Aborn Square -Aboud -Aboukir -Aboyne -Abraham -Abraham Kazan -Abrahams -Abrams -Abramsky -Abramson -Abrew -Abridge -Abruzzini Hill -Absalom -Absecon -Absher -Abson -Abuklea -Ac -Acacia -Academia -Academic -Academy -Academy Fields -Academy Hill -Academy Woods -Acadia -Acadia Park -Acalanes -Acampo -Acanthis -Acanthus -Acapulco -Acari -Acaster -Accacia -Access -Accokeek -Accokeek Landing -Accolade -Accolawn -Accomac -Accommodation -Accomodation -Accord -Accord Park -Accord Pond -Accotink -Accotink Park -Ace -Acedemy Fields -Acela -Acer -Acerra -Acess -Acevedo -Acfold -Aches -Acheson -Achille -Achilles -Achillies -Achnacone -Achorn -Acken -Ackender -Acker -Ackerly -Ackerman -Ackers -Ackerson -Ackertown -Acklam -Ackley -Ackling -Acklington -Ackman -Ackmar -Ackroyd -Ackton -Ackworth -Acland -Acme -Acoma -Acomb -Aconbury -Acorn -Acorn Court -Acorn Hill -Acorn Hollow -Acorn Knoll -Acorn Park -Acorn Ponds -Acorn Wharf -Acosta -Acre -Acre More -Acre Top -Acre View -Acreage -Acrefield -Acregate -Acres -Acresfield -Acri -Acris -Acrocomia -Acron -Acropolis -Actinotus -Action -Actium -Active -Acton -Acton Horn -Acton Park East Acton -Acton Vale Bromyard -Actriz -Acts -Acushnet -Ad Art -Ad Hoc -Ada -Adagio -Adah -Adahmore -Adair -Adaire -Adak -Adalis -Adalist -Adaluma -Adam -Adam Albright -Adam C. Powell -Adam Wheeler -Adaminaby -Adamo -Adams -Adams Church -Adams Hill -Adams Park -Adams Ranch -Adams Ridge -Adams School -Adamson -Adamsrill -Adamsway -Adamswood -Adanac -Adar -Adare -Adason -Adastral -Adbaston -Adbert -Adbeth -Adclare -Adclire -Adcock -Adcroft -Add -Addalia -Addenbrooke -Adderley -Adderstone -Adderton -Addicks -Addie -Addington -Addington Village -Addiscombe -Addiscombe Court -Addison -Addisson -Addleman -Addlestead -Addlestone -Addsion -Addy -Adee -Adel -Adel Wood -Adela -Adelade -Adelaide -Adelberg -Adelbert -Adele -Adelia -Adeline -Adella -Adelle -Adelman -Adelphi -Adelphia -Adelsburg -Aden -Adenlee -Adenmore -Adept -Aderene -Adesso -Adey -Adeyfield -Adhara -Adie -Adin -Adina -Adine -Adios -Adirondack -Adisham -Adj. -Adkins -Adler -Adler Woods -Adlers -Adley -Adlington -Admaston -Admin Service -Administration -Admiral -Admiral Callaghan -Admiral Cochrane -Admiral Moore -Admiral Seymour -Admirals -Admiralty -Admont -Adobe -Adobe Canyon -Adobe Creek -Adobe Creek Lodge -Adolfo -Adolph -Adolphus -Adomar -Adonia -Ador -Adorn -Adp -Adpar -Adra -Adria -Adrian -Adriana -Adrianne -Adriano -Adriatic -Adrien -Adrienne -Adshall -Adstone -Adswood -Adswood Old Hall -Adult -Adur -Advance -Advantage -Advent -Adversane -Advice -Adwell -Ady -Adys -Ae -Aec -Aegean -Aegina -Aeolia -Aeolus -Aerator -Aerial -Aerie -Aerie Wynde -Aero -Aerobee -Aerodrome -Aerojet -Aerospace -Aetheric -Aetna -Aetna Springs -Af -Affetside -Affleck -Afghan -Afirmed -Africa -Afshar -Afterglow -Afternoon -Afton -Afton Coulee Ridge -Agadir -Agamemnon -Agape -Agar -Agassiz -Agate -Agates -Agatha -Agatite -Agaton -Agave -Agawam -Agden -Agdon -Agecroft -Ager -Aggie -Aggisters -Agincourt -Aging Oak -Agister -Agius -Aglen -Agneous -Agnes -Agnes Morley Heights -Agnesfield -Agnew -Agnola -Agnon -Agorista -Agoritsas -Agostina -Agostino -Agradar -Agrand -Agraria -Agricultural Farm -Agriculture -Agrippa -Agua Vista -Aguadilla -Aguazul -Aguilar -Agusta -Ah -Ahab -Ahearn -Ahern -Ahlmeyer -Ahlstrand -Ahlstrom -Ahmed -Ahneita -Ahnert -Aho -Ahr -Ahrens -Ahwahnee -Ahwanee -Aida -Aidan -Aiden -Aiello -Aiken -Aikens -Ailee -Aileen -Ailsa -Ailsworth -Ailward -Aimee -Aimee Meadows -Aimwell -Aines -Ainger -Ainsbrook -Ainsbury -Ainscough -Ainscow -Ainsdale -Ainsford -Ainsley -Ainslie -Ainslie Wood -Ainsty -Ainsworth -Ainsworth Hall -Aintree -Air -Air Base -Air Cargo -Air Cargo Service -Air Force -Air Freight -Air Park -Air View -Airbase -Aircraft -Aird -Airds -Airdsley -Aire -Airedale -Aires -Airfield -Airlea -Airlie -Airline -Airmen -Airmont -Airmont Hunt -Airmount -Airpark -Airport -Airport Access -Airport Park -Airport Plaza -Airport Ser -Airway -Airwick -Airy Hill -Airybrink -Aisgill -Aisher -Aislibie -Aisne -Aisquith Farm -Aitchander -Aitcheson -Aitchison -Aitken -Ajax -Ak -Akbar -Akeby -Akehurst -Akela -Akeman -Akenside -Akerly -Akerman -Akers -Akerson -Akesmoor -Akeson -Aketon -Akhtamar -Akin -Akira -Akora -Akron -Akroyd -Aksarben -Aksland -Al Catraz -Al Jones -Al Ventura -Al Wilhelmi -Alabama -Alabaster -Alachua -Alacross -Aladdin -Aladore -Alaga -Alago -Alahambra -Alam -Alamance -Alamatos -Alameda -Alameda Marina -Alameda Park -Alamein -Alamitos -Alamitos Creek -Alamo -Alamo Glen -Alamo Hills -Alamo Oaks -Alamo Ranch -Alamo Springs -Alamo Square -Alamos -Alamosa -Alan -Alan A Dale -Alan Boyd -Alan Crest -Alan Dale -Alan Deatherage -Alan Turing -Alana -Alanas -Alanbrook -Alandale -Alanhurst -Alann -Alanna -Alanon -Alanwick -Alaric -Alaska -Alaska Service -Alastair -Alba -Albacete -Albacore -Alban -Albana -Albanese -Albano -Albany -Albany Park -Albara -Albata -Albatross -Albee -Albemarle -Albergo -Albermale -Albermarle -Albermyrtle -Albern -Alberni -Albers -Albert -Albert Bridge -Albert Einstein -Albert Hill -Albert Leonard -Albert M Teglia -Albert Park -Albert Ray -Albert Royds -Alberta -Alberti -Albertina -Albertine -Alberto -Alberts -Albertson -Albertstone -Albertsworth -Albezzia -Albia -Albin -Albina -Albine -Albion -Albion Villas -Albon -Albot -Albourne -Albradt -Albrae -Albrecht -Albright -Albrighton -Albro -Albuera -Albury -Albury Grove -Albyan -Albyn -Albyns -Alcajapa -Alcala -Alcalde -Alcan -Alcana -Alcann -Alcatraz -Alcazar -Alcester -Alchester -Alcinda -Alcine -Alcira Nunez -Alcoa -Alcock -Alcocks -Alcon -Alcona -Alconbury -Alcoomie -Alcorn -Alcorne -Alcosta -Alcott -Alcova -Alcove -Alda -Aldacourrou -Aldagrove -Aldana -Aldbourne -Aldbridge -Aldbury -Aldcock -Aldcroft -Aldea -Aldean -Aldebaran -Aldeburgh -Aldebury -Aldemarle -Alden -Alden Glen -Alden Pond -Aldene -Aldenglen -Aldenham -Aldensley -Alder -Alder Brook -Alder Creek -Alder Glen -Alder Hill -Alder Woods -Alderberry -Alderbourne -Alderbrook -Alderbury -Aldercar -Aldercombe -Aldercroff Heights -Aldercroft -Aldercroft Heights -Alderdale -Alderfield -Alderfold -Alderford -Aldergate -Alderglen -Alderleaf -Alderley -Alderman -Aldermary -Aldermaston -Alderminster -Alderney -Alders -Alders End -Alders Green -Aldersbrook -Aldersbrook Park -Aldersey -Aldersgate -Aldersgrove -Aldershot -Alderside -Aldersley -Aldersmead -Alderson -Alderstead -Alderstone -Aldersyde -Alderton -Alderton Hall -Alderue -Alderville -Alderwick -Alderwood -Alderwood Mall -Aldfield -Aldford -Aldgate -Aldgate High -Aldham -Aldi -Aldie -Aldine -Aldington -Aldis -Aldo -Aldock -Aldon -Aldona -Aldorae -Aldred -Aldren -Aldria -Aldrich -Aldrid -Aldridge -Aldrin -Aldrington -Aldro -Aldsworth -Aldus -Aldwark -Aldwick -Aldwin -Aldwina -Aldworth -Aldwych -Aldwyn Park -Alec -Alec Templeton -Alecia -Aleda -Alee -Alegra -Alegre -Aleilani -Alejandra -Alejandro -Alelanto -Alemany -Alembic -Alemeda -Alene -Aleppo -Alerche -Alers -Alesia -Alessandra -Alessandro -Alessi -Alessio -Alestan Beck -Alester -Alesworth -Aleta -Aletha -Alethea -Aleutian -Alewife -Alewife Brook -Alex -Alexander -Alexander Bell -Alexander Cornell -Alexander D. Sullivan -Alexander Fleming -Alexander Hamilton -Alexander Manor -Alexander Valley -Alexanders -Alexandra -Alexandras Grove -Alexandria -Alexandria Overlook -Alexendria -Alexian -Alexine -Alexis -Aley -Alezane -Alfa -Alfadel -Alfalfa -Alfalfa Plant -Alfan -Alfandre -Alfandre Mews -Alfearn -Alfini -Alfold -Alford -Alford Valley -Alfords Point -Alforth -Alfred -Alfred Lord Tennyson -Alfred Nobel -Alfreda -Alfreg -Alfreton -Alfriston -Alft -Algair -Algar -Algarve -Algea -Algen -Alger -Algernon -Algers -Alghera -Algiers -Algoma -Algona -Algonkian -Algonkin -Algonquian -Algonquin -Algosi -Algreave -Algretus -Alhambra -Alhambra Creek -Alhambra Hills -Alhambra Valley -Alherst -Ali -Aliberti -Alibi -Alibon -Alicante -Alice -Alice Bright -Alice Eastwood -Alice G Agnew -Alice Griffith -Alicia -Alick -Alida -Alie -Alienor -Alimar -Alina -Alinda -Aline -Alinga -Alington -Alisa -Alisal -Alisha -Alisma -Aliso -Alison -Alisons -Alissa -Alistair -Alitos -Aliwal -Alix -Alize -Aljan -Aljay -Alkamont -Alkaringa -Alken -Alker -Alkerden -Alkham -Alkier -Alkira -Alkire -Alkoo -Alkoomie -Alkrington Park -All Day -All Saints -All Souls -Alla -Alladin -Allaire -Allama Iqbal -Allambee -Allambi -Allambie -Allan -Allan Daugherty -Allandale -Allander -Allanhill -Allanmere -Allano -Allanson -Allanwood -Allara -Allard -Allardyce -Allars -Allawah -Allay -Allborough -Allbrook -Allcroft -Allday -Allden -Alldens -Allder -Alldicks -Alldis -Allee -Alleen -Allegany -Alleghany -Allegheny -Allegheny Grove -Allegra -Allegro -Allemand -Allemany -Allemong -Allen -Allen Dale -Allen Dent -Allen Edwards -Allen Farm -Allen Oneill -Allen Park -Allen Robert -Allenby -Allencrest -Allendale -Allende -Allene -Allenhurst -Allens -Allensby -Allenswood -Allentown -Allenwood -Aller -Allerds -Allerford -Allerman -Allerton -Allerton Grange -Alles -Allesley -Allessandria -Allessandrini -Allestree -Alletta -Allevard -Alley -Alleyndale -Alleyne -Alleyns -Allfarthing -Allgair -Allgood -Allgrove -Allhallows -Alliance -Allibone -Allied -Allies -Allindale -Alline -Alling -Allingham -Allington -Alliott -Allis -Allisha -Allison -Allison Park -Allister -Allitsen -Allman -Allmen -Allnatt -Allness -Allnutt -Allnutts -Allocco -Allom -Allon -Allonby -Allotment -Alloway -Allowrie -Allport -Allred -Allsmoor -Allsopp -Allspice -Allstate -Allston -Allum -Allview -Allward -Allwood -Allworth -Allwyn -Allyn -Allyson -Alm -Alma -Alma Bridge -Alma College -Alma Farm -Almack -Almada -Almaden -Almaden Valley -Almaden Village -Almadera -Almadine -Almanac -Almandon -Almanera -Almanor -Almansa -Almanza -Almar -Almarida -Almaz -Almeda -Almeida -Almena -Almenar -Almendra -Almendral -Almer -Almeria -Almeric -Almeta -Almien -Almira -Almners -Almon -Almona -Almond -Almond Blossom -Almond Orchard -Almond Tree -Almond Valley -Almondridge -Almonds -Almondtree -Almondwood -Almont -Almonte -Almora -Almorah -Almount -Almroth -Alms Hill -Almsbury -Almshouse -Almwch -Alness -Alnond -Alnwick -Alnwood -Aloe -Aloha -Alondra -Along Neponset -Alonso -Alonzo -Alopex -Alorn -Alosio -Alp -Alpena -Alpenglow -Alpert -Alperton -Alpet -Alph -Alpha -Alphabet -Alphagate -Alpheus -Alphin -Alphington -Alphonse -Alphonsus -Alpine -Alpine Beach -Alpine Creek -Alpine Falls -Alpine Frost -Alpine Meadow -Alpine Springs -Alpita -Alport -Alprilla Farm -Alps -Alquire -Alray -Alresford -Alric -Alridge -Alro -Alrose -Alroy -Alsa -Alsace -Alsace Loraine -Alsada -Alschuler -Alsfeld -Alsike -Alsom -Alson -Alsop -Alsops -Alstead -Alston -Alstone -Alstyne -Alt -Alt Fold -Alt Hill -Alta -Alta Garden -Alta Glen -Alta Haciendas -Alta Loma -Alta Mesa -Alta Mesa East -Alta Mira -Alta Monte -Alta Punta -Alta Sierra -Alta Sonoma -Alta Sunrise -Alta Tierra -Alta Valley -Alta Verde -Alta Via -Alta Vista -Altacrest -Altadena -Altair -Altamara -Altamead -Altamira -Altamont -Altamont Creek -Altamont Pass -Altamore -Altamount -Altanta -Altarinda -Altena -Altenitas -Alter -Altessa -Altgeld -Altham -Althea -Alther -Althorn -Althorne -Althorp -Althorpe -Althouse -Altia -Altimont -Altino -Altivo -Altman -Altmar -Alto -Alto Verde -Altofts -Altofts Hall -Altofts Lodge -Altoga -Alton -Altona -Altoona -Altoona Beach -Altos -Altos Oaks -Altrincham -Altrura -Altruria -Altschul -Altura -Alturas -Altus -Altwood -Altyre -Alum Rock -Alum Rock Falls -Alumni -Alumrock -Alva -Alvah -Alvan -Alvarado -Alvarado Niles -Alvarez -Alvaston -Alveley -Alvern -Alvernaz -Alverno -Alverson -Alverstoke -Alverston -Alverstone -Alverton -Alvertus -Alves -Alves Ranch -Alveston -Alvey -Alviena -Alvin -Alvina -Alvine -Alvington -Alviso -Alvista -Alviston -Alvord -Alwaes -Alward -Alwat -Alway -Alwick -Alwin -Alwine -Alwinton -Alwoodley -Alwoodley The -Alwyn -Alwyne -Alwyngton -Alwyns -Alxandria -Alyce -Alyea -Alysheba -Alyson -Alyssa -Alyssum -Alyward -Alywne -Alywood -Amadeus -Amado -Amador -Amador Creek -Amador Plaza -Amador Valley -Amal -Amalfi -Amalgamated -Amalia -Amanda -Amann -Amanola -Amant -Amapala -Amapola -Amaral -Amaranta -Amaranth -Amaretto -Amargosa -Amari -Amarillo -Amarina -Amark -Amaro -Amaroo -Amaroo Park -Amaryl -Amaryllis -Amasa -Amatista -Amato -Amax -Amaya -Amaya Creek -Amaya Ridge -Amazon -Ambarrow -Ambassador -Amber -Amber Creek -Amber Grove -Amber Meadows -Amber Ridge -Amber Valley -Amberdale -Amberden -Amberfield -Amberg -Ambergate -Amberglen -Amberhill -Amberina -Amberjack -Amberlea -Amberlea Farm -Amberleaze -Amberleigh -Amberleigh Farn -Amberley -Amberly -Amberside -Amberson -Amberton -Amberwood -Ambiance -Amble -Ambler -Amblers -Ambleside -Amblethorn -Amblewood -Ambley -Ambon -Ambourn -Amboy -Ambria -Ambriance -Ambric Knolls -Ambrook -Ambrooke -Ambrosden -Ambrose -Ambrose Valley -Ambrosia -Ambrym -Ambulance Only -Ambum -Ambush -Amby -Ameland -Amelia -Amelia Earhart -Amelia Godbee -Amelian -Amelung -Amenbury -Amend -Amendodge -Ameno -Ament -Amer -Amerada -Amerden -America -America Center -America Moor -American -American Aggregate -American Beauty -American Canyon -American Eagle -American Holly -American Legion -American Oaks -American Pride -American River -American River Canyon -Americana -Americus -Amerigo -Amerland -Amero -Amersham -Amersham Hill -Amery -Ames -Ames Crossing -Ames Hill -Amesbury -Amesti -Amesury -Amethyest -Amethyst -Amey -Amherst -Amherst Bank -Amhurst -Amias -Amicita -Amico -Amid -Amidio -Amidon -Amiens -Amigo -Amilcar -Amina -Amiott -Amir -Amis -Amisfield -Amisse -Amistad -Amitaf -Amito -Amity -Amkin -Amlee -Amlets -Amli -Amlin -Amlong -Amman -Ammel -Ammendale -Ammer -Ammons -Ammunition -Amner -Amners Farm -Amoco -Amondo -Amor -Amori -Amoruso -Amory -Amos -Amos Garrett -Amos Hill -Amos Sampson -Amoss -Amott -Amour -Ampeg -Ampel -Ampere -Amphibian -Amphitheatre -Ampleforth -Ampthill -Ampton -Amsbury -Amsden -Amsden Ridge -Amstel -Amsterdam -Amsterdan -Amstutz -Amulet -Amundsen -Amundson -Amur Hill -Amvet -Amvets -Amwell -Amy -Amyand Park -Amyruth -Ana -Ana Lisa -Ana Maria -Anabell -Anable -Anacapa -Anacapri -Anaconda -Anagram -Anaheim -Anakai -Anakin -Analitis -Analy -Anamor -Anamosa -Anana -Anand Brook -Ananda -Anandale -Anastasia -Anastasio -Anatola -Anatolia -Anawan -Anawanda -Ancaster -Ancell -Ancells -Ancestor -Ancho Vista -Anchor -Anchor And Hope -Anchorage -Ancient Oak -Ancient Oaks -Ancient Tree -Ancille -Ancoats -Ancon -Ancona -Ancroft -Ancrum -Andale -Andall -Andalucia -Andalusia -Andalusian -Andaman -Andante -Andard -Anderby -Anderley -Anderlie -Andermann -Anders -Andersen -Anderson -Anderson Estates -Anderson Farm -Anderson Hill -Anderson Lakes -Anderson Ridge -Anderson Scout Camp -Anderton -Andertons -Andes -Anding -Andiron -Andith -Andlers Ash -Andora -Andorick -Andorra -Andove -Andover -Andover Country Club -Andover Heights -Andrade -Andre -Andre Hill -Andrea -Andreas -Andrease -Andreasen -Andrejewski -Andrene -Andres -Andrew -Andrew Alan -Andrew Borde -Andrew Hill -Andrew Lloyd -Andrewartha -Andrews -Andrews Farm -Andria -Andrieux -Andromeda -Andros -Androvette -Andrus -Andrus Island -Andsbury -Andwell -Andy -Anebo -Anelda -Anella -Anembo -Anerley -Anerley Park -Anesbury -Anets -Anette -Anfield -Anfred -Angas -Angel -Angel Falls -Angel Flight -Angel Hill -Angel Kerley -Angel Rod -Angela -Angela Rose -Angeles -Angelica -Angelico -Angelina -Angeline -Angelini -Angelique -Angelita -Angell -Angelo -Angelos -Angels -Angelus -Angelwing -Angerer -Angerstein -Angevine -Angie -Angier -Angies of Holloway -Angle -Angle Vale -Angledook -Anglefield -Angler -Anglers -Angles -Anglesea -Anglesey -Anglesey Court -Angleside -Anglessey -Anglewood -Angley -Anglian -Anglican -Anglin -Anglo -Angophora -Angora -Angorra -Angouleme -Angrave -Angsley -Angus -Angwin -Anhalt -Anice -Animal Husbandry -Animbo -Anis -Anise -Aniseed -Anita -Anjim -Anjo -Anjou -Anka -Ankener -Ankeny -Anker -Ankers -Anlaby -Anley -Ann -Ann Arbor -Ann Boleyn -Ann Fitz Hugh -Ann Lee -Ann Marie -Ann Natalie -Ann Rose -Ann Vinal -Anna -Anna Louise -Anna Mac -Anna Maria -Anna Marie -Annabel -Annabella -Annabelle -Annable -Annables -Annadale -Annadea -Annadel Heights -Annafran -Annalisa -Annam -Annamarie -Annamorh -Annan -Annandale -Annangrove -Annapolis -Annapolis Neck -Annapolis Walk -Annapolitan -Annardale -Annawan -Annaway -Annawon -Annbar -Anncroft -Anne -Anne Arundel -Anne Arundel Com Col -Anne Marie -Anne Peake -Anne Tucker -Anne William -Anne of Cleves -Anneliese -Annella -Annenberg -Annerino -Annerley -Annes Court -Annes Prospect -Annese -Annesley -Annete -Annett -Annetta -Annette -Annettes -Annettes Retreat -Annfield -Annhurst -Annico -Annie -Annie Laurie -Annie Moore -Annie Spence -Annie Terrace -Annin -Annina -Anning -Annington -Annis -Annisfield -Annisquam -Anniston -Anniversary -Annjim -Annmar -Annmore -Annona -Annoreno -Anns -Anntaramiss -Annual -Annunciation -Annursnac Hill -Annuskemunnica -Anny -Ano -Ano Nuevo -Anoatok -Anoka -Anola -Anon -Anona -Anondale -Anoover -Anpell -Anroyd -Ansbrough -Ansculf -Ansdell -Ansel -Ansell -Anselm -Anselma -Ansford -Ansie -Ansleigh -Ansley -Anson -Ansonia -Ansted -Anstee -Anstey -Anstey Mill -Anstice -Anstone -Anstridge -Answell -Answorth -Antarctic -Antares -Antaya -Ante Up -Antell -Antelope -Antelope Hills -Antelope Run -Antelope Springs -Anteros -Anthea -Anthem -Antholl -Anthony -Anthony Hill -Anthony Marangiello -Antietam -Antigone -Antigua -Antil -Antile -Antill -Antioch -Antiopi -Antiqua -Antique -Antique Forest -Antiquity -Antlands -Antler -Antoine -Antoinette -Antolak -Anton -Antone -Antonetta -Antonette -Antonette Marie -Antonia -Antonia Ford -Antonietta -Antonio -Antony -Antram -Antrican -Antrim -Antrobus -Antwerp -Anvil -Anvilwood -Anworth -Anyards -Anza -Anzac -Anzar -Anzavista -Anzio -Apache -Apakesha -Apap -Apara -Apartment -Apawamis -Apeldoorn -Aperdele -Apers -Apethorn -Apex -Apfel -Apgar -Apia -Apian -Apiary -Apking -Apley -Aplin -Aplomado -Apollo -Apollo Regent -Aponi -Apothecary -Appach -Appalachian -Appaloosa -Appamatox -Appeal -Appenzel -Apperley -Apperlie -Apperson Ridge -Appian -Appin -Apple -Apple Blossom -Apple Creek -Apple Crest -Apple Dor -Apple Farm -Apple Garden -Apple Gate -Apple Glen -Apple Green -Apple Grove -Apple Hill -Apple Lovers -Apple Manor -Apple Mill -Apple Orchard -Apple Ridge -Apple River -Apple Row -Apple Tree -Apple Valley -Apple View -Apple Wood -Applebee -Appleberry -Appleblossom -Applebox -Applebrook -Appleby -Applecreek -Applecrest -Applecroft -Applecross -Appledale -Appledell -Appledore -Appledown -Appleford -Applegarth -Applegate -Applegreen -Applegrove -Applejack -Appleman -Applemarket -Applemint -Applenut -Appleseed -Appleton -Appletree -Applewick -Applewood -Appley -Appleyard -Appling -Appling Valley -Appollo -Appomattox -Apprentice -Approach -Apps -Appspond -Apricot -April -April Journey -Apron -Apshawa Cross -Apsis -Apsley -Apsley End -Aptakisic -Apthorp -Apthrop -Apton -Apton Hall -Aptos -Aptos Beach -Aptos Creek -Aptos Creek Fire -Aptos High School -Aptos Hill -Aptos Rancho -Aptos School -Aptos View -Aptos Wharf -Aqua -Aqua Lynn -Aqua View -Aqua Vista -Aquahart -Aquamarine -Aquarium -Aquarius -Aquasco Farm -Aquatic -Aquavia -Aqueduct -Aquia Creek -Aquila -Aquilina -Aquinas -Aquino -Aquistapace -Ara -Arab -Arabanoo -Arabella -Arabelle -Arabian -Arabin -Araca -Arafura -Araglen -Arago -Aragon -Aragona -Arakelian -Araki -Arakoon -Aralia -Aralluen -Araluen -Aram -Arambel -Aramis -Aramon -Aran -Arana -Aranda -Arandale -Araneo -Arapaho -Arapahoe -Ararat -Arastradero -Arata -Arate -Araujo -Arballo -Arbardee -Arbeiter -Arbeleche -Arbeleda -Arbell -Arbella -Arbetter -Arbie -Arbit -Arbogast -Arbol -Arbolado -Arboleda -Arbor -Arbor Creek -Arbor Falls -Arbor Fields -Arbor Gate -Arbor Glen -Arbor Grove -Arbor Hill -Arbor Hills -Arbor Lakes -Arbor Meadows -Arbor Oaks -Arbor Park -Arbor Ridge -Arbor View -Arbor Villa -Arbor Vine -Arbor Vitae -Arbordale -Arboreo -Arboretum -Arboretum Village -Arborfield -Arborfield Church -Arborfield Walden -Arboro -Arborough -Arborsedge -Arborside -Arborview -Arborvitae -Arborway -Arborwood -Arbory -Arbour -Arbour Walk -Arbre -Arbroath -Arbrook -Arbroth -Arbuckle -Arbury -Arbuton -Arbutus -Arca -Arcada -Arcade -Arcade Lake -Arcadia -Arcadia Palms -Arcadian -Arcady -Arcand -Arcangela -Arcata Bay -Arce -Arch -Arch Airport -Arch Hall -Arch Rk -Archangel -Archbold -Archbridge -Archbury -Archdale -Archel -Archer -Archerdale -Archers -Archers Green -Archery -Archery Fire -Arches -Archibald -Archie -Architect -Archlaw -Archmeadow -Archstone -Archung -Archway -Archwood -Arco -Arcola -Arcon -Arctic -Arctic Cat -Arctic Fox -Arcturus -Arcus -Arcwood -Arcy -Ard -Ardale -Ardan -Ardath -Ardaugh -Ardbeg -Ardee -Ardell -Ardelle -Arden -Arden Bluff -Arden Creek -Arden Forest -Arden Oaks -Arden Shore -Arden View -Ardendale -Ardenfield -Ardenham -Ardenlee -Ardenmore -Ardennes -Ardenness -Ardenridge -Ardent -Ardenwood -Ardern -Arderne -Ardfern -Ardfilan -Ardfour -Ardglass -Ardgowan -Ardgryffe -Ardilaun -Ardilla -Ardilla Canyon -Arding -Ardingly -Ardis -Ardith -Ardleigh -Ardleigh Green -Ardler -Ardley -Ardlui -Ardmere -Ardmore -Ardno -Ardo -Ardoch -Ardor -Ardra -Ardrossan -Ardrossen -Ardshiel -Ardsleigh -Ardsley -Ardsmoor -Ardvin -Ardwell -Ardwick -Ardwick Ardmore -Area -Areil -Arellano -Arena -Arenal -Arends -Arenosa -Arethusa -Arey -Arezzo -Arezzo Pointe -Arf -Arford -Argall -Argent -Argenta -Argentine -Argents -Argie -Argila -Argilla -Argo -Argon -Argonaut -Argonne -Argonne Ridge -Argosy -Argowan -Arguello -Arguimbau -Argus -Argyle -Argyle Club -Argyll -Argyll Park -Ari -Ariadne -Ariana -Arianna -Arias -Aric -Arica -Aricia -Ariel -Arielle -Aries -Ariey -Arikara -Arilla -Arimo -Arinya -Arion -Aris T Allen -Arista -Aristocrat -Aristotle -Arizona -Arjay -Ark -Ark Haven -Arkana -Arkansas -Arkay -Arkell -Arkena -Arkendale -Arkhaven -Arkindale -Arkinglander -Arkland -Arkle -Arkley -Arklow -Arkwood -Arkwright -Arlanda -Arleda -Arlee -Arleen -Arleigh -Arleita -Arlen -Arlene -Arlesey -Arlesford -Arleta -Arletta -Arlette -Arlewis -Arley -Arley New -Arlia -Arlie -Arlies -Arline -Arlingdale -Arlingford -Arlington -Arlington N -Arliss -Arlisson -Arlmont -Arlo -Arlon -Arlott -Arlow -Arlton -Arlyn -Arlyne -Arm -Armaan -Armadale -Armagh -Armand -Armandale -Armandine -Armanini -Armat -Armata -Armbrust -Armell -Armendown -Armentieres -Armes -Armetale -Armett -Armfield -Armfield Farm -Armida -Armidale -Armiger -Arminda -Arminger -Armington -Arminio -Arminteres -Armistead -Armistice -Armiston -Armit -Armitage -Armitree -Armitstead -Armitt -Armley -Armley Branch -Armley Grange -Armley Lodge -Armley Park -Armley Ridge -Armm -Armon -Armond -Armonk -Armor -Armore -Armory -Armour -Armour Villa -Armouries -Armoury -Arms -Armsby -Armsby Cemetery -Armside -Armstead -Armstrong -Armstrong Wood -Armwood -Army -Army Navy -Army Trail -Arnaudo -Arncliff -Arncliffe -Arncot -Arncott -Arncott Wood -Arndell -Arndill -Arne -Arner -Arnerich -Arnesby -Arnet -Arnett -Arneway -Arneways -Arnfield -Arnheim -Arnhem -Arnica -Arnison -Arno -Arnold -Arnold Janssen -Arnold Mills -Arnold Park -Arnolds -Arnon Chapel -Arnon Lake -Arnon Meadow -Arnos -Arnot -Arnott -Arnould -Arnow -Arnprior -Arnside -Arnsley -Arnulf -Arnulls -Arodene -Aromas -Aromas Heights -Aromitas -Aron -Arona -Aronia -Aronow -Aroona -Aroostook -Arora Heights -Arosa -Arpeggio -Arqueado -Arquilla -Arragon -Arragong -Arran -Arrandale -Arrezzo -Arrianne -Arriba -Arrighi -Arrigotti -Arrington -Arrol -Arrow -Arrow Creek -Arrow Head -Arrow Park -Arrowbrook -Arrowfield -Arrowhead -Arrowhead Farm -Arrowhead Farms -Arrowhead Park -Arrowhill -Arrowleaf -Arrowood -Arrowrock -Arrowsmith -Arrowwood -Arroyada -Arroyo -Arroyo Grande -Arroyo Hondo -Arroyo Leon -Arroyo Oaks -Arroyo Seco -Arroyo Sierra -Arroyo Vista -Arroyuelo -Arrunga -Arsan -Arsenal -Art -Art Gallery -Art Schultz -Artarmon -Artegall -Artemas -Artemel -Artemus -Arterberry -Arterial -Artery -Artese -Artesian -Arthall -Arthill -Arthington -Arthingworth -Arthog -Arthur -Arthur B Lord -Arthur Conan Doyle -Arthur Kill -Arthur King -Arthur Matthew -Arthur Nate Haugh -Arthur Taylor -Arthur Woods -Arthurdon -Arthursdale -Artic -Artic Quill -Artichoke -Artie -Artillary -Artillery -Artillery Park -Artimus -Artis -Artisan -Artist -Artists -Artizan -Artlett -Artornish -Arts -Arts Circle -Artuna -Artwill -Aruba -Aruma -Arun -Arunah -Arundale -Arundel -Arundel Beach -Arundel Corp -Arundel Corporation -Arundel Cove -Arundel Gateway -Arundel Mills -Arundel Park -Arundel on the Bay -Arundell -Arundle -Arunta -Arutas -Arvale -Arverne -Arvidson -Arvilla -Arvin -Arvon -Arwick -Ary -Arye -Aryness -Arywood -Arzate -Asa -Asbourne -Asbury -Asbury Circle -Ascadilla -Ascalano -Ascalon -Ascan -Ascension -Ascham -Asche -Aschurch -Ascol -Ascolano -Ascot -Ascots -Ascott -Ascroft -Asdee -Aseki -Asford -Ash -Ash Church -Ash Green -Ash Grove -Ash Hill -Ash House -Ash Lawn -Ash Park -Ash Platt -Ash Ride Rosewood -Ash Tree -Ashampstead -Ashanger -Asharoken -Ashbee -Ashbel -Ashberry -Ashboro -Ashbourn -Ashbourne -Ashbox -Ashbridge -Ashbrook -Ashbrook Hey -Ashbrooke -Ashburn -Ashburn Farm -Ashburn Village -Ashburner -Ashburnham -Ashburnham Hill -Ashburton -Ashburton Manor -Ashbury -Ashby -Ashby Ponds -Ashby West -Ashccott -Ashcombe -Ashcott -Ashcroft -Ashdale -Ashdell -Ashden -Ashdene -Ashdod -Ashdon -Ashdown -Ashdown Forest -Ashe -Ashebrook -Ashely -Ashen -Ashen Grove -Ashenden -Ashendene -Ashenground -Ashentree -Asher -Asheridge -Ashes -Asheville -Ashfield -Ashfield Farm -Ashford -Ashfordby -Ashgap -Ashgate -Ashgrove -Ashgrove House -Ashingdon -Ashington -Ashkins -Ashkirk -Ashlake -Ashland -Ashland Woods -Ashlands -Ashlar -Ashlawn -Ashlea -Ashleaf -Ashleigh -Ashler -Ashley -Ashley Glen -Ashley Green -Ashley Manor -Ashley Mill -Ashley Oaks -Ashley Park -Ashley Woods -Ashleys Park -Ashlin -Ashling -Ashlon -Ashlone -Ashlyn -Ashlyns -Ashmall -Ashmead -Ashmeade -Ashmere -Ashmill -Ashmole -Ashmon Boburg -Ashmond -Ashmont -Ashmoor -Ashmore -Ashmount -Ashness -Ashnut -Ashover -Ashridge -Ashstead -Ashtead -Ashtead Woods -Ashton -Ashton Clough -Ashton Hill -Ashton New -Ashton Oaks -Ashton Old -Ashton Park -Ashton Woods -Ashtonbirch -Ashtree -Ashtrees -Ashurst -Ashvale -Ashview -Ashville -Ashwater -Ashwell -Ashwells -Ashwells Manor -Ashwin -Ashwood -Ashworth -Asia -Asiatic -Asilomar -Askam -Aske -Askegrens -Asket -Askett -Askew -Askewton -Askey -Askill -Askland -Askov -Askren -Askwith -Asland -Aslett -Asmara -Asmus -Aso Taro -Asolando -Asoleado -Asp -Aspara -Aspasia -Aspdin -Aspen -Aspen Grove -Aspen Hill -Aspen Hollow -Aspen Leaf -Aspen Point -Aspen Ridge -Aspen Tree -Aspen Valley -Aspen Willow -Aspen Woods -Aspenlea -Aspenpark -Aspenridge -Aspenshaw -Aspentree -Aspenwood -Aspern -Aspesi -Asphalt -Aspian -Aspinal -Aspinall -Aspinden -Aspinwall -Aspley -Asplins -Asplund -Aspull -Asquith -Asquithoaks -Asquithview -Ass House -Assabet -Assateague -Asselin -Assell -Assembly -Assembly Square -Asset -Assets -Assher -Assheton -Assinippi -Assisi -Assissi -Associated -Association -Assonet -Assumption -Assumpton -Assunta -Assyria -Asta -Astan -Astbury -Aste -Astelia -Astell -Aster -Asterbilt -Asterwood -Asti -Asticou -Astin -Astle -Astleham -Astley -Astley Hall -Astolat -Aston -Aston Abbotts -Aston Clinton -Aston End -Aston Forest -Aston Manor -Astonville -Astor -Astoria -Astoria Park -Astra -Astrahan -Astral -Astrid -Astrida -Astro -Astrodome -Astrolabe -Astron -Astronaut -Astronomy -Astrope -Asturias -Astwick -Astwin -Astwood -Asylum -Asylum Arch -At Last Farm -Atalanta -Atbara -Atcham -Atchenson -Atcheson -Atchison -Atco -Atcost -Aten -Atha -Athabaska -Athania -Athearn -Athel -Atheldene -Athelney -Athelstan -Athelstane -Athelstone -Athelwold -Athem -Athena -Athenaeum -Athene -Athenia -Athenlay -Athens -Atherden -Atherfield -Atherfold -Atherly -Atherstone -Atherton -Atherton Oaks -Atherwood -Athey -Athletic Field -Athlon -Athlone -Athol -Atholl -Athony -Athos -Athrusleigh -Athy -Atilda -Atina -Atka -Atkins -Atkinson -Atlandtic -Atlanta -Atlantic -Atlantic Hills -Atlantic House -Atlantic View -Atlantis -Atlantus -Atlas -Atlas Peak -Atlee -Atleigh -Atlip -Atna -Atney -Atno -Atom -Atomic -Atrebatti -Atria -Atrium -Attar -Attard -Attawa -Attawan -Atte -Atteberry -Atteentee -Attenburys -Atterbury -Attercliffe -Atteridge -Attewell -Attewood -Attica -Attimore -Attingham -Attitash -Attleboro -Attlee -Attleford -Attneave -Attorney -Attow -Attridge -Attunga -Attwaters -Attwood -Atty -Atwater -Atwell -Atwill -Atwood -Auberge -Auberry -Aubert -Aubin -Aubinoe Farm -Auborn -Aubreen -Aubrey -Aubrey Neville -Aubreys -Aubrieta -Auburn -Auburn Folsom -Auburn Grove -Auburn Lakes -Auburn Leaf -Auburn Meadow -Auburn Oaks Village -Auburn Ridge -Auburn Woods -Auburndale -Auchmar Service -Auciello -Auckland -Auclair -Auclum -Auction -Auction Barn -Aucutt -Auden -Audenshaw -Audery -Audette -Audine -Auditorium -Auditors -Audlem -Audley -Audmar -Audobon -Audrea -Audrey -Audrey Smith -Audrey Zapp -Audry -Auds -Audubon -Auerbach -Auger -Aughton -Augurs -August -Augusta -Augusta Hooe -Augusta Point -Augustan -Augustana -Augustina -Augustine -Augustus -Aukane -Aukland -Auld -Auldwood -Aulin -Aulston -Aultman -Auluba -Aulwurm -Aumack -Auman -Aumuna -Auna -Aunt Lilly -Aunt Lizzies -Aura Vista -Aurallia -Aurelia -Aurelia Sylvia -Aurelian -Aurelie -Auricchio -Auriel -Auriga -Aurilla -Auriol -Auriol Park -Aurora -Aurore -Auseon -Aussie -Austell -Austen -Austenwood -Austhorpe -Austin -Austin Creek -Austin Joseph -Austins -Austral -Australia -Australian -Australis -Australorp -Austrian -Austrian Pine -Autenreith -Auth -Authority -Authorpe -Authors -Auto -Auto Center -Auto Circle -Auto Club -Auto Mall -Auto Park -Auto Plaza -Autocenter -Automation -Automobile -Automotive -Autopilot -Autotech -Autoville -Autran -Autrey -Autum Leaf -Autumn -Autumn Brook -Autumn Chace -Autumn Chase -Autumn Creek -Autumn Crest -Autumn Fields -Autumn Flower -Autumn Gate -Autumn Gold -Autumn Hill -Autumn Lake -Autumn Leaf -Autumn Maple -Autumn Meadow -Autumn Mist -Autumn Oak -Autumn Oaks -Autumn Park -Autumn Point -Autumn Ridge -Autumn Rust -Autumn Trail -Autumn Valley -Autumn Willow -Autumn Woods -Autumncrest -Autumnleaf -Autumnvale -Autumnwind -Autumnwood -Auvergne -Auvernat -Aux Sable -Auxplaines -Auzerais -Ava -Avalani -Avalli -Avalon -Avalon Bay -Avalon Ct -Avamere -Avansino -Avante -Avanti -Avard -Avarn -Avati -Avdon -Ave Maria -Avebury -Avelar -Aveley -Aveline -Aveling -Aveling Park -Avella -Avellano -Avelon -Avena -Avenal -Avenel -Avenel Farm -Avenel Gardens -Avenell -Avenida -Avenida del Este -Avenida del Norte -Avening -Avenleigh -Avenons -Avens -Avenue -Avenue A -Avenue B -Avenue of Heroes -Averell -Averenches -Averett -Averhill -Averill -Averitt -Avern -Avers -Averton -Avery -Avery Park -Avesbury -Avey -Aviador -Avian -Aviary -Aviation -Aviator -Aviemore -Avignon -Avila -Avington -Avior -Avis -Avisford -Aviston -Avitar -Avoca -Avocet -Avola -Avon -Avon Beach -Avon Hill -Avona -Avonbrook -Avondale -Avondale Park -Avonelle -Avonia -Avonlea -Avonley -Avonmore -Avonmouth -Avonshire -Avonwick -Avots -Avram -Avro -Avy -Awaba -Awald -Awalt -Awani -Award -Awashawagh -Awatea -Awatos -Awbrey Patent -Awburn -Awixa -Awkard -Awl -Awlfield -Awliscombe -Axbridge -Axdell -Axe -Axehurst -Axel -Axes -Axford -Axholme -Axinn -Axletree -Axminster -Axtaine -Axtell -Axton -Ayala -Ayanian -Aybrook -Aycliffe -Aycrigg -Ayd Mill -Aydon -Ayebridges -Ayelands -Ayer -Ayers -Aylands -Ayles -Aylesbury -Aylesbury Vale -Aylesby -Aylesford -Aylestone -Ayleswade -Aylesworth -Aylett -Ayliffe -Aylin -Ayling -Ayloffe -Aylor -Aylsford -Aylsham -Aylsworth -Aylward -Aylwin -Aymar -Aymer -Aynho -Aynhoe -Aynor -Aynsley -Aynsworth -Ayot Little Green -Ayotte -Ayr -Ayres -Ayres End -Ayreshire -Ayresome -Ayrlawn -Ayrlie Water -Ayrmont -Ayrshire -Ayrsome -Ayrton -Ayrton Senna -Aysgarth -Ayshe Court -Ayshford -Ayshire -Aythorne -Ayton -Aytoun -AzTec -Aza -Azalea -Azalea Dell -Azalea Flat -Azalea Grove -Azalea Sands -Azalia -Azara -Azeala -Azee -Azel -Azelea -Azell -Azenby -Azevedo -Azimuth -Azof -Azores -Aztec -Aztec Ridge -Azuar -Azucar -Azule -Azure -Azusa -Azzopardi -B Colony -B Fernwood -B Gale Wilson -B Leeds -B Lefferts -B V French -B W Williams -B York -BART Access -BK. Methley -BMW Park -BP Connect Regent -BP Darling -BP Davies -BP Victoria -Baalbec -Baardwyck -Baardwyk -Baas -Babb -Babbage -Babbe -Babbin -Babbington -Babbit -Babbit Bridge -Babbs Creek -Babcock -Babe Ruth -Babe Ruth Park -Babe Thompson -Babel -Babel Slough -Baben -Baber -Babero -Babes -Babetta -Babich -Babicz -Babington -Babmaes -Babs -Babson -Babson College -Babula -Babylon -Babylon Farmingdale -Babyn -Bacall -Baccarat -Baccharis -Bacchetti -Bacchus -Bach -Bache -Bachelder Ranch -Bachell -Bacheller -Bachelor -Bachelor Grove -Bachelors -Bachman -Bacigalup -Bacigalupi -Bacinada -Back -Back Acton -Back Ainsworth -Back Albert -Back Alexander -Back Alfred -Back Alice -Back Alicia -Back Alma -Back Anson -Back Archery -Back Arnold -Back Ashbee -Back Ashville -Back Ashworth -Back Astley -Back Aston -Back Atlanta -Back Austhorpe -Back Aviary -Back Baldwin -Back Banbury -Back Banstead -Back Bath -Back Baxendale -Back Bay -Back Bay Beach -Back Baythorpe -Back Belmont -Back Bennetts -Back Birley -Back Blackbank -Back Blackburn -Back Bolton -Back Bowen -Back Bowling Green -Back Bradford -Back Bride -Back Bridge -Back Bright -Back Bristol -Back Bromwich -Back Broom -Back Brudenell -Back Brunswick -Back Burley -Back Burnaby -Back Bury -Back Camberley -Back Carl -Back Carter -Back Castle -Back Cautley -Back Cecil -Back Ceder -Back Chalfont -Back Chapel -Back Charlton -Back Chatsworth -Back Chestnut -Back China -Back Church -Back Clarence -Back Clarendon -Back Clegg -Back Clipston -Back Cobden -Back Colenso -Back Collings -Back Coniston -Back Conway -Back Coop -Back Corson -Back Cotton -Back Cranbrook -Back Crawford -Back Crescent -Back Croft -Back Cromer -Back Cross Flatts -Back Cross Green -Back Crown -Back Crumpsall -Back Darcy -Back Darley -Back Darwen -Back Dawlish -Back Dean Church -Back Dent -Back Dobie -Back Dorset -Back Duncan -Back Duxbury -Back East Park -Back Eastbank -Back Eccles -Back Ecclesburn -Back Eckersley -Back Eddisbury -Back Eden -Back Edinburgh -Back Elsworth -Back Empire -Back Ena -Back Eskrick -Back Estcourt -Back Fairhaven -Back Fletcher -Back Florence -Back Fortune -Back Frances -Back Fylde -Back Garton -Back Gaskell -Back Gate -Back Gaythorne -Back George -Back George Barton -Back Gladstone -Back Glen Bott -Back Glossop -Back Gloster -Back Graveley -Back Green -Back Greenhalgh -Back Greenland -Back Gresham -Back Grove -Back Hadwin -Back Haigh -Back Halliwell -Back Halstead -Back Hargreaves -Back Hartley -Back Haydock -Back Headingley -Back Heddon -Back Hessle -Back High -Back High Bank -Back Higher Darcy -Back Highfield -Back Highthorne -Back Hilden -Back Hilton -Back Hind -Back Holly -Back Hope -Back Horsa -Back Howarden -Back Howcroft -Back Hulme -Back Irlam -Back Ivanhoe -Back Ivy Bank -Back James -Back Jubilee -Back Karnak -Back Keighley -Back Kelso -Back Kendal -Back Kingsley -Back Kitson -Back Knowl -Back Landseer -Back Lark -Back Latham -Back Leachfield -Back Leatham -Back Lena -Back Lever Hall -Back Lindley -Back Lodge -Back Long -Back Longworth -Back Lord -Back Loxham -Back Lucas -Back Luton -Back Lytton -Back MAsrhall -Back Mackenzie -Back Manchester -Back Manor -Back Market -Back Marshall -Back Mary -Back Massie -Back Maud -Back Maxwell -Back Mayfield -Back Mayville -Back Maze -Back Meynell -Back Milan -Back Milner -Back Monk Bridge -Back Morritt -Back Nansen -Back Nelson -Back Nevada -Back New York -Back Newton -Back Norris -Back Norwood -Back Nunington -Back Nunroyd -Back Olaf -Back Olga -Back Ollerton -Back Outwood -Back Palm -Back Parkdale -Back Parkville -Back Parnaby -Back Pawson -Back Pine -Back Pleasant -Back Poplar -Back Portugal -Back Preston -Back Primrose -Back Quay -Back Quebec -Back Queen -Back Rainshaw -Back Ranch -Back Rawson -Back Rawsthorne -Back River -Back River Neck -Back Romer -Back Rosamond -Back Rose -Back Roseberry -Back Ryefield -Back Sandhurst -Back Sandy Bank -Back Sapling -Back Savile -Back Scowcroft -Back Seaforth -Back Sefton -Back Seymour -Back Sharman -Back Sholebroke -Back Short -Back South View -Back Southfield -Back Springfield -Back Sunnybank -Back Sunnyside -Back Sutcliffe -Back Talbot -Back Teak -Back Tempest -Back Thicketford -Back Thorn -Back Thorns -Back Thorpe -Back Tong -Back Tonge Old -Back Torr -Back Trafford -Back Turner -Back Ulleswater -Back Union -Back Uttley -Back Vernon -Back Vickerman -Back Victoria -Back Viking -Back Viola -Back Walmsley -Back Walnut -Back Wapping -Back Wardle -Back Wash -Back Water -Back Waverley -Back Webster -Back Wesley -Back Westbury -Back Westfield -Back Westminster -Back Wetherby -Back Wheatfield -Back Wickham -Back Wilton -Back Wolfenden -Back Wood -Back Woodgate -Back Worcester -Back Wordsworth -Back Wright -Back Yates -Back York -Backer Ranch -Backiel -Backlick -Backlund -Backpack -Backriver -Backstone Gill -Backstrad -Backus -Backus Farm -Backwater -Backwoods -Bacon -Bacon Island -Bacon Race -Bacons -Bacton -Bacup -Bad Munstereifel -Badajos -Badajoz -Badcoe -Baddacook Pond -Baddeley -Badding -Baddow -Baddow Hall -Baddow Place -Bade -Badeau -Baden -Baden Naylor -Baden Powell -Baden Spring -Baden Westwood -Badenoch -Bader -Badgally -Badgemore -Badger -Badger Creek -Badger Hall -Badger Pass -Badger Valley -Badger Woods -Badgers -Badgerwood -Badgery -Badgley -Badham -Badian -Badin -Badingham -Badlands -Badlis -Badminton -Badsell -Badshot Lea -Badsworth -Badto -Baemar -Baer -Baert -Baffin -Baffin Bay -Baford -Bafp -Bag -Bagala -Bagatelle -Bagdad -Bagdaly -Bagel -Baggett -Baggins -Baghill -Bagley -Bagleys -Bagnell -Bago -Bagot -Bagpipe -Bags -Bagshaw -Bagshawe -Bagshill -Bagshot -Bagshotte -Bagslate Moor -Bagstock -Baguley -Bagwell -Bahama -Bahia -Bahl -Bahr -Bahram -Baier -Baigents -Baigorry -Baildon -Bailes -Bailey -Bailey Ranch -Bailey Ridge -Baileyana -Baileys -Baileys Crossing -Bailin -Bailiwick -Baillie -Baily -Baimbridge -Bain -Bain Bridge -Bain Ranch -Bainbridge -Bainbrigge -Bainbrook -Baincroft -Baine -Baines -Bainter -Bainton -Baio -Bair Island -Baird -Bairin -Bairn -Baisley -Baiting Place -Baitx -Baizdon -Baja -Baja Sol -Bajada -Baje Industrial -Bajo -Bajor -Bajt -Baker -Baker Bridge -Baker Hill -Baker Park -Bakers -Bakersfield -Bakersmill -Bakersville -Bakestonedale -Bakewell -Bakhouse -Bakken -Bakley -Bal Harbor -Balaam -Balaams -Balaclava -Balaka -Balaming -Balanada -Balance -Baland -Balantine -Balantre -Balas -Balbach -Balbec -Balbeek -Balboa -Balcarres -Balceta -Balch -Balchen -Balchier -Balchins -Balclutha -Balcom -Balcomb -Balcombe -Balcome -Balcorne -Bald Cypress -Bald Eagle -Bald Eagle School -Bald Hill -Bald Nob -Bald Pate -Bald Rock -Balder -Balderstone -Balderton -Baldi -Baldin -Baldo -Baldock -Baldocks -Baldridge -Baldrine -Baldur Park -Baldwin -Baldwin Dam -Baldwin Hill -Baldwin Lake -Baldwins -Baldwyns -Baldy -Bale -Balenese -Balentine -Baler -Baleri Ranch -Bales -Baley Bridge -Balfanz -Balfe -Balfern -Balfour -Balgang -Balgonie -Balgowan -Balgowlah -Balgownie -Balgreen -Balham High -Balham Park -Balhan -Bali -Balint -Balintore -Baliol -Balis -Balk -Balkan -Ball -Ball Hill -Ball Park -Balla -Ballad -Ballamore -Ballance -Ballanda -Ballandella -Ballantine -Ballantrae -Ballantrae Farm -Ballantre -Ballantree -Ballantyne -Ballar -Ballarat -Ballard -Ballards -Ballardvale -Ballast -Ballast Point -Ballater -Ballbrook -Ballena -Ballena Bay -Ballencrieff -Ballenger -Ballens -Ballentine -Balleratt -Ballew -Ballfield -Ballina -Ballindine -Ballingdon -Ballinger -Ballingswood -Balliol -Ballister -Ballman -Balloch -Ballogie -Ballord -Ballou -Ballpark -Ballpate Hill -Balls Bluff -Balls Ford -Balls Head -Balls Hill -Balls Pond -Ballsten -Ballston -Ballum -Ballville -Ballwood -Bally Bunion -Ballybunion -Ballycastle -Ballycor -Ballydrain -Ballymena -Ballymore -Ballyshannon -Balm -Balma -Balmain -Balmanringa -Balmaringa -Balme -Balmer -Balmerino -Balmes -Balmfield -Balmino -Balmoral -Balmoral Forest -Balmoral Greens -Balmoral Woods -Balmore -Balmy -Balnacraig -Balnew -Balog -Balowrie -Balra -Balsa -Balsam -Balsamo -Balsamtree -Balsamwood -Balsawood -Balshaw -Balsm -Balsom -Balston -Balstonia -Balsum -Baltan -Baltes -Baltic -Baltimore -Baltimore Annapolis -Baltimore Hill -Baltimore Washington -Baltus -Baltusrol -Baltz -Baltzer -Balyata -Balzer -Bamarcia -Bambara -Bamber -Bamberg -Bamberger -Bambi -Bamboo -Bambra -Bambrick -Bambridge -Bamburgh -Bambury -Bamfield -Bamford -Bamm Hollow -Bampton -Ban Tara -Banana Grove -Banaro -Banas -Banbal -Banbury -Banbury Ridings -Banchio -Banchory -Bancker -Bancroft -Bancroft Tower -Bancrofts -Band -Bandain -Bandalong -Bandera -Banderra -Bandicoot -Bandley -Bando -Bandol -Bandon -Bandoni -Bandy -Bandy Run -Bane -Baneberry -Banes -Banff -Banff Vista -Banfield -Banfill -Bangalay -Bangalla -Bangalore -Bangalow -Bangert -Bangor -Bangs -Banim -Banister -Baniulis -Banjo -Bank -Bank Bridge -Bank Field -Bank Gate Royd -Bank Hall -Bank Hey Bottom -Bank Hill -Bank House -Bank Mill -Bank Side -Bank Top -Bank Vale -Bankart -Banker -Bankfield -Bankfoot -Bankhall -Bankhead -Bankhouse -Bankley -Banks -Banksfield -Banksia -Bankside -Bankston -Bankton -Bankview -Bankwell -Banky -Banleigh -Bannach -Bannacle Hill -Bannan -Bannard -Bannehr -Banneker -Banner -Banner Farm -Bannerman -Bannerwood -Banning -Bannington -Bannister -Bannisters -Bannock -Bannockburn -Bannon -Bannon Creek -Bannon Off Morse -Banool -Banquo -Banshee -Banshire -Bansom -Banstock -Banta -Bantam Grove -Bantas Point -Banters -Banti -Banting -Bantle Farm -Banton -Bantry -Bantry Bay -Banwell -Banyan -Banyan Tree -Banyard -Banyon -Banyon Ridge -Bapaume -Baptist -Baptista -Bar -Bar Beach -Bar Harbor -Bar Harbour -Bar King -Bar Oak -Bar du -Baragoola -Barambah -Baranbali -Barandas -Baranga -Barangaroo -Baranof -Barb Hill -Barb Werner -Barbadoes -Barbadon -Barbados -Barbara -Barbara Ann -Barbara D -Barbara Dale -Barbara Jean -Barbara Lee -Barbary -Barbee -Barbel -Barber -Barbera -Barberie -Barberry -Barbers -Barbers Corner -Barbers Point -Barbers Wood -Barbersville -Barbery -Barbettini -Barbey -Barbi -Barbican -Barbie -Barbieri -Barbour -Barbour Pond -Barbra -Barbrook -Barbud -Barca -Barcaglia -Barcaly -Barcellona -Barcells -Barcelona -Barchard -Barchester -Barcheston -Barcicroft -Barclay -Barclays -Barcliffe -Barclose -Barco -Barcom -Barcombe -Barcoo -Barcroft -Barcroft Mews -Barczewski -Bard -Bardalino -Bardard -Barden -Bardenville -Bardet -Bardfield -Bardhurst -Bardin -Bardion -Bardmour -Bardney -Bardo -Bardolier -Bardolino -Bardolph -Bardon -Bardoo -Bards -Bardsey -Bardsley -Bardsley Gate -Bardsley Vale -Bardu -Bardue -Bardwell -Bardy -Bare -Bare Cove -Bare Cove Park -Bare Hill -Bare Island -Bare Sky -Bareena -Barefoot -Barefoot Hill -Barehill -Barell -Barellan -Barenscheer -Barett -Barfett -Barff -Barfield -Barford -Barforth -Bargagni -Barge -Barge House -Barge Pier -Bargeman -Barger -Bargers -Bargmann -Bargo -Bargrove -Barham -Barharbor -Barhatch -Bari -Bariadoa -Barina -Barina Downs -Baring -Baring Ridge -Baringa -Barington -Bariston -Barium -Bark -Bark Burr -Bark Hart -Barkala -Barkalow -Barkdoll -Barkduk -Barkei -Barker -Barker Hill -Barkers -Barkers Pt -Barkett -Barkfield -Barkham -Barkhart -Barking -Barkingside High -Barkl -Barkley -Barkley Gate -Barkly -Barksdale -Barksdale Farm -Barkway -Barkwell -Barkwood -Barkworth -Barlas -Barlborough -Barlea -Barleau -Barletta -Barley -Barley Croft -Barley Field -Barley Hall -Barley Hill -Barley Mow -Barley Ponds -Barleycastle -Barleycorn -Barleycroft -Barleylands Farm -Barleymow -Barleywood -Barlik -Barlina -Barling -Barlings -Barlow -Barlow Fold -Barlow Hall -Barlow Moor -Barlow Park -Barlow Wood -Barlowe -Barmeston -Barmhouse -Barming -Barmouth -Barn -Barn Cottage -Barn Croft -Barn Hill -Barn House -Barn Owl -Barn Ridge -Barn Swallow -Barn Wood -Barna -Barnabas -Barnabe -Barnabe Mountain Fire -Barnabus Mill -Barnaby -Barnaby Run -Barnack -Barnacre -Barnacres -Barnard -Barnardo -Barnards -Barnboard -Barnbrough -Barnby -Barncleuth -Barncroft -Barndance -Barnecat -Barnegat -Barnehurst -Barnell -Barner -Barnert -Barnes -Barnes Cray -Barnes Hill -Barnes Lake -Barnes Mill -Barnes Wallis -Barnesdale -Barneson -Barnestead -Barnesville -Barneswell -Barneswood -Barnet -Barnet Chesterfield -Barnet Salisbury -Barnet Church Wood -Barnet Gate -Barnet High -Barnet Park -Barnet Side -Barnett -Barnett Valley -Barnett Wood -Barnetts -Barnetts Wood -Barneveld -Barney -Barney Hill -Barnfield -Barngate -Barnhall -Barnham -Barnhart -Barnheisel -Barnhill -Barnhouse -Barnhurst -Barnida -Barnier -Barnmead -Barns -Barnsboro -Barnsbury -Barnsdale -Barnsfield -Barnsfold -Barnside -Barnsley -Barnsole -Barnstable -Barnstaple -Barnstead -Barnston -Barnswallow -Barnum -Barnums -Barnwall -Barnwell -Barnwood -Barnyard -Baroda -Barola -Barolo -Barombah -Baron -Baron Cameron -Baron Kent -Baron Park -Baronbali -Barone -Baroness -Baronet -Baronhurst -Baronnel -Barons -Barons Court -Baronsfield -Baronsmead -Baronsmere -Barooga -Baroona -Baroque -Barossa -Barott -Barouche -Barque Hill -Barr -Barr Creek -Barr Elms -Barra -Barrabooka -Barracane -Barrack -Barracks -Barragulung -Barranca -Barraran -Barras -Barras Garth -Barrass -Barratt -Barrawinga -Barre -Barrel -Barrel House -Barremma -Barrena -Barrenger -Barrenjoey -Barrensdale -Barret -Barrett -Barrette -Barretto -Barretts -Barretts Green -Barretts Mill -Barreville -Barrfield -Barrhurst -Barri -Barrick -Barrie -Barrie Lynn -Barrier -Barrington -Barrington Bourne -Barrington Bridge -Barrington Hills -Barrington Point -Barrister -Barrley -Barroilhet -Barroll -Barron -Barron Field -Barron Heights -Barron Park -Barrons Reach -Barros -Barrow -Barrow Bridge -Barrow Furnace -Barrow Green -Barrow Hall -Barrow Hill -Barrow Point -Barrow on Duxbury -Barrowby -Barrowfield -Barrowgate -Barrows -Barrs -Barrs Fold -Barrsbrook Farm -Barrule -Barrus -Barry -Barry Point -Barrymeade -Barrymore -Barrypoint -Barrys Hill -Barsalugia -Barsby -Barsden -Barse -Barsenden -Barsham -Barson -Barstable -Barston -Barstow -Bart -Barta -Bartch -Barteau -Bartel -Bartell -Bartelmy -Bartels -Bartelt -Barter -Barth -Barth Pond -Bartha -Barthel -Barthelone -Barthold -Bartholdi -Bartholf -Bartholomew -Bartholomew Fair -Barthorpe -Bartina -Bartle -Bartlemore -Bartleson -Bartlet -Bartlets -Bartlett -Bartletts -Bartley -Bartman -Barto -Bartol -Bartolini -Bartolomei -Barton -Barton Creek -Barton Dock -Barton Hall -Barton Hill -Barton Manor -Bartons -Bartosh -Bartow -Bartram -Bartrams -Bartrip -Bartsch -Bartson -Barttelot -Bartz -Barunga -Barway -Barwell -Barwick -Barwick Main -Barwon -Barwon Park -Barwood -Basalt -Basalt Rock Company -Basbow -Basch -Bascom -Bascombe -Base -Basel -Baseline -Basewood -Basford -Bashall -Bashaw -Basher -Bashford -Bashford Barn -Basil -Basildon -Basile -Basilica -Basill -Basilon -Basils -Basilwood -Basin -Basing -Basingbourne -Basingfield -Basinghall -Basingstoke -Baskenridge -Baskerville -Basket -Basket Ring -Baskin -Baskin Service -Basking -Basking Ridge -Basler -Baslers -Baslow -Basmore -Basque -Bass -Bass Lake -Bass Point -Bass Pond -Bass Pro -Bass River -Bass Rock -Bassant -Basse -Bassel -Bassenthwaite -Basset -Bassetsbury -Bassett -Bassett Creek -Bassett Crk -Bassetts -Bassford -Bassil -Bassin -Bassingbourn -Bassingham -Bassler -Basswood -Bast -Bastable -Basted -Basten -Bastia -Bastian -Bastille -Bastion -Bastogne -Baston -Baston Manor -Bastona -Bastoni -Bastwick -Basuto -Bata -Bataan -Batacao -Batavia -Batchelder -Batchelder Park -Batcheller -Batchelor -Batchelors -Batchelors Choice -Batchwood -Batchworth -Batcliffe -Bate -Bate Bay -Bateman -Batemans -Batemill -Bates -Bates Farm -Bates Grove -Bates Park -Bates Point -Batesole -Bateson -Bateswell -Batey -Batford -Bath -Bath Hard -Bath House -Batham Gate -Bather -Bathgate -Bathhurst -Bathing Beach -Batho -Bathol -Baths -Bathurst -Batista -Batley -Batley Commercial -Batley Cross Bank -Batman -Baton -Baton Rouge -Batridge -Batson -Batsworth -Batt -Battaglia -Battalion -Battee -Batten -Batten Hollow -Battenburg -Batter -Battersby -Battersea -Battersea Bridge -Battersea Church -Battersea Park -Battery -Battery Blaney -Battery Chamberlin -Battery Cranston -Battery Dynamite -Battery East -Battery Heights -Battery Ridge -Battery Safford -Battery Wagner -Batterymarch -Batti -Battin -Battishill -Battle -Battle Bridge -Battle Creek -Battle Dance -Battle Flagg -Battle Green -Battle Ridge -Battle Rock -Battlebridge -Battledean -Battlefield -Battlefields -Battlehill -Battlement -Battles -Battles Farm -Battlesden -Battlesmere -Battock -Batts -Batts Bridge -Batty -Battye -Bauer -Bauers Farm -Baugh -Baugher -Baugher Farm -Baughman -Baulkham Hills -Baum -Bauman -Baumann -Baumans -Baumbach -Baumberg -Baumer -Baumert -Baumgartner -Baur -Bausell -Bausum -Bautista -Bavant -Bavaria -Bavarian Shores -Bavent -Bavin -Bawan -Bawdale -Bawn -Baxendale -Baxter -Baxters -Bay -Bay Beach -Bay Breeze -Bay Canyon -Bay Cliff -Bay Club -Bay Colony -Bay Creek -Bay Crest -Bay Dale -Bay Edge -Bay Farm -Bay Farms -Bay Flat -Bay Forest -Bay Front -Bay Green -Bay Harbor -Bay Harbour -Bay Haven -Bay Head -Bay Heights -Bay Highlands -Bay Hill -Bay Hills -Bay Horse -Bay Laurel -Bay Meadows -Bay Park -Bay Path -Bay Pond -Bay Reef -Bay Ridge -Bay Shore -Bay Side -Bay Terrace -Bay To Bay -Bay Town -Bay Tree -Bay Valley -Bay View -Bay View Farm -Bay View Point -Bay Vista -Bay Water -Bay Wood -Bayard -Baybell -Bayberrie -Bayberry -Bayberry Hill -Bayberry Ridge -Baybriar -Baybridge -Baybrook -Baybury -Baybutt -Baychester -Baycliff -Baycliffe -Baydon -Bayeau -Bayer -Bayfair -Bayfield -Bayford -Bayfront -Bayhall -Bayham -Bayhead -Bayhill -Bayhills -Bayhorne -Bayhurst -Baylands -Baylawn -Baylee -Bayles -Bayless -Bayley -Baylie -Baylight -Bayliner -Baylis -Bayliss -Baylor -Bayly -Baymeadow -Baynard -Bayne -Baynes -Bayns Hill -Baynton -Bayo -Bayo Vista -Bayona -Bayonne -Bayou -Bayou Bend -Baypath -Baypoint -Baypoint Village -Baypointe -Bayport -Bayrd -Bayridge -Bayshire -Bayshore -Bayside -Bayside Beach -Bayside Park -Bayston -Bayswater -Baytech -Baythorne -Baythorpe -Baytomac Farms -Bayton -Baytree -Bayview -Bayview Beach -Bayview Hill -Bayview Hills -Bayview Park -Bayville -Bayville Park -Baywalk -Baywater -Bayway -Baywind -Baywolf -Baywood -Baywood Shores -Baywoods -Bazeley -Bazentin -Bazley -Bazz -Bb -Bea -Bea Kay -Beach -Beach Bluff -Beach Channel -Beach Haven -Beach Hill -Beach Lake -Beach Mill -Beach Park -Beach Pines -Beach Plum -Beach Point -Beach Side -Beach Spring -Beach View -Beacham -Beachamwell -Beachborough -Beachcomber -Beachcroft -Beachfield -Beachfront -Beachhall -Beachland -Beachler -Beachley -Beachmont -Beachnut -Beachplum -Beachs -Beachside -Beachview -Beachview Creek -Beachville -Beachway -Beachwood -Beachwood Park -Beachy -Beacom -Beacon -Beacon Bay -Beacon Heights -Beacon Hill -Beacon Hollow -Beacon Light -Beacon Oak -Beacon Park -Beacon Point -Beacon Pond -Beacon Ridge -Beacon Shores -Beacon View -Beaconfield -Beaconridge -Beaconsfield -Beaconsfield Common -Beaconsfield Terrace -Beacontree -Beaconwood -Beacrane -Beadel -Beadham -Beadle -Beadles -Beadlow -Beadman -Beadnell -Beadon -Beaford -Beaghan -Beagles Wood -Beak -Beal -Beale -Beales -Beales Wood -Bealey -Beall -Beall Mountain -Beall Spring -Bealle Hill -Beallsville -Bealmear Mill -Beals -Beam -Beaman -Beamer -Beames -Beaminster -Beamis -Beamish -Beamon -Beamont -Beamsley -Bean -Bean Creek -Bean Field -Bean Hill -Bean Hill Orchard -Bean Hollow -Bean Leach -Beancroft -Beane -Beanes -Bear -Bear Brook -Bear Canyon -Bear Creek -Bear Creek Canyon -Bear Cub -Bear Flag -Bear Forest -Bear Glen -Bear Gulch -Bear Hill -Bear Island -Bear Min -Bear Mountain -Bear Oaks -Bear Paw -Bear Ridge -Bear River -Bear Swamp -Bear Tooth -Bear Valley -Bearce -Bearcloud -Beard -Beardall -Beardell -Bearden -Beardon -Beards -Beards Creek -Beards Point -Beardslee -Beardsley -Beardsmore -Beardwood -Bearfield -Bearfoot -Bearfort -Bearhurst -Bearinda -Bearing -Bearpath -Bears -Bears School -Bearse -Bearskin Farm -Bearsted -Bearton -Bearwood -Bearwoods -Beasley -Beathwaite -Beatie -Beatrice -Beatrice Wignall -Beatricia -Beatrix -Beatriz -Beatson -Beattie -Beatty -Beatty Ridge -Beau -Beau Bien -Beau Brummel -Beau D Rue -Beau Meade -Beau Monde -Beau Pre -Beau Ridge -Beaubien -Beauchamp -Beauchamps -Beaudet -Beaudin -Beaudry -Beaufield -Beauford -Beauforest -Beaufort -Beaufoy -Beaufront -Beaulieu -Beaumant -Beaumaris -Beaumeadow -Beaumis -Beaumond -Beaumont -Beaumont Canyon -Beaumont Hall -Beaumont Park -Beauport -Beauregard -Beaurepaire -Beausoleil -Beauteau -Beauty Beach -Beauty Point -Beautys Hill -Beauval -Beauvale -Beauvoir -Beaux Arts -Beaven -Beaver -Beaver Brook -Beaver Creek -Beaver Dam -Beaver Dam Park -Beaver Ford -Beaver Heights -Beaver Hill -Beaver Hollow -Beaver Knoll -Beaver Meadow -Beaver Mill -Beaver Park -Beaver Pond -Beaver Ridge -Beaver Run -Beaverbank -Beaverbrok -Beaverbrook -Beavercreek -Beaverdale -Beaverdam -Beaverkill -Beavers -Beaverwood -Beavours -Beawick -Bebbington -Bebe -Bebelong -Bebout -Becado -Beccles -Becerra -Becharry -Bechaud -Bechert -Bechstein -Bechtel -Bechtold -Beck -Beck Creek -Beckbridge -Beckenham -Beckenham Hill -Becker -Becker Farm -Beckerle -Beckers Green -Beckert -Becket -Becket Meadow -Beckett -Beckett Crossing -Becketts -Beckfield -Beckfoot -Beckford -Beckham -Beckhaus -Beckingham -Beckington -Beckland -Beckler -Beckley -Becklow -Beckman -Becknel -Becks -Beckton -Beckway -Beckwith -Beckworth -Becky -Becky Lynn -Beclan -Beclands -Becola -Becondale -Becontree -Becontree Lake -Bedal -Bedale -Bedder -Beddington -Beddington Farm -Beddlestead -Beddoo -Bede -Bedell -Bedells -Bedens -Bederwood -Bedevere -Bedfont -Bedford -Bedford Park -Bedfordshire -Bedgebury -Bedivere -Bedlam -Bedle -Bedlington -Bedloes -Bedlow -Bedmond -Bednal -Bedonwell -Bedrock -Bedser -Bedwardine -Bedwell -Bedwin -Bedwins -Bee -Bee Bee -Bee Biology -Bee Fold -Bee Hive -Bee Oak -Beebe -Beeby -Beech -Beech Bottom -Beech Creek -Beech Down -Beech Farm -Beech Forest -Beech Glen -Beech Hall -Beech Hangers -Beech Hayes -Beech Hill -Beech Hollow -Beech Housre -Beech Hyde -Beech Park -Beech Ridge -Beech Spring -Beech Tree -Beech Trees -Beecham -Beechbank -Beechbrook -Beechcraft -Beechcrest -Beechcroft -Beechdale -Beechdrop -Beechen -Beechen Bank -Beechenlea -Beecher -Beeches -Beeches Farm -Beechfern -Beechfield -Beechgreen -Beechgrove -Beechhill -Beechhurst -Beechin Wood -Beeching -Beechknoll -Beechland -Beechlands -Beechmont -Beechmore -Beechnut -Beecholme -Beechpark -Beechstone -Beechtree -Beechview -Beechvue -Beechway -Beechwood -Beechworth -Beechy -Beechy Lees -Beecot -Beecroft -Beede -Beedell -Beedingwood -Beedle -Beedon -Beeger -Beehag -Beehive -Beehive Beach -Beehrle -Beekay -Beekey -Beekman -Beekman Hill -Beel -Beelar -Beelard -Beeleigh -Beeler -Beeley -Beeline -Beelong -Beeman -Beemer -Beemera -Beemra -Beers -Beesfield -Beeson -Beesonend -Beeston -Beet -Beet Wagon -Beeth -Beethoven -Beever -Beffa -Bega -Begen -Beggarhouse -Beggars -Beggars Hill -Beggarsbush -Beggers Bush -Beggs -Begier -Begonia -Behan -Beharrel -Beharrell -Behler -Behm -Behmer -Behn -Behnke -Behoes -Behr -Behrendt -Behrens -Behrns -Behun -Bei -Beige -Beiling -Beinoris -Beira -Beiriger -Beith -Beitzel -Bejay -Bekeswell -Bel Air -Bel Air Plantation -Bel Aire -Bel Ayre -Bel Canto -Bel Escou -Bel Estos -Bel Glade -Bel Mar -Bel Marin Keys -Bel Pre -Bel Red -Bel Roma -Bela -Belah -Belair -Belaire -Belanger -Belar -Belarre -Belbeck -Belburn -Belcamp -Belchamps -Belchams -Belcher -Belcher Farm -Belchers -Belclare -Belconte -Belcot -Belcourt -Belcrest -Belcroft -Beldam -Beldam Bridge -Beldams -Belden -Belder -Beldham -Beldhams -Beldin -Belding -Beldon -Belec -Belemba -Belevedere -Belfair -Belfairs -Belfairs Park -Belfast -Belfield -Belfield Old -Belfiore -Belford -Belfort -Belfry -Belgarden -Belgaro -Belgatos -Belgenny -Belgian -Belgica -Belgium -Belglen -Belgrade -Belgrave -Belgravia -Belgreen -Belgrove -Belham -Belhaven -Belhurst -Belick -Belinda -Belinder -Belinus -Belisle -Belita -Beliveau -Belknap -Bell -Bell Air -Bell Bluff -Bell Branch -Bell Bridge -Bell Canyon -Bell Chase -Bell Clough -Bell Creek -Bell Executive -Bell Farm -Bell Flower -Bell Foundry -Bell Green -Bell Hill -Bell House -Bell Laboratories -Bell Meadow -Bell Oak -Bell Oaks Estates -Bell Rock -Bell Rose -Bell Tower -Bell Tree -Bell Vale -Bell Vue -Bella -Bella Casa -Bella Coola -Bella Lago -Bella Madeira -Bella Oaks -Bella Terra -Bella Tuscany -Bella Villa -Bella Vista -Bellafiore -Bellagio -Bellain -Bellair -Bellaire -Bellaire Hills -Bellam -Bellambi -Bellamere -Bellamy -Bellamy Farm -Bellanca -Belland -Bellantoni -Bellara -Bellasis -Bellaterea -Bellaterra -Bellatrix -Bellavia -Bellavista -Bellbird -Bellbrook -Bellbrooke -Bellcast -Bellcastle -Bellclose -Belle -Belle Aire -Belle Ami -Belle Angela -Belle Chasse -Belle Cote -Belle Crest -Belle Fontaine -Belle Foret -Belle Grae -Belle Grove -Belle Haven -Belle Isle -Belle Marie -Belle Meade -Belle Monti -Belle Plaine -Belle Plains -Belle Point -Belle Pond -Belle Roche -Belle Terra -Belle Terre -Belle View -Belle Vista -Belle Vue -Belle of Georgia -Belleair -Belleaire -Belleau -Belleau Woods -Bellechase -Bellecrest -Bellefair -Bellefield -Bellefield Park -Bellefields -Belleflower -Bellefonte -Belleforest -Belleforte -Bellegrove -Bellemaine -Bellemeade -Bellenden -Belleplaine -Beller -Bellerive -Bellerose -Belles -Belleterre -Belleto -Belletto -Bellevale -Belleverde -Belleview -Belleville -Bellevista -Bellevue -Bellevue Hill -Bellevue Park -Bellevue Redmond -Bellew -Bellewood -Belleza -Bellfield -Bellfields -Bellflower -Bellgrove -Bellham -Bellhaven -Bellhouse -Bellhurst -Belli -Bellina -Bellina Canyon -Bellingara -Bellingdon -Bellinger -Bellingham -Bellingrath -Bellington -Bellman -Bellmarsh -Bellmeade -Bellmere -Bellmill -Bellmont -Bellmore -Bellmount Wood -Bello -Bellombi -Bellomo -Bellomy -Bellona -Belloreid -Bellot -Bellotti -Bellows -Bellows Hill -Bellplaine -Bellport -Bellridge -Bellrive -Bellrock -Bellrose -Bells -Bells Croft -Bells Hill -Bells Mill -Bells Ridge -Bellsbrae -Bellstone -Bellswood -Bellthorne -Belltower -Bellue -Belluno -Belluscio -Bellvale -Bellview -Bellville -Bellvista -Bellvue -Bellwood -Belmar -Belmart -Belmer -Belmers -Belmill -Belmohr -Belmond -Belmonde -Belmont -Belmont Bay -Belmont Canyon -Belmont Grove -Belmont Harbor -Belmont Landing -Belmont Park -Belmont Place -Belmont Ridge -Belmont Woods -Belmore -Belnap -Belnay -Belnel -Belnor -Beloit -Belot -Belpark -Belper -Belport -Belridge -Belrose -Belsham -Belshaw -Belsize -Belson -Belsteads Farm -Belswaine -Belswains -Belt -Beltagh -Beltana -Beltane -Belter -Beltinge -Beltline -Belton -Beltrami -Beltran -Beltring -Belts -Beltsville -Beltwood -Beltz -Belva -Belvale -Belvedere -Belverere -Belvidere -Belvidere Line -Belview -Belvoir -Belvoir Farm -Belvoir Woods -Belvor -Belvue -Belvue Close Belvue -Belward Campus -Belwood -Bembe Beach -Bembridge -Bement -Bemerton -Bemis -Bemis Heights -Bemish -Bempton -Bemrose -Bemsted -Bemuth -Ben -Ben Boyd -Ben Eden -Ben Franklin -Ben Howard -Ben Jones -Ben Jonson -Ben Ledi -Ben Levin -Ben Lomond -Ben Lomond Park -Ben Lomond Toll -Ben More -Ben Nevis -Ben Oak -Ben Oaks -Ben Roe -Bena -Benalla -Benalong -Benares -Benaroon -Benassi -Benaud -Benavente -Benbo -Benbow -Benbrick -Benbrook -Benburb -Benbury -Bench -Benchill -Benchleys -Benchmark -Bencich -Bencliffe -Bencombe -Bencoolen -Bencroft -Bend -Bend Circle -Bend of River -Benda -Bendale -Bendall -Bendemeer -Bendemere -Bender -Benders -Bendigo -Bending -Bendish -Bendix -Bendlowes -Bendmore -Bendorf -Bendysh -Bendywine -Benecia -Benedetti -Benedick -Benedict -Benedictine -Benefit -Benefly -Benelli -Benelong -Benenden -Benenson -Benet -Benetfield -Benets -Benett -Benevides -Benfield -Benfleet -Benfleet Park -Benford -Benforest -Bengal -Bengarth -Bengeo -Bengeworth -Bengeyfield -Benghazi -Bengloe -Benham -Benhams -Benhardt -Benhenry -Benhill -Benhooks -Benhurst -Benich -Benicia -Benine -Beninford -Bening -Beningfield -Benington -Benita -Benita Fitzgerald -Benito -Benjamin -Benjamin Day -Benjamin Franklin -Benjamin Kidder -Benjamins -Benjoe -Benkert -Benledi -Benmere -Benmor -Benmore -Benn -Bennacott -Bennalong -Benndorf -Bennel -Bennelong -Benner -Bennerley -Bennet -Bennetsfield -Bennett -Bennett End -Bennett Hill -Bennett Meadows -Bennett Ridge -Bennett Valley -Bennett View -Bennetta -Bennetts -Bennetts End -Bennetts Grove -Benning -Benningfield -Benningholme -Benninghton -Bennington -Bennington Hollow -Bennington Woods -Bennion -Bennison -Bennit -Benny -Benoit -Benoni -Benover -Benoy -Benris -Bens -Bensbach -Bensham -Bensham Manor -Bensin -Benskin -Benskins -Bensley -Benslow -Benson -Benson Ferry -Bensonhurst -Benstone -Bensville -Bent -Bent Bough -Bent Brook -Bent Creek -Bent Cross -Bent Fold -Bent Grass -Bent Hill -Bent Maple -Bent Oak -Bent Ridge -Bent Spur -Bent Tree -Bent Tree Hills -Bent Twig -Bent Water -Bent Willow -Bentay -Bentcliffe -Bentella -Bentfield -Bentgate -Benthal -Bentham -Bentinck -Bentink -Bentley -Bentley Hall -Bentley Heath -Bentley Ridge -Bentley Village -Bently -Bentnor -Bento -Bentoak -Benton -Benton Creek -Benton Park -Benton Square -Bentonbrook -Bentree -Bentridge -Bentry -Bents -Bentsbrook -Bentside -Bentson -Bentswood -Benttree -Bentwaters -Bentwillow -Bentwood -Bentwoods -Bentworth -Benty -Bentzen -Benvenue -Benwell -Benwerrin -Benworth -Benyon -Benz -Benziger -Benzo -Benzon -Bepler -Bepton -Berachan -Berallier -Beram -Berambil -Berard -Berber -Berberis Walk Laurel -Berbice -Bercaw -Bercik -Berckman -Bercta -Bercut -Berdan -Berdina -Berdnick -Bere -Berea -Berechurch -Berechurch Hall -Beredens -Berendos -Berengrave -Berens -Beres Ford -Beresford -Beresini -Berestede -Beret -Beretta -Berg -Bergamont -Bergamot -Berge -Bergen -Bergen Hill -Bergen Ridge -Bergenfield -Bergenline -Bergenwood -Berger -Bergerac -Bergeron -Berges -Bergholt -Bergholz -Bergin -Berglund -Bergman -Bergonia -Bergstrom -Bergthold -Beridge -Berilda -Berith -Berk -Berkeley -Berkeley Court -Berkeley Park -Berkely -Berkenshire -Berkey -Berkhampstead -Berkhamsted -Berking -Berkley -Berkley Manor -Berkmans -Berkowitz -Berks -Berkshire -Berkshire Woods -Berlant -Berlee -Berlin -Berliz -Berma -Berman -Bermar -Bermer -Bermill -Bermondsey -Bermondsey Long -Bermuda -Bern -Berna -Bernacci -Bernadette -Bernadine -Bernado -Bernadotte -Bernal -Bernal Heights -Bernard -Bernard Ashley -Bernard Cassidy -Bernardine -Bernardo -Bernas -Bernath -Bernay -Bernds -Berne -Bernel -Berner -Bernera -Berners -Bernhard -Bernhardt -Bernice -Bernie -Bernie Kelly -Bernie Ruth -Bernier -Bernini -Bernisdale -Bernita -Bernon -Bernstein -Bernt -Bernyce -Bero -Beronga -Berowra -Berrellessa -Berrendo -Berrian -Berridale -Berridge -Berries -Berrigan -Berrille -Berrillee -Berrima -Berriman -Berring -Berrington -Berristall -Berriton -Berritt -Berry -Berry Corner -Berry Cove -Berry Creek -Berry Hill -Berry Mill -Berry Patch -Berry Pond -Berry Ridge -Berrybush -Berrycroft -Berrydale -Berrydown -Berryessa -Berryfield -Berryhill -Berryland -Berrylands Avalon -Berryleaf -Berryman -Berrymede -Berrypick -Berrys -Berrys Hill -Berryscroft -Berrywood -Bersano -Bersham -Berstein -Bert -Berta -Berta Canyon -Berta Views -Bertal -Berteau -Bertenshaw -Bertero -Berth -Bertha -Berthold -Berthole -Berthon -Berthoud -Bertie Minor -Bertine -Bertini -Bertis -Bertita -Bertito -Bertlee -Bertling -Bertmore -Bertocchi -Bertola -Bertoldo -Bertoli -Bertolli -Bertolotto -Berton -Bertram -Bertrand -Berts -Bertsky -Bertuccio -Bertwell -Berverdor -Berwick -Berwick Pond -Berwin -Berwind -Berwood -Berwyn -Berwyn House -Berwynd -Beryl -Beryllium -Berylwood -Besana -Besant -Besborough -Besco -Beskeen -Besler -Besley -Beslyns -Besom -Besonend -Bess -Bessant -Bessborough -Bessels Green -Bessemer -Bessemund -Bessida -Bessie -Bessie Coleman -Bessingby -Bessle -Bessmer -Besso -Bessom -Bessy -Best -Bestgate -Bestic -Bestick -Bestobell -Beston -Bestor -Bestwicke -Beswick -Beswicke Royds -Beswicks -Beta -Betabel -Betam -Betchets Green -Betchworth -Betenson -Beth -Beth David -Beth Israel -Beth Lee -Bethal -Bethany -Bethards -Bethayres -Bethecar -Bethel -Bethel Church -Bethel Island -Bethelen Woods -Bethersden -Bethesda -Bethia -Bethlehem -Bethlehem Church -Bethnal Green -Bethnall -Bethpage -Beths -Bethune -Betlen -Betley -Betleymere -Betlin -Betlo -Betnor -Betola -Betoyne -Betsham -Betson -Betstyle -Betsy -Betsy Brown -Betsy Davis -Betsy Ross -Bette -Betteker -Bettencourt -Bettenhausen -Betterton -Bettescombe -Bettina -Bettinelli -Bettington -Bettinson -Bettio -Bettis -Bettison -Bettowynd -Bettridge -Betts -Bettswood -Betty -Betty Ann -Betty Crocker -Betty Cuthbert -Betty Grove -Betty Lou -Betty Mae -Betula -Betz -Beulah -Beulah Park -Beult -Beumont -Beuna Vista -Beutke -Beutler -Bev -Bev Cunha County -Bevan -Bevans -Bevanwood -Bevard -Beveland -Beveridge -Beverlee -Beverley -Beverly -Beverly Hill -Beverly Hills -Beverly J Griffin -Beverly Jay -Beverly Manor -Beverly Park -Bevern -Bevers -Beversbrook -Beverstone -Bevier -Bevil -Bevilacqua -Bevin -Bevin Brook -Bevington -Bevins -Bevis -Bevmar -Bewbush -Bewdley -Bewick -Bewlbridge -Bewley -Bewlys -Bexhill -Bexley -Bexley High -Bexon -Bexton -Beyer -Beynon -Beythe -Beza -Bezant -Bezos -Bi County -Biagar -Bianca -Bianchi -Bianco -Biara -Biarritz -Biava -Bibbenluke -Bibbits -Bibbs -Bibbs Hall -Bibby -Bibeau -Bibel -Bible -Bible Baptist Church -Bibsworth -Bibury -Bicek -Bicentennial -Bicester -Bichner -Bickell -Bickerdike -Bickershaw -Bickerstaff -Bickersteth -Bickertoh -Bickerton -Bickford -Bickleigh -Bickley -Bickling -Bicknell -Bicknell Hill -Bicknoiler -Bicknoller -Bicknor -Bidborough -Biddall -Bidden -Biddenden -Bidder -Biddestone -Biddle -Biddleford -Biddulph -Bideford -Bidgee -Bidston -Bidurgal -Bidwell -Bieber -Bieghle -Biehn -Biel -Bielawski -Bielby -Bielenberg -Bieneman -Bienville -Bierline -Biermann -Bierstan -Bies -Biesi -Biesterfield -Biffins -Bifrost -Big Axe -Big Barn -Big Basin -Big Bear -Big Bend -Big Blue -Big Bluestem -Big Branch -Big Break -Big Burn -Big Canyon -Big Circle -Big Common -Big Creek -Big Dipper Ranch -Big Foot -Big Fox -Big Horn -Big Indian -Big Island -Big Lake -Big Live Oak -Big Oak -Big Peninsula -Big Piece -Big Pine -Big Plum -Big Pool -Big Ramapo -Big Ranch -Big Rock -Big Rock Ridge -Big Rock Ridge Fire -Big Run -Big Spring -Big Springs -Big Springs Canyon -Big Sur -Big Timber -Big Tree -Big Valley -Big Woods -Bigelow -Bigfrith -Biggar -Bigge -Bigger -Biggers -Biggerstaff -Biggin -Bigginwood -Biggs -Biggs Grove -Biggs Purchase -Bigham -Bighorn -Bighorn Sheep -Bight -Bighton Dean -Bigland -Biglow -Bigmore -Bignell -Bigney -Bignor -Bigonia -Bigthan -Bigwood -Bija -Bijou -Bikila -Bikini -Bilambee -Bilbao -Bilberry -Bilbo -Bilbrook -Bilby -Bilga -Bilgola -Bilkurra -Bill -Bill Aldis -Bill Carr -Bill Ferguson -Bill Graham -Bill Hoare -Billa -Billabong -Billadell -Billams Hill Farnley -Billand Common -Billara -Billard -Billarga -Billarong -Billeci -Billerica -Billericay -Billeroy -Billett -Billie -Billie Limacher -Billie Smith Memorial -Billing -Billingbauk -Billingham -Billings -Billingsgate -Billingshurst -Billingsley -Billington -Billinton -Billiou -Billiter -Billman -Billong -Billop -Billou -Billow -Billows -Billrose -Bills -Billson -Billy -Billy Bob -Billy Casper -Billy Diehl -Billy Lows -Billyard -Billys -Bilney -Biloba -Bilodeau -Biloolo -Bilpin -Bilsen -Bilter -Biltmore -Biltom -Bilton -Bimbadeen -Bimbil -Bimburra -Bimini -Binalong -Binaville -Bincote -Binda -Bindaree -Bindari -Bindea -Binden -Binder -Binet -Binfield -Binford -Bing -Bingara -Bingen -Binger -Bingfield -Binggelli -Bingham -Bingham Hill -Binghampton -Binghamton -Bingle -Bingley -Bingo Lake -Bings -Bingswood -Binkey -Binks -Binley -Binn -Binna Burra -Binnacle -Binnari -Binnaway -Binnett -Binney -Binney Park -Binnie -Binning -Binnowee -Binns -Binns Nook -Binscombe -Binstead -Binsted -Binton -Binya -Binyon -Bionda -Biondi -Bionia -Biotechnology -Bir -Birbetts -Birch -Birch Bark -Birch Bend -Birch Brush -Birch Cliff -Birch Cove -Birch Creek -Birch Green -Birch Hall -Birch Hill -Birch Island -Birch Knoll -Birch Lake -Birch Lakes -Birch Meadow -Birch Pond -Birch Ranch -Birch Ridge -Birch Run -Birch Tree -Birchall -Bircham -Birchanger -Birchard -Birchbark -Birchbaugh -Birchbrook -Birchbrow -Birchcliff -Birchcrest -Birchcroft -Birchdale -Birchdene -Birchell -Birchen -Birchenall -Birchenlea -Bircher -Bircherley -Birches -Birches Croft -Birchett -Birchetts -Birchetts Green -Birchfield -Birchfields -Birchgrove -Birchill -Birchin -Birchin Cross -Birchington -Birchleaf -Birchmead -Birchmeadow -Birchmont -Birchmore -Birchmount -Bircholt -Birchpond -Birchside -Birchtree -Birchvale -Birchview -Birchwood -Birchwood Grove -Birchwood Hill Ring -Birchwood Park -Bird -Bird Hall -Bird Hill -Bird In Bush -Bird In Hand -Bird in Bush -Bird in Hand -Birdale -Birdbrook -Birdcage -Birdcage Center -Birdcherry -Birdcroft -Birdfoot -Birdhill -Birdhurst -Birdie -Birds Farm -Birds Hill -Birds Landing -Birdsall -Birdsboro -Birdseye -Birdsfield -Birdsfoot -Birdsong -Birdsville -Birdswood -Birdwood -Birfield -Birginal -Birinta -Birk -Birkbeck -Birkby -Birkdale -Birken -Birkendene -Birkenhead -Birkenshaw -Birkenshaw Town -Birkett -Birkey -Birkhall -Birkhead -Birkhofer -Birkin -Birkinheath -Birklands -Birkle -Birkley -Birks -Birkwood -Birley -Birling -Birmingham -Birmington -Birnam -Birnam Wood -Birnamwood -Birney -Birnham -Birnie -Birok -Birrell -Birrellea -Birriga -Birrima -Birriwa -Birrong -Birs -Birstall -Birt -Birtch -Birtle -Birtles -Birtlespool -Birtrick -Birtwistle -Birubi -Birunna -Biruta -Birwood -Bisacno -Bisbee -Biscay -Biscayne -Bisceglia -Bischoff -Biscot -Bisenden -Bisham -Bishoff -Bishop -Bishop Carroll -Bishop Hall -Bishop Ken -Bishop Pine -Bishop R Allen -Bishopdale -Bishopgate -Bishops -Bishops Bequest -Bishops Castle -Bishops Content -Bishops Down -Bishops Down Park -Bishops Gate -Bishops Hall -Bishopscote -Bishopsford -Bishopsgate -Bishopsmead -Bishopsthorpe -Bishopstone -Bishopswood -Bishopton -Bisland -Bisley -Bismach -Bismarck -Bismark -Bismire -Bismuth -Bisner -Bison -Bisordi -Bispham -Bisque -Bissel -Bissell -Bissett -Bisshop -Bisso -Bisson -Bisterne -Biter -Bithell -Bither -Bitola -Bittacy -Bittacy Park -Bittams -Bitter Oak -Bitter Sweet -Bittercreek -Bittern -Bitterne -Bitternut -Bitterroot -Bittersweet -Bitterwater -Bitting -Bittle -Bittner -Bitty -Bivona -Biwana -Bix -Bixby -Bixby Hill -Bixler -Bixley -Bizzaro -Bizzibe -Bjerstedt -Bjork -Bjorkman -Bjune -Bjur -Blachley -Black -Black Alder -Black Arrow -Black Bass -Black Bear -Black Beech -Black Birch -Black Boy -Black Branch -Black Briar -Black Brook -Black Bull -Black Bush -Black Chapel -Black Chestnut -Black Crow -Black Diamond -Black Duck -Black Eagle -Black Feather -Black Forest -Black Friar -Black Friars -Black Gold -Black Gum Tree -Black Hawk -Black Hill -Black Hill Ridge -Black Hills -Black Horse -Black Hut -Black Ironwood -Black Kettle -Black Kite -Black Lake -Black Lion -Black Log -Black Mill -Black Moor -Black Mount -Black Mountain -Black Oak -Black Park -Black Partridge -Black Pearl -Black Pine -Black Plain -Black Point -Black Point Horseshoe -Black Pond -Black Pond Hill -Black Prince -Black Rock -Black Saddle -Black Swan -Black Tail -Black Thorn -Black Tree -Black Twig -Black Velvet -Black Walnut -Black Wood -Blackacre -Blackall -Blackamoor -Blackbank -Blackberry -Blackberry Fields -Blackberry Hill -Blackberry Ridge -Blackberry Shore -Blackbird -Blackbird Cross Forty -Blackbird Hill -Blackbirds -Blackborne -Blackborough -Blackbourn -Blackbower -Blackboy -Blackbriar -Blackbridge -Blackbrook -Blackburn -Blackburn Ford -Blackburnian -Blackbush -Blackbutt -Blackbutts -Blackcap -Blackcarr -Blackchapel -Blackcherry -Blackcroft -Blackdown -Blackduck -Blacker -Blacket -Blackett -Blacketts -Blackfan -Blackfen -Blackfield -Blackfold -Blackfoot -Blackford -Blackfriars -Blackgate -Blackgates -Blackhall -Blackhawk -Blackhawk Club -Blackhawk Hills -Blackhawk Meadow -Blackheaath -Blackheath -Blackhill -Blackhoath -Blackhorse -Blackhouse -Blackhurst -Blackington -Blackinton -Blackjack -Blacklands -Blackledge -Blackley -Blackley New -Blackley Park -Blacklock -Blackman -Blackmar -Blackmer -Blackmon -Blackmoor -Blackmore -Blackmore End -Blackness -Blacknest -Blackney -Blackoak -Blackoaks -Blackpoint -Blackpond -Blackpool -Blackpowder -Blackridge -Blackrock -Blackrod -Blacks -Blacks Hill -Blacksand -Blacksburg -Blackshaw -Blackshire -Blackshots -Blacksmith -Blacksnake -Blacksole -Blackspur -Blackstar -Blackstock -Blackstocks -Blackstone -Blackstone Edge Old -Blackstone River -Blackstroud -Blacktail -Blackthorn -Blackthorne -Blackthorne Ridge -Blacktop -Blacktown -Blackwall -Blackwall Point -Blackwalnut -Blackwatch -Blackwater -Blackwater Valley -Blackwattle -Blackwattle Creek -Blackwell -Blackwell Farm -Blackwin -Blackwolf -Blackwood -Blackwood Edge -Blacow -Blade -Blade Green -Bladen -Bladensburg -Blades -Bladindon -Bladon -Blagdon -Blaggard -Blagrave -Blagrove -Blaier -Blaikie -Blain -Blaine -Blair -Blair Athol -Blair Mill -Blair Ranch -Blair Ridge -Blairbeth -Blairderry -Blaire -Blairgowrie -Blairhall -Blairhead -Blairmore -Blairton -Blairwood -Blais Farm -Blaisdell -Blaiswood -Blake -Blake Ridge -Blakeden -Blakedown -Blakefield -Blakehall -Blakeley -Blakelock -Blakelow -Blakely -Blakeman -Blakemere -Blakemore -Blakemore End -Blakeney -Blakenham -Blaker -Blakeridge -Blakes -Blakes Farm -Blakes Hill -Blakeslee -Blakesley -Blakestones -Blaketon -Blakeville -Blakewood -Blakiston -Blakistone -Blamey -Blamire -Blanc -Blanca -Blanch -Blanchan -Blanchard -Blanche -Blanche Dell -Blanchfield -Blanchlands -Blanco -Bland -Blandfield -Blandford -Blandin -Blanding -Blands -Blandsford -Blandy -Blane -Blaney -Blanford -Blank -Blanken -Blankenship -Blanket Hall -Blanks -Blanmerle -Blanton -Blantre -Blantyre -Blarney -Blashford -Blasi -Blatchford -Blattman -Blau -Blauer -Blausanne -Blauss -Blauvelt -Blawith -Blaxcell -Blaxland -Blaydon -Blays -Blaze -Blazer -Blazingwood -Bleach -Bleak -Bleakley -Bleakney -Bleakwood -Blean -Bleasby -Bleasdale -Blease -Bleasedale -Bleatarn -Blechynden -Bleck -Bleckely -Bledlow Ridge -Bleecker -Bleeker -Blegborough -Blehm -Blellatrey -Blemer -Blencarn -Blendall -Blendia -Blendon -Blendwood -Blenford -Blenheim -Blenheim Park -Blenhiem -Blenkinsop -Blenman -Bleriot -Blessing -Blessington -Bletchingley -Bletchley -Blevins -Blewbury -Blewett -Blewitt -Blick -Blickview -Bligh -Blighs -Blighton -Blinco -Blind -Blind Brook -Blindgrooms -Blindley -Blindsill -Blinkhorn -Blinn -Bliss -Blissett -Blithdale -Blithedale -Blithewood -Blithfield -Bloch -Block -Block House -Blockhouse -Blocklehurst -Blockley -Blodgett -Blodgetts -Bloemfontein -Blohm -Blom -Blomerth -Blomfield -Blomquist -Blomskog -Blomville -Blondell -Blondin -Blood -Bloodwood -Bloody Point -Bloom -Bloom Grade -Bloom Lake -Bloom Park -Bloomberg -Bloomburg -Bloomdale -Bloomfield -Bloomhall -Bloomingbank -Bloomingdale -Bloomington -Bloomington Ferry -Bloomington Frwy -Blooms -Blooms Quarry -Bloomsbury -Bloors -Bloors Wharf -Blossom -Blossom Acres -Blossom Cove -Blossom Creek -Blossom Dale -Blossom Heath -Blossom Hill -Blossom Park -Blossom Ranch -Blossom Ridge -Blossom River -Blossom Tree -Blossom Valley -Blossom Vista -Blossom Wood -Blossomcrest -Blossoms -Blossomview -Blossomwood -Blossum -Blouin -Blount -Blounts -Blounts Court -Blowing Rock -Blows -Bloxhall -Bloxham -Bloxon -Bloy -Bluberry -Blucher -Blucher Valley -Blue -Blue Anchor -Blue Ash -Blue Aster -Blue Ball -Blue Banner -Blue Bayou -Blue Bell -Blue Berry -Blue Bird -Blue Boar -Blue Bonnet -Blue Brook -Blue Circle -Blue Coat -Blue Cove -Blue Cow -Blue Crane -Blue Cross -Blue Dan -Blue Dolphin -Blue Flag -Blue Fox -Blue Gate -Blue Gentian -Blue Goose -Blue Grass -Blue Gray -Blue Gum -Blue Heaven -Blue Heron -Blue Herron -Blue Hill -Blue Hill River -Blue Hill Terrace -Blue Hills -Blue Iris -Blue Island -Blue Island Vermont -Blue Jay -Blue Lagoon -Blue Lake -Blue Lakes -Blue Larkspur -Blue Leaves -Blue Ledge -Blue Line -Blue Lupine -Blue Meadow -Blue Mill -Blue Mist -Blue Mound -Blue Mountain -Blue Oak -Blue Oaks -Blue Point -Blue Poppy -Blue Post -Blue Rapids -Blue Ravine -Blue Ribbon -Blue Ridge -Blue Ridge Fire -Blue Roan -Blue Rock -Blue Rock Hill -Blue Sage -Blue Sea -Blue Shirt -Blue Silk -Blue Sky -Blue Slate -Blue Smoke -Blue Spring -Blue Spruce -Blue Tees -Blue Topaz -Blue Valley -Blue Violet -Blue Water -Blue Waters -Blue Waters Farm -Blue Whale -Blue Willow -Blue Wing -Bluearrow -Bluebell -Blueberry -Blueberry Hill -Bluebill -Bluebill Bay -Bluebird -Bluebonnet -Bluebridge -Bluecoat -Bluecoats -Bluedale -Bluefield -Bluefields -Bluefin -Bluefish -Blueford -Bluegate -Bluegill -Bluegrass -Bluegum -Bluehouse -Bluejay -Blueridge -Blueridge Meadows -Blueridge View -Bluerock -Blues Point -Bluestem -Bluestern -Bluestone -Bluestone Bay -Bluet -Bluett -Blueview -Bluewater -Bluewillow -Bluff -Bluff City -Bluff Creek -Bluff Ct -Bluff Edge -Bluff Head -Bluff Point -Bluff Pointe -Bluff Ridge -Bluffs -Bluffs Edge -Bluffwood -Bluhill -Bluhm -Blum -Blume -Blumenfeld -Blumert -Blundell -Blunden -Blundon -Blunn -Blunt -Blunts -Blunts Hall -Blunts Wall -Blunts Wood -Blurton -Blush -Bluth -Bluxome -Bly -Blyden -Blysdale -Blyth -Blythe -Blythe Hill -Blytheswood -Blythewood -Blythorn -Blythswood -Blythwood -Boa Nova -Boa Vista -Boad -Boadicea -Boama -Boar -Boar Head -Board -Board School -Boardale -Boardley -Boardleys -Boardman -Boardschool -Boardwalk -Boarfold -Boarley -Boarman -Boarmans -Boars Tye -Boarshaw -Boarshead -Boarshurst -Boarstones -Boas -Boastfield -Boat -Boat Dock -Boat House -Boatclub -Boathouse -Boatman -Boatwright -Bob -Bob Ehlen -Bob Larsen -Bob O Link -Bob Reed -Bob White -Bobadah -Bobal -Bobann -Bobart -Bobbell -Bobbett -Bobbi -Bobbie -Bobbin Head -Bobbina -Bobby -Bobby Jean -Bobby Jones -Bobby Locke -Bobby Spencer -Bobbyber -Bobbys -Bobbywood -Bobcat -Bobelaine -Boblee -Bobmore -Bobolink -Bobs -Bobs Ford -Bobsled -Bobstay -Bobwhite -Boca -Boca Rio -Bocana -Bock -Bocket -Bockhampton -Bockhanger -Bockman -Bockmer -Bocks -Bodalla -Bodan -Bodden -Boddens Hill -Boddington -Boddingtons -Bode -Bodega -Bodega Bay -Boden -Bodensee -Bodiam -Bodie -Bodily -Bodin -Bodino -Bodkin -Bodkin View -Bodle -Bodley -Bodmer -Bodmin -Bodnarik -Bodney -Bodrick -Bodsworth -Bodway -Bodwell -Body -Boeger -Boehm -Boehme -Boehmer -Boehmhurst -Boeing -Boeing Access -Boekland Ranch -Boelsen -Boerum -Boesch -Boeske -Boessow -Bog -Bogalara -Bogalusa -Bogan -Bogandale -Bogarde -Bogarin -Bogart -Bogastow Book -Bogastow Brook -Bogata -Bogert -Bogerts Mill -Bogetti -Bogey -Boggard -Boggart Hill -Boggiano -Boggs -Bogie -Bogle -Bogner -Bogny -Bogota -Bograh -Bogren -Bogue -Bohac -Bohan Dillon -Bohannon -Bohemia -Bohemian -Bohemian Beach -Bohen -Bohland -Bohlander -Bohlken -Bohlman -Bohn -Bohnen -Bohns Point -Bohny -Bohr -Boice -Boiling Spring -Boiling Springs -Bois -Bois Hall -Bois Moor -Boise -Boismoor -Boisvert -Boivin -Bokel -Bokelman -Bolado -Bolan -Boland -Boland Farm -Bolanos -Bolaro -Bolas -Bolberry -Bolcum -Bold -Bold Lion -Bold Venture -Bolden -Bolderwood -Bolding House -Boldman -Boldmere -Bolds -Boldt -Bolero -Boles -Boley -Boleyn -Boleyns -Bolford -Bolgard -Bolger -Bolina -Bolinas -Bolinas Fairfax -Bolinda -Boling -Bolingbroke -Bolingbrook -Bolivar -Bolivia -Boll -Bolla -Bollard -Bollate -Bolle -Bollenbacher -Boller -Bolles -Bollin -Bollinbarn -Bolling -Bollinger -Bollinger Canyon -Bollington -Bollo -Bollo Bridge -Bollum -Bolmer -Bolney -Bolney Chapel -Bolney Trevor -Bolnore -Bolsa -Bolsa Tank Fr -Bolsena -Bolser -Bolshaw -Bolshaw Farm -Bolsin -Bolson -Bolsover -Bolstead -Bolster -Bolster Moor -Bolt -Bolter -Bolter End -Bolters -Bolton -Bolton House -Bolton Old -Boltons -Boltres -Boltro -Boltwood -Boltzen -Bolus -Bolwarra -Bolyston -Bolz -Bomabellee -Bombadier -Bombadil -Bombala -Bombay -Bombell -Bombers -Bombora -Bomford -Bomish -Bomore -Bon -Bon Accord -Bon Air -Bon Fleur -Bon Haven -Bon Mar -Bon Terre -BonHam -Bona -Bona Vista -Bonaccordo -Bonad -Bonair -Bonair Siding -Bonaire -Bonalbo -Bonan -Bonanza -Bonaparte -Bonar -Bonaventura -Bonaventure -Bonavesta -Bonbon -Bonbury -Boncarn -Boncheff -Bonchurch -Boncosky -Bond -Bond Hollow -Bond Mill -Bondage -Bondell -Bondfield -Bondi -Bondmark -Bonds -Bonds Retreat -Bondsburry -Bondy -Boneashe -Bonehurst -Bones -Boneset -Boneta -Bonetti -Bonfair -Bonfield -Bonfire -Bong -Bongart -Bongs -Bonham -Bonheur -Bonhill -Bonhomme -Boniface -Bonifacio -Bonifant -Bonington -Bonis Hall -Bonita -Bonita Downs -Bonita Vista -Bonito -Bonna Villa -Bonnard -Bonnardel -Bonnards -Bonneau -Bonnefin -Bonnell -Bonnema -Bonner -Bonner Hill -Bonnersfield -Bonness -Bonnet -Bonneting -Bonnett -Bonnetts -Bonneville -Bonnevista -Bonney -Bonnibrook -Bonnie -Bonnie Acres -Bonnie Brae -Bonnie Branch -Bonnie Briar -Bonnie Brook -Bonnie Burn -Bonnie Clare -Bonnie Dale -Bonnie Dell -Bonnie Dundee -Bonnie Glen -Bonnie Heights -Bonnie Jay -Bonnie Meadow -Bonnie Ridge -Bonnie View -Bonnie Vista -Bonniebrook -Bonniemill -Bonnievale -Bonnieview -Bonniewood -Bonnington -Bonny -Bonny Brow -Bonny Doon -Bonny Hill -Bonnybrook -Bonnydale -Bonnyman -Bonnymead -Bonnys -Bonnywell -Bonpel -Bonsai -Bonsal -Bonsall -Bonser -Bonsey -Bonseys -Bonsor -Bont -Bonta -Bontempo -Bonter -Bontou -Bonus -Bonus Hill -Bonview -Bonville -Bonvini -Bonwell -Bonwit -Bonwood -Boo -Boodle -Book -Booker -Booker T -Booker Washington -Bookerhill -Bookert -Bookham -Bookhurst -Books -Booksin -Boola -Boolarong -Booligal -Boom -Boomer -Boomerang -Boon -Boonah -Boonara -Boondah -Boone -Boone Grove -Boones -Boones Hill -Boongil -Boonstra -Boonton -Booraba -Booraem -Booragul -Booralee -Booralie -Booralla -Boorara -Boorea -Booream -Booreea -Boorroo -Booster Ring -Boot -Bootes -Booth -Booth Bank -Booth Bed -Booth Hall -Booth Hill -Booth Memorial -Booth Tarkington -Bootham -Boothbay -Boothbed -Boothby -Boothdale -Boothe -Boothey -Boothfield -Boothhaven -Boothouse -Boothroyd -Boothroyden -Booths Hill -Boothsbank -Boothstown -Bootjack -Bootle -Boots -Booyong -Booze Lake -Bopete -Bora -Bora Bora -Boraga -Boranda -Borax -Borba -Borcher -Borchers -Borchert -Bordale -Bordars -Borde Hill -Bordeau -Bordeaux -Bordelais -Borden -Bordentown -Border -Border Hill -Borderland -Borders -Bordesley -Bordessa -Bordly -Bordner -Bordolino -Bordona -Boreal -Borec -Boree -Boreham -Borel -Borella -Borello -Boren -Borers Arms -Borgard -Borge -Borges -Borges Ranch -Borghaus -Borgia -Borgins -Borglum -Borhart -Bori -Boria -Borica -Borick -Boright -Borina -Borinski -Borinsky -Borio -Bork -Borkshire -Borlaise -Borland -Borley -Borman -Bormet -Bornedale -Bornwood -Borojevic -Boroline -Boronga -Boronia -Borough -Borough Court -Borough Farm -Borough Green -Borough High -Borovere -Borre -Borregas -Borrego -Borrett -Borrette -Borrodaile -Borrodale -Borron -Borroway -Borrowdale -Borrows -Borrugh -Borsdane -Borsden -Borstal -Bortfield -Borth -Borthwick -Bortic -Borwell -Borwick -Borzotta -Bos -Bosanquet -Bosbury -Boscastle -Boscell -Bosch -Boschi -Bosci -Boscobel -Boscobell -Boscombe -Boscow -Bosden -Bosden Hall -Bosdenfold -Bose -Bosely -Bosenhill -Bosham -Bosk -Bosko -Bosley -Bosmore -Bosnjak -Bosphorus -Bosque -Boss -Bossa -Bossard -Bosse -Bossi -Bossington -Bossley -Bosson -Bossy -Bost -Bostall -Bostall Hill -Bostall Park -Bostian -Bostock -Boston -Boston Hill -Boston Manor -Boston Post -Boston Rock -Boston Scientific -Boston Spa Padmans -Boston Wharf -Bostonia -Bostonthorpe -Bostwick -Bosun -Bosville -Boswell -Boswells -Boswick -Bosworth -Bosworthfield -Botanical -Botany -Botany Bay -Bote -Boteler -Botelho -Botetourt -Botha -Bothelo -Bothfeld -Bothin -Bothner -Bothnia -Bothwell -Botiano -Botley -Botolph -Botsford -Botsom -Bott -Botterman -Bottesford -Botticelli -Bottineau -Bottle Brush -Bottle Forest -Bottle Square -Bottlebrush -Bottles -Bottner -Bottom -Bottom Boat -Bottom Pond -Bottomboat -Bottomley -Bottoms -Bottrells -Botts -Botwell Common -Botyl -Bou -Bouchard -Boucher -Bouck -Bouddi -Boudinot -Boudreau -Bouffant -Bougainville -Bougainvillea -Bouganville -Bouganvillea -Boughey -Boughton -Boughton Hall -Bouic -Boula -Boulden -Boulder -Boulder Bay -Boulder Bluff -Boulder Brae -Boulder Bridge -Boulder Brook -Boulder Canyon -Boulder Creek -Boulder Field -Boulder Glen -Boulder Lake -Boulder Point -Boulder Pointe -Boulder Ridge -Boulder Run -Boulderstone -Bouldish Farm -Bouldrewood -Bouleau -Boulevard -Boulmer -Boulogne -Boult -Boulters -Boulton -Boultwood -Bounces -Bound -Bound Brook -Boundaries -Boundary -Boundary Farm -Boundary Hill -Boundary Oaks -Boundless -Boundry -Bounds -Bounds Green -Boundstone -Bounstead -Bountiful -Bounty -Bounty View -Bouquet -Bouquet Park -Bourassa -Bourbon -Bourchier -Bourdeaux -Bourdon -Bourke -Bourley -Bourn -Bournbrook -Bourne -Bourne End -Bourne Grange -Bourne Grove -Bourne Park -Bourne Trail Fire -Bournebridge -Bournedale -Bournehall -Bournemouth -Bournemouth Park -Bourneside -Bournevale -Bourneville -Bournewood -Bournlea -Bournville -Bourque -Bourton -Bourtzos -Bousfield -Boussole -Boutas -Boutelle -Boutemain -Bouterse -Bouthiette -Bouton -Bouts -Boutwell -Boutwell Hill -Bouvardia -Bouve -Bouvel -Bouverie -Bouvier -Bovanizer -Bovarde -Bovelder -Boveney -Boveney New -Boveney Wood -Bovet -Bovey -Bovill -Bovingdon -Bovington -Bow -Bow Arrow -Bow Arts -Bow Green -Bow Ridge -Bow Spirit -Bow Sprit -Bowaga -Bowater -Bowbell -Bowcliffe -Bowdell -Bowden -Bowden Hey -Bowden House -Bowden View -Bowdens -Bowditch -Bowdoin -Bowdon -Bowe -Bowen -Bowenhurst -Bower -Bower Farm -Bower Heath -Bower Hill -Bower Mount -Bowerbird -Bowerdean -Bowerfiled -Bowerfold -Bowerland -Bowerman -Bowers -Bowers Farm -Bowers Grove -Bowerwood -Bowery -Bowes -Bowes Bend -Bowes Creek -Bowesden -Bowfell -Bowfin -Bowfonds -Bowford -Bowgreave -Bowhill -Bowie -Bowie Shop -Bowker -Bowker Bank -Bowl -Bowland -Bowlands -Bowlder -Bowlen -Bowler -Bowlers -Bowles -Bowley -Bowlhead Green -Bowlin -Bowline -Bowling -Bowling Green -Bowman -Bowman Green -Bowman Mill -Bowman Point -Bowman Towne -Bowmans -Bowmans Folly -Bowmer -Bown -Bownas -Bowne -Bowness -Bowns -Bowood -Bowral -Bowring -Bowrons -Bowry -Bows -Bowsens -Bowser -Bowsprit -Bowstone Hill -Bowstonegate -Bowstridge -Bowtell -Bowyer -Box -Box Canyon -Box Car -Box Elder -Box Mill -Box Office -Box Pond -Box R Ranch -Box Ridge -Boxall -Boxalls -Boxberry -Boxboard -Boxboro -Boxcar -Boxelder -Boxer -Boxes -Boxford -Boxgrove -Boxhill -Boxley -Boxman -Boxmill -Boxmoor -Boxoll -Boxted -Boxted Church -Boxtree -Boxwell -Boxwood -Boxwood Farms -Boxwood Grove -Boy Court -Boy Scout -Boyard -Boyce -Boyce Farm -Boyce Thompson -Boyce View -Boyd -Boyd Willis -Boydell -Boyden -Boyds -Boyds Turn -Boyer -Boyers -Boyes -Boyfield -Boylan -Boyland -Boyle -Boyle Farm -Boyles -Boyletown -Boylston -Boyn Hill -Boyndon -Boyne -Boynes -Boyneswood -Boynton -Boys -Boys Hall -Boys Ranch -Boys School -Boysea -Boysen -Boysenberry -Boyson -Boythorn -Boyton -Boyton Court -Boyton Hall -Bozen Green -Bozoian -Brabant -Brabazon -Brabham -Brabon -Brabourne -Brabrook -Brabyn -Brabyns -Bracadale -Bracci -Brace -Brace Bridge -Bracebridge -Bracewell -Bracher -Brack -Brack Mill -Bracken -Bracken Hill -Brackenbridge -Brackenbury -Brackendale -Brackenhurst -Brackenlea -Brackens -Brackenwood -Brackett -Bracketts -Bracketts Point -Brackley -Brackleys -Bracklyn -Brackman -Bracknell -Brackney -Bracks -Brackston -Bracondale -Bracton -Brad -Bradbourne -Bradbourne Park -Bradbourne Vale -Bradburn -Bradburns -Bradbury -Bradburys -Bradcutts -Braddale -Braddan -Bradden -Braddock -Braddock Creek -Braddock Ridge -Braddock Springs -Braddon -Braddyll -Bradeen -Braden -Bradenham -Bradenham Wood -Bradenton -Bradey -Bradfield -Bradfields -Bradford -Bradford Jay -Bradford Park -Bradford Pond -Bradforde -Bradgate -Bradgers Hill -Bradgreen -Bradgrove -Bradhill -Bradhoff -Bradhurst -Bradish -Bradish Farm -Bradiston -Bradl -Bradlee -Bradleigh -Bradley -Bradley Farm -Bradley Fold -Bradley Forest -Bradley Forge -Bradley Green -Bradley Hill -Bradley Park -Bradley Ranch -Bradley Woods -Bradly -Bradman -Bradmoor -Bradmoore -Bradmore -Bradmore Park -Bradner -Bradoc -Bradrick -Bradshad -Bradshaw -Bradshaw Hall -Bradshire -Bradstock -Bradston -Bradstone -Bradstreet -Bradview -Bradwahl -Bradwater -Bradwell -Bradwood -Brady -Brady S Hill -Bradyll -Brae -Brae Brooke -Brae Burn -Brae Loch -Braebridge -Braeburn -Braehurst -Braeland -Braeleigh -Braeman -Braemar -Braemer -Braemont -Braemoor -Braemore -Braes -Braeside -Braesmere -Braewood -Brafferton -Braga -Braganza -Bragato -Bragaw -Bragbury -Bragdon -Bragenham -Bragers -Bragg -Braghetta -Bragi -Braham -Brahma -Brahms -Braidburn -Braidwood -Braikfield -Brailley -Brailsford -Brain -Brain Ridge -Brainard -Brainerd -Brainton -Braintree -Brainwood -Brair Ridge -Brairfield -Brairwood -Braisted -Braiswick -Braithwaite -Braithwaithe -Brake -Brakefield -Brakelly -Braken -Brakenhurst -Brakke -Bralan -Brallas -Brallos -Braly -Bramall -Braman -Brambach -Bramber -Bramble -Bramble Bush -Bramble Reed -Bramble Wood -Bramblebrook -Bramblebush -Brambledene -Brambledown -Bramblefield -Bramblehill -Brambles Farm -Brambleton -Brambletye -Brambletye Park -Bramblewood -Brambling -Brambly -Bramcote -Bramdean -Bramer -Bramerton -Bramfield -Bramford -Bramhall -Bramhall Moor -Bramhall Park -Bramham -Bramhope -Bramhope Breary -Bramingham -Bramkampo -Bramleigh -Bramley -Bramley Green -Bramley Ring -Bramling -Bramlys -Brammay -Brampton -Brampton Park -Bramshaw -Bramshill -Bramshot -Bramshott -Bramstan -Bramston -Bramwell -Bramwood -Bramwoods -Bramworth -Branbridges -Branbury -Branca -Brancaster -Branch -Branch Brigade -Branch Brook -Branch Center -Branch Hill -Branch Side -Branchaud -Branchaw -Branchbrook -Branchview -Branchville -Branchwood -Branciforte -Brancker -Brancourt -Brand -Brandau -Brande -Brandee -Brandeis -Branden -Brandenburg -Brander -Branderburgh -Brandermill -Brandess -Brandford -Brandforth -Branding -Branding Iron -Brandis -Brandle -Brandlehow -Brandles -Brandlesholme -Brandley -Brandling -Brandlwood -Brandon -Brandon Green -Brandon Groves -Brandon Oaks -Brandon Shore -Brandon Way -Brandon Woods -Brandreth -Brands -Brands Hatch -Brands Hill -Brandt -Brandwood -Brandy -Brandy Carr -Brandy Farms -Brandy Hall -Brandy Hill -Brandyhall -Brandyn -Brandywine -Brandywine Heights -Brandywyn -Brandywyne -Braney -Branfield -Branford -Brangbourne -Brangton -Brangus -Branham -Branhum -Branigan -Branko -Branksea -Branksome -Branksome Hill -Branksome Park -Branksomewood -Brann -Brannan -Brannan Island -Branner -Brannick -Brannigan -Brannon -Branower -Bransby -Branscombe -Bransdale -Bransfield -Bransford -Bransgrove -Branson -Branson Ranch -Bransten -Branston -Branstone -Brant -Brantfield -Brantford -Brantingham -Brantley -Branton -Brantridge -Brantwood -Branvall -Branwell -Branwood -Branxton -Braquet -Brasch -Brasenose -Brasero -Brashear -Brashears -Brass Wheel -Brassel -Brasser -Brassey -Brassfield -Brassie -Brassington -Brasted -Brasted Hill -Brastow -Brathway -Bratley -Bratsell -Brattice -Brattle -Bratton -Brattray -Brauer -Braun -Braund -Braundton -Braunecker -Braunsdorf -Braunston -Braunton -Brautigam -Bravado -Brave -Bravender -Braverton -Bravington -Bravo -Bravo Fire -Brawner -Braxfield -Braxmar -Braxted -Braxted Park -Braxton -Bray -Brayards -Braybourne -Braybrook -Braybrooke -Brayburne -Braycourt -Braydon -Brayfield -Brayford -Braygreen -Brayley -Braymer -Brays -Brayshaw -Brayside -Brayton -Braywick -Braywood -Brazao -Brazenhose -Brazier -Braziers -Brazil -Brazley -Brea -Breach -Breach House -Bread -Breadcroft -Breadlands -Bready -Breaker -Breakers -Breakfast -Breakfast Point -Breakheart -Breaking Wave -Breakneck -Breakneck Hill -Breaks -Breakspear -Breakspeare -Breakspears -Breakwater -Breakwell -Bream -Breamore -Breary -Breasley -Breasted -Breaston -Breault -Breaults -Breaults Landing -Brechin -Breck -Brecken Ridge -Breckenbridge -Breckenridge -Breckinridge -Breckland -Brecknock -Brecks -Brecon -Breconshire -Breconwood -Bredbo -Bredbury -Bredhurst -Bredon -Bredon Hill -Bree -Bree Hill -Breech -Breed -Breeden -Breedens -Breedon -Breeds -Breen -Breer -Breesway -Breewood -Breeze -Breeze Hill -Breeze Knoll -Breezedale -Breezehurst -Breezeland -Breezemont -Breezewalk -Breezewood -Breezy -Breezy Hill -Breezy Knoll -Breezy Point -Breezyhill -Brefni -Brega -Breglia -Bregman -Brehaut -Brehme -Brei Kessel -Breiderhoft -Breightmet -Breightmet Fold -Breillat -Breitweiser -Breitwert -Breitwieser -Brem -Bremar -Brember -Bremen -Brementowne -Bremer -Bremerton -Bremner -Bremond -Bremtonwood -Bren -Bren Mar -Brenan -Brenchley -Brencon -Brenda -Brenda Lee -Brendan -Brendel -Brenden -Brendon -Brendon Hill -Brenford -Brenham -Brenish -Brenlyn -Brenman Park -Brennan -Brennans -Brennen -Brenner -Brennfleck -Brenning -Brennon -Brent -Brent Moor -Brent Park -Brent Town -Brent View -Brent Wood -Brentbridge -Brentfield -Brentford -Brentford High -Brentham -Brenthurst -Brentlands -Brentley -Brentmoor -Brentnall -Brentnor -Brenton -Brenton Point -Brentridge -Brentsville -Brentwall -Brentwood -Brentwood Farm -Brentz -Brenwood -Brereton -Bresee -Breslau -Bresnahan -Bressay -Bressey -Bret -Bret Hart -Bret Harte -Brethren -Bretland -Bretlands -Bretman -Bretmoor -Breton -Breton Lakes -Brett -Brettell -Brettenham -Bretton -Bretton View -Bretton Woods -Bretts Farm -Brettun -Bretz -Breuer -Breuner -Breval -Brevard -Breve -Brevensville -Brevent -Brevet -Brevity -Brevoort -Brew -Brew House -Brewer -Brewer Beach -Brewer House -Brewer Neck -Brewers -Brewers Hill -Brewerton -Brewery -Brewhouse -Brewhurst -Brewin -Brewington -Brewongle -Brewster -Brewster Creek -Brewster Gate -Brewton -Brexdale -Brey -Breyers -Breyley -Brian -Brian Run -Brian Smith -Briana -Brianboru -Briane -Brianne -Brians Hill -Briant -Briants -Briar -Briar Brae -Briar Cliff -Briar Close -Briar Creek -Briar Glen -Briar Hill -Briar Lea -Briar Mill -Briar Oak -Briar Oakes -Briar Patch -Briar Path -Briar Ridge -Briar Rock -Briar Rose -Briar Tree -Briar cliff -Briarbank -Briarberry -Briarbrook -Briarbush -Briarchip -Briarcliff -Briarcliffe -Briarcrest -Briarcroft -Briard -Briardale -Briarfield -Briarford -Briargate -Briarglen -Briargrove -Briarhill -Briarknoll -Briarlands -Briarly -Briarmont -Briarmoor -Briarpoint -Briars -Briarstone -Briarton -Briarwood -Briarwood North -Briarwood South -Briarwoods -Briary -Briary Wood -Brice -Brice Chapel -Bricher -Brichetto -Bricin -Brick -Brick Church -Brick House -Brick Kiln -Brick Plant -Brickel -Brickell -Brickenden -Brickendon -Bricker -Bricket -Brickett -Brickfield -Brickfields -Brickhill -Brickhouse -Bricklin -Brickmakers -Bricknoller -Brickpond -Brickspring -Brickstone -Brickvale -Brickwall -Brickway -Brickwood -Brickworks -Brickyard -Brickyard Cove -Bridal -Bridal Path -Bridalsmith -Briddle Path -Bride -Bride Hall -Briden -Brideoak -Brideoake -Bridestowe -Bridewain -Bridewell -Bridge -Bridge Barn -Bridge Bay -Bridge Branch -Bridge Creek -Bridge End -Bridge Farm -Bridge Hall -Bridge Pointe -Bridge Spur -Bridge View -Bridgecote -Bridgecourt -Bridgecross -Bridgedale -Bridgefield -Bridgefoot -Bridgeford -Bridgegate -Bridgeham -Bridgehampton -Bridgehead -Bridgeland -Bridgelea -Bridgeman -Bridgemarsh -Bridgenhall -Bridgenorth -Bridgepoint -Bridgepointe -Bridgeport -Bridgeport Lake -Bridger -Bridges -Bridges Farm -Bridgeside -Bridgestone -Bridget -Bridgeton -Bridgetown -Bridgevale -Bridgeview -Bridgewater -Bridgeway -Bridgeway Lakes -Bridgewood -Bridgford -Bridgham -Bridgit -Bridgman -Bridgnorth -Bridgwater -Bridle -Bridle Creek -Bridle Cross -Bridle Pass -Bridle Path -Bridle Post -Bridle Ridge -Bridle Spur -Bridle Trail -Bridle Wood -Bridlefield -Bridlegate -Bridlepath -Bridlespur -Bridleway -Bridlewood -Bridlington -Bridoon -Bridport -Bridson -Bridwell -Brie -Brief -Brielle -Brien -Briens -Brier -Brier Glen -Brier Hill -Brierbrook -Briercliffe -Briercrest -Brierdale -Brierfield -Brierhill -Brierholme -Brierley -Brierly -Brierway -Brierwood -Brierwoods -Briery -Brig -Briga -Brigade -Brigadier -Brigadoon -Brigalow -Brigantine -Brigantino -Brigate -Brigg -Briggs -Briggs Chaney -Briggs Fold -Briggs Ranch -Brigham -Brigham Hill -Bright -Bright Day -Bright Meadows -Bright Memory -Bright Mountain -Bright Pond -Bright Ridge -Bright Silk -Bright Sun -Bright View -Bright Wood -Brighten -Brightfield -Brightlands -Brightlea -Brightleaf -Brightling -Brightman -Brightmore -Brighton -Brighton Beach -Brighton Dam -Brighton Oaks -Brightshore -Brightside -Brightstone -Brightview -Brightwater -Brightwater Beach -Brightwell -Brightwells -Brightwood -Brigid Flanigan -Brigshaw -Brigstock -Brill -Brim -Brimbal -Brimbal Hills -Brimblecom -Brimblecomb -Brimbrook -Brimelow -Brimfield -Brimhall -Brimmer -Brimmers -Brimpton -Brimrod -Brimsdown -Brimshot -Brimsmead -Brimstone -Brimstone Academy -Brinawa -Brinckerhoff -Brindabella -Brindale -Brindle -Brindlehurst -Brindles -Brindlewood -Brindley -Brindwood -Brinef -Brinell -Bringelly -Brington -Brink -Brink Meadow -Brinkburn -Brinker -Brinkerhoff -Brinkhaus -Brinkinfield -Brinkley -Brinks -Brinkshaw -Brinkwood -Brinkworth -Brinley -Brinmar -Brinnington -Brinns -Brinsdale -Brinsley -Brinsmade -Brinsmead -Brinsop Hall -Brinsworth -Brinton -Brinwood -Brion -Briones -Briones Valley -Brionne -Briony -Brisa -Brisas -Brisbane -Brisbee -Brisbin -Briscoe -Briscoe Farm -Briscoe Turn -Briscolina -Briset -Brisette -Brishing -Briskin -Brislands -Brisley -Brisson -Bristel -Bristers Hill -Bristle Cone -Bristlecone -Bristles -Bristol -Bristol Bay -Bristol Downs -Bristol Hill -Bristol Off Water -Bristol Park -Bristol Ridge -Bristol Square -Bristol Trail -Bristol Village -Bristolwood -Briston -Bristow -Bristowe -Britain -Britani -Britania -Britannia -Britannic -Brite -Britford -Brithorn -British -British Colony -Britnall -Britney -Briton -Briton Hill -Britt -Britta -Brittain -Brittan -Brittany -Brittany Hills -Brittany Parc -Brittany Park -Brittanyann -Britten -Brittenden -Brittenford -Brittin -Brittle -Brittney -Britton -Britton Farm -Brittons -Britts Brook -Britwell -Briubi -Brive -Brixham -Brixton -Brixton Square -Brixton Water -Broach -Broad -Broad Arrow -Broad Bill -Broad Branch -Broad Brook -Broad Canal -Broad Creek -Broad Creek Church -Broad Ditch -Broad Foot -Broad Gate -Broad Green -Broad Hollow -Broad Meadow -Broad Oak -Broad Oaks -Broad Run -Broad Sound -Broadacre -Broadacres -Broadale -Broadbent -Broadbirch -Broadbottom -Broadbridge -Broadbridge Heath -Broadcar -Broadcarr -Broadclyst -Broadcroft -Broader -Broadfield -Broadfields -Broadford -Broadford Bridge -Broadgate -Broadgates -Broadhalgh -Broadham Green -Broadhead -Broadheath -Broadheys -Broadhinton -Broadhollow -Broadhurst -Broadis -Broadland -Broadlands -Broadlawn -Broadlea -Broadleaf -Broadley -Broadleys -Broadlove -Broadman -Broadmark -Broadmead -Broadmeadow -Broadmeadows -Broadmeadows Sheridan -Broadmoor -Broadmoore -Broadmore -Broadmoss -Broadneck -Broadneck Park -Broadoak -Broadoaks -Broads -Broadside -Broadsmore -Broadstone -Broadsword -Broadview -Broadview Academy -Broadwalk -Broadwater -Broadwater Creek -Broadwater Forest -Broadwater Point -Broadwaters -Broadway -Broadway Alexandra -Broadway Feather Bank -Broadway Wood -Broadway near Wood -Broadwell -Broadwick -Broadwire -Broadwood -Broady -Brocade -Brocas -Broccoli -Brocher -Brochie -Brock -Brock Bridge -Brock Hall -Brock Hill -Brockamin -Brockdish -Brockenbrough -Brockenhurst -Brocket -Brockett -Brockford -Brockham -Brockhamhurst -Brockhuizen -Brockhurst -Brocklebank -Brocklehurst -Brockleman -Brocklesby -Brockley -Brockley Hall -Brockman -Brockman Farm -Brockmeyer -Brockmier -Brocks -Brocksford -Brockswood -Brockton -Brockway -Brockwell -Brockwood -Broder -Broderick -Brodewater -Brodia -Brodick -Brodie -Brodie Spark -Brodin -Brodkin -Brodwood -Brody -Broe -Broening -Brogan -Brogdale -Brogden -Broghinge -Brokaw -Broke Farm -Broken Arrow -Broken Bow -Broken Branch -Broken Gate -Broken Land -Broken Oak -Broken Shell -Broken Tree -Broken Twig -Broker -Brokes -Brolass -Brom -Bromar -Bromborough -Brome -Bromehead -Bromfelde -Bromfield -Bromfords -Bromhall -Bromholm -Bromleigh -Bromley -Bromley Cross -Bromley Green -Bromley Hall -Bromley Hill London -Bromley Village -Brommer -Brompton -Brompton Farm -Bromshill -Bromwells -Bromwich -Bromyard -Bromycroft -Broncho -Bronco -Brondesbury -Brondsbury -Bronfield -Brong -Bronislaw -Brons -Bronsart -Bronson -Bronstein -Bronte -Bronte Marine -Bronti -Bronx -Bronx Park -Bronx River -Bronxdale -Bronxville -Bronxville Glen -Bronxwood -Bronze -Bronze Post -Bronzewing -Bronzon -Brook -Brook Bay -Brook Bottom -Brook Crossing -Brook Dale -Brook End -Brook Farm -Brook Ford -Brook Forest -Brook Grains -Brook Haven -Brook Head -Brook Hill -Brook Hills -Brook Hollow -Brook Knoll -Brook Lodge -Brook Lynn -Brook Mar -Brook Mill -Brook Park -Brook Run -Brook Trail -Brook Tree -Brook Vale -Brook Valley -Brook Village -Brookash -Brookbank -Brookbend -Brookbridge -Brookburn -Brookby -Brookcot -Brookcroft -Brookdale -Brookdene -Brooke -Brooke Acres -Brooke Farm -Brooke Grove -Brooke Jane -Brooke Knolls -Brooke Meadow -Brookehowse -Brookend -Brooker -Brookes -Brookeside -Brookeway -Brookfall -Brookfield -Brookfield Corporate -Brookfield Tower -Brookfold -Brookfoot -Brookford -Brookgate -Brookgreen -Brookgrove -Brookhaven -Brookhead -Brookhey -Brookhill -Brookhollow -Brookhouse -Brookhurst -Brooking -Brookings -Brooklake -Brookland -Brooklands -Brooklawn -Brookledge -Brooklee -Brookleigh -Brookley -Brookline -Brookln -Brooklyn -Brooklyn Bridge -Brooklyn Park -Brookman -Brookmans -Brookmans Park -Brookmead -Brookmeade -Brookmeadow -Brookmere -Brookmill -Brookmont -Brookmoor -Brookpark -Brookridge -Brookroyd -Brooks -Brooks Bank -Brooks Church -Brooks Terrace -Brooks View -Brooksbank -Brooksbie -Brooksby -Brookscroft -Brooksdale -Brooksedge -Brookshade -Brookshaw -Brookshill -Brookshire -Brookshire Estates -Brookshore -Brookside -Brookside Farm -Brookside Glen -Brookside Ranch -Brookside West -Brookspur -Brooksquare -Brookston -Brookstone -Brooksville -Brooksweld -Brookswood -Brookthorpe -Brooktree -Brooktree Ranch -Brookvale -Brookview -Brookville -Brookway -Brookwell -Brookwold -Brookwood -Brookwood Farm -Brookwood Lye -Brookwood Way -Broom -Broom Farm -Broom Hill -Broom Mills -Broomall -Brooman -Broombarn -Broomcroft -Broome -Broomers -Broomers Hill -Broomfield -Broomfields -Broomgerrie -Broomgrove -Broomhall -Broomhill -Broomhill Park -Broomhills -Broomhouse -Broomhurst -Broomlands -Broomleaf -Broomrigg -Brooms -Broomshaw -Broomsleigh -Broomsquires -Broomstair -Broomstick -Broomstick Hall -Broomville -Broomwood -Brophy -Brosam -Broschart -Broseley -Brosnan -Brossman -Brotherhood -Brothers -Brotherton -Broton -Brotto -Brouch -Brougham -Broughshane -Broughton -Broughton Craggs -Broughville -Brouilette -Brouillard -Brouillette -Broula -Broullie -Brounckner -Brousseau -Brouwerij -Brouwet -Brovelli -Brow -Browdens -Browells -Brower -Browers -Browertown -Brown -Brown Branch -Brown Deer -Brown Derby -Brown Duvall -Brown Edge -Brown Fox -Brown Gables -Brown Hill -Brown House -Brown Lea -Brown Loaf -Brown Lodge -Brown Otter -Brown Post -Brown Ranch -Brown Wood -Brownberrie -Browncross -Browndale -Browndens -Browne -Brownell -Brownfield -Browngraves -Brownhill -Brownie -Brownies Beach -Browning -Brownings -Brownlea -Brownley -Brownlow -Brownlow Hill Loop -Brownrigg -Browns -Browns Bridge -Browns Chapel -Browns Dock -Browns Farm -Browns Ferry -Browns Hall -Browns Mill -Browns School -Browns Valley -Browns Woods -Brownsea -Brownshade -Brownson -Brownsover -Brownspring -Brownstone -Brownsville -Brownswell -Brownview -Brownville -Brownwood -Brows -Brox -Broxash -Broxbourne -Broxburn -Broxhill -Broxholm -Broxmead -Broxted -Broxton -Broyhill -Broyle -Broyles -Brubaker -Brubeck -Brubri -Bruce -Bruce Castle -Bruce Park -Brucedale -Bruces Wharf -Bruceville -Brucewood -Bruche -Brucito -Bruck -Bruckner -Brude -Brudenell -Brueberry -Bruell -Bruella -Bruen -Bruhn -Bruin Hill -Brumbaugh -Brumby -Brumfield -Brumley -Brummel -Brundage -Brundige -Brundrett -Brundretts -Brune -Brunel -Brunell -Brunella -Brunello -Bruner -Brunero -Brunett -Brunette -Brunetti -Bruning -Brunk -Brunker -Brunner -Bruno -Bruns -Brunschon -Brunsvold -Brunswick -Brunswick Park -Brunswick Woods -Brunswig -Brunt -Bruntcliffe -Bruntleigh -Brunton -Bruntwood -Brunwin -Brush -Brush Creek -Brush Hill -Brush Hollow -Brush Island -Brush Lake -Brush Prairie -Brushes -Brushfield -Brushford -Brushwood -Brushy Hill -Brushyridge -Brussel -Brussels -Bruton -Brutus -Bruzek -Bruzzone -Bryan -Bryan Branch -Bryan Meadows -Bryan Point -Bryanston -Bryanstone -Bryant -Bryant Lake -Bryantown -Bryants -Bryants Bottom -Bryants Nursery -Bryantwood -Bryanwood -Bryce -Bryce Canyon -Brycewood -Bryden -Brydges -Brydon -Bryer -Bryett -Brygger -Bryla -Bryn -Bryn Bach -Bryn Mawr -Brynden -Bryne -Bryngs -Brynhaven -Brynmaer -Brynmore -Brynn -Brynorme -Brynton -Brynwood -Bryon -Bryone -Bryony -Bryson -Bryte -Bryte Bend -Bubb -Bubblestone -Bubbling Brook -Bubhurst -Bubier -Bucareli -Buccaneer -Buccleuch -Buchal Heights -Buchan -Buchanan -Buchanan Field -Buchanon -Bucher -Buck -Buck Board -Buck Cavey -Buck Center -Buck Creek -Buck Hill -Buck Knoll -Buck Lake -Buck Meadow -Buck Point -Buckbee -Buckboard -Buckbrush -Buckby -Buckden -Buckelew -Bucket -Bucket Mill -Bucketmill -Buckettsland -Buckeye -Buckfast -Buckhall -Buckhannon -Buckhatch -Buckhaven -Buckhill -Buckhold -Buckhole Farm -Buckhorn -Buckhorn Ridge -Buckhurst -Buckhurst Farm -Bucki -Buckingham -Buckingham Cove -Buckingham Hill -Buckingham Palace -Buckinghan -Buckinghorse -Buckland -Bucklands -Buckle -Buckleberry -Bucklebury -Buckleigh -Buckler -Buckles -Buckley -Buckley Hill -Buckleys -Bucklin -Bucklodge -Bucklow -Bucklow HIll -Buckman -Buckmans -Buckmaster -Buckmeadow -Buckminster -Buckmore -Bucknall -Bucknalls -Bucknam -Bucknell -Buckner -Buckout -Buckram -Buckrell -Buckridge -Bucks -Bucks Haven -Bucks Lake -Bucks Mill -Bucksfield -Bucksford -Buckskin -Buckskin Lake -Buckskin Wood -Buckstone -Buckstones -Buckswood -Bucktail -Buckthorn -Buckthorne -Buckton -Buckton Vale -Buckwall -Buckwell -Buckwood -Buckwoods -Bud -Buda -Budapest -Budbury -Budd -Budding Branch -Buddle -Budds -Buddy -Bude -Budeberry -Buderim -Budge -Budgen -Budgeree -Budgerigar -Budin -Budingen -Budiselich -Budland -Budleigh -Budler -Budna -Budoch -Budreau -Budworth -Budworth Heath -Budyan -Buehere -Buehler -Buel -Buell -Buena -Buena Monte -Buena Tierra -Buena Ventura -Buena Vida -Buena Vista -Buenaventure -Bueno -Buens -Buer -Buerkle -Buersil -Buerton -Buff -Buffalo -Buffalo Creek -Buffalo Grove -Buffalo Ridge -Buffalo Run -Buffbeards -Buffers -Buffham -Buffington -Buffins -Bufflehead -Bufford -Buffum -Buffy -Bufkin -Buford -Bugatti -Bugbee -Bugden -Bugeia -Bugglesden -Buggy Whip -Bugle -Bugler -Bugli -Bugong -Bugsbys Way Gallions -Buhl -Buhman -Buhre -Buhrstone -Buick -Build America -Builders -Buile -Buile Hill -Buist -Buker -Bukra -Bulaire -Bulara -Bulb -Bulba -Bulbeggars -Bulbi -Bulborne -Bulbrine -Bulbul -Bulcher -Bulfinch -Bulford -Bulga -Bulganak -Bulger -Buli -Bulinga -Bulkara -Bulkeley -Bulkey -Bulkhead -Bulkira -Bulkley -Bull -Bull Calf -Bull Hill -Bull Pine -Bull Pond -Bull Run -Bull Run Post Office -Bullace -Bullard -Bullbaiters -Bullbeggars -Bullbrook -Bullcote -Bullcroft -Bulldog -Bullecourt -Bullen -Bullens -Buller -Bullers -Bullers Wood -Bullerthorpe -Bullescroft -Bulletin -Bullette -Bullfinch -Bullfrog -Bullfrog Fire -Bullfrog Pond -Bullhead -Bullingstone -Bullion -Bullitt Neck -Bulliukian -Bullivant -Bullneck -Bulloch -Bullock -Bullocks -Bullocks Farm -Bullring -Bulls -Bulls Bridge -Bulls Eye -Bulls Ferry -Bulls Mill -Bulls Neck -Bullsbrook -Bullsmoor -Bullswater -Bullswater Common -Bullwood -Bullwood Hall -Bulmann -Bulmer -Bulmershe -Bulolo -Bulow -Bulrush -Bulrush Farm -Bulson -Bulstrode -Bultee -Bulteel -Bultustrol -Bulu -Bulumin -Bulwara -Bulwark -Bulwarra -Bulwer -Bulwer Court -Bumbera -Bumble Bee -Bumblebee -Bumfords -Bummer -Bumps -Bumpus -Bumpy -Bumpy Oak -Buna -Buna Mae -Bunarba -Bunbinla -Bunbury -Bunby -Bunce -Bunce Common -Bunce Court -Bunce Meadows -Buncefield -Bunces -Bunch -Bunch Berry -Bunchberry -Bunche -Buncton -Bundaleer -Bundanoon -Bundara -Bundarra -Bundeena -Bundell -Bundeluk -Bundemar -Bundesen -Bundeson -Bundilla -Bundock -Bundoon -Bundoran -Bundschu -Bundy -Bunescu -Bungal -Bungaloe -Bungalow -Bungan -Bungan Head -Bungaree -Bungarribee -Bungay -Bungendore -Bungonia -Bungoona -Bungowen -Bungtown -Bungulla -Bunhill Row Old -Bunin -Bunker -Bunker Hill -Bunker Lake -Bunker Woods -Bunkerhill -Bunkers -Bunkers Hill -Bunkershill -Bunn -Bunnai -Bunnell -Bunnerong -Bunning -Bunns -Bunny -Bunratty -Bunsen -Bunt -Bunters -Bunters Hill -Bunting -Buntingbridge -Buntingford -Bunton -Bunts -Bunya -Bunyala -Bunyan -Bunyana -Bunyard -Bunyarra -Bunyula -Buono -Buoy -Bur -Burando -Burandt -Burard -Burbage -Burbank -Burbanks -Burbeck -Burberry -Burbidge -Burbong -Burbury -Burch -Burch Haven -Burch Hill -Burchap -Burcharbro -Burchard -Burchell -Burchells Wood -Burches -Burchetts Green -Burchfield -Burchlawn -Burchmore -Burckhalter -Burcote -Burd -Burdak -Burdean -Burdeck -Burdekin -Burdell -Burdell Mountain Fire -Burden -Burdenshott -Burdent -Burder -Burdett -Burdette -Burdetts -Burdge -Burdick -Burdith -Burditt -Burdock -Burdocks -Burdon -Burdsall -Bureau -Buren -Bures -Burfield -Burfitt -Burford -Burg -Burgamot -Burgan -Burgandy -Burgattes -Burge -Burge End -Burgener -Burges -Burgess -Burgess Hill -Burget -Burgh -Burgh Heath -Burghardt -Burghclere -Burghead -Burgher -Burghfield -Burghley -Burgin -Burgner -Burgon -Burgos -Burgoyne -Burgundy -Burgundy Leaf -Burham -Burhans -Burhill -Buriat -Burich -Buried Oak -Burilla -Burk -Burkards -Burke -Burke Bradley -Burke Centre -Burke Commons -Burke Dale -Burke Lake -Burke Meadow -Burke Pond -Burke Woods -Burkes -Burkes Promise -Burkeside -Burkett -Burkette -Burkewood -Burkhall -Burkhard -Burkhardt -Burkhart -Burkitts -Burkland -Burkwood -Burl -Burl Hollow -Burl Oaks -Burla -Burleigh -Burlescoombe -Burley -Burley Farm -Burley Grange -Burley Lodge -Burley Place Viaduct -Burley Wood -Burleyhurst -Burleys -Burliegh -Burline -Burling -Burling Wood -Burlingame -Burlingame Club -Burlings -Burlington -Burlington Mall -Burlingview -Burlison -Burlow -Burlway -Burlwood -Burma -Burmah -Burman -Burmester -Burmingham -Burnaby -Burnage -Burnage Hall -Burnap -Burnbrae -Burnbray -Burnbury -Burncoat -Burncoat Park -Burndale -Burne -Burnece -Burned Chimney -Burnedge -Burnell -Burnell Park -Burnels -Burnes -Burnet -Burnet Hill -Burnet Hill School -Burnett -Burnett North -Burnetta -Burnette -Burnetts -Burney -Burnfoot -Burngarten -Burnham -Burnham Green -Burnham Harbor -Burnham Ranch -Burnhams -Burnhaven -Burnhill -Burnie -Burning Branch -Burning Bush -Burning Hollow -Burning Oak -Burning Oaks -Burning Springs -Burning Timber -Burning Tree -Burning Trees -Burnley -Burnmoor -Burnquist -Burns -Burns Bay -Burns Chalk Fire -Burns Crossing -Burns Cutoff -Burns Dairy -Burns Hill -Burns Valley -Burnsall -Burnsdale -Burnside -Burnside Landing -Burnstie -Burnsville -Burnt Ash -Burnt Bridge -Burnt Common -Burnt Crest -Burnt Edge -Burnt Ember -Burnt Hill -Burnt House -Burnt Meadow -Burnt Mill -Burnt Mills -Burnt Oak -Burnt Plats -Burnt Pollard -Burnt Swamp -Burnt Tree -Burnt Woods -Burntash -Burnthouse -Burnthouse Farm -Burnthwaite -Burntlodge -Burntside -Burntwick -Burntwood -Burntwood Grange -Burnwood -Buron -Buross -Burpee -Burpham -Burquest -Burr -Burr Hill -Burr Oak -Burr Oaks -Burr Ridge -Burr Ridge Club -Burr Tree -Burra -Burrabirra -Burrabogee -Burraddar -Burradoo -Burraga -Burrage -Burragorang -Burraloo -Burran -Burraneer -Burraneer Bay -Burras -Burrawang -Burrawong -Burrcroft -Burrell -Burrells -Burren -Burrendong -Burrfield -Burrfields -Burricks Hill -Burrill -Burrill Hill -Burrimul -Burringbar -Burrington -Burrinjuck -Burris -Burritt -Burro -Burrock -Burrough Farm -Burrough Hill -Burroughs -Burrow -Burroway -Burrows -Burrs -Burrswood -Burrwood -Burry -Burry Circle -Bursa -Bursar -Burshire -Bursill -Bursland -Burslem -Bursley -Burson -Burstead -Burstock -Burston -Burstow -Burt -Burtenshaw -Burtfield -Burtis -Burton -Burton Farm -Burton Glen -Burton Hole -Burtonhill -Burtonhole -Burtonpark -Burtons -Burtons Green -Burtonsville -Burtonwood -Burtwell -Buruwan -Burville -Burwash -Burwell -Burwick -Burwood -Burwood Park -Bury -Bury Farm -Bury Green -Bury Mead -Bury New -Bury Old -Burydell -Buryfield -Burywood -Bus -Bus Turning -Busaco -Busbridge -Busby -Busca -Busch -Busch Corner Spur -Buscher -Buschmann -Buschs Frontage -Busdens -Busgrove -Bush -Bush Elms -Bush Hall -Bush Hill -Bush Lake -Bush Pond -Bushaway -Bushberry -Bushbury -Bushby -Bushell -Bushes -Bushey -Bushey Grove -Bushey Hall -Bushey Hill -Bushey Mill -Bushfield -Bushgrove -Bushka -Bushkill -Bushlake -Bushland -Bushlands -Bushman -Bushmead -Bushnell -Bushrod -Bushtail -Bushthorn -Bushview -Bushwick -Bushwood -Bushy -Bushy Hill -Business -Business Center -Business Park -Busit -Busk -Buskin -Buskirk -Buslingthorpe -Buslins -Busman -Buss -Busse -Bussell -Bussendius -Bussey -Bussing -Busteed -Buster -Busters -Bustleton -Busty -Buswell -Butano -Butano Creek -Butano Fire -Butano Park -Butch -Butcher -Butcher Hill Lea Farm -Butcher Hill Old Oak -Butchers -Bute -Butely -Butera -Buthmann -Buti Park -Butler -Butler School -Butlers -Butlers Dene -Butlers Hall -Butlers Island -Butley -Butlin -Butman -Butt -Butt Field -Butt Green -Butt Hill -Buttaro -Butte -Butte View -Buttel -Butter Churn -Butter Cup -Butter Nut Hill -Butterbowl -Butterchurn -Buttercross -Buttercup -Butteremere -Butterfield -Butterfield Frontage -Butterfield Green -Butterfly -Butterfly Field -Butterhouse -Butterick -Butterley -Buttermarket -Buttermere -Buttermilk -Buttermilk Falls -Buttermilk Ridge -Butternut -Butternut Hollow -Butters -Butterscotch -Butterside -Butterstile -Butterworth -Buttesland -Buttfield -Butthinge -Buttitta -Buttlerly -Buttner -Button -Button Bush -Button Cove -Button Wood -Buttonbush -Buttons -Buttonwillow -Buttonwood -Buttress -Buttrick -Buttry -Butts -Butts Canyon -Butts Hill -Buttsbury -Buttway -Butu Wargun -Butwin Camp -Buxmont -Buxted -Buxton -Buxton Bridge -Buxton New -Buxton Old -Buxworth -Buyuma -Buzzard -Buzzard Hill -Buzzard Lagoon -Buzzell -Buzzoni -By -By The Sea -Byam -Byamee -Byard -Bybee -Bybrook -Bycroft -Bycullah -Byd A While -Byde -Bydown -Bye -Byefield -Byeforde -Byer -Byerley -Byers -Byes -Byfield -Byfleet -Byford -Bygrave -Bygrove -Bying -Byington -Bykool -Byland -Byloss -Bylund -Byman -Byna -Byne -Bynes -Byng -Bynner -Bynon -Bypass -Byram -Byram Brook -Byram Dock -Byram Shore -Byram Terrace -Byran -Byrd -Byre -Byrefield -Byrne -Byrne Park -Byrneley -Byrnes -Byrnwood -Byrom -Byron -Byron Hill -Byrondale -Byrons -Byrth -Byrum -Byscane -Bysing Wood -Byslips -Byton -Byward -Bywater -Byway -Bywell -Bywood -Byworth -Byxbee -C Commercial -C E Dixon -C Fernwood -C J Hafey -C Jones -C Leeds Infirmary -C York -CP Lumber -CSM -Caballero -Caballeros -Caballo -Caballo Ranchero -Cabana -Cabarita -Cabbage Hill -Cabbage Tree -Cabban -Cabbel -Cabbell -Cabe -Cabell -Cabello -Cabells Mill -Caber -Cabernet -Cabin -Cabin Branch -Cabin Creek -Cabin John -Cabina -Cabinet -Cabinwood -Cable -Cabot -Cabota -Cabover -Cabral -Cabramatta -Cabramurra -Cabrera -Cabrilho -Cabrillo -Cabrini -Cabriolet -Cabrito -Cabro -Cabrol -Cabul -Cache -Cache Peak -Cacia -Cackle -Cackler -Cackling -Cactus -Cactus Hill -Cadbury -Caddell -Caddie -Caddington -Caddo -Caddy -Cade -Cadenasso -Cadence -Cader -Cades -Cadet -Cadia -Cadigal -Cadillac -Cadish -Cadiz -Cadle -Cadle Creek -Cadloni -Cadman -Cadman Quarry -Cadmia -Cadmore -Cadmus -Cadogan -Cadogen -Cadoret -Cadorna -Cadourette -Cadow -Cadoxton -Cadsden -Cadwallader -Cadwallon -Cadwell -Cady -Caedigan -Caedmon -Caen -Caen Wood -Caenshill -Caerleon -Caernarvon -Caesar -Caesar Chelor -Caesars Camp -Cafe On The -Cafe on the -Cafeteria -Cafeto -Caffa -Caffee -Caffrey -Cage -Cage Green -Cage Pond -Cagefield -Cages Wood -Cagle -Cagney -Cagwin -Cahalan -Cahen -Cahill -Cahill Park -Cahir -Cahoon -Cahors -Cail -Caillard -Caim -Cain -Caine -Cainfield -Cains -Caird -Cairds -Cairn -Cairnfield -Cairns -Cairnslea -Cairnwell -Cairo -Cairo New -Caishowe -Caisson -Caister -Caistor -Caistor Park -Caithness -Caitlin -Cajed -Cakebread -Cal -Cal Geary -Cal Sag -Cala Vista -Calabar -Calabasas -Calabash -Calabazas -Calabrese -Calabria -Calabro -Calaby -Caladium -Calado -Caladonia -Calafia -Calais -Calala -Calamint -Calamity -Calamo -Calamus -Calanda -Calandra -Calandria -Calariva -Calaroga -Calavaras -Calaveras -Calaveras Ridge -Calawasse -Calbert -Calbina -Calboro -Calbourne -Calbroke -Calcaterra -Calcita -Calcite -Calco Creek -Calcot Mill -Calcot Place -Calcroft -Calcutta -Caldarra -Caldbeck -Caldecot -Caldecote -Caldecott -Caldeira -Calder -Calderbank -Calderbrook -Calderon -Caldershaw -Caldervale -Calderwood -Caldew -Caldicot -Caldor -Caldran -Caldwell -Caldwells Gate -Caldy -Cale -Caleb -Calebs -Caledon -Caledonia -Caledonian -Caledonium -Caleen -Calendar View -Calera Creek Heights -Calero -Calero Hills -Caleta -Caletti -Calexico -Caley -Calf -Calf Farm -Calf Hey -Calf Pasture Beach -Calfas -Calfornia -Calfstock -Calga -Calgary -Calhoun -Cali -Caliban -Calibria -Calico -Calico Pool -Calico Tree -Calicooneck -Calida -Calidore -Caliente -Calif Pacific -Califon -California -California Farms -California Poppy -Caliguiri -Calimyrna -Calinoma -Calista -Calistoga -Calitonia -Calkins -Call -Call Barnes -Calla -Calla Lilly -Callabone -Callaghan -Callagher -Callahan -Callahan School -Callahans Beach -Callan -Calland -Callander -Callaway -Callaways -Callcott -Calle Amigo -Calle Verde -Calle View -Callecita -Callen -Callendar -Callender -Caller -Callery -Callicoma -Callie -Callingdon -Callington -Calliope -Callis -Callison -Callistan -Callistemon -Callister -Callisto -Callow -Calloway -Calluna -Calmace -Calmar -Calmar Vista -Calmer -Calmont -Calmor -Calmos -Calnwood -Caloden -Calool -Caloola -Calow -Calpack -Calpella -Calpine -Calrofold -Calshot -Calt -Caltha -Calthea -Calthorpe -Calthrope -Calton -Caltor -Caltrans E -Caltrans Richards -Caltrans University -Calument -Calumet -Calumet Access -Calumet Grove -Calumet Sag -Calvados -Calvary -Calveley -Calvend -Calver -Calverley -Calverley Blackett -Calverley Green -Calverly -Calvert -Calvert Hills -Calverton -Calverton School -Calvery -Calvi -Calview -Calvin -Calvin Forest -Calvine -Calwagner -Calydon -Calyer -Calyne -Calypso -Calza -Cam -Cama -Camalier -Camanoe -Camarena -Camargo -Camargo Club -Camarillo -Camaritas -Camarri -Camas -Cambalt -Cambell -Camber -Camberford -Camberley -Camberley Forest -Camberly -Cambert -Camberton -Camberwell -Camberwell Church -Cambewarra -Cambeys -Cambia -Cambleton -Cambo -Cambodia -Cambon -Camborne -Cambourne -Cambra -Cambrai -Cambray -Cambreleng -Cambria -Cambrian -Cambrianna -Cambridge -Cambridge Barracks -Cambridge Grove -Cambridge Heath -Cambridge Lakes -Cambridge Park -Cambridgepark -Cambryar -Cambus -Camby -Camdale -Camden -Camden Acres -Camden Bay -Camden High -Camden Hill -Camden Park -Camden Town -Camden View -Camder -Camdike -Camel -Camel Hollow -Camelback -Camelia -Camellia -Camellia Mather -Camellia Park -Camelot -Camelsdale -Camenson -Cameo -Camer -Camera -Camero -Cameron -Cameron Crescent -Cameron Glen -Cameron Grove -Cameron Hills -Cameron Mills -Cameron Pond -Cameron Ridge -Cameron Rnch -Camfield -Camile -Camilla -Camille -Camilleri -Camillia -Camillo -Camino -Camino Andres -Camino Diablo -Camino Hermoso -Camino Medio -Camino Real -Camino Royale -Camino Vista -Camino de Luna -Camino del Lago -Camino del Rey -Camino del Sol -Camion -Camira -Camiri -Camlan -Camlet -Camley -Camley Park -Camlot -Camm -Cammack -Camman -Cammarata -Cammaray -Cammarlie -Cammeray -Cammerer -Cammile -Camner -Camomile -Camore -Camp -Camp Alger -Camp Arequipa -Camp Bluefields -Camp Creek -Camp David -Camp Dixie -Camp End -Camp Endeavor -Camp Flint -Camp Ground -Camp Grove -Camp Joy -Camp Kaufmann -Camp Kiwanis -Camp Letts -Camp Meade -Camp Meeting -Camp Ohlone -Camp Pearson -Camp Roosevelt -Camp Rose -Camp Springs -Camp Thayer -Camp View -Camp Wastashi -Campagna -Campagnoli -Campana -Campanara -Campanelli -Campania -Campanile -Campaspe -Campaw -Campbell -Campbell Farm -Campbell Hill -Campbell Ranch -Campbell River -Campbell Technology -Campbellfield -Campbelltown -Campden -Campeau -Campell -Campello -Camper -Camper Creek -Camperdown -Campers -Campfield -Campflint -Campgaw -Campground -Camphor -Camping Ridge -Campini Estates -Campion -Cample -Camplin -Campo -Campo Bello -Campo Dorado -Campo Vista -Campoli -Campolindo -Campora -Campos -Campoy -Campsbourne -Campsfield -Campshill -Campsie -Campton -Campton Crossings -Campton Hills -Campton Ridge -Campton Trail -Campton Woods -Camptown -Campus -Campus Commons -Campus Green -Campus Hill -Campus Loop -Camrose -Cams -Camsley -Canaan -Canabury -Canacum -Canada -Canada Cove -Canada Farm -Canada Goose -Canada Hills -Canada Valley -Canady -Canal -Canal Bank -Canale -Canalport -Cananaro -Canandaigua -Cananea -Canara -Canard -Canarsie -Canary -Canary Wharf -Canarys -Canavan -Canberra -Canbury -Canbury Park -Canby -Canda -Candace -Candahar -Candalero -Candelabra -Candelero -Canden -Candeur -Candia -Candice -Candida -Candido -Candidus -Candle -Candle Ridge -Candleberry -Candlefield -Candleford -Candlelight -Candlemas -Candlenut -Candler -Candlestick -Candlewick -Candlewood -Candlewood Hill -Candon -Candor -Candover -Candy -Candy Apple -Candy Hill -Candyland -Candytuft -Cane -Canelo Hills -Canepa -Canes -Canessa -Canesworde -Canewdon -Caney -Canfield -Canfield Hill -Canford -Canger -Canham -Canhurst -Canine -Canis -Canisius -Canistear -Canley Vale -Cann -Cann Hall -Canna -Cannan -Cannella -Cannery -Cannes -Canney -Cannfield -Cannici -Cannikin -Canning -Cannington -Cannistraci -Cannizaro -Cannock -Cannon -Cannon Ball -Cannon Bluff -Cannon Bottom -Cannon Court -Cannon Dale -Cannon Falls -Cannon Fort -Cannon Hill -Cannon Industrial -Cannon Mill -Cannon Ridge -Cannon River -Cannon Rock -Cannon View -Cannonade -Cannonball -Cannondown -Cannongate -Cannons -Cannons Mill -Cannozzi -Canoas Garden -Canoe -Canoe Brook -Canoe River -Canoe Tree -Canoga -Canon -Canon Barns -Canon Beck -Canon Hill -Canon Park -Canon Vista -Canonaro -Canonbie -Canonbury -Canonero -Canongate -Canons -Canonsfield -Canoona -Canopus -Canopy -Canright -Canrobert -Cansdale -Cansiron -Cantabrook -Cantalier -Cantalowes -Cantata -Cantebury -Cantello -Cantelow -Cantelowes -Cantelupe -Canter -Canter Glen -Canterberry -Canterbury -Canterfield -Cantering -Canterton -Canterwood -Cantiague -Cantiague Rock -Cantigny -Cantil Oaks -Cantitoe -Cantle -Cantley -Canto -Canton -Cantor -Cantore -Cantrell -Cantrill -Cants -Canturbury -Cantwell -Canuden -Canute -Canva -Canvas Back -Canvasback -Canvey -Canyon -Canyon Brook -Canyon Creek -Canyon Crest -Canyon Falls -Canyon Four -Canyon Green -Canyon Head -Canyon Heights -Canyon Hills -Canyon Lake -Canyon Lakes -Canyon Oak -Canyon Oaks -Canyon One -Canyon Rim -Canyon Run -Canyon Seven -Canyon Six -Canyon Terrace -Canyon Three -Canyon Tree -Canyon Two -Canyon View -Canyon Vista -Canyon Wood -Canyon Woods -Canyonlands -Canyonside -Canyonview -Canyonwood -Cap -Capalbo -Capastaic -Capatin Hunter -Capay -Capay Valley -Cape -Cape Ann -Cape Banks -Cape Barron -Cape Breton -Cape Buffalo -Cape Cod -Cape Colony -Cape Coral -Cape Cottage -Cape Diamond -Cape Horn -Cape Jessup -Cape Kennedy -Cape May -Cape McKinsey -Cape Misty -Cape Saint Claire -Cape Saint John -Cape Solander -Cape View -Capehart -Capel -Capell -Capell Valley Cross -Capella -Capellan -Capelli -Capen -Capen Hill -Capenhurst -Capern -Capertee -Capes -Capesthorne -Capetown -Capeview -Capewood -Capi -Capicure -Capista -Capistrano -Capital -Capital Center -Capital Gateway -Capital Hill -Capital Park -Capital View -Capitales -Capitan -Capitancillos -Capitol -Capitol Heights -Capitol Hill -Capitol Oaks -Capitol Raceway -Capitol View -Capitola -Capitolian -Capland -Caple -Caples -Capobianco -Capon -Capon Tree -Capone -Capons -Caporaletti -Capp -Cappell -Cappelletti -Capper -Capperton -Cappy -Caprera -Capri -Caprice -Capriconus -Capricorn -Caprilli -Capriole -Capron -Capsey -Capshill -Capstan -Capstone -Captain -Captain Bailey -Captain Brendt -Captain Brown -Captain Clarke -Captain Cook -Captain Dement -Captain Duval -Captain Eager -Captain Forbush -Captain Gookin -Captain Handley -Captain Hickory -Captain Honeywell -Captain John Smith -Captain Joshua -Captain Lees -Captain Marbury -Captain Miles -Captain Nathaniel -Captain Peirce -Captain Peter Simpson -Captain Robert Cook -Captain Torrey -Captains -Captains Cove -Captains Hill -Captains House -Captains Table -Captains View -Captains Wood -Captiva -Captolene -Captons -Capuchino -Capulet -Capulina -Capwell -Car Bank -Cara -Carabeen -Carabella -Caraden -Caradoc -Caramar -Caramel -Caramoor -Caran -Carandini -Caravaggio -Caravan -Caravan Head -Caravel -Caravella -Carawa -Carawatha -Caraway -Carb Apple -Carbarn -Carbeen -Carberry -Carbide -Carbis -Carbon -Carbondale -Carbonera -Carboni -Carboona -Carbrey -Carbride -Carburton -Carbury -Carby -Carcoola -Card -Cardale -Cardamom -Cardamon -Cardell -Carden -Cardenas -Cardens -Carder -Carderock -Carderock Springs -Cardiff -Cardigal -Cardigan -Cardin -Cardinal -Cardinal Bourne -Cardinal Clancy -Cardinal Cove -Cardinal Creek -Cardinal Crest -Cardinal Estate -Cardinal Forest -Cardinal Medeiros -Cardinal O Connell -Cardinet -Carding Mill -Cardington -Cardinham -Cardoso -Cardownie -Cardoza -Cardozo -Cardrew -Cardrona -Cardross -Cardus -Cardwell -Care -Careebong -Carefree -Carell -Carella -Caremine -Caren -Careo -Careswell -Caret -Carew -Carey -Carey Arthur -Carey Branch -Carey Heights -Carey School -Careyback -Careybrook -Carfax -Carfield -Cargate -Cargie -Cargil Park -Cargill -Cargo -Cargo Service -Cargreen -Carhart -Carholme -Carhullen -Cari -Cariage -Cariann -Carib -Caribon -Caribou -Caricia -Carieville -Carignane -Carill -Carilla -Carillion -Carillo -Carillon -Carillon Lakes -Carina -Carinda -Carindale -Caring -Caringal -Carington -Carino -Carinya -Caris -Caris Glenne -Carisa -Carisbrook -Carisbrooke -Carissa -Carl -Carl G Whritenour -Carl Jordan -Carl Lee -Carl Sandburg -Carl Sands -Carl Thompson -Carla -Carlback -Carlbern -Carlby -Carldon -Carle -Carleah -Carleen -Carlemont -Carlene -Carlester -Carleton -Carletta -Carley -Carlfield -Carlgate -Carli -Carlile -Carlin -Carlin Springs -Carlinda -Carline -Carling -Carlingford -Carlinghow -Carlino -Carlinwalk -Carlisle -Carlisle Pines -Carlisle on Duxbury -Carll -Carlmark -Carlmont -Carlo -Carlo Scimeca -Carlock -Carlon -Carlos -Carlos Bee -Carlotta -Carlough -Carlow -Carls Farm -Carls Hill -Carlsbad -Carlsbrook -Carlsen -Carlson -Carlson Lake -Carlstad -Carlstadt -Carlston -Carlstrom -Carlton -Carlton Bay -Carlton Club -Carlton Park -Carlwell -Carlwood -Carlwyn -Carly -Carly Creek -Carlyle -Carlyn -Carlyn Hill -Carlynn -Carlyon -Carlysle -Carm -Carman -Carman Mill -Carman River -Carmans -Carmar -Carmathen -Carmel -Carmel Valley -Carmela -Carmelhead -Carmelita -Carmelite -Carmella -Carmellia -Carmello -Carmelo -Carmelwood -Carmen -Carmena -Carmencita -Carmenna -Carmer -Carmet -Carmi -Carmichael -Carmichael Park -Carmin -Carmine -Carminya -Carmita -Carmody -Carmody Hills -Carmona -Carmoor -Carna -Carnaby -Carnac -Carnadero -Carnage -Carnarvon -Carnation -Carnavron -Carnbrook -Carneal -Carneer -Carnegie -Carnelian -Carnene -Carneros -Carnes -Carney -Carnforth -Carniel -Carniglia -Carnoble -Carnot -Carnoustie -Carntion -Carnwath -Caro -Carob -Carobwood -Carol -Carol Ann -Carol Anne -Carol Crest -Carol Lee -Carol Louise -Carol Lynn -Carol Raye -Carola -Carole -Carolian -Carolier -Carolin -Carolina -Caroline -Caroline Brook -Caroline Chisholm -Caroline Chisolm -Caroline Farms -Caroll -Carolos -Carolwood -Carolyn -Carolyn Forest -Carolyn Weston -Carolyne -Carolynn -Caroma -Caron -Carona -Carondelet -Caroni -Caroon -Carotana -Carousel -Carp -Carpathia -Carpender -Carpenders -Carpenter -Carpenter Hill -Carpenteria -Carpenters -Carpenters Arms -Carpenters Beach -Carpenters Brook -Carpenters Hall -Carpenters Wood -Carpentier -Carper -Carpino -Carpinteria -Carquinez -Carquinez Scenic -Carr -Carr Bank -Carr Bottom -Carr Bridge -Carr Brook -Carr Common -Carr Crofts -Carr Crofts Town -Carr Gate -Carr Hall -Carr Hill -Carr House -Carr Manor -Carr Moor -Carr Wood -Carragata -Carraige -Carraige Hill -Carral -Carramar -Carramarr -Carrana -Carranya -Carrar -Carraway -Carrbridge -Carrbrook -Carrcroft -Carreau -Carrel -Carrell -Carrelton -Carrera -Carrerio -Carreta -Carrfield -Carrgate -Carrgreen -Carrhill -Carrhouse -Carriage -Carriage Crossing -Carriage Ford -Carriage Green -Carriage Hill -Carriage Hills -Carriage House -Carriage Park -Carriage Ridge -Carriage Run -Carriage Square -Carriage Walk -Carriage Way -Carriagehouse -Carriagepark -Carriageway -Carrick -Carrico -Carrie -Carrie Ann -Carrie Litchfield -Carrier -Carriere -Carriers -Carrigan -Carriger -Carriglea -Carriker -Carrillo -Carrington -Carrington Field -Carrington Hall -Carrington Hill -Carrington Moss -Carrington Ridge -Carrisa -Carrisbrook -Carrithers -Carrizal -Carrlyn -Carrmann -Carro -Carrol -Carrol Gate -Carroll -Carroll Heights -Carroll Mill -Carrolls -Carrollton -Carrollwood -Carrolton -Carron -Carrona -Carroun -Carrousel -Carrow -Carrowbrook -Carrs -Carrs Creek -Carrs Ridge -Carrs Wharf -Carrsfield -Carrsvale -Carrswood -Carruth -Carruthers -Carrwood -Carry -Carry Back -Carryback -Carsam -Carsdale -Carse -Carsha -Carshalton -Carshalton High -Carshalton Park -Carslake -Carson -Carsonwood -Carstairs -Carstensen -Carswell -Cart -Cart Path -Carta -Carta Blanca -Cartagena -Cartan -Cartbridge -Carter -Carter Acres -Carter House -Carter Ridge -Carteret -Carterhatch -Carters -Carters Grove -Cartersfield -Carterwood -Carthage -Carthew -Carthona -Carthouse -Carthusian -Cartier -Cartigan -Carting -Cartisian -Cartledge -Cartlodge -Cartmel -Cartmell -Cartmore -Carton -Cartref -Cartridge -Cartway -Cartwright -Carukin -Carunna -Caruso -Caruth -Carvel -Carvel Beach -Carvell -Carven -Carver -Carver Beach -Carver Highland -Carver Hill -Carver Park -Carvers -Carville -Carwall -Carwar -Carwell -Carwin -Cary -Cary Algonquin -Cary Geights -Cary Point -Caryhurst -Caryl -Caryll -Carysfield -Carysfort -Caryville -Cas -Casa -Casa Blanca -Casa Bona -Casa Buena -Casa Del Sol -Casa Grande -Casa Linda -Casa Loma -Casa Madeira -Casa Mia -Casa Nueva -Casa Robles -Casa Verde -Casa View -Casa de Arroyo -Casa de Vida -Casa del Mar -Casablanca -Casado -Casals -Casamita -Casanda -Casanova -Casavan -Casbeer -Cascade -Cascade Falls -Cascade Fire -Cascade Ridge -Cascades -Cascara -Casco -Casco Point -Cascus -Casdin -Case -Casears -Casella -Caselli -Caselman -Casement -Casemont -Casewick -Casey -Cashel -Cashel Bay -Cashell -Casher -Cashew -Cashew Blossom -Cashlenan -Cashman -Cashmere -Cashmore -Casilear -Casillas -Casimere -Casimir -Casino -Casita -Casitas -Caskey -Caslan -Caslocke -Casmar -Cason -Caspar -Caspars -Casper -Caspers -Casperson -Caspian -Caspian Sea -Cass -Cass Brook -Cassady -Cassandra -Cassata -Cassayre -Casseday -Cassedy -Cassel -Casselden -Casselino -Cassell -Casselman -Cassena -Casserly -Cassett -Cassia -Cassiar -Cassidy -Cassidy Field -Cassie -Cassilda -Cassilis -Cassin -Cassina -Cassins -Cassio -Cassiobridge -Cassiobury -Cassiobury Park -Cassiopia -Cassland -Casslee -Casson -Casswall -Casta -Castagnaro -Castagnasso -Castaldi -Castanas -Castano -Castanos -Castaway -Castec -Castell -Castellain -Castelli -Castello -Castelnau Lonsdale -Castelton -Casten -Castenada -Casterbridge -Casterline -Casterson -Casterton -Castile -Castilian -Castilla -Castilleja -Castillejo -Castillo -Castillon -Castine -Castlands -Castle -Castle Bar -Castle Baynard -Castle Brooke -Castle Cary -Castle Cove -Castle Creek -Castle Crest -Castle Croft -Castle Edge -Castle End -Castle Farm -Castle Gate -Castle Glen -Castle Grove -Castle Harbor -Castle Heights -Castle Hill -Castle Hill Ranch -Castle Howard -Castle Ings -Castle Knoll -Castle Lake -Castle Lodge -Castle Manor -Castle Mill -Castle Moor -Castle Oaks -Castle Park -Castle Pine -Castle Pines -Castle Pointe -Castle Ridge -Castle Rock -Castle Rough -Castle View -Castle Wynd -Castlebar -Castleberry -Castlebridge -Castlebrook -Castlebury -Castlecombe -Castlecrest -Castlecroft -Castledon -Castledown -Castlefield -Castleford -Castleford Bank -Castlegate -Castlehaven -Castleknoll -Castlemain -Castlemaine -Castleman -Castlemere -Castlemill -Castlemont -Castlemoor -Castlenau -Castleraegh -Castlerea -Castlereagh -Castlereigh -Castlerigg -Castlerock -Castlerook -Castles -Castleshaw -Castleton -Castletown -Castleview -Castlewellan -Castlewood -Castley -Casto -Caston -Castor -Castro -Castro Ranch -Castro Valley -Castroville -Casuarina -Casula -Casurina -Caswell -Cat -Cat Hollow -Cat Pond -Cat Rock -Cat Tail -Catafalque -Cataldi -Cataldo -Catalina -Catalina Island -Cataline -Catalpa -Catalpha -Catamaran -Catamount -Catania -Catanna -Catapult -Cataract Hollow -Cataumet -Catawba -Catbird -Catchpenny -Catchpole -Cateaton -Cateau -Catepillar -Cater -Caterfield -Caterham -Caterpillar -Caterson -Cates Lake -Cates Ranch -Catesby -Catfish -Catford BridgeDoggett -Catha -Cathall -Cathan -Cathanger -Cathard -Catharine -Catharpin -Cathay -Cathcart -Cathead -Cathedral -Cathedral Park -Cather -Catherall -Catherine -Catherine Field -Catherine Fran -Catherine Glen -Catherine Wheel -Catherines -Cathermola -Catherwood -Cathill -Cathleen -Cathlin -Cathlow -Cathness -Cathrine -Cathy -Catia -Catie -Catlett -Catlin -Catlins -Catlow -Cato -Catoctin -Caton -Caton Center -Caton Crest -Caton Farm -Caton Ridge -Catonopsis -Catoona -Cator -Catrina -Catron -Catsbrook -Catsey -Catskill -Cattai Creek -Cattail -Cattail Spring -Cattaraugus -Catterall -Catterick -Catterwood -Catteshall -Cattistock -Cattle -Cattle Chute -Cattle Market -Cattlegate -Cattleman -Catton -Catts Tavern -Cattswood -Catulpa -Caucer -Caudill -Caughey -Cauldwell -Cauley -Caulfield -Caulms Wood -Caumsett Farms -Caumsett Woods -Causeway -Causeway End -Causey -Causeyware -Causton -Cautherly -Cautley -Cavalcade -Cavalier -Cavalier Landing -Cavalier Woods -Cavallero -Cavalletti -Cavallo -Cavalry -Cavan -Cavanagh -Cavanaugh -Cavatorta -Cave -Cave Gulch -Cave Rocks -Cavedale -Cavell -Caven Point -Cavendish -Caveridge -Caverly -Cavern -Cavers -Caversham -Caversham Park -Caversham park -Caves -Caveys -Cavill -Cavite -Cavitt -Cavoretto -Cavour -Cawarra -Cawarrah -Cawbeck -Cawcott -Cawder Lee -Cawdor -Cawdor Farms -Cawfield -Cawker -Cawley -Cawnpore -Cawthorne -Caxton -Cayden -Cayer -Cayetano -Cayley -Cayman -Cayman Island -Caymus -Cayote Hill -Cayser -Caythorpe -Cayton -Cayucos -Cayuga -Caywood -Cazadero -Cazeneuve -Cazenove -Cazneau -Cañada -Cbq -Cc -Ce. Patricia -Cebalo -Cebold -Cebra -Cebu -Cecala -Cecatra -Cecelia -Cecil -Cecil Aldin -Cecil Crest -Cecil Newman -Cecile -Cecilia -Cecilian -Cecily -Cedar -Cedar Acres -Cedar Branch -Cedar Bridge -Cedar Brook -Cedar Cliff -Cedar Creek -Cedar Crest -Cedar Crossing -Cedar Crown -Cedar Dale -Cedar Dell -Cedar Falls -Cedar Farms -Cedar Flat -Cedar Forest -Cedar Gables -Cedar Gate -Cedar Glade -Cedar Glen -Cedar Glenn -Cedar Green -Cedar Grove -Cedar Haven -Cedar Hedge -Cedar Hill -Cedar Hills -Cedar Hollow -Cedar Knoll -Cedar Knolls -Cedar Lake -Cedar Lakes -Cedar Lawn -Cedar Logs -Cedar Mountain -Cedar Oaks -Cedar Park -Cedar Point -Cedar Pointe -Cedar Pond -Cedar Post -Cedar Ranch -Cedar Ridge -Cedar River Park -Cedar River Pipeline -Cedar Run -Cedar Shore -Cedar Spring -Cedar Springs -Cedar Swamp -Cedar Terrace -Cedar Tree -Cedar Valley -Cedar View -Cedar Wood -Cedarbend -Cedarberry -Cedarbluff -Cedarbridge -Cedarbrook -Cedarcliff -Cedarcreek -Cedarcrest -Cedarcroft -Cedardale -Cedarest -Cedarfield -Cedarforest -Cedargrove -Cedarhill -Cedarhollow -Cedarhurst -Cedarlawn -Cedarlea -Cedarleaf -Cedarmeadow -Cedarne -Cedars -Cedars East -Cedartree -Cedarvale -Cedarvale Access -Cedarview -Cedarvillage -Cedarville -Cedarwood -Ceddox -Ceder -Cedrela -Cedric -Cedro -Cedrus -Ceely -Cefalo -Cefalu -Celadon -Celandine -Celano -Celebes -Celebrar -Celebration -Celebrity -Celeo -Celery -Celeste -Celestial -Celestine -Celia -Celilo -Celina -Celinda -Celine -Celium -Cell Barnes -Cell Farm -Cellar -Cellar Door -Cellars -Celler -Celtic -Cembellin -Cement Hill -Cement Plant -Cemetary -Cemetery -Cemmaes Court -Cenacle -Cendry -Cenex -Centaur -Centaurus -Centech -Centella -Centenary -Centennial -Centennial Grove -Centennial Park -Centeno -Center -Center Bay -Center Briarwood -Center Bridge -Center Cargo -Center Chicot -Center Cir -Center Court -Center Dyre -Center Flats -Center Harbor -Center Hill -Center Knolls -Center Market -Center Ridge -Center Village -Center Wood -Center for the Arts -Centergate -Centerhill -Centerport -Centershore -Centerton -Centerview -Centerville -Centerwood -Centinella -Centola -Centoni -Central -Central Cabin -Central Park -Central Skokie -Central Square -Central Village -Central Wall -Central Way Faggs -Centre -Centre Common -Centre Court -Centre Island -Centre Park -Centre Pointe -Centre Pt -Centre Square -Centre View -Centrella -Centreville -Centreville Farms -Centrum -Centurion -Century -Century Farm -Century Frontage -Century Manor -Century Mill -Century Oaks -Century Ridge -Century Towne -Century Vista -Cephas -Cera -Ceralene -Ceramic -Ceramica -Cerchio -Cerdan -Cereal -Cereda -Cereea -Cerenzia -Ceres -Ceresia -Cereza -Cereze -Cerezo -Cerina -Cerini -Cerise -Cermak -Cernan -Cerne -Cernohous -Cernon -Cerny -Cerone -Cerqua -Cerra Vista -Cerrato -Cerreta -Cerretta -Cerrito -Cerritos -Cerro -Cerro Crest -Cerro Este -Cerro Vista -Cerruti -Cervantes -Cervato -Cesa -Cesar -Cesar Chavez -Cesario -Cesena -Cessford -Cessington -Cessna -Cesta -Cestaric -Cestrum -Cetrina -Cevets -Cevu -Cewell -Ceylon -Ceynowa -Cezanne -Chaban -Chablis -Chabolla -Chabot -Chaboya -Chace -Chace Hill -Chackfield -Chaco -Chad -Chada -Chadacre -Chadbourne -Chadd -Chadderton -Chadderton Hall -Chadderton Park -Chaddick -Chaddock -Chadds Ford -Chadima -Chadkirk -Chado -Chadovoyne -Chads -Chadsworth -Chadvil -Chadwell -Chadwic -Chadwick -Chadwick Hall -Chadwick Oaks -Chadwicke -Chadwin -Chaffee -Chaffer -Chaffes -Chaffey -Chaffin -Chaffinch -Chaffins -Chafford -Chagall -Chagford -Chahotkin -Chailey -Chain -Chain Bar -Chain Bridge -Chain O Hills -Chain of Lakes -Chaingate -Chairborough -Chaix -Chakya -ChalGrave -Chaladay -Chalapa -Chalcedony -Chalcombe -Chalcot -Chalcroft -Chalder -Chaldon -Chaldon Common -Chale -Chalet -Chalet Clothilde -Chaleyer -Chalfant -Chalfont -Chalfonte -Chalford -Chalfort -Chalgrove -Chalice -Chalk -Chalk Farm -Chalk Hill -Chalk Mountain -Chalk Pit -Chalk Point -Chalkely -Chalkenden -Chalkers -Chalket -Chalkhouse Green -Chalkpit -Chalks -Chalkshire -Chalkwell -Chalkwell Park -Chalky -Chalky Bank -Challas -Challedon -Challener -Challenge -Challenger -Challin -Challis -Challoner -Challum -Chally -Chalmers -Chalmette -Chalner -Chalomar -Chalon -Chalone -Chaloner -Chalsey -Chalton -Chalvedon -Chambellan -Chamber -Chamber House -Chamberer -Chamberlain -Chamberland -Chamberlayne -Chamberlin -Chambers -Chambers Green -Chambersbury -Chambino -Chamblis -Chambord -Chambosse -Chambourd -Chambray -Chaminade -Chamlis -Chamomile -Chamone -Chamonieux -Chamonix -Champ -Champa -Champagne -Champion -Champions -Championship -Champlain -Champlaine -Champlin -Champness -Champney -Champs Elysee -Chanate -Chance -Chance Farm -Chanceford -Chancel -Chancelet -Chancell -Chancellor -Chancellors -Chancelor -Chancery -Chanctonbury -Chandeaux -Chandlee Mill -Chandler -Chandler Mill -Chandlers -Chandley -Chandos -Chanel -Chaney -Chaneyville -Changebridge -Chanhassen -Chanler -Chanlon -Channahon -Channel -Channel Center -Channel Gate -Channel Islands -Channelsea -Channer -Channing -Channing Bicycle -Channon -Chanol -Chanslor -Chansory -Chant -Chantal -Chantecler -Chantel -Chanters -Chanticlare -Chanticleer -Chantilley -Chantilly -Chantilly Baptist -Chantilly Crossing -Chantler -Chantlers -Chanton -Chantrey -Chantry -Chantry View -Chanute -Chanwahon -Chapala -Chaparral -Chaparro -Chapek -Chapel -Chapel Chase -Chapel Cove -Chapel End -Chapel Farm -Chapel Field -Chapel Fields -Chapel Forge -Chapel Gate -Chapel Hill -Chapel House -Chapel Lake -Chapel Mill -Chapel Oak -Chapel Oaks -Chapel Pond -Chapel Springs -Chapel View -Chapel Wood -Chapelfield -Chapelgate -Chapelle -Chapelmount -Chapeltown -Chapeltown Carlisle -Chapeltown Grove -Chapelview -Chapelwood -Chapin -Chaplain -Chaplin -Chapman -Chapman Mill -Chapman Oak -Chapmans -Chapmans Landing -Chapmans Town -Chapparal -Chappel -Chappell -Chappell of Bond -Chappellwood -Chappie -Chapter -Chapter House -Char -Charabanc -Charal -Charandy -Charant -Charbonnier -Charcoal -Charcot -Chard -Chardin -Chardmore -Chardon -Chardonnay -Chardonnay Ridge -Charen -Charena -Charfleets -Charford -Chargall -Chargeable -Charger -Charges -Chargin -Charina -Charing -Charing Cross -Charing Heath -Charing School -Charington -Chariot -Charish -Charismatic -Chariton -Charity -Charker -Charkers -Charlam -Charlbert -Charlbury -Charlcote -Charldane -Charlden -Charlecot -Charlecote -Charlela -Charlemagne -Charlemaine -Charlemont -Charlene -Charleroi -Charles -Charles Anna -Charles Arrington -Charles Augustine -Charles Babbage -Charles Cali -Charles Coveney -Charles Crossing -Charles Davis -Charles Dean -Charles Dickens -Charles Diersch -Charles Dunn -Charles E Ryan -Charles Gate -Charles Hackett -Charles Hall -Charles Halle -Charles Haller -Charles Hawkins -Charles Hayman -Charles Hill -Charles Holden -Charles II -Charles Lacey -Charles Lake -Charles Lindbergh -Charles M Bailey -Charles Mary -Charles Park -Charles Patten -Charles River -Charles Schell -Charles Sevright -Charles Thomson -Charles Wack -Charles Young -Charlesbank -Charlescotte -Charlesdale -Charlesfield -Charlesford -Charlesgate -Charlesmere -Charleson -Charleston -Charlestown -Charlestowne -Charlesview -Charlesworth -Charley -Charley Forest -Charlie -Charlie Joyner -Charlie Piddles -Charlie Yankos -Charlieville -Charline -Charlmont -Charlock -Charlott -Charlotte -Charlotte Despard -Charlotte Park -Charlotteburg -Charlottesburg -Charlottesville -Charlson -Charlton -Charlton Church -Charlton Mead -Charlville -Charlwood -Charlwoods -Charlyn -Charmada -Charmain -Charman -Charman Hill -Charme -Charmello -Charmeran -Charmfield -Charmian -Charmin -Charmingfare -Charminster -Charmouth -Charning Cross -Charnock -Charnstaffe -Charnswood -Charnville -Charnwood -Charolette -Charolotte -Charon -Charred Oak -Charredwood -Charring -Charrington -Chars -Charsan -Chart -Chart Hill -Chart House -Charta -Chartbury -Charter -Charter Oak -Charter Oaks -Charter One -Charterhouse -Charteris -Charters -Chartfield -Chartham -Charthouse -Chartier -Chartmoor -Chartres -Chartreux -Chartridge -Chartsey -Chartwell -Charvil -Charvil House -Charvil Meadow -Charvill -Charville -Charwood -Chas -Chasden -Chase -Chase Commons -Chase Cross Havering -Chase Green -Chase Hill -Chase Hills -Chase Pond -Chase Side -Chasefield -Chaseley -Chaseling -Chasely -Chasemill -Chasemoor -Chaseside -Chasewood -Chaska -Chaske -Chasmar -Chasner -Chasselas -Chassen -Chassyl -Chastworth -Chatam -Chataway -Chatburn -Chateau -Chateau Bluff -Chateau Ridge -Chateau Thierry -Chateau la Salle -Chateaugay -Chateaulin -Chateaux Bouane -Chatelain -Chatfield -Chatham -Chatham Hall -Chatham Hill -Chatham Hill Windmill -Chatham Village -Chathamfield -Chathams Ford -Chathlake -Chatillion -Chatillon -Chatley -Chaton -Chatres -Chatswood -Chatsworth -Chattanooga -Chattenden -Chatter Brook -Chatteris -Chattern -Chatterton -Chattleton -Chatto -Chattswood -Chatwood -Chaucer -Chaul End -Chaulden -Chaumont -Chauncey -Chauncy -Chauntry -Chauser -Chautaugua -Chautauqua -Chauvel -Chauvet -Chauvety -Chave -Chaves -Chavey Down -Chavez -Chavoya -Chaworth -Chawridge -Chawton Park -Chayes Park -Chaytor -Chazey -Che Che Pinqua -Cheadle -Cheadle Old -Cheal -Cheam -Cheam Common -Cheapside -Cheatle -Chebacco -Chebec -Chebek -Chechester -Check -Checker -Checker Berry -Checkerberry -Checkered Flag -Checkers -Checkerspot -Checkley -Checkstone -Cheda -Cheda Knolls -Cheddar -Cheddington -Cheddleton -Chedlee -Chedlin -Chedworth -Cheekbridge -Cheekwood -Cheelson -Cheeney -Cheers -Cheery -Cheeryble -Cheese -Cheesecombe Farm -Cheesequake -Cheesequake Park -Cheetah -Cheetam Fold -Cheetham -Cheetham Hill -Cheethams -Cheetwood -Cheever -Cheevers -Cheffins -Chegwell -Chegworth -Chegwyn -Chehalis -Chelan -Chelbourne -Cheldon -Chelford -Chell -Chellaston -Chellman -Chellows -Chells -Chelmar -Chelmer -Chelmer Valley -Chelmerton -Chelmont -Chelmsford -Chelsa -Chelsea -Chelsea Beaufort -Chelsea Hills -Chelsea Manor -Chelsey -Chelsfield -Chelsham -Chelsham Common -Chelsham Court -Chelshire -Chelson -Chelston -Chelsworth -Cheltenham -Cheltenhan -Chelton -Chelverton -Chelwood -Chelwood Gate -Chelwynd -Chemeketa -Chemical -Chemise -Chemka Pool -Chemlsford -Chemolite -Chemung -Chen -Chenango -Chenault -Chenery -Cheney -Cheney Pond -Chenies -Chenin -Chenin Blanc -Chennault -Chennell Park -Chenu -Chepstow -Chequer -Chequers -Chequers Bridge -Chequesset -Chequessett -Cherbourg -Cherbury -Cheri -Cherice -Cherie -Cherington -Cheris -Cherita -Cheriton -Cherly -Cherlyn -Cherne -Cherokee -Cherokee Heights -Cherri -Cherri Lynn -Cherrington -Cherry -Cherry Bend -Cherry Blossom -Cherry Brook -Cherry Creek -Cherry Crest -Cherry Garden -Cherry Gate -Cherry Glen -Cherry Green -Cherry Grove -Cherry Hill -Cherry Hills -Cherry Holt -Cherry Laurel -Cherry Lawn -Cherry Mill -Cherry Oak -Cherry Oca -Cherry Orchard -Cherry Point -Cherry Ridge -Cherry Springs -Cherry Tree -Cherry Tree Crossing -Cherry Tree Farm -Cherry Trees -Cherry Valley -Cherry Wood -Cherryblossom -Cherrybrook -Cherrycrest -Cherrycroft -Cherrydale -Cherrydown -Cherryfield -Cherryfields -Cherryhill -Cherryhills -Cherryland -Cherrylawn -Cherrystone -Cherrythorne -Cherryton -Cherrytree -Cherryvale -Cherryview -Cherryville -Cherrywood -Cherston -Chertsey -Chertsey Bridge -Cherubina -Chervil -Cherwal -Cherwek -Cherwell -Cherwick -Cherwing -Cheryl -Cheryl Ann -Cheryl Beck -Cheryl Hills -Cheryl Turn -Cheryll -Ches Mar -Chesapeake -Chesapeake Bay -Chesapeake Beach -Chesapeake Harbour -Chesapeake Lighthouse -Chesborough -Chesbro -Chesbro Lake -Chesbrough -Cheseapeake -Chesebrough -Cheselden -Cheseman -Chesett -Chesfield -Chesford -Chesham -Chesham Fold -Cheshire -Chesholm -Cheshunt -Chesilton -Chesire -Chesley -Chesley Knoll -Chesline -Chesman -Chesney -Chesney Glen -Chesnut -Chess -Chessel -Chessenden -Chessholme -Chesshyre -Chessington -Chessman -Chessnut -Chesson -Chestehunt -Chester -Chester Brook -Chester Hall -Chester Hill -Chesterblade -Chesterbrook -Chesterfield -Chesterford -Chesterhill -Chesterlee -Chesterman -Chesters -Chesterton -Chestertown -Chesterwood -Chestney -Chestnut -Chestnut Cove -Chestnut Crossing -Chestnut Farm -Chestnut Gardens -Chestnut Grove -Chestnut Hill -Chestnut Hills -Chestnut Knolls -Chestnut Leaf -Chestnut Oak -Chestnut Park -Chestnut Pointe -Chestnut Ridge -Chestnut Springs -Chestnut Tree -Chestnut Wood -Cheston -Chestwall -Cheswick -Cheswood -Chetland -Chettenham -Chetwode -Chetwood -Chetwyn -Chetwynd -Cheval -Chevalier -Chevalle -Chevchenko -Chevelle -Chevening -Cheverly -Cheverly Park -Cheverton -Cheverus -Cheves -Chevet -Chevin -Chevington -Cheviot -Cheviot on Duxbury -Cheviots -Chevy -Chevy Chase -Chevy Chase Lake -Chew -Chew Brook -Chew Valley -Chewpon -Chews Branch -Chews Chapel -Chewter -Cheyenne -Cheylesmore -Cheyne -Cheyne Park -Cheyneys -Chiala -Chianti -Chicago -Chicago Tube -Chicama -Chicamuxen -Chicatabut -Chicatawbut -Chicester -Chichele -Chicheley -Chichester -Chichester House -Chick -Chick Evans -Chickacoan Trail -Chickadee -Chickaree -Chickasaw -Chickatabot -Chickatawbut -Chicken -Chicken Shack Fire -Chicken Valley -Chickenden -Chickering -Chickie -Chickney -Chickory -Chico -Chicoine -Chicopee -Chicorp -Chicory -Chicot -Chiddingfold -Chiddingstone -Chidester -Chidley Cross -Chidlow -Chidswell -Chidwall -Chiechi -Chief -Chieftain -Chiesa -Chieveley -Chifley -Chigborough -Chignal -Chignall -Chigwell -Chigwell Park -Chilanian -Chilaw -Chilberton -Chilbrook -Chilco -Chilcoate -Chilcote -Chilcott -Chilcroft -Child -Childerditch -Childerditch Hall -Childeric -Childerley -Childers -Childrens -Childress -Childs -Childs Hall -Childs Hill Finchley -Childs Point -Childsbridge -Childscroft -Chileno Valley -Chiles -Chiles Pope Valley -Chilgrove -Chilham -Chilhowie -Chillem -Chillerton -Chillies -Chilling -Chillington -Chillingworth -Chillis Wood -Chilliwack -Chillum -Chillum Manor -Chillumgate -Chilmark -Chilmead -Chilpancingo -Chilsey Green -Chilston -Chiltern -Chiltern Green -Chiltern Hill -Chiltern Hills -Chiltern Park -Chiltern View -Chiltley -Chilton -Chilver -Chilvers -Chilverton -Chilworth -Chimalus -Chime -Chimes -Chimes Harbor -Chimney -Chimney Corner -Chimney Creek -Chimney House -Chimney Pot -Chimney Ridge -Chimney Rock -Chimney Swift -China -China Air -China Basin -China Grade -China Wall -Chinaberry -Chinatown Dean -Chinbrook -Chinchilla -Chincoteague -Chindits -Chineham -Chinewood -Chingarora -Chingdale -Chingford -Chingford Mount -Chinkapin -Chinley -Chinmoy -Chinn -Chinn Park -Chinnock -Chinnuk -Chinook -Chinquapin -Chinquapin Crest -Chinquapin Round -Chinthurst -Chiott -Chip Hill -Chipili -Chipily -Chipka -Chiplay -Chipley -Chiplou -Chipman -Chipmonk Hollow -Chipmunk -Chippen -Chippendale -Chippendayle -Chippenham -Chipper -Chipper Hill -Chipperfield -Chippetts -Chippewa -Chipping -Chipping Campden -Chippingham -Chippingstone -Chippy -Chipstead -Chipstead Valley -Chipstone -Chipwood -Chiquita -Chiquita Camino -Chircan -Chirco -Chisago -Chisamore Ranch -Chiselhurst -Chisenhale -Chisholm -Chisholme -Chisledon -Chislehurst -Chisley -Chism Park -Chisolm -Chisom -Chisum -Chiswell -Chiswell Green -Chiswick -Chiswick Common -Chiswick High -Chisworth -Chittenden -Chittendon -Chittick -Chitty -Chittys -Chivalry -Chivers -Chloe -Choate -Choats -Chobham -Chobham Park -Chobot -Chocataw -Chocksett -Chocolate -Chocolog -Choctaw -Choir -Choke -Choke Cherry -Chokeberry -Chokecherry -Chole -Cholesbury -Cholla -Cholmeley -Cholmley -Cholmondeley -Cholseley -Chope -Chopek -Chopin -Choptank -Chorley -Chorley Hall -Chorley New -Chorley Old -Chorley Wood -Chorleywood -Chorlton -Choseley -Chouteau -Chovan -Chowan -Chowdermarch -Chowen -Chownes Mead -Chrerrybrook -Chretien -Chris -Chris Mar -Chrisandra -Chrisba -Chrisdumar -Chrisibar -Chrisland -Chrisman -Chrisman Hill -Chrismar -Chrismas -Chrisp -Christ Church -Christa -Christabel -Christchurch -Christeen -Christel -Christel Oaks -Christen -Christensen -Christenson -Christeph -Christer -Christian -Christian Fields -Christian Hill -Christiana -Christiana Parran -Christiano -Christiansen -Christie -Christie Heights -Christie Hill -Christies -Christina -Christina Marie -Christine -Christine Lynn -Christleton -Christman -Christmas -Christmas Lake -Christmas Pie -Christmas Tree -Christmas Tree Point -Christo -Christofaro -Christol -Christoper -Christopher -Christopher Columbus -Christopher Martin -Christopher Michael -Christopher Thomas -Christopher Wren -Christophers -Christs Hospital -Christy -Chrome -Chromite -Chronical -Chronicle -Chronnell -Chruchville -Chrysanthemum -Chrysanthy -Chrysler -Chrysopolis -Chryssell -Chrystie -Chu -Chubb -Chubbs Brook -Chubbuck -Chubworthy -Chuch -Chuck -Chuck Hatch -Chuckanutt -Chuckwagon -Chudleigh -Chukker -Chula -Chula Vista -Chulsey -Chum -Chumalia -Chumasero -Chumleigh -Chung Wah -Chungking -Chunis -Chunooma -Church -Church Access -Church Creek -Church Elm -Church End -Church End East End -Church End EstateMayo -Church Farm -Church Gate -Church Headland -Church Hill -Church Hill Kirkfield -Church Lake -Church Park -Church Wood -Church of Hazel -Churchbury -Churcher -Churchfield -Churchfields -Churchgate -Churchhill -Churchill -Churchill Downs -Churchill Farm -Churchill Glen -Churchill Park -Churchills -Churchland -Churchman -Churchmead -Churchmore -Churchston -Churchtown -Churchview -Churchville -Churchwood -Churin -Churley Wood -Churlin -Churn -Churnet -Churnside -Churston -Churt -Churton -Churubusco -Churwell -Chute -Chuter -Chutney -Chuzzlewit -Chyam -Chynoweth -Ciampa -Cianci -Ciarlo -Cibber -Cibis -Cibrian -Cicada -Cicada Glen -Ciccarelli -Ciccone -Ciceley Mill -Cicely -Cicero -Cicerone -Cid -Cidalia -Cider -Cider Hill -Cider House -Cider Mill -Cider Springs -Cidermill -Cielito -Cielo -Cielo Vista -Cienega -Ciervos -Cijos -Cilantro -Cima -Cimarron -Cimino -Cimmaron -Cimmarron -Cinamon -Cincinatti -Cincinnatti -Cincinnatus -Cindee -Cinder -Cinder Hill -Cinderbed -Cinderella -Cinderford -Cindra -Cindy -Cindy Jo -Cinmar -Cinnabar -Cinnabar Hills -Cinnamin -Cinnamon -Cinnamon Apple -Cinnamon Creek -Cinnamon Teal -Cinnamon Tree -Cinnamond -Cintra -Cintura -Ciolino -Ciper -Cippenham -Cipres -Cipriani -Cipriano -Cipriano Springs -Circa -Circle -Circle C -Circle Court -Circle Creek -Circle Gate -Circle High -Circle Hill -Circle Oaks -Circle Pine -Circle Ranch -Circle Ridge -Circledale -Circlegate -Circling Hunter -Circuit -Circular -Circus -Ciro -Cirolero -Cirrus -Ciruela -Cirvelo -Cisco -Cisler -Cisney -Ciss -Cissbury -Cissell -Cissell Manor -Cisticola -Cistus -Cit -Citadel -Citadelle -Citation -Citizen -Citizens -Citrine -Citron -Citrus -Citrus Grove -Citrus Wood -Citruswood -City -City Center -City Centre -City Dock -City Gate -City Hall -City Heights -City Island -City Park -City View -City Way Pattens -City West -Cityfront Plaza -Cityhomes -Cityview -Civic -Civic Center -Civic Centre Wood -Civic Ctr -Civic Heights -Civic Terrace -Civita -Clack -Clacket -Clackhams -Clackmannan -Claeys -Claffey -Claffy -Claflin -Claflin Farm -Clafton -Clagett -Clagett Farm -Claggett -Claggett Landing -Claggy -Claiborne -Claibourne -Claim -Clair -Clairborne -Claire -Clairemont -Clairfield -Clairmont -Clairton -Clairvale -Clairview -Clallam -Clam -Clam Shell -Clames -Clamhunger -Clammer Hill -Clamshell -Clanalpine -Clanbrook -Clancarty -Clancy -Clandlpline -Clandon -Clanton -Clanville -Clanwilliam -Clapboard Ridge -Clapboardtree -Clapgate -Clapham -Clapham High -Clapham Manor -Clapham Park -Clapp -Clapper -Clappers -Clappers Farm -Clappertown -Clappins -Clapton Hall -Clara -Clara Barton -Clara Louise -Clara Maass -Clara Vista -Claradon -Clarana -Clarane -Clarden -Clare -Clare Lawn -Claredale -Claredon -Clarefield -Claremon -Claremont -Claremont Park -Claremont Woods -Claremore -Claremount -Clarenan -Clarence -Clarence Bromell -Clarendale -Clarenden -Clarendon -Clarendon Hills -Clarendon Woods -Clarens -Clares -Clares Green -Claret -Clarevale -Clareview -Clareville -Clarewill -Clarewood -Clarges -Claria -Claribel -Clarice -Claridge -Clarie -Clarina -Clarinada -Clarinda -Clarion -Clarissa -Clarita -Clark -Clark Fork -Clark Green -Clark Hill -Clark Lake -Clark Smith -Clarkbrooke -Clarke -Clarke Farms -Clarke Hall -Clarkebourne -Clarken -Clarkes -Clarkes Landing -Clarkford -Clarkin -Clarks -Clarks Branch -Clarks Crossing -Clarks Farm -Clarks Hill -Clarks Run -Clarks Wood -Clarksburg -Clarksdale -Clarksfield -Clarkson -Clarkspur -Clarkston -Clarksville -Clarkton -Clarkwood -Clarmont -Clarmonte -Clarner -Claron -Clary -Clary Sage -Clason -Clason Point -Classen -Classic -Classical -Classico -Classon -Clatterbury -Claucus -Claudare -Claude -Claude Moore -Claudett -Claudia -Claudine -Claudius -Claudy -Claughton -Claus -Clausen -Clauser -Clausing -Clausland Mountain -Clauson -Clauss -Clavadal -Clave -Clavel -Clavela -Clavell -Claverack -Claverdale -Claverdon -Claverhambury -Clavering -Claverton -Claverts -Clavey -Clavinia -Clawiter -Clawson -Claxfield -Claxton -Clay -Clay Bank -Clay Basket -Clay Cliffe -Clay East -Clay End -Clay Hammond -Clay Hill -Clay Pit -Clay Spring -Clay Tye -Claybank -Claybar -Clayboard -Clayborn -Clayborne -Claybourne -Claybrook -Claybrook Farms -Clayburn -Claybury -Claycart -Claycord -Claycourt -Claydon -Clayfarm -Clayfield -Claygate -Clayhall -Clayhill -Clayholes -Claymere -Claymont -Claymoor -Claymore -Claypit -Claypit Hill -Claypits -Claypitt -Claypole -Clayponds -Claypool -Clays -Clayshotts -Clayton -Clayton Croft -Clayton Hall -Clayton Marsh -Clayton View -Claytonbrook -Claytonia -Claywood -Cleabarrow -Cleadon -Cleall -Cleanthus -Clear -Clear Creek -Clear Echo -Clear Lake -Clear Ridge -Clear River -Clear Shot -Clear Spring -Clear Springs -Clear View -Clearbrook -Clearbrook Park -Clearcroft -Cleares -Clearfield -Clearland -Clearly -Clearmeadow -Clearmont -Clearmount -Clearpointe -Clearview -Clearwater -Clearwater Creek -Clearwaters -Clearway -Clearwell -Clearwood -Cleary -Cleary Lake -Cleave -Cleaveland -Cleaver -Cleaves -Cleavland -Cleavley -Cleburne -Clee -Cleeve -Cleft -Cleg -Clegg -Cleggs -Cleghorn -Cleland -Clelia -Clelland -Clem -Clemans -Clematis -Clemence -Clemens -Clement -Clement Royds -Clemente -Clementhorpe -Clementi -Clementina -Clementine -Clementon -Clements -Clements End -Clements Hall -Clementson -Clemiston -Clemmons -Clemo -Clemons -Clemson -Clemton -Clenches Farm -Clendenin -Clendenny -Clendinnen -Clennam -Clensham -Clent -Cleo -Cleo Rand -Cleo Springs -Cleome -Cleone -Cleopatra -Clere -Cleremont -Cleremore -Clerihew -Clerk -Clerke -Clermont -Cletus -Cleve -Clevedon -Cleveland -Cleveland Park -Cleveleys -Clevely -Clevemont -Cleverdon -Cleverly -Cleves -Clevis -Clewborough -Clewer -Clewer Court -Clewer Hill -Clewerwall -Clewes -Clewley -Cleworth -Cleworth Hall -Clews -Cley -Cliddesden -Client -Clif -Clifden -Cliff -Cliff Edge -Cliff Estates -Cliff Hill -Cliff Hollins -Cliff House -Cliff Lake -Cliff Pine -Cliff Swallow -Cliff View -Cliff Walk -Cliffbourne -Cliffdale -Cliffe -Cliffe Park -Cliffhaven -Cliffhill -Cliffhouse -Cliffland -Cliffmont -Clifford -Clifford Manor -Clifford Moor -Clifforest -Cliffrose -Cliffside -Cliffside Circle -Clifftop -Clifftown -Cliffview -Cliffwood -Clift -Clifton -Clifton Court -Clifton Creek -Clifton Forest -Clifton Heights -Clifton Hunt -Clifton Oaks -Clifton Park -Clifton Pines -Clifton Point -Clifton Quarry -Clifton Spring -Cliftonbrook -Cliftondale -Cliftons -Cliftonville -Cliftwood -Climbhill -Climmen -Climping -Climus -Clinch -Cline -Clingan -Clinglog -Clink -Clinton -Clinton Manor -Clinton Park -Clinton South -Clinton Vista -Clintonia -Clintonville -Clintwood -Clio -Clipper -Clipper Gap -Clipper Hill -Clipper Ship -Clippers -Clippership -Clipston -Clipstone -Clirieden -Clisby -Clisdell -Clissold -Clitheroe -Clito -Clive -Clive Hills -Clivedale -Cliveden -Clivedon -Clivemont -Clivesdale -Cloak -Cloberry -Clock -Clock Barn -Clock House -Clock Tower -Clockhouse -Clocks -Clocktower -Clohesey -Cloister -Cloisterham -Cloisters -Clomnel -Clonavor -Clonbrock -Cloncurry -Clonmel -Clonmell -Clonmore -Clontarf -Clopper -Cloppers Mill -Clopton -Clorinda -Close -Closeworth -Closter Dock -Cloth -Cloth Hall -Clothall -Clothier -Clothorn -Clothworkers -Clotilda -Cloud -Cloud View -Cloudberry -Cloudesley -Clouds Mill -Cloudsdale -Cloudview -Clough -Clough End -Clough Fold -Clough Head Pinfold -Clough House -Clough Park -Clough Top -Clouston -Cloutier -Cloutman -Clova -Clove -Clove Brook -Clovelly -Clovely -Clover -Clover Flat -Clover Glen -Clover Hill -Clover Knoll -Clover Leaf -Clover Leaf Center -Clover Oak -Clover Patch -Clover Ranch -Clover Ridge -Cloverbrook -Cloverbrooke -Clovercrest -Cloverdale -Cloverfield -Clovergrass -Cloverhill -Cloverhurst -Cloverleaf -Cloverley -Cloverly -Clovermeadow -Clovermere -Clovernook -Cloverview -Cloverway -Cloverwood -Cloveside -Clovewood -Clovis -Clow Creek -Clow International -Clowders -Clowe -Clower -Clowes -Cloyd -Club -Club Center -Club Circle -Club Hill -Club Hollow -Club House -Club Lake -Club Park -Club Pointe -Club Tree -Club View -Club Way -Clubb -Clubhouse -Clubhouse Gate -Clubhouse Memorial -Clubside -Clubview -Clubway -Clucas -Clue -Cluett -Cluff -Clumber -Clump -Clumps -Clunbury -Clunes -Clunie -Clunies Ross -Clutha -Clutton -Clybourn -Clybourne -Clyburn -Clyda -Clyde -Clyde Jones -Clyde O Bosworth -Clyde Potts -Clydebank -Clydelle -Clydesdale -Clydia -Clyfford -Clyfton -Clymer -Clynderven -Clyne -Clysedale -Clyston -Clywd -Cnopius -Co -Co Line -Coach -Coach Hill -Coach House -Coachella -Coachlace -Coachlads -Coachlamp -Coachlight -Coachmaker -Coachman -Coachman Ridge -Coachmans -Coachway -Coachwood -Coakley -Coal -Coal Creek -Coal Hill -Coal Pier -Coal Pit -Coalbrook -Coale -Coalecroft -Coales -Coalinga -Coalkiln -Coalpit -Coalport -Coalshaw Green -Coan -Coare -Coast -Coast Guard -Coast Hill -Coast Hospital -Coast Oak -Coast Range -Coastal -Coastal Charter -Coastal Cove -Coastal Fire -Coastland -Coastview -Coastwise -Coat Ridge -Coatbridge -Coate -Coates -Coates Hill -Coates Park -Coats -Coats Hutton -Cob -Cob Kiln -Cobac -Cobalt -Cobar -Cobargo -Cobb -Cobb Hill -Cobb Island -Cobbadah -Cobbert -Cobbett -Cobbett Hill -Cobbetts -Cobbinsend -Cobbitee -Cobbitty -Cobbity -Cobble -Cobble Brook -Cobble Cove -Cobble Creek -Cobble Crest -Cobble Field -Cobble Hill -Cobble Knoll -Cobble Mill -Cobble Ridge -Cobble Shores -Cobblefield -Cobbler -Cobblerock -Cobblers -Cobblers Beach -Cobblershill -Cobblestone -Cobblestone Fire -Cobblestone Lake -Cobblewood -Cobbold -Cobbs -Cobden -Cobdown -Cobelstone -Coben -Coberley -Cobh -Cobham -Cobham Park -Cobhambury -Cobland -Cobleigh -Coblentz -Coborn -Cobourg -Cobra -Cobran -Cobtree -Coburg -Coburn -Coburn Hill -Coca Cola -Cocasset -Coccio -Cochato -Cochea -Cochetto -Cochise -Cochituate -Cochraine -Cochran -Cochran Mill -Cochrane -Cochrans Lock -Cock -Cock Clod -Cock Green -Cock Hall -Cockatoo -Cockbush -Cockcroft -Cockenoe -Cocker -Cocker Creek -Cocker Mill -Cockerell -Cockerhurst -Cockett -Cockey -Cockfosters -Cockhedge -Cockle Bur -Cocklebur -Cockmannings -Cockpit Point -Cockrell -Cockrells -Cockrill -Cockrobin -Cocks -Cocksfoot -Cocksheadhey -Cockshot -Cockshott -Cockspur -Cocksure -Cockthorpe -Coco -Coco Palm -Coconino -Coconut -Cocos -Cocquina -Cocupara -Cod -Coda -Codale -Codderre -Codding -Coddington -Coddle Harbor -Code -Coderolli -Coderre -Codham Hall -Codicote -Codington -Codjer -Codman -Codman Hill -Codmore Wood -Codo -Codornices -Codorniz -Codorus -Codrington -Cody -Coe -Coeburn -Coed -Coelho -Coes -Coes Neck -Coey -Coeyman -Cofer -Coffee -Coffeeberry -Coffer Woods -Coffey -Coffield -Coffin -Coffman -Coffs Harbour -Cog Hill -Cogate -Coger -Cogger -Coggeshall -Coggins -Coggs Bill -Coghill -Coghlan -Cogmans -Cognewaugh -Cogshall -Cogswell -Cohancy -Cohansey -Cohasett -Cohasset -Cohassett -Cohawney -Cohen -Cohill -Cohn -Cohns -Coho -Cohort -Coil -Coil Plus -Coila -Coin -Coit -Coit Dam -Coit Spring -Coity -Coke -Cokefield -Coker -Cokes -Cola -Colahan -Colam -Colane -Colantha -Colaric -Colasanti -Colbeck -Colbera -Colberg -Colbert -Colborne -Colbourne -Colbrook -Colburn -Colby -Colby Hewitt -Colby Lake -Colby Point -Colchester -Colchester Brook -Colchester Hunt -Colchester Meadow -Colcokes -Cold Arbor -Cold Christmas -Cold Harbor -Cold Harbour -Cold Hill -Cold Norton -Cold Plain -Cold Point -Cold Spring -Cold Spring Brook -Cold Spring Harbor -Cold Spring Hills -Cold Spring Ridge -Cold Springs -Cold Well -ColdHarbour -Coldalhurst -Coldbath -Coldblow -Coldbridge -Coldbrook -Coldcotes -Coldcreek -Colden -Colder -Coldershaw -Coldevin -Coldfall -Coldfield -Coldharbour -Coldicutt -Coldmoorholme -Coldnailhurst -Coldred -Coldren -Coldrum -Coldspring -Coldstream -Coldwaltham -Coldwater -Cole -Cole Farm -Cole Green -Cole Park -Colebert -Coleborne -Colebrook -Colebrooke -Coleby -Colechin -Coleen -Colefair -Coleford -Coleford Bridge -Colegate -Colegates -Colegrave -Colegrove -Coleherne -Colehill -Colekitchen -Colella -Colella Farm -Coleman -Coleman Glen -Coleman Green -Coleman Park -Coleman Ranch -Coleman Thomas -Coleman Valley -Colemans -Colemans Hatch -Colemansmoor -Colemore -Colennade -Colenso -Colepits Wood -Colerain -Coleraine -Colerick -Coleridege -Coleridge -Coleridge Taylor -Coles -Coles Chance -Coles Crossing -Coles Green -Coles Hill -Coles Orchard -Colesberg -Colesburg -Coleshill -Coleshire -Colesmead -Coleson Hill -Colestown -Colesville -Colesville Manor -Colet -Colette -Coleus -Coleville -Colewood -Colewood Estates -Coley -Coley Park -Colfax -Colfe -Colford -Colgan -Colgate -Colgett -Colgrove -Colham -Colham Green -Colham Mill -Colie -Coligni -Colima -Colin -Colin Blythe -Colin Kelly -Colin Murphy -Colin P Kelly Jr -Colin Park -Colina -Colinda -Colindale -Colindeep -Colindia -Colinette -Colins -Colinton -Coliston -Coll -Collado -Collamore -Collar House -Collard -Collards -Collarenebri -Collaroy -Collector -Colleen -Colleen Garden -College -College Eight -College Eight Service -College Farm -College Green -College Heights -College Hill -College Loop -College Manor -College Nine -College Park -College Point -College Pond -College Ten -College Town -College View -Collegeview -Collegiate -Collendean -Collens -Collenswood -Collent -Colles -Colless -Collet -Collete -Colleton -Collett -Collette -Colley -Colley Hill -Colley Manor -Collfield -Collie -Collier -Collier Canyon -Collier Hill -Collier Row -Colliers -Colliers Row -Colliers Water -Colliery -Collimore -Collin -Collincote -Collindale -Colling -Collingbourne -Collingdon -Collinge -Collingham -Collingham Main -Collings -Collingswood -Collingsworth -Collington -Collingtree -Collingwood -Collins -Collins Taft -Collinson -Collinson Lee -Collinsville -Collinwood -Collis -Collischan -Collison -Colliston -Collum Green -Collura -Collyer -Collyhurst -Colma -Colma Creek Service -Colmac -Colman -Colmer -Colmery -Colmore -Colnbrook -Colne -Colne Bank -Colne Park -Colnedale -Colney -Colney Hatch -Colney Heath -Colo -Cologne -Coloma -Colomb -Colombard -Colombine -Colombo -Colon -Colona -Colonade -Colonel -Colonel Bell -Colonel Bennett -Colonel Ellis -Colonel Gridley -Colonel Holcomb -Colonel Hunt -Colonel Johnson -Colonel Lindsay -Colonel Mansfield -Colonel Pye -Colonel Taylor -Colonels -Colonels Choice -Colonia -Colonial -Colonial Arms -Colonial Beach -Colonial Gardens -Colonial Heights -Colonial Hill -Colonial Hills -Colonial Oaks -Colonial Park -Colonial Port -Colonial Post -Colonial Ridge -Colonial Springs -Colonial Village -Colonial Woods -Colonna -Colonnade -Colonsay -Colony -Colony Club -Colony Cove -Colony Crest -Colony Green -Colony Hill -Colony Hills -Colony Knoll -Colony Park -Colony Point -Colony Ridge -Colony View -Colorada -Colorado -Colorado Springs -Colorado Way Carr -Colorado Way Whistler -Colorados -Coloriver -Colpitts -Colrain -Colridge -Colshaw -Colshire -Colson -Colsterworth -Colston -Colt -Colt Run -Coltash -Colthurst -Coltishall -Coltman -Colton -Colton School -Colts -Colts Brook -Colts Neck -Coltsfood -Coltsfoot -Coltwood -Columba -Columbas -Columbet -Columbia -Columbia Creek -Columbia Crossing -Columbia Gateway -Columbia Park -Columbia Square -Columbia Wharf -Columbian -Columbine -Columbus -Colusa -Colvamore -Colville -Colvin -Colvin Forest -Colvin Meadows -Colvin Run -Colwell -Colwick -Colwith -Colwood -Colworth -Colwyn -Colyer -Colyton -Colywn -Comack -Comalli -Comanche -Comaneci -Comargo -Combara -Combat -Combe -Combedale -Combee -Comber -Combermere -Comberton -Combes -Comboy -Combs -Comconex -Comeau -Comely -Comely Bank -Comer -Comeragh -Comerford -Comet -Cometrowe -Comfort -Comforts Farm -Comfrey -Comice -Comiskey -Comistas -Comly -Commack -Commanche -Command -Commander -Commander Black -Commander John Shea -Commerce -Commerce Center -Commerce Park -Commercial -Commercial Vehicle -Commerford -Commers -Commill -Commissary -Commissioners -Commo -Commodore -Commodore Webster -Commoms -Common -Common Gate -Common Side -Common Wood -Commonage -Commonfield -Commonhall -Commonmeadow -Commons -Commonside -Commonside Bromley -Commonside Wood -Commonwealth -Commority -Communication Hill -Communications Hill -Community -Community College -Community College SE -Community Hall -Community Memorial -Community Park -Community Sq -Como -Comp -Compadre -Compass -Compass Point -Compasses -Component -Comprehensive -Compressor -Compromise -Compstall -Compton -Compton Parc -Compton Village -Comptons -Comptons Brow -Compubil -Computer -Comrie -Comstock -Comstock Mill -Comus -Comyn -Comyns -Conally -Conan Doyle -Conant -Concannon -Concanon -Concar -Concepcion -Concert -Concerto -Concetta -Concetta Sass -Concettina -Conch -Concho -Conco -Concolor -Concord -Concord Hill -Concord Point -Concorde -Concordia -Concourse -Concrete -Concrete Pipe -Condado -Condamine -Conde -Condell -Conder -Condesa -Condict -Condit -Condoin -Condon -Condor -Condover -Condron -Conduit -Cone -Coneflower -Conegra -Conejo -Conen -Conerly -Conerty -Conestoga -Conewood -Coney -Coney Byes -Coney Hall Addington -Coney Hill -Coney Island -Coney Warren -Coneyburrow -Coneyhurst -Confederate -Confederate Ridge -Confederation -Confer -Conference -Conference Center -Conference Ground -Conford -Conforti -Congdon -Conger -Congewoi -Congham -Conghurst -Congleton -Congo -Congou -Congresbury -Congress -Congress Hall -Congress Park -Congress Springs -Congress Valley -Congressbury -Congressional -Congreve -Congrove -Conie -Conies -Conifer -Conifer Fire -Conifer Hill -Coniger -Conihasset -Coningesby -Coningham -Coningsby -Conington -Conisboro -Coniscliffe -Coniston -Coniton -Conkey -Conkeyshaw -Conklin -Conkling -Conklins -Conklintown -Conlan -Conlee -Conley -Conley Creek -Conley Downs -Conlogue -Conlon -Conlyn -Conmur -Conn -Conn Creek -Conn Valley -Connaught -Connawarra -Conne Mara -Connect -Connecticut -Connecticut View -Connecting -Connector -Connel -Connell -Connellan -Connelley -Connells Point -Connelly -Connelly Hill -Connels -Connely -Connemara -Connemarra -Connemera -Conner -Conners -Connett -Connie -Connierae -Conningham -Connington -Connolly -Connop -Connor -Connors -Conolly -Conomo -Conomo Point -Conovan -Conover -Conow -Conowingo -Conqueror -Conquest -Conrad -Conrads -Conran -Conrick -Conroy -Conry Crescent -Cons -Cons Land Off Hayward -Consatance -Conselyea -Conservation -Consfield -Consideration -Considine -Consistory -Consiton -Consolidated -Consolo -Consort -Constable -Constance -Constant -Constantine -Constanzo -Constellation -Constitution -Constitution Beach -Constitutional Hill -Consuelo -Consul -Consulate -Contact -Contaplas -Conte -Conte Warf -Contee -Contees Wharf -Contempo -Content -Contentment Island -Contento -Conti Square -Continental -Continental Cove -Continente -Contour -Contra Costa -Contra Loma -Contractor -Contractors -Control Tower -Convair -Convalescent -Convent -Convention -Convention Center -Conventry -Conver -Converse -Convery -Conway -Conway Farms -Conways -Conwell -Conyer -Conyerd -Conyingham -Conyngham -Conzelman -Cooba -Coogan -Coogarah -Coogee -Coogee Bay -Cooinda -Cook -Cook Farm -Cook Riolo -Cooke -Cookes -Cookham Wood -Cookhill -Cookridge -Cookridge Green -Cooks -Cooks Farm -Cooks River -Cooksey -Cookshall -Cookson -Cool Brook -Cool Hollow -Cool Oak -Cool Spring -Coolabah -Coolah -Coolalie -Coolangatta -Coolaroo -Coolawin -Coolbrith -Coolbrook -Cooledge -Cooleena -Cooley -Coolgardie -Coolgun -Coolham -Coolhurst -Coolibah -Coolibar -Coolidge -Coolidge Farm -Coolidge Hill -Cooling -Coolinga -Coolong -Cooloongatta -Coolowie -Coolridge -Coolspring -Coolwood -Cooma -Coomalie -Coomassie -Coombe -Coombe Farm -Coombe Hill -Coombe Wood -Coombehurst -Coombelands -Coombers -Coombes -Coombewood -Coombfield -Coombs -Coombsville -Coomes -Coon Creek -Coon Heights -Coon Hollow -Coon Point -Coon Rapids -Coon Rapids Serv -Coon Rapids Service -Coonamble -Coonan -Coonanbarra -Coonara -Coonawarra -Cooney -Cooney Hill -Coongra -Coonley -Coonong -Coop -Coope -Cooper -Cooper Park -Cooper Pond -Cooper River -Cooper School -Cooperative -Coopermill -Coopernook -Coopers -Coopers End -Coopers Green -Coopers Grove -Coopers Hill -Coopers Pond -Coopers Shaw -Coopersale -Cooperworth -Coora -Coorabin -Cooriengah Heights -Coorilla -Coot -Cootamundra -Coote -Coover -Cooyong -Cop -Copa del Oro -Copas -Copco -Copcutt -Cope -Copel -Copeland -Copeland Creek -Copeland Tannery -Copen Meadow -Copenger -Copenhagen -Copenhaver -Copernic -Copernicus -Copes -Copestake -Copford -Copgrove -Copiage -Copiague -Copland -Copleston -Copley -Coppabella -Coppage -Coppards -Copped Hall -Coppel -Coppen -Copper -Copper Beach -Copper Bed -Copper Beech -Copper Creek -Copper Hill -Copper Leaf -Copper Mill -Copper Mine -Copper Mountain -Copper Peak -Copper Penny -Copper Ridge -Copper Springs -Copper View -Copperas -Copperas Ridge -Copperbeach -Copperbeech -Copperdale -Copperfield -Copperflagg -Copperhill -Copperhouse -Copperkins -Copperleaf -Coppermill -Coppermine -Copperopolis -Copperpenny -Coppers -Coppersmith -Copperstrip -Coppertree -Copperwood -Copperwynd -Coppetts -Coppetts Wood -Coppice -Coppice Farm -Coppice Wood -Coppidwell -Coppins -Coppleridge -Copplestone -Coppola -Coppy -Coprock -Copse -Copse Edge -Copsem -Copsewood -Copsleigh -Copson -Copster -Copsterhill -Copt Hall -Coptefield -Copter -Coptfold -Copthall -Copthorne -Copthorne Common -Coptic -Copts Hill -Copwood -Copyground -Copyhold -Coquette -Coquille -Cora -Cora Bell -Cora Post -Corabel -Corabelle -Coraki -Coral -Coral Berry -Coral Gables -Coral Heath -Coral Reef -Coral Ridge -Coral Sands -Coral Sea -Coral Tree -Corala -Coralberry -Coralee -Coralflower -Coralie -Coralino -Corall Hollow -Coralla Vista -Corallie -Coralwood -Coralyn -Coram -Coram Farm -Coramba -Corang -Coranto -Corban -Corbane -Corbar -Corbar Woods -Corben -Corbet -Corbets -Corbett -Corbett Hill -Corbetta -Corbin -Corbin Hall -Corbitt -Corbridge -Corby -Corbyn -Corchaug -Corcoran -Corcoran Hill -Cord -Corda -Cordage -Cordale -Cordaville -Corday -Cordeaux -Cordeiro -Cordelia -Cordell -Cordellia -Corden -Corder -Cordero -Cordes -Cordgrass -Cordial -Cordier -Cordiero -Cordilleras -Cordina -Cordingley -Cordis -Cordoba -Cordone -Cordova -Cordoy -Cordoza -Cordwainer -Cordwaiver -Cordwallis -Cordwell -Cordwood -Core -Corea -Coree -Coreen -Coreen Hills -Corell -Corella -Corens -Cores End -Corewood -Corey -Coreys Mill -Corfdon -Corfe -Corfield -Corfu -Corgiat -Cori -Coriander -Coriegarth -Coriell -Corinda -Corinha -Corinne -Corinth -Corinthia -Corinthian -Corio -Cork -Cork Oak -Cork Tree -Corkan -Corkberry -Corkland -Corkran -Corks -Corktree -Corkwell -Corkwood -Corky -Corla -Corlano -Corlear -Corlett -Corley -Corlies -Corliss -Corlista -Cormack -Corman -Cormar -Cormier -Cormiston -Cormongers -Cormorant -Cormoy -Corn -Corn Mill -Corn Point -Cornall -Cornauba -Cornbrook -Cornbrook Park -Corncastle -Corncrib -Cornec -Cornehlsen -Corneils -Cornelia -Cornelian -Cornelias Prospect -Cornelison -Cornelius -Cornell -Cornells -Corner -Corner Farm -Corner Hall -Corners -Cornerstone -Cornett -Corney -Cornfield -Cornflower -Cornford -Cornforth -Cornhey -Cornhill -Corniche -Cornilsen -Cornine -Corning -Cornish -Cornith -Cornmill -Cornock -Cornorstone -Cornshaw -Cornstalk -Cornwall -Cornwallis -Cornwalls -Cornwell -Cornwell Farm -Cornwells Beach -Cornwood -Cornworthy -Corobon -Corodon -Corona -Coronach -Coronada -Coronado -Coronation -Coronation Tree Main -Coronawood -Coronel -Coronet -Coroval -Corperation -Corporal Frank Scott -Corporal Kennedy -Corporate -Corporate Center -Corporate Crossing -Corporate Grove -Corporate Lakes -Corporate Limit -Corporate Park -Corporate West -Corporate Yard -Corporation -Corpus Christi -Corral -Corral Hollow -Corrales -Corralitos -Corralitos Ridge -Corralitos View -Corrance -Correas -Corregidor -Correia -Correja -Correll -Correllis -Correnden -Correys -Corri -Corriander -Corrib -Corrick -Corrie -Corriedale -Corrielle -Corriente Point -Corrigan -Corrin -Corrine -Corringham -Corrinne -Corrinthia -Corron -Corruna -Corry -Corryong -Corsa -Corsair -Corsaire -Corsay -Corseley -Corsett -Corsey -Corsham -Corsi -Corsica -Corsicana -Corsletts -Corso -Corson -Cortadera -Cortayne -Cortbridge -Corte Madera -Corte Mesa -Corte Verte -Corte Vista -Cortelyou -Corter -Cortereal -Cortes -Cortese -Cortesi -Cortez -Corthell -Cortina -Cortland -Cortlandt -Cortney -Corto -Corto San Miguel -Cortona -Cortright -Cortsen -Corucopia -Corunna -Corvair -Corvallis -Corve -Corvette -Corvin -Corvina -Corvus -Corwell -Corwin -Corwood -Cory -Corydalis -Coryell -Corys Brook -Cos Cob -Cosbycote -Cosca Park -Cosdach -Cosden -Cose -Cosgrave -Cosgrove -Coslin -Cosma -Cosman -Cosmic -Cosmo -Cosmos -Coso -Cossack -Cosser -Cosset -Cossington -Cossio -Costa -Costa Mesa -Costa Rica -Costa Verde -Costanza -Costanzo -Costar -Costead Manor -Costela -Costello -Coster -Costner -Coston -Costons -Cosumnes -Cosway -Cot -Cot Hill -Cotall -Cotati -Cotchford -Cote -Cote Green -Cotebrook -Cotefield -Cotefields -Cotentin -Coteroyd -Cotesmore -Cotford -Cotham -Cotherstone -Cothran -Cotleigh -Cotluss -Cotman -Coton -Coton Commons -Coton Hall -Coton Manor -Cotoneaster -Cotsford -Cotswold -Cotswolds Hill -Cotswood -Cotta -Cottage -Cottage Colony -Cottage Farm -Cottage Field -Cottage Garden -Cottage Grove -Cottage Hill -Cottage Park -Cottage Point -Cottage Run -Cottagewood -Cottall -Cottam -Cottee -Cottenden -Cottenham -Cotter -Cottered -Cotterell -Cotterill -Cotters -Cottesbrook -Cottesmore -Cottie -Cottimore -Cotting -Cottingham -Cottingley -Cottington -Cottis -Cottle -Cottler -Cotton -Cotton Farm -Cotton Mill -Cotton Reserve -Cotton Tail -Cotton Tree -Cotton Wood -Cottoneaster -Cottonfield -Cottongrass -Cottonleaf -Cottonmill -Cottontail -Cottonwood -Cottonwoods -Cottrell -Cotts Wood -Cottswold -Cotuit -Couch -Couching -Couchmore -Couchon -Couchtown -Couden -Cougar -Cougar Mountain -Cougar Rock -Coughlan -Coughlin -Coulee -Coulgate -Coulman -Coulombe -Coulsden -Coulsdon -Coulsdon Ridgemount -Coulson -Coulter -Coulton -Council -Council Crest -Council Hill -Council Oak -Councillor -Counrtyside -Counsellor -Counselman -Counselor -Count -Count Rumford -Counter -Countess -Counthill -Counting House -Countisbury -Country -Country Acres -Country Aire -Country Brook -Country Club -Country Club Village -Country Commons -Country Corners -Country Creek -Country Crossing -Country Day -Country Estates -Country Fair -Country Falls -Country Farm -Country Fields -Country Forge -Country Glen -Country Hill -Country Hills -Country Hollows -Country House -Country Knoll -Country Knolls -Country Lake -Country Lakes -Country Life -Country Manor -Country Meadow -Country Meadows -Country Mill -Country Oak -Country Oaks -Country Park -Country Pond -Country Ridge -Country Run -Country School -Country Side -Country Squire -Country Trail -Country View -Country Village -Country Wood -Country Woods -Countrybrook -Countryfield -Countryman -Countryridge -Countryside -Countryside Lake -Countrystone -Countryvale -Countryview -Countrywood -Countrywoods -County -County Airport -County Center -County Club -County Court House -County Dump -County Farm -County House -County Institutional -County Labor Camp -County Line -County Park -County Quarry -County Seat -Coupland -Courage -Courallie -Couranga -Courcival -Courier -Courland -Course -Course Brook -Coursehorn -Coursers -Court -Court Bushes -Court Close -Court Downs -Court Farm -Court House -Court Lodge -Court North -Court Side -Court Tree -Court Way Colin Park -Courtauld -Courtenay -Courteney -Courter -Courtesy -Courtfield -Courthill -Courthouse -Courthouse Oaks -Courtland -Courtland Hill -Courtland Manor -Courtland Park -Courtlands -Courtlandt Heights -Courtleet -Courtleigh -Courtley -Courtly -Courtmead -Courtmoor -Courtnell -Courtney -Courtney Park -Courtoak -Courtrai -Courts -Courts Hill -Courtside -Courtwood -Courtwright -Courtyard -Courville -Cousin -Cousins -Coutant -Couter -Couthurst -Coutler -Coutu -Coval -Cove -Cove Edge -Cove Hill -Cove Landing -Cove Neck -Cove Point -Cove Pointe -Cove Ridge -Cove View -Cove of Cork -Covell -Coveney -Covent -Covent Garden -Coventon -Coventry -Coventry on Duxbury -Coveny -Cover -Coverdale -Covered Bridge -Covered Trail -Covered Wagon -Coverhill -Coverly -Coverstone -Covert -Coverton -Coverts -Coves End -Covewood -Covey -Covey Hall -Covey Hill -Covina -Coving Cross -Covington -Covino -Cow -Cow Hill -Cow Pond Brook -Cow Watering -Cowan -Coward -Cowards -Cowasset -Cowbarn -Cowbridge -Cowburn -Cowcross -Cowden -Cowdery -Cowdin -Cowdray -Cowdrey -Cowdroy -Cowdry -Coweeset -Cowell -Cowell Service -Cowells -Cowelside -Cowen -Cowens -Cowesby -Cowesit -Cowfold -Cowhill -Cowick -Cowie -Cowing -Cowl -Cowland -Cowleaze -Cowles -Cowley -Cowley Mill -Cowlin -Cowling -Cowlishaw -Cowlitz -Cowlow -Cowm Top -Coworth -Cowpasture -Cowpastures -Cowpens -Cowper -Cowper Wharf -Cowperthwaite -Cowrang -Cowsill -Cowslad -Cowslip -Cowstead -Cowsted -Cowthorpe -Cox -Cox Farm -Cox Green -Coxheath -Coxmount -Coxon -Coxs -Coxshire -Coxtie Green -Coxton -Coxwell -Coxwold -Coy -Coybay -Coyle -Coyne -Coyote -Coyote Creek -Coyote Hill -Coyote Lake -Coyote Moon -Coyote Point -Coyote Ranch -Coyote Reservoir -Coyote Ridge -Cozens -Cozette -Cozine -Cozumel -Cozy -Cozy Glen -Cozy Lake -Cozzens -Crab -Crab Apple -Crab Hill -Crab Orchard -Crab Tree -Crabapple -Crabb -Crabbet -Crabtree -Crabtree Meadow -Cracco -Crackenedge -Cracklingtown -Cracow -Craddock -Craddocks -Cradducks -Cradle -Cradlebridge -Cradles -Cradleskid -Cradley -Cradock -Crafford -Craft -Crafton -Craftown -Crafts -Craftsland -Craftsman -Craftwood -Crag -Cragg -Craggs -Craggwood -Cragmont -Cragmore -Cragun -Cragwood -Crahan -Craig -Craigavon -Craigdale -Craigen -Craigend -Craigerne -Craighall -Craighill -Craigholm -Craighton -Craighurst -Craigie -Craiglands -Craiglawn -Craiglea -Craigmont -Craigmore -Craignish -Craigton -Craigtown -Craigweil -Craigwell -Craik -Crail -Crain -Crainmont -Cramer -Cramhurst -Crammavill -Crammaville -Crammond -Cramond -Crampshaw -Crampton -Cramptons -Crana -Cranage -Cranberry -Cranberry Hill -Cranberry Meadow -Cranbook -Cranborne -Cranbourn -Cranbourne -Cranbrook -Cranbrooke -Cranbury -Cranbury Cross -Cranch -Crandall -Crandallwood -Crandell -Crandon -Crandor -Crane -Crane Lodge -Crane Meadow -Crane Park -Crane Ranch -Cranebrook -Cranefield -Cranes -Cranes Crook -Cranes Farm -Cranesbill -Craneswell -Craneway -Cranfield -Cranfield Park -Cranford -Cranford Park -Cranham -Cranham Moor -Cranhurst -Crankwood -Cranleigh -Cranley -Cranlington -Cranmer -Cranmer Bank Tynwald -Cranmere -Cranmore -Crann -Cranoke -Crans -Cranshaw -Cranshire -Cranstal -Cranston -Cranstons -Cranswick -Crantock -Cranwell -Cranwells -Cranwich -Cranworth -Crape Myrtle -Crapo -Crary -Craske -Crassas -Craston -Crater -Crater Lake -Crathie -Craut -Crave -Cravea -Cravells -Craven -Cravenwood -Craver -Craw -Crawford -Crawley -Crawley Green -Crawleys -Crawshaw -Crawshay -Cray -Craybrooke -Craycroft -Craydene -Craydon -Crayfield -Crayford -Craylands -Crayle -Crays Will -Crayside -Crayton -Crazy Horse -Crazy Horse Canyon -Crealock -Creamcup -Creameary -Creamer -Creamery -Creamery Hill -Creasey Park -Creasys -Creaville -Crebor -Crecienta -Crecy -Credenhall -Credenhill -Credit River -Credit View -Crediton -Credon -Cree -Creed -Creedmor -Creedon -Creeds Mill -Creek -Creek Bed -Creek Bend -Creek Crossing -Creek Farm -Creek Knoll -Creek Line -Creek Meadow -Creek Oaks -Creek Park -Creek Ridge -Creek Run -Creek Shore -Creek Side -Creek Tree -Creek Valley -Creek View -Creek Water -Creekbed -Creekbend -Creekdale -Creekfield -Creekfront -Creekhollow -Creekline -Creekpaum -Creekpoint -Creekridge -Creeks Bend -Creeksea -Creeksea Ferry -Creeksedge -Creekside -Creekside Oaks -Creekview -Creekview Meadow -Creekway -Creekwood -Creel -Creeley -Creelman -Creely -Creeper -Creeper Hill -Creephedge -Creesy -Creewood -Creffield -Creger -Cregier -Crehore -Creif -Creigan -Creighton -Creighton Farms -Creighton Ridge -Crellin -Cremen -Cremers -Cremia -Cremona -Cremorne -Cremyll -Crencoun -Crendon -Crenna -Crenshaw -Creole -Crepeau -Crerie -Cresbury -Crescent -Crescent Beach -Crescent Cove -Crescent Green -Crescent Knoll -Crescent Lake -Crescent Park -Crescent Ridge -Crescente -Crescenzo -Cresci -Cresenda -Cresent -Cresente -Cresford -Creskeld -Creskell -Creskill -Cresleigh -Crespi -Crespigny -Crespo -Cress -Cress Brook -Cress Creek -Cress View -Cressbrook -Cresset -Cressex -Cressey -Cressfield -Cressida -Cressing -Cressingham -Cresskill -Cresson -Cresston -Cresswell -Cressy -Crest -Crest Estate -Crest Haven -Crest Hill -Crest Hollow -Crest Lake -Crest Line -Crest Maple -Crest Park -Crest Ridge -Crest View -Crest View Hill -Cresta -Cresta Vista -Crestablanca -Crestberry -Crestbrook -Crestbury -Crestdale -Crested -Crested Iris -Crested Quali -Crestedge -Crestfield -Cresthaven -Cresthill -Crestlake -Crestlan -Crestland -Crestlawn -Crestleigh -Crestline -Crestmont -Crestmoor -Crestmount -Creston -Crestone -Crestpark -Crestridge -Crestshire -Crestview -Crestview Forest -Crestwater -Crestway -Crestwood -Creswell -Creswick -Crete -Crete Hall -Crete Wood -Creton -Creukhorne -Crevenna Oak -Crew -Crewe -Crewman -Crews -Crewys -Crib -Cribari -Criccieth -Crichton -Crick -Cricket -Cricket Club -Cricket Green -Cricket Ground -Cricket Hill -Cricket Trail -Cricketers -Cricketers Arms -Cricketfield -Crickets -Crickett -Crickett Hill -Cricketwood -Cricklade -Cricklewood -Cridland -Crieff -Criers -Criffel -Crigger -Crighton -Crilley -Crillon -Crimble Clough -Crimbles -Crimbourne -Crime -Crimea -Crimmins -Crimscott -Crimson -Crimson Bay -Crimson Clover -Crimson King -Crimson Tree -Crimson Valley -Crimsworth -Crinan -Crine -Crinella -Cringle -Cringle Hall -Crio -Criol -Crippen -Cripple -Cripple Creek -Cripplebush -Cripplegate -Cripps -Cripse -Cripsey -Cris -Crisanto -Crisci -Crisfield -Crisman -Crismill -Crismore -Crisp -Crispen -Crispin -Crispmill -Crispsparkle -Crissara -Crissey -Crisswell -Crissy Field -Crist -Cristal -Cristiani -Cristich -Cristina -Cristo -Cristoforo Colombo -Cristom -Cristopher -Cristowe -Cristy -Criswell -Critchley -Critchmere -Criton -Crittall -Critten -Crittenden -Crivelli -Crivello -Cro She -Croak -Croaker -Croal -Croasdaile -Croasdale -Croatan -Croatia -Croce -Crocheron -Crockenhill -Crocker -Crocker Grove -Crocker Hill -Crocker Mansion -Crocker Pond -Crockers -Crockerton -Crocket -Crockett -Crockford -Crockford Park -Crockhamwell -Crockhurst -Crocknorth -Crocus -Crocus Hill -Croes -Croff -Croft -Croft End -Croft Gates -Croft House -Croft Regis -Croft Walk -Croftdale -Croftdown -Crofters -Crofthill -Croftland -Croftlands -Croftleigh -Crofton -Crofton Hill -Crofton Park -Crofton Valley -Croftridge -Crofts -Crofts Bank -Croghan -Crogsland -Croham Manor -Croham Park -Croham Valley -Croindene -Croissy -Croix Crest -Croixwood -Croley -Crolona Hgts -Crom -Cromar -Cromartie -Cromarty -Crombie -Cromdale -Crome -Cromer -Cromer Hyde -Cromer Villas -Cromers -Cromford -Cromhurst -Cromie -Cromley -Crommelin -Crompton -Cromwell -Cromwell Park -Crondace -Crondall -Crondon Park -Croner -Cronin -Cronks Hill -Cronshaw -Cronston -Cronulla -Crook -Crooke -Crooked -Crooked Creek -Crooked Crow -Crooked Hill -Crooked Lake -Crooked Lk Service -Crooked Meadow -Crooked Oak -Crooked Pond -Crooked Spring -Crooked Tree -Crooked Yard -Crooker -Crookfield -Crookham -Crookhill -Crooks -Crooksbury -Crookston -Croom -Croom Acres -Croom Airport -Croombs -Croot -Cropland -Cropley -Cropp -Croppers -Cropsey -Croquet -Crosby -Crosby Farm -Crosby Hill -Crosby Lake -Crosfell -Crosier -Crosland -Crosman -Croson -Cross -Cross Bank -Cross Bath -Cross Bay -Cross Belgrave -Cross Bellbrooke -Cross Bentley -Cross Bow -Cross Bridge -Cross Bridles -Cross Bronx Service -Cross Burley Lodge -Cross Catherine -Cross Chancellor -Cross Chapel -Cross Country -Cross County -Cross Creek -Cross Crown -Cross Elford -Cross Flatts -Cross Foxes -Cross Gate -Cross Gates -Cross Green -Cross Green East Busk -Cross Green Garnet -Cross Hartley -Cross Henley -Cross Hill -Cross Hills -Cross Island -Cross Kelso -Cross Lances -Cross Laurel -Cross Maude -Cross Milan -Cross Moun -Cross Myrtle -Cross Oak -Cross Oaks -Cross Ormrod -Cross Osmondthorpe -Cross Park -Cross Peel -Cross Point -Cross Quarry -Cross Queen -Cross Rail -Cross Ridge -Cross Rink -Cross Roundhay -Cross School -Cross Springs -Cross Timber -Cross Valley -Cross Westchester -Cross Woodstock -Cross Woodview -Cross York -Crossacres -Crossall -Crossbank -Crossbay -Crossbow -Crossbridge -Crossbrook -Crosscreek -Crossdale -Crossefield -Crossen -Crossfell -Crossfield -Crossford -Crossgate -Crossgates -Crosshill -Crossing -Crossing Creek -Crossings -Crosslake -Crossland -Crosslands -Crosslet -Crossley -Crossman -Crossmead -Crossmeadow -Crossoak -Crossoaks -Crosson -Crossover -Crosspike -Crosspoint -Crosspointe -Crossrail -Crossridge -Crossrip -Crossroad -Crossroads -Crossthwaite -Crosstie -Crosstitch -Crosstown -Crosstown Service -Crosstrail -Crossvalley -Crossview -Crosswaite -Crosswater -Crossway -Crossway Pinner Hill -Crossways -Crossways Anchor -Crossways Galleon -Crossways Lake -Crosswind -Crosswinds -Crosswood -Crosswoods -Croston -Crosts -Crothers -Croton -Crotona -Crotty -Crouch -Crouch Hall -Crouch House -Croucher -Crouchfield -Crouchley -Crough -Crouse -Croval -Crow -Crow Canyon -Crow Creek -Crow Green -Crow Haven -Crow Hill -Crow Nest -Crow Piece -Crow Point -Crow Pond -Crow River -Crow Trees -Crow Wood -Crowborough -Crowbridge -Crowbrook -Crowcroft -Crowden -Crowder -Crowdis -Crowe -Crowe Farm -Crowell -Crowell Farm -Crowells -Crowes -Crowfoot -Crowgey -Crowhill -Crowhurst -Crowhurst Village -Crowland -Crowlands -Crowle -Crowley -Crown -Crown Colony -Crown Commons -Crown Court -Crown Farm -Crown Fox -Crown Hill -Crown Meadow -Crown Oak -Crown Oaks -Crown Peak -Crown Point -Crown Pt -Crown Quay -Crown Ridge -Crown Royal -Crown Service -Crown View -Crown Woods -Crowndale -Crowne Hill -Crowne Oak -Crowneast -Crowner -Crownest -Crownfield -Crownhill -Crowningshield -Crowninshield -Crownpits -Crownpointe -Crownridge -Crownshield -Crownstone -Crownsville -Crowntop -Crownwood -Crows -Crows Landing -Crows Mill -Crows Nest -Crowsheath -Crowshott -Crowsley -Crowstone -Crowswood -Crowther -Crowthorn -Crowton -Croxall -Croxdale -Croxley -Croxted -Croxton -Croy -Croy Ridge -Croyde -Croyden -Croydon -Croydon Park -Croydon Barn -Croydonbarn -Croyland -Croylands -Croysdale -Croyton -Crozet -Crozier -Crucero -Crucible -Crucie -Cruden -Cruden Bay -Crudge -Cruet -Cruff -Cruft -Cruger -Cruick -Cruickshank -Cruikshank -Cruiser -Crummell -Crummock -Crump -Crumpsall -Crundale -Crunden -Crundwell -Crunson -Crusade -Crusader -Crusoe -Crutches -Crutchfield -Cruttenden -Crux -Cruz -Cryalls -Cryals -Cryder -Cryders -Cryer -Cryers Hill -Cryol -Crypt -Crystal -Crystal Airport -Crystal Bay -Crystal Cove -Crystal Creek -Crystal Glen -Crystal Glow -Crystal Grove -Crystal Heights -Crystal Hills -Crystal Lake -Crystal Lake Ranch -Crystal Palace -Crystal Palace Park -Crystal Park -Crystal Point -Crystal Pond -Crystal Ridge -Crystal Rock -Crystal Shore -Crystal Spring -Crystal Spring Farm -Crystal Springs -Crystal View -Crystalford -Crystalline -Crystalwood -Crystyl Ranch -Cuardo -Cub Run -Cub Run Park -Cuba -Cuba Hill -Cubberley -Cubbitt -Cubitt -Cubley -Cublington -Cubstream -Cucamonga -Cuciz -Cuckfield -Cuckold Point -Cuckolds Green -Cuckoo -Cuckoo Hall -Cuckoo Hill -Cuckoos -Cuckoowood -Cucumber -Cudbear -Cudd -Cuddington -Cudgee -Cudgegong -Cudham -Cudham Park -Cudworth -Cuenca -Cuerdon -Cuernavaca -Cuesta -Cufaude -Cuff -Cufflin -Cugley -Cuire -Culbert -Culbertson -Culburra -Culcheth -Culcheth Hall -Culdees -Culebra -Culet -Culet Ranch -Culford -Culgoa -Culham -Culin -Cull -Cullen -Cullens -Cullesden -Culley -Culligan -Cullinan -Cullinane -Culling -Cullingworth -Cullins -Cullivan -Cullman -Culloden -Culloden Park -Cullom -Culls -Cullum -Cully -Cullyn -Culmer -Culmington -Culmore -Culotta -Culp -Culpeper -Culpepper -Culps Hill -Culross -Culsac -Cultowa -Culver -Culverden -Culverden Park -Culverhouse -Culverley -Culvers -Culvert -Culverwell -Culworth -Culya -Culyer -Culzean -Cumbara -Cumbee -Cumber -Cumberbach -Cumberland -Cumberland Green -Cumberland Hill -Cumberlow -Cumbermeade -Cumbermere -Cumberstone -Cumberton -Cumbrae -Cumbre -Cumbria Valley -Cumley -Cumming -Cummings -Cummings Hall -Cummings Park -Cummings Point -Cummington -Cummins -Cumner -Cumnock -Cumnor -Cumora -Cumorah -Cumston -Cumulus -Cunard -Cuncliffe -Cundalls -Cundey -Cundiff -Cundy -Cuneo -Cunha -Cunliffe -Cunniff -Cunningham -Cunningham Hill -Cunningham Hole -Cunninghame -Cunnington -Cunninham -Cunnison -Cuny -Cuozzo -Cupar -Cupertino -Cupid Green -Cupola -Cupp -Curagul -Curate -Curban -Curci -Curds -Curfew -Curie -Curl -Curletto -Curlew -Curlew Camp -Curlewis -Curley -Curley Hill -Curling -Curling Pond -Curling Tye -Curls -Curlton -Curmore -Curness -Curney Court -Curragh Downs -Curragh Oaks -Currah -Curran -Currans -Currans Hill -Currant -Currants Farm -Currawang -Curraweela -Currawong -Currell -Curren -Current -Currey -Curricle -Currie -Currier -Currier And Ives -Curringa -Currong -Curry -Curry Canyon -Curry Creek -Curry Ford -Curry Powder -Currymine -Cursitor -Curson -Curt -Curtain -Curteis -Curtice -Curtice Farm -Curtier -Curtin -Curtis -Curtis Bay Pleasure -Curtis Field -Curtis Mill -Curtisden Green -Curtiss -Curtner -Curtola -Curve -Curve Crest -Curved Bridge -Curved Iron -Curvers -Curwen -Curzon -Cusack -Cushing -Cushing Hill -Cushman -Cushwa -Cusick -Custance -Custer -Custis -Custis Acres -Custis Memorial -Custom House -Custom Village -Customs House -Cut -Cut Accross -Cut Hill -Cutacre -Cutbush -Cutchogue -Cutcliffe -Cutcombe -Cutenhoe -Cutforth -Cutgate -Cuthbert -Cuthbertson -Cuthel -Cutie -Cutlass -Cutler -Cutler Farm -Cutler Heights -Cutler Hill -Cutler Ridge -Cutlers -Cutlog -Cutmore -Cutnook -Cuton Hall -Cutsyke -Cutten -Cutter -Cutter Boy Scout Camp -Cutter Hill -Cutter Ridge -Cuttermill -Cutters -Cutters Dock -Cutters Grove -Cutters Mill -Cutting -Cuttinglye -Cuttings -Cuttings Wharf -Cutts -Cuttys -Cutwater -Cutwood -Cuvier -Cuxton -Cuyahoga -Cuyler -Cuyuna -Cuzco -Cvs -Cyanamid -Cyclone -Cyclotron -Cygnet -Cygnus -Cymbal -Cymbeline -Cynron -Cynthia -Cyphers -Cypress -Cypress Bay -Cypress Beach -Cypress Branch -Cypress Cove -Cypress Creek -Cypress Garden -Cypress Green -Cypress Grove -Cypress Hill -Cypress Hills -Cypress Hollow -Cypress Landing -Cypress Neck -Cypress Peak -Cypress Point -Cypress Pointe -Cypress Ranch -Cypress Ridge -Cypress Run -Cypress Tree -Cypress Village -Cypresstree -Cyprian -Cyprus -Cyprus Cedar -Cyr -Cyrandall Valley -Cyrene -Cyress -Cyril -Cyril Magnin -Cyrus -Cyrus Field -Cyrus Heights -Czacki -Czar -Czarina -Czerkies -Czerny -D Amico -D C Training School -D Chene -D Commercial -D Evereux Circle -D Fernwood -D Gipsy -D Harehills -D J Murphy -D Leeds Infirmary -D Miller -D W Field Park -D W Field West -D. Hutchison -Da Rosa -Da Vinci -Daarle -Dabbert -Dabbs Hill -Dabel -Dabley -Dabner -Dabney -Dacca -Daccamill -Dace -Dacey -Dacia -Dacosta -Dacotah -Dacre -Dacres -Dacy -Dadant -Dade -Dadley -Dado -Daffil -Daffodil -Dafrack -Dagden -Dagenham -Dagenham Centre -Dagenham Goring -Dagger -Daggert -Daggett -Daggs Dell -Dagley -Dagmar -Dagnall -Dagnam Park -Dagnan -Dagnell -Dagnets -Dagnino -Dagwood -Dahill -Dahl -Dahlberg -Dahlen -Dahlgreen -Dahlgren -Dahlia -Dahlin -Dahlonega -Dahnerts Park -Dahomey -Daigle -Daiglen -Dail -Dailey -Daily -Daimler -Daine -Daines -Daingerfield -Dainton -Daintree -Daintry -Dainty -Daiquiri -Dairsie -Dairy -Dairy Farm -Dairy House -Dairy Lou -Dairyglen -Dairyground -Dairyherd -Dairyhouse -Dairymaid -Daisey -Daisleys -Daisy -Daisy Bank -Daisy Farm -Daisy Farms -Daisy Field -Daisy Green -Daisy Hall -Daisy Hill -Daisy Trail -Daisyfield -Daisygate -Daisyley -Daka -Dakar -Dakara -Dakarla -Dake -Daken Brook -Dakin -Daking -Dakins -Dakley -Dakota -Dakota Fields -Dakota Lakes -Dakotah -Dakyn -Dalamar -Dalbeattie -Dalberg -Dalbert -Dalbertis -Dalbury -Dalby -Dalcassia -Dalcross -Daldunn -Dale -Dale Brook -Dale Green -Dale Lodge -Dale Odell -Dale Park -Dale View -Dale Wood -Dalebrook -Dalebrooke -Dalebury -Dalecarlia -Dalegarth -Daleham -Dalehead -Dalehurst -Dalemar -Dalemeade -Dalemere -Dalen -Dales -Dales Brow -Dalesford -Daleside -Dalessi -Dalesway -Daleswood -Daleview -Dalewood -Daley -Dalgety -Dalgo -Dalham -Dalhart -Dalhouse -Dalhousie -Dali -Dalis -Dalke -Dalkeith -Dalkieth -Dall -Dall Sheep -Dallas -Dallas Ranch -Dallenbach -Dalles -Dalley -Dalleys -Dallimore -Dallin -Dalling -Dallinger -Dallington -Dallon -Dallow -Dally -Dalma -Dalmally -Dalman -Dalmar -Dalmatia -Dalmation -Dalmeny -Dalmeyer -Dalmney -Dalmore -Dalmorton -Dalny -Dalphen -Dalphin -Dalpura -Dalray -Dalroy -Dalrympl -Dalrymple -Dalston -Dalton -Daltons -Daltry -Dalveen -Dalwood -Daly -Dalyell -Dalyn -Dalys -Dalziel -Dam -Dam Head -Damascus -Damases -Damask -Dambly -Dambrosio -Dame -Dame Head -Dame Mary Gilmore -Dameelie -Damen -Dameron -Dames -Damey -Damian -Damiano -Damico -Damien -Damigos -Damin -Damish -Damon -Damon Park -Damons Point -Damour -Damper -Damphurst -Dampier -Damrell -Dams -Damsel -Damsen -Damson -Damsonwood -Damuth -Damyon -Dan -Dan Jennings -Dan Mason -Dan Patch -Dana -Dana Estates -Dana Hill -Danada -Danalan -Danbeck -Danberry -Danbridge -Danbrook -Danbury -Danbury Forest -Danby -Dancause -Dance -Dancer -Dancers -Dancers End -Dancers Hill -Dancing Bear -Dancing Dicks -Dancing Waters -Dancrest -Dancy -Dandarbong -Dandee -Dandelion -Dandenong -Dandies -Dandon -Dandy -Dane -Dane Bank -Dane Bridge -Dane End -Dane Hill -Danebridge -Danebury -Daneby -Danecourt -Danecroft -Daned -Danedale -Danefield -Danehill -Daneholme -Danehurst -Danel -Danemar -Danemere -Danenhower -Danens -Danes -Danesbury -Danesbury Park -Danescroft -Danesdale -Daneshill -Danesmoor -Danesta -Daneswood -Danethorpe -Danetree -Daneville -Danewell -Danewood -Danfield -Danford -Danford Park -Danforth -Dangan -Dangar -Dangelo -Dangerfield -Danhof -Dania -Danial -Danica -Daniel -Daniel Adamson -Daniel Cox -Daniel French -Daniel K Ludwig -Daniel Lewis -Daniel Maloney -Daniel Mccahill -Daniel Payne -Daniel Shays -Daniel Teague -Daniel Webster -Daniel Young -Danielian -Daniell -Danielle -Danielli -Daniels -Danigus -Danis -Danisher -Danita -Dankhoff -Danko -Danks -Danlee -Danley -Danmann -Danmar -Dann -Dannell -Danner -Dannet -Danns -Danny -Dannys -Dano -Danoha -Danridge -Danrose -Danroth -Dans -Dansen -Dansforth -Dansington -Danson -Dant -Dante -Dante Robles -Danthonia -Danton -Dantzic -Danube -Danver -Danvera -Danvers -Danvid -Danville -Danwood -Danworth -Danywern -Danza -Danze -Danzic -Dapdune -Daphne -Daphne Jackson -Dapifer -Daplyn -Dapper Darby -Dapple -Dapplegray -Dara -Dara James -Daraya -Darbishire -Darby -Darby Green -Darbydale -Darcelle -Darcey -Darcy -Dardanelle -Dardanelle West -Dardanelles -Dardanelli -Darden -Dardenelle -Dare -Dareen -Darek -Darel -Darell -Darenth -Darenth Park -Darenth Wood -Darerka -Dares Beach -Dares Wharf -Daresbury -Darewood -Darfield -Dargai -Dargan -Dargets -Darghan -Dargie -Dargle -Daria -Darian -Dariel -Darien -Darien Club -Darien Lakes -Darin -Darina -Darington -Dario -Darius -Dark -Dark Canyon -Dark Forest -Dark Horse Lake -Dark Neville -Darkwood -Darkwoods -Darla -Darlan -Darland -Darlands -Darlene -Darlenen -Darley -Darling -Darling Island -Darling Point -Darlinghurst -Darlings -Darlington -Darlow -Darman -Darmenia -Darmody -Darmour -Darmstadt -Darmuid Green -Darnall -Darnay -Darnby -Darnel -Darnell -Darnells Grove -Darnestown -Darnet -Darnley -Darnton -Daron -Darook Park -Darr -Darragh -Darrambal -Darras -Darrel -Darrell -Darren -Darri -Darrian -Darrick -Darrick Wood -Darrigo -Darrin -Darrington -Darrow -Darrs -Darryl -Darset -Darsha -Darsow -Dart -Dart Thru -Dartbrook -Darter -Darters -Dartford -Darthmouth -Darting Bird -Dartington -Dartley -Dartmoor -Dartmouth -Dartmouth Park -Dartnell -Dartnell Park -Darton -Daruga -Daruish -Darvall -Darvell -Darvill -Darville -Darvon -Darwell -Darwen -Darwin -Daryl -Daryngton -Dascomb -Dasea -Dasher -Dashia -Dashiell -Dashiell Hammett -Dashmere -Dashwood -Dashwood Lang -Dassance -Dassel -Dassell -Dassern -Dassett -Dassing -Data -Datchet -Datchett -Date -Dateleaf -Daten -Dater -Dato -Datoni -Datoro -Daub -Daubenbiss -Daugherty -Dault -Daulton -Daunt -Dauntesy -Dauntless -Dauntly -Dauntsey -Dauphin -Dauphine -Dauria -Dauses -Dauster -Daux -Dav -Davan -Davane -Dave -Davehall -Davelin -Daven -Davenant -Davenfield -Davenham -Davenhill -Davenport -Davenport Fold -Davenport Landing -Davenport Park -Daventer -Daventry -Davern -Daves -Davey -Davey Glen -Daveyhulme -Davi -Davian -David -David A Barry -David Brainerd -David Henderson -David Hooper -David Joseph -David Morris -David Pilgrim -David Scott -David Victoria -Davida -Davidge -Davids -Davids Island -Davidson -Davidson Mill -Davidsons Mill -Davidsons Private -Davidsonville -Davie -Davies -Daviess -Davilla -Davine -Davington -Davini -Davis -Davis Brook -Davis Farm -Davis Ford -Davis Ledge -Davis Mill -Davisfield -Davison -Davisson -Davisville -Daviswood -Davit -Davitt -Davitto -Davona -Davoren -Davos -Davron -Davy -Davy Robinson -Davyhulme -Daw -Dawe -Dawell -Dawes -Dawes East -Dawkins -Dawley -Dawlish -Dawn -Dawn Day -Dawn Fraser -Dawn Harbor -Dawn Heather -Dawn Hill -Dawn Oak -Dawn Whistle -Dawnay -Dawneys -Dawngate -Dawnlee -Dawnridge -Dawnview -Dawnwood -Dawpool -Daws Heath -Daws Hill -Dawson -Dawson Beach -Dawson Farm -Dawson Manor -Dawtrey -Day -Day Break -Day Care -Day Farm -Day Hill -Day Lillies -Day Lily -Day School -Day Spring -Day Valley -Daybreak -Daybrook -Daycroft -Dayfield -Dayflower -Daylesford -Daylight -Daylilly -Daylily -Daylong -Daylop -Dayna -Days -Days Farm -Days Inn Connecticut -Days Island -Daysailer -Daysbrook -Dayton -Dayton Herzog -Dayton River -Daytona -Daytonna -Daywalt -Db -Dd -De Anza -De Beauvoir -De Bell -De Bera -De Berg -De Bernardo -De Boer -De Bohun -De Bord -De Bow -De Broggi -De Brome -De Bruin -De Burgh -De Busch -De Camp -De Carli -De Carlo -De Castella -De Chair -De Chario -De Chene -De Cook -De Costa -De Fillipo -De Foe -De Force -De Ford -De Forest -De Fremery -De Frene -De Grasse -De Guigne -De Haro -De Hart -De Haven -De Havilland -De John -De Jong -De Korte -De Koven -De Kraft -De La Cruz -De La Salle -De Lacies -De Lasalle -De Laune -De Lauret -De Laval -De Lemos -De Leon -De Lima -De Long -De Luca -De Luci -De Lucy -De Mandeville -De Mar -De Marietta -De Mate -De Mello -De Milhau -De Mille -De Mones -De Montfort -De Morgan -De Mott -De Normandie -De Ovan -De Palma -De Pascale -De Paul -De Ponti -De Prizio -De Quincey -De Reimer -De Ronde -De Roon -De Salis -De Sanka -De Sellum -De Silva -De Solo -De Soto -De Souza -De Tamble -De Tracey -De Turk -De Vere -De Veres -De Vito -De Voe -De Walden -De Witt -De Wolf -De Young -De la Costa -De la Cruz -De la Farge -De la Guerra -De la Pena -De la Salle -DeAnza -DeBaun -DeCosta -DeFrance -DeKalb -DeLeon -DeReimer -DeSota -DeWolfe -Deacon -Deacon Haynes -Deacon Hill -Deacon Hunt -Deaconess -Deacons -Deacons Hill -Deaconsfield -Dead -Dead End -Dead Horse Canyon -Dead Run -Deadbrook -Deadfield -Deadman -Deadmans -Deadmans Ash -Deadwood -Deady -Deakin -Deakins -Deakins Hall -Deaks -Deal -Deale -Deale Beach -Deale Churchton -Dealey -Dealton -Dealtry -Dealy -Dealynn -Dean -Dean Bank -Dean Bradley -Dean Farm -Dean Head -Dean Hill -Dean House -Dean Lakes -Dean Lesher -Dean Moor -Dean Oak -Dean Park -Dean Row -Dean Ryle -Dean Trench -Dean Wood -Deancroft -Deancross -Deane -Deane Church -Deane Croft -Deaner -Deanery -Deanes -Deanfield -Deangelo -Deanhill -Deanland -Deanmar -Deanna -Deanne -Deanoak -Deans -Deans Hill -Deans Lake -Deans Rhode Hall -Deansbrook -Deanscourt -Deansgate -Deanshut -Deanswood -Deanville -Deanwood -Dearborn -Dearborn Park -Dearborne -Dearden -Deardorff -Dearfield -Dearing -Dearlove -Dearne -Dearsley -Deasy -Deauville -Deb -Debartolo -Debaun -Debbie -Debbie Hill -Debby -Debdale -Debden -Debeck -Debele -Debellevue -Debenham -Debernardi -Debes Ranch -Debevoise -Deblin -Deblois -Debmar -Debnams -Deboer -Debolt -Debonaire -Debora -Deborah -Deborah Jean -Deborah Lee -Deborah Sampson -Debord -Debow -Debra -Debrick -Debrincat -Debruin -Debruyne -Debston -Deburgh -Debutante -Decarli -Decarolous -Decathalon -Decatur -Decca -Decelle -December -Decesaris -Dechantal -Decicco -Decima -Deck -Deckard -Decker -Deckman -Declaration -Decoe -Decora -Decorah -Decota -Decoto -Decoverly -Decoy -Decoy Hill -Decree -Dedalera -Dederer -Dedham -Dedmere -Dedswell -Dedworth -Dee -Dee Jay -Deeble -Deedham -Deedie -Deeley -Deems -Deen -Deep -Deep Bottom -Deep Cliffe -Deep Cove -Deep Creek -Deep Earth -Deep Glen -Deep Gorge -Deep Haven -Deep Hollow -Deep Landing -Deep Mill -Deep River -Deep Run -Deep Spring -Deep Turn -Deep Water -Deep Well -Deep Wood -Deep Woods -Deepage -Deepbrook -Deepcar -Deepdale -Deepdene -Deepdene Park -Deepfield -Deepfields -Deepford -Deephaven -Deeping -Deepstone -Deepwater -Deepwell -Deepwood -Deepwood Farm -Deepwoods -Deer -Deer Bay -Deer Camp Fire -Deer Canyon -Deer Chase -Deer Cove -Deer Creek -Deer Creek Heights -Deer Crest -Deer Cross -Deer Field -Deer Forest -Deer Garden -Deer Grass -Deer Grove -Deer Haven -Deer High -Deer Hill -Deer Hill End -Deer Hills -Deer Hollow -Deer Isle -Deer Lake -Deer Meadow -Deer Oaks -Deer Pack Fire -Deer Park -Deer Park Fire -Deer Pass -Deer Path -Deer Point -Deer Pointe -Deer Pond -Deer Ridge -Deer Rock -Deer Run -Deer Trail -Deer Valley -Deer Water -Deerbank -Deerbarn -Deerbrook -Deerchase -Deercliff -Deercrest -Deerdale -Deerdell -Deere -Deere Park -Deerfield -Deerfield Pond -Deerfoot -Deerford -Deergrass -Deerhaven -Deerhill -Deerhurst -Deering -Deering Bay -Deering Oaks -Deerings -Deeringwood -Deerlea -Deerleap -Deernolm -Deerpark -Deerpark Meadow -Deerpath -Deerpoint -Deerpond -Deershorn -Deerslayer -Deerswood -Deerton -Deertrack -Deertrail -Deervale -Deerview -Deerwatch -Deerwater -Deerwood -Deeside -Deeves Hall -Deevon -Defence -Defender -Defense -Defford -Defiance -Defoe -Deford -Deforest -Deforrest -Defremery -Defries -Dega -Degas -Degema -Degen -Degener -Degnan -Degraw -Degray -Degroate -Dehart -Dehaven -Dehlsen -Dehne -Dehnhoff -Dehnsfield -Dehoff Canyon -Dehon -Dei -Deichmann -Deigan -Deighton -Deirdre -Deirving -Deisius -Dejarld -Dekalb -Dekay -Dekoven -Del -Del Amigo -Del Antico -Del Avion -Del Cambre -Del Camino -Del Campo -Del Canto -Del Carlo -Del Casa -Del Cerro -Del Dayo -Del Este -Del Favero -Del Franco -Del Ganado -Del Hombre -Del Lago -Del Loma -Del Luz -Del Mar -Del Medio -Del Miller -Del Mont -Del Monte -Del Monte Farms -Del Norte -Del Oceano -Del Ogier -Del Oro -Del Otero -Del Paso -Del Prado -Del Presidio -Del Prete -Del Puerto Canyon -Del Ray -Del Rey -Del Rio -Del Rio Wood -Del Rosa -Del Sol -Del Sur -Del Tren -Del Vale -Del Valle -Del Vista -Del Webb -Del Wes -Dela Park -Delabole -Delacourt -Delacy -Delafield -Delafield Island -Delaford -Delagnes -Delahays -Delaigh -Delaine -Delamare -Delamark -Delamer -Delamere -Delamont -Delancey -Delanco -Delancy -Deland -Delander -Delando -Delane -Delaney -Delange -Delano -Delanoy -Delard -Delarma -Delat -Delaunay -Delaunays -Delauneys -Delavan -Delaveaga Park -Delawanda -Delawanna -Delaware -Delbarton -Delbert -Delbooth -Delbrook -Delcastle -Delce -Delcina -Delcombe -Delcris -Delder -Deldorf -Delecta -Delehanty -Delekas -Delenty -Deleo -Delery -Delevan -Deleware -Delf -Delfield -Delfin -Delfino -Delford -Delft -Delfur -Delfzul -Delgada -Delgado -Delgarno -Delhi -Delia -Delia Walker -Delibes -Delicious -Delikat -Delisio -Delisle -Delius -Delivery -Dell -Dell Field -Dell Glen -Dell Hollow -Dell Park -Dell Wood -Della -Dellabrooke -Dellanno -Dellbow -Dellbrook -Dellcastle -Dellcot -Dellcut -Delle -Deller -Delles -Dellfield -Dellmar -Dellmead -Dellmont -Dellmore -Dellney -Dellos -Dellow -Dellows -Dellridge -Dells -Dellsome -Dellview -Dellway -Dellwood -Delma -Delmar -Delmas -Delmeade -Delmer -Delmer End -Delmonden -Delmonico -Delmont -Delmonte -Delmor -Delmore -Delna Manor -Delno -Delnor -Delnor Glen -Delo -Deloitte -Delong -Deloraine -Delorenzo -Delores -Delorey -Delorme -Delos -Deloss -Delph -Delph New -Delpha -Delphfields -Delphi -Delphia -Delphinium -Delport -Delprete -Delrey -Delridge -Delrogue -Delrose -Delside -Delsignore -Delt -Delta -Delta Breeze -Delta Fair -Delta King -Delta Queen -Delta Ranch -Delta River -Delta Wind -Deltaview -Deltawind -Delton -Deluca -Delucchi -Delve -Delverton -Delves -Delvin -Delvino -Delwick -Delwit -Delwood -Demaine -Demar -Demarco -Demarcus -Demarest -Demaret -Demarr -Demarr Homestead -Demars -Demartini -Demartino -Demauro -Demby -Demeo -Demercurio -Demerest -Demerrit -Demers -Demesne -Demeter -Demetre -Demetrius -Demeyer -Demille -Deming -Demmert -Demmings -Demmond -Democracy -Demolay -Demont -Demopolis -Demorest -Demostene -Demott -Dempsey -Dempster -Demund -Demyan -Den -Den Helder -Den Hill -Den Lee -Den Meade -Den Quarry -Dena -Denair -Denali -Denali Ridge -Denault -Denawen -Denbeigh -Denberry -Denbigh -Denbish -Denbridge -Denbrook -Denbury -Denby -Dencombe -Dene -Deneane -Deneb -Deneden -Deneholm -Denell -Denevi -Denewood -Denfield -Denford -Dengate -Denham -Denham Court -Denham Green -Denhart -Denhoff -Denholm -Denholme -Denhurst -Denicio -Denicola -Deniehy -Denim -Denin -Denio -Denis -Denis Winston -Denise -Denisen -Denison -Deniston -Denistone -Denke -Denker -Denkinger -Denley -Denlyn -Denman -Denmans -Denmar -Denmark -Denmark Hill -Denmark Hill Sunray -Denmead -Denmont -Denmore -Dennan -Denne -Denner -Denner Ranch -Denness -Dennett -Dennetts -Dennettsland -Dennil -Denning -Denninger -Dennington -Dennington Park -Dennis -Dennis F. Ryan -Dennis Loop -Dennis Martin -Dennis Point -Dennis Torricelli Sr -Dennison -Dennistoun -Denno -Denny -Dennys -Denoble -Denoncourt -Denora -Denos -Densefield -Densham -Denshaw -Denslow -Denslowe -Densmore -Denson -Denstone -Dent -Dental -Denton -Denton Court -Denton Hall Farm -Dents -Dentwood -Denver -Denverton -Denville -Denwood -Denyer -Denys -Denzil -Denziloe -Deodar -Deodara -Deoder -Deodor -Deonsire -Depan -Departed Sunset -Departures -Depaul -Depauli -Depauw -Depew -Depeyster -Depinedo -Depleach -Deposit -Depot -Depoto -Deppe -Depraitre -Depriest -Deptford -Deptford Church -Deptford Ferry -Deptford High -Depue -Deputy -Dequincey -Deramore -Deramus Farm -Deranti -Derbe -Derby -Derby Arms -Derby Farms -Derby Glen -Derby Ridge -Derbyshire -Derecho -Dereham -Derehams -Derek -Derekwood -Derfuss -Deri -Derick -Dering -Derinton -Derker -Derman -Dermody -Dermont -Dermott -Dern -Derna -Dernacourt -Dernancourt -Derne -Dernford -Dernier -Dero -Deroma -Derosier -Derowie -Derr -Derria -Derribong -Derrick -Derrick Adkins -Derrico -Derring -Derringer -Derriwong -Derrom -Derrough -Derry -Derrydown -Derryfield -Dersingham -Derussey -Derventer -Derwen -Derwent -Derwentwater -Derwin -Derwint -Derwood -Dery -Des Moines -Des Moines Memorial -Des Moulin -Des Peres -Des Plaines -Des Plaines River -DesPlaines -Desarc -Desborough -Desborough Park -Desbrosses -Descanso -Descendant -Deschenaux -Desconsado -Desdemona -Desen -Desenfans -Desepio -Deseret -Deserre -Desert -Desert Brook -Desert Flame -Desert Forest -Desert Isle -Desert Rose -Desert Willow -Desertwood -Desford -Deshler -Deshon -Design -Desimone -Desin -Desiree -Desisto -Deslie -Desmarais -Desmet -Desmond -Desmoulin -Desna -Desnoyer -Desota -Desoto -Desouter -Despard -Desplaines River -Despointes -Desrochers -Desrosiers -Desrys -Dessa -Destefano -Destiny -Desvignes -Detert -Detillens -Detjen -Detling -Detmer -Detmold -Detrick -Detroit -Dettingen -Dettmering -Detwiller -Deuce -Deusenberg -Devaney -Devas -Devcon -Deveau -Devecchi -Developers -Development -Devenill -Devenish -Devens -Dever -Deveraux -Devere -Devereaux -Deverell -Devereux -Devereux Manor -Deverill -Deveron -Devers -Deves -Deviar -Devika -Devil -Deville -Deville Estates -Devilliers -Devils -Devils Garden -Devils Reach -Devilwood -Devin -Devin Shafron -Devincent -Devine -Devir -Devita -Devitt -Devizes -Devlin -Devlins -Devoe -Devoes -Devoils -Devoke -Devon -Devon Hills -Devon Ridge -Devon Woods -Devonia -Devonian -Devonport -Devons -Devonshire -Devonshire Hill -Devonshire Park -Devonswood -Devonwood -Devore -Devotion -Devoto -Devries -Dew -Dew Grass -Dew Pond -Dew Wood -Dewald -Dewar -Dewart -Dewberry -Dewdney -Dewdrop -Dewe -Dewell -Dewerff -Dewes -Dewes Green -Dewey -Dewey Hill -Dewey Jones -Deweys Run -Dewhurst -Dewhurst Clough -Dewindt -Dewing -Dewitt -Dewlands -Dewmar -Dewolf -Dewolfe -Dewoody -Dewpoint -Dewrang -Dewsbury -Dewsbury Gate -Dewsnap -Dewson -Dewyk -Dexter -Dexters -Dey -Deyncour -Deyne -Deynes -Deyo -Dezenzo -Dharma Ridge -Di Antonio -Di Fiore -Di Giulio -Di Lusso -Di Maggio -Di Salvo -Diab -Diablo -Diablo Creek -Diablo Downs -Diablo Grande -Diablo Hills -Diablo Ranch -Diablo Shadow -Diablo View -Diablo Vista -Diadem -Diadon -Diagonal -Dial -Dial Green -Dial Park -Dialstone -Diamantina -Diamantini -Diamedes -Diameter -Diamond -Diamond Bay -Diamond Bridge -Diamond Creek -Diamond Head -Diamond Heights -Diamond Hill -Diamond K -Diamond Lake -Diamond Mill -Diamond Mountain -Diamond Oaks -Diamond Path -Diamond Peak -Diamond Point -Diamond Pointe -Diamond Ridge -Diamond Rock -Diamond Spring -Diamond Springs -Diamondback -Diamontina -Diana -Diana Maria -Diana Marie -Dianda -Diane -Dianella -Diann -Dianna -Dianne -Dianthus -Diantonio -Diary -Dias -Diauto -Diavila -Diaz -Diaz Ridge Fire -Dib -Diban -Dibble -Dibbs -Dibden -Dibdin -Dibella -Dibiase -Diblee -Dibling -Dibuono -Dicarlo -Dicastro -Dicconson -Diceland -Dicey -Dick -Dick Phelps -Dickel -Dickens -Dickens Bay -Dickenson -Dickensons -Dickerage -Dickerman -Dickerson -Dickerson Church -Dickerson School -Dickey -Dickey Lake -Dickie -Dickin -Dickins -Dickinson -Dickley -Dickman -Dicks -Dickson -Dickson Hill -Dickson Ranch -Dicksons Mill -Dicus Mill -Didio -Didmarton -Didriksen -Didrikson -Didsbury -Diecke -Dieckman -Diedrich -Diefenbach -Diego -Diehl -Diehl Farm -Diel -Diellen -Dieman -Dieninger -Diens -Dierauf -Diericx -Dierks -Dierssen -Diesel -Diessner -Dietrich -Dietz -Diffey -Diffley -Dig Dog -Digby -Digger Bend Ranch -Digger Pine -Diggers -Digges -Digges Canyon -Digging -Diggins -Diggon -Diggs -Diggs Park -Dight -Dighton -Digital -Digiulian -Diglands -Diglee -Digney -Dignon -Dignum -Digpal -Digren -Digswell -Digswell Park -Dijohn Court -Dijon -Dike -Dikeman -Dikes -Diknson Hollow -Dikran -Dilber Bay -Dilga -Diligent -Dilisio -Dilke -Dill -Dill Pointe -Dilla -Dillabough -Dillard -Dillaway -Dille -Diller -Dilleta -Dillman -Dillmont -Dillo -Dillon -Dillon Beach -Dillon Point -Dillonfield -Dillworth -Dillwynia -Dilly -Dillywood -Dilman -Dilorenzo -Dilston -Dilworth -Diman -Dimassa -Dimensions -Dimeo -Dimes -Dimick -Dimm -Dimmig -Dimmock -Dimmocks -Dimmydale -Dimock -Dimona -Dimond -Dimple -Dimsdale -Dina -Dina Beth -Dinah -Dinallo -Dinanno -Dinant Link -Dinapoli -Dind -Dine -Dineen -Dineff -Dinesh -Dinger -Dingle -Dingle Bank -Dingleden -Dingletown -Dingley -Dingley Dell -Dingwall -Dingwell -Diniz -Dinkel Spiel -Dinley -Dinmore -Dinneen -Dinny -Dino -Dinora -Dinorben -Dinosaur Point -Dinsdale -Dinsmore -Dinting -Dinton -Dinuba -Dinwiddie -Dinwoodie -Diogenes -Dion -Dione -Dionne -Dipierro -Diploma -Diplomat -Dippenhall -Dipper -Dipping Brook -Diprose -Dipsea -Dirado -Direct River -Dirker -Dirker Bank -Dirksen -Dirkshire -Dirkson -Dirleton -Dirt -Dirtham -Dirty -Disbrow -Disbrowe -Disc -Disch -Discovery -Discovery Bay -Discovery Creek -Discovery Farm -Discovery Village -Disepo -Dishforth -Dishman -Dishong -Disk -Disley -Dislingbury -Disney -Dispensary -Disposal -Disraeli -Diss -Distaff -Distel -Distillery -Distin -Distler -Distribution -Distributor -District -District Office -Ditch -Ditchburn -Ditches -Ditchfield -Ditchling -Ditchmore -Ditmar -Ditmars -Ditmas -Ditson -Dittisham -Dittman -Dittmer -Ditton -Ditton Court -Ditton Grange -Ditton Hill -Ditton Park -Dittos -Ditty -Ditzel Farm -Divac -Dive -Diven -Diversey -Diversified -Diverting Canal Levee -Dividence -Dividing -Dividing Creek -Divine -Diving Cliff -Divinity -Divisadero -Division -Divisional -Diviso -Divittorio -Divney -Divot -Dix -Dix Hills -Dixey -Dixfield -Dixie -Dixie Hill -Dixie Lou -Dixieanne -Dixmoor -Dixmude -Dixon -Dixon Landing -Dixon Park -Dixon Ridge Fire -Dixona -Dixons Hill -Dixter -Dixwell -Dixwoods -Dnieper -Dnr -Doages -Doak -Doaks -Doane -Dobb Brow -Dobbel -Dobbies -Dobbin -Dobbinets -Dobbins -Dobbs -Dobbs Ferry -Dobbs Weir -Dobcross New -Dobe -Dobell -Dobells -Dobern -Dobhill -Dobie -Doble -Doblin -Dobree -Dobrody Farm -Dobroyd -Dobson -Dobsons -Doby -Docena -Dochart Sound -Dock -Dock Approach -Dock Head -Dock Hill -Dock Hollow -Dock Pathway -Dockenfield -Dockerell -Dockers Tanner -Dockery -Docket -Dockett Eddy -Docklands -Dockley -Dockray -Docks Corner -Dockser -Dockside -Dockwra -Docs Ranch -Doctor -Doctor Belt -Doctor Bird -Doctor Bowen -Doctor David Cline -Doctor Fold -Doctor Hawkins -Doctor Paul Ware -Doctor Samuel Mudd -Doctor Walling -Doctors -Doctors Commons -Doctors Park -Docwra -Dod -Dodbrooke -Dodd -Doddinghurst -Doddington -Dodds -Doddsfield -Dodero -Dodford -Dodge -Dodge Hill -Dodge Park -Dodgewood -Dodgson -Dodhurst -Dodie -Dodon -Dodsley -Dodson -Dodsworth -Dodworth -Dody -Doe -Doe Crossing -Doe Hey -Doe Path -Doe Trail -Doeg -Doering -Doescher -Doesgate -Doeshill -Doeskin -Doewood -Dofena -Doffcocker -Doffin -Doffing -Dog -Dog Kennel -Dogan -Dogaway -Dogberry -Dogden -Dogford -Doggett -Doggetts -Doggetts Farm -Doggetts Wood -Doghurst -Dogleg -Dogue -Dogue Hill -Dogue Hollow -Dogue Run -Dogwood -Dogwood Farm -Dogwood Hills -Dogwood Park -Dogwood Tree -Doherty -Doherty Ridge -Dohertys -Dohr -Dohrman -Dohrmann -Doidge -Doig -Doire -Doker -Dolan -Dolben -Dolbrook -Dolby -Dolce -Dolcetto -Dole -Dolecetto -Doleful Pond -Dolerita -Doles -Dolesbury -Dolesden -Dolin -Dolittle -Dolland -Dollar -Dollar Fire -Dollar Mountain -Dollard -Dollarhide -Dolle -Dolley Madison -Dollinger -Dollis -Dollis Hill -Dollis Park -Dollis Valley -Dolloff -Dollond -Dolly -Dolly Cam -Dolma -Dolman -Dolomite -Dolomite Hills -Dolores -Dolorosa -Dolph -Dolphin -Dolphin Lake -Dolphine -Dolsie Grove -Dolton -Doma -Domaine -Doman -Dombey -Dome -Domenic -Domenica -Domer -Domestic -Domett -Dominga -Domingo -Dominic -Dominica -Dominican -Dominici -Dominick -Dominion -Dominion Crest -Dominion Mill -Dominion Ridge -Dominion Valley -Dominion Wood -Dominique -Domino -Dominoe -Dominque -Dominque Estates -Domitian -Domonic -Doms -Domsey -Don -Don Allen -Don Carlos -Don Carol -Don Juan -Don Julio -Don Kirk -Don Martin -Don Mills -Don Pedro -Don Ramon -Don Walden -Dona -Donachy Cove -Donahe -Donahue -Donal -Donald -Donald Allen -Donald Biggs -Donald Curtis -Donald Moor -Donalds Range -Donaldson -Donard -Donata -Donatello -Donato -Donazetti -Donbush -Doncaster -Doncastle -Doncrest -Donde -Dondi -Done -Donegal -Donegal Bay -Donegan -Donellan -Donelson -Donemowe -Donerail -Doneraile -Doneva -Dongan -Dongan Hills -Dongary -Dongola -Donig -Donington -Donisthorpe -Donkey -Donkin -Donlan -Donlea -Donleigh -Donley -Donlon -Donmar -Donmaur -Donmoor -Donmore -Donn -Donna -Donna Dean -Donna Lee -Donna Marie -Donnan -Donnas -Donne -Donnefield -Donnel -Donnell -Donnelly -Donnely -Donner -Donner Pass -Donnici -Donnings -Donnington -Donny -Donny Brook -Donny Hill -Donnybridge -Donnybrook -Donoghue -Donoho -Donohoe -Donohue -Donor -Donora -Donovan -Donovans Hill -Dons -Donsen -Donset -Donston -Donwood -Donwood Trails -Doods -Doods Park -Doody -Doogan -Doohat -Doolan -Dooley -Dooleys -Dooligah -Doolin -Dooling -Doolittle -Doomben -Doomsday -Doon -Doonan -Doone -Dooneen -Doonkuna -Doonmore -Doonside -Doorn -Doorstep -Dootson -Dopping Brook -Doppler -Dopwns -Dora -Dorac -Dorado -Dorahy -Doral -Doral Farms -Doralee -Doran -Doran Beach -Doran Park -Doranne -Dorans -Dorantes -Doray -Dorcar -Dorcas -Dorcey -Dorchester -Dorcich -Dorcis -Dorclyn -Dordans -Dorden -Dordrecht -Dore -Doree -Doreen -Dorel -Doremus -Dorena -Dorene -Dorenkemper -Dorer -Doretha -Doretta -Dorfman -Dorforth -Dori -Doria -Dorian -Doriann -Dorianna -Doric -Dorigo -Dorina -Dorincourt -Dorine -Doris -Dorisa -Dorison -Dorking -Dorlan -Dorland -Dorlcote -Dorlen -Dorling -Dorlon -Dorlton -Dorman -Dormans -Dormans High -Dormans Park -Dormas -Dormay -Dormer -Dormer’s -Dormer’s Wells -Dormidera -Dormitory -Dormity -Dormont -Dormy -Dornan -Dornberg -Dorncliff -Dorncliffe -Dornell -Dorney Wood -Dorneywood -Dornfell -Dorning -Dornoch -Dornton -Doron -Dorothea -Dorothy -Dorothy Farm -Dorothy Meeks -Dorothy Sayers -Dorothy Smith -Dorotockeys -Dorr -Dorrance -Dorrells -Dorrence -Dorrie -Dorrigo -Dorringo -Dorrington -Dorris -Dorrit -Dorritt -Dorsa -Dorsch -Dorset -Dorsetshire -Dorsett Hill -Dorsey -Dorsey Hall -Dorsey Run -Dorseymill -Dorson -Dorthel -Dorton -Dorval -Dorville -Dorwin -Dorwood -Dory -Dory Brooks -Dos Loma Vista -Dos Palos -Dos Polos -Dos Reis -Dos Rios -Doscher -Dosh -Dosoris -Doswell -Dot -Doten -Doter -Dothan -Dots -Dotson -Dotte -Dotterel -Dottielyn -Dottino -Dotty -Dotty Ann -Doty -Double Bogey -Double Dove -Double Eagle -Double Gate -Double Oak -Double R -Double Tree -Doubleday -Doublegate -Doubleland -Doublerock -Doubles -Doublet Hill -Doubletree -Doubling -Doucette -Doud -Doug -Dougal -Dougan -Dougherty -Doughty -Dougill -Douglane -Douglas -Douglas Fir -Douglas Haig -Douglas Legum -Douglas Park -Douglass -Douglyn -Douglynn -Dougmar -Doulton -Dounby -Douro -Douse -Dousman -Doust -Dove -Dove Bank -Dove Creek -Dove Dale -Dove Hill -Dove Tail -Dove Tree -Dovecoat -Dovecoate -Dovecot -Dovecote -Dovedale -Dovehouse -Doveleys -Dovelys -Dovenshire -Dover -Dover Farm -Dover Hill -Dovercliff -Dovercourt -Dovers Green -Doverton -Dovervelt -Doves -Doveston -Dovetail -Doveton -Doveville -Dovewood -Dovre -Dow -Dowanhill -Dowd -Dowdell -Dowding -Dowdle -Dowdy -Dowe -Dowel -Dowell -Dower -Dower House -Dower Village -Dowitcher -Dowkell -Dowlais -Dowland -Dowlands -Dowlans -Dowlas -Dowle -Dowlerville -Dowles -Dowlin -Dowling -Down -Down Barns -Down Court -Down Green -Down Patrick -Downbank -Downdale -Downen -Downer -Downers -Downers Grove Main -Downes -Downey -Downey Mill -Downfield -Downhall -Downham -Downham Old Bromley -Downhaul -Downhill -Downhills -Downhurst -Downie -Downieville -Downing -Downingwood -Downland -Downlands -Downley -Downmill -Downpatrick -Downs -Downs Bridge -Downs Court -Downs Hill -Downs Hill The -Downs View -Downsberry -Downsbridge -Downsell -Downsfield -Downshall -Downshaw -Downshire -Downside -Downside Bridge -Downside Common -Downsland -Downsview -Downswick -Downton -Dowrelio -Dowrey -Dowry -Dows -Dowse -Dowsett -Dowsetts -Dowsing -Dowson -Doxbury -Doxey -Doxsee -Doyce -Doyer -Doyers -Doyle -Doyle Cove -Doyle Park -Doyles -Doynton -Dozer -Dr Johnson -Dr Richard A Graham -Dr Samuel Mudd -Dracena -Dracic -Drackert -Draco -Dracut -Draeger -Draelon -Drage -Dragon -Dragon Slayers -Dragonette -Dragonfly -Dragonwyck -Dragoon -Dragor -Dragus -Drahos -Drain -Drainage -Drais -Drake -Drake Beach -Drake Park -Drake Smith Woods -Drakefell -Drakefield -Drakeford -Drakes -Drakes Bay -Drakes Beach -Drakes Cove -Drakes Landing -Drakes Summit -Drakes View -Drakewood -Dralle -Dranesville -Dransfield -Draper -Drapers -Drapkin -Drauden -Dravet -Dravus -Draw Bridge -Drawbridge -Drawfield -Drax -Dray Corner -Draycot -Draycott -Drayhorse -Drayton -Drea -Dreadnought -Dream -Dream House -Dreamwold -Dreas -Dreeme -Dreher -Dreier -Dremeday -Drendel -Drepanos -Dresden -Dresel -Dress -Dress Cricle -Dressage -Dresser -Dressington -Dressler -Dressmaker -Drever -Drew -Drew Lake -Drewery -Drewett -Drewlaine -Drewry -Drews -Drewsbury -Drewstead -Drexel -Drexelgate -Dreyer -Dreyfus -Dreyfuss -Dried Earth -Driffield -Drift -Drifter -Drifters -Driftway -Driftwood -Driggs -Drill Hall -Drillane -Drillfield -Drinkwater -Driprock -Driscol -Driscoll -Driscolls -Drisler -Drive -Driver -Drivers End -Driveway -Drivewood -Driving Park -Drogue -Drohan -Droitwich -Dromana -Dromey -Dromore -Drone -Dronfield -Drookdale -Droop -Drop -Drop Anchor -Drop Forge -Droughts -Drouin -Drove -Drover -Drovers -Drowsy -Droxford -Droyers Pointe -Droylsden -Dru -Drub -Druce -Drucilla -Drue -Druet -Druetzler -Druid -Druid Hill -Druitt -Drum -Drum Hill -Drum Point -Drumalbyn -Drumaldry -Drumard -Drumbalyn -Drumcliff -Drumelzia -Drumlea -Drumlin -Drumlin Hill -Drumm -Drummer -Drummond -Drummore -Drummoyne -Drumsheugh -Drungewick -Drury -Drusy -Dry -Dry Arch -Dry Barley -Dry Creek -Dry Creek Fork -Dry Ends -Dry Harbor -Dry Hill -Dry Hill Park -Dry Hollow -Dry Meadow -Dry Mill -Dry Ridge -Dry Run -Dry Well -Dry Yard -Dryad -Dryander -Dryberry -Dryburgh -Dryden -Drydock -Dryer -Dryfield -Dryhill -Dryhill Park -Dryhurst -Dryland -Drylands -Drymill Overlook -Drynan -Drysdale -Drystraw -Drywood -Du Bois -Du Cane -Du Cros -Du Page -Du Sault -DuBois -Dual Wide -Duane -Duar -Duardo -Duarte -Dub -Dubanski -Dubarry -Dubbo -Dubbs -Dube -Dubel -Duberstein -Dubert -Dubiel -Dublane -Dublin -Dublin Canyon -Dublin Green -Dublin Hill -Dublin Meadows -Duboce -Dubois -Dubon -Dubonet -Dubonnet -Dubons -Dubrow -Dubuque -Duby -Duca -Ducal -Duchaine -Duchamp -Ducharme -Duches -Duchesne -Duchess -Duchess of Kent -Duchin -Duchy -Ducie -Duck -Duck Cove -Duck Creek -Duck Hill -Duck Island -Duck Lake -Duck Mill -Duck Pass -Duck Plain -Duck Pond -Duck Trail -Duckend -Duckend Farm -Duckens -Ducket -Duckett -Duckettes -Duckettown -Ducketts -Duckeys Run -Duckhorn -Duckinfield -Duckling -Duckmallois -Duckmead -Duckmore -Ducks Cove -Duckshaw -Duckwood -Duckworth -Duclos -Ducros -Duda -Dudak -Dudbrook -Dudden Hill -Duddington -Duddon -Duddy -Dudley -Dudlington -Dudlow Green -Dudrow -Dudsbury -Dudset -Dudswell -Due -Duell -Duen -Duena -Duer -Duesenberg -Duet -Duff -Duffer -Dufferin -Duffet -Duffield -Duffin -Duffney -Duffus -Duffy -Duffys -Dufief -Dufief Mill -Dufour -Dufranc -Dufresne -Dufton -Dufuar -Dugald -Dugan -Dugard -Dugdale -Duggan -Duggans -Duggers -Dugie -Duglas Fir -Dugolly -Duguid -Dugway -Duhaime -Duhart -Duhig -Duiker -Dukane -Duke -Duke Humphrey -Duke of Edinburgh -Duke of Gloucester -Duke of Kent -Duke of Wellington -Duke of York -Dukefield -Dukes -Dukes Farm -Dukes Meadow -Dukes Wood -Dukesberry -Dukesbury -Dukeshill -Dukesthorpe -Dukic -Dukinfield -Dulaney -Dulany -Dulas -Dulce -Dulcey -Dulcie -Duley -Dulford -Dulgar -Dulin -Dulittle -Dulka -Dullai -Dulles -Dulles Access -Dulles Center -Dulles Corner -Dulles Technology -Dulles Toll -Dulles Town -Dully -Dulsie -Dulude -Duluth -Dulverton -Dulwich -Dulwich Plough -Dulwich Common -Dulwich Wood -Dumaine -Dumais -Dumaresq -Dumas -Dumb Womans -Dumbah -Dumbarton -Dumber -Dumble -Dumbourne -Dumbreck -Dumergue -Dumerle -Dumers -Dumfries -Dumhart -Dumke -Dummer -Dumney -Dumont -Dumoulin -Dump -Dumpford -Dumville -Dun Horse -Dun Lo -Dun Robbin -Dunalley -Dunamon -Dunand -Dunaway -Dunbar -Dunbar Oaks -Dunbarton -Dunberry -Dunbier -Dunblane -Dunboy -Dunboyne -Dunbridge -Dunbrin -Dunbrook -Dunbury -Duncan -Duncan Elder -Duncannon -Duncanson -Dunchurch -Duncklee -Duncomb -Duncombe -Duncraig -Duncrevie -Duncton High -Dundale -Dundalk -Dundar -Dundas -Dundee -Dunderave -Dundilla -Dundonald -Dune -Dune Forest -Duneba -Dunedin -Duneiden -Duneland -Dunellen -Dunelm -Dunera -Dunes -Dunes Meadows -Dunes View -Dunfey -Dunford -Dunfries -Dungannon -Dungarven -Dungates -Dungells -Dungeness -Dungeon -Dunglow -Dungrove Hill -Dunham -Dunham Trail -Dunhams -Dunhams Corner -Dunhaven -Dunheath -Dunheved -Dunhill -Dunholme -Dunibar Ridge -Dunios -Dunisch -Dunkeld -Dunkerhook -Dunkerley -Dunkerly -Dunkers Pond -Dunkery -Dunkin -Dunkirk -Dunklee -Dunkley -Dunks -Dunlace -Dunlake -Dunlap -Dunlap Ranch -Dunlay -Dunlea -Dunleavy -Dunleer -Dunleigh -Dunleigh Glen -Dunleith -Dunley -Dunlin -Dunloe -Dunloggin -Dunlop -Dunloring -Dunlow -Dunmail -Dunmar -Dunmaston -Dunmore -Dunmow -Dunmurry -Dunn -Dunn Meadow -Dunncombe -Dunne -Dunnel -Dunnell -Dunnerdale -Dunnigan -Dunning -Dunnings -Dunnington -Dunnisher -Dunniwood -Dunnock -Dunns -Dunns Hill -Dunny -Dunnymans -Dunollie -Dunoon -Dunran -Dunraven -Dunreath -Dunree -Dunrobbin -Dunrobin -Dunrossil -Dunroven Lakes -Dunrovin -Dunsany -Dunsby -Dunsdon -Dunsfold -Dunsfold Common -Dunsham -Dunshea -Dunshee -Dunshire -Dunsinane -Dunsley -Dunsmore -Dunsmuir -Dunsmure -Dunsop -Dunspring -Dunstable -Dunstaffenage -Dunstall -Dunstan -Dunstans -Dunstar -Dunstarn -Dunster -Dunsters -Dunsters Mill -Dunston -Dunsyre -Dunteachin -Dunteman -Dunton -Duntroon -Duntrune -Duntshill -Dunvegan -Dunwell -Dunwich -Dunwood -Dunwood Valley -Dunwoodie -Dunwoody -Dunworth -Dupage -Dupage Country Club -Dupahze -Dupas -Duperu -Dupont -Dupont Park -Duppas -Duppas Hill -Dupras -Dupre -Dupree -Dupuis -Duquesne -Dura -Dural -Duran -Durand -Durango -Durant -Durante -Durants -Durants Park -Durar -Durbach -Durban -Durbans -Durbar -Durbeck -Durbin -Durbyan -Durdans -Durell -Durer -Durfee -Durfold -Durford -Durgess -Durgin -Durham -Durham Ferry -Durham House -Durham Wharf -Durhamoc -Duri -Durie -Durigan -Durillo -Durkee -Durkin -Durkins -Durland -Durlaston -Durleston Park -Durley -Durling -Durlston -Durmont -Durndale -Durnell -Durness -Durnford -Durning -Durnsford -Duronia -Duroso -Durrants -Durrants Hill -Durras -Durrell -Durrington -Durrington Park -Durrow -Dursey -Dursley -Durso -Durst -Durward -Durweston -Dury -Duryea -Dusenberry -Dusharme -Dusk -Dusko -Dustan -Dustin -Dustin Young -Dustman -Duston -Dusty -Dusty Oak -Dusty Wheel -Dusty Willow -Dutch -Dutch Barn -Dutch Flat -Dutch Haven -Dutch Hill -Dutch Hollow -Dutch Lake -Dutch Mill -Dutch Ship -Dutch Slough -Dutch Tulip -Dutch Valley -Dutch Village -Dutchcap -Dutcher -Dutcher Creek -Dutchess -Dutchland -Dutchman -Dutchview -Dutoit -Dutra -Dutra Bend -Dutruc -Dutt -Dutton -Duttonwood -Duty -Duval -Duvall -Duvall Bridge -Duvall Parish -Duvan -Duvawn -Duvol -Duwane -Duwari -Dux -Dux Court -Duxburry -Duxbury -Duxford -Duxhurst -Duynecrest -Dvorak -Dwane -Dwarf -Dwars Kill -Dwas Line -Dwasline -Dwelley -Dwelly -Dwhinda -Dwight -Dwinell -Dwinnell -Dwyer -Dybeck -Dyckman -Dye -Dye House -Dyer -Dyers -Dyers Hall -Dyes -Dygal -Dyke -Dykers Farm -Dylan -Dylan Creek -Dylane -Dymchurch -Dymock -Dymoke -Dymond -Dympna -Dynamic -Dynasty -Dyne -Dyneley -Dynes -Dynes Hall -Dynevor -Dynham -Dyott -Dyre -Dyrham -Dysart -Dysdale -Dyson -Dysons -Dysonswood -Dystelegh -Dystrup -E A -E A Joseph -E Abingdon -E Acker -E Ackerman -E Adams -E Addison -E Alabama -E Albert -E Alden -E Alder -E Alexandria -E Algonquin -E Alhambra -E Allison -E Almira -E Almondbury -E Alpine -E Altgeld -E Ames -E Amsterdam -E Amy -E Anchor -E Anderson -E Annandale -E Appletree -E Arch -E Ardmore -E Ardyce -E Argyle -E Armitage -E Army Trail -E Arrowhead -E Artisan -E Ash -E Atlantic -E Atwater -E Augusta -E Austin -E Avon -E Ayres -E Aztec -E Babcock -E Baker -E Balbo -E Baldwin -E Ballpark -E Balsam -E Baltimore -E Baltusrol -E Bancroft -E Banks -E Barberry -E Barbour -E Barclay -E Barkley -E Baronet -E Barret -E Bartlett -E Base Line -E Bauer -E Bay -E Bay Front -E Bay View -E Beach -E Beam -E Beaumont -E Beaver -E Bedell -E Beech -E Beechcroft -E Beecher -E Belden -E Bell -E Belle -E Bellefonte -E Belleterre -E Bellingham -E Bellwood -E Belmont -E Bemes -E Bend -E Bentley -E Benton -E Berkley -E Berkshire -E Bernice -E Berry -E Best -E Bethpage -E Bevan -E Bexhill -E Big Horn -E Big Sand -E Bigelow -E Birch -E Birchwood -E Bissell -E Black Dog -E Blair -E Blancke -E Blodgett -E Bloomingdale -E Bluebonnet -E Bluestone -E Bode -E Booker -E Boston Post -E Boundary -E Bowen -E Braddock -E Bradford -E Bradley -E Brandis -E Brannick -E Brayton -E Brenner -E Brewster -E Briarcliff -E Briarwood -E Brighton -E Brightway -E Brinkerhoff -E Brinwood -E Brittany -E Broad -E Broadway -E Brook -E Brookdale -E Brooklawn -E Brooks -E Brookside -E Brookwood -E Brown -E Browning -E Brunswick -E Brush Hill -E Bryn Mawr -E Burke -E Burlington -E Burning Tree -E Burr -E Burr Oak -E Burville -E Bush Lake -E Business Center -E Busse -E Butterfield -E Byway -E C -E Cabot -E Calendar -E California -E Cambridge -E Camden -E Camp McDonald -E Campbell -E Candlenut -E Canterbury -E Capitol -E Carib -E Carl -E Carmans -E Carolina -E Carondelet -E Carpenter -E Carriage -E Carriageway -E Carver -E Cascade -E Case -E Cass -E Castlewood -E Catalpa -E Cayuga -E Cedar -E Cedar Lake -E Centennial -E Center -E Central -E Centre -E Century -E Chalk Point -E Chapin -E Chapman -E Charles -E Charlotte -E Cherry -E Cheryl -E Chester -E Chestnut -E Chevy Chase -E Chicago -E Chinkapin Oak -E Chippendale -E Cholo -E Church -E Circle -E Circle Hill -E Circuit -E Clarendon -E Clark -E Clear -E Clearwater -E Cleburne -E Cleveland -E Cliff -E Clifford -E Clifton -E Clinton -E Coach -E Coady -E Coddington -E Cold Mill -E Cole -E Coleman -E Colfax -E College -E Collins -E Colonial -E Colorado -E Columbia -E Columbine -E Columbus -E Comfort -E Commercial -E Como Lake -E Comstock -E Congress -E Connecticut -E Constance -E Constitution -E Conway -E Cook -E Cooper -E Coral -E Corktree -E Cortland -E Cortwood -E Cosner -E Cossitt -E Cottage -E Country -E Country Club -E Countryside -E County Line -E Course -E Court -E Courtland -E Crabtree -E Craig -E Crainmont -E Crescent -E Crest -E Crestview -E Crestwood -E Crusader -E Crystal -E Crystal Lake -E Cuba -E Cullerton -E Cumberland -E Cunningham -E Curtice -E Curtis -E Custer -E Custis -E Cuttriss -E Dallas -E Danbury -E Daniels -E Danne -E Danube -E Darryl -E Dartmoor -E Davis -E Dean -E Decatur -E Deer Park -E Deerpath -E Delgado -E Delos -E Demarest -E Demont -E Denberry -E Dennis -E Des Moines -E Devon -E Devonia -E Dewey -E Diamond Lake -E Diane -E Dickens -E Diehl -E Diversey -E Division -E Dolton -E Donegal Bay -E Dosoris -E Dover -E Dudley -E Duncan -E Dundee -E Dundee Quarter -E Dunmore -E Dunslow -E Eagle Lake -E East -E Eastman -E Edgemont -E Edgewater -E Edsall -E Edward -E Edwards -E Elder -E Elderberry -E Elgin -E Elizabeth -E Elizbeth -E Elk Grove -E Ellis -E Elm -E Elmwood -E Emerson -E Emmerson -E Erie -E Euclid -E Eureka -E Evans -E Everett -E Evergreen -E Exchange -E Fabish -E Fairfax -E Fairfield -E Fairmont -E Fairview -E Falcon -E Farmdale -E Farmgate -E Fenimore -E Fernwood -E Figurea -E Fillmore -E Firehouse -E Fish Lake -E Flake -E Flanders -E Fleet -E Flentie -E Florida -E Foch -E Folsom -E Foreman -E Forest -E Fort Lee -E Forthill -E Fortlee -E Fox -E Fox Hill -E Frances -E Francis -E Franciscan -E Frank -E Franklin -E Frederick -E Fremont -E French Lake -E Friends -E Front -E Frontage -E Frontier -E Fullerton -E Fulton -E Furnace Branch -E Gaisor -E Galena -E Garden -E Gardner -E Garfield -E Garrett -E Gartner -E Garwood -E Gate -E Gates -E Gateway -E Geneva -E George -E Georgia -E Geranium -E Gibbons -E Gibbs -E Gilbert -E Gilfillan -E Glade -E Gladys -E Glebe -E Glen -E Glen Park -E Glendale -E Glenlake -E Goebel -E Goethe -E Golden Lake -E Goldsborough -E Golf -E Golfhurst -E Goodenow -E Goodman -E Goodrich -E Gore -E Gouverneur -E Graham -E Granada -E Grand -E Grand Lake -E Granite -E Grant -E Grantley -E Granville -E Grassy Sprain -E Green -E Green Meadow -E Greenbriar -E Greenbrook -E Greenfield -E Greenleaf -E Greenway -E Greenwich -E Greenwood -E Gregory -E Grenada -E Greystone -E Grissom -E Grove -E Gun Hill -E Hackberry -E Halbert -E Halden -E Half Hollow -E Halsey -E Ham Lake -E Hamburg -E Hamilton -E Hamline Service -E Hammond -E Hampton -E Hansel -E Hansen -E Harbor -E Harding -E Hardy -E Harehills -E Harkness -E Harper -E Harriet -E Harris -E Harrison -E Hartford -E Hartsdale -E Hartshorn -E Harvest -E Harwood -E Hattendorf -E Haven -E Hawley -E Hawthorne -E Hayes -E Hazel -E Hazelwood -E Heatherlea -E Hegel -E Helen -E Hendricks -E Hennepin -E Henry -E Heron -E Hickey -E Hickory -E Higbie -E Higgins -E High -E High Point -E Highland -E Hill -E Hillcrest -E Hillgrove -E Hillside -E Hinsdale -E Hintz -E Hitchcock -E Hobart Gap -E Hoffman -E Hollywood -E Holm -E Holsman -E Home -E Homestead -E Hooker -E Hopkins -E Horseshoe -E Howard -E Howell -E Hoyt -E Hubbard -E Hudson -E Hunter -E Hunter Ridge -E Hunter Valley -E Hurley -E Huron -E Huxley -E Hyacinth -E Hyde Park -E Hydraulic -E Ida -E Idaho -E Illinois -E Indian Spring -E Indian Trl -E Indiana -E Inman -E Inwood -E Iowa -E Ironstone -E Iroquois -E Irving -E Irving Park -E Isabel -E Isabella -E Ivy -E J Conroy -E Jack -E Jackson -E Jamaica -E Janata -E Jane -E Jefferson -E Jeffery -E Jeffrey -E Jenks -E Jersey -E Jessamine -E Joan -E Joe Orr -E Joffre -E John -E Johnson -E Joliet -E Joseph -E Joyce -E Judith Ann -E Jules -E Julius -E June -E Juniper -E Kammes -E Kansas -E Kathleen -E Kendall -E Kenilworth -E Kennedy -E Kenny -E Kensington -E Kenwood -E Kerry Brook -E Kilmer -E King -E Kinney -E Kinzie -E Kissimee -E Knob Hill -E Knollwood -E Kohlman -E Krage -E Kupsch -E Lacrosse -E Lafayette -E Lafayette Frontage -E Lahon -E Lake -E Lake Cook -E Lake Harriet -E Lake Louise -E Lake Netta -E Lake Rebecca -E Lake Shore -E Lakeland -E Lakeshore -E Lakeside -E Laraway -E Larkspur -E Larry Ho -E Laurel -E Lawn -E Lawndale -E Lawrence -E Lawson -E Le Moyne -E Lee -E Leeds Infirmary -E Lemoyne -E Lenox -E Leon -E Leonard -E Leone -E Lester -E Lexington -E Liberty -E Light -E Lillian -E Lincoln -E Linden -E Lindsley -E Linwood -E Locust -E Logan -E Lombard -E Long Lake -E Lorraine -E Lottie -E Louella -E Louis -E Louise -E Lowden -E Lower Pine Lake -E Lucas -E Luray -E Luther -E Lynda -E Lyndale -E Lynden -E Lynfield -E Lynnhurst -E Lynnwood -E Lyon Farm -E Lyons -E Mac Arthur -E Macarthur -E Macon -E Madison -E Magnolia -E Mahogany -E Main -E Major -E Malibou -E Mallard -E Mallory -E Manchester -E Manor -E Maple -E Margaret -E Marie -E Marine -E Marion -E Market -E Marlboro -E Marquette -E Marshall -E Marsteller -E Martin -E Mary -E Maryland -E Mason -E Masonic View -E Maude -E Maujer -E Maxon -E Maya -E Mayfair -E Mc Eldowney -E Mc Kenny -E Mc Lean -E McClellan -E McConnell -E McLane -E Meadow -E Meadow Lake -E Meadowland -E Mechanic -E Medicine Lake -E Medill -E Melrose -E Memorial -E Memory -E Mercer -E Merchants -E Meredith -E Merle -E Merrick -E Merritt -E Michael Manor -E Michigan -E Middle -E Middlesex -E Milburn -E Mill -E Mill Valley -E Miller -E Millers -E Millpage -E Millwood -E Milton -E Mineola -E Miner -E Mineral Pond -E Minerva -E Minnehaha -E Minooka -E Mississippi -E Mitchell -E Moehling -E Mohawk -E Monee -E Monitor -E Monroe -E Montana -E Monterey -E Montgomery -E Montrose -E Moonachie -E Moore Lake -E Moreland -E Morris -E Morse -E Morton -E Mound -E Mount -E Mount Harmony -E Mount Ida -E Mount Pleasant -E Mulberry -E Mundhank -E Munz -E Myrick -E Myrtle -E Nalley -E Nap -E Naperville -E Nassau -E National -E Navajo -E Nebraska -E Neck -E Nelson -E Nerge -E Nevada -E Neville -E New -E New York -E Newbold -E Newell -E Niagara -E Nicholai -E Nichols -E Nicollet -E Nolcrest -E Norfolk -E Norlander -E Norman -E Normandy -E North -E North Broadway -E North End -E North Frontage -E North Water -E Northfield -E Norwood -E Notre Dame -E Oak -E Oak Glenn -E Oak Hill -E Oakdale -E Oakdene -E Oakridge -E Oaks -E Oaksbury -E Oakton -E Oakview -E Oakwood -E Oasis Service -E Ocean -E Oceanside -E Offner -E Ogden -E Ohio -E Old Bridge -E Old Country -E Old Elm -E Old Hicks -E Old Mill -E Old Pine Bluff -E Old Post -E Old Ridge -E Old Shakopee -E Old White Plains -E Old Willow -E Olde Virginia -E Olive -E Oltendorf -E Oneida -E Onwentsia -E Orange -E Orchard -E Ordnance -E Oriole -E Osage -E Oxford -E Pacific -E Paddock -E Page -E Palatine -E Palisade -E Palisades -E Palmer -E Parallel -E Park -E Parkhill -E Parkside -E Parkview -E Pasadena -E Passaic -E Patapsco -E Patten -E Patton -E Payne -E Peachtree -E Pearl -E Pearson -E Peddie -E Peiffer -E Penn -E Pennington -E Pennsylvania -E Penny -E Pennywood -E Perkal -E Perkiomen -E Pershing -E Pettit -E Phillip -E Phillips -E Pierce -E Pierrepont -E Pine -E Pine Bluff -E Plainfield -E Plate -E Pleasant -E Pleasant Lake -E Pleasantview -E Plum -E Plum Tree -E Plymouth -E Point -E Pomeroy -E Pontiac -E Pool -E Poplar -E Port -E Porter -E Portland -E Ports O Call -E Ports of Call -E Post -E Potomac -E Potter -E Prairie -E Prairie Brook -E Pratt -E Price -E Prince -E Priscilla -E Private -E Progress -E Prospect -E Pt Douglas -E Pulaski -E Quackenbush -E Quincy -E Railroad -E Railway -E Rana -E Ranch -E Rand -E Randolph -E Randville -E Raven -E Raymond -E Reader -E Reading -E Reaney -E Red Coat -E Red Oak -E Redwood -E Reed -E Regal -E Reichert -E Research Center -E Reynolds -E Richard -E Richards -E Rickard -E Ridge -E Ridgefield -E Ridgewood -E Rietveld -E River -E Riverside -E Riviera -E Roberta -E Robie -E Rock Ridge -E Rockaway -E Rockland -E Rockwell -E Roland -E Rondeau Lake -E Roosevelt -E Rose -E Roselle -E Rosemont -E Rosita -E Ross -E Royal Ridge -E Ruby -E Runyon -E Russell -E Saddle Back -E Saddle River -E Saint Andrews -E Saint Charles -E Saint Georges -E Salem -E Saltaire -E Sanborn -E Sanctuary -E Sanders -E Sandpiper -E Santa Barbara -E Savannah -E Sayles -E Schaumburg -E Schick -E Schiller -E School -E Schoolhouse -E Schubert -E Scott -E Scranton -E Seacrest -E Seagrove -E Seaman -E Sedwick -E Seminary -E Service -E Severn Ridge -E Shadow Lake -E Shady Oaks -E Shag Bark -E Shannon -E Shaw -E Shawnee -E Sheffield -E Shelby -E Shelley -E Sheridan -E Sherman -E Sherrill -E Sherwood -E Shirley -E Shore -E Short -E Shoshone -E Side -E Sidney -E Sims -E Sioux Vista -E Sitka -E Skillman -E Skokie -E Slade -E Slayton -E Slope -E Smith -E Soffel -E Somerset -E Somonauk -E South -E South Branch -E South Broadway -E South Frontage -E Spencer -E Spring -E Spring Valley -E Springbrook -E Springhill -E Spruce -E Suburban -E Suffield -E Summer -E Summit -E Sumner -E Sunnyside -E Sunnyslope -E Sunset -E Superior -E Surf -E Surrey -E Susan -E Swain -E Swan -E Sycamore -E Sydney -E Sylvan -E Taft -E Talbot -E Tall Oaks -E Tano -E Tantallon -E Tappen -E Taylor -E Teal -E Techny -E Terra Cotta -E Terrace -E Terresa -E Terry -E Thayer -E Thomas -E Thompson -E Thorman -E Thorn -E Thorndale -E Timbercreek -E Tower -E Townline -E Traube -E Tremont -E Tryon -E Turner -E Turtle -E Twin -E Tyler -E Udall -E Uhler -E Union -E University -E Upland -E Utica -E Valencia -E Vallette -E Valley -E Valleyview -E Van Buren -E Van Emmon -E Van Ness -E Vargo -E Vera -E Vermillion -E Vermont -E Veterans -E Victoria -E View -E Viking -E Villa -E Village -E Virginia -E Voss -E Wakefield -E Waldron -E Wallace -E Wallum Lake -E Walnut -E Warburton -E Ward -E Warren -E Warwick -E Washington -E Water -E Waterside -E Waverly -E Weaver -E Webster -E Wells -E Wellwood -E Wend -E Wesley -E West -E West Shady Side -E Westleigh -E Westminster -E Wheelock -E Whispering Oaks -E White Water -E Wildwood -E Wilhelm -E William -E William Tell -E Williams -E Williston -E Willow -E Wilson -E Winant -E Winchester -E Windsor -E Wing -E Winifred -E Winthrop -E Wisconsin -E Wise -E Witchie -E Witchwood -E Wood -E Wood Duck -E Woodbine -E Woodcrest -E Woodland -E Woodlawn -E Woodman -E Woodridge -E Woodrow -E Woods -E Woodside -E Woodstock -E Worth -E Wrightwood -E Wyngate -E Wynstone -E York -E Yuma -E Zarley -E Zinnia -E Zoller -E Zoranne -E del Ray -E la Porte -E. Chicago -E. Market -E.Sylvestris -Eacham -Eachann -Eade -Eades -Eadington -Eads -Eafield -Eagan -Eagan Industrial -Eagan Oaks -Eagan Woods -Eagandale -Eagar -Eager -Eagle -Eagle Bay -Eagle Bluff -Eagle Brook -Eagle Chase -Eagle Creek -Eagle Crest -Eagle Gap -Eagle Harbor -Eagle Head -Eagle Hill -Eagle Knolls -Eagle Lake -Eagle Landing -Eagle N -Eagle Nest -Eagle Park -Eagle Peak -Eagle Point -Eagle Ridge -Eagle Rim -Eagle Rock -Eagle Rock Hill -Eagle Springs -Eagle Tavern -Eagle Trace -Eagle Tree -Eagle Vale -Eagle Valley -Eagle View -Eagle Vista -Eagle Wharf -Eaglecroft -Eaglehawk -Eaglehead -Eaglehurst -Eaglepoint -Eagleridge -Eagles -Eagles Mere -Eagles Nest -Eagles Notch -Eagles Roost -Eagles Run -Eagles View -Eaglesfield -Eagleshore -Eagleton -Eagleview -Eaglewing -Eaglewood -Eagley -Eagrett -Eaker -Eakins -Ealand -Ealing -Ealing on Duxbury -Eames -Eamont -Eardley -Earhart -Earhart Dam -Earl -Earl Howe -Earl Iliff -Earl Mountbatten -Earl Sullivan -Earl of Chester -Earlander -Earldom -Earle -Earle Brown -Earle Ovington -Earle Shores -Earlehurst -Earleigh Heights -Earleigh Woods -Earlena -Earlene -Earles -Earley -Earley Hill -Earlham -Earls -Earls Colne -Earls Hall -Earlsbrook -Earlsfield -Earlsford -Earlsgate -Earlsmead -Earlsmere -Earlsthorpe -Earlstoke -Earlston -Earlswood -Earlsworth -Earlwood -Earlwoode -Early -Early Autumn -Early Glow -Early Morning -Early Oaks -Early Times -Earlybird -Earlynn -Earnell -Earnest -Earnestine -Earnscliff -Earnshaw -Earsby -Earth -Earth Flower -Easby -Eascote -Easebourne -Easecrest -Easedale -Easel -Easement -Eashing -Easie -Easington -Easley -Eason -East -East A -East Abbey -East Ac -East Access -East Acton -East Acton Brunel -East Ad -East Adams -East Agua Caliente -East Ahwanee -East Airway -East Alameda -East Albion -East Aldea -East Alden -East Alder -East Algonquin -East Allendale -East Allison -East Alma -East Aloha -East Altarinda -East Amhurst -East Anderson -East Angela -East Angus -East Anza -East Arbor -East Arbour -East Arques -East Ashland -East Ashley -East Atherton -East Atlantic -East Augusta -East Austin Creek -East B -East Bacon -East Bagwell -East Baker -East Balbo -East Baldwin -East Banbury -East Bare Hill -East Barnet -East Bath -East Battery -East Battles -East Bay -East Bayshore -East Beach -East Beachwood -East Beamer -East Beech -East Beeches -East Bel Mar -East Belcher -East Bell -East Bellevue -East Bend -East Benjamin Holt -East Berkeley -East Berkley -East Berna -East Bianchi -East Bidwell -East Bird -East Black Oak -East Blaine -East Blair -East Blithedale -East Bolton -East Bond -East Bonness -East Border -East Boscobel -East Boston -East Boundary -East Boxford -East Branch -East Bridge -East Bridgewater -East Broadway -East Brockman -East Brokaw -East Bronte -East Brook -East Brookline -East Brookwood -East Brunswick -East Buchanan -East Bulfinch -East Burnham -East Burnside -East Busk -East C -East Calaveras -East Calhoun -East California -East Campbell -East Campus -East Canton -East Canyon -East Canyon View -East Capitol -East Cardinal -East Caribbean -East Carlo -East Carol -East Carriage -East Carroll -East Cascade -East Castro Valley -East Cavendish -East Cavour -East Cemetery -East Center -East Central -East Centry -East Channel -East Charles -East Charleston -East Charlotte -East Cherry -East Chestnut -East Chevin -East Chiles -East Church -East Cintura -East Clarendon -East Clay -East Claydon -East Cliff -East Coast -East Colfax -East College -East Collins -East Colorado -East Columbia -East Comfort -East Commercial -East Common -East Como -East Concord -East Congress Plaza -East Conley -East Cornell -East Corning -East Cotati -East Country Club -East Court -East Cove -East Covell -East Coyote Creek -East Creek -East Crescent -East Crockett -East Crooked Hill -East Cross -East Curtis -East Cypress -East D -East Dalton -East Dam -East Dana -East Danbury -East Dartmouth -East Davis -East Dedham -East Dellridge -East Dene -East Denver -East Deodara -East Devon -East Diamond -East Diane -East Division -East Downs -East Duane -East Duck Lees -East Dulwich -East Dundee -East Dunne -East Dunstable -East Durant -East E -East Eagle -East Eaglewood -East East -East Eastman -East Eastview -East Echo Lake -East Edgar -East Edith -East Edmundson -East Edwards -East Eight Mile -East Eighth -East Elbrook -East Elm -East Elmwood -East Emerson -East Empire -East End -East Englewood -East Estates -East Euclid -East Eugene -East Evans -East Evelyn -East Evergreen -East F -East Fabyan -East Fairfax -East Fairfield -East Fairview -East Falcon -East Fawn -East Ferdinand -East Ferndale -East Ferry -East Field -East Field Service -East Fifth -East Fir -East First -East Flexford -East Foothill -East Foppiano -East Fordham -East Foreman -East Forest Lake -East Forks -East Fosket -East Foster -East Foster Island -East Fourth -East Foxboro -East Francis -East Franklin -East Frederick -East Fremont -East French Camp -East Frisbee -East Front -East Frontage -East Fulton -East Furman -East G -East Galena -East Galer -East Galin -East Garfield -East Gary -East Gate -East Geary -East Geneva -East George -East Gibson -East Gilbert -East Gish -East Glen -East Glencoe -East Gnarled Oak -East Golf -East Gordon -East Gowe -East Grace -East Grand -East Grange -East Grant Line -East Greystone -East Grinstead -East Grove -East Gude -East Guernsey -East Gum -East Gun Hill -East H -East Hacienda -East Haight -East Hall -East Hamilton -East Hamlin -East Hammer -East Hampton -East Handel -East Hanningfield -East Harding -East Harney -East Harper -East Harris -East Harrison -East Harting -East Harvest -East Harwood -East Haven -East Hawthorne -East Hayden Lake -East Haydon -East Hazelton -East Heath -East Hedding -East Helen -East Hemlock -East Hendy -East Hennepin -East Henning -East Higgins -East High -East Highland -East Hildreth -East Hill -East Hill Alma -East Hillcrest -East Hills -East Hillsdale -East Hilton -East Hirsch -East Hoe -East Hogan -East Holly -East Hollywood -East Home -East Homestead -East Hopkins -East Horner -East Hospital -East Houston -East Howard -East Howe -East Howell -East Hoyle -East Humboldt -East Hurd -East Hurlbut -East Huron -East I -East Iberia -East Ike Crow -East Illinois -East India Dock -East Ingram -East Interlaken -East Interurban -East Iowa -East Iris -East Irving Park -East J -East Jack London -East Jack Tone -East Jackson -East Jahant -East James -East Jamestown -East Java -East Jefferson -East John -East Jonathan -East Jonquil -East Juana -East Julian -East Juniper -East K -East Kavanagh -East Kelly -East Kendall -East Kenilworth -East Kennedy -East Kensington -East Kent -East Kentucky -East Kenyon -East Kettleman -East Keystone -East Kimber -East Kimberly -East King -East Kingfisher -East Kingsbridge -East Kingsley -East Kingston -East Kirke -East Kirschenman -East Kitson -East Knoll -East Krell -East Lafayette -East Laguna -East Lake -East Lake Kayak -East Lake Shore -East Lake Washington -East Lakeshore -East Lancashire -East Lancaster -East Lanram -East Larkspur -East Las Palmas -East Latimer -East Laurel -East Laurel Creek -East Laurin -East Lawn -East Lawrence -East Le Moyne -East Lee -East Leeds Link -East Leigh -East Leland -East Lenox -East Levee -East Lewelling -East Lewis -East Lincoln -East Linden Church -East Linden Orchard -East Lindsay -East Linne -East Live Oak -East Lockeford -East Locust -East Lodge -East Lodi -East Lomond -East Long Barn -East Longfellow -East Longview -East Lonnquist -East Loomis -East Loop -East Lorenzen -East Loretta -East Los Felis -East Lost Lake -East Lothrop -East Louisa -East Louise -East Lousia -East Lowe -East Lowell -East Lubell -East Lynch -East Lynn -East M -East Macarthur -East Madill -East Madison -East Magnolia -East Mahwah -East Main -East Mall -East Mallory -East Manor -East Manzanita -East Maple -East March -East Marion -East Mariposa -East Market -East Marsh -East Marshall -East Mascalls -East Mathews -East Maude -East Mayes -East Mayfair -East Mc Gilvra -East Mc Graw -East Mc Kenzie -East Mc Mullin -East McAllen -East McGlincey -East Meadow -East Mearn -East Meeker -East Mehrten -East Melbourne -East Mendocino -East Meon -East Mercer -East Mercer Highland -East Merrimack -East Messick -East Michigan -East Middle -East Middlefield -East Midland -East Milgeo -East Militia Heights -East Mill -East Millbrae -East Miller -East Millwood -East Milton -East Miner -East Mission -East Mistletoe -East Mockingbird -East Moltke -East Moncure -East Monroe -East Montara -East Monte Vista -East Monterey -East Moor -East Morada -East Morris -East Morrison -East Morse -East Mount -East Mount Diablo -East Mozart -East Munford -East Munro -East Myrtle -East N -East Napa -East Nash -East Natoma -East Nauraushaun -East Nerge -East New York -East Newton -East Nichols -East Nile -East Nilsson -East Ninth -East Noble -East North -East Novak -East Noyes -East Nulty -East Nursery -East O -East Oak -East Oaksbury -East Oakton -East Oakview -East Oakwood -East Ohio -East Old Barn -East Old Greenville -East Olive -East Olivera -East Ontario -East Orchard -East Ordnance -East Ordsall -East Orford -East Orwood -East Otis -East Pacific -East Palatine -East Palm -East Park -East Park Farm -East Park View -East Parkdale -East Passaic -East Patrol -East Patterson -East Peach -East Pearl -East Peltier -East Penn -East Pennsylvania -East Perimeter -East Perrin -East Pescadero -East Phillips -East Pickwick -East Pike -East Pine -East Plain -East Plateau -East Plumeria -East Point -East Ponce de Leon -East Pond -East Poplar -East Port -East Portola -East Poultry -East Power -East Prairie -East Princeton -East Prospect -East Prouty -East Purchase -East Putnam -East Quarry -East Quashnick -East Quinobequin -East Railroad -East Raleigh -East Ramapo -East Ranch -East Rancho Arroyo -East Rand -East Rand Grove -East Randolph -East Realty -East Redwood -East Reed -East Regal -East Reitze -East Remington -East Republican -East Rianda -East Richardson -East Richmond -East Ridge -East Ridgecrest -East Riding -East Rincon -East Ringwood -East River -East Riverside -East Riverview -East Roanoke -East Robert -East Robertson -East Robinhood -East Robles -East Rockwell -East Rollins -East Ronald -East Roosevelt -East Rose -East Rosemary -East Roy -East Ruby -East Ruby Hill -East Rutherford -East Ryer -East Saddle River -East Saint Charles -East Saint James -East Saint John -East Salt -East San Antonio -East San Bruno -East San Carlos -East San Fernando -East San Martin -East San Salvador -East Sandalwood -East Sandralee -East Santa Clara -East Santa Fe -East Santa Inez -East Santos -East Sargent -East Scenic -East School -East Schoolhouse -East Schuyler -East Scotts -East Seaview -East Second -East Section -East Seegers -East Selby -East Seneca -East Serenity -East Service -East Seventh -East Shady -East Shalford -East Shea -East Sheen -East Shelby -East Sheppard -East Sherman -East Shiloh -East Shore -East Shoreview -East Shorewood -East Side -East Sidney -East Sierra -East Sigwalt -East Sikorsky -East Sixth -East Slope -East Smith -East Soda Rock -East Sola -East Sonoma -East Sonora -East South -East South Water -East Southgate -East Southland -East Spain -East Spiess -East Spring -East Spruce -East Squantum -East Sst -East Sunnyoaks -East Sunnyslope -East Sunset -East Superior -East Sutter -East Sutton -East Swain -East Sylvester -East T -East Tabor -East Tacoma -East Taron -East Tasman -East Taylor -East Tazewell -East Tehama -East Temperance -East Temple -East Tennessee -East Tennys -East Tenter -East Terrace -East Thacker -East Third -East Thomas -East Thomas Grade -East Thomson -East Thorndale -East Thornwood -East Thurman -East Thurrock -East Tiffany -East Tilbury -East Titus -East Tobacco -East Todd -East Tokay -East Tokay Colony -East Touhy -East Town Line -East Towne -East Travis -East Tregallas -East Tremont -East Trident -East Trimble -East Tripps Run -East Underwood -East Union -East University -East Utah -East Vail -East Valley -East Van Buren -East Vanston -East Verdon -East Veritas -East Vernon -East Victor -East Victoria -East View -East Vine -East Vineland -East Vineyard -East Virginia -East Vista -East Vivian -East Wacker -East Walnut -East Ward -East Warren -East Washington -East Water -East Watmaugh -East Wayne -East Weald -East Weddell -East West -East Wetmore -East Whipley -East White Oak -East Whitehouse -East Whittier -East Wilchard -East Wildcat Canyon -East William -East Williamsburg -East Williston -East Willow -East Wilmette -East Wilson -East Wiltse -East Winery -East Wood -East Woodbridge -East Woodbury -East Woodcliffe -East Woodfield -East Woods -East Woodson -East Woodward -East Worcester -East Worth -East Wyandotte -East Wyman -East Wyoming -East Yokuts -East Yolo Levee -East Yorkshire -East Younger -East Zayante -East el Campo -East el Macero -East la Chiquita -East la Mesa -EastField -Eastbank -Eastbluff -Eastbourne -Eastbournia -Eastbrook -Eastbrooke -Eastburn -Eastbury -Eastcastle -Eastchester -Eastchester – Dyre -Eastchurch -Eastcliff -Eastcliffe -Eastcombe -Eastcote -Eastcourt -Eastcrest -Eastcroft -Eastdale -Eastdean -Eastdene -Easteds -Eastend -Eastentry -Easter -Easterby -Easterford -Easterley -Easterly -Eastern -Eastern Arterial -Eastern Creek -Eastern Crest -Eastern Heights -Eastern Marketplace -Eastern Perimeter -Eastern Point -Eastertown -Eastfield -Eastfields -Eastford -Eastgate -Eastgate View -Eastgrove -Eastham -Easthampstead -Easthaven -Eastheath -Easthill -Eastholme -Easthorpe -Eastin -Eastlake -Eastland -Eastlands -Eastlawn -Eastlea -Eastleigh -Eastlewood -Eastlick -Eastline -Eastling -Eastman -Eastman Lake -Eastmans -Eastmont -Eastmoor -Eastmoreland -Eastmount -Eastney -Eastnor -Easton -Easton North -Eastover -Eastpine -Eastport -Eastridge -Eastrop -Eastry -Eastshire -Eastshore -Eastside -Eastus -Eastview -Eastview Farm -Eastville -Eastward -Eastway -Eastwick -Eastwick Hall -Eastwick Park -Eastwind -Eastwood -Eastwood Old -Eastwood Park -Eastwood Village -Eastwoodbury -Eastwoods -Eastworth -Easum -Easy -Eather -Eatington -Eatkart -Eaton -Eaton Bray -Eaton Green -Eaton Landing -Eaton Park -Eaton Valley -Eatonia -Eatons -Eatons Neck -Eaves -Eaves Knoll -Eba -Ebano -Ebb -Ebb Tide -Ebberns -Ebberstone -Ebbertaft -Ebbesen -Ebbett -Ebbetts -Ebbetts Pass -Ebbisham -Ebbitts -Ebbsfleet -Ebbtide -Ebden -Ebe -Eben -Ebener -Ebenezer -Ebensburg -Ebenzer -Eberhard -Eberhardt -Eberhart -Eberlin -Eberly -Ebersbach -Ebert -Eberts -Eberwein -Ebey -Ebken -Ebley -Ebner -Ebony -Ebor -Ebrington -Ebro -Ebsworth -Eburne -Ebury -Ebury Bridge -Eby -Eccles -Eccles New -Eccles Old -Ecclesbourne -Ecclesbridge -Ecclesburn -Eccleshall -Eccleston -Ecclestone -Eccup -Eccups -Echelforde -Echo -Echo Barn -Echo Bay -Echo Bridge -Echo Cove -Echo Glen -Echo Grove -Echo Hill -Echo Hills -Echo Knolls -Echo Lake -Echo Park -Echo Pit -Echo Point -Echo Ridge -Echo Springs -Echo Square Sun -Echo Summit -Echo Valley -Echo Woods -Echols -Echunga -Eckberg -Eckbo -Eckel -Ecker -Eckersley -Eckersley Fold -Eckerson -Eckert -Eckert Farm -Eckford -Eckhart -Eckles -Eckley -Eckmoor -Eckstein -Eclipse -Ecole -Ecology -Ecton -Ector -Ed Bossert -Ed Finn -Ed McDashowicz -Ed Prout -Ed Rau -Edale -Edan -Edbrooke -Edcris -Eddel -Eddeys -Eddie -Eddinger -Eddington -Eddisbury -Eddiscombe -Eddisford -Eddison -Eddiwick -Edds -Eddy -Eddyspark -Eddystone -Ede -Edel -Edelblut -Edelen -Edelin -Edelmar -Edelton -Edelweiss -Eden -Eden Bower -Eden Bridge -Eden Brook -Eden Canyon -Eden Glen -Eden Grove -Eden Landing -Eden Oaks -Eden Park -Eden Plains -Eden Prairie -Eden Roc -Eden Rock -Eden Shores -Eden View -Eden West -Edenbank -Edenberry -Edenborough -Edenbridge -Edenbury -Edencourt -Edencrest -Edendale -Edenderry -Edenfield -Edenhall -Edenholme -Edenhurst -Edenlee -Edenmoor -Edensor -Edentenny -Edenton -Edenvale -Edenview -Edenville -Edenwood -Eder -Eder Ct -Ederline -Ederoyd -Edes -Edfeldt -Edgar -Edgar A Poe -Edgar Buggy -Edgars -Edgartown -Edgbaston -Edgcumbe -Edgcumbe Park -Edge -Edge Creek -Edge Field -Edge Fold -Edge Hill -Edge Lake -Edge Rock -Edge View -Edgebank -Edgeboro -Edgebrook -Edgebrooke -Edgecliff -Edgecliffe -Edgecomb -Edgecombe -Edgecome -Edgecote -Edgecott -Edgecourt -Edgecreek -Edgecrest -Edgecroft -Edgecumbe -Edgedale -Edgefield -Edgegate -Edgegrove -Edgehill -Edgel -Edgelawn -Edgelea -Edgeley -Edgell -Edgemar -Edgemeade -Edgemere -Edgemere Park -Edgemont -Edgemoor -Edgemore -Edgemount -Edgepark -Edgerly -Edgerton -Edgevale -Edgeview -Edgeware -Edgewarebury -Edgewater -Edgewater Place -Edgewater Pond -Edgewick -Edgewold -Edgewood -Edgewood Glen -Edgewood Hills -Edgeworth -Edgeworth David -Edgington -Edgrace -Edgware -Edgwarebury -Edi -Edice -Edie -Edilom -Edin Garth -Edina -Edina Industrial -Edinboro -Edinbrook -Edinburg -Edinburgh -Edinger -Edington -Edis -Edison -Edison Park -Edith -Edith Holmes -Edith Patch -Edith Sherman -Edithna -Editors Park -Ediva -Edlee -Edlin -Edlington -Edloe -Edlys -Edman -Edmands -Edmar -Edminton -Edmond -Edmonds -Edmondson -Edmons -Edmonston -Edmonton -Edmore -Edmund -Edmund Beaufort -Edmund Corrigan -Edmund Halley -Edmund Hock -Edmund Hurst -Edmunds -Edmunton -Edna -Ednor -Edoka -Edpas -Edquiba -Edric -Edrich -Edrick -Edridge -Edsall -Edscho -Edsel -Edson -Edstan -Edstone -Education -Educational Park -Edulf -Edwall -Edward -Edward Barron -Edward Bennett -Edward Bentley -Edward Charlton -Edward Cody -Edward Cul de Sac -Edward Edgar -Edward Foster -Edward H Ross -Edward Hart -Edward II -Edward Kelleher -Edward S Harrison -Edward Temme -Edwardel -Edwardene -Edwards -Edwards Bay -Edwards Ferry -Edwards Point -Edwards Rancho -Edwardson -Edwin -Edwin C Weiskopf -Edwin Flack -Edwin H. Land -Edwin Markham -Edwin Raynor -Edwina -Edwins Hall -Edwrads -Edythe -Ee -Eel -Eelmoor -Eelmoor Plain -Eerawy -Effey -Effie -Effies -Effingham -Effingham Common -Effington -Efford -Effort -Effra -Effress -Effron -Efner -Egan -Egandale -Eganey -Egard -Egbert -Egbert Hill -Egdon -Ege -Egel -Egerszegi -Egerton -Egerton Green -Egerton House -Egg Farm -Egg Pie -Egg Ranch -Eggar Woods -Eggelston -Eggers -Eggert -Eggington -Eggleson -Eggleston -Eggleton -Egham -Eghams Wood -Egidi -Eglantine -Egleston -Egley -Eglin -Eglington -Eglinton -Eglise -Egliston -Egmont -Egmontt Park -Egolf -Egremont -Egret -Egypt -Egypt Beach -Egyptian -Ehle -Ehlen -Ehlers -Ehlinger -Ehrbar -Ehret -Ehrhardt -Ehrhorn -Eich -Eichenwald -Eicher -Eichler -Eichten -Eider -Eiffel -Eiger -Eight -Eight Acre -Eight Lots -Eight Rod -Eighteen Acre -Eighteenth -Eighth -Eightlands -Eightpenny -Eigleberry -Eigth -Eike -Eildon -Eileen -Eilene -Eiler -Eilers -Eilerson -Eillimatta -Eilliot -Eilmatta -Eimer -Einfield -Einhorn -Eire -Eischens -Eiseman -Eisenbeisz -Eisenhower -Eisner -Eisnor -Eitel -Eith -Eith High -Ekala -Ekberg -Ekings -Ekins -Eklund -Ekman -Eknes -Ekstrand -El Alamein -El Arroyo -El Balcon -El Bonita -El Bonito -El Bosque -El Cajon -El Cameno -El Camille -El Caminito -El Camino -El Camino Medio -El Camino Plaza -El Campo -El Caney -El Capitan -El Caprice -El Carlo -El Carmelo -El Cemonte -El Centro -El Cerrito -El Cerro -El Charro -El Chorlito -El Cid -El Cimino -El Cortez -El Crystal -El Curtola -El Divisadero -El Dorado -El Dorado Beach Club -El Dorado Hills -El Dorado Turn -El Dori -El Douro -El Encanto -El Faisan -El Fresco -El Gato -El Granada -El Grande -El Greco -El Invierno -El James -El Lago -El Lisa -El Macero -El Manto -El Matador -El Mercado -El Mirador -El Modena -El Molino -El Monte -El Moro -El Morro -El Nido -El Nido Ranch -El Oro -El Oro Plaza -El Oso -El Padro -El Paraiso -El Paseo -El Paso -El Patio -El Pinal -El Pintado -El Pintado Heights -El Pinto -El Portal -El Porto -El Portola -El Prado -El Pueblo -El Quanito -El Rancho -El Rancho Verde -El Refugio -El Reno -El Rey -El Rincon -El Rio -El Rose -El Salto -El San -El Sanjon -El Segundo -El Sereno -El Sobrante -El Solyo -El Solyo Heights -El Sombroso -El Suyo -El Terraza -El Toro -El Vanada -El Verand -El Verano -El Vista -El Zuparko -Ela -Elacqua -Elaine -Elam -Elan -Elan Village -Eland -Elanora -Elario -Elayne -Elba -Elbe -Elberon -Elbert -Elberta -Elbertson -Elbon -Elbormar -Elborough -Elbow -Elbridge -Elbrook -Elbury -Elbut -Elby -Elcedo -Elchester -Elcho -Elcock -Elcombe -Elcorte Madera -Elcot -Elcott -Elda -Eldamain -Eldbridge -Eldee -Elden -Eldene -Elder -Elder Brewster -Elder Creek -Elder Oaks -Elder Tree -Elderberry -Elderbrook -Eldercroft -Elderd -Elderfield -Elderfields -Elderfo -Elderly -Eldermount -Elders Hollow -Eldershaw -Elderslie -Eldert -Elderton -Elderwood -Eldon -Eldor -Eldora -Eldorado -Eldred -Eldredge -Eldrid -Eldridge -Eldridge Grade Fire -Eldrige -Eleana -Eleanor -Eleanor Cross -Eleanore -Elebana -Elebe -Election -Electioneer -Electo -Electra -Electric -Electronic -Electronics -Elefa -Elegans -Elegante -Eleham -Elena -Elena Marie -Elenda -Elendil -Elene -Eleni -Elephant -Elester -Eletson -Elevation -Elevator -Eleven Oaks -Eleventh -Eley -Elf -Elfelt -Elfers -Elfin -Elfindale -Elford -Elfort -Elfred -Elfreda -Elfrida -Elfrieda -Elfwine -Elgar -Elgarth -Elger -Elgin -Elgin Hosp Service -Elgin Mental Hospital -Elginwood -Elgiva -Elham -Elholm -Eli -Eli Whitney -Elia -Elianore -Elias -Elias Howe -Eliason -Elibank -Elijah -Elim -Elimatta -Elingwood -Elinor -Elinor Fr -Elinora -Elinore -Elioak -Eliot -Eliot Hill -Eliot Memorial -Eliot View -Eliots Oak -Eliott -Elisa -Elise -Eliseo -Elisha -Elissa -Elissagaray -Eliston -Elite -Eliz -ElizAbeth -Eliza -Eliza Ann -Elizabath -Elizabeth -Elizabeth Bay -Elizabeth Fry -Elizabeth Ida -Elizabeth MacArthur -Elizabeth Macarthur -Elizabeth Ridge -Elizabeth River -Elizabeth Slinger -Elizia -Eljays -Eljer -Elk -Elk Crest -Elk Grove -Elk Hills -Elk Horn -Elk Lick -Elk Mar -Elk Point -Elk Run -Elk Spring -Elka -Elkan -Elker -Elkgrove Township -Elkhart -Elkhorn -Elkhorn Manor -Elkin -Elkington -Elkins -Elkland -Elkmont -Elko -Elkridge -Elkridge Heights -Elkridge Landing -Elks -Elkstone -Elkton -Elkwood -Ell -Ella -Ellaline -Ellalong -Ellam -Elland -Ellard -Ellbank -Ellbourne -Elle -Ellege -Ellen -Ellen Terry -Ellen Webb -Ellena -Ellenbrook -Ellendale -Ellenel -Ellenmere -Ellenor -Ellensue -Ellenton -Ellentree -Ellenwhorne -Ellenwood -Elleray -Ellerbe -Ellerbie -Ellerbrook -Ellerby -Ellerdale -Ellerdine -Ellergreen -Ellerhausen -Ellerhorst -Ellerker -Ellerman -Ellers -Ellerslee -Ellerslie -Ellert -Ellerton -Ellery -Elles -Ellesborough -Ellesemere -Ellesfield -Ellesmere -Ellestere -Ellestuen -Ellet -Ellice -Ellicott -Ellicott Woods -Ellie -Elliman -Ellin -Ellinger -Ellingfort -Ellingham -Ellingson -Ellington -Ellingwood -Ellinwood -Elliot -Elliot Ranch -Elliott -Elliott Av -Elliott Ranch -Ellis -Ellis Farm -Ellis Johnson -Ellisen -Ellisfield -Ellison -Ellisville -Elliswick -Ellita -Ellithorpe -Ellman -Ellmar Oaks -Ellmore -Ellmyer -Ellor -Ellora -Ells -Ellsberg -Ellsmere -Ellsmore -Ellswood -Ellsworth -Ellwell -Ellwood -Ellyn -Ellyridge -Ellzey -Elm -Elm Beds -Elm Brook -Elm Creek -Elm Creet -Elm Crest -Elm Farm -Elm Green -Elm Grove -Elm Hill -Elm Knoll -Elm Lawn -Elm Lodge -Elm Park -Elm Ridge -Elm Rock -Elm Sea -Elm Top -Elm Tree -Elm View -Elma -Elman -Elmang -Elmar -Elmbank -Elmbark -Elmbourne -Elmbridge -Elmbrook -Elmcrest -Elmcroft -Elmdale -Elmdene -Elmdon -Elmdorf -Elmendorf -Elmer -Elmer F Hagner -Elmer School -Elmers -Elmers End -Elmerside -Elmesmere -Elmet -Elmete -Elmfield -Elmgate -Elmgrove -Elmhirst -Elmhurst -Elmington -Elminya -Elmira -Elmire -Elmlea -Elmleaf -Elmley -Elmo -Elmont -Elmoor -Elmora -Elmore -Elmridge -Elmroyd -Elms -Elms Farm -Elms Park -Elmscott -Elmscroft -Elmsdale -Elmsfield -Elmsford -Elmshaven -Elmside -Elmsleigh -Elmsmere -Elmstead -Elmstone -Elmstone Hole -Elmstree -Elmstreet -Elmswood -Elmsworth -Elmton -Elmtree -Elmview -Elmwood -Elmwood Farm -Elmwood Park -Elmwynd -Elna -Elnew -Elnido -Elnoka -Elnor -Elnora -Elodie -Eloise -Elon -Elonera -Eloora -Elora -Elouera -Eloura -Elphick -Elphinstone -Elphistone -Elray -Elrene -Elridge -Elrington -Elrod -Elrose -Elroy -Elsa -Elsbeth -Elsbree -Elsdale -Elsden -Elsdon -Elsen -Elsenham -Elsenwood -Elsham -Elsholz -Elsie -Elsie Mae -Elsie Maud -Elsiedene -Elsinge -Elsinoor -Elsinor -Elsinore -Elskip -Elsley -Elsma -Elsmere -Elsmore -Elsom -Elson -Elsona -Elspeth -Elstar -Elstead -Elsted -Elston -Elstow -Elstree -Elsway -Elswick -Elsworth -Elsworthy -Elsynge -Elterwater -Eltham -Eltham Church High -Eltham Green -Eltham Palace -Elthiron -Elthorne -Eltinge -Eltingville -Eltisley -Elton -Elton Farm -Elton Vale -Eltringham -Elva -Elvans -Elvas -Elvaston -Elvaton -Elvaton Towne -Elveden -Elvedon -Elven -Elvendon -Elvera -Elverland -Elverson -Elverston -Elverta -Elverton -Elves -Elvessa -Elvet -Elvetham -Elvia -Elvies -Elvin -Elvina -Elvington -Elvino -Elvir -Elvira -Elvis -Elvstrom -Elward -Elway -Elwell -Elwern -Elwick -Elwin -Elwood -Elwyn -Ely -Elyard -Elyne -Elyse -Elysian -Elysian Fields -Elysium -Elystan -Elzer -Elzey -Em -Emack -Emado -Emalon -Emami -Emanuel -Emaron -Emba -Embankment -Embarcadero -Embarcadero North -Embarcadero South -Embassy -Embden -Embee -Ember -Ember Farm -Embercourt -Emberdale -Embers -Emblem -Embleton -Embroidery -Embry -Embry Farm -Emden -Emegency -Emelia -Emeline -Emer -Emerad -Emerald -Emerald Bay -Emerald Chase -Emerald Cove -Emerald Crest -Emerald Forest -Emerald Green -Emerald Grove -Emerald Hill -Emerald Hills -Emerald Isle -Emerald Lake -Emerald Oak -Emerald Park -Emerald Pointe -Emerald Pool -Emerald Ridge -Emerald Rock -Emerald Vista -Emerald Wood -Emergency -Emergency Access -Emeric -Emerick -Emerson -Emerson Gardens -Emerson Valley -Emersons -Emerstan -Emert -Emerton -Emery -Emery Bay -Emery Hill -Emery Village -Emeryn -Emes -Emigh -Emigrant Gap -Emil -Emilia -Emilie -Emiline -Emilio -Emilissa -Emily -Emily Clarke -Emily Dickinson -Emily Jeffers -Emilys -Emington -Emjay -Emkay -Emley -Emlong -Emlyn -Emma -Emma Lee -Emmaline -Emmanual -Emmanuel -Emmanuel Church -Emmaton -Emmaus -Emmbrook -Emme -Emmeline -Emmer Green -Emmerick -Emmers -Emmerson -Emmert -Emmet -Emmet Hill -Emmet Roche -Emmetsburg -Emmett -Emmetts -Emmetts Farm -Emmitt -Emmons -Emmons Canyon -Emmonsdale -Emmott -Emms -Emo -Emond -Emory -Emory Church -Emory Grove -Emperor -Empire -Empire Builder -Empire Mine -Empire Tract -Empire Wharf -Empoli -Emporia -Empress -Empson -Empty Song -Emrol -Emroy -Emshee -Emsworth -Emu -Emu Plains -Emwood -Ena -Enatai -Enborg -Enborn -Enbrook -Encanto -Encerti -Enchanted -Enchanted Forest -Enchantment -Enchanto Vista -Encima -Encina -Encina Grande -Encinal -Encino -Encinosa -Enclave -Enclosure -Encore -Encounter -End -End View -Endean -Endeavor -Endeavour -Endell -Enderby -Enderley -Enders -Endersby -Endicott -Endlebury -Endleigh -Endlesham -Endlich -Endmoor -Endo -Endon -Endor -Endow -Endres -Endriss -Endsleigh -Endview -Endwell -Endwood -Endymion -Enea -Energy -Energy Park -Enes -Enesco -Enfield -Enfield Church -Enfield Park -Enford -Enfrente -Engadine -Engel -Engelhard -Engelke -Engelmann Oak -Engert -Engesta -Engine -Engine House -Engineer -Engineers -England -Englands -Engle -Englefield -Englehardt -Englehart -Englehutt -Engleman -Englemere -Engler -Englert -Engleside -Englewood -Englhardt -Engliff -English -English Bay -English Chestnut -English Consul -English Hills -English Holly -English Morning -English Oak -English Oaks -English Prairie -English Rows -English Turn -Englishman -Englishtown -Englishwood -Englorie Park -Engracia -Enid -Enloe -Enlund -Enman -Enmore -Ennabrock -Ennalls -Ennals -Enneking -Ennell -Ennerdale -Ennersdale -Enness -Enning -Ennis -Ennismore -Enoch -Enochs -Enoggera -Enola -Enon -Enos -Enrica -Enrico -Enright -Ensbrook -Ensell -Ensenada -Ensfield -Ensign -Ensleigh -Enslen -Enslin -Enstone -Enstrom -Enterdent -Enterprise -Enterprise Park -Entertainment -Entin -Entomology -Entrada -Entrance -Entranda -Entrata -Entre -Entrevaux -Entry -Entwisle -Entwistle -Entwistle Hall -Enveart -Envee -Enver -Envill -Enville -Environs -Envoy -Enzenauer -Enzo -Eola -Epacris -Epaul -Ephriam -Epic -Epirus -Episcopal Hs Service -Epling -Eppard -Epping -Epping Farms -Epping Forest -Epping New -Eppirt -Epple -Eppleworth -Eppling -Epps -Epsam -Epsilon -Epsom -Epson -Epstein -Epworth -Equality -Equestrian -Equine -Equitable -Equity -Equus -Era -Erang -Erasmus -Erb Farm -Erba -Erben -Ercall -Ercama -Ercell -Ercildoune -Ercolani -Erconwald -Erebus -Eresby -Ereswell -Erhardt -Eric -Eric Clarke -Eric Cooper -Eric Felton -Eric Green -Erica -Erica Hill -Erick -Ericka -Erickson -Erico -Ericon -Ericson -Ericsons -Ericsson -Eridge -Erie -Eriff -Erik -Erika -Eriks -Erin -Erina -Erins Glen -Erins Ridge -Eriswell -Erita -Erith -Erith High -Erland -Erlandson -Erlanger -Erle Havard -Erledon -Erleigh -Erleigh Court -Erles -Erlesmere -Erlin -Erlington -Erma -Erman -Ermen -Ermina -Ermine -Ermington -Erna -Ernal -Ernald -Ernan -Ernel -Ernest -Ernesti -Ernestine -Ernie -Ernie Pyle -Ernle -Ernlouen -Ernocroft -Ernst -Ernst Chain -Ernston -Ernwood -Eros -Erpingham -Errang -Errante -Errica -Errico -Erriff -Errington -Errol -Errol Flynn -Erroll -Errwood -Erskine -Erskine Park -Erskineville -Erta -Ertle -Ertman -Ertter -Erudo -Ervilla -Erville -Ervin Industrial -Ervine -Erving -Erwin -Erwin Park -Esa -Esberg -Escalero -Escalle -Escallonia -Escalon -Escalona -Escamilla -Escanaba -Escanyo -Escatta -Eschenburg -Escher -Eschinger -Eschol -Eschol Park -Escobar -Escobita -Escolta -Escombe -Escondida -Escondido -Escondito -Escot -Escover -Escuela -Esdaile -Esek Hopkins -Esfahan -Eshald -Eshcol -Esher -Esher Green -Esher Park -Esher Place -Eshleman -Esholt -Esk -Eskdale -Eskin -Eskow -Eskridge -Esler -Eslin -Esme -Esmeralda -Esmeyer -Esmond -Esmont -Espanola -Esparito -Esparto -Espee -Esperanza -Espey -Espie -Espinosa -Esplanade -Esplande -Esplin -Esposito -Espy -Esquina -Esquire -Esquivel -Essanay -Essella -Essen -Essenay -Essenden -Essendene -Essendine -Essendon -Essenton -Esser -Essetford -Essex -Essex Center -Essex Green -Essex Hall -Essex Heights -Essex Park -Essex View -Esshire -Essian -Essie -Essiembre -Essilia -Essington -Esslog -Esta -Estabrook -Estabueno -Estacada -Estancia -Estate -Estates -Estates View -Estcots -Estcourt -Este -Este Madera -Esteban -Estee -Esteem -Estel -Estella -Estelle -Estelle Marsan -Esten -Estepa -Ester -Esterbrook -Esterbrooke -Esterlee -Esterly Oaks -Estero -Esterwood -Estes -Estey -Esther -Esthers -Estherwood -Esthwaite -Estler -Estling Lake -Estok -Eston -Estona -Estonfield -Estonia -Estrada -Estrade -Estralita -Estreham -Estrella -Estridge -Estuary -Estudillo -Esty -Esty Farm -Eswick -Esworthy -Eswyn -Eta -Etchells -Etcheverry -Etchingham -Etchingham Park -Etchison -Etela -Eternal Rings -Eternity -Etham -Ethan -Ethan Allen -Ethel -Ethel Porter -Ethelbert -Ethelburga -Ethelden -Etheldene -Etheldore -Ethell -Ethelridge -Ethelton -Etherden -Etheridge -Etherstone -Ethie -Ethier -Ethnam -Ethnard -Ethne -Ethridge -Ethrlbert -Ethronvi -Ethyl -Etloe -Etna -Eton -Eton College -Eton High -Eton Hill -Eton Manor -Eton Wick -Eton on Oxford -Etowah -Etre -Etruria -Etruscan -Etsinger -Etta -Ettalong -Ettersberg -Ettie -Ettl -Ettlesdale -Ettrick -Etuird -Etvile -Etzel -Eubank -Eubanks -Eucalyptas -Eucalyptus -Eucalyptus Knoll -Eucker -Eucla -Euclid -Eucra -Eucumbene -Eudo -Eudon -Eugene -Eugenes Prospect -Eugenia -Eugenia Park -Eulabah -Eulalia -Eulalie -Eulbertie -Eulda -Eulner -Eulow -Eunice -Eurabalong -Eurabba -Eurabbie -Euralla -Eureka -Eureka Canal -Eureka Canyon -Eurella -Eurimbla -Eurobin -Euroka -Eurolink Way Milton -Eurong -Europa -Europa Park -Europe -Euryalus -Eustace -Eustice -Eustis -Euston -Eutaw -Eutaw Forest -Euterpe -Euthella -Eva -Eva Gude -Evadna -Evaline -Evan -Evana -Evandale -Evangel -Evangeline -Evangelist -Evans -Evans Black -Evans Farm -Evans Ford -Evans Mill -Evans Pond -Evans Ridge -Evansdale -Evanston -Evanston Central -Evanston Davis -Evanston Elgin -Evanston Main -Evanstone -Evanswood -Evar -Evarts -Evas -Eve -Eveas -Eveleigh -Eveleth -Evelina -Eveline -Evelyn -Evelyn Denington -Evelyn Gingell -Evelyn Wood -Evelyns -Evemarie -Even -Evendale -Evenden -Evenfall -Evening -Evening Hill -Evening Primrose -Eveningside -Evenlode -Evens -Evensong -Evenstar -Evenston -Everard -Everberg -Everd -Everdale -Everdean -Everdell -Everell -Everendon -Everest -Everest Peak -Everett -Everett Farm -Everett Gaylord -Everett Paine -Everett School -Everette -Everglade -Everglades -Everglades Park -Evergreen -Evergreen Forest -Evergreen Mills -Evergreen Point -Evergreen Ridge -Everhill -Everilda -Evering -Everington -Everit -Everitt -Everlasting -Everleigh -Everley -Everly -Everlyn -Evermay -Evers -Eversfield -Eversholt -Evershot -Everside -Eversleigh -Eversley -Eversley Park -Eversole -Everson -Everst -Evert -Everthorpe -Everton -Everts -Everview -Everwood -Every -Evesboro -Evesham -Evesson -Eveton -Evey -Evian -Evolution -Evon -Evona -Evonne -Evonshire -Evora -Evry -Ewald -Ewan -Ewart -Ewart Dale -Ewe -Ewehurst -Ewell -Ewell Court -Ewell Downs -Ewellhurst -Ewen -Ewens -Ewenton -Ewer -Ewhurst -Ewing -Ewood -Ewrin -Ews Woods -Ewshot -Exbourne -Exbury -Excaliber -Excalibur -Excange -Exceller -Excelsior -Excelso -Exchange -Excy -Executive -Executive Park -Exedown -Exeforde -Exell -Exeter -Exeter Square -Exeter Way Pagnell -Exeter on Oxford -Exfair -Exford -Exhibition -Exira -Exit -Exley -Exmoor -Exmoor Oaks -Exmore -Exmouth -Exner -Exning -Exodus -Exon -Expando -Experiment -Exploration -Explorer -Explorers -Expo -Export -Exposition -Express -Expressway -Extension -Extension Center -Exterior -Exton -Eyam -Eycott -Eye -Eyebrook -Eyelet -Eyet -Eyhorne -Eyhurst -Eylandt -Eyles -Eyncourt -Eynella -Eynford -Eynham -Eynsford -Eynsham -Eynswood -Eyre -Eyres -Eyrie -Eyston -Eythorne -Ezel -Ezie -Ezra -Ezzy -F A Orechio -F Fernwood -F Jellman -F Leeds Infirmary -F Line -F Morley Commercial -F R -F S Mathewson -FDR -Faben -Fabens -Faber -Fabian -Fabiano -Fabien -Fabio -Fabiola -Fable -Fabor -Fabry -Fabyan -Facade -Facchina -Facel Vega -Facendini -Facet -Fackenden -Factor -Factory -Factory Mutual -Factory Pond -Factory Shops -Faculty -Fadem -Fado -Fagan -Fagen -Fagerness Point -Faggoters -Faggs -Fagin -Fagley -Fagnall -Fagundes -Fagus -Fahden -Fahey -Fahms -Fahrner -Fahy -Faigle -Faile -Failsworth -Fair -Fair Acres -Fair Briar -Fair Elms -Fair Garden -Fair Greene -Fair Haven -Fair Heights -Fair Hill -Fair Knoll -Fair Lakes -Fair Lakes Promenade -Fair Lawn -Fair Meadow -Fair Meadows -Fair Oak -Fair Oaks -Fair Play -Fair Ponds -Fair Ranch -Fair Ridge -Fair Valley -FairView -Fairacre -Fairacres -Fairbairn -Fairbank -Fairbanks -Fairbault -Fairbluff -Fairbottom -Fairbourn -Fairbourne -Fairbridge -Fairbrook -Fairbrother -Fairburn -Fairbury -Fairby -Faircastle -Fairchester -Fairchild -Fairchildes -Faircliff -Fairclough -Faircrest -Faircross -Fairdale -Fairdell -Fairdene -Faireno -Fairey -Fairfax -Fairfax Corner -Fairfax Corner West -Fairfax County -Fairfax Farms -Fairfax Hunt -Fairfax Metro -Fairfax Ridge -Fairfax Village -Fairfield -Fairfield House -Fairfield Loop -Fairfields -Fairfoot -Fairford -Fairfowl -Fairgate -Fairglen -Fairgrave -Fairgreen -Fairground -Fairgrounds -Fairgrove -Fairham -Fairhauser -Fairhaven -Fairhill -Fairhills -Fairholm -Fairholme -Fairholt -Fairhomes -Fairhope -Fairhunt -Fairhurst -Fairkytes -Fairlaine -Fairlake -Fairlamb -Fairland -Fairland Park -Fairlands -Fairlane -Fairlawn -Fairle -Fairlea -Fairlead -Fairlee -Fairleigh -Fairless -Fairlie -Fairlight -Fairlop -Fairly -Fairlyn -Fairman -Fairmans -Fairmark -Fairmead -Fairmeadow -Fairmeadows -Fairmede -Fairmile -Fairmile Park -Fairmont -Fairmont Heights -Fairmount -Fairoak -Fairoaks -Fairorchard -Fairpine -Fairport -Fairridge -Fairs -Fairseat -Fairsky -Fairstead -Fairstead Hall -Fairtown -Fairtree -Fairtrough -Fairview -Fairview Beach -Fairview Circle -Fairview Cottage -Fairview Estates -Fairview Park -Fairview Vista -Fairview Woods -Fairwater -Fairwaters -Fairway -Fairway Entrance -Fairway Glen -Fairway Hills -Fairway Knoll -Fairway Ridge -Fairway Two -Fairway View -Fairways -Fairways Edge -Fairweather -Fairwell -Fairwind -Fairwinds -Fairwood -Fairwyn -Fairy -Fairy Bank -Fairy Bower -Fairyland -Fairytale -Fairywell -Faith -Faith Baptist Church -Faithfull -Faithorn -Faithorne -Faitoute -Falaise -Falcato -Falcon -Falcon Greens -Falcon Lakes -Falcon Meadow -Falcon Park -Falcon Point -Falcon Ridge -Falcon View -Falconbridge -Falconcrest -Falcone -Falconer -Falconers -Falconwood -Falda -Faldo -Fales -Falesky -Faletto -Falfield -Falgren -Falkerners -Falkirk -Falkland -Falkland Park -Falklands -Falkner -Fall -Fall Birch -Fall Brook -Fall Creek -Fall River -Fallard -Fallbrook -Fallen Leaf -Fallen Oak -Fallen Timbers -Fallenleaf -Faller -Falleri -Fallfax -Fallgold -Fallgren -Fallibroome -Falling -Falling Brook -Falling Creek -Falling Green -Falling Leaf -Falling Run -Falling Water -Fallingtree -Fallman -Fallon -Fallow -Fallow Court -Fallow Fields -Fallowfield -Fallowfields -Falls -Falls Bridge -Falls Farm -Falls Lake -Falls Pointe -Falls Reach -Falls Run -Fallsbrook -Fallscliff -Fallsgrove -Fallston -Fallstone -Fallsway -Fallswood -Fallview -Fallwater -Fallway -Fallwind -Fallwood -Falmead -Falmer -Falmore -Falmouth -Falmouth on Oxford -Falshaw -Falson -Falstaff -Falster -Falston -Falstone -Faltings -Falulah -Falworth -Fambridge -Famet -Family -Family Acres -Family Farm -Fams -Famularo -Fan -Fanchon -Fanconi -Fancroft -Fane -Faner -Faneuff -Faneuil -Fanfair -Fanhams -Fanhams Hall -Fann -Fannen -Fanners -Fanning -Fannon -Fanny -Fano -Fanok -Fans -Fanshaw -Fanshawe -Fanshaws -Fant -Fantail -Fantasia -Fanthorpe -Fantome -Fanton Hall -Fanum -Fanwood -Fanyon -Far -Far Cromwell -Far Hill -Far Hills -Far Reach -Far Rockaway -Far Rockaway – Mott -Far View -Far Well -Far Woodseats -Fara -Faraday -Farah -Farallon -Farallone -Farallones -Faran -Faraone -Farasi -Faraway Hills -Farber -Farber Hill -Farbrook -Farcroft -Fardale -Farden -Fareham -Farel Dae -Farendon -Farese -Farewell -Farfield -Fargher -Fargo -Fargrove -Farham -Farhan -Farhill -Faria -Faribault -Faricy -Farina -Farinella -Faringdon -Faringford -Farington -Fariola -Faris -Faris Barn -Fariss -Farjeon -Farland -Farlands -Farlane -Farleigh -Farleigh Court -Farless -Farley -Farley Brook -Farley Heath -Farley Pond -Farlie -Farlington -Farlow -Farlton -Farm -Farm Bridge -Farm Bureau -Farm Credit -Farm Creek -Farm Crest -Farm Gate -Farm Glen -Farm Haven -Farm Hill -Farm Hills -Farm House -Farm Line -Farm Market -Farm Mill -Farm Pond -Farm River -Farm Trace -Farm View -Farman -Farmbridge End -Farmbrook -Farmcombe -Farmcrest -Farmdale -Farmedge -Farmer -Farmerbrook -Farmers -Farmers Cliff -Farmfield -Farmgate -Farmhaven -Farmhill -Farmhouse -Farmilo -Farmin -Farmingdale -Farmingham -Farmington -Farmington Creek -Farmington Lakes -Farmland -Farms -Farmside -Farmstead -Farmview -Farmwell -Farmwood -Farnaby -Farnam -Farnan -Farnborn -Farnborough -Farncombe -Farndale -Farndon -Farne -Farnell -Farnes -Farnesdown -Farness -Farney -Farnham -Farnham Park -Farningham -Farningham Hill -Farnley -Farnol -Farnsworth -Farnum -Farnworth -Faro -Faroe -Farquhar -Farquharson -Farr -Farr Ranch -Farrabow -Farraday -Farragot -Farragut -Farrahs Calvary -Farran -Farrance -Farrand -Farrandale -Farrant -Farrar -Farrar Farm -Farrara -Farrari -Farravet -Farrcroft -Farrel -Farrell -Farrells -Farrelly -Farrellys -Farren -Farrer -Farrier -Farrier Point -Farriers -Farringdon -Farringdon Service -Farrington -Farris -Farrol -Farrow -Farrowdene -Farrs -Farrwood -Farside -Fartherwell -Farthing -Farthing Green -Farthing Park -Farthingale -Farthingham -Fartown Bankhouse -Fartown Hillthorpe -Farver -Farview -Farvue -Farwell -Farwood -Fashion -Fashion Island -Fashoda -Fassett -Fassetts -Fassler -Fast -Fastnet -Father Burns -Father Capodanno -Father Carney -Father Hayes -Father Herlihy -Father Hurley -Father Morissette -Father Urban -Father White -Fatherson -Fathke -Fathom -Fatima -Fattoria -Faubert -Fauce -Faucett -Fauchons -Fauconberg -Faught -Faulds -Faulk -Faulkbourne -Faulkenhurst -Faulkner -Faulkner Hill -Faulkners -Faun Bar -Fauna -Faunce -Faunes -Fauquier -Faust -Faustina -Fauvel -Faux -Fava -Favart -Favell -Faverolle -Faversham -Favonia -Favor -Favorite -Favre -Favre Ridge -Fawborough -Fawcett -Fawe -Fawe Park -Fawell -Fawhelm -Fawkes -Fawkham -Fawkham Green -Fawley -Fawley Bottom -Fawn -Fawn Creek -Fawn Crossing -Fawn Glen -Fawn Hill -Fawn Hollow -Fawn Lake -Fawn Meadow -Fawn Park -Fawn Ridge -Fawn Trail -Fawn Wood -Fawnbrake -Fawnbrook -Fawncrest -Fawndale -Fawnhill -Fawnridge -Fawsett -Faxfield -Faxon -Faxon Park -Faxton -Fay -Fay Mountain -Fay Ranch -Fay Rotenberg -Fayann -Faye -Faye Memorial -Faye Park -Fayerweather -Fayette -Fayetteville -Faygate -Fayland -Fayrewood -Fays -Fayson Lake -Fayston -Faywood -Fazio -Fe Carter -Feafel -Fearing -Fearless -Fearn -Fearnhead -Fearnley -Fearns -Fearnville -Fearnville Dib -Fearon -Feather -Feather Bed -Feather Creek -Feather River -Feather Rock -Feather Sound -Featherbank -Featherbed -Featherby -Feathercombe -Featherleigh -Featherock -Feathers -Featherstall -Featherston -Featherstone -Featherwood -Featley -Feature -February -Fechet -Fechter -Fed Ex -Federal -Federal Eagle -Federal Hill -Federal Signal -Federal Systems Park -Federalist -Federation -Federspiel -Fedor -Fedore -Fedrick Ranch -Fedsco -Fee -Fee Farm -Feece -Feeches -Feeder -Feedranchs -Feehanville -Feeks -Feeley -Feeney -Feeny -Fegan -Fehler -Fehon -Fehren -Feickert -Feinberg -Fela -Felbridge -Felbrigg Hall -Felbrigge -Felch -Felcot -Felcott -Felcourt -Feld -Felday -Felden -Felder -Felderland -Feldin -Feldmeyer -Feldmeyers -Feldom -Feldon -Feldott -Feldspar -Felhampton -Felice -Felicia -Felicidad -Felipe -Felix -Felixtowe -Feliz -Felker -Fell -Fella -Fellbrigg -Fellemore -Feller -Fellers -Fellner -Fellow Green -Fellowes -Fellows -Fellowship -Fellpark -Fells -Fells Manor -Fellscrest -Fellsmere -Fellsview -Fellsway -Fellsway W opp. Elm -Fellswood -Felltop -Felmersham -Felmingham -Fels Farm -Felsberg -Felsham -Felskirk -Felspa -Felstead -Felsted -Felsview -Felt -Felta -Felten -Felter -Feltes -Feltham -Feltham Hill -Felthorpe -Feltl -Felton -Felton Empire -Felton Quarry -Feltz -Felwood -Femia -Femleaf -Femoyer -Fen -Fen Pond -Fenbrook -Fence -Fencegate -Fenceline -Fencepose -Fenchurch -Fencl -Fencourt -Fencsak -Fendale -Fendall -Fendant -Fender -Fendyke -Fenelon -Fenemore -Fengates -Fenham -Fenian -Fenimore -Fenley -Fenlon -Fenmere -Fenmore -Fenn -Fennel -Fennell -Fennels -Fennels Farm -Fenner -Fenner Grant -Fennes -Fennfields -Fenning -Fenno -Fenns -Fenny -Fennycroft -Fenor -Fensalir -Fensmere -Fensome -Fenstanton -Fensview -Fentem -Fenton -Fenton Wood -Fentree -Fentress -Fentum -Fenview -Fenway -Fenwick -Fenwood -Fenworth -Fenz -Feramin -Ferber -Ferbusson -Ferdinand -Ferdinand Day -Ferdon -Fergerson -Fergus -Ferguson -Fergusson -Feri -Ferigo -Ferland -Ferme Park -Fermer -Fermery -Fermi -Fermo -Fermont -Fermor -Fermoy -Fermoy Heights -Fern -Fern Bank -Fern Canyon -Fern Creek -Fern Dell -Fern Hill -Fern Hollow -Fern Lea -Fern Leaf -Fern Park -Fern Ridge -Fern River -Fern Valley -Fernald -Fernally -Fernandes -Fernandez -Fernando -Fernbank -Fernbanks -Fernberry -Fernboro -Fernbray -Fernbrook -Ferncliff -Ferncliffe -Fernclough -Ferncote -Ferncourt -Ferncroft -Ferndale -Ferndale Hilbert -Ferndale Woods -Ferndell -Fernden -Ferndene -Ferndown -Ferne -Fernedge -Ferney -Ferney Field -Ferneydale -Fernfield -Ferngate -Fernglade -Fernglen -Ferngrove -Fernhall -Fernham -Fernhead -Fernhill -Fernhoff -Fernhollow -Fernholme -Fernhurst -Fernhust -Fernie -Fernish -Fernlea -Fernleaf -Fernleigh -Fernley -Fernmont -Fernote -Fernridge -Ferns -Fernsbury -Fernshaw -Fernshire -Fernside -Fernthorpe -Ferntower -Ferntree -Fernvale -Fernview -Fernville -Fernwald -Fernwood -Fero -Ferol -Feronia -Ferrabetta -Ferran -Ferrara -Ferrari -Ferrari Creek -Ferraris -Ferraro -Ferrecchia -Ferreira -Ferrelo -Ferren -Ferrera -Ferrero -Ferrers -Ferrestone -Ferri -Ferrier -Ferrin -Ferris -Ferriter -Ferro -Ferron -Ferry -Ferry Crossing Point -Ferry Farms -Ferry Hill -Ferry Landing -Ferry Line -Ferry Point -Ferrybridge -Ferryhill -Ferrymead -Ferryville -Ferson Creek -Ferson Woods -Fertada -Fertado -Fertelli -Fertiledale -Feruzza -Ferwood -Feryby -Fescue -Fessenden -Fessenden Hill -Fesseneva -Fessler -Festa -Festa Agilio -Festal -Festival -Fetcham Common -Fetcham Park -Fetherston -Fetlock -Fetter -Fetterly -Fetters -Fettes -Fetyko -Fetz -Fetzer -Feustal -Fever -Fewings -Fewston -Fewtrell -Fey -Ff -Ffinch -Fiarway -Fiat -Fibich -Ficarelle -Fichter -Fiday -Fiddens Wharf -Fiddicroft -Fiddle -Fiddlebridge -Fiddler -Fiddlers -Fiddlers Green -Fiddlers Green Spur -Fiddlers Hill -Fiddlesticks -Fiddyment -Fidler -Fiedler -Field -Field Common -Field Crest -Field Daisy -Field Encampment -Field End -Field Gate -Field Head -Field House -Field Lark -Field Master -Field Mill -Field Office -Field Point -Field Pond -Field Vale -Field View -Field Way Hill -Field of Mars -Fieldale -Fieldbank -Fieldbrook -Fieldcommon -Fieldcreek -Fieldcrest -Fielden -Fieldend -Fielder -Fieldfair -Fieldfare -Fieldgate -Fieldhead -Fieldhead Longwood -Fieldhouse -Fielding -Fieldings -Fieldmere -Fieldmont -Fieldpoint -Fields -Fields Brigade -Fields Crown Farm -Fields End -Fields Farm -Fields First Federal -Fields New -Fields Pond -Fieldsend -Fieldside -Fieldsman -Fieldston -Fieldstone -Fieldthorn -Fieldvale -Fieldview -Fieldway -Fieldway Lodge -Fieldwood -Fieldwork -Fiene -Fierro -Fiesta -Fife -Fifer -Fifers -Fifield -Fifteenth -Fifth -Fifth Cross -Fig -Fig Tree -Figard -Figg -Figges -Figone -Figtree -Figueroa -Figura -Figurea -Figurehead -Fiji -Fike -Filament -Filante -Filarete -Filbert -Filbro -Filby -Filer -Filey -Filice -Filip -Filipe -Filkins -Fillat -Fille -Fillebrook -Fillets Farm -Filley -Fillingame -Fillingfir -Fillion -Fillippelli -Fillmer -Fillmore -Filly -Filmer -Filmore -Filmorehill -Filomena -Filston -Filter Bed -Filter Plant -Filterbed -Finborough -Fincastle -Finch -Finchale -Fincham End -Finchampstead -Fincharn -Finchdale -Finches -Finchleigh -Finchley -Finchmead -Finck -Finden -Finders -Findhorn -Findland -Findlay -Findlays -Findley -Findon -Fine -Fine Bush -Fine Farms -Fingal -Finger -Fingerboard -Fingest -Finghall -Fingrith Hall -Finian -Finings -Finisterre -Fink -Finkbohner -Finkelstein -Finkin -Finkle -Finland -Finlandia -Finlaw -Finlay -Finlays -Finlayson -Finley -Finley Ridge -Finlow Hill -Finmor -Finn -Finn Farm -Finn S -Finnamore -Finnegan -Finnell -Finney -Finnie -Finnigan -Finningley -Finnis -Finns -Finnway -Finny Bank -Finnymore -Finrud -Finsbury -Finsbury Park -Finsbury Park Rock -Finschhafen -Finsen -Finster -Finstock -Fintonagh -Fintry -Finucane -Finway -Finwell -Fiona -Fiord -Fiore -Fiorello -Fiorenza -Fiori -Fir -Fir Bank -Fir Cottage -Fir Grange -Fir Ridge -Fir Toll -Fir Tree -Firacre -Firbank -Firbeck -Fircrest -Fircroft -Firdale -Fire -Fire Academy -Fire Access -Fire Barn -Fire Fly -Fire House -Fire Island -Fire Poppy -Fire Rock -Fire Science -Fireball -Firebird -Firebrand -Firebrick -Firecrest -Firecut -Firefly -Firefly Hill -Fireglow -Firehouse -Firelight -Firemans Memorial -Firenza -Firenze -Fireplace -Fireside -Firestone -Firethorn -Firethorne -Firetrail -Firfield -Firglade -Firgrove -Firham Park -Firhaven -Firlands -Firloch -Firma -Firmin -Firmingers -Firs -Firs Park -Firs View -Firsby -Firsgrove -First -First Cross -First Farm -First Fleet -First Fork -First Oak -First Parish -First Summer -Firstfield -Firstore -Firswood -Firth -Firth Knoll -Firth of Tae -Firthcliffe -Firtree -Firtree Park -Firvale -Firview -Firwood -Firwoods -Firzen -Fiscal -Fischer -Fischrupp -Fish -Fish Brook -Fish Farm -Fish Gultch Fire -Fish Hawk -Fish House -Fish Point -Fish Ranch -Fishback -Fishbourne -Fishburn -Fishburne -Fishel -Fisher -Fisher Crescent -Fisher Hawk -Fisher Hill -Fisher Woods -Fisherfield -Fisherman -Fishermans -Fishermore -Fishers -Fisherton -Fishery -Fishing -Fishing Creek -Fishing Point -Fishkill -Fishmarket -Fishpool -Fishtorn -Fishwick -Fisk -Fisk Mill -Fiske -Fiske Mill -Fiske Pond -Fiskeville -Fistelera Ridge -Fistor -Fistral -Fitch -Fitch Farm -Fitch Hill -Fitch View -Fitchburg -Fitchdale -Fitchett -Fitchome -Fitchs Bridge -Fittleworth -Fitton -Fitton Hill -Fitz -Fitzalan -Fitzallen -Fitzer -Fitzgeorge -Fitzgerald -Fitzgibbon -Fitzgilbert -Fitzhardinge -Fitzhenry -Fitzherbert -Fitzhugh -Fitzilian -Fitzjames -Fitzjohn -Fitzjohns -Fitzmaurice -Fitzneal -Fitzoatrick -Fitzpatrick -Fitzrandolph -Fitzroy -Fitzsimmons -Fitzsimons -Fitzstephen -Fitzuren -Fitzwalter -Fitzwarren -Fitzwater -Fitzwilliam -Fiume -Five Acres -Five Ash -Five Bells -Five Canyons -Five Elms -Five Fields -Five Forks -Five Gates -Five Hawks -Five Island -Five Mile -Five Mile River -Five Oak -Five Oak Green -Five Oaks -Five Points -Five Wounds -Fiveash -Fiveways -Fjord -Flack -Fladbury -Fladgate -Flag -Flag City -Flag Day -Flag Harbor -Flag Hill -Flagcroft -Flagg -Flagg Creek -Flagg Hill -Flagg Wood -Flagger -Flaggler -Flagler -Flagmaker -Flagpole -Flagship -Flagstaff -Flagstone -Flaherty -Flake -Flaker -Flam -Flambard -Flambeau -Flamborough -Flame -Flame Tree -Flames -Flamewood -Flaming Arrow -Flaming Oak -Flamingo -Flamm Brook -Flamstead -Flamstead End -Flamsteadbury -Flamsted -Flamsteed -Flanagan -Flanagan Hill -Flanders -Flandrau -Flandreau -Flanigan -Flank -Flannel -Flannery -Flapjack -Flapper Fold -Flash -Flasner -Flass -Flat -Flat Hill -Flat Iron -Flat Meadow -Flat Rock -Flatback -Flatboat -Flatbush -Flater -Flatfield -Flatlands -Flatley -Flats -Flatts -Flatwood -Flaumont -Flaunden -Flavel -Flavell -Flavelle -Flavia -Flavius -Flax -Flax Hill -Flax Place The -Flax Pond -Flaxberry -Flaxcroft -Flaxen -Flaxfield -Flaxley -Flaxman -Flaxpond -Flaxton -Flaxwood -Flay -Fleabane -Fleagle -Fleece -Fleece Flower -Fleeming -Fleenor -Fleeson -Fleet -Fleet Thro -Fleethall -Fleets Cove -Fleets Point -Fleetwood -Fleishacker -Fleming -Fleming Hill -Flemings -Flemings Farm -Flemington -Flemingwood -Flemish -Flemming -Flemons -Flempton -Flers -Fletchall -Fletcher -Fletcher Farms -Fletcher Fold -Fletcher Hill -Fletchers -Fletchertown -Fletching -Fletsand -Flett -Fletton -Fleuette -Fleur De Lis -Fleur de Lis -Fleurbaix -Fleurs -Fleuti -Flewing -Flexbury -Flexford -Flexmere -Flichcroft -Flicker -Flickinger -Flide -Flight -Flight Crew -Flightime -Flightline -Flinders -Flinn -Flint -Flint Creek -Flint Farm -Flint Hill -Flint Lee -Flint Licke -Flint Locke -Flint Meadow -Flint Pond -Flint Rock -Flintcrest -Flintdale -Flintfeet -Flintfield -Flinthaven -Flintlock -Flintlocke -Flintlocke Ridge -Flintmont -Flinton -Flintonbridge -Flintridge -Flintrock -Flints Grove -Flintshire -Flintstone -Flintwood -Flitch -Flitt -Flitterbrook -Flittogate -Flitwick -Flixton -Flo -Float -Floating Leaf -Floatshall -Flock -Flockton -Flodden -Flomar -Flonun -Flood -Flood Spring -Flor -Flora -Flora Lee -Flora Linda -Flora Vista -Florabelle -Floradale -Floradora -Floral -Floral Park -Florales -Florance -Florek -Florence -Florence Park -Florencia -Florentia -Florentine -Flores -Floresta -Florey -Florfield -Florgate -Florham -Florian -Floribel -Floribuna -Floribunda -Florida -Florida Grove -Florido -Florimond -Florin -Florin Mall -Florin Perkins -Florin Wood -Florinda -Florine -Florio -Floris -Florissant -Florist -Floriston -Florita -Floritta -Florrie -Florsheim -Flory -Flosden -Floss -Flossie -Flossmoor -Flour Mill -Flournoy -Flow -Flower -Flower Blossom -Flower Garden -Flower Hill -Flower Valley -Flowerdale -Flowerden -Flowerfield -Flowering Cherry -Flowering Dogwood -Flowering Meadow -Flowering Pear -Flowering Plum -Flowering Tree -Flowermeadow -Flowerree -Flowers -Flowers Bottom -Flowerstone -Flowerwood -Flowing Well -Floyd -Floyd Brown -Floyd Hill -Floyds -Floyer -Fludyer -Fluid Power -Flume -Fluorine -Flurry -Flushcombe -Flushing -Flushing Hills -Flushing Pond -Fly Cloud -Flyaway Pond -Flyboat -Flying Cloud -Flying Fields -Flying Fish -Flying Mist -Flynn -Flynt -Flyway -Foal -Foam -Foamcrest -Fobbing -Fobney -Foch -Focha -Foden -Foerster -Fog -Fog Bank -Fogarty -Fogel -Fogelman -Fogg -Foggs -Foggy -Foggy Glen -Foghorn -Fogle -Fogo -Fokard -Foksville -Folcroft -Fold -Folders -Foldi -Folds -Foleshill -Foley -Foley Beach -Folger -Foliage -Folin -Folini -Foliot -Folk -Folkers -Folkes -Folkeston -Folkestone -Folkingham -Folkstone -Folland -Folle Blanche -Follen -Follet -Follett -Follette -Follin Farm -Follows -Folly -Folly Hall -Folly Hill -Folly Mill -Folly Orchard -Folly Pond -Follyfield -Folsom -Folsom Dam -Folsom Prison -Folsom Ranch -Foltz -Folwell -Fonblanque -Fonda -Fondant -Fondell -Fondiller -Foneswood -Fong -Fonick -Font -Font Hill -Fontainbleau -Fontainbleu -Fontaine -Fontainebleau Park -Fontana -Fontanelle -Fontanoso -Fontarabia -Fontayne -Fontenay -Fontenbleau -Fontenoy -Fontes -Fonthill -Fonti -Fontonett -Fontridge -Fontron -Fontwell -Food Center -Foodlink -Foodmart -Foolish Pleasure -Foord -Foot Hill -Foot of Bridgehead -Football -Footbury Hill -Foote -Foote Ranch -Footes -Foothill -Foothill Glen -Foothill Knolls -Foothill Oaks -Foothill Ranch -Foothill Vista -Foothills -Footpath -Foots Cray -Foots Cray High -Footscray -For Glen -Foran -Foray -Forbell -Forbes -Forbes Creek -Forbes Glen -Forbes Hill -Forbs -Forburg -Forbury -Forbush -Forbush Mill -Force -Force Green -Force Hill -Force Tube -Forcum -Ford -Ford Branch -Ford Hill -Ford Manor -Fordal -Fordbank -Fordbridge -Fordcombe -Fordcroft -Forde -Fordel -Fordham -Fordhook -Fordington -Fords -Fords Park -Fordson -Fordville -Fordway -Fordwells -Fordwich -Fordwych -Fordyce -Fordyke -Fore -Fore River -Forebury -Foregate -Foreland -Forelands -Foreman -Foremost Mountain -Forenza -Forepaugh -Foresdt -Forest -Forest Arms -Forest Beach -Forest Brook -Forest Cove -Forest Creek -Forest Crest -Forest Cross -Forest Dale -Forest Dell -Forest Edge -Forest End -Forest Farm -Forest Garden -Forest Gate -Forest Gate Green -Forest Glen -Forest Green -Forest Grove -Forest Hall -Forest Haven -Forest Hill -Forest Hills -Forest Hills Entrance -Forest Hollow -Forest Knoll -Forest Knolls -Forest Lake -Forest Lake Service -Forest Lawn -Forest Manor -Forest Meadow -Forest Mews -Forest Mill -Forest Mist -Forest Mount -Forest Oak -Forest Off Chesnut -Forest Park -Forest Prairie -Forest Preserve -Forest Ridge -Forest Run -Forest Side -Forest Spring -Forest Trail -Forest View -Forest Villa -Forest Walk -Forest Wood -Forest Woods -Forestburg -Forestdale -Forestedge -Forester -Foresters -Forestgrove -Foresthill -Forestlake -Foreston -Forestside -Forestvale -Forestview -Forestville -Forestville Meadows -Forestway -Forestwood -Forfar -Forge -Forge Bridge -Forge Hill -Forge Village -Forges -Forget Me Not -Forgetts -Forgewood -Forgotten Flower -Forgue -Fork -Forked Creek -Forkey -Forkland -Forlease -Forley -Forli -Forman -Formans Barn -Formby -Former Peter Brock -Formosa -Formosa Ridge -Formosana -Formschlag -Fornasier -Fornelius -Forner -Forni -Forrest -Forrest Hill -Forrest Lake -Forrest Maple -Forrest Preserve -Forrest View -Forrestal -Forrester -Forrester Hill -Forresters -Forris -Forsberg -Forset -Forsgate -Forsham -Forsham Lake -Forshaw -Forslin -Forslund -Forsman -Forstal -Forster -Forston -Forsum -Forsyth -Forsythe -Forsythia -Fort -Fort Ann -Fort Apache -Fort Armistead -Fort Baker -Fort Beggs -Fort Corloran -Fort Craig -Fort Dearborn -Fort Donelson -Fort Dupont -Fort Farnsworth -Fort Foote -Fort Funston -Fort George -Fort Hamilton -Fort Hill -Fort Howard Park -Fort Hunt -Fort Independence -Fort Johnson -Fort Johnston -Fort Laramie -Fort Lee -Fort Lyon -Fort Meade -Fort Meadow -Fort Niagara -Fort Pitt -Fort Point -Fort Pond -Fort Pond Hill -Fort Pond Inn -Fort Ross -Fort Salonga -Fort Sheridan -Fort Slocum -Fort Smallwood -Fort Sumner -Fort Sumter -Fort Washington -Fort Worth -Forte -Forte Memorial -Fortescue -Fortesque -Fortess -Fortfield -Forth -Forth Bridge -Forthill -Fortier -Fortier Lookout -Fortin -Fortini -Fortis Green -Fortismere -Fortna -Fortnam -Fortner -Forton -Fortril -Fortside -Fortuna -Fortunato -Fortune -Fortunegate -Forty -Forty Acre -Forty Acres -Forty Foot -Forty Green -Forty Oaks -Fortyacre -Forum -Forward -Forwood -Fosbak -Fosbrook -Foscarn -Foscote -Fosgate -Foskett -Foss -Foss Hill -Fossdale -Fossdene -Fosse -Fossen -Fossetts -Fossgill -Fossil -Fossil Ridge -Fosswood -Fostall -Fosten -Foster -Foster City -Foster Clarke -Foster Pond -Fostern -Fosters -Fostones -Fothergill -Fotheringham -Fotherley -Fottler -Foucart -Foulden -Foulds -Foulger -Foulks Ranch -Foulser -Foulsham -Founceley -Foundary -Founders -Founders Field -Founders Hill -Founders Mill -Founders Pointe -Founders Ridge -Founders Way -Foundry -Foundry MIll -Foundry Mill -Fount -Fountain -Fountain Circle -Fountain Club -Fountain Green -Fountain Grove -Fountain Head -Fountain Hills -Fountain Oaks -Fountain Park -Fountain Springs -Fountain Square -Fountain Valley -Fountain View -Fountainbleau -Fountaine -Fountaingrove -Fountainhead -Fountainhead Access -Fountains -Fountainside -Fountainview -Fountayne -Four Acre -Four Acres -Four Bridges -Four Chimney -Four Corners -Four Elms -Four Lakes -Four Leaf Clover -Four Mile -Four Oaks -Four Penny -Four Seasons -Four Wents -Four Winds -Fouracres -Fouratt -Fourier -Fourness -Fournier -Foursome -FourtFour Peter -Fourteen Mile -Fourteenth -Fourth -Fourth Cross -Fourwents -Foust -Fouth -Foveaux -Fowey -Fowke -Fowle -Fowler -Fowler Creek -Fowlers -Fownes -Fownhope -Fox -Fox Beach -Fox Bend -Fox Bluff -Fox Bow -Fox Burrow -Fox Burrows -Fox Chapel -Fox Chase -Fox Creek -Fox Cross -Fox Den -Fox Farm -Fox Fern -Fox Fire -Fox Forest -Fox Gate -Fox Glen -Fox Glove -Fox Grape -Fox Grove -Fox Harbor -Fox Harrow -Fox Haven -Fox Hedge -Fox Hill -Fox Hills -Fox Hollow -Fox Hollow Ridings -Fox Hound -Fox House -Fox Hunt -Fox Island -Fox Lair -Fox Lake -Fox Ledge -Fox Meadow -Fox Mill -Fox Mill Manor -Fox Mine -Fox Park -Fox Path -Fox Platt -Fox Plaza -Fox Point -Fox Pointe -Fox Rest -Fox Ridge -Fox Ripple -Fox River -Fox Run -Fox Shadow -Fox Shores -Fox Sparrow -Fox Tail -Fox Trail -Fox Trot -Fox Valley -Fox Valley Center -Fox View -Fox Vine -Fox Wilds -Fox Wood -Fox Woods -Foxall -Foxbay -Foxbeach -Foxberry -Foxberry Farms -Foxboro -Foxborough -Foxborough Hill -Foxbourne -Foxbridge -Foxburrows -Foxbury -Foxchase -Foxclove -Foxcombe -Foxcovert -Foxcreek -Foxcroft -Foxdale -Foxdells -Foxden -Foxdenton -Foxearth -Foxenden -Foxendown -Foxes -Foxfarm -Foxfield -Foxfields -Foxfire -Foxford -Foxgate -Foxglen -Foxglove -Foxgrape -Foxgrove -Foxhall -Foxhall Farm -Foxhall Manor -Foxham -Foxhays -Foxhead Manor -Foxhill -Foxhills -Foxhole -Foxholes -Foxhollow -Foxholm -Foxhound -Foxhunt -Foxhurst -Foxlair -Foxlake -Foxland -Foxlands -Foxley -Foxline -Foxlow -Foxmanor -Foxmeadow -Foxmoor -Foxmore -Foxon -Foxpoint -Foxridge -Foxs -Foxspring -Foxstone -Foxstones -Foxswallow -Foxtail -Foxton -Foxtrap -Foxtree -Foxtrot -Foxvale -Foxview -Foxwell -Foxwell Bend -Foxwood -Foxwoods -Foxworth -Foxworthy -Foy -Foye -Foyer -Foyette -Foyle -Fr -Fraatz -Frace -Fradkin -Fraga -Fragar -Fragrance -Fraint -Frairy -Fraiser -Fraley -Fraley Farm -Fram -Framar -Frambury -Frame -Framewood -Framfield -Framingdale -Framingham -Framley -Framlingham -Frampton -Frampton Park -Fran -Fran del -Francavilla -France -Franceen -Francemary -Francemont -Frances -Frances Green -Frances Hill -Frances McCormick -Francesca -Francessca -Franche Court -Franchise -Francine -Francis -Francis Crick -Francis Greenway -Francis J. Mcgrath -Francis Kelley -Francis Kelly -Francis Lewis -Francis Scott Key -Francis Short -Francis West -Francis Wyman -Franciscan -Francisco -Francisco Villa -Franck -Franclaire -Franco -Franconia -Franconia Commons -Franconia Forest -Frandsen -Franela -Franey -Frangipani -Franich -Frank -Frank Beames -Frank Brown -Frank Cox -Frank D Tanner -Frank E Rodgers -Frank Lloyd Wright -Frank McCue -Frank Oliveri -Frank Scott -Frank Tippett -Frank Turk -Frank W Burr -Frank Woolley -Frankay -Franke -Frankel -Frankford -Frankfort -Frankfort Square -Frankfurst -Frankfurt -Frankham -Frankie -Frankiln -Franklach -Frankland -Franklands -Frankle -Franklin -Franklin Canyon -Franklin Corner -Franklin Farm -Franklin Fox -Franklin Fr -Franklin Gibson -Franklin High -Franklin Hill -Franklin Hills -Franklin Lake -Franklin Manor -Franklin Oaks -Franklin Park -Franklin Park Service -Franklin Spring -Franklyn -Franklynn -Franko -Franks -Franks Valley -Frankson -Frankstowne -Frankswood -Frankton -Frankwood -Franlee -Franlo -Franmar -Franmil -Franquette -Franrose -Franscella -Fransean -Fransen -Fransioli -Franston -Frant -Franton -Frantz -Franusich -Franwall -Franz -Franz Valley -Franz Valley School -Franzen -Franzman -Frascatti -Frasco -Frase -Fraser -Frasinetti -Fraternal -Fraternity -Fraters -Frates -Frati -Fratis -Frattalone -Frauenfield -Fravel -Frawley -Fray -Frayne -Frays -Frazee -Frazer -Frazier -Frazier Lake -Frazier Lewis -Frean -Frear -Freas -Freathy -Freca -Frechette -Freckleton -Fred -Fred Allen -Fred Davis -Fred Russo -Fred Smith -Fred Wehran -Fred Wonran -Freda -Fredale -Fredana -Fredben -Fredbert -Freddie -Freddy -Frede -Fredela -Fredereickburg -Frederic -Frederica -Frederick -Frederick Douglas -Frederick Douglass -Frederick Sanger -Fredericks -Fredericksburg -Frederickson -Frederika -Frederiksen -Fredette -Fredi -Fredith -Fredon -Fredonia -Fredonian -Fredric -Fredrick -Fredricks -Fredrickson -Freds Oak -Fredson -Free -Free Green -Free Heath -Free Prae -Freeboard -Freeborn -Freebournes -Freedman -Freedom -Freedom Center -Freedom Farme -Freedom Park -Freedown -Freegrove -Freehauf -Freehaven -Freehill -Freehollow -Freeks -Freeland -Freeling -Freelon -Freeman -Freeman Shores -Freemans -Freemantle -Freemark -Freemasons -Freemont -Freeport -Freer -Freesia -Freestate -Freeston -Freestone -Freestone Flat -Freestone Ranch -Freestone Valley Ford -Freetown -Freetrade -Freeway -Freewood -Freezeout -Frei -Frei Bros Winery -Frei Ranch -Freight -Freisman -Freitas -Freke -Frelinghuysen -Freman -Fremantle -Fremlin -Fremlins -Fremont -Fremont Pines -Fremontia -French -French Barn -French Camp -French Creek -French Ford -French Hill -French Horn -French Lake -French Oaks -French Ranch Fire -French Trace -Frencham -Frenches -Frenchmans -Frenchmans Bend -Frenchmans Creek -Frenchmens -Frenchs -Frenchs Forest -Frendsbury -Freneau -Frensham -Frensham Heights -Frensham Vale -Frere -Freres -Fresa -Fresca -Fresco -Fresh Meadow -Fresh Meadows -Fresh Mill -Fresh Pond -Fresh Ponds -Fresh River -Fresh Wharf -Freshaire -Freshes -Freshfield -Freshfields -Freshford -Freshland -Freshwater -Freshwell -Freshwood -Fresno -Fresson -Freston -Freswick -Freta -Fretherne -Freud -Freund -Frewert -Frewin -Frewland -Frey -Freya -Freyman -Friar -Friar Tuck -Friarmere -Friars -Friars Place -Friary -Friberg -Fribourg -Frick -Fricourt -Frida -Friday -Fridays -Friden -Fridley -Frieda -Friedberg -Friedel -Friedland -Friedlund -Friedrich -Frieh -Friend -Friendless -Friendly -Friendlywood -Friends -Friends Choice -Friends House -Friendship -Frienza -Friern Watch -Friesen -Friesian -Frieston -Frieth -Friezland -Friezley -Frigate -Frigatebird -Frilsham -Frimley -Frimley Close Dunley -Frimley Green -Frimley Hall -Frimley High -Frindsbury -Fringe Tree -Frink -Frinsted -Frinton -Fripp -Frisbie -Frisby -Frisch -Frisco -Frisk -Friston -Fritch Creek -Frith -Frith End -Frith Hill -Friths -Frithwald -Frithwood -Fritsch -Frittenden -Fritz -Fritzen -Frizell -Frizlands -Froberg -Frobisher -Frodsham -Froehlich Farm -Froelich -Frog -Frog Grove -Frog Hall -Frog Pond -Froggy -Froghall -Froghole -Frogley -Frogmoor -Frogmore -Frogmore Park -Frognal -Frogs -Frogs Hall -Frogs Hole -Frogs Leap -Frohling -Froissart -Frolich -From -Fromandez -Frome -Fromelles -Fromer -Fromondes -Fromwich -Fronda -Frongillo Farm -Front -Front Field -Front Royal -Frontage -Frontana -Frontenac -Frontera -Frontero -Frontier -Frontier Trail -Frontignan -Frost -Frost Creek -Frost Lake -Frost Mill -Frost Pond -Frost Valley -Frostleaf -Frostwood -Frosty -Frothingham -Froude -Froxfield -Froxmer -Froyd -Froyle -Fruen -Fruit -Fruit Barn -Fruitdale -Fruitland -Fruitledge -Fruitridge -Fruitvale -Fruitwood -Frum -Frustuck -Fry -Frye -Frye Creek -Fryer -Fryer Creek -Fryerning -Fryers -Frying Pan -Frylands -Frymans -Fryston -Fteley -Fuchia -Fuchsia -Fuel Break -Fuel Farm -Fuente -Fuente de Paz -Fugelmere -Fugere -Fugett -Fuggle -Fuggles -Fuhrman -Fujiko -Fujita -Fujiyama -Fulbeck -Fulbert -Fulbourne -Fulbright -Fulbrook -Fulcher -Fulda -Fulford -Fulham -Fulham High -Fulham Palace -Fulham Park -Fulkerson -Fulks Corner -Fulks Farm -Full View -Fullagar -Fullam -Fullbrook -Fullbrooks -Fulle -Fuller -Fuller Brook -Fuller Creek -Fuller Heights -Fuller Mount -Fullerbrook -Fullers -Fullers Farm -Fullerton -Fullham -Fulling -Fulling Mill -Fullington -Fullwell -Fulmar -Fulmead -Fulmer -Fulmer Common -Fulmor -Fulready -Fulshaw -Fulthorp -Fulton -Fulton Shipyard -Fulton Square -Fulwell -Fulwell Park -Fulwich -Fulwood -Fumasi -Fumay -Fumia -Fun -Fundus -Funke -Funston -Furbarn -Furber -Furbush -Furci -Furey -Furler -Furley -Furlong -Furlongs -Furmage -Furman -Furmanville -Furnace -Furnace Brook -Furnace Colony -Furnace Farm -Furnace Hill -Furnace Mountain -Furnari Farm -Furnedge -Furner -Furness -Furnival -Furnlea -Furrells -Furrow -Fursby -Furse -Fursorb -Furth -Further -Further Green -Furtherwick -Furtherwood -Furwood -Fury -Furze -Furze Bushes -Furze Hill -Furze Platt -Furze Vale -Furzedown -Furzefield -Furzeham -Furzehill -Furzen -Fuschia -Fusden -Futuna -Futura -Fuyatt -Fyall -Fycke -Fye Foot -Fyfe -Fyffe -Fyfield -Fyke -Fyke Hollow -Fylde -Fyne -Fynes -Fyrbeck -Fysh -Fysie -G Commercial -G Fernwood -G Hall -G K -G Leeds Infirmary -G Line -G Petersen -GEOINT -GSK Fourth -Gaage -Gabby -Gabel -Gabeli -Gabes Rock -Gabilan -Gabirol -Gable -Gable Ridge -Gables -Gabriel -Gabriele -Gabriella -Gabrielle -Gabrus -Gaby -Gadara -Gadbridge -Gadbrook -Gadbury -Gadby -Gaddesden -Gaddi -Gaddini -Gaddum -Gaddy -Gade -Gadebridge -Gadesden -Gadeview -Gadigal -Gading -Gadley -Gadmore -Gadoury -Gads Hill -Gadsby -Gadsden -Gadsen -Gadwall -Gadwell -Gae Wood -Gael -Gaerloch -Gaffery -Gaffey -Gaffney -Gafford -Gafzelle -Gaga -Gagas -Gage -Gager -Gaggin -Gagne -Gagnon -Gagos -Gahant -Gaiger -Gail -Gail Ann -Gailen -Gailine -Gaillard -Gailmor -Gailview -Gain -Gainer -Gaines -Gainesville -Gainford -Gainsboro -Gainsborough -Gainsford -Gainsport -Gainsthorpe -Gainsville -Gainswood -Gair -Gairloch -Gaisford -Gaist -Gaither -Gaither Farm -Gaither Hunt -Gaitskell -Gala -Galahad -Galanis -Galara -Galashiels -Galata -Galatea -Galaxie -Galaxy -Galbraith -Galbrath -Galbreath -Galbreth -Galda -Galdana -Gale -Gale Ridge -Galea -Galen -Galena -Galer -Gales -Gales Point -Galesborough -Galesbury -Galesi -Galesville -Galetown -Galeucia -Galewood -Galga -Galgate -Galia -Galilee -Galindo -Galitz -Gall -Gall End -Gallagher -Gallahad -Gallahan -Galland -Gallant -Gallant Fox -Gallant Green -Gallants -Gallants Farm -Gallard -Gallatin -Gallaudet -Gallegos -Gallek -Gallen -Galleon -Galleons -Galleria -Galleron -Gallery -Galletta -Galley -Galley East -Galley Hill -Galley West -Galleydean -Galleyhill -Galleywall -Galleywood -Galli -Gallia -Galliard -Galliford -Galligan -Gallimore -Gallin -Gallina -Gallinelli -Gallinson -Gallions -Gallions View -Gallipoli -Gallison -Gallivan -Gallo -Gallogate -Gallop -Gallop Hill -Galloping Hill -Gallosson -Galloupe -Galloupes Point -Galloway -Gallows -Gallows Branch -Gallows Corner Main -Gallows Green -Gallows Hill -Gallows Tree -Gallup -Gallway -Gallwey -Gallypot -Gallys -Galpin -Galpin Lake -Galston -Galsworthy -Galt -Galtier -Galton -Galty -Galusha -Galvani -Galveston -Galvez -Galvin -Galway -Galway Bay -Gamay -Gambel Oak -Gambetta -Gambia -Gambier -Gambini -Gamble -Gamble Hill -Gambles -Gamblin -Gamboa -Gambole -Gambonini -Gambrel Bank -Gambril -Gambrill -Gambrills -Gambrills Cove -Game -Game Cock -Game Creek -Game Farm -Game Lord -Game Preserve -Gamecock -Gamecock Canyon -Gamenya -Games -Gamewell -Gamid -Gamlen -Gamma -Gammell -Gammie -Gammon -Gammons -Gamon -Gamut -Gandangara -Gander -Gander Green -Gandolfi -Gandy Dancer -Gandys -Ganels -Ganges -Gangurlin -Ganic -Ganley -Ganna -Gannawatte -Ganners -Ganners Way Ganners -Gannet -Gannett -Gannett Pasture -Gannon -Gannons -Gano -Gansett -Gansevoort -Gant -Gantner -Ganton -Gantry -Ganzer -Gap -Gap Head -Gap View -Gapemouth -Gaping -Garabaldi -Garabedian -Garage -Garand -Garaventa -Garaventa Ranch -Garavogue -Garazi -Garbala -Garbarino -Garber -Garber Hill -Garbo -Garbo Ranch -Garbrook -Garbutt -Garcal -Garceau -Garces -Garcez -Garcia -Garcia Ranch -Gard -Garda -Gardella -Garden -Garden Brook -Garden City -Garden Close Hanworth -Garden Court -Garden Creek -Garden Cty -Garden Gate -Garden Grove -Garden Heights -Garden Hill -Garden House -Garden Meadow -Garden Ridge -Garden Rock -Garden Rose -Garden Terrace -Garden Tract -Garden View -Garden Wood -Gardena -Gardendale -Gardendell -Gardender -Gardener -Gardeners -Gardenia -Gardensen -Gardenside -Gardenvale -Gardenview -Gardenvine -Gardenwood -Gardere -Gardiner -Gardiner Glen -Gardiners -Gardner -Gardner Ranch -Gardners -Gardyne -Gareis -Garendon -Gareth -Garey -Garfield -Garfield Park -Garfinkle -Garford -Garforth -Garforth Main -Gargery -Gargrave -Garibaldi -Garie -Garigal -Garin -Garino -Garison -Garit -Garland -Garlands -Garlen -Garlichill -Garlick -Garlieb -Garlies -Garligne -Garling -Garlinge -Garlisch -Garlot -Garlough -Garman -Garment -Garmon -Garmont -Garnault -Garner -Garnero -Garners -Garnet -Garnet Rock -Garnett -Garnetts -Garnham -Garnica -Garnsey -Garofallo -Garofolo -Garold -Garove -Garrabrant -Garran -Garrans -Garrard -Garratt -Garratts -Garraween -Garrawille -Garrecht -Garret -Garret Hill -Garretson -Garrett -Garrett Park -Garrett Spillane -Garretts -Garric -Garrick -Garriland -Garrion -Garrison -Garrity -Garrod -Garron -Garrone -Garrong -Garrow -Garry -Garry Glen -Garry Oak -Garryanna -Garryford -Garsdale -Garside -Garside Hey -Garson -Garst -Garstang -Garston -Garswood -Gartfern -Garth -Garth Willow -Garthland -Garthmere -Garthorne -Garthorp -Garthowen -Garthwaite -Gartland -Gartleman Farm -Gartlet -Gartley -Gartmore -Gartney -Garton -Gartside -Gartwick -Garvan -Garvary -Garver -Garvey -Garvies Point -Garvin -Garvin Brook -Garvock -Garway -Garwick -Garwood -Garwood Glen -Gary -Gary Galli -Gary Hill -Gary Lee -Gary Ray -Garys Mill -Garywood -Garza -Garzoli -Garzot -Gas -Gas House -Gas Light -Gas Well -Gas Wharf -Gas Works -Gasbarri -Gascoigne -Gasconge -Gascony -Gascoyne -Gasden -Gaselee -Gashes -Gaskarth -Gaskell -Gasket -Gaskill -Gaskin -Gaskins -Gaslight -Gaspar -Gassett -Gassiot -Gassmann -Gasson -Gasson Wood -Gassons -Gast -Gastein -Gaston -Gaston Bridge -Gastville -Gaswell -Gasworks -Gaszi -Gatacre -Gataker -Gatch -Gatcombe -Gate -Gate Dancer -Gate Farm -Gate Field -Gate House -Gate Park -Gateau -Gatecliff -Gatefield -Gateford -Gateforth -Gatehall -Gatehampton -Gatehead -Gatehill -Gatehouse -Gateley -Gately -Gateon House -Gatepost -Gater -Gates -Gates Canyon -Gates Creek -Gates Green -Gates Pond -Gatesborough -Gatesby -Gatesden -Gatesgarth -Gateshead -Gateside -Gatestone -Gatestone Square -Gateview -Gatewater -Gateway -Gateway Center -Gateway Oaks -Gateway Overlook -Gateway Park -Gatewood -Gathering -Gathorne -Gathurst -Gatland -Gatley -Gatliff -Gatlin -Gatling -Gaton -Gatonby -Gatsby -Gatses -Gatter -Gatto -Gatton -Gatton Park -Gattucio -Gatward -Gatwick -Gatzmer -Gaub -Gauden -Gaudet -Gaudette -Gaudreau -Gaug Farm -Gauge -Gauger -Gaugler -Gauguin -Gauldy -Gaulin -Gault -Gaulton -Gaundabert -Gaunt -Gauntlet -Gauntlett -Gaurdino -Gautier -Gautrey -Gavel -Gavell -Gavello -Gaven -Gaverick -Gavern -Gaveston -Gavestone -Gavilan -Gavin -Gavins Pond -Gavotte -Gavrin -Gawain -Gawaine -Gawber -Gawen -Gawler -Gawne -Gawron -Gawsworth -Gawthorpe -Gay -Gay Bowers -Gay Head -Gay Lore -Gaycroft -Gaydon -Gaye -Gayfere -Gayfields -Gayford -Gayhouse -Gayhurst -Gayland -Gaylawn -Gayle -Gayley -Gayline -Gaylor -Gaylord -Gaymark -Gaymore -Gaynelle -Gaynes Hill -Gaynesford -Gaynor -Gays -Gaysham -Gaythorne -Gayton -Gayville -Gaywood -Gaza -Gazania -Gazebo -Gazehill -Gazelle -Gazos Creek -Gazza -Gazzard -Geana -Gear -Gearny -Gears -Gearty -Geary -Geaton -Geb -Gebhardt -Gebhart -Gebo -Geddes -Geddings -Geddington -Gedeney -Gedick -Gedney -Gedney Park -Gee -Geebung -Geelong -Geer -Geere -Geewan -Geffrye -Gehart -Gehb -Gehl -Gehricke -Gehrig -Gehringer -Geiger -Geigerich -Geise -Geisler -Geissler -Gelardi -Gelato -Gelb -Gelb Ranch -Gelbke -Geldart -Gelder -Gelderd -Geldert -Geldeston -Gelding -Geldner -Gelinas -Gellatly -Gellert -Gellineau -Gelling -Gelnaw -Gelndene -Gelsthorpe -Gelston -Gem -Gemalla -Gemas -Gemini -Gemma -Gemmur -Gemoore -Gemstone -Gen Mills -Gen. Kennedy -GenStar -Genazzi -Genco -Genders -Gendre -Gendron -Gene -General -General Aviation -General Heath -General Henry Knox -General Holmes -General Lee -General Mills -General Mueller -General R. W. Berry -General San Martin -General Sieben -General Smallwood -General Warren -General Waterbury -General Winglass -General Wolfe -Generals -Generation -Generations -Genes -Genesee -Genesis -Geneso -Genessee -Genest -Genesta -Genetti -Geneva -Genevieve -Genevra -Genex -Geng -Genie -Genine -Genista -Genna -Gennene -Gennep -Genner -Gennessee -Genoa -Genoble -Genotin -Genova -Genovesio -Gensell -Genstar -Genther -Gentian -Gentile -Gentilly -Gentle -Gentle Light -Gentle Shade -Gentlees -Gentles -Gentlewood -Gentner -Gentry -Gentrytown -Genty -Genualdi -Genyn -Geoffery -Geoffrey -Geoffreyson -Geoffroy -Geofrey -Geordan -Georeffy Tuttle -Georgann -Georganna -George -George Aggott -George Barton -George Baylor -George Beard -George Bell -George Brown -George C Marshall -George Clauss -George F Willett -George Green -George Groves -George Hill -George Hood -George Hunter -George Julius -George Lee -George Leven -George Lovell -George Mann -George Mason -George Mathers -George McKay -George Michas -George Mobbs -George Moran -George Nelson -George Norman -George Oaks -George P Hassett -George R. Visconti -George River -George V -George Wacker -George Washington -George Weber -George Willing -George Young -Georgean -Georgeham -Georgene -Georges -Georges River -Georgetown -Georgetown Commons -Georgetowne -Georgetta -Georgewood -Georgia -Georgian -Georgiana -Georgianna -Georgina -Georgine -Georginia -Georgio -Georjean -Gera -Gerada -Geraint -Gerald -Geraldine -Geralds -Geraldton -Geralind -Geralynn -Geran -Geranimo -Geranium -Gerard -Geraud -Gerber -Gerbera -Gerbulin -Gerda -Gerdes -Gerdts -Gerdview -Gereghty -Gerek -Geren -Gerfalcon -Gerhard -Gerhardt -Gerhig -Geri -Gericke -Gerine Blossom -Geringer -Gerino -Gerken -Gerlach -Germack -Germain -Germaine -German -German Church -Germander -Germane -Germania -Germanium -Germano -Germantown -Germantown Park -Germany -Germone -Germyn -Gernon -Gerogina -Gerome -Gerona -Geronimo -Gerpins -Gerrale -Gerrard -Gerrards -Gerrards Cross -Gerri -Gerridge -Gerring -Gerrish -Gerritsen -Gerroa -Gerry -Gerrymander -Gershom -Gershwin -Gerstner -Gerstung -Gerten -Gerth -Gertmin -Gertrude -Gertz -Gertzen -Gervais -Gervase -Gervil -Gerwig -Gesford -Geske -Gesna -Gesner -Gessner -Gest -Gestingthorpe -Getchell -Gethsemane -Getson -Gettler -Getty -Gettysburg -Getyunga -Getz -Getzelman -Geyer -Geylen -Geyser -Geyser Ridge -Geysers -Geyserville -Gg -Ggp Access -Ghadbank -Gharkey -Ghent -Gherty -Ghillotti -Ghione -Ghisletta -Ghormley -Ghost Pony -Ghostley -Ghyll -Ghyll Beck -Ghyll Side -Ghyllroyd -Giacalone -Giadeczka -Giahos -Giampaoli -Gianelli -Gianera -Gianna -Giannecchini -Gianni -Giannini -Giannone -Giant -Giant Arches -Giant Oak -Giant Panda -Giants -Giaramita -Giasson -Gib -Gibb -Gibbens -Gibbes -Gibbet -Gibbet Hill -Gibbins -Gibbon -Gibbons -Gibbons Church -Gibbons Ranch -Gibbs -Giberson -Gibfield -Gibfield Park -Gibian -Giblets -Giblett -Gibraltar -Gibraltar Island -Gibralter -Gibson -Gibson Canyon -Gibson Oaks -Gibson Transfer -Gibsons -Gidding -Giddings -Giddyhorn -Gidea -Gideon -Gideons -Gideons Point -Gidgee -Gidji -Gidley -Gidlow -Gidya -Gieger -Giegerich -Gierz -Giesbach -Giese -Gieseke -Giesen -Giesman -Giffard -Giffen -Giffin -Giffnock -Gifford -Gifford Pinchot -Giffords -Giffords Cross -Gifhorn -Gift -Gig -Gigante -Gigey -Gigg -Giggs Hill -Gighill -Gigi -Giguere -Gil Blas -Gila -Gilander -Gilardi -Gilardoni -Gilba -Gilbert -Gilbert L Bean -Gilberto -Gilbertson -Gilbey -Gilboa -Gilbourne -Gilbralter -Gilbreth -Gilbride -Gilbulla -Gilburt Hill -Gilcar -Gilchrest -Gilchrist -Gilcrest -Gilda -Gilda Brook -Gildabrook -Gildar -Gildare -Gildea -Gilden -Gildenhill -Gildenthorpe -Gilder -Gilderdale -Gilders -Gildersdale -Gildersleeve -Gildersome -Gildersome Back -Gildridge -Gile -Giles -Giles Run -Gilfeather -Gilfillan -Gilford -Gilgandra -Gilger -Gilham -Gilhams -Gill -Gill Bent -Gill Port -Gillam -Gillard -Gillbane -Gillbrook -Gilleevan -Gillen -Gillender -Gillens -Gillenwater -Gillespie -Gillespies -Gillet -Gillett -Gillette -Gilletts -Gillham -Gilliam -Gillian -Gillian Park -Gilliat -Gillick -Gillier -Gillies -Gilligans -Gillimer -Gilling -Gillingham -Gillingham Gate -Gillings -Gillis -Gillman -Gillmans -Gillmor -Gillmore -Gillon -Gillooly -Gillpepper -Gillridge -Gills -Gills Hill -Gillville -Gillwinga -Gilly -Gilma -Gilman -Gilmar -Gilmartin -Gilmer -Gilmerton -Gilmore -Gilmour -Gilmoure -Gilnow -Gilpen -Gilpin -Gilray -Gilrix -Gilroy -Gilroy Hot Springs -Gilruth -Gilsan -Gilsland -Gilson -Gilstead -Gilston -Giltbrook -Giltner -Gilton -Giltspur -Gilway -Gilwell -Gilwinga -Gilwood -Gimbal -Gimbel -Gina -Gina Nicole -Ginahgulla -Ginavale -Gincroft -Ginda -Ginden -Gindurra -Ginesi -Ginge -Gingells Farm -Ginger -Ginger Brook -Ginger Creek -Ginger Root -Ginger Wood -Ginger Woods -Gingerblossom -Gingerbread -Gingerbrook -Gingerview -Gingerwood -Gingham -Gingrich -Ginhams -Ginita -Ginkgo -Ginko -Ginley -Ginn -Ginniver -Ginny -Gino -Ginseng -Ginther -Ginu -Gio -Gioconda -Giorgano -Giovanetti -Giovannetti -Giovanni -Gipps -Gipps Cross -Gipson -Gipsy -Gipton Approach York -Gipton Oak Tree -Gipton Wood -Giralda -Girard -Giraud -Giraudo -Gird -Girdle -Girdler -Girdlers -Girdlestone -Girdwood -Gironde -Girouard -Girra -Girralong -Girraween -Girrilang -Girtin -Girton -Girvan -Girvin -Gisborn -Gisbourne -Gisburn -Gisburne -Gischel -Gisela -Gisella -Giselle -Gissing -Gist -Giuffrida -Giusti -Givan -Given -Givendale -Givens -GizMo -Gizmo -Glabe -Glabyn -Glacial Falls -Glacier -Glacier Park -Glacier Point -Glacier Ridge -Glackens -Glad -Glad Valley -Gladbeck -Gladden -Gladdie -Gladding -Glade -Glade Hill -Glade Spring -Glader -Glades -Gladeside -Gladesville -Gladeswood -Gladewright -Gladhill -Gladiator -Gladiola -Gladiolus -Gladish -Gladlands -Gladmore -Gladney -Gladnor -Gladsdale -Gladsmuir -Gladston -Gladstone -Gladstone Terrace -Gladswood -Gladville -Gladwalt -Gladwell -Gladwin -Gladwood -Gladwyn -Gladwyne -Gladys -Gladys May -Glafil -Glaisdale -Glaisher -Glaister -Glaizewood -Glamford -Glamis -Glamorgan -Glancy -Glandon -Glandore -Glandy Glen -Glanfield -Glanleam -Glanmire -Glanmor -Glanthams -Glantz -Glanville -Glanvor -Glanz -Glarner -Glarus -Glasbrook -Glascock -Glascoe -Glascow -Glaserton -Glasford -Glasgow -Glasmere -Glass -Glass House -Glass Mountain -Glassboro -Glasscock -Glassenbury -Glasser -Glasseys -Glasshill -Glasshouse -Glasslyn -Glassmanor -Glassmill -Glassop -Glassword -Glaston -Glastonberry -Glastonbury -Glatton -Glaude -Glauser -Glavis -Glaydin Woods -Glazbury -Glazebrook -Glazebury -Glazer -Glazier -Glaziers -Glazzy -Gleahaven -Gleaming Wood -Gleane -Gleaner -Gleason -Gleason Acres -Gleason Lake -Gleasondale -Gleave -Gleaves -Glebe -Glebe Heights -Glebe House -Glebe Point -Glebe View -Glebefield -Glebeland -Glebelands -Gleden -Gledhall -Gledhill -Gledhow -Gledhow Lidgett -Gledhow Park -Gledhow Valley -Gledhow Wood -Gledstanes -Gledwood -Gledwood Wood -Gleed -Gleedsville -Gleeland -Gleeson -Gleffe -Glegg -Glemar -Glen -Glen Abbey -Glen Albyn -Glen Alden -Glen Allan -Glen Alpine -Glen Alto -Glen Arbor -Glen Arms -Glen Artney -Glen Aulin -Glen Avon -Glen Ayre -Glen Bott -Glen Brae -Glen Briar -Glen Byron -Glen Cannon -Glen Canyon -Glen Carlyn -Glen Cove -Glen Cove Oyster Bay -Glen Creek -Glen Crest -Glen Cross -Glen Curtiss -Glen Dale -Glen Davies -Glen Dell -Glen Donegal -Glen Eagle -Glen Eagles -Glen Echo -Glen Edge -Glen Edin -Glen Ellen -Glen Ellyn -Glen Elyn -Glen Entrance -Glen Eyrie -Glen Faba -Glen Farm -Glen Fire -Glen Firth -Glen Flora -Glen Forest -Glen Fr -Glen Garry -Glen Gary -Glen Gate -Glen Gerry -Glen Gery -Glen Goin -Glen Gorham -Glen Gray -Glen Hanleigh -Glen Hannah -Glen Harbor -Glen Haven -Glen Head -Glen Heather -Glen Heights -Glen Hill -Glen Hollow -Glen Hook -Glen Innes -Glen Irene -Glen Isle -Glen Ivy -Glen Keith -Glen Lake -Glen Logan -Glen Lomond -Glen Manor -Glen Mar -Glen Margaret -Glen Mawr -Glen Meadow -Glen Mill -Glen Miller -Glen Mor -Glen Oak -Glen Oakes -Glen Oaks -Glen Oban -Glen Ora -Glen Ormond -Glen Park -Glen Paul -Glen Pointe -Glen Ridge -Glen Rigde -Glen Rock -Glen Rose -Glen Ross -Glen Rouken E -Glen Sharon -Glen Shell -Glen Side -Glen Spring -Glen Taylor -Glen Toro -Glen Tree -Glen Una -Glen Valley -Glen View -Glen Vista -Glen Washington -Glen Wilding -Glen Willow -Glenada -Glenaffric -Glenair -Glenaire -Glenalla -Glenallan -Glenallen -Glenalmond -Glenark -Glenarm -Glenarms -Glenarvon -Glenavon -Glenavy -Glenayr -Glenayre -Glenbar -Glenbard -Glenbarr -Glenberry -Glenboro -Glenborough -Glenbourne -Glenbrae -Glenbriar -Glenbrook -Glenbrook Crest -Glenbrook Hospital -Glenbrooke -Glenbrooke Woods -Glenbuck -Glenburne -Glenburnie -Glenby -Glencairn -Glencannon -Glencar -Glencarl -Glencarron -Glencliff -Glenclift -Glencoe -Glencorse -Glencourse -Glencourt -Glencove -Glencoyne -Glencrest -Glencroft -Glencross -Glenda -Glendale -Glendall -Glendalough -Glendarvon -Glendell -Glendene -Glendenning -Glendevie -Glendevon -Glendish -Glendon -Glendoon -Glendora -Glendower -Glenduin -Glendundee -Gleneagle -Gleneagles -Gleneden -Glenelg -Glenella -Glenellen -Glenellyn -Glenerye -Glenesk -Glenfair -Glenfaire -Glenfarg -Glenfarne -Glenfern -Glenferrie -Glenfield -Glenfield Mews -Glenfinnan -Glenford -Glenforth -Glenfruin -Glenfyne -Glengalen -Glengall -Glengarif -Glengariff -Glengarnock -Glengarrie -Glengarrif -Glengarry -Glengarth -Glengary -Glengoin -Glengreen -Glengyle -Glenham -Glenhaven -Glenhazel -Glenheath -Glenheather -Glenhill -Glenhome -Glenhouse -Glenhurst -Glenice -Glenilla -Glenisia -Glenister -Glenister Park -Glenisters -Glenkirk -Glenlake -Glenland -Glenlawn -Glenlea -Glenlee -Glenlo -Glenlock -Glenloe -Glenluce -Glenly -Glenlyn -Glenmalure -Glenmar -Glenmark -Glenmary -Glenmeadow -Glenmere -Glenmere Park -Glenmist -Glenmont -Glenmoor -Glenmora -Glenmore -Glenmore Spring -Glenmount -Glenn -Glenn Coolidge -Glenn Cove -Glenn Curtiss -Glenn Dale -Glenn Ellen -Glenna -Glennan -Glennell -Glennie -Glennon -Glenns -Glennville -Glenny -Glenoak -Glenoban -Glenoe -Glenola -Glenolden -Glenora -Glenorchy -Glenpark -Glenparke -Glenpine -Glenriddle -Glenridge -Glenrio -Glenrise -Glenrock -Glenroe -Glenrosa -Glenrose -Glenross -Glenrowan -Glenrown -Glenroy -Glens -Glensdale -Glenshaw -Glenshiel -Glenshire -Glenside -Glentham -Glenthorn -Glenthorne -Glenthorpe -Glenton -Glentrammon -Glentree -Glentrees -Glentworth -Glenugie -Glenure -Glenvale -Glenview -Glenvilla -Glenville -Glenwari -Glenway -Glenwild -Glenwillow -Glenwix -Glenwood -Glenwood Dale -Glenwood Dyer -Glenwood Lansing -Glenwoodie -Glenworth -Glenyar -Glenys -Gless -Glezen -Glidden -Gliddon -Glide -Glider -Glimpsewood -Glines -Glissade -Glisson -Glittering Light -Glnrosa -Global -Globe -Globe Farm -Globe Pond -Globe Theatre -Glodwick -Glori Dawn -Gloria -Gloria Jean -Glorietta -Glorieux -Glory -Glory Mill -Glos -Glossop -Glossop Brook -Gloster -Gloucester -Glouceston -Glouchester -Glouster -Glover -Glovers -Glovers Brook -Glow -Gloxinia -Glueck -Gluek -Glumack -Glycena -Glygena -Glymont -Glymont Crest -Glyn -Glynde -Glyndon -Glynfield -Glynis -Glynn -Glynne -Glynnis Rose -Glynwood -Gnarbo -Gnarled Oak -Gnekow -Gnesa -Goad -Goat -Goat Hall -Goat Hill -Goat House -Goat Rock -Goaters -Goatham -Goatlees -Goatley -Goatsfield -Goatsmoor -Goatswood -Gobernadores -Gobind -Gobions -Goble -Godair -Godbert -Godbold -Goddard -Goddard Memorial -Godden -Goddings -Goddington -Goddu -Goden -Godetia -Godfrey -Goding -Godington -Godinton -Godley -Godliman -Godly -Godman -Godmans -Godmond Hall -Godolphin -Godric -Godson -Godspeed -Godston -Godstone -Godstone Green -Godward -Godwin -Goebel -Goecken -Goeller -Goerke -Goes -Goesel -Goethals -Goethe -Goethe Park -Goettingen -Goetz -Goff -Goffe -Goffle -Goffle Hill -Goffs -Goffs Oak -Goffs Park -Gogel -Gogh -Gogmore -Gohagen -Goiffon -Goin -Going -Goins -Goirle -Golansky -Golborne -Gold -Gold Arbor -Gold Bar -Gold Bluff -Gold Brook -Gold Camp -Gold Canal -Gold Center -Gold Coast -Gold Country -Gold Course -Gold Creek -Gold Cup -Gold Dust -Gold Express -Gold Field -Gold Flat -Gold Flint -Gold Gulch -Gold Kettle -Gold Lake -Gold Meadow -Gold Mine -Gold Nugget -Gold Oak -Gold Parke -Gold Pointe -Gold Poppy -Gold Ridge -Gold River -Gold Run -Gold Rush -Gold Valley -Gold Yarrow -Goldberg -Goldberry -Goldborne -Goldbridge -Goldcliff -Goldcoast -Goldcrest -Goldcup -Golden -Golden Acre -Golden Acres -Golden Arrow -Golden Aspen -Golden Ball -Golden Bay -Golden Bear -Golden Canyon -Golden Centre -Golden Chapel -Golden Corn -Golden Cove -Golden Cross -Golden Days Access -Golden Eagle -Golden Eye -Golden Falcon -Golden Fleece -Golden Foothill -Golden Gate -Golden Grove -Golden Harvest -Golden Heights -Golden Hill -Golden Hills -Golden Hinde -Golden Lake -Golden Larch -Golden Leaf -Golden Light -Golden Manor -Golden Meadow -Golden Oak -Golden Oaks -Golden Pheasant -Golden Pond -Golden Poppy -Golden Post -Golden Rain -Golden Raintree -Golden Ridge -Golden Rod -Golden Rose -Golden Run -Golden Russet -Golden Sage -Golden Sands -Golden Springs -Golden Sunset -Golden Tree -Golden Triangle -Golden Valley -Golden View -Golden West -Goldencrest -Goldeneye -Goldenhill -Goldenlake -Goldenrain -Goldenrod -Goldentree -Goldenview -Goldfield -Goldfinch -Goldfinger -Goldhaber -Goldhanger -Goldhawk -Goldie -Golding -Goldingham -Goldings -Goldington -Goldlay -Goldleaf -Goldman -Goldmine -Goldney -Goldrill -Goldrings -Goldsands -Goldsberry -Goldsboro -Goldsborough -Goldsdown -Goldsel -Goldsmid -Goldsmith -Goldsmiths -Goldstein -Goldsworth -Goldsworthy -Goldthwait -Goldthwaite -Goldwell -Goldwyn -Goleta -Golf -Golf Academy -Golf Club -Golf Course -Golf Course Access -Golf Creek -Golf Crest -Golf Edge -Golf Estates -Golf Greens -Golf House -Golf Links -Golf Trail -Golf View -Golf Vista -Golfe -Golfers -Golfers Ridge -Golford -Golfview -Goliath -Gollan -Gollum -Gombert -Gomer -Gomersal -Gomes -Gomez -Gomm -Gomoljak -Gomshall -Gona -Gonda -Gondar -Gondek -Gondola -Gone Away -Gong Hill -Gonnelli -Gonsalves -Gonson -Gonville -Gonzaga -Gonzales -Gonzalez -Goobarah -Gooch -Good -Good Blood -Good Harbor -Good Hope -Good Lion -Good Luck -Good Samaritan -Good Speed -Good Spring -Good Valley -Goodacre -Goodale -Goodall -Goodboys -Goodbury -Goodchap -Goodchild -Goode -Goodell -Gooden -Goodenia -Goodenough -Goodenow -Goodey -Goodfellow -Goodge -Goodhall -Goodhart -Goodhew -Goodhill -Goodhope -Goodhue -Goodhurst -Goodier -Goodin -Gooding -Goodinge -Goodlad -Goodland -Goodlands -Goodlet -Goodloe -Goodloes Promise -Goodman -Goodmans -Goodmayes -Goodner -Goodnestone -Goodnough -Goodnow -Goodport -Goodrich -Goodrick -Goodridge -Goodrington -Goodrow -Goodsell -Goodsir -Goodson -Goodstone -Goodview -Goodvine -Goodward -Goodway -Goodways -Goodwells -Goodwill -Goodwin -Goodwives River -Goodwood -Goodworth -Goodwyn -Goodwyns -Goody -Goody Cross -Goodyear -Goodyers -Goojerat -Goold -Goold Park -Goole -Goonaroi -Goonda -Goondah -Goondari -Goora -Goorari -Goorawahl -Gooraway -Gooreen -Goorgool -Gooroa -Goose -Goose Cove -Goose Creek -Goose Glen -Goose Haven -Goose Hill -Goose Lake -Goose Point -Goose Pond -Goose Rye -Gooseacre -Gooseberry -Goosebrook -Goosecroft -Goosegreen -Gooselake -Gooseley -Gooseneck -Goostrey -Gopher -Gophir -Gopsall -Gorada -Gorby -Gordan -Gorden -Gordon -Gordon Johnston -Gordon McKinnon -Gordon Parker -Gordon Valley -Gordonhurst -Gordonia -Gordons -Gordy -Gore -Gore Court -Gore Gable -Gore Green -Goredale -Gorefield -Goresbrook -Goreside -Gorgas -Gorge -Gorgo -Gorham -Goring -Goring Heath -Gorinski -Gorizia -Gorky -Gorleston -Gorman -Gormel -Gormley -Gornall -Gorniak -Gornik -Goroka -Goroki -Gorrel -Gorring -Gorringe -Gorse -Gorse Bank -Gorse Covert -Gorse Hall -Gorse Hill -Gorse Wood -Gorses -Gorsewood -Gorsey -Gorsey Bank -Gorsey Hill -Gorsey Mount -Gorsline -Gorst -Gorstage -Gorsuch -Gort -Gortner -Gorton -Gorwin -Gory Brook -Gosbecks -Gosbell -Gosberton -Gosbrook -Gosby -Goscombs -Gosden -Gosden Hill -Gosfield -Gosforth -Goshawk -Gosheff -Goshen -Goshen Hunt -Goshen Oaks -Goshen School -Goshen Valley -Goshen View -Gosling -Gosling Hill -Gosmore -Gosnell -Gosnold -Gospel Union -Gospodnevich -Gosport -Goss -Goss Hall -Goss Pond -Gossabe -Gossage -Gossamer -Gosselin -Gossell -Gosser -Gosset -Gosshill -Gossling -Gossops -Gossops Green -Gosterwood -Gostlin -Gostling -Goswell -Goswell End -Goth -Gotham -Gotham Hill -Gothberg -Gothic -Gothland -Gothwaite -Gotland -Gott -Gottenham -Gotthardt -Gottlieb -Gotts -Gotts Park -Gottschalk -Gotzian -Goucher -Gouda -Goudhurst -Gougar -Gouge -Gough -Gougham -Goughs -Goularte -Goulburn -Gould -Gould Hill -Gouldbury -Goulden -Goulder -Gouldin -Goulding -Gouldman -Goulds -Goulston -Goulton -Gourlay -Gourley -Gousy -Gouthier -Gouverneur -Gouwens -Govan -Gove -Govenors -Gover -Government -Government Center -Government House -Governo -Governor -Governor Andrew -Governor Belcher -Governor Bridge -Governor Carver -Governor Endicott -Governor Fuller -Governor Hutchinson -Governor Long -Governor Macquarie -Governor Oden Bowie -Governor Peabody -Governor Saltonstall -Governor Winthrop -Governor Yeardley -Governors -Governors Bay -Governors Bridge -Governors Ridge -Govert -Govett -Gow -Gowan -Gowan Brae -Goward -Gowdey -Gowell -Gower -Gowerdale -Gowers -Gowin -Gowing -Gowlett -Gowrie -Goya -Goyak -Goyen -Goyt -Goyt Valley -Gozo -Grace -Grace Ann -Grace Church -Grace Estates -Grace Keller -Grace Leather -Grace Max -Grace Memorial -Grace Valley -Grace View -Gracechurch -Gracedale -Gracefield -Gracel -Graceland -Gracelands -Gracemar -Gracemere -Gracemere Lake -Gracemore -Graces -Graceview -Graceway -Gracewood -Gracey -Grachur -Gracie -Graciella -Gracin -Gracious -Gracious Pond -Gradall -Grade -Graduates -Gradwell -Grady -Graeagle -Graeloch -Graeme -Graemere -Graemesdyke -Graf -Grafe -Graff -Graffian -Graffigna -Grafton -Grafton Farm -Grafton Park -Gragg -Grago -Graham -Graham Creek -Graham Hill -Graham Park -Grahame -Grahampton -Grahm -Grahn -Graicious -Graiden -Grain -Grainery -Grainfield -Grainger -Graingers -Grains -Gralynn -Gramar School -Gramarcy -Gramatan -Gramby -Gramercy -Gramercy Park -Gramford -Grammar School -Grammercy -Grammont -Grammy -Grampian -Grams Private -Gramsie -Gran Deur -Granada -Granado -Granard -Granart -Granary -Granaston -Granborough -Granby -Grand -Grand Banks -Grand Birch -Grand Canal -Grand Canyon -Grand Central -Grand Champion -Grand Comons -Grand Corner -Grand Coulee -Grand Cru -Grand Cypress -Grand Depot -Grand Fir -Grand Hamptons -Grand Haven -Grand Highlands -Grand Hill -Grand Island -Grand Lake -Grand Meadow -Grand Mesa -Grand Oaks -Grand Park -Grand Point -Grand Pointe -Grand Prairie -Grand Pre -Grand Prix -Grand Reserve -Grand Ridge -Grand Rio -Grand River -Grand Summit -Grand Targee -Grand Terrace -Grand Teton -Grand Teton Park -Grand Tour -Grand Tree -Grand Valley -Grand View -Grandads -Grandale -Grandborough -Grandby -Grande -Grande Park -Grande Pines -Grande View -Grande Vista -Grandee -Granden -Grandfield -Grandhaven -Grandiflora -Grandin -Grandison -Grandmas -Grandparents -Grandpere -Grandshore -Grandstaff -Grandstand -Grandview -Grandwind -Grandwood Lake -Grandys -Grane -Granelli -Graney -Granfield -Grange -Grange Court -Grange Farm -Grange Fields -Grange Hall -Grange Park -Grange Valley -Grange View -Grangecourt -Grangefield -Grangefields -Grangeforth -Grangehill -Granger -Grangers Dairy -Grangethorpe -Grangewood -Grangnelli -Granison -Granite -Granite Creek -Granite Crossing -Granite Park -Granite Ridge -Granite Rock -Graniteville -Granitewood -Granlee -Granleigh -Granli -Grannis -Granniss -Granny -Gransden -Granshaw -Gransmoor -Grant -Grant Chapman -Grant Line -Grant Lorenz -Grant Mills -Grant Park -Grant School -Grantbridge -Grantham -Grantland -Grantley -Grantock -Granton -Grants -Grants Mill -Grantully -Grantwood -Granvaile -Granville -Granzotto -Grapal -Grapanche -Grape -Grape Leaf -Grape Shot -Grape Vine -Grapes -Grapevine -Grapewood -Graphic -Grappenhall -Grapple -Grasdene -Grasmead -Grasmere -Grason -Grass Lake -Grass Valley -Grasscroft -Grasselli -Grassfield -Grassholme -Grasshopper -Grassina -Grassingham -Grassington -Grassland -Grasslands -Grassmere -Grasswood -Grassy -Grassy Garth -Grassy Knoll -Grassy Pond -Grassy Slope Fire -Grassy Sprain -Grassymeade -Grater -Gratia -Graton -Gratrix -Grattan -Gratten -Gratto -Gratton -Grattons -Gratuity -Gratwicke -Grau -Gravatt -Grave -Grave Oak -Gravel -Gravel Bank -Gravel Hill -Gravel Pit -Gravel Pit Haul -Gravel Pits -Gravel Point -Graveley -Graveleythorpe -Gravelly -Gravelly Bottom -Gravelly Brook -Gravelly Hill -Gravelly Point -Gravelye -Graveney -Gravenhurst -Gravenmoor -Gravenstein -Graver -Graves -Gravesend -Gravesend Neck -Gravestone -Gravett -Gravetts -Graveyard -Gravity Car -Gray -Gray Barn -Gray Beach -Gray Beech -Gray Birch -Gray Cliff -Gray Farms -Gray Fox -Gray Hawk -Gray Heron -Gray Oaks -Gray Owl -Gray Rock -Gray Wing -Graybar -Graybill -Graybriar -Grayburn -Graydon -Grayfield -Grayfriars -Grayham -Grayhampton -Grayhawk -Grayheaven Manor -Grayhouse -Grayland -Graylawn -Graylind -Grayling -Graylock -Graylynn -Graymarsh -Graymill -Graymont -Graymoor -Graymore -Grayne -Grayon -Grayridge -Grayrigg -Grayrock -Grays -Grays Bay -Grays Creek -Grays Farm -Grays Ford -Grays Landing -Grays Park -Grays Point -Grays Pointe -Graysands -Grayscroft -Grayshire -Grayshott -Grayslake -Grayson -Grayston -Graystone -Graystone Meadow -Grayswood -Graythwaite -Grayton -Grayvine -Graywacke -Graywhaler -Graywood -Grazebrook -Grazeley -Grazeley Green -Graziano -Greacen -Greacen Point -Greame -Greany -Great -Great America -Great Ancoats -Great Arbor -Great Augur -Great Bank -Great Basin -Great Bay -Great Bend -Great Berry -Great Binfields -Great Bounds -Great Braitch -Great Bramingham -Great Brickhill -Great Bridgewater -Great Brook Valley -Great Brooms -Great Buckingham -Great Bushey -Great Canfield -Great Castle -Great Central -Great Chapel -Great Chart -Great Chertsey -Great Church -Great Circle -Great Clowes -Great College -Great Cumberland -Great Dover -Great East Neck -Great Eastern -Great Egerton -Great Egret -Great Elm -Great Elms -Great Falls -Great Falls Forest -Great Gardens -Great Gates -Great George -Great Goodwin -Great Gregories -Great Guildford -Great Hadham -Great Hall -Great Harry -Great Heron -Great Hill -Great Hills -Great Hollands -Great Horwood -Great House -Great Jackson -Great James -Great John -Great Jones -Great Kills -Great King -Great Knollys -Great Lake -Great Lakes -Great Laurel -Great Lodge -Great Mall -Great Marlborough -Great Meadow -Great Moor -Great Moss -Great Neck -Great New -Great Newport -Great Norbury -Great North -Great Northern -Great Notley -Great Oak -Great Oaks -Great Ormond -Great Owl -Great Percy -Great Peter -Great Pines -Great Plain -Great Plains -Great Pond -Great Portwood -Great Post -Great Prestons -Great Pulteney -Great Queen -Great Republic -Great Ridge -Great River -Great Rock -Great Ropers -Great Russell -Great Salt Lake -Great Smith -Great Smokey -Great South -Great Southern -Great Sutton -Great Tey -Great Thorne -Great Titchfield -Great Totham -Great Trinity -Great View -Great WInchester -Great West -Great Western -Great Wheatley -Great Whites -Great Wilson -Great Winchester -Great Windmill -Great Wood -Great Woodcote -Great Woods -Greatdown -Greate House Farm -Greatfield -Greatfields -Greatford -Greatham -Greatland -Greatness -Greatnews -Greaton -Greatrex -Greatwater -Greave -Greaves -Grebe -Grecian -Greco -Gredinger -Greeba -Greek -Greeley -Greely -Green -Green Acre -Green Acres -Green Ash -Green Bay -Green Branch -Green Briar -Green Bridge -Green Brier -Green Brook -Green Bud -Green Canyon -Green Cir -Green Circle -Green Common -Green Court -Green Cove -Green Crest -Green Croft -Green Cross -Green Dale -Green Dory -Green Duck -Green East -Green End -Green Farm -Green Farms -Green Fields -Green Fold -Green Forest -Green Garden -Green Garland -Green Glen -Green Grass -Green Grove -Green Haven -Green Hedges -Green Heron -Green Hill -Green Hills -Green Hollow -Green Holly -Green Holly Springs -Green Hundred -Green Ice -Green Island -Green Knoll -Green Knolls -Green Lake -Green Landing -Green Lawn -Green Lea -Green Leaf -Green Ledge -Green Lodge -Green Man -Green Meadow -Green Meadows -Green Mill -Green Moor -Green Moss -Green Mountain -Green Needles -Green North -Green Oak -Green Oaks -Green Orchard -Green Park -Green Pasture -Green Pastures -Green Pheasant -Green Pine -Green Point -Green Pond -Green Ranch -Green Range -Green Ravine -Green Ridge -Green River -Green Run -Green School -Green Spring -Green Springs -Green Tiles -Green Trails -Green Tree -Green Trees -Green Twig -Green Valley -Green Valley Oaks -Green Valley School -Green View -Green View Church -Green Way -Green Willow -Green Wrythe -GreenHedges -Greenacre -Greenacre Park -Greenacres -Greenall -Greenaway -Greenbach -Greenback -Greenbank -Greenbanks -Greenbaum -Greenbay -Greenbelt -Greenbelt Metro -Greenberg -Greenberry -Greenbooth -Greenboro -Greenborough -Greenbough -Greenbrae -Greenbranch -Greenbriar -Greenbridge -Greenbrier -Greenbrier Park -Greenbrook -Greenbrow -Greenburn -Greenbury -Greenbury Point -Greenbush -Greencastle -Greencastle Ridge -Greencourt -Greencrest -Greencroft -Greencroft Deans -Greencroft Hale -Greendale -Greendale Village -Greendale Villege -Greendell -Greene -Greene Field -Greene Ridge -Greeneich -Greenery -Greenfeather -Greenfern -Greenfield -Greenfield Farm -Greenfields -Greenfinch -Greenfold -Greenford -Greenfrith -Greengate -Greengates Redcar -Greenglen -Greengold -Greengrove -Greenhalge -Greenhalgh -Greenhalgh Moss -Greenhall -Greenham -Greenhaven -Greenhayes -Greenhays -Greenhead -Greenheys -Greenhill -Greenhills -Greenholme -Greenhood -Greenhorn -Greenhouse -Greenhow -Greenhurst -Greenhythe -Greening -Greenknoll -Greenknowe -Greenlake -Greenland -Greenlands -Greenlane -Greenlaven -Greenlaw -Greenlawn -Greenlay -Greenlea -Greenleach -Greenleaf -Greenleafe -Greenleas -Greenlee -Greenlees -Greenleigh -Greenlodge -Greenlook -Greenly -Greenman -Greenmead -Greenmeadow -Greenmont -Greenmoor -Greenmount -Greenoak -Greenock -Greenough -Greenpark -Greenpoint -Greenport -Greenrale -Greenridge -Greenrock -Greenroyd -Greens -Greens Arms -Greensand -Greensboro -Greensborough -Greensburgh -Greensfield -Greenshall -Greenshire -Greenside -Greenside Mortimer -Greenslade -Greensleeves -Greenslope -Greenson -Greenspan -Greenspring -Greenstead -Greensted -Greenstede -Greenstein -Greenstone -Greensview -Greensward -Greenthorn -Greenthorpe -Greentrails -Greentree -Greentree Manor -Greentrees -Greenvale -Greenvale Glen Cove -Greenvalley -Greenview -Greenville -Greenwald -Greenway -Greenway Grand -Greenway Longland -Greenway Center -Greenway Corporate -Greenway Court -Greenways -Greenweadow -Greenwell -Greenwich -Greenwich Church -Greenwich Cove -Greenwich High -Greenwich Hills -Greenwich Park -Greenwich Point -Greenwich South -Greenwich Wood -Greenwich Woods -Greenwillow -Greenwing -Greenwolde -Greenwood -Greenwood Bay -Greenwood Beach -Greenwood Cove -Greenwood East -Greenwood Hill -Greenwood Lake -Greenwood Valley -Greenwoods -Greer -Greet -Greetland -Greeves -Greg -Greg Lawn -Greg Marc -Greg Taylor -Greger -Gregerscroft -Gregford -Gregg -Gregge -Greggory -Greggs -Greggs Wood -Greggswood -Gregor -Gregori -Gregorich -Gregories -Gregories Farm -Gregorio -Gregory -Gregory Farm -Gregory Hills -Gregory Island -Gregory M Sears -Gregson -Greig -Greisen -Greiving -Gremley -Grena -Grenaby -Grenada -Grenade -Grenadier -Grenadon -Grenda -Grendale -Grendon -Grenelefe -Grenfel -Grenfell -Grengs -Grenhart -Grenier -Grennan -Grennell -Grenoble -Grenock -Grenstead -Grenton -Grenville -Grenwold -Grenwolde -Gresel -Gresham -Greshan -Gresley -Gresse -Gressenhall -Gresser -Gressinger -Grest South West -Greswell -Gretchen -Gretel -Greten -Gretna -Gretna Green -Gretter -Gretton -Greve -Greville -Greville Park -Grevillea -Grevillia -Grew -Grew Hill -Grex -Grey -Grey Barn -Grey Canyon -Grey Coach -Grey Colt -Grey Dove -Grey Eagle -Grey Finch -Grey Fox -Grey Ghost -Grey Gull -Grey Mare -Grey Mist -Grey Oaks -Grey Pebble -Grey Rock -Grey Run -Grey Seal -Grey Squirrel -Grey Towers -Grey Wall -Grey Willow -Greybert -Greybirch -Greybury -Greycaine -Greycliff -Greycliffe -Greycoat -Greydells -Greyfriars -Greygums -Greyhound -Greylag -Greylands -Greylock -Greylyn -Greymere -Greymont -Greyrock -Greys -Greyshiels -Greyshon -Greyson Creek -Greystanes -Greystead -Greystoke -Greystone -Greystones -Greyswood -Greythorne -Greyview -Greywall -Greywell -Greywing -Greywood -Gribble Bridge -Grice -Grid -Griddle -Gridley -Gridley Bryant -Grier -Grierson -Grieve Glen -Grieves -Griff -Griffanti -Griffe -Griffen -Griffey -Griffin -Griffin Brook -Griffin Farm -Griffin Oaks -Griffing -Griffing Park -Griffins -Griffiss -Griffit -Griffith -Griffith Farm -Griffith Industrial -Griffiths -Griffon -Griffth -Grifon -Grigg -Griggs -Griglio -Grigsby -Grijalva -Grill -Grimeford -Grimes -Grimley -Grimm -Grimmer -Grimmett -Grimsby -Grimsby on Oxford -Grimsdells -Grimsditch -Grimsdyke -Grimshaw -Grimsley -Grimstone -Grimthorpe -Grimwade -Grimwood -Grin Low -GrindStone -Grindal -Grindall -Grindel -Grinder -Grindle -Grindley -Grindon -Grindsbrook -Grindstone -Griner -Grinnel -Grinnell -Grinstead -Grinsted -Grinton -Grisborne -Griscom -Grisdale -Grissom -Grist Mill -Gristmill -Gristmill Square -Gristone -Griswold -Gritstone -Gritte -Grittleton -Grizedale -Grizilo -Grizzly Flat -Grizzly Island -Grizzly Oaks -Grizzly Peak -Grizzly Rock -Grizzly Terrace -Groah -Groat Point -Grobars -Grobelny -Groben -Groberg -Grobie Pond -Groby -Groce -Grochowiak -Groen -Groesbeck Hill -Groff -Grofsick -Grogan -Groh -Grohmans -Gromer -Grommet -Grommon -Grondine -Gronwall -Groom -Groom Cottage -Groombridge -Groomlands -Grooms -Groomsby -Groomsland -Groote -Gropius -Grosbeak -Grosby -Grose -Grose Farm -Groshon -Grosmont -Gross -Gross Point -Grosse -Grosse Pointe -Grosset -Grossman -Grossmont -Grossweiler -Grosvener -Grosvenor -Grosvenor Wharf -Grote -Groth -Grothman -Grotke -Groton -Groton Harvard -Groton School -Groton Shirley -Grott -Grotto -Grotto Glen -Grottoes -Ground -Ground Pine -Grounds -Groundsel -Grouse -Grouse Run -Grouserun -Grove -Grove Angle -Grove Crescent -Grove Cross -Grove End -Grove Farm -Grove Green -Grove Hall -Grove Heath -Grove Hill -Grove House -Grove Mill -Grove Park -Grovebury -Grovedale -Grovefield -Grovefields -Grovehall -Groveherst -Grovehill -Grovehurst -Groveland -Grovelands -Groveleigh -Groveley -Grovemont -Grovemore -Grovenor -Grover -Grovers -Grovers Turn -Groverville -Groves -Groveside -Grovesnor -Groveton -Groveton Gardens -Grovetown -Groveview -Grovewood -Grow -Growney -Grub -Grubb -Grubbs -Gruber -Grubwood -Gruenhagen -Gruenther -Gruenwald -Grumman -Grunauer -Grunberg -Grundel -Grundey -Grundy -Grundy County Line -Gruneisen -Grunewald -Grymes Hill -Gryphon -Grystalwood -Guadalajara -Guadalcanal -Guadalupe -Guadalupe Canyon -Guadalupe Mines -Guam -Guard -Guardian -Guardino -Guards -Guards Club -Guava -Guay -Guayamas -Guaymas -Gubbins -Gubbuteh -Gubernat -Gubyon -Gude -Gudelsky -Gudrun -Guelphs -Guenever -Guenoc -Guenter -Guenther -Guenza -Guerie -Guerin -Guerino -Guerlain -Guerne Hill -Guerneville -Guernewood -Guerneys -Guernse -Guernsey -Guernsey Farm -Guerra -Guerrero -Guertin -Guess -Guessens -Guest -Gueudecourt -Guggiano -Guggins -Guglielmetti -Guibal -Guide -Guide Post -Guider -Guido -Guidotti -Guihen -Guild -Guildables -Guildberry -Guilden -Guilder -Guildersfield -Guildford -Guildford Lodge -Guildford Park -Guildhall -Guildhouse -Guildmore -Guildner -Guildown -Guildwood -Guile -Guileshill -Guilford -Guilford Run -Guilfoy -Guilfoyle -Guillemot -Guilles -Guilliver -Guinan -Guinard -Guinda -Guinea -Guinevere -Guinions -Guinness -Guinzburg -Guion -Guise -Guisti -Guisto -Guithavon -Guittard -Gulch -Guldeford -Gulden -Gulf -Gulf Keys -Gulfport -Gulfstream -Gulia -Gulick -Gulick Mill -Gull -Gull Hill -Gull Island -Gullane -Gullet Wood -Gulliver -Gullo -Gully -Gulton -Guluzzo -Gum -Gum Blossom -Gum Bottom -Gum Grove -Gum Spring -Gum Springs -Gum Springs Village -Gum Tree -Gum Wood -Gumara -Gumbooya -Gumbuya -Gumdale -Gumdrop -Gumleigh -Gumley -Gumnut -Gumping -Gumpus -Gumtree -Gumtree Park -Gumtrees -Gumview -Gumwood -Gun -Gun Back -Gun Club -Gun Hill -Gun Meadow -Gun Pit -Gun Rock -Gunar -Gunbalanya -Gunco -Gundah -Gundain -Gundaroo -Gundawarra -Gundersen -Gunderson -Gundibri -Gundimaine -Gundry -Gundrys -Gundulph -Gungah Bay -Gungarlin -Gungurru -Gunhouse -Gunia -Gunmakers -Gunn -Gunnamatta -Gunnar -Gunnarson -Gunnedah -Gunnell Farms -Gunnels Wood -Gunner Run -Gunnerfield -Gunners -Gunners Branch -Gunnersbury -Gunnery -Gunness -Gunning -Gunnison -Gunpowder -Gunsight Fire -Gunson -Gunston -Gunston Corner -Gunston Cove -Gunston Hill -Gunstor -Gunsynd -Guntawong -Gunter -Gunters -Gunterstone -Gunther -Gunthorpe -Gunton -Guntzer -Gunwood -Gunya -Gunyah -Guptill -Gurdon -Gurdwara -Gurdwara Neville -Gurin -Gurley -Gurnee -Gurnells -Gurner -Gurnet -Gurney -Gurney Court -Gurnsey -Gurrier -Gurry -Gurton -Gus Young -Gushee -Gushue -Gussett -Gustafson -Gustav -Gustave -Gustavus -Gusted Hall -Gustin -Gustine -Gusto -Guston -Gustus -Gusty -Gusty Knoll -Gutedel -Guth -Gutheil -Gutherie -Guthmiller -Guthrie -Gutierrez -Guting -Gutkowski -Guttenberg -Gutter -Gutteridge -Gutters -Guttman -Guy -Guy Dituri -Guy Lombardo -Guy R Brewer -Guy R. Brewer -Guyer -Guyon -Guyong -Guyra -Guys -Guys Farm -Guysborough -Guyscliffe -Guysfield -Guywood -Guzman -Guzzlebrook -Gwalior -Gwandalan -Gwea -Gweal -Gwelo -Gwen -Gwenbury -Gwendale -Gwendalen -Gwendolen -Gwendoline -Gwendolyn -Gwendor -Gweneth -Gwernon -Gwin -Gwinett -Gwinette -Gwinn -Gwinnett -Gwladys -Gwyder -Gwydir -Gwydor -Gwydyr -Gwyn -Gwyndale -Gwyne -Gwynn -Gwynndale -Gwynne -Gwynne Park -Gybbons -Gyen -Gymea Bay -Gymkhana -Gymnasium -Gymoty -Gynant -Gyorr -Gypsum -Gypsy -Gypsy Hill -Gypsy Moth -Gypsy Valley -H A Wyeth Sr -H Diggs -H Fernwood -H Line Fire -H Ranch -HIghfield -HIghview -HIll -HIllside -HMS Essington -HMS Fitzroy -HMS Halsted -HMS Whitaker -Ha Ha -Haab -Haag -Haan -Haar -Haarlem -Haas -Haase -Habben -Habberton -Habel -Haben -Haber -Haberdasher -Haberfield -Habershon -Habgood -Hacianda -Hacienda -Haciendas -Hack -Hackamore -Hackberry -Hackbridge -Hacked Way -Hacken -Hacken Bridge -Hackensack -Hackensack Plank -Hacker -Hackett -Hacketts -Hacketts Pond -Hackfeld -Hackford -Hackhurst -Hacking -Hackle -Hacklorn -Hackman -Hackmans -Hackmore -Hackness -Hackney -Hackney Dalston -Hackney Coach -Hackney Tesco Morning -Hackwood -Hacton -Hadbutt -Haddam -Haddassah -Haddaway -Hadde -Hadden -Haddenfield -Haddenham -Haddesley -Haddington -Haddo -Haddock -Haddon -Haddon Hall -Haddonfield -Haddow -Hadenfeld -Hadfield -Hadham -Hadland -Hadleigh -Hadleigh Park -Hadley -Hadley Farms -Hadley Green -Hadley Hill -Hadley Run -Hadley Wood -Hadlow -Hadlow Down -Hadrian -Hadwen -Hadwin -Hadyn Park -Haeg -Haegers Bend -Haering -Haerse -Haeseler -Hafenrichter -Hafer -Hafey -Haff -Hafner -Hafstrom -Haft -Hafton -Hag Bank -Hag Hill -Haga -Hagadorn -Hagafen -Hagaman -Hagan -Hagans -Hagar -Hagdell -Hage -Hagel -Hageman -Hagemann -Hagen -Hagen Oaks -Hagenberger -Hager -Hagerman -Hagert -Haggard -Hagger -Haggers -Haggerston -Haggerty -Haggetts Pond -Haggie -Haggin -Haggin Oaks -Haglands -Hagley -Haglis -Haglund -Hagman -Hagsdell -Hague -Hague Bar -Hahl -Hahman -Hahn -Hahnemann -Hahns -Haider -Haidlen -Haig -Haigh -Haigh Moor -Haigh Park -Haigh Wood -Haighside -Haight -Haile -Hailey -Hailsham -Hailstone -Haimo -Hainault -Haines -Haines Ranch -Haining -Hainline -Hainsworth -Hainthorpe -Haire -Haise -Haislip -Haith -Haiti -Hakea -Hal -Halaper -Halbert -Halborn -Halco -Halcomb -Halcourt -Halcrow -Halcyon -Haldane -Haldeman -Halden -Haldon -Hale -Hale Haven -Hale House -Hale Low -Hale Oak -Hale Park -Hale Ranch -Haleakala -Halebank -Haledon -Halefield -Halepit -Hales -Hales Hollow -Hales Trace -Halesden -Halesmith -Halesowen -Haleswood -Halesworth -Halethorpe -Halethorpe Farms -Halevy -Haley -Haley Meadows -Haleybird -Half -Half Acre -Half Crown -Half Day -Half Dome -Half Edge -Half Mile -Half Moon -Half Moon Bay -Half Penny -Half Round -Halfacre -Halfcrown -Halfe -Halfhide -Halfmoon -Halford -Halfpence -Halfpenny -Halfway -Halgren -Haliard -Haliburton -Halibut -Halick -Haliday -Halifax -Halifield -Haligus -Halimote -Halina -Halinda -Haling -Halite -Halkin -Halkins -Halko -Hall -Hall Acres -Hall Brown -Hall Creek -Hall Farm -Hall Green -Hall House -Hall Lee -Hall Meadow -Hall Memorial -Hall Moss -Hall Park -Hall Place -Hall Pond -Hall Pool -Hall Ranch -Hall Shop -Halladay -Hallam -Hallandale -Hallberg -Hallbright -Hallbrook -Hallcrest -Halleck -Hallefield -Hallen -Hallenoak -Haller -Hallet -Hallet Davis -Hallett -Hallett Hill -Halley -Hallfields -Hallgate -Hallgren -Halli -Halliday -Halliden -Halliford -Halligan -Hallin -Hallingbury -Hallister -Halliwell -Halliwick -Hallman -Hallmark -Hallmead -Hallo -Hallock -Hallocks Point -Halloran -Hallow -Hallow Vale -Halloway -Halloween -Hallowell -Hallowing -Hallows -Hallran -Hallron -Halls -Halls Green -Halls Grove -Halls Hole -Hallsfield -Hallside -Hallsons -Hallstead -Hallsville -Hallswelle -Halltown -Hallwicks -Hallwood -Hallworth -Hally -Halm Oak -Halmar -Halmore -Halmos -Halmstad -Halnaker -Halo -Halock -Halperin -Halpine -Halsall -Halsbrook -Halsbury -Halse -Halsey -Halsford -Halsford Park -Halsley -Halsmere -Halstad -Halstead -Halsteads -Halsted -Halston -Halstone -Halsworth -Halt -Halter -Halterman -Halton -Halton Cross -Halton Moor -Halton Wood -Haltwhistle -Halvard -Halverson -Halvorsen -Halwis -Halyard -Halycon -Ham -Ham Ashburnham -Ham Ashburnham -Ham Mill -Ham Park -Haman -Hamand -Hamann -Hamar -Hamas -Hambalt -Hamberlins -Hamberts -Hambey -Hamble -Hambledon -Hambledown -Hamblen -Hamblet -Hambleton -Hambletonian -Hamblett -Hamblin -Hambly -Hamborough -Hambrick Manor -Hambridge -Hambro -Hambrook -Hamburg -Hamden -Hamel -Hamelin -Hamels -Hamelyn -Hamer -Hamerick -Hamersley -Hamerstone -Hamerton -Hames -Hamesmoor -Hamfrith -Hamilcar -Hamill -Hamilton -Hamilton Hill -Hamilton Manor -Hamilton Park -Hamilton Spring -Hamiltonian -Hamlen -Hamlet -Hamlet Court -Hamley -Hamlin -Hamlin Park -Hamline -Hamline Service -Hamm Moor -Hammarlee -Hammatt -Hammel -Hammelton -Hammer -Hammer Hill -Hammer Hook -Hammerhead -Hammerlee -Hammerpond -Hammers -Hammerschmidt -Hammersley -Hammersmith -Hammerstone -Hammerton -Hammertown -Hammerwood -Hammes -Hammett -Hammitt -Hammock -Hammon -Hammond -Hammond Branch -Hammond Pond -Hammonds -Hammonds End -Hammonds Ferry -Hammonds Plains -Hammondswood -Hammons -Hammonton -Hamnett -Hamon -Hamor -Hamowell -Hampden -Hampden Gurney -Hampel -Hampermill -Hampers -Hampshire -Hampshire Green -Hampshire Hog -Hampson -Hampson Mill -Hampstead -Hampstead High -Hamptom Park -Hampton -Hampton The -Hampton Brook -Hampton Course -Hampton Court -Hampton Creek -Hampton Hill -Hampton Hollow -Hampton Hunt -Hampton Knoll -Hampton Lake -Hampton Oak -Hampton Park -Hampton Point -Hampton Ridge -Hampton Woods -Hamptondale -Hamptons -Hampworth -Hamrick -Hamsell -Hamsley -Hamson -Hamstead -Hamstel -Hamstreet -Hamstrom -Hamton -Hana -Hanameel -Hanback -Hanburg -Hanbury -Hanby -Hance -Hancey -Hanchett -Hanco Center -Hancock -Hancock Hill -Hancombe -Hancott -Hancox -Hancroft -Hand -Handcroft -Handcross -Handel -Handford -Handforth -Handle -Handlebar -Handley -Handley Page -Hands -Handside -Handsworth -Handverg -Handwerg -Handy -Handzel -Hane -Hanes -Haney -Hanfling -Hanford -Hangar -Hanger -Hanger Vale -Hanging Birch -Hanging Chadder -Hanging Hill -Hangings -Hangmans -Hanian -Hanifan -Hanigan -Hank -Hanken -Hankerson -Hankes -Hankin -Hankins -Hanks -Hankshaw -Hanlan -Hanley -Hanlon -Hanly -Hanlye -Hanmer -Hanmore -Hanna -Hanna Bay -Hanna Park -Hanna Ranch -Hannaford -Hannah -Hannah Farm -Hannah Pearl -Hannahs Pond -Hannam -Hannan -Hannans -Hannay -Hanne -Hannen -Hannerton -Hannes -Hannet -Hannett -Hannibal -Hannigan -Hannington -Hannis -Hannon -Hannons -Hannora -Hannover -Hanns -Hannum -Hano -Hanover -Hanrahan -Hanrehan Lake -Hans -Hansard -Hansborough -Hansbury -Hansby -Hansch -Hanscom -Hanse -Hansel -Hansell -Hansen -Hansens -Hansford -Hanshaw -Hansler -Hansletts -Hanslow -Hansol -Hansom -Hanson -Hanson Ridge -Hanton -Hantz -Hanus -Hanway -Hanworth -Hanyards -Hap Arnold -Hapgood -Happ -Happy -Happy Acres -Happy Choice -Happy Creek -Happy Heart -Happy Hills -Happy Hollow -Happy Valley -Happy Valley Glen -Happyland -Hapton -Hara -Haralson -Haran -Haraszthy -Harback -Harbell -Harben -Harbern -Harberson -Harberton -Harberts -Harbet -Harbin -Harbinger -Harbison -Harbledown -Harbolets -Harbor -Harbor Bay -Harbor Court -Harbor Heights -Harbor Hill -Harbor Hills -Harbor House -Harbor Light -Harbor Lights -Harbor Oak -Harbor Oaks -Harbor Park -Harbor Place -Harbor Point -Harbor Ridge -Harbor Side -Harbor Terrace -Harbor Town -Harbor Tree -Harbor Valley -Harbor View -Harbor Villa -Harbord -Harboro -Harborough -Harborough Hall -Harborside -Harborview -Harborwood -Harbour -Harbour Club -Harbour Cove -Harbour Farm -Harbour Gates -Harbour Heights -Harbour Point -Harbour Shore -Harbour Town -Harbour View -Harbourer -Harbourfield -Harbourne -Harbourtown -Harbourwood -Harbridge -Harbury -Harbut -Harby -Harcombe -Harcourt -Harcross -Harcus -Hard Platts -Hardan -Hardaway -Hardcastle -Harde -Hardees -Hardeman -Harden -Harden Hill -Hardenbergh -Hardenburg -Hardenburgh -Harder -Harders -Hardess -Hardester -Hardesty -Hardfield -Hardie -Hardies -Hardiman -Hardin -Harding -Harding Hall -Hardinge -Hardings -Hardings Elms -Hardman -Hardmans -Hardrock -Hardrow -Hards -Hardscrabble -Hardwell -Hardwick -Hardwicke -Hardwidge -Hardwood -Hardwood Forest -Hardy -Hardy Mill -Hardy Pond -Hardy Ridge -Hardywood -Hare -Hare Farm -Hare Hall -Hare Hill -Harebell -Harecombe -Harecourt -Harecroft -Haredale -Harefield -Harehatch -Harehills -Harehills Compton -Harehills Easterly -Harehills Park -Harelands -Hares -Haresfield -Hareshill -Harestone -Harestone Valley -Hareward -Harewood -Harewood Arms The -Harff -Harfield -Harford -Harfred -Harg -Hargate -Hargate Hill -Harger -Hargo -Hargold -Hargood -Hargrave -Hargraves -Hargreaves -Hargrove -Hargus -Hargwyne -Haring -Haring Farm -Haringa -Haringey -Harjean -Hark -Harkeith -Harker -Harkhurst -Harkim -Harkin -Harking -Harkins -Harkins Slough -Harkison -Harkle -Harkleroad -Harkness -Harlan -Harland -Harlands -Harle -Harlea -Harlech -Harledene -Harleigh -Harlem -Harlem River -Harlequin -Harlescott -Harlesden -Harlesden Manor Park -Harleston -Harley -Harley Run -Harleyford -Harlin -Harling -Harlinger -Harlington -Harliss -Harlow -Harlowe -Harlyn -Harman -Harmans -Harmans Water -Harmel -Harmer -Harmer Green -Harmich -Harmon -Harmon Meadow -Harmoni -Harmony -Harmony Acres -Harmony Grove -Harmony Hall -Harmony Hill -Harmony Ranch -Harmony Woods -Harms -Harmston -Harmsworth -Harn Ranch -Harnden -Harned -Harness -Harness Creek -Harness Creek View -Harness Shop -Harnett -Harney -Harnham -Harnish -Harnleigh -Harnley -Harold -Harold Court -Harold Hill Gooshays -Harold Lees -Harold Parker -Harold Secord -Harold Smith -Harold Woods -Haroldene -Harolds -Haroldslea -Haroldstone -Harp -Harp Farm -Harp Meadow -Harpenden -Harper -Harper Fold -Harper Green -Harpers -Harpers Cove -Harpers Farm -Harpers Ferry -Harpers Mill -Harpesford -Harpford -Harpin -Harpole -Harpour -Harps -Harps Oak -Harpsden -Harpster -Harptree -Harpur -Harpur Hill -Harpurhey -Harrabrook -Harraden -Harrel -Harrell -Harreton -Harridge -Harrier -Harriet -Harriet Tubman -Harriett -Harriette -Harrigan -Harriman -Harringay -Harrington -Harrington Ridge -Harriot -Harriots -Harriott -Harriotts -Harris -Harris Farm -Harris Heights -Harris Hill -Harris Hills -Harris Pond -Harrisburg -Harrishof -Harrison -Harrison Grade -Harrison Hill -Harrison Hollow -Harrison School -Harrisons -Harristown -Harrisville Main -Harrivan -Harrod -Harrogate -Harrogate on Oxford -Harrold -Harrop -Harrop Court -Harrop Edge -Harrop Green -Harrow -Harrow Bottom -Harrow View -Harroway -Harrowband -Harrowby -Harrowden -Harrowdene -Harrowgate -Harrowhill -Harrows -Harrowsgate -Harry -Harry Davis -Harry Homans -Harry J Rogowski -Harry S Truman -Harrys -Harseille -Harsek -Harshman -Harston -Hart -Hart Dyke -Hart Farm -Hart Forest -Hart Hill -Hart Hills -Hart Mews -Harte -Hartell -Harter -Hartfield -Hartford -Hartford Hills -Hartforde -Hartgate -Harthall -Hartham -Harthill -Harthouse -Hartigan -Harting -Harting Farm -Hartington -Hartis -Hartkopf -Hartlake -Hartland -Hartlawn -Hartles -Hartley -Hartley Bottom -Hartley Court -Hartley Old -Hartman -Hartman Creek -Hartman Hill -Hartmann -Hartnell -Hartness -Hartnett -Hartnoll -Hartnup -Hartog -Harton -Hartong -Hartrey -Hartridge -Harts -Harts Hill -Harts Leap -Hartsbourne -Hartsburg -Hartsdale -Hartsfield -Hartshead -Hartshill -Hartshorn -Hartshorne -Hartslands -Hartsmead -Hartson -Hartsop -Hartspiece -Hartspring -Hartsuff -Hartswood -Hartung -Hartungs Oaks -Hartville -Hartway -Hartwell -Hartwich -Hartwick -Hartwood -Harty -Harty Ferry -Hartz -Hartzell -Haruff -Harugari -Harvale -Harvard -Harvard Bend -Harvard Depot -Harve -Harvel -Harvell -Harvest -Harvest Bank -Harvest Bend -Harvest Crossing -Harvest Falls -Harvest Field -Harvest Gold -Harvest Green -Harvest Hill -Harvest Landing -Harvest Mills -Harvest Moon -Harvest Oak -Harvest Park -Harvest Ridge -Harvest Run -Harvest Sun -Harvest Valley -Harvest View -Harvest Woods -Harvester -Harvester Farm -Harvesting -Harvestwood -Harvey -Harvey Lake -Harvil -Harvill -Harville -Harvist -Harwalt -Harwarden -Harwater -Harway -Harwell -Harwich -Harwick -Harwill -Harwin -Harwood -Harwood Hall -Harwoods -Hasbrouck -Hascall -Hascomb -Hascombe -Haseco -Hasedines -Haseldine -Haseley -Haselfoot -Haselrigge -Haseltine -Haselwood -Hasey -Haskard -Haskell -Hasker -Hasketon -Haskett -Haskin -Haskins -Haskney -Haskoll -Haslam -Hasle -Haslemere -Hasler -Haslers -Haslet -Haslett -Haslewood -Hasley -Haslingbourne -Hasluck -Haspel -Hassake -Hassal -Hassall -Hassard -Hassart -Hasselburgh -Hassell -Hassenbrook -Hassendean -Hassert -Hasset -Hassett -Hassler -Hassock -Hassocks -Hassold -Hassop -Hastards -Haste -Haste Hill -Hasted -Hasting -Hastings -Hastings Island -Hastings Mill -Hastings Shore -Hastingwood -Hastoe -Hasty -Hatch -Hatch Gate -Hatch Way -Hatcham -Hatcham Park -Hatchard -Hatcher -Hatchery -Hatches -Hatchet Rock -Hatchett -Hatchetts -Hatchfield -Hatchgate -Hatchlands -Hatchley -Hatchway -Hatcliff -Hatfield -Hatford -Hatham Green -Hathaway -Hatherall -Hatherleigh -Hatherley -Hatherlow -Hatherly -Hathern -Hatherop -Hathersage -Hathersham -Hathershaw -Hatherton -Hatheway -Hathorn -Hathorne -Hathway -Hatley -Hatmark -Hatmill -Hatona -Hatpat -Hattan -Hatte Gray -Hatter -Hatteraick -Hatters -Hatters Hill -Hattersley -Hattie -Hattingley -Hatton -Hatton Point -Hattons -Hatzis -Hauck -Haug -Hauge -Haugh -Haugh Hill -Haughton -Haughton Green -Haughton Hall -Haughwout -Haul -Haultain -Hauman -Hauppauge -Hauschildt -Hauser -Hauser Bridge -Hausman -Haussermann -Haussler -Haussmann -Haussner -Hautevale -Hauth -Hauxhurst -Havana -Havannah -Havant -Havard -Havasu -Havelock -Havelok -Havemeyer -Haven -Haven Green Gordon -Haven Hill -Havenbrook -Havencrest -Havendale -Havenfield -Havengore -Havenhill -Havenhurst -Havenner -Havenpark -Havens -Havensbrook -Havenscourt -Havenshire -Havenside -Havenview -Havenwood -Havenworth -Haverfield -Haverford -Haverhill -Havering -Haverley -Haverlock -Havermeyer -Havers -Haversack -Haversham -Haverstock -Haverthwaite -Haverton -Havey -Havil -Havilah -Havilan -Haviland -Haviland Mill -Havilend -Havis -Havisham -Havlicek -Havre -Havre de Grace -Haw -Haw Clough -Hawaii -Haward -Hawarden -Hawbeck -Hawbridge -Hawdon -Hawes -Haweswater -Haweswood -Hawfinch -Hawgood -Hawhorn -Hawick -Hawk -Hawk Channel -Hawk Crest -Hawk Green -Hawk Hallow -Hawk Haven -Hawk Hill -Hawk Hollow -Hawk Ridge -Hawk View -Hawk Yard -Hawkaway -Hawkchurch -Hawke -Hawke Park -Hawken -Hawkenbury -Hawker -Hawkes -Hawkesbourne -Hawkesbury -Hawkesbury Bush -Hawkesfield -Hawkesmore -Hawkewood -Hawkeye -Hawkfield -Hawkhill -Hawkhirst -Hawkhurst -Hawkins -Hawkins Creamery -Hawkins Gate -Hawkins Hall -Hawkins Point -Hawkridge -Hawks -Hawks Bill -Hawks Hill -Hawks Hollow -Hawks Nest -Hawks Peak -Hawks on Second -Hawksbrook -Hawksbury -Hawkshaw -Hawkshead -Hawkshill -Hawkslade -Hawksley -Hawksmoor -Hawkstone -Hawksview -Hawkswick -Hawkswood -Hawksworth -Hawktree -Hawkview -Hawkweed -Hawkwell -Hawkwell Park -Hawkwood -Hawley -Hawley Woods -Hawleys -Hawlings -Hawlings River -Haworth -Hawridge -Haws -Hawsbrook -Hawser -Hawstead -Hawth -Hawthorn -Hawthorn Park -Hawthorne -Hawthorne Farms -Hawthorne Hill -Hawthorne Ridge -Hawthorne Woods -Hawthrone -Hawtree -Hawtree Creek -Hawtrey -Hawxhurst -Haxby -Haxted -Haxtun -Hay -Hay Camp -Hay Creek Hills -Hay Creek Valley -Hay Currie -Hay Green -Hay Meadow -Hay Path -Haybarn -Hayberry -Haybluff -Hayburn -Haycock -Hayday -Hayden -Hayden Brook -Hayden Lake -Hayden Rowe -Haydens -Haydn -Haydock -Haydon -Haydon Park -Haydons -Hayenga -Hayes -Hayes George -Hayes Lansbury -Hayes End -Hayes End Angel -Hayes Hill -Hayes Leonard -Hayes Manor -Hayes Memorial -Hayes Wood -Hayesford Park -Hayeswater -Hayfield -Hayfields -Hayford -Hayhouse -Hayhurst -Hayle -Hayle Mill -Hayleigh -Hayles -Haylett -Hayley -Haylind -Hayling -Hayloft -Haymaker -Haymakers -Hayman -Haymarket -Haymeadow -Haymeads -Haymen -Haymerle -Haymet -Haymill -Haymond -Hayne -Haynes -Haynes Green -Haynesworth -Hayrack -Hayrick -Hays -Haysbrook -Haysden -Hayshire -Haystack -Hayter -Haythorp -Hayvick -Hayward -Hayward Farms -Hayward Mill -Haywards -Haywards Heath -Haywood -Hayworth -HazEl -HazElton -HazElwood -Hazard -Hazebrouck -Hazel -Hazel Crest -Hazel Dell -Hazel End -Hazel Nut -Hazel Ridge -Hazel Thicket -Hazel Tree -Hazelbadge -Hazelbank -Hazelbottom -Hazelbourne -Hazelbridge -Hazelbrook -Hazelbury -Hazelcrest -Hazeldean -Hazeldell -Hazeldene -Hazeldon -Hazeleigh Hall -Hazelglen -Hazelgrove -Hazelhurst -Hazell -Hazellville -Hazelmead -Hazelmere -Hazelmoor -Hazelnut -Hazelrig -Hazels -Hazeltine -Hazeltine Bluff -Hazelton -Hazeltree -Hazelview -Hazelwick -Hazelwick Mill -Hazelwood -Hazen -Hazlebank -Hazlebury -Hazledean -Hazlehurst -Hazlemere -Hazlet -Hazleton -Hazlett -Hazlewell -Hazlewood -Hazley -Hazlitt -Hazzard -Heacham -Heacox -Head -Headcorn -Headingley -Headingley North -Headingley Shaw -Headingly -Headington -Headlam -Headland -Headlands -Headley -Headley Common -Headley High -Headley Hill -Headline -Headly -Headquarters -Headrow -Headstone -Headwater -Headwaters -Heady Hill -Heafey -Heald -Healds -Healdsburg -Healdwood -Healey -Healing -Health Center -Health Sciences -Healthway -Healy -Healy Farm -Heaney -Heapey -Heapey Fold -Heapworth -Heapy -Heard -Hearford -Hearle -Hearn -Hearne -Hearns -Hearnshaw -Hearnville -Hearsall -Hearst -Heart Leaf -Heartbreak -Heartenoak -Heartfields -Hearth -Hearthridge -Hearthside -Hearthstone -Hearthwood -Heartland -Heartland Ranch -Heartlander -Hearts Bay -Hearts Delight -Heartstead -Heartwood -Heath -Heath Close -Heath Cote -Heath End -Heath Farm -Heath Green -Heath Hall -Heath House -Heath Hurst -Heath Mill -Heath Park -Heath View -Heathbank -Heathbrook -Heathbrow -Heathcliff -Heathclose -Heathcote -Heathcroft -Heathdale -Heathdene -Heather -Heather Crest -Heather Dawn -Heather Dell -Heather Down -Heather Garden -Heather Glen -Heather Green -Heather Heights -Heather Hill -Heather Hills -Heather Mist -Heather Point -Heather Ridge -Heather Tree -Heatherbloom -Heatherbrook -Heathercreek -Heatherdale -Heatherden -Heatherdene -Heatherfield -Heatherhill -Heatherland -Heatherleaf -Heatherleigh -Heatherley -Heathermead -Heathermore -Heathermount -Heatherpace -Heatherside -Heatherstone -Heathertoe -Heatherton -Heatherton Ridge -Heathertree -Heathervale -Heatherview -Heatherway -Heatherwick -Heatherwold -Heatherwood -Heatherwood Estates -Heathfield -Heathfields -Heathgate -Heathhurst -Heathland -Heathlands -Heathlee -Heathleigh -Heathmans -Heathmoor -Heathorn -Heathpark -Heathrow -Heaths Bridge -Heathside -Heathside Park -Heathstan -Heathvale Bridge -Heathview -Heathwalk -Heathwall -Heathway Church Elm -Heathwick -Heathwood -Heathyfields -Heatley -Heaton -Heaton Grange -Heaton Moor -Heaton Park -Heavegate -Heaven -Heaven Hill -Heavenly -Heavenly Ridge -Heaver -Heavey -Heavilin -Heavitree -Hebard -Hebberd -Hebburn -Hebden -Hebe -Heber -Hebert -Heberto -Heberton -Hebron -Hechinger -Hecht -Heckel -Heckelman -Hecker -Hecker Pass -Heckfield -Heckford -Heckle -Heckmondwike -Heckmondwike Regent -Heckmondwyke Market -Heckscher -Hecla -Hectic Hill -Hector -Hedberg -Hedding -Heddings -Heddon -Heddy -Hedegard -Hedge -Hedge Hopper -Hedge Neck -Hedge Place -Hedge Row -Hedgeford -Hedgehog -Hedgehope -Hedgeman -Hedgemans -Hedger -Hedgerley -Hedgerow -Hedges -Hedges Run -Hedgeside -Hedgetop -Hedgewick -Hedgewood -Hedgley -Hediger -Hedin -Hedingham -Hedley -Hedlund -Hedman -Hedrick -Hedsor -Hedwig -Hedworth -Hedy -Heel -Heelan -Heelas -Heeley -Heenan -Heene -Heeswyk -Hefferman -Heffernan -Heflin -Hegarty -Hegel -Hegeman -Hegemans -Hegerty -Heggen -Heggs -Hegi -Heide -Heideburg -Heidelberg -Heiden -Heidenrich -Heidi -Heidi Ranch -Heidleberg -Heidleburg -Heidorn -Heidorn Ranch -Heidrick -Heiges -Heigham -Heights -Heights Of Hill -Heighway -Heikes -Heil -Heilicia -Heiling -Heilsburg -Heimel -Heimgartner -Heims -Hein -Heindel -Heindrich -Heine -Heinel -Heiner -Heinestrasse -Heinke -Heinrich -Heins -Heinz -Heinze -Heinzelman -Heirloom -Heiron -Heiser -Heiskell -Heitzman -Hejka -Hekenberg -Helado -Helby -Helden -Heldt -Heldts -Heldun -Helen -Helen Macintosh -Helen Power -Helena -Helene -Helens -Helenslea -Helenwood -Helfred -Helfrich -Helga -Heling -Helio -Helions -Helios -Heliotrope -Helix -Hellard -Hellards -Hellen -Hellen Lee -Hellendoorn -Hellenic -Heller -Helles -Hellings -Hellman -Hellweg -Hellwig -Hellwood -Hellyer -Helm -Helm Cottage -Helman -Helmar -Helmart -Helmer -Helmet -Helmetta -Helmetta Jamesburg -Helmick -Helmond -Helmons -Helmont -Helmore -Helmsdale -Helmshore -Helmsley -Helmstetter -Helmuth -Helo -Help -Helperby -Helsby -Helsel -Helston -Helton -Heltzer -Helva -Helvellyn -Helvetia -Helvetta -Heman -Hemberton -Hembree -Hembroff -Hembury -Hemdean -Hemel Hempstead -Hemenway -Hemery -Hemet -Heming -Hemingford -Hemington -Hemingway -Hemishor -Hemley -Hemlock -Hemlock Hill -Hemlock Park -Hemlock Pool -Hemlock Ridge -Hemlock Tree -Hemlock Woods -Hemman -Hemme -Hemmen -Hemmer -Hemming -Hemmingsen -Hemmington -Hemmingway -Hemmons -Hemnall -Hemond -Hemp -Hempcroft -Hemphill -Hempland -Hempshaw -Hempshire -Hempson -Hempstead -Hempstead Valley -Hempstone -Hemsby -Hemsley -Hemstal -Hemstead -Hemsted -Hemstock -Hemswell -Hemsworth -Hemwood -Hen Fold -Henage -Henaor -Henbury -Henchman -Henconner -Hendale -Hendee -Hendel -Henderson -Henderson Corner -Hendham -Hendler -Hendley -Hendon -Hendre -Hendrick -Hendricks -Hendrickson -Hendrie -Hendrix -Hendry -Hendy -Henessy -Henfield -Henfold -Hengist -Henham -Henhawk -Henhurst -Henhurst Cross -Heniker -Henitz -Henke -Henkels -Henley -Henley Marine -Henley Wood -Henmar -Henmarken -Henn Parks -Henna -Henneberry -Hennen -Hennepin -Hennepin Town -Hennes -Hennessey -Hennessey Ridge -Hennessy -Hennig -Henniker -Henning -Hennings -Hennion -Hennipen -Henno -Henno Ranch -Hennon -Henny Back -Henoch -Henon -Henri -Henri Hill -Henrici -Henricks -Henrickson -Henrico -Henrietta -Henrik Ibsen Park -Henriques -Henry -Henry Adams -Henry Cowell -Henry Dixon -Henry Doulton -Henry Fleet -Henry Ford II -Henry Garnett -Henry Herz -Henry Hudson -Henry J -Henry Jackson -Henry Kendall -Henry Knox -Henry L. -Henry Lawler -Henry Lawson -Henry Lee -Henry Legg -Henry Long -Henry Macaulay -Henry Peters -Henry Turner Bailey -Henrys -Henryson -Hens Rest -Hensel -Henshall -Henshaw -Henshawe -Hensill -Hensler -Hensley -Henslowe -Henson -Henty -Henwick -Henwood -Henwood Green -Henzi -Henzie -Hepburn -Hepburn Heights -Hepher -Hepley -Hepner -Heppleton -Heppner -Hepscott -Hepworth -Herald -Herald Harbor -Herath -Herb -Herb Elliot -Herb Farm -Herb Hill -Herbage Park -Herbalist -Herbazal -Herberg -Herbert -Herbert Breclaw -Herbert Creek -Herbert Sachs -Herbert Springs -Herberts Crossing -Herbertson -Herbhill -Herbill -Herbing -Herbrand -Herbst -Herchell -Hercies -Hercules -Herd -Herdlyn -Heredia -Heredity -Hereford -Herendon -Herent -Herevale Hall -Hereward -Herford -Herfort -Herga -Hergesell -Herget -Hering -Heriot -Heristone -Heritage -Heritage Crossing -Heritage Estates -Heritage Farm -Heritage Farms -Heritage Glen -Heritage Hill -Heritage Hills -Heritage Hunt -Heritage Lake -Heritage Landing -Heritage Manor -Heritage Meadow -Heritage Meadows -Heritage Oaks -Heritage Park -Heritage Rose -Heritage Square -Heritage Tree -Heritage Valley -Heritage Village -Heritage Woods -Herkimer -Herkner -Herkomer -Herley -Herlihy -Herlong -Herma -Hermaine -Herman -Herman Melville -Hermann -Hermans -Hermany -Hermasillo -Hermes -Hermies -Hermina -Hermine -Hermington -Hermiston -Hermit -Hermit Ranch -Hermitage -Hermitage Hills -Hermits -Hermitt -Hermleigh -Hermon -Hermon Hill Chigwell -Hermongers -Hermosa -Hermoyne -Hernandez -Hernando -Hernbrook -Herndon -Herne -Hernen -Herning -Herns -Hero -Herodian -Herold -Heron -Heron Bay -Heron Flight -Heron Lake -Heron Lakes -Heron Pond -Heron Wood -Herondale -Herons -Herons Nest -Herons Run -Heronslea -Heronswood -Herontye -Heronvue -Heronwood -Heroult -Heroux -Herpers -Herr -Herren -Herrera -Herrett -Herrick -Herricks -Herrier -Herries -Herriman -Herring -Herring Bay -Herring Brook -Herring Creek -Herring Pond -Herring Weir -Herringham -Herrings -Herrington -Herriot -Herriott -Herristone -Herrmann -Herrod -Herron -Hersam -Hersand -Hersch Farm -Herschel -Herschell -Hersey -Hersham -Hershey -Hershfield -Hershner -Hershon -Hersley -Hersman -Hersperger -Herst -Herston -Hertel -Herter -Hertford -Hertingfordbury -Hertslet -Hertsmere -Hervey -Hervey Park -Hervines -Herwick Hall -Herzel -Herzl -Herzog -Hesket -Hesketh -Hesketh Meadow -Heskin -Heslop -Hespeller -Hesper -Hesperian -Hesperus -Hess -Hesse -Hesse Farm -Hessel -Hesseltine -Hession -Hessle -Hessler -Hessney -Hesten -Hester -Hester Creek -Hestercombe -Hesterman -Heston -Heswall -Hetfield -Hetherden -Hetherington -Hetherton -Hethorn -Hethrow -Hetley -Heton -Hetrick -Hett -Hetten -Hettiefred -Hettinger -Hetton -Hetts -Hetzel -Heuer -Heurich -Heusted -Heustis -Heuters -Hevelyne -Hever -Hever Court -Hever Wood -Heverham -Hevern -Hevers -Hevey -Hevingham -Hew Watt -Hewart -Hewbold Hall -Hewer -Hewes -Hewetson -Hewett -Hewins -Hewins Farm -Hewison -Hewitt -Hewitts -Hewlett -Hewlett Heath -Hewlett Neck -Hewlett Point -Hewmason -Hews -Hewshott -Hewson -Hexal -Hexem -Hexham -Hextol -Hexton -Hexton Hill -Hey -Hey Beck -Hey Hoe Woods -Heybourne -Heybridge -Heybrook -Heycroft -Heyde -Heydon -Heyer -Heyes -Heyes Farm -Heyeswood -Heyford -Heygate -Heyheads New -Heykens -Heyland -Heyman -Heynes -Heyridge -Heyrod -Heys -Heysbank -Heysen -Heysham -Heyshoot -Heyside -Heysoms -Heyson -Heythorp -Heyward -Heyward Hills -Heywood -Heywood Fold -Heywood Hall -Heywood Old -Heyworth -Hezlet -Hezlett -Hh -Hi Grade -Hi Lo -Hi Vista -Hi Wood -Hialeah -Hiar -Hiawatha -Hibbard -Hibbert -Hibbling -Hibel -Hibernia -Hibiscus -Hibler -Hibner -Hichborn -Hichisson -Hickerson -Hickey -Hickey Hollow -Hickin -Hickman -Hickmans -Hickock -Hickok -Hickory -Hickory Bend -Hickory Cliff -Hickory Creek -Hickory Forest -Hickory Hill -Hickory Hills -Hickory Hollow -Hickory Knoll -Hickory Leaf -Hickory Nut Grove -Hickory Oaks -Hickory Point -Hickory Ridge -Hickory Run -Hickory Spring -Hickory Tavern -Hickory Trace -Hickory Valley -Hickory Wood -Hickorywood -Hickox -Hicks -Hicks Corner -Hicks Point -Hicks Valley -Hickson -Hickstead -Hicksville -Hickton -Hidalgo -Hidcote -Hidden -Hidden Acres -Hidden Bay -Hidden Brick -Hidden Bridge -Hidden Brook -Hidden Canyon -Hidden Cove -Hidden Creek -Hidden Falls -Hidden Farm -Hidden Fawn -Hidden Garden -Hidden Glade -Hidden Glen -Hidden Green -Hidden Harbor -Hidden Hill -Hidden Hills -Hidden Hollow -Hidden Knoll -Hidden Lake -Hidden Lakes -Hidden Ledge -Hidden Meadow -Hidden Mine -Hidden Moon -Hidden Oak -Hidden Oakes -Hidden Oaks -Hidden Pine -Hidden Pines -Hidden Point -Hidden Pond -Hidden Ponds -Hidden Ridge -Hidden River -Hidden River View -Hidden Spring -Hidden Springs -Hidden Trail -Hidden Vale -Hidden Valley -Hidden View -Hidden Village -Hiddenbrook -Hiddenbrooke -Hiddenhollow -Hiddenlake -Hiddenvale -Hiddenwood -Hide A Way -Hide Away -Hideaway -Hideout -Hides -Hideway -Hieber -Hield -Higate -Higbee -Higbie -Higby -Higdon -Higfh Bank -Higgerson -Higginbotham -Higgins -Higgins Park East -Higgins Park South -Higgins Park West -Higgins Purisima -Higgins Quarter -Higginshaw -Higginson -Higgs -High -High Ash -High Bank -High Bar -High Barn -High Beech -High Beeches -High Bent -High Bluff -High Bridge -High Broom -High Brooms -High Cedar -High Clear -High Cliff -High Cliffe -High Country -High Court -High Crest -High Cross -High Dewar -High Down -High Eagle -High Easter -High Elm -High Elms -High Farms -High Field -High Forest -High Gables -High Gate -High Glen -High Green -High Grove -High Grove Hills -High Gulch -High Haith -High Halden -High Hamstead -High Hatch -High Hay -High Hill -High Hills -High Holborn -High Hollow -High Hope Canyon -High House -High Knob -High Knoll -High Lake -High Lea -High Lee -High Legh -High Level -High Low -High Meadow -High Meadows -High Meads -High Mountain -High Oak -High Oaks -High Oxford -High Park -High Path -High Peak -High Pine -High Pines -High Plain -High Plains -High Plane -High Point -High Point Trails -High Pond -High Rid -High Ridge -High Rock -High Rocks -High School -High School Windmill -High School Windsor -High Site -High Terrace -High Thicket -High Timber -High Tor -High Town -High Trail -High Tree -High Trees -High Valley -High View -High View School -High Weardley -High Wood -High Woodhall -High Woods -High Wych -HighLands -Higham -Higham Hill -Higham School -Highams -Highbank -Highbanks -Highbarrow -Highboro -Highbourne -Highbridge -Highbrook -Highbury -Highbush -Highclere -Highcliff -Highcliffe -Highclove -Highcotts -Highcourt -Highcrest -Highcroft -Highcross -Highdales -Highdaun -Highdown -Highdown The Manor -Highdown Hill -Higher -Higher Barn -Higher Bents -Higher Bridge -Higher Bury -Higher Cambridge -Higher Carr -Higher Chatham -Higher Cross -Higher Darcy -Higher Dean -Higher Grange -Higher Green -Higher Knutsford -Higher Lime -Higher Lomax -Higher Market -Higher Ormond -Higher Pit -Higher Shady -Higher Swan -Higher Tame -Higher Turf -Higherdale -Highet -Highett -Highfield -Highfield Park -Highfields -Highgate -Highgate High -Highgoal -Highgrove -Highhill -Highhold -Highknob -Highland -Highland Corporate -Highland Creek -Highland Estates -Highland Farm -Highland Glen -Highland Grove -Highland Hall -Highland Heights -Highland Hills -Highland Lake -Highland Meadows -Highland Oaks -Highland Park -Highland Ridge -Highland Springs -Highland View -Highland Vista -Highland Woods -Highlander -Highlands -Highlandview -Highlawn -Highledge -Highlever -Highline -Highmead -Highmeadow -Highmoor -Highmore -Highmount -Highover -Highpath -Highpoint -Highpointe -Highridge -Highrise -Highrock -Highs -Highschool -Highshore -Highstead -Highsted -Highstream -Highthorne -Hightimber -Hightop -Hightown -Hightree -Highvale -Highview -Highwater -Highway -Highwood -Highwoodhall -Highwoods -Highworth -Higland -Higley -Higmoor -Higson -Higton -Higuera -Higuero -Higuero Highland -Hihn -Hihns Sulphur Spring -Hikido -Hikmat -Hil Ray -Hila -Hilaire -Hiland -Hilarita -Hilary -Hilbar -Hilbert -Hilbery -Hilborn -Hilborough -Hilbre -Hilburn -Hilbury -Hilcot -Hilda -Hilda May -Hildarose -Hildaville -Hilde -Hildebrand -Hildegard -Hildegarde -Hilden -Hilden Park -Hildenborough -Hildene -Hildens -Hilder -Hilderbrand -Hilders -Hilding -Hildreth -Hildyard -Hileen -Hileman -Hiles -Hiley -Hiley Brook -Hilfield -Hilgard -Hilgrove -Hilier -Hiline -Hilingdon -Hiliritas -Hill -Hill Born -Hill Brow -Hill Burne -Hill Climb -Hill Cot -Hill Court -Hill Crest -Hill Cumorah -Hill Dyke -Hill End -Hill Farm -Hill Field -Hill Girt Ranch -Hill Glen -Hill Green -Hill Hollow -Hill House -Hill Meade -Hill Meadow -Hill Oaks -Hill Park -Hill Path -Hill Point -Hill Pond -Hill Ridge -Hill Side -Hill Top -Hill Top View -Hill Trail -Hill View -Hillaire -Hillairy -Hillandale -Hillando -Hillantrae -Hillard -Hillard Lake -Hillars Heath -Hillary -Hillary Farm -Hillas -Hillbarn -Hillberg -Hillborough -Hillbottom -Hillbourne -Hillbrook -Hillbrooke -Hillbrow -Hillburn -Hillbury -Hillcap -Hillcot -Hillcote -Hillcourt -Hillcreek -Hillcrest -Hillcrest Park -Hillcrest View -Hillcroft -Hillcroome -Hillcross -Hilldale -Hilldeane -Hilldene -Hilldirk -Hilldown -Hilldrop -Hillegass -Hillen -Hillend -Hillendale -Hiller -Hillersdon -Hillery -Hillesden -Hillesley -Hilleyfield -Hillfield -Hillflower -Hillfoot -Hillgate -Hillgirt -Hillgrade -Hillgrove -Hillhaven -Hillhouse -Hillhurst -Hilliard -Hilliards -Hillidge -Hillier -Hilliers -Hilliger -Hilline -Hillingdon -Hillington -Hillis -Hillman -Hillmarton -Hillmead -Hillmeade -Hillmeyer -Hillmont -Hillmoor -Hillock -Hilloway -Hillpine -Hillplace -Hillridge -Hillrise -Hillrod -Hillrose -Hills -Hills Farm -Hills View -Hills of Claire -Hillsboro -Hillsboro Hunt -Hillsborough -Hillsdale -Hillshire -Hillside -Hillside Manor -Hillside Park -Hillside View -Hillsleigh -Hillslope -Hillsman -Hillsmere -Hillspark -Hillspoint -Hillspur -Hillstone -Hillstowe -Hillsview -Hillswood -Hillthorpe -Hillton -Hilltop -Hilltop Mall -Hilltree -Hillturn -Hillvale -Hillveiw -Hillview -Hillway -Hillwick -Hillwood -Hillworth -Hilly -Hillyard -Hillybarn -Hillydeal -Hillyer -Hilma -Hilmar -Hilmay -Hilmer -Hilmont -Hilo -Hilow -Hilrose -Hilsden -Hilsea -Hilsinger -Hiltibrand -Hilton -Hilton Fold -Hilton Head -Hilton Hill -Hilts -Hilversum -Hilwa -Himelfarb -Himley -Himmel -Himoor -Himrod -Hinchen -Hinchinbrook -Hinchingham -Hinchley -Hinchman -Hinckley -Hinckley Basin Fire -Hincks -Hind -Hind Hill -Hinde -Hindemith -Hindes -Hindhay -Hindhead -Hindiyeh -Hindle -Hindleap -Hindles -Hindley -Hindley Mill -Hindmans -Hindmarsh -Hindostan -Hindrey -Hinds -Hindsford -Hine -Hinemoa -Hines -Hing -Hingham -Hingston -Hinguar -Hinkle -Hinkler -Hinkley -Hinksden -Hinman -Hinricher -Hinsbrook -Hinsdale -Hinson Farm -Hinspeter -Hinstock -Hinston -Hinswood -Hinterlong -Hinton -Hinton Manor -Hinton Ranch -Hintz -Hintzewater -Hinxman -Hipley -Hipplers -Hipsley Mill -Hipwood -Hirabayashi -Hiram -Hird -Hirliman -Hiromi -Hirsch -Hirschberg -Hirst -Hirtes -Hirth -Hiscox -Hisperry -Historic -Historic Country -Historical -History -Hitch -Hitch Common -Hitcham -Hitchcock -Hitchcock Farm -Hitchen -Hitchen Hatch -Hitches -Hitchin -Hitching Post -Hitchings -Hitchins -Hitchwood -Hither Farm -Hitherbroom -Hithercroft -Hitherfield -Hitherwell -Hitherwood -Hito -Hitsman -Hitter -Hittinger -Hitty Tom -Hive -Hix -Hixberry -Hixon -Hixson -Hixson Farm -Hjelm -Hllwood -Hnery -Hoad -Hoade -Hoadley -Hoadly -Hoag -Hoagland -Hoaglands -Hob -Hob Hey -Hobamack -Hobart -Hobbayne -Hobbes -Hobbie -Hobbis -Hobbitt -Hobble Bush -Hobblebush -Hobbs -Hobbs Brook -Hobbs Cross -Hobbs Hill -Hobby -Hobcroft -Hobday -Hobdens -Hobe -Hoberg -Hobert -Hobhouse -Hobie -Hobler -Hobletts -Hobleythick -Hoboken -Hobomack -Hobomock -Hobson -Hobson Hollow -Hobson Mill -Hobson Moor -Hobson Oaks -Hobson Trails -Hobson Valley -Hobtoe -Hobury -Hochler -Hock Farm -Hockenden -Hocker -Hockerill -Hockering -Hockerley -Hockers -Hockett -Hockey -Hockin -Hocking -Hockley -Hockliffe -Hockney -Hocroft -Hoddam -Hodder -Hoddesdon -Hoddeston -Hoddle -Hodds -Hodel -Hodge -Hodge Clough -Hodgedale -Hodges -Hodgkins -Hodgkinson -Hodgson -Hodings -Hodlmair -Hodnett -Hodsoll -Hodson -Hoe -Hoe Mill -Hoecroft -Hoeder -Hoeffner -Hoeg -Hoehn -Hoelands -Hoen -Hoen Frontage -Hoerl -Hoestock -Hoeweed -Hoff -Hoffer -Hoffman -Hoffman Woods -Hoffmans -Hoffstead -Hoffstots -Hoford -Hofstra -Hog -Hog Farm -Hog Hatch -Hog Hill -Hog Neck -Hogan -Hogarth -Hogback -Hogback Wood -Hogbarn -Hogben -Hogden -Hoge -Hogeland Mill -Hogenkamp -Hogfair -Hogg -Hogg End -Hogg Memorial -Hoggshill -Hoghole -Hogmoor -Hogoak -Hogscross -Hogsdell -Hogshaw -Hogshaw Villas -Hogshill -Hogsmill -Hogspudding -Hogstough -Hogtrough -Hogue -Hogwood -Hohener -Hohlfelder -Hohman -Hoile -Hoiles -Hoiting -Hoitt -Hokah -Hokanson -Hoke -Holabird -Holasek -Holbeach -Holbeam -Holbeche -Holbeck -Holbeck Moor -Holbein -Holbek -Holberton -Holborn -Holborn Theobalds -Holborough -Holborow -Holbrook -Holbrook School -Holbrooke -Holburn -Holburne -Holcolme -Holcomb -Holcombe -Holcombe Old -Holcott -Holcroft -Holdcroft -Holden -Holden Clough -Holden Park -Holden Pond -Holdenby -Holdener -Holdenhurst -Holdenwood -Holder -Holderith -Holderman -Holderness -Holdernesse -Holders -Holders Hill -Holdfast -Holding -Holdridge -Holdrum -Holdsworth -Hole -Hole House -Holeclaw -Holegate -Holehouse -Holeman -Holesapple -Holeton -Holey -Holford -Holgate -Holhouse -Holiday -Holiday Hill -Holiday Hills -Holiday Park -Holiday Plaza -Holiday Ranch -Holin -Holister -Holkein -Holker -Holkham -Hollace -Hollacher -Holladay -Holladay Park -Holland -Holland Cliffs -Holland House -Holland Meadow -Holland Park -Holland Tract -Holland Villas -Hollanda -Hollander -Hollands -Hollar -Hollaway -Hollbrook -Hollen -Hollenbeck -Hollers -Hollerton -Holles -Hollett -Holley -Holleys -Holleyside -Hollhey -Holliben -Hollice -Hollicks -Hollickwood -Hollicombe -Holliday -Hollies -Holligrave -Hollin -Hollin Hey -Hollin Hill -Hollin Park -Hollinbank -Hollincross -Hollindale -Hollingdon -Hollinger -Hollings -Hollingshed -Hollingswood -Hollingsworth -Hollington -Hollingworth -Hollinhall -Hollinhurst -Hollins -Hollins Ferry -Hollins Green -Hollinsmoor -Hollinswood -Hollinsworth -Hollinwood -Hollis -Hollis Canyon -Hollis Court -Hollis Wood -Hollist -Hollister -Holliston -Holliwood -Hollman -Holloman -Hollow -Hollow Hill -Hollow Log -Hollow Oak -Hollow Park -Hollow Ridge -Hollow Spring -Hollow Tree -Hollow Tree Ridge -Hollow View -Hollow Way -Hollow Wood -Holloway -Holloways -Hollowbrook -Hollowdale Farm -Hollowell -Hollowfield -Hollowood -Hollowside -Hollowstone -Holly -Holly Auto Center -Holly Bank -Holly Beach Farm -Holly Berry -Holly Briar -Holly Bush -Holly Creek -Holly Crest -Holly Croft -Holly Cross -Holly Dene -Holly Farm -Holly Farms -Holly Forest -Holly Gate -Holly Gillingham -Holly Glen -Holly Green -Holly Grove -Holly Haven -Holly Hedge -Holly Hedges -Holly Hill -Holly Hills -Holly Hock -Holly House -Holly Knoll -Holly Lake -Holly Landing -Holly Leaf -Holly Loch -Holly Lynn -Holly Manor -Holly Marie -Holly Oak -Holly Park -Holly Point -Holly Ridge -Holly Spring -Holly Tree -Holly View -Holly la Access -Hollyann -Hollybank -Hollyberry -Hollybrook -Hollyburne -Hollybush -Hollycrest -Hollycroft -Hollycross -Hollydale -Hollyedge -Hollyfield -Hollyford -Hollygate -Hollygrape -Hollyhead -Hollyhedge -Hollyhey -Hollyhill -Hollyhock -Hollylea -Hollymead -Hollymeade -Hollymeoak -Hollymoor -Hollymount -Hollyoak -Hollyridge -Hollyrood -Hollys -Hollyshaw -Hollyspring -Hollythorn -Hollytree -Hollyview -Hollywater -Hollywood -Holm -Holm Mill -Holm Oak -Holman -Holmard -Holmbank -Holmbrook -Holmbury -Holmbury Hill -Holmbush -Holmcroft -Holmdale -Holmdel -Holmdel Middletown -Holmdell -Holmdene -Holme -Holme Farm -Holme House -Holme Lacey -Holme Lea -Holme Wood Felcourt -Holme Wood Heysham -Holme Wood Landscove -Holmead -Holmebrook -Holmefield -Holmehill -Holmemoor -Holmer -Holmer Green -Holmerdale -Holmes -Holmes Run -Holmesdale -Holmesley -Holmespun -Holmeswood -Holmethorpe -Holmewell -Holmewood -Holmfield -Holmfirth -Holmhurst -Holmlea -Holmleigh -Holmpark -Holmquist -Holmscroft -Holmshill -Holmside -Holmsley -Holmsley Field -Holmstall -Holmstead -Holmwood -Holmwood View -Holness -Holohan -Holroyd -Holsclaw -Holsing -Holsman -Holst -Holste -Holstein -Holster -Holstock -Holston -Holstrom -Holsworth -Holsworthy -Holt -Holt Head -Holt Park Chestnut -Holt Wood -Holtby -Holtdale -Holte -Holter -Holtermann -Holthouse -Holton -Holton Woods -Holts -Holtsmere End -Holtspur -Holtspur Top -Holtye -Holtz -Holub -Holway -Holwell -Holwell Hyde -Holwick -Holwood -Holworthy -Holy City -Holy Cross -Holy Harbour -Holy Name -Holy Ridge -Holy Trinity -Holybourne -Holybread -Holybrook -Holyfield -Holyoak -Holyoake -Holyoke -Holyport -Holyrood -Holywell -Holywood -Holzheimer -Homan -Homann -Homans -Hombrook -Home -Home Acres -Home Crest -Home Depot -Home Farm -Home Gate -Home Guard -Home Lawn -Home Meadows -Home Park -Home Park Mill Link -Home Place -Homebury -Homebush -Homebush Bay -Homecoming -Homecrest -Homecroft -Homedale -Homedean -Homefarm -Homefield -Homefields -Homeglen -Homeland -Homelands -Homelea -Homeleigh -Homemead -Homemeadow -Homeplace -Homepride -Homer -Homer Wheaton -Homerite -Homerlee -Homers -Homers Wood -Homersham -Homerton -Homerton High -Homes -Homes Park -Homesdale -Homeside -Homesite -Homespun -Homestake -Homestall -Homestead -Homestead Farm -Homestead Heights -Hometown -Homeview -Homeward -Homeward Glen -Homeward Hill -Homeward Hills -Homewards -Homewood -Homewood Landing -Hommann -Hommell -Hommocks -Homsted -Homsy -Honda -Honduras -Hone -Honest Pleasure -Honesty -Honey -Honey Bear -Honey Bridge -Honey Brook -Honey Creek -Honey Croft -Honey End -Honey Hill -Honey Lake -Honey Locust -Honey Pot -Honey Suckle -Honeybear -Honeybee -Honeybourne -Honeybrook -Honeycomb -Honeycritch -Honeycrock -Honeycross -Honeydew -Honeygold -Honeyhill -Honeymoon -Honeymyrtle -Honeynut -Honeysett -Honeysuckle -Honeysuckle Rose -Honeytree -Honeywell -Honeywood -Honfleur -Honford -Hong Kong -Honiss -Honister -Honiton -Honker -Honley -Honnicut -Honnor -Honolulu -Honor -Honor End -Honor Oak -Honora -Honore -Honors -Honsa -Honsena -Hontar -Honved -Honywood -Hoo -Hoo Green -Hoobyar -Hood -Hood Farm -Hood Franklin -Hood School -Hooded Crow -Hooe -Hooes -Hooffs Run -Hook -Hook Creek -Hook End -Hook Farm -Hook Gate -Hook Green -Hook Harbor -Hook Heath -Hook Hill -Hook Mountain -Hooke -Hookend -Hooker -Hookhouse -Hooking -Hooklands -Hookley -Hookmill -Hooks -Hooks Hall -Hookstile -Hookston -Hookstone -Hookwood -Hooley -Hooleyhay -Hooper -Hooper High -Hooper Lake -Hoopers -Hoopes -Hoosic -Hoot Owl -Hooten -Hooton -Hoover -Hoover Farm -Hooyman -Hop -Hop Brook -Hop Garden -Hop Gardens -Hop Pocket -Hop Ranch -Hopark -Hopatcong -Hope -Hope Acres -Hope Carr -Hope Chapel -Hope Farm -Hope Fold -Hope Hey -Hope Park -Hopeco -Hopedale -Hopefield -Hopehouse -Hopeland -Hopelea -Hopes Farm -Hopestill -Hopestill Brown -Hopeton -Hopetoun -Hopewell -Hopewell Farm -Hopewood -Hopfield -Hopgarden -Hopgood -Hophurst -Hopi -Hopke -Hopkin -Hopkins -Hopkins Gulch -Hopkinson -Hopkinton -Hopman -Hoppa -Hopper -Hopper Farm -Hoppers -Hoppett -Hoppin -Hoppin Hill -Hopping -Hopping Brook -Hopping Jacks -Hoppingwood -Hoppit -Hoppner -Hopps -Hoppys -Hops -Hopson -Hopton -Hopwood -Hopyard -Horace -Horace Darling -Horace Harding -Horace Ward -Horatio -Horbling -Horbor -Horbury -Horcajo -Horde -Horder -Hordern -Horderns -Horeb -Horest -Horewood -Horgan -HorizOn -Horizen Island -Horizon -Horizon Hts -Horizons -Horkesley -Horley -Horley Lodge -Horlock -Horman -Hormead -Horn -Horn Beam -Horn Blower -Horn Point -Horn Pond Brook -Hornash -Hornbaker -Hornbeam -Hornbeam Hill -Hornbeams -Hornbeck -Hornblower -Hornbrook -Hornbuckle -Hornby -Horncastle -Hornchurch -Hornchurch Grosvenor -Horndean -Horne -Horne Tooke -Hornecastle -Hornell -Horner -Hornes Green -Hornet -Horneywood -Hornez -Hornfair -Hornhill -Hornidge -Horning -Horning sea Park -Horningsea Park -Horns -Horns Lodge -Horns Oak -Hornsby -Hornsea -Hornsey -Hornsey Park -Hornshay -Hornshill -Hornsmill -Hornton -Horridge -Horrigan -Horrobin -Horrocks -Horrocks Fold -Horsa -Horse -Horse Center -Horse Ferry -Horse Guards -Horse Hill -Horse Hollow -Horse Island -Horse Lake -Horse Pen -Horse Pond -Horse Prairie -Horse Shoe -Horseblock -Horsebrass -Horsedge -Horsefair -Horseferry -Horseforth -Horsegrove -Horseguard -Horseguards -Horsehead -Horseless Carriage -Horsell -Horsell Common -Horselydown -Horseman -Horsemans -Horsemans Canyon -Horsemoor -Horsenden -Horseneck -Horseneile -Horsepond -Horseshoe -Horseshoe Bend -Horseshoe Hill -Horseshoes -Horsetail -Horsewash -Horsfall -Horsfeld -Horsfield -Horsford -Horsforth Town -Horsham -Horsley -Horsman -Horsmann -Horsmonden -Horsnell -Horst -Horsted -Hort -Hortense -Hortensia -Horton -Horton Bridge -Horton Hill -Hortonia Point -Hortree -Hortus -Horwath -Horwedel -Horwich -Horwood -Hory -Hosack -Hosdens -Hoser -Hosey -Hosey Common -Hosford -Hosford Hills -Hosie -Hosier -Hosker -Hoskier -Hoskin -Hosking -Hoskins -Hoskinson -Hosler -Hosmer -Hospital -Hospital Cent Ser -Hospital High -Hospital Ring -Hosta -Hostetter -Hotaling -Hotchkin -Hotchkiss -Hotel -Hotham -Hother -Hothersall -Hothfield -Hothorn -Hotin -Hotley Bottom -Hotson -Hotspur -Hottel -Hotten -Houbolt -Houchin -Houde -Hough -Hough End -Hough Hall -Hough Hill -Hough Side -Hough Tree -Houghend -Houghley -Houghton -Houghton Green -Houghton Park -Houldsworth -Houldworth -Houle -Houlton -Hound House -Hound Run -Houndhill -Houndmaster -Houndmills -Houndridge -Hounds -Hounds Ditch -Houndsden -Houndsfield -Houndsworth -Hounslow -Hounslow High -Hour Glass -Houret -Hourglass -Hourihan -Hourseywood -Housatonic -House -House Rock -House Works -House of Correction -Houselands -Houseley -Houseman -Houser -Housley -Housman -Houson -Houston -Houtman -Houtmann -Houts -Hove -Hoveden -Hovefields -Hovell -Hoven -Hovenden -Hoverman -Hovey -Hovingham -Hovis -How -How Green -How Lea -Howard -Howard Castle -Howard Chapel -Howard Farm -Howard Farms -Howard Gleason -Howard Grove -Howard Hills -Howard Lake -Howard Landing -Howard Manor -Howard Park -Howards -Howards Point -Howards Wood -Howardton -Howarth -Howarth Cross -Howatt -Howbourne -Howbridge -Howbridge Hall -Howbro -Howbury -Howden -Howden Clough -Howdy -Howe -Howe Green -Howell -Howell Mountain -Howells -Howerton -Howes -Howes Brook -Howgate -Howgill -Howie -Howison -Howitt -Howitzer -Howkins -Howland -Howland Hill -Howlands -Howlett -Howletts -Howley -Howley Mill -Howley Park -Howliston -Hows -Howse -Howsen -Howser -Howsin -Howsman -Howson -Howth -Howton -Hoxett -Hoxey -Hoxie -Hoxton -Hoxton Baring -Hoxton Park -Hoy -Hoya -Hoyer -Hoyet -Hoylake -Hoyle -Hoyles -Hoyles Mill -Hoym -Hoyne -Hoysville -Hoysville Manor -Hoyt -Hoyts -Hoyts Wharf -Hoytt -Hozz -Hren -Hub -Hubbard -Hubbard Gulch -Hubbard Park -Hubbard School -Hubbards -Hubbardston -Hubbardton -Hubbartt -Hubbell -Hubberd -Hubbert School -Hubble -Huber -Hubert -Hubert H Humphrey -Hubon -Hubs Point -Huck -Huckins -Huckleberry -Huckleberry Hill -Hucklow -Hud -Hudcar -Huddart -Huddart Park -Huddersfield -Huddleson -Huddleston -Huddlestone -Huddy -Hudee -Hudis -Hudleston -Hudnall -Hudner -Hudson -Hudson Bay -Hudson Bluff -Hudson Crest -Hudson Landing -Hudson Park -Hudson River -Hudson Service -Hudswell -Huehl -Huehn -Huerto -Huested -Huey -Huff -Hugel Hill -Hugenot -Huggins -Hugh -Hugh Bennett -Hugh Cargill -Hugh Dalton -Hugh Dickson -Hugh Fraser -Hugh Hill -Hugh Lupus -Hugh Muir -Hughan -Hughen -Hughenden -Hughes -Hughesdale -Hughey -Hughline -Hugletts -Hugo -Hugon -Huguenot -Hugus -Huhtala -Huie -Huizenga -Hula -Hulbert -Hulet -Hulfords -Hull -Hull Shore -Hullbridge -Hulley -Hulls -Hulls Mill -Hulme -Hulme Hall -Hulme High -Hulmes -Hulseheath -Hulton -Humar Pond -Humber -Humberstone -Humbert -Humblebee -Humboldt -Humbolt -Humbug -Humbug Creek -Hume -Hume Hall -Humes -Humma Yeppa -Hummer -Humming -Hummingbird -Hummingbird Hill -Hummock -Hump -Humphrey -Humphreys -Humphries -Humphrys -Hunbldt -Huncoat -Huncote -Hundertmark -Hundred Acre -Hundred Acres -Hundred Oaks -Hundredhouse -Hundreds -Hundsford -Hunewill -Hunger Hill -Hunger Hills -Hungerden -Hungerford -Hungers -Hungry Harbor -Hungry Hill -Hungry Hollow -Hunington -Hunkele -Hunken -Hunnable -Hunner -Hunnewell -Hunnicutt -Hunolt -Hunsaker -Hunsaker Canyon -Hunsdon -Hunslet -Hunslet Hall -Hunsley -Hunstanton -Hunston -Hunsworth -Hunt -Hunt Club -Hunt Country -Hunt Farm -Hunt Fold -Hunt Hill -Hunt Manor -Hunt Master -Hunt Meadow -Hunt Ridge -Hunt Valley -Hunt Way -Huntchase -Huntcliff -Hunteigh -Hunter -Hunter Creek -Hunter Hill -Hunter Mill -Hunter Mountain -Hunter Ridge -Hunter View -Hunter Village -Hunterbrook -Hunterbrooke -Huntercombe End -Hunterdon -Hunters -Hunters Chase -Hunters Club -Hunters Creek -Hunters Den -Hunters Gate -Hunters Glen -Hunters Grove -Hunters Hall -Hunters Harbor -Hunters Hill -Hunters Point -Hunters Ridge -Hunters Valley -Hunters View -Huntersend -Hunterspoint -Hunterton -Huntfield -Huntgate -Hunting -Hunting Creek -Hunting Crest -Hunting Farms -Hunting Gate -Hunting Hill -Hunting Hollow -Hunting Horn -Hunting Horse -Hunting Hound -Hunting Lake -Hunting Quarter -Hunting Ridge -Hunting Shire -Huntingdale -Huntingdon -Huntingfield -Huntingfields -Huntington -Huntington Bay -Huntington Commons -Huntington Estates -Huntington Farm -Huntington Squ -Huntington Square -Huntington Village -Huntington Woods -Huntingtown -Huntingwood -Huntland -Huntleigh -Huntley -Huntley Automall -Huntley Meadows -Huntley Mount -Huntley Square -Huntley Woods -Huntleys Point -Huntly -Huntmar Park -Huntmaster -Hunton -Huntoon -Huntover -Huntress -Huntridge -Huntroyde -Hunts -Hunts Bridge -Hunts Hill -Hunts Point -Hunts Pond -Hunts Slip -Huntsbottom -Huntsbridge -Huntshire -Huntsman -Huntsmans -Huntsmill -Huntsmoor -Huntsmore -Huntspill -Huntsville -Huntswood -Huntting -Huntwood -Huntwood Manor -Huntzinger -Huon -Huppenthal -Huran -Hurd -Hurden -Hurdis -Hurdle Hill -Hurds -Hurdsfield -Hurford -Hurlands -Hurlbert -Hurlburt -Hurlbut -Hurlcroft -Hurley -Hurlingham -Hurlock -Hurlstone -Hurn Court -Hurnard -Hurndell -Huron -Hurricane -Hursley -Hurst -Hurst Bank -Hurst Farm -Hurst Green -Hurst Lea -Hurst Mill -Hurst Park -Hurstbank -Hurstborne -Hurstbourne -Hurstbrook -Hurstcourt -Hurstdene -Hurstead -Hurstfield -Hurstfold -Hurstford -Hurstheads -Hurstleigh -Hurstvale -Hurstville -Hurstwood -Hurtmore -Hurtwood -Hus -Huse -Huseman -Hushbeck -Husker -Husking Peg -Huskisson -Huskwood -Husky -Husman -Huss -Hussa -Hussey -Husson -Hust -Husteads -Husted -Hustlings -Huston -Hutchenson -Hutcheson -Hutchings -Hutchingsons -Hutchins -Hutchinson -Hutchinson River -Hutchison -Hutchison Valley -Hutson -Hutter -Hutton -Hutton Hill -Huxbear -Huxley -Huxtable -Huyler -Huyler Landing -Hy Sil -Hyacinth -Hyacynth -Hyam -Hyannis -Hyannisport -Hyatt -Hyatts -Hybernia -Hybrid -Hycliff -Hycrest -Hyde -Hyde Bank -Hyde Burndale -Hyde End -Hyde Estate -Hyde Farms -Hyde Hall -Hyde Heath -Hyde Park -Hyde Wood -Hydebrae -Hyden Farm -Hyder -Hydeway -Hydra -Hydrae -Hydrangea -Hydrangia -Hydraulic -Hydrus -Hygate -Hygelund -Hyla -Hyla Brook -Hylair -Hylan -Hyland -Hyland Courts -Hyland Creek -Hyland Greens -Hyland Hills -Hyland Ridge -Hylands -Hyles -Hylton -Hyman -Hymen -Hyndman -Hynds -Hynes -Hynson -Hynton -Hypatia -Hyperion -Hypine -Hypoint -Hyrax -Hyrons -Hyrstlands -Hysler -Hyslip -Hyslop -Hyson -Hythe -Hythe End -Hythe Park -Hythefield -Hywood -I Beam -I Fernwood -I R Russo -I U Willets -II -Iadarosa -Iadorola -Iager -Iago -Ian -Ian Keats -Iandra -Iannis Spring -Iasco -Ibbetson -Ibbotson -Ibera -Iberia -Iberian -Iberis -Ibex -Ibis -Ibsen -Ibstone -Ibworth -Icard -Icarus -Icasia -Ice -Ice Arena -Ice Box Canyon -Ice Circle -Ice Cream -Ice Crystal -Ice Fort Cove -Ice House -Ice Plant -Ice Pond -Icehouse -Icehouse Woods -Iceland -Icemeadow -Icerose -Iceton -Ichabod -Ickburgh -Ickenham -Ickenham Crosier -Ickenham Edinburgh -Ickenham Milverton -Icker -Ickford -Ickleford -Ickleton -Icklingham -Icknield -Ickworth Park -Icy Brook -Ida -Ida Clayton -Idabright -Idaho -Idal -Idalane -Idalia -Idaline -Idalla -Idalou -Idalyn -Idas -Ide -Ide Hill -Ideal -Idell -Iden -Idle Creek -Idle Day -Idle Pines -Idle Wild -Idlebrook -Idlebunny -Idleigh Court -Idlepark -Idlestone -Idlewell -Idlewild -Idlewilde -Idlewood -Idlewood Park -Idmiston -Idol -Idolstone -Idonia -Idora -Idyl -Idylberry -Idylewild -Idyllwild -Idylwild -Idylwilde -Idylwood -Idylwood Mews -Idzorek -Ielmorine -Iffley -Ifield -Ifold -Ifold Bridge -Ightham -Iglehart -Iglesia -Ignacio -Ignatius -Ignatius Diggs -Igoe -Ijauna -Ijuana -Ikara -Ike -Ikea Center -Ikin -Ila -Ilbert -Ilchester -Ilderton -Ileen -Ilene -Iler -Ilex -Ilford -Ilfracombe -Ilgars -Iliad -Iliff -Iliffe -Ilikai -Ilinka -Ilion -Ilk -Ilka -Ilkeston -Ilkley -Ilkley Moor -Illabo -Illalong -Illarangi -Illaroo -Illawarra -Illawong -Illeroy -Illi Indy -Illiliwa -Illingsworth -Illingworth -Illini -Illinios -Illinois -Illona -Illoura -Ilma -Ilmington -Ilminster -Ilo -Ils -Ilsley -Iluka -Ilwaco -Ilya -Imbaro -Imber -Imber Park -Imberhorne -Imbrook -Imelda -Imhoff -Imlay -Immanuel -Immarna -Imogene -Imola -Impala -Impalla -Impatiens -Imperia -Imperial -Imperial College -Imperio -Import -Impressions -Impton -Impulse -Imran -Imrie -Ina -Inala -Inaudi -Inca -Ince -Inchbonnie -Inchcape -Inchfield -Inchley -Inchmery -Inchon -Incinerator -Incline -Incline Green -Increase Ward -Ind.Bch. Serv. -Indale -Indan Fire -Indelicato -Independence -Independent -Independent Hill -Independent School -Independents -Inderwick -Index -India -Indian -Indian Boundary -Indian Boundary Line -Indian Brook -Indian Broom -Indian Bull -Indian Camp -Indian Chase -Indian Chief -Indian Club -Indian Cove -Indian Creek -Indian Field -Indian Grass -Indian Gulch -Indian Harbor -Indian Head -Indian Hill -Indian Hill Way -Indian Hills -Indian Hollow -Indian Home -Indian Inn -Indian Joe -Indian Knoll -Indian Lake -Indian Landing -Indian Meadow -Indian Mill -Indian Moon -Indian Mound -Indian Oaks -Indian Path -Indian Pipe -Indian Point -Indian Pond -Indian Princess -Indian Queen Point -Indian Rice -Indian Ridge -Indian River -Indian Rock -Indian Run -Indian Spring -Indian Springs -Indian Summer -Indian Trail -Indian Tree -Indian Valley -Indian Wells -Indian Wind -Indian Wood -Indian Woods -Indiana -Indiana Toll -Indianapolis -Indianhill -Indianola -Indianwood -Indigo -Indio -Indlebar -Indura -Indus -Industrial -Industrial Heights -Industrial Park -Industry -Indy -Inelgah -Inez -Infantry Ridge -Infield -Infirmary -Ing -Inga -Ingal -Ingalara -Ingalls -Ingalton -Ingara -Ingate -Ingatestone -Ingelow -Ingelrica -Ingelside -Ingemunson -Ingersley -Ingersol -Ingersoll -Ingerson -Ingestre -Ingfield Manor -Ingham -Inghams -Ingle -Inglebar -Inglebert -Ingleboro -Ingleborough -Inglebrook -Ingleburn -Ingleburn Gardens -Ingleby -Ingleden Park -Ingledene -Ingledew -Inglee -Inglefield -Inglemere -Inglenook -Ingleshire -Ingleside -Inglethorpe -Ingleton -Inglewood -Inglis -Inglish Mill -Ingold -Ingoldsby -Ingolsby -Ingot -Ingraffia -Ingraham -Ingram -Ingram Creek -Ingram Parade Church -Ingrams -Ingrave -Ingrebourne -Ingress Park -Ingrid -Ingroff -Ings -Inhams -Inheritance -Inholmes Park -Inholms -Inigo Jones -Inip -Ink -Ink Grade -Ink Pen -Inkerman -Inland -Inlet -Inman -Inman Hill -Inmans -Inmoor -Inn -Inner -Inner Belt -Inner Circle -Inner Distribution -Inner Harbor -Inner Lake Shore -Inner Loop -Inner Ring -Innerhill -Innerwick -Innes -Innesdale -Inness -Innings -Innis -Innis Property -Innisbrook -Innisfail -Innisfall -Innisfree -Inniskilling -Innisvale -Innitou -Innkeeper -Innovation -Innovator -Innsbrook -Innsbruck -Insall -Insbrook -Inscho -Inscoe -Insel -Insey -Insignia -Inskip -Inslee -Insley -Inspection House -Inspiration -Inspiration Point -Institute -Instone -Instow -Instrom -Intack -Intake -Intalbury -Interbay -Interchange -Interglen -Interhaven -Interlachen -Interlake -Interlaken -Interlochen -Interlocken -Intermezzo -International -Internationale -Interocean -Interpretive Center -Interpromontory -Intersection -Interstate -Intertech -Interurban -Interval -Intervale -Interventions -Intone -Intrepid -Intrieri -Inverallan -Inverary -Inverbeg -Inverchapel -Inverdale -Inverell -Inverforth -Invergorden -Invergowrie -Inverine -Inverlael -Inverleith -Inverness -Inverness Ridge -Inverrary -Inverray -Inversham -Inverton -Invertrees -Inverway -Inverwood -Investigator -Investment -Invicta -Inville -Invincible -Inwood -Inworth -Inyo -Inza -Inzer -Iodine -Iola -Iolanthe -Iolanthus -Iolite -Iona -Iona Sound -Ione -Ione Michigan Bar -Ionia -Ionic -Ioof -Iorio -Iowa -Ipava -Iping -Ipswich -Ipswich River -Ira -Iraga -Iralba -Iran -Irding -Iredale -Iredine -Ireland -Ireland Brook -Irelands -Irena -Irene -Irenhyl -Irenic -Ireson -Ireta -Ireton -Iride -Iriquois -Iris -Iris Bloom -Irish Ridge -Irk -Irk Vale -Irkdale -Irlam -Irma -Irma Harvey -Irma Jones -Irma Lyle -Irmen -Irmisch -Irmish -Iron -Iron Bridge -Iron Brigade Unit -Iron Forge -Iron Gate -Iron Gorge -Iron Hill -Iron Hollow -Iron Horse -Iron Latch -Iron Mill -Iron Mine -Iron Mine Hill -Iron Point -Iron Spgs Fire -Iron Springs -Iron Wood -Ironbark -Ironbark Ridge -Ironbound -Irondale -Irondequoit -Irongate -Ironhill -Ironhorse -Ironmaster -Ironmine -Ironmonger -Ironshoe -Ironside -Ironstone -Ironton -Ironwell -Ironwood -Ironwood View South -Iroquios -Iroquis -Iroquois -Irrara -Irrawong -Irribin -Irrigation -Irrubel -Irvana -Irvin -Irvine -Irvine Turner -Irving -Irving Johnson -Irving Park -Irvington -Irvington Manor -Irvon Hill -Irwell -Irwin -Irwindale -Irwine -Iry -Isa -Isaac -Isaac Davis -Isaac Hull -Isaac Smith -Isaacs -Isabel -Isabel Virginia -Isabell -Isabella -Isabelle -Isador -Isadora -Isadora Duncan -Isadore -Isaiah -Isalona -Isanti -Isar -Isbel -Isbell -Isbells -Isca -Ischia -Ise -Iselin -Isen Manor -Isengard -Isernia -Isetta -Isham -Isham Randolph -Isherwood -Ishi -Ishi Goto -Ishnala -Ishtar -Isis -Isla -Isla Vista -Island -Island Channel -Island Creek -Island Farm -Island Heights -Island Hill -Island Lake -Island Park -Island Pond -Island View -Islander -Islandside -Islandview -Islay -Isle -Isle Royal -Isle Royale -Isle of Skye -Isle of Wight -Isled -Isledon -Isleford -Isler -Isles -Islesboro -Islet -Islet Park -Isleton -Isleview -Islingham Farm -Islington -Islington High -Islington Park -Islip -Islip Manor -Ismailia -Ismay -Ismays -Ismona -Isobell -Isola -Isoscelles -Issa -Issac Miller -Issaquah Hobart -Istana -Isted -Istvan -Italia -Italy -Itasca -Itaska -Itch -Itchel -Itchell -Iteri -Ithaca -Ithan -Ithica -Itte -Ittureria -Iva -Ivah -Ivahar -Ivakota -Ivakota Farm -Ivaloo -Ivan -Ivanhoe -Ivano -Ivans -Ive Farm -Iveagh -Ivedon -Ivel -Iveley -Ively -Iver -Ivere -Ivernia -Ivers -Iverson -Iverys -Ives -Iveson -Ivey -Ivie -Ivie Acres -Ivimey -Ivins -Ivonhoe -Ivor -Ivory -Ivory Creek -Ivory Lace -Ivy -Ivy Bank -Ivy Barn -Ivy Bridge -Ivy Bush -Ivy Chimneys -Ivy Creek -Ivy Crest -Ivy Dene -Ivy Falls -Ivy Gate -Ivy Glen -Ivy Green -Ivy Hall -Ivy Hill -Ivy Hills -Ivy Hollow -Ivy House -Ivy Leaf -Ivy League -Ivy Lodge -Ivy Meade -Ivy Mill -Ivy Mills -Ivy Oak -Ivy Park -Ivy Ridge -Ivy Tree -Ivy Wood -Ivychurch -Ivydale -Ivydene -Ivygate -Ivygreen -Ivyhouse -Ivylea -Ivyleaf -Ivymount -Ivystone -Ivytown -Ivywild -Ivywood -Iwanuma -Ixias -Ixion -Ixonia -Ixworth -Izaak Walton -Izane -Izmer -Izmir -Izola -J D Reading -J F Kennedy -J H Brooks -J Hart Clinton -J L B -J M Van Ryper -J Pankow -J Rogers -J Smith -J T Crow -J Yard -JW Williams -Jabez -Jabil -Jacana -Jacap -Jacaranda -Jacey -Jacinta -Jacinth -Jacinto -Jack -Jack Breault -Jack Clow -Jack Cornwell -Jack London -Jack Pine -Jack Rabbit -Jack Rabbit Ridge -Jack Rogers -Jack Russell -Jack Tar -Jack Tone -Jack Williams -Jacka -Jackaranda -Jackass -Jackdaw -Jackets -Jackey -Jackie -Jackie Robinson -Jackies -Jacklin -Jackling -Jacklynn -Jackman -Jackpine -Jackpit -Jacks -Jacks Reef -Jacksnipe -Jacksol -Jackson -Jackson Branch -Jackson Grove -Jackson Mill -Jackson Oaks -Jackson Ranch -Jackson Schoolhouse -Jackson Slough -Jacksonia -Jacksons -Jacksons Edge -Jacksonville -Jackstraw -Jacky -Jaclyn -Jacob -Jacob Amsden -Jacob Brack -Jacob Cobb -Jacob Cushman -Jacob Ferry -Jacobs -Jacobs Gates -Jacobs Meadow -Jacobs Mill -Jacobs Well -Jacobsen -Jacobson -Jacobus -Jacoby -Jaconnet -Jacquara -Jacquard -Jacquelin -Jacqueline -Jacquelyn -Jacques -Jacquie -Jacquith -Jacqwill -Jacuzzi -Jada -Jadach -Jadchalm -Jade -Jade Hill -Jade Meadow -Jade Post -Jadeleaf -Jaden -Jadwin -Jaeger -Jaffa -Jaffe -Jaffray -Jaffrey -Jagelman -Jagerrd -Jagged Rock -Jagger -Jaggers -Jagle -Jago -Jagoe -Jaguar -Jagusch -Jahant -Jahn -Jahns -Jai -Jail -Jaimee -Jaipur -Jake -Jake Brown -Jake Creek -Jakeman -Jakes -Jakson -Jalaber -Jalbert -Jalisco -Jalleison -Jamaica -Jamaica Park -Jamberoo -Jamboree -Jameison -James -James Andrew -James Bailey -James Barton -James Bay -James Black -James Burke -James Butcher -James Butterworth -James Carter -James Cook -James Craig -James Creek -James Deane -James Donlon -James Doolittle -James Edward -James Erskine -James Fenimore Cooper -James Flynn -James Halley -James Haney -James Hentry -James King -James L L Burrell -James Lee -James Leigh -James Lex -James M Rochford -James Madison -James Maury -James Michener -James Mileham -James Millen -James Patten -James R Rakow -James Ridge -James River -James Ruse -James Russell -James Swanzey -James Tighe -James Town -James W Smith -James Watson -James Wittchen -James Wright -Jamesburg Half Acre -Jamesbury -Jameson -Jameson Canyon -Jameston -Jamestown -Jamestowne -Jamesview -Jamey -Jami -Jamica -Jamie -Jamie Lee -Jamieson -Jamieson Sprigg -Jamison -Jamison Creek -Jamlin -Jamroga -Jan -Jan Mar -Jan Marie -Jan River -Jan View -Jana -Jana Vista -Janali -Janamba -Janas -Jancie -Jandell -Jandus -Jandus Cut Off -Jandy -Jandyce -Jane -Jane Adams -Jane Addams -Jane Ellen -Jane Morbey -Janel -Janelia Farm -Janelin -Janell -Janelle -Janer -Janero -Janes -Janeswood -Janet -Janeth -Janette -Janeway -Janice -Janie -Janina -Janine -Janis -Janita -Janke -Janna -Janna Lee -Jannali -Jannarone -Jannelle -Janney -Janneys -Jannie -Janocha -Janock -Janos -Janphil -Janrick -Jansa -Janschek -Jansen -Jansen Farm -Jansens -Janssen -January -Janvrin -Janwal -Japan -Japaul -Japonica -Jappa -Jaquays -Jaques -Jaqui -Jar Brook -Jarboe -Jardin -Jardine -Jared -Jarico -Jarist -Jarlath -Jarman -Jarmann -Jarmons -Jarnecke -Jarnigan -Jarocin -Jarombek -Jarrah -Jarrard -Jarrett -Jarrett Valley -Jarrow -Jarsey -Jarvie -Jarvis -Jasen -Jaskot -Jaskula -Jaslow -Jasmin -Jasmine -Jasmine Hollow -Jasnar -Jason -Jason Grant -Jason Hill -Jason Woods -Jasons -Jasper -Jasper Highland -Jasper Hill -Jasper Sears -Jasset -Jasyn -Jauncey -Jaunell -Java -Javalina -Javan -Javelin -Javier -Javins -Javore -Jawl -Jay -Jay Bee -Jay Miller -Jayar -Jaybarry -Jaybee -Jaydee -Jaydine -Jayeselle -Jayhawk -Jaylee -Jayme -Jayne -Jaynes -Jaypore -Jayrose -Jays -Jaysmith -Jayson -Jaystone -Jayton -Jaywalk -Jaywick -Jaywood -Jealam -Jean -Jean Baptiste -Jean Carol -Jean Creek -Jean Ellen -Jean Marie -Jean Wailes -Jeane -Jeanette -Jeanie -Jeanine -Jeanna -Jeanne -Jeanne Darc -Jeanneret -Jeannette -Jeannie -Jeannine -Jeans -Jeatom -Jebb -Jebidia -Jed -Jed Forest -Jed Smith -Jedburg -Jedburgh -Jeddo -Jedediah -Jedforest -Jef -Jeff -Jeff Brian -Jeff Ryan -Jeffcott -Jeffer -Jeffereson -Jefferies -Jefferon -Jeffers -Jefferson -Jefferson Heights -Jefferson Run -Jeffersonian -Jeffery -Jefferys -Jeffrey -Jeffrey Keating -Jeffreys -Jeffreys Neck -Jeffrie -Jeffries -Jeffry -Jefry -Jefts -Jeger -Jehl -Jeken -Jelf -Jelin -Jelinic -Jelley -Jellicoe -Jelliff -Jellingal -Jelly Belly -Jelson -Jemmett -Jemryn -Jenckes -Jencks -Jendi -Jenes -Jenevein -Jeni -Jenifer -Jenison -Jenkin -Jenkins -Jenkins Farm -Jenkins Ridge -Jenkinson -Jenkisson -Jenks -Jenlar -Jenmar -Jenna -Jenne -Jennell -Jenner -Jennery -Jenness -Jennett -Jenney -Jenni -Jennie -Jennie Dugan -Jennie Richards -Jennie Run -Jennifer -Jennifer Daisy -Jennifer School -Jenniffer -Jenning -Jenningham -Jennings -Jennings Chapel -Jennings Cove -Jennings Farm -Jennings Mill -Jennings Park -Jennings Pond -Jenniper -Jennison -Jenny -Jenny D -Jenny Green -Jenny Jae -Jenny Lind -Jenny Lynne -Jenolan -Jens Jensen -Jensen -Jensen Ranch -Jensen Springs -Jenton -Jenvey -Jephson -Jephtha -Jeppos -Jeppson -Jepson -Jerad Place -Jerald -Jeraldo -Jerdens -Jere -Jerele -Jeremiah -Jeremie -Jeremy -Jeremys -Jereva -Jeri -Jericho -Jericho City -Jericho Hill -Jericho Oyster Bay -Jericho Park -Jerico Hill -Jerilderie -Jerilyn -Jerilynn -Jerlyn -Jerman -Jermantown -Jerminle -Jermyn -Jernee -Jernee Mill -Jerningham -Jerold -Jerome -Jerrara -Jerrard -Jerri -Jerridge -Jerrie -Jerries -Jerrold -Jerry -Jerry Clay -Jerry Jingle -Jerry Liefert -Jerrys -Jersey -Jersey City -Jersey Gardens -Jersey Island -Jersy -Jerusalem -Jerusalem Church -Jerusha -Jervey -Jervis -Jervois -Jeshurun -Jesierski -Jeskyns -Jesmond -Jespersen -Jess -Jess Ranch -Jessam -Jessamine -Jessamy -Jesse -Jesse James -Jessel -Jessen -Jessenland -Jesses -Jessett -Jessica -Jessie -Jessie Blythe -Jessie Jo -Jesson -Jessop -Jessup -Jester -Jesup -Jesup Blair -Jet -Jeter -Jethro -Jethro Peters -Jetson -Jetter -Jetty -Jetwood -Jewel -Jewelflower -Jewell -Jewell Hill -Jewell McKoy -Jewelsford -Jewett -Jewett Hill -Jewett Park -Jewish War Veterans -Jewitt -Jewry -Jeyes -Jeymer -Jezebel -Jezierski -Jezreels -Jf Kennedy -Jf Mahoney -Jib -Jibbon -Jibboom -Jibstay -Jidana -Jigger -Jill -Jill Ann -Jill Peak -Jillana -Jillian -Jillifer -Jillong -Jillson -Jilrick -Jim -Jim Dhamer -Jim Elder -Jim Fear -Jim Negra -Jim Shaw -Jim Simpson -Jim Veal -Jimada -Jimdale -Jimeno -Jimmer -Jimmy -Jimno -Jinatong -Jinchilla -Jindabyne -Jingle -Jingle Bell -Jiniwin -Jinna -Jionzo -Jipp -Jj -Jo -Jo Ann -Jo Deb -Jo Jo -Joaedja -Joal -Joalah -Joan -Joan Marie -Joan Vista -Joann -Joanna -Joanne -Joaquin -Joaquin Miller -Joaquin Murieta -Job Cushing -Jobe -Jobling -Jobs -Joby -Jocama -Jocarda -Jocare -Jocarm -Jocelyn -Jocher -Jochinsen -Jochum -Jocine -Jocketts -Jockey -Jockey Hollow -Joclyn -Joda -Jodan -Jodane -Jodave -Jodee -Jodi -Jodie -Jodis -Jodphur -Jodrell -Jody -Joe -Joe Adler -Joe Borovich -Joe Di Maggio -Joe F Young -Joe Jenny -Joe Klutsch -Joe Mary -Joe Orr -Joe Perez -Joe Pombo -Joel -Joelle -Joerg -Joerganson -Joerger -Joerger Cut Off -Joes -Joetta -Joey -Joffre -Jofran -Johanna -Johans Beach -Johansen -Johensu -John -John A Andrew -John A Dunn Memorial -John A Thompson -John Adam -John Adams -John Alden -John Allen -John Ayres -John Bailey -John Bardeen -John Barnes -John Batman -John Berry -John Booth -John Bourg -John Bradshaw -John Brown -John Burge -John Burke -John Burns -John C Ward -John Calvert -John Calvin -John Campbell -John Carlyle -John Carpenter -John Carroll -John Carver -John Charles -John Clagett -John Clynes -John Cobb -John Cross -John Crowder -John D Paige -John Dailey -John Dalton -John Daly -John Daves -John Davey -John David -John Dee -John Deere -John Dow -John Dwyer -John Dykes -John E Carroll -John E Smith -John Edward -John Eppes -John F Kennedy -John F Mason -John F Shelley -John F. Allen -John F. Kennedy -John Fisher -John Forrest -John Franklin -John Friend -John Fryer -John Gildi -John Glenn -John Gooch -John H Johnson -John Hancock -John Hanson -John Harper -John Harris -John Harrison -John Hay -John Henry -John Heywood -John Hill -John Hines -John Hopkins -John Humphrey -John Hus -John Ireland -John Islip -John J Brady -John J Gallagher -John J Grimaldi -John J Kingman -John J Paige -John Kennedy -John Kent -John Kidd -John Kirkham -John Knott -John L Dietsch -John Lynn -John M Boor -John Marr -John Marsh -John Marshall -John Marthens -John Martin -John Matthew -John Matthews -John McAdam -John McCormack -John Miller -John Milless -John Milton -John Montgomery -John Mooney -John Muir -John Neil -John Ochs -John Ormsby Way Leeds -John Oxley -John Partridge -John Paul Jones -John Penn -John Pierson -John Poulter -John Quincy -John Quincy Adams -John Radley -John Rezza -John Roberts -John Robinson -John Roos -John Ross -John Runge -John Ruskin -John Ryle -John Sam -John Shepley -John Silkin -John Smith -John Sorci -John Swift -John Tate -John Telfer -John Thomas -John Ticer -John Turco -John Turk -John Wade -John Wall -John Warren -John Wayne -John William -John Wilson -John Wise -John Wyatt -Johnathan -Johnathon -Johned -Johnny -Johnny Appleseed -Johnny Cake -Johnny Cake Ridge -Johnny Moore -Johnnycake -Johnor -Johns -Johns Chapel -Johns Hollow -Johns Hopkins -Johnsburg -Johnsbury -Johnson -Johnson Beach -Johnson Farm -Johnson Fold -Johnson Grove -Johnson Memorial -Johnson Park -Johnson Woods -Johnsonbrook -Johnsons -Johnsontown -Johnston -Johnston Crescent -Johnstone -Johnstown -Johnsvale -Johnsway -Johnswood -Joice -Join -Joiner -Joiners -Joint -Jokic -Jolan -Jolana -Jolen -Jolie -Joliet -Jolin -Joline -Jolliett -Jolly -Jollyboys -Jollyman -Jollys -Jolma -Jolon -Joludow -Jomar -Jon -Jon Mar -Jon Paul -Jona -Jonagold -Jonah -Jonalan -Jonamac -Jonas -Jonathan -Jonathan Carver -Jonathan Mitchell -Jonathan Ridge -Jonathan Simpson -Jonathen -Jonathon Swift -Jonel -Jones -Jones Acres -Jones Bay -Jones Branch -Jones Bridge -Jones Farm -Jones Gulch -Jones Hill -Jones Mill -Jones Park -Jones Point -Jones River -Jonesdale -Jonesport -Jonesville -Jonive -Jonko -Jono -Jonquil -Jonspin -Jony -Joongah -Joost -Jopak -Jopenda -Joplea -Joplin -Jopling -Joppa -Jopson -Joralemon -Jordan -Jordan Park -Jordan Ranch -Jordan Taylor -Jordans -Jordans Journey -Jorden -Jordon -Jordon Pond -Jordonalo -Joree -Jorgan -Jorgen -Jorgensen -Jorgenson -Jori -Jorie -Jorissen -Joronollo -Jorrick -Jose -Jose Figueres -Jose Ramon -Josef -Josefa -Josefson -Joselson -Joseph -Joseph Banks -Joseph Damon -Joseph Leon -Joseph Mill -Joseph P. Ward -Joseph Pace -Joseph Ray -Joseph Reed -Joseph Schwab -Joseph Siewick -Joseph Smith -Joseph Speciale -Josepha -Josephine -Josephine Evaristo -Josephs Point -Josephson -Josh Gray -Josham -Joshua -Joshua Moore -Joshua Tree -Josiah -Josie -Josina -Joslin -Joslyn -Jospeh -Josselin -Josselyn -Jossie -Josslyn -Jost -Jotham -Jotmans -Joubert -Jouet -Jouldings -Joule -Journal -Journeay -Journet -Journey -Joust -Jousting -Jowett -Joy -Joy Bell -Joy Lee -Joy Ridge -Joya -Joyce -Joyce Anne -Joyce Green -Joyce Island -Joyce Kilmer -Joyce Lundberg -Joyceton -Joydens Wood -Joydon -Joyer -Joylyn -Joyner -Joynson -Joynt -Joynton -Joys -Juan Hernandez -Juan Pablo -Juana -Juanita -Juanita Woods -Juarez -Jubbs Delight -Jubilee -Jubliee -Judah -Judd -Jude -Judette -Judge -Judge Cushing -Judge E A Loveless -Judge Haley -Judge Heath -Judges -Judi -Judicial -Judick -Judie -Judique -Judistine -Judith -Judith Anderson -Judkins -Judson -Judsonville -Judy -Judy Farm -Judy Witt -Judys -Juel -Juer -Juercen -Juergens -Juggs -Jughandle -Jugiong -Juglans -Juhasz -Juhlin -Juirrang -Julep -Jules -Jules Thorn -Juli -Juli Lynn -Julia -Julia Connors -Julia Dawn -Julian -Juliana -Julianna -Julianne -Julians -Julias -Julie -Julie Ann -Juliedale -Julien -Julien Court -Juliers -Juliesse -Juliet -Juliet Park -Juliett -Julietta -Juliette -Julio -Julius -Julliard -Julliard Park -July -Jumbles -Jumel -Jump -Jumper -Jumper Hill -Jumpers Hole -Jumping Horse -Jumppun -Jumps -Juna -Junard -Junco -Junction -June -June Elaine -June Hollow -Juneau -Juneberry -Junebreeze -Junebug -Junee -Junegrass -Juneway -Junewood -Jungle -Junia -Junin -Junior -Juniper -Juniper Hill -Juniper Point -Juniper Ridge -Juniper Valley -Juniperberry -Juniperbrook -Junipero -Junipero Serra -Junipertree -Junius -Junker -Juno -Juntar -Jupiter -Jupitor -Jupp -Jura -Jurby -Jurdins Hill -Jurdy -Jurgens -Jurgensen -Juri -Juricic -Jurocko -Jury -Just -Justa Short -Justamere -Justco -Justen -Justice -Justice Hill -Justin -Justin Knoll -Justin Morgan -Justina -Justine -Justinian -Justino -Justis -Justus -Jute -Jutewood -Jutland -Jutsums -Juvenis -Juxon -Juxton -Jyra -Jytek -K Fernwood -Kaanapali -Kaban -Kabarli -Kable -Kabot Cove -Kabutts -Kachina -Kadderly -Kadema -Kaden -Kadin -Kadlin -Kado -Kaehler -Kaelin -Kaeser -Kafka -Kagera -Kahiba -Kahl -Kahle -Kahler -Kahler Jr -Kahlo -Kahn -Kahns -Kahrs -Kaila -Kaimu -Kain -Kaine -Kains -Kaintuck -Kairawa -Kaiser -Kaiser Aetna -Kaiser Creek -Kaiser Quarry -Kaitia -Kaitlin -Kaitlyn -Kajer -Kakae -Kakeout -Kalama -Kalamazoo -Kalana -Kalang -Kalarama -Kalaui -Kalda -Kale -Kalenda -Kales -Kaleski -Kaleva -Kaley -Kalgal -Kalgoorlie -Kali -Kalimina -Kalimna -Kalinda -Kalinya -Kalk -Kalkada -Kalkar -Kalland -Kallaroo -Kallenberger -Kalliam -Kallien -Kallista -Kalmar -Kalmia -Kalora -Kalorama -Kalson -Kalsow -Kaltemeier -Kaltern -Kalua -Kaluga -Kaluna -Kaly -Kalyan -Kamaitis -Kamari -Kamaur -Kambala -Kamber -Kambora -Kamda -Kame -Kameha -Kamena -Kameruka -Kamerwyk -Kamilaroi -Kamilaroy -Kaminski -Kamiri -Kamlea -Kamm -Kammerer -Kammes -Kamp -Kampersal -Kamputa -Kamsack -Kamuela -Kanaabec -Kanabec -Kanadah -Kanai -Kanandah -Kanangra -Kanangur -Kananook -Kanatha -Kanawha -Kandahar -Kandi -Kandos -Kandra -Kandy -Kane -Kane Industrial -Kanegis -Kaneko -Kanes -Kaneville -Kangaroo -Kangaroo Point -Kangley Bridge -Kaniara -Kanili -Kanimbla -Kankakee -Kanlow -Kannely -Kanning -Kano -Kanoff -Kanoona -Kanoora -Kanouse -Kanowar -Kansala -Kansas -Kanst -Kanteles -Kantor -Kanuka -Kanya -Kanzo -Kao -Kapala -Kapalua -Kapareil -Kaparia -Kapetanopolous -Kaphan -Kapiolani -Kapiti -Kapkowski -Kaplan -Kaplolani -Kaposia -Kapovic -Kapp -Kappa -Kappel Hill -Kappel View -Kappner -Kappock -Kapyong -Kara -Kara Ann -Karabar -Karal -Karalee -Karamarra -Karameos -Karangi -Karani -Karat -Karban -Karcher -Karda -Kardel -Kardella -Kardon -Kareela -Kareelah -Kareema -Kareena -Karelitz -Karels -Karen -Karen Anne -Karen Elaine -Karen Forest -Karen Lee -Karen Pines -Karen Spring -Karens -Kari -Karilla -Karimbla -Karin -Karingal -Kariola -Karius -Kariwara -Karkus -Karl -Karl Hoyo -Karla -Karli -Karlo -Karloo -Karloon -Karlskoga -Karlson -Karlstad -Karlyn -Karmel -Karmich -Karn -Karnak -Karne -Karnell -Karner -Karns -Karol -Karoo -Karool -Karoola -Karoom -Karoon -Karraba -Karrabah -Karrabee -Karrabul -Karranga -Karrie -Karril -Karringal -Karrong -Karsey -Karth -Karth Lake -Karuah -Karuk -Karver -Karyl -Karyn -Kasba -Kashey -Kashgar -Kashmir -Kask -Kaskaskia -Kaski -Kaslo -Kasota -Kasper -Kass -Kassala -Kassan -Kassar -Kassel -Kasson -Kastania -Kastelan -Kastell -Kasten -Kasting -Katahdin -Katan -Katanna -Katarina -Kate -Katebini -Katena -Kates -Katesgrove -Kath -Katharine -Katharines -Kathay -Katherin -Katherine -Katherine Ann -Katheryn -Kathlean -Kathleen -Kathleen Elizabeth -Kathleen Grant -Kathleene -Kathletta -Kathmoore -Kathrene -Kathrina -Kathryn -Kathryne -Kathwood -Kathy -Kathy Ellen -Kathyanne -Kathys -Katie -Katie Bird -Katina -Katleba -Kato -Katonah -Katonia -Katrina -Katrine -Katrinka -Katsikas -Katsura -Katy -Katydid -Katz -Kauai -Kaufman -Kaul -Kaula -Kaup -Kauri -Kausen -Kauth -Kautz -Kavanagh -Kavanaugh -Kaveny -Kaverton -Kavin -Kavooras -Kavrik -Kawahara -Kawai -Kawalker -Kawameeh -Kawana -Kawana Springs -Kay -Kayak -Kayak Lake -Kaybro -Kaycee -Kaydot -Kaye -Kayemoor -Kayeton -Kayhart -Kayhill -Kayjay -Kayla -Kaylar -Kaylee -Kaylene -Kaymar -Kaymark -Kaynyne -Kayron -Kays -Kays Wood -Kaysha -Kayson -Kaywin -Kaywood -Kazan -Kazebeer -Kazimer -Kazwell -Kc Farm -Keable -Keach -Keagles -Kealsey -Kealsy -Kean -Keane -Keans -Keansburg -Keany -Keap -Kearley -Kearney -Kearneys -Kearns -Kearny -Kearsage -Kearsarge -Kearsley -Kearsley Hall -Keary -Keasbey -Keasler -Keates -Keating -Keato -Keaton -Keats -Keawe -Keayne -Keb -Kebet Ridge -Keble -Keck -Kecutan -Kedge -Kedith -Kedleston -Kedron -Kedvale -Kedzie -Kee -Keebler -Keeby -Keech -Keech Briar -Keedonwood -Keefe -Keefer -Keegan -Keegans -Keel -Keele -Keelendi -Keeler -Keeley -Keelham -Keeling -Keelings -Keelo -Keema -Keen -Keenan -Keene -Keeney -Keeney Pond -Keenland -Keens -Keens Park -Keep -Keep Hill -Keepataw -Keeper -Keepers -Keephatch -Keeps -Keepsake -Keer -Keera -Keese -Keeseville -Keesing -Keesling -Keeton -Keevil -Keevin -Keewadin -Keewatin -Keewaydin -Keeyunga -Kefauver -Kegan -Kegle -Kegwood -Kegworth -Kehoe -Keierleber -Keighley -Keighly -Keighran Mill -Keightley -Keil -Keilana -Keildon -Keiley -Keilman -Keily -Keim -Keinches -Keino -Keir -Keira -Keiran -Keirle -Keiser -Keiser Ranch -Keith -Keith Allen -Keith Hill -Keith Jeffries -Keith Lucas -Keith Park -Keith Smith -Keith Taylor -Keithley -Keiths -Keithson -Keiwarra -Kelboro -Kelbourne -Kelbrook -Kelbum -Kelburn -Kelby -Kelch -Kelchers -Keld -Keldholme -Keldie -Keldon -Kelesey -Kelez -Kelfield -Kelford -Keli -Kell -Kell Green -Kellam -Kelland -Kellaway -Kellbrook -Kelldon -Kelleher -Keller -Keller Lake -Keller Ridge -Kellerman -Kellet -Kellett -Kelley -Kelley Farm -Kellicar -Kellick -Kelliher -Kelling -Kellington -Kellino -Kellner -Kelloch -Kellogg -Kellogg Creek -Kelloway -Kells -Kellum -Kelly -Kelly Ann -Kelly Case -Kelly Farm -Kelly Glen -Kelly Hill -Kelly Lake -Kelly Mist -Kelmore -Kelmscot -Kelmscott -Kelner -Kelp -Kelpatrick -Kelrose -Kelross -Kelsall -Kelsey -Kelsey Park -Kelshill -Kelsic -Kelso -Kelson -Kelstern -Kelston -Kelsy -Kelsy Creek -Keltner -Kelton -Kelty -Kelveden -Kelvedon -Kelvedon Hall -Kelverlow -Kelvin -Kelvin Park -Kelvindale -Kelvington -Kelwynne -Kelzer Pond -Kem -Kemah -Kemball -Kember -Kemberley -Kembers -Kembla -Kemble -Kembo -Kembridge -Kemerton -Kemika -Kemman -Kemmerton -Kemmever -Kemmis -Kemnal -Kemondo -Kemp -Kemp Mill -Kemp Mill Forest -Kempair -Kempbridge -Kempe -Kemper -Kempley -Kempmill -Kempner -Kempnough Hall -Kemps -Kemps Farm -Kempsey -Kempsford -Kempson -Kempster -Kempston -Kempsville -Kempt -Kempthorne -Kempton -Kemrich -Kemsing -Kemsley -Ken -Ken Hall -Kenabec -Kenalray -Kenardington -Kenart -Kenavon -Kenbar -Kenberma -Kenbridge -Kenbrook -Kenburn -Kenbury -Kenchester -Kencrest -Kenda -Kendal -Kendal Common -Kendale -Kendall -Kendall Hill -Kendall Point -Kendall Ridge -Kendall Self -Kendallwood -Kendalwood -Kendee -Kendel -Kendell -Kender -Kendig -Kendle -Kendoa -Kendon -Kendra -Kendra Hall -Kendree -Kendrew -Kendrick -Kendricks -Kendridge -Kenduck -Kenelm -Kenelworth -Kenerson -Keneson -Kenfield -Kenfig -Kenhill -Kenhowe -Kenic -Keniff -Kenilwood -Kenilwoods -Kenilworth -Kenion -Keniston -Kenland -Kenlar -Kenleigh -Kenlen -Kenley -Kenloch -Kenlor -Kenmar -Kenmare -Kenmel -Kenmere -Kenmont -Kenmoor -Kenmor -Kenmore -Kenmuir -Kenmure -Kennabec -Kennady -Kennan -Kennard -Kennebec -Kennedy -Kennedy Knolls -Kennedy Memorial -Kennel -Kennel Barn -Kennell Hill -Kennelling -Kennelly -Kennels -Kennelwood -Kennelworth -Kenner -Kennerleigh -Kennerley -Kennesaw -Kenneson -Kennet -Kenneth -Kenneth Creek -Kenneth Hyde -Kenneth Kostka -Kenneth More -Kenneth Slessor -Kennett -Kennett Wharf -Kennewick -Kenney -Kenni -Kennicott -Kennie -Kenning -Kenninghall -Kennington -Kennington Park -Kennison -Kennsington -Kennworth -Kenny -Kenny Hill -Kenny Lofton -Kennylands -Keno -Kenoga -Kenora -Kenosha -Kenosia -Kenova -Kenreel -Kenrick -Kenridge -Kens -Kensal -Kensellas -Kensett -Kensico -Kensington -Kensington Church -Kensington High -Kensington Park -Kenslee Hill -Kenson -Kensor -Kenstan -Kenstford -Kenston -Kenswick -Kensworth -Kent -Kent Fire -Kent Fort -Kent Hatch -Kent House -Kent Place -Kent Point -Kent Pump -Kent Pump Fire -Kent Sq -Kent Town -Kent View -Kent Village -Kentbury -Kentdale -Kenter -Kentfield -Kentford -Kenthurst -Kentigern -Kentile -Kentish -Kentland -Kentlands -Kentlea -Kentley -Kentmere -Kentmore -Kentnor -Kenton -Kenton Park -Kentons -Kentos -Kentridge -Kents -Kents Bank -Kents Farm -Kents Hill -Kentsdale -Kentshire -Kentstone -Kentucky -Kentview -Kentville -Kentwal -Kentwell -Kentwood -Kentwyns -Kenver -Kenwar -Kenward -Kenway -Kenwick -Kenwin -Kenwith -Kenwood -Kenwood Forest -Kenwood Isles -Kenworth -Kenworthy -Kenwyn -Kenya -Kenyngton -Kenyon -Kenyons -Kenzel -Keoffram -Keogh -Keokee -Keokok -Keokuk -Keoncrest -Keota -Keough -Kephart -Kepler -Kepos -Keppel -Kepper -Keppler -Kepwick -Keran -Kerber -Kerbey -Kerby -Kerby Hill -Kerfoot -Kerger -Keri -Keri Ann -Keriba -Kerill -Kerin -Kerley -Kerlin -Kerman -Kermath -Kermes -Kermit -Kermoor -Kern -Kern Creek -Kerna -Kernal -Kernberry -Kerner -Kerney -Kernham -Kernochan -Kerns -Kernwood -Kero -Kerr -Kerrawah -Kerri -Kerrick -Kerridge -Kerrie -Kerrigan -Kerrill -Kerrinea -Kerrins -Kerrison -Kerriston -Kerroge -Kerrs -Kerrwood -Kerry -Kerry Ann -Kerry Beacon -Kerry Winde -Kerrydale -Kerryshire -Kersal -Kersal Hall -Kersal Vale -Kerschner -Kerscott -Kersey -Kersfield -Kersh -Kershaw -Kerslake -Kersley -Kersten -Kerstin -Kertsinger -Kervan -Kerves -Kerwin -Kerwood -Kesey -Keshan -Keslake -Keslar -Keslinger -Kesner -Kessel -Kessell -Kesserling -Kessingland -Kessler -Kester -Kesters -Kesterson -Kesteven -Keston -Kestor -Kestral -Kestrel -Kestrel Lake -Keswick -Ketay -Ketcham -Ketchams -Ketchen -Ketcherside -Ketchum -Ketelaar -Ketelsen -Ketewamoke -Ketewomoke -Kethel -Ketner -Ketridge -Kettell -Kettelson -Ketten -Kettenacker -Ketter -Kettering -Kettering on Oxford -Ketterman -Kettle -Kettle Creek -Kettle Green -Kettle Hill -Kettle Hole -Kettle Mountain -Kettle Pond -Kettle River -Kettle Run -Kettlehook -Kettleman -Kettleson -Kettlewell -Kettmann -Keuka -Kevan -Kevelioc -Keverton -Kevill -Kevin -Kevin Coombs -Kevin Longley -Kevin Walker -Kevinaire -Kevinberg -Kevington -Kevins -Kevyn -Kew -Kew Foot -Kew Forest -Kew Gardens -Kewadin -Kewanee -Kewferry -Kewin -Kewsick -Key -Key Largo -Key Route -Key Turn -Key West -Keyberry -Keyes -Keyes House -Keymar -Keymer -Keyne -Keyner -Keynes -Keynote -Keynsham -Keyntel -Keyport -Keys -Keys Ridge -Keyse -Keyser -Keysers -Keysford -Keysham -Keysor -Keystone -Keystone Manor -Keytone -Keyworth -Kezar -Kezia -Khakum -Khakum Wood -Khalid -Khalsa -Khama -Khartoum -Khun -Khyber -Kialba -Kiama -Kiaora -Kiara -Kiawah -Kiawah Island -Kibbles -Kiber -Kiberd -Kibo -Kibworth -Kice -Kickapoo -Kickham -Kidacre -Kidborough -Kidbrook Park -Kidbrooke -Kidbrooke Park -Kidd -Kidd Creek -Kiddal -Kidder -Kidderminster -Kidderpore -Kidders -Kiddie -Kiddiminister -Kidlington -Kidman -Kidmore -Kidmore End -Kidmore end -Kidomore End -Kidwell -Kidwell Field -Kidwells Park -Kiefer -Kiel -Kieland Ridge -Kielgart -Kielion -Kiely -Kientz -Kiep -Kieper -Kieran -Kiernan -Kierst -Kierstead -Kiersted -Kiesenwetter -Kiess -Kiessig -Kiest -Kiev -Kievit -Kifer -Kiffen -Kiger -Kihila -Kijek -Kiki -Kikuo -Kil -Kilarney -Kilauea -Kilbane -Kilbenny -Kilbernie -Kilbirnie -Kilborn -Kilbourn -Kilbourne -Kilbride -Kilburn -Kilburn High -Kilburne -Kilby -Kilby Glenn -Kilchurn -Kilcoby -Kilconnell -Kilconway -Kilcullen -Kildare -Kildeer -Kildonan -Kildoran -Kildowan -Kile -Kiley -Kilfoyle -Kilgore -Kilgour -Kilheeney -Kilimanjaro -Kiline -Kilkare -Kilkee -Kilkenny -Kilkerry -Kilkie -Killala -Killam Hill -Killanoola -Killarney -Killarney Pass -Killarny -Killawarra -Killbarron -Killdeer -Killearn -Killeaton -Killebrew -Killeen -Killey -Killian -Killians -Killick -Killieser -Killigrew -Killinger -Killinghurst -Killingsworth -Killingworth -Killon -Killoola -Killowen -Killuran -Killybegs -Killyon -Kilmaine -Kilmarnock -Kilmarnok -Kilmarsh -Kilmartin -Kilmer -Kilmington -Kilminister -Kilmiston -Kilmoray -Kilmore -Kilmorey -Kilmory -Kilmurray -Kiln -Kiln Barn -Kiln Croft -Kiln Pond -Kiln View -Kiln Wood -Kilner -Kilnfield -Kilnorey -Kilnsea -Kilnside -Kilnwood -Kilo -Kilpatrick -Kilpatrik -Kilpin Hill -Kilravock -Kilroe -Kilronan -Kilross -Kilrue -Kilrush -Kilsha -Kilsmore -Kilsyth -Kiltie -Kilvert -Kilworth -Kilzer -Kim -Kim Ann -Kim Hunter -Kim Kris -Kim Louise -Kimanna -Kimball -Kimball Beach -Kimball Hill -Kimballwood -Kimbark -Kimbarra -Kimbell -Kimber -Kimberlee -Kimberley -Kimberlin Heights -Kimberly -Kimberly Grove -Kimberly Woods -Kimbers -Kimberwick -Kimberwicke -Kimble -Kimble Park -Kimblehunt -Kimblewick -Kimbriki -Kimbro -Kimbrough -Kimcumber -Kimdee -Kime -Kimes -Kimiyo -Kimlee -Kimlo -Kimloch -Kimmel -Kimmeridge -Kimmig -Kimo -Kimpton -Kimwood -Kinarra -Kinbrace -Kinburn -Kincade -Kincaid -Kincardine -Kincheloe -Kincraig -Kindee -Kindelan -Kinder -Kinder Farm Park -Kinderbrook -Kindergarten -Kinderhaven -Kinderkamack -Kinders -Kinderton -Kindler -Kindlewood -Kindra Hill -Kindross -Kineholme -Kineo -Kiner -Kinfauns -King -King Albert -King Alfred -King Arthur -King Arthurs -King Caesar -King Carter -King Centre -King Charles -King Coel -King Creek -King David -King Duncan -King Edward -King Edward VII -King Farm -King Fisher -King George -King George IV -King George V -King George VI -King Georges -King Georges Post -King Grant -King Hall -King Harold -King Harry -King Henry -King Henrys -King Hill -King James -King James Landing -King John -King Johns -King Krest -King Louis -King Malcolm -King Manor -King Max -King Midas -King Muir -King Philip -King Phillip -King Richard -King Ridge -King Solomon -King William -Kingarth -Kingate -Kingbird -Kingbrook -Kingcroft -Kingcup -Kingdale -Kingdom -Kingdon -Kingery -Kingfield -Kingfisher -Kingham -Kingham Ranch -Kinghorn -Kinghorne -Kinghurst -Kingingwood -Kinglake -Kingland -Kinglet -Kingly -Kingman -Kingmont -Kingmoor -Kingridge -Kings -Kings Arm -Kings Arms -Kings Arrow -Kings Beach -Kings Bench -Kings Canyon -Kings Chapel -Kings Charter -Kings College -Kings Color -Kings Court -Kings Creek -Kings Creek Truck -Kings Cross -Kings Crossing -Kings Farm -Kings Field -Kings Forest -Kings Furlong -Kings Gate -Kings Grant -Kings Grove -Kings Hall -Kings Head -Kings Heather -Kings Heights -Kings Hill -Kings House -Kings Lake -Kings Landing -Kings Lynn -Kings Manor -Kings Meadow -Kings Mill -Kings Mountain -Kings Park -Kings Pine -Kings Point -Kings Retreat -Kings Terrace -Kings Toll -Kings Tree -Kings Valley -Kings View -Kings Village -Kings Walk -Kings Way -Kings Wood -Kingsand -Kingsash -Kingsbay -Kingsberry -Kingsbridge -Kingsbrook -Kingsbury -Kingsbury Estates -Kingsclare -Kingsclear -Kingsclere -Kingscliffe -Kingscote -Kingscourt -Kingscroft -Kingsdale -Kingsdon -Kingsdown -Kingsdowne -Kingsfernsden -Kingsfield -Kingsford -Kingsford Smith -Kingsgate -Kingsgrove -Kingshill -Kingshold -Kingsholme -Kingshurst -Kingsingfield -Kingsland -Kingslangley -Kingslea -Kingslee -Kingsleigh -Kingsley -Kingsley Wood -Kingsly -Kingsman -Kingsmans Farm -Kingsmead -Kingsmead Main -Kingsmen -Kingsmere -Kingsmill -Kingsmoor -Kingsnorth -Kingsord -Kingspark -Kingspit -Kingsport -Kingsthorpe -Kingston -Kingston Brook -Kingston Eden -Kingston Brook -Kingston Eden -Kingston Hall -Kingstown -Kingstowne -Kingstowne Commons -Kingstowne Village -Kingstream -Kingstree -Kingsview -Kingsview Village -Kingsway -Kingsway Westbourne -Kingswear -Kingswell -Kingswick -Kingswood -Kingswood Pond -Kingsworthy -Kingthorpe -Kingusse -Kingwell -Kingwood -Kinkade -Kinkaid -Kinkead -Kinkel -Kinkuna -Kinlay -Kinlet -Kinley -Kinloch -Kinlock -Kinloss -Kinmel -Kinmont -Kinmonth -Kinnaird -Kinne -Kinnear -Kinnelon -Kinnerton -Kinney -Kinnickinnic -Kinnicut -Kinnicutt -Kinnikinnic -Kinnoul -Kinnybrook -Kino -Kinross -Kinsale -Kinsbourne Green -Kinsel -Kinsella -Kinsey -Kinship -Kinsington -Kinsley -Kinsman -Kinson -Kinsport -Kinster -Kinswood -Kintmount -Kintop -Kintore -Kintyre -Kinvara -Kinvarra -Kinver -Kinzel -Kinzer -Kinzey -Kinzie -Kinzley -Kiogle -Kiola -Kiora -Kiote -Kiowa -Kip -Kiparra -Kiperash -Kipheart -Kipland -Kipling -Kipp -Kippara -Kippax -Kippax Valley -Kipperkopper -Kippington -Kippist -Kippling -Kipps -Kippy -Kira -Kirben -Kirby -Kirby Lionsdale -Kirbys -Kirbywood -Kirch -Kirche Hill -Kirchen -Kirchner -Kirchoff -Kirckpatrick -Kirdford -Kirk -Kirk Farm -Kirk Glen -Kirkbank -Kirkbrook -Kirkby -Kirkcady -Kirkcaldy -Kirkcrest -Kirkdale -Kirke -Kirker Pass -Kirketon -Kirkfell -Kirkfield -Kirkgate College -Kirkgate High -Kirkgate Highgate -Kirkhall -Kirkham -Kirkhamgate Lindale -Kirkhill -Kirkhope -Kirkland -Kirkland Ranch -Kirkleas -Kirklee -Kirklees -Kirkley -Kirklin -Kirklinton -Kirklyn -Kirklynn -Kirkman -Kirkmans -Kirkmanshulme -Kirkmichael -Kirkmont -Kirkpatrick -Kirkridge -Kirkside -Kirkstall -Kirkstall Bridge -Kirkstall Hill Eden -Kirkstead -Kirksted -Kirkstone -Kirksville -Kirkton -Kirkup -Kirkwall -Kirkwick -Kirkwood -Kirman -Kirmes -Kirpatrick -Kirra -Kirrang -Kirrawee -Kirribilli -Kirschman -Kirschoff -Kirshon -Kirst -Kirsten -Kirstmont -Kirston -Kirtland -Kirtle -Kirtley -Kirton -Kirwin -Kisconko -Kiser -Kishfield -Kishimura -Kishwaukee -Kiska -Kismet -Kiso -Kissam -Kissel -Kissena -Kissing Point -Kissling -Kista Dan -Kiswick -Kit -Kit Carson -Kit Hill -Kit Kat -Kitayama -Kitchell -Kitchell Lake -Kitchener -Kitcheners -Kitchenour -Kitching -Kitchner -Kitcombe -Kite -Kite Hawk -Kite Hill -Kite Wood -Kither -Kitkatts -Kitmary -Kitmore -Kitrk -Kitsap -Kitsbridge -Kitsbury -Kitsmead -Kitson -Kitt -Kitt Moss -Kittani -Kittanning -Kitter -Kittery -Kittewake -Kittie -Kittiwake -Kitto -Kittoe -Kittredge -Kittridge -Kitts -Kittson -Kitty -Kitty Duvall -Kitty Hawk -Kitty Pozer -Kittyhawk -Kitwood -Kiva -Kiver -Kivy -Kiwanis -Kiwanis Beach -Kiwanis Campground -Kiwong -Kizer -Klaers -Klaibar -Klainert -Klakring -Klamath -Klamath River -Klare -Klasen -Klassen -Klasson -Klaus -Klausers -Klea -Klee -Klehm -Kleiber Hall -Klein -Klein Creek -Kleinman -Kleins -Kleis -Klem -Klemetson -Klen -Klengel -Klianthi -Klickitat -Klier -Kliewer -Klimm -Kline -Kling -Klinger -Klingle Valley -Klinsky -Klipspringer -Klo -Klockstad -Kloer -Kloman -Klondike -Klough -Klovstad -Kluge -Klute -Kluth -Knack -Knapmill -Knapp -Knapsack -Knapton -Knaresborough -Knarlwood -Knarr -Knarr Barn -Knatchbull -Knatts -Knatts Valley -Knauer -Knave Wood -Kneafseys -Knebworth -Knecht -Kneeland -Knell -Knella -Knelle -Kneller -Knerr -Knesel -Knibb -Knichel -Knickerbocker -Knickerson -Knife Shop -Knight -Knight Arch -Knighten -Knighthill -Knighthood -Knightland -Knightlinger -Knighton -Knightons -Knightrider -Knights -Knights Bridge -Knights Forest -Knights Hill -Knights Park -Knights Park Denmark -Knightsbridge -Knightscroft -Knightsen -Knightsfield -Knightshayes -Knightswick -Knightswood -Knightwake -Knightwood -Knightwoods -Knivet -Knivton -Knob -Knob Cone -Knob Hill -Knobcone -Knobhill -Knobloch -Knoch Knolls -Knock -Knock Mill -Knockall -Knockhall -Knockholt -Knockhundred -Knocklayde -Knockwood -Knoelke -Knole -Knoll -Knoll Acres -Knoll Creek -Knoll Crest -Knoll Glen -Knoll Haven -Knoll Manor -Knoll Mist -Knoll North -Knoll Park -Knoll Ridge -Knoll Top -Knoll Valley -Knoll View -Knoll Way -Knoll Wick -Knoll Wood -Knollbrook -Knollcrest -Knollcross -Knolle -Knolle Bros -Knolles -Knollin -Knollridge -Knolls -Knolls Pond -Knollside -Knollton -Knolltop -Knollview -Knollwood -Knollys -Knopf -Knopp -Knorr -Knot -Knota -Knott -Knott Hill -Knottingham -Knottingwood -Knottisford -Knottocks -Knotts Green -Knotty Oak -Knotty Pine -Knotwood -Knowes -Knowl -Knowl Top -Knowland -Knowle -Knowle Park -Knowledge -Knowles -Knowles Hill -Knowlman -Knowlsey -Knowlton -Knowsley -Knowsthorpe -Knox -Knox Park -Knoxboro -Knoxbury -Knoxville -Knoyle -Knudtsen -Knuth -Knutsen -Knutsen Knoll -Knutsford -Knutsford Old -Knutson -Knypersley -Koa -Koala -Koala Bear -Kobada -Kobala -Kobara -Kobb -Kobbe -Kobe -Kober -Kobert -Koblike -Koch -Koch Peak -Kocher -Kochia -Kochka -Kociemba -Kodaya -Kodiak -Koehl -Koehler -Koehling -Koehnen -Koelle -Koenig -Koeper -Koepke -Koepp -Koester -Kofman -Koford -Koftinow -Kogan -Kohala -Kohat -Kohima -Kohl -Kohlepp -Kohler -Kohler Garden -Kohley -Kohlhoss -Kohlman -Kohlwood -Kohout -Kohr -Kokera -Koko -Kokoda -Kokoma -Kokomo -Kokora -Kolb -Kolbert -Kolff -Kolin -Koll Center -Kolling -Kollmar -Kollum -Kolmar -Kolmer -Kolob -Kolodong -Koloona -Kolpin -Kolrausch -Kolstad -Kolze -Koman -Komenich -Komiatum -Komina -Komirra -Komorn -Kon Tiki -Kona -Kondazian -Kondos -Kondrup -Konen -Konet -Konish -Konittekock -Konjevich -Konner -Konrad -Konvalin Oaks -Konynenburg -Kooba -Koobilya -Kooemba -Kookaburra -Koola -Kooloora -Koombalah -Koonawarra -Koongara -Koonya -Koopman -Koopmans -Koora -Kooraban -Koorabar -Koorabel -Koorala -Koorangi -Koorawatha -Koorinda -Koorine -Kooringa -Kooringai -Kooringal -Koorong -Koorool -Kooser -Koosman -Kootenai -Kootingal -Koowong -Kooy -Kooyong -Kop Hill -Kopf -Koping -Kopp -Koppie -Kopping -Korangai -Korbel -Korean War Veterans -Korfitsen -Korinya -Korman -Korn -Korndyk -Korneck -Kornett -Korogwe Forest -Korokan -Korol -Korrel -Kort -Kortright -Kortum -Kortum Canyon -Korvale -Korvett -Kosciusco -Kosciusko -Kosciuszko -Kosec -Kosene -Koshivas -Kosich -Koski -Kosmas -Kosmina -Koso -Kossman -Kossuth -Kosta -Koster -Kostner -Kotenberg -Kotlik -Kotlin -Koto -Kotschevar -Kott -Kottinger -Kouba -Kourtney -Kousa -Kouwenhoven -Kov -Kovacs -Koval -Kovanda -Kovar -Kovey -Kovr -Kowal -Kowald -Kowari -Kowell -Koya -Koyen -Kozera -Koziara -Kozy -Kraay -Kraemer -Kraft -Krafton -Krainski -Krakar -Kraken -Krakow -Kral -Kralj -Krame -Kramer -Krameria -Kraml -Kramme -Krapish -Krattley -Kratz -Krause -Kravchenok -Krazy Acre -Krebs -Krech -Kreck -Kredel -Kreeger -Kreekview -Kreekwood -Kreil -Kreischer -Kreitzburg -Krenn -Krenz -Kress -Kress Farm -Kresse -Kressin -Kresswood -Krestrel -Krestwood -Kreth -Kreuse Canyon -Kreuser -Kreutzer -Kreuz -Kreuzer -Krey -Krieger -Krinbill -Kring -Krings -Kris -Krishna -Krismer -Kriss -Krista -Kriste -Kristen -Kristi -Kristie -Kristin -Kristina -Kristine -Kristmont -Kristo -Kristoffer -Kristy -Kristyn -Kroc -Krochmal -Krochmally -Kroeger -Krohn -Kroll -Krolop -Kromray -Krona -Kroner -Kronmeyer -Kroombit -Krooner -Kropf -Krost -Krotiak -Krouser -Krowka -Kroy -Krueger -Krug -Kruger -Kruhm -Kruk -Krull -Krumb -Kruse -Kruse Ranch -Kruser -Kruze -Krysch -Krysiak -Krystal -Krystallos -Ku Ring Gai Chase -Kubek -Kuberski -Kublank -Kubor -Kuck -Kudilla -Kuehnis -Kuester -Kuethe -Kuhl -Kuhlthau -Kuhn -Kuhnle -Kulani -Kulas -Kulgoa -Kulgun -Kulick -Kulinia -Kullaroo -Kullberg -Kuller -Kulshan -Kult -Kumar -Kumbardang -Kumquat -Kumulla -Kunath -Kunde Winery -Kundes -Kundi -Kundibah -Kunen -Kungala -Kungar -Kuniholm -Kunipipi -Kunkel -Kunkundi -Kuno -Kuntz -Kuppa -Kupsch -Kuranda -Kurchian -Kurdyla -Kuringai -Kurland -Kurnell -Kuroki -Kurraba -Kurrabi -Kurrajong -Kurrara -Kurrawa -Kurri -Kurt -Kurth -Kurtis -Kurtz -Kuru -Kuruc -Kurung -Kurvers Point -Kurwin -Kurzon -Kushner -Kushnetki -Kusilek -Kuss -Kussoth -Kutcher -Kuter -Kutmut -Kuts -Kuttabul -Kuzik -Kvistad -Kwajalein -Kwedar -Kyalite -Kybes -Kyer -Kyffin -Kyle -Kyleigh -Kylemore -Kyler -Kyllo -Kymberley -Kyme -Kynaston -Kynder -Kyndhurst -Kyne -Kyngdon -Kynoch -Kyogle -Kyong -Kyra -Kyrle -Kytes -Kyverdale -Kywong -L Fernwood -L I Exwy Service -L R A -L Ranch -L V Loop -L W Besinger -L W Johnson -LIE North Service -LIE South Service -LIsmore -LIttle Comber -LIttle Commodore -LMU Commercial -La Alameda -La Alegria -La Avanzada -La Baig -La Barbera -La Baree -La Barranca -La Barthe -La Bella -La Boheme -La Bolsa -La Brea -La Brecque -La Cadena -La Campana -La Canada -La Canyada -La Casa -La Casita -La Cienega -La Cima -La Clair -La Colina -La Conner -La Contenta -La Corona -La Corso -La Corte -La Coruna -La Coruno -La Cosa -La Costa -La Coste -La Count -La Cresenda -La Cresenta -La Cresta -La Croix -La Crosse -La Cruz -La Cuesta -La Cumbre -La Donna -La Duke -La Encina -La Esperanza -La Espiral -La Fayette -La Field -La Follette -La Fond -La Fonda -La Fontaine -La Fox -La Fox River -La France -La Franchi -La Goma -La Grama -La Granada -La Granda -La Grande -La Grange -La Habra -La Hai Roi -La Haigh -La Haya -La Herran -La Homa -La Honda -La Jolla -La Jota -La Junta -La Lena -La Loma -La Londe -La Lynn -La Madrona -La Maison -La Mancha -La Mans -La Mar -La Mascotte -La Mesa -La Messa -La Mirada -La Monte -La Nuez -La Pala -La Palm -La Paloma -La Paz -La Perouse -La Placita -La Plata -La Playa -La Plaza -La Plume -La Porte -La Pradera -La Prenda -La Puerta -La Questa -La Quinta -La Ragione -La Reina -La Reina Real -La Rena -La Rhee -La Ribera -La Rinconada -La Riva -La Riviera -La Riviere -La Rocca -La Roche -La Roda -La Rosa -La Rose -La Rue -La Salette -La Salida del Sol -La Salle -La Selva -La Sendita -La Serena -La Setta -La Sierra -La Siesta -La Torre -La Tour -La Vera -La Vereda -La Vergne -La Verne -La Vida -La Vista -La Vita -La Vuelta -La para -LaSalle -Laars -Laauwe -Laban Pratt -Labarge -Labath -Labau -Labbe -Label -Labelle -Labernum -Labo -Labonte -Labor -Labor In Vain -Labore -Labour Centre -Labourn -Labrador -Labranza -Labrooke -Labrott -Labtec -Labuan -Labumum -Laburch -Laburnam -Laburnham -Laburnum -Labworth -Lac Lavon -Lac Lehman -Lac du Beatrice -Lacasse -Lacassie -Lace -Lace D -Lacebark -Lacewing -Lacewood -Lacey -Laceys -Lachal -Lachapelle -Lachine -Lachlan -Lackawanna -Lackey -Lackey Dam -Lackford -Lackington -Lackland -Lackspur -Lacky Dam -Laclair -Laclede -Lacoma -Lacombe -Lacon -Lacona -Laconheath -Laconia -Lacosta -Lacota -Lacrosse -Lacrozia -Lacy -Lad -Ladas -Ladbroke -Ladbrook -Ladbrooke -Ladbury -Ladcastle -Ladd -Ladd Hill -Ladd Tract -Laddie -Laddin Rock -Laddins -Ladds -Ladenburg -Ladera -Laderman -Ladero -Ladew -Ladge -Ladham -Ladhill -Ladies -Ladino -Ladner -Ladomus -Ladonia -Ladram -Ladson -Ladue -Ladues End -Ladwik -Lady -Lady Alesford -Lady Ann -Lady Bank -Lady Bird -Lady Bridge -Lady Brook -Lady Bug -Lady Carrington -Lady Cutler -Lady Game -Lady Jamison -Lady Jane -Lady Marion -Lady Oak -Lady Penrhyn -Lady Pit -Lady Slipper -Lady Somerset -Lady Wakehurst -Lady Winter -Lady Wood -Ladybank -Ladybarn -Ladybird -Ladybooth -Ladybridge -Ladybrook -Ladyclose -Ladycroft -Ladyegate -Ladygrove -Ladymeade -Ladypit -Ladyshore -Ladyslipper -Ladysmith -Ladythorn -Ladythorne -Ladywell -Ladywood -Lae -Lafarge -Lafata -Lafayette -Lafayette Center -Lafayette Forest -Lafayette Park -Lafayette Ridge -Lafayette Village -Laffans -Laffayette -Lafferty -Lafield -Laflamme -Lafleur -Laflin -Lafollete -Lafond -Lafone -Lafontaine -Laforet -Laforge -Lafox -Lafoye -Lafranconi -Lafreniere -Lagade -Lagaret -Lage -Laggan -Lagham -Lagiss -Lago -Lago De Bracciano -Lago Oaks -Lago Vista -Lagoda -Lagonda -Lagoon -Lagoon Fire -Lagoon Valley -Lagoon View -Lagorio -Lagrandeur -Lagrange -Laguardia -Laguna -Laguna Creek -Laguna Grove -Laguna Honda -Laguna Main -Laguna Manor -Laguna Mirage -Laguna Oaks -Laguna Park -Laguna Springs -Laguna Vega -Laguna Vista -Laguna Wind -Laguna Woods -Lagunaria -Lagunita -Lagunitas -Lagunitas School -Lahams -Lahard -Lahey -Lahiere -Lahinch -Lahn -Lahon -Lahonda -Lahontan -Lahti -Laidlaw -Laidlow -Laight -Laighton -Laigle -Laila -Lain -Laindon -Laindon Common -Laindon High -Laine -Laings -Laiolo -Laird -Lairds Landing -Laith -Laithe Croft -Laitoki -Laitwood -Lake -Lake Adalyn -Lake Almanor -Lake Anza -Lake Arrowhead -Lake Augusta -Lake Barlee -Lake Beach -Lake Bellevue -Lake Berryessa -Lake Bluestone -Lake Bluff -Lake Boone -Lake Braddock -Lake Breeze -Lake Bridgeport -Lake Candlewood -Lake Canyon -Lake Central -Lake Chabot -Lake Chad -Lake Champlain -Lake Chapel -Lake Charles -Lake Christopher -Lake Circle -Lake Claire -Lake Cook -Lake Court -Lake Cove -Lake Curve -Lake Dam -Lake Dell -Lake Denmark -Lake Echo -Lake Eliza -Lake Elmo -Lake End -Lake Erie -Lake Fairfax -Lake Fall -Lake Farrington -Lake Fontal -Lake Forest -Lake Forrest -Lake Front -Lake Garda -Lake Garrison -Lake George -Lake Glen -Lake Grove -Lake Haughey -Lake Hazeltine -Lake Herman -Lake Heron -Lake Hill -Lake Hills -Lake Hills Connector -Lake Hinsdale -Lake Home -Lake House -Lake Huron -Lake Iosco -Lake Isle -Lake Jackson -Lake James -Lake Johanna -Lake Katherine -Lake Knoll -Lake Landing -Lake Largo -Lake Lawn -Lake Lenore -Lake Lesina -Lake Linden -Lake Lock -Lake Louise -Lake Lucy -Lake Lynwood -Lake Manor -Lake Marian -Lake Marie -Lake Mary -Lake Mary Cele -Lake McClure -Lake Mead -Lake Meadow -Lake Merced -Lake Michigan -Lake Nanuet -Lake Natoma -Lake Newport -Lake Nimbus -Lake Normandy -Lake Oaks -Lake Occoquan -Lake Of Isles -Lake One -Lake Oneida -Lake Ontario -Lake Overlook -Lake Park -Lake Pillsbury -Lake Pine -Lake Placid -Lake Pleasant -Lake Plz -Lake Point -Lake Pointe -Lake Potomac -Lake Pulaski -Lake Pyramid -Lake Ranch -Lake Ree -Lake Ridge -Lake Ridge Club -Lake Riley -Lake Rose -Lake Santa Clara -Lake Sarah -Lake Sarah Heights -Lake Shore -Lake Shore Crest -Lake Susan -Lake Susan Hills -Lake Tana -Lake Temescal -Lake Terrace -Lake Terrapin -Lake Towne -Lake Trail -Lake Trasineno -Lake Tree -Lake Valentine -Lake Valley -Lake Varuna -Lake View -Lake Villa -Lake Village -Lake Virginia -Lake Vista -Lake Warren -Lake Washington -Lake Wawasee -Lake Wilhaggin -Lake Windermere -Lake Zurich -Lakeaires -Lakebird -Lakebrook -Lakechime -Lakecliff -Lakecrest -Lakefair -Lakefield -Lakeford -Lakeforest -Lakefront -Lakegreen -Lakehall -Lakehaven -Lakehill -Lakehouse -Lakehurst -Lakeknoll -Lakeland -Lakeland Park -Lakeland Shores -Lakeland Valley -Lakeland fells -Lakelands -Lakelawn -Lakeman -Lakemba -Lakemont -Lakemoor -Lakemore -Lakemuir -Laken -Lakenheath -Lakenhurst -Lakepark -Lakepoint -Lakepointe -Laker -Lakeridge -Lakeridge Oaks -Lakes -Lakeshire -Lakeshore -Lakeshore Plaza -Lakeside -Lakeside Circle -Lakeside Manor -Lakeside Oak -Lakeside View -Lakeside Village -Lakespring -Lakespur -Lakestone -Lakeswood -Laketree -Lakevale -Lakeview -Lakeview Fire -Lakeview Terrace -Lakeville -Lakewater -Lakeway -Lakewind -Lakewinds -Lakewood -Lakewood Falls -Lakewood Farms -Lakewood Park -Lakewood Prairie -Lakewood Trails -Lakewoods -Lakeworth -Lakin -Lakota -Lalchere -Laleham -Lalic -Lalich -Lalique -Lallas -Lalleford -Laloki -Lalonde -Lalor -Lalos -Lamanda -Lamanna -Lamar -Lamarck -Lamarcus -Lamarr -Lamarre -Lamartine -Lamb -Lamb Heights -Lambarde -Lambaren -Lambden -Lambdin -Lambe -Lambeck -Lamberhurst -Lamberson -Lambert -Lambert Bridge -Lambert Creek -Lambertina -Lamberton -Lamberton Square -Lamberts -Lamberts Mill -Lambertson -Lambeth -Lambeth High -Lambeth Hill -Lambeth Palace -Lambiance -Lambie -Lambley -Lambolle -Lambourn -Lambourne -Lambourne Hall -Lambrecht -Lambridge -Lambridge Wood -Lambrusca -Lambs -Lambs Conduit -Lambs Farm -Lambsgate -Lambskin -Lambton -Lamburn -Lamer -Lamerock -Lamers -Lamerton -Lamesa -Lametti -Lamington -Lamlash -Lammas -Lammas Park -Lammermoor -Lammers -Lamoil -Lamoine -Lamoka -Lamon -Lamond -Lamonerie -Lamont -Lamonte -Lamorak -Lamoraux -Lamore -Lamorna -Lamotte -Lamour -Lamoureux -Lamp -Lamp Lighter -Lamp Post -Lamp Rey -Lampard -Lampasas -Lampec -Lamphere -Lamping -Lampits -Lampits Hill -Lamplight -Lamplighter -Lamplighters -Lamport -Lamprey -Lampson -Lampton -Lampton Park -Lamring -Lamrock -Lamsey -Lamshin -Lamson -Lan Ark -Lana -Lanacre -Lanae -Lanai -Lanark -Lanatt -Lanbros -Lanbury -Lancashire -Lancaster -Lancaster School -Lancastre -Lancastrian -Lance -Lancefield -Lanceley -Lancell -Lancelot -Lancelyn -Lancer -Lancero -Lancers -Lancet -Lancewood -Lanchester -Lancia -Lancing -Lancot -Lancraft -Land -Land Off Causeway -Land Off Kendall -Land Off Pond -Land Off Priest -Land Off Whipple -Land Park -Land View -Landa -Landaker -Landale -Landana -Landau -Landcroft -Landells -Landen -Lander -Lander Set -Landeros -Landers -Landerset -Landerwood -Landess -Landfair -Landfall -Landfield -Landfill -Landfill Access -Landford -Landgraf -Landgrane -Landgrave -Landgreen -Landham -Landing -Landings -Landini -Landis -Landman -Landmark -Landmead -Landmeier -Landolt -Landon -Landon Hill -Landor -Landore -Landos -Landover -Landra -Landrace -Landrail -Landreth -Landridge -Landrock -Landry -Lands -Lands End -Landsberg -Landsburg -Landscape -Landscove -Landsdale -Landsdown -Landsdowne -Landseer -Landsend -Landsfield -Landtree -Landvale -Landview -Landwehr -Landwick -Landy -Lane -Lane And Dowry -Lane Cove -Lane Crest -Lane End -Lane Head -Lane Lorraine -Lanehead -Lanell -Lanercost -Lanes -Lanesboro -Lanesburgh -Laneside -Lanett -Lanette -Laneview -Lanewood -Lanfair -Lanfear -Lanfield -Lanford -Lanfranc -Lang -Langaller -Langbar -Langborough -Langbourne -Langbrook -Langcroft -Langdale -Langdon -Langdrum -Lange -Langelier -Langen -Langer -Langerfeld -Langetree -Langevin -Langewood -Langfield -Langford -Langham -Langhart -Langhedge -Langholm -Langhome -Langhorn -Langhorne -Langhurst -Langhurst Wood -Langland -Langlands -Langler -Langley -Langley Canyon -Langley Common -Langley Fork -Langley Hall -Langley Hill -Langley Lodge -Langley Oaks -Langley Park -Langley Platt -Langley Vale -Langleybury -Langly -Langmaid -Langmans -Langmead -Langmuir -Langner -Langness -Langney -Lango -Langport -Langridge -Langroyd -Langset -Langsett -Langsford -Langshan -Langshott -Langside -Langstaff -Langston -Langstone -Langthorne -Langton -Langtree -Langtry -Langwith -Langwith Valley -Langworth -Langworthy -Lanham -Lanham Severn -Lanhill -Lani -Lani Kai -Lanier -Lanigan -Laning -Lanini -Lanitos -Lankers -Lankester Parker -Lankford -Lanktree -Lanning -Lannock -Lannon -Lannoy -Lanny -Lano -Lanram -Lanrick -Lanridge -Lansbrook -Lansbury -Lansdale -Lansdell -Lansdown -Lansdowne -Lansdwone -Lanseer -Lansfield -Lansford -Lanshaw -Lansing -Lansley -Lansmere -Lant -Lantana -Lantern -Lantern Hollow -Lantern View -Lanterns -Lanthorn -Lantis -Lanton -Lantz -Lanvalley -Lanvanor -Lanyard -Lanza -Lanzaro -Lapa -Lapeer -Lapham -Lapidge -Lapier -Lapierre -Lapin -Lapine -Lapins -Lapis -Lapish -Lapland -Laplata -Laport -Laporte -Lapper -Lappmark -Lapre -Lapridge -Lapstrake -Lapu Lapu -Lapus -Lapwing -Laque -Lara -Larada -Laramee -Laramere -Laramie -Laraway -Larbert -Larbo -Larbre -Larc -Larc Industrial -Larch -Larch Hill -Larchdale -Larchfield -Larchmont -Larchmont Square -Larchmore -Larchview -Larchwood -Larciano -Larcom -Larcombe -Larcridge -Laredo -Laren -Larentia -Large -Larges -Larges Bridge -Largewood -Largo -Largo Center -Larguita -Largura -Laria -Lariat -Larimar -Larimer -Larios -Larissa -Lariston -Larita -Larium -Lark -Lark Brown -Lark Center -Lark Haven -Lark Hill -Lark Rise -Lark Song -Lark Spur -Larkard -Larkbere -Larkdale -Larkdale E -Larkellen -Larken -Larkey -Larkfield -Larkhall -Larkhill -Larkin -Larkin Ridge -Larking -Larkings -Larkington -Larkins -Larkmead -Larkmeade -Larks -Larksfield -Larkshall -Larkspur -Larkspur Canyon -Larkspur Plaza -Larkswood -Larkview -Larkwell -Larkwood -Larlin -Larmans -Larmuth -Larnach -Larne -Larned -Larnis -Larno -Larnock -Larochelle -Laron -Larool -Larosa -Larose -Larpent -Larpin -Larra -Larrabee -Larraway -Larrimore -Larrlyn -Larry -Larry Heller -Larry Ho -Larsdotter -Larsen -Larsens -Larson -Larson Farm -Larstan -Larue -Larup -Larwin -Larwood -Las Amigas -Las Animas -Las Astas -Las Barrancas -Las Brisas -Las Casas -Las Casitas -Las Colinas -Las Colindas -Las Cumbres -Las Dunas -Las Encinitas -Las Feliz -Las Flores -Las Gallinas -Las Huertas -Las Juntas -Las Lomas -Las Lomitas -Las Miradas -Las Olas -Las Ovejas -Las Palmas -Las Pavadas -Las Piedras -Las Plumas -Las Posadas -Las Positas -Las Pulgas -Las Quebradas -Las Ramblas -Las Raposa -Las Robles -Las Trampas -Las Vegas -Lasalle -Lasallette -Lasata -Lascelles -Lascombe -Laselle -Laser -Lash -Lash Larue -Lasham -Lashbrook -Lashbrooks -Lasher -Lashlake -Lasiandra -Lasker -Laskey -Laskie -Lass -Lassa -Lassell -Lassen -Lasser -Lasseter -Lassie -Lassiter -Lasso -Lasswade -Last -Last Chance -Lasta -Lastingham -Lastner -Lastreto -Lasuen -Latch -Latchford -Latchingdon -Latchmere -Latchmoor -Latchmore -Latchwood -Late Harvest -Late Walter -Lateward -Latham -Lathan -Lathbury -Lathem -Latholm -Lathom -Lathom Hall -Lathrop -Latigo -Latimer -Latin -Latina -Latisquama -Latney -Latoff -Latona -Latonia -Latoria -Latour -Latourette -Latrobe -Latshaw -Latta -Lattice -Lattie -Lattimer -Lattimore -Lattin -Latting -Lattingtown -Latton -Latty -Latura -Latvia -Laub Pond -Laud -Laud Honm -Lauder -Lauderdale -Laudervale -Lauerman -Lauf -Laufall -Lauff Ranch -Laugelle -Laughing Cow -Laughlin -Laughter -Laughton -Lauma -Lauman -Laumer -Launcelot -Launceston -Launch -Launch Site -Launching -Launders -Laundess -Laundress -Laundry -Launton -Lauppe -Laura -Laura Belle -Laura Lee -Laura Mark -Laura Ville -Lauradale -Laural -Laural Hills -Lauralton -Laurana -Lauras -Laurel -Laurel Acres -Laurel Bank -Laurel Bowie -Laurel Branch -Laurel Brook -Laurel Canyon -Laurel Cove -Laurel Creek -Laurel Crest -Laurel Dell -Laurel Dell Fire -Laurel End -Laurel Fort Meade -Laurel Glen -Laurel Grove -Laurel Hill -Laurel Hills -Laurel Hollow -Laurel Lakes -Laurel Leaf -Laurel Leaves -Laurel Oak -Laurel Oaks -Laurel Park -Laurel Race Track -Laurel Ridge -Laurel Rock -Laurel Springs -Laurel Valley -Laurel View -Laurel Wood -Laurel Woods -Laurelbrook -Laureldale -Laurelei -Laureles -Laurelglen -Laurelgrove -Laurelhurst -Laurels -Laurelton -Laurelview -Laurelwalk -Laurelwood -Lauren -Lauren Ridge -Laurence -Laurence Hamilton -Laurence Pountney -Laurene -Laurent -Lauretta -Laurette -Lauri -Laurian -Lauriana -Lauriat -Lauricella -Laurie -Laurie Ann -Laurie Jo -Laurie Lee -Laurie Meadows -Laurier -Laurieton -Laurin -Laurina -Laurinda -Laurine -Lauriston -Laurita -Lauritson -Lauritzen -Laury -Lausanne -Lausecker -Lausen -Lauser -Lausett -Laussat -Laux -Lava -Lava Bed -Laval -Lavalencia -Lavall -Lavalle -Lavally -Lavander -Lavant -Lavarack -Lavell -Lavelle -Lavelle Smith -Lavender -Lavender Hill -Lavender Park -Lavenders -Lavengro -Lavenham -Lavenida -Lavenir -Laventhal -Laver -Lavergne -Lavern -Laverne -Lavernock -Laverock -Lavers -Laverstoke -Lavidge -Lavidia -Lavigne -Lavin -Lavina -Lavington -Lavinia -Lavinus -Lavio -Laviolette -Lavister -Lavoie -Lavona -Lavoni -Lavonne -Lavrock -Law -Law Hall -Lawbrook -Lawday Place -Lawers -Lawes -Lawfield -Lawford -Lawfords Hill -Lawler -Lawler Ranch -Lawless -Lawley -Lawling -Lawlinge -Lawlins -Lawlor -Lawmarissa -Lawn -Lawn House -Lawn Ridge -Lawnbank -Lawndale -Lawnfair -Lawnhurst -Lawnmeadow -Lawns -Lawnside -Lawnswood -Lawnview -Lawnwood -Lawrance -Lawrence -Lawrence Brook -Lawrence Creek -Lawrence End -Lawrence Hargrave -Lawrence Hill -Lawrence Mill -Lawridge -Lawrie -Lawrie Park -Lawry -Laws -Laws Brook -Laws Ford -Lawsbrook -Lawson -Lawson Glen -Lawton -Lawton Moor -Lawtonka -Lawtonwood -Lawyers -Lawyers Hill -Lax -Laxell -Laxey -Laxfield -Laxton -Lay -Layard -Laybutt -Laycock -Layden -Layer -Layfield -Layham -Layhill -Layland -Laylock -Layman -Layminster -Layne -Laystall -Layters -Layters Green -Laytham -Laythan -Layton -Layton Hall -Layton Park -Layton Ridge -Laytonia -Laytons -Laytonsville -Lazaneo -Lazel -Lazell -Lazelle -Lazonby -Lazy -Lazy Acres -Lazy Creek -Lazy Day -Lazy Glen -Lazy Hollow -Lazy Point -Lazywoods -Lazzeretti -Lazzini -Le Ah -Le Ann -Le Bain -Le Britton -Le Brun -Le Chateau -Le Claire -Le Clos -Le Conte -Le Donne -Le Fevre -Le Fevres -Le Franc -Le Freth -Le Gendre -Le Grande -Le Havre -Le Jeune -Le Maire -Le Mans -Le Marchant -Le May -Le Moyne -Le Roy -Le Sueur -Le Temple -Le Visnet -Le personne -LeGrand -Lea -Lea Bridge -Lea Farm -Lea Hall -Lea Mount -Lea Park -Lea Valley -Leabank -Leabig -Leabons -Leabourne -Leabrook -Leaburn -Leach -Leaches -Leachs -Leacocks -Leacon -Leaconfield -Leacroft -Lead -Lead Mine -Leadale -Leadbeater -Leadbeaters -Leadbetter -Leadenhall -Leader -Leader Williams -Leadon -Leadville -Leadwell -Leaf -Leaf Lawn -Leaf Wing -Leafcrest -Leafcup -Leafcutter -Leafgreen -Leafhaven -Leafield -Leaflet -Leaford -Leaforis -Leafwood -Leafy -Leafy Oak -Leagrave -Leagrave High -Leah -Leahaven -Leahurst -Leahy -Leake -Leal -Lealand -Lealand Peck -Lealands -Leam -Leaman -Leaman Farm -Leamar -Leamington -Leamon -Leamoore -Leamore -Leamouth -Lean -Leana -Leander -Leaning Oak -Leann -Leanna -Leanne -Leanore -Leapale -Leapfrog -Leaping Deer -Leapingwell -Leapley -Lear -Learmonth -Learned -Learner -Learning -Lears Glen -Leary -Leas -Leasam -Leasey Bridge -Leasey Dell -Leaside -Leask -Leasowe -Leasowes -Leasure -Leat -Leatham -Leathe -Leather -Leather Creek -Leatherback -Leatherbark -Leatherchip -Leatherdale -Leatherhead -Leatherleaf -Leathermarket -Leathers -Leatherstocking -Leatherwood -Leathley -Leathwaite -Leathwell -Leaton -Leavenworth -Leaver -Leaves Green -Leavesden -Leavesley -Leavitt -Leavitt Woods -Leawarra -Leawood -Leaycraft -Leazes -Lebanon -Lebaron -Lebeaux -Lebec -Lebed -Lebeda -Lebel -Leber -Lebkamp -Leblanc -Leboeuf -Lebos -Lebrun -Leburmum -Lecante -Lech Walesa -Lechford -Lechmere -Lechner -Leckford -Leckwith -Lecky -Leclair -Leclaire -Leclerc -Lecluse -Lecompte -Leconfield -Lectern -Lecuyer -Leda -Ledborough -Ledbury -Leddy -Lede -Leder -Lederhaus -Ledford -Ledgard -Ledge -Ledge Brook -Ledge Hill -Ledge Rock -Ledge View -Ledgebrook -Ledgecrest -Ledgedale -Ledgelawn -Ledgemere -Ledgemore -Ledger -Ledgers -Ledgestone -Ledgetree -Ledgeview -Ledgeville -Ledgewood -Ledley -Lednura -Ledochowski -Ledoux -Ledrington -Ledsham -Ledson -Ledston -Ledston Main -Leduc -Ledward -Ledway -Ledwell -Ledyard -Lee -Lee Acres -Lee Alan -Lee Ann -Lee Brig Coronation -Lee Cemetery -Lee Chapel -Lee Church -Lee Conservancy -Lee Deforest -Lee Green -Lee High -Lee Hill -Lee Holm -Lee Jackson -Lee Jay -Lee Landing -Lee Lee -Lee Manor -Lee Masey -Lee Moor -Lee Overlook -Lee Patent -Lee Prescott -Lee School -Lee School Cross -Lee Vale -Lee Valley -Lee Wootens -Leeann -Leeberg -Leebrad -Leech -Leech Brook -Leechcroft -Leechpool -Leecroft -Leedale -Leedburg -Leeder -Leeds -Leeds Aire -Leeds Albion -Leeds Barnsdale -Leeds Bayswater -Leeds Boar -Leeds Call -Leeds Castle -Leeds Duncan -Leeds Hall -Leeds Infirmary -Leeds Moor -Leeds Old -Leeds Potternewton -Leeds Spen -Leeds Tunstall -Leeds Vicar -Leeds Victoria -Leeds York -Leedsville -Leedy -Leefield -Leegate -Leehigh -Leek -Leeke -Leelair -Leeland -Leeland Orchard -Leelyn -Leemans -Leemay -Leeming -Leemon -Leeper -Leepin -Leerdam -Lees -Lees Corner -Lees Court -Lees Crossing -Lees Farm -Lees Hall -Lees Hill -Lees New -Lees Park -Leesborough -Leesburg -Leese -Leeside -Leesley -Leeson -Leestone -Leesville -Leesway -Leeswood -Leet -Leeta Cornus -Leete -Leeton -Leeuwarden -Leever -Leeward -Leewater -Leewill -Leewood -Leewood Forest -Lefante -Lefavour -Lefevre Inn -Leffern -Lefferts -Lefke -Lefont -Lefrancois -Lefreth -Lefroy -Lefurgy -Legacy -Legacy Park -Legacy Pointe -Legana -Legard -Legaski -Legate -Legate Hill -Legation -Legato -Legatt -Legdewood -Legend -Legend Glen -Legend Manor -Legend Oaks -Legends -Legends Club -Legg -Leggatt -Leggatts Wood -Legge -Leggerini -Leggett -Leggo -Leggs -Leggs Heath -Leggs Hill -Legh -Leghorn -Legion -Lego -Legon -Legra -Legrand -Legregni -Legros -Legsheath -Lehan -Lehigh -Lehman -Lehmann -Lehmer -Lehn -Lehnert -Lehnertz -Lehr -Lehrer -Lehtinen -Lei -Leibel -Leibert -Leibes -Leibig -Leibrandt -Leicester -Leichardt -Leichester -Leichhardt -Leick -Leidesdorff -Leigh -Leigh Beck -Leigh Cliff -Leigh Hall -Leigh Hill -Leigh Hunt -Leigh Mill -Leigh Park -Leigh View -Leigham -Leigham Court -Leighams -Leighbrook -Leighdon -Leighfield -Leighfield Valley -Leighfields -Leighlands -Leighs Lodge -Leighton -Leighton Buzzard -Leighton Wood -Leighwood -Leigton -Leila -Leilani -Leims -Leineke -Leinster -Leipzig -Leishear -Leister -Leisure -Leisure Oak -Leisure Town -Leisure World -Leisureville -Leitch -Leitches Wharf -Leith -Leith Park -Leith View -Leitha -Leitrim -Leitz -Leka -Lekoday -Lekoe -Leksand -Leksich -Lektorich -Lela -Lelak -Leland -Leland Farm -Leland Hill -Lelani -Leliaris -Lelland -Lelong -Leman -Leman Lake -Lemans -Lemar -Lemarc -Lemas -Lemay -Lemay Lake -Lembeck -Lembi -Lemcrow -Lemen -Lemire -Lemm -Lemmington -Lemmon -Lemna -Lemnos -Lemocks -Lemoine -Lemon -Lemon Hill -Lemon Tea -Lemon Thyme -Lemon Tree -Lemongrove -Lemons Bridge -Lemont -Lemontree -Lemonwell -Lemonwood -Lemoore -Lemorr -Lemos -Lemoyne -Lemsford -Lemur -Len -Len Hill -Lena -Lenacre -Lenah -Lenah Farm -Lenape -Lenapi -Lenard -Lenark -Lenaskin -Lenbob -Lenborough -Lenburg -Lench -Lenclair -Lencoe -Lendall -Lendell -Lendon -Lendore -Lendrum -Leneda -Lenel -Lenelby -Lenertz -Leness -Leney -Lenfant -Lenfell -Lenfest -Lenfield -Leng -Lengl -Lenglen -Lenham -Lenham Forstal -Lenham Heath -Lenhart -Lenhome -Lenhurst -Lenington -Lenis -Lenison -Leniston -Lenmore -Lennan Brook -Lennane -Lennard -Lennartz -Lennecke -Lennell -Lennis -Lennoco -Lennon -Lennox -Lennoxshire -Lenoir -Lenolt -Lenora -Lenore -Lenox -Lenoxdale -Lenray -Lenroc -Lens -Lenside -Lent -Lent Green -Lent Rise -Lentara -Lenten -Lenthall -Lenthen -Lenthorp -Lentmead -Lenton -Lentz -Lenwood -Lenz -Lenzen -Lenzi -Lenzie -Leo -Leo Park -Leo Slyvious -Leofrene -Leola -Leoleis -Leominster -Leominster Shirley -Leon -Leon Cook -Leona -Leonard -Leonard Calvert -Leonard Farm -Leonard Wood -Leonard Young -Leonardine -Leonardini -Leonardo -Leonardo Da Vinci -Leonardtown -Leonardville -Leone -Leonello -Leong -Leonhard -Leonhardt -Leonia -Leonor -Leonora -Leopold -Leos -Leota -Lepanto -Lepine -Leplastrier -Leppoc -Lerch -Lerch Creek -Lerer -Leric -Lerida -Leritz -Lerner -Lerners -Lernhart -Lerose -Leroux -Leroy -Leroy Gorham -Lerwick -Les -Lesa -Lesbourne -Lescombe -Lescot -Leseur -Lesford -Lesher -Leshyk -Lesieur -Leski -Leslee -Lesley -Leslie -Leslie Ann -Leslie Gilbert -Leslie Park -Leslie Smith -Leslyn -Lesney Park -Lesnick -Lesnie -Lesoir -Lessar -Lesser -Lessing -Lessingham -Lessington -Lessini -Lessness -Lester -Lester Grey -Lester Wall -Lesters -Leston -Lestric -Lesueur -Lesure -Leswell -Leswin -Leswing -Leta -Letawsky -Letcher -Letchmore -Letchworth -Letcombe -Letendre -Letham -Lethbridge -Leticia -Letitia -Letsdown -Lett -Lettau -Letter -Letter Box -Letterbox -Letterkenny -Letterman -Letterstone -Lettice -Lettie -Lettsom -Lettumann -Letzen -Leucha -Leue -Leumeah -Leuna -Leuning -Leupold -Leupp -Leura -Lev -Leva -Levade -Leval -Levant -Levato -Levbert -Levedale -Levee -Levee Access -Level -Level Crossing -Levelle -Leven -Levenage -Levendale -Levendi -Levenhurst -Levens -Levenshulme -Levenworth -Lever -Lever Edge -Lever Hall -Lever Park -Leverenz -Leveret -Leverett -Leverhulme -Leverich -Leveridge -Levering -Levern -Leveroni -Leverson -Leverstock Green -Leverton -Leveson -Levett -Levey -Levgar -Levi -Levick -Levin -Levine -Levington -Levinson -Leviston -Levit -Levitt -Levoy -Levuka -Levvy -Levy -Lewandowski -Lewanna -Lewd -Lewelling -Lewellyn -Lewelyn -Lewgars -Lewid -Lewin -Lewins -Lewinsville -Lewis -Lewis Brown -Lewis Chapel -Lewis Clark -Lewis Court -Lewis Farm -Lewis Foster -Lewis Hill -Lewis Isle -Lewis Knolls -Lewis Point -Lewis Spring -Lewisburg -Lewisbury -Lewisdale -Lewish -Lewisham -Lewishham -Lewiston -Lewistown -Lewitt -Lewmay -Lewood -Lewsey -Lewson -Lewyt -Lex -Lexann -Lexden -Lexford -Lexington -Lexington Crossing -Lexington School -Lexington Valley -Lexton -Ley -Ley Field -Ley Hey -Leyborne -Leybourne -Leyburn -Leyburne -Leycester -Leycett -Leycroft -Leyden -Leyden Park -Leydenhatch -Leydon -Leyes -Leyete -Leyfield -Leyfield The Manor -Leyhill -Leyland -Leyland Park -Leyland Ridge -Leylands -Leylang -Leymar -Leys -Leysdown -Leysfield -Leysholme -Leyspring -Leystone -Leystra -Leyswood -Leyte -Leythe -Leyton -Leyton Cross -Leyton Midland -Leyton Park -Leytonstone -Leytonstone High -Leytte -Leywell -Leywick -Leywood -Lezayre -Lherault -Liable -Liahona -Liana -Liardet -Liatris -Libbeus -Libbey -Libby -Libeau -Libera -Liberata -Liberator -Liberia -Liberty -Liberty Bell -Liberty Grove -Liberty Hall -Liberty Heights -Liberty Hill -Liberty Island -Liberty Lake -Liberty Lakes -Liberty Mill -Liberty Oak -Liberty Park -Liberty Pole -Liberty School -Liberty Square -Liberty Tree -Liberty View -Libourel -Libra -Library -Library Hill -Libs -Libuse -Licata -Liccicitos -Lichau -Lichen -Lichfield -Lichtenberg -Lick -Lick Mill -Lick River -Lickfolds -Lickless -Lida -Lidbury -Lidco -Liddell -Liddell Pipeline -Lidden -Liddicoat -Lidding -Liddington -Liddington Hall -Liddington New -Liddle -Liddon -Lidell -Lidfield -Lidgate -Lidgerwood -Lidget -Lidgett -Lidgett Park -Lidgetts -Lidiard -Lido -Lidsing -Lidwells -Lidyard -Liebenrood -Liebig -Liebrock -Lieder -Liedum -Lief Erickson -Liege -Lieno -Lieper -Lierly -Lies -Liese -Lietz -Lieutenant Cox -Life -Life Quest -Liffler -Liffre -Lift -Lifton -Ligar -Liggett -Ligham -Light -Light Alders -Light Guard -Light House -Light Infantry -Light Oaks -Light Springs -Lightborne -Lightbounds -Lightbourne -Lightbowne -Lightburn -Lightburne -Lightcap -Lightcliff -Lightermans -Lightfoot -Lighthorne -Lighthouse -Lighthouse Landing -Lighthouse View -Lightland -Lightlands -Lightner -Lightning -Lightning Ridge -Lightning View -Lightridge Farm -Lightshaw -Lightship -Lightson -Lightthorne -Lightwater -Lightwood -Ligman -Lignum -Ligon -Ligonier -Liguria -Ligurian -Lihon -Likala -Likely -Likens -Likes -Lila -Lilac -Lilac Blossom -Lilac Bush -Lilac Park -Lilah -Lilbet -Lilbourne -Lilestone -Liley -Lilford -Lilian -Lilibet -Lilienthal -Lilihina -Lilita -Lill -Lilla -Lillard -Lille -Lillechurch -Lillehei -Lilleshall -Lilley -Lilleyhoo -Lilli Pilli -Lilli Pilli Point -Lillian -Lillick -Lillie -Lillifee -Lilline -Lilliput -Lillis -Lilly -Lilly Bottom -Lilly Hill -Lilly Pilly -Lilly Pond -Lillys -Lilting -Lilva -Lily -Lily Bottom -Lily Cache -Lily Dhu -Lily Field -Lily Hill -Lily Lake -Lily Mar -Lily Park -Lily Pond -Lilyan -Lilybrook -Lilydale -Lilyfield -Lilypad -Lilyville -Lima -Liman -Limantour -Limar -Limb Tree -Limberi -Limbourne -Limbrick -Limburg -Limbury -Lime -Lime Green -Lime Hill -Lime Kiln -Lime Meadow -Lime Pit -Lime Tree -Lime Trees -Lime Works -Limebank -Limeburner -Limecroft -Limeditch -Limefield -Limehouse -Limehurst -Limekilln -Limekiln -Limekiln Canyon -Limelight -Limerick -Limeridge -Limerston -Limes -Limes Field -Limesfield -Limestead -Limestone -Limestone School -Limetree -Limetrees -Limewood -Liming -Limits -Limmer -Limmerhill -Limmings -Limoges -Limoli -Limon -Limonite -Limpsfield -Lin Gate -Lin Lor -Lina -Linacre -Linares -Linaria -Linbarger -Linberg -Linbrook -Linby -Lince -Linch -Linchfield -Linclon -Lincoln -Lincoln Centre -Lincoln Crest -Lincoln Green -Lincoln Hill Camp Oak -Lincoln Hills -Lincoln House -Lincoln Knoll -Lincoln Log -Lincoln Mall -Lincoln Meadows -Lincoln Mill -Lincoln Oaks -Lincoln Park -Lincoln Village -Lincoln Woods -Lincolnia -Lincolns -Lincolnshire -Lincolntown -Lincolnway -Lincolnwood -Lincombe -Lincon -Lincrest -Lincroft -Lind -Linda -Linda Bee -Linda Flora -Linda Jean -Linda Lee -Linda Mar -Linda Marie -Linda Mesa -Linda Moor -Linda Rio -Linda Sue -Linda Vista -Lindabury -Lindaire -Lindal -Lindale -Lindall -Lindamoor -Lindaro -Lindau -Lindauer -Lindawood -Lindberg -Lindbergh -Lindbury -Linde -Lindegar -Lindeke -Lindel -Lindell -Lindelof -Lindemann -Linden -Linden Chapel -Linden Farms -Linden Grove -Linden Hall -Linden Hill -Linden Hills -Linden Hurst -Linden Leaf -Linden Linthicum -Linden Oaks -Linden Park -Linden Ridge -Linden Thomas -Linden Tree -Linden Wood -Lindenberry -Lindenbrook -Lindendale -Lindenhill -Lindenhouse -Lindenleaf -Lindenoaks -Lindentree -Lindenwood -Linder -Linder Hill -Linderman -Lindero -Lindesay -Lindeth -Lindfield -Lindford -Lindgren -Lindhurst -Lindi -Lindig -Lindinis -Lindisfarm -Lindisfarne -Lindley -Lindleywood -Lindmuir -Lindo -Lindon -Lindop -Lindor -Lindore -Lindores -Lindow -Lindow Fold -Lindquist -Lindrick -Lindridge -Lindron -Lindrop -Lindrum -Lindsay -Lindsay Blake -Lindsay Creek -Lindsay McDermott -Lindsay Pond -Lindsell -Lindsey -Lindsey Farm -Lindsey Manor -Lindsgate -Lindsley -Lindstrom -Lindum -Lindview -Lindy -Lindys -Line -Line Ridge -Lineas -Linebaugh -Linebrook -Linefield -Linehurst -Linersh -Linersh Wood -Lines -Linet -Linette -Liney -Linfield -Linford -Ling -Lingan -Linganore -Lingard -Lingards -Lingdale -Lingfield -Lingfield Common -Lingholme -Lingley -Linglongs -Lingmoor -Lingwell -Lingwell Gate -Lingwell Nook -Lingwood -Linhares -Linhope -Linington -Link -Link Hill -Linkfield -Linkmead -Links -Links View -Linkscroft -Linkside -Linksley -Linksview -Linksway -Linkswood -Linkway -Linkwood -Linkythorn -Linlar -Linlee -Linley -Linmore -Linmouth -Linn -Linnaean -Linnards -Linne -Linnea -Linnean -Linnell -Linneman -Linner -Linnet -Linnet Hill -Linney -Linnitt -Linnway -Linom -Linquist -Linroping -Linscheid -Linscott -Linsdale -Linsdell -Linsey -Linsford -Linslade -Linsley -Linstead -Linstedt -Linthicum -Linthorne -Linthorpe -Linton -Linton Hall -Linton Way -Lintonia -Lintric -Linum -Linus -Linus Pauling -Linver -Linville -Linway -Linway Park -Linwood -Linwood Forest -Linzee -Lio -Lion -Lion Fold -Lion Wharf -Lioncrest -Lionel -Lions -Lions Chase -Lions Club -Lions Creek -Lions Field -Lions Gate -Lions Head Ranch -Lions Park -Lions Watch -Lionsfield -Lionshead -Liotard -Liparita -Lipes -Liphook -Lipman -Lipnick -Lippard -Lippen -Lippert -Lippi -Lippit -Lippitt -Lippizan -Lippizaner -Lippold -Lipsett -Lipton -Liptraps -Liquid Amber -Liquid Laughter -Liquidamber -Lira -Lirious -Liryc -Lisa -Lisa Ann -Lisa Gaye -Lisa Lee -Lisamary -Lisawood -Lisbeth -Lisbon -Lisbon Center -Lisborough -Lisburn -Lisburne -Liscanor -Liscard -Liscomb -Liscombe -Liscum -Lisdowney -Lise -Lisetta -Lisford -Lisgar -Lisheen -Lisk -Liska -Liskeard -Lisker -Lisle -Lismore -Lispenard -Liss -Lissadel -Lissanthe -Lisso -Lissoms -Lisson -Lissow -List -Lister -Listetr -Listing -Listmas -Liston -Listowe -Listowel -Listra -Liszka -Liszt -Lita -Litchenberg -Litchfield -Litchfield Pine -Litchult -Litherland -Lithgow -Litho -Lithonia -Lithos -Lithuanica -Litina -Litke -Litle Circle -Litnonia -Litohenberg Fire -Littel -Littell -Little -Little ALmshoe -Little Acres -Little Ada -Little Albany -Little Albion -Little Alfred -Little Argyll -Little Arthur -Little Aston -Little Baddow -Little Bank -Little Bardfield -Little Basin -Little Bay -Little Bear Creek -Little Bear Hill -Little Beattie -Little Bend -Little Berkhamsted -Little Berry -Little Big Horn -Little Bloomfield -Little Bluestem -Little Boy -Little Braxted -Little Brighton -Little Broadway -Little Brook -Little Browns -Little Buckingham -Little Bury -Little Bushey -Little Cahill -Little Canada -Little Chapel -Little Chester -Little Church -Little Circle -Little City -Little Cleveland -Little Clove -Little College -Little Collins -Little Common -Little Compton -Little Cormiston -Little Cove -Little Cranmore -Little Creek -Little Crow -Little Current -Little Darling -Little David -Little Difficult -Little Dorrit -Little Downling -Little Ealing -Little East Neck -Little Edward -Little Ees -Little Egerton -Little Essex -Little Eveleigh -Little Falls -Little Farm -Little Farms -Little Fawn Canyon -Little Ferry -Little Foot -Little Fountain -Little Fox -Little Friday -Little Gaynes -Little Gerpins -Little Grange -Little Grass -Little Green -Little Gregories -Little Grove -Little Gypps -Little Hammer -Little Harbor -Little Haven -Little Hay -Little Heath -Little Heath Barley -Little Hill -Little Hollow -Little Honker Bay -Little Horkesley -Little Horwood -Little Hunter -Little Hyde -Little John -Little Johns -Little Joyce -Little King -Little Kings -Little Laver -Little Lever -Little Llagas -Little Llewellyn -Little London -Little Market -Little Marlborough -Little Marlow -Little Marryat -Little Marsh -Little Martin -Little Meadow -Little Melody -Little Merrill -Little Montague -Little Montgomery -Little Moose -Little Mort -Little Moss -Little Mount -Little Mountain -Little Nahant -Little Nassau -Little Neck -Little Neville -Little New -Little Nicholson -Little Norsey -Little Norton -Little Oak -Little Oaks -Little Orchard -Little Ox -Little Oxford -Little Oxhey -Little Path -Little Patuxent -Little Peninsula -Little Peter -Little Pier -Little Pitt -Little Plains -Little Point -Little Pond -Little Portland -Little Potters -Little Quarry -Little Queen -Little Queens -Little Reeves -Little Regent -Little Revel End -Little Ridge -Little Riley -Little River -Little River Run -Little Rock -Little Roke -Little Russell -Little Saint Marys -Little Seneca -Little Smith -Little Somerset -Little Sorrel -Little Spring -Little Tey -Little Theodore -Little Titchfield -Little Totham -Little Tree -Little Tring -Little Trinity -Little Turnpike -Little Turriell Bay -Little Twye -Little Uvas -Little Valley -Little Wakering -Little Wakering Hall -Little Walker -Little Waltham -Little Warley Hall -Little Wellington -Little West -Little Whaleneck -Little Widbury -Little Willandra -Little Wonga -Little Wood -Little Woodhouse -Little Wyndham -Little Young -Littlebourne -Littlebrook -Littlebrooke -Littlebuck -Littlebury -Littlecote -Littlecroft -Littledale -Littledales -Littledown -Littlefield -Littlefields -Littleford -Littleham -Littlehaven -Littleheath -Littlehurst -Littlejohn -Littlemoor -Littlemore -Littlemoss -Littleoak -Littles -Littles Point -Littlethorpe -Littleton -Littleton County -Littletree -Littleway -Littlewick -Littlewood -Littleworth -Littleworth Common -Littley Green -Littlfield -Littman -Litton -Littondale -Litwin -Litzen -Liv -Live Oak -Lively -Livermere -Livermore -Liverno -Liverpool -Liversedge Hall -Liversidge -Liverstudd -Liverton -Livery -Livesey -Livesy -Livia -Livingston -Livingston Terrace -Livingstone -Livinston -Livoli -Livonia -Livorna -Livorna Heights -Livoti -Livsey -Liz -Liz Kernohan -Liza -Lizann -Lizard -Lizban -Lizette -Lizotte -Lizwelch -Lizzie -Ljepava -Lladro -Llagas -Llagas Creek -Llagas Vista -Llama -Llama Ranch -Llanaway -Llanberis -Llandaff -Llandilo -Llanelly -Llanfair -Llangollan -Llano -Llanover -Llanovista -Llanthony -Llanvair -Llewellyn -Llewellyn Field -Llewellyn Manor -Llewelyn -Lleweyn -Lloyd -Lloyd Baker -Lloyd C Gary -Lloyd George -Lloyd Harbor -Lloyd Haven -Lloyd Park -Lloyd Point -Lloyd Rees -Lloyd Wright -Lloyden -Lloyden Park -Lloydhaven -Lloydminster -Lloyds -Llyod -Loa -Loader -Loading Place -Loading Rock -Loakes -Loampit Vale Jerrard -Loamy Hill -Loanda -Loantaka -Loates -Loats -Lob -Lobao -Lobata -Lobaugh -Lobelia -Lobert -Lobitos Creek -Lobley -Loblolly -Loblolly Pine -Lobo -Lobos -Local -Local Board -Locarno -Locbury -Loccmind -Loch -Loch Glen -Loch Haven -Loch Leven -Loch Lomand -Loch Lomond -Loch Maree -Loch Moor -Loch Raven -Loch Sloy Service -Lochaber -Lochaline -Lochalsh -Lochan Ora -Lochanburn -Lochanora -Lochard -Lochat -Lochaven -Lochbrae -Lochbrook -Lochdale -Lochdon -Lochee -Lochiel -Lochinvar -Lochinver -Lochland -Lochlash -Lochloy -Lochmere -Lochmoore -Lochnell -Lochner -Lochness -Lochridge -Lochrobin -Lochslea -Lochstead -Lochton -Lochville -Lochwan -Lochwood -Lochy -Lock -Lock Bridge -Lockborne -Lockdale -Locke -Locke King -Locke Lake -Lockeford Ranch -Lockeland -Locker -Lockerbie -Lockerby -Lockers Park -Lockesley -Locket -Lockett -Lockewood -Lockewoods -Lockey -Lockfield -Lockham Farm -Lockhart -Lockhart Gulch -Lockhaven -Lockheed -Lockhern -Lockhurst -Lockhurst Hatch -Lockingate -Lockinger -Lockington -Lockland -Locklands -Lockleven -Lockleys -Lockman -Lockner -Lockney -Lockport -Lockram -Lockridge -Locks -Locksbridge -Locksley -Locksley Park -Locksly -Locksmeade -Lockton -Lockundy -Lockward -Lockway -Lockwood -Lockyer -Locomotive -Locris -Locus -Locust -Locust Cove -Locust Creek -Locust Glen -Locust Grove -Locust Hill -Locust Point -Locust Ridge -Locust Spring -Locust Tree -Locust Wood -Locustdale -Locustwood -Lodato -Loddiges -Loddington -Loddon -Loddon Bridge -Loddon Hall -Lode -Loder -Lodestone -Lodge -Lodge Bottom -Lodge Farm -Lodge Forest -Lodge Hill -Lodge Point -Lodge Wood -Lodgehill -Lodgepole -Lodges -Lodi -Lodore -Lodovick -Loduca -Loe Ann -Loeb -Loeffler -Loehr -Loeser -Loewen -Lofberg -Lofstrand -Loft -Lofthouse Jumbles -Loftie -Lofting -Lofton -Lofts -Loftus -Lofty -Log -Log Bridge -Log Cabin -Log Cabin Ranch -Log Chain -Log Hill -Log House -Log Inn -Log Lodge -Log Teal -Logan -Logan Creek -Logan Hill -Logan Manor -Logan Wood -Loganberry -Logansport -Loganview -Loganwood -Logarto -Logee -Loggers -Logging -Loggins -Loggon -Logic -Logie -Logmill -Logmore -Logquarter -Logsdon -Logue -Logway -Logwood -Loh -Lohman -Lohnes -Lohr -Lohrman -Lohsen -Loi Linda -Loines -Lois -Loisdale -Loise -Loiselle -Loker -Loki -Lokoya -Lokus -Lola -Lolan -Loland -Loleta -Loletta -Lolita -Loll -Lolleywood -Lollipop -Lolly -Lolly Post -Lolo Pass -Loma -Loma Almaden -Loma Alta -Loma Alta Fire -Loma Chiquita -Loma Heights -Loma Linda -Loma Mar -Loma Prieta -Loma Rio -Loma Robles -Loma Verde -Loma Vista -Loman -Lomand -Lomani -Lomar -Lomas -Lomax -Lombard -Lombardi -Lombardo -Lombardy -Lometa -Lomglands -Lomita -Lomitas -Lommel -Lomond -Lomond South -Lompico -Lon -Lonanbe -Lonard -Lonardo -Loncin Mead -Loncroft -Lonczak -Londesborough -Londin -London -London And Decatur -London Bay -London Bridge -London Council -London Fenchurch -London Hill -London Leaf -London Ranch -Londonary -Londonberry -Londonderry -Lone -Lone Barn -Lone Cedar -Lone Eagle -Lone Hill -Lone Leaf -Lone Oak -Lone Pine -Lone Tree -Lone Tree Plaza -Lonergan -Lonesome -Lonesome Pine -Loney -Long -Long Acre -Long Acres -Long Barn -Long Beach -Long Beech -Long Boat Key -Long Border -Long Bottom -Long Bow -Long Branch -Long Bridge -Long Canyon -Long Catlis -Long Channel -Long Close -Long Cope -Long Cove -Long Croft -Long Deacon -Long Down -Long Ferry -Long Furlong -Long Gate -Long Green -Long Grove -Long Hill -Long Island -Long Island Motor -Long Island Rail -Long Lake -Long Leaf -Long Lodge -Long Marl -Long Marsh -Long Marston -Long Meadow -Long Mill -Long Neck Point -Long Oak -Long Orchard -Long Pine -Long Point -Long Pond -Long Ranch -Long Readings -Long Rede -Long Ridge -Long Ridings -Long River -Long Row Hopwood -Long Run -Long Shadow -Long Shadows -Long Sought For Pond -Long Spur -Long Thorpe -Long Valley -Long View -Long Wood -Longacre -Longacres -Longaker -Longard -Longbarn -Longbeach -Longboat -Longbow -Longbranch -Longbridge -Longbutt -Longcommon -Longcor -Longcroft -Longcrofte -Longcross -Longdale -Longden -Longdene -Longdike -Longdin -Longdon -Longdown -Longdraft -Longdyke -Longe -Longedge -Longell -Longend -Longest -Longfellow -Longfield -Longfields -Longford -Longham -Longhams -Longhayes -Longhedge -Longhill -Longhope -Longhorn -Longhorn Ridge -Longhouse -Longhurst -Longlands -Longlane -Longleaf -Longleat -Longledge -Longleigh -Longlevens -Longley -Longleys -Longlook -Longmark -Longmead -Longmeade -Longmeade Crossing -Longmeadow -Longmere -Longmoor -Longmoore -Longmore -Longmorn -Longnor -Longo -Longobardi -Longpoint -Longpoles -Longport -Longreach -Longreen -Longridge -Longroyd -Longs -Longshadow -Longshaw -Longshaw Ford -Longshore -Longshot -Longshut -Longsight -Longson -Longspur -Longstaff -Longstomps -Longstone -Longstreak -Longstreet -Longton -Longtown -Longtree -Longueville -Longvale -Longvalley -Longview -Longville -Longvue -Longwalk -Longwater -Longwell -Longwick -Longwood -Longwood Grove -Longworth -Loni -Lonicera -Loniewski -Lonmount -Lonna -Lonni -Lonnie -Lonnquist -Lonsdale -Lonus -Loo -Loobath -Loobert -Loobey -Look -Looker -Lookes -Looking Glass -Looking Post -Lookoff -Lookout -Lookout Farm -Lookout Hill -Loom -Loombah -Loomes -Loomis -Loon -Loon Hill -Looney -Loop -Loorana -Loose -Loose Down -Lopa -Lopes -Lopez -Loppets -Lopton -Loquat -Loquat Valley -Lora -Lorabelle -Lorac Vista -Loradale -Lorain -Loraine -Loral -Loralee -Loran -Loran Nordaren -Lorando -Lorane -Lorang -Loras -Loray -Lorayne -Lorca -Lord -Lord Baltimore -Lord Cecil -Lord Culpeper -Lord Derby -Lord Eldon -Lord Fairfax -Lord Hills -Lord Howe -Lord Kitchner -Lord Mayors -Lord Mead -Lord Nelson -Lord North -Lord Warwick -Lorden -Lordina -Lordine -Lordings -Lords -Lords Landing -Lordsfield -Lordship -Lordsmead -Lordswell -Lordswood -Loree -Loreen -Lorel -Lorele -Lorelei -Loreley -Loren -Lorena -Lorene -Lorensen -Lorentz -Lorenz -Lorenze -Lorenzen -Lorenzetti -Lorenzo -Lorete -Loreto -Loretta -Lorette -Loretto -Lorey -Lorfax -Lori -Lori Anne -Lorian -Loriann -Lorie -Lorient -Lorigan -Lorijean -Lorikeet -Lorillard -Lorimer -Lorin -Lorina -Lorinda -Loring -Loring Hills -Loring Towers -Lorion -Loris -Lorita -Lorking -Lorland -Lorn -Lorna -Lorna Leigh -Lornadel -Lorne -Lornkel -Lorraine -Lorraine Metcalf -Lorre -Lorree -Lorren -Lorreta -Lorretta -Lorrie -Lorrimore -Lorring -Lorry -Lortel -Lorton -Lorton Market -Lorton Valley -Lorum -Lorusso -Lory -Loryn -Los Alamos -Los Altos -Los Amigos -Los Angeles -Los Arabis -Los Arboles -Los Banos -Los Banos Cdf -Los Carneros -Los Cedros -Los Cerritos -Los Cerros -Los Charros -Los Coches -Los Dedos -Los Encinos -Los Esteros -Los Felicas -Los Felice -Los Flores -Los Gamos -Los Gatos -Los Gatos Almaden -Los Guilicos -Los Gullicos -Los Huecos -Los Lagos -Los Medanos -Los Molinas -Los Montes -Los Ojos -Los Olivos -Los Padres -Los Palmos -Los Palos -Los Pinos -Los Positos -Los Prados -Los Pueblos -Los Ranchitos -Los Ranchos -Los Reyes -Los Rios -Los Robles -Los Suenos -Los Torres -Los Trancos -Los Trancos Woods -Los Viboras -Loscoe -Loseberry -Losfield -Loslomas -Losoya -Lossie -Lost -Lost Acre -Lost Boy -Lost Colony -Lost Corner -Lost Creek -Lost Deer -Lost Horse -Lost Lake -Lost Meadow -Lost Meadows -Lost Oak -Lost Ranch -Lost Rock -Lost Tree -Lost Valley -Lost View -Lostock -Lostock Hall -Lostock Park -Lostwood -Lot -Lot Phillips -Loten -Loth -Loth Lorian -Lothair -Lothenbach -Lotherton -Lothian -Lothrop -Lotman -Lots -Lott -Lotte -Lotten -Lottery -Lottie -Lottie Bennett -Lottie Fowler -Lotts -Lottsford -Lottsford Vista -Lotus -Lotus View -Lotz -Lotz Hill -Lou -Lou Ann -Lou Courtney -Louanis -Louart -Loubet -Louches -Loucks -Loucreta -Loud -Louden -Louders -Loudhams Wood -Loudon -Loudoun -Loudoun County -Loudoun Park -Loudoun Reserve -Loudoun Tech -Louds -Loudwater -Louetta -Lough -Loughboro -Loughborough -Loughead -Lougheed -Loughlin -Loughran -Loughrigg -Loughton -Loughton High -Louie -Louis -Louis Ballard -Louis Bork -Louis Holstrom -Louis Krohn -Louis Mattei -Louis Mill -Louis Nine -Louis Prang -Louis W Farley -Louisa -Louisana -Louisburg -Louise -Louise F Luther -Louisiana -Louisville -Loumac -Loumena -Lounga -Lounsbery -Loupe -Lourae -Lourdes -Loureiro -Loushers -Lousons -Louth -Louvain -Louvaine -Louville -Louvre -Lovall Valley -Lovall Valley Loop -Lovas -Lovat -Lovatt -Lovcraft -Love -Love Creek -Love Green -Love Grove -Love Harris -Love Joy -Loveall Valley -Lovedale -Loveday -Lovegrove -Lovejoy -Lovel -Lovelace -Loveland -Lovelands -Loveless -Lovell -Lovell Park -Lovely -Loventree -Loveridge -Lovering -Loverock -Lovers -Lovers Leap -Lovers Point -Loversend -Loves -Lovet -Lovett -Lovewell -Loveys -Lovibonds -Lovile -Loville -Loving -Lovis -Lovisa -Lovoni -Low -Low Close -Low Crompton -Low Cross Wood -Low Fields -Low Grove -Low Hall -Low Hill -Low Lea -Low Leighton -Low Meadow -Low Mills -Low Moor Side Wolley -Low Moorside -Low Shops -Low Wood -Lowana -Lowander -Lowandra -Lowanna -Lowbell -Lowbrook -Lowcross -Lowdells -Lowden -Lowder -Lowder Brook -Lowe -Lowe Mill -Lowell -Lowell Davis -Lowell Mason -Lower -Lower Adeyfield -Lower Afton -Lower Albion -Lower Alden -Lower Alderton Hall -Lower Almora -Lower Anchor -Lower Anchorage -Lower Armour -Lower Avon -Lower Aztec -Lower Bank -Lower Barn -Lower Basinghall -Lower Beach -Lower Bedfords -Lower Belgrave -Lower Bell -Lower Bennett -Lower Bents -Lower Bligh -Lower Bloors -Lower Bolton -Lower Boxley -Lower Boyle -Lower Boyndon -Lower Brand Lake -Lower Breeche -Lower Bridge -Lower Britwell -Lower Broad -Lower Broadmoor -Lower Brook -Lower Broughton -Lower Brunswick -Lower Burnham -Lower Bury -Lower Byrom -Lower Campbell -Lower Carr -Lower Carriage -Lower Charles -Lower Chatham -Lower Chestnut -Lower Chiles Valley -Lower Church -Lower Circle -Lower Cliff -Lower Colonial -Lower Cookham -Lower Coombe -Lower Country -Lower Court -Lower Cox -Lower Crescent -Lower Cross -Lower Cutter -Lower D -Lower Dagnall -Lower Darcy -Lower Darwin -Lower Dearborn Park -Lower Denmark -Lower Derby -Lower Dunton -Lower Edge -Lower Edgeborough -Lower Ellen -Lower Elmstone -Lower Exchange -Lower Express -Lower Fant -Lower Farm -Lower Farnham -Lower Featherby -Lower Field -Lower Fort -Lower Frenches -Lower Gore -Lower Grand -Lower Gravel -Lower Green -Lower Greenshall -Lower Grove -Lower Guildford -Lower Hall -Lower Ham -Lower Hampton -Lower Harpenden -Lower Hartlip -Lower Hatfield -Lower Haysden -Lower Henley -Lower Hey -Lower Hiberia -Lower Hibernia -Lower Hidden Falls -Lower High -Lower Higham -Lower Hill -Lower House -Lower Hutchinson -Lower Illinois -Lower James -Lower John -Lower Jones -Lower Kenwood -Lower Kings -Lower Knoll -Lower Lake -Lower Lees -Lower Leigh -Lower Lime -Lower Lock -Lower Locksley -Lower Lodge -Lower Luton -Lower Magazine -Lower Magothy Beach -Lower Maidstone -Lower Main -Lower Manor -Lower Mardyke -Lower Margaret -Lower Market -Lower Marlboro -Lower Marsh Baylis -Lower Matchaponix -Lower Memory -Lower Michigan -Lower Mickletown Boat -Lower Monton -Lower Morden -Lower Mortlake -Lower Mosley -Lower Mount -Lower Moushill -Lower Norton -Lower Notch -Lower Ormond -Lower Overlook -Lower Oxford -Lower Paddock -Lower Paice -Lower Park -Lower Paxton -Lower Pindell -Lower Pine -Lower Placerville -Lower Plateau -Lower Pound -Lower Queens -Lower Rainham -Lower Randolph -Lower Range -Lower Rawson -Lower Redwood -Lower Richmond -Lower Ridge -Lower Robert -Lower Rochester -Lower Roke -Lower Rollstone -Lower Rushton -Lower Sacramento -Lower Sandhurst -Lower Seedly -Lower Shear Creek -Lower Sheering -Lower Sheriff -Lower Sloane -Lower Southend -Lower Sutherland -Lower Tofts -Lower Town -Lower Trabing -Lower Trail -Lower Turf -Lower Turk -Lower Tweedale -Lower Twydall -Lower Vicarage -Lower Vickers -Lower Village -Lower Wabash -Lower Wacker -Lower Warren -Lower Weybourne -Lower Wharf -Lower Wokingham -Lower Wood -Lower Woodlands -Lower Wortley -Lower Wycombe -Lowercroft -Lowerfield -Lowerfold -Lowerhouse -Lowerre -Lowerwood -Lowery -Lowery Oaks -Lowes -Lowes Island -Lowestoft -Loweswater -Lowfield -Lowfield Heath -Lowfields -Lowgate -Lowick -Lowicks -Lowland -Lowlands -Lowman -Lowmoor -Lowndes -Lownorth -Lowood -Lowrey -Lowrie -Lowry -Lowshoe -Lowside -Lowth -Lowther -Lowthorpe -Lowton -Lox -Loxford -Loxford Hall Loxford -Loxham -Loxley -Loxton -Loxwood -Loy -Loyalton -Loyalty -Loyed -Loyola -Lozano -Lozier -Lt Glenn Zamorki -Lt Nichols -Lt. L. Duffy -Lu Anne -Lu Ray -Luana -Luanne -Luau -Lubar -Lubberhedges -Lubbock -Lubec -Lubeck -Lubin -Lubrono -Luby -Lucan -Lucas -Lucas Green -Lucas Park -Lucas Valley -Lucastes -Lucasville -Lucca -Luccarelli -Lucchesi -Luce -Luce Creek -Lucena -Lucent -Lucente -Lucerne -Lucero -Lucey -Luchessa -Luchessi -Luci -Lucia -Lucian -Lucianna -Lucie -Lucien -Lucienne -Lucile -Lucilla -Lucille -Lucina -Lucinda -Lucio -Lucius -Luck -Luckenbach -Luckenbill -Luckett -Lucketts -Lucking -Luckley -Luckmore -Lucknow -Lucks -Lucky -Lucky Hollow -Lucky Lake -Lucky Lure -Luckyn -Lucon -Lucot -Lucretia -Luctons -Luculia -Lucus -Lucy -Lucy Brown -Lucy Ray -Lucylle -Luda -Ludbury -Luddenham -Luddesdon -Luddesdown -Luddington -Ludell -Ludeman -Ludgate -Ludgershall -Ludgores -Ludham -Ludham Hall -Ludington -Ludlam -Ludlow -Ludlum -Ludpit -Ludwig -Ludy -Lue Ellen -Luedke -Luedtke -Luella -Luellan -Lufberry -Lufbery -Luff -Luffburrow -Luffenhall -Luffield -Luffman -Lufkin -Luft -Luftschloss -Lugano -Lugar -Lugar Brae -Lugard -Lugarno -Luger -Lughorse -Lugo -Luhmann -Luhn -Luis Munoz Marin -Luisa Kayasso -Luise -Luisi -Luisser -Luiz Fire -Lujan -Lujean -Lukas -Luke -Luken -Lukens -Luker -Lukes -Lukewood -Lukin -Lukins -Lula Belle -Luland -Lulea -Lull -Lullaby -Lullingstone -Lullington -Lulworth -Lum -Lumac -Lumar -Lumas Verdes -Lumb -Lumb Brook -Lumb Carr -Lumbar -Lumber -Lumber Company -Lumber Hill -Lumbertown -Lumby -Lumeah -Lumley -Lummas -Lummus -Lumn -Lumns -Lumry -Lumsdaine -Lumsdale -Lumsden -Luna -Luna Park -Lunada -Lunan -Lunar -Lunceford -Luncies -Lund -Lund Hill -Lund Ranch -Lunda -Lundan -Lundberg -Lundburg -Lundeen -Lundergan -Lundholm -Lundquist -Lunds Farm -Lundstead -Lundsten -Lundvall -Lundy -Lundys -Lune -Lunedale -Lunelle -Lunenburg -Luneta -Lunghurst -Lunham -Luning -Lunn -Lunny -Lunsford -Lunski -Lunt -Lupidia -Lupin -Lupine -Lupine Den -Lupine Hill -Lupine Valley -Lupp -Lupton -Lupus -Luquer -Lura -Lurene -Lureta Ann -Lurgan -Luria -Lurilane -Lurliene -Lurline -Lurnea -Lurting -Lurton -Lury -Lusan -Lusard -Lusbys -Luscombe -Lushes -Lushington -Lusitana -Lusitano -Lusk -Lussier -Lusted -Luster -Lusterleaf -Lustre -Lusty -Lute -Luten -Lutener -Lutes -Luther -Lutheran -Luthin -Lutman -Luton -Luton Airport -Luton High -Lutrell -Lutter -Luttrell -Lutz -Luvena -Luverne -Luvian -Luvie -Lux -Luxberry -Luxborough -Luxemburg -Luxfield -Luxford -Luxmanor -Luxmore -Luxon -Luxor -Luxury -Luyster -Luyung -Luz -Luzena -Luzern -Luzerne -Luzitania -Luzley -Luzon -Lyall -Lybrook -Lybury -Lycett -Lych Gate -Lychfield -Lycoming -Lycrome -Lyda -Lydbrook -Lydd -Lydden -Lydeard -Lydecker -Lydell -Lydens -Lydford -Lydgate -Lydham -Lydhurst -Lydia -Lydia Bradley -Lydia Ford -Lydianna -Lydiard -Lydiat -Lydig -Lyding -Lydney -Lydon -Lydstep -Lydyett -Lye -Lye Copse -Lye Green -Lyell -Lyeway -Lyford -Lygean -Lygetun -Lygoe -Lyla -Lyle -Lyles -Lylewood -Lyly -Lyman -Lyman School -Lyman Wheelock -Lymann -Lymbridge -Lymcote -Lymden -Lyme -Lyme Bay -Lyme Farm -Lyme Regis -Lymefield -Lymer -Lymerston -Lymewood -Lyminge -Lymington -Lymington Bottom -Lymm -Lymmhay -Lymmington -Lymoore -Lyn Oak -Lynack -Lynbara -Lynbrae -Lynbrook -Lynch -Lynch Hill -Lynchford -Lyncliff -Lyncrest -Lyncroft -Lynd -Lynda -Lyndale -Lyndall -Lyndals -Lynde -Lyndeboro -Lyndell -Lynden -Lyndene -Lyndenwood -Lynderswood -Lyndhurst -Lyndhurst Museum -Lyndia -Lyndley -Lyndon -Lyndsay -Lyndwood -Lyne -Lyne Crossing -Lynegrove -Lyneham -Lynesta -Lynestra -Lynette -Lynfield -Lynfords -Lyng -Lynham -Lynhurst -Lynmar -Lynmere -Lynmont -Lynmouth -Lynn -Lynn Crest -Lynn End -Lynn Fells -Lynn Forest -Lynn Manor -Lynn Oaks -Lynn Ric -Lynn Ridge -Lynn Shore -Lynn W Riffle -Lynn Wood -Lynnalan -Lynnbrook -Lynnbrooke -Lynncrest -Lynncroft -Lynndale -Lynne -Lynnett -Lynnfield -Lynngate -Lynnhaven -Lynnhurst -Lynnmoor -Lynns Retreat -Lynnview -Lynnwood -Lynors -Lynridge -Lynsander -Lynslade -Lynsted -Lynstock -Lynthorpe -Lynton -Lynton Park -Lynvale -Lynview -Lynvue -Lynway -Lynwick -Lynwood -Lynwood Hill -Lynwood Manor -Lynx -Lyon -Lyon Farm -Lyon Park -Lyon Ranch -Lyonia -Lyonpark -Lyonridge -Lyons -Lyons Creek -Lyons Hall -Lyonsdown -Lyonsville -Lyoth -Lyra -Lyrac -Lyric -Lysander -Lysbeth -Lysia -Lysias -Lysle -Lysons -Lyster -Lytchet -Lytcott -Lytelle -Lyth -Lytham -Lythe -Lytherton -Lythgoes -Lythrum -Lytle -Lyton -Lyttel -Lyttelton -Lyttleton -Lytton -Lytton Springs -Lyttonsville -Lyveden -Lywood -M F Bowen -M Gresham -M I Bowen -M. Hershman -MArkland -MCintosh -MINI Park -MITRE Corp Inner -MIddleton -MLK -MMU Didsbury Access -Maacama -Maacka -Maar -Maas -Mabaline -Mabank -Mabbs -Mabel -Mabel Ann -Mabel Josephine -Mabelle -Maberley -Mabey -Mabfield -Mabie -Mabini -Mable -Mabledon -Mablethorpe -Mabley -Mablin -Mabrey -Mabry -Mac -Mac Afee -Mac Arthur -Mac Donald -Mac Dougal -Mac Duff -Mac Farlane -Mac Gregor -Mac Intosh -Mac Kenzie -Mac Kenzie Creek -Mac Lean -Mac Leay -Mac Murtry -Mac Queen -Mac Sherry -MacArthur -MacAuley -MacCall -MacCartney -MacCulloch -MacDonald -MacDonough -MacDougal -MacGregor -MacIntosh -MacKay -MacKellar -MacKenzie -MacKillop -MacLachlan -MacLaurin -MacLeay -MacMillan -MacNamara -MacPherson -MacRae -Macadam -Macadamia -Macalaster -Macalester -Macalla -Macalpin -Macalpine -Macalvey -Macao -Macara -Macarthur -Macarthur Access -Macartney -Macatera -Macaulay -Macauley -Macaw -Macbain -Macbean -Macbeth -Macbride -Maccaboy -Macclesfield -Macclesfield Main -Macclesfield Old -Maccomb -Macculoch -Macdonald -Macdonnell -Macdougald -Macdowell -Macduff -Mace -Macedon -Macedonia -Macefin -Macers -Macey -Macfadden -Macfall -Macfarlan -Macfarland -Macfarlane -Macgill -Macgreggor -Macgregor -Mach -Machado -Machado Ranch -Machell -Machelle -Machen -Macher -Machias -Machin -Machpela -Machpelah -Maciel -Macintire -Macintosh -Macintyre -Maciorowski -Maciver -Mack -Mack Center -Mackall -Mackay -Mackell -Mackellar -Mackennal -Mackenthun -Mackenzie -Mackes Muff -Mackeson -Mackey -Mackeys -Mackie -Mackin -Mackin Woods -Mackinac -Mackinaw -Mackinnon -Mackintosh -Mackinwood -Mackley -Macklin -Macklyn -Mackson -Macksville -Mackubin -Mackville -Mackworth -Maclain -Maclaren -Maclaurin -Maclay -Maclean -Macleay -Maclefish -Maclennan -Macleod -Macler -Maclise -Maclure -Maclynn -Macmahon -Macmillan -Macmurdo -Macneil -Macnichol -Macnish -Maco -Macoma -Macomb -Macomber -Macombs -Macon -Macondray -Macone Farm -Macopin -Macoun -Macpherson -Macpumphrey -Macquarie -Macquarie Grove -Macquariedale -Macquarrie -Macrae -Macready -Macredes -Macri -Macroom -Macsherry -Mactier -Mactorowski -Macullar -Macwood -Macy -Macy Plaza -Mad River -Mada -Madagascar -Madalen -Madaline -Madan -Madary -Madawaska -Maddams -Maddaus -Maddecks -Madden -Maddison -Maddock -Maddocks -Maddox -Maddux -Maddy -Madeira -Madeiros -Madel -Madelaine -Madeleine -Madelena -Madeley -Madelia -Madeline -Madelyn -Maden -Mader -Madera -Madera del Presidio -Madere -Maderia Port -Madero -Madetra -Madge -Madgehole -Madgeways -Madginford -Madi -Madia -Madie -Madiera -Madigan -Madinah -Madingley -Madison -Madison Circle -Madison Farm -Madison Forest -Madison Green -Madison Greens -Madison Hill -Madison House -Madison McLean -Madles -Madoc -Madoline -Madonna -Madras -Madre -Madrers -Madrid -Madrigal -Madrillon -Madrillon Estates -Madrillon Springs -Madron -Madrona -Madronawood -Madrone -Madrone Fire -Madronean -Madrono -Madruga -Madsen -Madson -Maduro -Mae -Mae Belle -Mae Jim -Maeder -Maesbrook -Maesmaur -Maestro -Maeve -Mafeking -Maffei -Maffey -Maffia -Mag -Magaletta -Magarity -Magazine -Magda -Magdala -Magdalen -Magdalena -Magdalene -Magdalin -Magdelene -Magdelina -Magdella -Magee -Magee Ranch -Mageira -Magellan -Magenta -Mager -Magers -Magerus -Magestic -Magga Dan -Maggi -Maggie -Maggio -Maggiolo -Maggiora -Maggiore -Maggy -Magic -Magic Leaf -Magic Mountain -Magie -Magill -Maginnis -Magladry -Maglie -Magliocco -Magna -Magna Carta -Magna Vista -Magnaville -Magner -Magnet -Magnetic -Magnetite -Magney -Magnola -Magnolia -Magnolia Blossom -Magnolia Grove -Magnolia Hill -Magnolia Ridge -Magnollia -Magnum -Magnus -Mago Vista -Magoffin -Magonko -Magos -Magothy -Magothy Beach -Magothy Bridge -Magothy Manor -Magothy Park -Magothy River Shore -Magothy View -Magoun -Magowan -Magowar -Magown -Magpie -Magpie Hall -Magrath -Magreed -Magro -Magruder -Mags -Mague -Maguire -Mahala -Mahan -Mahar -Mahaska -Maher -Mahler -Mahlon -Mahlon Brower -Mahnken -Mahogany -Mahogony -Mahon -Mahoney -Mahoney Meadows -Mahonia -Mahony -Mahoo -Mahood -Mahopac -Mahoras -Mahtomedi -Mahtomedi Service -Mahwah -Maianbar -Maid Marion -Maida -Maida Vale -Maida Vale Hall -Maiden -Maiden Choice -Maiden Erlech -Maiden Erleigh -Maidenbower -Maidenhead -Maidenshaw -Maidera -Maidstone -Maier -Mailers -Maille -Maillet -Mailloux -Main -Main Beach -Main Campus -Main Creek -Main Entrance -Main Gate -Main Line -Main Tiger Mountain -Main Wharf -Maine -Maine Cove -Maine Prairie -Mainerd -Mainline -Mainprize -Mains -Mainsail -Mainsbridge -Mainstone -Mainwaring -Mainwood -Mair -Mairesfield -Mairfield -Mairmont -Maismore -Maison -Mait -Maithouse -Maitland -Maitland Park -Maize -Majendie -Majestic -Majestic Oaks -Majestic Pine -Majestic Prince -Majesty -Majilla -Major -Major Appleby -Major Deegan Service -Major Denton -Major Lansdale -Major Taylor -Major Trescott -Majorca -Majorie -Majors -Majors Bay -Majors Farm -Makah -Makamah -Makamah Beach -Makanna -Makant -Makatom -Makechnie -Makely -Makemoney -Makepeace -Makim -Makin -Makins -Makinson -Maklary -Makofske -Makos -Makushin -Mal -Mala -Malabar -Malachite -Malacoota -Malaga -Malaguerra -Malahide -Malakoff -Malam -Malaney -Malapardis -Malarin -Malat -Malay -Malba -Malbec -Malbert -Malbone -Malborough -Malbrook -Malburn -Malby -Malcolm -Malcolm Dixon -Malcolm Sargent -Malcolm Wilson -Malcolm X -Malcolmson -Malcom -Malcomb -Malden -Malders -Maldive -Maldon -Maldonado -Maldwyn -Maleady -Malec -Malech -Malecon -Malek -Malet -Maley -Malfort -Malga -Malham -Malhams -Mali -Malibou -Malibu -Malicoat -Malier -Malinda -Maling -Malinya -Malissa -Malkin -Mall -Mall Access -Mall Connection -Mall Loop -Mallacoota -Mallalieu -Mallar -Mallard -Mallard Lake -Mallard Landing -Mallard Point -Mallard Pointe -Mallard Ponds -Mallard Shore -Mallard Slough -Mallards Cove -Mallards Ponds -Mallawa -Mallee -Malleny -Mallery -Mallet -Mallet Hill -Mallett -Mallette -Malley -Malling -Mallings -Mallinson -Mallis -Mallison -Mallon -Mallorca -Mallord -Mallory -Mallory Canyon -Mallory Hill -Mallow -Mallow Ridge -Mallowdale -Mallows Green -Malloy -Mallview -Malm -Malmains -Malmaynes Hall -Malmers Well -Malmesbury -Malmo -Malmsbury -Malmstone -Malobar -Maloian -Malone -Maloney -Malonga -Maloon -Malory -Malott -Malouf -Maloyan -Malpas -Malpass -Malquinn -Malraux -Malsbury -Malsham -Malt -Malt House -Malt Kiln -Malta -Maltbie -Maltby -Maltese -Malthouse -Malthus -Malting -Malting Green -Maltings -Maltings Park -Maltings Villas -Maltmans -Malton -Maltravers -Malts -Malua -Malubar -Malus -Malvar -Malvasia -Malverley -Malvern -Malvern Hill -Malverna -Malverne -Malvin Albright -Malvina -Malvine -Malvini -Malwood -Malyon -Malyons -Malysana -Malzeard -Mamaroneck -Mamie -Mammoroneck -Mammoth -Mamor -Mamre -Man O War -Manacor -Manadnock -Managers -Manahan -Manalapan -Manana -Manand -Manassas -Manassas Forge -Manassas Mill -Manatauck -Manatee -Manatuck -Manbey -Manbre -Manbrough -Mance -Manchaug -Manchest -Manchester -Manchester Lakes -Manchester New -Manchester Old -Manchester Oxford -Manchet -Manchuria -Mancini -Manciple -Mancroft -Mancunian -Mancus -Mancuso -Manda -Mandalay -Mandalay Beach -Mandalong -Mandam Village -Mandan -Mandarin -Mandel -Mandela -Mandemar -Mander -Manderly -Manderston -Mandeville -Mandible -Mandoli -Mandolin -Mandoo -Mandoon -Mandora -Mandrake -Mandrell -Mandy -Mane -Manee -Manella -Manemet -Maneroo -Manet -Manette -Manetto -Manetto Hill -Maney -Manfield -Manfre -Manfred -Manfroy Ranch -Mangalore -Mangariva -Mangel Ranch -Mangels -Manger -Mangin -Mangini -Mangiri -Mangle -Mangles -Mango -Mangold -Mangos -Mangravet -Mangrill -Mangrove -Mangrum -Mangs -Manguire -Mangum -Manguso -Manhasset -Manhasset Woods -Manhattan -Manhattan Beach -Manhattan College -Manhattanville -Manhatten -Manheim -Maniago -Manico -Manida -Manifold -Manigan -Manila -Manildra -Manilla -Manion -Manipur -Manis -Manison -Manister -Manito -Manitoba -Manitou -Manitou Island -Manitowac -Mankas -Mankas Corner -Manker -Manland -Manley -Manley Bridge -Manlove -Manly -Manly Dixon -Mann -Mann Hill -Mann Lot -Manna Gum -Mannakee -Manner -Mannering -Manners -Mannetti -Mannetto Hill -Mannheim -Mannikin -Mannin -Manning -Manningtree -Mannix -Mannock -Mannow -Manns -Manns Hill -Manoel -Manoff -Manolete -Manomet -Manomin -Manon -Manooka -Manor -Manor Brook -Manor Circle -Manor Court -Manor Crest -Manor Ct -Manor Farm -Manor Gate -Manor Green -Manor Grove -Manor Hall -Manor Haven -Manor Hill -Manor House -Manor Lake -Manor Lea -Manor Mill -Manor Oaks -Manor Park -Manor Pond -Manor Pound -Manor Ridge -Manor Village -Manor Way Lee -Manor Way New -Manor Way Lime Tree -Manor Way Maythorne -Manora -Manorcrofts -Manorfield -Manorgate -Manorhaven -Manorhill -Manorhouse -Manors -Manorside -Manorstone -Manorvale -Manorview -Manorville -Manorwood -Manourhouse -Manowie -Manresa -Manresa Uplands -Mansard -Mansbury -Manscroft -Mansdale -Manse -Manseau -Mansel -Mansell -Mansells -Manser -Mansfield -Mansfield Manor -Mansford -Manshaw -Manship -Mansion -Mansion House -Mansion Park -Manson -Manston -Manstone -Mansur -Mansway -Manswood -Mant -Mantalini -Mantauk -Manteca -Mantelli -Manter -Manthey -Manthorne -Manthorp -Manthorpe -Mantilla -Mantis -Mantle -Manton -Mantoni -Mantua -Mantus -Manuel -Manuel Campos -Manuel T Freitas -Manuela -Manuelian -Manuella -Manufacturers -Manufactures -Manuka -Manursing -Manvel -Manvers -Manville -Manville Hill -Manwaring -Manwell -Manwood -Manx -Many Flower -Many Levels -Many Mind -Manygate -Manymind -Manzana -Manzanetta -Manzanilla -Manzanillo -Manzanita -Manzanita Fire -Manzanita Park -Manzanita Point -Manzanita Springs -Manzano -Maoli -Maolis -Maori -Map -Map Hill -Mapache -Mape -Mapel -Mapes -Mapesbury -Mapewood -Maple -Maple Bluff -Maple Branch -Maple Brook -Maple Chase -Maple Creek -Maple Cross -Maple Dell -Maple Falls -Maple Glen -Maple Grove -Maple Hall -Maple Heights -Maple Hill -Maple Island -Maple Knoll -Maple Lake -Maple Lawn -Maple Leaf -Maple Manors -Maple Mountain -Maple Park -Maple Pond -Maple Ridge -Maple Run -Maple Shores -Maple Tree -Maple Valley -Maple View -Maple Wood -Maplebrook -Maplecreek -Maplecrest -Maplecroft -Mapledale -Mapledon -Mapledrakes -Mapledurham -Maplefield -Maplegrove -Maplehill -Maplehurst -Maplelawn -Mapleleaf -Maplemoor -Maplenut -Mapleplain -Mapleridge -Maplers -Maples -Maplescombe -Mapleshade -Mapleside -Maplestead -Maplestead Hall -Maplethorpe -Mapleton -Mapletree -Mapleview -Maplewood -Maplewood Mall -Maplewood Park -Mapley -Maplin -Maquan -Maquilla -Mar -Mar East -Mar Monte -Mar Vista -Mar West -Mara -Maracaibo -Marakesh -Maraket -Maralinga -Maralyee -Maramel -Marampo -Maran -Marana -Maranatha -Maranda -Maranello -Maranie -Maranon -Maranook -Marant -Maranta -Maranui -Maras -Maraschino -Marathon -Maravich -Maravista -Maray -Marazzani -Marba -Marban -Marbee -Marbella -Marben -Marberry -Marbet -Marbi -Marbilynn -Marble -Marble Arch -Marble Canyon -Marble Fawn -Marble Hill -Marble Mountain -Marble Ridge -Marble Rock -Marble Valley -Marble Wood -Marbledale -Marblehead -Marbleridge -Marblestone -Marblewood -Marbly -Marboro -Marbour -Marbourne -Marbridge -Marbrook -Marburg -Marburger -Marbury -Marbury Run -Marc -Marcama Ranch -Marcando -Marceau -Marcee -Marcel -Marcela -Marcella -Marcellas -Marcello -Marcellus -Marcelyn -Marcer -Marcey -Marcey Creek -March -Marchand -Marchant -Marchbank -Marchbanks -Marchen -Marcher -Marches -Marchi -Marchmont -Marchwood -Marcia -Marcia Jean -Marcin -Marcius -Marclaire -Marcliffe -Marco -Marconi -Marcotte -Marcourt -Marcross -Marcshire -Marcus -Marcus Garvey -Marcuse -Marcussen -Marcy -Marda -Mardale -Mardan -Mardel -Mardell -Mardella -Marden -Marder -Mardi -Mardie -Mardin -Mardinly -Mardis -Mardjetko -Mardle -Mardley -Mardleybury -Mardo -Mardol -Mardon -Mardyke -Mare -Mare Barn -Mare Hill -Marea -Marechal Niel -Mareda -Maree -Marefield -Mareldor -Marella -Maren -Marenda -Marengo -Mares Neck -Mareschal -Mareshall -Mareth -Maretha -Maretimo -Mareu -Marfargoa -Marfield -Marford -Marfrance -Marga -Margail -Margaret -Margaret Bondfield -Margaret Corbin -Margaret Curtis -Margaret Gardner -Margaret Keahon -Margaret Mitchell -Margaret Woods -Margarets -Margaretta -Margaretting -Margarido -Margarita -Margarite -Margate -Margate on Oxford -Margelet -Margeret -Margerie -Margerita -Margery -Margery Park -Margery Wood -Marget -Margetts -Margherita -Margie -Margin -Marginal -Marginella -Margo -Margorie -Margot -Margraten -Margravine -Margret -Margrett -Margrove -Marguerette -Marguerita -Marguerite -Margurite -Marham -Mari -Maria -Maria Lake -Maria Noel -Mariada -Marian -Mariana -Marianas -Mariani -Mariann -Marianna -Marianne -Mariano -Maribess -Maricas -Marice -Marich -Maricopa -Maridon -Marie -Marie Angela -Marie Ann -Marie Curie -Marie Louise -Marie Major -Marieba -Mariele -Marielene -Mariemont -Maries -Mariestad -Marietta -Marigold -Marik -Marikay -Marilla -Marillac -Marillian -Marilona -Marilyn -Marilyne -Marilynn -Marimac -Mariman -Marin -Marin Center -Marin Oaks -Marin View -Marina -Marina Bay -Marina Court -Marina Cove -Marina Green -Marina Lakes -Marina Park -Marina Point -Marina Shore -Marina View -Marina Village -Marina Vista -Marinaview -Marinda -Marindell -Marine -Marine Terminal -Marine View -Marine World -Marinea -Marinefield -Marinella -Marinelli -Mariner -Mariner Green -Mariner Square -Marinera -Mariners -Mariners Cove -Mariners Island -Marinette -Marineview -Marinita -Marinna -Marino -Marinor -Marinovich -Marinucci -Marinus -Marinwood -Mario -Mario Anthony -Marioak -Mariola -Mariom -Marion -Marion Pepe -Marione -Marionet -Marions -Mariposa -Marique -Maris -Marisa -Marischal -Marish -Marisma -Marissa -Marist -Marit -Marita -Maritime -Maritime Academy -Marius -Marivista -Marjohn -Marjoram -Marjorams -Marjorie -Marjorie Jackson -Marjory -Mark -Mark Alan -Mark Bradford -Mark Center -Mark Collins -Mark Graf -Mark Lee -Mark Mead -Mark Terrace -Mark Thomas -Mark Twain -Mark Vincent -Mark West Springs -Mark Wood -Markab -Marked Tree -Markedge -Markeley -Markenfield -Market -Market Commons -Market Loop -Market Oak -Market Place -Market Square -Market Town -Marketfield -Marketplace -Marketpointe -Marketview -Markev -Markey -Markfield -Markgrafs Lake -Markham -Markham Grant -Markhams Grant -Markhouse -Markingdon -Markington -Markland -Markland Hill -Marklands -Marklay -Markley -Markmanor -Markovich -Markovina -Markowitz -Marks -Marks Hall -Marksman -Markstakes -Markston -Markwick -Markwood -Markyate -Marl -Marl Oak -Marl Pat -Marla -Marlain -Marlan -Marland -Marland Fold -Marland Hill -Marland Old -Marlands -Marlbarough -Marlboro -Marlboro Woods -Marlborough -Marlbrook -Marlbrough -Marlcroft -Marle -Marle Place -Marlee -Marleigh -Marlen -Marlene -Marler -Marless -Marlesta -Marlette -Marley -Marley Combe -Marley Creek -Marley Hills -Marley Neck -Marlfield -Marlin -Marlinford -Marling -Marlington -Marlins Park -Marlinspike -Marlis -Marlisle -Marlo -Marloborough -Marlock -Marloes -Marlon -Marlou -Marlow -Marlow Bridge -Marlow Farm -Marlowe -Marlpit -Marlpits -Marlpost -Marlstone -Marlton -Marlton Center -Marlwood -Marly Garden -Marlyn -Marlynn -Marlyns -Marlyon -Marmadon -Marmaduke -Marmary -Marmet -Marmion -Marmion Academy -Marmith -Marmon -Marmona -Marmont -Marmora -Marmot -Marna -Marne -Marnel -Marnell -Marney -Marnham -Marnice -Marnook -Marnpar -Maro -Maroel -Marong -Maroo -Marooba -Marook -Maroon -Maroon Bells -Maroopna -Maros -Maroubra -Marple -Marple Hall -Marple Old -Marquand -Marquard -Marquardt -Marques -Marquess -Marquet -Marquette -Marquis -Marquita -Marr -Marr Crest -Marr Lodge -Marra -Marrang -Marrett -Marri -Marriage -Marrick -Marrickville -Marrietta -Marrigan -Marrilyne -Marriner -Marringdean -Marrion -Marriot -Marriott -Marriotts -Marron -Marrow -Marrowbrook -Marryat -Marryott -Mars -Marsack -Marsad -Marsak -Marsala -Marsalla -Marsan -Marsand -Marsardis -Marscay -Marsch -Marschall -Marsdale -Marsden -Marsden Fall -Marsden Peel -Marsdon -Marseille -Marseilles -Marsh -Marsh Creek -Marsh Crossing -Marsh Farm -Marsh Fold -Marsh Gibbon -Marsh Green -Marsh Hall -Marsh Harbor -Marsh Hawk -Marsh Hill -Marsh House -Marsh Lake -Marsh Overlook -Marsh Point -Marsh Pointe -Marsh Quarter -Marsh View -Marsha -Marshal -Marshalee -Marshall -Marshall Ash -Marshall Beach -Marshall Concourse -Marshall Corner -Marshall Crown -Marshall Hall -Marshall Lake -Marshall Minor -Marshall Petaluma -Marshall Pond -Marshall Yard -Marshalls -Marshalls Heath -Marshalltown -Marshalswick -Marsham -Marshbrook -Marshcroft -Marshdale -Marshes Dock -Marshfield -Marshgate -Marshlake -Marshland -Marshlands -Marshman -Marshmellow -Marshmoor -Marshsong -Marshview -Marshy Point -Marsilly -Marsland -Marsland Green -Marson -Marstan Moor -Marsteller -Marsten -Marsters -Marston -Marstone -Marstonfields -Marsulin -Marsworth -Marszalkowski -Marta -Martaban -Martel -Martell -Martellini -Martello -Marten -Martens -Martense -Martensen -Marth -Martha -Martha Custis -Martha Greenleaf -Martha Jane -Martha Jones -Martha Washington -Marthall -Martham -Marthas -Marthas Point -Marti -Marti Marie -Martian -Martie -Martiin -Martin -Martin Francis -Martin Frobisher -Martin Jue -Martin Long -Martin Luther King -Martin Luther King Jr -Martin Redman -Martina -Martinack -Martinangelo -Martindale -Martine -Martineau -Martinelli -Martinez -Martingale -Martingdale -Martinhoe -Martini -Martinique -Martino -Martinoni -Martins -Martins Beach -Martins Cove -Martins Hundred -Martins Landing -Martins Pond -Martinsburg -Martinscroft -Martinsend -Martinstein -Martinvale -Martinwood -Martiri -Martis -Martius -Martland -Martlet -Martlett -Martlew -Martley -Martling -Martock -Martom -Marton -Martool -Martown -Marts -Marty -Martyn -Martyr -Martyrs -Maruba -Marumsco -Marva -Marva Oaks -Marvel -Marvell -Marvelle -Marvels -Marville -Marvin -Marvin Elwood -Marvin Gardens -Marvo -Marvy -Marwell -Marwick -Marwood -Marx -Marx Meadow -Mary -Mary Adele -Mary Agnes -Mary Alice -Mary Allen -Mary Ann -Mary Anne -Mary Augusta -Mary Baldwin -Mary Byrne -Mary C -Mary Caroline -Mary Case -Mary Cassatt -Mary Catherine -Mary Chilton -Mary Chris -Mary E Brown -Mary Eddy -Mary Ellen -Mary Etta -Mary Evelyn -Mary Fee -Mary France -Mary Helen -Mary Hills -Mary Jane -Mary Jean -Mary Jo -Mary Joe -Mary Kate -Mary Kay -Mary Kennedy -Mary Knoll -Mary Lee -Mary Lou -Mary Lu -Mary Lynn -Mary Neunar -Mary Paige -Mary Peters -Mary Powell -Mary Roth -Mary Scano -Mary Scot -Mary Todd -Mary Wollstonecraft -Marya -Maryal -Maryann -Maryanna -Maryanne -Maryannis -Maryatt -Marybelle -Marycrest -Marycris -Marydale -Marydell -Marye -Maryellen -Maryfield -Maryhill -Maryhurst -Maryjane -Maryknoll -Maryl -Marylake -Maryland -Maryland Park -Marylands -Marylebone -Marylebone High -Maryleborn -Marylin -Marylon -Marylou -Marylu -Marylyn -Marymead -Marymeade -Marymont -Marymoor Park -Marymount -Maryon -Maryport -Marys -Marys Mount -Marystown -Marysville -Maryton -Maryvale -Maryview -Maryville -Marywood -Marywood Oaks -Marz -Marzino -Marzitelli -Marzoff -Mas Que Farm -Masar -Masasoit -Masboro -Masbro -Mascalls -Mascalls Court -Mascari -Masciarelli -Mascoma -Masconemet -Masconomet -Masconomo -Mascot -Mascotte -Mase -Masefield -Maserati -Masham -Mashbury -Mashie -Mashman -Mashpee -Masjid -Maskell -Maskwonicut -Maslen -Masoma -Mason -Mason Bluff -Mason Crossing -Mason Dixon -Mason Hill -Mason Pond -Mason Ranch -Mason Ridge -Masonbrook -Masonic -Masonic Hall -Masonic Home -Masonry -Masons -Masons Beach -Masons Bridge -Masons Ferry -Masons Green -Masons Spring -Masonville -Masonwood -Maspeth -Mass -Massa -Massachusetts -Massanutten -Massapequa -Massapoag -Massar -Massasoit -Massbury -Masse -Massei -Massena -Masser -Masseth -Massetts -Massey -Massey Brook -Massie -Massingham -Massitoa -Massoit -Massolo -Masson -Massport Haul -Mast -Mast Hill -Mastbrook -Masten -Master -Master Gunner -Masterfield -Masterman -Masterpiece -Masters -Masterson -Masterton -Masterworks -Masthead -Mastic -Mastick -Mastlands -Mastmaker -Mastro -Maswell Park -Mat -Matadero -Matadero Creek -Matador -Matanzas -Matapeake -Matapeake Business -Mataro -Matawan -Matawan Green -Matbury -Match Point -Matcham -Matchaponix -Matchett -Matching -Matchless -Matchmoor -Matena -Mateny -Mateny Hill -Mateo -Matera -Materials -Matey -Matfair -Matfield -Matham -Mathams -Mathaurs -Mather -Mather East -Mather Field -Matheron -Mathes -Matheson -Mathew -Mathews -Mathews Park -Mathewsgreen -Mathewson -Mathia -Mathias -Mathieson -Mathieu -Mathilda -Mathis -Mathurin -Mathwig -Mathy -Matiasevich -Matignon -Matilda -Matilija -Matina -Matinecock -Matinecock Farms -Matis -Matisse -Matley -Matlock -Matmor -Matong -Matora -Matoza -Matross -Matson -Matsonia -Matsons -Matsqui -Matsuda -Matsumoto -Matt -Mattakeeset -Mattakeesett -Mattande -Mattapan -Mattaponi -Mattaponi River -Mattapony -Mattawoman -Mattawoman Beantown -Mattawoman Creek -Mattei -Matteline -Matteo -Matterhorn -Matteri -Matterson -Matteson -Matthes -Matthew -Matthew Henson -Matthew Mills -Matthew Moss -Matthew Parker -Matthews -Matthews Town -Matthias -Matthies -Matthiessen -Mattice -Mattie -Mattimore -Mattingley -Mattingley Bottle -Mattingly -Mattique -Mattison -Mattituck -Mattity -Mattock -Mattocke -Mattos -Mattox -Mattox Creek -Matts -Matts Hill -Mattson -Mattson Brook -Mattsons -Matule -Matura -Maturan -Matzen -Matzley -Maubert -Maud -Maude -Maudlin -Mauds -Maudslay -Maudsley -Maue -Mauer -Maugh -Maugham -Maughan -Maugus -Maugus Hill -Maui -Maujer -Maul -Maulbeck -Mauld -Mauldeth -Maule -Mauleverer -Maumee -Maumell -Mauna Kea -Maunder -Maunsel -Maura -Maura Elizabeth -Maureen -Maurer -Maurice -Mauricia -Mauritania -Mauritius -Maurland -Mauro -Mauro Pietro -Maury -Mausoleum -Mavelle -Maverick -Maverton -Maves -Mavins -Mavis -Mavor -Mavus -Mawal -Mawarra -Mawavi -Mawbey -Mawdsley -Mawhinney -Mawman -Mawney -Mawson -Max -Max Blobs Park -Maxall -Maxanicki -Maxcy -Maxdale -Maxess -Maxey -Maxfield -Maxim -Maximfeldt -Maximilian -Maximillian -Maxine -Maxson -Maxted -Maxwell -Maxwell Canyon -Maxwell Frye -Maxwells -Maxwelton -May -May Bate -May Brown -May Elm -May Lake -May School -May Wagner -Maya -Mayall -Mayan -Mayaone -Mayapple -Mayapple Hill -Maybank -Maybaugh -Maybaum -Maybeck -Maybeck Twin -Maybee -Maybell -Maybelle -Maybern -Mayberry -Mayborne -Mayboro -Maybrick -Maybrook -Maybury -Maybush -Maycheck -Maycliff -Maycock -Maycotts -Maycroft -Mayda -Maydale -Maydan -Mayday -Maydencroft -Maye -Mayellen -Mayer -Mayerne -Mayes -Mayesford -Mayeswood -Mayette -Mayfair -Mayfair Park -Mayfarm -Mayfiar -Mayfield -Mayfield Heights -Mayfields -Mayflower -Mayford -Maygood -Maygoods -Maygrove -Mayhall -Mayher -Mayhew -Mayhews -Mayhews Landing -Mayhill -Mayhouse -Mayhurst -Maykirk -Mayland -Maylands -Maylard -Maylea -Maylen -Maylins -Maylock -Maylons -Mayman -Mayme -Maymens Flat -Maymont -Maynadier -Maynard -Maynard Farm -Mayne -Maynestone -Mayo -Mayo Ridge -Mayock -Mayola -Mayor -Mayorlowe -Mayow -Mayplace -Maypole -Maypool -Mayport -Mayre -Mayroyd -Mays -Mays Canyon -Maysenger -Maysent -Maysfield -Mayside -Maysoule -Mayten -Maytham -Maythorne -Maytime -Mayton -Maytone -Maytorena -Maytree -Maytum -Mayvic -Mayview -Mayville -Mayweed -Maywin -Maywood -Mazalin -Mazarin -Mazatlan -Mazda -Mazda Brook -Maze -Maze Green -Mazeau -Mazenod -Mazepa -Mazewood -Mazey -Mazie -Mazoe -Mazuela -Mazur -Mazza -Mazzaglia -Mazzeo -Mazzilli -Mazzini -Mazzone -Mazzoni -Mc Abee -Mc Adam -Mc Afee -Mc Alester -Mc Alister -Mc Allister -Mc Alpin -Mc Arthur -Mc Auliffe -Mc Avoy -Mc Baine -Mc Breen -Mc Bride -Mc Cabe -Mc Callum -Mc Cameron -Mc Cammon -Mc Cann -Mc Cannon -Mc Carron -Mc Carter -Mc Carthy -Mc Ceney -Mc Chesney -Mc Chord -Mc Clean -Mc Clellan -Mc Clelland -Mc Clellen -Mc Clish -Mc Closkey -Mc Clung -Mc Clure -Mc Coco -Mc Coll -Mc Collam -Mc Comber -Mc Connell -Mc Cook -Mc Cool -Mc Cord -Mc Corkle -Mc Cormick -Mc Cornack -Mc Corty -Mc Covey -Mc Coy -Mc Cracken -Mc Cray Ridge -Mc Crea -Mc Creery -Mc Creery Ranch -Mc Crone -Mc Cue -Mc Culloch -Mc Cullough -Mc Cully -Mc Curdy Trail -Mc Cutchan -Mc Cutcheon -Mc Daniel -Mc Dermott -Mc Divitt -Mc Dole -Mc Donald -Mc Donell -Mc Dougall -Mc Dowell -Mc Eachern -Mc Evoy -Mc Ewen -Mc Fadden -Mc Fall -Mc Faul -Mc Garvey -Mc Gaw -Mc Ginley -Mc Ginn -Mc Ginness -Mc Ginnis -Mc Glashan -Mc Gloshen -Mc Glynn -Mc Grady -Mc Grann -Mc Graw -Mc Gregor -Mc Guckian -Mc Guffie -Mc Henry -Mc Intosh -Mc Intosh Creek -Mc Kay -Mc Kean -Mc Kee -Mc Keel -Mc Kellar -Mc Kelvey -Mc Kendree -Mc Kenna -Mc Kenny -Mc Kenzie -Mc Keon -Mc Keown -Mc Kinley -Mc Kinney -Mc Kissick -Mc Knew -Mc Knight -Mc Kool -Mc Lain -Mc Laren -Mc Larin -Mc Laughlin -Mc Lean -Mc Lellan -Mc Lendon -Mc Leod -Mc Loughlin -Mc Magan -Mc Mahon -Mc Menemy -Mc Millan -Mc Morrow -Mc Mullen -Mc Mullin -Mc Murray -Mc Nabbs -Mc Nair -Mc Near -Mc Neer -Mc Neil -Mc Neile -Mc Ney -Mc North -Mc Nutt -Mc Pherson -Mc Quay -Mc Questen -Mc Roberts -Mc Sween -Mc Vay -Mc Veigh -Mc Vicker -Mc Vickers -Mc Whorter -McAdam -McAdams -McAdoo -McAfee -McAleer -McAlister -McAllister -McAlpine -McAmant -McAndrew -McAndrews -McArdle -McArthur -McArthur Loop -McAtee -McAuley -McAuliffe -McBain -McBrian -McBride -McBrown -McBryde -McBurney -McCabe -McCahill -McCalium -McCall -McCallum -McCampbell -McCandless -McCann -McCannon -McCarron -McCarrs Creek -McCarters -McCarthy -McCarthy Ranch -McCarthy Ridge -McCarthys -McCartney -McCarty -McCarty Ranch -McCary -McCasland -McCauley -McCaulley -McCay -McCellen -McCeney -McChesney -McClain -McClaran -McClaren -McClarren -McClary -McClean -McCleer -McClellan -McClelland -McClellen -McClintock -McClish -McCloskey -McClosky -McCloud -McCloud River -McCloy -McClung -McClure -McClurg -McColl -McCollum -McComas -McComb -McCombe -McComber -McCone -McConnel -McConnell -McCook -McCool -McCoppin -McCord -McCorkle -McCormack -McCormic -McCormick -McCornick -McCosh -McCoville -McCowan -McCoy -McCoy Creek -McCracken -McCrae -McCray -McCray Ridge -McCrea -McCredie -McCreey -McCrory -McCrossin -McCubbens -McCubbin -McCudden -McCue -McCuen -McCul -McCulley -McCulloch -McCullough -McCullough Park -McCullum -McCune -McCurahan -McCurdy -McCurley -McCurry -McCutchen -McDaniel -McDaniels -McDeeds -McDermott -McDevitt -McDiarmid -McDivitt -McDole -McDonald -McDonald Chapel -McDonalds -McDonell -McDonnel -McDonnell -McDonough -McDonough Heights -McDougal -McDougald -McDougall -McDowall -McDowell -McDuff -McDuffie -McEathron -McElhone -McEllen -McElroy -McEncroe -McEnery -McEntee -McEvilly -McEvoy -McEwan -McFadden -McFadyen -McFarlan -McFarland -McFarlane -McFarlin -McFeeley -McFeeley Shipyard -McFetridge -McGaffigan Mill -McGann -McGarity -McGarvie -McGary -McGaw -McGee -McGeory -McGettigan -McGill -McGilvray -McGinn -McGinnis -McGirr -McGlenn -McGlinchey -McGovern -McGovney -McGowan -McGowen -McGrath -McGraw -McGregor -McGrue -McGuckian -McGuffey -McGuffie -McGuin -McGuiness -McGuinn -McGuinness -McGuire -McGuirk -McGurrin -McHarry Ranch -McHatton -McHenry -McHenry Service -McHenzie -McHugh -McIlvenie -McIlwraith -McIndoe -McInnis -McIntire -McIntosh -McIntyre -McIver -McKanna -McKay -McKean -McKee -McKeel -McKeever -McKell -McKellar -McKenchnie -McKendree -McKendrie -McKenna -McKennas Gulch Fire -McKenney -McKenny -McKenstry -McKenzie -McKenzie Point -McKeon -McKeown -McKern -McKernan -McKerrell -McKevitte -McKibben -McKibbin -McKillop -McKinley -McKinley Woods -McKinney -McKinnon -McKinsey -McKinsey Park -McKinstry -McKinzie -McKlintock -McKnew -McKnight -McKool -McKye -McLain -McLane -McLaren -McLaughan -McLaughlin -McLean -McLean Commons -McLean Corner -McLean Park -McLeans -McLearen -McLees -McLellan -McLennan -McLeod -McLester -McLoud -McMahon -McMane -McManus -McMaster -McMenemy -McMillan -McMillen -McMinn -McMullen -McMurdie -McMurdo -McMurry -McMurtry -McNab -McNabb -McNair -McNair Farms -McNamara -McNamee -McNaught -McNaughton -McNear -McNear Brickyard -McNeely -McNeil -McNeill -McNerney -McNichols -McNicoll -McNie -McNomee -McNultey -McOwen -McPeak -McPhee -McPherson -McQuade -McQuay -McRae -McRaes -McReynolds -McRoberts -McSherry -McTernan -McTucker -McVie -McWIlliam -McWalter -McWhirter -McWhorter -McWilliams -Mcadams -Mcafee -Mcalee -Mcallester -Mcandrew -Mcarthur -Mcauliffe -Mcavoy -Mcbride -Mccabe -Mccall -Mccallum -Mccalmont -Mccann Hill -Mccarrons -Mccarthy -Mcclelland -Mcclure -Mccoba -Mccoll -Mccordick -Mccormack -Mccormick -Mccoy -Mccracken -Mccraw -Mccue -Mcculloch -Mccullough -Mccusker -Mcdermott Farm -Mcdevitt -Mcdewell -Mcdonald -Mcdonald Farm -Mcdonna -Mcdonnell -Mcdougall -Mcdowell -Mcendy -Mcenelly -Mcfarlin -Mcgarvey -Mcgee -Mcgeoch -Mcgeough -Mcgill -Mcgovern -Mcgrane -Mcgrath -Mcgregor -Mcguire -Mchugh -Mchugh Farm -Mcintire -Mcintosh -Mcintyre -Mckay -Mckean -Mcken -Mckenn -Mckeon -Mckim -Mckinley -Mckinnon -Mcknight -Mckone -Mclains Woods -Mclaren -Mclean -Mcleavey -Mclellan -Mcleod -Mcmahon -Mcmenemy -Mcnair -Mcneill -Mcnulty -Mcphee -Mcpherson -Mcquade -Mcrayne Hill -Mctaggart -Mcvitty -Mea -Meacham -Meacher -Meachin -Mead -Mead House -Mead Point -Mead Pond -Mead Way Tollers -Meadbrook -Meadcroft -Meade -Meade Hill -Meade Village -Meader -Meades -Meadfield -Meadfoot -Meadgate -Meadhook -Meadhurst -Meadlands -Meado -Meadow -Meadow Bay -Meadow Bluff -Meadow Bridge -Meadow Brook -Meadow Chase -Meadow Club -Meadow Creek -Meadow Crest -Meadow Croft -Meadow Dam -Meadow Edge -Meadow Farm -Meadow Fence -Meadow Field -Meadow Gate -Meadow Glade -Meadow Glen -Meadow Green -Meadow Grove -Meadow Hall -Meadow Hill -Meadow Hunt -Meadow Lake -Meadow Lakes -Meadow Lark -Meadow Lily -Meadow Marsh -Meadow Oak -Meadow Oaks -Meadow Park -Meadow Pines -Meadow Pond -Meadow Ridge -Meadow Rose -Meadow Rue -Meadow Run -Meadow Sage -Meadow Shire -Meadow Side -Meadow Springs -Meadow Trail -Meadow Valley -Meadow View -Meadow Wood -Meadow Woods -Meadowbank -Meadowbridge -Meadowbrook -Meadowcot -Meadowcourt -Meadowcreek -Meadowcrest -Meadowcroft -Meadowdale -Meadowdale Beach -Meadowdown -Meadowfaire -Meadowfarm -Meadowfield -Meadowgate -Meadowglen -Meadowgreen -Meadowhaven -Meadowhawk -Meadowheights -Meadowhill -Meadowlake -Meadowland -Meadowlands -Meadowlark -Meadowlark Farm -Meadowlawn -Meadowmere -Meadowmist -Meadowmont -Meadowood -Meadowpond -Meadowridge -Meadowrill -Meadowrue -Meadows -Meadows Edge -Meadows Farm -Meadowsedge -Meadowshire -Meadowside -Meadowspring -Meadowstone -Meadowsweet -Meadowvale -Meadowview -Meadowvista -Meadowwood -Meadowwwod -Meads -Meadscroft -Meadvale -Meadview -Meadway -Meadway Bigwood -Meadway Devon -Meagan -Meager -Meagher -Meagill Rise Weston -Meakem -Meakin -Meal -Meal HIll -Mealer -Mealhouse -Meander -Meander Cove -Meandering -Meanderwood -Meanley -Meanwood -Meanwood Grove -Meanwood Valley -Mear -Mears -Meath -Meath Green -Mecan -Mecartney -Mecca -Mechanic -Mechanical -Mechanics -Mechanicsville Glen -Mechanicville -Meckes -Meckiff -Mecosta -Meda -Medalist -Medallion -Medanos -Medary -Medawar -Medbourne -Medburn -Medbury -Medcalf -Medcom -Medebridge -Medeiros -Meder -Medera -Medewood -Medfield -Medford -Medgar Evars -Medhurst -Media -Median -Mediati -Medical -Medical Center -Medical Foundation -Medicine Lake -Medicine Lk -Medicine Ridge -Medieval -Medill -Medina -Medina Lake -Medinah -Medinah Ridge -Medio -Mediterranean -Medlake -Medlar -Medlee -Medley -Medlin -Medlock -Medlow -Medora -Medoro -Medowview -Medtronic -Medusa -Medved -Medway -Medway Wharf -Medwick -Medwin -Mee -Meeds -Meeham -Meehan -Meehling -Meeker -Meekins -Meeks -Meela -Meem -Meer -Meerbrook -Meeres -Meeres Court -Meernaa -Meeson -Meester -Meeting -Meeting Camp -Meeting House -Meeting House Hill -Meeting Oak -Meeting Square -Meetinghouse -Meetinghouse Hill -Mefferd -Mefford -Meg -Meg Grace -Megalong -Megan -Megg -Meggan -Meggins -Meghan -Meghann -Megills Landing -Meginniss -Megonko -Mehaffey -Mehan -Meherrin -Mehetabel -Mehrhof -Mehrman -Mei -Meidl -Meiele -Meier -Meiggs -Meigh -Meigs -Mein -Meinzer -Meisel -Meisinger -Meisler -Meisner -Meiss -Meisser -Meister -Mekler -Meknight -Mel -Mel Mara -Meladee -Melaleuca -Melaleuka -Melandra -Melandra Castle -Melanie -Melba -Melboourne -Melborne -Melbourne -Melbrook -Melbrooke -Melbury -Melby -Melch -Melcher -Melchester -Melclare -Melcombe -Meldar -Meldon -Meldrum -Meldung -Melea -Melee -Melendez -Melendy -Meleny -Melfa -Melford -Melfort -Melgren -Melgund -Melham -Melhorn -Melia -Melillo -Melin -Melina -Melinda -Melior -Meliot -Melisa -Melise -Melissa -Melita -Melksham -Mell -Mellalieu -Melland -Mellbrook -Mellen -Mellenbrook -Meller -Mellersh Hill -Mellfell -Mellgren -Mellick -Mellin -Melling -Mellington -Mellish -Mellison -Melliss -Mellitus -Mello -Mello Hollow -Mello View -Mellodew -Mellodora -Mellon -Mellon Hollow -Mellor -Mellots -Mellott -Mellow -Mellowood -Mellows -Mellowstone -Mellus -Mellwood -Melne -Melnea Cass -Melnotte -Melo -Melody -Melody Hill -Melody Lake -Melolane -Melon -Melony -Melrose -Melrose Spring -Melsa -Melsomby -Melsted -Melstock -Melstone -Meltham -Melthorne -Melting Shadows -Melton -Melva -Melverley -Melvern -Melvich -Melvikoff -Melville -Melville Park -Melville Villas -Melvin -Melvina -Melvyn -Melwex -Melwood -Melwood Chapel -Melwood Park -Melyard -Melyncourt -Membrey -Memel -Memo -Memorex -Memorial -Memorial Beach -Memorial Heights -Memorial School -Memory -Memory la -Memphis -Mena -Menai -Menalto -Menangle -Menard -Menaugh -Menay -Mendakota -Mendel -Mendell -Mendelsohn -Mendelssohn -Mendelssohn Service -Menden Farm -Mendenhall -Mendes -Mendez -Mendfield -Mendham -Mending Wall -Mendip -Mendocino -Mendocino Creek -Mendoker -Mendon -Mendonca -Mendora -Mendosa -Mendota -Mendota Heights -Mendota Hts -Mendoza -Mendum -Mendy -Menemsha -Menges -Menhart -Menin -Menindee -Menini -Menk -Menker -Menlee -Menlo -Menlo Oaks -Menmarsh -Menne -Menno -Menocker -Menodora -Menoher -Menokin -Menominee -Menomini -Menon -Menotomy -Menotomy Rocks -Menotti -Menow -Menpes -Mensching -Menser -Mentana -Mente -Mentel -Menteth Point -Mentley -Mentmore -Mento -Menton -Mentone -Mentor -Mentzer -Menzel -Menzies -Meola -Meon -Meopham -Meota -Mepham -Meppel -Mera -Merano -Merbach -Merc -Mercantile -Mercator -Merced -Mercedes -Mercer -Mercer Terrace -Merceron -Mercers -Mercerwood -Merchant -Merchants -Merchiston -Mercia -Mercian -Mercie -Mercier -Mercury -Mercy -Mercy Center -Mercy Hollow -Mere -Merebank -Merebrook -Mereclough -Merecourt -Meredith -Meredyth -Merefield -Merehall -Mereheath -Mereil -Mereland -Mereline -Merelyn -Merelynne -Mereoak -Merepond -Meres -Meresborough -Mereside -Mereway -Merewood -Mereworth -Merfton -Merganser -Merger -Meriadoc -Meriam -Merian -Meric -Merical -Merida -Meridan -Meriden -Meridian -Meridian Hill -Meridian Lake -Meridian Park -Meridian Ridge -Meridith -Meriel -Merifield -Merikern -Merikoke -Meriland -Merilda -Merilee -Meriline -Merillon -Merilyn -Merinda -Merindah -Merino -Merion -Merioneth -Merit -Meritage -Meriton -Meritoria -Meritt -Merivale -Meriwether -Merk -Merkel -Merker -Merkle -Merkley -Merklin -Merle -Merleburgh -Merlen -Merlewood -Merley -Merlin -Merlindale -Merlini -Merlins -Merlo -Merlot -Merlyn -Merlyn Rees -Mermaid -Mermod -Merna -Mernagh -Merner -Mero -Merokee -Merold -Meron -Meroo -Merrall -Merrals Wood -Merrell -Merrenburn -Merri Oaks -Merriain -Merriam -Merribee -Merribrook -Merrick -Merricks -Merricourt -Merridale -Merridan -Merriden -Merridong -Merrie Mill -Merrie Ridge -Merriebrook -Merriewood -Merrifield -Merrifields -Merriford -Merrilands -Merrilee -Merrill -Merrill New -Merrill Service -Merrill Woods -Merrillon -Merrillville -Merrilong -Merrimac -Merrimac River -Merrimack -Merriman -Merriments -Merrimount -Merrina -Merrington -Merrinot -Merrion -Merris -Merrison -Merrit -Merrithew -Merriton -Merritt -Merritt Farm -Merritt Point -Merritton -Merritts -Merrivale -Merriville -Merriwa -Merriweather -Merriwether -Merriwind -Merriwood -Merrow -Merrow Common -Merry -Merry Hill -Merry Hills -Merry Moppet -Merry Oaks -Merry Wood -Merrybower -Merryboys -Merrybrook -Merrydale -Merrydown -Merryfield -Merryhill -Merryhills -Merryknoll -Merrylands -Merryle -Merryman -Merrymans -Merrymeeting -Merrymount -Merryoaks -Merryrest -Merryvale -Merryville Farm -Merrywood -Mersea -Merseles -Merselis -Mersereau -Mersey -Mersey Bank -Merseybank -Mersham -Merstham -Merstham High -Merston -Mert -Merten -Mertens -Mertford -Merton -Merton High -Merttins -Mertz -Merust -Mervan -Merville -Mervin -Mervyn -Merwell -Merwin -Merwood -Mery -Meryl -Meryla -Meryll -Mesa -Mesa Buena -Mesa Creek -Mesa Grande -Mesa Oak -Mesa Ridge -Mesa Verde -Mesa Verdes -Mesabi -Mesaview -Mescalero -Meseda -Meserole -Meserve -Meshaka -Mesnefield -Mesquite -Mess -Messaline -Messenger -Messent -Messer -Messervy -Messiah -Messick -Messier -Messina -Messiner -Messines -Messinger -Messiter -Messler -Meta -Metacomet -Metacomett -Metawa -Metcalf -Metcalfe -Metella -Meteor -Methane -Metheun -Methilhaven -Methley -Methuen -Methven -Methwold -Metispa -Metlars -Metrapolitan -Metro -Metro Access -Metro Center -Metro Park -Metro Plaza -Metro Vista -Metroplex -Metropolitan -Metropolitan Church -Metropolitan Grove -Metrotech -Metson -Metsons -Mettawa -Mettawa Woods -Mettel -Metten -Metters -Mettler -Metuchen -Metuxen -Metz -Metzerott -Metzgar -Metzler -Meucci -Meudon -Meurants -Meuret -Meurilee -Mevan -Mevril -Mexborough -Mexfield -Mexico -Meyel -Meyenberg -Meyer -Meyer Point -Meyers -Meyers Grade -Meyersville -Meymott -Meyn -Meynell -Meyrick -Mezes -Mezmer -Mezzamonte -Mezzine -Mgm -Mhp -Mia -Mia Mia -Miall -Miamba -Miami -Mianga -Mianus -Miara -Mica -Micawber -Mich Bluff -Michael -Michael Canlis -Michael F -Michael Faraday -Michael Frey -Michael John -Michael Mack -Michael Mark -Michael McGuire -Michael Point -Michael Robert -Michael William -Michaelangelo -Michaele -Michaels -Michaelson -Michale -Michalik -Michaud -Michaux -Micheal -Michealangelo -Michel -Michelangelo -Michele -Michelham -Michelini -Michell -Michelle -Michelline -Michels -Michels Dale -Michelson -Michener -Michie -Michigamme -Michigan -Michigan City -Michille -Micholls -Michon -Micik -Mickelson -Micken -Mickens -Mickey -Micklands -Mickle -Micklefield -Mickleham -Micklehurst -Micklejohn -Micklem -Micklethwaite -Mickley -Miclands -Micro -Microlab -Micron -Mid -Mid Atlantic -Mid Cities -Mid Dural -Mid Oaks -Mid Park -Midan -Midbrook -Midchester -Midcrest -Middagh -Middale -Middaugh -Midday -Middelton -Midden -Middle -Middle Bay -Middle Bourne -Middle Brook -Middle Burdell Fire -Middle Church -Middle Creek -Middle Cross -Middle Dunstable -Middle Ellen -Middle Express -Middle Fork -Middle Golf -Middle Harbor -Middle Harbour -Middle Head -Middle Hollow -Middle Island -Middle Loop -Middle Meadow -Middle Memory -Middle Mill -Middle Neck -Middle Opening -Middle Oxford -Middle Park -Middle Pinecreek -Middle Point -Middle Ridge -Middle Rincon -Middle River -Middle Ruddings -Middle Run -Middle School -Middle Temple -Middle Town -Middle Two Rock -Middle Valley -Middle park -Middleberry -Middleboro -Middlebourne -Middlebridge -Middlebrook -Middleburg -Middlebury -Middleby -Middlecamp -Middlecoff -Middlecot -Middlecreek -Middlecroft -Middlefield -Middleford -Middlefork -Middlegate -Middlegate Church -Middlegate Kings -Middlegreen -Middleham -Middlehope -Middlehurst -Middlemead -Middlemiss -Middlemoor -Middleneck -Middlesborough -Middleset -Middlesex -Middlesex Canal -Middlesex Center -Middlestone -Middleton -Middleton Common -Middleton Farm -Middleton Hall -Middleton Old -Middleton Park -Middleton Ridge -Middleton Ring -Middleton Thorpe -Middleton Tract -Middleton Way -Middletown -Middletown Lincroft -Middletree -Middletune -Middlevale -Middleville -Middlewich -Middlewood -Middough -Midelton -Midfarm -Midfield -Midfields -Midford -Midge -Midge Hall -Midgely -Midgley -Midgrove -Midhill -Midholm -Midhope -Midhurst -Midian -Midiron -Midland -Midland Grove -Midland Hills -Midlane -Midlawn -Midledge -Midleton -Midline -Midlothian -Midmoor -Midnight -Midpine -Midra -Midridge -Midsection -Midship -Midson -Midstate -Midstone -Midstrath -Midsummer -Midtown -Midtown Bridge -Midvale -Midvale Mountain -Midville -Midway -Midway Branch -Midway Ranch -Midwest -Midwick -Midwood -Mierscourt -Mifflin -Mifsud -Miggins -Mighall -Mighell -Mighty Oak -Mignin -Mignon -Mignot -Migration -Miguel -Miguelito -Migues Mountain -Miilbank -Mika -Mikan -Mikasa -Mikayla -Mike -Mike Collins -Mike Shapiro -Mikel -Mikell -Mikesell -Mikkelsen -Miko -Mil Mil -Milagra -Milan -Miland -Milandy -Milani -Milanna -Milano -Milba -Milbank -Milbar -Milbeck -Milbern -Milbert -Milborne -Milboro -Milbourne -Milbrae -Milbrook -Milburn -Milbury -Milch -Milch Hill -Milcote -Mildam -Milden -Mildenhall -Mildmay -Mildon -Mildred -Mildreds -Mildura -Mile -Mile End -Mile Hill -Mile House -Mile Oak -Mile Pond -Mile Square -Mile Tree -Milebrook -Milebush -Mileham -Milemore -Milepost -Miles -Miles Gray -Miles Hill -Miles Keene -Miles River -Milestone -Milestone Center -Milestone Manor -Mileview -Miley -Milfan -Milfoil -Milford -Milford Haven -Milford Mill -Milgate -Milgeo -Milguy -Milham -Milik -Miliken -Milita -Military -Militia -Miljevich -Milk -Milk Farm -Milking -Milkingpen -Milksey -Milkshake -Milkweed -Milkwood -Mill -Mill Bay -Mill Branch -Mill Brook -Mill Brow -Mill Chase -Mill Church -Mill Copse -Mill Court -Mill Creek -Mill Cross -Mill Crossing -Mill Dam -Mill End -Mill Farm -Mill Fold -Mill Forest -Mill Gate -Mill Glen -Mill Green -Mill Harbor -Mill Hill -Mill Hill Page -Mill House -Mill Meadows -Mill Park -Mill Pit -Mill Plat -Mill Pond -Mill Pond Point -Mill Pond Valley -Mill Race -Mill Race Estates -Mill River -Mill Run -Mill Site -Mill Spring -Mill Springs -Mill Swamp -Mill Trail -Mill View -Mill Vue -Mill Wheel -Millais -Milland -Millar -Millard -Millay -Millbank -Millbeck -Millboard -Millbottom -Millbourne -Millbrae -Millbridge -Millbrook -Millburn -Millburne -Millbury -Millcreek -Millcrest -Millcroft -Milldale -Millen -Milleninum -Millenium -Millennium -Miller -Miller Circle -Miller Creek -Miller Cut Off -Miller Fall -Miller Farm -Miller Heights -Miller Hill -Miller Ridge -Miller View -Millerick -Milleridge -Millers -Millers Green -Millers Island -Millersburg -Millersville -Millet -Millett -Milley -Millfarm -Millfield -Millfields -Millford -Millfordhope -Millgarth -Millgate -Millgrove -Millham -Millhaven -Millhead -Millhouse -Millibank -Millicent -Millich -Millie -Millie May -Milligan -Milliken -Milliken Creek -Millikens Bend -Milling -Millington -Millington Hall -Million -Million Penny -Milliston -Millman -Millmarsh -Millmont -Millns -Millom -Millpond -Millponds -Millrace -Millrich -Millridge -Millrose -Mills -Mills Choice -Mills Corner -Mills Farm -Mills Hill -Mills Orchard -Mills Pond -Millsbrae -Millsdale -Millsgate -Millshaw -Millshire -Millshot -Millside -Millspring -Millstead -Millston -Millstone -Millstone Hill -Millstream -Millstream Service -Millsview -Millthorpe -Millthwait -Millton -Milltown -Milltown Landing -Millvale -Millview -Millville -Millwall Dock -Millwheel -Millwood -Millwood Pond -Millwoof -Millwright -Millyan -Milman -Milmans -Milmont -Miln -Milnbank -Milne -Milne Cove -Milner -Milnes -Milnrow -Milnthorpe -Milnwood -Milo -Milo Candini -Milosh -Milot -Milparinka -Milray -Milrose -Milroy -Milroy Crest -Milsom -Milson -Milsop -Milstead -Milsted -Miltiades -Milton -Milton Court -Milton Grant -Milton Hall -Milton High -Milton Hill -Milton I Ross -Milton Manor -Milton Mount -Milton Regis High -Miltonia -Miltsin -Milva -Milvain -Milvale -Milverton -Milvia -Milvia Bicycle -Milwain -Milward -Milwaukee -Milway -Milwood -Mima -Mimas -Mimi -Mimie Anderson -Mimms -Mimms Hall -Mimon -Mimosa -Mimosa Cove -Mimram -Mims -Mimsey -Mina -Mina Rosa -Minaglia -Minahen -Minaker -Minard -Minardi -Minaret -Minarto -Minas -Minburn -Minchen -Minchens -Minchin -Minchinbury -Mincing -Mindanao -Mindar -Mindaribba -Mindarie -Minden -Mindleheim -Mindona -Mindoro -Mindres -Mindy -Mine -Mine Bank -Mine Brook -Mine Ridge -Mine Run -Minea -Minear -Minebrook -Minehan -Minehead -Minehurst -Mineola -Miner -Mineral -Mineral Spring -Mineral Springs -Minert -Minerva -Mines -Minet -Minetta -Minette -Minford -Ming -Minga -Mingo -Mini -Miniature -Minidoka -Minihan -Minimall -Minimbah -Minion -Minisink -Minister -Ministerial -Minjon -Mink -Mink Hollow -Mink Meadows -Mink Trap -Minkara -Minkler -Minley -Minmai -Minna -Minnamorra -Minnamurra -Minnaqua -Minneapolis -Minnear -Minnehaha -Minnehaha Academy -Minneola -Minnesota -Minnesota Bluffs -Minnetonka -Minnetonka Highlands -Minnetonka Industrial -Minnewashta Woods -Minnewaska -Minnick -Minnie -Minnieford -Minnieville -Minnisink -Minnow Creek -Minns -Minoan -Minoca -Minocqua -Minola -Minoma -Minor -Minor Hill -Minorca -Minoru -Minoso -Minot -Minot Light -Minots -Minsden -Minshull -Minson -Minster -Minsterley -Minstrel Tune -Minstrell -Mint -Mint Julip -Minta -Mintaro -Mintching Wood -Minter -Minterne -Minthaven -Minthorne -Minto -Minton -Minturn -Mintwood -Mintz -Minue -Minuet -Minute -Minute Arms -Minute Man -Minuteman -Minutemen -Minya -Minyip -Mionske -Miowera -Mipaty -Mir Mirou -Mira -Mira Flores -Mira Lagos -Mira Loma -Mira Mesa -Mira Vista -Mira del Rio -Mirabeau -Mirabel -Mirabella -Mirabelle -Miracle -Miracle Mountain -Mirada -Miradera -Miradero -Mirador -Miraflores -Mirage -Miraggio -Miralo -Miramar -Miramar Park -Miramare -Miramonte -Miramontes -Miramontes Point -Miramount -Miranda -Miranda Green -Mirandy -Mirante -Mirasol -Mirassou -Miravalle -Mire -Mireille -Mireval -Mirfield -Miriam -Mirimar -Mirimichi -Mirin -Mirko -Mirkwood -Mirmar -Miro -Miroballi -Mirosa -Mirrabooka -Mirral -Mirrasou -Mirrielees -Mirrool -Mirror -Mirror Lake -Mirror Lakes -Mirror Pond -Mirschel -Miry -Mirycarr -Misbourne -Misbrooks Green -Miscoe Brook -Miscoe Hill -Mise -Mishawum -Miskin -Miss Anne -Missden -Missenden -Mission -Mission Bay -Mission Bell -Mission Blue -Mission Cielo -Mission College -Mission Creek -Mission Falls -Mission Glen -Mission Greens -Mission Hills -Mission Park -Mission Ridge -Mission Rock -Mission Square -Mission Trail -Mission Valley -Mission View -Mission Vineyard -Missionary -Mississippi -Mississippi Bar -Mississippi River -Missouri -Mist -Mist Trail -Mister -Mistflower -Misthaven -Mistic Harbour -Mistle -Mistler -Mistletoe -Mistletoe Spring -Mistley -Mistral -Mistress -Mistwood -Misty -Misty Brook -Misty Creek -Misty Dawn -Misty Falls -Misty Glade -Misty Glen -Misty Hill -Misty Hills -Misty Hollow -Misty Knoll -Misty Meadow -Misty Morning -Misty Mountain -Misty Ridge -Misty Woods -Mistyvale -Miswell -Mitala -Mitch Snyder -Mitcham -Mitchel -Mitchell -Mitchell Canyon -Mitchell Manor -Mitchell Ridge -Mitchells -Mitchells Chance -Mitchellville -Mitchie -Mitchison -Mitchler -Mitchley -Mitchs -Mitchum -Mitey Mite -Mitford -Mithering -Mitichell -Mitlon -Mitra -Mitre -Mitris -Mitscher -Mittabah -Mittel -Mitten -Mittendorf -Mittiamo -Mittman -Mitton -Mitumba -Mitzi -Mitzy -Mivo -Miwok -Mix Canyon -Mixes Hill -Mixnams -Mixon Brook -Miyuki -Mizar -Mizpah -Mizzen -Mliss -Moab -Moak -Moala -Moani -Moat -Moat Farm -Moat Hall -Moate -Moats -Mobberley -Mobbs -Mobeck -Moberly -Mobile -Mobley -Mobley Farm -Mobrey -Mobus -Mocabee -Mocassin -Mocatta -Moccasin -Moccasin Hill -Mocha -Mochel -Mocho -Mocine -Mock -Mockbeggar -Mocking Bird -Mockingbird -Mockingbird Hill -Mockingbird Ridge -Mockley Point -Mockridge -Moclips -Mococo -Moczygemba -Modaff -Modder -Moddison -Mode Wheel -Model -Model Farm -Model Farms -Modena -Modern Ice -Moders -Modesto -Modisto -Modoc -Modred -Modular -Modzelewski -Moe -Moehring -Moelfre -Moeller -Moen -Moeser -Moessner -Moffat -Moffats -Moffatt -Moffatts -Moffet -Moffett -Moffett Forge -Moffett Park -Moffitt -Moffitts -Mogador -Mogan -Mogden -Moggie -Mogila -Mohave -Mohawk -Mohawk River -Mohegan -Mohican -Mohican Park -Mohmmad Khan -Mohovy -Mohr -Mohwawk -Moir -Moira -Moiso -Moison -Moitoza -Moiyas -Mojave -Mokelumne -Mokelumne River -Mokelumne School -Mokema -Mokena -Mokera -Molair -Molaskey -Molasky -Molasses Run -Mold -Mole -Mole Hall -Mole Hill Green -Molehill Green -Molember -Moles -Molesey -Molesford -Molesworth -Molimo -Molina -Molinari -Molinaro -Molinart -Moline -Molino -Molino Reservoir -Molise -Molitas -Molitor -Moll -Mollands -Molle -Moller -Moller Ranch -Mollie -Mollison -Molloy -Molly -Molly Berry -Molly Millars -Mollymook -Molnar -Moloney -Molong -Molonglo -Molrams -Molteg -Molteno -Molter -Molton -Moltzen -Moluccana -Moly -Molyneaux -Molyneux -Momar -Mombri -Mommouth -Mon -Mona -Mona Park -Mona Vale -Mona Woods -Monacan -Monachus -Monaco -Monadnock -Monaghan -Monahan -Monaldi -Monalee -Monaltrie -Monamie -Monan -Monarch -Monarch Birch -Monarch Oak -Monarch Ridge -Monarch Vista -Monard -Monardo -Monaro -Monart -Monash -Monastary -Monastery -Monatiquot -Monaton -Moncado -Monck -Monckton -Moncktons -Monclar -Moncrief -Moncrieff -Moncton -Moncur -Moncure -Mond -Monda -Mondamin -Monday -Mondelli -Mondigo -Mondovi -Mondrian -Monee -Monega -Monegra -Monestary -Monet -Monetary -Moneterrey -Monetta -Monette -Money -Money Ash -Money Hill -Money Hole -Monfarville -Monferino -Monfort -Monfredo -Mongers -Mongomery -Monhegan -Monica -Monie -Monika -Monins -Monique -Monitor -Monivea -Monix -Monk -Monk Bridge -Monk Sherborne -Monkdowns -Monkery -Monkey Island -Monkfrith -Monkhams -Monkmead -Monks -Monks Hill -Monks Ings -Monksdale -Monksdown -Monksford -Monkswell -Monkswick -Monkswood -Monkton -Monktons -Monkville -Monkwood -Monmouth -Monn -Monna -Monnens -Monnett -Monnier -Monnow -Mono -Mono Lake -Monocacy -Monoco -Monogram -Monomeeth -Monomoy -Monona -Monongahela -Monoosnock -Monoponsan -Monowood -Monponset -Monponsett -Monro -Monroe -Monroe Duvall -Monroe Manor -Monrovia -Mons -Monsal -Monsall -Monsen -Monserat -Monserra -Monsignor Rooney -Monson -Mont -Mont Clare -Mont Croix -Mont Fern -Mont Sec -Montacute -Montafia -Montagu -Montague -Montair -Montaire -Montalban -Montalt -Montalto -Montalvin -Montalvo -Montammy -Montana -Montara -Montaro -Montauban -Montauk -Montaup -Montayne -Montazah -Montbatten -Montbelle -Montcalm -Montcastle -Montclair -Montclaire -Montclare -Montclare Lake -Montcourse -Montcurve -Monte -Monte Alegre -Monte Brazil -Monte Buena -Monte Carlo -Monte Cimas -Monte Cresta -Monte Cristo -Monte Linda -Monte Mar -Monte Maria -Monte Park -Monte Rio -Monte Rosa -Monte Sereno -Monte Sunset -Monte Veda -Monte Verde -Monte Villa -Monte Vista -Monte Vista Ridge -Monteagle -Montebello -Montecello -Montecillo -Montecito -Montecito Meadow -Monteclair -Montecrest -Montee -Montefiore -Monteforte -Montefrio -Montega -Montego -Montehill -Monteira -Monteith -Montelegre -Montelena -Montell -Montello -Montem -Montemura -Montenotte -Monteray -Monterery -Monterey -Monterey Estates -Monterey Frontage -Montern -Montero -Monterra -Monterrey -Montery -Montesano -Monteswood -Monteva -Montevalle -Montevarchi -Monteverde -Montevideo -Montevina -Montevista -Montewood -Montez -Montezuma -Montezuma Hills -Montfern -Montfield -Montford -Montfort -Montgomerie -Montgomery -Montgomery Run -Montgomery Village -Montgue -Montholme -Montibello -Monticelli -Monticello -Montiero -Montieth -Montilio -Montilla -Montmarte -Montmorenci -Montmorency -Montmouth -Montoclair -Monton -Montonfields -Montore -Montoro -Montour -Montoya -Montpelier -Montpellior -Montreal -Montrell -Montresor -Montridge -Montrose -Montross -Montserrat -Montvale -Montview -Montville -Monty -Montyville -Monument -Monument Corner -Monument Farm -Monument Hill -Monumental -Monush -Monycrower -Monza -Monzal -Mooculta -Moodie -Moodkee -Moody -Moody Slough -Mooer -Mooers -Mooki -Moolah -Moolanda -Moombara -Moomin -Moon -Moon Beam -Moon Hall -Moon Hill -Moon Lake -Moon Meadow -Moon Mountain -Moon Penny -Moon Point -Moon Ridge -Moon Shadow -Moon Valley Ranch -Moona -Moonachie -Moonah -Moonbeam -Moonbi -Moonbie -Moonbria -Moondani -Moondara -Moonedge -Moonen Bay -Mooney -Mooneys -Moonglow -Moonlight -Moonlight Hill -Moonlite -Moonraker -Moonrider -Moonrise -Moons -Moonsail -Moonsails -Moonshine -Moonstone -Moontree -Moor -Moor Allerton -Moor End -Moor Flatts -Moor Grange -Moor Green -Moor Hall -Moor Hey -Moor Knoll -Moor Mead -Moor Mill -Moor Park -Moor Side -Moora -Mooramba -Mooramie -Moorbottom -Moorbridge -Moorbrook -Moorby -Moorcroft -Moordale -Moore -Moore Creek -Moore Park -Moore Ranch -Moorebank -Mooredge -Moorefield -Moorefields -Moorehead -Mooreland -Moorend -Moores -Moores Hill -Moores Plains -Mooresfield -Mooreview -Moorfield -Moorfoot -Moorgate -Moorhayes -Moorhead -Moorheart Ridge -Moorhen -Moorhey -Moorhill -Moorhills -Moorhouse -Moorhurst -Moorilla -Moorina -Mooring -Moorings -Moorland -Moorlands -Moormead -Moormill -Moorpark -Moors -Moorsholme -Moorside -Moorsley -Moorsom -Moorton -Moortown King -Moorview -Moorville -Moorwood -Moos -Moose -Moose Hill -Moosehead -Mooseheart -Moosepac -Moosewood -Mope -Mopsick -Mora -Mora Glen -Morab -Morada -Moraga -Moraga Valley -Morahapa -Moraine -Moraine Hill -Moraine Hills -Moran -Morandi -Morani -Morano -Morant -Morants Court -Morar -Morat -Moravian -Moray -Morazan -Morcambe Bay -Morcom -Mordaunt -Mordecai Lincoln -Morden -Morden Hall -Morden Wharf -Mordente -Mordon -Mordor -Mordred -More -Morea -Moreau -Morecambe -Morecroft -Moree -Morehead -Morehouse -Moreing -Morela -Moreland -Moreland Green -Morelands -Morell -Morella -Morelli -Morelli Vista -Morello -Morello Heights -Morello Hills -Morello Park -Morelos -Morely -Moremead -Morement -Moren -Morenci -Morency -Moreno -Mores -Moresby -Moresdale -Moretaine -Moreton -Moreton End -Moretti -Morettis Ranch -Moretto -Morewood -Morewood Oaks -Morey -Morford -Morgal -Morgan -Morgan Days -Morgan Farm -Morgan Hill -Morgan Territory -Morgan Valley -Morgana -Morgans -Morgans Ridge -Morganston -Morgantine -Morganville -Morgaston -Mori -Moriac -Moriatry -Morice -Moriconi -Morie -Morieux -Moril -Morillon -Morin -Morin Heights -Morinda -Moring -Morini -Moris Point -Morison -Morisse -Moritz -Morken -Morlan -Morland -Morlands -Morley -Morley Clough -Morley Peel -Morley Wynyard -Morleys -Morlock -Morlot -Mormon -Mormon Island -Morna -Mornant -Mornigside -Morning -Morning Brook -Morning Dale -Morning Dew -Morning Dove -Morning Field -Morning Gate -Morning Glen -Morning Glory -Morning Meadow -Morning Mist -Morning Ride -Morning Spring -Morning Sun -Morning Time -Morning View -Morning Watch -Morning Wind -Morningbird -Morningdale -Morninghome -Morninglo -Morningmist -Morningside -Morningside Mountain -Morningstar -Mornington -Morningview -Morningwood -Moro -Morobe -Morocco -Morona -Moroney -Morotai -Morpeth -Morphett -Morpheus -Morphew -Morphou -Morrell -Morrell Cutoff -Morrell Mill -Morrene -Morrice -Morrie -Morril -Morrill -Morrington -Morris -Morris Fold -Morris Green -Morris Hill -Morris Park -Morris Pesin -Morris Phelps -Morris Plains -Morris Ranch -Morris Tongue -Morrisey -Morrish -Morrison -Morrison Canyon -Morrison Creek -Morrisse -Morrissee -Morrissette -Morrissey -Morrissey Service -Morristown -Morrisworth -Morritt -Morro -Morro Bay -Morro Vista -Morrow -Morrowfield -Morry -Mors -Morse -Morse Farm -Morse Glen -Morse Lake -Morse Lakes -Morseland -Morsemere -Morses Pond -Morsetown -Morshead -Morson -Mort -Mortain -Mortar -Morten -Mortensen -Mortenson -Morteyne -Mortfield -Mortham -Morthland -Mortimer -Mortimer Lewis -Mortimers -Mortlake -Mortlake High -Mortley -Morton -Morton Davis -Morton Hall -Morton Hill -Morton Park -Mortono -Mortonsberry -Mortuary -Moruben -Moruya -Morva -Morval -Morvan -Morvem -Morven -Morven Park -Morville -Morwell -Morwick -Morwood -Moryan -Mosaic -Mosby -Mosby Hollow -Moscato -Mosco -Moscow -Moseby -Mosedale -Mosefan -Mosegard -Mosel -Moselden -Moseldene -Moseley -Moseley Wood -Moselle -Mosely -Moser -Moses -Moses Hill -Moses Plat -Mosgrove -Mosher -Moshier -Mosholu -Mosier -Moslee -Mosley -Mosley Common -Mosman -Moss -Moss Bank -Moss Bower -Moss Bridge -Moss Brook -Moss Brow -Moss Garden -Moss Glen -Moss Grange -Moss Hall -Moss Hey -Moss Hill -Moss Hollow -Moss House -Moss Landing -Moss Oak -Moss Park -Moss Point -Moss Ranch -Moss Rock -Moss Side -Moss Vale -Moss Valley -Moss View -Mossbank -Mossberry -Mossbray -Mossbrook -Mossbury -Mosscreek -Mossdale -Mossfield -Mossford -Mossgate -Mossgiel -Mossglen -Mossgrove -Mossland -Mosslea -Mossley -Mossman -Mossmere -Mosso -Mossrock -Mosswood -Mossy Bank -Mossy Creek -Mossy Oak -Mossy Rock -Mostika -Moston -Moston Bank -Mostyn -Mosyer -Mota -Motcomb -Motcombe -Motcombe Farm -Mote -Motel -Mother Gaston -Mother Julia -Motherwell -Motley -Motney Hill -Motor -Motor City -Mott -Motta -Mottershead -Mottingham -Mottins -Mottisfont -Mottram -Mottrom -Motts -Motts Hill -Mouacdie -Mough -Moul -Mouldsworth -Moulin -Moulsham -Moulsham Copse -Moulsham Hall -Moulton -Moulton Park -Moultrie -Mounce -Mouncey -Mound -Mound View -Moundfield -Mounds -Moundsview -Moundview -Mounslow -Mount -Mount Zion -Mount Air -Mount Airey -Mount Airy -Mount Alventine -Mount Alvernia -Mount Annan -Mount Ararat -Mount Ash -Mount Auburn -Mount Bache -Mount Baker -Mount Bethel -Mount Blanc -Mount Blue -Mount Bovers -Mount Calvary -Mount Carmel -Mount Carmel Cemetery -Mount Carriage -Mount Castle -Mount Cedar -Mount Crest -Mount Culver -Mount Curve -Mount Daniel -Mount Darwin -Mount Day -Mount Dell -Mount Dew -Mount Diablo -Mount Diablo Scenic -Mount Duncan -Mount Eagle -Mount Echo -Mount Eden -Mount Edgcumbe -Mount Elam -Mount Ephraim -Mount Erin -Mount Etna -Mount Everest -Mount Everett -Mount Feake -Mount Foraker -Mount Forest -Mount Frazier -Mount George -Mount Gilead -Mount Glen -Mount Globe -Mount Grace -Mount Grove -Mount Hamilton -Mount Hamilton View -Mount Harmony -Mount Harry -Mount Hebron -Mount Henry -Mount Hercules -Mount Herman -Mount Hermon -Mount High -Mount Hill -Mount Holly -Mount Holyoke -Mount Hood -Mount Hope -Mount Horeb -Mount Ida -Mount Isabel -Mount Jackson Lockout -Mount Jackson Resort -Mount Jackson Trail -Mount Jasper -Mount Joy -Mount Kemble -Mount Kennedy -Mount Kenya -Mount King -Mount Kisco -Mount Lassen -Mount Laurel -Mount Lebanon -Mount Leneve -Mount Lewis -Mount Locust -Mount Logan -Mount Lyell -Mount Maclure -Mount Madonna -Mount Mc Kinley -Mount McKinley -Mount Misery -Mount Morris -Mount Nebo -Mount Nod -Mount Normandale -Mount Oak -Mount Olive -Mount Oliveira -Mount Olivet -Mount Olney -Mount Olympus -Mount Oso -Mount Palomar -Mount Park -Mount Paul -Mount Peller -Mount Pisgah -Mount Pleasant -Mount Pleasent -Mount Preston -Mount Prieta -Mount Prospect -Mount Quail -Mount Rainier -Mount Ridge -Mount Ridgeway -Mount Rock -Mount Royal -Mount Rushmore -Mount Saint Charles -Mount Saint Helena -Mount Shasta -Mount Skip -Mount Skirgo -Mount Sugarloaf -Mount Sunapee -Mount Tabor -Mount Tamalpais -Mount Taylor -Mount Tenaya -Mount Thabor -Mount Tom -Mount Umunhum -Mount Veeder -Mount Vernon -Mount Vickery -Mount View -Mount Vision -Mount Vista -Mount Wachusett -Mount Walley -Mount Washington -Mount Wayte -Mount Wellington -Mount Weske -Mount Whitney -Mount William -Mount Wilson -Mount Zephyr -Mount Zion -Mountabatten -Mountain -Mountain Ash -Mountain Bell -Mountain Canyon -Mountain Charlie -Mountain Dump -Mountain Estate -Mountain Gate -Mountain Heights -Mountain Home -Mountain Home Ranch -Mountain House -Mountain Lakes -Mountain Laurel -Mountain Lion -Mountain Meadow -Mountain Mist -Mountain Park -Mountain Quail -Mountain Ridge -Mountain Rock -Mountain Shadows -Mountain Spring -Mountain Springs -Mountain Top -Mountain Trails -Mountain Valley -Mountain View -Mountain View Ranch -Mountain Vista -Mountain Wood -Mountaindale -Mountains -Mountains Farm -Mountainside -Mountainview -Mountaire -Mountbatten -Mountbel -Mounters -Mountfield -Mountfitchet -Mountford -Mountfort -Mountgrove -Mounthaven -Mounthill -Mountnessing -Mounts -Mounts Pond -Mountview -Mountville -Mountwood -Moura -Mourfield -Mourning Dove -Mousehill -Moushill -Mouth of Monocacy -Moverly -Movers -Movida -Movie -Moville -Moving Water -Mow Halls -Mowatt -Mowbray -Mowden Hall -Mower -Mowera -Mowla -Mowle -Mowlem -Mowll -Mowry -Mowry School -Moxham -Moxhams -Moxley -Moxleys Ford -Moxom -Moxon -Moyarta -Moyengully -Moyer -Moyers -Moyes -Moylan -Moyne -Moynihan -Moyse -Moyser -Mozart -Mozden -Mrack -Mrs Macquarie -Msgr Jacobbe -Msgr. Shea -Mt Calvert -Mt Curve -Mt Hope -Mt Pisgah Farm -Mt Pleasant -Mt Prospect -Mt Sizer -Mt Vernon -Mt. Elam -Mt. Hope -Mt. Umunhum -Mt. Vernon -Mucciarone -Muccillo -Muchelney -Muchmore -Muckelemi -Mucking Hall -Muckingford -Mucklehany -Mud -Mud Gulley -Mud Lake -Mudd -Muddy -Muddy Branch -Muddy Pond -Mudge -Mudhurst -Mudies -Muehl -Muela -Mueller -Muender -Muerer -Muffets -Muffit -Muggeridge -Mugleston -Mugo -Muhammad Ali -Muhlenhardt -Muir -Muir Woods -Muirdown -Muirfield -Muirhead -Muirkirk -Muirkirk Meadows -Muirwood -Mukerji -Mulberry -Mulberry Bottom -Mulberry E -Mulberry Hill -Mulberry Mount -Mulberry Wood -Mulbring -Mulcahy -Mulcare -Mulcerns -Mulders -Muldoon -Muldrow -Mule -Mule Deer -Mule Lovers -Mulford -Mulga -Mulgoa -Mulgrave -Mulgray -Mulguy -Mulhall -Mulherin -Mulhern -Mulheron -Mulholland -Mulica -Muliner -Mulkern -Mull -Mullacre -Mullane -Mullarkey -Mullberry -Mullbrook -Mullen -Mullenderree -Mullens -Muller -Mulligan -Mullikin -Mullin -Mullins -Mullion -Mullon -Mulloy -Mullumbimby -Mulpus -Mulqueeney -Mulqueeny -Mulready -Mulroy -Mulry -Multiplex -Multon -Mulvey -Mulvihill -Mulvoy -Mulwaree -Mulyan -Mumford -Mums -Mun Kwok -Muncaster -Muncaster Mill -Munces -Muncey -Munch -Muncie -Muncy -Mund -Munda -Mundakal -Mundamatta -Mundania -Mundarrah -Munday -Mundays Borough -Munden -Munderah -Mundesley -Mundford -Mundin -Mundon -Mundowi -Mundy -Munford -Mungarra -Munger -Munger Farm -Mungerie -Mungo Park -Munhall -Munich -Municipal -Muniz Ranch -Munko -Munmorah -Munmurra -Munn -Munni -Munnings -Munnion -Munns -Munnumba -Munoora -Munro -Munroe -Munroe Hill -Munsee -Munsey -Munsgore -Munson -Munson Hill -Munstad -Munstead View -Munster -Munsterburg -Munter -Munton -Munyan -Munyang -Munz -Muraban -Mural -Muraoka -Murata -Murcer -Murchia -Murchison -Murcia -Murco Mill -Murcott -Murdoch -Murdock -Murdstone -Murfield -Murguia -Muricatia -Muriel -Murieston -Murieta -Murieta South -Murietta -Murillo -Murkand -Murlagan -Murlett -Murley -Murmansk -Murnane -Muroc Lake -Muron -Muroney -Murphy -Murphy Crossing -Murphy Hill -Murphy Lake -Murphy Springs -Murphys -Murrabin -Murrain -Murralong -Murrami -Murrandah -Murray -Murray Farm -Murray Hill -Murray Hulbert -Murray Park -Murray Point -Murray Ranch -Murray Ranch Access -Murray Rose -Murrays -Murre -Murrel Hill -Murrell -Murrells -Murrey -Murrieta -Murrin -Murriverie -Murrobah -Murrphy -Murrua -Murrumbidgee -Murrumburrah -Murry -Murry Hill -Mursley -Murston -Murtha -Murthering -Murton -Murtwell -Muru -Murvey -Murwillubah -Murwillumbah -Murwood -Murylu -Musante -Musard -Musbury -Muscat -Muscatatuck -Muschamp -Muscharry -Muscovy -Muse -Museum -Museum Campus -Musgnug -Musgrave -Musgrove -Mushroom -Mushtown -Music -Music Hall -Musick -Musicmaster -Musico -Musjid -Musk -Muskeego -Muskegon -Musket -Musket Ball -Musketaquid -Muskett -Muskham -Muskie -Muskogee -Muskrat Pond -Musley -Muslin -Musquashicut -Mussenden -Mussey Brook -Mustang -Mustang Hill -Mustard -Mustard Mill -Musterfield -Musto -Muston -Muswell -Muswell Hill -Muswell Hill Pages -Muswell Hill Woodside -Muswellbrook -Mutch -Muth -Mutilod -Mutrix -Muttama -Mutton -Mutton Hall -Mutton Hollow -Muttong -Muttontown -Muttontown Eastwoods -Mutual -Mux -Muybridge -Muzzey -Muzzy -My -My Mollies Pride -MyEye -Myahgah -Myall -Myallie -Myalora -Myamba -Myano -Myatt -Mycenae -Mycumbene -Myddelton -Myddleton -Mydell -Mydellton -Myee -Myer -Myers -Myers Farm -Myerson -Myette -Mygrove -Myhre -Mykala -Myler -Myles -Myles View -Mylinda -Mylith Park -Mylnar -Mylne -Mylod -Mylon -Mylott -Mymms -Mynchen -Mynor -Myola -Myoora -Myosotis -Myotis -Mypolonga -Myra -Myradell -Myran -Myrdle -Myriah -Myrick -Myrle -Myrman -Myrna -Myro -Myron -Myrrh -Myrte -Myrtle -Myrtle Beach -Myrtle Grove -Myrtle Leaf -Myrtle Park -Myrtle Vista -Myrtlebank -Myrtledale -Myrtledene -Myrtlewood -Myson -Mysore -Mystery Spot -Mystic -Mystic Lake -Mystic River -Mystic Valley -Mystic View -Mystique -Mytchett -Mytchett Lake -Mytchett Place -Mytham -Mytton -Myuna -N Abbey Glenn -N Abbotsford -N Aber -N Aberdeen -N Abingdon -N Acorn -N Acres -N Ada -N Adams -N Addison -N Adelaide -N Adolphus -N Aglen -N Ahrens -N Ahwahnee -N Airlite -N Alameda -N Alaska -N Albany -N Albemarle -N Albert -N Alder -N Aldine -N Alfred -N Algonquin -N Alleghany -N Allen -N Althea -N Amberley -N Anderson -N Andoa -N Andover -N Anthon -N Anvil -N Apache -N Apple Hill -N Aqueduct -N Aralia -N Arbogast -N Arbor -N Arcade -N Archer -N Ardmore -N Argyle -N Arizona -N Arkwright -N Arlington -N Arlington Heights -N Arlington Mill -N Arlington Ridge -N Arm -N Armistead -N Arona -N Arrowhead -N Artesian -N Arthur -N Arundel -N Asbury -N Ascan -N Ash -N Ashbury -N Ashby -N Ashland -N Ashton -N Astor -N Atlanta -N Atlantic -N Attleboro -N Aurora -N Austin -N Avalon -N Avon -N Avondale -N Babbit -N Babcock -N Bailey -N Baker -N Baldwin -N Ballou -N Balmiere -N Bank -N Barclay -N Barkley -N Barrett -N Barrington -N Barrington Woods -N Barry -N Barsumian -N Bartlett -N Barton -N Bassford -N Bates -N Bay -N Bayles -N Baynard -N Bayview -N Beach -N Beaumont -N Bedford -N Beech -N Beers -N Belair -N Belgrade -N Bell -N Bellmore -N Belmont -N Bend -N Bereman -N Bernard -N Berteau -N Bertha -N Betty -N Beverly -N Beverwyck -N Bingham -N Birch -N Birchdale -N Birchwood -N Bishop -N Bissell -N Bittner -N Blackburn -N Blackhawk -N Blanchard -N Blanding Woods -N Bleeker -N Bloomingdale -N Bloomington -N Bluebonnet -N Bluemont -N Bobwhite -N Bolingbrook -N Bon Aire -N Bond -N Bonnie -N Boo -N Boro -N Boston -N Bosworth -N Bothwell -N Boulder -N Bourndale -N Boynton -N Bradford -N Bradley -N Brainard -N Braintree -N Branch -N Brandon -N Brandywine -N Brashares -N Braymore -N Brentwood -N Brewer -N Briarcliff -N Briarwood -N Bridge -N Bridgeport -N Bridle Trail -N Briggs -N Brightway -N Bristol -N Brittany -N Broad -N Broadview -N Broadway -N Brockway -N Brompton -N Brook -N Brookdale -N Brooks -N Brookshore -N Brookside -N Brookwood -N Broome -N Brown -N Browning -N Bruner -N Brunson -N Bryan -N Buchanan -N Buckeye -N Buckhout -N Budd -N Buell -N Buesching -N Buffalo -N Buffalo Grove -N Buffalo Run -N Burling -N Burlington -N Burnett -N Burning Bush -N Burr -N Burtis -N Busse -N Butehorn -N Butterfield -N Cabin -N Cady -N Calhoun -N California -N Callahan -N Callero -N Calvert -N Cambridge -N Camden -N Cameron -N Camp Meade -N Campbell -N Canal -N Canfield -N Capitol -N Cardinal -N Carillon -N Carlin Springs -N Carll -N Carlton -N Carlyle -N Caroline -N Carpenter -N Carter -N Caryl -N Cass -N Cassell -N Catalpa -N Cathedral -N Catherine -N Cavender -N Cawdor -N Cedar -N Celia -N Center -N Central -N Central Park -N Centre -N Century -N Chalmers -N Chamber -N Chambliss -N Chamlin -N Champlain -N Channing -N Chapel -N Chapel Hill -N Charles -N Charlotte -N Charter -N Charter Point -N Chase -N Chatsworth -N Chelmsford -N Chelsea -N Cherry -N Cherry Grove -N Cheryl -N Chesapeake -N Chester -N Chestnut -N Chevy Chase -N Chicago -N Chicora -N Chicot -N Chippewa -N Christiana -N Christie -N Church -N Churchill -N Circle -N Claremont -N Clarence -N Clarendon -N Clarice -N Clark -N Clay -N Cleaver -N Cleveland -N Cliff -N Clifford -N Clifton -N Clinton -N Clover -N Club House -N Clyde -N Coach -N Cogswell -N Cohansey -N Cold Mill -N Coldspring -N Colfax -N College -N College Park -N Collins -N Colombian -N Colombus -N Colonial -N Colorado -N Columbia -N Columbine -N Columbus -N Commons -N Commonwealth -N Concord -N Connecticut -N Conrad -N Conservatory -N Constitution -N Converse -N Cook -N Cooper -N Copper Beach -N Corona -N Cortez -N Cottage -N Cottenet -N Countryside -N County Farm -N County Line -N Court -N Court House -N Cowley -N Crabtree -N Cranberry -N Crane -N Crescent -N Crest -N Crestview -N Croname -N Crosby -N Cross -N Crystal -N Crystal Beach -N Culpeper -N Cumberland -N Cumnor -N Custis -N Cutler -N Cuyler -N Cypress -N Cypress Point -N Dairy -N Dale -N Dallas -N Damen -N Danforth -N Daniel -N Daniels -N Dante -N Danube -N Danville -N Darrell -N Dartmoor -N Dato -N Davisson -N Dawson -N Day -N Dayton -N Dean -N Dearborn -N Dearing -N Dearman -N Dee -N Deep Lake -N Deer Lake -N Deer Park -N Deer Run -N Deerpath -N Delaplaine -N Delaware -N Delphia -N Demarest -N Denal -N Denberry -N Deneen -N Denise -N Dennis -N Denton -N Derby -N Derbyshire -N Des Plaines River -N Desplaines -N Detroit -N Devon -N Dewey -N Dexter -N Diamond Lake -N Diane -N Dickenson -N Dickerson -N Dickinson -N Dieter -N Dinwiddie -N Dittmar -N Division -N Dominick -N Donald -N Donelson -N Dorchester -N Douglas -N Dover -N Dovington -N Dowagiac -N Dumbarton -N Dunlap -N Dunton -N Dupont -N Dutcher -N Dutton -N Dwiggins -N Dwight -N Dymond -N Dyre -N Eagle -N Eagle Lake -N Earl -N Early -N East -N East Brook -N East Lake Shore -N East River -N Eastern -N Easton -N Eastwood -N Echo -N Echo Lake -N Eckar -N Eden -N Edgelawn -N Edgemond -N Edgemont -N Edgewood -N Edie -N Edison -N Edmer -N Edmore -N Edward -N Ela -N Elberta -N Elbridge -N Elchester -N Elgin -N Elizabeth -N Elk -N Elk Grove -N Ellen -N Ellis -N Ellison -N Ellsworth -N Ellyn -N Elm -N Elma -N Elmer -N Elmhurst -N Elmwood -N Elodie -N Elroy -N Elston -N Emerald -N Emerson -N Emery -N Emmett -N Emroy -N Enchanted -N Englewood -N English -N Eola -N Erie -N Ernest -N Essex -N Essington -N Ethel -N Etna -N Euclid -N Eugene -N Eustis -N Evanslawn -N Evanston -N Evarts -N Everett -N Evergreen -N Ewing -N Exmoor -N Fairfax -N Fairfield -N Fairlawn -N Fairview -N Fairway -N Falls -N Farrell -N Farrington -N Farview -N Faxon -N Faye -N Fayette -N Fenview -N Fenwick -N Ferdinand -N Fernandez -N Ferndale -N Fernwood -N Ferris -N Ferry -N Ferry Point -N Field -N Fillmore -N Finn -N Fire -N Firestone -N Fisk -N Flake -N Flamingo -N Flanders -N Fletcher -N Florence -N Florida -N Florida Grove -N Floyd -N Ford -N Fordham -N Forest -N Forest Garden -N Forest Glen -N Forest Lake -N Forest Preserve -N Forestview -N Forrest -N Fort Myer -N Four Mile Run -N Fox -N Fox River -N Foxtail -N Frank -N Franklin -N Franks -N Franzen -N Frazier -N Frederick -N Freemont -N Freeway -N Fremont -N Fremont Center -N French -N Friendly -N Frontage -N Frontenac -N Frontier -N Fry -N Fullerton -N Fulton -N Furman -N Gables -N Gaillard -N Galena -N Galesburg -N Galveston -N Gannon -N Garden -N Gardiner -N Garfield -N Garland -N Garnsey -N Gary -N Gate -N Gates -N Gateway -N Gatewood -N Gem -N Genesee -N Geneva -N George Mason -N Gerald -N Geraldine -N Gerard -N Gibbons -N Gibson -N Gifford -N Gilbert -N Gilmer -N Ginger Creek -N Gladden -N Gladstone -N Glebe -N Glen -N Glendale -N Glenmore -N Glenn -N Glenview -N Glenwood -N Glover -N Golden -N Goodwin -N Gordon -N Grace -N Granada -N Grand -N Grand Monde -N Grandin -N Grandview -N Grant -N Graylynn -N Grayson -N Greeley -N Green -N Green Bay -N Green Meadows -N Green Valley -N Greenbrier -N Greenbush -N Greencastle -N Greene -N Greenfield -N Greenmount -N Greenview -N Greenwich -N Greenwood -N Gresham -N Griffith -N Griggs -N Grotto -N Grove -N Gurney -N Guyer -N Haddow -N Hager -N Haig Point -N Hale -N Haledon -N Ham Lake -N Hamilton -N Hamlin -N Hamline -N Hampden -N Hampshire -N Hampton -N Hancock -N Hanover Hills -N Hansen -N Harbor -N Harby -N Harding -N Harlem -N Harold -N Harriet -N Harrison -N Hart -N Hartford -N Hartshorne -N Harvard -N Harvey -N Haskins -N Haverhill -N Hawk -N Hawthorn -N Hawthorne -N Hayes -N Hazel -N Hazel Crest -N Hazelton -N Healy -N Heather -N Hebbard -N Hedgewood -N Heights -N Helgesen -N Hemlock -N Hempstead -N Henderson -N Henry -N Herbert -N Hereford -N Heritage -N Herky -N Hermitage -N Herndon -N Herschel -N Hess -N Hiawatha -N Hickory -N Hickory Hill -N Hickory Nut Grove -N High -N High Ridge -N Highcrest -N Highland -N Highview -N Highway -N Highwood -N Hilandale -N Hill -N Hillcrest -N Hillfarm -N Hillside -N Hillview -N Hobart -N Holder -N Hollins Ferry -N Hollister -N Holly -N Holton -N Homan -N Home -N Homeland -N Honey -N Honore -N Hooker -N Hope -N Horatio -N Horners -N Hotz -N Hough -N Howard -N Howe -N Howell -N Hoyne -N Hoyne Av -N Hubbard -N Hudson -N Huffman -N Humboldt -N Humphrey -N Hundley -N Hunter Ridge -N Hunting Valley -N Huntington -N Hurdale -N Huron -N Huston -N Hythe -N Idaho -N Illinois -N Ilwaco -N Imboden -N Indian -N Indiana -N Inglewood -N Innsbruck -N International -N Ionia -N Iowa -N Irene -N Irving -N Island -N Ivanhoe -N Iverson -N Ivy -N J RR -N Jackson -N Jacksonville -N Jacob -N James -N Jameson -N Jane -N Janssen -N Jason -N Jasper -N Jay -N Jean -N Jefferson -N Jensen -N Jerome -N Jersey -N Jerusalem -N Jessie -N John -N John Marshall -N Johnson -N Joliet -N Jones -N Jordan -N Joyce -N Jugtown -N Julian -N Juliet -N Juniper -N Justine -N Kane -N Kansas -N Karlov -N Kaspar -N Kasson -N Kearns -N Kearsarge -N Keating -N Kedvale -N Kedzie -N Keeler -N Keene -N Kelsey -N Kelso -N Kemman -N Kemper -N Kendall -N Kenilworth -N Kenmore -N Kennard -N Kennebec -N Kennedy -N Kennesaw -N Kenneth -N Kennicott -N Kennison -N Kenosha -N Kensington -N Kent -N Kenton -N Kentucky -N Keokuk -N Keota -N Kerbs -N Kercheval -N Keston -N Ketay -N Kewanee -N Key -N Keys -N Keystone -N Kilbourn -N Kilburn -N Kildare -N Kilpatrick -N Kimball -N Kimberly -N Kinderkamack -N King -N Kings -N Kingsbury -N Kingsdale -N Kingsway -N Kinzua -N Kiona -N Kirby -N Kirkwood -N Kittson -N Knight -N Knollwood -N Knox -N Kohlman -N Kolin -N Kolmar -N Konner -N Kostner -N Kramer -N Krueger -N Kruger -N L Johnson -N La Fox -N Lacey -N Lafayette -N Laflin -N Laird -N Lake -N Lake Arlington -N Lake Park -N Lake Shore -N Lake Zurich -N Lakeland -N Lakeshore -N Lakeside -N Lakeview -N Lakewood -N Lama -N Lamon -N Lancaster -N Landau -N Landers -N Langley -N Lansing -N Laporte -N Laramie -N Larch -N Larkspur -N Larned -N Larrabee -N Larrimore -N Las Casas -N Lasalle -N Latham -N Latrobe -N Laurel -N Laurine -N Lavergne -N Lawler -N Lawn -N Lawndale -N Lawrence -N Le Mai -N Leader -N Leamington -N Leavenworth -N Leavitt -N Lebanon -N Leclaire -N Lee -N Legett -N Legion -N Lehigh -N Leibert -N Leisure World -N Lemai -N Lemon -N Lemont -N Lenhome -N Lenore -N Lenox -N Lenwood -N Leona -N Leonard -N Leoti -N Lerisa -N Leroy -N Lester -N Leswing -N Lewis -N Lexington -N Lexow -N Liano -N Liberty -N Lieb -N Lightfoot -N Lilac -N Lillian -N Lincoln -N Lincolnway -N Lind -N Linda -N Linden -N Linder -N Linwood -N Lister -N Little Falls -N Littleton -N Livermore -N Liverpool -N Livingston -N Lochleven -N Locke -N Lockwood -N Locust -N Loleta -N Lombard -N Lombardy -N London -N Long -N Long Beach -N Long Cove -N Long Meadows -N Longcross -N Longfellow -N Longmeadow -N Longview -N Longwood -N Lookout Pointe -N Loomis -N Loop -N Lorang -N Lorcom -N Lord -N Lorel -N Loring -N Loron -N Lotus -N Loucks -N Louis -N Louise -N Lovejoy -N Lowell -N Lucerne -N Ludlam -N Luella -N Lullo -N Luna -N Lund -N Lundy -N Luther -N Lyle -N Lynch -N Lynn -N Lytle -N Macarthur -N Mack -N Mackubin -N Madison -N Magazine -N Magnet -N Magnolia -N Magoun -N Maid Marion -N Maidstone -N Main -N Major -N Malden -N Mall -N Mallard -N Mallory -N Manchester -N Mandell -N Mango -N Manhattan -N Manila -N Mankato -N Manor -N Mansards -N Mansfield -N Mansion -N Manton -N Maple -N Maplewood -N Marcey -N Maria -N Marilyn -N Marine -N Marion -N Market -N Markham -N Marmora -N Marsha -N Marshfield -N Martha -N Martha Lake -N Martin -N Martine -N Martling -N Marybrook -N Maryknoll -N Maryland -N Marywood -N Mason -N Massasoit -N Matteson -N Matthews -N Maud -N Mavis -N May -N Mayfield -N Mayflower -N Maywood -N Mc Clellan -N Mc Cook -N Mc Crea -N Mc Lean -N Mc Leod -N Mc Vicker -N McAlpin -N McCarron -N McKinley -N McKnight -N McLean -N McLindon -N McVicker -N Meacham -N Meade -N Meadow -N Meadow Lake -N Meadowbrook -N Medford -N Medina -N Melody -N Melrose -N Melvina -N Menard -N Mendell -N Mendota -N Menominee -N Mercer -N Merchants -N Meredith -N Meridian -N Merrill -N Merrimac -N Mesa -N Miami -N Michigan -N Middle -N Middleton -N Middletown -N Midfield -N Midland -N Midlothian -N Midmar -N Mildred -N Military -N Mill -N Mill Creek -N Millpage -N Miltmore -N Milton -N Milwaukee -N Mineral Springs -N Minnehaha -N Minnetonka -N Minnisink -N Minntonka -N Mississippi -N Mississippi River -N Mitchell -N Mobile -N Moetz -N Mohawk -N Moki -N Monitor -N Monroe -N Mont Clare -N Montague -N Montana -N Montclair -N Montclare -N Monterey -N Montgomery -N Monticello -N Moody -N Moore -N Moorman -N Moreland -N Morey -N Morgan -N Morris -N Morrison -N Mortimer -N Moselle -N Mound -N Mountain -N Mozart -N Muirfield -N Mulligan -N Munn -N Mura -N Murray -N Myrtle -N Nagle -N Nancy -N Naper -N Naperville Wheaton -N Naples -N Napoleon -N Narragansett -N Nash -N Nashotah -N Nashville -N Nassau -N Natchez -N National -N Natoma -N Navajo -N Navarre -N Naylor -N Neenah -N Nelly Custis -N Nelson -N Neltnor -N Neola -N Nettleton -N Neva -N New Britton -N New England -N New Hampshire -N New York -N Newark -N Newbridge -N Newburg -N Newcastle -N Newgard -N Newland -N Newport -N Niagara -N Niagra -N Niami -N Nicholas -N Nichols -N Nickerson -N Nicolet -N Nina -N Nixon -N Noble -N Nokomis -N Nolton -N Nora -N Nordica -N Norman -N Normandy -N North Branch -N North Park -N Northampton -N Northbridge -N Northcott -N Northwest -N Norton -N Norwood -N Nottingham -N Noyes -N Nybro -N Oak -N Oak Beach -N Oak Hill -N Oak Hills -N Oak Knoll -N Oak Park -N Oakhurst -N Oakland -N Oaklawn -N Oakley -N Oakmont -N Oakview -N Oakwood -N Obrien -N Ocean -N Oceanside -N Oconto -N Octavia -N Ode -N Odell -N Ogden -N Ohio -N Oketo -N Olcott -N Old Barrington -N Old Bridge -N Old Creek -N Old Dominion -N Old Farm -N Old Hicks -N Old Mill -N Old Rand -N Old School -N Old Wick -N Oleander -N Oliphant -N Olive -N Olmsted -N Oltendorf -N Olympia -N Onarga -N Oneida -N Ontario -N Opal -N Orange -N Orchard -N Oriole -N Orleans -N Osage -N Osceola -N Oshkosh -N Oswego -N Otsego -N Ott -N Ottawa -N Overhill -N Overlook -N Owen -N Owens -N Oxford -N Ozanam -N Ozark -N Pacific -N Page -N Panama -N Paris -N Park -N Parke -N Parker -N Parkside -N Pascal -N Passaic -N Patrick -N Patrick Henry -N Patton -N Paulina -N Pawnee -N Paxton -N Payne -N Peach -N Peachtree -N Pearl -N Peary -N Peck -N Pecos -N Pegram -N Pelham -N Pembroke -N Penfield -N Pennington -N Pennsylvania -N Penny -N Peoria -N Peotone -N Pequanneck -N Perkins -N Pershing -N Pet -N Peyton -N Pfingsten -N Pheasant -N Phelps -N Pickett -N Piedmont -N Pierce -N Pierre -N Pima -N Pine -N Pine Grove -N Pinecrest -N Pinehurst -N Pinetree -N Pioneer -N Pipe Mill -N Pitt -N Pittsburgh -N Plainfield -N Plandome -N Plantation -N Pleasant -N Plum Grove -N Plumwood -N Plymouth -N Pocomoke -N Pocono -N Poe -N Point -N Pollard -N Ponchartrain -N Pond -N Pond Shore -N Pondview -N Pontiac -N Poplar -N Porchuck -N Porter -N Potawatomie -N Potomac -N Powhatan -N Prague -N Praire -N Prairie -N Prater -N Prescott -N President -N Preston -N Prestwick -N Prince Crossing -N Prince Frederick -N Prindle -N Prior -N Prologis -N Prospect -N Prospect Manor -N Prosperity -N Pryor -N Pulaski -N Putnam -N Quaker -N Quantico -N Quarry -N Quebec -N Queen -N Queens -N Quesada -N Quincy -N Quinn -N Quintana -N Race -N Racine -N Raddant -N Radford -N Railroad -N Rainbow -N Raleigh -N Ramapo -N Rammer -N Ramona -N Rand -N Randall -N Randolph -N Randolphville -N Raven -N Ravenswood -N Ravine -N Raymond -N Raynor -N Recreation -N Red Coat -N Reform -N Regency -N Regent -N Rensselaer -N Reserve -N Reta -N Retford -N Reuter -N Reynolds -N Rhett -N Rhodes -N Richmond -N Ridge -N Ridgeland -N Ridgemoor -N Ridgeview -N Ridgeway -N Ridgewood -N Ripley -N River -N Rivershore -N Riverside -N Riverview -N Riverwoods -N Riviera -N Rivoli -N Robert -N Robert Damm -N Roberta -N Roberts -N Robin -N Robinson -N Rochester -N Rock Cove -N Rock Spring -N Rockingham -N Rockledge -N Rockwell -N Rocky Top -N Rocky Wood -N Rogers -N Rohallion -N Rohde -N Rohlwing -N Roland -N Rolfe -N Rondeau Lake -N Roosevelt -N Root -N Rose -N Rosedale -N Roselle -N Rosemary -N Rosetree -N Rosewell -N Rossell -N Rosser -N Rosslyn -N Rowling -N Roy -N Royal -N Royal Oaks -N Rumple -N Rush -N Russell -N Ruth -N Rutherford -N Ryde -N Sacramento -N Saddle Brook -N Saddlebrook -N Saint Asaph -N Saint Marys -N Salem -N Salk -N Salt Creek -N Sandra -N Sangamon -N Santee -N Sapphire -N Saratoga -N Sauganash -N Sawyer -N Sayre -N Scherer -N Schletti -N Schmidt -N Schoenbeck -N School -N Schrader -N Schultz -N Schuneman -N Scotch Plains -N Scott -N Scoville -N Sedgwick -N Seebert -N Seeley -N Seminary -N Seminole -N Serven -N Service -N Seymour -N Shaddle -N Shady Oaks -N Shagbark -N Shelby -N Sheldon -N Shelley -N Shenandoah -N Sheridan -N Sherman -N Shermer -N Sherwood -N Shore -N Sibley -N Silver -N Silverlake -N Simonds -N Simpson -N Sioux -N Skokie -N Skyline -N Sleight -N Sloan -N Smith -N Smythe -N Snelling -N Snuff Valley -N Somerset -N Sott -N Sound Beach -N South Elgin -N South Park -N Southport -N Southwood -N Spaulding -N Spencer -N Spokane -N Spring -N Spring Garden -N Springfield -N Springinsguth -N Springwood -N Spruce -N Suffolk -N Summit -N Sumner -N Sunset -N Suthers -N Sutton Lake -N Swift -N Sycamore -N Sylvan -N Sylvander -N Sylvester -N Syndicate -N Syracuse -N Tabler -N Tacoma -N Tahoma -N Talcott -N Tall Oaks -N Talmadge -N Talman -N Tamarack -N Tappan Landing -N Tatge -N Taylor -N Temperance -N Terrace -N Terramere -N Terre -N Terrill -N Thatcher -N Thomas -N Thompson -N Thorndale -N Thorsen -N Throop -N Tippecanoe -N Tonty -N Topanga -N Toronto -N Tower -N Tracy -N Tree -N Trenton -N Trinidad -N Tripp -N Trivett -N Troop -N Troy -N True -N Trumbull -N Tuckahoe -N Turf Hill -N Turtle Bay -N Tyler -N Tyson -N Uhle -N Underwood -N Union -N University -N Upland -N Upshur -N Upton -N Utah -N Utica -N Vacation -N Vail -N Valley -N Van Brunt -N Van Buren -N Van Dien -N Van Dorn -N Van Dyke -N Van Nortwick -N Vance -N Vanderburg -N Vanderpool -N Varner -N Veitch -N Venable -N Venice -N Ventura -N Veprek -N Verde -N Vermillion -N Vermont -N Vernon -N Verrill -N Vest -N Victoria -N View -N Vigo -N Villa -N Village -N Vine -N Violet -N Virginia -N Vista -N Vivyen -N Wabash -N Wabasso -N Wacouta -N Wade -N Wagner -N Waiola -N Wakefield -N Walden -N Waldinger -N Walkup -N Waller -N Walnut -N Walsh -N Wantagh -N Ward -N Warner -N Warren -N Warrick -N Warrington -N Warwick -N Washington -N Washtenaw -N Wasson -N Watchung -N Water -N Waterford -N Waterman -N Waters Edge -N Waukegan -N Waukesha -N Waveland -N Wayne -N Wayzata -N Wear -N Weatherstone -N Webster -N Wedgewood -N Weed -N Weide -N Weigel -N Weiland -N Wellington -N Wells -N Wellwood -N Werden -N Wespark -N West -N West Brook -N Westchester -N Western -N Westgate -N Westland -N Westlawn -N Westminster -N Westmore -N Westmoreland -N Weston -N Westward Ho -N Westwood -N Wheaton -N Wheeler -N Wheeling -N Whipple -N Whispering Hills -N Whitcomb -N White -N White Pine -N Whitman -N Wicker Park -N Wickom -N Widgeon -N Wieland -N Wiggs -N Wilder -N Wildrose -N Wildwood -N Wiley -N Wilke -N Will -N Willard -N Wille -N William -N Williams -N Williams Park -N Williamsburg -N Willis -N Williston -N Willow -N Wilmette -N Wilmot -N Wilshire -N Wilson -N Wilton -N Winchester -N Windell -N Windham -N Windhorst -N Winding -N Windsor -N Winfield -N Winifred -N Winnebago -N Winston -N Winter -N Winthrop -N Wisconsin -N Wisner -N Wolcott -N Wolf -N Wood -N Woodard -N Woodbine -N Woodbridge -N Wooddale -N Woodgate -N Woodhull -N Woodland -N Woodlawn -N Woodley -N Woodrow -N Woodside -N Woodstock -N Woodward -N Woodwork -N Worth -N Wright -N Wulff -N Wyndwood -N Wynstone -N Wyoming -N Yale -N York -N Young -N Youngs -N Yucatan -N Zoranne -N du Bois -N la Crosse -N la Londe -N. Irving -N. Oak -N. Oliver -N. School -N. Whisman -NASA -NE Allen -NE Arthur -NE Benjamin -NE Buchanan -NE Circle -NE Cleveland -NE Columbia -NE Garfield -NE Grand -NE Greens Crossing -NE Hayes -NE Highland -NE Holcomb -NE Hollywood -NE Howard -NE Industrial -NE Jackson -NE Jambor -NE Lincoln -NE Madison -NE Main -NE Odell -NE Ohland -NE Pierce -NE Plaza -NE Polk -NE Roosevelt -NE Taft -NE Taylor -NE Tyler -NE Ulysses -NE University -NE Van Buren -NE Wilson -NW Centennial -NW Circle -NW Diagonal -NW Frontage -NW Holcomb -NW Walker -NY Orphan AYM -Na Wa Ta -Nab -Nabbot -Nabbott -Nabbs Creek -Nabiac -Nabnasset -Nabor -Nabscot Brook -Naburn -Nace -Nacona -Nacy Lee -Nada -Nadeau -Nadel -Naden -Nadia -Nadin -Nadina -Nadine -Nadotti -Nagareda -Nagel -Nagle -Naglee -Nagog -Nagog Hill -Nags Head -Nagy -Nahant -Nahanton -Nahatan -Nahmens -Nahua -Naida -Naify -Nails -Nairana -Nairdwood -Nairn -Naisby -Naismith -Najm -Najoles -Nalders -Naldretts -Nalisty -Nall -Nallada -Nalley -Nallhead -Nalls -Nalya -Namakagan -Namassin -Namba -Nambour -Nambucca -Namdac -Namdre -Namekagon -Nameoke -Namitjira -Namleps -Namoi -Namona -Nampeyo -Namsan -Namton -Namur -Nan -Nan King -Nan Mill -Nan Nook -Nan Tucks -Nana -Nana Glen -Nana Russell -Nanak -Nanapashamet -Nanbaree -Nancarles -Nancarrow -Nance -Nancemond -Nancia -Nancy -Nancy Ann -Nancy Vallera -Nancye -Nandell -Nandi -Nandina -Nanepashemet -Nanette -Nangana -Nangar -Nangreave -Nangreaves -Nanita -Nankin -Nanlee -Nann -Nanna -Nannet -Nanny Goat -Nanong -Nanowie -Nansen -Nanset -Nansmoss -Nant -Nantasket -Nantes -Nanti -Nanticoke -Nantucket -Nantwich -Nantwick -Nanuet -Naoi -Naoma -Naomi -Naomi Cochran -Naoroji -Napa -Napa Nook -Napa River -Napa Valley -Napa Valley Corporate -Napco -Naper -Naperville -Napier -Naple -Naples -Napleton -Napolean -Napoleon -Napoli -Napper -Nappsbury -Napsbury -Narada -Naranga -Naranganah -Naranghi -Naranja -Narbeth -Narbonne -Narborough -Narbuth -Narcissius -Narcissus -Narcot -Nardango -Nardell -Nardi -Nardis -Nardone -Nardoo -Nare -Nareb -Naree -Narellan -Narelle -Nares -Naretha -Narford -Nargong -Nariel -Narla -Narland -Naro -Naromake -Naroo -Narooma -Narrabeen -Narrabri -Narraganset -Narragansett -Narray -Narromine -Narromore -Narrow -Narrowbush -Narrowleaf -Narrows -Narumson -Narumsunk -Narvaez -Narvick -Narvik -Narwee -Narwood -Nascoby -Nascot -Nascot Wood -Naseby -Nash -Nash Lee -Nash Memorial -Nash Mills -Nasha Way -Nashawtuc -Nashdom -Nashenden -Nashenden Farm -Nashgrove -Nashoba -Nashua -Nashville -Nasmyth -Nason -Nason Hill -Nasonville -Nasreen -Nassau -Nassau Terminal -Nasse -Nassington -Nast -Nasturtium -Nata -Natahala -Natal -Natalie -Natalie Joy -Natalye -Nataqua -Natasha -Natchez -Nate Nutting -Natelli Woods -Nately -Nathalee -Nathalie -Nathan -Nathan Hale -Nathaniel -Nathaniel Guild -Nathaniel Oaks -Nathans -Nathanson -Nathanson Creek -Nathelle -Nathhorst -Nathorst -Natia Manor -Natick -Natick Mall -National -National Business -National Harbor -National Park -Nations -Nationville -Native Dancer -Native Oak -Native Rocks -Native Sons -Natividad -Natoma -Natomas -Natomas Central -Natomas Crossing -Natomas Park -Natta -Nattai -Nattinger -Natuna -Natural Bridges -Natural History -Nature -Nature Center -Nature View -Nature Walk -Natures -Natwick -Naugatuck -Naughton -Naugle -Naugler -Naugus -Naumkeag -Naunton -Nausbaumer -Nauset -Naushon -Nausin -Nautical -Nautilus -Nauvoo -Navaho -Navaho Trail -Navahoe -Navajo -Naval -Navarino -Navarone -Navarra -Navarre -Navarro -Nave -Navel -Navellier -Navenby -Navesink -Navesink River -Naviens -Navigation -Navigator -Navillus -Navins -Navion -Navone -Navy -Navy Day -Navy Yard -Nawadaha -Nawakwa -Nawatam -Nawthorne -Nay -Naying -Nayland -Nayling -Naylon -Naylor -Nazarene -Nazeing -Nazeing New -Nazeing Old -Nazielle -Nazing -Nazrul -Nea -Neabsco -Neabsco Mills -Neagle -Neal -Neal Dow -Neal Gate -Nealden -Neale -Nealley -Nealon -Neals -Neals Hollow -Nealy -Neame -Neaptide -Near Mountain -Near Mtn -Nearbrook -Nearcroft -Nearmaker -Nearwater -Neary -Neasden -Neasham -Neate -Neath -Neatham Mill -Neatscourt -Neb -Nebel -Nebo -Nebraska -Nebrentwood -Nebula -Necco -Neck -Neck Hill -Neckar -Neckinger -Necropolis -Nectar -Nectarbrook -Nectarine -Necton -Necturine -Ned -Nedderson -Neddleton -Nedellec -Nedley -Nedra -Neds -Nedshire -Needes -Needham -Needham Green -Needham Landing -Needhamdale -Needle -Needle Leaf -Needleleaf -Needleman -Needles -Needless Inn -Needlewood -Needwood -Needwood Lake -Neef -Neel -Neelen -Neeley -Neelon -Neelsville Church -Neely -Neenah -Neer -Neerim -Neerwinder -Nees -Neeser -Neet -Neeta -Neeworra -Neff -Negaune -Negundo -Nehemiah -Nehf -Nehoiden -Nehring -Neid -Neider -Neighbor -Neighborhood -Neighbors -Neihart -Neil -Neil Armstrong -Neild -Neilis -Neill -Neill Lake -Neillian -Neills -Neilsen -Neilson -Neilwood -Neimann -Neirbo -Neiss -Neitzel -Nekoma -Nel Pan -Nela -Nelda -Nelden -Nelgarde -Nelkin -Nell -Nell Gwynn -Nell Gwynne -Nella -Nella Dan -Nelldale -Nellella -Nellen -Nellgrove -Nellie -Nellie White -Nelligan -Nellington -Nellis -Nells -Nelly -Nelmark -Nelmes -Nelo -Nels -Nels Berglund -Nelsine -Nelson -Nelson Farm -Nelson Grove -Nelson Heights -Nelson Lake -Nelson Mandela -Nelson Park -Nelson Perrie -Nelson Point -Nelson Rising -Nelson Short -Nelstrop -Nelway -Nelwyn -Nemba -Nemec Knoll -Nemesia -Nemeth -Nemic -Nemitz -Nemoure -Nenagh -Nene -Nenninger -Neola -Neosho -Neotomas -Nepaul -Nepawin -Nepean -Nepean Towers -Nepenthe -Neperan -Nephi -Nepicar -Nepil -Nepo -Neponset -Neponset Heights -Neponset Valley -Neponsit -Nepperhan -Nepshaw -Nepton -Neptune -Neptune Gardens -Nequa -Neranda -Nerang -Nerbonne -Nerdy -Nereid -Nerida -Neridah -Neringa -Nerious -Nerli -Nern -Nero -Neroly -Nertherne -Nesaquake -Nesbit -Nesbitt -Nesconset -Nesfield -Neshobe -Nesler -Neslite -Nesmith -Ness -Nessralla -Nesta -Nester -Nestlewood -Nestlewood Farm -Neston -Nestor -Nestora -Nestro -Nether -Nether Hey -Netheravon -Netherbury -Netherby -Nethercliffe Hall -Nethercote -Nethercourt -Nethercroft -Netherdale -Netherend -Netherfield -Netherford -Netherhall -Netherhouse -Netherland -Netherlands -Netherley -Nethermont -Nethern Court -Netherne -Netherpark -Netherton -Netherwood -Netley -Netta -Netteswell -Netties -Nettle -Nettlebarn -Nettleden -Nettlepole -Nettlestead -Nettleton -Nettlewood -Netto -Network -Neuberry Ridge -Neubert -Neubourg -Neuchatel -Neuenschwander -Neufairfield -Neugebauer -Neuharth -Neulist -Neumaier -Neuman -Neumann -Neuner -Neustoneshire -Neuton -Neutral -Neuville -Neva -Nevada -Nevells -Nevendon -Nevern -Neves -Nevil -Nevill -Neville -Neville Duke -Neville Grove Church -Nevin -Nevins -Nevis -Nevius -Nevsky -Nevy Fold -New -New Abbey -New Acadia -New Ackertown -New Adel -New Albany -New Allen -New Ascot -New Bailey -New Balch -New Bank -New Banner -New Barge Pier -New Barn -New Barn Farm -New Barns -New Barton -New Battlebridge -New Beach -New Bedford -New Beech -New Berry -New Bond -New Boston -New Braddock -New Brent -New Briar -New Bridge -New Brier -New Bright -New Brighton -New Brighton Service -New Britton -New Broad -New Brook -New Brooklyn -New Brunswick -New Burlington -New Butt -New Canterbury -New Carson -New Castle -New Castor -New Cathedral -New Century -New Change Cannon -New Chapel -New Chardon -New Charles -New Church -New City -New Clark -New Coach -New Cold Mill -New Commons -New Compton -New Country -New County -New Court -New Creek -New Cross -New Cut -New Cypher -New Dairy -New Dawn -New Derby -New Design -New Devon -New Disney -New Dobbel -New Dock -New Dominion -New Dorp -New Dover -New Dunne -New Durham -New Dutch -New Earth -New Elm -New Emerald -New England -New England Village -New England Woods -New Era -New Estate -New Fairview -New Farm -New Fisher -New Fitchburg -New Fletcher -New Ford -New Forest -New Foster -New Fox Hill -New Freetown -New Front -New Garden -New Gardens -New Garrison -New Gateway -New George -New Goulston -New Greens -New Guinea -New Hall -New Hall Farm -New Hampshire -New Harbor -New Harter -New Haven -New Haven RR -New Haw -New Heath -New Heckman -New Helvetia -New Herbert -New Hewy -New Hey -New High -New Holder -New Holland -New Home -New Hook Access -New Hope -New Horizon -New Horizons -New Horwich -New House -New House Farm -New Hyde Park -New Hythe -New Illawarra -New Industrial -New Inn -New Ipswich -New Jefferson -New Jersey -New Jersey Railroad -New Kelvin -New Kent -New Kiln -New King -New Lake -New Lancaster -New Lawn -New Lebanon -New Lenox -New Liberty -New Line -New Line Carr Bottom -New Line Elder -New Line Redcar -New Line near Albion -New Lodge -New London -New Lots -New Lydenburg -New Main -New Malden High -New Manchester -New Maple -New Market -New Mathews -New Mayfield -New McLean -New McNeil -New Mead -New Meadow -New Meadows -New Mexico -New Mile -New Milford -New Mill -New Mills -New Minton -New Monmouth -New Montgomery -New Moor -New Moorhead -New Mount -New North -New North Rocks -New Northern -New Oak -New Occupation -New Ocean -New Odiham -New Old Bridge -New Orchard -New Orleans -New Oxford -New Park -New Parkland -New Peachey -New Pittsburg -New Place -New Plaistow -New Point -New Pond -New Port -New Prague -New Princess -New Providence -New Quay -New Quebec -New Radcliffe -New Read -New Rectory -New Ridge -New Riggs -New River -New Rochelle -New Row -New Royd -New Rutherford -New Salem -New Saw Mill River -New Schley -New School -New Solomoms Island -New South -New South Head -New Spaulding -New Sudbury -New Sudlersville -New Sutton -New Tank -New Tank Hill -New Terrace -New Town -New Towne -New Tradition -New Trier -New Trinity -New Union -New Utrecht -New Utrecth -New Vernon -New Viaduct -New Village -New Vine -New Vista -New Wakefield -New Walnut -New Warrington -New Washington -New Water -New Waugh Chapel -New Waverley -New Way -New Welcome -New West Townsend -New Wharf -New Wickham -New Wilke -New Willow -New Wilmot -New Windsor -New Wokingham -New Woods -New World -New Writtle -New Wye -New Years -New York -New Zealand -New lands -Newacre -Newacres -Newall -Newalls -Newand -Newanga -Newark -Newark Broad -Newarth -Newasa -Newbank -Newbarn -Newberm -Newbern -Newberne -Newberries -Newberry -Newbert -Newbery -Newbiggen -Newbold -Newbolt -Newborough -Newboult -Newbreak -Newbridge -Newbrook -Newburg -Newburgh -Newburn -Newbury -Newby -Newby Bridge -Newcastle -Newcastle Coal Creek -Newcastle Gap -Newcastle Golf Club -Newchapel -Newchurch -Newcliffe -Newcomb -Newcombe -Newcombs -Newcome -Newcomen -Newcompton -Newcourt -Newcroft -Newcrossing -Newcut -Newdale -Newdene -Newdigate -Newearth -Newel -Newell -Newell Creek -Newell Hill -Newells -Newenden -Newenham -Newey -Newfield -Newfields -Newfoundland -Newgate -Newgatestreet -Newglen -Newground -Newhall -Newham -Newham Hospital Glen -Newham Way Colman -Newhaven -Newhey -Newhill -Newhouse -Newick -Newington -Newington Commons -Newington Forest -Newington Green -Newington Woods -Newitt -Newkirk -Newkirt -Newlaithes -Newland -Newland Green -Newlander -Newlands -Newlands Farm -Newlay -Newlay Wood -Newley -Newlyn -Newmain -Newman -Newman Hill -Newman Springs -Newmans -Newmarch -Newmark -Newmarket -Newmarsh -Newmer -Newminster -Newmont -Newnham -Newood -Newpasture -Newport -Newport Cove -Newport Mill -Newpots -Newpound -Newquay -Newry -News -News Direct -News Lees -Newsam -Newsham -Newshaw -Newsholme -Newsom -Newsome -Newstead -Newteswell -Newton -Newton Abbot -Newton Falls -Newton Hall -Newton Lodge -Newton Park -Newton Patent -Newton Wood -Newtonville -Newtown -Newtowne -Newvale -Newvalley Church -Newville -Newyears Green -Next Day Hill -Ney -Nez Perce -Niagara -Niagara Falls -Niagra -Niantic -Niara -Nibbe -Niblick -Niblo -Nibshaw -Nibthwaite -Nicanoa -Nicasio Creek -Nicasio Valley -Nicastro -Nice -Nichandros -Nichol -Nicholai -Nicholas -Nicholas Run -Nicholay -Nichold -Nichole -Nicholes -Nicholi -Nicholl -Nicholls -Nichols -Nicholsen -Nicholson -Nicholsons -Nicholsridge -Nick -Nickel -Nickelson -Nickerson -Nicklaus -Nickle Plate -Nickleby -Nickles -Nickleson -Nickley Wood -Nickolas -Nickolsen -Nicks Rock -Nickson -Nicky -Nicobar -Nicod -Nicol -Nicola -Nicolai -Nicolar -Nicole -Nicolet -Nicoletta -Nicolette -Nicolini -Nicoll -Nicollet -Nicolls -Nicolosi -Nicols -Nicolson -Nicora -Nicosia -Nicrobia -Nider -Nido -Nidva -Niebaum -Niederwald -Niehaus -Nield -Nields -Nielsen -Nielson -Nieman -Niemann -Niemela -Niemeyer -Niestrath -Nieves -Nigel -Nigel Playfair -Nigeria -Nigh -Nigher Moss -Night Shade -Nightengale -Nightfall -Nighthawk -Nightingale -Nightingale Farm -Nightingale Hall -Nightside -Nightsong -Nightwatch -Niguel -Nijong -Nike -Nike Manor -Niki -Nikisch -Nikki -Nikkie -Nikol -Niland -Nilda -Nile -Niles -Niles Center -Nill -Nillera -Nilsen -Nilson -Nilsson -Nimbey -Nimbin -Nimbrin -Nimbus -Nimco -Nimitz -Nimmo -Nimoola -Nimrick -Nimrod -Nims -Nina -Nina Grey -Nine Acre -Nine Acres -Nine Ashes -Nine Elms -Nine Mile Creek -Ninehams -Ninelands -Nineteenth -Nineteeth -Ninevah -Ninevan -Nineveh -Ninfa -Ninfantino -Ninfield -Ninian -Ninive -Ninn -Ninnings -Ninnis -Nino -Ninth -Niobe -Niobrara -Nioka -Nipawaton -Nipigon -Nipmuc -Nipmuck -Nipowin -Nipper -Nippert -Nippon -Nira -Nircana -Nire -Nirimba -Nirvana -Nisbet -Nish -Nishia -Nishida -Nishuane -Nisich -Nisperos -Nisqually -Nissen -Nissitissit -Nisson -Niswender -Nita -Nithdale -Nithila -Nithsdale -Niton -Nittany -Niven -Nivens -Nix -Nixon -Nizam -Nizels -Nizoni -No Name -No Name Uno -Noah -Noahs Ark -Noak Hill North Hill -Noake Mill -Noakes -Noanet -Noanet Brook -Noanett -Nob -Nob Hill -Nobbs -Nobby -Nobehar -Nobel -Nobel Crest -Nobes -Nobhill -Nobi -Nobile -Nobili -Noble -Noble Fir -Noble Hill -Noble Oak -Noble Rock -Noble Tree -Noble Victory -Nobles Green -Noblestown -Noblewood -Nobscot -Nobu -Noce -Noche Vista -Nock -Nockege -Nockolds -Nodaway -Nodd -Noddin -Nodes -Nodine -Noe -Noel -Noel Park -Noelene -Noeline -Noell -Noemi -Nogal -Nogales -Nohea -Noia -Noid -Noke -Nokes -Nokesville -Nokomis -Nola -Nolan -Nolan Farm -Noland -Nolands Ferry -Nolans -Nolberry -Nolcrest -Nolden -Nolen -Nolet -Nolfield -Nolheight -Nolin -Noll -Nollet -Nolpark -Nolte -Nolting -Noltland Castle -Nolton -Nomad -Nomahegan -Nome -Nomini -Nomis -Nommsen -Nona -Nonantum -Nondorf -Nonesuch -Nonie -Nonington -Nonnie -Nonquit -Nonquitt -Nonset -Nonsuch Court -Nooal -Nook -Noolinga -Noon -Noon Hill -Noonan -Noonan Ranch -Noonans -Noor -Noora -Noorang -Nootka -Nora -Norah -Norair -Noranda -Norba -Norbar -Norbay -Norbeck -Norbeck Square -Norbert -Norbiton -Norbiton Common -Norbreck -Norbridge -Norbrik -Norbroke -Norbrook -Norburn -Norburt -Norbury -Norbury Court -Norbury Hollow -Norcia -Norcliff -Norcot -Norcott -Norcott Farm -Norcrest -Norcroft -Norcross -Norcutt -Nord -Nord Cir -Nordale -Nordek -Nordell -Norden -Nordens -Nordham -Nordhoff -Nordic -Nordic Hill -Nordica -Nordland -Nordlie -Nordling -Nordstrom -Nordyke -Nore -Noreen -Norelius -Norelle -Noren -Nores -Noreuil -Norex -Norfeld -Norfen -Norfield -Norflex -Norfolf -Norfolk -Norfolk Farm -Norfolk House -Norfolk Pine -Norfork -Norgate -Norge -Norgren -Norgrove -Norham -Norhead -Norhyrst -Noria -Norias -Noric -Norich -Noriega -Noriker -Norine -Norlan -Norland -Norlands -Norlee -Norley -Norlinda -Norlington -Norlyn -Norma -Normac -Normal -Normal Hill -Normal School -Normalee -Norman -Norman Center -Norman May -Norman Ridge -Norman Rockwell -Norman Smith -Norman Todd -Normanby -Normand -Normandale -Normandale Highlands -Normandale Lake -Normandie -Normandie Farm -Normandy -Normandy Common -Normandy Crossing -Normandy Heights -Normandy Hill -Normandy Square -Normandy Woods -Normanhurst -Normans -Normansfield -Normanshire -Normanshurst -Normanstead -Normanstone -Normanton -Normantown -Normington -Normon -Normoor -Normurra -Noroton -Norpak -Norrback -Norrbom -Norrels -Norreys -Norridge -Norrie -Norrington -Norris -Norris Canyon -Norris Hill -Norristhorpe -Norroway -Norroy -Norrys -Norse -Norseman -Norsey -Norsey View -Norsham -Norshon -Norsid -Norside -Norstad -Norstead -Norte -Nortech -North -North Abbott -North Abel -North Aberdeen -North Access -North Adams -North Addison -North Airport -North Airway -North Akron -North Alamo -North Albany -North Alder -North Almaden -North Almenar -North Almond -North Alta -North Alvin -North Amelia -North Ames -North Amphlett -North Anderson -North Andover -North Antelope -North Arbour -North Argonne -North Arlington -North Arm -North Ascot -North Ash -North Ashland -North Ashley -North Aspen -North Auburn -North Audley -North Augusta -North Autumn -North Avalon -North Avondale -North B -North Bank -North Barnaby -North Bascom -North Bassett -North Batavia -North Bay -North Bayard -North Bayfield -North Baylor -North Bayou -North Bayshore -North Bayview -North Baywood -North Beacon -North Beeches -North Belcher -North Belfort -North Belgian -North Bella Monte -North Belmont -North Bend -North Benfleet Hall -North Bennet -North Benton -North Bernardo -North Betty -North Beulah -North Big Tree -North Big Trees Park -North Bigelow -North Billerica -North Birkbeck -North Blackfield -North Blaney -North Border -North Boundary -North Bow -North Bowditch -North Bowmanville -North Bragg -North Branch -North Branciforte -North Brandon -North Breach -North Bridge View -North Brigham Hill -North Britton -North Broadgate Town -North Broadway -North Bronte -North Brook -North Brooks -North Bruce -North Brunswick -North Buckingham -North Burgher -North Burke Bradley -North Burling -North Butte -North Butts -North Byron -North C -North California -North Cambridge -North Camden -North Cameron -North Canal -North Cannon -North Canyon -North Capitol -North Carol -North Carolan -North Carolina -North Carpenter -North Carriage -North Cary -North Castle -North Castro -North Cathy -North Cedar -North Center -North Central -North Chanterella -North Chappell -North Chatsworth -North Cheam Priory -North Chesterbrook -North Chestnut -North Chicago -North Circle -North Circular -North Civic -North Claremont -North Clark -North Cleveland -North Clifden -North Clifdon -North Clifton -North Clinton -North Clover -North Cluff -North College -North Columbine -North Columbus -North Comfort -North Common -North Commonwealth -North Conduit -North Coral -North Corporate -North Cottage -North Cottonwood -North Countess -North Country -North Court -North Courtland -North Cove -North Cragmont -North Craig -North Cray -North Creek -North Crescent -North Crest -North Cross -North Croydon -North Crystal Springs -North Cumberland -North Cypress -North D -North Dakota -North Dale -North Dam -North Damen -North Daniels -North Danvers -North Davis Farms -North Dearborn -North Deer -North Delaware -North Desplaines -North Diameter -North Dike -North Dinwiddie -North Dogwood -North Douglas -North Downs -North Dublin Ranch -North Duke -North Dundalk -North Dunton -North Dutton -North Dwyer -North East -North East River -North Eastling -North Eastview -North Echo Lake -North Edge -North Edison -North El Dorado -North El Monte -North Ela -North Eldorado -North Ellsworth -North Elm -North Elmhurst -North Elmwood -North Emerald -North Emerson -North Emory -North End -North Escape -North Estates -North Esther -North Evergreen -North F -North F Bennett -North Fabian -North Fair -North Fair Oaks -North Fairfax Park -North Fairmont -North Falkland -North Falls -North Farm -North Federal -North Ferndale -North Field -North Filbert -North Fillmore -North Fine -North Fish Hatchery -North Fitch Mountain -North Flood -North Folly -North Foothill -North Forcum -North Forest -North Forest Edge -North Fork -North Fork Bennett -North Fort Myer -North Fosket -North Frances -North Frankford -North Franklin -North Freeway -North Fremont -North Front -North Frontage -North Fuel Break -North Funston -North Furry -North G -North Gadsden -North Gail -North Gannon -North Garfield -North Gary -North Gate -North Gates -North Geneva -North Genevieve -North George -North Gertrude -North Gilchrist -North Glebe -North Glenway -North Gogna -North Gold Ridge -North Golden Gate -North Golf Club -North Golfview -North Gower -North Graham -North Granada -North Grand -North Grange -North Granite Hills -North Grant -North Grantham -North Gratton -North Great -North Green -North Greenville -North Greenwood -North Grimes -North Grove -North Grove Hill -North Guard -North Guild -North Haddow -North Hall -North Halls -North Halsted -North Hamilton -North Hamlin -North Hammonds Ferry -North Hancock -North Hangar -North Harbor -North Harbour -North Harriette -North Harrison -North Harry S Truman -North Hart -North Hartley -North Harvard -North Hathaway -North Haven -North Head Scenic -North Heath -North Henry -North Hewitt -North Hickory -North Hicks -North High -North High Rock -North Highbrook -North Highland -North Hilary -North Hildebrand -North Hill -North Hills -North Hillside -North Hillview -North Hinkley -North Hobson -North Holden -North Holt -North Hooper -North Hope -North Hospital -North Hudson -North Hughes -North Humboldt -North Hump -North Hunter -North Huron -North Hutchins -North Hyde -North I -North Idaho -North Ijams -North Indian Boundary -North Inland -North Ione -North Irving -North Island -North Ithaca -North Jack Tone -North Jackson -North Jade -North Jean -North Jefferson -North Jersey -North John -North Johnson -North Jonathan -North K -North Keeble -North Kelly -North Kenmore -North Kennebeck -North Kennedy -North Kennefick -North Kennicott -North Kennison -North Kensico -North Kent -North Kern -North Kiefer -North Kind -North King -North Kingston -North Kirk -North Kitson -North Knoll -North Knollwood -North Knox -North Kolmar -North Krattley -North L -North LaSalle -North Laguna -North Lake -North Lake Shore -North Lakeview -North Lamb -North Lancaster -North Lansdale -North Larrabee -North Larwin -North Lassen -North Laughlin -North Laura Anne -North Laurel -North Leach -North Lear -North Lee -North Leigh -North Lemon -North Lenora -North Leonard -North Lewis Park -North Lexington -North Leyden -North Liberty -North Lillian -North Lincoln -North Linden -North Lingwell -North Linn -North Lively -North Livermore -North Liverpool -North Llewellyn -North Lloyd -North Lockewood -North Locust -North Locust Tree -North Lodge -North Logging -North Loma -North Lonsdale -North Loop -North Los Angeles -North Lucille -North Lycett -North Lydia -North Lynda -North Lynn -North M -North Mac Arthur -North Macarthur -North Mackville -North Mada -North Madeline -North Madison -North Maffei -North Magnolia -North Main -North Malden -North Mallard -North Manchester -North Manley -North Mannheim -North Manor -North Maple -North Marcia -North Margaret -North Margin -North Marine -North Marion -North Market -North Marlton -North Marston -North Marta -North Martingale -North Marwood -North Mary -North Mary Frances -North Mather -North Mathilda -North May -North Mayfair -North Mc Intire -North McCarthy -North McCracken -North McDonnell -North McDowell -North McKinley -North Meacham -North Mead -North Meadow -North Meadows -North Meath -North Merger -North Meridian -North Michael -North Michelle -North Michigan -North Micke Grove -North Miday -North Midland -North Midway -North Military -North Mill -North Mill Creek -North Mills -North Milpitas -North Milton -North Milwaukee -North Mines -North Minnesota -North Mitchell Canyon -North Mittel -North Monarch -North Monroe -North Montello -North Montgomery -North Moore -North Moray -North Morgan -North Morrison -North Mounds -North Mountain -North Mozart -North Munstead -North Murray -North Murrieta -North Myran -North N -North Napa -North Nassano -North Neeley -North New -North New Hope -North Newport -North Nichols -North Nolan -North Norfolk -North North Ripon -North O -North Oak -North Oak Knoll -North Oaks -North Oakwood -North Ocean -North Old Dominion -North Old Hicks -North Olive -North Olympic -North Opal -North Orange -North Orbital -North Orchard -North Oregon -North Orenda -North Orleans -North Oro -North Oxford -North P -North Pacific -North Pacific Av Fron -North Palm -North Palmer -North Parish -North Park -North Park Victoria -North Parkside -North Parkview -North Pastoria -North Patrick -North Patterson -North Patton -North Patuxent -North Payne -North Peak -North Peak Access -North Peardale -North Pearl -North Pearson -North Peatland -North Perimeter -North Perley -North Perryman -North Pershing -North Peter -North Pickett -North Pilgrim -North Pinasco -North Pine -North Pine Grove -North Pine Mountain -North Pinetree -North Pioneer -North Pippin -North Plaza -North Plum Grove -North Plymouth -North Podesta -North Point -North Point Creek -North Pole -North Polo -North Pond -North Pondside -North Pony -North Portal -North Portland -North Potato -North Providence -North Putnam -North Pythian -North Quebec -North Quentin -North Quincy -North Quinn -North Quinsigamond -North Railroad -North Rancho -North Rand -North Randall -North Randolph -North Ravenswood -North Ravine -North Ray -North Rebeiro -North Redwood -North Regatta -North Regent -North Rengstorff -North Rexhame -North Richmond -North Richmond Beach -North Richwood -North Ridge -North Ridge Vista -North Ridgeview -North Ridgewood -North Rio Blanco -North Rio Verde -North Ripley -North Ripon -North Ritz -North River -North Riverside -North Rixey -North Roberta -North Rochester -North Rockridge -North Rocks -North Rodeo Gulch -North Rohlwing -North Rond -North Roper -North Rose -North Rosemore -North Row -North Roy -North Ruff -North Russell -North Ryde -North S -North Sacramento -North Sage -North Salado -North Sally -North San Carlos -North San Joaquin -North San Jose -North San Mateo -North San Pedro -North San Rafael -North San Raymundo -North Sanguinetti -North Santa Cruz -North Scenic -North Schiller -North Schmale -North School -North Schubert -North Sedgwick -North Seminary -North Sequoia -North Serven -North Service -North Shannon -North Shasta -North Shaw -North Sheridan -North Sherman -North Sherwood -North Shetland -North Shoebury -North Shore -North Shoreline -North Sibley -North Side -North Sierra -North Sierra Madre -North Sierra Nevada -North Signal Hill -North Silver Chase -North Silverado -North Sinclair -North Slope -North Snyder -North Somerset -North South -North Sowles -North Spooner -North Spring Creek -North Springer -North Springfield -North Spruce -North Summit -North Sun -North Sunbury -North Sundown -North Sunnyside -North Sunnyvale -North Sunset -North Suttenfield -North Sutter -North Sycamore -North Sycamore Slough -North Taaffe -North Tantau -North Taylor -North Taylor Ranch -North Tazewell -North Temple -North Tenter -North Teria -North Tessier -North Texas -North Thatcher -North Thompson -North Thornton -North Tilden -North Tolman -North Totten -North Tower -North Town -North Tranquility -North Tretheway -North Truro -North Tulip -North Tully -North Tulsa -North Tuxedo -North Union -North Upland -North Upton -North Utah -North Vail -North Vale -North Valensin -North Valley -North Van Buren -North Van Dorn -North Van Horn -North Vancina -North Vasco -North Veach -North Ventura -North Vernal -North Vernon -North View -North Vignolo -North Village -North Vine -North Viola -North Virginia -North Visalia -North Wabash -North Wacker -North Wagner -North Wakefield -North Walker -North Wall -North Wallace -North Walnut -North Walnut Branch -North Walnut Grove -North Ward -North Warren -North Washington -North Water -North Watford -North Watkinson -North Watts -North Waukegan -North Webster -North Wells -North West -North West Arm -North West Hills -North West Main -North Westchester -North Western -North Westside -North Wharf -North Whisman -North White -North White Pine -North Wiget -North Wild Grape -North Wilke -North Willard -North William -North Williams -North Williamson -North Willow -North Wilma -North Wilton -North Winchester -North Windemere -North Windsor -North Winnifred -North Winston -North Winthrop -North Wisconsin -North Wolcott -North Wolf -North Wolfe -North Wood -North Wood Dale -North Woodford -North Woodrow -North Woods -North Woodstock -North Woolwich -North Worcester -North Wright -North York -North de Anza -North del Puerto -North el Camino -North el Circulo -North el Dorado -North el Macero -North la Cresenda -NorthField -Northall -Northallerton -Northam -Northampton -Northanger -Northanna -Northaven -Northbank -Northbay -Northboro -Northborough -Northbourne -Northbrae -Northbriar -Northbridge -Northbrook -Northbrook Court -Northbrooke -Northburgh -Northbury -Northchurch -Northcliff -Northcliffe -Northcoast -Northcoate -Northcombe -Northcote -Northcott -Northcourt -Northcreek -Northcrest -Northcroft -Northcross -Northdale -Northdene -Northdown -Northdowns -Northeast -Northeast Albertson -Northeast Alder -Northeast Alder Crest -Northeast Alderwood -Northeast Ambleside -Northeast Ames Lake -Northeast Anderson -Northeast Apple Cove -Northeast Arcade -Northeast Arness -Northeast Arrowhead -Northeast Avalon -Northeast Baker Hill -Northeast Beach Crest -Northeast Beachwood -Northeast Beadonhall -Northeast Beck -Northeast Belle Hill -Northeast Berry -Northeast Big Rock -Northeast Bill Point -Northeast Birch -Northeast Bird -Northeast Blackster -Northeast Blakeley -Northeast Boat -Northeast Brackenwood -Northeast Brooklyn -Northeast Brownell -Northeast Burns -Northeast Byron -Northeast California -Northeast Campus -Northeast Carpenter -Northeast Carriage -Northeast Casey -Northeast Cherry -Northeast Clare -Northeast Comegys -Northeast Coral -Northeast County Park -Northeast Coyote -Northeast Crescent -Northeast D -Northeast Daphne -Northeast Darby -Northeast Darden -Northeast Day -Northeast Delaney -Northeast Dingley -Northeast Discovery -Northeast Dogwood -Northeast Dorothy -Northeast Douglas -Northeast Eaton -Northeast Endicott -Northeast Erin -Northeast Evergreen -Northeast Ewing -Northeast Federal -Northeast Felicity -Northeast Fenton -Northeast Fir -Northeast Georgia -Northeast Gilman -Northeast Gisle -Northeast Glavin -Northeast Goodfellow -Northeast Gordon -Northeast Grizdale -Northeast Halls Hill -Northeast Hansen -Northeast Harris -Northeast Harrison -Northeast Hawthorne -Northeast Hidden Cove -Northeast High -Northeast High School -Northeast Hillside -Northeast Hilltop -Northeast Hollyhills -Northeast Huckleberry -Northeast Husky -Northeast Iris -Northeast Iverson -Northeast Jade -Northeast Jewell -Northeast John -Northeast Johnson -Northeast Jonquil -Northeast Joshua Tree -Northeast Juanita -Northeast Julep -Northeast Juniper -Northeast Karmenn -Northeast Katsura -Northeast Kelsey -Northeast Kenilworth -Northeast Kennedy -Northeast Kenwood -Northeast Keswick -Northeast Killian -Northeast Kitsap -Northeast Kiwi -Northeast Klabo -Northeast Knight -Northeast Koura -Northeast Lacey -Northeast Lafayette -Northeast Lake Joy -Northeast Larchmount -Northeast Laurel Wood -Northeast Laurelcrest -Northeast Leprechaun -Northeast Lofgren -Northeast Logan -Northeast Loughrey -Northeast Lovgren -Northeast Mabrey -Northeast Magnolia -Northeast Main -Northeast Maine -Northeast Manor -Northeast Maple -Northeast Marine View -Northeast Marion -Northeast Marketplace -Northeast Mary Lou -Northeast McRedmond -Northeast Meadowmeer -Northeast Meigs -Northeast Meyers -Northeast Michelle -Northeast Midway -Northeast Miller -Northeast Monroe -Northeast Monsaas -Northeast Morgan -Northeast Morning -Northeast Moses -Northeast Mulberry -Northeast Munson -Northeast Murden Cove -Northeast NOAA -Northeast Noble -Northeast Northstar -Northeast Norton -Northeast Ocean -Northeast Oddfellows -Northeast Ohio -Northeast Olive -Northeast Oregon -Northeast Pacific -Northeast Park -Northeast Paulanna -Northeast Penrith -Northeast Phillip -Northeast Pine -Northeast Point View -Northeast Points -Northeast Preston -Northeast Puget -Northeast Puget Bluff -Northeast Quail Creek -Northeast Raccoon -Northeast Radford -Northeast Rasperry -Northeast Ravenna -Northeast Redmond -Northeast Reny -Northeast Richardson -Northeast Ring -Northeast Roberts -Northeast Roney -Northeast Rotsten -Northeast Rupard -Northeast Sasquatch -Northeast Seaborn -Northeast Seaview -Northeast Shore -Northeast South Beach -Northeast South Villa -Northeast Sprayfalls -Northeast Springwood -Northeast Spruce -Northeast Sunrose -Northeast Sunset -Northeast Tani Creek -Northeast Theresa -Northeast Tolt Hill -Northeast Torvanger -Northeast Tulin -Northeast Union Hill -Northeast Valley -Northeast Victorian -Northeast Viewcrest -Northeast Virginia -Northeast Warabi -Northeast Wardwell -Northeast Watch Hill -Northeast White Horse -Northeast Wiggins -Northeast Windermere -Northeast Wing Point -Northeast Winthers -Northeast Woldmere -Northeast Wolmere -Northeast Woodinville -Northeast Wyant -Northeast Yaquina -Northeastern -Northedge -Northend -Northenden -Northentry -Northerly -Northern -Northern Dancer -Northern Fences -Northern Lakes -Northern Lights -Northern Neck -Northern Perimeter -Northern Rivers -Northern Service -Northern Spruce -Northern Spy -Northern Woods -Northey -Northfalls -Northfield -Northfleet -Northfleet Green -Northforde -Northfront -Northgate -Northgate Ducks Hill -Northglen -Northgrove -Northhampton -Northholt -Northhome -Northhurst -Northiam -Northill -Northington -Northlake -Northland -Northlands -Northlawn -Northlea -Northleigh -Northmark -Northmead -Northminster -Northmont -Northmoor -Northoak -Northolm -Northolme -Northolt -Northolt Islip Manor -Northolt Ruislip -Northome -Northover Shroffold -Northplain -Northpoint -Northport -Northridge -Northrop -Northrup -Northshire -Northshore -Northside -Northstar -Northstead -Northstream -Northtown -Northumberland -Northumbria -Northup -Northurst -Northvale -Northview -Northview Park -Northville -Northward -Northway -Northweald -Northwell -Northwest -Northwest Blue Ridge -Northwest Boulder Way -Northwest Bright -Northwest Canal -Northwest Culbertson -Northwest Datewood -Northwest Dogwood -Northwest Elford -Northwest Esplanade -Northwest Everwood -Northwest Far Country -Northwest Firwood -Northwest Gilman -Northwest Golden -Northwest Holly -Northwest Inneswood -Northwest James Bush -Northwest Juniper -Northwest Locust -Northwest Mall -Northwest Maple -Northwest Market -Northwest Montreux -Northwest North Beach -Northwest Northwood -Northwest Pacific Elm -Northwest Pebble -Northwest Point -Northwest Puget -Northwest Richwood -Northwest Ridgefield -Northwest Sammamish -Northwest Spring Fork -Northwest Talus -Northwestern -Northwich -Northwick -Northwick Park -Northwind -Northwinds -Northwing -Northwold -Northwood -Northwood Estates -Northwoods -Northwyn -Nortoft -Norton -Norton Creek -Norton Glen -Norton Green -Norton Heath -Nortonia -Nortons -Nortonville -Norumbega -Norval -Norvale -Norvegia -Norvell -Norvella -Norvic -Norview -Norwalk -Norway -Norway Pine -Norwell -Norwest -Norwich -Norwood -Norwood Green -Norwood High -Norwood Hill -Norwood Park -Norwood Square -Norwoods Pond -Nosband -Nosecchi -Nosenzo Pond -Nostaw -Noster -Nostrand -Nostrands -Notabene -Notary -Notch -Notch Brook -Notch Hill -Notch Park -Notchcroft -Notchwood -Note -Notely -Notes -Noteware -Nothing -Notley -Notown -Notre Dame -Notson -Nott -Nottage -Nottaway -Notthumberland -Nottidge -Notting Barn -Notting Hill -Nottingdale -Nottingham -Nottinghill -Nottoway -Nottoway River -Notts -Nottwood -Notus -Nouds -Noumea -Nounsley -Nourse -Nova -Nova Scotia -Novak -Novar -Novara -Novato -Novelda -Novell -Novello -November -Novo -Now -Nowak -Nowell -Nowell Farme -Nower -Nowers -Nowill -Nowland -Nowra -Nowranie -Noyana -Noye -Noyes -Noyna -Noyo -Nsp -Nuala -Nuber -Nubian -Nuclear -Nuestra -Nueva -Nuevo -Nuffield -Nugent -Nugget -Nugget Canyon -Nulang -Nulgarra -Null -Nulla -Nulla Nulla -Nullaburra -Nullawarra -Nulty -Numa -Numantia -Number One First -Numes -Nunan -Nunatak -Nunda -Nundah -Nundle -Nuneaton -Nuneham -Nunes -Nunes Fire -Nungeroo -Nunhead -Nunhide -Nunington -Nunn -Nunnery -Nunnink -Nunroyd -Nunroyd Dale -Nuns -Nuns Canyon -Nunsbury -Nunsfield -Nunthorpe -Nup End -Nupton -Nuptown -Nureyev -Nurge -Nurla -Nurmi -Nurney -Nurragi -Nurran -Nurse Slough -Nurseries -Nursery -Nursery Hill -Nursery Mount -Nurserymans -Nurses -Nurstead -Nurstead Church -Nut -Nut Island -Nut Plains -Nut Tree -Nutberry -Nutbourne -Nutbrook -Nutcombe -Nutcraker -Nutcroft -Nutfield -Nutfield Marsh -Nutgrove -Nutham -Nuthatch -Nuthatcher -Nuthurst -Nutley -Nutmeg -Nutria -Nutshell -Nutswamp -Nutt -Nuttall -Nutter -Nutting -Nuttings -Nuttman -Nutty -Nutty Hill -Nutwell -Nutwell Sudley -Nutwold -Nutwood -Nuvern -Nuwarra -Nuxley -Ny -Nyac -Nyack -Nyan -Nyanga -Nyanza -Nyara -Nydam -Nydeggar -Nye -Nyes -Nyetimber -Nygaard -Nyinya -Nyla -Nylan -Nyland -Nylands -Nyletta -Nymagee -Nymboida -Nymph -Nynehead -Nyngan -Nyora -Nyra -Nyrang -Nystrom -O Brien -O Brine -O Connel -O Connell -O Connor -O Connors -O Day -O Dell -O Donnell -O Fernwood -O Gorman -O Hanneson -O Hara -O Hare -O Harte -O Hatch -O Keefe -O Leary -O Loughlin -O Malley -O Moore -O Neil -O Niell -O Rourke -O Shaughnessy -O View -Oad -Oadby -Oahu -Oak -Oak Arbor -Oak Bank -Oak Bay -Oak Beach -Oak Bend -Oak Bluff -Oak Branch -Oak Bridge -Oak Brook -Oak Brook Club -Oak Brook Hills -Oak Brook Mall -Oak Bucket -Oak Canyon -Oak Center -Oak Chase -Oak Cliff -Oak Cluster -Oak Creek -Oak Crest -Oak Dale -Oak End -Oak Estates -Oak Farm -Oak Farms -Oak Flat -Oak Forest -Oak Front -Oak Gate -Oak Glen -Oak Glenn -Oak Grange -Oak Grove -Oak Hall -Oak Harbour -Oak Haven -Oak Heights -Oak Hill -Oak Hills -Oak Hollow -Oak Island -Oak Ivy -Oak Knoll -Oak Lake -Oak Lakes -Oak Lea -Oak Leaf -Oak Leather -Oak Ledge -Oak Lodge -Oak Manor -Oak Manor Fire -Oak Marr -Oak Meadow -Oak Meadows -Oak Mesa -Oak Mill -Oak Mount -Oak Mountain -Oak Neck -Oak Neck Beach -Oak Park -Oak Park Village -Oak Plaza -Oak Point -Oak Pond -Oak Rail -Oak Ridge -Oak Rim -Oak Rock -Oak Run -Oak Savannah -Oak Shade -Oak Shades -Oak Shadow -Oak Shadows -Oak Shore -Oak Shores -Oak Spring -Oak Springs -Oak Square -Oak Terrace -Oak Trail -Oak Trails -Oak Tree -Oak Tree Farm -Oak Vale -Oak Valley -Oak View -Oak Villa -Oak Vista -Oak Vue -Oak Werth -Oak Wood -OakVille -Oakapple -Oakbank -Oakborne -Oakborough -Oakbridge -Oakbrook -Oakbrook Estates -Oakbrooke -Oakcliffe -Oakcreek -Oakcrest -Oakcroft -Oakdale -Oakdale Estates -Oakdale Farm -Oakdale Ranch -Oakdell -Oakden -Oakdene -Oaken -Oaken Bank -Oakenbottom -Oakenclough -Oakencroft -Oakenden -Oakengrange -Oakengrove -Oakenshaw -Oakenshield -Oaker -Oakes -Oakes Field Service -Oakey -Oakfern -Oakfield -Oakfield Court -Oakfield park -Oakfields -Oakfold -Oakford -Oakglen -Oakgreen -Oakgrove -Oakhall -Oakham -Oakhampton -Oakhanger -Oakhaven -Oakhill -Oakhollow -Oakhouse -Oakhurst -Oakington -Oakington Manor -Oakknoll -Oakland -Oakland Bay -Oakland Beach -Oakland Hills -Oakland Mills -Oakland Park -Oakland School -Oakland Terrace -Oaklands -Oaklands Park -Oaklandvale -Oaklane -Oaklawn -Oaklea -Oakleaf -Oakledge -Oakleigh -Oakleigh Park -Oakley -Oakley Green -Oakley SquarePlender -Oakline -Oaklyn -Oakman -Oakmead -Oakmead Village -Oakmeade -Oakmede -Oakmere -Oakmill -Oakmont -Oakmont Plaza -Oakmoor -Oakmore -Oakover -Oakpointe -Oakport -Oakraider -Oakrest -Oakridge -Oakroyal -Oakroyd -Oaks -Oaks Hunt -Oaksbury -Oaksford -Oakshade -Oakshaw -Oakshire -Oakshore -Oakside -Oakstone -Oakstwain -Oakthorpe -Oakton -Oakton Glen -Oakton Hills -Oakton Knoll -Oakton Mill -Oakton Plantation -Oakton Terrace -Oaktree -Oakura -Oakvale -Oakview -Oakview Gardens -Oakville -Oakville Grade -Oakville Ridge -Oakvue -Oakway -Oakways -Oakwel -Oakwell -Oakwild -Oakwilde -Oakwood -Oakwood Grange -Oakwood Hollow -Oakwood Knoll -Oakwood Manor -Oakwood Park -Oakworth -Oar -Oare -Oarfield -Oasis -Oast -Oast House -Oasthouse -Oat -Oat Chase -Oat Hill -Oat Hill Fire -Oates -Oatfield -Oathall -Oatland -Oatlands -Oatley -Oatley Park -Oatwind -Obal -Obama -Oban -Obbs -Obed -Obeline -Ober -Oberlin -Oberlon -Obermueller -Oberon -Oberstein -Obert -Obertz -Oberweis -Obery -Obispo -Obrad -Obrecht -Obrien -Obry -Observation -Observatory -Observer -Obsidian -Ocala -Ocatillo -Occam -Occident -Occidental -Occidintal -Occoquan -Occoquan Club -Occoquan Forest -Occoquan Oaks -Occupation -Ocean -Ocean Crest -Ocean Front -Ocean Grove -Ocean Harbor -Ocean Hill -Ocean Pier -Ocean Pines -Ocean Point -Ocean Shore -Ocean View -Oceana -Oceania -Oceanic -Oceanlea -Oceanside -Oceanus -Oceanview -Ocelot -Oceola -Ocho Milpas -Ocho Rios -Ochre -Ochs -Ochse -Ockelford -Ockenden -Ockendon -Ockford -Ockham -Ockley -Ockway -Ockwells -Oconnell -Oconnor -Oconto -Octagon -Octagonal -Octavia -Octavius -October -October Hill -Odalming -Odanah -Odard -Oday -Odd Fellows Park -Oddesey -Oddfellow -Oddstad -Oddy -Ode -Odea -Odell -Odell Morten -Oden -Odencroft -Odensos -Odenton -Odeon Shaftesbury -Oder -Odessa -Odette -Odger -Odie -Odiham -Odiham High -Odin -Odlum -Odney -Odom -Odonnell -Odriks -Odysseus -Odyssey -Oehme -Oelke -Oelsner -Oelvig -Oerter -Oeste -Ofallon -Ofarrell -Off Boundry -Off Central -Off Cherry -Off Dean -Off Ella -Off Groton School -Off Grove -Off Harrington -Off Indian Pond -Off Lake -Off Musterfield -Off Peters -Off Pond -Off Second Brook -Off Snow -Off Summer -Off Tarkiln -Off Upper Manor -Off Westford -Offa -Offaly -Offas -Offenbach -Offenham -Offens -Offerton -Offham -Office -Office Park -Officers -Officers Club -Official -Offley -Offner -Offord -Offut -Offutt -Ofria -Ogallah -Ogallala -Ogallala Warpath -Ogard -Ogburn -Ogden -Ogden Falls -Ogden Sannazor -Ogier -Ogilby -Ogilvie -Ogilvy -Ogla -Oglander -Ogle -Oglesby -Oglethorpe -Ogleton -Ogwen -Ohaire -Ohanneson -Ohara -Ohare -Oharron -Ohde -Ohio -Ohio River -Ohlfsen -Ohlone -Ohlones -Ohlson -Ohm -Ohms -Oil Company -Oil Mill -Oitmann -Ojibway -Ojibway Park -Oka -Okala -Okanogan -Okeburn -Okeefe -Okeford -Okehurst -Okemo Ridge -Okeover -Oketo -Okinawa -Okla -Oklahoma -Okley -Okst -Olaf -Oland -Olando -Olanyian -Olaughlin -Olchasky -Olcott -Old -Old Acre -Old Acres -Old Adobe -Old Albany Post -Old Alexandria Ferry -Old Allentown -Old Almaden -Old Altos -Old Amboy -Old Amersham -Old Amory -Old Andover -Old Annapolis -Old Annapolis Neck -Old Antelope -Old Archer -Old Ardmore -Old Army -Old Arrington -Old Ash -Old Ashford -Old Auburn -Old Audubon -Old Ayer -Old Bacon Race -Old Badgins -Old Baltimore -Old Bank -Old Bare Hill -Old Barn -Old Barnaby -Old Barns -Old Barrenjoey -Old Barrington -Old Bartlett -Old Barton -Old Bass Lake -Old Bath -Old Bathurst -Old Battery -Old Battle -Old Bavaria -Old Bay -Old Bay Flat -Old Bay Ridge -Old Bay Shore -Old Bayberry -Old Bayside -Old Beach -Old Beach Glen -Old Beaconsfield -Old Bear Creek -Old Beaver Brook -Old Bedford -Old Beecroft -Old Bell -Old Benfield -Old Bennett Ridge -Old Bergen -Old Bernal -Old Berowra -Old Berry -Old Bethnal Green -Old Bethpage -Old Big Basin -Old Big Trees -Old Billerica -Old Birch -Old Birdsville -Old Birley -Old Bisley -Old Bix -Old Blackhawk -Old Blacksmith -Old Blackstone -Old Blacktop -Old Bloomfield -Old Blossom Hill -Old Bluff -Old Bolton -Old Bond -Old Bond Mill -Old Bonifant -Old Boonton -Old Boston -Old Boston Post -Old Bracknell -Old Branch -Old Brandy Hill -Old Brandywine -Old Breakneck Hill -Old Bren -Old Brentford -Old Brewery -Old Briar -Old Brick -Old Brick Yard -Old Brickfield -Old Bridge -Old Bridge Matawan -Old Britton -Old Brompton -Old Brook -Old Brooks -Old Browns -Old Browns Valley -Old Bucklodge -Old Buffalo Grove -Old Burke Lake -Old Burley -Old Burlington -Old Bury Lodge -Old Bush -Old Cabin -Old Calaveras -Old Calvert -Old Calvine -Old Camp -Old Camp Meade -Old Campbell -Old Campus -Old Canal -Old Cannon -Old Canterbury -Old Canyon -Old Cape Saint Claire -Old Capell Valley -Old Carriage -Old Carroll -Old Cart -Old Cart Path -Old Castle -Old Castle Hill -Old Causeway -Old Cazadero -Old Cañada -Old Cedar -Old Cedar Lake -Old Cedar Swamp -Old Cemetery -Old Center -Old Central -Old Centre -Old Centreville -Old Chain Bridge -Old Changebridge -Old Channel -Old Chantry -Old Chapel -Old Charlton -Old Charter -Old Chatham -Old Checker -Old Cheesequake -Old Cherry -Old Cherry Hill -Old Chertsey -Old Chester -Old Chesterbrook -Old Chestnut -Old Chestnut Ridge -Old Chicago -Old Childrens Home -Old Chimney -Old Chinatown -Old Chittenden -Old Church -Old Cistern -Old City -Old Claygate -Old Clifton -Old Clinton -Old Clough -Old Club -Old Clubhouse -Old Coach -Old Coaling -Old Coast -Old Colchester -Old College -Old Collington -Old Colonial -Old Colony -Old Colony Cove -Old Columbia -Old Commack -Old Common -Old Compton -Old Conant -Old Concord -Old Contemptibles -Old Corona -Old Cote -Old Country -Old County -Old Court -Old Court House -Old Courthouse -Old Cove -Old Cow Pasture -Old Crabtree -Old Crain -Old Crawley -Old Creek -Old Crescent -Old Cross -Old Crossing -Old Crow Canyon -Old Crown -Old Cumberland -Old Cutter Mill -Old Dairy -Old Dairy Farm -Old Dartford -Old Davidsonville -Old Davis -Old Davis Ford -Old Deale -Old Dean -Old Dee -Old Deer Field -Old Deerfield -Old Delaney -Old Denville -Old Derby -Old Devonshire -Old Diamond -Old Diamond Hill -Old Diehl -Old Dobbin -Old Dock -Old Doctors -Old Dominion -Old Donaldson -Old Dorsey -Old Dorsey Run -Old Dory -Old Douglas -Old Dover -Old Dublin -Old Duff -Old Duncan Grade -Old Dundee -Old Dunstable -Old Dutch -Old Eagle Rock -Old Earleigh Heights -Old East -Old East Neck -Old Eaton -Old Edge -Old El Pueblo -Old Electric -Old Elland -Old Elm -Old Elmdale -Old Elstead -Old England -Old English -Old Enterprise -Old Eola -Old Epping Forest -Old Epsom -Old Esher -Old Essex -Old Estate -Old Evans -Old Excelsior -Old Faceful -Old Fairview -Old Faith -Old Falls -Old Farleigh -Old Farm -Old Farm Bridge -Old Farmers -Old Farmingdale -Old Farms -Old Farnham -Old Fence -Old Ferry -Old Ferry Slip -Old Field -Old Field Point -Old Fisher -Old Fishery -Old Flanders -Old Fleet -Old Fletchertown -Old Fold -Old Foothill -Old Ford -Old Forest -Old Forestville -Old Forge -Old Forge Hill -Old Fort -Old Fort Hills -Old Fort Smallwood -Old Foss Valley -Old Foundry -Old Framingham -Old Franconia -Old Frank Tippett -Old Franklin -Old Franklin Lake -Old Frederick -Old Freeman -Old French Horn -Old Frensham -Old Fulton -Old Furnace Colony -Old Gallows -Old Game Preserve -Old Garden -Old Garrison -Old Gary -Old Gate -Old Georges -Old Georgetown -Old German -Old Gibbons -Old Gilroy -Old Glen -Old Glenfield -Old Glenhaven -Old Glenn Dale -Old Glenview -Old Glory -Old Gloucester -Old Gold Mine -Old Goodenow -Old Gormely -Old Grafton -Old Graham Hill -Old Grand -Old Great -Old Great North -Old Green -Old Green Bay -Old Green Valley -Old Greendale -Old Greenland Beach -Old Greenville -Old Greenwich -Old Greenwood -Old Groton -Old Grove -Old Guildford -Old Gunpowder -Old Hadlow -Old Half Day -Old Hall -Old Hall Mill -Old Ham -Old Hammonds Ferry -Old Harbor -Old Harpenden -Old Hart -Old Harter -Old Harvard -Old Haslemere -Old Haswell Park -Old Haul -Old Hauppauge -Old Hawkesbury -Old Hawthorne -Old Hazel Dell -Old Heath -Old Heights -Old Herald Harbor -Old Herns -Old Hertford -Old Hey Beck -Old Heyes -Old Hickory -Old Hicks -Old Higgins -Old High -Old High Plain -Old Highbridge -Old Highgate -Old Hill -Old Hillary -Old Hills -Old Hillside -Old Hobart -Old Hoboken -Old Hockley -Old Hollow -Old Holly -Old Home -Old Homesdale -Old Homestead -Old Hommocks -Old Hook -Old Hoop Pole -Old Hopkington Spring -Old Hopkins -Old Horner -Old Horns -Old Horsham -Old House -Old Howletts -Old Hudson -Old Hull -Old Hundred -Old Hunt -Old Hunt Club -Old Ice House -Old Illawarra -Old Indian -Old Indian Head -Old Indianhead -Old Institute -Old Ironsides -Old Ively -Old Jackson -Old Jacksonville -Old Jamaica -Old Jamaicia -Old James -Old Japanese -Old Jericho Park -Old Jerome -Old Jerusalem -Old Jessup -Old Jonas Hill -Old Jones -Old Jones Gulch -Old Kahns -Old Keene Mill -Old Kellogg -Old Kennels -Old Kensico -Old Kent -Old Kenton -Old Kenville -Old Ketchum -Old Killam Hill -Old Kiln -Old Kinderhook -Old King -Old Kings -Old Kingsbridge -Old Kingston -Old Kirk -Old Kirker Pass -Old Knebworth -Old Knollwood -Old Kurrajong -Old Lafox -Old Lake -Old Lake End -Old Lake Herman -Old Lakes -Old Lakeville -Old Lancaster -Old Landing -Old Landover -Old Lansdowne -Old Lantern -Old Largo -Old Las Palmas -Old Laurel -Old Lawley Toll -Old Leary -Old Lee -Old Leigh -Old Lemont -Old Lenham -Old Leominister -Old Leonardtown -Old Leumeah -Old Lexington -Old Liberty -Old Library -Old Lincoln -Old Line -Old Linslade -Old Litenfield -Old Litten -Old Littleton -Old Liverpool -Old Livorna -Old Locust -Old Lodge -Old Log -Old Logging -Old London -Old Long Lake -Old Lottsford -Old Lowell -Old Lunenburg -Old Lyme -Old Mac Donald -Old Macdonald -Old Madrone -Old Magothy Bridge -Old Maidstone -Old Main -Old Malden -Old Maldon -Old Mamaroneck -Old Manchester -Old Manor -Old Mansion -Old Maple -Old Marbury -Old Market -Old Marlboro -Old Marsh -Old Marsh Hill -Old Marshall Hall -Old Maryland -Old Massachusetts -Old Matawan -Old Mayo -Old Mazda Brook -Old McHenry -Old McLean Village -Old Mead -Old Meadow -Old Medway -Old Meeting House -Old Meetinghouse -Old Mendon -Old Merlins -Old Merrimac -Old Merrow -Old Middlesex -Old Middletown -Old Mill -Old Mill Bottom -Old Mill Grove -Old Mill Pond -Old Mill Swamp -Old Millbury -Old Millstone -Old Millville -Old Mine -Old Mitchellville -Old Moat -Old Montague -Old Monte Rio -Old Monterey -Old Montgomery -Old Moor -Old Mori -Old Morton -Old Moss -Old Mount -Old Mount Skirgo -Old Mount Vernon -Old Mountain -Old Mountain View -Old Mouth -Old Mud -Old Muddy Creek -Old Muirkirk -Old Musket -Old Mystic -Old Nahant -Old Nans -Old Napa -Old Naperville -Old Nasonville -Old Nazeing -Old Neck -Old Nepperhan -Old New -Old New Bridge -Old New Brunswick -Old New Utrecht -Old Newbridge -Old Newland -Old Nichol -Old Nike Missle Site -Old North -Old North Church -Old North Main -Old Northern -Old Northfield -Old Northport -Old Nourse -Old Nutley -Old Oak -Old Oak Common -Old Oak Creek -Old Oaken Bucket -Old Oaks -Old Ocean -Old Odenton -Old Odiham -Old Orangeburg -Old Orchard -Old Otford -Old Otter Lake -Old Out -Old Ox -Old Oxbow -Old Oxford -Old Pacheco Pass -Old Page -Old Page Mill -Old Palace -Old Palatine -Old Palisade -Old Palmer -Old Paradise -Old Paris -Old Parish -Old Park -Old Parkbury -Old Parker -Old Parrin -Old Parsippany -Old Parvis -Old Pascack -Old Pasture -Old Pattens -Old Patterson Pass -Old Pear Tree -Old Pearson -Old Peartree -Old Pelhem -Old Pennington -Old Penzance -Old Perry -Old Petaluma Hill -Old Pewterspear -Old Philadelphia -Old Pickard -Old Piedmont -Old Pilkington -Old Pillings Pond -Old Pine -Old Piscataway -Old Pitt Town -Old Pittwater -Old Placerville -Old Plain -Old Plains -Old Plank -Old Planters -Old Pleasant -Old Plum Grove -Old Plum Point -Old Plymouth -Old Point -Old Pole -Old Pond -Old Porter -Old Portland -Old Portsmouth -Old Post -Old Post Office -Old Potbridge -Old Pottery -Old Pound -Old Powerhouse -Old Pratt -Old Princehanes -Old Princeton -Old Priory -Old Prospect -Old Prospect Hill -Old Providence -Old Public -Old Pye -Old Quarry -Old Quarterfield -Old Quebec -Old Queen -Old Quincy -Old Railroad Grade -Old Railroad Grade Fr -Old Ranch -Old Ranch Estates -Old Rancheria -Old Rand -Old Randolph -Old Rangeway -Old Raritan -Old Razorback -Old Reading -Old Rectory -Old Redmond -Old Redstone -Old Redwood -Old Regent -Old Reigate -Old Renwick -Old Reserve -Old Reservoir -Old Reston -Old Richards -Old Richardson -Old Ridge -Old Ridge Path -Old Rifle Camp -Old Right -Old Ritchie -Old Riva -Old River -Old Riverside -Old Riverview -Old Roberts -Old Rock Meadow -Old Rockaway -Old Rockbridge -Old Rockford -Old Rockland -Old Rockport -Old Rogers -Old Rolling -Old Rondo -Old Roxbury -Old Rubbly -Old Ruislip -Old Ruland -Old Run -Old Rutherford -Old Ryan -Old Saint Charles -Old Salem -Old Salisbury -Old Samuel -Old San Francisco -Old San Jose Turnpike -Old San Pablo Dam -Old Sand -Old Sand Creek -Old Sandy Pond -Old Sandy Spring -Old Sanford -Old Santa Rita -Old Saw Mill -Old Saw Mill River -Old Sawmill -Old Sax -Old Sayles Hill -Old Scaggsville -Old Schaumburg -Old School -Old School House -Old Schoolhouse -Old Seacoal -Old Searingtown -Old Settlers -Old Seven Locks -Old Shade -Old Shady Oak -Old Shawsheen -Old Shelter Rock -Old Shepard -Old Shipyard -Old Shire -Old Shirley -Old Shore -Old Short Hills -Old Siler Logging -Old Silver Hill -Old Skaggs Springs -Old Skokie Valley -Old Slade -Old Sleepy Hollow -Old Sleigh Hill -Old Smalleytown -Old Smith -Old Smithfield -Old Smiths -Old Smithy -Old Snakey -Old Sneech Pond -Old Soar -Old Soda Springs -Old Solomons Island -Old Somerset -Old Sonoma -Old Soper -Old South -Old South Head -Old South Highland -Old South Lambeth -Old South Main -Old South River -Old Southend -Old Spanish -Old Sprain -Old Spring -Old Springfield -Old Spye -Old Sudbury -Old Sudley -Old Sugar -Old Suisun -Old Suisun Knoxville -Old Sulphur Spring -Old Summer -Old Summit -Old Surey -Old Surrenden Manor -Old Sutton -Old Sydney -Old Tamarack -Old Tappan -Old Taren Point -Old Tarrytown -Old Taunton -Old Tavern -Old Telegraph -Old Temple Hills -Old Terrace -Old Tester -Old Thieves -Old Timber -Old Timbers -Old Tobey Garden -Old Toll Bridge -Old Tolson Mill -Old Topsfield -Old Tote -Old Tovil -Old Tower -Old Town -Old Towne -Old Townline -Old Trace -Old Track -Old Trail -Old Tree -Old Triangle -Old Trull -Old Tully -Old Tunnel -Old Turkey Point -Old Turnpike -Old Tye -Old Tyler -Old Tyngsboro -Old Up Yonder -Old Upton -Old Uxbridge -Old Vallecitos -Old Valley -Old Vee Fire -Old Vic Theatre -Old Vicarage -Old Village -Old Vine -Old Vineyard -Old Waddling -Old Wagon -Old Walker Mill -Old Wallgrove -Old Wallum Lake -Old Walnut -Old Walt Whitman -Old Wapping -Old Ward -Old Warm Springs -Old Warrington -Old Washington -Old Water Oak Point -Old Waterford -Old Waterloo -Old Watford -Old Watling -Old Waugh Chapel -Old Webster -Old Weiland -Old Well -Old Wellington -Old West -Old West Center -Old West Central -Old West Elm -Old West Julian -Old West Main -Old West Mt Pleasant -Old West Wrentham -Old Westboro -Old Westbury -Old Western -Old Westford -Old Weston -Old Wheatley -Old Whetsted -Old Whinchester -Old White Bear -Old White Plains -Old White Rock -Old Whitins -Old Whitley Wood -Old Wickford -Old Wickham -Old Wickhurst -Old Wildwood -Old Willard -Old Willis -Old Willow -Old Willows -Old Wilmot -Old Winchester -Old Winchester Hill -Old Windsor -Old Winery -Old Winkle Point -Old Winter -Old Woking -Old Wokingham -Old Wolf -Old Wolomolopoag -Old Womans Creek -Old Wood -Old Woods -Old Woodstock -Old Wool -Old Woolwich -Old Woosehill -Old Worcester -Old Yates Ford -Old Yerba Buena -Old York -Old del Monte -Old llandilo -OldField -Oldaker -Oldarker -Oldberry -Oldborough -Oldbridge -Oldbury -Oldcastle -Oldchurch -Olddale -Olde -Olde Ballardvale -Olde Carriage -Olde Coach -Olde Colony -Olde Crafts -Olde English -Olde Farm -Olde Gatehouse -Olde Greenhouse -Olde Half Day -Olde Hickory -Olde Ivey -Olde Kent -Olde Lantern -Olde Lyme -Olde Meeting House -Olde Mill -Olde Pasture -Olde Port -Olde Salem -Olde Surrey -Olde Towne -Olde Village -Olde Woods -Olden -Older Creek -Oldershaw -Oldert -Oldewood -Oldfield -Oldfields -Oldham -Oldhill -Oldhouse -Oldis -Oldknow -Oldlands -Oldmill -Oldmoor -Oldridge -Olds -Olds Park -Oldsandy Hollow -Oldstead -Oldtown -Oldway -Oldwood -Oldwoods -Ole Dirt -Ole Farm -Ole Tree -Olea -Olean -Oleander -Olearia -Oleary -Olema -Olema Bolinas -Olen -Olentangy -Olesen -Olf Fold -Olga -Olima -Olin -Olinda -Olinger -Olinville -Oliphant -Oliva -Olivant -Olivas -Olive -Olive Branch -Olive Canyon -Olive Grove -Olive Hill -Olive Lee -Olive Ranch -Olive School -Olive Shapley -Olive Spring -Olive Tree -Olivebranch -Olivegate -Oliveleaf -Oliver -Oliver Cromwell -Oliver Swain -Oliver Wentworth -Olivera -Olivers -Olivers Shop -Oliveswood -Olivet -Olivetree -Olivette -Oliveview -Olivewood -Olivia -Olivian -Olivier -Olivine -Oll la Honda -Olleberie -Ollerbarrow -Ollersett -Ollershaw -Ollerton -Olley -Ollier -Ollies Turn -Olliffe -Ollin -Olm -Olma -Olmar -Olmi Landrith -Olmo -Olmo Fire -Olmstead -Olmsted -Olney -Olney Keech -Olney Laytonsville -Olney Mill -Olney Sandy Spring -Olo -Olofson -Olola -Olphert -Olsen -Olson -Olson Farm -Olson Frontage -Olson Highway Service -Olson Hwy Service -Oltmann -Olvega -Olven -Olvera -Olyffe -Olympia -Olympia Fields -Olympic -Olympic Oaks -Olympic View -Olympus -Olyphant -Omaban -Omaha -Omaha Beach -Omak -Oman -Omar -Omara -Omaroo -Omaru -Omati -Omdurman -Omeara -Omec Park -Omega -Omeo -Omer -Omira -Omisol -Ommel -Omni -Omnibus -On Orbit -On The -Ona -Onamog -Onandaga -Onarga -Onchan -Onderdonk -Ondina -Ondine -One Beacon -One Bridge -One End -One Eversholt -One Executive -One Hundred -One Marina Park -One Mill -One Oak -One Palace -One Paradise -One Penny -One Pin -One Spring -One Tree -One Tree Hill -One Western -Oneata -Onedia -Oneel -Onehtah -Oneida -Oneil -Oneill -Oneonta -Oneto -Ongar -Ongley -Onieda -Onion Hill -Onion Patch -Onique -Onley -Onondaga -Onondago -Onorato -Onra -Onset -Onslow -Onsrud -Ontario -Ontario Bay -Ontarioville -Onward -Onwentsia -Onyx -Oolah -Oolooteka -Oorana -Oorin -Oozewood -Opah -Opal -Opal Cliff -Opala -Opalo -Opalocka -Opatrny -Opel -Open -Open Hearth -Open Meadow -Open Run -Open View -Opengate -Openshaw -Openshaw Fold -Openwood -Operations -Operators -Opey -Ophelia -Ophir -Oping -Opitz -Oppenheim -Opperman -Oppidans -Opportunity -Optimist -Optimo -Opus -Ora -Ora Glen -Ora Lea -Orache -Oracle -Oradell -Orallo -Oram -Orama -Oran -Oran Park -Orana -Orange -Orange Blossom -Orange Brace -Orange Grove -Orange Heights -Orange Hill -Orange Hunt -Orange Plank -Orange Tree -Orange View -Orangeburg -Orangeburgh -Orangery -Orangetree -Orangevale -Orangeville -Orangewood -Oransay -Orara -Oratam -Oratava -Oraton -Orawaupum -Orazio -Orazmi -Orb -Orbach -Orbain -Orbel -Orbell -Orbison -Orbit -Orcam -Orchad -Orchads -Orchard -Orchard Acres -Orchard Beach -Orchard Blossom -Orchard Brook -Orchard Canyon -Orchard City -Orchard Club -Orchard Creek -Orchard End -Orchard Estates -Orchard Farm -Orchard Gate -Orchard Gateway -Orchard Grove -Orchard Heights -Orchard Hill -Orchard Hill Park -Orchard Hills -Orchard House -Orchard Lake -Orchard Loop -Orchard Meadow -Orchard Meadows -Orchard Park -Orchard Point -Orchard Pointe -Orchard Ridge -Orchard Run -Orchard Spring -Orchard Springs -Orchard Valley -Orchard View -Orchardfield -Orchardhill -Orchardleigh -Orchehill -Orchid -Orchill -Orchird -Orchis -Ord -Ordak -Orde Hall -Ordell -Ordinal -Ordinance -Ordnance -Ordsall -Ordway -Ore -Oread -Oreana -Orebaugh -Oregano -Oregon -Orehr -Orem -Orence -Orestan -Oreste -Orestimba -Orestimba Creek -Oreston -Oreta -Orford -Organ -Organ Hall -Organ Park -Orgill -Ori -Orian -Oriana -Oric -Orick -Oriel -Orielton -Orient -Orient Fishtail -Orienta -Oriental -Oriente -Oriley -Orin -Orinda -Orinda View -Orinda Vista -Orindawoods -Orinoco -Oriol -Oriole -Orion -Orion Club -Oriskany -Orison -Orissa -Oritan -Orizaba -Orkla -Orkney -Orlan -Orlan Brook -Orland -Orland Square -Orland Woods -Orlanda -Orlando -Orleans -Orleston -Orley Farm -Orlick -Orlo -Orloff -Orlop -Orly -Orman -Ormand -Ormandy -Ormanton -Ormart -Ormbrek -Orme -Ormeley -Ormerod -Ormesby -Ormiston -Ormond -Ormond Park -Ormonde -Ormont -Ormpington -Ormrod -Ormsay -Ormsbee -Ormsby -Ormsgill -Ormside -Ormskirk -Ormston -Ornan -Ornatus -Orne -Ornella -Ornellas -Oro -Orogrande -Oronga -Orono -Orono Oaks -Oronoco -Orosz -Oroville -Orphanage -Orpheus -Orpin -Orpington -Orpington Bypass -Orpington High -Orr -Orr Ranch -Orral -Orrel -Orrell -Orren -Orrin -Orrin White -Orrington -Orris -Orrishmere -Orrison -Orrmo -Orsett -Orsett Heath -Orsetti -Orsini -Orsman -Orson -Orston -Ortalon -Ortega -Orth -Ortins -Orto -Orton -Ortona -Orts -Orval -Orvietto -Orville -Orvis -Orwell -Orwood -Osage -Osbert -Osberton -Osborn -Osborne -Osbourne -Osburn Park -Oscar -Oscecla -Osceola -Osea -Oser -Osgathorpe -Osgood -Osidge -Osier -Osiers -Osio -Ositos -Oskaloosa -Oslac -Oslo -Osloer -Osman -Osmer -Osmium -Osmond -Osmondthorpe -Osmund -Osmundsen -Osnaburgh -Osney -Oso -Osprey -Osprey Point -Ospringe -Osroy -Ossage -Ossamequin -Ossary -Osseo -Ossian Hall -Ossie -Ossipee -Ossippee -Ossory -Ossulston -Ossulton -Ostade -Ostego -Ostenberg -Ostend -Oster -Osterberg -Osterley -Osterley Park -Osterly -Osterly Park View -Osterman -Osterport -Ostlers -Ostrander -Ostrich -Ostrowski -Oswald -Osward -Oswego -Oswego Plains -Oswell -Oswin -Oswyth -Otago -Otay -Otero -Otford -Otham -Othello -Othen -Other Day -Othman -Otis -Otis Bowen -Otis Hill -Otisco -Otisfield -Otley -Otley Burras -Otley Old -Otlinge -Otoole -Otsego -Otsigo -Ott -Otta -Ottawa -Ottawa Bend -Ottaway -Otter -Otter Creek -Otter Lake -Otter Pond -Otter Ridge -Otter Rock -Otter Run -Otterbourne -Otterburn -Otterden -Otterham Quay -Otterhole -Otteridge -Ottermead -Otterson -Otterspool -Ottey -Ottilia -Ottley -Otto -Otto Hummer -Ottowa -Ottumwa -Ottways -Otway -Ouchthorpe -Oudle -Oughtonhead -Oughtrington -Ouilmette -Oulder Hill -Oulton -Oundle -Our -Our Hill -Our Peak -Ourimbah -Ourisman -Oursler -Oursler Park -Ourtime -Ousden -Ouseley -Ousley -Oust -Outcalt -Outer -Outer Loop -Outer Ring -Outer Zayante -Outerbridge -Outfield -Outgang -Outgate -Outhaul -Outing -Outings -Outlet -Outlook -Outlook Heights -Outlook Hill -Outpost -Outram -Outrigger -Outward Common -Outwater -Outwich -Outwood -Outwood Church Moxon -Outwood Common -Outwood Farm -Ouzlewell Green Green -Oval -Ovalstone -Ovaltine -Ovejas -Oven Hill -Ovenden -Ovenhouse -Ovens -Over -Over Brook -Over Hill -Over Ridge -Over Rock -Over Town -Overacker -Overbeck -Overbridge -Overbrook -Overbury -Overby -Overchase -Overcliff -Overcoat -Overcrest -Overdale -Overdene -Overdown -Overend -Overend Green -Overens -Overett -Overfield -Overford -Overgate -Overheart -Overheiser -Overhill -Overhiser -Overing -Overion -Overkamp -Overlake -Overland -Overland Park -Overlea -Overleaf -Overledge -Overleigh -Overlinks -Overlock -Overlook -Overlook Ridge -Overly -Overmead -Overmont -Overmoor -Overmount -Overpass -Overpeck -Overrun -Overshores -Overstone -Overton -Overview -Overwood -Overy -Ovesdon -Oving -Ovington -Owaisa -Owaissa -Owasco -Owasso -Owasso Heights -Owasso Hgts -Owasso Hills -Owasso Hts -Owatonna -Owen -Owen Brown -Owen Sound -Owencroft -Owenite -Oweno -Owens -Owens Farm -Owens Glen -Owens Lake -Owens Valley -Owensville -Owensville Sudley -Owings -Owings Beach -Owl -Owl Creek -Owl Harbor Levee -Owl Hill -Owl Ridge -Owl Swamp -Owl Tree -Owlcotes -Owler -Owlerbottom -Owles -Owley Wood -Owls Cove -Owls Head Bluff -Owls Nest -Owlsmoor -Owlswood -Owlwood -Owna -Owning -Owsley -Ox -Ox Bow -Ox Cart -Ox Hey -Ox Hill -Ox Hunt -Ox Meadow -Ox Pasture -Ox Ridge -Ox Team -Oxberry -Oxborough -Oxbow -Oxbow Creek -Oxbow Marina -Oxbridge -Oxburough -Oxbury -Oxen -Oxen Hill -Oxenbourne -Oxenbridge -Oxendale -Oxenden -Oxenden Wood -Oxendon -Oxenford -Oxenhoath -Oxenhouse -Oxenpark -Oxestalls -Oxford -Oxford Alcove -Oxford Bay -Oxford Circus Vere -Oxford Falls -Oxford Mill -Oxford Square -Oxford Wells -Oxfordshire -Oxform -Oxgate -Oxhey -Oxholm -Oxlease -Oxley -Oxley Farm -Oxley Shaw -Oxley Square -Oxleys -Oxleyshaw -Oxlow -Oxman -Oxnard -Oxney -Oxon -Oxon Hill -Oxon Hill Farm -Oxon Park -Oxon Run -Oxonian -Oxshott -Oxted -Oxton -Oxwell -Oxwood -Oyama -Oyster -Oyster Bay -Oyster Creek -Oyster Point -Oyster Pond -Oz -Ozanam -Ozark -Ozier -Ozkan -Ozone -Ozonia -P Fernwood -P Prairie -P Tree -PAH Fourth -PIA -PLeasance -Paarl -Pabis -Pabje -Pablo -Pablo Vista -Pac -Paca -Pace -Pacella -Pacella Park -Pacer -Pacey -Pachateau -Pacheco -Pacheco Creek -Pacheco Ridge -Pacific -Pacific Commons -Pacific Heights -Pacific Rim -Pacific Shore -Pacific View -Pacifica -Pacifico -Pacifiv View -Pacina -Pacini -Packanack Lake -Packard -Packards -Packcard -Packenham -Packer -Packet Boat -Packet Landing -Packetboat -Packham -Packhorse -Packing House -Packington -Packman -Packmore -Packmores -Packsaddle -Paco -Padan School -Padbury -Padcroft -Paddack -Padden -Paddenswick -Paddick -Paddington -Paddison -Paddle -Paddle Boat -Paddle Wheel -Paddlesworth -Paddlewheel -Paddock -Paddock Hill -Paddock House -Paddockhall -Paddockhurst -Paddocks -Paddockview -Paddon -Paddy -Paddy Creek -Paddy Miller -Padelford -Pademelon -Paderewski -Padero -Padfield -Padfield Main -Padgate -Padgett -Padons -Padova -Padre -Padre Island -Padres -Padsole -Padstow -Padua -Paducah -Padula -Padwell -Padwick -Padworth -Pafel -Paff -Paganini -Pagano -Pagden -Page -Page Brook -Page Farm -Page Green -Page Heath -Page Hill -Page Mill -Pageant -Pagebrook -Pagehurst -Pagel -Pageland -Pagenkopf -Pages -Paget -Pagham -Pagitt -Paglesham -Pagnell -Pagni -Pagoda -Pagonica -Pagum -Pahl -Paice -Paidge -Paige -Paige Glen -Paignton -Pailet -Paine -Paines -Paines Brook -Painesfield -Pains -Painsthorpe -Painswick -Paint -Paint Branch -Paintbrush -Painted Daisy -Painted Feather -Painted Leaf -Painted Pony -Painted Post -Painted Rock -Painted Turtle -Painted Wagon -Painters -Painters Ash -Painters Creek -Paintridge -Paints -Paisley -Paiute -Pajaro -Pajaro Hills -Pakachoag -Pakan -Pake -Pakeman -Pakenham -Pal -Pala -Palace -Palace Gardens -Palace Gates -Palace Green -Palace View -Palacio -Paladena -Paladin -Paladini -Paladino -Palamar -Palamino -Palamos -Palatine -Palatino -Palatka -Palawan -Palazzo -Pale -Pale Morning Dun -Paleologos -Palermo -Palesgate -Palewell Common -Paley -Palfrey -Palgrave -Paliamentary -Palin -Paling -Palinwood -Palisade -Palisades -Palisades Center -Palisades Interstate -Palisadium -Palisadse -Palissy -Palladay -Palladian -Palladio -Pallant -Pallas -Palleschi -Pallingham -Palliser -Pallister -Palm -Palm Beach -Palm Canyon -Palm Circle -Palm Grove -Palm Haven -Palm Meadow -Palm Mesa -Palm Ridge -Palm Spring -Palm Springs -Palm View -Palma -Palmar -Palmarsh -Palmaya -Palmcrest -Palmdale -Palmeira -Palmer -Palmer Creek -Palmer Hill -Palmer House -Palmer Mill -Palmer Park -Palmer Ranch -Palmer School -Palmera -Palmers -Palmers Green -Palmers Hill -Palmersfield -Palmerson -Palmerston -Palmerstone -Palmetta -Palmetto -Palmetto Dunes -Palmgren -Palmgrove -Palmia -Palmieri -Palmira -Palmito -Palmquist -Palms -Palmtag -Palmtree -Palmview -Palmwood -Palmyra -Palo -Palo Alto -Palo Amarillo -Palo Hills -Palo Santo -Palo Verde -Palo Vista -Palom -Paloma -Palomar -Palomares -Palomino -Palona -Paloro -Palos -Palos Springs -Palos Verdes -Palos West -Palou -Paloverde -Palsa -Palsted -Palwaukee -Pam -Pam Ann -Pam Anne -Pamala -Pamarco -Pamarella -Pamber -Pambula -Pamela -Pamella -Pamequa -Pamlar -Pamlico -Pampano -Pampas -Pamper -Pampisford -Pamplona -Pamrapo -Pan -Pan Am -Pan Toll -Panabaker -Panama -Panania -Pancake -Pancake Hollow -Pancras -Panda -Pandola -Pandolfi -Pandora -Pandorea -Panetta -Panfield -Pangbourne -Pangburn -Pangee -Panitz -Panjon -Pank -Pankhurst -Pankle -Pankridge -Panmuir -Panmure -Pannell -Pannonia -Panoche -Panola -Panorama -Panorama Heights -Panoramic -Panoz -Pansey -Panshanger -Pansmith -Pansy -Pantalis -Pantano -Panteny -Pantera -Panther -Panther Ridge -Panthers Ridge -Pantile -Pantlings -Panton -Pantooset -Pantry -Panxworth -Panzano -Paola -Paoli Loop -Paolo -Paomet -Paon -Paone -Papa -Papago -Papaw -Papaya -Pape -Papeete -Paper -Paper Birch -Paper Mill -Paper Mill Creek -Papera -Paperbark -Papercourt -Papermill -Papillion -Papillon -Papineau -Papoose -Papoose Lake -Papp -Pappani -Pappas -Pappenburg -Pappy -Paprocki -Paprota -Papsco -Papworth -Paquin -Par -Par Four -Par Three -Parada -Parade -Paradice -Paradis -Paradise -Paradise Beach -Paradise Grove -Paradise Lake -Paradise Spring -Paradise Valley -Paradise View -Paradiso -Parador -Paradox -Paragon -Paraiso -Parakeet -Parallel -Paramatta -Paramel -Paramount -Paramus -Parapet -Parbold -Parbrook -Parbury -Parc -Parc Aux Vaches -Parc Guell -Parcel -Parcel E Mayfair -Parcher -Parchmore -Parcot -Pardalote -Pardee -Pardey -Pardillo -Pardis -Pardoe -Pardon -Pardoner -Pardun -Pare -Parent -Parente -Parer -Paret -Parfait -Parfett -Parfrey -Pargat -Parham -Paringa -Paringdon -Paris -Paris Farm -Paris Oaks -Parish -Parish Gate -Parish Glebe -Park -Park Access -Park Arcadia -Park Barn -Park Barrington -Park Bridge -Park Center -Park Central -Park Circle -Park City -Park Cliff -Park Commons -Park Corner -Park Creek -Park Crescent -Park Crest -Park Cross -Park Dene -Park East -Park Ellen -Park End -Park Entrance -Park Estates -Park Fair -Park Farm -Park Forest -Park Front -Park Garden -Park Gardens -Park Gate -Park Gates -Park Glen -Park Glenn -Park Grove -Park HIll -Park Hall -Park Headquarters -Park Heights -Park Highlands -Park Hill -Park Hills -Park House -Park Hqtrs -Park Island -Park Knoll -Park Lake -Park Lawn -Park Maintenance -Park Manor -Park Meadow -Park Meadows -Park Mill -Park Mills -Park Mount -Park Nicollet -Park Overlook -Park Pacifica -Park Place -Park Plaine -Park Plaza -Park Point -Park Presidio -Park Prewett -Park Ramp -Park Ridge -Park River -Park Royal -Park Run -Park Sharon -Park Side -Park Siding -Park Sierra -Park South -Park Terrace -Park Tower -Park Trail -Park Tree -Park Vale -Park Valley -Park View -Park Village -Park Vista -Park Waldorf -Park West -Park Wilshire -Park Wood -Park Woods -Park Works -Parkanaur -Parkcenter -Parkchester -Parkcliff -Parkcroft -Parkdale -Parke -Parke West -Parkedge -Parkend -Parker -Parker Chase -Parker Creek -Parker Hill -Parker Point -Parker Ranch -Parkerhouse -Parkers -Parkers Creek -Parkers Farm -Parkers Grove -Parkers Lake -Parkers Ridge -Parkerson -Parkerville -Parkes -Parkey -Parkfast Essex -Parkfield -Parkfields -Parkford Manor -Parkgate -Parkgreen -Parkgrove -Parkhall -Parkham -Parkhaven -Parkhill -Parkhills -Parkholme -Parkhouse -Parkhurst -Parkin -Parking Lot -Parkington -Parkinson -Parkis -Parklake -Parkland -Parkland Farms -Parkland Hills -Parklands -Parklands Close Lynn -Parklane -Parklawn -Parklea -Parkleigh -Parklin -Parkman -Parkmead -Parkmeadow -Parkmont -Parkmoor -Parkmount -Parkoaks -Parkpale -Parkridge -Parkrose -Parkrow -Parks -Parkshore -Parkside -Parkside Dollis Hill -Parkside Crown -Parkson -Parkstead -Parkston -Parkstone -Parksway -Parkthorne -Parkton -Parktrail -Parkurst -Parkvale -Parkview -Parkville -Parkway -Parkway Cannon Hill -Parkway Homes -Parkway Ponds -Parkway Subdivision -Parkway Terrace -Parkways -Parkwest -Parkwind -Parkwood -Parkwood Ridge -Parkwoods -Parlaunt -Parlee -Parley -Parley Lake -Parliament -Parliment -Parlin -Parlington -Parma -Parmaker -Parmal -Parmalee -Parmelee -Parmenter -Parmer -Parmiter -Parmley -Parmly -Parmoor -Parnaby -Parnassus -Parndon -Parndon Mill -Parnel -Parnell -Parnham -Parnoo -Parole -Parolles -Paroma -Paroo -Paros -Paroubek -Parque -Parquet -Parr -Parramatta -Parramore -Parran -Parraween -Parraweena -Parrenthorn -Parrett -Parrin -Parrish -Parrish Farm -Parrish View -Parritt -Parriwi -Parrock -Parrot -Parrott -Parrott Mill -Parrow -Parrs -Parrs Ridge -Parrs Wood -Parry -Parsells -Parsifal -Parsippany -Parsley -Parsloe -Parsloes -Parslow -Parson -Parson Hill -Parsonage -Parsonage Hill -Parsons -Parsons Hill -Parsons Landing -Parsons Pond -Parston -Part -Partanna -Partello -Partenwood -Parthena -Parthenia -Parthey -Partidge Pond -Parting Rock -Partington -Partition -Partlow -Partnership -Parton -Partrick -Partridge -Partridge Berry -Partridge Hill -Partridge Run -Partridge Wood -Partridges -Party -Paru -Parvet -Parvin -Parys -Pasa Felix -Pasa Robles -Pasa Tiempo -Pasack -Pasada -Pasadena -Pasas -Pasatiempo -Pascack -Pascal -Paschal -Pasco -Pascoe -Pascomb -Pasedena -Paseo -Paseo Estera -Paseo Flores -Paseo Grand -Paseo Nuevo -Paseo Padre -Paseo Pueblo -Paseo Robles -Paseo de Palomas -Paseo del Mar -Pasetta -Pashley -Pasho -Paskin -Pasley -Paso Corto -Paso Nogal -Paso Norte -Paso Robles -Pasquale -Pasquier -Pasquinelli -Pass -Passaconaway -Passaconway -Passage -Passage Creek -Passages -Passaic -Passaic Valley -Passaie -Passalaqua -Passalis -Passefield -Passel -Passfield -Passingham -Passini -Passmore -Passy -Pastatiempo -Pastel -Pastens -Pasteur -Paston -Pastor -Pastoral -Pastori -Pasture -Pasture Brook -Pasture Gate -Pasture Hill -Pasture View -Pasture Way Pasture -Pasturegate -Pasturewood -Pat -Pat Butler -Pat Capone -Pat Geary -Patanga -Patapsco -Patapsco Hill -Patch -Patch Meadow -Patch Reservoir -Patchen -Patches Pond -Patchett -Patching Hall -Pate -Patemore -Paten -Patent Parish -Pater -Paternal Gift -Paternoster -Paterson -Paterson Plank -Pates -Pates Manor -Patey -Path -Pathfield -Pathfinder -Pathway -Pathways -Pathwood -Patience -Patiky -Patio -Patio Greens -Patleigh -Patlen -Patlena -Patley -Patmon -Patmor -Patmore -Patmore Link -Patmos -Patnoe -Pato -Patocchi -Paton -Patony -Patowmack -Patoxent -Patra -Patrica -Patrice -Patricia -Patrician -Patrick -Patrick Clark -Patrick Henry -Patricks Copse -Patridge Wood -Patriot -Patriot Square -Patriots -Patrixbourne -Patrol -Patrol Bridge -Patrolman Ray Woods -Pats -Patsco -Patshull -Patsy -Patt -Pattee -Patten -Patten Ash -Pattenden -Pattens -Patterdale -Patterma -Patterman -Pattern -Patternbond -Patterson -Patterson Park -Patterson Pass -Patterson Ranch -Patteson -Patti -Patti Jo -Pattie -Patties -Pattison -Patton -Patty -Patty Lee -Patuxent -Patuxent Manor -Patuxent Overlook -Patuxent Range -Patuxent Riding -Patuxent River -Patuxent Woods -Patwin -Pau Hana -Paugus -Paul -Paul Birch -Paul Burch -Paul Dunbar -Paul Gore -Paul Hance -Paul Kirkwold -Paul Marr -Paul Martin -Paul Minnie -Paul Poole -Paul R. McDade -Paul Revere -Paul Scarlet -Paul Springs -Paul Sweet -Paul Wilkke -Paul X Tivnan -Paula -Paula Beth -Paula Lynn -Paulden -Paulding -Paulen -Paulene -Paulet -Paulette -Pauley -Paulhan -Paulin -Paulina -Pauline -Pauling -Paulison -Paulk Hall -Paull -Paullus -Paulonia -Pauls -Paulsell -Paulsen -Paulson -Paultons -Paulus -Pauly -Pauly Farm -Paulyn -Paumanack Village -Paumanake -Paumonek -Pauntley -Pautz -Pauw -Pavan -Paveley -Pavelka -Pavement -Pavesi -Pavia -Pavich -Pavilion -Pavilions -Pavillion -Pavn -Pavo -Pavonia -Paw Pan -Paw Print -Pawlet -Pawlik -Pawnee -Pawsey -Pawson -Pawtucket -Paxford -Paxman -Paxos -Paxson -Paxton -Payan -Paycocke -Payden -Payen -Payette -Payle -Payley -Payne -Paynes -Paynes Church -Paynes Endeavor -Paynesfield -Payot -Payran -Payson -Payten -Payton -Pazinick -Pazzi -Pea -Peabody -Peace -Peace Memorial -Peace Valley -Peaceable -Peacedale -Peaceful -Peaceful Glen -Peaceful Pond -Peaceful Ridge -Peaceful Valley -Peacevale -Peach -Peach Blossom -Peach Crest -Peach Grove -Peach Hill -Peach Leaf -Peach Orchard -Peach Tree -Peach Tree Hill -Peach Walker -Peacham -Peachey -Peachgate -Peachland -Peachstone -Peachtree -Peachum -Peachwillow -Peachwood -Peacock -Peacock Creek -Peacock Farm -Peacock Gap -Peacock Hill -Peacock Pond -Peak -Peak Hill -Peak View -Peakdale -Peake -Peake New -Peaker -Peakes -Peakham -Peaks Mill -Peaksmill -Peakview -Peale -Peanut Brittle -Peanut Mill -Peapond -Pear -Pear Creek -Pear Tree -Pear Tree Point -Pearblossom -Pearce -Pearce Landing -Pearce Memorial -Pearcroft -Peardon -Pearfield -Pearl -Pearl Bay -Pearl Brook -Pearl Harbor -Pearl Hill -Pearlbush -Pearle -Pearles -Pearlgrass -Pearlman -Pearlroth -Pearltone -Pearly -Pearmain -Pearman -Pearn -Pears -Pearsall -Pearse -Pearson -Pearson Valley -Pearsons -Pearsons Green -Peart -Peartree -Pearwood -Peary -Peascod -Peascroft -Pease -Peaslake -Peasley -Peat -Peat Bog -Peatfield -Peatmore -Peavey -Pebble -Pebble Beach -Pebble Branch -Pebble Brook -Pebble Canyon -Pebble Creek -Pebble Glen -Pebble Hill -Pebble Run -Pebblebrook -Pebblebrooke -Pebblecreek -Pebbleford -Pebblefork -Pebblehill -Pebbles -Pebblestone -Pebbleway -Pebblewood -Pebler -Pebmarsh -Pebworth -Pecan -Pecan Grove -Pecan Leaf -Pecanwood -Peccary -Peck -Peckford -Peckham -Peckham High -Peckham Hill -Peckham Hurst -Peckham Park -Peckman -Peckmantown -Peckover -Pecks -Pecks Woods -Pecksland -Pecksuot -Peckwater -Peco -Peconic -Pecos -Pecunit -Peddars -Pedder -Peddlers -Peddock -Peden -Pedersen -Pederson -Pederzini -Pedley -Pedra -Pedrick -Pedro -Pedro View -Pedroncelli -Pedroni -Peebles -Peebles Whitehall -Peed -Peek -Peekay -Peeks Brook -Peekskill -Peel -Peel Green -Peel Hall -Peel Moat -Peelgate -Peels -Peelwood -Peens -Peer -Peerless -Peers -Peerswood -Peeskill -Peet -Peets -Peffer -Peg -Pegamoid -Pegan -Pegasus -Pegg -Peggotty -Peggotty Beach -Peggs -Peggy -Pegholme -Pegler -Pegmire -Pegord -Pegrum -Pegs -Pegwell -Pegwood -Pehle -Peiking -Peine -Peirce -Peirson -Peitz -Pekara -Pekin -Peladeau -Pelandale -Pelden -Peldon -Pelfrey -Pelham -Pelham Crossover -Pelham Island -Pelham Manor -Pelham Shore -Pelhamdale -Pelhamside -Pelhamwood -Pelican -Pelican Garth -Pelican Point -Pelican Ridge -Pelier -Pelinore -Pell -Pell Farm -Pellack -Pellandini -Pellant -Pelleas -Pellegrini -Pellerin -Pelletie -Pelletier -Pellier -Pelling -Pellings -Pellington -Pellipar -Pellisier -Pellitt -Pellowe -Pells -Pelly -Pelorus -Pelozar -Pelsart -Pelter -Peltier -Peltier Lake -Pelton -Pemaco -Pemba -Pembar -Pember -Pemberlei -Pemberly -Pemberton -Pemberwick -Pembina -Pembridge -Pembroke -Pembroke Village -Pembroke on Duxbury -Pembrook -Pembrooke -Pembrooke View -Pembsly -Pembury -Pembury Hall -Pemdevon -Pemell -Pemerton -Pen -Pen Bryn -Pen Mor -Pena -Pena Adobe -Penacook -Penamint -Penang -Penaranda -Penarth -Penasquitas -Penataquit -Penatiquit -Penberth -Penbridge -Penbroke -Penbrooke -Penbury -Pence -Pencroft -Pend Oreille -Penda -Pendale -Pendall -Pendant -Pendarves -Pendas -Pendas Way Barwick -Pendas Way Kelmscott -Pendas Way Manston -Pendegast -Pendell -Pendennis -Pender -Penderbrook -Penderbrooke -Penderel -Pendergast -Penderlea -Penderview -Penderwood -Pendexter -Pendey -Pendle -Pendlebury -Pendlecroft -Pendlestone -Pendleton -Pendock -Pendola -Pendolino -Pendragon -Pendred -Pendrell -Pendrill -Pendro -Pendroy -Pendrys -Pendulum -Penefield -Penelope -Penelope Lucas -Penenden -Penenden Heath -Penenden Heath Boxley -Penerley -Penerly -Penfield -Penfold -Penford -Pengarth -Pengel -Pengilly -Penguin -Penhall -Penhallow -Penhill -Penhorn -Penhryn -Penhurst -Penifather -Penine -Peninnsula -Peninsula -Peninsula Farm -Peninsula Point -Peninsular -Peniston -Penistone -Penisula -Penitencia -Penitencia Creek -Penitentiary Service -Peniwill -Penketh -Penkivil -Penlan Hall -Penland -Penleach -Penley -Penlow -Penman -Penmere -Penmon -Penn -Penn Belt -Penn Creek -Penn Crossing -Penn Manor -Pennack -Pennacook -Pennant -Pennant Hills -Pennard -Penncross -Penndale -Pennell -Penner -Pennerview -Pennethorne -Penney -Pennfathers -Pennfield -Penngrove -Penni -Pennial -Pennicook -Pennies -Penniman -Pennine -Pennings -Pennington -Pennington Green -Penningtons -Penninsula -Penninsular -Pennisula Point -Pennith -Pennland -Pennock -Pennoyer -Penns -Penns Hill -Pennsboro -Pennsbury -Pennswood -Pennsy -Pennsylvania -Pennsylvania Railroad -Pennview -Pennwood -Penny -Penny Brook -Penny Cress -Penny Hill -Penny Meadow -Penny Oak -Penny Royal -Pennyblack -Pennybridge -Pennybrook -Pennycress -Pennydog -Pennyfather -Pennyfathers -Pennyfield -Pennyfield Lock -Pennyhill -Pennymead -Pennymeadow -Pennymoor -Pennypacker -Pennypleck -Pennyroyal -Pennys -Pennywise -Pennywood -Penobscot -Penpool -Penprase -Penquin -Penraevon -Penrhos -Penrhyn -Penrith -Penroath -Penrod -Penrose -Penroy -Penry -Penryn -Penryth -Pensa -Pensacola -Pensarn -Pensbury -Pensfold -Pensford -Penshurst -Pensive -Pensons -Penstemon -Penstock -Penswick -Pentagon -Pentagon Access -Pentecost -Pentenville -Penthorpe -Pentire -Pentland -Pentlow -Pentney -Pento -Penton -Penton Hall -Penton Hook -Penton Rise Cumming -Pentonville -Pentreath -Pentrich -Pentridge -Pentstemon -Pentucket -Pentwater -Pentyre -Penway -Penwerris -Penwick -Penwith -Penwood -Penyston -Penywern -Penzance -Peony -Peony Place -Peoria -Peotone Beecher -Peover -Pepco -Pepe -Peper Harrow -Peperham -Peperharow -Pepin -Pepito -Pepler -Peploe -Peppard -Peppe -Pepper -Pepper Creek -Pepper Hill -Pepper Mill -Pepper Oaks -Pepper Ridge -Pepper Tree -Pepper Valley -Pepper Wood -Pepperbox -Peppercorn -Pepperday -Pepperdine -Pepperell -Pepperhill -Pepperidge -Pepperidge Tree -Peppermill -Peppermint -Peppermint Hill -Pepperridge -Peppertree -Pepperwood -Pepperwood Knoll -Pepperwood Ranch -Pepple -Pepples -Pepsal End -Pepys -Pequannock -Peque -Pequit -Pequossette -Pequot -Pera -Peracca -Perada -Perak -Peralta -Perceval -Perch -Perch Lake -Percheron -Percil -Percival -Percivals -Percy -Percy Bryant -Percy Simms -Percypenny -Perda -Perder -Perdetta -Pere Marquette -Peregoy -Peregrin -Peregrine -Peregrine White -Pereira -Perennial -Perera -Perez -Perfection -Performance -Pergate -Pergola -Perham -Peri -Pericles -Peridot -Perie -Periera -Perigene -Perigo -Perimeade -Perimeter -Perimetr -Perine -Perino -Peripheral -Perisher -Perita -Periton -Perivale -Periwinkle -Perkal -Perkeley -Perkins -Perkinsville -Perkiomen -Perks -Perktel -Perley -Perley Evans -Perleybrooke -Perlich -Perlman -Permanent -Permanente -Permar -Permian -Perna -Pernham -Peronne -Perot -Perouse -Perowne -Perpetual Park -Perpins -Perran -Perraud -Perrault -Perreault -Perreira -Perrell -Perrelli -Perren -Perrers -Perrett -Perri -Perrich -Perrie -Perrin -Perrin Springs -Perrine -Perrineville -Perring -Perrior -Perro Creek -Perrone -Perrot -Perry -Perry Hall -Perry Henderson -Perry Hill -Perry Penney -Perry Vale Windrush -Perry Vale Woolstone -Perry William -Perryfield -Perrygate -Perryhill -Perryland -Perrymans -Perrymans Farm -Perrymead -Perrymont -Perrymount -Perryn -Perryridge -Perrys -Perrys Island -Perrysfield -Perrywinkle -Perrywood -Persant -Perserverance -Perseus -Perseverance -Persfield -Pershing -Pershore -Persia -Persian -Persic -Persimmon -Persimmon Tree -Persimmonn -Persistence -Personette -Pertch -Perth -Perthshire -Pertwee -Peru -Perullo -Perwal -Perwell -Pescadero -Pescadero Creek -Pesce -Pescot -Peshine -Peshtigo -Pestana -Pested -Pested Bars -Pesticide -Pesz -Petain -Petal -Petaluma -Petaluma Hill -Petar -Pete -Pete Dye -Pete Higgins -Pete Miller -Pete Weirs -Peteler -Peter -Peter A McCuen -Peter Behr -Peter Bont -Peter Brock -Peter Bulkeley -Peter Cooper -Peter Coutts -Peter Finch -Peter Hans -Peter Hobart -Peter Island -Peter J Shields -Peter Jefferson -Peter Martin -Peter Meadows -Peter Pan -Peter Parley -Peter Paul -Peter Tufts -Peter V Blazonis -Peter Wilson -Peterborg -Peterborough -Peterhoff -Peterhouse -Peterick -Peterlee -Peterley -Peterman -Peters -Peters Dam Fire -Peters Ranch -Peters Spring -Petersborough -Petersburg -Petersdorf -Petersen -Petersfield -Petersham -Petersilge -Peterson -Petersons -Petersville -Petery -Petes Farm -Petherton -Petit -Petite -Petite Creek -Petith -Petlands -Petley -Petra -Petrarca -Petray -Petrel -Petrell -Petri -Petridge -Petrie -Petrified Forest -Petrig -Petrillo -Petroleum -Petrolia -Petrosyan -Petrus -Petry -Pett -Pettee -Pettees Pond -Petteridge -Petters -Petterson -Pettfield Hill -Pettibone -Pettibush -Petticoat -Pettigrew -Pettingell -Pettis -Pettit -Pettits -Petts -Pettsgrove -Petty -Petunia -Petworth -Petzold -Peugeot -Pevensey -Peverel -Peverell -Peveril -Peverill -Pevey -Pevril -Pevwell -Pewter -Pewterers -Pewterspear -Pewterspear Green -Pexa -Pexhill -Peyla -Peyton -Peyton Randolph -Peytonia -Pezzi -Pezzini -Pfaff -Pfeffer -Pfeiffer -Pfeiffer Ranch -Pfeifle -Pfieffer -Pfingsten -Pfister -Pfitzer -Pfund -Phaeton -Phaeton Rock -Phaiban -Phalanx -Phalen -Phaneuf -Phanor -Phantom -Phar Lap -Pharlap -Pharmer -Pharoahs -Pheasant -Pheasant Brook -Pheasant Chase -Pheasant Creek -Pheasant Fields -Pheasant Hill -Pheasant Hills -Pheasant Hollow -Pheasant Hunt -Pheasant Lake -Pheasant Landing -Pheasant Ridge -Pheasant Run -Pheasant Trail -Pheasant Walk -Pheasant Wood -Pheasant Woods -Pheasants -Pheasantwoods -Phebe -Pheby -Phegley Ridge -Phelan -Phelips -Phelp -Phelps -Phene -Pheonix -Phesant -Phethean -Phil -Phil Mar -Philadelphia -Philamena -Philanthropic -Philben -Philbrick -Philbrook -Philchurch -Philemon -Philemon Whale -Philip -Philip Darch -Philip Digges -Philip Howard -Philip Lee -Philip Sydney -Philipp -Philipps -Philips -Philips Mill -Phillida -Phillimore -Phillip -Phillip Brooks -Phillip Farm -Phillip Powers -Phillipa -Phillipi -Phillipi Creek -Phillipp -Phillippi Creek -Phillips -Phillips Beach -Phillips Brook -Phillips Farm -Phillips Manor -Phillips Oak -Phillips Park -Phillips Pond -Phillips Ranch -Phillipse -Phillis -Philmead -Philmont -Philmore -Philo -Philpot -Philpot End -Philpott -Phineas -Phineas Pett -Phinney -Phipp -Phipps -Phipps Bridge -Phipps Hatch -Phirne -Phleger -Phlox -Phoebe -Phoebeth -Phoenix -Phoenix Center -Phoenix Lake -Phoneline -Photinia -Photo -Phroane -Phylcis -Phyldan -Phyllis -Phyllis Court -Phyllis Wheatley -Phylliss -Phylmor -Physicians -Physics -Physics Ellipse -Phythian -Piacenti -Piaget -Piano -Piave -Piazza -Pibac -Pibrock -Picadilly -Picard -Picardy -Picasso -Piccadilly -Piccadilly Circus -Piccard -Piccoli -Piccotts End -Picha -Pichette -Pichie -Picholine -Pichowicz -Pick -Pickard -Pickaxe -Picken -Pickens -Picker -Pickeral -Pickerel -Pickering -Pickersgill -Picket -Picket Oaks -Pickets -Pickets Lock -Pickets Post -Pickett -Picketts -Picketts Lock -Pickfair -Pickford -Pickhill -Pickhurst -Pickman -Pickmere -Pickmoss -Pickpocket -Picksley -Pickstone -Pickwell -Pickwick -Pickwick Hill -Pickwood -Pickworth -Picnic -Picnic Access -Picnic Island -Picnic Point -Pico -Picone -Picosin -Picot -Picton -Pictor -Picts -Pictun -Picture -Pidding -Piddington -Piddock -Pidgeon Hill -Pidgeon Meadow -Pidham -Pied Piper -Piedmont -Piedmont Trail -Piedra -Piehl -Pield Heath -Pielet -Piemonte -Pier -Pier Approach -Pier Point -Pierce -Pierce Farm -Pierce Hill -Pierce Mill -Pierce Point -Pierce Ranch -Piercefield -Pierces -Piercy -Pierini -Pierino -Piermont -Pierpoint -Pierpont -Pierport -Pierre -Pierre Curie -Pierrefondes -Pierrepoint -Pierrepont -Pierron -Pierrpont -Piers -Piersoll -Pierson -Pierson Lake -Pierson Miller -Pierview -Piesley -Piester -Pietro -Piety Corner -Piezzi -Pig -Pig Rock -Pigbush -Pigdown -Pigeon -Pigeon Cote -Pigeon Farm -Pigeon Fork -Pigeon Hill -Pigeon Hollow -Pigeon Point -Pigeonhouse -Piggotshill -Piggott -Piggotts -Pigment -Pigott -Pigs Eye Lake -Pigstye Green -Pihl -Pika -Pike -Pike Branch -Pike End -Pike Lake -Pike Ridge -Pike School -Pikefish -Pikes -Pikes Hill -Pikes Peak -Pikeview -Pikey -Pikkney -Piland -Pilar Ridge -Pilarcitos -Pilarcitos Creek -Pilarcitos Quarry -Pilch -Pilcher -Pilcher Park -Pilchuk -Pilcot -Pilden -Pildra -Pile -Pilgram -Pilgrim -Pilgrim Hill -Pilgrimage -Pilgrims -Pilgrims Inn -Pilkington -Pill Hill -Pillar -Pillar Box -Pilling -Pillings -Pillings Pond -Pillmoss -Pillon -Pillory -Pillow -Pillow Lace -Pillowlace -Pillsbury -Pilning -Pilot -Pilot Knob -Pilot Rock -Pilothouse -Pilsbury -Pilsen -Pilsworth -Piltdown -Pilvinis -Pima -Pimaston -Pimblett -Pimento -Pimhole -Pimienta -Pimlico -Pimlott -Pimmit -Pimmit Run -Pimpernel -Pin Cherry -Pin Cushion -Pin Oak -Pina -Pinard -Pincents -Pincey -Pinch Brook -Pinchbeck -Pincherry -Pinchin -Pinchot -Pinchpools -Pinckney -Pincott -Pindar -Pindari -Pindell -Pindell School -Pinder -Pindle -Pine -Pine Acre -Pine Acres -Pine Aire -Pine Arden -Pine Bluff -Pine Breeze -Pine Brook -Pine Cliff -Pine Cone -Pine Cove -Pine Creek -Pine Crest -Pine Croft -Pine Flat -Pine Forest -Pine Garden -Pine Glen -Pine Grove -Pine Haven -Pine Hill -Pine Hill Cemetery -Pine Hills -Pine Hollow -Pine Hurst -Pine Island -Pine Knoll -Pine Knot -Pine Lake -Pine Lodge -Pine Manor -Pine Meadow -Pine Meadows -Pine Mountain -Pine Mountain Fire -Pine Needle -Pine Needles -Pine Oak -Pine Orchard -Pine Park -Pine Plain -Pine Point -Pine Ridge -Pine Shadow -Pine Spring -Pine Swamp -Pine Top -Pine Trail -Pine Tree -Pine Tree Brook -Pine Trees -Pine Vale -Pine Valley -Pine View -Pine Way -Pine Whiff -Pine Wild -Pine Wood -Pine Woods -Pineacre -Pineapple -Pineapple Grove -Pinebluff -Pinebrae -Pinebrook -Pinecastle -Pinecliff -Pinecone -Pinecote -Pinecreek -Pinecrest -Pinecrest Heights -Pinecrest Office Park -Pinecrest Vista -Pinecroft -Pinedale -Pinefield -Pineglen -Pinegrove -Pinehaven -Pinehill -Pinehurst -Pineknob -Pineknoll -Pineknot -Pinelake -Pineland -Pinelands -Pinelawn -Pineleigh -Pinell -Pinelynn -Pinemont -Pinemount -Pineneck -Pineneedle -Pineo -Piner -Piner Creek -Pinercrest -Pineridge -Pines -Pines Lake -Pinesfield -Pinetop -Pinetown -Pinetree -Pinetum -Pinevale -Pineview -Pineville -Pineway -Pinewold -Pinewood -Pinewoods -Piney -Piney Branch -Piney Church -Piney Glade -Piney Glen -Piney Grove -Piney Knoll -Piney Lodge -Piney Meetinghouse -Piney Point -Piney Pond -Piney Ridge -Piney Spring -Pinfod -Pinfold -Ping -Ping On -Pingate -Pingot -Pingree -Pingree Farm -Pingry -Pinho -Pini -Pinions -Pink -Pink Barn -Pink Woods -Pinkert -Pinkerton -Pinkham -Pinkle Hill -Pinkney -Pinkneys -Pinkspire -Pinkwell -Pinnacle -Pinnacle Ridge -Pinnacles -Pinneberg -Pinner -Pinner Love -Pinner Hill -Pinner Park -Pinney -Pinnington -Pinnock -Pinntage -Pinoak -Pinole -Pinole Shores -Pinole Valley -Pinon -Pinorie -Pinot -Pinot Noir -Pinrail -Pinrock -Pinson -Pinta -Pintail -Pintard -Pinter -Pinto -Pinto Lake -Pinto Trail -Pinview -Pinyaro -Pinyon -Pio Pica -Pioche -Pioneer -Pioneer Creek -Pioneer Hills -Pioneer Varni -Pioxi -Pipchin -Pipeline -Pipeline Fire -Pipeline Service -Piper -Piper Ridge -Piperhill -Pipers -Pipers Glen -Pipestone -Pipewell -Pipewood -Piping Rock -Pipit -Pippa -Pippen -Pippin -Pippins -Pippins Green -Pippit -Pippitta -Pippo -Piquet -Piquets -Pirate -Pirbright -Pirie -Pirrama -Pirrone -Pirton -Piscataway -Piscataway Landing -Piscataway Run -Pisces -Pisgah -Pisgah Marbury -Pishiobury -Pissaro -Pissarro -Pista -Pistache -Pistachio -Pistacia -Pit -Pit Farm -Pitcairn -Pitchcombe -Pitcher -Pitchford -Pitchfront -Pitcroft -Pitfall -Pitfield -Pitfold -Pither -Pitkin -Pitland -Pitlochry -Pitman -Pitner -Pitney -Pits Farm -Pitscottie -Pitsea -Pitsea Hall -Pitsford -Pitsham -Pitshanger -Pitsmoor -Pitstock -Pitt -Pitt Clarke -Pitt School -Pitt Town -Pittbrook -Pittis -Pittland -Pittman -Pittoni -Pitts -Pittsburg -Pittsburg Waterfront -Pittsburgh -Pittsfield -Pittsmead -Pittson -Pittsville -Pittwater -Pitz -Pius -Pivetta -Pivington -Pix -Pix Farm -Pixham -Pixie -Pixies Hill -Pixley -Pixmore -Pizarro -Pizien Well -Pizzorni -Place -Place Farm -Placehouse -Placenza -Placer -Placer Creek -Placer Mine -Placer Oaks -Placer Ridge -Placerville -Placerville Payen -Places -Placid -Placitas -Plafsky -Plaid -Plain -Plainedge -Plainfield -Plainfield Naperville -Plains -Plaintain -Plainview -Plainville -Plainwood -Plaister -Plaistow -Plaistow Green -Plaistow Park -Plam -Plamondon -Plan -Planada -Planchet -Planders -Plandome -Plane -Plane Tree -Planet -Planetree -Plank -Planky -Plant -Plant Hill -Plantagenet -Plantain -Plantation -Plante -Planten -Planters -Planters Field -Planthurst -Planting Field -Planting Fields -Plasecki -Plash -Plashes -Plashet -Plashet Grove Green -Plaskett -Plaskett Forest -Plass -Plassey -Plassy -Plastics -Plasto -Plata -Plate -Plate Mill -Plateau -Plater -Platform -Platform Bridge -Platina -Platinum -Plato -Platt -Platt Fold -Platt Hill -Platt House -Platt Ridge -Platte -Platten -Platting -Plattner -Platts -Plattsburg -Plattsdale -Plattville -Plattwood -Platwood -Platzer -Plauderville -Plawhatch -Plawsfield -Plaxdale Green -Plaxtol -Play Bowl -Playa -Playa Del Sol -Playa del Rey -Playden -Player -Players Pond -Playfair -Playfield -Playford -Playground -Playhatch -Playland Access -Playstead -Playstool -PlazA -Plaza -Plaza America -Plaza Service -Pleasance -Pleasant -Pleasant Acre -Pleasant Acres -Pleasant Chase -Pleasant Colony -Pleasant Crest -Pleasant Echo -Pleasant Garden -Pleasant Gate -Pleasant Glen -Pleasant Grove -Pleasant Grove School -Pleasant Heights -Pleasant Hill -Pleasant Hollow -Pleasant Knoll -Pleasant Lake -Pleasant Meadow -Pleasant Meadows -Pleasant Oaks -Pleasant Park -Pleasant Plains -Pleasant Ridge -Pleasant Run -Pleasant Spring -Pleasant Springs -Pleasant Valley -Pleasant View -Pleasant Vista -Pleasant Wood -Pleasant Woods -Pleasantdale -Pleasanton -Pleasanton Sunol -Pleasants Valley -Pleasantview -Pleasantville -Pleasent -Pleasington -Pleasure -Pleasure Creek -Pleasure House -Pleasure Island -Pleasure Pit -Pleasure Point -Pleasure View -Pleck -Pledger -Pleides -Pleitner -Plender -Plenge -Plenty -Plentywood -Plesant -Pleshey -Pletcher -Plevna -Pleydell -Plimpton -Plimsoll -Plinston -Pliny -Plitt -Ploch -Plodder -Plog -Plomer -Plomer Green -Plomosa -Plotner Farm -Plough -Plough Inn -Plough Wents -Ploughbank -Ploughley -Plover -Plover Hill -Plow -Plowden -Plowgate -Plowman -Pluckley -Plucksbridge -Pluff -Plug -Plum -Plum Beach Point -Plum Blossom -Plum Creek -Plum Dale -Plum Grove -Plum Hill -Plum Hollow -Plum Island -Plum Orchard -Plum Point -Plum Ranch -Plum Tree -Plum Valley -Plumage -Plumas -Plumas Lake -Plumberow -Plumberow Mount -Plumberrow -Plumbers Pasture -Plumbley -Plumbridge -Plume -Plumer -Plumeria -Plumfield -Plumford -Plumleigh -Plumley -Plumley Moor -Plummer -Plummerden -Plummers -Plummers Promise -Plumosa -Plumpointe -Plumpton -Plumptre -Plumrose -Plums -Plumstead -Plumstead Common -Plumstead High -Plumstone -Plumtree -Plumtree Cross -Plumwood -Plumy Feather -Plunge -Plunkett -Plurenden -Pluskota -Pluth -Pluto -Plyers Mill -Plymbridge -Plymoth Farms -Plymouth -Plymouth River -Plymouth Rock -Plympton -Plymton -Po -Po River -Poa Annua -Poag -Poar -Poate -Pobgreen -Pocahontas -Pocantico -Pocasset -Pocasset on Asbury -Pocatello -Pochard -Pochet -Pochin -Pock -Pocket -Pocket Nook -Pocketsdell -Pockford -Pockley -Pocklington -Poco -Pocock -Pococks -Pocol -Pocomoke -Pocono -Pocumtuck -Podbury -Podesta -Podesto -Podium -Podlin -Podmore -Podnor -Pods -Pods Brook -Podsmead -Podva -Poe -Poehlman -Poet -Poetry -Poets -Poett -Pogany -Poggi -Pogson -Pohick -Pohick Bay -Pohick Crest -Pohick River -Pohono -Poillon -Poinciana -Poindexter -Poinier -Poinsetta -Poinsettia -Point -Point Alabama -Point Allerton -Point Breeze -Point Creek -Point Dechene -Point East -Point Field -Point Gallinas -Point Group Camp -Point Hollow -Point Lobos -Point No Point -Point O Woods -Point Oak -Point Piper -Point Pleasant -Point Reyes Petaluma -Point Rider -Point Ridge -Point San Bruno -Point San Pedro -Point Somerset -Point View -Point of Timber -Point of Woods -Pointcross -Pointe -Pointe Claire -Pointe Pacific -Pointe Vista -Pointer -Pointer Ridge -Pointers -Pointview -Pointwell -Poirier -Poise Brook -Poisson -Poitras -Pokagon -Pokanoket -Poker -Poker Flat -Poko -Pokolbin -Pokonoket -Poland -Polar -Polar Bear -Polari -Polaris -Polding -Pole -Pole Hill -Pole Line -Pole Moor New Hey -Pole Mountain -Pole Plain -Poleacre -Polebrook -Polecat -Polecroft -Polefield -Polefield Hall -Polegate -Polehanger -Polen -Poles -Polesden -Polestub -Polesworth -Poley -Polhemus -Polhill -Poli -Polianski -Police -Polidoris -Polifly -Polillio -Poling -Polito -Politzer -Polk -Polk Saint Croix -Pollack -Pollard -Pollardrow -Pollards -Pollards Oak -Pollards Wood -Polled Hereford -Pollen -Polletts -Polley -Pollifrone -Pollin -Polling House -Pollis -Pollitt -Pollock -Polly -Polly Anna -Polly Park -Pollywick -Pollywog -Polo -Polo Club -Polo Crosse -Polo Field -Polo Pointe -Polo Pony -Polonia -Polonius -Polonsky -Polruan -Polson -Polsted -Poltimore -Polvadero -Polwarth -Polworth -Polygon -Polynesia -Polynesian -Polytechnic -Pomace -Pomander -Pomar Vista -Pombo -Pombo Square -Pombridge -Pomciticut -Pome -Pomegranate -Pomelo -Pomerado -Pomerol -Pomeroon -Pomeroy -Pomeworth -Pomfret -Pommander Walk -Pommel -Pommer -Pommeroy -Pomo -Pomoja -Pomoken -Pomona -Pompano -Pompei -Pompeii -Pomper -Pompey -Pomponi -Pomponio -Pompositticut -Pompton -Pomroy -Ponca -Ponce -Ponce de Leon -Poncetta -Poncia -Pond -Pond Brook -Pond Copse -Pond Cottage -Pond Crest -Pond Derosa -Pond Edge -Pond End -Pond End School -Pond Farm -Pond Field -Pond Head -Pond Hill -Pond Home -Pond House -Pond Meadow -Pond Moor -Pond Park -Pond Plain -Pond Point -Pond Ridge -Pond Run -Pond Spice -Pond View -Pond Wood -Pondbrook -Pondcrest -Pondcroft -Ponder -Pondera -Ponderay -Ponderlay -Ponderosa -Ponderrosa -Pondfield -Pondhaven -Pondholton -Ponds -Ponds Edge -Ponds Wood -Pondside -Pondtail -Pondview -Pondville Hospital -Pondwick -Pondwicks -Pondwood -Ponefract -Ponhill -Ponikin -Ponikin Bridge -Poningo -Ponkapoag -Ponler -Ponnell -Ponsard -Ponselle -Ponsford -Ponsi -Ponsonby -Pont -Pontefract -Ponteverde -Ponti -Pontiac -Pontigo Glen -Ponto -Ponton -Pontos -Ponus -Pony -Pony Brown -Pony Express -Pony Tracks Fire -Pony Trail -Ponyara -Ponytail -Ponza -Pook -Pook Reed -Pookbourne -Pooks Hill -Pool -Pool Bank -Pool Bank New -Pool End -Pool Harrogate -Pool Hollow -Pool House -Pool Ridge -Poole -Poole Court -Pooles -Pooley -Pooley Green -Pooleys -Poolman -Poolmans -Poolsford -Poolton -Poona -Poonah -Poor -Poor Farm -Poor Meadow -Poorhouse -Poors -Poot -Pootings -Pop Becker -Pope -Pope Canyon -Pope Hill -Pope House -Pope Valley -Pope Valley Cross -Popeley -Popes -Popes Head -Popes Head View -Popes Hill -Popham -Popjack -Popkins -Popkins Farm -Popland -Poplar -Poplar Bath -Poplar Branch -Poplar Bridge -Poplar Creek -Poplar Glen -Poplar Grove -Poplar High -Poplar Hill -Poplar Lake -Poplar Leaf -Poplar Ridge -Poplar Tree -Poplar View -Poplarhollow -Poplars -Pople -Poplicans -Popomora -Popondetta -Popov -Popowski -Poppenhusen -Popperwell -Poppinghole -Poppitz -Poppler -Poppleton -Popplewell -Poppy -Poppy Glen -Poppy Hill -Poppy Hills -Poppy House -Poppy Ridge -Poppy Seed -Poppyfield -Poppyhills -Poppyseed -Poppythorn -Popular -Populatic -Poquanticut -Poquita -Porach -Porazzo -Porcaro -Porchester -Porchlight -Porchuck -Porden -Pordon -Porete -Poricy -Porlock -Porpoise -Porrende -Porritt -Porsche -Porsche Preserve -Port -Port Barrington -Port Capital -Port Carteret -Port Center -Port Clinton -Port Cove -Port Echo -Port Hacking -Port Haven -Port Hill -Port Hope Point -Port Imperial -Port Jersey -Port Macquarie -Port Monmouth -Port Norfolk -Port Rae -Port Reading -Port Richmond -Port Rowan -Port Royal -Port Sailwood -Port Sunlight -Port Terminal -Port Tidewood -Port Victoria -Port View -Port Washington -Portadown -Portage -Portage Mountain -Portal -Portcullis Lodge -Porte de Leau -Portelet -Porten -Porteous -Porter -Porter Creek -Porter Gulch -Porter Hill -Porter Plain -Porter Ridge -Porter School -Porter Service -Porterfield -Porters -Porters Cove -Porters Hall -Porters Hill -Porters Park -Portesbery -Portesbury -Portesbury Hill -Porteus -Porthcave -Porthkerry -Porthole -Portia -Portico -Portifino -Portillo -Portina -Portinscale -Portland -Portledge -Portley -Portley Wood -Portlock -Portloe -Portmadoc -Portman -Portmill -Portmore -Portmore Park -Portnall -Portnellan -Portner -Porto -Porto Bello -Porto Marino -Porto Rico -Porto Rosa -Portobago -Portobello -Portobelo -Portofino -Portola -Portola Heights -Portola Meadows -Portola Redwood -Portos -Portpool -Portree -Portrero -Portrush -Portsdown -Portsea -Portshire -Portside -Portsmith -Portsmouth -Portsoken -Portugal -Portview -Portville -Portway -Portwine -Portwood -Porz -Posadera -Posco -Poseidon -Posen -Posey -Poshard -Positano -Positas -Poskus -Posnett -Poss -Possehl -Possum -Possum Hollow -Possum Point -Possum Run -Possumtown -Post -Post Barn -Post Forest -Post Gate -Post Horn -Post House -Post Island -Post Mills -Post Oak -Post Office -Post Office Delce -Post Office Spen -Post Ranch -Post Wood -Postal -Postal Service -Postern -Postley -Postmill -Postoak -Poston -Postscript -Posturpedic -Postwood -Pot Kiln -Potash -Potassium -Potato -Potato Hill -Potawatami -Potawatomi -Potawatomie -Potbelly Beach -Potbridge -Potee -Poteet -Pothier -Potier -Potley Hill -Potomac -Potomac Branch -Potomac Club -Potomac Creek -Potomac Crest -Potomac Falls -Potomac Forest -Potomac Greens -Potomac Heights -Potomac Hills -Potomac Knolls -Potomac Manors -Potomac Meadow -Potomac Mills -Potomac Oak -Potomac Oaks -Potomac Overlook -Potomac Palisades -Potomac Path -Potomac Ridge -Potomac Riding -Potomac River -Potomac School -Potomac Valley -Potomac View -Potomac Vista -Potomac Woods -Potomack -Potomic Tennis -Potomska -Potoroo -Potosi -Potovens -Potrero -Potrero Hills -Potsdam -Pott -Pottawatomie -Pottawattami -Pottens Mill -Potter -Potter Hill -Potteries -Potternewton -Potters -Potters Crouch -Pottersheath -Potterton -Pottery -Potteton -Pottinger -Pottingfield -Pottle -Pottok -Potton -Potts -Potts Point -Pouchen End -Poughkeepsie -Poulet -Poulett -Pouley -Poulin -Pouliot -Poulos -Poulson -Poulter -Poultney -Poulton -Poultry -Pound -Pound Farm -Pound Hollow -Pound Ridge -Poundfield -Poundhurst -Pounds -Pountney -Pountsmonth -Pourier -Poust -Pout -Pout Rock -Poverest -Povershon -Poverty -Poverty Flat -Povey -Povey Cross -Powder -Powder Hill -Powder Horn -Powder House -Powder Mill -Powder Mill Fire -Powder Point -Powderbrook -Powderhorn -Powderhouse -Powdermill -Powderworks -Powdrell -Powdrill -Powell -Powell Cove -Powells -Powells Cove -Powells Creek -Powellton -Power -Power County -Power House -Power Inn -Power Lines -Power Plant -Power Ridge -Powerline -Powers -Powerville -Powhatan -Powhatan Beach -Powhattan -Powicke -Powis -Powissett -Powlett -Pownal -Pownall -Powney -Powster -Powys -Poydras -Poyer -Poyle -Poynder -Poynders -Poynes -Poynings -Poyntell -Poynter -Poynters -Poynton -Poyntz -Poyser -Poyton -Pozieres -Pozza -Pozzan -Prada -Prade -Pradel -Pradera -Pradera Mesa -Prado -Prado Secoya -Prado Vista -Praed -Pragel -Pragnell -Prague -Prah -Prahran -Prahser -Praire -Praire Dunes -Praire Island -Praire Lawn -Prairie -Prairie Center -Prairie City -Prairie Clover -Prairie Creek -Prairie Crossing -Prairie Dog -Prairie Estates -Prairie Falcon -Prairie Farm -Prairie Field -Prairie Flower -Prairie Grass -Prairie Grove -Prairie Hill -Prairie Knoll -Prairie Lakes -Prairie Landing -Prairie Meadow -Prairie Meadows -Prairie Moon -Prairie Oak -Prairie Path -Prairie Point -Prairie Pointe -Prairie Ridge -Prairie Rose -Prairie Sage -Prairie Schooner -Prairie Spring -Prairie Trail -Prairie Vale -Prairie Valley -Prairie View -Prairie Wind -Prairieland -Prairieside -Prairieview -Prairiewood -Prairiewoods -Praise -Prall -Pram -Prancing -Prancing Deer -Pranker -Prarie -Prarie Vale -Prarievale -Prater -Prather -Prathertown -Pratling -Pratolina -Pratt -Pratt Hill -Pratten -Pratton -Pratts -Pratts Farm -Pratts Mill -Pratum -Pray -Prc -Preacher -Preakness -Prebend -Prebendal -Preble -Preble Gardens -Preciado -Precious -Precissi -Precita -Preda -Preddys -Predella -Predmore -Preesall -Preinkert -Prell -Prelude -Premier -Premier Park -Premisy Hill -Premium Outlets -Premium Point -Premium River -Prendergast -Prenkert -Prentice -Prentice Hall -Prentis -Prentiss -Prenton -Presall -Presburg -Presco -Prescot -Prescott -Presdales -Presentation -Preservation -Preserve -Preserverance -President -President Point -Presidental -Presidente -Presidential -Presidents -Presidents Park -Presideo -Presidio -Presland -Presley -Press -Pressley -Pressmont -Pressprich -Presswick -Prestage -Prestancia -Prestbury -Prested -Prestfield -Prestige -Presto -Prestolee -Prestolite -Preston -Preston Beach -Preston White -Prestonfield -Prestons -Prests Mill -Prestwich -Prestwick -Prestwood -Preswick -Preswicke -Pretoria -Prettygate -Prettymans -Preuss -Prevost -Prewett -Prewett Ranch -Prey Heath -Priam -Price -Prices -Prichard -Priddis -Priddle -Priddy -Pride -Pride Crossing -Pride of Baltimore -Prideaux -Prideham -Prideland -Pridemark -Prides -Pridham -Pridmore -Pridmouth -Priebe -Prieboy -Priesing -Priest -Priest Bridge -Priest Park -Priester -Priesters Pond -Priestfield -Priesthorpe -Priestlands Park -Priestley -Priestly -Priestnall -Priests -Priestwood -Prigmore -Prima -Primary -Primasing -Primavera -Prime -Primero -Primett -Primevera -Primitive -Primley -Primley Park -Primm -Primrose -Primrose Hill -Primula -Prince -Prince Albert -Prince Andrew -Prince Arthur -Prince Caspian -Prince Charles -Prince Charlie -Prince Chigo -Prince Consort -Prince Crossing -Prince David -Prince Edward -Prince Edward Park -Prince Edwards -Prince Frederick -Prince George -Prince Georges -Prince Henry -Prince Imperial -Prince James -Prince John -Prince Lake -Prince Philip -Prince Phillip -Prince Regent -Prince Royal -Prince Rupert -Prince William -Prince Willow -Prince of Wales -Princedale -Princedom -Princeleigh -Princes -Princes Park -Princes Riverside -Princesfield -Princess -Princess Ann -Princess Anne -Princess Diana -Princess Eve -Princess Margaret -Princess Marina -Princess Mary -Princess May -Princess Pine -Princethorpe -Princeton -Princeton Park -Princevalle -Princeville -Princewood -Prince’s -Principal -Princton -Prindiville -Prindle -Pringle -Prinknash -Printempo -Printemps -Printer -Printers -Printice -Printing House -Printon -Printworks -Printy -Prinys -Priolo -Prion -Prior -Prior Bolton -Prior Farm -Prioress -Priors -Priors Hatch -Priors Wood -Priorsfield -Priorsford -Priory -Priory Farm -Priory Field -Priory Park -Priory Park Lee -Priory Park Middle -Priory View -Priorywood -Prioulx -Priscilla -Priscilla Alden -Prism -Prison -Pritchard -Pritchards -Priter -Prittlewell -Privado -Private -Private Anthony Rezza -Privateer -Privet -Privett -Privilege -Privit -Pro -Probate -Probert -Probst -Probyn -Procop -Procopio -Procter -Proctor -Proctors -Prodehl -Produce -Producers -Production -Professional -Professional Center -Professional Hill -Proffit -Profitt -Profumo -Program -Progress -Progressive -Progresso -Prom -Promenade -Promentory -Promintory -Promise -Promontory -Promontory Point -Pronto -Properity -Prophet -Proposed -Propp -Props Hall -Prose -Prospect -Prospect Hill -Prospect Knolls -Prospect Park -Prospect Point -Prospector -Prosper -Prosperi -Prosperity -Prospero -Prosser -Protano -Protectocoat -Prothero -Proud -Prout -Prout Farm -Prouty -Provance -Provencal -Provence -Provender -Provenzano -Providence -Providence Forest -Providence Forge -Providence Village -Provident -Province -Provincetown -Provincial -Provis -Proviso -Provo -Provost -Prowse -Proyart -Pru -Prudence -Prudential -Pruetts -Pruitt -Prune -Prune Acres -Prune Blossom -Prune Tree -Prunedale -Prunedale North -Pruneridge -Prunetree -Prunier -Prusakowski -Pruxne -Prybyl Pond -Pryde -Pryer -Pryer Manor -Pryite -Prykes -Pryme -Pryor -Pryors -Pryton -Pryzbylko -Pt Chase -Ptarmigan -Pubins -Public -Public Highway Long -Public Safety -Public Works -Puccini -Puchala -Puck -Puddephats -Pudding -Pudding Brook -Pudding Cake -Pudding Hill -Pudding Mill -Puddingcake -Puddingstone -Puddington -Puddledock -Puddlewharf -Puddon -Pudsey -Pudsey Hall -Pueblo -Pueblo Vista -Puers -Puerto -Puerto Rico -Puerto Vallarta -Puff -Puffer -Puffin -Pug -Puget -Pugh -Puha -Pukwans -Pulaski -Pulaski Hill -Pulawski -Pulborough -Pulens -Pulford -Pulgas -Pulham -Pulido -Pulis -Pullard -Pullborough -Pullen -Pullens -Puller -Pulley -Pulleyns -Pulleys -Pullman -Pulpit -Pulpit Rock -Pulross -Pulsar -Pulsifer -Pulteney -Pulver -Puma -Pumice -Pump -Pump House -Pumphouse -Pumphrey -Pumphrey Farm -Pumpkin -Pumpkin Brook -Pumpkin Hill -Pumpkin Pine -Punch -Punch Bowl -Punch Copse -Punchard -Punchbowl -Punt -Puntey Park -Pupek -Pupkis -Pupple -Purbeck -Purbrook -Purce -Purcell -Purchase -Purchese -Purdey -Purdham -Purdie -Purdom -Purdon -Purdue -Purdun -Purdy -Purdy Point -Purdy Ranch -Purfield -Purfleet -Purgatory -Purify -Purington -Purinton -Purisima -Purisima Creek -Purissima -Puritan -Puritan Mall Service -Purity -Purity Springs -Purkis -Purkiss -Purland -Purleigh -Purley -Purley Bury -Purley Downs -Purley Oaks -Purley Park -Purlings -Purlwell -Purnell -Purneys -Purple Beech -Purple Glen -Purple Hills -Purple Leaf -Purple Martin -Purple Sage -Purpleleaf -Purri -Purrington -Purse -Pursell -Pursers -Pursley -Purson -Purton -Purves -Purvine -Purvis -Purwell -Purwell Hall -Pusan -Pussy Willow -Putah Creek -Putah Creek Lodge -Putarri -Putcie -Putland -Putman -Putnam -Putnam Hill -Putnams -Putney -Putney Bridge -Putney Heath -Putney High -Putney Park -Putnum -Putt -Puttenden -Puttenham -Puttenham Heath -Putter -Putteridge -Putting -Puttnam -Puttney -Puves -Puzone -Pyalla -Pyburn -Pye -Pye Brook -Pyegrove -Pyenest -Pyenot Hall -Pylbrook -Pyle -Pyles -Pym -Pymble -Pymgate -Pymmes -Pymmes Green -Pymms Brook -Pymont -Pyms -Pynders -Pyne -Pynest Green -Pynnings Farm -Pyott -Pyrah -Pyramid -Pyrcroft -Pyrenees -Pyrford -Pyrford Common -Pyrite -Pyrite Mine -Pyrl -Pyrland -Pyrles -Pyrmont -Pyrmont Bridge -Pyro -Pyrola -Pyrossia -Pytchley -Pytha Fold -Pythian -Pyxie -Q Fernwood -Qantas -Qaurnby -Quaas -Quabeck -Quaboag -Quackenbush -Quaddick -Quaddick Mountain -Quaddick Town Farm -Quade -Quadra -Quadrangle -Quadrant -Quadrille -Quadros -Quaid -Quail -Quail Bluff -Quail Canyon -Quail Cove -Quail Creek -Quail Crest -Quail Estates -Quail Haven -Quail Hill -Quail Hollow -Quail Lakes -Quail Meadow -Quail Meadows -Quail Pointe -Quail Ridge -Quail Roost -Quail Run -Quail Valley -Quail Vista -Quail Walk -Quail Woods -Quailbrook -Quailhill -Quails Roost -Quailwood -Quailwood Manor -Quaint -Quaint Acres -Quainton -Quake -Quaker -Quaker Hill -Quaker Hollow -Quaker Knoll -Quaker Meeting House -Quaker Ridge -Quakers -Quakers Hall -Quakers Hill -Quaking -Quaking Aspen -Quale -Quality -Qualls -Quam -Quamba -Quamme -Quance -Quandam -Quander -Quanders Promise -Quandong -Quandt -Quane -Quann -Quannacut -Quannapowitt -Quantas -Quantico -Quantock -Quantrell -Quantrelle -Quantuck -Quantum -Quantum Leap -Quarantine -Quarles -Quarles Park -Quarley -Quarlton -Quarr -Quarrendon -Quarropas -Quarry -Quarry Arm -Quarry Bank -Quarry Bend -Quarry Hill -Quarry Lakes -Quarry Master -Quarry Mount -Quarry Park -Quarry Pond -Quarry Ridge -Quarry Wood -Quarter -Quarter Charge -Quarter Horse -Quarter Landing -Quarter Mile -Quarter Sessions -Quarterbrass Farm -Quarterdeck -Quarterfield -Quarterfield Farms -Quarterfield Park -Quarterhorse -Quartermain -Quartermaine -Quartermass -Quartermaster -Quartermaster Canyon -Quartermile -Quarterstaff -Quartet -Quartette -Quartz -Quaspec -Quassey -Quate -Quater Sessions -Quattro -Quaves -Quay -Quayle -Que -Queander -Quebec -Queen -Queen Adelaide -Queen Alexandra -Queen Ann -Queen Anne -Queen Anne Bridge -Queen Annes -Queen Caroline -Queen Catherine -Queen Chapel -Queen Charlotte -Queen Eleanor -Queen Eleanors -Queen Elizabeth -Queen Elizabeths -Queen Hoo -Queen Mary -Queen Marys -Queen Victoria -Queenair -Queenbeyan -Queenborough -Queendown -Queenhill -Queenhythe -Queens -Queens Brigade -Queens Brook -Queens Chapel -Queens Cross -Queens Crossing -Queens Farm -Queens Gate -Queens Grove -Queens Mead -Queens Park -Queens Row -Queens View -Queens Well -Queens Wood -Queensberry -Queensborough -Queensbridge -Queensbrook -Queensburg -Queensbury -Queenscliff -Queenscroft -Queensdale -Queensdown -Queensferry -Queensgate -Queensguard -Queenshill -Queenside -Queensland -Queensmead -Queensmill -Queensport -Queensthorpe -Queenston -Queenstone -Queenstone Fire -Queenstown -Queenstowne -Queensville -Queensway -Queensway Shaw -Queensway Tennyson -Queenswood -Queenwood -Queen’s -Queirolo -Quell -Quelm -Quelway -Quema -Quemerford -Quemoy -Quenby -Quencer -Quendon -Quentin -Quentin Roosevelt -Quercus -Quernmore -Querques -Query -Query Mill -Quesada -Quest -Questwood -Quetta -Quetzal -Quiamong -Quibble -Quick -Quick Edge -Quick Fox -Quickbourne -Quickedge -Quickley -Quickmoor -Quickrells -Quicksilver -Quickstep -Quidnic -Quien Sabe -Quien Sabe Ranch -Quiescence -Quiet -Quiet Brook -Quiet Cedar -Quiet Harbor -Quiet Knolls -Quiet Meadow -Quiet Oak -Quiet Owl -Quiet Place -Quiet Spring -Quiet Tree -Quiet Valley -Quiet View -Quiet Waters Farm -Quiet Woods -Quietfields -Quietwater -Quietwater Ridge -Quietwood -Quigg -Quiggle -Quigley -Quilberry -Quill -Quill Point -Quillback -Quilp -Quilpie -Quilt Patch -Quilter -Quilters -Quilting -Quimby -Quimby Point -Quinan -Quinapoxet -Quinby -Quince -Quince Mill -Quince Orchard -Quince Ridge -Quince Tree -Quince Valley -Quince View -Quincefield -Quincey -Quincy -Quincy Adams -Quincy Bridge -Quincy Marr -Quincy Shore -Quindel -Quine -Quinlan -Quinlisk -Quinn -Quinn Canyon -Quinnell -Quinnhill -Quinnterra -Quinobequin -Quinque -Quinsenberry -Quinsey -Quinshapaug -Quinsigamond -Quint -Quintal -Quintana -Quintara -Quintard -Quintas -Quinten -Quintette -Quintin -Quintinia -Quinton -Quinton Oaks -Quintree -Quinturn -Quintus -Quinwood -Quiram -Quire -Quirk -Quirkes -Quirnia -Quiros -Quisenberry -Quisenbury -Quisisana -Quisset -Quisset Brook -Quissett -Quist -Quitman -Quito -Quiver -Quiver Ridge -Quixley -Qume -Quo -Quoitings -Quonset -Quorn -Quota -R B Brown -R F Higgins -R Fernwood -R Shore -R. Belanger -R. T. Jones -R.Belanger -REavenswood -Raab -Raabe -Raans -Raap -Rabans -Rabaul -Rabbett -Rabbit -Rabbit Chase -Rabbit Hill -Rabbit Run -Rabbits -Rabbits Run -Rabbitt -Rabies Heath -Rabkin -Rabley Heath -Raboli -Raboth -Rabournmead -Rabro -Rabun -Raby -Raccoon -Race -Race Course -Race Horse -Race Track -Racecourse -Racefield -Racetrack -Rachael -Rachael Manor -Rachael Whitney -Rachel -Rachel Hill -Rachell -Rachelle -Racine -Racing Horse -Rack -Rack Close -Rackham -Rackhouse -Rackstraw -Racoon -Racquet -Racquet Club -Racton -Rad -Radar -Radatz -Raday -Radbourne -Radburn -Radcliff -Radcliffe -Radcliffe Moor -Radcliffe Park -Radclive -Radclyffe -Radcot -Raddant -Raddel -Raddin -Raddin Grove -Raddington -Radfield -Radford -Radha -Radial -Radian -Radiant -Radiata -Radigan -Radio -Radison -Radisson -Radisson Woods -Radium -Radius -Radlet -Radlett -Radlett Park -Radley -Radley Green -Radleys -Radlix -Radmere -Radmore -Radnage Common -Radner -Radnor -Radnormere -Rado -Radoff -Radonich -Radstock -Radtke -Radwick -Radwinter -Rae -Rae Ann -Rae Anne -Raeanne -Raeben -Raeburn -Raechel -Raemore -Raemot -Raes Creek -Rafael -Rafaela -Raff -Raffaele -Raffen -Rafferty -Raffin Green -Raffman -Raffo -Rafkind -Raflo -Rafman -Raftelis -Rafter Ridge -Rafton -Raftree -Rag Hill -Rag Rock -Ragatz -Ragazzi -Ragged Hall -Ragged Hill -Raggio -Raging Brook -Raglan -Ragland -Ragle -Ragle Ranch -Ragmans -Rago -Ragonese -Rags -Ragsdale -Ragstone -Rahara -Rahatyn -Rahlves -Rahn -Rahncliff -Rahul -Rahway -Rahway River -Raich -Raider -Raiders -Raiff -Raikes -Raikes Wood -Rail -Railey -Railroad -Railroad Grade -Railroad Grade Fire -Railroad Seekonk -Railshead -Railside -Railton -Railway -Raimond -Raimonde -Rain -Rain Cloud -Rain Meadow -Rain Tree -Raina -Rainbow -Rainbow Bay -Rainbow Bridge -Rainbow Ranch -Rainbow Ridge -Rainbow View -Raincliffe -Raindance -Raindrop -Raine -Rainer -Raineri -Raines -Rainey -Rainflower -Rainford -Rainforth -Rainham -Rainier -Rainow -Rainsboro -Rainsborough -Rainsborowe -Rainsford -Rainshaw -Rainsong -Rainsville -Rainswood -Raintree -Rainview -Rainville -Rainwell -Rainwood -Rainy Spring -Raisig -Raith -Rak -Rake -Rakehill -Rakewood -Rakstad -Ralco -Raldne -Rale -Raleana -Raleigh -Raleigh Farm -Raleigh Hill -Raleigh Tavern -Raley -Ralliwood -Ralls -Rally -Ralmar -Ralmark -Ralph -Ralph Crossen -Ralph G Hamlin Jr -Ralph Jackson -Ralph Lee -Ralph Mann -Ralph Talbot -Ralph Young -Ralphs -Ralsey -Ralston -Ralston Ranch -Ralstone -Ralwood -Ram -Ram Ridge -Rama -Ramada -Ramal -Ramalho -Ramapo -Ramapo Brae -Ramapo Hills -Ramapo Mountain -Ramapo Valley -Ramble -Ramble Creek -Rambledown -Rambler -Rambler Rose -Ramblers -Ramblewood -Ramblin Rose -Rambling -Rambling Brook -Rambling Ridge -Rambling Rose -Rambling Woods -Rambow -Rambush -Ramby -Ramella -Ramen -Ramer -Ramey -Ramgren -Ramie -Ramillies -Ramish -Ramkay -Ramleh -Ramm -Rammer -Ramney -Ramon -Ramona -Ramondo -Ramone -Ramos -Ramoso -Rampart -Rampayne -Ramptons -Ramridge -Ramrod -Rams -Ramsay -Ramsbottom -Ramsbury -Ramscote -Ramsdale -Ramsdean -Ramsdell -Ramsden -Ramsden Park -Ramsell -Ramsey -Ramsey Main -Ramsgate -Ramshaw -Ramshead -Ramshorn -Ramslye -Ramstad -Ramstead -Ramstree -Ramulis -Ramuz -Ramview -Ran -Ranburn -Ranby -Rance -Rances -Ranch -Ranch River -Ranch View -Rancheria -Ranchero -Ranchette -Ranchita -Ranchito -Ranchland -Rancho -Rancho Adobe -Rancho Arroyo -Rancho Bernardo -Rancho Brazil -Rancho Caballo -Rancho Cabeza -Rancho Calabasas -Rancho Corralitos -Rancho Deep Cliff -Rancho Diablo -Rancho Higuera -Rancho Hills -Rancho Juan Inez -Rancho Laguna -Rancho Lindo -Rancho Madre -Rancho Manuella -Rancho McCormick -Rancho Palomares -Rancho Plaza -Rancho Prieta -Rancho Ramon -Rancho Rea -Rancho Rio -Rancho S Luado -Rancho Silva -Rancho Solano -Rancho Soquel -Rancho Todos Santos -Rancho Ventura -Rancho View -Rancho Vista -Rancho del Lago -Rancho la Baca -Ranchview -Ranchwood -Rancliffe -Rancom -Rand -Randal -Randale -Randall -Randall Farm -Randall Hill -Randall Island -Randall Ridge -Randalls Park -Rande -Randell -Randells -Randell’s -Randerson -Randi -Randle -Randlesham -Randlett -Rando -Randol -Randol Creek -Randolph -Randolph Macon -Random -Random Hills -Random Run -Randonstone -Randou -Rands -Rands Clough -Randville -Randwick -Randwood -Randy -Randys -Ranelagh -Ranelegh -Raneleigh -Raneys -Ranford -Ranfre -Ranfurley -Ranfurly -Range -Range Heights -Rangel -Rangeley -Rangely -Rangely Ridge -Rangemoor -Rangemore -Ranger -Rangers -Rangers Retreat -Rangeview -Rangeway -Rangewood -Rangley -Rangoon -Ranicar -Ranick -Ranier -Rankin -Rankine -Ranks Green -Ranleagh -Ranleigh -Ranleigh Manor -Ranlett -Ranley -Ranmere -Ranmore -Ranmore Common -Rannal -Ranney -Rannoch -Rannock -Ranport -Ransdell -Ransell -Ransfield -Ransley -Ransom -Ranson -Ranspot -Ranston -Ranters -Rantoul -Rantoule -Ranulf -Ranworth -Rapelye -Raper -Raphael -Raphaels -Rapid -Rapidan -Rapids -Rapley -Rapley Preserve -Rapley Ranch -Rapley Ridge -Raposa -Rapp -Rappahannock -Rappahanock -Rappahanook -Rappax -Rappleyea -Rapsley -Raptor -Raquel -Raritan -Raritan Reach -Rasbottom -Rascher -Rashawn -Rashida Muhammad -Rashke -Raskin -Raskulinecz -Rasmussen -Rason -Raspberry -Raspberry Hill -Raspberry Plain -Rasper -Rassani -Rassbottom -Rassignini -Rastell -Rasweiler -Rat -Ratchford -Ratcliff -Ratcliffe -Ratcliffe Cross -Ratcliffe Manor -Ratekin -Raters -Rath -Rathan -Rathane -Rathbone -Rathbourne -Rathbun -Rathburn -Rathcoole -Rathen -Rathfern -Rathgar -Rathlin -Rathmann -Rathmel -Rathmell -Rathmore -Rathwell -Ratlin -Ratner -Rattle Snake Hill -Rattlesnake -Rattlesnake Hill -Ratto -Rattray -Rattwick -Ratzer -Rau -Raub -Raul -Raupach -Raupp -Rausch -Ravatt -Rave -Ravel -Raveley -Ravelston -Raven -Raven Brook -Raven Hill -Raven Rock -Ravena -Ravenbank -Ravendale -Ravenel -Ravenet -Ravenfield -Ravenglass -Ravenhill -Ravenhurst -Ravenna -Ravenoak -Ravenoak Park -Ravenor Park -Ravenrock -Ravens -Ravens Cove -Ravens Crest -Ravens Head -Ravensbourne -Ravensbourne Park -Ravensbury -Ravenscliffe -Ravenscourt -Ravenscraig -Ravenscroft -Ravensdale -Ravensdon -Ravenshaw -Ravenshurst -Ravenslea -Ravensmead -Ravenstone -Ravenswood -Ravensworth -Ravenue -Ravenwood -Ravina -Ravine -Ravine Forest -Ravine Park -Ravine View -Ravine Woods -Ravinia -Ravinia Park -Ravinoaks -Ravizza -Ravnescroft -Ravona -Ravoux -Raw -Rawcliffe -Rawding -Rawdon -Rawhide -Rawhiti -Rawleigh -Rawles -Rawley Springs -Rawling -Rawlings -Rawlins -Rawlinson -Rawls -Rawlyn -Rawnsley -Rawreth -Rawson -Rawson Bridge -Rawson Hill -Rawsthorne -Rawston -Rawstorn -Rawstorne -Rawstron -Ray -Ray Harvey -Ray Hill -Ray Lea -Ray Leonard -Ray Lodge -Ray May -Ray Mead -Ray Moses -Ray Park -Ray Wise -Rayanna -Raybarn -Raybel -Rayben -Raybor -Rayborn Creek -Raybrook -Rayburn -Raycroft -Raydale -Raydean -Raydol -Raydon -Raydons -Raye -Rayfield -Rayford -Rayjohn -Rayland -Raylands -Raylands Way Cranmore -Rayleigh -Rayleigh Downs -Raylen -Rayley -Raylow -Raym -Raymar -Rayme -Raymead -Rayment -Raymer -Raymond -Raymond Hall -Raymonds -Raymoor -Raymound -Raymundo -Raymus -Raynahm -Rayne -Raynel -Raynel Mount Raynel -Rayner -Rayners -Raynes -Raynham -Raynold -Raynor -Raynsford -Raynton -Raynville -Rays -Rayshire -Rayson -Raywood -Razo -Rea -Reabrook -Reach -Read -Read Head -Readbourne -Reade -Reader -Readers -Reades -Reading -Reading Arch -Reading Hill -Readon -Reads -Reads Rest -Readscroft -Readville -Ready -Readys -Reagan -Reagent -Reaghs Farm -Real -Reality -Realm -Realton -Ream -Reamer -Reamwood -Reamy -Reaney -Reaper -Rear Abbey -Rear Main -Rear Perkins -Rear Wildwood -Rear of Marsh -Rearden -Reardon -Reares -Reason -Reaston -Reaves -Reavis -Reb -Reb Yank -Reba -Rebboli -Rebeau -Rebecca -Rebecca Park -Rebeiro -Rebekah -Rebel -Rebel Run -Rebel Walk -Rebelo -Rebels -Reber -Recard -Recht -Recino -Recker -Reckinger -Reckitt -Reconcilliation -Record -Recovery -Recreation -Recreation Ground -Recreation Park -Rector -Rectory -Rectory Park -Reculver -Recycle -Recycling -Red -Red Oak -Red Acre -Red Admiral -Red Alder -Red Apple -Red Ash -Red Bank -Red Bark -Red Barn -Red Barracks -Red Berry -Red Birch -Red Bird -Red Branch -Red Brick -Red Brick Farm -Red Bridge -Red Bud -Red Cedar -Red Cedar Point -Red Cedars -Red Cherry -Red Circle -Red Clay -Red Cloud -Red Clover -Red Coach -Red Coat -Red Cottage -Red Cow -Red Creek -Red Cross -Red Cypress -Red Deer -Red Dog Creek -Red Eagle -Red Elk -Red Fall -Red Farm -Red Fern -Red Forest -Red Fox -Red Frank -Red Gate -Red Grave -Red Ground -Red Hall -Red Harvest -Red Haven -Red Haw -Red Hawk -Red Hawk Canyon -Red Hill -Red Hills -Red Hook -Red Horse Tavern -Red House -Red Jacket -Red Jade -Red Leaf -Red Lion -Red Lion Lower -Red Maple -Red Miles -Red Mill -Red Mine -Red Mountain -Red Oad -Red Oak -Red Oak Service -Red Patch -Red Peak -Red Pheasant -Red Pine -Red Ribbons -Red Ridge -Red River -Red Robin -Red Rock -Red Rocks -Red Rome -Red Roof -Red Rose -Red Rum -Red Sherry -Red Sky -Red Spring -Red Spruce -Red Tail -Red Top -Red Willow -Red Winery -Red Wing -Red Wood -Redacre -Redan -Redar -Redbank -Redberry -Redbird -Redbourn -Redbournbury -Redbourne -Redbournebury -Redbrdge -Redbridge -Redbrook -Redbud -Redburn -Redcar -Redcastle -Redchurch -Redcliff -Redcliffe -Redclyffe -Redco -Redcoach -Redcoat -Redcot -Redcote -Redcourt -Redcroft -Redd -Reddall -Reddan -Redden -Redden Court -Reddfield -Reddick -Redding -Redding Park -Redding Ridge -Reddings -Reddington -Reddington Ridge -Reddins -Reddish -Reddish Vale -Reddisher -Reddown -Reddy -Rede Court -Rede Wood -Redehall -Redeker -Reden -Reder -Redesmere -Redfearn -Redfern -Redfield -Redford -Redgap -Redgate -Redgrave -Redgrove -Redgum -Redhall -Redhatch -Redhaven -Redhawk -Redhead -Redhill -Redhills -Redhook -Redhouse -Reding -Redington -Redins -Redisher -Redlac -Redlake -Redland -Redlands -Redleaf -Redleaves -Redman -Redmans -Redmayne -Redmead -Redmen -Redmere -Redmiles -Redmire -Redmond -Redmont -Redmoor -Redmore -Redmount -Redmyre -Rednal -Redneck -Redner -Redoak -Redoaks -Redondo -Redondo Beach -Redoubt -Redpine -Redpol -Redpoll -Redricks -Redriff -Redriffe -Redrock -Redrose -Redruth -Redshank -Redshaw -Redskin -Redskin Park -Redskins -Redstart -Redstock -Redston -Redstone -Redstone Hill -Redtail -Redthorn -Redvales -Redvers -Redvers Buller -Redview -Redwall -Redwell -Redwing -Redwings -Redwood -Redwood Canyon -Redwood Gulch -Redwood Heights -Redwood Hill -Redwood Hwy Frntg -Redwood Lodge -Redwood Oak -Redwood Retreat -Redwood Shores -Redwood Terrace -Redwood Tree -Reebenacker -Reece -Reece Heights -Reecemar -Reed -Reed Crescent Bryony -Reed Hall -Reed Hill -Reed Knoll -Reed Ranch -Reedbird -Reede -Reeder -Reedgate -Reedham -Reedham Park -Reedhurst -Reedie -Reedling -Reeds -Reeds Mill -Reedsdale -Reedsfield -Reedshaw -Reedswood -Reedworth -Reedy -Reedy Brook -Reedy Meadow -Reef -Reef Point -Reely -Reem -Reenglass -Rees -Reese -Reetey -Reeve -Reeves -Reevey -Refinement -Refinery -Reflection -Reflections -Reform -Refugio -Refugio Valley -Refy -Regal -Regal Lily -Regal Oak -Regal West -Regal Wood -Regalia -Regan -Regan Hall -Reganti -Regarder -Regarth -Regas -Regatta -Regency -Regency Crest -Regency Forest -Regency Grove -Regency Knoll -Regency Manor -Regency Oaks -Regency Park -Regency Ridge -Regency Woods -Regeneration -Regent -Regent Park -Regents -Regents Park -Regents Tower -Regentville -Regentwood -Reger -Regimental -Regina -Reginald -Regio -Region -Regional -Regional Center -Regis -Regnart -Regnart Canyon -Regnid -Regor -Regrave -Regulos -Regulus -Regwill -Rehbaum -Rehling -Rehn -Rehrmann -Reiby -Reich -Reichelt -Reicher -Reichert -Reichling -Reichman -Reid -Reid Pond -Reidel -Reidhaven -Reidmond -Reids Hill -Reids Roost -Reidsville -Reifel -Reiffel -Reigate -Reiger -Reighton -Reigl -Reign -Reihl -Reiker -Reiland -Reiley -Reiling -Reille -Reilleys -Reilly -Reiman -Reimche -Reimer -Reimers -Reims -Rein -Reina -Reina del Mar -Reindeer -Reinekers -Reinelt -Reiner -Reiners -Reinert -Reingold -Reinhard -Reinhardt -Reinhart -Reinhold -Reinickendorf -Reinking -Reinman -Reinmann -Reino -Reins Lee -Reinwood -Reis -Reisewitz -Reising -Reisling -Reisner -Reiss -Reiten -Reiter -Reith -Reitveldt -Reitz Lake -Relander -Relay -Reld -Relda -Reldyes -Relentless -Relf -Reliance -Reliant -Reliez Highland -Reliez Valley -Relihan -Relkin -Rellim -Relocation -Relyea -Rem -Rembrandt -Rembrant -Remco -Rememberance -Remembrance -Remenham -Remenham Church -Remer -Remi -Remick -Remigio -Remillard -Remin -Remington -Remital -Remly -Remmel -Remmey -Remmos -Remnant -Remo -Remora -Remsen -Remsens -Remson -Remuda -Remuera -Remus -Ren -Rena -Renaissance -Renaldo -Renard -Renate -Renaud -Renault -Renaux -Renchler -Rendall -Rendlesham -Rendon -Rene -Renee -Renee Ann -Renforth -Renfrew -Renfro -Renhult -Reni -Renida -Renie -Renison -Renita -Renke -Renken -Renker -Renmar -Renmark -Renmin -Renmuir -Renn -Rennee -Rennell -Renner -Rennes -Rennet -Rennie -Rennie Smith -Renninger -Renny -Reno -Renoir -Renoir Port -Renolds -Renouf -Renoux -Renova -Renown -Renshaw -Rensselaer -Rensslear -Rental Car -Renters -Renton -Renton Maple Valley -Rentoul -Renway -Renwick -Renwick Park -Renwood -Renz -Renzo -Reo -Reock -Reon -Repetti -Repetto -Replingham -Report -Reporton -Reposa -Repository -Reposo -Reppan -Reppy -Representative -Reprise -Repton -Repton Manor -Republic -Republican -Requa -Reque -Resaca -Rescigno -Rescue -Research -Research Park -Reseau -Reseca -Reseda -Reservation -Reserve -Reservior -Reservoir -Reservoir Access -Reservoir Heights -Reservoir Hill -Resevoir -Residence -Residency -Resident -Reskin -Resnik -Resolution -Resota -Response -Ressa -Rest -Rest Point -Restarick -Restful -Restharrow -Resthaven -Reston -Restormel -Restwell -Restwood -Resty -Reta -Retford -Retirement -Retiro -Retner -Retrato -Retreat -Retriever -Retrop -Retta -Rettendon -Rettew -Rettig -Rettman -Return -Retz -Reuben -Reubens -Reunion -Reuss -Reuten -Reuter -Rev Henry -Rev JJ Evans -Rev Thomas Hooker -Reva -Reva Ridge -Revel -Revell -Revell Downs -Revelon -Revels -Revelstok -Revelstoke -Revenge -Revenna -Revensbourne -Revensey -Reventlow -Rever -Revere -Revere Beach -Revere House -Reverend Burns -Reverend Davis -Reverend R A Burke -Reverend Walton -Reverse -Revey -Revie -Review -Reville -Revillo -Revingstone -Revock -Revoir -Revolution -Revolutionary -Revolutionary Ridge -Revonah -Revonna -Rewe -Rewell -Rewley -Rex -Rexburg -Rexford -Rexhame -Rexland -Rexleigh -Rexmore -Rey -Reyam -Reycraft -Reycroft -Reydon -Reyem -Reyer -Reyes -Reymont -Reymouth -Reyna -Reynal -Reynaldo -Reynard -Reynards -Reynardson -Reynaud -Reynell -Reyner -Reynold -Reynolds -Reynolds Mill -Reynosa -Reyome -Reywood -Rfd Checker -Rfd Coach -Rfd Country Club -Rfd Lexington -Rfd Lincoln -Rfd Old Hicks -Rfd Popp -Rfd Shenandoah -Rfd Shiloh -Rhame -Rhapsody -Rhea -Rheam -Rheem -Rhen -Rhett -Rhianna -Rhine -Rhinecliff -Rhinehart -Rhinelander -Rhinesmith -Rhinestone -Rhinette -Rhita -Rhiwlas -Rhoades -Rhoda -Rhode -Rhode Hall -Rhode Harbor -Rhode Island -Rhodell -Rhodenda -Rhodes -Rhodesia -Rhodeswell -Rhodeswood -Rhodewell -Rhodin -Rhododendron -Rhodora -Rhodrons -Rhody -Rhonda -Rhonda Rheault -Rhondda -Rhone -Rhos -Rhosleigh -Rhoy -Rhubena -Rhude -Rhuland -Rhus -Rhus Ridge -Rhyan -Rhyl -Rhynas -Rhys -Ria -Riach -Rialto -Riano -Rib -Ribble -Ribblesdale -Ribbon -Ribbs -Ribchester -Ribeiro -Ribera -Ribero -Ribier -Ribston -Ribstone -Ric -Rica -Ricard -Ricardo -Ricca Farm -Riccardo -Riccards -Riccat -Ricci -Ricciuti -Rice -Rice City -Rice Creek -Rice Lake -Rice Mill -Rice Point -Rice Spring -Ricefield -Riceman -Rich -Rich Acres -Rich Branch -Rich Hill -Rich Meadow -Rich Valley -Richal -Richard -Richard Allen -Richard Burch -Richard House -Richard J Brown -Richard Lawrence -Richard Manor -Richard Meyjes -Richard Montgomery -Richard Simpson -Richard Tongue -Richardi -Richards -Richardshaw -Richardson -Richardson Nursery -Richbell -Richborough -Richbourne -Richdale -Riche -Richelieu -Richenbacher -Richert -Riches -Richfield -Richford -Richgar -Richgrain -Richie -Richion -Richland -Richland Grove -Richland Valley -Richlands -Richlee -Richman -Richmere -Richmond -Richmond George -Richmond Beach -Richmond George -Richmond Hill -Richmond Meech -Richmond Park -Richmond Valley -Richmondfield -Richmount -Richnee -Richter -Richter Farm -Richton -Richton Square -Richview -Richwood -Rick -Rickabear -Rickard -Rickards -Rickbern -Rickenbacker -Ricker -Rickerhill -Rickerman -Rickert -Rickett -Ricketts -Ricketts Hill -Ricketty -Rickey -Rickland -Rickling -Rickling Green -Rickman -Rickmans -Rickmansworth -Rickover -Ricks -Ricksons -Rickstones -Rickthorne -Ricky -Ricky Dick -Rico -Ricoli -Ricord -Ricroft -Riddell -Ridder Park -Riddiford -Ridding -Riddings -Riddio -Riddle -Riddles -Riddlesdale -Riddlesdown -Riddons -Riddy -Riden -Rideout -Rider -Rider Ridge -Riders -Riderwood -Ridg Gate -Ridgdale -Ridge -Ridge Bluff -Ridge Brook -Ridge Camp -Ridge Chapel -Ridge Cliff -Ridge Cove -Ridge Creek -Ridge Croft -Ridge Crossing -Ridge Farm -Ridge Fire -Ridge Ford -Ridge Haven -Ridge Heights -Ridge Hill -Ridge Hill Farm -Ridge Knoll -Ridge Moor -Ridge Oak -Ridge Park -Ridge Point -Ridge Pond -Ridge Ponds -Ridge Retreat -Ridge River -Ridge Rock -Ridge Top -Ridge View -Ridge Wood -Ridgebrook -Ridgecreek -Ridgecrest -Ridgecroft -Ridgecrop -Ridgedale -Ridgedell -Ridgefarm -Ridgefield -Ridgefield Village -Ridgegate -Ridgegreen -Ridgehill -Ridgehurst -Ridgeland -Ridgeland Manor -Ridgelands -Ridgelawn -Ridgelee -Ridgeley -Ridgeline -Ridgely -Ridgemark -Ridgemead -Ridgemist -Ridgemont -Ridgemoor -Ridgemore -Ridgemount -Ridgepoint -Ridgerock -Ridgeside -Ridgestone -Ridgetop -Ridgevale -Ridgeview -Ridgeville -Ridgewald -Ridgewater -Ridgeway -Ridgewell -Ridgewick -Ridgewind -Ridgewood -Ridgewood Fire -Ridgley -Ridgmont -Ridgmount -Ridgway -Ridgway Hill -Ridgwell -Ridham -Riding -Riding Center -Riding Club -Riding Court -Riding Fields -Riding Fold -Riding Hood -Riding House -Riding Loop -Riding Ridge -Riding Trail -Ridings -Ridlands -Ridler -Ridley -Ridling -Ridlon -Ridout -Ridpath -Ridsdale -Riebli -Riedel -Riedell -Rieder -Riedesel -Riedy -Riegel -Riegelmann -Rieke -Rieman -Rienzi -Riesco -Riesgraf -Riesling -Rieter -Riethel -Rieti -Riffa -Riffams -Riffel -Riffhams -Riffle -Riffle Ford -Riffles -Rifhams -Rifle -Rifle Range -Rifle Ridge -Riford -Rifton -Riga -Rigault -Rigby -Rigdale -Rigden -Rigdon -Rigel -Rigeley -Rigelsford -Rigene -Rigent -Rigery -Rigg -Rigger -Riggindale -Riggs -Riggs Hill -Riggs Manor -Right of Way -Righter -Righters Mill -Rigi -Rigler -Rignall -Rignals -Rigney -Rignold -Rigoletto -Rigoli -Rigor -Rigsby -Rigshill -Rigton -Riis Park -Riivendell -Riker -Riker Hill -Riley -Riley Lake -Riley Ridge -Rileyford -Rileys Lock -Rill -Rillbank -Rillo -Rilma -Rim -Rim Rock -Rim of the Redwoods -Rimbach -Rimbley -Rimby -Rimer -Rimfire -Rimington -Rimini -Rimkus -Rimlet -Rimmer -Rimmington -Rimrock -Rimsdale -Rimswell Holt Redcar -Rimu -Rimwood -Rimworth -Rinaldo -Rinard -Rincon -Rincon Fire -Rinconada -Rinda -Rindge -Rindle -Rindo Park -Rindone -Rinear -Riner -Ring -Ring Bolt -Ring Dove -Ring Hey -Ring Neck -Ring Valley -Ringcroft -Ringden -Ringe -Ringefield -Ringel -Ringenback -Ringer -Ringers -Ringfield -Ringford -Ringgold -Ringland -Ringler -Ringlestone -Ringlet -Ringley -Ringley Park -Ringling -Ringlow -Ringlow Park -Ringmer -Ringmoor -Ringmore -Ringneck -Ringo -Ringold -Rings End -Ringshall -Ringshaw -Ringslade -Ringstead -Ringway -Ringwood -Rini -Rink -Rinnock -Rintin -Rinwood -Rinzee -Rio -Rio Altos -Rio Blanco -Rio Bonito -Rio Bravo -Rio Chico -Rio Dixon -Rio Grande -Rio Hondo -Rio Linda -Rio Lindo -Rio Lobo -Rio Loma -Rio Mondego -Rio Nido -Rio Oso -Rio Poco -Rio Robles -Rio Serena -Rio Tierra -Rio Tinto -Rio Verde -Rio Vida -Rio Vista -Rio de Molinos -Rio del Mar -Rio del Ora -Riordan -Riparian -Ripe Apple -Ripley -Ripley Hill -Ripley Park -Ripleys Field -Ripon -Ripon Hall -Ripona -Rippburger -Rippenden -Rippersley -Rippingham -Ripple -Ripple Brook -Ripplemead -Ripplerock -Rippleview -Ripplewater -Ripplewood -Rippling -Rippling Branch -Rippling Brook -Rippling Pond -Rippling Ridge -Rippolson -Rippon -Rippon Lodge -Ripponden -Ripponden Nursery -Ripponden Old -Rippowam -Rips -Ripston -Risa -Risborough -Risch -Riscioni -Risden -Risdon -Rise -Rise Park -Risebridge -Risedale -Riseden -Risel -Riseldine -Riseley -Riser -Risha -Rishell -Rishton -Rishworth -Rishworth New -Rising -Rising Creek -Rising Dawn -Rising Glen -Rising Ridge -Rising Sun -Risinghill -Risingholme -Risk -Riske -Riskin -Risley -Rison -Risorta -Rispin -Rissington -Ristaino -Rita -Ritch -Ritchard -Ritchboro -Ritches -Ritchfield -Ritchie -Ritchie Marlboro -Ritchie Spur -Ritchings -Ritcroft -Riteway -Ritherdon -Ritie -Ritson -Rittenhouse -Ritter -Ritters -Rittner -Riva -Riva Ridge -Rival -Rival Moor -Rivanna -Rivanna River -Rivara -Rivard -Rivas -Rive -Rivelly -Riven Wood -Rivendell -Rivenoak -River -River Access -River Acres -River Airport -River Bank -River Bay -River Beach -River Bend -River Birch -River Bluff -River Club -River Clyde -River College -River Creek -River Crescent -River Crest -River Crossing -River Dell -River Edge -River Estates -River Falls -River Farm -River Farms -River Forest -River Front -River Gate -River Glen -River Grange -River Grove -River Heights -River Hill -River Hills -River Inn -River Island -River Landing -River Lawn -River Look -River Meadow -River Meadows -River Mill -River Mist -River Oak -River Oaks -River Park -River Plaza -River Point -River Pointe -River Ranch -River Rapids -River Ridge -River Rock -River Run -River Shore -River Swan -River Terrace -River Trail -River Tweed -River Valley -River View -River View Park -River View Quarry -River Village -River Walk -River Watch -River Wood -River Woods -RiverPark -Rivera -Riverark -Riverband -Riverbank -Riverbend -Riverbirch -Riverbluff -Riverboat -Riverboat Center -Riverbrook -Riverby -Rivercliff -Rivercourt -Rivercreek -Rivercrest -Riverdale -Riverdene -Riveredge -Riverfield -Rivergate -Riverhead -Riverhill -Riverholme -Riverhurst -Riverina -Riverlake -Riverland -Riverlands -Riverlane -Riverlawn -Riverlin -Rivermark -Rivermead -Rivermeads -Rivermist -Rivermont -Rivermoor -Rivermouth -Riverneck -Riverpark -Riverpoint -Riverrun -Rivers -Rivers Bend -Rivers Bluff -Rivers Edge -Rivers Reach -Rivers View -Riverscape -Riversdale -Riversdown -Riversend -Rivershill -Rivershire -Rivershore -Riverside -Riverside Park -Riverside Railroad -Riverside Run -Riverside Ter -Riverside View -Riverstone -Riversview -Riversville -Riverton -Rivertown -Rivertowne -Rivervale -Riverview -Riverview Acres -Riverview Rest -Riverwalk -Riverway -Riverwood -Riverwood Terrace -Riverwoods -Rivett -Riviera -Riviera Point -Riviera Sun -Rivington -Rivoir -Rivoli -Rivulet -Rix -Rixey -Rixford -Rixlew -Rixon -Rixsen -Rixson -Rixton -Rixtonleys -Riza -Rizal -Rizdon -Rizzo -Rizzolo -Roach -Roache -Road To the Ranches -Roading -Roading Brook -Roadrunner -Roads End -Roakes -Roald -Roamer -Roan -Roane -Roanne -Roanoke -Roaring Brook -Roaring Camp -Roaring Creek -Roaring Gate -Roark -Roarty -Roasalie -Roath -Rob -Rob Roy -Robak -Robander -Robandy -Robard -Robb -Robb Farm -Robbart -Robben -Robbern -Robbery Bottom -Robbia -Robbie -Robbin -Robbins -Robbins Farm -Robblee -Robby -Robbyn -Robecq -Roberge -Roberson -Robert -Robert Adam -Robert Arey -Robert Best -Robert Bigelow -Robert Bonazzoli -Robert Bowie -Robert Carter -Robert Dollar -Robert E Jason -Robert Evans -Robert F Toner -Robert Ford -Robert Frost -Robert Fulton -Robert Gabriel -Robert Grant -Robert H Harp -Robert Hall -Robert J Mathews -Robert Kirk -Robert L Smith -Robert L. Curbeam Jr. -Robert Lenox -Robert Lewis -Robert Louis -Robert M Bond -Robert Mays -Robert Memorial -Robert Miller -Robert Owen -Robert Parker Coffin -Robert Post -Robert Small -Robert Sproul -Robert T Palmer -Robert Treat Paine -Robert W Topham Jr -Robert York -Roberta -Roberto -Roberton -Roberts -Roberts Common -Roberts Cove -Roberts Lake -Roberts Orchard -Roberts Prospect -Roberts Ranch -Roberts Wood -Robertshaw -Robertson -Robertson Park -Roberttown -Robeson -Robey -Robeys Meadow -Robideaux -Robie -Robie Manor -Robilliard -Robin -Robin Ann -Robin Crest -Robin Dell -Robin Glen -Robin Hill -Robin Hood -Robin Meadow -Robin Oak -Robin Ridge -Robin Wood -Robina -Robincrest -Robindale -Robinette -Robinhood -Robinia -Robinridge -Robins -Robins Island -Robins Nest -Robinsbay -Robinsbridge -Robinsdale -Robinson -Robinson Creek -Robinson Jefferson -Robinson Landing -Robinsons Bay -Robinswood -Robinwood -Robison -Robjohns -Robken -Roblar -Roble -Roble Alto -Roble Ladera -Roble Ridge -Roble Veneno -Robleda -Robledo -Roblee -Robles -Robles Grandes -Robles Ranch -Robley -Roblyn -Roblynn -Robnel -Robovic -Robroy -Robs -Robsart -Robscott -Robshaw -Robsheal -Robshire Manor -Robson -Roburta -Robway -Roby -Robyn -Roc -Roc Fall -Roca -Rocart -Rocastle -Rocaton -Rocbaar -Rocca -Rocco -Rocfort -Roch -Rochambeau -Rochdale -Rochdale Old -Rochdate -Roche -Rochefort -Rochell -Rochelle -Rocher -Rochester -Rochester Way Reief -Rochester Way Relief -Rochester way Relief -Rochford -Rocina -Rock -Rock A Bye -Rock Anna -Rock Brook -Rock Canyon -Rock Cap -Rock Chapel -Rock Cliff -Rock Coast -Rock Cove -Rock Creek -Rock Creek Park -Rock Crystal -Rock Farm -Rock Fish -Rock Garden -Rock Glen -Rock Hall -Rock Harbor -Rock Hill -Rock Hollow -Rock House -Rock Island -Rock Lawn -Rock Ledge -Rock Lily -Rock Lodge -Rock Maple -Rock Meadow -Rock O Dundee -Rock Oak -Rock Point -Rock Ranch -Rock Ridge -Rock River -Rock Rose -Rock Run -Rock Spring -Rock Springs -Rock Valley -Rock Villa -Rock Wren -Rockanna -Rockaway -Rockaway Beach -Rockaway Breezy -Rockaway Point -Rockaway Valley -Rockbourne -Rockbridge -Rockburn -Rockburn Branch Park -Rockburn Hill -Rockburn Woods -Rockcliff -Rockcreek -Rockcrest -Rockcroft -Rockdale -Rockdale Plaza -Rockdove -Rockefeller -Rockenbach -Rockett -Rockfeller -Rockfield -Rockford -Rockford Service -Rockgate -Rockglen -Rockhall -Rockhampton -Rockhaven -Rockhill -Rockhold -Rockhold Creek -Rockhold Creek Shore -Rockhurst -Rockie -Rocking Horse -Rocking Spring -Rockingchair -Rockingham -Rockinghorse -Rockingstone -Rockins -Rockland -Rockland House -Rockland Park -Rocklands -Rocklawn -Rockledge -Rockleigh -Rockley -Rockliffe -Rocklin -Rocklyn -Rockmart -Rockmead -Rockmeadow -Rockmere -Rockmont -Rockmount -Rockne -Rockpile -Rockpoint -Rockpointe -Rockport -Rockridge -Rockrose -Rocks -Rocks Park -Rocksborough -Rocksbury -Rockshaw -Rockshire -Rockspray -Rockstone -Rockstrech -Rockton -Rockvale -Rockview -Rockville -Rockware -Rockway -Rockwell -Rockwin -Rockwood -Rockwood Heights -Rockwood Ranch -Rocky -Rocky Beach Farm -Rocky Bend -Rocky Branch -Rocky Brook -Rocky Creek -Rocky Crest -Rocky Dundee -Rocky Gap -Rocky Glen -Rocky Heights -Rocky Hill -Rocky Hills -Rocky Hollow -Rocky Knoll -Rocky Ledge -Rocky Meadow -Rocky Mount -Rocky Mountain -Rocky Nook -Rocky Point -Rocky Pond -Rocky Ravine -Rocky Ridge -Rocky Run -Rocky Shore -Rocky Spring -Rocky Springs -Rocky Top -Rocky Valley -Rocky Woods -Rockyledge -Rockywater -Rocliffe -Rocque -Rocsam Park -Rocton -Rod -Rod Beudry -Rod Laver -Rod Mill -Roda -Rodao -Rodborough -Rodbridge -Rodby -Rodd -Rodda -Rodeck -Roden -Rodenburg -Rodenhurst -Rodens -Rodeo -Rodeo Ridge -Roder -Roderick -Rodes -Rodgers -Rodgers Gravel Pit -Rodiman -Roding -Rodings -Rodley -Rodling -Rodman -Rodmarton -Rodmell -Rodmere -Rodmill -Rodney -Rodnick -Rodoani -Rodona -Rodondo -Rodonovan -Rodrigues -Rodriguez -Rodriques -Rodsall -Rodway -Rodwell -Roe -Roe Cross -Roe Downs -Roe Green -Roeacre -Roebling -Roebuck -Roeburne -Roeckel -Roedean -Roeder -Roediger -Roehampton -Roehampton High -Roehmer -Roehrs -Roel -Roeller -Roemer -Roentgen -Roesler -Roesner -Roessler -Roessner -Roestock -Rofant -Rofay -Rofe -Roff -Roff Point -Roffen -Roffes -Roffey -Rofford -Rogan -Rogart -Rogell -Roger -Roger Bacon -Roger Canoe Hollow -Roger Dimmick -Roger Goodwin -Roger Williams -Rogerio -Rogers -Rogers Cockrell -Rogers Farm -Rogers Heights -Rogers Park -Rogers Rough -Rogers Wood -Rogge -Roggel -Rogina -Rogowski -Rogue River -Rohan -Rohatyn -Rohavic -Rohde -Rohe -Rohini -Rohl -Rohlffs -Rohlwing -Rohn -Rohrer -Rohrman -Rohrsen -Rohrssen -Roine -Rojewski -Rojina -Roke -Roke Lodge -Rokeby -Roker -Roker Park -Rokers -Rokesby -Rokesly -Rokeva -Rokewood -Rokosz -Rolan -Roland -Roland Baxter -Rolander -Rolando -Rolee -Roleen -Rolerson -Rolestone -Roley -Rolf -Rolfe -Rolison -Roliver -Roll -Roll Shop -Rollesby -Rolleston -Rollie -Rollie Shepherd -Rollin -Rollin Acres -Rolling -Rolling Acres -Rolling Brook -Rolling Field -Rolling Forest -Rolling Fork -Rolling Glen -Rolling Green -Rolling Hill -Rolling Hills -Rolling Hlls -Rolling Holly -Rolling House -Rolling Knolls -Rolling Meadow -Rolling Meadows -Rolling Oak -Rolling Oaks -Rolling Plains -Rolling Ridge -Rolling River -Rolling Rock -Rolling Tree -Rolling View -Rolling Views -Rolling Wood -Rollingdale -Rollingdell -Rollingridge -Rollingside -Rollingstone -Rollingtop -Rollingwood -Rollingwoods -Rollinmead -Rollins -Rollins Ford -Rollinson -Rollo -Rolls -Rolls Park -Rollscourt -Rollstone -Rollswood -Rollwind -Rolly -Rollyn L Anderson -Rolph -Rolt -Rolton -Rolvenden -Rolyn Hills -Roma -Romack -Romagnolo -Romain -Romaine -Roman -Roman Farm -Roman Villa -Romana -Romanelli -Romanes -Romanfield -Romanhurst -Romani -Romanko -Romano -Romanowski -Romany -Romar -Romayne -Rombalds -Romberg -Rombouts -Romden -Rome -Romeo -Romeoville -Romer -Romero -Romey -Romeyn -Romford -Romier -Romig -Romiga -Romiley -Romilly -Romily -Romines -Romke -Romley -Romlon -Rommany -Rommel -Romney -Romney Lock -Romney Marsh -Romola -Romona -Romondt -Romp -Romscho -Romsey -Romsley -Romulus -Ron Cowan -Ron Lee -Ron Mace -Rona -Ronada -Ronaele -Ronald -Ronald Beall -Ronald P. Safer -Ronald Park -Ronalds -Ronaldstone -Ronan -Ronarm -Ronart -Ronbru -Ronco -Ronda -Ronde -Rondeau -Rondee -Rondel -Rondelay -Rondell -Rondin -Rondini -Rondorey -Rondu -Roneck -Ronek -Ronelean -Roney -Ronfearn -Ronhill -Ronian -Ronkonkoma -Ronni -Ronnie -Ronny -Rons -Ronson -Ronsu -Ronver -Ronwood -Rony -Ronzheimer -Rood -Roodlands -Roof -Rook -Rook End -Rookcross -Rooke -Rookery -Rookesley -Rookfield -Rooks -Rookstone -Rookwood -Rooley -Rooley Moor -Roome -Rooms -Rooney -Roop -Roos -Roosa -Roosevel -Roosevelt -Rooster -Root -Rootes -Roothill -Roots -Roots Hall -Rope -Ropeknot -Ropemaker -Roper -Ropers -Ropery -Ropes -Ropes Creek -Ropes Crossing -Ropley -Roppolo -Roque Moraes -Roquena -Roquette -Rorano -Rorke -Rorty -Ros Emily -Rosa -Rosa Blanca -Rosa Morada -Rosa Moss -Rosa Parks -Rosa Vista -Rosabel -Rosabell -Rosada -Rosado -Rosal -Rosalia -Rosalie -Rosalind -Rosalinda -Rosaline -Rosalita -Rosalla -Rosamond -Rosamun -Rosamund -Rosanna -Rosanne -Rosano -Rosaria -Rosarie -Rosario -Rosary -Rosaryville -Rosas -Rosaville -Rosbach -Roscoe -Roscoe Maverick -Roscoe Rowe -Roscommon -Roscow -Roscrea -Rose -Rose Acres -Rose Ann -Rose Anna -Rose Anne -Rose Arbor -Rose Bank -Rose Bates -Rose Bay -Rose Blossom -Rose Bush -Rose Cottage -Rose Creek -Rose Crest -Rose Ellen -Rose Farm -Rose Forest -Rose Garden -Rose Glen -Rose Hall -Rose Hatch -Rose Haven -Rose Hey -Rose Hill -Rose Kennedy -Rose Kiln -Rose Marie -Rose Mary -Rose Park -Rose Payten -Rose Point -Rose Ranch -Rose Ridge -Rose View -Rose Vine -Rose Wood -Rosea -Roseacre -Roseann -Roseanna Park -Roseanne -Rosebank -Rosebay -Roseberry -Roseberry Farm -Rosebery -Rosebine -Rosebloom -Rosebowl -Rosebriar -Rosebridge -Rosebrrok -Rosebud -Rosebury -Rosebush -Roseby -Roseclair -Rosecliff -Rosecourt -Rosecraft -Rosecran -Rosecrest -Rosecroft -Rosecroft Village -Roseda -Rosedale -Rosedene -Rosedew -Rosedown -Roseen -Rosefarm -Rosefinch -Roseford -Rosegarden -Rosegarth -Rosegate -Roseglen -Rosegold -Rosegum -Rosehall -Rosehaven -Rosehay -Roseheath -Rosehill -Roselake -Roseland -Roselands -Roselare -Roselawn -Roselea -Roseleaf -Roseleigh -Roselin -Rosell -Rosella -Roselle -Roselli -Roselynn -Rosemar -Rosemarie -Rosemary -Rosemead -Rosemeade -Rosemear -Rosemeath -Rosemere -Rosemill -Rosemily -Rosemont -Rosemont Hills -Rosemoor -Rosemore -Rosemount -Rosen -Rosenau -Rosenbaum -Rosenbrook -Rosenburger -Rosencrantz -Rosendale -Roseneath -Rosenfeld -Rosenfield -Rosengren -Rosenkranz -Rosensteel -Rosenstock -Rosenthal -Rosenthorpe -Rosenwinkle -Roseridge -Roserton -Roses -Rosethorn -Rosetta -Rosette -Rosevale -Rosevear -Roseveare -Rosevelt -Roseview -Roseville -Rosevine -Rosewalk -Rosewall -Rosewater -Roseway -Rosewind -Rosewood -Rosewood Manor -Rosey Bill -Rosford -Rosgill -Rosherville -Rosie Lee -Rosier -Rosiers Branch -Rosieville -Rosilian -Rosilie -Rosin -Rosina -Rosincress -Rosinweed -Rosita -Roskell -Roskelley -Roskin -Roslin -Roslindale -Roslyn -Roslyndale -Rosmead -Rosner -Roso -Rosol -Rosoman -Ross -Ross Arnold -Ross Branch -Ross Forry -Ross Hall -Ross Landing -Ross Lave -Ross Park -Ross Ridge -Ross Smith -Ross Valley -Rossal -Rossall -Rossback -Rossborough -Rossdale -Rosse -Rossefield -Rosselerin -Rossen -Rossenclough -Rossendale -Rosser -Rosseter -Rossett -Rossetti -Rossfold -Rossford -Rossi -Rossindel -Rossington -Rossini -Rossiter -Rosskelly -Rosslare -Rosslee -Rosslyn -Rosslyn Hill Pond -Rossmere -Rossmill -Rossmoor -Rossmore -Rossmoyne -Rossotto -Rossvale -Rossville -Rossway -Rosswood -Rosta -Rostella -Rostherne -Roston -Rostrevor -Rostron -Rostrov -Roswell -Rosy -Rosyman -Roszanski -Rota -Rotary -Rotcher -Rotella -Roth -Rothay -Rothbard -Rothbrook -Rothbury -Rothe -Rothenburg -Rother -Rotheram -Rotherbank Farm -Rotherbridge -Rotherby -Rothercombe -Rotherfield -Rotherham -Rotherhead -Rotherhill -Rotherhithe New -Rotherhithe Old -Rotherithe New -Rotherwick -Rotherwood -Rothery -Rothes -Rothesay -Rothgeb -Rothiemay -Rothley -Rothmans -Rothrack -Rothsay -Rothschild -Rothwell -Rothwell Churchfield -Rothwell Commercial -Roton -Rotorua -Rotterdam -Rottingdene -Rottkamp -Rottnest -Rotuma -Rotunda -Roualt -Roubound -Rouciano -Roudsby -Rouel -Rouen -Rouge -Rougemont -Rough -Rough Heys -Rough Rider -Roughan -Roughdown -Roughetts -Roughlea -Roughtley -Roughtown -Roughway -Roughwood -Rouillard -Rounce -Round -Round A Bend -Round Barn -Round Bay -Round Bush -Round Coppice -Round Hill -Round Hill Club -Round Ings -Round Lake -Round Lick -Round Oak -Round Pebble -Round Spring -Round Swamp -Round Table -Round Thorn -Round Top -Round Tree -Roundabout -Roundals -Roundaway -Roundbush -Roundel -Roundelay -Roundfield -Roundhay -Roundhead -Roundhill -Roundhouse -Roundmead -Roundmoor -Rounds -Roundshead -Roundstone -Roundtable -Roundthorn -Roundtop -Roundtree -Roundview -Roundwood -Roundy -Rounsevell -Rounthorn -Rountree -Roupell -Rourke -Rouse -Rouse Hill -Rouse Mill -Rousebarn -Rousham -Rousillon -Rousseau -Roussell -Roustein -Routh -Routier -Rovato -Roveout -Rover -Rovina -Roving Hills -Roving Wood -Row -Rowallan -Rowalt -Rowan -Rowan Field -Rowan Tree -Rowanberry -Rowanhurst -Rowans -Rowanside -Rowanswood -Rowantree -Rowanwood -Rowardennan -Rowarth -Rowayton -Rowayton Woods -Rowberry -Rowbotham -Rowcross -Rowdell -Rowden -Rowditch -Rowdon -Rowdown -Rowdowns -Rowe -Rowe Hill -Rowe Ranch -Rowell -Rowen -Rowena -Rowendale -Rowfant -Rowhill -Rowhook -Rowhurst -Rowland -Rowland Hill -Rowland Park -Rowlands -Rowlatt -Rowlett -Rowley -Rowley Bank -Rowley Bridge -Rowley Hill -Rowleys -Rowleys Point -Rowliff -Rowling -Rowlls -Rowly -Rowner -Rowney -Rowntree -Rowood -Rowplatt -Rowser -Rowsley -Rowson -Rowton -Rowton Grange -Rowzill -Roxalina -Roxana -Roxann -Roxanna -Roxanne -Roxas -Roxborough -Roxborough Park -Roxburg -Roxburgh -Roxbury -Roxbury Mills -Roxen -Roxeth Green -Roxeth Hill London -Roxholme -Roxie -Roxley -Roxton -Roxwell -Roxy -Roy -Roy Croft -Roy Frerichs -Roy Patrick -Royal -Royal Ann -Royal Anne -Royal Arch -Royal Beach -Royal Birkdale -Royal Burgandy -Royal Burkedale -Royal Carriage -Royal Coach -Royal Coachman -Royal Connaught -Royal County Down -Royal Court -Royal Creek -Royal Crest -Royal Crown -Royal Dane -Royal Docks -Royal Dominion -Royal Doulton -Royal Dublin -Royal Engineers -Royal Estates -Royal Exchange -Royal Forest -Royal Fox -Royal Foxhunt -Royal Garden -Royal George -Royal Georgian -Royal Glen -Royal Green -Royal Heights -Royal Hill Roan -Royal Hills -Royal Hospital -Royal Lake -Royal Lytham -Royal Meadow -Royal Melbourne -Royal Mint -Royal Oak -Royal Oaks -Royal Palm -Royal Park -Royal Patents -Royal Pier -Royal Plaza -Royal Porthcawl -Royal Portrush -Royal Quay -Royal Ridge -Royal Robin -Royal Saint George -Royal Sovereign -Royal Swan -Royal Tern -Royal Trees -Royal Troon -Royal Vale -Royal View -Royal West Kent -Royal Woods -Royal Worchester -Royal Worlington -Royalblue -Royalcrest -Royale -Royale Glen -Royale Park -Royall -Royalston -Royalthorn -Royalthorne -Royalton -Royalwood -Royat -Roycar -Royce -Roycraft -Roycroft -Royd -Royd Moor -Royden -Roydene -Roydon -Roydon Hall -Royds -Royds Farm -Royds Hall -Royle -Royle Green -Royley -Roylston -Roynton -Royon -Roys -Roys Hill -Royson -Royston -Royston Park -Royton -RoyzElle -Royzelle -Rozalyn -Rozanne -Rozella -Rozelle -Ruabon -Ruane -Ruann -Ruatan -Rub of Green -Rubar -Rubastic -Rubble -Rubbly -Rubens -Rubenstein -Rubicon -Rubicon Farm -Rubidoux -Rubie -Rubin -Rubina -Rubino -Rubion -Rubis -Rubish Tip -Ruble -Rublee -Rubus -Ruby -Ruby Hill -Rubye -Ruck -Rucker -Ruckholt -Ruckinge -Rucklers -Ruckman -Ruckmans -Ruckner -Rucks Farm -Rucliff -Rudd -Rudden -Rudder -Ruddock -Ruddpark -Ruddy -Ruddy Duck -Rudgear -Rudgwick -Rudheath -Rudley Green -Rudnick -Rudolf -Rudolph -Rudon -Rudsdale -Rudston -Rudy -Rudyard -Rudyard Kipling -Rueben -Ruel -Rueley Dell -Rues -Ruess -Rueth -Ruff -Ruffed Grouse -Ruffin -Ruffing -Ruffled Feather -Ruffled Feathers -Ruffner -Rufford -Rufo -Rufus -Rufus Isaacs -Rugani -Rugby -Rugdale -Ruge -Rugeley -Rugen -Ruger -Rugg -Ruggles -Ruggles Pond -Rugosa -Rugwood -Ruhe -Ruhl -Ruhlman -Ruins -Ruins Barn -Ruins Creek -Ruisdael -Ruislip -Ruisseau Francais -Ruit Farm -Rulana -Ruland -Rule -Rullman -Rulofson -Rum Point -Rum River -Rumana -Rumballs -Rumbles -Rumbolds -Rumbrook -Rumbullion -Rumford -Rumford Park -Rumney -Rumonoski -Rumple -Rumrill -Rumsay -Rumsey -Rumsford -Rumson -Rumstead -Rumworth -Run Common -Runabout -Runaldue -Runaway -Runbold -Runckel -Runcorn -Rundelac -Rundle -Runfold -Runford -Runge -Runger -Runham -Runiak -Runic -Runkenhage -Runley -Runnacles -Runner -Runneymede -Running Bear -Running Brook -Running Cedar -Running Creek -Running Deer -Running Farm -Running Foxes -Running Hill -Running Hills -Running Iron -Running Mare -Running Pump -Running Ridge -Running River -Running Springs -Runnymead -Runnymeade -Runnymede -Runsell -Runswick -Runtley Wood -Runway -Runwell -Runwick -Runyan -Runyon -Runyons -Rupack -Rupert -Rupertswood -Ruping -Rupp -Ruppert -Rural -Rural Estates -Ruritan -Rusch -Ruschin -Ruschli -Rusciano -Rusco -Ruscoe -Ruscombe -Rusden -Ruse -Rusfield -Rush -Rush Creek -Rush Green -Rush Hill -Rush Landing -Rush Meadow -Rush River -Rush River Park -Rushall -Rusham Park -Rushams -Rushbottom -Rushbrook -Rushbrooke -Rushbury -Rushcroft -Rushdean -Rushden -Rushdene -Rushen -Rushenden -Rusher -Rushes -Rushett -Rushetts -Rushey -Rushfield -Rushford -Rushgrove -Rushing Creek -Rushington -Rushingwater -Rushlake -Rushleigh -Rushley -Rushmead -Rushmere -Rushmoor -Rushmore -Rusholme -Rushout -Rushside -Rushton -Rushway -Rushwick -Rushwood -Rushworth -Rushy Meadow -Ruskin -Ruskindale -Ruskington -Ruskoi -Rusland -Rusland Park -Rusper -Russ -Russek -Russel -Russel Hill -Russel Snow -Russel Thomas -Russell -Russell Aldrich -Russell Branch -Russell Calvin -Russell Hill -Russell Park -Russell Thomas -Russell Woods -Russell Zepp -Russellcroft -Russells -Russells Pond -Russelmann Park -Russen -Russet -Russet Hill -Russet Wood -Russett -Russetts -Russi -Russia -Russia Branch View -Russia Dock -Russian -Russian River -Russington -Russler -Russo -Rust -Rust Craft -Rustad -Rusten -Rusthall -Rusthall High -Rustic -Rustic Gate -Rustic Hill -Rustic Hills -Rustic Rail -Rustic Ridge -Rustic View -Rustic Way -Rustic Wood -Rusticwood -Rusting -Rustle -Rustlewood -Rustling Leaves -Rustling Oak -Rustling Oaks -Ruston -Ruston Bridge -Rusty -Ruta -Rutan -Rutford -Rutgers -Ruth -Ruth Ann -Ruth B Swann -Ruth Davis -Ruth Ellen -Ruth Fitzgerald -Ruthellen -Ruthelma -Ruthen -Ruthenbeck -Rutherdale -Rutherford -Rutherford Hill -Rutherglen -Rutherland -Rutherwyk -Ruthie -Ruthin -Ruthland -Ruthven -Rutland -Rutland Round -Rutland View -Rutledge -Rutler -Rutley -Rutlish -Rutson -Ruttenberry -Rutter du Bois -Rutton Hill -Rutz -Rutz Lake -Ruus -Ruxbury -Ruxley -Ruxshire -Ruxton -Ruzac -Ryan -Ryan Ranch -Ryan Ronald -Ryanlynn -Ryarsh -Ryawa -Rybeck -Ryberg -Rybrook -Ryburn -Ryce -Rycon -Rycote -Rycroft -Rydal -Rydale -Rydall -Ryde -Ryde Vale -Rydeen -Rydell -Ryden -Rydens -Ryder -Ryder Hill -Ryderbrow -Ryders -Rydes -Rydes Hill -Rydge -Rydin -Rydley -Rydon -Rydons -Rye -Rye Bank -Rye Beach -Rye Brook -Rye Hill -Rye Lake -Rye Mill -Rye Ridge -Ryebank -Ryeburne -Ryecroft -Ryedale -Ryefield -Ryefields -Ryegate -Ryehill -Ryehurst -Ryeish -Ryeland -Ryelaw -Ryemead -Ryer -Ryer Island -Ryers -Ryersh -Ryerson -Ryes -Ryeside -Ryestone -Ryewood Farm -Ryfold -Rygate -Ryhiner -Ryhope -Rykmansford -Rylance -Ryland -Ryland Park -Rylands -Ryle -Ryle Park -Rylett -Ryleys -Rylston -Rylstone -Rymar -Rymer -Rymill -Rymney -Rynan -Rynda -Rynex -Ryon -Ryree -Ryrie -Rysbrack -Rystwood -Rythe -Ryton -Ryton Ridge -Ryvers -Ryves -Rywick -S Abbey Hill -S Abbott -S Aberdeen -S Abingdon -S Access -S Acorn Ridge -S Ada -S Adams -S Addison -S Adelaide -S Admiral -S Adsit -S Aero -S Ahrens -S Ahwahnee -S Airlite -S Albany -S Albert -S Aldine -S Alfred -S Alice -S Alleghany -S Allen -S Allport -S Alpine -S Amboy -S Amherst -S Anderson -S Andrew -S Ann -S Anna -S Anna Marie -S Annandale -S Anthony -S Anvil -S Apple -S Aqueduct -S Arbeiter -S Arbogast -S Arbor -S Arboretum -S Arbory -S Arch -S Archer -S Ardmore -S Arlington -S Arlington Heights -S Arlington Mill -S Arlington Ridge -S Arnell -S Arran -S Artesian -S Arthur -S Ash -S Ashbury -S Ashby -S Ashland -S Astor -S Atlantic -S Auburn -S Aurora -S Austin -S Avalon -S Avon -S Azar -S B -S Babcock -S Baker -S Baldwin -S Ball -S Balmiere -S Balmoral -S Balmoral Woods -S Barkley -S Barnaby -S Barrington -S Barry -S Barten -S Bartlett -S Barton -S Basham -S Basswood -S Batavia -S Battle Creek -S Bay -S Bayles -S Beach -S Bedford -S Beech Tree -S Beechcroft -S Beers -S Belair -S Belgrade -S Bell -S Belle -S Bellows -S Belmont -S Beloit -S Belt Circle -S Bend -S Bender -S Bennett -S Bensley -S Benson -S Bentley -S Benton -S Bereman -S Bergman -S Berkeley -S Berkshire -S Berteau -S Beulah Vista -S Beverly -S Beverwyck -S Bianco -S Big Run -S Biltmore -S Birchdale -S Birchwood -S Birkhoff -S Biscayne -S Bishop -S Bismark -S Black Forest -S Blackberry -S Blackhawk -S Blackstone -S Blaisdell -S Blake -S Blanchard -S Blanding Woods -S Bleeker -S Bloomingdale -S Blossom -S Blue Island -S Blue Water -S Bobby -S Bode -S Bodin -S Bonaparte -S Bond -S Bonfield -S Book -S Boston -S Bothwell -S Boulder -S Boundary -S Bourndale -S Bowdoin -S Boyd -S Bradford -S Bragg -S Brainard -S Braintree -S Bramble Hill -S Branch -S Brandon -S Branford -S Braymore -S Brennan -S Brentwood -S Brewster -S Briar -S Briarwood -S Bridge -S Bridle Creek -S Bridle Path -S Briggs -S Bright -S Brightway -S Bristol -S Brittany -S Broad -S Broadway -S Brockway -S Brook -S Brookdale -S Brookshore -S Brookside -S Brookwood -S Broome -S Brown -S Browning -S Bruner -S Brush -S Buchanan -S Buckhout -S Buesching -S Buffalo -S Buffalo Grove -S Burley -S Burnett -S Burnham -S Burno -S Burnside -S Burr -S Bush -S Business Park -S Butehorn -S Butler -S Butterfield -S Cabin -S Cabot -S Calhoun -S California -S Calumet -S Calumet River -S Canal -S Canal Bank -S Canalport -S Canterbury -S Cantigny -S Canton -S Canyon -S Cardinal -S Carillon -S Carlin Springs -S Carlinda -S Carll -S Carlton -S Carnot -S Caroline -S Carolyn -S Carondolet -S Carpenter -S Carrie -S Caryl -S Casey -S Cass -S Castlewood -S Catawba -S Cathedral -S Catherine -S Cathy -S Caton -S Cedar -S Cedar Lake -S Cedarbend -S Cedarcrest -S Center -S Central -S Central Park -S Centre -S Centre Island -S Centurion -S Century -S Champlain -S Channing -S Chapel -S Chappel -S Charles -S Charlotte -S Charlton -S Charter -S Chase -S Chatham -S Chatsworth -S Chelsea -S Chennault -S Cherokee -S Cherry -S Cherry Grove -S Cherry Valley -S Chester -S Chesterfield -S Chestnut -S Chevy Chase -S Cheyenne -S Chicago -S Chicago Beach -S Chicot -S Chippendale -S Chippewa -S Chowen -S Christiana -S Church -S Churchill -S Cicero -S Circle -S Claire -S Claremont -S Clarence -S Clarendon -S Clark -S Clay -S Cleburne -S Cleveland -S Clifton -S Clifton Park -S Cline -S Clinton -S Clyde -S Coach -S Cobblestone -S Codo -S Coghill -S Colborne -S Coles -S Colfax -S Colonial -S Colorado -S Columbia -S Columbine -S Columbus -S Comanche -S Commercial -S Commons -S Commonwealth -S Compass -S Connecticut -S Constitution -S Consumers -S Conway Farm -S Cook -S Coolidge -S Copper Beach -S Corabelle -S Corbett -S Corcoran -S Corliss -S Cornell -S Corona -S Cottage -S Cottage Grove -S Cottage Hill -S Cottenet -S Country -S Country Club -S Country Squire -S Countryside -S County Farm -S County Line -S Court House -S Coventry -S Covert -S Cowley -S Craft -S Cranberry -S Crandall -S Crawford -S Cree -S Creek -S Cregier -S Creighton -S Creme -S Crescent -S Crest -S Cretex -S Cretin -S Croissant -S Crowell -S Crystal -S Culpeper -S Cumberland -S Cuyler -S Cypress -S Dairy -S Dale -S Dallas -S Damen -S Daniel -S Daniels -S Dansher -S Dante -S Dartmoor -S Dauphin -S Davol -S Day -S Deal -S Dean -S Dearborn -S Dearman -S Decatur -S Dedlow -S Dee -S Deep Lake -S Deer Park -S Deere Park -S Deerpath -S Deerwood -S Delaplaine -S Delaware -S Delphia -S Demarest -S Dennis -S Denver -S Denvir -S Depot -S Derby -S Derby Glen -S Derbyshire -S Des Plaines -S Desplaines -S Detroit -S Devoe -S Dewey -S Diagonal -S Diamond Lake -S Dickerson -S Dinwiddie -S Division -S Dobson -S Dodd -S Dogwood -S Dominion -S Donald -S Donegal -S Donna -S Doolittle -S Doral -S Dorchester -S Doty -S Douglas -S Dove -S Dover -S Dow -S Dublin -S Duffy -S Duke -S Duluth -S Dunbar -S Dundee -S Dunlap -S Dunmoor -S Dupage -S Durst -S Dutcher -S Dymond -S Dyre -S E Frontage -S Eads -S Eagle -S Early -S East -S East End -S Eastcliff -S Eastern -S Eastgate -S Eastwood -S Eberhardt -S Eberhart -S Echo -S Eckar -S Edbrooke -S Eden -S Edgelawn -S Edgewater -S Edgewood -S Edinburgh -S Edison -S Edson -S Edward -S Edwin -S Eggleston -S Egret -S Ela -S Elaine -S Elder -S Eleanor -S Elevator -S Elgin -S Elizabeth -S Elk -S Elliott -S Ellis -S Ellsworth -S Ellyn -S Elm -S Elmer -S Elmhurst -S Elmwood -S Elodie -S Elroy -S Elsdon -S Elsie -S Elsner -S Emerald -S Emerson -S Eola -S Erie -S Erwing -S Escanaba -S Esmond -S Essex -S Euclid -S Eva -S Evans -S Evanslawn -S Evanston -S Everett -S Evergreen -S Ewing -S Exchange -S Exmoor -S Fairfax -S Fairfield -S Fairview -S Falls -S Farm -S Farm View -S Farmhill -S Farmingdale -S Farmington -S Farnsworth -S Farragut -S Farrell -S Farview -S Faxon -S Federal -S Feltus -S Fenwick -S Fern -S Fernwood -S Ferris -S Ferry -S Fielding -S Fillmore -S Finley -S Finn -S Fish Lake -S Flambeau -S Fletcher -S Florida -S Florida Grove -S Floyd -S Ford -S Fordham -S Forest -S Forestview -S Fork -S Forrest -S Forrestville -S Fort Scott -S Four Mile Run -S Fox -S Fox Wood -S Foxfire -S Francis -S Francisco -S Franklin -S Franzen -S Frederick -S Freeman -S Freemont -S Freeway -S Fremont -S French -S Front -S Frontage -S Frontenac -S Fryer -S Fullerton -S Fulton -S Gables -S Gail -S Galahad -S Gannon -S Garden -S Garfield -S Gary -S Gate -S Gates -S Gawain -S Gaylore -S Genoa -S George -S George Mason -S Georgia -S Gerald -S Gibbons -S Gibson -S Gifford -S Gilbert -S Giles -S Gladstone -S Glasgow -S Glebe -S Glen -S Glen Eagle -S Glendale -S Glenroy -S Glenview -S Glenwood -S Glover -S Golden Oak -S Golf -S Golfview -S Goodwin -S Gordon -S Gorman -S Gougar -S Grace -S Graceland -S Granada -S Grand -S Grand Monde -S Grand Prairie -S Grant -S Gratten -S Great Neck -S Greeley -S Green -S Green Bay -S Green Heron -S Green Meadow -S Green Meadows -S Greenbriar -S Greenbrier -S Greenbush -S Greene -S Greenfield -S Greenmount -S Greenview -S Greenway -S Greenwood -S Griffith -S Griggs -S Grotto -S Grove -S Gullikson -S Gunderson -S Haddow -S Hadfield -S Hager -S Hale -S Hall -S Halsted -S Ham Lake -S Haman -S Hamilton -S Hamlet -S Hamlin -S Hamline -S Hampton -S Hancock -S Hanover -S Hansen -S Harbor -S Harding -S Harlem -S Harold -S Harper -S Harriet -S Harrison -S Harry J Rogowski -S Hart -S Hartmann -S Hartshorne -S Hartwell -S Harvard -S Harvest -S Harvest Hills -S Harvey -S Haven -S Haverhill -S Hawthorne -S Hayes -S Hayne -S Hazel -S Hazel Hill -S Hazelton -S Healy -S Heath -S Heathcote -S Heather -S Heatherwood -S Hebbard -S Heights -S Helene -S Helmar -S Hemlock -S Henry -S Herbert -S Heritage -S Herman -S Hermitage -S Hermosa -S Herricks -S Hi Lusi -S Hickory -S High -S Highland -S Highlawn -S Highview -S Highway -S Highwood -S Hill -S Hillcrest -S Hillock -S Hills -S Hillsdale -S Hillside -S Hilton -S Hinkley -S Hobart -S Hobble Bush -S Hoey -S Holcomb -S Holcombe -S Holiday -S Holland -S Hollins Ferry -S Holly -S Holmdel -S Holyoke -S Homan -S Home -S Homer -S Homewood -S Honore -S Horners -S Hough -S Houston -S Howard -S Howell -S Hoxie -S Hoyne -S Hoyt -S Hubbard -S Hudson -S Humboldt -S Humphrey -S Hunter -S Huntington -S Hyde Park -S I Oka -S Illinois -S Ilwaco -S Independence -S Indian Trail -S Indiana -S Indianapolis -S Inge -S Ingleside -S Ingram -S Inman -S Iowa -S Iris -S Iron -S Iroquois -S Irving -S Ivanhoe -S Ives -S Ivy -S Jackson -S James -S Jamestown -S Jane -S Jasmine -S Jasper -S Jefferson -S Jeffery -S Jenkins -S Jennings -S Jensen -S Jerome -S Jessica -S Joalyce -S Joan -S John -S Johnson -S Joliet -S Jonquil -S Jordan -S Joseph -S Joyce -S Julia -S Julian -S June -S Juneau -S Justen -S Justine -S Kainer -S Kankakee -S Karlov -S Kaspar -S Kathey -S Kavanaugh -S Kean -S Keating -S Kedvale -S Kedzie -S Keefe -S Keeler -S Keeley -S Kemper -S Kendall -S Kenfig -S Kenilworth -S Kenmore -S Kennedy -S Kenneth -S Kensico -S Kensington -S Kent -S Kenton -S Kenwood -S Kerfoot -S Kerry -S Ketay -S Ketcham -S Kevin -S Kilbourn -S Kildare -S Kilkenny -S Kilpatrick -S Kimbark -S Kimberly -S Kinderkamack -S King -S Kings -S Kingston -S Kipling -S Kirkland -S Klemme -S Knight -S Knoll -S Knollway -S Knollwood -S Knox -S Knyghtwood -S Kolin -S Kolmar -S Komensky -S Kostner -S Kreiter -S Kroll -S Krueger -S Kuersten -S La Fox -S La Grange -S Lady Bar -S Lafayette -S Laflin -S Lageshulte -S Laird -S Lake -S Lake Ioseo -S Lake Park -S Lake Shore -S Lakeview -S Lakewood -S Lambert -S Lamon -S Lancaster -S Lang -S Langley -S Lanza -S Laporte -S Larrimore -S Lasalle -S Latrobe -S Laurel -S Lavergne -S Lawler -S Lawn -S Lawndale -S Lawnside -S Lawrence -S Lawton -S Leach -S Leamington -S Leavitt -S Leclaire -S Lee -S Leech -S Lehigh -S Leisure World -S Leitch -S Lemington -S Lenhome -S Lerisa -S Leslie -S Leswing -S Lewis -S Lewood -S Lexington -S Lexow -S Leyden -S Liberty -S Lill -S Lillian -S Lily Lake -S Lincoln -S Lincolnway -S Linda -S Lindberg -S Linden -S Linder -S Lindsey -S Linn White -S Little -S Lituanica -S Liverpool -S Livingston -S Lloyd -S Loantaka -S Lock -S Lockwood -S Locust -S Lodge -S Lombard -S London -S Long -S Long Beach -S Longcross -S Longview -S Longwood -S Loomis -S Loop -S Lorang -S Lord -S Lore -S Lorel -S Lorraine -S Lorton -S Lothair -S Lotus -S Louck -S Loucks -S Louis -S Lourdes -S Loveland -S Lowe -S Lowell -S Lucas -S Luella -S Lumber -S Luna -S Lund -S Lyle -S Lyman -S Lynn -S Lynne -S Lyon -S Lytle -S Macalester -S Mackinaw -S Macrae -S Madison -S Magnolia -S Magoun -S Maid Marion -S Main -S Major -S Malibu -S Mallard -S Mallory -S Malta -S Manassas -S Manchester -S Manistee -S Mann -S Manomin -S Manor -S Mansfield -S Mansion -S Maple -S Maplewood -S Marathon -S Marilyn -S Marion -S Market -S Marquette -S Marshall -S Marshfield -S Martha -S Martin -S Martine -S Mary -S Mary Therese -S Maryland -S Mason -S Massasoit -S Matteson -S Maxon -S May -S Mayfield -S Mayflower -S Maywood -S Mc Vicker -S McCarron -S McCarthy -S McCorkle -S McDaniel -S McDowell -S McKinley -S McKinley Woods -S McKnight -S Meacham -S Meade -S Meader -S Meadow -S Meadow Fence -S Medina -S Medinah -S Meister -S Melody -S Melrose -S Melvina -S Menominee -S Meridian -S Merion -S Merle -S Merrick -S Merrill -S Merrimac -S Merrion -S Mesa -S Metron -S Michael -S Michaels -S Michigan -S Micvicker -S Middle Neck -S Middle Point -S Middlesex -S Middleton -S Middletown -S Midfield -S Midland -S Midlothian -S Mill -S Millard -S Miller -S Millpage -S Millwood -S Milton -S Milwaukee -S Mineral Springs -S Minerva -S Minnesota -S Minnisink -S Mississippi -S Mississippi River -S Misty Harbour -S Mitchell -S Mobile -S Moetz -S Monaghan -S Monitor -S Monroe -S Montague -S Montana -S Montclair -S Monterey -S Montgomery -S Moody -S Moore -S Moorman -S Morel -S Morgan -S Mormann -S Morris Hill -S Mortimer -S Mount Curve -S Mount Prospect -S Mountain -S Mozart -S Muir -S Muirfield -S Mulligan -S Municipal -S Munn -S Murphy -S Murray -S Muskegon -S Myrtle -S Na Wa Ta -S Nacke -S Nagle -S Nancy -S Naper -S Narragansett -S Nash -S Nashville -S Nassau -S Natchez -S Natoma -S Navajo -S Neenah -S Nelson -S Neltnor -S Neva -S New -S New England -S New Hampshire -S Newberry -S Newcastle -S Newland -S Newman -S Nichols -S Niemann -S Nolton -S Norbury -S Nordica -S Normal -S Normandy -S Northampton -S Northern Illinois -S Northwoods -S Norwood -S Nottingham -S Noyes -S O S -S Oak -S Oak Creek -S Oak Glenn -S Oak Knoll -S Oak Park -S Oak Ridge -S Oak River -S Oak Shore -S Oakcrest -S Oakdale -S Oakenwald -S Oakhurst -S Oakland -S Oakleaf -S Oakley -S Oakridge -S Oaks -S Oakwood -S Ocean -S Oconto -S Octavia -S Ode -S Ohio -S Oketo -S Old Creek -S Old Glebe -S Old Hickory -S Old Mill -S Old Plum Grove -S Old Post -S Old Rand -S Olive -S Oltendorf -S Olympia -S Olympic -S Ontario -S Orange -S Orchard -S Oregon -S Orleans -S Orme -S Osborne -S Osceola -S Ott -S Ottawa -S Owen -S Oxford -S Oyster Bay -S Packers -S Page -S Palm -S Palos -S Parente -S Park -S Park Place -S Parke -S Parker -S Parker Ridge -S Parkside -S Parnell -S Pascal -S Passaic -S Patrick -S Patterson -S Paula -S Paulina -S Paxton -S Payne -S Peach -S Peach Tree -S Pearl -S Pebble Creek -S Pecan -S Peck -S Pembroke -S Penataquit -S Pennington -S Pennsylvania -S Peoria -S Perkins -S Perry -S Pershing -S Petersburg -S Pettibone -S Peyton -S Pfingsten -S Phelps -S Phillip -S Phillips -S Pickens -S Pickett -S Pierce -S Piermont -S Pine -S Pine Grove -S Pine Hill -S Pine Valley -S Pinecrest -S Pinehurst -S Pinewood -S Pipeline -S Pitt -S Plantation -S Plaza -S Pleasant -S Pleasant Hill -S Plum Grove -S Plymouth -S Plympton -S Poe -S Point -S Point Douglas Ser -S Pointe -S Polk -S Pollard -S Polling House -S Ponderosa -S Pool -S Poplar -S Porter -S Powder Mill -S Prairie -S Prairie View -S Prater -S Preakness -S Preller -S Prescott -S President -S Princeton -S Prindle -S Prior -S Prospect -S Provencal -S Pueblo -S Pulaski -S Putnam -S Quaker -S Quassey -S Quebec -S Queen -S Quentin -S Quincy -S Quinn -S Racine -S Raddant -S Railroad -S Rammer -S Rand -S Randall -S Randolph -S Randolphville -S Rankin -S Rathje -S Raven -S Ravinia -S Ravisloe -S Rawson Bridge -S Raymond -S Rea -S Rebecca -S Red Barn -S Red Coat -S Redwood -S Regan -S Regent -S Regents -S Regina -S Reid -S Reilly -S Remington -S Rensselaer -S Rexford -S Reynolds -S Rhodes -S Richard -S Richards -S Richmond -S Ridge -S Ridgedale -S Ridgeland -S Ridgeway -S Riegel Farm -S River -S River Clubhouse -S River Landing -S Rivercrest -S Riverdale -S Riverside -S Riverview -S Riviera -S Robert -S Robert Damm -S Robert Emmett -S Roberta -S Roberts -S Robin -S Robin Hill -S Robincrest -S Robinson -S Rockwell -S Rodenburg -S Rohallion -S Rolfe -S Roma -S Ronald -S Roosevelt -S Root -S Rose -S Rosedale -S Roselle -S Rosemary -S Rosewell -S Rosewood -S Ross -S Rowell -S Roxanna -S Roy -S Royal Crest -S Royal Oak -S Royal Oaks -S Ruble -S Ruby -S Rush -S Russell -S Rutherford -S Ryan -S Sacramento -S Saddlebrook -S Saddlecreek -S Sagamore -S Sage -S Saint Asaph -S Saint Marys -S Salem -S San Fernando -S San Francisco -S Sandpiper -S Sangamon -S Sarah -S Saratoga -S Sawyer -S Saxon -S Sayer -S Sayre -S Schmidt -S School -S Schoolhouse -S Schultz -S Sciota -S Scott -S Scottsdale -S Scoville -S Seamans Neck -S Sears -S Seebert -S Seeley -S Seminary -S Seminole -S Seneca -S Senour -S Serenity -S Service -S Seymour -S Shaddle -S Shannon -S Shelby -S Shelley -S Sheridan -S Sherman -S Sherwood -S Shields -S Shirley -S Shirlington -S Shore -S Short -S Shoshoni -S Silver Fox -S Sir Galahad -S Skidmore -S Skokie -S Skye -S Skyline -S Sleight -S Smith -S Snelling -S South -S South Chicago -S South Elgin -S South Shore -S Southgate -S Southmeadow -S Southport -S Southwood -S Spalding School -S Spaulding -S Spencer -S Spring -S Spring Garden -S Spring Meadows -S Springfield -S Springwood -S Spruce -S Suffolk -S Sullivan -S Summit -S Sumner -S Sunnyside -S Sunridge -S Sunrise -S Sunset -S Susan -S Sutton -S Sutton Lake -S Sycamore -S Sylvan -S Syndicate -S Tabler -S Taft -S Talman -S Tara -S Tarn -S Taylor -S Teal -S Tehle -S Terhune -S Terminal -S Terrace -S Testa -S Thistle -S Thomas -S Thomas Dillon -S Thompson -S Thorn Creek -S Throop -S Thurlow -S Tilden -S Timber -S Timberlane -S Tippecanoe -S Tonka -S Torrence -S Tower -S Town Center -S Trails End -S Travers -S Travis -S Tripp -S Trivett -S Troy -S Trumbull -S Truro -S Tryon -S Turf Hill -S Twin Creek -S Tyler -S Tyson -S Uhle -S Union -S University -S Upton -S Urban -S Utah -S Utica -S Valley -S Van Beveren -S Van Brunt -S Van Buren -S Van Dien -S Van Dorn -S Van Nortwick -S Van Vlissingen -S Vanderbilt -S Vanderburg -S Vanderpoel -S Varner -S Vaupell -S Veitch -S Ventura -S Vermillion -S Vermont -S Vernon -S Vetter -S Victoria -S Vienna -S View -S Vigo -S Viking -S Villa -S Village -S Vincennes -S Vincent -S Vine -S Violet -S Virginia -S Vista -S Vivyen -S Volbrecht -S Wa Pella -S Wabash -S Wabasso -S Wagonwheel -S Waiola -S Wakefield -S Waldinger -S Walker -S Walkup -S Wallace -S Waller -S Wallingford -S Walnut -S Walsh -S Walter Reed -S Walton -S Ward -S Warner Bridge -S Warren -S Warrington -S Warwick -S Waseca -S Washington -S Washtenaw -S Wasson -S Water -S Waterford -S Waterloo -S Waterman -S Waters Edge -S Waterview -S Watkins -S Waukegan -S Waverly -S Wayman -S Wayne -S Wayzata -S Wear -S Webster -S Wedgewood -S Weed -S Weiler -S Wellers -S Wells -S Wellwood -S Wenonah -S Wentworth -S Wesley -S Wespark -S West -S Westchester -S Western -S Westgate -S Westland -S Westlawn -S Westmore Meyers -S Weston -S Westview -S Westwood -S Wheaton -S Wheeler -S Wheeling -S Whipple -S Whispering Hills -S White -S White Oak -S Whiting -S Whitt -S Whittier -S Wickom -S Wiesbrook -S Wilber -S Wilder -S Will Center -S Willard -S Wille -S William -S Williams -S Williamsburg -S Williston -S Willow -S Willow Creek -S Willow Springs -S Willow Walk -S Wilmette -S Wilshire -S Wilson -S Winchester -S Windcrest -S Windham -S Windhill -S Windmill -S Windsor -S Winfield -S Winslow -S Winston -S Winter -S Winthrop -S Wisconsin -S Wise -S Wolcott -S Wolf -S Wolf Lake -S Wood -S Wood Dale -S Woodbine -S Woodbriar -S Woodbury -S Woodcrest -S Woodfield -S Woodland -S Woodlawn -S Woodley -S Woodrow -S Woods -S Woodside -S Woodstock -S Wool -S Wright -S Wulff -S Wynstone -S Wynstone Park -S Yale -S Yates -S York -S Youngs -S Zoranne -S du Bois -S la Crosse -S la Londe -S. Boston Bypass -S. Hamlin -S. King -SE Brighton -SE Circle -SE Dague -SE Davison -SE Delaware -SE Eastwood -SE Erie -SE Frontage -SE Garfield -SE Ontario -SE Park -SE River -SW Centennial -SW Circle -SW Frontage -SW Garfield -SW Pershing -SW Village -Saari -Saba -Sabal -Sabastian -Sabden -Saber -Sabercat -Sabeys Beach -Sabin -Sabina -Sabine -Sabine Farm -Sabines -Sabino Farm -Sable -Sable Oaks -Sable Ridge -Sabo -Sabre -Sabrina -Sacarrappa -Sach -Sachem -Sachem Rock -Sachfield -Sachs -Sacia -Sack -Sackerman -Sackett -Sackman -Sackrett -Sackvile -Sackville -Saco -Sacomano -Sacombe -Sacombs Ash -Sacoya -Sacramento -Sacred -Sacred Heart -Sacred Palm -Sacremento -Sacretariat -Saddington -Saddle -Saddle Back -Saddle Brook -Saddle Club -Saddle Creek -Saddle Crest -Saddle Hill -Saddle Horn -Saddle Mountain -Saddle Oaks -Saddle Rack -Saddle Ranch -Saddle Ridge -Saddle River -Saddle Rock -Saddle Tree -Saddle Wood -Saddleback -Saddleback Hill -Saddleback Ridge -Saddlebred -Saddlebrook -Saddlemount -Saddler -Saddlerock -Saddleview -Saddlewood -Saddleworth -Sade -Sadi -Sadie Hutt -Sadies -Sadleir -Sadler -Sadlers -Sadlers Wells -Sadlier -Sadme -Sadore -Sadowa -Sadowski -Sadro -Saenz -Safa -Safari -Safffron -Safford -Safforo -Saffron -Saford -Safran -Saga -Sagamore -Sagamore Farm -Sagamore Hill -Sagamore Spring -Saganashkee -Sagar -Sagars -Sage -Sage Brush -Sage Canyon -Sage Grouse -Sage Hill -Sage Sparrow -Sagebrush -Sageland -Sageman -Sagemont -Sager -Sages -Sageview -Sagewood -Saggart Field -Saggers -Saginaw -Sagittarius -Saguaro -Sahara -Sahler -Sahlin Farm -Sahlin Pvt -Saiala -Saic -Saidel -Saigon -Sail -Sailboat -Sailer -Sailfish -Sailor -Sailors -Sailors Bay -Sailpointe -Sailsbury -Sailstone -Sailview -Sailway -Sain Clements -Saindon -Saines -Sainfoin -Saini -Sainsbury -Sainsburys Fifth -Saint Agatha -Saint Agnells -Saint Agnes -Saint Alban -Saint Albans -Saint Albert -Saint Alphonsus -Saint Ambrose -Saint Andre -Saint Andrew -Saint Andrews -Saint Ann -Saint Anne -Saint Anns -Saint Anthony -Saint Anthonys -Saint Anton -Saint Asaph -Saint Augustin -Saint Augustine -Saint Augustines -Saint Barbara -Saint Barnabas -Saint Bartholomew -Saint Bartholomews -Saint Bede -Saint Benedicts -Saint Bernard -Saint Bernards -Saint Boniface -Saint Botolph -Saint Brelades -Saint Brendan -Saint Bride -Saint Camille -Saint Casimir -Saint Catherine -Saint Catherines -Saint Cecelia -Saint Cecilia -Saint Chads -Saint Charles -Saint Christopher -Saint Clair -Saint Claire -Saint Clar -Saint Clare -Saint Clements -Saint Cloud -Saint Croix -Saint Cross -Saint David -Saint Davids -Saint Denis -Saint Deyns -Saint Dominics -Saint Dorothy -Saint Edmunds Center -Saint Edward -Saint Edwards -Saint Elizabeth -Saint Elmo -Saint Etheldore -Saint Eva -Saint Felix -Saint Florence -Saint Florian -Saint Francis -Saint George -Saint George Barber -Saint George Ranch -Saint Georges -Saint Germain -Saint Gertrudes -Saint Giles -Saint Gregory -Saint Gregorys -Saint Helena -Saint Hildas -Saint Hill -Saint Hillaire -Saint Huberts -Saint Isabel -Saint Ives -Saint James -Saint Jean -Saint Jerome -Saint Joan -Saint John -Saint Johns -Saint John’s -Saint Joseph -Saint Josephs -Saint Jude -Saint Julie -Saint Katherine -Saint Kevin -Saint Kilda -Saint Kitts -Saint Lawrence -Saint Leonards -Saint Lo -Saint Louis -Saint Lukes -Saint Lynn -Saint Marcel -Saint Margaret -Saint Margarets -Saint Mark -Saint Marks -Saint Martin -Saint Martins -Saint Mary -Saint Marys -Saint Mary’s -Saint Mathews -Saint Matthew -Saint Maur -Saint Mayeul -Saint Michael -Saint Michaels -Saint Mihiel -Saint Moritz -Saint Nicholas -Saint Nicolas -Saint Norbert -Saint Oswald’s -Saint Patricks -Saint Paul -Saint Pauls -Saint Paul’s -Saint Peter -Saint Peters -Saint Peter’s -Saint Philips -Saint Phillips -Saint Pinnock -Saint Raphael -Saint Raymonds -Saint Regis -Saint Richard -Saint Richards -Saint Rose -Saint Saviour Warwick -Saint Saviours -Saint Swithans -Saint Theresa -Saint Thomas -Saint Thomas Church -Saint Thomas More -Saint Tropez -Saint Ursula -Saint Victor -Saint Vincent -Saint Vincents -Saint Winifreds -Sainton -Saints -Saintsbridge -Saintsbury -Saipan -Sais -Saisbury -Sajak -Sak -Sakas -Sakata -Sakenda -Saklan -Saklan Indian -Saks Fifth -Sakura -Sal -Salada -Saladine -Salado -Salado Creek -Salamanca -Salamander -Salamander Canyon -Salamaua -Salas -Salazar -Salberg -Salbrook -Salceda -Salcombe -Salcote -Salcott -Saldane -Sale -Saleford -Salem -Salem Church -Salem End -Salem Lake -Salem Pond -Salem Ridge -Salem Water Works -Salemtown -Salerno -Sales -Salesian -Salford -Salgado -Salibury -Salida -Salima -Salina -Salinas -Salisbury -Salisbury Downs -Salisbury Hall -Salisbury Hill -Salisbury Park -Salishan -Salix -Salk -Salkeld -Sallaway -Sallie Mae -Sallie O -Sally -Sally Ann -Sally Ride -Salma -Salmaan -Salmar -Salmi -Salmon -Salmon Creek -Salmon Falls -Salmon River -Salmond -Salmons -Salomons -Salon -Salonga Woods -Salop -Salrit -Salt -Salt Box -Salt Creek -Salt Hill -Salt Lake -Salt Meadow -Salt Spray -Salt Wall -Saltaire -Saltash -Saltbrook -Saltcoats -Saltcreek -Salter -Salterford -Salterns -Salters -Salterton -Salteye -Salthill -Saltings -Saltlick Fire -Saltmarsh -Saltmeadow -Salton Sea -Saltonstall -Saltoun -Saltpan -Saltram -Saltrush -Salts -Saltwater -Saltwell -Saltwind -Saltwood -Saltzman -Saluatation -Salusbury -Salutation -Salva -Salvador -Salvatierra -Salvatore -Salvi -Salvia -Salvin -Salvington -Salvio -Salway -Salzberg -Sam -Sam Cava -Sam Fonzo -Sam Hill -Sam McDonald -Sam Neel -Sam Owings -Sam Riggs -Sam Ryder -Sam Smith -Sam Swire -Samaga -Samantha -Samantha Riley -Samar -Samarai -Samaria -Samaritan -Samedra -Samford -Sammet -Sammett -Sammie -Sammis -Sammut -Samnatha -Samo -Samoa -Samora -Samos -Samoset -Samosett -Sampford -Sample -Sampleoak -Sampshill -Sampson -Sampton -Samrose -Sams -Samson -Samuel -Samuel Adams -Samuel Foster -Samuel Fuller -Samuel Gamwell -Samuel Harrington -Samuel Marsden -Samuel Morse -Samuel Ogden -Samuel Parlin -Samuel Prescott -Samuel Robert -Samuel Terry -Samuel Trexler -Samuel Wallis -Samuel Woodworth -Samuels -Samuels Pine -Samuelson -Samworth -Samy -San Aleso -San Andreas -San Andreas Fire -San Andres -San Angelo -San Anselmo -San Antonio -San Antonio Valley -San Ardo -San Benito -San Bernadino -San Blas -San Bruno -San Carlos -San Carlos Fire -San Clemente -San Cristobal -San Diego -San Dimas -San Domar -San Domingo -San Felice -San Felipe -San Fernando -San Francis -San Franciscan -San Francisco -San Gabrial -San Gabriel -San Geronimo Ridge -San Geronimo Valley -San Gorgonio -San Gregorio -San Ignacio -San Jacinto -San Jaun Canyon -San Joaquin -San Jose -San Juan -San Juan Canyon -San Juan Capistrano -San Juan Grade -San Juan Hollister -San Juan Pass -San Jude -San Junipero -San Justo -San Lazaro -San Leandro -San Lorenzo -San Lucas -San Luis -San Luis Obispo -San Luis Rey -San Luppe -San Marco -San Marcos -San Marcus -San Mardo -San Marin -San Marin Fire -San Marino -San Martin -San Mateo -San Michele -San Michelle -San Miguel -San Miguel Canyon -San Minete -San Nichols -San Nicolas -San Pablo -San Pablo Dam -San Patricio -San Paulo -San Pedro -San Pedro Mountain -San Pedro Terrace -San Petronio -San Rafael -San Ramon -San Ramon Valley -San Raymundo -San Remo -San Rey -San Rivas -San Rocco -San Saba -San Sabana -San Salvador -San Sebastian -San Simeon -San Sonita -San Tomas -San Tomas Aquino -San Tropez -San Vicente -San Vincente -San Vito -San Ysidro -Sanananda -Sanatorium -Sanberg -Sanborn -Sanborn Hill -Sanburnol -Sanby -Sanches -Sanchez -Sancho -Sancroft -Sanctuary -Sanctuary Point -Sand -Sand Bar -Sand Beach -Sand Blossom -Sand Cherry -Sand Creek -Sand Dam -Sand Dollar -Sand Dunes Forest -Sand Harbor -Sand Harbour -Sand Hill -Sand Hole -Sand Park -Sand Pine -Sand Piper -Sand Point -Sand Pointe -Sand Prairie -Sand Ridge -Sand Rock -Sand Spring -Sand Trap -Sand de Sac -Sandaba -Sandage -Sandakan -Sandal -Sandal Wood -Sandalfoot -Sandalwood -Sandalyn -Sanday -Sandbach -Sandbed -Sandberg -Sandbloom -Sandborn -Sandbourne -Sandbrook -Sandburg -Sandby -Sandcastle -Sandchain -Sandcherry -Sandcliff -Sandcroft -Sandcross -Sandeen -Sandelin -Sandell -Sandelwood -Sandemara -Sander -Sandera -Sandering -Sanderling -Sanders -Sanders Ranch -Sandersfield -Sanderson -Sandersons -Sanderstead -Sanderstead Court -Sandfield -Sandfold -Sandford -Sandford Mill -Sandgap -Sandgate -Sandhage -Sandham -Sandheath -Sandhill -Sandhills -Sandholdt -Sandhole -Sandholm -Sandhurst -Sandhutton -Sandi -Sandia -Sandifer -Sandiford -Sandilands -Sandileigh -Sandingham -Sandini -Sandison -Sandisplatt -Sandiway -Sandland -Sandle -Sandleigh -Sandler -Sandlewood -Sandling -Sandmark -Sandmere -Sandmoor -Sandmound -Sandon -Sandown -Sandpebble -Sandpike -Sandpiper -Sandpiper Cove -Sandpiper Key -Sandpit -Sandpit Hall -Sandpits -Sandpoint -Sandra -Sandra Pond -Sandraya Heights -Sandretto -Sandri -Sandrick -Sandridge -Sandridgebury -Sandringham -Sandrock -Sandrock Hill -Sands -Sands Light -Sands Point -Sandsbury -Sandsend -Sandspur -Sandstock -Sandstone -Sandtoft -Sandusky -Sandwald -Sandway -Sandwel -Sandwell -Sandwich -Sandwood -Sandy -Sandy Bank -Sandy Bar -Sandy Bay -Sandy Beach -Sandy Bridges -Sandy Brook -Sandy Cove -Sandy Creek -Sandy Cross -Sandy Farm -Sandy Glen -Sandy Hill -Sandy Hollow -Sandy Hook -Sandy Knoll -Sandy Landing -Sandy Lewis -Sandy Lodge -Sandy Manor -Sandy Plains -Sandy Point -Sandy Pond -Sandy Ridge -Sandy Rock -Sandy Spring -Sandy Valley -Sandyacres -Sandybrook -Sandycove -Sandycroft -Sandyford -Sandyhill -Sandyhurst -Sandylands -Sandymount -Sandys -Sandywood -Sanel -Sanfoin -Sanford -Sangamon -Sangamore -Sangay -Sanger -Sangers -Sangley -Sangmeister -Sangora -Sangrado -Sangria -Sanial -Sanibel -Sanibel Captiva -Sanilac -Saning -Sanitarium -Sanjer -Sankey -Sanko -Sanlin -Sanner -Sanns -Sano -Sanoni -Sans -Sans Souci -Sansbury -Sansom -Sansome -Sansone -Sanspareil -Sant Johns -Santa Alicia -Santa Ana -Santa Anita -Santa Anna -Santa Barbara -Santa Catalina -Santa Clara -Santa Croce -Santa Cruz -Santa Domingo -Santa Elena -Santa Fe -Santa Helena -Santa Inez -Santa Juanita -Santa Lucia -Santa Margarita -Santa Marguarita -Santa Maria -Santa Marina -Santa Mesa -Santa Monica -Santa Paula -Santa Ray -Santa Rita -Santa Rosa -Santa Rosa Creek -Santa Rose -Santa Serra -Santa Susana -Santa Teresa -Santa Theresa -Santa Trinita -Santa Vera -Santa Ynez -Santa Ysabel -Santana -Santander -Santapogue -Santarosa -Santas Village -Santayana -Santee -Santeetlah -Santell -Santers -Santiago -Santilli -Santini -Santley -Santolina -Santon -Santoni -Santorina -Santorini -Santos -Santos Ranch -Santour -Santry -Santuck -Santuit -Sanway -Sanwood -Sanzoverino -Saphire -Sapienza -Sapling -Sapling Ridge -Sapone -Sapphire -Sapphire Ridge -Sappington -Sara -Sara Ann -Sara Jane -Sarabande -Saracen -Saradale -Saraglen -Sarah -Sarah Anne -Sarah Constant -Sarah Doublet -Sarah Durack -Sarah Holland -Sarah Jane -Sarah Landing -Sarahills -Sarahs Grove -Sarakal -Saralynn -Saran -Sarana -Saranac -Saranap -Saranell -Sarasota -Saratoga -Saratoga Creek -Saratoga Heights -Saratoga Hills -Saratoga Park -Saratoga Sunnyvale -Saratoga Toll -Saratoga Vista -Saravanos -Saraview -Sarayah -Sarazen -Sarazin -Sard -Sardam -Sardinia -Sardonyx -Sardyga -Sargeant -Sargeants -Sargent -Sargent Roode -Sargo -Saric -Sarina -Sark -Sarkesian -Sarkis -Sarner -Sarnesfield -Sarno -Saro -Saron -Saroni -Sarratt -Sarre -Sarrinen -Sarsby -Sarsen -Sarsfeld -Sarsfield -Sartell -Sartelle -Sartor -Sartori -Sartwell -Sarum -Sarver -Sasher -Saskatchewan -Sassafras -Sassamon -Sassel -Satanita -Satara -Satelberg -Satellite -Sater -Sather -Satin -Satinash -Satinwood -Satis -Satow -Satterfield -Satterlee -Satterley -Satterthwaite -Sattler -Satuckett -Satuit Meadow -Saturday Evening -Saturn -Saucelands -Saucer -Saucier -Sauders Bay -Sauerbacker -Sauganash -Saugatuck -Saugus -Sauk -Sauk Pointe -Saul -Saull -Sauls -Saultell -Saulty -Saumur -Sauna -Sauna Row -Sauncey -Sauncey Wood -Saunder -Saunders -Saunders Ness -Saunders Point -Saunderton -Saunton -Sauquoit -Saurine -Sausal -Sausalito -Sautter -Sauzer -Savacentre Approach -Savage -Savage Guilford -Savaker -Savana -Savanna -Savanna Lakes -Savanna Oaks -Savannah -Savannah River -Savant -Savay -Saverien -Savernake -Savery -Saverys -Savick -Savile -Savill -Saville -Savin -Savin Hill -Savine -Savio -Savo -Savoie -Savona -Savory -Savoury -Savoy -Saw Mill -Saw Mill Pond -Saw Mill River -Saw Tooth Canyon -Sawbridgeworth -Sawdust -Sawell -Sawgrass -Sawhorse -Sawin -Sawkins -Sawleaf -Sawley -Sawmill -Sawmill Brook -Sawmill Creek -Sawmill Pond -Sawpit -Sawtell -Sawtelle -Sawtooth -Sawyer -Sawyer Hill -Sawyer Park -Sawyers -Sax -Saxby -Saxbys -Saxham -Saxlingham -Saxon -Saxon Flowers -Saxon Wood -Saxon Woods -Saxon Woods Park -Saxonbury -Saxonholme -Saxonia -Saxons -Saxonvale -Saxony -Saxton -Saxville -Saxwood -Saybrook -Saybrooke -Saybrooke Oaks -Saybrooke View -Sayer -Sayers -Sayes Court -Sayes Court Farm -Sayesbury -Saylers Creek -Sayles -Sayles Hill -Saylor -Sayner -Sayonara -Sayre -Sayreville -Sayville -Sayward -Saywell -Saywer -Scabharbour -Scaddan -Scadding -Scafell -Scaggs -Scaggsville -Scagia -Scagliotti -Scahill -Scala -Scalera -Scales -Scalletta -Scallows -Scally -Scaltrito -Scalza -Scammell -Scammonden -Scandia -Scandinavia -Scandrett -Scaneateles -Scanello -Scanlan -Scanland -Scanlon -Scannell -Scar Hill -Scarab -Scaraway -Scarboro -Scarborough -Scarborough Commons -Scarbrook -Scarcliffe -Scarcroft -Scardenia -Scarfe -Scarff -Scarfield -Scarisbrick -Scarlata -Scarlatti -Scarle -Scarlet -Scarlet Mist -Scarlet Oak -Scarlet Sage -Scarlett -Scarlett Oak -Scarletts -Scarr -Scarr End -Scarsdale -Scarsdale Farm -Scarth -Scatcherd -Scatcherd Park -Scatterdells -Scatteree -Scaup -Scawen -Scawfell -Scenery -Scenic -Scenic Byway -Scenic Heights -Scenic Hts -Scenic Meadow -Scenic Overlook -Scenic Ranch -Scenic Ridge -Scenic View -Scenic Vista -Scenic Woods -Scenicview -Scenicwood -Scenna -Scepter -Sceptre -Scettrini -Scettrini Fire -Schaaf -Schachtner -Schadeck -Schadt -Schaefer -Schaefer Ranch -Schaeffer -Schafer -Schaffer -Schaffhausen -Schalk -Schall -Schallenberger -Schaller -Schanck -Schank -Schaper -Scharber -Scharer -Scharff -Scharmann -Schaumburg -Scheel -Scheele -Scheer -Scheerer -Scheffelin -Scheibel -Scheid -Scheidecker -Scheinfein -Scheldrup -Schelhorn -Schellbach -Schellville -Schelly -Schelter -Schember -Schembri -Schenck -Schendel Lake -Schenectady -Schenk -Schenley -Schepis -Scherell -Scherer -Scherland -Schermerhorn -Scherrer -Scherwood Greens -Scheuneman -Scheurer -Schey -Schiappino -Schick -Schiedler -Schieffelin -Schiele -Schifsky -Schillaci -Schiller -Schilling -Schillinger -Schillingsburg -Schillton -Schimmel -Schindel -Schindler -Schinkel -Schiphol -Schirra -Schlagel -Schlager -Schlapp -Schleicher -Schleifer -Schleigel -Schleiger -Schlenker -Schletty -Schley -Schlictman -Schlitz -Schlobohm Gardens -Schlomann -Schlomka -Schlosser -Schlottfeld -Schmahl -Schmeidt -Schmeiser -Schmidt -Schmidt Lake -Schmidts -Schmitt -Schmuckley -Schmule -Schnecks -Schneider -Schober -Schobert -Schock -Schoder -Schoeffel -Schoeffler -Schoen -Schoenbeck -Schoener -Schoenfield -Schoenherr -Schofield -Schofields -Schofields Farm -Schoger -Schoharie -Scholar -Scholar Green -Scholars -Scholars Green -Scholebrook -Scholefield -Scholer -Scholerbrook -Scholes -Scholes Rakehill -Scholey -Scholl -Scholtze -Scholz -Schomer -Schommer -School -School Craft -School District -School Gate -School Green -School Hill -School House -School Mill -School View -Schoolcraft -Schooldale -Schooley -Schoolgate -Schoolhouse -Schoolhouse Cove -Schoolmaster -Schools -Schoolside -Schoon -Schooner -Schooner Bay -Schooner Ridge -Schoonmaker -Schoonover -Schoosett -Schor -Schorie -Schorne -Schortmann -Schott -Schraalenburgh -Schrader -Schrage -Schramm -Schramms -Schramsberg -Schreiber -Schreiner -Schriber -Schrider -Schrieffer -Schriever -Schroder -Schroeder -Schroers Farm -Schroth -Schrum -Schubert -Schuerle -Schuett -Schuh -Schulamar -Schuldt -Schuler -Schuler Ranch -Schulmeister -Schulte -Schulten -Schulties -Schultz -Schulz -Schulze -Schum -Schumacher -Schumack -Schumaker -Schuman -Schurman -Schurtz -Schurz -Schussler -Schuster -Schutte -Schutte Farm -Schuyler -Schuylkill -Schwab -Schwan Lake -Schwartz -Schwartze -Schwebel -Schwerin -Schwerman -Schwinn -Schyler -Sciarappa -Scibilia -Science -Science Center -Science Ctr -Scientia -Scimitar -Sciota -Scioto -Sciots -Scipio -Scituate -Scobbie -Scobell -Scobie -Scocles -Scofield -Scoles -Sconset -Scooter -Scoralick -Scords -Score -Scoresby -Scorpio -Scorpion -Scorton -Scossa -Scot -Scot Ladd -Scotby -Scotch -Scotch Common Argyle -Scotch Dam -Scotch Hall -Scotch Haven -Scotch Hill -Scotch Pine -Scotch Plains -Scotchman -Scotchy -Scotdale -Scotia -Scotland -Scotland Bridge -Scotland Farm -Scotland Hall -Scotland Hill -Scotland Hill Park -Scotland Mill -Scotlands -Scotney -Scots -Scotsdale -Scotsford -Scotsglen -Scotshall -Scotswood -Scott -Scott Creek -Scott Farm -Scott Foresman -Scott Hall -Scott Hill -Scott Key -Scott Robin -Scott Town -Scotteswood -Scottfield -Scotti -Scottish -Scottish Autumn -Scottish Hunt -Scottish Rite -Scottlynne -Scottons -Scotts -Scotts Cove -Scotts Crossing -Scotts Farm -Scotts Grove -Scotts Hall -Scotts Landing -Scotts Manor -Scotts Mill -Scotts Run -Scotts Valley -Scottsboro -Scottsbridge -Scottsbury -Scottsdale -Scottsfield -Scottsvale -Scottswood -Scottwell -Scotty -Scotty Hollow -Scoulding -Scouler -Scouller -Scours -Scout -Scout Hill -Scout Ridge -Scouts -Scouts Camp -Scovell -Scoville -Scowcroft -Scown -Scragged Oak -Scraley -Scranton -Scrapsgate -Scratcherd -Scratchers -Scratchings -Scratton -Screech Owl Creek -Screvin -Scriba -Scriber Lake -Scribner -Scrimgeour -Scripps -Scripps Haven -Scripture -Scritchfield -Scrivani -Scriven -Scriveners -Scrivens -Scriver -Scrivner -Scroggins -Scrooby -Scropton -Scroxton -Scrub -Scrub Oak -Scrubbitts Park -Scrubbs -Scrubs -Scrutton -Scudamore -Scudder -Scudders -Sculley -Scully -Sculptor -Sculpture Point -Scures -Scurvy Hall -Scutley -Scylla -Sea -Sea Beach -Sea Bird -Sea Biscuit -Sea Breeze -Sea Bright -Sea Chase -Sea Cliff -Sea Cloud -Sea Cove -Sea Foam -Sea Forest -Sea Gate -Sea Gull -Sea Horse -Sea Island -Sea Isle -Sea Light -Sea Meadow -Sea Mist -Sea Otter -Sea Pines -Sea Point -Sea Ranch -Sea Ridge -Sea Shell -Sea Shore -Sea Side -Sea Spray -Sea View -Sea Vista -Sea Walk -Sea Wall -Seabeach -Seabird -Seabiscuit -Seaboard -Seaborn -Seaborne -Seaborough -Seabreeze -Seabridge -Seabright -Seabring -Seabro -Seabrook -Seabury -Seabury Point -Seacape -Seacliff -Seacloud -Seacombe -Seacord -Seacourt -Seacrest -Seadrift -Seafarer -Seafield -Seafirth -Seaflower -Seafoam -Seaford -Seaforth -Seagate -Seager -Seager Farm -Seagirt -Seagrave -Seagraves -Seagreen -Seagrove -Seagry -Seagull -Seaham -Seahaven -Seahawk -Seahawks -Seahorn -Seahorse -Seal -Seal Cove -Seal High -Seal Hollow -Seal Pointe -Seal Rock -Sealand -Seale -Sealey -Sealight -Sealock -Sealtest -Sealth -Sealund -Sealy -Seaman -Seaman Neck -Seamans -Seamans Neck -Seamas -Seamer -Seamist -Seamon -Seamons -Seamont -Seamore -Seamount -Sean -Seapearl -Seaport -Sear Ranch -Searbrook -Searby -Search -Searches -Searchlight -Searchwood -Searcy -Seareel -Searing -Searingtown -Searl -Searle -Searles -Sears -Sears Island -Sears Landing -Sears Point -Sears Ranch -Searsville -Seascale -Seascape -Seascape Ridge -Seashell -Seashore -Seaside -Seasongood -Seasons -Seasons Ridge -Seaspray -Seastorm -Seat Pleasant -Seathwaite -Seaton -Seatroller -Seattle -Seaver -Seaverns -Seavey -Seaview -Seaview Ranch -Seavy -Seawall -Seawane -Seawanhaka -Seaward -Seaway -Seawell -Seawind -Seawood -Seay -Seba -Sebago -Sebastan -Sebastapol -Sebastian -Sebastian Bore -Sebastiani -Sebastion -Sebastopol -Seberger -Sebert -Sebon -Sebrell -Sebright -Sebring -Secant -Secatoag -Secatogue -Secaucus -Seckel -Secker -Secluded -Secluded Oaks -Second -Second Brook -Second Cross -Second Neptune -Second Roosevelt -Second Time -Seconset -Secor -Secoya -Secret Bay -Secret Garden -Secret Hollow -Secret Meadows -Secret Place -Secret River -Secretan -Secretariat -Section -Security -Security Park -Sedalia -Sedan -Sedcote -Sedding -Seddley -Seddon -Seddon Hill -Sedge -Sedge Meadow -Sedge Wood -Sedgebrook -Sedgecombe -Sedgefield -Sedgeford -Sedgehill -Sedgehurst -Sedgeman -Sedgemeadow -Sedgemere -Sedgemoor -Sedgemoore -Sedger -Sedgewell -Sedgewick -Sedgewick Village -Sedgewicke -Sedgley -Sedgley Park -Sedgman -Sedgmoor -Sedgwick -Sedleigh -Sedlescombe -Sedona -Sedore -Sedrup -Sedum -Sedwick -See -Seeanar -Seed -Seed Farm -Seedfield -Seedley -Seedley View -Seedling -Seedly Park -Seegers -Seek -Seekford -Seekonk -Seel -Seeley -Seeleys -Seelig -Seely -Seelye -Seeman -Seemas -Seemore -Seena -Seeno -Seer Green -Seers -Seery -Seeser -Seething -Sefton -Segel -Segelken -Segenhoe -Seger -Segers -Sego -Segovia -Segrove -Seguine -Seguridad -Sehring -Seibel -Seiburg -Seidel -Seidler -Seidman -Seifert -Seigel -Seiko -Seil -Seiler -Seine -Seitler -Seitz -Seiver -Sekforde -Sekonnet -SelWyn -Selah -Selassie -Selbie -Selborne -Selbourne -Selby -Selby Heights -Selby Ranch -Selcroft -Selden -Seldin -Seldon -Sele -Seley -Self -Self Esteem -Selford -Selfox -Selfridge -Selger -Selham -Selhurst -Selhurst New -Selig -Selim -Selina -Selinda -Selkirk -Sell -Selleck -Sellers -Sellincourt -Sellman -Sellner -Sellons -Sells -Sellstrom -Sellwood -Selma -Selmac -Selman -Selmart -Selmarten -Selmon -Selnick -Selo -Selover -Selsby -Selsdon -Selsdon Park -Selsey -Selsfield -Selso -Selstead -Selston -Seltzer -Selva -Selvage -Selvante -Selvyn -Selway -Selwood -Selworth -Selworthy -Selwyn -Sem -Semaan -Semaphore -Semel -Semeria -Semicircular -Semiconductor -Semillon -Seminary -Seminary Cove -Seminole -Semley -Semmens -Semmler -Semon -Semont -Semper -Semphill -Sempill -Semple -Semple Village -Sempstead -Semton -Senaca -Senacre -Senate -Senator -Senatorial -Send -Send Barns -Senda Ladera -Sendero -Sendick -Sends Barn -Seneca -Seneca Ayr -Seneca Chase Park -Seneca Crossing -Seneca Farm -Seneca Knoll -Seneca Park -Seneca Ridge -Senecal -Seney -Senga -Senhorinha -Senhouse -Senic -Senior -Senlac -Senn -Senna -Sennar -Senne -Sennen -Seno -Senon -Senpek -Senrab -Senseney -Senta -Senter -Sentinel -Sentry -Sentry Ridge -Sephar -Sephton -Seppala -Seppelt -Seppi -September -Septimus -Sepulveda -Sequams -Sequdia -Sequeira -Sequoia -Sequoia Creek -Sequoia Flat -Sequoia Glen -Sequoia Hill -Sequoia Pacific -Sequoia Ridge -Sequoia Valley -Sequola -Sequoya -Sequoyah -Sera -Serafine -Serafix -Seramonte -Seranade -Serbian -Serena -Serenade -Serendipity -Serene -Serenidad -Serenite -Serenity -Serenity Hills -Serenity Point -Serenity Valley -Serenity View -Sereno -Serenoa -Serge -Serge Hill -Sergeant -Sergeant Hartz -Sergeant John V Young -Sergeants -Sergeants Green -Sergi -Sergison -Serina -Serinne -Serle -Sermon -Sero Estates -Sero Pine -Serpa -Serpentine -Serpilio -Serra -Serramar -Serramonte -Serrano -Serravista -Serrell -Serres -Servern -Servia -Servia Hill Servia -Service -Services -Serviden -Serviss -Sesame -Sessions -Sestri -Set -Seta -Setauket -Setchell -Setford -Seth -Seth Hamilton -Sethlow -Seton -Seton Creek -Seton Hall -Seton Hill -Setrok -Sette -Setter -Setterland Farm -Setterquist -Setting Sun -Settington -Settle -Settlement -Settlers -Settlers Grove -Settlers Pond -Settlers Ridge -Settles -Settrington -Settstones -SetzLer -Seurat -Sevan -Sevarden -Sevely -Seven Acres -Seven Arches -Seven Bridge -Seven Bridges -Seven Crest -Seven Gables -Seven Hill -Seven Hills -Seven Hills Ranch -Seven Mile -Seven Oaks -Seven Pine -Seven Pines -Seven Sisters -Seven Springs -Seven Thorns -Seven Trails -Seven Trees -Seven Woods -Sevenacre -Sevenoake -Sevenoaks -Sevenside -Seventeenth -Seventh -Sever -Severalls -Severals -Severance -Severini -Severinsen -Severn -Severn Chapel -Severn Forest -Severn Grove -Severn Hills -Severn River -Severn Side Farm -Severna -Severncrest -Severncroft -Severndale -Severnside -Severnview -Severus -Severyns -Sevier -Sevilla -Seville -Sevington -Sevinor -Sevland -Sevor -Sewall -Sewall Woods -Sewan -Sewanee -Sewanois -Seward -Seward Park -Sewardstone -Sewaren -Sewdley -Sewell -Sewells Orchard -Sewickley -Sexa -Sexauer -Sexburga -Sextant -Sexton -Sexton Farm -Sexton View -Sextons -Sextus -Seybrooke -Seymer -Seymor -Seymore -Seymour -Seymour Court -Seymour Park -Seyon -Seyssel -Sgt Beers -Shabbona -Shabona -Shackamaxon -Shackel -Shackelford -Shackelton -Shackford -Shacklands -Shackleford -Shacklegate -Shackleton -Shacklewell -Shackliffe -Shackstead -Shad -Shad Creek -Shadbolt -Shadbush -Shaddick -Shaddock -Shaddox -Shade -Shade Tree -Shaded Leaf -Shadeland -Shadelands -Shadetree -Shadewell -Shadewood -Shadforth -Shadi -Shadle -Shadlow -Shadow -Shadow Bend -Shadow Brook -Shadow Creek -Shadow Crk -Shadow Dance -Shadow Falls -Shadow Hawk -Shadow Hill -Shadow Lake -Shadow Lawn -Shadow Leaf -Shadow Moss -Shadow Mountain -Shadow Oak -Shadow Park -Shadow Point -Shadow Pond -Shadow Ridge -Shadow Run -Shadow Tree -Shadow Valley -Shadow Wood -Shadowbrook -Shadowcreek -Shadowfax -Shadowglen -Shadowhill -Shadowood -Shadowport -Shadowridge -Shadowrock -Shadows -Shadowtree -Shadoxhurst -Shadwell -Shady -Shady Acres -Shady Arbor -Shady Beach -Shady Brook -Shady Cove -Shady Creek -Shady Dale -Shady Elm -Shady Glen -Shady Glenn -Shady Grove -Shady Hill -Shady Hills -Shady Hollow -Shady Island -Shady Knoll -Shady Mill -Shady Nook -Shady Oak -Shady Oaks -Shady Palm -Shady Path -Shady Pine -Shady Point -Shady Rest -Shady Ridge -Shady Rose -Shady Side -Shady Slope -Shady Spring -Shady Tree -Shady View -Shady Way -Shady Willow -Shady Wood -Shadybrook -Shadyglade -Shadygrove -Shadylane -Shadylawn -Shadyrest -Shadyside -Shadyslope -Shadyspring -Shadyview -Shadyway -Shadywood -Shaefer -Shafer -Shaffer -Shaffi -Shaffner -Shaft -Shafter -Shaftesbury -Shafto -Shafton -Shaftsbury -Shag Bark -Shagbark -Shaggy Calf -Shago -Shaheed -Shailer -Shainsky -Shainy -Shake Mill -Shake Tree -Shaker -Shaker Ridge -Shakerley -Shakespeare -Shakespeare Farm -Shakleton -Shakopee -Shalcomb -Shalcross -Shalcross Mill -Shalden -Shaldon -Shale -Shale Peak -Shale Quarry Back -Shaler -Shales -Shalesbrook -Shalestone -Shalfleet -Shalford -Shalimar -Shall -Shallcross -Shallons -Shalloo -Shallow Bank -Shallow Brook -Shallow Cove -Shallow Creek -Shallow Ford -Shalstone -Shaman -Shambliss -Shambrook -Shameran -Shames -Shamley -Shamrock -Shamrock Glen -Shamrock Glenn -Shamrock Ridge -Shana -Shanahan -Shanandale -Shand -Shande -Shandel -Shandon -Shandwick -Shandy -Shane -Shane Gould -Shane Park -Shane Thomas -Shaner -Shangani -Shangri -Shangri la -Shangrila -Shanklin -Shanklyn -Shanley -Shanna -Shannan -Shannock -Shannon -Shannon Heights -Shannon Hill -Shannon Oak -Shannondale -Shanti -Shantock -Shanuk -Shap -Shapley -Shapling Ridge -Shardcroft -Shardeloes -Shardlow -Sharen -Sharewood -Shari -Shari Ann -Sharian -Sharilyn -Shark River -Sharkey -Sharkon -Sharland -Sharlee -Sharlene -Sharma -Sharman -Sharmon Palms -Sharn -Sharnal -Sharney -Sharola -Sharon -Sharon Bee -Sharon Chapel -Sharon Oaks -Sharon Park -Sharondale -Sharonwood -Sharot -Sharp -Sharp House -Sharp Park -Sharpe -Sharpenhoe -Sharpersville -Sharpes -Sharples -Sharples Hall -Sharpleshall -Sharpley -Sharpners Pond -Sharps -Sharps Point -Sharpsburg -Sharpstead -Sharratt -Sharretts -Sharrington -Sharrock -Sharron -Sharrott -Sharrotts -Sharstead -Sharsted -Sharston -Sharvel -Shary -Shasta -Shasta Lily -Shatel -Shattack Track -Shatters -Shattuck -Shattuck Park -Shaughnessy -Shaun -Shauna -Shaundale -Shaver Grade -Shaver Lake -Shavers Lake -Shaves Wood -Shaw -Shaw Cross Chidswell -Shaw Farm -Shaw Fields -Shaw Hall Bank -Shaw Head -Shaw Moor -Shaw William -Shawbrook -Shawbrooke -Shawbury -Shawclough -Shawcroft -Shawcross -Shawden -Shawe -Shawe Hall -Shawfield -Shawford -Shawger -Shawhall -Shawhan -Shawlea -Shawmont -Shawmut -Shawn -Shawn Leigh -Shawna -Shawnee -Shawnee Woods -Shawnlee -Shawno -Shaws -Shawsheen -Shawstead -Shay -Shayfield -Shaylor -Shaylynn -Shea -Shea Center -Shea Memorial -Sheader -Sheaf -Sheafe -Sheahan -Shealy -Shean -Shear Creek -Sheard -Sheardhall -Sheardley -Shearer -Shearing -Shearman -Shears -Shearson -Shearton -Shearwater -Sheas -Sheath -Sheather -Sheathers -Sheckells -Shed -Shedd -Shedworth -Sheehan -Sheehy -Sheeley -Sheen -Sheen Common -Sheep -Sheep Farm -Sheep Hill -Sheep House -Sheep Pasture -Sheep Rock -Sheepbarn -Sheepcoates -Sheepcot -Sheepcote -Sheepcote Dell -Sheepcote Green -Sheepcotes -Sheepdown -Sheepen -Sheepfold -Sheepfoot -Sheepgate -Sheephatch -Sheephill -Sheephouse -Sheephurst -Sheeplands -Sheepridge -Sheepsetting -Sheepshead Bay -Sheepstreet -Sheepwalk -Sheering -Sheering Hall -Sheering Lower -Sheering Mill -Sheerlands -Sheerness -Sheerwater -Sheet -Sheet Glass -Sheet Mill -Sheethanger -Sheets Farm -Sheets Heath -Sheffield -Sheffield Mill -Sheffler -Shefield -Sheila -Sheiling -Shelard -Shelart -Shelborne -Shelbourne -Shelburne -Shelbury -Shelby -Shelby Creek -Shelby Dale -Shelby Hills -Shelcote -Shelden -Sheldon -Sheldon Creek -Sheldon Hill -Sheldon Lake -Sheldon Oaks -Sheldons -Sheldonville -Sheldrake -Shelduck -Shelerud -Shelfield -Shelford -Shelgate -Shelia -Shell -Shell Cove -Shell Flower -Shell Gate -Shell Hospital Bridge -Shell Lake -Shell Valley -Shellbank -Shellbanks -Shellbark -Shellbourne -Shellcote -Shellcove -Shelldrake -Shelley -Shelleys -Shellford -Shellgrove -Shellhorn -Shellingham -Shellmound -Shellness -Shellow -Shellton -Shellwood -Shellwoods -Shelly -Shellye -Shelsey -Shelter -Shelter Bay -Shelter Cove -Shelter Creek -Shelter Hill -Shelter Lagoon -Shelter Rock -Shelters -Shelterview -Shelterwood -Shelton -Shely -Shemer -Shenandoah -Shenfield -Shenley -Shenley Hill -Shenleybury -Shennamere -Shennen -Shenorock -Shenstone -Shenton -Shenton Park -Shentonfield -Shenwood -Shepard -Shepard Memorial -Shepards -Shepardson -Shepardville -Sheperd -Shephall -Shephard -Shepherd -Shepherd Canyon -Shepherd Cross -Shepherd Hills -Shepherders Spring -Shepherds -Shepherds Bush -Shepherds Gate -Shepherds Grove -Shephers -Shepiston -Sheple -Shepley -Sheppard -Shepperton -Shepperton Court -Sheppey -Shepton -Shera -Sheraden -Sherando -Sherard -Sherars -Sheraton -Sheraton Tysons -Sherbon -Sherborn -Sherborne -Sherboro -Sherbourne -Sherbrook -Sherbrooke -Sherburn -Sherburne -Sherburne Hills -Sherdley -Shere -Sherebrooke Woods -Sheredan -Sheredes -Sherenden -Sherfield -Sherford -Sheri -Sheridan -Sheridan Hills -Sheridan Spur -Sheridans -Sheridonna -Sheriff -Sheriffs -Sherill -Shering -Sheringham -Sherington -Sherland -Sherlies -Sherlin -Sherlock -Sherman -Sherman Bridge -Sherman Farm -Sherman Island -Sherman Island Levee -Sherman Lake -Sherman Oaks -Shermead -Shermer -Shernbroke -Shernden -Sherrard -Sherrardspark -Sherree -Sherrick -Sherrick Green -Sherrie -Sherriff -Sherrill -Sherrin -Sherringham -Sherrow -Sherry -Sherry Hill -Sherry Lee -Sherway -Sherwell -Sherwick -Sherwin -Sherwine -Sherwood -Sherwood Forest -Sherwood Hall -Sherwood Hill -Sherwood Hills -Sherwood Lake -Sherwood Park -Sherwoods -Sheryl -Shesley -Shesue -Shetcliffe -Shetland -Shetland Green -Shetlands -Shetler -Shevchenko -Sheve Hill -Sheveland -Shevelin -Shevlin -Shewens -Shewtan -Shibley -Shiel -Shield -Shieldborn -Shieldhall -Shields -Shiele -Shienfield -Shienfield Aborfield -Shienfield Church -Shiers -Shifnall -Shiley -Shillaber -Shilling -Shillingford -Shillington -Shiloh -Shiloh Church -Shilton -Shimizu -Shimmer River -Shimmin -Shin -Shindale -Shinfield -Shingle Creek -Shingle Crk -Shingle Mill -Shingle Oak -Shingle Valley -Shinglebarn -Shinglewell -Shining Water -Shinkle -Shinn -Shinnecock -Shinnick -Ship -Ship Rock -Ship Ways -Shipbourne -Shipbrook -Shipe -Shipham -Shipherd -Shipland -Shiplett -Shipley -Shipley Bridge -Shipley Farm -Shipley Hills -Shipman -Shippan -Shippee -Shippen -Shipper Bottom -Shippers -Ships -Ships Curve -Ships Knee -Ships Point -Shipston -Shipsview -Shipton -Shipwatch -Shipway -Shipwheel -Shipwright -Shipwrights -Shipyard -Shira -Shirburn -Shirbutt -Shire -Shire Oak -Shirebrook -Shireburn -Shiredale -Shiregreen -Shirehall -Shireoak -Shires -Shiretown -Shirewood -Shirill -Shirland -Shirlawn -Shirlee -Shirleen -Shirley -Shirley Church -Shirley Groton -Shirley Hills -Shirley House -Shirley Murphy -Shirley Oaks -Shirley Park -Shirley Vista -Shirley Way Bridle -Shirlington -Shirlock -Shirlow -Shirra -Shiva -Shiver -Shltr Rock -Shoal -Shoal Creek -Shoal Point -Shoal Water -Shoalhaven -Shoals -Shobar -Shobden -Shockey -Shockey Farms -Shodham -Shoe -Shoe Factory -Shoebury -Shoebury Common -Shoecroft -Shoemake -Shoemaker -Shoemaker Farm -Shoesmith -Shogmoor -Shogoro -Sholebroke -Sholem -Sholer -Sholton -Sholver -Shon -Shone -Shonks Mill -Shonnard -Shook -Shoonover -Shoop -Shooters -Shooters Hill -Shootersway -Shootingstar -Shop -Shopland -Shoplands -Shopman -Shoppe -Shoppenhangers -Shoppers World -Shoppes -Shopping Center -Shopping Heights -Shopton -Shoptysons -Shoquist -Shore -Shore Acres -Shore Breeze -Shore Club -Shore Edge -Shore End -Shore Garden -Shore Harbour -Shore Park -Shore View -Shore Walk -Shorebird -Shoreclift -Shoreclub -Shoredale -Shoreditch High -Shorefield -Shorefront -Shoregate -Shoreham -Shoreham Beach -Shorehame Club -Shorehaven -Shorehill -Shorelake -Shoreland -Shoreline -Shorely -Shorer -Shores -Shores Edge -Shores Green -Shoreside -Shoreview -Shoreview Park -Shorewalk -Shoreward -Shoreway -Shorewood -Shorewood Oaks -Shorey -Shorland -Shorn -Shorncliffe -Shorne Ifield -Shornecliffe -Shorrold -Short -Short Curve -Short Cut -Short Hill -Short Hills -Short Line -Short Ridge -Shortborough -Shortcroft -Shortcrofts -Shortcross -Shortcut -Shortdale -Shorter -Shortheath -Shorthill -Shorthills -Shorthorn -Shortland -Shortlands -Shortline -Shortmead -Shortmeadow -Shortridge -Shorts -Shortt -Shortway -Shortwood -Shoshana -Shoshone -Shot Town -Shotfield -Shotgun -Shotgun Fire -Shotkoski -Shotkowski -Shotover -Shott -Shottendane -Shottenden -Shottermill -Shotters -Shottfield -Shotwell -Shouldham -Shoults -Shouse -Shove -Shovelers -Shoveller -Shovelstrode -Showers -Showfields -Showground -Showlow -Shrader -Shrapnel -Shratton -Shremor -Shresbury -Shreve -Shrewsbury -Shrewton -Shrimpton -Shrine -Shriners -Shrive -Shriver -Shroffold -Shropshire -Shroton -Shrub -Shrub End -Shrub Hollow -Shrubbs -Shrubbs Hill -Shrubland -Shrubs -Shrubsole -Shu Swamp -Shuart -Shubert -Shuck -Shudehill -Shuey -Shufelt -Shuler -Shults -Shultz -Shuman -Shumard Oak -Shumway -Shunpike -Shupe -Shupin -Shurdington -Shure -Shurlach -Shurland -Shurlock -Shurmer -Shurtleff -Shurwin -Shut -Shute -Shutley -Shutt -Shutter -Shuttle -Shuttle Hillock -Shutts -Shuyler -Shye -Si Mall -Siandra -Sias -Sibbald -Sibbick -Sibelius -Sibella -Sibert -Sibley -Sibley Hills -Sibley Park -Sibson -Sibthorpe -Sibton -Sicard -Siccut -Sicilian -Sicily -Sickle -Sickle Bar -Sicklehatch -Sickles -Sickletown -Siclen -Sicomac -Sicora -Sidbrook -Sidbury -Sidcup -Siddall -Siddeley -Siddens -Siddington -Siddon -Siddons -Side -Side End -Side Saddle -Sidebotham -Sidebottom -Sideburn -Sidehill -Siden -Sideview -Sideways -Sidlaw -Sidlaws -Sidlaws Hills -Sidler -Sidley -Sidmouth -Sidmouth Grange -Sidney -Sidney Jones -Sidney Lanier -Sidwell -Sidworth -Siebel -Sieben -Siebert -Sieberts Ridge -Siedler -Siegel -Siegert -Siegle -Siegmond -Siek -Sielaff -Siemens -Siemer -Siems -Siena -Sienna -Sienna Park -Sierks -Sierra -Sierra Azul -Sierra College -Sierra Creek -Sierra Crest -Sierra Glen -Sierra Gold -Sierra Highlands -Sierra Madre -Sierra Mar -Sierra Meadow -Sierra Mesa -Sierra Mills -Sierra Morena -Sierra Oaks -Sierra Oaks Vista -Sierra Park -Sierra Pass -Sierra Point -Sierra Ridge -Sierra River -Sierra Spring -Sierra Sunset -Sierra Ventura -Sierra View -Sierra Vista -Sierra Wood -Sierra Woods -Sierraville -Sierrawood -Siesta -Siesta Key -Siesta Vista -Sievers -Sievert -Siewert -Sigberth Ridge -Sigdon -Sigel -Sigerson -Sigfrid -Siglingen -Sigma -Sigmona -Sigmond -Sigmund -Signal -Signal Bell -Signal Hill -Signal Tree -Signal View -Signature -Signe -Signet -Signs -Sigourney -Sigsbee -Sigtim -Sigwalt -Siino -Sikkema -Sikorsky -Silacci -Silace -Silala -Silam -Silas Hutchinson -Silber -Silberhorn -Silberman -Silbury -Silchester -Silco -Silcoates -Silecroft -Silence -Silent Brook -Silent Creek -Silent Dell -Silent Hills -Silent Lake -Silent Valley -Silent Wolf -Silentree -Silentwood -Siler -Silerton -Silex -Silica -Silicon -Silicon Valley -Silk -Silk MIll -Silk Mill -Silk Mill Way Iveson -Silk Oak -Silk Tree -Silk Wood -Silkfield -Silkham -Silkmore -Silkstone -Silkstream -Silktree -Silkwood -Silkworth -Sill -Silleck -Sillery Bay -Silliman -Silloway -Silo -Silo Inn -Silopanna -Silsbee -Silsby -Silsden -Silsoe -Silton -Silva -Silva Dale -Silva Ranch -Silva Valley -Silvaire -Silvan Glen -Silvana -Silvano -Silveira -Silver -Silver Beach -Silver Beech -Silver Bell -Silver Belt -Silver Berry -Silver Birch -Silver Brook -Silver Brush -Silver Canyon -Silver Charm -Silver Cliff -Silver Creek -Silver Creek Valley -Silver Crest -Silver Dollar -Silver Eagle -Silver Fern -Silver Fir -Silver Fox -Silver Hill -Silver Hills -Silver Hollow -Silver King -Silver Knoll -Silver Lake -Silver Lake Park -Silver Lake Service -Silver Lakes -Silver Leaf -Silver Legend -Silver Linden -Silver Lode -Silver Maple -Silver Meadow -Silver Moon -Silver Mountain -Silver Oak -Silver Park -Silver Peak -Silver Pine -Silver Plume -Silver Point -Silver Poplar -Silver Reef -Silver Ridge -Silver Rock -Silver Royd -Silver Run -Silver Shadow -Silver Shoon Ranch -Silver Side -Silver Spring -Silver Springs -Silver Spruce -Silver Spur -Silver Trail -Silver Trumpet -Silver View -Silver Wings -Silvera -Silverado -Silverbell -Silverbend -Silverberry -Silverbirch -Silverbrook -Silvercove -Silvercrest -Silverdale -Silverdate -Silverdell -Silverfield -Silvergate -Silverhey -Silverhill -Silverhollow -Silverhurst -Silverlake -Silverland -Silverlea -Silverleaf -Silverline -Silverlock -Silverlocke -Silvermere -Silvermine -Silverod -Silverpine -Silverside -Silversmith -Silverspot -Silversted -Silverstone -Silverthorn -Silverthorne -Silvertide -Silverton -Silvertown -Silvertrail -Silvertree -Silvertrees -Silverview -Silvervine -Silverwater -Silverwell -Silverwillow -Silverwood -Silvester -Silveyville -Silvia -Silvio -Silwood -Silzer -Sim -Simarano -Simard -Simas -Simberlan -Simbroco -Simcoe -Simek -Simeon -Simeone -Simister -Simkins -Simko Ranch -Simla -Simmat -Simmerhorn -Simmondley -Simmondley New -Simmonds -Simmone -Simmons -Simmonstone -Simms -Simms Landing -Simnel -Simo -Simon -Simon Hapgood -Simon Hill -Simon Lake -Simon Pearce -Simon Ranch -Simon Willard -Simond -Simonds -Simonds Farm -Simone -Simone Weil -Simoni -Simoni Ranch -Simons -Simonsen -Simonson -Simonton -Simotes -Simpkin -Simpkins -Simpkins Farm -Simplemarsh -Simplex -Simplicity -Simpson -Simpson Hill -Simpson Ranch -Simpsons -Sims -Simsbury -Simson -Sinai -Sinaloa -Sinatra -Sinawoy -Sincero -Sinclair -Sinclair Martin -Sinclair Mill -Sincots -Sindel -Sinderland -Sindle -Sindlesham -Sindsley -Sine -Sines -Singapore -Singer -Singers -Singers Glen -Singing Hill -Singing Hills -Singing Pines -Singing Wood -Singingwood -Single -Single Bird -Single Foot -Single Leaf -Singleborough -Singles Ridge -Singletary -Singleton -Singletree -Singlets -Singlewell -Singley -Singworth -Sinhurst -Sinnen -Sinnet -Sinnott -Sinon -Sinvalco -Sion -Sioux -Sip -Sipes -Sipp -Sippel -Sipson -Sir Alexander -Sir Antony -Sir Bernard Paget -Sir Douglas -Sir Evelyn -Sir Francis -Sir Galahad -Sir Gawaine -Sir George Martin -Sir Henry Brackenbury -Sir John Fogge -Sir Joseph Banks -Sir Lancelot -Sir Reginald Ansett -Sir Reynard -Sir Richard -Sir Richard Fairey -Sir Thomas -Sir Thomas Mitchell -Sir Viceroy -Sir Walter -Sir Walter Raleigh -Sir Warwick Fairfax -Sir William -Siracusa -Sirard -Sirdar -Sirder -Siren -Siri -Siri Rock Quarry -Sirius -Sirius Cove -Sirois -Siron -Sirus -Sisalbed -Sisco -Sise -Sish -Sisk -Siske -Siskin -Siskiyou -Sisley -Sissinghurst -Sisson -Sissons -Sister Cities -Sisters -Sistova -Sitgreaves -Sitka -Sitter -Sittingbourne -Siusun Valley -Sivert -Sivic -Siwanoy -Siward -Six Box -Six Corners -Six Mile Creek -Six Penny -Six Towers -Sixteen Twenty -Sixteenth -Sixth -Sixth Mile -Sixty Acres -Sizemore -Skaggs Island -Skaggs Springs -Skagit -Skahan -Skaife -Skamania -Skander -Skardu -Skarratt -Skate -Skater -Skating Pond -Skeels -Skeet Hill -Skeffington -Skeggs -Skegness -Skegsbury -Skehan -Skeleton -Skelgill -Skelley -Skellinger -Skellington -Skellorn Green -Skellow -Skelton -Skelton Grange -Skeltons -Skelwith -Skene -Skenes -Skerne -Skerry -Skerton -Sketty -Skeyne -Skeynes -Ski -Ski Hill -Ski Lodge -Skiba -Skibbereen -Skibbs -Skibo -Skid -Skidaw -Skidmore -Skidmores -Skiers -Skiff -Skiles -Skillcorn -Skillings -Skillman -Skilton -Skimmer -Skimped Hill -Skimpot -Skinner -Skinners -Skinners Turn -Skinney -Skip -Skip Jack -Skipjack -Skipper -Skippers -Skippets -Skipsey -Skipton -Skipwith -Skipworth -Skokie -Skokie Ridge -Skokie Valley -Skoshi -Skove -Skube -Skunks Misery -Skurla -Sky -Sky Blue -Sky Country -Sky Creek -Sky Crest -Sky Croft -Sky Farm -Sky Hawk -Sky Hill -Sky Hy -Sky Lake -Sky Meadow -Sky Meadows -Sky Oaks -Sky Peals -Sky Ranch -Sky Top -Sky Valley -Sky View -Skyarla -Skybrook -Skycrest -Skye -Skyewood -Skyfarm -Skyfield -Skyglade -Skyharbour -Skyhawk -Skyhigh -Skyhill -Skyland -Skylane -Skylar -Skylark -Skylawn -Skyler -Skyline -Skyline Curve -Skyline Lakes -Skyline Quarry -Skyline Ranch -Skylonda -Skymont -Skypark -Skyport -Skyranch -Skyridge -Skyswood -Skytop -Skytrain -Skyview -Skyvilla -Skyvue -Skywalker -Skywalker Ranch -Skyward -Skywater -Skyway -Skywest -Skywood -Slab Haul -Slabey -Slack -Slack Fold -Slack Gate -Slackcote -Slacks -Slad -Sladden -Slade -Slade Green -Slade Oak -Slade Run -Slade School -Slade green -Sladedale -Sladen -Slag -Slager -Slagle -Slaidburn -Slaight -Slaithwaite -Slaithwaite Radcliffe -Slalom -Slaney -Slapp -Slapton -Slate -Slate Creek -Slate Run -Slateacre -Slater -Slaters -Slatesford -Slatin -Slattery -Slattocks Link -Slaugham -Slaughter Dam -Slaughterhouse -Slavin -Slayback Ranch -Slayton -Sleaford -Sleapshyde -Slecroft -Sledding Hill -Sledmere -Sledmoor -Sleeper -Sleepers Farm -Sleeping Bear -Sleeping Dog -Sleepy -Sleepy Creek -Sleepy Hollow -Sleepy Hollow Dairy -Sleepy Horse -Sleepy Lake -Sleepy Ridge -Sleepy Valley -Sleepy View -Sleets -Sleigh -Sleight -Slender -Slessor -Slewins -Slice -Slidell -Sligar -Sligo -Sligo Creek -Sligo Mill -Slim -Slimbridge -Slimmons -Slines New -Slines Oak -Slingerland -Slip -Slip Mill -Slipe -Slippery Creek -Slippery Rock -Slipshoe -Slipway -Sloan -Sloane -Sloane Square Sloane -Sloanes Beach -Sloat -Slobe -Slocom -Slocum -Slocum Lake -Slocumb -Slone -Sloop -Slope -Slopecrest -Sloping Hill -Slosson -Slough -Slough Farm -Slougham -Sloughgreen -Sloughhouse -Sloway Coast -Slugwash -Sluice -Sluman -Slumberland -Sly -Sly Fox -Slyvan -Slyvaner -Smail -Smaland -Smalewell -Small -Small Brook -Small Grove -Small Hythe -Small Island -Small Lees -Small Reward -Smallberry -Smallbridge -Smallbrook -Smalldean -Smalley -Smallfield -Smallford -Smallgains -Smalls -Smalls Hill -Smallshaw -Smallshill -Smallwood -Smallwood Church -Smalzel -Smarden -Smart -Smarts -Smarts Heath -Smarts Mill -Smawthorne -Smc -Smeathers -Smeaton -Smeaton Approach Spur -Smeaton Grange -Smedley -Smee -Smeed -Smeeton -Smetana -Smethurst -Smethurst Hall -Smethwick -Smewins -Smidmore -Smidt -Smilax -Smiley -Smink -Smitana -Smith -Smith Brother -Smith Field -Smith Fold -Smith Hill -Smith Manor -Smith Mills -Smith Point -Smith Ridge Fire -Smith Switch -Smith Valley -Smith Village -Smitham Bottom -Smithers -Smithers Hill -Smithfield -Smithhart -Smithies -Smithies Moor -Smithills -Smithills Dean -Smithlee -Smiths -Smithson -Smithtown -Smithurst -Smithville -Smithway -Smithwick -Smithwood -Smithwood Common -Smithwoods -Smithy -Smithy Clough -Smithy Fold -Smithybridge -Smitty -Smittys -Smoke -Smoke Bellow -Smoke Rise -Smoke Tree -Smokehouse -Smokerise -Smoketown -Smoketree -Smokewood -Smokey Hill -Smokey Mountain -Smokey Mtns -Smokey Ridge -Smoky -Smoky Quartz -Smoot -Smoothleaf -Smug Oak -Smugglers -Smugglers Cove -Smull -Smullen -Smyrna -Smyth -Smythe -Smythes -Snail Lake -Snailing -Snailswell -Snake -Snake Brook -Snake Den -Snake Hill -Snakey -Snapdragon -Snape -Snapper -Snapper Cove -Snapping Turtle -Snaresbrook -Snargate -Snark -Snarsgate -Snatts -Snead -Sneath -Snedecor -Snedeker -Sneden -Snediker -Sneech Pond -Sneed -Sneider -Sneling -Snell -Snell Valley -Snelling -Snelling Av Service -Snelling Lake -Snellings -Snelson -Sneyd -Snicker -Snider -Snipe -Snipes -Snively -Snoad -Snoden -Snodgrass -Snodhurst -Snodland -Snohomish -Snohomish Woodinville -Snoll Hatch -Snoozin Tree -Snoqualmie -Snoqualmie River -Snouffers School -Snow -Snow Acres -Snow Bird -Snow Creek -Snow Crest -Snow Egret -Snow Goose -Snow Hill -Snow Lily -Snow Meadow -Snow Owl -Snow Point -Snow Valley -Snowball -Snowbell -Snowberry -Snowbird -Snowbury -Snowcap -Snowcrest -Snowden -Snowden Pond -Snowden River -Snowden Square -Snowden Woods -Snowdenham -Snowdenham Links -Snowdon -Snowdown -Snowdrift -Snowdrop -Snowerhill -Snowfall -Snowflake -Snowflower -Snowgoose -Snowhill -Snowhill Estates -Snowling -Snows Hill -Snowshill -Snowshoe -Snowsill -Snowy -Snowy Egret -Snowy Owl -Snug Cove -Snug Harbor -Snug Haven -Snug Hill -Snughorne -Snure -Snydale -Snyder -Soalwood -Soames -Soane -Soap -Soaphill -Soapstone -Soare -Soares -Soaring Hill -Soaring Oaks -Soave -Sobey -Sobieski -Sobo -Sobrante -Sobraon -Sobrato -Sobro -Soccer -Social -Society -Society Hill -Socorro -Soda Canyon -Soda Pop -Soda Springs -Sodaro -Sodbury -Soden -Soder -Sofa -Sofala -Soffel -Soffron -Sofia -Sofield -Soft Wind -Softwater -Softwind -Softwood -Soham -Sohap -Sohier -Sohl -Soho -Soifer -Soil Conservation -Sojourn -Soke -Sol -Sola -Solana -Solander -Solano -Solano College -Solar -Solar Hills -Solari -Solari Ranch -Solaridge -Solaris -Solartron -Solberg -Solbys -Soldate -Soldier -Soldier Hill -Soldiers -Soldiers Field -Sole Farm -Solebay -Soledad -Solent -Soleoak -Solera -Soleri -Soley -Solferino -Solfisburg -Soliano -Solid -Solidarity -Solis -Solitaire -Solitary -Solito -Solitude -Sollers Point -Solley -Sollport -Solmar -Solna -Solness -Solo -Soloff -Soloman -Solomon -Solomon Pond -Solomon Pond Mall -Solomons -Solomons Island -Soloms Court -Solon -Solono -Solook -Solow -Solstice -Soltes -Solvay -Solveig -Solway -Soma -Somali -Somer -Somerby -Somercote -Somerdale -Somerden -Somerfield -Somerford -Somerglen -Somerhill -Someries -Somerleyton -Somers -Somers Peterson -Somersbury -Somerset -Somersham -Somersville -Somersworth -Somerton -Somertrees -Somervelle -Somerville -Somme -Sommer -Sommerfeld -Sommers -Sommers Landing -Sommerville -Somner -Somnes -Somoa -Somonauk -Sonar -Sonata -Sondberg -Sonderburg -Sondergaard -Sondes -Sondes Place -Song Sparrow -Songbird -Songer -Songwood -Sonia -Soniver -Sonja -Sonn -Sonne -Sonneborne -Sonnet -Sonning -Sonning Common -Sonning High -Sonny -Sonoma -Sonoma Creek -Sonoma Mountain -Sonoma Ridge -Sonoma Valley -Sonora -Sonora Pass -Sonrel -Sonter -Sonuca -Sony -Soo -Soo Line -Soothill -Soper -Sophia -Sophie -Sophies -Sophist -Sophistry -Sophocles -Sophurst -Sopwith -Soquel -Soquel Creek -Soquel San Jose -Soquel Turnpike -Soquel Wharf -Sora -Sorbello -Sorbonne -Sorci -Sorel -Sorell -Soren -Soreng -Sorensen -Sorenson -Sorenstam -Sorento -Sorich -Sorlie -Sornoway -Sorowoc -Sorrel -Sorrel Hill -Sorrel Ridge -Sorrell -Sorrelwood -Sorreno -Sorrentino -Sorrento -Sorrie -Sorting -Sortmill -Sorton -Soscol -Soscol Creek -Soscol Ferry -Sosnowitz -Soss Moss -Sotano -Sotelo -Soterion -Sotherington -Sotheron -Sothoron -Sotnip -Soto -Sotoyome -Sotterly -Sotweed -Souberie -Soudan -Soueid -Sought For -Souh Park -Soulard -Souldern -Soule -Soult -Sound -Sound Bay -Sound Beach -Sound Shore -Sound View -Soundcrest -Sounding Shore -Soundside -Soundview -Sour Gum -Sourwood -Sousa -Souster -Sout Batavia -Soutborough -Souter -South -South A -South Abbott -South Abel -South Aberdeen -South Access -South Accommodation -South Acre -South Acres -South Acton -South Adams -South Airmont -South Airport -South Akron -South Alana -South Alaska -South Albert -South Alder -South Alfaya -South Allen -South Almaden -South Almond -South Alta -South Americus -South Amos -South Amphlett -South Amundsen -South Andover -South Angeline -South Angelo -South Apple -South Ash -South Ashland -South Ashton -South Atlantic -South Audley -South Augusta -South Austin -South Autumn -South Avalon -South Avon -South Avondale -South B -South Bacon Island -South Bailey -South Bangor -South Bank -South Bar -South Barn -South Barrington -South Barton -South Bascom -South Batavia -South Bateman -South Bay -South Bayard -South Baybrook -South Bayfield -South Bayshore -South Bayview -South Baywood -South Beach -South Bear Ridge -South Bedford -South Bella Monte -South Bellflower -South Bend -South Benefit -South Bennett -South Benton -South Bernardo -South Betty -South Beverly -South Birch -South Birkbeck -South Black Lion -South Blaney -South Blue Island -South Boas -South Bolingbrook -South Bolton -South Bond -South Border -South Boundary -South Bow -South Bow Lake -South Bowdoin -South Boylston -South Bozeman -South Bradford -South Branch -South Branciforte -South Brandon -South Bremen -South Bridge -South Bridgepointe -South Bristol -South Britton -South Broadway -South Brockway -South Brook -South Brooks -South Bruce -South Brush -South Buckingham -South Buena Vista -South Buffum -South Bulfinch -South Burns -South Bush -South Busse -South Byron -South California -South Cambridge -South Cameron -South Camp Meade -South Canal -South Canton -South Capitol -South Carboy -South Cargo -South Carlback -South Carol -South Carolina -South Carpenter -South Carr -South Carriage -South Carriage Way -South Carver -South Castro -South Cedar -South Cedar Glen -South Cemetry -South Center -South Central -South Chappell -South Charles -South Charlestown -South Chelmsford -South Cherrywood -South Chesterfield -South Chestnut -South Chicago -South Circle -South Circular -South Claremont -South Clark -South Clearbrook -South Cleveland -South Clinton -South Clover -South Clovercrest -South Cloverdale -South Club -South Clubhouse -South Cluff -South Coast -South Cody -South College -South Columbus -South Commercial -South Common -South Concord -South Conduit -South Conrad -South Conway -South Coombs -South Cooper -South Coral -South Corgiat -South Corporate -South Cottage -South Cotton -South Country Line -South County Line -South Court -South Cove -South Cragmont -South Creek -South Creekside -South Crescent -South Crest -South Creston -South Crestwood -South Cross -South Croston -South Croxted -South Crystal -South Culpeper -South Cypress -South D -South Dakota -South Danvers -South Davis -South Dawson -South Day -South Dean -South Dearborn -South Deborah -South Dedham -South Deer -South Deer Run -South Delancey -South Delaware -South Della -South Diameter -South Dickenson -South Dike -South Director -South Division -South Dogwood -South Dole -South Donovan -South Dorchester -South Doris -South Douglas -South Dowling -South Down -South Downs -South Dublin Ranch -South Dundalk -South Dunton -South Dwyer -South E -South Eads -South Eagle Nest -South East Main -South Eastern -South Eastwood -South Eddy -South Eden -South Edgewood -South Edison -South Edlin -South Edmunds -South El Monte -South Ela -South Eldorado -South Elise -South Eliseo -South Elizabeth -South Ellsworth -South Elm -South Elmgrove -South Elmhurst -South Elmwood -South Embers -South Emerald Oak -South Emerson -South End -South Entrance -South Erin -South Escanaba -South Esk -South Estates -South Estelle -South Euclid -South Evergreen -South Ewing -South Exchange -South Exit -South F -South Fairbanks -South Fairmont -South Fairview -South Falmore -South Farm -South Farrar -South Federal -South Ferdinand -South Fern -South Fernandez -South Ferry -South Fidalgo -South Field -South Filbert -South Fillmore -South Findlay -South Fine -South Fitch Mountain -South Flagg -South Fletcher -South Foothill -South Forest -South Forest Edge -South Fork -South Fountain -South Fox -South Frances -South Franklin -South Freda -South Frederick -South Free -South Fremont -South French Camp -South Fresno -South Frick -South Front -South Frontage -South Frontenac -South Fuel Break -South Fuller -South Fulton -South Furness -South G -South Garden -South Garden Loop -South Garfield -South Garrard -South Gate -South Gazelle -South Genesee -South Genessee -South Genevieve -South Genoa -South Gertrude -South Gilbert -South Gillis -South Glacier -South Glendale -South Glengarry -South Goebbert -South Goff -South Gold Ridge -South Grafton -South Graham -South Grand -South Grant -South Great -South Green -South Green Springs -South Greenleaf -South Greenthorn -South Greenwich -South Greenwood -South Grimmer -South Grove -South Grove Hill -South Grovetree -South Guild -South H -South Hall -South Halsted -South Ham -South Hampton -South Hancock -South Hanford -South Hanningfield -South Harbor -South Harbor View -South Hardy -South Harlan -South Harlem -South Harney -South Harriette -South Harris -South Harrison -South Hart -South Hartley -South Hartson -South Harvard -South Harvey -South Hatlen -South Haven -South Havenwood -South Hays -South Hazel -South Helena -South Henry -South Hess -South Hewitt -South Hickory -South Hicks -South High -South Highland -South Hill -South Hills -South Hillside -South Hinds -South Hinkley -South Hobart -South Hoga -South Holden -South Holgate -South Hollenbeck -South Hollins Ferry -South Hollow -South Holly -South Holmes -South Holt -South Homer -South Horton -South Hospital -South Houston -South Howard -South Howe -South Howland -South Hudson -South Hughes -South Humboldt -South Hummingbird -South Hunter -South Huntington -South Huron -South Hutchins -South Hyde -South I -South I Oka -South Idaho -South Illinois -South Industrial -South Inland -South Inner Circle -South Ironwood -South Irving -South J -South Jack Tone -South Jackson -South Janet -South Jefferson -South John -South Johnson -South Judkins -South Juneau -South Juniper -South K -South Kaiser -South Kaspar -South Kasson -South Keeble -South Kelly -South Kennbeck -South Kennebeck -South Kennedy -South Kennicott -South Kenny -South Kensico -South Kent Des Moines -South Kenyon -South Keppler -South Kersica -South Kerwood -South King -South Kingston -South Klein -South Knickerbocker -South Knoll -South Knollwood -South Koster -South Krista -South L -South La Grange -South LaSalle -South Lake -South Lake Dell -South Lake Sarah -South Lakes -South Lakeview -South Lambeth -South Lammers -South Lancaster -South Land Park -South Lander -South Langston -South Langworthy -South Larwin -South Laurel -South Lavergne -South Lear -South Lee -South Lehman -South Leigh -South Leisure -South Lenox -South Leo -South Leonard -South Leslie -South Lewis Park -South Lexington -South Liberty -South Lilac -South Lillian -South Lincoln -South Linden -South Linneman -South Livermore -South Liverpool -South Lockhart -South Locust -South Lodge -South Loma -South Lonsdale -South Loomis -South Loop -South Loring -South Lorna -South Los Angeles -South Louis -South Lowe -South Ludlow -South Lycett -South M -South Mac Arthur -South Macarthur -South Mackinaw -South Madera -South Madison -South Magnolia -South Maharaja -South Mahwah -South Main -South Mallard -South Manistee -South Manley -South Manor -South Manteca -South Manthey -South Maple -South Marble -South Marina -South Marine -South Market -South Marquette -South Marwood -South Mary -South Mary Frances -South Mary Francis -South Mason -South Massachusetts -South Mathewson -South May -South Mayfair -South Mayflower -South Mc Clellan -South Mc Donell -South Mc Kinley -South McClellan -South McCracken -South McDonnell -South McDowell -South McGlincey -South McKinley -South Meacham -South Mead -South Meadow -South Meier -South Mellon -South Merced -South Meridian -South Mesnefield -South Meyers -South Michael -South Michigan -South Middletown -South Midland -South Milbrook -South Mill -South Mill Creek -South Miller -South Mills -South Milpitas -South Milton -South Minahen -South Mitchell -South Modesto -South Moffett -South Molton -South Monroe -South Monsey -South Montgomery -South Moore -South Moorings -South Moray -South Morgan -South Morning Sun -South Morrison -South Morrissey -South Mount Baker -South Mountain -South Murphy -South Muskegon -South Myrtle -South N -South Naperville -South Natali -South Nauraushaun -South Navarra -South Naylor -South Nebraska -South Nelson -South Netherlands -South Netherton -South Nevada -South New Wilke -South Newport -South Nightingale -South Nordic -South Norfolk -South Normal -South Norman -South Normandy -South O -South Oak -South Oakwood -South Ocean -South Ohio -South Old Annapolis -South Oleander -South Olive -South Oliver -South Ophir -South Orange -South Oraton -South Orcas -South Orchard -South Ordnance -South Oro -South Orr -South Othello -South Overlook -South Oxford -South P -South Pacific -South Palisades -South Palmer -South Palomar -South Pamela -South Parallel -South Park -South Park Place -South Park Plaza -South Park Victoria -South Parkview -South Pascack -South Pastoria -South Patrick -South Patton -South Paula -South Peak -South Pearl -South Pebble Beach -South Peck -South Pembroke -South Peoria -South Perimeter -South Perry -South Pershing -South Peter -South Phelps -South Pilgrim -South Pine -South Pine Mountain -South Pinebrook -South Pinehurst -South Pippin -South Platti -South Pleasant -South Plum -South Plum Grove -South Plummer -South Point -South Polo -South Pond -South Ponderosa -South Pondside -South Port -South Portal -South Porter -South Portland -South Powers -South Prairie -South Prentice -South Prescott -South Priest -South Princeton -South Puget -South Pump -South Q -South Quebec -South Queen -South Quinsigamond -South R -South Racine -South Radford -South Railroad -South Rainbow -South Ranch -South Rancho -South Randall -South Rapetta -South Ravine -South Raymond -South Reach -South Redwing -South Redwood -South Reeve -South Regatta -South Regent -South Reid -South Reina del Mar -South Rengstorff -South Reuter -South Rhoda -South Richard -South Richwood -South Ridge -South Ridge Vista -South Ridgeland -South Ridgemark -South Ridgewood -South River -South Riverside -South Robert -South Roberts -South Robinson -South Rockaway -South Rockridge -South Rodeo Gulch -South Rohlwing -South Rolling -South Roosevelt -South Rosal -South Rose -South Rosewood -South Row -South Roxbury -South Roxie -South Royd -South Ruble -South Ruggles -South Run Oaks -South Russell -South Rustic -South Ryan -South S -South Sacramento -South Saint Ceclia -South Salado -South Salem -South San Antonio -South San Francisco -South San Jose -South San Luis -South San Mateo -South San Pedro -South Sangamon -South Santa Cruz -South Schmale -South Schmidt -South School -South Sea -South Sequoia -South Serven -South Service -South Seward Park -South Shaker -South Sharp -South Shasta -South Shell -South Shelton -South Sherman -South Sherwood -South Shingle -South Shore -South Shoreline -South Sibley -South Side -South Side Three -South Sierra Nevada -South Silver Springs -South Sinclair -South Smith -South Snoqualmie -South Solano -South Somerset -South Southern -South Spencer -South Spokane -South Spooner -South Springer -South Springinsguth -South Springs -South Spruce -South Sprucewood -South Sullivan -South Summit -South Sunnycrest -South Sunnyvale -South Sunset -South Surrey -South Surrey Ridge -South Susan -South Sutter -South Sydney -South Taaffe -South Taft -South Tall Grass -South Tamarack -South Tantau -South Tea Garden -South Temple -South Tenter -South Terrace -South Tessier -South Thayer -South Thelma -South Thistle -South Three Oaks -South Tillicum -South Tinnin -South Tobin -South Todd -South Tolman -South Tonne -South Town -South Tracy -South Treehouse -South Trenton -South Tulsa -South Turnpike E Fire -South Tuxedo -South Tweed -South Union -South University -South Upland -South Vail -South Vale -South Valley -South Van Buren -South Van Dorn -South Van Dyke -South Van Horn -South Van Ness -South Vasco -South Veach -South Ventura -South Vermont -South Victor -South View -South Vincennes -South Virginia -South Voelker -South Wabash -South Wachusett -South Wacker -South Wagner -South Waite -South Walker -South Wallace -South Walnut -South Walpole -South Walter -South Walton -South Ward -South Warehouse -South Warren -South Wash -South Washington -South Water -South Watt -South Waverly -South Weald -South Webster -South Weller -South Wells -South Welty -South West -South West Hills -South Westmore Meyers -South Wharf -South Whipple -South Whippoorwill -South Whiskey Slough -South Whisman -South White -South White Rock -South Whitehall -South Whitney -South Wilder -South Wildwood -South Wilhoit -South Wilke -South Wilkie -South Willard -South William -South Williams -South Williamson -South Willow -South Willow Creek -South Willow Glen -South Wilma -South Winchester -South Windemere -South Windsor -South Winfield -South Wing Levee -South Winston -South Winthrop -South Witham -South Wolf -South Wolfe -South Wolfinger -South Wood -South Woodsbro -South Woodside -South Woodward -South Worple -South Wright -South Yale -South York -South de Anza -South del Puerto -South el Circulo -South el Macero -SouthCottage -Southall -Southall King -Southall Brent -Southall King -Southam -Southampton -Southard -Southards -Southaven -Southbank -Southbay -Southbend -Southboro -Southbound Frontage -Southbourne -Southbreeze -Southbridge -Southbrook -Southbury -Southby -Southcenter -Southchurch -Southcliff -Southcliffe -Southcombe -Southcote -Southcote Farm -Southcourt -Southcreek -Southcrest -Southcroft -Southcross -Southdale -Southdene -Southdown -Southeast -Southeast Allen -Southeast Andrews -Southeast Bain -Southeast Bassett -Southeast Bean -Southeast Berry -Southeast Bush -Southeast Cambridge -Southeast Carr -Southeast Cedar Ridge -Southeast Cherry -Southeast Cisco -Southeast Clark -Southeast Colvos -Southeast Cornell -Southeast Croston -Southeast Culver -Southeast Curtis -Southeast Darst -Southeast Diablo View -Southeast Donnelly -Southeast Douglas -Southeast Eastgate -Southeast Evans -Southeast Fairwood -Southeast Flint -Southeast Fragaria -Southeast Fraser -Southeast Glendale -Southeast Grandview -Southeast Harper Hill -Southeast Highland -Southeast John -Southeast Jones -Southeast Kinsey -Southeast Klahanie -Southeast Lake -Southeast Lake Young -Southeast Lake Youngs -Southeast Lewis -Southeast May Valley -Southeast McBreen -Southeast McCollough -Southeast Mirrormont -Southeast Muir -Southeast Olympiad -Southeast Oneil -Southeast Overra -Southeast Perimeter -Southeast Petroviski -Southeast Petrovitsky -Southeast Pratt -Southeast Ridge -Southeast Scatterwood -Southeast Scott -Southeast Sebring -Southeast Sedgwick -Southeast Southworth -Southeast Summerhill -Southeast Sycamore -Southeast Tola -Southeast View Park -Southeast Washington -Southeast Wax -Southeast Willock -Southeast Wilson -Southeast Windsor -Southeast Yeshua -Southeastern -Southend -Souther -Souther Cross -Southerland -Southerly -Southern -Southern Access -Southern Businss Park -Southern Connector -Southern Cross -Southern Heights -Southern Hills -Southern Marin Line -Southern Maryland -Southern Md -Southern Night -Southern Oak -Southern Oaks -Southern Pacific -Southern Perimeter -Southern Planter -Southern Slope -Southernden -Southerns -Southerton -Southey -Southfalls -Southfield -Southfields -Southfleet -Southfork -Southfront -Southgarth -Southgate -Southgate Farm -Southglen -Southgrove -Southhampton -Southhead -Southhill -Southholm -Southill -Southington -Southlake -Southlakes -Southland -Southlands -Southlane -Southlawn -Southlea -Southlees -Southleigh -Southmead -Southmere -Southmill -Southminster -Southmont -Southmoor -Southmore -Southold -Southpine -Southpoint -Southpointe -Southport -Southridge -Southrun -Southsea -Southshore -Southside -Southtown -Southvale -Southview -Southville -Southwark -Southwark Park -Southwater Point -Southway -Southwell -Southwell Grove -Southwell Park -Southwest -Southwest Adams -Southwest Alaska -Southwest Andover -Southwest Angeline -Southwest Atlantic -Southwest Austin -Southwest Bank -Southwest Barton -Southwest Bayview -Southwest Bradford -Southwest Bruce -Southwest Burton -Southwest Cambridge -Southwest Canada -Southwest Carroll -Southwest Caster -Southwest Cedarhurst -Southwest Cemetery -Southwest Channon -Southwest Charlestown -Southwest City View -Southwest Clark -Southwest Cloverdale -Southwest Colewood -Southwest Concord -Southwest Cove -Southwest Cove Point -Southwest Cowan -Southwest Crescent -Southwest Dakota -Southwest Dawson -Southwest Dilworth -Southwest Director -Southwest Donald -Southwest Donovan -Southwest Eastbrook -Southwest Eddy -Southwest Edmunds -Southwest Elisha -Southwest Ellerwood -Southwest Ellisport -Southwest Elmgrove -Southwest Englewood -Southwest Fernwood -Southwest Findlay -Southwest Fletcher -Southwest Florida -Southwest Fontanelle -Southwest Forest -Southwest Forney -Southwest Francis -Southwest Front -Southwest Frontenac -Southwest Gibson -Southwest Gorsuch -Southwest Governers -Southwest Graham -Southwest Grayson -Southwest Hanford -Southwest Harbor -Southwest Hawthorne -Southwest Henderson -Southwest Heper -Southwest Hill -Southwest Hillcrest -Southwest Hinds -Southwest Holden -Southwest Holgate -Southwest Holly -Southwest Horton -Southwest Hudson -Southwest Ida -Southwest Idaho -Southwest Jacobsen -Southwest Juneau -Southwest Kenyon -Southwest Klahanie -Southwest Klickitat -Southwest Lander -Southwest Langston -Southwest Lisabuela -Southwest Luana -Southwest Luana Beach -Southwest Madrona -Southwest Main -Southwest Manning -Southwest Maury Park -Southwest Michigan -Southwest Mills -Southwest Monroe -Southwest Morgan -Southwest Mount Cedar -Southwest Nevada -Southwest Normandy -Southwest Ober Beach -Southwest Ocean View -Southwest Olga -Southwest Orchard -Southwest Oregon -Southwest Orleans -Southwest Othello -Southwest Prince -Southwest Pritchard -Southwest Raymond -Southwest Rose -Southwest Roxbury -Southwest Seattle -Southwest Seola -Southwest Shawnee -Southwest Shoremont -Southwest Shoreview -Southwest Snoqualmie -Southwest Soper -Southwest Spokane -Southwest Sullivan -Southwest Sunset -Southwest Thistle -Southwest Tillicum -Southwest Tillman -Southwest Trenton -Southwest Van Olinda -Southwest Virginia -Southwest Waite -Southwest Walker -Southwest Warsaw -Southwest Webster -Southwest Willow -Southwest Winthrop -Southwest Yancy -Southwestern -Southwick -Southwicke -Southwind -Southwinds -Southwold -Southwood -Southwood Lawn -Southwood Smith -Southwoods -Southworth -Southwynde -Souza -Sova -Sovereign -Sovereign Fold -Sovereign Heights -Soward -Soward Ranch -Sowards -Sowego -Sowerby -Sowles -Sowood -Sowrey -Spa -Spaans -Space Park -Spadafore -Spade -Spady -Spafford -Spafield -Spagnoli -Spahn Ranch -Spaich -Spain -Spains Hall -Spalding -Spaletta -Span -Spanby -Spangle -Spangler -Spaniards -Spaniel -Spanish -Spanish Bay -Spanish Cove -Spanish Flat Loop -Spanish Flat Resort -Spanish Grant -Spanish Oak -Spanish Oaks -Spanish Ranch -Spanish River -Spanish Trail -Spanker -Spanos -Spar -Spardley -Spare -Sparepenny -Sparger -Spargur -Sparhawk -Spark -Sparkbridge -Sparkel -Sparkes -Sparkeswood -Sparkill -Sparkle -Sparks -Sparks Ranch -Sparlin -Sparling -Sparr Spring -Sparrow -Sparrow Farm -Sparrow Hawk -Sparrow House -Sparrow Valley -Sparrowbush -Sparrowhawk -Sparrows -Sparrows Point -Sparsholt -Sparta -Spartan -Spartan Arrow -Sparth -Sparth Bottoms -Sparthfield -Spartina -Sparton -Spartons -Sparvell -Spates -Spates Hill -Spath -Spatham -Spathis -Spats -Spatz -Spaulding -Spaview -Spaw -Speak -Speaker -Speakers -Spear -Spearhead -Spearing -Spearman -Spearmint -Spears -Speart -Specht -Spechter -Speckel -Speckled Wood -Spectacle -Spectacle Hill -Spectacle Pond -Spector -Spectrum -Speed -Speedway -Speedwell -Speen -Speer -Speer Ranch -Speers -Speicher -Speidel -Speir -Speke -Spekes -Speldhurst -Spell -Spella -Spellbrook -Spellman -Spelman -Spen -Spen Vale -Spenard -Spence -Spencer -Spencer Brook -Spencer Hill -Spencer Place Cowper -Spencer Place Leopold -Spencer Sweet Pea -Spencers -Spencerville -Spender -Spengler -Spenleach -Spenlow -Spenney -Spennithorne -Spenny -Speno -Spenser -Speranza -Sperber -Sperl -Sperling -Sperring -Sperry -Spert -Spetti -Spey -Spezia -Spg Hill -Sphinx -Spibey -Spice -Spice Bush -Spice Hill -Spice Run -Spiceberry -Spicebush -Spicer -Spicewood -Spiegelhagen -Spielman -Spier -Spiers -Spignet -Spikehorn -Spiker -Spikes -Spikes Bridge -Spiller -Spillers -Spillway -Spilman -Spinaker -Spinale -Spindle -Spindletree -Spindrift -Spindrifter -Spine -Spinfield -Spingfield -Spinks -Spinks Ferry -Spinmaker -Spinnaker -Spinnaker Point -Spinnells -Spinner -Spinners -Spinney -Spinney Hill -Spinning Wheel -Spinosa -Spinoza -Spiraea -Spiral -Spire -Spirea -Spirit -Spirit Hills -Spirit Knob -Spiro -Spirou -Spit -Spital -Spitfire -Spithurst -Spittal -Spittler -Spittlesea -Spitz -Spitzer -Spiva -Split Creek -Split Oak -Split Rail -Split Rock -Split Tree -Splitrail -Splitrock -Splude -Spock Ridge -Spodden -Spode -Spode Green -Spodegreen -Spofford -Spofforth -Spoganetz -Spoil -Spokane -Spoke -Spoleto -Spolini -Sponden -Spondon -Spongs -Sponson -Spool -Spoon -Spoon Hill -Spoonbil -Spoonbill -Spooner -Spooners -Spoonger -Sporehams -Sporing -Sporst Center -Sports -Sports Park -Sportsbank -Sportside -Sportsman -Sportsmans -Spot -Spot Club -Spoto -Spotswood -Spotswood Gravel Hill -Spotsylvania -Spotted Gum -Spotted Horse -Spotted Owl -Spout -Spout Brook -Spout Run -Sprague -Sprain -Sprain Brook -Sprain Valley -Spraque -Spratley -Spratt -Spratt Hall -Spratts -Sprauer -Spray -Sprayer -Spreadbury -Spreading Oak -Spreckels -Spreckels Lake -Spreckles -Spreen -Spreighton -Spriering -Sprig -Spriggs -Spring -Spring Acres -Spring Bank -Spring Bay -Spring Bottom -Spring Branch -Spring Brook -Spring Close -Spring Clough -Spring Coppice -Spring Court -Spring Cove -Spring Creek -Spring Cress -Spring Crest -Spring Elms -Spring Farm -Spring Field -Spring Flower -Spring Gaden -Spring Garden -Spring Gardens -Spring Glen -Spring Green -Spring Grove -Spring Hall -Spring Haven -Spring Head -Spring Hill -Spring Hill Ring -Spring Hill School -Spring Hills -Spring Hollow -Spring House -Spring Knoll -Spring Lake -Spring Lakes -Spring Lawn -Spring Mall -Spring Manor -Spring Marsh -Spring Meadow -Spring Meadows -Spring Mill -Spring Mountain -Spring Oaks -Spring Park -Spring Plow -Spring Point -Spring Pond -Spring Pools -Spring Ridge -Spring Saw -Spring Splendor -Spring Summit -Spring Time -Spring Tree -Spring Vale -Spring Valley -Spring View -Spring Villa -Spring Village -Spring Water -Spring Wood -Spring bridge -Springarden -Springbank -Springbloom -Springbluff -Springbriar -Springbridge -Springbrook -Springclose -Springcreek -Springcrest -Springdale -Springdale Estates -Springer -Springfarm -Springfield -Springfield Center -Springfield Oaks -Springfield Park -Springfield Ranch -Springfield Village -Springfields -Springflower -Springhall -Springham -Springhaven -Springhead -Springhill -Springhollow -Springholly -Springholm -Springhouse -Springhurst -Springhurst Park -Springlake -Springlawn -Springle -Springleaf -Springline -Springmaid -Springman -Springmead -Springmeadow -Springmill -Springmont -Springpark -Springpath -Springpoint -Springrice -Springridge -Springrun -Springs -Springsguth -Springside -Springsong -Springsteen -Springstone -Springtide -Springtime -Springtree -Springvale -Springvalley -Springview -Springville -Springwater -Springwell -Springwod -Springwood -Springwood Hall -Springwood Meadow -Springwoods -Sprinklewood -Spriteview -Spritz -Sproat -Spronketts -Sproul -Sproule -Spruance -Spruce -Spruce Hill -Spruce Hills -Spruce Hollow -Spruce Meadows -Spruce Mill -Spruce Ridge -Spruce Rock -Spruce Tree -Spruce Wood -Sprucecreek -Sprucedale -Sprucetree -Sprucewood -Spruell -Spruill -Sprundel -Spruson -Spuhler -Spuley -Spumante -Spur -Spur Hill -Spur Oak -Spur Rock -Spur Wheel -Spuraway -Spurgeon -Spurgin -Spurgrove -Spurlands End -Spurling -Spurn -Spurr -Spurrell -Spurrier -Spurstowe -Spurt -Spurway -Spurwood -Spy -Spy Glass Hill -Spy Glass Ridge -Spy Pond -Spyglass -Spyglass Cove -Spyglass Hill -Spyglass Hills -Spyri -Spyros -Spywood -Squab -Squam -Squam Hill -Squannacook -Squanto -Squantum -Square -Square Barn -Squareshire -Squarey -Squash Creek -Squaw Brook -Squaw Hill -Squaw Valley -Squeri -Squibb -Squibnocket -Squids Gate -Squire -Squire Hill -Squirecreek -Squiredell -Squirehill -Squires -Squires Bridge -Squires Hill -Squires Mill -Squires Wodd -Squirrel -Squirrel Creek -Squirrel Hall -Squirrel Hill -Squirrel Hollow -Squirrel Run -Squirrels Heath -Squirrelwood -Sreia -St Michaels -St Agathas -St Agnells -St Agnes -St Aidans -St Alban -St Albans -St Albans Bay -St Albans Hollow -St Albans Mill -St Alfege -St Alphege -St Andrew -St Andrew Bethune -St Andrews -St Andrews Trace -St Ann -St Anna -St Anne -St Annes -St Anns -St Anselms -St Anthony -St Anthonys -St Armand -St Asaphs -St Aubin -St Augustine -St Augustines -St Austall -St Austell -St Austells -St Barnabas -St Barnabe -St Barthelemy -St Bartholomews -St Bees -St Benedict -St Benedicts -St Bernard -St Bernards -St Birinus -St Boniface -St Botolph -St Botolphs -St Brannocks -St Brelades -St Brendans -St Brigids -St Camillus -St Catherine -St Catherines -St Cecile -St Celcilia -St Chads -St Charles -St Christophers -St Clair -St Claire -St Clairs -St Clare -St Clement -St Clements -St Clere Hill -St Cloud -St Colette -St Croix -St Croix River -St Cross -St Cuthberts -St Davids -St Denis -St Dennis -St Dionis -St Domingo -St Dunstan -St Dunstans -St Dunston -St Ediths -St Edmunds -St Edwards -St Eleanoras -St Elmo -St Elmos -St Ervans -St Ethelbert -St Eva -St Fidelis -St Francis -St George -St Georges -St George’s -St Giles -St Giles High -St Gothard -St Guiberts -St Heather -St Helena -St Helens -St Helens Park -St Helier -St Helier Furness -St Heliers -St Hildas -St Hilliers -St Hughes -St Ignatius -St Ives -St Ivians -St James -St Jane -St John -St John Fisher -St Johnland -St Johns -St Johnsbury -St Joseph -St Joseph S -St Josephs -St Joseph’s -St Jude -St Judes -St Julian -St Julians -St Katherines -St Keverne -St Kilda -St Kildas -St Laurence -St Laurent -St Lawrence -St Leon -St Leonards -St Lo -St Louis -St Lucia -St Luke -St Lukes -St Malo -St Marcel -St Margaret -St Margarets -St Marie -St Mark -St Marks -St Marrys -St Martin -St Martins -St Mary -St Mary S -St Marychurch -St Marys -St Marys Church -St Marys Hall -St Matthew -St Matthews -St Matthias -St Michael -St Michaels -St Micheals -St Michel -St Mihiel -St Mildreds -St Monicas -St Moritz -St Nazaire -St Neots -St Nicholas -St Norbert -St Olives -St Omer -St Oswalds -St Ouen -St Patrick -St Patricks -St Paul -St Paul Park -St Pauls -St Pauls Church Bath -St Pauls Cray -St Peg -St Peter -St Peter Elgin -St Peters -St Peters Church -St Philips -St Phillips -St Quentin -St Quintin -St Regis -St Richards -St Rocco -St Rochs -St Roman -St Sampson -St Saviours -St Simon -St Swithins -St Swithuns -St Teresas -St Thomas -St Timothys -St Tropez -St Victor -St Vincent -St Vincents -St Volodymyr -St Wilfrids -St William -St Williams -St Winifreds -St catherines -St katherines -St. Agnes -St. Albans -St. Andrews -St. Annes -St. Anns -St. Audrey -St. Augustines -St. Austell -St. Barnabas -St. Benedict -St. Blaise -St. Botolph -St. Bride -St. Catherine -St. Catherines -St. Chads -St. Christopher -St. Clair -St. Claire -St. Clare -St. Cleres -St. Cyprians -St. Davids -St. Dionis -St. Dunstans -St. Ediths -St. Erkenwald -St. Francis -St. George -St. Georges -St. Giles -St. Helena -St. Helens -St. Helier -St. Ives -St. James -St. James on the -St. John -St. Johns -St. Julian -St. Katherine -St. Laurence -St. Leonards -St. Loo -St. Louis -St. Margaret -St. Margarets -St. Marks -St. Martins -St. Mary -St. Marys -St. Matthew -St. Matthews -St. Mervyns -St. Michaels -St. Modwen -St. Nazaire -St. Nicholas -St. Nicolas -St. Olafs -St. Oswulf -St. Paul -St. Pauls -St. Peters -St. Philip -St. Piers -St. Quintin -St. Rule -St. Saviours -St. Thomas -St. Vincent -St. Wilfrids -St.Albans -St.Gothard -St.Helier Love -St.Helier Central -St.James -St.Lukes -St.Marys -St.Norbert -St.Olaves -St.Peters -St.Thomas -Staaf -Staal -Stabean -Stable -Stable Yard -Stablebridge -Stableford -Stablegate -Stablehouse -Stabler -Stableview -Stablewood -Stacey -Stacey Hills -Stacey M -Staceys -Stachan -Staci -Stacia -Stack -Stacker -Stackfield -Stackhouse -Stackinghay -Stackler -Stackpole -Stacy -Staden -Stadhampton -Stadium -Stadler -Staedler -Staff -Staffa -Staffelot -Staffhurst Wood -Staffmark -Stafford -Stafford Hill -Staffordshire -Stafney -Stag -Stag Hill -Stag Oak -Stag Pasture -Stagbury -Stage -Stage Coach -Stage Gulch -Stage Harbor -Stage Hill -Stagecoach -Stagecoach Canyon -Stagehand -Stageline -Stager -Stagg -Staggers -Staghead -Staghorn -Stagi -Stags Run -Stags View -Stahl -Stahley -Stahls -Stahls Point -Stahlway -Stainbank -Stainbeck -Stainbume -Stainburn -Stainby -Staincliffe -Staincliffe Hall -Stainer -Staines -Stainforth -Staining -Stainland -Stainmore -Stainsbury -Staint Augustine -Stainton -Stair -Stair Foot -Stairbridge -Stairfoot -Stairley -Stairs -Stairway -Staithe -Staithes -Stake -Stakeford -Stakehill -Stakers -Stakes -Stakes Corner -Staleford -Stalevicz -Staley -Staley Hall -Staley Manor -Staleybridge -Staleys -Stalham -Stalisfield -Stalker -Stall -Stall Brook -Stallings -Stallion -Stalmine -Stalsburg -Stalwart -Stalybridge -Stalyhill -Stamas -Stambaugh -Stambridge -Stamford -Stamford Brook -Stamford Green -Stamford New -Stamford Park -Stamm -Stammergate -Stamp -Stampstone -Stan -Stan Fey -Stan Haven -Stanage -Stanam -Stanbank -Stanbaugh -Stanborough -Stanbourne -Stanbridge -Stanbro -Stanbrook -Stanbury -Stance -Stanchion -Stanchuk -Stanco -Stancomb Broad -Stancombe -Stancross -Standale -Standard -Standedge -Standen -Stander -Standfield -Standfill -Standford -Standford Hill -Standhill -Standiford -Standinghall -Standish -Standley -Standon -Standpipe -Standrich -Standridge -Stane -Stanes -Stanfield -Stanford -Stanford Farm -Stanford Oak -Stanford Rivers -Stangate -Stangland -Stangrove -Stangus -Stanham -Stanhome -Stanhope -Stanhope Park -Stanhorne -Stanich -Stanie Brae -Stanier -Staniford -Staniland -Stanislaus -Stanjoy -Stanks -Stanlake -Stanlen -Stanley -Stanley Dollar -Stanley Gardens -Stanley Hall -Stanley Hill -Stanley Park -Stanmer -Stanmoor -Stanmore -Stanmount -Stannage -Stannard -Stannary -Stanneylands -Stanningley -Stannybrook -Stansbury -Stansbury Lake -Stansell -Stansfield -Stansgate -Stanshawe -Stansmore -Stanson -Stanstead -Stansted -Stanton -Stanton Crossing -Stanton Hill -Stantonville -Stanway -Stanwell -Stanwell Moor -Stanwell New -Stanwich -Stanwick -Stanwix -Stanwood -Stanworth -Stanwyck -Stanyan -Stanycliffe -Stanyforth -Stapelton -Stapenhill -Staple -Staplefield -Stapleford -Stapleford Hall -Staplehurst -Staples -Staples Ranch -Staples Ridge -Stapleton -Stapleton Hall -Stapley -Stapp -Star -Star Bush -Star Farm -Star Flower -Star Grass -Star Hill -Star House -Star Lilly -Star Mill -Star Pine -Star Point -Star Post -Star Tulip -Star View -Starbird -Starboard -Starboard Tack -Starbright -Starbrook -Starbuck -Starbucks Main -Starburst -Starbush -Starch House -Starcliffe -Starcrest -Starcross -Stardrift -Stardusk -Stardust -Starfield -Starfighter -Starfire -Starfish -Starflower -Starhill -Starin -Stark -Starke -Starkey -Starkie -Starkin -Starlight -Starling -Starling Valley -Starling View -Starlings -Starlit -Starlit Ponds -Starlite -Starmead -Starmond -Starmont -Starmoor -Starodub -Starr -Starr Creek -Starr Jordan -Starr View -Starratt -Starrett Hill -Starring -Starrock -Starsplit -Starswept -Start -Starters -Starting Gate -Startins -Starts Hill -Starveacre -Starvecrow -Starview -Starward -Starwood -Stasia -Stassen -State -State Farm -State Forest -State Hospital Farm -State Line -State Park -Statecrest -Stately -Stately Oak -Stately Oaks -Staten -States -Stateside -Statesman -Stateview -Statford -Statham -Stathos -Station -Station Approach -Station Estate -Station House -Station Valley -Statler -Staton -Statrlight -Stattel -Statter -Statton -Statute -Staubitz -Staudtmauer -Stauffer -Staunton -Stave Yard -Staveley -Stavendish -Staverton -Stavola -Stavordale -Stavors -Stavros -Staycoff -Stayley -Stayner -Stayton -Stead -Steadfast -Steading -Steadman -Steam -Steam Farm -Steam Pump -Steamboat -Steamboat Cove -Steamboat Landing -Steamer -Steamview -Stearman -Stearns -Stearns Hill -Stearton -Stebbing -Stebbins -Stebondale -Stech -Stecher -Stedhall -Stedham -Stedman -Stedwick -Steed -Steed Hill -Steedman -Steedman Point -Steeds -Steel -Steel Creek -Steel Hill -Steel Mill -Steele -Steele Canyon -Steele Hill -Steele Oak -Steele Ranch -Steele Resort -Steele Ridge -Steeler -Steeles -Steelhead -Steelox -Steens Hill -Steenwick -Steep Hill -Steephollow -Steeple -Steeple Chase -Steeple Hill -Steeple Hills -Steeple Run -Steeple View -Steeplechase -Steeples -Steepleside -Steepletop -Steepridge -Steepwood -Steer -Steer Ridge -Steere -Steere Farm -Steerforth -Steers -Stefan -Stefani -Stefanic -Stefano -Steffan -Stege -Stegen -Steger -Steger Monee -Stegman -Stehle -Stehlik -Stehlin -Steiber -Steidel -Steiger Hill -Steiger Lake -Steilen -Stein -Steinbeck -Steinberg -Steiner -Steinhardt -Steinhauser -Steinly -Steinmaier -Steinton -Steinway -Steity -Stelfox -Steli -Stell -Stella -Stellar -Stelle -Stelling -Stellman -Stelton -Stem -Stem Brook -Stembridge -Stemer -Stemler -Stemmer -Stemmler -Stemp -Stencar -Stender -Stendhal -Steneman -Stengel -Stenhammer -Stenhouse -Stenman -Stenner -Stenning -Stenson -Step -Stephalee -Stephan -Stephan Marc -Stephanie -Stephanie Marie -Stephanville -Stephen -Stephen Marshall -Stephen Reid -Stephen Rennie -Stephendale -Stephenie -Stephens -Stephens Lake -Stephenson -Stephensons -Stephenville -Stepney -Stepney High -Stepneyford -Stepneys -Steppey -Stepps -Steps Hill -Stercho -Sterland -Sterling -Sterling Gate -Sterling Grove -Sterling Heights -Sterling Hill -Sterling Lake -Sterling Montague -Sterling Oak -Sterling Oaks -Sterling Ranch -Sterling View -Stern -Stern Ranch -Sterndale -Sterne -Sterner -Sternhall -Sternhold -Sterns -Sterry -Stetcher -Stetchworth -Stetson -Stetson Heights -Stetson Shrine -Stetzer -Steuart -Steubel -Steuben -Steve -Steve Biko -Stevebrook -Stevedore -Steven -Steven Martin -Steven Ray -Steven Smith -Stevenage -Stevens -Stevens Battle -Stevens Canyon -Stevens Creek -Stevens Forest -Stevens Glen -Stevenson -Stevenson Bridge -Stevenson Service -Steventon -Stever -Steves -Steves Farm -Stevick -Stevin -Stew -Stew Leonard -Steward -Stewards Green -Stewart -Stewarton -Stewartown -Stewarts -Stewartville -Stewkley -Steyning -Steynton -Stice -Stich -Stich Mi -Stickball -Stickens -Stickens Lock -Stickfast -Stickland -Stickle -Stickley -Stickling Green -Stickman -Stickney -Stieg -Stiemly -Stierlin -Stiff -Stifford -Stifford Clays -Stile -Stilebridge -Stiles -Stiles Pond -Still -Still Creek -Still Forest -Still Meadow -Still Meadows -Still Pond -Still River -Still River Depot -Still Water -Stillbreeze -Stillbrook -Stillbrook Farm -Stillbrooke -Stillford -Stilling -Stillingfleet -Stillings -Stillington -Stillman -Stillmeadow -Stillmeadows -Stillness -Stillo -Stillson -Stillspring -Stillview -Stillwater -Stillwell -Stillwell Acres -Stillwind -Stilson -Stilt -Stiltner -Stilwell -Stima -Stimel -Stimis -Stimson -Stinchcomb -Stinchfield -Stingray -Stinnett -Stinson -Stinson Service -Stipa -Stipp -Stipularis -Stires -Stirgess -Stirling -Stirling Bridge -Stirling Court -Stirling Park -Stirrup -Stirrup Cup -Stirrup Iron -Stites Hill -Stiups -Stivaletta -Stivers -Stoakley -Stobart -Stobbs -Stobe -Stock -Stock Farm -Stock Orchard -Stock Ranch -Stockade -Stockberry -Stockbreach -Stockbridge -Stockburn -Stockbury -Stockcroft -Stockdale -Stockdales -Stocker -Stockerhead -Stockers -Stockett -Stocketts -Stocketts Run -Stockfield -Stockford -Stockheld -Stockhill -Stockhoff -Stockholm -Stockhouse -Stocking -Stockings -Stockingstone -Stockingswater -Stockland -Stockland Green -Stockley -Stockman -Stockport -Stocks -Stocks Green -Stocks Park -Stocksfield -Stockton -Stockton Tees -Stockwell -Stockwell Farm -Stockwell Park -Stockwood -Stockyards -Stoconga -Stocton -Stodart -Stoddard -Stoddard Park -Stoddards -Stoddart -Stoddert -Stodham -Stodola -Stoecker -Stoetz -Stoffa -Stoke -Stoke Common -Stoke Court -Stoke Newington -Stoke Newington High -Stoke Poges -Stoke Row -Stokely -Stokenchurch -Stokes -Stokes Farm -Stokesay -Stokesby -Stokesheath -Stokesley -Stokoe -Stoll -Stolle -Stollwood -Stomp -Stompits -Stompond -Stonaker -Stonard -Stondon -Stone -Stone Arch -Stone Barn -Stone Breaks -Stone Bridge -Stone Brig -Stone Brook -Stone Cabin -Stone Canyon -Stone Castle -Stone Circle -Stone Cleave -Stone Cliff -Stone Court -Stone Creek -Stone Crop -Stone Cross -Stone End -Stone Fence -Stone Gate -Stone Hall -Stone Harbor -Stone Harbour -Stone Haven -Stone Heather -Stone Hedge -Stone Hill -Stone Hollow -Stone House -Stone Jug -Stone Lake -Stone Ledge -Stone Marsh -Stone Meadow -Stone Meadow Farm -Stone Mill -Stone Oak -Stone Oaks -Stone Path -Stone Pier -Stone Pillar -Stone Pine -Stone Pit -Stone Post -Stone Quarry -Stone Range -Stone Ridge -Stone Root -Stone School -Stone Spring -Stone Springs -Stone Tower -Stone Trail -Stone Vale -Stone Valley -Stone Village -Stone Wall -Stoneacre -Stonebarger -Stonebarn -Stonebriar -Stonebridge -Stonebridge Green -Stonebridge View -Stonebrook -Stonebrooke -Stoneburner Mill -Stonecastle -Stonechat -Stonecleave -Stonecleve -Stonecliff -Stonecliffe -Stoneclough -Stonecot Hill Tudor -Stonecreek -Stonecress -Stonecrest -Stonecroft -Stonecrop -Stonecross -Stonecutter -Stonecutters -Stonedale -Stonedge -Stonedrop -Stonefence -Stonefield -Stonefoot -Stoneford -Stonegarden -Stonegate -Stonehall -Stoneham -Stonehand -Stonehart -Stonehaven -Stonehead -Stonehearth -Stoneheather -Stonehedge -Stonehenge -Stoneheyes -Stonehill -Stoneholm -Stonehorse -Stonehouse -Stonehouse Hill -Stonehurst -Stoneings -Stonelake Club -Stoneland -Stonelea -Stoneleat -Stoneleigh -Stoneleigh Manor -Stoneleigh Park -Stoneman -Stonemason -Stonemead -Stonemeadow -Stonemere -Stonemill -Stonemill Farms -Stoneness -Stonenest -Stonepail -Stonepine -Stoner -Stoner Hill -Stoneridge -Stoneridge Mall -Stones -Stones Bank -Stones Corner -Stones End -Stones Manor -Stones Throw -Stonesboro -Stonesheep -Stonesteads -Stonestile -Stonestile Farm -Stonestreet -Stoneswood -Stonetown -Stoneview -Stonewall -Stonewall Farm -Stonewall Jackson -Stonewall Park -Stonewater -Stonewell -Stonewheel -Stonewood -Stonewyck -Stoney -Stoney Bottom -Stoney Brae -Stoney Bridge -Stoney Brook -Stoney Brooke -Stoney Castle -Stoney Common -Stoney Creek -Stoney Hill -Stoney Island -Stoney Lea -Stoney Meadows -Stoney Point -Stoney Ridge -Stoney Rock -Stoney Run -Stoney View -Stoney Weir -Stoneyard -Stoneybrae -Stoneybrook -Stoneybrooke -Stoneycreek -Stoneycrest -Stoneycroft -Stoneydown -Stoneyfield -Stoneyfold -Stoneyford -Stoneygate -Stoneyhill -Stoneyhurst -Stoneyland -Stoneylands -Stoneyside -Stonhouse -Stonie Heyes -Stonington -Stonley -Stonny Batter -Stonor -Stonum -Stony -Stony Beach -Stony Brae -Stony Brook -Stony Cove -Stony Creek -Stony Field -Stony Gorge -Stony Hill -Stony Hollow -Stony Island -Stony Path -Stony Point -Stony Ridge -Stony Run -Stony Wylde -Stonybrook -Stonycrest -Stonycroft -Stonyford -Stonyhurst -Stonyridge -Stonytown -Stoos -Stoothoff -Stop River -Stopes -Stopford -Storage -Storch -Storch Turn -Storch Woods -Store -Store Hill -Store House -Storehouse -Storer -Stores -Storetti -Storey -Stories -Storig -Stork -Storksmead -Storland -Storm -Stormount -Storms -Stormwood -Stormy -Stornaway -Stornoway -Storrie -Storrington -Storrow -Storrs -Stort -Stortford -Stortford Hall -Storth Meadow -Story -Story Acres -Story Book -Story Hill -Storybook -Storz -Stotfold -Stothard -Stothoff -Stott -Stotts -Stoughton -Stour -Stourcliffe -Stourton -Stout -Stovall -Stovell -Stover -Stow -Stow Lake -Stowaway -Stowe -Stowecroft -Stowel -Stowell -Stowers -Stowring -Stowting -Strabane -Stracey -Strachan -Stradbroke -Stradella -Strader -Stradford -Strafello -Strafford -Straford -Straford Garden -Strahan -Straight -Strain -Strait -Straits -Straits View -Strakers -Straloch -Strand -Strand Approach -Strande -Stranden -Strander -Strang -Strange -Stranger -Strangford -Strangman -Stranraer -Stranton -Strasbourg -Strasburg -Strassberger -Strassburg -Strasser -Strata -Stratfield -Stratfield Saye -Stratford -Stratford Bay -Stratford House -Strath Erin -Strath Haven -Strathalbyn -Strathallen -Stratham -Strathaven -Strathblaine -Strathbrook -Strathcarron -Strathcona -Strathdon -Strathearn -Stratheden -Strathfield -Strathgordon -Strathleven -Strathlora -Strathmeade -Strathmere -Strathmoor -Strathmore -Strathnairn -Strathspey -Strathville -Strathyre -Straton -Stratos -Strattford -Stratton -Stratton Chase -Stratton Hill -Stratton Pond -Stratton Ranch -Stratus -Stratwood -Straub -Straugh -Straughn -Straus -Strausberg -Strauss -Stravinsky -Straw -Straw Bale -Straw Hollow -Strawberry -Strawberry Bank -Strawberry Canyon -Strawberry Hill -Strawberry Knoll -Strawberry Park -Strawberry Patch -Strawbridge -Strawbridge Square -Strawflower -Strawtown -Stray -Strayer -Strayfield -Strayhorn -Streakes Field -Stream -Stream Pit -Stream Pond -Stream Valley -Stream View -Stream Wood -Streamside -Streamview -Streamwood -Streatfeild -Streatfield -Streatham -Streatham High -Streatham HillTelford -Streathbourne -Streatley -Strebel -Streblow -Strebor -Strech -Streels -Street -Street Bridge -Street End -Street Hill -Streeter -Streeters -Streetfield -Streethaven -Streethouse -Streeton -Strehler -Streiff -Streimer -Streitz -Strek -Streng -Strenger -Strentzel -Strese -Stretchworth -Stretford -Stretton -Strickland -Strickroth -Stride -Strieff -Striker -Striley -Strine -Strines -String -Stringer -Stringer Dam -Stringers -Stringfellow -Stringtown -Stringybark -Striped Bass -Strivens -Strobel -Strobridge -Strobus -Strode -Stroh -Strohn -Stroker -Strolling -Strom -Stroman -Strome -Stromlo -Stromness -Stromquist -Strone -Strong -Strongbow -Stronghurst -Strongs -Strongstry -Stronsa -Strood -Stroud -Stroud Farm -Stroud Green -Stroude -Stroudley -Stroup -Strout -Strouts -Stroven -Strover -Strowbridge -Struan -Struble -Struckman -Struen Marie -Strully -Strunks -Strutfield -Struthers -Struttmann -Struttons -Struve -Struyk -Stryker -Strype -Strzlecki -Stuart -Stuart Kaplan -Stuart Mill -Stuart Ridge -Stuart Robeson -Stuart on Oxford -Stuarton -Stuarts -Stub -Stub Toe -Stubb -Stubbers -Stubbin -Stubbins -Stubbins Hall -Stubble -Stubbs -Stubbs Moor -Stubby -Stuber -Stubley -Stubley Mill -Stubpond -Stubtoe -Stuckey -Stuckler -Stucley -Studarus -Studd -Studding Sail -Studdridge -Studebaker -Student -Student Center -Students -Studham -Studholme -Studio -Studios -Studland -Studley -Studley Grange -Studridge -Studt -Stuenkel -Stuhr -Stukeley -Stukely -Stults -Stulz -Stumble -Stump -Stump Neck -Stumptown -Sturbridge -Sturdee -Sturdivant -Sturdy -Sturge -Sturgeon -Sturgeon Lake -Sturges -Sturgess -Sturgis -Sturgus -Sturl -Sturla -Sturm -Sturnbridge -Sturney -Sturno -Sturr -Sturry -Sturt -Sturtevant -Sturtons -Stutfield -Stutt -Stutton -Stutz -Stuyvesant -Styal -Stychens -Styebank -Styertown -Styhead -Style -Stylecroft -Styler -Styles -Stylon -Suakin -Sub -Subagai -Subec -Subiaco -Sublett -Substation -Subtle -Suburban -Suburbia -Subway -Success -Succetti -Such -Sucher -Sucinto -Sucker Lake -Sudan -Sudberry -Sudborne -Sudbourne -Sudbrook -Sudbrooke -Sudbury -Sudbury Court -Sudbury Heights -Sudden -Sudden Pond -Sudeley -Sudell -Sudley -Sudley Manor -Sudlow -Sudsbury -Sue -Sue Ann -Sueirro -Suel -Sueno -Suez -Suffern -Suffield -Suffolk -Suffolk Park -Suffork -Sufi -Sufonet -Sugar -Sugar Babe -Sugar Barge -Sugar Bear -Sugar Beet -Sugar Bush -Sugar Cane -Sugar Creek -Sugar Hill -Sugar House -Sugar Loaf -Sugar Maple -Sugar Meadow -Sugar Mill -Sugar Pine -Sugar Pit -Sugar Toms -Sugar Valley -Sugar View -Sugar Well -Sugarberry -Sugarbush -Sugarcane -Sugarland -Sugarland Meadow -Sugarland Run -Sugarland Valley -Sugarloaf -Sugarloaf Mountain -Sugarloaf View -Sugarpine -Sugarplum -Sugartree -Sugarwood -Sugden -Suggs -Sugiyama -Suheil -Suisse -Suisun -Suisun Valley -Suit -Suiter -Suitland -Suitt -Sulby -Sulfrian -Sulgrave -Sulgrove -Sulhamstead -Sulina -Sulivan -Sulky -Sulley -Sulliman -Sullivan -Sullivans -Sully -Sully Lake -Sully Park -Sulmam -Sulmone -Sulphur -Sulphur Spa -Sulphur Spring -Sulphur Springs -Sultan -Sulyma -Sumac -Sumacs -Sumatra -Sumbray -Sumburgh -Summa -Summer -Summer Blossom -Summer Blossum -Summer Breeze -Summer Day -Summer Duck -Summer Gate -Summer Glen -Summer Grove -Summer Heights -Summer Hill -Summer Hollow -Summer Home -Summer House -Summer House Hill -Summer Isle -Summer Leaf -Summer Leave -Summer Meadow -Summer Moon -Summer Oak -Summer Oaks -Summer Park -Summer Pointe -Summer Pond -Summer Rain -Summer Ridge -Summer Rose -Summer Shade -Summer Sky -Summer Sunrise -Summer Sunset -Summer Village -Summer Walk -Summer Wheat -Summer Wind -Summerall -Summerbell -Summerbreeze -Summerbridge -Summerbrook -Summercourt -Summercreek -Summercrest -Summerdale -Summerday -Summerfield -Summergate -Summergrove -Summerheights -Summerhill -Summerhill Burnham -Summerhome Park -Summerhouse -Summerland -Summerlands -Summerleaf -Summerleaze -Summerlee -Summerley -Summerleys -Summerlin -Summerly -Summerplace -Summerrain -Summerridge -Summers -Summers Grove -Summersbury -Summersby -Summerseat -Summerset -Summershade -Summershades -Summerside -Summersong -Summersweet -Summerswood -Summertime -Summerton -Summertree -Summervale -Summerview -Summerville -Summerwind -Summerwood -Summit -Summit A -Summit B -Summit Canyon -Summit Corner -Summit Creek -Summit Fr -Summit Hall -Summit Hills -Summit Lake -Summit Manor -Summit Oaks -Summit Park -Summit Point -Summit Ranch -Summit Ridge -Summit School -Summit Shores -Summit Springs -Summit View -Summit View Ranch -Summit Wood -Summit Woods -Sumner -Sumner Brown -Sumner Grove -Sumner Lake -Sumner Perry -Sumner South -Sumpter -Sumpwams -Sumter -Sumutka -Sun -Sun Blossom -Sun Brook -Sun Center -Sun City -Sun Cliff -Sun Court -Sun Glen -Sun Glory -Sun Glow -Sun Gold -Sun Haven -Sun Hill -Sun Meadow -Sun Mor -Sun Mountain -Sun Oak -Sun Orchard -Sun Park -Sun Point -Sun Ranch -Sun Ray -Sun River -Sun Run -Sun Shadow -Sun Tree -Sun Valley -Sun West -Sunamber -Sunapee -Sunbank -Sunbeam -Sunberry -Sunbird -Sunbonnet -Sunborough -Sunbow -Sunbower -Sunbreeze -Sunbridge -Sunbright -Sunbrook -Sunburst -Sunbury -Sunbury Court -Sunby -Suncast -Suncatcher -Suncliff -Sunco -Suncook -Suncote -Suncountry -Suncrest -Suncrest Hill -Suncroft -Sund -Sundale -Sundance -Sunday -Sundberg -Sunderland -Sunderleigh -Sunderlin -Sunderton -Sundew -Sundial -Sundin -Sundon -Sundon Park -Sundown -Sundowner -Sundridge -Sundrift -Sundringham -Sundrop -Sunfaire -Sunfield -Sunfish -Sunfish Lake -Sunflower -Sungarden -Sungate -Sunglow -Sunhaven -Sunhill -Sunhills -Sunken -Sunken Meadow -Sunken Orchard -Sunkist -Sunland -Sunland Vista -Sunlaws -Sunlea -Sunleaf -Sunleigh -Sunlight -Sunlit -Sunlit Ann -Sunlite -Sunmead -Sunmeadow -Sunmill -Sunmore -Sunning -Sunning Hill -Sunningdale -Sunningfields -Sunninghill -Sunnings -Sunny -Sunny Acres -Sunny Bank -Sunny Bower -Sunny Brae -Sunny Brook -Sunny Brooke -Sunny Brow -Sunny Chapel -Sunny Cove -Sunny Creek -Sunny Dell -Sunny Gardens -Sunny Glen -Sunny Hill -Sunny Hills -Sunny Knoll -Sunny Meadow -Sunny Meadows -Sunny Oaks -Sunny Orchard -Sunny Plain -Sunny Ridge -Sunny Side -Sunny Slope -Sunny View -Sunny Vista -Sunnyacres -Sunnybank -Sunnybrae -Sunnybrook -Sunnycrest -Sunnycroft -Sunnydale -Sunnydays -Sunnydell -Sunnydene -Sunnyfield -Sunnyfields -Sunnygate -Sunnyglen -Sunnyhaven -Sunnyhill -Sunnyhills -Sunnyholt -Sunnylea -Sunnymead -Sunnymede -Sunnymere -Sunnymount -Sunnyridge -Sunnyrock -Sunnyside -Sunnyslope -Sunnyslope Farm -Sunnyslopes -Sunnyvale -Sunnyview -Sunnywood -Sunnywoods -Sunol -Sunol Valley -Sunpace -Sunpark -Sunpeak -Sunray -Sunridge -Sunrise -Sunrise Beach -Sunrise Farm -Sunrise Greens -Sunrise Hill -Sunrise Hills -Sunrise Hwy N Service -Sunrise Mall -Sunrise Meadows -Sunrise Mountain -Sunrise Park -Sunrise Pines -Sunrise Ridge -Sunrise South -Sunrise Terrace -Sunrise Valley -Sunrise View -Sunrise Vista -Sunrock -Sunrose -Sunseason -Sunset -Sunset Glen -Sunset Hill -Sunset Hills -Sunset Knoll -Sunset Lake -Sunset Lakes -Sunset Maple -Sunset Meadows -Sunset Mobiles -Sunset Park -Sunset Place -Sunset Ridge -Sunset Rock -Sunset View -Sunshadow -Sunshine -Sunshine Cottage -Sunshine Valley -Sunshire -Sunsilver -Sunspark -Sunspring -Sunsprite -Sunstar -Sunstone -Sunstream -Sunsweet -Sunswyck -Suntaug -Sunte -Suntone -Suntree -Sunvale -Sunvalley -Sunvaught -Sunview -Sunway -Sunwest -Sunwich -Sunwisper -Sunwood -Sunwood Valley -Suomi -Suosso -Superba -Superfortress -Superior -Supor -Supornick -Supplee -Supply -Supreme -Supreme Ct -Sur Mer -Surada -Surat -Surber -Surbiton -Surbiton Hill -Surele -Surf -Surf View -Surface -Surfperch -Surfside -Surfview -Surig -Surita -Surmont -Surperior -Surplus -Surprise -Surr -Surratts -Surratts Manor -Surratts Village -Surrenden -Surrey -Surrey Circle -Surrey Heath -Surrey Heights -Surrey Hill -Surrey Hts -Surrey Ridge -Surrey Service -Surrey Square -Surrey Water -Surrey Woods -Surreywood -Surro -Surry -Surrydale -Surryhill -Surryse -Surtess -Survey -Surveyor -Surveyor Abbot -Surveyors Creek -Susan -Susan Leslie -Susan Oak -Susan Rosemary -Susana -Susanah -Susanna -Susannah -Susanne -Susans -Susi -Susie -Susini -Susquehanna -Susquehannock -Susses -Sussex -Sussex Corner -Sussex Creek -Sussman -Susy -Sutch -Sutcliff -Sutcliffe -Suteki -Suter -Suthard -Sutherland -Suthurin -Sutlej -Sutler -Sutphen -Sutphin -Sutro -Sutro Heights -Sutter -Sutter Creek -Sutter Gate -Sutter Hill -Sutter Island -Sutter Slough Bridge -Sutters -Sutters Gold -Sutterton -Sutterville -Sutterwind -Suttie -Suttle -Sutton -Sutton Baron -Sutton Common -Sutton Court -Sutton Dale -Sutton Green -Sutton Hall -Sutton Hill -Sutton Manor -Sutton Oaks -Sutton Park -Sutton Wick -Sutton Wood -Sutton Woods -Suttondale -Suttons -Suttons Park -Suttonwood -Suttor -Suview -Suwanee -Suwarrow -Suydam -Suzanne -Suzette -Suzie -Suzie Q -Suzzane -Svea -Svenson -Sverge -Swabey -Swaby -Swagman -Swailes -Swaim -Swain -Swaine -Swainland -Swains -Swains Lock -Swains Pond -Swainson -Swainson Hawk -Swainsons Hawk -Swainsthorpe -Swainstone -Swainwood -Swaisland -Swakeleys -Swale -Swalecliff -Swaledale -Swales -Swallow -Swallow House -Swallow Point -Swallow Rock -Swallow Tail -Swallowdale -Swallowfield -Swallows -Swallows Nest -Swallowtail -Swalls -Swalm -Swamp -Swamp Circle -Swamp Fox -Swamphen -Swampscott -Swampy -Swan -Swan Creek -Swan Harbour -Swan Lake -Swan Oak -Swan Point -Swan Pond -Swanage -Swanberg -Swanbourne -Swanbridge -Swandale -Swane -Swanee -Swanell -Swaner -Swanfield -Swank -Swanland -Swanley -Swanley Bar -Swanley Village -Swann -Swannekin -Swanns -Swans Creek -Swans Mill -Swanscoe -Swanscomb -Swanscombe -Swansea -Swansfield -Swanson -Swanson Creek -Swansona -Swanston -Swanstree -Swanton -Swanton View -Swanworth -Swanzy -Swanzy Dam -Swaps -Swarbrick -Swarcliffe -Sward -Swardale -Swarthmore -Swarts -Swartz -Swartzel -Swasedale -Swasey -Swaton -Swattenden -Swayfield -Swaylands -Swayne -Swaynes -Swaynesland -Swayze -Sweat Briar -Swede Lake -Sweden -Sweden Point -Swedish Mission -Sweeley -Sweeney -Sweeneydale -Sweeny -Sweet -Sweet Andrea -Sweet Autumn -Sweet Bay -Sweet Birch -Sweet Briar -Sweet Cherry -Sweet Clover -Sweet Grass -Sweet Gum -Sweet Hill -Sweet Hollow -Sweet Maggie -Sweet Meadow -Sweet Oak -Sweet Pea -Sweet Pecan -Sweet Pine -Sweet Water -Sweet William -Sweetbay -Sweetbirch -Sweetbriar -Sweetbrier -Sweetbrook -Sweetflower -Sweetgrass -Sweetgum -Sweethaven -Sweetings -Sweetland -Sweetland Farm -Sweetlands -Sweetleaf -Sweetloves -Sweetman -Sweetmans -Sweetmeadow -Sweetnam -Sweetridge -Sweets -Sweetser -Sweetspring -Sweetwater -Sweetwater Springs -Sweetwood -Sweezy -Sweigert -Sweitzer -Swenson -Swete -Swett -Swett Hill -Swettenham -Sweyne -Swickard -Swider -Swift -Swift Arrow -Swift Creek -Swift River -Swift Run -Swift Run Trails -Swifts -Swifts Green -Swiftsure -Swiftwater -Swillers -Swillington -Swinborne -Swinbourne -Swinbrook -Swinburn -Swinburne -Swindells -Swinderby -Swindon -Swinebourne -Swineyard -Swinfield -Swinford -Swing -Swing Swang -Swingate -Swingingdale -Swingle -Swinks Mill -Swinley -Swinnerton -Swinnow -Swinside -Swinson -Swinstead -Swinton -Swirl -Swiss -Switch Grass -Switchback -Switchboard -Switchglass -Switchgrass -Swithemby -Swithens -Swithin -Swithland -Switzer -Swoffer -Swoop Hill -Swope -Sword -Swordale -Swordfish -Swordsmans -Swordstone -Sworford -Swridgedale -Swrobinwood Beach -Swyncombe -Syar -Sybaris -Sybert -Sybil -Sybilla -Sybourn -Sycamore -Sycamore Canyon -Sycamore Glen -Sycamore Hill -Sycamore Landing -Sycamore Leaf -Sycamore Ridge -Sycamore Springs -Sycamore Valley -Sychem -Sycolin -Sydall -Syddal -Syddall -Sydell -Sydenham -Sydenham Park -Sydenstricker -Sydervelt -Sydner -Sydney -Sydney Joseph -Sydney Park -Sydnor -Syers -Syke -Sykes -Sykesville -Sykora -Syl Dor -Syldeo -Sylhowe -Sylla -Sylmar -Sylva -Sylvain -Sylvamdur -Sylvan -Sylvan Dell -Sylvan Glade -Sylvan Glen -Sylvan Heights -Sylvan Knoll -Sylvan Lake -Sylvan Meadow -Sylvan Moor -Sylvan Woods -Sylvandale -Sylvaner -Sylvania -Sylvanleigh -Sylvanus -Sylvanus Wood -Sylvar -Sylverdale -Sylvester -Sylvestri -Sylvestris Fire -Sylvia -Sylviawood -Sym -Symblist -Syme -Symes -Symington -Symmes -Symmonds -Symnes -Symond -Symonds -Symonds Green -Symons -Symor -Symphony -Symphony Meadow -Symphony Woods -Syndall -Syndicate -Synge -Syon -Syosset -Syosset Woodbury -Syracuse -Syrd -Syril -Syrup Mill -Systems -Systron -Systrum -Syvestrus Fire -Szymanski -T Alexander -Taaffe -Tab -Tabalum -Tabard -Taber -Taber Hill -Tabernacle -Tabiona -Table -Table Mountain Fire -Tableer -Tabler -Tabley -Tabley Hill -Tabooba -Tabor -Tabor Hill -Tabor House -Tabora -Tabors -Tabourie -Tabrett -Tabscott -Tabway -Tacana -Tacaro -Tachbrook -Tache -Tachevah -Tack -Tack Factory Pond -Tackbrooke -Tackett -Tacketts Mill -Tackroom -Tacks -Taco -Tacoma -Tacoma Narrows -Tacomic -Taconic -Tad -Tadcaster -Taddington Wood -Tadema -Tadin -Tadman -Tadmor -Tadmore -Tadmuck -Tadorne -Tadpole -Tadstone -Tadworth -Taeping -Taff -Taffrail -Taffs -Taffy -Tafoya -Taft -Tafts -Tag -Tagart -Taggart -Taggarts -Taglio -Tahalla -Tahama -Tahan -Tahanto -Tahattawan -Tahiti -Tahja -Tahlee -Tahlulah -Tahoe -Tahoe Circle -Tahola -Tahona -Tahos -Tahualami -Tai Tung -Tail Feathers -Tailings -Tailor -Tailrace -Tailwind -Tain -Tainan -Tainter -Tainter Hill -Tainters -Taintor -Taipei -Taisley -Tait -Taiyul -Taj -Taji -Tajlea -Takeley -Takolusa -Takoma -Tal -Talacre -Talaga -Talahi -Talala -Talamore -Talandis -Talara -Talavera -Talbart -Talbert -Talbot -Talbot Farm -Talbots -Talbott -Talbragar -Talbryn -Talburn -Talc -Talcot -Talcott -Taleeban -Talent -Taleworth -Talford -Talfourd -Talgai -Talgarth -Talia -Taliaferro -Taliesin -Talinga -Talisa -Talisman -Talismon -Talkin -Talking Rock -Tall Cedars -Tall Forest -Tall Grass -Tall Oak -Tall Oaks -Tall Pine -Tall Pines -Tall River -Tall Shadows -Tall Ships -Tall Timber -Tall Timbers -Tall Tree -Tall Trees -Tall Tulip -Tallac -Tallack -Tallagandra -Tallahassee -Tallahatchey -Tallard -Tallawalla -Tallawanda -Tallawarra -Tallawong -Tallayast -Talle -Tallen -Tallent -Taller -Talley -Tallgrass -Tallgums -Tallies -Tallis -Tallmadge -Tallman -Tallon -Tallong -Tallow -Tallow Tree -Tallow Wood -Tallowood -Tallowwood -Tallwood -Tally -Tally Ho -Tallyho -Talma -Talmadge -Talman -Talmiro -Talmont -Taloma -Talon -Taloombu -Talulah -Talus -Talwarra -Talwin -Tam O Shanter -Tam Oshanter -Tamahawk -Tamal -Tamal Vista -Tamalpais -Tamalpais View -Tamani -Tamar -Tamara -Tamara Jean -Tamarac -Tamarack -Tamaralk -Tamarama -Tamarama Marine -Tamarind -Tamarindo -Tamarindo Bay -Tamarisk -Tamarix -Tamaro -Tamaron -Tamarou -Tamayo -Tamboer -Tamboon -Tamborine -Tamboura -Tambourine Bay -Tamboy -Tambu -Tambua -Tamburlaine -Tame -Tameling -Tamer -Tamera -Tamerton -Tami -Tami Lee -Tamiami -Tamie -Taminga -Tammanny -Tammer -Tammie -Tammie Hill -Tamms -Tammy -Tammys -Tamori -Tampa -Tampico -Tamplen -Tamplin -Tamworth -Tamworth Hill -Tamys -Tan Bark -Tan House -Tan Oak -Tan Vat -Tana -Tanadoona -Tanager -Tanagers -Tanaka -Tanbark -Tancin -Tancred -Tancreti -Tandang Sora -Tandara -Tandem -Tandera -Tanderagee -Tanderra -Tandle Hill -Tandom -Tandridge -Tandridge Hill -Tandy -Tanen -Taney -Tanfield -Tanforan -Tangarra -Tangeman -Tangen -Tanger -Tangerine -Tangier -Tangle -Tangle Wood -Tanglevale -Tanglewood -Tanglewood Hollow -Tanglewood Park -Tanglewood Trails -Tanglewylde -Tangley -Tangley Park -Tanglyn -Tangmere -Tango -Tangshutts -Tanhill -Tanhouse -Tanhurst -Tania -Tank -Tank Hill -Tank House -Tankerdale -Tankerton -Tankerville -Tankit -Tanklage -Tankridge -Tanland -Tanleaf -Tanley -Tannahill -Tannehill -Tanner -Tanner Heights -Tanners -Tanners End -Tanners Park -Tanners Pond -Tanners Wood -Tannery -Tannery Creek -Tannery Ridge -Tanney -Tannock -Tannsfeld -Tano -Tanoak -Tanridge -Tansey -Tansley -Tanswell -Tansy -Tant -Tantallon -Tantangara -Tantani -Tantolen -Tanton -Tanuda -Tanunda -Tanwood -Tanworth -Tanya -Tanyard -Tanyard Cove -Tanyard Hill -Tanyard Spring -Tanza -Tanzanite -Tanzio -Taormino -Taos -Tapadera -Taper -Tapered -Tapestry -Tapia -Tapio -Tapiola -Taplan -Tapley -Taplin -Taplins Farm -Taplow -Tapners -Tapok -Tapp -Tappan -Tappan Landing -Tappanwood -Tappen -Tappentown -Tapper -Tappesfield -Tapping -Tappingo -Tapscott -Tapsells -Tapster -Tapwood -Tar Cove -Tar Point -Tar Tank -Tara -Tara Ann -Tara Hill -Tara Hills -Tara Lin -Tara View -Tarabrook -Tarada -Taradale -Tarakan -Taralga -Tarantino -Taranto -Tarara -Taras -Taraval -Tarban -Tarbat -Tarbay -Tarbell -Tarbell Spring -Tarbell Springs -Tarbert -Tarbet -Tarboro -Tarbox -Tarca -Tardival -Tardy -Tarecroft Green -Taree -Tarence -Tareyton -Tarfside -Targee -Target -Target Rock -Target Service -Target Svc -Target on Whittier -Targo -Targowski -Tariff -Tarilli -Taringa -Tarjan -Tarkan -Tarkiln -Tarkin Hill -Tarkington -Tarklin -Tarklin Pond -Tarklyn -Tarks -Tarland -Tarleton -Tarleton Corner -Tarling -Tarlton -Tarman -Tarmigan -Tarn -Tarn Hill -Tarn View -Tarnapoll -Tarnside -Tarnworth -Taro -Taronga -Tarook -Taroona -Tarpan -Tarpey -Tarplee -Tarpley -Tarpon -Tarporley -Tarquin -Tarra -Tarrabundi -Tarragon -Tarragona -Tarragundi -Tarrant -Tarrants -Tarraville Creek -Tarring -Tarrington -Tarrogana -Tarrs -Tarry -Tarryhill -Tarrymore -Tarrytown -Tarshes -Tart Lake -Tartan -Tartan Hills -Tartan Lakes -Tartan Ridge -Tartan Trail -Tartan View -Tartan Vista -Tartans -Tartar -Tartarian -Tarton -Tarver -Tarvin -Tarwater -Tarwin -Taryn -Tascan -Tasha -Tashmoo -Tasker -Tasman -Tassajara -Tassajara Ranch -Tassasara -Tassi -Tassia -Tasso -Taswell -Tatani -Tatchbury -Tatchell -Tate -Tate Naylor -Tateley -Tatham -Tathra -Tatlers -Tatman -Tatmorehills -Tatnell -Tatra -Tatro -Tatsfield -Tattan Farm -Tattenham -Tattenham Corner -Tattersall -Tattersalls -Tattershall -Tatterson -Tattlebury -Tatton -Tatton Mere -Tatum -Taub -Tauber -Taubert -Taubman -Taunton -Taurasi -Taurus -Taussig -Taustin -Tauxemont -Tavan Estates -Tavenner -Tavern -Tavern Court -Taverners -Taverney -Tavernor -Tavernor Trail -Tavestock -Tavi -Tavisock -Tavistock -Taviton -Tawa -Tawney -Tawneys -Tawny -Tawny Port -Taworri -Tawton -Taxal Moor -Taxi -Taxiera -Taxter -Tay -Tay Creek -Tay River -Tayben -Taybridge -Tayfield -Tayla -Tayles Hill -Tayloe -Taylor -Taylor Acres -Taylor Glen -Taylor Hill -Taylor Manor -Taylor Park -Taylor Point -Taylor View -Taylors -Taylors End -Taylorsport -Taylorstown -Taylortown -Taylorville -Taylro Caldwell -Tayman -Tayman Farm -Taymil -Taynish -Taynton -Tayntor -Tayside -Taywood -Tchapitoulas -Tea -Tea Garden -Tea Gardens -Tea Rock -Tea Rose -Tea Table -Tea Tree -Teaberry -Teabury -Teaderman -Teagarden -Teague -Teak -Teakettle -Teakle -Teakwood -Teal -Teal Island -Tealby -Teale -Tealing -Tealwood -Teamster -Teaneck -Teapot -Teasdale -Teasel -Tebaco -Tebbs -Tebbutt -Tebroc -Tebworth -Tec -Tec Air -Tech -Tech Center -Techni -Technical Park -Technology -Technology Center -Technology Park -Techny -Teck -Teckla -Tecklenberg -Teckler -Tecoma -Tecumseh -Ted -Ted Bowling -Tedbury -Tedd -Tedder -Teddington -Teddington Elmfield -Teddington Gloucester -Teddo -Teddy -Tedesco -Tedford -Tedrich -Teds -Tedwin -Tee -Tee Time -Teebrook -Teed -Teehan -Teel -Teela -Teele -Teemer -Teepee -Teer -Tees -Teesdale -Teets -Teeup -Teevan -Teeway -Tefft -Tegan -Tegea -Tegel -Teggs -Tehama -Teibel -Teibrook -Teichert -Teigland -Teignmouth -Teiland -Teilh -Teilland -Teixeira -Tejas -Tejon -Tek -Tekels -Tekening -Tekman -Teldeschi -Tele -Telegram -Telegraph -Telegraph Corner -Telegraph Hill -Telemark -Telephone -Teleport -Telescope -Telese -Telfer -Telferscot -Telford -Telford Way Brunel -Tell -Teller -Tellers -Telles -Tellis -Tellson -Telluride -Telopea -Telsa -Telscombe -Telser -Telston -Telwong -Temaraire -Temblor -Tembrook -Temelec -Temeraire -Temescal -Temi -Temora -Temora Manor -Tempcopy -Tempe -Tempelhof -Temperance -Temperate -Temperley -Tempest -Templar -Templars -Temple -Temple Bar -Temple Creek -Temple Hall -Temple Hill -Temple Mills -Temple Newsam -Temple Park -Temple Sheen -Temple Shen -Temple View -Temple Wood -Templecombe -Templedene -Templegate -Templeman -Templenewsam -Templer -Templeton -Templewood -Tempo -Temporary -Tempsford -Temptin -Tempus -Ten Acre -Ten Acres -Ten Eyck -Ten Gate -Ten Hills -Ten Mills -Ten Oaks -Ten Penny -Tenafly -Tenakill -Tenax -Tenaya -Tenbrink -Tenbroeck -Tenbrook -Tenbury -Tenby -Tench -Tenda -Tender -Tenderfoot -Tendring -Tenean -Tenella -Teneriffe -Tenety -Teneyck -Tenham -Tenilba -Tenley -Tennalinde -Tennant -Tennaqua -Tennement -Tennent -Tennessee -Tennessee Valley -Tenney -Tennis -Tennis Club -Tennis Court -Tennis Plaza -Tennison -Tenniswood -Tennnyson -Tennyson -Tenor -Tensing -Tenson -Tent -Tent Peg -Tentelow -Tenterden -Tenterfield -Tenterhill -Tenth -Tenzing -Teonia Woods -Tepee -Tepper -Teppers -Tequesta -Teracina -Teragram -Teralba -Terama -Terance Butler -Tercentennial -Teredo -Terence -Terence Webster -Teresa -Teresa Rose -Teresi -Teresita -Terfidia -Terhune -Teri -Teri Lynn -Teria -Terilyn -Terkuile -Terl -Terman -Termeil -Terminal -Termine -Terminous -Terminus -Tern -Ternay -Terne -Terners -Terneuzen -Terney -Terni -Ternwing -Terra -Terra Alta -Terra Bella -Terra California -Terra Cotta -Terra Firma -Terra Granada -Terra Grande -Terra Holland -Terra Linda -Terra Loma -Terra Mar -Terra Nova -Terra Park -Terra Ridge -Terra Rossa -Terra Valley -Terra Verde -Terra Villa -Terra Vista -Terra Vita -Terra Woods -Terrace -Terrace Beach -Terrace Grove -Terrace Hall -Terrace Lake -Terrace View -Terraceview -Terracewood -Terracina -Terraco -Terradillo -Terraine -Terramere -Terramore -Terrance -Terrance Ferry -Terrane -Terranova -Terrapin -Terrapin Hills -Terrazzo -Terrebonne -Terrehans -Terrel -Terrell -Terrence -Terrene -Terreno -Terreno de Flores -Terrett -Terrey Pine -Terri -Terrianne -Terrick -Terrie -Terrier -Terrigal -Terrill -Terrimay -Territorial -Terront -Terry -Terry Francois -Terrybrook -Terryellen -Terryfield -Terryll -Tersha -Terwick -Tesco Access -Tesco Entry -Tesimond -Tesla -Tesoro -Tess -Tessa -Tessier -Tessman -Tessman Farm -Tessmer -Testa -Testard -Tester -Teston -Testway -Testwood -Tetbury -Tetcott -Tether -Tethys -Tetley -Tetley Bye -Tetlow -Teton -Teton Meadow -Tetreault -Tetterton -Teversham -Teverton -Teviot -Tevis -Tevlin -Tewberry -Tewin -Tewinga -Tewkes -Tewkesbury -Tewksbury -Tewlawne -Tewson -Texa Tonka -Texas -Textile -Textilose -Tey -Teynham -Thacher -Thackara -Thacker -Thackeray -Thackery -Thackhams -Thaddeus -Thaddeus Mason -Thaden -Thadford -Thais -Thalia -Thame -Thame Park -Thames -Thames Haven -Thames River -Thames Valley Park -Thameshill -Thamesmead Bentham -Thamesmeade -Thamesmere -Thane -Thanet -Thankerton -Thanksgiving -Thanlet -Tharp -Thatch -Thatch Barn -Thatch Leach -Thatcher -Thatchers -Thatford -Thave -Thaxmead -Thaxted -Thaxter -Thaxton -Thayer -Thayer Heights -Thayer Memorial -Thayers Farm -The -The American -The Ark -The Carriage -The Center -The Charter -The Coach -The Comenarra -The Crescent -The Dalles -The Fairway Hall -The Gallery in Cork -The Gate Brickfield -The Glade Keston -The Glen -The Globe in Morning -The Grange -The Great -The Green Courtwood -The Green Elm -The Green Money -The Green Hunsworth -The Green Man Marsh -The Green Town -The Grove Broadhurst -The Grove Danson -The Hall on Virginia -The High -The Highway Court -The Holme -The Horsley -The Kings -The Kraal -The Ladder -The Lakes -The Lammas -The Lawns -The Ledges -The Lido Green Man -The Limes -The Long -The Luton -The Manor -The Mansion On O -The Mansion on O -The Market on the -The Martins -The Masters -The Meads -The Mount -The Mount Grove -The Mount Whitehorn -The Mountain -The Nook -The Northern -The Old -The Old Coach -The Old Northern -The Old Oaks -The Old School -The Outlook -The Pastures Service -The Pines -The Plain -The Plains -The Plaza -The Plough Kenton -The Point -The Ponds -The Queens -The River -The Rocks -The Service -The Siger -The Silk -The Sraight -The Sunny -The Tideway Maidstone -The Tower -The Trees -The Valley -The Village -The Villages -The Villages Fairway -The Warren -The Water -The White Hart High -The Whitethorn -The Woodman Joel -The Woods -Thea -Theaker -Theale -Theall -Theater -Theatre -Thebes -Theda -Theed -Theilen -Theim -Theis -Theisan -Thele -Thelma -Thelton -Thelwall -Thelwall New -Themes -Themews -Thenius -Theo -Theo Wirth -Theobald -Theobalds -Theobalds Park -Theobold -Theodor -Theodora -Theodore -Theodore Conrad -Theodore Fremd -Theodore Green -Theodore Parker -Theodore Roosevelt -Therapia -Theresa -Theresa Anne -Therese -Therfield -Thermal -Therriault -Therry -Thersea -Thesda -Thesen -Thesigar -Thessaly -Thestland -Theta -Thetford -Theydon -Theydon Park -Thibeault -Thibet -Thicket -Thicketford -Thickthorne -Thiel -Thiele -Thielen -Thier -Thieriot -Thierry -Thiers -Thiery -Thieves -Thilow -Thimble -Thimbleberry -Thimblehall -Thimsen -Thin Edge -Thingvalla -Third -Third Cross -Thirleby -Thirlemere -Thirlmere -Thirlmont -Thirlstone -Thirlwater -Thirsfield -Thirsk -Thirslet -Thirteenth -Thirtyninth -Thirtysecond -Thirza -Thissell -Thisselt -Thistle -Thistle Glen -Thistle Hill -Thistlebridge -Thistlecroft -Thistledale -Thistledene -Thistledown -Thistlethorn -Thistlewaite -Thistlewood -Thistley -Thistly -Thixton -Thoby -Thoits -Tholen -Thollen -Tholverton -Thom -Thoma -Thomas -Thomas Atkinson -Thomas Baines -Thomas Bata -Thomas Baxter -Thomas Bell -Thomas Branch -Thomas Brigade -Thomas Center -Thomas Clapp -Thomas Clarke -Thomas Clewes -Thomas Ctr -Thomas Dehaven -Thomas Dinwiddy -Thomas Doyle -Thomas Edison -Thomas Farm -Thomas Gangemi -Thomas Gantt -Thomas Grant -Thomas Hickey -Thomas Hill -Thomas Holt -Thomas J Thorsen -Thomas Jefferson -Thomas Lake -Thomas Lake Harris -Thomas Lake Pointe -Thomas Leighton -Thomas McGovern -Thomas Mitchell -Thomas Moore -Thomas More -Thomas Nevitt -Thomas Newton -Thomas Paine -Thomas Park -Thomas Patton -Thomas Point -Thomas Powell -Thomas Prospect -Thomas Rice -Thomas Rose -Thomas S. Boyland -Thomas View -Thomas Wlkinson -Thomas Young -Thomasin -Thomasina -Thomasson -Thomasson Crossing -Thomasville -Thomes -Thomlar -Thomond -Thompkins -Thompson -Thompson Access -Thompson Hill -Thompson Springs -Thompsons -Thoms -Thomsen -Thomson -Thone -Thong -Thong Pan -Thonrdyke -Thonus -Thopkins -Thor -Thora -Thorburn -Thorby -Thoreau -Thorens -Thores -Thoresby -Thoresway -Thoria -Thorington -Thorkhill -Thorley -Thorley Park -Thorman -Thorn -Thorn Apple -Thorn Bush -Thorn Creek -Thorn Hill -Thorn Royd -Thorn Tree -Thorn View -Thornage -Thornal -Thornall -Thornally -Thornapple -Thornapple Tree -Thornash -Thornaway -Thornbank -Thornbark -Thornbeck -Thornbera -Thornberry -Thornborough -Thornbriar -Thornbridge -Thornbrook -Thornburg -Thornburgh -Thornbury -Thornbush -Thornby -Thorncliff -Thorncliffe -Thorncombe -Thorncrest -Thorncroft -Thorndale -Thornden -Thorndene -Thorndike -Thorndon -Thorndon Park -Thorndon Ridge -Thorndown -Thorndyke -Thorne -Thorne Grove -Thornedike -Thornell -Thorner -Thornet Wood -Thornewood -Thorney -Thorney Bay -Thorney Hedge -Thorney Mill -Thorneycroft -Thornfield -Thornflat -Thorngate -Thorngrove -Thornham -Thornham Old -Thornhaugh -Thornhill -Thornhill Farm -Thornholme -Thornhurst -Thorning -Thornknoll -Thornlaw -Thornlea -Thornleigh -Thornley -Thornly -Thornmeadow -Thorns -Thornsbeach -Thornsberry -Thornsett -Thornsgreen -Thornton -Thornton Beach -Thornton Blue Island -Thorntons Farm -Thorntree -Thornvalley -Thornville -Thornwall -Thornwood -Thorny Lea -Thornycroft -Thornydyke -Thornyhurst -Thorobred -Thorold -Thoroughbred -Thoroughgood -Thorp -Thorparch -Thorpe -Thorpe Hall -Thorpe Hill -Thorpe Lea -Thorpebank -Thorpebrook -Thorpedale -Thorpedene -Thorpewood -Thorpland -Thors Bay -Thorsby -Thorsen -Thorton -Thorup -Thorverton -Thotland -Thousand Oaks -Thowler -Thoydon -Thrales End -Thrasher -Thrave -Thread Needle -Threadmill -Threadneadle -Threadneedle -Threaphurst -Thredbo -Three Acres -Three Bridges -Three Cherry Trees -Three Colt -Three Colts -Three Counties -Three Countries -Three Crowns -Three Doctors -Three Elm -Three Elms -Three Farms -Three Forks -Three Gables -Three Gates -Three Horse Shoes -Three Horseshoes -Three Houses -Three Hurdles -Three Kings -Three Lake Bellevue -Three Lakes -Three Mill -Three Oak -Three Oaks -Three Pears -Three Penny -Three Point -Three Points -Three Ponds -Three Ring -Three Rivers -Three Sisters -Three Springs -Threepence -Threestile -Threlfall -Threlkeld -Thremhall -Thresa -Thresher -Threshers -Threshfield -Thrift -Thrift Farm -Thrigby -Thrimley -Throcking -Throckmorten -Throckmorton -Throgmorton -Throgs Neck -Throne -Thronhill -Throop -Throsby -Throstle -Throstle Bank -Throughbred -Throwley -Thrumont -Thrun -Thrupp -Thrupps -Thrush -Thrush Ridge -Thrushwing -Thrushwood -Thuddungra -Thuman -Thunder -Thunder Bay -Thunder Chase -Thunder Hill -Thunder Mountain -Thunderbird -Thunderbolt -Thunderer -Thunderhead -Thundersley Church -Thundersley Park -Thune -Thurbans -Thurbarn -Thurber -Thurbon -Thurby -Thurcaston -Thurgood -Thurland -Thurlby -Thurleigh -Thurleston -Thurlestone -Thurlgona -Thurloe -Thurlow -Thurlow Park -Thurlston -Thurlstone -Thurlton -Thurlwood -Thurm -Thurman -Thurmont -Thurnau -Thurnby -Thurneyholme -Thurnham -Thurns -Thursby -Thursfield -Thursland -Thursley -Thurso -Thurstable -Thurstan -Thurstane -Thurston -Thurston Clough -Thurtle -Thurwachter -Thurwood -Thwaite -Thwing -Thyme -Thynne -Thyra -Thyssel -Tiada -Tiana -Tianderah -Tiara -Tiarri -Tib -Tibatts -Tibbett -Tibbetts -Tibbits -Tibbitt -Tibbs Hill -Tibbys -Tiber -Tiber River -Tiberias -Tiberius -Tiberon -Tibooburra -Tibouchina -Tiburon -Tice -Tice Creek -Tice Valley -Ticehurst -Tices -Ticetown -Tichborne -Tichenor -Tichenors -Ticino -Tick Neck -Tick Tock -Tickenhall -Tickenor -Ticker -Tickham -Tickner -Tickners -Ticknor -Tickseed -Tico -Ticonderoga -Tidal Basin -Tidd -Tiddymotts -Tide -Tides -Tideswell -Tidewater -Tideway -Tidewind -Tidey -Tidford -Tidmarch -Tidmarsh -Tidmore -Tidswell -Tidworth -Tidys -Tie Gulch -Tiebout -Tiedeman -Tiedemann -Tieman -Tiemann -Tienda -Tienne -Tiensch -Tiepigs -Tier -Tieri -Tiernan -Tiernans -Tierney -Tierneys Woods -Tierra -Tierra Alta -Tierra Buena -Tierra Creek -Tierra Gardens -Tierra Lago -Tierra Oaks -Tierra de Dios -Tierras -Tietjen -Tiffaney -Tiffany -Tiffen -Tiffin -Tiffin School London -Tiffiny -Tifft -Tiflis -Tifters -Tifton -Tig Fold -Tiger -Tiger Lily -Tigerwoods -Tigris -Tigua -Tihonet -Tiki -Tilba -Tilberg -Tilbrook -Tilburg -Tilburstow Hill -Tilbury -Tilche -Tildean -Tilden -Tilden Gill -Tilden Park -Tildenwood -Tildsley -Tile -Tile Farm -Tile House -Tile Kiln -Tile Line -Tile Lodge -Tilebarn -Tilehouse -Tilehurst -Tilesboro -Tileston -Tiley -Tileyard -Tilford -Tilghams -Tilghman -Tilia -Tilipi -Tilkey -Till -Till Rock -Tillamook -Tillard -Tillary -Tiller -Tillery -Tillets -Tilley -Tillgate -Tillhey -Tillie -Tillie Lewis -Tillingbourne -Tillingdown -Tillingham -Tillinghast -Tillman -Tilloch -Tillock -Tillotson -Tillou -Tillson -Tilman -Tilmore -Tilney -Tilrose -Tilsden -Tilsen -Tilsmore -Tilson -Tilston -Tilstone -Tilsworth -Tilt -Tilthams Corner -Tilting Rock -Tilton -Tilton Valley -Tiltwood -Timahoe -Timarand -Timari -Timarron Cove -Timaru -Timbalier -Timbarra -Timber -Timber Acres -Timber Branch -Timber Brook -Timber Cove -Timber Creek -Timber Crest -Timber Edge -Timber Forest -Timber Glen -Timber Hill -Timber Hollow -Timber Lake -Timber Ledge -Timber Line -Timber Lodge -Timber Loop -Timber Mill -Timber Oak -Timber Oaks -Timber Point -Timber Pond -Timber Ridge -Timber Rock -Timber Springs -Timber Trail -Timber Trails -Timber Trl -Timber View -Timber Woods -Timberbrook -Timbercove -Timbercreek -Timbercrest -Timbercrest Farm -Timbercroft -Timberdale -Timberdene -Timberedge -Timbergate -Timberglade -Timberhead -Timberhill -Timberidge -Timberlake -Timberlake Farm -Timberland -Timberlane -Timberlea -Timberlee -Timberline -Timberline Ridge -Timberlog -Timberly -Timberneck -Timberock -Timberpine -Timbers Edge -Timbers Pointe -Timbershore -Timberslip -Timbertop -Timbertrails -Timberview -Timberwharf -Timberwood -Timble -Timbrell -Timbrol -Time -Timeless Trail -Timer -Times -Timesweep -Timi -Timke -Timko -Timlott -Timm -Timmies -Timmons -Timms -Timmus -Timmy -Timon -Timor -Timoteo -Timothy -Timothy Branch -Timothy Field -Timperley -Timpson -Timrick -Timrod -Timson -Timsons -Tin Barn -Tin Barn Farm -Tin Can Ranch -Tin Mill -Tina -Tina Lake -Tinakill -Tinana -Tincombe -Tindal -Tindal Spring -Tindal Springs -Tindale -Tindall -Tindall Mews -Tindall Ranch -Tinder -Tindlay -Tindon End -Tine -Tinern -Tingara -Tingdale -Tingha -Tingley -Tingrith -Tingue -Tinker -Tinker Pot -Tinkers -Tinkers Branch -Tinkers Creek -Tinkers Wood -Tinkham -Tinley -Tinley Park -Tinner Hill -Tinnerella -Tinners Hill -Tinnocks -Tinshill -Tinshill Silk Mill -Tinsley -Tinsmith -Tinson -Tinta -Tintagel -Tintagle -Tintells -Tintern -Tintle -Tinto -Tinton -Tinworth -Tiny -Tioga -Tiogawoods -Tiona -Tionesta -Tiot -Tip Pond -Tip Top -Tipi -Tippecanoe -Tippendel -Tippendell -Tipper -Tipperary -Tippesasy -Tippett -Tippin -Tippings -Tipple Hill -Tippling Rock -Tipps Cross -Tippy Cart -Tiptoe -Tipton -Tiptop -Tiptree -Tiptree Hall -Tiptrees -Tire Swing -Tiree -Tiros -Tirrell -Tirso -Tirza -Tisane -Tisbury -Tischer -Tisdale -Tisserand -Titan -Titania -Titchfield -Titchwell -Tite -Tithe -Tithe Barn -Tithe Farm -Tithebarn -Tithebarns -Tithelands -Tithepit Shaw -Titian -Titmus -Titmuss -Titonka -Titsey -Titterington -Titus -Tived -Tiverton -Tivoli -Tiziano -To Upper Park -Toad -Toad Island -Toastmaster -Toat -Tobacco -Tobacco Leaf -Tobacco Ridge -Tobacco Trail -Tobago -Tobermory -Tobey -Tobey Garden -Tobi -Tobiano -Tobias -Tobie -Tobin -Tobin Clark -Tobruck -Tobruk -Toby -Tobys -Tobytown -Tocca -Tocci -Tochini -Tocia -Tockholes -Tocoloma -Tod -Tod William -Todd -Todd Farm -Todd Point -Todd Pond -Toddington -Toddsbury -Toddy -Todman -Todt Hill -Tofflemire -Toft -Tofte -Tofts -Toftshaw -Toftshaw New -Tog -Toggenburg -Togil -Togninali -Togo -Toils End -Toilsome Brook -Toiyabe -Tojon -Tokara -Tokay -Token Forest -Token Valley -Tokeneke -Tokeneke Beach -Tokeneke Ridge -Tokers Green -Tokola -Tokyngton -Tola Ranch -Tolak -Tolamac -Toland -Tolar -Tolas -Tolbert -Tolblin Hill -Tolcarne -Toldi -Toldish Hall -Toledo -Tolenas -Toler -Toley -Tolgate -Tolhurst -Tolkien -Tolkigate -Toll -Toll Bar -Toll Gate -Toll House -Toll House Gulch -Tolland -Tollcross -Tollemache -Toller -Tollers -Tollesbury -Tolleshunt Darcy -Tollet -Tollgate -Tollington -Tollison -Tolliver -Tollund -Tollview -Tollwood -Tolman -Tolmer -Tolmers -Tolpits -Tolpuddle -Tolsford -Tolson -Tolstoy -Tolt -Tolt Hill -Tolteca -Toluca -Tolverne -Tolworth -Tolworth Park -Tom -Tom Davis -Tom Day -Tom Fowler -Tom Fox -Tom Hunter -Tom Jenkinson -Tom Lee -Tom Paine -Tom Point Apts -Tom Shepley -Tom Thumb -Tom Tit -Tom Tits -Toma -Tomac -Tomah -Tomahawk -Tomales -Tomales Petaluma -Tomalyn Hill -Tomaselli -Tomasetti -Tomasezwski -Tomasini Canyon -Tomaso -Tomato Patch -Tomawadee -Tomblin Hill -Tomcat -Tomcroft -Tomes -Tomi Lea -Tomislav -Tomki -Tomkins -Tomkyns -Tomlee -Tomlin -Tomlins -Tomlinson -Tomlyn -Tommar -Tommaso -Tommuck -Tommy -Tommy Middleton -Tommydon -Tommye -Tomney -Tompion -Tompkins -Tompkins Point -Tompson -Tomrick -Toms -Toms Hill -Toms Lake -Toms Point -Toms Trail -Tomswood -Ton -Tonacliff -Tonalea -Tonawanda -Tonbridge -Tondan -Tone -Tonelee -Tonella -Toner -Toney -Tong -Tong Head -Tonga -Tonge -Tonge Fold -Tonge Moor -Tonge Old -Tonge Park -Tongham -Tongres -Tongswood -Tongue -Toni -Toni Marie -Tonia -Tonica -Tonino -Tonitto -Tonka -Tonka Bay -Tonka Downs -Tonka View -Tonkaha -Tonkawa -Tonkaway -Tonkawood -Tonkin -Tonking -Tonman -Tonme -Tonne -Tonnelle -Tono -Tonopah -Tonquil -Tonquin -Tonset -Tonsley -Tonsor -Tonstall -Tontaquon -Tonti -Tontine -Tontoquon -Tonwell Bypass -Tony -Tonya -Toocooya -Toohey -Took -Tooker -Toolan -Toolang -Toole -Tooley -Toomes -Toomevara -Toomey -Toongabbie -Toongarah -Toorack -Toorah -Toorak -Tooronga -Toot Hill -Tootal -Tooth -Toothill -Tooting Bec -Tooting High -Top -Top Dartford -Top Gallant -Top Hill -Top O Hill -Top O the Ridge -Top Ridge -Top Sergeant -Top of the Hill -Topaint -Topalian -Topanga -Topar -Topawa -Topaz -Topbranch -Topcastle -Topcliffe -Topeg -Topeka -Topfield -Topham -Tophet -Topic -Topinera -Topland -Toplands -Topley -Topliff -Toplocks Glade -Topnot -Topor -Topp -Toppan -Topper -Toppesfield -Topping -Topping Fold -Topping Hill -Toppy -Topsail -Topsfield -Topsham -Topton -Topview -Tor -Tor Bryan -Torac -Torah -Torbay -Torberry -Torbert -Torbush -Torch -Torchlight -Torchwood -Torcross -Toreador -Torello -Tori -Tories -Torington -Torino -Torkington -Torlai -Torland -Tormead -Tormey -Tormount -Tornaros -Torne Mountain -Tornell -Torney -Tornillo -Toro -Torokina -Toronita -Toronto -Torpie -Torquay -Torque -Torquil -Torr -Torr Top -Torrance -Torrano -Torre -Torre Ramel -Torrence -Torrens -Torrent -Torrenzia -Torreon -Torres -Torrey -Torrey Pine -Torrey Pines -Torrey Side -Torreya -Torreys -Torri -Torriano -Torrice -Torrid -Torridon -Torrington -Torro -Torrs -Torrvale -Torry -Torry Hill -Tortoise -Tortola -Tortorice -Tortuga -Torumba -Torver -Torwood -Torworth -Tory -Tory Fort -Tory Hill -Tory Hole -Tory Treasure -Tosca -Toscano -Tosch -Toste -Tot -Tot Hill -Totem -Totem Pole -Totford -Totfs -Tothill -Totman -Totnes -Totowa -Totten -Totten Pond -Tottenham -Tottenham Court -Totterdell -Totterdown -Totteridge -Totters -Tottington -Totton -Totts -Touch -Touchard -Touhy -Touissant -Toulay Creek -Toulmin -Toulon -Toulone -Toulouse -Toulson -Toupi -Touquet -Touraine -Touraine Parc -Touriga -Tourmaline -Tournament -Tournay -Tourne -Tourney -Touro -Tourraine -Tours -Toussie -Toussin -Toutley -Tovah -Tovar -Tove -Tovey -Tovil -Tovil Green -Tovito -Tow Path -Towanda -Towaway -Towcester -Towceter -Tower -Tower Bank -Tower Bridge -Tower Brook -Tower Center -Tower Court -Tower Farm -Tower Gardens -Tower Hamlets -Tower Heights -Tower Hill -Tower Manor -Tower Mill -Tower Oak -Tower Oaks -Tower Park -Tower Point -Tower Pond -Tower View -Tower Woods -Towerbridge -Towerfield -Towerhill -Toweridge -Towerridge -Towers -Towers Crescent -Towersey -Towerview -Towfield -Towhee -Towl Gate -Towle -Towler -Towlerton -Towlston -Town -Town Acres -Town Barn -Town Center -Town Centre -Town Club -Town Cocks -Town Crest -Town Dock -Town Dump -Town End -Town Farm -Town Field -Town Forest -Town Gate -Town Gate Church -Town Green -Town Hall -Town Hall Approach -Town Hill -Town House -Town Lake -Town Line -Town Littleworth -Town Lyne -Town Mead -Town Meeting -Town Neck -Town Path -Town Pier -Town Point -Town Square -Town Tree -Town Wells -Towncenter -Towncourt -Towncroft -Towndale -Towne -Towne Centre -Towne Commons -Towne Crest -Towne Fire -Townehome -Towner -Townes -Townfield -Towngate Chapel -Towngate Woodhall -Townhall -Townhouse -Townley -Townline -Townly -Townmead -Towns -Towns Edge -Townscliffe -Townsend -Townsend Farm -Townsend Harbor -Townsend Hill -Townsfield -Townshend -Township -Townside -Townsley -Townson -Townsquare -Townsvalley -Townsville -Townview -Townwood -Towpath -Towradgi -Towse -Towsen -Towsend -Towton -Towyn -Toxteth -Toy -Toyama -Toye -Toyer -Toynbee -Toyon -Toyon Fire -Toyonita -Toysome -Tozer -Tozier -Trabing -Trabjo -Trace -Tracel -Tracer -Tracey -Tracey Jean -Traceys Landing -Traci -Tracie -Track -Traction -Tracton -Tractor -Tracy -Tracy Ann -Tracy Lyn -Tracy Schar -Tracy Wood -Tracywood -Tradan -Trade -Trade Center -Trade West -Trade Wind -Trade Zone -Trader -Traders -Tradescant -Tradewind -Tradewinds -Trading -Trading Post -Tradition -Traditions -Traeger -Trafalgar -Trafalger -Traffic -Trafford -Trafford Bank -Trafford Park -Trafford Wharf -Traford -Trafton -Tragan -Trager -Tragia -Trahan -Trahern -Trahlee -Trail -Trail Edge -Trail Haven -Trail Ride -Trail Ridge -Trail Run -Trail View -Trail West -Trailing Ivy -Trailing Ridge -Traill -Trailridge -Trails -Trails Edge -Trails End -Trailsend -Trailside -Trailway -Trailwood -Train -Traina -Trainer -Training Field -Trainor -Trajan -Trajanowski -Tralee -Tralfalgar -Tram -Tramanto -Trammel -Trammell -Tramore -Tramway -Trancas -Tranfaglia -Tranford -Tranmere -Tranquil -Tranquility -Trans Am Plaza -Trans Old Bridge -Trans World -Transept -Transfesa -Transhire -Transit -Transmere -Transmitter Access -Transom -Transport -Transporter -Transue -Transvaal -Transverse -Transway -Transworld -Tranter -Tranton -Trap -Trapelo -Trapet -Trapfield -Traphagen -Trapham -Trapp -Trapper -Trappers -Trappers Fire -Trapps -Traprock -Traps -Trapstyle -Trask -Tratman -Traube -Traud -Traughber -Travao -Travelaire -Traveler -Travelers Run -Traveller -Travellers -Travelo -Travers -Traverse -Traverso -Travertine -Travic -Travilah -Travis -Travois -Trawalla -Trawden -Trawl -Trawler -Traxler -Trayer -Trayes -Traymore -Traynor -Treacle -Treacy -Treadaway -Treadcroft -Treadgold -Treadway -Treadwell -Treanor -Treasure -Treasure Island -Treat -Treatment Plant -Treatro -Treatt -Treatts -Treaty -Treaty Elm -Trebartha -Trebble -Trebeck -Trebellan -Trebing -Treble Cove -Trebleclef -Treblers -Trebol -Trebor -Trebovir -Treby -Treck -Tredcroft -Tredegar -Trederwen -Tredgold -Tredown -Tredway -Tredwell -Tree -Tree Estate Mead -Tree Farm -Tree Frog -Tree Hollow -Tree House -Tree Land -Tree Lawn -Tree Line -Tree Side -Tree Top -Tree Tops -Tree View -Treebark -Treebine -Treebrooke -Treebys -Treecot -Treecrest -Treedale -Treedust -Treeflower -Treehaven -Treehouse -Treelands -Treemans -Treen -Trees -Treeside -Treesmill -Treetop -Treetop Hill -Treetops -Treeview -Treewood -Trefgarne -Trefoil -Trefrey -Trefry -Trefton -Treg -Tregaron -Tregarvon -Tregaskis -Tregelles -Tregenna -Trego -Tregony -Tregothnan -Tregunter -Trehearn -Trehern -Trehurst -Treichel -Trelany -Trelawn -Trelawney -Trelawny -Trelleck -Trellis -Treloar -Tremain -Tremaine -Tremari -Tremayne -Trembath -Tremblay -Trembley -Trembling -Tremere -Tremezzo -Tremlett -Tremley Point -Tremont -Tremwood -Trenant -Trench -Trenchard -Trenches -Trenchold -Trend -Trenders -Trenery -Trenham -Trenholm -Trenholme -Trenic -Treno -Trenor -Trenouth -Trensch -Trent -Trentbridge -Trentdale -Trentham -Trentino -Trento -Trenton -Trentt -Treport -Treptow -Trequassin -Tres Palmas -Tres Pinos -Tres Ranchos -Tresalam -Tresch -Tresco -Trescoe -Trescony -Trescott -Tresham -Treshfield -Tresilian -Tresler -Treslow Glen -Tress -Tressel Pass -Tresser -Tressider -Trestle -Trestle Glen -Treswell -Tretbaugh -Trethaway -Treton Woods -Trettle -Trevale -Trevalley -Trevanion -Trevanna -Treve -Trevellyan -Trevelyan -Trevena -Trevenar -Treveris -Trevethan -Trevett -Trevigne -Treviit -Treville -Trevilyan -Trevino -Treviso -Trevithick -Trevone -Trevor -Trevor House -Trevor Toms -Trevore -Trevorton -Trevose -Trewarden -Trewenna -Trewilga -Trewint -Treworthy -Trewsbury -Trewyn -Trexler -Trey -Treyburn -Treywood -Tri -Triabunna -Triad -Triadelphia -Triadelphia Lake -Triadelphia Mill -Triangle -Triathlon -Tribonian -Triborough -Tribou -Tribunal -Tribune -Tributary -Tributary Point -Tribute -Tricia -Trickett -Tricorne -Tricross -Trident -Trieste -Trifiro -Trifone -Trig -Trigder -Trigg -Trigger -Triggs -Triglone -Trigon -Triland -Trilane -Trilby -Triller -Trilliam Run -Trillium -Trillium House -Trilliun -Trillo -Trillum -Trim -Trimble -Trimbleford -Trimfield -Trimingham -Trimley -Trimngham -Trimount -Trimountain -Trin -Trina -Trinculo -Trinder -Trindles -Tring -Trinidad -Trinity -Trinity Church -Trinity Gate -Trinity Hills -Trinity Park -Trinity River -Trinity University -Trinkling Creek -Trio -Triolo -Trip -Triphammer -Triple C Ranch -Triple Crown -Triple Feather -Triple Oak -Triple Oaks Farm -Triple Ridge -Tripleseven -Triplett -Tripod -Tripoli -Tripp -Trippier -Tripplet -Tripton -Trish -Trista -Tristan -Tristania -Tristian -Tristram -Triten -Triton -Triton Beach -Tritton -Triumph -Triumvera -Trivet -Trivetts -Trixie -Troast -Trocha -Trodds -Trofin -Troilus -Trojack -Trojan -Troll -Trolley Line -Trombas -Trombetta -Trombley -Trommel -Tromp -Troon -Troopers -Troost -Tropaz -Trophy -Tropical -Troscher -Troseth -Trosley -Trossach -Trossack -Trost -Trothy -Trotsworth -Trott -Trotta -Trotter -Trotter Farm N -Trotters -Trotters Glen -Trotters Ridge -Trottier -Trotting -Trotting Course -Trotting Horse -Trotting Park -Trotton -Trotts -Troubador -Trouble -Troudy -Troughback -Troughton -Troughwell -Troupe -Trousdale -Trout -Trout Brook -Trout Farm -Trout Gulch -Trout Park -Trout Pond -Trout Valley -Trout Wine -Troutbeck -Trouthall -Troutlilly -Troutman -Trouton -Troutville -Trouve -Trouville -Trovillion -Trowbridge -Trowes -Trowley Hill -Trowlock -Trowridge -Trowtree -Trowville -Troxel -Troy -Troy Creek -Troy Glen -Troy Hill -Troy Hills -Troy Marquette -Troy Meadow -Troydale -Troyer -Trubador -Trubody -Trubridge -Truchan -Truck -Truck House -Truckee -Truckee River -Trucklemans -Trude -Trudeau -Trudel -Trudy -True -Trueloves -Truelson -Trueman -Trueman Point -Truemans -Trues -Truesdale -Truett -Truffle -Truitt -Truitt Farm -Trull -Trull Brook -Trulock -Truman -Truman Manor -Trumble -Trumbull -Trumfield -Trump -Trumper -Trumpet -Trumpeter -Trumpeter Swan -Trumpets Hill -Trumpington -Trumps Green -Trumps Hill -Trumps Mill -Trundle -Trundleys -Trunfio -Trunk -Trunley Heath -Trunnel -Truro -Truro Parish -Truscott -Truslove -Truss Hill -Trusses -Trussley -Trust -Truxel -Truxton -Truxton Park -Truxtun -Tryall -Trycewell -Trym -Tryna -Tryner -Tryon -Trysting -Tschiffely Mill -Tschiffely Sq -Tschiffely Square -Tsirelas -Tsushima -Tuabilli -Tualco -Tualco Loop -Tuam -Tuart Park -Tubac -Tubbenden -Tubbs -Tubby -Tubeway -Tubwell -Tubwreck -Tucabia -Tucana -Tuck -Tuckahoe -Tuckaway -Tucker -Tucker Farm -Tuckerman -Tuckerman Heights -Tuckerman Hill -Tuckerton -Tucks -Tucks Point -Tuckwell -Tucson -Tudar -Tuddington -Tudeley -Tudor -Tudor Hall -Tudway -Tudwick -Tuella -Tuemmler -Tuenge -Tuer -Tuers -Tuesley -Tuey -Tuffley -Tuffy -Tufnail -Tuft -Tufter -Tufton -Tufts -Tugboat -Tugela -Tuggerah -Tuggies -Tuggle -Tuggles -Tugwell -Tukara -Tukwila -Tukwila International -Tula -Tulagi -Tulane -Tularcitos -Tulare -Tulare Hill -Tule -Tule Goose -Tule Lake -Tule Tree -Tulich -Tulip -Tulip Grove -Tulip Poplar -Tulip Tree -Tulip West -Tulipan -Tuliptree -Tulipwood -Tull -Tullamore -Tullamore Estates -Tullaroan -Tuller -Tullet -Tullett -Tulley -Tullibee -Tullimbar -Tulloch -Tulloh -Tulloona -Tulls -Tully -Tullymore -Tulocay -Tulong -Tulsa -Tulsemere -Tulworth -Tuma -Tumber -Tumble Weed -Tumblefield -Tumbler -Tumblers -Tumbleweed -Tumblewood -Tumbling Brook -Tumburra -Tumelty -Tumut -Tumwater -Tunbridge -Tunbridge Wells -Tunbury -Tuncoee -Tuncombe -Tuncurry -Tunfield -Tungarra -Tungston -Tunic -Tunis -Tunisia -Tunison -Tunitas -Tunitas Creek -Tunitas Ranch -Tunks -Tunlaw -Tunley -Tunmarsh -Tunnel -Tunnel Entrance -Tunnel Exit -Tunnell -Tunner -Tunnicliffe -Tuns -Tunshill -Tunstall -Tunstead -Tunworth -Tunzi -Tuohy -Tuolumne -Tupa -Tupelo -Tupia -Tupolo -Tupper -Tupperware -Tuppy -Tupwood -Turban -Turbary -Turberville -Turbine -Turbo -Turbott -Turbridge -Turell -Turella -Tures -Turf -Turf Hill -Turf Lea -Turf Park -Turf Pit -Turf Valley -Turfhill -Turfhouse -Turfland -Turfmeadow -Turfton -Turfway -Turgis -Turgoen -Turicum -Turimetta -Turin -Turing -Turino -Turk -Turk Hollow -Turk Murphy -Turkey -Turkey Cock -Turkey Farm -Turkey Foot -Turkey Hill -Turkey Point -Turkey Ridge -Turkey Run -Turkey Shore -Turkey Track -Turks -Turks Cap Lily -Turks Head -Turle -Turley -Turlington -Turlock -Turmaine -Turn -Turn Left -Turn Loop -Turn Moss -Turn Pike -Turnabout -Turnagain -Turnage -Turnberry -Turnbridge -Turnbrook -Turnbuckle -Turnbull -Turnbury -Turncrest -Turncroft -Turnden -Turner -Turner Bridge -Turner Farm -Turner Gulch -Turner Hill -Turner Joy -Turner Ridge -Turners -Turners Green -Turners Hill -Turners Lake -Turners Mill -Turnesa -Turneur -Turneville -Turney -Turnfield -Turnfurlong -Turnham -Turnhouse -Turning Leaf -Turning Mill -Turnip Hill -Turnlee -Turnley -Turnmill -Turnoak -Turnock -Turnpike -Turnpike Service -Turnpin -Turnstone -Turnsworth -Turnure -Turnwood -Turold -Turon -Tuross -Turp -Turpentine -Turpin -Turpington -Turquand -Turquoise -Turra -Turramurra -Turrell -Turrella -Turret -Turret Hall -Turrett -Turriell Bay -Turriell Point -Turrin -Turrini -Turstan -Turstin -Turtle -Turtle Cove -Turtle Creek -Turtle Dove -Turtle Lake -Turtle Pond -Turtle Rock -Turtle Valley -Turtlecreek -Turtledove -Turtlerock -Turton -Turuga -Turvan -Turves -Turvey -Turville -Turvin -Tuscala -Tuscaloosa -Tuscan -Tuscan View -Tuscano -Tuscany -Tuscarawas -Tuscarora -Tuscola -Tusculum -Tushmore -Tusk -Tuskar -Tuskeegee -Tusket River -Tusmore -Tussel -Tussell -Tussock Brook -Tustin -Tutbury -Tuthill -Tutt -Tuttle -Tutus -Tuve -Tuxedo -Tuxford -Tuxhorn -Twain -Twain Harte -Twaits -Tweed -Tweed Mouth -Tweedale -Tweeddale -Tweedle Hill -Tweedmouth -Tweedy -Twelfth -Twelth -Twelve Acres -Twelve Hills -Twelve Oak Hill -Twelve Oaks -Twelve Oaks Center -Twelve Oaks Ctr -Twelve Yards -Twentieth -Twentyeighth -Twentyninth -Twentysecond -Twentyseventh -Twentythird -Tweseldown -Twickenham -Twickenham Arragon -Twickenham King -Twickenham King -Twig -Twiggy -Twigworth -Twilight -Twilley -Twin -Twin Beach -Twin Bluff -Twin Branches -Twin Bridge -Twin Bridges -Twin Brook -Twin Brooks -Twin Buttes -Twin Cedar -Twin Circle -Twin Cities -Twin Creek -Twin Creeks -Twin Dolphin -Twin Elms -Twin Falls -Twin Fawn -Twin Field -Twin Forks -Twin Gardens -Twin Harbor -Twin Haven -Twin Hills -Twin Holly -Twin House Ranch -Twin Knolls -Twin Lake -Twin Lakes -Twin Lawns -Twin Light -Twin Maple -Twin Meadow -Twin Mill -Twin Oak -Twin Oaks -Twin Palms -Twin Park -Twin Peaks -Twin Pine -Twin Pines -Twin Pond -Twin Ponds -Twin Rail -Twin Ridge -Twin Rivers -Twin Silos -Twin Sisters -Twin Spring -Twin Springs -Twin Valley -Twin View -Twinboro -Twinbrook -Twinbrook Run -Twinches -Twine -Twineham -Twingleton -Twining -Twining Brook -Twinlake -Twinlakes -Twinn -Twinnies -Twinview -Twirl Hill -Twisden -Twiss -Twiss Green -Twisse -Twist -Twisted Oak -Twisting -Twisting Tree -Twitchell -Twitchells -Twitten -Twitton -Two Bar -Two Bays -Two Bridges -Two Brooks -Two Brothers -Two Dells -Two Farm -Two Harbors -Two Mile Ash -Two Mills -Two North LaSalle -Two Oaks -Two Paths -Two Penny -Two Rivers -Two Rock -Two Rod -Two Sisters -Two Trees -Two Waters -Twombly -Twsh -Twycross -Twydall -Twyford -Twyford Abbey -Twyford Bury -Twyla -Twyman -Twynam -Twynersh -Twynham -Twyzel -Ty -Tyacke -Tyagarah -Tyalgum -Tyalla -Tyas -Tybalt -Tybenham -Tyberry -Tyburn -Tycannah -Tychbourne -Tyco -Tydcombe -Tydden -Tydeman -Tydesley -Tydings -Tye Common -Tye Green -Tye River -Tyee -Tyers -Tyersal -Tygart -Tygert -Tygh -Tyke -Tykeswater -Tyland -Tyldesley -Tyldesley Old -Tylecroft -Tylee -Tylehurst -Tyler -Tyler Creek -Tyler Island -Tyler Island Bridge -Tyler Point -Tyler Prentice -Tylers -Tylers Green -Tylers Hill -Tylney -Tylneys -Tymm -Tynan -Tyndale -Tyndales -Tyndall -Tyndrum -Tyne -Tynebourne -Tynedale -Tyneham -Tynemouth -Tyner -Tyneside -Tynewick -Tyng -Tyngsboro -Tyngsborough -Tynis -Tynsdale -Tynwald -Tyosa -Typhoon -Tyr -Tyram -Tyrconnel -Tyre -Tyrell -Tyrella -Tyrellan -Tyrells -Tyrnbury -Tyrol -Tyroler -Tyron -Tyrone -Tyrrel -Tyrrell -Tyrwhitt -Tysea -Tysen -Tysens -Tyska -Tysoe -Tyson -Tysons -Tyspring -Tyssen -Tythe -Tytherington -Tytherington Park -Tytherton -Tyzack -Tzabaco Creek -Tzoumar -U Fernwood -UMBC -US Geological Survey -USS Amesbury -Uamvar -Uckfield -Udalia -Udall -Udayakavi -Udell -Udimore -Udine -Udney Park -Ueda -Ueland -Uffington -Ufford -Ufton -Uganda -Ugland -Ugo -Uhden -Uhland -Uhlman -Uhrig -Uhuru -Uki -Ukiah -Ukraine -Ulatis -Ulcombe -Uldale -Ulderic -Uline -Ulladulla -Ullard Hall -Ullathorne -Ulleswater -Ulley -Ullian -Ullman -Ulloa -Ullswater -Ulm -Ulmara -Ulmer -Ulmers Farm -Ulmurra -Ulolo -Ulonga -Ulster -Ultimate -Ultimo -Ulting -Ulting Hall -Ulundi -Ulundri -Ulva -Ulverscroft -Ulverston -Ulverstone -Ulwyn -Ulysses -Umbagog -Umbarger -Umbdenstock -Umberston -Umberto -Umberton -Umbria -Umfreville -Umland -Un -Un Pr -Una -Unadilla -Unami -Unara -Unarland -Uncas -Uncas Pond -Uncatena -Uncouth -Undajon -Under -Under Pin Hill -Undercliff -Undercliffe -Underclift -Underdale -Underdown -Underhill -Underhill Park -Underhills -Underlyn -Underne -Underriver House -Undershaw -Underwood -Undestad -Undine -Ungarra -Unicorn -Unicumes -Uniform -Union -Union Bridge -Union Camp -Union Church -Union City -Union Farm -Union Hall -Union Hill -Union Landing -Union Mill -Union Mine -Union Oil Company -Union Park -Union Point -Union Ridge -Union Springs -Union Ter -Union Terrace -Union Valley -Union Village -Uniondale -Unionport -Unionstone -Unique -United -Unity -Unity Park -Unity Pointe -UnivAlhambra -Universal -Universal Plaza -Universe -University -University Av Ser -University Park -University Plaza -University Service -University Svc -Unknown Soldier -Unnamed -Unqua -Unquity -Unstead -Unsworth -Unwick -Unwin -Unwins -Unwins Bridge -Uop North Service -Uop South Service -Upa -Upavon -Upcast -Upcerne -Upchat -Upcrest -Upcroft -Updale -Upenuf -Upfield -Upfold -Uphall -Upham -Upham Park -Uphill -Upland -Upland Court -Upland Farm -Upland Fields -Upland Gardens -Upland Woods -Uplands -Uplands Park -Uplees -Uplook -Upminster -Upney -Upnor -Upp -Upper -Upper Abbey -Upper Accommodation -Upper Afton -Upper Almora -Upper Ames -Upper Anstey -Upper Ardmore -Upper Ashlyns -Upper Attunga -Upper Austin Lodge -Upper Autumn -Upper Bank -Upper Basinghall -Upper Batley -Upper Batley Low -Upper Beach -Upper Belgrave -Upper Berkeley -Upper Bolney -Upper Bourne -Upper Brand Lake -Upper Brandon -Upper Bray -Upper Brentwood -Upper Briar -Upper Bridge -Upper Brighton -Upper Broadmoor -Upper Brockley -Upper Brook -Upper Buford -Upper Bush -Upper Canyon Three -Upper Carr -Upper Carriage -Upper Cavendish -Upper Chapel -Upper Charles -Upper Chestnut -Upper Chobham -Upper Chorlton -Upper Church -Upper Circle -Upper Clapton -Upper Cliff -Upper Clifford -Upper Clubhouse -Upper Colonial -Upper Conran -Upper Court -Upper Cove -Upper Crackney -Upper Croft -Upper Cross -Upper Crown -Upper Cub Run -Upper Culver -Upper Cyrus -Upper Dagnall -Upper Dearborn Park -Upper Denmark -Upper Depew -Upper Dock -Upper Dogwood -Upper Dunstan -Upper East -Upper Edgeborough -Upper Ellen -Upper Elmers End -Upper Elms -Upper Express -Upper Fairfax -Upper Fairfield -Upper Fans -Upper Fant -Upper Farm -Upper Fenn -Upper Ferry -Upper Field -Upper Fig -Upper Fort -Upper Fremont -Upper Gates -Upper George -Upper Gilber -Upper Gladstone -Upper Gordon -Upper Gore -Upper Green -Upper Greenwoods -Upper Greycliffe -Upper Grosvenor -Upper Grotto -Upper Grove -Upper Guildown -Upper Haig -Upper Hale -Upper Halliford -Upper Ham -Upper Hammer -Upper Happy Valley -Upper Haysden -Upper Heath -Upper Helena -Upper Hibernia -Upper High -Upper High Crest -Upper Highland -Upper Hill -Upper Holly Hill -Upper Holt -Upper House -Upper Joclyn -Upper John -Upper Kent -Upper Kirby -Upper Lake -Upper Lakeview -Upper Lattimore -Upper Lea -Upper Lees -Upper Lloyd -Upper Lock -Upper Lodge -Upper Luton -Upper Magazine -Upper Main -Upper Manor -Upper Marlborough -Upper Marsh -Upper Meadow -Upper Medlock -Upper Memory -Upper Minimbah -Upper Monsall -Upper Montagu -Upper Monterey -Upper Moss -Upper Mount -Upper Mount Glen Lake -Upper Mountain -Upper Mulgrave -Upper Neatham -Upper North -Upper North Row -Upper Oak -Upper Oak Flat -Upper Old Park -Upper Overlook -Upper Paddock -Upper Park -Upper Peters Dam -Upper Pindell -Upper Pine -Upper Pitt -Upper Pond -Upper Prospect -Upper Queen -Upper Rainham -Upper Range -Upper Redlands -Upper Redwood -Upper Richmond -Upper Ridge -Upper Ridgeway -Upper Ritie -Upper River -Upper Rodmersham -Upper Roman -Upper Saddle River -Upper Salem Pond -Upper San Antonio -Upper San Vicente -Upper Scenic -Upper School -Upper Service -Upper Sherborne -Upper Sheridan -Upper Shirley -Upper Soldridge -Upper Spit -Upper Spring -Upper Sudden Pond -Upper Sunbury -Upper Tachbrook -Upper Teddington -Upper Terrace -Upper Thames -Upper Tilehouse -Upper Tin Can Ranch -Upper Tooting -Upper Town -Upper Toyon -Upper Trail -Upper Trinity -Upper Union -Upper Vann -Upper Vernon -Upper Verran -Upper Vicarage -Upper Village -Upper Walthamstow -Upper Warren -Upper Washington -Upper West -Upper Weybourne -Upper Wickham -Upper Wield -Upper Wilton -Upper Wimpole -Upper Wortley -Upper Zayante -Upper grove -Upperfield -Upperhill -Uppermill -Uppermont -Upperridge -Upperton -Uppingham -Upplanda -Ups -Upsala -Upsdell -Upshaw -Upshire -Upshot -Upshur -Upson -Upstall -Upton -Upton Court -Upton Hills -Upton Park -Upton Park Arragon -Upton Pyne -Upward -Upwell -Upwey -Upwood -Upwoods -Upwye -Ural -Uralba -Uralla -Urana -Uranium -Uranus -Urban -Urban Club -Urbana -Urbane -Urbanik -Urbanna -Urbano -Urbanowitz -Urby -Urchin -Uren -Uriahs -Uridge -Uridias Ranch -Urlwin -Urma -Urmond -Urmson -Urmston -Urn -Urna -Urquhart -Urrico -Ursa -Ursiline -Ursina -Ursla -Ursula -Ursuline -Urswick -Urunga -Urzi -Usange -Useadoor -Usg -Usher -Usk -Usona -Uss Arizona -Uss Missouri -Uss North Carolina -Uss Tennessee -Utah -Ute -Uteg -Uther -Utica -Utilities -Utility -Utley -Utopia -Utter -Utterby -Uttley -Uttons -Utuardo -Utz -Utzon -Uunet -Uvas -Uvas Park -Uvedale -Uxbridge -Uxbridge Belmont -Uxmore -Uyeda -V Fernwood -VFW -Vaagen -Vaal -Vaca -Vaca Creek -Vaca Valley -Vacation -Vacation Beach -Vacca -Vaccaro -Vachel -Vachel Lindsay -Vaden -Vadnais -Vadnais Center -Vadnais Lake -Vagabond -Vai -Vail -Vail Ridge -Vaile -Vailetti -Vaillancourt -Vaillant -Vaille -Vaillencourt -Vailwood -Val -Val Aosta -Val Gardena -Val Lee -Val McKilmer -Val Page -Val Park -Val Varaita -Val Verde -Val Vista -Valaire -Valais -Valance -Valarie -Valbusa -Valcartier -Valcour -Valda -Valdale -Valdalia -Valdeflores -Valdemar -Valdene -Valders -Valdes -Valdez -Valdora -Valdosta -Vale -Vale Crest -Vale Farm -Vale House -Vale Park -Vale Spring -Vale Top -Vale View -Vale Wood -Valebridge -Valebrook -Valediction -Valemont -Valence -Valence Wood -Valencia -Valencia School -Valenciennes -Valensin -Valensin Ranch -Valente -Valentia -Valentina -Valentine -Valentine Creek -Valentine Crest -Valentines -Valentino -Valento -Valenza -Valeowen -Valera -Valerga -Valeria -Valerian -Valeriana -Valerie -Valero -Valery -Vales -Valeswood -Valetta -Valette -Valeview -Valevue -Valewood -Valhalla -Valiant -Valimar -Valinda -Valis -Valita -Valko -Valkyrie -Valla -Valla Vista -Vallacher -Vallance -Vallar -Vallaro -Vallco -Valle -Valle Ducale -Valle Pacifico -Valle Verde -Valle Vista -Vallecito -Vallecitos -Vallejo -Vallemar -Vallentin -Vallerand -Vallery -Valles -Valleton -Valletts -Valley -Valley Beach -Valley Bend -Valley Brook -Valley Center -Valley Circle -Valley Country -Valley Creek -Valley Cresent Rodger -Valley Cresent Valley -Valley Crest -Valley Curve -Valley End -Valley Fair -Valley Ford -Valley Ford Estero -Valley Forge -Valley Glen -Valley Green -Valley Greene -Valley Greens -Valley Heights -Valley Hi -Valley High -Valley Hill -Valley House -Valley Lake -Valley Lakes -Valley Lark -Valley Lo -Valley New -Valley Oak -Valley Oaks -Valley Park -Valley Pines -Valley Point -Valley Quail -Valley Ridge -Valley Run -Valley Spring -Valley Square -Valley Trails -Valley Tree -Valley Vale -Valley View -Valley View Tram -Valley Vista -Valley West -Valley Wood -Valley of the Moon -Valleybrook -Valleycrest -Valleyfield -Valleyhill -Valleyoak -Valleyscent -Valleyside -Valleystone -Valleystream -Valleytrail -Valleyview -Valleyvista -Valleywood -Valliere -Valliers Wood -Valline -Vallingbe -Valliria -Valma -Valmar -Valmay -Valmere -Valmont -Valmonte -Valmor -Valmora -Valmy -Valnay -Valognes -Valomen -Valon -Valonia -Valor -Valorie -Valory -Valota -Valparaiso -Valpey Park -Valpico -Valpy -Valroy -Vals -Valverde -Valyana -Valyn -Vambery -Van -Van Acker -Van Allen -Van Alstine -Van Arsdale -Van Auken -Van Beal -Van Beuren -Van Binsberger -Van Blarcom -Van Blarcoms -Van Blitz -Van Brackle -Van Brady -Van Breeman -Van Brunt -Van Buren -Van Buskirk -Van Bussum -Van Cedar -Van Cleaf -Van Cleave -Van Cleef -Van Cleep -Van Cleve -Van Cliff -Van Cortlandt -Van Cortlandt Park -Van Cott -Van Dam -Van Damin -Van Damme -Van De Graff -Van Delft -Van Der Meulen -Van Dervin -Van Dieman -Van Dine -Van Doren -Van Dorn -Van Duren -Van Dusen -Van Duyne -Van Duzer -Van Dyck -Van Dyke -Van Emburgh -Van Emmon -Van Etten -Van Exel -Van Fleet -Van Gemert -Van Gogh -Van Greenby -Van Guilder -Van Halen -Van Hee -Van Hoesen -Van Horn -Van Horne -Van Hounten -Van Houten -Van Hoven -Van Keuran -Van Keuren -Van Kirk -Van Kleeck -Van Liew -Van Loan -Van Loon -Van Maren -Van Meter -Van Moore -Van Mourik -Van Mulen -Van Name -Van Ness -Van Nest -Van Norden -Van Nostrand -Van Olst -Van Orden -Van Over -Van Owen -Van Parker -Van Patten -Van Pelt -Van Reipen -Van Rensselaer -Van Reypen -Van Riper -Van Ripper -Van Roo -Van Roosen -Van Ruiten -Van Sansul -Van Saun -Van Schaik -Van Schoick -Van Sciver -Van Sickle -Van Sicklen -Van Siclen -Van Sinderen -Van Sloun -Van Slyke -Van Syckel -Van Tassel -Van Thompson -Van Tines -Van Tuyl -Van Ufford -Van Valkenburgh -Van Vechten -Van Vleck -Van Vooren -Van Vorst -Van Wagenen -Van Wagner -Van Wagoner -Van Wart -Van White -Van White Memorial -Van Wickle -Van Wicklen -Van Winkle -Van Wormer -Van Wyck -Van Wyk -Van Zandt -Van de Mark -Vana -Vanad -Vanasse -Vanbrugh -Vanburen -Vance -Vancott -Vancouver -Vancroft -Vanda -Vandalia -Vandall -Vandam -Vandan -Vandegrift -Vandelft -Vandelinda -Vandell -Vanden -Vandenberg -Vander Wall -Vanderbeck -Vanderbelt -Vanderbergh -Vanderbie -Vanderbilt -Vanderbilt Motor -Vanderbuilt -Vanderburg -Vanderburgh -Vandercastel -Vanderelinde -Vanderhoof -Vanderhurst -Vanderlyn -Vanderpool -Vanderslice -Vanderveer -Vanderventer -Vandervoot -Vandervork -Vanderwalker -Vanderwater -Vandette -Vandever -Vandewater -Vandien -Vandine -Vandon -Vandor -Vandustrial -Vandy -Vandyke -Vane -Vanech -Vaneck -Vanessa -Vanethel -Vanetta -Vanette -Vange Hill -Vange Park -Vangeli -Vanguard -Vanhorn -Vanilla Grass -Vanity -Vanity Fair -Vankalker -Vankleeck -Vann -Vann Farm -Vann Lake -Vanna -Vannan -Vanness -Vanni -Vannier -Vannoy -Vannucci -Vanoni -Vanore -Vanous -Vanpatten -Vanport -Vans -Vanschoick -Vansittart -Vant -Vant Sant -Vantage -Vantage Hill -Vantage Point -Vantomme -Vantorts -Vantroba -Vanwall -Vanzell -Vapery -Vaquero -Vaqueros -Vara -Varady -Varcoe -Varda -Varda Landing -Varden -Vardens -Vardon -Vardys -Varela -Varennes -Varet -Varey -Varga -Vargas -Varian -Varick -Varick Hill -Varidel -Vark -Varkens Hook -Varley -Varna -Varndell -Varner -Varnes -Varney -Varni -Varnum -Varsity -Vasa -Vasco -Vasco Da Gama -Vasconcellos -Vashi -Vashon -Vasona -Vasona Oaks -Vasona Park -Vasques -Vasquez -Vassal -Vassall -Vassar -Vasser -Vast Rose -Vastern -Vatem -Vatsa -Vattman -Vauban -Vaucluse -Vaudan -Vaudrey -Vaugham -Vaughan -Vaughn -Vaughn Hill -Vaugn -Vault -Vaulx -Vaupell -Vause -Vautrinot -Vaux -Vaux Hall -Vauxhall -Vauxhall Bridge -Vauze -Vavasour -Veale -Veasy -Veazy -Vecchio -Vecino -Vectis -Ved Mandir -Veda -Vedder -Vee -Veeder -Veering -Veery -Vega -Vega del Rio -Vegas -Vehicle -Veirs -Veirs Mill -Veitch -Velado -Velander -Velarde -Velasco -Velasquez -Veldran -Veles -Velilla -Velizy -Vellex -Vellum -Vellutini -Velma -Velmead -Velmere -Velo -Velock -Veltman -Veltri -Velvet -Velvetlake -Velvetleaf -Vena -Venable -Venables -Venada -Venadito -Venado -Venango -Venard -Vendale -Venditto -Vendola -Vendome -Vendora -Venedia -Veneman -Veness -Venetia -Venetian -Venetion -Veneto -Venezia -Venice -Venison -Venmore -Venn -Venna -Venndale -Vennecia -Venner -Vennie -Venns -Vennum -Veno -Venson -Ventana -Venter -Ventnor -Venton -Ventry -Ventura -Ventura Club -Venture -Venturella -Venue -Venus -Venuti -Venwood -Veprek -Ver -Vera -Vera Cruz -Vera Schultz -Veracruz -Veralee -Veranda -Verano -Verba -Verbalee -Verbena -Verbend -Verbickas -Vercelli -Verchild -Verda -Verdala -Verdant -Verdayne -Verde -Verde Mesa -Verde Valle -Verde Vista -Verdemar -Verderers -Verderosa -Verdi -Verdi Vista -Verdict -Verdin -Verdis -Verdite -Verdmont -Verdon -Verdosa -Verdoso -Verducci -Verdugo -Verdun -Verdunn -Verdure -Vere -Verein -Vereker -Verena -Verey -Vergie -Vergil -Vergus -Verhaeghe -Veridan -Verigan -Verissimo -Veritas -Verity -Verjane -Verjuniel -Verkade -Verla -Verletta -Verley -Verleye -Verlie -Vermark -Vermeer -Vermette -Vermillion -Vermilye -Vermilyea -Vermont -Vermulen -Vern -Verna -Verna Hall -Verna Mae -Vernaccia -Vernal -Vernalis -Vernam -Vernazza -Verndale -Verne -Vernel -Verner -Verney -Vernham -Vernice -Vernick -Vernier -Vernon -Vernon Berry -Vernon Hills -Vernon Ridge -Vernon Square -Vernon Valley -Vernon View -Vernon Young -Vernons -Vernoy Hills -Vero -Veroan -Veron -Verona -Verona Ridge -Veronda -Veronica -Verplank -Verplast -Verrada -Verran -Verrazano -Verrell -Verrill -Verry -Versailes -Versailles -Vershire -Vert -Verterans -Vertin -Verulam -Vervain -Vervais -Vervalen -Verveille -Vervoort -Verwood -Vescey -Vesey -Vespa -Vespan -Vesper -Vespucci -Vessey -Vessing -Vest -Vesta -Vestal -Vestals Gap -Vestrella -Vestris -Vestry -Vesuvius -Vetel -Veteran -Veterans -Veterans Foreign War -Veterans Memorial -Veterans Park -Veterinary Medicine -Vetrone -Vets -Vets Mem -Vetta -Vevers -Vevey -Vezina -Via -Via Arline -Via Arriba -Via Baja -Via Cabrera -Via Camino -Via Cima -Via Cordova -Via Dora -Via Escuela -Via Grande -Via Guiseppe -Via Horqueta -Via Madero -Via Madronas -Via Monte -Via Nicolo -Via Palagio -Via Palazzo -Via Paviso -Via Pinada -Via Primavera -Via Puerta -Via Ranchero -Via Real -Via Roma -Via Sereno -Via Tanques -Via de Palmas -Via de Robles -Via del Cerrito -Via del Robles -Via del Sol -Via el Dorado -Via la Luna -Viables -Viader -Viaduct -Vialoux -Vian -Viburnum -Vic Rugh -Vicanna -Vicar -Vicar Park -Vicarage -Vicars -Vicars Hall -Vicci -Vicente -Vicenze -Viceroy -Vichy -Vicino -Vick -Vickerman -Vickers -Vickery -Vickery Park -Vickey -Vicki -Vicki Lynn -Vickrey -Vicksburg -Vicky -Vicliffe -Vicorage -Victor -Victor Beamish -Victor Hugo -Victor Mann -Victor Park -Victoria -Victoria Bridge -Victoria Dock -Victoria Farms -Victoria Grange -Victoria Greens -Victoria Heights -Victoria Hill -Victoria Lakes -Victoria Park -Victoria Service -Victoria Smith -Victorian -Victorian Park -Victorian Woods -Victorine -Victorious Song -Victory -Victory Farms -Victory Memorial -Victory Park -Victrola -Vida -Vidal -Videll -Viden -Videtta -Vidgeon -Vidilini -Vidovich -Vieau -Viebrock -Vieira -Viele -Vienna -Viento -Viera -Vierling -Vierra -Vierra Canyon -Vierra Knolls -Viers -Vietor -View -View Acre -View Haven -View Park -View Point -View Pointe -View Ridge -View South -Viewcrest -Viewfield -Viewhill -Viewing -Viewland -Viewlands -Viewmont -Viewoak -Viewpoint -Viewpointe -Viewridge -Viewside -Viga -Vigalant -Viggory -Vignes -Vignoles -Vigo -Viking -Viking Gardens -Vila -Vila Do Porto -Vilas -Vildmark -Viles -Villa -Villa Carol -Villa Chantecleer -Villa Circle -Villa Glen -Villa Gomez -Villa Manucha -Villa Maria -Villa Nova -Villa Nueva -Villa Oak -Villa Oaks -Villa Park -Villa Ridge -Villa Robleda -Villa Roma -Villa Serena -Villa Verde -Villa Vista -Villa de Anza -Villa del Sol -Villaburne -Villacourt -Villadest -Village -Village Center -Village Circle -Village Creek -Village Crest -Village Crossing -Village East -Village Elm -Village Fountain -Village Gate -Village Green -Village Grove -Village Hall -Village High -Village Hill -Village Lake -Village Line -Village Lower -Village Mart -Village Mews -Village Oak -Village Oaks -Village Park -Village Quarter -Village Run -Village Shops -Village Side -Village Spring -Village Square -Village Tree -Village View -Village Wood -Village Woods -Villagefield -Villagetree -Villamay -Villanova -Villard -Villareal -Villaridge -Villarita -Villars -Villas -Villaume -Villaverde -Villaview -Villawood -Villdale -Villeneuve -Villers -Villier -Villiers -Villus -Vilmar -Vilnius -Vimiera -Vimy -Vimy Ridge -Vin Rose -Vina -Vina Rose -Vinal -Vinald -Vinan -Vinca -Vincam -Vince -Vincennes -Vincent -Vincente -Vincentia -Vincents -Vinci -Vindara -Vindel -Vine -Vine Brook -Vine Cottage -Vine Court -Vine Grove -Vine Haven -Vine Hill -Vine Hill School -Vine Rock -Vinebrook -Vinecrest -Vinedale -Vinedo -Vinegar -Vinegar Hill -Vinehill -Vineland -Vinemaple -Vineridge -Vinery -Vines -Vinesse -Vinewood -Viney -Vineyard -Vineyard Estates -Vineyard Haven -Vineyard Hill -Vineyard Park -Vineyard View -Vineyards -Vining -Vining Point -Vinings -Vinita -Vinlake -Vinnells -Vinnin -Vinson -Vint Hill -Vintage -Vintage Crest -Vintage Farm -Vintage Glen -Vintage Hill -Vintage Knoll -Vintage Oak -Vintage Oaks -Vintage Park -Vintage Valley -Vinters -Vinton -Vinton Pond -Vinyard -Vinyards -Viola -Violante -Violet -Violet Tail -Violete -Violets -Violetta -Violettes Lock -Violetti -Viona -Vipers -Vir Mar -Virdelle -Virden -Vireo -Viret -Virgate -Virgil -Virgilia -Virgin Rock -Virginia -Virginia Center -Virginia Chase -Virginia Denise -Virginia Farm -Virginia Hill -Virginia Hills -Virginia Infantry -Virginia Mallory -Virginia Manor -Virginia Meadows -Virginia Pine -Virginia Randolph -Virginia Ridge -Virginia Willow -Virginius -Virgo -Virgo Spur -Virlona -Virmar -Virtue -Virtue Arcade -Viscaino -Visco -Viscoloid -Viscount -Vision -Visitacion -Visitation -Vismanco -Vispy -Vista -Vista Access -Vista Bella -Vista Brook -Vista Brooke -Vista Clara -Vista Creek -Vista Forest -Vista Gardens -Vista Grand -Vista Grande -Vista Heights -Vista Hill -Vista Knoll -Vista Linda -Vista Mar -Vista Mobile -Vista Montaña -Vista Monte -Vista Nuevo -Vista Oak -Vista Oaks -Vista Point -Vista Pointe -Vista Ridge -Vista Robles -Vista Sierra -Vista Tiburon -Vista Verde -Vista Via -Vista View -Vista del Lago -Vista del Mar -Vista del Monte -Vista del Pajaro -Vista del Plaza -Vista del Rio -Vistaglen -Vistamont -Vistapark -Vistas -Vistaview -Viste -Vistosa -Vistula -Vita -Vital -Vitale -Viva -Vivaldi -Vivan -Vivian -Vivian Adams -Vivien -Vivienda -Vivienne -Viviney -Vivyen -Vixen -Vizcano -Vlaardingen -Vlatko -Vliet -Vm Smith -Voce -Voegeli -Voelker -Vogan -Vogay -Vogel -Vogelsang -Vogt -Vogue -Voice -Voit -Voke -Vokoun -Volans -Volante -Volbrecht -Volendam -Voleyn -Volger -Volid -Volintine Farm -Volk -Volker -Volkers -Volkert -Volkerts -Volkmar -Volkswagon -Vollbecht -Voller -Volley -Vollmer -Vollmerhausen -Volmer -Volney -Volpi -Volt -Volta -Voltaire -Volti -Voltz -Volunteer -Volunteer Park -Volusia -Volver -Volvo -Volwycke -Volz -Vomac -Vomel -Von Esch -Von Brandt -Von Braun -Von Eigen -Von Elm -Von Falconer -Von Glahn -Von Hillern -Von Hoff -Von Huenfeld -Von Karman -Von Sosten -Von Vetchen -Vonda -Vonder -Vonderworth -Vondran -Vondrash -Vonhoff -Vonn -Voorhees -Voorhies -Voorhis -Vorden -Vore -Vorley -Vorlich -Vos -Vosburg -Vose -Vose Hill -Voses -Voshage -Voss -Voss Park -Vought -Voula -Vouvray -Vowels -Vowler -Voyager -Voyageur -Vredenburgh -Vreeland -Vroom -Vrtis -Vue Finchley -Vue de Mar -Vulcan -Vulgilbar -Vultee -Vulture Vista -Vuono -Vyne -Vyner -Vyse -Vytina -W Abbey -W Abingdon -W Access -W Acker -W Acme -W Acorn -W Adams -W Adelaide -W Adobe -W Agatite -W Ainslie -W Airport -W Albany -W Albert -W Albion -W Alden -W Alder -W Aldine -W Alexander -W Alexandria -W Algonquin -W Alhambra -W Alleghany -W Allen -W Allendale -W Allison -W Almond -W Almondbury -W Alpine -W Altgeld -W Amelia -W Amherst -W Amsterdam -W Amy -W Anchor -W Ancona -W Anderson -W Andover -W Andrew -W Ann -W Annandale -W Anne K -W Apache -W Apple Orchard -W Apple Tree -W Appleby -W Appletree -W Aptakisic -W Arbor -W Arch -W Archer -W Arden -W Ardmore -W Argyle -W Arlington -W Arlyd -W Armitage -W Armstrong -W Army Trail -W Arquilla -W Arran -W Arrowhead -W Arsenal -W Arthington -W Arundel -W Ash -W Ashland -W Aspen -W Attrill -W Atwater -W Auburn -W Augusta -W Austin -W Autullo -W Autumn -W Avon -W Ayres -W Bailey -W Baker -W Bald Eagle -W Baldwin -W Balmoral -W Baltimore -W Bancroft -W Banfil -W Barbara -W Barclay -W Barr -W Barry -W Bartlett -W Bauer -W Bay -W Bay Front -W Bay Ninth -W Bay Shore -W Bay View -W Bayard -W Bayberry -W Bayer -W Bayview -W Beach -W Beam -W Beaver Lake -W Beech -W Beech Tree -W Beechcroft -W Beecher -W Belden -W Bell -W Belle -W Belle Plaine -W Belleau -W Bellefonte -W Belleterre -W Belleview -W Belmont -W Belvidere -W Benck -W Bend -W Benfield -W Bennett -W Benson -W Benton -W Berenice -W Berkeley -W Berkley -W Berkshire -W Bernhard -W Berteau -W Berwick -W Berwyn -W Betty -W Bexhill -W Big Horn -W Big Sand -W Bigelow -W Birch -W Birchdale -W Birchwood -W Bittersweet -W Black -W Black Dog -W Blackburn -W Blackhawk -W Blackthorn -W Blair -W Blancke -W Bliss -W Blodgett -W Bloners -W Bloomingdale -W Bluff -W Boeger -W Bogey -W Bond Mill -W Bonner -W Bonnie Brae -W Booker -W Boschome -W Bosi -W Boston Post -W Boundary -W Bourne -W Bowen -W Bowler -W Boyington -W Braddock -W Bradford -W Bradley -W Bradwell -W Braemar -W Braeside -W Brampton -W Branch -W Brantwood -W Brayton -W Breda -W Breen -W Brentwood -W Brewster -W Briarcliff -W Briarwood -W Bridge -W Brighton -W Brightway -W Brittany -W Broad -W Broadland -W Broadview -W Broadway -W Brockman -W Brompton -W Brook -W Brookfield -W Brooks -W Brookside -W Brookwood -W Bross -W Brother -W Brown -W Bruce -W Bruns -W Buell -W Buena -W Buffalo Grove -W Buford -W Bull Ridge -W Burke -W Burlington -W Burnett -W Burning Tree -W Burr Oak -W Burville -W Bush Lake -W Business Center -W Busse -W Butterfield -W Butternut -W Byrne -W Byron -W Cabot -W Cabrini -W Calendar -W California -W Calumet Sag -W Cambridge -W Camden -W Cameron -W Camp McDonald -W Campbell Park -W Campus -W Canterbury -W Carefree -W Carl -W Carmen -W Carol -W Carolyn -W Carondelet -W Carriage -W Carroll -W Carter -W Carvel -W Carver -W Cascade -W Case -W Castle Island -W Catalpa -W Catawba -W Catherine -W Cathy -W Caton -W Cattail -W Cedar -W Cedar Lake -W Cedarview -W Centennial -W Center -W Central -W Centurion -W Century -W Chalk Point -W Chamberlin -W Champion -W Chanay -W Chancellor -W Channon -W Chapin -W Chapman -W Charles -W Charleston -W Charlotte -W Charmaine -W Chartwell -W Chase -W Chatfield -W Chatham -W Checker -W Cherry -W Cherry Blossom -W Cheryl -W Chesapeake Beach -W Chester -W Chestnut -W Chestnut Ridge -W Chicago -W Chilcombe -W Chipwood -W Choctaw -W Christiana -W Christopher -W Church -W Churchill -W Circle -W Circuit -W Clara -W Clarence -W Clarendon -W Clark -W Clearwater -W Cleven -W Cliff -W Cliffside -W Clifton -W Clinton -W Clover -W Coach -W Coady -W Cole -W Coleman -W Colerain -W Colfax -W College -W Colonial -W Colorado -W Columbia -W Columbus -W Colville -W Comfort -W Commercial -W Commonwealth -W Como -W Concord -W Congress -W Connacht -W Connell -W Conrad -W Constance -W Cook -W Cope -W Cornelia -W Cornell -W Cortez -W Cortland -W Cossitt -W Cotswald -W Cottage -W Country -W Country Club -W Country Estates -W Country Valley -W Countryside -W County Line -W Course -W Court -W Courte -W Courtland -W Coventry -W Coyle -W Crainmont -W Crandall -W Creek -W Creek Farms -W Creekside -W Crescent -W Cressett -W Crestline -W Crestview -W Crockett -W Crooked Willow -W Crystal -W Crystal Lake -W Cuba -W Cullerton -W Cullom -W Culver -W Cunningham -W Curtice -W Curtis -W Custer -W Custis -W Cuttriss -W Cuyler -W Dahlgren -W Dakin -W Dallas -W Dalton -W Danbury -W Daniels -W Dante -W Danube -W Dartmoor -W Davis -W Dayton -W Dean -W Dee -W Deer Creek -W Deer Park -W Deerpath -W Deerwood -W Delaney -W Delano -W Delos -W Demont -W Dempster -W Dennis -W Denton -W Des Moines -W Devon -W Devonia -W Dexter -W Diamond -W Diamond Lake -W Dickens -W Diehl -W Diversey -W Division -W Doede -W Dolph -W Domagalla -W Dominion -W Donegal -W Doral -W Dorchester -W Dorothy -W Dosoris -W Doswell -W Douglas -W Dove -W Dover -W Dovington -W Doyle -W Dublin -W Dudley -W Dundee -W Durham -W Durkee -W Eagle Lake -W Eames -W Early -W Eastman -W Easton -W Eastwood -W Easy -W Eaton -W Ebinger -W Echo -W Eddy -W Edgemont -W Edgewater -W Edgewood -W Edmaire -W Edmund -W Edmunds -W Edsall -W Edward -W Eggerding -W Elder -W Eleanor -W Elizabeth -W Elk Grove -W Ellen -W Ellice -W Ellis -W Elm -W Elm Grove -W Elmgrove -W Elms Court -W Elmwood -W Emerson -W End -W Enger -W Engle -W Englewood -W Erhart -W Essex -W Estes -W Ethel -W Euclid -W Eugenia -W Eureka -W Eva -W Evans -W Evelyn -W Everell -W Everett -W Evergreen -W Exchange -W Exeter -W F Kings -W Fabish -W Fairmount -W Fairview -W Fargo -W Farm -W Farmdale -W Farmhill -W Farms -W Farragut -W Farwell -W Fenimore -W Fenview -W Ferdinand -W Fernwood -W Ferris -W Fey -W Fillmore -W Fingerboard -W Firestone -W Firth -W Fischer Farm -W Fish Lake -W Fitch -W Flagler -W Fletcher -W Florence -W Flournoy -W Flynn Creek -W Foch -W Forbes -W Ford Brook -W Ford City -W Forest -W Forest Lawn -W Forest View -W Foresthill -W Forestview -W Fork -W Forster -W Fort Lee -W Fortlee -W Foss -W Foster -W Fox -W Fox Hill -W Fox River -W Foxdale -W Francis -W Franciscan -W Frankfort -W Franklin -W Freeway -W Fremont -W French Lake -W Friends -W Friendship -W Front -W Frontage -W Frontenac -W Frontier -W Frost -W Fry -W Fuller -W Fullerton -W Fulton -W Furnace Branch -W Gabreski -W Gale -W Galena -W Galeview -W Galley -W Garden -W Gardner -W Garfield -W Garrett -W Gartner -W Gaslight Square -W Gate -W Gate Fire -W Gates -W Gateway -W Gaylore -W Geneva -W George -W George Mason -W Geranium -W Gerri -W Gettysburg -W Gibbons -W Giddings -W Gilbert -W Glade -W Gladys -W Glebe -W Glen -W Glen Hill -W Glen Park -W Glenbarr -W Glencoe -W Glendale -W Glengate -W Glenlake -W Glenshire -W Glenwood -W Go Wanda -W Goebel -W Goethe -W Golden Lake -W Goldsborough -W Golf -W Golfview -W Goodenow -W Goodhue -W Goodman -W Goodrich -W Gouverneur -W Government -W Grace -W Gracy -W Graham -W Granada -W Grand -W Grand Lake -W Grand Monde -W Grandview -W Grant -W Grantley -W Granville -W Green -W Green Meadows -W Greenbrook -W Greenfield -W Greenleaf -W Greenway -W Greenwich -W Greenwood -W Gregory -W Grenshaw -W Greystone -W Grochowiak -W Grove -W Grover -W Grovewood -W Gude -W Guinevere -W Gunnison -W Hackberry -W Haddon -W Hadley -W Hafenrichter -W Hafer -W Haft -W Haines -W Halbert -W Haledon -W Haley -W Half Day -W Hamburg -W Hamilton -W Hamline Service -W Hampden -W Hampshire -W Hampton -W Hanover -W Hansel -W Hansen -W Happfield -W Harbor -W Harding -W Harold -W Harriet -W Harris -W Harrison -W Hartford -W Harts -W Hartsburg -W Hartsdale -W Harwood -W Hastings -W Hatch -W Hattendorf -W Haven -W Hawley -W Hawthorne -W Hayes -W Hayford -W Haystack -W Hazel -W Hazelcrest -W Hazelwood -W Heather Glen -W Heatherlea -W Heathwood -W Hedge Apple -W Hegel -W Helen -W Helmar -W Hemphill -W Henderson -W Hendon -W Hendricks -W Henrietta -W Henry -W Heritage Oaks -W Hermione -W Hiawatha -W Hickory -W Hickory Creek -W Hidden Valley -W Higbie -W Higgins -W High -W High Point -W High Ridge -W Highland -W Highridge -W Hill -W Hillcrest -W Hills -W Hillside -W Hilltop -W Hinsdale -W Hintz -W Hircsh -W Hirsch -W Hitchcock -W Hobart -W Hobart Gap -W Hobbie -W Hoff -W Hoffman -W Holbrook -W Holly -W Hollywood -W Holtz -W Homestead -W Honeysuckle -W Hood -W Horn -W Horseshoe -W Hortense -W Howard -W Howdy -W Howell -W Howland -W Hoyt -W Hubbard -W Hudson -W Hummingbird -W Hundley -W Hunt -W Hunter -W Hunters -W Huntington -W Huntington Commons -W Huntley -W Hurlbut -W Huron -W Hutchinson -W Hyacinth -W Hydraulic -W Ibsen -W Idaho -W Illinois -W Imlay -W Imperial -W Indian Trail -W Indiana -W Industrial -W Inman -W Interstate -W Inverness -W Iowa -W Ironstone -W Iroquois -W Irvine -W Irving -W Irving Park -W Isabel -W Isabella -W Isham -W Island -W Islip -W Itasca -W Ivanhoe -W Ivy -W J L Smith -W Jack -W Jackson -W Jacquie -W Jamaica -W James -W Jarlath -W Jarvis -W Jason -W Jasper -W Jean -W Jefferson -W Jeffery -W Jeffrey -W Jefryn -W Jerome -W Jersey -W Jessamine -W Jessup -W Jobev -W Joe Orr -W Joffre -W Johanna -W John -W Johnson -W Joliet -W Jonathon -W Jones -W Joyce -W Julian -W Juliet -W Juneau -W Junior -W Juno -W Kamerling -W Kammes -W Karen -W Karl -W Kathleen -W Kathryn -W Kay -W Kazimour -W Kellogg -W Kelly -W Kelly Ann -W Kenilworth -W Kennedy -W Kennicott -W Kensington -W Kentwood -W Kenwood -W Kilkenny -W Kimber -W King -W King George -W Kingsbridge -W Kingsbury -W Kingsley -W Kingston -W Kinney -W Kinzie -W Kipp -W Kirke -W Kissimee -W Knollwood -W Kohl -W Kraft -W Kruckenburg -W Kurt -W Kuse -W Ladd -W Lady Bar -W Lafayette -W Lafayette Frontage -W Lafond -W Lahon -W Lake -W Lake Cook -W Lake Fairfield -W Lake Harriet -W Lake Manor -W Lake Park -W Lake Sarah -W Lake Shore -W Lakeland -W Lakepoint -W Lakeshore -W Lakeside -W Lakeview -W Lakeway -W Lakewood -W Lambs -W Lancaster -W Lancelot -W Landau -W Langley -W Lanham -W Laquinta -W Laraway -W Larchmont -W Lasalle -W Lauffer -W Laurel -W Lauren -W Laurie -W Lawn -W Lawndale -W Lawrence -W Lawson -W Le Moyne -W Lee -W Leland -W Lenox -W Leon -W Leonora -W Leslie -W Lester -W Lexington -W Liberty -W Lill -W Lincoln -W Linda -W Lindbergh -W Linden -W Line -W Linecrest -W Linwood -W Little Creek -W Little Pond -W Livingston -W Lloyd -W Lockport -W Lockwood -W Locust -W Lode -W Logan -W Lois -W Lone Tree -W Long Grove -W Longfield -W Lookout -W Loop -W Lori -W Lorraine -W Lothair -W Lotta -W Louis -W Louise -W Loves -W Loy -W Loyola -W Lucas -W Lumber -W Lunt -W Luray -W Luther -W Lydia -W Lyndale -W Lynfield -W Lynnhurst -W Lynnwood -W Lyon Farm -W Madison -W Magnolia -W Magoun -W Mahan -W Mahogany -W Main -W Major -W Mallard -W Manchester -W Manhattan -W Manitoba -W Manor -W Mansard -W Maple -W Marathon -W Margaret -W Marie -W Marigold -W Marine -W Marion -W Market -W Marlton -W Marquardt -W Marquette -W Marshall -W Martha -W Martin -W Marwood -W Mary -W Marydale -W Marylou -W Marywood -W Mason -W Masonic View -W Mathews -W Matson -W Matthews -W Maude -W Maxwell -W May -W Mayland Villa -W Maynard -W Maypole -W Mc Boal -W Mc Connell -W Mc Lean -W McCarthy -W McClellan -W McCowan -W McDonald -W McGowanwoods -W McKendree -W McKenzie -W McKinley -W McLean -W McMillin -W Meadow -W Meadow Lake -W Meadowland -W Meadowlark -W Meath -W Medicine Lake -W Medill -W Melody -W Melrose -W Memory -W Menna -W Menomonee -W Merchants -W Meredith -W Merle -W Merrick -W Merrion -W Mertz -W Messner -W Metropole -W Meyer -W Miami -W Michael -W Michigan -W Middle -W Middleton -W Midland -W Midway -W Milburn -W Milestone -W Milford -W Mill -W Miller -W Millers -W Millpage -W Millport -W Millsdale -W Milton -W Mineola -W Miner -W Mineral Pond -W Minerva -W Minnehaha -W Minnesota -W Minooka -W Mississippi -W Moffat -W Mohawk -W Monitor -W Monroe -W Montana -W Monterey -W Montgomery -W Monticello -W Montpelier -W Montreal -W Montrose -W Montvale -W Monument -W Moorefield -W Mooseheart -W Moreland -W Morgan -W Morris -W Morse -W Morthland -W Mound -W Moundsview -W Mount -W Mount Harmony -W Mount Ida -W Mount Pleasant -W Mulberry -W Mulford -W Mulloy -W Mulraney -W Mundhank -W Munsell -W Munster -W Myrick -W Myrtle -W N E Shore -W N Frontage -W Nap -W Naperville -W Natalie -W National -W Natoma -W Navajo -W Nebraska -W Neck -W Nelson -W Neptune -W Nettle Creek -W Nevada -W New -W New Britton -W New Monee -W New York -W Newell -W Newport -W Niagara -W Nicholai -W Nichols -W Niles -W Noel -W Nolcrest -W Norfolk -W Normal -W Norman -W Normandy -W North -W North Boo -W North Peotone -W North Pond -W North Shore -W Northcrest -W Northeast Shore -W Northfield -W Northshore -W Norwalk -W Norwich -W Norwood -W Nut Swamp -W Nyack -W Oak -W Oak Glenn -W Oak Hill -W Oak Spring -W Oakdale -W Oakhill -W Oakleaf -W Oakmont -W Oakridge -W Oakton -W Oakwood -W Oasis Service -W Oceanside -W Official -W Offner -W Offutt -W Ogden -W Ohio -W Old Barrington -W Old Country -W Old Elm -W Old Hideway -W Old Mill -W Old Monee -W Old Rand -W Old Ridge -W Old Shakopee -W Oldis -W Olendorf -W Olive -W Omaha -W Oneida -W Onekema -W Ontario -W Onwentsia -W Orange -W Orchard -W Ordnance -W Orlando -W Orme -W Osceola -W Otto -W Overlook -W Owasso -W Owen -W Ox -W Oxford -W Paddock -W Page -W Palace -W Palatine -W Palisade -W Palisades -W Palmer -W Palos -W Pantigo -W Parallel -W Park -W Park Cir -W Park Hills -W Park Place -W Parker -W Parkside -W Parkview -W Partridge -W Pasadena -W Pasadera -W Pasatiempo -W Passaic -W Patapsco -W Patterson -W Patton -W Pauline -W Pawnee -W Peak -W Pearson -W Pebble -W Peddie -W Peiffer -W Pellinore -W Penfield -W Penn -W Pennsylvania -W Penny -W Pennywood -W Pensacola -W Peotone -W Pepper -W Pershing -W Peterson -W Petronella -W Pheasant Trail -W Phillip -W Phillips -W Pier -W Pierce -W Pierrepont -W Pin Oak -W Pine -W Pine Cone -W Pine Hill -W Pinehurst -W Pinewood -W Pioneer Grove -W Pippin -W Pittner -W Plainfield -W Plattner -W Playfield -W Pleasant -W Pleasant View -W Pleasantview -W Plum -W Plymouth -W Point -W Polk -W Polo Trail -W Pond -W Pope -W Poplar -W Porter -W Portland -W Post -W Potomac -W Potter -W Prairie -W Pratt -W Prescott -W Preserve -W Price -W Pricilla -W Primrose -W Princeton -W Prindiville -W Proesel -W Prospect -W Pryor -W Pulaski -W Pullman -W Putnam -W Quackenbush -W Quail -W Quail Hollow -W Quarry -W Quincy -W R Tracy -W Race -W Railroad -W Railway -W Ramapo -W Rampart -W Rand -W Randolph -W Ranick -W Rascher -W Raven -W Ravine -W Rawson Bridge -W Raymond -W Reader -W Red Cloud -W Red Coat -W Red Oak -W Redcliffe -W Reed -W Regan -W Reiter -W Remington -W Renwick -W Research Center -W Revere -W Rfd Checker -W Rice -W Rich -W Richard -W Richmond -W Richton -W Rickard -W Ridge -W Ridgewood -W River -W River Hills -W River Oaks -W Riverbend -W Riverside -W Riverview -W Riviera -W Roanoke -W Rob -W Roberts -W Roberts Ridge -W Robertson -W Robie -W Robin -W Robinson -W Roblyn -W Rockburn Hill -W Rockland -W Rockview -W Rockwood -W Rome -W Ronald -W Rondeau Lake -W Roosevelt -W Root -W Rosalie -W Roscoe -W Rose -W Rosedale -W Rosehill -W Roselawn -W Roselle -W Rosemary -W Rosemont -W Roseview -W Roslyn Park -W Roxbury -W Royal Oak -W Royal Oaks -W Ruby -W Rumsey -W Running Brook -W Runyon -W Russell -W Ryan -W S Boo -W S Owasso -W Saddle -W Saddle Ridge -W Saddle River -W Saint Charles -W Saint Georges -W Saint Joseph -W Salem -W Salisbury -W Saltaire -W Sanders -W Sandpiper -W Sandstone -W Santa Barbara -W Sapphire -W Sargent -W Savannah -W Schaumburg -W Scheffer -W Schick -W Schiller -W School -W Schorsch -W Schreiber -W Schroeder -W Schubert -W Schultz -W Schweitzer -W Schweizer -W Schwerman -W Scott -W Scranton -W Scudder -W Seacrest -W Seaman -W Seamans Neck -W Seil -W Seipp -W Seminary -W Seminole -W Service -W Severn Ridge -W Shadow Lake -W Shady -W Shady Side -W Shakespeare -W Shannon -W Sharp -W Sheffield -W Shelley -W Shepley -W Sheridan -W Sherman -W Sherren -W Sherrill -W Sherwin -W Shiawassie -W Shirley -W Shore -W Shoreline -W Short -W Shryer -W Sibley -W Side -W Sidney -W Silo -W Silver Lake -W Sioux -W Sioux Vista -W Slade -W Slippery Rock -W Slocum Lake -W Smith -W Snelling -W Snelling Service -W Soffel -W Somerset -W South -W South Orange -W Southmeadow -W Spangler -W Spencer -W Spring -W Spring Lake -W Spring Ridge -W Springhill -W Spruce -W Sprucewood -W Suffield -W Sullivan -W Summer -W Summerdale -W Summerset -W Summerview -W Summit -W Sumner -W Sunnyside -W Sunnyslope -W Sunset -W Superior -W Surrey -W Surrey Park -W Susan -W Sussex -W Swain -W Swann -W Sweetwater -W Sycamore -W Sylvan -W Taft -W Tahoe -W Talcott -W Tam O Shanter -W Tamarack -W Tanglewood -W Tantallon -W Taos -W Tartan -W Taylor -W Techny -W Termunde -W Terrace -W Territorial -W Thacker -W Thayer -W Thomas -W Thome -W Thorn -W Thorndale -W Thornridge -W Thornwood -W Three Oaks -W Thure -W Tilden -W Timber -W Timbercreek -W Timberlake -W Timberlea -W Touhy -W Tow Path -W Tower -W Townline -W Trail -W Traube -W Tremont -W Trinity -W Tryon -W Tulip -W Turner -W Turtle -W Tuscarora -W Twin -W Tyler -W Tyson -W Uhler -W Union -W University -W Upland -W Ute -W Vadnais -W Valentine -W Vallette -W Valley -W Van Buren -W Van Emmon -W Van Ness -W Vermont -W Verret -W Veterans -W Victoria -W View -W Viking -W Villa -W Village -W Vine -W Von -W Wabansia -W Wagner -W Wakefield -W Walker -W Wallen -W Walnut -W Walsh -W Walter -W Walton -W Wapella -W Warburton -W Ward -W Warner -W Warren -W Washburne -W Washington -W Water -W Watkins Mill -W Watling -W Watson -W Wauconda -W Waukena -W Waveland -W Waverly -W Wayman -W Wayzata -W Webster -W Weed -W Wellesley -W Wellington -W Wend -W Wendell -W Werberry -W Wesley -W West -W West End -W Western -W Westlake -W Westminster -W Westmoreland -W Westport -W Westward Ho -W Westwood -W Wheatley -W Wheatstone -W Wheeler -W Whispering Hill -W White -W White Pine -W Whitegate -W Whitehall -W Whiting -W Wiesbrook -W Wilcox -W Wildwood -W Wilhelm -W Willard -W Wille -W William -W Williams -W Willow -W Willow Glen -W Wilshire -W Wilson -W Windhill -W Windmill -W Windsor -W Wing -W Wingedfoot -W Winifred -W Winnemac -W Winnetka -W Winnipeg -W Winona -W Wintergreen -W Wirth -W Wisconsin -W Wishing Well -W Witchwood -W Wolfram -W Wood -W Woodbine -W Woodbridge -W Woodcrest -W Woodland -W Woodlawn -W Woodman -W Woodridge -W Woodriver -W Woods -W Woodside -W Woodstock -W Woodvale -W Wordsworth -W Wrentham -W Wright -W Wrightwood -W Wyandot -W Wyngate -W Wyoming -W York -W Yorkshire -W Youngman -W Zarley -W Zoller -W Zoranne -W de Koven -W de Saible -W del Ray -W la Porte -W. Frontage -W. Main -W. Market -WIld -WIlford -WIllow Ridge -WIngadee -Waackaack -Waalwyk -Waarden -Waarem -Waban -Waban Hill -Wabana -Wabansia -Wabash -Wabasha -Wabasso -Wabba -Wabena -Wabeno -Wabler -Waborne -Wachter -Wachtler -Wachusett -Wachusett View -Wachusetts -Wacker -Wackett -Waco -Wacomor -Waconah -Wacota -Wacouta -Wadaga -Wadbrook -Waddell -Wadding -Waddington -Waddling -Waddon -Waddon Alton -Waddon Court -Waddon New -Waddon Park -Wadds -Wade -Wade Hill -Wadebridge -Wadena -Wades -Wadesmill -Wadeson -Wadeville -Wadham -Wadhams -Wadhurst -Wadkins -Wadlands -Wadlands Brook -Wadleigh -Wadleigh Park -Wadley -Wadsworth -Wadsworth Farm -Waelchli -Waesche -Wafer -Wagamon -Wagann -Wagaraw -Wagda -Wagele -Wagenheim -Wagg -Wagga Wagga -Waggaman -Waggon -Waggoners Wells -Waghorn -Wagman -Wagner -Wagner Farm -Wagner Heights -Wagnon -Wagon -Wagon Trail -Wagon Wheel -Wagoner -Wagontire -Wagonwheel -Wagschall -Wagstaff -Wagstaffe -Wagtail -Wah -Wahkiakum -Wahl -Wahler -Wahlstrom -Wahly -Wahneta -Wahnita -Wahoo -Wahroonga -Waiana -Waibel -Waikiki -Waiku -Wailing -Waima -Waimea -Waincliffe -Waine -Wainewright -Wainfleet -Waingels -Wainman -Wainscot -Wainscott -Wainsford -Wainwright -Waiola -Waiport -Wairoa -Wait -Waitaki -Waitara -Waite -Waite Davies -Waithlands -Waithman -Waitkus -Waitovu -Waitt -Waitville -Waiwera -Wake -Wake Field -Wake Forest -Wake Island -Wake Robin -Wakeby -Wakefield -Wakefield Chapel -Wakefield Park -Wakefield Pond -Wakeford -Wakeham -Wakehams Green -Wakehurst -Wakeland -Wakelee -Wakeley -Wakelin -Wakeling -Wakely -Wakeman -Wakemans Hill -Wakemen -Wakemore -Wakering -Wakerobin -Wakes -Wakestone -Wakeview -Wakley -Wakonade -Wakooka -Wakullah -Walace -Walada -Walavista -Walbern -Walberswick -Walbridge -Walbrook -Walbrooke -Walburgh -Walburton -Walbury -Walbutton -Walcorde -Walcot -Walcott -Wald -Waldeberg -Waldeck -Waldemar -Walden -Walden Clubhouse -Walden Farms -Walden Hill -Walden House -Walden Pond -Walden Shores -Walden Square -Waldenhurst -Waldens -Waldens Park -Waldenshaw -Waldenstrom -Walder -Walderslade -Walderton -Waldheim -Walding Field -Waldingfield -Waldman -Waldo -Waldoln -Waldon -Waldor -Waldorf -Waldorf Forest -Waldorn -Waldran -Waldren -Waldrew Heights -Waldroff Farm -Waldrohe -Waldron -Waldstock -Waldwick -Waleco -Walenore -Walerand -Walerga -Wales -Waley -Walford -Walford Park -Walfrid -Walgrave -Walgrove -Walhaven -Walhonding -Waling -Walizer -Walk -Walk Hill -Walk Mill -Walkabout -Walkden -Walkdens -Walke -Walker -Walker Choice -Walker Farm -Walker Fold -Walker Hill -Walker House -Walker Mill -Walker Ranch -Walker Valley -Walker Woods -Walkern -Walkers -Walkers Brook -Walkers Choice -Walkerton -Walkerville -Walkfield -Walkhill -Walkhurst -Walking -Walking Ridge -Walkingfern -Walkley -Walkom -Walkup -Wall -Wall End -Wall Hall -Wall Hill -Wall Park -Wall Pt. -Walla Walla -Wallabout -Wallace -Wallace Creek -Wallace Cross -Wallace Hill -Wallace Manor -Wallacks -Wallaga -Wallage -Wallami -Wallan -Walland -Wallangra -Wallaringa -Wallaroy -Wallasey -Wallbank -Wallberg -Wallbridge -Wallcote -Walldown -Wallea -Wallen -Wallendbeen -Wallenger -Wallens -Waller -Waller Clough -Wallers -Walley -Walleye -Wallflower -Wallgrave -Wallgrove -Wallhead -Wallhouse -Wallice -Wallin -Walling -Wallingford -Wallington -Wallis -Wallis Ann -Wallis Close Holgate -Wallis Oak -Wallmark -Wallmark Lake -Wallner -Wallness -Walloon -Wallowa -Wallpole -Walls -Wallshaw -Wallum Beach -Wallum Lake -Wallum Pond -Wallumatta -Wallwood -Wallwork -Wally -Walman -Walman Buckley -Walmea -Walmer -Walmers -Walmersley -Walmersley Old -Walmesley -Walmgate -Walmort -Walmsley -Walney -Walney Park -Walnut -Walnut Acres -Walnut Bayou -Walnut Blossom -Walnut Branch -Walnut Creek -Walnut Grove -Walnut Haven -Walnut Heights -Walnut Hill -Walnut Hollow -Walnut Knoll -Walnut Meadows -Walnut Oaks -Walnut Park -Walnut Place -Walnut Pointe -Walnut Ridge -Walnut Tree -Walnut Woods -Walnutgrove -Walnuts -Walnutwood -Walona -Walper -Walpert -Walpole -Walport -Walraven -Walray -Walredon -Walrond -Walsall -Walsby -Walsden -Walsh -Walsham -Walshaw -Walshes -Walsingham -Walsworth -Walt -Walt Whitman -Walter -Walter Adamic -Walter Bowie -Walter Breton -Walter Burke -Walter Faunce -Walter Hagen -Walter Hays -Walter Johnson -Walter Morse -Walter Reed -Walter Scott -Walter Thompson -Walter Wheeler -Walter Zimny -Waltermire -Walters -Walters Green -Walters Port -Walters Woods -Walterton -Waltham -Waltham Cross -Waltham Park -Walther -Walthery -Walti -Waltoffer -Walton -Walton Av -Walton Bridge -Walton Hall -Walton Hall Farm -Walton Heath -Walton New -Walton Oaks -Walton Park -Waltons Hall -Waltonway -Waltrip -Waltrous -Waltuma -Waltz -Waltzer -Walworth -Walwyn -Walz -Wamasquid -Wambold -Wambool -Wamburg -Wamesit -Wamesite -Waminda -Wampanaw -Wampanoag -Wampatuck -Wampum -Wampus -Wamsutta -Wanamaker -Wanaque -Wanari -Wanawong -Wanborough -Wanbourne -Wand -Wanda -Wandabury -Wandana -Wandarri -Wandeen -Wandel -Wandell -Wandella -Wanden -Wander -Wanderer -Wandering -Wandering Creek -Wandering Trail -Wanders -Wandle -Wandobah -Wandon -Wandoo -Wandsworth -Wandsworth Ram -Wanegarden -Waner -Waneta -Wangalla -Wanganella -Wanganui -Wangara -Wangee -Wanger -Wangi -Waninga -Wanlass -Wanless -Wanley -Wanlip -Wannalancit -Wannamaker -Wannas -Wanniti -Wannyl -Wano -Wanoosnoc -Wansbeck -Wanser -Wansers -Wansey -Wanskuck -Wansor -Wanstead -Wansunt -Want -Wantage -Wantagh -Wantagh Park -Wanto Shipyard -Wantz -Wanzer -Wanzia -Wapakoneta -Wapella -Wapello -Wapiti -Waple -Waples Mill -Wapoo -Wapoo Hill -Wappanoca -Wappanocca -Wapping -Wapping Dock -Wappo -Wapseys -Wapshott -War Admiral -War Coppice -War Office -War Wagon -Warabin -Waragal -Warana -Waratah -Warawee -Warbank -Warbeck -Warberry -Warbick -Warbler -Warbler Springs -Warbleton -Warborough -Warboys -Warbreck -Warbrook -Warburton -Warburton Bridge -Warburton Oaks -Warbury -Warby -Warcock -Warcoo -Ward -Ward Park -Ward Witty -Wardang -Warde -Wardell -Warden -Wardia -Wardle -Wardlebrook -Wardley -Wardlow -Wardman -Wardour -Wardrobes -Wardrop -Wards -Wards Chapel -Wards Hill -Wards Hill Minster -Wards Point -Wardsbrook -Wardsworth -Wardwell -Ware -Ware Park -Ware Woods -Wareemba -Wareham -Warehams -Warehill -Warehorne -Warehouse -Warehouse Creek -Warehouse Hill -Warehouse Landing -Wareing -Warejee -Warekila -Wareland -Waremead -Warenne -Warepoint -Wares -Warescot -Warewoods -Warf -Warfield -Warford -Wargrave -Wargrove -Warham -Wari -Warialda -Warilda -Warili -Warin -Warinanco Park -Waring -Warington -Warish Hall -Wark -Warkworth -Warlencourt -Warley -Warley Hall -Warlingham -Warlock -Warlow -Warltersville -Warm -Warm Granite -Warm Springs -Warman -Warmbrook -Warmington -Warminster -Warminster Way Clay -Warmke -Warmlake -Warmley -Warmscombe -Warmsley -Warmsprings -Warmstone -Warmwell -Warmwood -Warndon -Warne -Warneford -Warner -Warner Range -Warner Trail -Warners -Warners End -Warnford -Warnham -Warnham Court -Warninglid -Warnke -Warnock -Warooga -Waroon -Warra -Warraba -Warrabina -Warragal -Warrah -Warramill -Warramunga -Warrana -Warrane -Warrangarree -Warrangi -Warrant Officer Bauer -Warraroon -Warraroong -Warratah -Warrawee -Warrawidgee -Warrawong -Warrego -Warrels -Warren -Warren Ball -Warren Bruce -Warren Farm -Warren Gibson -Warren Hagstrom -Warren House -Warren Lodge -Warren Park -Warren Row -Warren Wood -Warrendene -Warrender -Warrener -Warreners -Warrengate -Warrenne -Warrens -Warrens Shawe -Warrensgreen -Warrenton -Warrenville -Warrick -Warriewood -Warrigal -Warrigo -Warrimoo -Warrina -Warriner -Warring -Warringa -Warringah -Warrington -Warrior -Warrior Brook -Warrior Square -Warriston -Warrumbungle -Warrung -Warsaw -Warslow -Wartburg -Warth -Warth Fold -Warthen -Warton -Waruda -Warumbui -Warumbul -Warung -Warwich -Warwick -Warwick House -Warwick Wold -Warwicks Bench -Warwickshire -Warwilla -Warwillah -Wasatch -Wasche -Wasco -Wascussee -Wasdale -Wasdale Head -Waseca -Waselchuk -Wasena -Wash -Wash Brook -Wash Hollow -Washall -Washburn -Washer -Washford -Washford Farm -Washington -Washington Brice -Washington Grove -Washington Park -Washington Rock -Washington Spring -Washington Square -Washington Valley -Washington Woods -Washingtonian -Washingtonn -Washitay -Washneys -Washo -Washoe -Washta Bay -Washtenaw -Washway -Wasilla -Waskow -Wasno -Wason -Wasp -Wasp Green -Wasp Mill -Wass -Wassall -Wassell -Wasson -Wastdale -Waste -Wastwater -Wasylenko -Watburn -Watch -Watch Hill -Watch Tower -Watchbell -Watchers -Watchet -Watchetts -Watchfield -Watchhouse -Watchmoor -Watchogue -Watchouse -Watchtower -Watchung -Watchung Crest -Watchung Heights -Watchwood -Watcombe -Water -Water Brook -Water Dog Lake -Water Edge -Water Elm -Water End -Water Fall -Water Grant -Water Grove -Water Hall -Water Lily -Water Locust -Water Mill -Water Oak -Water Oak Point -Water Pointe -Water Reserve -Water Ridge -Water Row -Water Tank -Water Tower -Water View -Water Works -Waterbank -Waterbeach -Waterberry -Waterbrook -Waterbury -Waterbury Heights -Watercourse -Watercress -Watercroft -Watercure -Waterdale -Waterdell -Waterden -Waterditch -Waterdock -Waterdown -Wateredge -Wateree -Waterend -Waterfall -Waterfall Glen -Waterfield -Waterflower -Waterfold -Waterfoot -Waterford -Waterfowl -Waterfront -Watergate -Watergate Embleton -Watergum -Waterhall -Waterham -Waterhaven -Waterhill -Waterhouse -Wateridge -Wateringbury -Waterlands -Waterlily -Waterline -Waterloo -Waterlot -Waterlow -Waterman -Watermans -Watermead -Watermeadow -Watermeetings -Watermill -Waterous -Waterpark -Waterperry -Waters -Waters Creek -Waters Discovery -Waters Edge -Waters Edge Landing -Waters Hollow -Waters Landing -Waters Meeting -Waters Nook -Waters Park -Waters Point -Watersedge -Watershed -Watersheddings -Waterside -Waterslea -Watersleigh -Watersmead -Waterson -Watersong -Watersplash -Waterston -Waterswallows -Waterton -Watertower -Watertown -Watertrough -Watervale -Waterview -Waterville -Watervliet -Waterway -Waterwheel -Waterwillow -Waterwitch -Waterwood -Waterworks -Waterworld -Waterworth -Watery -Watford -Watford Bridge -Watford High -Wathen -Watkin -Watkins -Watkins Meadow -Watkins Mill -Watkins Park -Watkins Pond -Watkins View -Watkinson -Watkiss -Watling -Watlington -Watmore -Watney -Watnong -Watoquadoc -Watrous -Watsam -Watseka -Watsessing -Watsford -Watson -Watson Farm -Watsonia -Watsonville -Watt -Wattamolla -Wattendon -Watters -Watterson -Watting -Wattle -Wattle Creek -Wattle Grove -Wattles -Wattleton -Wattling -Watton -Watts -Watts Branch -Watts Mine -Watts Palace -Waubansee -Waubansie -Wauboksee -Waubonsee -Waubonsee Circle -Waubonsie -Waucantuck -Wauchope -Wauconda -Waudman -Waugh -Waugh Chapel -Waughaw -Waugoola -Waukeena -Waukegan -Waukena -Waukesha -Waukon -Wauluds Bank -Waumbeck -Wauponsee -Wausau -Waushacum -Waushakum -Wavaney -Wave -Wave Crest -Wavecrest -Wavehill -Waveland -Wavell -Wavemey -Wavendene -Wavendon -Waveney -Waverleigh -Waverley -Waverley Oaks -Waverly -Waverly Crossing -Waverly Park -Waverton -Wavertree -Wavy -Wawapek -Wawecus -Wawela -Wawona -Waxberg -Waxen -Waxon -Waxpool -Waxwell -Waxwing -Way -Way Lene -Way Points -Wayaawi -Waybridge -Wayburn -Waybury -Waycott -Waycross -Waydale -Waydell -Waye -Wayella -Wayfair -Wayfarer -Wayfarers -Wayfaring -Wayfield -Wayford -Waygrove -Wayjack -Wayland -Wayland Hills -Waylen -Wayles -Wayletts -Waylon -Waylor -Wayman -Waymond -Wayne -Wayne Gibson -Wayne Oaks -Wayneflete Tower -Waynelete -Wayneridge -Waynesburg -Waynesford -Wayneswood -Waynewood -Waynflete -Waypark -Wayre -Wayridge -Wayside -Wayside Inn -Wayson -Wayte -Waytemore -Wayvern -Wayville -Wayward -Waywood -Wayword -WayzAta -Wayzata -Wazir -Wd Prop. Off Pleasant -Weagle Farm -Weald -Weald Bridge -Weald Hall -Weald View -Wealden -Wealdstone -Wealdview -Weale -Wealtheasy -Weambie -Weant -Wear -Weardale -Wearden -Weardley -Weare -Wearimus -Wearish -Wearne -Wearside -Weart -Weasel -Weaste -Weather Hill -Weather Service -Weather Vane -Weatherbee -Weatherby -Weatherhill -Weatherington -Weatherley -Weatherly -Weathers -Weathersfield -Weatherstone -Weathervane -Weatherwood -Weaver -Weaver Lake -Weaver Lk -Weaverham -Weaverhead -Weavering -Weaverly -Weavers -Weavers Rock -Weaverthorpe -Weaving -Web -Webb -Webb Brook -Webb Canyon -Webb Hill -Webbacowitt -Webber -Webber Hills -Webbs -Webbscroft -Webcowet -Webdale -Weber -Weberfield -Webford -Webley -Webro -Webster -Webster Creek -Webster Valley -Websters -Weddell -Wedderburn -Weddle -Wedel -Wedeman -Wedemeyer -Weden -Wedge -Wedge Pond -Wedge Wood -Wedgedale -Wedgefield -Wedgemere -Wedgeport -Wedgewood -Wedgwood -Wedhurst -Wedmore -Wednesbury -Wedo -Wedow -Wee -Wee Burn -Weech -Weed -Weedington -Weedon -Weeds Wood -Weehawken -Weeks -Weel -Weelsby Park -Weemala -Weemalah -Weems -Weeney -Weep Birch -Weeping Cherry -Weeping Willow -Weepinggate -Weequahic -Weequahic Park -Weerona -Weeroona -Weetamoe -Weetawa -Weetawaa -Weeth -Weetman -Weeton -Weetucket -Weetwood -Weetwood Mill -Weetwood Park -Wegat -Wegg -Wegman -Wegworth -Wehlow -Wehner -Wehrheim -Wehrli -Wehrman -Weibel -Weible -Weich -Weichert -Weide -Weiden -Weider -Weidner -Weigands -Weigel -Weighhouse -Weighton -Weigum -Weikert -Weil -Weiland -Weill -Weimar -Weimer -Weinhold -Weinmann -Weinmanns -Weinschel -Weir -Weir Farm -Weir Hall -Weir Hill -Weir Pond -Weir River -Weirberly -Weirdale -Weirfield -Weirich -Weirs -Weirupp -Weirwood -Weis -Weisch -Weise -Weisiger -Weisman -Weiss -Weitz -Wekiva -Welaka -Welbeck -Welborn -Welbourne Woods -Welburn -Welbury -Welby -Welch -Welch Creek -Welch Hill -Welches -Welclose -Welcomb -Welcome -Welcome Home -Welcomes -Welcomeway -Welcroft -Weld -Weld Gilder -Weld Hill -Weldale -Welden -Welder -Welders -Weldin -Welding -Weldon -Weldwood -Welesley -Welfare -Welfield -Welfleet -Welford -Welgate -Welham -Welham Green -Welhouse -Well -Well Bank -Well End -Well Hall -Well Head -Well Hill -Well House -Well Penn -Well Place -Well Spring -Well hall -Wella -Wellacre -Welland -Wellbank -Wellbeck -Wellbrock -Wellbrook -Wellclose -Wellcome -Wellcroft -Welle -Weller -Wellerburn -Welles -Wellesbourne -Wellesey -Wellesley -Welley -Wellfield -Wellfit -Wellfleet -Wellford -Wellgarth -Wellgate -Wellham -Wellhouse -Welling -Welling High -Welling Way Sherwood -Wellingford -Wellingham -Wellings -Wellington -Wellington Branch -Wellington Bridge -Wellington Commons -Wellington Hill -Wellington Park -Wellington Ranch -Wellington Town -Wellington Woods -Wellingtonia -Wellman -Wellmeade -Wellmeadow -Wellner -Wells -Wells Fargo -Wells House -Wellsboro -Wellsey -Wellsley -Wellsmere -Wellstead -Wellstone -Wellswood -Wellumba -Wellwinch -Wellwood -Wellworth -Wellyhole -Wellyn -Welney -Welsford -Welsh -Welshire -Welshmans -Welshpool -Welsley -Welter -Weltham -Weltje -Weltmore -Welton -Welty -Welwyn -Welwyn By Pass -Welzel -Wembley -Wembley High -Wembley Hill -Wembley Park -Wembly -Wemborough -Wembrough -Wembury -Wemple -Wemyss -Wenberg -Wenborough -Wenc -Wendal -Wendall -Wendell -Wendell Holmes -Wendell Howard -Wendeller -Wenden -Wendhurst -Wendley -Wendling -Wendon -Wendover -Wendover Hills -Wendt -Wendy -Wendy Hope -Wendy Ridge -Wengate -Wengeo -Wenham -Wenholz -Wenk -Wenlock -Wenlocks -Wenlow -Wenman -Wenmore -Wenmoth -Wennamacher -Wennerberg -Wennergreen -Wennington -Wenona -Wenonah -Wensley -Wensleydale -Wensum -Wentbridge -Wente -Wenthorpe -Wentick -Wentland -Wentlock -Wenton -Wentwood -Wentworh -Wentworth -Wentworth Park -Wentz -Wentzell -Wenvoe -Wenwood -Wenz -Wenzel -Wenzell -Weona -Weonga -Werbe -Werch -Werden -Werimus -Werimus Brook -Weringa -Werline -Wermes -Wernbrook -Werndee -Werner -Werneth -Werneth Hall -Werneth Low -Werombi -Werona -Werrington -Wert -Werter -Werth -Wertz -Wesby -Wesch -Wesche -Wescoat -Wescoe Hill -Wescot -Wescott -Wescroft -Wesemann -Weser -Wesgate -Wesglen -Weshaven -Weslake -Wesleigh -Wesley -Wesley Commons -Wesley School -Wesley Tyler -Wesley White -Wesleyan -Wesmacott -Wesmere -Wesmere Lakes -Wesmond -Wesmur -Wespark -Wessagusett -Wessco -Wessen -Wessenden Head -Wessex -Wessington -Wesskum Wood -Wessling -Wesson -West -West A -West Access -West Acre -West Acres -West Acton -West Adams -West Agua Caliente -West Ahwanee -West Airmount -West Alameda -West Albert -West Aldea -West Alden -West Aldridge -West Algonquin -West Allendale -West Alley -West Alma -West Aloha -West American Canyon -West Anderson -West Angela -West Ann -West Anza -West Arbor -West Arbour -West Area -West Argand -West Arm -West Armour -West Arthington -West Ascot -West Ash -West Ashland -West Atherton -West Atlantic -West Augusta -West Avalon -West Avondale -West B -West Bacon -West Bagwell -West Balsam -West Baltimore -West Banbury -West Bank -West Bare Hill -West Barham -West Barn -West Barnes -West Barrett -West Barry -West Baxter -West Bay -West Beach -West Beacon -West Beamer -West Beech -West Beeches -West Bel Mar -West Belcher -West Belle Plaine -West Bellevue -West Bellflower -West Benjamin Holt -West Berlin -West Berry -West Berteau -West Bertona -West Birch -West Bird -West Bissell -West Blackhawk -West Blaine -West Blithedale -West Blue Lake -West Boardwalk -West Bolivar -West Bolton -West Bond -West Bonita -West Border -West Bostian -West Boston -West Botany -West Bothwell -West Boundary -West Bowers -West Boyd -West Boylston -West Bradstreet -West Branch -West Brannan Island -West Bridgewater -West Briggsmore -West Brighton -West Broad -West Broadmoor -West Broadway -West Brodview -West Brokaw -West Brook -West Brooke -West Brookline -West Brookwood -West Bruns -West Brush Hill -West Brygger -West Buchanan -West Burnham -West Burns Valley -West Burnside -West Busk -West Byron -West C -West C Meyer -West Cabrini -West Calaveras -West California -West Camden -West Camino -West Camino Diablo -West Campbell -West Campus -West Canton -West Canyon -West Capitol -West Carboy -West Cardinal -West Carey -West Caroline -West Carolyn -West Carr -West Carriage -West Carroll -West Casa Linda -West Castlewood -West Caswell -West Catino -West Cavendish -West Cavour -West Cedar -West Center -West Central -West Channel -West Chanslor -West Chapel -West Chardon -West Charleston -West Charlotte -West Cherry -West Chester -West Chestnut -West Chevin -West Chicago -West Chiles -West Chiltington -West Church -West Cintura -West Clark -West Clay -West Cliff -West Cloudy -West Clover -West Colfax -West Colony -West Comfort -West Commercial -West Common -West Comstock -West Concord -West Congress -West Cornelia -West Cortez -West Cotati -West Cottage -West Country Club -West Court -West Cove -West Covell -West Cramer -West Creek -West Cremona -West Crescent -West Crockett -West Cromwell -West Crook -West Crooked Hill -West Cross -West Cullom -West Curtis -West Cutting -West Cypress -West D -West Dalton -West Dam -West Dana -West Danbury -West Dane -West Dares Beach -West Day -West Dayton -West Dean -West Dedham -West Deerhaven -West Delano -West Dempster -West Dene -West Denver -West Deodara -West Derby -West Diamond -West Diane -West Diehl -West Dike -West Division -West Don Pedro -West Douglas -West Dover -West Downs -West Duane -West Dunaweal -West Dundee -West Dunne -West Dupont -West E -West Eagle -West Eagle Lake -West Eaglewood -West Earleigh Heights -West Eaton -West Eden -West Edith -West Edmonston -West Edmundson -West Eight Mile -West Eighth -West Eleventh -West Elkhorn -West Ella -West Elliot -West Elm -West Elmore -West Elverta -West Emerson -West End -West End Farm -West Englewood -West Entwistle -West Essex -West Estates -West Estudillo -West Etruria -West Euclid -West Eugenie -West Evelyn -West Evergreen -West Ewing -West F -West Fabyan -West Fairview -West Falkland -West Fargo -West Farm -West Farms -West Federal -West Fedora -West Ferdinand -West Ferndale -West Ferry -West Field -West Fifth -West First -West Flexford -West Flora -West Florentia -West Fordham -West Forest -West Forest Lake -West Forrest -West Fort -West Foster -West Fountain -West Fourth -West Foxwood -West Frances -West Franklin -West Frederick -West Fremont -West Front -West Fulkerth -West Fullerton -West Fulton -West Fyffe -West G -West Gaffery -West Galer -West Garfield -West Gate -West Geary -West Geneva -West George -West Gertrude -West Gibson -West Gilardy -West Gilbert -West Gish -West Glen -West Glencannon -West Glenmont -West Go Wanda -West Golf -West Golfview -West Gowe -West Grace -West Grand -West Grange -West Grant -West Grant Line -West Grantline -West Grayson -West Green -West Greenbriar -West Greenthorn -West Groton -West Grove -West Grover -West Gun Hill -West H -West Hacienda -West Halkin -West Halleck -West Ham -West Hamilton -West Hammer -West Hampton -West Hancock -West Hangar -West Hanningfield -West Harbor -West Harder -West Harding -West Harley -West Harney -West Harris -West Harrison -West Harting -West Harvard -West Hatch -West Haven -West Hawley -West Hawthorne -West Hayden Lake -West Hayes -West Hays -West Hazelton -West Head -West Health Sciences -West Hearn -West Heath -West Hedding -West Hendy -West Hensley -West Hidden Hills -West Higgins -West High -West Highland -West Hilderbrand -West Hill -West Hill Beaumont -West Hill Beaumont -West Hill Dam -West Hillgrove -West Hills -West Hillsdale -West Hillside -West Hilltop -West Hilton -West Hirsch -West Hoathly -West Holly -West Home -West Homestead -West Hookston -West Hornet -West Hospital -West House -West Houston -West Howard -West Howe -West Howell -West Hubbard -West Humboldt -West Hunter -West Hurd -West Hutchinson -West Hyde -West I -West Ike Crow -West Imola -West India -West India Dock -West Ingram -West Inman -West Interurban -West Iowa -West Iris -West Irving Park -West Island -West Ivy -West J -West Jack London -West Jackson -West Jacobs -West Jahant -West Jamaica -West James -West Jameson -West Jamestown -West Jasper -West Java -West Jefferson -West Jenness -West Jennifer -West Jersey -West Joan -West Joaquin -West John -West Joliet -West Juana -West Julian -West Juniper -West Kavanagh -West Keating -West Kelly -West Kelso -West Kendal -West Kendall -West Kenner -West Kenneth -West Kent -West Kentucky -West Kersey -West Keslinger -West Kettleman -West Keyes -West Keystone -West Kim -West Kingdon -West Kingsbridge -West Kingston School -West Kinzie -West Kirchhoff -West Klein -West Knickerbocker -West Knoll -West Kohler -West L -West LaSalle -West Lafayette -West Lagoon -West Lake -West Lake Kayak -West Lakeshore -West Lanark -West Lancaster County -West Land Park -West Lanram -West Larch -West Las Animas -West Las Palmas -West Las Positas -West Latimer -West Lauffer -West Laurel -West Lawn -West Lawrence -West Lawton -West Le Moyne -West Lea -West Leach -West Lehman -West Leland -West Leonard -West Leslie -West Lewis -West Liberty -West Lincoln -West Linden -West Linden Church -West Lindsay -West Link -West Linne -West Live Oak -West Livingston -West Livorna -West Lockeford -West Lockport -West Locust -West Lodge -West Lodi -West Logan -West Lomond -West London -West Longview -West Lonnquist -West Loop -West Lorenzen -West Loretta -West Los Felis -West Lost Lake -West Louise -West Lowell -West Lower Jones -West Lucas -West Lucerne -West Lupton -West Lynch -West Lynda -West Lynn -West Mac Donald -West MacArthur -West Macarthur -West Madill -West Madison -West Magnolia -West Main -West Mall -West Mallory -West Manchester -West Manor -West Mansell -West Maple -West March -West Mare -West Mariposa -West Maritime -West Market -West Marshall -West Martha -West Mather Field -West Matheson -West Mathews -West Maude -West Mayes -West Mayfair -West Mc Donald -West Mc Graw -West Mc Kenzie -West Mc Laren -West McKinley -West Meadow -West Meadows -West Medill -West Meeker -West Mel -West Melrose -West Mendocino -West Mercer -West Michigan -West Middle -West Middle School -West Middlefield -West Milgeo -West Mill -West Millbury -West Milton -West Miner -West Miramonte -West Mission -West Modoc -West Moffett Park -West Mohelumne -West Moltke -West Monee Manhattan -West Monroe -West Montara -West Monte Vista -West Monterey -West Montesanto -West Montgomery -West Monticello -West Montrose -West Moreland -West Morrison -West Morton -West Mosley -West Mount Diablo -West Mountain -West Mozart -West Muller -West Myrtle -West N -West Napa -West Naughton -West Nauraushaun -West Neal -West Nelson -West Neptune -West Nettle Tree -West Neugerbauer -West Nevin -West Newell -West Newlands -West Newport -West Newton -West Nickerson -West Ninth -West Noble -West North -West Norwalk -West Norwich -West Noyes -West Nursery -West Oak -West Oak Knoll -West Oakdale -West Oakland -West Oaks -West Oakton -West Oakwood -West Oberlin -West Ogden -West Ohio -West Olive -West Olivet -West Ontario -West Orange -West Orangeburg -West Orchard -West Oriskany -West Ott -West Ox -West Pacific -West Palatine -West Palmer -West Panorama -West Pardee -West Parish -West Park -West Parker -West Parr -West Partridge -West Passaic -West Patapsco -West Patrol -West Patterson -West Patterson Pass -West Pauling -West Payran -West Pearl -West Peder -West Peltier -West Penn -West Pensacola -West Peregrine -West Perimeter -West Pescadero -West Pickering -West Pickwick -West Pine -West Pine Haven -West Plain -West Platti -West Plumeria -West Plymouth -West Point -West Pointe -West Polk -West Pond -West Poplar -West Portola -West Poultry -West Prahser -West Prospect -West Prosper -West Pueblo -West Q -West Quay -West Quincy -West Railroad -West Raleigh -West Ramapo -West Ranch -West Rand -West Randolph -West Ravensbury -West Raye -West Red Line -West Redwood -West Reed -West Remington -West Renee -West Republican -West Revere -West Rianda -West Richmond -West Ridge -West Ridge View -West Rincon -West Rindge -West Ripon -West River -West River Grove -West Riverside -West Riverview -West Riviera -West Robbie -West Robert -West Robinhood -West Robles -West Rockport -West Rockwell -West Rode -West Roosevelt -West Rose -West Rosemary -West Rosseter -West Roxbury -West Roy -West Royd -West Ruby -West Ruby Hill -West Ruffner -West Rumble -West Running Brook -West Rusty -West Rutherford -West Saddle River -West Saint Andrews -West Saint Charles -West Saint James -West Saint John -West Salt Creek -West Sam -West San Carlos -West San Marco -West San Martin -West San Salvador -West San Tomas Aquino -West Sanches -West Sandralee -West Santa Clara -West Santa Fe -West Santa Inez -West Sargent -West Sausal -West Savona -West Scenic -West Schaumburg -West School -West Schulte -West Seaview -West Second -West Seegers -West Selby -West Selden -West Semple -West Service -West Seventh -West Sexton -West Shadowgraph -West Shell -West Sheridan -West Shore -West Shoreline -West Shoreview -West Shorewood -West Shure -West Side -West Sierra -West Sigourney -West Sigwalt -West Siino -West Silver Eagle -West Sixth -West Slaithwaite -West Smith -West Sneed -West Soda Rock -West Soffel -West Sonoma -West Sonora -West Sorrento -West South -West Southwood -West Spain -West Spring -West Springfield -West Spruce -West Squantum -West Sst -West Sugar -West Summit -West Sunnyoaks -West Sunnyside -West Sunset -West Surf -West Sutter -West Sutton -West Swain -West Tapley -West Taron -West Tasman -West Taylor -West Telegraph -West Temperence -West Temple -West Tennys -West Tennyson -West Tenter -West Tenth -West Terminous -West Terra Cotta -West Texas -West Thames -West Third -West Thomas -West Thomson -West Thorndale -West Thurman -West Ticonderoga -West Tilden -West Tokay -West Toleri -West Tower -West Tregallas -West Tremlett -West Tremont -West Trident -West Trimble -West Trinity -West Tulare -West Turner -West Twitchell Island -West U -West Undine -West Union -West University -West Upsala -West Vale -West Valley -West Van Buren -West Vanston -West Vein -West Verde -West Victoria -West View -West Vine Hill -West Virginia -West Vomac -West Wacker -West Wahington -West Walbrook -West Walker Landing -West Walnut -West Walnut Grove -West Warren -West Washington -West Water -West Watmaugh -West Waveland -West Weber -West Weddell -West Wellington -West Wendell -West West -West West la Frontage -West Wetmore -West Wheeler -West White Oak -West Whitmore -West Whittier -West Wilchard -West Wilderness Lakes -West William -West Willow -West Willow Creek -West Wilson -West Wimbolton -West Wind -West Winds -West Winesap -West Wing -West Winton -West Wise -West Wood -West Woodbridge -West Woods -West Worth -West Wright -West Wyandotte -West Wycombe -West Wycombe Hill -West Wyoming -West Yoke -West Yokuts -West Yorkshire -West Younger -West Zayante -West Zeering -West el Camino -West el Campo -West el Dorado -West el Rose -West la Chiquita -West la Loma -West la Mesa -Westacott -Westacre -Westacres -Westage -Westaire -Westall -Westamerica -Westanley -Westar -Westaway -Westbank -Westbard -Westbay -Westbeech -Westbend -Westbere -Westberg -Westberry -Westborder -Westboro -Westboro Hospital -Westborough -Westbourne -Westbourne Park -Westbourne Terrace -Westbrae -Westbranch -Westbreeze -Westbridge -Westbrook -Westbrook Mill -Westbrooke -Westbury -Westbury Hicksville -Westcamp -Westcar -Westchester -Westchester Park -Westchester View -Westcliff -Westcliff Park -Westcliffe -Westcombe -Westcombe Park -Westcote -Westcott -Westcourt -Westcroft -Westdale -Westdean -Westdel -Wested -Westedge -Westell -Westend -Westentry -Wester -Wester Hill -Westerbeke Ranch -Westerdale -Westerfield -Westergate -Westerham -Westerhill -Westerhoff -Westerholt -Westerland -Westerleigh -Westerly -Western -Western Elms -Western Farms Ranch -Western Gailes -Western Hills -Western Link -Western Mine -Western Oak -Western Park -Western Perimeter -Western Perimiter -Western Shore -Western View -Westers -Westerton -Westervelt -Westfarm -Westfax -Westferry -Westfield -Westfield Park -Westfield Sole -Westfields -Westford -Westgate -Westgate Hill -Westgate Valley -Westglen -Westglow -Westgrove -Westhall -Westhampton -Westhatch -Westhaven -Westhead -Westhelp -Westhill -Westhills -Westholme -Westhorpe -Westhoughton -Westhulme -Westhumble -Westhurst -Westin -Westinghouse -Westings -Westknoll -Westlake -Westland -Westland Farm -Westland Ranch -Westlands -Westlawn -Westlea -Westleigh -Westley -Westline -Westlock -Westlund -Westly Garden -Westmacott -Westmaher -Westman -Westmead -Westmeadow -Westmeath -Westmere -Westmill -Westminister -Westminster -Westminster Marsham -Westminster Bridge -Westminster Hill -Westmont -Westmoor -Westmoorland -Westmora -Westmore -Westmore Grove -Westmoreland -Westmorland -Westmount -Westnedge -Westoe -Weston -Weston Bay -Weston Green -Weston Hill -Weston Hills -Weston Ridge -Westonbirt -Westoning -Westons Mill -Westospect -Westover -Westow -Westpark -Westphalia -Westphall -Westpointe -Westpole -Westport -Westporter -Westray -Westree -Westridge -Westringa -Westringia -Westrow -Westshire -Westshore -Westside -Westside Park -Weststar -Westthorpe -Westup -Westvale -Westvalley -Westview -Westview Forest -Westville -Westward -Westwater Point -Westway -Westwell -Westwich -Westwind -Westwood -Westwood Center -Westwood Forest -Westwood Glen -Westwood Hills -Westwood Park -Westwoods -Westy -Wet Gate -Wetheral -Wetherall -Wetherbee -Wetherbees -Wetherburn -Wetherby -Wetherden -Wethered -Wetherell -Wetherfield -Wetherill -Wetherole -Wethersfield -Wethington -Wethral -Wetlands -Wetmore -Wetumpka -Wetzel -Wewak -Wewanna -Wewers -Wexford -Wexford Heights -Wexford Hts -Wexhall -Wexham -Wexham Park -Wey -Wey Gates -Weyand -Weyanoke -Weyant -Weybosset -Weybossett -Weybourne -Weybridge -Weybrook -Weyburn -Weycombe -Weydon -Weydon Farm -Weydon Hill -Weydown -Weyerhaeuser -Weyham -Weyhill -Weyland -Weylea -Weyman -Weymanor -Weymisset -Weymoth -Weymouth -Weymouth Hill -Weynton -Weyrauch -Weyraugh -Weyside -Weystone -Weythorne -Weywood -Whack House -Whadcoat -Whaddon -Whalans -Whale -Whale Cove -Whaleboat -Whalebone -Whalebone Gulch -Whalen -Whaleneck -Whaler -Whalers Cove -Whales -Whaleship -Whalewood -Whaley -Whaling -Whalley -Whalom -Whalon -Wham -Wham Bar -Whann -Wharf -Wharfdale -Wharfe -Wharfedale -Wharff -Wharfside -Wharncliffe -Wharton -Whatcom -Whateley -Whately -Whatley -Whatlington -Whatman -Whatmore -Whays -Wheat -Wheat Fall -Wheatash -Wheatberry -Wheatfield -Wheatgrain -Wheathampstead -Wheathelds -Wheathill -Wheatland -Wheatland Farms -Wheatlands -Wheatleigh -Wheatley -Wheatley Terrace -Wheaton -Wheaton Hills -Wheaton Oaks -Wheatridge -Wheatsheaf -Wheatstone -Wheatwheel -Whedbee -Wheedon -Wheel Farm -Wheel House -Wheelbarrow -Wheeldon -Wheeler -Wheeler Hills -Wheeler Knoll -Wheeler Peak -Wheeler Point -Wheelhouse -Wheeling -Wheelock -Wheelock Ridge -Wheelon -Wheelwright -Wheelwright Park -Wheelwrights -Whelan -Whelden -Wheldon -Wheler -Wheller -Whellock -Whempstead -Whenman -Whernside -Wherry -Wherwell -Whetmorhurst -Whetsted -Whetstone -Whetstone Hill -Whewell -Wheystone -Whibley -Whichcote -Whichita -Whidborne -Whidden -Whielden -Whiffle Tree -Whiffletree -Whig -Whigam -Whilaway -Whiley -Whiltshire -Whimberry -Whimbrel -Whimsey -Whinberry -Whinbush -Whincover -Whinfell -Whingate -Whingate Tong -Whingate Wortley -Whingate near Wortley -Whinneys -Whins -Whinslee -Whinyates -Whip -Whip Hill -Whip Owill -Whipoorwill -Whippany -Whippendell -Whippet -Whipple -Whipples -Whippletree -Whippoorwill -Whipporwill -Whipporwill Valley -Whipps Cross -Whipps Cross Wood -Whipsnade -Whirlaway -Whirley -Whiskey -Whiskey Bottom -Whiskey Creek -Whiskey Flat -Whiskey Hill -Whiskey Run -Whiskey Slough -Whiskin -Whisman Park -Whisper -Whisper Creek -Whisper Glen -Whisper Hill -Whisper Oaks -Whisper Willow -Whispering -Whispering Bay -Whispering Brook -Whispering Creek -Whispering Fields -Whispering Hill -Whispering Hills -Whispering Lake -Whispering Leaves -Whispering Oak -Whispering Oaks -Whispering Palms -Whispering Pine -Whispering Pines -Whispering River -Whispering Trails -Whispering Tree -Whispering Willow -Whispering Willows -Whispering Wind -Whispering Winds -Whispering Wood -Whispering Woods -Whisperwillow -Whisperwood -Whisperwood Glen -Whist -Whisterfield -Whistlepost -Whistler -Whistlerhill -Whistlers -Whistley Mill -Whistling Duck -Whistling Pine -Whistling Valley -Whiston -Whit -Whitacre -Whitaker -Whitaker Bluff -Whitall -Whitbarrow -Whitbourne -Whitbread -Whitbreads Farm -Whitburn -Whitby -Whitchurch -Whitclem -Whitcomb -White -White Acre -White Acres -White Ash -White Bagley -White Bank -White Barn -White Barns -White Beach -White Bear -White Beech -White Beeches -White Birch -White Bread -White Bridge -White Butts -White Carr -White Cedar -White Chapel -White Chappel -White Chimney -White Chimneys -White Church -White City -White Cliffs -White Cloud -White Conduit -White Cornus -White Cottage -White Creek -White Deer -White Dove -White Duck -White Eagle -White Elm -White Feather -White Fence -White Ferry -White Fir -White Flint -White Forge -White Fox -White Gate -White Gates -White Granite -White Ground -White Hall -White Hart -White Hart Greenford -White Haven -White Hawk -White Heart -White Heron -White Hill -White Hill Fire -White Holme -White Horn -White Horse -White House -White House Canyon -White Ibis -White Island -White Kennett -White Knights -White Knowle -White Laith -White Laithe -White Lee -White Leghorn Farm -White Lion -White Lyons -White Marsh Park -White Moss -White Mountain -White Oak -White Oak Ridge -White Oak Tree -White Oaks -White Owl -White Pine -White Pine Knoll -White Pines -White Plains -White Pond -White Post -White Ridge -White Rock -White Rock Spring -White Rose -White Rose Access -White Saddle -White Sands -White Space -White Spots -White Sulphur Spring -White Surf -White Swan -White Tail -White Tailed -White Thorn -White Water -White Willow -White Wing -Whiteacre -Whitebank -Whitebark -Whitebarn -Whitebarns -Whitebeam -Whitebick -Whitebirch -Whitebridge -Whitebrook -Whitebroom -Whitecap -Whitecarr -Whitechapel -Whitechapel High -Whitecliff -Whitecliffe -Whitecombe -Whitecote -Whitecroft -Whitecroft Heath -Whitecross -Whited -Whitedown -Whitefence -Whitefield -Whitefields -Whitefir -Whiteford -Whitefriars -Whitefur -Whitegate -Whitegates -Whitehall -Whitehall Beach -Whitehall Farm -Whitehall Park -Whitehall Plains -Whitehave -Whitehaven -Whitehead -Whiteheads -Whiteheath -Whitehill -Whitehills -Whiteholm -Whiteholme -Whitehorse -Whitehough Head -Whitehouse -Whitehurst -Whitekirk -Whiteknights -Whitelake -Whiteland -Whitelands -Whitelaw -Whitelawn -Whitelea -Whiteleaf -Whitelegg -Whitelegge -Whiteley -Whiteley Croft -Whitelock -Whitelow -Whitely -Whiteman -Whitemarsh -Whitemore -Whitenack -Whiteoak -Whiteoaks -Whitepine -Whitepit -Whitepost -Whitepost Wood -Whiterim -Whiteriver -Whiterock -Whiterose -Whites -Whites Cove -Whites Creek -Whites Ferry -Whites Landing -Whites Pond -Whites Ridge -Whitesail -Whitesand -Whitesands -Whitesell -Whiteside -Whitesides -Whitesmead -Whitesmith -Whitespruce -Whitestile -Whitestone -Whitesurf -Whitetail -Whitethorn -Whitethorne -Whitetire -Whitewall -Whitewater -Whiteway -Whitewaybottom -Whitewebbs -Whitewell -Whitewillow -Whitewood -Whitfeld -Whitfield -Whitfield Chapel -Whitford -Whitgift -Whitham -Whithouse -Whitin -Whiting -Whiting Beach -Whitingham -Whitings -Whitington -Whitins -Whitkirk -Whitla -Whitlam -Whitland -Whitlars -Whitlatch -Whitlers Creek -Whitley -Whitley Park -Whitley Wood -Whitling -Whitlock -Whitlowe -Whitman -Whitman Ridge -Whitmarsh -Whitmer -Whitmoor -Whitmoor Vale -Whitmor -Whitmore -Whitmore Brook -Whitmore Vale -Whitnall -Whitnell -Whitney -Whitney Pond -Whitney Tavern -Whitneys Landing -Whiton -Whitridge -Whits -Whits End -Whitsbury -Whitsell -Whitsett -Whitson -Whitstable -Whitstone -Whitta -Whittaker -Whittall -Whitteck -Whittell -Whittemore -Whitten -Whittham -Whittier -Whitting -Whittingham -Whittingstall -Whittington -Whittle -Whittles -Whittlesey -Whittman -Whittney -Whittock -Whitton -Whitton Dene Whitton -Whitton Dene Whitton -Whitton Gladstone -Whitton Lincoln -Whitton Manor -Whittredge -Whitwell -Whitwood -Whitwood Common -Whitworth -Whiznan -WhizzGo Tariff -Whli -Wholfords -Whomerley -Whomsoever -Whoolden -Whopshott -Whorlong -Whorlton -Whortleberry -Whowell -Why Worry -Whyman -Whynstones -Whyse -Whyte -Whyte Park -Whytecliff -Whyteladyes -Whyteleaf -Whyteleafe -Whyteville -Whytingham -Wiak -Wianamatta -Wianno -Wibird -Wiblen -Wicasse -Wichard -Wichbrook -Wichern -Wichett -Wichita -Wichitaw -Wichkam -Wichman -Wick -Wick Beech -Wick Farm -Wick Hill -Wicke -Wickell -Wicken -Wickenby -Wickenden -Wickens -Wickentree -Wicker -Wicker Park -Wickersham -Wickersley -Wicket -Wickett -Wickford -Wickham -Wickham Bishops -Wickhurst -Wicklands -Wickley -Wickliffe -Wicklow -Wicklund -Wicks -Wickshire -Wickson -Wickstead -Wickwood -Wicomico -Wicomoco -Widberg -Widbrook -Widcombe -Widden -Widdenham -Widdicombe -Widdin -Widdington -Widdop -Wide -Widebranch -Widecroft -Widegate -Widemere -Wideview -Widewater -Widford -Widgeon -Widger -Widget -Widgiewa -Widicombe -Widley -Widmer -Widmere -Widmore -Widmore Lodge -Widnell -Widnes -Widows Mite -Wieboldt -Wiebusch -Wieczorkowski -Wiedemann -Wiedner -Wiegman -Wiehle -Wieland -Wield -Wierimus -Wiers -Wierton -Wiesbrock -Wiesbrook -Wiese -Wieuca -Wigan -Wigans -Wigborough -Wigens -Wigeon -Wiget -Wiggenhall -Wiggie -Wiggin -Wiggington -Wiggins -Wigginton -Wiggles -Wigglesworth -Wiggs -Wight -Wight Farm -Wightman -Wigle -Wigley -Wigley Bush -Wigmore -Wigram -Wigsby -Wigsey -Wigshaw -Wigston -Wigton -Wigwam -Wigwam Hill -Wihtred -Wike -Wike Ridge -Wikiup -Wikiup Meadows -Wilandra -Wilaneta -Wilart -Wilbanks -Wilbeam -Wilber -Wilberforce -Wilbert -Wilberta -Wilbr -Wilbraham -Wilbrandt -Wilbung -Wilbur -Wilburdale -Wilburn -Wilburne -Wilbury -Wilbury Hills -Wilby -Wilcarra -Wilco -Wilcock -Wilcot -Wilcott -Wilcox -Wilcoxen -Wilcoxson -Wilcutt -Wild -Wild Acre -Wild Acres -Wild Ash -Wild Bees -Wild Briar -Wild Canyon -Wild Cherry -Wild Cranberry -Wild Creek -Wild Duck -Wild Fire -Wild Flower -Wild Flower Park -Wild Forest -Wild Game -Wild Ginger -Wild Goose -Wild Hedge -Wild Holly -Wild Horse -Wild Horse Valley -Wild Hunt -Wild Indigo -Wild Iris -Wild Ivy -Wild Lilac -Wild Meadow -Wild Meadows -Wild Oak -Wild Olive -Wild Plum -Wild Prairie -Wild River -Wild Rose -Wild Spruce -Wild Timothy -Wild Turkey -Wilda -Wildara -Wildberry -Wildbriar -Wildbrook -Wildcat -Wildcat Canyon -Wildcliff -Wildcrest -Wildcroft -Wilde -Wilde Willow -Wilden -Wilden Park -Wilder -Wilder Point -Wilderfield -Wilderhold -Wildermuth -Wilderness -Wilderness Run -Wilderness Walk -Wildernesse -Wilderswood -Wilderton -Wilderwick -Wilderwood -Wildes -Wildewood -Wildey -Wildfell -Wildfire -Wildflower -Wildgoose -Wildhawk -Wildhawk West -Wildhedge -Wildhill -Wildhorse -Wildhouse -Wildhurst -Wilding -Wildish -Wildley -Wildlife -Wildlife Loop -Wildman -Wildmeadow -Wildmere -Wildmoor -Wildoak -Wildomar -Wildon -Wildpark -Wildpines -Wildridge -Wildridings -Wildrose -Wildrose Springs -Wilds -Wildspring -Wildthorn -Wildview -Wildwing -Wildwood -Wildwood Bay -Wildwood Beach -Wildwood Mountain -Wileden -Wilelinor -Wiles -Wiles Farm -Wiley -Wileys -Wilfield -Wilford -Wilfred -Wilga -Wilgarth -Wilgate Green -Wilgus -Wilhaggin -Wilhaggin Park -Wilhelm -Wilhelmi -Wilhelmina -Wilhemina -Wilhern -Wilk -Wilke -Wilken -Wilkening -Wilkens -Wilker -Wilkerson -Wilkes -Wilkes Barre -Wilkesboro -Wilkie -Wilkin -Wilkins -Wilkins Glen -Wilkinson -Wilks -Wilksch -Wilkshire -Will -Will Cook -Will Merry -Will Rogers -Will Sawyer -Will Scarlet -Will Scarlett -Will Wool -Willa -Willaburra -Willada -Willamette -Willan -Willand -Willandale -Willandra -Willans -Willara -Willarch -Willard -Willard Dunham -Willard Grant -Willard Point -Willarong -Willaroo -Willawa -Willben -Willborough -Willbutts -Willcott -Willcrest -Wille -Willee -Willement -Willems -Willen -Willen Field -Willenhall -Willens -Willerby -Willeroo -Willers -Willersley -Willerval -Willes -Willesden -Willester -Willet -Willets -Willets Point -Willett -Willett Pond -Willetts -Willetts Crossing -Willever -Willey -Willey Broom -Willeys -Willfox -William -William Allen -William B Long Jr -William B Terry -William Beanes -William Berry -William Bird -William Booth -William Campbell -William Carr -William Chambers Jr -William Cunningham -William D Bliss -William Day -William Delameter -William Downes -William Edgar -William Edward -William Evans -William Fairfield -William Foster -William G -William Gooding -William Harrington -William Henry -William Howell -William IV -William Joseph -William Kelley -William Kirk -William Lake Shore -William Mahoney -William Mannix -William May Park -William Mosby -William Moss -William Penn -William Pishner Jr -William Reed -William Rigby -William Shakespeare -William T Morrissey -William Tanner -William Tell -William Terry -William Wade -William Ward -William Wood -Williamo -Williams -Williams Port -Williams Wood -Williams Woods -Williamsberg -Williamsborough -Williamsbridge -Williamsburg -Williamsburgh -Williamson -Williamson Ranch -Williamsport -Williamstown -Willian -Willian Church -Williar -Williard -Willick -Willie -Willie B Kennedy -Willie Johnson -Willie Johnsone -Williford -Willig -Willigan -Willingale -Willingdon -Willington -Willis -Willis Holden -Willis Lake -Willis Miller -Willison -Williston -Williton -Willits -Willius -Willmar -Willmohr -Willmonton -Willmot -Willmott -Willo Mar -Willobrook -Willoby -Willock -Willora -Willotta -Willougby -Willoughby -Willoughby Newton -Willoughby Park -Willoughby Point -Willow -Willow Bank -Willow Bay -Willow Bend -Willow Bottom -Willow Bridge -Willow Brook -Willow Camp Fire -Willow Circle -Willow Creek -Willow Crescent -Willow Cresent -Willow Crest -Willow Dale -Willow Edge -Willow Falls -Willow Farm -Willow Forge -Willow Gate -Willow Glade -Willow Glen -Willow Grove -Willow Hill -Willow Hills -Willow Knoll -Willow Lake -Willow Lakes -Willow Leaf -Willow Oak -Willow Oaks -Willow Oaks Corporate -Willow Park -Willow Pass -Willow Point -Willow Pond -Willow Ridge -Willow River -Willow Run -Willow Shore -Willow Spring -Willow Springs -Willow Springs School -Willow Switch -Willow Terrace -Willow Tree -Willow Valley -Willow View -Willow Way Long -Willow Well -Willow West -Willow Wood -Willow Woods -Willowan -Willoway -Willowbank -Willowbend -Willowbrae -Willowbridge -Willowbrook -Willowcreek -Willowcrest -Willowcroft -Willowdale -Willowdean -Willowdene -Willowfield -Willowgate -Willowgrove -Willowhaven -Willowhayne -Willowhill -Willowhurst -Willowick -Willowie -Willowleaf -Willowmead -Willowmeade -Willowmere -Willowmere Woods -Willowmont -Willowood -Willowpark -Willowpond -Willowridge -Willows -Willows Edge -Willowside -Willowside Ranch -Willowthree -Willowtree -Willowview -Willowwick -Willowwood -Willrush -Willry -Wills -Willshaw -Willshire -Willson -Willston -Willunga -Willvail -Willy -Willyama -Willys -Wilma -Wilmac -Wilman -Wilmar -Wilmarth -Wilmcote -Wilmer -Wilmerding -Wilmerhatch -Wilmett -Wilmette -Wilmington -Wilmington Court -Wilmont -Wilmor -Wilmore -Wilmot -Wilmoth -Wilmott -Wilmount -Wilms -Wilmslow -Wilmslow Old -Wilmur -Wilogreen -Wilona -Wiloughby -Wilpshire -Wilrose -Wilroy -Wilryan -Wilscot -Wilsey -Wilsham -Wilshaw -Wilshere -Wilshire -Wilsman -Wilsmere -Wilsom -Wilson -Wilson Bridge -Wilson Farm -Wilson Fold -Wilson Hall -Wilson Hill -Wilson Park -Wilson Pond -Wilson Ridge -Wilson Valley -Wilson Wood -Wilson Woods Park -Wilsondale -Wilsons -Wilsons Creek -Wilsons Grove -Wilsonville -Wilstone -Wilstrode -Wilt -Wilton -Wilton Croft -Wilton Oaks -Wilton South -Wiltonshire -Wiltsey -Wiltshire -Wilwade -Wilward -Wilwick -Wilwood -Wilzette -Wiman -Wimbart -Wimberry Hill -Wimbledon -Wimbledon Park -Wimblehurst -Wimbleton -Wimbley -Wimblington -Wimborne -Wimbourne -Wimland -Wimlands -Wimmer -Wimple -Wimpole -Wimpory -Wims -Wimsatt -Wimslow -Win Haven -Winafred -Winamac -Winans -Winant -Winberie -Winbolt -Winborne -Winborough -Winbourne -Winburn -Winburndale -Wincanton -Winch -Winch Park -Wincham -Winchat -Winchbottom -Winchcombe -Winchell -Winchelsea -Winchendon -Winchester -Winchester Beach -Winchfield -Winchgrove -Winchmore -Winchmore Hill -Wincliff -Winco -Wincoat -Wincoma -Wincombe -Winconsin -Wincott -Wincrest -Wincroft -Wincrofts -Wind -Wind Creek -Wind Crest -Wind Flower -Wind Hill -Wind Meadow -Wind Mill -Wind Ridge -Wind River -Wind Sock -Wind Song -Windabout -Windamere -Windarra -Windbeam -Windblown -Windborough -Windbreak -Windbridge -Windbrook -Windbrooke -Windchime -Windcliff -Windcloud -Windcrest -Windeler -Windell -Windemere -Winder -Windermere -Winders -Windett -Windett Ridge -Windette -Windeyer -Windfall -Windfeldt -Windfield -Windflower -Windgate -Windham -Windham Cove -Windhaven -Windhill -Windhill Old -Windhorn -Windimer -Winding -Winding Bluff -Winding Branch -Winding Brook -Winding Brooke -Winding Canyon -Winding Creek -Winding Farm -Winding Glenn -Winding Hill -Winding Hills -Winding Lakes -Winding Meadow -Winding Oak -Winding Ridge -Winding River -Winding Rose -Winding Run -Winding Trail -Winding Way -Winding Waye -Winding Wood -Winding Woods -Windjammer -Windkist Farm -Windlass -Windle -Windleaf -Windlehurst -Windlesham -Windley -Windmeadows -Windmere -Windmill -Windmill Canyon -Windmill Cove -Windmill Farms -Windmill Field -Windmill Hill -Windmill Park -Windmill Quay -Windolf -Windom -Windong Wood -Windorra -Windouree -Windover -Windplay -Windrew -Windridge -Windrift -Windrock -Windrose -Windrow -Windrunner -Windrush -Windrush Farm -Windsail -Windscale -Windshire -Windsmere Hill -Windsock -Windsong -Windsong South -Windsor -Windsor Bridge Brocas -Windsor Brook -Windsor Court -Windsor Farm -Windsor Gate -Windsor Hill -Windsor Hills -Windsor Knoll -Windsor Lake -Windsor Manor -Windsor Palms -Windsor Park -Windsor Ridge -Windsor River -Windsor View -Windsor Village -Windspoint -Windspun -Windstar -Windstone -Windstream -Windswept -Windtree -Windus -Windward -Windward Key -Windwhisper -Windwood -Windwood Farms -Windy -Windy Bank -Windy Cove -Windy Creek -Windy Field -Windy Harbour -Windy Hill -Windy Hollow -Windy Knoll -Windy Knolls -Windy Oak -Windy Oaks -Windy Pine -Windy Point -Windy Prairie -Windy Ridge -Windy River -Windy Springs -Windy Valley -Windybush -Windyhill -Wine -Wine Barrel -Wine Country -Wine Creek -Wine Garden -Wine Master -Wineberry -Winedale -Wineham -Winer -Winery -Wines -Winesap -Winewood -Winexburg Manor -Winfal -Winfell -Winfield -Winfield Scott -Winfields -Winfisky -Winford -Winforton -Winfred -Winfrith -Wing -Wing Park -Wing Pointe -Wingara -Wingard -Wingate -Wingates -Winged Cove -Winged Foot -Wingello -Winger -Wingfield -Wingflash -Wingfoot -Wingford -Wingham -Wingle Tye -Wingletye -Wingmore -Wingpointe -Wingra -Wingrave -Wingrove -Wings -Wingsong -Wingstem -Winham -Winiebago -Winifred -Winje -Winkel -Winkelman -Winkers -Winkfield -Winkin -Winkle -Winkle Point -Winklebleck -Winkler -Winkley -Winkurra -Winkworth -Winlock -Winmarith -Winmeade -Winmeyer -Winmill -Winmoor -Winn -Winn Common -Winn Moor -Winn Valley -Winnaleah -Winne -Winnebago -Winnecomac -Winneconnett -Winnegance -Winnemac -Winnemay -Winnemere -Winnepeg -Winnepog -Winnepurkit -Winners -Winnetaska -Winnetka -Winnetka Heights -Winnetka Hts -Winnetou -Winnett -Winnetuxett -Winnie -Winnifred -Winning -Winnington -Winnington Old -Winnipeg -Winnisemette -Winnisimmet -Winnmere -Winnock -Winnow Down -Winnpenny -Winns -Winnsboro -Winnunga -Winoka -Winona -Winonah -Winpark -Winrock -Winrose -Winsby -Winscar -Winscombe -Winsdale -Winsdon -Winser -Winsfield -Winsford -Winshaw -Winship -Winside -Winskill -Winsland -Winslea -Winsley -Winslow -Winslow Cemetery -Winslow Farm -Winslowe -Winsmoor -Winsom -Winsome -Winsor -Winspear -Winstanley -Winstead -Winstead Manor -Winsted -Winsten -Winster -Winston -Winston Forest -Winstone Scott -Winstre -Winstree -Winta -Winten -Winter -Winter Brook -Winter Corn -Winter Creek -Winter Crest -Winter Garden -Winter Haven -Winter Hey -Winter Hill -Winter Hunt -Winter Island -Winter Laurel -Winter Park -Winter Sun -Winter Thicket -Winter View -Winter Walk -Winter Willow -Winterberry -Winterborne -Winterbottom -Winterbourne -Winterbrook -Wintercorn -Wintercress -Winterdown -Winterfield -Winterford -Wintergate -Wintergreen -Wintergrove -Wintergull -Winterhaven -Wintermans -Winterpit -Winterrun -Winters -Winterscroft -Wintersells -Winterset -Wintershutt -Winterslow -Winterson -Winterspoon -Winterstein -Winterstoke -Winterswyk -Winterthur -Winterton -Winterway -Winterwell -Winterwind -Winterwood -Winthorpe -Winthrop -Winthrop New -Winthrop Shore -Winthrope -Wintney -Winton -Wintree -Wintun -Winward -Winwick Link -Winwood -Winyah -Wiobata -Wire -Wire Mill -Wirega -Wireless -Wireton -Wirksmoor -Wirling -Wirrabara -Wirralee -Wirralie -Wirraway -Wirreanda -Wirrinda -Wirruna -Wirt -Wirth -Wirthman -Wirthmore -Wirtz -Wisbeach -Wisbech -Wisbeck -Wisborough -Wiscasset -Wisconsin -Wisden -Wisdom -Wise -Wisely Sq -Wiseman -Wiser -Wises -Wiseton -Wish -Wishanger -Wishart -Wishbone -Wishing -Wishing Rock -Wishing Well -Wishkah -Wishmoor -Wishon -Wisley -Wisner -Wisnev -Wisnom -Wisp -Wispering Hollow -Wiss -Wissahican -Wisse -Wisseman -Wissenden -Wisser -Wissing -Wissioming -Wissman -Wistar -Wistaria -Wisteria -Wiston -Wistow -Wiswall -Witan -Witanhurst -Witby -Witch -Witch Hill -Witchcraft -Witcher -Witches -Witcom -Witek -Witham -Withan -Withenfield -Withens -Witherall -Witherbee -Witherenden -Witheridge -Witherington -Witherly -Withers -Withers Harbor -Withersed -Witherspoon -Witherwin -Withey -Withey Heights -Witheygate -Withies -Withington -Withinlee -Withins -Withins Hall -Withnell -Withorn -Withy -Withyfold -Withyham -Withypool -Witley -Witmer -Witney -Wits End -Witt -Wittama -Witte -Wittem -Wittenberg -Wittenbury -Wittenham -Witter -Wittersham -Wittes -Witthill -Witthoff -Wittington -Wittmead -Witton -Witty -Wituwamat -Wium -Wivelrod -Wivelsfield -Wivenhoe -Wiverton -Wix -Wixon -Wizard -Wm Clifford -Wo Udall -Wobbly -Woburn -Woburn Abbey -Wodecroft -Wodehouse -Woden -Woehrle -Woelfe -Woerd -Wofford -Wogshead -Wohler -Wohseepee -Woids -Woild Goose -Wokindon -Woking -Wokingham -Wokomis -Wolbach -Wolcott -Wolcutt -Woldham -Woldhuis -Woldingham -Woldingham School -Woldzienski -Wolesey -Wolf -Wolf Creek -Wolf Crossing -Wolf Den -Wolf Hill -Wolf Pond -Wolf Ridge -Wolf River -Wolf Rock -Wolf Run -Wolf Run Hills -Wolf Run Shoals -Wolf Valley -Wolfberry -Wolfe -Wolfe Canyon -Wolfe Hill -Wolfeboro -Wolfenden -Wolff -Wolfhill -Wolfington -Wolfle -Wolford -Wolfs -Wolfskill -Wolfson -Wolftrap -Wolftrap Run -Wolftree -Wolger -Wolkoff -Wolkow -Wollam -Wollaston -Wolley -Wolli -Wolli Creek -Wollitzer -Wollmington -Wollombi -Wollondilly -Wollongbar -Wollongong -Wollun -Wollybutt -Wolombi -Wolomolopoag -Wolpers -Wolseley -Wolsey -Wolsfeld -Wolski -Wolsten -Wolstenholme -Wolters -Wolton -Wolumba -Wolvens -Wolver Hollow -Wolvercote -Wolverine -Wolverns -Wolverton -Wolves -Womack -Womantam -Womantum -Wombat -Wombeyan -Wombidgee -Womboyne -Womerah -Womersley -Wompanoag -Wompatuck -Wonder -Wonderama -Wondercolor -Wonderland -Wong -Wonga -Wonga Wonga -Wongala -Wongalee -Wonham -Woniora -Wonston -Wontford -Wontner -Woobly -Wooburn Common -Wood -Wood Acers -Wood Acres -Wood Bridge -Wood Brook -Wood Court -Wood Creek -Wood Duck -Wood Ember -Wood End -Wood End Green -Wood Farm -Wood Glade -Wood Glen -Wood Green -Wood Hampton -Wood Haven -Wood Hill -Wood Hollow -Wood Home -Wood House -Wood Island -Wood Knoll -Wood Lake -Wood Lark -Wood Lily -Wood Lodge -Wood Lot Trail -Wood Mar -Wood Mist -Wood Oak -Wood Park -Wood Pointe -Wood Ranch -Wood Ridge -Wood Rock -Wood Sage -Wood Side -Wood Sorrel -Wood Sorrels -Wood Spice -Wood Thrush -Wood Top -Wood Valley -Wood View -Woodacre -Woodacres -Woodale -Woodall -Woodands -Woodard -Woodbank -Woodbanke -Woodbastwick -Woodbent -Woodberry -Woodbine -Woodbole -Woodboro -Woodborough -Woodbourne -Woodbrae -Woodbray -Woodbriar -Woodbridge -Woodbridge Centre -Woodbrier -Woodbrook -Woodbrooke -Woodbrrok -Woodburn -Woodburn Village -Woodbury -Woodbury Farms -Woodbury Lakes -Woodbury Park -Woodby -Woodchase -Woodchester -Woodchuck -Woodchuck Hill -Woodchuck Hollow -Woodcleft -Woodcliff -Woodcliff Lake -Woodcliffe -Woodclyffe -Woodcock -Woodcock Dell -Woodcote -Woodcote Green -Woodcote Grove -Woodcote Park -Woodcourt -Woodcox -Woodcreek -Woodcrest -Woodcroft -Woodcut -Woodcutter -Woodcutters -Wooddale -Woodduck -Wooded -Wooded Branch -Wooded Brook -Wooded Creek -Wooded Glen -Wooded Hills -Wooded Lake -Wooded Path -Wooded Ridge -Wooded Run -Wooded Trace -Wooded View -Woodedge -Woodelf -Wooden -Wooden Bridge -Wooden Hawk -Wooden Path -Wooden Spoke -Wooden Valley -Wooden Valley Cross -Woodend -Woodewind -Woodfair -Woodfall -Woodfarm -Woodfern -Woodfield -Woodfield Estates -Woodfield Park -Woodfield School -Woodfold -Woodford -Woodford New -Woodforest -Woodgarth -Woodgate -Woodgate Hill -Woodger -Woodglade -Woodglen -Woodglenn -Woodgrange -Woodgreen -Woodgrove -Woodhail -Woodhall -Woodhall Park -Woodhalt -Woodham -Woodham Park -Woodhams -Woodhatch -Woodhaven -Woodhayes -Woodhead -Woodhey -Woodheys -Woodhill -Woodhill Common -Woodhollow -Woodholm -Woodhouse -Woodhouse Hill -Woodhue -Woodhull -Woodhurst -Wooding -Woodington -Woodinville -Woodiris -Woodkirk -Woodknoll -Woodlake -Woodlake Hills -Woodland -Woodland Beach -Woodland Crossing -Woodland Estates -Woodland Falls -Woodland Forest -Woodland Heights -Woodland Hills -Woodland Lake -Woodland Meadow -Woodland Park -Woodland Pond -Woodland Run -Woodland Valley -Woodland Way Abbey -Woodlands -Woodlands Hill -Woodlands Park -Woodlane -Woodlark -Woodlawn -Woodlawn East -Woodlawn Gable -Woodlawn Green -Woodlawn West -Woodlawnd -Woodlea -Woodlea Mill -Woodleaf -Woodledge -Woodlee -Woodleigh -Woodlet -Woodley -Woodley Woods -Woodliffe -Woodloch -Woodlock -Woodloo -Woodlore -Woodlot -Woodlow -Woodlyn -Woodlynn -Woodman -Woodmanhurst -Woodmans -Woodmansterne -Woodmar -Woodmark -Woodmeadow -Woodmere -Woodmill -Woodminister -Woodminster -Woodmire -Woodmont -Woodmoor -Woodmore -Woodmore Oaks -Woodnook -Woodnote -Woodoak -Woodoaks -Woodpark -Woodpath -Woodpecker -Woodpecker Ridge -Woodpiece -Woodplace -Woodpoint -Woodpond -Woodrail -Woodranch -Woodredon Farm -Woodreeve -Woodrest -Woodridge -Woodridings -Woodriff -Woodriffe -Woodring -Woodrock -Woodroe -Woodrolfe -Woodrolfe Farm -Woodrose -Woodrow -Woodrow Wilson -Woodroyd -Woodruff -Woodrush -Woods -Woods Center -Woods Chapel -Woods Cove -Woods Creek -Woods Edge -Woods End -Woods Hill -Woods Hole -Woods Landing -Woods Moor -Woods On Mass. -Woods Pond -Woods Wharf -Woods of Arden -Woodsboro -Woodsbury -Woodscape -Woodsdale -Woodseats -Woodseer -Woodsend -Woodsend Crescent -Woodshire -Woodshole -Woodside -Woodside Court -Woodside Grange -Woodside Meadows -Woodside Park -Woodside Tavern Low -Woodside View -Woodsley -Woodsman -Woodsmoor -Woodsome -Woodson -Woodsong -Woodstock -Woodston -Woodstone -Woodstown -Woodstream -Woodsum -Woodsview -Woodsworth -Woodthorpe -Woodthrush -Woodtree -Woodvale -Woodvale Pond -Woodvalley -Woodview -Woodview Terrace -Woodvill -Woodville -Woodward -Woodwarde -Woodwardia -Woodwards -Woodway -Woodway Park -Woodwaye -Woodwell -Woodwild -Woodwillow -Woodwind -Woodwinds -Woodwise -Woodworth -Woodwren -Woody -Woody Creek -Woody Island -Woody Wolfe -Woodyard -Woodycrest -Wool -Wool Creek -Woolacombe -Woolaroc -Woolbeding -Woolborough -Woolbrook -Woolcott -Wooldeys -Wooldridge -Wooldrige -Wooler -Wooley -Wooleys -Wooleytown -Woolf -Woolfenden -Woolfield -Woolford -Woolgen Park -Woolgoolga -Woolgrove -Woolifers -Woolington -Woollands -Woollard -Woollaston -Woollett -Woolley -Woolley Bridge -Woolley Mill -Woollin -Woolman -Woolmead -Woolmer -Woolmer Hill -Woolmers -Woolmongers -Woolmore -Woolneigh -Woolner -Woolpack -Woolpert -Woolreeds -Woolsey -Woolson -Woolsthorpe -Woolston -Woolstone -Woolsy -Woolwash -Woolwich -Woolwich Burrage -Woolwich Hare -Woolwich Church -Woolwich New -Woolworth -Woomera -Woongarra -Woonsocket Hill -Woonsockett -Woorail -Woorang -Woorarra -Woosehill -Woosley -Wooster -Wooten -Wooton -Wootten -Woottens -Wootton -Woowich -Worbeck -Worbler -Worcester -Worcester County Jail -Worcester Park -Worcester Providence -Worcesters -Worchester -Worden -Wordoo -Wordsworth -Wordswotrh -Wordworth -Worfield -Workesleigh -Workhouse -Workman -Works -Worland -World -World Trade Center -Worldgate -Worlds End -Worley -Worleys -Worlidge -Worlingham -Wormald -Worman -Wormdale -Worminghall -Wormley -Wormstead -Wormwood -Worn Springs Fire -Wornington -Woronoco -Woronora -Woronora Dam -Woronzow -Woropieff -Worple -Worplesdon -Worral -Worrall -Worrel -Worrell -Worrin -Worrobil -Worsefold -Worsel -Worsester -Worsham -Worship -Worslade -Worsley -Worsley Bridge -Worsopp -Worsted -Worster -Worston -Wortendyke -Worth -Worth Park -Wortham -Worthen -Worthern -Worthing -Worthington -Worthley -Worthmor -Worting -Wortley -Wortley Moor -Wortman -Worton -Worts Hill -Wortylko -Worwood -Wostbrock -Wote -Wotton -Wotton Green Sandway -Wouldham -Wounded Knee -Woverley -Wragby -Wragg Canyon -Wraight -Wrangell -Wrangleden -Wrangler -Wrangling -Wrangthorn -Wrath Fold -Wray -Wray Common -Wray Field -Wray Park -Wrayfield -Wraylands -Wraysbury -Wrecclesham -Wreden -Wrekin -Wren -Wren Hollow -Wren Nest -Wrenbeck -Wrenbrook -Wrenbury -Wrench -Wrendale -Wrenfield -Wrenn -Wrenn House -Wrens -Wrenshot -Wrentham -Wrenthorpe -Wrentmore -Wrenwood -Wrexhall -Wrexham -Wricklemarsh -Wride -Wrigglesworth -Wright -Wright Brothers -Wrighton -Wrights -Wrights Endeavor -Wrights Hollow -Wrights Meadow -Wrightsbridge -Wrightson -Wrightwood -Wrigley -Wrin -Writtle -Wrotham -Wrotham Hill -Wrotham Water -Wrottesley -Wroughton -Wroxeter -Wroxham -Wroxton -Wrythe -Wssc Treatment Plant -Wudgong -Wuester -Wulff -Wulfstan -Wunaquit -Wunda -Wunderlich -Wunulla -Wurley -Wurr -Wuthering Heights -Wyaconda -Wyadra -Wyagara -Wyagdon -Wyalong -Wyanbah -Wyandanch -Wyandemere -Wyandot -Wyandotte -Wyanet -Wyanga -Wyanoke -Wyargine -Wyatt -Wyatt Park -Wyatts -Wyatts Green -Wyatts Ridge -Wyatville -Wybalena -Wybeck Valley -Wyberlye -Wybersley -Wybournes -Wyburn -Wych -Wych Elm -Wych Hill -Wychbury -Wychelm -Wychewood -Wychford -Wychperry -Wychview -Wychwood -Wyck -Wycke -Wyckland -Wyckoff -Wyckwood -Wyclif -Wycliff -Wycliffe -Wycoff -Wycomb -Wycombe -Wycombe Park -Wyddial -Wydehurst -Wydeville Manor -Wydown -Wye -Wye Oak -Wyee -Wyena -Wyeth -Wyfold -Wygal -Wykagyl -Wyke -Wykebeck Valley -Wykeham -Wykehurst -Wykoff -Wylands -Wyld -Wyld Green -Wylde -Wyldewood -Wylds -Wyldwood -Wyles -Wyleu -Wylie -Wylie Hill -Wyllie -Wyllis -Wyllyotts -Wylmar -Wylo -Wylvale -Wyman -Wymans Beach -Wymar -Wymering -Wymond -Wymondley -Wymston -Wynan -Wynbrook -Wynbrooke -Wynbury -Wyncham -Wynches Farm -Wynchgate -Wyncrest -Wyndale -Wyndam -Wyndbrook -Wyndcliff -Wyndcliffe -Wyndcrest -Wyndehurst -Wyndemere -Wyndgate -Wyndham -Wyndham Cove -Wyndham Hill -Wyndham Oak -Wyndhill -Wyndhurst -Wyndmere -Wyndmoor -Wyndmuir -Wyndora -Wyndover -Wyndover Woods -Wyndstone -Wyndwood -Wyneham -Wynell -Wyness -Wynford -Wyngaard -Wyngate -Wynhurst -Wynkoop -Wynmore -Wynn -Wynndale -Wynne -Wynnewood -Wynnfield -Wynnleigh -Wynns -Wynnstay -Wynnstay Access -Wynnswick -Wynnwood -Wynot -Wynridge -Wynstone -Wynsum -Wynter -Wynwood -Wynyard -Wynyatt -Wyola -Wyoma -Wyomee -Wyoming -Wyona -Wyong -Wyphurst -Wyralla -Wyre -Wyreema -Wyres -Wyresdale -Wyrick -Wysteria -Wythal -Wythburn -Wythburne -Wythe -Wythens -Wythenshawe -Wyther -Wyther Park -Wythes -Wythfield -Wyton -Wyuna -Wyvern -Wyvil -Wyvile -Wyvill -Wyville -Wyvis -Wyx -Xanadu -Xandria -Xanthippe -Xanthus -Xaveria -Xavier -Xaviers -Xavis -Xebec -Xene -Xenia -Xenium -Xenwood -Xeon -Xerxes -Ximines -Xkimo -Xylon -Y Creek -Y D -YMCA -Yabsley -Yacenda -Yacht -Yacht Club -Yacht Harbor -Yachthaven -Yachtsman -Yachtview -Yackley -Yaffe -Yaffle -Yagar -Yager -Yagoona -Yahara -Yajome -Yakima -Yala -Yaldara -Yalding -Yale -Yalkin -Yallambee -Yallara -Yallaroi -Yalleroi -Yalta -Yamada -Yamane -Yamato -Yamba -Yamburg -Yamma -Yampa -Yampi -Yancey -Yanco -Yancy -Yandarlo -Yanderra -Yangalla -Yangang -Yangoora -Yanilla -Yankee -Yankee Division -Yankee Doodle -Yankee Harbor -Yankee Ridge -Yanko -Yankton -Yankton College -Yannina -Yantacaw Brook -Yantecaw -Yantlet -Yantz -Yapole -Yara -Yaraan -Yarabah -Yaralla -Yarberry -Yarbon -Yarborough -Yarburgh -Yard -Yardarm -Yardley -Yardley Hall -Yardley Manor -Yardley Park -Yare -Yargo -Yaringa -Yarland -Yarm Court -Yarmouth -Yarn -Yarnall -Yarnell -Yarnick -Yarnton Way Norman -Yarra -Yarra Burn -Yarra Burra -Yarrabee -Yarrabin -Yarrabung -Yarralumla -Yarram -Yarraman -Yarramundi -Yarran -Yarranbee -Yarrandale -Yarrangobilly -Yarrara -Yarrawa -Yarren -Yarrennan -Yarrow -Yarrowee -Yarrunga -Yarwood -Yasmar -Yatala -Yatama -Yate -Yateley -Yately -Yates -Yates Ford -Yattendon -Yaugher -Yaverland -Yawl -Yawpo -Yawung -Yeading -Yeadon -Yeadon Harper -Yeadon High -Yeadon Moor -Yeager -Yealand -Yeaman -Yeamans -Yeandle -Yeardon -Yeardsley -Yearling -Yearling Crossing -Yeasted -Yeate -Yeates -Yeatman -Yeaton -Yeats -Yednak -Yeend -Yeldall Manor Service -Yeldham -Yeldman -Yell -Yellambie -Yellow Bank -Yellow Bank Farm -Yellow Bell -Yellow Birch -Yellow Brick -Yellow Brook -Yellow Cab Access -Yellow Circle -Yellow Cote -Yellow Flower -Yellow Jacket Ranch -Yellow Lodge -Yellow Pine -Yellow Poplar -Yellow Rock -Yellow Rose -Yellow Tavern -Yellow Twig -Yellowbrick -Yellowcross -Yellowhammer -Yellowknife -Yellowood -Yellowpine -Yellowstar -Yellowstone -Yellowwood -Yelsted -Yelverton -Yenda -Yender -Yennicock -Yennora -Yeo -Yeoford -Yeomalt -Yeoman -Yeomans -Yeomans Acre Fore -Yeonas -Yeovil -Yeramba -Yeran -Yerba Buena -Yerba Santa -Yerbury -Yerby -Yereance -Yerger -Yerona -Yerong -Yerrick -Yerroulbin -Yerxa -Yeshiva -Yester -Yetholme -Yethonga -Yetman -Yetminster -Yetta -Yettner -Yew -Yew Tree -Yew Tree Bottom -Yew Tree Green -Yew Tree Park -Yewbarrow -Yewdale -Yewdall -Yewfield -Yewlands -Yews -Yewtree -Ygnacio -Ygnacio Valley -Yield Hall -Yillowra -Yimbala -Yindela -Yirak -Yirgella -Yirra -Yoakes -Yoakim -Yoakim Bridge -Yoakley -Yoakum -Yodalla -Yoder -Yoerg -Yoho -Yoke -Yokuts -Yola -Yolanda -Yolande -Yolane -Yolano -Yolano Mills -Yolo -Yolo Creek -Yon -Yona Vista -Yonkers -Yorba -York -York Gardens Lombard -York Mill -York Mills -York River -Yorkdale -Yorke -Yorkfield -Yorkie -Yorknolls -Yorks -Yorkshire -Yorkshire Woods -Yorkton -Yorkton Ridge -Yorktonw -Yorktown -Yorktown Mall -Yorktowne -Yorkview -Yorkville -Yorman -Yorton -Yosefa -Yosemite -Yosemite Park -Yoshida -Yosko -Yosocomico -Yost -Youd -Youens -Youghal -Youlden -Youle -Young -Young Bar -Youngberg -Youngblood -Younger -Younger Creek -Youngfield -Youngheart -Younglove -Youngs -Youngs Branch -Youngs Cliff -Youngs Farm -Youngs Hill -Youngs Valley -Youngsbury -Youngsdale -Youngsters -Youngstown -Youngstroat -Youngwood -Yount -Yountville Cross -Youse -Youth Center -Yovonovitz -Yowie -Yoxley -Ypres -Yreka -Yribarren -Ysabel -Yuba -Yuba Canal -Yucatan -Yucca -Yuhas -Yukka -Yukon -Yulan -Yule -Yule Tree -Yulong -Yuloni -Yulupa -Yuma -Yunga -Yunga Burra -Yurgel -Yurick -Yuro -Yuroka -Yurong -Yuruga -Yurunga -Yutan -Yvette -Yvonne -Yy -Z Line -ZAchary -ZAnzIbar -ZEnith -ZIegler -ZInnia -ZIon -ZOo -Zabelle -Zabriskie -Zabrosky -Zaca -Zacate -Zaccheus Mead -Zacharias -Zachary -Zachery -Zachman -Zack -Zadig -Zafra -Zaft -Zagora -Zahel -Zaininger -Zaleski -Zalman -Zambesi -Zambezie -Zambory -Zambrano -Zamia -Zammit -Zamora -Zampa -Zampatti -Zanco -Zand -Zander -Zane -Zange -Zangwill -Zanibar -Zanker -Zanni -Zanoni -Zanthus -Zanzibar -Zapata -Zapotec -Zara -Zaragosa -Zaragoza -Zardo -Zareh -Zarick -Zarita -Zarlee -Zartop -Zato -Zaton -Zatopeck -Zaunerowicz -Zauratsky -Zausa -Zavatt -Zayante -Zayante Lakes -Zayante School -Zaydee -Zazzetti -Zealand -Zealander -Zeally -Zebedee -Zebra -Zebulon Pike -Zeckendorf -Zeek -Zeeland -Zehnder -Zeigert -Zeigler -Zeim -Zeka -Zekan -Zekiah -Zela -Zelah -Zelda -Zelham -Zeliff -Zelinda -Zelkova -Zeller -Zellerbach -Zelma -Zeman -Zemble -Zemek -Zena -Zenas -Zendzian -Zengele -Zenia -Zenith -Zenith Ridge -Zenner -Zennia -Zennor -Zeno -Zenoria -Zephyr -Zephyr Ranch -Zeppelen -Zeppelin -Zeppi -Zerega -Zerman -Zermat -Zermatt -Zero -Zeta -Zetland -Zetta -Zetts -Zeus -Zieber -Ziegler -Ziele Creek -Zig Zag -Ziggy -Zileman -Zillah -Zils -Zimborski -Zimbro -Zimmer -Zimmerman -Zimpher -Zina -Zindaus -Zinder -Zinfandel -Zinfindel -Zinn -Zinnia -Zinran -Zinzan -Zion -Zion Chapel -Zions -Zipf -Zircon -Zirkel -Zisch -Ziska -Zita -Zito -Zoar -Zodiac -Zoe -Zoeller -Zoffany -Zola -Zoll -Zoller -Zompetti -Zona -Zoo -Zook -Zorah -Zoranne -Zoria Farms -Zorka -Zorrane -Zotti -Zottoli -Zouave -Zouch -Zoumar -Zuelke -Zug -Zulette -Zulmida -Zulu -Zumbra -Zumbro -Zumstein -Zumwalt -Zuni -Zunic -Zurich -Zuttion -Zutton -Zweber -Zwicky -Zygmunt -Zygouras -Zylonite \ No newline at end of file diff --git a/splunk_eventgen/samples/streetSuffixes.sample b/splunk_eventgen/samples/streetSuffixes.sample deleted file mode 100644 index 7520a47c..00000000 --- a/splunk_eventgen/samples/streetSuffixes.sample +++ /dev/null @@ -1,24 +0,0 @@ -Blvd. -Blvd. -St. -St. -St. -St. -St. -St. -Pkwy. -Pkwy. -Pkwy. -Ln. -Ln. -Ln. -Dr. -Dr. -Dr. -Dr. -Way -Way -Ave. -Ave. -Ave. -Hwy. \ No newline at end of file diff --git a/splunk_eventgen/samples/streets b/splunk_eventgen/samples/streets deleted file mode 100644 index d25bf1ad..00000000 --- a/splunk_eventgen/samples/streets +++ /dev/null @@ -1,168 +0,0 @@ -Acres -Amber -Anchor -Apple -Arbor -Autumn -Avenue -Bank -Barn -Beacon -Bear -Bend -Berry -Blossom -Blue -Bluff -Branch -Bright -Broad -Brook -Burning -Butterfly -Canyon -Chase -Cider -Cinder -Circle -Clear -Cloud -Colonial -Corner -Cotton -Court -Cove -Cozy -Creek -Crest -Crystal -Dale -Dale -Deer -Dell -Dewy -Dusty -Easy -Edge -Elk -Embers -Emerald -Estates -Fallen -Falls -Farms -Fawn -Foggy -Forest -Fox -Gardens -Gate -Gate -Gentle -Glade -Glen -Golden -Goose -Grand -Green -Grove -Grove -Harvest -Hazy -Heather -Hickory -Hidden -High -Highlands -Hills -Hollow -Honey -Horse -Indian -Iron -Island -Isle -Jagged -Jetty -Knoll -Lagoon -Lake -Landing -Lane -Lazy -Leaf -Ledge -Little -Log -Lost -Manor -Meadow -Merry -Mews -Middle -Misty -Mountain -Nectar -Noble -Nook -Oak -Old -Orchard -Panda -Park -Path -Pike -Pine -Pioneer -Place -Pleasant -Point -Pond -Pony -Prairie -Promenade -Quail -Quaking -Quiet -Rabbit -Red -Ridge -Rise -River -Robin -Rocky -Round -Round -Run -Rustic -Shadow -Shady -Silent -Silver -Sky -Sleepy -Spring -Stead -Stony -Sunny -Swale -Tawny -Terrace -Thunder -Timber -Trace -Trail -Treasure -Umber -Vale -Valley -Velvet -View -View -Vista -Wagon -Way -Willow -Wishing -Woods -Zephyr \ No newline at end of file diff --git a/splunk_eventgen/samples/trackIDs.sample b/splunk_eventgen/samples/trackIDs.sample deleted file mode 100644 index a8f20f78..00000000 --- a/splunk_eventgen/samples/trackIDs.sample +++ /dev/null @@ -1,23 +0,0 @@ -01011207201000005652000000000021 -01011207201000005652000000000047 -01011207201000005652000000000068 -01011207201000005652000000000018 -01011207201000005652000000000031 -01011207201000005652000000000007 -01011207201000005652000000000013 -01011207201000005652000000000041 -01011207201000005652000000000053 -01011207201000005652000000000023 -01011207201000005652000000000029 -01011207201000005652000000000037 -01011207201000005652000000000011 -01011207201000005652000000000003 -01011207201000005652000000000083 -01011207201000005652000000000017 -01011207201000005652000000000071 -01011207201000005652000000000026 -01011207201000005652000000000055 -01011207201000005652000000000084 -01011207201000005652000000000014 -01011207201000005652000000000025 -01011207201000005652000000000049 \ No newline at end of file diff --git a/splunk_eventgen/samples/transType.sample b/splunk_eventgen/samples/transType.sample deleted file mode 100644 index 61c7b11d..00000000 --- a/splunk_eventgen/samples/transType.sample +++ /dev/null @@ -1,6 +0,0 @@ -New -New -Change -Change -Change -Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/uris.sample b/splunk_eventgen/samples/uris.sample deleted file mode 100644 index 27d17be4..00000000 --- a/splunk_eventgen/samples/uris.sample +++ /dev/null @@ -1,5 +0,0 @@ -GET /browse/search -GET /browse/tracks -POST /sync/createplaylist -POST /playhistory/uploadhistory -POST /auth \ No newline at end of file diff --git a/splunk_eventgen/samples/userHostIp.sample b/splunk_eventgen/samples/userHostIp.sample deleted file mode 100644 index f33cf601..00000000 --- a/splunk_eventgen/samples/userHostIp.sample +++ /dev/null @@ -1,1000 +0,0 @@ -TAYLOR_DYE,TAYLOR_DYE-MPBR16,10.0.0.0 -ARMAND_ARAIZA,ARMAND_ARAIZA-MPBR16,10.0.0.1 -BENJAMIN_VANDEUSEN,BENJAMIN_VANDEUSEN-MPBR16,10.0.0.2 -SHANNON_BERNARDI,SHANNON_BERNARDI-MPBR16,10.0.0.3 -VIRGIL_FOUQUETTE,VIRGIL_FOUQUETTE-MPBR16,10.0.0.4 -LEANN_CHISUM,LEANN_CHISUM-MPBR16,10.0.0.5 -MEGHAN_BIONDI,MEGHAN_BIONDI-MPBR16,10.0.0.6 -JAKE_SPELL,JAKE_SPELL-MPBR16,10.0.0.7 -MIRTHA_SILVESTRI,MIRTHA_SILVESTRI-MPBR16,10.0.0.8 -ORPHA_BLANKS,ORPHA_BLANKS-MPBR16,10.0.0.9 -TOMMY_HENNEY,TOMMY_HENNEY-MPBR16,10.0.0.10 -HORACE_WELSCH,HORACE_WELSCH-MPBR16,10.0.0.11 -JAMAAL_BOEPPLE,JAMAAL_BOEPPLE-MPBR16,10.0.0.12 -JULIE_BLOXHAM,JULIE_BLOXHAM-MPBR16,10.0.0.13 -FREDERICA_SLAYDEN,FREDERICA_SLAYDEN-MPBR16,10.0.0.14 -SEAN_TARLOW,SEAN_TARLOW-MPBR16,10.0.0.15 -ELIZABETH_GAUKEL,ELIZABETH_GAUKEL-MPBR16,10.0.0.16 -HASSAN_SPERIER,HASSAN_SPERIER-MPBR16,10.0.0.17 -MARISELA_COLSTON,MARISELA_COLSTON-MPBR16,10.0.0.18 -LOWELL_SOLBERG,LOWELL_SOLBERG-MPBR16,10.0.0.19 -PAMALA_MUMPER,PAMALA_MUMPER-MPBR16,10.0.0.20 -BREANNE_STEFANIAK,BREANNE_STEFANIAK-MPBR16,10.0.0.21 -WINNIFRED_HARTS,WINNIFRED_HARTS-MPBR16,10.0.0.22 -CASIE_GEMME,CASIE_GEMME-MPBR16,10.0.0.23 -JUSTINE_TAPP,JUSTINE_TAPP-MPBR16,10.0.0.24 -SIDNEY_DRAPKIN,SIDNEY_DRAPKIN-MPBR16,10.0.0.25 -RAY_ETHRIDGE,RAY_ETHRIDGE-MPBR16,10.0.0.26 -GARFIELD_LOSECCO,GARFIELD_LOSECCO-MPBR16,10.0.0.27 -IRVING_HAVARD,IRVING_HAVARD-MPBR16,10.0.0.28 -GRETCHEN_BRIES,GRETCHEN_BRIES-MPBR16,10.0.0.29 -CLETUS_DAY,CLETUS_DAY-MPBR16,10.0.0.30 -SONNY_PAGLINAWAN,SONNY_PAGLINAWAN-MPBR16,10.0.0.31 -BREANNA_EMMER,BREANNA_EMMER-MPBR16,10.0.0.32 -GENARO_EVERSOLE,GENARO_EVERSOLE-MPBR16,10.0.0.33 -HILDA_POLLARO,HILDA_POLLARO-MPBR16,10.0.0.34 -DAMION_VESPIA,DAMION_VESPIA-MPBR16,10.0.0.35 -GROVER_REMALEY,GROVER_REMALEY-MPBR16,10.0.0.36 -EVERETT_SPRIGG,EVERETT_SPRIGG-MPBR16,10.0.0.37 -OLLIE_BEDNARCZYK,OLLIE_BEDNARCZYK-MPBR16,10.0.0.38 -LUPE_GUE,LUPE_GUE-MPBR16,10.0.0.39 -JANN_PITHAN,JANN_PITHAN-MPBR16,10.0.0.40 -TIARA_CEPEDA,TIARA_CEPEDA-MPBR16,10.0.0.41 -ZINA_HOLOM,ZINA_HOLOM-MPBR16,10.0.0.42 -LOUISE_CARLILE,LOUISE_CARLILE-MPBR16,10.0.0.43 -MADGE_EFAW,MADGE_EFAW-MPBR16,10.0.0.44 -OUIDA_RUGGIERI,OUIDA_RUGGIERI-MPBR16,10.0.0.45 -PANDORA_CONNIFF,PANDORA_CONNIFF-MPBR16,10.0.0.46 -CRAIG_BULLERS,CRAIG_BULLERS-MPBR16,10.0.0.47 -RYAN_FRASCA,RYAN_FRASCA-MPBR16,10.0.0.48 -NOVELLA_KASTEL,NOVELLA_KASTEL-MPBR16,10.0.0.49 -AURORE_AHLMAN,AURORE_AHLMAN-MPBR16,10.0.0.50 -CARLTON_KURAMOTO,CARLTON_KURAMOTO-MPBR16,10.0.0.51 -GARY_STINEHELFER,GARY_STINEHELFER-MPBR16,10.0.0.52 -NICHOL_FALKER,NICHOL_FALKER-MPBR16,10.0.0.53 -EVELYN_SCHIER,EVELYN_SCHIER-MPBR16,10.0.0.54 -JARRETT_HUXHOLD,JARRETT_HUXHOLD-MPBR16,10.0.0.55 -JONAS_HEITLAND,JONAS_HEITLAND-MPBR16,10.0.0.56 -ANTONIO_WOLSKI,ANTONIO_WOLSKI-MPBR16,10.0.0.57 -BILLY_PEDLAR,BILLY_PEDLAR-MPBR16,10.0.0.58 -GLADYS_SINNING,GLADYS_SINNING-MPBR16,10.0.0.59 -PAUL_LEHNER,PAUL_LEHNER-MPBR16,10.0.0.60 -MARTHA_KEENEY,MARTHA_KEENEY-MPBR16,10.0.0.61 -JUAN_CURBEAM,JUAN_CURBEAM-MPBR16,10.0.0.62 -ROSITA_DEBELLIS,ROSITA_DEBELLIS-MPBR16,10.0.0.63 -WILFRED_DRAKE,WILFRED_DRAKE-MPBR16,10.0.0.64 -ISIAH_HANAWAY,ISIAH_HANAWAY-MPBR16,10.0.0.65 -INEZ_GREENLER,INEZ_GREENLER-MPBR16,10.0.0.66 -CHARISSA_CAPEZZUTO,CHARISSA_CAPEZZUTO-MPBR16,10.0.0.67 -ARMANDO_MCGRAY,ARMANDO_MCGRAY-MPBR16,10.0.0.68 -JUNIOR_LAFLAMME,JUNIOR_LAFLAMME-MPBR16,10.0.0.69 -RENE_HOUGE,RENE_HOUGE-MPBR16,10.0.0.70 -CARY_RODAL,CARY_RODAL-MPBR16,10.0.0.71 -ERIC_MORITZ,ERIC_MORITZ-MPBR16,10.0.0.72 -TOBY_LAFRANCE,TOBY_LAFRANCE-MPBR16,10.0.0.73 -LUANNE_ESKRIDGE,LUANNE_ESKRIDGE-MPBR16,10.0.0.74 -FREDERICK_PONTORIERO,FREDERICK_PONTORIERO-MPBR16,10.0.0.75 -NIGEL_NEACE,NIGEL_NEACE-MPBR16,10.0.0.76 -ADAM_BUEHRING,ADAM_BUEHRING-MPBR16,10.0.0.77 -IVORY_BONIER,IVORY_BONIER-MPBR16,10.0.0.78 -ISIDRO_ALBANESE,ISIDRO_ALBANESE-MPBR16,10.0.0.79 -ARLENE_SHEEDY,ARLENE_SHEEDY-MPBR16,10.0.0.80 -JAKE_BRADY,JAKE_BRADY-MPBR16,10.0.0.81 -CRYSTAL_CURZ,CRYSTAL_CURZ-MPBR16,10.0.0.82 -ANTOINE_BOWYER,ANTOINE_BOWYER-MPBR16,10.0.0.83 -FANNY_MAULTSBY,FANNY_MAULTSBY-MPBR16,10.0.0.84 -ERIK_KOSS,ERIK_KOSS-MPBR16,10.0.0.85 -DION_GILLOTTI,DION_GILLOTTI-MPBR16,10.0.0.86 -NILDA_SORATOS,NILDA_SORATOS-MPBR16,10.0.0.87 -AMY_WHINERY,AMY_WHINERY-MPBR16,10.0.0.88 -MYLES_RAIL,MYLES_RAIL-MPBR16,10.0.0.89 -JEREMY_PEMBER,JEREMY_PEMBER-MPBR16,10.0.0.90 -CHRISTIN_MINZEL,CHRISTIN_MINZEL-MPBR16,10.0.0.91 -NINA_OKUDA,NINA_OKUDA-MPBR16,10.0.0.92 -LACEY_IANNUCCI,LACEY_IANNUCCI-MPBR16,10.0.0.93 -KIMBERLI_CASALMAN,KIMBERLI_CASALMAN-MPBR16,10.0.0.94 -KIZZY_SOLGOVIC,KIZZY_SOLGOVIC-MPBR16,10.0.0.95 -ROGELIO_KOTERA,ROGELIO_KOTERA-MPBR16,10.0.0.96 -IN_SODHI,IN_SODHI-MPBR16,10.0.0.97 -ZENAIDA_KNIGHTER,ZENAIDA_KNIGHTER-MPBR16,10.0.0.98 -SERINA_WOODELL,SERINA_WOODELL-MPBR16,10.0.0.99 -KRISTEN_LUNEAU,KRISTEN_LUNEAU-MPBR16,10.0.0.100 -JEFFREY_ALVARENGA,JEFFREY_ALVARENGA-MPBR16,10.0.0.101 -CARIDAD_DOUGHTIE,CARIDAD_DOUGHTIE-MPBR16,10.0.0.102 -ISAURA_LUDGOOD,ISAURA_LUDGOOD-MPBR16,10.0.0.103 -ARLENA_FREUDENBURG,ARLENA_FREUDENBURG-MPBR16,10.0.0.104 -MATTHEW_FERRE,MATTHEW_FERRE-MPBR16,10.0.0.105 -WM_RUSH,WM_RUSH-MPBR16,10.0.0.106 -BOBBY_MOON,BOBBY_MOON-MPBR16,10.0.0.107 -KATY_HIPPERT,KATY_HIPPERT-MPBR16,10.0.0.108 -BRENDAN_WAREING,BRENDAN_WAREING-MPBR16,10.0.0.109 -RUSSELL_LEDDON,RUSSELL_LEDDON-MPBR16,10.0.0.110 -DONOVAN_MAHER,DONOVAN_MAHER-MPBR16,10.0.0.111 -MONICA_FRANCESE,MONICA_FRANCESE-MPBR16,10.0.0.112 -CATALINA_DURON,CATALINA_DURON-MPBR16,10.0.0.113 -NIDA_ROMAR,NIDA_ROMAR-MPBR16,10.0.0.114 -LYLE_MIECZKOWSKI,LYLE_MIECZKOWSKI-MPBR16,10.0.0.115 -ARON_HIPP,ARON_HIPP-MPBR16,10.0.0.116 -ORVILLE_NIELAND,ORVILLE_NIELAND-MPBR16,10.0.0.117 -BLYTHE_SHOUN,BLYTHE_SHOUN-MPBR16,10.0.0.118 -JOSEPH_SPADY,JOSEPH_SPADY-MPBR16,10.0.0.119 -JAMEY_STONEBRAKER,JAMEY_STONEBRAKER-MPBR16,10.0.0.120 -JIMMY_LISONBEE,JIMMY_LISONBEE-MPBR16,10.0.0.121 -BELINDA_MISKO,BELINDA_MISKO-MPBR16,10.0.0.122 -IRMA_ROSE,IRMA_ROSE-MPBR16,10.0.0.123 -TAWANNA_FRANZONI,TAWANNA_FRANZONI-MPBR16,10.0.0.124 -HALLIE_DINKIN,HALLIE_DINKIN-MPBR16,10.0.0.125 -SIDNEY_BRUN,SIDNEY_BRUN-MPBR16,10.0.0.126 -NIKI_CHAPIN,NIKI_CHAPIN-MPBR16,10.0.0.127 -TERESA_MORAIS,TERESA_MORAIS-MPBR16,10.0.0.128 -SIMON_SABO,SIMON_SABO-MPBR16,10.0.0.129 -REGINALD_LACHERMEIER,REGINALD_LACHERMEIER-MPBR16,10.0.0.130 -SIMONE_SCHAEFER,SIMONE_SCHAEFER-MPBR16,10.0.0.131 -COREY_SCHAMP,COREY_SCHAMP-MPBR16,10.0.0.132 -CLAYTON_MESZAROS,CLAYTON_MESZAROS-MPBR16,10.0.0.133 -CARLOS_DALLMEYER,CARLOS_DALLMEYER-MPBR16,10.0.0.134 -HUGO_LOUIE,HUGO_LOUIE-MPBR16,10.0.0.135 -FRAN_FANN,FRAN_FANN-MPBR16,10.0.0.136 -DUANE_BENINCASE,DUANE_BENINCASE-MPBR16,10.0.0.137 -ARNOLD_DONAHOE,ARNOLD_DONAHOE-MPBR16,10.0.0.138 -WILLIAM_SHERLEY,WILLIAM_SHERLEY-MPBR16,10.0.0.139 -MALIA_GFELLER,MALIA_GFELLER-MPBR16,10.0.0.140 -LOVIE_TOMERLIN,LOVIE_TOMERLIN-MPBR16,10.0.0.141 -LILLIA_SIMMONEAU,LILLIA_SIMMONEAU-MPBR16,10.0.0.142 -HAILEY_ABDUR,HAILEY_ABDUR-MPBR16,10.0.0.143 -JACOB_ROBICHAUD,JACOB_ROBICHAUD-MPBR16,10.0.0.144 -TAMAR_BALLADARES,TAMAR_BALLADARES-MPBR16,10.0.0.145 -LEEANN_STEMM,LEEANN_STEMM-MPBR16,10.0.0.146 -WINIFRED_STELLMACHER,WINIFRED_STELLMACHER-MPBR16,10.0.0.147 -FELIPE_HAMSHER,FELIPE_HAMSHER-MPBR16,10.0.0.148 -MALORIE_PAULUS,MALORIE_PAULUS-MPBR16,10.0.0.149 -LOUANN_MARESCO,LOUANN_MARESCO-MPBR16,10.0.0.150 -ANTWAN_MOWERS,ANTWAN_MOWERS-MPBR16,10.0.0.151 -WM_IRELAND,WM_IRELAND-MPBR16,10.0.0.152 -JOE_HEYER,JOE_HEYER-MPBR16,10.0.0.153 -KENNETH_BUNDREN,KENNETH_BUNDREN-MPBR16,10.0.0.154 -ANGEL_KILMARTIN,ANGEL_KILMARTIN-MPBR16,10.0.0.155 -HAYDEN_BROADNAX,HAYDEN_BROADNAX-MPBR16,10.0.0.156 -HYON_BOREN,HYON_BOREN-MPBR16,10.0.0.157 -FRANKIE_METCALF,FRANKIE_METCALF-MPBR16,10.0.0.158 -JONATHAN_NETHERLAND,JONATHAN_NETHERLAND-MPBR16,10.0.0.159 -ODILIA_ONEIL,ODILIA_ONEIL-MPBR16,10.0.0.160 -RONNI_DOROUGH,RONNI_DOROUGH-MPBR16,10.0.0.161 -DEIDRA_MANZO,DEIDRA_MANZO-MPBR16,10.0.0.162 -KARL_ALSBROOK,KARL_ALSBROOK-MPBR16,10.0.0.163 -MOHAMED_MCMANAMY,MOHAMED_MCMANAMY-MPBR16,10.0.0.164 -AGATHA_TOLEDO,AGATHA_TOLEDO-MPBR16,10.0.0.165 -CARMEN_FATCHETT,CARMEN_FATCHETT-MPBR16,10.0.0.166 -ANITA_PICKRELL,ANITA_PICKRELL-MPBR16,10.0.0.167 -GLENDA_YEATS,GLENDA_YEATS-MPBR16,10.0.0.168 -ALFREDO_EK,ALFREDO_EK-MPBR16,10.0.0.169 -MARLON_GIRST,MARLON_GIRST-MPBR16,10.0.0.170 -ALISON_GRUNDER,ALISON_GRUNDER-MPBR16,10.0.0.171 -BERT_DEFRANCESCO,BERT_DEFRANCESCO-MPBR16,10.0.0.172 -LAWANDA_VOGELGESANG,LAWANDA_VOGELGESANG-MPBR16,10.0.0.173 -HA_SILBERBERG,HA_SILBERBERG-MPBR16,10.0.0.174 -SANDI_DIMICCO,SANDI_DIMICCO-MPBR16,10.0.0.175 -VINCE_STANDING,VINCE_STANDING-MPBR16,10.0.0.176 -ROBERT_MONTAS,ROBERT_MONTAS-MPBR16,10.0.0.177 -ADOLFO_CHUONG,ADOLFO_CHUONG-MPBR16,10.0.0.178 -LORE_LINGG,LORE_LINGG-MPBR16,10.0.0.179 -KRYSTLE_PENNYPACKER,KRYSTLE_PENNYPACKER-MPBR16,10.0.0.180 -RACHELLE_SCHANER,RACHELLE_SCHANER-MPBR16,10.0.0.181 -VIOLETA_PRATCHER,VIOLETA_PRATCHER-MPBR16,10.0.0.182 -KARI_SHOVER,KARI_SHOVER-MPBR16,10.0.0.183 -DUNG_ENTRIKEN,DUNG_ENTRIKEN-MPBR16,10.0.0.184 -JAQUELINE_VILLALVAZO,JAQUELINE_VILLALVAZO-MPBR16,10.0.0.185 -RUDOLPH_PINELO,RUDOLPH_PINELO-MPBR16,10.0.0.186 -BRET_KURDZIEL,BRET_KURDZIEL-MPBR16,10.0.0.187 -JESSE_WAUCH,JESSE_WAUCH-MPBR16,10.0.0.188 -CINDA_CANUPP,CINDA_CANUPP-MPBR16,10.0.0.189 -JOEL_MCALARNEY,JOEL_MCALARNEY-MPBR16,10.0.0.190 -STEVEN_SVENNUNGSEN,STEVEN_SVENNUNGSEN-MPBR16,10.0.0.191 -FRED_ROZEK,FRED_ROZEK-MPBR16,10.0.0.192 -TERA_ANDRUSS,TERA_ANDRUSS-MPBR16,10.0.0.193 -ESTA_WILHIDE,ESTA_WILHIDE-MPBR16,10.0.0.194 -JEREMY_OLIVERES,JEREMY_OLIVERES-MPBR16,10.0.0.195 -GAIL_HARRELSON,GAIL_HARRELSON-MPBR16,10.0.0.196 -JEWELL_CARNAHAN,JEWELL_CARNAHAN-MPBR16,10.0.0.197 -TYRON_REAVIS,TYRON_REAVIS-MPBR16,10.0.0.198 -JAMAR_SANJOSE,JAMAR_SANJOSE-MPBR16,10.0.0.199 -PENELOPE_ANNIS,PENELOPE_ANNIS-MPBR16,10.0.0.200 -TONY_CASTANON,TONY_CASTANON-MPBR16,10.0.0.201 -RHONDA_HANNAFORD,RHONDA_HANNAFORD-MPBR16,10.0.0.202 -DARYL_BOGUE,DARYL_BOGUE-MPBR16,10.0.0.203 -MARLON_RENOLLET,MARLON_RENOLLET-MPBR16,10.0.0.204 -MARITA_KEYTON,MARITA_KEYTON-MPBR16,10.0.0.205 -DEWEY_WERTHEIMER,DEWEY_WERTHEIMER-MPBR16,10.0.0.206 -CAROLE_SCHIEFFER,CAROLE_SCHIEFFER-MPBR16,10.0.0.207 -RHONDA_SCHAMS,RHONDA_SCHAMS-MPBR16,10.0.0.208 -LENA_MOLTZ,LENA_MOLTZ-MPBR16,10.0.0.209 -LARUE_GENS,LARUE_GENS-MPBR16,10.0.0.210 -DANITA_TEJADA,DANITA_TEJADA-MPBR16,10.0.0.211 -SHERMAN_BEUS,SHERMAN_BEUS-MPBR16,10.0.0.212 -LOURA_BLANCHE,LOURA_BLANCHE-MPBR16,10.0.0.213 -STEVE_TREMBLEY,STEVE_TREMBLEY-MPBR16,10.0.0.214 -KIM_MONTIE,KIM_MONTIE-MPBR16,10.0.0.215 -JULIAN_DEKLE,JULIAN_DEKLE-MPBR16,10.0.0.216 -LONNY_CIRAOLO,LONNY_CIRAOLO-MPBR16,10.0.0.217 -RUSSEL_BOHMER,RUSSEL_BOHMER-MPBR16,10.0.0.218 -LINDSAY_NASCA,LINDSAY_NASCA-MPBR16,10.0.0.219 -CHASITY_FONGER,CHASITY_FONGER-MPBR16,10.0.0.220 -STEPHAINE_HITTMAN,STEPHAINE_HITTMAN-MPBR16,10.0.0.221 -FELICE_DEROSIA,FELICE_DEROSIA-MPBR16,10.0.0.222 -REX_VAINE,REX_VAINE-MPBR16,10.0.0.223 -MERRILEE_OSTERGREN,MERRILEE_OSTERGREN-MPBR16,10.0.0.224 -MAXIMINA_KOLASA,MAXIMINA_KOLASA-MPBR16,10.0.0.225 -RANDA_REMSEN,RANDA_REMSEN-MPBR16,10.0.0.226 -ALEX_MOLOCK,ALEX_MOLOCK-MPBR16,10.0.0.227 -KELLI_LEANOS,KELLI_LEANOS-MPBR16,10.0.0.228 -BOB_GERACE,BOB_GERACE-MPBR16,10.0.0.229 -ALVARO_MONT,ALVARO_MONT-MPBR16,10.0.0.230 -SON_HEDQUIST,SON_HEDQUIST-MPBR16,10.0.0.231 -WELDON_ROSS,WELDON_ROSS-MPBR16,10.0.0.232 -JACKIE_REINBOLD,JACKIE_REINBOLD-MPBR16,10.0.0.233 -DEVIN_BEAUMONTE,DEVIN_BEAUMONTE-MPBR16,10.0.0.234 -MICHELLE_WILLIBRAND,MICHELLE_WILLIBRAND-MPBR16,10.0.0.235 -BERNIE_HYMAS,BERNIE_HYMAS-MPBR16,10.0.0.236 -ADAM_PINGLETON,ADAM_PINGLETON-MPBR16,10.0.0.237 -BETTE_MADRIZ,BETTE_MADRIZ-MPBR16,10.0.0.238 -BRUNO_HARRIOTT,BRUNO_HARRIOTT-MPBR16,10.0.0.239 -ROCKY_SHUTTER,ROCKY_SHUTTER-MPBR16,10.0.0.240 -FAUSTINO_HERSCHELMAN,FAUSTINO_HERSCHELMAN-MPBR16,10.0.0.241 -LENORA_HALLMARK,LENORA_HALLMARK-MPBR16,10.0.0.242 -ALVA_LANDRETH,ALVA_LANDRETH-MPBR16,10.0.0.243 -HIROKO_LANDRIGAN,HIROKO_LANDRIGAN-MPBR16,10.0.0.244 -ROSETTA_PROVINE,ROSETTA_PROVINE-MPBR16,10.0.0.245 -MARLON_DOUBET,MARLON_DOUBET-MPBR16,10.0.0.246 -ROB_WILLINSKY,ROB_WILLINSKY-MPBR16,10.0.0.247 -CESAR_LOCUST,CESAR_LOCUST-MPBR16,10.0.0.248 -ELENORA_GUESS,ELENORA_GUESS-MPBR16,10.0.0.249 -DEVON_HERBOLD,DEVON_HERBOLD-MPBR16,10.0.0.250 -ALTON_BENBOW,ALTON_BENBOW-MPBR16,10.0.0.251 -CARMEN_MILNE,CARMEN_MILNE-MPBR16,10.0.0.252 -OLIN_MAVITY,OLIN_MAVITY-MPBR16,10.0.0.253 -LORENA_WELFORD,LORENA_WELFORD-MPBR16,10.0.0.254 -HUNTER_MARSCH,HUNTER_MARSCH-MPBR16,10.0.0.255 -AUBREY_JANOSIK,AUBREY_JANOSIK-MPBR16,10.0.1.0 -ALLINE_WAGG,ALLINE_WAGG-MPBR16,10.0.1.1 -BRIDGETT_BADDER,BRIDGETT_BADDER-MPBR16,10.0.1.2 -JOSEPH_MARTI,JOSEPH_MARTI-MPBR16,10.0.1.3 -VEDA_COTTEW,VEDA_COTTEW-MPBR16,10.0.1.4 -HOLLEY_FLOREZ,HOLLEY_FLOREZ-MPBR16,10.0.1.5 -CHARLIE_HOLLOMON,CHARLIE_HOLLOMON-MPBR16,10.0.1.6 -DANNY_PITTMAN,DANNY_PITTMAN-MPBR16,10.0.1.7 -ELANOR_DAGG,ELANOR_DAGG-MPBR16,10.0.1.8 -MARGART_TOURIGNY,MARGART_TOURIGNY-MPBR16,10.0.1.9 -MOHAMMAD_PEDROTTI,MOHAMMAD_PEDROTTI-MPBR16,10.0.1.10 -CHRISTIN_VENEMAN,CHRISTIN_VENEMAN-MPBR16,10.0.1.11 -JUSTIN_KER,JUSTIN_KER-MPBR16,10.0.1.12 -LOUIE_VERBECK,LOUIE_VERBECK-MPBR16,10.0.1.13 -BARRETT_CARLOCK,BARRETT_CARLOCK-MPBR16,10.0.1.14 -YVETTE_DEMARS,YVETTE_DEMARS-MPBR16,10.0.1.15 -JAYNA_SYBOUNHEUAN,JAYNA_SYBOUNHEUAN-MPBR16,10.0.1.16 -LYLE_GILYARD,LYLE_GILYARD-MPBR16,10.0.1.17 -ALAYNA_DAVITO,ALAYNA_DAVITO-MPBR16,10.0.1.18 -SIMONNE_ALLBRITTON,SIMONNE_ALLBRITTON-MPBR16,10.0.1.19 -CLINT_SANTACRUZ,CLINT_SANTACRUZ-MPBR16,10.0.1.20 -CHERYLE_FENNELL,CHERYLE_FENNELL-MPBR16,10.0.1.21 -SHARLA_WINDHAM,SHARLA_WINDHAM-MPBR16,10.0.1.22 -EFRAIN_MONTEVERDE,EFRAIN_MONTEVERDE-MPBR16,10.0.1.23 -DAYNA_SOBEY,DAYNA_SOBEY-MPBR16,10.0.1.24 -THEODORE_FARINO,THEODORE_FARINO-MPBR16,10.0.1.25 -FELISA_MERRIFIELD,FELISA_MERRIFIELD-MPBR16,10.0.1.26 -HILMA_DEMENT,HILMA_DEMENT-MPBR16,10.0.1.27 -TRENTON_OSMAN,TRENTON_OSMAN-MPBR16,10.0.1.28 -VINA_PARRENT,VINA_PARRENT-MPBR16,10.0.1.29 -ABDUL_OKUN,ABDUL_OKUN-MPBR16,10.0.1.30 -BOBBY_CERNY,BOBBY_CERNY-MPBR16,10.0.1.31 -JODEE_MAGARELLI,JODEE_MAGARELLI-MPBR16,10.0.1.32 -NADA_TREFF,NADA_TREFF-MPBR16,10.0.1.33 -TYESHA_MATSKO,TYESHA_MATSKO-MPBR16,10.0.1.34 -MOLLY_KOZAR,MOLLY_KOZAR-MPBR16,10.0.1.35 -MELODEE_TRIPPI,MELODEE_TRIPPI-MPBR16,10.0.1.36 -CLARK_BATEY,CLARK_BATEY-MPBR16,10.0.1.37 -KATIE_SMUIN,KATIE_SMUIN-MPBR16,10.0.1.38 -DELPHINE_MATAS,DELPHINE_MATAS-MPBR16,10.0.1.39 -ALVIN_BYRN,ALVIN_BYRN-MPBR16,10.0.1.40 -ALENE_YAWN,ALENE_YAWN-MPBR16,10.0.1.41 -BECKY_KOSAKOWSKI,BECKY_KOSAKOWSKI-MPBR16,10.0.1.42 -JUNG_KVAM,JUNG_KVAM-MPBR16,10.0.1.43 -TAWNY_PALOS,TAWNY_PALOS-MPBR16,10.0.1.44 -JERILYN_SKATTEBO,JERILYN_SKATTEBO-MPBR16,10.0.1.45 -RIGOBERTO_MANJARREZ,RIGOBERTO_MANJARREZ-MPBR16,10.0.1.46 -SONYA_PIERRE,SONYA_PIERRE-MPBR16,10.0.1.47 -KITTY_FANNINGS,KITTY_FANNINGS-MPBR16,10.0.1.48 -MARLIN_FLINT,MARLIN_FLINT-MPBR16,10.0.1.49 -RICHELLE_CARLEW,RICHELLE_CARLEW-MPBR16,10.0.1.50 -MELISSA_PIFER,MELISSA_PIFER-MPBR16,10.0.1.51 -ISRAEL_MASSO,ISRAEL_MASSO-MPBR16,10.0.1.52 -CARLOTTA_ENCISO,CARLOTTA_ENCISO-MPBR16,10.0.1.53 -KACIE_MARSHA,KACIE_MARSHA-MPBR16,10.0.1.54 -NANETTE_CISNEROS,NANETTE_CISNEROS-MPBR16,10.0.1.55 -LILY_MENCER,LILY_MENCER-MPBR16,10.0.1.56 -ANDREW_LABRADA,ANDREW_LABRADA-MPBR16,10.0.1.57 -ALEXIS_PORCH,ALEXIS_PORCH-MPBR16,10.0.1.58 -JOEL_MCKITRICK,JOEL_MCKITRICK-MPBR16,10.0.1.59 -FERN_PETTWAY,FERN_PETTWAY-MPBR16,10.0.1.60 -REID_FEEMSTER,REID_FEEMSTER-MPBR16,10.0.1.61 -MARIA_ARNS,MARIA_ARNS-MPBR16,10.0.1.62 -ALBA_GUMMO,ALBA_GUMMO-MPBR16,10.0.1.63 -JEFFREY_HEIT,JEFFREY_HEIT-MPBR16,10.0.1.64 -JERMAINE_CRESPI,JERMAINE_CRESPI-MPBR16,10.0.1.65 -ODIS_PINCOCK,ODIS_PINCOCK-MPBR16,10.0.1.66 -OLIN_HANKEY,OLIN_HANKEY-MPBR16,10.0.1.67 -EMMANUEL_TAUER,EMMANUEL_TAUER-MPBR16,10.0.1.68 -DETRA_VIVIANI,DETRA_VIVIANI-MPBR16,10.0.1.69 -GORDON_BANCROFT,GORDON_BANCROFT-MPBR16,10.0.1.70 -JENA_ALLOWAY,JENA_ALLOWAY-MPBR16,10.0.1.71 -BRUCE_KARCICH,BRUCE_KARCICH-MPBR16,10.0.1.72 -TITUS_HINCHMAN,TITUS_HINCHMAN-MPBR16,10.0.1.73 -BART_FORDHAM,BART_FORDHAM-MPBR16,10.0.1.74 -ROSIE_GILDERSLEEVE,ROSIE_GILDERSLEEVE-MPBR16,10.0.1.75 -CORAZON_MATKOVIC,CORAZON_MATKOVIC-MPBR16,10.0.1.76 -EDWIN_FADLEY,EDWIN_FADLEY-MPBR16,10.0.1.77 -FRED_HUDDLESTON,FRED_HUDDLESTON-MPBR16,10.0.1.78 -STEWART_MACKYNEN,STEWART_MACKYNEN-MPBR16,10.0.1.79 -OUIDA_HEUNG,OUIDA_HEUNG-MPBR16,10.0.1.80 -FLOYD_DYCE,FLOYD_DYCE-MPBR16,10.0.1.81 -GLEN_JEFFERDS,GLEN_JEFFERDS-MPBR16,10.0.1.82 -BROCK_COGBURN,BROCK_COGBURN-MPBR16,10.0.1.83 -LEONOR_WILKS,LEONOR_WILKS-MPBR16,10.0.1.84 -LAURICE_BELLINGHAM,LAURICE_BELLINGHAM-MPBR16,10.0.1.85 -PENELOPE_PLATH,PENELOPE_PLATH-MPBR16,10.0.1.86 -MARYLOU_KANGAS,MARYLOU_KANGAS-MPBR16,10.0.1.87 -APRIL_KROTZ,APRIL_KROTZ-MPBR16,10.0.1.88 -CARLOTTA_MATTERS,CARLOTTA_MATTERS-MPBR16,10.0.1.89 -KIRA_MCCONNEY,KIRA_MCCONNEY-MPBR16,10.0.1.90 -CARLEY_NERO,CARLEY_NERO-MPBR16,10.0.1.91 -GILBERTO_DESHA,GILBERTO_DESHA-MPBR16,10.0.1.92 -GRISELDA_RAGER,GRISELDA_RAGER-MPBR16,10.0.1.93 -ALLEEN_KANE,ALLEEN_KANE-MPBR16,10.0.1.94 -KATHARINE_NISHIO,KATHARINE_NISHIO-MPBR16,10.0.1.95 -TABATHA_TOMASINO,TABATHA_TOMASINO-MPBR16,10.0.1.96 -ROXANA_POLOSKY,ROXANA_POLOSKY-MPBR16,10.0.1.97 -CODY_SHABAZZ,CODY_SHABAZZ-MPBR16,10.0.1.98 -CHANTELL_HITZEMAN,CHANTELL_HITZEMAN-MPBR16,10.0.1.99 -ALEXANDER_RUTT,ALEXANDER_RUTT-MPBR16,10.0.1.100 -MAYRA_JERNSTROM,MAYRA_JERNSTROM-MPBR16,10.0.1.101 -AMBER_SAUCEDA,AMBER_SAUCEDA-MPBR16,10.0.1.102 -LOUIS_DENLEY,LOUIS_DENLEY-MPBR16,10.0.1.103 -CANDY_ROSER,CANDY_ROSER-MPBR16,10.0.1.104 -WILFORD_TINKLENBERG,WILFORD_TINKLENBERG-MPBR16,10.0.1.105 -ARRON_BOOKWALTER,ARRON_BOOKWALTER-MPBR16,10.0.1.106 -ERNEST_HOUTS,ERNEST_HOUTS-MPBR16,10.0.1.107 -MARIO_KOSIN,MARIO_KOSIN-MPBR16,10.0.1.108 -BESSIE_GILCREST,BESSIE_GILCREST-MPBR16,10.0.1.109 -CHARLES_SCHROEPFER,CHARLES_SCHROEPFER-MPBR16,10.0.1.110 -VIVIENNE_LIERMAN,VIVIENNE_LIERMAN-MPBR16,10.0.1.111 -TAMMIE_GUSCIORA,TAMMIE_GUSCIORA-MPBR16,10.0.1.112 -BERNARDO_BALDER,BERNARDO_BALDER-MPBR16,10.0.1.113 -HANG_BACKMON,HANG_BACKMON-MPBR16,10.0.1.114 -JESSE_ARGUETA,JESSE_ARGUETA-MPBR16,10.0.1.115 -KENNY_TEST,KENNY_TEST-MPBR16,10.0.1.116 -PATTY_FANTON,PATTY_FANTON-MPBR16,10.0.1.117 -DRUSILLA_WINCHENBACH,DRUSILLA_WINCHENBACH-MPBR16,10.0.1.118 -FORREST_DEBARDELABEN,FORREST_DEBARDELABEN-MPBR16,10.0.1.119 -VINCE_MENTO,VINCE_MENTO-MPBR16,10.0.1.120 -KARIE_COUTCHER,KARIE_COUTCHER-MPBR16,10.0.1.121 -NED_SCHULDER,NED_SCHULDER-MPBR16,10.0.1.122 -NIKOLE_TELEP,NIKOLE_TELEP-MPBR16,10.0.1.123 -JUSTINA_NAES,JUSTINA_NAES-MPBR16,10.0.1.124 -MAGDALENA_TONG,MAGDALENA_TONG-MPBR16,10.0.1.125 -FLOYD_SWOPE,FLOYD_SWOPE-MPBR16,10.0.1.126 -SHASTA_MICHITSCH,SHASTA_MICHITSCH-MPBR16,10.0.1.127 -ASHLYN_KNEIP,ASHLYN_KNEIP-MPBR16,10.0.1.128 -OLIMPIA_MANDERS,OLIMPIA_MANDERS-MPBR16,10.0.1.129 -ANTHONY_STANSBERRY,ANTHONY_STANSBERRY-MPBR16,10.0.1.130 -GILBERT_KLEIFGEN,GILBERT_KLEIFGEN-MPBR16,10.0.1.131 -KELLY_APPLEGARTH,KELLY_APPLEGARTH-MPBR16,10.0.1.132 -ANDREA_RATHROCK,ANDREA_RATHROCK-MPBR16,10.0.1.133 -KEN_WEIST,KEN_WEIST-MPBR16,10.0.1.134 -ALLIE_LIND,ALLIE_LIND-MPBR16,10.0.1.135 -BERNIE_GALLISHAW,BERNIE_GALLISHAW-MPBR16,10.0.1.136 -RUBEN_CHAUHAN,RUBEN_CHAUHAN-MPBR16,10.0.1.137 -TIMMY_SHRAMEK,TIMMY_SHRAMEK-MPBR16,10.0.1.138 -DIEDRA_NEUMAYER,DIEDRA_NEUMAYER-MPBR16,10.0.1.139 -SHERMAN_MALIS,SHERMAN_MALIS-MPBR16,10.0.1.140 -LORIE_DELASBOUR,LORIE_DELASBOUR-MPBR16,10.0.1.141 -NEVA_LAMPHIER,NEVA_LAMPHIER-MPBR16,10.0.1.142 -CARMEL_RUHNKE,CARMEL_RUHNKE-MPBR16,10.0.1.143 -CHIN_SACHE,CHIN_SACHE-MPBR16,10.0.1.144 -MINNIE_BURNSWORTH,MINNIE_BURNSWORTH-MPBR16,10.0.1.145 -CORINNE_DANA,CORINNE_DANA-MPBR16,10.0.1.146 -ROSINA_MARANDER,ROSINA_MARANDER-MPBR16,10.0.1.147 -ELINOR_RUDASILL,ELINOR_RUDASILL-MPBR16,10.0.1.148 -JACKIE_SEMPLE,JACKIE_SEMPLE-MPBR16,10.0.1.149 -ADELLA_READNOUR,ADELLA_READNOUR-MPBR16,10.0.1.150 -MARLON_GARNETTE,MARLON_GARNETTE-MPBR16,10.0.1.151 -DOROTHEA_ZENG,DOROTHEA_ZENG-MPBR16,10.0.1.152 -EMILY_MCCLINE,EMILY_MCCLINE-MPBR16,10.0.1.153 -RUBEN_BUSUTTIL,RUBEN_BUSUTTIL-MPBR16,10.0.1.154 -NISHA_BUIST,NISHA_BUIST-MPBR16,10.0.1.155 -ASA_HUTTEN,ASA_HUTTEN-MPBR16,10.0.1.156 -STEPHAN_CASTILO,STEPHAN_CASTILO-MPBR16,10.0.1.157 -SYLVIA_ZAUSCH,SYLVIA_ZAUSCH-MPBR16,10.0.1.158 -JOE_GRAHAM,JOE_GRAHAM-MPBR16,10.0.1.159 -CARRI_DETOMMASO,CARRI_DETOMMASO-MPBR16,10.0.1.160 -FRANCISCO_COLGROVE,FRANCISCO_COLGROVE-MPBR16,10.0.1.161 -CESAR_KOURI,CESAR_KOURI-MPBR16,10.0.1.162 -ALFONSO_BROSEY,ALFONSO_BROSEY-MPBR16,10.0.1.163 -MALCOLM_SWEITZER,MALCOLM_SWEITZER-MPBR16,10.0.1.164 -CLYDE_GIGANTE,CLYDE_GIGANTE-MPBR16,10.0.1.165 -JOYCELYN_ROMANSKI,JOYCELYN_ROMANSKI-MPBR16,10.0.1.166 -CAITLYN_WEST,CAITLYN_WEST-MPBR16,10.0.1.167 -WILLIAM_ENGELKEMIER,WILLIAM_ENGELKEMIER-MPBR16,10.0.1.168 -VIVIANA_INGERSON,VIVIANA_INGERSON-MPBR16,10.0.1.169 -MANUELA_NEISLER,MANUELA_NEISLER-MPBR16,10.0.1.170 -QUENTIN_GOELDNER,QUENTIN_GOELDNER-MPBR16,10.0.1.171 -ALISHA_LATSON,ALISHA_LATSON-MPBR16,10.0.1.172 -NATHAN_LORENZANA,NATHAN_LORENZANA-MPBR16,10.0.1.173 -EDMUND_GIZA,EDMUND_GIZA-MPBR16,10.0.1.174 -KENDRICK_TURRENTINE,KENDRICK_TURRENTINE-MPBR16,10.0.1.175 -BUDDY_CRATCH,BUDDY_CRATCH-MPBR16,10.0.1.176 -ALIA_LITCHFORD,ALIA_LITCHFORD-MPBR16,10.0.1.177 -IESHA_MEDEZ,IESHA_MEDEZ-MPBR16,10.0.1.178 -GABRIELLA_GRINDSTAFF,GABRIELLA_GRINDSTAFF-MPBR16,10.0.1.179 -MARGARITE_BESSARD,MARGARITE_BESSARD-MPBR16,10.0.1.180 -MILTON_WNUK,MILTON_WNUK-MPBR16,10.0.1.181 -CASEY_BARTONE,CASEY_BARTONE-MPBR16,10.0.1.182 -PEGGY_SORUM,PEGGY_SORUM-MPBR16,10.0.1.183 -MARCIA_PECKINPAUGH,MARCIA_PECKINPAUGH-MPBR16,10.0.1.184 -WILLA_BLASETTI,WILLA_BLASETTI-MPBR16,10.0.1.185 -JAVIER_DURALL,JAVIER_DURALL-MPBR16,10.0.1.186 -GAIL_SCHOBER,GAIL_SCHOBER-MPBR16,10.0.1.187 -TRACEY_HEARL,TRACEY_HEARL-MPBR16,10.0.1.188 -TORRIE_LABER,TORRIE_LABER-MPBR16,10.0.1.189 -DEVIN_BALINT,DEVIN_BALINT-MPBR16,10.0.1.190 -ANNALISA_RUF,ANNALISA_RUF-MPBR16,10.0.1.191 -LON_DEJOHN,LON_DEJOHN-MPBR16,10.0.1.192 -SANG_MCDUFFIE,SANG_MCDUFFIE-MPBR16,10.0.1.193 -TONY_AMAYA,TONY_AMAYA-MPBR16,10.0.1.194 -SERGIO_SADOWSKY,SERGIO_SADOWSKY-MPBR16,10.0.1.195 -THOMAS_DUBREUIL,THOMAS_DUBREUIL-MPBR16,10.0.1.196 -NICOLAS_SEIDL,NICOLAS_SEIDL-MPBR16,10.0.1.197 -IRA_JEFFRESS,IRA_JEFFRESS-MPBR16,10.0.1.198 -MELVIN_VILLEDA,MELVIN_VILLEDA-MPBR16,10.0.1.199 -DOMINICK_CAUTHON,DOMINICK_CAUTHON-MPBR16,10.0.1.200 -CLEORA_OGUIN,CLEORA_OGUIN-MPBR16,10.0.1.201 -ANNETTA_SAINTLOUIS,ANNETTA_SAINTLOUIS-MPBR16,10.0.1.202 -KARIE_ALCALDE,KARIE_ALCALDE-MPBR16,10.0.1.203 -EDMUND_FAIRLESS,EDMUND_FAIRLESS-MPBR16,10.0.1.204 -GARTH_TRAMBLE,GARTH_TRAMBLE-MPBR16,10.0.1.205 -PAOLA_SUAREZ,PAOLA_SUAREZ-MPBR16,10.0.1.206 -AUSTIN_LUPTON,AUSTIN_LUPTON-MPBR16,10.0.1.207 -MIGUEL_FANG,MIGUEL_FANG-MPBR16,10.0.1.208 -MELIDA_HEROD,MELIDA_HEROD-MPBR16,10.0.1.209 -NOAH_GALIK,NOAH_GALIK-MPBR16,10.0.1.210 -DENNA_ROLFE,DENNA_ROLFE-MPBR16,10.0.1.211 -MERI_HODA,MERI_HODA-MPBR16,10.0.1.212 -HARLAN_ODONALD,HARLAN_ODONALD-MPBR16,10.0.1.213 -ALLYSON_HENION,ALLYSON_HENION-MPBR16,10.0.1.214 -GARY_LARCH,GARY_LARCH-MPBR16,10.0.1.215 -PRINCE_PEARY,PRINCE_PEARY-MPBR16,10.0.1.216 -LURA_BARINGER,LURA_BARINGER-MPBR16,10.0.1.217 -DARNELL_TABER,DARNELL_TABER-MPBR16,10.0.1.218 -NORBERT_COCUZZA,NORBERT_COCUZZA-MPBR16,10.0.1.219 -DEVIN_GAYLORD,DEVIN_GAYLORD-MPBR16,10.0.1.220 -MAMIE_MACKEN,MAMIE_MACKEN-MPBR16,10.0.1.221 -ARLINE_HODGE,ARLINE_HODGE-MPBR16,10.0.1.222 -LESLIE_URBANO,LESLIE_URBANO-MPBR16,10.0.1.223 -KARISSA_OBERT,KARISSA_OBERT-MPBR16,10.0.1.224 -FREDERICK_ARBALLO,FREDERICK_ARBALLO-MPBR16,10.0.1.225 -STEWART_NOBLIN,STEWART_NOBLIN-MPBR16,10.0.1.226 -DEIRDRE_MIJARES,DEIRDRE_MIJARES-MPBR16,10.0.1.227 -GISELA_WESTBERG,GISELA_WESTBERG-MPBR16,10.0.1.228 -HAL_FRANCES,HAL_FRANCES-MPBR16,10.0.1.229 -JEAN_ZAYAC,JEAN_ZAYAC-MPBR16,10.0.1.230 -TODD_LATTRELL,TODD_LATTRELL-MPBR16,10.0.1.231 -AMPARO_SIRES,AMPARO_SIRES-MPBR16,10.0.1.232 -ROLAND_SHEROD,ROLAND_SHEROD-MPBR16,10.0.1.233 -LOUISE_ELSHANT,LOUISE_ELSHANT-MPBR16,10.0.1.234 -DOREEN_KAUTZ,DOREEN_KAUTZ-MPBR16,10.0.1.235 -ROGELIO_CHIULLI,ROGELIO_CHIULLI-MPBR16,10.0.1.236 -DARIO_GLIDEWELL,DARIO_GLIDEWELL-MPBR16,10.0.1.237 -LESLIE_VANSCOY,LESLIE_VANSCOY-MPBR16,10.0.1.238 -LEE_NIEVES,LEE_NIEVES-MPBR16,10.0.1.239 -LANDON_WIECK,LANDON_WIECK-MPBR16,10.0.1.240 -SIMONE_JUUL,SIMONE_JUUL-MPBR16,10.0.1.241 -REDA_DIETRICK,REDA_DIETRICK-MPBR16,10.0.1.242 -AKILAH_MAIETTA,AKILAH_MAIETTA-MPBR16,10.0.1.243 -RAYE_KINMAN,RAYE_KINMAN-MPBR16,10.0.1.244 -DELFINA_MIKKELSON,DELFINA_MIKKELSON-MPBR16,10.0.1.245 -ORVILLE_SETZLER,ORVILLE_SETZLER-MPBR16,10.0.1.246 -RHODA_MOLDAN,RHODA_MOLDAN-MPBR16,10.0.1.247 -TRISH_SCHILLINGER,TRISH_SCHILLINGER-MPBR16,10.0.1.248 -RODRIGO_SCROGGIN,RODRIGO_SCROGGIN-MPBR16,10.0.1.249 -STERLING_SHRINER,STERLING_SHRINER-MPBR16,10.0.1.250 -HARVEY_TAUBER,HARVEY_TAUBER-MPBR16,10.0.1.251 -CLIFF_MONTOUR,CLIFF_MONTOUR-MPBR16,10.0.1.252 -KURTIS_YARK,KURTIS_YARK-MPBR16,10.0.1.253 -COLLEEN_SLATE,COLLEEN_SLATE-MPBR16,10.0.1.254 -TEQUILA_GROSKREUTZ,TEQUILA_GROSKREUTZ-MPBR16,10.0.1.255 -RUBEN_ALGARIN,RUBEN_ALGARIN-MPBR16,10.0.2.0 -KENNETH_INNOCENTI,KENNETH_INNOCENTI-MPBR16,10.0.2.1 -CHARMAINE_ALTERMATT,CHARMAINE_ALTERMATT-MPBR16,10.0.2.2 -JOHN_MOJICA,JOHN_MOJICA-MPBR16,10.0.2.3 -FREDDY_DELORE,FREDDY_DELORE-MPBR16,10.0.2.4 -FLORENTINO_BLAY,FLORENTINO_BLAY-MPBR16,10.0.2.5 -LANE_ALEXNDER,LANE_ALEXNDER-MPBR16,10.0.2.6 -CAROLINA_FINICAL,CAROLINA_FINICAL-MPBR16,10.0.2.7 -COY_CASHION,COY_CASHION-MPBR16,10.0.2.8 -LISA_ERB,LISA_ERB-MPBR16,10.0.2.9 -NORENE_HODNETT,NORENE_HODNETT-MPBR16,10.0.2.10 -RENE_EDINGER,RENE_EDINGER-MPBR16,10.0.2.11 -LINCOLN_LUCIER,LINCOLN_LUCIER-MPBR16,10.0.2.12 -COLETTE_SLOVER,COLETTE_SLOVER-MPBR16,10.0.2.13 -WILBUR_DEDECKER,WILBUR_DEDECKER-MPBR16,10.0.2.14 -MARTHA_CHESSER,MARTHA_CHESSER-MPBR16,10.0.2.15 -FRANCOISE_LAVINE,FRANCOISE_LAVINE-MPBR16,10.0.2.16 -MARLEN_PAULSHOCK,MARLEN_PAULSHOCK-MPBR16,10.0.2.17 -JULENE_MOUSLEY,JULENE_MOUSLEY-MPBR16,10.0.2.18 -RUFUS_TREZZA,RUFUS_TREZZA-MPBR16,10.0.2.19 -SONNY_DEHNERT,SONNY_DEHNERT-MPBR16,10.0.2.20 -JON_PARVIN,JON_PARVIN-MPBR16,10.0.2.21 -TRINIDAD_SEEVERS,TRINIDAD_SEEVERS-MPBR16,10.0.2.22 -MYRON_WINFREY,MYRON_WINFREY-MPBR16,10.0.2.23 -TASHIA_KNOLTON,TASHIA_KNOLTON-MPBR16,10.0.2.24 -VERNON_CRIVELLO,VERNON_CRIVELLO-MPBR16,10.0.2.25 -CHANA_FRINK,CHANA_FRINK-MPBR16,10.0.2.26 -CHARLIE_REETZ,CHARLIE_REETZ-MPBR16,10.0.2.27 -OSVALDO_GANDY,OSVALDO_GANDY-MPBR16,10.0.2.28 -HONG_SEYMORE,HONG_SEYMORE-MPBR16,10.0.2.29 -CAROLA_RATTRAY,CAROLA_RATTRAY-MPBR16,10.0.2.30 -LANNY_VANDENBERGHE,LANNY_VANDENBERGHE-MPBR16,10.0.2.31 -LAVERN_LONGBOTHAM,LAVERN_LONGBOTHAM-MPBR16,10.0.2.32 -PATRICK_PELT,PATRICK_PELT-MPBR16,10.0.2.33 -MEREDITH_VANLUVEN,MEREDITH_VANLUVEN-MPBR16,10.0.2.34 -WILBUR_PALADINO,WILBUR_PALADINO-MPBR16,10.0.2.35 -CHESTER_STANKO,CHESTER_STANKO-MPBR16,10.0.2.36 -NANNIE_MONTS,NANNIE_MONTS-MPBR16,10.0.2.37 -SCOT_ROOD,SCOT_ROOD-MPBR16,10.0.2.38 -LILLY_WANK,LILLY_WANK-MPBR16,10.0.2.39 -ANTONIO_FATE,ANTONIO_FATE-MPBR16,10.0.2.40 -CARMINA_RIBAUDO,CARMINA_RIBAUDO-MPBR16,10.0.2.41 -DIAMOND_STAUCH,DIAMOND_STAUCH-MPBR16,10.0.2.42 -BRAD_LANDAVERDE,BRAD_LANDAVERDE-MPBR16,10.0.2.43 -FRANK_MICKLES,FRANK_MICKLES-MPBR16,10.0.2.44 -NELLIE_KAMIMURA,NELLIE_KAMIMURA-MPBR16,10.0.2.45 -TAWNY_KURIGER,TAWNY_KURIGER-MPBR16,10.0.2.46 -LAWRENCE_THORELL,LAWRENCE_THORELL-MPBR16,10.0.2.47 -TYLER_FONDOW,TYLER_FONDOW-MPBR16,10.0.2.48 -RUTH_ARMS,RUTH_ARMS-MPBR16,10.0.2.49 -ROMELIA_WIXTED,ROMELIA_WIXTED-MPBR16,10.0.2.50 -ROSALINDA_MINNIEFIELD,ROSALINDA_MINNIEFIELD-MPBR16,10.0.2.51 -HAL_GREAVER,HAL_GREAVER-MPBR16,10.0.2.52 -LARHONDA_GWALTNEY,LARHONDA_GWALTNEY-MPBR16,10.0.2.53 -DARLENE_REIAL,DARLENE_REIAL-MPBR16,10.0.2.54 -CLAUDE_ALLWARDT,CLAUDE_ALLWARDT-MPBR16,10.0.2.55 -FREDDY_PLITT,FREDDY_PLITT-MPBR16,10.0.2.56 -HORACIO_TRISKA,HORACIO_TRISKA-MPBR16,10.0.2.57 -JEFFREY_PETRILLA,JEFFREY_PETRILLA-MPBR16,10.0.2.58 -ROSEMARIE_PEAY,ROSEMARIE_PEAY-MPBR16,10.0.2.59 -EDDIE_MCCANTS,EDDIE_MCCANTS-MPBR16,10.0.2.60 -RON_JACKIEWICZ,RON_JACKIEWICZ-MPBR16,10.0.2.61 -DEE_GENZ,DEE_GENZ-MPBR16,10.0.2.62 -CHARLIE_CRONKHITE,CHARLIE_CRONKHITE-MPBR16,10.0.2.63 -ARDELL_NINKE,ARDELL_NINKE-MPBR16,10.0.2.64 -SHAWN_ASCENCIO,SHAWN_ASCENCIO-MPBR16,10.0.2.65 -MEGAN_REIGH,MEGAN_REIGH-MPBR16,10.0.2.66 -MIRA_NORRELL,MIRA_NORRELL-MPBR16,10.0.2.67 -JAKE_GALLAGHER,JAKE_GALLAGHER-MPBR16,10.0.2.68 -CAROLINA_MCDALE,CAROLINA_MCDALE-MPBR16,10.0.2.69 -BERRY_PHILLPS,BERRY_PHILLPS-MPBR16,10.0.2.70 -ROSEMARIE_FOUTCH,ROSEMARIE_FOUTCH-MPBR16,10.0.2.71 -ERNEST_RIDDER,ERNEST_RIDDER-MPBR16,10.0.2.72 -SIMON_DRAHEIM,SIMON_DRAHEIM-MPBR16,10.0.2.73 -ELMER_DAGNAN,ELMER_DAGNAN-MPBR16,10.0.2.74 -KYLE_ESAW,KYLE_ESAW-MPBR16,10.0.2.75 -KIRA_MADAGAN,KIRA_MADAGAN-MPBR16,10.0.2.76 -HANS_WIBBENS,HANS_WIBBENS-MPBR16,10.0.2.77 -RAY_CAVALIER,RAY_CAVALIER-MPBR16,10.0.2.78 -BEATRICE_CULBERT,BEATRICE_CULBERT-MPBR16,10.0.2.79 -KENNY_LEINONEN,KENNY_LEINONEN-MPBR16,10.0.2.80 -ESTER_CARRIER,ESTER_CARRIER-MPBR16,10.0.2.81 -BRIGETTE_HICIANO,BRIGETTE_HICIANO-MPBR16,10.0.2.82 -DOMINICK_GIRONDA,DOMINICK_GIRONDA-MPBR16,10.0.2.83 -DANA_KUHL,DANA_KUHL-MPBR16,10.0.2.84 -MARVEL_RYKERT,MARVEL_RYKERT-MPBR16,10.0.2.85 -TERRELL_SLY,TERRELL_SLY-MPBR16,10.0.2.86 -ANGELINA_DESROSIERS,ANGELINA_DESROSIERS-MPBR16,10.0.2.87 -MICHELLE_SEELIGER,MICHELLE_SEELIGER-MPBR16,10.0.2.88 -SCOTTY_SIGLIN,SCOTTY_SIGLIN-MPBR16,10.0.2.89 -ISAIAH_PANITZ,ISAIAH_PANITZ-MPBR16,10.0.2.90 -MATILDA_VASCONCELLOS,MATILDA_VASCONCELLOS-MPBR16,10.0.2.91 -VANDA_GILBERTSON,VANDA_GILBERTSON-MPBR16,10.0.2.92 -LARUE_ORTEGO,LARUE_ORTEGO-MPBR16,10.0.2.93 -JOYE_MICHELLI,JOYE_MICHELLI-MPBR16,10.0.2.94 -RICARDO_GOWERS,RICARDO_GOWERS-MPBR16,10.0.2.95 -STAR_SWEENY,STAR_SWEENY-MPBR16,10.0.2.96 -LOVIE_CONNOLLY,LOVIE_CONNOLLY-MPBR16,10.0.2.97 -SON_SCHRADER,SON_SCHRADER-MPBR16,10.0.2.98 -NICK_BONKOWSKI,NICK_BONKOWSKI-MPBR16,10.0.2.99 -SHANTAY_DEGRAVE,SHANTAY_DEGRAVE-MPBR16,10.0.2.100 -MICHELLE_MCCRACKER,MICHELLE_MCCRACKER-MPBR16,10.0.2.101 -MICHEAL_FINLAY,MICHEAL_FINLAY-MPBR16,10.0.2.102 -NELL_LOCKEN,NELL_LOCKEN-MPBR16,10.0.2.103 -REBECKA_AMSDELL,REBECKA_AMSDELL-MPBR16,10.0.2.104 -RUBIN_GREENLY,RUBIN_GREENLY-MPBR16,10.0.2.105 -ARCELIA_VILLANEUVA,ARCELIA_VILLANEUVA-MPBR16,10.0.2.106 -DANIKA_VANWAGNER,DANIKA_VANWAGNER-MPBR16,10.0.2.107 -BONNIE_TESTA,BONNIE_TESTA-MPBR16,10.0.2.108 -AUBREY_LAUTT,AUBREY_LAUTT-MPBR16,10.0.2.109 -JAY_STRATTON,JAY_STRATTON-MPBR16,10.0.2.110 -EDWIN_KAUPHUSMAN,EDWIN_KAUPHUSMAN-MPBR16,10.0.2.111 -IRA_GODLESKI,IRA_GODLESKI-MPBR16,10.0.2.112 -MIKE_TADLOCK,MIKE_TADLOCK-MPBR16,10.0.2.113 -MINNIE_MACHO,MINNIE_MACHO-MPBR16,10.0.2.114 -MARCOS_AMENT,MARCOS_AMENT-MPBR16,10.0.2.115 -ALETA_RODERICK,ALETA_RODERICK-MPBR16,10.0.2.116 -LOUIE_SCUDDER,LOUIE_SCUDDER-MPBR16,10.0.2.117 -ANTOINETTE_GIL,ANTOINETTE_GIL-MPBR16,10.0.2.118 -MAE_VICARS,MAE_VICARS-MPBR16,10.0.2.119 -TODD_ARMAS,TODD_ARMAS-MPBR16,10.0.2.120 -ASHLIE_FLING,ASHLIE_FLING-MPBR16,10.0.2.121 -JAKE_ALEKNA,JAKE_ALEKNA-MPBR16,10.0.2.122 -MICHELLE_HAROLDSON,MICHELLE_HAROLDSON-MPBR16,10.0.2.123 -JON_COLELLO,JON_COLELLO-MPBR16,10.0.2.124 -GILBERTO_SEK,GILBERTO_SEK-MPBR16,10.0.2.125 -HELLEN_BALESTRIERI,HELLEN_BALESTRIERI-MPBR16,10.0.2.126 -PERCY_SANTORE,PERCY_SANTORE-MPBR16,10.0.2.127 -NAOMI_OVERHULSER,NAOMI_OVERHULSER-MPBR16,10.0.2.128 -GERTUDE_RICHARDS,GERTUDE_RICHARDS-MPBR16,10.0.2.129 -GRETA_LASKEY,GRETA_LASKEY-MPBR16,10.0.2.130 -JOHNATHAN_MOBLEY,JOHNATHAN_MOBLEY-MPBR16,10.0.2.131 -LYNETTE_SCHAUMAN,LYNETTE_SCHAUMAN-MPBR16,10.0.2.132 -ROMA_TAMBLYN,ROMA_TAMBLYN-MPBR16,10.0.2.133 -EUGENIO_MANNELLA,EUGENIO_MANNELLA-MPBR16,10.0.2.134 -LANCE_SLOTEMAKER,LANCE_SLOTEMAKER-MPBR16,10.0.2.135 -JANELLE_PERRYMAN,JANELLE_PERRYMAN-MPBR16,10.0.2.136 -LAKESHA_KUYPER,LAKESHA_KUYPER-MPBR16,10.0.2.137 -MICKEY_BALLENSKY,MICKEY_BALLENSKY-MPBR16,10.0.2.138 -REYNALDO_FEDE,REYNALDO_FEDE-MPBR16,10.0.2.139 -KELLY_WEDLOCK,KELLY_WEDLOCK-MPBR16,10.0.2.140 -MOSES_TAPLEY,MOSES_TAPLEY-MPBR16,10.0.2.141 -BIANCA_GANGADYAL,BIANCA_GANGADYAL-MPBR16,10.0.2.142 -MILTON_DARGIN,MILTON_DARGIN-MPBR16,10.0.2.143 -IMOGENE_STENERSON,IMOGENE_STENERSON-MPBR16,10.0.2.144 -ARTIE_BADE,ARTIE_BADE-MPBR16,10.0.2.145 -WILFRED_DEGAETANO,WILFRED_DEGAETANO-MPBR16,10.0.2.146 -ANDRES_PEDROTTI,ANDRES_PEDROTTI-MPBR16,10.0.2.147 -TORY_PESTANO,TORY_PESTANO-MPBR16,10.0.2.148 -FRED_ZANGARA,FRED_ZANGARA-MPBR16,10.0.2.149 -IRA_BLILER,IRA_BLILER-MPBR16,10.0.2.150 -ALLAN_KYTE,ALLAN_KYTE-MPBR16,10.0.2.151 -LAVERNE_CALLICOAT,LAVERNE_CALLICOAT-MPBR16,10.0.2.152 -ARTURO_KILMARTIN,ARTURO_KILMARTIN-MPBR16,10.0.2.153 -TYLER_DERRICK,TYLER_DERRICK-MPBR16,10.0.2.154 -CARMELA_GRITSCH,CARMELA_GRITSCH-MPBR16,10.0.2.155 -CHRISTIAN_DARTER,CHRISTIAN_DARTER-MPBR16,10.0.2.156 -TESSIE_GOLDSBY,TESSIE_GOLDSBY-MPBR16,10.0.2.157 -ALLEGRA_MARAGNO,ALLEGRA_MARAGNO-MPBR16,10.0.2.158 -JEFFERSON_SIEWERS,JEFFERSON_SIEWERS-MPBR16,10.0.2.159 -LEO_HOOGLAND,LEO_HOOGLAND-MPBR16,10.0.2.160 -NANA_BEBEAU,NANA_BEBEAU-MPBR16,10.0.2.161 -ROBYN_HOLROYD,ROBYN_HOLROYD-MPBR16,10.0.2.162 -BETTE_UMBERGER,BETTE_UMBERGER-MPBR16,10.0.2.163 -RACHELL_LAYMON,RACHELL_LAYMON-MPBR16,10.0.2.164 -JERMAINE_DECOSTA,JERMAINE_DECOSTA-MPBR16,10.0.2.165 -DARRYL_THORESEN,DARRYL_THORESEN-MPBR16,10.0.2.166 -FRIEDA_MARANGONI,FRIEDA_MARANGONI-MPBR16,10.0.2.167 -CHONG_GIVENS,CHONG_GIVENS-MPBR16,10.0.2.168 -VERN_STEINER,VERN_STEINER-MPBR16,10.0.2.169 -JOSEPH_KINGTON,JOSEPH_KINGTON-MPBR16,10.0.2.170 -ANDRES_BJORNBERG,ANDRES_BJORNBERG-MPBR16,10.0.2.171 -DOYLE_EVERSMEYER,DOYLE_EVERSMEYER-MPBR16,10.0.2.172 -JAVIER_RACETTE,JAVIER_RACETTE-MPBR16,10.0.2.173 -DARRELL_MIHOR,DARRELL_MIHOR-MPBR16,10.0.2.174 -MYLES_TEDDER,MYLES_TEDDER-MPBR16,10.0.2.175 -RALPH_SKULTETY,RALPH_SKULTETY-MPBR16,10.0.2.176 -ART_GOLDFARB,ART_GOLDFARB-MPBR16,10.0.2.177 -BRYCE_AUGUSTIN,BRYCE_AUGUSTIN-MPBR16,10.0.2.178 -TRACY_OLSEN,TRACY_OLSEN-MPBR16,10.0.2.179 -JODEE_ZIRBEL,JODEE_ZIRBEL-MPBR16,10.0.2.180 -KIRSTEN_SMILER,KIRSTEN_SMILER-MPBR16,10.0.2.181 -CARYN_COMSTOCK,CARYN_COMSTOCK-MPBR16,10.0.2.182 -NANCY_ABERLE,NANCY_ABERLE-MPBR16,10.0.2.183 -DELENA_TATTERSHALL,DELENA_TATTERSHALL-MPBR16,10.0.2.184 -TRACEY_ATCHESON,TRACEY_ATCHESON-MPBR16,10.0.2.185 -KAYLEIGH_COURTEMANCHE,KAYLEIGH_COURTEMANCHE-MPBR16,10.0.2.186 -DONA_DADLANI,DONA_DADLANI-MPBR16,10.0.2.187 -MARCO_MAHA,MARCO_MAHA-MPBR16,10.0.2.188 -MALINDA_VALLIN,MALINDA_VALLIN-MPBR16,10.0.2.189 -ALLIE_MCENTYRE,ALLIE_MCENTYRE-MPBR16,10.0.2.190 -JASPER_GOLDSTON,JASPER_GOLDSTON-MPBR16,10.0.2.191 -BRYNN_GIST,BRYNN_GIST-MPBR16,10.0.2.192 -KIRBY_WICKEY,KIRBY_WICKEY-MPBR16,10.0.2.193 -RACHEL_WENTZ,RACHEL_WENTZ-MPBR16,10.0.2.194 -KIMIKO_ROOD,KIMIKO_ROOD-MPBR16,10.0.2.195 -LEISA_ESPOSTO,LEISA_ESPOSTO-MPBR16,10.0.2.196 -CHERI_BRINKMANN,CHERI_BRINKMANN-MPBR16,10.0.2.197 -VITO_PACHERO,VITO_PACHERO-MPBR16,10.0.2.198 -KRYSTYNA_TANNEHILL,KRYSTYNA_TANNEHILL-MPBR16,10.0.2.199 -TAYLOR_ESSARY,TAYLOR_ESSARY-MPBR16,10.0.2.200 -JOSEFINA_CRALL,JOSEFINA_CRALL-MPBR16,10.0.2.201 -THOMAS_PANNING,THOMAS_PANNING-MPBR16,10.0.2.202 -GRANT_MORREALE,GRANT_MORREALE-MPBR16,10.0.2.203 -EDWIN_VORWERK,EDWIN_VORWERK-MPBR16,10.0.2.204 -RANDALL_NIEHAUS,RANDALL_NIEHAUS-MPBR16,10.0.2.205 -MARTY_PORCHE,MARTY_PORCHE-MPBR16,10.0.2.206 -NERISSA_BEAUCAGE,NERISSA_BEAUCAGE-MPBR16,10.0.2.207 -ALTAGRACIA_SEDBERRY,ALTAGRACIA_SEDBERRY-MPBR16,10.0.2.208 -SERGIO_RAYSON,SERGIO_RAYSON-MPBR16,10.0.2.209 -TRACY_SNELLING,TRACY_SNELLING-MPBR16,10.0.2.210 -SANJUANA_TRINGALI,SANJUANA_TRINGALI-MPBR16,10.0.2.211 -LUTHER_THRAN,LUTHER_THRAN-MPBR16,10.0.2.212 -DANITA_BLOSS,DANITA_BLOSS-MPBR16,10.0.2.213 -RUFUS_WESLEY,RUFUS_WESLEY-MPBR16,10.0.2.214 -CAROLINE_LIVERMORE,CAROLINE_LIVERMORE-MPBR16,10.0.2.215 -LIZZIE_HERSH,LIZZIE_HERSH-MPBR16,10.0.2.216 -SHIRLEY_SANCE,SHIRLEY_SANCE-MPBR16,10.0.2.217 -ARON_PIGNATELLO,ARON_PIGNATELLO-MPBR16,10.0.2.218 -MICHEAL_CASKEY,MICHEAL_CASKEY-MPBR16,10.0.2.219 -NOEL_MELLOTT,NOEL_MELLOTT-MPBR16,10.0.2.220 -MARINA_MATO,MARINA_MATO-MPBR16,10.0.2.221 -ISIDRO_FANNING,ISIDRO_FANNING-MPBR16,10.0.2.222 -JOVITA_BEACHY,JOVITA_BEACHY-MPBR16,10.0.2.223 -KAREEM_SAYLER,KAREEM_SAYLER-MPBR16,10.0.2.224 -VINNIE_GILLUND,VINNIE_GILLUND-MPBR16,10.0.2.225 -KELSEY_SILVERHORN,KELSEY_SILVERHORN-MPBR16,10.0.2.226 -JERROLD_BOGUE,JERROLD_BOGUE-MPBR16,10.0.2.227 -ALECIA_WASOWSKI,ALECIA_WASOWSKI-MPBR16,10.0.2.228 -CLAUDE_SAGGESE,CLAUDE_SAGGESE-MPBR16,10.0.2.229 -KEELY_SMOLINSKY,KEELY_SMOLINSKY-MPBR16,10.0.2.230 -ALVIN_FINNELL,ALVIN_FINNELL-MPBR16,10.0.2.231 -FELIX_MAZZARIELLO,FELIX_MAZZARIELLO-MPBR16,10.0.2.232 -ARLA_KOTTERNA,ARLA_KOTTERNA-MPBR16,10.0.2.233 -EDMUND_LIVINGSTON,EDMUND_LIVINGSTON-MPBR16,10.0.2.234 -MAXWELL_CALCAGNO,MAXWELL_CALCAGNO-MPBR16,10.0.2.235 -CLAIR_HULCY,CLAIR_HULCY-MPBR16,10.0.2.236 -JOHN_SEVIGNY,JOHN_SEVIGNY-MPBR16,10.0.2.237 -KATELYN_SHAPPELL,KATELYN_SHAPPELL-MPBR16,10.0.2.238 -JOYE_NAVARETTE,JOYE_NAVARETTE-MPBR16,10.0.2.239 -IVA_KAPLAN,IVA_KAPLAN-MPBR16,10.0.2.240 -RONALD_SERVISS,RONALD_SERVISS-MPBR16,10.0.2.241 -FORREST_VALDES,FORREST_VALDES-MPBR16,10.0.2.242 -WARREN_GOLLNICK,WARREN_GOLLNICK-MPBR16,10.0.2.243 -VIOLA_BEDDOME,VIOLA_BEDDOME-MPBR16,10.0.2.244 -MARLANA_SAMMER,MARLANA_SAMMER-MPBR16,10.0.2.245 -ODESSA_CORLEW,ODESSA_CORLEW-MPBR16,10.0.2.246 -ORVILLE_PERINO,ORVILLE_PERINO-MPBR16,10.0.2.247 -JEFFRY_WHIPPS,JEFFRY_WHIPPS-MPBR16,10.0.2.248 -DARREN_CAMBRIDGE,DARREN_CAMBRIDGE-MPBR16,10.0.2.249 -KERRIE_MILAND,KERRIE_MILAND-MPBR16,10.0.2.250 -JOHNIE_EASTERDAY,JOHNIE_EASTERDAY-MPBR16,10.0.2.251 -DAN_DESPER,DAN_DESPER-MPBR16,10.0.2.252 -CARMEN_BEDSOLE,CARMEN_BEDSOLE-MPBR16,10.0.2.253 -RUTHIE_EICHNER,RUTHIE_EICHNER-MPBR16,10.0.2.254 -HOWARD_BERSON,HOWARD_BERSON-MPBR16,10.0.2.255 -SON_COSTALES,SON_COSTALES-MPBR16,10.0.3.0 -FANNIE_SCHARFF,FANNIE_SCHARFF-MPBR16,10.0.3.1 -ANDRE_MCKINNIS,ANDRE_MCKINNIS-MPBR16,10.0.3.2 -BARBRA_STAUDE,BARBRA_STAUDE-MPBR16,10.0.3.3 -CARROLL_MCMAKIN,CARROLL_MCMAKIN-MPBR16,10.0.3.4 -ANN_AUMEND,ANN_AUMEND-MPBR16,10.0.3.5 -PATRICK_FACEMIRE,PATRICK_FACEMIRE-MPBR16,10.0.3.6 -CAROLINE_HAKKILA,CAROLINE_HAKKILA-MPBR16,10.0.3.7 -JAMAR_HATKE,JAMAR_HATKE-MPBR16,10.0.3.8 -HUGH_HOVE,HUGH_HOVE-MPBR16,10.0.3.9 -SOPHIA_PAVLOV,SOPHIA_PAVLOV-MPBR16,10.0.3.10 -ANTON_VERMILLION,ANTON_VERMILLION-MPBR16,10.0.3.11 -KYRA_TWEED,KYRA_TWEED-MPBR16,10.0.3.12 -ELLIOT_GIBBON,ELLIOT_GIBBON-MPBR16,10.0.3.13 -DEIDRE_ANDROLEWICZ,DEIDRE_ANDROLEWICZ-MPBR16,10.0.3.14 -NORMAN_GERRITY,NORMAN_GERRITY-MPBR16,10.0.3.15 -JUNITA_TRUEHEART,JUNITA_TRUEHEART-MPBR16,10.0.3.16 -OFELIA_LOCKET,OFELIA_LOCKET-MPBR16,10.0.3.17 -SHIRLENE_VANDEHEY,SHIRLENE_VANDEHEY-MPBR16,10.0.3.18 -KATRICE_THIBEAULT,KATRICE_THIBEAULT-MPBR16,10.0.3.19 -EMORY_FIATO,EMORY_FIATO-MPBR16,10.0.3.20 -KRISTY_BACKLUND,KRISTY_BACKLUND-MPBR16,10.0.3.21 -ALEXANDRIA_LESSLEY,ALEXANDRIA_LESSLEY-MPBR16,10.0.3.22 -MICAELA_BRENES,MICAELA_BRENES-MPBR16,10.0.3.23 -ELFRIEDE_SCHMELZER,ELFRIEDE_SCHMELZER-MPBR16,10.0.3.24 -MAXWELL_TOBIN,MAXWELL_TOBIN-MPBR16,10.0.3.25 -LARISA_RANSFORD,LARISA_RANSFORD-MPBR16,10.0.3.26 -GUY_BALDINI,GUY_BALDINI-MPBR16,10.0.3.27 -JACQUELINE_BROOMFIELD,JACQUELINE_BROOMFIELD-MPBR16,10.0.3.28 -JENAE_NYHUS,JENAE_NYHUS-MPBR16,10.0.3.29 -CASSANDRA_GONSER,CASSANDRA_GONSER-MPBR16,10.0.3.30 -LAMONT_DAIRE,LAMONT_DAIRE-MPBR16,10.0.3.31 -WILLETTE_COOLBAUGH,WILLETTE_COOLBAUGH-MPBR16,10.0.3.32 -EULA_EICHHORST,EULA_EICHHORST-MPBR16,10.0.3.33 -CAROLYN_SCHERPING,CAROLYN_SCHERPING-MPBR16,10.0.3.34 -RICK_FLOYD,RICK_FLOYD-MPBR16,10.0.3.35 -ALANA_HINCHLIFFE,ALANA_HINCHLIFFE-MPBR16,10.0.3.36 -GONZALO_WIRTANEN,GONZALO_WIRTANEN-MPBR16,10.0.3.37 -UTE_PUEBLA,UTE_PUEBLA-MPBR16,10.0.3.38 -SUSIE_SILGUERO,SUSIE_SILGUERO-MPBR16,10.0.3.39 -AARON_BRAMAN,AARON_BRAMAN-MPBR16,10.0.3.40 -TENA_HARTLEN,TENA_HARTLEN-MPBR16,10.0.3.41 -ISSAC_SZWEJBKA,ISSAC_SZWEJBKA-MPBR16,10.0.3.42 -LEVI_ROTERMUND,LEVI_ROTERMUND-MPBR16,10.0.3.43 -MAUDIE_UNTERSEHER,MAUDIE_UNTERSEHER-MPBR16,10.0.3.44 -VELLA_POINTER,VELLA_POINTER-MPBR16,10.0.3.45 -MOLLY_GIESSLER,MOLLY_GIESSLER-MPBR16,10.0.3.46 -SCARLETT_BRINK,SCARLETT_BRINK-MPBR16,10.0.3.47 -BRENDAN_WONDER,BRENDAN_WONDER-MPBR16,10.0.3.48 -JUSTIN_CIRA,JUSTIN_CIRA-MPBR16,10.0.3.49 -NISHA_DYCHES,NISHA_DYCHES-MPBR16,10.0.3.50 -LESTER_MONAHAN,LESTER_MONAHAN-MPBR16,10.0.3.51 -DENIS_TAJ,DENIS_TAJ-MPBR16,10.0.3.52 -DAISEY_GOVIN,DAISEY_GOVIN-MPBR16,10.0.3.53 -TIMMY_DUL,TIMMY_DUL-MPBR16,10.0.3.54 -LEANDRO_KOBACK,LEANDRO_KOBACK-MPBR16,10.0.3.55 -FRED_BASSIL,FRED_BASSIL-MPBR16,10.0.3.56 -JANIE_LAMOREAUX,JANIE_LAMOREAUX-MPBR16,10.0.3.57 -ALLAN_GRANDSTAFF,ALLAN_GRANDSTAFF-MPBR16,10.0.3.58 -NOLAN_REMPE,NOLAN_REMPE-MPBR16,10.0.3.59 -LOREEN_FORRESTER,LOREEN_FORRESTER-MPBR16,10.0.3.60 -LINCOLN_COLLAZO,LINCOLN_COLLAZO-MPBR16,10.0.3.61 -LEVI_ECKLER,LEVI_ECKLER-MPBR16,10.0.3.62 -DARRIN_HAMMERLE,DARRIN_HAMMERLE-MPBR16,10.0.3.63 -TOSHA_EAGLE,TOSHA_EAGLE-MPBR16,10.0.3.64 -GARY_CISCO,GARY_CISCO-MPBR16,10.0.3.65 -TOBY_ROSKE,TOBY_ROSKE-MPBR16,10.0.3.66 -ROXANA_HOBGOOD,ROXANA_HOBGOOD-MPBR16,10.0.3.67 -NANNIE_BALDERSON,NANNIE_BALDERSON-MPBR16,10.0.3.68 -CARMA_KRACKER,CARMA_KRACKER-MPBR16,10.0.3.69 -ARRON_DENISTON,ARRON_DENISTON-MPBR16,10.0.3.70 -NORINE_BRADDOCK,NORINE_BRADDOCK-MPBR16,10.0.3.71 -RENE_LYDIA,RENE_LYDIA-MPBR16,10.0.3.72 -JERALD_SNELLEN,JERALD_SNELLEN-MPBR16,10.0.3.73 -KATRINA_BACOTE,KATRINA_BACOTE-MPBR16,10.0.3.74 -MACK_STEINKUEHLER,MACK_STEINKUEHLER-MPBR16,10.0.3.75 -AJA_WITRY,AJA_WITRY-MPBR16,10.0.3.76 -ALEC_ROBLEDO,ALEC_ROBLEDO-MPBR16,10.0.3.77 -TEQUILA_EBBIGHAUSEN,TEQUILA_EBBIGHAUSEN-MPBR16,10.0.3.78 -KENNETH_LANGILLE,KENNETH_LANGILLE-MPBR16,10.0.3.79 -MABLE_HUBBARD,MABLE_HUBBARD-MPBR16,10.0.3.80 -HIRAM_KELLERHOUSE,HIRAM_KELLERHOUSE-MPBR16,10.0.3.81 -MARLENE_NOLLORA,MARLENE_NOLLORA-MPBR16,10.0.3.82 -LOWELL_CRADDOCK,LOWELL_CRADDOCK-MPBR16,10.0.3.83 -FLOSSIE_ADORNO,FLOSSIE_ADORNO-MPBR16,10.0.3.84 -CARMEL_STEGEMANN,CARMEL_STEGEMANN-MPBR16,10.0.3.85 -VANITA_FOLKERS,VANITA_FOLKERS-MPBR16,10.0.3.86 -ANGELIKA_AHLF,ANGELIKA_AHLF-MPBR16,10.0.3.87 -DELORES_MALPHURS,DELORES_MALPHURS-MPBR16,10.0.3.88 -JAMIE_SIEG,JAMIE_SIEG-MPBR16,10.0.3.89 -JONATHAN_SUMBERA,JONATHAN_SUMBERA-MPBR16,10.0.3.90 -WONDA_WOLAVER,WONDA_WOLAVER-MPBR16,10.0.3.91 -CATHERINE_HUGGINS,CATHERINE_HUGGINS-MPBR16,10.0.3.92 -TAJUANA_GODFREY,TAJUANA_GODFREY-MPBR16,10.0.3.93 -ROSALIA_MCCLURE,ROSALIA_MCCLURE-MPBR16,10.0.3.94 -OTTO_MCCULLAH,OTTO_MCCULLAH-MPBR16,10.0.3.95 -DORTHA_WILDHABER,DORTHA_WILDHABER-MPBR16,10.0.3.96 -MARTHA_RICHARDT,MARTHA_RICHARDT-MPBR16,10.0.3.97 -EILEEN_BOEHMAN,EILEEN_BOEHMAN-MPBR16,10.0.3.98 -KATHRINE_SPAKE,KATHRINE_SPAKE-MPBR16,10.0.3.99 -HANNA_LAPLAUNT,HANNA_LAPLAUNT-MPBR16,10.0.3.100 -BILL_DALES,BILL_DALES-MPBR16,10.0.3.101 -EMILIE_CHONG,EMILIE_CHONG-MPBR16,10.0.3.102 -DENNIS_BARRETTE,DENNIS_BARRETTE-MPBR16,10.0.3.103 -ELISE_DONA,ELISE_DONA-MPBR16,10.0.3.104 -ORVILLE_MILITANO,ORVILLE_MILITANO-MPBR16,10.0.3.105 -FREDERICKA_SUH,FREDERICKA_SUH-MPBR16,10.0.3.106 -GARRY_DEZENZO,GARRY_DEZENZO-MPBR16,10.0.3.107 -LAVONDA_LEBLOND,LAVONDA_LEBLOND-MPBR16,10.0.3.108 -DARWIN_CAHEE,DARWIN_CAHEE-MPBR16,10.0.3.109 -LESLIE_SCHADE,LESLIE_SCHADE-MPBR16,10.0.3.110 -JENNY_FRAIZER,JENNY_FRAIZER-MPBR16,10.0.3.111 -LUCINA_GENIS,LUCINA_GENIS-MPBR16,10.0.3.112 -DANE_FENNELL,DANE_FENNELL-MPBR16,10.0.3.113 -STEFAN_SPEYRER,STEFAN_SPEYRER-MPBR16,10.0.3.114 -JUSTIN_GROMER,JUSTIN_GROMER-MPBR16,10.0.3.115 -JAE_MATTIX,JAE_MATTIX-MPBR16,10.0.3.116 -SAMUEL_KENEBREW,SAMUEL_KENEBREW-MPBR16,10.0.3.117 -ELVA_ARLINGHAUS,ELVA_ARLINGHAUS-MPBR16,10.0.3.118 -OSCAR_KEARSLEY,OSCAR_KEARSLEY-MPBR16,10.0.3.119 -LINETTE_ROHLING,LINETTE_ROHLING-MPBR16,10.0.3.120 -SHELA_SEGOUIA,SHELA_SEGOUIA-MPBR16,10.0.3.121 -PABLO_LINEWEAVER,PABLO_LINEWEAVER-MPBR16,10.0.3.122 -LAURENCE_GROSCLAUDE,LAURENCE_GROSCLAUDE-MPBR16,10.0.3.123 -DAVIS_COOLIDGE,DAVIS_COOLIDGE-MPBR16,10.0.3.124 -NIKKI_INGRASSIA,NIKKI_INGRASSIA-MPBR16,10.0.3.125 -JUDITH_DULIN,JUDITH_DULIN-MPBR16,10.0.3.126 -LANITA_REINEKE,LANITA_REINEKE-MPBR16,10.0.3.127 -NAOMA_LY,NAOMA_LY-MPBR16,10.0.3.128 -SHERRY_NEHER,SHERRY_NEHER-MPBR16,10.0.3.129 -WILSON_MANHART,WILSON_MANHART-MPBR16,10.0.3.130 -BRYCE_JEE,BRYCE_JEE-MPBR16,10.0.3.131 -HUNTER_HOLLIDAY,HUNTER_HOLLIDAY-MPBR16,10.0.3.132 -GARRY_MLENAR,GARRY_MLENAR-MPBR16,10.0.3.133 -DANE_DAVIS,DANE_DAVIS-MPBR16,10.0.3.134 -KIRBY_LOUDEN,KIRBY_LOUDEN-MPBR16,10.0.3.135 -LUZ_JIGGETTS,LUZ_JIGGETTS-MPBR16,10.0.3.136 -RICHARD_HAWKE,RICHARD_HAWKE-MPBR16,10.0.3.137 -THADDEUS_FOLLANSBEE,THADDEUS_FOLLANSBEE-MPBR16,10.0.3.138 -KARI_NESHEIM,KARI_NESHEIM-MPBR16,10.0.3.139 -YADIRA_BRASFIELD,YADIRA_BRASFIELD-MPBR16,10.0.3.140 -DEWAYNE_EREDIA,DEWAYNE_EREDIA-MPBR16,10.0.3.141 -CARMEL_WILL,CARMEL_WILL-MPBR16,10.0.3.142 -TRACIE_WILKERS,TRACIE_WILKERS-MPBR16,10.0.3.143 -DELANA_BEEDLE,DELANA_BEEDLE-MPBR16,10.0.3.144 -SAMMY_GRIPPI,SAMMY_GRIPPI-MPBR16,10.0.3.145 -ELOY_ATES,ELOY_ATES-MPBR16,10.0.3.146 -SANTOS_BLANKENSHIP,SANTOS_BLANKENSHIP-MPBR16,10.0.3.147 -ANNEMARIE_MURRI,ANNEMARIE_MURRI-MPBR16,10.0.3.148 -SALVADOR_LEATH,SALVADOR_LEATH-MPBR16,10.0.3.149 -KESHA_JARDIN,KESHA_JARDIN-MPBR16,10.0.3.150 -JANELL_HILLYARD,JANELL_HILLYARD-MPBR16,10.0.3.151 -DEIRDRE_DERANEY,DEIRDRE_DERANEY-MPBR16,10.0.3.152 -ELLIOTT_TRILL,ELLIOTT_TRILL-MPBR16,10.0.3.153 -EUGENIO_FEINSTEIN,EUGENIO_FEINSTEIN-MPBR16,10.0.3.154 -PAMALA_RONE,PAMALA_RONE-MPBR16,10.0.3.155 -TIMOTHY_NIEMCZYK,TIMOTHY_NIEMCZYK-MPBR16,10.0.3.156 -TERRENCE_AVANCE,TERRENCE_AVANCE-MPBR16,10.0.3.157 -ANNIE_BARRE,ANNIE_BARRE-MPBR16,10.0.3.158 -WADE_GROUNDS,WADE_GROUNDS-MPBR16,10.0.3.159 -SALVATORE_GOLDY,SALVATORE_GOLDY-MPBR16,10.0.3.160 -KENDAL_TACKITT,KENDAL_TACKITT-MPBR16,10.0.3.161 -CONSUELO_BUNN,CONSUELO_BUNN-MPBR16,10.0.3.162 -GILBERTO_METROKA,GILBERTO_METROKA-MPBR16,10.0.3.163 -KELVIN_JACQUIER,KELVIN_JACQUIER-MPBR16,10.0.3.164 -TORRIE_DAVI,TORRIE_DAVI-MPBR16,10.0.3.165 -MARCO_PECKA,MARCO_PECKA-MPBR16,10.0.3.166 -RICARDO_WILLIE,RICARDO_WILLIE-MPBR16,10.0.3.167 -CARMA_WILLIAMSEN,CARMA_WILLIAMSEN-MPBR16,10.0.3.168 -DORIS_SUCHECKI,DORIS_SUCHECKI-MPBR16,10.0.3.169 -DAVE_LEAN,DAVE_LEAN-MPBR16,10.0.3.170 -IAN_QUINTELA,IAN_QUINTELA-MPBR16,10.0.3.171 -SOLOMON_SIMCOE,SOLOMON_SIMCOE-MPBR16,10.0.3.172 -MERLE_ROKER,MERLE_ROKER-MPBR16,10.0.3.173 -DANIEL_ORELLANO,DANIEL_ORELLANO-MPBR16,10.0.3.174 -LORINDA_LYALLS,LORINDA_LYALLS-MPBR16,10.0.3.175 -GENA_KIRCHER,GENA_KIRCHER-MPBR16,10.0.3.176 -MOISES_TSUKAMOTO,MOISES_TSUKAMOTO-MPBR16,10.0.3.177 -CHAD_CUESTAS,CHAD_CUESTAS-MPBR16,10.0.3.178 -TIMMY_GEACH,TIMMY_GEACH-MPBR16,10.0.3.179 -ADRIENE_BRANDNER,ADRIENE_BRANDNER-MPBR16,10.0.3.180 -ZOFIA_HALLAHAN,ZOFIA_HALLAHAN-MPBR16,10.0.3.181 -EVANGELINE_NEAVE,EVANGELINE_NEAVE-MPBR16,10.0.3.182 -DWAIN_MADARIAGA,DWAIN_MADARIAGA-MPBR16,10.0.3.183 -CHRIS_FLEWELLEN,CHRIS_FLEWELLEN-MPBR16,10.0.3.184 -VICTOR_MUNKBERG,VICTOR_MUNKBERG-MPBR16,10.0.3.185 -ELDORA_MANFREDONIA,ELDORA_MANFREDONIA-MPBR16,10.0.3.186 -LEONARDO_WEILER,LEONARDO_WEILER-MPBR16,10.0.3.187 -CELIA_MALONE,CELIA_MALONE-MPBR16,10.0.3.188 -BROCK_ECKERT,BROCK_ECKERT-MPBR16,10.0.3.189 -ARDITH_JUNIUS,ARDITH_JUNIUS-MPBR16,10.0.3.190 -LEONEL_LEAVELL,LEONEL_LEAVELL-MPBR16,10.0.3.191 -LAVINIA_MEINERS,LAVINIA_MEINERS-MPBR16,10.0.3.192 -KERRIE_WITTKE,KERRIE_WITTKE-MPBR16,10.0.3.193 -META_COZZONE,META_COZZONE-MPBR16,10.0.3.194 -LINDSAY_HENK,LINDSAY_HENK-MPBR16,10.0.3.195 -DAPHNE_TAI,DAPHNE_TAI-MPBR16,10.0.3.196 -ABBEY_MORREN,ABBEY_MORREN-MPBR16,10.0.3.197 -BONITA_NJOKU,BONITA_NJOKU-MPBR16,10.0.3.198 -HERSCHEL_LABORDE,HERSCHEL_LABORDE-MPBR16,10.0.3.199 -DUSTIN_SCAGGS,DUSTIN_SCAGGS-MPBR16,10.0.3.200 -BETHANN_COYER,BETHANN_COYER-MPBR16,10.0.3.201 -LLOYD_LEDSOME,LLOYD_LEDSOME-MPBR16,10.0.3.202 -CHET_TERZO,CHET_TERZO-MPBR16,10.0.3.203 -KYLE_PICARELLO,KYLE_PICARELLO-MPBR16,10.0.3.204 -DARIN_CORKRAN,DARIN_CORKRAN-MPBR16,10.0.3.205 -PETE_STOKE,PETE_STOKE-MPBR16,10.0.3.206 -ROSELLA_MORRISROE,ROSELLA_MORRISROE-MPBR16,10.0.3.207 -LEONARDO_KOGAN,LEONARDO_KOGAN-MPBR16,10.0.3.208 -JAYSON_STUNKARD,JAYSON_STUNKARD-MPBR16,10.0.3.209 -CECIL_BURGHER,CECIL_BURGHER-MPBR16,10.0.3.210 -HORTENCIA_KISH,HORTENCIA_KISH-MPBR16,10.0.3.211 -KINDRA_PUNG,KINDRA_PUNG-MPBR16,10.0.3.212 -JOSHUA_KYM,JOSHUA_KYM-MPBR16,10.0.3.213 -BILLY_ZAHN,BILLY_ZAHN-MPBR16,10.0.3.214 -ADRIAN_SCHELLMAN,ADRIAN_SCHELLMAN-MPBR16,10.0.3.215 -OLA_LENOCH,OLA_LENOCH-MPBR16,10.0.3.216 -EARNEST_PALERMO,EARNEST_PALERMO-MPBR16,10.0.3.217 -SUZIE_HUCKABAY,SUZIE_HUCKABAY-MPBR16,10.0.3.218 -QUINN_STUBBLEFIELD,QUINN_STUBBLEFIELD-MPBR16,10.0.3.219 -LUE_MAROHL,LUE_MAROHL-MPBR16,10.0.3.220 -CECIL_FRAPPIER,CECIL_FRAPPIER-MPBR16,10.0.3.221 -JERALD_DIKEMAN,JERALD_DIKEMAN-MPBR16,10.0.3.222 -DEANNA_DECARLO,DEANNA_DECARLO-MPBR16,10.0.3.223 -NICKOLAS_ALBERTO,NICKOLAS_ALBERTO-MPBR16,10.0.3.224 -BENITA_GORENFLO,BENITA_GORENFLO-MPBR16,10.0.3.225 -EUGENIA_VERIATO,EUGENIA_VERIATO-MPBR16,10.0.3.226 -DARIUS_PORTZ,DARIUS_PORTZ-MPBR16,10.0.3.227 -JULES_FANE,JULES_FANE-MPBR16,10.0.3.228 -CLIFFORD_ROBY,CLIFFORD_ROBY-MPBR16,10.0.3.229 -KARLA_RIEL,KARLA_RIEL-MPBR16,10.0.3.230 -ELAINE_RUCKER,ELAINE_RUCKER-MPBR16,10.0.3.231 diff --git a/splunk_eventgen/samples/userName.sample b/splunk_eventgen/samples/userName.sample deleted file mode 100644 index 73f1b6a7..00000000 --- a/splunk_eventgen/samples/userName.sample +++ /dev/null @@ -1,1000 +0,0 @@ -birodivulga162 -nildajcbonanno -ivettaadelima -pckomono -Looreeto -JooPedro1591 -claaarecurlingg -acciokcavote -JungD -InaraAllves -Haroldmcaol -xNessaa -stylesdofunk -meltemmeltemm -emapujig -cellphones4deal -amisisuvi -MegSeecharran95 -MargueritaYociu -MarcioBFasano -LeonoreKamelame -xecuwace -digufenob -celal1231 -TWOKeyyy -RolandeOkoye2 -Harriettapuum -oieps -mozzaSclavino -loverebeldesxd -livjeffries -keisanm -jaemchaney -ewequfu -alixscottx -Nathanssexyhats -JimmieElbahtity -ItsEmeline -Harrietsdeyj -AndreeOcheltree -AlizeRylieo -AiLuCanch -mandinfortson -erichforever -edukusisot -cuibefuz76 -WorldSophiaA -SharronSuyama54 -SadieTWx -SYKESorSTYLES -RachalLevering4 -McnicolNan3613 -MargariteGreide -LlewlynSa5ai629 -JustSoIssi -ItsGeovana -FatimahFlore472 -DoraAke7703 -Clorindarozne -BradieBeee -BeckieAnfinson5 -tanbasil -saubluchid75 -ribathfunk70 -onderaytac -never7112 -naathaanTW -mylovelyletter -mariaTW20041 -imjosev -georgiabethox -finleyfancy -elafufu -duhamor85 -chlosian -chloeh5595 -chaylamoro -ashlitleatherma -angelmunguia4 -aldawar14fb -aannadavidsson -oGuedes -LegallyBlonde -WilliamsTda -ValeskaAcevedo -TheTeaPartyRat -StevenAbdelaziz -SophieElise13 -SamiiHoran -RicardaSulejman -RetaThoeny3197 -NatoshaSherio -NaimaRandyy3 -FernandaHoran1D -Dannawpyrt -Daniellzeiro -Collenevbunk -CMSulistyo -BridgettVanslan -AlienConsulate -yofranzo -xGlitzMissMia -vivienxqrobison -vidaja87 -shania1D -ruemunnett81 -reactcore -rachelcurryTW -pedrod3001 -nathansykesluv -mariekxjwz -marbellagolden -malyon5a6er -malikmymonkey -keskinozlem -karolynfprbodna -jestrella04 -jessgoodisonx -iloveAMOJ -habkingtram73 -gobarep87 -ferryfbrndk -fapadoranonimo -ceturuxup -cathyorangeTW -ayunarolita -akumezopi -abiefebyan -franlindinhax -BrunoVinicius -Zoe98TW -TomsGoodgirl -ThatWhiteHoe -TasminChloee -TWAreMyStrength -SophiePeppinTW -Sofizamoloo -SharonKatner -Santosyzkir -SambaLivre -Rosemariegfbis -RichelleHirschy -Renitaikjzq -PortiaDiclaudio -PlanetaDoBieber -PhlyAhhSlim -NickieWillibran -NathanMyBF -MonikaByrdieu -MarenDobine9208 -MARIECAEN -LydaWarnack3486 -LuaTodaMinha -LeandroBoyligan -KonevelDaniele8 -KazukoGodfray69 -GoftonSi0bhan45 -GearldineMazurk -GaynellHannai -FlaviaKordas383 -FCOLuanRafael -EllieSykes2012 -DjDabPhlyte -DeneenGraciana5 -Deadraxfuam -Cyndyidorr -Contessasosdx -Colleenanaqe -CodyMartinn -Cinthiafanbx -Chayawkjpg -CasimiraSaam253 -BellinMa5hta461 -AyooCandyy -AlenKarabegovic -xoxoDIANEEExoxo -wizardQi -wh0thehellishe -vilmaramb88 -vestefi86 -thatsjoesmile -sungsik1 -smileinmyworld -sksduf8shf -semakrglu -saelkanderi -roonixr -roetracgil88 -rionm9 -rebeccass3 -realplanetkway -pokannews -piasihu82 -optima20004 -onehysoc -nisehorrrrn -mishatar -mindy135 -megaanbennett -mayu1128 -mahra1998 -ludulcete -liraro85 -kagaminbot -jessPmartinez -javiarduengo -inroebhuv76 -iGOTthatASS -iAmRoc -hrkztiharu -heframi84 -harrysbrilliant -givemethismile -favstar50es -fantasylakegolf -fablede72 -estriquilinawq -ericaholtwhite -currieeeee -clevpunto81 -clairedakin -cierraj2k11 -chelseaTWparker -captainmari -btobdi6 -brendamachado9 -bracuaskey74 -birodivulga163 -betaniacastillo -beautboutique -aziz7217 -asagrou84 -annacdr -angusbcfc -angletz -anecimiq -alzain247 -alyssaTW -aiz3319 -loveDrea -Soiceybaby -KellesahhBOSS -ItsTaeMina -YvonneSykesTW -YoungTaffer7377 -WazzupChile -TudoPelaMel -ThisISMama -Templos90 -TaynaPinkowski8 -SykesTWLover -Stevie0205TW -Stephanygfs -SheeiLaHdeez -SertorisJustina -RubiGautsch1987 -RociolovesJB -ReynaGotay9918 -Rapiika -PetraCredell667 -PerlaaSulvaran -NathanSexyBody -Naeex3 -MyLiifeDiegoM -MrBvlgari -MissMollyTW -MirianVittone30 -MexicoTrafico -MegaLestary -Mcveigh5ickie11 -Mansun4eva -MAUROAMAYA7 -Luv3liiSwagg -Lorieln5 -LizyFigueiredo -LittleMBR -LightfordTien86 -Lesleezouk2526 -LeenaLocatelli8 -LaurenTW1D -LauraBechara07 -LarisaMarcil334 -LICKonSAM -KoloN0na3020 -KidoChild22 -JungHosterman48 -JuliaJayTW -JerilynCuddihee -JaythanLarry -JasmineTWsykes -JacqueseAnn -JDBiebsNavy -Iwanthisblueyes -IrmgardOvington -HermineAbajian5 -HazzasNo1Girl -HardHouseDj -GrlzCalMeSwavey -Glennqxz -Geniocatil -GNJP -FredCuper -FernandoMoehrin -FeltA5line7388 -FatimaQuiroz -FCLoveyouHarry -EmelyMedina -Dinahvxq -DennyHEART -Daniellskkqv -DGAFLiveLife -CruzStrotman959 -CruddyKidd -Credunut -CourtnieQ -Clydexkvqv -ClaudiaSGerpe -Clarawbsbt -Claaricortazar -Christenawyzp -CherSwag -CharXTheWantedX -CatrinaCudmore6 -Carlyvazfb -CakesBieberTW -CCCStunnaRico -Brittenybji -BrianaAmisano69 -AshleighWinterh -ArdeliaWilridge -Annabellew5 -AngelsOfBiebs -AndreaRamos0621 -Aljannah1433H -AleenSavely -ALiaALanziQ8 -693yk -3faryBieber -1DMegC -zainelmohra -yqerexyno -xxlouiseexx -xreplacemyheart -xkuwaitya -xXlautjuuhhhXx -xJvdw -xFillizzx -xDelilaah -xBieberUSmile -winatawira98 -whojaaaxD -wendelpereira -vomafym -viiccttoorriia -vawanitix -vanessaLUVShg -uralekb -uptownworld -unerib75 -transformers89 -tonicruzgon -toafferan83 -tertibi83 -temordia -taigaca83 -taanisefossatti -supcaca77 -sukaeRTe -straatratx -stilcica72 -stelladsouz -stefou1 -spirovin82 -soulmate22 -slaykatart -sigbanan89 -shorouk93 -serotoninetkisi -samaradusj -saarahmartinez -saadromeh -rourkestudio -replaythepast -rbknews -raphaelandria -profhelder -privanun73 -phobubbfoun74 -parasemprebeld -pamellatainara -oupah -otacran89 -orawokuzu -oqree -onoxozo -omarneto12 -okytixabo -odDeneikerM -nohaduc83 -nanashiisapii -mnaay -misskleintjemoi -mishellear -mildmildmild -michsydis86 -melaniemelu -mdfernando -maysasantos17 -matorlo72 -maryannibrahim -marlonbukoski -magranefan90210 -mabalue -luzaliram -loveyoulikeido -lolabatista91 -litlversli77 -lisboami -lelegagaliam -leees0601 -lauprowac76 -lastapk -laristump -larissagoretti -laianerafaela -laahfactum -kurdispba79 -koltl17 -kinqsuperman -kinkindno82 -karolNjc -kakusei -justinAce -juniorfluzaoooo -jooydiz -joassis3 -joannaonthelake -jinkiey -jevysworld -jayshockad -jaquesk8 -j3nni3j -iugossip -itymagibus -itsvinilopes -itsMAM -imThugginThoo -ikhouvanjexp -iiAmDomo -iamDayshaLee -iadoreparade -itoninho -iTeamRebelde -iImagineJB -iHoop4Polo -iCarlaLecaro -hucohika -hospyoura75 -hlooy17 -himajin5589 -hercai87 -hellyeahsykes -head0rheart -hassanalghalia -haerica -habredealcanzar -gyufolra78 -grecolucas -geovanad -gemmaleighTW -gdf10 -gabiewn -gabeAlfassy -foreverwithchay -flexardum89 -ferryfebrian2 -fernandGiancarl -favstar100celeb -fatihbarin -fanningh5 -evengx1 -eternalloveJB -epucahiniw -emilybudgeTW -ellebTW -elizabethwise -edemewe -drumstick155 -drisoouzaa -dlo3a501 -dimspirit -dangerm0use -daddydoo -da7awii -countrygurl1112 -checkupmv -camilasst -businesskent -bubysq -britishsick -blakebritton -bigu -bethsinden -beribi83 -barberaalexpro -banaam1 -axoxynuc -awlule70 -apysesil -anjinha7 -andrypinheiro -anaismr132 -amorXputaria -amandagamer -amandiota -alunes71 -alexogugu -abreulemos -abosalah14 -abbahmakama -abapiwa -a7bk28 -sarahlynnX -robertoT -nacamadademi -mesnina -kimchee -iRoCkHolliSteR -dOUBLeDeeeez -flyGuuy -LoveHer -JellyyBeann -YvdW -YourDreams -SUPERMIKEx -PUREBlondiee -LucasButtowski -JacobsGirl -GuinhoTerrivel -DntGive2FUCKS -Buttabby -BabyJayy -AnaLorenzoniES -1234569 -Yulyuha1983 -Yulemerlodt9 -Yowsa777 -YouDamnDummy -YesungBread -Yassinekx4 -YHateJamarcus -XxRosanneeee -Wuichan -WorldOfMattL -VeroRivas -VannityBolwerk -VaniEscuDiosa -TyishaWeidower4 -Twittyfooty -TurQu -Trungx -TroolATK -TriiciiaBV -ToshikoP -Tishox6 -TheIconicBoyz -TheWanted4Life -TheBeowulf -ThatYouBeMe -ThatNiggJSwagg -TeddyMinnie1104 -TeamBoogGIFI -TeamPhlytePromo -TashaTheTurtle -TalkinToU -TWAbbieL -TW1DGMD3 -THCSports -SyriaFnn -SybilHalbrooks2 -Swannounnet -SwaggRick -StashYourWeed -SrtaPera -SpankyHanky123 -SpainbiebsBTR1D -SoyLoQeQuieres -Sosanxx -SophiaMarieify -Smileforstyles -SincerelyCashe -SinPasadoSV -SimonFurne5290 -SimonFudd -Shirleeyre -ShebaDavtyan362 -ShannonTWanted -ShannanTheard82 -ShaneEstelae -SexyBiebsBitch -SegurosBH -SamellaDetzel36 -SamanaLeanne -SabrinaMimii -SELFMADESKAT -Rosemaryhclnf -Roselynvgskn -RochiCalderini -RoAlvarenga -RideOfMyLife -RetweetsKWT -RekliSpor -ReganTW -RaffoTaffo -RachelBiipolar -QDSmilesPretty -PringleMe5ilyn2 -PhyliciaBaisa -Philomenafdqci -PeteMcVries -Paulaortjim -PatriciaDreamer -ParkersLaugh -Orlanee3 -Ok202o -OdeioFalsidades -ObsessWithZayn -Nohemiiy977 -Nm6 -Nikolasol -Nessagoregous -Naysilva -NaturalliBad -MszKeysha -MrDCsports -MooreTHEWANTED -MikaFreakazoid -MiguelFreitas -MigDT -MeuGuu -MeluchiMendez -Melissa13x -MelanieFUruguay -MeganeWerner -Mcanelly50MCWfq -MayaCeee -Maudiekgr -MattGotTheJuice -Mathioluiz -Mathbelliin -MarianaaNuunes -MariSaysSWAG -Marcelavms -MadlyOdd -MERTOS -LydiaHumess -LuablancofansFC -LuaMeuPeDeMulek -LoveMyTweeets -LoveKiidrauhl -LookAtTheStarss -Liluprieto -Lidipitoko -Leo4ss -LeiLeiyolo -LatinGirlSWAAG -Latias619bot -LadyTripz1 -LOEMPIAk -LKJPhotography -KulkeLashanda76 -KittenCh5ista66 -KimburleyD -KaysTWSykes -KatrineAasland -KarlyPraes -KaiserGDL -JuuhPiano -JuanJo7V -Jorgiit0oRG -JinCourt -JessicaaSykesTW -JazzBEENPretty -JayyBasilio -JaylenneIvanna -JRNoCricket -ItsSara1D -ItbieberOrDiie -IssacBEENRICH -Israhelldid911 -IsiahDearruda33 -ImWhoUWant -Ilovethose5boys -IwearTIArAs -IIrraaMcFly -Hulkanator -HollyWolff201 -HisAddiktion -HeroesRestart -HernettKaylene3 -Hedygicfp -HeCrazyOverTAM -HayleighGMD3x -HausOfMrYessCer -HassanAliQuresh -HPPatrono -GwenaaelleR -GuttaBtchLea -GuiiApolinario -GleudeCe0la8549 -GlennieBby -GiovannaPiccini -Ginaloveyou1 -GhadaMN -Gertietzi -GeritaMija3s -GabiReberte -GAMEX0VER -FreakyyB -FrasesGirlStar -Flykidjames -FloorrAlvarez -Flavio58 -FinleyJaedai -FcFamiliaGL -FarahBlackwater -FansDonJediondo -FLBieberTeam -FCchaysexyS2 -FCLuAr -EuQuisVcRestart -EstherWAYNE -EsAmorBelieber -Erickasxm -Epihk -EminemxKim -ElenaTwiterok -EleaseRulon3998 -DupontRene123 -DritJames -DoooshiiiI -DontCallMeBrah -DominiqueTineo2 -DizBruno -DivulgaKeizy2 -DiscoPanda -DieEnormous -Diamondsda -Deedraznjqn -DearOldBitter -DanielaCuellarr -DaisyyTheWanted -DaantjeKaspers -DaaniKM -CurlsRunDaworld -CreuDaRestart -Coriegjubp -ContessaCleven6 -ConcettaVannorm -CodyXBurguer -CienoBlanche491 -ChocoolaThii -CheutinVella421 -CheneePretty -CharlotteTW -ChantelHorsman4 -CeCeDaaatsMe -Catheyaaeml -Caseykidrauhl -CarolineFerra14 -CarleyTW -CaitGibbonsX -CachinhosDaMel -Bu2FulMASSACRE -BrigidaHoffmann -BriennaLee -BrendaGalea -BobbieStier6590 -BlessYaSoul -BlancESTdopant -BingoPlayersFan -BiinAjeel -BigDudechi -BiancaRaasch -BeylessMa5celen -Bethndwwg -Beforemylife -BeceneLaticia82 -BarbzloveNicki -BadGiiirl -BONECOINFRAVEL -BClementine -BBMQ8 -ArnitaLeys5788 -ArielDemo1 -ApoioOABR2 -AnnikenBrox -AndreaGlasche -Anastasia1905GS -Anais2610 -AmorAubrey -AmieeShaffner48 -AmandaZnz -Alansari42 -Airnais -AirAgenciesLtd -Adorethickems -AMOSORTILEGIO -A7maD25 -25SaRo0n45 -1literofvodka -1Girlciumenta -1Directionarry -1Darethesexxx -19abz -zyLvixD -zumbisemteta -zulu149er -zulfikarADNANI -zoeGmackay -zatchbell555 -yuko125s -youngnay113 -yosem7 -yeyo105 -yesikaMANZANO -yddubhaey -yassofsaad -xxLotjaa -xtyrzagioya -xrudoxod89 -xoxoCLO -xochloxo -xoNayyxo -xfleurtjeeeee -xcamilleloveyou -xbukeet -xLivingVintage -xXWHTNYXx -xTLMN -xSuzann01 -xShannaS -xSSEDDA -xRyaaannnnnn -xPaullaa -xNora -xJSV -xGivanoArnhem -xElevateGrande -xBrokenFake -x3CoOki3zx3 -x0xoMelanie -wzyrenato -wowitskidrauhl -worldrankin -wldkw -wikwikdy -wicovanO -whatsnextdaddy -welove1Dthemost -wcntv -watansport -wardah2020 -walkinthelena -waikhamon71 -voldemortbot -viihmedeirosED -viihkr -vicustarna -victoriaaarose -vemkTeeh -varavale -vanmathiias -v0iceoftreason -utesre81 -upovote -unmikerosas -unicornskingdom -undrgroundking -umsalman12 -umiushi1102 -ultimatezhanee -ulrhinoc82 -udonmarunomi -tweetinyamouth -tryfelynn -trueloka -trueShtOnly -triperim74 -tremyn -tradticha87 -tracitla81 -tororo72 -titdemon84 -timmacy -tigerhzthun -tiffanyvaleria1 -tiffanyhomie -thmovturin83 -thinkerlik -theycallmetara -thecomeUP -thekauaigirl -thatsbeth -thatgirlpinkey -thatMODELtype -thasonvez -thamiigomes -tfi1233 -termpapersonlin -taylorjamieson -talitaestudante -takerui -tahDeetz -tacbadec89 -tablope71 -swarsuschild85 -swaglikebiebs69 -suzanefurst -sunskysun -sunshinekissess -sualilit -stobypinz -stefanyilv -stefaniskil -staystrrrong -staystrongnsn -statweestics -startriotinme -srtabrunaevans -squaidslikewoe -sponhana89 -spicYtRoll -sophmayo -sophieeeeeeex -sonwarnings -smrivieri -smiledrauhl -slemanQ8 -sleekamna87 -skylar0158 -skotic -skittzylicious -sincerelyshella -simplyyjerrika -shyKassie1076 -shogal3yon -servantblessing -senann -seenCHRISnaked -seduKtiveKharm -sealine01 -sdewilde7 -schomwilo81 -scholexef80 -sayyykayleee -savaburry -sarittaa -sarahchancer -saraa31 -sanchezjuanelo -sanjack2001 -samwoote70 -sammi098 -sammiamm -samelahaheuil -samcostello1 -samarkandya -sadybamfx3 -sabrinagoularts -sshauna -ruanmt -roscentno87 -rorroAsdf -rooaguiar -ronnocharas -romerluc -rojonikanta -roisiningle -rissyrisss -rirakkunaX -rienoonpa81 -richieboyswag -riasleekit83 -reutersMarketN -renverbto71 -rentacoderuk -reinventellie -reikazannge -reginexybeer -raymondoesit -rarityguide -raganmckenzi -rafatoda -rafaela1352 -radheam -rachiebabyxo -rabialex -queissorapaiz -purrttykitty \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents.sample b/splunk_eventgen/samples/useragents.sample deleted file mode 100644 index 5f021476..00000000 --- a/splunk_eventgen/samples/useragents.sample +++ /dev/null @@ -1,84 +0,0 @@ -Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 -BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ -Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 -Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] -BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 -Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents_desktop.sample b/splunk_eventgen/samples/useragents_desktop.sample deleted file mode 100644 index 46d79f71..00000000 --- a/splunk_eventgen/samples/useragents_desktop.sample +++ /dev/null @@ -1,75 +0,0 @@ -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) -Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0) -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9) AppleWebKit/537.71 (KHTML, like Gecko) Version/7.0 Safari/537.71 -Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 -Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 diff --git a/splunk_eventgen/samples/useragents_mobile.sample b/splunk_eventgen/samples/useragents_mobile.sample deleted file mode 100644 index 5f021476..00000000 --- a/splunk_eventgen/samples/useragents_mobile.sample +++ /dev/null @@ -1,84 +0,0 @@ -Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 -BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ -Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 -Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] -BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 -Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv deleted file mode 100644 index 383a15ae..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv +++ /dev/null @@ -1,847 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"2490.000000","40.695000","2490.000000","40.695000","2490.000000","40.695000","852.000000","0.000000",,,,,,,,,,,,"0.000000","334.500000","669.000000","15.000000","334.500000","334.500000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073320.000000","0.000000","2092704.000000","129468.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","100.000000","103.000000","115.000000","115.000000","115.000000","0.000000","0.000000","0.000000","95.000000","97.000000","97.000000","113.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","738083.000000",,,,, -"2638.000000","41.390000","2638.000000","41.390000","2638.000000","41.390000","1101.000000","0.000000",,,,,,,,,,,,"7.000000","480.000000","952.000000","10.000000","480.000000","480.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073100.000000","0.000000","2092704.000000","129468.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","101.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","96.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738103.000000",,,,, -"2310.000000","39.850000","2310.000000","39.850000","2310.000000","39.850000","766.000000","0.000000",,,,,,,,,,,,"0.000000","476.000000","950.000000","19.000000","476.000000","476.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073000.000000","0.000000","2092704.000000","129468.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","98.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","98.000000","93.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738123.000000",,,,, -"976.000000","30.580000","976.000000","30.580000","976.000000","30.580000","473.000000","0.000000",,,,,,,,,,,,"0.000000","257.000000","514.000000","6526.000000","257.000000","257.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2073184.000000","0.000000","2092704.000000","129468.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","81.000000","99.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","76.000000","93.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738143.000000",,,,, -"1399.000000","32.570000","1399.000000","32.570000","1399.000000","32.570000","611.000000","0.000000",,,,,,,,,,,,"27.000000","331.500000","636.000000","4477.000000","331.500000","331.500000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072828.000000","0.000000","2092704.000000","129468.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","65.000000","94.000000","115.000000","103.000000","109.000000","0.000000","0.000000","0.000000","96.000000","58.000000","88.000000","113.000000","95.000000","106.000000","160.000000","6000.000000","0.000000","738163.000000",,,,, -"2530.000000","37.880000","2530.000000","37.880000","2530.000000","37.880000","602.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","913.000000","460.000000","458.000000","458.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","67.000000","95.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","97.000000","60.000000","89.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738183.000000",,,,, -"1764.000000","32.285000","1764.000000","32.285000","1764.000000","32.285000","662.000000","0.000000",,,,,,,,,,,,"53.000000","11367.000000","22679.000000","167.000000","11367.000000","11367.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","79.000000","93.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","96.000000","71.000000","88.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738203.000000",,,,, -"2557.000000","36.010000","2557.000000","36.010000","2557.000000","36.010000","526.000000","0.000000",,,,,,,,,,,,"9.000000","1922.500000","3828.000000","17.000000","1922.500000","1922.500000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2073048.000000","0.000000","2092704.000000","129468.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","104.000000","92.000000","93.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","87.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738223.000000",,,,, -"1743.000000","32.185000","1743.000000","32.185000","1743.000000","32.185000","581.000000","0.000000",,,,,,,,,,,,"828.000000","5305.000000","9768.000000","22.000000","5305.000000","5305.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072736.000000","0.000000","2092704.000000","129468.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","104.000000","81.000000","91.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","76.000000","85.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738243.000000",,,,, -"2762.000000","36.475000","2762.000000","36.475000","2762.000000","36.475000","703.000000","0.000000",,,,,,,,,,,,"0.000000","620.500000","1241.000000","7.000000","620.500000","620.500000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072552.000000","0.000000","2092704.000000","129468.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","91.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738263.000000",,,,, -"2488.000000","35.190000","2488.000000","35.190000","2488.000000","35.190000","760.000000","0.000000",,,,,,,,,,,,"319.000000","486.000000","653.000000","13.000000","486.000000","486.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072232.000000","0.000000","2092704.000000","129468.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","87.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738283.000000",,,,, -"2542.000000","35.440000","2542.000000","35.440000","2542.000000","35.440000","739.000000","0.000000",,,,,,,,,,,,"1443.000000","1058.000000","673.000000","7.000000","1058.000000","1058.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2071664.000000","0.000000","2092704.000000","129468.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","103.000000","90.000000","114.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","97.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738303.000000",,,,, -"2921.000000","39.720000","2921.000000","39.720000","2921.000000","39.720000","439.000000","0.000000",,,,,,,,,,,,"822.000000","1148.000000","1473.000000","18.000000","1148.000000","1148.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071668.000000","0.000000","2092704.000000","129468.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","104.000000","91.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","98.000000","86.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738323.000000",,,,, -"1933.000000","35.075000","1933.000000","35.075000","1933.000000","35.075000","630.000000","0.000000",,,,,,,,,,,,"3822.000000","2383.000000","944.000000","3.000000","2383.000000","2383.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","92.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738343.000000",,,,, -"2517.000000","37.820000","2517.000000","37.820000","2517.000000","37.820000","498.000000","0.000000",,,,,,,,,,,,"1862.000000","1160.000000","458.000000","1.000000","1160.000000","1160.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","93.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738363.000000",,,,, -"2278.000000","42.200000","2278.000000","42.200000","2278.000000","42.200000","640.000000","0.000000",,,,,,,,,,,,"1684.000000","1041.000000","398.000000","4.000000","1041.000000","1041.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070756.000000","0.000000","2092704.000000","129468.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","94.000000","90.000000","115.000000","108.000000","109.000000","0.000000","0.000000","0.000000","96.000000","85.000000","83.000000","113.000000","97.000000","107.000000","160.000000","6000.000000","0.000000","738383.000000",,,,, -"1994.000000","40.870000","1994.000000","40.870000","1994.000000","40.870000","1052.000000","0.000000",,,,,,,,,,,,"1308.000000","831.000000","354.000000","3.000000","831.000000","831.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070720.000000","0.000000","2092704.000000","129468.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","88.000000","115.000000","108.000000","107.000000","0.000000","0.000000","0.000000","96.000000","85.000000","82.000000","113.000000","97.000000","104.000000","160.000000","6000.000000","0.000000","738403.000000",,,,, -"2356.000000","42.570000","2356.000000","42.570000","2356.000000","42.570000","785.000000","0.000000",,,,,,,,,,,,"87.000000","111.500000","135.000000","8.000000","111.500000","111.500000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070256.000000","0.000000","2092704.000000","129468.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","96.000000","83.000000","82.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738423.000000",,,,, -"1843.000000","45.155000","1843.000000","45.155000","1843.000000","45.155000","1227.000000","0.000000",,,,,,,,,,,,"506.000000","711.500000","914.000000","2.000000","711.500000","711.500000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069912.000000","0.000000","2092704.000000","129468.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","104.000000","88.000000","91.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","78.000000","84.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738443.000000",,,,, -"2522.000000","48.350000","2522.000000","48.350000","2522.000000","48.350000","753.000000","0.000000",,,,,,,,,,,,"0.000000","126.000000","251.000000","10.000000","126.000000","126.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069700.000000","0.000000","2092704.000000","129468.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","94.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","84.000000","87.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738463.000000",,,,, -"3579.000000","53.315000","3579.000000","53.315000","3579.000000","53.315000","729.000000","0.000000",,,,,,,,,,,,"190.000000","751.000000","1306.000000","4.000000","751.000000","751.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069508.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","105.000000","103.000000","96.000000","115.000000","204.000000","108.000000","0.000000","0.000000","0.000000","96.000000","95.000000","89.000000","114.000000","204.000000","107.000000","160.000000","6000.000000","0.000000","738483.000000",,,,, -"4342.000000","48.900000","4342.000000","48.900000","4342.000000","48.900000","1260.000000","0.000000",,,,,,,,,,,,"206.000000","859.000000","1510.000000","6.000000","859.000000","859.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070624.000000","0.000000","2092704.000000","129468.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","132.000000","102.000000","120.000000","204.000000","116.000000","0.000000","0.000000","0.000000","97.000000","123.000000","94.000000","116.000000","204.000000","116.000000","160.000000","6000.000000","0.000000","738503.000000",,,,, -"4402.000000","49.180000","4402.000000","49.180000","4402.000000","49.180000","920.000000","0.000000",,,,,,,,,,,,"3.000000","579.500000","1155.000000","20.000000","579.500000","579.500000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","108.000000","164.000000","109.000000","162.000000","204.000000","178.000000","0.000000","0.000000","0.000000","99.000000","154.000000","100.000000","145.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","738523.000000",,,,, -"3748.000000","46.110000","3748.000000","46.110000","3748.000000","46.110000","593.000000","0.000000",,,,,,,,,,,,"0.000000","577.000000","1153.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070820.000000","0.000000","2092704.000000","129468.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","109.000000","174.000000","115.000000","170.000000","201.000000","178.000000","0.000000","0.000000","0.000000","100.000000","157.000000","105.000000","148.000000","191.000000","159.000000","160.000000","6000.000000","0.000000","738542.000000",,,,, -"4747.000000","49.800000","4747.000000","49.800000","4747.000000","49.800000","853.000000","0.000000",,,,,,,,,,,,"121.000000","1635.000000","3148.000000","17.000000","1635.000000","1635.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","179.000000","120.000000","171.000000","201.000000","187.000000","0.000000","0.000000","0.000000","101.000000","162.000000","109.000000","155.000000","191.000000","179.000000","160.000000","6000.000000","0.000000","738563.000000",,,,, -"4843.000000","50.255000","4843.000000","50.255000","4843.000000","50.255000","776.000000","0.000000",,,,,,,,,,,,"124.000000","588.000000","1051.000000","8.000000","588.000000","588.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071272.000000","0.000000","2092704.000000","129468.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","184.000000","127.000000","176.000000","206.000000","196.000000","0.000000","0.000000","0.000000","102.000000","167.000000","116.000000","158.000000","193.000000","187.000000","160.000000","6000.000000","0.000000","738583.000000",,,,, -"4740.000000","49.770000","4740.000000","49.770000","4740.000000","49.770000","880.000000","0.000000",,,,,,,,,,,,"202.000000","2118.000000","4033.000000","25.000000","2118.000000","2118.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","111.000000","191.000000","132.000000","179.000000","206.000000","197.000000","0.000000","0.000000","0.000000","103.000000","178.000000","121.000000","166.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738603.000000",,,,, -"4778.000000","49.445000","4778.000000","49.445000","4778.000000","49.445000","880.000000","0.000000",,,,,,,,,,,,"1.000000","513.000000","1023.000000","21.000000","513.000000","513.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070612.000000","0.000000","2092704.000000","129468.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","189.000000","137.000000","184.000000","206.000000","197.000000","0.000000","0.000000","0.000000","105.000000","177.000000","125.000000","170.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738623.000000",,,,, -"5030.000000","50.635000","5030.000000","50.635000","5030.000000","50.635000","967.000000","0.000000",,,,,,,,,,,,"1.000000","732.000000","1462.000000","19.000000","732.000000","732.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070224.000000","0.000000","2092704.000000","129468.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","193.000000","146.000000","188.000000","211.000000","201.000000","0.000000","0.000000","0.000000","105.000000","181.000000","134.000000","171.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738643.000000",,,,, -"4714.000000","49.150000","4714.000000","49.150000","4714.000000","49.150000","725.000000","0.000000",,,,,,,,,,,,"0.000000","450.500000","900.000000","29.000000","450.500000","450.500000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070060.000000","0.000000","2092704.000000","129468.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","195.000000","152.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","107.000000","182.000000","139.000000","173.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738663.000000",,,,, -"4943.000000","49.725000","4943.000000","49.725000","4943.000000","49.725000","955.000000","0.000000",,,,,,,,,,,,"0.000000","678.500000","1356.000000","61.000000","678.500000","678.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2070072.000000","0.000000","2092704.000000","129468.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","198.000000","157.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","109.000000","185.000000","145.000000","179.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738683.000000",,,,, -"4142.000000","45.960000","4142.000000","45.960000","4142.000000","45.960000","960.000000","0.000000",,,,,,,,,,,,"0.000000","579.500000","1159.000000","18.000000","579.500000","579.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069740.000000","0.000000","2092704.000000","129468.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","190.000000","165.000000","195.000000","202.000000","202.000000","0.000000","0.000000","0.000000","110.000000","173.000000","152.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738703.000000",,,,, -"3651.000000","43.655000","3651.000000","43.655000","3651.000000","43.655000","1227.000000","0.000000",,,,,,,,,,,,"1.000000","385.000000","769.000000","16.000000","385.000000","385.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069296.000000","0.000000","2092704.000000","129468.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","185.000000","170.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","111.000000","161.000000","155.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738723.000000",,,,, -"3442.000000","42.670000","3442.000000","42.670000","3442.000000","42.670000","1396.000000","0.000000",,,,,,,,,,,,"0.000000","377.500000","755.000000","11.000000","377.500000","377.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2069040.000000","0.000000","2092704.000000","129468.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","122.000000","181.000000","176.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","144.000000","158.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738743.000000",,,,, -"4002.000000","45.300000","4002.000000","45.300000","4002.000000","45.300000","1442.000000","0.000000",,,,,,,,,,,,"1.000000","822.000000","1643.000000","36.000000","822.000000","822.000000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068752.000000","0.000000","2092704.000000","129468.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","182.000000","183.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","139.000000","163.000000","182.000000","187.000000","199.000000","160.000000","6000.000000","0.000000","738763.000000",,,,, -"4596.000000","48.095000","4596.000000","48.095000","4596.000000","48.095000","2221.000000","0.000000",,,,,,,,,,,,"0.000000","525.500000","1050.000000","32.000000","525.500000","525.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068660.000000","0.000000","2092704.000000","129468.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","126.000000","184.000000","186.000000","196.000000","197.000000","202.000000","0.000000","0.000000","0.000000","114.000000","147.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738783.000000",,,,, -"4316.000000","50.275000","4316.000000","50.275000","4316.000000","50.275000","1720.000000","0.000000",,,,,,,,,,,,"8.000000","437.000000","866.000000","24.000000","437.000000","437.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","189.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","116.000000","159.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738803.000000",,,,, -"3743.000000","47.585000","3743.000000","47.585000","3743.000000","47.585000","1112.000000","0.000000",,,,,,,,,,,,"4.000000","485.500000","965.000000","18.000000","485.500000","485.500000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072720.000000","0.000000","2092704.000000","129468.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","186.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","117.000000","158.000000","164.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738823.000000",,,,, -"4026.000000","48.915000","4026.000000","48.915000","4026.000000","48.915000","927.000000","0.000000",,,,,,,,,,,,"4.000000","578.000000","1152.000000","24.000000","578.000000","578.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","185.000000","188.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","118.000000","152.000000","164.000000","185.000000","177.000000","194.000000","160.000000","6000.000000","0.000000","738843.000000",,,,, -"4860.000000","50.835000","4860.000000","50.835000","4860.000000","50.835000","711.000000","0.000000",,,,,,,,,,,,"2.000000","565.000000","1127.000000","24.000000","565.000000","565.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072452.000000","0.000000","2092704.000000","129468.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","133.000000","184.000000","188.000000","198.000000","205.000000","204.000000","0.000000","0.000000","0.000000","119.000000","155.000000","164.000000","186.000000","191.000000","194.000000","160.000000","6000.000000","0.000000","738863.000000",,,,, -"4618.000000","49.695000","4618.000000","49.695000","4618.000000","49.695000","808.000000","0.000000",,,,,,,,,,,,"2.000000","548.000000","1094.000000","20.000000","548.000000","548.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072380.000000","0.000000","2092704.000000","129468.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","135.000000","193.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","122.000000","168.000000","164.000000","187.000000","204.000000","199.000000","160.000000","6000.000000","0.000000","738883.000000",,,,, -"5095.000000","51.940000","5095.000000","51.940000","5095.000000","51.940000","866.000000","0.000000",,,,,,,,,,,,"2.000000","501.000000","999.000000","20.000000","501.000000","501.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","137.000000","196.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","124.000000","181.000000","164.000000","188.000000","204.000000","197.000000","160.000000","6000.000000","0.000000","738902.000000",,,,, -"5609.000000","54.355000","5609.000000","54.355000","5609.000000","54.355000","587.000000","0.000000",,,,,,,,,,,,"2.000000","688.500000","1373.000000","24.000000","688.500000","688.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072300.000000","0.000000","2092704.000000","129468.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","201.000000","191.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","126.000000","192.000000","167.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738923.000000",,,,, -"4313.000000","48.265000","4313.000000","48.265000","4313.000000","48.265000","1361.000000","0.000000",,,,,,,,,,,,"3.000000","540.500000","1077.000000","47.000000","540.500000","540.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072344.000000","0.000000","2092704.000000","129468.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","197.000000","190.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","128.000000","188.000000","165.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738943.000000",,,,, -"4995.000000","51.465000","4995.000000","51.465000","4995.000000","51.465000","578.000000","0.000000",,,,,,,,,,,,"2.000000","520.000000","1038.000000","18.000000","520.000000","520.000000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","144.000000","198.000000","190.000000","202.000000","215.000000","207.000000","0.000000","0.000000","0.000000","129.000000","186.000000","165.000000","192.000000","215.000000","206.000000","160.000000","6000.000000","0.000000","738963.000000",,,,, -"4719.000000","48.675000","4719.000000","48.675000","4719.000000","48.675000","836.000000","0.000000",,,,,,,,,,,,"4.000000","669.500000","1334.000000","19.000000","669.500000","669.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072384.000000","0.000000","2092704.000000","129468.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","146.000000","192.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","131.000000","177.000000","165.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","738983.000000",,,,, -"4315.000000","46.770000","4315.000000","46.770000","4315.000000","46.770000","1524.000000","0.000000",,,,,,,,,,,,"2.000000","536.000000","1070.000000","19.000000","536.000000","536.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072120.000000","0.000000","2092704.000000","129468.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","190.000000","189.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","133.000000","175.000000","166.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739003.000000",,,,, -"4192.000000","46.195000","4192.000000","46.195000","4192.000000","46.195000","1229.000000","0.000000",,,,,,,,,,,,"5.000000","837.500000","1670.000000","26.000000","837.500000","837.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","149.000000","186.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","134.000000","167.000000","167.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739023.000000",,,,, -"4681.000000","47.000000","4681.000000","47.000000","4681.000000","47.000000","779.000000","0.000000",,,,,,,,,,,,"14.000000","595.000000","1174.000000","27.000000","595.000000","595.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072064.000000","0.000000","2092704.000000","129468.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","186.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","137.000000","168.000000","170.000000","194.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739043.000000",,,,, -"4614.000000","46.685000","4614.000000","46.685000","4614.000000","46.685000","779.000000","0.000000",,,,,,,,,,,,"6.000000","520.500000","1033.000000","20.000000","520.500000","520.500000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","188.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","140.000000","169.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739062.000000",,,,, -"4836.000000","47.725000","4836.000000","47.725000","4836.000000","47.725000","1031.000000","0.000000",,,,,,,,,,,,"6.000000","748.000000","1490.000000","32.000000","748.000000","748.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072592.000000","0.000000","2092704.000000","129468.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","190.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","142.000000","176.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739082.000000",,,,, -"5162.000000","49.750000","5162.000000","49.750000","5162.000000","49.750000","1246.000000","0.000000",,,,,,,,,,,,"7.000000","1318.500000","2630.000000","25.000000","1318.500000","1318.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072488.000000","0.000000","2092704.000000","129468.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","194.000000","191.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","145.000000","179.000000","174.000000","198.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739103.000000",,,,, -"4937.000000","48.695000","4937.000000","48.695000","4937.000000","48.695000","973.000000","0.000000",,,,,,,,,,,,"32.000000","5722.000000","11411.000000","58.000000","5722.000000","5722.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072740.000000","0.000000","2092704.000000","129468.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","197.000000","193.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","147.000000","186.000000","177.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739122.000000",,,,, -"5218.000000","53.515000","5218.000000","53.515000","5218.000000","53.515000","1141.000000","0.000000",,,,,,,,,,,,"7.000000","624.000000","1241.000000","29.000000","624.000000","624.000000",,,,,,,,,,,"1090516.000000","1216348.000000","0.000000","0.000000","2073024.000000","0.000000","2092704.000000","129468.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","201.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","150.000000","192.000000","180.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739143.000000",,,,, -"4709.000000","56.125000","4709.000000","56.125000","4709.000000","56.125000","1074.000000","0.000000",,,,,,,,,,,,"60.000000","902.000000","1742.000000","25.000000","902.000000","902.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","197.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","151.000000","186.000000","181.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739162.000000",,,,, -"4164.000000","53.560000","4164.000000","53.560000","4164.000000","53.560000","1224.000000","0.000000",,,,,,,,,,,,"4712.000000","13172.500000","21633.000000","54.000000","13172.500000","13172.500000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072948.000000","0.000000","2092704.000000","129468.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","188.000000","192.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","153.000000","176.000000","179.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739182.000000",,,,, -"4805.000000","56.575000","4805.000000","56.575000","4805.000000","56.575000","1034.000000","0.000000",,,,,,,,,,,,"17.000000","488.000000","958.000000","11.000000","488.000000","488.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072904.000000","0.000000","2092704.000000","129468.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","184.000000","192.000000","205.000000","201.000000","209.000000","0.000000","0.000000","0.000000","155.000000","170.000000","178.000000","199.000000","197.000000","208.000000","160.000000","6000.000000","0.000000","739202.000000",,,,, -"4420.000000","54.765000","4420.000000","54.765000","4420.000000","54.765000","697.000000","0.000000",,,,,,,,,,,,"5.000000","381.000000","756.000000","8.000000","381.000000","381.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","188.000000","191.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","156.000000","171.000000","176.000000","199.000000","204.000000","204.000000","160.000000","6000.000000","0.000000","739222.000000",,,,, -"4214.000000","59.300000","4214.000000","59.300000","4214.000000","59.300000","778.000000","0.000000",,,,,,,,,,,,"2.000000","560.000000","1118.000000","12.000000","560.000000","560.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072744.000000","0.000000","2092704.000000","129468.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","189.000000","190.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","158.000000","169.000000","175.000000","200.000000","204.000000","201.000000","160.000000","6000.000000","0.000000","739242.000000",,,,, -"4482.000000","60.555000","4482.000000","60.555000","4482.000000","60.555000","682.000000","0.000000",,,,,,,,,,,,"2.000000","398.000000","794.000000","16.000000","398.000000","398.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072660.000000","0.000000","2092704.000000","129468.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","187.000000","190.000000","205.000000","209.000000","205.000000","0.000000","0.000000","0.000000","159.000000","163.000000","174.000000","200.000000","204.000000","200.000000","160.000000","6000.000000","0.000000","739262.000000",,,,, -"4657.000000","61.880000","4657.000000","61.880000","4657.000000","61.880000","1073.000000","0.000000",,,,,,,,,,,,"13.000000","292.000000","570.000000","15.000000","292.000000","292.000000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","184.000000","190.000000","205.000000","208.000000","205.000000","0.000000","0.000000","0.000000","161.000000","162.000000","173.000000","200.000000","200.000000","199.000000","160.000000","6000.000000","0.000000","739282.000000",,,,, -"4548.000000","61.370000","4548.000000","61.370000","4548.000000","61.370000","770.000000","0.000000",,,,,,,,,,,,"18.000000","561.500000","1105.000000","18.000000","561.500000","561.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","181.000000","187.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","164.000000","170.000000","174.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739302.000000",,,,, -"4457.000000","60.940000","4457.000000","60.940000","4457.000000","60.940000","923.000000","0.000000",,,,,,,,,,,,"915.000000","2446.500000","3976.000000","20.000000","2446.500000","2446.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072728.000000","0.000000","2092704.000000","129468.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","189.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","165.000000","172.000000","175.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739322.000000",,,,, -"4602.000000","61.625000","4602.000000","61.625000","4602.000000","61.625000","1564.000000","0.000000",,,,,,,,,,,,"2.000000","644.500000","1287.000000","20.000000","644.500000","644.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","168.000000","173.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739342.000000",,,,, -"4478.000000","61.040000","4478.000000","61.040000","4478.000000","61.040000","1824.000000","0.000000",,,,,,,,,,,,"8.000000","378.000000","748.000000","14.000000","378.000000","378.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","170.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739362.000000",,,,, -"4201.000000","59.735000","4201.000000","59.735000","4201.000000","59.735000","1506.000000","0.000000",,,,,,,,,,,,"2.000000","451.000000","899.000000","17.000000","451.000000","451.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","184.000000","189.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","167.000000","173.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739382.000000",,,,, -"4286.000000","60.140000","4286.000000","60.140000","4286.000000","60.140000","943.000000","0.000000",,,,,,,,,,,,"30.000000","1213.000000","2395.000000","19.000000","1213.000000","1213.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072376.000000","0.000000","2092704.000000","129468.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","180.000000","188.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","170.000000","161.000000","171.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739402.000000",,,,, -"3519.000000","56.530000","3519.000000","56.530000","3519.000000","56.530000","897.000000","0.000000",,,,,,,,,,,,"6.000000","351.500000","697.000000","10.000000","351.500000","351.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072308.000000","0.000000","2092704.000000","129468.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","175.000000","186.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","169.000000","150.000000","167.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739422.000000",,,,, -"5069.000000","63.815000","5069.000000","63.815000","5069.000000","63.815000","981.000000","0.000000",,,,,,,,,,,,"4.000000","703.000000","1402.000000","27.000000","703.000000","703.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","182.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","159.000000","166.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739443.000000",,,,, -"4774.000000","62.430000","4774.000000","62.430000","4774.000000","62.430000","889.000000","0.000000",,,,,,,,,,,,"2185.000000","2329.000000","2471.000000","20.000000","2329.000000","2329.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072348.000000","0.000000","2092704.000000","129468.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","186.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","167.000000","167.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739463.000000",,,,, -"3333.000000","50.655000","3333.000000","50.655000","3333.000000","50.655000","1163.000000","0.000000",,,,,,,,,,,,"6579.000000","6708.500000","6837.000000","34.000000","6708.500000","6708.500000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","183.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","169.000000","165.000000","165.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739482.000000",,,,, -"3565.000000","51.750000","3565.000000","51.750000","3565.000000","51.750000","650.000000","0.000000",,,,,,,,,,,,"388.000000","2851.000000","5313.000000","22.000000","2851.000000","2851.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072860.000000","0.000000","2092704.000000","129468.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","170.000000","182.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","168.000000","150.000000","162.000000","199.000000","195.000000","199.000000","160.000000","6000.000000","0.000000","739502.000000",,,,, -"4392.000000","55.635000","4392.000000","55.635000","4392.000000","55.635000","905.000000","0.000000",,,,,,,,,,,,"4897.000000","9654.000000","14409.000000","107.000000","9654.000000","9654.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","164.000000","181.000000","207.000000","184.000000","202.000000","0.000000","0.000000","0.000000","168.000000","141.000000","161.000000","199.000000","171.000000","196.000000","160.000000","6000.000000","0.000000","739522.000000",,,,, -"4429.000000","60.810000","4429.000000","60.810000","4429.000000","60.810000","932.000000","0.000000",,,,,,,,,,,,"628.000000","4518.500000","8407.000000","62.000000","4518.500000","4518.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","181.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","154.000000","162.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739542.000000",,,,, -"3683.000000","57.300000","3683.000000","57.300000","3683.000000","57.300000","873.000000","0.000000",,,,,,,,,,,,"5406.000000","9346.000000","13285.000000","20.000000","9346.000000","9346.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072584.000000","0.000000","2092704.000000","129468.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","186.000000","173.000000","179.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","159.000000","161.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739562.000000",,,,, -"2890.000000","53.575000","2890.000000","53.575000","2890.000000","53.575000","983.000000","0.000000",,,,,,,,,,,,"14981.000000","9604.000000","4227.000000","22.000000","9604.000000","9604.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072684.000000","0.000000","2092704.000000","129468.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","153.000000","174.000000","205.000000","201.000000","201.000000","0.000000","0.000000","0.000000","165.000000","141.000000","157.000000","199.000000","191.000000","191.000000","160.000000","6000.000000","0.000000","739582.000000",,,,, -"2773.000000","54.030000","2773.000000","54.030000","2773.000000","54.030000","962.000000","0.000000",,,,,,,,,,,,"13438.000000","10948.500000","8458.000000","9.000000","10948.500000","10948.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072724.000000","0.000000","2092704.000000","129468.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","127.000000","169.000000","205.000000","181.000000","201.000000","0.000000","0.000000","0.000000","164.000000","117.000000","151.000000","199.000000","180.000000","191.000000","160.000000","6000.000000","0.000000","739602.000000",,,,, -"2556.000000","53.005000","2556.000000","53.005000","2556.000000","53.005000","1566.000000","0.000000",,,,,,,,,,,,"9579.000000","7310.000000","5040.000000","19.000000","7310.000000","7310.000000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072676.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","119.000000","165.000000","205.000000","147.000000","201.000000","0.000000","0.000000","0.000000","163.000000","98.000000","147.000000","199.000000","135.000000","191.000000","160.000000","6000.000000","0.000000","739622.000000",,,,, -"3540.000000","57.630000","3540.000000","57.630000","3540.000000","57.630000","657.000000","0.000000",,,,,,,,,,,,"56.000000","6209.500000","12363.000000","45.000000","6209.500000","6209.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","138.000000","164.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","163.000000","109.000000","144.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739642.000000",,,,, -"3557.000000","57.715000","3557.000000","57.715000","3557.000000","57.715000","792.000000","0.000000",,,,,,,,,,,,"259.000000","2335.000000","4408.000000","61.000000","2335.000000","2335.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","181.000000","160.000000","163.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","162.000000","120.000000","141.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739662.000000",,,,, -"3087.000000","55.505000","3087.000000","55.505000","3087.000000","55.505000","1388.000000","0.000000",,,,,,,,,,,,"265.000000","2670.000000","5073.000000","23.000000","2670.000000","2670.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","180.000000","164.000000","161.000000","205.000000","190.000000","196.000000","0.000000","0.000000","0.000000","161.000000","127.000000","138.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739682.000000",,,,, -"3099.000000","55.560000","3099.000000","55.560000","3099.000000","55.560000","1464.000000","0.000000",,,,,,,,,,,,"217.000000","2940.500000","5662.000000","50.000000","2940.500000","2940.500000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","180.000000","163.000000","161.000000","205.000000","186.000000","196.000000","0.000000","0.000000","0.000000","160.000000","122.000000","136.000000","199.000000","153.000000","183.000000","160.000000","6000.000000","0.000000","739702.000000",,,,, -"3109.000000","56.105000","3109.000000","56.105000","3109.000000","56.105000","587.000000","0.000000",,,,,,,,,,,,"385.000000","8774.500000","17162.000000","33.000000","8774.500000","8774.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071980.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","179.000000","156.000000","159.000000","205.000000","176.000000","196.000000","0.000000","0.000000","0.000000","160.000000","116.000000","135.000000","199.000000","133.000000","183.000000","160.000000","6000.000000","0.000000","739722.000000",,,,, -"3324.000000","57.115000","3324.000000","57.115000","3324.000000","57.115000","694.000000","0.000000",,,,,,,,,,,,"445.000000","9452.000000","18459.000000","34.000000","9452.000000","9452.000000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","158.000000","157.000000","205.000000","176.000000","188.000000","0.000000","0.000000","0.000000","159.000000","119.000000","131.000000","199.000000","136.000000","178.000000","160.000000","6000.000000","0.000000","739742.000000",,,,, -"3383.000000","57.395000","3383.000000","57.395000","3383.000000","57.395000","705.000000","0.000000",,,,,,,,,,,,"1364.000000","5928.500000","10493.000000","53.000000","5928.500000","5928.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071804.000000","0.000000","2092704.000000","129468.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","154.000000","154.000000","205.000000","178.000000","184.000000","0.000000","0.000000","0.000000","158.000000","123.000000","127.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739762.000000",,,,, -"2190.000000","48.785000","2190.000000","48.785000","2190.000000","48.785000","770.000000","0.000000",,,,,,,,,,,,"11461.000000","10816.500000","10171.000000","21.000000","10816.500000","10816.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","152.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","156.000000","111.000000","124.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739782.000000",,,,, -"2287.000000","49.245000","2287.000000","49.245000","2287.000000","49.245000","809.000000","0.000000",,,,,,,,,,,,"15130.000000","8328.500000","1527.000000","3.000000","8328.500000","8328.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","131.000000","149.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","154.000000","102.000000","121.000000","199.000000","134.000000","163.000000","160.000000","6000.000000","0.000000","739802.000000",,,,, -"2401.000000","49.780000","2401.000000","49.780000","2401.000000","49.780000","667.000000","0.000000",,,,,,,,,,,,"13564.000000","11656.500000","9748.000000","33.000000","11656.500000","11656.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","122.000000","146.000000","202.000000","169.000000","181.000000","0.000000","0.000000","0.000000","151.000000","88.000000","117.000000","197.000000","125.000000","160.000000","160.000000","6000.000000","0.000000","739822.000000",,,,, -"3429.000000","56.110000","3429.000000","56.110000","3429.000000","56.110000","680.000000","0.000000",,,,,,,,,,,,"1129.000000","1602.000000","2075.000000","27.000000","1602.000000","1602.000000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071756.000000","0.000000","2092704.000000","129468.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","141.000000","145.000000","202.000000","194.000000","178.000000","0.000000","0.000000","0.000000","150.000000","101.000000","113.000000","197.000000","159.000000","152.000000","160.000000","6000.000000","0.000000","739842.000000",,,,, -"3383.000000","55.895000","3383.000000","55.895000","3383.000000","55.895000","606.000000","0.000000",,,,,,,,,,,,"290.000000","457.500000","625.000000","16.000000","457.500000","457.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071692.000000","0.000000","2092704.000000","129468.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","146.000000","201.000000","194.000000","182.000000","0.000000","0.000000","0.000000","149.000000","112.000000","112.000000","196.000000","159.000000","135.000000","160.000000","6000.000000","0.000000","739862.000000",,,,, -"3713.000000","57.445000","3713.000000","57.445000","3713.000000","57.445000","1088.000000","0.000000",,,,,,,,,,,,"10342.000000","5557.500000","772.000000","4.000000","5557.500000","5557.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","171.000000","150.000000","201.000000","194.000000","183.000000","0.000000","0.000000","0.000000","148.000000","131.000000","115.000000","196.000000","177.000000","147.000000","160.000000","6000.000000","0.000000","739882.000000",,,,, -"3452.000000","54.220000","3452.000000","54.220000","3452.000000","54.220000","713.000000","0.000000",,,,,,,,,,,,"22184.000000","11377.500000","569.000000","3.000000","11377.500000","11377.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071620.000000","0.000000","2092704.000000","129468.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","158.000000","151.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","147.000000","132.000000","116.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739902.000000",,,,, -"2954.000000","51.880000","2954.000000","51.880000","2954.000000","51.880000","1777.000000","0.000000",,,,,,,,,,,,"17443.000000","13003.000000","8563.000000","24.000000","13003.000000","13003.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","142.000000","150.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","146.000000","128.000000","118.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739922.000000",,,,, -"3519.000000","54.535000","3519.000000","54.535000","3519.000000","54.535000","1406.000000","0.000000",,,,,,,,,,,,"9508.000000","8017.500000","6527.000000","31.000000","8017.500000","8017.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","135.000000","149.000000","201.000000","188.000000","183.000000","0.000000","0.000000","0.000000","145.000000","119.000000","117.000000","195.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739942.000000",,,,, -"4168.000000","59.080000","4168.000000","59.080000","4168.000000","59.080000","1057.000000","0.000000",,,,,,,,,,,,"5.000000","276.000000","547.000000","11.000000","276.000000","276.000000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071184.000000","0.000000","2092704.000000","129468.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","157.000000","150.000000","201.000000","201.000000","188.000000","0.000000","0.000000","0.000000","145.000000","132.000000","118.000000","192.000000","178.000000","164.000000","160.000000","6000.000000","0.000000","739962.000000",,,,, -"4947.000000","62.745000","4947.000000","62.745000","4947.000000","62.745000","1030.000000","0.000000",,,,,,,,,,,,"8.000000","335.500000","663.000000","15.000000","335.500000","335.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","178.000000","153.000000","201.000000","210.000000","194.000000","0.000000","0.000000","0.000000","145.000000","153.000000","123.000000","195.000000","210.000000","175.000000","160.000000","6000.000000","0.000000","739982.000000",,,,, -"4595.000000","61.085000","4595.000000","61.085000","4595.000000","61.085000","957.000000","0.000000",,,,,,,,,,,,"27.000000","484.500000","942.000000","16.000000","484.500000","484.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071028.000000","0.000000","2092704.000000","129468.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","193.000000","155.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","144.000000","171.000000","127.000000","192.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740002.000000",,,,, -"3356.000000","53.765000","3356.000000","53.765000","3356.000000","53.765000","1270.000000","0.000000",,,,,,,,,,,,"6.000000","574.500000","1142.000000","23.000000","574.500000","574.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070932.000000","0.000000","2092704.000000","129468.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","184.000000","156.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","143.000000","162.000000","128.000000","191.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740022.000000",,,,, -"3894.000000","56.290000","3894.000000","56.290000","3894.000000","56.290000","1136.000000","0.000000",,,,,,,,,,,,"15.000000","375.500000","735.000000","17.000000","375.500000","375.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070852.000000","0.000000","2092704.000000","129468.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","177.000000","157.000000","200.000000","206.000000","197.000000","0.000000","0.000000","0.000000","142.000000","150.000000","129.000000","185.000000","199.000000","177.000000","160.000000","6000.000000","0.000000","740042.000000",,,,, -"3034.000000","52.255000","3034.000000","52.255000","3034.000000","52.255000","1177.000000","0.000000",,,,,,,,,,,,"14545.000000","7711.000000","876.000000","4.000000","7711.000000","7711.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070908.000000","0.000000","2092704.000000","129468.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","162.000000","157.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","141.000000","137.000000","129.000000","183.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740062.000000",,,,, -"1211.000000","43.685000","1211.000000","43.685000","1211.000000","43.685000","630.000000","0.000000",,,,,,,,,,,,"20303.000000","10183.000000","62.000000","2.000000","10183.000000","10183.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071384.000000","0.000000","2092704.000000","129468.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","115.000000","151.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","138.000000","102.000000","126.000000","182.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740082.000000",,,,, -"1365.000000","44.410000","1365.000000","44.410000","1365.000000","44.410000","698.000000","0.000000",,,,,,,,,,,,"18097.000000","14246.000000","10395.000000","29.000000","14246.000000","14246.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","159.000000","79.000000","147.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","136.000000","73.000000","123.000000","181.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740102.000000",,,,, -"991.000000","42.655000","991.000000","42.655000","991.000000","42.655000","838.000000","0.000000",,,,,,,,,,,,"7845.000000","6704.000000","5533.000000","25.000000","6704.000000","6704.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071476.000000","0.000000","2092704.000000","129468.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"0.000000","30.000000",,,,,,,,,,,"0.000000","156.000000","48.000000","142.000000","196.000000","75.000000","197.000000","0.000000","0.000000","0.000000","133.000000","44.000000","121.000000","180.000000","72.000000","178.000000","160.000000","6000.000000","0.000000","740122.000000",,,,, -"662.000000","43.605000","662.000000","43.605000","662.000000","43.605000","538.000000","0.000000",,,,,,,,,,,,"25832.000000","24908.000000","23974.000000","11.000000","24908.000000","24908.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"0.000000","10.000000",,,,,,,,,,,"0.000000","152.000000","40.000000","131.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","129.000000","37.000000","113.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740142.000000",,,,, -"720.000000","43.880000","720.000000","43.880000","720.000000","43.880000","820.000000","0.000000",,,,,,,,,,,,"23145.000000","25480.000000","27787.000000","15.000000","25480.000000","25480.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","149.000000","32.000000","122.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","127.000000","30.000000","107.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740162.000000",,,,, -"554.000000","43.100000","554.000000","43.100000","554.000000","43.100000","586.000000","0.000000",,,,,,,,,,,,"1665.000000","1037.000000","408.000000","3.000000","1037.000000","1037.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071848.000000","0.000000","2092704.000000","129468.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","146.000000","26.000000","113.000000","196.000000","32.000000","197.000000","0.000000","0.000000","0.000000","124.000000","24.000000","99.000000","178.000000","28.000000","178.000000","160.000000","6000.000000","0.000000","740182.000000",,,,, -"531.000000","41.990000","531.000000","41.990000","531.000000","41.990000","857.000000","0.000000",,,,,,,,,,,,"121.000000","221.000000","282.000000","4.000000","221.000000","221.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","0.000000","0.000000",,,,,,"27.000000","11.000000",,,,,,,,,,,"0.000000","141.000000","24.000000","104.000000","195.000000","34.000000","197.000000","0.000000","0.000000","0.000000","119.000000","22.000000","91.000000","178.000000","30.000000","175.000000","160.000000","6000.000000","0.000000","740202.000000",,,,, -"1094.000000","44.635000","1094.000000","44.635000","1094.000000","44.635000","937.000000","0.000000",,,,,,,,,,,,"72.000000","6377.000000","10677.000000","33.000000","6377.000000","6377.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","0.000000","0.000000",,,,,,"1986.000000","19.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","99.000000","195.000000","57.000000","197.000000","0.000000","0.000000","0.000000","117.000000","28.000000","87.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740222.000000",,,,, -"561.000000","42.130000","561.000000","42.130000","561.000000","42.130000","644.000000","0.000000",,,,,,,,,,,,"41.000000","292.000000","541.000000","6.000000","292.000000","292.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","135.000000","30.000000","92.000000","194.000000","57.000000","197.000000","0.000000","0.000000","0.000000","114.000000","28.000000","81.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740242.000000",,,,, -"812.000000","42.310000","812.000000","42.310000","812.000000","42.310000","678.000000","0.000000",,,,,,,,,,,,"18.000000","182.000000","346.000000","4.000000","182.000000","182.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071420.000000","0.000000","2092704.000000","129468.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","32.000000","79.000000","193.000000","57.000000","195.000000","0.000000","0.000000","0.000000","110.000000","30.000000","71.000000","177.000000","55.000000","174.000000","160.000000","6000.000000","0.000000","740262.000000",,,,, -"441.000000","40.570000","441.000000","40.570000","441.000000","40.570000","677.000000","0.000000",,,,,,,,,,,,"6.000000","96.000000","186.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071312.000000","0.000000","2092704.000000","129468.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","23.000000","68.000000","193.000000","51.000000","186.000000","0.000000","0.000000","0.000000","107.000000","22.000000","61.000000","175.000000","49.000000","170.000000","160.000000","6000.000000","0.000000","740282.000000",,,,, -"244.000000","39.640000","244.000000","39.640000","244.000000","39.640000","564.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071400.000000","0.000000","2092704.000000","129468.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","19.000000","57.000000","191.000000","39.000000","177.000000","0.000000","0.000000","0.000000","104.000000","18.000000","50.000000","175.000000","39.000000","146.000000","160.000000","6000.000000","0.000000","740302.000000",,,,, -"274.000000","41.285000","274.000000","41.285000","274.000000","41.285000","414.000000","0.000000",,,,,,,,,,,,"0.000000","59.000000","117.000000","1.000000","59.000000","59.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2071132.000000","0.000000","2092704.000000","129468.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","12.000000","45.000000","191.000000","31.000000","158.000000","0.000000","0.000000","0.000000","101.000000","12.000000","41.000000","175.000000","31.000000","134.000000","160.000000","6000.000000","0.000000","740322.000000",,,,, -"244.000000","41.145000","244.000000","41.145000","244.000000","41.145000","386.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","23.000000","27.500000","27.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","9.000000","35.000000","190.000000","13.000000","57.000000","0.000000","0.000000","0.000000","97.000000","9.000000","33.000000","173.000000","13.000000","55.000000","160.000000","6000.000000","0.000000","740342.000000",,,,, -"240.000000","41.125000","240.000000","41.125000","240.000000","41.125000","453.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","48.000000","153.000000","24.500000","24.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070304.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","112.000000","9.000000","26.000000","188.000000","13.000000","55.000000","0.000000","0.000000","0.000000","94.000000","9.000000","25.000000","166.000000","13.000000","53.000000","160.000000","6000.000000","0.000000","740362.000000",,,,, -"288.000000","41.845000","288.000000","41.845000","288.000000","41.845000","406.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","1.000000","48.500000","48.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","109.000000","9.000000","24.000000","188.000000","13.000000","54.000000","0.000000","0.000000","0.000000","91.000000","9.000000","22.000000","166.000000","13.000000","51.000000","160.000000","6000.000000","0.000000","740382.000000",,,,, -"243.000000","41.640000","243.000000","41.640000","243.000000","41.640000","506.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069776.000000","0.000000","2092704.000000","129468.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","21.000000","188.000000","13.000000","46.000000","0.000000","0.000000","0.000000","88.000000","9.000000","20.000000","166.000000","13.000000","45.000000","160.000000","6000.000000","0.000000","740402.000000",,,,, -"237.000000","41.610000","237.000000","41.610000","237.000000","41.610000","472.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","0.000000","23.000000","23.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069544.000000","0.000000","2092704.000000","129468.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","9.000000","19.000000","188.000000","13.000000","34.000000","0.000000","0.000000","0.000000","85.000000","9.000000","18.000000","166.000000","13.000000","31.000000","160.000000","6000.000000","0.000000","740422.000000",,,,, -"358.000000","34.675000","358.000000","34.675000","358.000000","34.675000","448.000000","0.000000",,,,,,,,,,,,"0.000000","122.000000","243.000000","1.000000","122.000000","122.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069432.000000","0.000000","2092704.000000","129468.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","98.000000","10.000000","18.000000","186.000000","14.000000","34.000000","0.000000","0.000000","0.000000","81.000000","10.000000","17.000000","160.000000","14.000000","31.000000","160.000000","6000.000000","0.000000","740442.000000",,,,, -"711.000000","36.340000","711.000000","36.340000","711.000000","36.340000","688.000000","0.000000",,,,,,,,,,,,"44.000000","237.500000","425.000000","2.000000","237.500000","237.500000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069264.000000","0.000000","2092704.000000","129468.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","95.000000","16.000000","18.000000","186.000000","50.000000","39.000000","0.000000","0.000000","0.000000","78.000000","15.000000","17.000000","159.000000","49.000000","39.000000","160.000000","6000.000000","0.000000","740463.000000",,,,, -"1026.000000","37.815000","1026.000000","37.815000","1026.000000","37.815000","724.000000","0.000000",,,,,,,,,,,,"39.000000","466.000000","848.000000","5.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"30.000000","15.000000",,,,,,,,,,,"0.000000","94.000000","27.000000","19.000000","186.000000","58.000000","50.000000","0.000000","0.000000","0.000000","77.000000","25.000000","18.000000","159.000000","57.000000","49.000000","160.000000","6000.000000","0.000000","740482.000000",,,,, -"976.000000","32.580000","976.000000","32.580000","976.000000","32.580000","495.000000","0.000000",,,,,,,,,,,,"1.000000","4386.000000","8755.000000","39.000000","4386.000000","4386.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071468.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"10.000000","5.000000",,,,,,,,,,,"0.000000","92.000000","37.000000","20.000000","186.000000","68.000000","56.000000","0.000000","0.000000","0.000000","75.000000","34.000000","19.000000","159.000000","68.000000","49.000000","160.000000","6000.000000","0.000000","740502.000000",,,,, -"722.000000","31.390000","722.000000","31.390000","722.000000","31.390000","1146.000000","0.000000",,,,,,,,,,,,"2.000000","293.000000","583.000000","5.000000","293.000000","293.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071820.000000","0.000000","2092704.000000","129468.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","90.000000","37.000000","19.000000","186.000000","68.000000","50.000000","0.000000","0.000000","0.000000","74.000000","34.000000","18.000000","159.000000","68.000000","41.000000","160.000000","6000.000000","0.000000","740522.000000",,,,, -"455.000000","30.135000","455.000000","30.135000","455.000000","30.135000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","120.500000","241.000000","7.000000","120.500000","120.500000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071380.000000","0.000000","2092704.000000","129468.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","87.000000","29.000000","19.000000","185.000000","68.000000","43.000000","0.000000","0.000000","0.000000","72.000000","27.000000","18.000000","154.000000","68.000000","40.000000","160.000000","6000.000000","0.000000","740542.000000",,,,, -"612.000000","27.370000","612.000000","27.370000","612.000000","27.370000","853.000000","0.000000",,,,,,,,,,,,"0.000000","134.500000","269.000000","2.000000","134.500000","134.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070860.000000","0.000000","2092704.000000","129468.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","83.000000","24.000000","19.000000","183.000000","43.000000","43.000000","0.000000","0.000000","0.000000","69.000000","22.000000","17.000000","154.000000","40.000000","40.000000","160.000000","6000.000000","0.000000","740562.000000",,,,, -"243.000000","25.640000","243.000000","25.640000","243.000000","25.640000","695.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","4.000000","61.500000","61.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070356.000000","0.000000","2092704.000000","129468.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","19.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","67.000000","17.000000","17.000000","154.000000","35.000000","40.000000","160.000000","6000.000000","0.000000","740582.000000",,,,, -"247.000000","25.655000","247.000000","25.655000","247.000000","25.655000","709.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","1.000000","22.000000","22.000000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2069884.000000","0.000000","2092704.000000","129468.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","15.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","65.000000","13.000000","17.000000","154.000000","30.000000","40.000000","160.000000","6000.000000","0.000000","740602.000000",,,,, -"261.000000","22.220000","261.000000","22.220000","261.000000","22.220000","641.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2069480.000000","0.000000","2092704.000000","129468.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","62.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740622.000000",,,,, -"236.000000","22.105000","236.000000","22.105000","236.000000","22.105000","449.000000","0.000000",,,,,,,,,,,,"0.000000","18.500000","37.000000","2.000000","18.500000","18.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068928.000000","0.000000","2092704.000000","129468.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","70.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","59.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740643.000000",,,,, -"222.000000","22.040000","222.000000","22.040000","222.000000","22.040000","765.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068240.000000","0.000000","2092704.000000","129468.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","57.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740662.000000",,,,, -"258.000000","20.210000","258.000000","20.210000","258.000000","20.210000","475.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","2.000000","55.500000","55.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067808.000000","0.000000","2092704.000000","129468.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","55.000000","9.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740682.000000",,,,, -"219.000000","20.025000","219.000000","20.025000","219.000000","20.025000","527.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","0.000000","11.000000","11.000000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067324.000000","0.000000","2092704.000000","129468.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","62.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","53.000000","8.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740702.000000",,,,, -"220.000000","20.030000","220.000000","20.030000","220.000000","20.030000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","1.000000","20.500000","20.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2066748.000000","0.000000","2092704.000000","129468.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","59.000000","8.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","52.000000","8.000000","16.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740722.000000",,,,, -"268.000000","16.755000","268.000000","16.755000","268.000000","16.755000","529.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","3.000000","65.000000","65.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066584.000000","0.000000","2092704.000000","129468.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","55.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","49.000000","8.000000","16.000000","149.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740742.000000",,,,, -"587.000000","18.255000","587.000000","18.255000","587.000000","18.255000","447.000000","0.000000",,,,,,,,,,,,"1.000000","233.000000","458.000000","2.000000","233.000000","233.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066568.000000","0.000000","2092704.000000","129468.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","52.000000","12.000000","17.000000","182.000000","23.000000","42.000000","0.000000","0.000000","0.000000","46.000000","11.000000","16.000000","149.000000","20.000000","37.000000","160.000000","6000.000000","0.000000","740762.000000",,,,, -"625.000000","18.435000","625.000000","18.435000","625.000000","18.435000","596.000000","0.000000",,,,,,,,,,,,"141.000000","188.500000","236.000000","1.000000","188.500000","188.500000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066452.000000","0.000000","2092704.000000","129468.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","49.000000","19.000000","16.000000","177.000000","48.000000","42.000000","0.000000","0.000000","0.000000","44.000000","18.000000","15.000000","146.000000","46.000000","37.000000","160.000000","6000.000000","0.000000","740782.000000",,,,, -"395.000000","15.850000","395.000000","15.850000","395.000000","15.850000","914.000000","0.000000",,,,,,,,,,,,"33.000000","104.500000","175.000000","4.000000","104.500000","104.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2065992.000000","0.000000","2092704.000000","129468.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","46.000000","21.000000","14.000000","175.000000","48.000000","36.000000","0.000000","0.000000","0.000000","41.000000","19.000000","13.000000","145.000000","46.000000","32.000000","160.000000","6000.000000","0.000000","740802.000000",,,,, -"515.000000","16.415000","515.000000","16.415000","515.000000","16.415000","481.000000","0.000000",,,,,,,,,,,,"13.000000","174.000000","333.000000","4.000000","174.000000","174.000000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066112.000000","0.000000","2092704.000000","129468.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","44.000000","22.000000","14.000000","175.000000","48.000000","34.000000","0.000000","0.000000","0.000000","39.000000","21.000000","13.000000","137.000000","46.000000","29.000000","160.000000","6000.000000","0.000000","740822.000000",,,,, -"455.000000","16.130000","455.000000","16.130000","455.000000","16.130000","626.000000","0.000000",,,,,,,,,,,,"0.000000","74.500000","149.000000","2.000000","74.500000","74.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066080.000000","0.000000","2092704.000000","129468.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","14.000000","173.000000","26.000000","26.000000","0.000000","0.000000","0.000000","37.000000","16.000000","13.000000","134.000000","23.000000","23.000000","160.000000","6000.000000","0.000000","740842.000000",,,,, -"226.000000","13.565000","226.000000","13.565000","226.000000","13.565000","568.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","2.000000","52.500000","52.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065568.000000","0.000000","2092704.000000","129468.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","16.000000","13.000000","140.000000","25.000000","23.000000","0.000000","0.000000","0.000000","33.000000","15.000000","12.000000","112.000000","23.000000","21.000000","160.000000","6000.000000","0.000000","740862.000000",,,,, -"244.000000","13.645000","244.000000","13.645000","244.000000","13.645000","630.000000","0.000000",,,,,,,,,,,,"42.000000","46.500000","50.000000","1.000000","46.500000","46.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065016.000000","0.000000","2092704.000000","129468.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","12.000000","13.000000","68.000000","23.000000","23.000000","0.000000","0.000000","0.000000","30.000000","11.000000","12.000000","68.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","740882.000000",,,,, -"277.000000","13.805000","277.000000","13.805000","277.000000","13.805000","660.000000","0.000000",,,,,,,,,,,,"635.000000","365.000000","93.000000","2.000000","365.000000","365.000000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2064928.000000","0.000000","2092704.000000","129468.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","29.000000","10.000000","13.000000","56.000000","16.000000","23.000000","0.000000","0.000000","0.000000","26.000000","10.000000","12.000000","54.000000","16.000000","21.000000","160.000000","6000.000000","0.000000","740902.000000",,,,, -"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","567.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064284.000000","0.000000","2092704.000000","129468.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","13.000000","54.000000","15.000000","23.000000","0.000000","0.000000","0.000000","23.000000","9.000000","12.000000","49.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740922.000000",,,,, -"224.000000","11.550000","224.000000","11.550000","224.000000","11.550000","426.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064100.000000","0.000000","2092704.000000","129468.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","13.000000","50.000000","15.000000","23.000000","0.000000","0.000000","0.000000","20.000000","9.000000","12.000000","45.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740942.000000",,,,, -"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","458.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2063432.000000","0.000000","2092704.000000","129468.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","43.000000","10.000000","23.000000","0.000000","0.000000","0.000000","18.000000","8.000000","12.000000","40.000000","9.000000","21.000000","160.000000","6000.000000","0.000000","740962.000000",,,,, -"233.000000","11.590000","233.000000","11.590000","233.000000","11.590000","444.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2062148.000000","0.000000","2092704.000000","129468.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","42.000000","10.000000","23.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","39.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","740982.000000",,,,, -"241.000000","11.625000","241.000000","11.625000","241.000000","11.625000","410.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2061624.000000","0.000000","2092704.000000","129468.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","13.000000","39.000000","10.000000","23.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","35.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741002.000000",,,,, -"228.000000","11.570000","228.000000","11.570000","228.000000","11.570000","500.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2060900.000000","0.000000","2092704.000000","129468.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","13.000000","36.000000","10.000000","23.000000","0.000000","0.000000","0.000000","15.000000","8.000000","12.000000","31.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741022.000000",,,,, -"438.000000","11.555000","438.000000","11.555000","438.000000","11.555000","509.000000","0.000000",,,,,,,,,,,,"7.000000","179.000000","346.000000","9.000000","179.000000","179.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060984.000000","0.000000","2092704.000000","129468.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","11.000000","13.000000","36.000000","24.000000","24.000000","0.000000","0.000000","0.000000","15.000000","11.000000","12.000000","31.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","741042.000000",,,,, -"649.000000","12.545000","649.000000","12.545000","649.000000","12.545000","578.000000","0.000000",,,,,,,,,,,,"5.000000","168.500000","329.000000","59.000000","168.500000","168.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061052.000000","0.000000","2092704.000000","129468.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","16.000000","14.000000","38.000000","39.000000","26.000000","0.000000","0.000000","0.000000","15.000000","16.000000","13.000000","32.000000","38.000000","23.000000","160.000000","6000.000000","0.000000","741062.000000",,,,, -"896.000000","13.705000","896.000000","13.705000","896.000000","13.705000","471.000000","0.000000",,,,,,,,,,,,"0.000000","407.500000","792.000000","17.000000","407.500000","407.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061072.000000","0.000000","2092704.000000","129468.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"13.000000","9.000000",,,,,,,,,,,"0.000000","16.000000","27.000000","14.000000","39.000000","66.000000","26.000000","0.000000","0.000000","0.000000","15.000000","24.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741082.000000",,,,, -"282.000000","9.820000","282.000000","9.820000","282.000000","9.820000","555.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","95.000000","7.000000","54.000000","54.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060564.000000","0.000000","2092704.000000","129468.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","0.000000","0.000000",,,,,,"9.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","25.000000","14.000000","39.000000","66.000000","25.000000","0.000000","0.000000","0.000000","15.000000","22.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741102.000000",,,,, -"262.000000","9.725000","262.000000","9.725000","262.000000","9.725000","957.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","8.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060444.000000","0.000000","2092704.000000","129468.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","0.000000","0.000000",,,,,,"10.000000","4.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","13.000000","38.000000","66.000000","24.000000","0.000000","0.000000","0.000000","14.000000","18.000000","12.000000","32.000000","50.000000","20.000000","160.000000","6000.000000","0.000000","741122.000000",,,,, -"916.000000","12.800000","916.000000","12.800000","916.000000","12.800000","756.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4782.000000","33.000000","2918.000000","2918.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","0.000000","0.000000",,,,,,"1035.000000","13.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","15.000000","39.000000","57.000000","39.000000","0.000000","0.000000","0.000000","15.000000","18.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741142.000000",,,,, -"493.000000","13.815000","493.000000","13.815000","493.000000","13.815000","991.000000","0.000000",,,,,,,,,,,,"6.000000","173.000000","338.000000","2.000000","173.000000","173.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062296.000000","0.000000","2092704.000000","129468.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","20.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741162.000000",,,,, -"270.000000","12.765000","270.000000","12.765000","270.000000","12.765000","730.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","1.000000","39.500000","39.500000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062556.000000","0.000000","2092704.000000","129468.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","21.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741182.000000",,,,, -"283.000000","12.825000","283.000000","12.825000","283.000000","12.825000","640.000000","0.000000",,,,,,,,,,,,"994.000000","532.000000","65.000000","3.000000","532.000000","532.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062660.000000","0.000000","2092704.000000","129468.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","15.000000","13.000000","15.000000","38.000000","36.000000","39.000000","0.000000","0.000000","0.000000","14.000000","13.000000","14.000000","35.000000","35.000000","38.000000","160.000000","6000.000000","0.000000","741202.000000",,,,, -"654.000000","13.070000","654.000000","13.070000","654.000000","13.070000","591.000000","0.000000",,,,,,,,,,,,"1550.000000","845.500000","140.000000","1.000000","845.500000","845.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2062344.000000","0.000000","2092704.000000","129468.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","15.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741222.000000",,,,, -"228.000000","11.065000","228.000000","11.065000","228.000000","11.065000","473.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061836.000000","0.000000","2092704.000000","129468.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","14.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741242.000000",,,,, -"221.000000","11.035000","221.000000","11.035000","221.000000","11.035000","462.000000","0.000000",,,,,,,,,,,,"0.000000","49.000000","98.000000","5.000000","49.000000","49.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061248.000000","0.000000","2092704.000000","129468.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","13.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741262.000000",,,,, -"266.000000","11.745000","266.000000","11.745000","266.000000","11.745000","499.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","1.000000","61.500000","61.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061208.000000","0.000000","2092704.000000","129468.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741282.000000",,,,, -"219.000000","11.525000","219.000000","11.525000","219.000000","11.525000","454.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","21.000000","37.500000","37.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2060644.000000","0.000000","2092704.000000","129468.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741302.000000",,,,, -"217.000000","11.515000","217.000000","11.515000","217.000000","11.515000","434.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061188.000000","0.000000","2092704.000000","129468.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741322.000000",,,,, -"275.000000","12.790000","275.000000","12.790000","275.000000","12.790000","505.000000","0.000000",,,,,,,,,,,,"0.000000","73.000000","146.000000","1.000000","73.000000","73.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061252.000000","0.000000","2092704.000000","129468.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741342.000000",,,,, -"640.000000","14.505000","640.000000","14.505000","640.000000","14.505000","586.000000","0.000000",,,,,,,,,,,,"18.000000","322.500000","614.000000","1.000000","322.500000","322.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061020.000000","0.000000","2092704.000000","129468.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"6.000000","7.000000",,,,,,,,,,,"0.000000","15.000000","14.000000","16.000000","38.000000","45.000000","43.000000","0.000000","0.000000","0.000000","14.000000","13.000000","15.000000","35.000000","36.000000","37.000000","160.000000","6000.000000","0.000000","741362.000000",,,,, -"595.000000","14.290000","595.000000","14.290000","595.000000","14.290000","522.000000","0.000000",,,,,,,,,,,,"4.000000","194.500000","382.000000","2.000000","194.500000","194.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061120.000000","0.000000","2092704.000000","129468.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","15.000000","36.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","35.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741382.000000",,,,, -"267.000000","12.750000","267.000000","12.750000","267.000000","12.750000","483.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","3.000000","40.500000","40.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2060612.000000","0.000000","2092704.000000","129468.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","20.000000","15.000000","34.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","30.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741402.000000",,,,, -"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","614.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2060332.000000","0.000000","2092704.000000","129468.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","15.000000","15.000000","31.000000","54.000000","37.000000","0.000000","0.000000","0.000000","13.000000","14.000000","14.000000","29.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741422.000000",,,,, -"234.000000","13.095000","234.000000","13.095000","234.000000","13.095000","378.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","15.000000","33.000000","33.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059608.000000","0.000000","2092704.000000","129468.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","13.000000","27.000000","13.000000","31.000000","0.000000","0.000000","0.000000","13.000000","9.000000","12.000000","26.000000","12.000000","29.000000","160.000000","6000.000000","0.000000","741442.000000",,,,, -"472.000000","14.210000","472.000000","14.210000","472.000000","14.210000","501.000000","0.000000",,,,,,,,,,,,"423.000000","296.000000","167.000000","1.000000","296.000000","296.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059276.000000","0.000000","2092704.000000","129468.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741462.000000",,,,, -"218.000000","10.520000","218.000000","10.520000","218.000000","10.520000","899.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","4.000000","31.000000","31.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2059400.000000","0.000000","2092704.000000","129468.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741482.000000",,,,, -"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","761.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058808.000000","0.000000","2092704.000000","129468.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","12.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741502.000000",,,,, -"270.000000","10.760000","270.000000","10.760000","270.000000","10.760000","640.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","5.000000","61.000000","61.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058228.000000","0.000000","2092704.000000","129468.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741522.000000",,,,, -"210.000000","9.485000","210.000000","9.485000","210.000000","9.485000","523.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056560.000000","0.000000","2092704.000000","129468.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741542.000000",,,,, -"227.000000","9.560000","227.000000","9.560000","227.000000","9.560000","498.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","2.000000","33.500000","33.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056100.000000","0.000000","2092704.000000","129468.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741562.000000",,,,, -"594.000000","11.285000","594.000000","11.285000","594.000000","11.285000","606.000000","0.000000",,,,,,,,,,,,"2.000000","159.500000","317.000000","2.000000","159.500000","159.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057572.000000","0.000000","2092704.000000","129468.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","13.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","12.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741582.000000",,,,, -"318.000000","9.990000","318.000000","9.990000","318.000000","9.990000","554.000000","0.000000",,,,,,,,,,,,"0.000000","77.000000","154.000000","1.000000","77.000000","77.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057164.000000","0.000000","2092704.000000","129468.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741602.000000",,,,, -"239.000000","9.615000","239.000000","9.615000","239.000000","9.615000","495.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","7.000000","40.500000","40.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056424.000000","0.000000","2092704.000000","129468.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741622.000000",,,,, -"276.000000","9.790000","276.000000","9.790000","276.000000","9.790000","484.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","0.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056620.000000","0.000000","2092704.000000","129468.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","10.000000","12.000000","27.000000","18.000000","18.000000","0.000000","0.000000","0.000000","13.000000","10.000000","12.000000","26.000000","18.000000","18.000000","160.000000","6000.000000","0.000000","741642.000000",,,,, -"227.000000","8.560000","227.000000","8.560000","227.000000","8.560000","622.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","2.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056112.000000","0.000000","2092704.000000","129468.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","27.000000","13.000000","18.000000","0.000000","0.000000","0.000000","13.000000","9.000000","11.000000","26.000000","13.000000","18.000000","160.000000","6000.000000","0.000000","741662.000000",,,,, -"233.000000","8.590000","233.000000","8.590000","233.000000","8.590000","458.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","14.000000","27.500000","27.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2055144.000000","0.000000","2092704.000000","129468.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741682.000000",,,,, -"268.000000","8.750000","268.000000","8.750000","268.000000","8.750000","518.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","31.000000","61.000000","61.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2053592.000000","0.000000","2092704.000000","129468.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741702.000000",,,,, -"222.000000","8.540000","222.000000","8.540000","222.000000","8.540000","758.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","2.000000","27.500000","27.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2053108.000000","0.000000","2092704.000000","129468.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","23.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741722.000000",,,,, -"213.000000","8.495000","213.000000","8.495000","213.000000","8.495000","1046.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","3.000000","15.000000","15.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2052256.000000","0.000000","2092704.000000","129468.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741742.000000",,,,, -"271.000000","8.770000","271.000000","8.770000","271.000000","8.770000","1246.000000","0.000000",,,,,,,,,,,,"9.000000","73.500000","137.000000","22.000000","73.500000","73.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2051816.000000","0.000000","2092704.000000","129468.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741762.000000",,,,, -"414.000000","8.440000","414.000000","8.440000","414.000000","8.440000","1385.000000","0.000000",,,,,,,,,,,,"0.000000","83.000000","165.000000","3.000000","83.000000","83.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050752.000000","0.000000","2092704.000000","129468.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741782.000000",,,,, -"481.000000","8.755000","481.000000","8.755000","481.000000","8.755000","1153.000000","0.000000",,,,,,,,,,,,"5.000000","178.500000","352.000000","2.000000","178.500000","178.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051660.000000","0.000000","2092704.000000","129468.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741802.000000",,,,, -"261.000000","7.720000","261.000000","7.720000","261.000000","7.720000","748.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","51.000000","39.500000","39.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051240.000000","0.000000","2092704.000000","129468.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741822.000000",,,,, -"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","602.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2050668.000000","0.000000","2092704.000000","129468.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741842.000000",,,,, -"244.000000","7.640000","244.000000","7.640000","244.000000","7.640000","513.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","70.000000","4.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048652.000000","0.000000","2092704.000000","129468.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","24.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741862.000000",,,,, -"288.000000","7.850000","288.000000","7.850000","288.000000","7.850000","497.000000","0.000000",,,,,,,,,,,,"1.000000","70.000000","138.000000","6.000000","70.000000","70.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048272.000000","0.000000","2092704.000000","129468.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741882.000000",,,,, -"214.000000","7.000000","214.000000","7.000000","214.000000","7.000000","683.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","1.000000","21.500000","21.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2047596.000000","0.000000","2092704.000000","129468.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741902.000000",,,,, -"225.000000","7.050000","225.000000","7.050000","225.000000","7.050000","484.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","1.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2045296.000000","0.000000","2092704.000000","129468.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741922.000000",,,,, -"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","814.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2044360.000000","0.000000","2092704.000000","129468.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741942.000000",,,,, -"223.000000","6.040000","223.000000","6.040000","223.000000","6.040000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","1.000000","12.000000","12.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2043788.000000","0.000000","2092704.000000","129468.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","17.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741962.000000",,,,, -"225.000000","6.050000","225.000000","6.050000","225.000000","6.050000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","1.000000","33.000000","33.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044092.000000","0.000000","2092704.000000","129468.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741982.000000",,,,, -"683.000000","8.205000","683.000000","8.205000","683.000000","8.205000","2058.000000","0.000000",,,,,,,,,,,,"6.000000","191.000000","375.000000","1.000000","191.000000","191.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044916.000000","0.000000","2092704.000000","129468.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","17.000000","47.000000","14.000000","160.000000","6000.000000","0.000000","742002.000000",,,,, -"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","1697.000000","0.000000",,,,,,,,,,,,"0.000000","139.500000","278.000000","2.000000","139.500000","139.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044504.000000","0.000000","2092704.000000","129468.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","12.000000","18.000000","48.000000","18.000000","0.000000","0.000000","0.000000","12.000000","17.000000","11.000000","18.000000","47.000000","17.000000","160.000000","6000.000000","0.000000","742022.000000",,,,, -"585.000000","7.745000","585.000000","7.745000","585.000000","7.745000","938.000000","0.000000",,,,,,,,,,,,"0.000000","142.000000","284.000000","3.000000","142.000000","142.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2042156.000000","0.000000","2092704.000000","129468.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","13.000000","18.000000","51.000000","24.000000","0.000000","0.000000","0.000000","11.000000","21.000000","12.000000","17.000000","47.000000","19.000000","160.000000","6000.000000","0.000000","742042.000000",,,,, -"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","967.000000","0.000000",,,,,,,,,,,,"0.000000","121.500000","242.000000","2.000000","121.500000","121.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2040940.000000","0.000000","2092704.000000","129468.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","13.000000","18.000000","51.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","13.000000","17.000000","43.000000","32.000000","160.000000","6000.000000","0.000000","742062.000000",,,,, -"609.000000","7.355000","609.000000","7.355000","609.000000","7.355000","1601.000000","0.000000",,,,,,,,,,,,"3.000000","158.500000","314.000000","2.000000","158.500000","158.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040444.000000","0.000000","2092704.000000","129468.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","21.000000","14.000000","18.000000","51.000000","34.000000","0.000000","0.000000","0.000000","12.000000","20.000000","13.000000","18.000000","44.000000","33.000000","160.000000","6000.000000","0.000000","742082.000000",,,,, -"290.000000","5.860000","290.000000","5.860000","290.000000","5.860000","1237.000000","0.000000",,,,,,,,,,,,"1.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040508.000000","0.000000","2092704.000000","129468.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","18.000000","45.000000","32.000000","0.000000","0.000000","0.000000","12.000000","17.000000","13.000000","18.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742102.000000",,,,, -"268.000000","5.755000","268.000000","5.755000","268.000000","5.755000","873.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2039968.000000","0.000000","2092704.000000","129468.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","13.000000","16.000000","45.000000","32.000000","0.000000","0.000000","0.000000","11.000000","14.000000","13.000000","16.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742122.000000",,,,, -"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","1069.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2037416.000000","0.000000","2092704.000000","129468.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","13.000000","16.000000","16.000000","32.000000","0.000000","0.000000","0.000000","11.000000","10.000000","13.000000","16.000000","16.000000","32.000000","160.000000","6000.000000","0.000000","742142.000000",,,,, -"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","944.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038888.000000","0.000000","2092704.000000","129468.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","14.000000","32.000000","160.000000","6000.000000","0.000000","742162.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","883.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","3.000000","55.000000","55.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038200.000000","0.000000","2092704.000000","129468.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742182.000000",,,,, -"212.000000","6.990000","212.000000","6.990000","212.000000","6.990000","644.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2037592.000000","0.000000","2092704.000000","129468.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742202.000000",,,,, -"228.000000","7.065000","228.000000","7.065000","228.000000","7.065000","584.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","1.000000","39.000000","39.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036008.000000","0.000000","2092704.000000","129468.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742222.000000",,,,, -"263.000000","7.230000","263.000000","7.230000","263.000000","7.230000","1013.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","1.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036300.000000","0.000000","2092704.000000","129468.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742242.000000",,,,, -"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035644.000000","0.000000","2092704.000000","129468.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","15.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742262.000000",,,,, -"224.000000","7.050000","224.000000","7.050000","224.000000","7.050000","1058.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","0.000000","46.000000","46.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035856.000000","0.000000","2092704.000000","129468.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","14.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742282.000000",,,,, -"249.000000","7.165000","249.000000","7.165000","249.000000","7.165000","1616.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","1.000000","64.500000","64.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035188.000000","0.000000","2092704.000000","129468.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","14.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","742302.000000",,,,, -"248.000000","7.160000","248.000000","7.160000","248.000000","7.160000","785.000000","0.000000",,,,,,,,,,,,"1.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035064.000000","0.000000","2092704.000000","129468.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742322.000000",,,,, -"220.000000","7.025000","220.000000","7.025000","220.000000","7.025000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","3.000000","28.500000","28.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034460.000000","0.000000","2092704.000000","129468.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742342.000000",,,,, -"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","2190.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","1.000000","53.000000","53.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034168.000000","0.000000","2092704.000000","129468.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","742362.000000",,,,, -"207.000000","8.465000","207.000000","8.465000","207.000000","8.465000","2339.000000","0.000000",,,,,,,,,,,,"0.000000","30.500000","61.000000","3.000000","30.500000","30.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2033568.000000","0.000000","2092704.000000","129468.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742382.000000",,,,, -"200.000000","8.435000","200.000000","8.435000","200.000000","8.435000","2176.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2035532.000000","0.000000","2092704.000000","129468.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742402.000000",,,,, -"268.000000","8.755000","268.000000","8.755000","268.000000","8.755000","1217.000000","0.000000",,,,,,,,,,,,"0.000000","46.500000","93.000000","6.000000","46.500000","46.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2032736.000000","0.000000","2092704.000000","129468.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742422.000000",,,,, -"234.000000","7.095000","234.000000","7.095000","234.000000","7.095000","699.000000","0.000000",,,,,,,,,,,,"0.000000","36.000000","72.000000","1.000000","36.000000","36.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2032156.000000","0.000000","2092704.000000","129468.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742442.000000",,,,, -"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","916.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","1.000000","13.500000","13.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2033892.000000","0.000000","2092704.000000","129468.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742462.000000",,,,, -"270.000000","7.265000","270.000000","7.265000","270.000000","7.265000","582.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2031628.000000","0.000000","2092704.000000","129468.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742482.000000",,,,, -"278.000000","6.300000","278.000000","6.300000","278.000000","6.300000","668.000000","0.000000",,,,,,,,,,,,"0.000000","100.500000","201.000000","1.000000","100.500000","100.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2031172.000000","0.000000","2092704.000000","129468.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742502.000000",,,,, -"682.000000","9.700000","682.000000","9.700000","682.000000","9.700000","936.000000","0.000000",,,,,,,,,,,,"7.000000","204.500000","401.000000","1.000000","204.500000","204.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2032424.000000","0.000000","2092704.000000","129468.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","14.000000","57.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742522.000000",,,,, -"275.000000","8.290000","275.000000","8.290000","275.000000","8.290000","746.000000","0.000000",,,,,,,,,,,,"0.000000","81.500000","163.000000","2.000000","81.500000","81.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2031088.000000","0.000000","2092704.000000","129468.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742542.000000",,,,, -"208.000000","7.970000","208.000000","7.970000","208.000000","7.970000","751.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","5.000000","17.500000","17.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030528.000000","0.000000","2092704.000000","129468.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742562.000000",,,,, -"228.000000","8.065000","228.000000","8.065000","228.000000","8.065000","733.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028792.000000","0.000000","2092704.000000","129468.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","18.000000","14.000000","160.000000","6000.000000","0.000000","742582.000000",,,,, -"258.000000","8.205000","258.000000","8.205000","258.000000","8.205000","1172.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030492.000000","0.000000","2092704.000000","129468.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742602.000000",,,,, -"215.000000","7.505000","215.000000","7.505000","215.000000","7.505000","1008.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","1.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030260.000000","0.000000","2092704.000000","129468.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742622.000000",,,,, -"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","826.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","7.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030992.000000","0.000000","2092704.000000","129468.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742642.000000",,,,, -"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","900.000000","0.000000",,,,,,,,,,,,"0.000000","56.000000","112.000000","1.000000","56.000000","56.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742662.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","3.000000","20.500000","20.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2027308.000000","0.000000","2092704.000000","129468.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742682.000000",,,,, -"228.000000","7.070000","228.000000","7.070000","228.000000","7.070000","528.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","1.000000","29.000000","29.000000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2028028.000000","0.000000","2092704.000000","129468.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742702.000000",,,,, -"344.000000","7.610000","344.000000","7.610000","344.000000","7.610000","863.000000","0.000000",,,,,,,,,,,,"0.000000","147.500000","295.000000","1.000000","147.500000","147.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2029432.000000","0.000000","2092704.000000","129468.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","18.000000","15.000000","160.000000","6000.000000","0.000000","742722.000000",,,,, -"866.000000","16.065000","866.000000","16.065000","866.000000","16.065000","1393.000000","0.000000",,,,,,,,,,,,"13526.000000","13915.500000","14303.000000","18.000000","13915.500000","13915.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047976.000000","0.000000","2092704.000000","129468.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","11.000000","18.000000","12.000000","16.000000","53.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","52.000000","18.000000","160.000000","6000.000000","0.000000","742742.000000",,,,, -"827.000000","15.880000","827.000000","15.880000","827.000000","15.880000","1622.000000","0.000000",,,,,,,,,,,,"1407.000000","1192.000000","722.000000","8.000000","1192.000000","1192.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047880.000000","0.000000","2092704.000000","129468.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"7.000000","246.000000",,,,,,,,,,,"0.000000","12.000000","28.000000","14.000000","18.000000","53.000000","31.000000","0.000000","0.000000","0.000000","11.000000","24.000000","13.000000","18.000000","52.000000","29.000000","160.000000","6000.000000","0.000000","742762.000000",,,,, -"704.000000","15.300000","704.000000","15.300000","704.000000","15.300000","1779.000000","0.000000",,,,,,,,,,,,"817.000000","2030.500000","573.000000","3.000000","2030.500000","2030.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2050152.000000","0.000000","2092704.000000","129468.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","0.000000","0.000000",,,,,,"2632.000000","38.000000",,,,,,,,,,,"0.000000","13.000000","35.000000","16.000000","24.000000","55.000000","44.000000","0.000000","0.000000","0.000000","12.000000","30.000000","14.000000","20.000000","52.000000","35.000000","160.000000","6000.000000","0.000000","742782.000000",,,,, -"1369.000000","30.430000","1369.000000","30.430000","1369.000000","30.430000","2678.000000","0.000000",,,,,,,,,,,,"0.000000","21091.500000","21618.000000","65.000000","21091.500000","21091.500000",,,,,,,,,,,"713028.000000","1006632.000000","0.000000","0.000000","2057144.000000","0.000000","2092704.000000","129468.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"20487.000000","78.000000",,,,,,,,,,,"0.000000","14.000000","44.000000","19.000000","30.000000","72.000000","53.000000","0.000000","0.000000","0.000000","13.000000","35.000000","17.000000","24.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742802.000000",,,,, -"1160.000000","29.445000","1160.000000","29.445000","1160.000000","29.445000","4176.000000","0.000000",,,,,,,,,,,,"0.000000","19993.000000","30537.000000","43.000000","19993.000000","19993.000000",,,,,,,,,,,"817888.000000","1006632.000000","0.000000","0.000000","2071676.000000","0.000000","2092704.000000","129468.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","0.000000","0.000000",,,,,,"9414.000000","34.000000",,,,,,,,,,,"0.000000","15.000000","49.000000","21.000000","34.000000","72.000000","55.000000","0.000000","0.000000","0.000000","13.000000","39.000000","18.000000","33.000000","54.000000","48.000000","160.000000","6000.000000","0.000000","742822.000000",,,,, -"1118.000000","32.245000","1118.000000","32.245000","1118.000000","32.245000","2371.000000","0.000000",,,,,,,,,,,,"17.000000","19813.500000","26206.000000","39.000000","19813.500000","19813.500000",,,,,,,,,,,"1090516.000000","1132460.000000","0.000000","0.000000","2071432.000000","0.000000","2092704.000000","129468.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"13348.000000","54.000000",,,,,,,,,,,"0.000000","16.000000","58.000000","24.000000","45.000000","72.000000","59.000000","0.000000","0.000000","0.000000","14.000000","45.000000","20.000000","38.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742842.000000",,,,, -"1385.000000","43.500000","1385.000000","43.500000","1385.000000","43.500000","2499.000000","0.000000",,,,,,,,,,,,"5046.000000","14525.000000","20558.000000","16.000000","14525.000000","14525.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","0.000000","0.000000",,,,,,"3430.000000","16.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","27.000000","47.000000","90.000000","68.000000","0.000000","0.000000","0.000000","15.000000","45.000000","23.000000","40.000000","76.000000","49.000000","160.000000","6000.000000","0.000000","742862.000000",,,,, -"2107.000000","46.895000","2107.000000","46.895000","2107.000000","46.895000","1998.000000","0.000000",,,,,,,,,,,,"627.000000","1466.500000","2305.000000","13.000000","1466.500000","1466.500000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","63.000000","31.000000","51.000000","105.000000","71.000000","0.000000","0.000000","0.000000","16.000000","52.000000","26.000000","43.000000","91.000000","54.000000","160.000000","6000.000000","0.000000","742882.000000",,,,, -"1880.000000","45.830000","1880.000000","45.830000","1880.000000","45.830000","3078.000000","0.000000",,,,,,,,,,,,"118.000000","172.000000","226.000000","4.000000","172.000000","172.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072508.000000","0.000000","2092704.000000","129468.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","78.000000","38.000000","55.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","67.000000","32.000000","48.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742902.000000",,,,, -"1607.000000","50.045000","1607.000000","50.045000","1607.000000","50.045000","2461.000000","0.000000",,,,,,,,,,,,"123.000000","492.500000","857.000000","3.000000","492.500000","492.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072304.000000","0.000000","2092704.000000","129468.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","21.000000","81.000000","41.000000","62.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","69.000000","35.000000","50.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742922.000000",,,,, -"1827.000000","51.080000","1827.000000","51.080000","1827.000000","51.080000","2217.000000","0.000000",,,,,,,,,,,,"0.000000","110.500000","221.000000","4.000000","110.500000","110.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072076.000000","0.000000","2092704.000000","129468.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","87.000000","47.000000","68.000000","107.000000","96.000000","0.000000","0.000000","0.000000","19.000000","70.000000","39.000000","54.000000","99.000000","76.000000","160.000000","6000.000000","0.000000","742942.000000",,,,, -"2392.000000","53.735000","2392.000000","53.735000","2392.000000","53.735000","2052.000000","0.000000",,,,,,,,,,,,"100.000000","422.000000","739.000000","5.000000","422.000000","422.000000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2071840.000000","0.000000","2092704.000000","129468.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","85.000000","52.000000","72.000000","106.000000","96.000000","0.000000","0.000000","0.000000","21.000000","68.000000","43.000000","59.000000","80.000000","78.000000","160.000000","6000.000000","0.000000","742962.000000",,,,, -"3168.000000","58.380000","3168.000000","58.380000","3168.000000","58.380000","2186.000000","0.000000",,,,,,,,,,,,"86.000000","753.500000","1417.000000","4.000000","753.500000","753.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","120.000000","64.000000","82.000000","166.000000","107.000000","0.000000","0.000000","0.000000","23.000000","91.000000","51.000000","64.000000","125.000000","99.000000","160.000000","6000.000000","0.000000","742982.000000",,,,, -"3690.000000","60.835000","3690.000000","60.835000","3690.000000","60.835000","2161.000000","0.000000",,,,,,,,,,,,"0.000000","506.000000","1011.000000","18.000000","506.000000","506.000000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071160.000000","0.000000","2092704.000000","129468.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","31.000000","142.000000","74.000000","90.000000","181.000000","163.000000","0.000000","0.000000","0.000000","26.000000","109.000000","59.000000","76.000000","167.000000","115.000000","160.000000","6000.000000","0.000000","743002.000000",,,,, -"3225.000000","58.650000","3225.000000","58.650000","3225.000000","58.650000","2356.000000","0.000000",,,,,,,,,,,,"3.000000","412.500000","821.000000","16.000000","412.500000","412.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","169.000000","86.000000","105.000000","184.000000","169.000000","0.000000","0.000000","0.000000","29.000000","126.000000","68.000000","79.000000","167.000000","120.000000","160.000000","6000.000000","0.000000","743022.000000",,,,, -"3561.000000","54.730000","3561.000000","54.730000","3561.000000","54.730000","2718.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","965.000000","28.000000","483.000000","483.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070704.000000","0.000000","2092704.000000","129468.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","38.000000","171.000000","94.000000","107.000000","194.000000","173.000000","0.000000","0.000000","0.000000","31.000000","131.000000","74.000000","99.000000","167.000000","125.000000","160.000000","6000.000000","0.000000","743042.000000",,,,, -"4761.000000","60.365000","4761.000000","60.365000","4761.000000","60.365000","2452.000000","0.000000",,,,,,,,,,,,"214.000000","1401.000000","2587.000000","21.000000","1401.000000","1401.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070636.000000","0.000000","2092704.000000","129468.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","176.000000","103.000000","153.000000","207.000000","181.000000","0.000000","0.000000","0.000000","35.000000","145.000000","83.000000","113.000000","204.000000","152.000000","160.000000","6000.000000","0.000000","743062.000000",,,,, -"4219.000000","57.820000","4219.000000","57.820000","4219.000000","57.820000","2166.000000","0.000000",,,,,,,,,,,,"2.000000","467.500000","932.000000","17.000000","467.500000","467.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","45.000000","180.000000","113.000000","163.000000","207.000000","184.000000","0.000000","0.000000","0.000000","38.000000","153.000000","91.000000","117.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","743082.000000",,,,, -"4549.000000","59.370000","4549.000000","59.370000","4549.000000","59.370000","1426.000000","0.000000",,,,,,,,,,,,"18.000000","1601.000000","3183.000000","58.000000","1601.000000","1601.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","187.000000","123.000000","168.000000","213.000000","194.000000","0.000000","0.000000","0.000000","42.000000","169.000000","101.000000","125.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743102.000000",,,,, -"3758.000000","55.655000","3758.000000","55.655000","3758.000000","55.655000","1738.000000","0.000000",,,,,,,,,,,,"0.000000","496.500000","992.000000","33.000000","496.500000","496.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071968.000000","0.000000","2092704.000000","129468.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","182.000000","130.000000","173.000000","213.000000","194.000000","0.000000","0.000000","0.000000","45.000000","158.000000","107.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743122.000000",,,,, -"3842.000000","56.050000","3842.000000","56.050000","3842.000000","56.050000","1464.000000","0.000000",,,,,,,,,,,,"1.000000","895.500000","1788.000000","53.000000","895.500000","895.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","178.000000","137.000000","174.000000","213.000000","194.000000","0.000000","0.000000","0.000000","47.000000","151.000000","112.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743142.000000",,,,, -"3334.000000","46.665000","3334.000000","46.665000","3334.000000","46.665000","1707.000000","0.000000",,,,,,,,,,,,"122.000000","526.000000","929.000000","17.000000","526.000000","526.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071960.000000","0.000000","2092704.000000","129468.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","174.000000","147.000000","179.000000","194.000000","194.000000","0.000000","0.000000","0.000000","51.000000","137.000000","119.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743162.000000",,,,, -"3524.000000","47.555000","3524.000000","47.555000","3524.000000","47.555000","2030.000000","0.000000",,,,,,,,,,,,"0.000000","422.500000","845.000000","24.000000","422.500000","422.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","169.000000","151.000000","180.000000","194.000000","194.000000","0.000000","0.000000","0.000000","53.000000","132.000000","123.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743182.000000",,,,, -"4222.000000","50.835000","4222.000000","50.835000","4222.000000","50.835000","2990.000000","0.000000",,,,,,,,,,,,"0.000000","517.000000","1032.000000","20.000000","517.000000","517.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2072036.000000","0.000000","2092704.000000","129468.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","176.000000","157.000000","180.000000","208.000000","200.000000","0.000000","0.000000","0.000000","56.000000","141.000000","128.000000","150.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743202.000000",,,,, -"3176.000000","45.920000","3176.000000","45.920000","3176.000000","45.920000","2618.000000","0.000000",,,,,,,,,,,,"0.000000","379.500000","759.000000","12.000000","379.500000","379.500000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071952.000000","0.000000","2092704.000000","129468.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","72.000000","175.000000","165.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","59.000000","137.000000","133.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743222.000000",,,,, -"2639.000000","43.395000","2639.000000","43.395000","2639.000000","43.395000","3957.000000","0.000000",,,,,,,,,,,,"0.000000","384.000000","768.000000","26.000000","384.000000","384.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071768.000000","0.000000","2092704.000000","129468.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","75.000000","171.000000","168.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","61.000000","129.000000","135.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743242.000000",,,,, -"3197.000000","46.020000","3197.000000","46.020000","3197.000000","46.020000","4861.000000","0.000000",,,,,,,,,,,,"0.000000","444.000000","888.000000","17.000000","444.000000","444.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","78.000000","165.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","63.000000","113.000000","137.000000","150.000000","140.000000","170.000000","160.000000","6000.000000","0.000000","743262.000000",,,,, -"2422.000000","42.380000","2422.000000","42.380000","2422.000000","42.380000","8036.000000","0.000000",,,,,,,,,,,,"0.000000","320.000000","640.000000","15.000000","320.000000","320.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","82.000000","157.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","65.000000","103.000000","135.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743282.000000",,,,, -"2919.000000","44.210000","2919.000000","44.210000","2919.000000","44.210000","11295.000000","0.000000",,,,,,,,,,,,"0.000000","311.000000","622.000000","17.000000","311.000000","311.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071516.000000","0.000000","2092704.000000","129468.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","68.000000","106.000000","134.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743302.000000",,,,, -"2960.000000","44.405000","2960.000000","44.405000","2960.000000","44.405000","10479.000000","0.000000",,,,,,,,,,,,"1.000000","260.000000","519.000000","22.000000","260.000000","260.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","69.000000","107.000000","133.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743322.000000",,,,, -"2669.000000","43.040000","2669.000000","43.040000","2669.000000","43.040000","5276.000000","0.000000",,,,,,,,,,,,"0.000000","202.000000","403.000000","5.000000","202.000000","202.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","169.000000","172.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","72.000000","105.000000","130.000000","150.000000","137.000000","170.000000","160.000000","6000.000000","0.000000","743342.000000",,,,, -"2449.000000","40.005000","2449.000000","40.005000","2449.000000","40.005000","11881.000000","0.000000",,,,,,,,,,,,"1.000000","623.000000","1245.000000","39.000000","623.000000","623.000000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","171.000000","172.000000","184.000000","199.000000","194.000000","0.000000","0.000000","0.000000","74.000000","100.000000","125.000000","150.000000","121.000000","167.000000","160.000000","6000.000000","0.000000","743362.000000",,,,, -"3373.000000","44.350000","3373.000000","44.350000","3373.000000","44.350000","8398.000000","0.000000",,,,,,,,,,,,"0.000000","392.500000","785.000000","25.000000","392.500000","392.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071464.000000","0.000000","2092704.000000","129468.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","100.000000","174.000000","172.000000","186.000000","199.000000","194.000000","0.000000","0.000000","0.000000","76.000000","105.000000","123.000000","151.000000","156.000000","167.000000","160.000000","6000.000000","0.000000","743382.000000",,,,, -"3609.000000","45.455000","3609.000000","45.455000","3609.000000","45.455000","8569.000000","0.000000",,,,,,,,,,,,"0.000000","176.500000","352.000000","12.000000","176.500000","176.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071688.000000","0.000000","2092704.000000","129468.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","184.000000","172.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","79.000000","119.000000","120.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743402.000000",,,,, -"2393.000000","40.240000","2393.000000","40.240000","2393.000000","40.240000","12932.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","916.000000","50.000000","458.000000","458.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","173.000000","170.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","81.000000","118.000000","117.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743422.000000",,,,, -"3004.000000","43.115000","3004.000000","43.115000","3004.000000","43.115000","11131.000000","0.000000",,,,,,,,,,,,"0.000000","283.000000","565.000000","8.000000","283.000000","283.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071780.000000","0.000000","2092704.000000","129468.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","110.000000","165.000000","170.000000","186.000000","201.000000","190.000000","0.000000","0.000000","0.000000","83.000000","115.000000","116.000000","152.000000","152.000000","152.000000","160.000000","6000.000000","0.000000","743442.000000",,,,, -"3259.000000","44.310000","3259.000000","44.310000","3259.000000","44.310000","8248.000000","0.000000",,,,,,,,,,,,"0.000000","398.000000","796.000000","23.000000","398.000000","398.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071748.000000","0.000000","2092704.000000","129468.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","166.000000","170.000000","189.000000","200.000000","192.000000","0.000000","0.000000","0.000000","86.000000","109.000000","115.000000","152.000000","137.000000","147.000000","160.000000","6000.000000","0.000000","743462.000000",,,,, -"3703.000000","47.895000","3703.000000","47.895000","3703.000000","47.895000","6019.000000","0.000000",,,,,,,,,,,,"0.000000","401.000000","802.000000","20.000000","401.000000","401.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","118.000000","176.000000","172.000000","190.000000","200.000000","193.000000","0.000000","0.000000","0.000000","88.000000","121.000000","115.000000","152.000000","172.000000","152.000000","160.000000","6000.000000","0.000000","743482.000000",,,,, -"2590.000000","42.665000","2590.000000","42.665000","2590.000000","42.665000","8615.000000","0.000000",,,,,,,,,,,,"0.000000","288.000000","575.000000","11.000000","288.000000","288.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","175.000000","169.000000","190.000000","200.000000","192.000000","0.000000","0.000000","0.000000","90.000000","116.000000","111.000000","152.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743502.000000",,,,, -"3504.000000","46.960000","3504.000000","46.960000","3504.000000","46.960000","2617.000000","0.000000",,,,,,,,,,,,"1.000000","415.000000","826.000000","26.000000","415.000000","415.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","125.000000","170.000000","169.000000","190.000000","193.000000","192.000000","0.000000","0.000000","0.000000","93.000000","120.000000","111.000000","153.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743522.000000",,,,, -"2636.000000","41.380000","2636.000000","41.380000","2636.000000","41.380000","5320.000000","0.000000",,,,,,,,,,,,"0.000000","452.500000","905.000000","19.000000","452.500000","452.500000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","163.000000","170.000000","190.000000","186.000000","189.000000","0.000000","0.000000","0.000000","95.000000","112.000000","112.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743542.000000",,,,, -"2957.000000","42.890000","2957.000000","42.890000","2957.000000","42.890000","5685.000000","0.000000",,,,,,,,,,,,"0.000000","387.000000","774.000000","92.000000","387.000000","387.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","132.000000","168.000000","170.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","97.000000","113.000000","111.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743562.000000",,,,, -"3797.000000","46.840000","3797.000000","46.840000","3797.000000","46.840000","3520.000000","0.000000",,,,,,,,,,,,"1.000000","515.000000","1029.000000","20.000000","515.000000","515.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071064.000000","0.000000","2092704.000000","129468.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","172.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","100.000000","117.000000","114.000000","154.000000","158.000000","153.000000","160.000000","6000.000000","0.000000","743582.000000",,,,, -"3881.000000","47.235000","3881.000000","47.235000","3881.000000","47.235000","2934.000000","0.000000",,,,,,,,,,,,"0.000000","466.000000","932.000000","17.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071136.000000","0.000000","2092704.000000","129468.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","178.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","103.000000","127.000000","116.000000","156.000000","158.000000","154.000000","160.000000","6000.000000","0.000000","743602.000000",,,,, -"4735.000000","51.245000","4735.000000","51.245000","4735.000000","51.245000","1357.000000","0.000000",,,,,,,,,,,,"0.000000","471.000000","941.000000","19.000000","471.000000","471.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070972.000000","0.000000","2092704.000000","129468.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","143.000000","186.000000","174.000000","194.000000","202.000000","198.000000","0.000000","0.000000","0.000000","106.000000","148.000000","119.000000","158.000000","178.000000","158.000000","160.000000","6000.000000","0.000000","743622.000000",,,,, -"4628.000000","50.740000","4628.000000","50.740000","4628.000000","50.740000","1563.000000","0.000000",,,,,,,,,,,,"0.000000","594.000000","1187.000000","37.000000","594.000000","594.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070884.000000","0.000000","2092704.000000","129468.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","192.000000","177.000000","195.000000","210.000000","199.000000","0.000000","0.000000","0.000000","110.000000","164.000000","126.000000","162.000000","205.000000","172.000000","160.000000","6000.000000","0.000000","743642.000000",,,,, -"4789.000000","51.500000","4789.000000","51.500000","4789.000000","51.500000","1711.000000","0.000000",,,,,,,,,,,,"0.000000","442.500000","885.000000","37.000000","442.500000","442.500000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070896.000000","0.000000","2092704.000000","129468.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","151.000000","197.000000","177.000000","198.000000","210.000000","201.000000","0.000000","0.000000","0.000000","113.000000","177.000000","131.000000","167.000000","205.000000","178.000000","160.000000","6000.000000","0.000000","743662.000000",,,,, -"4795.000000","51.030000","4795.000000","51.030000","4795.000000","51.030000","1946.000000","0.000000",,,,,,,,,,,,"0.000000","555.500000","1109.000000","46.000000","555.500000","555.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","199.000000","179.000000","199.000000","210.000000","202.000000","0.000000","0.000000","0.000000","116.000000","183.000000","135.000000","172.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","743682.000000",,,,, -"3338.000000","44.180000","3338.000000","44.180000","3338.000000","44.180000","959.000000","0.000000",,,,,,,,,,,,"1.000000","364.000000","726.000000","22.000000","364.000000","364.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070596.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","192.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","119.000000","164.000000","135.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743702.000000",,,,, -"3159.000000","43.340000","3159.000000","43.340000","3159.000000","43.340000","866.000000","0.000000",,,,,,,,,,,,"0.000000","559.000000","1118.000000","19.000000","559.000000","559.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070460.000000","0.000000","2092704.000000","129468.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","177.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","120.000000","145.000000","136.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743722.000000",,,,, -"3239.000000","43.220000","3239.000000","43.220000","3239.000000","43.220000","1889.000000","0.000000",,,,,,,,,,,,"0.000000","285.500000","570.000000","20.000000","285.500000","285.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070392.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","164.000000","179.000000","199.000000","190.000000","202.000000","0.000000","0.000000","0.000000","121.000000","121.000000","136.000000","172.000000","147.000000","184.000000","160.000000","6000.000000","0.000000","743742.000000",,,,, -"3103.000000","42.575000","3103.000000","42.575000","3103.000000","42.575000","1391.000000","0.000000",,,,,,,,,,,,"1.000000","380.000000","758.000000","12.000000","380.000000","380.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070324.000000","0.000000","2092704.000000","129468.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","158.000000","177.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","124.000000","119.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743762.000000",,,,, -"3145.000000","42.775000","3145.000000","42.775000","3145.000000","42.775000","1284.000000","0.000000",,,,,,,,,,,,"15.000000","5220.000000","10424.000000","46.000000","5220.000000","5220.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","163.000000","176.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","125.000000","118.000000","136.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743782.000000",,,,, -"3305.000000","43.525000","3305.000000","43.525000","3305.000000","43.525000","1718.000000","0.000000",,,,,,,,,,,,"3.000000","376.500000","750.000000","19.000000","376.500000","376.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2070124.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","168.000000","177.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","125.000000","122.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743802.000000",,,,, -"3116.000000","42.635000","3116.000000","42.635000","3116.000000","42.635000","1617.000000","0.000000",,,,,,,,,,,,"16.000000","10448.500000","20881.000000","46.000000","10448.500000","10448.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","166.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","127.000000","120.000000","137.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743822.000000",,,,, -"3783.000000","45.775000","3783.000000","45.775000","3783.000000","45.775000","2242.000000","0.000000",,,,,,,,,,,,"38.000000","2202.500000","4365.000000","46.000000","2202.500000","2202.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2072004.000000","0.000000","2092704.000000","129468.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","167.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","128.000000","124.000000","138.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743842.000000",,,,, -"3152.000000","47.305000","3152.000000","47.305000","3152.000000","47.305000","2052.000000","0.000000",,,,,,,,,,,,"44.000000","951.500000","1858.000000","42.000000","951.500000","951.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","161.000000","176.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","127.000000","140.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743862.000000",,,,, -"3057.000000","46.865000","3057.000000","46.865000","3057.000000","46.865000","1879.000000","0.000000",,,,,,,,,,,,"3.000000","580.500000","1157.000000","28.000000","580.500000","580.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072204.000000","0.000000","2092704.000000","129468.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","124.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743882.000000",,,,, -"3577.000000","49.305000","3577.000000","49.305000","3577.000000","49.305000","1444.000000","0.000000",,,,,,,,,,,,"0.000000","479.000000","958.000000","19.000000","479.000000","479.000000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","126.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743902.000000",,,,, -"3555.000000","52.205000","3555.000000","52.205000","3555.000000","52.205000","1706.000000","0.000000",,,,,,,,,,,,"1.000000","677.500000","1353.000000","29.000000","677.500000","677.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072100.000000","0.000000","2092704.000000","129468.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","163.000000","171.000000","199.000000","181.000000","200.000000","0.000000","0.000000","0.000000","129.000000","124.000000","135.000000","172.000000","141.000000","184.000000","160.000000","6000.000000","0.000000","743922.000000",,,,, -"3403.000000","51.485000","3403.000000","51.485000","3403.000000","51.485000","1428.000000","0.000000",,,,,,,,,,,,"92.000000","2309.500000","4525.000000","39.000000","2309.500000","2309.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072028.000000","0.000000","2092704.000000","129468.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","175.000000","170.000000","200.000000","202.000000","200.000000","0.000000","0.000000","0.000000","129.000000","132.000000","132.000000","172.000000","147.000000","177.000000","160.000000","6000.000000","0.000000","743942.000000",,,,, -"3741.000000","53.075000","3741.000000","53.075000","3741.000000","53.075000","1499.000000","0.000000",,,,,,,,,,,,"2268.000000","1792.500000","1316.000000","17.000000","1792.500000","1792.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2071728.000000","0.000000","2092704.000000","129468.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","173.000000","173.000000","168.000000","198.000000","202.000000","196.000000","0.000000","0.000000","0.000000","128.000000","133.000000","129.000000","169.000000","162.000000","152.000000","160.000000","6000.000000","0.000000","743962.000000",,,,, -"4139.000000","54.950000","4139.000000","54.950000","4139.000000","54.950000","2321.000000","0.000000",,,,,,,,,,,,"3816.000000","4616.000000","5415.000000","13.000000","4616.000000","4616.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072108.000000","0.000000","2092704.000000","129468.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","202.000000","187.000000","0.000000","0.000000","0.000000","128.000000","141.000000","127.000000","170.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","743982.000000",,,,, -"3588.000000","52.355000","3588.000000","52.355000","3588.000000","52.355000","1315.000000","0.000000",,,,,,,,,,,,"101.000000","2767.000000","5432.000000","20.000000","2767.000000","2767.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072320.000000","0.000000","2092704.000000","129468.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","196.000000","188.000000","0.000000","0.000000","0.000000","127.000000","142.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744002.000000",,,,, -"3026.000000","49.715000","3026.000000","49.715000","3026.000000","49.715000","1891.000000","0.000000",,,,,,,,,,,,"16.000000","390.000000","764.000000","31.000000","390.000000","390.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072416.000000","0.000000","2092704.000000","129468.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","175.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","135.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744022.000000",,,,, -"3614.000000","53.975000","3614.000000","53.975000","3614.000000","53.975000","1116.000000","0.000000",,,,,,,,,,,,"2.000000","408.000000","814.000000","53.000000","408.000000","408.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","172.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","128.000000","167.000000","149.000000","150.000000","160.000000","6000.000000","0.000000","744042.000000",,,,, -"3623.000000","54.020000","3623.000000","54.020000","3623.000000","54.020000","1252.000000","0.000000",,,,,,,,,,,,"2.000000","373.000000","744.000000","18.000000","373.000000","373.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072352.000000","0.000000","2092704.000000","129468.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","171.000000","169.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","129.000000","162.000000","151.000000","151.000000","160.000000","6000.000000","0.000000","744062.000000",,,,, -"3791.000000","54.810000","3791.000000","54.810000","3791.000000","54.810000","1636.000000","0.000000",,,,,,,,,,,,"6.000000","461.500000","917.000000","23.000000","461.500000","461.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072604.000000","0.000000","2092704.000000","129468.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","166.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744082.000000",,,,, -"3988.000000","58.235000","3988.000000","58.235000","3988.000000","58.235000","1852.000000","0.000000",,,,,,,,,,,,"2.000000","317.500000","632.000000","37.000000","317.500000","317.500000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","178.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","162.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744102.000000",,,,, -"3827.000000","57.480000","3827.000000","57.480000","3827.000000","57.480000","1512.000000","0.000000",,,,,,,,,,,,"21.000000","431.000000","840.000000","22.000000","431.000000","431.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","183.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","127.000000","147.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744122.000000",,,,, -"3622.000000","56.515000","3622.000000","56.515000","3622.000000","56.515000","2034.000000","0.000000",,,,,,,,,,,,"4.000000","1117.000000","2229.000000","51.000000","1117.000000","1117.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","183.000000","173.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","143.000000","135.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744142.000000",,,,, -"3255.000000","55.795000","3255.000000","55.795000","3255.000000","55.795000","1931.000000","0.000000",,,,,,,,,,,,"1243.000000","1317.000000","1391.000000","47.000000","1317.000000","1317.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072752.000000","0.000000","2092704.000000","129468.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","184.000000","174.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","129.000000","142.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744162.000000",,,,, -"2560.000000","52.525000","2560.000000","52.525000","2560.000000","52.525000","1557.000000","0.000000",,,,,,,,,,,,"9365.000000","5795.000000","2225.000000","13.000000","5795.000000","5795.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072916.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","159.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","118.000000","133.000000","166.000000","160.000000","162.000000","160.000000","6000.000000","0.000000","744182.000000",,,,, -"3235.000000","55.695000","3235.000000","55.695000","3235.000000","55.695000","1845.000000","0.000000",,,,,,,,,,,,"3843.000000","7886.500000","11930.000000","21.000000","7886.500000","7886.500000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","145.000000","170.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","109.000000","132.000000","166.000000","128.000000","162.000000","160.000000","6000.000000","0.000000","744202.000000",,,,, -"3267.000000","55.850000","3267.000000","55.850000","3267.000000","55.850000","1706.000000","0.000000",,,,,,,,,,,,"2244.000000","3148.500000","4052.000000","20.000000","3148.500000","3148.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073196.000000","0.000000","2092704.000000","129468.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","140.000000","170.000000","198.000000","181.000000","196.000000","0.000000","0.000000","0.000000","129.000000","114.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744222.000000",,,,, -"3604.000000","57.430000","3604.000000","57.430000","3604.000000","57.430000","1729.000000","0.000000",,,,,,,,,,,,"57.000000","5524.000000","10990.000000","30.000000","5524.000000","5524.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073156.000000","0.000000","2092704.000000","129468.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","169.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","126.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744242.000000",,,,, -"2759.000000","53.460000","2759.000000","53.460000","2759.000000","53.460000","1574.000000","0.000000",,,,,,,,,,,,"480.000000","2911.500000","5339.000000","64.000000","2911.500000","2911.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073368.000000","0.000000","2092704.000000","129468.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","171.000000","156.000000","166.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","123.000000","130.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744262.000000",,,,, -"3597.000000","57.395000","3597.000000","57.395000","3597.000000","57.395000","1187.000000","0.000000",,,,,,,,,,,,"251.000000","3973.500000","7694.000000","55.000000","3973.500000","3973.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073188.000000","0.000000","2092704.000000","129468.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","170.000000","155.000000","166.000000","198.000000","190.000000","195.000000","0.000000","0.000000","0.000000","130.000000","122.000000","128.000000","166.000000","150.000000","160.000000","160.000000","6000.000000","0.000000","744282.000000",,,,, -"3072.000000","54.930000","3072.000000","54.930000","3072.000000","54.930000","1074.000000","0.000000",,,,,,,,,,,,"272.000000","8873.500000","17474.000000","33.000000","8873.500000","8873.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073312.000000","0.000000","2092704.000000","129468.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","169.000000","148.000000","164.000000","198.000000","174.000000","194.000000","0.000000","0.000000","0.000000","130.000000","118.000000","127.000000","166.000000","137.000000","160.000000","160.000000","6000.000000","0.000000","744302.000000",,,,, -"3450.000000","56.710000","3450.000000","56.710000","3450.000000","56.710000","1837.000000","0.000000",,,,,,,,,,,,"140.000000","7954.000000","15767.000000","36.000000","7954.000000","7954.000000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073116.000000","0.000000","2092704.000000","129468.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","162.000000","164.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","131.000000","126.000000","128.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744322.000000",,,,, -"2592.000000","52.680000","2592.000000","52.680000","2592.000000","52.680000","2072.000000","0.000000",,,,,,,,,,,,"8645.000000","11137.000000","13629.000000","46.000000","11137.000000","11137.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073080.000000","0.000000","2092704.000000","129468.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","153.000000","162.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","117.000000","126.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744342.000000",,,,, -"3015.000000","54.665000","3015.000000","54.665000","3015.000000","54.665000","1312.000000","0.000000",,,,,,,,,,,,"1516.000000","11797.000000","22076.000000","51.000000","11797.000000","11797.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","151.000000","160.000000","197.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","114.000000","125.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744362.000000",,,,, -"3096.000000","55.040000","3096.000000","55.040000","3096.000000","55.040000","1794.000000","0.000000",,,,,,,,,,,,"333.000000","7155.500000","13978.000000","33.000000","7155.500000","7155.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072792.000000","0.000000","2092704.000000","129468.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","141.000000","157.000000","197.000000","169.000000","188.000000","0.000000","0.000000","0.000000","130.000000","109.000000","122.000000","164.000000","133.000000","155.000000","160.000000","6000.000000","0.000000","744382.000000",,,,, -"3331.000000","56.150000","3331.000000","56.150000","3331.000000","56.150000","1820.000000","0.000000",,,,,,,,,,,,"1799.000000","3938.000000","6077.000000","18.000000","3938.000000","3938.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072512.000000","0.000000","2092704.000000","129468.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","150.000000","156.000000","197.000000","176.000000","188.000000","0.000000","0.000000","0.000000","130.000000","113.000000","121.000000","164.000000","133.000000","150.000000","160.000000","6000.000000","0.000000","744402.000000",,,,, -"2534.000000","52.400000","2534.000000","52.400000","2534.000000","52.400000","1408.000000","0.000000",,,,,,,,,,,,"7824.000000","10464.000000","13103.000000","84.000000","10464.000000","10464.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072464.000000","0.000000","2092704.000000","129468.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","139.000000","151.000000","197.000000","176.000000","183.000000","0.000000","0.000000","0.000000","130.000000","113.000000","118.000000","164.000000","144.000000","145.000000","160.000000","6000.000000","0.000000","744422.000000",,,,, -"1798.000000","48.945000","1798.000000","48.945000","1798.000000","48.945000","1310.000000","0.000000",,,,,,,,,,,,"10924.000000","8664.000000","6403.000000","64.000000","8664.000000","8664.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072468.000000","0.000000","2092704.000000","129468.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","122.000000","145.000000","197.000000","176.000000","181.000000","0.000000","0.000000","0.000000","129.000000","100.000000","114.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744442.000000",,,,, -"1359.000000","45.380000","1359.000000","45.380000","1359.000000","45.380000","1413.000000","0.000000",,,,,,,,,,,,"14270.000000","12067.500000","9865.000000","8.000000","12067.500000","12067.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072824.000000","0.000000","2092704.000000","129468.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","93.000000","138.000000","196.000000","152.000000","180.000000","0.000000","0.000000","0.000000","128.000000","81.000000","109.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744462.000000",,,,, -"1710.000000","47.030000","1710.000000","47.030000","1710.000000","47.030000","1541.000000","0.000000",,,,,,,,,,,,"12476.000000","9800.500000","7124.000000","9.000000","9800.500000","9800.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","69.000000","133.000000","196.000000","105.000000","180.000000","0.000000","0.000000","0.000000","126.000000","58.000000","106.000000","164.000000","80.000000","138.000000","160.000000","6000.000000","0.000000","744482.000000",,,,, -"1551.000000","46.285000","1551.000000","46.285000","1551.000000","46.285000","2795.000000","0.000000",,,,,,,,,,,,"20492.000000","13573.000000","6652.000000","53.000000","13573.000000","13573.000000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2073168.000000","0.000000","2092704.000000","129468.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","157.000000","67.000000","130.000000","196.000000","129.000000","180.000000","0.000000","0.000000","0.000000","124.000000","56.000000","103.000000","164.000000","107.000000","138.000000","160.000000","6000.000000","0.000000","744502.000000",,,,, -"2678.000000","51.580000","2678.000000","51.580000","2678.000000","51.580000","1434.000000","0.000000",,,,,,,,,,,,"9138.000000","10579.000000","12020.000000","49.000000","10579.000000","10579.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073400.000000","0.000000","2092704.000000","129468.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","82.000000","126.000000","196.000000","129.000000","174.000000","0.000000","0.000000","0.000000","122.000000","66.000000","100.000000","162.000000","107.000000","137.000000","160.000000","6000.000000","0.000000","744522.000000",,,,, -"2799.000000","52.145000","2799.000000","52.145000","2799.000000","52.145000","1383.000000","0.000000",,,,,,,,,,,,"5576.000000","3555.500000","1535.000000","7.000000","3555.500000","3555.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073292.000000","0.000000","2092704.000000","129468.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","124.000000","126.000000","194.000000","189.000000","174.000000","0.000000","0.000000","0.000000","121.000000","88.000000","98.000000","156.000000","125.000000","135.000000","160.000000","6000.000000","0.000000","744542.000000",,,,, -"3318.000000","54.590000","3318.000000","54.590000","3318.000000","54.590000","883.000000","0.000000",,,,,,,,,,,,"197.000000","2913.000000","5629.000000","38.000000","2913.000000","2913.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2072920.000000","0.000000","2092704.000000","129468.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","153.000000","129.000000","190.000000","198.000000","176.000000","0.000000","0.000000","0.000000","119.000000","105.000000","99.000000","151.000000","134.000000","135.000000","160.000000","6000.000000","0.000000","744562.000000",,,,, -"3036.000000","54.260000","3036.000000","54.260000","3036.000000","54.260000","1511.000000","0.000000",,,,,,,,,,,,"9290.000000","4985.500000","680.000000","18.000000","4985.500000","4985.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072836.000000","0.000000","2092704.000000","129468.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","163.000000","128.000000","188.000000","198.000000","176.000000","0.000000","0.000000","0.000000","118.000000","116.000000","99.000000","150.000000","134.000000","133.000000","160.000000","6000.000000","0.000000","744582.000000",,,,, -"3164.000000","54.865000","3164.000000","54.865000","3164.000000","54.865000","1816.000000","0.000000",,,,,,,,,,,,"3971.000000","6502.500000","9033.000000","57.000000","6502.500000","6502.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","153.000000","127.000000","188.000000","198.000000","178.000000","0.000000","0.000000","0.000000","118.000000","119.000000","98.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744602.000000",,,,, -"2829.000000","53.290000","2829.000000","53.290000","2829.000000","53.290000","1530.000000","0.000000",,,,,,,,,,,,"839.000000","784.500000","729.000000","20.000000","784.500000","784.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072716.000000","0.000000","2092704.000000","129468.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","146.000000","126.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","118.000000","117.000000","97.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744622.000000",,,,, -"1050.000000","44.930000","1050.000000","44.930000","1050.000000","44.930000","1220.000000","0.000000",,,,,,,,,,,,"13517.000000","7970.000000","2423.000000","5.000000","7970.000000","7970.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072784.000000","0.000000","2092704.000000","129468.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","116.000000","121.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","116.000000","94.000000","94.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744642.000000",,,,, -"1107.000000","45.195000","1107.000000","45.195000","1107.000000","45.195000","1564.000000","0.000000",,,,,,,,,,,,"5707.000000","7605.000000","9501.000000","12.000000","7605.000000","7605.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072760.000000","0.000000","2092704.000000","129468.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","147.000000","79.000000","113.000000","188.000000","180.000000","178.000000","0.000000","0.000000","0.000000","114.000000","64.000000","88.000000","149.000000","134.000000","134.000000","160.000000","6000.000000","0.000000","744662.000000",,,,, -"726.000000","43.405000","726.000000","43.405000","726.000000","43.405000","1211.000000","0.000000",,,,,,,,,,,,"12789.000000","17614.500000","22400.000000","11.000000","17614.500000","17614.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072868.000000","0.000000","2092704.000000","129468.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","39.000000",,,,,,,,,,,"0.000000","144.000000","44.000000","106.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","112.000000","38.000000","83.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744682.000000",,,,, -"723.000000","43.895000","723.000000","43.895000","723.000000","43.895000","1861.000000","0.000000",,,,,,,,,,,,"9391.000000","10150.500000","10882.000000","9.000000","10150.500000","10150.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073436.000000","0.000000","2092704.000000","129468.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","142.000000","41.000000","99.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","110.000000","34.000000","78.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744702.000000",,,,, -"542.000000","43.045000","542.000000","43.045000","542.000000","43.045000","1364.000000","0.000000",,,,,,,,,,,,"375.000000","388.500000","380.000000","2.000000","388.500000","388.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073412.000000","0.000000","2092704.000000","129468.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","0.000000","0.000000",,,,,,"14.000000","7.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","91.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","108.000000","25.000000","71.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744722.000000",,,,, -"376.000000","42.265000","376.000000","42.265000","376.000000","42.265000","1429.000000","0.000000",,,,,,,,,,,,"1047.000000","616.000000","157.000000","3.000000","616.000000","616.000000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073520.000000","0.000000","2092704.000000","129468.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","0.000000","0.000000",,,,,,"21.000000","7.000000",,,,,,,,,,,"0.000000","135.000000","24.000000","87.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","105.000000","20.000000","67.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744742.000000",,,,, -"1111.000000","45.215000","1111.000000","45.215000","1111.000000","45.215000","1513.000000","0.000000",,,,,,,,,,,,"765.000000","4216.500000","7663.000000","20.000000","4216.500000","4216.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073572.000000","0.000000","2092704.000000","129468.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","133.000000","28.000000","86.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","103.000000","24.000000","67.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744762.000000",,,,, -"655.000000","43.070000","655.000000","43.070000","655.000000","43.070000","1890.000000","0.000000",,,,,,,,,,,,"51.000000","385.000000","717.000000","8.000000","385.000000","385.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073452.000000","0.000000","2092704.000000","129468.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","129.000000","30.000000","83.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","101.000000","27.000000","65.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744782.000000",,,,, -"599.000000","42.810000","599.000000","42.810000","599.000000","42.810000","1702.000000","0.000000",,,,,,,,,,,,"993.000000","608.000000","219.000000","7.000000","608.000000","608.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073216.000000","0.000000","2092704.000000","129468.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","126.000000","32.000000","80.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","99.000000","28.000000","62.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744802.000000",,,,, -"875.000000","42.605000","875.000000","42.605000","875.000000","42.605000","1457.000000","0.000000",,,,,,,,,,,,"1709.000000","990.000000","266.000000","3.000000","990.000000","990.000000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2073180.000000","0.000000","2092704.000000","129468.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","124.000000","27.000000","75.000000","188.000000","39.000000","178.000000","0.000000","0.000000","0.000000","97.000000","24.000000","58.000000","149.000000","38.000000","128.000000","160.000000","6000.000000","0.000000","744822.000000",,,,, -"242.000000","39.630000","242.000000","39.630000","242.000000","39.630000","1087.000000","0.000000",,,,,,,,,,,,"0.000000","99.500000","199.000000","5.000000","99.500000","99.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072944.000000","0.000000","2092704.000000","129468.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","23.000000","63.000000","187.000000","50.000000","162.000000","0.000000","0.000000","0.000000","94.000000","21.000000","51.000000","149.000000","48.000000","128.000000","160.000000","6000.000000","0.000000","744842.000000",,,,, -"210.000000","39.480000","210.000000","39.480000","210.000000","39.480000","921.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","94.000000","5.000000","47.500000","47.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072480.000000","0.000000","2092704.000000","129468.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","19.000000","53.000000","187.000000","50.000000","135.000000","0.000000","0.000000","0.000000","91.000000","18.000000","44.000000","146.000000","48.000000","115.000000","160.000000","6000.000000","0.000000","744862.000000",,,,, -"260.000000","42.720000","260.000000","42.720000","260.000000","42.720000","941.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","2.000000","66.500000","66.500000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071900.000000","0.000000","2092704.000000","129468.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","13.000000","45.000000","187.000000","50.000000","133.000000","0.000000","0.000000","0.000000","88.000000","13.000000","38.000000","144.000000","48.000000","109.000000","160.000000","6000.000000","0.000000","744882.000000",,,,, -"229.000000","42.570000","229.000000","42.570000","229.000000","42.570000","723.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071624.000000","0.000000","2092704.000000","129468.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","108.000000","9.000000","34.000000","183.000000","13.000000","69.000000","0.000000","0.000000","0.000000","85.000000","8.000000","29.000000","138.000000","12.000000","48.000000","160.000000","6000.000000","0.000000","744902.000000",,,,, -"257.000000","42.700000","257.000000","42.700000","257.000000","42.700000","1004.000000","0.000000",,,,,,,,,,,,"13.000000","44.000000","75.000000","3.000000","44.000000","44.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071472.000000","0.000000","2092704.000000","129468.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","26.000000","182.000000","13.000000","52.000000","0.000000","0.000000","0.000000","83.000000","8.000000","23.000000","138.000000","12.000000","46.000000","160.000000","6000.000000","0.000000","744922.000000",,,,, -"635.000000","44.480000","635.000000","44.480000","635.000000","44.480000","1254.000000","0.000000",,,,,,,,,,,,"10.000000","181.000000","344.000000","1.000000","181.000000","181.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071336.000000","0.000000","2092704.000000","129468.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","102.000000","15.000000","25.000000","182.000000","47.000000","50.000000","0.000000","0.000000","0.000000","81.000000","14.000000","22.000000","138.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","744942.000000",,,,, -"1112.000000","38.225000","1112.000000","38.225000","1112.000000","38.225000","1594.000000","0.000000",,,,,,,,,,,,"72.000000","551.000000","1011.000000","2.000000","551.000000","551.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071628.000000","0.000000","2092704.000000","129468.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"10.000000","8.000000",,,,,,,,,,,"0.000000","99.000000","27.000000","24.000000","181.000000","67.000000","50.000000","0.000000","0.000000","0.000000","78.000000","24.000000","21.000000","137.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744962.000000",,,,, -"296.000000","34.390000","296.000000","34.390000","296.000000","34.390000","804.000000","0.000000",,,,,,,,,,,,"0.000000","59.500000","101.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071512.000000","0.000000","2092704.000000","129468.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"13.000000","4.000000",,,,,,,,,,,"0.000000","95.000000","27.000000","22.000000","180.000000","67.000000","50.000000","0.000000","0.000000","0.000000","75.000000","25.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744982.000000",,,,, -"940.000000","37.410000","940.000000","37.410000","940.000000","37.410000","1805.000000","0.000000",,,,,,,,,,,,"0.000000","3811.000000","7594.000000","30.000000","3811.000000","3811.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"18.000000","8.000000",,,,,,,,,,,"0.000000","92.000000","27.000000","22.000000","178.000000","67.000000","50.000000","0.000000","0.000000","0.000000","73.000000","24.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","745002.000000",,,,, -"747.000000","31.505000","747.000000","31.505000","747.000000","31.505000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","313.500000","627.000000","5.000000","313.500000","313.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072080.000000","0.000000","2092704.000000","129468.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","88.000000","27.000000","23.000000","176.000000","58.000000","57.000000","0.000000","0.000000","0.000000","70.000000","25.000000","21.000000","133.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745022.000000",,,,, -"340.000000","29.590000","340.000000","29.590000","340.000000","29.590000","1721.000000","0.000000",,,,,,,,,,,,"0.000000","112.500000","224.000000","1.000000","112.500000","112.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","85.000000","28.000000","23.000000","172.000000","58.000000","57.000000","0.000000","0.000000","0.000000","67.000000","24.000000","21.000000","132.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745042.000000",,,,, -"779.000000","31.655000","779.000000","31.655000","779.000000","31.655000","1498.000000","0.000000",,,,,,,,,,,,"565.000000","474.000000","382.000000","2.000000","474.000000","474.000000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","82.000000","29.000000","22.000000","169.000000","58.000000","50.000000","0.000000","0.000000","0.000000","65.000000","27.000000","20.000000","132.000000","53.000000","47.000000","160.000000","6000.000000","0.000000","745062.000000",,,,, -"480.000000","25.750000","480.000000","25.750000","480.000000","25.750000","1454.000000","0.000000",,,,,,,,,,,,"14.000000","96.000000","178.000000","5.000000","96.000000","96.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","79.000000","22.000000","22.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","63.000000","20.000000","20.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745082.000000",,,,, -"215.000000","24.505000","215.000000","24.505000","215.000000","24.505000","1360.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070776.000000","0.000000","2092704.000000","129468.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","21.000000","21.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","61.000000","19.000000","19.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745102.000000",,,,, -"220.000000","24.525000","220.000000","24.525000","220.000000","24.525000","1333.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","74.000000","13.000000","19.000000","167.000000","35.000000","50.000000","0.000000","0.000000","0.000000","59.000000","12.000000","18.000000","131.000000","34.000000","47.000000","160.000000","6000.000000","0.000000","745122.000000",,,,, -"253.000000","22.185000","253.000000","22.185000","253.000000","22.185000","1374.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2070240.000000","0.000000","2092704.000000","129468.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","69.000000","9.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","55.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745142.000000",,,,, -"211.000000","21.990000","211.000000","21.990000","211.000000","21.990000","1237.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2069512.000000","0.000000","2092704.000000","129468.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","8.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","54.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745162.000000",,,,, -"210.000000","21.980000","210.000000","21.980000","210.000000","21.980000","1417.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","3.000000","10.000000","10.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2068924.000000","0.000000","2092704.000000","129468.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","8.000000","18.000000","164.000000","13.000000","48.000000","0.000000","0.000000","0.000000","51.000000","8.000000","17.000000","123.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745182.000000",,,,, -"242.000000","20.135000","242.000000","20.135000","242.000000","20.135000","1204.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","5.000000","33.000000","33.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068524.000000","0.000000","2092704.000000","129468.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","60.000000","8.000000","19.000000","162.000000","12.000000","48.000000","0.000000","0.000000","0.000000","48.000000","8.000000","17.000000","118.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745202.000000",,,,, -"221.000000","20.035000","221.000000","20.035000","221.000000","20.035000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","3.000000","8.500000","8.500000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068260.000000","0.000000","2092704.000000","129468.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","8.000000","18.000000","155.000000","12.000000","48.000000","0.000000","0.000000","0.000000","46.000000","8.000000","17.000000","115.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745222.000000",,,,, -"221.000000","20.030000","221.000000","20.030000","221.000000","20.030000","1249.000000","0.000000",,,,,,,,,,,,"1.000000","24.000000","47.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068640.000000","0.000000","2092704.000000","129468.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","8.000000","17.000000","154.000000","12.000000","48.000000","0.000000","0.000000","0.000000","44.000000","8.000000","16.000000","114.000000","11.000000","38.000000","160.000000","6000.000000","0.000000","745242.000000",,,,, -"353.000000","17.150000","353.000000","17.150000","353.000000","17.150000","1486.000000","0.000000",,,,,,,,,,,,"15.000000","96.000000","175.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2068132.000000","0.000000","2092704.000000","129468.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","51.000000","10.000000","15.000000","150.000000","17.000000","35.000000","0.000000","0.000000","0.000000","41.000000","9.000000","14.000000","113.000000","17.000000","34.000000","160.000000","6000.000000","0.000000","745262.000000",,,,, -"575.000000","18.195000","575.000000","18.195000","575.000000","18.195000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","160.000000","313.000000","1.000000","160.000000","160.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067844.000000","0.000000","2092704.000000","129468.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","48.000000","15.000000","16.000000","143.000000","54.000000","47.000000","0.000000","0.000000","0.000000","39.000000","14.000000","15.000000","112.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745282.000000",,,,, -"637.000000","18.490000","637.000000","18.490000","637.000000","18.490000","1866.000000","0.000000",,,,,,,,,,,,"0.000000","186.500000","371.000000","3.000000","186.500000","186.500000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067620.000000","0.000000","2092704.000000","129468.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","46.000000","20.000000","16.000000","135.000000","54.000000","40.000000","0.000000","0.000000","0.000000","37.000000","18.000000","15.000000","109.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745302.000000",,,,, -"539.000000","16.025000","539.000000","16.025000","539.000000","16.025000","1200.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067912.000000","0.000000","2092704.000000","129468.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","43.000000","22.000000","14.000000","129.000000","54.000000","35.000000","0.000000","0.000000","0.000000","35.000000","21.000000","13.000000","104.000000","48.000000","34.000000","160.000000","6000.000000","0.000000","745322.000000",,,,, -"499.000000","15.840000","499.000000","15.840000","499.000000","15.840000","1748.000000","0.000000",,,,,,,,,,,,"15.000000","133.500000","251.000000","4.000000","133.500000","133.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067972.000000","0.000000","2092704.000000","129468.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","42.000000","22.000000","15.000000","129.000000","40.000000","35.000000","0.000000","0.000000","0.000000","34.000000","20.000000","14.000000","104.000000","40.000000","34.000000","160.000000","6000.000000","0.000000","745342.000000",,,,, -"272.000000","14.775000","272.000000","14.775000","272.000000","14.775000","1982.000000","0.000000",,,,,,,,,,,,"9.000000","38.500000","67.000000","2.000000","38.500000","38.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067184.000000","0.000000","2092704.000000","129468.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","13.000000","129.000000","40.000000","34.000000","0.000000","0.000000","0.000000","33.000000","17.000000","13.000000","104.000000","39.000000","30.000000","160.000000","6000.000000","0.000000","745362.000000",,,,, -"226.000000","13.055000","226.000000","13.055000","226.000000","13.055000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","130.000000","2.000000","65.500000","65.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066756.000000","0.000000","2092704.000000","129468.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","14.000000","13.000000","129.000000","34.000000","32.000000","0.000000","0.000000","0.000000","32.000000","13.000000","12.000000","104.000000","30.000000","28.000000","160.000000","6000.000000","0.000000","745382.000000",,,,, -"211.000000","12.985000","211.000000","12.985000","211.000000","12.985000","1784.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","5.000000","13.500000","13.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066684.000000","0.000000","2092704.000000","129468.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","13.000000","129.000000","16.000000","32.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","101.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","745402.000000",,,,, -"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","946.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","33.000000","2.000000","17.000000","17.000000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066324.000000","0.000000","2092704.000000","129468.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","13.000000","129.000000","10.000000","32.000000","0.000000","0.000000","0.000000","29.000000","8.000000","12.000000","101.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745422.000000",,,,, -"219.000000","12.025000","219.000000","12.025000","219.000000","12.025000","767.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","5.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065884.000000","0.000000","2092704.000000","129468.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","8.000000","13.000000","69.000000","10.000000","32.000000","0.000000","0.000000","0.000000","27.000000","8.000000","12.000000","66.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745442.000000",,,,, -"239.000000","12.120000","239.000000","12.120000","239.000000","12.120000","602.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","14.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065068.000000","0.000000","2092704.000000","129468.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","13.000000","57.000000","10.000000","32.000000","0.000000","0.000000","0.000000","24.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745462.000000",,,,, -"225.000000","12.050000","225.000000","12.050000","225.000000","12.050000","560.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","2.000000","19.000000","19.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2064604.000000","0.000000","2092704.000000","129468.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","13.000000","54.000000","10.000000","32.000000","0.000000","0.000000","0.000000","22.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745482.000000",,,,, -"234.000000","12.090000","234.000000","12.090000","234.000000","12.090000","538.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","4.000000","19.000000","19.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063468.000000","0.000000","2092704.000000","129468.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","13.000000","50.000000","9.000000","32.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","43.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745502.000000",,,,, -"217.000000","12.015000","217.000000","12.015000","217.000000","12.015000","564.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","3.000000","14.000000","14.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063212.000000","0.000000","2092704.000000","129468.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","40.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745522.000000",,,,, -"288.000000","12.350000","288.000000","12.350000","288.000000","12.350000","699.000000","0.000000",,,,,,,,,,,,"8.000000","39.500000","70.000000","3.000000","39.500000","39.500000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063196.000000","0.000000","2092704.000000","129468.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745542.000000",,,,, -"598.000000","12.805000","598.000000","12.805000","598.000000","12.805000","928.000000","0.000000",,,,,,,,,,,,"0.000000","181.500000","356.000000","1.000000","181.500000","181.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2063188.000000","0.000000","2092704.000000","129468.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","17.000000","15.000000","14.000000","40.000000","55.000000","34.000000","0.000000","0.000000","0.000000","16.000000","13.000000","13.000000","37.000000","45.000000","30.000000","160.000000","6000.000000","0.000000","745562.000000",,,,, -"1052.000000","14.940000","1052.000000","14.940000","1052.000000","14.940000","1200.000000","0.000000",,,,,,,,,,,,"5.000000","493.000000","965.000000","1.000000","493.000000","493.000000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062944.000000","0.000000","2092704.000000","129468.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","0.000000","0.000000",,,,,,"8.000000","7.000000",,,,,,,,,,,"0.000000","18.000000","24.000000","14.000000","47.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","21.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745582.000000",,,,, -"219.000000","11.025000","219.000000","11.025000","219.000000","11.025000","1114.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","26.000000","1.000000","14.500000","14.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062500.000000","0.000000","2092704.000000","129468.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","27.000000","14.000000","40.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745602.000000",,,,, -"229.000000","10.070000","229.000000","10.070000","229.000000","10.070000","886.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","92.000000","4.000000","47.500000","47.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2062048.000000","0.000000","2092704.000000","129468.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","21.000000","13.000000","40.000000","65.000000","32.000000","0.000000","0.000000","0.000000","15.000000","18.000000","12.000000","38.000000","59.000000","28.000000","160.000000","6000.000000","0.000000","745622.000000",,,,, -"228.000000","10.065000","228.000000","10.065000","228.000000","10.065000","668.000000","0.000000",,,,,,,,,,,,"0.000000","7.500000","11.000000","0.000000","7.500000","7.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2061444.000000","0.000000","2092704.000000","129468.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","11.000000","12.000000","40.000000","36.000000","25.000000","0.000000","0.000000","0.000000","15.000000","10.000000","11.000000","38.000000","35.000000","19.000000","160.000000","6000.000000","0.000000","745642.000000",,,,, -"245.000000","10.150000","245.000000","10.150000","245.000000","10.150000","732.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","10.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2060896.000000","0.000000","2092704.000000","129468.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","12.000000","38.000000","10.000000","25.000000","0.000000","0.000000","0.000000","15.000000","8.000000","11.000000","36.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745662.000000",,,,, -"226.000000","10.560000","226.000000","10.560000","226.000000","10.560000","783.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060284.000000","0.000000","2092704.000000","129468.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745682.000000",,,,, -"215.000000","10.505000","215.000000","10.505000","215.000000","10.505000","742.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","5.000000","5.500000","5.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060172.000000","0.000000","2092704.000000","129468.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745702.000000",,,,, -"226.000000","10.555000","226.000000","10.555000","226.000000","10.555000","619.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","9.000000","0.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059312.000000","0.000000","2092704.000000","129468.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","35.000000","9.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745722.000000",,,,, -"241.000000","12.125000","241.000000","12.125000","241.000000","12.125000","544.000000","0.000000",,,,,,,,,,,,"0.000000","9.000000","12.000000","1.000000","9.000000","9.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058812.000000","0.000000","2092704.000000","129468.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"4.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","8.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745742.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","498.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058316.000000","0.000000","2092704.000000","129468.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745762.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","596.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","2.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2057376.000000","0.000000","2092704.000000","129468.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745782.000000",,,,, -"220.000000","9.530000","220.000000","9.530000","220.000000","9.530000","657.000000","0.000000",,,,,,,,,,,,"0.000000","6.500000","10.000000","1.000000","6.500000","6.500000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2056920.000000","0.000000","2092704.000000","129468.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745802.000000",,,,, -"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","625.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","3.000000","6.000000","6.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057116.000000","0.000000","2092704.000000","129468.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745822.000000",,,,, -"227.000000","9.565000","227.000000","9.565000","227.000000","9.565000","575.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","12.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057084.000000","0.000000","2092704.000000","129468.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","34.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","31.000000","8.000000","19.000000","160.000000","6000.000000","0.000000","745842.000000",,,,, -"840.000000","10.940000","840.000000","10.940000","840.000000","10.940000","695.000000","0.000000",,,,,,,,,,,,"944.000000","2276.000000","3596.000000","21.000000","2276.000000","2276.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2059604.000000","0.000000","2092704.000000","129468.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","0.000000","0.000000",,,,,,"6.000000","4.000000",,,,,,,,,,,"0.000000","14.000000","17.000000","13.000000","34.000000","62.000000","31.000000","0.000000","0.000000","0.000000","13.000000","15.000000","12.000000","28.000000","60.000000","24.000000","160.000000","6000.000000","0.000000","745862.000000",,,,, -"509.000000","9.385000","509.000000","9.385000","509.000000","9.385000","495.000000","0.000000",,,,,,,,,,,,"7.000000","170.000000","331.000000","9.000000","170.000000","170.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2060928.000000","0.000000","2092704.000000","129468.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","21.000000","12.000000","34.000000","62.000000","16.000000","0.000000","0.000000","0.000000","13.000000","19.000000","11.000000","30.000000","60.000000","16.000000","160.000000","6000.000000","0.000000","745882.000000",,,,, -"264.000000","8.235000","264.000000","8.235000","264.000000","8.235000","974.000000","0.000000",,,,,,,,,,,,"0.000000","64.000000","128.000000","2.000000","64.000000","64.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","22.000000","11.000000","34.000000","62.000000","15.000000","0.000000","0.000000","0.000000","13.000000","20.000000","10.000000","28.000000","60.000000","15.000000","160.000000","6000.000000","0.000000","745902.000000",,,,, -"218.000000","8.520000","218.000000","8.520000","218.000000","8.520000","449.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","9.000000","48.500000","48.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2061608.000000","0.000000","2092704.000000","129468.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","11.000000","31.000000","37.000000","15.000000","0.000000","0.000000","0.000000","12.000000","13.000000","10.000000","24.000000","35.000000","15.000000","160.000000","6000.000000","0.000000","745922.000000",,,,, -"232.000000","8.585000","232.000000","8.585000","232.000000","8.585000","837.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","79.000000","1.000000","40.000000","40.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060576.000000","0.000000","2092704.000000","129468.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","31.000000","12.000000","15.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","24.000000","12.000000","15.000000","160.000000","6000.000000","0.000000","745942.000000",,,,, -"261.000000","8.720000","261.000000","8.720000","261.000000","8.720000","1135.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","3.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060168.000000","0.000000","2092704.000000","129468.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","25.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","19.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745962.000000",,,,, -"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","1093.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","3.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059716.000000","0.000000","2092704.000000","129468.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745982.000000",,,,, -"223.000000","10.540000","223.000000","10.540000","223.000000","10.540000","981.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","5.000000","27.500000","27.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058392.000000","0.000000","2092704.000000","129468.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746002.000000",,,,, -"247.000000","10.655000","247.000000","10.655000","247.000000","10.655000","508.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","4.000000","44.000000","44.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058020.000000","0.000000","2092704.000000","129468.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746022.000000",,,,, -"220.000000","8.530000","220.000000","8.530000","220.000000","8.530000","624.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","6.000000","10.000000","10.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2057600.000000","0.000000","2092704.000000","129468.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746042.000000",,,,, -"240.000000","8.620000","240.000000","8.620000","240.000000","8.620000","494.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","6.000000","38.000000","38.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056600.000000","0.000000","2092704.000000","129468.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746062.000000",,,,, -"480.000000","9.750000","480.000000","9.750000","480.000000","9.750000","537.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","339.000000","5.000000","172.500000","172.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2058168.000000","0.000000","2092704.000000","129468.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746082.000000",,,,, -"691.000000","10.740000","691.000000","10.740000","691.000000","10.740000","837.000000","0.000000",,,,,,,,,,,,"17.000000","243.500000","459.000000","3.000000","243.500000","243.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057872.000000","0.000000","2092704.000000","129468.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","0.000000","0.000000",,,,,,"4.000000","5.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746102.000000",,,,, -"284.000000","8.830000","284.000000","8.830000","284.000000","8.830000","449.000000","0.000000",,,,,,,,,,,,"3.000000","91.500000","180.000000","2.000000","91.500000","91.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057300.000000","0.000000","2092704.000000","129468.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","18.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746122.000000",,,,, -"234.000000","8.595000","234.000000","8.595000","234.000000","8.595000","502.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057252.000000","0.000000","2092704.000000","129468.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746142.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","524.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","7.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056832.000000","0.000000","2092704.000000","129468.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","31.000000","17.000000","17.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","24.000000","16.000000","16.000000","160.000000","6000.000000","0.000000","746162.000000",,,,, -"245.000000","8.645000","245.000000","8.645000","245.000000","8.645000","371.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","29.000000","2.000000","14.500000","14.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056416.000000","0.000000","2092704.000000","129468.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","26.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","22.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746182.000000",,,,, -"212.000000","8.490000","212.000000","8.490000","212.000000","8.490000","713.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2055744.000000","0.000000","2092704.000000","129468.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746202.000000",,,,, -"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","807.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","6.000000","37.000000","37.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2055244.000000","0.000000","2092704.000000","129468.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746222.000000",,,,, -"237.000000","7.110000","237.000000","7.110000","237.000000","7.110000","490.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2054168.000000","0.000000","2092704.000000","129468.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746242.000000",,,,, -"219.000000","7.020000","219.000000","7.020000","219.000000","7.020000","653.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","4.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2052588.000000","0.000000","2092704.000000","129468.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746262.000000",,,,, -"272.000000","8.775000","272.000000","8.775000","272.000000","8.775000","556.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","4.000000","36.500000","36.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2052180.000000","0.000000","2092704.000000","129468.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746282.000000",,,,, -"547.000000","10.065000","547.000000","10.065000","547.000000","10.065000","521.000000","0.000000",,,,,,,,,,,,"2.000000","59.500000","116.000000","3.000000","59.500000","59.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2051480.000000","0.000000","2092704.000000","129468.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","11.000000","16.000000","21.000000","17.000000","0.000000","0.000000","0.000000","11.000000","10.000000","11.000000","15.000000","18.000000","16.000000","160.000000","6000.000000","0.000000","746302.000000",,,,, -"292.000000","8.865000","292.000000","8.865000","292.000000","8.865000","666.000000","0.000000",,,,,,,,,,,,"0.000000","92.500000","185.000000","7.000000","92.500000","92.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746322.000000",,,,, -"264.000000","7.735000","264.000000","7.735000","264.000000","7.735000","389.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","3.000000","71.000000","71.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050140.000000","0.000000","2092704.000000","129468.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746342.000000",,,,, -"227.000000","7.565000","227.000000","7.565000","227.000000","7.565000","483.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","1.000000","26.500000","26.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050032.000000","0.000000","2092704.000000","129468.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","13.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","12.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746362.000000",,,,, -"240.000000","7.625000","240.000000","7.625000","240.000000","7.625000","469.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049260.000000","0.000000","2092704.000000","129468.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","12.000000","16.000000","14.000000","21.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","18.000000","160.000000","6000.000000","0.000000","746382.000000",,,,, -"259.000000","9.710000","259.000000","9.710000","259.000000","9.710000","465.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048696.000000","0.000000","2092704.000000","129468.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","746402.000000",,,,, -"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","315.000000","0.000000",,,,,,,,,,,,"0.000000","15.500000","31.000000","4.000000","15.500000","15.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048224.000000","0.000000","2092704.000000","129468.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746422.000000",,,,, -"223.000000","9.545000","223.000000","9.545000","223.000000","9.545000","439.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049652.000000","0.000000","2092704.000000","129468.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746442.000000",,,,, -"265.000000","7.740000","265.000000","7.740000","265.000000","7.740000","371.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","7.000000","29.000000","29.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049236.000000","0.000000","2092704.000000","129468.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746462.000000",,,,, -"224.000000","7.550000","224.000000","7.550000","224.000000","7.550000","414.000000","0.000000",,,,,,,,,,,,"0.000000","16.500000","33.000000","12.000000","16.500000","16.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2047088.000000","0.000000","2092704.000000","129468.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746482.000000",,,,, -"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","725.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","13.000000","47.500000","47.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2045500.000000","0.000000","2092704.000000","129468.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746502.000000",,,,, -"584.000000","8.740000","584.000000","8.740000","584.000000","8.740000","693.000000","0.000000",,,,,,,,,,,,"6.000000","106.000000","206.000000","9.000000","106.000000","106.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045596.000000","0.000000","2092704.000000","129468.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746522.000000",,,,, -"230.000000","7.075000","230.000000","7.075000","230.000000","7.075000","739.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","6.000000","65.000000","65.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045888.000000","0.000000","2092704.000000","129468.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746542.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","667.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2046312.000000","0.000000","2092704.000000","129468.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746562.000000",,,,, -"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","886.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045872.000000","0.000000","2092704.000000","129468.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","13.000000","16.000000","160.000000","6000.000000","0.000000","746582.000000",,,,, -"246.000000","8.650000","246.000000","8.650000","246.000000","8.650000","564.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044336.000000","0.000000","2092704.000000","129468.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","746602.000000",,,,, -"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","766.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2043240.000000","0.000000","2092704.000000","129468.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746622.000000",,,,, -"275.000000","7.785000","275.000000","7.785000","275.000000","7.785000","620.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042700.000000","0.000000","2092704.000000","129468.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746642.000000",,,,, -"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","680.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042560.000000","0.000000","2092704.000000","129468.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746662.000000",,,,, -"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","754.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","5.000000","13.000000","13.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042448.000000","0.000000","2092704.000000","129468.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746682.000000",,,,, -"276.000000","7.290000","276.000000","7.290000","276.000000","7.290000","506.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","4.000000","43.000000","43.000000",,,,,,,,,,,"167772.000000","251656.000000","0.000000","0.000000","2042020.000000","0.000000","2092704.000000","129468.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746702.000000",,,,, -"587.000000","9.255000","587.000000","9.255000","587.000000","9.255000","843.000000","0.000000",,,,,,,,,,,,"32.000000","84.500000","137.000000","5.000000","84.500000","84.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2042600.000000","0.000000","2092704.000000","129468.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","11.000000","16.000000","65.000000","14.000000","0.000000","0.000000","0.000000","11.000000","13.000000","10.000000","16.000000","42.000000","13.000000","160.000000","6000.000000","0.000000","746722.000000",,,,, -"470.000000","9.205000","470.000000","9.205000","470.000000","9.205000","564.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","4.000000","154.500000","154.500000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2041640.000000","0.000000","2092704.000000","129468.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","19.000000","12.000000","16.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","16.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746742.000000",,,,, -"260.000000","8.220000","260.000000","8.220000","260.000000","8.220000","463.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","5.000000","42.000000","42.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041228.000000","0.000000","2092704.000000","129468.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","15.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","15.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746762.000000",,,,, -"276.000000","8.295000","276.000000","8.295000","276.000000","8.295000","436.000000","0.000000",,,,,,,,,,,,"0.000000","100.000000","200.000000","4.000000","100.000000","100.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039672.000000","0.000000","2092704.000000","129468.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","12.000000","13.000000","34.000000","16.000000","0.000000","0.000000","0.000000","10.000000","12.000000","11.000000","13.000000","34.000000","16.000000","160.000000","6000.000000","0.000000","746782.000000",,,,, -"593.000000","9.785000","593.000000","9.785000","593.000000","9.785000","908.000000","0.000000",,,,,,,,,,,,"0.000000","129.000000","258.000000","6.000000","129.000000","129.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2037544.000000","0.000000","2092704.000000","129468.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","14.000000","29.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","14.000000","28.000000","25.000000","160.000000","6000.000000","0.000000","746802.000000",,,,, -"411.000000","7.430000","411.000000","7.430000","411.000000","7.430000","859.000000","0.000000",,,,,,,,,,,,"0.000000","54.500000","108.000000","6.000000","54.500000","54.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2036936.000000","0.000000","2092704.000000","129468.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","17.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746822.000000",,,,, -"246.000000","6.650000","246.000000","6.650000","246.000000","6.650000","437.000000","0.000000",,,,,,,,,,,,"0.000000","85.000000","170.000000","6.000000","85.000000","85.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034024.000000","0.000000","2092704.000000","129468.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","16.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746842.000000",,,,, -"567.000000","8.160000","567.000000","8.160000","567.000000","8.160000","577.000000","0.000000",,,,,,,,,,,,"2.000000","52.500000","102.000000","4.000000","52.500000","52.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033620.000000","0.000000","2092704.000000","129468.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","17.000000","25.000000","25.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","16.000000","22.000000","22.000000","160.000000","6000.000000","0.000000","746862.000000",,,,, -"304.000000","6.925000","304.000000","6.925000","304.000000","6.925000","606.000000","0.000000",,,,,,,,,,,,"1.000000","116.500000","232.000000","8.000000","116.500000","116.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033232.000000","0.000000","2092704.000000","129468.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","14.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746882.000000",,,,, -"224.000000","6.550000","224.000000","6.550000","224.000000","6.550000","464.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2032932.000000","0.000000","2092704.000000","129468.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746902.000000",,,,, -"267.000000","6.750000","267.000000","6.750000","267.000000","6.750000","476.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034120.000000","0.000000","2092704.000000","129468.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","12.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","11.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746922.000000",,,,, -"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","481.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033572.000000","0.000000","2092704.000000","129468.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746942.000000",,,,, -"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","602.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033528.000000","0.000000","2092704.000000","129468.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746962.000000",,,,, -"258.000000","10.705000","258.000000","10.705000","258.000000","10.705000","430.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","4.000000","17.000000","17.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2031944.000000","0.000000","2092704.000000","129468.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746982.000000",,,,, -"247.000000","9.155000","247.000000","9.155000","247.000000","9.155000","424.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","5.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2031416.000000","0.000000","2092704.000000","129468.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","13.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","160.000000","6000.000000","0.000000","747002.000000",,,,, -"225.000000","9.050000","225.000000","9.050000","225.000000","9.050000","519.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2029764.000000","0.000000","2092704.000000","129468.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","0.000000","0.000000","0.000000","10.000000","9.000000","12.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747022.000000",,,,, -"277.000000","9.295000","277.000000","9.295000","277.000000","9.295000","378.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2027712.000000","0.000000","2092704.000000","129468.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747042.000000",,,,, -"252.000000","7.180000","252.000000","7.180000","252.000000","7.180000","427.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2027092.000000","0.000000","2092704.000000","129468.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747062.000000",,,,, -"222.000000","7.035000","222.000000","7.035000","222.000000","7.035000","397.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","3.000000","42.000000","42.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2029612.000000","0.000000","2092704.000000","129468.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747082.000000",,,,, -"283.000000","7.325000","283.000000","7.325000","283.000000","7.325000","562.000000","0.000000",,,,,,,,,,,,"1.000000","40.500000","80.000000","2.000000","40.500000","40.500000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2031248.000000","0.000000","2092704.000000","129468.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","747102.000000",,,,, -"207.000000","6.465000","207.000000","6.465000","207.000000","6.465000","985.000000","0.000000",,,,,,,,,,,,"0.000000","34.500000","69.000000","3.000000","34.500000","34.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2031080.000000","0.000000","2092704.000000","129468.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747122.000000",,,,, -"257.000000","6.700000","257.000000","6.700000","257.000000","6.700000","418.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","3.000000","33.000000","33.000000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030692.000000","0.000000","2092704.000000","129468.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747142.000000",,,,, -"269.000000","6.760000","269.000000","6.760000","269.000000","6.760000","461.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","3.000000","31.500000","31.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030252.000000","0.000000","2092704.000000","129468.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747162.000000",,,,, -"221.000000","6.035000","221.000000","6.035000","221.000000","6.035000","576.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","5.000000","38.000000","38.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029488.000000","0.000000","2092704.000000","129468.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747182.000000",,,,, -"215.000000","6.005000","215.000000","6.005000","215.000000","6.005000","535.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747202.000000",,,,, -"263.000000","6.230000","263.000000","6.230000","263.000000","6.230000","540.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029996.000000","0.000000","2092704.000000","129468.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747222.000000",,,,, -"216.000000","8.010000","216.000000","8.010000","216.000000","8.010000","449.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029456.000000","0.000000","2092704.000000","129468.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747242.000000",,,,, -"222.000000","8.040000","222.000000","8.040000","222.000000","8.040000","504.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","38.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2031016.000000","0.000000","2092704.000000","129468.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747262.000000",,,,, -"325.000000","8.525000","325.000000","8.525000","325.000000","8.525000","383.000000","0.000000",,,,,,,,,,,,"0.000000","67.000000","134.000000","2.000000","67.000000","67.000000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029904.000000","0.000000","2092704.000000","129468.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747282.000000",,,,, -"656.000000","8.580000","656.000000","8.580000","656.000000","8.580000","509.000000","0.000000",,,,,,,,,,,,"6.000000","160.500000","314.000000","3.000000","160.500000","160.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2029988.000000","0.000000","2092704.000000","129468.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747302.000000",,,,, -"222.000000","6.540000","222.000000","6.540000","222.000000","6.540000","427.000000","0.000000",,,,,,,,,,,,"1.000000","57.500000","113.000000","2.000000","57.500000","57.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2030240.000000","0.000000","2092704.000000","129468.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747322.000000",,,,, -"205.000000","6.455000","205.000000","6.455000","205.000000","6.455000","570.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2031584.000000","0.000000","2092704.000000","129468.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747342.000000",,,,, -"275.000000","7.290000","275.000000","7.290000","275.000000","7.290000","410.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","35.000000","54.000000","54.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2031500.000000","0.000000","2092704.000000","129468.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747362.000000",,,,, -"224.000000","7.045000","224.000000","7.045000","224.000000","7.045000","422.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2030172.000000","0.000000","2092704.000000","129468.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747382.000000",,,,, -"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","392.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","12.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747402.000000",,,,, -"277.000000","7.295000","277.000000","7.295000","277.000000","7.295000","694.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","4.000000","42.000000","42.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2028208.000000","0.000000","2092704.000000","129468.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747422.000000",,,,, -"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","423.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","5.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2024908.000000","0.000000","2092704.000000","129468.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747442.000000",,,,, -"231.000000","7.080000","231.000000","7.080000","231.000000","7.080000","503.000000","0.000000",,,,,,,,,,,,"0.000000","11.500000","23.000000","2.000000","11.500000","11.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2021248.000000","0.000000","2092704.000000","129468.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747462.000000",,,,, -"290.000000","6.355000","290.000000","6.355000","290.000000","6.355000","563.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2020788.000000","0.000000","2092704.000000","129468.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747482.000000",,,,, -"309.000000","6.445000","309.000000","6.445000","309.000000","6.445000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2019568.000000","0.000000","2092704.000000","129468.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","15.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","19.000000","15.000000","160.000000","6000.000000","0.000000","747502.000000",,,,, -"887.000000","18.665000","887.000000","18.665000","887.000000","18.665000","1100.000000","0.000000",,,,,,,,,,,,"11704.000000","12116.000000","12338.000000","32.000000","12116.000000","12116.000000",,,,,,,,,,,"461372.000000","608172.000000","0.000000","0.000000","2043504.000000","0.000000","2092704.000000","129468.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","0.000000","0.000000",,,,,,"1.000000","188.000000",,,,,,,,,,,"0.000000","11.000000","20.000000","12.000000","17.000000","64.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","17.000000","46.000000","19.000000","160.000000","6000.000000","0.000000","747522.000000",,,,, -"1057.000000","24.460000","1057.000000","24.460000","1057.000000","24.460000","858.000000","0.000000",,,,,,,,,,,,"332.000000","11614.000000","10071.000000","49.000000","11614.000000","11614.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2049828.000000","0.000000","2092704.000000","129468.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"12759.000000","65.000000",,,,,,,,,,,"0.000000","12.000000","33.000000","15.000000","21.000000","64.000000","38.000000","0.000000","0.000000","0.000000","11.000000","27.000000","13.000000","20.000000","51.000000","32.000000","160.000000","6000.000000","0.000000","747542.000000",,,,, -"1284.000000","25.525000","1284.000000","25.525000","1284.000000","25.525000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","20819.000000","21350.000000","52.000000","20819.000000","20819.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2054784.000000","0.000000","2092704.000000","129468.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"20208.000000","80.000000",,,,,,,,,,,"0.000000","13.000000","50.000000","18.000000","25.000000","75.000000","62.000000","0.000000","0.000000","0.000000","12.000000","38.000000","16.000000","22.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747562.000000",,,,, -"1222.000000","31.740000","1222.000000","31.740000","1222.000000","31.740000","1331.000000","0.000000",,,,,,,,,,,,"0.000000","20673.500000","32382.000000","52.000000","20673.500000","20673.500000",,,,,,,,,,,"1048576.000000","1090516.000000","0.000000","0.000000","2069584.000000","0.000000","2092704.000000","129468.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"8932.000000","31.000000",,,,,,,,,,,"0.000000","15.000000","56.000000","22.000000","29.000000","75.000000","64.000000","0.000000","0.000000","0.000000","13.000000","42.000000","18.000000","28.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747582.000000",,,,, -"1072.000000","42.030000","1072.000000","42.030000","1072.000000","42.030000","887.000000","0.000000",,,,,,,,,,,,"24.000000","20193.500000","25790.000000","22.000000","20193.500000","20193.500000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069968.000000","0.000000","2092704.000000","129468.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"14509.000000","63.000000",,,,,,,,,,,"0.000000","16.000000","59.000000","24.000000","49.000000","75.000000","64.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","39.000000","50.000000","46.000000","160.000000","6000.000000","0.000000","747602.000000",,,,, -"1121.000000","42.260000","1121.000000","42.260000","1121.000000","42.260000","703.000000","0.000000",,,,,,,,,,,,"1468.000000","2351.000000","3222.000000","5.000000","2351.000000","2351.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069712.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","16.000000","52.000000","26.000000","49.000000","79.000000","64.000000","0.000000","0.000000","0.000000","14.000000","42.000000","21.000000","39.000000","65.000000","46.000000","160.000000","6000.000000","0.000000","747622.000000",,,,, -"1808.000000","45.490000","1808.000000","45.490000","1808.000000","45.490000","820.000000","0.000000",,,,,,,,,,,,"845.000000","1243.000000","1626.000000","12.000000","1243.000000","1243.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069368.000000","0.000000","2092704.000000","129468.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","30.000000","51.000000","90.000000","70.000000","0.000000","0.000000","0.000000","15.000000","47.000000","25.000000","42.000000","77.000000","50.000000","160.000000","6000.000000","0.000000","747642.000000",,,,, -"2368.000000","52.620000","2368.000000","52.620000","2368.000000","52.620000","757.000000","0.000000",,,,,,,,,,,,"109.000000","519.000000","920.000000","4.000000","519.000000","519.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069384.000000","0.000000","2092704.000000","129468.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","19.000000","71.000000","36.000000","56.000000","104.000000","79.000000","0.000000","0.000000","0.000000","17.000000","65.000000","31.000000","46.000000","100.000000","71.000000","160.000000","6000.000000","0.000000","747662.000000",,,,, -"2429.000000","52.910000","2429.000000","52.910000","2429.000000","52.910000","696.000000","0.000000",,,,,,,,,,,,"49.000000","756.500000","1458.000000","9.000000","756.500000","756.500000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069288.000000","0.000000","2092704.000000","129468.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","21.000000","85.000000","41.000000","64.000000","108.000000","84.000000","0.000000","0.000000","0.000000","19.000000","81.000000","36.000000","49.000000","107.000000","81.000000","160.000000","6000.000000","0.000000","747682.000000",,,,, -"2529.000000","53.380000","2529.000000","53.380000","2529.000000","53.380000","815.000000","0.000000",,,,,,,,,,,,"6.000000","346.000000","682.000000","5.000000","346.000000","346.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069036.000000","0.000000","2092704.000000","129468.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","93.000000","47.000000","70.000000","108.000000","99.000000","0.000000","0.000000","0.000000","20.000000","90.000000","41.000000","51.000000","107.000000","92.000000","160.000000","6000.000000","0.000000","747702.000000",,,,, -"2291.000000","52.260000","2291.000000","52.260000","2291.000000","52.260000","1569.000000","0.000000",,,,,,,,,,,,"179.000000","558.000000","926.000000","13.000000","558.000000","558.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2068880.000000","0.000000","2092704.000000","129468.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","24.000000","93.000000","53.000000","78.000000","108.000000","102.000000","0.000000","0.000000","0.000000","22.000000","89.000000","47.000000","71.000000","107.000000","94.000000","160.000000","6000.000000","0.000000","747722.000000",,,,, -"2266.000000","52.645000","2266.000000","52.645000","2266.000000","52.645000","1448.000000","0.000000",,,,,,,,,,,,"0.000000","238.500000","469.000000","6.000000","238.500000","238.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068904.000000","0.000000","2092704.000000","129468.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","26.000000","94.000000","58.000000","84.000000","105.000000","102.000000","0.000000","0.000000","0.000000","24.000000","89.000000","52.000000","77.000000","103.000000","94.000000","160.000000","6000.000000","0.000000","747742.000000",,,,, -"2699.000000","54.680000","2699.000000","54.680000","2699.000000","54.680000","759.000000","0.000000",,,,,,,,,,,,"21.000000","348.500000","667.000000","8.000000","348.500000","348.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068692.000000","0.000000","2092704.000000","129468.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","28.000000","96.000000","64.000000","89.000000","108.000000","104.000000","0.000000","0.000000","0.000000","25.000000","91.000000","57.000000","85.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","747762.000000",,,,, -"2345.000000","53.015000","2345.000000","53.015000","2345.000000","53.015000","1128.000000","0.000000",,,,,,,,,,,,"1028.000000","5992.500000","10947.000000","29.000000","5992.500000","5992.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","30.000000","98.000000","71.000000","93.000000","113.000000","105.000000","0.000000","0.000000","0.000000","27.000000","92.000000","64.000000","87.000000","111.000000","103.000000","160.000000","6000.000000","0.000000","747782.000000",,,,, -"2726.000000","53.805000","2726.000000","53.805000","2726.000000","53.805000","875.000000","0.000000",,,,,,,,,,,,"267.000000","1066.000000","1858.000000","12.000000","1066.000000","1066.000000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070348.000000","0.000000","2092704.000000","129468.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","32.000000","102.000000","77.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","29.000000","96.000000","69.000000","87.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747802.000000",,,,, -"2414.000000","52.335000","2414.000000","52.335000","2414.000000","52.335000","850.000000","0.000000",,,,,,,,,,,,"0.000000","485.500000","970.000000","8.000000","485.500000","485.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","99.000000","80.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","31.000000","93.000000","72.000000","89.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747822.000000",,,,, -"2425.000000","52.390000","2425.000000","52.390000","2425.000000","52.390000","749.000000","0.000000",,,,,,,,,,,,"21.000000","587.500000","1147.000000","12.000000","587.500000","587.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2069908.000000","0.000000","2092704.000000","129468.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","36.000000","99.000000","84.000000","97.000000","120.000000","108.000000","0.000000","0.000000","0.000000","33.000000","95.000000","77.000000","92.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747842.000000",,,,, -"2267.000000","38.650000","2267.000000","38.650000","2267.000000","38.650000","924.000000","0.000000",,,,,,,,,,,,"0.000000","835.000000","1667.000000","10.000000","835.000000","835.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2069348.000000","0.000000","2092704.000000","129468.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","38.000000","94.000000","85.000000","97.000000","107.000000","108.000000","0.000000","0.000000","0.000000","35.000000","90.000000","79.000000","92.000000","106.000000","107.000000","160.000000","6000.000000","0.000000","747862.000000",,,,, -"2604.000000","40.230000","2604.000000","40.230000","2604.000000","40.230000","543.000000","0.000000",,,,,,,,,,,,"0.000000","486.500000","971.000000","7.000000","486.500000","486.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068932.000000","0.000000","2092704.000000","129468.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","39.000000","93.000000","87.000000","97.000000","104.000000","108.000000","0.000000","0.000000","0.000000","36.000000","89.000000","82.000000","93.000000","104.000000","107.000000","160.000000","6000.000000","0.000000","747882.000000",,,,, -"2655.000000","40.475000","2655.000000","40.475000","2655.000000","40.475000","919.000000","0.000000",,,,,,,,,,,,"0.000000","1322.000000","2643.000000","36.000000","1322.000000","1322.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068800.000000","0.000000","2092704.000000","129468.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","95.000000","91.000000","102.000000","113.000000","112.000000","0.000000","0.000000","0.000000","39.000000","93.000000","87.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747902.000000",,,,, -"2639.000000","37.895000","2639.000000","37.895000","2639.000000","37.895000","449.000000","0.000000",,,,,,,,,,,,"1.000000","498.000000","993.000000","7.000000","498.000000","498.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068512.000000","0.000000","2092704.000000","129468.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","44.000000","99.000000","95.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","40.000000","97.000000","90.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747922.000000",,,,, -"2473.000000","37.115000","2473.000000","37.115000","2473.000000","37.115000","940.000000","0.000000",,,,,,,,,,,,"186.000000","5576.000000","10947.000000","30.000000","5576.000000","5576.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068608.000000","0.000000","2092704.000000","129468.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","45.000000","100.000000","96.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","42.000000","98.000000","92.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747942.000000",,,,, -"2583.000000","37.635000","2583.000000","37.635000","2583.000000","37.635000","556.000000","0.000000",,,,,,,,,,,,"1.000000","255.000000","497.000000","3.000000","255.000000","255.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068496.000000","0.000000","2092704.000000","129468.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","48.000000","99.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","45.000000","97.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747962.000000",,,,, -"2270.000000","36.165000","2270.000000","36.165000","2270.000000","36.165000","770.000000","0.000000",,,,,,,,,,,,"61.000000","415.500000","763.000000","7.000000","415.500000","415.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067892.000000","0.000000","2092704.000000","129468.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","49.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","46.000000","93.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747982.000000",,,,, -"2497.000000","37.230000","2497.000000","37.230000","2497.000000","37.230000","1118.000000","0.000000",,,,,,,,,,,,"32.000000","198.500000","360.000000","5.000000","198.500000","198.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067420.000000","0.000000","2092704.000000","129468.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","51.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","48.000000","93.000000","93.000000","102.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","748002.000000",,,,, -"2008.000000","34.930000","2008.000000","34.930000","2008.000000","34.930000","1895.000000","0.000000",,,,,,,,,,,,"16.000000","136.000000","240.000000","3.000000","136.000000","136.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067244.000000","0.000000","2092704.000000","129468.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","53.000000","92.000000","97.000000","105.000000","109.000000","112.000000","0.000000","0.000000","0.000000","50.000000","85.000000","92.000000","102.000000","102.000000","110.000000","160.000000","6000.000000","0.000000","748022.000000",,,,, -"2417.000000","34.355000","2417.000000","34.355000","2417.000000","34.355000","971.000000","0.000000",,,,,,,,,,,,"582.000000","2388.000000","4178.000000","19.000000","2388.000000","2388.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2067144.000000","0.000000","2092704.000000","129468.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","55.000000","94.000000","97.000000","106.000000","115.000000","112.000000","0.000000","0.000000","0.000000","51.000000","86.000000","92.000000","103.000000","105.000000","110.000000","160.000000","6000.000000","0.000000","748042.000000",,,,, -"5654.000000","49.570000","5654.000000","49.570000","5654.000000","49.570000","879.000000","0.000000",,,,,,,,,,,,"12.000000","413.000000","805.000000","7.000000","413.000000","413.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2072016.000000","0.000000","2092704.000000","129468.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","58.000000","117.000000","101.000000","106.000000","339.000000","113.000000","0.000000","0.000000","0.000000","54.000000","105.000000","96.000000","104.000000","291.000000","111.000000","160.000000","6000.000000","0.000000","748062.000000",,,,, -"2422.000000","34.875000","2422.000000","34.875000","2422.000000","34.875000","1433.000000","0.000000",,,,,,,,,,,,"8.000000","714.000000","1416.000000","13.000000","714.000000","714.000000",,,,,,,,,,,"943716.000000","985660.000000","0.000000","0.000000","2071892.000000","0.000000","2092704.000000","129468.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","63.000000","150.000000","107.000000","107.000000","400.000000","113.000000","0.000000","0.000000","0.000000","58.000000","130.000000","100.000000","105.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748082.000000",,,,, -"2617.000000","45.290000","2617.000000","45.290000","2617.000000","45.290000","985.000000","0.000000",,,,,,,,,,,,"720.000000","2480.000000","4166.000000","17.000000","2480.000000","2480.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2072116.000000","0.000000","2092704.000000","129468.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","0.000000","0.000000",,,,,,"2.000000","72.000000",,,,,,,,,,,"0.000000","65.000000","152.000000","107.000000","108.000000","400.000000","112.000000","0.000000","0.000000","0.000000","60.000000","133.000000","100.000000","105.000000","309.000000","110.000000","160.000000","6000.000000","0.000000","748102.000000",,,,, -"4310.000000","53.250000","4310.000000","53.250000","4310.000000","53.250000","1219.000000","0.000000",,,,,,,,,,,,"324.000000","3148.500000","5945.000000","12.000000","3148.500000","3148.500000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071856.000000","0.000000","2092704.000000","129468.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","0.000000","0.000000",,,,,,"0.000000","26.000000",,,,,,,,,,,"0.000000","68.000000","154.000000","112.000000","108.000000","400.000000","113.000000","0.000000","0.000000","0.000000","62.000000","132.000000","103.000000","106.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748122.000000",,,,, -"3058.000000","47.365000","3058.000000","47.365000","3058.000000","47.365000","710.000000","0.000000",,,,,,,,,,,,"280.000000","2332.000000","4356.000000","10.000000","2332.000000","2332.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","72.000000","156.000000","118.000000","109.000000","378.000000","179.000000","0.000000","0.000000","0.000000","65.000000","124.000000","106.000000","107.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748142.000000",,,,, -"2509.000000","44.785000","2509.000000","44.785000","2509.000000","44.785000","891.000000","0.000000",,,,,,,,,,,,"180.000000","1414.500000","2644.000000","15.000000","1414.500000","1414.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","75.000000","157.000000","120.000000","111.000000","378.000000","179.000000","0.000000","0.000000","0.000000","67.000000","124.000000","107.000000","108.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748162.000000",,,,, -"2849.000000","46.385000","2849.000000","46.385000","2849.000000","46.385000","603.000000","0.000000",,,,,,,,,,,,"0.000000","88.000000","176.000000","10.000000","88.000000","88.000000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","135.000000","121.000000","111.000000","328.000000","179.000000","0.000000","0.000000","0.000000","69.000000","108.000000","107.000000","109.000000","166.000000","149.000000","160.000000","6000.000000","0.000000","748182.000000",,,,, -"2471.000000","44.605000","2471.000000","44.605000","2471.000000","44.605000","613.000000","0.000000",,,,,,,,,,,,"371.000000","2221.500000","4028.000000","14.000000","2221.500000","2221.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071524.000000","0.000000","2092704.000000","129468.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","44.000000",,,,,,,,,,,"0.000000","79.000000","106.000000","121.000000","111.000000","115.000000","179.000000","0.000000","0.000000","0.000000","71.000000","99.000000","107.000000","109.000000","115.000000","149.000000","160.000000","6000.000000","0.000000","748202.000000",,,,, -"2306.000000","39.330000","2306.000000","39.330000","2306.000000","39.330000","813.000000","0.000000",,,,,,,,,,,,"19.000000","576.000000","1120.000000","15.000000","576.000000","576.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","80.000000","99.000000","120.000000","111.000000","112.000000","179.000000","0.000000","0.000000","0.000000","73.000000","94.000000","106.000000","109.000000","111.000000","149.000000","160.000000","6000.000000","0.000000","748222.000000",,,,, -"2854.000000","41.905000","2854.000000","41.905000","2854.000000","41.905000","866.000000","0.000000",,,,,,,,,,,,"489.000000","1535.000000","2563.000000","10.000000","1535.000000","1535.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","17.000000",,,,,,,,,,,"0.000000","82.000000","93.000000","119.000000","111.000000","111.000000","179.000000","0.000000","0.000000","0.000000","74.000000","88.000000","105.000000","109.000000","108.000000","149.000000","160.000000","6000.000000","0.000000","748242.000000",,,,, -"2556.000000","40.505000","2556.000000","40.505000","2556.000000","40.505000","581.000000","0.000000",,,,,,,,,,,,"42.000000","1013.000000","1968.000000","12.000000","1013.000000","1013.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071200.000000","0.000000","2092704.000000","129468.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","15.000000",,,,,,,,,,,"0.000000","85.000000","102.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","77.000000","95.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748262.000000",,,,, -"2257.000000","45.105000","2257.000000","45.105000","2257.000000","45.105000","823.000000","0.000000",,,,,,,,,,,,"269.000000","1074.500000","1867.000000","19.000000","1074.500000","1074.500000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071196.000000","0.000000","2092704.000000","129468.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","87.000000","104.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","78.000000","97.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748282.000000",,,,, -"1956.000000","43.690000","1956.000000","43.690000","1956.000000","43.690000","909.000000","0.000000",,,,,,,,,,,,"40.000000","400.000000","727.000000","5.000000","400.000000","400.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071176.000000","0.000000","2092704.000000","129468.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","0.000000","0.000000",,,,,,"0.000000","31.000000",,,,,,,,,,,"0.000000","88.000000","103.000000","120.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","80.000000","95.000000","106.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748302.000000",,,,, -"2576.000000","46.600000","2576.000000","46.600000","2576.000000","46.600000","791.000000","0.000000",,,,,,,,,,,,"604.000000","2436.000000","4261.000000","30.000000","2436.000000","2436.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","90.000000","94.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","82.000000","86.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748322.000000",,,,, -"2453.000000","47.025000","2453.000000","47.025000","2453.000000","47.025000","808.000000","0.000000",,,,,,,,,,,,"10.000000","549.500000","1087.000000","5.000000","549.500000","549.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071364.000000","0.000000","2092704.000000","129468.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","92.000000","93.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","84.000000","84.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748342.000000",,,,, -"2445.000000","46.985000","2445.000000","46.985000","2445.000000","46.985000","1018.000000","0.000000",,,,,,,,,,,,"0.000000","505.500000","1010.000000","23.000000","505.500000","505.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071232.000000","0.000000","2092704.000000","129468.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","94.000000","96.000000","116.000000","112.000000","115.000000","179.000000","0.000000","0.000000","0.000000","85.000000","90.000000","103.000000","110.000000","112.000000","149.000000","160.000000","6000.000000","0.000000","748362.000000",,,,, -"2560.000000","47.525000","2560.000000","47.525000","2560.000000","47.525000","866.000000","0.000000",,,,,,,,,,,,"0.000000","492.500000","984.000000","19.000000","492.500000","492.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071168.000000","0.000000","2092704.000000","129468.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","96.000000","99.000000","111.000000","112.000000","112.000000","115.000000","0.000000","0.000000","0.000000","88.000000","93.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748382.000000",,,,, -"2655.000000","42.975000","2655.000000","42.975000","2655.000000","42.975000","977.000000","0.000000",,,,,,,,,,,,"995.000000","850.500000","701.000000","44.000000","850.500000","850.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071416.000000","0.000000","2092704.000000","129468.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","98.000000","102.000000","111.000000","112.000000","117.000000","117.000000","0.000000","0.000000","0.000000","89.000000","96.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748402.000000",,,,, -"3104.000000","45.085000","3104.000000","45.085000","3104.000000","45.085000","700.000000","0.000000",,,,,,,,,,,,"1551.000000","1248.500000","943.000000","3.000000","1248.500000","1248.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071496.000000","0.000000","2092704.000000","129468.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","100.000000","111.000000","108.000000","113.000000","155.000000","117.000000","0.000000","0.000000","0.000000","91.000000","105.000000","97.000000","111.000000","155.000000","115.000000","160.000000","6000.000000","0.000000","748422.000000",,,,, -"2998.000000","44.585000","2998.000000","44.585000","2998.000000","44.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","465.000000","929.000000","46.000000","465.000000","465.000000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","114.000000","103.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","93.000000","108.000000","96.000000","112.000000","155.000000","114.000000","160.000000","6000.000000","0.000000","748442.000000",,,,, -"2463.000000","41.070000","2463.000000","41.070000","2463.000000","41.070000","661.000000","0.000000",,,,,,,,,,,,"0.000000","530.500000","1059.000000","28.000000","530.500000","530.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071488.000000","0.000000","2092704.000000","129468.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","112.000000","102.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","94.000000","108.000000","96.000000","112.000000","155.000000","113.000000","160.000000","6000.000000","0.000000","748462.000000",,,,, -"2685.000000","42.110000","2685.000000","42.110000","2685.000000","42.110000","779.000000","0.000000",,,,,,,,,,,,"2.000000","341.500000","680.000000","17.000000","341.500000","341.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071904.000000","0.000000","2092704.000000","129468.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","105.000000","102.000000","114.000000","116.000000","115.000000","0.000000","0.000000","0.000000","95.000000","99.000000","96.000000","112.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","748482.000000",,,,, -"2621.000000","41.815000","2621.000000","41.815000","2621.000000","41.815000","751.000000","0.000000",,,,,,,,,,,,"6.000000","568.500000","1130.000000","26.000000","568.500000","568.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071792.000000","0.000000","2092704.000000","129468.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","102.000000","102.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","97.000000","98.000000","96.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748502.000000",,,,, -"2537.000000","39.420000","2537.000000","39.420000","2537.000000","39.420000","705.000000","0.000000",,,,,,,,,,,,"1.000000","738.000000","1474.000000","30.000000","738.000000","738.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071424.000000","0.000000","2092704.000000","129468.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","104.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","99.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748522.000000",,,,, -"2528.000000","39.375000","2528.000000","39.375000","2528.000000","39.375000","649.000000","0.000000",,,,,,,,,,,,"0.000000","503.500000","1006.000000","41.000000","503.500000","503.500000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","106.000000","102.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","96.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748542.000000",,,,, -"2579.000000","39.615000","2579.000000","39.615000","2579.000000","39.615000","639.000000","0.000000",,,,,,,,,,,,"25.000000","577.000000","1127.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748562.000000",,,,, -"2581.000000","37.625000","2581.000000","37.625000","2581.000000","37.625000","810.000000","0.000000",,,,,,,,,,,,"29.000000","7316.000000","14600.000000","63.000000","7316.000000","7316.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071388.000000","0.000000","2092704.000000","129468.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748582.000000",,,,, -"2340.000000","36.490000","2340.000000","36.490000","2340.000000","36.490000","912.000000","0.000000",,,,,,,,,,,,"725.000000","6886.000000","13027.000000","12.000000","6886.000000","6886.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","97.000000","98.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748602.000000",,,,, -"2801.000000","38.655000","2801.000000","38.655000","2801.000000","38.655000","668.000000","0.000000",,,,,,,,,,,,"129.000000","712.500000","1295.000000","10.000000","712.500000","712.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","96.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748622.000000",,,,, -"2475.000000","41.125000","2475.000000","41.125000","2475.000000","41.125000","456.000000","0.000000",,,,,,,,,,,,"941.000000","678.000000","414.000000","18.000000","678.000000","678.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070480.000000","0.000000","2092704.000000","129468.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","100.000000","104.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","94.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748642.000000",,,,, -"2359.000000","40.580000","2359.000000","40.580000","2359.000000","40.580000","1076.000000","0.000000",,,,,,,,,,,,"1582.000000","1147.000000","711.000000","7.000000","1147.000000","1147.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070120.000000","0.000000","2092704.000000","129468.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","104.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","99.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748662.000000",,,,, -"2142.000000","39.560000","2142.000000","39.560000","2142.000000","39.560000","1022.000000","0.000000",,,,,,,,,,,,"1611.000000","1347.000000","1083.000000","38.000000","1347.000000","1347.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","103.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","88.000000","97.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748682.000000",,,,, -"2311.000000","39.355000","2311.000000","39.355000","2311.000000","39.355000","1645.000000","0.000000",,,,,,,,,,,,"1601.000000","1340.000000","1079.000000","29.000000","1340.000000","1340.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069472.000000","0.000000","2092704.000000","129468.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","97.000000","103.000000","114.000000","116.000000","114.000000","0.000000","0.000000","0.000000","98.000000","85.000000","96.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748702.000000",,,,, -"1921.000000","37.520000","1921.000000","37.520000","1921.000000","37.520000","724.000000","0.000000",,,,,,,,,,,,"2948.000000","1837.000000","726.000000","9.000000","1837.000000","1837.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069256.000000","0.000000","2092704.000000","129468.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","90.000000","100.000000","114.000000","109.000000","113.000000","0.000000","0.000000","0.000000","98.000000","77.000000","93.000000","112.000000","99.000000","112.000000","160.000000","6000.000000","0.000000","748722.000000",,,,, -"2511.000000","40.295000","2511.000000","40.295000","2511.000000","40.295000","529.000000","0.000000",,,,,,,,,,,,"1831.000000","1130.500000","429.000000","16.000000","1130.500000","1130.500000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2068820.000000","0.000000","2092704.000000","129468.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","84.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748742.000000",,,,, -"2422.000000","42.880000","2422.000000","42.880000","2422.000000","42.880000","521.000000","0.000000",,,,,,,,,,,,"1787.000000","1115.500000","444.000000","51.000000","1115.500000","1115.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","108.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748762.000000",,,,, -"2283.000000","42.225000","2283.000000","42.225000","2283.000000","42.225000","760.000000","0.000000",,,,,,,,,,,,"576.000000","352.500000","128.000000","3.000000","352.500000","352.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068948.000000","0.000000","2092704.000000","129468.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","98.000000","98.000000","114.000000","105.000000","110.000000","0.000000","0.000000","0.000000","98.000000","89.000000","91.000000","112.000000","100.000000","106.000000","160.000000","6000.000000","0.000000","748782.000000",,,,, -"2151.000000","41.605000","2151.000000","41.605000","2151.000000","41.605000","719.000000","0.000000",,,,,,,,,,,,"236.000000","248.500000","261.000000","2.000000","248.500000","248.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068892.000000","0.000000","2092704.000000","129468.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","98.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","90.000000","112.000000","100.000000","105.000000","160.000000","6000.000000","0.000000","748802.000000",,,,, -"2417.000000","46.355000","2417.000000","46.355000","2417.000000","46.355000","523.000000","0.000000",,,,,,,,,,,,"382.000000","620.500000","854.000000","8.000000","620.500000","620.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068688.000000","0.000000","2092704.000000","129468.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","106.000000","91.000000","97.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","97.000000","84.000000","89.000000","112.000000","107.000000","105.000000","160.000000","6000.000000","0.000000","748822.000000",,,,, -"2886.000000","48.560000","2886.000000","48.560000","2886.000000","48.560000","848.000000","0.000000",,,,,,,,,,,,"134.000000","508.500000","878.000000","5.000000","508.500000","508.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068400.000000","0.000000","2092704.000000","129468.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","97.000000","114.000000","111.000000","110.000000","0.000000","0.000000","0.000000","97.000000","90.000000","90.000000","112.000000","108.000000","107.000000","160.000000","6000.000000","0.000000","748842.000000",,,,, -"4560.000000","56.425000","4560.000000","56.425000","4560.000000","56.425000","998.000000","0.000000",,,,,,,,,,,,"245.000000","853.500000","1459.000000","4.000000","853.500000","853.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068544.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","109.000000","130.000000","103.000000","115.000000","197.000000","116.000000","0.000000","0.000000","0.000000","99.000000","120.000000","95.000000","113.000000","189.000000","112.000000","160.000000","6000.000000","0.000000","748862.000000",,,,, -"4207.000000","47.765000","4207.000000","47.765000","4207.000000","47.765000","984.000000","0.000000",,,,,,,,,,,,"0.000000","675.000000","1349.000000","17.000000","675.000000","675.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068684.000000","0.000000","2092704.000000","129468.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","157.000000","108.000000","117.000000","200.000000","172.000000","0.000000","0.000000","0.000000","101.000000","143.000000","99.000000","115.000000","189.000000","154.000000","160.000000","6000.000000","0.000000","748882.000000",,,,, -"4612.000000","49.670000","4612.000000","49.670000","4612.000000","49.670000","2901.000000","0.000000",,,,,,,,,,,,"6.000000","650.000000","1292.000000","10.000000","650.000000","650.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068336.000000","0.000000","2092704.000000","129468.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","112.000000","183.000000","114.000000","163.000000","203.000000","186.000000","0.000000","0.000000","0.000000","102.000000","167.000000","104.000000","149.000000","196.000000","175.000000","160.000000","6000.000000","0.000000","748902.000000",,,,, -"4527.000000","49.265000","4527.000000","49.265000","4527.000000","49.265000","908.000000","0.000000",,,,,,,,,,,,"9.000000","573.000000","1135.000000","19.000000","573.000000","573.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068024.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","183.000000","120.000000","179.000000","203.000000","189.000000","0.000000","0.000000","0.000000","105.000000","166.000000","109.000000","155.000000","196.000000","178.000000","160.000000","6000.000000","0.000000","748922.000000",,,,, -"4990.000000","50.945000","4990.000000","50.945000","4990.000000","50.945000","767.000000","0.000000",,,,,,,,,,,,"236.000000","1692.500000","3147.000000","16.000000","1692.500000","1692.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068476.000000","0.000000","2092704.000000","129468.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","125.000000","180.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","175.000000","115.000000","166.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748942.000000",,,,, -"4418.000000","48.260000","4418.000000","48.260000","4418.000000","48.260000","910.000000","0.000000",,,,,,,,,,,,"61.000000","1808.000000","3555.000000","44.000000","1808.000000","1808.000000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","186.000000","130.000000","185.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","173.000000","119.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748962.000000",,,,, -"4310.000000","47.750000","4310.000000","47.750000","4310.000000","47.750000","1200.000000","0.000000",,,,,,,,,,,,"162.000000","666.500000","1170.000000","29.000000","666.500000","666.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","138.000000","186.000000","211.000000","195.000000","0.000000","0.000000","0.000000","107.000000","172.000000","126.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748982.000000",,,,, -"4985.000000","53.420000","4985.000000","53.420000","4985.000000","53.420000","916.000000","0.000000",,,,,,,,,,,,"0.000000","590.000000","1178.000000","18.000000","590.000000","590.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2068068.000000","0.000000","2092704.000000","129468.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","119.000000","188.000000","144.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","171.000000","132.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749002.000000",,,,, -"4211.000000","49.785000","4211.000000","49.785000","4211.000000","49.785000","2143.000000","0.000000",,,,,,,,,,,,"0.000000","490.000000","980.000000","27.000000","490.000000","490.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067656.000000","0.000000","2092704.000000","129468.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","189.000000","150.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","170.000000","138.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749022.000000",,,,, -"4596.000000","51.590000","4596.000000","51.590000","4596.000000","51.590000","1290.000000","0.000000",,,,,,,,,,,,"1.000000","616.500000","1231.000000","19.000000","616.500000","616.500000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067452.000000","0.000000","2092704.000000","129468.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","187.000000","156.000000","187.000000","209.000000","200.000000","0.000000","0.000000","0.000000","111.000000","174.000000","144.000000","175.000000","205.000000","190.000000","160.000000","6000.000000","0.000000","749042.000000",,,,, -"4377.000000","48.065000","4377.000000","48.065000","4377.000000","48.065000","962.000000","0.000000",,,,,,,,,,,,"0.000000","644.500000","1288.000000","25.000000","644.500000","644.500000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2067056.000000","0.000000","2092704.000000","129468.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","181.000000","161.000000","189.000000","202.000000","200.000000","0.000000","0.000000","0.000000","112.000000","165.000000","148.000000","175.000000","201.000000","190.000000","160.000000","6000.000000","0.000000","749062.000000",,,,, -"5237.000000","52.105000","5237.000000","52.105000","5237.000000","52.105000","943.000000","0.000000",,,,,,,,,,,,"2.000000","615.000000","1227.000000","21.000000","615.000000","615.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066912.000000","0.000000","2092704.000000","129468.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","123.000000","185.000000","167.000000","191.000000","213.000000","202.000000","0.000000","0.000000","0.000000","114.000000","171.000000","154.000000","177.000000","213.000000","196.000000","160.000000","6000.000000","0.000000","749082.000000",,,,, -"5077.000000","51.355000","5077.000000","51.355000","5077.000000","51.355000","786.000000","0.000000",,,,,,,,,,,,"1.000000","651.000000","1301.000000","21.000000","651.000000","651.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066876.000000","0.000000","2092704.000000","129468.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","194.000000","176.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","116.000000","183.000000","163.000000","184.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749102.000000",,,,, -"4878.000000","53.920000","4878.000000","53.920000","4878.000000","53.920000","558.000000","0.000000",,,,,,,,,,,,"1.000000","665.000000","1328.000000","23.000000","665.000000","665.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2067136.000000","0.000000","2092704.000000","129468.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","127.000000","198.000000","182.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","118.000000","190.000000","169.000000","187.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749122.000000",,,,, -"5149.000000","55.190000","5149.000000","55.190000","5149.000000","55.190000","679.000000","0.000000",,,,,,,,,,,,"6.000000","495.500000","985.000000","19.000000","495.500000","495.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069248.000000","0.000000","2092704.000000","129468.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","196.000000","188.000000","196.000000","208.000000","204.000000","0.000000","0.000000","0.000000","120.000000","189.000000","174.000000","188.000000","205.000000","203.000000","160.000000","6000.000000","0.000000","749142.000000",,,,, -"4683.000000","53.005000","4683.000000","53.005000","4683.000000","53.005000","881.000000","0.000000",,,,,,,,,,,,"5.000000","754.500000","1504.000000","66.000000","754.500000","754.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069080.000000","0.000000","2092704.000000","129468.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","193.000000","189.000000","198.000000","208.000000","208.000000","0.000000","0.000000","0.000000","122.000000","183.000000","175.000000","188.000000","200.000000","203.000000","160.000000","6000.000000","0.000000","749162.000000",,,,, -"5484.000000","59.765000","5484.000000","59.765000","5484.000000","59.765000","1039.000000","0.000000",,,,,,,,,,,,"5.000000","543.000000","1081.000000","17.000000","543.000000","543.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068884.000000","0.000000","2092704.000000","129468.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","134.000000","198.000000","191.000000","200.000000","213.000000","208.000000","0.000000","0.000000","0.000000","124.000000","190.000000","178.000000","190.000000","213.000000","205.000000","160.000000","6000.000000","0.000000","749182.000000",,,,, -"4817.000000","56.635000","4817.000000","56.635000","4817.000000","56.635000","898.000000","0.000000",,,,,,,,,,,,"2.000000","877.500000","1753.000000","31.000000","877.500000","877.500000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","201.000000","191.000000","200.000000","218.000000","209.000000","0.000000","0.000000","0.000000","127.000000","192.000000","179.000000","192.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749202.000000",,,,, -"4453.000000","54.920000","4453.000000","54.920000","4453.000000","54.920000","1616.000000","0.000000",,,,,,,,,,,,"1.000000","576.000000","1151.000000","26.000000","576.000000","576.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","138.000000","198.000000","192.000000","202.000000","218.000000","209.000000","0.000000","0.000000","0.000000","129.000000","184.000000","179.000000","193.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749222.000000",,,,, -"4907.000000","52.055000","4907.000000","52.055000","4907.000000","52.055000","1009.000000","0.000000",,,,,,,,,,,,"2.000000","632.000000","1262.000000","27.000000","632.000000","632.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068460.000000","0.000000","2092704.000000","129468.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","194.000000","192.000000","202.000000","218.000000","208.000000","0.000000","0.000000","0.000000","131.000000","178.000000","179.000000","193.000000","218.000000","205.000000","160.000000","6000.000000","0.000000","749242.000000",,,,, -"5263.000000","53.730000","5263.000000","53.730000","5263.000000","53.730000","434.000000","0.000000",,,,,,,,,,,,"2.000000","468.000000","934.000000","48.000000","468.000000","468.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068312.000000","0.000000","2092704.000000","129468.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","193.000000","193.000000","202.000000","205.000000","208.000000","0.000000","0.000000","0.000000","133.000000","178.000000","180.000000","193.000000","200.000000","205.000000","160.000000","6000.000000","0.000000","749262.000000",,,,, -"4974.000000","52.370000","4974.000000","52.370000","4974.000000","52.370000","940.000000","0.000000",,,,,,,,,,,,"4.000000","607.000000","1209.000000","22.000000","607.000000","607.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068216.000000","0.000000","2092704.000000","129468.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","145.000000","199.000000","194.000000","203.000000","216.000000","209.000000","0.000000","0.000000","0.000000","135.000000","190.000000","183.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749282.000000",,,,, -"4725.000000","52.200000","4725.000000","52.200000","4725.000000","52.200000","1142.000000","0.000000",,,,,,,,,,,,"2.000000","549.000000","1095.000000","21.000000","549.000000","549.000000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067956.000000","0.000000","2092704.000000","129468.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","147.000000","196.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","188.000000","182.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749302.000000",,,,, -"4487.000000","51.080000","4487.000000","51.080000","4487.000000","51.080000","1028.000000","0.000000",,,,,,,,,,,,"4.000000","504.500000","1004.000000","18.000000","504.500000","504.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067856.000000","0.000000","2092704.000000","129468.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","191.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","177.000000","181.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749322.000000",,,,, -"4644.000000","51.820000","4644.000000","51.820000","4644.000000","51.820000","1226.000000","0.000000",,,,,,,,,,,,"3.000000","668.500000","1334.000000","27.000000","668.500000","668.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067876.000000","0.000000","2092704.000000","129468.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","191.000000","195.000000","204.000000","210.000000","210.000000","0.000000","0.000000","0.000000","139.000000","173.000000","183.000000","200.000000","207.000000","207.000000","160.000000","6000.000000","0.000000","749342.000000",,,,, -"5158.000000","52.735000","5158.000000","52.735000","5158.000000","52.735000","972.000000","0.000000",,,,,,,,,,,,"10.000000","671.000000","1331.000000","22.000000","671.000000","671.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067952.000000","0.000000","2092704.000000","129468.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","198.000000","197.000000","205.000000","212.000000","212.000000","0.000000","0.000000","0.000000","141.000000","178.000000","185.000000","201.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","749362.000000",,,,, -"5152.000000","52.705000","5152.000000","52.705000","5152.000000","52.705000","1007.000000","0.000000",,,,,,,,,,,,"15.000000","600.000000","1184.000000","20.000000","600.000000","600.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","203.000000","197.000000","205.000000","212.000000","210.000000","0.000000","0.000000","0.000000","143.000000","188.000000","185.000000","201.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","749382.000000",,,,, -"4716.000000","50.660000","4716.000000","50.660000","4716.000000","50.660000","1169.000000","0.000000",,,,,,,,,,,,"7.000000","576.500000","1145.000000","23.000000","576.500000","576.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2068060.000000","0.000000","2092704.000000","129468.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","197.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","145.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749402.000000",,,,, -"5008.000000","51.530000","5008.000000","51.530000","5008.000000","51.530000","1149.000000","0.000000",,,,,,,,,,,,"5.000000","551.500000","1097.000000","14.000000","551.500000","551.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071144.000000","0.000000","2092704.000000","129468.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","196.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","147.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749422.000000",,,,, -"4624.000000","49.725000","4624.000000","49.725000","4624.000000","49.725000","1052.000000","0.000000",,,,,,,,,,,,"21.000000","2230.500000","4439.000000","44.000000","2230.500000","2230.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071148.000000","0.000000","2092704.000000","129468.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","193.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","149.000000","182.000000","183.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749442.000000",,,,, -"4676.000000","50.470000","4676.000000","50.470000","4676.000000","50.470000","743.000000","0.000000",,,,,,,,,,,,"20.000000","4493.000000","8964.000000","76.000000","4493.000000","4493.000000",,,,,,,,,,,"1132460.000000","1195376.000000","0.000000","0.000000","2071048.000000","0.000000","2092704.000000","129468.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","190.000000","195.000000","206.000000","219.000000","213.000000","0.000000","0.000000","0.000000","151.000000","178.000000","183.000000","203.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749462.000000",,,,, -"5090.000000","58.915000","5090.000000","58.915000","5090.000000","58.915000","1147.000000","0.000000",,,,,,,,,,,,"45.000000","651.500000","1257.000000","26.000000","651.500000","651.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","191.000000","195.000000","208.000000","219.000000","213.000000","0.000000","0.000000","0.000000","153.000000","179.000000","182.000000","205.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749482.000000",,,,, -"4654.000000","56.865000","4654.000000","56.865000","4654.000000","56.865000","1000.000000","0.000000",,,,,,,,,,,,"1523.000000","1798.500000","2072.000000","18.000000","1798.500000","1798.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","191.000000","194.000000","208.000000","219.000000","212.000000","0.000000","0.000000","0.000000","155.000000","182.000000","181.000000","205.000000","219.000000","208.000000","160.000000","6000.000000","0.000000","749502.000000",,,,, -"3573.000000","51.785000","3573.000000","51.785000","3573.000000","51.785000","1791.000000","0.000000",,,,,,,,,,,,"2660.000000","15507.000000","28354.000000","37.000000","15507.000000","15507.000000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","184.000000","192.000000","208.000000","217.000000","212.000000","0.000000","0.000000","0.000000","156.000000","168.000000","179.000000","205.000000","217.000000","208.000000","160.000000","6000.000000","0.000000","749522.000000",,,,, -"4112.000000","58.820000","4112.000000","58.820000","4112.000000","58.820000","914.000000","0.000000",,,,,,,,,,,,"15.000000","465.000000","915.000000","31.000000","465.000000","465.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","177.000000","191.000000","208.000000","205.000000","212.000000","0.000000","0.000000","0.000000","157.000000","157.000000","178.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749542.000000",,,,, -"3809.000000","57.395000","3809.000000","57.395000","3809.000000","57.395000","1231.000000","0.000000",,,,,,,,,,,,"10.000000","397.500000","784.000000","11.000000","397.500000","397.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","174.000000","190.000000","208.000000","204.000000","212.000000","0.000000","0.000000","0.000000","158.000000","144.000000","175.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749562.000000",,,,, -"4371.000000","60.040000","4371.000000","60.040000","4371.000000","60.040000","1233.000000","0.000000",,,,,,,,,,,,"3.000000","650.000000","1297.000000","38.000000","650.000000","650.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","184.000000","189.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","160.000000","154.000000","172.000000","205.000000","200.000000","207.000000","160.000000","6000.000000","0.000000","749582.000000",,,,, -"3595.000000","56.390000","3595.000000","56.390000","3595.000000","56.390000","817.000000","0.000000",,,,,,,,,,,,"5.000000","303.500000","601.000000","19.000000","303.500000","303.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071396.000000","0.000000","2092704.000000","129468.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","179.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","161.000000","146.000000","170.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749602.000000",,,,, -"4116.000000","62.840000","4116.000000","62.840000","4116.000000","62.840000","589.000000","0.000000",,,,,,,,,,,,"2.000000","356.500000","710.000000","17.000000","356.500000","356.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071356.000000","0.000000","2092704.000000","129468.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","180.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","163.000000","150.000000","169.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749622.000000",,,,, -"3382.000000","59.385000","3382.000000","59.385000","3382.000000","59.385000","655.000000","0.000000",,,,,,,,,,,,"5.000000","309.500000","614.000000","32.000000","309.500000","309.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","171.000000","185.000000","208.000000","191.000000","209.000000","0.000000","0.000000","0.000000","164.000000","138.000000","165.000000","205.000000","162.000000","205.000000","160.000000","6000.000000","0.000000","749642.000000",,,,, -"3543.000000","60.145000","3543.000000","60.145000","3543.000000","60.145000","605.000000","0.000000",,,,,,,,,,,,"7.000000","539.500000","1072.000000","27.000000","539.500000","539.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","174.000000","183.000000","208.000000","192.000000","206.000000","0.000000","0.000000","0.000000","165.000000","139.000000","162.000000","205.000000","162.000000","200.000000","160.000000","6000.000000","0.000000","749662.000000",,,,, -"3628.000000","59.045000","3628.000000","59.045000","3628.000000","59.045000","509.000000","0.000000",,,,,,,,,,,,"925.000000","2231.500000","3537.000000","36.000000","2231.500000","2231.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071276.000000","0.000000","2092704.000000","129468.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","182.000000","208.000000","202.000000","206.000000","0.000000","0.000000","0.000000","166.000000","133.000000","158.000000","205.000000","151.000000","200.000000","160.000000","6000.000000","0.000000","749682.000000",,,,, -"3429.000000","58.110000","3429.000000","58.110000","3429.000000","58.110000","657.000000","0.000000",,,,,,,,,,,,"54.000000","511.000000","967.000000","17.000000","511.000000","511.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071500.000000","0.000000","2092704.000000","129468.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","180.000000","182.000000","208.000000","202.000000","205.000000","0.000000","0.000000","0.000000","167.000000","132.000000","154.000000","205.000000","152.000000","196.000000","160.000000","6000.000000","0.000000","749702.000000",,,,, -"3430.000000","58.110000","3430.000000","58.110000","3430.000000","58.110000","626.000000","0.000000",,,,,,,,,,,,"2.000000","397.000000","792.000000","17.000000","397.000000","397.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","177.000000","180.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","131.000000","151.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749722.000000",,,,, -"3539.000000","58.625000","3539.000000","58.625000","3539.000000","58.625000","716.000000","0.000000",,,,,,,,,,,,"5.000000","305.500000","606.000000","12.000000","305.500000","305.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","174.000000","178.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","128.000000","147.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749742.000000",,,,, -"4637.000000","63.785000","4637.000000","63.785000","4637.000000","63.785000","1277.000000","0.000000",,,,,,,,,,,,"6.000000","545.000000","1084.000000","31.000000","545.000000","545.000000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","176.000000","179.000000","208.000000","212.000000","204.000000","0.000000","0.000000","0.000000","169.000000","144.000000","147.000000","205.000000","199.000000","195.000000","160.000000","6000.000000","0.000000","749762.000000",,,,, -"5071.000000","65.825000","5071.000000","65.825000","5071.000000","65.825000","848.000000","0.000000",,,,,,,,,,,,"30.000000","1264.500000","2498.000000","42.000000","1264.500000","1264.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","186.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","162.000000","147.000000","205.000000","210.000000","195.000000","160.000000","6000.000000","0.000000","749782.000000",,,,, -"4446.000000","57.890000","4446.000000","57.890000","4446.000000","57.890000","2008.000000","0.000000",,,,,,,,,,,,"5.000000","449.500000","894.000000","21.000000","449.500000","449.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2071172.000000","0.000000","2092704.000000","129468.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","177.000000","146.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749802.000000",,,,, -"4419.000000","57.760000","4419.000000","57.760000","4419.000000","57.760000","646.000000","0.000000",,,,,,,,,,,,"3.000000","730.500000","1457.000000","30.000000","730.500000","730.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070804.000000","0.000000","2092704.000000","129468.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","181.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","173.000000","148.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749822.000000",,,,, -"4423.000000","57.780000","4423.000000","57.780000","4423.000000","57.780000","1051.000000","0.000000",,,,,,,,,,,,"5983.000000","4288.500000","2592.000000","11.000000","4288.500000","4288.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070584.000000","0.000000","2092704.000000","129468.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","191.000000","181.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","169.000000","171.000000","150.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749842.000000",,,,, -"4272.000000","56.575000","4272.000000","56.575000","4272.000000","56.575000","1508.000000","0.000000",,,,,,,,,,,,"3918.000000","4704.500000","5490.000000","12.000000","4704.500000","4704.500000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","182.000000","180.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","168.000000","165.000000","151.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749862.000000",,,,, -"4565.000000","57.945000","4565.000000","57.945000","4565.000000","57.945000","753.000000","0.000000",,,,,,,,,,,,"1649.000000","5228.000000","8806.000000","36.000000","5228.000000","5228.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071056.000000","0.000000","2092704.000000","129468.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","179.000000","180.000000","208.000000","206.000000","202.000000","0.000000","0.000000","0.000000","169.000000","166.000000","151.000000","205.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","749882.000000",,,,, -"3685.000000","53.810000","3685.000000","53.810000","3685.000000","53.810000","1607.000000","0.000000",,,,,,,,,,,,"4372.000000","7706.000000","11040.000000","23.000000","7706.000000","7706.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2070864.000000","0.000000","2092704.000000","129468.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","181.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","168.000000","155.000000","151.000000","205.000000","179.000000","184.000000","160.000000","6000.000000","0.000000","749902.000000",,,,, -"3936.000000","55.995000","3936.000000","55.995000","3936.000000","55.995000","1110.000000","0.000000",,,,,,,,,,,,"631.000000","3126.500000","5621.000000","30.000000","3126.500000","3126.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070924.000000","0.000000","2092704.000000","129468.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","180.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","167.000000","152.000000","151.000000","205.000000","175.000000","184.000000","160.000000","6000.000000","0.000000","749922.000000",,,,, -"4106.000000","56.795000","4106.000000","56.795000","4106.000000","56.795000","731.000000","0.000000",,,,,,,,,,,,"6712.000000","10478.500000","14244.000000","22.000000","10478.500000","10478.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070904.000000","0.000000","2092704.000000","129468.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","187.000000","171.000000","180.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","167.000000","149.000000","153.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749942.000000",,,,, -"3257.000000","52.805000","3257.000000","52.805000","3257.000000","52.805000","599.000000","0.000000",,,,,,,,,,,,"12746.000000","8306.500000","3866.000000","14.000000","8306.500000","8306.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","150.000000","176.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","166.000000","139.000000","151.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749962.000000",,,,, -"2970.000000","52.955000","2970.000000","52.955000","2970.000000","52.955000","819.000000","0.000000",,,,,,,,,,,,"12855.000000","10446.500000","8037.000000","17.000000","10446.500000","10446.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","184.000000","142.000000","174.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","165.000000","133.000000","151.000000","203.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749982.000000",,,,, -"3689.000000","56.330000","3689.000000","56.330000","3689.000000","56.330000","875.000000","0.000000",,,,,,,,,,,,"10992.000000","9034.000000","7076.000000","17.000000","9034.000000","9034.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","134.000000","171.000000","206.000000","177.000000","202.000000","0.000000","0.000000","0.000000","163.000000","122.000000","151.000000","201.000000","162.000000","187.000000","160.000000","6000.000000","0.000000","750002.000000",,,,, -"4569.000000","60.465000","4569.000000","60.465000","4569.000000","60.465000","1130.000000","0.000000",,,,,,,,,,,,"44.000000","7173.500000","14302.000000","30.000000","7173.500000","7173.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","183.000000","156.000000","172.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","163.000000","140.000000","153.000000","201.000000","173.000000","187.000000","160.000000","6000.000000","0.000000","750022.000000",,,,, -"4555.000000","61.900000","4555.000000","61.900000","4555.000000","61.900000","1350.000000","0.000000",,,,,,,,,,,,"493.000000","2970.500000","5444.000000","20.000000","2970.500000","2970.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070700.000000","0.000000","2092704.000000","129468.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","173.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","162.000000","154.000000","156.000000","201.000000","174.000000","187.000000","160.000000","6000.000000","0.000000","750042.000000",,,,, -"4588.000000","62.055000","4588.000000","62.055000","4588.000000","62.055000","1390.000000","0.000000",,,,,,,,,,,,"545.000000","7811.000000","15075.000000","23.000000","7811.000000","7811.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070744.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","173.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","171.000000","156.000000","201.000000","184.000000","184.000000","160.000000","6000.000000","0.000000","750062.000000",,,,, -"4749.000000","62.815000","4749.000000","62.815000","4749.000000","62.815000","1013.000000","0.000000",,,,,,,,,,,,"486.000000","14987.500000","29488.000000","36.000000","14987.500000","14987.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071120.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","172.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","173.000000","155.000000","200.000000","184.000000","182.000000","160.000000","6000.000000","0.000000","750082.000000",,,,, -"4548.000000","61.870000","4548.000000","61.870000","4548.000000","61.870000","949.000000","0.000000",,,,,,,,,,,,"2061.000000","8930.000000","15797.000000","37.000000","8930.000000","8930.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070816.000000","0.000000","2092704.000000","129468.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","171.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","161.000000","176.000000","156.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750102.000000",,,,, -"3011.000000","54.645000","3011.000000","54.645000","3011.000000","54.645000","1760.000000","0.000000",,,,,,,,,,,,"20331.000000","10637.500000","942.000000","5.000000","10637.500000","10637.500000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070796.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","168.000000","167.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","160.000000","155.000000","153.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750122.000000",,,,, -"3525.000000","57.060000","3525.000000","57.060000","3525.000000","57.060000","1146.000000","0.000000",,,,,,,,,,,,"10774.000000","8118.000000","5461.000000","17.000000","8118.000000","8118.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2071236.000000","0.000000","2092704.000000","129468.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","151.000000","164.000000","206.000000","209.000000","196.000000","0.000000","0.000000","0.000000","159.000000","141.000000","149.000000","200.000000","207.000000","181.000000","160.000000","6000.000000","0.000000","750142.000000",,,,, -"3642.000000","55.610000","3642.000000","55.610000","3642.000000","55.610000","1129.000000","0.000000",,,,,,,,,,,,"10114.000000","8836.500000","7559.000000","23.000000","8836.500000","8836.500000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071088.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","138.000000","163.000000","206.000000","173.000000","196.000000","0.000000","0.000000","0.000000","158.000000","126.000000","148.000000","199.000000","151.000000","181.000000","160.000000","6000.000000","0.000000","750162.000000",,,,, -"3089.000000","53.010000","3089.000000","53.010000","3089.000000","53.010000","822.000000","0.000000",,,,,,,,,,,,"15789.000000","8326.000000","862.000000","3.000000","8326.000000","8326.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2070824.000000","0.000000","2092704.000000","129468.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","160.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","156.000000","128.000000","145.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750182.000000",,,,, -"3215.000000","53.605000","3215.000000","53.605000","3215.000000","53.605000","1415.000000","0.000000",,,,,,,,,,,,"17195.000000","8894.000000","592.000000","3.000000","8894.000000","8894.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071004.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","141.000000","157.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","155.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750202.000000",,,,, -"3409.000000","54.515000","3409.000000","54.515000","3409.000000","54.515000","1688.000000","0.000000",,,,,,,,,,,,"16558.000000","12636.500000","8715.000000","20.000000","12636.500000","12636.500000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070992.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","140.000000","155.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","154.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750222.000000",,,,, -"4152.000000","58.005000","4152.000000","58.005000","4152.000000","58.005000","900.000000","0.000000",,,,,,,,,,,,"9129.000000","7963.000000","6797.000000","11.000000","7963.000000","7963.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","146.000000","155.000000","204.000000","173.000000","194.000000","0.000000","0.000000","0.000000","153.000000","133.000000","142.000000","194.000000","166.000000","179.000000","160.000000","6000.000000","0.000000","750242.000000",,,,, -"5214.000000","63.000000","5214.000000","63.000000","5214.000000","63.000000","1238.000000","0.000000",,,,,,,,,,,,"14.000000","440.000000","865.000000","6.000000","440.000000","440.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070748.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","165.000000","160.000000","204.000000","211.000000","196.000000","0.000000","0.000000","0.000000","153.000000","155.000000","147.000000","194.000000","209.000000","182.000000","160.000000","6000.000000","0.000000","750262.000000",,,,, -"5252.000000","66.675000","5252.000000","66.675000","5252.000000","66.675000","1677.000000","0.000000",,,,,,,,,,,,"5.000000","335.500000","666.000000","19.000000","335.500000","335.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070828.000000","0.000000","2092704.000000","129468.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","185.000000","164.000000","204.000000","212.000000","205.000000","0.000000","0.000000","0.000000","154.000000","178.000000","152.000000","196.000000","210.000000","198.000000","160.000000","6000.000000","0.000000","750282.000000",,,,, -"5041.000000","65.685000","5041.000000","65.685000","5041.000000","65.685000","1004.000000","0.000000",,,,,,,,,,,,"17.000000","427.500000","838.000000","13.000000","427.500000","427.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","202.000000","168.000000","204.000000","212.000000","206.000000","0.000000","0.000000","0.000000","154.000000","194.000000","156.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750302.000000",,,,, -"4679.000000","63.985000","4679.000000","63.985000","4679.000000","63.985000","1045.000000","0.000000",,,,,,,,,,,,"8.000000","561.000000","1113.000000","23.000000","561.000000","561.000000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070712.000000","0.000000","2092704.000000","129468.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","199.000000","168.000000","204.000000","212.000000","207.000000","0.000000","0.000000","0.000000","154.000000","191.000000","157.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750322.000000",,,,, -"5233.000000","63.585000","5233.000000","63.585000","5233.000000","63.585000","929.000000","0.000000",,,,,,,,,,,,"27.000000","565.500000","1103.000000","15.000000","565.500000","565.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","197.000000","169.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","154.000000","186.000000","158.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750342.000000",,,,, -"1309.000000","45.145000","1309.000000","45.145000","1309.000000","45.145000","615.000000","0.000000",,,,,,,,,,,,"19203.000000","9812.000000","420.000000","3.000000","9812.000000","9812.000000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","151.000000","161.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","151.000000","142.000000","150.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750362.000000",,,,, -"1164.000000","44.465000","1164.000000","44.465000","1164.000000","44.465000","628.000000","0.000000",,,,,,,,,,,,"14997.000000","8677.500000","2358.000000","5.000000","8677.500000","8677.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070600.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","108.000000","153.000000","204.000000","214.000000","207.000000","0.000000","0.000000","0.000000","148.000000","101.000000","143.000000","196.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750382.000000",,,,, -"1236.000000","46.805000","1236.000000","46.805000","1236.000000","46.805000","1178.000000","0.000000",,,,,,,,,,,,"17245.000000","13168.500000","9091.000000","17.000000","13168.500000","13168.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","62.000000","144.000000","204.000000","201.000000","207.000000","0.000000","0.000000","0.000000","146.000000","58.000000","135.000000","196.000000","198.000000","206.000000","160.000000","6000.000000","0.000000","750402.000000",,,,, -"933.000000","45.380000","933.000000","45.380000","933.000000","45.380000","641.000000","0.000000",,,,,,,,,,,,"7575.000000","6296.500000","4979.000000","10.000000","6296.500000","6296.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070876.000000","0.000000","2092704.000000","129468.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","38.000000",,,,,,,,,,,"0.000000","162.000000","46.000000","137.000000","204.000000","68.000000","207.000000","0.000000","0.000000","0.000000","143.000000","42.000000","128.000000","196.000000","67.000000","206.000000","160.000000","6000.000000","0.000000","750422.000000",,,,, -"591.000000","43.770000","591.000000","43.770000","591.000000","43.770000","599.000000","0.000000",,,,,,,,,,,,"23649.000000","22438.500000","21225.000000","13.000000","22438.500000","22438.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070980.000000","0.000000","2092704.000000","129468.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","159.000000","39.000000","130.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","140.000000","36.000000","122.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750442.000000",,,,, -"588.000000","43.255000","588.000000","43.255000","588.000000","43.255000","688.000000","0.000000",,,,,,,,,,,,"19488.000000","20747.000000","22006.000000","16.000000","20747.000000","20747.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071128.000000","0.000000","2092704.000000","129468.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","32.000000","123.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","138.000000","29.000000","115.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750462.000000",,,,, -"648.000000","43.540000","648.000000","43.540000","648.000000","43.540000","706.000000","0.000000",,,,,,,,,,,,"6846.000000","7643.000000","8411.000000","18.000000","7643.000000","7643.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","151.000000","24.000000","114.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","134.000000","23.000000","107.000000","191.000000","30.000000","206.000000","160.000000","6000.000000","0.000000","750482.000000",,,,, -"665.000000","43.620000","665.000000","43.620000","665.000000","43.620000","1234.000000","0.000000",,,,,,,,,,,,"467.000000","440.000000","367.000000","2.000000","440.000000","440.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071224.000000","0.000000","2092704.000000","129468.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"32.000000","14.000000",,,,,,,,,,,"0.000000","148.000000","24.000000","107.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","132.000000","23.000000","101.000000","191.000000","31.000000","206.000000","160.000000","6000.000000","0.000000","750502.000000",,,,, -"1108.000000","45.700000","1108.000000","45.700000","1108.000000","45.700000","589.000000","0.000000",,,,,,,,,,,,"94.000000","6456.000000","10816.000000","39.000000","6456.000000","6456.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","0.000000","0.000000",,,,,,"1982.000000","18.000000",,,,,,,,,,,"0.000000","146.000000","34.000000","102.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","130.000000","31.000000","96.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750522.000000",,,,, -"802.000000","44.265000","802.000000","44.265000","802.000000","44.265000","355.000000","0.000000",,,,,,,,,,,,"41.000000","319.000000","594.000000","3.000000","319.000000","319.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071320.000000","0.000000","2092704.000000","129468.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","142.000000","34.000000","91.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","127.000000","32.000000","87.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750542.000000",,,,, -"564.000000","43.145000","564.000000","43.145000","564.000000","43.145000","348.000000","0.000000",,,,,,,,,,,,"18.000000","146.500000","275.000000","2.000000","146.500000","146.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071080.000000","0.000000","2092704.000000","129468.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","34.000000","81.000000","202.000000","77.000000","206.000000","0.000000","0.000000","0.000000","125.000000","32.000000","76.000000","191.000000","71.000000","198.000000","160.000000","6000.000000","0.000000","750562.000000",,,,, -"429.000000","43.010000","429.000000","43.010000","429.000000","43.010000","433.000000","0.000000",,,,,,,,,,,,"5.000000","98.000000","190.000000","2.000000","98.000000","98.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2071152.000000","0.000000","2092704.000000","129468.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","22.000000","69.000000","202.000000","49.000000","201.000000","0.000000","0.000000","0.000000","123.000000","22.000000","65.000000","191.000000","49.000000","197.000000","160.000000","6000.000000","0.000000","750582.000000",,,,, -"238.000000","42.110000","238.000000","42.110000","238.000000","42.110000","329.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070976.000000","0.000000","2092704.000000","129468.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","15.000000","54.000000","201.000000","32.000000","190.000000","0.000000","0.000000","0.000000","119.000000","15.000000","51.000000","191.000000","32.000000","173.000000","160.000000","6000.000000","0.000000","750602.000000",,,,, -"223.000000","42.045000","223.000000","42.045000","223.000000","42.045000","458.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","3.000000","23.500000","23.500000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070412.000000","0.000000","2092704.000000","129468.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","11.000000","43.000000","201.000000","26.000000","84.000000","0.000000","0.000000","0.000000","117.000000","11.000000","40.000000","191.000000","25.000000","82.000000","160.000000","6000.000000","0.000000","750622.000000",,,,, -"284.000000","43.330000","284.000000","43.330000","284.000000","43.330000","436.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","3.000000","53.000000","53.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2070144.000000","0.000000","2092704.000000","129468.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","9.000000","32.000000","201.000000","13.000000","53.000000","0.000000","0.000000","0.000000","115.000000","9.000000","30.000000","191.000000","13.000000","52.000000","160.000000","6000.000000","0.000000","750642.000000",,,,, -"222.000000","43.040000","222.000000","43.040000","222.000000","43.040000","369.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069736.000000","0.000000","2092704.000000","129468.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","9.000000","26.000000","201.000000","13.000000","51.000000","0.000000","0.000000","0.000000","110.000000","9.000000","24.000000","188.000000","13.000000","49.000000","160.000000","6000.000000","0.000000","750662.000000",,,,, -"277.000000","43.295000","277.000000","43.295000","277.000000","43.295000","746.000000","0.000000",,,,,,,,,,,,"0.000000","53.500000","107.000000","8.000000","53.500000","53.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069708.000000","0.000000","2092704.000000","129468.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","10.000000","24.000000","199.000000","13.000000","49.000000","0.000000","0.000000","0.000000","107.000000","9.000000","22.000000","187.000000","13.000000","46.000000","160.000000","6000.000000","0.000000","750682.000000",,,,, -"595.000000","39.790000","595.000000","39.790000","595.000000","39.790000","1514.000000","0.000000",,,,,,,,,,,,"10.000000","205.000000","394.000000","1.000000","205.000000","205.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069492.000000","0.000000","2092704.000000","129468.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","113.000000","14.000000","22.000000","199.000000","53.000000","49.000000","0.000000","0.000000","0.000000","104.000000","13.000000","21.000000","187.000000","51.000000","40.000000","160.000000","6000.000000","0.000000","750702.000000",,,,, -"969.000000","41.550000","969.000000","41.550000","969.000000","41.550000","1975.000000","0.000000",,,,,,,,,,,,"72.000000","500.000000","918.000000","3.000000","500.000000","500.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069996.000000","0.000000","2092704.000000","129468.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"5.000000","5.000000",,,,,,,,,,,"0.000000","109.000000","25.000000","21.000000","199.000000","67.000000","49.000000","0.000000","0.000000","0.000000","100.000000","22.000000","20.000000","187.000000","58.000000","40.000000","160.000000","6000.000000","0.000000","750722.000000",,,,, -"1237.000000","42.805000","1237.000000","42.805000","1237.000000","42.805000","2987.000000","0.000000",,,,,,,,,,,,"3.000000","4383.500000","8711.000000","26.000000","4383.500000","4383.500000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"36.000000","16.000000",,,,,,,,,,,"0.000000","106.000000","38.000000","23.000000","198.000000","67.000000","53.000000","0.000000","0.000000","0.000000","97.000000","32.000000","21.000000","182.000000","63.000000","49.000000","160.000000","6000.000000","0.000000","750742.000000",,,,, -"672.000000","33.650000","672.000000","33.650000","672.000000","33.650000","1739.000000","0.000000",,,,,,,,,,,,"2.000000","350.500000","699.000000","7.000000","350.500000","350.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","41.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","95.000000","35.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750762.000000",,,,, -"519.000000","32.935000","519.000000","32.935000","519.000000","32.935000","1160.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","220.000000","3.000000","111.000000","111.000000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","99.000000","35.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","91.000000","31.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750782.000000",,,,, -"600.000000","33.315000","600.000000","33.315000","600.000000","33.315000","1210.000000","0.000000",,,,,,,,,,,,"0.000000","135.500000","271.000000","5.000000","135.500000","135.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070648.000000","0.000000","2092704.000000","129468.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","23.000000","23.000000","198.000000","65.000000","61.000000","0.000000","0.000000","0.000000","89.000000","22.000000","21.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750802.000000",,,,, -"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","884.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2070216.000000","0.000000","2092704.000000","129468.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","18.000000","21.000000","198.000000","36.000000","53.000000","0.000000","0.000000","0.000000","86.000000","17.000000","19.000000","182.000000","36.000000","49.000000","160.000000","6000.000000","0.000000","750822.000000",,,,, -"261.000000","27.725000","261.000000","27.725000","261.000000","27.725000","598.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","4.000000","61.000000","61.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069852.000000","0.000000","2092704.000000","129468.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","14.000000","20.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","82.000000","13.000000","18.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750842.000000",,,,, -"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","548.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","2.000000","24.500000","24.500000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069396.000000","0.000000","2092704.000000","129468.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","11.000000","19.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","80.000000","11.000000","17.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750862.000000",,,,, -"259.000000","24.210000","259.000000","24.210000","259.000000","24.210000","524.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068572.000000","0.000000","2092704.000000","129468.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","84.000000","9.000000","18.000000","196.000000","13.000000","53.000000","0.000000","0.000000","0.000000","78.000000","9.000000","17.000000","181.000000","13.000000","36.000000","160.000000","6000.000000","0.000000","750882.000000",,,,, -"207.000000","23.965000","207.000000","23.965000","207.000000","23.965000","587.000000","0.000000",,,,,,,,,,,,"0.000000","25.500000","51.000000","2.000000","25.500000","25.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","9.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","75.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750902.000000",,,,, -"215.000000","24.005000","215.000000","24.005000","215.000000","24.005000","730.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","8.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","71.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750922.000000",,,,, -"248.000000","22.160000","248.000000","22.160000","248.000000","22.160000","859.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","1.000000","46.000000","46.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","8.000000","18.000000","194.000000","13.000000","53.000000","0.000000","0.000000","0.000000","68.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750942.000000",,,,, -"232.000000","22.085000","232.000000","22.085000","232.000000","22.085000","530.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","1.000000","12.500000","12.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067284.000000","0.000000","2092704.000000","129468.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","9.000000","18.000000","192.000000","13.000000","53.000000","0.000000","0.000000","0.000000","64.000000","8.000000","16.000000","179.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750962.000000",,,,, -"225.000000","22.050000","225.000000","22.050000","225.000000","22.050000","1024.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2066820.000000","0.000000","2092704.000000","129468.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","65.000000","9.000000","18.000000","190.000000","13.000000","53.000000","0.000000","0.000000","0.000000","60.000000","8.000000","16.000000","173.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750982.000000",,,,, -"361.000000","19.690000","361.000000","19.690000","361.000000","19.690000","716.000000","0.000000",,,,,,,,,,,,"0.000000","152.000000","302.000000","3.000000","152.000000","152.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2066352.000000","0.000000","2092704.000000","129468.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","10.000000","17.000000","187.000000","17.000000","40.000000","0.000000","0.000000","0.000000","57.000000","9.000000","16.000000","168.000000","16.000000","36.000000","160.000000","6000.000000","0.000000","751002.000000",,,,, -"653.000000","21.065000","653.000000","21.065000","653.000000","21.065000","1031.000000","0.000000",,,,,,,,,,,,"0.000000","168.500000","332.000000","1.000000","168.500000","168.500000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065944.000000","0.000000","2092704.000000","129468.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","58.000000","16.000000","16.000000","187.000000","50.000000","40.000000","0.000000","0.000000","0.000000","54.000000","14.000000","15.000000","168.000000","37.000000","36.000000","160.000000","6000.000000","0.000000","751022.000000",,,,, -"492.000000","20.305000","492.000000","20.305000","492.000000","20.305000","758.000000","0.000000",,,,,,,,,,,,"2.000000","156.000000","308.000000","4.000000","156.000000","156.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065588.000000","0.000000","2092704.000000","129468.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","56.000000","21.000000","14.000000","187.000000","50.000000","34.000000","0.000000","0.000000","0.000000","52.000000","18.000000","14.000000","168.000000","41.000000","34.000000","160.000000","6000.000000","0.000000","751042.000000",,,,, -"641.000000","18.005000","641.000000","18.005000","641.000000","18.005000","837.000000","0.000000",,,,,,,,,,,,"13.000000","135.500000","258.000000","8.000000","135.500000","135.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2065076.000000","0.000000","2092704.000000","129468.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","22.000000","13.000000","187.000000","50.000000","31.000000","0.000000","0.000000","0.000000","50.000000","20.000000","13.000000","168.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","751062.000000",,,,, -"396.000000","16.855000","396.000000","16.855000","396.000000","16.855000","745.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","4.000000","76.500000","76.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064648.000000","0.000000","2092704.000000","129468.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","20.000000","14.000000","187.000000","42.000000","29.000000","0.000000","0.000000","0.000000","47.000000","19.000000","13.000000","168.000000","41.000000","29.000000","160.000000","6000.000000","0.000000","751082.000000",,,,, -"280.000000","16.310000","280.000000","16.310000","280.000000","16.310000","723.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","2.000000","46.000000","46.000000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064008.000000","0.000000","2092704.000000","129468.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","48.000000","17.000000","13.000000","187.000000","35.000000","29.000000","0.000000","0.000000","0.000000","45.000000","16.000000","12.000000","168.000000","35.000000","29.000000","160.000000","6000.000000","0.000000","751102.000000",,,,, -"224.000000","15.045000","224.000000","15.045000","224.000000","15.045000","570.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","3.000000","35.500000","35.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2064004.000000","0.000000","2092704.000000","129468.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","45.000000","13.000000","13.000000","187.000000","29.000000","29.000000","0.000000","0.000000","0.000000","42.000000","13.000000","12.000000","168.000000","29.000000","28.000000","160.000000","6000.000000","0.000000","751122.000000",,,,, -"211.000000","14.990000","211.000000","14.990000","211.000000","14.990000","622.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","2.000000","19.500000","19.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2063532.000000","0.000000","2092704.000000","129468.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","9.000000","12.000000","187.000000","16.000000","29.000000","0.000000","0.000000","0.000000","39.000000","8.000000","12.000000","168.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","751142.000000",,,,, -"226.000000","15.055000","226.000000","15.055000","226.000000","15.055000","462.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","1.000000","27.500000","27.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2062560.000000","0.000000","2092704.000000","129468.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","12.000000","84.000000","9.000000","29.000000","0.000000","0.000000","0.000000","35.000000","8.000000","12.000000","82.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751162.000000",,,,, -"224.000000","14.045000","224.000000","14.045000","224.000000","14.045000","595.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","0.000000","21.000000","21.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061992.000000","0.000000","2092704.000000","129468.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","8.000000","12.000000","67.000000","9.000000","29.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","63.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751182.000000",,,,, -"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","475.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061744.000000","0.000000","2092704.000000","129468.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","12.000000","53.000000","9.000000","29.000000","0.000000","0.000000","0.000000","26.000000","8.000000","12.000000","51.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751202.000000",,,,, -"213.000000","13.995000","213.000000","13.995000","213.000000","13.995000","636.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","4.000000","22.500000","22.500000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061344.000000","0.000000","2092704.000000","129468.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","12.000000","51.000000","9.000000","29.000000","0.000000","0.000000","0.000000","23.000000","8.000000","12.000000","46.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751222.000000",,,,, -"232.000000","12.085000","232.000000","12.085000","232.000000","12.085000","496.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2060732.000000","0.000000","2092704.000000","129468.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","8.000000","12.000000","49.000000","9.000000","29.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751242.000000",,,,, -"234.000000","12.095000","234.000000","12.095000","234.000000","12.095000","432.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","1.000000","15.000000","15.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2059256.000000","0.000000","2092704.000000","129468.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","12.000000","45.000000","9.000000","29.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751262.000000",,,,, -"320.000000","12.500000","320.000000","12.500000","320.000000","12.500000","784.000000","0.000000",,,,,,,,,,,,"7.000000","105.500000","203.000000","2.000000","105.500000","105.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2058700.000000","0.000000","2092704.000000","129468.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","9.000000","12.000000","44.000000","17.000000","29.000000","0.000000","0.000000","0.000000","17.000000","9.000000","12.000000","37.000000","16.000000","28.000000","160.000000","6000.000000","0.000000","751282.000000",,,,, -"528.000000","12.475000","528.000000","12.475000","528.000000","12.475000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","169.000000","333.000000","3.000000","169.000000","169.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058192.000000","0.000000","2092704.000000","129468.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","14.000000","13.000000","40.000000","33.000000","29.000000","0.000000","0.000000","0.000000","16.000000","13.000000","12.000000","36.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","751302.000000",,,,, -"1131.000000","15.310000","1131.000000","15.310000","1131.000000","15.310000","1405.000000","0.000000",,,,,,,,,,,,"5.000000","527.000000","1013.000000","4.000000","527.000000","527.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058484.000000","0.000000","2092704.000000","129468.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","0.000000","0.000000",,,,,,"23.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","26.000000","14.000000","38.000000","73.000000","35.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","36.000000","63.000000","32.000000","160.000000","6000.000000","0.000000","751322.000000",,,,, -"942.000000","14.420000","942.000000","14.420000","942.000000","14.420000","1286.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4767.000000","56.000000","2918.000000","2918.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2060328.000000","0.000000","2092704.000000","129468.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","0.000000","0.000000",,,,,,"1046.000000","16.000000",,,,,,,,,,,"0.000000","18.000000","37.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","17.000000","33.000000","15.000000","37.000000","73.000000","35.000000","160.000000","6000.000000","0.000000","751342.000000",,,,, -"471.000000","12.210000","471.000000","12.210000","471.000000","12.210000","1366.000000","0.000000",,,,,,,,,,,,"5.000000","182.500000","358.000000","4.000000","182.500000","182.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060600.000000","0.000000","2092704.000000","129468.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","36.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","31.000000","15.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751362.000000",,,,, -"262.000000","11.230000","262.000000","11.230000","262.000000","11.230000","578.000000","0.000000",,,,,,,,,,,,"0.000000","41.500000","83.000000","6.000000","41.500000","41.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060760.000000","0.000000","2092704.000000","129468.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","24.000000","15.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","21.000000","14.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751382.000000",,,,, -"224.000000","11.045000","224.000000","11.045000","224.000000","11.045000","870.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","2.000000","39.000000","39.000000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060868.000000","0.000000","2092704.000000","129468.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","15.000000","40.000000","30.000000","35.000000","0.000000","0.000000","0.000000","16.000000","12.000000","14.000000","37.000000","29.000000","32.000000","160.000000","6000.000000","0.000000","751402.000000",,,,, -"254.000000","10.690000","254.000000","10.690000","254.000000","10.690000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","56.500000","113.000000","1.000000","56.500000","56.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2060280.000000","0.000000","2092704.000000","129468.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","10.000000","15.000000","36.000000","13.000000","35.000000","0.000000","0.000000","0.000000","15.000000","9.000000","14.000000","35.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751422.000000",,,,, -"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","2.000000","33.000000","33.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059824.000000","0.000000","2092704.000000","129468.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751442.000000",,,,, -"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","747.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","7.000000","11.000000","11.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059988.000000","0.000000","2092704.000000","129468.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751462.000000",,,,, -"266.000000","13.750000","266.000000","13.750000","266.000000","13.750000","484.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059428.000000","0.000000","2092704.000000","129468.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751482.000000",,,,, -"222.000000","13.545000","222.000000","13.545000","222.000000","13.545000","715.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","5.000000","24.000000","24.000000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059264.000000","0.000000","2092704.000000","129468.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751502.000000",,,,, -"218.000000","13.525000","218.000000","13.525000","218.000000","13.525000","891.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","4.000000","26.500000","26.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059588.000000","0.000000","2092704.000000","129468.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751522.000000",,,,, -"260.000000","11.715000","260.000000","11.715000","260.000000","11.715000","891.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059012.000000","0.000000","2092704.000000","129468.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751542.000000",,,,, -"587.000000","13.255000","587.000000","13.255000","587.000000","13.255000","1003.000000","0.000000",,,,,,,,,,,,"18.000000","310.000000","590.000000","1.000000","310.000000","310.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2058464.000000","0.000000","2092704.000000","129468.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","0.000000","0.000000",,,,,,"5.000000","6.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","35.000000","40.000000","40.000000","0.000000","0.000000","0.000000","14.000000","12.000000","15.000000","32.000000","32.000000","32.000000","160.000000","6000.000000","0.000000","751562.000000",,,,, -"600.000000","13.315000","600.000000","13.315000","600.000000","13.315000","679.000000","0.000000",,,,,,,,,,,,"146.000000","253.000000","356.000000","3.000000","253.000000","253.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059204.000000","0.000000","2092704.000000","129468.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","18.000000","36.000000","61.000000","43.000000","0.000000","0.000000","0.000000","15.000000","18.000000","16.000000","34.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751582.000000",,,,, -"253.000000","9.680000","253.000000","9.680000","253.000000","9.680000","957.000000","0.000000",,,,,,,,,,,,"32.000000","81.000000","130.000000","2.000000","81.000000","81.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058552.000000","0.000000","2092704.000000","129468.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","17.000000","35.000000","61.000000","43.000000","0.000000","0.000000","0.000000","14.000000","18.000000","15.000000","32.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751602.000000",,,,, -"209.000000","9.475000","209.000000","9.475000","209.000000","9.475000","1053.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","17.000000","31.500000","31.500000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058992.000000","0.000000","2092704.000000","129468.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","15.000000","14.000000","35.000000","61.000000","30.000000","0.000000","0.000000","0.000000","14.000000","13.000000","13.000000","32.000000","50.000000","29.000000","160.000000","6000.000000","0.000000","751622.000000",,,,, -"223.000000","9.540000","223.000000","9.540000","223.000000","9.540000","668.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2059140.000000","0.000000","2092704.000000","129468.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","31.000000","14.000000","18.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","29.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","751642.000000",,,,, -"253.000000","9.685000","253.000000","9.685000","253.000000","9.685000","926.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","3.000000","54.000000","54.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058528.000000","0.000000","2092704.000000","129468.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","29.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751662.000000",,,,, -"212.000000","9.990000","212.000000","9.990000","212.000000","9.990000","784.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058204.000000","0.000000","2092704.000000","129468.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751682.000000",,,,, -"269.000000","10.260000","269.000000","10.260000","269.000000","10.260000","1187.000000","0.000000",,,,,,,,,,,,"673.000000","369.000000","62.000000","5.000000","369.000000","369.000000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058060.000000","0.000000","2092704.000000","129468.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","28.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751702.000000",,,,, -"252.000000","10.180000","252.000000","10.180000","252.000000","10.180000","1539.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","3.000000","76.500000","76.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2057700.000000","0.000000","2092704.000000","129468.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751722.000000",,,,, -"230.000000","10.575000","230.000000","10.575000","230.000000","10.575000","737.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","3.000000","13.500000","13.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059248.000000","0.000000","2092704.000000","129468.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751742.000000",,,,, -"240.000000","10.620000","240.000000","10.620000","240.000000","10.620000","878.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059584.000000","0.000000","2092704.000000","129468.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751762.000000",,,,, -"571.000000","12.175000","571.000000","12.175000","571.000000","12.175000","1123.000000","0.000000",,,,,,,,,,,,"2.000000","147.000000","291.000000","2.000000","147.000000","147.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059724.000000","0.000000","2092704.000000","129468.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","15.000000","160.000000","6000.000000","0.000000","751782.000000",,,,, -"295.000000","9.380000","295.000000","9.380000","295.000000","9.380000","944.000000","0.000000",,,,,,,,,,,,"0.000000","96.000000","192.000000","4.000000","96.000000","96.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2058560.000000","0.000000","2092704.000000","129468.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751802.000000",,,,, -"232.000000","9.085000","232.000000","9.085000","232.000000","9.085000","817.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","3.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2057276.000000","0.000000","2092704.000000","129468.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751822.000000",,,,, -"260.000000","9.215000","260.000000","9.215000","260.000000","9.215000","1306.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","1.000000","40.500000","40.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2056828.000000","0.000000","2092704.000000","129468.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","29.000000","18.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","28.000000","17.000000","17.000000","160.000000","6000.000000","0.000000","751842.000000",,,,, -"219.000000","9.020000","219.000000","9.020000","219.000000","9.020000","1055.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056272.000000","0.000000","2092704.000000","129468.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751862.000000",,,,, -"279.000000","9.305000","279.000000","9.305000","279.000000","9.305000","665.000000","0.000000",,,,,,,,,,,,"0.000000","48.000000","96.000000","4.000000","48.000000","48.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056972.000000","0.000000","2092704.000000","129468.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751883.000000",,,,, -"188.000000","8.880000","188.000000","8.880000","188.000000","8.880000","1030.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","3.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056552.000000","0.000000","2092704.000000","129468.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751902.000000",,,,, -"227.000000","10.060000","227.000000","10.060000","227.000000","10.060000","850.000000","0.000000",,,,,,,,,,,,"1.000000","38.000000","74.000000","1.000000","38.000000","38.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2053924.000000","0.000000","2092704.000000","129468.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","22.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751922.000000",,,,, -"213.000000","9.995000","213.000000","9.995000","213.000000","9.995000","880.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2052348.000000","0.000000","2092704.000000","129468.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","22.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","18.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751942.000000",,,,, -"275.000000","10.285000","275.000000","10.285000","275.000000","10.285000","573.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","1.000000","58.000000","58.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2051868.000000","0.000000","2092704.000000","129468.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","17.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751962.000000",,,,, -"286.000000","9.340000","286.000000","9.340000","286.000000","9.340000","609.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","2.000000","71.000000","71.000000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2048948.000000","0.000000","2092704.000000","129468.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","17.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","751982.000000",,,,, -"631.000000","10.960000","631.000000","10.960000","631.000000","10.960000","834.000000","0.000000",,,,,,,,,,,,"1002.000000","688.500000","369.000000","2.000000","688.500000","688.500000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2049356.000000","0.000000","2092704.000000","129468.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","46.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","17.000000","44.000000","14.000000","160.000000","6000.000000","0.000000","752002.000000",,,,, -"675.000000","11.665000","675.000000","11.665000","675.000000","11.665000","771.000000","0.000000",,,,,,,,,,,,"1553.000000","819.000000","83.000000","1.000000","819.000000","819.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049884.000000","0.000000","2092704.000000","129468.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","20.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752022.000000",,,,, -"226.000000","11.560000","226.000000","11.560000","226.000000","11.560000","679.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","3.000000","71.500000","71.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2051604.000000","0.000000","2092704.000000","129468.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752042.000000",,,,, -"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","570.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","1.000000","31.000000","31.000000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2049544.000000","0.000000","2092704.000000","129468.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","22.000000","38.000000","21.000000","0.000000","0.000000","0.000000","12.000000","14.000000","12.000000","21.000000","37.000000","21.000000","160.000000","6000.000000","0.000000","752062.000000",,,,, -"271.000000","11.770000","271.000000","11.770000","271.000000","11.770000","574.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","3.000000","64.500000","64.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2048892.000000","0.000000","2092704.000000","129468.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","17.000000","160.000000","6000.000000","0.000000","752082.000000",,,,, -"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","517.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752102.000000",,,,, -"240.000000","11.625000","240.000000","11.625000","240.000000","11.625000","646.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2047320.000000","0.000000","2092704.000000","129468.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752122.000000",,,,, -"287.000000","11.840000","287.000000","11.840000","287.000000","11.840000","607.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","3.000000","66.500000","66.500000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046732.000000","0.000000","2092704.000000","129468.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752142.000000",,,,, -"227.000000","10.560000","227.000000","10.560000","227.000000","10.560000","611.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","2.000000","12.500000","12.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2045920.000000","0.000000","2092704.000000","129468.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752162.000000",,,,, -"246.000000","10.650000","246.000000","10.650000","246.000000","10.650000","505.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2043404.000000","0.000000","2092704.000000","129468.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752182.000000",,,,, -"411.000000","11.425000","411.000000","11.425000","411.000000","11.425000","786.000000","0.000000",,,,,,,,,,,,"6.000000","129.500000","253.000000","2.000000","129.500000","129.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2042844.000000","0.000000","2092704.000000","129468.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","11.000000","18.000000","15.000000","15.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","17.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752202.000000",,,,, -"720.000000","13.375000","720.000000","13.375000","720.000000","13.375000","583.000000","0.000000",,,,,,,,,,,,"0.000000","161.500000","323.000000","4.000000","161.500000","161.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2043112.000000","0.000000","2092704.000000","129468.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","13.000000","18.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","16.000000","12.000000","17.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752222.000000",,,,, -"280.000000","11.310000","280.000000","11.310000","280.000000","11.310000","466.000000","0.000000",,,,,,,,,,,,"0.000000","91.500000","182.000000","4.000000","91.500000","91.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2042328.000000","0.000000","2092704.000000","129468.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","17.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","17.000000","13.000000","15.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752242.000000",,,,, -"794.000000","13.725000","794.000000","13.725000","794.000000","13.725000","1116.000000","0.000000",,,,,,,,,,,,"425.000000","432.000000","438.000000","2.000000","432.000000","432.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2041820.000000","0.000000","2092704.000000","129468.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","14.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","22.000000","14.000000","16.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752262.000000",,,,, -"426.000000","10.000000","426.000000","10.000000","426.000000","10.000000","656.000000","0.000000",,,,,,,,,,,,"0.000000","87.000000","173.000000","5.000000","87.000000","87.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2041608.000000","0.000000","2092704.000000","129468.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","15.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","14.000000","17.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752282.000000",,,,, -"593.000000","10.785000","593.000000","10.785000","593.000000","10.785000","657.000000","0.000000",,,,,,,,,,,,"3.000000","174.500000","345.000000","2.000000","174.500000","174.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042416.000000","0.000000","2092704.000000","129468.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","24.000000","15.000000","19.000000","64.000000","32.000000","0.000000","0.000000","0.000000","12.000000","22.000000","14.000000","18.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752302.000000",,,,, -"299.000000","9.400000","299.000000","9.400000","299.000000","9.400000","804.000000","0.000000",,,,,,,,,,,,"1.000000","98.000000","195.000000","33.000000","98.000000","98.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042184.000000","0.000000","2092704.000000","129468.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","16.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752322.000000",,,,, -"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","1173.000000","0.000000",,,,,,,,,,,,"0.000000","47.000000","94.000000","7.000000","47.000000","47.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044708.000000","0.000000","2092704.000000","129468.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","14.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752342.000000",,,,, -"209.000000","8.475000","209.000000","8.475000","209.000000","8.475000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","4.000000","22.000000","22.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2046268.000000","0.000000","2092704.000000","129468.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","14.000000","19.000000","16.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752362.000000",,,,, -"250.000000","8.670000","250.000000","8.670000","250.000000","8.670000","1249.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","7.000000","58.000000","58.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045732.000000","0.000000","2092704.000000","129468.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752382.000000",,,,, -"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","1036.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","4.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2043984.000000","0.000000","2092704.000000","129468.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752402.000000",,,,, -"216.000000","8.510000","216.000000","8.510000","216.000000","8.510000","732.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041524.000000","0.000000","2092704.000000","129468.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752422.000000",,,,, -"263.000000","8.730000","263.000000","8.730000","263.000000","8.730000","1040.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","3.000000","61.500000","61.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041052.000000","0.000000","2092704.000000","129468.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752442.000000",,,,, -"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","744.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","1.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040036.000000","0.000000","2092704.000000","129468.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","18.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","17.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752462.000000",,,,, -"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","763.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040792.000000","0.000000","2092704.000000","129468.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","14.000000","16.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752482.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","1153.000000","0.000000",,,,,,,,,,,,"0.000000","75.500000","151.000000","2.000000","75.500000","75.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040232.000000","0.000000","2092704.000000","129468.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","15.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752502.000000",,,,, -"201.000000","7.940000","201.000000","7.940000","201.000000","7.940000","1652.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2040180.000000","0.000000","2092704.000000","129468.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","12.000000","16.000000","15.000000","17.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","16.000000","160.000000","6000.000000","0.000000","752522.000000",,,,, -"221.000000","8.030000","221.000000","8.030000","221.000000","8.030000","1098.000000","0.000000",,,,,,,,,,,,"1.000000","43.500000","86.000000","3.000000","43.500000","43.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041620.000000","0.000000","2092704.000000","129468.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","15.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752542.000000",,,,, -"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","1440.000000","0.000000",,,,,,,,,,,,"9.000000","59.500000","109.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041056.000000","0.000000","2092704.000000","129468.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752562.000000",,,,, -"236.000000","8.100000","236.000000","8.100000","236.000000","8.100000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039892.000000","0.000000","2092704.000000","129468.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752582.000000",,,,, -"215.000000","8.005000","215.000000","8.005000","215.000000","8.005000","1457.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","1.000000","33.500000","33.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038840.000000","0.000000","2092704.000000","129468.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","752602.000000",,,,, -"246.000000","8.150000","246.000000","8.150000","246.000000","8.150000","1579.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","1.000000","43.000000","43.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038300.000000","0.000000","2092704.000000","129468.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","752622.000000",,,,, -"236.000000","7.605000","236.000000","7.605000","236.000000","7.605000","698.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037436.000000","0.000000","2092704.000000","129468.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752642.000000",,,,, -"213.000000","7.495000","213.000000","7.495000","213.000000","7.495000","780.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","0.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037276.000000","0.000000","2092704.000000","129468.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752662.000000",,,,, -"268.000000","7.755000","268.000000","7.755000","268.000000","7.755000","638.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2036856.000000","0.000000","2092704.000000","129468.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752682.000000",,,,, -"223.000000","6.545000","223.000000","6.545000","223.000000","6.545000","599.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2035764.000000","0.000000","2092704.000000","129468.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752702.000000",,,,, -"583.000000","8.235000","583.000000","8.235000","583.000000","8.235000","1262.000000","0.000000",,,,,,,,,,,,"5.000000","125.000000","245.000000","2.000000","125.000000","125.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2038484.000000","0.000000","2092704.000000","129468.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","8.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","752722.000000",,,,, -"337.000000","7.080000","337.000000","7.080000","337.000000","7.080000","1013.000000","0.000000",,,,,,,,,,,,"1.000000","214.500000","426.000000","4.000000","214.500000","214.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034456.000000","0.000000","2092704.000000","129468.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752742.000000",,,,, -"260.000000","8.215000","260.000000","8.215000","260.000000","8.215000","1219.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","2.000000","45.000000","45.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2034216.000000","0.000000","2092704.000000","129468.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752762.000000",,,,, -"207.000000","7.970000","207.000000","7.970000","207.000000","7.970000","1035.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","4.000000","25.000000","25.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032580.000000","0.000000","2092704.000000","129468.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752782.000000",,,,, -"265.000000","8.240000","265.000000","8.240000","265.000000","8.240000","1161.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","1.000000","61.000000","61.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032272.000000","0.000000","2092704.000000","129468.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752802.000000",,,,, -"206.000000","9.465000","206.000000","9.465000","206.000000","9.465000","1395.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","2.000000","35.500000","35.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031756.000000","0.000000","2092704.000000","129468.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752822.000000",,,,, -"195.000000","9.410000","195.000000","9.410000","195.000000","9.410000","1131.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031192.000000","0.000000","2092704.000000","129468.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752842.000000",,,,, -"258.000000","9.705000","258.000000","9.705000","258.000000","9.705000","1164.000000","0.000000",,,,,,,,,,,,"0.000000","60.500000","121.000000","1.000000","60.500000","60.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031332.000000","0.000000","2092704.000000","129468.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752862.000000",,,,, -"197.000000","7.420000","197.000000","7.420000","197.000000","7.420000","1772.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","3.000000","30.000000","30.000000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2030748.000000","0.000000","2092704.000000","129468.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752882.000000",,,,, -"200.000000","7.435000","200.000000","7.435000","200.000000","7.435000","1621.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","0.000000","8.500000","8.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2029136.000000","0.000000","2092704.000000","129468.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752902.000000",,,,, -"255.000000","7.695000","255.000000","7.695000","255.000000","7.695000","1707.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","2.000000","71.500000","71.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2028672.000000","0.000000","2092704.000000","129468.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752922.000000",,,,, -"382.000000","8.290000","382.000000","8.290000","382.000000","8.290000","1483.000000","0.000000",,,,,,,,,,,,"1393.000000","1458.500000","1522.000000","4.000000","1458.500000","1458.500000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2026888.000000","0.000000","2092704.000000","129468.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","14.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","17.000000","14.000000","160.000000","6000.000000","0.000000","752942.000000",,,,, -"801.000000","17.260000","801.000000","17.260000","801.000000","17.260000","1638.000000","0.000000",,,,,,,,,,,,"12530.000000","12847.500000","13163.000000","16.000000","12847.500000","12847.500000",,,,,,,,,,,"356512.000000","566228.000000","0.000000","0.000000","2042860.000000","0.000000","2092704.000000","129468.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","17.000000","59.000000","18.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","53.000000","17.000000","160.000000","6000.000000","0.000000","752962.000000",,,,, -"665.000000","18.120000","665.000000","18.120000","665.000000","18.120000","1883.000000","0.000000",,,,,,,,,,,,"1055.000000","887.500000","465.000000","3.000000","887.500000","887.500000",,,,,,,,,,,"419428.000000","629144.000000","0.000000","0.000000","2043312.000000","0.000000","2092704.000000","129468.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"7.000000","248.000000",,,,,,,,,,,"0.000000","12.000000","25.000000","13.000000","18.000000","59.000000","25.000000","0.000000","0.000000","0.000000","11.000000","22.000000","12.000000","17.000000","53.000000","21.000000","160.000000","6000.000000","0.000000","752982.000000",,,,, -"594.000000","21.285000","594.000000","21.285000","594.000000","21.285000","1239.000000","0.000000",,,,,,,,,,,,"709.000000","1585.000000","902.000000","5.000000","1585.000000","1585.000000",,,,,,,,,,,"440400.000000","775944.000000","0.000000","0.000000","2044032.000000","0.000000","2092704.000000","129468.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"1515.000000","43.000000",,,,,,,,,,,"0.000000","12.000000","30.000000","14.000000","20.000000","59.000000","31.000000","0.000000","0.000000","0.000000","11.000000","25.000000","13.000000","18.000000","53.000000","28.000000","160.000000","6000.000000","0.000000","753002.000000",,,,, -"1248.000000","24.360000","1248.000000","24.360000","1248.000000","24.360000","2625.000000","0.000000",,,,,,,,,,,,"0.000000","20814.000000","21156.000000","78.000000","20814.000000","20814.000000",,,,,,,,,,,"650116.000000","775944.000000","0.000000","0.000000","2053436.000000","0.000000","2092704.000000","129468.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"20399.000000","72.000000",,,,,,,,,,,"0.000000","13.000000","41.000000","18.000000","25.000000","75.000000","54.000000","0.000000","0.000000","0.000000","12.000000","30.000000","15.000000","21.000000","51.000000","43.000000","160.000000","6000.000000","0.000000","753022.000000",,,,, -"1164.000000","30.965000","1164.000000","30.965000","1164.000000","30.965000","2201.000000","0.000000",,,,,,,,,,,,"0.000000","19665.500000","23179.000000","66.000000","19665.500000","19665.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067944.000000","0.000000","2092704.000000","129468.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"16094.000000","58.000000",,,,,,,,,,,"0.000000","15.000000","52.000000","20.000000","31.000000","75.000000","68.000000","0.000000","0.000000","0.000000","13.000000","35.000000","16.000000","28.000000","51.000000","44.000000","160.000000","6000.000000","0.000000","753042.000000",,,,, -"1131.000000","41.810000","1131.000000","41.810000","1131.000000","41.810000","1844.000000","0.000000",,,,,,,,,,,,"7.000000","24063.500000","38208.000000","35.000000","24063.500000","24063.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2071392.000000","0.000000","2092704.000000","129468.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"9871.000000","41.000000",,,,,,,,,,,"0.000000","16.000000","66.000000","25.000000","45.000000","75.000000","69.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","32.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","753062.000000",,,,, -"682.000000","39.700000","682.000000","39.700000","682.000000","39.700000","1590.000000","0.000000",,,,,,,,,,,,"681.000000","8960.500000","8687.000000","15.000000","8960.500000","8960.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072044.000000","0.000000","2092704.000000","129468.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"8517.000000","36.000000",,,,,,,,,,,"0.000000","16.000000","54.000000","26.000000","45.000000","70.000000","69.000000","0.000000","0.000000","0.000000","14.000000","38.000000","20.000000","35.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","753082.000000",,,,, -"1467.000000","43.390000","1467.000000","43.390000","1467.000000","43.390000","2267.000000","0.000000",,,,,,,,,,,,"123.000000","17364.500000","26118.000000","65.000000","17364.500000","17364.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072184.000000","0.000000","2092704.000000","129468.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","0.000000","0.000000",,,,,,"8454.000000","34.000000",,,,,,,,,,,"0.000000","17.000000","50.000000","29.000000","53.000000","70.000000","69.000000","0.000000","0.000000","0.000000","15.000000","39.000000","22.000000","40.000000","59.000000","47.000000","160.000000","6000.000000","0.000000","753102.000000",,,,, -"966.000000","46.035000","966.000000","46.035000","966.000000","46.035000","1909.000000","0.000000",,,,,,,,,,,,"6.000000","3669.000000","7329.000000","17.000000","3669.000000","3669.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","46.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","39.000000","25.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753122.000000",,,,, -"403.000000","43.385000","403.000000","43.385000","403.000000","43.385000","2033.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","4.000000","66.000000","66.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071580.000000","0.000000","2092704.000000","129468.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","41.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","35.000000","26.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753142.000000",,,,, -"266.000000","42.745000","266.000000","42.745000","266.000000","42.745000","2295.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","0.000000","31.500000","31.500000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","28.000000","33.000000","54.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","25.000000","26.000000","40.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753162.000000",,,,, -"449.000000","44.105000","449.000000","44.105000","449.000000","44.105000","2345.000000","0.000000",,,,,,,,,,,,"0.000000","72.500000","145.000000","4.000000","72.500000","72.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2071108.000000","0.000000","2092704.000000","129468.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","15.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","13.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753182.000000",,,,, -"223.000000","43.040000","223.000000","43.040000","223.000000","43.040000","2358.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070724.000000","0.000000","2092704.000000","129468.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753202.000000",,,,, -"231.000000","43.080000","231.000000","43.080000","231.000000","43.080000","2191.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","4.000000","33.500000","33.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070296.000000","0.000000","2092704.000000","129468.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753222.000000",,,,, -"229.000000","43.570000","229.000000","43.570000","229.000000","43.570000","1664.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069796.000000","0.000000","2092704.000000","129468.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","33.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","26.000000","40.000000","9.000000","52.000000","160.000000","6000.000000","0.000000","753242.000000",,,,, -"248.000000","43.660000","248.000000","43.660000","248.000000","43.660000","948.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","2.000000","31.500000","31.500000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069308.000000","0.000000","2092704.000000","129468.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","31.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","25.000000","40.000000","9.000000","51.000000","160.000000","6000.000000","0.000000","753262.000000",,,,, -"535.000000","45.010000","535.000000","45.010000","535.000000","45.010000","1478.000000","0.000000",,,,,,,,,,,,"0.000000","95.000000","190.000000","3.000000","95.000000","95.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2068920.000000","0.000000","2092704.000000","129468.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","31.000000","54.000000","42.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","24.000000","40.000000","30.000000","51.000000","160.000000","6000.000000","0.000000","753282.000000",,,,, -"766.000000","38.595000","766.000000","38.595000","766.000000","38.595000","1335.000000","0.000000",,,,,,,,,,,,"4.000000","198.000000","392.000000","3.000000","198.000000","198.000000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","21.000000","31.000000","54.000000","48.000000","70.000000","0.000000","0.000000","0.000000","15.000000","19.000000","25.000000","40.000000","43.000000","51.000000","160.000000","6000.000000","0.000000","753302.000000",,,,, -"882.000000","39.140000","882.000000","39.140000","882.000000","39.140000","1178.000000","0.000000",,,,,,,,,,,,"46.000000","258.500000","471.000000","7.000000","258.500000","258.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068796.000000","0.000000","2092704.000000","129468.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","29.000000","29.000000","59.000000","60.000000","68.000000","0.000000","0.000000","0.000000","16.000000","24.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753322.000000",,,,, -"676.000000","38.175000","676.000000","38.175000","676.000000","38.175000","1302.000000","0.000000",,,,,,,,,,,,"0.000000","87.500000","174.000000","5.000000","87.500000","87.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068128.000000","0.000000","2092704.000000","129468.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","32.000000","27.000000","59.000000","60.000000","64.000000","0.000000","0.000000","0.000000","16.000000","28.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753342.000000",,,,, -"876.000000","29.120000","876.000000","29.120000","876.000000","29.120000","1505.000000","0.000000",,,,,,,,,,,,"2163.000000","1493.000000","772.000000","3.000000","1493.000000","1493.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067748.000000","0.000000","2092704.000000","129468.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","0.000000","0.000000",,,,,,"35.000000","15.000000",,,,,,,,,,,"0.000000","20.000000","34.000000","25.000000","59.000000","60.000000","60.000000","0.000000","0.000000","0.000000","17.000000","30.000000","22.000000","43.000000","48.000000","48.000000","160.000000","6000.000000","0.000000","753362.000000",,,,, -"1000.000000","29.700000","1000.000000","29.700000","1000.000000","29.700000","1341.000000","0.000000",,,,,,,,,,,,"7.000000","4211.000000","8409.000000","26.000000","4211.000000","4211.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067396.000000","0.000000","2092704.000000","129468.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","20.000000","37.000000","26.000000","60.000000","67.000000","64.000000","0.000000","0.000000","0.000000","17.000000","34.000000","22.000000","43.000000","53.000000","52.000000","160.000000","6000.000000","0.000000","753382.000000",,,,, -"760.000000","28.570000","760.000000","28.570000","760.000000","28.570000","1798.000000","0.000000",,,,,,,,,,,,"3.000000","432.000000","859.000000","4.000000","432.000000","432.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067096.000000","0.000000","2092704.000000","129468.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","21.000000","39.000000","24.000000","60.000000","73.000000","60.000000","0.000000","0.000000","0.000000","18.000000","34.000000","22.000000","44.000000","65.000000","51.000000","160.000000","6000.000000","0.000000","753402.000000",,,,, -"532.000000","24.495000","532.000000","24.495000","532.000000","24.495000","1234.000000","0.000000",,,,,,,,,,,,"0.000000","118.000000","236.000000","5.000000","118.000000","118.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066516.000000","0.000000","2092704.000000","129468.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","31.000000","22.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","18.000000","28.000000","20.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753422.000000",,,,, -"740.000000","25.475000","740.000000","25.475000","740.000000","25.475000","1076.000000","0.000000",,,,,,,,,,,,"0.000000","146.000000","291.000000","2.000000","146.000000","146.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066052.000000","0.000000","2092704.000000","129468.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","28.000000","23.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","19.000000","26.000000","21.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753442.000000",,,,, -"235.000000","23.095000","235.000000","23.095000","235.000000","23.095000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","70.500000","140.000000","3.000000","70.500000","70.500000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2065436.000000","0.000000","2092704.000000","129468.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","20.000000","23.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","19.000000","19.000000","21.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753462.000000",,,,, -"216.000000","20.510000","216.000000","20.510000","216.000000","20.510000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","80.000000","2.000000","40.000000","40.000000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064708.000000","0.000000","2092704.000000","129468.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","16.000000","22.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","18.000000","15.000000","20.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753482.000000",,,,, -"231.000000","20.580000","231.000000","20.580000","231.000000","20.580000","1179.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064316.000000","0.000000","2092704.000000","129468.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","19.000000","8.000000","20.000000","44.000000","10.000000","43.000000","160.000000","6000.000000","0.000000","753502.000000",,,,, -"219.000000","20.520000","219.000000","20.520000","219.000000","20.520000","1510.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2063692.000000","0.000000","2092704.000000","129468.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753522.000000",,,,, -"214.000000","19.500000","214.000000","19.500000","214.000000","19.500000","1223.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","3.000000","42.500000","42.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062896.000000","0.000000","2092704.000000","129468.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753542.000000",,,,, -"541.000000","21.035000","541.000000","21.035000","541.000000","21.035000","949.000000","0.000000",,,,,,,,,,,,"6.000000","209.500000","407.000000","1.000000","209.500000","209.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062588.000000","0.000000","2092704.000000","129468.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","11.000000","23.000000","60.000000","26.000000","48.000000","0.000000","0.000000","0.000000","19.000000","10.000000","20.000000","44.000000","19.000000","43.000000","160.000000","6000.000000","0.000000","753562.000000",,,,, -"674.000000","21.665000","674.000000","21.665000","674.000000","21.665000","1381.000000","0.000000",,,,,,,,,,,,"1.000000","138.000000","275.000000","2.000000","138.000000","138.000000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2061872.000000","0.000000","2092704.000000","129468.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","17.000000","23.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","16.000000","21.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753582.000000",,,,, -"499.000000","19.840000","499.000000","19.840000","499.000000","19.840000","1229.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","344.000000","4.000000","172.500000","172.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060988.000000","0.000000","2092704.000000","129468.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","22.000000","22.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","20.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753602.000000",,,,, -"535.000000","20.010000","535.000000","20.010000","535.000000","20.010000","1016.000000","0.000000",,,,,,,,,,,,"0.000000","108.000000","216.000000","12.000000","108.000000","108.000000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060288.000000","0.000000","2092704.000000","129468.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","23.000000","22.000000","60.000000","40.000000","44.000000","0.000000","0.000000","0.000000","19.000000","21.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753622.000000",,,,, -"641.000000","20.505000","641.000000","20.505000","641.000000","20.505000","1413.000000","0.000000",,,,,,,,,,,,"0.000000","277.500000","549.000000","3.000000","277.500000","277.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2059488.000000","0.000000","2092704.000000","129468.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","23.000000","21.000000","21.000000","60.000000","47.000000","47.000000","0.000000","0.000000","0.000000","19.000000","19.000000","19.000000","44.000000","45.000000","45.000000","160.000000","6000.000000","0.000000","753642.000000",,,,, -"727.000000","18.915000","727.000000","18.915000","727.000000","18.915000","1570.000000","0.000000",,,,,,,,,,,,"0.000000","150.000000","288.000000","6.000000","150.000000","150.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2058680.000000","0.000000","2092704.000000","129468.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","0.000000","0.000000",,,,,,"10.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","26.000000","21.000000","60.000000","52.000000","47.000000","0.000000","0.000000","0.000000","20.000000","24.000000","19.000000","45.000000","46.000000","45.000000","160.000000","6000.000000","0.000000","753662.000000",,,,, -"445.000000","17.585000","445.000000","17.585000","445.000000","17.585000","1082.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","2.000000","154.500000","154.500000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2057680.000000","0.000000","2092704.000000","129468.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","24.000000","19.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","39.000000","160.000000","6000.000000","0.000000","753682.000000",,,,, -"570.000000","18.175000","570.000000","18.175000","570.000000","18.175000","1796.000000","0.000000",,,,,,,,,,,,"0.000000","125.000000","250.000000","7.000000","125.000000","125.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2056988.000000","0.000000","2092704.000000","129468.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","24.000000","18.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","38.000000","160.000000","6000.000000","0.000000","753702.000000",,,,, -"493.000000","15.810000","493.000000","15.810000","493.000000","15.810000","1821.000000","0.000000",,,,,,,,,,,,"0.000000","104.000000","207.000000","5.000000","104.000000","104.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2056080.000000","0.000000","2092704.000000","129468.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","20.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","17.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753722.000000",,,,, -"225.000000","14.550000","225.000000","14.550000","225.000000","14.550000","1426.000000","0.000000",,,,,,,,,,,,"0.000000","63.500000","126.000000","24.000000","63.500000","63.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2054420.000000","0.000000","2092704.000000","129468.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","19.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753742.000000",,,,, -"204.000000","14.450000","204.000000","14.450000","204.000000","14.450000","1647.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2053676.000000","0.000000","2092704.000000","129468.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","15.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","13.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753762.000000",,,,, -"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2052716.000000","0.000000","2092704.000000","129468.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","10.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753782.000000",,,,, -"223.000000","14.040000","223.000000","14.040000","223.000000","14.040000","966.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","0.000000","25.000000","25.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051720.000000","0.000000","2092704.000000","129468.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","9.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753802.000000",,,,, -"487.000000","15.285000","487.000000","15.285000","487.000000","15.285000","1001.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","222.000000","1.000000","111.000000","111.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051056.000000","0.000000","2092704.000000","129468.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","9.000000","17.000000","60.000000","15.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","15.000000","38.000000","160.000000","6000.000000","0.000000","753822.000000",,,,, -"544.000000","14.055000","544.000000","14.055000","544.000000","14.055000","1339.000000","0.000000",,,,,,,,,,,,"0.000000","195.000000","384.000000","2.000000","195.000000","195.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","25.000000","16.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","15.000000","17.000000","45.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","753842.000000",,,,, -"586.000000","14.250000","586.000000","14.250000","586.000000","14.250000","716.000000","0.000000",,,,,,,,,,,,"0.000000","136.000000","270.000000","1.000000","136.000000","136.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2049504.000000","0.000000","2092704.000000","129468.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","24.000000","21.000000","19.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","20.000000","18.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753862.000000",,,,, -"444.000000","13.585000","444.000000","13.585000","444.000000","13.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","85.500000","171.000000","5.000000","85.500000","85.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2048680.000000","0.000000","2092704.000000","129468.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","23.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","22.000000","17.000000","45.000000","45.000000","38.000000","160.000000","6000.000000","0.000000","753882.000000",,,,, -"709.000000","12.825000","709.000000","12.825000","709.000000","12.825000","432.000000","0.000000",,,,,,,,,,,,"0.000000","113.500000","227.000000","1.000000","113.500000","113.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2047468.000000","0.000000","2092704.000000","129468.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","22.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","21.000000","17.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753902.000000",,,,, -"253.000000","10.685000","253.000000","10.685000","253.000000","10.685000","510.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","6.000000","45.000000","45.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","17.000000","18.000000","52.000000","39.000000","40.000000","0.000000","0.000000","0.000000","20.000000","17.000000","17.000000","45.000000","39.000000","39.000000","160.000000","6000.000000","0.000000","753922.000000",,,,, -"221.000000","10.535000","221.000000","10.535000","221.000000","10.535000","491.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046084.000000","0.000000","2092704.000000","129468.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","15.000000","17.000000","48.000000","39.000000","40.000000","0.000000","0.000000","0.000000","19.000000","14.000000","16.000000","43.000000","39.000000","38.000000","160.000000","6000.000000","0.000000","753942.000000",,,,, -"224.000000","9.045000","224.000000","9.045000","224.000000","9.045000","441.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","1.000000","31.500000","31.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2045520.000000","0.000000","2092704.000000","129468.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","9.000000","37.000000","160.000000","6000.000000","0.000000","753962.000000",,,,, -"422.000000","9.980000","422.000000","9.980000","422.000000","9.980000","479.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","3.000000","52.500000","52.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2044384.000000","0.000000","2092704.000000","129468.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","10.000000","37.000000","160.000000","6000.000000","0.000000","753982.000000",,,,, -"534.000000","10.505000","534.000000","10.505000","534.000000","10.505000","765.000000","0.000000",,,,,,,,,,,,"0.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2043532.000000","0.000000","2092704.000000","129468.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","14.000000","15.000000","42.000000","39.000000","39.000000","0.000000","0.000000","0.000000","18.000000","13.000000","14.000000","39.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754002.000000",,,,, -"533.000000","10.000000","533.000000","10.000000","533.000000","10.000000","909.000000","0.000000",,,,,,,,,,,,"0.000000","215.500000","425.000000","1.000000","215.500000","215.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2041684.000000","0.000000","2092704.000000","129468.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","19.000000","15.000000","40.000000","39.000000","38.000000","0.000000","0.000000","0.000000","17.000000","17.000000","14.000000","38.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754022.000000",,,,, -"821.000000","11.355000","821.000000","11.355000","821.000000","11.355000","619.000000","0.000000",,,,,,,,,,,,"7.000000","388.500000","764.000000","3.000000","388.500000","388.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2039608.000000","0.000000","2092704.000000","129468.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","19.000000","26.000000","16.000000","42.000000","59.000000","39.000000","0.000000","0.000000","0.000000","17.000000","23.000000","15.000000","39.000000","50.000000","38.000000","160.000000","6000.000000","0.000000","754042.000000",,,,, -"1321.000000","13.700000","1321.000000","13.700000","1321.000000","13.700000","746.000000","0.000000",,,,,,,,,,,,"0.000000","208.500000","416.000000","4.000000","208.500000","208.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040120.000000","0.000000","2092704.000000","129468.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","19.000000","30.000000","18.000000","42.000000","69.000000","40.000000","0.000000","0.000000","0.000000","18.000000","28.000000","17.000000","39.000000","68.000000","39.000000","160.000000","6000.000000","0.000000","754062.000000",,,,, -"3092.000000","24.025000","3092.000000","24.025000","3092.000000","24.025000","901.000000","0.000000",,,,,,,,,,,,"0.000000","739.000000","1477.000000","3.000000","739.000000","739.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2042144.000000","0.000000","2092704.000000","129468.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","22.000000","73.000000","28.000000","46.000000","182.000000","69.000000","0.000000","0.000000","0.000000","20.000000","65.000000","25.000000","43.000000","165.000000","68.000000","160.000000","6000.000000","0.000000","754082.000000",,,,, -"2229.000000","19.970000","2229.000000","19.970000","2229.000000","19.970000","1079.000000","0.000000",,,,,,,,,,,,"0.000000","825.000000","1647.000000","0.000000","825.000000","825.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2040344.000000","0.000000","2092704.000000","129468.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","89.000000","32.000000","48.000000","182.000000","87.000000","0.000000","0.000000","0.000000","22.000000","80.000000","30.000000","45.000000","165.000000","84.000000","160.000000","6000.000000","0.000000","754102.000000",,,,, -"2212.000000","19.890000","2212.000000","19.890000","2212.000000","19.890000","978.000000","0.000000",,,,,,,,,,,,"0.000000","864.500000","1727.000000","1.000000","864.500000","864.500000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2039468.000000","0.000000","2092704.000000","129468.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","25.000000","104.000000","37.000000","59.000000","182.000000","94.000000","0.000000","0.000000","0.000000","23.000000","94.000000","34.000000","50.000000","165.000000","90.000000","160.000000","6000.000000","0.000000","754122.000000",,,,, -"1829.000000","16.590000","1829.000000","16.590000","1829.000000","16.590000","816.000000","0.000000",,,,,,,,,,,,"0.000000","636.500000","1271.000000","1.000000","636.500000","636.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038572.000000","0.000000","2092704.000000","129468.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","27.000000","83.000000","41.000000","69.000000","107.000000","101.000000","0.000000","0.000000","0.000000","25.000000","79.000000","38.000000","65.000000","106.000000","92.000000","160.000000","6000.000000","0.000000","754142.000000",,,,, -"1233.000000","13.790000","1233.000000","13.790000","1233.000000","13.790000","557.000000","0.000000",,,,,,,,,,,,"0.000000","112.000000","216.000000","4.000000","112.000000","112.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038256.000000","0.000000","2092704.000000","129468.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","0.000000","0.000000",,,,,,"1.000000","7.000000",,,,,,,,,,,"0.000000","28.000000","73.000000","43.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","70.000000","40.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754162.000000",,,,, -"237.000000","9.110000","237.000000","9.110000","237.000000","9.110000","551.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","4.000000","71.500000","71.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2037468.000000","0.000000","2092704.000000","129468.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","48.000000","42.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","47.000000","39.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754182.000000",,,,, -"221.000000","9.035000","221.000000","9.035000","221.000000","9.035000","525.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2036852.000000","0.000000","2092704.000000","129468.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","21.000000","41.000000","73.000000","101.000000","101.000000","0.000000","0.000000","0.000000","25.000000","21.000000","38.000000","68.000000","101.000000","93.000000","160.000000","6000.000000","0.000000","754202.000000",,,,, -"221.000000","8.530000","221.000000","8.530000","221.000000","8.530000","456.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","2.000000","20.500000","20.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035836.000000","0.000000","2092704.000000","129468.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","8.000000","41.000000","73.000000","10.000000","101.000000","0.000000","0.000000","0.000000","25.000000","8.000000","38.000000","68.000000","10.000000","93.000000","160.000000","6000.000000","0.000000","754222.000000",,,,, -"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","407.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","39.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035008.000000","0.000000","2092704.000000","129468.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","26.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754242.000000",,,,, -"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","513.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2034208.000000","0.000000","2092704.000000","129468.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754262.000000",,,,, -"573.000000","10.685000","573.000000","10.685000","573.000000","10.685000","621.000000","0.000000",,,,,,,,,,,,"0.000000","163.000000","325.000000","1.000000","163.000000","163.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2033288.000000","0.000000","2092704.000000","129468.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","41.000000","73.000000","17.000000","101.000000","0.000000","0.000000","0.000000","23.000000","9.000000","38.000000","68.000000","17.000000","93.000000","160.000000","6000.000000","0.000000","754282.000000",,,,, -"2602.000000","20.220000","2602.000000","20.220000","2602.000000","20.220000","2202.000000","0.000000",,,,,,,,,,,,"0.000000","946.500000","1890.000000","4.000000","946.500000","946.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2032872.000000","0.000000","2092704.000000","129468.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","26.000000","38.000000","46.000000","87.000000","105.000000","104.000000","0.000000","0.000000","0.000000","24.000000","35.000000","42.000000","81.000000","100.000000","100.000000","160.000000","6000.000000","0.000000","754302.000000",,,,, -"2372.000000","19.145000","2372.000000","19.145000","2372.000000","19.145000","1973.000000","0.000000",,,,,,,,,,,,"0.000000","918.000000","1833.000000","3.000000","918.000000","918.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2031076.000000","0.000000","2092704.000000","129468.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","74.000000","52.000000","91.000000","110.000000","105.000000","0.000000","0.000000","0.000000","26.000000","68.000000","48.000000","85.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754322.000000",,,,, -"2467.000000","20.590000","2467.000000","20.590000","2467.000000","20.590000","680.000000","0.000000",,,,,,,,,,,,"0.000000","740.500000","1479.000000","4.000000","740.500000","740.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031324.000000","0.000000","2092704.000000","129468.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","30.000000","99.000000","56.000000","94.000000","110.000000","105.000000","0.000000","0.000000","0.000000","28.000000","92.000000","52.000000","90.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754342.000000",,,,, -"2474.000000","20.620000","2474.000000","20.620000","2474.000000","20.620000","681.000000","0.000000",,,,,,,,,,,,"0.000000","489.500000","979.000000","3.000000","489.500000","489.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2030624.000000","0.000000","2092704.000000","129468.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","96.000000","59.000000","98.000000","110.000000","105.000000","0.000000","0.000000","0.000000","29.000000","91.000000","55.000000","91.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754362.000000",,,,, -"2462.000000","20.565000","2462.000000","20.565000","2462.000000","20.565000","632.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","966.000000","1.000000","483.000000","483.000000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031092.000000","0.000000","2092704.000000","129468.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","95.000000","56.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","92.000000","54.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754382.000000",,,,, -"601.000000","9.820000","601.000000","9.820000","601.000000","9.820000","649.000000","0.000000",,,,,,,,,,,,"0.000000","248.500000","486.000000","1.000000","248.500000","248.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2029480.000000","0.000000","2092704.000000","129468.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","0.000000","0.000000",,,,,,"6.000000","5.000000",,,,,,,,,,,"0.000000","34.000000","77.000000","53.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","73.000000","50.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754402.000000",,,,, -"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","519.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","62.000000","1.000000","35.500000","35.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028640.000000","0.000000","2092704.000000","129468.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","0.000000","0.000000",,,,,,"7.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","51.000000","48.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","48.000000","46.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754422.000000",,,,, -"241.000000","8.130000","241.000000","8.130000","241.000000","8.130000","376.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","26.000000","5.500000","5.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028088.000000","0.000000","2092704.000000","129468.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","16.000000","43.000000","98.000000","43.000000","103.000000","0.000000","0.000000","0.000000","32.000000","15.000000","41.000000","92.000000","43.000000","100.000000","160.000000","6000.000000","0.000000","754442.000000",,,,, -"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","449.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","9.000000","1.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2025096.000000","0.000000","2092704.000000","129468.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","0.000000","0.000000",,,,,,"5.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","13.000000","103.000000","0.000000","0.000000","0.000000","32.000000","9.000000","38.000000","92.000000","13.000000","97.000000","160.000000","6000.000000","0.000000","754462.000000",,,,, -"238.000000","7.115000","238.000000","7.115000","238.000000","7.115000","462.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","13.000000","0.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024296.000000","0.000000","2092704.000000","129468.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754482.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","557.000000","0.000000",,,,,,,,,,,,"0.000000","5.000000","7.000000","0.000000","5.000000","5.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024544.000000","0.000000","2092704.000000","129468.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","33.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754502.000000",,,,, -"999.000000","12.190000","999.000000","12.190000","999.000000","12.190000","821.000000","0.000000",,,,,,,,,,,,"0.000000","4304.000000","8588.000000","19.000000","4304.000000","4304.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","0.000000","0.000000",,,,,,"13.000000","6.000000",,,,,,,,,,,"0.000000","34.000000","21.000000","43.000000","98.000000","68.000000","103.000000","0.000000","0.000000","0.000000","32.000000","18.000000","40.000000","92.000000","68.000000","97.000000","160.000000","6000.000000","0.000000","754522.000000",,,,, -"2004.000000","21.415000","2004.000000","21.415000","2004.000000","21.415000","1226.000000","0.000000",,,,,,,,,,,,"0.000000","421.000000","842.000000","10.000000","421.000000","421.000000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2029164.000000","0.000000","2092704.000000","129468.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","36.000000","46.000000","98.000000","149.000000","104.000000","0.000000","0.000000","0.000000","32.000000","29.000000","43.000000","92.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","754542.000000",,,,, -"1618.000000","19.600000","1618.000000","19.600000","1618.000000","19.600000","838.000000","0.000000",,,,,,,,,,,,"0.000000","648.500000","1296.000000","4.000000","648.500000","648.500000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2028456.000000","0.000000","2092704.000000","129468.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","36.000000","74.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","33.000000","57.000000","48.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754562.000000",,,,, -"721.000000","18.380000","721.000000","18.380000","721.000000","18.380000","541.000000","0.000000",,,,,,,,,,,,"0.000000","115.500000","231.000000","6.000000","115.500000","115.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2029660.000000","0.000000","2092704.000000","129468.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","67.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","34.000000","53.000000","49.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754582.000000",,,,, -"245.000000","16.145000","245.000000","16.145000","245.000000","16.145000","486.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","3.000000","66.000000","66.000000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2028740.000000","0.000000","2092704.000000","129468.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","53.000000","49.000000","100.000000","234.000000","104.000000","0.000000","0.000000","0.000000","34.000000","42.000000","44.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754602.000000",,,,, -"233.000000","16.090000","233.000000","16.090000","233.000000","16.090000","586.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","17.000000","24.500000","24.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2026664.000000","0.000000","2092704.000000","129468.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","15.000000","42.000000","100.000000","46.000000","100.000000","0.000000","0.000000","0.000000","33.000000","15.000000","37.000000","95.000000","41.000000","100.000000","160.000000","6000.000000","0.000000","754622.000000",,,,, -"219.000000","15.525000","219.000000","15.525000","219.000000","15.525000","467.000000","0.000000",,,,,,,,,,,,"0.000000","32.500000","65.000000","1.000000","32.500000","32.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2027632.000000","0.000000","2092704.000000","129468.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","10.000000","37.000000","100.000000","20.000000","98.000000","0.000000","0.000000","0.000000","33.000000","9.000000","32.000000","95.000000","20.000000","97.000000","160.000000","6000.000000","0.000000","754642.000000",,,,, -"222.000000","15.540000","222.000000","15.540000","222.000000","15.540000","679.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","2.000000","22.500000","22.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026620.000000","0.000000","2092704.000000","129468.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","31.000000","100.000000","9.000000","98.000000","0.000000","0.000000","0.000000","33.000000","8.000000","27.000000","95.000000","9.000000","97.000000","160.000000","6000.000000","0.000000","754662.000000",,,,, -"223.000000","15.540000","223.000000","15.540000","223.000000","15.540000","736.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","0.000000","13.000000","13.000000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026760.000000","0.000000","2092704.000000","129468.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","24.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","21.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754682.000000",,,,, -"226.000000","18.555000","226.000000","18.555000","226.000000","18.555000","594.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","46.000000","23.000000","23.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2026204.000000","0.000000","2092704.000000","129468.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","8.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754702.000000",,,,, -"218.000000","18.520000","218.000000","18.520000","218.000000","18.520000","663.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","19.000000","20.500000","20.500000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2025288.000000","0.000000","2092704.000000","129468.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754722.000000",,,,, -"229.000000","18.570000","229.000000","18.570000","229.000000","18.570000","519.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","41.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754742.000000",,,,, -"236.000000","18.105000","236.000000","18.105000","236.000000","18.105000","438.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","1.000000","36.500000","36.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2024276.000000","0.000000","2092704.000000","129468.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","32.000000","8.000000","19.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754762.000000",,,,, -"412.000000","18.930000","412.000000","18.930000","412.000000","18.930000","574.000000","0.000000",,,,,,,,,,,,"0.000000","143.000000","284.000000","0.000000","143.000000","143.000000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2023432.000000","0.000000","2092704.000000","129468.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","35.000000","10.000000","23.000000","100.000000","25.000000","66.000000","0.000000","0.000000","0.000000","32.000000","10.000000","20.000000","95.000000","24.000000","43.000000","160.000000","6000.000000","0.000000","754782.000000",,,,, -"886.000000","21.160000","886.000000","21.160000","886.000000","21.160000","671.000000","0.000000",,,,,,,,,,,,"0.000000","226.500000","448.000000","2.000000","226.500000","226.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2022828.000000","0.000000","2092704.000000","129468.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","35.000000","19.000000","25.000000","100.000000","47.000000","66.000000","0.000000","0.000000","0.000000","32.000000","18.000000","21.000000","95.000000","44.000000","44.000000","160.000000","6000.000000","0.000000","754802.000000",,,,, -"2615.000000","26.285000","2615.000000","26.285000","2615.000000","26.285000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","518.500000","1036.000000","8.000000","518.500000","518.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026560.000000","0.000000","2092704.000000","129468.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","60.000000","31.000000","101.000000","264.000000","123.000000","0.000000","0.000000","0.000000","34.000000","49.000000","25.000000","97.000000","185.000000","108.000000","160.000000","6000.000000","0.000000","754822.000000",,,,, -"617.000000","16.895000","617.000000","16.895000","617.000000","16.895000","641.000000","0.000000",,,,,,,,,,,,"0.000000","286.500000","573.000000","94.000000","286.500000","286.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026092.000000","0.000000","2092704.000000","129468.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","62.000000","28.000000","101.000000","264.000000","47.000000","0.000000","0.000000","0.000000","35.000000","50.000000","24.000000","97.000000","185.000000","44.000000","160.000000","6000.000000","0.000000","754842.000000",,,,, -"634.000000","16.975000","634.000000","16.975000","634.000000","16.975000","533.000000","0.000000",,,,,,,,,,,,"0.000000","119.500000","239.000000","1.000000","119.500000","119.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026132.000000","0.000000","2092704.000000","129468.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","60.000000","22.000000","101.000000","264.000000","46.000000","0.000000","0.000000","0.000000","35.000000","49.000000","19.000000","97.000000","185.000000","41.000000","160.000000","6000.000000","0.000000","754862.000000",,,,, -"249.000000","12.665000","249.000000","12.665000","249.000000","12.665000","434.000000","0.000000",,,,,,,,,,,,"0.000000","73.500000","147.000000","35.000000","73.500000","73.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2026272.000000","0.000000","2092704.000000","129468.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","19.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","18.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754882.000000",,,,, -"222.000000","12.535000","222.000000","12.535000","222.000000","12.535000","830.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","13.000000","30.000000","30.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2025336.000000","0.000000","2092704.000000","129468.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","15.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","15.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754902.000000",,,,, -"230.000000","12.575000","230.000000","12.575000","230.000000","12.575000","549.000000","0.000000",,,,,,,,,,,,"0.000000","43.500000","87.000000","2.000000","43.500000","43.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","21.000000","101.000000","9.000000","41.000000","0.000000","0.000000","0.000000","35.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754922.000000",,,,, -"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","545.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","3.000000","29.000000","29.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2025392.000000","0.000000","2092704.000000","129468.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754942.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","911.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2024356.000000","0.000000","2092704.000000","129468.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754962.000000",,,,, -"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","632.000000","0.000000",,,,,,,,,,,,"0.000000","38.500000","77.000000","3.000000","38.500000","38.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2023372.000000","0.000000","2092704.000000","129468.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","8.000000","21.000000","98.000000","10.000000","41.000000","0.000000","0.000000","0.000000","31.000000","8.000000","18.000000","95.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754982.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv deleted file mode 100644 index 95854863..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv +++ /dev/null @@ -1,847 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"621.250000",,"621.250000",,"621.250000",,"213.000000","0.000000",,,,,,,,,"4.250000","4675.000000","14395.250000","0.000000",,"250.875000",,,,"1.600000","0.000000","2.333333","10.333333","3.000000","0.000000","33.800000","0.000000","0.400000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.500000",,"658.500000",,"658.500000",,"275.250000","0.000000",,,,,,,,,"7.500000","4953.250000","14349.750000","2.625000",,"356.875000",,,,"4.800000","0.000000","0.333333","5.000000","8.500000","0.000000","96.600000","0.000000","1.600000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"576.500000",,"576.500000",,"576.500000",,"191.250000","0.000000",,,,,,,,,"6.250000","4338.750000","14378.250000","0.000000",,"356.125000",,,,"3.000000","0.000000","6.333333","7.000000","5.500000","0.000000","62.600000","0.000000","0.800000","61.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"243.000000",,"243.000000",,"243.000000",,"118.250000","0.000000",,,,,,,,,"4.750000","1830.000000","17188.750000","0.000000",,"192.750000",,,,"1.600000","0.000000","4.666667","3078.000000","2.875000","0.000000","34.400000","0.000000","0.200000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"348.750000",,"348.750000",,"348.750000",,"153.000000","0.000000",,,,,,,,,"5.750000","2627.000000","16510.250000","10.125000",,"238.375000",,,,"1.600000","0.375000","852.333333","1623.000000","2.125000","0.000000","33.200000","0.000000","7.800000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"79.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"631.000000",,"631.000000",,"631.000000",,"150.250000","0.000000",,,,,,,,,"4.750000","4749.250000","14454.500000","0.000000",,"342.375000",,,,"1.800000","0.000000","3.333333","304.000000","3.375000","0.000000","38.600000","0.000000","0.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"317.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"439.750000",,"439.750000",,"439.750000",,"165.750000","0.000000",,,,,,,,,"112.250000","3312.250000","15687.500000","19.875000",,"8504.625000",,,,"30.000000","0.750000","61.666667","94.000000","55.125000","0.000000","601.400000","0.000000","10.000000","591.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"131.500000","0.000000",,,,,,,,,"25.250000","4801.750000","14476.500000","3.375000",,"1435.375000",,,,"13.400000","0.000000","3.666667","9.666667","24.750000","0.000000","268.400000","0.000000","3.800000","264.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"73.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"434.500000",,"434.500000",,"434.500000",,"145.000000","0.000000",,,,,,,,,"103.000000","3271.500000","16027.500000","310.500000",,"3663.000000",,,,"56.600000","13.500000","4.333333","14.333333","92.250000","0.000000","1134.200000","0.000000","147.600000","986.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"92.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"689.000000",,"689.000000",,"689.000000",,"176.000000","0.000000",,,,,,,,,"8.750000","5185.750000","14445.000000","0.000000",,"465.375000",,,,"7.600000","0.000000","0.000000","3.000000","14.125000","0.000000","152.600000","0.000000","0.000000","152.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"620.750000",,"620.750000",,"620.750000",,"189.750000","0.000000",,,,,,,,,"7.750000","4672.250000","14427.500000","118.875000",,"244.750000",,,,"1.800000","1.500000","1.333333","10.333333","1.500000","0.000000","39.200000","0.000000","19.400000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"634.250000",,"634.250000",,"634.250000",,"184.750000","0.000000",,,,,,,,,"24.500000","4772.250000","14526.000000","538.500000",,"252.375000",,,,"3.600000","6.000000","2.000000","7.000000","0.750000","0.000000","75.000000","0.000000","65.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"728.750000",,"728.750000",,"728.750000",,"110.000000","0.000000",,,,,,,,,"21.500000","5484.000000","14597.500000","311.500000",,"552.375000",,,,"4.800000","3.000000","2.000000","6.000000","6.000000","0.000000","98.800000","0.000000","33.200000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"482.000000",,"482.000000",,"482.000000",,"157.250000","0.000000",,,,,,,,,"73.750000","3628.750000","15599.000000","1432.750000",,"354.000000",,,,"23.200000","41.625000","1.333333","7.000000","1.875000","0.000000","465.800000","0.000000","445.600000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"628.000000",,"628.000000",,"628.000000",,"124.500000","0.000000",,,,,,,,,"46.000000","4725.500000","14656.500000","698.000000",,"171.625000",,,,"10.400000","16.875000","0.333333","2.666667","2.250000","0.000000","208.200000","0.000000","180.800000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"568.250000",,"568.250000",,"568.250000",,"160.000000","0.000000",,,,,,,,,"33.500000","4275.750000","14718.000000","630.375000",,"149.250000",,,,"9.800000","16.125000","1.000000","3.000000","2.250000","0.000000","199.600000","0.000000","173.400000","26.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"497.250000",,"497.250000",,"497.250000",,"263.000000","0.000000",,,,,,,,,"38.250000","3743.750000","14730.750000","492.125000",,"132.625000",,,,"15.200000","25.500000","1.000000","2.333333","2.500000","0.000000","304.800000","0.000000","275.200000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"588.000000",,"588.000000",,"588.000000",,"196.500000","0.000000",,,,,,,,,"11.500000","4423.500000","14710.500000","32.625000",,"50.625000",,,,"5.400000","4.875000","1.333333","4.666667","4.875000","0.000000","110.800000","0.000000","55.400000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"459.500000",,"459.500000",,"459.500000",,"306.750000","0.000000",,,,,,,,,"39.750000","3458.750000","15256.750000","190.000000",,"342.750000",,,,"30.200000","45.750000","0.333333","2.666667","10.875000","0.000000","606.800000","0.000000","489.000000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"63.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"629.500000",,"629.500000",,"629.500000",,"188.000000","0.000000",,,,,,,,,"6.750000","4737.500000","14473.000000","0.000000",,"94.125000",,,,"4.400000","0.000000","0.000000","3.666667","8.250000","0.000000","90.000000","0.000000","0.200000","89.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"893.750000",,"893.750000",,"893.750000",,"182.750000","0.000000",,,,,,,,,"18.250000","6722.750000","12448.750000","71.250000",,"489.750000",,,,"14.600000","5.625000","1.000000","1.666667","21.375000","0.000000","293.200000","0.000000","63.200000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"84.000000","97.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1084.500000",,"1084.500000",,"1084.500000",,"314.500000","0.000000",,,,,,,,,"22.000000","8157.250000","9744.250000","77.250000",,"566.125000",,,,"12.800000","7.500000","1.000000","3.666667","16.500000","0.000000","259.200000","0.000000","80.200000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"56.000000","62.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1099.500000",,"1099.500000",,"1099.500000",,"230.000000","0.000000",,,,,,,,,"6.500000","8271.000000","9508.750000","1.125000",,"433.125000",,,,"2.200000","0.000000","5.333333","7.000000","4.125000","0.000000","46.200000","0.000000","1.200000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"82.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"936.250000",,"936.250000",,"936.250000",,"148.500000","0.000000",,,,,,,,,"7.750000","7041.500000","9505.750000","0.000000",,"432.375000",,,,"2.600000","0.000000","0.000000","6.000000","4.875000","0.000000","54.200000","0.000000","0.600000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"85.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1185.250000",,"1185.250000",,"1185.250000",,"212.750000","0.000000",,,,,,,,,"27.000000","8916.500000","9777.250000","42.125000",,"1180.375000",,,,"9.600000","5.000000","2.333333","12.333333","12.750000","0.000000","195.400000","0.000000","56.400000","139.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1209.750000",,"1209.750000",,"1209.750000",,"194.500000","0.000000",,,,,,,,,"13.750000","9099.000000","9606.500000","49.750000",,"394.125000",,,,"4.800000","4.500000","0.333333","5.666667","4.500000","0.000000","96.200000","0.000000","48.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1184.000000",,"1184.000000",,"1184.000000",,"220.000000","0.000000",,,,,,,,,"35.000000","8904.250000","9743.000000","75.750000",,"1512.250000",,,,"14.800000","7.500000","2.666667","19.333333","20.125000","0.000000","299.600000","0.000000","81.000000","218.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1193.250000",,"1193.250000",,"1193.250000",,"220.000000","0.000000",,,,,,,,,"7.250000","8977.000000","9522.750000","0.375000",,"383.625000",,,,"1.600000","0.000000","0.000000","11.666667","3.000000","0.000000","35.400000","0.000000","0.800000","34.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1256.750000",,"1256.750000",,"1256.750000",,"241.500000","0.000000",,,,,,,,,"8.500000","9451.250000","9538.000000","0.375000",,"548.250000",,,,"4.800000","0.000000","0.666667","11.666667","9.000000","0.000000","99.600000","0.000000","1.000000","98.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1177.500000",,"1177.500000",,"1177.500000",,"181.500000","0.000000",,,,,,,,,"2.750000","8856.500000","9524.000000","0.000000",,"337.375000",,,,"1.600000","0.000000","4.000000","18.666667","2.875000","0.000000","33.200000","0.000000","0.400000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1234.750000",,"1234.750000",,"1234.750000",,"238.500000","0.000000",,,,,,,,,"5.750000","9288.000000","9527.500000","0.000000",,"508.375000",,,,"2.400000","0.000000","0.000000","27.333333","4.500000","0.000000","51.200000","0.000000","0.000000","51.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1034.500000",,"1034.500000",,"1034.500000",,"240.000000","0.000000",,,,,,,,,"4.750000","7780.750000","9435.250000","0.000000",,"434.625000",,,,"3.000000","0.000000","0.000000","11.000000","5.625000","0.000000","61.200000","0.000000","0.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"911.750000",,"911.750000",,"911.750000",,"307.000000","0.000000",,,,,,,,,"6.000000","6859.000000","9366.000000","0.375000",,"288.250000",,,,"1.200000","0.000000","2.666667","11.000000","2.125000","0.000000","26.000000","0.000000","1.200000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"859.250000",,"859.250000",,"859.250000",,"348.750000","0.000000",,,,,,,,,"4.500000","6465.000000","9312.500000","0.000000",,"283.000000",,,,"2.000000","0.000000","6.666667","7.333333","3.750000","0.000000","43.200000","0.000000","0.400000","42.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"999.250000",,"999.250000",,"999.250000",,"360.750000","0.000000",,,,,,,,,"7.250000","7518.750000","9253.750000","0.125000",,"616.125000",,,,"2.800000","0.000000","1.333333","22.000000","5.250000","0.000000","59.800000","0.000000","0.600000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1148.000000",,"1148.000000",,"1148.000000",,"554.750000","0.000000",,,,,,,,,"6.250000","8635.750000","9197.000000","0.000000",,"393.625000",,,,"3.000000","0.000000","0.000000","21.000000","5.500000","0.000000","60.400000","0.000000","0.000000","60.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.750000",,"1077.750000",,"1077.750000",,"430.250000","0.000000",,,,,,,,,"4.250000","8109.250000","9216.750000","3.000000",,"324.750000",,,,"2.200000","0.000000","1.333333","13.666667","3.750000","0.000000","45.000000","0.000000","2.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"935.000000",,"935.000000",,"935.000000",,"278.250000","0.000000",,,,,,,,,"4.250000","7031.750000","9361.750000","1.500000",,"361.875000",,,,"2.200000","0.000000","1.000000","8.666667","4.000000","0.000000","47.200000","0.000000","2.600000","44.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"71.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1005.750000",,"1005.750000",,"1005.750000",,"231.750000","0.000000",,,,,,,,,"4.500000","7564.750000","9449.750000","1.500000",,"431.875000",,,,"2.600000","0.000000","5.666667","14.666667","4.750000","0.000000","55.400000","0.000000","1.400000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1214.000000",,"1214.000000",,"1214.000000",,"177.500000","0.000000",,,,,,,,,"4.000000","9132.500000","9522.000000","0.750000",,"422.500000",,,,"1.000000","0.000000","1.666667","16.666667","1.750000","0.000000","22.200000","0.000000","1.200000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"69.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1153.500000",,"1153.500000",,"1153.500000",,"202.000000","0.000000",,,,,,,,,"5.250000","8677.500000","9519.750000","0.750000",,"410.125000",,,,"2.200000","0.000000","6.000000","11.666667","4.000000","0.000000","47.200000","0.000000","1.200000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1273.000000",,"1273.000000",,"1273.000000",,"216.750000","0.000000",,,,,,,,,"4.500000","9574.500000","9517.750000","0.750000",,"337.000000",,,,"1.400000","0.000000","1.000000","14.000000","2.000000","0.000000","30.200000","0.000000","1.400000","28.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1401.000000",,"1401.000000",,"1401.000000",,"146.500000","0.000000",,,,,,,,,"9.000000","10537.750000","9641.750000","0.750000",,"552.375000",,,,"3.200000","0.000000","2.666667","12.666667","6.375000","0.000000","67.800000","0.000000","1.400000","66.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.250000",,"1077.250000",,"1077.250000",,"340.250000","0.000000",,,,,,,,,"6.250000","8103.250000","9389.500000","1.125000",,"403.875000",,,,"1.200000","0.000000","1.666667","28.333333","2.250000","0.000000","27.600000","0.000000","1.200000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1247.500000",,"1247.500000",,"1247.500000",,"144.500000","0.000000",,,,,,,,,"4.500000","9384.500000","9593.750000","0.750000",,"389.250000",,,,"1.600000","0.000000","2.333333","10.333333","2.875000","0.000000","34.000000","0.000000","0.800000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1179.000000",,"1179.000000",,"1179.000000",,"209.000000","0.000000",,,,,,,,,"4.500000","8866.750000","9529.500000","1.500000",,"500.250000",,,,"3.200000","0.000000","2.000000","10.000000","5.875000","0.000000","66.200000","0.000000","1.200000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"68.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.500000",,"1077.500000",,"1077.500000",,"381.500000","0.000000",,,,,,,,,"4.500000","8105.750000","9426.750000","0.750000",,"401.125000",,,,"1.600000","0.000000","2.666667","13.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1047.000000",,"1047.000000",,"1047.000000",,"306.750000","0.000000",,,,,,,,,"9.500000","7875.000000","9445.250000","1.875000",,"626.125000",,,,"2.800000","0.000000","15.333333","15.333333","5.250000","0.000000","59.200000","0.000000","2.200000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1169.500000",,"1169.500000",,"1169.500000",,"194.750000","0.000000",,,,,,,,,"7.000000","8796.000000","9571.000000","5.250000",,"440.250000",,,,"1.800000","0.375000","2.000000","16.000000","3.000000","0.000000","37.600000","0.000000","5.000000","32.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1152.000000",,"1152.000000",,"1152.000000",,"194.750000","0.000000",,,,,,,,,"6.500000","8668.250000","9542.500000","2.250000",,"387.375000",,,,"2.200000","0.250000","3.000000","14.000000","3.375000","0.000000","44.000000","0.000000","4.200000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"90.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1208.000000",,"1208.000000",,"1208.000000",,"258.000000","0.000000",,,,,,,,,"7.250000","9085.250000","9518.250000","2.125000",,"558.625000",,,,"2.200000","0.375000","3.666667","22.666667","3.625000","0.000000","46.200000","0.000000","5.200000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1289.500000",,"1289.500000",,"1289.500000",,"311.250000","0.000000",,,,,,,,,"14.000000","9698.250000","9481.750000","2.625000",,"954.250000",,,,"4.800000","0.375000","2.333333","15.333333","8.625000","0.000000","98.600000","0.000000","5.200000","93.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1233.000000",,"1233.000000",,"1233.000000",,"243.500000","0.000000",,,,,,,,,"50.000000","9275.500000","9567.250000","12.000000",,"4311.000000",,,,"16.200000","0.750000","1.333333","29.666667","29.375000","0.000000","326.400000","0.000000","11.000000","315.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1303.250000",,"1303.250000",,"1303.250000",,"285.000000","0.000000",,,,,,,,,"4.750000","9803.500000","9431.000000","2.625000",,"465.250000",,,,"1.600000","0.000000","2.000000","18.333333","3.000000","0.000000","35.000000","0.000000","1.400000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1176.250000",,"1176.250000",,"1176.250000",,"268.750000","0.000000",,,,,,,,,"21.500000","8848.500000","9592.250000","22.500000",,"653.250000",,,,"5.400000","2.250000","3.333333","17.666667","7.750000","0.000000","109.200000","0.000000","24.800000","84.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1040.000000",,"1040.000000",,"1040.000000",,"306.000000","0.000000",,,,,,,,,"164.750000","7822.750000","11172.250000","1767.000000",,"8112.375000",,,,"41.200000","31.875000","4.000000","28.000000","44.875000","0.000000","825.600000","0.000000","342.800000","482.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1200.250000",,"1200.250000",,"1200.250000",,"258.500000","0.000000",,,,,,,,,"8.750000","9026.750000","9451.500000","6.375000",,"359.250000",,,,"5.400000","0.375000","1.000000","5.000000","9.625000","0.000000","110.600000","0.000000","5.800000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.750000",,"1103.750000",,"1103.750000",,"174.000000","0.000000",,,,,,,,,"4.250000","8303.250000","9487.750000","1.875000",,"283.500000",,,,"3.000000","0.000000","0.333333","3.000000","5.625000","0.000000","63.800000","0.000000","2.800000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1052.500000",,"1052.500000",,"1052.500000",,"194.500000","0.000000",,,,,,,,,"6.000000","7917.500000","9537.000000","0.750000",,"419.250000",,,,"3.600000","0.000000","1.000000","6.333333","6.750000","0.000000","74.400000","0.000000","1.400000","73.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1119.250000",,"1119.250000",,"1119.250000",,"170.500000","0.000000",,,,,,,,,"4.250000","8421.500000","9519.750000","0.750000",,"297.625000",,,,"2.000000","0.000000","1.000000","5.666667","3.375000","0.000000","41.000000","0.000000","1.400000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1163.000000",,"1163.000000",,"1163.000000",,"268.250000","0.000000",,,,,,,,,"4.000000","8750.000000","9688.500000","4.875000",,"213.750000",,,,"2.000000","0.375000","1.000000","6.000000","3.000000","0.000000","42.200000","0.000000","6.800000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1135.750000",,"1135.750000",,"1135.750000",,"192.500000","0.000000",,,,,,,,,"5.250000","8544.250000","9544.250000","6.750000",,"414.250000",,,,"2.000000","0.375000","1.000000","7.000000","3.000000","0.000000","40.200000","0.000000","5.800000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1113.000000",,"1113.000000",,"1113.000000",,"230.750000","0.000000",,,,,,,,,"30.000000","8372.750000","9744.000000","343.125000",,"1490.875000",,,,"13.600000","11.875000","2.333333","14.666667","13.500000","0.000000","275.000000","0.000000","129.800000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1149.500000",,"1149.500000",,"1149.500000",,"391.000000","0.000000",,,,,,,,,"7.750000","8647.500000","9332.000000","0.750000",,"482.500000",,,,"2.600000","0.000000","1.000000","10.666667","4.875000","0.000000","55.000000","0.000000","0.800000","54.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1118.500000",,"1118.500000",,"1118.500000",,"456.250000","0.000000",,,,,,,,,"3.750000","8413.750000","9287.000000","3.000000",,"280.500000",,,,"1.600000","0.000000","0.666667","5.333333","2.625000","0.000000","33.000000","0.000000","3.800000","29.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1049.250000",,"1049.250000",,"1049.250000",,"376.500000","0.000000",,,,,,,,,"4.750000","7892.000000","9375.000000","0.750000",,"337.000000",,,,"1.600000","0.000000","0.666667","11.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1070.500000",,"1070.500000",,"1070.500000",,"235.750000","0.000000",,,,,,,,,"13.000000","8053.000000","9540.750000","11.250000",,"898.125000",,,,"6.200000","1.125000","1.000000","13.000000","10.125000","0.000000","126.600000","0.000000","14.800000","111.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"879.000000",,"879.000000",,"879.000000",,"224.250000","0.000000",,,,,,,,,"3.250000","6611.250000","9439.250000","2.250000",,"261.375000",,,,"1.400000","0.000000","0.666667","3.666667","2.625000","0.000000","30.800000","0.000000","1.400000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1266.000000",,"1266.000000",,"1266.000000",,"245.250000","0.000000",,,,,,,,,"5.750000","9523.000000","9497.500000","1.500000",,"525.625000",,,,"2.800000","0.000000","1.000000","17.000000","5.250000","0.000000","58.400000","0.000000","1.600000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1192.250000",,"1192.250000",,"1192.250000",,"222.000000","0.000000",,,,,,,,,"39.500000","8970.000000","10132.750000","800.000000",,"926.500000",,,,"12.200000","17.125000","3.000000","24.333333","5.125000","0.000000","246.600000","0.000000","190.400000","56.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.250000",,"832.250000",,"832.250000",,"290.750000","0.000000",,,,,,,,,"138.750000","6261.000000","11618.250000","2486.375000",,"2502.125000",,,,"48.400000","63.125000","4.333333","17.000000","27.250000","0.000000","969.400000","0.000000","670.000000","299.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"890.250000",,"890.250000",,"890.250000",,"162.750000","0.000000",,,,,,,,,"37.500000","6698.000000","9728.250000","145.500000",,"2053.875000",,,,"13.200000","4.750000","2.666667","16.666667","20.500000","0.000000","267.200000","0.000000","52.000000","215.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1097.000000",,"1097.000000",,"1097.000000",,"226.000000","0.000000",,,,,,,,,"132.250000","8252.000000","10489.000000","1836.375000",,"5403.375000",,,,"32.000000","28.875000","4.000000","54.333333","30.625000","0.000000","641.600000","0.000000","310.400000","331.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1106.000000",,"1106.000000",,"1106.000000",,"233.250000","0.000000",,,,,,,,,"59.750000","8320.750000","9779.500000","235.375000",,"3152.500000",,,,"14.800000","6.000000","7.333333","26.000000","21.750000","0.000000","298.000000","0.000000","65.400000","232.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"919.500000",,"919.500000",,"919.500000",,"218.000000","0.000000",,,,,,,,,"132.750000","6918.250000","11311.000000","2017.875000",,"4981.875000",,,,"52.800000","42.500000","3.333333","14.333333","56.250000","0.000000","1058.800000","0.000000","456.400000","602.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"721.500000",,"721.500000",,"721.500000",,"245.750000","0.000000",,,,,,,,,"199.250000","5428.500000","13670.500000","5626.000000",,"1585.000000",,,,"75.600000","124.000000","3.000000","14.666667","17.500000","0.000000","1513.400000","0.000000","1324.800000","188.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"692.500000",,"692.500000",,"692.500000",,"240.750000","0.000000",,,,,,,,,"185.250000","5208.500000","13591.750000","5036.625000",,"3171.750000",,,,"67.800000","103.875000","2.333333","40.000000","22.875000","0.000000","1356.600000","0.000000","1111.000000","245.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"391.250000","0.000000",,,,,,,,,"118.000000","4800.750000","11860.500000","3595.750000",,"1887.250000",,,,"57.200000","83.125000","3.333333","18.666667","23.750000","0.000000","1145.600000","0.000000","887.800000","257.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.250000",,"884.250000",,"884.250000",,"164.500000","0.000000",,,,,,,,,"60.500000","6650.750000","9566.000000","20.875000",,"4638.875000",,,,"19.600000","2.250000","4.000000","23.333333","34.375000","0.000000","394.400000","0.000000","26.600000","367.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"888.500000",,"888.500000",,"888.500000",,"198.000000","0.000000",,,,,,,,,"29.750000","6684.250000","9823.250000","97.125000",,"1653.000000",,,,"11.600000","8.125000","3.000000","26.333333","13.125000","0.000000","233.400000","0.000000","90.000000","143.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"49.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"770.750000",,"770.750000",,"770.750000",,"347.000000","0.000000",,,,,,,,,"35.500000","5800.750000","9857.250000","99.250000",,"1902.375000",,,,"20.200000","11.500000","3.333333","14.333333","26.250000","0.000000","406.600000","0.000000","124.000000","282.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"773.750000",,"773.750000",,"773.750000",,"366.000000","0.000000",,,,,,,,,"36.250000","5821.250000","9557.250000","81.375000",,"2123.125000",,,,"9.800000","6.625000","3.666667","21.666667","11.625000","0.000000","198.200000","0.000000","72.000000","126.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"776.000000",,"776.000000",,"776.000000",,"146.500000","0.000000",,,,,,,,,"97.500000","5839.500000","9938.250000","144.375000",,"6435.750000",,,,"43.800000","7.750000","2.666667","16.666667","74.125000","0.000000","878.400000","0.000000","84.800000","793.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"830.000000",,"830.000000",,"830.000000",,"173.500000","0.000000",,,,,,,,,"96.000000","6245.000000","9766.500000","166.625000",,"6922.000000",,,,"37.000000","5.500000","3.333333","14.333333","63.625000","0.000000","740.600000","0.000000","60.600000","680.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"845.000000",,"845.000000",,"845.000000",,"176.250000","0.000000",,,,,,,,,"61.500000","6355.500000","9618.000000","511.500000",,"3904.125000",,,,"21.800000","15.000000","2.333333","30.666667","25.125000","0.000000","436.000000","0.000000","161.200000","274.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"546.500000",,"546.500000",,"546.500000",,"192.750000","0.000000",,,,,,,,,"152.000000","4113.250000","13040.250000","4297.875000",,"3844.875000",,,,"65.600000","83.250000","1.666667","19.666667","39.750000","0.000000","1312.800000","0.000000","891.000000","421.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"571.000000",,"571.000000",,"571.000000",,"202.000000","0.000000",,,,,,,,,"153.500000","4297.250000","12469.250000","5664.375000",,"572.500000",,,,"77.400000","137.750000","1.666667","10.666667","6.375000","0.000000","1549.400000","0.000000","1478.000000","71.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"16.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"599.000000",,"599.000000",,"599.000000",,"167.000000","0.000000",,,,,,,,,"170.000000","4509.000000","12168.500000","5083.000000",,"3655.375000",,,,"65.000000","99.500000","2.000000","61.000000","22.000000","0.000000","1300.800000","0.000000","1061.200000","239.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.500000",,"856.500000",,"856.500000",,"170.000000","0.000000",,,,,,,,,"34.250000","6444.250000","9763.500000","436.000000",,"778.125000",,,,"16.600000","20.875000","1.333333","19.666667","10.375000","0.000000","335.600000","0.000000","221.400000","114.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"844.750000",,"844.750000",,"844.750000",,"151.250000","0.000000",,,,,,,,,"9.000000","6356.000000","9453.000000","108.625000",,"234.375000",,,,"3.400000","1.875000","2.333333","6.666667","4.375000","0.000000","70.600000","0.000000","22.600000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"927.250000",,"927.250000",,"927.250000",,"272.000000","0.000000",,,,,,,,,"92.500000","6976.000000","10669.250000","3851.000000",,"289.375000",,,,"32.800000","59.000000","1.666667","8.666667","2.125000","0.000000","658.600000","0.000000","634.600000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"92.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"862.250000",,"862.250000",,"862.250000",,"178.500000","0.000000",,,,,,,,,"233.000000","6485.750000","13051.000000","8340.375000",,"213.375000",,,,"90.000000","164.250000","1.666667","3.000000","4.125000","0.000000","1800.600000","0.000000","1754.200000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"152.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"738.000000",,"738.000000",,"738.000000",,"443.750000","0.000000",,,,,,,,,"192.500000","5551.000000","11826.750000","6543.750000",,"3211.125000",,,,"77.200000","128.625000","1.666667","26.666667","16.125000","0.000000","1545.600000","0.000000","1369.800000","175.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"879.000000",,"879.000000",,"879.000000",,"351.750000","0.000000",,,,,,,,,"123.000000","6611.750000","10663.500000","3568.500000",,"2447.625000",,,,"51.600000","73.875000","2.333333","14.000000","22.500000","0.000000","1033.800000","0.000000","790.600000","243.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1041.250000",,"1041.250000",,"1041.250000",,"264.000000","0.000000",,,,,,,,,"2.000000","7831.500000","9382.250000","1.875000",,"205.125000",,,,"2.000000","0.000000","0.333333","4.666667","3.375000","0.000000","41.200000","0.000000","2.800000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1236.000000",,"1236.000000",,"1236.000000",,"258.000000","0.000000",,,,,,,,,"4.000000","9296.000000","9467.250000","3.000000",,"248.500000",,,,"1.000000","0.375000","1.000000","6.333333","1.375000","0.000000","21.600000","0.000000","4.400000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1147.500000",,"1147.500000",,"1147.500000",,"239.250000","0.000000",,,,,,,,,"9.000000","8632.750000","9486.000000","10.125000",,"353.250000",,,,"3.400000","1.125000","2.666667","7.000000","4.875000","0.000000","70.600000","0.000000","15.200000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"838.000000",,"838.000000",,"838.000000",,"317.500000","0.000000",,,,,,,,,"7.000000","6305.750000","9348.750000","2.250000",,"428.250000",,,,"2.400000","0.250000","3.333333","12.000000","4.000000","0.000000","49.200000","0.000000","4.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"972.250000",,"972.250000",,"972.250000",,"284.000000","0.000000",,,,,,,,,"5.250000","7314.250000","9480.000000","5.375000",,"275.625000",,,,"1.800000","0.750000","3.000000","8.000000","2.500000","0.000000","39.600000","0.000000","11.600000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"757.500000",,"757.500000",,"757.500000",,"294.250000","0.000000",,,,,,,,,"128.250000","5700.250000","13223.750000","5434.500000",,"328.500000",,,,"54.800000","99.375000","1.666667","9.333333","2.250000","0.000000","1096.200000","0.000000","1068.600000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"301.750000",,"301.750000",,"301.750000",,"157.250000","0.000000",,,,,,,,,"201.000000","2272.500000","17358.750000","7626.250000",,"23.250000",,,,"83.200000","153.750000","1.666667","0.666667","2.250000","0.000000","1665.400000","0.000000","1638.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"340.250000",,"340.250000",,"340.250000",,"174.500000","0.000000",,,,,,,,,"219.000000","2562.250000","16424.250000","6782.375000",,"3898.125000",,,,"74.000000","122.500000","1.666667","47.666667","15.750000","0.000000","1482.400000","0.000000","1311.000000","171.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"246.750000",,"246.750000",,"246.750000",,"209.750000","0.000000",,,,,,,,,"137.750000","1859.500000","16981.500000","2947.875000",,"2074.875000",,,,"73.800000","120.125000","2.666667","15.333333","17.625000","0.000000","1479.800000","0.000000","1288.400000","191.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","30.000000",,,,,,,,,"145.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"164.250000",,"164.250000",,"164.250000",,"134.000000","0.000000",,,,,,,,,"336.000000","1238.500000","18437.250000","9678.250000",,"8990.250000",,,,"137.200000","222.500000","3.000000","23.000000","34.750000","0.000000","2746.400000","0.000000","2372.200000","374.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","10.000000",,,,,,,,,"64.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.250000",,"179.250000",,"179.250000",,"205.250000","0.000000",,,,,,,,,"318.750000","1351.000000","17913.500000","8686.125000",,"10420.000000",,,,"127.600000","208.750000","1.666667","34.000000","30.375000","0.000000","2552.400000","0.000000","2226.400000","326.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"114.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"137.750000",,"137.750000",,"137.750000",,"147.000000","0.000000",,,,,,,,,"38.250000","1037.750000","18180.000000","631.625000",,"152.750000",,,,"23.200000","31.250000","2.000000","1.666667","11.875000","0.000000","465.600000","0.000000","334.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"89.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"131.750000",,"131.750000",,"131.750000",,"214.000000","0.000000",,,,,,,,,"18.750000","994.250000","17890.000000","45.250000",,"106.000000",,,,"6.400000","3.375000","1.333333","1.666667","8.625000","0.000000","131.800000","0.000000","37.600000","94.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","11.000000",,,,,,,,,"2409.000000","2501.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"272.750000",,"272.750000",,"272.750000",,"234.000000","0.000000",,,,,,,,,"77.250000","2053.250000","16793.000000","27.000000",,"4003.875000",,,,"23.800000","1.500000","7.666667","23.000000","43.000000","0.000000","479.400000","0.000000","18.600000","460.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1986.000000","19.000000",,,,,,,,,"27730.000000","3613.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"139.000000",,"139.000000",,"139.000000",,"160.750000","0.000000",,,,,,,,,"6.250000","1049.000000","18475.000000","15.375000",,"202.750000",,,,"4.000000","0.750000","3.333333","2.666667","6.250000","0.000000","80.000000","0.000000","10.400000","69.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"202.000000",,"202.000000",,"202.000000",,"169.750000","0.000000",,,,,,,,,"4.750000","1521.250000","17906.250000","6.750000",,"129.750000",,,,"5.400000","0.000000","3.333333","1.666667","9.750000","0.000000","109.800000","0.000000","2.200000","107.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"109.250000",,"109.250000",,"109.250000",,"169.500000","0.000000",,,,,,,,,"4.250000","825.500000","18638.750000","2.250000",,"69.750000",,,,"2.200000","0.000000","1.333333","1.333333","4.125000","0.000000","46.800000","0.000000","0.400000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"140.750000","0.000000",,,,,,,,,"1.250000","453.500000","19198.500000","0.000000",,"42.625000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"103.500000","0.000000",,,,,,,,,"1.750000","510.750000","19209.750000","0.000000",,"43.875000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.600000","0.000000","0.400000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"96.500000","0.000000",,,,,,,,,"1.250000","453.750000","19397.250000","0.000000",,"20.625000",,,,"0.800000","0.000000","0.000000","13.666667","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"113.250000","0.000000",,,,,,,,,"1.000000","445.750000","19323.000000","0.000000",,"18.000000",,,,"0.800000","0.000000","0.000000","87.333333","1.500000","0.000000","19.800000","0.000000","0.200000","19.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.750000",,"70.750000",,"70.750000",,"101.500000","0.000000",,,,,,,,,"1.250000","536.750000","19283.250000","0.000000",,"36.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"126.500000","0.000000",,,,,,,,,"0.750000","452.750000","19248.250000","0.000000",,"27.625000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"118.250000","0.000000",,,,,,,,,"0.750000","441.750000","19263.250000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","0.000000","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"88.250000",,"88.250000",,"88.250000",,"112.000000","0.000000",,,,,,,,,"3.250000","667.500000","19030.000000","0.000000",,"88.125000",,,,"3.800000","0.000000","0.000000","0.333333","7.125000","0.000000","79.800000","0.000000","0.200000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"106.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"177.000000",,"177.000000",,"177.000000",,"171.750000","0.000000",,,,,,,,,"10.500000","1333.750000","17748.750000","16.500000",,"162.250000",,,,"7.400000","1.375000","2.333333","1.333333","12.250000","0.000000","148.000000","0.000000","16.400000","131.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"455.000000","544.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"255.250000",,"255.250000",,"255.250000",,"181.250000","0.000000",,,,,,,,,"19.750000","1923.000000","16834.000000","14.500000",,"317.875000",,,,"9.000000","0.625000","1.333333","3.000000","16.000000","0.000000","181.800000","0.000000","8.200000","173.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","15.000000",,,,,,,,,"2880.000000","3071.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"242.500000",,"242.500000",,"242.500000",,"123.750000","0.000000",,,,,,,,,"42.750000","1827.250000","17293.500000","0.250000",,"3283.000000",,,,"15.600000","0.000000","2.666667","19.000000","28.875000","0.000000","313.000000","0.000000","1.200000","311.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","5.000000",,,,,,,,,"1035.000000","1113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.250000",,"179.250000",,"179.250000",,"286.500000","0.000000",,,,,,,,,"3.750000","1353.000000","17748.250000","0.625000",,"218.625000",,,,"4.000000","0.000000","4.333333","2.333333","7.375000","0.000000","82.200000","0.000000","2.000000","80.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"108.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"112.750000",,"112.750000",,"112.750000",,"301.000000","0.000000",,,,,,,,,"2.500000","850.750000","18167.250000","0.000000",,"90.375000",,,,"3.800000","0.000000","0.333333","4.333333","7.000000","0.000000","77.800000","0.000000","0.200000","77.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"151.750000",,"151.750000",,"151.750000",,"213.500000","0.000000",,,,,,,,,"2.500000","1145.750000","17743.750000","0.000000",,"100.875000",,,,"3.600000","0.000000","0.000000","1.000000","6.625000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"173.500000","0.000000",,,,,,,,,"1.500000","452.500000","19107.750000","0.000000",,"46.125000",,,,"2.000000","0.000000","0.000000","3.000000","3.625000","0.000000","42.600000","0.000000","0.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"177.250000","0.000000",,,,,,,,,"0.500000","460.000000","19198.000000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"160.250000","0.000000",,,,,,,,,"1.250000","486.250000","19026.000000","0.000000",,"37.500000",,,,"1.400000","0.000000","0.000000","0.333333","2.625000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"112.250000","0.000000",,,,,,,,,"0.750000","438.000000","19373.000000","0.000000",,"13.875000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"191.250000","0.000000",,,,,,,,,"0.500000","412.750000","18993.500000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"118.750000","0.000000",,,,,,,,,"2.000000","480.000000","19166.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.000000","2.875000","0.000000","35.200000","0.000000","0.200000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"132.000000","0.000000",,,,,,,,,"0.250000","404.000000","19248.000000","0.000000",,"8.125000",,,,"0.200000","0.000000","0.000000","0.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"157.000000","0.000000",,,,,,,,,"0.750000","408.500000","19278.250000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"132.250000","0.000000",,,,,,,,,"2.000000","497.750000","19234.000000","0.000000",,"48.750000",,,,"2.000000","0.000000","0.000000","1.333333","3.750000","0.000000","42.200000","0.000000","0.000000","42.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"111.750000","0.000000",,,,,,,,,"7.750000","1097.750000","18184.750000","0.250000",,"156.625000",,,,"7.000000","0.000000","6.000000","1.333333","12.000000","0.000000","142.000000","0.000000","1.400000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"488.000000","586.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"154.750000",,"154.750000",,"154.750000",,"149.250000","0.000000",,,,,,,,,"6.000000","1169.500000","17919.750000","52.875000",,"103.375000",,,,"5.400000","3.000000","0.333333","1.000000","7.625000","0.000000","110.200000","0.000000","35.800000","74.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"97.500000",,"97.500000",,"97.500000",,"228.250000","0.000000",,,,,,,,,"2.000000","735.750000","18442.500000","12.375000",,"65.625000",,,,"2.600000","0.375000","1.666667","2.333333","4.125000","0.000000","54.200000","0.000000","7.600000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"127.500000",,"127.500000",,"127.500000",,"120.250000","0.000000",,,,,,,,,"6.500000","963.000000","18459.500000","4.875000",,"124.750000",,,,"5.600000","0.000000","4.666667","2.000000","10.375000","0.000000","112.800000","0.000000","0.800000","112.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"64.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"112.500000",,"112.500000",,"112.500000",,"156.750000","0.000000",,,,,,,,,"3.250000","850.250000","18498.250000","0.000000",,"55.875000",,,,"1.800000","0.000000","0.000000","1.000000","3.375000","0.000000","39.000000","0.000000","0.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","419.500000","19175.750000","0.000000",,"39.375000",,,,"2.000000","0.000000","1.333333","1.333333","3.750000","0.000000","42.800000","0.000000","0.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"157.500000","0.000000",,,,,,,,,"1.250000","452.750000","19200.500000","12.625000",,"18.750000",,,,"1.600000","1.000000","2.000000","1.000000","1.375000","0.000000","34.800000","0.000000","15.800000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"164.500000","0.000000",,,,,,,,,"13.250000","516.500000","19016.500000","241.000000",,"34.875000",,,,"6.600000","10.625000","1.666667","0.333333","1.375000","0.000000","133.000000","0.000000","114.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"246.000000","302.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","422.000000","19207.750000","0.000000",,"33.375000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","38.400000","0.000000","0.000000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"106.500000","0.000000",,,,,,,,,"0.750000","416.750000","19279.250000","0.000000",,"13.500000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.400000","0.000000","0.000000","10.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"114.250000","0.000000",,,,,,,,,"2.000000","427.000000","19296.000000","0.000000",,"19.500000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"111.000000","0.000000",,,,,,,,,"4.000000","433.000000","19307.500000","0.000000",,"16.125000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.600000","0.000000","0.000000","11.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"102.750000","0.000000",,,,,,,,,"1.750000","447.750000","19294.000000","0.000000",,"16.000000",,,,"0.800000","0.000000","2.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.200000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"125.250000","0.000000",,,,,,,,,"0.750000","423.500000","19229.250000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"108.250000",,"108.250000",,"108.250000",,"127.000000","0.000000",,,,,,,,,"7.500000","817.750000","18757.500000","2.625000",,"126.000000",,,,"5.600000","0.000000","6.000000","6.333333","9.875000","0.000000","112.400000","0.000000","0.800000","111.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"405.000000","480.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"160.750000",,"160.750000",,"160.750000",,"144.500000","0.000000",,,,,,,,,"4.750000","1212.750000","17988.000000","1.875000",,"127.125000",,,,"5.000000","0.000000","0.666667","22.333333","9.500000","0.000000","103.600000","0.000000","2.000000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"245.000000","290.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"222.750000",,"222.750000",,"222.750000",,"117.750000","0.000000",,,,,,,,,"15.750000","1680.250000","17308.250000","0.000000",,"297.000000",,,,"8.200000","0.000000","1.000000","7.666667","15.250000","0.000000","165.000000","0.000000","0.400000","164.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","9.000000",,,,,,,,,"1570.000000","1763.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.750000",,"68.750000",,"68.750000",,"138.750000","0.000000",,,,,,,,,"5.000000","523.000000","19175.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","3.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.000000","3.000000",,,,,,,,,"732.000000","729.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.500000",,"64.500000",,"64.500000",,"239.250000","0.000000",,,,,,,,,"4.000000","487.250000","18849.250000","0.000000",,"3.000000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","4.000000",,,,,,,,,"842.000000","842.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"228.000000",,"228.000000",,"228.000000",,"189.500000","0.000000",,,,,,,,,"35.000000","1717.250000","17721.000000","1.875000",,"1793.250000",,,,"10.200000","0.000000","2.666667","21.000000","18.750000","0.000000","206.600000","0.000000","3.600000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1035.000000","13.000000",,,,,,,,,"14803.000000","2489.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"122.250000",,"122.250000",,"122.250000",,"247.500000","0.000000",,,,,,,,,"5.250000","922.750000","18285.250000","2.250000",,"126.750000",,,,"5.800000","0.000000","0.666667","1.666667","10.750000","0.000000","119.600000","0.000000","1.800000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"158.000000","188.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"182.500000","0.000000",,,,,,,,,"0.750000","501.750000","19063.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.800000","0.000000","0.000000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.750000",,"69.750000",,"69.750000",,"160.000000","0.000000",,,,,,,,,"11.500000","527.250000","19121.250000","372.750000",,"24.375000",,,,"4.400000","6.000000","2.333333","1.000000","2.250000","0.000000","91.400000","0.000000","66.200000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"386.000000","433.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.500000",,"162.500000",,"162.500000",,"147.500000","0.000000",,,,,,,,,"28.250000","1224.000000","18232.250000","581.125000",,"52.375000",,,,"25.600000","44.500000","0.666667","1.000000","3.250000","0.000000","512.800000","0.000000","476.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"160.000000","175.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"118.250000","0.000000",,,,,,,,,"1.000000","422.250000","19271.500000","0.000000",,"28.000000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"115.500000","0.000000",,,,,,,,,"0.500000","410.500000","19302.000000","0.000000",,"36.625000",,,,"0.600000","0.000000","0.000000","1.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"124.750000","0.000000",,,,,,,,,"2.250000","495.000000","19173.250000","0.000000",,"46.000000",,,,"1.600000","0.000000","0.000000","0.333333","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"113.500000","0.000000",,,,,,,,,"0.750000","405.250000","19295.750000","0.000000",,"28.000000",,,,"1.200000","0.000000","0.000000","11.333333","2.125000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"108.750000","0.000000",,,,,,,,,"0.500000","402.750000","19357.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.666667","0.625000","0.000000","9.200000","0.000000","0.000000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"126.250000","0.000000",,,,,,,,,"1.500000","511.000000","19204.500000","0.000000",,"54.750000",,,,"2.200000","0.000000","1.333333","0.666667","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"146.500000","0.000000",,,,,,,,,"15.750000","1197.000000","18123.250000","6.750000",,"230.125000",,,,"10.200000","0.375000","0.333333","0.333333","18.375000","0.000000","206.400000","0.000000","7.400000","199.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","7.000000",,,,,,,,,"929.000000","1171.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"130.500000","0.000000",,,,,,,,,"5.750000","1113.250000","18286.500000","1.500000",,"143.125000",,,,"5.400000","0.000000","2.666667","1.000000","10.000000","0.000000","109.800000","0.000000","0.400000","109.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"212.000000","244.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"120.750000","0.000000",,,,,,,,,"1.000000","497.000000","19167.000000","0.000000",,"30.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"153.500000","0.000000",,,,,,,,,"1.000000","406.500000","19257.500000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"94.250000","0.000000",,,,,,,,,"1.000000","434.250000","19351.750000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","5.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.500000",,"116.500000",,"116.500000",,"125.250000","0.000000",,,,,,,,,"14.250000","881.000000","18691.500000","158.625000",,"62.625000",,,,"9.800000","15.000000","0.333333","0.666667","2.875000","0.000000","197.000000","0.000000","163.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"224.500000","0.000000",,,,,,,,,"1.000000","405.500000","19090.750000","0.000000",,"23.250000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"190.500000","0.000000",,,,,,,,,"0.500000","413.750000","19097.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","2.666667","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"160.500000","0.000000",,,,,,,,,"1.000000","500.000000","19105.000000","0.000000",,"45.750000",,,,"1.800000","0.000000","0.000000","3.000000","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"130.250000","0.000000",,,,,,,,,"0.500000","389.750000","19273.750000","0.000000",,"10.375000",,,,"0.200000","0.000000","0.000000","6.666667","0.375000","0.000000","7.400000","0.000000","0.000000","7.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"124.500000","0.000000",,,,,,,,,"1.000000","420.500000","19223.500000","0.000000",,"25.000000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.200000","0.000000","0.000000","24.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.000000",,"147.000000",,"147.000000",,"151.500000","0.000000",,,,,,,,,"6.250000","1111.500000","18403.250000","0.750000",,"118.750000",,,,"5.000000","0.000000","1.666667","1.000000","9.250000","0.000000","100.800000","0.000000","0.600000","100.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"78.250000",,"78.250000",,"78.250000",,"139.000000","0.000000",,,,,,,,,"2.500000","591.250000","19009.500000","0.000000",,"57.750000",,,,"1.800000","0.000000","0.000000","0.666667","3.250000","0.000000","36.800000","0.000000","0.000000","36.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.500000",,"58.500000",,"58.500000",,"123.250000","0.000000",,,,,,,,,"1.000000","443.500000","19295.500000","0.000000",,"30.375000",,,,"1.200000","0.000000","0.000000","3.666667","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"121.000000","0.000000",,,,,,,,,"1.000000","512.500000","19125.250000","0.000000",,"33.000000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"155.500000","0.000000",,,,,,,,,"3.250000","421.250000","19143.000000","0.000000",,"23.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"114.500000","0.000000",,,,,,,,,"0.500000","431.000000","19341.000000","0.000000",,"20.625000",,,,"0.600000","0.000000","0.000000","5.000000","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"129.500000","0.000000",,,,,,,,,"2.000000","497.000000","19211.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","12.333333","2.500000","0.000000","29.400000","0.000000","0.000000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"189.500000","0.000000",,,,,,,,,"5.000000","412.250000","19131.250000","0.000000",,"20.625000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.400000","0.000000","0.000000","23.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"261.750000","0.000000",,,,,,,,,"1.250000","394.250000","19025.000000","0.000000",,"11.125000",,,,"0.200000","0.000000","0.000000","1.333333","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.750000",,"66.750000",,"66.750000",,"311.750000","0.000000",,,,,,,,,"1.750000","506.000000","18766.000000","3.375000",,"51.375000",,,,"2.200000","0.375000","0.666667","9.000000","3.750000","0.000000","45.800000","0.000000","4.400000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"102.250000",,"102.250000",,"102.250000",,"346.000000","0.000000",,,,,,,,,"3.250000","772.750000","18513.500000","0.000000",,"61.875000",,,,"3.000000","0.000000","1.000000","1.333333","5.625000","0.000000","63.000000","0.000000","0.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"288.000000","0.000000",,,,,,,,,"5.250000","897.500000","18532.750000","1.875000",,"131.875000",,,,"4.400000","0.000000","2.000000","1.333333","8.250000","0.000000","91.000000","0.000000","0.600000","90.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"187.250000","0.000000",,,,,,,,,"1.250000","486.500000","19063.500000","0.000000",,"29.625000",,,,"1.000000","0.000000","0.000000","18.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"150.500000","0.000000",,,,,,,,,"0.500000","413.000000","19210.000000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.500000",,"59.500000",,"59.500000",,"128.250000","0.000000",,,,,,,,,"2.000000","452.250000","19229.000000","0.000000",,"26.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.000000",,"71.000000",,"71.000000",,"124.250000","0.000000",,,,,,,,,"2.250000","535.750000","19193.250000","0.375000",,"51.750000",,,,"2.000000","0.000000","2.666667","3.666667","3.750000","0.000000","40.800000","0.000000","0.200000","40.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.250000",,"52.250000",,"52.250000",,"171.000000","0.000000",,,,,,,,,"1.250000","396.250000","19177.500000","0.000000",,"16.000000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","16.200000","0.000000","0.000000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"120.500000","0.000000",,,,,,,,,"0.250000","415.500000","19324.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","14.000000","0.000000","0.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"203.500000","0.000000",,,,,,,,,"1.750000","504.750000","19065.000000","0.000000",,"45.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","34.200000","0.000000","0.000000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"387.000000","0.000000",,,,,,,,,"0.500000","413.750000","18961.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.200000","0.000000","0.000000","5.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"285.000000","0.000000",,,,,,,,,"0.750000","417.750000","19037.250000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"514.750000","0.000000",,,,,,,,,"6.500000","1279.000000","17760.500000","2.125000",,"140.625000",,,,"4.800000","0.000000","8.333333","0.666667","8.875000","0.000000","98.400000","0.000000","1.600000","96.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"115.250000",,"115.250000",,"115.250000",,"424.500000","0.000000",,,,,,,,,"3.000000","871.250000","18358.250000","0.000000",,"104.250000",,,,"4.200000","0.000000","0.000000","1.333333","7.875000","0.000000","86.200000","0.000000","0.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.000000",,"145.000000",,"145.000000",,"234.000000","0.000000",,,,,,,,,"5.000000","1094.750000","18246.250000","0.000000",,"106.500000",,,,"4.400000","0.000000","0.000000","1.666667","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"115.500000",,"115.500000",,"115.500000",,"241.750000","0.000000",,,,,,,,,"2.250000","871.750000","18636.250000","0.000000",,"90.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","55.400000","0.000000","0.000000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"140.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"151.000000",,"151.000000",,"151.000000",,"400.500000","0.000000",,,,,,,,,"4.250000","1139.750000","17702.000000","1.125000",,"117.750000",,,,"4.600000","0.000000","0.666667","1.333333","8.500000","0.000000","94.000000","0.000000","1.400000","92.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.750000",,"71.750000",,"71.750000",,"309.250000","0.000000",,,,,,,,,"1.750000","540.000000","18743.000000","0.375000",,"73.875000",,,,"2.200000","0.000000","2.000000","1.000000","4.000000","0.000000","45.000000","0.000000","0.200000","44.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"218.000000","0.000000",,,,,,,,,"1.750000","499.250000","19000.500000","0.000000",,"49.000000",,,,"2.200000","0.000000","0.000000","2.000000","4.000000","0.000000","45.000000","0.000000","0.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"267.250000","0.000000",,,,,,,,,"0.500000","411.750000","19043.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"236.000000","0.000000",,,,,,,,,"0.500000","413.500000","19090.750000","0.000000",,"27.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"221.000000","0.000000",,,,,,,,,"3.000000","492.250000","18910.000000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","35.400000","0.000000","0.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"160.500000","0.000000",,,,,,,,,"0.250000","393.250000","19235.250000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"146.250000","0.000000",,,,,,,,,"1.000000","421.750000","19215.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"253.000000","0.000000",,,,,,,,,"0.750000","490.000000","18851.750000","0.000000",,"33.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"285.250000","0.000000",,,,,,,,,"0.500000","401.250000","19002.750000","0.000000",,"15.625000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","15.600000","0.000000","0.000000","15.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"265.000000","0.000000",,,,,,,,,"1.500000","416.000000","19001.750000","0.000000",,"34.500000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.500000",,"61.500000",,"61.500000",,"403.500000","0.000000",,,,,,,,,"1.250000","464.250000","18667.500000","0.000000",,"48.250000",,,,"2.200000","0.000000","0.000000","0.666667","4.000000","0.000000","45.200000","0.000000","0.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"196.500000","0.000000",,,,,,,,,"1.250000","460.500000","19128.000000","0.375000",,"25.875000",,,,"1.000000","0.000000","2.333333","1.000000","1.750000","0.000000","21.800000","0.000000","0.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"414.250000","0.000000",,,,,,,,,"0.500000","407.750000","18876.250000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"547.750000","0.000000",,,,,,,,,"1.250000","478.250000","18546.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","34.400000","0.000000","0.000000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"584.750000","0.000000",,,,,,,,,"0.750000","385.250000","18552.500000","0.000000",,"22.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"49.000000",,"49.000000",,"49.000000",,"543.750000","0.000000",,,,,,,,,"0.500000","370.750000","18663.250000","0.000000",,"16.000000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"304.250000","0.000000",,,,,,,,,"1.750000","498.250000","18846.500000","0.000000",,"34.875000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"174.750000","0.000000",,,,,,,,,"2.250000","433.750000","19198.000000","0.000000",,"26.875000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","28.200000","0.000000","0.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"229.250000","0.000000",,,,,,,,,"0.500000","401.500000","19091.000000","0.000000",,"10.125000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"145.500000","0.000000",,,,,,,,,"1.250000","502.750000","19121.000000","0.000000",,"42.750000",,,,"1.800000","0.000000","0.000000","1.333333","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"166.750000","0.000000",,,,,,,,,"2.500000","516.500000","19013.500000","0.000000",,"75.250000",,,,"4.200000","0.000000","0.000000","0.666667","7.750000","0.000000","87.200000","0.000000","0.000000","87.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"234.000000","0.000000",,,,,,,,,"5.000000","1277.250000","18109.250000","2.625000",,"150.375000",,,,"4.800000","0.000000","0.333333","0.666667","8.875000","0.000000","99.400000","0.000000","3.200000","96.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"41.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"186.500000","0.000000",,,,,,,,,"2.000000","512.250000","19046.000000","0.000000",,"61.125000",,,,"2.600000","0.000000","0.000000","1.333333","4.750000","0.000000","53.400000","0.000000","0.000000","53.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"187.750000","0.000000",,,,,,,,,"0.500000","384.750000","19146.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","2.000000","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"183.250000","0.000000",,,,,,,,,"0.750000","423.000000","19142.750000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"293.000000","0.000000",,,,,,,,,"1.000000","479.750000","18797.250000","0.000000",,"37.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"252.000000","0.000000",,,,,,,,,"1.250000","399.250000","19075.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"206.500000","0.000000",,,,,,,,,"1.000000","413.000000","19127.250000","0.000000",,"18.000000",,,,"0.400000","0.000000","0.000000","2.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"225.000000","0.000000",,,,,,,,,"1.000000","497.500000","18920.250000","0.000000",,"42.000000",,,,"1.800000","0.000000","0.000000","0.666667","3.375000","0.000000","37.600000","0.000000","0.000000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"157.250000","0.000000",,,,,,,,,"0.750000","405.250000","19162.750000","0.000000",,"15.375000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"132.250000","0.000000",,,,,,,,,"0.750000","424.000000","19264.000000","0.000000",,"21.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"85.000000",,"85.000000",,"85.000000",,"215.750000","0.000000",,,,,,,,,"4.000000","641.250000","18636.500000","0.000000",,"110.500000",,,,"5.600000","0.000000","0.000000","0.666667","10.500000","0.000000","115.600000","0.000000","0.000000","115.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"215.500000",,"215.500000",,"215.500000",,"348.250000","0.000000",,,,,,,,,"224.000000","1623.500000","17417.500000","5071.500000",,"5363.625000",,,,"66.000000","100.625000","1.666667","23.000000","22.500000","0.000000","1321.400000","0.000000","1077.600000","243.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"69.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"205.750000",,"205.750000",,"205.750000",,"405.750000","0.000000",,,,,,,,,"108.750000","1549.000000","17077.250000","527.625000",,"270.750000",,,,"70.000000","121.000000","1.000000","18.666667","9.625000","0.000000","1400.000000","0.000000","1293.600000","106.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","246.000000",,,,,,,,,"2313.000000","4488.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"175.000000",,"175.000000",,"175.000000",,"444.250000","0.000000",,,,,,,,,"102.000000","1318.250000","17540.000000","306.875000",,"214.875000",,,,"40.200000","73.625000","2.000000","2.666667","1.500000","0.000000","805.400000","0.000000","786.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2632.000000","38.000000",,,,,,,,,"36123.000000","4025.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"341.250000",,"341.250000",,"341.250000",,"669.500000","0.000000",,,,,,,,,"285.250000","2569.500000","15648.250000","0.000000",,"8106.750000",,,,"18.800000","0.000000","0.000000","25.666667","35.125000","0.000000","377.800000","0.000000","0.000000","377.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20487.000000","78.000000",,,,,,,,,"277561.000000","24215.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"289.000000",,"289.000000",,"289.000000",,"1043.750000","0.000000",,,,,,,,,"238.750000","2176.750000","15862.000000","0.000000",,"11451.375000",,,,"36.800000","0.000000","4.000000","21.000000","68.875000","0.000000","737.200000","0.000000","0.600000","736.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9414.000000","34.000000",,,,,,,,,"127566.000000","10574.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"278.500000",,"278.500000",,"278.500000",,"593.000000","0.000000",,,,,,,,,"265.750000","2097.500000","16540.750000","6.375000",,"9827.250000",,,,"41.200000","1.125000","2.666667","15.333333","76.125000","0.000000","827.600000","0.000000","12.800000","814.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13348.000000","54.000000",,,,,,,,,"180882.000000","16401.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"345.000000",,"345.000000",,"345.000000",,"625.000000","0.000000",,,,,,,,,"224.250000","2598.500000","16045.000000","1891.875000",,"7637.500000",,,,"80.000000","63.875000","1.333333","10.666667","85.375000","0.000000","1600.000000","0.000000","684.000000","916.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3430.000000","16.000000",,,,,,,,,"46545.000000","4395.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"525.500000",,"525.500000",,"525.500000",,"499.250000","0.000000",,,,,,,,,"36.250000","3956.250000","14345.500000","235.375000",,"936.125000",,,,"15.600000","10.500000","0.666667","8.000000","18.750000","0.000000","312.400000","0.000000","112.800000","199.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"469.000000",,"469.000000",,"469.000000",,"769.750000","0.000000",,,,,,,,,"18.000000","3529.750000","14101.500000","44.250000",,"84.625000",,,,"8.200000","7.500000","1.000000","3.333333","7.500000","0.000000","165.400000","0.000000","82.800000","82.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"400.500000",,"400.500000",,"400.500000",,"615.250000","0.000000",,,,,,,,,"14.750000","3016.750000","13997.750000","46.125000",,"321.375000",,,,"10.000000","10.125000","0.333333","2.333333","8.250000","0.000000","200.600000","0.000000","110.000000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"93.000000","74.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"455.750000",,"455.750000",,"455.750000",,"554.250000","0.000000",,,,,,,,,"3.500000","3430.750000","13868.250000","0.000000",,"82.875000",,,,"4.000000","0.000000","0.000000","1.333333","7.500000","0.000000","81.400000","0.000000","0.000000","81.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"102.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"596.750000",,"596.750000",,"596.750000",,"513.000000","0.000000",,,,,,,,,"8.250000","4491.250000","12623.500000","37.500000",,"277.125000",,,,"6.800000","3.000000","0.666667","2.666667","9.750000","0.000000","139.000000","0.000000","34.200000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"66.000000","78.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"791.000000",,"791.000000",,"791.000000",,"546.250000","0.000000",,,,,,,,,"15.500000","5951.500000","9203.000000","32.250000",,"531.375000",,,,"14.000000","2.250000","1.333333","2.333333","23.625000","0.000000","281.200000","0.000000","25.400000","255.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"76.000000","77.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"921.500000",,"921.500000",,"921.500000",,"540.500000","0.000000",,,,,,,,,"4.750000","6932.500000","9118.500000","0.000000",,"379.125000",,,,"2.800000","0.000000","0.000000","10.333333","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"46.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"805.500000",,"805.500000",,"805.500000",,"589.000000","0.000000",,,,,,,,,"3.250000","6059.250000","9056.500000","1.125000",,"307.750000",,,,"2.000000","0.000000","0.000000","10.333333","3.625000","0.000000","43.600000","0.000000","1.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"889.250000",,"889.250000",,"889.250000",,"679.250000","0.000000",,,,,,,,,"3.000000","6690.250000","9006.000000","0.000000",,"361.750000",,,,"2.000000","0.000000","0.000000","15.333333","3.625000","0.000000","42.400000","0.000000","0.400000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1189.250000",,"1189.250000",,"1189.250000",,"613.000000","0.000000",,,,,,,,,"22.500000","8945.250000","9404.750000","80.250000",,"970.000000",,,,"7.200000","8.625000","0.333333","26.333333","4.750000","0.000000","145.800000","0.000000","92.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1053.500000",,"1053.500000",,"1053.500000",,"541.500000","0.000000",,,,,,,,,"8.500000","7924.750000","9234.250000","0.750000",,"349.375000",,,,"3.000000","0.000000","0.666667","10.000000","5.500000","0.000000","63.800000","0.000000","2.200000","61.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1136.250000",,"1136.250000",,"1136.250000",,"356.500000","0.000000",,,,,,,,,"12.750000","8547.250000","9346.500000","6.750000",,"1193.625000",,,,"4.000000","0.375000","0.666667","28.666667","6.625000","0.000000","80.200000","0.000000","7.800000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"938.500000",,"938.500000",,"938.500000",,"435.000000","0.000000",,,,,,,,,"3.750000","7061.000000","9166.250000","0.000000",,"371.875000",,,,"1.800000","0.000000","2.666667","17.000000","3.250000","0.000000","39.400000","0.000000","0.200000","39.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"959.500000",,"959.500000",,"959.500000",,"365.750000","0.000000",,,,,,,,,"6.750000","7218.500000","9310.250000","0.375000",,"670.500000",,,,"1.600000","0.000000","4.000000","32.666667","3.000000","0.000000","35.400000","0.000000","1.400000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.750000",,"832.750000",,"832.750000",,"426.500000","0.000000",,,,,,,,,"5.750000","6264.750000","9285.750000","45.750000",,"348.375000",,,,"4.800000","4.125000","0.333333","9.333333","4.500000","0.000000","99.400000","0.000000","47.800000","51.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"880.000000",,"880.000000",,"880.000000",,"507.750000","0.000000",,,,,,,,,"2.750000","6621.250000","9099.750000","0.000000",,"316.750000",,,,"1.800000","0.000000","6.000000","14.333333","3.250000","0.000000","36.800000","0.000000","0.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1054.250000",,"1054.250000",,"1054.250000",,"747.500000","0.000000",,,,,,,,,"5.250000","7931.000000","9011.000000","0.000000",,"387.000000",,,,"2.000000","0.000000","1.000000","10.000000","3.750000","0.000000","43.200000","0.000000","0.800000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"793.250000",,"793.250000",,"793.250000",,"654.500000","0.000000",,,,,,,,,"5.000000","5966.750000","9039.000000","0.000000",,"284.500000",,,,"2.200000","0.000000","2.333333","7.333333","4.000000","0.000000","46.400000","0.000000","0.200000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"659.000000",,"659.000000",,"659.000000",,"989.000000","0.000000",,,,,,,,,"3.250000","4957.750000","8746.750000","0.000000",,"288.000000",,,,"1.200000","0.000000","10.333333","13.666667","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"798.250000",,"798.250000",,"798.250000",,"1215.500000","0.000000",,,,,,,,,"4.750000","6007.000000","8648.500000","0.000000",,"333.000000",,,,"1.600000","0.000000","0.666667","9.666667","3.000000","0.000000","35.400000","0.000000","0.200000","35.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.750000",,"604.750000",,"604.750000",,"2008.500000","0.000000",,,,,,,,,"2.750000","4550.000000","8218.750000","0.000000",,"239.875000",,,,"0.800000","0.000000","1.666667","9.666667","1.375000","0.000000","17.400000","0.000000","0.400000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"728.750000",,"728.750000",,"728.750000",,"2824.250000","0.000000",,,,,,,,,"3.000000","5483.500000","7714.250000","0.000000",,"233.250000",,,,"1.200000","0.000000","0.000000","10.333333","2.250000","0.000000","27.200000","0.000000","0.000000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"739.250000",,"739.250000",,"739.250000",,"2619.750000","0.000000",,,,,,,,,"3.250000","5560.750000","7874.750000","0.375000",,"194.500000",,,,"0.800000","0.000000","0.666667","14.000000","1.125000","0.000000","16.600000","0.000000","0.800000","15.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"666.500000",,"666.500000",,"666.500000",,"1319.000000","0.000000",,,,,,,,,"2.500000","5014.250000","8548.500000","0.000000",,"151.125000",,,,"1.200000","0.000000","1.000000","3.333333","2.250000","0.000000","24.800000","0.000000","0.400000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"611.500000",,"611.500000",,"611.500000",,"2970.000000","0.000000",,,,,,,,,"5.750000","4600.250000","7585.000000","0.250000",,"466.875000",,,,"1.800000","0.000000","3.000000","19.333333","3.250000","0.000000","38.400000","0.000000","0.600000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"842.000000",,"842.000000",,"842.000000",,"2099.500000","0.000000",,,,,,,,,"2.750000","6337.000000","8152.500000","0.000000",,"294.375000",,,,"0.800000","0.000000","3.000000","17.000000","1.500000","0.000000","17.400000","0.000000","0.200000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"901.000000",,"901.000000",,"901.000000",,"2142.250000","0.000000",,,,,,,,,"2.750000","6780.000000","8180.250000","0.000000",,"132.000000",,,,"1.200000","0.000000","0.000000","7.333333","2.250000","0.000000","27.200000","0.000000","0.200000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"597.000000",,"597.000000",,"597.000000",,"3233.000000","0.000000",,,,,,,,,"2.750000","4494.250000","7318.500000","0.000000",,"343.375000",,,,"1.000000","0.000000","3.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"11.000000","8.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"750.250000",,"750.250000",,"750.250000",,"2783.000000","0.000000",,,,,,,,,"2.500000","5644.250000","7714.500000","0.000000",,"211.750000",,,,"1.200000","0.000000","2.000000","5.000000","2.250000","0.000000","24.600000","0.000000","0.200000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"814.000000",,"814.000000",,"814.000000",,"2062.250000","0.000000",,,,,,,,,"6.000000","6124.250000","8049.500000","0.000000",,"298.375000",,,,"0.800000","0.000000","0.000000","14.666667","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"924.750000",,"924.750000",,"924.750000",,"1504.500000","0.000000",,,,,,,,,"4.750000","6956.000000","8562.750000","0.000000",,"300.750000",,,,"1.200000","0.000000","0.000000","11.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"646.750000",,"646.750000",,"646.750000",,"2153.750000","0.000000",,,,,,,,,"4.250000","4866.250000","8053.750000","0.000000",,"215.625000",,,,"1.200000","0.000000","4.666667","6.333333","2.250000","0.000000","27.800000","0.000000","0.600000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"875.000000",,"875.000000",,"875.000000",,"653.750000","0.000000",,,,,,,,,"3.000000","6582.750000","9037.250000","0.375000",,"309.625000",,,,"0.800000","0.000000","1.666667","15.000000","1.375000","0.000000","18.200000","0.000000","0.400000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"152.000000","143.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.000000",,"658.000000",,"658.000000",,"1330.500000","0.000000",,,,,,,,,"3.250000","4951.750000","8637.000000","0.000000",,"339.375000",,,,"1.800000","0.000000","0.000000","9.666667","3.250000","0.000000","36.400000","0.000000","0.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"738.250000",,"738.250000",,"738.250000",,"1421.250000","0.000000",,,,,,,,,"7.250000","5555.000000","8678.750000","0.000000",,"290.125000",,,,"0.800000","0.000000","5.333333","35.666667","1.375000","0.000000","16.600000","0.000000","0.400000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"948.250000",,"948.250000",,"948.250000",,"880.000000","0.000000",,,,,,,,,"4.250000","7134.000000","8969.500000","0.375000",,"385.750000",,,,"1.600000","0.000000","0.666667","11.333333","3.000000","0.000000","35.000000","0.000000","0.600000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"969.500000",,"969.500000",,"969.500000",,"733.500000","0.000000",,,,,,,,,"10.500000","7292.750000","9084.000000","0.000000",,"349.375000",,,,"1.600000","0.000000","6.666667","11.000000","2.875000","0.000000","33.600000","0.000000","0.400000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1182.750000",,"1182.750000",,"1182.750000",,"339.250000","0.000000",,,,,,,,,"4.750000","8896.000000","9404.000000","0.000000",,"352.875000",,,,"1.600000","0.000000","0.000000","11.333333","2.875000","0.000000","32.600000","0.000000","0.200000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1155.750000",,"1155.750000",,"1155.750000",,"390.500000","0.000000",,,,,,,,,"6.500000","8694.000000","9356.750000","0.000000",,"445.000000",,,,"1.800000","0.000000","10.000000","23.666667","3.375000","0.000000","38.000000","0.000000","0.400000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1196.250000",,"1196.250000",,"1196.250000",,"427.750000","0.000000",,,,,,,,,"4.750000","8998.500000","9282.000000","0.000000",,"331.875000",,,,"1.000000","0.000000","23.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1197.750000",,"1197.750000",,"1197.750000",,"486.250000","0.000000",,,,,,,,,"4.000000","9009.750000","9251.500000","0.000000",,"415.875000",,,,"1.800000","0.000000","1.000000","26.333333","3.000000","0.000000","36.000000","0.000000","0.400000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"833.750000",,"833.750000",,"833.750000",,"240.000000","0.000000",,,,,,,,,"2.750000","6271.000000","9370.500000","0.250000",,"272.250000",,,,"1.400000","0.000000","3.333333","12.666667","2.250000","0.000000","28.800000","0.000000","1.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"789.000000",,"789.000000",,"789.000000",,"216.500000","0.000000",,,,,,,,,"5.750000","5935.500000","9442.000000","0.000000",,"419.125000",,,,"1.600000","0.000000","2.333333","11.666667","2.875000","0.000000","32.400000","0.000000","0.200000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"809.000000",,"809.000000",,"809.000000",,"472.250000","0.000000",,,,,,,,,"2.000000","6086.250000","9185.250000","0.000000",,"213.750000",,,,"0.600000","0.000000","3.000000","11.333333","1.000000","0.000000","15.200000","0.000000","0.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"774.750000",,"774.750000",,"774.750000",,"348.250000","0.000000",,,,,,,,,"3.250000","5829.250000","9281.500000","0.250000",,"284.250000",,,,"1.400000","0.000000","7.666667","8.333333","2.500000","0.000000","29.200000","0.000000","1.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"785.250000",,"785.250000",,"785.250000",,"320.500000","0.000000",,,,,,,,,"47.750000","5908.750000","9309.750000","5.500000",,"3908.875000",,,,"14.800000","0.750000","6.666667","24.000000","26.625000","0.000000","296.800000","0.000000","11.800000","285.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"825.000000",,"825.000000",,"825.000000",,"429.750000","0.000000",,,,,,,,,"2.500000","6209.500000","9160.000000","1.125000",,"281.250000",,,,"0.600000","0.000000","2.666667","11.666667","1.125000","0.000000","15.400000","0.000000","1.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"778.000000",,"778.000000",,"778.000000",,"404.000000","0.000000",,,,,,,,,"83.750000","5853.250000","9461.750000","5.750000",,"7830.250000",,,,"30.400000","0.750000","6.000000","16.333333","55.875000","0.000000","610.200000","0.000000","11.400000","598.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"945.000000",,"945.000000",,"945.000000",,"560.750000","0.000000",,,,,,,,,"19.500000","7109.000000","9162.250000","14.500000",,"1636.750000",,,,"7.400000","1.375000","2.666667","29.000000","12.250000","0.000000","149.600000","0.000000","15.600000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"787.250000",,"787.250000",,"787.250000",,"513.000000","0.000000",,,,,,,,,"11.250000","5921.750000","9364.250000","16.500000",,"696.750000",,,,"5.000000","1.500000","6.000000","26.666667","7.375000","0.000000","100.400000","0.000000","18.000000","82.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"763.750000",,"763.750000",,"763.750000",,"470.000000","0.000000",,,,,,,,,"5.000000","5745.500000","9151.500000","1.125000",,"433.875000",,,,"1.400000","0.000000","2.666667","12.000000","2.625000","0.000000","31.800000","0.000000","1.400000","30.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"893.250000",,"893.250000",,"893.250000",,"360.500000","0.000000",,,,,,,,,"3.750000","6720.250000","9274.000000","0.000000",,"359.125000",,,,"1.600000","0.000000","0.000000","8.666667","3.000000","0.000000","35.800000","0.000000","0.000000","35.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"888.000000",,"888.000000",,"888.000000",,"426.750000","0.000000",,,,,,,,,"5.250000","6680.250000","9217.750000","0.375000",,"507.375000",,,,"1.600000","0.000000","6.000000","13.333333","2.625000","0.000000","32.800000","0.000000","1.600000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"850.000000",,"850.000000",,"850.000000",,"356.750000","0.000000",,,,,,,,,"25.500000","6393.500000","9354.000000","34.500000",,"1696.875000",,,,"8.200000","3.375000","2.333333","27.333333","11.875000","0.000000","165.600000","0.000000","36.800000","128.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"934.500000",,"934.500000",,"934.500000",,"374.500000","0.000000",,,,,,,,,"32.250000","7029.250000","9829.000000","843.500000",,"493.500000",,,,"13.000000","18.750000","2.333333","14.000000","5.250000","0.000000","263.600000","0.000000","205.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1034.000000",,"1034.000000",,"1034.000000",,"580.750000","0.000000",,,,,,,,,"86.250000","7778.000000","9981.500000","1437.750000",,"2006.250000",,,,"28.800000","37.000000","1.333333","18.666667","16.375000","0.000000","579.400000","0.000000","394.600000","184.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"895.750000",,"895.750000",,"895.750000",,"328.750000","0.000000",,,,,,,,,"36.000000","6740.500000","9422.250000","37.875000",,"2061.625000",,,,"16.600000","3.000000","6.333333","12.666667","28.500000","0.000000","332.800000","0.000000","34.600000","298.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"755.500000",,"755.500000",,"755.500000",,"472.500000","0.000000",,,,,,,,,"4.750000","5684.500000","9128.750000","6.000000",,"286.500000",,,,"1.000000","0.375000","0.666667","13.000000","1.125000","0.000000","22.400000","0.000000","7.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"902.750000",,"902.750000",,"902.750000",,"279.250000","0.000000",,,,,,,,,"3.750000","6789.500000","9328.250000","0.750000",,"305.125000",,,,"1.400000","0.000000","0.666667","21.666667","2.500000","0.000000","31.200000","0.000000","1.200000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"905.000000",,"905.000000",,"905.000000",,"312.750000","0.000000",,,,,,,,,"6.000000","6807.500000","9281.000000","0.750000",,"279.000000",,,,"1.400000","0.000000","0.666667","8.333333","2.250000","0.000000","28.400000","0.000000","0.800000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"946.750000",,"946.750000",,"946.750000",,"409.250000","0.000000",,,,,,,,,"2.750000","7123.250000","9284.000000","2.250000",,"343.750000",,,,"1.000000","0.000000","1.000000","12.000000","1.500000","0.000000","22.600000","0.000000","2.800000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"996.000000",,"996.000000",,"996.000000",,"462.750000","0.000000",,,,,,,,,"2.000000","7493.250000","9215.000000","0.750000",,"236.875000",,,,"1.000000","0.000000","2.666667","13.666667","1.500000","0.000000","21.000000","0.000000","2.400000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"955.750000",,"955.750000",,"955.750000",,"377.750000","0.000000",,,,,,,,,"6.000000","7191.000000","9389.750000","7.875000",,"315.000000",,,,"1.400000","0.750000","5.000000","10.333333","1.375000","0.000000","28.000000","0.000000","9.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"904.500000",,"904.500000",,"904.500000",,"508.750000","0.000000",,,,,,,,,"9.250000","6805.000000","9144.250000","1.500000",,"835.750000",,,,"4.200000","0.000000","1.000000","33.000000","7.875000","0.000000","87.800000","0.000000","1.600000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"812.750000",,"812.750000",,"812.750000",,"483.000000","0.000000",,,,,,,,,"13.000000","6115.750000","9536.250000","462.125000",,"521.625000",,,,"6.600000","8.250000","5.000000","36.666667","3.750000","0.000000","133.800000","0.000000","90.200000","43.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"639.250000",,"639.250000",,"639.250000",,"389.250000","0.000000",,,,,,,,,"116.750000","4808.000000","12682.750000","3511.875000",,"834.250000",,,,"49.400000","81.625000","3.000000","15.666667","10.500000","0.000000","990.000000","0.000000","874.200000","115.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"807.750000",,"807.750000",,"807.750000",,"461.000000","0.000000",,,,,,,,,"109.500000","6076.750000","10908.000000","1444.625000",,"4473.625000",,,,"45.800000","33.375000","4.333333","12.000000","52.125000","0.000000","916.000000","0.000000","358.400000","557.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"80.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"815.750000",,"815.750000",,"815.750000",,"426.500000","0.000000",,,,,,,,,"46.500000","6137.750000","10134.750000","841.375000",,"1519.500000",,,,"20.600000","19.000000","2.333333","17.666667","19.125000","0.000000","412.000000","0.000000","205.600000","206.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"135.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"900.000000",,"900.000000",,"900.000000",,"432.500000","0.000000",,,,,,,,,"64.250000","6770.500000","9303.000000","21.125000",,"4121.125000",,,,"26.000000","3.250000","1.666667","15.333333","45.375000","0.000000","521.400000","0.000000","36.400000","485.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"60.000000","59.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"689.000000",,"689.000000",,"689.000000",,"393.500000","0.000000",,,,,,,,,"44.500000","5183.500000","10051.500000","179.875000",,"2002.125000",,,,"14.400000","14.500000","3.000000","39.666667","12.000000","0.000000","289.600000","0.000000","158.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"73.000000","79.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"898.250000",,"898.250000",,"898.250000",,"296.750000","0.000000",,,,,,,,,"48.750000","6756.750000","10050.500000","94.125000",,"2885.125000",,,,"16.600000","6.375000","4.000000","30.333333","24.375000","0.000000","335.200000","0.000000","71.600000","263.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"62.000000","72.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"767.000000",,"767.000000",,"767.000000",,"268.500000","0.000000",,,,,,,,,"102.500000","5770.750000","9989.750000","101.875000",,"6552.750000",,,,"39.400000","5.625000","13.333333","21.666667","67.875000","0.000000","788.800000","0.000000","62.400000","726.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"861.750000",,"861.750000",,"861.750000",,"459.000000","0.000000",,,,,,,,,"89.750000","6482.500000","9393.500000","52.375000",,"5912.500000",,,,"33.000000","3.250000","2.333333","21.666667","58.125000","0.000000","662.600000","0.000000","39.000000","623.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"647.250000",,"647.250000",,"647.250000",,"518.000000","0.000000",,,,,,,,,"138.750000","4870.250000","11437.500000","3230.750000",,"5110.750000",,,,"54.200000","64.500000","3.333333","21.666667","36.750000","0.000000","1086.600000","0.000000","691.800000","394.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"752.750000",,"752.750000",,"752.750000",,"328.250000","0.000000",,,,,,,,,"130.750000","5664.250000","10341.500000","579.500000",,"8278.500000",,,,"40.800000","15.875000","2.666667","31.000000","60.375000","0.000000","816.400000","0.000000","170.200000","646.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"773.250000",,"773.250000",,"773.250000",,"448.250000","0.000000",,,,,,,,,"72.000000","5816.250000","9486.750000","118.750000",,"5241.750000",,,,"29.400000","8.000000","2.000000","13.333333","46.875000","0.000000","590.800000","0.000000","88.200000","502.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.000000",,"832.000000",,"832.000000",,"455.250000","0.000000",,,,,,,,,"46.500000","6258.750000","9854.750000","680.625000",,"2278.750000",,,,"20.800000","17.625000","3.333333","16.000000","21.250000","0.000000","419.400000","0.000000","189.400000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"632.500000",,"632.500000",,"632.500000",,"352.000000","0.000000",,,,,,,,,"148.000000","4759.000000","12859.000000","2922.750000",,"4913.500000",,,,"48.000000","53.625000","4.666667","51.000000","36.000000","0.000000","963.800000","0.000000","576.200000","387.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"448.500000",,"448.500000",,"448.500000",,"327.500000","0.000000",,,,,,,,,"142.500000","3376.000000","14242.000000","4097.875000",,"2401.125000",,,,"56.800000","90.625000","2.000000","30.333333","15.375000","0.000000","1137.000000","0.000000","971.000000","166.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"339.000000",,"339.000000",,"339.000000",,"353.250000","0.000000",,,,,,,,,"182.750000","2551.500000","15131.250000","5350.750000",,"3699.375000",,,,"88.200000","130.625000","2.666667","9.666667","34.500000","0.000000","1764.000000","0.000000","1395.400000","368.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"426.500000",,"426.500000",,"426.500000",,"385.250000","0.000000",,,,,,,,,"148.000000","3211.500000","14538.750000","4682.125000",,"2671.375000",,,,"66.000000","95.750000","3.000000","11.000000","27.625000","0.000000","1320.400000","0.000000","1024.000000","296.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"386.500000",,"386.500000",,"386.500000",,"698.750000","0.000000",,,,,,,,,"230.250000","2911.750000","14820.750000","7682.000000",,"2494.500000",,,,"98.200000","169.000000","1.666667","26.666667","14.875000","0.000000","1964.200000","0.000000","1803.800000","160.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"260.000000","305.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"668.500000",,"668.500000",,"668.500000",,"358.250000","0.000000",,,,,,,,,"150.250000","5030.500000","11157.250000","3435.750000",,"4507.375000",,,,"65.000000","94.125000","1.666667","18.333333","27.375000","0.000000","1301.000000","0.000000","1006.400000","294.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"698.750000",,"698.750000",,"698.750000",,"345.750000","0.000000",,,,,,,,,"60.250000","5257.250000","10241.000000","2090.875000",,"575.625000",,,,"30.000000","43.000000","2.000000","8.333333","13.125000","0.000000","600.600000","0.000000","460.000000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"828.750000",,"828.750000",,"828.750000",,"220.750000","0.000000",,,,,,,,,"40.000000","6234.500000","9744.250000","73.875000",,"2110.875000",,,,"13.600000","7.750000","3.666667","15.666667","17.500000","0.000000","272.600000","0.000000","84.400000","188.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"757.750000",,"757.750000",,"757.750000",,"378.000000","0.000000",,,,,,,,,"88.000000","5701.750000","10899.250000","3475.500000",,"255.000000",,,,"41.200000","75.000000","3.666667","13.666667","1.875000","0.000000","827.200000","0.000000","805.600000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"790.250000",,"790.250000",,"790.250000",,"454.000000","0.000000",,,,,,,,,"94.250000","5944.250000","10262.750000","1497.625000",,"3387.375000",,,,"34.000000","40.625000","2.333333","22.666667","22.875000","0.000000","680.000000","0.000000","433.400000","246.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"706.500000",,"706.500000",,"706.500000",,"382.250000","0.000000",,,,,,,,,"15.750000","5315.000000","11143.000000","305.625000",,"273.250000",,,,"5.400000","6.625000","1.000000","11.000000","2.875000","0.000000","111.800000","0.000000","78.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"261.500000",,"261.500000",,"261.500000",,"305.000000","0.000000",,,,,,,,,"131.250000","1969.500000","16286.500000","5075.000000",,"907.500000",,,,"55.400000","94.750000","2.000000","9.000000","9.375000","0.000000","1111.600000","0.000000","1008.400000","103.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"275.750000",,"275.750000",,"275.750000",,"391.250000","0.000000",,,,,,,,,"121.000000","2077.250000","15922.250000","2141.875000",,"3563.875000",,,,"55.200000","71.125000","2.666667","11.666667","32.250000","0.000000","1107.000000","0.000000","760.600000","346.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.250000",,"180.250000",,"180.250000",,"302.750000","0.000000",,,,,,,,,"240.000000","1360.500000","17389.250000","4779.375000",,"8399.875000",,,,"123.600000","177.000000","2.000000","13.666667","54.375000","0.000000","2474.400000","0.000000","1892.200000","582.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","39.000000",,,,,,,,,"180.000000","195.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.000000",,"180.000000",,"180.000000",,"465.250000","0.000000",,,,,,,,,"156.250000","1356.750000","17227.000000","3538.750000",,"4080.750000",,,,"81.400000","122.750000","2.666667","13.000000","29.625000","0.000000","1628.600000","0.000000","1309.400000","319.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"126.000000","138.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"134.500000",,"134.500000",,"134.500000",,"341.000000","0.000000",,,,,,,,,"28.500000","1014.500000","17791.750000","140.625000",,"142.500000",,,,"12.000000","11.875000","1.666667","0.666667","10.375000","0.000000","242.200000","0.000000","128.200000","114.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.000000","7.000000",,,,,,,,,"1397.000000","1510.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"93.000000",,"93.000000",,"93.000000",,"357.000000","0.000000",,,,,,,,,"13.500000","703.750000","18228.750000","359.750000",,"58.875000",,,,"5.200000","3.500000","2.333333","2.000000","5.625000","0.000000","105.600000","0.000000","42.200000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","7.000000",,,,,,,,,"1645.000000","1659.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.750000",,"276.750000",,"276.750000",,"378.500000","0.000000",,,,,,,,,"54.250000","2084.500000","16409.500000","319.625000",,"2873.625000",,,,"21.800000","5.375000","2.333333","14.666667","35.250000","0.000000","437.600000","0.000000","57.800000","379.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"438.000000","512.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.750000",,"162.750000",,"162.750000",,"472.250000","0.000000",,,,,,,,,"12.750000","1227.250000","17394.250000","19.000000",,"268.875000",,,,"9.400000","1.125000","23.000000","5.333333","16.125000","0.000000","188.600000","0.000000","15.400000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"146.000000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.500000",,"148.500000",,"148.500000",,"425.750000","0.000000",,,,,,,,,"14.000000","1121.750000","17488.750000","372.375000",,"82.125000",,,,"6.600000","7.375000","4.000000","2.666667","4.750000","0.000000","134.000000","0.000000","80.400000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"191.000000","224.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"217.500000",,"217.500000",,"217.500000",,"364.500000","0.000000",,,,,,,,,"36.500000","1640.500000","17236.500000","640.875000",,"99.750000",,,,"28.000000","46.500000","1.000000","12.666667","5.875000","0.000000","562.600000","0.000000","497.000000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"382.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"271.500000","0.000000",,,,,,,,,"6.250000","449.750000","18923.000000","0.000000",,"74.500000",,,,"3.200000","0.000000","0.000000","2.666667","6.000000","0.000000","66.000000","0.000000","0.000000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"230.000000","0.000000",,,,,,,,,"0.500000","389.750000","19017.250000","0.000000",,"35.250000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","14.200000","0.000000","0.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.000000",,"64.000000",,"64.000000",,"235.250000","0.000000",,,,,,,,,"3.250000","485.750000","18865.500000","0.000000",,"49.875000",,,,"2.200000","0.000000","0.000000","1.000000","4.125000","0.000000","46.600000","0.000000","0.000000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"181.000000","0.000000",,,,,,,,,"0.750000","424.000000","19168.000000","0.000000",,"19.500000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"250.750000","0.000000",,,,,,,,,"1.000000","477.250000","18872.500000","4.875000",,"28.125000",,,,"1.400000","0.000000","2.000000","1.333333","2.125000","0.000000","29.000000","0.000000","3.200000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"157.750000",,"157.750000",,"157.750000",,"313.750000","0.000000",,,,,,,,,"10.000000","1189.000000","18168.000000","3.750000",,"129.000000",,,,"5.200000","0.000000","0.666667","0.666667","9.250000","0.000000","105.200000","0.000000","2.800000","102.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"512.000000","609.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.750000",,"276.750000",,"276.750000",,"398.500000","0.000000",,,,,,,,,"27.500000","2086.000000","16548.750000","27.000000",,"379.125000",,,,"12.800000","1.750000","3.666667","1.000000","22.000000","0.000000","257.400000","0.000000","21.400000","236.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","8.000000",,,,,,,,,"1409.000000","1609.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"73.000000",,"73.000000",,"73.000000",,"201.000000","0.000000",,,,,,,,,"5.500000","551.500000","18948.750000","0.000000",,"37.750000",,,,"1.600000","0.000000","0.000000","2.333333","2.875000","0.000000","32.400000","0.000000","0.000000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","4.000000",,,,,,,,,"1000.000000","990.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"233.750000",,"233.750000",,"233.750000",,"451.000000","0.000000",,,,,,,,,"41.750000","1762.000000","16370.250000","0.000000",,"2847.750000",,,,"16.800000","0.000000","1.000000","19.333333","31.375000","0.000000","338.800000","0.000000","0.400000","338.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","8.000000",,,,,,,,,"1676.000000","1746.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"185.750000",,"185.750000",,"185.750000",,"401.750000","0.000000",,,,,,,,,"4.750000","1399.250000","17040.250000","0.000000",,"235.000000",,,,"8.200000","0.000000","0.000000","2.333333","15.250000","0.000000","165.600000","0.000000","0.000000","165.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"84.000000",,"84.000000",,"84.000000",,"430.000000","0.000000",,,,,,,,,"2.000000","634.750000","18358.750000","0.000000",,"84.000000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","49.800000","0.000000","0.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"102.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"193.750000",,"193.750000",,"193.750000",,"374.750000","0.000000",,,,,,,,,"24.000000","1459.500000","16929.500000","211.875000",,"143.125000",,,,"15.200000","17.875000","1.333333","1.666667","10.375000","0.000000","305.200000","0.000000","193.000000","112.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"65.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"363.250000","0.000000",,,,,,,,,"1.750000","897.750000","18335.500000","5.250000",,"66.625000",,,,"1.800000","0.375000","4.666667","1.666667","3.000000","0.000000","38.800000","0.000000","5.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"340.000000","0.000000",,,,,,,,,"1.250000","398.750000","18840.750000","0.000000",,"41.125000",,,,"2.200000","0.000000","0.000000","2.666667","4.000000","0.000000","44.600000","0.000000","0.200000","44.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"333.500000","0.000000",,,,,,,,,"1.250000","407.750000","18953.250000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.333333","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"343.250000","0.000000",,,,,,,,,"0.500000","471.000000","18825.250000","0.000000",,"22.125000",,,,"0.600000","0.000000","0.000000","1.000000","1.000000","0.000000","14.200000","0.000000","0.000000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"309.250000","0.000000",,,,,,,,,"3.750000","392.000000","18945.750000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.250000",,"51.250000",,"51.250000",,"354.500000","0.000000",,,,,,,,,"0.750000","388.750000","18913.750000","0.000000",,"7.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.600000","0.000000","0.000000","4.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.250000",,"59.250000",,"59.250000",,"301.000000","0.000000",,,,,,,,,"0.500000","450.750000","18876.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"301.000000","0.000000",,,,,,,,,"0.500000","409.750000","19065.250000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","3.200000","0.000000","0.000000","3.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"312.500000","0.000000",,,,,,,,,"0.750000","410.000000","19038.750000","0.250000",,"17.500000",,,,"0.800000","0.000000","1.000000","2.000000","1.375000","0.000000","18.000000","0.000000","1.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"86.750000",,"86.750000",,"86.750000",,"371.250000","0.000000",,,,,,,,,"1.750000","658.000000","18475.000000","5.625000",,"65.625000",,,,"2.600000","0.375000","3.666667","1.333333","4.125000","0.000000","53.800000","0.000000","6.400000","47.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"101.000000","113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"142.500000",,"142.500000",,"142.500000",,"325.500000","0.000000",,,,,,,,,"5.000000","1076.250000","17891.000000","0.000000",,"117.375000",,,,"4.800000","0.000000","0.666667","1.000000","8.875000","0.000000","99.200000","0.000000","0.800000","98.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"465.000000","542.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.000000",,"158.000000",,"158.000000",,"466.500000","0.000000",,,,,,,,,"3.250000","1193.750000","17703.500000","0.000000",,"139.000000",,,,"4.800000","0.000000","0.000000","2.000000","8.875000","0.000000","98.200000","0.000000","0.200000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"125.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"133.750000",,"133.750000",,"133.750000",,"299.750000","0.000000",,,,,,,,,"1.500000","1008.250000","18117.000000","0.000000",,"42.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.400000","0.000000","0.200000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"123.750000",,"123.750000",,"123.750000",,"437.000000","0.000000",,,,,,,,,"2.750000","933.750000","17881.500000","5.625000",,"94.125000",,,,"3.800000","0.000000","2.666667","2.000000","7.125000","0.000000","77.600000","0.000000","1.000000","76.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.000000",,"67.000000",,"67.000000",,"495.750000","0.000000",,,,,,,,,"1.000000","507.750000","18506.500000","3.375000",,"25.125000",,,,"0.800000","0.375000","2.333333","2.000000","1.000000","0.000000","19.800000","0.000000","4.600000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"386.750000","0.000000",,,,,,,,,"1.750000","419.500000","18887.250000","0.000000",,"48.750000",,,,"2.200000","0.000000","0.000000","1.666667","4.125000","0.000000","45.800000","0.000000","0.200000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"445.750000","0.000000",,,,,,,,,"0.500000","392.250000","18772.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","10.600000","0.000000","0.000000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"236.500000","0.000000",,,,,,,,,"0.750000","407.750000","19047.500000","0.000000",,"12.250000",,,,"0.400000","0.000000","0.000000","1.333333","0.625000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"191.500000","0.000000",,,,,,,,,"3.250000","407.250000","19174.250000","0.000000",,"14.875000",,,,"0.600000","0.000000","0.000000","2.000000","1.000000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"150.750000","0.000000",,,,,,,,,"0.250000","443.500000","19314.500000","0.000000",,"5.125000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"140.000000","0.000000",,,,,,,,,"1.000000","415.000000","19258.000000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"135.000000","0.000000",,,,,,,,,"0.500000","432.750000","19234.000000","0.000000",,"14.250000",,,,"0.400000","0.000000","0.000000","1.666667","0.625000","0.000000","9.600000","0.000000","0.000000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","403.000000","19230.750000","0.000000",,"10.500000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.750000",,"70.750000",,"70.750000",,"174.750000","0.000000",,,,,,,,,"0.750000","536.750000","19004.500000","3.000000",,"26.250000",,,,"1.000000","0.000000","4.000000","1.666667","1.375000","0.000000","20.200000","0.000000","0.800000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.500000",,"148.500000",,"148.500000",,"231.750000","0.000000",,,,,,,,,"6.500000","1118.500000","17781.500000","0.000000",,"133.500000",,,,"5.400000","0.000000","0.333333","0.666667","10.125000","0.000000","109.200000","0.000000","0.200000","109.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"516.000000","607.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"262.000000",,"262.000000",,"262.000000",,"300.250000","0.000000",,,,,,,,,"15.750000","1974.000000","16448.750000","1.875000",,"360.000000",,,,"12.000000","0.000000","1.333333","1.000000","21.875000","0.000000","240.200000","0.000000","3.400000","236.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8.000000","7.000000",,,,,,,,,"1200.000000","1406.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"278.750000","0.000000",,,,,,,,,"1.500000","405.750000","18963.750000","0.000000",,"11.375000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"223.000000","226.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"221.000000","0.000000",,,,,,,,,"1.750000","425.500000","19112.750000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","2.333333","2.500000","0.000000","29.600000","0.000000","0.000000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","185.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"167.250000","0.000000",,,,,,,,,"1.500000","423.250000","19179.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"233.000000","234.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"183.000000","0.000000",,,,,,,,,"3.500000","454.750000","19156.000000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"249.000000","240.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"195.750000","0.000000",,,,,,,,,"3.250000","420.000000","19151.500000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"185.250000","0.000000",,,,,,,,,"0.750000","398.750000","19145.500000","0.000000",,"3.375000",,,,"0.200000","0.000000","1.333333","2.000000","0.000000","0.000000","4.000000","0.000000","0.200000","3.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"154.750000","0.000000",,,,,,,,,"1.000000","418.750000","19232.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"136.250000","0.000000",,,,,,,,,"2.500000","446.500000","19214.750000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.600000","0.000000","0.000000","3.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","1.000000",,,,,,,,,"356.000000","338.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"124.250000","0.000000",,,,,,,,,"1.250000","429.000000","19292.000000","0.000000",,"4.125000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"207.000000","193.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"148.750000","0.000000",,,,,,,,,"2.000000","426.500000","19267.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"227.000000","207.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"164.750000","0.000000",,,,,,,,,"0.750000","408.250000","19164.750000","0.000000",,"3.750000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"215.000000","202.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"156.000000","0.000000",,,,,,,,,"0.750000","417.250000","19142.750000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.200000","0.000000","0.000000","2.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"151.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"144.000000","0.000000",,,,,,,,,"1.250000","422.000000","19188.000000","0.000000",,"4.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"167.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"208.750000",,"208.750000",,"208.750000",,"173.500000","0.000000",,,,,,,,,"33.500000","1573.500000","17366.500000","354.000000",,"1348.375000",,,,"13.000000","3.250000","1.333333","7.666667","20.875000","0.000000","262.000000","0.000000","37.400000","224.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","4.000000",,,,,,,,,"759.000000","863.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"126.000000",,"126.000000",,"126.000000",,"123.750000","0.000000",,,,,,,,,"9.750000","951.000000","18806.500000","2.625000",,"124.125000",,,,"5.000000","0.000000","8.333333","4.000000","9.250000","0.000000","103.200000","0.000000","2.000000","101.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"169.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"244.000000","0.000000",,,,,,,,,"1.000000","490.750000","18937.250000","0.000000",,"47.875000",,,,"1.400000","0.000000","0.000000","1.333333","2.500000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"112.000000","0.000000",,,,,,,,,"2.750000","403.500000","19249.750000","0.000000",,"36.250000",,,,"2.000000","0.000000","0.000000","5.333333","3.625000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"209.250000","0.000000",,,,,,,,,"1.250000","430.500000","19159.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","1.333333","0.666667","1.875000","0.000000","22.800000","0.000000","0.600000","22.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.000000",,"64.000000",,"64.000000",,"283.500000","0.000000",,,,,,,,,"0.750000","484.250000","18995.000000","0.000000",,"23.125000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"273.500000","0.000000",,,,,,,,,"0.750000","401.000000","19017.250000","0.000000",,"14.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"245.250000","0.000000",,,,,,,,,"1.750000","413.500000","18978.500000","0.000000",,"20.500000",,,,"0.600000","0.000000","0.000000","2.333333","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"127.000000","0.000000",,,,,,,,,"1.000000","460.000000","19111.000000","0.000000",,"32.875000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"155.750000","0.000000",,,,,,,,,"2.500000","406.750000","19224.250000","0.000000",,"7.375000",,,,"0.200000","0.000000","0.000000","2.000000","0.250000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.500000",,"58.500000",,"58.500000",,"123.500000","0.000000",,,,,,,,,"1.750000","445.000000","19215.250000","0.000000",,"28.500000",,,,"1.200000","0.000000","0.000000","3.333333","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"134.500000","0.000000",,,,,,,,,"7.250000","895.250000","18545.750000","0.000000",,"127.000000",,,,"6.000000","0.000000","0.000000","2.000000","11.250000","0.000000","123.600000","0.000000","0.000000","123.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"461.000000","545.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"171.500000",,"171.500000",,"171.500000",,"209.000000","0.000000",,,,,,,,,"13.750000","1293.000000","17640.500000","6.375000",,"172.125000",,,,"6.600000","0.750000","5.666667","1.333333","11.625000","0.000000","135.600000","0.000000","8.200000","127.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","5.000000",,,,,,,,,"715.000000","915.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.500000",,"69.500000",,"69.500000",,"112.250000","0.000000",,,,,,,,,"2.500000","527.000000","19159.250000","1.125000",,"67.375000",,,,"3.000000","0.000000","3.000000","1.333333","5.500000","0.000000","62.200000","0.000000","1.400000","60.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"125.500000","0.000000",,,,,,,,,"1.000000","434.500000","19269.250000","0.000000",,"25.375000",,,,"0.600000","0.000000","0.000000","1.333333","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"131.500000","0.000000",,,,,,,,,"1.250000","489.750000","19147.750000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","3.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"92.750000","0.000000",,,,,,,,,"0.500000","454.750000","19351.750000","0.000000",,"10.875000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.250000",,"51.250000",,"51.250000",,"177.750000","0.000000",,,,,,,,,"0.750000","391.250000","19218.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","2.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"202.000000","0.000000",,,,,,,,,"1.000000","477.000000","19027.500000","0.000000",,"27.625000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.000000",,"58.000000",,"58.000000",,"122.500000","0.000000",,,,,,,,,"0.750000","439.750000","19317.250000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"163.000000","0.000000",,,,,,,,,"1.000000","406.000000","19183.750000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.000000",,"67.000000",,"67.000000",,"139.250000","0.000000",,,,,,,,,"0.500000","507.000000","19199.000000","0.000000",,"27.375000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"135.250000",,"135.250000",,"135.250000",,"130.250000","0.000000",,,,,,,,,"1.500000","1022.250000","18306.750000","0.750000",,"43.500000",,,,"1.200000","0.000000","1.333333","1.333333","2.250000","0.000000","27.800000","0.000000","1.200000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.500000",,"71.500000",,"71.500000",,"166.500000","0.000000",,,,,,,,,"1.750000","543.000000","18887.000000","0.000000",,"69.375000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","35.600000","0.000000","0.000000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"97.000000","0.000000",,,,,,,,,"4.250000","490.500000","19262.750000","0.000000",,"53.250000",,,,"2.400000","0.000000","0.000000","1.666667","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"120.750000","0.000000",,,,,,,,,"1.000000","422.000000","19276.750000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"117.250000","0.000000",,,,,,,,,"0.750000","446.000000","19261.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"116.500000","0.000000",,,,,,,,,"0.750000","480.250000","19228.250000","0.000000",,"21.000000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"78.750000","0.000000",,,,,,,,,"1.000000","418.500000","19397.250000","0.000000",,"11.625000",,,,"0.600000","0.000000","0.000000","2.000000","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"109.500000","0.000000",,,,,,,,,"1.250000","413.500000","19277.250000","0.000000",,"29.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"92.750000","0.000000",,,,,,,,,"0.750000","492.000000","19323.500000","0.000000",,"21.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"103.750000","0.000000",,,,,,,,,"0.500000","415.500000","19306.250000","0.000000",,"12.375000",,,,"0.600000","0.000000","0.000000","4.000000","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"181.250000","0.000000",,,,,,,,,"1.000000","495.000000","19124.250000","0.000000",,"35.500000",,,,"1.000000","0.000000","0.000000","5.000000","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.000000",,"145.000000",,"145.000000",,"173.250000","0.000000",,,,,,,,,"1.750000","1092.750000","18288.250000","2.250000",,"77.250000",,,,"2.000000","0.000000","10.666667","4.000000","3.625000","0.000000","43.800000","0.000000","1.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"184.750000","0.000000",,,,,,,,,"1.500000","425.250000","19109.500000","0.000000",,"48.750000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","30.000000","0.000000","0.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"166.750000","0.000000",,,,,,,,,"1.250000","407.750000","19259.250000","0.000000",,"28.125000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"221.500000","0.000000",,,,,,,,,"1.500000","494.000000","19014.750000","0.000000",,"41.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"140.750000","0.000000",,,,,,,,,"0.750000","455.750000","19282.250000","0.000000",,"17.500000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"191.750000","0.000000",,,,,,,,,"0.750000","402.000000","19154.750000","0.000000",,"13.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"154.750000","0.000000",,,,,,,,,"0.750000","512.000000","19213.000000","0.000000",,"28.000000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"170.000000","0.000000",,,,,,,,,"0.500000","401.500000","19127.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","18.000000","0.000000","0.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"188.500000","0.000000",,,,,,,,,"0.500000","400.750000","19228.500000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","2.666667","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"126.750000","0.000000",,,,,,,,,"0.750000","511.750000","19195.250000","0.000000",,"32.125000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.750000",,"145.750000",,"145.750000",,"210.250000","0.000000",,,,,,,,,"2.250000","1097.500000","17905.750000","12.000000",,"51.375000",,,,"1.400000","0.375000","2.333333","2.000000","2.125000","0.000000","30.400000","0.000000","5.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.250000",,"116.250000",,"116.250000",,"141.500000","0.000000",,,,,,,,,"3.000000","878.000000","18597.250000","0.000000",,"115.125000",,,,"4.000000","0.000000","1.666667","2.000000","7.375000","0.000000","81.000000","0.000000","0.200000","80.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"115.500000","0.000000",,,,,,,,,"0.750000","482.250000","19267.750000","0.000000",,"31.375000",,,,"1.000000","0.000000","0.000000","2.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"109.250000","0.000000",,,,,,,,,"3.000000","512.250000","19157.500000","0.000000",,"75.000000",,,,"3.000000","0.000000","0.000000","2.666667","5.500000","0.000000","62.200000","0.000000","0.000000","62.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.000000",,"147.000000",,"147.000000",,"227.000000","0.000000",,,,,,,,,"2.000000","1110.500000","17759.750000","0.000000",,"96.750000",,,,"3.400000","0.000000","0.000000","3.333333","6.375000","0.000000","70.800000","0.000000","0.000000","70.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"214.500000","0.000000",,,,,,,,,"1.250000","766.750000","18571.250000","0.000000",,"40.375000",,,,"1.000000","0.000000","2.000000","2.666667","1.875000","0.000000","21.000000","0.000000","0.200000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"149.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"109.500000","0.000000",,,,,,,,,"2.750000","456.250000","19301.500000","0.000000",,"63.625000",,,,"2.600000","0.000000","0.000000","3.333333","4.750000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"140.500000",,"140.500000",,"140.500000",,"144.000000","0.000000",,,,,,,,,"1.000000","1060.000000","18089.750000","0.750000",,"38.250000",,,,"1.000000","0.000000","1.666667","2.000000","1.750000","0.000000","22.000000","0.000000","1.400000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"75.000000",,"75.000000",,"75.000000",,"151.750000","0.000000",,,,,,,,,"2.500000","565.000000","19028.000000","0.375000",,"86.875000",,,,"3.400000","0.000000","2.333333","4.333333","6.250000","0.000000","68.400000","0.000000","0.200000","68.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"115.750000","0.000000",,,,,,,,,"1.250000","416.000000","19305.750000","0.000000",,"31.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"119.250000","0.000000",,,,,,,,,"1.250000","496.250000","19229.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","30.600000","0.000000","0.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"120.000000","0.000000",,,,,,,,,"0.500000","425.500000","19252.500000","0.000000",,"22.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","11.200000","0.000000","0.000000","11.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"150.750000","0.000000",,,,,,,,,"1.250000","426.000000","19223.500000","0.000000",,"21.375000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.000000",,"63.000000",,"63.000000",,"107.500000","0.000000",,,,,,,,,"0.500000","478.000000","19149.000000","0.000000",,"12.625000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.250000",,"60.250000",,"60.250000",,"106.000000","0.000000",,,,,,,,,"0.750000","456.750000","19356.500000","0.000000",,"33.000000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"129.750000","0.000000",,,,,,,,,"1.000000","417.250000","19185.250000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"94.500000","0.000000",,,,,,,,,"0.750000","513.750000","19315.250000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.750000",,"61.750000",,"61.750000",,"106.500000","0.000000",,,,,,,,,"1.000000","467.250000","19338.250000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"99.250000","0.000000",,,,,,,,,"0.750000","411.500000","19256.000000","0.000000",,"31.500000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.500000",,"69.500000",,"69.500000",,"140.500000","0.000000",,,,,,,,,"0.750000","526.750000","19188.500000","0.375000",,"29.875000",,,,"1.200000","0.000000","2.666667","1.333333","2.250000","0.000000","27.800000","0.000000","0.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"246.250000","0.000000",,,,,,,,,"1.000000","384.750000","19001.500000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","26.600000","0.000000","0.000000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"104.750000","0.000000",,,,,,,,,"0.750000","477.000000","19339.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"115.250000","0.000000",,,,,,,,,"1.000000","500.750000","19152.250000","0.000000",,"23.500000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"144.000000","0.000000",,,,,,,,,"1.000000","410.750000","19272.000000","0.000000",,"28.375000",,,,"0.800000","0.000000","2.666667","2.000000","1.375000","0.000000","17.600000","0.000000","0.200000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"133.500000","0.000000",,,,,,,,,"1.000000","400.000000","19236.750000","0.000000",,"15.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"135.000000","0.000000",,,,,,,,,"0.750000","487.250000","19095.250000","0.000000",,"29.625000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"112.250000","0.000000",,,,,,,,,"1.250000","398.500000","19310.000000","0.000000",,"33.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"126.500000","0.000000",,,,,,,,,"0.750000","411.750000","19243.750000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"137.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"80.000000",,"80.000000",,"80.000000",,"95.750000","0.000000",,,,,,,,,"1.250000","604.000000","19050.000000","0.000000",,"50.125000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","32.200000","0.000000","0.000000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.750000",,"162.750000",,"162.750000",,"127.000000","0.000000",,,,,,,,,"4.250000","1227.250000","18244.500000","2.250000",,"117.625000",,,,"3.800000","0.250000","2.666667","1.666667","6.750000","0.000000","78.600000","0.000000","4.000000","74.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"106.750000","0.000000",,,,,,,,,"3.000000","411.250000","19277.500000","0.375000",,"42.375000",,,,"1.200000","0.000000","0.333333","1.333333","1.875000","0.000000","24.000000","0.000000","0.200000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.000000",,"50.000000",,"50.000000",,"142.500000","0.000000",,,,,,,,,"0.500000","379.500000","19221.750000","0.000000",,"22.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"102.500000","0.000000",,,,,,,,,"1.000000","512.000000","19201.750000","0.000000",,"36.625000",,,,"1.200000","0.000000","0.000000","22.000000","2.000000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"105.250000","0.000000",,,,,,,,,"0.750000","412.750000","19358.000000","0.000000",,"25.875000",,,,"1.000000","0.000000","0.000000","1.333333","2.125000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"98.250000","0.000000",,,,,,,,,"0.000000","419.250000","19382.500000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.000000",,"68.000000",,"68.000000",,"173.500000","0.000000",,,,,,,,,"1.000000","514.250000","19135.250000","0.000000",,"31.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"105.750000","0.000000",,,,,,,,,"0.750000","420.750000","19295.750000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.666667","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"125.500000","0.000000",,,,,,,,,"0.750000","429.750000","19313.500000","0.000000",,"8.625000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.250000",,"71.250000",,"71.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","539.000000","19101.750000","0.000000",,"35.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"76.000000",,"76.000000",,"76.000000",,"159.000000","0.000000",,,,,,,,,"1.000000","574.750000","19064.750000","0.000000",,"25.000000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.800000","0.000000","0.000000","11.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"220.500000",,"220.500000",,"220.500000",,"275.000000","0.000000",,,,,,,,,"197.750000","1661.500000","16991.000000","4387.875000",,"4626.625000",,,,"82.000000","120.500000","2.333333","28.000000","32.500000","0.000000","1640.400000","0.000000","1291.800000","348.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","188.000000",,,,,,,,,"379.000000","514.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"263.000000",,"263.000000",,"263.000000",,"214.500000","0.000000",,,,,,,,,"159.000000","1980.000000","16686.750000","125.500000",,"3776.625000",,,,"21.400000","28.375000","1.666667","47.666667","11.875000","0.000000","431.600000","0.000000","302.400000","129.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12759.000000","65.000000",,,,,,,,,"173238.000000","17013.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"319.750000",,"319.750000",,"319.750000",,"325.250000","0.000000",,,,,,,,,"228.000000","2408.000000","15818.000000","0.000000",,"8006.125000",,,,"20.200000","0.000000","5.000000","18.666667","37.750000","0.000000","405.800000","0.000000","0.200000","405.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20208.000000","80.000000",,,,,,,,,"273864.000000","24810.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"304.750000",,"304.750000",,"304.750000",,"333.000000","0.000000",,,,,,,,,"217.750000","2293.500000","16005.750000","0.000000",,"12143.250000",,,,"32.400000","0.000000","8.666667","17.666667","60.750000","0.000000","649.200000","0.000000","0.800000","648.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8932.000000","31.000000",,,,,,,,,"121054.000000","9597.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"267.250000",,"267.250000",,"267.250000",,"221.750000","0.000000",,,,,,,,,"272.000000","2010.500000","16706.500000","9.000000",,"9623.625000",,,,"64.800000","1.375000","3.666667","8.333333","119.750000","0.000000","1296.600000","0.000000","16.000000","1280.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14509.000000","63.000000",,,,,,,,,"196715.000000","18309.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"279.000000",,"279.000000",,"279.000000",,"175.750000","0.000000",,,,,,,,,"80.500000","2102.500000","16644.000000","550.375000",,"1256.000000",,,,"44.400000","71.625000","1.000000","10.333333","11.625000","0.000000","891.800000","0.000000","766.200000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"104.000000","127.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"451.000000",,"451.000000",,"451.000000",,"205.000000","0.000000",,,,,,,,,"19.750000","3393.000000","14934.000000","316.875000",,"609.625000",,,,"11.600000","7.875000","0.666667","7.666667","13.875000","0.000000","234.600000","0.000000","86.000000","148.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","13.000000",,,,,,,,,"97.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"590.750000",,"590.750000",,"590.750000",,"189.000000","0.000000",,,,,,,,,"19.500000","4446.250000","14343.750000","40.875000",,"344.875000",,,,"7.800000","3.250000","0.666667","2.000000","11.125000","0.000000","156.800000","0.000000","35.800000","121.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"82.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"606.250000",,"606.250000",,"606.250000",,"174.250000","0.000000",,,,,,,,,"11.000000","4561.750000","14862.000000","18.375000",,"546.625000",,,,"7.400000","0.375000","0.666667","4.333333","13.125000","0.000000","148.200000","0.000000","5.800000","142.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"63.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"631.250000",,"631.250000",,"631.250000",,"203.500000","0.000000",,,,,,,,,"3.750000","4748.500000","14850.250000","2.250000",,"255.625000",,,,"3.000000","0.000000","1.333333","3.000000","5.125000","0.000000","61.000000","0.000000","2.400000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"57.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"572.000000",,"572.000000",,"572.000000",,"392.500000","0.000000",,,,,,,,,"8.250000","4302.000000","13463.250000","67.125000",,"347.250000",,,,"5.000000","0.750000","0.666667","5.333333","8.500000","0.000000","103.600000","0.000000","11.600000","92.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"83.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"565.500000",,"565.500000",,"565.500000",,"361.750000","0.000000",,,,,,,,,"4.250000","4256.000000","14062.000000","0.000000",,"175.875000",,,,"3.800000","0.000000","0.000000","3.000000","7.125000","0.000000","79.000000","0.000000","0.200000","78.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"98.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"673.500000",,"673.500000",,"673.500000",,"190.000000","0.000000",,,,,,,,,"4.250000","5068.000000","14375.250000","7.875000",,"250.125000",,,,"3.400000","0.000000","1.333333","3.000000","6.375000","0.000000","70.000000","0.000000","1.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"75.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"585.250000",,"585.250000",,"585.250000",,"282.000000","0.000000",,,,,,,,,"71.000000","4405.000000","14286.250000","385.500000",,"4105.125000",,,,"24.400000","4.125000","1.000000","10.666667","41.625000","0.000000","491.200000","0.000000","46.600000","444.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"85.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"680.500000",,"680.500000",,"680.500000",,"218.750000","0.000000",,,,,,,,,"12.750000","5120.500000","13514.750000","100.000000",,"696.750000",,,,"7.600000","3.000000","1.333333","5.333333","10.875000","0.000000","154.400000","0.000000","35.000000","119.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"602.500000",,"602.500000",,"602.500000",,"212.500000","0.000000",,,,,,,,,"6.500000","4532.500000","14356.750000","0.000000",,"363.750000",,,,"8.600000","0.000000","0.000000","3.000000","16.125000","0.000000","174.400000","0.000000","0.000000","174.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"605.250000",,"605.250000",,"605.250000",,"187.000000","0.000000",,,,,,,,,"8.750000","4554.000000","14375.750000","7.875000",,"430.000000",,,,"4.000000","1.500000","0.333333","5.333333","5.625000","0.000000","82.000000","0.000000","19.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"565.250000",,"565.250000",,"565.250000",,"231.000000","0.000000",,,,,,,,,"10.250000","4254.750000","14320.250000","0.000000",,"625.125000",,,,"7.000000","0.000000","0.666667","3.666667","13.125000","0.000000","142.000000","0.000000","0.800000","141.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"73.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"649.500000",,"649.500000",,"649.500000",,"136.000000","0.000000",,,,,,,,,"7.000000","4888.500000","14453.750000","0.000000",,"364.125000",,,,"4.200000","0.000000","0.666667","2.666667","7.875000","0.000000","87.400000","0.000000","0.400000","87.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"662.750000",,"662.750000",,"662.750000",,"229.500000","0.000000",,,,,,,,,"10.500000","4986.750000","14373.000000","0.000000",,"991.125000",,,,"3.600000","0.000000","0.000000","12.000000","6.750000","0.000000","72.600000","0.000000","0.000000","72.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.500000",,"658.500000",,"658.500000",,"112.250000","0.000000",,,,,,,,,"7.750000","4955.250000","14495.000000","0.375000",,"372.375000",,,,"5.000000","0.000000","2.000000","6.000000","9.375000","0.000000","103.200000","0.000000","1.600000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","60.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"617.000000",,"617.000000",,"617.000000",,"235.000000","0.000000",,,,,,,,,"55.500000","4642.750000","14210.250000","69.750000",,"4105.000000",,,,"20.800000","0.750000","0.666667","12.333333","38.250000","0.000000","419.600000","0.000000","8.000000","411.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"107.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"644.750000",,"644.750000",,"644.750000",,"139.250000","0.000000",,,,,,,,,"5.500000","4851.000000","14433.500000","0.375000",,"186.375000",,,,"5.800000","0.000000","0.000000","1.333333","10.875000","0.000000","119.800000","0.000000","0.800000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"112.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"566.500000",,"566.500000",,"566.500000",,"192.250000","0.000000",,,,,,,,,"5.250000","4261.750000","14338.250000","22.875000",,"286.125000",,,,"3.600000","1.875000","0.333333","3.000000","4.875000","0.000000","75.800000","0.000000","22.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"82.000000","103.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"622.750000",,"622.750000",,"622.750000",,"279.750000","0.000000",,,,,,,,,"3.750000","4687.250000","14300.000000","12.000000",,"134.875000",,,,"3.400000","0.375000","0.333333","2.333333","5.625000","0.000000","68.200000","0.000000","7.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"77.000000","91.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"500.750000",,"500.750000",,"500.750000",,"473.500000","0.000000",,,,,,,,,"4.500000","3769.750000","13729.250000","6.000000",,"90.000000",,,,"3.000000","0.375000","0.333333","1.333333","5.250000","0.000000","63.600000","0.000000","6.800000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"120.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"603.250000",,"603.250000",,"603.250000",,"243.000000","0.000000",,,,,,,,,"34.000000","4538.000000","13894.750000","218.250000",,"1566.750000",,,,"11.800000","2.625000","0.666667","11.000000","19.000000","0.000000","237.000000","0.000000","29.600000","207.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"108.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1413.000000",,"1413.000000",,"1413.000000",,"219.750000","0.000000",,,,,,,,,"10.500000","10625.250000","6999.000000","4.500000",,"301.750000",,,,"10.600000","0.375000","1.000000","4.666667","19.000000","0.000000","212.400000","0.000000","7.200000","205.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"76.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.750000",,"604.750000",,"604.750000",,"357.750000","0.000000",,,,,,,,,"9.750000","4549.750000","12845.750000","3.000000",,"530.875000",,,,"4.600000","0.375000","3.333333","7.333333","7.875000","0.000000","94.200000","0.000000","7.600000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"65.000000","80.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"653.250000",,"653.250000",,"653.250000",,"246.750000","0.000000",,,,,,,,,"37.250000","4914.250000","14143.250000","269.625000",,"1562.125000",,,,"15.800000","13.000000","1.333333","9.666667","16.000000","0.000000","316.200000","0.000000","143.000000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","72.000000",,,,,,,,,"480.000000","555.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1076.500000",,"1076.500000",,"1076.500000",,"304.500000","0.000000",,,,,,,,,"52.500000","8097.250000","7812.250000","121.750000",,"2161.625000",,,,"34.200000","3.250000","3.666667","7.000000","59.625000","0.000000","684.600000","0.000000","37.400000","647.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","26.000000",,,,,,,,,"177.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"763.500000",,"763.500000",,"763.500000",,"177.500000","0.000000",,,,,,,,,"38.500000","5743.500000","12866.250000","105.000000",,"1701.125000",,,,"24.400000","2.250000","1.333333","4.333333","43.875000","0.000000","488.400000","0.000000","25.600000","462.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"167.000000","176.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"626.000000",,"626.000000",,"626.000000",,"222.750000","0.000000",,,,,,,,,"21.000000","4710.250000","14315.750000","67.375000",,"991.500000",,,,"9.600000","1.000000","2.000000","10.000000","16.500000","0.000000","192.000000","0.000000","12.400000","179.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"47.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"711.250000",,"711.250000",,"711.250000",,"151.000000","0.000000",,,,,,,,,"1.750000","5350.000000","14462.250000","0.000000",,"65.875000",,,,"0.000000","0.000000","0.000000","3.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"616.500000",,"616.500000",,"616.500000",,"153.250000","0.000000",,,,,,,,,"32.000000","4640.250000","14400.250000","137.375000",,"1510.500000",,,,"15.000000","3.000000","0.666667","6.666667","24.625000","0.000000","303.000000","0.000000","35.800000","267.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","44.000000",,,,,,,,,"182.000000","196.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"575.250000",,"575.250000",,"575.250000",,"203.250000","0.000000",,,,,,,,,"6.750000","4329.750000","14509.500000","8.875000",,"419.875000",,,,"3.400000","0.000000","0.333333","9.666667","6.000000","0.000000","68.400000","0.000000","1.000000","67.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"77.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"712.250000",,"712.250000",,"712.250000",,"216.500000","0.000000",,,,,,,,,"29.750000","5360.250000","12809.750000","183.375000",,"961.125000",,,,"15.200000","4.125000","2.666667","6.000000","24.375000","0.000000","307.200000","0.000000","45.000000","262.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","17.000000",,,,,,,,,"113.000000","141.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"145.000000","0.000000",,,,,,,,,"18.750000","4800.500000","14352.000000","15.750000",,"680.875000",,,,"11.400000","1.125000","1.666667","5.666667","19.875000","0.000000","231.600000","0.000000","15.600000","216.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","15.000000",,,,,,,,,"106.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"563.250000",,"563.250000",,"563.250000",,"205.750000","0.000000",,,,,,,,,"26.750000","4239.250000","14578.000000","101.000000",,"757.125000",,,,"11.000000","1.250000","1.666667","9.000000","19.250000","0.000000","220.200000","0.000000","15.800000","204.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"103.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"488.000000",,"488.000000",,"488.000000",,"227.250000","0.000000",,,,,,,,,"8.250000","3672.750000","14196.250000","15.000000",,"272.625000",,,,"7.200000","0.375000","0.666667","3.333333","13.000000","0.000000","147.200000","0.000000","6.800000","140.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","31.000000",,,,,,,,,"153.000000","173.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"643.000000",,"643.000000",,"643.000000",,"198.000000","0.000000",,,,,,,,,"31.500000","4838.250000","13767.500000","226.625000",,"1597.750000",,,,"11.400000","4.000000","3.000000","14.333333","17.250000","0.000000","230.400000","0.000000","45.200000","185.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"612.500000",,"612.500000",,"612.500000",,"201.750000","0.000000",,,,,,,,,"10.750000","4608.000000","14363.500000","3.750000",,"407.625000",,,,"7.400000","0.375000","0.666667","3.666667","13.375000","0.000000","151.400000","0.000000","5.800000","145.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"610.000000",,"610.000000",,"610.000000",,"254.750000","0.000000",,,,,,,,,"3.500000","4591.500000","14285.000000","0.000000",,"378.625000",,,,"1.000000","0.000000","0.000000","8.666667","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.750000",,"638.750000",,"638.750000",,"216.250000","0.000000",,,,,,,,,"3.750000","4808.000000","14369.500000","0.000000",,"369.000000",,,,"1.600000","0.000000","0.000000","8.666667","2.875000","0.000000","33.000000","0.000000","0.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"662.750000",,"662.750000",,"662.750000",,"244.500000","0.000000",,,,,,,,,"14.500000","4986.500000","14234.500000","373.125000",,"262.875000",,,,"4.200000","6.250000","2.000000","50.000000","1.375000","0.000000","84.600000","0.000000","68.000000","16.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"364.000000","389.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"775.000000",,"775.000000",,"775.000000",,"174.750000","0.000000",,,,,,,,,"38.250000","5831.000000","13690.750000","581.500000",,"353.625000",,,,"25.200000","44.250000","1.000000","10.000000","2.625000","0.000000","505.600000","0.000000","475.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"249.000000","250.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"748.250000",,"748.250000",,"748.250000",,"132.500000","0.000000",,,,,,,,,"9.750000","5630.750000","14530.750000","0.000000",,"348.375000",,,,"1.600000","0.000000","3.000000","19.000000","3.000000","0.000000","34.600000","0.000000","0.400000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"614.250000",,"614.250000",,"614.250000",,"165.500000","0.000000",,,,,,,,,"4.250000","4623.750000","14368.750000","0.000000",,"397.125000",,,,"1.200000","0.000000","0.000000","12.333333","2.125000","0.000000","24.800000","0.000000","0.800000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"670.250000",,"670.250000",,"670.250000",,"194.750000","0.000000",,,,,,,,,"2.750000","5041.750000","14411.750000","0.750000",,"254.875000",,,,"1.200000","0.000000","2.333333","7.000000","2.125000","0.000000","25.400000","0.000000","0.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"65.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"654.000000",,"654.000000",,"654.000000",,"187.500000","0.000000",,,,,,,,,"5.250000","4921.000000","14423.500000","2.250000",,"423.625000",,,,"1.600000","0.000000","1.666667","11.000000","2.500000","0.000000","32.200000","0.000000","1.600000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"70.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"633.250000",,"633.250000",,"633.250000",,"176.500000","0.000000",,,,,,,,,"7.250000","4766.250000","14431.250000","0.375000",,"552.750000",,,,"1.600000","0.000000","1.666667","13.000000","2.625000","0.000000","32.000000","0.000000","1.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"630.500000",,"630.500000",,"630.500000",,"162.250000","0.000000",,,,,,,,,"3.250000","4746.750000","14410.000000","0.000000",,"377.250000",,,,"1.200000","0.000000","0.000000","15.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"63.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"643.500000",,"643.500000",,"643.500000",,"159.750000","0.000000",,,,,,,,,"5.000000","4843.750000","14467.250000","9.375000",,"353.625000",,,,"2.000000","0.000000","0.666667","6.000000","3.125000","0.000000","40.600000","0.000000","2.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"61.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"644.250000",,"644.250000",,"644.250000",,"202.500000","0.000000",,,,,,,,,"82.750000","4846.500000","14300.000000","10.750000",,"5538.875000",,,,"19.200000","0.375000","4.000000","22.666667","35.250000","0.000000","384.400000","0.000000","6.400000","378.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"59.000000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"584.000000",,"584.000000",,"584.000000",,"228.000000","0.000000",,,,,,,,,"113.750000","4393.500000","15089.500000","268.125000",,"4890.250000",,,,"67.000000","15.375000","4.666667","8.000000","110.250000","0.000000","1343.600000","0.000000","166.600000","1177.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"113.000000","129.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"698.750000",,"698.750000",,"698.750000",,"167.000000","0.000000",,,,,,,,,"12.750000","5258.500000","14454.250000","52.125000",,"480.000000",,,,"8.400000","0.750000","1.000000","4.333333","14.500000","0.000000","169.200000","0.000000","11.200000","158.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"617.500000",,"617.500000",,"617.500000",,"114.000000","0.000000",,,,,,,,,"20.750000","4647.250000","14828.250000","352.875000",,"161.000000",,,,"9.400000","16.875000","1.333333","7.000000","0.375000","0.000000","188.400000","0.000000","182.200000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"588.500000",,"588.500000",,"588.500000",,"269.000000","0.000000",,,,,,,,,"30.250000","4429.500000","13849.750000","593.250000",,"266.625000",,,,"14.400000","22.500000","1.000000","4.000000","4.000000","0.000000","288.600000","0.000000","243.600000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"75.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"534.250000",,"534.250000",,"534.250000",,"255.250000","0.000000",,,,,,,,,"23.000000","4021.250000","14328.250000","604.125000",,"406.125000",,,,"4.000000","6.000000","1.000000","14.333333","1.000000","0.000000","80.200000","0.000000","66.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"577.000000",,"577.000000",,"577.000000",,"411.500000","0.000000",,,,,,,,,"21.250000","4340.750000","14195.750000","596.625000",,"404.625000",,,,"4.200000","5.375000","0.666667","10.666667","2.125000","0.000000","85.600000","0.000000","60.400000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"82.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"479.250000",,"479.250000",,"479.250000",,"180.500000","0.000000",,,,,,,,,"72.250000","3605.500000","15726.500000","1109.125000",,"272.250000",,,,"26.400000","47.500000","1.000000","13.000000","1.500000","0.000000","528.400000","0.000000","508.600000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"60.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"626.250000",,"626.250000",,"626.250000",,"132.750000","0.000000",,,,,,,,,"41.250000","4713.250000","14864.000000","686.625000",,"160.875000",,,,"9.400000","16.875000","1.000000","7.000000","0.625000","0.000000","190.000000","0.000000","180.800000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"72.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.250000",,"604.250000",,"604.250000",,"129.750000","0.000000",,,,,,,,,"37.750000","4547.500000","14743.500000","670.125000",,"166.500000",,,,"9.600000","16.875000","0.333333","17.666667","0.625000","0.000000","192.000000","0.000000","182.400000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"569.750000",,"569.750000",,"569.750000",,"190.500000","0.000000",,,,,,,,,"25.000000","4287.500000","14658.500000","216.000000",,"47.875000",,,,"10.000000","18.000000","0.333333","1.666667","0.750000","0.000000","203.600000","0.000000","192.600000","11.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"181.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"536.750000",,"536.750000",,"536.750000",,"179.500000","0.000000",,,,,,,,,"25.250000","4038.500000","15069.500000","88.000000",,"97.875000",,,,"14.200000","18.000000","2.000000","1.333333","8.250000","0.000000","286.800000","0.000000","195.600000","91.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"603.000000",,"603.000000",,"603.000000",,"131.000000","0.000000",,,,,,,,,"28.250000","4537.750000","15078.500000","143.625000",,"320.250000",,,,"23.600000","34.875000","1.666667","5.666667","9.375000","0.000000","475.000000","0.000000","372.200000","102.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"103.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"720.500000",,"720.500000",,"720.500000",,"211.750000","0.000000",,,,,,,,,"12.000000","5420.000000","13650.500000","50.250000",,"329.250000",,,,"10.600000","4.125000","0.666667","3.333333","15.625000","0.000000","214.000000","0.000000","44.200000","169.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"107.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1139.000000",,"1139.000000",,"1139.000000",,"249.500000","0.000000",,,,,,,,,"32.250000","8567.000000","9664.500000","91.875000",,"547.000000",,,,"17.200000","8.625000","0.333333","2.333333","23.125000","0.000000","344.200000","0.000000","95.600000","248.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"60.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1050.500000",,"1050.500000",,"1050.500000",,"246.250000","0.000000",,,,,,,,,"9.500000","7903.500000","9529.750000","0.000000",,"505.875000",,,,"2.600000","0.000000","2.333333","7.333333","4.500000","0.000000","52.000000","0.000000","0.200000","51.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"49.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1152.000000",,"1152.000000",,"1152.000000",,"725.000000","0.000000",,,,,,,,,"8.500000","8664.250000","9172.250000","2.250000",,"484.500000",,,,"6.400000","0.000000","0.000000","4.333333","11.500000","0.000000","129.000000","0.000000","2.400000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"88.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1130.250000",,"1130.250000",,"1130.250000",,"227.000000","0.000000",,,,,,,,,"6.500000","8503.250000","9482.750000","3.375000",,"425.625000",,,,"2.000000","0.000000","0.333333","8.000000","3.750000","0.000000","43.200000","0.000000","3.000000","40.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1246.500000",,"1246.500000",,"1246.500000",,"192.000000","0.000000",,,,,,,,,"33.000000","9376.250000","9891.500000","88.500000",,"1180.125000",,,,"12.200000","9.375000","0.666667","16.000000","13.375000","0.000000","246.600000","0.000000","101.400000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.500000",,"1103.500000",,"1103.500000",,"227.250000","0.000000",,,,,,,,,"22.000000","8301.750000","9499.250000","22.750000",,"1333.125000",,,,"5.400000","1.875000","3.000000","16.333333","7.875000","0.000000","108.800000","0.000000","23.800000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1076.500000",,"1076.500000",,"1076.500000",,"300.250000","0.000000",,,,,,,,,"12.250000","8098.750000","9617.000000","60.750000",,"438.750000",,,,"4.800000","5.625000","5.333333","15.666667","2.875000","0.000000","96.600000","0.000000","63.800000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1244.750000",,"1244.750000",,"1244.750000",,"228.500000","0.000000",,,,,,,,,"6.500000","9366.000000","9500.250000","0.000000",,"441.750000",,,,"2.600000","0.000000","0.666667","7.333333","4.750000","0.000000","52.600000","0.000000","0.600000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1051.750000",,"1051.750000",,"1051.750000",,"536.000000","0.000000",,,,,,,,,"3.000000","7911.750000","9218.000000","0.000000",,"367.500000",,,,"1.200000","0.000000","1.333333","11.333333","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1147.750000",,"1147.750000",,"1147.750000",,"322.500000","0.000000",,,,,,,,,"9.250000","8635.000000","9436.500000","0.375000",,"461.625000",,,,"2.200000","0.000000","8.333333","10.000000","4.125000","0.000000","47.000000","0.000000","1.600000","45.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"15.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1093.250000",,"1093.250000",,"1093.250000",,"240.500000","0.000000",,,,,,,,,"5.250000","8224.250000","9486.750000","0.000000",,"482.875000",,,,"1.800000","0.000000","7.333333","16.666667","3.375000","0.000000","39.600000","0.000000","0.200000","39.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1307.750000",,"1307.750000",,"1307.750000",,"236.000000","0.000000",,,,,,,,,"5.500000","9838.000000","9526.750000","0.625000",,"460.125000",,,,"3.400000","0.000000","2.333333","12.666667","6.000000","0.000000","68.800000","0.000000","1.800000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1268.000000",,"1268.000000",,"1268.000000",,"196.500000","0.000000",,,,,,,,,"6.000000","9537.000000","9543.250000","0.250000",,"487.750000",,,,"2.800000","0.000000","2.000000","13.333333","5.125000","0.000000","57.400000","0.000000","1.000000","56.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1218.500000",,"1218.500000",,"1218.500000",,"139.250000","0.000000",,,,,,,,,"4.500000","9166.250000","9578.250000","0.375000",,"497.875000",,,,"2.600000","0.000000","1.333333","14.333333","4.875000","0.000000","55.600000","0.000000","0.600000","55.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1285.750000",,"1285.750000",,"1285.750000",,"170.000000","0.000000",,,,,,,,,"5.250000","9671.250000","9619.750000","2.250000",,"369.250000",,,,"2.200000","0.000000","2.000000","11.000000","4.000000","0.000000","46.200000","0.000000","0.600000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1169.500000",,"1169.500000",,"1169.500000",,"220.250000","0.000000",,,,,,,,,"6.750000","8797.750000","9545.500000","1.875000",,"563.875000",,,,"1.400000","0.000000","1.333333","38.000000","2.250000","0.000000","30.600000","0.000000","3.400000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1369.500000",,"1369.500000",,"1369.500000",,"259.750000","0.000000",,,,,,,,,"4.750000","10302.500000","9550.500000","1.875000",,"405.375000",,,,"2.600000","0.000000","2.666667","11.000000","4.375000","0.000000","53.400000","0.000000","2.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1203.250000",,"1203.250000",,"1203.250000",,"224.250000","0.000000",,,,,,,,,"7.250000","9049.750000","9516.000000","0.750000",,"657.250000",,,,"3.200000","0.000000","1.333333","20.333333","6.000000","0.000000","65.600000","0.000000","1.000000","64.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1112.250000",,"1112.250000",,"1112.250000",,"404.250000","0.000000",,,,,,,,,"6.500000","8367.750000","9385.000000","0.375000",,"431.625000",,,,"1.600000","0.000000","3.000000","15.333333","3.000000","0.000000","34.800000","0.000000","1.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1225.500000",,"1225.500000",,"1225.500000",,"252.000000","0.000000",,,,,,,,,"4.750000","9219.500000","9517.750000","0.750000",,"473.250000",,,,"1.800000","0.000000","2.666667","17.333333","3.000000","0.000000","36.400000","0.000000","1.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1314.750000",,"1314.750000",,"1314.750000",,"108.500000","0.000000",,,,,,,,,"6.250000","9888.500000","9642.000000","0.750000",,"350.125000",,,,"1.000000","0.000000","1.666667","30.000000","1.375000","0.000000","20.000000","0.000000","1.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1242.500000",,"1242.500000",,"1242.500000",,"235.250000","0.000000",,,,,,,,,"6.750000","9344.250000","9527.000000","1.375000",,"453.375000",,,,"2.400000","0.000000","2.333333","14.000000","4.125000","0.000000","48.200000","0.000000","1.800000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1180.000000",,"1180.000000",,"1180.000000",,"285.250000","0.000000",,,,,,,,,"6.250000","8876.250000","9440.000000","0.750000",,"410.625000",,,,"2.400000","0.000000","0.666667","14.333333","4.125000","0.000000","49.200000","0.000000","1.600000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1120.750000",,"1120.750000",,"1120.750000",,"257.000000","0.000000",,,,,,,,,"7.000000","8429.500000","9474.250000","1.500000",,"376.375000",,,,"2.400000","0.000000","1.333333","12.000000","4.500000","0.000000","50.000000","0.000000","1.200000","48.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1160.000000",,"1160.000000",,"1160.000000",,"306.500000","0.000000",,,,,,,,,"5.000000","8725.750000","9412.500000","1.125000",,"500.250000",,,,"1.800000","0.000000","1.333333","17.333333","3.250000","0.000000","37.400000","0.000000","1.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1288.500000",,"1288.500000",,"1288.500000",,"243.000000","0.000000",,,,,,,,,"7.500000","9691.750000","9507.000000","3.625000",,"499.000000",,,,"2.400000","0.000000","5.000000","12.333333","4.375000","0.000000","51.200000","0.000000","3.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1286.500000",,"1286.500000",,"1286.500000",,"251.750000","0.000000",,,,,,,,,"9.750000","9676.750000","9559.250000","5.500000",,"444.000000",,,,"2.800000","0.375000","3.000000","11.333333","4.375000","0.000000","56.800000","0.000000","7.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1178.250000",,"1178.250000",,"1178.250000",,"292.250000","0.000000",,,,,,,,,"6.000000","8862.000000","9494.750000","2.500000",,"429.250000",,,,"1.800000","0.375000","2.333333","13.333333","2.875000","0.000000","39.000000","0.000000","5.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1250.750000",,"1250.750000",,"1250.750000",,"287.500000","0.000000",,,,,,,,,"5.000000","9409.250000","9473.500000","1.750000",,"411.250000",,,,"2.400000","0.000000","2.666667","9.333333","4.125000","0.000000","49.800000","0.000000","3.800000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1154.750000",,"1154.750000",,"1154.750000",,"262.500000","0.000000",,,,,,,,,"24.500000","8688.000000","9617.750000","7.875000",,"1664.625000",,,,"6.400000","0.625000","10.000000","24.333333","11.125000","0.000000","128.400000","0.000000","8.000000","120.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1167.750000",,"1167.750000",,"1167.750000",,"186.000000","0.000000",,,,,,,,,"52.000000","8786.000000","9567.250000","7.500000",,"3361.500000",,,,"10.800000","0.375000","3.000000","43.000000","19.500000","0.000000","217.200000","0.000000","7.400000","209.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1271.500000",,"1271.500000",,"1271.500000",,"287.000000","0.000000",,,,,,,,,"7.500000","9563.750000","9609.750000","16.875000",,"471.375000",,,,"4.600000","1.375000","4.000000","19.000000","7.000000","0.000000","94.200000","0.000000","18.200000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1162.250000",,"1162.250000",,"1162.250000",,"250.000000","0.000000",,,,,,,,,"27.000000","8742.750000","9915.000000","544.750000",,"777.000000",,,,"10.400000","12.125000","3.333333","25.333333","7.000000","0.000000","210.000000","0.000000","134.000000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"892.250000",,"892.250000",,"892.250000",,"447.500000","0.000000",,,,,,,,,"176.250000","6713.250000","10175.500000","1023.750000",,"10632.750000",,,,"49.400000","15.875000","3.333333","18.000000","76.750000","0.000000","989.400000","0.000000","168.800000","820.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1027.250000",,"1027.250000",,"1027.250000",,"228.750000","0.000000",,,,,,,,,"5.500000","7726.750000","9456.250000","5.625000",,"343.125000",,,,"1.000000","0.375000","0.666667","13.666667","1.375000","0.000000","22.400000","0.000000","4.400000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"951.000000",,"951.000000",,"951.000000",,"307.500000","0.000000",,,,,,,,,"4.500000","7156.000000","9368.500000","3.750000",,"293.875000",,,,"2.800000","0.375000","0.666667","4.333333","4.500000","0.000000","56.800000","0.000000","5.800000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1092.000000",,"1092.000000",,"1092.000000",,"308.500000","0.000000",,,,,,,,,"4.250000","8213.500000","9404.250000","1.125000",,"486.375000",,,,"1.000000","0.000000","0.666667","14.000000","1.750000","0.000000","22.800000","0.000000","1.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"898.000000",,"898.000000",,"898.000000",,"204.250000","0.000000",,,,,,,,,"2.250000","6754.250000","9402.000000","1.875000",,"225.375000",,,,"0.800000","0.000000","0.333333","8.666667","1.500000","0.000000","18.800000","0.000000","2.400000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1028.250000",,"1028.250000",,"1028.250000",,"147.250000","0.000000",,,,,,,,,"3.250000","7733.250000","9503.500000","0.750000",,"266.250000",,,,"0.800000","0.000000","0.666667","6.333333","1.125000","0.000000","17.000000","0.000000","2.800000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"844.500000",,"844.500000",,"844.500000",,"163.750000","0.000000",,,,,,,,,"6.500000","6353.750000","9458.250000","1.875000",,"230.250000",,,,"1.800000","0.000000","0.333333","13.333333","3.250000","0.000000","38.400000","0.000000","2.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.500000",,"884.500000",,"884.500000",,"151.250000","0.000000",,,,,,,,,"4.500000","6656.250000","9499.000000","2.625000",,"401.875000",,,,"1.000000","0.000000","1.333333","10.333333","1.750000","0.000000","23.800000","0.000000","2.600000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"906.000000",,"906.000000",,"906.000000",,"127.250000","0.000000",,,,,,,,,"25.250000","6816.750000","9766.750000","346.875000",,"1326.375000",,,,"8.600000","5.875000","4.000000","20.666667","10.000000","0.000000","174.200000","0.000000","64.400000","109.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.250000",,"856.250000",,"856.250000",,"164.000000","0.000000",,,,,,,,,"9.000000","6442.250000","9504.250000","20.250000",,"362.625000",,,,"3.400000","2.125000","2.333333","7.000000","4.000000","0.000000","69.200000","0.000000","24.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.250000",,"856.250000",,"856.250000",,"156.500000","0.000000",,,,,,,,,"3.750000","6442.250000","9418.000000","0.625000",,"297.000000",,,,"1.000000","0.000000","3.000000","8.000000","1.750000","0.000000","22.400000","0.000000","0.800000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.000000",,"884.000000",,"884.000000",,"179.000000","0.000000",,,,,,,,,"3.500000","6648.750000","9448.000000","1.875000",,"227.250000",,,,"1.600000","0.000000","0.666667","6.666667","2.500000","0.000000","32.200000","0.000000","2.600000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1158.250000",,"1158.250000",,"1158.250000",,"319.250000","0.000000",,,,,,,,,"3.250000","8712.250000","9407.000000","2.125000",,"406.375000",,,,"1.000000","0.000000","3.333333","12.000000","1.750000","0.000000","23.600000","0.000000","2.600000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1266.500000",,"1266.500000",,"1266.500000",,"212.250000","0.000000",,,,,,,,,"16.750000","9526.750000","9583.250000","11.250000",,"936.625000",,,,"3.800000","1.000000","3.000000","33.333333","5.625000","0.000000","76.000000","0.000000","14.600000","61.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1110.500000",,"1110.500000",,"1110.500000",,"501.500000","0.000000",,,,,,,,,"2.750000","8354.000000","9211.250000","1.875000",,"335.125000",,,,"0.800000","0.000000","0.333333","7.666667","1.375000","0.000000","18.200000","0.000000","0.600000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.500000",,"1103.500000",,"1103.500000",,"162.000000","0.000000",,,,,,,,,"9.000000","8302.750000","9535.500000","1.125000",,"546.375000",,,,"2.000000","0.000000","2.666667","11.000000","3.375000","0.000000","40.600000","0.000000","1.000000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1104.500000",,"1104.500000",,"1104.500000",,"262.500000","0.000000",,,,,,,,,"79.250000","8309.500000","10911.000000","2243.625000",,"972.000000",,,,"32.600000","54.375000","1.666667","14.000000","6.375000","0.000000","654.000000","0.000000","583.800000","70.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1067.000000",,"1067.000000",,"1067.000000",,"377.000000","0.000000",,,,,,,,,"87.500000","8026.500000","10848.000000","1455.250000",,"2058.750000",,,,"28.800000","33.125000","3.333333","18.666667","20.125000","0.000000","576.800000","0.000000","358.400000","218.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1140.000000",,"1140.000000",,"1140.000000",,"188.500000","0.000000",,,,,,,,,"78.750000","8576.250000","9930.250000","632.375000",,"3302.250000",,,,"20.200000","13.500000","3.000000","14.333333","24.375000","0.000000","406.600000","0.000000","144.200000","262.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"920.000000",,"920.000000",,"920.000000",,"401.500000","0.000000",,,,,,,,,"94.250000","6922.000000","10113.500000","1639.500000",,"4139.875000",,,,"25.000000","20.250000","2.333333","16.333333","26.250000","0.000000","500.600000","0.000000","219.800000","280.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"983.000000",,"983.000000",,"983.000000",,"277.500000","0.000000",,,,,,,,,"33.250000","7394.250000","9668.250000","236.625000",,"2107.750000",,,,"15.200000","6.625000","3.666667","11.333333","21.750000","0.000000","307.600000","0.000000","72.400000","235.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1025.500000",,"1025.500000",,"1025.500000",,"183.000000","0.000000",,,,,,,,,"157.750000","7713.750000","11370.750000","2502.875000",,"5341.375000",,,,"47.400000","48.750000","2.333333","12.666667","39.625000","0.000000","949.400000","0.000000","525.000000","424.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"813.000000",,"813.000000",,"813.000000",,"149.750000","0.000000",,,,,,,,,"180.500000","6116.500000","13406.250000","4792.625000",,"1449.750000",,,,"60.400000","101.500000","2.666667","17.333333","11.500000","0.000000","1208.200000","0.000000","1083.400000","124.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"741.500000",,"741.500000",,"741.500000",,"204.750000","0.000000",,,,,,,,,"188.750000","5577.750000","13380.250000","4820.250000",,"3013.875000",,,,"63.800000","104.875000","2.666667","36.333333","14.500000","0.000000","1277.200000","0.000000","1120.000000","157.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"921.250000",,"921.250000",,"921.250000",,"218.500000","0.000000",,,,,,,,,"153.000000","6930.500000","11504.250000","4123.375000",,"2653.250000",,,,"56.400000","86.000000","1.666667","13.666667","19.500000","0.000000","1129.000000","0.000000","918.800000","210.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1141.250000",,"1141.250000",,"1141.250000",,"282.500000","0.000000",,,,,,,,,"81.500000","8584.750000","9455.000000","16.375000",,"5363.125000",,,,"24.400000","2.625000","2.333333","14.000000","43.000000","0.000000","491.800000","0.000000","31.600000","460.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1137.250000",,"1137.250000",,"1137.250000",,"337.250000","0.000000",,,,,,,,,"59.500000","8555.500000","10272.500000","182.875000",,"2041.375000",,,,"24.000000","17.500000","2.000000","19.333333","27.375000","0.000000","483.000000","0.000000","189.200000","293.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"64.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1145.750000",,"1145.750000",,"1145.750000",,"347.750000","0.000000",,,,,,,,,"98.750000","8619.250000","9979.250000","206.375000",,"5645.625000",,,,"41.400000","12.000000","2.666667","18.000000","65.250000","0.000000","830.200000","0.000000","130.800000","699.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1186.250000",,"1186.250000",,"1186.250000",,"253.500000","0.000000",,,,,,,,,"187.000000","8922.750000","9698.000000","182.125000",,"11065.375000",,,,"48.600000","7.875000","2.666667","24.666667","83.000000","0.000000","974.400000","0.000000","87.000000","887.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1136.250000",,"1136.250000",,"1136.250000",,"237.250000","0.000000",,,,,,,,,"124.000000","8544.500000","10460.750000","772.875000",,"5834.375000",,,,"39.200000","24.375000","2.333333","23.000000","47.750000","0.000000","784.600000","0.000000","261.200000","523.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"751.750000",,"751.750000",,"751.750000",,"440.250000","0.000000",,,,,,,,,"225.500000","5655.500000","13179.250000","7608.500000",,"442.750000",,,,"77.000000","136.500000","2.000000","12.666667","8.250000","0.000000","1543.400000","0.000000","1463.800000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"168.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"880.250000",,"880.250000",,"880.250000",,"286.250000","0.000000",,,,,,,,,"172.500000","6622.000000","12222.250000","4045.500000",,"2047.750000",,,,"59.200000","102.375000","2.666667","41.666667","8.250000","0.000000","1184.000000","0.000000","1093.400000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"909.500000",,"909.500000",,"909.500000",,"282.000000","0.000000",,,,,,,,,"160.000000","6842.000000","11520.750000","3802.875000",,"2834.625000",,,,"58.600000","83.000000","1.666667","16.333333","26.625000","0.000000","1172.000000","0.000000","886.000000","286.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"771.250000",,"771.250000",,"771.250000",,"205.500000","0.000000",,,,,,,,,"147.500000","5802.500000","12124.000000","5920.875000",,"323.250000",,,,"57.400000","104.625000","2.000000","8.000000","3.000000","0.000000","1150.000000","0.000000","1116.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"802.750000",,"802.750000",,"802.750000",,"354.000000","0.000000",,,,,,,,,"197.500000","6040.000000","12625.000000","6441.750000",,"222.000000",,,,"83.000000","152.625000","2.000000","4.000000","2.625000","0.000000","1663.600000","0.000000","1631.800000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"851.250000",,"851.250000",,"851.250000",,"422.000000","0.000000",,,,,,,,,"229.000000","6403.000000","12501.000000","6186.750000",,"3268.000000",,,,"72.400000","115.000000","2.333333","33.333333","19.875000","0.000000","1448.600000","0.000000","1233.600000","215.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1036.750000",,"1036.750000",,"1036.750000",,"224.750000","0.000000",,,,,,,,,"148.500000","7798.750000","11141.250000","3452.125000",,"2548.750000",,,,"55.400000","72.250000","1.333333","10.000000","31.875000","0.000000","1109.800000","0.000000","767.800000","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1302.500000",,"1302.500000",,"1302.500000",,"310.000000","0.000000",,,,,,,,,"5.000000","9796.500000","9418.250000","5.250000",,"324.250000",,,,"2.200000","0.375000","0.333333","3.666667","3.375000","0.000000","47.600000","0.000000","7.800000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1312.000000",,"1312.000000",,"1312.000000",,"418.750000","0.000000",,,,,,,,,"4.750000","9868.000000","9420.500000","1.875000",,"249.750000",,,,"2.600000","0.250000","2.666667","11.000000","4.500000","0.000000","54.200000","0.000000","4.200000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1259.000000",,"1259.000000",,"1259.000000",,"251.000000","0.000000",,,,,,,,,"7.250000","9471.500000","9510.250000","6.250000",,"314.125000",,,,"2.200000","0.375000","2.000000","5.666667","3.250000","0.000000","46.400000","0.000000","7.800000","38.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1168.750000",,"1168.750000",,"1168.750000",,"261.500000","0.000000",,,,,,,,,"4.250000","8791.500000","9463.250000","3.000000",,"417.375000",,,,"1.400000","0.375000","2.666667","12.333333","1.875000","0.000000","29.400000","0.000000","5.600000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1307.000000",,"1307.000000",,"1307.000000",,"232.250000","0.000000",,,,,,,,,"9.250000","9831.000000","9566.750000","10.000000",,"413.625000",,,,"3.600000","1.125000","4.333333","8.333333","5.125000","0.000000","72.000000","0.000000","14.600000","57.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"326.000000",,"326.000000",,"326.000000",,"153.500000","0.000000",,,,,,,,,"168.750000","2455.250000","16998.250000","7192.125000",,"157.500000",,,,"66.800000","123.750000","2.000000","11.333333","1.125000","0.000000","1337.400000","0.000000","1324.200000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"290.000000",,"290.000000",,"290.000000",,"157.000000","0.000000",,,,,,,,,"151.750000","2184.500000","16750.000000","5627.125000",,"884.125000",,,,"69.400000","122.750000","2.000000","10.666667","7.125000","0.000000","1391.400000","0.000000","1311.600000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"307.750000",,"307.750000",,"307.750000",,"294.500000","0.000000",,,,,,,,,"209.500000","2319.250000","16349.750000","6461.875000",,"3409.125000",,,,"81.000000","120.250000","2.000000","10.666667","31.125000","0.000000","1622.400000","0.000000","1286.600000","335.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"232.000000",,"232.000000",,"232.000000",,"160.500000","0.000000",,,,,,,,,"124.500000","1749.750000","17097.500000","2848.750000",,"1853.375000",,,,"74.600000","122.500000","2.333333","15.666667","16.375000","0.000000","1492.600000","0.000000","1311.000000","181.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","38.000000",,,,,,,,,"183.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"146.500000",,"146.500000",,"146.500000",,"149.500000","0.000000",,,,,,,,,"293.500000","1106.000000","18391.000000","8867.250000",,"7972.875000",,,,"123.800000","203.125000","3.666667","28.000000","29.375000","0.000000","2479.600000","0.000000","2168.000000","311.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.750000",,"145.750000",,"145.750000",,"172.250000","0.000000",,,,,,,,,"289.500000","1100.250000","18472.000000","7309.625000",,"8228.875000",,,,"101.800000","170.250000","2.666667","37.666667","20.500000","0.000000","2038.800000","0.000000","1817.200000","221.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"161.000000",,"161.000000",,"161.000000",,"176.250000","0.000000",,,,,,,,,"127.000000","1215.750000","18137.000000","2569.375000",,"3177.625000",,,,"56.800000","87.625000","2.333333","26.333333","19.000000","0.000000","1139.800000","0.000000","936.000000","203.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"135.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"165.000000",,"165.000000",,"165.000000",,"308.500000","0.000000",,,,,,,,,"33.500000","1246.000000","17550.250000","175.000000",,"137.625000",,,,"13.200000","13.500000","3.000000","0.666667","10.875000","0.000000","265.000000","0.000000","146.800000","118.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","14.000000",,,,,,,,,"2795.000000","2920.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.000000",,"276.000000",,"276.000000",,"147.250000","0.000000",,,,,,,,,"82.750000","2078.250000","17108.500000","35.250000",,"4056.000000",,,,"31.200000","2.875000","4.333333","20.333333","55.125000","0.000000","625.200000","0.000000","34.000000","591.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1982.000000","18.000000",,,,,,,,,"27405.000000","3560.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"199.500000",,"199.500000",,"199.500000",,"88.750000","0.000000",,,,,,,,,"8.000000","1502.250000","18195.000000","15.250000",,"222.750000",,,,"5.000000","0.750000","3.333333","1.666667","8.250000","0.000000","100.600000","0.000000","9.800000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"139.000000","171.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"139.750000",,"139.750000",,"139.750000",,"87.000000","0.000000",,,,,,,,,"3.250000","1055.000000","18501.000000","6.625000",,"103.000000",,,,"4.600000","0.000000","5.333333","1.333333","8.250000","0.000000","93.000000","0.000000","2.200000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"106.000000",,"106.000000",,"106.000000",,"108.250000","0.000000",,,,,,,,,"2.500000","800.500000","18757.750000","1.875000",,"71.250000",,,,"3.000000","0.000000","5.000000","1.000000","5.250000","0.000000","60.000000","0.000000","0.200000","59.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.000000",,"58.000000",,"58.000000",,"82.250000","0.000000",,,,,,,,,"1.250000","440.000000","19448.750000","0.000000",,"24.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.625000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"114.750000","0.000000",,,,,,,,,"1.000000","413.500000","19216.750000","0.000000",,"21.125000",,,,"0.800000","0.000000","0.000000","1.666667","2.000000","0.000000","19.400000","0.000000","0.200000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.000000",,"70.000000",,"70.000000",,"109.000000","0.000000",,,,,,,,,"1.250000","528.250000","19195.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","33.400000","0.000000","0.000000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"92.250000","0.000000",,,,,,,,,"0.750000","412.500000","19283.500000","0.000000",,"21.000000",,,,"1.000000","0.000000","0.000000","2.000000","1.875000","0.000000","23.600000","0.000000","0.000000","23.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"186.250000","0.000000",,,,,,,,,"1.250000","516.750000","19108.750000","0.000000",,"40.125000",,,,"1.800000","0.000000","0.000000","4.666667","3.250000","0.000000","37.000000","0.000000","0.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"378.750000","0.000000",,,,,,,,,"7.000000","1114.000000","17781.000000","3.750000",,"147.625000",,,,"6.200000","0.000000","1.000000","0.666667","11.250000","0.000000","125.400000","0.000000","2.600000","122.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"479.000000","566.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"241.500000",,"241.500000",,"241.500000",,"493.750000","0.000000",,,,,,,,,"18.250000","1818.000000","16396.000000","27.000000",,"343.875000",,,,"9.400000","1.875000","2.333333","1.666667","15.250000","0.000000","189.800000","0.000000","22.800000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","5.000000",,,,,,,,,"781.000000","914.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"308.250000",,"308.250000",,"308.250000",,"746.500000","0.000000",,,,,,,,,"51.500000","2320.750000","15488.750000","1.125000",,"3266.875000",,,,"22.800000","0.000000","0.666667","9.333333","42.250000","0.000000","456.200000","0.000000","3.000000","453.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","16.000000",,,,,,,,,"3224.000000","3381.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.000000",,"167.000000",,"167.000000",,"435.000000","0.000000",,,,,,,,,"5.250000","1258.250000","17547.000000","0.625000",,"259.500000",,,,"8.400000","0.000000","4.000000","2.666667","15.375000","0.000000","169.200000","0.000000","2.000000","167.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"128.750000",,"128.750000",,"128.750000",,"289.750000","0.000000",,,,,,,,,"3.250000","971.000000","18250.250000","0.000000",,"85.125000",,,,"2.600000","0.000000","0.000000","1.666667","4.875000","0.000000","53.000000","0.000000","0.200000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"149.000000",,"149.000000",,"149.000000",,"302.750000","0.000000",,,,,,,,,"4.500000","1123.250000","17899.250000","0.000000",,"101.500000",,,,"4.400000","0.000000","0.000000","2.333333","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"220.750000","0.000000",,,,,,,,,"0.750000","444.000000","19068.250000","0.000000",,"25.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"149.750000","0.000000",,,,,,,,,"2.000000","485.750000","19164.000000","0.000000",,"45.625000",,,,"2.200000","0.000000","0.000000","2.000000","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"136.750000","0.000000",,,,,,,,,"2.250000","444.500000","19193.250000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"131.000000","0.000000",,,,,,,,,"1.250000","480.250000","19231.500000","0.000000",,"31.750000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"147.000000","0.000000",,,,,,,,,"0.750000","382.250000","19094.750000","0.000000",,"19.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"182.500000","0.000000",,,,,,,,,"0.500000","398.500000","19155.750000","0.000000",,"15.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","9.400000","0.000000","0.000000","9.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"214.500000","0.000000",,,,,,,,,"1.250000","461.500000","18973.250000","0.000000",,"34.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.400000","0.000000","0.200000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.750000",,"56.750000",,"56.750000",,"132.750000","0.000000",,,,,,,,,"0.250000","429.250000","19274.750000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","6.000000","0.000000","0.000000","6.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"255.750000","0.000000",,,,,,,,,"0.750000","416.500000","18995.500000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.800000","0.000000","0.000000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"89.250000",,"89.250000",,"89.250000",,"179.250000","0.000000",,,,,,,,,"4.250000","673.500000","18695.000000","0.000000",,"113.125000",,,,"5.200000","0.000000","5.666667","1.666667","9.625000","0.000000","105.000000","0.000000","0.800000","104.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.250000",,"162.250000",,"162.250000",,"257.500000","0.000000",,,,,,,,,"7.500000","1223.250000","17510.750000","0.000000",,"124.375000",,,,"4.800000","0.000000","0.000000","1.000000","9.000000","0.000000","99.200000","0.000000","0.200000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"434.000000","499.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"121.500000",,"121.500000",,"121.500000",,"189.500000","0.000000",,,,,,,,,"3.750000","918.000000","18342.750000","0.750000",,"115.500000",,,,"5.000000","0.000000","3.333333","2.333333","9.000000","0.000000","100.200000","0.000000","2.400000","97.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"116.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"209.250000","0.000000",,,,,,,,,"2.750000","1198.000000","18132.500000","4.875000",,"96.750000",,,,"3.400000","0.000000","7.333333","3.333333","6.250000","0.000000","69.600000","0.000000","0.600000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"97.750000",,"97.750000",,"97.750000",,"186.500000","0.000000",,,,,,,,,"3.250000","740.250000","18561.750000","0.000000",,"57.375000",,,,"2.600000","0.000000","0.333333","2.666667","4.750000","0.000000","52.400000","0.000000","0.200000","52.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.000000",,"69.000000",,"69.000000",,"180.750000","0.000000",,,,,,,,,"1.250000","521.500000","19070.000000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"142.500000","0.000000",,,,,,,,,"1.000000","413.250000","19252.500000","0.000000",,"26.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"155.500000","0.000000",,,,,,,,,"0.750000","392.000000","19174.250000","0.000000",,"14.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"115.250000","0.000000",,,,,,,,,"0.750000","417.000000","19361.500000","0.000000",,"20.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"149.000000","0.000000",,,,,,,,,"1.000000","415.000000","19183.750000","0.000000",,"15.750000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","16.200000","0.000000","0.200000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"118.750000","0.000000",,,,,,,,,"0.250000","398.250000","19309.250000","0.000000",,"8.875000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.200000","0.000000","0.000000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"159.000000","0.000000",,,,,,,,,"0.500000","394.750000","19145.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"124.000000","0.000000",,,,,,,,,"0.750000","430.500000","19269.000000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"108.000000","0.000000",,,,,,,,,"1.250000","433.500000","19325.750000","0.000000",,"11.250000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"78.750000",,"78.750000",,"78.750000",,"196.000000","0.000000",,,,,,,,,"4.000000","595.500000","18793.750000","2.625000",,"76.125000",,,,"3.200000","0.000000","3.000000","1.333333","6.000000","0.000000","66.600000","0.000000","0.600000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","96.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"130.750000",,"130.750000",,"130.750000",,"387.250000","0.000000",,,,,,,,,"5.500000","988.000000","17671.000000","0.000000",,"124.750000",,,,"5.800000","0.000000","0.000000","1.666667","10.750000","0.000000","118.200000","0.000000","0.200000","118.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"426.000000","505.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"281.750000",,"281.750000",,"281.750000",,"351.000000","0.000000",,,,,,,,,"24.500000","2121.250000","16324.750000","1.875000",,"379.750000",,,,"12.200000","0.000000","6.333333","1.666667","22.875000","0.000000","247.800000","0.000000","2.800000","245.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","13.000000",,,,,,,,,"2376.000000","2596.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"234.250000",,"234.250000",,"234.250000",,"321.500000","0.000000",,,,,,,,,"37.250000","1765.500000","17281.500000","1.875000",,"1787.625000",,,,"10.800000","0.000000","2.000000","32.666667","19.750000","0.000000","218.400000","0.000000","3.800000","214.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1046.000000","16.000000",,,,,,,,,"15655.000000","3207.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.500000",,"116.500000",,"116.500000",,"341.250000","0.000000",,,,,,,,,"6.250000","880.750000","18048.500000","1.875000",,"134.125000",,,,"6.200000","0.000000","4.000000","1.666667","11.625000","0.000000","127.000000","0.000000","1.400000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"162.000000","187.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"144.750000","0.000000",,,,,,,,,"1.000000","488.750000","19086.000000","0.000000",,"31.125000",,,,"1.000000","0.000000","0.000000","2.333333","1.875000","0.000000","22.200000","0.000000","0.200000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"217.250000","0.000000",,,,,,,,,"1.250000","414.750000","19086.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"275.000000","0.000000",,,,,,,,,"1.250000","472.250000","18870.750000","0.000000",,"42.250000",,,,"1.600000","0.000000","0.000000","0.666667","2.875000","0.000000","32.000000","0.000000","0.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"158.750000","0.000000",,,,,,,,,"1.000000","401.000000","19134.500000","0.000000",,"24.750000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"186.750000","0.000000",,,,,,,,,"0.250000","411.000000","19139.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","2.333333","0.375000","0.000000","6.600000","0.000000","0.000000","6.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"121.250000","0.000000",,,,,,,,,"1.750000","495.500000","19232.250000","0.000000",,"49.125000",,,,"2.200000","0.000000","1.333333","1.666667","4.000000","0.000000","44.200000","0.000000","0.200000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"178.750000","0.000000",,,,,,,,,"0.750000","411.250000","19221.500000","0.000000",,"17.875000",,,,"0.800000","0.000000","0.000000","2.333333","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"222.750000","0.000000",,,,,,,,,"0.750000","405.000000","19148.000000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"222.750000","0.000000",,,,,,,,,"1.500000","482.250000","19057.500000","0.000000",,"45.625000",,,,"2.000000","0.000000","0.000000","1.000000","3.625000","0.000000","42.600000","0.000000","0.000000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"250.750000","0.000000",,,,,,,,,"13.750000","1097.750000","17822.250000","6.625000",,"218.750000",,,,"9.600000","0.625000","1.666667","0.333333","16.750000","0.000000","192.000000","0.000000","8.400000","183.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","6.000000",,,,,,,,,"826.000000","1039.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.750000",,"148.750000",,"148.750000",,"169.500000","0.000000",,,,,,,,,"7.500000","1122.000000","17912.500000","54.625000",,"136.250000",,,,"7.600000","3.375000","1.333333","1.333333","11.000000","0.000000","154.000000","0.000000","36.200000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"299.000000","366.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.750000",,"61.750000",,"61.750000",,"239.250000","0.000000",,,,,,,,,"1.500000","468.250000","19080.000000","12.000000",,"48.750000",,,,"1.800000","0.375000","1.666667","0.666667","2.625000","0.000000","37.200000","0.000000","7.000000","30.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.750000",,"50.750000",,"50.750000",,"263.500000","0.000000",,,,,,,,,"0.750000","386.750000","19093.750000","0.000000",,"23.500000",,,,"1.000000","0.000000","0.000000","8.666667","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"166.750000","0.000000",,,,,,,,,"0.500000","413.500000","19170.500000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.000000",,"62.000000",,"62.000000",,"231.750000","0.000000",,,,,,,,,"1.500000","470.500000","18971.250000","0.000000",,"40.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"196.000000","0.000000",,,,,,,,,"0.750000","392.250000","19102.500000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"296.500000","0.000000",,,,,,,,,"18.000000","500.000000","18913.750000","252.375000",,"23.250000",,,,"6.800000","12.000000","1.333333","22.666667","0.750000","0.000000","139.400000","0.000000","129.800000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"258.000000","301.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"385.000000","0.000000",,,,,,,,,"1.750000","469.250000","18764.000000","0.000000",,"57.375000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"184.250000","0.000000",,,,,,,,,"0.750000","426.750000","19292.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"219.500000","0.000000",,,,,,,,,"0.750000","445.000000","19045.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.500000",,"141.500000",,"141.500000",,"280.750000","0.000000",,,,,,,,,"3.000000","1067.500000","18014.500000","0.750000",,"109.125000",,,,"4.000000","0.000000","1.666667","0.666667","7.125000","0.000000","80.800000","0.000000","1.000000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"72.500000",,"72.500000",,"72.500000",,"236.000000","0.000000",,,,,,,,,"2.250000","547.750000","18784.250000","0.000000",,"71.875000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.800000","0.000000","0.000000","63.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.750000",,"56.750000",,"56.750000",,"204.000000","0.000000",,,,,,,,,"1.250000","431.750000","19150.250000","0.000000",,"27.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"326.500000","0.000000",,,,,,,,,"1.250000","482.000000","18921.750000","0.000000",,"30.375000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"264.250000","0.000000",,,,,,,,,"0.750000","405.750000","19030.250000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.500000",,"68.500000",,"68.500000",,"165.750000","0.000000",,,,,,,,,"1.500000","518.500000","20362.250000","0.000000",,"36.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"46.000000",,"46.000000",,"46.000000",,"257.500000","0.000000",,,,,,,,,"0.500000","349.000000","17803.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.500000","0.000000","18.600000","0.000000","0.000000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"212.500000","0.000000",,,,,,,,,"0.750000","420.000000","19057.750000","0.375000",,"27.750000",,,,"1.000000","0.000000","1.666667","0.333333","1.750000","0.000000","21.800000","0.000000","1.200000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"220.250000","0.000000",,,,,,,,,"0.750000","395.500000","19072.000000","0.000000",,"14.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"143.500000","0.000000",,,,,,,,,"1.250000","510.750000","19216.500000","0.000000",,"43.375000",,,,"1.800000","0.000000","0.000000","0.333333","3.375000","0.000000","37.200000","0.000000","0.000000","37.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.750000","532.250000","19072.000000","0.000000",,"53.125000",,,,"2.600000","0.000000","0.000000","0.666667","4.750000","0.000000","52.800000","0.000000","0.000000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"156.750000",,"156.750000",,"156.750000",,"208.250000","0.000000",,,,,,,,,"15.000000","1182.250000","17896.500000","375.750000",,"138.375000",,,,"8.200000","6.250000","1.666667","1.000000","8.875000","0.000000","167.600000","0.000000","70.000000","97.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"372.000000","428.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.250000",,"167.250000",,"167.250000",,"192.750000","0.000000",,,,,,,,,"25.500000","1263.500000","18166.500000","582.250000",,"31.125000",,,,"24.800000","44.250000","0.666667","0.333333","1.875000","0.000000","497.000000","0.000000","475.800000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"184.000000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"170.000000","0.000000",,,,,,,,,"1.750000","417.750000","19208.250000","0.000000",,"53.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.800000","0.000000","0.000000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"142.250000","0.000000",,,,,,,,,"0.750000","422.500000","19228.750000","0.000000",,"23.250000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","19.000000","0.000000","0.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"143.500000","0.000000",,,,,,,,,"1.500000","503.250000","19154.250000","0.000000",,"48.250000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","37.800000","0.000000","0.000000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"129.500000","0.000000",,,,,,,,,"0.500000","424.500000","19341.750000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"161.250000","0.000000",,,,,,,,,"0.500000","444.500000","19246.750000","0.000000",,"18.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.250000","533.500000","19221.750000","0.000000",,"49.875000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"152.500000","0.000000",,,,,,,,,"0.500000","419.250000","19240.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"126.500000","0.000000",,,,,,,,,"1.000000","455.750000","19299.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"196.500000","0.000000",,,,,,,,,"3.500000","765.750000","18777.250000","2.125000",,"94.875000",,,,"4.400000","0.000000","4.000000","1.000000","7.750000","0.000000","88.200000","0.000000","2.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"178.500000",,"178.500000",,"178.500000",,"145.500000","0.000000",,,,,,,,,"3.250000","1347.000000","18115.750000","0.000000",,"121.000000",,,,"4.000000","0.000000","0.000000","1.666667","7.375000","0.000000","80.600000","0.000000","0.000000","80.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.500000",,"68.500000",,"68.500000",,"116.750000","0.000000",,,,,,,,,"2.750000","519.250000","19257.500000","0.000000",,"68.125000",,,,"2.200000","0.000000","0.000000","1.333333","4.125000","0.000000","47.600000","0.000000","0.000000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"197.250000",,"197.250000",,"197.250000",,"279.000000","0.000000",,,,,,,,,"22.250000","1487.000000","17346.000000","159.250000",,"164.125000",,,,"14.400000","15.250000","2.333333","1.666667","11.625000","0.000000","291.200000","0.000000","164.400000","126.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"63.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"105.250000",,"105.250000",,"105.250000",,"163.750000","0.000000",,,,,,,,,"4.750000","796.500000","18592.500000","0.000000",,"64.875000",,,,"3.000000","0.000000","0.000000","2.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"193.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.250000",,"147.250000",,"147.250000",,"164.250000","0.000000",,,,,,,,,"5.500000","1109.500000","18225.250000","1.125000",,"129.375000",,,,"4.200000","0.000000","1.333333","0.666667","7.750000","0.000000","87.000000","0.000000","1.800000","85.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"153.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"73.250000",,"73.250000",,"73.250000",,"201.250000","0.000000",,,,,,,,,"2.250000","556.000000","18887.250000","0.375000",,"73.125000",,,,"3.200000","0.000000","3.000000","20.333333","6.000000","0.000000","67.800000","0.000000","0.200000","67.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.000000",,"65.000000",,"65.000000",,"293.250000","0.000000",,,,,,,,,"1.250000","493.500000","18930.000000","0.000000",,"35.250000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.000000",,"51.000000",,"51.000000",,"324.750000","0.000000",,,,,,,,,"0.500000","387.750000","18960.500000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.500000",,"61.500000",,"61.500000",,"312.000000","0.000000",,,,,,,,,"1.500000","466.000000","18739.000000","0.000000",,"43.375000",,,,"1.600000","0.000000","0.000000","2.666667","2.875000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"259.000000","0.000000",,,,,,,,,"0.500000","400.000000","18935.750000","0.000000",,"18.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"183.000000","0.000000",,,,,,,,,"0.750000","401.250000","19144.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"260.000000","0.000000",,,,,,,,,"1.750000","490.000000","18922.250000","0.000000",,"46.000000",,,,"2.000000","0.000000","0.000000","1.666667","3.625000","0.000000","42.000000","0.000000","0.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"185.750000","0.000000",,,,,,,,,"0.500000","400.500000","19128.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.250000",,"52.250000",,"52.250000",,"191.000000","0.000000",,,,,,,,,"0.500000","397.750000","19199.500000","0.000000",,"10.500000",,,,"0.000000","0.000000","0.000000","3.666667","0.000000","0.000000","3.400000","0.000000","0.000000","3.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.000000",,"65.000000",,"65.000000",,"288.250000","0.000000",,,,,,,,,"2.250000","492.500000","18967.000000","0.000000",,"56.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"49.250000",,"49.250000",,"49.250000",,"413.250000","0.000000",,,,,,,,,"0.250000","372.000000","18771.750000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"274.250000","0.000000",,,,,,,,,"1.000000","410.500000","18897.000000","0.375000",,"32.250000",,,,"1.400000","0.000000","2.666667","1.333333","2.625000","0.000000","31.800000","0.000000","0.200000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.000000",,"63.000000",,"63.000000",,"360.250000","0.000000",,,,,,,,,"1.500000","476.500000","18722.250000","3.375000",,"40.875000",,,,"1.800000","0.375000","1.000000","2.333333","2.875000","0.000000","36.600000","0.000000","4.400000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"274.750000","0.000000",,,,,,,,,"0.750000","437.000000","19069.250000","0.000000",,"22.125000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"364.250000","0.000000",,,,,,,,,"0.750000","399.250000","18990.750000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.800000","0.000000","0.000000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.250000",,"60.250000",,"60.250000",,"394.750000","0.000000",,,,,,,,,"0.750000","456.250000","18710.000000","0.000000",,"32.250000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","25.800000","0.000000","0.000000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"70.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"174.500000","0.000000",,,,,,,,,"1.000000","438.500000","19223.000000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"248.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"195.000000","0.000000",,,,,,,,,"0.500000","395.500000","19119.000000","0.000000",,"18.250000",,,,"0.600000","0.000000","0.000000","0.000000","1.000000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"108.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"159.500000","0.000000",,,,,,,,,"1.750000","498.250000","19073.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"149.500000","0.000000",,,,,,,,,"0.750000","413.500000","19206.500000","0.000000",,"14.625000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","10.800000","0.000000","0.000000","10.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"144.500000",,"144.500000",,"144.500000",,"315.750000","0.000000",,,,,,,,,"2.750000","1090.250000","18005.000000","1.875000",,"91.750000",,,,"4.400000","0.000000","2.666667","1.000000","7.750000","0.000000","89.400000","0.000000","2.800000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"83.250000",,"83.250000",,"83.250000",,"253.250000","0.000000",,,,,,,,,"4.500000","629.250000","18626.250000","0.375000",,"159.625000",,,,"6.400000","0.000000","2.666667","1.666667","11.875000","0.000000","129.400000","0.000000","1.000000","128.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"304.500000","0.000000",,,,,,,,,"1.000000","481.750000","18891.250000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.250000",,"50.250000",,"50.250000",,"259.000000","0.000000",,,,,,,,,"0.500000","383.000000","19155.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"290.250000","0.000000",,,,,,,,,"1.000000","494.250000","18933.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.250000",,"50.250000",,"50.250000",,"348.500000","0.000000",,,,,,,,,"0.750000","383.250000","18885.000000","0.000000",,"26.625000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"47.500000",,"47.500000",,"47.500000",,"283.000000","0.000000",,,,,,,,,"0.250000","362.250000","18954.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"291.000000","0.000000",,,,,,,,,"1.250000","478.750000","18789.750000","0.000000",,"45.250000",,,,"2.000000","0.000000","0.000000","0.666667","3.625000","0.000000","40.000000","0.000000","0.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"48.250000",,"48.250000",,"48.250000",,"442.750000","0.000000",,,,,,,,,"0.750000","364.250000","18750.750000","0.000000",,"22.375000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"48.750000",,"48.750000",,"48.750000",,"405.250000","0.000000",,,,,,,,,"0.250000","370.500000","18868.000000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"426.750000","0.000000",,,,,,,,,"1.250000","475.500000","18686.250000","0.000000",,"53.625000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"94.250000",,"94.250000",,"94.250000",,"370.500000","0.000000",,,,,,,,,"23.000000","712.750000","18413.000000","479.000000",,"570.750000",,,,"16.200000","16.375000","2.000000","2.666667","13.500000","0.000000","326.600000","0.000000","180.200000","146.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"52.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"199.000000",,"199.000000",,"199.000000",,"410.000000","0.000000",,,,,,,,,"207.250000","1499.750000","16897.250000","4741.250000",,"4936.125000",,,,"82.800000","119.750000","1.666667","15.000000","35.625000","0.000000","1659.400000","0.000000","1276.600000","382.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"165.000000",,"165.000000",,"165.000000",,"470.500000","0.000000",,,,,,,,,"80.250000","1245.250000","17120.500000","396.125000",,"174.250000",,,,"51.200000","94.500000","2.000000","3.000000","1.125000","0.000000","1024.200000","0.000000","1009.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","248.000000",,,,,,,,,"2093.000000","4453.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"309.750000","0.000000",,,,,,,,,"80.500000","1111.750000","17801.250000","266.000000",,"338.250000",,,,"37.400000","63.000000","2.666667","6.666667","6.750000","0.000000","750.400000","0.000000","675.200000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1515.000000","43.000000",,,,,,,,,"21066.000000","2702.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"311.000000",,"311.000000",,"311.000000",,"656.500000","0.000000",,,,,,,,,"238.500000","2340.750000","14923.750000","0.000000",,"7933.375000",,,,"19.200000","0.000000","3.666667","32.333333","35.875000","0.000000","384.800000","0.000000","0.400000","384.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20399.000000","72.000000",,,,,,,,,"276338.000000","22547.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"290.000000",,"290.000000",,"290.000000",,"550.000000","0.000000",,,,,,,,,"166.000000","2185.500000","15213.250000","0.000000",,"8692.125000",,,,"20.200000","0.000000","0.000000","22.000000","37.875000","0.000000","404.800000","0.000000","0.000000","404.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16094.000000","58.000000",,,,,,,,,"218025.000000","18044.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"281.750000",,"281.750000",,"281.750000",,"461.250000","0.000000",,,,,,,,,"229.250000","2122.500000","15662.750000","2.625000",,"14321.625000",,,,"67.400000","0.000000","5.666667","12.333333","125.750000","0.000000","1348.800000","0.000000","3.200000","1345.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9871.000000","41.000000",,,,,,,,,"133843.000000","11478.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"397.250000","0.000000",,,,,,,,,"151.000000","1279.000000","17194.500000","254.625000",,"3263.500000",,,,"50.400000","53.625000","2.000000","9.666667","40.750000","0.000000","1011.600000","0.000000","576.200000","435.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8517.000000","36.000000",,,,,,,,,"115454.000000","10844.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"366.250000",,"366.250000",,"366.250000",,"566.500000","0.000000",,,,,,,,,"174.250000","2755.250000","14565.750000","46.875000",,"9737.000000",,,,"37.600000","7.375000","2.333333","49.333333","62.875000","0.000000","755.800000","0.000000","79.800000","676.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8454.000000","34.000000",,,,,,,,,"114129.000000","10578.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"240.250000",,"240.250000",,"240.250000",,"477.500000","0.000000",,,,,,,,,"46.000000","1811.500000","16916.000000","2.250000",,"2805.500000",,,,"32.600000","0.000000","10.333333","10.333333","61.250000","0.000000","652.000000","0.000000","3.400000","648.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"99.500000",,"99.500000",,"99.500000",,"508.250000","0.000000",,,,,,,,,"1.250000","752.250000","18093.500000","0.000000",,"49.500000",,,,"2.400000","0.000000","0.000000","2.000000","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"573.500000","0.000000",,,,,,,,,"1.250000","497.000000","18496.250000","0.000000",,"23.625000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"111.750000",,"111.750000",,"111.750000",,"586.500000","0.000000",,,,,,,,,"1.250000","842.000000","17692.000000","0.000000",,"54.375000",,,,"2.200000","0.000000","0.000000","2.333333","4.000000","0.000000","44.000000","0.000000","0.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"589.750000","0.000000",,,,,,,,,"0.750000","414.750000","18523.250000","0.000000",,"22.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"547.500000","0.000000",,,,,,,,,"0.500000","429.750000","18665.500000","0.000000",,"25.000000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"416.250000","0.000000",,,,,,,,,"0.500000","425.250000","18690.500000","0.000000",,"17.250000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.000000",,"61.000000",,"61.000000",,"236.750000","0.000000",,,,,,,,,"0.750000","461.250000","19024.000000","0.000000",,"23.625000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.500000",,"132.500000",,"132.500000",,"369.500000","0.000000",,,,,,,,,"2.750000","999.500000","17743.250000","0.000000",,"71.250000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.600000","0.000000","0.000000","63.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"190.250000",,"190.250000",,"190.250000",,"333.750000","0.000000",,,,,,,,,"3.750000","1433.250000","17368.750000","1.375000",,"147.000000",,,,"4.400000","0.000000","1.000000","2.333333","7.750000","0.000000","88.400000","0.000000","3.400000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"219.500000",,"219.500000",,"219.500000",,"294.500000","0.000000",,,,,,,,,"4.500000","1653.750000","17064.000000","17.250000",,"175.750000",,,,"4.800000","1.125000","0.666667","3.000000","7.500000","0.000000","96.800000","0.000000","13.400000","83.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"168.000000",,"168.000000",,"168.000000",,"325.750000","0.000000",,,,,,,,,"3.500000","1265.750000","17719.500000","0.000000",,"66.125000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","41.000000","0.000000","0.200000","40.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"218.000000",,"218.000000",,"218.000000",,"376.000000","0.000000",,,,,,,,,"40.250000","1642.250000","16982.500000","811.000000",,"262.625000",,,,"14.400000","11.875000","2.000000","1.333333","14.625000","0.000000","291.400000","0.000000","129.800000","161.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","15.000000",,,,,,,,,"3037.000000","3153.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"248.750000",,"248.750000",,"248.750000",,"335.500000","0.000000",,,,,,,,,"56.000000","1874.000000","16884.250000","2.625000",,"3180.375000",,,,"20.600000","0.375000","0.666667","9.333333","38.125000","0.000000","413.000000","0.000000","6.000000","407.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"385.000000","451.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"188.750000",,"188.750000",,"188.750000",,"449.500000","0.000000",,,,,,,,,"8.000000","1424.000000","17720.500000","1.000000",,"322.000000",,,,"11.000000","0.000000","2.000000","2.333333","20.125000","0.000000","221.400000","0.000000","3.200000","218.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"143.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"131.750000",,"131.750000",,"131.750000",,"308.250000","0.000000",,,,,,,,,"2.250000","995.000000","18026.500000","0.000000",,"88.500000",,,,"3.800000","0.000000","0.000000","2.333333","7.125000","0.000000","79.600000","0.000000","0.000000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"184.000000",,"184.000000",,"184.000000",,"269.250000","0.000000",,,,,,,,,"2.250000","1386.750000","17620.500000","0.000000",,"109.000000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.500000",,"57.500000",,"57.500000",,"324.750000","0.000000",,,,,,,,,"1.750000","436.250000","18815.500000","0.000000",,"52.500000",,,,"2.600000","0.000000","0.000000","1.666667","4.750000","0.000000","53.600000","0.000000","0.000000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"401.250000","0.000000",,,,,,,,,"1.250000","401.000000","18790.750000","0.000000",,"30.000000",,,,"1.400000","0.000000","0.000000","1.000000","2.500000","0.000000","31.000000","0.000000","0.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"294.750000","0.000000",,,,,,,,,"0.500000","428.500000","18954.750000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"377.750000","0.000000",,,,,,,,,"1.250000","405.750000","18870.750000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"305.500000","0.000000",,,,,,,,,"0.750000","396.000000","18975.500000","0.000000",,"31.875000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","36.600000","0.000000","0.000000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"134.250000",,"134.250000",,"134.250000",,"237.500000","0.000000",,,,,,,,,"7.750000","1011.750000","18019.250000","2.250000",,"152.500000",,,,"7.800000","0.000000","0.666667","0.666667","14.125000","0.000000","156.200000","0.000000","1.400000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"483.000000","573.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.250000",,"167.250000",,"167.250000",,"345.000000","0.000000",,,,,,,,,"2.500000","1262.750000","17313.250000","0.375000",,"103.000000",,,,"2.800000","0.000000","2.000000","1.000000","5.250000","0.000000","57.400000","0.000000","0.400000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"123.500000",,"123.500000",,"123.500000",,"307.500000","0.000000",,,,,,,,,"4.750000","933.500000","18124.250000","0.000000",,"129.000000",,,,"5.400000","0.000000","0.000000","2.333333","10.000000","0.000000","109.600000","0.000000","0.000000","109.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"145.000000","152.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.750000",,"132.750000",,"132.750000",,"253.750000","0.000000",,,,,,,,,"2.500000","1000.750000","17994.000000","0.000000",,"81.000000",,,,"2.400000","0.000000","0.000000","6.333333","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"353.500000","0.000000",,,,,,,,,"8.750000","1199.250000","17422.000000","0.000000",,"205.750000",,,,"9.000000","0.000000","0.000000","1.333333","16.750000","0.000000","180.000000","0.000000","0.000000","180.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"480.000000","570.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.750000",,"180.750000",,"180.750000",,"392.000000","0.000000",,,,,,,,,"4.500000","1362.500000","17111.250000","0.000000",,"107.875000",,,,"3.000000","0.000000","0.000000","3.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","1.000000",,,,,,,,,"557.000000","445.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"110.000000",,"110.000000",,"110.000000",,"271.000000","0.000000",,,,,,,,,"3.500000","831.000000","18357.250000","0.000000",,"115.125000",,,,"5.200000","0.000000","0.000000","1.333333","9.750000","0.000000","105.000000","0.000000","0.000000","105.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"130.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.500000",,"141.500000",,"141.500000",,"449.000000","0.000000",,,,,,,,,"2.750000","1066.750000","17684.250000","0.000000",,"93.625000",,,,"3.600000","0.000000","0.000000","3.000000","6.750000","0.000000","75.200000","0.000000","0.000000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"122.250000",,"122.250000",,"122.250000",,"455.250000","0.000000",,,,,,,,,"1.500000","922.750000","17728.000000","0.000000",,"77.625000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","43.000000","0.000000","0.400000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"356.250000","0.000000",,,,,,,,,"1.500000","417.500000","18876.500000","0.000000",,"47.125000",,,,"2.400000","0.000000","0.000000","10.000000","4.375000","0.000000","48.600000","0.000000","0.000000","48.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.000000",,"50.000000",,"50.000000",,"412.000000","0.000000",,,,,,,,,"0.500000","379.000000","18798.500000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"414.250000","0.000000",,,,,,,,,"1.250000","399.250000","18874.250000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"241.750000","0.000000",,,,,,,,,"1.000000","412.750000","19130.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"120.500000",,"120.500000",,"120.500000",,"249.750000","0.000000",,,,,,,,,"2.500000","910.750000","18273.500000","0.000000",,"83.250000",,,,"3.600000","0.000000","0.000000","0.333333","6.750000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"135.000000",,"135.000000",,"135.000000",,"335.250000","0.000000",,,,,,,,,"6.250000","1018.250000","17851.000000","0.000000",,"144.000000",,,,"6.200000","0.000000","0.000000","1.333333","11.625000","0.000000","126.600000","0.000000","0.000000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"473.000000","567.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"179.000000","0.000000",,,,,,,,,"3.750000","1096.250000","18212.000000","0.000000",,"101.125000",,,,"3.200000","0.000000","0.000000","0.666667","6.000000","0.000000","65.800000","0.000000","0.000000","65.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","168.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"109.750000",,"109.750000",,"109.750000",,"132.750000","0.000000",,,,,,,,,"1.500000","829.000000","18719.250000","0.000000",,"64.000000",,,,"2.800000","0.000000","0.000000","3.333333","5.250000","0.000000","58.600000","0.000000","0.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"176.250000",,"176.250000",,"176.250000",,"107.750000","0.000000",,,,,,,,,"2.500000","1326.750000","18077.750000","0.000000",,"85.125000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.800000","0.000000","0.200000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.000000",,"62.000000",,"62.000000",,"127.250000","0.000000",,,,,,,,,"1.500000","469.500000","19226.500000","0.000000",,"33.750000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","34.800000","0.000000","0.000000","34.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"123.000000","0.000000",,,,,,,,,"0.500000","410.250000","19295.250000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"110.000000","0.000000",,,,,,,,,"1.250000","414.250000","19291.250000","0.000000",,"23.500000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"104.000000",,"104.000000",,"104.000000",,"119.750000","0.000000",,,,,,,,,"2.000000","787.000000","18949.000000","0.000000",,"39.375000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.000000","0.000000","0.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.250000",,"132.250000",,"132.250000",,"191.250000","0.000000",,,,,,,,,"3.500000","998.750000","18252.750000","0.000000",,"73.875000",,,,"2.400000","0.000000","0.000000","0.666667","4.375000","0.000000","48.400000","0.000000","0.000000","48.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"86.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.000000",,"132.000000",,"132.000000",,"227.500000","0.000000",,,,,,,,,"7.250000","996.250000","18291.000000","0.000000",,"159.375000",,,,"7.600000","0.000000","0.000000","0.666667","14.125000","0.000000","154.800000","0.000000","0.000000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"490.000000","583.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"204.500000",,"204.500000",,"204.500000",,"154.500000","0.000000",,,,,,,,,"9.500000","1538.750000","17675.000000","2.625000",,"284.750000",,,,"6.400000","0.000000","1.000000","1.333333","11.875000","0.000000","131.400000","0.000000","1.400000","130.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"496.000000","585.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"328.750000",,"328.750000",,"328.750000",,"186.250000","0.000000",,,,,,,,,"4.750000","2477.250000","16665.000000","0.000000",,"157.750000",,,,"5.800000","0.000000","0.000000","2.333333","10.875000","0.000000","117.600000","0.000000","0.000000","117.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"118.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"771.750000",,"771.750000",,"771.750000",,"225.500000","0.000000",,,,,,,,,"19.500000","5806.500000","12497.250000","0.000000",,"553.750000",,,,"23.000000","0.000000","0.000000","1.666667","43.125000","0.000000","462.400000","0.000000","0.000000","462.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"51.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"556.000000",,"556.000000",,"556.000000",,"270.000000","0.000000",,,,,,,,,"35.500000","4185.000000","14859.750000","0.000000",,"617.625000",,,,"29.800000","0.000000","0.000000","0.000000","55.875000","0.000000","597.600000","0.000000","0.000000","597.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"99.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"551.750000",,"551.750000",,"551.750000",,"244.250000","0.000000",,,,,,,,,"31.250000","4153.000000","14291.500000","0.000000",,"646.750000",,,,"26.400000","0.000000","0.000000","0.333333","49.375000","0.000000","531.000000","0.000000","0.000000","531.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"86.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"455.750000",,"455.750000",,"455.750000",,"204.250000","0.000000",,,,,,,,,"21.500000","3431.000000","15639.000000","0.000000",,"477.375000",,,,"17.200000","0.000000","0.000000","0.333333","32.250000","0.000000","344.000000","0.000000","0.000000","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"66.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"307.000000",,"307.000000",,"307.000000",,"139.000000","0.000000",,,,,,,,,"3.750000","2311.750000","17139.500000","0.000000",,"81.000000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","7.000000",,,,,,,,,"228.000000","425.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"138.000000","0.000000",,,,,,,,,"0.750000","439.500000","19215.500000","0.000000",,"53.625000",,,,"1.000000","0.000000","0.000000","1.666667","1.750000","0.000000","21.600000","0.000000","0.000000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"130.750000","0.000000",,,,,,,,,"1.000000","409.000000","19322.500000","0.000000",,"17.500000",,,,"1.000000","0.000000","0.000000","3.333333","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"114.750000","0.000000",,,,,,,,,"1.500000","408.250000","19292.250000","0.000000",,"15.375000",,,,"0.400000","0.000000","4.000000","0.666667","0.750000","0.000000","10.800000","0.000000","0.200000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"101.250000","0.000000",,,,,,,,,"0.750000","412.250000","19373.500000","0.000000",,"14.625000",,,,"0.600000","0.000000","2.000000","0.666667","1.000000","0.000000","15.200000","0.000000","0.200000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"128.500000","0.000000",,,,,,,,,"0.500000","413.750000","19201.000000","0.000000",,"9.375000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.200000","0.000000","0.000000","10.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.750000",,"141.750000",,"141.750000",,"155.000000","0.000000",,,,,,,,,"4.750000","1070.750000","18063.500000","0.000000",,"119.125000",,,,"4.800000","0.000000","0.000000","0.333333","8.875000","0.000000","98.000000","0.000000","0.000000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"649.250000",,"649.250000",,"649.250000",,"550.750000","0.000000",,,,,,,,,"25.250000","4884.500000","13552.750000","0.000000",,"708.250000",,,,"29.200000","0.000000","0.000000","2.000000","54.500000","0.000000","584.200000","0.000000","0.000000","584.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"107.000000","159.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"592.000000",,"592.000000",,"592.000000",,"493.250000","0.000000",,,,,,,,,"26.500000","4454.250000","13974.250000","0.000000",,"690.250000",,,,"30.000000","0.000000","0.000000","1.666667","56.500000","0.000000","603.600000","0.000000","0.000000","603.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"105.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"615.500000",,"615.500000",,"615.500000",,"170.000000","0.000000",,,,,,,,,"28.250000","4631.250000","14865.250000","0.000000",,"554.625000",,,,"25.800000","0.000000","0.000000","2.000000","48.375000","0.000000","517.800000","0.000000","0.000000","517.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"76.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"616.750000",,"616.750000",,"616.750000",,"170.000000","0.000000",,,,,,,,,"13.500000","4642.250000","14448.000000","0.000000",,"367.125000",,,,"11.200000","0.000000","0.000000","1.000000","21.000000","0.000000","224.800000","0.000000","0.000000","224.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"614.000000",,"614.000000",,"614.000000",,"158.250000","0.000000",,,,,,,,,"12.500000","4619.000000","14511.750000","0.000000",,"362.250000",,,,"12.000000","0.000000","0.000000","0.333333","22.375000","0.000000","240.400000","0.000000","0.000000","240.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"149.250000",,"149.250000",,"149.250000",,"162.250000","0.000000",,,,,,,,,"13.250000","1125.750000","17969.750000","0.000000",,"182.250000",,,,"8.200000","0.000000","0.000000","0.333333","15.250000","0.000000","164.200000","0.000000","0.000000","164.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","5.000000",,,,,,,,,"837.000000","949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"129.500000","0.000000",,,,,,,,,"3.500000","476.500000","19109.000000","0.000000",,"23.125000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","33.800000","0.000000","0.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","2.000000",,,,,,,,,"532.000000","525.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"94.250000","0.000000",,,,,,,,,"1.250000","445.750000","19366.250000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","8.666667","0.000000","0.000000","2.400000","0.000000","0.000000","2.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"172.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"112.000000","0.000000",,,,,,,,,"2.500000","503.250000","19235.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","2.000000",,,,,,,,,"408.000000","406.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"115.500000","0.000000",,,,,,,,,"1.250000","441.750000","19286.250000","0.000000",,"4.875000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"221.000000","218.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"139.250000","0.000000",,,,,,,,,"0.750000","406.500000","19147.500000","0.000000",,"2.625000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"175.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"248.500000",,"248.500000",,"248.500000",,"205.500000","0.000000",,,,,,,,,"49.750000","1871.000000","17059.250000","0.000000",,"3220.500000",,,,"23.800000","0.000000","3.000000","7.333333","44.625000","0.000000","476.600000","0.000000","0.200000","476.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","6.000000",,,,,,,,,"1222.000000","1295.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"499.750000",,"499.750000",,"499.750000",,"306.250000","0.000000",,,,,,,,,"4.000000","3761.750000","13128.750000","0.000000",,"315.750000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","54.000000","0.000000","0.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"403.250000",,"403.250000",,"403.250000",,"209.750000","0.000000",,,,,,,,,"12.000000","3035.500000","15031.000000","0.000000",,"486.000000",,,,"12.200000","0.000000","0.000000","2.000000","22.750000","0.000000","246.200000","0.000000","0.000000","246.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"91.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.000000",,"179.000000",,"179.000000",,"135.000000","0.000000",,,,,,,,,"2.500000","1349.250000","18012.500000","0.000000",,"86.500000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"121.500000","0.000000",,,,,,,,,"1.750000","454.500000","19139.000000","0.000000",,"49.375000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"146.750000","0.000000",,,,,,,,,"1.000000","434.250000","19224.750000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","8.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"116.750000","0.000000",,,,,,,,,"1.000000","407.250000","19252.000000","0.000000",,"24.375000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"169.500000","0.000000",,,,,,,,,"1.000000","413.000000","19130.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"184.250000","0.000000",,,,,,,,,"0.500000","412.500000","19168.000000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","5.000000","0.000000","0.000000","5.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"148.500000","0.000000",,,,,,,,,"0.750000","419.250000","19254.500000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","15.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"165.500000","0.000000",,,,,,,,,"1.000000","405.250000","19159.500000","0.000000",,"15.375000",,,,"0.400000","0.000000","0.000000","6.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"129.750000","0.000000",,,,,,,,,"1.750000","424.000000","19202.000000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"129.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.500000",,"57.500000",,"57.500000",,"109.500000","0.000000",,,,,,,,,"1.000000","435.500000","19307.250000","0.000000",,"27.375000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"143.750000","0.000000",,,,,,,,,"4.000000","767.750000","18547.750000","0.000000",,"106.500000",,,,"4.800000","0.000000","0.000000","0.000000","8.875000","0.000000","96.400000","0.000000","0.000000","96.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"171.000000","205.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"220.000000",,"220.000000",,"220.000000",,"167.500000","0.000000",,,,,,,,,"7.250000","1659.750000","17234.500000","0.000000",,"168.000000",,,,"7.000000","0.000000","0.000000","1.000000","13.125000","0.000000","143.600000","0.000000","0.000000","143.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"350.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"652.750000",,"652.750000",,"652.750000",,"386.750000","0.000000",,,,,,,,,"6.500000","4910.250000","11891.750000","0.000000",,"388.375000",,,,"4.400000","0.000000","0.000000","3.000000","8.125000","0.000000","88.400000","0.000000","0.000000","88.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"153.250000",,"153.250000",,"153.250000",,"160.250000","0.000000",,,,,,,,,"5.500000","1155.000000","17940.500000","0.000000",,"214.875000",,,,"4.400000","0.000000","0.000000","35.000000","8.250000","0.000000","91.800000","0.000000","0.000000","91.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"157.250000",,"157.250000",,"157.250000",,"133.500000","0.000000",,,,,,,,,"2.500000","1185.750000","18387.750000","0.000000",,"89.625000",,,,"2.800000","0.000000","0.000000","0.333333","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.000000",,"61.000000",,"61.000000",,"108.500000","0.000000",,,,,,,,,"2.000000","462.500000","19305.500000","0.000000",,"55.000000",,,,"2.400000","0.000000","0.000000","18.333333","4.500000","0.000000","51.400000","0.000000","0.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"207.000000","0.000000",,,,,,,,,"1.000000","411.750000","19046.750000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","4.333333","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"138.000000","0.000000",,,,,,,,,"1.250000","424.250000","19253.250000","0.000000",,"32.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"135.750000","0.000000",,,,,,,,,"0.750000","426.250000","19260.750000","0.000000",,"21.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"228.000000","0.000000",,,,,,,,,"1.250000","428.500000","19079.000000","0.000000",,"18.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"157.750000","0.000000",,,,,,,,,"0.750000","425.250000","19201.750000","0.000000",,"28.875000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.600000","0.000000","0.000000","28.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest.csv b/splunk_eventgen/samples/vmware-actuals-guest.csv deleted file mode 100644 index f00a6563..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest.csv +++ /dev/null @@ -1,2 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"25.671795","0.662692","25.671795","0.662692","25.671795","0.662692","64.307692","0.000000",,,,,,,,,"0.653846","117.378205","19747.538462","0.051282","8.423077","11.162393","8.423077","8.423077","1.358974","0.606838","0.000000","0.179487","0.705128","1.092308","0.000000","15.145299","0.000000","0.051282","15.094017","54848.102564","87111.692308","0.000000","0.000000","3331793.846154","0.000000","12296292.000000","257584.000000","178164.000000","9886095.076923","0.000000","24.000000","0.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,"2.217949","1.012821","0.000000","2.000000","2.102564","2.000000","4.000000","5.897436","4.666667","0.000000","0.000000","0.000000","2.000000","2.051282","2.000000","3.538462","5.333333","4.153846","160.000000","6000.000000","0.000000","848369.846154",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv deleted file mode 100644 index c9c1a8d1..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv +++ /dev/null @@ -1,860 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"14663.000000","57.145000","14663.000000","57.145000","14663.000000","57.145000",,,,,,,,,,,,,,"147.000000","5737.500000","5417.000000","15.000000","5737.500000","5737.500000",,,,,,,,,,,"5619536.000000","7171660.000000","478908.000000","0.000000","68805268.000000","0.000000","89467956.000000",,"3778240.000000","24606548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000",,,,,,,,"135.000000","5775.000000",,,,,,,,,,,"4025.000000","574.000000","584.000000","603.000000","720.000000","690.000000","732.000000","0.000000","0.000000","0.000000","505.000000","516.000000","538.000000","612.000000","572.000000","652.000000","160.000000","6000.000000",,"8959154.000000",,,,, -"14351.000000","56.650000","14351.000000","56.650000","14351.000000","56.650000",,,,,,,,,,,,,,"58.000000","4990.000000","4848.000000","9.000000","4990.000000","4990.000000",,,,,,,,,,,"5325952.000000","7003900.000000","478908.000000","0.000000","68792720.000000","0.000000","89467972.000000",,"3778240.000000","24679496.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000",,,,,,,,"174.000000","4899.000000",,,,,,,,,,,"4093.000000","574.000000","582.000000","599.000000","716.000000","690.000000","732.000000","0.000000","0.000000","0.000000","506.000000","515.000000","532.000000","612.000000","587.000000","617.000000","160.000000","6000.000000",,"8959174.000000",,,,, -"14265.000000","56.510000","14265.000000","56.510000","14265.000000","56.510000",,,,,,,,,,,,,,"50.000000","4583.000000","4322.000000","1502.000000","4583.000000","4583.000000",,,,,,,,,,,"5389088.000000","7311632.000000","478908.000000","0.000000","68779064.000000","0.000000","89467972.000000",,"3778240.000000","24692344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000",,,,,,,,"107.000000","4687.000000",,,,,,,,,,,"4122.000000","576.000000","586.000000","590.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","509.000000","516.000000","525.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959194.000000",,,,, -"10021.000000","49.860000","10021.000000","49.860000","10021.000000","49.860000",,,,,,,,,,,,,,"325.000000","1687.500000","1518.000000","3513.000000","1687.500000","1687.500000",,,,,,,,,,,"5493948.000000","7353568.000000","478908.000000","0.000000","68774340.000000","0.000000","89467972.000000",,"3778240.000000","24746656.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000",,,,,,,,"81.000000","1450.000000",,,,,,,,,,,"3802.000000","574.000000","527.000000","579.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","508.000000","471.000000","514.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959214.000000",,,,, -"13086.000000","54.655000","13086.000000","54.655000","13086.000000","54.655000",,,,,,,,,,,,,,"79.000000","5175.000000","4788.000000","1670.000000","5175.000000","5175.000000",,,,,,,,,,,"5242292.000000","7143856.000000","478908.000000","0.000000","68773128.000000","0.000000","89467972.000000",,"3778240.000000","24733028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000",,,,,,,,"369.000000","5114.000000",,,,,,,,,,,"3825.000000","573.000000","495.000000","563.000000","720.000000","819.000000","716.000000","0.000000","0.000000","0.000000","507.000000","436.000000","500.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959234.000000",,,,, -"13340.000000","55.065000","13340.000000","55.065000","13340.000000","55.065000",,,,,,,,,,,,,,"43.000000","1858.000000","1722.000000","447.000000","1858.000000","1858.000000",,,,,,,,,,,"5340312.000000","7039224.000000","478908.000000","0.000000","68783896.000000","0.000000","89467972.000000",,"3778240.000000","24718808.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000",,,,,,,,"90.000000","1860.000000",,,,,,,,,,,"3946.000000","571.000000","479.000000","552.000000","720.000000","585.000000","675.000000","0.000000","0.000000","0.000000","506.000000","422.000000","493.000000","613.000000","528.000000","574.000000","160.000000","6000.000000",,"8959254.000000",,,,, -"11080.000000","51.515000","11080.000000","51.515000","11080.000000","51.515000",,,,,,,,,,,,,,"91.000000","23524.000000","23875.000000","487.000000","23524.000000","23524.000000",,,,,,,,,,,"5004764.000000","6598824.000000","478908.000000","0.000000","68767452.000000","0.000000","89467972.000000",,"3778240.000000","24730784.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000",,,,,,,,"282.000000","22800.000000",,,,,,,,,,,"3824.000000","569.000000","489.000000","538.000000","720.000000","585.000000","664.000000","0.000000","0.000000","0.000000","505.000000","433.000000","481.000000","613.000000","528.000000","570.000000","160.000000","6000.000000",,"8959274.000000",,,,, -"12052.000000","53.030000","12052.000000","53.030000","12052.000000","53.030000",,,,,,,,,,,,,,"54.000000","8894.500000","6927.000000","22.000000","8894.500000","8894.500000",,,,,,,,,,,"5151352.000000","6703472.000000","478908.000000","0.000000","68753228.000000","0.000000","89467768.000000",,"3778240.000000","24718316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000",,,,,,,,"611.000000","10196.000000",,,,,,,,,,,"3835.000000","564.000000","470.000000","524.000000","715.000000","583.000000","644.000000","0.000000","0.000000","0.000000","501.000000","425.000000","469.000000","613.000000","528.000000","560.000000","160.000000","6000.000000",,"8959294.000000",,,,, -"11178.000000","51.660000","11178.000000","51.660000","11178.000000","51.660000",,,,,,,,,,,,,,"871.000000","15082.000000","13390.000000","58.000000","15082.000000","15082.000000",,,,,,,,,,,"5410076.000000","7080036.000000","478908.000000","0.000000","68749612.000000","0.000000","89467768.000000",,"3778240.000000","24723388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000",,,,,,,,"1067.000000","14836.000000",,,,,,,,,,,"3801.000000","563.000000","439.000000","518.000000","715.000000","511.000000","644.000000","0.000000","0.000000","0.000000","500.000000","399.000000","464.000000","613.000000","455.000000","560.000000","160.000000","6000.000000",,"8959314.000000",,,,, -"14207.000000","56.400000","14207.000000","56.400000","14207.000000","56.400000",,,,,,,,,,,,,,"58.000000","7853.500000","7654.000000","42.000000","7853.500000","7853.500000",,,,,,,,,,,"5578600.000000","7101756.000000","478908.000000","0.000000","68741120.000000","0.000000","89468516.000000",,"3778240.000000","24765000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000",,,,,,,,"201.000000","7793.000000",,,,,,,,,,,"4006.000000","563.000000","462.000000","522.000000","715.000000","536.000000","644.000000","0.000000","0.000000","0.000000","501.000000","429.000000","468.000000","613.000000","529.000000","560.000000","160.000000","6000.000000",,"8959334.000000",,,,, -"13810.000000","55.770000","13810.000000","55.770000","13810.000000","55.770000",,,,,,,,,,,,,,"359.000000","7443.000000","6731.000000","11.000000","7443.000000","7443.000000",,,,,,,,,,,"5431060.000000","6744500.000000","478908.000000","0.000000","68725116.000000","0.000000","89467768.000000",,"3778240.000000","24786688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000",,,,,,,,"482.000000","7312.000000",,,,,,,,,,,"3912.000000","564.000000","494.000000","521.000000","715.000000","562.000000","644.000000","0.000000","0.000000","0.000000","502.000000","463.000000","468.000000","613.000000","529.000000","559.000000","160.000000","6000.000000",,"8959354.000000",,,,, -"13305.000000","54.970000","13305.000000","54.970000","13305.000000","54.970000",,,,,,,,,,,,,,"1552.000000","6984.000000","5645.000000","7.000000","6984.000000","6984.000000",,,,,,,,,,,"5158240.000000","6639448.000000","478908.000000","0.000000","68709108.000000","0.000000","89467804.000000",,"3778240.000000","24801052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000",,,,,,,,"1236.000000","5534.000000",,,,,,,,,,,"3912.000000","566.000000","532.000000","519.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","504.000000","490.000000","466.000000","613.000000","529.000000","555.000000","160.000000","6000.000000",,"8959374.000000",,,,, -"12125.000000","53.130000","12125.000000","53.130000","12125.000000","53.130000",,,,,,,,,,,,,,"863.000000","6061.000000","4935.000000","14.000000","6061.000000","6061.000000",,,,,,,,,,,"5116300.000000","6954020.000000","478908.000000","0.000000","68724184.000000","0.000000","89467804.000000",,"3778240.000000","24702340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000",,,,,,,,"1344.000000","4980.000000",,,,,,,,,,,"3931.000000","564.000000","506.000000","513.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","503.000000","466.000000","463.000000","613.000000","521.000000","555.000000","160.000000","6000.000000",,"8959394.000000",,,,, -"12008.000000","52.950000","12008.000000","52.950000","12008.000000","52.950000",,,,,,,,,,,,,,"3867.000000","9876.500000","5735.000000","3.000000","9876.500000","9876.500000",,,,,,,,,,,"5053508.000000","6954148.000000","478908.000000","0.000000","68724000.000000","0.000000","89467924.000000",,"3778240.000000","24701416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000",,,,,,,,"3944.000000","6207.000000",,,,,,,,,,,"3916.000000","563.000000","481.000000","504.000000","715.000000","586.000000","604.000000","0.000000","0.000000","0.000000","502.000000","442.000000","456.000000","613.000000","487.000000","529.000000","160.000000","6000.000000",,"8959414.000000",,,,, -"12855.000000","54.270000","12855.000000","54.270000","12855.000000","54.270000",,,,,,,,,,,,,,"2180.000000","7716.000000","5536.000000","5.000000","7716.000000","7716.000000",,,,,,,,,,,"4703832.000000","6570524.000000","478908.000000","0.000000","68714564.000000","0.000000","89467924.000000",,"3778240.000000","24709328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000",,,,,,,,"2319.000000",,,,,,,,,,,,"3782.000000","564.000000","463.000000","500.000000","715.000000","539.000000","604.000000","0.000000","0.000000","0.000000","503.000000","435.000000","452.000000","613.000000","484.000000","528.000000","160.000000","6000.000000",,"8959434.000000",,,,, -"11780.000000","52.575000","11780.000000","52.575000","11780.000000","52.575000",,,,,,,,,,,,,,"1771.000000","6804.000000","4776.000000","7.000000","6804.000000","6804.000000",,,,,,,,,,,"4598972.000000","7052864.000000","478904.000000","0.000000","68700380.000000","0.000000","89467928.000000",,"3778240.000000","24738968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000",,,,,,,,"1849.000000","5210.000000",,,,,,,,,,,"3894.000000","563.000000","478.000000","492.000000","715.000000","607.000000","586.000000","0.000000","0.000000","0.000000","502.000000","437.000000","447.000000","613.000000","530.000000","528.000000","160.000000","6000.000000",,"8959454.000000",,,,, -"14169.000000","56.315000","14169.000000","56.315000","14169.000000","56.315000",,,,,,,,,,,,,,"1345.000000","8281.500000","6850.000000","13.000000","8281.500000","8281.500000",,,,,,,,,,,"4515084.000000","6801204.000000","478904.000000","0.000000","68687572.000000","0.000000","89467928.000000",,"3778240.000000","24776804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000",,,,,,,,"1530.000000","6836.000000",,,,,,,,,,,"3946.000000","561.000000","516.000000","491.000000","708.000000","736.000000","585.000000","0.000000","0.000000","0.000000","502.000000","460.000000","445.000000","612.000000","574.000000","528.000000","160.000000","6000.000000",,"8959474.000000",,,,, -"14237.000000","56.415000","14237.000000","56.415000","14237.000000","56.415000",,,,,,,,,,,,,,"137.000000","6098.500000","4883.000000","5.000000","6098.500000","6098.500000",,,,,,,,,,,"4682856.000000","6801204.000000","478904.000000","0.000000","68682800.000000","0.000000","89467928.000000",,"3778240.000000","24780992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000",,,,,,,,"359.000000","6816.000000",,,,,,,,,,,"4160.000000","564.000000","551.000000","493.000000","715.000000","736.000000","585.000000","0.000000","0.000000","0.000000","504.000000","482.000000","445.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959494.000000",,,,, -"14008.000000","56.060000","14008.000000","56.060000","14008.000000","56.060000",,,,,,,,,,,,,,"546.000000","4951.500000","3658.000000","15.000000","4951.500000","4951.500000",,,,,,,,,,,"4787716.000000","6801204.000000","478904.000000","0.000000","68692708.000000","0.000000","89467928.000000",,"3778240.000000","24768280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000",,,,,,,,"726.000000","4973.000000",,,,,,,,,,,"3906.000000","564.000000","578.000000","503.000000","716.000000","736.000000","586.000000","0.000000","0.000000","0.000000","502.000000","489.000000","451.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959514.000000",,,,, -"14367.000000","56.620000","14367.000000","56.620000","14367.000000","56.620000",,,,,,,,,,,,,,"56.000000","6582.500000","6323.000000","29.000000","6582.500000","6582.500000",,,,,,,,,,,"4871408.000000","7031692.000000","478904.000000","0.000000","68682312.000000","0.000000","89467732.000000",,"3778240.000000","24712780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000",,,,,,,,"163.000000","6621.000000",,,,,,,,,,,"4001.000000","562.000000","587.000000","510.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","502.000000","500.000000","458.000000","612.000000","602.000000","530.000000","160.000000","6000.000000",,"8959534.000000",,,,, -"14250.000000","56.430000","14250.000000","56.430000","14250.000000","56.430000",,,,,,,,,,,,,,"453.000000","5567.000000","4911.000000","6.000000","5567.000000","5567.000000",,,,,,,,,,,"5256664.000000","7485776.000000","478904.000000","0.000000","68671868.000000","0.000000","89467984.000000",,"3778240.000000","24721716.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000",,,,,,,,"774.000000","4995.000000",,,,,,,,,,,"3955.000000","561.000000","573.000000","512.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","501.000000","493.000000","460.000000","603.000000","585.000000","558.000000","160.000000","6000.000000",,"8959554.000000",,,,, -"17611.000000","61.705000","17611.000000","61.705000","17611.000000","61.705000",,,,,,,,,,,,,,"255.000000","8405.500000","7976.000000","6.000000","8405.500000","8405.500000",,,,,,,,,,,"5277632.000000","7338980.000000","478904.000000","0.000000","68683340.000000","0.000000","89467984.000000",,"3778240.000000","24828548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000",,,,,,,,"441.000000","8138.000000",,,,,,,,,,,"4085.000000","564.000000","623.000000","529.000000","720.000000","816.000000","720.000000","0.000000","0.000000","0.000000","504.000000","540.000000","472.000000","612.000000","668.000000","574.000000","160.000000","6000.000000",,"8959574.000000",,,,, -"16265.000000","59.585000","16265.000000","59.585000","16265.000000","59.585000",,,,,,,,,,,,,,"51.000000","7048.000000","6907.000000","29.000000","7048.000000","7048.000000",,,,,,,,,,,"4774316.000000","6814696.000000","478904.000000","0.000000","68666968.000000","0.000000","89467984.000000",,"3778240.000000","24799284.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000",,,,,,,,"164.000000","6973.000000",,,,,,,,,,,"4165.000000","568.000000","659.000000","547.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","506.000000","568.000000","487.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959594.000000",,,,, -"13889.000000","55.865000","13889.000000","55.865000","13889.000000","55.865000",,,,,,,,,,,,,,"49.000000","5748.000000","5580.000000","17.000000","5748.000000","5748.000000",,,,,,,,,,,"4655100.000000","6500824.000000","478904.000000","0.000000","68664244.000000","0.000000","89467984.000000",,"3778240.000000","24800524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000",,,,,,,,"148.000000","5719.000000",,,,,,,,,,,"3877.000000","568.000000","662.000000","556.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","507.000000","566.000000","493.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959614.000000",,,,, -"16137.000000","59.380000","16137.000000","59.380000","16137.000000","59.380000",,,,,,,,,,,,,,"160.000000","7943.000000","8628.000000","17.000000","7943.000000","7943.000000",,,,,,,,,,,"4634132.000000","6437904.000000","478904.000000","0.000000","68657148.000000","0.000000","89467984.000000",,"3778240.000000","24851140.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000",,,,,,,,"231.000000","6866.000000",,,,,,,,,,,"3970.000000","570.000000","635.000000","564.000000","722.000000","767.000000","731.000000","0.000000","0.000000","0.000000","508.000000","560.000000","499.000000","615.000000","654.000000","602.000000","160.000000","6000.000000",,"8959634.000000",,,,, -"15709.000000","58.705000","15709.000000","58.705000","15709.000000","58.705000",,,,,,,,,,,,,,"183.000000","7354.500000","5850.000000","9.000000","7354.500000","7354.500000",,,,,,,,,,,"4675808.000000","6458596.000000","478904.000000","0.000000","68643296.000000","0.000000","89467712.000000",,"3778240.000000","24878444.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000",,,,,,,,"363.000000","8311.000000",,,,,,,,,,,"4089.000000","567.000000","604.000000","569.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","509.000000","548.000000","504.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959654.000000",,,,, -"14640.000000","57.020000","14640.000000","57.020000","14640.000000","57.020000",,,,,,,,,,,,,,"240.000000","8711.500000","8581.000000","22.000000","8711.500000","8711.500000",,,,,,,,,,,"4592248.000000","6458924.000000","478904.000000","0.000000","68626592.000000","0.000000","89468040.000000",,"3778240.000000","24894356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000",,,,,,,,"345.000000","8257.000000",,,,,,,,,,,"4184.000000","567.000000","606.000000","571.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","508.000000","556.000000","506.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959674.000000",,,,, -"15295.000000","58.040000","15295.000000","58.040000","15295.000000","58.040000",,,,,,,,,,,,,,"35.000000","5974.500000","5657.000000","18.000000","5974.500000","5974.500000",,,,,,,,,,,"4969404.000000","6290824.000000","478904.000000","0.000000","68610916.000000","0.000000","89467712.000000",,"3778240.000000","24903780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000",,,,,,,,"131.000000","6124.000000",,,,,,,,,,,"4105.000000","567.000000","584.000000","580.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","508.000000","533.000000","512.000000","615.000000","621.000000","610.000000","160.000000","6000.000000",,"8959694.000000",,,,, -"14994.000000","57.560000","14994.000000","57.560000","14994.000000","57.560000",,,,,,,,,,,,,,"117.000000","5964.000000","5259.000000","16.000000","5964.000000","5964.000000",,,,,,,,,,,"5325912.000000","6752200.000000","478904.000000","0.000000","68595508.000000","0.000000","89467712.000000",,"3778240.000000","24917672.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000",,,,,,,,"200.000000","6350.000000",,,,,,,,,,,"4227.000000","565.000000","584.000000","590.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","507.000000","533.000000","522.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959714.000000",,,,, -"13940.000000","55.910000","13940.000000","55.910000","13940.000000","55.910000",,,,,,,,,,,,,,"330.000000","6138.500000","4442.000000","24.000000","6138.500000","6138.500000",,,,,,,,,,,"5542948.000000","6983364.000000","478904.000000","0.000000","68594600.000000","0.000000","89467964.000000",,"3778240.000000","24916736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000",,,,,,,,"563.000000","6941.000000",,,,,,,,,,,"4079.000000","565.000000","586.000000","595.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","506.000000","532.000000","526.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959734.000000",,,,, -"15783.000000","58.790000","15783.000000","58.790000","15783.000000","58.790000",,,,,,,,,,,,,,"38.000000","7028.500000","6947.000000","47.000000","7028.500000","7028.500000",,,,,,,,,,,"5501004.000000","7193080.000000","478904.000000","0.000000","68591984.000000","0.000000","89467964.000000",,"3778240.000000","24854896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000",,,,,,,,"158.000000","6914.000000",,,,,,,,,,,"4056.000000","566.000000","591.000000","602.000000","720.000000","689.000000","731.000000","0.000000","0.000000","0.000000","506.000000","541.000000","533.000000","610.000000","632.000000","621.000000","160.000000","6000.000000",,"8959754.000000",,,,, -"13966.000000","55.945000","13966.000000","55.945000","13966.000000","55.945000",,,,,,,,,,,,,,"55.000000","5918.500000","5732.000000","16.000000","5918.500000","5918.500000",,,,,,,,,,,"5102228.000000","6752360.000000","478904.000000","0.000000","68586904.000000","0.000000","89467648.000000",,"3778240.000000","24838792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000",,,,,,,,"162.000000","5888.000000",,,,,,,,,,,"4002.000000","564.000000","582.000000","603.000000","720.000000","689.000000","729.000000","0.000000","0.000000","0.000000","504.000000","523.000000","534.000000","605.000000","605.000000","621.000000","160.000000","6000.000000",,"8959774.000000",,,,, -"17060.000000","60.805000","17060.000000","60.805000","17060.000000","60.805000",,,,,,,,,,,,,,"48.000000","6689.000000","6519.000000","60.000000","6689.000000","6689.000000",,,,,,,,,,,"4787428.000000","6436188.000000","478904.000000","0.000000","68614968.000000","0.000000","89467648.000000",,"3778240.000000","24821848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000",,,,,,,,"144.000000","6666.000000",,,,,,,,,,,"4076.000000","570.000000","707.000000","626.000000","720.000000","1537.000000","767.000000","0.000000","0.000000","0.000000","503.000000","548.000000","539.000000","603.000000","755.000000","632.000000","160.000000","6000.000000",,"8959794.000000",,,,, -"20076.000000","65.525000","20076.000000","65.525000","20076.000000","65.525000",,,,,,,,,,,,,,"55.000000","8553.000000","8189.000000","16.000000","8553.000000","8553.000000",,,,,,,,,,,"5249028.000000","6974828.000000","478904.000000","0.000000","68605460.000000","0.000000","89467648.000000",,"3778240.000000","24809764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000",,,,,,,,"170.000000","8690.000000",,,,,,,,,,,"4151.000000","577.000000","815.000000","650.000000","729.000000","1537.000000","821.000000","0.000000","0.000000","0.000000","506.000000","596.000000","554.000000","615.000000","755.000000","661.000000","160.000000","6000.000000",,"8959814.000000",,,,, -"24384.000000","72.295000","24384.000000","72.295000","24384.000000","72.295000",,,,,,,,,,,,,,"40.000000","5887.500000","5842.000000","31.000000","5887.500000","5887.500000",,,,,,,,,,,"5577992.000000","6996280.000000","478904.000000","0.000000","68646004.000000","0.000000","89467900.000000",,"3778240.000000","24759156.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000",,,,,,,,"116.000000","5776.000000",,,,,,,,,,,"4448.000000","592.000000","1094.000000","705.000000","736.000000","1537.000000","1081.000000","0.000000","0.000000","0.000000","513.000000","739.000000","582.000000","621.000000","1058.000000","755.000000","160.000000","6000.000000",,"8959834.000000",,,,, -"23928.000000","71.600000","23928.000000","71.600000","23928.000000","71.600000",,,,,,,,,,,,,,"63.000000","11244.500000","10490.000000","31.000000","11244.500000","11244.500000",,,,,,,,,,,"5787708.000000","7331824.000000","478904.000000","0.000000","68689856.000000","0.000000","89467900.000000",,"3778240.000000","24718336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000",,,,,,,,"573.000000","11363.000000",,,,,,,,,,,"4474.000000","606.000000","1219.000000","756.000000","771.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","519.000000","818.000000","604.000000","654.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959854.000000",,,,, -"20882.000000","66.825000","20882.000000","66.825000","20882.000000","66.825000",,,,,,,,,,,,,,"182.000000","7143.500000","5949.000000","34.000000","7143.500000","7143.500000",,,,,,,,,,,"5787708.000000","7331820.000000","478904.000000","0.000000","68678300.000000","0.000000","89467900.000000",,"3778240.000000","24696696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000",,,,,,,,"309.000000","7847.000000",,,,,,,,,,,"4378.000000","615.000000","1263.000000","778.000000","821.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","522.000000","838.000000","614.000000","706.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959874.000000",,,,, -"18709.000000","63.415000","18709.000000","63.415000","18709.000000","63.415000",,,,,,,,,,,,,,"69.000000","8820.000000","7475.000000","12.000000","8820.000000","8820.000000",,,,,,,,,,,"6647244.000000","8233300.000000","478904.000000","0.000000","68667484.000000","0.000000","89467608.000000",,"3778240.000000","24707256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000",,,,,,,,"273.000000","9822.000000",,,,,,,,,,,"4178.000000","624.000000","1139.000000","801.000000","958.000000","1508.000000","1330.000000","0.000000","0.000000","0.000000","526.000000","766.000000","622.000000","709.000000","917.000000","810.000000","160.000000","6000.000000",,"8959894.000000",,,,, -"16786.000000","60.395000","16786.000000","60.395000","16786.000000","60.395000",,,,,,,,,,,,,,"45.000000","7295.500000","6077.000000","41.000000","7295.500000","7295.500000",,,,,,,,,,,"6437816.000000","8013960.000000","478904.000000","0.000000","68651952.000000","0.000000","89467892.000000",,"3778240.000000","24784152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000",,,,,,,,"242.000000","8227.000000",,,,,,,,,,,"4102.000000","629.000000","942.000000","812.000000","958.000000","1207.000000","1330.000000","0.000000","0.000000","0.000000","528.000000","689.000000","629.000000","709.000000","798.000000","810.000000","160.000000","6000.000000",,"8959914.000000",,,,, -"16822.000000","60.455000","16822.000000","60.455000","16822.000000","60.455000",,,,,,,,,,,,,,"50.000000","8288.000000","7052.000000","64.000000","8288.000000","8288.000000",,,,,,,,,,,"6409780.000000","8020800.000000","478904.000000","0.000000","68653440.000000","0.000000","89467892.000000",,"3778240.000000","24773352.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000",,,,,,,,"288.000000","9185.000000",,,,,,,,,,,"4171.000000","633.000000","816.000000","814.000000","958.000000","1093.000000","1330.000000","0.000000","0.000000","0.000000","532.000000","634.000000","628.000000","709.000000","760.000000","810.000000","160.000000","6000.000000",,"8959934.000000",,,,, -"15420.000000","58.255000","15420.000000","58.255000","15420.000000","58.255000",,,,,,,,,,,,,,"43.000000","7885.500000","6645.000000","18.000000","7885.500000","7885.500000",,,,,,,,,,,"6493668.000000","8230520.000000","478904.000000","0.000000","68648060.000000","0.000000","89467892.000000",,"3778240.000000","24750700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000",,,,,,,,"255.000000","8827.000000",,,,,,,,,,,"4273.000000","635.000000","677.000000","815.000000","958.000000","840.000000","1330.000000","0.000000","0.000000","0.000000","534.000000","584.000000","629.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959954.000000",,,,, -"16162.000000","59.415000","16162.000000","59.415000","16162.000000","59.415000",,,,,,,,,,,,,,"41.000000","7883.500000","6353.000000","20.000000","7883.500000","7883.500000",,,,,,,,,,,"6524548.000000","8303344.000000","478904.000000","0.000000","68645200.000000","0.000000","89467892.000000",,"3778240.000000","24752372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000",,,,,,,,"258.000000","9114.000000",,,,,,,,,,,"4238.000000","636.000000","641.000000","819.000000","958.000000","730.000000","1330.000000","0.000000","0.000000","0.000000","535.000000","579.000000","633.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959974.000000",,,,, -"16507.000000","59.950000","16507.000000","59.950000","16507.000000","59.950000",,,,,,,,,,,,,,"54.000000","8160.500000","6703.000000","15.000000","8160.500000","8160.500000",,,,,,,,,,,"6664728.000000","8485472.000000","478904.000000","0.000000","68634596.000000","0.000000","89467892.000000",,"3778240.000000","24784888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000",,,,,,,,"256.000000","9307.000000",,,,,,,,,,,"4369.000000","638.000000","625.000000","822.000000","958.000000","694.000000","1330.000000","0.000000","0.000000","0.000000","538.000000","587.000000","639.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8959994.000000",,,,, -"16438.000000","59.845000","16438.000000","59.845000","16438.000000","59.845000",,,,,,,,,,,,,,"104.000000","7906.500000","6751.000000","39.000000","7906.500000","7906.500000",,,,,,,,,,,"6853344.000000","8443400.000000","478904.000000","0.000000","68632984.000000","0.000000","89467764.000000",,"3778240.000000","24782868.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000",,,,,,,,"246.000000","8710.000000",,,,,,,,,,,"4047.000000","640.000000","637.000000","826.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","539.000000","588.000000","640.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8960014.000000",,,,, -"15969.000000","59.105000","15969.000000","59.105000","15969.000000","59.105000",,,,,,,,,,,,,,"336.000000","9609.500000","8002.000000","31.000000","9609.500000","9609.500000",,,,,,,,,,,"6937228.000000","8569232.000000","478904.000000","0.000000","68623876.000000","0.000000","89467764.000000",,"3778240.000000","24788348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000",,,,,,,,"544.000000","10336.000000",,,,,,,,,,,"4038.000000","641.000000","629.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","540.000000","579.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960034.000000",,,,, -"15475.000000","58.315000","15475.000000","58.315000","15475.000000","58.315000",,,,,,,,,,,,,,"60.000000","7516.000000","6095.000000","12.000000","7516.000000","7516.000000",,,,,,,,,,,"7049156.000000","8800140.000000","478904.000000","0.000000","68602580.000000","0.000000","89467764.000000",,"3778240.000000","24828580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000",,,,,,,,"290.000000","8586.000000",,,,,,,,,,,"4134.000000","641.000000","619.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","541.000000","562.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960054.000000",,,,, -"16529.000000","59.965000","16529.000000","59.965000","16529.000000","59.965000",,,,,,,,,,,,,,"47.000000","6099.000000","6051.000000","26.000000","6099.000000","6099.000000",,,,,,,,,,,"6440976.000000","8653340.000000","478904.000000","0.000000","68598164.000000","0.000000","89467764.000000",,"3778240.000000","24801760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000",,,,,,,,"232.000000",,,,,,,,,,,,"4185.000000","643.000000","626.000000","834.000000","958.000000","735.000000","1330.000000","0.000000","0.000000","0.000000","543.000000","570.000000","649.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960074.000000",,,,, -"20894.000000","66.845000","20894.000000","66.845000","20894.000000","66.845000",,,,,,,,,,,,,,"76.000000","10636.000000","9384.000000","24.000000","10636.000000","10636.000000",,,,,,,,,,,"6598836.000000","8957992.000000","478904.000000","0.000000","68674136.000000","0.000000","89467764.000000",,"3778240.000000","24738076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000",,,,,,,,"312.000000","11500.000000",,,,,,,,,,,"4340.000000","653.000000","773.000000","841.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","548.000000","631.000000","659.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960094.000000",,,,, -"14945.000000","57.520000","14945.000000","57.520000","14945.000000","57.520000",,,,,,,,,,,,,,"60.000000","5605.500000","4219.000000","33.000000","5605.500000","5605.500000",,,,,,,,,,,"6532872.000000","9080144.000000","478904.000000","0.000000","68669820.000000","0.000000","89457204.000000",,"3778240.000000","24784848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000",,,,,,,,"251.000000","6679.000000",,,,,,,,,,,"4308.000000","658.000000","782.000000","821.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","552.000000","637.000000","651.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960114.000000",,,,, -"15027.000000","57.650000","15027.000000","57.650000","15027.000000","57.650000",,,,,,,,,,,,,,"45.000000","9811.000000","6327.000000","68.000000","9811.000000","9811.000000",,,,,,,,,,,"6197312.000000","8451080.000000","478904.000000","0.000000","68666100.000000","0.000000","89457096.000000",,"3778240.000000","24757968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000",,,,,,,,"4460.000000","8789.000000",,,,,,,,,,,"3875.000000","660.000000","749.000000","766.000000","1015.000000","1444.000000","1207.000000","0.000000","0.000000","0.000000","554.000000","607.000000","623.000000","732.000000","857.000000","779.000000","160.000000","6000.000000",,"8960134.000000",,,,, -"16680.000000","60.235000","16680.000000","60.235000","16680.000000","60.235000",,,,,,,,,,,,,,"132.000000","7142.000000","6448.000000","29.000000","7142.000000","7142.000000",,,,,,,,,,,"6071484.000000","8094568.000000","478904.000000","0.000000","68670848.000000","0.000000","89457096.000000",,"3778240.000000","24753944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000",,,,,,,,"621.000000","7081.000000",,,,,,,,,,,"3956.000000","663.000000","618.000000","721.000000","1015.000000","813.000000","1041.000000","0.000000","0.000000","0.000000","556.000000","551.000000","606.000000","732.000000","719.000000","748.000000","160.000000","6000.000000",,"8960154.000000",,,,, -"19314.000000","64.365000","19314.000000","64.365000","19314.000000","64.365000",,,,,,,,,,,,,,"72.000000","13982.000000","12695.000000","29.000000","13982.000000","13982.000000",,,,,,,,,,,"6316004.000000","7870744.000000","478904.000000","0.000000","68667796.000000","0.000000","89457096.000000",,"3778240.000000","24742076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000",,,,,,,,"309.000000","14886.000000",,,,,,,,,,,"4330.000000","669.000000","659.000000","700.000000","1015.000000","813.000000","915.000000","0.000000","0.000000","0.000000","562.000000","580.000000","600.000000","732.000000","719.000000","697.000000","160.000000","6000.000000",,"8960174.000000",,,,, -"18384.000000","62.900000","18384.000000","62.900000","18384.000000","62.900000",,,,,,,,,,,,,,"92.000000","21775.500000","19425.000000","57.000000","21775.500000","21775.500000",,,,,,,,,,,"6798540.000000","7996764.000000","478892.000000","0.000000","68659660.000000","0.000000","89457300.000000",,"3778240.000000","24783560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000",,,,,,,,"379.000000","23655.000000",,,,,,,,,,,"4372.000000","678.000000","737.000000","685.000000","1015.000000","930.000000","831.000000","0.000000","0.000000","0.000000","569.000000","644.000000","599.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960194.000000",,,,, -"19239.000000","64.230000","19239.000000","64.230000","19239.000000","64.230000",,,,,,,,,,,,,,"52.000000","20982.000000","20357.000000","61.000000","20982.000000","20982.000000",,,,,,,,,,,"7332736.000000","8635824.000000","478892.000000","0.000000","68641356.000000","0.000000","89457300.000000",,"3778240.000000","24796780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000",,,,,,,,"360.000000","21195.000000",,,,,,,,,,,"4432.000000","684.000000","764.000000","685.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","575.000000","677.000000","603.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960214.000000",,,,, -"16759.000000","60.340000","16759.000000","60.340000","16759.000000","60.340000",,,,,,,,,,,,,,"100.000000","28408.000000","26724.000000","75.000000","28408.000000","28408.000000",,,,,,,,,,,"7521936.000000","9013764.000000","478892.000000","0.000000","68626408.000000","0.000000","89457756.000000",,"3778240.000000","24839200.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000",,,,,,,,"420.000000","29571.000000",,,,,,,,,,,"4219.000000","689.000000","755.000000","688.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","578.000000","667.000000","606.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960234.000000",,,,, -"16894.000000","60.545000","16894.000000","60.545000","16894.000000","60.545000",,,,,,,,,,,,,,"4761.000000","50778.500000","43503.000000","82.000000","50778.500000","50778.500000",,,,,,,,,,,"7521396.000000","8964324.000000","478892.000000","0.000000","68611328.000000","0.000000","89457216.000000",,"3778240.000000","24870036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000",,,,,,,,"5268.000000","48025.000000",,,,,,,,,,,"4173.000000","692.000000","708.000000","691.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","580.000000","632.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960254.000000",,,,, -"17063.000000","60.805000","17063.000000","60.805000","17063.000000","60.805000",,,,,,,,,,,,,,"67.000000","27770.000000","26749.000000","67.000000","27770.000000","27770.000000",,,,,,,,,,,"7071084.000000","8534980.000000","478892.000000","0.000000","68597192.000000","0.000000","89457216.000000",,"3778240.000000","24883368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000",,,,,,,,"405.000000","28317.000000",,,,,,,,,,,"4295.000000","695.000000","685.000000","694.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","582.000000","601.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960274.000000",,,,, -"15804.000000","58.830000","15804.000000","58.830000","15804.000000","58.830000",,,,,,,,,,,,,,"50.000000","26687.000000","25170.000000","77.000000","26687.000000","26687.000000",,,,,,,,,,,"7071224.000000","8535120.000000","478892.000000","0.000000","68594824.000000","0.000000","89457356.000000",,"3778240.000000","24784184.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000",,,,,,,,"393.000000","27760.000000",,,,,,,,,,,"4412.000000","700.000000","673.000000","697.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","586.000000","595.000000","608.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960294.000000",,,,, -"15400.000000","58.190000","15400.000000","58.190000","15400.000000","58.190000",,,,,,,,,,,,,,"101.000000","24373.000000","24271.000000","84.000000","24373.000000","24373.000000",,,,,,,,,,,"6868556.000000","8346380.000000","478892.000000","0.000000","68586776.000000","0.000000","89457356.000000",,"3778240.000000","24871204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000",,,,,,,,"337.000000",,,,,,,,,,,,"4079.000000","705.000000","671.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","589.000000","578.000000","606.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960314.000000",,,,, -"15174.000000","57.840000","15174.000000","57.840000","15174.000000","57.840000",,,,,,,,,,,,,,"329.000000","11168.500000","8524.000000","65.000000","11168.500000","11168.500000",,,,,,,,,,,"6826612.000000","8209496.000000","478892.000000","0.000000","68587124.000000","0.000000","89457356.000000",,"3778240.000000","24871236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000",,,,,,,,"595.000000","12889.000000",,,,,,,,,,,"4050.000000","707.000000","649.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","591.000000","560.000000","604.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960334.000000",,,,, -"15305.000000","58.040000","15305.000000","58.040000","15305.000000","58.040000",,,,,,,,,,,,,,"68.000000","6133.000000","5533.000000","15.000000","6133.000000","6133.000000",,,,,,,,,,,"6910500.000000","8545040.000000","478892.000000","0.000000","68577276.000000","0.000000","89457356.000000",,"3778240.000000","24897356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000",,,,,,,,"215.000000","6448.000000",,,,,,,,,,,"4066.000000","709.000000","622.000000","698.000000","1015.000000","738.000000","813.000000","0.000000","0.000000","0.000000","593.000000","541.000000","604.000000","732.000000","588.000000","721.000000","160.000000","6000.000000",,"8960354.000000",,,,, -"17607.000000","61.635000","17607.000000","61.635000","17607.000000","61.635000",,,,,,,,,,,,,,"66.000000","7071.000000","6945.000000","19.000000","7071.000000","7071.000000",,,,,,,,,,,"6225380.000000","7838940.000000","478892.000000","0.000000","68562364.000000","0.000000","89457148.000000",,"3778240.000000","24909928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000",,,,,,,,"163.000000","6966.000000",,,,,,,,,,,"4236.000000","713.000000","645.000000","702.000000","1015.000000","783.000000","813.000000","0.000000","0.000000","0.000000","597.000000","572.000000","607.000000","732.000000","676.000000","721.000000","160.000000","6000.000000",,"8960374.000000",,,,, -"17649.000000","61.695000","17649.000000","61.695000","17649.000000","61.695000",,,,,,,,,,,,,,"967.000000","18309.000000","17423.000000","31.000000","18309.000000","18309.000000",,,,,,,,,,,"6120520.000000","7682228.000000","478892.000000","0.000000","68551056.000000","0.000000","89457148.000000",,"3778240.000000","24922212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000",,,,,,,,"1136.000000","17090.000000",,,,,,,,,,,"4243.000000","716.000000","685.000000","680.000000","1015.000000","838.000000","786.000000","0.000000","0.000000","0.000000","599.000000","605.000000","599.000000","737.000000","759.000000","719.000000","160.000000","6000.000000",,"8960394.000000",,,,, -"20086.000000","65.515000","20086.000000","65.515000","20086.000000","65.515000",,,,,,,,,,,,,,"55.000000","7514.000000","6844.000000","20.000000","7514.000000","7514.000000",,,,,,,,,,,"5952748.000000","7577372.000000","478892.000000","0.000000","68562052.000000","0.000000","89457148.000000",,"3778240.000000","24851796.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000",,,,,,,,"157.000000","7972.000000",,,,,,,,,,,"4380.000000","721.000000","757.000000","693.000000","1036.000000","1038.000000","804.000000","0.000000","0.000000","0.000000","604.000000","652.000000","607.000000","748.000000","759.000000","725.000000","160.000000","6000.000000",,"8960414.000000",,,,, -"19803.000000","65.080000","19803.000000","65.080000","19803.000000","65.080000",,,,,,,,,,,,,,"70.000000","5896.500000","5785.000000","16.000000","5896.500000","5896.500000",,,,,,,,,,,"5743124.000000","7451636.000000","478892.000000","0.000000","68562628.000000","0.000000","89457148.000000",,"3778240.000000","24828344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000",,,,,,,,"162.000000","5776.000000",,,,,,,,,,,"4279.000000","730.000000","832.000000","719.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","610.000000","693.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960434.000000",,,,, -"16291.000000","59.580000","16291.000000","59.580000","16291.000000","59.580000",,,,,,,,,,,,,,"56.000000","4438.500000","3935.000000","15.000000","4438.500000","4438.500000",,,,,,,,,,,"5596328.000000","7357844.000000","478892.000000","0.000000","68563360.000000","0.000000","89457148.000000",,"3778240.000000","24827460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000",,,,,,,,"428.000000","4457.000000",,,,,,,,,,,"4134.000000","733.000000","828.000000","722.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","611.000000","673.000000","623.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960454.000000",,,,, -"18171.000000","62.520000","18171.000000","62.520000","18171.000000","62.520000",,,,,,,,,,,,,,"132.000000","10073.500000","9786.000000","18.000000","10073.500000","10073.500000",,,,,,,,,,,"5595020.000000","7335344.000000","478892.000000","0.000000","68557660.000000","0.000000","89449972.000000",,"3778240.000000","24830260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000",,,,,,,,"306.000000","9923.000000",,,,,,,,,,,"4135.000000","735.000000","830.000000","727.000000","1038.000000","1080.000000","897.000000","0.000000","0.000000","0.000000","612.000000","664.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960474.000000",,,,, -"17053.000000","60.765000","17053.000000","60.765000","17053.000000","60.765000",,,,,,,,,,,,,,"62.000000","6870.500000","6611.000000","17.000000","6870.500000","6870.500000",,,,,,,,,,,"6538548.000000","8222832.000000","478892.000000","0.000000","68561300.000000","0.000000","89449772.000000",,"3778240.000000","24882940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000",,,,,,,,"170.000000","6896.000000",,,,,,,,,,,"4189.000000","736.000000","761.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","613.000000","613.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960494.000000",,,,, -"19157.000000","64.060000","19157.000000","64.060000","19157.000000","64.060000",,,,,,,,,,,,,,"70.000000","17513.500000","17493.000000","23.000000","17513.500000","17513.500000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68553188.000000","0.000000","89449772.000000",,"3778240.000000","24889580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000",,,,,,,,"319.000000","17145.000000",,,,,,,,,,,"4284.000000","740.000000","774.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","616.000000","643.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960514.000000",,,,, -"17289.000000","61.125000","17289.000000","61.125000","17289.000000","61.125000",,,,,,,,,,,,,,"2198.000000","18126.000000","15512.000000","13.000000","18126.000000","18126.000000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68538632.000000","0.000000","89449772.000000",,"3778240.000000","24888848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000",,,,,,,,"1856.000000","16685.000000",,,,,,,,,,,"4373.000000","741.000000","731.000000","723.000000","1038.000000","839.000000","874.000000","0.000000","0.000000","0.000000","617.000000","632.000000","617.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960534.000000",,,,, -"15447.000000","58.235000","15447.000000","58.235000","15447.000000","58.235000",,,,,,,,,,,,,,"7103.000000","27817.000000","19069.000000","28.000000","27817.000000","27817.000000",,,,,,,,,,,"5972840.000000","7457316.000000","478892.000000","0.000000","68531808.000000","0.000000","89449984.000000",,"3778240.000000","24897304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000",,,,,,,,"8204.000000","21257.000000",,,,,,,,,,,"4177.000000","743.000000","697.000000","721.000000","1038.000000","806.000000","874.000000","0.000000","0.000000","0.000000","617.000000","621.000000","615.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960554.000000",,,,, -"15526.000000","58.355000","15526.000000","58.355000","15526.000000","58.355000",,,,,,,,,,,,,,"429.000000","18144.500000","17434.000000","22.000000","18144.500000","18144.500000",,,,,,,,,,,"6182556.000000","7646064.000000","478892.000000","0.000000","68518620.000000","0.000000","89449984.000000",,"3778240.000000","24929948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000",,,,,,,,"638.000000","17788.000000",,,,,,,,,,,"4046.000000","744.000000","667.000000","721.000000","1038.000000","762.000000","874.000000","0.000000","0.000000","0.000000","618.000000","583.000000","613.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960574.000000",,,,, -"16614.000000","60.050000","16614.000000","60.050000","16614.000000","60.050000",,,,,,,,,,,,,,"4952.000000","26766.500000","21092.000000","60.000000","26766.500000","26766.500000",,,,,,,,,,,"6138972.000000","7718032.000000","478892.000000","0.000000","68494956.000000","0.000000","89440852.000000",,"3778240.000000","24946840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000",,,,,,,,"5278.000000","22210.000000",,,,,,,,,,,"4110.000000","746.000000","656.000000","719.000000","1038.000000","724.000000","874.000000","0.000000","0.000000","0.000000","620.000000","571.000000","612.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960594.000000",,,,, -"16589.000000","60.000000","16589.000000","60.000000","16589.000000","60.000000",,,,,,,,,,,,,,"700.000000","19892.000000","18922.000000","43.000000","19892.000000","19892.000000",,,,,,,,,,,"6096872.000000","7550104.000000","478892.000000","0.000000","68479028.000000","0.000000","89440636.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000",,,,,,,,"927.000000","19234.000000",,,,,,,,,,,"4021.000000","748.000000","671.000000","721.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","580.000000","616.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960614.000000",,,,, -"14492.000000","56.710000","14492.000000","56.710000","14492.000000","56.710000",,,,,,,,,,,,,,"5777.000000","22797.000000","17019.000000","14.000000","22797.000000","22797.000000",,,,,,,,,,,"5739672.000000","7297612.000000","478892.000000","0.000000","68463460.000000","0.000000","89436844.000000",,"3778240.000000","25006840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"4204.000000","750.000000","663.000000","723.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","582.000000","617.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960634.000000",,,,, -"15202.000000","57.820000","15202.000000","57.820000","15202.000000","57.820000",,,,,,,,,,,,,,"15052.000000","25747.500000","10061.000000","9.000000","25747.500000","25747.500000",,,,,,,,,,,"5759376.000000","7379916.000000","478892.000000","0.000000","68463492.000000","0.000000","89429148.000000",,"3778240.000000","24993404.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000",,,,,,,,"16217.000000","10164.000000",,,,,,,,,,,"3967.000000","749.000000","638.000000","722.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","558.000000","615.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960654.000000",,,,, -"14965.000000","57.445000","14965.000000","57.445000","14965.000000","57.445000",,,,,,,,,,,,,,"13476.000000","30102.000000","16574.000000","86.000000","30102.000000","30102.000000",,,,,,,,,,,"5641160.000000","7156840.000000","478892.000000","0.000000","68459400.000000","0.000000","89429148.000000",,"3778240.000000","24999384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000",,,,,,,,"13341.000000","16813.000000",,,,,,,,,,,"4065.000000","751.000000","621.000000","716.000000","1038.000000","936.000000","897.000000","0.000000","0.000000","0.000000","621.000000","534.000000","608.000000","755.000000","626.000000","727.000000","160.000000","6000.000000",,"8960674.000000",,,,, -"16429.000000","59.750000","16429.000000","59.750000","16429.000000","59.750000",,,,,,,,,,,,,,"9661.000000","23058.000000","12989.000000","12.000000","23058.000000","23058.000000",,,,,,,,,,,"6269364.000000","7555300.000000","478892.000000","0.000000","68475632.000000","0.000000","89429148.000000",,"3778240.000000","24983112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000",,,,,,,,"10389.000000","13077.000000",,,,,,,,,,,"4071.000000","748.000000","679.000000","722.000000","1038.000000","1042.000000","921.000000","0.000000","0.000000","0.000000","621.000000","541.000000","604.000000","749.000000","636.000000","725.000000","160.000000","6000.000000",,"8960694.000000",,,,, -"14782.000000","57.170000","14782.000000","57.170000","14782.000000","57.170000",,,,,,,,,,,,,,"118.000000","16021.500000","15706.000000","40.000000","16021.500000","16021.500000",,,,,,,,,,,"6269364.000000","7603920.000000","478888.000000","0.000000","68478092.000000","0.000000","89429152.000000",,"3778240.000000","24993176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000",,,,,,,,"269.000000","15949.000000",,,,,,,,,,,"4215.000000","741.000000","689.000000","709.000000","1038.000000","1042.000000","897.000000","0.000000","0.000000","0.000000","618.000000","551.000000","595.000000","749.000000","636.000000","696.000000","160.000000","6000.000000",,"8960714.000000",,,,, -"15591.000000","58.435000","15591.000000","58.435000","15591.000000","58.435000",,,,,,,,,,,,,,"312.000000","8063.500000","7271.000000","31.000000","8063.500000","8063.500000",,,,,,,,,,,"6122444.000000","7680076.000000","478888.000000","0.000000","68472940.000000","0.000000","89429032.000000",,"3778240.000000","24969712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000",,,,,,,,"415.000000","8129.000000",,,,,,,,,,,"4090.000000","724.000000","682.000000","686.000000","930.000000","1042.000000","839.000000","0.000000","0.000000","0.000000","609.000000","552.000000","580.000000","728.000000","636.000000","686.000000","160.000000","6000.000000",,"8960734.000000",,,,, -"17832.000000","61.955000","17832.000000","61.955000","17832.000000","61.955000",,,,,,,,,,,,,,"319.000000","13451.500000","12792.000000","15.000000","13451.500000","13451.500000",,,,,,,,,,,"5891760.000000","7281616.000000","478888.000000","0.000000","68492216.000000","0.000000","89429032.000000",,"3778240.000000","24954112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000",,,,,,,,"828.000000","12962.000000",,,,,,,,,,,"4229.000000","713.000000","691.000000","695.000000","905.000000","905.000000","874.000000","0.000000","0.000000","0.000000","604.000000","566.000000","583.000000","721.000000","643.000000","686.000000","160.000000","6000.000000",,"8960754.000000",,,,, -"15395.000000","58.130000","15395.000000","58.130000","15395.000000","58.130000",,,,,,,,,,,,,,"269.000000","11304.000000","10468.000000","31.000000","11304.000000","11304.000000",,,,,,,,,,,"5912732.000000","7281616.000000","478888.000000","0.000000","68477144.000000","0.000000","89429032.000000",,"3778240.000000","24925236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000",,,,,,,,"460.000000","11410.000000",,,,,,,,,,,"4022.000000","705.000000","716.000000","686.000000","861.000000","905.000000","843.000000","0.000000","0.000000","0.000000","600.000000","572.000000","577.000000","711.000000","664.000000","674.000000","160.000000","6000.000000",,"8960774.000000",,,,, -"12823.000000","54.090000","12823.000000","54.090000","12823.000000","54.090000",,,,,,,,,,,,,,"491.000000","21369.000000","19724.000000","22.000000","21369.000000","21369.000000",,,,,,,,,,,"6353136.000000","7736316.000000","478888.000000","0.000000","68460708.000000","0.000000","89429032.000000",,"3778240.000000","24812360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000",,,,,,,,"724.000000","21798.000000",,,,,,,,,,,"3977.000000","693.000000","683.000000","671.000000","840.000000","905.000000","843.000000","0.000000","8.000000","0.000000","594.000000","545.000000","566.000000","706.000000","664.000000","674.000000","160.000000","6000.000000",,"8960794.000000",,,,, -"13588.000000","55.290000","13588.000000","55.290000","13588.000000","55.290000",,,,,,,,,,,,,,"2272.000000","25670.000000","23398.000000","30.000000","25670.000000","25670.000000",,,,,,,,,,,"6080504.000000","7736312.000000","478888.000000","0.000000","68455040.000000","0.000000","89429032.000000",,"3778240.000000","24818960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000",,,,,,,,,"26055.000000",,,,,,,,,,,"3941.000000","689.000000","594.000000","659.000000","839.000000","843.000000","843.000000","0.000000","8.000000","0.000000","592.000000","506.000000","556.000000","706.000000","664.000000","643.000000","160.000000","6000.000000",,"8960814.000000",,,,, -"13844.000000","55.700000","13844.000000","55.700000","13844.000000","55.700000",,,,,,,,,,,,,,"3818.000000","20290.500000","15160.000000","29.000000","20290.500000","20290.500000",,,,,,,,,,,"6038484.000000","7694292.000000","478888.000000","0.000000","68474060.000000","0.000000","89428956.000000",,"3778240.000000","24878240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000",,,,,,,,"4066.000000","17537.000000",,,,,,,,,,,"4028.000000","686.000000","546.000000","649.000000","839.000000","673.000000","843.000000","0.000000","8.000000","0.000000","590.000000","480.000000","546.000000","706.000000","575.000000","640.000000","160.000000","6000.000000",,"8960834.000000",,,,, -"11139.000000","51.465000","11139.000000","51.465000","11139.000000","51.465000",,,,,,,,,,,,,,"13943.000000","28985.000000","13748.000000","10.000000","28985.000000","28985.000000",,,,,,,,,,,"6373040.000000","8259532.000000","478888.000000","0.000000","68487440.000000","0.000000","89428912.000000",,"3778240.000000","24935712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000",,,,,,,,"13487.000000","16791.000000",,,,,,,,,,,"3863.000000","683.000000","519.000000","635.000000","839.000000","620.000000","843.000000","0.000000","0.000000","0.000000","586.000000","454.000000","533.000000","706.000000","565.000000","636.000000","160.000000","6000.000000",,"8960854.000000",,,,, -"13031.000000","54.430000","13031.000000","54.430000","13031.000000","54.430000",,,,,,,,,,,,,,"17739.000000","26951.500000","7538.000000","6.000000","26951.500000","26951.500000",,,,,,,,,,,"6918296.000000","8678964.000000","478888.000000","0.000000","68491668.000000","0.000000","89428912.000000",,"3778240.000000","24929944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000",,,,,,,,"18210.000000","10415.000000",,,,,,,,,,,"3806.000000","681.000000","517.000000","629.000000","839.000000","580.000000","843.000000","0.000000","0.000000","0.000000","583.000000","449.000000","529.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960874.000000",,,,, -"11749.000000","52.420000","11749.000000","52.420000","11749.000000","52.420000",,,,,,,,,,,,,,"14342.000000","28587.000000","13389.000000","25.000000","28587.000000","28587.000000",,,,,,,,,,,"7002180.000000","8657992.000000","478888.000000","0.000000","68472972.000000","0.000000","89428912.000000",,"3778240.000000","24985000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000",,,,,,,,"14543.000000","14900.000000",,,,,,,,,,,"3841.000000","679.000000","508.000000","619.000000","839.000000","569.000000","843.000000","0.000000","0.000000","0.000000","579.000000","430.000000","518.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960894.000000",,,,, -"14026.000000","55.975000","14026.000000","55.975000","14026.000000","55.975000",,,,,,,,,,,,,,"1244.000000","8996.500000","7161.000000","22.000000","8996.500000","8996.500000",,,,,,,,,,,"6806016.000000","8195876.000000","478888.000000","0.000000","68459076.000000","0.000000","89429112.000000",,"3778240.000000","25016252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000",,,,,,,,"2169.000000","7418.000000",,,,,,,,,,,"4052.000000","676.000000","541.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","577.000000","459.000000","509.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960914.000000",,,,, -"13959.000000","55.865000","13959.000000","55.865000","13959.000000","55.865000",,,,,,,,,,,,,,"622.000000","7405.500000","6595.000000","6.000000","7405.500000","7405.500000",,,,,,,,,,,"6281736.000000","7566728.000000","478888.000000","0.000000","68445972.000000","0.000000","89429112.000000",,"3778240.000000","25029196.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000",,,,,,,,"713.000000","6880.000000",,,,,,,,,,,"4040.000000","677.000000","563.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","576.000000","470.000000","506.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960934.000000",,,,, -"15191.000000","57.795000","15191.000000","57.795000","15191.000000","57.795000",,,,,,,,,,,,,,"10423.000000","15823.000000","5399.000000","3.000000","15823.000000","15823.000000",,,,,,,,,,,"6344652.000000","7650616.000000","478888.000000","0.000000","68448712.000000","0.000000","89429112.000000",,"3778240.000000","24990228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000",,,,,,,,"9095.000000",,,,,,,,,,,,"4015.000000","676.000000","585.000000","609.000000","839.000000","714.000000","843.000000","0.000000","0.000000","0.000000","575.000000","503.000000","507.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960954.000000",,,,, -"14373.000000","56.510000","14373.000000","56.510000","14373.000000","56.510000",,,,,,,,,,,,,,"22245.000000","29379.000000","6197.000000","14.000000","29379.000000","29379.000000",,,,,,,,,,,"5947144.000000","7420868.000000","478888.000000","0.000000","68438172.000000","0.000000","89429112.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000",,,,,,,,"23902.000000","6413.000000",,,,,,,,,,,"3935.000000","674.000000","587.000000","602.000000","839.000000","714.000000","799.000000","0.000000","0.000000","0.000000","573.000000","517.000000","505.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960974.000000",,,,, -"20617.000000","66.290000","20617.000000","66.290000","20617.000000","66.290000",,,,,,,,,,,,,,"17519.000000","33595.500000","16012.000000","18.000000","33595.500000","33595.500000",,,,,,,,,,,"6072972.000000","7693504.000000","478888.000000","0.000000","68433336.000000","0.000000","89429112.000000",,"3778240.000000","25020440.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000",,,,,,,,"17284.000000","16375.000000",,,,,,,,,,,"4433.000000","677.000000","771.000000","627.000000","843.000000","1649.000000","855.000000","0.000000","0.000000","0.000000","573.000000","594.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8960994.000000",,,,, -"15667.000000","58.545000","15667.000000","58.545000","15667.000000","58.545000",,,,,,,,,,,,,,"9565.000000","25514.500000","10927.000000","14.000000","25514.500000","25514.500000",,,,,,,,,,,"6156816.000000","7630552.000000","478888.000000","0.000000","68454000.000000","0.000000","89429076.000000",,"3778240.000000","24995436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000",,,,,,,,"10692.000000","19844.000000",,,,,,,,,,,"4021.000000","679.000000","825.000000","636.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","573.000000","605.000000","518.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961014.000000",,,,, -"15146.000000","57.725000","15146.000000","57.725000","15146.000000","57.725000",,,,,,,,,,,,,,"49.000000","6901.000000","4425.000000","26.000000","6901.000000","6901.000000",,,,,,,,,,,"6408468.000000","8024628.000000","478888.000000","0.000000","68445000.000000","0.000000","89429076.000000",,"3778240.000000","25004856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000",,,,,,,,"234.000000","9093.000000",,,,,,,,,,,"3965.000000","681.000000","859.000000","638.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","574.000000","611.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961034.000000",,,,, -"17198.000000","60.955000","17198.000000","60.955000","17198.000000","60.955000",,,,,,,,,,,,,,"74.000000","6900.000000","6677.000000","10.000000","6900.000000","6900.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68473348.000000","0.000000","89429076.000000",,"3778240.000000","24980628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000",,,,,,,,"540.000000","6509.000000",,,,,,,,,,,"4144.000000","682.000000","697.000000","628.000000","855.000000","1052.000000","852.000000","0.000000","0.000000","0.000000","574.000000","563.000000","516.000000","701.000000","699.000000","664.000000","160.000000","6000.000000",,"8961054.000000",,,,, -"16364.000000","59.640000","16364.000000","59.640000","16364.000000","59.640000",,,,,,,,,,,,,,"144.000000","5734.000000","5444.000000","7.000000","5734.000000","5734.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68461532.000000","0.000000","89429076.000000",,"3778240.000000","24984448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000",,,,,,,,"228.000000","5651.000000",,,,,,,,,,,"4364.000000","680.000000","672.000000","627.000000","855.000000","852.000000","852.000000","0.000000","0.000000","0.000000","573.000000","573.000000","518.000000","701.000000","699.000000","662.000000","160.000000","6000.000000",,"8961074.000000",,,,, -"17080.000000","60.760000","17080.000000","60.760000","17080.000000","60.760000",,,,,,,,,,,,,,"60.000000","6209.000000","5738.000000","38.000000","6209.000000","6209.000000",,,,,,,,,,,"6616308.000000","8477436.000000","478888.000000","0.000000","68461100.000000","0.000000","89429076.000000",,"3778240.000000","24922628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000",,,,,,,,"180.000000","6438.000000",,,,,,,,,,,"4089.000000","680.000000","718.000000","645.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","571.000000","602.000000","529.000000","696.000000","699.000000","662.000000","160.000000","6000.000000",,"8961094.000000",,,,, -"14338.000000","56.460000","14338.000000","56.460000","14338.000000","56.460000",,,,,,,,,,,,,,"127.000000","4596.000000","4499.000000","11.000000","4596.000000","4596.000000",,,,,,,,,,,"6275972.000000","8143776.000000","478888.000000","0.000000","68447552.000000","0.000000","89429076.000000",,"3778240.000000","24934904.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000",,,,,,,,"154.000000","4412.000000",,,,,,,,,,,"4080.000000","677.000000","686.000000","647.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","567.000000","568.000000","529.000000","686.000000","647.000000","662.000000","160.000000","6000.000000",,"8961114.000000",,,,, -"13650.000000","55.375000","13650.000000","55.375000","13650.000000","55.375000",,,,,,,,,,,,,,"14569.000000","19336.000000","5250.000000","8.000000","19336.000000","19336.000000",,,,,,,,,,,"6275972.000000","8174660.000000","478888.000000","0.000000","68434736.000000","0.000000","89429076.000000",,"3778240.000000","24963428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000",,,,,,,,"13084.000000","5767.000000",,,,,,,,,,,"4088.000000","675.000000","671.000000","652.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","565.000000","557.000000","534.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961134.000000",,,,, -"11267.000000","51.630000","11267.000000","51.630000","11267.000000","51.630000",,,,,,,,,,,,,,"20366.000000","25325.000000","4206.000000","4.000000","25325.000000","25325.000000",,,,,,,,,,,"6569572.000000","8636032.000000","478888.000000","0.000000","68420732.000000","0.000000","89429076.000000",,"3778240.000000","24879836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000",,,,,,,,"22015.000000","4061.000000",,,,,,,,,,,"3795.000000","669.000000","540.000000","649.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","560.000000","464.000000","531.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961154.000000",,,,, -"10200.000000","49.965000","10200.000000","49.965000","10200.000000","49.965000",,,,,,,,,,,,,,"18164.000000","32954.000000","14689.000000","9.000000","32954.000000","32954.000000",,,,,,,,,,,"6234024.000000","8233192.000000","478888.000000","0.000000","68422364.000000","0.000000","89429076.000000",,"3778240.000000","24878364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000",,,,,,,,"17585.000000","15469.000000",,,,,,,,,,,"3866.000000","664.000000","496.000000","642.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","555.000000","425.000000","524.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961174.000000",,,,, -"10460.000000","50.375000","10460.000000","50.375000","10460.000000","50.375000",,,,,,,,,,,,,,"7903.000000","17929.000000","9799.000000","30.000000","17929.000000","17929.000000",,,,,,,,,,,"6192088.000000","8212228.000000","478888.000000","0.000000","68425120.000000","0.000000","89429084.000000",,"3778240.000000","24963024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000",,,,,,,,"8776.000000","9379.000000",,,,,,,,,,,"3813.000000","658.000000","420.000000","634.000000","855.000000","644.000000","892.000000","0.000000","0.000000","0.000000","550.000000","356.000000","519.000000","684.000000","474.000000","682.000000","160.000000","6000.000000",,"8961194.000000",,,,, -"9221.000000","48.415000","9221.000000","48.415000","9221.000000","48.415000",,,,,,,,,,,,,,"25855.000000","54017.000000","27985.000000","21.000000","54017.000000","54017.000000",,,,,,,,,,,"6737136.000000","8547568.000000","478888.000000","0.000000","68400916.000000","0.000000","89428880.000000",,"3778240.000000","24949236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000",,,,,,,,"26318.000000","27874.000000",,,,,,,,,,,"3682.000000","651.000000","405.000000","622.000000","855.000000","509.000000","892.000000","0.000000","0.000000","0.000000","544.000000","347.000000","508.000000","684.000000","429.000000","682.000000","160.000000","6000.000000",,"8961214.000000",,,,, -"10276.000000","50.085000","10276.000000","50.085000","10276.000000","50.085000",,,,,,,,,,,,,,"23510.000000","56052.000000","32542.000000","46.000000","56052.000000","56052.000000",,,,,,,,,,,"6903972.000000","8993712.000000","478888.000000","0.000000","68424412.000000","0.000000","89428880.000000",,"3778240.000000","24925668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000",,,,,,,,,"33520.000000",,,,,,,,,,,"3733.000000","648.000000","410.000000","612.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","541.000000","344.000000","499.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961234.000000",,,,, -"9437.000000","48.760000","9437.000000","48.760000","9437.000000","48.760000",,,,,,,,,,,,,,"1718.000000","7001.000000","4025.000000","11.000000","7001.000000","7001.000000",,,,,,,,,,,"6924944.000000","8890000.000000","478888.000000","0.000000","68410544.000000","0.000000","89428880.000000",,"3778240.000000","25015960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000",,,,,,,,"2423.000000","5836.000000",,,,,,,,,,,"3637.000000","643.000000","409.000000","599.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","536.000000","342.000000","487.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961254.000000",,,,, -"12247.000000","53.165000","12247.000000","53.165000","12247.000000","53.165000",,,,,,,,,,,,,,"227.000000","8992.000000","7595.000000","8.000000","8992.000000","8992.000000",,,,,,,,,,,"6883180.000000","8848228.000000","478888.000000","0.000000","68401376.000000","0.000000","89429052.000000",,"3778240.000000","24982300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000",,,,,,,,"656.000000","9505.000000",,,,,,,,,,,"3771.000000","639.000000","471.000000","599.000000","855.000000","793.000000","892.000000","0.000000","0.000000","0.000000","531.000000","373.000000","479.000000","684.000000","573.000000","682.000000","160.000000","6000.000000",,"8961274.000000",,,,, -"11975.000000","52.735000","11975.000000","52.735000","11975.000000","52.735000",,,,,,,,,,,,,,"143.000000","17900.500000","16196.000000","52.000000","17900.500000","17900.500000",,,,,,,,,,,"6799292.000000","8324876.000000","478888.000000","0.000000","68391708.000000","0.000000","89429052.000000",,"3778240.000000","24993660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000",,,,,,,,"2303.000000","17158.000000",,,,,,,,,,,"3840.000000","635.000000","485.000000","555.000000","855.000000","793.000000","793.000000","0.000000","0.000000","0.000000","527.000000","398.000000","460.000000","682.000000","573.000000","644.000000","160.000000","6000.000000",,"8961294.000000",,,,, -"12465.000000","53.500000","12465.000000","53.500000","12465.000000","53.500000",,,,,,,,,,,,,,"87.000000","5461.500000","5426.000000","46.000000","5461.500000","5461.500000",,,,,,,,,,,"6911708.000000","8437288.000000","478888.000000","0.000000","68392648.000000","0.000000","89436608.000000",,"3778240.000000","24998892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000",,,,,,,,"178.000000","5231.000000",,,,,,,,,,,"3843.000000","627.000000","510.000000","536.000000","852.000000","793.000000","774.000000","0.000000","7.000000","0.000000","521.000000","421.000000","450.000000","674.000000","573.000000","635.000000","160.000000","6000.000000",,"8961314.000000",,,,, -"13378.000000","54.930000","13378.000000","54.930000","13378.000000","54.930000",,,,,,,,,,,,,,"77.000000","3794.500000","3453.000000","33.000000","3794.500000","3794.500000",,,,,,,,,,,"6618012.000000","8143596.000000","478888.000000","0.000000","68396768.000000","0.000000","89436516.000000",,"3778240.000000","25043612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000",,,,,,,,"133.000000","3925.000000",,,,,,,,,,,"3915.000000","617.000000","500.000000","527.000000","806.000000","600.000000","774.000000","0.000000","7.000000","0.000000","514.000000","438.000000","445.000000","656.000000","506.000000","635.000000","160.000000","6000.000000",,"8961334.000000",,,,, -"14055.000000","55.990000","14055.000000","55.990000","14055.000000","55.990000",,,,,,,,,,,,,,"108.000000","8475.000000","8030.000000","15.000000","8475.000000","8475.000000",,,,,,,,,,,"6219556.000000","7710812.000000","478888.000000","0.000000","68395340.000000","0.000000","89436516.000000",,"3778240.000000","25050556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000",,,,,,,,"582.000000","8229.000000",,,,,,,,,,,"3988.000000","615.000000","525.000000","520.000000","806.000000","633.000000","765.000000","0.000000","7.000000","0.000000","512.000000","456.000000","438.000000","656.000000","538.000000","630.000000","160.000000","6000.000000",,"8961354.000000",,,,, -"12909.000000","54.195000","12909.000000","54.195000","12909.000000","54.195000",,,,,,,,,,,,,,"76.000000","5306.500000","5227.000000","9.000000","5306.500000","5306.500000",,,,,,,,,,,"6155520.000000","7708552.000000","478888.000000","0.000000","68396572.000000","0.000000","89436548.000000",,"3778240.000000","25053348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000",,,,,,,,"209.000000","5100.000000",,,,,,,,,,,"3812.000000","607.000000","531.000000","508.000000","793.000000","633.000000","765.000000","0.000000","0.000000","0.000000","508.000000","466.000000","429.000000","647.000000","538.000000","583.000000","160.000000","6000.000000",,"8961374.000000",,,,, -"11021.000000","51.230000","11021.000000","51.230000","11021.000000","51.230000",,,,,,,,,,,,,,"44.000000","4459.000000","4415.000000","6.000000","4459.000000","4459.000000",,,,,,,,,,,"5673192.000000","7813436.000000","478888.000000","0.000000","68382116.000000","0.000000","89436568.000000",,"3778240.000000","25058984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000",,,,,,,,"121.000000",,,,,,,,,,,,"3772.000000","599.000000","495.000000","482.000000","793.000000","633.000000","644.000000","0.000000","0.000000","0.000000","503.000000","443.000000","413.000000","644.000000","538.000000","525.000000","160.000000","6000.000000",,"8961394.000000",,,,, -"11680.000000","52.265000","11680.000000","52.265000","11680.000000","52.265000",,,,,,,,,,,,,,"56.000000","5561.500000","5537.000000","65.000000","5561.500000","5561.500000",,,,,,,,,,,"5783788.000000","8175688.000000","478888.000000","0.000000","68390656.000000","0.000000","89436568.000000",,"3778240.000000","25105408.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000",,,,,,,,"171.000000","5358.000000",,,,,,,,,,,"4008.000000","593.000000","452.000000","473.000000","774.000000","579.000000","644.000000","0.000000","0.000000","0.000000","498.000000","419.000000","408.000000","640.000000","487.000000","515.000000","160.000000","6000.000000",,"8961414.000000",,,,, -"12237.000000","53.140000","12237.000000","53.140000","12237.000000","53.140000",,,,,,,,,,,,,,"123.000000","6875.500000","6623.000000","129.000000","6875.500000","6875.500000",,,,,,,,,,,"5868772.000000","8260672.000000","478888.000000","0.000000","68385152.000000","0.000000","89437664.000000",,"3778240.000000","25061400.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000",,,,,,,,"187.000000","6816.000000",,,,,,,,,,,"3945.000000","588.000000","441.000000","462.000000","774.000000","579.000000","623.000000","0.000000","0.000000","0.000000","493.000000","412.000000","400.000000","636.000000","487.000000","505.000000","160.000000","6000.000000",,"8961434.000000",,,,, -"10626.000000","50.605000","10626.000000","50.605000","10626.000000","50.605000",,,,,,,,,,,,,,"46.000000","4849.000000","4530.000000","68.000000","4849.000000","4849.000000",,,,,,,,,,,"6007060.000000","8000504.000000","478888.000000","0.000000","68362384.000000","0.000000","89429152.000000",,"3778240.000000","24903168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000",,,,,,,,"127.000000","4994.000000",,,,,,,,,,,"4004.000000","581.000000","427.000000","460.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","488.000000","403.000000","401.000000","635.000000","464.000000","505.000000","160.000000","6000.000000",,"8961454.000000",,,,, -"11575.000000","52.080000","11575.000000","52.080000","11575.000000","52.080000",,,,,,,,,,,,,,"48.000000","6997.000000","6565.000000","35.000000","6997.000000","6997.000000",,,,,,,,,,,"6078528.000000","8106304.000000","478888.000000","0.000000","68349660.000000","0.000000","89429152.000000",,"3778240.000000","24913816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000",,,,,,,,"205.000000","7174.000000",,,,,,,,,,,"3919.000000","577.000000","420.000000","458.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","485.000000","399.000000","403.000000","635.000000","458.000000","505.000000","160.000000","6000.000000",,"8961474.000000",,,,, -"10217.000000","49.950000","10217.000000","49.950000","10217.000000","49.950000",,,,,,,,,,,,,,"56.000000","6941.500000","5946.000000","121.000000","6941.500000","6941.500000",,,,,,,,,,,"6119324.000000","8115064.000000","478888.000000","0.000000","68337052.000000","0.000000","89429152.000000",,"3778240.000000","24968836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000",,,,,,,,"239.000000","7640.000000",,,,,,,,,,,"3777.000000","571.000000","406.000000","459.000000","774.000000","486.000000","600.000000","0.000000","0.000000","0.000000","481.000000","385.000000","405.000000","635.000000","450.000000","505.000000","160.000000","6000.000000",,"8961494.000000",,,,, -"10785.000000","50.835000","10785.000000","50.835000","10785.000000","50.835000",,,,,,,,,,,,,,"57.000000","6043.500000","5484.000000","34.000000","6043.500000","6043.500000",,,,,,,,,,,"5699896.000000","7464944.000000","478888.000000","0.000000","68323340.000000","0.000000","89429152.000000",,"3778240.000000","25102636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000",,,,,,,,"175.000000","6369.000000",,,,,,,,,,,"3876.000000","563.000000","402.000000","459.000000","774.000000","453.000000","600.000000","0.000000","0.000000","0.000000","475.000000","382.000000","408.000000","633.000000","419.000000","505.000000","160.000000","6000.000000",,"8961514.000000",,,,, -"10851.000000","50.930000","10851.000000","50.930000","10851.000000","50.930000",,,,,,,,,,,,,,"411.000000","6938.000000","5950.000000","27.000000","6938.000000","6938.000000",,,,,,,,,,,"5518772.000000","7178964.000000","478888.000000","0.000000","68311168.000000","0.000000","89429152.000000",,"3778240.000000","25113336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000",,,,,,,,"561.000000","6953.000000",,,,,,,,,,,"3791.000000","560.000000","413.000000","459.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","472.000000","378.000000","410.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961534.000000",,,,, -"10770.000000","50.810000","10770.000000","50.810000","10770.000000","50.810000",,,,,,,,,,,,,,"91.000000","6921.000000","5576.000000","24.000000","6921.000000","6921.000000",,,,,,,,,,,"5404996.000000","7128108.000000","478888.000000","0.000000","68329580.000000","0.000000","89429000.000000",,"3778240.000000","25150188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000",,,,,,,,"347.000000","7827.000000",,,,,,,,,,,"3772.000000","556.000000","418.000000","461.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","469.000000","378.000000","413.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961554.000000",,,,, -"10438.000000","50.290000","10438.000000","50.290000","10438.000000","50.290000",,,,,,,,,,,,,,"142.000000","13981.500000","13246.000000","29.000000","13981.500000","13981.500000",,,,,,,,,,,"5300084.000000","6960284.000000","478888.000000","0.000000","68323544.000000","0.000000","89428952.000000",,"3778240.000000","25139824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000",,,,,,,,"268.000000","14307.000000",,,,,,,,,,,"3754.000000","549.000000","412.000000","447.000000","768.000000","565.000000","573.000000","0.000000","0.000000","0.000000","464.000000","374.000000","408.000000","633.000000","458.000000","487.000000","160.000000","6000.000000",,"8961574.000000",,,,, -"17217.000000","60.910000","17217.000000","60.910000","17217.000000","60.910000",,,,,,,,,,,,,,"94.000000","10711.000000","10449.000000","34.000000","10711.000000","10711.000000",,,,,,,,,,,"5272440.000000","6988876.000000","478888.000000","0.000000","68328384.000000","0.000000","89428952.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000",,,,,,,,"219.000000","10659.000000",,,,,,,,,,,"4126.000000","549.000000","509.000000","464.000000","774.000000","977.000000","600.000000","0.000000","0.000000","0.000000","465.000000","443.000000","419.000000","635.000000","766.000000","506.000000","160.000000","6000.000000",,"8961594.000000",,,,, -"15256.000000","57.830000","15256.000000","57.830000","15256.000000","57.830000",,,,,,,,,,,,,,"79.000000","10194.500000","9698.000000","42.000000","10194.500000","10194.500000",,,,,,,,,,,"5261380.000000","6957992.000000","478888.000000","0.000000","68320268.000000","0.000000","89428952.000000",,"3778240.000000","25156764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000",,,,,,,,"206.000000","10404.000000",,,,,,,,,,,"3996.000000","551.000000","612.000000","482.000000","793.000000","977.000000","686.000000","0.000000","0.000000","0.000000","465.000000","497.000000","428.000000","635.000000","766.000000","534.000000","160.000000","6000.000000",,"8961614.000000",,,,, -"14354.000000","56.415000","14354.000000","56.415000","14354.000000","56.415000",,,,,,,,,,,,,,"43.000000","5034.000000","5085.000000","8.000000","5034.000000","5034.000000",,,,,,,,,,,"4723744.000000","6391760.000000","478888.000000","0.000000","68308516.000000","0.000000","89429896.000000",,"3778240.000000","25161856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000",,,,,,,,"139.000000","4801.000000",,,,,,,,,,,"3963.000000","552.000000","719.000000","491.000000","793.000000","977.000000","694.000000","0.000000","0.000000","0.000000","464.000000","555.000000","431.000000","635.000000","766.000000","538.000000","160.000000","6000.000000",,"8961634.000000",,,,, -"14148.000000","56.085000","14148.000000","56.085000","14148.000000","56.085000",,,,,,,,,,,,,,"72.000000","6442.500000","6059.000000","5.000000","6442.500000","6442.500000",,,,,,,,,,,"4806892.000000","6286164.000000","478888.000000","0.000000","68297484.000000","0.000000","89429164.000000",,"3778240.000000","25164884.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000",,,,,,,,"514.000000","6239.000000",,,,,,,,,,,"3911.000000","546.000000","655.000000","490.000000","765.000000","881.000000","694.000000","0.000000","0.000000","0.000000","462.000000","514.000000","431.000000","617.000000","617.000000","534.000000","160.000000","6000.000000",,"8961654.000000",,,,, -"16438.000000","59.680000","16438.000000","59.680000","16438.000000","59.680000",,,,,,,,,,,,,,"47.000000","6811.000000","6410.000000","6.000000","6811.000000","6811.000000",,,,,,,,,,,"4745128.000000","6224396.000000","478888.000000","0.000000","68310372.000000","0.000000","89429164.000000",,"3778240.000000","25105640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000",,,,,,,,"151.000000","7014.000000",,,,,,,,,,,"4181.000000","547.000000","648.000000","505.000000","753.000000","753.000000","731.000000","0.000000","0.000000","0.000000","463.000000","532.000000","441.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961674.000000",,,,, -"13816.000000","55.565000","13816.000000","55.565000","13816.000000","55.565000",,,,,,,,,,,,,,"60.000000","6851.000000","6758.000000","6.000000","6851.000000","6851.000000",,,,,,,,,,,"4891856.000000","6350156.000000","478888.000000","0.000000","68297076.000000","0.000000","89429092.000000",,"3778240.000000","25031504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000",,,,,,,,"156.000000","6727.000000",,,,,,,,,,,"4054.000000","549.000000","634.000000","519.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","463.000000","524.000000","447.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961694.000000",,,,, -"12163.000000","52.970000","12163.000000","52.970000","12163.000000","52.970000",,,,,,,,,,,,,,"58.000000","6849.000000","6388.000000","14.000000","6849.000000","6849.000000",,,,,,,,,,,"5394232.000000","6768644.000000","478888.000000","0.000000","68283044.000000","0.000000","89429092.000000",,"3778240.000000","25044752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000",,,,,,,,"175.000000","7075.000000",,,,,,,,,,,"3795.000000","548.000000","622.000000","524.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","462.000000","507.000000","448.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961714.000000",,,,, -"11954.000000","52.650000","11954.000000","52.650000","11954.000000","52.650000",,,,,,,,,,,,,,"101.000000","6733.000000","5921.000000","16.000000","6733.000000","6733.000000",,,,,,,,,,,"5813580.000000","7136136.000000","478888.000000","0.000000","68292920.000000","0.000000","89429008.000000",,"3778240.000000","25104392.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000",,,,,,,,"261.000000","7181.000000",,,,,,,,,,,"3759.000000","547.000000","550.000000","527.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","460.000000","446.000000","448.000000","616.000000","591.000000","613.000000","160.000000","6000.000000",,"8961734.000000",,,,, -"11429.000000","51.820000","11429.000000","51.820000","11429.000000","51.820000",,,,,,,,,,,,,,"78.000000","4938.000000","4154.000000","28.000000","4938.000000","4938.000000",,,,,,,,,,,"5540952.000000","7157104.000000","478888.000000","0.000000","68286288.000000","0.000000","89429008.000000",,"3778240.000000","25086900.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000",,,,,,,,"230.000000","5414.000000",,,,,,,,,,,"3807.000000","547.000000","494.000000","532.000000","765.000000","590.000000","753.000000","0.000000","0.000000","0.000000","461.000000","418.000000","450.000000","616.000000","469.000000","613.000000","160.000000","6000.000000",,"8961754.000000",,,,, -"12151.000000","52.955000","12151.000000","52.955000","12151.000000","52.955000",,,,,,,,,,,,,,"52.000000","5558.500000","5175.000000","95.000000","5558.500000","5558.500000",,,,,,,,,,,"5422744.000000","6990276.000000","478888.000000","0.000000","68292980.000000","0.000000","89429008.000000",,"3778240.000000","25078592.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000",,,,,,,,"157.000000","5733.000000",,,,,,,,,,,"3864.000000","546.000000","490.000000","538.000000","765.000000","576.000000","753.000000","0.000000","0.000000","0.000000","460.000000","421.000000","453.000000","616.000000","495.000000","613.000000","160.000000","6000.000000",,"8961774.000000",,,,, -"13717.000000","55.400000","13717.000000","55.400000","13717.000000","55.400000",,,,,,,,,,,,,,"70.000000","5832.000000","5776.000000","13.000000","5832.000000","5832.000000",,,,,,,,,,,"5348764.000000","7032220.000000","478888.000000","0.000000","68277392.000000","0.000000","89429008.000000",,"3778240.000000","25069720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000",,,,,,,,"178.000000","5640.000000",,,,,,,,,,,"3894.000000","547.000000","514.000000","548.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","439.000000","459.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961794.000000",,,,, -"13393.000000","54.890000","13393.000000","54.890000","13393.000000","54.890000",,,,,,,,,,,,,,"59.000000","6284.500000","5915.000000","20.000000","6284.500000","6284.500000",,,,,,,,,,,"5222788.000000","6927216.000000","478888.000000","0.000000","68269568.000000","0.000000","89428860.000000",,"3778240.000000","25108152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000",,,,,,,,"168.000000","6426.000000",,,,,,,,,,,"4074.000000","547.000000","541.000000","560.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","465.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961814.000000",,,,, -"11555.000000","52.005000","11555.000000","52.005000","11555.000000","52.005000",,,,,,,,,,,,,,"328.000000","4211.500000","3861.000000","30.000000","4211.500000","4211.500000",,,,,,,,,,,"4921708.000000","6821556.000000","478888.000000","0.000000","68255140.000000","0.000000","89429000.000000",,"3778240.000000","25122004.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000",,,,,,,,"118.000000","4115.000000",,,,,,,,,,,"4096.000000","543.000000","518.000000","559.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","458.000000","448.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961835.000000",,,,, -"10549.000000","50.430000","10549.000000","50.430000","10549.000000","50.430000",,,,,,,,,,,,,,"203.000000","4260.500000","3723.000000","4.000000","4260.500000","4260.500000",,,,,,,,,,,"4911800.000000","6821556.000000","478888.000000","0.000000","68250944.000000","0.000000","89429000.000000",,"3778240.000000","25139316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000",,,,,,,,"466.000000","4128.000000",,,,,,,,,,,"3718.000000","541.000000","496.000000","564.000000","768.000000","606.000000","784.000000","0.000000","0.000000","0.000000","456.000000","432.000000","469.000000","613.000000","542.000000","613.000000","160.000000","6000.000000",,"8961854.000000",,,,, -"15120.000000","57.585000","15120.000000","57.585000","15120.000000","57.585000",,,,,,,,,,,,,,"91.000000","8647.500000","8528.000000","8.000000","8647.500000","8647.500000",,,,,,,,,,,"5247348.000000","6947388.000000","478888.000000","0.000000","68242072.000000","0.000000","89429000.000000",,"3778240.000000","25170684.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000",,,,,,,,"285.000000","8390.000000",,,,,,,,,,,"3908.000000","544.000000","541.000000","586.000000","784.000000","824.000000","795.000000","0.000000","0.000000","0.000000","456.000000","442.000000","481.000000","616.000000","637.000000","616.000000","160.000000","6000.000000",,"8961874.000000",,,,, -"11168.000000","51.395000","11168.000000","51.395000","11168.000000","51.395000",,,,,,,,,,,,,,"135.000000","8788.000000","8418.000000","22.000000","8788.000000","8788.000000",,,,,,,,,,,"5115780.000000","6466920.000000","478888.000000","0.000000","68249708.000000","0.000000","89429000.000000",,"3778240.000000","25163700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000",,,,,,,,"169.000000","8853.000000",,,,,,,,,,,"3877.000000","528.000000","538.000000","564.000000","765.000000","824.000000","784.000000","0.000000","0.000000","0.000000","449.000000","447.000000","467.000000","603.000000","637.000000","606.000000","160.000000","6000.000000",,"8961894.000000",,,,, -"13341.000000","54.800000","13341.000000","54.800000","13341.000000","54.800000",,,,,,,,,,,,,,"111.000000","5116.500000","5070.000000","26.000000","5116.500000","5116.500000",,,,,,,,,,,"5073836.000000","6445948.000000","478888.000000","0.000000","68256536.000000","0.000000","89429000.000000",,"3778240.000000","25091876.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000",,,,,,,,"165.000000","4886.000000",,,,,,,,,,,"3801.000000","523.000000","546.000000","551.000000","753.000000","824.000000","753.000000","0.000000","0.000000","0.000000","446.000000","453.000000","460.000000","597.000000","637.000000","591.000000","160.000000","6000.000000",,"8961914.000000",,,,, -"12151.000000","52.935000","12151.000000","52.935000","12151.000000","52.935000",,,,,,,,,,,,,,"44.000000","5187.000000","4969.000000","30.000000","5187.000000","5187.000000",,,,,,,,,,,"4969224.000000","6194536.000000","478888.000000","0.000000","68251412.000000","0.000000","89429248.000000",,"3778240.000000","25131724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000",,,,,,,,"124.000000","5235.000000",,,,,,,,,,,"3852.000000","519.000000","485.000000","539.000000","731.000000","601.000000","753.000000","0.000000","0.000000","0.000000","444.000000","424.000000","455.000000","591.000000","500.000000","591.000000","160.000000","6000.000000",,"8961934.000000",,,,, -"13564.000000","55.150000","13564.000000","55.150000","13564.000000","55.150000",,,,,,,,,,,,,,"89.000000","7838.000000","7097.000000","12.000000","7838.000000","7838.000000",,,,,,,,,,,"5396032.000000","6495520.000000","478888.000000","0.000000","68256308.000000","0.000000","89429012.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000",,,,,,,,"487.000000","8002.000000",,,,,,,,,,,"3791.000000","516.000000","518.000000","537.000000","723.000000","601.000000","753.000000","0.000000","0.000000","0.000000","441.000000","446.000000","454.000000","583.000000","498.000000","591.000000","160.000000","6000.000000",,"8961954.000000",,,,, -"12987.000000","54.240000","12987.000000","54.240000","12987.000000","54.240000",,,,,,,,,,,,,,"698.000000","9536.500000","7676.000000","5.000000","9536.500000","9536.500000",,,,,,,,,,,"5521864.000000","6800184.000000","478888.000000","0.000000","68243504.000000","0.000000","89429012.000000",,"3778240.000000","25088872.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000",,,,,,,,"1071.000000","9626.000000",,,,,,,,,,,"3847.000000","514.000000","535.000000","528.000000","723.000000","607.000000","607.000000","0.000000","0.000000","0.000000","438.000000","459.000000","446.000000","554.000000","505.000000","516.000000","160.000000","6000.000000",,"8961974.000000",,,,, -"12345.000000","53.245000","12345.000000","53.245000","12345.000000","53.245000",,,,,,,,,,,,,,"62.000000","5982.500000","5751.000000","6.000000","5982.500000","5982.500000",,,,,,,,,,,"4913836.000000","6443808.000000","478888.000000","0.000000","68262384.000000","0.000000","89429152.000000",,"3778240.000000","25080504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000",,,,,,,,"187.000000","5964.000000",,,,,,,,,,,"3760.000000","507.000000","532.000000","519.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","434.000000","453.000000","440.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8961994.000000",,,,, -"11180.000000","51.420000","11180.000000","51.420000","11180.000000","51.420000",,,,,,,,,,,,,,"49.000000","5273.500000","4930.000000","2.000000","5273.500000","5273.500000",,,,,,,,,,,"4667872.000000","6316988.000000","478888.000000","0.000000","68266012.000000","0.000000","89429104.000000",,"3778240.000000","25075136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000",,,,,,,,"112.000000","5455.000000",,,,,,,,,,,"3944.000000","503.000000","503.000000","513.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","432.000000","430.000000","438.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8962014.000000",,,,, -"12072.000000","52.815000","12072.000000","52.815000","12072.000000","52.815000",,,,,,,,,,,,,,"38.000000","6997.000000","5571.000000","3.000000","6997.000000","6997.000000",,,,,,,,,,,"4604960.000000","6137004.000000","478888.000000","0.000000","68254152.000000","0.000000","89429104.000000",,"3778240.000000","25011436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000",,,,,,,,"2804.000000","5580.000000",,,,,,,,,,,"3845.000000","501.000000","481.000000","514.000000","667.000000","563.000000","606.000000","0.000000","0.000000","0.000000","429.000000","417.000000","440.000000","518.000000","487.000000","505.000000","160.000000","6000.000000",,"8962034.000000",,,,, -"12359.000000","53.260000","12359.000000","53.260000","12359.000000","53.260000",,,,,,,,,,,,,,"181.000000","7008.000000","6826.000000","3.000000","7008.000000","7008.000000",,,,,,,,,,,"5003232.000000","6493336.000000","478888.000000","0.000000","68242252.000000","0.000000","89428920.000000",,"3778240.000000","25008832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000",,,,,,,,"5560.000000",,,,,,,,,,,,"3929.000000","502.000000","476.000000","515.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","418.000000","441.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962054.000000",,,,, -"10899.000000","50.985000","10899.000000","50.985000","10899.000000","50.985000",,,,,,,,,,,,,,"51.000000","6882.000000","5312.000000","53.000000","6882.000000","6882.000000",,,,,,,,,,,"5191912.000000","6619108.000000","478888.000000","0.000000","68272596.000000","0.000000","89428860.000000",,"3778240.000000","25001632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000",,,,,,,,"2783.000000","5616.000000",,,,,,,,,,,"3784.000000","502.000000","473.000000","510.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","417.000000","438.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962074.000000",,,,, -"12069.000000","52.820000","12069.000000","52.820000","12069.000000","52.820000",,,,,,,,,,,,,,"49.000000","6256.000000","6022.000000","11.000000","6256.000000","6256.000000",,,,,,,,,,,"5094924.000000","6578568.000000","478888.000000","0.000000","68277556.000000","0.000000","89429112.000000",,"3778240.000000","24998320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000",,,,,,,,"161.000000","6278.000000",,,,,,,,,,,"3888.000000","505.000000","478.000000","507.000000","667.000000","603.000000","603.000000","0.000000","0.000000","0.000000","434.000000","423.000000","437.000000","518.000000","507.000000","506.000000","160.000000","6000.000000",,"8962094.000000",,,,, -"10785.000000","50.805000","10785.000000","50.805000","10785.000000","50.805000",,,,,,,,,,,,,,"82.000000","8109.000000","7963.000000","190.000000","8109.000000","8109.000000",,,,,,,,,,,"5073952.000000","6725364.000000","478888.000000","0.000000","68266380.000000","0.000000","89429112.000000",,"3778240.000000","25106736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000",,,,,,,,"200.000000","7971.000000",,,,,,,,,,,"3923.000000","505.000000","441.000000","495.000000","667.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","397.000000","427.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962114.000000",,,,, -"10809.000000","50.845000","10809.000000","50.845000","10809.000000","50.845000",,,,,,,,,,,,,,"55.000000","5568.500000","5230.000000","34.000000","5568.500000","5568.500000",,,,,,,,,,,"4739348.000000","6411932.000000","478888.000000","0.000000","68277576.000000","0.000000","89434064.000000",,"3778240.000000","25097432.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000",,,,,,,,"169.000000","5682.000000",,,,,,,,,,,"3797.000000","504.000000","439.000000","494.000000","656.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","391.000000","426.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962134.000000",,,,, -"10246.000000","49.965000","10246.000000","49.965000","10246.000000","49.965000",,,,,,,,,,,,,,"343.000000","4539.500000","4272.000000","64.000000","4539.500000","4539.500000",,,,,,,,,,,"4669760.000000","6360144.000000","478888.000000","0.000000","68277524.000000","0.000000","89443808.000000",,"3778240.000000","25111424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000",,,,,,,,"406.000000","4057.000000",,,,,,,,,,,"3688.000000","504.000000","399.000000","488.000000","656.000000","515.000000","601.000000","0.000000","0.000000","0.000000","435.000000","361.000000","422.000000","518.000000","449.000000","505.000000","160.000000","6000.000000",,"8962154.000000",,,,, -"14508.000000","56.640000","14508.000000","56.640000","14508.000000","56.640000",,,,,,,,,,,,,,"65.000000","7258.000000","6842.000000","30.000000","7258.000000","7258.000000",,,,,,,,,,,"4522960.000000","5919744.000000","478888.000000","0.000000","68276188.000000","0.000000","89443808.000000",,"3778240.000000","25110068.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000",,,,,,,,"181.000000","7428.000000",,,,,,,,,,,"3889.000000","505.000000","475.000000","482.000000","656.000000","863.000000","599.000000","0.000000","0.000000","0.000000","437.000000","418.000000","422.000000","518.000000","688.000000","500.000000","160.000000","6000.000000",,"8962174.000000",,,,, -"16375.000000","59.565000","16375.000000","59.565000","16375.000000","59.565000",,,,,,,,,,,,,,"55.000000","7927.000000","7812.000000","7.000000","7927.000000","7927.000000",,,,,,,,,,,"4440360.000000","6110168.000000","478888.000000","0.000000","68274216.000000","0.000000","89451504.000000",,"3778240.000000","25204356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000",,,,,,,,"179.000000","7806.000000",,,,,,,,,,,"4104.000000","512.000000","608.000000","508.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","440.000000","487.000000","434.000000","538.000000","709.000000","507.000000","160.000000","6000.000000",,"8962194.000000",,,,, -"13316.000000","54.785000","13316.000000","54.785000","13316.000000","54.785000",,,,,,,,,,,,,,"261.000000","8756.500000","6792.000000","31.000000","8756.500000","8756.500000",,,,,,,,,,,"4866944.000000","6475120.000000","478888.000000","0.000000","68300212.000000","0.000000","89488184.000000",,"3778240.000000","25207012.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000",,,,,,,,"1493.000000","8965.000000",,,,,,,,,,,"3982.000000","514.000000","653.000000","509.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","442.000000","527.000000","437.000000","538.000000","709.000000","524.000000","160.000000","6000.000000",,"8962214.000000",,,,, -"14104.000000","56.015000","14104.000000","56.015000","14104.000000","56.015000",,,,,,,,,,,,,,"114.000000","6854.500000","6093.000000","3.000000","6854.500000","6854.500000",,,,,,,,,,,"5307348.000000","6831644.000000","478888.000000","0.000000","68292320.000000","0.000000","89488184.000000",,"3778240.000000","25213964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000",,,,,,,,"219.000000","7283.000000",,,,,,,,,,,"3985.000000","515.000000","657.000000","516.000000","703.000000","1124.000000","633.000000","0.000000","0.000000","0.000000","442.000000","516.000000","441.000000","542.000000","709.000000","525.000000","160.000000","6000.000000",,"8962234.000000",,,,, -"14397.000000","56.470000","14397.000000","56.470000","14397.000000","56.470000",,,,,,,,,,,,,,"51.000000","7541.500000","7204.000000","5.000000","7541.500000","7541.500000",,,,,,,,,,,"5139572.000000","6873588.000000","478888.000000","0.000000","68284004.000000","0.000000","89488184.000000",,"3778240.000000","25217692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000",,,,,,,,"508.000000","7319.000000",,,,,,,,,,,"3845.000000","515.000000","563.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","442.000000","485.000000","442.000000","542.000000","556.000000","536.000000","160.000000","6000.000000",,"8962254.000000",,,,, -"14179.000000","56.135000","14179.000000","56.135000","14179.000000","56.135000",,,,,,,,,,,,,,"1047.000000","6638.000000","5384.000000","4.000000","6638.000000","6638.000000",,,,,,,,,,,"5062308.000000","7020940.000000","478888.000000","0.000000","68293804.000000","0.000000","89488184.000000",,"3778240.000000","25235524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000",,,,,,,,"1188.000000","5655.000000",,,,,,,,,,,"4074.000000","517.000000","576.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","444.000000","496.000000","445.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962274.000000",,,,, -"12487.000000","53.485000","12487.000000","53.485000","12487.000000","53.485000",,,,,,,,,,,,,,"1601.000000","8434.000000","6682.000000","4.000000","8434.000000","8434.000000",,,,,,,,,,,"4936476.000000","7083848.000000","478888.000000","0.000000","68295888.000000","0.000000","89488184.000000",,"3778240.000000","25211388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000",,,,,,,,"1725.000000","6859.000000",,,,,,,,,,,"3940.000000","519.000000","548.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","445.000000","482.000000","446.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962294.000000",,,,, -"10970.000000","51.105000","10970.000000","51.105000","10970.000000","51.105000",,,,,,,,,,,,,,"56.000000","6236.500000","6020.000000","4.000000","6236.500000","6236.500000",,,,,,,,,,,"4978376.000000","6853120.000000","478888.000000","0.000000","68299296.000000","0.000000","89488136.000000",,"3778240.000000","25206076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000",,,,,,,,"170.000000","6227.000000",,,,,,,,,,,"3736.000000","519.000000","512.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","444.000000","455.000000","447.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962314.000000",,,,, -"10166.000000","49.840000","10166.000000","49.840000","10166.000000","49.840000",,,,,,,,,,,,,,"51.000000","5111.500000","4886.000000","6.000000","5111.500000","5111.500000",,,,,,,,,,,"4747472.000000","6299812.000000","478888.000000","0.000000","68282376.000000","0.000000","89484636.000000",,"3778240.000000","25177120.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000",,,,,,,,"147.000000","5139.000000",,,,,,,,,,,"3775.000000","518.000000","464.000000","514.000000","703.000000","601.000000","633.000000","0.000000","0.000000","0.000000","443.000000","401.000000","442.000000","549.000000","516.000000","549.000000","160.000000","6000.000000",,"8962334.000000",,,,, -"10004.000000","49.590000","10004.000000","49.590000","10004.000000","49.590000",,,,,,,,,,,,,,"36.000000","4308.000000","4090.000000","2.000000","4308.000000","4308.000000",,,,,,,,,,,"4369984.000000","5796488.000000","478888.000000","0.000000","68284036.000000","0.000000","89484636.000000",,"3778240.000000","25084596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000",,,,,,,,"125.000000","4363.000000",,,,,,,,,,,"3740.000000","519.000000","422.000000","509.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","442.000000","363.000000","435.000000","549.000000","437.000000","549.000000","160.000000","6000.000000",,"8962354.000000",,,,, -"9902.000000","49.410000","9902.000000","49.410000","9902.000000","49.410000",,,,,,,,,,,,,,"47.000000","3860.000000","3645.000000","43.000000","3860.000000","3860.000000",,,,,,,,,,,"4489756.000000","5915436.000000","478888.000000","0.000000","68243272.000000","0.000000","89456948.000000",,"3778240.000000","25096880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000",,,,,,,,"137.000000","3890.000000",,,,,,,,,,,"3799.000000","518.000000","410.000000","506.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","441.000000","350.000000","433.000000","549.000000","432.000000","549.000000","160.000000","6000.000000",,"8962374.000000",,,,, -"11067.000000","51.225000","11067.000000","51.225000","11067.000000","51.225000",,,,,,,,,,,,,,"129.000000","4789.000000","4641.000000","3.000000","4789.000000","4789.000000",,,,,,,,,,,"4944268.000000","6369948.000000","478888.000000","0.000000","68229968.000000","0.000000","89456948.000000",,"3778240.000000","25185764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000",,,,,,,,"124.000000","4684.000000",,,,,,,,,,,"3944.000000","519.000000","413.000000","501.000000","703.000000","511.000000","633.000000","0.000000","0.000000","0.000000","442.000000","365.000000","430.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962394.000000",,,,, -"10953.000000","51.040000","10953.000000","51.040000","10953.000000","51.040000",,,,,,,,,,,,,,"53.000000","5608.000000","5405.000000","16.000000","5608.000000","5608.000000",,,,,,,,,,,"5049124.000000","6475092.000000","478888.000000","0.000000","68214524.000000","0.000000","89456948.000000",,"3778240.000000","25269452.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000",,,,,,,,"140.000000","5618.000000",,,,,,,,,,,"3898.000000","519.000000","413.000000","503.000000","703.000000","510.000000","633.000000","0.000000","0.000000","0.000000","442.000000","374.000000","431.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962414.000000",,,,, -"11092.000000","51.255000","11092.000000","51.255000","11092.000000","51.255000",,,,,,,,,,,,,,"65.000000","7863.000000","6799.000000","3.000000","7863.000000","7863.000000",,,,,,,,,,,"5216848.000000","6831552.000000","478888.000000","0.000000","68200444.000000","0.000000","89456900.000000",,"3778240.000000","25282944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000",,,,,,,,"277.000000","8585.000000",,,,,,,,,,,"3854.000000","519.000000","429.000000","505.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","432.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962434.000000",,,,, -"10776.000000","50.760000","10776.000000","50.760000","10776.000000","50.760000",,,,,,,,,,,,,,"334.000000","6444.000000","5325.000000","3.000000","6444.000000","6444.000000",,,,,,,,,,,"5119532.000000","6468856.000000","478888.000000","0.000000","68201584.000000","0.000000","89457196.000000",,"3778240.000000","25265084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000",,,,,,,,"531.000000","6696.000000",,,,,,,,,,,"3727.000000","519.000000","423.000000","506.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","441.000000","374.000000","433.000000","549.000000","460.000000","549.000000","160.000000","6000.000000",,"8962454.000000",,,,, -"11008.000000","51.115000","11008.000000","51.115000","11008.000000","51.115000",,,,,,,,,,,,,,"46.000000","6576.000000","6386.000000","26.000000","6576.000000","6576.000000",,,,,,,,,,,"4972740.000000","6447596.000000","478888.000000","0.000000","68196704.000000","0.000000","89457196.000000",,"3778240.000000","25269348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000",,,,,,,,"143.000000","6576.000000",,,,,,,,,,,"3850.000000","521.000000","433.000000","495.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","424.000000","549.000000","459.000000","545.000000","160.000000","6000.000000",,"8962474.000000",,,,, -"13935.000000","55.715000","13935.000000","55.715000","13935.000000","55.715000",,,,,,,,,,,,,,"60.000000","7997.000000","7783.000000","14.000000","7997.000000","7997.000000",,,,,,,,,,,"4658168.000000","5839424.000000","478884.000000","0.000000","68211040.000000","0.000000","89457200.000000",,"3778240.000000","25274372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000",,,,,,,,"192.000000","7958.000000",,,,,,,,,,,"4051.000000","517.000000","480.000000","479.000000","694.000000","707.000000","633.000000","0.000000","0.000000","0.000000","440.000000","423.000000","419.000000","549.000000","573.000000","545.000000","160.000000","6000.000000",,"8962494.000000",,,,, -"12109.000000","52.840000","12109.000000","52.840000","12109.000000","52.840000",,,,,,,,,,,,,,"98.000000","3494.000000","3308.000000","20.000000","3494.000000","3494.000000",,,,,,,,,,,"4539204.000000","5866872.000000","478884.000000","0.000000","68199608.000000","0.000000","89457200.000000",,"3778240.000000","25302000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000",,,,,,,,"101.000000","3481.000000",,,,,,,,,,,"3842.000000","511.000000","489.000000","473.000000","635.000000","707.000000","633.000000","0.000000","0.000000","0.000000","437.000000","434.000000","414.000000","545.000000","573.000000","545.000000","160.000000","6000.000000",,"8962514.000000",,,,, -"12449.000000","53.430000","12449.000000","53.430000","12449.000000","53.430000",,,,,,,,,,,,,,"559.000000","13424.000000","8656.000000","9.000000","13424.000000","13424.000000",,,,,,,,,,,"4392396.000000","5615220.000000","478884.000000","0.000000","68302196.000000","0.000000","89503924.000000",,"3778240.000000","25302756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000",,,,,,,,"8688.000000","8945.000000",,,,,,,,,,,"3955.000000","507.000000","507.000000","465.000000","633.000000","707.000000","603.000000","0.000000","0.000000","0.000000","435.000000","446.000000","410.000000","542.000000","573.000000","536.000000","160.000000","6000.000000",,"8962534.000000",,,,, -"14909.000000","57.460000","14909.000000","57.460000","14909.000000","57.460000",,,,,,,,,,,,,,"138.000000","33119.000000","24738.000000","15.000000","33119.000000","33119.000000",,,,,,,,,,,"4790608.000000","5887600.000000","478884.000000","0.000000","68658380.000000","0.000000","89846920.000000",,"3778240.000000","25268652.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000",,,,,,,,"14753.000000","26608.000000",,,,,,,,,,,"3994.000000","509.000000","525.000000","471.000000","635.000000","748.000000","633.000000","0.000000","0.000000","0.000000","436.000000","448.000000","412.000000","542.000000","538.000000","538.000000","160.000000","6000.000000",,"8962554.000000",,,,, -"14170.000000","56.495000","14170.000000","56.495000","14170.000000","56.495000",,,,,,,,,,,,,,"194.000000","28579.000000","22406.000000","11.000000","28579.000000","28579.000000",,,,,,,,,,,"4902716.000000","6538100.000000","478884.000000","0.000000","69051420.000000","0.000000","90245440.000000",,"3778240.000000","25269236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000",,,,,,,,"9650.000000","24907.000000",,,,,,,,,,,"3850.000000","507.000000","587.000000","475.000000","633.000000","748.000000","635.000000","0.000000","0.000000","0.000000","433.000000","473.000000","409.000000","532.000000","538.000000","516.000000","160.000000","6000.000000",,"8962574.000000",,,,, -"13556.000000","55.755000","13556.000000","55.755000","13556.000000","55.755000",,,,,,,,,,,,,,"199.000000","31499.000000","31300.000000","13.000000","31499.000000","31499.000000",,,,,,,,,,,"5049516.000000","6757728.000000","478884.000000","0.000000","69488452.000000","0.000000","90628368.000000",,"3778240.000000","25275660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"3910.000000","507.000000","643.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","433.000000","499.000000","413.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962594.000000",,,,, -"10707.000000","51.425000","10707.000000","51.425000","10707.000000","51.425000",,,,,,,,,,,,,,"738.000000","27646.000000","22778.000000","11.000000","27646.000000","27646.000000",,,,,,,,,,,"5447976.000000","7093272.000000","478884.000000","0.000000","69761852.000000","0.000000","90958392.000000",,"3778240.000000","25270492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000",,,,,,,,"6531.000000","25243.000000",,,,,,,,,,,"3896.000000","505.000000","575.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","452.000000","411.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962614.000000",,,,, -"11213.000000","52.240000","11213.000000","52.240000","11213.000000","52.240000",,,,,,,,,,,,,,"95.000000","7160.000000","5816.000000","6.000000","7160.000000","7160.000000",,,,,,,,,,,"5734860.000000","7072444.000000","478884.000000","0.000000","69801216.000000","0.000000","90986888.000000",,"3778240.000000","25182836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000",,,,,,,,"310.000000","8099.000000",,,,,,,,,,,"3864.000000","505.000000","530.000000","488.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","431.000000","415.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962634.000000",,,,, -"12522.000000","54.290000","12522.000000","54.290000","12522.000000","54.290000",,,,,,,,,,,,,,"156.000000","7968.000000","6599.000000","6.000000","7968.000000","7968.000000",,,,,,,,,,,"6139996.000000","7240032.000000","478884.000000","0.000000","69807392.000000","0.000000","90994512.000000",,"3778240.000000","25207528.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000",,,,,,,,"351.000000","8828.000000",,,,,,,,,,,"4028.000000","506.000000","477.000000","494.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","403.000000","422.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962654.000000",,,,, -"11854.000000","53.260000","11854.000000","53.260000","11854.000000","53.260000",,,,,,,,,,,,,,"522.000000","7978.500000","6225.000000","10.000000","7978.500000","7978.500000",,,,,,,,,,,"6119060.000000","7386872.000000","478884.000000","0.000000","69845284.000000","0.000000","91029560.000000",,"3778240.000000","25202932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000",,,,,,,,"732.000000","8477.000000",,,,,,,,,,,"3762.000000","505.000000","488.000000","499.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","418.000000","425.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962674.000000",,,,, -"11154.000000","52.185000","11154.000000","52.185000","11154.000000","52.185000",,,,,,,,,,,,,,"301.000000","5348.500000","3896.000000","5.000000","5348.500000","5348.500000",,,,,,,,,,,"6817596.000000","8211240.000000","478884.000000","0.000000","69885108.000000","0.000000","91062444.000000",,"3778240.000000","25258076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000",,,,,,,,"414.000000","6085.000000",,,,,,,,,,,"3767.000000","502.000000","463.000000","498.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","430.000000","401.000000","423.000000","532.000000","554.000000","538.000000","160.000000","6000.000000",,"8962694.000000",,,,, -"10492.000000","51.160000","10492.000000","51.160000","10492.000000","51.160000",,,,,,,,,,,,,,"101.000000","5746.500000","4326.000000","7.000000","5746.500000","5746.500000",,,,,,,,,,,"6943708.000000","8568040.000000","478884.000000","0.000000","69909564.000000","0.000000","91105336.000000",,"3778240.000000","25231320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000",,,,,,,,"305.000000","6760.000000",,,,,,,,,,,"3827.000000","499.000000","441.000000","500.000000","633.000000","562.000000","656.000000","0.000000","0.000000","0.000000","428.000000","390.000000","425.000000","525.000000","481.000000","538.000000","160.000000","6000.000000",,"8962714.000000",,,,, -"11630.000000","52.935000","11630.000000","52.935000","11630.000000","52.935000",,,,,,,,,,,,,,"53.000000","7473.500000","6060.000000","12.000000","7473.500000","7473.500000",,,,,,,,,,,"6587196.000000","8316384.000000","478884.000000","0.000000","69895068.000000","0.000000","91105336.000000",,"3778240.000000","25244940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000",,,,,,,,"276.000000","8558.000000",,,,,,,,,,,"3753.000000","501.000000","447.000000","503.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","428.000000","391.000000","426.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962734.000000",,,,, -"12829.000000","54.820000","12829.000000","54.820000","12829.000000","54.820000",,,,,,,,,,,,,,"365.000000","7064.000000","5370.000000","10.000000","7064.000000","7064.000000",,,,,,,,,,,"6608552.000000","8355664.000000","478884.000000","0.000000","69902524.000000","0.000000","91105336.000000",,"3778240.000000","25228984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000",,,,,,,,"575.000000","7816.000000",,,,,,,,,,,"3928.000000","501.000000","473.000000","508.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","429.000000","417.000000","431.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962754.000000",,,,, -"12219.000000","53.865000","12219.000000","53.865000","12219.000000","53.865000",,,,,,,,,,,,,,"133.000000","6128.500000","4791.000000","27.000000","6128.500000","6128.500000",,,,,,,,,,,"6838956.000000","8607320.000000","478884.000000","0.000000","69906088.000000","0.000000","91107608.000000",,"3778240.000000","25188740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000",,,,,,,,"308.000000","7023.000000",,,,,,,,,,,"3971.000000","496.000000","486.000000","511.000000","623.000000","620.000000","656.000000","0.000000","0.000000","0.000000","427.000000","431.000000","434.000000","524.000000","523.000000","538.000000","160.000000","6000.000000",,"8962774.000000",,,,, -"17055.000000","61.435000","17055.000000","61.435000","17055.000000","61.435000",,,,,,,,,,,,,,"90.000000","12522.000000","11192.000000","46.000000","12522.000000","12522.000000",,,,,,,,,,,"7111536.000000","8754072.000000","478884.000000","0.000000","69894992.000000","0.000000","91107560.000000",,"3778240.000000","25200044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000",,,,,,,,"304.000000","13457.000000",,,,,,,,,,,"4105.000000","503.000000","575.000000","522.000000","633.000000","847.000000","715.000000","0.000000","0.000000","0.000000","431.000000","493.000000","440.000000","532.000000","683.000000","538.000000","160.000000","6000.000000",,"8962794.000000",,,,, -"16891.000000","61.175000","16891.000000","61.175000","16891.000000","61.175000",,,,,,,,,,,,,,"54.000000","11334.500000","10187.000000","47.000000","11334.500000","11334.500000",,,,,,,,,,,"6922464.000000","8491404.000000","478884.000000","0.000000","69895848.000000","0.000000","91110464.000000",,"3778240.000000","25226936.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000",,,,,,,,"308.000000","12119.000000",,,,,,,,,,,"4254.000000","507.000000","639.000000","538.000000","656.000000","847.000000","748.000000","0.000000","0.000000","0.000000","434.000000","533.000000","451.000000","538.000000","683.000000","573.000000","160.000000","6000.000000",,"8962814.000000",,,,, -"18270.000000","63.335000","18270.000000","63.335000","18270.000000","63.335000",,,,,,,,,,,,,,"161.000000","7375.000000","6204.000000","18.000000","7375.000000","7375.000000",,,,,,,,,,,"6649836.000000","8113636.000000","478884.000000","0.000000","69893040.000000","0.000000","91110464.000000",,"3778240.000000","25230328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000",,,,,,,,"301.000000","8083.000000",,,,,,,,,,,"4233.000000","515.000000","777.000000","565.000000","709.000000","934.000000","804.000000","0.000000","0.000000","0.000000","440.000000","620.000000","469.000000","556.000000","683.000000","641.000000","160.000000","6000.000000",,"8962834.000000",,,,, -"16695.000000","60.885000","16695.000000","60.885000","16695.000000","60.885000",,,,,,,,,,,,,,"125.000000","21957.000000","15282.000000","25.000000","21957.000000","21957.000000",,,,,,,,,,,"6922464.000000","8281408.000000","478884.000000","0.000000","69926028.000000","0.000000","91110464.000000",,"3778240.000000","25232844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000",,,,,,,,"10886.000000","17619.000000",,,,,,,,,,,"4171.000000","519.000000","750.000000","567.000000","715.000000","934.000000","804.000000","0.000000","0.000000","0.000000","442.000000","611.000000","473.000000","571.000000","681.000000","645.000000","160.000000","6000.000000",,"8962854.000000",,,,, -"16947.000000","61.360000","16947.000000","61.360000","16947.000000","61.360000",,,,,,,,,,,,,,"89.000000","34448.500000","29353.000000","83.000000","34448.500000","34448.500000",,,,,,,,,,,"6956768.000000","8322584.000000","478884.000000","0.000000","70083000.000000","0.000000","91185084.000000",,"3778240.000000","25150104.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000",,,,,,,,"7313.000000","32141.000000",,,,,,,,,,,"4213.000000","522.000000","762.000000","573.000000","728.000000","934.000000","804.000000","0.000000","0.000000","0.000000","445.000000","625.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962874.000000",,,,, -"14205.000000","57.140000","14205.000000","57.140000","14205.000000","57.140000",,,,,,,,,,,,,,"240.000000","29860.500000","28067.000000","259.000000","29860.500000","29860.500000",,,,,,,,,,,"6726080.000000","8154808.000000","478884.000000","0.000000","70233964.000000","0.000000","91313728.000000",,"3778240.000000","25035048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000",,,,,,,,"624.000000","30790.000000",,,,,,,,,,,"3947.000000","525.000000","676.000000","571.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","447.000000","564.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962894.000000",,,,, -"12501.000000","54.545000","12501.000000","54.545000","12501.000000","54.545000",,,,,,,,,,,,,,"212.000000","14022.000000","12148.000000","126.000000","14022.000000","14022.000000",,,,,,,,,,,"6747048.000000","8133832.000000","478884.000000","0.000000","70386032.000000","0.000000","91471928.000000",,"3778240.000000","25030632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000",,,,,,,,"931.000000","14752.000000",,,,,,,,,,,"3850.000000","526.000000","616.000000","575.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","448.000000","519.000000","486.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962914.000000",,,,, -"12721.000000","54.920000","12721.000000","54.920000","12721.000000","54.920000",,,,,,,,,,,,,,"102.000000","4926.000000","3563.000000","53.000000","4926.000000","4926.000000",,,,,,,,,,,"6160620.000000","7889808.000000","478884.000000","0.000000","70444560.000000","0.000000","91522104.000000",,"3778240.000000","25042348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000",,,,,,,,"248.000000","5937.000000",,,,,,,,,,,"3903.000000","526.000000","548.000000","577.000000","728.000000","665.000000","804.000000","0.000000","0.000000","0.000000","448.000000","465.000000","488.000000","573.000000","557.000000","667.000000","160.000000","6000.000000",,"8962934.000000",,,,, -"12852.000000","55.135000","12852.000000","55.135000","12852.000000","55.135000",,,,,,,,,,,,,,"55.000000","5003.000000","3805.000000","15.000000","5003.000000","5003.000000",,,,,,,,,,,"6663992.000000","8015704.000000","478884.000000","0.000000","70468960.000000","0.000000","91559512.000000",,"3778240.000000","24985180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000",,,,,,,,"194.000000","5951.000000",,,,,,,,,,,"3977.000000","527.000000","514.000000","579.000000","728.000000","585.000000","804.000000","0.000000","0.000000","0.000000","449.000000","449.000000","491.000000","573.000000","512.000000","667.000000","160.000000","6000.000000",,"8962954.000000",,,,, -"13105.000000","55.525000","13105.000000","55.525000","13105.000000","55.525000",,,,,,,,,,,,,,"66.000000","2945.000000","2879.000000","18.000000","2945.000000","2945.000000",,,,,,,,,,,"6716108.000000","8099892.000000","478884.000000","0.000000","70463412.000000","0.000000","91560776.000000",,"3778240.000000","24991108.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000",,,,,,,,"171.000000",,,,,,,,,,,,"3890.000000","530.000000","531.000000","584.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","459.000000","495.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962974.000000",,,,, -"12787.000000","55.040000","12787.000000","55.040000","12787.000000","55.040000",,,,,,,,,,,,,,"90.000000","5076.500000","4567.000000","21.000000","5076.500000","5076.500000",,,,,,,,,,,"7806840.000000","9218208.000000","478884.000000","0.000000","70479640.000000","0.000000","91561824.000000",,"3778240.000000","24998264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000",,,,,,,,"204.000000","5290.000000",,,,,,,,,,,"4013.000000","529.000000","525.000000","589.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","461.000000","500.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962994.000000",,,,, -"15735.000000","59.700000","15735.000000","59.700000","15735.000000","59.700000",,,,,,,,,,,,,,"109.000000","7774.500000","6573.000000","54.000000","7774.500000","7774.500000",,,,,,,,,,,"7513236.000000","8987520.000000","478884.000000","0.000000","70565956.000000","0.000000","91641952.000000",,"3778240.000000","25023052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000",,,,,,,,"232.000000","8633.000000",,,,,,,,,,,"3884.000000","535.000000","563.000000","603.000000","748.000000","793.000000","804.000000","0.000000","0.000000","0.000000","456.000000","494.000000","512.000000","581.000000","700.000000","681.000000","160.000000","6000.000000",,"8963014.000000",,,,, -"19420.000000","65.480000","19420.000000","65.480000","19420.000000","65.480000",,,,,,,,,,,,,,"312.000000","10633.000000","9107.000000","37.000000","10633.000000","10633.000000",,,,,,,,,,,"7429304.000000","8840672.000000","478884.000000","0.000000","70576332.000000","0.000000","91642416.000000",,"3778240.000000","25010532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000",,,,,,,,"562.000000","11284.000000",,,,,,,,,,,"4402.000000","544.000000","654.000000","625.000000","783.000000","909.000000","816.000000","0.000000","0.000000","0.000000","462.000000","562.000000","529.000000","609.000000","750.000000","683.000000","160.000000","6000.000000",,"8963034.000000",,,,, -"19856.000000","66.195000","19856.000000","66.195000","19856.000000","66.195000",,,,,,,,,,,,,,"341.000000","11153.500000","9602.000000","92.000000","11153.500000","11153.500000",,,,,,,,,,,"7135708.000000","8652240.000000","478884.000000","0.000000","70648244.000000","0.000000","91643440.000000",,"3778240.000000","25027172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000",,,,,,,,"584.000000","11778.000000",,,,,,,,,,,"4300.000000","556.000000","799.000000","655.000000","793.000000","1141.000000","905.000000","0.000000","0.000000","0.000000","469.000000","637.000000","544.000000","641.000000","759.000000","698.000000","160.000000","6000.000000",,"8963054.000000",,,,, -"21610.000000","68.950000","21610.000000","68.950000","21610.000000","68.950000",,,,,,,,,,,,,,"101.000000","14058.500000","13429.000000","12.000000","14058.500000","14058.500000",,,,,,,,,,,"6632396.000000","8295720.000000","478884.000000","0.000000","70662368.000000","0.000000","91643440.000000",,"3778240.000000","25018700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000",,,,,,,,"298.000000","14289.000000",,,,,,,,,,,"4482.000000","571.000000","1007.000000","707.000000","804.000000","1402.000000","1028.000000","0.000000","0.000000","0.000000","477.000000","736.000000","573.000000","667.000000","904.000000","750.000000","160.000000","6000.000000",,"8963074.000000",,,,, -"20061.000000","66.520000","20061.000000","66.520000","20061.000000","66.520000",,,,,,,,,,,,,,"46.000000","10445.000000","10186.000000","13.000000","10445.000000","10445.000000",,,,,,,,,,,"6716336.000000","8400636.000000","478884.000000","0.000000","70646660.000000","0.000000","91645016.000000",,"3778240.000000","25034532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000",,,,,,,,"176.000000","10481.000000",,,,,,,,,,,"4333.000000","575.000000","1073.000000","725.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","749.000000","580.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963094.000000",,,,, -"14279.000000","57.505000","14279.000000","57.505000","14279.000000","57.505000",,,,,,,,,,,,,,"113.000000","19248.500000","18693.000000","23.000000","19248.500000","19248.500000",,,,,,,,,,,"7055748.000000","8463552.000000","478884.000000","0.000000","70737636.000000","0.000000","91749072.000000",,"3778240.000000","25028972.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000",,,,,,,,"344.000000","19345.000000",,,,,,,,,,,"4016.000000","576.000000","956.000000","718.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","690.000000","576.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963114.000000",,,,, -"16080.000000","60.320000","16080.000000","60.320000","16080.000000","60.320000",,,,,,,,,,,,,,"122.000000","8354.500000","8023.000000","11.000000","8354.500000","8354.500000",,,,,,,,,,,"7076716.000000","8442576.000000","478884.000000","0.000000","70727172.000000","0.000000","91754600.000000",,"3778240.000000","25093300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000",,,,,,,,"239.000000","8324.000000",,,,,,,,,,,"4042.000000","578.000000","767.000000","705.000000","814.000000","1239.000000","1125.000000","0.000000","0.000000","0.000000","483.000000","599.000000","569.000000","681.000000","825.000000","759.000000","160.000000","6000.000000",,"8963134.000000",,,,, -"16797.000000","61.440000","16797.000000","61.440000","16797.000000","61.440000",,,,,,,,,,,,,,"109.000000","9881.500000","9511.000000","63.000000","9881.500000","9881.500000",,,,,,,,,,,"7013656.000000","8337568.000000","478884.000000","0.000000","70717152.000000","0.000000","91754452.000000",,"3778240.000000","25102092.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000",,,,,,,,"287.000000","9856.000000",,,,,,,,,,,"4094.000000","582.000000","659.000000","707.000000","816.000000","818.000000","1125.000000","0.000000","0.000000","0.000000","485.000000","556.000000","569.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963154.000000",,,,, -"16334.000000","60.710000","16334.000000","60.710000","16334.000000","60.710000",,,,,,,,,,,,,,"56.000000","10935.000000","10493.000000","5.000000","10935.000000","10935.000000",,,,,,,,,,,"7114176.000000","8749024.000000","478884.000000","0.000000","70712572.000000","0.000000","91756136.000000",,"3778240.000000","25055968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000",,,,,,,,"498.000000","10822.000000",,,,,,,,,,,"3979.000000","585.000000","713.000000","708.000000","818.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","486.000000","579.000000","566.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963174.000000",,,,, -"15386.000000","59.230000","15386.000000","59.230000","15386.000000","59.230000",,,,,,,,,,,,,,"40.000000","8124.500000","7884.000000","16.000000","8124.500000","8124.500000",,,,,,,,,,,"7554692.000000","9546056.000000","478884.000000","0.000000","70720116.000000","0.000000","91762900.000000",,"3778240.000000","25061316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000",,,,,,,,"151.000000","8173.000000",,,,,,,,,,,"3919.000000","591.000000","733.000000","717.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","489.000000","575.000000","571.000000","681.000000","639.000000","759.000000","160.000000","6000.000000",,"8963194.000000",,,,, -"15692.000000","59.715000","15692.000000","59.715000","15692.000000","59.715000",,,,,,,,,,,,,,"60.000000","10242.500000","10020.000000","9.000000","10242.500000","10242.500000",,,,,,,,,,,"7638576.000000","9650916.000000","478884.000000","0.000000","70731944.000000","0.000000","91794132.000000",,"3778240.000000","25011360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000",,,,,,,,"196.000000","10209.000000",,,,,,,,,,,"3927.000000","597.000000","745.000000","732.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","492.000000","564.000000","578.000000","681.000000","632.000000","759.000000","160.000000","6000.000000",,"8963214.000000",,,,, -"15214.000000","58.965000","15214.000000","58.965000","15214.000000","58.965000",,,,,,,,,,,,,,"53.000000","10876.500000","9266.000000","11.000000","10876.500000","10876.500000",,,,,,,,,,,"7261700.000000","9162608.000000","478884.000000","0.000000","70730840.000000","0.000000","91794132.000000",,"3778240.000000","24972668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000",,,,,,,,"2876.000000","9558.000000",,,,,,,,,,,"4191.000000","602.000000","714.000000","741.000000","820.000000","851.000000","1125.000000","0.000000","0.000000","0.000000","497.000000","565.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963234.000000",,,,, -"13902.000000","56.905000","13902.000000","56.905000","13902.000000","56.905000",,,,,,,,,,,,,,"72.000000","12629.000000","9636.000000","12.000000","12629.000000","12629.000000",,,,,,,,,,,"6821300.000000","8554432.000000","478884.000000","0.000000","70721112.000000","0.000000","91794132.000000",,"3778240.000000","25008160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000",,,,,,,,"5564.000000","9985.000000",,,,,,,,,,,"3906.000000","606.000000","659.000000","746.000000","820.000000","813.000000","1125.000000","0.000000","0.000000","0.000000","500.000000","536.000000","588.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963254.000000",,,,, -"12489.000000","54.715000","12489.000000","54.715000","12489.000000","54.715000",,,,,,,,,,,,,,"120.000000","15124.500000","13418.000000","17.000000","15124.500000","15124.500000",,,,,,,,,,,"6884444.000000","8575636.000000","478884.000000","0.000000","70775488.000000","0.000000","91853628.000000",,"3778240.000000","25018924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000",,,,,,,,"2953.000000","13757.000000",,,,,,,,,,,"3882.000000","609.000000","585.000000","743.000000","820.000000","743.000000","1125.000000","0.000000","0.000000","0.000000","502.000000","501.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963274.000000",,,,, -"13219.000000","55.905000","13219.000000","55.905000","13219.000000","55.905000",,,,,,,,,,,,,,"47.000000","9561.000000","9244.000000","25.000000","9561.000000","9561.000000",,,,,,,,,,,"6993132.000000","8736172.000000","478884.000000","0.000000","70859532.000000","0.000000","91953320.000000",,"3778240.000000","25061516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000",,,,,,,,"174.000000","9656.000000",,,,,,,,,,,"3774.000000","610.000000","537.000000","744.000000","820.000000","650.000000","1125.000000","0.000000","0.000000","0.000000","503.000000","455.000000","585.000000","681.000000","565.000000","759.000000","160.000000","6000.000000",,"8963294.000000",,,,, -"16321.000000","60.800000","16321.000000","60.800000","16321.000000","60.800000",,,,,,,,,,,,,,"144.000000","12688.000000","11503.000000","4.000000","12688.000000","12688.000000",,,,,,,,,,,"6636616.000000","8568400.000000","478884.000000","0.000000","70929072.000000","0.000000","92035680.000000",,"3778240.000000","25078016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000",,,,,,,,"358.000000","13370.000000",,,,,,,,,,,"4037.000000","621.000000","637.000000","760.000000","847.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","508.000000","497.000000","589.000000","681.000000","628.000000","759.000000","160.000000","6000.000000",,"8963314.000000",,,,, -"14767.000000","58.360000","14767.000000","58.360000","14767.000000","58.360000",,,,,,,,,,,,,,"54.000000","11711.000000","10897.000000","18.000000","11711.000000","11711.000000",,,,,,,,,,,"6699536.000000","8610340.000000","478884.000000","0.000000","70925852.000000","0.000000","92035680.000000",,"3778240.000000","25078700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000",,,,,,,,"294.000000","12176.000000",,,,,,,,,,,"3991.000000","627.000000","701.000000","753.000000","851.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","512.000000","530.000000","580.000000","681.000000","653.000000","759.000000","160.000000","6000.000000",,"8963334.000000",,,,, -"14464.000000","57.885000","14464.000000","57.885000","14464.000000","57.885000",,,,,,,,,,,,,,"379.000000","13414.500000","12782.000000","3.000000","13414.500000","13414.500000",,,,,,,,,,,"6483668.000000","8447476.000000","478884.000000","0.000000","70923980.000000","0.000000","92036412.000000",,"3778240.000000","25045744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000",,,,,,,,"582.000000","13085.000000",,,,,,,,,,,"3850.000000","631.000000","726.000000","729.000000","851.000000","972.000000","1028.000000","0.000000","0.000000","0.000000","514.000000","546.000000","567.000000","681.000000","653.000000","723.000000","160.000000","6000.000000",,"8963354.000000",,,,, -"20036.000000","66.610000","20036.000000","66.610000","20036.000000","66.610000",,,,,,,,,,,,,,"33.000000","10495.500000","10286.000000","27.000000","10495.500000","10495.500000",,,,,,,,,,,"6399328.000000","7754972.000000","478884.000000","0.000000","70909332.000000","0.000000","92035680.000000",,"3778240.000000","25034008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000",,,,,,,,"166.000000","10504.000000",,,,,,,,,,,"4083.000000","651.000000","885.000000","736.000000","905.000000","1713.000000","972.000000","0.000000","0.000000","0.000000","522.000000","593.000000","560.000000","683.000000","837.000000","676.000000","160.000000","6000.000000",,"8963374.000000",,,,, -"14116.000000","57.330000","14116.000000","57.330000","14116.000000","57.330000",,,,,,,,,,,,,,"82.000000","9328.000000","9246.000000","7.000000","9328.000000","9328.000000",,,,,,,,,,,"6231708.000000","7650264.000000","478884.000000","0.000000","70903772.000000","0.000000","92035832.000000",,"3778240.000000","25040488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000",,,,,,,,"207.000000",,,,,,,,,,,,"3915.000000","651.000000","838.000000","706.000000","905.000000","1713.000000","860.000000","0.000000","0.000000","0.000000","522.000000","583.000000","547.000000","683.000000","837.000000","653.000000","160.000000","6000.000000",,"8963394.000000",,,,, -"19335.000000","65.510000","19335.000000","65.510000","19335.000000","65.510000",,,,,,,,,,,,,,"35.000000","7945.500000","7728.000000","16.000000","7945.500000","7945.500000",,,,,,,,,,,"6105880.000000","7524436.000000","478884.000000","0.000000","70912960.000000","0.000000","92035832.000000",,"3778240.000000","25115360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000",,,,,,,,"166.000000","7961.000000",,,,,,,,,,,"4159.000000","660.000000","936.000000","725.000000","934.000000","1713.000000","959.000000","0.000000","0.000000","0.000000","527.000000","622.000000","553.000000","687.000000","837.000000","667.000000","160.000000","6000.000000",,"8963414.000000",,,,, -"21196.000000","68.420000","21196.000000","68.420000","21196.000000","68.420000",,,,,,,,,,,,,,"125.000000","7995.000000","7737.000000","4.000000","7995.000000","7995.000000",,,,,,,,,,,"5986960.000000","7909116.000000","478884.000000","0.000000","70902656.000000","0.000000","92035832.000000",,"3778240.000000","25073920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000",,,,,,,,"231.000000","7896.000000",,,,,,,,,,,"4312.000000","682.000000","966.000000","776.000000","988.000000","1559.000000","1243.000000","0.000000","0.000000","0.000000","536.000000","654.000000","571.000000","702.000000","858.000000","725.000000","160.000000","6000.000000",,"8963434.000000",,,,, -"21659.000000","69.145000","21659.000000","69.145000","21659.000000","69.145000",,,,,,,,,,,,,,"41.000000","5788.000000","5588.000000","6.000000","5788.000000","5788.000000",,,,,,,,,,,"6070848.000000","8195528.000000","478884.000000","0.000000","70906016.000000","0.000000","92035832.000000",,"3778240.000000","25068612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000",,,,,,,,"137.000000","5809.000000",,,,,,,,,,,"4505.000000","693.000000","1158.000000","806.000000","1102.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","542.000000","739.000000","583.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963454.000000",,,,, -"19037.000000","65.035000","19037.000000","65.035000","19037.000000","65.035000",,,,,,,,,,,,,,"100.000000","10284.500000","9876.000000","33.000000","10284.500000","10284.500000",,,,,,,,,,,"6315304.000000","8335136.000000","478884.000000","0.000000","70891916.000000","0.000000","92035832.000000",,"3778240.000000","25007892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000",,,,,,,,"529.000000","10062.000000",,,,,,,,,,,"4122.000000","703.000000","1224.000000","827.000000","1135.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","546.000000","761.000000","590.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963474.000000",,,,, -"17504.000000","62.615000","17504.000000","62.615000","17504.000000","62.615000",,,,,,,,,,,,,,"41.000000","7695.000000","7423.000000","14.000000","7695.000000","7695.000000",,,,,,,,,,,"5797908.000000","7859392.000000","478884.000000","0.000000","70866880.000000","0.000000","92035832.000000",,"3778240.000000","25171964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000",,,,,,,,"167.000000","7757.000000",,,,,,,,,,,"4114.000000","708.000000","1033.000000","836.000000","1135.000000","1259.000000","1259.000000","0.000000","0.000000","0.000000","549.000000","698.000000","596.000000","725.000000","815.000000","807.000000","160.000000","6000.000000",,"8963494.000000",,,,, -"14229.000000","57.485000","14229.000000","57.485000","14229.000000","57.485000",,,,,,,,,,,,,,"41.000000","5376.000000","5241.000000","45.000000","5376.000000","5376.000000",,,,,,,,,,,"5797704.000000","7922104.000000","478884.000000","0.000000","70850888.000000","0.000000","92035632.000000",,"3778240.000000","25186488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000",,,,,,,,"131.000000","5337.000000",,,,,,,,,,,"3919.000000","711.000000","846.000000","826.000000","1135.000000","1216.000000","1259.000000","0.000000","0.000000","0.000000","552.000000","610.000000","593.000000","725.000000","721.000000","807.000000","160.000000","6000.000000",,"8963514.000000",,,,, -"14547.000000","57.980000","14547.000000","57.980000","14547.000000","57.980000",,,,,,,,,,,,,,"40.000000","8692.500000","8326.000000","7.000000","8692.500000","8692.500000",,,,,,,,,,,"5734792.000000","7901132.000000","478884.000000","0.000000","70856632.000000","0.000000","92035632.000000",,"3778240.000000","25235760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000",,,,,,,,"328.000000","8690.000000",,,,,,,,,,,"3881.000000","713.000000","680.000000","821.000000","1135.000000","888.000000","1259.000000","0.000000","0.000000","0.000000","554.000000","554.000000","588.000000","725.000000","668.000000","807.000000","160.000000","6000.000000",,"8963534.000000",,,,, -"13098.000000","55.705000","13098.000000","55.705000","13098.000000","55.705000",,,,,,,,,,,,,,"38.000000","9513.500000","9122.000000","19.000000","9513.500000","9513.500000",,,,,,,,,,,"5916388.000000","7978176.000000","478884.000000","0.000000","70838960.000000","0.000000","92035680.000000",,"3778240.000000","25215464.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000",,,,,,,,"400.000000","9467.000000",,,,,,,,,,,"3935.000000","714.000000","571.000000","819.000000","1135.000000","635.000000","1259.000000","0.000000","0.000000","0.000000","556.000000","497.000000","588.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963554.000000",,,,, -"13222.000000","55.895000","13222.000000","55.895000","13222.000000","55.895000",,,,,,,,,,,,,,"39.000000","8136.000000","7299.000000","28.000000","8136.000000","8136.000000",,,,,,,,,,,"5832504.000000","7768456.000000","478884.000000","0.000000","70835528.000000","0.000000","92035680.000000",,"3778240.000000","25217776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000",,,,,,,,"224.000000","8710.000000",,,,,,,,,,,"3887.000000","716.000000","559.000000","820.000000","1135.000000","630.000000","1259.000000","0.000000","0.000000","0.000000","557.000000","489.000000","590.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963574.000000",,,,, -"14124.000000","57.310000","14124.000000","57.310000","14124.000000","57.310000",,,,,,,,,,,,,,"48.000000","7765.000000","6725.000000","25.000000","7765.000000","7765.000000",,,,,,,,,,,"6189016.000000","7999140.000000","478884.000000","0.000000","70833580.000000","0.000000","92035680.000000",,"3778240.000000","25239908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000",,,,,,,,"273.000000","8483.000000",,,,,,,,,,,"4018.000000","720.000000","564.000000","826.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","560.000000","483.000000","593.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963594.000000",,,,, -"12669.000000","55.025000","12669.000000","55.025000","12669.000000","55.025000",,,,,,,,,,,,,,"40.000000","6177.000000","5955.000000","4.000000","6177.000000","6177.000000",,,,,,,,,,,"6140188.000000","8208864.000000","478884.000000","0.000000","70826080.000000","0.000000","92035680.000000",,"3778240.000000","25245584.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000",,,,,,,,"143.000000","6215.000000",,,,,,,,,,,"3813.000000","723.000000","570.000000","805.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","561.000000","475.000000","583.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963614.000000",,,,, -"13176.000000","55.815000","13176.000000","55.815000","13176.000000","55.815000",,,,,,,,,,,,,,"99.000000","9337.500000","9126.000000","23.000000","9337.500000","9337.500000",,,,,,,,,,,"6119224.000000","8145960.000000","478884.000000","0.000000","70813256.000000","0.000000","92035688.000000",,"3778240.000000","25258224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000",,,,,,,,"173.000000","9277.000000",,,,,,,,,,,"3855.000000","724.000000","570.000000","794.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","562.000000","471.000000","578.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963634.000000",,,,, -"14110.000000","57.270000","14110.000000","57.270000","14110.000000","57.270000",,,,,,,,,,,,,,"368.000000","14582.000000","13897.000000","10.000000","14582.000000","14582.000000",,,,,,,,,,,"5846600.000000","7873336.000000","478884.000000","0.000000","70806552.000000","0.000000","92035688.000000",,"3778240.000000","25262116.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000",,,,,,,,"570.000000","14328.000000",,,,,,,,,,,"3924.000000","726.000000","566.000000","794.000000","1135.000000","725.000000","1259.000000","0.000000","0.000000","0.000000","563.000000","475.000000","579.000000","725.000000","528.000000","807.000000","160.000000","6000.000000",,"8963654.000000",,,,, -"15180.000000","58.945000","15180.000000","58.945000","15180.000000","58.945000",,,,,,,,,,,,,,"119.000000","14077.000000","13670.000000","12.000000","14077.000000","14077.000000",,,,,,,,,,,"6063200.000000","7726220.000000","478884.000000","0.000000","70790912.000000","0.000000","92035688.000000",,"3778240.000000","25314268.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000",,,,,,,,"298.000000","14066.000000",,,,,,,,,,,"3999.000000","732.000000","618.000000","752.000000","1135.000000","825.000000","1243.000000","0.000000","0.000000","0.000000","566.000000","506.000000","566.000000","725.000000","618.000000","777.000000","160.000000","6000.000000",,"8963674.000000",,,,, -"17514.000000","62.615000","17514.000000","62.615000","17514.000000","62.615000",,,,,,,,,,,,,,"308.000000","10700.500000","10145.000000","25.000000","10700.500000","10700.500000",,,,,,,,,,,"6335832.000000","8292448.000000","478884.000000","0.000000","70822340.000000","0.000000","92036712.000000",,"3778240.000000","25238188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000",,,,,,,,"450.000000","10497.000000",,,,,,,,,,,"3909.000000","734.000000","718.000000","770.000000","1135.000000","1108.000000","1243.000000","0.000000","0.000000","0.000000","567.000000","556.000000","573.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963694.000000",,,,, -"14837.000000","58.445000","14837.000000","58.445000","14837.000000","58.445000",,,,,,,,,,,,,,"238.000000","14732.500000","14303.000000","41.000000","14732.500000","14732.500000",,,,,,,,,,,"6148216.000000","8105116.000000","478884.000000","0.000000","70867608.000000","0.000000","92037840.000000",,"3778240.000000","25232836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000",,,,,,,,"368.000000","14556.000000",,,,,,,,,,,"4171.000000","734.000000","762.000000","759.000000","1135.000000","1108.000000","1216.000000","0.000000","0.000000","0.000000","566.000000","572.000000","569.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963714.000000",,,,, -"14620.000000","58.110000","14620.000000","58.110000","14620.000000","58.110000",,,,,,,,,,,,,,"119.000000","9540.500000","9142.000000","31.000000","9540.500000","9540.500000",,,,,,,,,,,"6454456.000000","8250784.000000","478884.000000","0.000000","70884844.000000","0.000000","92036704.000000",,"3778240.000000","25222252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000",,,,,,,,"293.000000","9526.000000",,,,,,,,,,,"3909.000000","729.000000","731.000000","705.000000","1135.000000","1108.000000","1135.000000","0.000000","0.000000","0.000000","562.000000","556.000000","546.000000","725.000000","705.000000","716.000000","160.000000","6000.000000",,"8963734.000000",,,,, -"13115.000000","55.760000","13115.000000","55.760000","13115.000000","55.760000",,,,,,,,,,,,,,"55.000000","9905.000000","9411.000000","30.000000","9905.000000","9905.000000",,,,,,,,,,,"6397208.000000","8102568.000000","478884.000000","0.000000","70901164.000000","0.000000","92031908.000000",,"3778240.000000","25155008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000",,,,,,,,"556.000000","9788.000000",,,,,,,,,,,"3892.000000","726.000000","635.000000","665.000000","1135.000000","952.000000","952.000000","0.000000","0.000000","0.000000","560.000000","505.000000","526.000000","725.000000","617.000000","668.000000","160.000000","6000.000000",,"8963754.000000",,,,, -"13643.000000","56.595000","13643.000000","56.595000","13643.000000","56.595000",,,,,,,,,,,,,,"117.000000","9112.000000","8777.000000","49.000000","9112.000000","9112.000000",,,,,,,,,,,"5893892.000000","7473424.000000","478884.000000","0.000000","70908124.000000","0.000000","92031908.000000",,"3778240.000000","25155616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000",,,,,,,,"260.000000","9068.000000",,,,,,,,,,,"3843.000000","722.000000","575.000000","629.000000","1135.000000","653.000000","872.000000","0.000000","0.000000","0.000000","556.000000","474.000000","512.000000","725.000000","537.000000","644.000000","160.000000","6000.000000",,"8963774.000000",,,,, -"13715.000000","56.715000","13715.000000","56.715000","13715.000000","56.715000",,,,,,,,,,,,,,"46.000000","7845.000000","7588.000000","177.000000","7845.000000","7845.000000",,,,,,,,,,,"5873064.000000","7410656.000000","478884.000000","0.000000","70935908.000000","0.000000","92032052.000000",,"3778240.000000","25130180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000",,,,,,,,"176.000000","7879.000000",,,,,,,,,,,"3947.000000","722.000000","579.000000","614.000000","1135.000000","692.000000","825.000000","0.000000","0.000000","0.000000","556.000000","474.000000","502.000000","725.000000","520.000000","617.000000","160.000000","6000.000000",,"8963794.000000",,,,, -"14262.000000","57.585000","14262.000000","57.585000","14262.000000","57.585000",,,,,,,,,,,,,,"13654.000000","37151.000000","23496.000000","20.000000","37151.000000","37151.000000",,,,,,,,,,,"6319860.000000","7955020.000000","478884.000000","0.000000","70950068.000000","0.000000","92032056.000000",,"3778240.000000","25117712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000",,,,,,,,"13939.000000",,,,,,,,,,,,"3991.000000","725.000000","598.000000","616.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","557.000000","484.000000","501.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963814.000000",,,,, -"13501.000000","56.390000","13501.000000","56.390000","13501.000000","56.390000",,,,,,,,,,,,,,"1486.000000","20323.000000","17417.000000","13.000000","20323.000000","20323.000000",,,,,,,,,,,"6277896.000000","8185684.000000","478884.000000","0.000000","70940056.000000","0.000000","92032036.000000",,"3778240.000000","25166424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000",,,,,,,,"1897.000000","19846.000000",,,,,,,,,,,"3840.000000","726.000000","616.000000","617.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","558.000000","492.000000","499.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963834.000000",,,,, -"15948.000000","60.215000","15948.000000","60.215000","15948.000000","60.215000",,,,,,,,,,,,,,"921.000000","17901.500000","14732.000000","49.000000","17901.500000","17901.500000",,,,,,,,,,,"6340812.000000","8584140.000000","478884.000000","0.000000","70929596.000000","0.000000","92032036.000000",,"3778240.000000","25139064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000",,,,,,,,"3897.000000","16251.000000",,,,,,,,,,,"3906.000000","732.000000","667.000000","633.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","561.000000","519.000000","506.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963854.000000",,,,, -"14827.000000","58.455000","14827.000000","58.455000","14827.000000","58.455000",,,,,,,,,,,,,,"123.000000","40355.000000","29535.000000","60.000000","40355.000000","40355.000000",,,,,,,,,,,"6725944.000000","9147400.000000","478884.000000","0.000000","70927596.000000","0.000000","92031936.000000",,"3778240.000000","25141984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000",,,,,,,,"20816.000000","30235.000000",,,,,,,,,,,"4002.000000","734.000000","676.000000","639.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","562.000000","528.000000","509.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963874.000000",,,,, -"17543.000000","62.715000","17543.000000","62.715000","17543.000000","62.715000",,,,,,,,,,,,,,"66.000000","44525.000000","39332.000000","44.000000","44525.000000","44525.000000",,,,,,,,,,,"7103436.000000","9336144.000000","478884.000000","0.000000","70933556.000000","0.000000","92031936.000000",,"3778240.000000","25134460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000",,,,,,,,"9775.000000","39875.000000",,,,,,,,,,,"4138.000000","741.000000","746.000000","653.000000","1135.000000","879.000000","877.000000","0.000000","0.000000","0.000000","565.000000","574.000000","518.000000","725.000000","688.000000","621.000000","160.000000","6000.000000",,"8963894.000000",,,,, -"16932.000000","61.760000","16932.000000","61.760000","16932.000000","61.760000",,,,,,,,,,,,,,"121.000000","41506.000000","34277.000000","47.000000","41506.000000","41506.000000",,,,,,,,,,,"7816464.000000","9734600.000000","478884.000000","0.000000","70937756.000000","0.000000","92031936.000000",,"3778240.000000","25113644.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000",,,,,,,,"13748.000000","34865.000000",,,,,,,,,,,"4017.000000","744.000000","738.000000","667.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","567.000000","588.000000","529.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963914.000000",,,,, -"17260.000000","62.270000","17260.000000","62.270000","17260.000000","62.270000",,,,,,,,,,,,,,"5112.000000","34096.000000","27104.000000","15.000000","34096.000000","34096.000000",,,,,,,,,,,"8445160.000000","10768600.000000","478884.000000","0.000000","70930596.000000","0.000000","92031936.000000",,"3778240.000000","25121492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000",,,,,,,,"8814.000000","27160.000000",,,,,,,,,,,"4354.000000","742.000000","763.000000","678.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","565.000000","614.000000","537.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963934.000000",,,,, -"16146.000000","60.525000","16146.000000","60.525000","16146.000000","60.525000",,,,,,,,,,,,,,"1077.000000","13145.500000","11650.000000","11.000000","13145.500000","13145.500000",,,,,,,,,,,"7795040.000000","10097512.000000","478884.000000","0.000000","70928112.000000","0.000000","92031936.000000",,"3778240.000000","25009480.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000",,,,,,,,"1188.000000","12376.000000",,,,,,,,,,,"4030.000000","738.000000","751.000000","690.000000","1125.000000","968.000000","901.000000","0.000000","0.000000","0.000000","563.000000","606.000000","544.000000","723.000000","725.000000","666.000000","160.000000","6000.000000",,"8963954.000000",,,,, -"19704.000000","66.095000","19704.000000","66.095000","19704.000000","66.095000",,,,,,,,,,,,,,"183.000000","13959.000000","13550.000000","24.000000","13959.000000","13959.000000",,,,,,,,,,,"7585324.000000","9887512.000000","478884.000000","0.000000","70925516.000000","0.000000","92031936.000000",,"3778240.000000","25002896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000",,,,,,,,"338.000000","13846.000000",,,,,,,,,,,"4160.000000","735.000000","865.000000","716.000000","1135.000000","1344.000000","963.000000","0.000000","0.000000","0.000000","561.000000","640.000000","556.000000","721.000000","776.000000","696.000000","160.000000","6000.000000",,"8963974.000000",,,,, -"19188.000000","65.280000","19188.000000","65.280000","19188.000000","65.280000",,,,,,,,,,,,,,"243.000000","13792.500000","13334.000000","32.000000","13792.500000","13792.500000",,,,,,,,,,,"7446388.000000","9825624.000000","478884.000000","0.000000","70915720.000000","0.000000","92032060.000000",,"3778240.000000","25011560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000",,,,,,,,"404.000000","13604.000000",,,,,,,,,,,"4178.000000","734.000000","959.000000","726.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","560.000000","663.000000","559.000000","717.000000","776.000000","717.000000","160.000000","6000.000000",,"8963994.000000",,,,, -"18836.000000","64.725000","18836.000000","64.725000","18836.000000","64.725000",,,,,,,,,,,,,,"94.000000","6398.000000","6303.000000","17.000000","6398.000000","6398.000000",,,,,,,,,,,"7656100.000000","9993400.000000","478884.000000","0.000000","70902764.000000","0.000000","92032060.000000",,"3778240.000000","24972208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000",,,,,,,,"199.000000",,,,,,,,,,,,"4105.000000","740.000000","996.000000","737.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","563.000000","687.000000","567.000000","721.000000","776.000000","725.000000","160.000000","6000.000000",,"8964014.000000",,,,, -"22218.000000","70.015000","22218.000000","70.015000","22218.000000","70.015000",,,,,,,,,,,,,,"144.000000","7090.500000","6813.000000","14.000000","7090.500000","7090.500000",,,,,,,,,,,"7781932.000000","10077288.000000","478884.000000","0.000000","70893544.000000","0.000000","92032060.000000",,"3778240.000000","25030524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000",,,,,,,,"240.000000","6983.000000",,,,,,,,,,,"4464.000000","751.000000","1011.000000","772.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","569.000000","725.000000","589.000000","725.000000","867.000000","764.000000","160.000000","6000.000000",,"8964034.000000",,,,, -"20862.000000","67.895000","20862.000000","67.895000","20862.000000","67.895000",,,,,,,,,,,,,,"141.000000","10370.500000","9803.000000","21.000000","10370.500000","10370.500000",,,,,,,,,,,"7838008.000000","9958748.000000","478884.000000","0.000000","70895844.000000","0.000000","92032060.000000",,"3778240.000000","25025008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000",,,,,,,,"636.000000","10159.000000",,,,,,,,,,,"4256.000000","758.000000","1024.000000","804.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","572.000000","742.000000","606.000000","733.000000","867.000000","776.000000","160.000000","6000.000000",,"8964054.000000",,,,, -"21777.000000","69.325000","21777.000000","69.325000","21777.000000","69.325000",,,,,,,,,,,,,,"43.000000","9099.500000","8565.000000","13.000000","9099.500000","9099.500000",,,,,,,,,,,"8089668.000000","10231372.000000","478884.000000","0.000000","70891416.000000","0.000000","92032060.000000",,"3778240.000000","25096832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000",,,,,,,,"212.000000","9378.000000",,,,,,,,,,,"4405.000000","768.000000","1121.000000","846.000000","1203.000000","1473.000000","1216.000000","0.000000","0.000000","0.000000","576.000000","772.000000","626.000000","754.000000","873.000000","790.000000","160.000000","6000.000000",,"8964074.000000",,,,, -"19644.000000","65.985000","19644.000000","65.985000","19644.000000","65.985000",,,,,,,,,,,,,,"52.000000","8491.000000","7533.000000","16.000000","8491.000000","8491.000000",,,,,,,,,,,"8120428.000000","10419992.000000","478884.000000","0.000000","70892932.000000","0.000000","92031940.000000",,"3778240.000000","25209924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000",,,,,,,,"265.000000","9131.000000",,,,,,,,,,,"4217.000000","781.000000","1184.000000","893.000000","1216.000000","1569.000000","1301.000000","0.000000","0.000000","0.000000","581.000000","750.000000","645.000000","764.000000","873.000000","790.000000","160.000000","6000.000000",,"8964094.000000",,,,, -"20739.000000","67.695000","20739.000000","67.695000","20739.000000","67.695000",,,,,,,,,,,,,,"115.000000","10309.500000","9713.000000","18.000000","10309.500000","10309.500000",,,,,,,,,,,"7952664.000000","10126400.000000","478884.000000","0.000000","70886184.000000","0.000000","92031948.000000",,"3778240.000000","25213944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000",,,,,,,,"229.000000","10561.000000",,,,,,,,,,,"4169.000000","794.000000","1285.000000","941.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","585.000000","757.000000","661.000000","776.000000","873.000000","806.000000","160.000000","6000.000000",,"8964114.000000",,,,, -"20059.000000","66.630000","20059.000000","66.630000","20059.000000","66.630000",,,,,,,,,,,,,,"261.000000","5702.000000","5267.000000","54.000000","5702.000000","5702.000000",,,,,,,,,,,"8021972.000000","10279592.000000","478884.000000","0.000000","70883292.000000","0.000000","92031948.000000",,"3778240.000000","25194920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000",,,,,,,,"347.000000","5528.000000",,,,,,,,,,,"4395.000000","799.000000","1183.000000","960.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","588.000000","739.000000","676.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964134.000000",,,,, -"18410.000000","64.040000","18410.000000","64.040000","18410.000000","64.040000",,,,,,,,,,,,,,"90.000000","4670.000000","4434.000000","13.000000","4670.000000","4670.000000",,,,,,,,,,,"8063916.000000","10237648.000000","478884.000000","0.000000","70866136.000000","0.000000","92031948.000000",,"3778240.000000","25120348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000",,,,,,,,"167.000000","4648.000000",,,,,,,,,,,"4008.000000","804.000000","1046.000000","965.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","590.000000","710.000000","682.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964154.000000",,,,, -"21531.000000","68.925000","21531.000000","68.925000","21531.000000","68.925000",,,,,,,,,,,,,,"90.000000","10544.000000","10264.000000","58.000000","10544.000000","10544.000000",,,,,,,,,,,"7980168.000000","9797384.000000","478880.000000","0.000000","70859644.000000","0.000000","92032092.000000",,"3778240.000000","25129472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000",,,,,,,,"221.000000","10512.000000",,,,,,,,,,,"4563.000000","818.000000","940.000000","994.000000","1243.000000","1149.000000","1344.000000","0.000000","0.000000","0.000000","600.000000","727.000000","701.000000","780.000000","897.000000","829.000000","160.000000","6000.000000",,"8964174.000000",,,,, -"20467.000000","67.250000","20467.000000","67.250000","20467.000000","67.250000",,,,,,,,,,,,,,"80.000000","8175.000000","7963.000000","21.000000","8175.000000","8175.000000",,,,,,,,,,,"8154780.000000","10048588.000000","478876.000000","0.000000","70844920.000000","0.000000","92032096.000000",,"3778240.000000","25209396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000",,,,,,,,"169.000000","8137.000000",,,,,,,,,,,"4307.000000","830.000000","1011.000000","1013.000000","1243.000000","1183.000000","1344.000000","0.000000","0.000000","0.000000","606.000000","736.000000","708.000000","790.000000","897.000000","840.000000","160.000000","6000.000000",,"8964194.000000",,,,, -"19949.000000","66.435000","19949.000000","66.435000","19949.000000","66.435000",,,,,,,,,,,,,,"62.000000","8879.000000","8616.000000","50.000000","8879.000000","8879.000000",,,,,,,,,,,"8354584.000000","10069564.000000","478872.000000","0.000000","70833168.000000","0.000000","92032100.000000",,"3778240.000000","25096136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000",,,,,,,,"173.000000","8906.000000",,,,,,,,,,,"4254.000000","840.000000","1127.000000","1048.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","610.000000","752.000000","717.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964214.000000",,,,, -"19000.000000","64.940000","19000.000000","64.940000","19000.000000","64.940000",,,,,,,,,,,,,,"241.000000","6321.000000","5988.000000","17.000000","6321.000000","6321.000000",,,,,,,,,,,"7914032.000000","9608040.000000","478872.000000","0.000000","70822068.000000","0.000000","92031948.000000",,"3778240.000000","25106076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000",,,,,,,,"321.000000","6092.000000",,,,,,,,,,,"4500.000000","844.000000","1088.000000","1059.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","613.000000","720.000000","722.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964234.000000",,,,, -"21752.000000","69.245000","21752.000000","69.245000","21752.000000","69.245000",,,,,,,,,,,,,,"389.000000","8987.000000","8411.000000","18.000000","8987.000000","8987.000000",,,,,,,,,,,"7858408.000000","9322184.000000","478872.000000","0.000000","70808924.000000","0.000000","92031948.000000",,"3778240.000000","25257144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000",,,,,,,,"461.000000","8712.000000",,,,,,,,,,,"4439.000000","859.000000","1154.000000","1093.000000","1301.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","619.000000","736.000000","734.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964254.000000",,,,, -"22130.000000","69.860000","22130.000000","69.860000","22130.000000","69.860000",,,,,,,,,,,,,,"158.000000","8859.500000","8578.000000","12.000000","8859.500000","8859.500000",,,,,,,,,,,"7648828.000000","9122516.000000","478872.000000","0.000000","70853280.000000","0.000000","92032084.000000",,"3778240.000000","25172468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000",,,,,,,,"276.000000","8707.000000",,,,,,,,,,,"4485.000000","855.000000","1199.000000","1108.000000","1259.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","620.000000","774.000000","742.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964274.000000",,,,, -"21468.000000","68.840000","21468.000000","68.840000","21468.000000","68.840000",,,,,,,,,,,,,,"152.000000","8904.000000","8624.000000","11.000000","8904.000000","8904.000000",,,,,,,,,,,"7921452.000000","9520972.000000","478868.000000","0.000000","70888072.000000","0.000000","92032088.000000",,"3778240.000000","25150448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000",,,,,,,,"253.000000","8778.000000",,,,,,,,,,,"4365.000000","884.000000","1437.000000","1155.000000","1333.000000","2103.000000","1569.000000","0.000000","0.000000","0.000000","627.000000","794.000000","748.000000","816.000000","876.000000","867.000000","160.000000","6000.000000",,"8964294.000000",,,,, -"21192.000000","68.420000","21192.000000","68.420000","21192.000000","68.420000",,,,,,,,,,,,,,"77.000000","8814.500000","8525.000000","21.000000","8814.500000","8814.500000",,,,,,,,,,,"8131168.000000","9646800.000000","478868.000000","0.000000","70913076.000000","0.000000","92032088.000000",,"3778240.000000","25131212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000",,,,,,,,"219.000000","8807.000000",,,,,,,,,,,"4506.000000","898.000000","1522.000000","1198.000000","1343.000000","2103.000000","1720.000000","0.000000","0.000000","0.000000","630.000000","789.000000","754.000000","817.000000","877.000000","873.000000","160.000000","6000.000000",,"8964314.000000",,,,, -"20942.000000","68.030000","20942.000000","68.030000","20942.000000","68.030000",,,,,,,,,,,,,,"166.000000","7981.000000","7624.000000","17.000000","7981.000000","7981.000000",,,,,,,,,,,"7801768.000000","9339076.000000","478868.000000","0.000000","70910056.000000","0.000000","92032088.000000",,"3778240.000000","25137272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000",,,,,,,,"218.000000","7954.000000",,,,,,,,,,,"4288.000000","908.000000","1713.000000","1246.000000","1410.000000","2103.000000","1971.000000","0.000000","0.000000","0.000000","629.000000","770.000000","751.000000","815.000000","877.000000","873.000000","160.000000","6000.000000",,"8964334.000000",,,,, -"18637.000000","64.405000","18637.000000","64.405000","18637.000000","64.405000",,,,,,,,,,,,,,"57.000000","9389.500000","8234.000000","67.000000","9389.500000","9389.500000",,,,,,,,,,,"7675964.000000","9213268.000000","478868.000000","0.000000","70879884.000000","0.000000","92032108.000000",,"3778240.000000","25145844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000",,,,,,,,"279.000000","10209.000000",,,,,,,,,,,"4161.000000","910.000000","1551.000000","1260.000000","1418.000000","2076.000000","1971.000000","0.000000","0.000000","0.000000","626.000000","732.000000","746.000000","806.000000","877.000000","873.000000","160.000000","6000.000000",,"8964354.000000",,,,, -"20313.000000","67.030000","20313.000000","67.030000","20313.000000","67.030000",,,,,,,,,,,,,,"123.000000","10104.000000","9114.000000","15.000000","10104.000000","10104.000000",,,,,,,,,,,"7990532.000000","9569780.000000","478868.000000","0.000000","70882516.000000","0.000000","92032108.000000",,"3778240.000000","25124596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000",,,,,,,,"652.000000","10318.000000",,,,,,,,,,,"4299.000000","912.000000","1433.000000","1261.000000","1434.000000","2013.000000","1971.000000","0.000000","0.000000","0.000000","627.000000","716.000000","743.000000","806.000000","793.000000","864.000000","160.000000","6000.000000",,"8964374.000000",,,,, -"21050.000000","68.190000","21050.000000","68.190000","21050.000000","68.190000",,,,,,,,,,,,,,"57.000000","8725.000000","8437.000000","34.000000","8725.000000","8725.000000",,,,,,,,,,,"8019488.000000","9857972.000000","478868.000000","0.000000","70889300.000000","0.000000","92032108.000000",,"3778240.000000","25188756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000",,,,,,,,"169.000000","8785.000000",,,,,,,,,,,"4361.000000","921.000000","1296.000000","1263.000000","1458.000000","1823.000000","1971.000000","0.000000","6.000000","0.000000","629.000000","721.000000","743.000000","806.000000","795.000000","864.000000","160.000000","6000.000000",,"8964394.000000",,,,, -"20051.000000","66.605000","20051.000000","66.605000","20051.000000","66.605000",,,,,,,,,,,,,,"313.000000","11101.500000","10773.000000","33.000000","11101.500000","11101.500000",,,,,,,,,,,"8355028.000000","9825936.000000","478868.000000","0.000000","70860328.000000","0.000000","92032108.000000",,"3778240.000000","25201640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000",,,,,,,,"364.000000","10752.000000",,,,,,,,,,,"4205.000000","943.000000","1340.000000","1271.000000","1474.000000","1613.000000","1971.000000","0.000000","6.000000","0.000000","634.000000","734.000000","741.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964414.000000",,,,, -"20459.000000","67.240000","20459.000000","67.240000","20459.000000","67.240000",,,,,,,,,,,,,,"77.000000","10129.000000","9866.000000","29.000000","10129.000000","10129.000000",,,,,,,,,,,"8480856.000000","9909828.000000","478868.000000","0.000000","70854752.000000","0.000000","92032108.000000",,"3778240.000000","25112980.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000",,,,,,,,"195.000000","10118.000000",,,,,,,,,,,"4338.000000","960.000000","1396.000000","1303.000000","1485.000000","1817.000000","1971.000000","0.000000","6.000000","0.000000","640.000000","743.000000","744.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964434.000000",,,,, -"19677.000000","66.020000","19677.000000","66.020000","19677.000000","66.020000",,,,,,,,,,,,,,"129.000000","7633.500000","7320.000000","25.000000","7633.500000","7633.500000",,,,,,,,,,,"8767452.000000","10126384.000000","478868.000000","0.000000","70860344.000000","0.000000","92032108.000000",,"3778240.000000","25069888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000",,,,,,,,"244.000000","7573.000000",,,,,,,,,,,"4221.000000","970.000000","1318.000000","1318.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","643.000000","725.000000","746.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964454.000000",,,,, -"22365.000000","70.230000","22365.000000","70.230000","22365.000000","70.230000",,,,,,,,,,,,,,"117.000000","9774.500000","9438.000000","12.000000","9774.500000","9774.500000",,,,,,,,,,,"9018908.000000","10524640.000000","478864.000000","0.000000","70848632.000000","0.000000","92031908.000000",,"3778240.000000","25080800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000",,,,,,,,"260.000000","9733.000000",,,,,,,,,,,"4517.000000","988.000000","1245.000000","1332.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","653.000000","761.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964474.000000",,,,, -"19796.000000","66.210000","19796.000000","66.210000","19796.000000","66.210000",,,,,,,,,,,,,,"66.000000","9739.500000","8481.000000","36.000000","9739.500000","9739.500000",,,,,,,,,,,"8955972.000000","10335872.000000","478860.000000","0.000000","70857604.000000","0.000000","92031888.000000",,"3778240.000000","25146856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000",,,,,,,,"302.000000","10630.000000",,,,,,,,,,,"4469.000000","1002.000000","1204.000000","1342.000000","1485.000000","1411.000000","1971.000000","0.000000","0.000000","0.000000","658.000000","757.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964494.000000",,,,, -"20903.000000","67.945000","20903.000000","67.945000","20903.000000","67.945000",,,,,,,,,,,,,,"127.000000","8302.000000","8174.000000","35.000000","8302.000000","8302.000000",,,,,,,,,,,"9270292.000000","10660380.000000","478856.000000","0.000000","70876908.000000","0.000000","92031916.000000",,"3778240.000000","25156168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000",,,,,,,,"333.000000",,,,,,,,,,,,"4319.000000","1019.000000","1219.000000","1343.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","665.000000","764.000000","750.000000","819.000000","848.000000","844.000000","160.000000","6000.000000",,"8964514.000000",,,,, -"19932.000000","66.420000","19932.000000","66.420000","19932.000000","66.420000",,,,,,,,,,,,,,"130.000000","7484.000000","7096.000000","22.000000","7484.000000","7484.000000",,,,,,,,,,,"9123604.000000","10904408.000000","478856.000000","0.000000","70862832.000000","0.000000","92032028.000000",,"3778240.000000","25169640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000",,,,,,,,"248.000000","7493.000000",,,,,,,,,,,"4278.000000","1030.000000","1199.000000","1354.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","670.000000","730.000000","750.000000","819.000000","844.000000","844.000000","160.000000","6000.000000",,"8964534.000000",,,,, -"22066.000000","69.760000","22066.000000","69.760000","22066.000000","69.760000",,,,,,,,,,,,,,"453.000000","10033.000000","9377.000000","15.000000","10033.000000","10033.000000",,,,,,,,,,,"9312344.000000","11051204.000000","478856.000000","0.000000","70851192.000000","0.000000","92032028.000000",,"3778240.000000","25177256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000",,,,,,,,"572.000000","9663.000000",,,,,,,,,,,"4662.000000","1044.000000","1189.000000","1349.000000","1549.000000","1620.000000","1971.000000","0.000000","0.000000","0.000000","676.000000","751.000000","751.000000","820.000000","930.000000","838.000000","160.000000","6000.000000",,"8964554.000000",,,,, -"22543.000000","70.500000","22543.000000","70.500000","22543.000000","70.500000",,,,,,,,,,,,,,"122.000000","8789.000000","8680.000000","49.000000","8789.000000","8789.000000",,,,,,,,,,,"9459144.000000","11104208.000000","478852.000000","0.000000","70841592.000000","0.000000","92032032.000000",,"3778240.000000","25179692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000",,,,,,,,"155.000000","8621.000000",,,,,,,,,,,"4537.000000","1066.000000","1373.000000","1391.000000","1554.000000","2227.000000","2023.000000","0.000000","0.000000","0.000000","680.000000","763.000000","752.000000","829.000000","930.000000","844.000000","160.000000","6000.000000",,"8964574.000000",,,,, -"23159.000000","71.470000","23159.000000","71.470000","23159.000000","71.470000",,,,,,,,,,,,,,"113.000000","9016.000000","8681.000000","32.000000","9016.000000","9016.000000",,,,,,,,,,,"9633748.000000","11167116.000000","478844.000000","0.000000","70849524.000000","0.000000","92032032.000000",,"3778240.000000","25174856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000",,,,,,,,"241.000000","8996.000000",,,,,,,,,,,"4491.000000","1092.000000","1646.000000","1396.000000","1620.000000","2227.000000","2013.000000","0.000000","0.000000","0.000000","688.000000","830.000000","758.000000","844.000000","932.000000","877.000000","160.000000","6000.000000",,"8964594.000000",,,,, -"21085.000000","68.230000","21085.000000","68.230000","21085.000000","68.230000",,,,,,,,,,,,,,"698.000000","9397.000000","8698.000000","115.000000","9397.000000","9397.000000",,,,,,,,,,,"9696664.000000","11188092.000000","478844.000000","0.000000","70870196.000000","0.000000","92032032.000000",,"3778240.000000","25168848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000",,,,,,,,"1357.000000",,,,,,,,,,,,"4520.000000","1111.000000","1761.000000","1397.000000","1720.000000","2227.000000","1971.000000","0.000000","0.000000","0.000000","693.000000","824.000000","758.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964614.000000",,,,, -"19118.000000","65.180000","19118.000000","65.180000","19118.000000","65.180000",,,,,,,,,,,,,,"568.000000","73948.000000","11791.000000","98.000000","73948.000000","73948.000000",,,,,,,,,,,"9738656.000000","11796032.000000","478844.000000","0.000000","70936452.000000","0.000000","92032084.000000",,"3778240.000000","25054504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000",,,,,,,,"4279.000000","131256.000000",,,,,,,,,,,"4160.000000","1125.000000","1469.000000","1356.000000","1720.000000","2039.000000","1923.000000","0.000000","0.000000","0.000000","698.000000","761.000000","752.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964634.000000",,,,, -"20650.000000","67.655000","20650.000000","67.655000","20650.000000","67.655000",,,,,,,,,,,,,,"524.000000","28227.000000","27702.000000","114.000000","28227.000000","28227.000000",,,,,,,,,,,"9466480.000000","11607744.000000","478844.000000","0.000000","71087800.000000","0.000000","92032084.000000",,"3778240.000000","24956988.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000",,,,,,,,"6370.000000",,,,,,,,,,,,"4477.000000","1136.000000","1287.000000","1343.000000","1720.000000","1923.000000","1923.000000","0.000000","0.000000","0.000000","703.000000","729.000000","757.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964654.000000",,,,, -"17769.000000","61.215000","17769.000000","61.215000","17769.000000","61.215000",,,,,,,,,,,,,,"306.000000","56962.500000","30038.000000","75.000000","56962.500000","56962.500000",,,,,,,,,,,"7243500.000000","9426704.000000","478844.000000","0.000000","67206604.000000","0.000000","87856740.000000",,"3623976.000000","24587332.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000",,,,,,,,"6320.000000","77260.000000",,,,,,,,,,,"4097.000000","1141.000000","1032.000000","1316.000000","1720.000000","1228.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","676.000000","750.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964674.000000",,,,, -"17412.000000","60.710000","17412.000000","60.710000","17412.000000","60.710000",,,,,,,,,,,,,,"43.000000","34630.500000","31058.000000","241.000000","34630.500000","34630.500000",,,,,,,,,,,"9130940.000000","11020540.000000","478844.000000","0.000000","67313532.000000","0.000000","87856740.000000",,"3623976.000000","24420768.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000",,,,,,,,"5671.000000","32488.000000",,,,,,,,,,,"4240.000000","1143.000000","907.000000","1280.000000","1720.000000","1160.000000","1923.000000","0.000000","0.000000","0.000000","709.000000","666.000000","742.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964694.000000",,,,, -"17492.000000","60.880000","17492.000000","60.880000","17492.000000","60.880000",,,,,,,,,,,,,,"49.000000","35413.500000","31294.000000","156.000000","35413.500000","35413.500000",,,,,,,,,,,"9101004.000000","10940512.000000","478844.000000","0.000000","67397008.000000","0.000000","87824020.000000",,"3623976.000000","24337056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000",,,,,,,,"7359.000000","32124.000000",,,,,,,,,,,"4298.000000","1146.000000","748.000000","1225.000000","1720.000000","885.000000","1923.000000","0.000000","0.000000","0.000000","712.000000","624.000000","735.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964714.000000",,,,, -"15765.000000","58.170000","15765.000000","58.170000","15765.000000","58.170000",,,,,,,,,,,,,,"45.000000","37097.000000","37051.000000","76.000000","37097.000000","37097.000000",,,,,,,,,,,"9381348.000000","11260768.000000","478844.000000","0.000000","67390668.000000","0.000000","87773120.000000",,"3623976.000000","24288384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000",,,,,,,,,,,,,,,,,,,,"4280.000000","1146.000000","695.000000","1176.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","607.000000","723.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964734.000000",,,,, -"16328.000000","59.055000","16328.000000","59.055000","16328.000000","59.055000",,,,,,,,,,,,,,"42.000000","30677.500000","23599.000000","39.000000","30677.500000","30677.500000",,,,,,,,,,,"10304092.000000","12048064.000000","478844.000000","0.000000","67399392.000000","0.000000","87773120.000000",,"3623976.000000","24296164.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000",,,,,,,,"13462.000000","24250.000000",,,,,,,,,,,"4406.000000","1145.000000","676.000000","1151.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","716.000000","610.000000","719.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964754.000000",,,,, -"13490.000000","54.630000","13490.000000","54.630000","13490.000000","54.630000",,,,,,,,,,,,,,"52.000000","31231.000000","28061.000000","22.000000","31231.000000","31231.000000",,,,,,,,,,,"10241176.000000","11775432.000000","478840.000000","0.000000","67436152.000000","0.000000","87773124.000000",,"3623976.000000","24261260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000",,,,,,,,"5631.000000","28717.000000",,,,,,,,,,,"3994.000000","1142.000000","622.000000","1101.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","553.000000","693.000000","845.000000","652.000000","887.000000","160.000000","6000.000000",,"8964774.000000",,,,, -"13003.000000","53.855000","13003.000000","53.855000","13003.000000","53.855000",,,,,,,,,,,,,,"37.000000","7612.500000","7456.000000","17.000000","7612.500000","7612.500000",,,,,,,,,,,"9802376.000000","11588052.000000","478840.000000","0.000000","67418396.000000","0.000000","87767220.000000",,"3623976.000000","24295180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000",,,,,,,,"122.000000","7610.000000",,,,,,,,,,,"4038.000000","1136.000000","592.000000","1054.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","711.000000","521.000000","676.000000","845.000000","633.000000","887.000000","160.000000","6000.000000",,"8964794.000000",,,,, -"14951.000000","56.915000","14951.000000","56.915000","14951.000000","56.915000",,,,,,,,,,,,,,"118.000000","5147.500000","4942.000000","16.000000","5147.500000","5147.500000",,,,,,,,,,,"10347632.000000","12100984.000000","478840.000000","0.000000","67428312.000000","0.000000","87767216.000000",,"3623976.000000","24263912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000",,,,,,,,"162.000000","5072.000000",,,,,,,,,,,"4029.000000","1135.000000","582.000000","1017.000000","1720.000000","763.000000","1923.000000","0.000000","0.000000","0.000000","710.000000","490.000000","662.000000","845.000000","578.000000","887.000000","160.000000","6000.000000",,"8964814.000000",,,,, -"15562.000000","57.855000","15562.000000","57.855000","15562.000000","57.855000",,,,,,,,,,,,,,"52.000000","7253.000000","7123.000000","13.000000","7253.000000","7253.000000",,,,,,,,,,,"10364188.000000","12116796.000000","478840.000000","0.000000","67399400.000000","0.000000","87748424.000000",,"3623976.000000","24275880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000",,,,,,,,"152.000000","7179.000000",,,,,,,,,,,"4157.000000","1133.000000","618.000000","984.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","514.000000","650.000000","845.000000","614.000000","887.000000","160.000000","6000.000000",,"8964834.000000",,,,, -"14436.000000","56.090000","14436.000000","56.090000","14436.000000","56.090000",,,,,,,,,,,,,,"439.000000","15222.500000","14492.000000","45.000000","15222.500000","15222.500000",,,,,,,,,,,"10131436.000000","11800156.000000","478840.000000","0.000000","67396496.000000","0.000000","87748424.000000",,"3623976.000000","24302552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000",,,,,,,,"586.000000","14927.000000",,,,,,,,,,,"4018.000000","1129.000000","649.000000","946.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","705.000000","526.000000","631.000000","845.000000","614.000000","845.000000","160.000000","6000.000000",,"8964854.000000",,,,, -"18777.000000","62.895000","18777.000000","62.895000","18777.000000","62.895000",,,,,,,,,,,,,,"494.000000","10767.500000","9618.000000","31.000000","10767.500000","10767.500000",,,,,,,,,,,"10466980.000000","11832196.000000","478840.000000","0.000000","67407620.000000","0.000000","87748424.000000",,"3623976.000000","24306748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000",,,,,,,,"698.000000","10723.000000",,,,,,,,,,,"4155.000000","1130.000000","749.000000","892.000000","1720.000000","1123.000000","1684.000000","0.000000","0.000000","0.000000","706.000000","578.000000","625.000000","845.000000","720.000000","793.000000","160.000000","6000.000000",,"8964874.000000",,,,, -"20174.000000","65.090000","20174.000000","65.090000","20174.000000","65.090000",,,,,,,,,,,,,,"1631.000000","31377.000000","28593.000000","46.000000","31377.000000","31377.000000",,,,,,,,,,,"10634892.000000","11874276.000000","478840.000000","0.000000","67418980.000000","0.000000","87748564.000000",,"3623976.000000","24295560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000",,,,,,,,"1993.000000","30537.000000",,,,,,,,,,,"4378.000000","1134.000000","978.000000","851.000000","1725.000000","1725.000000","1329.000000","0.000000","0.000000","0.000000","706.000000","643.000000","613.000000","845.000000","793.000000","782.000000","160.000000","6000.000000",,"8964894.000000",,,,, -"23433.000000","70.190000","23433.000000","70.190000","23433.000000","70.190000",,,,,,,,,,,,,,"81.000000","13906.500000","13331.000000","36.000000","13906.500000","13906.500000",,,,,,,,,,,"10491788.000000","11563400.000000","478840.000000","0.000000","67409532.000000","0.000000","87748564.000000",,"3623976.000000","24275560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000",,,,,,,,"269.000000","14131.000000",,,,,,,,,,,"4498.000000","1146.000000","1252.000000","844.000000","1725.000000","1725.000000","1421.000000","0.000000","0.000000","0.000000","708.000000","727.000000","612.000000","848.000000","861.000000","781.000000","160.000000","6000.000000",,"8964914.000000",,,,, -"22995.000000","69.505000","22995.000000","69.505000","22995.000000","69.505000",,,,,,,,,,,,,,"144.000000","11218.500000","10950.000000","41.000000","11218.500000","11218.500000",,,,,,,,,,,"10596648.000000","12055652.000000","478840.000000","0.000000","67411316.000000","0.000000","87748564.000000",,"3623976.000000","24277072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000",,,,,,,,"251.000000","11092.000000",,,,,,,,,,,"4808.000000","1153.000000","1398.000000","862.000000","1725.000000","1725.000000","1462.000000","0.000000","0.000000","0.000000","710.000000","800.000000","629.000000","854.000000","1011.000000","793.000000","160.000000","6000.000000",,"8964934.000000",,,,, -"22729.000000","69.080000","22729.000000","69.080000","22729.000000","69.080000",,,,,,,,,,,,,,"54.000000","12000.000000","11462.000000","23.000000","12000.000000","12000.000000",,,,,,,,,,,"10554548.000000","12076468.000000","478840.000000","0.000000","67402148.000000","0.000000","87748408.000000",,"3623976.000000","24286996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000",,,,,,,,"561.000000","11923.000000",,,,,,,,,,,"4521.000000","1166.000000","1505.000000","894.000000","1725.000000","1612.000000","1539.000000","0.000000","0.000000","0.000000","712.000000","829.000000","633.000000","861.000000","1011.000000","842.000000","160.000000","6000.000000",,"8964954.000000",,,,, -"22134.000000","68.145000","22134.000000","68.145000","22134.000000","68.145000",,,,,,,,,,,,,,"44.000000","9592.500000","9349.000000","16.000000","9592.500000","9592.500000",,,,,,,,,,,"10601900.000000","12305536.000000","478840.000000","0.000000","67393644.000000","0.000000","87744176.000000",,"3623976.000000","24297204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000",,,,,,,,"176.000000","9615.000000",,,,,,,,,,,"4423.000000","1172.000000","1501.000000","938.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","836.000000","644.000000","854.000000","1011.000000","852.000000","160.000000","6000.000000",,"8964974.000000",,,,, -"22793.000000","69.190000","22793.000000","69.190000","22793.000000","69.190000",,,,,,,,,,,,,,"117.000000","11742.500000","11529.000000","25.000000","11742.500000","11742.500000",,,,,,,,,,,"10307292.000000","12062776.000000","478840.000000","0.000000","67411228.000000","0.000000","87744316.000000",,"3623976.000000","24286000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000",,,,,,,,"222.000000","11616.000000",,,,,,,,,,,"4459.000000","1170.000000","1428.000000","966.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","795.000000","654.000000","861.000000","896.000000","861.000000","160.000000","6000.000000",,"8964994.000000",,,,, -"21547.000000","67.230000","21547.000000","67.230000","21547.000000","67.230000",,,,,,,,,,,,,,"156.000000","15739.500000","15346.000000","32.000000","15739.500000","15739.500000",,,,,,,,,,,"10244376.000000","12209576.000000","478840.000000","0.000000","67395176.000000","0.000000","87744316.000000",,"3623976.000000","24298520.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000",,,,,,,,"347.000000","15630.000000",,,,,,,,,,,"4706.000000","1165.000000","1263.000000","997.000000","1720.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","808.000000","670.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965014.000000",,,,, -"19386.000000","63.845000","19386.000000","63.845000","19386.000000","63.845000",,,,,,,,,,,,,,"2291.000000","12822.000000","10530.000000","10.000000","12822.000000","12822.000000",,,,,,,,,,,"8502588.000000","10515444.000000","478840.000000","0.000000","67399884.000000","0.000000","87745056.000000",,"3623976.000000","24296168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000",,,,,,,,"2307.000000",,,,,,,,,,,,"4290.000000","1166.000000","1107.000000","1020.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","779.000000","678.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965034.000000",,,,, -"20361.000000","65.380000","20361.000000","65.380000","20361.000000","65.380000",,,,,,,,,,,,,,"3888.000000","21597.000000","17326.000000","12.000000","21597.000000","21597.000000",,,,,,,,,,,"8417964.000000","10735480.000000","478840.000000","0.000000","67406404.000000","0.000000","87744316.000000",,"3623976.000000","24313248.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000",,,,,,,,"4286.000000","17693.000000",,,,,,,,,,,"4463.000000","1170.000000","1050.000000","1041.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","717.000000","760.000000","685.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965054.000000",,,,, -"18921.000000","63.110000","18921.000000","63.110000","18921.000000","63.110000",,,,,,,,,,,,,,"140.000000","22579.500000","22135.000000","27.000000","22579.500000","22579.500000",,,,,,,,,,,"8277608.000000","10484556.000000","478840.000000","0.000000","67394392.000000","0.000000","87745048.000000",,"3623976.000000","24325688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000",,,,,,,,"357.000000","22525.000000",,,,,,,,,,,"4327.000000","1165.000000","948.000000","1063.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","715.000000","702.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965074.000000",,,,, -"17829.000000","61.400000","17829.000000","61.400000","17829.000000","61.400000",,,,,,,,,,,,,,"66.000000","9963.000000","9682.000000","16.000000","9963.000000","9963.000000",,,,,,,,,,,"8844996.000000","10912760.000000","478840.000000","0.000000","67389520.000000","0.000000","87744316.000000",,"3623976.000000","24263572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000",,,,,,,,"208.000000","9969.000000",,,,,,,,,,,"4100.000000","1164.000000","977.000000","1097.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","695.000000","713.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965094.000000",,,,, -"19716.000000","64.355000","19716.000000","64.355000","19716.000000","64.355000",,,,,,,,,,,,,,"53.000000","11291.000000","10996.000000","32.000000","11291.000000","11291.000000",,,,,,,,,,,"8804016.000000","10473328.000000","478840.000000","0.000000","67381248.000000","0.000000","87744132.000000",,"3623976.000000","24313468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000",,,,,,,,"192.000000","11340.000000",,,,,,,,,,,"4287.000000","1163.000000","962.000000","1117.000000","1720.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","688.000000","724.000000","854.000000","839.000000","874.000000","160.000000","6000.000000",,"8965114.000000",,,,, -"19884.000000","64.610000","19884.000000","64.610000","19884.000000","64.610000",,,,,,,,,,,,,,"76.000000","12530.500000","11835.000000","12.000000","12530.500000","12530.500000",,,,,,,,,,,"8846148.000000","10725164.000000","478840.000000","0.000000","67364968.000000","0.000000","87744316.000000",,"3623976.000000","24327372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000",,,,,,,,"296.000000","12853.000000",,,,,,,,,,,"4321.000000","1161.000000","1025.000000","1144.000000","1704.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","686.000000","736.000000","852.000000","839.000000","874.000000","160.000000","6000.000000",,"8965134.000000",,,,, -"18343.000000","62.190000","18343.000000","62.190000","18343.000000","62.190000",,,,,,,,,,,,,,"393.000000","12405.000000","10930.000000","16.000000","12405.000000","12405.000000",,,,,,,,,,,"8821356.000000","10509732.000000","478840.000000","0.000000","67358224.000000","0.000000","87744316.000000",,"3623976.000000","24343916.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000",,,,,,,,"621.000000","12864.000000",,,,,,,,,,,"4289.000000","1152.000000","974.000000","1162.000000","1704.000000","1181.000000","1602.000000","0.000000","0.000000","0.000000","710.000000","700.000000","748.000000","845.000000","839.000000","874.000000","160.000000","6000.000000",,"8965154.000000",,,,, -"21580.000000","67.270000","21580.000000","67.270000","21580.000000","67.270000",,,,,,,,,,,,,,"54.000000","15714.000000","15232.000000","25.000000","15714.000000","15714.000000",,,,,,,,,,,"8674556.000000","10288956.000000","478840.000000","0.000000","67371276.000000","0.000000","87744316.000000",,"3623976.000000","24331708.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000",,,,,,,,"249.000000","15892.000000",,,,,,,,,,,"4329.000000","1156.000000","1091.000000","1186.000000","1704.000000","1645.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","705.000000","750.000000","845.000000","845.000000","874.000000","160.000000","6000.000000",,"8965174.000000",,,,, -"22989.000000","69.475000","22989.000000","69.475000","22989.000000","69.475000",,,,,,,,,,,,,,"72.000000","14572.500000","14316.000000","58.000000","14572.500000","14572.500000",,,,,,,,,,,"8422764.000000","9869396.000000","478840.000000","0.000000","67365784.000000","0.000000","87744184.000000",,"3623976.000000","24334948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000",,,,,,,,"218.000000","14537.000000",,,,,,,,,,,"4660.000000","1149.000000","1256.000000","1200.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","711.000000","769.000000","762.000000","861.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965194.000000",,,,, -"20178.000000","65.075000","20178.000000","65.075000","20178.000000","65.075000",,,,,,,,,,,,,,"56.000000","9925.000000","9680.000000","47.000000","9925.000000","9925.000000",,,,,,,,,,,"8632480.000000","9995220.000000","478840.000000","0.000000","67376492.000000","0.000000","87744184.000000",,"3623976.000000","24310516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000",,,,,,,,"191.000000","9921.000000",,,,,,,,,,,"4349.000000","1139.000000","1330.000000","1178.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","779.000000","758.000000","852.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965214.000000",,,,, -"22779.000000","69.145000","22779.000000","69.145000","22779.000000","69.145000",,,,,,,,,,,,,,"1318.000000","13088.000000","11585.000000","36.000000","13088.000000","13088.000000",,,,,,,,,,,"8678240.000000","10226676.000000","478840.000000","0.000000","67364876.000000","0.000000","87744184.000000",,"3623976.000000","24331416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000",,,,,,,,"1426.000000","11845.000000",,,,,,,,,,,"4427.000000","1137.000000","1425.000000","1191.000000","1684.000000","1970.000000","1686.000000","0.000000","0.000000","0.000000","711.000000","805.000000","751.000000","852.000000","1015.000000","884.000000","160.000000","6000.000000",,"8965234.000000",,,,, -"23124.000000","69.675000","23124.000000","69.675000","23124.000000","69.675000",,,,,,,,,,,,,,"9409.000000","23507.500000","13633.000000","9.000000","23507.500000","23507.500000",,,,,,,,,,,"8741152.000000","10289592.000000","478840.000000","0.000000","67347184.000000","0.000000","87744184.000000",,"3623976.000000","24345676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000",,,,,,,,"9979.000000","13992.000000",,,,,,,,,,,"4539.000000","1134.000000","1326.000000","1164.000000","1684.000000","1904.000000","1696.000000","0.000000","0.000000","0.000000","715.000000","798.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965254.000000",,,,, -"22362.000000","68.480000","22362.000000","68.480000","22362.000000","68.480000",,,,,,,,,,,,,,"3888.000000","27573.500000","23244.000000","32.000000","27573.500000","27573.500000",,,,,,,,,,,"8322880.000000","9955464.000000","478840.000000","0.000000","67334616.000000","0.000000","87749440.000000",,"3623976.000000","24389676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000",,,,,,,,"4271.000000","23742.000000",,,,,,,,,,,"4404.000000","1133.000000","1335.000000","1145.000000","1684.000000","1904.000000","1686.000000","0.000000","0.000000","0.000000","716.000000","822.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965274.000000",,,,, -"22521.000000","68.710000","22521.000000","68.710000","22521.000000","68.710000",,,,,,,,,,,,,,"2300.000000","17586.000000","15000.000000","20.000000","17586.000000","17586.000000",,,,,,,,,,,"8155104.000000","9753136.000000","478840.000000","0.000000","67306308.000000","0.000000","87749440.000000",,"3623976.000000","24364304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000",,,,,,,,"2508.000000","15363.000000",,,,,,,,,,,"4629.000000","1133.000000","1240.000000","1154.000000","1684.000000","1696.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","836.000000","759.000000","874.000000","956.000000","896.000000","160.000000","6000.000000",,"8965294.000000",,,,, -"21424.000000","66.990000","21424.000000","66.990000","21424.000000","66.990000",,,,,,,,,,,,,,"96.000000","22483.000000","22387.000000","51.000000","22483.000000","22483.000000",,,,,,,,,,,"7966224.000000","9794948.000000","478840.000000","0.000000","67294236.000000","0.000000","87749300.000000",,"3623976.000000","24378484.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000",,,,,,,,"313.000000",,,,,,,,,,,,"4353.000000","1125.000000","1204.000000","1152.000000","1684.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","720.000000","805.000000","755.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965314.000000",,,,, -"19240.000000","63.565000","19240.000000","63.565000","19240.000000","63.565000",,,,,,,,,,,,,,"524.000000","18280.000000","17320.000000","29.000000","18280.000000","18280.000000",,,,,,,,,,,"7631132.000000","9501804.000000","478840.000000","0.000000","67291652.000000","0.000000","87749756.000000",,"3623976.000000","24378604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000",,,,,,,,"1103.000000","17611.000000",,,,,,,,,,,"4192.000000","1118.000000","1179.000000","1159.000000","1645.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","776.000000","754.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965334.000000",,,,, -"22323.000000","68.390000","22323.000000","68.390000","22323.000000","68.390000",,,,,,,,,,,,,,"296.000000","18261.500000","17642.000000","39.000000","18261.500000","18261.500000",,,,,,,,,,,"7928092.000000","9597336.000000","478840.000000","0.000000","67291440.000000","0.000000","87749452.000000",,"3623976.000000","24413636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000",,,,,,,,"503.000000","18082.000000",,,,,,,,,,,"4619.000000","1119.000000","1109.000000","1166.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","721.000000","758.000000","758.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965354.000000",,,,, -"19720.000000","64.320000","19720.000000","64.320000","19720.000000","64.320000",,,,,,,,,,,,,,"321.000000","28277.500000","27665.000000","32.000000","28277.500000","28277.500000",,,,,,,,,,,"8200724.000000","9765100.000000","478840.000000","0.000000","67294692.000000","0.000000","87749452.000000",,"3623976.000000","24410136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000",,,,,,,,"591.000000","27977.000000",,,,,,,,,,,"4365.000000","1113.000000","1062.000000","1175.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","744.000000","761.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965374.000000",,,,, -"20325.000000","65.265000","20325.000000","65.265000","20325.000000","65.265000",,,,,,,,,,,,,,"191.000000","24800.000000","24248.000000","29.000000","24800.000000","24800.000000",,,,,,,,,,,"8200724.000000","9828012.000000","478840.000000","0.000000","67296340.000000","0.000000","87749452.000000",,"3623976.000000","24375032.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000",,,,,,,,"431.000000","24729.000000",,,,,,,,,,,"4367.000000","1107.000000","1033.000000","1170.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","759.000000","767.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965394.000000",,,,, -"20975.000000","66.285000","20975.000000","66.285000","20975.000000","66.285000",,,,,,,,,,,,,,"8745.000000","32989.000000","24039.000000","18.000000","32989.000000","32989.000000",,,,,,,,,,,"7541168.000000","9389708.000000","478840.000000","0.000000","67297880.000000","0.000000","87749452.000000",,"3623976.000000","24388360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000",,,,,,,,"8811.000000","24382.000000",,,,,,,,,,,"4194.000000","1105.000000","1035.000000","1180.000000","1645.000000","1231.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","740.000000","769.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965414.000000",,,,, -"20127.000000","64.945000","20127.000000","64.945000","20127.000000","64.945000",,,,,,,,,,,,,,"1583.000000","34497.000000","31214.000000","40.000000","34497.000000","34497.000000",,,,,,,,,,,"7447336.000000","9139156.000000","478840.000000","0.000000","67282040.000000","0.000000","87749416.000000",,"3623976.000000","24402028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000",,,,,,,,"2204.000000","33992.000000",,,,,,,,,,,"4462.000000","1103.000000","1060.000000","1182.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","737.000000","771.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965434.000000",,,,, -"20122.000000","64.935000","20122.000000","64.935000","20122.000000","64.935000",,,,,,,,,,,,,,"667.000000","25513.000000","24331.000000","32.000000","25513.000000","25513.000000",,,,,,,,,,,"7447388.000000","9118236.000000","478840.000000","0.000000","67269820.000000","0.000000","87749468.000000",,"3623976.000000","24433940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000",,,,,,,,"807.000000","25220.000000",,,,,,,,,,,"4429.000000","1101.000000","1096.000000","1195.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","735.000000","774.000000","874.000000","772.000000","896.000000","160.000000","6000.000000",,"8965454.000000",,,,, -"21932.000000","67.765000","21932.000000","67.765000","21932.000000","67.765000",,,,,,,,,,,,,,"1844.000000","16545.500000","14418.000000","19.000000","16545.500000","16545.500000",,,,,,,,,,,"7342528.000000","8866576.000000","478828.000000","0.000000","67263556.000000","0.000000","87749480.000000",,"3623976.000000","24414912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000",,,,,,,,"2126.000000","14702.000000",,,,,,,,,,,"4554.000000","1093.000000","1201.000000","1202.000000","1612.000000","2000.000000","1696.000000","0.000000","0.000000","0.000000","717.000000","746.000000","777.000000","874.000000","860.000000","896.000000","160.000000","6000.000000",,"8965474.000000",,,,, -"18947.000000","63.095000","18947.000000","63.095000","18947.000000","63.095000",,,,,,,,,,,,,,"7864.000000","36961.000000","29096.000000","69.000000","36961.000000","36961.000000",,,,,,,,,,,"7209360.000000","8908996.000000","478828.000000","0.000000","67269840.000000","0.000000","87749480.000000",,"3623976.000000","24407688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000",,,,,,,,"8155.000000",,,,,,,,,,,,"4361.000000","1073.000000","1193.000000","1169.000000","1589.000000","2000.000000","1686.000000","0.000000","0.000000","0.000000","714.000000","748.000000","767.000000","860.000000","861.000000","860.000000","160.000000","6000.000000",,"8965494.000000",,,,, -"19902.000000","64.590000","19902.000000","64.590000","19902.000000","64.590000",,,,,,,,,,,,,,"11021.000000","28991.000000","16694.000000","12.000000","28991.000000","28991.000000",,,,,,,,,,,"7587760.000000","9245604.000000","478828.000000","0.000000","67269988.000000","0.000000","87753140.000000",,"3623976.000000","24383920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000",,,,,,,,"11216.000000","19050.000000",,,,,,,,,,,"4373.000000","1059.000000","1129.000000","1154.000000","1543.000000","2000.000000","1589.000000","0.000000","0.000000","0.000000","712.000000","737.000000","766.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965514.000000",,,,, -"18103.000000","61.770000","18103.000000","61.770000","18103.000000","61.770000",,,,,,,,,,,,,,"14319.000000","35316.000000","19667.000000","8.000000","35316.000000","35316.000000",,,,,,,,,,,"7818448.000000","9350460.000000","478828.000000","0.000000","67266780.000000","0.000000","87753140.000000",,"3623976.000000","24442396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000",,,,,,,,"14677.000000","21968.000000",,,,,,,,,,,"4324.000000","1052.000000","929.000000","1103.000000","1543.000000","1553.000000","1337.000000","0.000000","0.000000","0.000000","712.000000","698.000000","756.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965534.000000",,,,, -"20337.000000","65.270000","20337.000000","65.270000","20337.000000","65.270000",,,,,,,,,,,,,,"12592.000000","36000.500000","21888.000000","38.000000","36000.500000","36000.500000",,,,,,,,,,,"8069964.000000","9952684.000000","478828.000000","0.000000","67267976.000000","0.000000","87752992.000000",,"3623976.000000","24440064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000",,,,,,,,"13151.000000","24369.000000",,,,,,,,,,,"4241.000000","1048.000000","914.000000","1087.000000","1543.000000","1239.000000","1300.000000","0.000000","0.000000","0.000000","711.000000","688.000000","745.000000","856.000000","776.000000","860.000000","160.000000","6000.000000",,"8965554.000000",,,,, -"20978.000000","66.290000","20978.000000","66.290000","20978.000000","66.290000",,,,,,,,,,,,,,"20547.000000","43035.000000","20864.000000","21.000000","43035.000000","43035.000000",,,,,,,,,,,"8028020.000000","9826852.000000","478828.000000","0.000000","67299084.000000","0.000000","87752992.000000",,"3623976.000000","24393256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000",,,,,,,,"21418.000000","23240.000000",,,,,,,,,,,"4436.000000","1054.000000","967.000000","1081.000000","1543.000000","1338.000000","1337.000000","0.000000","0.000000","0.000000","714.000000","710.000000","743.000000","856.000000","849.000000","860.000000","160.000000","6000.000000",,"8965574.000000",,,,, -"22341.000000","68.415000","22341.000000","68.415000","22341.000000","68.415000",,,,,,,,,,,,,,"9217.000000","37180.000000","26319.000000","41.000000","37180.000000","37180.000000",,,,,,,,,,,"8300792.000000","10183792.000000","478828.000000","0.000000","67278240.000000","0.000000","87753132.000000",,"3623976.000000","24429280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000",,,,,,,,"9845.000000","28979.000000",,,,,,,,,,,"4534.000000","1060.000000","1019.000000","1059.000000","1543.000000","1338.000000","1300.000000","0.000000","0.000000","0.000000","717.000000","745.000000","738.000000","857.000000","857.000000","849.000000","160.000000","6000.000000",,"8965594.000000",,,,, -"19414.000000","63.820000","19414.000000","63.820000","19414.000000","63.820000",,,,,,,,,,,,,,"5640.000000","22766.000000","17125.000000","50.000000","22766.000000","22766.000000",,,,,,,,,,,"8088832.000000","9815668.000000","478828.000000","0.000000","67258108.000000","0.000000","87753132.000000",,"3623976.000000","24445160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000",,,,,,,,,"19276.000000",,,,,,,,,,,"4281.000000","1069.000000","1057.000000","1057.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","720.000000","761.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965614.000000",,,,, -"19932.000000","64.615000","19932.000000","64.615000","19932.000000","64.615000",,,,,,,,,,,,,,"239.000000","19682.000000","18430.000000","34.000000","19682.000000","19682.000000",,,,,,,,,,,"8319532.000000","9878592.000000","478828.000000","0.000000","67224652.000000","0.000000","87753140.000000",,"3623976.000000","24459664.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000",,,,,,,,"530.000000","20164.000000",,,,,,,,,,,"4375.000000","1075.000000","998.000000","1045.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","723.000000","737.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965634.000000",,,,, -"19438.000000","63.840000","19438.000000","63.840000","19438.000000","63.840000",,,,,,,,,,,,,,"9334.000000","28557.500000","17807.000000","24.000000","28557.500000","28557.500000",,,,,,,,,,,"8151756.000000","9605676.000000","478828.000000","0.000000","67231212.000000","0.000000","87753140.000000",,"3623976.000000","24454028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000",,,,,,,,"9611.000000","20363.000000",,,,,,,,,,,"4342.000000","1079.000000","961.000000","1029.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","725.000000","723.000000","731.000000","860.000000","860.000000","849.000000","160.000000","6000.000000",,"8965654.000000",,,,, -"19749.000000","64.325000","19749.000000","64.325000","19749.000000","64.325000",,,,,,,,,,,,,,"4090.000000","25298.500000","19650.000000","20.000000","25298.500000","25298.500000",,,,,,,,,,,"7764768.000000","9223948.000000","478828.000000","0.000000","67218852.000000","0.000000","87753000.000000",,"3623976.000000","24465744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000",,,,,,,,"4462.000000","22394.000000",,,,,,,,,,,"4342.000000","1092.000000","968.000000","1039.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","731.000000","716.000000","730.000000","860.000000","841.000000","849.000000","160.000000","6000.000000",,"8965674.000000",,,,, -"19231.000000","63.510000","19231.000000","63.510000","19231.000000","63.510000",,,,,,,,,,,,,,"904.000000","12927.000000","10993.000000","6.000000","12927.000000","12927.000000",,,,,,,,,,,"7701852.000000","9161036.000000","478828.000000","0.000000","67208468.000000","0.000000","87753000.000000",,"3623976.000000","24420752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000",,,,,,,,"738.000000","13219.000000",,,,,,,,,,,"4193.000000","1102.000000","1000.000000","1038.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","736.000000","715.000000","727.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965694.000000",,,,, -"16486.000000","59.210000","16486.000000","59.210000","16486.000000","59.210000",,,,,,,,,,,,,,"13563.000000","27741.000000","14178.000000","7.000000","27741.000000","27741.000000",,,,,,,,,,,"7827820.000000","9307980.000000","478828.000000","0.000000","67207568.000000","0.000000","87753140.000000",,"3623976.000000","24430696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000",,,,,,,,"14339.000000",,,,,,,,,,,,"4120.000000","1104.000000","957.000000","1013.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","737.000000","679.000000","718.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965714.000000",,,,, -"16789.000000","59.680000","16789.000000","59.680000","16789.000000","59.680000",,,,,,,,,,,,,,"5747.000000","27894.500000","20817.000000","12.000000","27894.500000","27894.500000",,,,,,,,,,,"8376640.000000","9992532.000000","478828.000000","0.000000","67198968.000000","0.000000","87753140.000000",,"3623976.000000","24435160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000",,,,,,,,"6162.000000","23062.000000",,,,,,,,,,,"4093.000000","1108.000000","853.000000","997.000000","1543.000000","1152.000000","1337.000000","0.000000","0.000000","0.000000","738.000000","628.000000","708.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965734.000000",,,,, -"17978.000000","61.540000","17978.000000","61.540000","17978.000000","61.540000",,,,,,,,,,,,,,"13126.000000","48753.500000","34300.000000","11.000000","48753.500000","48753.500000",,,,,,,,,,,"8376640.000000","10076416.000000","478828.000000","0.000000","67197628.000000","0.000000","87753140.000000",,"3623976.000000","24513368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000",,,,,,,,"13317.000000","36764.000000",,,,,,,,,,,"4184.000000","1111.000000","789.000000","977.000000","1543.000000","951.000000","1337.000000","0.000000","0.000000","0.000000","742.000000","623.000000","704.000000","860.000000","744.000000","849.000000","160.000000","6000.000000",,"8965754.000000",,,,, -"18273.000000","62.000000","18273.000000","62.000000","18273.000000","62.000000",,,,,,,,,,,,,,"9442.000000","32568.500000","21357.000000","10.000000","32568.500000","32568.500000",,,,,,,,,,,"8166924.000000","9929896.000000","478828.000000","0.000000","67192796.000000","0.000000","87753140.000000",,"3623976.000000","24477508.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000",,,,,,,,"10268.000000","24070.000000",,,,,,,,,,,"4049.000000","1109.000000","831.000000","939.000000","1543.000000","1036.000000","1207.000000","0.000000","0.000000","0.000000","741.000000","633.000000","696.000000","860.000000","744.000000","841.000000","160.000000","6000.000000",,"8965774.000000",,,,, -"19087.000000","63.270000","19087.000000","63.270000","19087.000000","63.270000",,,,,,,,,,,,,,"427.000000","13213.000000","11570.000000","14.000000","13213.000000","13213.000000",,,,,,,,,,,"7615856.000000","9515720.000000","478828.000000","0.000000","67186984.000000","0.000000","87753132.000000",,"3623976.000000","24483860.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000",,,,,,,,"677.000000","13751.000000",,,,,,,,,,,"4217.000000","1103.000000","901.000000","939.000000","1539.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","740.000000","666.000000","692.000000","860.000000","803.000000","821.000000","160.000000","6000.000000",,"8965794.000000",,,,, -"18360.000000","62.135000","18360.000000","62.135000","18360.000000","62.135000",,,,,,,,,,,,,,"1070.000000","12349.000000","10504.000000","5.000000","12349.000000","12349.000000",,,,,,,,,,,"7616464.000000","9516460.000000","478828.000000","0.000000","67187404.000000","0.000000","87756348.000000",,"3623976.000000","24526056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000",,,,,,,,"476.000000","12646.000000",,,,,,,,,,,"4165.000000","1091.000000","946.000000","940.000000","1498.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","738.000000","664.000000","690.000000","857.000000","803.000000","821.000000","160.000000","6000.000000",,"8965814.000000",,,,, -"17084.000000","60.130000","17084.000000","60.130000","17084.000000","60.130000",,,,,,,,,,,,,,"848.000000","19231.500000","16740.000000","20.000000","19231.500000","19231.500000",,,,,,,,,,,"7660192.000000","9623476.000000","478828.000000","0.000000","67178056.000000","0.000000","87765724.000000",,"3623976.000000","24561800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000",,,,,,,,"1975.000000","18898.000000",,,,,,,,,,,"4014.000000","1077.000000","923.000000","938.000000","1453.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","731.000000","654.000000","687.000000","852.000000","803.000000","821.000000","160.000000","6000.000000",,"8965834.000000",,,,, -"18532.000000","62.410000","18532.000000","62.410000","18532.000000","62.410000",,,,,,,,,,,,,,"93.000000","12235.500000","10749.000000","8.000000","12235.500000","12235.500000",,,,,,,,,,,"7516576.000000","9816076.000000","478828.000000","0.000000","67194228.000000","0.000000","87782500.000000",,"3623976.000000","24562008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000",,,,,,,,"686.000000","12941.000000",,,,,,,,,,,"4207.000000","1062.000000","901.000000","936.000000","1362.000000","1027.000000","1206.000000","0.000000","0.000000","0.000000","727.000000","640.000000","682.000000","850.000000","712.000000","821.000000","160.000000","6000.000000",,"8965854.000000",,,,, -"18686.000000","62.650000","18686.000000","62.650000","18686.000000","62.650000",,,,,,,,,,,,,,"1057.000000","15062.500000","12796.000000","23.000000","15062.500000","15062.500000",,,,,,,,,,,"7426592.000000","9726092.000000","478828.000000","0.000000","67195620.000000","0.000000","87782500.000000",,"3623976.000000","24534556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000",,,,,,,,"1318.000000","14953.000000",,,,,,,,,,,"4232.000000","1049.000000","868.000000","920.000000","1338.000000","1027.000000","1152.000000","0.000000","0.000000","0.000000","725.000000","642.000000","676.000000","849.000000","768.000000","803.000000","160.000000","6000.000000",,"8965874.000000",,,,, -"17972.000000","61.540000","17972.000000","61.540000","17972.000000","61.540000",,,,,,,,,,,,,,"1762.000000","14729.500000","11631.000000","37.000000","14729.500000","14729.500000",,,,,,,,,,,"7195900.000000","9662892.000000","478828.000000","0.000000","67217092.000000","0.000000","87782500.000000",,"3623976.000000","24505728.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000",,,,,,,,"2057.000000","14008.000000",,,,,,,,,,,"4098.000000","1043.000000","910.000000","916.000000","1338.000000","1129.000000","1152.000000","0.000000","0.000000","0.000000","722.000000","662.000000","670.000000","849.000000","768.000000","790.000000","160.000000","6000.000000",,"8965894.000000",,,,, -"16521.000000","59.265000","16521.000000","59.265000","16521.000000","59.265000",,,,,,,,,,,,,,"57.000000","12663.000000","11479.000000","17.000000","12663.000000","12663.000000",,,,,,,,,,,"6629540.000000","8760996.000000","478828.000000","0.000000","67206032.000000","0.000000","87782376.000000",,"3623976.000000","24511648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000",,,,,,,,"289.000000","13500.000000",,,,,,,,,,,"4069.000000","1035.000000","849.000000","895.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","716.000000","639.000000","658.000000","845.000000","768.000000","775.000000","160.000000","6000.000000",,"8965914.000000",,,,, -"16782.000000","59.670000","16782.000000","59.670000","16782.000000","59.670000",,,,,,,,,,,,,,"124.000000","12825.000000","11718.000000","5.000000","12825.000000","12825.000000",,,,,,,,,,,"6683684.000000","8836108.000000","478828.000000","0.000000","67207664.000000","0.000000","87782376.000000",,"3623976.000000","24508272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000",,,,,,,,"343.000000","13464.000000",,,,,,,,,,,"4200.000000","1031.000000","840.000000","889.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","715.000000","626.000000","654.000000","845.000000","701.000000","768.000000","160.000000","6000.000000",,"8965934.000000",,,,, -"16178.000000","58.720000","16178.000000","58.720000","16178.000000","58.720000",,,,,,,,,,,,,,"68.000000","12629.500000","11572.000000","3.000000","12629.500000","12629.500000",,,,,,,,,,,"6641744.000000","8919988.000000","478828.000000","0.000000","67196920.000000","0.000000","87782376.000000",,"3623976.000000","24488052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000",,,,,,,,"308.000000","13310.000000",,,,,,,,,,,"3896.000000","1024.000000","758.000000","876.000000","1337.000000","1006.000000","1121.000000","0.000000","0.000000","0.000000","711.000000","589.000000","643.000000","845.000000","701.000000","744.000000","160.000000","6000.000000",,"8965954.000000",,,,, -"16237.000000","58.815000","16237.000000","58.815000","16237.000000","58.815000",,,,,,,,,,,,,,"45.000000","9012.000000","8917.000000","25.000000","9012.000000","9012.000000",,,,,,,,,,,"6793836.000000","8978184.000000","478828.000000","0.000000","67198656.000000","0.000000","87808824.000000",,"3623976.000000","24511548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000",,,,,,,,"157.000000","8905.000000",,,,,,,,,,,"4133.000000","1020.000000","730.000000","847.000000","1337.000000","1006.000000","1027.000000","0.000000","0.000000","0.000000","708.000000","596.000000","634.000000","845.000000","701.000000","712.000000","160.000000","6000.000000",,"8965974.000000",,,,, -"15510.000000","57.675000","15510.000000","57.675000","15510.000000","57.675000",,,,,,,,,,,,,,"84.000000","12597.000000","12513.000000","28.000000","12597.000000","12597.000000",,,,,,,,,,,"6745672.000000","8881716.000000","478828.000000","0.000000","67200340.000000","0.000000","87808964.000000",,"3623976.000000","24419016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000",,,,,,,,"228.000000",,,,,,,,,,,,"4083.000000","1012.000000","699.000000","829.000000","1337.000000","819.000000","1019.000000","0.000000","0.000000","0.000000","706.000000","571.000000","625.000000","845.000000","659.000000","706.000000","160.000000","6000.000000",,"8965994.000000",,,,, -"17348.000000","60.550000","17348.000000","60.550000","17348.000000","60.550000",,,,,,,,,,,,,,"59.000000","8706.000000","8435.000000","7.000000","8706.000000","8706.000000",,,,,,,,,,,"6473040.000000","8734920.000000","478828.000000","0.000000","67187924.000000","0.000000","87808964.000000",,"3623976.000000","24406024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000",,,,,,,,"175.000000","8742.000000",,,,,,,,,,,"4137.000000","1009.000000","748.000000","834.000000","1337.000000","942.000000","1019.000000","0.000000","0.000000","0.000000","705.000000","601.000000","628.000000","845.000000","688.000000","706.000000","160.000000","6000.000000",,"8966014.000000",,,,, -"18837.000000","62.870000","18837.000000","62.870000","18837.000000","62.870000",,,,,,,,,,,,,,"116.000000","12471.000000","12118.000000","10.000000","12471.000000","12471.000000",,,,,,,,,,,"6336152.000000","8441324.000000","478828.000000","0.000000","67165792.000000","0.000000","87808968.000000",,"3623976.000000","24418764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000",,,,,,,,"280.000000","12427.000000",,,,,,,,,,,"4211.000000","1005.000000","798.000000","836.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","704.000000","622.000000","633.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966034.000000",,,,, -"17218.000000","60.330000","17218.000000","60.330000","17218.000000","60.330000",,,,,,,,,,,,,,"338.000000","10804.500000","10251.000000","3.000000","10804.500000","10804.500000",,,,,,,,,,,"6384456.000000","8537932.000000","478828.000000","0.000000","67153424.000000","0.000000","87808968.000000",,"3623976.000000","24609348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000",,,,,,,,"498.000000","10521.000000",,,,,,,,,,,"4270.000000","1002.000000","818.000000","834.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","702.000000","639.000000","628.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966054.000000",,,,, -"18803.000000","62.820000","18803.000000","62.820000","18803.000000","62.820000",,,,,,,,,,,,,,"174.000000","20841.500000","20313.000000","30.000000","20841.500000","20841.500000",,,,,,,,,,,"6531252.000000","8579876.000000","478828.000000","0.000000","67171696.000000","0.000000","87808968.000000",,"3623976.000000","24546732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000",,,,,,,,"452.000000","20742.000000",,,,,,,,,,,"4130.000000","993.000000","854.000000","839.000000","1279.000000","1064.000000","1019.000000","0.000000","0.000000","0.000000","701.000000","652.000000","632.000000","844.000000","783.000000","712.000000","160.000000","6000.000000",,"8966074.000000",,,,, -"17791.000000","61.235000","17791.000000","61.235000","17791.000000","61.235000",,,,,,,,,,,,,,"57.000000","12250.000000","10956.000000","6.000000","12250.000000","12250.000000",,,,,,,,,,,"6416484.000000","8056740.000000","478828.000000","0.000000","67170744.000000","0.000000","87808968.000000",,"3623976.000000","24545932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000",,,,,,,,"313.000000","13172.000000",,,,,,,,,,,"4098.000000","979.000000","860.000000","828.000000","1254.000000","1064.000000","1015.000000","0.000000","0.000000","0.000000","696.000000","645.000000","629.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966094.000000",,,,, -"19099.000000","63.285000","19099.000000","63.285000","19099.000000","63.285000",,,,,,,,,,,,,,"52.000000","14912.500000","13795.000000","12.000000","14912.500000","14912.500000",,,,,,,,,,,"6416484.000000","8224512.000000","478828.000000","0.000000","67182688.000000","0.000000","87808968.000000",,"3623976.000000","24523828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000",,,,,,,,"353.000000","15624.000000",,,,,,,,,,,"4133.000000","978.000000","973.000000","840.000000","1254.000000","1276.000000","1027.000000","0.000000","0.000000","0.000000","694.000000","661.000000","628.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966114.000000",,,,, -"19800.000000","64.380000","19800.000000","64.380000","19800.000000","64.380000",,,,,,,,,,,,,,"623.000000","13260.000000","11401.000000","11.000000","13260.000000","13260.000000",,,,,,,,,,,"6018032.000000","7826056.000000","478828.000000","0.000000","67172760.000000","0.000000","87808968.000000",,"3623976.000000","24534228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000",,,,,,,,"879.000000","13617.000000",,,,,,,,,,,"4224.000000","964.000000","976.000000","849.000000","1239.000000","1276.000000","1053.000000","0.000000","0.000000","0.000000","693.000000","678.000000","636.000000","824.000000","757.000000","729.000000","160.000000","6000.000000",,"8966134.000000",,,,, -"18784.000000","62.790000","18784.000000","62.790000","18784.000000","62.790000",,,,,,,,,,,,,,"61.000000","14703.500000","13503.000000","12.000000","14703.500000","14703.500000",,,,,,,,,,,"6363320.000000","8213280.000000","478828.000000","0.000000","67167084.000000","0.000000","87808804.000000",,"3623976.000000","24573620.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000",,,,,,,,"665.000000","15176.000000",,,,,,,,,,,"4135.000000","959.000000","1027.000000","853.000000","1236.000000","1276.000000","1118.000000","0.000000","0.000000","0.000000","688.000000","689.000000","638.000000","811.000000","757.000000","733.000000","160.000000","6000.000000",,"8966154.000000",,,,, -"19696.000000","64.220000","19696.000000","64.220000","19696.000000","64.220000",,,,,,,,,,,,,,"204.000000","9854.500000","9594.000000","29.000000","9854.500000","9854.500000",,,,,,,,,,,"6508376.000000","8358336.000000","478828.000000","0.000000","67181368.000000","0.000000","87808944.000000",,"3623976.000000","24597340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000",,,,,,,,"215.000000","9694.000000",,,,,,,,,,,"4272.000000","955.000000","983.000000","863.000000","1231.000000","1236.000000","1118.000000","0.000000","0.000000","0.000000","687.000000","706.000000","641.000000","803.000000","757.000000","733.000000","160.000000","6000.000000",,"8966174.000000",,,,, -"18028.000000","61.605000","18028.000000","61.605000","18028.000000","61.605000",,,,,,,,,,,,,,"54.000000","11208.500000","10939.000000","15.000000","11208.500000","11208.500000",,,,,,,,,,,"7305292.000000","9071364.000000","478828.000000","0.000000","67168224.000000","0.000000","87808944.000000",,"3623976.000000","24581896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000",,,,,,,,"203.000000","11221.000000",,,,,,,,,,,"4155.000000","943.000000","933.000000","854.000000","1216.000000","1236.000000","1064.000000","0.000000","0.000000","0.000000","682.000000","678.000000","640.000000","790.000000","752.000000","733.000000","160.000000","6000.000000",,"8966194.000000",,,,, -"19914.000000","64.560000","19914.000000","64.560000","19914.000000","64.560000",,,,,,,,,,,,,,"42.000000","12820.000000","12512.000000","10.000000","12820.000000","12820.000000",,,,,,,,,,,"6822952.000000","8661848.000000","478828.000000","0.000000","67168700.000000","0.000000","87808944.000000",,"3623976.000000","24579016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000",,,,,,,,"210.000000","12876.000000",,,,,,,,,,,"4169.000000","941.000000","935.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","681.000000","690.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966214.000000",,,,, -"17008.000000","60.000000","17008.000000","60.000000","17008.000000","60.000000",,,,,,,,,,,,,,"69.000000","12710.000000","12412.000000","20.000000","12710.000000","12710.000000",,,,,,,,,,,"6869320.000000","8707892.000000","478828.000000","0.000000","67162580.000000","0.000000","87800868.000000",,"3623976.000000","24572792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000",,,,,,,,"236.000000","12702.000000",,,,,,,,,,,"4100.000000","934.000000","877.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","679.000000","660.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966234.000000",,,,, -"18335.000000","62.085000","18335.000000","62.085000","18335.000000","62.085000",,,,,,,,,,,,,,"47.000000","12348.000000","12172.000000","5.000000","12348.000000","12348.000000",,,,,,,,,,,"6659604.000000","8498464.000000","478828.000000","0.000000","67164636.000000","0.000000","87800868.000000",,"3623976.000000","24570836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000",,,,,,,,"222.000000","12255.000000",,,,,,,,,,,"3983.000000","929.000000","906.000000","883.000000","1202.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","676.000000","662.000000","654.000000","783.000000","780.000000","752.000000","160.000000","6000.000000",,"8966254.000000",,,,, -"18978.000000","63.085000","18978.000000","63.085000","18978.000000","63.085000",,,,,,,,,,,,,,"64.000000","10024.500000","9787.000000","16.000000","10024.500000","10024.500000",,,,,,,,,,,"6869180.000000","8928824.000000","478828.000000","0.000000","67158472.000000","0.000000","87800732.000000",,"3623976.000000","24597924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000",,,,,,,,"200.000000","9996.000000",,,,,,,,,,,"4126.000000","931.000000","913.000000","906.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","675.000000","656.000000","660.000000","783.000000","811.000000","757.000000","160.000000","6000.000000",,"8966274.000000",,,,, -"17816.000000","61.260000","17816.000000","61.260000","17816.000000","61.260000",,,,,,,,,,,,,,"49.000000","12400.000000","12047.000000","13.000000","12400.000000","12400.000000",,,,,,,,,,,"6556732.000000","8771588.000000","478828.000000","0.000000","67150976.000000","0.000000","87800732.000000",,"3623976.000000","24603176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000",,,,,,,,"226.000000","12477.000000",,,,,,,,,,,"4274.000000","927.000000","922.000000","915.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","673.000000","670.000000","667.000000","783.000000","811.000000","759.000000","160.000000","6000.000000",,"8966294.000000",,,,, -"19215.000000","63.450000","19215.000000","63.450000","19215.000000","63.450000",,,,,,,,,,,,,,"42.000000","12655.500000","12428.000000","7.000000","12655.500000","12655.500000",,,,,,,,,,,"6221188.000000","8373128.000000","478828.000000","0.000000","67138336.000000","0.000000","87800732.000000",,"3623976.000000","24595940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000",,,,,,,,"213.000000","12626.000000",,,,,,,,,,,"4283.000000","921.000000","914.000000","917.000000","1164.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","672.000000","686.000000","671.000000","789.000000","811.000000","780.000000","160.000000","6000.000000",,"8966314.000000",,,,, -"18354.000000","62.095000","18354.000000","62.095000","18354.000000","62.095000",,,,,,,,,,,,,,"70.000000","12529.000000","12458.000000","3.000000","12529.000000","12529.000000",,,,,,,,,,,"6032444.000000","8037584.000000","478828.000000","0.000000","67126084.000000","0.000000","87800732.000000",,"3623976.000000","24658084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000",,,,,,,,"234.000000",,,,,,,,,,,,"4241.000000","922.000000","924.000000","931.000000","1164.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","671.000000","674.000000","671.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966334.000000",,,,, -"17603.000000","60.905000","17603.000000","60.905000","17603.000000","60.905000",,,,,,,,,,,,,,"399.000000","12465.500000","11711.000000","3.000000","12465.500000","12465.500000",,,,,,,,,,,"5900400.000000","7821656.000000","478828.000000","0.000000","67113004.000000","0.000000","87800800.000000",,"3623976.000000","24661360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000",,,,,,,,"527.000000","12293.000000",,,,,,,,,,,"4080.000000","916.000000","926.000000","936.000000","1152.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","668.000000","663.000000","672.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966354.000000",,,,, -"22167.000000","68.055000","22167.000000","68.055000","22167.000000","68.055000",,,,,,,,,,,,,,"62.000000","14109.500000","12913.000000","32.000000","14109.500000","14109.500000",,,,,,,,,,,"5858460.000000","7821372.000000","478828.000000","0.000000","67104204.000000","0.000000","87800800.000000",,"3623976.000000","24669016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000",,,,,,,,"325.000000","14919.000000",,,,,,,,,,,"4491.000000","916.000000","1112.000000","968.000000","1152.000000","1881.000000","1202.000000","0.000000","0.000000","0.000000","669.000000","697.000000","680.000000","789.000000","973.000000","788.000000","160.000000","6000.000000",,"8966374.000000",,,,, -"17990.000000","61.510000","17990.000000","61.510000","17990.000000","61.510000",,,,,,,,,,,,,,"53.000000","18263.000000","17512.000000","25.000000","18263.000000","18263.000000",,,,,,,,,,,"6005120.000000","7758312.000000","478828.000000","0.000000","67096036.000000","0.000000","87800660.000000",,"3623976.000000","24657300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000",,,,,,,,"289.000000","18671.000000",,,,,,,,,,,"4283.000000","914.000000","1086.000000","977.000000","1152.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","696.000000","681.000000","783.000000","973.000000","788.000000","160.000000","6000.000000",,"8966394.000000",,,,, -"20122.000000","64.845000","20122.000000","64.845000","20122.000000","64.845000",,,,,,,,,,,,,,"108.000000","10569.000000","10231.000000","14.000000","10569.000000","10569.000000",,,,,,,,,,,"6508440.000000","8219688.000000","478828.000000","0.000000","67085876.000000","0.000000","87800660.000000",,"3623976.000000","24655052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000",,,,,,,,"244.000000","10555.000000",,,,,,,,,,,"4174.000000","921.000000","1203.000000","982.000000","1202.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","720.000000","684.000000","788.000000","973.000000","791.000000","160.000000","6000.000000",,"8966414.000000",,,,, -"19566.000000","63.980000","19566.000000","63.980000","19566.000000","63.980000",,,,,,,,,,,,,,"184.000000","9621.000000","9421.000000","12.000000","9621.000000","9621.000000",,,,,,,,,,,"6676348.000000","8219828.000000","478828.000000","0.000000","67096052.000000","0.000000","87800800.000000",,"3623976.000000","24674172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000",,,,,,,,"254.000000","9382.000000",,,,,,,,,,,"4251.000000","935.000000","1221.000000","1017.000000","1207.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","695.000000","684.000000","788.000000","791.000000","791.000000","160.000000","6000.000000",,"8966434.000000",,,,, -"20937.000000","66.125000","20937.000000","66.125000","20937.000000","66.125000",,,,,,,,,,,,,,"52.000000","11039.500000","10714.000000","9.000000","11039.500000","11039.500000",,,,,,,,,,,"6068172.000000","7527772.000000","478828.000000","0.000000","67098604.000000","0.000000","87800800.000000",,"3623976.000000","24670888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000",,,,,,,,"193.000000","11119.000000",,,,,,,,,,,"4336.000000","941.000000","1309.000000","1033.000000","1217.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","670.000000","728.000000","689.000000","789.000000","837.000000","796.000000","160.000000","6000.000000",,"8966454.000000",,,,, -"20516.000000","65.480000","20516.000000","65.480000","20516.000000","65.480000",,,,,,,,,,,,,,"70.000000","13105.500000","12617.000000","7.000000","13105.500000","13105.500000",,,,,,,,,,,"6319828.000000","7779428.000000","478828.000000","0.000000","67128664.000000","0.000000","87800800.000000",,"3623976.000000","24615536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000",,,,,,,,"614.000000","12910.000000",,,,,,,,,,,"4295.000000","945.000000","1332.000000","1052.000000","1223.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","742.000000","691.000000","783.000000","837.000000","796.000000","160.000000","6000.000000",,"8966474.000000",,,,, -"16190.000000","58.700000","16190.000000","58.700000","16190.000000","58.700000",,,,,,,,,,,,,,"280.000000","16458.000000","15573.000000","18.000000","16458.000000","16458.000000",,,,,,,,,,,"6101708.000000","7937924.000000","478828.000000","0.000000","67119672.000000","0.000000","87800800.000000",,"3623976.000000","24628648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000",,,,,,,,"455.000000","16608.000000",,,,,,,,,,,"4135.000000","942.000000","1120.000000","1055.000000","1223.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","666.000000","702.000000","688.000000","781.000000","837.000000","796.000000","160.000000","6000.000000",,"8966494.000000",,,,, -"14336.000000","55.790000","14336.000000","55.790000","14336.000000","55.790000",,,,,,,,,,,,,,"131.000000","8518.500000","8122.000000","35.000000","8518.500000","8518.500000",,,,,,,,,,,"6111480.000000","7979724.000000","478828.000000","0.000000","67105136.000000","0.000000","87800660.000000",,"3623976.000000","24640880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000",,,,,,,,"247.000000","8536.000000",,,,,,,,,,,"4059.000000","929.000000","887.000000","1024.000000","1217.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","660.000000","616.000000","674.000000","775.000000","781.000000","796.000000","160.000000","6000.000000",,"8966514.000000",,,,, -"14371.000000","55.840000","14371.000000","55.840000","14371.000000","55.840000",,,,,,,,,,,,,,"55.000000","5995.500000","5914.000000","13.000000","5995.500000","5995.500000",,,,,,,,,,,"6573748.000000","8525876.000000","478828.000000","0.000000","67093524.000000","0.000000","87801552.000000",,"3623976.000000","24638812.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000",,,,,,,,"143.000000","5879.000000",,,,,,,,,,,"4073.000000","922.000000","657.000000","1008.000000","1217.000000","1155.000000","1472.000000","0.000000","0.000000","0.000000","656.000000","540.000000","667.000000","768.000000","727.000000","796.000000","160.000000","6000.000000",,"8966534.000000",,,,, -"11980.000000","52.090000","11980.000000","52.090000","11980.000000","52.090000",,,,,,,,,,,,,,"57.000000","4134.500000","3988.000000","9.000000","4134.500000","4134.500000",,,,,,,,,,,"7598472.000000","9814544.000000","478828.000000","0.000000","67084104.000000","0.000000","87800800.000000",,"3623976.000000","24650892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000",,,,,,,,"134.000000","4088.000000",,,,,,,,,,,"3977.000000","915.000000","556.000000","985.000000","1217.000000","644.000000","1472.000000","0.000000","0.000000","0.000000","651.000000","493.000000","655.000000","762.000000","570.000000","796.000000","160.000000","6000.000000",,"8966554.000000",,,,, -"12678.000000","53.175000","12678.000000","53.175000","12678.000000","53.175000",,,,,,,,,,,,,,"56.000000","6150.500000","5695.000000","4.000000","6150.500000","6150.500000",,,,,,,,,,,"7347964.000000","9647928.000000","478828.000000","0.000000","67071532.000000","0.000000","87800800.000000",,"3623976.000000","24689820.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000",,,,,,,,"141.000000","6407.000000",,,,,,,,,,,"3963.000000","900.000000","530.000000","947.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","644.000000","466.000000","636.000000","759.000000","560.000000","791.000000","160.000000","6000.000000",,"8966574.000000",,,,, -"13298.000000","54.145000","13298.000000","54.145000","13298.000000","54.145000",,,,,,,,,,,,,,"52.000000","5455.500000","5361.000000","25.000000","5455.500000","5455.500000",,,,,,,,,,,"7012424.000000","9312388.000000","478828.000000","0.000000","67065940.000000","0.000000","87800800.000000",,"3623976.000000","24717072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000",,,,,,,,"136.000000","5361.000000",,,,,,,,,,,"4035.000000","891.000000","538.000000","931.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","639.000000","460.000000","625.000000","759.000000","560.000000","788.000000","160.000000","6000.000000",,"8966594.000000",,,,, -"12596.000000","53.045000","12596.000000","53.045000","12596.000000","53.045000",,,,,,,,,,,,,,"116.000000","5522.500000","5005.000000","3.000000","5522.500000","5522.500000",,,,,,,,,,,"6800576.000000","8774908.000000","478828.000000","0.000000","67070000.000000","0.000000","87800800.000000",,"3623976.000000","24702996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000",,,,,,,,"205.000000","5718.000000",,,,,,,,,,,"3976.000000","886.000000","521.000000","906.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","636.000000","451.000000","608.000000","759.000000","560.000000","781.000000","160.000000","6000.000000",,"8966614.000000",,,,, -"12446.000000","52.810000","12446.000000","52.810000","12446.000000","52.810000",,,,,,,,,,,,,,"61.000000","5831.500000","4780.000000","3.000000","5831.500000","5831.500000",,,,,,,,,,,"6590812.000000","8669996.000000","478828.000000","0.000000","67069088.000000","0.000000","87800752.000000",,"3623976.000000","24704368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000",,,,,,,,"266.000000","6556.000000",,,,,,,,,,,"3746.000000","879.000000","541.000000","871.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","632.000000","449.000000","591.000000","759.000000","547.000000","781.000000","160.000000","6000.000000",,"8966634.000000",,,,, -"16241.000000","58.760000","16241.000000","58.760000","16241.000000","58.760000",,,,,,,,,,,,,,"350.000000","13565.000000","12752.000000","24.000000","13565.000000","13565.000000",,,,,,,,,,,"6506924.000000","8753876.000000","478828.000000","0.000000","67079968.000000","0.000000","87800752.000000",,"3623976.000000","24696264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000",,,,,,,,"538.000000","13488.000000",,,,,,,,,,,"4022.000000","878.000000","585.000000","863.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","630.000000","483.000000","589.000000","759.000000","658.000000","781.000000","160.000000","6000.000000",,"8966654.000000",,,,, -"17283.000000","60.395000","17283.000000","60.395000","17283.000000","60.395000",,,,,,,,,,,,,,"37.000000","8774.500000","8567.000000","23.000000","8774.500000","8774.500000",,,,,,,,,,,"5980608.000000","8290476.000000","478828.000000","0.000000","67083712.000000","0.000000","87800752.000000",,"3623976.000000","24697060.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000",,,,,,,,"144.000000","8800.000000",,,,,,,,,,,"4032.000000","875.000000","678.000000","819.000000","1217.000000","998.000000","1417.000000","0.000000","0.000000","0.000000","629.000000","530.000000","574.000000","759.000000","663.000000","759.000000","160.000000","6000.000000",,"8966674.000000",,,,, -"15454.000000","57.525000","15454.000000","57.525000","15454.000000","57.525000",,,,,,,,,,,,,,"88.000000","27832.500000","27853.000000","84.000000","27832.500000","27832.500000",,,,,,,,,,,"6064496.000000","8069704.000000","478828.000000","0.000000","67075088.000000","0.000000","87800752.000000",,"3623976.000000","24704364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000",,,,,,,,"314.000000","27409.000000",,,,,,,,,,,"4259.000000","870.000000","761.000000","806.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","627.000000","593.000000","570.000000","759.000000","767.000000","762.000000","160.000000","6000.000000",,"8966694.000000",,,,, -"13294.000000","54.135000","13294.000000","54.135000","13294.000000","54.135000",,,,,,,,,,,,,,"184.000000","22602.000000","22418.000000","87.000000","22602.000000","22602.000000",,,,,,,,,,,"6274260.000000","8363352.000000","478828.000000","0.000000","67061364.000000","0.000000","87800800.000000",,"3623976.000000","24690628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000",,,,,,,,"363.000000",,,,,,,,,,,,"3889.000000","863.000000","721.000000","767.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","623.000000","556.000000","556.000000","759.000000","767.000000","759.000000","160.000000","6000.000000",,"8966714.000000",,,,, -"14892.000000","56.670000","14892.000000","56.670000","14892.000000","56.670000",,,,,,,,,,,,,,"134.000000","25709.000000","24519.000000","128.000000","25709.000000","25709.000000",,,,,,,,,,,"6718816.000000","8499620.000000","478828.000000","0.000000","67127268.000000","0.000000","87800800.000000",,"3623976.000000","24666476.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000",,,,,,,,"359.000000","26404.000000",,,,,,,,,,,"3958.000000","859.000000","679.000000","711.000000","1206.000000","1206.000000","1206.000000","0.000000","0.000000","0.000000","621.000000","542.000000","544.000000","759.000000","767.000000","750.000000","160.000000","6000.000000",,"8966734.000000",,,,, -"15418.000000","57.515000","15418.000000","57.515000","15418.000000","57.515000",,,,,,,,,,,,,,"65.000000","29759.000000","29387.000000","121.000000","29759.000000","29759.000000",,,,,,,,,,,"7391540.000000","8984740.000000","478828.000000","0.000000","67169992.000000","0.000000","87802432.000000",,"3623976.000000","24590604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000",,,,,,,,"320.000000","29746.000000",,,,,,,,,,,"4076.000000","851.000000","620.000000","668.000000","1206.000000","765.000000","1145.000000","0.000000","0.000000","0.000000","618.000000","512.000000","527.000000","759.000000","610.000000","727.000000","160.000000","6000.000000",,"8966754.000000",,,,, -"13208.000000","54.035000","13208.000000","54.035000","13208.000000","54.035000",,,,,,,,,,,,,,"135.000000","27167.000000","26509.000000","132.000000","27167.000000","27167.000000",,,,,,,,,,,"7641428.000000","9234628.000000","478828.000000","0.000000","67134148.000000","0.000000","87800660.000000",,"3623976.000000","24617396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000",,,,,,,,"720.000000","26968.000000",,,,,,,,,,,"3952.000000","846.000000","615.000000","623.000000","1206.000000","765.000000","791.000000","0.000000","0.000000","0.000000","614.000000","511.000000","510.000000","757.000000","610.000000","610.000000","160.000000","6000.000000",,"8966774.000000",,,,, -"13471.000000","54.430000","13471.000000","54.430000","13471.000000","54.430000",,,,,,,,,,,,,,"72.000000","27039.500000","26584.000000","116.000000","27039.500000","27039.500000",,,,,,,,,,,"7318608.000000","8886680.000000","478828.000000","0.000000","67098324.000000","0.000000","87800824.000000",,"3623976.000000","24608296.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000",,,,,,,,"316.000000","27106.000000",,,,,,,,,,,"3857.000000","838.000000","594.000000","606.000000","1206.000000","765.000000","765.000000","0.000000","0.000000","0.000000","610.000000","487.000000","501.000000","757.000000","610.000000","597.000000","160.000000","6000.000000",,"8966794.000000",,,,, -"11434.000000","51.225000","11434.000000","51.225000","11434.000000","51.225000",,,,,,,,,,,,,,"47.000000","26897.500000","26555.000000","124.000000","26897.500000","26897.500000",,,,,,,,,,,"7957744.000000","10050104.000000","478828.000000","0.000000","67068380.000000","0.000000","87800904.000000",,"3623976.000000","24637396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000",,,,,,,,"261.000000","26931.000000",,,,,,,,,,,"4097.000000","830.000000","527.000000","596.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","606.000000","450.000000","494.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966814.000000",,,,, -"12475.000000","52.840000","12475.000000","52.840000","12475.000000","52.840000",,,,,,,,,,,,,,"120.000000","25088.500000","25189.000000","126.000000","25088.500000","25088.500000",,,,,,,,,,,"7874608.000000","10134740.000000","478828.000000","0.000000","67036204.000000","0.000000","87801656.000000",,"3623976.000000","24674964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000",,,,,,,,"294.000000","24574.000000",,,,,,,,,,,"3991.000000","823.000000","495.000000","591.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","601.000000","436.000000","489.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966834.000000",,,,, -"13222.000000","53.990000","13222.000000","53.990000","13222.000000","53.990000",,,,,,,,,,,,,,"67.000000","34680.500000","33595.000000","67.000000","34680.500000","34680.500000",,,,,,,,,,,"7456556.000000","9513252.000000","478828.000000","0.000000","67000704.000000","0.000000","87800904.000000",,"3623976.000000","24681648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000",,,,,,,,"347.000000","35352.000000",,,,,,,,,,,"4014.000000","821.000000","500.000000","594.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","600.000000","451.000000","492.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966854.000000",,,,, -"12451.000000","52.765000","12451.000000","52.765000","12451.000000","52.765000",,,,,,,,,,,,,,"62.000000","22429.000000","22367.000000","71.000000","22429.000000","22429.000000",,,,,,,,,,,"7917932.000000","9817912.000000","478824.000000","0.000000","66969888.000000","0.000000","87800908.000000",,"3623976.000000","24712128.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000",,,,,,,,"342.000000",,,,,,,,,,,,"3884.000000","815.000000","511.000000","592.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","596.000000","452.000000","491.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966874.000000",,,,, -"11363.000000","51.050000","11363.000000","51.050000","11363.000000","51.050000",,,,,,,,,,,,,,"70.000000","24537.000000","23454.000000","106.000000","24537.000000","24537.000000",,,,,,,,,,,"7959820.000000","9733972.000000","478820.000000","0.000000","66932996.000000","0.000000","87800856.000000",,"3623976.000000","24735804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000",,,,,,,,"364.000000","25185.000000",,,,,,,,,,,"3848.000000","811.000000","522.000000","587.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","593.000000","447.000000","487.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966894.000000",,,,, -"10900.000000","50.305000","10900.000000","50.305000","10900.000000","50.305000",,,,,,,,,,,,,,"70.000000","15666.000000","15687.000000","29.000000","15666.000000","15666.000000",,,,,,,,,,,"7854964.000000","9698316.000000","478820.000000","0.000000","66901428.000000","0.000000","87800856.000000",,"3623976.000000","24789348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000",,,,,,,,"209.000000","15366.000000",,,,,,,,,,,"3727.000000","804.000000","491.000000","588.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","588.000000","410.000000","484.000000","757.000000","504.000000","597.000000","160.000000","6000.000000",,"8966914.000000",,,,, -"11735.000000","51.605000","11735.000000","51.605000","11735.000000","51.605000",,,,,,,,,,,,,,"1016.000000","20944.500000","19346.000000","62.000000","20944.500000","20944.500000",,,,,,,,,,,"7729128.000000","9509580.000000","478820.000000","0.000000","66886012.000000","0.000000","87800856.000000",,"3623976.000000","24806176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000",,,,,,,,"1212.000000","20314.000000",,,,,,,,,,,"3865.000000","795.000000","493.000000","582.000000","1206.000000","611.000000","740.000000","0.000000","0.000000","0.000000","581.000000","402.000000","482.000000","752.000000","482.000000","597.000000","160.000000","6000.000000",,"8966934.000000",,,,, -"12085.000000","52.140000","12085.000000","52.140000","12085.000000","52.140000",,,,,,,,,,,,,,"338.000000","9518.500000","9041.000000","43.000000","9518.500000","9518.500000",,,,,,,,,,,"7645060.000000","9425512.000000","478820.000000","0.000000","66853052.000000","0.000000","87800672.000000",,"3623976.000000","24785492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000",,,,,,,,"454.000000","9204.000000",,,,,,,,,,,"3934.000000","789.000000","490.000000","569.000000","1206.000000","611.000000","652.000000","0.000000","0.000000","0.000000","577.000000","407.000000","471.000000","752.000000","482.000000","565.000000","160.000000","6000.000000",,"8966954.000000",,,,, -"15193.000000","57.000000","15193.000000","57.000000","15193.000000","57.000000",,,,,,,,,,,,,,"49.000000","7103.000000","6951.000000","12.000000","7103.000000","7103.000000",,,,,,,,,,,"7375308.000000","9092848.000000","478820.000000","0.000000","66839480.000000","0.000000","87800856.000000",,"3623976.000000","24752628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000",,,,,,,,"170.000000","7036.000000",,,,,,,,,,,"3991.000000","783.000000","538.000000","560.000000","1206.000000","900.000000","652.000000","0.000000","7.000000","0.000000","573.000000","434.000000","465.000000","750.000000","575.000000","565.000000","160.000000","6000.000000",,"8966974.000000",,,,, -"12048.000000","52.055000","12048.000000","52.055000","12048.000000","52.055000",,,,,,,,,,,,,,"74.000000","7662.000000","7312.000000","16.000000","7662.000000","7662.000000",,,,,,,,,,,"6987868.000000","8831228.000000","478820.000000","0.000000","66808224.000000","0.000000","87800808.000000",,"3623976.000000","24782224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000",,,,,,,,"195.000000","7743.000000",,,,,,,,,,,"3973.000000","775.000000","564.000000","543.000000","1206.000000","900.000000","629.000000","0.000000","7.000000","0.000000","569.000000","467.000000","456.000000","750.000000","712.000000","556.000000","160.000000","6000.000000",,"8966994.000000",,,,, -"14991.000000","56.655000","14991.000000","56.655000","14991.000000","56.655000",,,,,,,,,,,,,,"36.000000","2766.500000","2629.000000","33.000000","2766.500000","2766.500000",,,,,,,,,,,"7384152.000000","9420408.000000","478820.000000","0.000000","66784116.000000","0.000000","87800760.000000",,"3623976.000000","24866504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000",,,,,,,,"97.000000","2769.000000",,,,,,,,,,,"3940.000000","764.000000","599.000000","544.000000","1202.000000","900.000000","633.000000","0.000000","7.000000","0.000000","566.000000","492.000000","459.000000","750.000000","712.000000","565.000000","160.000000","6000.000000",,"8967014.000000",,,,, -"18747.000000","62.530000","18747.000000","62.530000","18747.000000","62.530000",,,,,,,,,,,,,,"68.000000","5449.000000","5294.000000","3.000000","5449.000000","5449.000000",,,,,,,,,,,"7215812.000000","9300572.000000","478820.000000","0.000000","66766724.000000","0.000000","87800760.000000",,"3623976.000000","24919992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000",,,,,,,,"225.000000","5310.000000",,,,,,,,,,,"4100.000000","762.000000","670.000000","559.000000","1202.000000","954.000000","837.000000","0.000000","0.000000","0.000000","564.000000","544.000000","465.000000","741.000000","730.000000","610.000000","160.000000","6000.000000",,"8967034.000000",,,,, -"16493.000000","58.985000","16493.000000","58.985000","16493.000000","58.985000",,,,,,,,,,,,,,"104.000000","8463.500000","8111.000000","3.000000","8463.500000","8463.500000",,,,,,,,,,,"6397920.000000","8272972.000000","478820.000000","0.000000","66738320.000000","0.000000","87800760.000000",,"3623976.000000","24953428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000",,,,,,,,"459.000000","8253.000000",,,,,,,,,,,"4178.000000","758.000000","775.000000","574.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","563.000000","588.000000","472.000000","741.000000","730.000000","660.000000","160.000000","6000.000000",,"8967054.000000",,,,, -"15192.000000","56.940000","15192.000000","56.940000","15192.000000","56.940000",,,,,,,,,,,,,,"92.000000","6764.000000","6479.000000","6.000000","6764.000000","6764.000000",,,,,,,,,,,"6314080.000000","7937476.000000","478820.000000","0.000000","66726904.000000","0.000000","87800808.000000",,"3623976.000000","24909208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000",,,,,,,,"192.000000","6765.000000",,,,,,,,,,,"3815.000000","754.000000","827.000000","587.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","559.000000","597.000000","476.000000","734.000000","730.000000","660.000000","160.000000","6000.000000",,"8967074.000000",,,,, -"10965.000000","50.310000","10965.000000","50.310000","10965.000000","50.310000",,,,,,,,,,,,,,"49.000000","2677.000000","2469.000000","5.000000","2677.000000","2677.000000",,,,,,,,,,,"6425216.000000","7903664.000000","478820.000000","0.000000","66701176.000000","0.000000","87800808.000000",,"3623976.000000","24937724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000",,,,,,,,"86.000000","2748.000000",,,,,,,,,,,"3946.000000","749.000000","730.000000","586.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","555.000000","541.000000","476.000000","734.000000","729.000000","660.000000","160.000000","6000.000000",,"8967094.000000",,,,, -"10826.000000","50.085000","10826.000000","50.085000","10826.000000","50.085000",,,,,,,,,,,,,,"1642.000000","8049.500000","6264.000000","10.000000","8049.500000","8049.500000",,,,,,,,,,,"6173560.000000","7505212.000000","478820.000000","0.000000","66689824.000000","0.000000","87800808.000000",,"3623976.000000","24948272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000",,,,,,,,"1754.000000","6439.000000",,,,,,,,,,,"3770.000000","733.000000","558.000000","580.000000","1155.000000","832.000000","873.000000","0.000000","0.000000","0.000000","546.000000","443.000000","470.000000","730.000000","583.000000","660.000000","160.000000","6000.000000",,"8967114.000000",,,,, -"10385.000000","49.380000","10385.000000","49.380000","10385.000000","49.380000",,,,,,,,,,,,,,"44.000000","6349.500000","5817.000000","5.000000","6349.500000","6349.500000",,,,,,,,,,,"6005648.000000","7505072.000000","478820.000000","0.000000","66668940.000000","0.000000","87800668.000000",,"3623976.000000","24922572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000",,,,,,,,"194.000000","6643.000000",,,,,,,,,,,"3755.000000","725.000000","449.000000","577.000000","1155.000000","731.000000","873.000000","0.000000","0.000000","0.000000","541.000000","387.000000","466.000000","730.000000","566.000000","660.000000","160.000000","6000.000000",,"8967134.000000",,,,, -"10301.000000","49.255000","10301.000000","49.255000","10301.000000","49.255000",,,,,,,,,,,,,,"50.000000","6442.000000","5522.000000","13.000000","6442.000000","6442.000000",,,,,,,,,,,"6211112.000000","7662300.000000","478820.000000","0.000000","66673412.000000","0.000000","87800668.000000",,"3623976.000000","24938412.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000",,,,,,,,"264.000000","7048.000000",,,,,,,,,,,"3854.000000","716.000000","416.000000","569.000000","1155.000000","521.000000","873.000000","0.000000","0.000000","0.000000","535.000000","363.000000","458.000000","730.000000","442.000000","660.000000","160.000000","6000.000000",,"8967154.000000",,,,, -"12649.000000","52.920000","12649.000000","52.920000","12649.000000","52.920000",,,,,,,,,,,,,,"79.000000","11152.000000","10820.000000","35.000000","11152.000000","11152.000000",,,,,,,,,,,"5917652.000000","7243008.000000","478820.000000","0.000000","66652912.000000","0.000000","87800808.000000",,"3623976.000000","24958816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000",,,,,,,,"219.000000","11184.000000",,,,,,,,,,,"3851.000000","703.000000","456.000000","569.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","528.000000","391.000000","458.000000","730.000000","521.000000","660.000000","160.000000","6000.000000",,"8967174.000000",,,,, -"9726.000000","48.330000","9726.000000","48.330000","9726.000000","48.330000",,,,,,,,,,,,,,"51.000000","7134.000000","6917.000000","17.000000","7134.000000","7134.000000",,,,,,,,,,,"6022508.000000","7536608.000000","478820.000000","0.000000","66621496.000000","0.000000","87800840.000000",,"3623976.000000","24982788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000",,,,,,,,"151.000000","7149.000000",,,,,,,,,,,"3883.000000","693.000000","440.000000","561.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","522.000000","384.000000","453.000000","729.000000","521.000000","660.000000","160.000000","6000.000000",,"8967194.000000",,,,, -"11940.000000","51.780000","11940.000000","51.780000","11940.000000","51.780000",,,,,,,,,,,,,,"47.000000","8478.000000","8222.000000","19.000000","8478.000000","8478.000000",,,,,,,,,,,"6085420.000000","7708544.000000","478820.000000","0.000000","66596196.000000","0.000000","87800840.000000",,"3623976.000000","25134896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000",,,,,,,,"177.000000","8510.000000",,,,,,,,,,,"3950.000000","687.000000","475.000000","566.000000","1155.000000","609.000000","873.000000","0.000000","0.000000","0.000000","517.000000","407.000000","458.000000","720.000000","521.000000","660.000000","160.000000","6000.000000",,"8967214.000000",,,,, -"11641.000000","51.330000","11641.000000","51.330000","11641.000000","51.330000",,,,,,,,,,,,,,"67.000000","9655.000000","9443.000000","16.000000","9655.000000","9655.000000",,,,,,,,,,,"5771460.000000","7421116.000000","478820.000000","0.000000","66627168.000000","0.000000","87870452.000000",,"3623976.000000","25171740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000",,,,,,,,"171.000000","9628.000000",,,,,,,,,,,"3817.000000","671.000000","454.000000","561.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","510.000000","390.000000","456.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967234.000000",,,,, -"8580.000000","46.515000","8580.000000","46.515000","8580.000000","46.515000",,,,,,,,,,,,,,"391.000000","2757.000000","2393.000000","3.000000","2757.000000","2757.000000",,,,,,,,,,,"5645628.000000","7001684.000000","478820.000000","0.000000","66588096.000000","0.000000","87870452.000000",,"3623976.000000","25245616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000",,,,,,,,"374.000000","2355.000000",,,,,,,,,,,"3843.000000","661.000000","448.000000","552.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","503.000000","387.000000","449.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967254.000000",,,,, -"12589.000000","52.785000","12589.000000","52.785000","12589.000000","52.785000",,,,,,,,,,,,,,"56.000000","10555.500000","10279.000000","26.000000","10555.500000","10555.500000",,,,,,,,,,,"5093468.000000","6396556.000000","478820.000000","0.000000","66566464.000000","0.000000","87870452.000000",,"3623976.000000","25281304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000",,,,,,,,"179.000000","10597.000000",,,,,,,,,,,"3898.000000","641.000000","423.000000","543.000000","1096.000000","634.000000","869.000000","0.000000","0.000000","0.000000","495.000000","372.000000","445.000000","712.000000","502.000000","660.000000","160.000000","6000.000000",,"8967274.000000",,,,, -"12696.000000","52.955000","12696.000000","52.955000","12696.000000","52.955000",,,,,,,,,,,,,,"53.000000","5177.000000","4927.000000","9.000000","5177.000000","5177.000000",,,,,,,,,,,"5369800.000000","6630948.000000","478820.000000","0.000000","66571348.000000","0.000000","87874160.000000",,"3623976.000000","25299696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000",,,,,,,,"138.000000","5235.000000",,,,,,,,,,,"3888.000000","630.000000","461.000000","541.000000","1021.000000","672.000000","837.000000","0.000000","0.000000","0.000000","490.000000","401.000000","443.000000","710.000000","549.000000","631.000000","160.000000","6000.000000",,"8967294.000000",,,,, -"11692.000000","51.355000","11692.000000","51.355000","11692.000000","51.355000",,,,,,,,,,,,,,"105.000000","5473.000000","5203.000000","14.000000","5473.000000","5473.000000",,,,,,,,,,,"5282204.000000","6606264.000000","478820.000000","0.000000","66517724.000000","0.000000","87870452.000000",,"3623976.000000","25321244.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000",,,,,,,,"159.000000","5479.000000",,,,,,,,,,,"3877.000000","613.000000","485.000000","530.000000","990.000000","672.000000","832.000000","0.000000","0.000000","0.000000","483.000000","419.000000","435.000000","676.000000","549.000000","583.000000","160.000000","6000.000000",,"8967314.000000",,,,, -"12428.000000","52.500000","12428.000000","52.500000","12428.000000","52.500000",,,,,,,,,,,,,,"62.000000","5729.000000","5666.000000","5.000000","5729.000000","5729.000000",,,,,,,,,,,"5296196.000000","6578312.000000","478820.000000","0.000000","66501136.000000","0.000000","87870452.000000",,"3623976.000000","25290932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000",,,,,,,,"182.000000",,,,,,,,,,,,"3901.000000","594.000000","518.000000","513.000000","873.000000","672.000000","731.000000","0.000000","0.000000","0.000000","478.000000","438.000000","424.000000","660.000000","549.000000","549.000000","160.000000","6000.000000",,"8967334.000000",,,,, -"13638.000000","54.380000","13638.000000","54.380000","13638.000000","54.380000",,,,,,,,,,,,,,"48.000000","8280.500000","7889.000000","10.000000","8280.500000","8280.500000",,,,,,,,,,,"4709000.000000","5897312.000000","478820.000000","0.000000","66476892.000000","0.000000","87870452.000000",,"3623976.000000","25314276.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000",,,,,,,,"521.000000","8102.000000",,,,,,,,,,,"3904.000000","576.000000","497.000000","485.000000","816.000000","614.000000","672.000000","0.000000","0.000000","0.000000","470.000000","434.000000","412.000000","597.000000","538.000000","538.000000","160.000000","6000.000000",,"8967354.000000",,,,, -"11664.000000","51.260000","11664.000000","51.260000","11664.000000","51.260000",,,,,,,,,,,,,,"37.000000","4794.000000","3887.000000","7.000000","4794.000000","4794.000000",,,,,,,,,,,"4621092.000000","5850508.000000","478820.000000","0.000000","66414684.000000","0.000000","87853432.000000",,"3623976.000000","25366512.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000",,,,,,,,"210.000000","5453.000000",,,,,,,,,,,"3913.000000","559.000000","511.000000","466.000000","765.000000","614.000000","609.000000","0.000000","0.000000","0.000000","463.000000","440.000000","404.000000","576.000000","538.000000","521.000000","160.000000","6000.000000",,"8967374.000000",,,,, -"10981.000000","50.180000","10981.000000","50.180000","10981.000000","50.180000",,,,,,,,,,,,,,"49.000000","6164.000000","5595.000000","8.000000","6164.000000","6164.000000",,,,,,,,,,,"4523840.000000","5648404.000000","478820.000000","0.000000","66395240.000000","0.000000","87853684.000000",,"3623976.000000","25358732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000",,,,,,,,"197.000000","6485.000000",,,,,,,,,,,"3741.000000","552.000000","498.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","460.000000","431.000000","402.000000","570.000000","538.000000","504.000000","160.000000","6000.000000",,"8967394.000000",,,,, -"10288.000000","49.080000","10288.000000","49.080000","10288.000000","49.080000",,,,,,,,,,,,,,"54.000000","5498.000000","5400.000000","3.000000","5498.000000","5498.000000",,,,,,,,,,,"4607728.000000","5837148.000000","478820.000000","0.000000","66363524.000000","0.000000","87853684.000000",,"3623976.000000","25392204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000",,,,,,,,"136.000000","5405.000000",,,,,,,,,,,"3855.000000","546.000000","444.000000","463.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","455.000000","384.000000","400.000000","566.000000","466.000000","504.000000","160.000000","6000.000000",,"8967414.000000",,,,, -"10870.000000","49.975000","10870.000000","49.975000","10870.000000","49.975000",,,,,,,,,,,,,,"36.000000","7411.500000","7242.000000","15.000000","7411.500000","7411.500000",,,,,,,,,,,"4524600.000000","6173448.000000","478820.000000","0.000000","66331604.000000","0.000000","87854440.000000",,"3623976.000000","25493928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000",,,,,,,,"151.000000","7393.000000",,,,,,,,,,,"3810.000000","544.000000","444.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","453.000000","381.000000","402.000000","566.000000","464.000000","504.000000","160.000000","6000.000000",,"8967434.000000",,,,, -"10712.000000","49.710000","10712.000000","49.710000","10712.000000","49.710000",,,,,,,,,,,,,,"52.000000","6503.000000","6188.000000","8.000000","6503.000000","6503.000000",,,,,,,,,,,"4544820.000000","6207828.000000","478820.000000","0.000000","66293944.000000","0.000000","87853688.000000",,"3623976.000000","25440836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000",,,,,,,,"152.000000","6613.000000",,,,,,,,,,,"3690.000000","543.000000","418.000000","466.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","451.000000","368.000000","403.000000","566.000000","405.000000","504.000000","160.000000","6000.000000",,"8967454.000000",,,,, -"10792.000000","49.820000","10792.000000","49.820000","10792.000000","49.820000",,,,,,,,,,,,,,"32.000000","6038.500000","4909.000000","30.000000","6038.500000","6038.500000",,,,,,,,,,,"4963464.000000","6804012.000000","478820.000000","0.000000","66262272.000000","0.000000","87849984.000000",,"3623976.000000","25467536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000",,,,,,,,"229.000000","6907.000000",,,,,,,,,,,"3843.000000","539.000000","430.000000","457.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","449.000000","378.000000","397.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967474.000000",,,,, -"9334.000000","47.525000","9334.000000","47.525000","9334.000000","47.525000",,,,,,,,,,,,,,"100.000000","4140.000000","3488.000000","80.000000","4140.000000","4140.000000",,,,,,,,,,,"4994228.000000","6699040.000000","478820.000000","0.000000","66239128.000000","0.000000","87849868.000000",,"3623976.000000","25373720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000",,,,,,,,"152.000000","4540.000000",,,,,,,,,,,"3774.000000","535.000000","391.000000","456.000000","740.000000","472.000000","608.000000","0.000000","0.000000","0.000000","446.000000","355.000000","396.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967494.000000",,,,, -"7998.000000","45.425000","7998.000000","45.425000","7998.000000","45.425000",,,,,,,,,,,,,,"48.000000","3174.000000","2973.000000","40.000000","3174.000000","3174.000000",,,,,,,,,,,"4945516.000000","6650324.000000","478820.000000","0.000000","66231912.000000","0.000000","87849868.000000",,"3623976.000000","25435964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000",,,,,,,,"124.000000","3202.000000",,,,,,,,,,,"3731.000000","533.000000","367.000000","445.000000","740.000000","445.000000","605.000000","0.000000","0.000000","0.000000","444.000000","337.000000","389.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967514.000000",,,,, -"11281.000000","50.560000","11281.000000","50.560000","11281.000000","50.560000",,,,,,,,,,,,,,"36.000000","6385.000000","6333.000000","12.000000","6385.000000","6385.000000",,,,,,,,,,,"4358316.000000","5979240.000000","478820.000000","0.000000","66211888.000000","0.000000","87849868.000000",,"3623976.000000","25452824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000",,,,,,,,"136.000000","6264.000000",,,,,,,,,,,"3771.000000","528.000000","369.000000","440.000000","731.000000","495.000000","599.000000","0.000000","0.000000","0.000000","441.000000","337.000000","387.000000","566.000000","448.000000","495.000000","160.000000","6000.000000",,"8967534.000000",,,,, -"8572.000000","46.305000","8572.000000","46.305000","8572.000000","46.305000",,,,,,,,,,,,,,"318.000000","3452.500000","3031.000000","14.000000","3452.500000","3452.500000",,,,,,,,,,,"3917920.000000","5790500.000000","478820.000000","0.000000","66192312.000000","0.000000","87849868.000000",,"3623976.000000","25614016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000",,,,,,,,"376.000000","3178.000000",,,,,,,,,,,"3733.000000","520.000000","362.000000","439.000000","711.000000","495.000000","599.000000","0.000000","0.000000","0.000000","435.000000","326.000000","384.000000","559.000000","448.000000","495.000000","160.000000","6000.000000",,"8967554.000000",,,,, -"14927.000000","56.315000","14927.000000","56.315000","14927.000000","56.315000",,,,,,,,,,,,,,"48.000000","9044.500000","8952.000000","15.000000","9044.500000","9044.500000",,,,,,,,,,,"4274780.000000","5895708.000000","478820.000000","0.000000","66307388.000000","0.000000","87850216.000000",,"3623976.000000","25514036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000",,,,,,,,"176.000000","8912.000000",,,,,,,,,,,"4017.000000","518.000000","447.000000","450.000000","707.000000","686.000000","608.000000","0.000000","0.000000","0.000000","434.000000","387.000000","392.000000","558.000000","558.000000","528.000000","160.000000","6000.000000",,"8967574.000000",,,,, -"13174.000000","53.565000","13174.000000","53.565000","13174.000000","53.565000",,,,,,,,,,,,,,"48.000000","12146.500000","11717.000000","26.000000","12146.500000","12146.500000",,,,,,,,,,,"4270640.000000","6576852.000000","478820.000000","0.000000","66290108.000000","0.000000","87849868.000000",,"3623976.000000","25530144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000",,,,,,,,"186.000000","12341.000000",,,,,,,,,,,"4042.000000","510.000000","494.000000","447.000000","690.000000","686.000000","587.000000","0.000000","0.000000","0.000000","430.000000","429.000000","392.000000","549.000000","558.000000","504.000000","160.000000","6000.000000",,"8967594.000000",,,,, -"15060.000000","56.510000","15060.000000","56.510000","15060.000000","56.510000",,,,,,,,,,,,,,"48.000000","7737.500000","7021.000000","17.000000","7737.500000","7737.500000",,,,,,,,,,,"4354524.000000","6607732.000000","478820.000000","0.000000","66271380.000000","0.000000","87849868.000000",,"3623976.000000","25570712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000",,,,,,,,"222.000000","8182.000000",,,,,,,,,,,"4029.000000","511.000000","593.000000","460.000000","704.000000","716.000000","614.000000","0.000000","0.000000","0.000000","432.000000","508.000000","402.000000","555.000000","564.000000","538.000000","160.000000","6000.000000",,"8967614.000000",,,,, -"15684.000000","57.475000","15684.000000","57.475000","15684.000000","57.475000",,,,,,,,,,,,,,"51.000000","5488.500000","4655.000000","9.000000","5488.500000","5488.500000",,,,,,,,,,,"4249664.000000","6523844.000000","478820.000000","0.000000","66249104.000000","0.000000","87849868.000000",,"3623976.000000","25571044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000",,,,,,,,"210.000000","6060.000000",,,,,,,,,,,"3898.000000","512.000000","592.000000","464.000000","704.000000","716.000000","641.000000","0.000000","0.000000","0.000000","432.000000","511.000000","407.000000","554.000000","564.000000","549.000000","160.000000","6000.000000",,"8967634.000000",,,,, -"15315.000000","56.900000","15315.000000","56.900000","15315.000000","56.900000",,,,,,,,,,,,,,"35.000000","8737.500000","8573.000000","6.000000","8737.500000","8737.500000",,,,,,,,,,,"3607628.000000","5532068.000000","478820.000000","0.000000","66248520.000000","0.000000","87849868.000000",,"3623976.000000","25575264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000",,,,,,,,"513.000000","8352.000000",,,,,,,,,,,"4115.000000","512.000000","644.000000","476.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","432.000000","540.000000","414.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967654.000000",,,,, -"14183.000000","55.105000","14183.000000","55.105000","14183.000000","55.105000",,,,,,,,,,,,,,"95.000000","6812.500000","6489.000000","19.000000","6812.500000","6812.500000",,,,,,,,,,,"3775404.000000","5217496.000000","478820.000000","0.000000","66210468.000000","0.000000","87849868.000000",,"3623976.000000","25592028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000",,,,,,,,"128.000000","6912.000000",,,,,,,,,,,"4031.000000","512.000000","622.000000","483.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","433.000000","526.000000","419.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967674.000000",,,,, -"13099.000000","53.405000","13099.000000","53.405000","13099.000000","53.405000",,,,,,,,,,,,,,"55.000000","6356.500000","6076.000000","17.000000","6356.500000","6356.500000",,,,,,,,,,,"3901232.000000","5301664.000000","478820.000000","0.000000","66203544.000000","0.000000","87849868.000000",,"3623976.000000","25616976.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000",,,,,,,,"167.000000","6414.000000",,,,,,,,,,,"3994.000000","514.000000","622.000000","489.000000","704.000000","775.000000","670.000000","0.000000","0.000000","0.000000","434.000000","523.000000","425.000000","555.000000","597.000000","555.000000","160.000000","6000.000000",,"8967694.000000",,,,, -"13518.000000","54.055000","13518.000000","54.055000","13518.000000","54.055000",,,,,,,,,,,,,,"38.000000","11105.500000","10855.000000","28.000000","11105.500000","11105.500000",,,,,,,,,,,"4945520.000000","6182468.000000","478820.000000","0.000000","66190404.000000","0.000000","87849868.000000",,"3623976.000000","25628252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000",,,,,,,,"169.000000","11147.000000",,,,,,,,,,,"3968.000000","515.000000","568.000000","501.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","435.000000","490.000000","435.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967714.000000",,,,, -"12668.000000","52.705000","12668.000000","52.705000","12668.000000","52.705000",,,,,,,,,,,,,,"34.000000","5754.500000","5531.000000","5.000000","5754.500000","5754.500000",,,,,,,,,,,"4882464.000000","6182324.000000","478820.000000","0.000000","66164976.000000","0.000000","87849728.000000",,"3623976.000000","25665984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000",,,,,,,,"160.000000","5783.000000",,,,,,,,,,,"4008.000000","516.000000","559.000000","505.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","436.000000","479.000000","439.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967734.000000",,,,, -"12957.000000","53.160000","12957.000000","53.160000","12957.000000","53.160000",,,,,,,,,,,,,,"54.000000","6243.000000","5878.000000","8.000000","6243.000000","6243.000000",,,,,,,,,,,"4903436.000000","6098440.000000","478820.000000","0.000000","66162728.000000","0.000000","87849728.000000",,"3623976.000000","25638800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000",,,,,,,,"177.000000","6377.000000",,,,,,,,,,,"3799.000000","515.000000","519.000000","509.000000","704.000000","569.000000","670.000000","0.000000","0.000000","0.000000","434.000000","450.000000","441.000000","554.000000","514.000000","555.000000","160.000000","6000.000000",,"8967754.000000",,,,, -"11634.000000","51.085000","11634.000000","51.085000","11634.000000","51.085000",,,,,,,,,,,,,,"36.000000","3772.000000","3561.000000","28.000000","3772.000000","3772.000000",,,,,,,,,,,"4641876.000000","6021324.000000","478820.000000","0.000000","66147680.000000","0.000000","87849728.000000",,"3623976.000000","25652628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000",,,,,,,,"108.000000","3838.000000",,,,,,,,,,,"3964.000000","514.000000","506.000000","516.000000","704.000000","611.000000","670.000000","0.000000","0.000000","0.000000","434.000000","438.000000","447.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967774.000000",,,,, -"13363.000000","53.775000","13363.000000","53.775000","13363.000000","53.775000",,,,,,,,,,,,,,"86.000000","6921.000000","6622.000000","9.000000","6921.000000","6921.000000",,,,,,,,,,,"4600072.000000","5937580.000000","478820.000000","0.000000","66120256.000000","0.000000","87849868.000000",,"3623976.000000","25687888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000",,,,,,,,"186.000000","6947.000000",,,,,,,,,,,"4022.000000","516.000000","524.000000","532.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","449.000000","458.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967794.000000",,,,, -"11976.000000","51.590000","11976.000000","51.590000","11976.000000","51.590000",,,,,,,,,,,,,,"36.000000","5718.000000","5575.000000","14.000000","5718.000000","5718.000000",,,,,,,,,,,"4516184.000000","5916612.000000","478820.000000","0.000000","66093600.000000","0.000000","87849868.000000",,"3623976.000000","25714908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000",,,,,,,,"115.000000","5709.000000",,,,,,,,,,,"3946.000000","517.000000","520.000000","540.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","437.000000","451.000000","464.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967814.000000",,,,, -"10442.000000","49.175000","10442.000000","49.175000","10442.000000","49.175000",,,,,,,,,,,,,,"51.000000","11694.500000","11114.000000","62.000000","11694.500000","11694.500000",,,,,,,,,,,"4274432.000000","5811756.000000","478820.000000","0.000000","66075464.000000","0.000000","87849868.000000",,"3623976.000000","25732240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000",,,,,,,,"202.000000","12021.000000",,,,,,,,,,,"3913.000000","514.000000","495.000000","541.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","431.000000","466.000000","554.000000","545.000000","555.000000","160.000000","6000.000000",,"8967834.000000",,,,, -"8853.000000","46.670000","8853.000000","46.670000","8853.000000","46.670000",,,,,,,,,,,,,,"319.000000","4361.500000","3101.000000","5.000000","4361.500000","4361.500000",,,,,,,,,,,"4169532.000000","5664912.000000","478820.000000","0.000000","66044904.000000","0.000000","87849824.000000",,"3623976.000000","25773748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000",,,,,,,,"486.000000","4816.000000",,,,,,,,,,,"3778.000000","511.000000","414.000000","542.000000","704.000000","542.000000","685.000000","0.000000","0.000000","0.000000","433.000000","369.000000","466.000000","554.000000","462.000000","555.000000","160.000000","6000.000000",,"8967854.000000",,,,, -"13358.000000","53.730000","13358.000000","53.730000","13358.000000","53.730000",,,,,,,,,,,,,,"103.000000","6442.500000","6322.000000","6.000000","6442.500000","6442.500000",,,,,,,,,,,"4085648.000000","5664628.000000","478820.000000","0.000000","66037096.000000","0.000000","87849824.000000",,"3623976.000000","25797256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000",,,,,,,,"162.000000","6297.000000",,,,,,,,,,,"3727.000000","509.000000","423.000000","535.000000","690.000000","632.000000","664.000000","0.000000","0.000000","0.000000","432.000000","361.000000","459.000000","554.000000","462.000000","554.000000","160.000000","6000.000000",,"8967874.000000",,,,, -"13508.000000","53.945000","13508.000000","53.945000","13508.000000","53.945000",,,,,,,,,,,,,,"199.000000","8706.000000","8249.000000","18.000000","8706.000000","8706.000000",,,,,,,,,,,"4224960.000000","5656268.000000","478820.000000","0.000000","65999752.000000","0.000000","87828216.000000",,"3623976.000000","25814048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000",,,,,,,,"335.000000","8628.000000",,,,,,,,,,,"3876.000000","512.000000","529.000000","548.000000","704.000000","986.000000","690.000000","0.000000","0.000000","0.000000","433.000000","417.000000","463.000000","554.000000","677.000000","555.000000","160.000000","6000.000000",,"8967894.000000",,,,, -"11892.000000","51.395000","11892.000000","51.395000","11892.000000","51.395000",,,,,,,,,,,,,,"90.000000","3874.500000","3762.000000","15.000000","3874.500000","3874.500000",,,,,,,,,,,"4644392.000000","6243468.000000","478820.000000","0.000000","65971960.000000","0.000000","87828216.000000",,"3623976.000000","25835552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000",,,,,,,,"97.000000","3798.000000",,,,,,,,,,,"3936.000000","508.000000","557.000000","535.000000","690.000000","986.000000","685.000000","0.000000","0.000000","0.000000","430.000000","448.000000","454.000000","550.000000","677.000000","554.000000","160.000000","6000.000000",,"8967914.000000",,,,, -"12535.000000","52.400000","12535.000000","52.400000","12535.000000","52.400000",,,,,,,,,,,,,,"49.000000","5684.000000","5565.000000","8.000000","5684.000000","5684.000000",,,,,,,,,,,"4728280.000000","6285412.000000","478816.000000","0.000000","65964764.000000","0.000000","87828220.000000",,"3623976.000000","25810316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000",,,,,,,,"134.000000","5619.000000",,,,,,,,,,,"3861.000000","502.000000","560.000000","529.000000","685.000000","986.000000","685.000000","0.000000","0.000000","0.000000","427.000000","468.000000","450.000000","549.000000","677.000000","550.000000","160.000000","6000.000000",,"8967934.000000",,,,, -"13866.000000","54.475000","13866.000000","54.475000","13866.000000","54.475000",,,,,,,,,,,,,,"43.000000","9066.000000","8537.000000","8.000000","9066.000000","9066.000000",,,,,,,,,,,"4503648.000000","6055844.000000","478816.000000","0.000000","65935488.000000","0.000000","87819552.000000",,"3623976.000000","25831692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000",,,,,,,,"537.000000","9015.000000",,,,,,,,,,,"3901.000000","494.000000","503.000000","520.000000","660.000000","636.000000","660.000000","0.000000","0.000000","0.000000","423.000000","442.000000","444.000000","544.000000","531.000000","537.000000","160.000000","6000.000000",,"8967954.000000",,,,, -"11118.000000","50.145000","11118.000000","50.145000","11118.000000","50.145000",,,,,,,,,,,,,,"36.000000","2657.000000","2657.000000","10.000000","2657.000000","2657.000000",,,,,,,,,,,"3892684.000000","5276376.000000","478816.000000","0.000000","65885172.000000","0.000000","87804884.000000",,"3623976.000000","25767356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000",,,,,,,,"79.000000","2542.000000",,,,,,,,,,,"3873.000000","487.000000","504.000000","512.000000","636.000000","636.000000","660.000000","0.000000","0.000000","0.000000","420.000000","437.000000","437.000000","538.000000","531.000000","531.000000","160.000000","6000.000000",,"8967974.000000",,,,, -"10956.000000","49.870000","10956.000000","49.870000","10956.000000","49.870000",,,,,,,,,,,,,,"49.000000","5939.500000","5600.000000","18.000000","5939.500000","5939.500000",,,,,,,,,,,"3955596.000000","5318604.000000","478816.000000","0.000000","65854352.000000","0.000000","87804884.000000",,"3623976.000000","25845340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000",,,,,,,,"162.000000","6066.000000",,,,,,,,,,,"3923.000000","486.000000","488.000000","502.000000","636.000000","636.000000","636.000000","0.000000","0.000000","0.000000","419.000000","425.000000","431.000000","537.000000","531.000000","518.000000","160.000000","6000.000000",,"8967994.000000",,,,, -"10419.000000","49.020000","10419.000000","49.020000","10419.000000","49.020000",,,,,,,,,,,,,,"35.000000","6299.000000","6263.000000","5.000000","6299.000000","6299.000000",,,,,,,,,,,"3974568.000000","5192772.000000","478816.000000","0.000000","65825412.000000","0.000000","87804884.000000",,"3623976.000000","25872800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000",,,,,,,,"141.000000",,,,,,,,,,,,"3687.000000","485.000000","433.000000","493.000000","636.000000","548.000000","636.000000","0.000000","0.000000","0.000000","419.000000","383.000000","422.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968014.000000",,,,, -"11342.000000","50.465000","11342.000000","50.465000","11342.000000","50.465000",,,,,,,,,,,,,,"37.000000","7009.000000","6667.000000","3.000000","7009.000000","7009.000000",,,,,,,,,,,"3996292.000000","5487124.000000","478816.000000","0.000000","65833848.000000","0.000000","87805636.000000",,"3623976.000000","25921028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000",,,,,,,,"184.000000","7129.000000",,,,,,,,,,,"3720.000000","487.000000","445.000000","489.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","420.000000","389.000000","419.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968034.000000",,,,, -"10118.000000","48.555000","10118.000000","48.555000","10118.000000","48.555000",,,,,,,,,,,,,,"51.000000","5584.000000","5459.000000","8.000000","5584.000000","5584.000000",,,,,,,,,,,"4184284.000000","5612200.000000","478816.000000","0.000000","65846336.000000","0.000000","87804884.000000",,"3623976.000000","25931788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000",,,,,,,,"169.000000","5488.000000",,,,,,,,,,,"3817.000000","486.000000","419.000000","482.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","419.000000","365.000000","414.000000","537.000000","491.000000","518.000000","160.000000","6000.000000",,"8968054.000000",,,,, -"9994.000000","48.350000","9994.000000","48.350000","9994.000000","48.350000",,,,,,,,,,,,,,"100.000000","4551.500000","4384.000000","4.000000","4551.500000","4551.500000",,,,,,,,,,,"3954452.000000","5525584.000000","478816.000000","0.000000","65824024.000000","0.000000","87804884.000000",,"3623976.000000","25951828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000",,,,,,,,"119.000000","4500.000000",,,,,,,,,,,"3889.000000","483.000000","416.000000","475.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","417.000000","366.000000","408.000000","537.000000","491.000000","515.000000","160.000000","6000.000000",,"8968074.000000",,,,, -"9813.000000","48.055000","9813.000000","48.055000","9813.000000","48.055000",,,,,,,,,,,,,,"38.000000","6231.500000","5114.000000","3.000000","6231.500000","6231.500000",,,,,,,,,,,"3996368.000000","5399728.000000","478804.000000","0.000000","65801584.000000","0.000000","87804868.000000",,"3623976.000000","25977636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000",,,,,,,,"225.000000","7086.000000",,,,,,,,,,,"3735.000000","484.000000","402.000000","465.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","418.000000","356.000000","400.000000","537.000000","438.000000","500.000000","160.000000","6000.000000",,"8968094.000000",,,,, -"10511.000000","49.145000","10511.000000","49.145000","10511.000000","49.145000",,,,,,,,,,,,,,"33.000000","5589.500000","5302.000000","6.000000","5589.500000","5589.500000",,,,,,,,,,,"4059280.000000","5357500.000000","478804.000000","0.000000","65787580.000000","0.000000","87804868.000000",,"3623976.000000","26014472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000",,,,,,,,"164.000000","5679.000000",,,,,,,,,,,"3880.000000","481.000000","408.000000","459.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","417.000000","365.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968114.000000",,,,, -"10858.000000","49.675000","10858.000000","49.675000","10858.000000","49.675000",,,,,,,,,,,,,,"40.000000","5510.000000","5280.000000","3.000000","5510.000000","5510.000000",,,,,,,,,,,"3815092.000000","5284672.000000","478804.000000","0.000000","65766724.000000","0.000000","87804868.000000",,"3623976.000000","26034348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000",,,,,,,,"137.000000","5563.000000",,,,,,,,,,,"3869.000000","480.000000","408.000000","458.000000","636.000000","508.000000","632.000000","0.000000","0.000000","0.000000","416.000000","367.000000","395.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968134.000000",,,,, -"9614.000000","47.720000","9614.000000","47.720000","9614.000000","47.720000",,,,,,,,,,,,,,"316.000000","5480.500000","5092.000000","7.000000","5480.500000","5480.500000",,,,,,,,,,,"3479684.000000","4928296.000000","478804.000000","0.000000","65749604.000000","0.000000","87805008.000000",,"3623976.000000","26010844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000",,,,,,,,"397.000000","5155.000000",,,,,,,,,,,"3746.000000","480.000000","390.000000","460.000000","636.000000","497.000000","632.000000","0.000000","0.000000","0.000000","416.000000","355.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968154.000000",,,,, -"11861.000000","51.370000","11861.000000","51.370000","11861.000000","51.370000",,,,,,,,,,,,,,"33.000000","4718.000000","4410.000000","10.000000","4718.000000","4718.000000",,,,,,,,,,,"3647456.000000","5075100.000000","478804.000000","0.000000","66006064.000000","0.000000","87805008.000000",,"3623976.000000","25781772.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000",,,,,,,,"133.000000","4858.000000",,,,,,,,,,,"3994.000000","480.000000","407.000000","456.000000","636.000000","497.000000","585.000000","0.000000","0.000000","0.000000","416.000000","366.000000","398.000000","537.000000","454.000000","500.000000","160.000000","6000.000000",,"8968174.000000",,,,, -"18266.000000","61.410000","18266.000000","61.410000","18266.000000","61.410000",,,,,,,,,,,,,,"51.000000","8352.000000","8224.000000","3.000000","8352.000000","8352.000000",,,,,,,,,,,"4583268.000000","5695828.000000","478804.000000","0.000000","66029144.000000","0.000000","87779372.000000",,"3623976.000000","25696700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000",,,,,,,,"176.000000","8252.000000",,,,,,,,,,,"4111.000000","489.000000","595.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","472.000000","406.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968194.000000",,,,, -"11136.000000","50.235000","11136.000000","50.235000","11136.000000","50.235000",,,,,,,,,,,,,,"51.000000","3388.500000","3212.000000","5.000000","3388.500000","3388.500000",,,,,,,,,,,"4646048.000000","5706752.000000","478800.000000","0.000000","66017400.000000","0.000000","87779236.000000",,"3623976.000000","25739568.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000",,,,,,,,"101.000000","3412.000000",,,,,,,,,,,"3779.000000","489.000000","615.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","490.000000","405.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968214.000000",,,,, -"10831.000000","49.755000","10831.000000","49.755000","10831.000000","49.755000",,,,,,,,,,,,,,"94.000000","1560.000000","1350.000000","7.000000","1560.000000","1560.000000",,,,,,,,,,,"4646048.000000","5748976.000000","478796.000000","0.000000","66006616.000000","0.000000","87779240.000000",,"3623976.000000","25747880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000",,,,,,,,"114.000000","1561.000000",,,,,,,,,,,"3903.000000","486.000000","604.000000","465.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","419.000000","482.000000","400.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968234.000000",,,,, -"13443.000000","53.835000","13443.000000","53.835000","13443.000000","53.835000",,,,,,,,,,,,,,"40.000000","8005.500000","7738.000000","24.000000","8005.500000","8005.500000",,,,,,,,,,,"5116848.000000","6327928.000000","478796.000000","0.000000","65987492.000000","0.000000","87779300.000000",,"3623976.000000","25746776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000",,,,,,,,"501.000000","7730.000000",,,,,,,,,,,"3871.000000","486.000000","459.000000","462.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","419.000000","410.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968254.000000",,,,, -"11103.000000","50.160000","11103.000000","50.160000","11103.000000","50.160000",,,,,,,,,,,,,,"37.000000","4755.000000","4317.000000","2.000000","4755.000000","4755.000000",,,,,,,,,,,"4991032.000000","6212024.000000","478796.000000","0.000000","65967172.000000","0.000000","87779312.000000",,"3623976.000000","25780384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000",,,,,,,,"124.000000","5031.000000",,,,,,,,,,,"3911.000000","486.000000","464.000000","463.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","406.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968274.000000",,,,, -"10948.000000","49.915000","10948.000000","49.915000","10948.000000","49.915000",,,,,,,,,,,,,,"44.000000","7369.000000","6145.000000","3.000000","7369.000000","7369.000000",,,,,,,,,,,"4991020.000000","6211724.000000","478796.000000","0.000000","65962192.000000","0.000000","87779300.000000",,"3623976.000000","25802416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000",,,,,,,,"255.000000","8294.000000",,,,,,,,,,,"3754.000000","485.000000","480.000000","464.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","411.000000","398.000000","544.000000","507.000000","501.000000","160.000000","6000.000000",,"8968294.000000",,,,, -"9892.000000","48.250000","9892.000000","48.250000","9892.000000","48.250000",,,,,,,,,,,,,,"38.000000","6923.500000","5440.000000","23.000000","6923.500000","6923.500000",,,,,,,,,,,"4748196.000000","5986584.000000","478796.000000","0.000000","65938664.000000","0.000000","87779300.000000",,"3623976.000000","25823152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000",,,,,,,,"231.000000","8138.000000",,,,,,,,,,,"3699.000000","486.000000","438.000000","463.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","418.000000","371.000000","397.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968314.000000",,,,, -"10013.000000","48.425000","10013.000000","48.425000","10013.000000","48.425000",,,,,,,,,,,,,,"37.000000","6928.000000","5541.000000","8.000000","6928.000000","6928.000000",,,,,,,,,,,"4685248.000000","5955668.000000","478796.000000","0.000000","65905692.000000","0.000000","87779272.000000",,"3623976.000000","25861316.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000",,,,,,,,"222.000000","8055.000000",,,,,,,,,,,"3803.000000","485.000000","428.000000","460.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","417.000000","366.000000","395.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968334.000000",,,,, -"9216.000000","47.155000","9216.000000","47.155000","9216.000000","47.155000",,,,,,,,,,,,,,"37.000000","3885.000000","2578.000000","24.000000","3885.000000","3885.000000",,,,,,,,,,,"4685248.000000","5986832.000000","478796.000000","0.000000","65873052.000000","0.000000","87779272.000000",,"3623976.000000","25868948.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000",,,,,,,,"199.000000","4955.000000",,,,,,,,,,,"3784.000000","483.000000","392.000000","458.000000","641.000000","492.000000","589.000000","0.000000","0.000000","0.000000","416.000000","345.000000","394.000000","544.000000","390.000000","501.000000","160.000000","6000.000000",,"8968354.000000",,,,, -"10887.000000","49.770000","10887.000000","49.770000","10887.000000","49.770000",,,,,,,,,,,,,,"41.000000","7413.500000","6096.000000","3.000000","7413.500000","7413.500000",,,,,,,,,,,"4496504.000000","5714200.000000","478796.000000","0.000000","65860044.000000","0.000000","87779272.000000",,"3623976.000000","25881684.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000",,,,,,,,"228.000000","8461.000000",,,,,,,,,,,"3797.000000","483.000000","393.000000","459.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","353.000000","394.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968374.000000",,,,, -"8372.000000","45.815000","8372.000000","45.815000","8372.000000","45.815000",,,,,,,,,,,,,,"36.000000","3980.500000","2952.000000","3.000000","3980.500000","3980.500000",,,,,,,,,,,"4412616.000000","5735172.000000","478796.000000","0.000000","65841604.000000","0.000000","87779272.000000",,"3623976.000000","25739328.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000",,,,,,,,"189.000000","4784.000000",,,,,,,,,,,"3659.000000","483.000000","363.000000","452.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968394.000000",,,,, -"9974.000000","48.325000","9974.000000","48.325000","9974.000000","48.325000",,,,,,,,,,,,,,"101.000000","6768.000000","5480.000000","21.000000","6768.000000","6768.000000",,,,,,,,,,,"4517476.000000","5944604.000000","478796.000000","0.000000","65826148.000000","0.000000","87779272.000000",,"3623976.000000","25774492.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000",,,,,,,,"259.000000","7695.000000",,,,,,,,,,,"3696.000000","485.000000","393.000000","455.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","341.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968414.000000",,,,, -"10347.000000","48.895000","10347.000000","48.895000","10347.000000","48.895000",,,,,,,,,,,,,,"34.000000","6960.000000","5696.000000","27.000000","6960.000000","6960.000000",,,,,,,,,,,"4259752.000000","5651000.000000","478796.000000","0.000000","65810924.000000","0.000000","87779272.000000",,"3623976.000000","25788980.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000",,,,,,,,"232.000000","7957.000000",,,,,,,,,,,"3741.000000","484.000000","385.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","387.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968434.000000",,,,, -"10656.000000","49.370000","10656.000000","49.370000","10656.000000","49.370000",,,,,,,,,,,,,,"318.000000","5996.500000","4448.000000","2.000000","5996.500000","5996.500000",,,,,,,,,,,"4175728.000000","5650860.000000","478796.000000","0.000000","65787132.000000","0.000000","87779132.000000",,"3623976.000000","25821488.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000",,,,,,,,"490.000000","6737.000000",,,,,,,,,,,"3829.000000","485.000000","401.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","352.000000","389.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968454.000000",,,,, -"10049.000000","48.410000","10049.000000","48.410000","10049.000000","48.410000",,,,,,,,,,,,,,"35.000000","5981.000000","4496.000000","4.000000","5981.000000","5981.000000",,,,,,,,,,,"4259612.000000","5755716.000000","478796.000000","0.000000","65770904.000000","0.000000","87779132.000000",,"3623976.000000","25970604.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000",,,,,,,,"242.000000","7187.000000",,,,,,,,,,,"3844.000000","481.000000","394.000000","453.000000","636.000000","500.000000","589.000000","0.000000","0.000000","0.000000","415.000000","363.000000","388.000000","533.000000","461.000000","501.000000","160.000000","6000.000000",,"8968474.000000",,,,, -"13333.000000","53.545000","13333.000000","53.545000","13333.000000","53.545000",,,,,,,,,,,,,,"41.000000","9188.500000","7961.000000","9.000000","9188.500000","9188.500000",,,,,,,,,,,"4211600.000000","5267308.000000","478796.000000","0.000000","65744812.000000","0.000000","87779132.000000",,"3623976.000000","25995508.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000",,,,,,,,"279.000000","10095.000000",,,,,,,,,,,"3974.000000","481.000000","437.000000","422.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","414.000000","403.000000","373.000000","537.000000","589.000000","461.000000","160.000000","6000.000000",,"8968494.000000",,,,, -"9926.000000","48.195000","9926.000000","48.195000","9926.000000","48.195000",,,,,,,,,,,,,,"40.000000","4515.500000","3166.000000","11.000000","4515.500000","4515.500000",,,,,,,,,,,"3792172.000000","5183424.000000","478792.000000","0.000000","65725256.000000","0.000000","87779136.000000",,"3623976.000000","26031632.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000",,,,,,,,"197.000000","5627.000000",,,,,,,,,,,"3796.000000","475.000000","439.000000","419.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","410.000000","401.000000","371.000000","531.000000","589.000000","461.000000","160.000000","6000.000000",,"8968514.000000",,,,, -"12976.000000","52.960000","12976.000000","52.960000","12976.000000","52.960000",,,,,,,,,,,,,,"93.000000","6296.000000","4949.000000","13.000000","6296.000000","6296.000000",,,,,,,,,,,"3771372.000000","5225536.000000","478788.000000","0.000000","65701384.000000","0.000000","87779308.000000",,"3623976.000000","26024872.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000",,,,,,,,"220.000000","7330.000000",,,,,,,,,,,"3812.000000","472.000000","448.000000","422.000000","632.000000","714.000000","530.000000","0.000000","0.000000","0.000000","408.000000","399.000000","372.000000","518.000000","589.000000","477.000000","160.000000","6000.000000",,"8968534.000000",,,,, -"13921.000000","54.430000","13921.000000","54.430000","13921.000000","54.430000",,,,,,,,,,,,,,"29.000000","10092.500000","8599.000000","24.000000","10092.500000","10092.500000",,,,,,,,,,,"3798416.000000","5267484.000000","478788.000000","0.000000","65680220.000000","0.000000","87779308.000000",,"3623976.000000","26045584.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000",,,,,,,,"615.000000","10941.000000",,,,,,,,,,,"3977.000000","469.000000","478.000000","426.000000","593.000000","606.000000","559.000000","0.000000","0.000000","0.000000","407.000000","425.000000","376.000000","514.000000","535.000000","493.000000","160.000000","6000.000000",,"8968554.000000",,,,, -"12973.000000","52.935000","12973.000000","52.935000","12973.000000","52.935000",,,,,,,,,,,,,,"38.000000","6355.000000","5332.000000","2.000000","6355.000000","6355.000000",,,,,,,,,,,"3756304.000000","4993540.000000","478788.000000","0.000000","65654328.000000","0.000000","87779140.000000",,"3623976.000000","26100836.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000",,,,,,,,"207.000000","7132.000000",,,,,,,,,,,"3936.000000","468.000000","510.000000","428.000000","589.000000","606.000000","559.000000","0.000000","0.000000","0.000000","405.000000","451.000000","380.000000","507.000000","535.000000","493.000000","160.000000","6000.000000",,"8968574.000000",,,,, -"10408.000000","48.925000","10408.000000","48.925000","10408.000000","48.925000",,,,,,,,,,,,,,"11817.000000","29523.000000","17376.000000","11.000000","29523.000000","29523.000000",,,,,,,,,,,"4008124.000000","5266336.000000","478788.000000","0.000000","65673344.000000","0.000000","87779304.000000",,"3623976.000000","26102704.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000",,,,,,,,"12036.000000","17815.000000",,,,,,,,,,,"3726.000000","465.000000","524.000000","430.000000","589.000000","606.000000","560.000000","0.000000","0.000000","0.000000","403.000000","455.000000","381.000000","501.000000","535.000000","493.000000","160.000000","6000.000000",,"8968594.000000",,,,, -"11125.000000","50.045000","11125.000000","50.045000","11125.000000","50.045000",,,,,,,,,,,,,,"367.000000","23800.000000","16267.000000","42.000000","23800.000000","23800.000000",,,,,,,,,,,"4502684.000000","6246520.000000","478788.000000","0.000000","65667436.000000","0.000000","87779384.000000",,"3623976.000000","26110896.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000",,,,,,,,"13402.000000","17564.000000",,,,,,,,,,,"3799.000000","464.000000","481.000000","435.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","401.000000","402.000000","383.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968614.000000",,,,, -"10437.000000","48.965000","10437.000000","48.965000","10437.000000","48.965000",,,,,,,,,,,,,,"37.000000","26318.000000","26281.000000","50.000000","26318.000000","26318.000000",,,,,,,,,,,"4785220.000000","6895488.000000","478788.000000","0.000000","65655288.000000","0.000000","87779384.000000",,"3623976.000000","26076004.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000",,,,,,,,,,,,,,,,,,,,"3705.000000","462.000000","467.000000","436.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","398.000000","377.000000","382.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968634.000000",,,,, -"10978.000000","49.810000","10978.000000","49.810000","10978.000000","49.810000",,,,,,,,,,,,,,"40.000000","43050.000000","38221.000000","53.000000","43050.000000","43050.000000",,,,,,,,,,,"5204652.000000","7252004.000000","478788.000000","0.000000","65657664.000000","0.000000","87779384.000000",,"3623976.000000","26015120.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000",,,,,,,,"9253.000000","38585.000000",,,,,,,,,,,"3664.000000","461.000000","453.000000","443.000000","589.000000","549.000000","560.000000","0.000000","0.000000","0.000000","397.000000","366.000000","385.000000","501.000000","428.000000","493.000000","160.000000","6000.000000",,"8968654.000000",,,,, -"9512.000000","47.510000","9512.000000","47.510000","9512.000000","47.510000",,,,,,,,,,,,,,"59.000000","36825.500000","29936.000000","23.000000","36825.500000","36825.500000",,,,,,,,,,,"5216780.000000","7252012.000000","478788.000000","0.000000","65649204.000000","0.000000","87779384.000000",,"3623976.000000","26024644.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000",,,,,,,,"14770.000000","28884.000000",,,,,,,,,,,"3639.000000","459.000000","440.000000","444.000000","585.000000","558.000000","560.000000","0.000000","0.000000","0.000000","395.000000","358.000000","384.000000","500.000000","462.000000","493.000000","160.000000","6000.000000",,"8968674.000000",,,,, -"11179.000000","50.110000","11179.000000","50.110000","11179.000000","50.110000",,,,,,,,,,,,,,"1510.000000","12407.000000","9826.000000","16.000000","12407.000000","12407.000000",,,,,,,,,,,"5110644.000000","7092868.000000","478788.000000","0.000000","65628896.000000","0.000000","87779252.000000",,"3623976.000000","25998596.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000",,,,,,,,"1671.000000","11807.000000",,,,,,,,,,,"3615.000000","457.000000","452.000000","454.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","394.000000","376.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968694.000000",,,,, -"10792.000000","49.495000","10792.000000","49.495000","10792.000000","49.495000",,,,,,,,,,,,,,"881.000000","6898.500000","5824.000000","7.000000","6898.500000","6898.500000",,,,,,,,,,,"5152624.000000","6799304.000000","478788.000000","0.000000","65607692.000000","0.000000","87779288.000000",,"3623976.000000","25986144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000",,,,,,,,"968.000000","6123.000000",,,,,,,,,,,"3678.000000","455.000000","433.000000","451.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","392.000000","372.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968714.000000",,,,, -"12843.000000","52.695000","12843.000000","52.695000","12843.000000","52.695000",,,,,,,,,,,,,,"185.000000","7695.500000","7323.000000","4.000000","7695.500000","7695.500000",,,,,,,,,,,"5431316.000000","7029992.000000","478788.000000","0.000000","65590484.000000","0.000000","87779288.000000",,"3623976.000000","26003420.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000",,,,,,,,"297.000000","7586.000000",,,,,,,,,,,"4037.000000","457.000000","462.000000","460.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","394.000000","411.000000","400.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968734.000000",,,,, -"12393.000000","51.985000","12393.000000","51.985000","12393.000000","51.985000",,,,,,,,,,,,,,"587.000000","6962.500000","6365.000000","8.000000","6962.500000","6962.500000",,,,,,,,,,,"5431316.000000","7052116.000000","478788.000000","0.000000","65577620.000000","0.000000","87779288.000000",,"3623976.000000","25929092.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000",,,,,,,,"633.000000","6339.000000",,,,,,,,,,,"3920.000000","460.000000","460.000000","466.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","397.000000","417.000000","404.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968754.000000",,,,, -"14332.000000","55.025000","14332.000000","55.025000","14332.000000","55.025000",,,,,,,,,,,,,,"50.000000","5887.500000","5636.000000","12.000000","5887.500000","5887.500000",,,,,,,,,,,"5368400.000000","7198916.000000","478788.000000","0.000000","65578952.000000","0.000000","87779288.000000",,"3623976.000000","25978516.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000",,,,,,,,"149.000000","5940.000000",,,,,,,,,,,"4073.000000","460.000000","493.000000","470.000000","566.000000","562.000000","562.000000","0.000000","0.000000","0.000000","398.000000","453.000000","409.000000","500.000000","528.000000","501.000000","160.000000","6000.000000",,"8968774.000000",,,,, -"17878.000000","60.600000","17878.000000","60.600000","17878.000000","60.600000",,,,,,,,,,,,,,"214.000000","16476.500000","16119.000000","25.000000","16476.500000","16476.500000",,,,,,,,,,,"5702172.000000","7343720.000000","478788.000000","0.000000","65618164.000000","0.000000","87772580.000000",,"3623976.000000","25951940.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000",,,,,,,,"382.000000","16237.000000",,,,,,,,,,,"4520.000000","465.000000","653.000000","503.000000","569.000000","1274.000000","569.000000","0.000000","0.000000","0.000000","401.000000","528.000000","425.000000","501.000000","741.000000","528.000000","160.000000","6000.000000",,"8968794.000000",,,,, -"16141.000000","57.850000","16141.000000","57.850000","16141.000000","57.850000",,,,,,,,,,,,,,"32.000000","3779.500000","3455.000000","10.000000","3779.500000","3779.500000",,,,,,,,,,,"5531040.000000","7119944.000000","478788.000000","0.000000","65566880.000000","0.000000","87745912.000000",,"3623976.000000","25984272.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000",,,,,,,,"121.000000","3950.000000",,,,,,,,,,,"4203.000000","471.000000","724.000000","523.000000","589.000000","1274.000000","671.000000","0.000000","0.000000","0.000000","405.000000","574.000000","439.000000","507.000000","741.000000","572.000000","160.000000","6000.000000",,"8968814.000000",,,,, -"16985.000000","59.180000","16985.000000","59.180000","16985.000000","59.180000",,,,,,,,,,,,,,"257.000000","3152.000000","2823.000000","16.000000","3152.000000","3152.000000",,,,,,,,,,,"5426180.000000","7036060.000000","478788.000000","0.000000","65576756.000000","0.000000","87745912.000000",,"3623976.000000","25961336.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000",,,,,,,,"307.000000","2917.000000",,,,,,,,,,,"4196.000000","475.000000","784.000000","537.000000","616.000000","1274.000000","750.000000","0.000000","0.000000","0.000000","408.000000","617.000000","453.000000","528.000000","741.000000","638.000000","160.000000","6000.000000",,"8968834.000000",,,,, -"15333.000000","56.585000","15333.000000","56.585000","15333.000000","56.585000",,,,,,,,,,,,,,"1109.000000","18599.500000","16281.000000","29.000000","18599.500000","18599.500000",,,,,,,,,,,"5593948.000000","7098980.000000","478788.000000","0.000000","65562916.000000","0.000000","87745912.000000",,"3623976.000000","25976144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000",,,,,,,,"1744.000000","18064.000000",,,,,,,,,,,"3936.000000","477.000000","679.000000","543.000000","608.000000","832.000000","775.000000","0.000000","0.000000","0.000000","410.000000","572.000000","454.000000","529.000000","688.000000","638.000000","160.000000","6000.000000",,"8968854.000000",,,,, -"15359.000000","56.615000","15359.000000","56.615000","15359.000000","56.615000",,,,,,,,,,,,,,"315.000000","7614.500000","6116.000000","13.000000","7614.500000","7614.500000",,,,,,,,,,,"5815296.000000","7178740.000000","478788.000000","0.000000","65540260.000000","0.000000","87740472.000000",,"3623976.000000","26120752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000",,,,,,,,"523.000000","8273.000000",,,,,,,,,,,"4053.000000","482.000000","667.000000","554.000000","616.000000","786.000000","786.000000","0.000000","0.000000","0.000000","414.000000","563.000000","461.000000","535.000000","688.000000","649.000000","160.000000","6000.000000",,"8968874.000000",,,,, -"15233.000000","56.405000","15233.000000","56.405000","15233.000000","56.405000",,,,,,,,,,,,,,"37.000000","8353.500000","7297.000000","43.000000","8353.500000","8353.500000",,,,,,,,,,,"5941176.000000","7325592.000000","478788.000000","0.000000","65518472.000000","0.000000","87740520.000000",,"3623976.000000","26118284.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000",,,,,,,,"239.000000","9134.000000",,,,,,,,,,,"4115.000000","486.000000","652.000000","563.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","416.000000","539.000000","469.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968894.000000",,,,, -"13682.000000","53.965000","13682.000000","53.965000","13682.000000","53.965000",,,,,,,,,,,,,,"61.000000","7190.500000","6962.000000","28.000000","7190.500000","7190.500000",,,,,,,,,,,"6150892.000000","7661136.000000","478788.000000","0.000000","65501680.000000","0.000000","87740520.000000",,"3623976.000000","26135752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000",,,,,,,,"172.000000","7186.000000",,,,,,,,,,,"4055.000000","490.000000","628.000000","572.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","420.000000","531.000000","480.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968914.000000",,,,, -"13589.000000","53.810000","13589.000000","53.810000","13589.000000","53.810000",,,,,,,,,,,,,,"100.000000","7215.000000","7111.000000","13.000000","7215.000000","7215.000000",,,,,,,,,,,"5184572.000000","6727144.000000","478788.000000","0.000000","65482156.000000","0.000000","87740928.000000",,"3623976.000000","26085772.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000",,,,,,,,"149.000000","7070.000000",,,,,,,,,,,"3969.000000","492.000000","598.000000","580.000000","671.000000","735.000000","786.000000","0.000000","0.000000","0.000000","421.000000","508.000000","487.000000","570.000000","570.000000","649.000000","160.000000","6000.000000",,"8968934.000000",,,,, -"12989.000000","52.870000","12989.000000","52.870000","12989.000000","52.870000",,,,,,,,,,,,,,"38.000000","5182.000000","4994.000000","8.000000","5182.000000","5182.000000",,,,,,,,,,,"5205088.000000","6999316.000000","478788.000000","0.000000","65476916.000000","0.000000","87740472.000000",,"3623976.000000","26044352.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000",,,,,,,,"131.000000","5199.000000",,,,,,,,,,,"3989.000000","496.000000","569.000000","586.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","424.000000","484.000000","493.000000","570.000000","537.000000","649.000000","160.000000","6000.000000",,"8968954.000000",,,,, -"14491.000000","55.220000","14491.000000","55.220000","14491.000000","55.220000",,,,,,,,,,,,,,"36.000000","7694.000000","7446.000000","36.000000","7694.000000","7694.000000",,,,,,,,,,,"5121252.000000","6810624.000000","478788.000000","0.000000","65463160.000000","0.000000","87740520.000000",,"3623976.000000","26056460.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000",,,,,,,,"139.000000","7765.000000",,,,,,,,,,,"4100.000000","500.000000","567.000000","598.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","428.000000","484.000000","505.000000","570.000000","553.000000","649.000000","160.000000","6000.000000",,"8968974.000000",,,,, -"12772.000000","52.515000","12772.000000","52.515000","12772.000000","52.515000",,,,,,,,,,,,,,"36.000000","4411.000000","4226.000000","8.000000","4411.000000","4411.000000",,,,,,,,,,,"5548400.000000","6949844.000000","478788.000000","0.000000","65445396.000000","0.000000","87740520.000000",,"3623976.000000","26195756.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000",,,,,,,,"98.000000","4462.000000",,,,,,,,,,,"4112.000000","502.000000","553.000000","600.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","430.000000","479.000000","508.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8968994.000000",,,,, -"13759.000000","54.055000","13759.000000","54.055000","13759.000000","54.055000",,,,,,,,,,,,,,"231.000000","16475.000000","15985.000000","30.000000","16475.000000","16475.000000",,,,,,,,,,,"5716172.000000","6865960.000000","478788.000000","0.000000","65441184.000000","0.000000","87740520.000000",,"3623976.000000","26271160.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000",,,,,,,,"406.000000","16326.000000",,,,,,,,,,,"4116.000000","507.000000","572.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","433.000000","497.000000","518.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969014.000000",,,,, -"12684.000000","52.370000","12684.000000","52.370000","12684.000000","52.370000",,,,,,,,,,,,,,"36.000000","3341.000000","3165.000000","31.000000","3341.000000","3341.000000",,,,,,,,,,,"5443536.000000","6656232.000000","478788.000000","0.000000","65422392.000000","0.000000","87740528.000000",,"3623976.000000","26289096.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000",,,,,,,,"118.000000","3361.000000",,,,,,,,,,,"3954.000000","509.000000","543.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","434.000000","469.000000","517.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969034.000000",,,,, -"13410.000000","53.490000","13410.000000","53.490000","13410.000000","53.490000",,,,,,,,,,,,,,"380.000000","6805.000000","6424.000000","6.000000","6805.000000","6805.000000",,,,,,,,,,,"4911396.000000","6385664.000000","478788.000000","0.000000","65401792.000000","0.000000","87740388.000000",,"3623976.000000","26264364.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000",,,,,,,,"476.000000",,,,,,,,,,,,"4030.000000","514.000000","571.000000","623.000000","677.000000","680.000000","786.000000","0.000000","0.000000","0.000000","438.000000","478.000000","520.000000","570.000000","527.000000","649.000000","160.000000","6000.000000",,"8969054.000000",,,,, -"15908.000000","57.405000","15908.000000","57.405000","15908.000000","57.405000",,,,,,,,,,,,,,"76.000000","7782.500000","7497.000000","29.000000","7782.500000","7782.500000",,,,,,,,,,,"4974452.000000","6155116.000000","478788.000000","0.000000","65410668.000000","0.000000","87740532.000000",,"3623976.000000","26165064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000",,,,,,,,"210.000000","7782.000000",,,,,,,,,,,"4063.000000","518.000000","582.000000","632.000000","680.000000","719.000000","786.000000","0.000000","0.000000","0.000000","441.000000","488.000000","525.000000","572.000000","605.000000","649.000000","160.000000","6000.000000",,"8969074.000000",,,,, -"17121.000000","59.305000","17121.000000","59.305000","17121.000000","59.305000",,,,,,,,,,,,,,"66.000000","8342.000000","7418.000000","4.000000","8342.000000","8342.000000",,,,,,,,,,,"5393884.000000","6763292.000000","478788.000000","0.000000","65406344.000000","0.000000","87740532.000000",,"3623976.000000","26170980.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000",,,,,,,,"258.000000","8941.000000",,,,,,,,,,,"4139.000000","517.000000","711.000000","626.000000","680.000000","1093.000000","775.000000","0.000000","0.000000","0.000000","440.000000","553.000000","522.000000","570.000000","656.000000","640.000000","160.000000","6000.000000",,"8969094.000000",,,,, -"14695.000000","55.490000","14695.000000","55.490000","14695.000000","55.490000",,,,,,,,,,,,,,"683.000000","11612.000000","10604.000000","21.000000","11612.000000","11612.000000",,,,,,,,,,,"6289980.000000","7848136.000000","478788.000000","0.000000","65379984.000000","0.000000","87740532.000000",,"3623976.000000","26254736.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000",,,,,,,,"798.000000","11138.000000",,,,,,,,,,,"3935.000000","522.000000","727.000000","623.000000","687.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","443.000000","571.000000","520.000000","572.000000","656.000000","605.000000","160.000000","6000.000000",,"8969114.000000",,,,, -"16199.000000","57.865000","16199.000000","57.865000","16199.000000","57.865000",,,,,,,,,,,,,,"51.000000","6903.000000","6532.000000","58.000000","6903.000000","6903.000000",,,,,,,,,,,"6373868.000000","8078816.000000","478788.000000","0.000000","65404484.000000","0.000000","87740532.000000",,"3623976.000000","26205084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000",,,,,,,,"147.000000","7074.000000",,,,,,,,,,,"4050.000000","525.000000","705.000000","616.000000","714.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","446.000000","559.000000","513.000000","572.000000","662.000000","605.000000","160.000000","6000.000000",,"8969134.000000",,,,, -"15656.000000","57.005000","15656.000000","57.005000","15656.000000","57.005000",,,,,,,,,,,,,,"97.000000","8521.000000","8060.000000","16.000000","8521.000000","8521.000000",,,,,,,,,,,"6164148.000000","7701332.000000","478788.000000","0.000000","65389700.000000","0.000000","87740532.000000",,"3623976.000000","26217412.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000",,,,,,,,"523.000000","8362.000000",,,,,,,,,,,"4153.000000","531.000000","667.000000","623.000000","735.000000","860.000000","764.000000","0.000000","0.000000","0.000000","449.000000","549.000000","517.000000","579.000000","691.000000","640.000000","160.000000","6000.000000",,"8969154.000000",,,,, -"15203.000000","56.290000","15203.000000","56.290000","15203.000000","56.290000",,,,,,,,,,,,,,"764.000000","12567.000000","11626.000000","16.000000","12567.000000","12567.000000",,,,,,,,,,,"6137452.000000","7952648.000000","478788.000000","0.000000","65390028.000000","0.000000","87740484.000000",,"3623976.000000","26215156.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000",,,,,,,,"902.000000","11841.000000",,,,,,,,,,,"4240.000000","534.000000","653.000000","620.000000","735.000000","860.000000","759.000000","0.000000","0.000000","0.000000","453.000000","548.000000","517.000000","589.000000","691.000000","605.000000","160.000000","6000.000000",,"8969174.000000",,,,, -"15683.000000","57.045000","15683.000000","57.045000","15683.000000","57.045000",,,,,,,,,,,,,,"366.000000","11045.500000","10536.000000","11.000000","11045.500000","11045.500000",,,,,,,,,,,"6054092.000000","7470832.000000","478788.000000","0.000000","65382616.000000","0.000000","87741008.000000",,"3623976.000000","26188616.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000",,,,,,,,"511.000000","10677.000000",,,,,,,,,,,"4236.000000","538.000000","673.000000","620.000000","741.000000","860.000000","764.000000","0.000000","0.000000","0.000000","456.000000","560.000000","517.000000","589.000000","691.000000","640.000000","160.000000","6000.000000",,"8969194.000000",,,,, -"11447.000000","50.400000","11447.000000","50.400000","11447.000000","50.400000",,,,,,,,,,,,,,"320.000000","8308.500000","7564.000000","9.000000","8308.500000","8308.500000",,,,,,,,,,,"5927884.000000","7470452.000000","478788.000000","0.000000","65365216.000000","0.000000","87740628.000000",,"3623976.000000","26204320.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000",,,,,,,,"436.000000","8296.000000",,,,,,,,,,,"3966.000000","541.000000","595.000000","617.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","458.000000","507.000000","512.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969214.000000",,,,, -"12885.000000","52.645000","12885.000000","52.645000","12885.000000","52.645000",,,,,,,,,,,,,,"219.000000","8899.500000","8505.000000","15.000000","8899.500000","8899.500000",,,,,,,,,,,"5382624.000000","7276324.000000","478788.000000","0.000000","65345136.000000","0.000000","87740628.000000",,"3623976.000000","26224096.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000",,,,,,,,"352.000000","8722.000000",,,,,,,,,,,"4055.000000","543.000000","556.000000","612.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","460.000000","480.000000","511.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969234.000000",,,,, -"12788.000000","52.480000","12788.000000","52.480000","12788.000000","52.480000",,,,,,,,,,,,,,"42.000000","4631.000000","4476.000000","6.000000","4631.000000","4631.000000",,,,,,,,,,,"5634212.000000","7695684.000000","478788.000000","0.000000","65325620.000000","0.000000","87740560.000000",,"3623976.000000","26346572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000",,,,,,,,"125.000000","4619.000000",,,,,,,,,,,"4057.000000","545.000000","507.000000","607.000000","750.000000","842.000000","791.000000","0.000000","6.000000","0.000000","463.000000","448.000000","510.000000","589.000000","566.000000","640.000000","160.000000","6000.000000",,"8969254.000000",,,,, -"11884.000000","51.055000","11884.000000","51.055000","11884.000000","51.055000",,,,,,,,,,,,,,"404.000000","9759.000000","9134.000000","13.000000","9759.000000","9759.000000",,,,,,,,,,,"5529348.000000","7695684.000000","478788.000000","0.000000","65304048.000000","0.000000","87740560.000000",,"3623976.000000","26366792.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000",,,,,,,,"491.000000","9488.000000",,,,,,,,,,,"4109.000000","547.000000","481.000000","600.000000","750.000000","541.000000","791.000000","0.000000","0.000000","0.000000","465.000000","449.000000","505.000000","589.000000","505.000000","640.000000","160.000000","6000.000000",,"8969274.000000",,,,, -"12568.000000","52.115000","12568.000000","52.115000","12568.000000","52.115000",,,,,,,,,,,,,,"126.000000","6899.500000","6764.000000","26.000000","6899.500000","6899.500000",,,,,,,,,,,"5361504.000000","7165648.000000","478788.000000","0.000000","65286120.000000","0.000000","87740484.000000",,"3623976.000000","26441124.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000",,,,,,,,"191.000000","6718.000000",,,,,,,,,,,"3947.000000","551.000000","484.000000","598.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","468.000000","444.000000","504.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969294.000000",,,,, -"12970.000000","52.750000","12970.000000","52.750000","12970.000000","52.750000",,,,,,,,,,,,,,"535.000000","9316.500000","8071.000000","10.000000","9316.500000","9316.500000",,,,,,,,,,,"5361504.000000","7249536.000000","478788.000000","0.000000","65297344.000000","0.000000","87740484.000000",,"3623976.000000","26249812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000",,,,,,,,"735.000000","9291.000000",,,,,,,,,,,"3800.000000","552.000000","485.000000","590.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","469.000000","438.000000","498.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969314.000000",,,,, -"11064.000000","49.755000","11064.000000","49.755000","11064.000000","49.755000",,,,,,,,,,,,,,"80.000000","5113.500000","4468.000000","12.000000","5113.500000","5113.500000",,,,,,,,,,,"5382528.000000","7291528.000000","478788.000000","0.000000","65279968.000000","0.000000","87740532.000000",,"3623976.000000","26267080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000",,,,,,,,"244.000000","5435.000000",,,,,,,,,,,"3883.000000","554.000000","481.000000","587.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","471.000000","429.000000","497.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969334.000000",,,,, -"12420.000000","51.870000","12420.000000","51.870000","12420.000000","51.870000",,,,,,,,,,,,,,"596.000000","8222.000000","7213.000000","11.000000","8222.000000","8222.000000",,,,,,,,,,,"5434084.000000","6997624.000000","478788.000000","0.000000","65261096.000000","0.000000","87740532.000000",,"3623976.000000","26247292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000",,,,,,,,"721.000000","7912.000000",,,,,,,,,,,"3952.000000","556.000000","476.000000","579.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","473.000000","432.000000","495.000000","589.000000","525.000000","640.000000","160.000000","6000.000000",,"8969354.000000",,,,, -"14927.000000","55.795000","14927.000000","55.795000","14927.000000","55.795000",,,,,,,,,,,,,,"76.000000","7352.500000","7271.000000","7.000000","7352.500000","7352.500000",,,,,,,,,,,"5014656.000000","6494308.000000","478788.000000","0.000000","65259260.000000","0.000000","87740532.000000",,"3623976.000000","26343444.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000",,,,,,,,"186.000000","7170.000000",,,,,,,,,,,"4023.000000","560.000000","516.000000","577.000000","755.000000","791.000000","791.000000","0.000000","0.000000","0.000000","476.000000","463.000000","494.000000","598.000000","647.000000","647.000000","160.000000","6000.000000",,"8969374.000000",,,,, -"14943.000000","55.820000","14943.000000","55.820000","14943.000000","55.820000",,,,,,,,,,,,,,"659.000000","9461.500000","8494.000000","23.000000","9461.500000","9461.500000",,,,,,,,,,,"4721060.000000","6053912.000000","478788.000000","0.000000","65251168.000000","0.000000","87740532.000000",,"3623976.000000","26351060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000",,,,,,,,"792.000000","8976.000000",,,,,,,,,,,"4045.000000","562.000000","565.000000","558.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","478.000000","503.000000","487.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969394.000000",,,,, -"14640.000000","55.335000","14640.000000","55.335000","14640.000000","55.335000",,,,,,,,,,,,,,"48.000000","7387.000000","7127.000000","33.000000","7387.000000","7387.000000",,,,,,,,,,,"4709708.000000","6288540.000000","478788.000000","0.000000","65235112.000000","0.000000","87740532.000000",,"3623976.000000","26426572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000",,,,,,,,"148.000000","7450.000000",,,,,,,,,,,"4025.000000","566.000000","589.000000","552.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","481.000000","520.000000","485.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969414.000000",,,,, -"14933.000000","55.790000","14933.000000","55.790000","14933.000000","55.790000",,,,,,,,,,,,,,"44.000000","5617.500000","5537.000000","21.000000","5617.500000","5617.500000",,,,,,,,,,,"4646792.000000","6204652.000000","478788.000000","0.000000","65223732.000000","0.000000","87740532.000000",,"3623976.000000","26362656.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000",,,,,,,,"128.000000","5525.000000",,,,,,,,,,,"3922.000000","568.000000","575.000000","551.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","483.000000","512.000000","484.000000","605.000000","661.000000","598.000000","160.000000","6000.000000",,"8969434.000000",,,,, -"14779.000000","55.540000","14779.000000","55.540000","14779.000000","55.540000",,,,,,,,,,,,,,"103.000000","7467.000000","7029.000000","17.000000","7467.000000","7467.000000",,,,,,,,,,,"4772616.000000","6309508.000000","478788.000000","0.000000","65210220.000000","0.000000","87740532.000000",,"3623976.000000","26377084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000",,,,,,,,"499.000000","7303.000000",,,,,,,,,,,"4235.000000","570.000000","589.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","484.000000","522.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969454.000000",,,,, -"15799.000000","57.135000","15799.000000","57.135000","15799.000000","57.135000",,,,,,,,,,,,,,"1032.000000","8544.500000","7347.000000","18.000000","8544.500000","8544.500000",,,,,,,,,,,"4652464.000000","5979640.000000","478788.000000","0.000000","65191580.000000","0.000000","87740532.000000",,"3623976.000000","26417140.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000",,,,,,,,"1152.000000","7557.000000",,,,,,,,,,,"3999.000000","572.000000","606.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","487.000000","535.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969474.000000",,,,, -"14882.000000","55.695000","14882.000000","55.695000","14882.000000","55.695000",,,,,,,,,,,,,,"1593.000000","7873.500000","6128.000000","33.000000","7873.500000","7873.500000",,,,,,,,,,,"4568580.000000","5917012.000000","478788.000000","0.000000","65193768.000000","0.000000","87740532.000000",,"3623976.000000","26468820.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000",,,,,,,,"1727.000000","6297.000000",,,,,,,,,,,"4170.000000","574.000000","614.000000","540.000000","759.000000","712.000000","707.000000","0.000000","0.000000","0.000000","490.000000","552.000000","483.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969494.000000",,,,, -"13838.000000","54.050000","13838.000000","54.050000","13838.000000","54.050000",,,,,,,,,,,,,,"43.000000","6360.000000","6134.000000","42.000000","6360.000000","6360.000000",,,,,,,,,,,"4229944.000000","5473088.000000","478788.000000","0.000000","65174068.000000","0.000000","87726476.000000",,"3623976.000000","26473636.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000",,,,,,,,"161.000000","6381.000000",,,,,,,,,,,"4032.000000","575.000000","569.000000","537.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","493.000000","525.000000","486.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969514.000000",,,,, -"11811.000000","50.865000","11811.000000","50.865000","11811.000000","50.865000",,,,,,,,,,,,,,"42.000000","6139.000000","4893.000000","22.000000","6139.000000","6139.000000",,,,,,,,,,,"3961532.000000","5084388.000000","478784.000000","0.000000","65157356.000000","0.000000","87726340.000000",,"3623976.000000","26452296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000",,,,,,,,"253.000000","7090.000000",,,,,,,,,,,"4040.000000","576.000000","525.000000","536.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","494.000000","491.000000","484.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969534.000000",,,,, -"12947.000000","52.640000","12947.000000","52.640000","12947.000000","52.640000",,,,,,,,,,,,,,"41.000000","5582.500000","5339.000000","12.000000","5582.500000","5582.500000",,,,,,,,,,,"4213192.000000","5167984.000000","478784.000000","0.000000","65148768.000000","0.000000","87726340.000000",,"3623976.000000","26465932.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000",,,,,,,,"170.000000","5615.000000",,,,,,,,,,,"3961.000000","577.000000","500.000000","538.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","496.000000","462.000000","485.000000","620.000000","539.000000","616.000000","160.000000","6000.000000",,"8969554.000000",,,,, -"13037.000000","52.775000","13037.000000","52.775000","13037.000000","52.775000",,,,,,,,,,,,,,"47.000000","6647.000000","6350.000000","23.000000","6647.000000","6647.000000",,,,,,,,,,,"4129304.000000","5105068.000000","478784.000000","0.000000","65134304.000000","0.000000","87726340.000000",,"3623976.000000","26479816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000",,,,,,,,"160.000000","6737.000000",,,,,,,,,,,"4045.000000","579.000000","490.000000","539.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","454.000000","487.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969574.000000",,,,, -"12325.000000","51.650000","12325.000000","51.650000","12325.000000","51.650000",,,,,,,,,,,,,,"130.000000","5808.500000","5766.000000","28.000000","5808.500000","5808.500000",,,,,,,,,,,"4440692.000000","5616280.000000","478784.000000","0.000000","65115576.000000","0.000000","87726340.000000",,"3623976.000000","26575832.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000",,,,,,,,"134.000000","5586.000000",,,,,,,,,,,"3951.000000","578.000000","487.000000","536.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","450.000000","486.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969594.000000",,,,, -"11768.000000","50.770000","11768.000000","50.770000","11768.000000","50.770000",,,,,,,,,,,,,,"42.000000","5073.500000","4916.000000","37.000000","5073.500000","5073.500000",,,,,,,,,,,"4440976.000000","5532680.000000","478784.000000","0.000000","65099724.000000","0.000000","87726624.000000",,"3623976.000000","26578200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000",,,,,,,,"113.000000","5075.000000",,,,,,,,,,,"3760.000000","580.000000","471.000000","535.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","433.000000","485.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969614.000000",,,,, -"12344.000000","51.665000","12344.000000","51.665000","12344.000000","51.665000",,,,,,,,,,,,,,"73.000000","5855.000000","5781.000000","16.000000","5855.000000","5855.000000",,,,,,,,,,,"4713608.000000","5784344.000000","478784.000000","0.000000","65081780.000000","0.000000","87726624.000000",,"3623976.000000","26595112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000",,,,,,,,"155.000000",,,,,,,,,,,,"3966.000000","579.000000","470.000000","536.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","430.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969634.000000",,,,, -"13161.000000","52.935000","13161.000000","52.935000","13161.000000","52.935000",,,,,,,,,,,,,,"354.000000","20761.000000","19979.000000","52.000000","20761.000000","20761.000000",,,,,,,,,,,"4402768.000000","5625824.000000","478784.000000","0.000000","65066032.000000","0.000000","87727172.000000",,"3623976.000000","26623612.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000",,,,,,,,"543.000000","20645.000000",,,,,,,,,,,"3901.000000","580.000000","484.000000","538.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","501.000000","441.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969654.000000",,,,, -"14237.000000","54.620000","14237.000000","54.620000","14237.000000","54.620000",,,,,,,,,,,,,,"763.000000","18125.500000","17265.000000","11.000000","18125.500000","18125.500000",,,,,,,,,,,"4234992.000000","5709708.000000","478784.000000","0.000000","65067712.000000","0.000000","87727172.000000",,"3623976.000000","26565356.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000",,,,,,,,"944.000000","17278.000000",,,,,,,,,,,"4007.000000","582.000000","521.000000","536.000000","764.000000","924.000000","666.000000","0.000000","0.000000","0.000000","501.000000","470.000000","486.000000","622.000000","713.000000","616.000000","160.000000","6000.000000",,"8969674.000000",,,,, -"14018.000000","54.275000","14018.000000","54.275000","14018.000000","54.275000",,,,,,,,,,,,,,"175.000000","7571.500000","7171.000000","25.000000","7571.500000","7571.500000",,,,,,,,,,,"4088444.000000","5416356.000000","478784.000000","0.000000","65060080.000000","0.000000","87727424.000000",,"3623976.000000","26572884.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000",,,,,,,,"308.000000","7488.000000",,,,,,,,,,,"4135.000000","572.000000","544.000000","532.000000","750.000000","924.000000","665.000000","0.000000","0.000000","0.000000","498.000000","491.000000","484.000000","605.000000","713.000000","572.000000","160.000000","6000.000000",,"8969694.000000",,,,, -"12631.000000","52.095000","12631.000000","52.095000","12631.000000","52.095000",,,,,,,,,,,,,,"978.000000","3491.000000","2267.000000","5.000000","3491.000000","3491.000000",,,,,,,,,,,"4135924.000000","5296064.000000","478784.000000","0.000000","65045084.000000","0.000000","87727424.000000",,"3623976.000000","26621704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000",,,,,,,,"1030.000000","2706.000000",,,,,,,,,,,"4027.000000","567.000000","532.000000","527.000000","741.000000","924.000000","632.000000","0.000000","0.000000","0.000000","495.000000","482.000000","480.000000","605.000000","713.000000","564.000000","160.000000","6000.000000",,"8969714.000000",,,,, -"13065.000000","52.785000","13065.000000","52.785000","13065.000000","52.785000",,,,,,,,,,,,,,"1628.000000","5913.000000","3475.000000","9.000000","5913.000000","5913.000000",,,,,,,,,,,"4303696.000000","5631612.000000","478784.000000","0.000000","65064576.000000","0.000000","87727424.000000",,"3623976.000000","26598104.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000",,,,,,,,"1848.000000","4874.000000",,,,,,,,,,,"3918.000000","564.000000","514.000000","524.000000","735.000000","564.000000","632.000000","0.000000","0.000000","0.000000","492.000000","469.000000","477.000000","589.000000","518.000000","564.000000","160.000000","6000.000000",,"8969734.000000",,,,, -"14033.000000","54.290000","14033.000000","54.290000","14033.000000","54.290000",,,,,,,,,,,,,,"1653.000000","10614.000000","8516.000000","13.000000","10614.000000","10614.000000",,,,,,,,,,,"4031068.000000","5463836.000000","478784.000000","0.000000","65049572.000000","0.000000","87727424.000000",,"3623976.000000","26608804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000",,,,,,,,"1836.000000","9223.000000",,,,,,,,,,,"3777.000000","562.000000","533.000000","521.000000","719.000000","638.000000","625.000000","0.000000","0.000000","0.000000","491.000000","464.000000","473.000000","579.000000","531.000000","548.000000","160.000000","6000.000000",,"8969754.000000",,,,, -"14722.000000","55.375000","14722.000000","55.375000","14722.000000","55.375000",,,,,,,,,,,,,,"1703.000000","9723.500000","7724.000000","7.000000","9723.500000","9723.500000",,,,,,,,,,,"4172564.000000","5373472.000000","478784.000000","0.000000","65050652.000000","0.000000","87726480.000000",,"3623976.000000","26588280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000",,,,,,,,"2051.000000","7967.000000",,,,,,,,,,,"3963.000000","561.000000","579.000000","521.000000","712.000000","684.000000","638.000000","0.000000","0.000000","0.000000","490.000000","489.000000","471.000000","572.000000","572.000000","539.000000","160.000000","6000.000000",,"8969774.000000",,,,, -"14538.000000","55.080000","14538.000000","55.080000","14538.000000","55.080000",,,,,,,,,,,,,,"2997.000000","10109.500000","6883.000000","4.000000","10109.500000","10109.500000",,,,,,,,,,,"4256448.000000","5625132.000000","478784.000000","0.000000","65040440.000000","0.000000","87726480.000000",,"3623976.000000","26621172.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000",,,,,,,,"3157.000000","7180.000000",,,,,,,,,,,"4002.000000","560.000000","595.000000","520.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","489.000000","504.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969794.000000",,,,, -"12527.000000","51.925000","12527.000000","51.925000","12527.000000","51.925000",,,,,,,,,,,,,,"1870.000000","6917.000000","4936.000000","53.000000","6917.000000","6917.000000",,,,,,,,,,,"4780736.000000","6380108.000000","478784.000000","0.000000","65038320.000000","0.000000","87726480.000000",,"3623976.000000","26622748.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000",,,,,,,,"1950.000000","5077.000000",,,,,,,,,,,"4021.000000","558.000000","560.000000","519.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","488.000000","495.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969814.000000",,,,, -"12079.000000","51.220000","12079.000000","51.220000","12079.000000","51.220000",,,,,,,,,,,,,,"1829.000000","6554.000000","4549.000000","12.000000","6554.000000","6554.000000",,,,,,,,,,,"4860260.000000","6695860.000000","478784.000000","0.000000","65020712.000000","0.000000","87726480.000000",,"3623976.000000","26642900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000",,,,,,,,"1965.000000","4765.000000",,,,,,,,,,,"3869.000000","555.000000","511.000000","518.000000","707.000000","621.000000","621.000000","0.000000","0.000000","0.000000","487.000000","464.000000","465.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969834.000000",,,,, -"11593.000000","50.455000","11593.000000","50.455000","11593.000000","50.455000",,,,,,,,,,,,,,"627.000000","5474.000000","4631.000000","5.000000","5474.000000","5474.000000",,,,,,,,,,,"5111920.000000","7115288.000000","478784.000000","0.000000","65017516.000000","0.000000","87726480.000000",,"3623976.000000","26657296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000",,,,,,,,"781.000000","4907.000000",,,,,,,,,,,"3935.000000","555.000000","494.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","487.000000","445.000000","464.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969854.000000",,,,, -"13167.000000","52.920000","13167.000000","52.920000","13167.000000","52.920000",,,,,,,,,,,,,,"308.000000","6196.500000","5716.000000","9.000000","6196.500000","6196.500000",,,,,,,,,,,"5174828.000000","7073344.000000","478784.000000","0.000000","65010484.000000","0.000000","87726480.000000",,"3623976.000000","26663032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000",,,,,,,,"403.000000","5965.000000",,,,,,,,,,,"3936.000000","552.000000","488.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","436.000000","463.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969874.000000",,,,, -"12314.000000","51.575000","12314.000000","51.575000","12314.000000","51.575000",,,,,,,,,,,,,,"488.000000","5682.000000","4937.000000","4.000000","5682.000000","5682.000000",,,,,,,,,,,"5359308.000000","7278788.000000","478784.000000","0.000000","64994012.000000","0.000000","87726572.000000",,"3623976.000000","26666292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000",,,,,,,,"558.000000","5379.000000",,,,,,,,,,,"3957.000000","551.000000","494.000000","520.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","442.000000","464.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969894.000000",,,,, -"13428.000000","53.325000","13428.000000","53.325000","13428.000000","53.325000",,,,,,,,,,,,,,"180.000000","6272.500000","6094.000000","4.000000","6272.500000","6272.500000",,,,,,,,,,,"5023764.000000","6985188.000000","478780.000000","0.000000","64999472.000000","0.000000","87726576.000000",,"3623976.000000","26630496.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000",,,,,,,,"299.000000","5971.000000",,,,,,,,,,,"3970.000000","549.000000","484.000000","522.000000","707.000000","557.000000","629.000000","0.000000","0.000000","0.000000","483.000000","448.000000","467.000000","572.000000","516.000000","531.000000","160.000000","6000.000000",,"8969914.000000",,,,, -"14210.000000","54.540000","14210.000000","54.540000","14210.000000","54.540000",,,,,,,,,,,,,,"296.000000","6461.000000","5850.000000","6.000000","6461.000000","6461.000000",,,,,,,,,,,"5149596.000000","6985188.000000","478780.000000","0.000000","64980680.000000","0.000000","87726576.000000",,"3623976.000000","26648040.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000",,,,,,,,"399.000000","6377.000000",,,,,,,,,,,"4162.000000","551.000000","521.000000","529.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","485.000000","475.000000","472.000000","572.000000","553.000000","532.000000","160.000000","6000.000000",,"8969934.000000",,,,, -"14066.000000","54.305000","14066.000000","54.305000","14066.000000","54.305000",,,,,,,,,,,,,,"324.000000","7525.000000","6472.000000","16.000000","7525.000000","7525.000000",,,,,,,,,,,"5007148.000000","6764400.000000","478780.000000","0.000000","64963712.000000","0.000000","87726576.000000",,"3623976.000000","26633152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000",,,,,,,,"513.000000","7740.000000",,,,,,,,,,,"4054.000000","550.000000","544.000000","532.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","486.000000","493.000000","474.000000","572.000000","553.000000","533.000000","160.000000","6000.000000",,"8969954.000000",,,,, -"17093.000000","59.250000","17093.000000","59.250000","17093.000000","59.250000",,,,,,,,,,,,,,"241.000000","5989.000000","5165.000000","8.000000","5989.000000","5989.000000",,,,,,,,,,,"5552316.000000","7435400.000000","478780.000000","0.000000","65380004.000000","0.000000","87726484.000000",,"3623976.000000","26323072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000",,,,,,,,"388.000000","6182.000000",,,,,,,,,,,"4172.000000","550.000000","598.000000","537.000000","707.000000","785.000000","644.000000","0.000000","0.000000","0.000000","486.000000","531.000000","479.000000","572.000000","646.000000","553.000000","160.000000","6000.000000",,"8969974.000000",,,,, -"19788.000000","63.465000","19788.000000","63.465000","19788.000000","63.465000",,,,,,,,,,,,,,"52.000000","12885.500000","12637.000000","148.000000","12885.500000","12885.500000",,,,,,,,,,,"6181464.000000","8190376.000000","478780.000000","0.000000","65366212.000000","0.000000","87726484.000000",,"3623976.000000","26338720.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000",,,,,,,,"190.000000","12890.000000",,,,,,,,,,,"4547.000000","550.000000","692.000000","559.000000","707.000000","900.000000","684.000000","0.000000","0.000000","0.000000","489.000000","608.000000","496.000000","598.000000","856.000000","604.000000","160.000000","6000.000000",,"8969994.000000",,,,, -"18474.000000","61.400000","18474.000000","61.400000","18474.000000","61.400000",,,,,,,,,,,,,,"286.000000","9984.000000","9432.000000","32.000000","9984.000000","9984.000000",,,,,,,,,,,"5761016.000000","7512724.000000","478780.000000","0.000000","65352800.000000","0.000000","87726636.000000",,"3623976.000000","26368640.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000",,,,,,,,"382.000000","9868.000000",,,,,,,,,,,"4379.000000","551.000000","744.000000","574.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","491.000000","659.000000","509.000000","620.000000","856.000000","647.000000","160.000000","6000.000000",,"8970014.000000",,,,, -"17232.000000","59.450000","17232.000000","59.450000","17232.000000","59.450000",,,,,,,,,,,,,,"180.000000","6142.000000","5937.000000","29.000000","6142.000000","6142.000000",,,,,,,,,,,"5762368.000000","7556016.000000","478776.000000","0.000000","65347860.000000","0.000000","87727992.000000",,"3623976.000000","26344060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000",,,,,,,,"195.000000","5971.000000",,,,,,,,,,,"4209.000000","553.000000","749.000000","584.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","494.000000","672.000000","520.000000","622.000000","856.000000","656.000000","160.000000","6000.000000",,"8970034.000000",,,,, -"17680.000000","60.150000","17680.000000","60.150000","17680.000000","60.150000",,,,,,,,,,,,,,"263.000000","8234.500000","7612.000000","12.000000","8234.500000","8234.500000",,,,,,,,,,,"5089856.000000","6694756.000000","478776.000000","0.000000","65338812.000000","0.000000","87726568.000000",,"3623976.000000","26351480.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000",,,,,,,,"685.000000","7909.000000",,,,,,,,,,,"4155.000000","553.000000","719.000000","596.000000","712.000000","810.000000","785.000000","0.000000","0.000000","0.000000","495.000000","634.000000","530.000000","640.000000","684.000000","662.000000","160.000000","6000.000000",,"8970054.000000",,,,, -"20499.000000","64.560000","20499.000000","64.560000","20499.000000","64.560000",,,,,,,,,,,,,,"53.000000","7673.500000","7506.000000","25.000000","7673.500000","7673.500000",,,,,,,,,,,"5446368.000000","7066716.000000","478776.000000","0.000000","65321752.000000","0.000000","87726568.000000",,"3623976.000000","26324468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000",,,,,,,,"165.000000","7622.000000",,,,,,,,,,,"4453.000000","557.000000","746.000000","607.000000","752.000000","877.000000","788.000000","0.000000","0.000000","0.000000","499.000000","657.000000","543.000000","647.000000","780.000000","717.000000","160.000000","6000.000000",,"8970074.000000",,,,, -"18402.000000","61.375000","18402.000000","61.375000","18402.000000","61.375000",,,,,,,,,,,,,,"4789.000000","12107.000000","7137.000000","24.000000","12107.000000","12107.000000",,,,,,,,,,,"5278596.000000","6961856.000000","478776.000000","0.000000","65529668.000000","0.000000","87726568.000000",,"3623976.000000","26101588.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000",,,,,,,,"4970.000000","7317.000000",,,,,,,,,,,"4285.000000","560.000000","778.000000","621.000000","778.000000","877.000000","823.000000","0.000000","0.000000","0.000000","501.000000","673.000000","554.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970094.000000",,,,, -"16313.000000","58.150000","16313.000000","58.150000","16313.000000","58.150000",,,,,,,,,,,,,,"93.000000","7041.000000","6408.000000","18.000000","7041.000000","7041.000000",,,,,,,,,,,"5991628.000000","7465176.000000","478776.000000","0.000000","65625120.000000","0.000000","87726568.000000",,"3623976.000000","26005564.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000",,,,,,,,"218.000000","7362.000000",,,,,,,,,,,"4125.000000","564.000000","757.000000","635.000000","752.000000","877.000000","823.000000","0.000000","0.000000","0.000000","506.000000","668.000000","564.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970114.000000",,,,, -"15224.000000","56.430000","15224.000000","56.430000","15224.000000","56.430000",,,,,,,,,,,,,,"43.000000","6387.000000","5188.000000","25.000000","6387.000000","6387.000000",,,,,,,,,,,"6075364.000000","7402116.000000","478776.000000","0.000000","65601996.000000","0.000000","87726420.000000",,"3623976.000000","25981532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000",,,,,,,,"222.000000","7319.000000",,,,,,,,,,,"3932.000000","566.000000","696.000000","645.000000","752.000000","848.000000","823.000000","0.000000","0.000000","0.000000","507.000000","600.000000","570.000000","647.000000","758.000000","726.000000","160.000000","6000.000000",,"8970134.000000",,,,, -"16372.000000","58.220000","16372.000000","58.220000","16372.000000","58.220000",,,,,,,,,,,,,,"43.000000","5389.500000","5050.000000","17.000000","5389.500000","5389.500000",,,,,,,,,,,"6159316.000000","7606360.000000","478776.000000","0.000000","65580336.000000","0.000000","87726488.000000",,"3623976.000000","26104452.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000",,,,,,,,"125.000000","5560.000000",,,,,,,,,,,"4204.000000","570.000000","652.000000","652.000000","752.000000","733.000000","823.000000","0.000000","0.000000","0.000000","510.000000","577.000000","580.000000","647.000000","626.000000","726.000000","160.000000","6000.000000",,"8970154.000000",,,,, -"17393.000000","59.810000","17393.000000","59.810000","17393.000000","59.810000",,,,,,,,,,,,,,"51.000000","6649.500000","6222.000000","19.000000","6649.500000","6649.500000",,,,,,,,,,,"6369032.000000","7920932.000000","478776.000000","0.000000","65560140.000000","0.000000","87726488.000000",,"3623976.000000","26123692.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000",,,,,,,,"171.000000","6854.000000",,,,,,,,,,,"4360.000000","575.000000","645.000000","667.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","515.000000","584.000000","594.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970174.000000",,,,, -"15954.000000","57.550000","15954.000000","57.550000","15954.000000","57.550000",,,,,,,,,,,,,,"47.000000","6627.000000","5604.000000","21.000000","6627.000000","6627.000000",,,,,,,,,,,"6159320.000000","7846956.000000","478776.000000","0.000000","65547728.000000","0.000000","87726488.000000",,"3623976.000000","26161860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000",,,,,,,,"251.000000","7350.000000",,,,,,,,,,,"4182.000000","577.000000","648.000000","675.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","517.000000","599.000000","602.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970194.000000",,,,, -"16716.000000","58.750000","16716.000000","58.750000","16716.000000","58.750000",,,,,,,,,,,,,,"52.000000","4941.000000","4888.000000","15.000000","4941.000000","4941.000000",,,,,,,,,,,"6564492.000000","8394572.000000","478776.000000","0.000000","65557180.000000","0.000000","87726488.000000",,"3623976.000000","26149540.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000",,,,,,,,"166.000000",,,,,,,,,,,,"4419.000000","581.000000","649.000000","685.000000","752.000000","710.000000","823.000000","0.000000","0.000000","0.000000","521.000000","605.000000","611.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970214.000000",,,,, -"15563.000000","56.935000","15563.000000","56.935000","15563.000000","56.935000",,,,,,,,,,,,,,"119.000000","5666.000000","5567.000000","51.000000","5666.000000","5666.000000",,,,,,,,,,,"6249784.000000","7975004.000000","478776.000000","0.000000","65536392.000000","0.000000","87726348.000000",,"3623976.000000","26168072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000",,,,,,,,"139.000000","5507.000000",,,,,,,,,,,"4089.000000","585.000000","636.000000","690.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","525.000000","579.000000","615.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970234.000000",,,,, -"16319.000000","58.105000","16319.000000","58.105000","16319.000000","58.105000",,,,,,,,,,,,,,"329.000000","4742.000000","4228.000000","34.000000","4742.000000","4742.000000",,,,,,,,,,,"6375700.000000","7997216.000000","478776.000000","0.000000","65513436.000000","0.000000","87726440.000000",,"3623976.000000","26184808.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000",,,,,,,,"411.000000","4515.000000",,,,,,,,,,,"4377.000000","588.000000","634.000000","693.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","527.000000","589.000000","621.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970254.000000",,,,, -"13003.000000","52.905000","13003.000000","52.905000","13003.000000","52.905000",,,,,,,,,,,,,,"46.000000","8229.500000","8077.000000","54.000000","8229.500000","8229.500000",,,,,,,,,,,"6339300.000000","7876924.000000","478776.000000","0.000000","65507988.000000","0.000000","87726440.000000",,"3623976.000000","26193752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000",,,,,,,,"145.000000","8191.000000",,,,,,,,,,,"4150.000000","585.000000","584.000000","682.000000","743.000000","725.000000","823.000000","0.000000","0.000000","0.000000","526.000000","545.000000","614.000000","650.000000","625.000000","726.000000","160.000000","6000.000000",,"8970274.000000",,,,, -"18547.000000","61.590000","18547.000000","61.590000","18547.000000","61.590000",,,,,,,,,,,,,,"81.000000","7082.500000","6889.000000","22.000000","7082.500000","7082.500000",,,,,,,,,,,"6297352.000000","7751092.000000","478776.000000","0.000000","65503120.000000","0.000000","87726440.000000",,"3623976.000000","26213864.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000",,,,,,,,"176.000000","7018.000000",,,,,,,,,,,"4233.000000","590.000000","638.000000","679.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","529.000000","575.000000","608.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970294.000000",,,,, -"15410.000000","56.670000","15410.000000","56.670000","15410.000000","56.670000",,,,,,,,,,,,,,"68.000000","6507.000000","6237.000000","25.000000","6507.000000","6507.000000",,,,,,,,,,,"6108612.000000","7593232.000000","478776.000000","0.000000","65492420.000000","0.000000","87726440.000000",,"3623976.000000","26202020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000",,,,,,,,"150.000000","6558.000000",,,,,,,,,,,"4244.000000","591.000000","637.000000","672.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","563.000000","602.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970314.000000",,,,, -"14745.000000","55.620000","14745.000000","55.620000","14745.000000","55.620000",,,,,,,,,,,,,,"53.000000","2073.000000","1918.000000","43.000000","2073.000000","2073.000000",,,,,,,,,,,"6318376.000000","7614252.000000","478776.000000","0.000000","65473556.000000","0.000000","87726488.000000",,"3623976.000000","26221604.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000",,,,,,,,"99.000000","2075.000000",,,,,,,,,,,"4191.000000","590.000000","654.000000","663.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","571.000000","594.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970334.000000",,,,, -"15791.000000","57.250000","15791.000000","57.250000","15791.000000","57.250000",,,,,,,,,,,,,,"57.000000","5451.500000","5099.000000","20.000000","5451.500000","5451.500000",,,,,,,,,,,"5815056.000000","7099876.000000","478776.000000","0.000000","65454560.000000","0.000000","87726488.000000",,"3623976.000000","26204668.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000",,,,,,,,"492.000000","5254.000000",,,,,,,,,,,"4222.000000","591.000000","597.000000","655.000000","743.000000","673.000000","782.000000","0.000000","0.000000","0.000000","531.000000","544.000000","590.000000","650.000000","629.000000","717.000000","160.000000","6000.000000",,"8970354.000000",,,,, -"16613.000000","58.530000","16613.000000","58.530000","16613.000000","58.530000",,,,,,,,,,,,,,"51.000000","6115.000000","6005.000000","21.000000","6115.000000","6115.000000",,,,,,,,,,,"5951444.000000","7100624.000000","478776.000000","0.000000","65444068.000000","0.000000","87728584.000000",,"3623976.000000","26226408.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000",,,,,,,,"138.000000","6035.000000",,,,,,,,,,,"4069.000000","591.000000","610.000000","645.000000","743.000000","696.000000","733.000000","0.000000","0.000000","0.000000","531.000000","550.000000","580.000000","650.000000","637.000000","650.000000","160.000000","6000.000000",,"8970374.000000",,,,, -"14821.000000","55.725000","14821.000000","55.725000","14821.000000","55.725000",,,,,,,,,,,,,,"51.000000","5686.500000","4605.000000","18.000000","5686.500000","5686.500000",,,,,,,,,,,"5621576.000000","6986040.000000","478776.000000","0.000000","65444408.000000","0.000000","87728784.000000",,"3623976.000000","26225264.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000",,,,,,,,"261.000000","6456.000000",,,,,,,,,,,"3965.000000","592.000000","636.000000","635.000000","743.000000","696.000000","711.000000","0.000000","0.000000","0.000000","531.000000","558.000000","571.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970394.000000",,,,, -"14756.000000","55.630000","14756.000000","55.630000","14756.000000","55.630000",,,,,,,,,,,,,,"51.000000","6384.500000","5990.000000","25.000000","6384.500000","6384.500000",,,,,,,,,,,"6177880.000000","7712540.000000","478776.000000","0.000000","65460764.000000","0.000000","87764408.000000",,"3623976.000000","26249284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000",,,,,,,,"161.000000","6565.000000",,,,,,,,,,,"4132.000000","594.000000","625.000000","628.000000","743.000000","696.000000","702.000000","0.000000","0.000000","0.000000","532.000000","548.000000","566.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970414.000000",,,,, -"14613.000000","55.400000","14613.000000","55.400000","14613.000000","55.400000",,,,,,,,,,,,,,"63.000000","5010.000000","4911.000000","19.000000","5010.000000","5010.000000",,,,,,,,,,,"6198864.000000","7817412.000000","478776.000000","0.000000","65443124.000000","0.000000","87764420.000000",,"3623976.000000","26286804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000",,,,,,,,"133.000000","4912.000000",,,,,,,,,,,"4179.000000","596.000000","592.000000","624.000000","743.000000","695.000000","702.000000","0.000000","0.000000","0.000000","533.000000","523.000000","565.000000","650.000000","591.000000","646.000000","160.000000","6000.000000",,"8970434.000000",,,,, -"16089.000000","57.705000","16089.000000","57.705000","16089.000000","57.705000",,,,,,,,,,,,,,"152.000000","7417.500000","7087.000000","17.000000","7417.500000","7417.500000",,,,,,,,,,,"5863848.000000","7386684.000000","478776.000000","0.000000","65438364.000000","0.000000","87764420.000000",,"3623976.000000","26289516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000",,,,,,,,"176.000000","7419.000000",,,,,,,,,,,"4367.000000","598.000000","597.000000","624.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","536.000000","547.000000","565.000000","656.000000","683.000000","649.000000","160.000000","6000.000000",,"8970454.000000",,,,, -"14933.000000","55.890000","14933.000000","55.890000","14933.000000","55.890000",,,,,,,,,,,,,,"60.000000","6719.500000","6644.000000","17.000000","6719.500000","6719.500000",,,,,,,,,,,"5234704.000000","6946284.000000","478776.000000","0.000000","65425044.000000","0.000000","87764420.000000",,"3623976.000000","26311328.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000",,,,,,,,"170.000000","6564.000000",,,,,,,,,,,"4047.000000","601.000000","589.000000","617.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","538.000000","546.000000","558.000000","656.000000","683.000000","646.000000","160.000000","6000.000000",,"8970474.000000",,,,, -"15058.000000","56.080000","15058.000000","56.080000","15058.000000","56.080000",,,,,,,,,,,,,,"39.000000","6464.500000","6211.000000","32.000000","6464.500000","6464.500000",,,,,,,,,,,"5046956.000000","6832512.000000","478776.000000","0.000000","65413676.000000","0.000000","87764268.000000",,"3623976.000000","26321180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000",,,,,,,,"137.000000","6541.000000",,,,,,,,,,,"4155.000000","603.000000","601.000000","615.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","541.000000","562.000000","557.000000","656.000000","683.000000","639.000000","160.000000","6000.000000",,"8970494.000000",,,,, -"14597.000000","55.350000","14597.000000","55.350000","14597.000000","55.350000",,,,,,,,,,,,,,"73.000000","9394.500000","9084.000000","40.000000","9394.500000","9394.500000",,,,,,,,,,,"5178760.000000","7026940.000000","478776.000000","0.000000","65394196.000000","0.000000","87764324.000000",,"3623976.000000","26340208.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000",,,,,,,,"203.000000","9429.000000",,,,,,,,,,,"4137.000000","606.000000","584.000000","611.000000","743.000000","631.000000","696.000000","0.000000","0.000000","0.000000","543.000000","536.000000","552.000000","656.000000","605.000000","629.000000","160.000000","6000.000000",,"8970514.000000",,,,, -"14061.000000","54.505000","14061.000000","54.505000","14061.000000","54.505000",,,,,,,,,,,,,,"77.000000","14021.500000","13801.000000","63.000000","14021.500000","14021.500000",,,,,,,,,,,"5220700.000000","6880148.000000","478776.000000","0.000000","65390696.000000","0.000000","87764324.000000",,"3623976.000000","26337004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000",,,,,,,,"217.000000","13947.000000",,,,,,,,,,,"4047.000000","609.000000","588.000000","607.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","545.000000","524.000000","547.000000","656.000000","595.000000","629.000000","160.000000","6000.000000",,"8970534.000000",,,,, -"15058.000000","56.060000","15058.000000","56.060000","15058.000000","56.060000",,,,,,,,,,,,,,"382.000000","5720.000000","5320.000000","22.000000","5720.000000","5720.000000",,,,,,,,,,,"5430416.000000","7151624.000000","478776.000000","0.000000","65372456.000000","0.000000","87764324.000000",,"3623976.000000","26376740.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000",,,,,,,,"438.000000","5299.000000",,,,,,,,,,,"4118.000000","609.000000","574.000000","603.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","514.000000","542.000000","656.000000","550.000000","629.000000","160.000000","6000.000000",,"8970554.000000",,,,, -"13477.000000","53.580000","13477.000000","53.580000","13477.000000","53.580000",,,,,,,,,,,,,,"1543.000000","7325.000000","5991.000000","25.000000","7325.000000","7325.000000",,,,,,,,,,,"5155096.000000","6630556.000000","478776.000000","0.000000","65365580.000000","0.000000","87764324.000000",,"3623976.000000","26382484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000",,,,,,,,"677.000000","6437.000000",,,,,,,,,,,"4118.000000","609.000000","564.000000","607.000000","733.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","517.000000","546.000000","650.000000","630.000000","630.000000","160.000000","6000.000000",,"8970574.000000",,,,, -"18520.000000","61.475000","18520.000000","61.475000","18520.000000","61.475000",,,,,,,,,,,,,,"2740.000000","38507.000000","34859.000000","35.000000","38507.000000","38507.000000",,,,,,,,,,,"5343840.000000","6630552.000000","478776.000000","0.000000","65355420.000000","0.000000","87764324.000000",,"3623976.000000","26373872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000",,,,,,,,"4072.000000","35341.000000",,,,,,,,,,,"4119.000000","616.000000","647.000000","609.000000","778.000000","1092.000000","696.000000","0.000000","0.000000","0.000000","550.000000","564.000000","545.000000","659.000000","768.000000","634.000000","160.000000","6000.000000",,"8970594.000000",,,,, -"18741.000000","61.810000","18741.000000","61.810000","18741.000000","61.810000",,,,,,,,,,,,,,"60.000000","6559.000000","5378.000000","22.000000","6559.000000","6559.000000",,,,,,,,,,,"5520340.000000","6871116.000000","478760.000000","0.000000","65333124.000000","0.000000","87764304.000000",,"3623976.000000","26368488.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000",,,,,,,,"250.000000","7430.000000",,,,,,,,,,,"4178.000000","622.000000","729.000000","621.000000","785.000000","1092.000000","797.000000","0.000000","0.000000","0.000000","554.000000","610.000000","551.000000","662.000000","779.000000","637.000000","160.000000","6000.000000",,"8970614.000000",,,,, -"21977.000000","66.870000","21977.000000","66.870000","21977.000000","66.870000",,,,,,,,,,,,,,"51.000000","3018.500000","2744.000000","6.000000","3018.500000","3018.500000",,,,,,,,,,,"5520160.000000","7185792.000000","478760.000000","0.000000","65321152.000000","0.000000","87764120.000000",,"3623976.000000","26379716.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000",,,,,,,,"128.000000","3114.000000",,,,,,,,,,,"4355.000000","633.000000","883.000000","653.000000","797.000000","1247.000000","900.000000","0.000000","0.000000","0.000000","560.000000","678.000000","567.000000","672.000000","868.000000","713.000000","160.000000","6000.000000",,"8970634.000000",,,,, -"21223.000000","65.685000","21223.000000","65.685000","21223.000000","65.685000",,,,,,,,,,,,,,"60.000000","7292.000000","6874.000000","30.000000","7292.000000","7292.000000",,,,,,,,,,,"5142856.000000","7269864.000000","478760.000000","0.000000","65305336.000000","0.000000","87764304.000000",,"3623976.000000","26308196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000",,,,,,,,"546.000000","7104.000000",,,,,,,,,,,"4468.000000","647.000000","1003.000000","691.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","568.000000","742.000000","585.000000","717.000000","868.000000","765.000000","160.000000","6000.000000",,"8970654.000000",,,,, -"19746.000000","63.375000","19746.000000","63.375000","19746.000000","63.375000",,,,,,,,,,,,,,"54.000000","7183.000000","6997.000000","14.000000","7183.000000","7183.000000",,,,,,,,,,,"5092148.000000","7156244.000000","478760.000000","0.000000","65313480.000000","0.000000","87764304.000000",,"3623976.000000","26273372.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000",,,,,,,,"153.000000","7161.000000",,,,,,,,,,,"4291.000000","652.000000","1019.000000","703.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","572.000000","756.000000","593.000000","726.000000","868.000000","768.000000","160.000000","6000.000000",,"8970674.000000",,,,, -"17637.000000","60.060000","17637.000000","60.060000","17637.000000","60.060000",,,,,,,,,,,,,,"121.000000","5487.500000","5324.000000","12.000000","5487.500000","5487.500000",,,,,,,,,,,"5059368.000000","6808616.000000","478760.000000","0.000000","65296348.000000","0.000000","87764332.000000",,"3623976.000000","26288184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000",,,,,,,,"137.000000","5391.000000",,,,,,,,,,,"4412.000000","656.000000","932.000000","712.000000","857.000000","1184.000000","1092.000000","0.000000","0.000000","0.000000","575.000000","730.000000","602.000000","727.000000","852.000000","776.000000","160.000000","6000.000000",,"8970694.000000",,,,, -"13666.000000","53.840000","13666.000000","53.840000","13666.000000","53.840000",,,,,,,,,,,,,,"581.000000","7151.000000","6472.000000","17.000000","7151.000000","7151.000000",,,,,,,,,,,"5122280.000000","6577928.000000","478760.000000","0.000000","65297512.000000","0.000000","87764332.000000",,"3623976.000000","26253144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000",,,,,,,,"672.000000","6577.000000",,,,,,,,,,,"3981.000000","657.000000","710.000000","707.000000","857.000000","913.000000","1092.000000","0.000000","0.000000","0.000000","576.000000","611.000000","597.000000","727.000000","830.000000","776.000000","160.000000","6000.000000",,"8970714.000000",,,,, -"13301.000000","53.260000","13301.000000","53.260000","13301.000000","53.260000",,,,,,,,,,,,,,"60.000000","4931.500000","4850.000000","22.000000","4931.500000","4931.500000",,,,,,,,,,,"5206920.000000","6725480.000000","478760.000000","0.000000","65278336.000000","0.000000","87765084.000000",,"3623976.000000","26422524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000",,,,,,,,"137.000000","4815.000000",,,,,,,,,,,"4140.000000","659.000000","612.000000","707.000000","857.000000","857.000000","1092.000000","0.000000","0.000000","0.000000","577.000000","536.000000","595.000000","727.000000","776.000000","776.000000","160.000000","6000.000000",,"8970734.000000",,,,, -"13782.000000","54.010000","13782.000000","54.010000","13782.000000","54.010000",,,,,,,,,,,,,,"968.000000","11337.000000","10137.000000","26.000000","11337.000000","11337.000000",,,,,,,,,,,"5433632.000000","6862384.000000","478760.000000","0.000000","65269480.000000","0.000000","87764332.000000",,"3623976.000000","26429364.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000",,,,,,,,"1138.000000","10429.000000",,,,,,,,,,,"4033.000000","660.000000","550.000000","703.000000","857.000000","594.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","479.000000","588.000000","727.000000","511.000000","776.000000","160.000000","6000.000000",,"8970754.000000",,,,, -"12716.000000","52.330000","12716.000000","52.330000","12716.000000","52.330000",,,,,,,,,,,,,,"104.000000","4438.500000","4074.000000","8.000000","4438.500000","4438.500000",,,,,,,,,,,"5119060.000000","6505864.000000","478760.000000","0.000000","65260124.000000","0.000000","87764332.000000",,"3623976.000000","26476576.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000",,,,,,,,"188.000000","4510.000000",,,,,,,,,,,"3995.000000","661.000000","554.000000","700.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","475.000000","583.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970774.000000",,,,, -"13041.000000","52.835000","13041.000000","52.835000","13041.000000","52.835000",,,,,,,,,,,,,,"53.000000","5975.000000","5921.000000","16.000000","5975.000000","5975.000000",,,,,,,,,,,"5202980.000000","6526868.000000","478760.000000","0.000000","65242600.000000","0.000000","87764364.000000",,"3623976.000000","26486088.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000",,,,,,,,"205.000000",,,,,,,,,,,,"3888.000000","663.000000","557.000000","698.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","478.000000","579.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970794.000000",,,,, -"12890.000000","52.595000","12890.000000","52.595000","12890.000000","52.595000",,,,,,,,,,,,,,"56.000000","6023.000000","4717.000000","9.000000","6023.000000","6023.000000",,,,,,,,,,,"5514332.000000","6821240.000000","478760.000000","0.000000","65236200.000000","0.000000","87764364.000000",,"3623976.000000","26490704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000",,,,,,,,"246.000000","7026.000000",,,,,,,,,,,"3860.000000","663.000000","534.000000","693.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","455.000000","572.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970814.000000",,,,, -"15270.000000","56.315000","15270.000000","56.315000","15270.000000","56.315000",,,,,,,,,,,,,,"65.000000","8485.500000","7069.000000","25.000000","8485.500000","8485.500000",,,,,,,,,,,"5556280.000000","6936012.000000","478760.000000","0.000000","65214124.000000","0.000000","87764364.000000",,"3623976.000000","26522796.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000",,,,,,,,"261.000000","9576.000000",,,,,,,,,,,"4105.000000","664.000000","556.000000","694.000000","857.000000","621.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","488.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970834.000000",,,,, -"14576.000000","55.220000","14576.000000","55.220000","14576.000000","55.220000",,,,,,,,,,,,,,"358.000000","8269.500000","6616.000000","39.000000","8269.500000","8269.500000",,,,,,,,,,,"5577076.000000","7082640.000000","478760.000000","0.000000","65203628.000000","0.000000","87764192.000000",,"3623976.000000","26530856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000",,,,,,,,"536.000000","9029.000000",,,,,,,,,,,"4064.000000","664.000000","561.000000","696.000000","857.000000","681.000000","1092.000000","0.000000","0.000000","0.000000","580.000000","501.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970854.000000",,,,, -"15993.000000","57.430000","15993.000000","57.430000","15993.000000","57.430000",,,,,,,,,,,,,,"55.000000","7285.000000","5957.000000","18.000000","7285.000000","7285.000000",,,,,,,,,,,"5349748.000000","7013948.000000","478760.000000","0.000000","65190440.000000","0.000000","87764388.000000",,"3623976.000000","26546468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000",,,,,,,,"241.000000","8315.000000",,,,,,,,,,,"4227.000000","663.000000","598.000000","699.000000","857.000000","737.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","540.000000","576.000000","727.000000","621.000000","776.000000","160.000000","6000.000000",,"8970874.000000",,,,, -"17219.000000","59.345000","17219.000000","59.345000","17219.000000","59.345000",,,,,,,,,,,,,,"49.000000","10588.000000","9133.000000","22.000000","10588.000000","10588.000000",,,,,,,,,,,"5790148.000000","7475324.000000","478760.000000","0.000000","65172840.000000","0.000000","87764388.000000",,"3623976.000000","26535876.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000",,,,,,,,"271.000000","11722.000000",,,,,,,,,,,"4145.000000","661.000000","649.000000","694.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","577.000000","572.000000","578.000000","726.000000","726.000000","776.000000","160.000000","6000.000000",,"8970894.000000",,,,, -"14678.000000","55.360000","14678.000000","55.360000","14678.000000","55.360000",,,,,,,,,,,,,,"6058.000000","11017.500000","3886.000000","8.000000","11017.500000","11017.500000",,,,,,,,,,,"5790148.000000","7412412.000000","478760.000000","0.000000","65164092.000000","0.000000","87764388.000000",,"3623976.000000","26462568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000",,,,,,,,"5805.000000","6284.000000",,,,,,,,,,,"4194.000000","658.000000","658.000000","681.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","574.000000","580.000000","570.000000","726.000000","726.000000","765.000000","160.000000","6000.000000",,"8970914.000000",,,,, -"16621.000000","58.405000","16621.000000","58.405000","16621.000000","58.405000",,,,,,,,,,,,,,"4001.000000","15921.500000","10755.000000","20.000000","15921.500000","15921.500000",,,,,,,,,,,"5828872.000000","7298412.000000","478760.000000","0.000000","65169132.000000","0.000000","87764388.000000",,"3623976.000000","26384032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000",,,,,,,,"3877.000000","13209.000000",,,,,,,,,,,"4032.000000","657.000000","664.000000","656.000000","848.000000","806.000000","910.000000","0.000000","0.000000","0.000000","573.000000","584.000000","558.000000","726.000000","726.000000","762.000000","160.000000","6000.000000",,"8970934.000000",,,,, -"14528.000000","55.115000","14528.000000","55.115000","14528.000000","55.115000",,,,,,,,,,,,,,"1750.000000","12482.500000","10221.000000","23.000000","12482.500000","12482.500000",,,,,,,,,,,"5535824.000000","6858564.000000","478760.000000","0.000000","65149108.000000","0.000000","87764944.000000",,"3623976.000000","26402544.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000",,,,,,,,"2738.000000","10256.000000",,,,,,,,,,,"4113.000000","654.000000","611.000000","616.000000","848.000000","727.000000","818.000000","0.000000","0.000000","0.000000","571.000000","540.000000","537.000000","726.000000","659.000000","659.000000","160.000000","6000.000000",,"8970954.000000",,,,, -"16287.000000","57.880000","16287.000000","57.880000","16287.000000","57.880000",,,,,,,,,,,,,,"4429.000000","25275.000000","18213.000000","23.000000","25275.000000","25275.000000",,,,,,,,,,,"5430364.000000","6984940.000000","478760.000000","0.000000","65166916.000000","0.000000","87764340.000000",,"3623976.000000","26388880.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000",,,,,,,,"5109.000000","22799.000000",,,,,,,,,,,"4076.000000","652.000000","654.000000","608.000000","839.000000","780.000000","780.000000","0.000000","0.000000","0.000000","568.000000","555.000000","530.000000","683.000000","659.000000","657.000000","160.000000","6000.000000",,"8970974.000000",,,,, -"15332.000000","56.390000","15332.000000","56.390000","15332.000000","56.390000",,,,,,,,,,,,,,"701.000000","12795.000000","10710.000000","24.000000","12795.000000","12795.000000",,,,,,,,,,,"5256672.000000","6958056.000000","478760.000000","0.000000","65172744.000000","0.000000","87764340.000000",,"3623976.000000","26398520.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000",,,,,,,,"925.000000","13254.000000",,,,,,,,,,,"3974.000000","649.000000","648.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","564.000000","545.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8970994.000000",,,,, -"13337.000000","53.255000","13337.000000","53.255000","13337.000000","53.255000",,,,,,,,,,,,,,"6718.000000","25426.000000","17751.000000","16.000000","25426.000000","25426.000000",,,,,,,,,,,"5318156.000000","7061216.000000","478760.000000","0.000000","65152752.000000","0.000000","87757936.000000",,"3623976.000000","26452556.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000",,,,,,,,"6273.000000","20108.000000",,,,,,,,,,,"4185.000000","645.000000","625.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","561.000000","531.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8971014.000000",,,,, -"13002.000000","52.720000","13002.000000","52.720000","13002.000000","52.720000",,,,,,,,,,,,,,"12831.000000","23631.500000","8879.000000","31.000000","23631.500000","23631.500000",,,,,,,,,,,"5423016.000000","6850352.000000","478760.000000","0.000000","65137676.000000","0.000000","87757936.000000",,"3623976.000000","26483464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000",,,,,,,,"13889.000000","11664.000000",,,,,,,,,,,"3989.000000","642.000000","551.000000","596.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","560.000000","490.000000","521.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971034.000000",,,,, -"13260.000000","53.115000","13260.000000","53.115000","13260.000000","53.115000",,,,,,,,,,,,,,"12906.000000","27727.500000","13426.000000","19.000000","27727.500000","27727.500000",,,,,,,,,,,"5527816.000000","7206800.000000","478760.000000","0.000000","65119288.000000","0.000000","87757876.000000",,"3623976.000000","26498764.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000",,,,,,,,"13005.000000","16118.000000",,,,,,,,,,,"4107.000000","640.000000","519.000000","593.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","558.000000","477.000000","520.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971054.000000",,,,, -"13493.000000","53.475000","13493.000000","53.475000","13493.000000","53.475000",,,,,,,,,,,,,,"11038.000000","22479.000000","11440.000000","86.000000","22479.000000","22479.000000",,,,,,,,,,,"5360044.000000","7329212.000000","478760.000000","0.000000","65101964.000000","0.000000","87757876.000000",,"3623976.000000","26521312.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000",,,,,,,,,"12374.000000",,,,,,,,,,,"3954.000000","636.000000","508.000000","590.000000","837.000000","571.000000","737.000000","0.000000","0.000000","0.000000","554.000000","471.000000","520.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971074.000000",,,,, -"14068.000000","54.370000","14068.000000","54.370000","14068.000000","54.370000",,,,,,,,,,,,,,"100.000000","19217.500000","18033.000000","28.000000","19217.500000","19217.500000",,,,,,,,,,,"5255248.000000","7245388.000000","478760.000000","0.000000","65093328.000000","0.000000","87757936.000000",,"3623976.000000","26560116.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000",,,,,,,,"327.000000","19975.000000",,,,,,,,,,,"4032.000000","635.000000","535.000000","592.000000","837.000000","605.000000","737.000000","0.000000","0.000000","0.000000","553.000000","485.000000","522.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971094.000000",,,,, -"14613.000000","55.220000","14613.000000","55.220000","14613.000000","55.220000",,,,,,,,,,,,,,"539.000000","11285.000000","9409.000000","17.000000","11285.000000","11285.000000",,,,,,,,,,,"5510324.000000","7033248.000000","478760.000000","0.000000","65085004.000000","0.000000","87757936.000000",,"3623976.000000","26594856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000",,,,,,,,"809.000000","11813.000000",,,,,,,,,,,"4170.000000","633.000000","547.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","551.000000","496.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971114.000000",,,,, -"15480.000000","56.575000","15480.000000","56.575000","15480.000000","56.575000",,,,,,,,,,,,,,"597.000000","21656.500000","21138.000000","23.000000","21656.500000","21656.500000",,,,,,,,,,,"5678092.000000","7096160.000000","478760.000000","0.000000","65074268.000000","0.000000","87757936.000000",,"3623976.000000","26605000.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000",,,,,,,,"818.000000","20760.000000",,,,,,,,,,,"4105.000000","632.000000","573.000000","593.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","550.000000","525.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971134.000000",,,,, -"14994.000000","55.800000","14994.000000","55.800000","14994.000000","55.800000",,,,,,,,,,,,,,"874.000000","35984.000000","35110.000000","33.000000","35984.000000","35984.000000",,,,,,,,,,,"5573144.000000","7223044.000000","478760.000000","0.000000","65054976.000000","0.000000","87757844.000000",,"3623976.000000","26657388.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000",,,,,,,,"1100.000000",,,,,,,,,,,,"4104.000000","631.000000","577.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","549.000000","536.000000","529.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971154.000000",,,,, -"14603.000000","55.185000","14603.000000","55.185000","14603.000000","55.185000",,,,,,,,,,,,,,"2100.000000","21709.500000","20628.000000","44.000000","21709.500000","21709.500000",,,,,,,,,,,"5162988.000000","7274264.000000","478760.000000","0.000000","65048320.000000","0.000000","87757844.000000",,"3623976.000000","26705580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000",,,,,,,,"2339.000000","18351.000000",,,,,,,,,,,"4247.000000","633.000000","585.000000","593.000000","837.000000","620.000000","733.000000","0.000000","0.000000","0.000000","551.000000","548.000000","530.000000","674.000000","592.000000","637.000000","160.000000","6000.000000",,"8971174.000000",,,,, -"17388.000000","59.540000","17388.000000","59.540000","17388.000000","59.540000",,,,,,,,,,,,,,"20396.000000","32420.500000","10753.000000","15.000000","32420.500000","32420.500000",,,,,,,,,,,"5142020.000000","7379120.000000","478760.000000","0.000000","65030248.000000","0.000000","87757844.000000",,"3623976.000000","26723340.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000",,,,,,,,"19967.000000","13724.000000",,,,,,,,,,,"4248.000000","631.000000","628.000000","589.000000","837.000000","995.000000","709.000000","0.000000","0.000000","0.000000","550.000000","563.000000","526.000000","674.000000","787.000000","628.000000","160.000000","6000.000000",,"8971194.000000",,,,, -"17613.000000","59.890000","17613.000000","59.890000","17613.000000","59.890000",,,,,,,,,,,,,,"10834.000000","26108.500000","14996.000000","42.000000","26108.500000","26108.500000",,,,,,,,,,,"4974108.000000","6896640.000000","478760.000000","0.000000","65027824.000000","0.000000","87757704.000000",,"3623976.000000","26731200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000",,,,,,,,"11059.000000","15327.000000",,,,,,,,,,,"4379.000000","634.000000","674.000000","598.000000","837.000000","995.000000","733.000000","0.000000","0.000000","0.000000","551.000000","587.000000","531.000000","683.000000","787.000000","628.000000","160.000000","6000.000000",,"8971214.000000",,,,, -"20111.000000","63.795000","20111.000000","63.795000","20111.000000","63.795000",,,,,,,,,,,,,,"10192.000000","24541.000000","13620.000000","11.000000","24541.000000","24541.000000",,,,,,,,,,,"4806292.000000","6561048.000000","478760.000000","0.000000","65011788.000000","0.000000","87757660.000000",,"3623976.000000","26745872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000",,,,,,,,"11264.000000","14004.000000",,,,,,,,,,,"4321.000000","639.000000","739.000000","608.000000","839.000000","995.000000","780.000000","0.000000","0.000000","0.000000","555.000000","629.000000","539.000000","687.000000","787.000000","662.000000","160.000000","6000.000000",,"8971234.000000",,,,, -"15542.000000","56.635000","15542.000000","56.635000","15542.000000","56.635000",,,,,,,,,,,,,,"15852.000000","19185.000000","3382.000000","8.000000","19185.000000","19185.000000",,,,,,,,,,,"5088372.000000","6753404.000000","478760.000000","0.000000","65006264.000000","0.000000","87757844.000000",,"3623976.000000","26730732.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000",,,,,,,,"15348.000000","3787.000000",,,,,,,,,,,"4220.000000","641.000000","749.000000","617.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","555.000000","632.000000","544.000000","713.000000","770.000000","667.000000","160.000000","6000.000000",,"8971254.000000",,,,, -"17628.000000","59.890000","17628.000000","59.890000","17628.000000","59.890000",,,,,,,,,,,,,,"17248.000000","26331.000000","8457.000000","11.000000","26331.000000","26331.000000",,,,,,,,,,,"4962544.000000","6616512.000000","478760.000000","0.000000","64986884.000000","0.000000","87757844.000000",,"3623976.000000","26772816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000",,,,,,,,"18405.000000","8551.000000",,,,,,,,,,,"4129.000000","643.000000","755.000000","618.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","556.000000","630.000000","546.000000","713.000000","770.000000","674.000000","160.000000","6000.000000",,"8971274.000000",,,,, -"17862.000000","60.270000","17862.000000","60.270000","17862.000000","60.270000",,,,,,,,,,,,,,"16570.000000","32625.500000","15950.000000","35.000000","32625.500000","32625.500000",,,,,,,,,,,"4857684.000000","6616512.000000","478760.000000","0.000000","65005972.000000","0.000000","87757844.000000",,"3623976.000000","26754284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000",,,,,,,,"16307.000000","16423.000000",,,,,,,,,,,"4302.000000","645.000000","734.000000","625.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","558.000000","614.000000","553.000000","713.000000","725.000000","680.000000","160.000000","6000.000000",,"8971294.000000",,,,, -"16952.000000","58.830000","16952.000000","58.830000","16952.000000","58.830000",,,,,,,,,,,,,,"9218.000000","22607.500000","12733.000000","15.000000","22607.500000","22607.500000",,,,,,,,,,,"4995216.000000","6391676.000000","478760.000000","0.000000","64978860.000000","0.000000","87757844.000000",,"3623976.000000","26742524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000",,,,,,,,"10318.000000","12945.000000",,,,,,,,,,,"4314.000000","647.000000","718.000000","635.000000","848.000000","793.000000","794.000000","0.000000","0.000000","0.000000","560.000000","623.000000","563.000000","713.000000","697.000000","687.000000","160.000000","6000.000000",,"8971314.000000",,,,, -"18299.000000","60.940000","18299.000000","60.940000","18299.000000","60.940000",,,,,,,,,,,,,,"82.000000","7079.000000","6028.000000","25.000000","7079.000000","7079.000000",,,,,,,,,,,"5183916.000000","6570464.000000","478760.000000","0.000000","64971260.000000","0.000000","87757796.000000",,"3623976.000000","26736064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000",,,,,,,,"282.000000","7765.000000",,,,,,,,,,,"4252.000000","651.000000","701.000000","648.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","563.000000","631.000000","574.000000","713.000000","713.000000","697.000000","160.000000","6000.000000",,"8971334.000000",,,,, -"17053.000000","58.980000","17053.000000","58.980000","17053.000000","58.980000",,,,,,,,,,,,,,"762.000000","5353.500000","4206.000000","14.000000","5353.500000","5353.500000",,,,,,,,,,,"5519460.000000","6864064.000000","478760.000000","0.000000","64962188.000000","0.000000","87757796.000000",,"3623976.000000","26753628.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000",,,,,,,,"895.000000","4843.000000",,,,,,,,,,,"4411.000000","650.000000","675.000000","656.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","564.000000","629.000000","583.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971354.000000",,,,, -"17376.000000","59.475000","17376.000000","59.475000","17376.000000","59.475000",,,,,,,,,,,,,,"85.000000","6413.500000","6214.000000","7.000000","6413.500000","6413.500000",,,,,,,,,,,"5399480.000000","6801148.000000","478760.000000","0.000000","64943472.000000","0.000000","87757796.000000",,"3623976.000000","26770580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000",,,,,,,,"172.000000","6355.000000",,,,,,,,,,,"4342.000000","653.000000","677.000000","669.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","566.000000","636.000000","596.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971374.000000",,,,, -"16612.000000","58.275000","16612.000000","58.275000","16612.000000","58.275000",,,,,,,,,,,,,,"71.000000","6436.500000","6078.000000","17.000000","6436.500000","6436.500000",,,,,,,,,,,"5273648.000000","6465600.000000","478760.000000","0.000000","64934948.000000","0.000000","87757796.000000",,"3623976.000000","26770528.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000",,,,,,,,"148.000000","6575.000000",,,,,,,,,,,"4241.000000","656.000000","677.000000","677.000000","848.000000","789.000000","794.000000","0.000000","0.000000","0.000000","568.000000","632.000000","603.000000","713.000000","706.000000","706.000000","160.000000","6000.000000",,"8971394.000000",,,,, -"17535.000000","59.710000","17535.000000","59.710000","17535.000000","59.710000",,,,,,,,,,,,,,"131.000000","6562.000000","6366.000000","15.000000","6562.000000","6562.000000",,,,,,,,,,,"5105924.000000","6276904.000000","478760.000000","0.000000","64918120.000000","0.000000","87757844.000000",,"3623976.000000","26784464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000",,,,,,,,"158.000000","6468.000000",,,,,,,,,,,"4300.000000","658.000000","696.000000","686.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","570.000000","630.000000","610.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971414.000000",,,,, -"11303.000000","49.950000","11303.000000","49.950000","11303.000000","49.950000",,,,,,,,,,,,,,"19260.000000","29763.500000","10184.000000","81.000000","29763.500000","29763.500000",,,,,,,,,,,"5531204.000000","6759244.000000","478760.000000","0.000000","64917712.000000","0.000000","87757844.000000",,"3623976.000000","26820548.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000",,,,,,,,"19472.000000","10609.000000",,,,,,,,,,,"4006.000000","655.000000","612.000000","677.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","568.000000","545.000000","600.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971434.000000",,,,, -"9802.000000","47.595000","9802.000000","47.595000","9802.000000","47.595000",,,,,,,,,,,,,,"15321.000000","22219.500000","5840.000000","5.000000","22219.500000","22219.500000",,,,,,,,,,,"5363292.000000","6591332.000000","478760.000000","0.000000","64899916.000000","0.000000","87757704.000000",,"3623976.000000","26848292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000",,,,,,,,"15194.000000","8082.000000",,,,,,,,,,,"3744.000000","652.000000","524.000000","666.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","565.000000","463.000000","589.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971454.000000",,,,, -"13594.000000","53.540000","13594.000000","53.540000","13594.000000","53.540000",,,,,,,,,,,,,,"17289.000000","34131.500000","16242.000000","16.000000","34131.500000","34131.500000",,,,,,,,,,,"5426208.000000","6591336.000000","478760.000000","0.000000","64909528.000000","0.000000","87757704.000000",,"3623976.000000","26790416.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000",,,,,,,,"17579.000000","17152.000000",,,,,,,,,,,"3885.000000","654.000000","507.000000","670.000000","857.000000","970.000000","842.000000","0.000000","0.000000","0.000000","564.000000","420.000000","585.000000","713.000000","576.000000","713.000000","160.000000","6000.000000",,"8971474.000000",,,,, -"11184.000000","49.750000","11184.000000","49.750000","11184.000000","49.750000",,,,,,,,,,,,,,"7651.000000","16161.500000","8158.000000","8.000000","16161.500000","16161.500000",,,,,,,,,,,"5282828.000000","6501600.000000","478760.000000","0.000000","64893416.000000","0.000000","87757704.000000",,"3623976.000000","26805776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000",,,,,,,,"8256.000000","8258.000000",,,,,,,,,,,"3766.000000","645.000000","496.000000","651.000000","842.000000","970.000000","811.000000","0.000000","0.000000","0.000000","557.000000","408.000000","569.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971494.000000",,,,, -"10649.000000","48.910000","10649.000000","48.910000","10649.000000","48.910000",,,,,,,,,,,,,,"23708.000000","48739.000000","25031.000000","14.000000","48739.000000","48739.000000",,,,,,,,,,,"5178112.000000","6480772.000000","478760.000000","0.000000","64882768.000000","0.000000","87757844.000000",,"3623976.000000","26854460.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000",,,,,,,,"23616.000000",,,,,,,,,,,,"3835.000000","638.000000","510.000000","634.000000","839.000000","970.000000","811.000000","0.000000","0.000000","0.000000","552.000000","414.000000","554.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971514.000000",,,,, -"13349.000000","53.135000","13349.000000","53.135000","13349.000000","53.135000",,,,,,,,,,,,,,"19552.000000","47865.000000","28313.000000","28.000000","47865.000000","47865.000000",,,,,,,,,,,"5309792.000000","6543684.000000","478760.000000","0.000000","64875588.000000","0.000000","87757844.000000",,"3623976.000000","26864184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000",,,,,,,,,"28811.000000",,,,,,,,,,,"3796.000000","627.000000","479.000000","618.000000","811.000000","632.000000","789.000000","0.000000","0.000000","0.000000","546.000000","407.000000","540.000000","687.000000","522.000000","697.000000","160.000000","6000.000000",,"8971534.000000",,,,, -"11005.000000","49.465000","11005.000000","49.465000","11005.000000","49.465000",,,,,,,,,,,,,,"6901.000000","22293.500000","13851.000000","26.000000","22293.500000","22293.500000",,,,,,,,,,,"5609240.000000","6723156.000000","478760.000000","0.000000","64876956.000000","0.000000","87757844.000000",,"3623976.000000","26865196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000",,,,,,,,"12680.000000","11154.000000",,,,,,,,,,,"3819.000000","610.000000","480.000000","597.000000","789.000000","632.000000","781.000000","0.000000","0.000000","0.000000","535.000000","401.000000","523.000000","672.000000","522.000000","680.000000","160.000000","6000.000000",,"8971554.000000",,,,, -"12967.000000","52.580000","12967.000000","52.580000","12967.000000","52.580000",,,,,,,,,,,,,,"514.000000","28766.000000","19256.000000","130.000000","28766.000000","28766.000000",,,,,,,,,,,"5525212.000000","6723016.000000","478760.000000","0.000000","64959840.000000","0.000000","87757704.000000",,"3623976.000000","26710532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000",,,,,,,,"13335.000000","24426.000000",,,,,,,,,,,"3921.000000","604.000000","515.000000","585.000000","780.000000","632.000000","748.000000","0.000000","0.000000","0.000000","530.000000","429.000000","514.000000","671.000000","552.000000","680.000000","160.000000","6000.000000",,"8971574.000000",,,,, -"10679.000000","49.000000","10679.000000","49.000000","10679.000000","49.000000",,,,,,,,,,,,,,"159.000000","32484.500000","30560.000000","303.000000","32484.500000","32484.500000",,,,,,,,,,,"5966044.000000","7121900.000000","478756.000000","0.000000","64977548.000000","0.000000","87757848.000000",,"3623976.000000","26680572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000",,,,,,,,"2380.000000","31869.000000",,,,,,,,,,,"3815.000000","598.000000","487.000000","569.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","524.000000","405.000000","498.000000","662.000000","552.000000","672.000000","160.000000","6000.000000",,"8971594.000000",,,,, -"8712.000000","45.920000","8712.000000","45.920000","8712.000000","45.920000",,,,,,,,,,,,,,"107.000000","8184.500000","7322.000000","148.000000","8184.500000","8184.500000",,,,,,,,,,,"6019688.000000","7280404.000000","478756.000000","0.000000","64973904.000000","0.000000","87757848.000000",,"3623976.000000","26686860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000",,,,,,,,"648.000000","8291.000000",,,,,,,,,,,"3829.000000","592.000000","447.000000","542.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","519.000000","379.000000","474.000000","662.000000","552.000000","671.000000","160.000000","6000.000000",,"8971614.000000",,,,, -"8069.000000","44.915000","8069.000000","44.915000","8069.000000","44.915000",,,,,,,,,,,,,,"69.000000","6469.500000","6259.000000","137.000000","6469.500000","6469.500000",,,,,,,,,,,"6188200.000000","7239196.000000","478756.000000","0.000000","64972556.000000","0.000000","87758588.000000",,"3623976.000000","26760348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000",,,,,,,,"134.000000","6476.000000",,,,,,,,,,,"3797.000000","587.000000","361.000000","517.000000","764.000000","499.000000","694.000000","0.000000","0.000000","0.000000","516.000000","321.000000","452.000000","662.000000","403.000000","649.000000","160.000000","6000.000000",,"8971634.000000",,,,, -"9367.000000","46.955000","9367.000000","46.955000","9367.000000","46.955000",,,,,,,,,,,,,,"133.000000","3991.500000","3728.000000","46.000000","3991.500000","3991.500000",,,,,,,,,,,"6061344.000000","7154288.000000","478756.000000","0.000000","64997144.000000","0.000000","87757848.000000",,"3623976.000000","26713708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000",,,,,,,,"151.000000","3970.000000",,,,,,,,,,,"3737.000000","583.000000","339.000000","502.000000","764.000000","421.000000","693.000000","0.000000","0.000000","0.000000","513.000000","309.000000","435.000000","662.000000","367.000000","646.000000","160.000000","6000.000000",,"8971654.000000",,,,, -"7508.000000","44.040000","7508.000000","44.040000","7508.000000","44.040000",,,,,,,,,,,,,,"303.000000","1322.500000","999.000000","17.000000","1322.500000","1322.500000",,,,,,,,,,,"5809684.000000","6725584.000000","478756.000000","0.000000","64980220.000000","0.000000","87757848.000000",,"3623976.000000","26728568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000",,,,,,,,"324.000000","1018.000000",,,,,,,,,,,"3769.000000","576.000000","309.000000","469.000000","764.000000","421.000000","683.000000","0.000000","0.000000","0.000000","507.000000","288.000000","404.000000","662.000000","367.000000","576.000000","160.000000","6000.000000",,"8971674.000000",,,,, -"10016.000000","47.950000","10016.000000","47.950000","10016.000000","47.950000",,,,,,,,,,,,,,"46.000000","3684.000000","3622.000000","45.000000","3684.000000","3684.000000",,,,,,,,,,,"6275176.000000","7652448.000000","478756.000000","0.000000","64948772.000000","0.000000","87761964.000000",,"3623976.000000","26777940.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000",,,,,,,,"105.000000","3594.000000",,,,,,,,,,,"3690.000000","573.000000","336.000000","449.000000","764.000000","490.000000","624.000000","0.000000","0.000000","0.000000","504.000000","308.000000","387.000000","662.000000","442.000000","543.000000","160.000000","6000.000000",,"8971694.000000",,,,, -"10143.000000","48.135000","10143.000000","48.135000","10143.000000","48.135000",,,,,,,,,,,,,,"65.000000","4999.000000","4721.000000","29.000000","4999.000000","4999.000000",,,,,,,,,,,"6292128.000000","7711332.000000","478756.000000","0.000000","64921524.000000","0.000000","87757940.000000",,"3623976.000000","26802704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000",,,,,,,,"162.000000","5050.000000",,,,,,,,,,,"3834.000000","571.000000","344.000000","431.000000","764.000000","490.000000","550.000000","0.000000","0.000000","0.000000","503.000000","317.000000","372.000000","662.000000","442.000000","473.000000","160.000000","6000.000000",,"8971714.000000",,,,, -"8798.000000","46.025000","8798.000000","46.025000","8798.000000","46.025000",,,,,,,,,,,,,,"52.000000","4172.500000","3973.000000","26.000000","4172.500000","4172.500000",,,,,,,,,,,"6292128.000000","7962996.000000","478756.000000","0.000000","64912340.000000","0.000000","87757940.000000",,"3623976.000000","26841952.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000",,,,,,,,"122.000000","4197.000000",,,,,,,,,,,"3748.000000","564.000000","373.000000","421.000000","764.000000","490.000000","545.000000","0.000000","0.000000","0.000000","497.000000","339.000000","363.000000","662.000000","442.000000","451.000000","160.000000","6000.000000",,"8971734.000000",,,,, -"12195.000000","51.335000","12195.000000","51.335000","12195.000000","51.335000",,,,,,,,,,,,,,"341.000000","5383.000000","5044.000000","13.000000","5383.000000","5383.000000",,,,,,,,,,,"7193900.000000","8969632.000000","478756.000000","0.000000","64896984.000000","0.000000","87757940.000000",,"3623976.000000","26844128.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000",,,,,,,,"423.000000","4958.000000",,,,,,,,,,,"3882.000000","562.000000","404.000000","425.000000","764.000000","750.000000","560.000000","0.000000","0.000000","0.000000","495.000000","363.000000","367.000000","662.000000","626.000000","473.000000","160.000000","6000.000000",,"8971754.000000",,,,, -"18145.000000","60.860000","18145.000000","60.860000","18145.000000","60.860000",,,,,,,,,,,,,,"56.000000","9620.000000","9369.000000","8.000000","9620.000000","9620.000000",,,,,,,,,,,"7403932.000000","9620068.000000","478756.000000","0.000000","65305996.000000","0.000000","87757972.000000",,"3623976.000000","26434160.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000",,,,,,,,"187.000000","9627.000000",,,,,,,,,,,"3919.000000","566.000000","523.000000","435.000000","765.000000","1179.000000","620.000000","0.000000","0.000000","0.000000","496.000000","428.000000","373.000000","667.000000","751.000000","522.000000","160.000000","6000.000000",,"8971774.000000",,,,, -"21634.000000","66.350000","21634.000000","66.350000","21634.000000","66.350000",,,,,,,,,,,,,,"129.000000","10191.000000","9453.000000","9.000000","10191.000000","10191.000000",,,,,,,,,,,"7652172.000000","9616648.000000","478756.000000","0.000000","65352164.000000","0.000000","87757972.000000",,"3623976.000000","26377672.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000",,,,,,,,"314.000000","10485.000000",,,,,,,,,,,"4373.000000","581.000000","903.000000","502.000000","781.000000","1333.000000","1179.000000","0.000000","0.000000","0.000000","500.000000","617.000000","405.000000","674.000000","802.000000","751.000000","160.000000","6000.000000",,"8971794.000000",,,,, -"19601.000000","63.680000","19601.000000","63.680000","19601.000000","63.680000",,,,,,,,,,,,,,"449.000000","45245.000000","16714.000000","23.000000","45245.000000","45245.000000",,,,,,,,,,,"8323788.000000","10036600.000000","478756.000000","0.000000","66395552.000000","0.000000","90460164.000000",,"3761520.000000","27975252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000",,,,,,,,"54746.000000","18580.000000",,,,,,,,,,,"4202.000000","593.000000","1120.000000","547.000000","794.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","503.000000","695.000000","423.000000","680.000000","802.000000","751.000000","160.000000","6000.000000",,"8971814.000000",,,,, -"23008.000000","69.020000","23008.000000","69.020000","23008.000000","69.020000",,,,,,,,,,,,,,"92.000000","6666.500000","5294.000000","22.000000","6666.500000","6666.500000",,,,,,,,,,,"8050176.000000","9993676.000000","478756.000000","0.000000","66397860.000000","0.000000","90471840.000000",,"3754376.000000","27987776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000",,,,,,,,"2210.000000","5737.000000",,,,,,,,,,,"4371.000000","601.000000","1196.000000","578.000000","891.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","507.000000","752.000000","442.000000","706.000000","806.000000","782.000000","160.000000","6000.000000",,"8971834.000000",,,,, -"20170.000000","64.575000","20170.000000","64.575000","20170.000000","64.575000",,,,,,,,,,,,,,"79.000000","6557.500000","6400.000000","34.000000","6557.500000","6557.500000",,,,,,,,,,,"7981676.000000","9739852.000000","478756.000000","0.000000","66392424.000000","0.000000","90472108.000000",,"3754376.000000","27997428.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000",,,,,,,,"253.000000","6383.000000",,,,,,,,,,,"4668.000000","609.000000","1043.000000","615.000000","950.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","514.000000","749.000000","474.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971854.000000",,,,, -"19393.000000","63.340000","19393.000000","63.340000","19393.000000","63.340000",,,,,,,,,,,,,,"42.000000","12075.000000","11818.000000","29.000000","12075.000000","12075.000000",,,,,,,,,,,"7981556.000000","9655848.000000","478756.000000","0.000000","66360932.000000","0.000000","90471988.000000",,"3754376.000000","28077572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000",,,,,,,,"474.000000","11815.000000",,,,,,,,,,,"4319.000000","610.000000","917.000000","628.000000","950.000000","1170.000000","1257.000000","0.000000","0.000000","0.000000","516.000000","755.000000","488.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971874.000000",,,,, -"17637.000000","60.580000","17637.000000","60.580000","17637.000000","60.580000",,,,,,,,,,,,,,"70.000000","8997.000000","8619.000000","8.000000","8997.000000","8997.000000",,,,,,,,,,,"7834760.000000","9403328.000000","478756.000000","0.000000","66339184.000000","0.000000","90471988.000000",,"3754376.000000","28099768.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000",,,,,,,,"198.000000","9106.000000",,,,,,,,,,,"4308.000000","613.000000","821.000000","645.000000","950.000000","1068.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","717.000000","505.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971894.000000",,,,, -"14425.000000","55.545000","14425.000000","55.545000","14425.000000","55.545000",,,,,,,,,,,,,,"60.000000","9182.000000","9122.000000","13.000000","9182.000000","9182.000000",,,,,,,,,,,"7676256.000000","9202888.000000","478756.000000","0.000000","66335416.000000","0.000000","90471988.000000",,"3753872.000000","28141152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000",,,,,,,,"229.000000",,,,,,,,,,,,"4071.000000","614.000000","701.000000","666.000000","950.000000","809.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","617.000000","522.000000","713.000000","710.000000","789.000000","160.000000","6000.000000",,"8971914.000000",,,,, -"13205.000000","53.625000","13205.000000","53.625000","13205.000000","53.625000",,,,,,,,,,,,,,"49.000000","6798.500000","6574.000000","12.000000","6798.500000","6798.500000",,,,,,,,,,,"7550428.000000","9119000.000000","478756.000000","0.000000","66313700.000000","0.000000","90471988.000000",,"3753872.000000","28171516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000",,,,,,,,"158.000000","6815.000000",,,,,,,,,,,"3967.000000","615.000000","623.000000","680.000000","950.000000","780.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","544.000000","533.000000","713.000000","668.000000","789.000000","160.000000","6000.000000",,"8971934.000000",,,,, -"13497.000000","54.075000","13497.000000","54.075000","13497.000000","54.075000",,,,,,,,,,,,,,"62.000000","8339.500000","8095.000000","21.000000","8339.500000","8339.500000",,,,,,,,,,,"6585632.000000","8301004.000000","478756.000000","0.000000","66299188.000000","0.000000","90471884.000000",,"3753872.000000","28175572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000",,,,,,,,"192.000000","8329.000000",,,,,,,,,,,"4055.000000","616.000000","569.000000","691.000000","950.000000","662.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","492.000000","541.000000","713.000000","551.000000","789.000000","160.000000","6000.000000",,"8971954.000000",,,,, -"12618.000000","52.695000","12618.000000","52.695000","12618.000000","52.695000",,,,,,,,,,,,,,"62.000000","8976.500000","8771.000000","5.000000","8976.500000","8976.500000",,,,,,,,,,,"6839724.000000","8539964.000000","478756.000000","0.000000","66287820.000000","0.000000","90471884.000000",,"3753872.000000","28184708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000",,,,,,,,"194.000000","8924.000000",,,,,,,,,,,"3922.000000","616.000000","538.000000","712.000000","950.000000","613.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","465.000000","557.000000","713.000000","534.000000","789.000000","160.000000","6000.000000",,"8971974.000000",,,,, -"14653.000000","55.865000","14653.000000","55.865000","14653.000000","55.865000",,,,,,,,,,,,,,"61.000000","10934.000000","10622.000000","10.000000","10934.000000","10934.000000",,,,,,,,,,,"6986524.000000","8581912.000000","478752.000000","0.000000","66265948.000000","0.000000","90471888.000000",,"3753872.000000","28230196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000",,,,,,,,"213.000000","10971.000000",,,,,,,,,,,"3924.000000","617.000000","566.000000","726.000000","950.000000","626.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","486.000000","568.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8971994.000000",,,,, -"14644.000000","55.850000","14644.000000","55.850000","14644.000000","55.850000",,,,,,,,,,,,,,"116.000000","9671.500000","9517.000000","5.000000","9671.500000","9671.500000",,,,,,,,,,,"6713892.000000","8226264.000000","478752.000000","0.000000","66256400.000000","0.000000","90471888.000000",,"3753872.000000","28234912.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000",,,,,,,,"214.000000","9496.000000",,,,,,,,,,,"3975.000000","618.000000","567.000000","735.000000","950.000000","685.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","485.000000","575.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8972014.000000",,,,, -"14249.000000","55.225000","14249.000000","55.225000","14249.000000","55.225000",,,,,,,,,,,,,,"54.000000","10680.500000","10298.000000","3.000000","10680.500000","10680.500000",,,,,,,,,,,"6444680.000000","7804408.000000","478752.000000","0.000000","66241444.000000","0.000000","90471888.000000",,"3753872.000000","28257536.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000",,,,,,,,"220.000000","10787.000000",,,,,,,,,,,"4027.000000","618.000000","604.000000","758.000000","950.000000","792.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","521.000000","594.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972034.000000",,,,, -"15867.000000","57.750000","15867.000000","57.750000","15867.000000","57.750000",,,,,,,,,,,,,,"417.000000","13164.500000","11655.000000","7.000000","13164.500000","13164.500000",,,,,,,,,,,"6360796.000000","7930236.000000","478752.000000","0.000000","66221700.000000","0.000000","90471888.000000",,"3753872.000000","28145132.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000",,,,,,,,"686.000000","13570.000000",,,,,,,,,,,"4132.000000","622.000000","642.000000","774.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","536.000000","603.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972054.000000",,,,, -"13950.000000","54.735000","13950.000000","54.735000","13950.000000","54.735000",,,,,,,,,,,,,,"51.000000","8931.000000","8585.000000","32.000000","8931.000000","8931.000000",,,,,,,,,,,"5878312.000000","7049292.000000","478752.000000","0.000000","66205932.000000","0.000000","90471748.000000",,"3753872.000000","28138180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000",,,,,,,,"188.000000","9036.000000",,,,,,,,,,,"4034.000000","622.000000","650.000000","761.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","518.000000","540.000000","597.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972074.000000",,,,, -"16979.000000","59.500000","16979.000000","59.500000","16979.000000","59.500000",,,,,,,,,,,,,,"47.000000","11209.000000","10939.000000","17.000000","11209.000000","11209.000000",,,,,,,,,,,"5717700.000000","6966352.000000","478752.000000","0.000000","66240804.000000","0.000000","90453616.000000",,"3753872.000000","28097964.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000",,,,,,,,"238.000000","11193.000000",,,,,,,,,,,"4099.000000","622.000000","676.000000","712.000000","947.000000","810.000000","1068.000000","0.000000","0.000000","0.000000","518.000000","558.000000","582.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972094.000000",,,,, -"14851.000000","56.165000","14851.000000","56.165000","14851.000000","56.165000",,,,,,,,,,,,,,"36.000000","8421.000000","8276.000000","39.000000","8421.000000","8421.000000",,,,,,,,,,,"5597912.000000","7035184.000000","478752.000000","0.000000","66246240.000000","0.000000","90455156.000000",,"3753872.000000","28091960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000",,,,,,,,"152.000000","8376.000000",,,,,,,,,,,"4005.000000","619.000000","631.000000","676.000000","947.000000","747.000000","947.000000","0.000000","6.000000","0.000000","517.000000","541.000000","572.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972114.000000",,,,, -"15796.000000","57.635000","15796.000000","57.635000","15796.000000","57.635000",,,,,,,,,,,,,,"63.000000","6358.500000","5923.000000","8.000000","6358.500000","6358.500000",,,,,,,,,,,"5221280.000000","6762544.000000","478752.000000","0.000000","66226364.000000","0.000000","90456012.000000",,"3753872.000000","28177664.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000",,,,,,,,"169.000000","6562.000000",,,,,,,,,,,"4127.000000","616.000000","648.000000","651.000000","947.000000","747.000000","795.000000","0.000000","6.000000","0.000000","514.000000","561.000000","559.000000","710.000000","707.000000","706.000000","160.000000","6000.000000",,"8972134.000000",,,,, -"15349.000000","56.925000","15349.000000","56.925000","15349.000000","56.925000",,,,,,,,,,,,,,"54.000000","5258.000000","4971.000000","46.000000","5258.000000","5258.000000",,,,,,,,,,,"4952064.000000","6767424.000000","478752.000000","0.000000","66206544.000000","0.000000","90455280.000000",,"3753872.000000","28195080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000",,,,,,,,"431.000000","5059.000000",,,,,,,,,,,"3902.000000","613.000000","624.000000","629.000000","842.000000","680.000000","780.000000","0.000000","6.000000","0.000000","512.000000","537.000000","539.000000","707.000000","591.000000","669.000000","160.000000","6000.000000",,"8972154.000000",,,,, -"17742.000000","60.670000","17742.000000","60.670000","17742.000000","60.670000",,,,,,,,,,,,,,"36.000000","9572.000000","9401.000000","10.000000","9572.000000","9572.000000",,,,,,,,,,,"5191512.000000","6857780.000000","478752.000000","0.000000","66190668.000000","0.000000","90455280.000000",,"3753872.000000","28242004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000",,,,,,,,"222.000000","9483.000000",,,,,,,,,,,"4196.000000","613.000000","667.000000","626.000000","842.000000","752.000000","752.000000","0.000000","0.000000","0.000000","513.000000","574.000000","536.000000","707.000000","674.000000","658.000000","160.000000","6000.000000",,"8972174.000000",,,,, -"14762.000000","56.000000","14762.000000","56.000000","14762.000000","56.000000",,,,,,,,,,,,,,"59.000000","8688.000000","8430.000000","5.000000","8688.000000","8688.000000",,,,,,,,,,,"5107432.000000","6647584.000000","478752.000000","0.000000","66191936.000000","0.000000","90455084.000000",,"3753872.000000","28288960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000",,,,,,,,"200.000000","8687.000000",,,,,,,,,,,"4020.000000","611.000000","657.000000","618.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","510.000000","560.000000","528.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972194.000000",,,,, -"12815.000000","52.945000","12815.000000","52.945000","12815.000000","52.945000",,,,,,,,,,,,,,"35.000000","6029.000000","5774.000000","23.000000","6029.000000","6029.000000",,,,,,,,,,,"5048956.000000","6509368.000000","478752.000000","0.000000","66171044.000000","0.000000","90455376.000000",,"3753872.000000","28309064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000",,,,,,,,"128.000000","6121.000000",,,,,,,,,,,"3967.000000","608.000000","633.000000","615.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","507.000000","541.000000","524.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972214.000000",,,,, -"13579.000000","54.130000","13579.000000","54.130000","13579.000000","54.130000",,,,,,,,,,,,,,"118.000000","6824.000000","6658.000000","3.000000","6824.000000","6824.000000",,,,,,,,,,,"5048956.000000","6614228.000000","478752.000000","0.000000","66149272.000000","0.000000","90455376.000000",,"3753872.000000","28271812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000",,,,,,,,"129.000000","6742.000000",,,,,,,,,,,"4068.000000","605.000000","575.000000","616.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","504.000000","495.000000","526.000000","706.000000","623.000000","623.000000","160.000000","6000.000000",,"8972234.000000",,,,, -"14379.000000","55.370000","14379.000000","55.370000","14379.000000","55.370000",,,,,,,,,,,,,,"46.000000","7641.500000","7470.000000","14.000000","7641.500000","7641.500000",,,,,,,,,,,"5030356.000000","6670748.000000","478752.000000","0.000000","66118936.000000","0.000000","90447836.000000",,"3753872.000000","28291676.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000",,,,,,,,"182.000000","7584.000000",,,,,,,,,,,"4070.000000","603.000000","567.000000","618.000000","842.000000","656.000000","752.000000","0.000000","0.000000","0.000000","501.000000","493.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972254.000000",,,,, -"12669.000000","52.685000","12669.000000","52.685000","12669.000000","52.685000",,,,,,,,,,,,,,"33.000000","6826.500000","6397.000000","5.000000","6826.500000","6826.500000",,,,,,,,,,,"5115704.000000","6986784.000000","478752.000000","0.000000","66112516.000000","0.000000","90447836.000000",,"3753872.000000","28355180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000",,,,,,,,"163.000000","7058.000000",,,,,,,,,,,"3990.000000","599.000000","554.000000","618.000000","842.000000","651.000000","752.000000","0.000000","0.000000","0.000000","497.000000","485.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972274.000000",,,,, -"14323.000000","55.275000","14323.000000","55.275000","14323.000000","55.275000",,,,,,,,,,,,,,"59.000000","7843.000000","6803.000000","5.000000","7843.000000","7843.000000",,,,,,,,,,,"5031820.000000","6860956.000000","478752.000000","0.000000","66106996.000000","0.000000","90447836.000000",,"3753872.000000","28223888.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000",,,,,,,,"293.000000","8530.000000",,,,,,,,,,,"3985.000000","597.000000","567.000000","616.000000","842.000000","635.000000","752.000000","0.000000","0.000000","0.000000","494.000000","483.000000","526.000000","706.000000","568.000000","623.000000","160.000000","6000.000000",,"8972294.000000",,,,, -"13389.000000","53.800000","13389.000000","53.800000","13389.000000","53.800000",,,,,,,,,,,,,,"37.000000","7181.000000","6756.000000","9.000000","7181.000000","7181.000000",,,,,,,,,,,"4739164.000000","6516452.000000","478752.000000","0.000000","66086596.000000","0.000000","90447636.000000",,"3753872.000000","28242784.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000",,,,,,,,"138.000000","7430.000000",,,,,,,,,,,"3913.000000","594.000000","563.000000","617.000000","810.000000","655.000000","752.000000","0.000000","0.000000","0.000000","491.000000","483.000000","527.000000","698.000000","570.000000","623.000000","160.000000","6000.000000",,"8972314.000000",,,,, -"13211.000000","53.510000","13211.000000","53.510000","13211.000000","53.510000",,,,,,,,,,,,,,"106.000000","4929.000000","4723.000000","49.000000","4929.000000","4929.000000",,,,,,,,,,,"4361824.000000","6076196.000000","478752.000000","0.000000","66065084.000000","0.000000","90447784.000000",,"3753872.000000","28423972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000",,,,,,,,"178.000000","4850.000000",,,,,,,,,,,"4109.000000","595.000000","548.000000","607.000000","810.000000","655.000000","747.000000","0.000000","0.000000","0.000000","493.000000","484.000000","521.000000","698.000000","579.000000","615.000000","160.000000","6000.000000",,"8972334.000000",,,,, -"14361.000000","55.305000","14361.000000","55.305000","14361.000000","55.305000",,,,,,,,,,,,,,"324.000000","8214.500000","7803.000000","11.000000","8214.500000","8214.500000",,,,,,,,,,,"4641524.000000","6546108.000000","478752.000000","0.000000","66055168.000000","0.000000","90447784.000000",,"3753872.000000","28432112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000",,,,,,,,"439.000000","7861.000000",,,,,,,,,,,"4091.000000","599.000000","553.000000","599.000000","810.000000","737.000000","737.000000","0.000000","0.000000","0.000000","496.000000","491.000000","517.000000","698.000000","611.000000","615.000000","160.000000","6000.000000",,"8972354.000000",,,,, -"18615.000000","61.985000","18615.000000","61.985000","18615.000000","61.985000",,,,,,,,,,,,,,"43.000000","14905.000000","14564.000000","22.000000","14905.000000","14905.000000",,,,,,,,,,,"5070872.000000","6815292.000000","478752.000000","0.000000","66083500.000000","0.000000","90447784.000000",,"3753872.000000","28405712.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000",,,,,,,,"227.000000","14975.000000",,,,,,,,,,,"4393.000000","608.000000","707.000000","628.000000","904.000000","1469.000000","752.000000","0.000000","0.000000","0.000000","500.000000","546.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972374.000000",,,,, -"16728.000000","59.020000","16728.000000","59.020000","16728.000000","59.020000",,,,,,,,,,,,,,"54.000000","11334.000000","10943.000000","49.000000","11334.000000","11334.000000",,,,,,,,,,,"5385444.000000","7486380.000000","478752.000000","0.000000","66063456.000000","0.000000","90447784.000000",,"3753872.000000","28343968.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000",,,,,,,,"196.000000","11474.000000",,,,,,,,,,,"4159.000000","615.000000","796.000000","631.000000","904.000000","1469.000000","755.000000","0.000000","0.000000","0.000000","505.000000","596.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972394.000000",,,,, -"17482.000000","60.200000","17482.000000","60.200000","17482.000000","60.200000",,,,,,,,,,,,,,"127.000000","18573.000000","18445.000000","58.000000","18573.000000","18573.000000",,,,,,,,,,,"5025988.000000","7173016.000000","478752.000000","0.000000","66060348.000000","0.000000","90447776.000000",,"3753872.000000","28305704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000",,,,,,,,"1384.000000",,,,,,,,,,,,"4176.000000","621.000000","840.000000","640.000000","904.000000","1469.000000","812.000000","0.000000","0.000000","0.000000","510.000000","629.000000","535.000000","707.000000","786.000000","656.000000","160.000000","6000.000000",,"8972414.000000",,,,, -"18219.000000","61.350000","18219.000000","61.350000","18219.000000","61.350000",,,,,,,,,,,,,,"132.000000","11357.500000","10894.000000","33.000000","11357.500000","11357.500000",,,,,,,,,,,"4828348.000000","6809904.000000","478752.000000","0.000000","66050692.000000","0.000000","90447648.000000",,"3753872.000000","28316516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000",,,,,,,,"257.000000","11431.000000",,,,,,,,,,,"4185.000000","628.000000","783.000000","655.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","513.000000","610.000000","539.000000","707.000000","680.000000","666.000000","160.000000","6000.000000",,"8972434.000000",,,,, -"14622.000000","55.705000","14622.000000","55.705000","14622.000000","55.705000",,,,,,,,,,,,,,"43.000000","9004.000000","8769.000000","9.000000","9004.000000","9004.000000",,,,,,,,,,,"4996128.000000","6977676.000000","478752.000000","0.000000","66039188.000000","0.000000","90447648.000000",,"3753872.000000","28326648.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000",,,,,,,,"281.000000","8913.000000",,,,,,,,,,,"4221.000000","634.000000","764.000000","659.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","518.000000","596.000000","540.000000","707.000000","680.000000","674.000000","160.000000","6000.000000",,"8972454.000000",,,,, -"17658.000000","60.455000","17658.000000","60.455000","17658.000000","60.455000",,,,,,,,,,,,,,"94.000000","13642.000000","13235.000000","24.000000","13642.000000","13642.000000",,,,,,,,,,,"5007584.000000","6894028.000000","478752.000000","0.000000","66022028.000000","0.000000","90447884.000000",,"3753872.000000","28359468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000",,,,,,,,"503.000000","13451.000000",,,,,,,,,,,"4449.000000","637.000000","752.000000","657.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","521.000000","595.000000","539.000000","707.000000","695.000000","677.000000","160.000000","6000.000000",,"8972474.000000",,,,, -"16511.000000","58.650000","16511.000000","58.650000","16511.000000","58.650000",,,,,,,,,,,,,,"55.000000","11579.000000","11162.000000","40.000000","11579.000000","11579.000000",,,,,,,,,,,"4954344.000000","6422504.000000","478752.000000","0.000000","66000728.000000","0.000000","90447648.000000",,"3753872.000000","28378028.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000",,,,,,,,"214.000000","11727.000000",,,,,,,,,,,"4202.000000","644.000000","723.000000","669.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","526.000000","595.000000","545.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972494.000000",,,,, -"16258.000000","58.240000","16258.000000","58.240000","16258.000000","58.240000",,,,,,,,,,,,,,"52.000000","12724.500000","12528.000000","5.000000","12724.500000","12724.500000",,,,,,,,,,,"4534968.000000","5982160.000000","478752.000000","0.000000","65984352.000000","0.000000","90447708.000000",,"3753872.000000","28440972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000",,,,,,,,"214.000000","12654.000000",,,,,,,,,,,"4061.000000","652.000000","717.000000","676.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","533.000000","600.000000","552.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972514.000000",,,,, -"17030.000000","59.445000","17030.000000","59.445000","17030.000000","59.445000",,,,,,,,,,,,,,"51.000000","15008.000000","14646.000000","17.000000","15008.000000","15008.000000",,,,,,,,,,,"4389632.000000","5931928.000000","478752.000000","0.000000","65967392.000000","0.000000","90447708.000000",,"3753872.000000","28445280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000",,,,,,,,"259.000000","15059.000000",,,,,,,,,,,"4199.000000","662.000000","733.000000","689.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","540.000000","604.000000","561.000000","707.000000","687.000000","680.000000","160.000000","6000.000000",,"8972534.000000",,,,, -"15785.000000","57.500000","15785.000000","57.500000","15785.000000","57.500000",,,,,,,,,,,,,,"34.000000","10462.000000","9310.000000","4.000000","10462.000000","10462.000000",,,,,,,,,,,"5228480.000000","7201264.000000","478752.000000","0.000000","65976820.000000","0.000000","90447692.000000",,"3753872.000000","28434552.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000",,,,,,,,"306.000000","11273.000000",,,,,,,,,,,"4283.000000","666.000000","673.000000","690.000000","956.000000","797.000000","898.000000","0.000000","0.000000","0.000000","544.000000","579.000000","563.000000","707.000000","652.000000","680.000000","160.000000","6000.000000",,"8972554.000000",,,,, -"16106.000000","57.995000","16106.000000","57.995000","16106.000000","57.995000",,,,,,,,,,,,,,"33.000000","7149.000000","6707.000000","11.000000","7149.000000","7149.000000",,,,,,,,,,,"5270428.000000","7033496.000000","478752.000000","0.000000","65957912.000000","0.000000","90447692.000000",,"3753872.000000","28529136.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000",,,,,,,,"173.000000","7384.000000",,,,,,,,,,,"4179.000000","678.000000","693.000000","704.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","553.000000","584.000000","572.000000","710.000000","720.000000","687.000000","160.000000","6000.000000",,"8972574.000000",,,,, -"17438.000000","60.070000","17438.000000","60.070000","17438.000000","60.070000",,,,,,,,,,,,,,"35.000000","9487.000000","9122.000000","13.000000","9487.000000","9487.000000",,,,,,,,,,,"5442532.000000","7430676.000000","478752.000000","0.000000","65939884.000000","0.000000","90447876.000000",,"3753872.000000","28517432.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000",,,,,,,,"190.000000","9625.000000",,,,,,,,,,,"4423.000000","685.000000","681.000000","712.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","559.000000","587.000000","581.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972594.000000",,,,, -"17112.000000","59.550000","17112.000000","59.550000","17112.000000","59.550000",,,,,,,,,,,,,,"44.000000","9235.500000","8992.000000","10.000000","9235.500000","9235.500000",,,,,,,,,,,"4929304.000000","6927360.000000","478752.000000","0.000000","65921796.000000","0.000000","90447876.000000",,"3753872.000000","28534200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000",,,,,,,,"178.000000","9257.000000",,,,,,,,,,,"4176.000000","691.000000","721.000000","721.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","563.000000","611.000000","588.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972614.000000",,,,, -"15796.000000","57.490000","15796.000000","57.490000","15796.000000","57.490000",,,,,,,,,,,,,,"52.000000","9463.500000","9557.000000","116.000000","9463.500000","9463.500000",,,,,,,,,,,"4908328.000000","6780552.000000","478752.000000","0.000000","65929732.000000","0.000000","90447876.000000",,"3753872.000000","28551012.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000",,,,,,,,"179.000000","9138.000000",,,,,,,,,,,"4155.000000","699.000000","695.000000","733.000000","956.000000","756.000000","904.000000","0.000000","0.000000","0.000000","570.000000","602.000000","596.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972634.000000",,,,, -"15193.000000","56.535000","15193.000000","56.535000","15193.000000","56.535000",,,,,,,,,,,,,,"462.000000","9366.500000","8608.000000","49.000000","9366.500000","9366.500000",,,,,,,,,,,"4971240.000000","6649116.000000","478752.000000","0.000000","65912664.000000","0.000000","90447876.000000",,"3753872.000000","28436192.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000",,,,,,,,"512.000000","9150.000000",,,,,,,,,,,"4027.000000","702.000000","668.000000","735.000000","956.000000","770.000000","904.000000","0.000000","0.000000","0.000000","573.000000","579.000000","599.000000","717.000000","666.000000","695.000000","160.000000","6000.000000",,"8972654.000000",,,,, -"17678.000000","60.425000","17678.000000","60.425000","17678.000000","60.425000",,,,,,,,,,,,,,"69.000000","8593.500000","8301.000000","5.000000","8593.500000","8593.500000",,,,,,,,,,,"5075768.000000","6397124.000000","478752.000000","0.000000","65895904.000000","0.000000","90447544.000000",,"3753872.000000","28451368.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000",,,,,,,,"256.000000","8559.000000",,,,,,,,,,,"4365.000000","703.000000","701.000000","720.000000","956.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","574.000000","585.000000","596.000000","717.000000","774.000000","687.000000","160.000000","6000.000000",,"8972674.000000",,,,, -"18225.000000","61.280000","18225.000000","61.280000","18225.000000","61.280000",,,,,,,,,,,,,,"47.000000","9509.500000","9255.000000","16.000000","9509.500000","9509.500000",,,,,,,,,,,"5159904.000000","6544180.000000","478752.000000","0.000000","65897940.000000","0.000000","90447796.000000",,"3753872.000000","28518020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000",,,,,,,,"179.000000","9538.000000",,,,,,,,,,,"4120.000000","690.000000","769.000000","728.000000","898.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","570.000000","614.000000","599.000000","698.000000","774.000000","688.000000","160.000000","6000.000000",,"8972694.000000",,,,, -"15501.000000","57.005000","15501.000000","57.005000","15501.000000","57.005000",,,,,,,,,,,,,,"108.000000","6539.000000","6491.000000","3.000000","6539.000000","6539.000000",,,,,,,,,,,"5001888.000000","6433708.000000","478752.000000","0.000000","65879072.000000","0.000000","90447796.000000",,"3753872.000000","28512484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000",,,,,,,,"141.000000","6337.000000",,,,,,,,,,,"4051.000000","678.000000","761.000000","719.000000","868.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","567.000000","610.000000","595.000000","695.000000","774.000000","688.000000","160.000000","6000.000000",,"8972714.000000",,,,, -"17242.000000","59.730000","17242.000000","59.730000","17242.000000","59.730000",,,,,,,,,,,,,,"47.000000","9239.500000","8932.000000","11.000000","9239.500000","9239.500000",,,,,,,,,,,"4918004.000000","6203020.000000","478752.000000","0.000000","65880960.000000","0.000000","90447796.000000",,"3753872.000000","28511228.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000",,,,,,,,"344.000000","9155.000000",,,,,,,,,,,"4136.000000","672.000000","725.000000","709.000000","836.000000","856.000000","868.000000","0.000000","0.000000","0.000000","564.000000","600.000000","594.000000","680.000000","688.000000","688.000000","160.000000","6000.000000",,"8972734.000000",,,,, -"15715.000000","57.335000","15715.000000","57.335000","15715.000000","57.335000",,,,,,,,,,,,,,"32.000000","8178.000000","7836.000000","8.000000","8178.000000","8178.000000",,,,,,,,,,,"4897032.000000","6328848.000000","478752.000000","0.000000","65869852.000000","0.000000","90447796.000000",,"3753872.000000","28391468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000",,,,,,,,"361.000000","8127.000000",,,,,,,,,,,"4059.000000","665.000000","670.000000","709.000000","812.000000","791.000000","856.000000","0.000000","0.000000","0.000000","558.000000","573.000000","595.000000","674.000000","635.000000","688.000000","160.000000","6000.000000",,"8972754.000000",,,,, -"18136.000000","61.135000","18136.000000","61.135000","18136.000000","61.135000",,,,,,,,,,,,,,"710.000000","9008.500000","8002.000000","13.000000","9008.500000","9008.500000",,,,,,,,,,,"4765588.000000","6412728.000000","478752.000000","0.000000","65877196.000000","0.000000","90447788.000000",,"3753872.000000","28555024.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000",,,,,,,,"855.000000","8449.000000",,,,,,,,,,,"4124.000000","666.000000","729.000000","714.000000","830.000000","848.000000","856.000000","0.000000","0.000000","0.000000","558.000000","610.000000","598.000000","672.000000","691.000000","688.000000","160.000000","6000.000000",,"8972774.000000",,,,, -"18445.000000","61.605000","18445.000000","61.605000","18445.000000","61.605000",,,,,,,,,,,,,,"42.000000","8819.000000","8777.000000","10.000000","8819.000000","8819.000000",,,,,,,,,,,"4933328.000000","6717360.000000","478752.000000","0.000000","65863516.000000","0.000000","90447756.000000",,"3753872.000000","28566300.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000",,,,,,,,"282.000000",,,,,,,,,,,,"4123.000000","668.000000","765.000000","717.000000","848.000000","1001.000000","856.000000","0.000000","0.000000","0.000000","557.000000","619.000000","599.000000","674.000000","709.000000","691.000000","160.000000","6000.000000",,"8972794.000000",,,,, -"16642.000000","58.780000","16642.000000","58.780000","16642.000000","58.780000",,,,,,,,,,,,,,"35.000000","6596.000000","6028.000000","4.000000","6596.000000","6596.000000",,,,,,,,,,,"5164060.000000","7157812.000000","478752.000000","0.000000","65858796.000000","0.000000","90447804.000000",,"3753872.000000","28631296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000",,,,,,,,"179.000000","6950.000000",,,,,,,,,,,"4350.000000","670.000000","766.000000","718.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","560.000000","638.000000","602.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972814.000000",,,,, -"16346.000000","58.310000","16346.000000","58.310000","16346.000000","58.310000",,,,,,,,,,,,,,"36.000000","7877.000000","7840.000000","5.000000","7877.000000","7877.000000",,,,,,,,,,,"5446440.000000","7482140.000000","478752.000000","0.000000","65840880.000000","0.000000","90447804.000000",,"3753872.000000","28599424.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000",,,,,,,,"235.000000",,,,,,,,,,,,"4033.000000","673.000000","732.000000","714.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","562.000000","609.000000","599.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972834.000000",,,,, -"16909.000000","59.180000","16909.000000","59.180000","16909.000000","59.180000",,,,,,,,,,,,,,"55.000000","9226.500000","8649.000000","5.000000","9226.500000","9226.500000",,,,,,,,,,,"5278668.000000","7398256.000000","478752.000000","0.000000","65824056.000000","0.000000","90447804.000000",,"3753872.000000","28615900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000",,,,,,,,"198.000000","9550.000000",,,,,,,,,,,"4111.000000","676.000000","694.000000","721.000000","851.000000","860.000000","860.000000","0.000000","2.000000","0.000000","564.000000","595.000000","602.000000","678.000000","697.000000","697.000000","160.000000","6000.000000",,"8972854.000000",,,,, -"16342.000000","58.310000","16342.000000","58.310000","16342.000000","58.310000",,,,,,,,,,,,,,"39.000000","7346.000000","6921.000000","5.000000","7346.000000","7346.000000",,,,,,,,,,,"5299512.000000","7188416.000000","478752.000000","0.000000","65845904.000000","0.000000","90447676.000000",,"3753872.000000","28638112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000",,,,,,,,"162.000000","7569.000000",,,,,,,,,,,"4097.000000","682.000000","724.000000","725.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","568.000000","595.000000","604.000000","683.000000","768.000000","697.000000","160.000000","6000.000000",,"8972874.000000",,,,, -"17150.000000","59.565000","17150.000000","59.565000","17150.000000","59.565000",,,,,,,,,,,,,,"56.000000","8032.500000","7807.000000","5.000000","8032.500000","8032.500000",,,,,,,,,,,"5305120.000000","7062584.000000","478752.000000","0.000000","65833792.000000","0.000000","90447676.000000",,"3753872.000000","28633400.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000",,,,,,,,"164.000000","8038.000000",,,,,,,,,,,"4440.000000","685.000000","742.000000","726.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","571.000000","619.000000","605.000000","687.000000","768.000000","691.000000","160.000000","6000.000000",,"8972894.000000",,,,, -"17486.000000","60.090000","17486.000000","60.090000","17486.000000","60.090000",,,,,,,,,,,,,,"56.000000","9345.000000","9129.000000","3.000000","9345.000000","9345.000000",,,,,,,,,,,"5388960.000000","7398084.000000","478752.000000","0.000000","65831196.000000","0.000000","90447632.000000",,"3753872.000000","28634752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000",,,,,,,,"221.000000","9283.000000",,,,,,,,,,,"4097.000000","688.000000","751.000000","727.000000","868.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","617.000000","603.000000","688.000000","768.000000","697.000000","160.000000","6000.000000",,"8972914.000000",,,,, -"16600.000000","58.700000","16600.000000","58.700000","16600.000000","58.700000",,,,,,,,,,,,,,"98.000000","21054.500000","20849.000000","9.000000","21054.500000","21054.500000",,,,,,,,,,,"4996108.000000","7595360.000000","478752.000000","0.000000","65826140.000000","0.000000","90447632.000000",,"3753872.000000","28663516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000",,,,,,,,"245.000000","20915.000000",,,,,,,,,,,"4251.000000","692.000000","745.000000","735.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","575.000000","616.000000","607.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972934.000000",,,,, -"14611.000000","55.575000","14611.000000","55.575000","14611.000000","55.575000",,,,,,,,,,,,,,"352.000000","5812.000000","5105.000000","9.000000","5812.000000","5812.000000",,,,,,,,,,,"5029968.000000","7332844.000000","478752.000000","0.000000","65805868.000000","0.000000","90447840.000000",,"3753872.000000","28673360.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000",,,,,,,,"426.000000","5739.000000",,,,,,,,,,,"4362.000000","688.000000","691.000000","731.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","565.000000","603.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972955.000000",,,,, -"16890.000000","59.140000","16890.000000","59.140000","16890.000000","59.140000",,,,,,,,,,,,,,"49.000000","4328.500000","4173.000000","65.000000","4328.500000","4328.500000",,,,,,,,,,,"5365512.000000","7500616.000000","478752.000000","0.000000","65798940.000000","0.000000","90447840.000000",,"3753872.000000","28678348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000",,,,,,,,"105.000000","4330.000000",,,,,,,,,,,"4021.000000","694.000000","732.000000","733.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","576.000000","585.000000","603.000000","689.000000","789.000000","697.000000","160.000000","6000.000000",,"8972974.000000",,,,, -"15547.000000","57.040000","15547.000000","57.040000","15547.000000","57.040000",,,,,,,,,,,,,,"36.000000","5892.000000","5707.000000","46.000000","5892.000000","5892.000000",,,,,,,,,,,"5659116.000000","7542556.000000","478752.000000","0.000000","65806068.000000","0.000000","90447840.000000",,"3753872.000000","28650632.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000",,,,,,,,"129.000000","5910.000000",,,,,,,,,,,"4117.000000","694.000000","713.000000","724.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","575.000000","565.000000","598.000000","688.000000","789.000000","697.000000","160.000000","6000.000000",,"8972994.000000",,,,, -"15283.000000","56.630000","15283.000000","56.630000","15283.000000","56.630000",,,,,,,,,,,,,,"45.000000","4952.000000","4666.000000","40.000000","4952.000000","4952.000000",,,,,,,,,,,"5990520.000000","7736912.000000","478752.000000","0.000000","65806224.000000","0.000000","90447840.000000",,"3753872.000000","28688252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000",,,,,,,,"122.000000","5069.000000",,,,,,,,,,,"3990.000000","696.000000","753.000000","729.000000","887.000000","1190.000000","916.000000","0.000000","0.000000","0.000000","576.000000","582.000000","597.000000","689.000000","789.000000","709.000000","160.000000","6000.000000",,"8973014.000000",,,,, -"15936.000000","57.640000","15936.000000","57.640000","15936.000000","57.640000",,,,,,,,,,,,,,"90.000000","2566.000000","2463.000000","24.000000","2566.000000","2566.000000",,,,,,,,,,,"5696624.000000","7631752.000000","478752.000000","0.000000","65787688.000000","0.000000","90447540.000000",,"3753872.000000","28706060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000",,,,,,,,"87.000000","2491.000000",,,,,,,,,,,"4084.000000","695.000000","659.000000","720.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","544.000000","592.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973034.000000",,,,, -"13998.000000","54.595000","13998.000000","54.595000","13998.000000","54.595000",,,,,,,,,,,,,,"41.000000","3205.000000","2019.000000","80.000000","3205.000000","3205.000000",,,,,,,,,,,"5487080.000000","7296384.000000","478752.000000","0.000000","65772584.000000","0.000000","90447712.000000",,"3753872.000000","28674144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000",,,,,,,,"550.000000","3800.000000",,,,,,,,,,,"4074.000000","695.000000","635.000000","717.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","532.000000","589.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973054.000000",,,,, -"16054.000000","57.815000","16054.000000","57.815000","16054.000000","57.815000",,,,,,,,,,,,,,"1051.000000","5513.500000","4035.000000","58.000000","5513.500000","5513.500000",,,,,,,,,,,"5656312.000000","7722892.000000","478740.000000","0.000000","65771880.000000","0.000000","90447728.000000",,"3753872.000000","28727588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000",,,,,,,,"1173.000000","4767.000000",,,,,,,,,,,"4026.000000","694.000000","627.000000","709.000000","887.000000","854.000000","916.000000","0.000000","0.000000","0.000000","573.000000","542.000000","583.000000","689.000000","654.000000","709.000000","160.000000","6000.000000",,"8973074.000000",,,,, -"15845.000000","57.495000","15845.000000","57.495000","15845.000000","57.495000",,,,,,,,,,,,,,"1617.000000","5345.000000","3631.000000","68.000000","5345.000000","5345.000000",,,,,,,,,,,"5677624.000000","7429636.000000","478740.000000","0.000000","65778860.000000","0.000000","90448072.000000",,"3753872.000000","28721708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000",,,,,,,,"1715.000000","3726.000000",,,,,,,,,,,"4107.000000","694.000000","643.000000","696.000000","887.000000","854.000000","891.000000","0.000000","0.000000","0.000000","574.000000","544.000000","577.000000","689.000000","654.000000","697.000000","160.000000","6000.000000",,"8973094.000000",,,,, -"15233.000000","56.525000","15233.000000","56.525000","15233.000000","56.525000",,,,,,,,,,,,,,"45.000000","6494.000000","6225.000000","17.000000","6494.000000","6494.000000",,,,,,,,,,,"5928940.000000","7534148.000000","478736.000000","0.000000","65758964.000000","0.000000","90447728.000000",,"3753872.000000","28732644.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000",,,,,,,,"132.000000","6586.000000",,,,,,,,,,,"4362.000000","696.000000","654.000000","694.000000","887.000000","782.000000","891.000000","0.000000","0.000000","0.000000","576.000000","559.000000","573.000000","689.000000","654.000000","690.000000","160.000000","6000.000000",,"8973114.000000",,,,, -"14075.000000","54.700000","14075.000000","54.700000","14075.000000","54.700000",,,,,,,,,,,,,,"48.000000","3546.000000","3577.000000","52.000000","3546.000000","3546.000000",,,,,,,,,,,"5930408.000000","7552436.000000","478736.000000","0.000000","65735472.000000","0.000000","90447732.000000",,"3753872.000000","28714692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000",,,,,,,,"94.000000","3372.000000",,,,,,,,,,,"4121.000000","696.000000","607.000000","684.000000","887.000000","757.000000","891.000000","0.000000","0.000000","0.000000","576.000000","530.000000","568.000000","689.000000","646.000000","690.000000","160.000000","6000.000000",,"8973134.000000",,,,, -"14789.000000","55.820000","14789.000000","55.820000","14789.000000","55.820000",,,,,,,,,,,,,,"72.000000","9800.000000","8690.000000","23.000000","9800.000000","9800.000000",,,,,,,,,,,"5825476.000000","7657220.000000","478736.000000","0.000000","65734344.000000","0.000000","90447660.000000",,"3753872.000000","28716284.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000",,,,,,,,"218.000000","10620.000000",,,,,,,,,,,"4237.000000","697.000000","613.000000","680.000000","887.000000","814.000000","891.000000","0.000000","0.000000","0.000000","577.000000","540.000000","566.000000","689.000000","667.000000","690.000000","160.000000","6000.000000",,"8973154.000000",,,,, -"13144.000000","53.320000","13144.000000","53.320000","13144.000000","53.320000",,,,,,,,,,,,,,"60.000000","24042.500000","20791.000000","136.000000","24042.500000","24042.500000",,,,,,,,,,,"5951304.000000","7720140.000000","478736.000000","0.000000","65893572.000000","0.000000","90447660.000000",,"3753872.000000","28591396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000",,,,,,,,"6002.000000","21231.000000",,,,,,,,,,,"4264.000000","696.000000","554.000000","660.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","577.000000","498.000000","554.000000","689.000000","667.000000","687.000000","160.000000","6000.000000",,"8973174.000000",,,,, -"12966.000000","53.115000","12966.000000","53.115000","12966.000000","53.115000",,,,,,,,,,,,,,"65.000000","35014.500000","31958.000000","206.000000","35014.500000","35014.500000",,,,,,,,,,,"5774996.000000","7212432.000000","478736.000000","0.000000","66044460.000000","0.000000","90447660.000000",,"3753872.000000","28310752.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000",,,,,,,,"5949.000000","32056.000000",,,,,,,,,,,"4015.000000","695.000000","548.000000","645.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","576.000000","490.000000","542.000000","689.000000","667.000000","667.000000","160.000000","6000.000000",,"8973194.000000",,,,, -"15546.000000","57.210000","15546.000000","57.210000","15546.000000","57.210000",,,,,,,,,,,,,,"48.000000","35013.000000","31799.000000","113.000000","35013.000000","35013.000000",,,,,,,,,,,"5816944.000000","7191460.000000","478736.000000","0.000000","66152636.000000","0.000000","90447660.000000",,"3753872.000000","28223132.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000",,,,,,,,"5731.000000","32446.000000",,,,,,,,,,,"4332.000000","695.000000","538.000000","637.000000","887.000000","663.000000","814.000000","0.000000","0.000000","0.000000","577.000000","488.000000","540.000000","689.000000","582.000000","654.000000","160.000000","6000.000000",,"8973214.000000",,,,, -"13412.000000","53.875000","13412.000000","53.875000","13412.000000","53.875000",,,,,,,,,,,,,,"34.000000","32461.000000","32426.000000","102.000000","32461.000000","32461.000000",,,,,,,,,,,"7169096.000000","8646884.000000","478736.000000","0.000000","66176764.000000","0.000000","90408232.000000",,"3753872.000000","28036916.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000",,,,,,,,"5672.000000",,,,,,,,,,,,"4219.000000","697.000000","555.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","496.000000","530.000000","689.000000","582.000000","649.000000","160.000000","6000.000000",,"8973234.000000",,,,, -"14934.000000","56.265000","14934.000000","56.265000","14934.000000","56.265000",,,,,,,,,,,,,,"46.000000","38786.000000","31375.000000","30.000000","38786.000000","38786.000000",,,,,,,,,,,"7074448.000000","8513252.000000","478736.000000","0.000000","66167008.000000","0.000000","90362948.000000",,"3753872.000000","28018276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000",,,,,,,,"13836.000000","32314.000000",,,,,,,,,,,"4239.000000","696.000000","573.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","522.000000","533.000000","689.000000","590.000000","649.000000","160.000000","6000.000000",,"8973254.000000",,,,, -"17815.000000","60.790000","17815.000000","60.790000","17815.000000","60.790000",,,,,,,,,,,,,,"321.000000","36929.500000","29046.000000","45.000000","36929.500000","36929.500000",,,,,,,,,,,"7074384.000000","8387360.000000","478736.000000","0.000000","66201532.000000","0.000000","90362884.000000",,"3753872.000000","27990628.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000",,,,,,,,"15207.000000","29284.000000",,,,,,,,,,,"4319.000000","686.000000","570.000000","605.000000","868.000000","663.000000","757.000000","0.000000","0.000000","0.000000","576.000000","522.000000","527.000000","687.000000","620.000000","646.000000","160.000000","6000.000000",,"8973274.000000",,,,, -"16975.000000","59.485000","16975.000000","59.485000","16975.000000","59.485000",,,,,,,,,,,,,,"36.000000","31944.000000","27573.000000","102.000000","31944.000000","31944.000000",,,,,,,,,,,"8710160.000000","10169940.000000","478736.000000","0.000000","66220808.000000","0.000000","90362884.000000",,"3753872.000000","28013292.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000",,,,,,,,"4502.000000","31777.000000",,,,,,,,,,,"4669.000000","686.000000","640.000000","608.000000","874.000000","935.000000","782.000000","0.000000","0.000000","0.000000","577.000000","594.000000","536.000000","688.000000","835.000000","649.000000","160.000000","6000.000000",,"8973294.000000",,,,, -"17195.000000","59.825000","17195.000000","59.825000","17195.000000","59.825000",,,,,,,,,,,,,,"52.000000","8784.500000","8407.000000","34.000000","8784.500000","8784.500000",,,,,,,,,,,"8449160.000000","9862240.000000","478736.000000","0.000000","66209712.000000","0.000000","90363068.000000",,"3753872.000000","28054512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000",,,,,,,,"595.000000","8513.000000",,,,,,,,,,,"4481.000000","684.000000","664.000000","604.000000","874.000000","935.000000","757.000000","0.000000","0.000000","0.000000","577.000000","615.000000","540.000000","688.000000","835.000000","646.000000","160.000000","6000.000000",,"8973314.000000",,,,, -"18531.000000","61.905000","18531.000000","61.905000","18531.000000","61.905000",,,,,,,,,,,,,,"459.000000","6856.500000","6109.000000","10.000000","6856.500000","6856.500000",,,,,,,,,,,"8449160.000000","9872152.000000","478736.000000","0.000000","66190820.000000","0.000000","90363068.000000",,"3753872.000000","28067152.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000",,,,,,,,"545.000000","6599.000000",,,,,,,,,,,"4389.000000","682.000000","720.000000","617.000000","868.000000","972.000000","782.000000","0.000000","0.000000","0.000000","578.000000","642.000000","547.000000","689.000000","835.000000","649.000000","160.000000","6000.000000",,"8973334.000000",,,,, -"18176.000000","61.345000","18176.000000","61.345000","18176.000000","61.345000",,,,,,,,,,,,,,"114.000000","4934.000000","4650.000000","8.000000","4934.000000","4934.000000",,,,,,,,,,,"8113616.000000","9515636.000000","478736.000000","0.000000","66183572.000000","0.000000","90363068.000000",,"3753872.000000","28126660.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000",,,,,,,,"514.000000","4590.000000",,,,,,,,,,,"4433.000000","683.000000","716.000000","624.000000","860.000000","972.000000","782.000000","0.000000","0.000000","0.000000","580.000000","637.000000","557.000000","691.000000","724.000000","667.000000","160.000000","6000.000000",,"8973354.000000",,,,, -"13581.000000","54.155000","13581.000000","54.155000","13581.000000","54.155000",,,,,,,,,,,,,,"175.000000","2228.500000","1874.000000","3.000000","2228.500000","2228.500000",,,,,,,,,,,"8108856.000000","9406016.000000","478736.000000","0.000000","66202488.000000","0.000000","90363068.000000",,"3753872.000000","28145632.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000",,,,,,,,"218.000000","2189.000000",,,,,,,,,,,"4315.000000","680.000000","688.000000","616.000000","860.000000","972.000000","757.000000","0.000000","0.000000","0.000000","577.000000","598.000000","551.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973374.000000",,,,, -"16798.000000","59.195000","16798.000000","59.195000","16798.000000","59.195000",,,,,,,,,,,,,,"41.000000","5921.000000","6003.000000","35.000000","5921.000000","5921.000000",,,,,,,,,,,"8381220.000000","9658560.000000","478736.000000","0.000000","66190772.000000","0.000000","90362804.000000",,"3753872.000000","28157588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000",,,,,,,,"127.000000","5669.000000",,,,,,,,,,,"4016.000000","678.000000","667.000000","622.000000","854.000000","798.000000","788.000000","0.000000","0.000000","0.000000","577.000000","579.000000","554.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973394.000000",,,,, -"20990.000000","65.765000","20990.000000","65.765000","20990.000000","65.765000",,,,,,,,,,,,,,"36.000000","8922.500000","8650.000000","16.000000","8922.500000","8922.500000",,,,,,,,,,,"8276612.000000","9491328.000000","478736.000000","0.000000","66199684.000000","0.000000","90363056.000000",,"3753872.000000","28177756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000",,,,,,,,"166.000000","8992.000000",,,,,,,,,,,"4233.000000","687.000000","781.000000","649.000000","860.000000","1253.000000","814.000000","0.000000","0.000000","0.000000","581.000000","612.000000","567.000000","695.000000","902.000000","711.000000","160.000000","6000.000000",,"8973414.000000",,,,, -"19347.000000","63.205000","19347.000000","63.205000","19347.000000","63.205000",,,,,,,,,,,,,,"72.000000","9185.000000","8795.000000","5.000000","9185.000000","9185.000000",,,,,,,,,,,"8206288.000000","9549412.000000","478736.000000","0.000000","66228592.000000","0.000000","90427636.000000",,"3753872.000000","28196900.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000",,,,,,,,"201.000000","9302.000000",,,,,,,,,,,"4258.000000","693.000000","935.000000","682.000000","891.000000","1281.000000","972.000000","0.000000","0.000000","0.000000","583.000000","682.000000","581.000000","709.000000","902.000000","724.000000","160.000000","6000.000000",,"8973434.000000",,,,, -"21485.000000","66.570000","21485.000000","66.570000","21485.000000","66.570000",,,,,,,,,,,,,,"37.000000","8755.500000","7743.000000","6.000000","8755.500000","8755.500000",,,,,,,,,,,"8101436.000000","9967976.000000","478736.000000","0.000000","66267148.000000","0.000000","90427636.000000",,"3753872.000000","28156520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000",,,,,,,,"238.000000","9492.000000",,,,,,,,,,,"4352.000000","703.000000","1046.000000","708.000000","916.000000","1281.000000","1124.000000","0.000000","0.000000","0.000000","587.000000","738.000000","594.000000","711.000000","902.000000","784.000000","160.000000","6000.000000",,"8973454.000000",,,,, -"17868.000000","60.905000","17868.000000","60.905000","17868.000000","60.905000",,,,,,,,,,,,,,"39.000000","10935.500000","9541.000000","10.000000","10935.500000","10935.500000",,,,,,,,,,,"8080464.000000","10219632.000000","478736.000000","0.000000","66257584.000000","0.000000","90427636.000000",,"3753872.000000","28196460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000",,,,,,,,"294.000000","11995.000000",,,,,,,,,,,"4162.000000","709.000000","1015.000000","742.000000","935.000000","1281.000000","1155.000000","0.000000","0.000000","0.000000","590.000000","715.000000","611.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973474.000000",,,,, -"14848.000000","56.160000","14848.000000","56.160000","14848.000000","56.160000",,,,,,,,,,,,,,"50.000000","9321.500000","8080.000000","11.000000","9321.500000","9321.500000",,,,,,,,,,,"8710924.000000","10613996.000000","478736.000000","0.000000","66244960.000000","0.000000","90427636.000000",,"3753872.000000","28199912.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000",,,,,,,,"274.000000","10238.000000",,,,,,,,,,,"4119.000000","707.000000","880.000000","748.000000","935.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","587.000000","660.000000","615.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973494.000000",,,,, -"17721.000000","60.660000","17721.000000","60.660000","17721.000000","60.660000",,,,,,,,,,,,,,"39.000000","11777.500000","10219.000000","17.000000","11777.500000","11777.500000",,,,,,,,,,,"8857460.000000","10487336.000000","478736.000000","0.000000","66227668.000000","0.000000","90427372.000000",,"3753872.000000","28215488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000",,,,,,,,"298.000000","12997.000000",,,,,,,,,,,"4127.000000","709.000000","807.000000","762.000000","943.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","621.000000","620.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973514.000000",,,,, -"15358.000000","56.945000","15358.000000","56.945000","15358.000000","56.945000",,,,,,,,,,,,,,"36.000000","7929.000000","6550.000000","60.000000","7929.000000","7929.000000",,,,,,,,,,,"9046204.000000","10466368.000000","478736.000000","0.000000","66216328.000000","0.000000","90427372.000000",,"3753872.000000","28169536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000",,,,,,,,"258.000000","9013.000000",,,,,,,,,,,"3975.000000","709.000000","705.000000","771.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","573.000000","626.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973534.000000",,,,, -"15860.000000","57.720000","15860.000000","57.720000","15860.000000","57.720000",,,,,,,,,,,,,,"41.000000","11415.500000","10096.000000","11.000000","11415.500000","11415.500000",,,,,,,,,,,"7934056.000000","9548368.000000","478736.000000","0.000000","66196544.000000","0.000000","90427372.000000",,"3753872.000000","28182244.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000",,,,,,,,"276.000000","12416.000000",,,,,,,,,,,"4044.000000","710.000000","725.000000","778.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","589.000000","629.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973554.000000",,,,, -"20011.000000","64.360000","20011.000000","64.360000","20011.000000","64.360000",,,,,,,,,,,,,,"395.000000","11714.000000","11318.000000","68.000000","11714.000000","11714.000000",,,,,,,,,,,"8668056.000000","10115748.000000","478736.000000","0.000000","66467460.000000","0.000000","90427372.000000",,"3753872.000000","27926784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000",,,,,,,,"544.000000",,,,,,,,,,,,"4432.000000","713.000000","773.000000","803.000000","943.000000","1454.000000","1173.000000","0.000000","0.000000","0.000000","589.000000","600.000000","636.000000","711.000000","817.000000","812.000000","160.000000","6000.000000",,"8973574.000000",,,,, -"19556.000000","63.750000","19556.000000","63.750000","19556.000000","63.750000",,,,,,,,,,,,,,"148.000000","13750.500000","12543.000000","26.000000","13750.500000","13750.500000",,,,,,,,,,,"8771464.000000","10197932.000000","478736.000000","0.000000","66672260.000000","0.000000","90421136.000000",,"3753872.000000","27730564.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000",,,,,,,,"371.000000","14438.000000",,,,,,,,,,,"4259.000000","727.000000","1028.000000","849.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","591.000000","668.000000","641.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973594.000000",,,,, -"19346.000000","63.415000","19346.000000","63.415000","19346.000000","63.415000",,,,,,,,,,,,,,"42.000000","11603.000000","10380.000000","20.000000","11603.000000","11603.000000",,,,,,,,,,,"8352036.000000","9799472.000000","478736.000000","0.000000","66654820.000000","0.000000","90421136.000000",,"3753872.000000","27779876.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000",,,,,,,,"258.000000","12525.000000",,,,,,,,,,,"4178.000000","731.000000","1073.000000","860.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","594.000000","696.000000","645.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973614.000000",,,,, -"20337.000000","64.960000","20337.000000","64.960000","20337.000000","64.960000",,,,,,,,,,,,,,"117.000000","7854.500000","6572.000000","40.000000","7854.500000","7854.500000",,,,,,,,,,,"8178760.000000","9647448.000000","478736.000000","0.000000","66649380.000000","0.000000","90421092.000000",,"3753872.000000","27787696.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000",,,,,,,,"263.000000","8756.000000",,,,,,,,,,,"4380.000000","739.000000","1113.000000","881.000000","1006.000000","1743.000000","1281.000000","0.000000","0.000000","0.000000","597.000000","725.000000","653.000000","736.000000","795.000000","795.000000","160.000000","6000.000000",,"8973634.000000",,,,, -"19869.000000","64.215000","19869.000000","64.215000","19869.000000","64.215000",,,,,,,,,,,,,,"37.000000","10468.500000","8944.000000","20.000000","10468.500000","10468.500000",,,,,,,,,,,"8157956.000000","9710468.000000","478736.000000","0.000000","66626104.000000","0.000000","90420148.000000",,"3753872.000000","27816068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000",,,,,,,,"599.000000","11355.000000",,,,,,,,,,,"4381.000000","743.000000","915.000000","889.000000","1006.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","600.000000","709.000000","655.000000","742.000000","792.000000","795.000000","160.000000","6000.000000",,"8973654.000000",,,,, -"19594.000000","63.770000","19594.000000","63.770000","19594.000000","63.770000",,,,,,,,,,,,,,"36.000000","9981.000000","8797.000000","65.000000","9981.000000","9981.000000",,,,,,,,,,,"7924184.000000","9643936.000000","478736.000000","0.000000","66598840.000000","0.000000","90406268.000000",,"3753872.000000","27779068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000",,,,,,,,"245.000000","10883.000000",,,,,,,,,,,"4289.000000","745.000000","935.000000","910.000000","1035.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","720.000000","669.000000","754.000000","792.000000","795.000000","160.000000","6000.000000",,"8973674.000000",,,,, -"18152.000000","61.510000","18152.000000","61.510000","18152.000000","61.510000",,,,,,,,,,,,,,"38.000000","8409.500000","7119.000000","59.000000","8409.500000","8409.500000",,,,,,,,,,,"7399616.000000","9327924.000000","478736.000000","0.000000","66580244.000000","0.000000","90406268.000000",,"3753872.000000","27798788.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000",,,,,,,,"244.000000","9416.000000",,,,,,,,,,,"4184.000000","748.000000","891.000000","926.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","602.000000","689.000000","675.000000","754.000000","758.000000","795.000000","160.000000","6000.000000",,"8973694.000000",,,,, -"15823.000000","57.855000","15823.000000","57.855000","15823.000000","57.855000",,,,,,,,,,,,,,"41.000000","8512.000000","7007.000000","47.000000","8512.000000","8512.000000",,,,,,,,,,,"7125864.000000","8928124.000000","478736.000000","0.000000","66573612.000000","0.000000","90400660.000000",,"3753872.000000","27829844.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000",,,,,,,,"262.000000","9714.000000",,,,,,,,,,,"4078.000000","747.000000","832.000000","899.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","642.000000","661.000000","754.000000","758.000000","792.000000","160.000000","6000.000000",,"8973714.000000",,,,, -"15444.000000","57.250000","15444.000000","57.250000","15444.000000","57.250000",,,,,,,,,,,,,,"45.000000","6705.000000","5485.000000","52.000000","6705.000000","6705.000000",,,,,,,,,,,"7084376.000000","8634976.000000","478736.000000","0.000000","66557184.000000","0.000000","90401116.000000",,"3753872.000000","27844976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000",,,,,,,,"210.000000","7668.000000",,,,,,,,,,,"4082.000000","747.000000","764.000000","876.000000","1061.000000","1116.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","595.000000","652.000000","754.000000","693.000000","784.000000","160.000000","6000.000000",,"8973734.000000",,,,, -"15909.000000","57.970000","15909.000000","57.970000","15909.000000","57.970000",,,,,,,,,,,,,,"41.000000","6989.500000","5938.000000","45.000000","6989.500000","6989.500000",,,,,,,,,,,"6554424.000000","8069380.000000","478736.000000","0.000000","66534020.000000","0.000000","90400596.000000",,"3753872.000000","27866756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000",,,,,,,,"212.000000","7787.000000",,,,,,,,,,,"3977.000000","746.000000","667.000000","850.000000","1061.000000","742.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","562.000000","639.000000","754.000000","635.000000","764.000000","160.000000","6000.000000",,"8973754.000000",,,,, -"17603.000000","60.615000","17603.000000","60.615000","17603.000000","60.615000",,,,,,,,,,,,,,"37.000000","8031.000000","7193.000000","40.000000","8031.000000","8031.000000",,,,,,,,,,,"6785296.000000","8384128.000000","478736.000000","0.000000","66514552.000000","0.000000","90400780.000000",,"3753872.000000","27906332.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000",,,,,,,,"224.000000","8607.000000",,,,,,,,,,,"4201.000000","746.000000","695.000000","835.000000","1061.000000","826.000000","1135.000000","0.000000","0.000000","0.000000","600.000000","586.000000","636.000000","742.000000","731.000000","764.000000","160.000000","6000.000000",,"8973774.000000",,,,, -"19648.000000","63.805000","19648.000000","63.805000","19648.000000","63.805000",,,,,,,,,,,,,,"43.000000","9555.500000","9254.000000","14.000000","9555.500000","9555.500000",,,,,,,,,,,"7036952.000000","8656760.000000","478736.000000","0.000000","66498300.000000","0.000000","90400780.000000",,"3753872.000000","27917764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000",,,,,,,,"169.000000","9645.000000",,,,,,,,,,,"4113.000000","749.000000","767.000000","853.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","601.000000","638.000000","647.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973794.000000",,,,, -"17387.000000","60.270000","17387.000000","60.270000","17387.000000","60.270000",,,,,,,,,,,,,,"42.000000","9569.000000","9510.000000","85.000000","9569.000000","9569.000000",,,,,,,,,,,"7382776.000000","8887160.000000","478736.000000","0.000000","66501864.000000","0.000000","90400780.000000",,"3753872.000000","27929560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000",,,,,,,,"190.000000","9396.000000",,,,,,,,,,,"4216.000000","748.000000","787.000000","846.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","602.000000","648.000000","645.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973814.000000",,,,, -"19858.000000","64.130000","19858.000000","64.130000","19858.000000","64.130000",,,,,,,,,,,,,,"100.000000","10929.500000","10646.000000","9.000000","10929.500000","10929.500000",,,,,,,,,,,"7382776.000000","8803276.000000","478736.000000","0.000000","66488180.000000","0.000000","90400780.000000",,"3753872.000000","27942036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000",,,,,,,,"222.000000","10891.000000",,,,,,,,,,,"4344.000000","753.000000","861.000000","866.000000","1061.000000","996.000000","1135.000000","0.000000","0.000000","0.000000","605.000000","688.000000","658.000000","758.000000","795.000000","784.000000","160.000000","6000.000000",,"8973834.000000",,,,, -"19171.000000","63.045000","19171.000000","63.045000","19171.000000","63.045000",,,,,,,,,,,,,,"47.000000","10929.000000","9672.000000","20.000000","10929.000000","10929.000000",,,,,,,,,,,"7089868.000000","8657172.000000","478736.000000","0.000000","66461556.000000","0.000000","90401472.000000",,"3753872.000000","27922104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000",,,,,,,,"292.000000","11846.000000",,,,,,,,,,,"4361.000000","758.000000","832.000000","874.000000","1061.000000","1011.000000","1135.000000","0.000000","0.000000","0.000000","609.000000","685.000000","666.000000","759.000000","824.000000","792.000000","160.000000","6000.000000",,"8973854.000000",,,,, -"18785.000000","62.430000","18785.000000","62.430000","18785.000000","62.430000",,,,,,,,,,,,,,"323.000000","14527.000000","13857.000000","28.000000","14527.000000","14527.000000",,,,,,,,,,,"6276576.000000","7938048.000000","478736.000000","0.000000","66443380.000000","0.000000","90400516.000000",,"3753872.000000","27992316.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000",,,,,,,,"521.000000","14352.000000",,,,,,,,,,,"4239.000000","758.000000","881.000000","868.000000","1035.000000","1011.000000","1116.000000","0.000000","0.000000","0.000000","610.000000","704.000000","666.000000","758.000000","824.000000","784.000000","160.000000","6000.000000",,"8973874.000000",,,,, -"19888.000000","64.150000","19888.000000","64.150000","19888.000000","64.150000",,,,,,,,,,,,,,"40.000000","12011.500000","11763.000000","8.000000","12011.500000","12011.500000",,,,,,,,,,,"6129772.000000","7822132.000000","478736.000000","0.000000","66434964.000000","0.000000","90400516.000000",,"3753872.000000","27999556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000",,,,,,,,"215.000000","12005.000000",,,,,,,,,,,"4461.000000","763.000000","854.000000","832.000000","1035.000000","1011.000000","1018.000000","0.000000","0.000000","0.000000","614.000000","699.000000","665.000000","763.000000","824.000000","774.000000","160.000000","6000.000000",,"8973894.000000",,,,, -"21815.000000","67.160000","21815.000000","67.160000","21815.000000","67.160000",,,,,,,,,,,,,,"36.000000","10039.500000","9719.000000","11.000000","10039.500000","10039.500000",,,,,,,,,,,"5962008.000000","7486596.000000","478736.000000","0.000000","66413840.000000","0.000000","90400524.000000",,"3753872.000000","28019336.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000",,,,,,,,"172.000000","10151.000000",,,,,,,,,,,"4634.000000","770.000000","933.000000","846.000000","1069.000000","1123.000000","1069.000000","0.000000","0.000000","0.000000","619.000000","721.000000","672.000000","769.000000","823.000000","792.000000","160.000000","6000.000000",,"8973914.000000",,,,, -"21180.000000","66.155000","21180.000000","66.155000","21180.000000","66.155000",,,,,,,,,,,,,,"43.000000","10062.500000","9899.000000","6.000000","10062.500000","10062.500000",,,,,,,,,,,"5642296.000000","7250756.000000","478736.000000","0.000000","66395192.000000","0.000000","90400516.000000",,"3753872.000000","28001924.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000",,,,,,,,"172.000000","10011.000000",,,,,,,,,,,"4587.000000","778.000000","960.000000","837.000000","1069.000000","1123.000000","1045.000000","0.000000","0.000000","0.000000","624.000000","762.000000","673.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973934.000000",,,,, -"20150.000000","64.535000","20150.000000","64.535000","20150.000000","64.535000",,,,,,,,,,,,,,"41.000000","12700.500000","12448.000000","32.000000","12700.500000","12700.500000",,,,,,,,,,,"5873232.000000","7586552.000000","478736.000000","0.000000","66384188.000000","0.000000","90400768.000000",,"3753872.000000","28012104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000",,,,,,,,"556.000000","12354.000000",,,,,,,,,,,"4095.000000","789.000000","1022.000000","853.000000","1084.000000","1221.000000","1045.000000","0.000000","0.000000","0.000000","629.000000","757.000000","674.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973954.000000",,,,, -"21027.000000","65.905000","21027.000000","65.905000","21027.000000","65.905000",,,,,,,,,,,,,,"127.000000","11650.000000","11007.000000","4.000000","11650.000000","11650.000000",,,,,,,,,,,"5726432.000000","7565576.000000","478736.000000","0.000000","66377820.000000","0.000000","90400768.000000",,"3753872.000000","28017196.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000",,,,,,,,"296.000000","11869.000000",,,,,,,,,,,"4228.000000","797.000000","1024.000000","864.000000","1123.000000","1221.000000","1116.000000","0.000000","0.000000","0.000000","633.000000","751.000000","678.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973974.000000",,,,, -"19201.000000","63.045000","19201.000000","63.045000","19201.000000","63.045000",,,,,,,,,,,,,,"44.000000","11861.000000","11817.000000","47.000000","11861.000000","11861.000000",,,,,,,,,,,"6055828.000000","7727204.000000","478736.000000","0.000000","66373492.000000","0.000000","90400596.000000",,"3753872.000000","28021692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000",,,,,,,,"222.000000",,,,,,,,,,,,"4343.000000","805.000000","1046.000000","868.000000","1124.000000","1221.000000","1123.000000","0.000000","0.000000","0.000000","637.000000","728.000000","681.000000","784.000000","794.000000","803.000000","160.000000","6000.000000",,"8973994.000000",,,,, -"20270.000000","64.715000","20270.000000","64.715000","20270.000000","64.715000",,,,,,,,,,,,,,"1394.000000","14765.500000","14284.000000","10.000000","14765.500000","14765.500000",,,,,,,,,,,"6139968.000000","7685520.000000","478736.000000","0.000000","66358664.000000","0.000000","90400848.000000",,"3753872.000000","28045232.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000",,,,,,,,"369.000000","13483.000000",,,,,,,,,,,"4326.000000","814.000000","1034.000000","893.000000","1124.000000","1178.000000","1123.000000","0.000000","0.000000","0.000000","640.000000","730.000000","692.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974014.000000",,,,, -"19160.000000","62.970000","19160.000000","62.970000","19160.000000","62.970000",,,,,,,,,,,,,,"12606.000000","38870.500000","24791.000000","12.000000","38870.500000","38870.500000",,,,,,,,,,,"6098024.000000","8000088.000000","478736.000000","0.000000","66354808.000000","0.000000","90400848.000000",,"3753872.000000","28075248.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000",,,,,,,,"14163.000000","26179.000000",,,,,,,,,,,"4257.000000","820.000000","956.000000","903.000000","1124.000000","1138.000000","1123.000000","0.000000","0.000000","0.000000","644.000000","701.000000","699.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974034.000000",,,,, -"18168.000000","61.415000","18168.000000","61.415000","18168.000000","61.415000",,,,,,,,,,,,,,"1158.000000","14030.000000","12237.000000","3.000000","14030.000000","14030.000000",,,,,,,,,,,"5972568.000000","7843752.000000","478736.000000","0.000000","66340876.000000","0.000000","90400800.000000",,"3753872.000000","28023964.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000",,,,,,,,"1368.000000","13295.000000",,,,,,,,,,,"4168.000000","826.000000","925.000000","920.000000","1124.000000","1075.000000","1123.000000","0.000000","0.000000","0.000000","646.000000","687.000000","706.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974054.000000",,,,, -"18140.000000","61.365000","18140.000000","61.365000","18140.000000","61.365000",,,,,,,,,,,,,,"755.000000","13540.000000","11884.000000","5.000000","13540.000000","13540.000000",,,,,,,,,,,"5804796.000000","7800652.000000","478736.000000","0.000000","66337688.000000","0.000000","90400800.000000",,"3753872.000000","28027636.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000",,,,,,,,"2511.000000","11929.000000",,,,,,,,,,,"4278.000000","835.000000","865.000000","927.000000","1124.000000","1060.000000","1123.000000","0.000000","0.000000","0.000000","652.000000","668.000000","708.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974074.000000",,,,, -"18893.000000","62.545000","18893.000000","62.545000","18893.000000","62.545000",,,,,,,,,,,,,,"34.000000","44033.500000","33021.000000","74.000000","44033.500000","44033.500000",,,,,,,,,,,"5993540.000000","7653852.000000","478736.000000","0.000000","66330992.000000","0.000000","90400800.000000",,"3753872.000000","28050320.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000",,,,,,,,"20719.000000","34292.000000",,,,,,,,,,,"4087.000000","844.000000","913.000000","932.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","656.000000","675.000000","706.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974094.000000",,,,, -"18231.000000","61.500000","18231.000000","61.500000","18231.000000","61.500000",,,,,,,,,,,,,,"39.000000","42689.500000","33547.000000","66.000000","42689.500000","42689.500000",,,,,,,,,,,"6491116.000000","7947268.000000","478736.000000","0.000000","66326492.000000","0.000000","90400616.000000",,"3753872.000000","28045376.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000",,,,,,,,"16475.000000","35318.000000",,,,,,,,,,,"4286.000000","848.000000","860.000000","934.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","658.000000","656.000000","707.000000","792.000000","733.000000","803.000000","160.000000","6000.000000",,"8974114.000000",,,,, -"19226.000000","63.065000","19226.000000","63.065000","19226.000000","63.065000",,,,,,,,,,,,,,"47.000000","53591.500000","49114.000000","35.000000","53591.500000","53591.500000",,,,,,,,,,,"7099456.000000","8681440.000000","478736.000000","0.000000","66328416.000000","0.000000","90400788.000000",,"3753872.000000","28022012.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000",,,,,,,,"10296.000000","47725.000000",,,,,,,,,,,"4371.000000","858.000000","904.000000","936.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","664.000000","679.000000","707.000000","794.000000","821.000000","805.000000","160.000000","6000.000000",,"8974134.000000",,,,, -"18973.000000","62.660000","18973.000000","62.660000","18973.000000","62.660000",,,,,,,,,,,,,,"726.000000","27290.000000","20867.000000","14.000000","27290.000000","27290.000000",,,,,,,,,,,"6826828.000000","8366868.000000","478736.000000","0.000000","66313964.000000","0.000000","90400788.000000",,"3753872.000000","27954716.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000",,,,,,,,"9430.000000","23556.000000",,,,,,,,,,,"4329.000000","863.000000","861.000000","938.000000","1135.000000","1118.000000","1138.000000","0.000000","0.000000","0.000000","667.000000","681.000000","706.000000","794.000000","821.000000","803.000000","160.000000","6000.000000",,"8974154.000000",,,,, -"21758.000000","67.020000","21758.000000","67.020000","21758.000000","67.020000",,,,,,,,,,,,,,"442.000000","38118.000000","37676.000000","55.000000","38118.000000","38118.000000",,,,,,,,,,,"6675316.000000","8110860.000000","478736.000000","0.000000","66311236.000000","0.000000","90400800.000000",,"3753872.000000","28006372.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000",,,,,,,,"9281.000000",,,,,,,,,,,,"4365.000000","874.000000","964.000000","951.000000","1138.000000","1353.000000","1152.000000","0.000000","0.000000","0.000000","671.000000","719.000000","710.000000","795.000000","861.000000","805.000000","160.000000","6000.000000",,"8974174.000000",,,,, -"21069.000000","65.935000","21069.000000","65.935000","21069.000000","65.935000",,,,,,,,,,,,,,"48.000000","20954.000000","19654.000000","14.000000","20954.000000","20954.000000",,,,,,,,,,,"6906000.000000","8173768.000000","478736.000000","0.000000","66300124.000000","0.000000","90400788.000000",,"3753872.000000","28015492.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000",,,,,,,,"296.000000","21908.000000",,,,,,,,,,,"4547.000000","884.000000","1031.000000","971.000000","1152.000000","1434.000000","1178.000000","0.000000","0.000000","0.000000","674.000000","750.000000","717.000000","795.000000","923.000000","823.000000","160.000000","6000.000000",,"8974194.000000",,,,, -"19536.000000","63.525000","19536.000000","63.525000","19536.000000","63.525000",,,,,,,,,,,,,,"95.000000","10344.500000","10132.000000","16.000000","10344.500000","10344.500000",,,,,,,,,,,"6654340.000000","8006000.000000","478736.000000","0.000000","66284512.000000","0.000000","90400788.000000",,"3753872.000000","28128024.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000",,,,,,,,"179.000000","10282.000000",,,,,,,,,,,"4211.000000","894.000000","1116.000000","974.000000","1173.000000","1434.000000","1221.000000","0.000000","0.000000","0.000000","676.000000","745.000000","711.000000","795.000000","923.000000","821.000000","160.000000","6000.000000",,"8974214.000000",,,,, -"22583.000000","68.295000","22583.000000","68.295000","22583.000000","68.295000",,,,,,,,,,,,,,"93.000000","11792.500000","11442.000000","2.000000","11792.500000","11792.500000",,,,,,,,,,,"6868988.000000","8163660.000000","478736.000000","0.000000","66268764.000000","0.000000","90400584.000000",,"3753872.000000","28096188.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000",,,,,,,,"252.000000","11797.000000",,,,,,,,,,,"4399.000000","907.000000","1218.000000","1003.000000","1220.000000","1510.000000","1353.000000","0.000000","0.000000","0.000000","679.000000","763.000000","711.000000","796.000000","923.000000","821.000000","160.000000","6000.000000",,"8974234.000000",,,,, -"21071.000000","65.925000","21071.000000","65.925000","21071.000000","65.925000",,,,,,,,,,,,,,"121.000000","12970.000000","12580.000000","4.000000","12970.000000","12970.000000",,,,,,,,,,,"6952452.000000","8456844.000000","478736.000000","0.000000","66268872.000000","0.000000","90400584.000000",,"3753872.000000","28094164.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000",,,,,,,,"483.000000","12755.000000",,,,,,,,,,,"4456.000000","929.000000","1389.000000","1045.000000","1281.000000","1694.000000","1496.000000","0.000000","0.000000","0.000000","682.000000","759.000000","717.000000","812.000000","919.000000","828.000000","160.000000","6000.000000",,"8974254.000000",,,,, -"21323.000000","66.320000","21323.000000","66.320000","21323.000000","66.320000",,,,,,,,,,,,,,"36.000000","10835.000000","10555.000000","4.000000","10835.000000","10835.000000",,,,,,,,,,,"7036336.000000","8876276.000000","478736.000000","0.000000","66277172.000000","0.000000","90400584.000000",,"3753872.000000","28061908.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000",,,,,,,,"274.000000","10804.000000",,,,,,,,,,,"4292.000000","947.000000","1489.000000","1067.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","688.000000","789.000000","718.000000","817.000000","919.000000","828.000000","160.000000","6000.000000",,"8974274.000000",,,,, -"24477.000000","71.250000","24477.000000","71.250000","24477.000000","71.250000",,,,,,,,,,,,,,"43.000000","12026.500000","11522.000000","14.000000","12026.500000","12026.500000",,,,,,,,,,,"7057308.000000","8917068.000000","478736.000000","0.000000","66251640.000000","0.000000","90400584.000000",,"3753872.000000","28057168.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000",,,,,,,,"216.000000","12270.000000",,,,,,,,,,,"4807.000000","958.000000","1432.000000","1080.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","694.000000","813.000000","728.000000","820.000000","980.000000","861.000000","160.000000","6000.000000",,"8974294.000000",,,,, -"20439.000000","64.915000","20439.000000","64.915000","20439.000000","64.915000",,,,,,,,,,,,,,"44.000000","12644.500000","11522.000000","7.000000","12644.500000","12644.500000",,,,,,,,,,,"6832316.000000","8733596.000000","478736.000000","0.000000","66233040.000000","0.000000","90400720.000000",,"3753872.000000","28074708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000",,,,,,,,"300.000000","13423.000000",,,,,,,,,,,"4121.000000","966.000000","1335.000000","1105.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","695.000000","802.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974314.000000",,,,, -"18532.000000","61.930000","18532.000000","61.930000","18532.000000","61.930000",,,,,,,,,,,,,,"39.000000","13940.000000","13021.000000","15.000000","13940.000000","13940.000000",,,,,,,,,,,"6350720.000000","7979368.000000","478736.000000","0.000000","66229136.000000","0.000000","90401464.000000",,"3753872.000000","28056656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000",,,,,,,,"630.000000","14188.000000",,,,,,,,,,,"4375.000000","961.000000","1142.000000","1104.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","694.000000","771.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974334.000000",,,,, -"19674.000000","63.710000","19674.000000","63.710000","19674.000000","63.710000",,,,,,,,,,,,,,"37.000000","14132.000000","14020.000000","7.000000","14132.000000","14132.000000",,,,,,,,,,,"6224024.000000","7800816.000000","478736.000000","0.000000","66220316.000000","0.000000","90400596.000000",,"3753872.000000","28067036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000",,,,,,,,"269.000000","13937.000000",,,,,,,,,,,"4319.000000","957.000000","1026.000000","1100.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","692.000000","706.000000","731.000000","817.000000","795.000000","861.000000","160.000000","6000.000000",,"8974354.000000",,,,, -"19194.000000","62.955000","19194.000000","62.955000","19194.000000","62.955000",,,,,,,,,,,,,,"44.000000","13790.500000","12837.000000","3.000000","13790.500000","13790.500000",,,,,,,,,,,"5783624.000000","7350140.000000","478736.000000","0.000000","66215984.000000","0.000000","90400596.000000",,"3753872.000000","28121452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000",,,,,,,,"299.000000","14399.000000",,,,,,,,,,,"4291.000000","959.000000","906.000000","1113.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","693.000000","689.000000","736.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974374.000000",,,,, -"17271.000000","59.940000","17271.000000","59.940000","17271.000000","59.940000",,,,,,,,,,,,,,"90.000000","12372.500000","11466.000000","8.000000","12372.500000","12372.500000",,,,,,,,,,,"6244996.000000","7790544.000000","478736.000000","0.000000","66199796.000000","0.000000","90400596.000000",,"3753872.000000","28098984.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000",,,,,,,,"328.000000","12860.000000",,,,,,,,,,,"4092.000000","962.000000","900.000000","1102.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","678.000000","733.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974394.000000",,,,, -"19407.000000","63.275000","19407.000000","63.275000","19407.000000","63.275000",,,,,,,,,,,,,,"63.000000","13680.500000","13328.000000","44.000000","13680.500000","13680.500000",,,,,,,,,,,"6454756.000000","7927484.000000","478736.000000","0.000000","66186112.000000","0.000000","90400644.000000",,"3753872.000000","28114512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000",,,,,,,,"234.000000","13735.000000",,,,,,,,,,,"4268.000000","964.000000","919.000000","1112.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","683.000000","737.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974414.000000",,,,, -"18209.000000","61.395000","18209.000000","61.395000","18209.000000","61.395000",,,,,,,,,,,,,,"2207.000000","13459.000000","12029.000000","4.000000","13459.000000","13459.000000",,,,,,,,,,,"6260032.000000","7827344.000000","478736.000000","0.000000","66182724.000000","0.000000","90400644.000000",,"3753872.000000","28116556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000",,,,,,,,"611.000000","12071.000000",,,,,,,,,,,"4250.000000","969.000000","861.000000","1105.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","699.000000","663.000000","732.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974434.000000",,,,, -"17456.000000","60.210000","17456.000000","60.210000","17456.000000","60.210000",,,,,,,,,,,,,,"47.000000","19418.000000","19371.000000","26.000000","19418.000000","19418.000000",,,,,,,,,,,"5861576.000000","7312960.000000","478736.000000","0.000000","66163652.000000","0.000000","90400644.000000",,"3753872.000000","28155648.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000",,,,,,,,"2105.000000",,,,,,,,,,,,"4367.000000","971.000000","855.000000","1100.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","701.000000","665.000000","730.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974454.000000",,,,, -"22443.000000","68.020000","22443.000000","68.020000","22443.000000","68.020000",,,,,,,,,,,,,,"329.000000","15043.500000","14413.000000","5.000000","15043.500000","15043.500000",,,,,,,,,,,"5693752.000000","7208052.000000","478736.000000","0.000000","66165924.000000","0.000000","90400592.000000",,"3753872.000000","28161480.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000",,,,,,,,"539.000000","14806.000000",,,,,,,,,,,"4441.000000","973.000000","914.000000","1102.000000","1353.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","703.000000","695.000000","732.000000","819.000000","873.000000","866.000000","160.000000","6000.000000",,"8974474.000000",,,,, -"19048.000000","62.695000","19048.000000","62.695000","19048.000000","62.695000",,,,,,,,,,,,,,"103.000000","12770.000000","12457.000000","6.000000","12770.000000","12770.000000",,,,,,,,,,,"5589020.000000","7438856.000000","478736.000000","0.000000","66149564.000000","0.000000","90400712.000000",,"3753872.000000","28134092.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000",,,,,,,,"207.000000","12771.000000",,,,,,,,,,,"4291.000000","966.000000","982.000000","1095.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","714.000000","725.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974494.000000",,,,, -"18933.000000","62.510000","18933.000000","62.510000","18933.000000","62.510000",,,,,,,,,,,,,,"52.000000","11522.500000","11427.000000","3.000000","11522.500000","11522.500000",,,,,,,,,,,"5924564.000000","7711488.000000","478736.000000","0.000000","66141936.000000","0.000000","90400712.000000",,"3753872.000000","28109444.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000",,,,,,,,"203.000000","11363.000000",,,,,,,,,,,"4357.000000","966.000000","1001.000000","1077.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","719.000000","724.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974514.000000",,,,, -"20299.000000","64.650000","20299.000000","64.650000","20299.000000","64.650000",,,,,,,,,,,,,,"43.000000","14504.000000","14141.000000","7.000000","14504.000000","14504.000000",,,,,,,,,,,"6323020.000000","8068004.000000","478736.000000","0.000000","66139132.000000","0.000000","90400760.000000",,"3753872.000000","28111000.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000",,,,,,,,"228.000000","14595.000000",,,,,,,,,,,"4392.000000","961.000000","932.000000","1044.000000","1330.000000","1274.000000","1496.000000","0.000000","0.000000","0.000000","701.000000","701.000000","720.000000","819.000000","797.000000","828.000000","160.000000","6000.000000",,"8974534.000000",,,,, -"22465.000000","68.040000","22465.000000","68.040000","22465.000000","68.040000",,,,,,,,,,,,,,"42.000000","15298.500000","14752.000000","8.000000","15298.500000","15298.500000",,,,,,,,,,,"6406900.000000","7984124.000000","478736.000000","0.000000","66135552.000000","0.000000","90400760.000000",,"3753872.000000","28264520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000",,,,,,,,"634.000000","15168.000000",,,,,,,,,,,"4372.000000","969.000000","958.000000","1009.000000","1330.000000","1129.000000","1330.000000","0.000000","0.000000","0.000000","704.000000","738.000000","721.000000","821.000000","833.000000","828.000000","160.000000","6000.000000",,"8974554.000000",,,,, -"18826.000000","62.335000","18826.000000","62.335000","18826.000000","62.335000",,,,,,,,,,,,,,"36.000000","12201.500000","12084.000000","6.000000","12201.500000","12201.500000",,,,,,,,,,,"6454400.000000","8052592.000000","478736.000000","0.000000","66118764.000000","0.000000","90400760.000000",,"3753872.000000","28290404.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000",,,,,,,,"215.000000","12067.000000",,,,,,,,,,,"4193.000000","968.000000","960.000000","972.000000","1330.000000","1129.000000","1274.000000","0.000000","0.000000","0.000000","704.000000","743.000000","715.000000","821.000000","833.000000","823.000000","160.000000","6000.000000",,"8974574.000000",,,,, -"20902.000000","65.575000","20902.000000","65.575000","20902.000000","65.575000",,,,,,,,,,,,,,"52.000000","12493.500000","12005.000000","36.000000","12493.500000","12493.500000",,,,,,,,,,,"6328460.000000","7926648.000000","478736.000000","0.000000","66103288.000000","0.000000","90400648.000000",,"3753872.000000","28303364.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000",,,,,,,,"219.000000","12709.000000",,,,,,,,,,,"4300.000000","969.000000","999.000000","958.000000","1330.000000","1154.000000","1235.000000","0.000000","0.000000","0.000000","705.000000","753.000000","708.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974594.000000",,,,, -"19178.000000","62.875000","19178.000000","62.875000","19178.000000","62.875000",,,,,,,,,,,,,,"40.000000","12376.000000","12156.000000","8.000000","12376.000000","12376.000000",,,,,,,,,,,"5972092.000000","7958820.000000","478736.000000","0.000000","66099072.000000","0.000000","90400788.000000",,"3753872.000000","28314460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000",,,,,,,,"233.000000","12322.000000",,,,,,,,,,,"4369.000000","977.000000","950.000000","931.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","709.000000","707.000000","702.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974614.000000",,,,, -"16589.000000","58.825000","16589.000000","58.825000","16589.000000","58.825000",,,,,,,,,,,,,,"52.000000","12705.500000","12285.000000","2.000000","12705.500000","12705.500000",,,,,,,,,,,"5569372.000000","7566380.000000","478732.000000","0.000000","66114772.000000","0.000000","90401256.000000",,"3753872.000000","28329764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000",,,,,,,,"242.000000","12831.000000",,,,,,,,,,,"4177.000000","977.000000","904.000000","924.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","710.000000","681.000000","697.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974634.000000",,,,, -"20327.000000","64.675000","20327.000000","64.675000","20327.000000","64.675000",,,,,,,,,,,,,,"41.000000","13142.500000","12219.000000","28.000000","13142.500000","13142.500000",,,,,,,,,,,"5652792.000000","7691744.000000","478732.000000","0.000000","66105824.000000","0.000000","90400792.000000",,"3753872.000000","28338252.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000",,,,,,,,"299.000000","13726.000000",,,,,,,,,,,"4398.000000","983.000000","889.000000","930.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","712.000000","667.000000","700.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974654.000000",,,,, -"18482.000000","61.780000","18482.000000","61.780000","18482.000000","61.780000",,,,,,,,,,,,,,"48.000000","11704.500000","11120.000000","3.000000","11704.500000","11704.500000",,,,,,,,,,,"5338208.000000","7596784.000000","478732.000000","0.000000","66088376.000000","0.000000","90400784.000000",,"3753872.000000","28357712.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000",,,,,,,,"229.000000","12012.000000",,,,,,,,,,,"4296.000000","989.000000","886.000000","927.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","670.000000","698.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974674.000000",,,,, -"16048.000000","57.955000","16048.000000","57.955000","16048.000000","57.955000",,,,,,,,,,,,,,"40.000000","10826.000000","10635.000000","11.000000","10826.000000","10826.000000",,,,,,,,,,,"5426816.000000","7622476.000000","478732.000000","0.000000","66072740.000000","0.000000","90400784.000000",,"3753872.000000","28324028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000",,,,,,,,"195.000000","10781.000000",,,,,,,,,,,"4103.000000","985.000000","887.000000","921.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","711.000000","667.000000","695.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974694.000000",,,,, -"20692.000000","65.225000","20692.000000","65.225000","20692.000000","65.225000",,,,,,,,,,,,,,"47.000000","11596.500000","11291.000000","4.000000","11596.500000","11596.500000",,,,,,,,,,,"5258892.000000","7580384.000000","478732.000000","0.000000","66061664.000000","0.000000","90400632.000000",,"3753872.000000","28387452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000",,,,,,,,"222.000000","11631.000000",,,,,,,,,,,"4323.000000","991.000000","895.000000","926.000000","1330.000000","1150.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","679.000000","699.000000","823.000000","880.000000","823.000000","160.000000","6000.000000",,"8974714.000000",,,,, -"20784.000000","65.370000","20784.000000","65.370000","20784.000000","65.370000",,,,,,,,,,,,,,"106.000000","12928.500000","12807.000000","10.000000","12928.500000","12928.500000",,,,,,,,,,,"4839464.000000","7077072.000000","478732.000000","0.000000","66063360.000000","0.000000","90400632.000000",,"3753872.000000","28361852.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000",,,,,,,,"261.000000","12682.000000",,,,,,,,,,,"4315.000000","993.000000","915.000000","938.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","715.000000","695.000000","705.000000","824.000000","880.000000","833.000000","160.000000","6000.000000",,"8974734.000000",,,,, -"17543.000000","60.285000","17543.000000","60.285000","17543.000000","60.285000",,,,,,,,,,,,,,"48.000000","11144.500000","10757.000000","4.000000","11144.500000","11144.500000",,,,,,,,,,,"4761136.000000","7244848.000000","478732.000000","0.000000","66038548.000000","0.000000","90400632.000000",,"3753872.000000","28385508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000",,,,,,,,"201.000000","11282.000000",,,,,,,,,,,"4143.000000","993.000000","950.000000","940.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","714.000000","715.000000","705.000000","823.000000","880.000000","833.000000","160.000000","6000.000000",,"8974754.000000",,,,, -"20011.000000","64.145000","20011.000000","64.145000","20011.000000","64.145000",,,,,,,,,,,,,,"333.000000","15312.000000","14979.000000","14.000000","15312.000000","15312.000000",,,,,,,,,,,"5138692.000000","7391716.000000","478732.000000","0.000000","66026244.000000","0.000000","90400700.000000",,"3753872.000000","28397936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000",,,,,,,,"524.000000",,,,,,,,,,,,"4051.000000","996.000000","956.000000","934.000000","1330.000000","1214.000000","1154.000000","0.000000","0.000000","0.000000","714.000000","703.000000","700.000000","823.000000","854.000000","823.000000","160.000000","6000.000000",,"8974774.000000",,,,, -"19742.000000","63.725000","19742.000000","63.725000","19742.000000","63.725000",,,,,,,,,,,,,,"47.000000","14213.500000","13658.000000","122.000000","14213.500000","14213.500000",,,,,,,,,,,"5285496.000000","7056168.000000","478732.000000","0.000000","66026388.000000","0.000000","90400700.000000",,"3753872.000000","28370516.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000",,,,,,,,"213.000000","14507.000000",,,,,,,,,,,"4264.000000","1010.000000","1105.000000","963.000000","1353.000000","1726.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","695.000000","701.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974794.000000",,,,, -"20689.000000","65.195000","20689.000000","65.195000","20689.000000","65.195000",,,,,,,,,,,,,,"217.000000","12624.500000","11847.000000","23.000000","12624.500000","12624.500000",,,,,,,,,,,"5426744.000000","6977836.000000","478732.000000","0.000000","66012668.000000","0.000000","90400700.000000",,"3753872.000000","28382724.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000",,,,,,,,"336.000000","12848.000000",,,,,,,,,,,"4316.000000","1010.000000","1197.000000","980.000000","1353.000000","1726.000000","1232.000000","0.000000","0.000000","0.000000","713.000000","718.000000","705.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974814.000000",,,,, -"20624.000000","65.095000","20624.000000","65.095000","20624.000000","65.095000",,,,,,,,,,,,,,"45.000000","9517.500000","9619.000000","8.000000","9517.500000","9517.500000",,,,,,,,,,,"5300936.000000","6956884.000000","478732.000000","0.000000","66012964.000000","0.000000","90400724.000000",,"3753872.000000","28385580.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000",,,,,,,,"159.000000","9212.000000",,,,,,,,,,,"4282.000000","1014.000000","1240.000000","996.000000","1353.000000","1726.000000","1233.000000","0.000000","0.000000","0.000000","712.000000","730.000000","706.000000","821.000000","788.000000","823.000000","160.000000","6000.000000",,"8974834.000000",,,,, -"22552.000000","68.120000","22552.000000","68.120000","22552.000000","68.120000",,,,,,,,,,,,,,"42.000000","13303.000000","12556.000000","8.000000","13303.000000","13303.000000",,,,,,,,,,,"5384816.000000","7187568.000000","478732.000000","0.000000","66023192.000000","0.000000","90400724.000000",,"3753872.000000","28376192.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000",,,,,,,,"572.000000","13436.000000",,,,,,,,,,,"4360.000000","1021.000000","1190.000000","1009.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","715.000000","768.000000","707.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974854.000000",,,,, -"18429.000000","61.655000","18429.000000","61.655000","18429.000000","61.655000",,,,,,,,,,,,,,"48.000000","7702.000000","7618.000000","14.000000","7702.000000","7702.000000",,,,,,,,,,,"5243568.000000","7119520.000000","478732.000000","0.000000","66007376.000000","0.000000","90400724.000000",,"3753872.000000","28392452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000",,,,,,,,"153.000000","7584.000000",,,,,,,,,,,"4185.000000","1016.000000","1103.000000","1008.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","713.000000","746.000000","706.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974874.000000",,,,, -"16889.000000","59.245000","16889.000000","59.245000","16889.000000","59.245000",,,,,,,,,,,,,,"71.000000","16661.000000","15814.000000","13.000000","16661.000000","16661.000000",,,,,,,,,,,"5243568.000000","7329236.000000","478732.000000","0.000000","66007952.000000","0.000000","90400724.000000",,"3753872.000000","28398952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000",,,,,,,,"278.000000","17158.000000",,,,,,,,,,,"4142.000000","1010.000000","988.000000","994.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","711.000000","713.000000","698.000000","825.000000","855.000000","815.000000","160.000000","6000.000000",,"8974894.000000",,,,, -"16040.000000","57.920000","16040.000000","57.920000","16040.000000","57.920000",,,,,,,,,,,,,,"273.000000","9545.000000","7982.000000","19.000000","9545.000000","9545.000000",,,,,,,,,,,"5348424.000000","7245356.000000","478732.000000","0.000000","66019916.000000","0.000000","90400724.000000",,"3753872.000000","28384328.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000",,,,,,,,"562.000000","10273.000000",,,,,,,,,,,"4119.000000","1003.000000","775.000000","974.000000","1353.000000","977.000000","1260.000000","0.000000","0.000000","0.000000","707.000000","613.000000","688.000000","825.000000","734.000000","815.000000","160.000000","6000.000000",,"8974914.000000",,,,, -"14565.000000","55.600000","14565.000000","55.600000","14565.000000","55.600000",,,,,,,,,,,,,,"47.000000","6716.000000","6478.000000","17.000000","6716.000000","6716.000000",,,,,,,,,,,"5961316.000000","8293512.000000","478732.000000","0.000000","66002992.000000","0.000000","90400724.000000",,"3753872.000000","28335236.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000",,,,,,,,"159.000000","6747.000000",,,,,,,,,,,"4055.000000","999.000000","712.000000","970.000000","1353.000000","803.000000","1260.000000","0.000000","0.000000","0.000000","704.000000","570.000000","683.000000","825.000000","646.000000","815.000000","160.000000","6000.000000",,"8974934.000000",,,,, -"15675.000000","57.335000","15675.000000","57.335000","15675.000000","57.335000",,,,,,,,,,,,,,"113.000000","6189.500000","5940.000000","5.000000","6189.500000","6189.500000",,,,,,,,,,,"5961244.000000","8314416.000000","478732.000000","0.000000","65986496.000000","0.000000","90400652.000000",,"3753872.000000","28349048.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000",,,,,,,,"141.000000","6185.000000",,,,,,,,,,,"4313.000000","992.000000","651.000000","946.000000","1353.000000","788.000000","1260.000000","0.000000","0.000000","0.000000","702.000000","547.000000","674.000000","825.000000","599.000000","815.000000","160.000000","6000.000000",,"8974954.000000",,,,, -"14210.000000","55.025000","14210.000000","55.025000","14210.000000","55.025000",,,,,,,,,,,,,,"46.000000","4683.000000","4573.000000","4.000000","4683.000000","4683.000000",,,,,,,,,,,"5793476.000000","8000128.000000","478732.000000","0.000000","65975356.000000","0.000000","90400652.000000",,"3753872.000000","28441832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000",,,,,,,,"129.000000","4616.000000",,,,,,,,,,,"4010.000000","986.000000","598.000000","917.000000","1353.000000","711.000000","1260.000000","0.000000","0.000000","0.000000","698.000000","529.000000","660.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974974.000000",,,,, -"14296.000000","55.160000","14296.000000","55.160000","14296.000000","55.160000",,,,,,,,,,,,,,"53.000000","4920.000000","4712.000000","6.000000","4920.000000","4920.000000",,,,,,,,,,,"5977504.000000","7790836.000000","478732.000000","0.000000","65957492.000000","0.000000","90400652.000000",,"3753872.000000","28492036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000",,,,,,,,"124.000000","4950.000000",,,,,,,,,,,"4252.000000","978.000000","589.000000","910.000000","1353.000000","655.000000","1260.000000","0.000000","0.000000","0.000000","695.000000","530.000000","656.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974994.000000",,,,, -"14639.000000","55.685000","14639.000000","55.685000","14639.000000","55.685000",,,,,,,,,,,,,,"60.000000","6342.000000","6140.000000","5.000000","6342.000000","6342.000000",,,,,,,,,,,"6061392.000000","7811804.000000","478732.000000","0.000000","65941184.000000","0.000000","90400652.000000",,"3753872.000000","28507688.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000",,,,,,,,"146.000000","6338.000000",,,,,,,,,,,"4245.000000","975.000000","598.000000","886.000000","1353.000000","685.000000","1260.000000","0.000000","0.000000","0.000000","693.000000","526.000000","644.000000","825.000000","578.000000","810.000000","160.000000","6000.000000",,"8975014.000000",,,,, -"16389.000000","58.415000","16389.000000","58.415000","16389.000000","58.415000",,,,,,,,,,,,,,"43.000000","6495.000000","6498.000000","4.000000","6495.000000","6495.000000",,,,,,,,,,,"5935712.000000","7455440.000000","478732.000000","0.000000","65924356.000000","0.000000","90400800.000000",,"3753872.000000","28483148.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000",,,,,,,,"145.000000","6303.000000",,,,,,,,,,,"4102.000000","966.000000","610.000000","856.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","689.000000","541.000000","629.000000","825.000000","684.000000","809.000000","160.000000","6000.000000",,"8975034.000000",,,,, -"14824.000000","55.960000","14824.000000","55.960000","14824.000000","55.960000",,,,,,,,,,,,,,"47.000000","4612.000000","4747.000000","10.000000","4612.000000","4612.000000",,,,,,,,,,,"4745892.000000","6328524.000000","478732.000000","0.000000","65908200.000000","0.000000","90400800.000000",,"3753872.000000","28544812.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000",,,,,,,,"126.000000","4304.000000",,,,,,,,,,,"4268.000000","960.000000","595.000000","839.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","685.000000","534.000000","620.000000","825.000000","684.000000","788.000000","160.000000","6000.000000",,"8975054.000000",,,,, -"14754.000000","55.840000","14754.000000","55.840000","14754.000000","55.840000",,,,,,,,,,,,,,"332.000000","11483.500000","10425.000000","19.000000","11483.500000","11483.500000",,,,,,,,,,,"4703800.000000","6265468.000000","478732.000000","0.000000","65891432.000000","0.000000","90400652.000000",,"3753872.000000","28552504.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000",,,,,,,,"481.000000","11727.000000",,,,,,,,,,,"4228.000000","951.000000","603.000000","816.000000","1352.000000","733.000000","1260.000000","0.000000","0.000000","0.000000","681.000000","544.000000","612.000000","823.000000","684.000000","762.000000","160.000000","6000.000000",,"8975074.000000",,,,, -"17904.000000","60.780000","17904.000000","60.780000","17904.000000","60.780000",,,,,,,,,,,,,,"47.000000","7723.500000","7459.000000","7.000000","7723.500000","7723.500000",,,,,,,,,,,"5301280.000000","6731984.000000","478732.000000","0.000000","65899992.000000","0.000000","90400652.000000",,"3753872.000000","28494560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000",,,,,,,,"199.000000","7741.000000",,,,,,,,,,,"4287.000000","940.000000","645.000000","764.000000","1339.000000","939.000000","1233.000000","0.000000","0.000000","0.000000","677.000000","569.000000","604.000000","819.000000","716.000000","762.000000","160.000000","6000.000000",,"8975094.000000",,,,, -"13576.000000","53.995000","13576.000000","53.995000","13576.000000","53.995000",,,,,,,,,,,,,,"55.000000","4659.000000","4336.000000","5.000000","4659.000000","4659.000000",,,,,,,,,,,"5730976.000000","7439456.000000","478732.000000","0.000000","65886948.000000","0.000000","90400652.000000",,"3753872.000000","28542784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000",,,,,,,,"147.000000","4779.000000",,,,,,,,,,,"4052.000000","928.000000","642.000000","728.000000","1330.000000","939.000000","1200.000000","0.000000","0.000000","0.000000","673.000000","568.000000","590.000000","819.000000","716.000000","759.000000","160.000000","6000.000000",,"8975114.000000",,,,, -"15570.000000","57.115000","15570.000000","57.115000","15570.000000","57.115000",,,,,,,,,,,,,,"43.000000","4601.000000","3597.000000","4.000000","4601.000000","4601.000000",,,,,,,,,,,"5647276.000000","7418384.000000","478732.000000","0.000000","65876308.000000","0.000000","90400840.000000",,"3753872.000000","28554340.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000",,,,,,,,"217.000000","5344.000000",,,,,,,,,,,"4133.000000","910.000000","607.000000","689.000000","1280.000000","939.000000","977.000000","0.000000","0.000000","0.000000","667.000000","540.000000","574.000000","815.000000","716.000000","734.000000","160.000000","6000.000000",,"8975134.000000",,,,, -"18470.000000","61.650000","18470.000000","61.650000","18470.000000","61.650000",,,,,,,,,,,,,,"51.000000","9233.500000","8781.000000","23.000000","9233.500000","9233.500000",,,,,,,,,,,"5437560.000000","7250608.000000","478732.000000","0.000000","65874136.000000","0.000000","90400840.000000",,"3753872.000000","28477776.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000",,,,,,,,"551.000000","9083.000000",,,,,,,,,,,"4406.000000","889.000000","623.000000","650.000000","1246.000000","825.000000","803.000000","0.000000","0.000000","0.000000","664.000000","560.000000","563.000000","809.000000","741.000000","684.000000","160.000000","6000.000000",,"8975154.000000",,,,, -"16946.000000","59.260000","16946.000000","59.260000","16946.000000","59.260000",,,,,,,,,,,,,,"258.000000","7689.000000","7210.000000","3.000000","7689.000000","7689.000000",,,,,,,,,,,"4546812.000000","6103060.000000","478732.000000","0.000000","65863444.000000","0.000000","90401168.000000",,"3753872.000000","28402112.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000",,,,,,,,"327.000000","7581.000000",,,,,,,,,,,"4149.000000","874.000000","676.000000","643.000000","1233.000000","825.000000","795.000000","0.000000","0.000000","0.000000","660.000000","595.000000","559.000000","806.000000","741.000000","683.000000","160.000000","6000.000000",,"8975174.000000",,,,, -"14698.000000","55.735000","14698.000000","55.735000","14698.000000","55.735000",,,,,,,,,,,,,,"58.000000","6530.500000","6377.000000","6.000000","6530.500000","6530.500000",,,,,,,,,,,"4693152.000000","6291620.000000","478732.000000","0.000000","65854812.000000","0.000000","90400704.000000",,"3753872.000000","28409512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000",,,,,,,,"158.000000","6467.000000",,,,,,,,,,,"4190.000000","861.000000","698.000000","631.000000","1224.000000","825.000000","788.000000","0.000000","0.000000","0.000000","653.000000","612.000000","554.000000","795.000000","741.000000","683.000000","160.000000","6000.000000",,"8975194.000000",,,,, -"14571.000000","55.530000","14571.000000","55.530000","14571.000000","55.530000",,,,,,,,,,,,,,"49.000000","6825.500000","6772.000000","3.000000","6825.500000","6825.500000",,,,,,,,,,,"4546416.000000","6207796.000000","478732.000000","0.000000","65839916.000000","0.000000","90400764.000000",,"3753872.000000","28272768.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000",,,,,,,,"146.000000","6683.000000",,,,,,,,,,,"4257.000000","842.000000","624.000000","620.000000","1200.000000","804.000000","748.000000","0.000000","0.000000","0.000000","647.000000","550.000000","550.000000","788.000000","658.000000","683.000000","160.000000","6000.000000",,"8975214.000000",,,,, -"13856.000000","54.405000","13856.000000","54.405000","13856.000000","54.405000",,,,,,,,,,,,,,"49.000000","5170.000000","4826.000000","3.000000","5170.000000","5170.000000",,,,,,,,,,,"4263512.000000","5956140.000000","478728.000000","0.000000","65832732.000000","0.000000","90400768.000000",,"3753872.000000","28365620.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000",,,,,,,,"149.000000","5315.000000",,,,,,,,,,,"4211.000000","836.000000","572.000000","615.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","643.000000","515.000000","548.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975234.000000",,,,, -"12379.000000","52.090000","12379.000000","52.090000","12379.000000","52.090000",,,,,,,,,,,,,,"40.000000","5059.500000","4740.000000","4.000000","5059.500000","5059.500000",,,,,,,,,,,"4305452.000000","5956144.000000","478728.000000","0.000000","65828844.000000","0.000000","90400768.000000",,"3753872.000000","28367832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000",,,,,,,,"147.000000","5191.000000",,,,,,,,,,,"4136.000000","830.000000","555.000000","612.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","639.000000","496.000000","544.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975254.000000",,,,, -"13295.000000","53.520000","13295.000000","53.520000","13295.000000","53.520000",,,,,,,,,,,,,,"52.000000","6168.500000","6151.000000","8.000000","6168.500000","6168.500000",,,,,,,,,,,"4357304.000000","5913056.000000","478728.000000","0.000000","65821468.000000","0.000000","90400768.000000",,"3753872.000000","28589508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000",,,,,,,,"164.000000","5969.000000",,,,,,,,,,,"4011.000000","816.000000","523.000000","605.000000","1180.000000","675.000000","748.000000","0.000000","0.000000","0.000000","632.000000","469.000000","538.000000","787.000000","615.000000","683.000000","160.000000","6000.000000",,"8975274.000000",,,,, -"12982.000000","53.025000","12982.000000","53.025000","12982.000000","53.025000",,,,,,,,,,,,,,"53.000000","5785.500000","5557.000000","3.000000","5785.500000","5785.500000",,,,,,,,,,,"4309388.000000","5865136.000000","478728.000000","0.000000","65804804.000000","0.000000","90400768.000000",,"3753872.000000","28617396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000",,,,,,,,"146.000000","5815.000000",,,,,,,,,,,"4021.000000","810.000000","509.000000","599.000000","1180.000000","631.000000","748.000000","0.000000","0.000000","0.000000","628.000000","456.000000","533.000000","787.000000","540.000000","683.000000","160.000000","6000.000000",,"8975294.000000",,,,, -"12599.000000","52.420000","12599.000000","52.420000","12599.000000","52.420000",,,,,,,,,,,,,,"34.000000","5371.500000","5080.000000","2.000000","5371.500000","5371.500000",,,,,,,,,,,"4330308.000000","5864796.000000","478728.000000","0.000000","65796504.000000","0.000000","90400720.000000",,"3753872.000000","28628452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000",,,,,,,,"118.000000","5510.000000",,,,,,,,,,,"4233.000000","801.000000","492.000000","591.000000","1180.000000","587.000000","748.000000","0.000000","0.000000","0.000000","624.000000","449.000000","528.000000","787.000000","526.000000","683.000000","160.000000","6000.000000",,"8975314.000000",,,,, -"12073.000000","51.585000","12073.000000","51.585000","12073.000000","51.585000",,,,,,,,,,,,,,"52.000000","6416.000000","5738.000000","3.000000","6416.000000","6416.000000",,,,,,,,,,,"4383312.000000","5991772.000000","478728.000000","0.000000","65780080.000000","0.000000","90400720.000000",,"3753872.000000","28640968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000",,,,,,,,"201.000000","6841.000000",,,,,,,,,,,"4004.000000","792.000000","500.000000","583.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","618.000000","446.000000","519.000000","787.000000","511.000000","658.000000","160.000000","6000.000000",,"8975334.000000",,,,, -"12674.000000","52.525000","12674.000000","52.525000","12674.000000","52.525000",,,,,,,,,,,,,,"35.000000","5496.000000","5461.000000","2.000000","5496.000000","5496.000000",,,,,,,,,,,"4100816.000000","5515404.000000","478728.000000","0.000000","65781260.000000","0.000000","90400720.000000",,"3753872.000000","28662936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000",,,,,,,,"234.000000",,,,,,,,,,,,"3923.000000","787.000000","507.000000","581.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","614.000000","446.000000","516.000000","787.000000","493.000000","658.000000","160.000000","6000.000000",,"8975354.000000",,,,, -"20842.000000","65.480000","20842.000000","65.480000","20842.000000","65.480000",,,,,,,,,,,,,,"394.000000","7050.000000","6614.000000","4.000000","7050.000000","7050.000000",,,,,,,,,,,"4466336.000000","5812684.000000","478728.000000","0.000000","66106536.000000","0.000000","90394628.000000",,"3753872.000000","28317656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000",,,,,,,,"432.000000","6659.000000",,,,,,,,,,,"4394.000000","781.000000","610.000000","592.000000","1154.000000","1073.000000","804.000000","0.000000","0.000000","0.000000","611.000000","513.000000","522.000000","784.000000","920.000000","658.000000","160.000000","6000.000000",,"8975374.000000",,,,, -"19176.000000","62.935000","19176.000000","62.935000","19176.000000","62.935000",,,,,,,,,,,,,,"53.000000","9572.500000","9151.000000","35.000000","9572.500000","9572.500000",,,,,,,,,,,"4881476.000000","6210432.000000","478728.000000","0.000000","66235640.000000","0.000000","90331680.000000",,"3753872.000000","28088488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000",,,,,,,,"212.000000","9729.000000",,,,,,,,,,,"4522.000000","777.000000","750.000000","604.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","612.000000","632.000000","531.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975394.000000",,,,, -"15809.000000","57.660000","15809.000000","57.660000","15809.000000","57.660000",,,,,,,,,,,,,,"53.000000","2673.500000","2426.000000","5.000000","2673.500000","2673.500000",,,,,,,,,,,"5095648.000000","6277784.000000","478728.000000","0.000000","66219360.000000","0.000000","90331680.000000",,"3753872.000000","28113976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000",,,,,,,,"108.000000","2759.000000",,,,,,,,,,,"4307.000000","772.000000","769.000000","607.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","610.000000","664.000000","535.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975414.000000",,,,, -"14859.000000","56.160000","14859.000000","56.160000","14859.000000","56.160000",,,,,,,,,,,,,,"45.000000","1882.000000","1672.000000","38.000000","1882.000000","1882.000000",,,,,,,,,,,"5053652.000000","6361616.000000","478728.000000","0.000000","66207164.000000","0.000000","90331628.000000",,"3753872.000000","28125804.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000",,,,,,,,"98.000000","1948.000000",,,,,,,,,,,"4149.000000","765.000000","698.000000","611.000000","1150.000000","1057.000000","825.000000","0.000000","0.000000","0.000000","606.000000","616.000000","537.000000","787.000000","874.000000","730.000000","160.000000","6000.000000",,"8975434.000000",,,,, -"15093.000000","56.525000","15093.000000","56.525000","15093.000000","56.525000",,,,,,,,,,,,,,"49.000000","3138.500000","2819.000000","4.000000","3138.500000","3138.500000",,,,,,,,,,,"5010764.000000","6381568.000000","478728.000000","0.000000","66199440.000000","0.000000","90327692.000000",,"3753872.000000","28120808.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000",,,,,,,,"477.000000","2931.000000",,,,,,,,,,,"4255.000000","752.000000","590.000000","597.000000","1150.000000","633.000000","808.000000","0.000000","0.000000","0.000000","599.000000","535.000000","526.000000","762.000000","621.000000","658.000000","160.000000","6000.000000",,"8975454.000000",,,,, -"15613.000000","57.330000","15613.000000","57.330000","15613.000000","57.330000",,,,,,,,,,,,,,"45.000000","7734.500000","7541.000000","6.000000","7734.500000","7734.500000",,,,,,,,,,,"5241444.000000","6696148.000000","478728.000000","0.000000","66179740.000000","0.000000","90327692.000000",,"3753872.000000","28117624.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000",,,,,,,,"156.000000","7727.000000",,,,,,,,,,,"4226.000000","748.000000","604.000000","592.000000","1150.000000","641.000000","808.000000","0.000000","0.000000","0.000000","596.000000","540.000000","524.000000","762.000000","586.000000","621.000000","160.000000","6000.000000",,"8975474.000000",,,,, -"12397.000000","52.285000","12397.000000","52.285000","12397.000000","52.285000",,,,,,,,,,,,,,"45.000000","6719.000000","6597.000000","25.000000","6719.000000","6719.000000",,,,,,,,,,,"5204088.000000","6692988.000000","478728.000000","0.000000","66166040.000000","0.000000","90327868.000000",,"3753872.000000","28132280.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000",,,,,,,,"148.000000","6648.000000",,,,,,,,,,,"3977.000000","738.000000","587.000000","588.000000","1146.000000","641.000000","808.000000","0.000000","0.000000","0.000000","590.000000","520.000000","519.000000","761.000000","586.000000","621.000000","160.000000","6000.000000",,"8975494.000000",,,,, -"12513.000000","52.455000","12513.000000","52.455000","12513.000000","52.455000",,,,,,,,,,,,,,"50.000000","5044.000000","4815.000000","26.000000","5044.000000","5044.000000",,,,,,,,,,,"5057288.000000","6263644.000000","478728.000000","0.000000","66146408.000000","0.000000","90327868.000000",,"3753872.000000","28186536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000",,,,,,,,"132.000000","5089.000000",,,,,,,,,,,"4083.000000","725.000000","543.000000","581.000000","1117.000000","641.000000","808.000000","0.000000","0.000000","0.000000","584.000000","483.000000","513.000000","761.000000","582.000000","621.000000","160.000000","6000.000000",,"8975514.000000",,,,, -"13977.000000","54.750000","13977.000000","54.750000","13977.000000","54.750000",,,,,,,,,,,,,,"44.000000","6543.500000","6484.000000","4.000000","6543.500000","6543.500000",,,,,,,,,,,"4826604.000000","5928096.000000","478724.000000","0.000000","66137988.000000","0.000000","90327872.000000",,"3753872.000000","28153368.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000",,,,,,,,"183.000000","6375.000000",,,,,,,,,,,"4160.000000","722.000000","515.000000","581.000000","1117.000000","559.000000","808.000000","0.000000","0.000000","0.000000","581.000000","457.000000","512.000000","761.000000","511.000000","621.000000","160.000000","6000.000000",,"8975534.000000",,,,, -"12436.000000","52.325000","12436.000000","52.325000","12436.000000","52.325000",,,,,,,,,,,,,,"40.000000","6087.500000","5252.000000","5.000000","6087.500000","6087.500000",,,,,,,,,,,"4910076.000000","5876924.000000","478724.000000","0.000000","66119612.000000","0.000000","90327460.000000",,"3753872.000000","28171036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000",,,,,,,,"192.000000","6691.000000",,,,,,,,,,,"4040.000000","713.000000","513.000000","580.000000","1114.000000","562.000000","808.000000","0.000000","0.000000","0.000000","577.000000","465.000000","512.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975554.000000",,,,, -"12567.000000","52.525000","12567.000000","52.525000","12567.000000","52.525000",,,,,,,,,,,,,,"51.000000","6029.500000","5213.000000","4.000000","6029.500000","6029.500000",,,,,,,,,,,"5078248.000000","6013064.000000","478724.000000","0.000000","66113852.000000","0.000000","90327860.000000",,"3753872.000000","28145464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000",,,,,,,,"213.000000","6582.000000",,,,,,,,,,,"3992.000000","700.000000","514.000000","579.000000","1087.000000","585.000000","808.000000","0.000000","0.000000","0.000000","570.000000","458.000000","511.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975574.000000",,,,, -"14336.000000","55.290000","14336.000000","55.290000","14336.000000","55.290000",,,,,,,,,,,,,,"110.000000","14842.500000","14514.000000","19.000000","14842.500000","14842.500000",,,,,,,,,,,"4973388.000000","5845296.000000","478724.000000","0.000000","66100572.000000","0.000000","90327860.000000",,"3753872.000000","28240156.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000",,,,,,,,"243.000000","14817.000000",,,,,,,,,,,"4123.000000","698.000000","523.000000","584.000000","1087.000000","649.000000","808.000000","0.000000","0.000000","0.000000","568.000000","468.000000","515.000000","759.000000","584.000000","621.000000","160.000000","6000.000000",,"8975594.000000",,,,, -"13198.000000","53.510000","13198.000000","53.510000","13198.000000","53.510000",,,,,,,,,,,,,,"57.000000","5434.500000","5290.000000","10.000000","5434.500000","5434.500000",,,,,,,,,,,"5196328.000000","6026292.000000","478724.000000","0.000000","66101272.000000","0.000000","90327860.000000",,"3753872.000000","28239424.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000",,,,,,,,"137.000000","5383.000000",,,,,,,,,,,"4073.000000","688.000000","522.000000","586.000000","1073.000000","678.000000","808.000000","0.000000","0.000000","0.000000","562.000000","455.000000","514.000000","752.000000","584.000000","621.000000","160.000000","6000.000000",,"8975614.000000",,,,, -"13950.000000","54.680000","13950.000000","54.680000","13950.000000","54.680000",,,,,,,,,,,,,,"49.000000","6232.500000","6044.000000","12.000000","6232.500000","6232.500000",,,,,,,,,,,"5259240.000000","6047268.000000","478724.000000","0.000000","66093716.000000","0.000000","90327860.000000",,"3753872.000000","28252172.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000",,,,,,,,"173.000000","6197.000000",,,,,,,,,,,"4112.000000","677.000000","571.000000","594.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","556.000000","493.000000","520.000000","741.000000","620.000000","621.000000","160.000000","6000.000000",,"8975634.000000",,,,, -"12855.000000","52.960000","12855.000000","52.960000","12855.000000","52.960000",,,,,,,,,,,,,,"35.000000","6091.500000","5948.000000","23.000000","6091.500000","6091.500000",,,,,,,,,,,"5133416.000000","6026292.000000","478724.000000","0.000000","66083820.000000","0.000000","90327860.000000",,"3753872.000000","28249708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000",,,,,,,,"124.000000","6076.000000",,,,,,,,,,,"4195.000000","671.000000","553.000000","593.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","552.000000","474.000000","521.000000","734.000000","620.000000","621.000000","160.000000","6000.000000",,"8975654.000000",,,,, -"12159.000000","51.865000","12159.000000","51.865000","12159.000000","51.865000",,,,,,,,,,,,,,"336.000000","5644.500000","5157.000000","3.000000","5644.500000","5644.500000",,,,,,,,,,,"4817524.000000","5836232.000000","478724.000000","0.000000","66068668.000000","0.000000","90327612.000000",,"3753872.000000","28263960.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000",,,,,,,,"425.000000","5370.000000",,,,,,,,,,,"3922.000000","661.000000","556.000000","575.000000","977.000000","805.000000","678.000000","0.000000","0.000000","0.000000","547.000000","481.000000","507.000000","730.000000","620.000000","620.000000","160.000000","6000.000000",,"8975674.000000",,,,, -"14553.000000","55.600000","14553.000000","55.600000","14553.000000","55.600000",,,,,,,,,,,,,,"47.000000","9475.500000","8321.000000","16.000000","9475.500000","9475.500000",,,,,,,,,,,"4649752.000000","5637576.000000","478724.000000","0.000000","66045288.000000","0.000000","90327612.000000",,"3753872.000000","28300572.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000",,,,,,,,"256.000000","10326.000000",,,,,,,,,,,"3969.000000","640.000000","550.000000","554.000000","903.000000","757.000000","647.000000","0.000000","0.000000","0.000000","541.000000","468.000000","488.000000","716.000000","601.000000","584.000000","160.000000","6000.000000",,"8975694.000000",,,,, -"11104.000000","50.195000","11104.000000","50.195000","11104.000000","50.195000",,,,,,,,,,,,,,"55.000000","3076.000000","2376.000000","36.000000","3076.000000","3076.000000",,,,,,,,,,,"4356152.000000","5490780.000000","478724.000000","0.000000","66030236.000000","0.000000","90327612.000000",,"3753872.000000","28263972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000",,,,,,,,"163.000000","3558.000000",,,,,,,,,,,"3891.000000","627.000000","530.000000","545.000000","825.000000","757.000000","647.000000","0.000000","0.000000","0.000000","534.000000","449.000000","478.000000","684.000000","601.000000","582.000000","160.000000","6000.000000",,"8975714.000000",,,,, -"15315.000000","56.785000","15315.000000","56.785000","15315.000000","56.785000",,,,,,,,,,,,,,"47.000000","6384.000000","6212.000000","4.000000","6384.000000","6384.000000",,,,,,,,,,,"4368308.000000","5587100.000000","478724.000000","0.000000","66020992.000000","0.000000","90327612.000000",,"3753872.000000","28272500.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000",,,,,,,,"146.000000","6363.000000",,,,,,,,,,,"3981.000000","616.000000","560.000000","548.000000","804.000000","757.000000","674.000000","0.000000","0.000000","0.000000","529.000000","465.000000","477.000000","668.000000","601.000000","582.000000","160.000000","6000.000000",,"8975734.000000",,,,, -"16056.000000","57.940000","16056.000000","57.940000","16056.000000","57.940000",,,,,,,,,,,,,,"56.000000","7235.500000","6740.000000","34.000000","7235.500000","7235.500000",,,,,,,,,,,"4683920.000000","6091448.000000","478724.000000","0.000000","66007688.000000","0.000000","90328648.000000",,"3753872.000000","28333088.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000",,,,,,,,"547.000000","7128.000000",,,,,,,,,,,"4199.000000","600.000000","585.000000","553.000000","788.000000","714.000000","689.000000","0.000000","0.000000","0.000000","523.000000","497.000000","480.000000","636.000000","630.000000","582.000000","160.000000","6000.000000",,"8975754.000000",,,,, -"16684.000000","58.915000","16684.000000","58.915000","16684.000000","58.915000",,,,,,,,,,,,,,"51.000000","8111.500000","7884.000000","46.000000","8111.500000","8111.500000",,,,,,,,,,,"4734948.000000","6141332.000000","478724.000000","0.000000","65989984.000000","0.000000","90327824.000000",,"3753872.000000","28340276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000",,,,,,,,"188.000000","8099.000000",,,,,,,,,,,"4209.000000","596.000000","648.000000","554.000000","771.000000","721.000000","690.000000","0.000000","0.000000","0.000000","521.000000","555.000000","481.000000","630.000000","672.000000","601.000000","160.000000","6000.000000",,"8975774.000000",,,,, -"13417.000000","53.790000","13417.000000","53.790000","13417.000000","53.790000",,,,,,,,,,,,,,"52.000000","7777.500000","6720.000000","246.000000","7777.500000","7777.500000",,,,,,,,,,,"4944620.000000","6254676.000000","478724.000000","0.000000","65985284.000000","0.000000","90327780.000000",,"3753872.000000","28350264.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000",,,,,,,,"292.000000","8490.000000",,,,,,,,,,,"4059.000000","592.000000","634.000000","557.000000","733.000000","721.000000","690.000000","0.000000","0.000000","0.000000","519.000000","553.000000","484.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975794.000000",,,,, -"12031.000000","51.620000","12031.000000","51.620000","12031.000000","51.620000",,,,,,,,,,,,,,"53.000000","6347.500000","5765.000000","35.000000","6347.500000","6347.500000",,,,,,,,,,,"4598020.000000","6200536.000000","478724.000000","0.000000","65982208.000000","0.000000","90327788.000000",,"3753872.000000","28379396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000",,,,,,,,"214.000000","6663.000000",,,,,,,,,,,"3878.000000","587.000000","580.000000","560.000000","721.000000","721.000000","690.000000","0.000000","1.000000","0.000000","515.000000","499.000000","483.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975814.000000",,,,, -"13415.000000","53.785000","13415.000000","53.785000","13415.000000","53.785000",,,,,,,,,,,,,,"97.000000","6025.000000","5859.000000","19.000000","6025.000000","6025.000000",,,,,,,,,,,"4368068.000000","6033500.000000","478724.000000","0.000000","65973668.000000","0.000000","90328528.000000",,"3753872.000000","28370840.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000",,,,,,,,"132.000000","5961.000000",,,,,,,,,,,"4039.000000","585.000000","540.000000","559.000000","721.000000","660.000000","690.000000","0.000000","1.000000","0.000000","514.000000","465.000000","482.000000","627.000000","585.000000","601.000000","160.000000","6000.000000",,"8975834.000000",,,,, -"12897.000000","52.965000","12897.000000","52.965000","12897.000000","52.965000",,,,,,,,,,,,,,"59.000000","8169.000000","7981.000000","38.000000","8169.000000","8169.000000",,,,,,,,,,,"4456668.000000","5831840.000000","478724.000000","0.000000","65959600.000000","0.000000","90327768.000000",,"3753872.000000","28384312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000",,,,,,,,"160.000000","8138.000000",,,,,,,,,,,"4065.000000","584.000000","528.000000","560.000000","721.000000","562.000000","690.000000","0.000000","1.000000","0.000000","513.000000","456.000000","482.000000","627.000000","504.000000","601.000000","160.000000","6000.000000",,"8975854.000000",,,,, -"13402.000000","53.745000","13402.000000","53.745000","13402.000000","53.745000",,,,,,,,,,,,,,"52.000000","6454.500000","6276.000000","32.000000","6454.500000","6454.500000",,,,,,,,,,,"4059692.000000","5320092.000000","478724.000000","0.000000","65943304.000000","0.000000","90328096.000000",,"3753872.000000","28363360.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000",,,,,,,,"156.000000","6424.000000",,,,,,,,,,,"4120.000000","583.000000","530.000000","563.000000","721.000000","562.000000","690.000000","0.000000","0.000000","0.000000","511.000000","466.000000","485.000000","627.000000","505.000000","601.000000","160.000000","6000.000000",,"8975874.000000",,,,, -"14524.000000","55.505000","14524.000000","55.505000","14524.000000","55.505000",,,,,,,,,,,,,,"43.000000","6854.500000","6631.000000","7.000000","6854.500000","6854.500000",,,,,,,,,,,"3681880.000000","5151996.000000","478724.000000","0.000000","65942040.000000","0.000000","90327768.000000",,"3753872.000000","28393976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000",,,,,,,,"176.000000","6859.000000",,,,,,,,,,,"3981.000000","584.000000","571.000000","568.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","512.000000","490.000000","487.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975894.000000",,,,, -"12588.000000","52.465000","12588.000000","52.465000","12588.000000","52.465000",,,,,,,,,,,,,,"50.000000","5718.000000","5531.000000","16.000000","5718.000000","5718.000000",,,,,,,,,,,"3387004.000000","5134160.000000","478724.000000","0.000000","65926568.000000","0.000000","90327564.000000",,"3753872.000000","28408136.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000",,,,,,,,"142.000000","5713.000000",,,,,,,,,,,"3892.000000","582.000000","569.000000","569.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","510.000000","483.000000","488.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975914.000000",,,,, -"13448.000000","53.805000","13448.000000","53.805000","13448.000000","53.805000",,,,,,,,,,,,,,"57.000000","5242.000000","5013.000000","5.000000","5242.000000","5242.000000",,,,,,,,,,,"3815192.000000","5499436.000000","478724.000000","0.000000","65910024.000000","0.000000","90327564.000000",,"3753872.000000","28390540.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000",,,,,,,,"163.000000","5250.000000",,,,,,,,,,,"4137.000000","579.000000","563.000000","562.000000","733.000000","852.000000","690.000000","0.000000","0.000000","0.000000","507.000000","484.000000","483.000000","627.000000","676.000000","601.000000","160.000000","6000.000000",,"8975934.000000",,,,, -"12917.000000","52.965000","12917.000000","52.965000","12917.000000","52.965000",,,,,,,,,,,,,,"56.000000","5233.000000","5054.000000","21.000000","5233.000000","5233.000000",,,,,,,,,,,"3668536.000000","5226956.000000","478724.000000","0.000000","65900664.000000","0.000000","90327712.000000",,"3753872.000000","28319972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000",,,,,,,,"138.000000","5217.000000",,,,,,,,,,,"4089.000000","578.000000","514.000000","561.000000","733.000000","640.000000","690.000000","0.000000","0.000000","0.000000","506.000000","456.000000","483.000000","627.000000","539.000000","601.000000","160.000000","6000.000000",,"8975954.000000",,,,, -"15504.000000","57.020000","15504.000000","57.020000","15504.000000","57.020000",,,,,,,,,,,,,,"317.000000","7192.500000","6726.000000","11.000000","7192.500000","7192.500000",,,,,,,,,,,"3932356.000000","5306432.000000","478720.000000","0.000000","65898268.000000","0.000000","90327716.000000",,"3753872.000000","28319968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000",,,,,,,,"420.000000","6921.000000",,,,,,,,,,,"4034.000000","578.000000","545.000000","567.000000","733.000000","884.000000","714.000000","0.000000","0.000000","0.000000","505.000000","467.000000","485.000000","621.000000","577.000000","601.000000","160.000000","6000.000000",,"8975974.000000",,,,, -"16076.000000","57.910000","16076.000000","57.910000","16076.000000","57.910000",,,,,,,,,,,,,,"56.000000","14948.000000","14891.000000","30.000000","14948.000000","14948.000000",,,,,,,,,,,"3649816.000000","4772236.000000","478720.000000","0.000000","65889080.000000","0.000000","90327716.000000",,"3753872.000000","28333308.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000",,,,,,,,"241.000000",,,,,,,,,,,,"4303.000000","581.000000","667.000000","585.000000","733.000000","1361.000000","714.000000","0.000000","0.000000","0.000000","505.000000","532.000000","496.000000","620.000000","792.000000","617.000000","160.000000","6000.000000",,"8975994.000000",,,,, -"18156.000000","61.165000","18156.000000","61.165000","18156.000000","61.165000",,,,,,,,,,,,,,"58.000000","5549.500000","5380.000000","11.000000","5549.500000","5549.500000",,,,,,,,,,,"3780056.000000","4948828.000000","478716.000000","0.000000","65875864.000000","0.000000","90327720.000000",,"3753872.000000","28336428.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000",,,,,,,,"135.000000","5525.000000",,,,,,,,,,,"4342.000000","584.000000","721.000000","599.000000","748.000000","1361.000000","721.000000","0.000000","0.000000","0.000000","507.000000","583.000000","510.000000","621.000000","792.000000","630.000000","160.000000","6000.000000",,"8976014.000000",,,,, -"17872.000000","60.710000","17872.000000","60.710000","17872.000000","60.710000",,,,,,,,,,,,,,"104.000000","6486.500000","5622.000000","8.000000","6486.500000","6486.500000",,,,,,,,,,,"3784316.000000","5151216.000000","478716.000000","0.000000","65861956.000000","0.000000","90327572.000000",,"3753872.000000","28349116.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000",,,,,,,,"228.000000","7018.000000",,,,,,,,,,,"4529.000000","590.000000","778.000000","611.000000","795.000000","1361.000000","852.000000","0.000000","0.000000","0.000000","512.000000","642.000000","520.000000","643.000000","792.000000","676.000000","160.000000","6000.000000",,"8976034.000000",,,,, -"16428.000000","58.435000","16428.000000","58.435000","16428.000000","58.435000",,,,,,,,,,,,,,"54.000000","5499.000000","4860.000000","11.000000","5499.000000","5499.000000",,,,,,,,,,,"3932268.000000","5195452.000000","478716.000000","0.000000","65843528.000000","0.000000","90327572.000000",,"3753872.000000","28393076.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000",,,,,,,,"332.000000","5751.000000",,,,,,,,,,,"4133.000000","587.000000","717.000000","611.000000","748.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","520.000000","627.000000","791.000000","676.000000","160.000000","6000.000000",,"8976054.000000",,,,, -"17381.000000","59.930000","17381.000000","59.930000","17381.000000","59.930000",,,,,,,,,,,,,,"59.000000","8578.000000","8140.000000","12.000000","8578.000000","8578.000000",,,,,,,,,,,"3953240.000000","5300308.000000","478716.000000","0.000000","65836776.000000","0.000000","90327572.000000",,"3753872.000000","28400124.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000",,,,,,,,"436.000000","8520.000000",,,,,,,,,,,"4333.000000","588.000000","749.000000","619.000000","757.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","523.000000","621.000000","734.000000","676.000000","160.000000","6000.000000",,"8976074.000000",,,,, -"15687.000000","57.270000","15687.000000","57.270000","15687.000000","57.270000",,,,,,,,,,,,,,"460.000000","8076.000000","7461.000000","13.000000","8076.000000","8076.000000",,,,,,,,,,,"4360516.000000","5820964.000000","478712.000000","0.000000","65833308.000000","0.000000","90327576.000000",,"3753872.000000","28405352.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000",,,,,,,,"576.000000","7655.000000",,,,,,,,,,,"4196.000000","590.000000","695.000000","623.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","587.000000","527.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976094.000000",,,,, -"14398.000000","55.250000","14398.000000","55.250000","14398.000000","55.250000",,,,,,,,,,,,,,"66.000000","4858.000000","4662.000000","5.000000","4858.000000","4858.000000",,,,,,,,,,,"4612176.000000","6387196.000000","478712.000000","0.000000","65817948.000000","0.000000","90327576.000000",,"3753872.000000","28436140.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000",,,,,,,,"143.000000","4844.000000",,,,,,,,,,,"4023.000000","590.000000","668.000000","629.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","568.000000","534.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976114.000000",,,,, -"13780.000000","54.270000","13780.000000","54.270000","13780.000000","54.270000",,,,,,,,,,,,,,"48.000000","5593.000000","5408.000000","15.000000","5593.000000","5593.000000",,,,,,,,,,,"4780092.000000","6429288.000000","478712.000000","0.000000","65802764.000000","0.000000","90327724.000000",,"3753872.000000","28460456.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000",,,,,,,,"130.000000","5599.000000",,,,,,,,,,,"3994.000000","591.000000","613.000000","634.000000","757.000000","687.000000","852.000000","0.000000","0.000000","0.000000","510.000000","526.000000","535.000000","621.000000","605.000000","676.000000","160.000000","6000.000000",,"8976133.000000",,,,, -"16853.000000","59.090000","16853.000000","59.090000","16853.000000","59.090000",,,,,,,,,,,,,,"54.000000","6214.000000","6022.000000","6.000000","6214.000000","6214.000000",,,,,,,,,,,"4142032.000000","5689428.000000","478712.000000","0.000000","65805508.000000","0.000000","90327624.000000",,"3753872.000000","28462996.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000",,,,,,,,"148.000000","6203.000000",,,,,,,,,,,"4250.000000","595.000000","644.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","513.000000","542.000000","544.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976154.000000",,,,, -"14298.000000","55.085000","14298.000000","55.085000","14298.000000","55.085000",,,,,,,,,,,,,,"50.000000","4735.500000","4507.000000","6.000000","4735.500000","4735.500000",,,,,,,,,,,"4299160.000000","5910628.000000","478712.000000","0.000000","65804908.000000","0.000000","90328052.000000",,"3753872.000000","28522296.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000",,,,,,,,"161.000000","4752.000000",,,,,,,,,,,"3978.000000","597.000000","629.000000","649.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","514.000000","536.000000","548.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976173.000000",,,,, -"15093.000000","56.325000","15093.000000","56.325000","15093.000000","56.325000",,,,,,,,,,,,,,"41.000000","6169.000000","5983.000000","4.000000","6169.000000","6169.000000",,,,,,,,,,,"4466508.000000","6015056.000000","478712.000000","0.000000","65795524.000000","0.000000","90327624.000000",,"3753872.000000","28542888.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000",,,,,,,,"144.000000","6169.000000",,,,,,,,,,,"4194.000000","600.000000","635.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","516.000000","552.000000","547.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976194.000000",,,,, -"14034.000000","54.655000","14034.000000","54.655000","14034.000000","54.655000",,,,,,,,,,,,,,"56.000000","5221.500000","5049.000000","6.000000","5221.500000","5221.500000",,,,,,,,,,,"4723728.000000","6448860.000000","478712.000000","0.000000","65779708.000000","0.000000","90327708.000000",,"3753872.000000","28557680.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000",,,,,,,,"146.000000","5190.000000",,,,,,,,,,,"3967.000000","601.000000","582.000000","649.000000","784.000000","698.000000","872.000000","0.000000","0.000000","0.000000","517.000000","510.000000","550.000000","630.000000","566.000000","678.000000","160.000000","6000.000000",,"8976213.000000",,,,, -"14513.000000","55.395000","14513.000000","55.395000","14513.000000","55.395000",,,,,,,,,,,,,,"52.000000","11713.000000","11430.000000","47.000000","11713.000000","11713.000000",,,,,,,,,,,"4891500.000000","6563636.000000","478712.000000","0.000000","65762076.000000","0.000000","90327708.000000",,"3753872.000000","28580028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000",,,,,,,,"207.000000","11735.000000",,,,,,,,,,,"4167.000000","604.000000","604.000000","657.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","519.000000","520.000000","555.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976234.000000",,,,, -"13197.000000","53.335000","13197.000000","53.335000","13197.000000","53.335000",,,,,,,,,,,,,,"121.000000","6919.000000","5809.000000","8.000000","6919.000000","6919.000000",,,,,,,,,,,"4828584.000000","6374896.000000","478712.000000","0.000000","65763272.000000","0.000000","90327708.000000",,"3753872.000000","28573952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000",,,,,,,,"308.000000","7598.000000",,,,,,,,,,,"4157.000000","604.000000","572.000000","658.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","520.000000","501.000000","556.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976253.000000",,,,, -"14599.000000","55.530000","14599.000000","55.530000","14599.000000","55.530000",,,,,,,,,,,,,,"392.000000","8179.000000","6641.000000","5.000000","8179.000000","8179.000000",,,,,,,,,,,"4801996.000000","6260304.000000","478708.000000","0.000000","65754900.000000","0.000000","90327572.000000",,"3753872.000000","28582464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000",,,,,,,,"557.000000","8768.000000",,,,,,,,,,,"4075.000000","599.000000","572.000000","654.000000","729.000000","652.000000","837.000000","0.000000","0.000000","0.000000","516.000000","502.000000","557.000000","621.000000","584.000000","678.000000","160.000000","6000.000000",,"8976274.000000",,,,, -"16687.000000","58.805000","16687.000000","58.805000","16687.000000","58.805000",,,,,,,,,,,,,,"75.000000","9394.500000","8011.000000","27.000000","9394.500000","9394.500000",,,,,,,,,,,"4603344.000000","6113500.000000","478708.000000","0.000000","65757556.000000","0.000000","90327572.000000",,"3753872.000000","28571312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000",,,,,,,,"273.000000","10429.000000",,,,,,,,,,,"4183.000000","596.000000","629.000000","649.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","513.000000","528.000000","554.000000","617.000000","752.000000","678.000000","160.000000","6000.000000",,"8976294.000000",,,,, -"13518.000000","53.830000","13518.000000","53.830000","13518.000000","53.830000",,,,,,,,,,,,,,"109.000000","4267.000000","3029.000000","16.000000","4267.000000","4267.000000",,,,,,,,,,,"4582624.000000","6218608.000000","478708.000000","0.000000","65742504.000000","0.000000","90327824.000000",,"3753872.000000","28440044.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000",,,,,,,,"205.000000","5191.000000",,,,,,,,,,,"4062.000000","595.000000","638.000000","641.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","511.000000","527.000000","545.000000","610.000000","752.000000","667.000000","160.000000","6000.000000",,"8976313.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-instance.csv b/splunk_eventgen/samples/vmware-actuals-host-instance.csv deleted file mode 100644 index 1ac2f32d..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host-instance.csv +++ /dev/null @@ -1,852 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -,"22.964583",,"22.964583",,"22.964583",,,,,,,"3837.916667",,,,,"4593.916667",,"11.311111",,"372.177778",,,,"29.600000","1.422222","1.177778","1.400000","31.422222","0.000000","344.925926","0.000000","13.444444","328.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","721.625000",,,,,"0.000000","0.000000",,,"2147.375000","2729.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.476250",,"22.476250",,"22.476250",,,,,,,"4239.833333",,,,,"4496.125000",,"4.200000",,"330.977778",,,,"24.714286","0.866667","0.488889","1.533333","26.977778","0.000000","300.037037","0.000000","8.888889","289.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","612.125000",,,,,"0.000000","0.000000",,,"1756.500000","2189.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.342917",,"22.342917",,"22.342917",,,,,,,"4169.291667",,,,,"4469.250000",,"3.488889",,"292.155556",,,,"18.857143","0.977778","2.733333","127.733333","19.977778","0.000000","221.296296","0.074074","9.592593","210.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","585.625000",,,,,"0.000000","0.000000",,,"1627.625000","2008.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.693333",,"15.693333",,"15.693333",,,,,,,"5570.625000",,,,,"3139.666667",,"19.466667",,"102.533333",,,,"2117.485714","1.177778","56.377778","636.888889","6.533333","0.000000","86.777778","0.259259","14.481481","70.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","181.125000",,,,,"0.000000","0.000000",,,"695.625000","761.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.493333",,"20.493333",,"20.493333",,,,,,,"4138.666667",,,,,"4099.791667",,"4.377778",,"328.400000",,,,"2540.085714","0.888889","9.888889","329.422222","28.222222","0.000000","307.851852","0.111111","10.333333","296.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","638.875000",,,,,"0.000000","0.000000",,,"1909.000000","2327.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.892917",,"20.892917",,"20.892917",,,,,,,"4545.208333",,,,,"4179.416667",,"3.111111",,"117.088889",,,,"2007.628571","0.800000","0.711111","45.266667","5.800000","0.000000","72.592593","0.000000","8.481481","62.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.000000","232.250000",,,,,"0.000000","0.000000",,,"910.375000","983.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.351667",,"17.351667",,"17.351667",,,,,,,"5112.958333",,,,,"3471.541667",,"6.200000",,"1594.355556",,,,"1545.714286","1.000000","3.444444","41.822222","20.733333","0.000000","210.851852","0.000000","10.000000","199.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","2849.875000",,,,,"0.000000","0.000000",,,"5832.375000","8092.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.875417",,"18.875417",,"18.875417",,,,,,,"5122.458333",,,,,"3776.083333",,"3.822222",,"465.133333",,,,"852.114286","0.977778","0.333333","3.400000","16.111111","0.000000","178.925926","0.000000","9.925926","167.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.250000","1274.375000",,,,,"0.000000","0.000000",,,"6969.625000","7389.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.506667",,"17.506667",,"17.506667",,,,,,,"5386.166667",,,,,"3502.125000",,"58.266667",,"900.933333",,,,"42.371429","3.377778","0.600000","8.222222","44.355556","0.000000","502.333333","0.000000","36.481481","464.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"132.875000","1854.250000",,,,,"0.000000","0.000000",,,"6107.625000","7459.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.251667",,"22.251667",,"22.251667",,,,,,,"4570.833333",,,,,"4451.208333",,"4.400000",,"525.377778",,,,"45.314286","1.177778","0.444444","2.377778","49.311111","0.000000","521.592593","0.000000","11.148148","508.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","974.000000",,,,,"0.000000","0.000000",,,"2777.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.629583",,"21.629583",,"21.629583",,,,,,,"4419.291667",,,,,"4326.625000",,"24.133333",,"461.222222",,,,"38.057143","1.155556","0.266667","1.733333","41.555556","0.000000","445.777778","0.000000","11.555556","433.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.000000","913.750000",,,,,"0.000000","0.000000",,,"2767.000000","3537.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.837917",,"20.837917",,"20.837917",,,,,,,"4725.791667",,,,,"4168.458333",,"105.177778",,"389.488889",,,,"33.942857","2.733333","0.288889","2.066667","35.044444","0.000000","392.518519","0.000000","26.777778","363.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"154.125000","691.500000",,,,,"0.000000","0.000000",,,"2393.375000","2793.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.988750",,"18.988750",,"18.988750",,,,,,,"5670.541667",,,,,"3798.583333",,"57.800000",,"337.444444",,,,"23.685714","1.333333","0.400000","1.555556","25.111111","0.000000","277.222222","0.000000","14.555556","261.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"167.750000","622.250000",,,,,"0.000000","0.000000",,,"2163.125000","2381.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.806250",,"18.806250",,"18.806250",,,,,,,"5040.250000",,,,,"3762.166667",,"257.888889",,"394.177778",,,,"37.542857","8.200000","0.355556","1.400000","33.911111","0.000000","438.925926","0.000000","89.851852","347.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"492.750000","775.625000",,,,,"0.000000","0.000000",,,"3455.500000","3576.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.132917",,"20.132917",,"20.132917",,,,,,,"4924.583333",,,,,"4027.625000",,"145.488889",,"387.755556",,,,"40.114286","4.911111","0.177778","1.088889","39.111111","0.000000","450.333333","0.000000","54.666667","391.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"289.625000","8.285714",,,,,"0.000000","0.000000",,,"2861.250000","3031.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.448750",,"18.448750",,"18.448750",,,,,,,"5074.125000",,,,,"3690.750000",,"118.133333",,"331.933333",,,,"32.285714","4.022222","0.644444","1.400000","31.911111","0.000000","370.703704","0.000000","43.703704","325.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.875000","651.000000",,,,,"0.000000","0.000000",,,"2537.000000","2851.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.191667",,"22.191667",,"22.191667",,,,,,,"3835.208333",,,,,"4439.166667",,"89.844444",,"472.755556",,,,"41.514286","5.422222","0.266667","1.755556","40.755556","0.000000","473.000000","0.000000","59.148148","412.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"191.000000","854.375000",,,,,"0.000000","0.000000",,,"2865.250000","3436.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.297917",,"22.297917",,"22.297917",,,,,,,"4117.208333",,,,,"4460.500000",,"9.377778",,"338.533333",,,,"30.800000","1.844444","0.333333","1.377778","32.222222","0.000000","349.407407","0.000000","19.666667","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","851.875000",,,,,"0.000000","0.000000",,,"5608.125000","6200.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.939167",,"21.939167",,"21.939167",,,,,,,"3914.291667",,,,,"4388.708333",,"36.644444",,"251.800000",,,,"2011.342857","9.066667","0.333333","1.977778","20.200000","0.000000","308.185185","0.000000","99.666667","207.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.625000","621.375000",,,,,"0.000000","0.000000",,,"4747.250000","5122.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.502083",,"22.502083",,"22.502083",,,,,,,"4223.416667",,,,,"4501.333333",,"3.977778",,"436.200000",,,,"2518.285714","0.955556","0.555556","2.533333","28.400000","0.000000","300.444444","0.000000","9.296296","289.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","827.375000",,,,,"0.000000","0.000000",,,"2245.250000","2863.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.317500",,"22.317500",,"22.317500",,,,,,,"4361.833333",,,,,"4464.500000",,"31.844444",,"334.466667",,,,"1829.628571","2.755556","1.822222","1.733333","19.377778","0.000000","233.296296","0.000000","28.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"96.625000","624.250000",,,,,"0.000000","0.000000",,,"2522.000000","2492.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.582500",,"27.582500",,"27.582500",,,,,,,"2615.625000",,,,,"5517.666667",,"17.266667",,"553.600000",,,,"1514.142857","2.177778","0.377778","1.422222","49.777778","0.000000","524.222222","0.000000","23.370370","499.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.000000","1017.125000",,,,,"0.000000","0.000000",,,"3092.125000","3738.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.474167",,"25.474167",,"25.474167",,,,,,,"3153.583333",,,,,"5095.666667",,"3.600000",,"479.800000",,,,"1274.600000","0.977778","1.022222","3.155556","43.333333","0.000000","443.851852","0.000000","9.703704","432.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","871.500000",,,,,"0.000000","0.000000",,,"2500.625000","3097.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.752083",,"21.752083",,"21.752083",,,,,,,"4219.750000",,,,,"4351.375000",,"3.488889",,"386.511111",,,,"32.400000","1.022222","0.133333","2.222222","34.600000","0.000000","358.481481","0.000000","9.851852","347.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","714.750000",,,,,"0.000000","0.000000",,,"2142.625000","2569.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.273750",,"25.273750",,"25.273750",,,,,,,"3686.666667",,,,,"5055.708333",,"11.066667",,"594.377778",,,,"41.942857","1.844444","0.266667","1.733333","44.244444","0.000000","462.000000","0.000000","19.555556","440.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","858.125000",,,,,"0.000000","0.000000",,,"2565.250000","3305.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.602917",,"24.602917",,"24.602917",,,,,,,"3892.000000",,,,,"4921.583333",,"12.266667",,"406.244444",,,,"34.800000","1.577778","0.200000","1.777778","36.666667","0.000000","385.222222","0.000000","17.222222","366.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","1038.625000",,,,,"0.000000","0.000000",,,"2794.000000","3562.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.929583",,"22.929583",,"22.929583",,,,,,,"4382.750000",,,,,"4586.875000",,"16.155556",,"587.400000",,,,"35.485714","2.266667","0.266667","3.800000","37.000000","0.000000","398.222222","0.000000","23.666667","373.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1032.000000",,,,,"0.000000","0.000000",,,"2702.250000","3407.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.956250",,"23.956250",,"23.956250",,,,,,,"4120.625000",,,,,"4792.125000",,"2.577778",,"394.711111",,,,"36.142857","0.888889","0.177778","1.244444","38.755556","0.000000","394.629630","0.000000","8.444444","384.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","765.375000",,,,,"0.000000","0.000000",,,"2260.875000","2818.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.483750",,"23.483750",,"23.483750",,,,,,,"4405.833333",,,,,"4697.625000",,"9.466667",,"365.266667",,,,"27.057143","1.488889","0.777778","2.555556","27.977778","0.000000","297.333333","0.000000","14.222222","280.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","793.625000",,,,,"0.000000","0.000000",,,"4382.875000","4854.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.832083",,"21.832083",,"21.832083",,,,,,,"4539.750000",,,,,"4367.541667",,"22.111111",,"306.777778",,,,"26.828571","1.911111","0.244444","1.866667","27.377778","0.000000","302.925926","0.000000","21.333333","277.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.125000","867.375000",,,,,"0.000000","0.000000",,,"5982.750000","6615.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.718750",,"24.718750",,"24.718750",,,,,,,"4033.958333",,,,,"4944.666667",,"2.711111",,"482.800000",,,,"40.400000","0.933333","0.133333","2.511111","43.555556","0.000000","444.185185","0.000000","8.666667","434.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","864.125000",,,,,"0.000000","0.000000",,,"2486.125000","3033.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.872917",,"21.872917",,"21.872917",,,,,,,"3919.375000",,,,,"4375.583333",,"3.888889",,"396.533333",,,,"32.342857","0.955556","0.133333","2.022222","34.666667","0.000000","358.703704","0.000000","9.518519","347.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","735.625000",,,,,"0.000000","0.000000",,,"2147.625000","2750.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.719583",,"26.719583",,"26.719583",,,,,,,"2485.583333",,,,,"5344.791667",,"3.444444",,"443.533333",,,,"23.828571","1.044444","0.422222","4.200000","25.266667","0.000000","268.629630","0.000000","9.629630","257.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","833.000000",,,,,"0.000000","0.000000",,,"2137.500000","2744.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.444167",,"31.444167",,"31.444167",,,,,,,"1250.958333",,,,,"6289.916667",,"3.866667",,"561.933333",,,,"1557.628571","0.866667","0.622222","1.488889","40.866667","0.000000","425.666667","0.000000","8.444444","416.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","1086.250000",,,,,"0.000000","0.000000",,,"2836.000000","3618.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"38.192917",,"38.192917",,"38.192917",,,,,,,"665.458333",,,,,"7639.458333",,"2.822222",,"401.244444",,,,"2194.857143","0.844444","0.622222","2.066667","26.155556","0.000000","275.074074","0.000000","8.444444","265.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","721.750000",,,,,"0.000000","0.000000",,,"1910.750000","2503.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"37.478333",,"37.478333",,"37.478333",,,,,,,"430.583333",,,,,"7496.791667",,"4.422222",,"711.511111",,,,"1416.285714","0.955556","2.266667","3.088889","39.177778","0.000000","411.592593","0.000000","9.814815","400.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.375000","1420.000000",,,,,"0.000000","0.000000",,,"4759.250000","5401.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.707500",,"32.707500",,"32.707500",,,,,,,"1046.333333",,,,,"6542.458333",,"13.688889",,"412.977778",,,,"1384.228571","1.533333","1.222222","3.488889","29.733333","0.000000","318.407407","0.000000","14.148148","301.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","980.625000",,,,,"0.000000","0.000000",,,"5406.750000","6490.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.303333",,"29.303333",,"29.303333",,,,,,,"1384.750000",,,,,"5861.583333",,"4.755556",,"514.822222",,,,"1464.542857","1.000000","0.577778","1.955556","42.911111","0.000000","449.296296","0.000000","10.296296","437.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1227.625000",,,,,"0.000000","0.000000",,,"5596.750000","6783.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.291667",,"26.291667",,"26.291667",,,,,,,"2767.208333",,,,,"5259.166667",,"3.200000",,"420.111111",,,,"1171.257143","0.933333","0.355556","3.088889","37.155556","0.000000","387.259259","0.000000","9.407407","376.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1028.125000",,,,,"0.000000","0.000000",,,"5272.375000","6411.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.346250",,"26.346250",,"26.346250",,,,,,,"3580.500000",,,,,"5270.208333",,"3.533333",,"486.088889",,,,"39.600000","0.955556","0.355556","4.333333","42.866667","0.000000","446.740741","0.000000","9.703704","435.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.750000","1147.875000",,,,,"0.000000","0.000000",,,"6006.625000","7280.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.151667",,"24.151667",,"24.151667",,,,,,,"3947.916667",,,,,"4831.208333",,"3.066667",,"457.511111",,,,"37.971429","0.800000","0.666667","2.533333","41.266667","0.000000","431.259259","0.000000","8.629630","421.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1103.250000",,,,,"0.000000","0.000000",,,"5842.500000","7036.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.313333",,"25.313333",,"25.313333",,,,,,,"3857.875000",,,,,"5063.500000",,"2.977778",,"436.466667",,,,"30.857143","0.933333","0.288889","2.288889","33.377778","0.000000","353.370370","0.000000","8.851852","343.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1139.000000",,,,,"0.000000","0.000000",,,"5929.000000","7105.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.853750",,"25.853750",,"25.853750",,,,,,,"4312.583333",,,,,"5171.833333",,"3.822222",,"458.933333",,,,"35.800000","0.955556","0.311111","1.777778","38.622222","0.000000","403.074074","0.000000","9.629630","392.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1163.250000",,,,,"0.000000","0.000000",,,"6204.500000","7375.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.745417",,"25.745417",,"25.745417",,,,,,,"3276.208333",,,,,"5150.083333",,"8.555556",,"465.933333",,,,"38.228571","1.466667","0.222222","2.444444","40.755556","0.000000","433.444444","0.000000","13.555556","417.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","1088.625000",,,,,"0.000000","0.000000",,,"5674.125000","6719.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.011250",,"25.011250",,"25.011250",,,,,,,"4086.708333",,,,,"5003.083333",,"22.644444",,"548.977778",,,,"39.171429","2.111111","0.244444","2.533333","40.955556","0.000000","440.296296","0.000000","23.148148","413.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.875000","1291.750000",,,,,"0.000000","0.000000",,,"6326.500000","7610.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.236667",,"24.236667",,"24.236667",,,,,,,"3924.333333",,,,,"4848.250000",,"4.200000",,"419.888889",,,,"34.828571","0.955556","0.311111","1.466667","37.533333","0.000000","392.185185","0.000000","9.296296","381.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1073.125000",,,,,"0.000000","0.000000",,,"5831.125000","7042.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.887500",,"25.887500",,"25.887500",,,,,,,"3637.375000",,,,,"5178.583333",,"3.333333",,"416.911111",,,,"33.400000","0.933333","0.755556","2.200000","36.088889","0.000000","377.370370","0.000000","8.888889","367.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","312.000000",,,,,"0.000000","0.000000",,,"5630.625000","6643.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.725833",,"32.725833",,"32.725833",,,,,,,"1537.458333",,,,,"6546.083333",,"5.333333",,"643.022222",,,,"44.342857","1.044444","1.177778","2.000000","48.111111","0.000000","501.777778","0.000000","10.740741","489.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.625000","1437.375000",,,,,"0.000000","0.000000",,,"6435.500000","7798.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.407083",,"23.407083",,"23.407083",,,,,,,"4021.708333",,,,,"4682.291667",,"4.133333",,"288.022222",,,,"1927.628571","0.844444","0.333333","2.222222","18.355556","0.000000","198.333333","0.000000","8.666667","188.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","834.625000",,,,,"0.000000","0.000000",,,"5070.500000","6029.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.535833",,"23.535833",,"23.535833",,,,,,,"3934.625000",,,,,"4708.000000",,"3.222222",,"424.888889",,,,"2305.514286","1.000000","0.244444","4.422222","10.288889","0.000000","114.259259","0.000000","9.296296","103.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.125000","1098.500000",,,,,"0.000000","0.000000",,,"12402.375000","7026.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.125833",,"26.125833",,"26.125833",,,,,,,"3436.583333",,,,,"5225.708333",,"10.533333",,"439.733333",,,,"1775.428571","1.911111","0.400000","3.355556","26.066667","0.000000","286.111111","0.000000","18.074074","264.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.375000","885.000000",,,,,"0.000000","0.000000",,,"6061.375000","6468.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.251250",,"30.251250",,"30.251250",,,,,,,"2742.750000",,,,,"6051.208333",,"5.555556",,"869.511111",,,,"1563.600000","2.244444","0.466667","2.733333","50.377778","0.000000","525.148148","0.000000","20.407407","499.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.500000","1860.625000",,,,,"0.000000","0.000000",,,"7328.750000","9043.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.794167",,"28.794167",,"28.794167",,,,,,,"2946.666667",,,,,"5759.958333",,"6.311111",,"1305.400000",,,,"1410.028571","1.044444","0.666667","6.377778","37.111111","0.000000","380.555556","0.000000","10.703704","368.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.000000","2956.750000",,,,,"0.000000","0.000000",,,"8895.000000","11428.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.132500",,"30.132500",,"30.132500",,,,,,,"2985.083333",,,,,"6027.416667",,"3.733333",,"1372.088889",,,,"185.800000","0.955556","0.311111","3.933333","46.666667","0.000000","473.296296","0.000000","9.518519","462.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","2649.125000",,,,,"0.000000","0.000000",,,"8579.250000","10945.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.247917",,"26.247917",,"26.247917",,,,,,,"3586.083333",,,,,"5250.541667",,"6.822222",,"1792.822222",,,,"35.971429","1.333333","0.377778","6.400000","37.555556","0.000000","372.888889","0.000000","13.148148","358.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.250000","3696.250000",,,,,"0.000000","0.000000",,,"9983.625000","13190.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.460833",,"26.460833",,"26.460833",,,,,,,"3610.125000",,,,,"5293.166667",,"317.622222",,"2913.555556",,,,"52.485714","6.688889","1.822222","7.688889","50.155556","0.000000","544.481481","0.000000","71.888889","471.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"658.125000","6003.000000",,,,,"0.000000","0.000000",,,"15490.125000","19691.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.725833",,"26.725833",,"26.725833",,,,,,,"3503.375000",,,,,"5345.958333",,"4.688889",,"1796.844444",,,,"34.428571","1.111111","0.733333","4.933333","35.866667","0.000000","353.259259","0.000000","11.000000","340.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","3539.375000",,,,,"0.000000","0.000000",,,"9893.250000","12720.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.754167",,"24.754167",,"24.754167",,,,,,,"3637.333333",,,,,"4951.666667",,"3.466667",,"1687.288889",,,,"33.714286","0.933333","0.311111","4.622222","35.488889","0.000000","349.666667","0.000000","9.000000","339.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.875000","3469.750000",,,,,"0.000000","0.000000",,,"9989.125000","12468.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.119583",,"24.119583",,"24.119583",,,,,,,"3458.333333",,,,,"4824.625000",,"8.288889",,"1632.711111",,,,"34.657143","1.466667","0.333333","4.688889","35.844444","0.000000","359.592593","0.000000","13.407407","343.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","223.285714",,,,,"0.000000","0.000000",,,"8630.125000","10818.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.765833",,"23.765833",,"23.765833",,,,,,,"3944.208333",,,,,"4754.208333",,"22.155556",,"582.155556",,,,"38.714286","2.044444","0.177778","3.133333","40.577778","0.000000","436.888889","0.000000","22.111111","410.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.000000","1610.875000",,,,,"0.000000","0.000000",,,"7299.500000","8270.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.970833",,"23.970833",,"23.970833",,,,,,,"3990.666667",,,,,"4795.333333",,"4.777778",,"385.822222",,,,"35.142857","1.133333","0.266667","1.777778","37.533333","0.000000","388.370370","0.000000","11.185185","375.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","805.875000",,,,,"0.000000","0.000000",,,"3684.125000","4286.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.576250",,"27.576250",,"27.576250",,,,,,,"3005.833333",,,,,"5516.291667",,"4.622222",,"478.844444",,,,"36.142857","1.022222","0.222222","2.622222","38.911111","0.000000","403.814815","0.000000","10.000000","392.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","870.500000",,,,,"0.000000","0.000000",,,"2351.750000","3019.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.643333",,"27.643333",,"27.643333",,,,,,,"3044.541667",,,,,"5529.541667",,"64.644444",,"1175.955556",,,,"37.742857","3.133333","0.488889","4.355556","38.111111","0.000000","406.444444","0.000000","33.037037","371.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.750000","2135.875000",,,,,"0.000000","0.000000",,,"4715.250000","6257.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.459167",,"31.459167",,"31.459167",,,,,,,"1749.458333",,,,,"6293.083333",,"3.844444",,"469.777778",,,,"1581.542857","0.866667","0.422222","2.288889","34.444444","0.000000","358.666667","0.000000","8.703704","348.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","996.250000",,,,,"0.000000","0.000000",,,"2569.875000","3386.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.017500",,"31.017500",,"31.017500",,,,,,,"1735.458333",,,,,"6204.125000",,"4.866667",,"399.711111",,,,"2372.742857","1.088889","0.222222","2.222222","33.177778","0.000000","346.444444","0.000000","10.703704","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","721.625000",,,,,"0.000000","0.000000",,,"2048.250000","2611.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.515417",,"25.515417",,"25.515417",,,,,,,"2905.333333",,,,,"5104.291667",,"3.955556",,"269.333333",,,,"1807.171429","0.955556","0.466667","1.888889","18.200000","0.000000","197.629630","0.000000","9.666667","186.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.250000","557.000000",,,,,"0.000000","0.000000",,,"2262.625000","2340.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.461250",,"28.461250",,"28.461250",,,,,,,"2376.708333",,,,,"5693.041667",,"10.377778",,"666.755556",,,,"1566.885714","1.711111","1.888889","2.488889","41.088889","0.000000","438.000000","0.000000","16.333333","418.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1240.000000",,,,,"0.000000","0.000000",,,"3354.000000","4094.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.708750",,"26.708750",,"26.708750",,,,,,,"2640.333333",,,,,"5342.791667",,"4.511111",,"455.866667",,,,"1565.000000","0.977778","0.133333","2.266667","32.866667","0.000000","337.370370","0.000000","9.481481","326.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","862.000000",,,,,"0.000000","0.000000",,,"2340.500000","3036.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.004167",,"30.004167",,"30.004167",,,,,,,"2952.875000",,,,,"6001.833333",,"4.822222",,"1185.377778",,,,"347.628571","0.911111","0.777778","2.822222","116.111111","0.000000","1251.925926","0.000000","9.185185","1241.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.625000","2143.000000",,,,,"0.000000","0.000000",,,"5799.125000","7420.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.079167",,"27.079167",,"27.079167",,,,,,,"3543.291667",,,,,"5416.833333",,"146.888889",,"1047.355556",,,,"102.657143","3.933333","0.355556","2.644444","113.800000","0.000000","1274.148148","0.000000","42.481481","1230.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"231.875000","2085.500000",,,,,"0.000000","0.000000",,,"7827.500000","9313.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.192083",,"24.192083",,"24.192083",,,,,,,"3570.375000",,,,,"4839.541667",,"473.533333",,"1289.311111",,,,"109.228571","14.022222","0.466667","2.911111","110.777778","0.000000","1342.148148","0.000000","153.777778","1186.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1025.250000","2656.875000",,,,,"0.000000","0.000000",,,"12709.125000","13609.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.317917",,"24.317917",,"24.317917",,,,,,,"3180.750000",,,,,"4864.416667",,"28.755556",,"1176.911111",,,,"92.971429","1.822222","0.333333","2.000000","104.222222","0.000000","1132.703704","0.000000","18.222222","1113.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.500000","2223.250000",,,,,"0.000000","0.000000",,,"6840.875000","8657.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.021667",,"26.021667",,"26.021667",,,,,,,"3431.416667",,,,,"5205.208333",,"330.777778",,"1422.577778",,,,"59.485714","6.133333","0.422222","5.488889","60.200000","0.000000","680.148148","0.000000","65.851852","612.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"659.500000","2776.000000",,,,,"0.000000","0.000000",,,"7590.000000","9186.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.982917",,"25.982917",,"25.982917",,,,,,,"3354.541667",,,,,"5197.375000",,"46.866667",,"1277.155556",,,,"79.514286","2.155556","0.444444","3.533333","87.755556","0.000000","948.629630","0.000000","22.555556","924.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.625000","2404.125000",,,,,"0.000000","0.000000",,,"5945.500000","7793.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.697083",,"22.697083",,"22.697083",,,,,,,"3838.000000",,,,,"4540.291667",,"386.800000",,"1148.755556",,,,"44.628571","10.266667","0.444444","2.177778","38.866667","0.000000","505.000000","0.000000","111.185185","388.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.500000","27.285714",,,,,"0.000000","0.000000",,,"6327.500000","7327.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.809167",,"23.809167",,"23.809167",,,,,,,"3817.083333",,,,,"4762.708333",,"1003.533333",,"689.311111",,,,"58.600000","23.200000","0.444444","2.155556","42.400000","0.000000","678.925926","0.000000","254.814815","422.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2026.875000","1270.375000",,,,,"0.000000","0.000000",,,"8425.750000","7120.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.437500",,"23.437500",,"23.437500",,,,,,,"3851.333333",,,,,"4688.625000",,"898.688889",,"1114.688889",,,,"44.114286","19.466667","0.644444","5.266667","29.755556","0.000000","507.259259","0.000000","214.148148","291.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1667.250000","2101.500000",,,,,"0.000000","0.000000",,,"8415.000000","8224.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.730833",,"25.730833",,"25.730833",,,,,,,"2614.333333",,,,,"5147.291667",,"644.177778",,"882.088889",,,,"58.171429","15.888889","0.711111","3.533333","49.422222","0.000000","682.296296","0.000000","174.296296","506.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1298.375000","1634.375000",,,,,"0.000000","0.000000",,,"7154.750000","7115.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.152083",,"23.152083",,"23.152083",,,,,,,"3951.166667",,,,,"4631.208333",,"7.977778",,"1052.466667",,,,"2694.857143","1.311111","0.711111","4.355556","22.222222","0.000000","234.444444","0.000000","13.666667","219.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.250000","1993.500000",,,,,"0.000000","0.000000",,,"3985.250000","5608.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.417917",,"24.417917",,"24.417917",,,,,,,"3591.208333",,,,,"4884.708333",,"21.022222",,"495.022222",,,,"2548.657143","2.511111","0.488889","3.888889","23.444444","0.000000","261.370370","0.000000","26.592593","233.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","1015.875000",,,,,"0.000000","0.000000",,,"2540.000000","3241.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.929583",,"27.929583",,"27.929583",,,,,,,"2147.083333",,,,,"5586.708333",,"21.533333",,"868.666667",,,,"1876.285714","3.022222","0.533333","1.977778","47.066667","0.000000","515.185185","0.000000","32.481481","481.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"103.375000","1620.125000",,,,,"0.000000","0.000000",,,"4532.250000","5284.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.112500",,"24.112500",,"24.112500",,,,,,,"3121.958333",,,,,"4823.291667",,"18.111111",,"709.733333",,,,"1661.142857","2.066667","0.333333","3.177778","35.377778","0.000000","380.666667","0.000000","21.851852","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1426.000000",,,,,"0.000000","0.000000",,,"4878.250000","5970.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.082500",,"20.082500",,"20.082500",,,,,,,"4590.208333",,,,,"4017.583333",,"34.311111",,"1322.733333",,,,"363.428571","2.977778","0.266667","2.422222","32.333333","0.000000","358.444444","0.000000","30.111111","325.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.250000","2724.625000",,,,,"0.000000","0.000000",,,"9158.750000","11000.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.281667",,"21.281667",,"21.281667",,,,,,,"4209.166667",,,,,"4257.250000",,"151.733333",,"1575.933333",,,,"47.514286","3.622222","1.111111","3.377778","48.733333","0.000000","524.037037","0.000000","38.740741","483.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.142857","3256.750000",,,,,"0.000000","0.000000",,,"7761.250000","12288.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.682083",,"21.682083",,"21.682083",,,,,,,"4104.000000",,,,,"4337.208333",,"254.688889",,"1027.733333",,,,"42.685714","5.488889","0.911111","3.111111","41.422222","0.000000","467.592593","0.000000","60.518519","405.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.000000","2192.000000",,,,,"0.000000","0.000000",,,"5907.750000","10556.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.445417",,"17.445417",,"17.445417",,,,,,,"4937.250000",,,,,"3489.875000",,"929.755556",,"924.733333",,,,"43.942857","17.711111","0.822222","2.600000","31.600000","0.000000","515.814815","0.000000","195.185185","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1685.625000","2098.750000",,,,,"0.000000","0.000000",,,"8524.875000","11662.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.408750",,"20.408750",,"20.408750",,,,,,,"4209.791667",,,,,"4082.750000",,"1182.800000",,"520.133333",,,,"63.685714","27.777778","6.955556","1.377778","43.911111","0.000000","753.740741","0.000000","306.111111","446.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2276.000000","1301.625000",,,,,"0.000000","0.000000",,,"9281.250000","11322.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.401250",,"18.401250",,"18.401250",,,,,,,"4867.000000",,,,,"3681.041667",,"956.844444",,"901.733333",,,,"44.428571","19.400000","1.000000","6.666667","30.333333","0.000000","517.407407","0.000000","212.814815","303.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1817.500000","1862.375000",,,,,"0.000000","0.000000",,,"8540.375000","9110.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.967500",,"21.967500",,"21.967500",,,,,,,"4266.583333",,,,,"4394.375000",,"82.644444",,"495.577778",,,,"39.457143","4.644444","0.377778","2.933333","38.800000","0.000000","440.000000","0.000000","51.370370","387.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"270.875000","927.125000",,,,,"0.000000","0.000000",,,"3152.625000","3856.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.862917",,"21.862917",,"21.862917",,,,,,,"4124.875000",,,,,"4373.541667",,"41.488889",,"458.800000",,,,"42.200000","2.222222","0.244444","1.377778","44.266667","0.000000","471.703704","0.000000","24.888889","443.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"88.875000","859.875000",,,,,"0.000000","0.000000",,,"2630.250000","3163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.792500",,"23.792500",,"23.792500",,,,,,,"3762.458333",,,,,"4759.291667",,"697.288889",,"374.155556",,,,"41.314286","12.177778","0.222222","1.244444","33.800000","0.000000","479.962963","0.000000","131.185185","345.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1136.500000","27.571429",,,,,"0.000000","0.000000",,,"4971.625000","4275.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.510417",,"22.510417",,"22.510417",,,,,,,"4407.416667",,,,,"4503.166667",,"1482.488889",,"425.577778",,,,"58.971429","30.177778","0.622222","1.600000","36.844444","0.000000","716.111111","0.000000","332.148148","382.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2987.625000","801.375000",,,,,"0.000000","0.000000",,,"10085.375000","7308.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.292083",,"32.292083",,"32.292083",,,,,,,"1454.958333",,,,,"6459.333333",,"1168.111111",,"1076.311111",,,,"56.114286","23.911111","0.222222","4.200000","39.400000","0.000000","668.740741","0.000000","263.259259","404.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2160.125000","2046.750000",,,,,"0.000000","0.000000",,,"9864.500000","8941.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.538333",,"24.538333",,"24.538333",,,,,,,"2955.875000",,,,,"4908.625000",,"637.911111",,"737.133333",,,,"1997.085714","14.244444","0.911111","3.111111","32.355556","0.000000","490.259259","0.000000","156.814815","331.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1336.375000","2480.375000",,,,,"0.000000","0.000000",,,"12365.875000","21627.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.722083",,"23.722083",,"23.722083",,,,,,,"3415.291667",,,,,"4745.166667",,"3.488889",,"300.644444",,,,"2256.542857","0.888889","0.200000","3.355556","21.711111","0.000000","238.074074","0.000000","9.111111","227.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","1136.375000",,,,,"0.000000","0.000000",,,"5967.875000","10321.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.935833",,"26.935833",,"26.935833",,,,,,,"3320.791667",,,,,"5388.166667",,"5.200000",,"453.044444",,,,"1802.257143","1.022222","0.244444","1.622222","32.755556","0.000000","355.851852","0.000000","10.148148","344.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.125000","813.375000",,,,,"0.000000","0.000000",,,"2965.875000","3033.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.629583",,"25.629583",,"25.629583",,,,,,,"3299.666667",,,,,"5127.083333",,"9.888889",,"370.622222",,,,"1583.600000","1.355556","0.444444","1.022222","32.711111","0.000000","359.407407","0.000000","13.925926","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","706.125000",,,,,"0.000000","0.000000",,,"2131.625000","2673.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.751250",,"26.751250",,"26.751250",,,,,,,"2614.166667",,,,,"5351.125000",,"4.155556",,"388.822222",,,,"1465.571429","0.844444","0.288889","3.111111","31.644444","0.000000","345.333333","0.000000","8.851852","335.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.375000","804.625000",,,,,"0.000000","0.000000",,,"2357.000000","2940.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.454583",,"22.454583",,"22.454583",,,,,,,"3617.291667",,,,,"4491.958333",,"9.977778",,"308.288889",,,,"59.342857","1.911111","0.444444","1.555556","26.200000","0.000000","293.851852","0.000000","17.555556","273.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","551.375000",,,,,"0.000000","0.000000",,,"1697.500000","2222.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.379583",,"21.379583",,"21.379583",,,,,,,"4372.916667",,,,,"4276.791667",,"972.311111",,"356.955556",,,,"42.457143","18.755556","0.222222","1.666667","29.533333","0.000000","520.000000","0.000000","205.703704","312.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1635.250000","720.875000",,,,,"0.000000","0.000000",,,"6365.000000","5111.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.645417",,"17.645417",,"17.645417",,,,,,,"5236.208333",,,,,"3529.750000",,"1357.600000",,"286.355556",,,,"48.714286","28.511111","0.466667","0.933333","27.044444","0.000000","602.037037","0.000000","313.296296","287.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2751.500000","507.625000",,,,,"0.000000","0.000000",,,"8790.125000","6191.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.974167",,"15.974167",,"15.974167",,,,,,,"5382.916667",,,,,"3195.750000",,"1210.733333",,"989.000000",,,,"52.285714","22.844444","0.288889","3.933333","35.866667","0.000000","613.037037","0.000000","251.370370","360.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.875000","1933.500000",,,,,"0.000000","0.000000",,,"9652.000000","8786.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.382083",,"16.382083",,"16.382083",,,,,,,"5057.666667",,,,,"3277.291667",,"527.066667",,"662.311111",,,,"50.885714","22.377778","0.288889","3.688889","35.088889","0.000000","609.777778","0.000000","247.777778","360.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1096.750000","1172.250000",,,,,"0.000000","0.000000",,,"5754.000000","5650.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.439167",,"14.439167",,"14.439167",,,,,,,"5829.458333",,,,,"2888.916667",,"1724.355556",,"1871.288889",,,,"67.457143","40.777778","0.400000","4.866667","35.244444","0.000000","795.148148","0.000000","448.555556","345.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3289.500000","3484.125000",,,,,"0.000000","0.000000",,,"15080.375000","14269.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.093750",,"16.093750",,"16.093750",,,,,,,"4969.333333",,,,,"3219.666667",,"1567.200000",,"2178.755556",,,,"73.171429","39.355556","0.511111","6.577778","42.311111","0.000000","847.259259","0.000000","434.851852","408.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.142857","4189.750000",,,,,"0.000000","0.000000",,,"15556.875000","15637.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.780000",,"14.780000",,"14.780000",,,,,,,"5772.666667",,,,,"2956.708333",,"114.488889",,"275.200000",,,,"30.285714","6.488889","1.400000","1.822222","27.644444","0.000000","362.777778","0.000000","70.777778","290.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"302.625000","729.250000",,,,,"0.000000","0.000000",,,"4848.000000","5096.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.180417",,"19.180417",,"19.180417",,,,,,,"4019.833333",,,,,"3837.166667",,"16.777778",,"518.066667",,,,"45.600000","2.111111","0.266667","1.422222","49.044444","0.000000","540.333333","0.000000","20.777778","516.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.750000","1187.875000",,,,,"0.000000","0.000000",,,"6836.375000","7633.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.755000",,"18.755000",,"18.755000",,,,,,,"4642.625000",,,,,"3751.958333",,"9.977778",,"1090.666667",,,,"40.857143","1.177778","0.622222","6.844444","44.200000","0.000000","468.592593","0.000000","12.629630","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"287.500000","2144.625000",,,,,"0.000000","0.000000",,,"8776.250000","7374.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.521250",,"19.521250",,"19.521250",,,,,,,"4656.666667",,,,,"3905.416667",,"5.933333",,"369.044444",,,,"2215.828571","1.000000","0.288889","3.511111","33.466667","0.000000","367.592593","0.000000","10.296296","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","653.750000",,,,,"0.000000","0.000000",,,"2033.375000","2523.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.953333",,"20.953333",,"20.953333",,,,,,,"4080.000000",,,,,"4191.500000",,"5.244444",,"234.822222",,,,"2557.285714","0.977778","0.777778","3.822222","21.400000","0.000000","239.222222","0.000000","9.370370","228.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","490.500000",,,,,"0.000000","0.000000",,,"1515.250000","1820.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.012917",,"22.012917",,"22.012917",,,,,,,"3810.583333",,,,,"4403.375000",,"7.355556",,"544.022222",,,,"1976.657143","1.022222","0.755556","1.822222","43.800000","0.000000","476.592593","0.000000","10.222222","464.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1028.375000",,,,,"0.000000","0.000000",,,"3528.625000","3749.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.217500",,"20.217500",,"20.217500",,,,,,,"4423.333333",,,,,"4044.416667",,"5.333333",,"357.711111",,,,"1749.857143","0.977778","0.311111","1.133333","35.933333","0.000000","388.259259","0.000000","10.185185","376.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","637.375000",,,,,"0.000000","0.000000",,,"2064.000000","2502.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.260417",,"17.260417",,"17.260417",,,,,,,"5597.166667",,,,,"3452.958333",,"3.177778",,"301.333333",,,,"639.971429","0.933333","0.133333","0.866667","31.088889","0.000000","338.888889","0.000000","8.740741","328.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","22.571429",,,,,"0.000000","0.000000",,,"1906.625000","2458.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.290417",,"18.290417",,"18.290417",,,,,,,"5549.000000",,,,,"3659.250000",,"3.888889",,"379.377778",,,,"36.028571","0.955556","0.088889","7.022222","39.555556","0.000000","425.370370","0.000000","9.148148","414.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","669.625000",,,,,"0.000000","0.000000",,,"2161.250000","2645.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.166250",,"19.166250",,"19.166250",,,,,,,"5151.791667",,,,,"3834.000000",,"9.888889",,"458.266667",,,,"44.428571","1.666667","0.355556","9.600000","47.800000","0.000000","514.296296","0.000000","14.962963","496.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","851.875000",,,,,"0.000000","0.000000",,,"2580.000000","3283.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.640000",,"16.640000",,"16.640000",,,,,,,"5680.958333",,,,,"3329.291667",,"3.244444",,"311.733333",,,,"30.085714","0.844444","0.177778","6.111111","32.533333","0.000000","345.703704","0.000000","8.222222","336.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","624.000000",,,,,"0.000000","0.000000",,,"1951.000000","2508.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.127500",,"18.127500",,"18.127500",,,,,,,"5104.958333",,,,,"3626.458333",,"3.466667",,"452.044444",,,,"45.028571","0.844444","0.088889","2.577778","49.466667","0.000000","523.148148","0.000000","8.444444","513.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","896.625000",,,,,"0.000000","0.000000",,,"3703.875000","4271.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.001667",,"16.001667",,"16.001667",,,,,,,"5675.250000",,,,,"3201.166667",,"4.022222",,"409.888889",,,,"27.142857","1.044444","0.133333","8.688889","29.133333","0.000000","313.000000","0.000000","9.777778","301.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","954.875000",,,,,"0.000000","0.000000",,,"5902.750000","6507.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.890833",,"16.890833",,"16.890833",,,,,,,"5484.541667",,,,,"3379.166667",,"3.911111",,"376.466667",,,,"36.257143","0.777778","7.444444","2.688889","39.755556","0.000000","424.296296","0.000000","8.111111","414.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","796.000000",,,,,"0.000000","0.000000",,,"3694.250000","4214.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.994583",,"16.994583",,"16.994583",,,,,,,"5031.416667",,,,,"3399.791667",,"27.622222",,"409.288889",,,,"42.971429","2.800000","0.200000","1.911111","44.911111","0.000000","502.555556","0.000000","31.111111","467.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.875000","869.000000",,,,,"0.000000","0.000000",,,"3538.250000","4143.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.867083",,"16.867083",,"16.867083",,,,,,,"5025.000000",,,,,"3374.333333",,"6.311111",,"379.844444",,,,"33.371429","1.022222","0.244444","2.400000","36.488889","0.000000","396.333333","0.000000","10.259259","384.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","978.125000",,,,,"0.000000","0.000000",,,"6206.000000","7067.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.347500",,"16.347500",,"16.347500",,,,,,,"5591.750000",,,,,"3270.458333",,"11.444444",,"892.644444",,,,"38.171429","2.755556","0.466667","3.666667","38.866667","0.000000","428.518519","0.000000","24.814815","397.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.125000","1788.250000",,,,,"0.000000","0.000000",,,"6107.750000","7474.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.967083",,"26.967083",,"26.967083",,,,,,,"2652.458333",,,,,"5394.250000",,"6.622222",,"704.444444",,,,"29.885714","1.133333","0.488889","4.311111","32.133333","0.000000","346.111111","0.000000","11.111111","333.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.125000","1332.125000",,,,,"0.000000","0.000000",,,"3085.000000","4097.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.894583",,"23.894583",,"23.894583",,,,,,,"2993.291667",,,,,"4779.791667",,"5.511111",,"656.777778",,,,"2058.657143","0.955556","0.333333","2.622222","33.977778","0.000000","361.000000","0.000000","9.703704","349.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","1300.500000",,,,,"0.000000","0.000000",,,"3112.250000","4170.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.480833",,"22.480833",,"22.480833",,,,,,,"3264.125000",,,,,"4497.041667",,"3.111111",,"351.533333",,,,"2416.285714","0.844444","0.088889","1.044444","31.511111","0.000000","331.851852","0.000000","8.370370","322.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","600.125000",,,,,"0.000000","0.000000",,,"1822.250000","2352.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.159583",,"22.159583",,"22.159583",,,,,,,"3800.250000",,,,,"4432.708333",,"5.066667",,"412.044444",,,,"1905.314286","1.044444","0.577778","1.066667","28.177778","0.000000","303.962963","0.000000","10.444444","292.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","779.750000",,,,,"0.000000","0.000000",,,"2819.500000","2903.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.746667",,"25.746667",,"25.746667",,,,,,,"3184.875000",,,,,"5150.166667",,"3.377778",,"443.311111",,,,"1794.971429","0.933333","0.555556","1.222222","43.888889","0.000000","459.407407","0.000000","8.777778","449.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","876.500000",,,,,"0.000000","0.000000",,,"2633.625000","3233.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.638333",,"21.638333",,"21.638333",,,,,,,"3609.583333",,,,,"4328.708333",,"4.244444",,"466.200000",,,,"980.828571","1.044444","0.622222","0.933333","44.688889","0.000000","468.555556","0.000000","10.037037","457.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","840.750000",,,,,"0.000000","0.000000",,,"2431.250000","2968.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.048333",,"19.048333",,"19.048333",,,,,,,"4727.583333",,,,,"3810.583333",,"4.044444",,"438.711111",,,,"36.514286","0.866667","0.377778","1.200000","39.644444","0.000000","417.481481","0.000000","8.592593","407.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","884.125000",,,,,"0.000000","0.000000",,,"2901.625000","3521.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.721250",,"18.721250",,"18.721250",,,,,,,"4237.916667",,,,,"3745.208333",,"8.377778",,"410.244444",,,,"34.142857","1.555556","0.244444","1.000000","36.111111","0.000000","384.629630","0.000000","14.074074","367.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","897.625000",,,,,"0.000000","0.000000",,,"5899.375000","6469.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.900000",,"17.900000",,"17.900000",,,,,,,"5318.458333",,,,,"3580.958333",,"5.422222",,"285.444444",,,,"24.600000","0.866667","0.311111","3.133333","26.466667","0.000000","284.407407","0.000000","9.444444","273.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","676.500000",,,,,"0.000000","0.000000",,,"3943.375000","4411.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.029167",,"19.029167",,"19.029167",,,,,,,"4767.000000",,,,,"3806.958333",,"3.600000",,"359.444444",,,,"35.914286","0.933333","0.333333","7.622222","38.844444","0.000000","404.666667","0.000000","9.407407","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","716.500000",,,,,"0.000000","0.000000",,,"2229.000000","2659.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.484167",,"21.484167",,"21.484167",,,,,,,"4425.125000",,,,,"4297.625000",,"4.911111",,"400.600000",,,,"39.285714","1.044444","0.266667","1.288889","42.533333","0.000000","444.777778","0.000000","10.000000","433.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","704.875000",,,,,"0.000000","0.000000",,,"2210.000000","2776.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.976250",,"20.976250",,"20.976250",,,,,,,"4695.791667",,,,,"4196.041667",,"4.222222",,"407.800000",,,,"39.171429","0.955556","0.088889","1.422222","42.800000","0.000000","454.518519","0.000000","9.851852","443.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","803.000000",,,,,"0.000000","0.000000",,,"2422.375000","3400.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.095833",,"18.095833",,"18.095833",,,,,,,"5400.208333",,,,,"3620.250000",,"22.000000",,"265.066667",,,,"25.542857","1.822222","0.466667","2.066667","26.311111","0.000000","298.555556","0.000000","21.037037","273.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","514.375000",,,,,"0.000000","0.000000",,,"1679.125000","2027.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.520000",,"16.520000",,"16.520000",,,,,,,"4888.833333",,,,,"3305.041667",,"13.711111",,"256.822222",,,,"25.371429","1.533333","0.311111","0.800000","26.666667","0.000000","295.111111","0.000000","16.074074","277.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"58.125000","516.000000",,,,,"0.000000","0.000000",,,"1783.750000","2113.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.681250",,"23.681250",,"23.681250",,,,,,,"3077.416667",,,,,"4736.958333",,"6.288889",,"584.177778",,,,"44.371429","1.044444","0.355556","1.244444","48.466667","0.000000","510.296296","0.000000","10.555556","498.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.250000","1048.500000",,,,,"0.000000","0.000000",,,"2854.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.489583",,"17.489583",,"17.489583",,,,,,,"5439.500000",,,,,"3499.291667",,"10.533333",,"568.933333",,,,"26.514286","1.600000","0.311111","2.266667","27.822222","0.000000","305.407407","0.000000","14.518519","288.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1106.375000",,,,,"0.000000","0.000000",,,"2615.000000","3403.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.895417",,"20.895417",,"20.895417",,,,,,,"4113.708333",,,,,"4179.791667",,"5.377778",,"346.377778",,,,"2389.600000","0.888889","0.133333","3.466667","29.533333","0.000000","325.074074","0.000000","11.444444","312.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","610.375000",,,,,"0.000000","0.000000",,,"1899.625000","2370.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.029583",,"19.029583",,"19.029583",,,,,,,"4612.375000",,,,,"3807.041667",,"3.111111",,"339.755556",,,,"2454.742857","0.844444","0.311111","2.155556","33.933333","0.000000","368.740741","0.000000","8.185185","359.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","654.250000",,,,,"0.000000","0.000000",,,"2012.250000","2376.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.242917",,"21.242917",,"21.242917",,,,,,,"4067.625000",,,,,"4249.458333",,"6.177778",,"486.333333",,,,"1955.485714","1.088889","0.355556","1.755556","45.911111","0.000000","498.666667","0.000000","11.037037","486.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","1000.250000",,,,,"0.000000","0.000000",,,"4929.500000","5223.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.339583",,"20.339583",,"20.339583",,,,,,,"4154.458333",,,,,"4069.041667",,"46.688889",,"520.844444",,,,"1620.628571","2.933333","0.222222","1.088889","43.244444","0.000000","490.962963","0.000000","31.555556","457.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"133.625000","1203.125000",,,,,"0.000000","0.000000",,,"7230.250000","7737.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.332917",,"19.332917",,"19.332917",,,,,,,"4467.208333",,,,,"3867.666667",,"4.266667",,"391.688889",,,,"743.857143","0.955556","1.288889","1.133333","39.533333","0.000000","429.592593","0.000000","9.296296","418.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","745.375000",,,,,"0.000000","0.000000",,,"2823.875000","3396.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.508333",,"17.508333",,"17.508333",,,,,,,"4986.541667",,,,,"3502.750000",,"3.422222",,"337.711111",,,,"29.885714","0.755556","0.333333","0.733333","32.711111","0.000000","351.259259","0.000000","8.074074","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","681.750000",,,,,"0.000000","0.000000",,,"1968.500000","2470.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.907083",,"18.907083",,"18.907083",,,,,,,"4721.833333",,,,,"3782.250000",,"2.733333",,"380.422222",,,,"35.771429","0.933333","0.733333","0.933333","39.311111","0.000000","424.074074","0.000000","9.074074","413.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"350.125000","697.250000",,,,,"0.000000","0.000000",,,"6989.625000","2715.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.355417",,"19.355417",,"19.355417",,,,,,,"4653.541667",,,,,"3872.125000",,"13.777778",,"469.200000",,,,"43.400000","1.577778","1.377778","0.800000","46.800000","0.000000","504.259259","0.000000","14.629630","486.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"694.750000","9.285714",,,,,"0.000000","0.000000",,,"12139.875000","3149.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.069167",,"17.069167",,"17.069167",,,,,,,"5198.500000",,,,,"3414.666667",,"3.600000",,"362.666667",,,,"30.771429","0.955556","0.266667","4.000000","33.644444","0.000000","367.814815","0.000000","9.481481","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"347.500000","701.875000",,,,,"0.000000","0.000000",,,"6761.750000","2765.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.901667",,"18.901667",,"18.901667",,,,,,,"4823.291667",,,,,"3781.250000",,"3.466667",,"410.711111",,,,"34.285714","0.933333","0.955556","1.733333","37.577778","0.000000","405.518519","0.000000","8.888889","395.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","784.625000",,,,,"0.000000","0.000000",,,"2300.500000","2782.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.889583",,"16.889583",,"16.889583",,,,,,,"5516.916667",,,,,"3379.000000",,"5.577778",,"539.577778",,,,"36.485714","0.955556","0.622222","8.933333","40.066667","0.000000","433.740741","0.000000","9.555556","422.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","996.375000",,,,,"0.000000","0.000000",,,"2664.750000","3528.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.927083",,"16.927083",,"16.927083",,,,,,,"5165.500000",,,,,"3386.416667",,"3.911111",,"354.755556",,,,"31.942857","0.866667","0.155556","3.977778","35.266667","0.000000","389.777778","0.000000","8.740741","379.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","710.000000",,,,,"0.000000","0.000000",,,"2202.625000","2630.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.045833",,"16.045833",,"16.045833",,,,,,,"5484.125000",,,,,"3210.041667",,"23.311111",,"292.377778",,,,"28.571429","2.244444","0.377778","3.800000","29.422222","0.000000","337.592593","0.000000","24.333333","308.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","507.000000",,,,,"0.000000","0.000000",,,"1902.125000","2261.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.724167",,"22.724167",,"22.724167",,,,,,,"3898.916667",,,,,"4545.625000",,"4.555556",,"471.066667",,,,"40.714286","0.911111","1.644444","4.733333","44.377778","0.000000","469.333333","0.000000","9.555556","458.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","928.375000",,,,,"0.000000","0.000000",,,"2699.750000","3358.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.647500",,"25.647500",,"25.647500",,,,,,,"2344.416667",,,,,"5130.250000",,"3.755556",,"531.911111",,,,"39.600000","0.955556","1.666667","1.133333","43.577778","0.000000","470.000000","0.000000","9.555556","458.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.250000","975.750000",,,,,"0.000000","0.000000",,,"2741.000000","3469.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.855417",,"20.855417",,"20.855417",,,,,,,"4416.916667",,,,,"4172.166667",,"17.688889",,"457.200000",,,,"2304.742857","2.066667","0.244444","2.511111","15.711111","0.000000","182.333333","0.000000","21.222222","159.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"186.375000","1120.375000",,,,,"0.000000","0.000000",,,"7955.250000","7187.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.089167",,"22.089167",,"22.089167",,,,,,,"3299.625000",,,,,"4418.833333",,"9.200000",,"418.466667",,,,"2290.428571","1.577778","0.133333","1.000000","38.888889","0.000000","425.333333","0.000000","14.629630","407.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","910.125000",,,,,"0.000000","0.000000",,,"4879.000000","5460.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.548333",,"22.548333",,"22.548333",,,,,,,"3683.750000",,,,,"4510.500000",,"3.688889",,"489.133333",,,,"2029.371429","0.844444","0.266667","1.022222","35.955556","0.000000","391.851852","0.000000","8.666667","381.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.125000","914.750000",,,,,"0.000000","0.000000",,,"3228.750000","3400.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.208333",,"22.208333",,"22.208333",,,,,,,"3911.958333",,,,,"4442.541667",,"70.066667",,"366.866667",,,,"1816.542857","2.066667","0.866667","0.755556","37.066667","0.000000","415.555556","0.000000","21.592593","392.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","706.750000",,,,,"0.000000","0.000000",,,"2609.750000","3049.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.555417",,"19.555417",,"19.555417",,,,,,,"4517.833333",,,,,"3912.333333",,"107.000000",,"457.866667",,,,"714.342857","8.977778","0.711111","0.866667","44.866667","0.000000","568.407407","0.000000","98.000000","468.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.500000","857.375000",,,,,"0.000000","0.000000",,,"3131.625000","3656.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.178750",,"17.178750",,"17.178750",,,,,,,"5252.416667",,,,,"3436.833333",,"3.933333",,"414.755556",,,,"38.942857","0.955556","1.022222","1.177778","42.400000","0.000000","448.370370","0.000000","9.555556","437.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","778.125000",,,,,"0.000000","0.000000",,,"2386.375000","2984.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.921667",,"15.921667",,"15.921667",,,,,,,"5532.750000",,,,,"3185.000000",,"3.622222",,"335.955556",,,,"31.514286","0.933333","0.133333","1.088889","34.244444","0.000000","368.222222","0.000000","9.333333","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","642.125000",,,,,"0.000000","0.000000",,,"1990.250000","2511.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.666667",,"15.666667",,"15.666667",,,,,,,"5535.166667",,,,,"3134.166667",,"2.688889",,"279.644444",,,,"27.028571","1.022222","0.088889","0.555556","29.400000","0.000000","321.629630","0.000000","9.296296","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","545.125000",,,,,"0.000000","0.000000",,,"1776.375000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.507917",,"15.507917",,"15.507917",,,,,,,"5821.500000",,,,,"3102.666667",,"3.266667",,"251.311111",,,,"25.257143","0.755556","0.088889","3.600000","27.288889","0.000000","293.962963","0.000000","7.777778","284.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","486.125000",,,,,"0.000000","0.000000",,,"1646.125000","2064.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.332500",,"17.332500",,"17.332500",,,,,,,"5562.416667",,,,,"3467.375000",,"10.600000",,"320.911111",,,,"30.685714","1.555556","0.222222","1.000000","32.466667","0.000000","353.148148","0.000000","13.962963","336.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","585.375000",,,,,"0.000000","0.000000",,,"1896.250000","2292.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.153750",,"17.153750",,"17.153750",,,,,,,"5376.625000",,,,,"3431.750000",,"3.777778",,"371.244444",,,,"34.542857","0.977778","0.266667","1.600000","37.644444","0.000000","404.555556","0.000000","10.074074","392.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","702.125000",,,,,"0.000000","0.000000",,,"2215.500000","2736.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.369583",,"17.369583",,"17.369583",,,,,,,"5201.416667",,,,,"3474.875000",,"4.466667",,"465.800000",,,,"36.257143","1.044444","0.333333","0.888889","39.711111","0.000000","427.481481","0.000000","10.185185","415.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1073.000000",,,,,"0.000000","0.000000",,,"6210.000000","6879.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.876250",,"16.876250",,"16.876250",,,,,,,"5399.541667",,,,,"3376.208333",,"22.444444",,"363.066667",,,,"34.714286","1.911111","0.600000","0.533333","36.777778","0.000000","415.703704","0.000000","21.703704","390.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.250000","836.875000",,,,,"0.000000","0.000000",,,"5151.500000","5560.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.239167",,"17.239167",,"17.239167",,,,,,,"5334.416667",,,,,"3448.791667",,"3.222222",,"437.244444",,,,"39.114286","0.844444","0.466667","1.866667","43.244444","0.000000","464.222222","0.000000","8.407407","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","821.750000",,,,,"0.000000","0.000000",,,"2449.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.825417",,"21.825417",,"21.825417",,,,,,,"3945.958333",,,,,"4366.041667",,"4.244444",,"528.711111",,,,"40.028571","0.955556","0.133333","1.222222","44.133333","0.000000","473.888889","0.000000","9.111111","463.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","994.625000",,,,,"0.000000","0.000000",,,"2731.875000","3423.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.965417",,"18.965417",,"18.965417",,,,,,,"5115.083333",,,,,"3793.958333",,"4.444444",,"226.977778",,,,"2657.028571","0.911111","0.244444","3.000000","21.155556","0.000000","234.962963","0.000000","11.666667","221.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","435.000000",,,,,"0.000000","0.000000",,,"1420.125000","1769.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.496250",,"19.496250",,"19.496250",,,,,,,"4834.833333",,,,,"3900.208333",,"37.488889",,"584.266667",,,,"2533.228571","3.844444","0.844444","1.266667","24.288889","0.000000","292.814815","0.000000","42.629630","248.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1085.750000","1117.875000",,,,,"0.000000","0.000000",,,"16312.750000","4906.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.350833",,"23.350833",,"23.350833",,,,,,,"3144.541667",,,,,"4671.000000",,"10.911111",,"1665.377778",,,,"1814.400000","1.533333","0.733333","2.533333","53.355556","0.000000","558.703704","0.000000","14.888889","540.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1843.875000","3325.750000",,,,,"0.000000","0.000000",,,"33192.875000","13694.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.192083",,"22.192083",,"22.192083",,,,,,,"3385.708333",,,,,"4439.375000",,"13.177778",,"1502.222222",,,,"1583.057143","1.533333","1.044444","2.555556","44.333333","0.000000","469.444444","0.000000","16.333333","451.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1206.000000","3113.250000",,,,,"0.000000","0.000000",,,"24731.750000","13626.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.230833",,"21.230833",,"21.230833",,,,,,,"4000.000000",,,,,"4247.125000",,"13.422222",,"2097.800000",,,,"595.542857","1.466667","0.977778","1.711111","63.977778","0.000000","669.333333","0.000000","15.592593","651.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.625000","327.428571",,,,,"0.000000","0.000000",,,"18969.000000","15797.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.767500",,"16.767500",,"16.767500",,,,,,,"5232.125000",,,,,"3354.750000",,"49.422222",,"1525.511111",,,,"40.257143","3.333333","1.000000","1.866667","41.377778","0.000000","458.555556","0.000000","35.703704","421.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"816.125000","3155.250000",,,,,"0.000000","0.000000",,,"18560.250000","12837.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.559583",,"17.559583",,"17.559583",,,,,,,"4945.166667",,,,,"3513.000000",,"6.400000",,"398.177778",,,,"30.828571","1.288889","0.666667","1.044444","33.044444","0.000000","355.296296","0.000000","13.370370","340.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1012.125000",,,,,"0.000000","0.000000",,,"5606.500000","6623.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.611667",,"19.611667",,"19.611667",,,,,,,"4356.458333",,,,,"3923.291667",,"10.666667",,"454.755556",,,,"43.142857","1.400000","0.622222","0.933333","46.688889","0.000000","496.148148","0.000000","14.518519","480.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.750000","1103.250000",,,,,"0.000000","0.000000",,,"5888.750000","6988.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.563333",,"18.563333",,"18.563333",,,,,,,"4752.666667",,,,,"3713.791667",,"35.044444",,"433.244444",,,,"37.800000","2.111111","0.688889","1.200000","39.288889","0.000000","413.148148","0.000000","22.037037","389.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.250000","1059.500000",,,,,"0.000000","0.000000",,,"5820.000000","6828.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.468333",,"17.468333",,"17.468333",,,,,,,"5227.083333",,,,,"3494.583333",,"21.733333",,"272.200000",,,,"24.657143","2.200000","0.488889","1.066667","24.755556","0.000000","274.851852","0.000000","21.259259","250.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","760.375000",,,,,"0.000000","0.000000",,,"5123.000000","5947.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.432500",,"16.432500",,"16.432500",,,,,,,"5336.291667",,,,,"3287.291667",,"6.933333",,"297.555556",,,,"25.171429","1.133333","0.288889","0.977778","26.844444","0.000000","289.518519","0.000000","11.666667","276.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","844.875000",,,,,"0.000000","0.000000",,,"5391.000000","6423.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.214167",,"18.214167",,"18.214167",,,,,,,"4625.041667",,,,,"3643.708333",,"3.733333",,"418.977778",,,,"36.971429","0.911111","0.755556","1.622222","40.000000","0.000000","415.888889","0.000000","8.962963","405.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1069.625000",,,,,"0.000000","0.000000",,,"5982.625000","7132.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.092500",,"20.092500",,"20.092500",,,,,,,"4672.916667",,,,,"4019.333333",,"24.533333",,"373.000000",,,,"37.314286","2.244444","0.333333","1.155556","38.733333","0.000000","421.629630","0.000000","24.407407","393.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.625000","977.000000",,,,,"0.000000","0.000000",,,"5869.750000","6938.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.136667",,"19.136667",,"19.136667",,,,,,,"4772.791667",,,,,"3828.083333",,"9.088889",,"331.577778",,,,"30.314286","1.288889","1.000000","2.644444","32.244444","0.000000","343.111111","0.000000","13.296296","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","877.750000",,,,,"0.000000","0.000000",,,"5381.125000","6228.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.710417",,"26.710417",,"26.710417",,,,,,,"2685.250000",,,,,"5343.375000",,"6.066667",,"757.888889",,,,"31.114286","0.911111","0.311111","3.200000","33.266667","0.000000","345.518519","0.000000","9.888889","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","1682.000000",,,,,"0.000000","0.000000",,,"6559.375000","8033.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.454583",,"26.454583",,"26.454583",,,,,,,"2795.541667",,,,,"5292.000000",,"3.755556",,"696.866667",,,,"1970.914286","0.844444","0.555556","3.911111","41.444444","0.000000","421.222222","0.000000","8.666667","411.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1514.750000",,,,,"0.000000","0.000000",,,"6970.250000","7983.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.613750",,"28.613750",,"28.613750",,,,,,,"2077.041667",,,,,"5723.750000",,"7.933333",,"432.022222",,,,"2310.028571","1.311111","0.377778","3.733333","39.222222","0.000000","412.333333","0.000000","17.000000","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1010.250000",,,,,"0.000000","0.000000",,,"5913.750000","6604.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.148750",,"26.148750",,"26.148750",,,,,,,"2855.958333",,,,,"5230.625000",,"9.888889",,"1033.800000",,,,"1823.200000","1.511111","0.644444","3.400000","38.933333","0.000000","406.259259","0.000000","14.888889","388.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1360.625000","2202.250000",,,,,"0.000000","0.000000",,,"25491.625000","10754.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.542500",,"26.542500",,"26.542500",,,,,,,"2980.583333",,,,,"5309.708333",,"6.266667",,"1967.400000",,,,"1694.885714","1.177778","8.711111","9.844444","45.777778","0.000000","470.555556","0.000000","12.518519","452.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"913.875000","4017.500000",,,,,"0.000000","0.000000",,,"22199.250000","14736.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.247500",,"22.247500",,"22.247500",,,,,,,"3643.000000",,,,,"4450.500000",,"16.177778",,"1875.044444",,,,"1410.428571","1.622222","6.777778","33.177778","72.866667","0.000000","797.407407","0.000000","17.814815","772.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.750000","3848.625000",,,,,"0.000000","0.000000",,,"10782.000000","13969.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.577500",,"19.577500",,"19.577500",,,,,,,"4489.583333",,,,,"3916.541667",,"14.311111",,"818.177778",,,,"48.942857","1.533333","2.822222","11.666667","53.800000","0.000000","589.740741","0.000000","16.000000","571.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"116.125000","1843.875000",,,,,"0.000000","0.000000",,,"8022.375000","9154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.922500",,"19.922500",,"19.922500",,,,,,,"4614.791667",,,,,"3985.625000",,"6.977778",,"239.977778",,,,"14.057143","1.200000","1.200000","8.422222","14.444444","0.000000","171.481481","0.000000","11.962963","156.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.750000","742.000000",,,,,"0.000000","0.000000",,,"4685.125000","5707.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.128333",,"20.128333",,"20.128333",,,,,,,"4614.708333",,,,,"4026.750000",,"3.866667",,"253.533333",,,,"7.914286","0.977778","1.933333","2.733333","7.644444","0.000000","92.962963","0.000000","9.888889","81.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","743.750000",,,,,"0.000000","0.000000",,,"4617.750000","5487.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.524167",,"20.524167",,"20.524167",,,,,,,"4101.541667",,,,,"4105.916667",,"4.644444",,"193.555556",,,,"8.657143","1.044444","0.644444","2.377778","8.355556","0.000000","100.740741","0.000000","10.814815","88.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","161.714286",,,,,"0.000000","0.000000",,,"2633.125000","3333.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.025833",,"20.025833",,"20.025833",,,,,,,"4754.666667",,,,,"4006.333333",,"6.200000",,"314.088889",,,,"22.857143","1.111111","0.488889","2.288889","23.955556","0.000000","256.481481","0.000000","11.481481","243.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","661.000000",,,,,"0.000000","0.000000",,,"2745.500000","3257.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.644583",,"24.644583",,"24.644583",,,,,,,"3385.083333",,,,,"4929.791667",,"9.000000",,"455.888889",,,,"32.742857","1.866667","1.711111","4.066667","33.533333","0.000000","353.333333","0.000000","16.888889","332.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1079.000000",,,,,"0.000000","0.000000",,,"5806.500000","6764.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.417500",,"30.417500",,"30.417500",,,,,,,"1968.125000",,,,,"6084.416667",,"20.977778",,"620.866667",,,,"39.228571","1.377778","0.755556","3.777778","42.177778","0.000000","446.481481","0.000000","13.592593","431.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1410.375000",,,,,"0.000000","0.000000",,,"6647.000000","7766.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.099583",,"31.099583",,"31.099583",,,,,,,"1622.750000",,,,,"6220.833333",,"22.844444",,"641.511111",,,,"21.457143","1.933333","0.466667","4.711111","21.844444","0.000000","258.333333","0.000000","21.962963","232.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.750000","1472.000000",,,,,"0.000000","0.000000",,,"7079.125000","8198.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.846667",,"33.846667",,"33.846667",,,,,,,"1231.583333",,,,,"6770.291667",,"6.911111",,"910.488889",,,,"55.028571","1.177778","0.977778","2.266667","60.666667","0.000000","644.222222","0.000000","11.629630","631.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.875000","1786.000000",,,,,"0.000000","0.000000",,,"5228.000000","6764.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.419167",,"31.419167",,"31.419167",,,,,,,"1479.583333",,,,,"6285.000000",,"3.311111",,"692.777778",,,,"48.771429","1.022222","0.622222","1.933333","53.666667","0.000000","571.740741","0.000000","10.037037","560.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1310.125000",,,,,"0.000000","0.000000",,,"3380.000000","4489.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.363750",,"22.363750",,"22.363750",,,,,,,"3868.875000",,,,,"4473.625000",,"7.711111",,"1251.933333",,,,"2186.285714","1.155556","0.555556","3.066667","50.711111","0.000000","551.333333","0.000000","11.740741","538.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","2418.000000",,,,,"0.000000","0.000000",,,"5303.000000","7458.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.183750",,"25.183750",,"25.183750",,,,,,,"3059.625000",,,,,"5037.708333",,"8.288889",,"543.155556",,,,"2521.771429","1.266667","0.666667","1.577778","46.088889","0.000000","505.666667","0.000000","12.370370","491.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1040.375000",,,,,"0.000000","0.000000",,,"2897.000000","3725.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.307917",,"26.307917",,"26.307917",,,,,,,"2410.375000",,,,,"5262.416667",,"8.777778",,"649.511111",,,,"1824.571429","1.577778","0.888889","4.066667","52.444444","0.000000","566.407407","0.000000","14.555556","549.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.625000","1231.750000",,,,,"0.000000","0.000000",,,"3575.000000","4529.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.582083",,"25.582083",,"25.582083",,,,,,,"2500.291667",,,,,"5117.583333",,"4.022222",,"706.711111",,,,"1493.371429","0.866667","0.333333","1.400000","50.177778","0.000000","552.111111","0.000000","8.962963","541.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1352.625000",,,,,"0.000000","0.000000",,,"4100.500000","4841.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.095833",,"24.095833",,"24.095833",,,,,,,"2980.208333",,,,,"4820.375000",,"2.844444",,"529.311111",,,,"1179.485714","0.888889","3.466667","1.600000","41.222222","0.000000","458.629630","0.000000","9.037037","448.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","1021.375000",,,,,"0.000000","0.000000",,,"2753.625000","3604.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.577500",,"24.577500",,"24.577500",,,,,,,"2553.458333",,,,,"4916.333333",,"4.266667",,"679.088889",,,,"53.571429","1.000000","0.311111","1.511111","59.755556","0.000000","646.814815","0.000000","9.629630","635.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1276.000000",,,,,"0.000000","0.000000",,,"3411.625000","4392.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.827083",,"23.827083",,"23.827083",,,,,,,"3250.500000",,,,,"4766.500000",,"3.711111",,"628.044444",,,,"50.114286","1.000000","0.733333","1.644444","55.955556","0.000000","609.222222","0.000000","9.703704","598.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"359.250000","1194.500000",,,,,"0.000000","0.000000",,,"8165.375000","4259.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.772500",,"21.772500",,"21.772500",,,,,,,"3418.916667",,,,,"4355.541667",,"4.977778",,"654.266667",,,,"50.228571","1.022222","0.200000","1.733333","55.688889","0.000000","597.222222","0.000000","9.777778","586.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"695.250000","1248.000000",,,,,"0.000000","0.000000",,,"12918.500000","4447.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.560417",,"19.560417",,"19.560417",,,,,,,"4301.541667",,,,,"3912.750000",,"8.288889",,"904.622222",,,,"53.485714","1.355556","0.488889","2.555556","59.177778","0.000000","645.592593","0.000000","13.888889","630.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"368.875000","1719.375000",,,,,"0.000000","0.000000",,,"8976.375000","5812.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.701667",,"20.701667",,"20.701667",,,,,,,"4155.500000",,,,,"4141.458333",,"3.355556",,"618.866667",,,,"37.000000","0.955556","0.600000","2.111111","41.355556","0.000000","460.555556","0.000000","9.037037","450.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1206.875000",,,,,"0.000000","0.000000",,,"3358.250000","4272.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.562917",,"25.562917",,"25.562917",,,,,,,"2528.791667",,,,,"5113.500000",,"11.066667",,"779.911111",,,,"56.657143","1.644444","0.266667","1.044444","62.333333","0.000000","682.370370","0.000000","16.000000","663.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.500000","1671.125000",,,,,"0.000000","0.000000",,,"7806.375000","8922.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.128750",,"23.128750",,"23.128750",,,,,,,"3025.750000",,,,,"4626.625000",,"3.866667",,"741.066667",,,,"58.942857","1.044444","0.622222","1.911111","65.577778","0.000000","704.148148","0.000000","9.777778","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1521.875000",,,,,"0.000000","0.000000",,,"5949.750000","7233.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.652917",,"22.652917",,"22.652917",,,,,,,"3202.041667",,,,,"4531.750000",,"25.377778",,"866.800000",,,,"69.342857","2.200000","0.488889","0.866667","76.133333","0.000000","836.851852","0.000000","24.555556","808.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1635.500000",,,,,"0.000000","0.000000",,,"4478.000000","5761.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.381250",,"31.381250",,"31.381250",,,,,,,"864.000000",,,,,"6277.458333",,"2.422222",,"693.111111",,,,"43.571429","0.844444","0.311111","2.000000","48.622222","0.000000","528.111111","0.000000","7.777778","519.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","1312.875000",,,,,"0.000000","0.000000",,,"3301.250000","4305.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.107917",,"22.107917",,"22.107917",,,,,,,"3755.541667",,,,,"4422.291667",,"5.711111",,"629.600000",,,,"49.114286","1.177778","0.355556","1.244444","54.066667","0.000000","581.296296","0.000000","11.518519","568.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","18.285714",,,,,"0.000000","0.000000",,,"3203.375000","4236.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.283333",,"30.283333",,"30.283333",,,,,,,"1823.416667",,,,,"6057.583333",,"2.444444",,"527.488889",,,,"1741.428571","0.844444","0.088889","1.622222","44.733333","0.000000","479.296296","0.000000","8.222222","469.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","994.875000",,,,,"0.000000","0.000000",,,"2765.875000","3521.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.199583",,"33.199583",,"33.199583",,,,,,,"646.166667",,,,,"6640.875000",,"8.555556",,"529.400000",,,,"1804.371429","1.044444","0.200000","1.088889","42.288889","0.000000","451.037037","0.000000","10.370370","439.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","986.875000",,,,,"0.000000","0.000000",,,"2669.625000","3409.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.924583",,"33.924583",,"33.924583",,,,,,,"729.041667",,,,,"6785.625000",,"2.911111",,"379.888889",,,,"1513.685714","0.933333","0.377778","1.200000","31.533333","0.000000","345.592593","0.000000","9.111111","335.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","726.000000",,,,,"0.000000","0.000000",,,"2076.875000","2626.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.816250",,"29.816250",,"29.816250",,,,,,,"1044.666667",,,,,"5964.166667",,"8.311111",,"673.066667",,,,"1393.685714","1.511111","0.200000","3.200000","48.888889","0.000000","529.555556","0.000000","13.925926","512.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","1257.500000",,,,,"0.000000","0.000000",,,"3963.000000","4588.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.416250",,"27.416250",,"27.416250",,,,,,,"2214.708333",,,,,"5484.083333",,"2.888889",,"507.088889",,,,"1647.171429","0.933333","0.088889","2.200000","45.111111","0.000000","482.962963","0.000000","8.592593","473.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","969.500000",,,,,"0.000000","0.000000",,,"2697.500000","3520.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.286250",,"22.286250",,"22.286250",,,,,,,"3742.500000",,,,,"4458.041667",,"3.000000",,"352.377778",,,,"1107.057143","1.022222","1.066667","2.577778","27.955556","0.000000","315.925926","0.000000","9.629630","304.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","667.000000",,,,,"0.000000","0.000000",,,"1935.500000","2416.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.783750",,"22.783750",,"22.783750",,,,,,,"3420.125000",,,,,"4557.583333",,"2.933333",,"566.088889",,,,"47.000000","1.022222","0.333333","1.111111","51.955556","0.000000","560.814815","0.000000","9.629630","549.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.875000","1085.875000",,,,,"0.000000","0.000000",,,"3340.625000","4170.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.514167",,"20.514167",,"20.514167",,,,,,,"4038.958333",,,,,"4103.625000",,"2.777778",,"615.511111",,,,"41.657143","0.933333","0.244444","2.333333","46.333333","0.000000","505.111111","0.000000","8.555556","495.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.875000","1183.125000",,,,,"0.000000","0.000000",,,"3507.375000","4086.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.709167",,"20.709167",,"20.709167",,,,,,,"4036.000000",,,,,"4142.750000",,"2.755556",,"495.666667",,,,"39.428571","0.844444","1.533333","1.911111","43.711111","0.000000","473.851852","0.000000","8.444444","464.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.750000","1088.375000",,,,,"0.000000","0.000000",,,"5306.375000","6071.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.121250",,"22.121250",,"22.121250",,,,,,,"3625.458333",,,,,"4425.041667",,"3.444444",,"457.955556",,,,"36.742857","0.977778","0.755556","2.622222","40.488889","0.000000","439.148148","0.000000","9.259259","428.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1060.250000",,,,,"0.000000","0.000000",,,"6181.750000","6834.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.841667",,"19.841667",,"19.841667",,,,,,,"4161.083333",,,,,"3969.250000",,"2.933333",,"406.800000",,,,"33.800000","0.933333","0.266667","1.311111","36.977778","0.000000","398.851852","0.000000","9.222222","388.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","776.750000",,,,,"0.000000","0.000000",,,"2275.875000","2937.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.635000",,"20.635000",,"20.635000",,,,,,,"3833.291667",,,,,"4128.208333",,"8.200000",,"617.644444",,,,"53.342857","1.466667","0.533333","2.244444","59.200000","0.000000","653.962963","0.000000","13.222222","638.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","1159.375000",,,,,"0.000000","0.000000",,,"3220.000000","4121.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.099583",,"22.099583",,"22.099583",,,,,,,"3646.958333",,,,,"4420.666667",,"24.688889",,"938.511111",,,,"68.200000","2.155556","0.444444","1.355556","75.333333","0.000000","837.888889","0.000000","23.777778","809.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.000000","1791.000000",,,,,"0.000000","0.000000",,,"4781.625000","6406.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.775833",,"23.775833",,"23.775833",,,,,,,"2577.041667",,,,,"4756.041667",,"8.133333",,"919.377778",,,,"54.714286","1.222222","1.400000","1.955556","60.933333","0.000000","665.222222","0.000000","12.555556","651.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1758.125000",,,,,"0.000000","0.000000",,,"4222.875000","5750.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.430417",,"27.430417",,"27.430417",,,,,,,"2251.708333",,,,,"5487.166667",,"20.644444",,"679.755556",,,,"44.257143","1.377778","1.822222","3.044444","49.222222","0.000000","553.555556","0.000000","15.037037","537.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.875000","1312.000000",,,,,"0.000000","0.000000",,,"3398.500000","4433.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.236667",,"23.236667",,"23.236667",,,,,,,"3140.750000",,,,,"4648.458333",,"13.777778",,"966.288889",,,,"2062.971429","1.600000","1.844444","3.644444","71.533333","0.000000","778.851852","0.000000","19.037037","758.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.750000","1819.375000",,,,,"0.000000","0.000000",,,"4505.000000","6075.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.897917",,"22.897917",,"22.897917",,,,,,,"3251.375000",,,,,"4580.416667",,"8.111111",,"617.911111",,,,"2478.342857","1.222222","0.600000","2.533333","51.177778","0.000000","562.407407","0.000000","12.851852","548.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1190.500000",,,,,"0.000000","0.000000",,,"3268.500000","4282.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.540000",,"20.540000",,"20.540000",,,,,,,"3960.583333",,,,,"4109.000000",,"3.844444",,"629.777778",,,,"1955.257143","0.800000","0.688889","3.333333","44.333333","0.000000","497.000000","0.000000","8.777778","486.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.125000","1223.375000",,,,,"0.000000","0.000000",,,"3866.750000","4379.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.366250",,"21.366250",,"21.366250",,,,,,,"4388.791667",,,,,"4274.291667",,"7.955556",,"587.577778",,,,"1843.771429","1.133333","0.911111","3.933333","44.600000","0.000000","503.777778","0.000000","11.777778","490.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.125000","1133.250000",,,,,"0.000000","0.000000",,,"3004.625000","3850.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.480000",,"21.480000",,"21.480000",,,,,,,"3391.333333",,,,,"4296.875000",,"3.266667",,"507.666667",,,,"879.400000","0.933333","1.755556","7.688889","47.400000","0.000000","533.518519","0.000000","9.296296","522.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","984.625000",,,,,"0.000000","0.000000",,,"2846.625000","3636.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.337917",,"22.337917",,"22.337917",,,,,,,"3325.125000",,,,,"4468.458333",,"911.911111",,"1579.977778",,,,"62.971429","19.622222","4.311111","5.577778","50.933333","0.000000","736.444444","0.000000","214.518519","519.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1742.125000","22.142857",,,,,"0.000000","0.000000",,,"10691.750000","11008.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.145417",,"21.145417",,"21.145417",,,,,,,"3489.166667",,,,,"4229.958333",,"99.066667",,"1169.822222",,,,"101.000000","22.533333","2.800000","3.044444","93.622222","0.000000","1266.851852","0.000000","249.814815","1015.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"236.750000","2480.625000",,,,,"0.000000","0.000000",,,"10582.250000","12976.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.977083",,"24.977083",,"24.977083",,,,,,,"2530.041667",,,,,"4996.458333",,"61.511111",,"997.266667",,,,"88.028571","14.111111","0.666667","3.000000","86.311111","0.000000","1077.629630","0.000000","156.296296","919.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"486.875000","2031.250000",,,,,"0.000000","0.000000",,,"12616.500000","10272.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.223750",,"23.223750",,"23.223750",,,,,,,"3329.250000",,,,,"4645.500000",,"8.266667",,"1975.133333",,,,"42.314286","1.155556","1.222222","7.111111","45.555556","0.000000","472.555556","0.000000","12.296296","458.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2601.750000","3779.250000",,,,,"0.000000","0.000000",,,"41947.875000","13184.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.477083",,"27.477083",,"27.477083",,,,,,,"2298.875000",,,,,"5496.250000",,"4.555556",,"2633.977778",,,,"58.371429","1.022222","4.044444","6.177778","63.466667","0.000000","646.962963","0.000000","10.000000","635.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1221.625000","4984.125000",,,,,"0.000000","0.000000",,,"25319.625000","14496.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.519583",,"26.519583",,"26.519583",,,,,,,"2772.916667",,,,,"5304.916667",,"8.222222",,"2293.466667",,,,"57.542857","1.355556","1.400000","5.155556","62.800000","0.000000","658.888889","0.000000","13.814815","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1718.125000","4357.875000",,,,,"0.000000","0.000000",,,"31134.375000","13854.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.034167",,"27.034167",,"27.034167",,,,,,,"2525.416667",,,,,"5407.625000",,"340.911111",,"1819.200000",,,,"59.142857","12.288889","1.311111","3.244444","53.844444","0.000000","686.037037","0.000000","136.074074","548.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.500000","3394.875000",,,,,"0.000000","0.000000",,,"14205.500000","10987.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.288333",,"25.288333",,"25.288333",,,,,,,"2882.833333",,,,,"5058.708333",,"73.222222",,"786.288889",,,,"49.971429","4.644444","0.488889","1.977778","51.044444","0.000000","590.037037","0.000000","50.740741","533.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","1546.750000",,,,,"0.000000","0.000000",,,"4060.500000","5173.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.862500",,"30.862500",,"30.862500",,,,,,,"1119.000000",,,,,"6173.333333",,"12.488889",,"910.422222",,,,"37.914286","2.466667","1.577778","3.022222","40.177778","0.000000","450.703704","0.000000","25.814815","423.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.000000","1730.500000",,,,,"0.000000","0.000000",,,"3889.000000","5331.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.054583",,"30.054583",,"30.054583",,,,,,,"1365.833333",,,,,"6011.708333",,"16.377778",,"904.244444",,,,"48.200000","2.955556","0.688889","3.200000","50.822222","0.000000","554.962963","0.000000","32.185185","521.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.375000","1700.250000",,,,,"0.000000","0.000000",,,"4050.625000","5338.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.501667",,"29.501667",,"29.501667",,,,,,,"1614.500000",,,,,"5901.416667",,"6.511111",,"426.422222",,,,"1887.628571","1.000000","0.733333","2.488889","30.622222","0.000000","333.703704","0.000000","10.518519","321.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","26.000000",,,,,"0.000000","0.000000",,,"2306.500000","3044.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.798750",,"34.798750",,"34.798750",,,,,,,"1268.666667",,,,,"6960.875000",,"9.733333",,"462.111111",,,,"2528.771429","1.400000","0.600000","1.844444","29.022222","0.000000","319.370370","0.000000","14.925926","303.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","872.750000",,,,,"0.000000","0.000000",,,"2287.500000","2917.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.674583",,"32.674583",,"32.674583",,,,,,,"886.250000",,,,,"6536.083333",,"9.622222",,"669.466667",,,,"1606.342857","1.377778","0.977778","2.444444","45.200000","0.000000","474.111111","0.000000","14.111111","458.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1269.750000",,,,,"0.000000","0.000000",,,"3955.750000","4441.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.110000",,"34.110000",,"34.110000",,,,,,,"630.333333",,,,,"6822.875000",,"3.111111",,"585.355556",,,,"1182.571429","0.844444","0.444444","3.044444","40.022222","0.000000","418.185185","0.000000","8.518519","407.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1172.000000",,,,,"0.000000","0.000000",,,"4308.375000","5161.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.767917",,"30.767917",,"30.767917",,,,,,,"872.875000",,,,,"6154.458333",,"3.644444",,"513.133333",,,,"1160.657143","0.955556","0.755556","2.644444","30.911111","0.000000","324.370370","0.000000","9.666667","313.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.875000","1141.375000",,,,,"0.000000","0.000000",,,"5756.625000","6475.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.483750",,"32.483750",,"32.483750",,,,,,,"497.583333",,,,,"6497.625000",,"9.266667",,"666.266667",,,,"825.085714","1.488889","1.666667","2.577778","42.288889","0.000000","443.000000","0.000000","14.074074","426.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1320.000000",,,,,"0.000000","0.000000",,,"4641.125000","5600.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.417500",,"31.417500",,"31.417500",,,,,,,"2240.541667",,,,,"6284.250000",,"17.577778",,"353.911111",,,,"13.285714","2.422222","0.600000","5.022222","12.088889","0.000000","152.259259","0.000000","25.962963","124.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.125000","690.875000",,,,,"0.000000","0.000000",,,"1791.750000","2369.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.835000",,"28.835000",,"28.835000",,,,,,,"2035.291667",,,,,"5768.041667",,"6.155556",,"302.155556",,,,"18.857143","0.977778","2.511111","1.577778","19.777778","0.000000","212.888889","0.000000","9.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","580.875000",,,,,"0.000000","0.000000",,,"1622.250000","2139.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.724167",,"33.724167",,"33.724167",,,,,,,"1191.250000",,,,,"6745.875000",,"6.155556",,"700.222222",,,,"37.028571","1.155556","0.688889","4.355556","39.511111","0.000000","409.185185","0.000000","12.259259","395.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1313.750000",,,,,"0.000000","0.000000",,,"3159.125000","4151.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.057500",,"32.057500",,"32.057500",,,,,,,"1108.583333",,,,,"6412.250000",,"5.888889",,"545.311111",,,,"33.685714","1.022222","0.311111","1.955556","36.111111","0.000000","374.259259","0.000000","9.814815","363.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1017.000000",,,,,"0.000000","0.000000",,,"2623.625000","3456.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.245417",,"31.245417",,"31.245417",,,,,,,"1439.041667",,,,,"6250.208333",,"4.266667",,"589.777778",,,,"39.057143","1.022222","2.511111","3.377778","42.133333","0.000000","437.222222","0.000000","10.777778","424.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1113.125000",,,,,"0.000000","0.000000",,,"2812.750000","3640.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.758750",,"29.758750",,"29.758750",,,,,,,"2148.500000",,,,,"5952.583333",,"16.222222",,"408.466667",,,,"25.914286","2.000000","1.333333","2.444444","26.711111","0.000000","294.629630","0.000000","21.000000","272.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.875000","761.375000",,,,,"0.000000","0.000000",,,"2076.000000","2635.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.070000",,"34.070000",,"34.070000",,,,,,,"768.208333",,,,,"6814.958333",,"27.422222",,"577.822222",,,,"41.057143","2.533333","0.622222","2.222222","42.222222","0.000000","456.407407","0.000000","26.629630","424.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.375000","1088.875000",,,,,"0.000000","0.000000",,,"2943.500000","3833.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.662917",,"34.662917",,"34.662917",,,,,,,"958.041667",,,,,"6933.291667",,"10.800000",,"580.333333",,,,"29.742857","1.422222","0.711111","1.933333","31.644444","0.000000","345.851852","0.000000","14.962963","328.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.125000","1088.125000",,,,,"0.000000","0.000000",,,"2698.750000","3447.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.625417",,"33.625417",,"33.625417",,,,,,,"418.875000",,,,,"6726.000000",,"10.355556",,"582.133333",,,,"29.228571","1.400000","0.777778","1.888889","31.266667","0.000000","340.888889","0.000000","14.037037","325.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","1097.125000",,,,,"0.000000","0.000000",,,"2659.625000","3453.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.192917",,"33.192917",,"33.192917",,,,,,,"472.000000",,,,,"6639.541667",,"5.266667",,"582.622222",,,,"1468.085714","0.977778","1.844444","1.911111","38.822222","0.000000","403.407407","0.000000","9.888889","391.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1100.750000",,,,,"0.000000","0.000000",,,"2841.125000","3732.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.800417",,"32.800417",,"32.800417",,,,,,,"491.083333",,,,,"6561.125000",,"8.933333",,"513.466667",,,,"1923.257143","1.244444","1.022222","3.533333","22.066667","0.000000","246.481481","0.000000","15.222222","229.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","994.125000",,,,,"0.000000","0.000000",,,"2639.500000","3461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.190417",,"29.190417",,"29.190417",,,,,,,"622.666667",,,,,"5839.000000",,"3.933333",,"552.111111",,,,"1284.800000","0.955556","1.466667","6.955556","15.422222","0.000000","170.518519","0.000000","9.777778","159.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.500000","1276.000000",,,,,"0.000000","0.000000",,,"6158.125000","7177.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.815000",,"31.815000",,"31.815000",,,,,,,"717.375000",,,,,"6364.083333",,"8.444444",,"614.000000",,,,"1324.971429","1.222222","0.577778","1.644444","27.688889","0.000000","304.629630","0.000000","12.814815","290.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.250000","1289.625000",,,,,"0.000000","0.000000",,,"5829.000000","6304.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.971667",,"32.971667",,"32.971667",,,,,,,"511.125000",,,,,"6594.916667",,"3.955556",,"572.488889",,,,"1196.600000","0.777778","1.622222","2.844444","36.488889","0.000000","388.629630","0.000000","8.592593","378.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1098.000000",,,,,"0.000000","0.000000",,,"2750.625000","3606.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.404583",,"31.404583",,"31.404583",,,,,,,"535.041667",,,,,"6281.791667",,"22.533333",,"729.488889",,,,"1016.600000","2.711111","0.600000","2.466667","37.600000","0.000000","418.444444","0.000000","27.592593","387.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.250000","1343.875000",,,,,"0.000000","0.000000",,,"3156.000000","4089.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.044583",,"32.044583",,"32.044583",,,,,,,"442.541667",,,,,"6410.125000",,"5.422222",,"669.044444",,,,"926.114286","1.111111","0.955556","2.888889","40.200000","0.000000","430.703704","0.000000","11.222222","417.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1264.750000",,,,,"0.000000","0.000000",,,"3095.000000","4031.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.820000",,"30.820000",,"30.820000",,,,,,,"1355.458333",,,,,"6164.833333",,"8.755556",,"493.400000",,,,"81.114286","1.355556","1.200000","2.133333","30.888889","0.000000","336.407407","0.000000","13.666667","321.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","946.375000",,,,,"0.000000","0.000000",,,"2457.250000","3165.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.031667",,"35.031667",,"35.031667",,,,,,,"1027.208333",,,,,"7007.000000",,"8.000000",,"642.822222",,,,"37.685714","1.133333","0.466667","1.777778","40.644444","0.000000","427.592593","0.000000","11.777778","414.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1216.375000",,,,,"0.000000","0.000000",,,"3062.750000","4018.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.005833",,"31.005833",,"31.005833",,,,,,,"678.958333",,,,,"6202.250000",,"4.577778",,"571.111111",,,,"28.028571","0.933333","1.111111","2.533333","30.466667","0.000000","331.074074","0.000000","9.555556","319.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.625000","1328.375000",,,,,"0.000000","0.000000",,,"6042.250000","7186.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.740000",,"32.740000",,"32.740000",,,,,,,"779.791667",,,,,"6549.000000",,"8.666667",,"554.266667",,,,"34.828571","1.355556","1.533333","1.266667","37.555556","0.000000","405.740741","0.000000","13.666667","390.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","10.500000",,,,,"0.000000","0.000000",,,"6098.250000","7130.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.219167",,"31.219167",,"31.219167",,,,,,,"1296.125000",,,,,"6244.666667",,"8.822222",,"479.933333",,,,"28.542857","1.000000","0.688889","2.133333","30.955556","0.000000","335.666667","0.000000","9.592593","324.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","936.500000",,,,,"0.000000","0.000000",,,"2687.750000","3473.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.560000",,"34.560000",,"34.560000",,,,,,,"1094.375000",,,,,"6913.041667",,"30.444444",,"635.133333",,,,"35.514286","2.577778","0.955556","2.600000","36.555556","0.000000","410.592593","0.000000","28.888889","377.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1207.750000",,,,,"0.000000","0.000000",,,"3148.375000","3969.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.308750",,"35.308750",,"35.308750",,,,,,,"286.541667",,,,,"7062.750000",,"9.711111",,"585.800000",,,,"26.828571","1.533333","0.688889","4.644444","28.311111","0.000000","314.888889","0.000000","14.000000","298.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","1077.375000",,,,,"0.000000","0.000000",,,"2533.625000","3336.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.273750",,"36.273750",,"36.273750",,,,,,,"468.208333",,,,,"7255.875000",,"7.644444",,"583.200000",,,,"29.257143","1.111111","3.088889","5.088889","31.911111","0.000000","353.518519","0.000000","11.740741","340.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","1124.250000",,,,,"0.000000","0.000000",,,"2907.500000","3695.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.025417",,"33.025417",,"33.025417",,,,,,,"503.625000",,,,,"6605.916667",,"46.888889",,"585.000000",,,,"1134.428571","41.022222","0.711111","9.844444","37.288889","0.000000","855.148148","0.000000","453.666667","398.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"169.375000","1496.714286",,,,,"0.000000","0.000000",,,"21587.750000","119410.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.943750",,"29.943750",,"29.943750",,,,,,,"938.333333",,,,,"5989.833333",,"39.422222",,"793.400000",,,,"1912.828571","60.311111","1.666667","9.177778","44.111111","0.000000","1139.444444","0.000000","667.037037","469.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"534.625000","16406.750000",,,,,"0.000000","0.000000",,,"41495.875000","208729.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.342917",,"32.342917",,"32.342917",,,,,,,"1141.291667",,,,,"6469.666667",,"35.088889",,"1849.866667",,,,"1755.685714","57.977778","0.800000","11.511111","37.200000","0.000000","1018.814815","0.000000","643.592593","373.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"796.000000","4216.571429",,,,,"0.000000","0.000000",,,"51769.375000","217458.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.830000",,"27.830000",,"27.830000",,,,,,,"2595.166667",,,,,"5566.875000",,"22.000000",,"2006.288889",,,,"1664.285714","28.355556","0.711111","9.888889","28.666667","0.000000","590.814815","0.000000","312.666667","274.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"789.625000","9657.250000",,,,,"0.000000","0.000000",,,"34359.000000","92411.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.271250",,"27.271250",,"27.271250",,,,,,,"3392.541667",,,,,"5455.208333",,"3.133333",,"2074.133333",,,,"1521.685714","0.888889","1.133333","25.577778","15.844444","0.000000","139.333333","0.000000","8.962963","128.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.625000","4060.750000",,,,,"0.000000","0.000000",,,"16335.500000","11084.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.397083",,"27.397083",,"27.397083",,,,,,,"3225.625000",,,,,"5480.208333",,"3.422222",,"2088.333333",,,,"1331.371429","0.866667","1.688889","19.622222","21.933333","0.000000","206.333333","0.000000","8.888889","196.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"919.750000","4015.375000",,,,,"0.000000","0.000000",,,"19097.750000","10986.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.691667",,"24.691667",,"24.691667",,,,,,,"4195.958333",,,,,"4939.250000",,"3.222222",,"2475.555556",,,,"37.114286","0.844444","10.177778","12.422222","39.466667","0.000000","392.148148","0.000000","8.407407","382.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.857143","24.000000",,,,,"0.000000","0.000000",,,"27660.500000","13296.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.572917",,"25.572917",,"25.572917",,,,,,,"4134.333333",,,,,"5115.500000",,"2.977778",,"1577.377778",,,,"23.114286","0.911111","0.577778","4.688889","23.911111","0.000000","238.851852","0.000000","8.888889","228.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1682.500000","3031.000000",,,,,"0.000000","0.000000",,,"27958.875000","9299.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.127917",,"21.127917",,"21.127917",,,,,,,"4327.416667",,,,,"4226.583333",,"3.733333",,"1874.422222",,,,"31.685714","0.955556","0.444444","3.377778","33.755556","0.000000","346.851852","0.000000","9.259259","336.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"703.625000","3589.500000",,,,,"0.000000","0.000000",,,"15764.000000","10077.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.364167",,"20.364167",,"20.364167",,,,,,,"4632.125000",,,,,"4073.708333",,"2.666667",,"501.533333",,,,"20.428571","0.888889","0.844444","2.911111","21.755556","0.000000","236.370370","0.000000","8.518519","226.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","951.125000",,,,,"0.000000","0.000000",,,"2175.500000","2894.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.416250",,"23.416250",,"23.416250",,,,,,,"3664.958333",,,,,"4684.041667",,"9.311111",,"337.177778",,,,"18.142857","1.600000","0.466667","1.600000","18.133333","0.000000","203.333333","0.000000","14.888889","185.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","633.875000",,,,,"0.000000","0.000000",,,"1813.000000","2229.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.372917",,"24.372917",,"24.372917",,,,,,,"3211.208333",,,,,"4875.625000",,"3.755556",,"486.555556",,,,"29.457143","0.933333","0.422222","2.311111","31.844444","0.000000","338.666667","0.000000","8.851852","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","897.125000",,,,,"0.000000","0.000000",,,"2431.250000","2974.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.609583",,"22.609583",,"22.609583",,,,,,,"3603.500000",,,,,"4523.041667",,"29.288889",,"974.377778",,,,"29.857143","2.355556","1.066667","3.644444","30.311111","0.000000","335.037037","0.000000","26.222222","305.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.000000","1865.750000",,,,,"0.000000","0.000000",,,"4163.875000","5610.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.408750",,"29.408750",,"29.408750",,,,,,,"1839.291667",,,,,"5882.750000",,"33.066667",,"651.866667",,,,"45.142857","1.488889","2.333333","1.800000","49.400000","0.000000","539.518519","0.000000","15.703704","522.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"87.000000","1340.250000",,,,,"0.000000","0.000000",,,"5396.250000","6344.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.597500",,"31.597500",,"31.597500",,,,,,,"975.541667",,,,,"6320.541667",,"108.933333",,"1912.866667",,,,"54.114286","4.422222","3.488889","3.866667","56.355556","0.000000","636.370370","0.000000","47.851852","586.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"248.875000","3817.000000",,,,,"0.000000","0.000000",,,"11269.625000","13672.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.703333",,"36.703333",,"36.703333",,,,,,,"771.583333",,,,,"7341.625000",,"5.644444",,"898.755556",,,,"2214.857143","1.266667","1.177778","2.466667","51.488889","0.000000","556.148148","0.000000","12.444444","542.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.500000","1766.125000",,,,,"0.000000","0.000000",,,"4972.375000","6286.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.016250",,"36.016250",,"36.016250",,,,,,,"467.416667",,,,,"7204.291667",,"7.466667",,"738.288889",,,,"1993.428571","1.400000","1.822222","4.266667","48.955556","0.000000","539.777778","0.000000","16.000000","522.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1386.375000",,,,,"0.000000","0.000000",,,"3427.875000","4618.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.599583",,"35.599583",,"35.599583",,,,,,,"437.125000",,,,,"7120.875000",,"3.755556",,"773.266667",,,,"1612.000000","0.977778","0.422222","1.688889","46.933333","0.000000","508.111111","0.000000","9.444444","497.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.750000","1490.125000",,,,,"0.000000","0.000000",,,"4225.250000","5007.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.667917",,"34.667917",,"34.667917",,,,,,,"423.250000",,,,,"6934.416667",,"3.200000",,"629.533333",,,,"1201.200000","0.933333","0.288889","1.488889","44.844444","0.000000","490.074074","0.000000","8.703704","479.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1201.625000",,,,,"0.000000","0.000000",,,"3088.125000","4113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.700000",,"35.700000",,"35.700000",,,,,,,"617.666667",,,,,"7141.041667",,"9.266667",,"781.288889",,,,"1195.428571","1.577778","0.466667","1.977778","57.955556","0.000000","631.851852","0.000000","14.740741","614.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1451.750000",,,,,"0.000000","0.000000",,,"3704.875000","4850.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.749167",,"33.749167",,"33.749167",,,,,,,"1212.541667",,,,,"6750.666667",,"10.733333",,"1030.800000",,,,"1051.200000","1.644444","0.644444","3.777778","59.444444","0.000000","656.592593","0.000000","16.629630","638.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","1953.500000",,,,,"0.000000","0.000000",,,"4607.625000","6157.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.363750",,"30.363750",,"30.363750",,,,,,,"1798.083333",,,,,"6073.791667",,"153.066667",,"708.622222",,,,"50.714286","4.288889","0.400000","2.311111","53.555556","0.000000","623.814815","0.000000","46.481481","575.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"288.000000","15.571429",,,,,"0.000000","0.000000",,,"4208.500000","4986.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.891667",,"31.891667",,"31.891667",,,,,,,"2290.625000",,,,,"6379.208333",,"259.244444",,"1167.977778",,,,"67.885714","7.533333","0.311111","2.355556","69.822222","0.000000","827.222222","0.000000","82.296296","743.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"535.375000","2211.375000",,,,,"0.000000","0.000000",,,"6375.500000","7729.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.634583",,"29.634583",,"29.634583",,,,,,,"2263.416667",,,,,"5927.708333",,"9.622222",,"1564.866667",,,,"54.000000","1.422222","0.444444","4.933333","59.577778","0.000000","645.666667","0.000000","15.259259","629.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.375000","2815.375000",,,,,"0.000000","0.000000",,,"5985.500000","8082.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.924583",,"27.924583",,"27.924583",,,,,,,"1249.875000",,,,,"5585.916667",,"4.622222",,"652.488889",,,,"43.942857","0.911111","0.444444","1.600000","48.977778","0.000000","538.555556","0.000000","9.777778","527.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.750000","1246.000000",,,,,"0.000000","0.000000",,,"3252.750000","4279.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.880000",,"30.880000",,"30.880000",,,,,,,"1665.875000",,,,,"6176.958333",,"3.755556",,"737.533333",,,,"48.142857","1.044444","0.688889","2.088889","54.000000","0.000000","599.185185","0.000000","10.111111","587.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1417.375000",,,,,"0.000000","0.000000",,,"3551.250000","4709.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.144167",,"31.144167",,"31.144167",,,,,,,"1336.041667",,,,,"6229.875000",,"5.266667",,"799.000000",,,,"56.657143","1.288889","0.444444","1.488889","63.177778","0.000000","692.740741","0.000000","13.629630","677.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1606.500000",,,,,"0.000000","0.000000",,,"5676.750000","6903.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.730000",,"28.730000",,"28.730000",,,,,,,"2083.208333",,,,,"5747.000000",,"27.622222",,"738.333333",,,,"52.914286","2.622222","0.577778","1.755556","57.311111","0.000000","649.666667","0.000000","27.148148","617.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.500000","1608.000000",,,,,"0.000000","0.000000",,,"7864.000000","9061.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.800000",,"33.800000",,"33.800000",,,,,,,"959.208333",,,,,"6761.000000",,"3.844444",,"1029.200000",,,,"49.542857","0.866667","0.466667","2.422222","54.666667","0.000000","580.111111","0.000000","8.962963","569.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","1986.250000",,,,,"0.000000","0.000000",,,"4975.125000","6502.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.007500",,"36.007500",,"36.007500",,,,,,,"991.666667",,,,,"7202.291667",,"5.000000",,"960.444444",,,,"37.142857","1.022222","0.600000","3.622222","40.666667","0.000000","440.111111","0.000000","10.666667","428.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1816.875000",,,,,"0.000000","0.000000",,,"3914.250000","5339.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.603333",,"31.603333",,"31.603333",,,,,,,"1405.750000",,,,,"6321.875000",,"3.866667",,"649.955556",,,,"1535.485714","0.955556","0.600000","3.022222","35.444444","0.000000","392.666667","0.000000","9.259259","382.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1239.875000",,,,,"0.000000","0.000000",,,"3018.375000","3938.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.679167",,"35.679167",,"35.679167",,,,,,,"346.125000",,,,,"7136.666667",,"88.022222",,"784.888889",,,,"1911.114286","2.533333","1.866667","4.155556","54.155556","0.000000","596.518519","0.000000","26.592593","568.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"178.125000","1480.500000",,,,,"0.000000","0.000000",,,"4033.500000","5036.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.220000",,"36.220000",,"36.220000",,,,,,,"1105.541667",,,,,"7244.791667",,"627.555556",,"914.400000",,,,"1882.714286","15.622222","1.777778","2.822222","52.311111","0.000000","736.407407","0.000000","171.074074","564.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1247.125000","1749.000000",,,,,"0.000000","0.000000",,,"7899.000000","7413.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.024583",,"35.024583",,"35.024583",,,,,,,"696.375000",,,,,"7005.916667",,"259.222222",,"1560.311111",,,,"1443.457143","6.844444","0.622222","4.311111","71.244444","0.000000","828.555556","0.000000","74.518519","752.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"533.500000","2967.625000",,,,,"0.000000","0.000000",,,"7694.750000","9411.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.274583",,"35.274583",,"35.274583",,,,,,,"885.208333",,,,,"7055.958333",,"153.511111",,"1012.444444",,,,"1364.200000","4.400000","0.577778","3.133333","61.022222","0.000000","689.666667","0.000000","47.037037","641.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.250000","1920.375000",,,,,"0.000000","0.000000",,,"5219.125000","6458.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.555000",,"33.555000",,"33.555000",,,,,,,"1087.666667",,,,,"6712.083333",,"6.622222",,"1507.111111",,,,"1179.942857","1.444444","0.333333","4.155556","66.333333","0.000000","703.444444","0.000000","15.148148","687.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","13.000000",,,,,"0.000000","0.000000",,,"6080.750000","8271.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.135417",,"30.135417",,"30.135417",,,,,,,"1023.625000",,,,,"6028.041667",,"35.177778",,"1164.044444",,,,"54.428571","3.533333","0.600000","4.222222","57.888889","0.000000","648.444444","0.000000","38.296296","608.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.750000","2201.250000",,,,,"0.000000","0.000000",,,"5785.875000","7110.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.964167",,"34.964167",,"34.964167",,,,,,,"1404.250000",,,,,"6993.875000",,"19.911111",,"1187.444444",,,,"55.571429","1.955556","0.666667","3.755556","60.911111","0.000000","661.333333","0.000000","20.888889","639.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","2260.000000",,,,,"0.000000","0.000000",,,"5160.000000","6909.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.886667",,"30.886667",,"30.886667",,,,,,,"1519.750000",,,,,"6178.083333",,"21.622222",,"1854.577778",,,,"64.714286","1.977778","1.422222","3.777778","70.866667","0.000000","761.518519","0.000000","20.888889","739.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.500000","3496.875000",,,,,"0.000000","0.000000",,,"7184.000000","9790.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.833333",,"31.833333",,"31.833333",,,,,,,"1585.916667",,,,,"6367.833333",,"12.866667",,"1622.800000",,,,"53.257143","1.577778","0.822222","3.044444","58.644444","0.000000","635.370370","0.000000","16.074074","617.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.625000","3091.000000",,,,,"0.000000","0.000000",,,"6370.000000","8596.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.854167",,"32.854167",,"32.854167",,,,,,,"1132.125000",,,,,"6571.458333",,"584.577778",,"1616.622222",,,,"69.171429","13.111111","0.644444","4.177778","64.355556","0.000000","804.666667","0.000000","141.592593","660.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.000000","3047.625000",,,,,"0.000000","0.000000",,,"10069.625000","11215.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.522917",,"31.522917",,"31.522917",,,,,,,"1468.916667",,,,,"6305.625000",,"105.800000",,"2088.644444",,,,"58.657143","3.733333","2.155556","4.200000","62.200000","0.000000","687.666667","0.000000","40.592593","645.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.250000","4248.750000",,,,,"0.000000","0.000000",,,"12468.375000","15294.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.516667",,"31.516667",,"31.516667",,,,,,,"1139.000000",,,,,"6304.375000",,"44.511111",,"1635.355556",,,,"63.914286","3.400000","0.977778","3.111111","67.933333","0.000000","741.888889","0.000000","37.888889","700.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.625000","3152.375000",,,,,"0.000000","0.000000",,,"7792.250000","10154.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.352500",,"34.352500",,"34.352500",,,,,,,"948.791667",,,,,"6871.375000",,"123.066667",,"968.577778",,,,"41.771429","4.000000","1.066667","3.222222","43.044444","0.000000","494.777778","0.000000","43.333333","450.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"265.500000","1837.750000",,,,,"0.000000","0.000000",,,"4645.250000","5821.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.675833",,"29.675833",,"29.675833",,,,,,,"1876.125000",,,,,"5936.291667",,"524.466667",,"1955.977778",,,,"75.571429","10.444444","1.177778","8.644444","74.466667","0.000000","882.925926","0.000000","114.592593","767.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1019.125000","12.428571",,,,,"0.000000","0.000000",,,"10030.500000","11806.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.172083",,"31.172083",,"31.172083",,,,,,,"1666.333333",,,,,"6235.291667",,"735.333333",,"1117.066667",,,,"1968.914286","17.222222","0.888889","3.644444","53.555556","0.000000","759.481481","0.000000","188.629630","569.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1401.875000","2380.875000",,,,,"0.000000","0.000000",,,"10245.500000","10741.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.352917",,"28.352917",,"28.352917",,,,,,,"2065.125000",,,,,"5671.666667",,"954.444444",,"1317.800000",,,,"2448.571429","24.266667","0.466667","2.622222","59.555556","0.000000","903.296296","0.000000","266.777778","635.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1834.375000","2745.875000",,,,,"0.000000","0.000000",,,"13139.625000","13652.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.853750",,"31.853750",,"31.853750",,,,,,,"1553.083333",,,,,"6371.541667",,"837.422222",,"1468.377778",,,,"1856.342857","18.155556","1.155556","4.733333","61.866667","0.000000","853.703704","0.000000","201.703704","650.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1643.750000","3046.000000",,,,,"0.000000","0.000000",,,"13156.625000","13992.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.857083",,"32.857083",,"32.857083",,,,,,,"1128.458333",,,,,"6572.333333",,"1369.844444",,"1407.422222",,,,"1433.857143","31.266667","7.355556","3.955556","68.711111","0.000000","1054.740741","0.000000","343.518519","709.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2677.000000","2904.875000",,,,,"0.000000","0.000000",,,"16369.250000","15606.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.992917",,"34.992917",,"34.992917",,,,,,,"1188.875000",,,,,"6999.500000",,"614.488889",,"1761.888889",,,,"1348.171429","17.733333","1.133333","4.577778","58.000000","0.000000","800.333333","0.000000","195.148148","603.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1230.375000","3622.250000",,,,,"0.000000","0.000000",,,"13131.875000","15031.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.407083",,"30.407083",,"30.407083",,,,,,,"1482.875000",,,,,"6082.250000",,"376.422222",,"1158.777778",,,,"357.714286","8.755556","0.822222","4.888889","63.777778","0.000000","752.370370","0.000000","94.925926","655.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.857143","2409.375000",,,,,"0.000000","0.000000",,,"9898.500000","11360.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.220000",,"31.220000",,"31.220000",,,,,,,"1798.541667",,,,,"6244.833333",,"16.088889",,"1239.755556",,,,"52.114286","2.244444","1.066667","5.844444","56.800000","0.000000","626.370370","0.000000","23.666667","601.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","2520.375000",,,,,"0.000000","0.000000",,,"8286.625000","10444.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.444583",,"30.444583",,"30.444583",,,,,,,"1555.375000",,,,,"6090.041667",,"622.377778",,"1201.488889",,,,"74.542857","14.488889","0.511111","2.644444","69.422222","0.000000","875.074074","0.000000","157.851852","715.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1201.000000","2545.125000",,,,,"0.000000","0.000000",,,"11376.875000","12334.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.931667",,"30.931667",,"30.931667",,,,,,,"1552.166667",,,,,"6187.208333",,"274.266667",,"1325.177778",,,,"57.200000","8.644444","0.266667","3.844444","55.288889","0.000000","665.407407","0.000000","93.629630","569.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.500000","2799.125000",,,,,"0.000000","0.000000",,,"9916.375000","11715.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.120417",,"30.120417",,"30.120417",,,,,,,"1712.250000",,,,,"6025.125000",,"60.644444",,"746.111111",,,,"53.314286","2.177778","0.822222","1.600000","58.200000","0.000000","640.259259","0.000000","23.296296","615.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.875000","1652.125000",,,,,"0.000000","0.000000",,,"7027.375000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.821667",,"25.821667",,"25.821667",,,,,,,"2845.666667",,,,,"5165.083333",,"904.177778",,"960.977778",,,,"76.828571","17.733333","1.355556","2.111111","69.666667","0.000000","930.333333","0.000000","194.259259","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1792.125000","293.857143",,,,,"0.000000","0.000000",,,"12381.000000","12246.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.296250",,"26.296250",,"26.296250",,,,,,,"2050.083333",,,,,"5260.166667",,"383.355556",,"1398.911111",,,,"74.457143","13.622222","1.022222","2.377778","71.088889","0.000000","902.925926","0.000000","149.666667","751.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"769.875000","2882.625000",,,,,"0.000000","0.000000",,,"10859.375000","12460.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.159167",,"28.159167",,"28.159167",,,,,,,"2489.583333",,,,,"5632.791667",,"875.577778",,"2303.733333",,,,"105.000000","33.622222","0.422222","3.177778","85.022222","0.000000","1252.111111","0.000000","372.111111","876.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1664.375000","4595.375000",,,,,"0.000000","0.000000",,,"16504.750000","18804.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.620000",,"28.620000",,"28.620000",,,,,,,"1938.916667",,,,,"5724.875000",,"629.133333",,"1436.488889",,,,"74.657143","22.622222","0.666667","3.222222","62.022222","0.000000","897.185185","0.000000","250.148148","645.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1283.000000","3008.625000",,,,,"0.000000","0.000000",,,"12472.125000","13888.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.895000",,"29.895000",,"29.895000",,,,,,,"1525.625000",,,,,"5979.958333",,"28.755556",,"782.911111",,,,"53.942857","2.977778","0.222222","1.444444","58.066667","0.000000","650.037037","0.000000","32.185185","616.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","1718.625000",,,,,"0.000000","0.000000",,,"7075.750000","8657.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.756250",,"28.756250",,"28.756250",,,,,,,"1323.833333",,,,,"5752.500000",,"72.155556",,"713.422222",,,,"1721.371429","1.644444","0.288889","1.022222","59.222222","0.000000","647.000000","0.000000","17.222222","628.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","1580.500000",,,,,"0.000000","0.000000",,,"6754.750000","8203.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.757500",,"26.757500",,"26.757500",,,,,,,"2210.708333",,,,,"5352.250000",,"56.266667",,"1120.977778",,,,"2291.028571","1.888889","0.400000","2.400000","55.711111","0.000000","623.888889","0.000000","20.111111","602.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"246.625000","2362.125000",,,,,"0.000000","0.000000",,,"8426.375000","10123.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.025833",,"29.025833",,"29.025833",,,,,,,"1341.833333",,,,,"5806.208333",,"6.400000",,"729.288889",,,,"1639.228571","1.177778","0.733333","1.733333","60.733333","0.000000","656.518519","0.000000","11.481481","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.625000","1617.375000",,,,,"0.000000","0.000000",,,"7303.125000","8401.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.267917",,"29.267917",,"29.267917",,,,,,,"1709.500000",,,,,"5854.416667",,"70.600000",,"865.711111",,,,"1516.800000","2.466667","0.577778","2.200000","64.422222","0.000000","711.629630","0.000000","25.555556","684.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"164.625000","1868.875000",,,,,"0.000000","0.000000",,,"7501.375000","9091.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.148333",,"28.148333",,"28.148333",,,,,,,"1930.750000",,,,,"5630.625000",,"117.666667",,"789.600000",,,,"1491.000000","9.222222","1.044444","3.333333","66.111111","0.000000","800.592593","0.000000","100.814815","698.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.750000","1750.875000",,,,,"0.000000","0.000000",,,"7688.625000","9246.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.875417",,"25.875417",,"25.875417",,,,,,,"2405.125000",,,,,"5176.041667",,"3.977778",,"780.355556",,,,"670.200000","0.955556","0.911111","1.755556","64.333333","0.000000","689.444444","0.000000","9.666667","678.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1687.250000",,,,,"0.000000","0.000000",,,"6771.250000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.283333",,"26.283333",,"26.283333",,,,,,,"2668.833333",,,,,"5257.708333",,"9.933333",,"797.644444",,,,"60.171429","1.600000","0.933333","1.400000","66.088889","0.000000","716.000000","0.000000","14.925926","698.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","1682.875000",,,,,"0.000000","0.000000",,,"7456.125000","8730.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.337917",,"25.337917",,"25.337917",,,,,,,"2538.083333",,,,,"5068.500000",,"4.600000",,"789.133333",,,,"59.085714","0.688889","0.466667","1.177778","65.800000","0.000000","695.666667","0.000000","7.703704","686.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1663.750000",,,,,"0.000000","0.000000",,,"6800.500000","8101.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.430417",,"25.430417",,"25.430417",,,,,,,"3079.166667",,,,,"5087.250000",,"3.200000",,"599.977778",,,,"42.714286","0.933333","0.755556","1.622222","47.911111","0.000000","529.740741","0.000000","9.222222","519.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","1112.875000",,,,,"0.000000","0.000000",,,"2870.750000","3700.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.291250",,"24.291250",,"24.291250",,,,,,,"2798.416667",,,,,"4859.125000",,"6.155556",,"850.755556",,,,"66.371429","0.911111","0.422222","1.644444","74.088889","0.000000","791.111111","0.000000","9.703704","780.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","15.428571",,,,,"0.000000","0.000000",,,"4078.500000","5420.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.172500",,"27.172500",,"27.172500",,,,,,,"2495.000000",,,,,"5435.375000",,"4.200000",,"567.177778",,,,"36.971429","0.911111","0.400000","1.444444","41.111111","0.000000","457.666667","0.000000","9.666667","446.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","1092.500000",,,,,"0.000000","0.000000",,,"2884.125000","3807.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.502917",,"29.502917",,"29.502917",,,,,,,"2226.375000",,,,,"5901.583333",,"7.911111",,"821.911111",,,,"61.228571","1.200000","0.422222","1.333333","68.066667","0.000000","729.666667","0.000000","12.037037","716.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1553.250000",,,,,"0.000000","0.000000",,,"4097.875000","5404.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.967500",,"26.967500",,"26.967500",,,,,,,"2845.916667",,,,,"5394.500000",,"22.688889",,"687.955556",,,,"53.514286","2.000000","0.111111","1.111111","59.022222","0.000000","672.370370","0.000000","22.740741","645.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1315.000000",,,,,"0.000000","0.000000",,,"3882.125000","4865.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.450417",,"29.450417",,"29.450417",,,,,,,"1569.583333",,,,,"5890.833333",,"11.777778",,"1370.555556",,,,"68.057143","1.022222","0.511111","3.044444","75.711111","0.000000","803.296296","0.000000","10.185185","791.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.250000","2592.625000",,,,,"0.000000","0.000000",,,"6762.375000","8755.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.865417",,"27.865417",,"27.865417",,,,,,,"1758.708333",,,,,"5574.125000",,"3.955556",,"742.088889",,,,"53.000000","0.600000","0.333333","1.533333","59.466667","0.000000","639.444444","0.000000","6.888889","631.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.750000","1646.500000",,,,,"0.000000","0.000000",,,"7368.375000","8525.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.913333",,"29.913333",,"29.913333",,,,,,,"1079.791667",,,,,"5983.708333",,"3.688889",,"941.133333",,,,"1652.200000","0.866667","0.400000","1.177778","78.377778","0.000000","834.555556","0.000000","8.555556","824.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.875000","1952.875000",,,,,"0.000000","0.000000",,,"7825.250000","9406.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.011667",,"31.011667",,"31.011667",,,,,,,"1406.250000",,,,,"6203.416667",,"41.800000",,"766.666667",,,,"2286.228571","4.177778","0.533333","1.533333","62.555556","0.000000","723.148148","0.000000","45.148148","676.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"109.500000","1702.000000",,,,,"0.000000","0.000000",,,"7427.000000","8866.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.420833",,"29.420833",,"29.420833",,,,,,,"1792.250000",,,,,"5885.000000",,"4.311111",,"916.444444",,,,"1761.742857","1.000000","0.644444","1.755556","69.711111","0.000000","747.111111","0.000000","9.592593","736.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"82.875000","1896.875000",,,,,"0.000000","0.000000",,,"7386.250000","8546.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.850417",,"30.850417",,"30.850417",,,,,,,"1424.041667",,,,,"6170.958333",,"13.000000",,"645.088889",,,,"1473.971429","1.777778","0.711111","3.000000","52.266667","0.000000","593.629630","0.000000","19.111111","571.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1211.625000",,,,,"0.000000","0.000000",,,"3209.125000","4171.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.236667",,"28.236667",,"28.236667",,,,,,,"1981.416667",,,,,"5648.291667",,"3.777778",,"741.266667",,,,"1476.057143","0.866667","0.288889","1.466667","61.822222","0.000000","668.222222","0.000000","8.333333","658.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1402.250000",,,,,"0.000000","0.000000",,,"3729.125000","4964.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.190417",,"31.190417",,"31.190417",,,,,,,"1629.625000",,,,,"6238.958333",,"2.977778",,"848.466667",,,,"695.314286","0.755556","0.133333","1.177778","72.400000","0.000000","779.333333","0.000000","7.629630","770.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1609.250000",,,,,"0.000000","0.000000",,,"4168.750000","5444.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.638333",,"26.638333",,"26.638333",,,,,,,"2278.416667",,,,,"5328.833333",,"4.777778",,"842.044444",,,,"61.857143","0.955556","0.977778","1.844444","69.266667","0.000000","747.703704","0.000000","9.666667","736.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1587.750000",,,,,"0.000000","0.000000",,,"4070.375000","5358.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.717500",,"28.717500",,"28.717500",,,,,,,"1467.125000",,,,,"5744.416667",,"3.377778",,"827.644444",,,,"61.685714","1.111111","0.088889","0.911111","68.600000","0.000000","733.370370","0.000000","10.074074","721.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1531.625000",,,,,"0.000000","0.000000",,,"3996.750000","5177.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.725417",,"29.725417",,"29.725417",,,,,,,"1802.791667",,,,,"5946.000000",,"4.511111",,"664.022222",,,,"48.771429","0.866667","0.200000","2.066667","54.511111","0.000000","591.111111","0.000000","8.703704","581.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1249.375000",,,,,"0.000000","0.000000",,,"3295.000000","4284.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.903333",,"27.903333",,"27.903333",,,,,,,"2625.375000",,,,,"5581.708333",,"3.488889",,"816.800000",,,,"62.771429","0.844444","0.355556","1.244444","70.333333","0.000000","758.592593","0.000000","8.518519","748.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","1559.500000",,,,,"0.000000","0.000000",,,"4141.625000","5265.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.096250",,"30.096250",,"30.096250",,,,,,,"1892.916667",,,,,"6019.958333",,"3.066667",,"843.755556",,,,"63.600000","0.800000","0.311111","1.222222","71.200000","0.000000","764.222222","0.000000","8.444444","754.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1578.125000",,,,,"0.000000","0.000000",,,"4053.375000","5346.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.745833",,"28.745833",,"28.745833",,,,,,,"1493.041667",,,,,"5750.333333",,"4.822222",,"845.755556",,,,"61.857143","0.955556","0.377778","0.933333","69.000000","0.000000","739.074074","0.000000","9.629630","728.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","13.285714",,,,,"0.000000","0.000000",,,"4043.375000","5334.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.570000",,"27.570000",,"27.570000",,,,,,,"2028.208333",,,,,"5514.958333",,"28.066667",,"797.933333",,,,"62.685714","2.644444","0.244444","1.088889","67.711111","0.000000","745.703704","0.000000","27.666667","712.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.500000","1536.375000",,,,,"0.000000","0.000000",,,"4516.125000","5835.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.720000",,"34.720000",,"34.720000",,,,,,,"602.458333",,,,,"6944.791667",,"4.333333",,"874.600000",,,,"47.028571","0.777778","0.311111","3.111111","52.155556","0.000000","554.888889","0.000000","8.000000","545.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.375000","1864.750000",,,,,"0.000000","0.000000",,,"7968.500000","9324.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.176667",,"28.176667",,"28.176667",,,,,,,"2246.916667",,,,,"5636.208333",,"3.755556",,"1181.733333",,,,"51.685714","0.866667","0.266667","1.844444","57.266667","0.000000","609.629630","0.000000","8.851852","599.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","2333.875000",,,,,"0.000000","0.000000",,,"6837.000000","8522.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.516667",,"31.516667",,"31.516667",,,,,,,"796.541667",,,,,"6304.208333",,"7.400000",,"693.000000",,,,"1657.171429","0.844444","0.977778","1.600000","50.377778","0.000000","541.518519","0.000000","8.962963","531.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1319.125000",,,,,"0.000000","0.000000",,,"3373.625000","4335.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.645833",,"30.645833",,"30.645833",,,,,,,"696.375000",,,,,"6130.041667",,"9.466667",,"641.688889",,,,"2068.171429","1.444444","0.755556","2.155556","49.422222","0.000000","533.888889","0.000000","18.148148","514.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1172.625000",,,,,"0.000000","0.000000",,,"3114.500000","4007.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.793333",,"32.793333",,"32.793333",,,,,,,"792.666667",,,,,"6559.458333",,"3.644444",,"725.200000",,,,"1829.257143","0.933333","0.600000","1.400000","55.977778","0.000000","602.111111","0.000000","8.888889","591.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1389.625000",,,,,"0.000000","0.000000",,,"3540.000000","4582.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.132917",,"32.132917",,"32.132917",,,,,,,"679.750000",,,,,"6427.541667",,"4.844444",,"857.800000",,,,"1348.200000","0.955556","0.288889","1.511111","62.444444","0.000000","659.407407","0.000000","9.370370","648.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1613.625000",,,,,"0.000000","0.000000",,,"4757.000000","5548.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.356250",,"25.356250",,"25.356250",,,,,,,"2976.458333",,,,,"5072.375000",,"18.755556",,"1047.822222",,,,"1543.771429","2.200000","0.444444","2.622222","39.622222","0.000000","426.740741","0.000000","24.000000","401.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","2075.875000",,,,,"0.000000","0.000000",,,"4736.750000","7634.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.453333",,"22.453333",,"22.453333",,,,,,,"3901.791667",,,,,"4491.583333",,"8.977778",,"563.377778",,,,"823.085714","1.088889","0.444444","5.555556","49.733333","0.000000","506.814815","0.000000","11.592593","493.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.625000","1066.750000",,,,,"0.000000","0.000000",,,"2944.875000","3669.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.507500",,"22.507500",,"22.507500",,,,,,,"4598.458333",,,,,"4502.375000",,"3.866667",,"413.866667",,,,"36.971429","1.044444","0.133333","1.444444","39.288889","0.000000","397.962963","0.000000","9.851852","386.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","734.750000",,,,,"0.000000","0.000000",,,"2163.250000","2677.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.762917",,"18.762917",,"18.762917",,,,,,,"5041.916667",,,,,"3753.500000",,"4.000000",,"277.777778",,,,"22.571429","0.866667","0.333333","1.444444","23.822222","0.000000","248.000000","0.000000","8.814815","238.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","510.875000",,,,,"0.000000","0.000000",,,"1678.625000","2422.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.855833",,"19.855833",,"19.855833",,,,,,,"4403.791667",,,,,"3972.041667",,"3.911111",,"393.088889",,,,"31.285714","0.777778","0.355556","1.044444","33.600000","0.000000","348.444444","0.000000","8.111111","339.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","800.750000",,,,,"0.000000","0.000000",,,"2230.000000","2697.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.825833",,"20.825833",,"20.825833",,,,,,,"4391.000000",,,,,"4166.500000",,"3.711111",,"374.133333",,,,"35.314286","0.800000","0.133333","1.422222","38.066667","0.000000","390.851852","0.000000","8.444444","381.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","670.000000",,,,,"0.000000","0.000000",,,"2038.375000","2416.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.725833",,"19.725833",,"19.725833",,,,,,,"4732.208333",,,,,"3946.166667",,"9.355556",,"352.511111",,,,"34.257143","1.466667","0.466667","0.755556","35.777778","0.000000","372.481481","0.000000","13.925926","355.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.250000","714.500000",,,,,"0.000000","0.000000",,,"3640.875000","4009.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.491250",,"19.491250",,"19.491250",,,,,,,"4325.250000",,,,,"3899.333333",,"4.244444",,"333.977778",,,,"30.742857","0.955556","0.155556","0.844444","32.733333","0.000000","337.296296","0.000000","9.481481","326.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.000000","819.250000",,,,,"0.000000","0.000000",,,"5880.625000","6300.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.437083",,"25.437083",,"25.437083",,,,,,,"2994.083333",,,,,"5088.375000",,"23.533333",,"869.000000",,,,"44.971429","2.044444","0.222222","1.511111","46.955556","0.000000","494.777778","0.000000","23.370370","467.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1685.750000",,,,,"0.000000","0.000000",,,"4987.000000","6139.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.069583",,"27.069583",,"27.069583",,,,,,,"2464.333333",,,,,"5414.708333",,"2.733333",,"583.755556",,,,"29.057143","0.933333","0.288889","1.555556","30.866667","0.000000","317.666667","0.000000","8.962963","307.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1100.000000",,,,,"0.000000","0.000000",,,"2665.250000","3452.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.204167",,"24.204167",,"24.204167",,,,,,,"3602.166667",,,,,"4841.916667",,"6.377778",,"1882.222222",,,,"50.428571","1.133333","0.644444","5.622222","53.288889","0.000000","520.777778","0.000000","11.333333","507.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.875000","3425.875000",,,,,"0.000000","0.000000",,,"6800.625000","9337.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.820417",,"20.820417",,"20.820417",,,,,,,"4006.500000",,,,,"4165.125000",,"12.533333",,"1496.600000",,,,"1957.285714","1.200000","1.200000","4.977778","21.800000","0.000000","222.222222","0.000000","12.037037","208.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","14.142857",,,,,"0.000000","0.000000",,,"5365.875000","7516.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.324583",,"23.324583",,"23.324583",,,,,,,"4029.791667",,,,,"4665.625000",,"9.133333",,"1642.688889",,,,"2325.628571","1.000000","0.888889","6.377778","24.088889","0.000000","235.592593","0.000000","9.777778","224.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","3300.375000",,,,,"0.000000","0.000000",,,"6345.500000","9176.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.148333",,"24.148333",,"24.148333",,,,,,,"3176.833333",,,,,"4830.375000",,"4.488889",,"1973.688889",,,,"1902.400000","0.977778","0.444444","5.666667","49.955556","0.000000","495.407407","0.000000","9.481481","484.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.750000","3718.000000",,,,,"0.000000","0.000000",,,"7273.625000","9946.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.685833",,"20.685833",,"20.685833",,,,,,,"4068.708333",,,,,"4138.000000",,"9.244444",,"1780.177778",,,,"1603.600000","1.955556","0.600000","5.711111","36.155556","0.000000","362.481481","0.000000","20.296296","340.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"89.750000","3370.875000",,,,,"0.000000","0.000000",,,"7153.500000","9290.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.097500",,"21.097500",,"21.097500",,,,,,,"4415.166667",,,,,"4220.416667",,"4.977778",,"1786.333333",,,,"1362.028571","0.866667","0.133333","5.733333","37.777778","0.000000","366.777778","0.000000","8.925926","356.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.250000","3388.000000",,,,,"0.000000","0.000000",,,"6533.375000","9043.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.907083",,"17.907083",,"17.907083",,,,,,,"5216.166667",,,,,"3582.416667",,"3.333333",,"1780.533333",,,,"32.142857","0.933333","0.733333","5.777778","33.666667","0.000000","328.555556","0.000000","9.111111","317.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","3366.250000",,,,,"0.000000","0.000000",,,"6341.500000","8849.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.537083",,"19.537083",,"19.537083",,,,,,,"5090.291667",,,,,"3908.375000",,"9.577778",,"1692.911111",,,,"33.485714","1.511111","0.288889","8.777778","34.111111","0.000000","336.777778","0.000000","14.259259","319.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","3071.500000",,,,,"0.000000","0.000000",,,"5974.250000","8371.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.708750",,"20.708750",,"20.708750",,,,,,,"4542.625000",,,,,"4142.666667",,"4.800000",,"2252.711111",,,,"37.800000","1.044444","0.444444","4.488889","39.377778","0.000000","378.666667","0.000000","9.851852","367.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.000000","4418.750000",,,,,"0.000000","0.000000",,,"8257.750000","11664.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.500417",,"19.500417",,"19.500417",,,,,,,"4522.833333",,,,,"3900.791667",,"4.377778",,"1501.422222",,,,"26.514286","0.955556","0.200000","4.600000","27.200000","0.000000","262.851852","0.000000","9.518519","252.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.375000","220.285714",,,,,"0.000000","0.000000",,,"8831.875000","10903.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.796667",,"17.796667",,"17.796667",,,,,,,"4638.500000",,,,,"3560.208333",,"4.933333",,"1582.933333",,,,"41.800000","1.000000","0.200000","5.155556","44.044444","0.000000","428.370370","0.000000","9.925926","417.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.375000","3148.000000",,,,,"0.000000","0.000000",,,"8976.625000","11168.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.070417",,"17.070417",,"17.070417",,,,,,,"4887.166667",,,,,"3415.166667",,"4.911111",,"1053.400000",,,,"25.600000","1.044444","0.666667","3.022222","26.755556","0.000000","273.370370","0.000000","10.222222","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","1920.625000",,,,,"0.000000","0.000000",,,"3970.875000","5474.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.378750",,"18.378750",,"18.378750",,,,,,,"4504.291667",,,,,"3676.583333",,"67.933333",,"1308.200000",,,,"42.485714","1.600000","0.511111","3.555556","44.711111","0.000000","452.740741","0.000000","16.481481","434.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"151.375000","2539.000000",,,,,"0.000000","0.000000",,,"5534.375000","7250.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.925833",,"18.925833",,"18.925833",,,,,,,"5157.375000",,,,,"3786.333333",,"22.666667",,"621.133333",,,,"37.285714","2.022222","0.866667","2.111111","38.444444","0.000000","404.370370","0.000000","22.481481","377.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","1150.250000",,,,,"0.000000","0.000000",,,"2972.500000","3829.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.795417",,"23.795417",,"23.795417",,,,,,,"3119.083333",,,,,"4760.166667",,"3.422222",,"479.488889",,,,"37.371429","0.844444","0.177778","1.244444","40.600000","0.000000","421.777778","0.000000","8.333333","412.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","879.375000",,,,,"0.000000","0.000000",,,"2511.750000","3093.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.869167",,"18.869167",,"18.869167",,,,,,,"4801.083333",,,,,"3774.666667",,"5.244444",,"505.333333",,,,"38.342857","1.044444","0.133333","1.622222","41.400000","0.000000","431.888889","0.000000","10.407407","420.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","967.625000",,,,,"0.000000","0.000000",,,"2655.125000","3409.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.479583",,"23.479583",,"23.479583",,,,,,,"3359.625000",,,,,"4696.875000",,"2.644444",,"180.400000",,,,"2023.171429","0.933333","0.177778","2.488889","15.044444","0.000000","167.814815","0.000000","8.518519","158.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","346.000000",,,,,"0.000000","0.000000",,,"1189.875000","1432.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.362917",,"29.362917",,"29.362917",,,,,,,"2060.750000",,,,,"5873.458333",,"4.733333",,"373.044444",,,,"2292.142857","0.955556","0.133333","1.022222","34.422222","0.000000","348.000000","0.000000","9.814815","336.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.000000","663.625000",,,,,"0.000000","0.000000",,,"2108.125000","2482.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.831667",,"25.831667",,"25.831667",,,,,,,"2430.083333",,,,,"5167.375000",,"8.333333",,"565.866667",,,,"1721.857143","1.377778","0.133333","1.066667","47.355556","0.000000","483.555556","0.000000","12.592593","468.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1031.250000",,,,,"0.000000","0.000000",,,"3312.625000","3701.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.794167",,"23.794167",,"23.794167",,,,,,,"2934.041667",,,,,"4759.750000",,"6.377778",,"456.866667",,,,"1600.514286","0.933333","0.088889","1.066667","45.733333","0.000000","461.000000","0.000000","9.037037","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","845.375000",,,,,"0.000000","0.000000",,,"2517.125000","3221.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.172083",,"17.172083",,"17.172083",,,,,,,"5485.541667",,,,,"3435.208333",,"3.466667",,"170.666667",,,,"1497.057143","0.933333","0.088889","1.022222","13.266667","0.000000","145.370370","0.000000","9.333333","134.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","343.375000",,,,,"0.000000","0.000000",,,"1130.375000","1451.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.955417",,"16.955417",,"16.955417",,,,,,,"5183.666667",,,,,"3392.125000",,"109.666667",,"433.955556",,,,"40.257143","3.977778","0.466667","1.266667","40.711111","0.000000","457.074074","0.000000","43.296296","412.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"219.000000","804.750000",,,,,"0.000000","0.000000",,,"2838.750000","3191.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.264167",,"16.264167",,"16.264167",,,,,,,"5416.708333",,,,,"3253.541667",,"3.200000",,"405.111111",,,,"37.828571","0.888889","0.088889","0.822222","40.822222","0.000000","419.555556","0.000000","8.407407","409.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","830.250000",,,,,"0.000000","0.000000",,,"4113.250000","4674.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.130833",,"16.130833",,"16.130833",,,,,,,"5390.416667",,,,,"3227.208333",,"3.511111",,"384.822222",,,,"36.742857","0.933333","0.133333","1.200000","39.600000","0.000000","408.740741","0.000000","9.296296","398.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.750000","880.750000",,,,,"0.000000","0.000000",,,"5049.250000","5846.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.808750",,"19.808750",,"19.808750",,,,,,,"4472.583333",,,,,"3963.041667",,"5.422222",,"736.666667",,,,"40.800000","1.088889","0.311111","3.466667","43.955556","0.000000","457.111111","0.000000","11.037037","444.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1397.750000",,,,,"0.000000","0.000000",,,"3463.375000","4536.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.232083",,"15.232083",,"15.232083",,,,,,,"5952.375000",,,,,"3047.250000",,"3.644444",,"472.555556",,,,"29.028571","0.955556","0.400000","1.377778","31.088889","0.000000","325.629630","0.000000","8.962963","315.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","893.500000",,,,,"0.000000","0.000000",,,"2303.125000","3007.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.699167",,"18.699167",,"18.699167",,,,,,,"4859.291667",,,,,"3740.958333",,"3.311111",,"566.822222",,,,"40.428571","0.933333","0.133333","1.488889","43.600000","0.000000","445.407407","0.000000","8.703704","435.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1063.375000",,,,,"0.000000","0.000000",,,"2806.125000","3550.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.230417",,"18.230417",,"18.230417",,,,,,,"4888.166667",,,,,"3647.083333",,"4.688889",,"642.311111",,,,"32.542857","1.000000","0.133333","1.311111","34.866667","0.000000","359.814815","0.000000","9.740741","348.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","1203.375000",,,,,"0.000000","0.000000",,,"2880.875000","3761.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.436667",,"13.436667",,"13.436667",,,,,,,"6628.500000",,,,,"2688.291667",,"27.600000",,"166.422222",,,,"16.685714","2.533333","0.133333","0.911111","15.377778","0.000000","191.962963","0.000000","26.888889","159.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.375000","294.250000",,,,,"0.000000","0.000000",,,"1199.750000","1329.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.715833",,"19.715833",,"19.715833",,,,,,,"4473.083333",,,,,"3944.083333",,"4.066667",,"698.333333",,,,"35.685714","0.933333","0.177778","2.111111","38.688889","0.000000","405.037037","0.000000","9.148148","394.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1324.375000",,,,,"0.000000","0.000000",,,"3139.125000","4367.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.884167",,"19.884167",,"19.884167",,,,,,,"4239.083333",,,,,"3977.791667",,"3.755556",,"335.533333",,,,"24.085714","0.844444","1.111111","1.333333","26.088889","0.000000","283.370370","0.000000","8.740741","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","654.250000",,,,,"0.000000","0.000000",,,"1885.125000","2607.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.310417",,"18.310417",,"18.310417",,,,,,,"5189.416667",,,,,"3663.000000",,"4.933333",,"358.466667",,,,"2420.400000","1.111111","0.311111","1.822222","32.800000","0.000000","352.925926","0.000000","13.037037","338.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","684.750000",,,,,"0.000000","0.000000",,,"2000.875000","2632.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.465000",,"19.465000",,"19.465000",,,,,,,"4358.958333",,,,,"3893.833333",,"4.333333",,"393.911111",,,,"2362.314286","0.777778","0.177778","1.200000","38.000000","0.000000","394.629630","0.000000","8.370370","384.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","16.428571",,,,,"0.000000","0.000000",,,"2190.000000","2697.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.359583",,"21.359583",,"21.359583",,,,,,,"4336.250000",,,,,"4272.750000",,"3.422222",,"541.200000",,,,"2060.228571","0.933333","0.133333","1.777778","43.777778","0.000000","459.148148","0.000000","9.333333","448.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1012.500000",,,,,"0.000000","0.000000",,,"3425.625000","3691.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.265833",,"18.265833",,"18.265833",,,,,,,"5036.083333",,,,,"3654.333333",,"2.666667",,"269.133333",,,,"1648.057143","0.844444","0.200000","0.977778","26.288889","0.000000","277.333333","0.000000","8.185185","267.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","681.500000",,,,,"0.000000","0.000000",,,"5373.250000","5685.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.197083",,"17.197083",,"17.197083",,,,,,,"4896.041667",,,,,"3440.416667",,"3.422222",,"386.355556",,,,"663.171429","0.844444","0.266667","1.355556","38.800000","0.000000","407.740741","0.000000","8.740741","397.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","810.625000",,,,,"0.000000","0.000000",,,"3328.375000","3915.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.111667",,"16.111667",,"16.111667",,,,,,,"5782.125000",,,,,"3223.458333",,"3.800000",,"374.088889",,,,"34.771429","0.866667","0.133333","1.022222","37.555556","0.000000","391.518519","0.000000","8.555556","381.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","675.250000",,,,,"0.000000","0.000000",,,"2003.125000","2493.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.023750",,"17.023750",,"17.023750",,,,,,,"5190.541667",,,,,"3405.791667",,"2.600000",,"503.044444",,,,"43.371429","0.933333","0.088889","1.511111","46.822222","0.000000","477.296296","0.000000","8.925926","466.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","923.875000",,,,,"0.000000","0.000000",,,"2566.500000","3336.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.775417",,"16.775417",,"16.775417",,,,,,,"5300.708333",,,,,"3356.000000",,"3.666667",,"434.644444",,,,"43.600000","0.933333","0.133333","1.333333","46.866667","0.000000","473.592593","0.000000","9.185185","463.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","826.375000",,,,,"0.000000","0.000000",,,"2465.375000","3035.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.901667",,"16.901667",,"16.901667",,,,,,,"5474.875000",,,,,"3381.458333",,"2.422222",,"343.911111",,,,"32.742857","0.955556","0.155556","1.844444","34.888889","0.000000","355.962963","0.000000","9.074074","345.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","863.125000",,,,,"0.000000","0.000000",,,"5283.375000","6053.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.617500",,"14.617500",,"14.617500",,,,,,,"6402.583333",,,,,"2924.500000",,"8.377778",,"246.955556",,,,"25.257143","1.466667","0.133333","6.466667","25.955556","0.000000","273.111111","0.000000","13.333333","257.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","567.125000",,,,,"0.000000","0.000000",,,"3326.000000","3883.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"12.524583",,"12.524583",,"12.524583",,,,,,,"6376.166667",,,,,"2505.833333",,"3.466667",,"208.688889",,,,"20.228571","0.933333","0.533333","2.200000","21.088889","0.000000","219.370370","0.000000","8.740741","209.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","400.000000",,,,,"0.000000","0.000000",,,"1370.375000","1596.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.667917",,"17.667917",,"17.667917",,,,,,,"5635.708333",,,,,"3534.458333",,"2.622222",,"445.577778",,,,"42.200000","0.933333","0.155556","1.533333","45.311111","0.000000","456.333333","0.000000","8.481481","446.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","782.750000",,,,,"0.000000","0.000000",,,"2283.250000","2742.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.422917",,"13.422917",,"13.422917",,,,,,,"6330.041667",,,,,"2685.500000",,"21.400000",,"210.844444",,,,"20.285714","2.000000","0.111111","1.555556","20.066667","0.000000","228.740741","0.000000","22.111111","202.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.625000","397.250000",,,,,"0.000000","0.000000",,,"1391.750000","1606.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.380417",,"23.380417",,"23.380417",,,,,,,"3806.125000",,,,,"4676.708333",,"3.400000",,"617.177778",,,,"40.771429","0.933333","0.088889","2.377778","43.888889","0.000000","445.370370","0.000000","8.740741","435.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1113.875000",,,,,"0.000000","0.000000",,,"2844.125000","3666.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.631250",,"20.631250",,"20.631250",,,,,,,"4556.416667",,,,,"4127.375000",,"3.400000",,"792.688889",,,,"31.514286","0.933333","1.133333","2.688889","33.800000","0.000000","349.740741","0.000000","8.888889","339.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1542.375000",,,,,"0.000000","0.000000",,,"3396.500000","4612.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.587917",,"23.587917",,"23.587917",,,,,,,"3373.375000",,,,,"4718.166667",,"3.400000",,"481.755556",,,,"1997.800000","0.844444","0.133333","1.377778","41.155556","0.000000","433.370370","0.000000","8.259259","423.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1022.625000",,,,,"0.000000","0.000000",,,"4399.750000","5086.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.564583",,"24.564583",,"24.564583",,,,,,,"3519.416667",,,,,"4914.041667",,"3.688889",,"320.777778",,,,"2565.085714","0.933333","0.133333","1.311111","27.955556","0.000000","298.259259","0.000000","9.333333","287.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","757.375000",,,,,"0.000000","0.000000",,,"4743.500000","5232.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.986667",,"23.986667",,"23.986667",,,,,,,"3394.833333",,,,,"4798.291667",,"2.533333",,"586.377778",,,,"1801.600000","0.933333","0.133333","1.200000","46.400000","0.000000","487.888889","0.000000","8.666667","477.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.875000","1043.875000",,,,,"0.000000","0.000000",,,"3518.250000","3739.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.213750",,"22.213750",,"22.213750",,,,,,,"4269.083333",,,,,"4443.416667",,"7.844444",,"450.377778",,,,"1599.828571","1.466667","0.244444","1.600000","37.266667","0.000000","393.777778","0.000000","13.222222","377.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","863.875000",,,,,"0.000000","0.000000",,,"2342.500000","2918.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.515417",,"20.515417",,"20.515417",,,,,,,"4089.000000",,,,,"4104.250000",,"4.111111",,"420.466667",,,,"1199.285714","1.022222","0.088889","1.444444","37.066667","0.000000","386.555556","0.000000","9.592593","375.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","801.500000",,,,,"0.000000","0.000000",,,"2276.125000","3109.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.172917",,"21.172917",,"21.172917",,,,,,,"4421.125000",,,,,"4235.250000",,"2.755556",,"739.733333",,,,"42.800000","1.022222","0.088889","1.866667","46.222222","0.000000","476.555556","0.000000","9.518519","465.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1393.125000",,,,,"0.000000","0.000000",,,"3344.625000","4535.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.840417",,"19.840417",,"19.840417",,,,,,,"4291.666667",,,,,"3968.791667",,"2.511111",,"385.177778",,,,"32.885714","0.844444","0.088889","0.866667","35.488889","0.000000","366.407407","0.000000","8.037037","356.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","722.750000",,,,,"0.000000","0.000000",,,"2183.125000","3037.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.291667",,"20.291667",,"20.291667",,,,,,,"4614.333333",,,,,"4059.541667",,"3.755556",,"411.244444",,,,"35.628571","0.933333","0.311111","1.155556","38.266667","0.000000","396.074074","0.000000","9.518519","385.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","796.875000",,,,,"0.000000","0.000000",,,"2363.375000","3096.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.220833",,"18.220833",,"18.220833",,,,,,,"5276.166667",,,,,"3645.041667",,"2.644444",,"249.022222",,,,"21.485714","0.888889","0.088889","3.133333","22.688889","0.000000","239.111111","0.000000","8.333333","229.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.250000","479.500000",,,,,"0.000000","0.000000",,,"1498.500000","1986.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.927917",,"20.927917",,"20.927917",,,,,,,"4277.875000",,,,,"4186.791667",,"6.355556",,"462.155556",,,,"38.742857","1.088889","0.355556","1.266667","41.666667","0.000000","430.740741","0.000000","10.148148","419.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","868.125000",,,,,"0.000000","0.000000",,,"2488.375000","3269.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.755417",,"18.755417",,"18.755417",,,,,,,"4936.833333",,,,,"3752.083333",,"2.622222",,"389.022222",,,,"30.171429","0.933333","0.200000","1.644444","32.200000","0.000000","334.037037","0.000000","9.000000","323.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","713.375000",,,,,"0.000000","0.000000",,,"2006.250000","2515.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.352917",,"16.352917",,"16.352917",,,,,,,"5814.666667",,,,,"3271.625000",,"3.711111",,"752.666667",,,,"32.628571","0.933333","0.088889","2.711111","34.755556","0.000000","355.222222","0.000000","9.333333","344.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1502.375000",,,,,"0.000000","0.000000",,,"4342.125000","5370.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.863333",,"13.863333",,"13.863333",,,,,,,"6080.000000",,,,,"2773.791667",,"21.444444",,"215.333333",,,,"21.714286","2.000000","0.133333","0.977778","21.688889","0.000000","248.333333","0.000000","21.962963","222.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","601.750000",,,,,"0.000000","0.000000",,,"5200.875000","5453.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.919167",,"20.919167",,"20.919167",,,,,,,"3703.416667",,,,,"4185.000000",,"8.555556",,"442.866667",,,,"38.428571","1.644444","0.088889","1.311111","40.533333","0.000000","424.888889","0.000000","14.481481","407.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","787.000000",,,,,"0.000000","0.000000",,,"2339.000000","2837.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.155417",,"21.155417",,"21.155417",,,,,,,"4054.458333",,,,,"4232.041667",,"13.577778",,"567.955556",,,,"40.971429","1.400000","0.222222","2.155556","44.111111","0.000000","465.592593","0.000000","13.481481","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.625000","1078.375000",,,,,"0.000000","0.000000",,,"2940.250000","3752.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.623750",,"18.623750",,"18.623750",,,,,,,"5099.750000",,,,,"3725.791667",,"3.844444",,"262.911111",,,,"2491.600000","1.044444","0.222222","2.644444","23.955556","0.000000","259.962963","0.000000","12.444444","245.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.750000","474.500000",,,,,"0.000000","0.000000",,,"1468.250000","1861.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.632083",,"19.632083",,"19.632083",,,,,,,"4507.583333",,,,,"3927.250000",,"3.355556",,"388.755556",,,,"2334.228571","0.777778","0.288889","1.355556","35.022222","0.000000","362.296296","0.000000","7.851852","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","702.125000",,,,,"0.000000","0.000000",,,"2038.000000","2476.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.717500",,"21.717500",,"21.717500",,,,,,,"4268.333333",,,,,"4344.250000",,"3.066667",,"587.377778",,,,"1993.600000","0.933333","0.355556","1.444444","46.733333","0.000000","487.407407","0.000000","8.629630","477.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1126.625000",,,,,"0.000000","0.000000",,,"3664.000000","4042.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.412083",,"17.412083",,"17.412083",,,,,,,"5486.708333",,,,,"3483.375000",,"2.688889",,"184.688889",,,,"1771.457143","0.933333","0.133333","1.288889","17.755556","0.000000","195.185185","0.000000","8.481481","185.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.625000","317.625000",,,,,"0.000000","0.000000",,,"1094.625000","1296.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.158750",,"17.158750",,"17.158750",,,,,,,"5362.958333",,,,,"3432.541667",,"3.422222",,"386.377778",,,,"546.400000","0.844444","0.133333","1.177778","37.866667","0.000000","401.259259","0.000000","8.259259","391.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","758.125000",,,,,"0.000000","0.000000",,,"2327.750000","2918.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.318333",,"16.318333",,"16.318333",,,,,,,"5400.041667",,,,,"3264.291667",,"2.600000",,"435.333333",,,,"38.657143","0.933333","0.088889","1.000000","42.044444","0.000000","438.851852","0.000000","8.444444","429.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","18.000000",,,,,"0.000000","0.000000",,,"2272.375000","2846.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.762917",,"17.762917",,"17.762917",,,,,,,"5038.375000",,,,,"3553.416667",,"2.711111",,"460.022222",,,,"36.942857","0.933333","0.088889","1.000000","40.244444","0.000000","424.407407","0.000000","8.888889","414.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.750000","891.000000",,,,,"0.000000","0.000000",,,"2885.375000","3305.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.845000",,"15.845000",,"15.845000",,,,,,,"5632.000000",,,,,"3169.958333",,"3.688889",,"377.311111",,,,"34.485714","0.844444","0.133333","1.000000","37.488889","0.000000","396.296296","0.000000","8.703704","386.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","685.875000",,,,,"0.000000","0.000000",,,"2427.750000","2545.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.650833",,"15.650833",,"15.650833",,,,,,,"5921.583333",,,,,"3131.333333",,"8.333333",,"306.066667",,,,"28.171429","1.555556","0.088889","0.822222","29.511111","0.000000","319.740741","0.000000","14.000000","302.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.500000","562.250000",,,,,"0.000000","0.000000",,,"2005.875000","2331.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.367917",,"15.367917",,"15.367917",,,,,,,"5492.416667",,,,,"3074.583333",,"2.711111",,"354.377778",,,,"32.885714","0.955556","0.133333","0.822222","35.577778","0.000000","376.222222","0.000000","9.444444","365.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","885.500000",,,,,"0.000000","0.000000",,,"5734.125000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.462500",,"16.462500",,"16.462500",,,,,,,"5792.791667",,,,,"3293.291667",,"2.422222",,"365.822222",,,,"34.285714","0.800000","0.088889","0.977778","37.666667","0.000000","402.444444","0.000000","7.518519","393.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","709.625000",,,,,"0.000000","0.000000",,,"3024.375000","3443.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.004583",,"17.004583",,"17.004583",,,,,,,"5650.916667",,,,,"3401.791667",,"2.822222",,"367.355556",,,,"33.714286","0.844444","0.177778","1.044444","36.666667","0.000000","384.629630","0.000000","8.037037","375.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","695.000000",,,,,"0.000000","0.000000",,,"2123.375000","2659.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.058333",,"15.058333",,"15.058333",,,,,,,"5794.625000",,,,,"3012.291667",,"21.222222",,"351.400000",,,,"32.457143","1.911111","0.088889","1.000000","34.133333","0.000000","380.407407","0.000000","21.000000","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.375000","644.125000",,,,,"0.000000","0.000000",,,"2016.500000","2425.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.575417",,"18.575417",,"18.575417",,,,,,,"4860.833333",,,,,"3716.083333",,"2.466667",,"305.688889",,,,"28.000000","0.888889","0.422222","1.377778","30.155556","0.000000","321.629630","0.000000","8.851852","311.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","607.125000",,,,,"0.000000","0.000000",,,"1918.250000","2419.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.607917",,"28.607917",,"28.607917",,,,,,,"1975.791667",,,,,"5722.500000",,"3.555556",,"559.844444",,,,"38.742857","0.866667","0.444444","1.022222","42.666667","0.000000","458.851852","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1031.375000",,,,,"0.000000","0.000000",,,"2735.375000","3532.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.440417",,"17.440417",,"17.440417",,,,,,,"5369.708333",,,,,"3489.166667",,"3.600000",,"220.911111",,,,"2510.228571","1.066667","1.822222","1.111111","16.377778","0.000000","181.444444","0.000000","10.148148","169.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","426.375000",,,,,"0.000000","0.000000",,,"1293.625000","1583.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.963750",,"16.963750",,"16.963750",,,,,,,"5512.583333",,,,,"3393.458333",,"7.755556",,"95.866667",,,,"2484.657143","1.377778","0.088889","1.266667","9.600000","0.000000","114.444444","0.000000","12.703704","99.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","195.000000",,,,,"0.000000","0.000000",,,"893.000000","1139.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.052500",,"21.052500",,"21.052500",,,,,,,"4310.166667",,,,,"4211.666667",,"3.066667",,"531.488889",,,,"1968.885714","1.022222","0.911111","2.444444","41.044444","0.000000","437.370370","0.000000","9.222222","426.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.375000","966.125000",,,,,"0.000000","0.000000",,,"3288.000000","3481.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.387083",,"17.387083",,"17.387083",,,,,,,"4945.458333",,,,,"3478.541667",,"2.733333",,"299.400000",,,,"1527.000000","1.022222","0.222222","0.555556","29.777778","0.000000","317.592593","0.000000","9.518519","306.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.125000","628.625000",,,,,"0.000000","0.000000",,,"2489.125000","2953.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.143750",,"17.143750",,"17.143750",,,,,,,"5214.708333",,,,,"3429.875000",,"3.133333",,"422.422222",,,,"626.114286","0.933333","0.133333","0.711111","41.000000","0.000000","437.555556","0.000000","9.074074","427.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1036.625000",,,,,"0.000000","0.000000",,,"5725.875000","6731.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.491667",,"15.491667",,"15.491667",,,,,,,"5783.000000",,,,,"3099.166667",,"2.777778",,"375.088889",,,,"29.542857","1.111111","0.088889","2.066667","31.688889","0.000000","335.185185","0.000000","9.851852","323.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1017.125000",,,,,"0.000000","0.000000",,,"5505.750000","6864.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.681250",,"15.681250",,"15.681250",,,,,,,"5588.458333",,,,,"3137.000000",,"2.666667",,"384.377778",,,,"34.971429","1.022222","0.777778","1.022222","37.733333","0.000000","395.518519","0.000000","9.555556","384.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1006.750000",,,,,"0.000000","0.000000",,,"5475.125000","6928.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.431667",,"14.431667",,"14.431667",,,,,,,"6280.291667",,,,,"2887.666667",,"2.688889",,"180.755556",,,,"17.571429","1.022222","0.133333","1.311111","18.177778","0.000000","193.296296","0.000000","9.370370","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","619.125000",,,,,"0.000000","0.000000",,,"4520.375000","5739.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.050417",,"17.050417",,"17.050417",,,,,,,"5428.875000",,,,,"3411.000000",,"2.955556",,"427.400000",,,,"39.400000","0.911111","0.244444","0.844444","42.488889","0.000000","433.666667","0.000000","8.777778","423.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1057.375000",,,,,"0.000000","0.000000",,,"5564.125000","6850.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.108750",,"13.108750",,"13.108750",,,,,,,"6305.708333",,,,,"2622.916667",,"2.555556",,"205.844444",,,,"18.514286","0.844444","0.111111","0.866667","19.311111","0.000000","205.370370","0.000000","8.407407","195.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","597.875000",,,,,"0.000000","0.000000",,,"4809.375000","5457.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.620000",,"15.620000",,"15.620000",,,,,,,"5381.750000",,,,,"3125.041667",,"8.377778",,"387.577778",,,,"37.371429","1.644444","0.155556","1.155556","39.155556","0.000000","405.481481","0.000000","14.333333","388.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","961.750000",,,,,"0.000000","0.000000",,,"5608.875000","6570.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.203750",,"16.203750",,"16.203750",,,,,,,"5696.291667",,,,,"3241.875000",,"2.555556",,"398.711111",,,,"36.714286","0.844444","0.088889","2.444444","39.466667","0.000000","403.296296","0.000000","7.925926","394.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","994.500000",,,,,"0.000000","0.000000",,,"5465.625000","6645.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.687500",,"16.687500",,"16.687500",,,,,,,"5753.208333",,,,,"3338.583333",,"21.377778",,"309.777778",,,,"31.571429","2.000000","0.088889","0.644444","32.577778","0.000000","357.851852","0.000000","22.074074","331.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.875000","842.000000",,,,,"0.000000","0.000000",,,"5259.375000","6447.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.737083",,"15.737083",,"15.737083",,,,,,,"6035.666667",,,,,"3148.250000",,"2.600000",,"315.600000",,,,"29.857143","0.933333","0.088889","0.777778","31.888889","0.000000","328.444444","0.000000","8.518519","318.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","898.250000",,,,,"0.000000","0.000000",,,"5282.875000","6509.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.880417",,"20.880417",,"20.880417",,,,,,,"4238.750000",,,,,"4177.250000",,"2.911111",,"552.444444",,,,"47.200000","0.933333","0.177778","1.111111","51.377778","0.000000","529.444444","0.000000","8.666667","519.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","1261.750000",,,,,"0.000000","0.000000",,,"6176.625000","7568.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.545833",,"15.545833",,"15.545833",,,,,,,"5818.916667",,,,,"3109.750000",,"2.888889",,"221.844444",,,,"2243.600000","0.933333","0.177778","1.222222","20.200000","0.000000","214.148148","0.000000","9.148148","203.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","703.250000",,,,,"0.000000","0.000000",,,"4779.125000","5535.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.322083",,"20.322083",,"20.322083",,,,,,,"4711.833333",,,,,"4065.416667",,"4.111111",,"346.800000",,,,"2537.142857","1.111111","0.288889","1.622222","33.177778","0.000000","346.592593","0.000000","12.555556","332.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","916.000000",,,,,"0.000000","0.000000",,,"5456.250000","6426.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.803750",,"21.803750",,"21.803750",,,,,,,"4158.708333",,,,,"4361.416667",,"2.066667",,"594.377778",,,,"2051.657143","0.688889","0.155556","1.977778","49.333333","0.000000","502.629630","0.000000","6.888889","494.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1367.375000",,,,,"0.000000","0.000000",,,"7055.500000","7801.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.318333",,"20.318333",,"20.318333",,,,,,,"4452.500000",,,,,"4064.500000",,"2.800000",,"374.711111",,,,"1718.685714","0.933333","0.088889","0.600000","36.888889","0.000000","377.111111","0.000000","9.037037","366.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","891.375000",,,,,"0.000000","0.000000",,,"5062.125000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.300417",,"16.300417",,"16.300417",,,,,,,"4973.041667",,,,,"3261.083333",,"789.822222",,"1180.177778",,,,"628.085714","23.911111","0.244444","2.933333","43.177778","0.000000","684.629630","0.000000","259.666667","419.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1504.375000","2226.750000",,,,,"0.000000","0.000000",,,"8786.500000","8950.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.422917",,"17.422917",,"17.422917",,,,,,,"4840.875000",,,,,"3485.458333",,"24.644444",,"1105.666667",,,,"47.714286","5.800000","0.333333","7.177778","46.444444","0.000000","516.000000","0.000000","63.555556","451.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1675.000000","2195.250000",,,,,"0.000000","0.000000",,,"27946.625000","10134.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.345417",,"16.345417",,"16.345417",,,,,,,"5041.166667",,,,,"3270.125000",,"2.733333",,"1768.200000",,,,"40.771429","0.933333","0.511111","3.888889","43.022222","0.000000","420.666667","0.000000","9.037037","410.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.000000","238.000000",,,,,"0.000000","0.000000",,,"43937.375000","15437.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.193750",,"17.193750",,"17.193750",,,,,,,"4734.041667",,,,,"3439.500000",,"2.866667",,"2564.222222",,,,"46.057143","1.022222","0.888889","5.466667","48.533333","0.000000","467.814815","0.000000","9.555556","456.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1156.500000","4823.000000",,,,,"0.000000","0.000000",,,"24010.750000","13897.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.897500",,"14.897500",,"14.897500",,,,,,,"5484.708333",,,,,"2980.375000",,"4.222222",,"2010.866667",,,,"50.114286","1.200000","0.466667","2.555556","53.955556","0.000000","549.000000","0.000000","11.481481","536.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1846.000000","3610.375000",,,,,"0.000000","0.000000",,,"31614.125000","12006.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.507500",,"17.507500",,"17.507500",,,,,,,"4920.958333",,,,,"3502.416667",,"100.888889",,"678.422222",,,,"56.114286","13.711111","0.622222","2.577778","48.511111","0.000000","632.111111","0.000000","151.074074","479.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"208.750000","1475.625000",,,,,"0.000000","0.000000",,,"4179.000000","5150.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.901250",,"16.901250",,"16.901250",,,,,,,"5194.208333",,,,,"3381.208333",,"59.000000",,"402.600000",,,,"30.514286","2.244444","0.200000","1.155556","31.466667","0.000000","342.296296","0.000000","23.888889","317.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"120.875000","765.125000",,,,,"0.000000","0.000000",,,"2402.875000","2836.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.112083",,"20.112083",,"20.112083",,,,,,,"4601.166667",,,,,"4023.583333",,"12.600000",,"510.444444",,,,"45.685714","2.111111","0.155556","0.844444","48.155556","0.000000","501.925926","0.000000","22.296296","478.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","948.125000",,,,,"0.000000","0.000000",,,"2719.875000","3382.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.409583",,"19.409583",,"19.409583",,,,,,,"5240.000000",,,,,"3882.875000",,"40.488889",,"442.333333",,,,"36.428571","2.933333","0.422222","1.111111","36.511111","0.000000","400.666667","0.000000","30.740741","364.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.000000","792.250000",,,,,"0.000000","0.000000",,,"2400.125000","3078.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.445833",,"22.445833",,"22.445833",,,,,,,"4604.875000",,,,,"4490.166667",,"3.688889",,"394.222222",,,,"34.057143","0.977778","0.266667","1.511111","36.311111","0.000000","371.444444","0.000000","9.333333","360.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","742.375000",,,,,"0.000000","0.000000",,,"2211.625000","2644.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.001667",,"28.001667",,"28.001667",,,,,,,"2361.875000",,,,,"5601.291667",,"14.488889",,"1090.866667",,,,"42.771429","1.111111","0.533333","2.577778","46.000000","0.000000","470.555556","0.000000","10.703704","458.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.250000","2029.500000",,,,,"0.000000","0.000000",,,"4422.875000","5966.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.278750",,"25.278750",,"25.278750",,,,,,,"2888.458333",,,,,"5056.958333",,"2.422222",,"237.044444",,,,"2097.857143","0.888889","0.088889","1.377778","15.511111","0.000000","170.740741","0.000000","8.777778","160.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","493.625000",,,,,"0.000000","0.000000",,,"1526.250000","1966.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.602083",,"26.602083",,"26.602083",,,,,,,"3488.958333",,,,,"5321.250000",,"17.377778",,"194.244444",,,,"2865.685714","2.088889","0.511111","1.733333","12.222222","0.000000","149.888889","0.000000","21.740741","126.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.000000","364.375000",,,,,"0.000000","0.000000",,,"1261.875000","1533.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.015833",,"24.015833",,"24.015833",,,,,,,"3501.000000",,,,,"4804.041667",,"74.111111",,"1094.555556",,,,"1873.057143","1.888889","0.488889","3.000000","34.088889","0.000000","365.518519","0.000000","19.592593","344.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"217.750000","2257.875000",,,,,"0.000000","0.000000",,,"8083.750000","9344.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.054583",,"24.054583",,"24.054583",,,,,,,"3640.375000",,,,,"4812.250000",,"21.222222",,"419.911111",,,,"1652.714286","1.600000","0.822222","1.755556","29.200000","0.000000","311.851852","0.000000","16.259259","294.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1034.000000",,,,,"0.000000","0.000000",,,"6098.750000","6925.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.857083",,"23.857083",,"23.857083",,,,,,,"3570.666667",,,,,"4772.291667",,"2.644444",,"507.066667",,,,"628.314286","0.844444","0.133333","2.266667","44.622222","0.000000","455.037037","0.000000","8.148148","445.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1141.625000",,,,,"0.000000","0.000000",,,"6010.625000","6730.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.429583",,"21.429583",,"21.429583",,,,,,,"4309.666667",,,,,"4286.666667",,"4.288889",,"482.644444",,,,"35.771429","1.333333","0.177778","2.311111","37.800000","0.000000","389.518519","0.000000","13.148148","374.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","898.000000",,,,,"0.000000","0.000000",,,"2436.375000","3083.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.282500",,"21.282500",,"21.282500",,,,,,,"4127.250000",,,,,"4257.583333",,"8.222222",,"492.355556",,,,"34.000000","1.466667","0.266667","1.644444","35.555556","0.000000","370.259259","0.000000","13.814815","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","883.625000",,,,,"0.000000","0.000000",,,"2379.875000","3081.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.342500",,"20.342500",,"20.342500",,,,,,,"4774.916667",,,,,"4069.458333",,"2.666667",,"347.800000",,,,"28.257143","0.844444","0.133333","1.533333","30.177778","0.000000","311.148148","0.000000","8.000000","301.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","649.750000",,,,,"0.000000","0.000000",,,"1917.875000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.695833",,"22.695833",,"22.695833",,,,,,,"4217.333333",,,,,"4540.250000",,"2.622222",,"512.644444",,,,"31.657143","0.933333","0.133333","2.377778","33.666667","0.000000","343.851852","0.000000","9.037037","333.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","970.375000",,,,,"0.000000","0.000000",,,"2499.625000","3209.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.001667",,"20.001667",,"20.001667",,,,,,,"4967.208333",,,,,"4001.250000",,"2.622222",,"291.577778",,,,"22.457143","0.844444","0.177778","1.111111","23.955556","0.000000","252.703704","0.000000","8.259259","243.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","557.500000",,,,,"0.000000","0.000000",,,"1609.500000","1970.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.548750",,"21.548750",,"21.548750",,,,,,,"4231.958333",,,,,"4310.625000",,"15.666667",,"1081.222222",,,,"39.485714","1.066667","0.333333","2.733333","42.244444","0.000000","432.222222","0.000000","10.370370","420.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.625000","2040.625000",,,,,"0.000000","0.000000",,,"4484.625000","5878.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.865833",,"19.865833",,"19.865833",,,,,,,"4847.375000",,,,,"3974.041667",,"2.600000",,"219.888889",,,,"18.800000","0.844444","0.133333","2.977778","19.822222","0.000000","209.370370","0.000000","8.222222","199.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.625000","420.000000",,,,,"0.000000","0.000000",,,"1358.250000","1717.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.002917",,"21.002917",,"21.002917",,,,,,,"4095.375000",,,,,"4201.458333",,"25.488889",,"446.800000",,,,"39.600000","2.355556","0.133333","1.222222","41.000000","0.000000","439.629630","0.000000","25.888889","409.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","13.000000",,,,,"0.000000","0.000000",,,"2438.375000","2934.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.914167",,"24.914167",,"24.914167",,,,,,,"3470.000000",,,,,"4984.000000",,"5.311111",,"523.800000",,,,"46.371429","1.044444","7.488889","1.755556","49.800000","0.000000","505.962963","0.000000","10.518519","494.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.000000","972.500000",,,,,"0.000000","0.000000",,,"2792.375000","3615.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.814583",,"26.814583",,"26.814583",,,,,,,"2215.000000",,,,,"5363.791667",,"4.644444",,"510.155556",,,,"36.114286","1.222222","1.955556","1.311111","38.822222","0.000000","406.555556","0.000000","11.555556","393.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1117.500000",,,,,"0.000000","0.000000",,,"5327.125000","6162.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.013333",,"23.013333",,"23.013333",,,,,,,"3520.833333",,,,,"4603.916667",,"47.044444",,"723.644444",,,,"2166.971429","2.044444","0.400000","2.355556","35.311111","0.000000","375.925926","0.000000","19.814815","353.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"99.375000","1392.125000",,,,,"0.000000","0.000000",,,"5113.125000","6090.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.370833",,"25.370833",,"25.370833",,,,,,,"3870.541667",,,,,"5075.208333",,"3.777778",,"443.511111",,,,"2219.714286","0.955556","0.200000","2.666667","20.288889","0.000000","215.666667","0.000000","9.518519","204.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","884.125000",,,,,"0.000000","0.000000",,,"2080.625000","2711.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.520000",,"24.520000",,"24.520000",,,,,,,"2946.083333",,,,,"4905.083333",,"4.288889",,"559.688889",,,,"1835.571429","1.133333","0.244444","2.355556","48.377778","0.000000","499.740741","0.000000","12.925926","485.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1045.125000",,,,,"0.000000","0.000000",,,"3576.625000","3894.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.810417",,"23.810417",,"23.810417",,,,,,,"3926.291667",,,,,"4762.875000",,"51.200000",,"794.244444",,,,"1706.714286","3.311111","0.222222","2.777778","46.044444","0.000000","496.222222","0.000000","35.740741","459.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"112.500000","1479.875000",,,,,"0.000000","0.000000",,,"3789.125000","4876.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.562083",,"24.562083",,"24.562083",,,,,,,"3507.500000",,,,,"4913.416667",,"24.577778",,"722.066667",,,,"1244.571429","1.533333","0.533333","1.622222","45.444444","0.000000","480.148148","0.000000","16.185185","462.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.625000","1334.375000",,,,,"0.000000","0.000000",,,"3403.125000","4346.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.928333",,"17.928333",,"17.928333",,,,,,,"5468.125000",,,,,"3586.458333",,"21.555556",,"511.911111",,,,"28.342857","1.244444","0.466667","1.777778","30.000000","0.000000","320.629630","0.000000","13.000000","306.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1036.750000",,,,,"0.000000","0.000000",,,"2689.625000","3525.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.181667",,"20.181667",,"20.181667",,,,,,,"4778.958333",,,,,"4037.125000",,"14.888889",,"585.133333",,,,"40.800000","1.222222","0.377778","1.711111","43.822222","0.000000","451.666667","0.000000","11.444444","438.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.625000","1090.125000",,,,,"0.000000","0.000000",,,"2918.000000","3766.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.027083",,"20.027083",,"20.027083",,,,,,,"5287.833333",,,,,"4006.458333",,"3.044444",,"313.311111",,,,"28.714286","0.933333","0.133333","0.955556","30.422222","0.000000","314.740741","0.000000","9.185185","304.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","577.375000",,,,,"0.000000","0.000000",,,"1805.375000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.611250",,"18.611250",,"18.611250",,,,,,,"5161.208333",,,,,"3723.250000",,"26.977778",,"624.600000",,,,"37.171429","1.244444","0.311111","1.555556","39.844444","0.000000","415.370370","0.000000","12.925926","401.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","1185.875000",,,,,"0.000000","0.000000",,,"3044.875000","3880.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.683750",,"19.683750",,"19.683750",,,,,,,"4790.583333",,,,,"3937.666667",,"10.044444",,"470.111111",,,,"38.485714","1.488889","0.200000","1.977778","40.711111","0.000000","425.333333","0.000000","13.888889","408.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","839.625000",,,,,"0.000000","0.000000",,,"2389.000000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.312917",,"20.312917",,"20.312917",,,,,,,"4590.666667",,,,,"4063.416667",,"35.800000",,"556.355556",,,,"39.685714","1.577778","0.444444","1.533333","42.200000","0.000000","440.888889","0.000000","16.814815","422.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.625000","1161.250000",,,,,"0.000000","0.000000",,,"5508.625000","6181.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.327083",,"17.327083",,"17.327083",,,,,,,"5647.041667",,,,,"3466.250000",,"5.533333",,"307.466667",,,,"20.600000","1.177778","0.422222","1.600000","21.422222","0.000000","230.222222","0.000000","11.518519","217.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","679.125000",,,,,"0.000000","0.000000",,,"3901.500000","4401.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.451667",,"19.451667",,"19.451667",,,,,,,"4898.166667",,,,,"3891.333333",,"39.933333",,"499.666667",,,,"42.200000","2.244444","0.222222","1.577778","43.933333","0.000000","468.851852","0.000000","25.407407","439.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.000000","988.875000",,,,,"0.000000","0.000000",,,"2928.125000","3617.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.379583",,"23.379583",,"23.379583",,,,,,,"3589.416667",,,,,"4676.833333",,"5.266667",,"504.844444",,,,"38.685714","0.933333","0.311111","1.288889","41.822222","0.000000","431.111111","0.000000","9.296296","420.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.875000","896.125000",,,,,"0.000000","0.000000",,,"2474.750000","3144.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.403750",,"23.403750",,"23.403750",,,,,,,"3931.666667",,,,,"4681.666667",,"44.177778",,"575.222222",,,,"26.628571","1.688889","0.355556","2.555556","27.755556","0.000000","301.888889","0.000000","17.481481","282.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"98.875000","1121.750000",,,,,"0.000000","0.000000",,,"2903.625000","3741.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.928750",,"22.928750",,"22.928750",,,,,,,"3864.666667",,,,,"4586.750000",,"3.355556",,"496.977778",,,,"1953.200000","1.000000","0.222222","3.244444","45.600000","0.000000","464.666667","0.000000","9.592593","453.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","931.125000",,,,,"0.000000","0.000000",,,"2628.875000","3230.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.387917",,"23.387917",,"23.387917",,,,,,,"3819.583333",,,,,"4678.583333",,"3.200000",,"384.622222",,,,"2469.571429","0.933333","0.133333","1.888889","32.044444","0.000000","331.037037","0.000000","8.888889","320.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","690.375000",,,,,"0.000000","0.000000",,,"1968.250000","2558.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.147083",,"23.147083",,"23.147083",,,,,,,"4048.125000",,,,,"4630.333333",,"8.511111",,"486.000000",,,,"1986.257143","1.511111","0.133333","1.511111","33.222222","0.000000","349.111111","0.000000","14.481481","331.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.125000","912.750000",,,,,"0.000000","0.000000",,,"3127.125000","3271.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.745000",,"24.745000",,"24.745000",,,,,,,"3739.000000",,,,,"4949.916667",,"68.977778",,"513.822222",,,,"1688.514286","2.088889","0.422222","10.333333","48.333333","0.000000","499.777778","0.000000","21.074074","477.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"143.750000","944.500000",,,,,"0.000000","0.000000",,,"3030.125000","3541.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.308333",,"23.308333",,"23.308333",,,,,,,"4263.875000",,,,,"4662.708333",,"106.377778",,"426.022222",,,,"1081.914286","8.866667","0.333333","4.155556","37.088889","0.000000","466.888889","0.000000","97.074074","368.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.625000","787.000000",,,,,"0.000000","0.000000",,,"2832.875000","3240.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.671250",,"21.671250",,"21.671250",,,,,,,"5130.041667",,,,,"4335.333333",,"3.044444",,"426.688889",,,,"34.228571","0.933333","1.200000","4.666667","36.600000","0.000000","373.148148","0.000000","9.037037","362.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","797.375000",,,,,"0.000000","0.000000",,,"2765.000000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.496667",,"18.496667",,"18.496667",,,,,,,"5174.750000",,,,,"3700.500000",,"2.977778",,"338.577778",,,,"26.485714","0.755556","0.244444","2.622222","28.244444","0.000000","291.777778","0.000000","8.000000","282.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","886.250000",,,,,"0.000000","0.000000",,,"5908.625000","6575.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.277083",,"20.277083",,"20.277083",,,,,,,"5021.291667",,,,,"4056.291667",,"2.933333",,"373.111111",,,,"33.942857","0.844444","0.288889","1.244444","36.288889","0.000000","369.296296","0.000000","8.444444","359.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","701.750000",,,,,"0.000000","0.000000",,,"2372.500000","2867.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.418750",,"20.418750",,"20.418750",,,,,,,"4930.708333",,,,,"4084.750000",,"3.311111",,"442.777778",,,,"39.057143","0.955556","0.377778","1.977778","41.844444","0.000000","423.555556","0.000000","9.111111","413.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","842.000000",,,,,"0.000000","0.000000",,,"2423.250000","3121.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.302917",,"19.302917",,"19.302917",,,,,,,"5050.833333",,,,,"3861.500000",,"10.622222",,"403.133333",,,,"32.914286","1.577778","0.266667","2.355556","34.088889","0.000000","352.370370","0.000000","14.333333","335.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","698.000000",,,,,"0.000000","0.000000",,,"1987.000000","2465.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.429583",,"18.429583",,"18.429583",,,,,,,"5284.041667",,,,,"3687.000000",,"3.111111",,"343.066667",,,,"27.657143","0.844444","0.177778","1.822222","29.422222","0.000000","299.037037","0.000000","7.888889","289.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","634.250000",,,,,"0.000000","0.000000",,,"1873.375000","2320.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.332917",,"19.332917",,"19.332917",,,,,,,"5159.375000",,,,,"3867.416667",,"5.088889",,"403.977778",,,,"33.685714","0.977778","0.155556","1.355556","35.933333","0.000000","368.666667","0.000000","9.851852","357.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","16.571429",,,,,"0.000000","0.000000",,,"2105.500000","2652.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.611250",,"20.611250",,"20.611250",,,,,,,"4681.875000",,,,,"4123.458333",,"23.733333",,"1348.466667",,,,"47.028571","2.066667","0.355556","3.866667","49.111111","0.000000","506.925926","0.000000","23.037037","479.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.500000","2580.375000",,,,,"0.000000","0.000000",,,"5369.375000","7326.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.296667",,"22.296667",,"22.296667",,,,,,,"4524.791667",,,,,"4460.291667",,"51.088889",,"1164.355556",,,,"47.028571","3.600000","0.600000","2.111111","48.911111","0.000000","539.925926","0.000000","38.777778","499.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"117.875000","2159.625000",,,,,"0.000000","0.000000",,,"4862.250000","6444.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.955000",,"21.955000",,"21.955000",,,,,,,"4732.000000",,,,,"4391.916667",,"11.955556",,"491.666667",,,,"37.257143","1.200000","0.333333","2.711111","40.222222","0.000000","427.037037","0.000000","11.777778","413.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","935.625000",,,,,"0.000000","0.000000",,,"2645.500000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.781250",,"19.781250",,"19.781250",,,,,,,"4926.541667",,,,,"3957.250000",,"65.400000",,"155.577778",,,,"2099.600000","3.866667","0.333333","1.533333","10.355556","0.000000","150.925926","0.000000","41.555556","108.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"128.625000","338.250000",,,,,"0.000000","0.000000",,,"1353.375000","1542.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.461250",,"20.461250",,"20.461250",,,,,,,"4190.166667",,,,,"4093.083333",,"108.755556",,"237.866667",,,,"2259.885714","4.933333","1.111111","1.311111","16.088889","0.000000","223.444444","0.000000","53.888889","168.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.625000","609.125000",,,,,"0.000000","0.000000",,,"5263.875000","5494.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.978750",,"21.978750",,"21.978750",,,,,,,"3665.166667",,,,,"4396.541667",,"110.444444",,"582.111111",,,,"1797.857143","2.111111","0.266667","2.288889","38.155556","0.000000","418.333333","0.000000","21.666667","395.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"229.250000","1152.625000",,,,,"0.000000","0.000000",,,"4748.625000","5321.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.058333",,"23.058333",,"23.058333",,,,,,,"3673.916667",,,,,"4612.583333",,"115.222222",,"529.311111",,,,"1644.285714","2.644444","0.377778","1.688889","36.955556","0.000000","408.074074","0.000000","25.666667","379.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.125000","995.750000",,,,,"0.000000","0.000000",,,"3815.625000","3853.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.770000",,"22.770000",,"22.770000",,,,,,,"4052.916667",,,,,"4554.750000",,"199.977778",,"475.488889",,,,"1337.200000","9.244444","0.288889","1.600000","44.111111","0.000000","554.851852","0.000000","102.148148","451.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"394.250000","897.375000",,,,,"0.000000","0.000000",,,"3574.125000","3955.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.617500",,"19.617500",,"19.617500",,,,,,,"5295.583333",,,,,"3924.750000",,"124.866667",,"341.777778",,,,"32.371429","3.800000","0.222222","3.177778","32.333333","0.000000","374.296296","0.000000","41.074074","332.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"243.625000","634.625000",,,,,"0.000000","0.000000",,,"2470.375000","2752.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.918750",,"18.918750",,"18.918750",,,,,,,"5183.291667",,,,,"3784.458333",,"122.177778",,"313.577778",,,,"29.971429","3.977778","0.177778","2.222222","29.466667","0.000000","347.592593","0.000000","43.000000","303.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"245.500000","595.250000",,,,,"0.000000","0.000000",,,"2370.750000","2631.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.155417",,"18.155417",,"18.155417",,,,,,,"5161.291667",,,,,"3631.958333",,"42.066667",,"321.600000",,,,"33.314286","4.133333","0.155556","1.177778","32.844444","0.000000","382.259259","0.000000","45.037037","335.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"97.250000","613.125000",,,,,"0.000000","0.000000",,,"2246.625000","2691.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.621667",,"20.621667",,"20.621667",,,,,,,"4642.333333",,,,,"4125.375000",,"20.844444",,"396.044444",,,,"41.742857","5.666667","0.666667","1.022222","40.844444","0.000000","482.962963","0.000000","60.555556","420.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.250000","745.500000",,,,,"0.000000","0.000000",,,"2427.375000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.285000",,"19.285000",,"19.285000",,,,,,,"5316.500000",,,,,"3858.083333",,"34.133333",,"341.177778",,,,"35.028571","7.755556","0.155556","1.111111","31.288889","0.000000","409.185185","0.000000","83.222222","323.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.500000","672.375000",,,,,"0.000000","0.000000",,,"2312.125000","2894.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.031667",,"21.031667",,"21.031667",,,,,,,"4721.416667",,,,,"4207.083333",,"12.177778",,"419.200000",,,,"36.314286","1.666667","0.200000","0.800000","38.933333","0.000000","422.074074","0.000000","17.111111","403.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","746.250000",,,,,"0.000000","0.000000",,,"2353.875000","2799.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.256250",,"22.256250",,"22.256250",,,,,,,"4469.041667",,,,,"4452.208333",,"19.933333",,"401.955556",,,,"33.971429","2.511111","0.200000","0.933333","35.222222","0.000000","391.259259","0.000000","27.000000","362.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.625000","797.000000",,,,,"0.000000","0.000000",,,"2391.125000","3007.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.030000",,"22.030000",,"22.030000",,,,,,,"4128.125000",,,,,"4407.000000",,"21.711111",,"445.400000",,,,"37.228571","2.000000","0.266667","1.133333","39.000000","0.000000","426.333333","0.000000","22.333333","399.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.750000","967.375000",,,,,"0.000000","0.000000",,,"5382.875000","5977.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.772083",,"26.772083",,"26.772083",,,,,,,"3155.500000",,,,,"5355.333333",,"16.333333",,"355.155556",,,,"25.342857","1.666667","0.933333","1.666667","26.466667","0.000000","292.333333","0.000000","17.666667","273.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.375000","772.625000",,,,,"0.000000","0.000000",,,"3880.625000","4363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.993750",,"30.993750",,"30.993750",,,,,,,"2489.625000",,,,,"6199.458333",,"3.600000",,"853.111111",,,,"32.457143","0.977778","0.266667","9.711111","34.955556","0.000000","367.740741","0.000000","9.555556","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1611.000000",,,,,"0.000000","0.000000",,,"3485.875000","4789.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.934167",,"28.934167",,"28.934167",,,,,,,"2990.500000",,,,,"5787.833333",,"19.288889",,"635.600000",,,,"1886.085714","2.555556","0.466667","3.222222","23.000000","0.000000","262.629630","0.000000","27.370370","233.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.375000","1233.250000",,,,,"0.000000","0.000000",,,"2735.000000","3695.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.990417",,"26.990417",,"26.990417",,,,,,,"2782.541667",,,,,"5398.750000",,"9.200000",,"400.511111",,,,"2459.628571","1.444444","0.422222","4.533333","15.088889","0.000000","175.444444","0.000000","18.703704","155.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","746.375000",,,,,"0.000000","0.000000",,,"1820.250000","2331.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.690000",,"27.690000",,"27.690000",,,,,,,"2734.083333",,,,,"5539.041667",,"19.111111",,"519.577778",,,,"1731.657143","2.444444","0.311111","2.711111","30.400000","0.000000","338.777778","0.000000","25.111111","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.375000","988.375000",,,,,"0.000000","0.000000",,,"3288.625000","3676.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.105833",,"32.105833",,"32.105833",,,,,,,"2585.583333",,,,,"6422.250000",,"3.866667",,"516.022222",,,,"1737.000000","0.866667","0.044444","1.955556","39.266667","0.000000","411.703704","0.000000","8.666667","401.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","952.500000",,,,,"0.000000","0.000000",,,"2538.250000","3243.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.821667",,"28.821667",,"28.821667",,,,,,,"2430.958333",,,,,"5765.458333",,"319.444444",,"489.933333",,,,"1317.257143","7.844444","2.088889","2.866667","35.977778","0.000000","449.259259","0.000000","81.814815","365.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"621.125000","914.625000",,,,,"0.000000","0.000000",,,"4071.000000","4154.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.548333",,"25.548333",,"25.548333",,,,,,,"3626.416667",,,,,"5110.625000",,"6.400000",,"440.111111",,,,"30.857143","1.044444","1.244444","1.777778","33.177778","0.000000","348.666667","0.000000","10.333333","337.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","920.125000",,,,,"0.000000","0.000000",,,"3585.375000","4280.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.844583",,"23.844583",,"23.844583",,,,,,,"3946.166667",,,,,"4769.958333",,"3.111111",,"355.755556",,,,"25.000000","0.933333","0.866667","2.511111","26.666667","0.000000","283.592593","0.000000","9.333333","272.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","914.750000",,,,,"0.000000","0.000000",,,"5480.500000","6309.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.641667",,"25.641667",,"25.641667",,,,,,,"3980.291667",,,,,"5129.416667",,"3.133333",,"345.644444",,,,"25.742857","1.022222","0.444444","1.800000","27.555556","0.000000","296.148148","0.000000","9.851852","284.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","694.875000",,,,,"0.000000","0.000000",,,"2156.000000","2752.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.242500",,"27.242500",,"27.242500",,,,,,,"3602.958333",,,,,"5449.250000",,"3.600000",,"426.177778",,,,"31.685714","0.955556","0.288889","1.577778","34.355556","0.000000","365.296296","0.000000","9.629630","354.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","856.625000",,,,,"0.000000","0.000000",,,"3376.125000","4004.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.987917",,"24.987917",,"24.987917",,,,,,,"3892.250000",,,,,"4998.375000",,"3.266667",,"384.622222",,,,"28.800000","0.688889","0.977778","1.777778","31.155556","0.000000","327.333333","0.000000","7.407407","318.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","918.625000",,,,,"0.000000","0.000000",,,"5638.625000","6171.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.180833",,"26.180833",,"26.180833",,,,,,,"3954.333333",,,,,"5237.250000",,"3.666667",,"336.822222",,,,"26.628571","0.933333","0.355556","1.755556","28.400000","0.000000","299.518519","0.000000","9.407407","288.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","17.571429",,,,,"0.000000","0.000000",,,"1933.875000","2362.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.375417",,"24.375417",,"24.375417",,,,,,,"3811.041667",,,,,"4875.875000",,"9.488889",,"384.800000",,,,"27.657143","1.600000","0.222222","4.333333","28.488889","0.000000","303.888889","0.000000","14.925926","286.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","688.125000",,,,,"0.000000","0.000000",,,"1897.375000","2363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.558333",,"25.558333",,"25.558333",,,,,,,"4546.125000",,,,,"5112.875000",,"22.066667",,"290.377778",,,,"19.800000","1.911111","0.644444","3.000000","19.400000","0.000000","221.777778","0.000000","21.740741","196.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.125000","564.125000",,,,,"0.000000","0.000000",,,"1678.125000","2137.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.363333",,"20.363333",,"20.363333",,,,,,,"5021.291667",,,,,"4073.833333",,"3.266667",,"544.933333",,,,"17.828571","0.777778","0.488889","4.511111","18.577778","0.000000","195.962963","0.000000","8.037037","186.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1023.625000",,,,,"0.000000","0.000000",,,"2298.125000","3142.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.050417",,"29.050417",,"29.050417",,,,,,,"2981.791667",,,,,"5810.958333",,"5.600000",,"471.577778",,,,"31.600000","1.022222","0.422222","2.488889","34.177778","0.000000","362.259259","0.000000","9.814815","351.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","876.875000",,,,,"0.000000","0.000000",,,"2333.750000","3005.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.135833",,"24.135833",,"24.135833",,,,,,,"4103.583333",,,,,"4827.875000",,"4.800000",,"427.222222",,,,"1936.885714","0.955556","0.444444","5.266667","31.044444","0.000000","330.555556","0.000000","9.629630","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","819.500000",,,,,"0.000000","0.000000",,,"2187.250000","2764.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.093333",,"23.093333",,"23.093333",,,,,,,"4516.666667",,,,,"4619.666667",,"3.733333",,"131.222222",,,,"2343.942857","0.800000","0.755556","4.933333","6.511111","0.000000","77.370370","0.000000","8.370370","67.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","259.125000",,,,,"0.000000","0.000000",,,"854.625000","1107.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.731667",,"24.731667",,"24.731667",,,,,,,"3873.416667",,,,,"4947.375000",,"4.311111",,"345.377778",,,,"1820.628571","0.977778","0.311111","2.266667","17.577778","0.000000","194.111111","0.000000","10.148148","181.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","656.500000",,,,,"0.000000","0.000000",,,"2409.625000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.020000",,"26.020000",,"26.020000",,,,,,,"3419.833333",,,,,"5204.916667",,"3.511111",,"409.622222",,,,"1622.628571","0.777778","0.155556","2.022222","31.466667","0.000000","339.296296","0.000000","8.148148","329.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","754.000000",,,,,"0.000000","0.000000",,,"2048.375000","2616.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.212083",,"23.212083",,"23.212083",,,,,,,"3907.083333",,,,,"4643.416667",,"3.577778",,"316.200000",,,,"1369.000000","0.866667","0.555556","1.733333","25.355556","0.000000","271.481481","0.000000","8.481481","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","807.000000",,,,,"0.000000","0.000000",,,"5782.500000","6142.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.110417",,"23.110417",,"23.110417",,,,,,,"4242.791667",,,,,"4623.250000",,"3.577778",,"409.088889",,,,"29.571429","0.866667","0.266667","1.933333","32.111111","0.000000","342.148148","0.000000","8.444444","332.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","820.500000",,,,,"0.000000","0.000000",,,"2967.375000","3440.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.886667",,"22.886667",,"22.886667",,,,,,,"4692.750000",,,,,"4578.291667",,"4.422222",,"338.311111",,,,"24.485714","0.977778","0.444444","1.377778","26.000000","0.000000","276.222222","0.000000","10.074074","264.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","613.750000",,,,,"0.000000","0.000000",,,"1764.500000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.199167",,"25.199167",,"25.199167",,,,,,,"4138.750000",,,,,"5040.583333",,"12.288889",,"486.866667",,,,"41.514286","3.266667","0.711111","1.733333","41.977778","0.000000","465.148148","0.000000","29.185185","428.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","927.375000",,,,,"0.000000","0.000000",,,"2607.250000","3191.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.387917",,"23.387917",,"23.387917",,,,,,,"4200.000000",,,,,"4678.791667",,"4.355556",,"459.266667",,,,"35.485714","1.133333","0.200000","1.488889","38.200000","0.000000","400.925926","0.000000","10.629630","388.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","820.375000",,,,,"0.000000","0.000000",,,"2342.250000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.585000",,"23.585000",,"23.585000",,,,,,,"4408.333333",,,,,"4717.833333",,"2.844444",,"427.600000",,,,"33.800000","0.977778","0.333333","2.377778","36.688889","0.000000","386.814815","0.000000","9.037037","376.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","817.500000",,,,,"0.000000","0.000000",,,"2398.875000","2851.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.860833",,"22.860833",,"22.860833",,,,,,,"4273.875000",,,,,"4573.208333",,"5.000000",,"617.400000",,,,"32.800000","0.977778","0.755556","2.800000","35.311111","0.000000","369.111111","0.000000","9.814815","358.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1178.375000",,,,,"0.000000","0.000000",,,"2931.375000","3814.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.021250",,"22.021250",,"22.021250",,,,,,,"4434.583333",,,,,"4405.208333",,"5.355556",,"931.066667",,,,"34.314286","1.066667","0.311111","4.022222","37.000000","0.000000","390.333333","0.000000","10.962963","377.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1743.125000",,,,,"0.000000","0.000000",,,"3817.250000","5044.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.584583",,"23.584583",,"23.584583",,,,,,,"4611.833333",,,,,"4717.833333",,"25.622222",,"365.155556",,,,"29.542857","2.311111","0.711111","1.888889","30.177778","0.000000","340.407407","0.000000","25.555556","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.500000","662.125000",,,,,"0.000000","0.000000",,,"2009.875000","2430.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.106250",,"21.106250",,"21.106250",,,,,,,"4887.875000",,,,,"4222.250000",,"103.400000",,"408.311111",,,,"27.400000","2.977778","0.422222","3.000000","27.511111","0.000000","319.222222","0.000000","32.370370","285.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","804.625000",,,,,"0.000000","0.000000",,,"2537.375000","2837.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.006667",,"29.006667",,"29.006667",,,,,,,"2160.541667",,,,,"5802.166667",,"182.555556",,"2337.155556",,,,"50.028571","3.911111","0.422222","3.888889","51.355556","0.000000","553.962963","0.000000","41.444444","511.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.750000","4417.375000",,,,,"0.000000","0.000000",,,"10063.375000","12718.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.353333",,"29.353333",,"29.353333",,,,,,,"2219.166667",,,,,"5871.708333",,"4.311111",,"367.688889",,,,"1833.342857","1.088889","0.266667","1.777778","24.555556","0.000000","264.111111","0.000000","10.111111","252.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","928.500000",,,,,"0.000000","0.000000",,,"5671.625000","6342.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.422083",,"34.422083",,"34.422083",,,,,,,"1030.708333",,,,,"6885.250000",,"3.488889",,"189.155556",,,,"2206.657143","0.844444","0.266667","1.288889","12.288889","0.000000","135.740741","0.000000","8.481481","126.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","389.125000",,,,,"0.000000","0.000000",,,"1684.000000","1917.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.240833",,"33.240833",,"33.240833",,,,,,,"1358.458333",,,,,"6649.250000",,"4.177778",,"470.688889",,,,"1726.771429","0.955556","0.222222","1.888889","38.022222","0.000000","404.814815","0.000000","9.296296","394.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","887.875000",,,,,"0.000000","0.000000",,,"3387.125000","3392.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.927500",,"30.927500",,"30.927500",,,,,,,"2188.666667",,,,,"6186.416667",,"3.777778",,"477.244444",,,,"1989.428571","0.911111","0.111111","1.622222","34.533333","0.000000","368.148148","0.000000","9.000000","357.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","894.875000",,,,,"0.000000","0.000000",,,"2517.500000","2988.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.624583",,"27.624583",,"27.624583",,,,,,,"3653.875000",,,,,"5525.583333",,"9.755556",,"369.333333",,,,"1366.742857","1.777778","0.222222","1.511111","34.488889","0.000000","370.000000","0.000000","16.777778","349.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","673.750000",,,,,"0.000000","0.000000",,,"2012.500000","2480.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.403750",,"21.403750",,"21.403750",,,,,,,"4175.625000",,,,,"4281.791667",,"39.111111",,"447.355556",,,,"38.914286","1.200000","2.577778","1.844444","41.933333","0.000000","442.592593","0.000000","11.481481","429.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"83.625000","822.000000",,,,,"0.000000","0.000000",,,"2578.375000","3057.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.831250",,"20.831250",,"20.831250",,,,,,,"4506.458333",,,,,"4167.416667",,"4.177778",,"332.466667",,,,"24.942857","0.888889","0.266667","1.466667","26.666667","0.000000","283.703704","0.000000","9.074074","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","601.625000",,,,,"0.000000","0.000000",,,"1725.000000","2297.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.585833",,"21.585833",,"21.585833",,,,,,,"4385.916667",,,,,"4317.916667",,"64.755556",,"690.622222",,,,"40.771429","1.955556","0.688889","2.977778","43.200000","0.000000","460.111111","0.000000","20.518519","438.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.875000","1303.500000",,,,,"0.000000","0.000000",,,"3527.625000","4381.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.914583",,"19.914583",,"19.914583",,,,,,,"4630.958333",,,,,"3984.125000",,"7.133333",,"279.466667",,,,"22.000000","1.333333","0.244444","1.088889","22.844444","0.000000","249.851852","0.000000","13.740741","234.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","563.625000",,,,,"0.000000","0.000000",,,"1700.250000","2185.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.425417",,"20.425417",,"20.425417",,,,,,,"4162.375000",,,,,"4085.833333",,"3.777778",,"408.511111",,,,"34.771429","0.977778","0.222222","1.422222","37.466667","0.000000","391.740741","0.000000","9.592593","380.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","216.714286",,,,,"0.000000","0.000000",,,"4464.375000","5315.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.187917",,"20.187917",,"20.187917",,,,,,,"4513.583333",,,,,"4038.583333",,"3.888889",,"325.111111",,,,"28.485714","0.800000","0.244444","1.022222","30.755556","0.000000","324.074074","0.000000","8.333333","314.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","878.000000",,,,,"0.000000","0.000000",,,"5278.500000","6432.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.915833",,"23.915833",,"23.915833",,,,,,,"4044.875000",,,,,"4784.166667",,"4.511111",,"484.955556",,,,"38.000000","0.977778","0.400000","2.200000","41.288889","0.000000","434.481481","0.000000","9.666667","423.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1196.875000",,,,,"0.000000","0.000000",,,"5820.000000","7306.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.827917",,"22.827917",,"22.827917",,,,,,,"4715.666667",,,,,"4566.708333",,"24.000000",,"452.733333",,,,"30.628571","2.244444","0.222222","2.577778","31.377778","0.000000","347.259259","0.000000","24.592593","318.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.625000","1128.500000",,,,,"0.000000","0.000000",,,"5632.000000","7114.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.049583",,"25.049583",,"25.049583",,,,,,,"3711.625000",,,,,"5010.541667",,"3.844444",,"411.133333",,,,"31.314286","0.688889","0.155556","1.555556","33.933333","0.000000","351.481481","0.000000","7.333333","343.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1039.375000",,,,,"0.000000","0.000000",,,"5402.000000","6802.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.970000",,"26.970000",,"26.970000",,,,,,,"3415.541667",,,,,"5394.833333",,"3.488889",,"627.511111",,,,"46.371429","1.022222","0.288889","1.600000","50.333333","0.000000","522.222222","0.000000","10.185185","510.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.750000","1465.125000",,,,,"0.000000","0.000000",,,"6322.000000","7983.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.988333",,"22.988333",,"22.988333",,,,,,,"4584.083333",,,,,"4598.666667",,"404.111111",,"262.288889",,,,"1861.200000","10.800000","0.377778","2.600000","9.666667","0.000000","218.888889","0.000000","118.518519","98.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"725.375000","785.250000",,,,,"0.000000","0.000000",,,"6485.750000","7040.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.033333",,"26.033333",,"26.033333",,,,,,,"3534.041667",,,,,"5207.458333",,"268.933333",,"734.266667",,,,"2347.085714","8.244444","0.555556","4.000000","43.244444","0.000000","523.185185","0.000000","86.111111","432.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"484.250000","1650.875000",,,,,"0.000000","0.000000",,,"7747.875000","9121.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.753333",,"22.753333",,"22.753333",,,,,,,"4215.791667",,,,,"4551.625000",,"116.533333",,"686.733333",,,,"1781.085714","3.422222","0.533333","3.088889","14.111111","0.000000","175.666667","0.000000","36.518519","137.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"342.000000","1281.750000",,,,,"0.000000","0.000000",,,"6225.625000","7415.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.508750",,"25.508750",,"25.508750",,,,,,,"3113.041667",,,,,"5102.541667",,"295.533333",,"1229.333333",,,,"1659.000000","4.711111","0.622222","2.800000","45.266667","0.000000","504.481481","0.000000","50.518519","452.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"638.500000","2849.750000",,,,,"0.000000","0.000000",,,"10561.875000","12131.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.012917",,"24.012917",,"24.012917",,,,,,,"3588.500000",,,,,"4803.500000",,"46.933333",,"726.111111",,,,"1502.542857","2.200000","0.533333","2.088889","38.222222","0.000000","412.814815","0.000000","22.777778","388.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.375000","1656.625000",,,,,"0.000000","0.000000",,,"6671.875000","8329.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.888750",,"20.888750",,"20.888750",,,,,,,"4954.666667",,,,,"4178.583333",,"449.111111",,"1191.933333",,,,"36.714286","9.555556","0.577778","2.644444","31.200000","0.000000","416.518519","0.000000","104.777778","310.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"784.000000","2513.250000",,,,,"0.000000","0.000000",,,"9665.500000","11292.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.364583",,"20.364583",,"20.364583",,,,,,,"5137.708333",,,,,"4073.708333",,"854.622222",,"604.288889",,,,"47.000000","19.133333","0.355556","3.844444","33.533333","0.000000","549.444444","0.000000","210.296296","337.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1735.875000","1457.875000",,,,,"0.000000","0.000000",,,"10736.375000","10653.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.767917",,"20.767917",,"20.767917",,,,,,,"4757.625000",,,,,"4154.500000",,"860.577778",,"908.533333",,,,"53.685714","19.555556","0.622222","4.244444","40.577778","0.000000","623.925926","0.000000","215.370370","407.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1625.375000","2014.500000",,,,,"0.000000","0.000000",,,"11235.875000","11732.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.132500",,"21.132500",,"21.132500",,,,,,,"4617.833333",,,,,"4227.541667",,"736.066667",,"774.977778",,,,"45.657143","16.355556","0.377778","4.422222","34.755556","0.000000","529.518519","0.000000","178.814815","349.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.285714","1546.625000",,,,,"0.000000","0.000000",,,"10344.000000","9835.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.032500",,"22.032500",,"22.032500",,,,,,,"4439.125000",,,,,"4407.500000",,"6.955556",,"1212.955556",,,,"33.200000","1.444444","0.266667","2.533333","35.044444","0.000000","367.185185","0.000000","14.888889","350.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.625000","2496.750000",,,,,"0.000000","0.000000",,,"6941.375000","8642.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.887083",,"22.887083",,"22.887083",,,,,,,"4623.125000",,,,,"4578.166667",,"36.111111",,"639.933333",,,,"33.885714","4.066667","0.288889","2.244444","33.533333","0.000000","384.777778","0.000000","44.148148","339.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.875000","1476.375000",,,,,"0.000000","0.000000",,,"7324.875000","8542.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.245000",,"24.245000",,"24.245000",,,,,,,"4126.791667",,,,,"4850.000000",,"40.022222",,"1423.977778",,,,"53.914286","3.088889","0.511111","2.844444","56.822222","0.000000","613.888889","0.000000","33.629630","578.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"102.000000","2594.875000",,,,,"0.000000","0.000000",,,"5679.000000","7386.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.482917",,"23.482917",,"23.482917",,,,,,,"4209.791667",,,,,"4697.541667",,"59.688889",,"2362.977778",,,,"59.542857","3.977778","0.422222","2.933333","60.444444","0.000000","631.888889","0.000000","42.629630","584.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.250000","11.571429",,,,,"0.000000","0.000000",,,"8825.000000","11966.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.870833",,"22.870833",,"22.870833",,,,,,,"4536.250000",,,,,"4575.208333",,"140.377778",,"1395.600000",,,,"47.342857","5.200000","0.400000","4.711111","46.800000","0.000000","513.518519","0.000000","56.444444","455.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"292.250000","2293.625000",,,,,"0.000000","0.000000",,,"5536.625000","6930.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.235000",,"27.235000",,"27.235000",,,,,,,"3163.125000",,,,,"5447.750000",,"1359.911111",,"734.088889",,,,"55.457143","25.533333","1.000000","1.911111","36.444444","0.000000","641.185185","0.000000","280.333333","359.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2495.500000","1715.250000",,,,,"0.000000","0.000000",,,"10135.250000","8688.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.585417",,"27.585417",,"27.585417",,,,,,,"3161.750000",,,,,"5518.000000",,"722.422222",,"1016.733333",,,,"2006.200000","19.288889","0.422222","5.555556","35.800000","0.000000","560.555556","0.000000","211.629630","347.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1381.875000","1915.750000",,,,,"0.000000","0.000000",,,"7565.500000","7570.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.499167",,"31.499167",,"31.499167",,,,,,,"1918.166667",,,,,"6300.625000",,"679.711111",,"926.866667",,,,"2397.942857","15.866667","0.377778","2.800000","45.822222","0.000000","626.740741","0.000000","173.740741","451.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1407.875000","1750.500000",,,,,"0.000000","0.000000",,,"7460.375000","7272.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.340833",,"24.340833",,"24.340833",,,,,,,"3643.541667",,,,,"4869.291667",,"1056.933333",,"231.400000",,,,"2063.371429","19.688889","0.333333","1.488889","13.733333","0.000000","357.777778","0.000000","215.925926","140.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1918.250000","473.250000",,,,,"0.000000","0.000000",,,"6299.750000","4447.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.610417",,"27.610417",,"27.610417",,,,,,,"2806.791667",,,,,"5523.000000",,"1150.311111",,"584.244444",,,,"1536.857143","28.400000","0.311111","1.466667","43.444444","0.000000","745.814815","0.000000","312.185185","432.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2300.125000","1068.750000",,,,,"0.000000","0.000000",,,"9381.375000","7172.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.976667",,"27.976667",,"27.976667",,,,,,,"2958.166667",,,,,"5596.125000",,"1105.111111",,"1086.511111",,,,"1245.657143","21.488889","0.400000","4.555556","48.955556","0.000000","716.444444","0.000000","236.592593","478.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2038.250000","2052.750000",,,,,"0.000000","0.000000",,,"9701.125000","8926.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.550000",,"26.550000",,"26.550000",,,,,,,"3721.500000",,,,,"5310.958333",,"614.377778",,"868.866667",,,,"54.228571","13.822222","0.222222","2.333333","46.288889","0.000000","609.629630","0.000000","151.851852","456.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1289.500000","1618.125000",,,,,"0.000000","0.000000",,,"7066.375000","6734.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.659583",,"28.659583",,"28.659583",,,,,,,"3554.125000",,,,,"5733.166667",,"5.666667",,"418.644444",,,,"34.000000","1.066667","0.244444","1.800000","36.266667","0.000000","373.740741","0.000000","11.296296","361.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.125000","970.375000",,,,,"0.000000","0.000000",,,"5646.625000","6314.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.708333",,"26.708333",,"26.708333",,,,,,,"4164.916667",,,,,"5342.708333",,"51.022222",,"291.755556",,,,"24.428571","1.844444","1.800000","1.288889","24.955556","0.000000","269.703704","0.000000","19.333333","249.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"111.625000","605.125000",,,,,"0.000000","0.000000",,,"3260.125000","3502.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.214583",,"27.214583",,"27.214583",,,,,,,"3649.208333",,,,,"5443.875000",,"5.866667",,"431.933333",,,,"35.114286","1.066667","0.266667","0.955556","37.444444","0.000000","384.111111","0.000000","11.222222","371.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","794.125000",,,,,"0.000000","0.000000",,,"2245.375000","2754.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.018333",,"26.018333",,"26.018333",,,,,,,"3707.875000",,,,,"5204.541667",,"5.355556",,"423.355556",,,,"34.085714","1.022222","0.200000","1.422222","36.111111","0.000000","364.629630","0.000000","9.814815","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","821.750000",,,,,"0.000000","0.000000",,,"2301.375000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.464167",,"27.464167",,"27.464167",,,,,,,"3884.833333",,,,,"5493.750000",,"10.155556",,"442.866667",,,,"34.485714","1.622222","0.355556","1.622222","35.777778","0.000000","368.407407","0.000000","15.222222","350.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","808.250000",,,,,"0.000000","0.000000",,,"2240.000000","2816.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.701250",,"17.701250",,"17.701250",,,,,,,"5011.291667",,,,,"3541.208333",,"1284.777778",,"695.266667",,,,"53.142857","23.266667","0.355556","3.688889","36.022222","0.000000","611.407407","0.000000","255.370370","354.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2433.625000","1326.125000",,,,,"0.000000","0.000000",,,"9949.000000","8372.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.350417",,"15.350417",,"15.350417",,,,,,,"5382.250000",,,,,"3071.000000",,"1021.622222",,"401.822222",,,,"47.142857","24.044444","0.311111","1.733333","28.466667","0.000000","552.148148","0.000000","265.185185","283.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1899.125000","1010.125000",,,,,"0.000000","0.000000",,,"10457.625000","9363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.290833",,"21.290833",,"21.290833",,,,,,,"3619.541667",,,,,"4259.166667",,"1152.755556",,"1107.355556",,,,"66.057143","22.422222","0.288889","2.755556","51.244444","0.000000","752.481481","0.000000","246.555556","504.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.000000","2143.750000",,,,,"0.000000","0.000000",,,"11082.375000","10263.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.514583",,"17.514583",,"17.514583",,,,,,,"5009.291667",,,,,"3503.916667",,"509.822222",,"551.244444",,,,"39.342857","22.688889","0.466667","2.733333","21.822222","0.000000","474.296296","0.000000","251.000000","222.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1031.750000","1032.000000",,,,,"0.000000","0.000000",,,"5165.250000","5015.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.677083",,"16.677083",,"16.677083",,,,,,,"4875.791667",,,,,"3336.375000",,"1580.733333",,"1680.155556",,,,"2085.142857","37.311111","0.688889","4.422222","31.422222","0.000000","706.518519","0.000000","410.666667","294.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2951.750000","14.000000",,,,,"0.000000","0.000000",,,"13374.875000","12946.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.907917",,"20.907917",,"20.907917",,,,,,,"3977.750000",,,,,"4182.583333",,"1303.755556",,"1908.777778",,,,"2471.485714","31.622222","1.066667","7.533333","51.777778","0.000000","838.925926","0.000000","347.185185","490.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.714286","3601.125000",,,,,"0.000000","0.000000",,,"13378.000000","13419.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.235000",,"17.235000",,"17.235000",,,,,,,"5147.250000",,,,,"3447.916667",,"460.266667",,"927.022222",,,,"1903.028571","16.422222","0.466667","4.577778","14.866667","0.000000","325.148148","0.000000","180.962963","143.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1584.750000","1394.000000",,,,,"0.000000","0.000000",,,"14222.625000","6818.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.307083",,"20.307083",,"20.307083",,,,,,,"3968.958333",,,,,"4062.708333",,"34.555556",,"1291.622222",,,,"1599.142857","3.355556","1.266667","14.333333","28.288889","0.000000","316.296296","0.000000","36.407407","278.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1666.625000","3053.125000",,,,,"0.000000","0.000000",,,"30891.750000","13841.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.724167",,"16.724167",,"16.724167",,,,,,,"5358.458333",,,,,"3345.833333",,"10.844444",,"2037.777778",,,,"1145.828571","1.466667","6.844444","39.977778","22.822222","0.000000","233.962963","0.000000","16.037037","215.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"297.250000","3983.375000",,,,,"0.000000","0.000000",,,"11017.000000","11143.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.643750",,"13.643750",,"13.643750",,,,,,,"6606.375000",,,,,"2729.666667",,"7.400000",,"491.866667",,,,"17.371429","1.177778","1.022222","19.600000","17.777778","0.000000","197.666667","0.000000","11.962963","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"80.750000","1036.250000",,,,,"0.000000","0.000000",,,"3139.000000","3352.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"12.636667",,"12.636667",,"12.636667",,,,,,,"6646.916667",,,,,"2528.291667",,"4.911111",,"421.444444",,,,"18.114286","1.044444","0.733333","15.133333","19.000000","0.000000","209.444444","0.000000","10.148148","197.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","809.375000",,,,,"0.000000","0.000000",,,"1915.125000","2591.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.670000",,"14.670000",,"14.670000",,,,,,,"6072.541667",,,,,"2934.791667",,"10.488889",,"254.955556",,,,"17.685714","1.533333","1.000000","4.444444","17.533333","0.000000","197.592593","0.000000","14.518519","180.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","496.125000",,,,,"0.000000","0.000000",,,"1451.375000","1772.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"11.757083",,"11.757083",,"11.757083",,,,,,,"7023.958333",,,,,"2352.333333",,"20.555556",,"68.733333",,,,"5.800000","1.222222","1.866667","3.222222","5.088889","0.000000","69.037037","0.000000","11.962963","55.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.250000","127.000000",,,,,"0.000000","0.000000",,,"654.750000","682.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.686667",,"15.686667",,"15.686667",,,,,,,"5678.291667",,,,,"3138.208333",,"3.288889",,"249.177778",,,,"19.171429","0.844444","0.088889","3.266667","20.266667","0.000000","216.296296","0.000000","8.296296","206.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","449.250000",,,,,"0.000000","0.000000",,,"1368.250000","1697.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.884167",,"15.884167",,"15.884167",,,,,,,"5630.000000",,,,,"3177.666667",,"4.577778",,"322.666667",,,,"23.400000","1.044444","0.244444","2.533333","24.955556","0.000000","269.629630","0.000000","10.333333","257.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","631.000000",,,,,"0.000000","0.000000",,,"1798.125000","2281.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.777083",,"13.777083",,"13.777083",,,,,,,"6263.291667",,,,,"2756.500000",,"3.622222",,"273.755556",,,,"24.514286","0.777778","0.200000","1.844444","26.466667","0.000000","281.518519","0.000000","7.888889","272.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","524.375000",,,,,"0.000000","0.000000",,,"1628.125000","1966.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.099583",,"19.099583",,"19.099583",,,,,,,"4743.125000",,,,,"3820.875000",,"22.844444",,"342.533333",,,,"24.914286","2.000000","0.244444","2.400000","25.577778","0.000000","294.444444","0.000000","22.111111","268.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.625000","619.500000",,,,,"0.000000","0.000000",,,"1884.375000","2355.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.419583",,"28.419583",,"28.419583",,,,,,,"2169.083333",,,,,"5684.875000",,"3.866667",,"646.266667",,,,"43.714286","0.866667","0.244444","1.511111","48.311111","0.000000","517.074074","0.000000","9.148148","506.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1203.250000",,,,,"0.000000","0.000000",,,"3161.125000","4220.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.884167",,"33.884167",,"33.884167",,,,,,,"793.750000",,,,,"6777.958333",,"8.777778",,"642.777778",,,,"41.171429","1.133333","0.311111","1.755556","45.088889","0.000000","485.407407","0.000000","12.185185","472.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","1310.375000",,,,,"0.000000","0.000000",,,"5276.625000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.700417",,"30.700417",,"30.700417",,,,,,,"936.666667",,,,,"6141.000000",,"34.133333",,"1127.155556",,,,"1465.457143","30.133333","0.333333","4.622222","57.044444","0.000000","840.851852","0.000000","255.481481","580.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6842.875000","2322.125000",,,,,"0.000000","0.000000",,,"100165.250000","24503.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.037083",,"36.037083",,"36.037083",,,,,,,"1285.083333",,,,,"7208.291667",,"6.844444",,"357.155556",,,,"2660.600000","4.355556","0.488889","2.800000","24.822222","0.000000","307.777778","0.000000","38.370370","266.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.875000","716.875000",,,,,"0.000000","0.000000",,,"5619.750000","3289.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.591667",,"31.591667",,"31.591667",,,,,,,"2267.666667",,,,,"6319.208333",,"5.622222",,"432.044444",,,,"2012.942857","1.288889","0.622222","2.577778","34.755556","0.000000","385.925926","0.000000","12.296296","372.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","797.750000",,,,,"0.000000","0.000000",,,"2391.000000","2918.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.374167",,"30.374167",,"30.374167",,,,,,,"2500.583333",,,,,"6075.875000",,"3.000000",,"800.622222",,,,"1996.600000","0.800000","0.244444","2.311111","65.066667","0.000000","696.111111","0.000000","8.148148","686.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.000000","1476.750000",,,,,"0.000000","0.000000",,,"4373.250000","5211.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.625000",,"27.625000",,"27.625000",,,,,,,"2838.000000",,,,,"5525.750000",,"4.866667",,"582.488889",,,,"1094.257143","0.955556","0.844444","1.311111","49.822222","0.000000","544.370370","0.000000","9.814815","533.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.500000","1138.000000",,,,,"0.000000","0.000000",,,"3051.875000","3931.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.592917",,"22.592917",,"22.592917",,,,,,,"4276.833333",,,,,"4519.416667",,"4.111111",,"618.711111",,,,"50.828571","0.688889","0.088889","1.533333","56.888889","0.000000","611.925926","0.000000","7.592593","603.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","16.428571",,,,,"0.000000","0.000000",,,"3246.625000","4274.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.680417",,"20.680417",,"20.680417",,,,,,,"4539.083333",,,,,"4137.166667",,"3.555556",,"443.822222",,,,"33.485714","1.022222","0.088889","1.733333","37.000000","0.000000","408.629630","0.000000","9.481481","397.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","851.750000",,,,,"0.000000","0.000000",,,"2333.375000","3082.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.137917",,"21.137917",,"21.137917",,,,,,,"4639.083333",,,,,"4228.583333",,"4.333333",,"548.533333",,,,"46.228571","0.911111","0.244444","2.377778","51.600000","0.000000","560.703704","0.000000","8.851852","550.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1040.875000",,,,,"0.000000","0.000000",,,"2947.625000","3860.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.762083",,"19.762083",,"19.762083",,,,,,,"4567.791667",,,,,"3953.291667",,"4.400000",,"592.800000",,,,"52.542857","0.955556","0.733333","1.066667","58.977778","0.000000","646.222222","0.000000","9.074074","635.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","1115.500000",,,,,"0.000000","0.000000",,,"3134.750000","4069.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.950417",,"22.950417",,"22.950417",,,,,,,"3818.916667",,,,,"4590.958333",,"4.222222",,"721.133333",,,,"62.342857","0.955556","0.622222","1.155556","69.733333","0.000000","749.629630","0.000000","9.222222","738.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1371.125000",,,,,"0.000000","0.000000",,,"3664.750000","4854.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.935000",,"22.935000",,"22.935000",,,,,,,"3686.208333",,,,,"4588.125000",,"9.288889",,"644.888889",,,,"54.342857","1.577778","0.133333","1.066667","59.955556","0.000000","658.296296","0.000000","14.703704","640.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1186.750000",,,,,"0.000000","0.000000",,,"3322.000000","4221.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.317500",,"22.317500",,"22.317500",,,,,,,"4577.541667",,,,,"4464.333333",,"3.977778",,"697.644444",,,,"58.885714","0.844444","0.133333","0.911111","66.133333","0.000000","717.814815","0.000000","8.629630","707.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1348.000000",,,,,"0.000000","0.000000",,,"4048.625000","5124.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.851250",,"24.851250",,"24.851250",,,,,,,"2913.458333",,,,,"4971.041667",,"28.022222",,"791.111111",,,,"67.771429","2.555556","0.466667","1.333333","73.977778","0.000000","815.259259","0.000000","27.814815","783.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.500000","1696.125000",,,,,"0.000000","0.000000",,,"7658.250000","8914.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.849167",,"21.849167",,"21.849167",,,,,,,"3987.916667",,,,,"4370.666667",,"3.600000",,"575.622222",,,,"37.514286","0.955556","0.444444","3.311111","42.044444","0.000000","469.851852","0.000000","9.148148","459.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","1129.250000",,,,,"0.000000","0.000000",,,"3691.625000","4527.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.592500",,"26.592500",,"26.592500",,,,,,,"2948.541667",,,,,"5319.500000",,"3.333333",,"741.222222",,,,"60.942857","0.844444","0.088889","1.977778","68.688889","0.000000","744.370370","0.000000","8.074074","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.375000","1399.125000",,,,,"0.000000","0.000000",,,"3833.875000","5015.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.259583",,"23.259583",,"23.259583",,,,,,,"3991.458333",,,,,"4652.958333",,"2.577778",,"560.288889",,,,"2218.914286","0.844444","0.266667","2.666667","46.711111","0.000000","510.814815","0.000000","8.222222","501.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.750000","1046.875000",,,,,"0.000000","0.000000",,,"2781.750000","3624.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.740833",,"24.740833",,"24.740833",,,,,,,"3841.958333",,,,,"4948.833333",,"4.466667",,"399.466667",,,,"2771.942857","0.933333","0.688889","1.844444","33.444444","0.000000","374.666667","0.000000","9.037037","364.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","820.125000",,,,,"0.000000","0.000000",,,"2336.500000","3055.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.040000",,"24.040000",,"24.040000",,,,,,,"3610.625000",,,,,"4808.833333",,"3.800000",,"336.311111",,,,"2002.485714","0.777778","0.244444","2.755556","27.955556","0.000000","312.222222","0.000000","8.222222","302.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.750000","632.250000",,,,,"0.000000","0.000000",,,"2360.500000","2502.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.786250",,"27.786250",,"27.786250",,,,,,,"3126.375000",,,,,"5558.375000",,"2.622222",,"636.155556",,,,"1834.285714","0.933333","0.177778","1.288889","48.844444","0.000000","529.444444","0.000000","8.518519","519.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1185.375000",,,,,"0.000000","0.000000",,,"3201.125000","3944.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.118750",,"23.118750",,"23.118750",,,,,,,"4047.208333",,,,,"4624.875000",,"4.155556",,"575.622222",,,,"348.000000","0.955556","0.577778","1.066667","51.466667","0.000000","548.111111","0.000000","9.444444","537.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","1085.750000",,,,,"0.000000","0.000000",,,"2990.000000","3775.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.070000",,"20.070000",,"20.070000",,,,,,,"4379.375000",,,,,"4015.125000",,"2.511111",,"394.911111",,,,"32.657143","0.933333","0.088889","2.288889","35.666667","0.000000","382.518519","0.000000","8.444444","372.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","764.875000",,,,,"0.000000","0.000000",,,"2210.875000","2806.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.266667",,"21.266667",,"21.266667",,,,,,,"4952.750000",,,,,"4254.208333",,"9.755556",,"455.800000",,,,"39.028571","1.955556","0.088889","1.022222","41.488889","0.000000","458.370370","0.000000","17.925926","436.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","842.500000",,,,,"0.000000","0.000000",,,"2332.500000","3041.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.521250",,"22.521250",,"22.521250",,,,,,,"3924.583333",,,,,"4505.041667",,"3.155556",,"508.266667",,,,"38.942857","0.688889","0.177778","1.666667","43.111111","0.000000","462.259259","0.000000","7.259259","453.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","947.750000",,,,,"0.000000","0.000000",,,"2600.125000","3304.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.841667",,"19.841667",,"19.841667",,,,,,,"4871.375000",,,,,"3969.250000",,"2.422222",,"438.422222",,,,"35.085714","0.755556","0.133333","1.133333","38.400000","0.000000","406.370370","0.000000","7.444444","397.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","882.250000",,,,,"0.000000","0.000000",,,"2997.250000","3664.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.432500",,"22.432500",,"22.432500",,,,,,,"3864.625000",,,,,"4487.416667",,"4.111111",,"463.488889",,,,"36.971429","0.955556","0.177778","1.266667","40.644444","0.000000","436.444444","0.000000","9.185185","425.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1066.125000",,,,,"0.000000","0.000000",,,"6484.625000","7204.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.970417",,"20.970417",,"20.970417",,,,,,,"4753.125000",,,,,"4194.791667",,"2.688889",,"459.222222",,,,"34.342857","0.933333","0.088889","1.622222","37.666667","0.000000","406.037037","0.000000","8.888889","395.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","928.625000",,,,,"0.000000","0.000000",,,"2739.125000","3488.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.691250",,"20.691250",,"20.691250",,,,,,,"5296.250000",,,,,"4139.166667",,"7.311111",,"322.377778",,,,"24.971429","1.711111","0.288889","3.511111","26.222222","0.000000","294.777778","0.000000","18.296296","275.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","606.000000",,,,,"0.000000","0.000000",,,"1736.375000","2189.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.491250",,"22.491250",,"22.491250",,,,,,,"3847.916667",,,,,"4499.541667",,"21.822222",,"531.533333",,,,"43.971429","2.000000","0.644444","1.977778","47.311111","0.000000","523.925926","0.000000","21.629630","498.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.625000","982.500000",,,,,"0.000000","0.000000",,,"2818.875000","3579.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.157083",,"29.157083",,"29.157083",,,,,,,"1794.333333",,,,,"5832.166667",,"3.000000",,"983.066667",,,,"43.771429","0.666667","0.311111","2.822222","48.266667","0.000000","506.740741","0.000000","7.296296","498.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1871.625000",,,,,"0.000000","0.000000",,,"4207.875000","5711.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.200417",,"26.200417",,"26.200417",,,,,,,"2723.375000",,,,,"5240.833333",,"3.844444",,"740.444444",,,,"32.028571","0.888889","0.288889","4.933333","35.022222","0.000000","375.370370","0.000000","8.888889","365.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1434.000000",,,,,"0.000000","0.000000",,,"3506.250000","4709.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.379167",,"27.379167",,"27.379167",,,,,,,"2607.666667",,,,,"5477.125000",,"8.666667",,"1239.644444",,,,"2014.057143","1.111111","0.822222","5.688889","58.355556","0.000000","625.740741","0.000000","11.629630","611.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"172.750000","42.857143",,,,,"0.000000","0.000000",,,"7086.875000","7615.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.535833",,"28.535833",,"28.535833",,,,,,,"1791.083333",,,,,"5708.250000",,"6.666667",,"738.977778",,,,"2322.228571","0.888889","1.022222","3.377778","70.377778","0.000000","760.740741","0.000000","11.629630","747.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1428.625000",,,,,"0.000000","0.000000",,,"3970.250000","5284.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.900000",,"22.900000",,"22.900000",,,,,,,"3955.416667",,,,,"4581.000000",,"2.977778",,"589.822222",,,,"2179.457143","0.711111","0.177778","1.466667","60.066667","0.000000","667.111111","0.000000","7.481481","658.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1113.875000",,,,,"0.000000","0.000000",,,"3451.500000","4167.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.657083",,"27.657083",,"27.657083",,,,,,,"3029.833333",,,,,"5532.208333",,"7.755556",,"894.844444",,,,"1867.257143","1.555556","0.088889","1.555556","73.177778","0.000000","799.037037","0.000000","13.629630","782.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","1681.125000",,,,,"0.000000","0.000000",,,"4914.125000","5990.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.860417",,"25.860417",,"25.860417",,,,,,,"2995.125000",,,,,"5172.875000",,"4.044444",,"757.755556",,,,"897.942857","0.933333","0.155556","1.888889","65.511111","0.000000","703.370370","0.000000","9.111111","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1465.625000",,,,,"0.000000","0.000000",,,"3812.375000","5269.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.463750",,"25.463750",,"25.463750",,,,,,,"3348.583333",,,,,"5093.958333",,"3.644444",,"852.466667",,,,"70.685714","0.844444","0.088889","1.022222","79.111111","0.000000","842.777778","0.000000","8.370370","833.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1581.500000",,,,,"0.000000","0.000000",,,"4110.375000","5472.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.671667",,"26.671667",,"26.671667",,,,,,,"3050.958333",,,,,"5335.500000",,"3.600000",,"994.933333",,,,"83.571429","0.933333","0.088889","1.666667","93.733333","0.000000","1001.851852","0.000000","9.000000","991.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1882.250000",,,,,"0.000000","0.000000",,,"4988.500000","6539.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.721250",,"24.721250",,"24.721250",,,,,,,"4267.291667",,,,,"4945.291667",,"2.444444",,"629.577778",,,,"52.057143","0.844444","0.177778","1.044444","58.377778","0.000000","634.296296","0.000000","7.925926","625.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1409.000000",,,,,"0.000000","0.000000",,,"7282.500000","8152.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.225000",,"25.225000",,"25.225000",,,,,,,"3514.500000",,,,,"5046.083333",,"2.422222",,"457.977778",,,,"37.514286","0.755556","0.088889","1.377778","41.244444","0.000000","439.259259","0.000000","7.370370","430.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","922.875000",,,,,"0.000000","0.000000",,,"3304.125000","4008.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.312500",,"27.312500",,"27.312500",,,,,,,"3346.750000",,,,,"5463.375000",,"2.600000",,"626.200000",,,,"53.828571","1.022222","0.088889","1.555556","59.200000","0.000000","619.814815","0.000000","9.074074","609.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","1202.875000",,,,,"0.000000","0.000000",,,"3281.125000","4236.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.802083",,"26.802083",,"26.802083",,,,,,,"3114.541667",,,,,"5361.166667",,"3.155556",,"613.600000",,,,"48.285714","0.755556","0.200000","1.288889","53.488889","0.000000","564.481481","0.000000","7.851852","555.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1157.000000",,,,,"0.000000","0.000000",,,"3078.625000","3986.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.740000",,"24.740000",,"24.740000",,,,,,,"3631.708333",,,,,"4948.916667",,"3.644444",,"642.755556",,,,"32.400000","0.977778","0.333333","5.088889","35.644444","0.000000","387.629630","0.000000","9.296296","377.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1142.250000",,,,,"0.000000","0.000000",,,"2838.250000","3666.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.794583",,"23.794583",,"23.794583",,,,,,,"4113.250000",,,,,"4759.916667",,"30.955556",,"587.666667",,,,"45.800000","2.511111","0.288889","2.044444","48.311111","0.000000","529.222222","0.000000","28.111111","497.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.500000","1143.500000",,,,,"0.000000","0.000000",,,"3186.125000","3999.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.688333",,"27.688333",,"27.688333",,,,,,,"2641.000000",,,,,"5538.375000",,"4.777778",,"559.355556",,,,"34.942857","0.777778","0.311111","1.155556","38.844444","0.000000","424.037037","0.000000","8.222222","414.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1069.750000",,,,,"0.000000","0.000000",,,"2778.125000","3568.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.544583",,"28.544583",,"28.544583",,,,,,,"2194.875000",,,,,"5710.000000",,"3.244444",,"639.377778",,,,"51.971429","0.844444","0.244444","1.888889","56.777778","0.000000","585.777778","0.000000","8.259259","576.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.125000","1192.125000",,,,,"0.000000","0.000000",,,"3251.625000","4120.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.278333",,"24.278333",,"24.278333",,,,,,,"3850.500000",,,,,"4856.416667",,"8.888889",,"445.688889",,,,"2322.685714","1.555556","0.177778","0.933333","37.911111","0.000000","413.814815","0.000000","13.777778","397.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","792.000000",,,,,"0.000000","0.000000",,,"2225.625000","2836.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.004583",,"27.004583",,"27.004583",,,,,,,"2876.166667",,,,,"5401.791667",,"3.311111",,"612.866667",,,,"2405.428571","0.844444","0.244444","1.000000","55.577778","0.000000","581.629630","0.000000","8.481481","571.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1144.250000",,,,,"0.000000","0.000000",,,"3469.250000","4078.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.611250",,"24.611250",,"24.611250",,,,,,,"3367.208333",,,,,"4923.291667",,"2.333333",,"531.511111",,,,"1936.628571","0.755556","0.088889","1.311111","37.666667","0.000000","403.703704","0.000000","7.222222","395.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.875000","1015.625000",,,,,"0.000000","0.000000",,,"3026.375000","3505.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.404583",,"28.404583",,"28.404583",,,,,,,"2404.625000",,,,,"5682.166667",,"47.577778",,"550.155556",,,,"1658.428571","3.066667","0.177778","1.711111","50.022222","0.000000","549.259259","0.000000","33.074074","514.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"106.625000","1055.875000",,,,,"0.000000","0.000000",,,"3570.000000","4385.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.889167",,"28.889167",,"28.889167",,,,,,,"2060.666667",,,,,"5778.708333",,"2.933333",,"602.466667",,,,"877.057143","0.800000","0.088889","1.333333","49.155556","0.000000","510.925926","0.000000","7.962963","501.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","1294.000000",,,,,"0.000000","0.000000",,,"7080.500000","7990.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.065000",,"26.065000",,"26.065000",,,,,,,"3938.458333",,,,,"5214.000000",,"2.533333",,"414.844444",,,,"30.657143","0.933333","0.266667","1.066667","32.911111","0.000000","341.962963","0.000000","8.407407","332.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","868.500000",,,,,"0.000000","0.000000",,,"3374.375000","4006.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.601667",,"25.601667",,"25.601667",,,,,,,"3118.291667",,,,,"5121.125000",,"2.622222",,"541.133333",,,,"41.685714","1.022222","0.266667","0.955556","45.088889","0.000000","465.333333","0.000000","9.370370","454.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","297.714286",,,,,"0.000000","0.000000",,,"5959.250000","7060.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.481667",,"26.481667",,"26.481667",,,,,,,"3014.833333",,,,,"5297.541667",,"3.888889",,"595.222222",,,,"46.685714","0.866667","0.733333","0.955556","50.866667","0.000000","525.370370","0.000000","8.703704","515.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","1193.625000",,,,,"0.000000","0.000000",,,"3891.250000","4759.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.595833",,"25.595833",,"25.595833",,,,,,,"3289.916667",,,,,"5119.958333",,"2.822222",,"476.755556",,,,"36.800000","0.844444","0.266667","1.066667","39.866667","0.000000","413.888889","0.000000","8.037037","404.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","946.000000",,,,,"0.000000","0.000000",,,"2643.625000","3394.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.859583",,"26.859583",,"26.859583",,,,,,,"3504.875000",,,,,"5373.041667",,"3.933333",,"537.200000",,,,"42.714286","0.955556","0.355556","0.933333","46.466667","0.000000","482.962963","0.000000","9.037037","472.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","1004.625000",,,,,"0.000000","0.000000",,,"2698.875000","3407.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.387083",,"27.387083",,"27.387083",,,,,,,"2532.375000",,,,,"5478.375000",,"3.888889",,"630.800000",,,,"47.828571","0.866667","0.333333","0.977778","51.822222","0.000000","530.000000","0.000000","8.814815","519.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1160.250000",,,,,"0.000000","0.000000",,,"3123.750000","4036.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.999583",,"25.999583",,"25.999583",,,,,,,"2951.708333",,,,,"5201.041667",,"8.133333",,"1532.377778",,,,"41.085714","1.288889","0.355556","2.222222","43.222222","0.000000","434.000000","0.000000","12.222222","419.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","2614.250000",,,,,"0.000000","0.000000",,,"5101.625000","7566.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.884167",,"22.884167",,"22.884167",,,,,,,"4429.625000",,,,,"4577.791667",,"23.888889",,"347.333333",,,,"24.228571","2.355556","0.533333","1.933333","24.044444","0.000000","276.518519","0.000000","25.444444","246.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.000000","717.125000",,,,,"0.000000","0.000000",,,"2099.125000","2604.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.453750",,"26.453750",,"26.453750",,,,,,,"2846.916667",,,,,"5291.500000",,"3.422222",,"292.266667",,,,"17.400000","0.844444","1.911111","8.400000","18.244444","0.000000","197.444444","0.000000","8.703704","187.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","541.000000",,,,,"0.000000","0.000000",,,"1433.625000","1861.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.348333",,"24.348333",,"24.348333",,,,,,,"3485.041667",,,,,"4871.000000",,"2.688889",,"390.422222",,,,"26.057143","0.933333","1.244444","5.644444","27.888889","0.000000","293.962963","0.000000","8.703704","283.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","738.625000",,,,,"0.000000","0.000000",,,"2005.875000","2539.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.935000",,"23.935000",,"23.935000",,,,,,,"3494.500000",,,,,"4787.875000",,"3.288889",,"323.422222",,,,"1929.114286","0.888889","0.200000","4.177778","26.866667","0.000000","283.000000","0.000000","9.037037","272.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","633.500000",,,,,"0.000000","0.000000",,,"1818.625000","2331.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.958750",,"24.958750",,"24.958750",,,,,,,"4265.208333",,,,,"4992.625000",,"3.866667",,"165.533333",,,,"2919.914286","1.022222","0.155556","4.533333","9.977778","0.000000","121.370370","0.000000","12.074074","107.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","311.250000",,,,,"0.000000","0.000000",,,"981.250000","1250.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.922500",,"21.922500",,"21.922500",,,,,,,"4518.375000",,,,,"4385.708333",,"2.844444",,"136.933333",,,,"2077.485714","0.844444","0.155556","8.111111","7.488889","0.000000","89.592593","0.000000","8.111111","80.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","474.750000",,,,,"0.000000","0.000000",,,"5130.125000","4933.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.143333",,"25.143333",,"25.143333",,,,,,,"3648.875000",,,,,"5029.708333",,"70.333333",,"270.688889",,,,"1713.971429","2.200000","0.822222","5.111111","13.800000","0.000000","173.111111","0.000000","22.444444","149.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"146.375000","595.625000",,,,,"0.000000","0.000000",,,"3168.250000","3487.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.817917",,"24.817917",,"24.817917",,,,,,,"3659.250000",,,,,"4964.333333",,"107.955556",,"244.666667",,,,"423.114286","8.777778","0.466667","4.666667","12.177778","0.000000","225.962963","0.000000","96.814815","127.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"214.250000","465.625000",,,,,"0.000000","0.000000",,,"1908.875000","2119.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.857917",,"23.857917",,"23.857917",,,,,,,"3939.541667",,,,,"4772.416667",,"3.400000",,"429.488889",,,,"34.542857","1.000000","0.088889","1.822222","37.022222","0.000000","383.148148","0.000000","9.111111","372.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","823.000000",,,,,"0.000000","0.000000",,,"2292.750000","2906.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.044583",,"22.044583",,"22.044583",,,,,,,"4753.916667",,,,,"4410.041667",,"3.400000",,"244.088889",,,,"15.114286","0.933333","0.177778","4.977778","15.711111","0.000000","172.629630","0.000000","8.851852","162.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.625000","421.375000",,,,,"0.000000","0.000000",,,"1198.500000","1610.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.162500",,"23.162500",,"23.162500",,,,,,,"4451.041667",,,,,"4633.375000",,"6.200000",,"594.333333",,,,"38.828571","1.311111","0.133333","1.955556","41.444444","0.000000","430.925926","0.000000","11.962963","416.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1327.375000",,,,,"0.000000","0.000000",,,"3326.125000","5989.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.587083",,"20.587083",,"20.587083",,,,,,,"5333.083333",,,,,"4118.250000",,"4.444444",,"1394.266667",,,,"19.342857","0.955556","0.644444","16.111111","19.466667","0.000000","192.074074","0.000000","9.000000","181.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"750.000000","2653.500000",,,,,"0.000000","0.000000",,,"14715.375000","7716.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.306250",,"20.306250",,"20.306250",,,,,,,"4969.416667",,,,,"4062.375000",,"4.933333",,"2136.555556",,,,"20.771429","0.933333","5.466667","24.244444","20.488889","0.000000","186.666667","0.000000","8.925926","176.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"743.375000","4007.000000",,,,,"0.000000","0.000000",,,"16784.875000","10950.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.348333",,"24.348333",,"24.348333",,,,,,,"4729.041667",,,,,"4870.791667",,"3.466667",,"2132.400000",,,,"33.742857","1.022222","1.044444","7.466667","34.644444","0.000000","326.296296","0.000000","9.925926","314.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"716.250000","4055.625000",,,,,"0.000000","0.000000",,,"16677.875000","11120.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.004583",,"21.004583",,"21.004583",,,,,,,"4808.916667",,,,,"4201.958333",,"2.511111",,"2160.288889",,,,"15.000000","0.844444","0.466667","9.866667","14.111111","0.000000","120.814815","0.000000","8.296296","111.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.750000","16.142857",,,,,"0.000000","0.000000",,,"16379.375000","10856.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.390833",,"23.390833",,"23.390833",,,,,,,"5002.750000",,,,,"4679.000000",,"3.311111",,"2092.666667",,,,"28.285714","0.888889","2.600000","5.688889","29.844444","0.000000","304.000000","0.000000","9.000000","293.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1729.125000","4039.000000",,,,,"0.000000","0.000000",,,"30124.500000","11668.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.902500",,"27.902500",,"27.902500",,,,,,,"3641.875000",,,,,"5581.333333",,"21.422222",,"1938.888889",,,,"30.142857","1.800000","0.555556","7.466667","30.733333","0.000000","326.370370","0.000000","20.555556","302.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1900.750000","3660.250000",,,,,"0.000000","0.000000",,,"33411.250000","13702.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.585833",,"26.585833",,"26.585833",,,,,,,"4063.625000",,,,,"5318.250000",,"2.577778",,"1843.733333",,,,"27.257143","0.844444","0.955556","17.355556","28.488889","0.000000","282.444444","0.000000","8.444444","272.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"562.500000","3971.875000",,,,,"0.000000","0.000000",,,"16900.375000","13646.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.931250",,"26.931250",,"26.931250",,,,,,,"4304.833333",,,,,"5387.041667",,"3.755556",,"571.666667",,,,"2511.285714","1.022222","0.422222","3.955556","29.977778","0.000000","317.370370","0.000000","9.925926","305.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.125000","1064.000000",,,,,"0.000000","0.000000",,,"3233.750000","3417.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.023750",,"29.023750",,"29.023750",,,,,,,"2811.541667",,,,,"5805.791667",,"30.777778",,"414.911111",,,,"2518.314286","3.488889","0.422222","1.800000","29.777778","0.000000","352.777778","0.000000","37.851852","313.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","824.625000",,,,,"0.000000","0.000000",,,"2297.750000","2933.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.469583",,"28.469583",,"28.469583",,,,,,,"3577.375000",,,,,"5694.666667",,"9.111111",,"314.155556",,,,"2078.828571","1.488889","1.000000","2.222222","12.800000","0.000000","150.851852","0.000000","13.962963","134.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","573.500000",,,,,"0.000000","0.000000",,,"2394.250000","2328.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.269583",,"21.269583",,"21.269583",,,,,,,"4297.791667",,,,,"4255.000000",,"11.844444",,"126.333333",,,,"1667.885714","1.133333","0.533333","0.977778","7.533333","0.000000","94.703704","0.000000","12.111111","81.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","273.500000",,,,,"0.000000","0.000000",,,"945.750000","1102.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.310417",,"26.310417",,"26.310417",,,,,,,"3404.041667",,,,,"5262.833333",,"3.200000",,"407.244444",,,,"324.714286","0.888889","0.288889","2.755556","38.200000","0.000000","421.296296","0.000000","8.555556","411.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","708.625000",,,,,"0.000000","0.000000",,,"2145.875000","2728.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.875000",,"32.875000",,"32.875000",,,,,,,"1576.583333",,,,,"6576.083333",,"2.577778",,"590.266667",,,,"47.742857","0.888889","0.177778","2.044444","52.688889","0.000000","559.925926","0.000000","8.814815","549.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","1123.875000",,,,,"0.000000","0.000000",,,"3096.000000","4114.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.302083",,"30.302083",,"30.302083",,,,,,,"1547.208333",,,,,"6061.291667",,"5.022222",,"596.666667",,,,"45.800000","0.955556","0.622222","1.288889","50.733333","0.000000","548.000000","0.000000","9.925926","536.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1162.500000",,,,,"0.000000","0.000000",,,"3087.875000","4237.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.652500",,"33.652500",,"33.652500",,,,,,,"1314.916667",,,,,"6731.416667",,"2.666667",,"522.355556",,,,"36.200000","0.933333","0.088889","1.333333","40.044444","0.000000","439.000000","0.000000","8.592593","428.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1186.375000",,,,,"0.000000","0.000000",,,"5157.250000","6392.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.986250",,"27.986250",,"27.986250",,,,,,,"2059.291667",,,,,"5597.875000",,"2.755556",,"643.422222",,,,"48.800000","0.844444","1.311111","1.422222","54.911111","0.000000","602.185185","0.000000","7.962963","593.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1499.375000",,,,,"0.000000","0.000000",,,"6739.750000","8336.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.255000",,"23.255000",,"23.255000",,,,,,,"3861.416667",,,,,"4651.916667",,"3.466667",,"542.466667",,,,"42.742857","0.777778","0.844444","1.333333","48.155556","0.000000","535.296296","0.000000","8.111111","525.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1279.500000",,,,,"0.000000","0.000000",,,"6223.875000","7580.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.756250",,"27.756250",,"27.756250",,,,,,,"2520.875000",,,,,"5552.208333",,"2.822222",,"696.777778",,,,"52.971429","0.933333","0.844444","1.644444","58.755556","0.000000","623.407407","0.000000","8.777778","613.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1624.500000",,,,,"0.000000","0.000000",,,"6874.375000","8664.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.053333",,"24.053333",,"24.053333",,,,,,,"3446.083333",,,,,"4811.708333",,"2.555556",,"441.844444",,,,"29.828571","0.844444","0.133333","3.488889","32.911111","0.000000","362.814815","0.000000","7.962963","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1126.375000",,,,,"0.000000","0.000000",,,"5723.750000","7076.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.840000",,"24.840000",,"24.840000",,,,,,,"3417.333333",,,,,"4968.916667",,"2.933333",,"687.888889",,,,"56.800000","0.933333","0.511111","1.800000","63.022222","0.000000","671.925926","0.000000","9.185185","661.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1551.750000",,,,,"0.000000","0.000000",,,"6780.375000","8581.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.343333",,"31.343333",,"31.343333",,,,,,,"1672.708333",,,,,"6269.416667",,"28.088889",,"759.377778",,,,"34.171429","2.711111","0.422222","5.533333","35.333333","0.000000","412.296296","0.000000","28.037037","378.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.625000","313.857143",,,,,"0.000000","0.000000",,,"6845.250000","8412.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.628750",,"30.628750",,"30.628750",,,,,,,"909.833333",,,,,"6126.750000",,"10.177778",,"846.466667",,,,"36.685714","1.400000","0.066667","2.311111","39.644444","0.000000","425.518519","0.000000","13.814815","410.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.125000","1804.500000",,,,,"0.000000","0.000000",,,"6479.250000","8253.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.300417",,"30.300417",,"30.300417",,,,,,,"1946.500000",,,,,"6061.041667",,"3.022222",,"704.822222",,,,"2137.514286","0.844444","0.444444","2.155556","53.133333","0.000000","569.333333","0.000000","8.407407","559.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1565.375000",,,,,"0.000000","0.000000",,,"6322.000000","8005.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.853750",,"31.853750",,"31.853750",,,,,,,"1271.791667",,,,,"6371.666667",,"5.000000",,"442.288889",,,,"1980.057143","1.244444","1.066667","3.733333","30.200000","0.000000","343.666667","0.000000","15.222222","326.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.625000","1094.500000",,,,,"0.000000","0.000000",,,"5333.000000","6509.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.118750",,"31.118750",,"31.118750",,,,,,,"2255.250000",,,,,"6225.000000",,"2.666667",,"602.222222",,,,"2159.114286","0.844444","3.955556","2.755556","35.622222","0.000000","389.814815","0.000000","8.074074","380.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.625000","1419.250000",,,,,"0.000000","0.000000",,,"6795.500000","7806.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.689583",,"30.689583",,"30.689583",,,,,,,"1582.458333",,,,,"6138.916667",,"2.577778",,"595.733333",,,,"1548.228571","0.800000","0.200000","4.200000","46.600000","0.000000","501.592593","0.000000","8.296296","492.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1360.250000",,,,,"0.000000","0.000000",,,"6043.125000","7440.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.430417",,"28.430417",,"28.430417",,,,,,,"1871.833333",,,,,"5686.916667",,"2.755556",,"483.822222",,,,"1253.857143","0.933333","0.400000","4.688889","34.177778","0.000000","366.037037","0.000000","8.629630","355.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","1176.875000",,,,,"0.000000","0.000000",,,"5504.375000","6791.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.781250",,"24.781250",,"24.781250",,,,,,,"3682.041667",,,,,"4957.416667",,"2.955556",,"472.377778",,,,"122.171429","0.844444","0.177778","3.600000","35.155556","0.000000","382.740741","0.000000","8.222222","373.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1214.000000",,,,,"0.000000","0.000000",,,"6057.250000","7318.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.189167",,"24.189167",,"24.189167",,,,,,,"3443.708333",,,,,"4838.500000",,"3.222222",,"368.133333",,,,"21.971429","0.933333","0.288889","4.311111","23.977778","0.000000","270.074074","0.000000","9.111111","259.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","958.125000",,,,,"0.000000","0.000000",,,"5098.875000","6192.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.917500",,"24.917500",,"24.917500",,,,,,,"3779.083333",,,,,"4984.458333",,"2.977778",,"399.733333",,,,"26.742857","0.933333","0.288889","3.155556","29.355556","0.000000","327.148148","0.000000","8.814815","316.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","973.375000",,,,,"0.000000","0.000000",,,"5188.500000","6061.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.570000",,"27.570000",,"27.570000",,,,,,,"3142.833333",,,,,"5515.083333",,"2.666667",,"485.644444",,,,"33.485714","0.844444","0.133333","3.688889","37.155556","0.000000","407.518519","0.000000","8.407407","397.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","1075.750000",,,,,"0.000000","0.000000",,,"5554.375000","6317.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.775000",,"30.775000",,"30.775000",,,,,,,"1832.166667",,,,,"6155.708333",,"3.022222",,"629.888889",,,,"46.571429","0.888889","0.400000","1.800000","51.466667","0.000000","546.111111","0.000000","8.592593","536.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1205.375000",,,,,"0.000000","0.000000",,,"3166.625000","4096.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.232500",,"27.232500",,"27.232500",,,,,,,"2628.166667",,,,,"5447.333333",,"3.088889",,"642.577778",,,,"46.600000","1.111111","0.355556","3.866667","51.600000","0.000000","561.592593","0.000000","10.518519","549.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1174.125000",,,,,"0.000000","0.000000",,,"3067.000000","3923.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.102500",,"31.102500",,"31.102500",,,,,,,"1794.916667",,,,,"6221.250000",,"8.355556",,"725.177778",,,,"53.571429","1.600000","0.244444","1.577778","58.377778","0.000000","629.111111","0.000000","14.370370","611.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1361.250000",,,,,"0.000000","0.000000",,,"3959.500000","5059.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.027083",,"30.027083",,"30.027083",,,,,,,"2266.791667",,,,,"6006.333333",,"3.377778",,"655.355556",,,,"47.257143","0.933333","0.133333","1.755556","52.444444","0.000000","566.518519","0.000000","9.407407","555.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1480.625000",,,,,"0.000000","0.000000",,,"7369.500000","8343.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.421250",,"29.421250",,"29.421250",,,,,,,"2396.833333",,,,,"5885.333333",,"21.733333",,"934.222222",,,,"50.685714","2.088889","0.088889","2.666667","54.622222","0.000000","600.888889","0.000000","23.037037","573.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1793.750000",,,,,"0.000000","0.000000",,,"4624.500000","6034.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.149583",,"31.149583",,"31.149583",,,,,,,"1854.791667",,,,,"6231.000000",,"2.888889",,"800.600000",,,,"58.514286","0.933333","0.133333","1.155556","65.111111","0.000000","691.407407","0.000000","8.629630","681.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1500.375000",,,,,"0.000000","0.000000",,,"3942.875000","5165.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.168333",,"34.168333",,"34.168333",,,,,,,"1540.291667",,,,,"6834.458333",,"2.577778",,"657.644444",,,,"1816.714286","0.844444","0.133333","1.311111","52.755556","0.000000","575.777778","0.000000","8.370370","566.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1268.750000",,,,,"0.000000","0.000000",,,"3332.500000","4276.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.174167",,"33.174167",,"33.174167",,,,,,,"1695.416667",,,,,"6635.791667",,"3.088889",,"667.644444",,,,"2403.057143","1.022222","0.177778","1.022222","53.400000","0.000000","588.148148","0.000000","9.703704","576.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1251.250000",,,,,"0.000000","0.000000",,,"3253.250000","4200.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.559583",,"31.559583",,"31.559583",,,,,,,"953.291667",,,,,"6312.833333",,"2.955556",,"845.622222",,,,"1480.371429","0.755556","0.244444","2.333333","61.888889","0.000000","657.518519","0.000000","7.666667","648.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.250000","1544.125000",,,,,"0.000000","0.000000",,,"4676.250000","5461.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.934167",,"32.934167",,"32.934167",,,,,,,"1100.458333",,,,,"6587.875000",,"8.666667",,"745.733333",,,,"1498.400000","1.933333","1.088889","1.044444","66.422222","0.000000","729.777778","0.000000","19.740741","708.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1483.375000",,,,,"0.000000","0.000000",,,"4103.625000","5163.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.075000",,"30.075000",,"30.075000",,,,,,,"1260.750000",,,,,"6015.833333",,"3.155556",,"802.888889",,,,"1296.457143","0.933333","0.088889","2.400000","69.555556","0.000000","745.592593","0.000000","9.148148","734.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","10.428571",,,,,"0.000000","0.000000",,,"3867.250000","5102.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.748333",,"31.748333",,"31.748333",,,,,,,"1287.333333",,,,,"6350.500000",,"93.888889",,"968.666667",,,,"837.028571","3.911111","0.444444","1.533333","77.088889","0.000000","855.555556","0.000000","41.740741","812.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","1685.125000",,,,,"0.000000","0.000000",,,"4430.000000","5954.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.010000",,"30.010000",,"30.010000",,,,,,,"2276.333333",,,,,"6002.916667",,"839.888889",,"1663.400000",,,,"87.314286","22.066667","0.311111","3.177778","77.355556","0.000000","1063.222222","0.000000","244.148148","817.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1770.250000","3272.250000",,,,,"0.000000","0.000000",,,"11430.625000","12084.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.455000",,"28.455000",,"28.455000",,,,,,,"1816.750000",,,,,"5692.083333",,"78.844444",,"831.177778",,,,"76.171429","18.288889","0.266667","1.155556","68.244444","0.000000","927.518519","0.000000","200.555556","724.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"170.750000","1661.750000",,,,,"0.000000","0.000000",,,"5195.125000","6927.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.411667",,"28.411667",,"28.411667",,,,,,,"2500.041667",,,,,"5683.083333",,"50.577778",,"801.755556",,,,"68.457143","12.266667","0.511111","1.266667","66.155556","0.000000","848.370370","0.000000","134.370370","712.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.500000","1490.875000",,,,,"0.000000","0.000000",,,"6999.375000","5901.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.591667",,"29.591667",,"29.591667",,,,,,,"1833.708333",,,,,"5919.166667",,"2.466667",,"2215.866667",,,,"73.771429","0.977778","0.577778","5.333333","81.600000","0.000000","849.333333","0.000000","9.185185","838.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2589.875000","4286.500000",,,,,"0.000000","0.000000",,,"44002.375000","15611.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.555000",,"28.555000",,"28.555000",,,,,,,"2332.750000",,,,,"5711.708333",,"2.777778",,"2244.644444",,,,"62.971429","0.933333","0.155556","6.666667","69.755556","0.000000","732.185185","0.000000","8.703704","722.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2059.250000","4414.500000",,,,,"0.000000","0.000000",,,"39366.625000","17783.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.111667",,"30.111667",,"30.111667",,,,,,,"1826.958333",,,,,"6023.500000",,"3.377778",,"3284.600000",,,,"80.600000","0.977778","0.666667","3.733333","89.466667","0.000000","937.814815","0.000000","9.444444","927.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1286.625000","5965.500000",,,,,"0.000000","0.000000",,,"28162.750000","17576.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.715833",,"29.715833",,"29.715833",,,,,,,"2492.666667",,,,,"5944.250000",,"48.688889",,"1402.777778",,,,"82.942857","10.511111","0.711111","2.355556","83.888889","0.000000","1009.074074","0.000000","115.814815","891.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1178.500000","2944.375000",,,,,"0.000000","0.000000",,,"21345.875000","10680.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.078333",,"34.078333",,"34.078333",,,,,,,"1127.125000",,,,,"6816.583333",,"29.533333",,"2529.266667",,,,"71.628571","3.244444","0.911111","5.200000","76.266667","0.000000","815.148148","0.000000","36.000000","775.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1159.750000","21.714286",,,,,"0.000000","0.000000",,,"23473.500000","14184.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.000000",,"33.000000",,"33.000000",,,,,,,"1680.916667",,,,,"6601.000000",,"3.333333",,"1331.155556",,,,"68.171429","0.888889","0.600000","2.044444","75.911111","0.000000","804.592593","0.000000","9.148148","794.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","2738.375000",,,,,"0.000000","0.000000",,,"6028.250000","8233.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.597083",,"30.597083",,"30.597083",,,,,,,"1134.916667",,,,,"6120.583333",,"4.311111",,"686.288889",,,,"1505.257143","1.111111","1.266667","2.311111","54.644444","0.000000","596.703704","0.000000","12.481481","582.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1285.000000",,,,,"0.000000","0.000000",,,"3351.500000","4390.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.371667",,"35.371667",,"35.371667",,,,,,,"385.416667",,,,,"7075.250000",,"6.355556",,"774.644444",,,,"1871.942857","0.977778","0.133333","0.844444","62.755556","0.000000","677.037037","0.000000","9.407407","666.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1474.375000",,,,,"0.000000","0.000000",,,"3813.875000","5180.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.002500",,"33.002500",,"33.002500",,,,,,,"318.750000",,,,,"6601.625000",,"10.088889",,"855.600000",,,,"1426.600000","2.355556","0.244444","1.222222","66.644444","0.000000","727.185185","0.000000","20.925926","701.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.250000","1594.250000",,,,,"0.000000","0.000000",,,"4575.000000","5659.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.398333",,"33.398333",,"33.398333",,,,,,,"471.291667",,,,,"6680.541667",,"2.622222",,"706.777778",,,,"1365.942857","0.888889","0.133333","1.000000","49.955556","0.000000","553.740741","0.000000","8.296296","543.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.000000","1350.375000",,,,,"0.000000","0.000000",,,"3569.875000","4521.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"38.337917",,"38.337917",,"38.337917",,,,,,,"748.541667",,,,,"7668.541667",,"3.111111",,"780.555556",,,,"1466.657143","0.933333","0.088889","1.400000","66.644444","0.000000","718.407407","0.000000","8.962963","708.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1533.625000",,,,,"0.000000","0.000000",,,"4392.250000","5788.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.012917",,"32.012917",,"32.012917",,,,,,,"940.041667",,,,,"6403.625000",,"3.133333",,"780.711111",,,,"1211.857143","0.933333","0.177778","1.155556","64.688889","0.000000","695.962963","0.000000","9.148148","685.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1677.625000",,,,,"0.000000","0.000000",,,"6891.375000","8580.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.025833",,"29.025833",,"29.025833",,,,,,,"2310.000000",,,,,"5806.208333",,"2.844444",,"878.422222",,,,"532.285714","0.844444","0.133333","1.466667","71.866667","0.000000","778.777778","0.000000","8.111111","769.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"78.375000","1773.375000",,,,,"0.000000","0.000000",,,"6653.250000","7744.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.813750",,"30.813750",,"30.813750",,,,,,,"1670.041667",,,,,"6163.750000",,"2.711111",,"955.288889",,,,"76.857143","0.844444","0.088889","1.111111","86.000000","0.000000","910.777778","0.000000","8.000000","901.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.375000","1742.000000",,,,,"0.000000","0.000000",,,"4622.250000","6201.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.061667",,"30.061667",,"30.061667",,,,,,,"1918.333333",,,,,"6013.333333",,"3.133333",,"871.444444",,,,"69.228571","0.888889","1.000000","0.955556","77.555556","0.000000","829.555556","0.000000","8.666667","819.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1799.625000",,,,,"0.000000","0.000000",,,"6847.875000","8292.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.050833",,"27.050833",,"27.050833",,,,,,,"2461.041667",,,,,"5411.291667",,"6.288889",,"778.355556",,,,"63.342857","1.244444","0.244444","1.133333","70.511111","0.000000","761.074074","0.000000","12.222222","747.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","1607.250000",,,,,"0.000000","0.000000",,,"6460.500000","7611.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.396667",,"30.396667",,"30.396667",,,,,,,"1823.208333",,,,,"6080.291667",,"4.755556",,"911.222222",,,,"72.657143","1.200000","0.333333","3.555556","80.266667","0.000000","845.296296","0.000000","11.185185","832.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1716.750000",,,,,"0.000000","0.000000",,,"4594.625000","5944.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.520000",,"28.520000",,"28.520000",,,,,,,"2259.125000",,,,,"5705.000000",,"147.288889",,"816.822222",,,,"67.228571","3.088889","0.333333","1.111111","73.200000","0.000000","809.851852","0.000000","32.666667","775.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.000000","1508.750000",,,,,"0.000000","0.000000",,,"4714.875000","5707.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.341250",,"27.341250",,"27.341250",,,,,,,"2862.458333",,,,,"5469.250000",,"3.266667",,"1302.022222",,,,"67.571429","0.933333","0.222222","2.200000","75.866667","0.000000","817.407407","0.000000","9.037037","807.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"262.875000","11.571429",,,,,"0.000000","0.000000",,,"6388.375000","7902.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.151667",,"35.151667",,"35.151667",,,,,,,"1238.083333",,,,,"7031.416667",,"22.022222",,"986.511111",,,,"74.800000","2.044444","0.222222","1.288889","81.355556","0.000000","862.925926","0.000000","22.518519","836.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.000000","1850.500000",,,,,"0.000000","0.000000",,,"4897.375000","6423.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.833750",,"29.833750",,"29.833750",,,,,,,"1607.583333",,,,,"5967.625000",,"8.444444",,"850.800000",,,,"63.285714","1.555556","0.311111","1.266667","69.377778","0.000000","739.074074","0.000000","13.888889","722.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","1596.250000",,,,,"0.000000","0.000000",,,"4254.500000","5428.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.653750",,"29.653750",,"29.653750",,,,,,,"2351.625000",,,,,"5931.791667",,"3.688889",,"772.488889",,,,"2176.542857","0.755556","0.133333","1.066667","67.577778","0.000000","734.370370","0.000000","7.925926","725.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1420.250000",,,,,"0.000000","0.000000",,,"3947.000000","4949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.793750",,"31.793750",,"31.793750",,,,,,,"1689.333333",,,,,"6359.625000",,"3.022222",,"956.711111",,,,"2378.857143","0.844444","0.155556","1.155556","72.822222","0.000000","782.703704","0.000000","8.222222","773.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1824.250000",,,,,"0.000000","0.000000",,,"4660.000000","6084.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.185833",,"35.185833",,"35.185833",,,,,,,"1006.750000",,,,,"7038.291667",,"2.977778",,"1001.800000",,,,"1682.428571","0.933333","0.377778","1.400000","79.644444","0.000000","846.037037","0.000000","8.740741","835.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1895.875000",,,,,"0.000000","0.000000",,,"5729.500000","6730.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.486250",,"29.486250",,"29.486250",,,,,,,"2281.541667",,,,,"5898.166667",,"2.600000",,"817.244444",,,,"1808.971429","0.800000","0.177778","1.155556","77.244444","0.000000","839.000000","0.000000","8.037037","829.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1508.125000",,,,,"0.000000","0.000000",,,"4106.625000","5500.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.737917",,"32.737917",,"32.737917",,,,,,,"1318.458333",,,,,"6548.500000",,"3.666667",,"814.288889",,,,"1264.942857","0.955556","0.222222","1.733333","66.133333","0.000000","711.111111","0.000000","9.629630","700.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","1588.375000",,,,,"0.000000","0.000000",,,"4145.250000","5561.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.037500",,"30.037500",,"30.037500",,,,,,,"1938.291667",,,,,"6008.625000",,"2.911111",,"826.888889",,,,"66.771429","0.844444","0.133333","1.155556","74.644444","0.000000","795.629630","0.000000","8.185185","786.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1540.125000",,,,,"0.000000","0.000000",,,"4343.500000","5458.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.982500",,"25.982500",,"25.982500",,,,,,,"3138.875000",,,,,"5197.500000",,"3.688889",,"834.333333",,,,"69.742857","0.777778","0.200000","0.688889","78.288889","0.000000","839.629630","0.000000","8.037037","830.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1603.750000",,,,,"0.000000","0.000000",,,"4754.000000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.836250",,"31.836250",,"31.836250",,,,,,,"1522.583333",,,,,"6368.333333",,"2.888889",,"827.800000",,,,"56.885714","0.844444","0.288889","2.266667","63.533333","0.000000","679.962963","0.000000","8.111111","670.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1715.625000",,,,,"0.000000","0.000000",,,"7846.625000","9012.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.947917",,"28.947917",,"28.947917",,,,,,,"2074.791667",,,,,"5790.333333",,"3.400000",,"750.400000",,,,"57.542857","1.044444","0.600000","0.933333","64.377778","0.000000","703.000000","0.000000","10.407407","691.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.500000","1501.250000",,,,,"0.000000","0.000000",,,"4575.250000","5826.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.134583",,"25.134583",,"25.134583",,,,,,,"3087.250000",,,,,"5028.083333",,"2.911111",,"728.800000",,,,"60.885714","0.844444","0.088889","1.111111","67.555556","0.000000","710.000000","0.000000","8.000000","700.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1347.375000",,,,,"0.000000","0.000000",,,"3774.875000","4760.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.408750",,"32.408750",,"32.408750",,,,,,,"1631.333333",,,,,"6482.791667",,"3.377778",,"763.666667",,,,"55.342857","0.844444","0.177778","1.133333","61.844444","0.000000","667.703704","0.000000","8.666667","657.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1453.625000",,,,,"0.000000","0.000000",,,"4052.625000","5108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.552917",,"32.552917",,"32.552917",,,,,,,"1410.416667",,,,,"6511.541667",,"8.555556",,"873.955556",,,,"67.257143","1.466667","0.266667","1.266667","74.177778","0.000000","792.407407","0.000000","13.407407","776.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.500000","1585.000000",,,,,"0.000000","0.000000",,,"4488.750000","5543.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.477917",,"27.477917",,"27.477917",,,,,,,"2718.041667",,,,,"5496.375000",,"3.511111",,"728.333333",,,,"56.600000","1.022222","0.155556","0.977778","63.222222","0.000000","686.703704","0.000000","9.888889","675.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1410.125000",,,,,"0.000000","0.000000",,,"3838.000000","4916.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.341250",,"31.341250",,"31.341250",,,,,,,"1204.708333",,,,,"6269.291667",,"22.244444",,"1012.444444",,,,"57.114286","1.911111","0.844444","1.577778","61.866667","0.000000","669.222222","0.000000","21.592593","643.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.250000","27.571429",,,,,"0.000000","0.000000",,,"4484.750000","6083.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.920417",,"30.920417",,"30.920417",,,,,,,"775.583333",,,,,"6185.208333",,"3.355556",,"926.422222",,,,"44.971429","0.955556","0.844444","4.911111","49.222222","0.000000","512.333333","0.000000","8.962963","502.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1813.250000",,,,,"0.000000","0.000000",,,"4092.875000","5454.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.404167",,"32.404167",,"32.404167",,,,,,,"1014.166667",,,,,"6481.875000",,"12.311111",,"804.377778",,,,"1658.571429","1.444444","0.622222","3.111111","63.444444","0.000000","684.296296","0.000000","17.222222","665.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","1605.875000",,,,,"0.000000","0.000000",,,"4137.875000","5451.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.302083",,"32.302083",,"32.302083",,,,,,,"575.833333",,,,,"6461.333333",,"3.133333",,"651.155556",,,,"1839.942857","0.933333","0.777778","1.155556","50.666667","0.000000","549.444444","0.000000","8.777778","539.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","1151.250000",,,,,"0.000000","0.000000",,,"3005.125000","3937.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.322083",,"35.322083",,"35.322083",,,,,,,"549.625000",,,,,"7065.625000",,"2.955556",,"853.377778",,,,"1553.742857","0.844444","1.200000","1.288889","63.688889","0.000000","673.777778","0.000000","8.296296","664.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1679.250000",,,,,"0.000000","0.000000",,,"4901.375000","5783.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.864167",,"28.864167",,"28.864167",,,,,,,"2372.125000",,,,,"5773.750000",,"3.422222",,"525.822222",,,,"1845.142857","0.800000","0.733333","1.533333","40.155556","0.000000","408.296296","0.000000","8.148148","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","947.875000",,,,,"0.000000","0.000000",,,"2498.500000","3216.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.451250",,"26.451250",,"26.451250",,,,,,,"2704.958333",,,,,"5291.250000",,"4.933333",,"1069.311111",,,,"1604.457143","1.311111","0.311111","1.577778","53.644444","0.000000","561.222222","0.000000","13.962963","546.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","2144.500000",,,,,"0.000000","0.000000",,,"6584.500000","8275.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.121250",,"25.121250",,"25.121250",,,,,,,"2822.208333",,,,,"5025.291667",,"18.400000",,"552.822222",,,,"777.714286","1.888889","0.288889","1.666667","47.177778","0.000000","490.407407","0.000000","19.370370","469.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1283.875000",,,,,"0.000000","0.000000",,,"6367.125000","8245.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.812083",,"22.812083",,"22.812083",,,,,,,"4040.666667",,,,,"4563.166667",,"3.444444",,"448.888889",,,,"36.600000","1.022222","0.133333","1.200000","39.155556","0.000000","402.518519","0.000000","9.740741","391.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","843.125000",,,,,"0.000000","0.000000",,,"2391.625000","3147.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.550833",,"24.550833",,"24.550833",,,,,,,"4018.583333",,,,,"4911.041667",,"9.333333",,"417.822222",,,,"40.514286","2.000000","0.133333","0.933333","42.044444","0.000000","440.185185","0.000000","18.074074","418.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","773.000000",,,,,"0.000000","0.000000",,,"2304.500000","2846.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.255417",,"22.255417",,"22.255417",,,,,,,"4698.041667",,,,,"4451.916667",,"3.311111",,"316.044444",,,,"28.600000","0.844444","0.177778","1.044444","30.866667","0.000000","324.074074","0.000000","8.037037","314.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","576.750000",,,,,"0.000000","0.000000",,,"1798.375000","2150.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.390833",,"22.390833",,"22.390833",,,,,,,"4463.041667",,,,,"4478.916667",,"4.111111",,"328.444444",,,,"32.142857","0.933333","0.088889","0.888889","34.555556","0.000000","357.333333","0.000000","8.592593","347.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","618.500000",,,,,"0.000000","0.000000",,,"1935.500000","2339.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.926250",,"22.926250",,"22.926250",,,,,,,"4142.458333",,,,,"4586.541667",,"4.400000",,"429.888889",,,,"40.885714","1.000000","0.222222","0.822222","43.755556","0.000000","444.740741","0.000000","9.740741","433.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","792.125000",,,,,"0.000000","0.000000",,,"2370.250000","2891.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.670000",,"25.670000",,"25.670000",,,,,,,"4274.166667",,,,,"5134.666667",,"3.066667",,"454.711111",,,,"44.428571","0.844444","0.333333","0.800000","48.022222","0.000000","488.407407","0.000000","8.259259","478.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","787.625000",,,,,"0.000000","0.000000",,,"2393.250000","3008.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.218750",,"23.218750",,"23.218750",,,,,,,"4665.208333",,,,,"4644.583333",,"3.377778",,"330.466667",,,,"27.400000","0.933333","0.133333","1.177778","29.177778","0.000000","303.481481","0.000000","8.814815","293.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","537.625000",,,,,"0.000000","0.000000",,,"1730.375000","2085.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.106667",,"23.106667",,"23.106667",,,,,,,"4031.125000",,,,,"4622.208333",,"22.311111",,"711.066667",,,,"38.771429","2.022222","0.088889","1.622222","40.177778","0.000000","425.444444","0.000000","22.555556","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.750000","1465.750000",,,,,"0.000000","0.000000",,,"3581.875000","4638.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.040417",,"28.040417",,"28.040417",,,,,,,"3055.708333",,,,,"5609.416667",,"3.377778",,"522.133333",,,,"45.285714","1.111111","0.177778","1.022222","48.711111","0.000000","495.962963","0.000000","10.148148","484.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","967.500000",,,,,"0.000000","0.000000",,,"2865.750000","3621.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.262083",,"21.262083",,"21.262083",,,,,,,"4511.083333",,,,,"4253.416667",,"3.911111",,"299.377778",,,,"1994.485714","0.866667","0.244444","0.933333","23.000000","0.000000","242.666667","0.000000","8.555556","232.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","597.125000",,,,,"0.000000","0.000000",,,"2550.875000","3009.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.385000",,"24.385000",,"24.385000",,,,,,,"4324.958333",,,,,"4878.041667",,"3.088889",,"252.022222",,,,"2961.371429","0.844444","0.200000","1.088889","24.088889","0.000000","252.592593","0.000000","8.296296","242.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","668.000000",,,,,"0.000000","0.000000",,,"5413.000000","5703.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.927917",,"28.927917",,"28.927917",,,,,,,"3277.666667",,,,,"5786.458333",,"3.622222",,"601.200000",,,,"2216.371429","0.866667","0.177778","1.711111","47.177778","0.000000","494.629630","0.000000","8.851852","484.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","1135.250000",,,,,"0.000000","0.000000",,,"3768.250000","4117.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.540833",,"26.540833",,"26.540833",,,,,,,"3469.208333",,,,,"5309.125000",,"18.688889",,"499.777778",,,,"1735.285714","1.977778","0.222222","0.777778","49.866667","0.000000","532.370370","0.000000","19.555556","510.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","947.500000",,,,,"0.000000","0.000000",,,"2813.375000","3731.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.020417",,"23.020417",,"23.020417",,,,,,,"4317.541667",,,,,"4605.041667",,"4.155556",,"439.266667",,,,"251.200000","0.955556","0.133333","0.933333","40.111111","0.000000","426.370370","0.000000","9.296296","415.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","808.125000",,,,,"0.000000","0.000000",,,"2370.625000","2977.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.820417",,"22.820417",,"22.820417",,,,,,,"4684.416667",,,,,"4565.083333",,"3.511111",,"468.577778",,,,"41.457143","1.022222","0.133333","0.755556","44.955556","0.000000","470.592593","0.000000","9.629630","459.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","835.250000",,,,,"0.000000","0.000000",,,"2458.000000","3103.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.700417",,"21.700417",,"21.700417",,,,,,,"4974.625000",,,,,"4341.000000",,"3.444444",,"334.955556",,,,"31.085714","0.933333","0.088889","0.911111","33.444444","0.000000","349.222222","0.000000","8.740741","339.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","664.250000",,,,,"0.000000","0.000000",,,"2103.250000","2671.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.388333",,"19.388333",,"19.388333",,,,,,,"5157.041667",,,,,"3878.416667",,"2.866667",,"331.111111",,,,"31.257143","0.888889","0.088889","0.911111","33.466667","0.000000","347.777778","0.000000","8.851852","337.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","648.625000",,,,,"0.000000","0.000000",,,"2018.375000","2517.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.821250",,"20.821250",,"20.821250",,,,,,,"4882.625000",,,,,"4165.541667",,"3.755556",,"428.866667",,,,"39.628571","0.955556","0.177778","1.066667","42.733333","0.000000","441.222222","0.000000","9.407407","430.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","745.875000",,,,,"0.000000","0.000000",,,"2245.125000","2736.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.332500",,"20.332500",,"20.332500",,,,,,,"5124.375000",,,,,"4067.250000",,"3.777778",,"389.533333",,,,"37.771429","0.866667","0.422222","0.666667","40.644444","0.000000","417.148148","0.000000","8.703704","406.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","726.625000",,,,,"0.000000","0.000000",,,"2221.375000","2682.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.732500",,"19.732500",,"19.732500",,,,,,,"5277.000000",,,,,"3947.375000",,"2.444444",,"356.533333",,,,"33.542857","0.933333","0.222222","0.577778","36.022222","0.000000","371.629630","0.000000","8.407407","361.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","688.500000",,,,,"0.000000","0.000000",,,"2068.250000","2572.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.907083",,"18.907083",,"18.907083",,,,,,,"5005.208333",,,,,"3782.541667",,"3.688889",,"399.088889",,,,"36.742857","0.955556","0.355556","0.955556","39.777778","0.000000","412.074074","0.000000","8.925926","401.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","855.000000",,,,,"0.000000","0.000000",,,"4384.125000","4844.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.850417",,"19.850417",,"19.850417",,,,,,,"4846.750000",,,,,"3970.708333",,"2.600000",,"382.266667",,,,"36.428571","0.933333","0.088889","0.888889","39.222222","0.000000","402.518519","0.000000","8.444444","392.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.750000","184.857143",,,,,"0.000000","0.000000",,,"4871.000000","5392.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.644167",,"32.644167",,"32.644167",,,,,,,"2276.541667",,,,,"6529.958333",,"27.666667",,"453.911111",,,,"34.828571","2.377778","0.111111","1.155556","36.222222","0.000000","408.518519","0.000000","25.259259","378.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.875000","832.375000",,,,,"0.000000","0.000000",,,"2430.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.033333",,"30.033333",,"30.033333",,,,,,,"2902.500000",,,,,"6007.666667",,"3.888889",,"627.688889",,,,"45.828571","1.022222","0.133333","2.266667","50.288889","0.000000","534.814815","0.000000","10.074074","523.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1216.000000",,,,,"0.000000","0.000000",,,"3295.125000","4802.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.760833",,"24.760833",,"24.760833",,,,,,,"4648.333333",,,,,"4953.083333",,"3.711111",,"163.200000",,,,"2598.342857","0.933333","0.133333","1.311111","14.466667","0.000000","169.074074","0.000000","9.296296","158.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","344.750000",,,,,"0.000000","0.000000",,,"1145.500000","1842.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.272083",,"23.272083",,"23.272083",,,,,,,"4352.625000",,,,,"4655.333333",,"3.111111",,"112.888889",,,,"2558.228571","0.844444","0.088889","3.711111","7.977778","0.000000","96.740741","0.000000","8.407407","86.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","243.250000",,,,,"0.000000","0.000000",,,"859.000000","1164.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.639167",,"23.639167",,"23.639167",,,,,,,"4382.666667",,,,,"4728.583333",,"3.466667",,"191.755556",,,,"2051.714286","0.755556","0.155556","0.800000","12.711111","0.000000","145.000000","0.000000","8.037037","135.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.250000","366.125000",,,,,"0.000000","0.000000",,,"1871.000000","1665.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.453333",,"24.453333",,"24.453333",,,,,,,"4011.000000",,,,,"4891.625000",,"3.200000",,"520.244444",,,,"1856.257143","0.933333","0.377778","1.177778","46.555556","0.000000","483.259259","0.000000","8.740741","473.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","965.750000",,,,,"0.000000","0.000000",,,"2767.500000","3457.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.415833",,"19.415833",,"19.415833",,,,,,,"4672.458333",,,,,"3884.083333",,"3.288889",,"457.355556",,,,"42.314286","0.933333","0.577778","1.488889","46.133333","0.000000","482.185185","0.000000","9.000000","471.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","830.875000",,,,,"0.000000","0.000000",,,"2505.125000","3053.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.596667",,"19.596667",,"19.596667",,,,,,,"5570.583333",,,,,"3920.291667",,"3.600000",,"333.911111",,,,"31.342857","0.933333","0.177778","1.666667","33.777778","0.000000","353.925926","0.000000","9.000000","343.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","636.000000",,,,,"0.000000","0.000000",,,"1952.625000","2377.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.889167",,"21.889167",,"21.889167",,,,,,,"4982.875000",,,,,"4379.041667",,"3.088889",,"453.888889",,,,"45.285714","0.844444","0.177778","0.711111","49.066667","0.000000","498.777778","0.000000","8.370370","489.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.625000","796.625000",,,,,"0.000000","0.000000",,,"2519.250000","3130.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.477083",,"19.477083",,"19.477083",,,,,,,"5169.333333",,,,,"3896.375000",,"2.888889",,"365.555556",,,,"34.171429","0.888889","0.133333","0.955556","36.777778","0.000000","380.185185","0.000000","8.407407","370.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.875000","836.125000",,,,,"0.000000","0.000000",,,"4260.000000","4784.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.681667",,"19.681667",,"19.681667",,,,,,,"4811.208333",,,,,"3937.416667",,"3.577778",,"365.933333",,,,"36.828571","0.933333","0.088889","0.866667","39.466667","0.000000","401.444444","0.000000","8.888889","391.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","822.625000",,,,,"0.000000","0.000000",,,"4842.000000","5380.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.451667",,"22.451667",,"22.451667",,,,,,,"4657.416667",,,,,"4491.416667",,"8.933333",,"989.200000",,,,"48.942857","1.466667","0.400000","2.000000","52.311111","0.000000","539.666667","0.000000","13.370370","523.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","1852.000000",,,,,"0.000000","0.000000",,,"4468.250000","5832.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.670417",,"20.670417",,"20.670417",,,,,,,"4318.000000",,,,,"4135.083333",,"4.222222",,"365.200000",,,,"29.057143","0.955556","0.088889","1.422222","31.222222","0.000000","329.777778","0.000000","8.962963","319.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","672.625000",,,,,"0.000000","0.000000",,,"1964.250000","2379.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.848333",,"21.848333",,"21.848333",,,,,,,"4754.458333",,,,,"4370.666667",,"3.488889",,"416.133333",,,,"33.628571","0.755556","0.088889","1.311111","36.577778","0.000000","385.370370","0.000000","7.888889","376.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","774.500000",,,,,"0.000000","0.000000",,,"2277.875000","2721.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.132500",,"20.132500",,"20.132500",,,,,,,"4891.333333",,,,,"4027.625000",,"2.511111",,"414.666667",,,,"37.742857","0.844444","0.088889","2.288889","40.933333","0.000000","423.481481","0.000000","7.888889","414.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","759.375000",,,,,"0.000000","0.000000",,,"2231.375000","2711.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.042500",,"19.042500",,"19.042500",,,,,,,"5084.208333",,,,,"3809.416667",,"22.577778",,"357.044444",,,,"34.028571","1.933333","0.088889","0.866667","35.422222","0.000000","386.259259","0.000000","21.592593","360.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.875000","671.125000",,,,,"0.000000","0.000000",,,"2145.500000","2604.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.792500",,"22.792500",,"22.792500",,,,,,,"3789.166667",,,,,"4559.541667",,"3.333333",,"574.711111",,,,"48.800000","0.844444","0.555556","2.177778","53.400000","0.000000","557.148148","0.000000","8.296296","547.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1290.500000",,,,,"0.000000","0.000000",,,"6051.125000","7196.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.390417",,"17.390417",,"17.390417",,,,,,,"5659.458333",,,,,"3478.958333",,"3.844444",,"162.977778",,,,"2511.142857","0.955556","0.088889","2.533333","8.644444","0.000000","100.518519","0.000000","8.888889","90.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","444.625000",,,,,"0.000000","0.000000",,,"2839.625000","3327.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.985833",,"23.985833",,"23.985833",,,,,,,"3771.666667",,,,,"4798.208333",,"3.333333",,"433.133333",,,,"2620.000000","0.844444","0.177778","0.955556","44.466667","0.000000","458.925926","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","795.250000",,,,,"0.000000","0.000000",,,"2395.375000","2897.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.147500",,"25.147500",,"25.147500",,,,,,,"3449.375000",,,,,"5030.291667",,"4.000000",,"474.977778",,,,"2032.428571","0.955556","0.133333","1.822222","48.311111","0.000000","488.185185","0.000000","9.074074","477.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.125000","890.750000",,,,,"0.000000","0.000000",,,"3437.375000","3818.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.130417",,"26.130417",,"26.130417",,,,,,,"3912.291667",,,,,"5227.291667",,"3.555556",,"546.422222",,,,"1902.000000","0.755556","0.088889","2.533333","47.333333","0.000000","480.481481","0.000000","7.814815","471.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","1012.250000",,,,,"0.000000","0.000000",,,"2820.625000","3614.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.012917",,"21.012917",,"21.012917",,,,,,,"4422.583333",,,,,"4203.416667",,"3.666667",,"468.777778",,,,"105.428571","0.933333","0.133333","6.933333","48.444444","0.000000","498.925926","0.000000","9.370370","488.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1061.125000",,,,,"0.000000","0.000000",,,"6045.125000","6859.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.842083",,"18.842083",,"18.842083",,,,,,,"4652.875000",,,,,"3769.333333",,"3.733333",,"403.377778",,,,"38.285714","0.933333","0.088889","4.244444","41.244444","0.000000","424.000000","0.000000","9.333333","413.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","832.625000",,,,,"0.000000","0.000000",,,"3866.500000","4384.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.010417",,"21.010417",,"21.010417",,,,,,,"5120.166667",,,,,"4203.166667",,"8.111111",,"407.933333",,,,"39.428571","1.555556","0.088889","1.622222","42.111111","0.000000","447.000000","0.000000","13.518519","430.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","744.875000",,,,,"0.000000","0.000000",,,"2250.125000","2797.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.200000",,"20.200000",,"20.200000",,,,,,,"4722.708333",,,,,"4040.875000",,"4.288889",,"549.155556",,,,"40.542857","1.133333","0.133333","2.711111","44.022222","0.000000","465.629630","0.000000","10.666667","453.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","1017.125000",,,,,"0.000000","0.000000",,,"2748.875000","3460.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.990417",,"20.990417",,"20.990417",,,,,,,"4582.750000",,,,,"4198.666667",,"3.577778",,"437.977778",,,,"42.342857","0.844444","0.133333","2.844444","45.844444","0.000000","470.592593","0.000000","8.407407","460.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","802.750000",,,,,"0.000000","0.000000",,,"2460.250000","3028.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.747500",,"22.747500",,"22.747500",,,,,,,"4071.875000",,,,,"4550.541667",,"3.088889",,"464.311111",,,,"41.142857","0.844444","0.088889","1.066667","44.066667","0.000000","440.111111","0.000000","8.185185","430.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","857.250000",,,,,"0.000000","0.000000",,,"2492.250000","3075.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.713750",,"19.713750",,"19.713750",,,,,,,"4839.208333",,,,,"3943.750000",,"3.622222",,"389.844444",,,,"36.685714","0.977778","0.133333","1.466667","38.888889","0.000000","390.111111","0.000000","9.333333","379.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","714.000000",,,,,"0.000000","0.000000",,,"2135.750000","2635.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.062500",,"21.062500",,"21.062500",,,,,,,"5098.583333",,,,,"4213.583333",,"4.000000",,"353.933333",,,,"34.314286","0.955556","0.133333","0.844444","36.400000","0.000000","367.740741","0.000000","9.518519","356.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","656.000000",,,,,"0.000000","0.000000",,,"2067.750000","2605.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.229167",,"20.229167",,"20.229167",,,,,,,"5227.708333",,,,,"4046.708333",,"4.111111",,"355.111111",,,,"33.714286","1.111111","0.088889","1.355556","35.800000","0.000000","367.333333","0.000000","10.370370","355.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","651.750000",,,,,"0.000000","0.000000",,,"1999.375000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.282500",,"24.282500",,"24.282500",,,,,,,"3031.916667",,,,,"4857.416667",,"21.266667",,"473.577778",,,,"43.342857","1.911111","0.200000","1.266667","45.111111","0.000000","465.555556","0.000000","20.962963","440.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.125000","865.000000",,,,,"0.000000","0.000000",,,"2582.875000","3175.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.178750",,"25.178750",,"25.178750",,,,,,,"3900.000000",,,,,"5036.666667",,"3.977778",,"1013.777778",,,,"41.400000","0.955556","0.088889","4.066667","44.177778","0.000000","440.222222","0.000000","9.518519","429.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","15.714286",,,,,"0.000000","0.000000",,,"4154.375000","5611.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.437083",,"28.437083",,"28.437083",,,,,,,"3638.250000",,,,,"5688.375000",,"4.111111",,"373.711111",,,,"2527.771429","0.955556","0.088889","1.377778","30.044444","0.000000","311.259259","0.000000","9.629630","300.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","690.375000",,,,,"0.000000","0.000000",,,"1967.625000","2452.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.992500",,"27.992500",,"27.992500",,,,,,,"2436.458333",,,,,"5599.416667",,"8.577778",,"393.066667",,,,"2317.057143","1.466667","0.133333","1.022222","36.933333","0.000000","386.592593","0.000000","13.629630","370.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","876.875000",,,,,"0.000000","0.000000",,,"5075.125000","5665.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.729583",,"25.729583",,"25.729583",,,,,,,"3772.458333",,,,,"5146.875000",,"3.866667",,"338.377778",,,,"2118.114286","0.777778","0.088889","1.066667","30.777778","0.000000","316.740741","0.000000","8.074074","307.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","718.750000",,,,,"0.000000","0.000000",,,"4018.750000","4291.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.221667",,"27.221667",,"27.221667",,,,,,,"3001.833333",,,,,"5445.416667",,"4.311111",,"559.244444",,,,"1728.000000","0.955556","0.088889","1.155556","39.400000","0.000000","408.851852","0.000000","9.296296","398.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1064.875000",,,,,"0.000000","0.000000",,,"3247.625000","3960.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.568333",,"24.568333",,"24.568333",,,,,,,"3822.875000",,,,,"4914.708333",,"30.800000",,"519.644444",,,,"470.400000","2.155556","0.577778","1.333333","47.133333","0.000000","495.666667","0.000000","22.629630","471.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.750000","956.500000",,,,,"0.000000","0.000000",,,"2842.250000","3512.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.550417",,"22.550417",,"22.550417",,,,,,,"4712.500000",,,,,"4511.041667",,"4.688889",,"322.711111",,,,"29.285714","0.955556","0.111111","0.977778","31.288889","0.000000","328.888889","0.000000","9.851852","317.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","605.375000",,,,,"0.000000","0.000000",,,"1876.125000","2323.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.582917",,"21.582917",,"21.582917",,,,,,,"4338.750000",,,,,"4317.333333",,"3.400000",,"379.088889",,,,"36.371429","1.022222","0.133333","1.266667","38.933333","0.000000","398.740741","0.000000","9.740741","387.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","699.750000",,,,,"0.000000","0.000000",,,"2141.375000","2700.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.396250",,"26.396250",,"26.396250",,,,,,,"3317.000000",,,,,"5280.041667",,"3.800000",,"417.822222",,,,"35.114286","0.955556","0.088889","1.088889","37.622222","0.000000","385.555556","0.000000","9.185185","374.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","775.250000",,,,,"0.000000","0.000000",,,"2226.125000","2770.625000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host.csv b/splunk_eventgen/samples/vmware-actuals-host.csv deleted file mode 100644 index 905a7128..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host.csv +++ /dev/null @@ -1,2 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"18541.239130","32.019766","18541.239130","32.019766","18541.239130","32.019766",,,,,,,"2242.192935",,,,,"5808.996377",,"6.022360","2932.263736","62.349689","2932.263736","2932.263736","23.152174","355.736183","3.348771","0.904537","3.174543","5.590737","0.000000","121.281804","0.000000","43.718196","75.482287","2907027.826087","4960558.086957","1689211.739130","0.000000","77973470.260870","0.000000","135369925.826087",,"6709144.695652","62702811.217391","0.000000","6249914.173913","0.000000","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783",,,,,,,,"433.638350","655.997585",,,,,"0.000000","0.000000",,,"11695.883152","6019.548913","4219.326087","908.260870","907.608696","904.739130","987.565217","981.000000","983.130435","0.000000","0.847826","0.000000","684.347826","676.326087","677.608696","786.978261","775.304348","777.804348","160.000000","6000.000000",,"8894531.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-fields.csv b/splunk_eventgen/samples/vmware-fields.csv deleted file mode 100644 index 45b52ed8..00000000 --- a/splunk_eventgen/samples/vmware-fields.csv +++ /dev/null @@ -1,136 +0,0 @@ -perftype,instance,fieldssplit -cpu,no,"AvgUsg_mhz" -cpu,no,"AvgUsg_pct" -cpu,no,"MaxUsg_mhz" -cpu,no,"MaxUsg_pct" -cpu,no,"MinUsg_mhz" -cpu,no,"MinUsg_pct" -cpu,no,"SumRdy_ms" -cpu,no,"SumSwpWait_ms" -cpu,no,"AvgDemand_MHz" -cpu,no,"AvgLat_pct" -cpu,no,"Entitle_MHz" -cpu,no,"SumCostop_ms" -cpu,no,"SumIdle_ms" -cpu,no,"SumMaxLtd_ms" -cpu,no,"SumOverlap_ms" -cpu,no,"SumRun_ms" -cpu,yes,"SumSys_ms" -cpu,yes,"SumUsd_ms" -cpu,yes,"SumWait_ms" -disk,no,"AvgRd_KBps" -disk,no,"AvgUsg_KBps" -disk,no,"AvgWr_KBps" -disk,no,"MaxUsg_KBps" -disk,no,"MinUsg_KBps" -disk,no,"MaxTotLat_ms" -disk,yes,AvgCmds -disk,yes,AvgRd -disk,yes,"AvgTotRdLat_ms" -disk,yes,"AvgTotWrLat_ms" -disk,yes,AvgWr -disk,yes,SumBusResets -disk,yes,SumCmds -disk,yes,SumCmdsAbort -disk,yes,SumRd -disk,yes,SumWr -mem,no,"AvgActWr_KB" -mem,no,"AvgAct_KB" -mem,no,"AvgCmpd_KB" -mem,no,"AvgCmpnRate_KBps" -mem,no,"AvgConsum_KB" -mem,no,"AvgDecmpnRate_KBps" -mem,no,"AvgGrtd_KB" -mem,no,"AvgOvrhdMax_KB" -mem,no,"AvgOvrhd_KB" -mem,no,"AvgShrd_KB" -mem,no,"AvgSwpIRate_KBps" -mem,no,"AvgSwpIn_KB" -mem,no,"AvgSwpORate_KBps" -mem,no,"AvgSwpOut_KB" -mem,no,"AvgSwpTarg_KB" -mem,no,"AvgSwpd_KB" -mem,no,"AvgUsg_pct" -mem,no,"AvgVmctlTarg_KB" -mem,no,"AvgVmctl_KB" -mem,no,"AvgZero_KB" -mem,no,"MaxAct_KB" -mem,no,"MaxConsum_KB" -mem,no,"MaxGrtd_KB" -mem,no,"MaxOvrhd_KB" -mem,no,"MaxShrd_KB" -mem,no,"MaxSwpIn_KB" -mem,no,"MaxSwpOut_KB" -mem,no,"MaxSwpTarg_KB" -mem,no,"MaxSwpd_KB" -mem,no,"MaxUsg_pct" -mem,no,"MaxVmctlTarg_KB" -mem,no,"MaxVmctl_KB" -mem,no,"MaxZero_KB" -mem,no,"MinAct_KB" -mem,no,"MinConsum_KB" -mem,no,"MinGrtd_KB" -mem,no,"MinOvrhd_KB" -mem,no,"MinShrd_KB" -mem,no,"MinSwpIn_KB" -mem,no,"MinSwpOut_KB" -mem,no,"MinSwpTarg_KB" -mem,no,"MinSwpd_KB" -mem,no,"MinUsg_pct" -mem,no,"MinVmctlTarg_KB" -mem,no,"MinVmctl_KB" -mem,no,"MinZero_KB" -mem,no,"ZipSaved_KB" -mem,no,"Zipped_KB" -mem,no,"AvgEntitle_KB" -mem,no,"AvgLat_pct" -mem,no,"AvgLlSwapUsd_KB" -mem,no,"AvgLlSwpIRate_KBps" -mem,no,"AvgLlSwpORate_KBps" -mem,no,"AvgOvrhdTouch_KB" -net,no,"AvgRvcd_KBps" -net,no,"AvgUsg_KBps" -net,no,"AvgXmit_KBps" -net,no,"MaxUsg_KBps" -net,no,"MinUsg_KBps" -net,no,"AvgBRx_KBps" -net,no,"AvgBTx_KBps" -net,no,SumBroadcastRx -net,no,SumBroadcastTx -net,no,SumDropRx -net,no,SumDropTx -net,no,SumMulticastRx -net,no,SumMulticastTx -net,yes,SumPktsRx -net,yes,SumPktsTx -power,no,"SumEnergy_j" -resCpu,no,"ActAvg15m_pct" -resCpu,no,"ActAvg1m_pct" -resCpu,no,"ActAvg5m_pct" -resCpu,no,"ActPk15m_pct" -resCpu,no,"ActPk1m_pct" -resCpu,no,"ActPk5m_pct" -resCpu,no,"MaxLtd15_pct" -resCpu,no,"MaxLtd1_pct" -resCpu,no,"MaxLtd5_pct" -resCpu,no,"RunAvg15m_pct" -resCpu,no,"RunAvg1m_pct" -resCpu,no,"RunAvg5m_pct" -resCpu,no,"RunPk15m_pct" -resCpu,no,"RunPk1m_pct" -resCpu,no,"RunPk5m_pct" -resCpu,no,SmplCnt -resCpu,no,"SmplPrd_ms" -sys,no,SumHeartbeat -sys,no,"Uptime_sec" -sys,no,"OsUptime_sec" -vDisk,yes,AvgRd -vDisk,yes,"AvgRd_KBps" -vDisk,yes,"AvgTotRdLat_ms" -vDisk,yes,"AvgTotWrLat_ms" -vDisk,yes,AvgWr -vDisk,yes,"AvgWr_KBps" -vDisk,yes,RdLoadMetric -vDisk,yes,RdOIO -vDisk,yes,WrLoadMetric -vDisk,yes,WrOIO diff --git a/splunk_eventgen/samples/vmware-hierarchy.csv b/splunk_eventgen/samples/vmware-hierarchy.csv deleted file mode 100644 index 40e68dac..00000000 --- a/splunk_eventgen/samples/vmware-hierarchy.csv +++ /dev/null @@ -1,9 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 03:30:26 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ross-datagens/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"" instanceUuid=""5012c4f6-e0b3-9daf-62a0-a1b47e67265e"" uuid=""4212c080-295c-e11e-0eba-a1b41060ae79"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ross-datagens/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ross-datagens/"" moid=""vm-2179"" type=""VirtualMachine"" name=""ross-datagen0044"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435026 -"2012-05-31 03:30:02 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"" instanceUuid=""501200a4-4da4-bfaa-f6d0-d5ce6fa6a913"" uuid=""42124cd4-7654-72f6-a95a-dbbb19b76626"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/QA/"" moid=""vm-1447"" type=""VirtualMachine"" name=""qasvwin7x64-HK1"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435002 -"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"" instanceUuid=""50127041-04d4-7c04-b381-7daa333399b9"" uuid=""4212c9c0-4b5e-d434-7498-3b17b0605b4e"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-1647"" type=""VirtualMachine"" name=""ANTIVIR01"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 -"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host10.foobar.com"" physicalhost=""host10.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-18"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"" instanceUuid=""5277badb-1342-e933-7dda-3d982779747d"" uuid=""564dc31d-0089-1fbb-57cd-a5373ac9c1db"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-16"" type=""VirtualMachine"" name=""vCenter41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 -"2012-05-31 03:29:45 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"" uuid=""44454c4c-5800-1052-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-20"" type=""HostSystem"" name=""host2.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434985 -"2012-05-31 03:29:44 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-19"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"" uuid=""44454c4c-5800-1051-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-19"" type=""HostSystem"" name=""host6.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434984 -"2012-05-31 03:29:40 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"" instanceUuid=""593E6A61-A674-478C-82C2-8EDB92A22906"" typeduipath=""/"" uipath=""/"" moid=""group-d1"" type=""VirtualCenter"" name=""VCENTER41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434980 -"2012-05-31 03:15:55 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/Solutions/VMware/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"" instanceUuid=""5012c9a3-1157-774d-6d43-7620a2a399de"" uuid=""4212765e-9013-6bca-547d-4b57f7add71f"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:Solutions/ResourcePool:VMware/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Solutions/VMware/QA/"" moid=""vm-744"" type=""VirtualMachine"" name=""io-qa-splunk"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434155 diff --git a/splunk_eventgen/samples/vmware-inventory.csv b/splunk_eventgen/samples/vmware-inventory.csv deleted file mode 100644 index 94492c00..00000000 --- a/splunk_eventgen/samples/vmware-inventory.csv +++ /dev/null @@ -1 +0,0 @@ -_raw,index,host,source,sourcetype "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=yellow, time=2012-05-31T03:53:31Z,subpath=triggeredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2029, overallStatus=yellow, time=2012-05-31T03:50:39Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1105, overallStatus=yellow, time=2012-05-31T03:44:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-141, overallStatus=yellow, time=2012-05-31T03:50:19Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-5.host-19, overallStatus=green, time=2012-04-27T22:57:23Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-4.host-19, overallStatus=green, time=2012-05-12T02:11:41Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-38.host-19, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-37.host-19, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-36.host-19, overallStatus=green, time=2011-12-01T19:48:26Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-35.host-19, overallStatus=green, time=2011-03-30T23:04:48Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-32.host-19, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-31.host-19, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-3.host-19, overallStatus=green, time=2012-05-14T01:06:22Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-29.host-19, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-27.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-26.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-24.host-19, overallStatus=gray, time=2012-05-29T16:00:41Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-23.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-22.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-21.host-19, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-20.host-19, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-19.host-19, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-18.host-19, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-17.host-19, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-16.host-19, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-15.host-19, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-14.host-19, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-13.host-19, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-12.host-19, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-1.host-19, overallStatus=green, time=2012-04-27T22:56:31Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=red, time=2012-05-31T03:20:51Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=yellow, time=2012-05-31T03:23:38Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2090, overallStatus=yellow, time=2012-05-31T03:26:21Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338242306, pnicDevice=vmnic4, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338241606, pnicDevice=vmnic0, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338297110, pnicDevice=vmnic5, uplinkPortKey=264, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338296399, pnicDevice=vmnic1, uplinkPortKey=263, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914974341, pnicDevice=vmnic6, uplinkPortKey=140, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914972820, pnicDevice=vmnic2, uplinkPortKey=138, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4103-35b23908, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",faultToleranceEnabled=True, name=host6.foobar.com, port=443, sslThumbprint=25:53:43:4A:E9:D8:2A:56:10:4A:6D:35:90:BB:82:8D:FC:F3:6E:F4, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",hz=2659999620, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4103, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=234, distributedMemoryFairness=291, overallCpuUsage=12881, overallMemoryUsage=65416, uptime=8915576,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=138, distributedMemoryFairness=380, overallCpuUsage=15011, overallMemoryUsage=46562, uptime=8911411,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=134, distributedMemoryFairness=379, overallCpuUsage=12645, overallMemoryUsage=46582, uptime=8910871,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=162, distributedMemoryFairness=286, overallCpuUsage=12131, overallMemoryUsage=68594, uptime=8914976,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=126, distributedMemoryFairness=288, overallCpuUsage=20193, overallMemoryUsage=68599, uptime=8913956,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=153, distributedMemoryFairness=382, overallCpuUsage=21654, overallMemoryUsage=46582, uptime=8909791,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf55e8-44794690-b3e8-842b2b76f183,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lunNumber=0, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"", device=[key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:73:10:77], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:7d:3e:c4], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=233, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[263:dvUplink1;264:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=235, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[137:dvUplink1;138:dvUplink2;139:dvUplink3;140:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=234, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.500000e116f4aa60, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa604d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-1664;vm-2022;vm-744;vm-1667;vm-385;vm-1836;vm-1001;vm-687;vm-1647;vm-480;vm-874;vm-281;vm-885;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1715;vm-1493;vm-1447;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;SC-WIN7-CLEAN;sc-centos-pciContRT-Current;io-qa-splunk;sushant_sandbox_centos2;perfy22;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;soln-am-centos-pm;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;soln_vmware_centos_5.6;qasvwin8r2x64-1;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;perfy67;jyun_test_empty;qasvwin7x64-HK1;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host6.foobar.com, overallStatus=green,vms=""vm-237;vm-1528;vm-1079;vm-1678;vm-1400;vm-975;vm-2502;vm-2556;vm-1522;vm-1375;vm-1187;vm-2498;vm-1934;vm-408;vm-2307;vm-1953;vm-1760;vm-1731;vm-1823;vm-824;vm-358;vm-1971;vm-1478;vm-2303;vm-1960;vm-1309;vm-1492;vm-1931;vm-985;vm-1970"",vmnames=""SOLN-W2008R2-5;beer.sv.splunk.com;soln-essNightly-BieberLR;tlee-rh5;soln-es2.0.0-4.3;VMware HealthAnalyzer;Centos6.2-64Sh01;testad;ivanhook-centos;bamboo-24;rhel6-64bit-p;Centos6.2-64Idx01;gen-win2008r2x64-CN-Trad;perfy39;se-vcenter;iv-wintest;qatwwin3rx64-3;ADH-W2k8R2-TPL;gen-fbsd81x86;soln-am-centos-dev2;perfy03;jason-ubuntu-2;btan_clone_nightly2n2b_FA;splunk_for_vmware_forwarder_appliance_ga-1.0-120502aLEAVE;splunk_for_vmware_forwarder_appliance_beta2-1.0-120403a;qa-vcent42x86;jtsai_fa_1;gen-win7x32-ultimate;soln-btsay-sandbox;jason-ubuntu-1"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-2022;vm-1664;vm-744;vm-1667;vm-385;vm-687;vm-1836;vm-1001;vm-1647;vm-480;vm-874;vm-885;vm-281;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1493;vm-1447;vm-1715;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;sc-centos-pciContRT-Current;SC-WIN7-CLEAN;io-qa-splunk;sushant_sandbox_centos2;perfy22;soln-am-centos-pm;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;qasvwin8r2x64-1;soln_vmware_centos_5.6;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;jyun_test_empty;qasvwin7x64-HK1;perfy67;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",model=PowerEdge R710, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt/net-lbt.5224,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman/openwsmand.5425,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp/slpd.5338,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa/vpxa.5453,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/nssquery.5463,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/hostd.5202,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/esxcfg-rescan.5626,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5486,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5444,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5415,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vprobed.5319,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5309,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vobd.5292,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5282,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/storageRM.5270,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5260,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sensord.5248,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5238,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5214,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5192,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/ntpd.5168,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5115,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4103-STD, type=VMFS, uuid=4daf55e8-44794690-b3e8-842b2b76f183, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:91:2e:9d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:91:2e:9c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:91:2e:99, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:91:2e:98, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:f1:85, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:f1:83, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:f1:81, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:f1:7f, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=22:131094:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=6:106:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=60:131132:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=636:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.500000e116f4aa60, deviceName=/vmfs/devices/disks/naa.500000e116f4aa60, devicePath=/vmfs/devices/disks/naa.500000e116f4aa60, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa60)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa604d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.500000e116f4aa60, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;96;80;0;0;-31;22;-12;-86;98;80;0;0;-31;22;-12;-86;99;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;67;75;81;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;49;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;65;81;75;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;51;54;54;51;55;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;54;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;97], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;98], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[68;53;65;52;80;66;49;48;49;49;56;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=summary/config/product",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2448, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=655, hostMemoryUsage=6043, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4904, sharedMemory=3287, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=115605,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=691, distributedMemoryEntitlement=1747, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=983, hostMemoryUsage=3980, overallCpuDemand=930, overallCpuUsage=664, privateMemory=3789, sharedMemory=307, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=41069,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=500, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=122, hostMemoryUsage=1192, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1074, sharedMemory=966, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=123280,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=657, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=436766,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=114, distributedCpuEntitlement=2712, distributedMemoryEntitlement=3842, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=1802, hostMemoryUsage=8101, overallCpuDemand=3775, overallCpuUsage=2978, privateMemory=7821, sharedMemory=370, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2514768,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=491, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=163, hostMemoryUsage=1185, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1076, sharedMemory=964, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=122620,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2560, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=409, hostMemoryUsage=6135, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4912, sharedMemory=3279, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=114585,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=239, distributedMemoryEntitlement=1642, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=573, hostMemoryUsage=4002, overallCpuDemand=239, overallCpuUsage=212, privateMemory=3827, sharedMemory=269, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=40109,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=678, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435986,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=112, distributedCpuEntitlement=3031, distributedMemoryEntitlement=4199, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2867, hostMemoryUsage=8118, overallCpuDemand=3084, overallCpuUsage=2206, privateMemory=7827, sharedMemory=364, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513988,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=677, overallCpuDemand=79, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435686,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=2579, distributedMemoryEntitlement=3882, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2621, hostMemoryUsage=8123, overallCpuDemand=2579, overallCpuUsage=2206, privateMemory=7828, sharedMemory=363, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513688,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=514, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=81, hostMemoryUsage=1194, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1078, sharedMemory=962, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=121660,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2446, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=327, hostMemoryUsage=6139, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4923, sharedMemory=3268, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=113625,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=638, distributedMemoryEntitlement=1760, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=614, hostMemoryUsage=4009, overallCpuDemand=824, overallCpuUsage=664, privateMemory=3872, sharedMemory=224, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=39149,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-migration.csv b/splunk_eventgen/samples/vmware-migration.csv deleted file mode 100644 index 240b52ef..00000000 --- a/splunk_eventgen/samples/vmware-migration.csv +++ /dev/null @@ -1 +0,0 @@ -host6.foobar.com,host-16 host2.foobar.com,host-20 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv deleted file mode 100644 index bef02f21..00000000 --- a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv +++ /dev/null @@ -1,29 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-guest-instance.csv b/splunk_eventgen/samples/vmware-perf-guest-instance.csv deleted file mode 100644 index da3f27a7..00000000 --- a/splunk_eventgen/samples/vmware-perf-guest-instance.csv +++ /dev/null @@ -1,34 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv deleted file mode 100644 index 5e7651b3..00000000 --- a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv +++ /dev/null @@ -1,15 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf-host-instance.csv b/splunk_eventgen/samples/vmware-perf-host-instance.csv deleted file mode 100644 index bca11490..00000000 --- a/splunk_eventgen/samples/vmware-perf-host-instance.csv +++ /dev/null @@ -1,211 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf.csv b/splunk_eventgen/samples/vmware-perf.csv deleted file mode 100644 index 56022b24..00000000 --- a/splunk_eventgen/samples/vmware-perf.csv +++ /dev/null @@ -1,286 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/webhosts.sample b/splunk_eventgen/samples/webhosts.sample deleted file mode 100644 index 66e7e32b..00000000 --- a/splunk_eventgen/samples/webhosts.sample +++ /dev/null @@ -1,3 +0,0 @@ -10.2.1.33 -10.2.1.34 -10.2.1.35 \ No newline at end of file diff --git a/splunk_eventgen/samples/windbag b/splunk_eventgen/samples/windbag deleted file mode 100644 index c9b52d7d..00000000 --- a/splunk_eventgen/samples/windbag +++ /dev/null @@ -1,5 +0,0 @@ -2014-01-04 20:54:34 WINDBAG Event 1 of 5 -2014-01-04 20:54:35 WINDBAG Event 2 of 5 -2014-01-04 20:54:36 WINDBAG Event 3 of 5 -2014-01-04 20:54:37 WINDBAG Event 4 of 5 -2014-01-04 20:54:38 WINDBAG Event 5 of 5 \ No newline at end of file diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py deleted file mode 100644 index 528209ef..00000000 --- a/tests/unit/conftest.py +++ /dev/null @@ -1,17 +0,0 @@ -from os import path as op - -import pytest - -from splunk_eventgen.lib.eventgenconfig import Config - - -@pytest.fixture -def eventgen_config(): - """Returns a function to create config instance based on config file""" - - def _make_eventgen_config_instance(configfile=None): - if configfile is not None: - configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) - return Config(configfile=configfile) - - return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py deleted file mode 100644 index b0391ef6..00000000 --- a/tests/unit/test_eventgenconfig.py +++ /dev/null @@ -1,277 +0,0 @@ -import json -import os -from ConfigParser import ConfigParser - -import pytest - -from splunk_eventgen.lib.eventgensamples import Sample - - -def test_makeSplunkEmbedded(eventgen_config): - """Test makeSplunkEmbedded works""" - config_instance = eventgen_config() - session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' - config_instance.makeSplunkEmbedded(session_key) - assert config_instance.splunkEmbedded - # reset splunkEmbedded since all instances share the attribute - config_instance.splunkEmbedded = False - - -def test_buildConfDict(eventgen_config): - """Test buildConfDict returns the same as reading directly from file""" - config_instance = eventgen_config() - config_instance._buildConfDict() - configparser = ConfigParser() - splunk_eventgen_folder = os.path.join( - os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') - configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) - configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) - - for key, value in config_instance._confDict['global'].items(): - assert value == configparser.get('global', key) - - -def test_validate_setting_count(eventgen_config): - """Test count config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'count', '0')) == int - assert config_instance._validateSetting('sample', 'count', '0') == 0 - - -def test_validate_setting_delay(eventgen_config): - """Test delay config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'delay', '10')) == int - assert config_instance._validateSetting('sample', 'delay', '10') == 10 - - -def test_validate_setting_interval(eventgen_config): - """Test interval config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'interval', '3')) == int - assert config_instance._validateSetting('sample', 'interval', '3') == 3 - - -def test_validate_setting_perdayvolume(eventgen_config): - """Test perdayvolume config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float - assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 - - -def test_validate_setting_randomizeCount(eventgen_config): - """Test randomizeCount config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float - assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 - - -def test_validate_setting_timeMultiple(eventgen_config): - """Test timeMultiple config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float - assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 - - -def test_validate_setting_disabled(eventgen_config): - """Test disabled config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'disabled', 'false')) == bool - assert config_instance._validateSetting('sample', 'disabled', 'false') is False - - -def test_validate_setting_profiler(eventgen_config): - """Test profiler config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool - assert config_instance._validateSetting('sample', 'profiler', 'false') is False - - -def test_validate_setting_useOutputQueue(eventgen_config): - """Test useOutputQueue config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool - assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False - - -def test_validate_setting_bundlelines(eventgen_config): - """Test bundlelines config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool - assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False - - -def test_validate_setting_httpeventWaitResponse(eventgen_config): - """Test httpeventWaitResponse config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool - assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False - - -def test_validate_setting_sequentialTimestamp(eventgen_config): - """Test sequentialTimestamp config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool - assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False - - -def test_validate_setting_autotimestamp(eventgen_config): - """Test autotimestamp config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool - assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False - - -def test_validate_setting_randomizeEvents(eventgen_config): - """Test randomizeEvents config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool - assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False - - -def test_validate_setting_outputCounter(eventgen_config): - """Test outputCounter config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool - assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False - - -def test_validate_setting_minuteOfHourRate(eventgen_config): - """Test minuteOfHourRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ - ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ - ' "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1,' \ - ' "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1,' \ - ' "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1,' \ - ' "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1,' \ - ' "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 }' - assert type(config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate)) == dict - result = json.loads(minuteOfHourRate) - assert config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate) == result - - -def test_validate_setting_hourOfDayRate(eventgen_config): - """Test hourOfDayRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ - ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ - ' "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70,' \ - ' "22": 0.60, "23": 0.45 }' - assert type(config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate)) == dict - result = json.loads(hourOfDayRate) - assert config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate) == result - - -def test_validate_setting_dayOfWeekRate(eventgen_config): - """Test dayOfWeekRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' - assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict - result = json.loads(dayOfWeekRate) - assert config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate) == result - - -def test_validate_setting_dayOfMonthRate(eventgen_config): - """Test dayOfMonthRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ - ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ - ' "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1,' \ - ' "31": 1 }' - assert type(config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate)) == dict - result = json.loads(dayOfMonthRate) - assert config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate) == result - - -def test_validate_setting_monthOfYearRate(eventgen_config): - """Test monthOfYearRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ - ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' - assert type(config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate)) == dict - result = json.loads(monthOfYearRate) - assert config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate) == result - - -def test_validate_setting_httpeventServers(eventgen_config): - """Test httpeventServers config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ - ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' - assert type(config_instance._validateSetting('sample', 'httpeventServers', httpeventServers)) == dict - result = json.loads(httpeventServers) - assert config_instance._validateSetting('sample', 'httpeventServers', httpeventServers) == result - - -def test_validate_setting_autotimestamps(eventgen_config): - """Test autotimestamps config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ - r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ - r'["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ - r'["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ' \ - r'["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ - r'["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ' \ - r'["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ' \ - r'["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ' \ - r'["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ' \ - r'["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ' \ - r'["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ' \ - r'["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ' \ - r'",%m/%d/%Y %I:%M:%S %p,"], ' \ - r'["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ' \ - r'["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ' \ - r'["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"],' \ - r'["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ - r'["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ' \ - r'["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ' \ - r'["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", ' \ - r'"%Y-%m-%dT%H:%M:%S"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]]' - assert type(config_instance._validateSetting('sample', 'autotimestamps', autotimestamps)) == list - result = json.loads(autotimestamps) - assert config_instance._validateSetting('sample', 'autotimestamps', autotimestamps) == result - - -def test_getPlugin(eventgen_config): - """Test getPlugin method without loading any plugins""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - with pytest.raises(KeyError): - config_instance.getPlugin('output.awss3') - - -def test_getSplunkUrl(eventgen_config): - """Test getSplunkUrl with provided sample object""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - sample = Sample('test') - sample.splunkHost = 'localhost' - sample.splunkMethod = 'https' - sample.splunkPort = '8088' - - assert ('https://localhost:8088', 'https', 'localhost', '8088') == config_instance.getSplunkUrl(sample) - - -def test_validateTimeZone(eventgen_config): - """Test _validateTimeZone method""" - pass - - -def test_validateSeed(eventgen_config): - """Test _validateSeed method""" - pass - - -def test_punct(eventgen_config): - """Test _punct method with given string""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert '--:\n$^' == config_instance._punct('this-is-a: test \ntest $^') - - -def test_parse(eventgen_config): - """Test parse method with given evengen config""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - config_instance.parse() - assert len(config_instance.samples) == 1 diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py deleted file mode 100644 index 4dc7d13d..00000000 --- a/tests/unit/test_timeparser.py +++ /dev/null @@ -1,105 +0,0 @@ -import datetime - -import pytest - -from splunk_eventgen.lib import timeparser - -time_delta_test_params = [(datetime.timedelta(days=1), 86400), - (datetime.timedelta(days=1, hours=3, minutes=15, seconds=32), 98132), - (datetime.timedelta(hours=1, minutes=10), 4200), (datetime.timedelta(hours=-1), -3600), - (None, 0)] - - -@pytest.mark.parametrize('delta,expect', time_delta_test_params) -def test_time_delta_2_second(delta, expect): - ''' Test timeDelta2secs function, convert time delta object to seconds - Normal cases: - case 1: time delta is 1 day, expect is 86400 - case 2: time delta is 1 day 3 hour 15 minutes 32 seconds, expect is 98132 - case 3: time delta is less than 1 day, only 1 hour 10 minutes, expect is 4200 - case 4: time delta is 1 hour ago, expect is -3600 - - Corner cases: - case 1: delta object is None -- invalid input, expect is - ''' - assert timeparser.timeDelta2secs(delta) == expect - - -def check_datetime_equal(d1, d2): - assert d1.year == d2.year - assert d1.month == d2.month - assert d1.day == d2.day - assert d1.hour == d2.hour - assert d1.minute == d2.minute - assert d1.second == d2.second - - -parse_time_math_params = [('+', '100', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 12, 0)), - ('-', '20', 'm', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2017, 7, 8, 4, 10, 20)), - ('', '3', 'w', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 29, 4, 10, 20)), - ('', '0', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 10, 20)), - ('', '123', '', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 10, 20))] - - -@pytest.mark.parametrize('plusminus,num,unit,ret,expect', parse_time_math_params) -def test_time_parser_time_math(plusminus, num, unit, ret, expect): - ''' - test timeParserTimeMath function, parse the time modifier - Normal Case: - Case 1: input "+100s" -- the parser should translate it as 100 seconds later. - Case 2: input "-20m" -- the parser should handle the month larger than 12 and translate as 20 months ago - Case 3: input '3w' -- the parser should translate as 21 days later. - - Corner Cases: - Case 1: input "0s" -- the time parser should return now - Case 2: input "123" -- unit is the empty string, behavior - ''' - check_datetime_equal(timeparser.timeParserTimeMath(plusminus, num, unichr, ret), expect) - - -def mock_now(): - return datetime.datetime(2019, 3, 10, 13, 20, 15) - - -def mock_utc_now(): - return datetime.datetime(2019, 3, 10, 5, 20, 15) - - -timeparser_params = [ - ('now', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), - ('now', datetime.timedelta(days=0), datetime.datetime(2019, 3, 10, 5, 20, 15)), - ('now', datetime.timedelta(hours=2), datetime.datetime(2019, 3, 10, 7, 20, 15)), - ('now', datetime.timedelta(hours=-3), datetime.datetime(2019, 3, 10, 2, 20, 15)), - ('-7d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 3, 13, 20, 15)), - ('-0mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 3, 1, 0, 0, 0)), - ('-1mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 2, 1, 0, 0, 0)), - ('-3d@d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 7, 0, 0, 0)), - ('+5d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 15, 13, 20, 15)), - ('', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), ] - - -@pytest.mark.parametrize('ts,tz,expect', timeparser_params) -def test_timeparser(ts, tz, expect): - ''' - test timeParser function, parse splunk time modifier - Normal Cases: - Case 1: get now timestamp - Case 2: get utc now timestamp - Case 3: get utc+2 timezone timestamp - Case 4: get utc-2 timezone timestamp - Case 5: get the 7 days ago timestamp - Case 5: get the beginning of this month. check the snap to month - Case 6: get the beginning of last month. check the snap to last month - Case 7: get 3 days ago, snap to day - Case 8: get 5 days later - - Corner Cases: - Case 1: empty string as input. behavior - ''' - r = timeparser.timeParser(ts, tz, mock_now, mock_utc_now) - check_datetime_equal(r, expect) From d8f63370b637ff7920862edf4a6aaaf7e07d6e56 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:53:06 +0800 Subject: [PATCH 54/68] restore samples file --- .../samples/anomalous.hostname.sample | 1 + .../samples/anomalous.ip_address.sample | 1 + .../samples/anomalous.mac_address.sample | 1 + splunk_eventgen/samples/artIDs.sample | 21 + splunk_eventgen/samples/artists.sample | 0 splunk_eventgen/samples/city.state.zipcode | 29470 +++++ splunk_eventgen/samples/dist.all.last | 88799 +++++++++++++++ splunk_eventgen/samples/dist.female.first | 4275 + splunk_eventgen/samples/dist.male.first | 1219 + splunk_eventgen/samples/external_ips.sample | 150 + splunk_eventgen/samples/firstNames.sample | 2000 + splunk_eventgen/samples/hostname.sample | 50 + splunk_eventgen/samples/iana_domains.sample | 316 + splunk_eventgen/samples/internal_ips.sample | 951 + splunk_eventgen/samples/ip_address.sample | 50 + splunk_eventgen/samples/lastNames.sample | 1002 + splunk_eventgen/samples/linux_arch.sample | 25 + splunk_eventgen/samples/mac_address.sample | 50 + .../samples/malicious_domains.sample | 5 + splunk_eventgen/samples/markets.sample | 1 + splunk_eventgen/samples/mdn.sample | 815 + .../samples/networkProvider.sample | 39 + .../samples/oracle11.action.sample | 20 + .../samples/oracleUserNames.sample | 24 + splunk_eventgen/samples/orderType.sample | 6 + .../samples/orig.sample.mobilemusic.csv | 1 + splunk_eventgen/samples/phones.sample | 69 + splunk_eventgen/samples/plans.sample | 24 + splunk_eventgen/samples/radPIDs.sample | 3 + splunk_eventgen/samples/radhosts.sample | 3 + splunk_eventgen/samples/random_domains.sample | 73 + splunk_eventgen/samples/sample.businessevent | 1 + splunk_eventgen/samples/sample.mobilemusic | 3 + .../samples/sample.mobilemusic.csv | 6 + splunk_eventgen/samples/sample.tutorial1 | 2020 + splunk_eventgen/samples/sample.tutorial2 | 274 + splunk_eventgen/samples/sample.tutorial3 | 1 + splunk_eventgen/samples/sample.tutorial4 | 4 + splunk_eventgen/samples/searchArtists.sample | 21 + splunk_eventgen/samples/sha1_checksums.sample | 1000 + splunk_eventgen/samples/states | 50 + splunk_eventgen/samples/states.abbrev | 59 + splunk_eventgen/samples/street.types | 59 + splunk_eventgen/samples/streetNames.sample | 91670 ++++++++++++++++ splunk_eventgen/samples/streetSuffixes.sample | 24 + splunk_eventgen/samples/streets | 168 + splunk_eventgen/samples/trackIDs.sample | 23 + splunk_eventgen/samples/transType.sample | 6 + splunk_eventgen/samples/uris.sample | 5 + splunk_eventgen/samples/userHostIp.sample | 1000 + splunk_eventgen/samples/userName.sample | 1000 + splunk_eventgen/samples/useragents.sample | 84 + .../samples/useragents_desktop.sample | 75 + .../samples/useragents_mobile.sample | 84 + .../vmware-actuals-guest-aggregate.csv | 847 + .../samples/vmware-actuals-guest-instance.csv | 847 + .../samples/vmware-actuals-guest.csv | 2 + .../samples/vmware-actuals-host-aggregate.csv | 860 + .../samples/vmware-actuals-host-instance.csv | 852 + .../samples/vmware-actuals-host.csv | 2 + splunk_eventgen/samples/vmware-fields.csv | 136 + splunk_eventgen/samples/vmware-hierarchy.csv | 9 + splunk_eventgen/samples/vmware-inventory.csv | 1 + splunk_eventgen/samples/vmware-migration.csv | 1 + .../samples/vmware-perf-guest-aggregate.csv | 29 + .../samples/vmware-perf-guest-instance.csv | 34 + .../samples/vmware-perf-host-aggregate.csv | 15 + .../samples/vmware-perf-host-instance.csv | 211 + splunk_eventgen/samples/vmware-perf.csv | 286 + splunk_eventgen/samples/webhosts.sample | 3 + splunk_eventgen/samples/windbag | 5 + 71 files changed, 231241 insertions(+) create mode 100644 splunk_eventgen/samples/anomalous.hostname.sample create mode 100644 splunk_eventgen/samples/anomalous.ip_address.sample create mode 100644 splunk_eventgen/samples/anomalous.mac_address.sample create mode 100644 splunk_eventgen/samples/artIDs.sample create mode 100644 splunk_eventgen/samples/artists.sample create mode 100644 splunk_eventgen/samples/city.state.zipcode create mode 100644 splunk_eventgen/samples/dist.all.last create mode 100644 splunk_eventgen/samples/dist.female.first create mode 100644 splunk_eventgen/samples/dist.male.first create mode 100644 splunk_eventgen/samples/external_ips.sample create mode 100644 splunk_eventgen/samples/firstNames.sample create mode 100644 splunk_eventgen/samples/hostname.sample create mode 100644 splunk_eventgen/samples/iana_domains.sample create mode 100644 splunk_eventgen/samples/internal_ips.sample create mode 100644 splunk_eventgen/samples/ip_address.sample create mode 100644 splunk_eventgen/samples/lastNames.sample create mode 100644 splunk_eventgen/samples/linux_arch.sample create mode 100644 splunk_eventgen/samples/mac_address.sample create mode 100644 splunk_eventgen/samples/malicious_domains.sample create mode 100644 splunk_eventgen/samples/markets.sample create mode 100644 splunk_eventgen/samples/mdn.sample create mode 100644 splunk_eventgen/samples/networkProvider.sample create mode 100644 splunk_eventgen/samples/oracle11.action.sample create mode 100644 splunk_eventgen/samples/oracleUserNames.sample create mode 100644 splunk_eventgen/samples/orderType.sample create mode 100644 splunk_eventgen/samples/orig.sample.mobilemusic.csv create mode 100644 splunk_eventgen/samples/phones.sample create mode 100644 splunk_eventgen/samples/plans.sample create mode 100644 splunk_eventgen/samples/radPIDs.sample create mode 100644 splunk_eventgen/samples/radhosts.sample create mode 100644 splunk_eventgen/samples/random_domains.sample create mode 100644 splunk_eventgen/samples/sample.businessevent create mode 100644 splunk_eventgen/samples/sample.mobilemusic create mode 100644 splunk_eventgen/samples/sample.mobilemusic.csv create mode 100644 splunk_eventgen/samples/sample.tutorial1 create mode 100644 splunk_eventgen/samples/sample.tutorial2 create mode 100644 splunk_eventgen/samples/sample.tutorial3 create mode 100644 splunk_eventgen/samples/sample.tutorial4 create mode 100644 splunk_eventgen/samples/searchArtists.sample create mode 100644 splunk_eventgen/samples/sha1_checksums.sample create mode 100644 splunk_eventgen/samples/states create mode 100644 splunk_eventgen/samples/states.abbrev create mode 100644 splunk_eventgen/samples/street.types create mode 100644 splunk_eventgen/samples/streetNames.sample create mode 100644 splunk_eventgen/samples/streetSuffixes.sample create mode 100644 splunk_eventgen/samples/streets create mode 100644 splunk_eventgen/samples/trackIDs.sample create mode 100644 splunk_eventgen/samples/transType.sample create mode 100644 splunk_eventgen/samples/uris.sample create mode 100644 splunk_eventgen/samples/userHostIp.sample create mode 100644 splunk_eventgen/samples/userName.sample create mode 100644 splunk_eventgen/samples/useragents.sample create mode 100644 splunk_eventgen/samples/useragents_desktop.sample create mode 100644 splunk_eventgen/samples/useragents_mobile.sample create mode 100644 splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-guest-instance.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-guest.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host-instance.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host.csv create mode 100644 splunk_eventgen/samples/vmware-fields.csv create mode 100644 splunk_eventgen/samples/vmware-hierarchy.csv create mode 100644 splunk_eventgen/samples/vmware-inventory.csv create mode 100644 splunk_eventgen/samples/vmware-migration.csv create mode 100644 splunk_eventgen/samples/vmware-perf-guest-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-perf-guest-instance.csv create mode 100644 splunk_eventgen/samples/vmware-perf-host-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-perf-host-instance.csv create mode 100644 splunk_eventgen/samples/vmware-perf.csv create mode 100644 splunk_eventgen/samples/webhosts.sample create mode 100644 splunk_eventgen/samples/windbag diff --git a/splunk_eventgen/samples/anomalous.hostname.sample b/splunk_eventgen/samples/anomalous.hostname.sample new file mode 100644 index 00000000..be935ae0 --- /dev/null +++ b/splunk_eventgen/samples/anomalous.hostname.sample @@ -0,0 +1 @@ +HOST-001 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.ip_address.sample b/splunk_eventgen/samples/anomalous.ip_address.sample new file mode 100644 index 00000000..5c34a96d --- /dev/null +++ b/splunk_eventgen/samples/anomalous.ip_address.sample @@ -0,0 +1 @@ +10.11.36.20 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.mac_address.sample b/splunk_eventgen/samples/anomalous.mac_address.sample new file mode 100644 index 00000000..4750e3b7 --- /dev/null +++ b/splunk_eventgen/samples/anomalous.mac_address.sample @@ -0,0 +1 @@ +19:61:3c:3e:20:84 \ No newline at end of file diff --git a/splunk_eventgen/samples/artIDs.sample b/splunk_eventgen/samples/artIDs.sample new file mode 100644 index 00000000..73029f91 --- /dev/null +++ b/splunk_eventgen/samples/artIDs.sample @@ -0,0 +1,21 @@ +0019 +0018 +0014 +006 +0026 +0017 +0016 +0015 +0027 +007 +0021 +0011 +0012 +0013 +0020 +005 +0044 +001 +0032 +008 +0022 \ No newline at end of file diff --git a/splunk_eventgen/samples/artists.sample b/splunk_eventgen/samples/artists.sample new file mode 100644 index 00000000..e69de29b diff --git a/splunk_eventgen/samples/city.state.zipcode b/splunk_eventgen/samples/city.state.zipcode new file mode 100644 index 00000000..100bb1dd --- /dev/null +++ b/splunk_eventgen/samples/city.state.zipcode @@ -0,0 +1,29470 @@ +Acmar,AL,35004 +Adamsville,AL,35005 +Adger,AL,35006 +Keystone,AL,35007 +New Site,AL,35010 +Alpine,AL,35014 +Arab,AL,35016 +Baileyton,AL,35019 +Bessemer,AL,35020 +Hueytown,AL,35023 +Blountsville,AL,35031 +Bremen,AL,35033 +Brent,AL,35034 +Brierfield,AL,35035 +Calera,AL,35040 +Centreville,AL,35042 +Chelsea,AL,35043 +Coosa Pines,AL,35044 +Clanton,AL,35045 +Cleveland,AL,35049 +Columbiana,AL,35051 +Crane Hill,AL,35053 +Cropwell,AL,35054 +Cullman,AL,35055 +Dolomite,AL,35061 +Dora,AL,35062 +Empire,AL,35063 +Fairfield,AL,35064 +Coalburg,AL,35068 +Gardendale,AL,35071 +Goodwater,AL,35072 +Alden,AL,35073 +Hanceville,AL,35077 +Harpersville,AL,35078 +Hayden,AL,35079 +Helena,AL,35080 +Holly Pond,AL,35083 +Jemison,AL,35085 +Joppa,AL,35087 +Kellyton,AL,35089 +Kimberly,AL,35091 +Leeds,AL,35094 +Lincoln,AL,35096 +Logan,AL,35098 +Mc Calla,AL,35111 +Maylene,AL,35114 +Montevallo,AL,35115 +Morris,AL,35116 +Mount Olive,AL,35117 +Sylvan Springs,AL,35118 +Odenville,AL,35120 +Oneonta,AL,35121 +Indian Springs,AL,35124 +Pell City,AL,35125 +Dixiana,AL,35126 +Pleasant Grove,AL,35127 +Quinton,AL,35130 +Ragland,AL,35131 +Remlap,AL,35133 +Riverside,AL,35135 +Rockford,AL,35136 +Shelby,AL,35143 +Springville,AL,35146 +Sterrett,AL,35147 +Sumiton,AL,35148 +Sylacauga,AL,35150 +Talladega,AL,35160 +Thorsby,AL,35171 +Trafford,AL,35172 +Trussville,AL,35173 +Union Grove,AL,35175 +Vandiver,AL,35176 +Vincent,AL,35178 +Vinemont,AL,35179 +Warrior,AL,35180 +Weogufka,AL,35183 +West Blocton,AL,35184 +Wilsonville,AL,35186 +Woodstock,AL,35188 +Birmingham,AL,35203 +Birmingham,AL,35204 +Birmingham,AL,35205 +Birmingham,AL,35206 +Birmingham,AL,35207 +Birmingham,AL,35208 +Homewood,AL,35209 +Irondale,AL,35210 +Birmingham,AL,35211 +Birmingham,AL,35212 +Crestline Height,AL,35213 +Birmingham,AL,35214 +Center Point,AL,35215 +Vestavia Hills,AL,35216 +Birmingham,AL,35217 +Birmingham,AL,35218 +Birmingham,AL,35221 +Birmingham,AL,35222 +Mountain Brook,AL,35223 +Birmingham,AL,35224 +Bluff Park,AL,35226 +Midfield,AL,35228 +Birmingham,AL,35233 +Birmingham,AL,35234 +Center Point,AL,35235 +Shoal Creek,AL,35242 +Cahaba Heights,AL,35243 +Hoover,AL,35244 +Tuscaloosa,AL,35401 +Holt,AL,35404 +Tuscaloosa,AL,35405 +Tuscaloosa,AL,35406 +Stewart,AL,35441 +Aliceville,AL,35442 +Boligee,AL,35443 +Brookwood,AL,35444 +Buhl,AL,35446 +Carrollton,AL,35447 +Coker,AL,35452 +Cottondale,AL,35453 +Duncanville,AL,35456 +Echola,AL,35457 +Elrod,AL,35458 +Emelle,AL,35459 +Epes,AL,35460 +Ethelsville,AL,35461 +Eutaw,AL,35462 +Fosters,AL,35463 +Gainesville,AL,35464 +Gordo,AL,35466 +Knoxville,AL,35469 +Coatopa,AL,35470 +Cypress,AL,35474 +Northport,AL,35476 +Ralph,AL,35480 +Reform,AL,35481 +Vance,AL,35490 +Jasper,AL,35501 +Addison,AL,35540 +Arley,AL,35541 +Bankston,AL,35542 +Bear Creek,AL,35543 +Beaverton,AL,35544 +Berry,AL,35546 +Brilliant,AL,35548 +Carbon Hill,AL,35549 +Cordova,AL,35550 +Detroit,AL,35552 +Double Springs,AL,35553 +Eldridge,AL,35554 +Fayette,AL,35555 +Guin,AL,35563 +Hackleburg,AL,35564 +Haleyville,AL,35565 +Hamilton,AL,35570 +Hodges,AL,35571 +Houston,AL,35572 +Kennedy,AL,35574 +Lynn,AL,35575 +Millport,AL,35576 +Nauvoo,AL,35578 +Oakman,AL,35579 +Parrish,AL,35580 +Phil Campbell,AL,35581 +Red Bay,AL,35582 +Spruce Pine,AL,35585 +Sulligent,AL,35586 +Townley,AL,35587 +Vernon,AL,35592 +Vina,AL,35593 +Winfield,AL,35594 +Decatur,AL,35601 +Decatur,AL,35603 +Anderson,AL,35610 +Athens,AL,35611 +Cherokee,AL,35616 +Courtland,AL,35618 +Danville,AL,35619 +Elkmont,AL,35620 +Eva,AL,35621 +Falkville,AL,35622 +Florence,AL,35630 +Florence,AL,35633 +Hartselle,AL,35640 +Hillsboro,AL,35643 +Killen,AL,35645 +Leighton,AL,35646 +Lester,AL,35647 +Lexington,AL,35648 +Moulton,AL,35650 +Mount Hope,AL,35651 +Rogersville,AL,35652 +Russellville,AL,35653 +Sheffield,AL,35660 +Muscle Shoals,AL,35661 +Somerville,AL,35670 +Tanner,AL,35671 +Town Creek,AL,35672 +Trinity,AL,35673 +Tuscumbia,AL,35674 +Waterloo,AL,35677 +Ardmore,AL,35739 +Bridgeport,AL,35740 +Brownsboro,AL,35741 +Dutton,AL,35744 +Estillfork,AL,35745 +Fackler,AL,35746 +Grant,AL,35747 +Gurley,AL,35748 +Harvest,AL,35749 +Hazel Green,AL,35750 +Hollytree,AL,35751 +Hollywood,AL,35752 +Laceys Spring,AL,35754 +Langston,AL,35755 +Triana,AL,35758 +Meridianville,AL,35759 +New Hope,AL,35760 +New Market,AL,35761 +Big Cove,AL,35763 +Paint Rock,AL,35764 +Pisgah,AL,35765 +Princeton,AL,35766 +Hytop,AL,35768 +Section,AL,35771 +Stevenson,AL,35772 +Toney,AL,35773 +Trenton,AL,35774 +Valhermoso Sprin,AL,35775 +Woodville,AL,35776 +Huntsville,AL,35801 +Huntsville,AL,35802 +Huntsville,AL,35803 +Huntsville,AL,35805 +Huntsville,AL,35806 +Huntsville,AL,35808 +Huntsville,AL,35810 +Huntsville,AL,35811 +Huntsville,AL,35816 +Huntsville,AL,35824 +Southside,AL,35901 +Hokes Bluff,AL,35903 +Gadsden,AL,35904 +Glencoe,AL,35905 +Albertville,AL,35950 +Snead,AL,35952 +Ashville,AL,35953 +Attalla,AL,35954 +Boaz,AL,35957 +Bryant,AL,35958 +Cedar Bluff,AL,35959 +Centre,AL,35960 +Collinsville,AL,35961 +Crossville,AL,35962 +Dawson,AL,35963 +Flat Rock,AL,35966 +Fort Payne,AL,35967 +Fyffe,AL,35971 +Gallant,AL,35972 +Gaylesville,AL,35973 +Geraldine,AL,35974 +Groveoak,AL,35975 +Guntersville,AL,35976 +Henagar,AL,35978 +Higdon,AL,35979 +Horton,AL,35980 +Ider,AL,35981 +Leesburg,AL,35983 +Mentone,AL,35984 +Rainsville,AL,35986 +Steele,AL,35987 +Sylvania,AL,35988 +Valley Head,AL,35989 +Autaugaville,AL,36003 +Eufaula,AL,36004 +Banks,AL,36005 +Billingsley,AL,36006 +Brantley,AL,36009 +Brundidge,AL,36010 +Cecil,AL,36013 +Clayton,AL,36016 +Clio,AL,36017 +Deatsville,AL,36022 +Eclectic,AL,36024 +Elmore,AL,36025 +Equality,AL,36026 +Eufaula,AL,36027 +Dozier,AL,36028 +Fitzpatrick,AL,36029 +Forest Home,AL,36030 +Fort Davis,AL,36031 +Fort Deposit,AL,36032 +Georgiana,AL,36033 +Glenwood,AL,36034 +Goshen,AL,36035 +Grady,AL,36036 +Greenville,AL,36037 +Gantt,AL,36038 +Hardaway,AL,36039 +Hayneville,AL,36040 +Highland Home,AL,36041 +Honoraville,AL,36042 +Hope Hull,AL,36043 +Lapine,AL,36046 +Letohatchee,AL,36047 +Louisville,AL,36048 +Luverne,AL,36049 +Marbury,AL,36051 +Mathews,AL,36052 +Midway,AL,36053 +Millbrook,AL,36054 +Perote,AL,36061 +Pike Road,AL,36064 +Prattville,AL,36066 +Prattville,AL,36067 +Ramer,AL,36069 +Rutledge,AL,36071 +Shorter,AL,36075 +Tallassee,AL,36078 +Titus,AL,36080 +Troy,AL,36081 +Tuskegee,AL,36083 +Tuskegee Institu,AL,36088 +Union Springs,AL,36089 +Verbena,AL,36091 +Wetumpka,AL,36092 +Montgomery,AL,36104 +Montgomery,AL,36105 +Montgomery,AL,36106 +Montgomery,AL,36107 +Montgomery,AL,36108 +Montgomery,AL,36109 +Montgomery,AL,36110 +Montgomery,AL,36111 +Maxwell A F B,AL,36113 +Gunter Afs,AL,36115 +Montgomery,AL,36116 +Montgomery,AL,36117 +Anniston,AL,36201 +Oxford,AL,36203 +Fort Mc Clellan,AL,36205 +Anniston,AL,36206 +Alexandria,AL,36250 +Ashland,AL,36251 +Cragford,AL,36255 +Daviston,AL,36256 +Delta,AL,36258 +Eastaboga,AL,36260 +Fruithurst,AL,36262 +Graham,AL,36263 +Heflin,AL,36264 +Jacksonville,AL,36265 +Lineville,AL,36266 +Millerville,AL,36267 +Munford,AL,36268 +Muscadine,AL,36269 +Newell,AL,36270 +Ohatchee,AL,36271 +Piedmont,AL,36272 +Ranburne,AL,36273 +Rock Mills,AL,36274 +Wadley,AL,36276 +Weaver,AL,36277 +Wedowee,AL,36278 +Wellington,AL,36279 +Woodland,AL,36280 +Taylor,AL,36301 +Napier Field,AL,36303 +Abbeville,AL,36310 +Ariton,AL,36311 +Ashford,AL,36312 +Black,AL,36314 +Chancellor,AL,36316 +Clopton,AL,36317 +Coffee Springs,AL,36318 +Columbia,AL,36319 +Cottonwood,AL,36320 +Daleville,AL,36322 +Elba,AL,36323 +Enterprise,AL,36330 +Geneva,AL,36340 +Gordon,AL,36343 +Hartford,AL,36344 +Headland,AL,36345 +Jack,AL,36346 +Malvern,AL,36349 +Midland City,AL,36350 +New Brockton,AL,36351 +Newton,AL,36352 +Newville,AL,36353 +Ozark,AL,36360 +Fort Rucker,AL,36362 +Pansey,AL,36370 +Shorterville,AL,36373 +Skipperville,AL,36374 +Slocomb,AL,36375 +Webb,AL,36376 +Evergreen,AL,36401 +Allen,AL,36419 +Andalusia,AL,36420 +Beatrice,AL,36425 +East Brewton,AL,36426 +Castleberry,AL,36432 +Coy,AL,36435 +Dickinson,AL,36436 +Flomaton,AL,36441 +Florala,AL,36442 +Franklin,AL,36444 +Frisco City,AL,36445 +Fulton,AL,36446 +Grove Hill,AL,36451 +Kinston,AL,36453 +Lenox,AL,36454 +Mc Kenzie,AL,36456 +Monroeville,AL,36460 +Opp,AL,36467 +Peterman,AL,36471 +Range,AL,36473 +Red Level,AL,36474 +Repton,AL,36475 +Samson,AL,36477 +Uriah,AL,36480 +Vredenburgh,AL,36481 +Whatley,AL,36482 +Wing,AL,36483 +Atmore,AL,36502 +Axis,AL,36505 +Bay Minette,AL,36507 +Bayou La Batre,AL,36509 +Bigbee,AL,36510 +Bon Secour,AL,36511 +Carlton,AL,36515 +Chatom,AL,36518 +Chunchula,AL,36521 +Citronelle,AL,36522 +Coden,AL,36523 +Coffeeville,AL,36524 +Creola,AL,36525 +Daphne,AL,36526 +Spanish Fort,AL,36527 +Dauphin Island,AL,36528 +Deer Park,AL,36529 +Elberta,AL,36530 +Fairhope,AL,36532 +Foley,AL,36535 +Frankville,AL,36538 +Fruitdale,AL,36539 +Gainestown,AL,36540 +Grand Bay,AL,36541 +Fort Morgan,AL,36542 +Irvington,AL,36544 +Jackson,AL,36545 +Leroy,AL,36548 +Lillian,AL,36549 +Little River,AL,36550 +Loxley,AL,36551 +Mc Intosh,AL,36553 +Magnolia Springs,AL,36555 +Millry,AL,36558 +Mount Vernon,AL,36560 +Orange Beach,AL,36561 +Perdido,AL,36562 +Robertsdale,AL,36567 +Saint Stephens,AL,36569 +Salitpa,AL,36570 +Saraland,AL,36571 +Satsuma,AL,36572 +Seminole,AL,36574 +Semmes,AL,36575 +Silverhill,AL,36576 +Stockton,AL,36579 +Summerdale,AL,36580 +Theodore,AL,36582 +Tibbie,AL,36583 +Vinegar Bend,AL,36584 +Wagarville,AL,36585 +Walker Springs,AL,36586 +Wilmer,AL,36587 +Mobile,AL,36602 +Mobile,AL,36603 +Mobile,AL,36604 +Mobile,AL,36605 +Mobile,AL,36606 +Mobile,AL,36607 +Mobile,AL,36608 +Mobile,AL,36609 +Prichard,AL,36610 +Chickasaw,AL,36611 +Mobile,AL,36612 +Eight Mile,AL,36613 +Brookley Field,AL,36615 +Mobile,AL,36617 +Mobile,AL,36618 +Mobile,AL,36619 +Mobile,AL,36693 +Mobile,AL,36695 +Selma,AL,36701 +Selma,AL,36703 +Alberta,AL,36720 +Arlington,AL,36722 +Camden,AL,36726 +Campbell,AL,36727 +Catherine,AL,36728 +Demopolis,AL,36732 +Dixons Mills,AL,36736 +Faunsdale,AL,36738 +Forkland,AL,36740 +Gallion,AL,36742 +Greensboro,AL,36744 +Linden,AL,36748 +Jones,AL,36749 +Maplesville,AL,36750 +Lower Peach Tree,AL,36751 +Burkville,AL,36752 +Magnolia,AL,36754 +Marion,AL,36756 +Plantersville,AL,36758 +Marion Junction,AL,36759 +Boys Ranch,AL,36761 +Morvin,AL,36762 +Newbern,AL,36765 +Orrville,AL,36767 +Pine Apple,AL,36768 +Pine Hill,AL,36769 +Prairie,AL,36771 +Safford,AL,36773 +Sardis,AL,36775 +Sawyerville,AL,36776 +Sprott,AL,36779 +Sweet Water,AL,36782 +Thomaston,AL,36783 +Thomasville,AL,36784 +Benton,AL,36785 +Uniontown,AL,36786 +Stanton,AL,36790 +Randolph,AL,36792 +Lawley,AL,36793 +Opelika,AL,36801 +Auburn,AL,36830 +Camp Hill,AL,36850 +Cusseta,AL,36852 +Dadeville,AL,36853 +Valley,AL,36854 +Five Points,AL,36855 +Hatchechubbee,AL,36858 +Hurtsboro,AL,36860 +Jacksons Gap,AL,36861 +Lafayette,AL,36862 +Lanett,AL,36863 +Notasulga,AL,36866 +Phenix City,AL,36867 +Phenix City,AL,36869 +Pittsview,AL,36871 +Salem,AL,36874 +Seale,AL,36875 +Smiths,AL,36877 +Waverly,AL,36879 +Butler,AL,36904 +Cuba,AL,36907 +Gilbertown,AL,36908 +Jachin,AL,36910 +Lisman,AL,36912 +Needham,AL,36915 +Pennington,AL,36916 +Silas,AL,36919 +Toxey,AL,36921 +Ward,AL,36922 +York,AL,36925 +98791,AK,98791 +Anchorage,AK,99501 +Anchorage,AK,99502 +Anchorage,AK,99503 +Anchorage,AK,99504 +Fort Richardson,AK,99505 +Elmendorf Afb,AK,99506 +Anchorage,AK,99507 +Anchorage,AK,99508 +Anchorage,AK,99515 +Anchorage,AK,99516 +Anchorage,AK,99517 +Anchorage,AK,99518 +Port Heiden,AK,99549 +Akiachak,AK,99551 +Akiak,AK,99552 +Akutan,AK,99553 +Alakanuk,AK,99554 +Aleknagik,AK,99555 +Nikolaevsk,AK,99556 +Chuathbaluk,AK,99557 +Anvik,AK,99558 +Atmautluak,AK,99559 +Chefornak,AK,99561 +Chevak,AK,99563 +Chignik,AK,99564 +Chignik Lagoon,AK,99565 +Chugiak,AK,99567 +Clam Gulch,AK,99568 +Clarks Point,AK,99569 +Nelson Lagoon,AK,99571 +Cooper Landing,AK,99572 +Copper Center,AK,99573 +Chenega Bay,AK,99574 +Crooked Creek,AK,99575 +Koliganek,AK,99576 +Eagle River,AK,99577 +Eek,AK,99578 +Egegik,AK,99579 +Ekwok,AK,99580 +Emmonak,AK,99581 +False Pass,AK,99583 +Marshall,AK,99585 +Slana,AK,99586 +Glennallen,AK,99588 +Goodnews Bay,AK,99589 +Grayling,AK,99590 +Saint George Isl,AK,99591 +Holy Cross,AK,99602 +Port Graham,AK,99603 +Hooper Bay,AK,99604 +Kokhanok,AK,99606 +Kalskag,AK,99607 +Kasilof,AK,99610 +Kenai,AK,99611 +King Cove,AK,99612 +Igiugig,AK,99613 +Kipnuk,AK,99614 +Akhiok,AK,99615 +Kotlik,AK,99620 +Kwethluk,AK,99621 +Kwigillingok,AK,99622 +Levelock,AK,99625 +Lower Kalskag,AK,99626 +Mc Grath,AK,99627 +Manokotak,AK,99628 +Mekoryuk,AK,99630 +Moose Pass,AK,99631 +Mountain Village,AK,99632 +Naknek,AK,99633 +Napakiak,AK,99634 +New Stuyahok,AK,99636 +Nikolski,AK,99638 +Ninilchik,AK,99639 +Nondalton,AK,99640 +Butte,AK,99645 +Pedro Bay,AK,99647 +Perryville,AK,99648 +Pilot Point,AK,99649 +Pilot Station,AK,99650 +Platinum,AK,99651 +Port Alsworth,AK,99653 +Wasilla,AK,99654 +Quinhagak,AK,99655 +Red Devil,AK,99656 +Russian Mission,AK,99657 +Saint Marys,AK,99658 +Saint Michael,AK,99659 +Saint Paul Islan,AK,99660 +Sand Point,AK,99661 +Scammon Bay,AK,99662 +Seward,AK,99664 +Shageluk,AK,99665 +Sleetmute,AK,99668 +Soldotna,AK,99669 +South Naknek,AK,99670 +Stebbins,AK,99671 +Sterling,AK,99672 +Talkeetna,AK,99676 +Tuluksak,AK,99679 +Tununak,AK,99681 +Tyonek,AK,99682 +Trapper Creek,AK,99683 +Unalakleet,AK,99684 +Unalaska,AK,99685 +Valdez,AK,99686 +Wasilla,AK,99687 +Willow,AK,99688 +Yakutat,AK,99689 +Nikolai,AK,99691 +Dutch Harbor,AK,99692 +Coldfoot,AK,99701 +Eielson Afb,AK,99702 +Fort Wainwright,AK,99703 +Clear,AK,99704 +North Pole,AK,99705 +Fairbanks,AK,99709 +Fairbanks,AK,99712 +Salcha,AK,99714 +Allakaket,AK,99720 +Anaktuvuk Pass,AK,99721 +Arctic Village,AK,99722 +Barrow,AK,99723 +Beaver,AK,99724 +Bettles Field,AK,99726 +Buckland,AK,99727 +Cantwell,AK,99729 +Central,AK,99730 +Circle,AK,99733 +Prudhoe Bay,AK,99734 +Deering,AK,99736 +Dot Lake,AK,99737 +Elim,AK,99739 +Fort Yukon,AK,99740 +Galena,AK,99741 +Gambell,AK,99742 +Healy,AK,99743 +Anderson,AK,99744 +Hughes,AK,99745 +Huslia,AK,99746 +Kaktovik,AK,99747 +Kaltag,AK,99748 +Kiana,AK,99749 +Kivalina,AK,99750 +Kobuk,AK,99751 +Kotzebue,AK,99752 +Koyuk,AK,99753 +Denali National,AK,99755 +Manley Hot Sprin,AK,99756 +Lake Minchumina,AK,99757 +Minto,AK,99758 +Point Lay,AK,99759 +Nenana,AK,99760 +Noatak,AK,99761 +Golovin,AK,99762 +Noorvik,AK,99763 +Nulato,AK,99765 +Point Hope,AK,99766 +Rampart,AK,99767 +Ruby,AK,99768 +Savoonga,AK,99769 +Selawik,AK,99770 +Shaktoolik,AK,99771 +Shishmaref,AK,99772 +Shungnak,AK,99773 +Stevens Village,AK,99774 +Tanana,AK,99777 +Teller,AK,99778 +Border,AK,99780 +Venetie,AK,99781 +Wainwright,AK,99782 +Wales,AK,99783 +White Mountain,AK,99784 +Brevig Mission,AK,99785 +Ambler,AK,99786 +Chalkyitsik,AK,99788 +Nuiqsut,AK,99789 +Juneau,AK,99801 +Angoon,AK,99820 +Douglas,AK,99824 +Gustavus,AK,99826 +Haines,AK,99827 +Hoonah,AK,99829 +Petersburg,AK,99833 +Sitka,AK,99835 +Skagway,AK,99840 +Ketchikan,AK,99901 +Thorne Bay,AK,99919 +Craig,AK,99921 +Hydaburg,AK,99922 +Hyder,AK,99923 +Klawock,AK,99925 +Metlakatla,AK,99926 +Point Baker,AK,99927 +Wrangell,AK,99929 +Ketchikan,AK,99950 +Phoenix,AZ,85003 +Phoenix,AZ,85004 +Phoenix,AZ,85006 +Phoenix,AZ,85007 +Phoenix,AZ,85008 +Phoenix,AZ,85009 +Phoenix,AZ,85012 +Phoenix,AZ,85013 +Phoenix,AZ,85014 +Phoenix,AZ,85015 +Phoenix,AZ,85016 +Phoenix,AZ,85017 +Phoenix,AZ,85018 +Phoenix,AZ,85019 +Phoenix,AZ,85020 +Phoenix,AZ,85021 +Phoenix,AZ,85022 +Phoenix,AZ,85023 +Phoenix,AZ,85024 +New River Stage,AZ,85027 +Phoenix,AZ,85028 +Phoenix,AZ,85029 +Phoenix,AZ,85031 +Phoenix,AZ,85032 +Phoenix,AZ,85033 +Phoenix,AZ,85034 +Phoenix,AZ,85035 +Phoenix,AZ,85037 +Phoenix,AZ,85039 +Phoenix,AZ,85040 +Phoenix,AZ,85041 +Phoenix,AZ,85043 +Phoenix,AZ,85044 +Phoenix,AZ,85051 +Mesa,AZ,85201 +Mesa,AZ,85202 +Mesa,AZ,85203 +Mesa,AZ,85204 +Mesa,AZ,85205 +Mesa,AZ,85206 +Mesa,AZ,85207 +Mesa,AZ,85208 +Mesa,AZ,85210 +Mesa,AZ,85213 +Gold Canyon,AZ,85219 +Apache Junction,AZ,85220 +Eleven Mile Corn,AZ,85222 +Chandler,AZ,85224 +Chandler,AZ,85225 +Chandler,AZ,85226 +Coolidge,AZ,85228 +Eloy,AZ,85231 +Florence,AZ,85232 +Gilbert,AZ,85234 +Higley,AZ,85236 +Kearny,AZ,85237 +Mobile,AZ,85239 +Williams Afb,AZ,85240 +Arizona Boys Ran,AZ,85242 +Sacaton,AZ,85247 +Sun Lakes,AZ,85248 +Chandler,AZ,85249 +Scottsdale,AZ,85250 +Scottsdale,AZ,85251 +Paradise Valley,AZ,85253 +Scottsdale,AZ,85254 +Scottsdale,AZ,85255 +Scottsdale,AZ,85256 +Scottsdale,AZ,85257 +Scottsdale,AZ,85258 +Scottsdale,AZ,85259 +Scottsdale,AZ,85260 +Scottsdale,AZ,85262 +Fort Mcdowell,AZ,85264 +Fountain Hills,AZ,85268 +Stanfield,AZ,85272 +Superior,AZ,85273 +Tempe,AZ,85281 +Tempe,AZ,85282 +Tempe,AZ,85283 +Tempe,AZ,85284 +Winkelman,AZ,85292 +Glendale,AZ,85301 +Glendale,AZ,85302 +Glendale,AZ,85303 +Glendale,AZ,85304 +Glendale,AZ,85305 +Glendale,AZ,85306 +Luke Afb,AZ,85307 +Glendale,AZ,85308 +Luke Afb,AZ,85309 +Glendale,AZ,85310 +Why,AZ,85321 +Arlington,AZ,85322 +Avondale,AZ,85323 +Rock Springs,AZ,85324 +Buckeye,AZ,85326 +Cibola,AZ,85328 +Cave Creek,AZ,85331 +Congress,AZ,85332 +Dateland,AZ,85333 +El Mirage,AZ,85335 +Gila Bend,AZ,85337 +Goodyear,AZ,85338 +Laveen,AZ,85339 +Litchfield Park,AZ,85340 +Morristown,AZ,85342 +Palo Verde,AZ,85343 +Empire Landing,AZ,85344 +Peoria,AZ,85345 +Roll,AZ,85347 +Salome,AZ,85348 +Somerton,AZ,85350 +Sun City,AZ,85351 +Tolleson,AZ,85353 +Tonopah,AZ,85354 +Waddell,AZ,85355 +Wellton,AZ,85356 +Wittmann,AZ,85361 +Yarnell,AZ,85362 +Youngtown,AZ,85363 +Yuma,AZ,85364 +Yuma Proving Gro,AZ,85365 +Sun City,AZ,85373 +Surprise,AZ,85374 +Sun City West,AZ,85375 +Peoria,AZ,85381 +Peoria,AZ,85382 +Wickenburg,AZ,85390 +Globe,AZ,85501 +Bylas,AZ,85530 +Clifton,AZ,85533 +Franklin,AZ,85534 +Eden,AZ,85535 +Miami,AZ,85539 +Morenci,AZ,85540 +Payson,AZ,85541 +Peridot,AZ,85542 +Pima,AZ,85543 +Strawberry,AZ,85544 +Roosevelt,AZ,85545 +Safford,AZ,85546 +San Carlos,AZ,85550 +Thatcher,AZ,85552 +Benson,AZ,85602 +Bisbee,AZ,85603 +Cochise,AZ,85606 +Douglas,AZ,85607 +Elfrida,AZ,85610 +Elgin,AZ,85611 +Fort Huachuca,AZ,85613 +Green Valley,AZ,85614 +Hereford,AZ,85615 +Huachuca City,AZ,85616 +Mc Neal,AZ,85617 +Mammoth,AZ,85618 +Nogales,AZ,85621 +Oracle,AZ,85623 +Patagonia,AZ,85624 +Pearce,AZ,85625 +Sahuarita,AZ,85629 +Saint David,AZ,85630 +San Manuel,AZ,85631 +Portal,AZ,85632 +Pisinemo,AZ,85634 +Sierra Vista,AZ,85635 +Sonoita,AZ,85637 +Tombstone,AZ,85638 +Amado,AZ,85640 +Vail,AZ,85641 +Willcox,AZ,85643 +Amado,AZ,85645 +Marana,AZ,85653 +Tucson,AZ,85701 +Casas Adobes,AZ,85704 +Tucson,AZ,85705 +Tucson,AZ,85706 +Tucson,AZ,85708 +Tucson,AZ,85710 +Tucson,AZ,85711 +Tucson,AZ,85712 +Tucson,AZ,85713 +Tucson,AZ,85714 +Tucson,AZ,85715 +Tucson,AZ,85716 +Tucson,AZ,85718 +Tucson,AZ,85719 +Tucson,AZ,85730 +Tucson,AZ,85735 +Tucson,AZ,85736 +Oro Valley,AZ,85737 +Tucson,AZ,85741 +Tucson,AZ,85743 +Tucson,AZ,85745 +Tucson,AZ,85746 +Tucson,AZ,85747 +Tucson,AZ,85748 +Tucson,AZ,85749 +Show Low,AZ,85901 +Alpine,AZ,85920 +Blue,AZ,85922 +Concho,AZ,85924 +Eagar,AZ,85925 +Heber,AZ,85928 +Lakeside,AZ,85929 +Pinetop,AZ,85935 +Saint Johns,AZ,85936 +Snowflake,AZ,85937 +Springerville,AZ,85938 +Flagstaff,AZ,86001 +Flagstaff,AZ,86004 +Colorado City,AZ,86021 +Fredonia,AZ,86022 +Holbrook,AZ,86025 +Hotevilla,AZ,86030 +Kayenta,AZ,86033 +Keams Canyon,AZ,86034 +Leupp,AZ,86035 +Marble Canyon,AZ,86036 +Mormon Lake,AZ,86038 +Kykotsmovi Villa,AZ,86039 +Greenehaven,AZ,86040 +Polacca,AZ,86042 +Second Mesa,AZ,86043 +Tonalea,AZ,86044 +Tuba City,AZ,86045 +Williams,AZ,86046 +Winslow,AZ,86047 +Kaibito,AZ,86053 +Shonto,AZ,86054 +Prescott,AZ,86301 +Groom Creek,AZ,86303 +Prescott Valley,AZ,86314 +Ash Fork,AZ,86320 +Bagdad,AZ,86321 +Camp Verde,AZ,86322 +Chino Valley,AZ,86323 +Clarkdale,AZ,86324 +Cornville,AZ,86325 +Cottonwood,AZ,86326 +Dewey,AZ,86327 +Kirkland,AZ,86332 +Mayer,AZ,86333 +Paulden,AZ,86334 +Rimrock,AZ,86335 +Sedona,AZ,86336 +Seligman,AZ,86337 +Crown King,AZ,86343 +Kingman,AZ,86401 +Desert Hills,AZ,86403 +Hualapai,AZ,86412 +Bullhead City,AZ,86430 +Littlefield,AZ,86432 +Peach Springs,AZ,86434 +Supai,AZ,86435 +Topock,AZ,86436 +Mohave Valley,AZ,86440 +Dolan Springs,AZ,86441 +Bullhead City,AZ,86442 +Meadview,AZ,86444 +Chambers,AZ,86502 +Chinle,AZ,86503 +Ganado,AZ,86505 +Lukachukai,AZ,86507 +Navajo,AZ,86509 +Pinon,AZ,86510 +Teec Nos Pos,AZ,86514 +Dennehotso,AZ,86535 +Many Farms,AZ,86538 +Tsaile,AZ,86556 +North Cedar,AR,71601 +Dollarway,AR,71602 +Pine Bluff,AR,71603 +Arkansas City,AR,71630 +Banks,AR,71631 +North,AR,71635 +Dermott,AR,71638 +Dumas,AR,71639 +Eudora,AR,71640 +Fountain Hill,AR,71642 +Gould,AR,71643 +Tamo,AR,71644 +Hamburg,AR,71646 +Ingalls,AR,71647 +Jersey,AR,71651 +Kingsland,AR,71652 +Lake Village,AR,71653 +Mc Gehee,AR,71654 +Monticello,AR,71655 +Montrose,AR,71658 +New Edinburg,AR,71660 +Parkdale,AR,71661 +Pickens,AR,71662 +Portland,AR,71663 +Rison,AR,71665 +Rohwer,AR,71666 +Star City,AR,71667 +Reed,AR,71670 +Warren,AR,71671 +Watson,AR,71674 +Wilmar,AR,71675 +Wilmot,AR,71676 +Winchester,AR,71677 +Yorktown,AR,71678 +East Camden,AR,71701 +Bearden,AR,71720 +Bluff City,AR,71722 +Carthage,AR,71725 +Reader,AR,71726 +El Dorado,AR,71730 +Emerson,AR,71740 +Fordyce,AR,71742 +Gurdon,AR,71743 +Hampton,AR,71744 +Harrell,AR,71745 +Huttig,AR,71747 +Ivan,AR,71748 +Junction City,AR,71749 +Louann,AR,71751 +Mc Neil,AR,71752 +Magnolia,AR,71753 +Mount Holly,AR,71758 +Norphlet,AR,71759 +Smackover,AR,71762 +Manning,AR,71763 +Stephens,AR,71764 +Strong,AR,71765 +Thornton,AR,71766 +Tinsman,AR,71767 +Village,AR,71769 +Waldo,AR,71770 +Perrytown,AR,71801 +Ashdown,AR,71822 +Blevins,AR,71825 +Bradley,AR,71826 +Buckner,AR,71827 +Cale,AR,71828 +Columbus,AR,71831 +De Queen,AR,71832 +Dierks,AR,71833 +Doddridge,AR,71834 +Emmet,AR,71835 +Foreman,AR,71836 +Fouke,AR,71837 +Fulton,AR,71838 +Garland City,AR,71839 +Gillham,AR,71841 +Horatio,AR,71842 +Lewisville,AR,71845 +Lockesburg,AR,71846 +Mc Caskill,AR,71847 +Mineral Springs,AR,71851 +Nashville,AR,71852 +Ogden,AR,71853 +Ozan,AR,71855 +Prescott,AR,71857 +Rosston,AR,71858 +Saratoga,AR,71859 +Stamps,AR,71860 +Taylor,AR,71861 +Washington,AR,71862 +Willisville,AR,71864 +Wilton,AR,71865 +Winthrop,AR,71866 +Lake Catherine,AR,71901 +Hot Springs Vill,AR,71909 +Lake Hamilton,AR,71913 +Amity,AR,71921 +Antoine,AR,71922 +Arkadelphia,AR,71923 +Bismarck,AR,71929 +Blakely,AR,71931 +Bonnerdale,AR,71933 +Caddo Gap,AR,71935 +Cove,AR,71937 +Delight,AR,71940 +Donaldson,AR,71941 +Friendship,AR,71942 +Glenwood,AR,71943 +Grannis,AR,71944 +Hatfield,AR,71945 +Jessieville,AR,71949 +Kirby,AR,71950 +Langley,AR,71952 +Mena,AR,71953 +Buckville,AR,71956 +Mount Ida,AR,71957 +Murfreesboro,AR,71958 +Newhope,AR,71959 +Norman,AR,71960 +Oden,AR,71961 +Okolona,AR,71962 +Pearcy,AR,71964 +Pencil Bluff,AR,71965 +Royal,AR,71968 +Sims,AR,71969 +Story,AR,71970 +Umpire,AR,71971 +Vandervoort,AR,71972 +Wickes,AR,71973 +Adona,AR,72001 +Alexander,AR,72002 +Almyra,AR,72003 +Altheimer,AR,72004 +Amagon,AR,72005 +Augusta,AR,72006 +Austin,AR,72007 +Bald Knob,AR,72010 +Bauxite,AR,72011 +Beebe,AR,72012 +Bee Branch,AR,72013 +Beedeville,AR,72014 +Benton,AR,72015 +Bigelow,AR,72016 +Biscoe,AR,72017 +Bradford,AR,72020 +Brinkley,AR,72021 +Bryant,AR,72022 +Cabot,AR,72023 +Carlisle,AR,72024 +Casa,AR,72025 +Casscoe,AR,72026 +Center Ridge,AR,72027 +Choctaw,AR,72028 +Clarendon,AR,72029 +Cleveland,AR,72030 +Clinton,AR,72031 +Conway,AR,72032 +Cotton Plant,AR,72036 +Crocketts Bluff,AR,72038 +Twin Groves,AR,72039 +Des Arc,AR,72040 +De Valls Bluff,AR,72041 +De Witt,AR,72042 +Edgemont,AR,72044 +El Paso,AR,72045 +England,AR,72046 +Enola,AR,72047 +Ethel,AR,72048 +Fox,AR,72051 +Garner,AR,72052 +Gillett,AR,72055 +Grapevine,AR,72057 +Greenbrier,AR,72058 +Griffithville,AR,72060 +Guy,AR,72061 +Hattieville,AR,72063 +Hazen,AR,72064 +Hensley,AR,72065 +Hickory Plains,AR,72066 +Greers Ferry,AR,72067 +Higginson,AR,72068 +Holly Grove,AR,72069 +Houston,AR,72070 +Humnoke,AR,72072 +Humphrey,AR,72073 +Gravel Ridge,AR,72076 +Jefferson,AR,72079 +Jerusalem,AR,72080 +Judsonia,AR,72081 +Kensett,AR,72082 +Keo,AR,72083 +Leola,AR,72084 +Lonoke,AR,72086 +Lonsdale,AR,72087 +Mc Crory,AR,72101 +Mc Rae,AR,72102 +Shannon Hills,AR,72103 +Malvern,AR,72104 +Jones Mills,AR,72105 +Mayflower,AR,72106 +Morrilton,AR,72110 +Mount Vernon,AR,72111 +Newport,AR,72112 +Maumelle,AR,72113 +North Little Roc,AR,72114 +Sherwood,AR,72116 +North Little Roc,AR,72117 +Camp Joseph T Ro,AR,72118 +North Little Roc,AR,72120 +Pangburn,AR,72121 +Paron,AR,72122 +Perry,AR,72125 +Perryville,AR,72126 +Plumerville,AR,72127 +Poyen,AR,72128 +Prattsville,AR,72129 +Prim,AR,72130 +Quitman,AR,72131 +Redfield,AR,72132 +Reydell,AR,72133 +Roe,AR,72134 +Roland,AR,72135 +Romance,AR,72136 +Rose Bud,AR,72137 +Saint Charles,AR,72140 +Scotland,AR,72141 +Scott,AR,72142 +Georgetown,AR,72143 +Sheridan,AR,72150 +Sherrill,AR,72152 +Shirley,AR,72153 +Solgohachia,AR,72156 +Springfield,AR,72157 +Stuttgart,AR,72160 +Thida,AR,72165 +Tichnor,AR,72166 +Traskwood,AR,72167 +Tucker,AR,72168 +Ulm,AR,72170 +Vilonia,AR,72173 +Wabbaseka,AR,72175 +Ward,AR,72176 +Wilburn,AR,72179 +Wooster,AR,72181 +Wright,AR,72182 +Little Rock,AR,72201 +Little Rock,AR,72202 +Little Rock,AR,72204 +Little Rock,AR,72205 +Little Rock,AR,72206 +Little Rock,AR,72207 +Ferndale,AR,72208 +Little Rock,AR,72209 +Little Rock,AR,72210 +Little Rock,AR,72211 +Little Rock,AR,72212 +West Memphis,AR,72301 +Armorel,AR,72310 +Aubrey,AR,72311 +Bassett,AR,72313 +Birdeye,AR,72314 +Blytheville A F,AR,72315 +Brickeys,AR,72320 +Burdette,AR,72321 +Cherry Valley,AR,72324 +Colt,AR,72326 +Crawfordsville,AR,72327 +Crumrod,AR,72328 +Driver,AR,72329 +Dyess,AR,72330 +Earle,AR,72331 +Edmondson,AR,72332 +Elaine,AR,72333 +Forrest City,AR,72335 +Frenchmans Bayou,AR,72338 +Gilmore,AR,72339 +Goodwin,AR,72340 +Haynes,AR,72341 +Helena,AR,72342 +Heth,AR,72346 +Hickory Ridge,AR,72347 +Hughes,AR,72348 +Joiner,AR,72350 +Keiser,AR,72351 +Lepanto,AR,72354 +Lexa,AR,72355 +Luxora,AR,72358 +Marianna,AR,72360 +Marion,AR,72364 +Marked Tree,AR,72365 +Marvell,AR,72366 +Mellwood,AR,72367 +Moro,AR,72368 +Oneida,AR,72369 +Osceola,AR,72370 +Palestine,AR,72372 +Parkin,AR,72373 +Poplar Grove,AR,72374 +Proctor,AR,72376 +Snow Lake,AR,72379 +Tomato,AR,72381 +Turrell,AR,72384 +Tyronza,AR,72386 +West Helena,AR,72390 +Wheatley,AR,72392 +Widener,AR,72394 +Wilson,AR,72395 +Wynne,AR,72396 +Fair Oaks,AR,72397 +Jonesboro,AR,72401 +Alicia,AR,72410 +Bay,AR,72411 +Beech Grove,AR,72412 +Biggers,AR,72413 +Black Oak,AR,72414 +Black Rock,AR,72415 +Bono,AR,72416 +Brookland,AR,72417 +Caraway,AR,72419 +Cash,AR,72421 +Corning,AR,72422 +Datto,AR,72424 +Delaplaine,AR,72425 +Dell,AR,72426 +Etowah,AR,72428 +Fisher,AR,72429 +Greenway,AR,72430 +Harrisburg,AR,72432 +Hoxie,AR,72433 +Imboden,AR,72434 +Knobel,AR,72435 +Lafe,AR,72436 +Lake City,AR,72437 +Leachville,AR,72438 +Lynn,AR,72440 +Mc Dougal,AR,72441 +Roseland,AR,72442 +Marmaduke,AR,72443 +Maynard,AR,72444 +Minturn,AR,72445 +Monette,AR,72447 +O Kean,AR,72449 +Paragould,AR,72450 +Peach Orchard,AR,72453 +Piggott,AR,72454 +Pocahontas,AR,72455 +Pollard,AR,72456 +Portia,AR,72457 +Powhatan,AR,72458 +Ravenden,AR,72459 +Ravenden Springs,AR,72460 +Rector,AR,72461 +Saint Francis,AR,72464 +Sedgwick,AR,72465 +Smithville,AR,72466 +State University,AR,72467 +Calamine,AR,72469 +Success,AR,72470 +Swifton,AR,72471 +Payneway,AR,72472 +Tuckerman,AR,72473 +College City,AR,72476 +Warm Springs,AR,72478 +Weiner,AR,72479 +Williford,AR,72482 +Batesville,AR,72501 +Horseshoe Bend,AR,72512 +Agnos,AR,72513 +Bexar,AR,72515 +Boswell,AR,72516 +Brockwell,AR,72517 +Jordan,AR,72519 +Camp,AR,72520 +Cave City,AR,72521 +Charlotte,AR,72522 +Concord,AR,72523 +Cord,AR,72524 +Cushman,AR,72526 +Desha,AR,72527 +Dolph,AR,72528 +Cherokee Village,AR,72529 +Drasco,AR,72530 +Elizabeth,AR,72531 +Evening Shade,AR,72532 +Fifty Six,AR,72533 +Floral,AR,72534 +Franklin,AR,72536 +Gamaliel,AR,72537 +Gepp,AR,72538 +Glencoe,AR,72539 +Guion,AR,72540 +Hardy,AR,72542 +Heber Springs,AR,72543 +Henderson,AR,72544 +Ida,AR,72546 +Locust Grove,AR,72550 +Magness,AR,72553 +Mammoth Spring,AR,72554 +Marcella,AR,72555 +Zion,AR,72556 +Moko,AR,72557 +Hanover,AR,72560 +Mount Pleasant,AR,72561 +Newark,AR,72562 +Oil Trough,AR,72564 +Oxford,AR,72565 +Pineville,AR,72566 +Pleasant Grove,AR,72567 +Pleasant Plains,AR,72568 +Poughkeepsie,AR,72569 +Rosie,AR,72571 +Saffell,AR,72572 +Sage,AR,72573 +Salado,AR,72575 +Byron,AR,72576 +Sidney,AR,72577 +Sturkie,AR,72578 +Sulphur Rock,AR,72579 +Tumbling Shoals,AR,72581 +Viola,AR,72583 +Violet Hill,AR,72584 +Wideman,AR,72585 +Wiseman,AR,72587 +Harrison,AR,72601 +Alco,AR,72610 +Alpena,AR,72611 +Bass,AR,72612 +Berryville,AR,72616 +Big Flat,AR,72617 +Bruno,AR,72618 +Bull Shoals,AR,72619 +Clarkridge,AR,72623 +Compton,AR,72624 +Cotter,AR,72626 +Deer,AR,72628 +Dennard,AR,72629 +Eureka Springs,AR,72632 +Everton,AR,72633 +Flippin,AR,72634 +Gassville,AR,72635 +Green Forest,AR,72638 +Harriet,AR,72639 +Hasty,AR,72640 +Jasper,AR,72641 +Lakeview,AR,72642 +Lead Hill,AR,72644 +Leslie,AR,72645 +Dogpatch,AR,72648 +Marshall,AR,72650 +Midway,AR,72651 +Mountain Home,AR,72653 +Mount Judea,AR,72655 +Timbo,AR,72657 +Norfork,AR,72658 +Oak Grove,AR,72660 +Oakland,AR,72661 +Omaha,AR,72662 +Onia,AR,72663 +Parthenon,AR,72666 +Peel,AR,72668 +Pindall,AR,72669 +Ponca,AR,72670 +Saint Joe,AR,72675 +Tilly,AR,72679 +Newnata,AR,72680 +Valley Springs,AR,72682 +Vendor,AR,72683 +Western Grove,AR,72685 +Witts Springs,AR,72686 +Yellville,AR,72687 +Fayetteville,AR,72701 +Fayetteville,AR,72703 +Bentonville,AR,72712 +Bella Vista,AR,72714 +Wal-Mart Inc,AR,72716 +Canehill,AR,72717 +Cave Springs,AR,72718 +Centerton,AR,72719 +Combs,AR,72721 +Decatur,AR,72722 +Elkins,AR,72727 +Evansville,AR,72729 +Farmington,AR,72730 +Garfield,AR,72732 +Gateway,AR,72733 +Gentry,AR,72734 +Goshen,AR,72735 +Gravette,AR,72736 +Hindsville,AR,72738 +Hiwasse,AR,72739 +Huntsville,AR,72740 +Kingston,AR,72742 +Lincoln,AR,72744 +Lowell,AR,72745 +Maysville,AR,72747 +Morrow,AR,72749 +Pea Ridge,AR,72751 +Pettigrew,AR,72752 +Prairie Grove,AR,72753 +Rogers,AR,72756 +Saint Paul,AR,72760 +Siloam Springs,AR,72761 +Springdale,AR,72762 +Bethel Heights,AR,72764 +Sulphur Springs,AR,72768 +Summers,AR,72769 +Wesley,AR,72773 +West Fork,AR,72774 +Witter,AR,72776 +Russellville,AR,72801 +Alix,AR,72820 +Altus,AR,72821 +Atkins,AR,72823 +Belleville,AR,72824 +Blue Mountain,AR,72826 +Bluffton,AR,72827 +Briggsville,AR,72828 +Clarksville,AR,72830 +Coal Hill,AR,72832 +Danville,AR,72833 +Dardanelle,AR,72834 +Delaware,AR,72835 +Dover,AR,72837 +Gravelly,AR,72838 +Hagarville,AR,72839 +Hartman,AR,72840 +Harvey,AR,72841 +Waveland,AR,72842 +Hector,AR,72843 +Knoxville,AR,72845 +Lamar,AR,72846 +London,AR,72847 +New Blaine,AR,72851 +Oark,AR,72852 +Ola,AR,72853 +Ozone,AR,72854 +Paris,AR,72855 +Pelsor,AR,72856 +Plainview,AR,72857 +Pottsville,AR,72858 +Rover,AR,72860 +Scranton,AR,72863 +Subiaco,AR,72865 +Fort Smith,AR,72901 +Fort Smith,AR,72903 +Fort Smith,AR,72904 +Fort Chaffee,AR,72905 +Fort Smith,AR,72916 +Alma,AR,72921 +Barling,AR,72923 +Bates,AR,72924 +Boles,AR,72926 +Booneville,AR,72927 +Branch,AR,72928 +Cecil,AR,72930 +Cedarville,AR,72932 +Charleston,AR,72933 +Chester,AR,72934 +Greenwood,AR,72936 +Hackett,AR,72937 +Hartford,AR,72938 +Huntington,AR,72940 +Central City,AR,72941 +Magazine,AR,72943 +Mansfield,AR,72944 +Mountainburg,AR,72946 +Mulberry,AR,72947 +Natural Dam,AR,72948 +Ozark,AR,72949 +Parks,AR,72950 +Ratcliff,AR,72951 +Rudy,AR,72952 +Uniontown,AR,72955 +Van Buren,AR,72956 +Waldron,AR,72958 +Winslow,AR,72959 +Texarkana,AR,75502 +Los Angeles,CA,90001 +Los Angeles,CA,90002 +Los Angeles,CA,90003 +Los Angeles,CA,90004 +Los Angeles,CA,90005 +Los Angeles,CA,90006 +Los Angeles,CA,90007 +Los Angeles,CA,90008 +Los Angeles,CA,90010 +Los Angeles,CA,90011 +Los Angeles,CA,90012 +Los Angeles,CA,90013 +Los Angeles,CA,90014 +Los Angeles,CA,90015 +Los Angeles,CA,90016 +Los Angeles,CA,90017 +Los Angeles,CA,90018 +Los Angeles,CA,90019 +Los Angeles,CA,90020 +Los Angeles,CA,90021 +East Los Angeles,CA,90022 +Los Angeles,CA,90023 +Los Angeles,CA,90024 +Los Angeles,CA,90025 +Los Angeles,CA,90026 +Los Angeles,CA,90027 +Los Angeles,CA,90028 +Los Angeles,CA,90029 +Los Angeles,CA,90031 +Los Angeles,CA,90032 +Los Angeles,CA,90033 +Los Angeles,CA,90034 +Los Angeles,CA,90035 +Los Angeles,CA,90036 +Los Angeles,CA,90037 +Los Angeles,CA,90038 +Los Angeles,CA,90039 +City Of Commerce,CA,90040 +Los Angeles,CA,90041 +Los Angeles,CA,90042 +Los Angeles,CA,90043 +Los Angeles,CA,90044 +Los Angeles,CA,90045 +Cole,CA,90046 +Los Angeles,CA,90047 +Los Angeles,CA,90048 +Los Angeles,CA,90049 +Los Angeles,CA,90056 +Los Angeles,CA,90057 +Vernon,CA,90058 +Los Angeles,CA,90059 +Los Angeles,CA,90061 +Los Angeles,CA,90062 +Hazard,CA,90063 +Los Angeles,CA,90064 +Los Angeles,CA,90065 +Los Angeles,CA,90066 +Los Angeles,CA,90067 +Los Angeles,CA,90068 +West Hollywood,CA,90069 +Los Angeles,CA,90071 +Los Angeles,CA,90077 +Bell Gardens,CA,90201 +Beverly Hills,CA,90210 +Beverly Hills,CA,90211 +Beverly Hills,CA,90212 +Rancho Dominguez,CA,90220 +East Rancho Domi,CA,90221 +Rosewood,CA,90222 +Culver City,CA,90230 +Culver City,CA,90232 +Downey,CA,90240 +Downey,CA,90241 +Downey,CA,90242 +El Segundo,CA,90245 +Gardena,CA,90247 +Gardena,CA,90248 +Gardena,CA,90249 +Holly Park,CA,90250 +Hermosa Beach,CA,90254 +Huntington Park,CA,90255 +Lawndale,CA,90260 +Lynwood,CA,90262 +Malibu,CA,90265 +Manhattan Beach,CA,90266 +Maywood,CA,90270 +Pacific Palisade,CA,90272 +Palos Verdes Est,CA,90274 +Redondo Beach,CA,90277 +Redondo Beach,CA,90278 +South Gate,CA,90280 +Topanga,CA,90290 +Venice,CA,90291 +Marina Del Rey,CA,90292 +Playa Del Rey,CA,90293 +Inglewood,CA,90301 +Inglewood,CA,90302 +Inglewood,CA,90303 +Lennox,CA,90304 +Inglewood,CA,90305 +Santa Monica,CA,90401 +Santa Monica,CA,90402 +Santa Monica,CA,90403 +Santa Monica,CA,90404 +Santa Monica,CA,90405 +Torrance,CA,90501 +Torrance,CA,90502 +Torrance,CA,90503 +Torrance,CA,90504 +Torrance,CA,90505 +Torrance,CA,90506 +Whittier,CA,90601 +Whittier,CA,90602 +Whittier,CA,90603 +Whittier,CA,90604 +Whittier,CA,90605 +Los Nietos,CA,90606 +Buena Park,CA,90620 +Buena Park,CA,90621 +Cerritos,CA,90623 +Cypress,CA,90630 +La Habra Heights,CA,90631 +La Mirada,CA,90638 +Montebello,CA,90640 +Norwalk,CA,90650 +Pico Rivera,CA,90660 +Santa Fe Springs,CA,90670 +Stanton,CA,90680 +Cerritos,CA,90701 +Avalon,CA,90704 +Bellflower,CA,90706 +Harbor City,CA,90710 +Lakewood,CA,90712 +Lakewood,CA,90713 +Lakewood,CA,90715 +Hawaiian Gardens,CA,90716 +Rancho Palos Ver,CA,90717 +Rossmoor,CA,90720 +Paramount,CA,90723 +San Pedro,CA,90731 +Rancho Palos Ver,CA,90732 +Seal Beach,CA,90740 +Wilmington,CA,90744 +Carson,CA,90745 +Carson,CA,90746 +Long Beach,CA,90802 +Long Beach,CA,90803 +Signal Hill,CA,90804 +Long Beach,CA,90805 +Signal Hill,CA,90806 +Signal Hill,CA,90807 +Long Beach,CA,90808 +Carson,CA,90810 +Long Beach,CA,90813 +Long Beach,CA,90814 +Long Beach,CA,90815 +Long Beach,CA,90822 +Altadena,CA,91001 +Arcadia,CA,91006 +Arcadia,CA,91007 +Bradbury,CA,91010 +Flintridge,CA,91011 +Monrovia,CA,91016 +Montrose,CA,91020 +Sierra Madre,CA,91024 +South Pasadena,CA,91030 +Shadow Hills,CA,91040 +Tujunga,CA,91042 +Pasadena,CA,91101 +Pasadena,CA,91103 +Pasadena,CA,91104 +Pasadena,CA,91105 +Pasadena,CA,91106 +Pasadena,CA,91107 +San Marino,CA,91108 +Glendale,CA,91201 +Glendale,CA,91202 +Glendale,CA,91203 +Glendale,CA,91204 +Glendale,CA,91205 +Glendale,CA,91206 +Glendale,CA,91207 +Glendale,CA,91208 +La Crescenta,CA,91214 +Oak Park,CA,91301 +Calabasas,CA,91302 +Canoga Park,CA,91303 +Canoga Park,CA,91304 +Winnetka,CA,91306 +West Hills,CA,91307 +Chatsworth,CA,91311 +Encino,CA,91316 +Newbury Park,CA,91320 +Newhall,CA,91321 +Northridge,CA,91324 +Northridge,CA,91325 +Porter Ranch,CA,91326 +California State,CA,91330 +Arleta,CA,91331 +Reseda,CA,91335 +San Fernando,CA,91340 +Sylmar,CA,91342 +North Hills,CA,91343 +Granada Hills,CA,91344 +Mission Hills,CA,91345 +Agua Dulce,CA,91350 +Canyon Country,CA,91351 +Sun Valley,CA,91352 +Valencia,CA,91354 +Valencia,CA,91355 +Tarzana,CA,91356 +Thousand Oaks,CA,91360 +Westlake Village,CA,91361 +Westlake Village,CA,91362 +Woodland Hills,CA,91364 +Woodland Hills,CA,91367 +Newhall,CA,91381 +Castaic,CA,91384 +Van Nuys,CA,91401 +Panorama City,CA,91402 +Sherman Oaks,CA,91403 +Van Nuys,CA,91405 +Van Nuys,CA,91406 +Van Nuys,CA,91411 +Sherman Oaks,CA,91423 +Encino,CA,91436 +Burbank,CA,91501 +Burbank,CA,91502 +Burbank,CA,91504 +Burbank,CA,91505 +Burbank,CA,91506 +North Hollywood,CA,91601 +Toluca Lake,CA,91602 +Studio City,CA,91604 +North Hollywood,CA,91605 +North Hollywood,CA,91606 +Valley Village,CA,91607 +Alta Loma,CA,91701 +Azusa,CA,91702 +Irwindale,CA,91706 +Chino Hills,CA,91709 +Chino,CA,91710 +Claremont,CA,91711 +Corona,CA,91719 +Corona,CA,91720 +Covina,CA,91722 +Covina,CA,91723 +Covina,CA,91724 +Rancho Cucamonga,CA,91730 +El Monte,CA,91731 +El Monte,CA,91732 +South El Monte,CA,91733 +Alta Loma,CA,91737 +Etiwanda,CA,91739 +Glendora,CA,91740 +Industry,CA,91744 +Hacienda Heights,CA,91745 +Bassett,CA,91746 +Rowland Heights,CA,91748 +La Verne,CA,91750 +Mira Loma,CA,91752 +Monterey Park,CA,91754 +Mt Baldy,CA,91759 +Norco,CA,91760 +Ontario,CA,91761 +Ontario,CA,91762 +Montclair,CA,91763 +Ontario,CA,91764 +Diamond Bar,CA,91765 +Phillips Ranch,CA,91766 +Pomona,CA,91767 +Pomona,CA,91768 +Rosemead,CA,91770 +San Dimas,CA,91773 +San Gabriel,CA,91775 +San Gabriel,CA,91776 +Temple City,CA,91780 +Upland,CA,91786 +Diamond Bar,CA,91789 +West Covina,CA,91790 +West Covina,CA,91791 +West Covina,CA,91792 +Alhambra,CA,91801 +Alhambra,CA,91803 +Alpine,CA,91901 +Bonita,CA,91902 +Boulevard,CA,91905 +Campo,CA,91906 +Chula Vista,CA,91910 +Chula Vista,CA,91911 +Chula Vista,CA,91913 +Chula Vista,CA,91914 +Chula Vista,CA,91915 +Descanso,CA,91916 +Dulzura,CA,91917 +Imperial Beach,CA,91932 +Jacumba,CA,91934 +Jamul,CA,91935 +La Mesa,CA,91941 +La Mesa,CA,91942 +Lemon Grove,CA,91945 +National City,CA,91950 +Pine Valley,CA,91962 +Potrero,CA,91963 +Spring Valley,CA,91977 +Spring Valley,CA,91978 +Tecate,CA,91980 +Bonsall,CA,92003 +Borrego Springs,CA,92004 +Cardiff By The S,CA,92007 +Carlsbad,CA,92008 +Carlsbad,CA,92009 +Del Mar,CA,92014 +El Cajon,CA,92019 +El Cajon,CA,92020 +El Cajon,CA,92021 +Encinitas,CA,92024 +Escondido,CA,92025 +Escondido,CA,92026 +Escondido,CA,92027 +Fallbrook,CA,92028 +Escondido,CA,92029 +Julian,CA,92036 +La Jolla,CA,92037 +Lakeside,CA,92040 +Oceanside,CA,92054 +Marine Corp Base,CA,92055 +Oceanside,CA,92056 +Oceanside,CA,92057 +Pala,CA,92059 +Pauma Valley,CA,92061 +Poway,CA,92064 +Ramona,CA,92065 +Ranchita,CA,92066 +San Luis Rey,CA,92068 +San Marcos,CA,92069 +Santa Ysabel,CA,92070 +Santee,CA,92071 +Solana Beach,CA,92075 +Valley Center,CA,92082 +Vista,CA,92083 +Vista,CA,92084 +Warner Springs,CA,92086 +San Diego,CA,92101 +San Diego,CA,92102 +San Diego,CA,92103 +San Diego,CA,92104 +San Diego,CA,92105 +San Diego,CA,92106 +San Diego,CA,92107 +San Diego,CA,92108 +San Diego,CA,92109 +San Diego,CA,92110 +San Diego,CA,92111 +San Diego,CA,92113 +San Diego,CA,92114 +San Diego,CA,92115 +San Diego,CA,92116 +San Diego,CA,92117 +Coronado,CA,92118 +San Diego,CA,92119 +San Diego,CA,92120 +San Diego,CA,92121 +San Diego,CA,92122 +San Diego,CA,92123 +San Diego,CA,92124 +San Diego,CA,92126 +San Diego,CA,92127 +San Diego,CA,92128 +San Diego,CA,92129 +San Diego,CA,92130 +San Diego,CA,92131 +San Diego,CA,92135 +San Diego,CA,92136 +San Diego,CA,92139 +San Diego,CA,92145 +San Diego,CA,92154 +San Diego,CA,92155 +San Ysidro,CA,92173 +Chiriaco Summit,CA,92201 +Indian Wells,CA,92210 +Banning,CA,92220 +Beaumont,CA,92223 +Lost Lake,CA,92225 +Brawley,CA,92227 +Cabazon,CA,92230 +Calexico,CA,92231 +Calipatria,CA,92233 +Cathedral City,CA,92234 +Coachella,CA,92236 +Eagle Mountain,CA,92239 +Desert Hot Sprin,CA,92240 +Big River,CA,92242 +El Centro,CA,92243 +Heber,CA,92249 +Holtville,CA,92250 +Imperial,CA,92251 +Joshua Tree,CA,92252 +La Quinta,CA,92253 +Morongo Valley,CA,92256 +Niland,CA,92257 +Palm City,CA,92260 +Palm Springs,CA,92262 +Palm Springs,CA,92264 +Parker Dam,CA,92267 +Rancho Mirage,CA,92270 +Blythe,CA,92272 +Salton City,CA,92274 +Thousand Palms,CA,92276 +Twentynine Palms,CA,92277 +Twentynine Palms,CA,92278 +Vidal,CA,92280 +Westmorland,CA,92281 +White Water,CA,92282 +Felicity,CA,92283 +Yucca Valley,CA,92284 +Adelanto,CA,92301 +Amboy,CA,92304 +Angelus Oaks,CA,92305 +Apple Valley,CA,92307 +Apple Valley,CA,92308 +Baker,CA,92309 +Fort Irwin,CA,92310 +Barstow,CA,92311 +Big Bear City,CA,92314 +Bloomington,CA,92316 +Calimesa,CA,92320 +Grand Terrace,CA,92324 +Daggett,CA,92327 +Death Valley,CA,92328 +Essex,CA,92332 +Fontana,CA,92335 +Fontana,CA,92336 +Ludlow,CA,92338 +Forest Falls,CA,92339 +Helendale,CA,92342 +Hesperia,CA,92345 +East Highland,CA,92346 +Hinkley,CA,92347 +Kelso,CA,92351 +Loma Linda,CA,92354 +Lucerne Valley,CA,92356 +Lytle Creek,CA,92358 +Mentone,CA,92359 +Needles,CA,92363 +Nipton,CA,92364 +Newberry Springs,CA,92365 +Oro Grande,CA,92368 +Phelan,CA,92371 +Pinon Hills,CA,92372 +Redlands,CA,92373 +Redlands,CA,92374 +Rialto,CA,92376 +Shoshone,CA,92384 +Tecopa,CA,92389 +Spring Valley La,CA,92392 +George Afb,CA,92394 +Wrightwood,CA,92397 +Yucaipa,CA,92399 +San Bernardino,CA,92401 +San Bernardino,CA,92404 +Muscoy,CA,92405 +San Bernardino,CA,92407 +San Bernardino,CA,92408 +San Bernardino,CA,92409 +San Bernardino,CA,92410 +San Bernardino,CA,92411 +Riverside,CA,92501 +Riverside,CA,92503 +Riverside,CA,92504 +Riverside,CA,92505 +Riverside,CA,92506 +Riverside,CA,92507 +Riverside,CA,92508 +Rubidoux,CA,92509 +Lake Elsinore,CA,92530 +Lake Elsinore,CA,92532 +Aguanga,CA,92536 +Anza,CA,92539 +Hemet,CA,92543 +Hemet,CA,92544 +Hemet,CA,92545 +Homeland,CA,92548 +Idyllwild,CA,92549 +Moreno Valley,CA,92553 +Moreno Valley,CA,92555 +Moreno Valley,CA,92557 +Mountain Center,CA,92561 +Murrieta,CA,92562 +Murrieta,CA,92563 +Lakeview,CA,92567 +Mead Valley,CA,92570 +Perris,CA,92571 +San Jacinto,CA,92582 +Gilman Hot Sprin,CA,92583 +Menifee,CA,92584 +Romoland,CA,92585 +Sun City,CA,92586 +Canyon Lake,CA,92587 +Temecula,CA,92590 +Temecula,CA,92591 +Temecula,CA,92592 +Wildomar,CA,92595 +Winchester,CA,92596 +Foothill Ranch,CA,92610 +Brea,CA,92621 +Capistrano Beach,CA,92624 +Corona Del Mar,CA,92625 +Costa Mesa,CA,92626 +Costa Mesa,CA,92627 +Monarch Bay,CA,92629 +Lake Forest,CA,92630 +Fullerton,CA,92631 +Fullerton,CA,92632 +Fullerton,CA,92633 +Fullerton,CA,92635 +Garden Grove,CA,92640 +Garden Grove,CA,92641 +Garden Grove,CA,92643 +Garden Grove,CA,92644 +Garden Grove,CA,92645 +Huntington Beach,CA,92646 +Huntington Beach,CA,92647 +Huntington Beach,CA,92648 +Huntington Beach,CA,92649 +Laguna Niguel,CA,92651 +Laguna Hills,CA,92653 +Midway City,CA,92655 +Aliso Viejo,CA,92656 +Newport Beach,CA,92657 +Newport Beach,CA,92660 +Newport Beach,CA,92661 +Newport Beach,CA,92662 +Newport Beach,CA,92663 +Orange,CA,92665 +Orange,CA,92666 +Villa Park,CA,92667 +Orange,CA,92668 +Orange,CA,92669 +Placentia,CA,92670 +San Clemente,CA,92672 +Mission Viejo,CA,92675 +Laguna Niguel,CA,92677 +Coto De Caza,CA,92679 +Tustin,CA,92680 +Westminster,CA,92683 +Yorba Linda,CA,92686 +Yorba Linda,CA,92687 +Rancho Santa Mar,CA,92688 +Mission Viejo,CA,92691 +Mission Viejo,CA,92692 +Santa Ana,CA,92701 +Santa Ana,CA,92703 +Santa Ana,CA,92704 +Cowan Heights,CA,92705 +Santa Ana,CA,92706 +Santa Ana Height,CA,92707 +Fountain Valley,CA,92708 +El Toro Marine C,CA,92709 +Irvine,CA,92714 +Irvine,CA,92715 +Irvine,CA,92718 +Irvine,CA,92720 +Anaheim,CA,92801 +Anaheim,CA,92802 +Anaheim,CA,92804 +Anaheim,CA,92805 +Anaheim,CA,92806 +Anaheim,CA,92807 +Anaheim,CA,92808 +San Buenaventura,CA,93001 +San Buenaventura,CA,93003 +San Buenaventura,CA,93004 +Camarillo,CA,93010 +Camarillo,CA,93012 +Carpinteria,CA,93013 +Bardsdale,CA,93015 +Moorpark,CA,93021 +Oak View,CA,93022 +Ojai,CA,93023 +Oxnard,CA,93030 +Oxnard,CA,93033 +Oxnard,CA,93035 +Port Hueneme,CA,93041 +Point Mugu Nawc,CA,93042 +Port Hueneme Cbc,CA,93043 +Santa Paula,CA,93060 +Santa Susana,CA,93063 +Simi Valley,CA,93065 +Somis,CA,93066 +Summerland,CA,93067 +Santa Barbara,CA,93101 +Santa Barbara,CA,93103 +Santa Barbara,CA,93105 +Montecito,CA,93108 +Santa Barbara,CA,93109 +Santa Barbara,CA,93110 +Santa Barbara,CA,93111 +Goleta,CA,93117 +Armona,CA,93202 +Arvin,CA,93203 +Avenal,CA,93204 +Bodfish,CA,93205 +Buttonwillow,CA,93206 +California Hot S,CA,93207 +Coalinga,CA,93210 +Corcoran,CA,93212 +Cuyama,CA,93214 +Delano,CA,93215 +Di Giorgio,CA,93217 +Earlimart,CA,93219 +Exeter,CA,93221 +Farmersville,CA,93223 +Fellows,CA,93224 +Frazier Park,CA,93225 +Glennville,CA,93226 +Hanford,CA,93230 +Huron,CA,93234 +Ivanhoe,CA,93235 +Kernville,CA,93238 +Kettleman City,CA,93239 +Mountain Mesa,CA,93240 +Lamont,CA,93241 +Laton,CA,93242 +Gorman,CA,93243 +Lemoncove,CA,93244 +Lemoore Naval Ai,CA,93245 +Lindsay,CA,93247 +Lost Hills,CA,93249 +Mc Farland,CA,93250 +Mc Kittrick,CA,93251 +Maricopa,CA,93252 +New Cuyama,CA,93254 +Onyx,CA,93255 +Pixley,CA,93256 +Porterville,CA,93257 +Posey,CA,93260 +Giant Forest,CA,93262 +Shafter,CA,93263 +Springville,CA,93265 +Stratford,CA,93266 +Strathmore,CA,93267 +Taft,CA,93268 +Terra Bella,CA,93270 +Three Rivers,CA,93271 +Tipton,CA,93272 +Tulare,CA,93274 +Tupman,CA,93276 +Visalia,CA,93277 +Pond,CA,93280 +Weldon,CA,93283 +Wofford Heights,CA,93285 +Woodlake,CA,93286 +Woody,CA,93287 +Visalia,CA,93291 +Bakersfield,CA,93301 +Bakersfield,CA,93304 +College Heights,CA,93305 +Bakersfield,CA,93306 +Bakersfield,CA,93307 +Bakersfield,CA,93308 +Bakersfield,CA,93309 +Bakersfield,CA,93311 +Greenacres,CA,93312 +Bakersfield,CA,93313 +San Luis Obispo,CA,93401 +Los Osos,CA,93402 +San Luis Obispo,CA,93405 +Halcyon,CA,93420 +Atascadero,CA,93422 +Bradley,CA,93426 +Buellton,CA,93427 +Cambria,CA,93428 +Cayucos,CA,93430 +Cholame,CA,93431 +Creston,CA,93432 +Grover Beach,CA,93433 +Guadalupe,CA,93434 +Lompoc,CA,93436 +Lompoc,CA,93437 +Morro Bay,CA,93442 +Nipomo,CA,93444 +Oceano,CA,93445 +Adelaide,CA,93446 +Shell Beach,CA,93449 +San Ardo,CA,93450 +Parkfield,CA,93451 +San Simeon,CA,93452 +California Valle,CA,93453 +Santa Maria,CA,93454 +Orcutt,CA,93455 +Santa Ynez,CA,93460 +Shandon,CA,93461 +Ballard,CA,93463 +Templeton,CA,93465 +Mojave,CA,93501 +California City,CA,93505 +Acton,CA,93510 +Benton,CA,93512 +Big Pine,CA,93513 +Toms Place,CA,93514 +Boron,CA,93516 +Bridgeport,CA,93517 +Havilah,CA,93518 +Cantil,CA,93519 +North Edwards,CA,93523 +Independence,CA,93526 +Pearsonville,CA,93527 +Johannesburg,CA,93528 +June Lake,CA,93529 +Keene,CA,93531 +Elizabeth Lake,CA,93532 +Lancaster,CA,93534 +Hi Vista,CA,93535 +Quartz Hill,CA,93536 +Lee Vining,CA,93541 +Juniper Hills,CA,93543 +Crystalaire,CA,93544 +Lone Pine,CA,93545 +Crowley Lake,CA,93546 +Lake Los Angeles,CA,93550 +Leona Valley,CA,93551 +Juniper Hills,CA,93553 +Randsburg,CA,93554 +China Lake Nwc,CA,93555 +Willow Springs,CA,93560 +Bear Valley Spri,CA,93561 +Argus,CA,93562 +Valyermo,CA,93563 +Ahwahnee,CA,93601 +Auberry,CA,93602 +Bass Lake,CA,93604 +Cantua Creek,CA,93608 +Caruthers,CA,93609 +Chowchilla,CA,93610 +Clovis,CA,93612 +Coarsegold,CA,93614 +Cutler,CA,93615 +Del Rey,CA,93616 +Dinuba,CA,93618 +Dos Palos,CA,93620 +Dunlap,CA,93621 +Firebaugh,CA,93622 +Fish Camp,CA,93623 +Fowler,CA,93625 +Friant,CA,93626 +Helm,CA,93627 +Kerman,CA,93630 +Kingsburg,CA,93631 +Kings Canyon Nat,CA,93633 +Los Banos,CA,93635 +Madera,CA,93637 +Madera,CA,93638 +Mendota,CA,93640 +Miramonte,CA,93641 +North Fork,CA,93643 +Oakhurst,CA,93644 +O Neals,CA,93645 +Orange Cove,CA,93646 +Orosi,CA,93647 +Parlier,CA,93648 +Pinedale,CA,93650 +Prather,CA,93651 +Raisin,CA,93652 +Raymond,CA,93653 +Reedley,CA,93654 +Riverdale,CA,93656 +Sanger,CA,93657 +San Joaquin,CA,93660 +Selma,CA,93662 +Shaver Lake,CA,93664 +Tollhouse,CA,93667 +Tranquillity,CA,93668 +Wishon,CA,93669 +Squaw Valley,CA,93675 +Fresno,CA,93701 +Fresno,CA,93702 +Fresno,CA,93703 +Fig Garden Villa,CA,93704 +Fresno,CA,93705 +Easton,CA,93706 +Fresno,CA,93710 +Fresno,CA,93711 +Fresno,CA,93720 +Fresno,CA,93721 +Fresno,CA,93722 +Calwa,CA,93725 +Fresno,CA,93726 +Fresno,CA,93727 +Fresno,CA,93728 +Salinas,CA,93901 +Salinas,CA,93905 +Salinas,CA,93906 +Prunedale,CA,93907 +Salinas,CA,93908 +Big Sur,CA,93920 +Carmel,CA,93923 +Carmel Valley,CA,93924 +Chualar,CA,93925 +Gonzales,CA,93926 +Greenfield,CA,93927 +King City,CA,93930 +Lockwood,CA,93932 +Marina,CA,93933 +Del Rey Oaks,CA,93940 +Fort Ord,CA,93941 +Pacific Grove,CA,93950 +Pebble Beach,CA,93953 +Sand City,CA,93955 +Soledad,CA,93960 +Belmont,CA,94002 +Brisbane,CA,94005 +Hillsborough,CA,94010 +Colma,CA,94014 +Daly City,CA,94015 +Half Moon Bay,CA,94019 +La Honda,CA,94020 +Loma Mar,CA,94021 +Los Altos,CA,94022 +Los Altos,CA,94024 +West Menlo Park,CA,94025 +Atherton,CA,94027 +Ladera,CA,94028 +Millbrae,CA,94030 +Moffett Field,CA,94035 +Moss Beach,CA,94038 +Mountain View,CA,94040 +Mountain View,CA,94041 +Mountain View,CA,94043 +Pacifica,CA,94044 +Pescadero,CA,94060 +Redwood City,CA,94061 +Woodside,CA,94062 +Redwood City,CA,94063 +Redwood City,CA,94065 +San Bruno,CA,94066 +San Carlos,CA,94070 +San Gregorio,CA,94074 +South San Franci,CA,94080 +Sunnyvale,CA,94086 +Sunnyvale,CA,94087 +Sunnyvale,CA,94089 +San Francisco,CA,94102 +San Francisco,CA,94103 +San Francisco,CA,94104 +San Francisco,CA,94105 +San Francisco,CA,94107 +San Francisco,CA,94108 +San Francisco,CA,94109 +San Francisco,CA,94110 +San Francisco,CA,94111 +San Francisco,CA,94112 +San Francisco,CA,94114 +San Francisco,CA,94115 +San Francisco,CA,94116 +San Francisco,CA,94117 +San Francisco,CA,94118 +San Francisco,CA,94121 +San Francisco,CA,94122 +San Francisco,CA,94123 +San Francisco,CA,94124 +San Francisco,CA,94127 +San Francisco,CA,94129 +San Francisco,CA,94130 +San Francisco,CA,94131 +San Francisco,CA,94132 +San Francisco,CA,94133 +San Francisco,CA,94134 +Palo Alto,CA,94301 +East Palo Alto,CA,94303 +Palo Alto,CA,94304 +Stanford,CA,94305 +Palo Alto,CA,94306 +Russian River,CA,94401 +San Mateo,CA,94402 +San Mateo,CA,94403 +Foster City,CA,94404 +Coast Guard Isla,CA,94501 +Alamo,CA,94507 +Angwin,CA,94508 +Antioch,CA,94509 +Benicia,CA,94510 +Birds Landing,CA,94512 +Brentwood,CA,94513 +Byron,CA,94514 +Calistoga,CA,94515 +Clayton,CA,94517 +Concord,CA,94518 +Concord,CA,94519 +Concord,CA,94520 +Concord,CA,94521 +Pleasant Hill,CA,94523 +Crockett,CA,94525 +Danville,CA,94526 +Diablo,CA,94528 +El Cerrito,CA,94530 +Fairfield,CA,94533 +Travis Afb,CA,94535 +Fremont,CA,94536 +Fremont,CA,94538 +Fremont,CA,94539 +Hayward,CA,94541 +Hayward,CA,94542 +Hayward,CA,94544 +Hayward,CA,94545 +Castro Valley,CA,94546 +Hercules,CA,94547 +Knightsen,CA,94548 +Lafayette,CA,94549 +Livermore,CA,94550 +Castro Valley,CA,94552 +Pacheco,CA,94553 +Fremont,CA,94555 +Moraga,CA,94556 +Spanish Flat,CA,94558 +Napa,CA,94559 +Newark,CA,94560 +Oakley,CA,94561 +Orinda,CA,94563 +Pinole,CA,94564 +Shore Acres,CA,94565 +Pleasanton,CA,94566 +Pope Valley,CA,94567 +Dublin,CA,94568 +Port Costa,CA,94569 +Rio Vista,CA,94571 +Rodeo,CA,94572 +Saint Helena,CA,94574 +San Leandro,CA,94577 +San Leandro,CA,94578 +San Leandro,CA,94579 +San Lorenzo,CA,94580 +San Ramon,CA,94583 +Suisun City,CA,94585 +Sunol,CA,94586 +Union City,CA,94587 +Pleasanton,CA,94588 +American Canyon,CA,94589 +Vallejo,CA,94590 +Vallejo,CA,94591 +Mare Island,CA,94592 +Walnut Creek,CA,94595 +Walnut Creek,CA,94596 +Walnut Creek,CA,94598 +Yountville,CA,94599 +Oakland,CA,94601 +Oakland,CA,94602 +Oakland,CA,94603 +Oakland,CA,94605 +Oakland,CA,94606 +Oakland,CA,94607 +Emeryville,CA,94608 +Oakland,CA,94609 +Oakland,CA,94610 +Piedmont,CA,94611 +Oakland,CA,94612 +Oakland,CA,94613 +Piedmont,CA,94618 +Oakland,CA,94619 +Oakland,CA,94621 +Berkeley,CA,94702 +Berkeley,CA,94703 +Berkeley,CA,94704 +Berkeley,CA,94705 +Albany,CA,94706 +Kensington,CA,94707 +Kensington,CA,94708 +Berkeley,CA,94709 +Berkeley,CA,94710 +Richmond,CA,94801 +El Sobrante,CA,94803 +Richmond,CA,94804 +Richmond,CA,94805 +San Pablo,CA,94806 +San Rafael,CA,94901 +Civic Center,CA,94903 +Kentfield,CA,94904 +Belvedere,CA,94920 +Bodega,CA,94922 +Bodega Bay,CA,94923 +Bolinas,CA,94924 +Corte Madera,CA,94925 +Rohnert Park,CA,94928 +Fairfax,CA,94930 +Cotati,CA,94931 +Forest Knolls,CA,94933 +Inverness,CA,94937 +Lagunitas,CA,94938 +Larkspur,CA,94939 +Marshall,CA,94940 +Mill Valley,CA,94941 +Novato,CA,94945 +Nicasio,CA,94946 +Novato,CA,94947 +Novato,CA,94949 +Penngrove,CA,94951 +Petaluma,CA,94952 +Petaluma,CA,94954 +Point Reyes Stat,CA,94956 +San Anselmo,CA,94960 +San Geronimo,CA,94963 +Sausalito,CA,94965 +Stinson Beach,CA,94970 +Valley Ford,CA,94972 +Woodacre,CA,94973 +Alviso,CA,95002 +Aptos,CA,95003 +Aromas,CA,95004 +Ben Lomond,CA,95005 +Boulder Creek,CA,95006 +Campbell,CA,95008 +Capitola,CA,95010 +Castroville,CA,95012 +Coyote,CA,95013 +Monte Vista,CA,95014 +Davenport,CA,95017 +Felton,CA,95018 +Freedom,CA,95019 +Gilroy,CA,95020 +Hollister,CA,95023 +Monte Sereno,CA,95030 +Los Gatos,CA,95032 +Milpitas,CA,95035 +Morgan Hill,CA,95037 +Paicines,CA,95043 +San Juan Bautist,CA,95045 +San Martin,CA,95046 +Santa Clara,CA,95050 +Santa Clara,CA,95051 +Santa Clara,CA,95054 +Scotts Valley,CA,95060 +Santa Cruz,CA,95062 +Santa Cruz,CA,95064 +Santa Cruz,CA,95065 +Scotts Valley,CA,95066 +Saratoga,CA,95070 +Soquel,CA,95073 +La Selva Beach,CA,95076 +San Jose,CA,95110 +San Jose,CA,95111 +San Jose,CA,95112 +San Jose,CA,95113 +San Jose,CA,95116 +San Jose,CA,95117 +San Jose,CA,95118 +San Jose,CA,95119 +San Jose,CA,95120 +San Jose,CA,95121 +San Jose,CA,95122 +San Jose,CA,95123 +San Jose,CA,95124 +San Jose,CA,95125 +San Jose,CA,95126 +San Jose,CA,95127 +San Jose,CA,95128 +San Jose,CA,95129 +San Jose,CA,95130 +San Jose,CA,95131 +San Jose,CA,95132 +San Jose,CA,95133 +San Jose,CA,95134 +San Jose,CA,95135 +San Jose,CA,95136 +San Jose,CA,95138 +San Jose,CA,95139 +Mount Hamilton,CA,95140 +San Jose,CA,95141 +San Jose,CA,95148 +Stockton,CA,95202 +Stockton,CA,95203 +Stockton,CA,95204 +Stockton,CA,95205 +Stockton,CA,95206 +Stockton,CA,95207 +Stockton,CA,95209 +Stockton,CA,95210 +Univ Of The Paci,CA,95211 +Stockton,CA,95212 +Stockton,CA,95215 +Stockton,CA,95219 +Acampo,CA,95220 +Angels Camp,CA,95222 +Bear Valley,CA,95223 +Copperopolis,CA,95228 +Farmington,CA,95230 +French Camp,CA,95231 +Glencoe,CA,95232 +Linden,CA,95236 +Lockeford,CA,95237 +Lodi,CA,95240 +Lodi,CA,95242 +Mokelumne Hill,CA,95245 +Mountain Ranch,CA,95246 +Murphys,CA,95247 +San Andreas,CA,95249 +Vallecito,CA,95251 +Valley Springs,CA,95252 +West Point,CA,95255 +Wilseyville,CA,95257 +Woodbridge,CA,95258 +Atwater,CA,95301 +Ballico,CA,95303 +Catheys Valley,CA,95306 +Ceres,CA,95307 +Chinese Camp,CA,95309 +Columbia,CA,95310 +Coulterville,CA,95311 +Crows Landing,CA,95313 +Delhi,CA,95315 +Denair,CA,95316 +El Nido,CA,95317 +Escalon,CA,95320 +Groveland,CA,95321 +Gustine,CA,95322 +Hickman,CA,95323 +Hilmar,CA,95324 +Hornitos,CA,95325 +Hughson,CA,95326 +Jamestown,CA,95327 +La Grange,CA,95329 +Lathrop,CA,95330 +Le Grand,CA,95333 +Livingston,CA,95334 +Cold Springs,CA,95335 +Manteca,CA,95336 +Mariposa,CA,95338 +Red Top,CA,95340 +Midpines,CA,95345 +Mi Wuk Village,CA,95346 +Merced,CA,95348 +Modesto,CA,95350 +Modesto,CA,95351 +Modesto,CA,95354 +Modesto,CA,95355 +Modesto,CA,95356 +Newman,CA,95360 +Knights Ferry,CA,95361 +Patterson,CA,95363 +Pinecrest,CA,95364 +Ripon,CA,95366 +Riverbank,CA,95367 +Salida,CA,95368 +Snelling,CA,95369 +Sonora,CA,95370 +Soulsbyville,CA,95372 +Stevinson,CA,95374 +Tracy,CA,95376 +Tuolumne,CA,95379 +Turlock,CA,95380 +Twain Harte,CA,95383 +Waterford,CA,95386 +Winton,CA,95388 +Santa Rosa,CA,95401 +Santa Rosa,CA,95403 +Santa Rosa,CA,95404 +Santa Rosa,CA,95405 +Santa Rosa,CA,95407 +Santa Rosa,CA,95409 +Albion,CA,95410 +95411,CA,95411 +Annapolis,CA,95412 +95414,CA,95414 +Boonville,CA,95415 +Branscomb,CA,95417 +Caspar,CA,95420 +Cazadero,CA,95421 +Clearlake,CA,95422 +Clearlake Oaks,CA,95423 +Cloverdale,CA,95425 +Comptche,CA,95427 +Covelo,CA,95428 +Dos Rios,CA,95429 +Elk,CA,95432 +Forestville,CA,95436 +Fort Bragg,CA,95437 +Fulton,CA,95439 +95440,CA,95440 +Geyserville,CA,95441 +Glen Ellen,CA,95442 +Glenhaven,CA,95443 +Graton,CA,95444 +Gualala,CA,95445 +Guerneville,CA,95446 +Healdsburg,CA,95448 +Hopland,CA,95449 +Jenner,CA,95450 +Kelseyville,CA,95451 +Kenwood,CA,95452 +Lakeport,CA,95453 +Laytonville,CA,95454 +95455,CA,95455 +Littleriver,CA,95456 +Lower Lake,CA,95457 +Lucerne,CA,95458 +Manchester,CA,95459 +Mendocino,CA,95460 +Middletown,CA,95461 +Russian River Md,CA,95462 +Nice,CA,95464 +Occidental,CA,95465 +Philo,CA,95466 +95467,CA,95467 +Point Arena,CA,95468 +Potter Valley,CA,95469 +Redwood Valley,CA,95470 +Freestone,CA,95472 +Sonoma,CA,95476 +Ukiah,CA,95482 +Upper Lake,CA,95485 +Westport,CA,95488 +95489,CA,95489 +Willits,CA,95490 +Windsor,CA,95492 +Witter Springs,CA,95493 +Yorkville,CA,95494 +95495,CA,95495 +The Sea Ranch,CA,95497 +Eureka,CA,95501 +Mc Kinleyville,CA,95521 +Bayside,CA,95524 +Blue Lake,CA,95525 +Ruth,CA,95526 +Burnt Ranch,CA,95527 +Carlotta,CA,95528 +Crescent City,CA,95531 +Ferndale,CA,95536 +Fortuna,CA,95540 +Gasquet,CA,95543 +Hoopa,CA,95546 +Hydesville,CA,95547 +Klamath,CA,95548 +Kneeland,CA,95549 +Korbel,CA,95550 +Loleta,CA,95551 +Mad River,CA,95552 +Myers Flat,CA,95554 +Orick,CA,95555 +Orleans,CA,95556 +Petrolia,CA,95558 +Redway,CA,95560 +Rio Dell,CA,95562 +Salyer,CA,95563 +Samoa,CA,95564 +Scotia,CA,95565 +Smith River,CA,95567 +Somes Bar,CA,95568 +Redcrest,CA,95569 +Westhaven,CA,95570 +Willow Creek,CA,95573 +Auburn,CA,95603 +Bryte,CA,95605 +Brooks,CA,95606 +Capay,CA,95607 +Carmichael,CA,95608 +Citrus Heights,CA,95610 +Clarksburg,CA,95612 +Cool,CA,95614 +Courtland,CA,95615 +Davis,CA,95616 +El Macero,CA,95618 +Diamond Springs,CA,95619 +Liberty Farms,CA,95620 +Citrus Heights,CA,95621 +Elk Grove,CA,95624 +Elverta,CA,95626 +Esparto,CA,95627 +Fair Oaks,CA,95628 +Fiddletown,CA,95629 +El Dorado Hills,CA,95630 +Foresthill,CA,95631 +Galt,CA,95632 +Garden Valley,CA,95633 +Georgetown,CA,95634 +Greenwood,CA,95635 +Grizzly Flats,CA,95636 +Guinda,CA,95637 +Herald,CA,95638 +Ione,CA,95640 +Isleton,CA,95641 +Jackson,CA,95642 +Kelsey,CA,95643 +Knights Landing,CA,95645 +Lincoln,CA,95648 +Loomis,CA,95650 +Lotus,CA,95651 +Mcclellan Afb,CA,95652 +Madison,CA,95653 +Mather Afb,CA,95655 +Newcastle,CA,95658 +Trowbridge,CA,95659 +North Highlands,CA,95660 +Roseville,CA,95661 +Orangevale,CA,95662 +Penryn,CA,95663 +Pilot Hill,CA,95664 +Pine Grove,CA,95665 +Pioneer,CA,95666 +Placerville,CA,95667 +Pleasant Grove,CA,95668 +Plymouth,CA,95669 +Gold River,CA,95670 +Rescue,CA,95672 +Rio Linda,CA,95673 +Rio Oso,CA,95674 +Rocklin,CA,95677 +Roseville,CA,95678 +Rumsey,CA,95679 +Sheridan,CA,95681 +Cameron Park,CA,95682 +Rancho Murieta,CA,95683 +Somerset,CA,95684 +Sutter Creek,CA,95685 +Vacaville,CA,95687 +Vacaville,CA,95688 +Volcano,CA,95689 +Walnut Grove,CA,95690 +West Sacramento,CA,95691 +Wheatland,CA,95692 +Wilton,CA,95693 +Winters,CA,95694 +Woodland,CA,95695 +Zamora,CA,95698 +Alta,CA,95701 +Applegate,CA,95703 +Camino,CA,95709 +Iowa Hill,CA,95713 +Dutch Flat,CA,95714 +Emigrant Gap,CA,95715 +Gold Run,CA,95717 +Kyburz,CA,95720 +Echo Lake,CA,95721 +Meadow Vista,CA,95722 +Norden,CA,95724 +Pacific House,CA,95726 +Soda Springs,CA,95728 +Twin Bridges,CA,95735 +Rancho Cordova,CA,95742 +Elk Grove,CA,95758 +Sacramento,CA,95814 +Sacramento,CA,95815 +Sacramento,CA,95816 +Sacramento,CA,95817 +Sacramento,CA,95818 +Sacramento,CA,95819 +Sacramento,CA,95820 +Sacramento,CA,95821 +Sacramento,CA,95822 +Sacramento,CA,95823 +Sacramento,CA,95824 +Sacramento,CA,95825 +Sacramento,CA,95826 +Sacramento,CA,95827 +Sacramento,CA,95828 +Sacramento,CA,95829 +Sacramento,CA,95830 +Sacramento,CA,95831 +Sacramento,CA,95832 +Sacramento,CA,95833 +Sacramento,CA,95834 +Sacramento,CA,95835 +Sacramento,CA,95836 +Sacramento,CA,95837 +Sacramento,CA,95838 +Sacramento,CA,95841 +Sacramento,CA,95842 +Sacramento,CA,95864 +Marysville,CA,95901 +Alleghany,CA,95910 +Arbuckle,CA,95912 +Bangor,CA,95914 +Belden,CA,95915 +Berry Creek,CA,95916 +Biggs,CA,95917 +Browns Valley,CA,95918 +Brownsville,CA,95919 +Butte City,CA,95920 +Camptonville,CA,95922 +Canyondam,CA,95923 +Cohasset,CA,95926 +Chico,CA,95928 +Colusa,CA,95932 +Crescent Mills,CA,95934 +Dobbins,CA,95935 +Downieville,CA,95936 +Dunnigan,CA,95937 +Durham,CA,95938 +Elk Creek,CA,95939 +Forbestown,CA,95941 +Butte Meadows,CA,95942 +Glenn,CA,95943 +Goodyears Bar,CA,95944 +Grass Valley,CA,95945 +Penn Valley,CA,95946 +Greenville,CA,95947 +Gridley,CA,95948 +Grass Valley,CA,95949 +Live Oak,CA,95953 +Magalia,CA,95954 +Maxwell,CA,95955 +Meadow Valley,CA,95956 +Meridian,CA,95957 +Nevada City,CA,95959 +North San Juan,CA,95960 +Olivehurst,CA,95961 +Oregon House,CA,95962 +Orland,CA,95963 +Pulga,CA,95965 +Oroville,CA,95966 +Palermo,CA,95968 +Paradise,CA,95969 +Princeton,CA,95970 +Quincy,CA,95971 +Rackerby,CA,95972 +Rough And Ready,CA,95975 +Smartville,CA,95977 +Stonyford,CA,95979 +La Porte,CA,95981 +Sutter,CA,95982 +Taylorsville,CA,95983 +Twain,CA,95984 +Williams,CA,95987 +Willows,CA,95988 +Yuba City,CA,95991 +Yuba City,CA,95993 +Redding,CA,96001 +Redding,CA,96002 +Redding,CA,96003 +Adin,CA,96006 +Anderson,CA,96007 +Bella Vista,CA,96008 +Big Bar,CA,96010 +Burney,CA,96013 +Callahan,CA,96014 +Canby,CA,96015 +Cassel,CA,96016 +Shasta Lake,CA,96019 +Chester,CA,96020 +Corning,CA,96021 +Cottonwood,CA,96022 +Douglas City,CA,96024 +Dunsmuir,CA,96025 +Sawyers Bar,CA,96027 +Fall River Mills,CA,96028 +Forks Of Salmon,CA,96031 +Fort Jones,CA,96032 +French Gulch,CA,96033 +Gazelle,CA,96034 +Gerber,CA,96035 +Grenada,CA,96038 +Happy Camp,CA,96039 +Hat Creek,CA,96040 +Hayfork,CA,96041 +Hornbrook,CA,96044 +Horse Creek,CA,96045 +Igo,CA,96047 +Helena,CA,96048 +Klamath River,CA,96050 +Lakehead,CA,96051 +Lewiston,CA,96052 +Los Molinos,CA,96055 +Mcarthur,CA,96056 +Mccloud,CA,96057 +Macdoel,CA,96058 +Manton,CA,96059 +Millville,CA,96062 +Mineral,CA,96063 +Montague,CA,96064 +Montgomery Creek,CA,96065 +Mount Shasta,CA,96067 +Oak Run,CA,96069 +Old Station,CA,96071 +Palo Cedro,CA,96073 +Paynes Creek,CA,96075 +Wildwood,CA,96076 +Red Bluff,CA,96080 +Scott Bar,CA,96085 +Seiad Valley,CA,96086 +Shasta,CA,96087 +Shingletown,CA,96088 +Trinity Center,CA,96091 +Weaverville,CA,96093 +Edgewood,CA,96094 +Whitmore,CA,96096 +Yreka,CA,96097 +Alturas,CA,96101 +Cromberg,CA,96103 +Cedarville,CA,96104 +Chilcoot,CA,96105 +Clio,CA,96106 +Coleville,CA,96107 +Davis Creek,CA,96108 +Doyle,CA,96109 +Floriston,CA,96111 +Fort Bidwell,CA,96112 +Herlong,CA,96113 +Janesville,CA,96114 +Lake City,CA,96115 +Litchfield,CA,96117 +Loyalton,CA,96118 +Hope Valley,CA,96120 +Milford,CA,96121 +Portola,CA,96122 +Ravendale,CA,96123 +Calpine,CA,96124 +Sierra City,CA,96125 +Sierraville,CA,96126 +Standish,CA,96128 +Susanville,CA,96130 +Termo,CA,96132 +Topaz,CA,96133 +Tulelake,CA,96134 +Vinton,CA,96135 +Wendel,CA,96136 +Peninsula Villag,CA,96137 +Carnelian Bay,CA,96140 +Homewood,CA,96141 +Tahoma,CA,96142 +Kings Beach,CA,96143 +Tahoe City,CA,96145 +Tahoe Vista,CA,96148 +South Lake Tahoe,CA,96150 +Truckee,CA,96161 +Truckee,CA,96162 +Arvada,CO,80002 +Arvada,CO,80003 +Arvada,CO,80004 +Arvada,CO,80005 +Aurora,CO,80010 +Aurora,CO,80011 +Aurora,CO,80012 +Aurora,CO,80013 +Aurora,CO,80014 +Aurora,CO,80015 +Aurora,CO,80016 +Aurora,CO,80017 +Aurora,CO,80018 +Aurora,CO,80019 +Broomfield,CO,80020 +Westminster,CO,80021 +Commerce City,CO,80022 +Lafayette,CO,80026 +Louisville,CO,80027 +Westminster,CO,80030 +Wheat Ridge,CO,80033 +Aurora,CO,80045 +Agate,CO,80101 +Bennett,CO,80102 +Byers,CO,80103 +Castle Rock,CO,80104 +Deer Trail,CO,80105 +Elbert,CO,80106 +Elizabeth,CO,80107 +Cherry Hills Vil,CO,80110 +Cherry Hills Vil,CO,80111 +Englewood,CO,80112 +Franktown,CO,80116 +Kiowa,CO,80117 +Larkspur,CO,80118 +Littleton,CO,80120 +Greenwood Villag,CO,80121 +Littleton,CO,80122 +Bow Mar,CO,80123 +Littleton,CO,80124 +Littleton,CO,80125 +Highlands Ranch,CO,80126 +Littleton,CO,80127 +Monument,CO,80132 +Palmer Lake,CO,80133 +Parker,CO,80134 +Deckers,CO,80135 +Strasburg,CO,80136 +Watkins,CO,80137 +Denver,CO,80202 +Denver,CO,80203 +Denver,CO,80204 +Denver,CO,80205 +Denver,CO,80206 +Denver,CO,80207 +Denver,CO,80209 +Denver,CO,80210 +Denver,CO,80211 +Mountain View,CO,80212 +Edgewater,CO,80214 +Lakewood,CO,80215 +Denver,CO,80216 +Denver,CO,80218 +Denver,CO,80219 +Denver,CO,80220 +Federal Heights,CO,80221 +Glendale,CO,80222 +Denver,CO,80223 +Denver,CO,80224 +Lakewood,CO,80226 +Denver,CO,80227 +Lakewood,CO,80228 +Thornton,CO,80229 +Denver,CO,80231 +Lakewood,CO,80232 +Northglenn,CO,80233 +Northglenn,CO,80234 +Denver,CO,80235 +Denver,CO,80236 +Denver,CO,80237 +Denver,CO,80239 +Northglenn,CO,80241 +Denver,CO,80249 +Boulder,CO,80301 +Boulder,CO,80302 +Boulder,CO,80303 +Boulder,CO,80304 +Golden,CO,80401 +Golden,CO,80403 +Bailey,CO,80421 +Black Hawk,CO,80422 +Bond,CO,80423 +Clark,CO,80428 +Climax,CO,80429 +Coalmont,CO,80430 +Conifer,CO,80433 +Keystone,CO,80435 +Evergreen,CO,80439 +Fairplay,CO,80440 +Foxton,CO,80441 +Granby,CO,80446 +Grand Lake,CO,80447 +Idaho Springs,CO,80452 +Jamestown,CO,80455 +Jefferson,CO,80456 +Kremmling,CO,80459 +Leadville,CO,80461 +Mc Coy,CO,80463 +Morrison,CO,80465 +Nederland,CO,80466 +Oak Creek,CO,80467 +Parshall,CO,80468 +Pine,CO,80470 +Pinecliffe,CO,80471 +Rollinsville,CO,80474 +Toponas,CO,80479 +Walden,CO,80480 +Ward,CO,80481 +Steamboat Spring,CO,80487 +Longmont,CO,80501 +Longmont,CO,80503 +Longmont,CO,80504 +Allenspark,CO,80510 +Bellvue,CO,80512 +Berthoud,CO,80513 +Dacono,CO,80514 +Drake,CO,80515 +Erie,CO,80516 +Estes Park,CO,80517 +Fort Collins,CO,80521 +Fort Collins,CO,80524 +Fort Collins,CO,80525 +Fort Collins,CO,80526 +Johnstown,CO,80534 +Laporte,CO,80535 +Virginia Dale,CO,80536 +Loveland,CO,80537 +Loveland,CO,80538 +Lyons,CO,80540 +Milliken,CO,80543 +Red Feather Lake,CO,80545 +Wellington,CO,80549 +Windsor,CO,80550 +Lochbui,CO,80601 +Ault,CO,80610 +Briggsdale,CO,80611 +Carr,CO,80612 +Eaton,CO,80615 +Evans,CO,80620 +Wattenburg,CO,80621 +Galeton,CO,80622 +Gill,CO,80624 +Garden City,CO,80631 +Greeley,CO,80634 +Henderson,CO,80640 +Hudson,CO,80642 +Keenesburg,CO,80643 +Kersey,CO,80644 +La Salle,CO,80645 +Nunn,CO,80648 +Orchard,CO,80649 +Pierce,CO,80650 +Platteville,CO,80651 +Roggen,CO,80652 +Weldona,CO,80653 +Hoyt,CO,80654 +Fort Morgan,CO,80701 +Akron,CO,80720 +Amherst,CO,80721 +Atwood,CO,80722 +Brush,CO,80723 +Crook,CO,80726 +Eckley,CO,80727 +Fleming,CO,80728 +Grover,CO,80729 +Haxtun,CO,80731 +Hillrose,CO,80733 +Holyoke,CO,80734 +Hale,CO,80735 +Iliff,CO,80736 +Julesburg,CO,80737 +Lindon,CO,80740 +Willard,CO,80741 +New Raymer,CO,80742 +Otis,CO,80743 +Ovid,CO,80744 +Padroni,CO,80745 +Peetz,CO,80747 +Sedgwick,CO,80749 +Snyder,CO,80750 +Sterling,CO,80751 +Stoneham,CO,80754 +Vernon,CO,80755 +Last Chance,CO,80757 +Laird,CO,80758 +Yuma,CO,80759 +Anton,CO,80801 +Arapahoe,CO,80802 +Arriba,CO,80804 +Bethune,CO,80805 +Burlington,CO,80807 +Calhan,CO,80808 +North Pole,CO,80809 +Cheyenne Wells,CO,80810 +Cope,CO,80812 +Divide,CO,80814 +Flagler,CO,80815 +Florissant,CO,80816 +Fountain,CO,80817 +Genoa,CO,80818 +Guffey,CO,80820 +Hugo,CO,80821 +Joes,CO,80822 +Karval,CO,80823 +Kirk,CO,80824 +Kit Carson,CO,80825 +Lake George,CO,80827 +Limon,CO,80828 +Manitou Springs,CO,80829 +Matheson,CO,80830 +Peyton,CO,80831 +Ramah,CO,80832 +Rush,CO,80833 +Seibert,CO,80834 +Simla,CO,80835 +Stratton,CO,80836 +United States Ai,CO,80840 +Vona,CO,80861 +Woodland Park,CO,80863 +Yoder,CO,80864 +Colorado Springs,CO,80903 +Colorado Springs,CO,80904 +Colorado Springs,CO,80905 +Colorado Springs,CO,80906 +Colorado Springs,CO,80907 +Colorado Springs,CO,80908 +Colorado Springs,CO,80909 +Colorado Springs,CO,80910 +Colorado Springs,CO,80911 +Fort Carson,CO,80913 +Cheyenne Mtn Afb,CO,80914 +Colorado Springs,CO,80915 +Colorado Springs,CO,80916 +Colorado Springs,CO,80917 +Colorado Springs,CO,80918 +Colorado Springs,CO,80919 +Colorado Springs,CO,80920 +Colorado Springs,CO,80921 +Colorado Springs,CO,80922 +Colorado Springs,CO,80925 +Colorado Springs,CO,80926 +Colorado Springs,CO,80928 +Colorado Springs,CO,80929 +Colorado Springs,CO,80930 +Pueblo,CO,81001 +Pueblo,CO,81003 +Pueblo,CO,81004 +Pueblo,CO,81005 +Pueblo,CO,81006 +Pueblo West,CO,81007 +Pueblo,CO,81008 +Aguilar,CO,81020 +Arlington,CO,81021 +North Avondale,CO,81022 +Beulah,CO,81023 +Boone,CO,81025 +Brandon,CO,81026 +Branson,CO,81027 +Bristol,CO,81028 +Campo,CO,81029 +Chivington,CO,81036 +Fowler,CO,81039 +Farisita,CO,81040 +Granada,CO,81041 +Hartman,CO,81043 +Caddoa,CO,81044 +Haswell,CO,81045 +Holly,CO,81047 +Villegreen,CO,81049 +Timpas,CO,81050 +Lamar,CO,81052 +Deora,CO,81054 +Cuchara,CO,81055 +Mc Clave,CO,81057 +Manzanola,CO,81058 +Delhi,CO,81059 +Olney Springs,CO,81062 +Ordway,CO,81063 +Utleyville,CO,81064 +Rocky Ford,CO,81067 +Rye,CO,81069 +Towner,CO,81071 +Springfield,CO,81073 +Sugar City,CO,81076 +81080,CO,81080 +Trinchera,CO,81081 +Jansen,CO,81082 +Lycan,CO,81084 +Vilas,CO,81087 +Farista,CO,81089 +Walsh,CO,81090 +Weston,CO,81091 +Wiley,CO,81092 +Alamosa,CO,81101 +Antonito,CO,81120 +Arboles,CO,81121 +Bayfield,CO,81122 +Blanca,CO,81123 +Center,CO,81125 +Creede,CO,81130 +La Garita,CO,81132 +Fort Garland,CO,81133 +Hooper,CO,81136 +Ignacio,CO,81137 +La Jara,CO,81140 +Moffat,CO,81143 +Monte Vista,CO,81144 +Mosca,CO,81146 +Pagosa Springs,CO,81147 +Saguache,CO,81149 +San Acacio,CO,81150 +Sanford,CO,81151 +Mesita,CO,81152 +San Pablo,CO,81153 +South Fork,CO,81154 +Villa Grove,CO,81155 +Salida,CO,81201 +Almont,CO,81210 +Buena Vista,CO,81211 +Canon City,CO,81212 +Cimarron,CO,81220 +Crested Butte,CO,81224 +Florence,CO,81226 +Granite,CO,81228 +Gunnison,CO,81230 +Howard,CO,81233 +Lake City,CO,81235 +Nathrop,CO,81236 +Parlin,CO,81239 +Penrose,CO,81240 +Pitkin,CO,81241 +Powderhorn,CO,81243 +81250,CO,81250 +Twin Lakes,CO,81251 +Westcliffe,CO,81252 +Wetmore,CO,81253 +Durango,CO,81301 +Cahone,CO,81320 +Cortez,CO,81321 +Dolores,CO,81323 +Dove Creek,CO,81324 +Egnar,CO,81325 +Hesperus,CO,81326 +Lewis,CO,81327 +Mancos,CO,81328 +Pleasant View,CO,81331 +Towaoc,CO,81334 +Yellow Jacket,CO,81335 +Montrose,CO,81401 +Austin,CO,81410 +Bedrock,CO,81411 +Cedaredge,CO,81413 +Crawford,CO,81415 +Delta,CO,81416 +Eckert,CO,81418 +Hotchkiss,CO,81419 +Naturita,CO,81422 +Norwood,CO,81423 +Nucla,CO,81424 +Olathe,CO,81425 +Ophir,CO,81426 +Ouray,CO,81427 +Paonia,CO,81428 +Placerville,CO,81430 +Redvale,CO,81431 +Ridgway,CO,81432 +Silverton,CO,81433 +Somerset,CO,81434 +Telluride,CO,81435 +Grand Junction,CO,81501 +Grand Junction,CO,81503 +Fruitvale,CO,81504 +Grand Junction,CO,81505 +Grand Junction,CO,81506 +Clifton,CO,81520 +Fruita,CO,81521 +Gateway,CO,81522 +Loma,CO,81524 +Mack,CO,81525 +Palisade,CO,81526 +Whitewater,CO,81527 +Glenwood Springs,CO,81601 +Dinosaur,CO,81610 +Aspen,CO,81611 +Basalt,CO,81621 +Marble,CO,81623 +Collbran,CO,81624 +Craig,CO,81625 +De Beque,CO,81630 +Eagle,CO,81631 +Elk Springs,CO,81633 +Battlement Mesa,CO,81635 +Gypsum,CO,81637 +Hamilton,CO,81638 +Hayden,CO,81639 +Maybell,CO,81640 +Meeker,CO,81641 +Meredith,CO,81642 +Mesa,CO,81643 +New Castle,CO,81647 +Rangely,CO,81648 +Rifle,CO,81650 +Silt,CO,81652 +Slater,CO,81653 +Snowmass,CO,81654 +Vail,CO,81657 +Avon,CT,6001 +Bloomfield,CT,6002 +Bristol,CT,6010 +Burlington,CT,6013 +Windsorville,CT,6016 +Canaan,CT,6018 +Canton,CT,6019 +Canton Center,CT,6020 +Colebrook,CT,6021 +Collinsville,CT,6022 +East Berlin,CT,6023 +East Canaan,CT,6024 +East Granby,CT,6026 +East Hartland,CT,6027 +Ellington,CT,6029 +Falls Village,CT,6031 +Farmington,CT,6032 +Glastonbury,CT,6033 +Granby,CT,6035 +Berlin,CT,6037 +Lakeville,CT,6039 +Manchester,CT,6040 +Bolton,CT,6043 +New Britain,CT,6051 +New Britain,CT,6052 +New Britain,CT,6053 +New Hartford,CT,6057 +Norfolk,CT,6058 +North Canton,CT,6059 +North Granby,CT,6060 +Plainville,CT,6062 +Pleasant Valley,CT,6063 +Riverton,CT,6065 +Vernon Rockville,CT,6066 +Rocky Hill,CT,6067 +Salisbury,CT,6068 +Sharon,CT,6069 +Simsbury,CT,6070 +Somers,CT,6071 +South Glastonbur,CT,6073 +South Windsor,CT,6074 +Stafford Springs,CT,6076 +Suffield,CT,6078 +Tariffville,CT,6081 +Enfield,CT,6082 +Tolland,CT,6084 +Unionville,CT,6085 +East Windsor,CT,6088 +Weatogue,CT,6089 +West Granby,CT,6090 +West Simsbury,CT,6092 +West Suffield,CT,6093 +Windsor,CT,6095 +Windsor Locks,CT,6096 +Winsted,CT,6098 +Hartford,CT,6103 +Hartford,CT,6105 +Hartford,CT,6106 +W Hartford,CT,6107 +East Hartford,CT,6108 +Wethersfield,CT,6109 +W Hartford,CT,6110 +Maple Hill,CT,6111 +Hartford,CT,6112 +Hartford,CT,6114 +W Hartford,CT,6117 +East Hartford,CT,6118 +W Hartford,CT,6119 +Hartford,CT,6120 +Willimantic,CT,6226 +Amston,CT,6231 +Andover,CT,6232 +Brooklyn,CT,6234 +Chaplin,CT,6235 +Columbia,CT,6237 +Coventry,CT,6238 +Danielson,CT,6239 +Dayville,CT,6241 +Eastford,CT,6242 +East Killingly,CT,6243 +Hampton,CT,6247 +Hebron,CT,6248 +Lebanon,CT,6249 +Mansfield Center,CT,6250 +North Franklin,CT,6254 +North Grosvenord,CT,6255 +North Windham,CT,6256 +Pomfret Center,CT,6259 +Putnam,CT,6260 +Quinebaug,CT,6262 +Scotland,CT,6264 +South Windham,CT,6266 +Storrs Mansfield,CT,6268 +Thompson,CT,6277 +Warrenville,CT,6278 +West Willington,CT,6279 +Windham,CT,6280 +Woodstock,CT,6281 +Woodstock Valley,CT,6282 +New London,CT,6320 +Baltic,CT,6330 +Canterbury,CT,6331 +East Lyme,CT,6333 +Bozrah,CT,6334 +Gales Ferry,CT,6335 +Gilman,CT,6336 +Ledyard,CT,6339 +Groton,CT,6340 +Groton,CT,6349 +Jewett City,CT,6351 +Montville,CT,6353 +Moosup,CT,6354 +Mystic,CT,6355 +Niantic,CT,6357 +North Stonington,CT,6359 +Norwich,CT,6360 +Preston,CT,6365 +Oakdale,CT,6370 +Old Lyme,CT,6371 +Plainfield,CT,6374 +Quaker Hill,CT,6375 +Sterling,CT,6377 +Stonington,CT,6378 +Pawcatuck,CT,6379 +Taftville,CT,6380 +Uncasville,CT,6382 +Voluntown,CT,6384 +Waterford,CT,6385 +Ansonia,CT,6401 +Beacon Falls,CT,6403 +Branford,CT,6405 +Centerbrook,CT,6409 +Cheshire,CT,6410 +Chester,CT,6412 +Clinton,CT,6413 +Colchester,CT,6415 +Cromwell,CT,6416 +Deep River,CT,6417 +Derby,CT,6418 +Killingworth,CT,6419 +Salem,CT,6420 +Durham,CT,6422 +East Haddam,CT,6423 +East Hampton,CT,6424 +Essex,CT,6426 +Fairfield,CT,6430 +Fairfield,CT,6432 +Guilford,CT,6437 +Haddam,CT,6438 +Higganum,CT,6441 +Ivoryton,CT,6442 +Madison,CT,6443 +Marlborough,CT,6447 +Meriden,CT,6450 +Middlefield,CT,6455 +Middletown,CT,6457 +Milford,CT,6460 +Monroe,CT,6468 +Moodus,CT,6469 +Newtown,CT,6470 +North Branford,CT,6471 +Northford,CT,6472 +North Haven,CT,6473 +Old Saybrook,CT,6475 +Orange,CT,6477 +Oxford,CT,6478 +Plantsville,CT,6479 +Portland,CT,6480 +Rockfall,CT,6481 +Sandy Hook,CT,6482 +Seymour,CT,6483 +Shelton,CT,6484 +Southbury,CT,6488 +Southington,CT,6489 +Southport,CT,6490 +Wallingford,CT,6492 +Stratford,CT,6497 +Westbrook,CT,6498 +New Haven,CT,6510 +New Haven,CT,6511 +East Haven,CT,6512 +East Haven,CT,6513 +Hamden,CT,6514 +New Haven,CT,6515 +West Haven,CT,6516 +Hamden,CT,6517 +Hamden,CT,6518 +New Haven,CT,6519 +Bethany,CT,6524 +Woodbridge,CT,6525 +Bridgeport,CT,6604 +Bridgeport,CT,6605 +Bridgeport,CT,6606 +Bridgeport,CT,6607 +Bridgeport,CT,6608 +Bridgeport,CT,6610 +Trumbull,CT,6611 +Easton,CT,6612 +Waterbury,CT,6702 +Waterbury,CT,6704 +Waterbury,CT,6705 +Waterbury,CT,6706 +Waterbury,CT,6708 +Waterbury,CT,6710 +Prospect,CT,6712 +Wolcott,CT,6716 +Bantam,CT,6750 +Bethlehem,CT,6751 +Bridgewater,CT,6752 +Warren,CT,6754 +Gaylordsville,CT,6755 +Goshen,CT,6756 +Kent,CT,6757 +Lakeside,CT,6758 +Litchfield,CT,6759 +Middlebury,CT,6762 +Morris,CT,6763 +Naugatuck,CT,6770 +New Milford,CT,6776 +New Preston Marb,CT,6777 +Northfield,CT,6778 +Oakville,CT,6779 +Plymouth,CT,6782 +Roxbury,CT,6783 +Sherman,CT,6784 +South Kent,CT,6785 +Terryville,CT,6786 +Thomaston,CT,6787 +Torrington,CT,6790 +Harwinton,CT,6791 +Washington Depot,CT,6793 +Washington Depot,CT,6794 +Watertown,CT,6795 +West Cornwall,CT,6796 +Woodbury,CT,6798 +Bethel,CT,6801 +Brookfield,CT,6804 +Cos Cob,CT,6807 +Danbury,CT,6810 +Danbury,CT,6811 +New Fairfield,CT,6812 +Darien,CT,6820 +Byram,CT,6830 +Greenwich,CT,6831 +New Canaan,CT,6840 +Norwalk,CT,6850 +Norwalk,CT,6851 +Norwalk,CT,6853 +Norwalk,CT,6854 +Norwalk,CT,6855 +Old Greenwich,CT,6870 +Ridgefield,CT,6877 +Riverside,CT,6878 +Westport,CT,6880 +Weston,CT,6883 +West Redding,CT,6896 +Wilton,CT,6897 +Stamford,CT,6901 +Stamford,CT,6902 +Stamford,CT,6903 +Ridgeway,CT,6905 +Stamford,CT,6906 +Stamford,CT,6907 +Bear,DE,19701 +Newark,DE,19702 +Claymont,DE,19703 +Hockessin,DE,19707 +Middletown,DE,19709 +Newark,DE,19711 +Newark,DE,19713 +Manor,DE,19720 +Townsend,DE,19734 +Wilmington,DE,19801 +Wilmington,DE,19802 +Talleyville,DE,19803 +Newport,DE,19804 +Wilmington,DE,19805 +Wilmington,DE,19806 +Greenville,DE,19807 +Marshallton,DE,19808 +Edgemoor,DE,19809 +Edgemoor,DE,19810 +Dover,DE,19901 +Dover Afb,DE,19902 +Bethany Beach,DE,19930 +Bethel,DE,19931 +Bridgeville,DE,19933 +Camden Wyoming,DE,19934 +Clayton,DE,19938 +Dagsboro,DE,19939 +Delmar,DE,19940 +Ellendale,DE,19941 +Felton,DE,19943 +Frankford,DE,19945 +Frederica,DE,19946 +Georgetown,DE,19947 +Greenwood,DE,19950 +Harbeson,DE,19951 +Harrington,DE,19952 +Hartly,DE,19953 +Houston,DE,19954 +Laurel,DE,19956 +Lewes,DE,19958 +Lincoln,DE,19960 +Magnolia,DE,19962 +Milford,DE,19963 +Marydel,DE,19964 +Long Neck,DE,19966 +Millville,DE,19967 +Milton,DE,19968 +Millville,DE,19970 +Dewey Beach,DE,19971 +Seaford,DE,19973 +Selbyville,DE,19975 +Smyrna,DE,19977 +Viola,DE,19979 +Washington,DC,20001 +Washington,DC,20002 +Washington,DC,20003 +Washington,DC,20004 +Washington,DC,20005 +Washington,DC,20006 +Washington,DC,20007 +Washington,DC,20008 +Washington,DC,20009 +Washington,DC,20010 +Washington,DC,20011 +Washington,DC,20012 +Washington,DC,20015 +Washington,DC,20016 +Washington,DC,20017 +Washington,DC,20018 +Washington,DC,20019 +Washington,DC,20020 +Washington,DC,20024 +Washington,DC,20032 +Washington,DC,20036 +Washington,DC,20037 +Pentagon,DC,20301 +Washington,DC,20336 +Branford,FL,32008 +Bryceville,FL,32009 +Callahan,FL,32011 +Day,FL,32013 +Elkton,FL,32033 +Amelia Island,FL,32034 +Fort White,FL,32038 +Glen Saint Mary,FL,32040 +Green Cove Sprin,FL,32043 +Hampton,FL,32044 +Hilliard,FL,32046 +Jasper,FL,32052 +Jennings,FL,32053 +Lake Butler,FL,32054 +Lake City,FL,32055 +Lawtey,FL,32058 +Lee,FL,32059 +Boys Ranch,FL,32060 +Lulu,FL,32061 +Mc Alpin,FL,32062 +Macclenny,FL,32063 +Orange Park,FL,32065 +Mayo,FL,32066 +Middleburg,FL,32068 +O Brien,FL,32071 +Orange Park,FL,32073 +Ponte Vedra Beac,FL,32082 +Raiford,FL,32083 +Saint Augustine,FL,32084 +Saint Augustine,FL,32086 +Sanderson,FL,32087 +Starke,FL,32091 +Saint Augustine,FL,32092 +Wellborn,FL,32094 +Saint Augustine,FL,32095 +White Springs,FL,32096 +Yulee,FL,32097 +Astor,FL,32102 +Bunnell,FL,32110 +Crescent City,FL,32112 +Citra,FL,32113 +Daytona Beach,FL,32114 +Holly Hill,FL,32117 +Daytona Beach,FL,32118 +Dunlawton,FL,32119 +Port Orange,FL,32124 +Port Orange,FL,32127 +De Leon Springs,FL,32130 +East Palatka,FL,32131 +Edgewater,FL,32132 +Salt Springs,FL,32134 +Flagler Beach,FL,32136 +Palm Coast,FL,32137 +Georgetown,FL,32139 +Florahome,FL,32140 +Edgewater,FL,32141 +Hastings,FL,32145 +Interlachen,FL,32148 +Lady Lake,FL,32159 +New Smyrna Beach,FL,32168 +New Smyrna Beach,FL,32169 +Ormond Beach,FL,32174 +Ormond Beach,FL,32176 +Palatka,FL,32177 +Ocklawaha,FL,32179 +Pierson,FL,32180 +Pomona Park,FL,32181 +San Mateo,FL,32187 +Satsuma,FL,32189 +Seville,FL,32190 +Weirsdale,FL,32195 +Jacksonville,FL,32202 +Jacksonville,FL,32204 +Jacksonville,FL,32205 +Jacksonville,FL,32206 +Jacksonville,FL,32207 +Jacksonville,FL,32208 +Jacksonville,FL,32209 +Jacksonville,FL,32210 +Jacksonville,FL,32211 +Jacksonville N A,FL,32212 +Cecil Field Nas,FL,32215 +Jacksonville,FL,32216 +Jacksonville,FL,32217 +Jacksonville,FL,32218 +Jacksonville,FL,32219 +Jacksonville,FL,32220 +Jacksonville,FL,32221 +Jacksonville,FL,32222 +Jacksonville,FL,32223 +Jacksonville,FL,32224 +Jacksonville,FL,32225 +Jacksonville,FL,32226 +Jacksonville Bea,FL,32227 +Atlantic Beach,FL,32233 +Baldwin,FL,32234 +Jacksonville,FL,32244 +Jacksonville Bea,FL,32250 +Jacksonville,FL,32256 +Jacksonville,FL,32257 +Jacksonville,FL,32258 +Jacksonville,FL,32259 +Neptune Beach,FL,32266 +Tallahassee,FL,32301 +Tallahassee,FL,32303 +Tallahassee,FL,32304 +Tallahassee,FL,32306 +Tallahassee,FL,32308 +Tallahassee,FL,32310 +Tallahassee,FL,32311 +Tallahassee,FL,32312 +Apalachicola,FL,32320 +Bristol,FL,32321 +Carrabelle,FL,32322 +Chattahoochee,FL,32324 +Crawfordville,FL,32327 +Saint George Isl,FL,32328 +Greenville,FL,32331 +Havana,FL,32333 +Hosford,FL,32334 +Lamont,FL,32336 +Madison,FL,32340 +Monticello,FL,32344 +Panacea,FL,32346 +Perry,FL,32347 +Pinetta,FL,32350 +Quincy,FL,32351 +Salem,FL,32356 +Sopchoppy,FL,32358 +Steinhatchee,FL,32359 +Panama City,FL,32401 +Panama City,FL,32403 +Panama City,FL,32404 +Panama City,FL,32405 +Panama City Beac,FL,32407 +Panama City Beac,FL,32408 +Southport,FL,32409 +Panama City Beac,FL,32413 +Alford,FL,32420 +Altha,FL,32421 +Bascom,FL,32423 +Blountstown,FL,32424 +Bonifay,FL,32425 +Campbellton,FL,32426 +Caryville,FL,32427 +Chipley,FL,32428 +Clarksville,FL,32430 +Cottondale,FL,32431 +De Funiak Spring,FL,32433 +Ebro,FL,32437 +Fountain,FL,32438 +Freeport,FL,32439 +Graceville,FL,32440 +Grand Ridge,FL,32442 +Greenwood,FL,32443 +Lynn Haven,FL,32444 +Malone,FL,32445 +Marianna,FL,32446 +Kinard,FL,32449 +Ponce De Leon,FL,32455 +Port Saint Joe,FL,32456 +Santa Rosa Beach,FL,32459 +Sneads,FL,32460 +Vernon,FL,32462 +Westville,FL,32464 +Wewahitchka,FL,32465 +Youngstown,FL,32466 +Pensacola,FL,32501 +Pensacola,FL,32503 +Pensacola,FL,32504 +Pensacola,FL,32505 +Pensacola,FL,32506 +Pensacola,FL,32507 +Pensacola,FL,32508 +Pensacola,FL,32514 +Pensacola,FL,32526 +Baker,FL,32531 +Cantonment,FL,32533 +Pensacola,FL,32534 +Century,FL,32535 +Crestview,FL,32536 +Sandestin,FL,32541 +Eglin A F B,FL,32542 +Fort Walton Beac,FL,32547 +Fort Walton Beac,FL,32548 +Gulf Breeze,FL,32561 +Holt,FL,32564 +Jay,FL,32565 +Navarre,FL,32566 +Laurel Hill,FL,32567 +Walnut Hill,FL,32568 +Mary Esther,FL,32569 +Milton,FL,32570 +Pace,FL,32571 +Niceville,FL,32578 +Shalimar,FL,32579 +Valparaiso,FL,32580 +Milton,FL,32583 +Gainesville,FL,32601 +Gainesville,FL,32603 +Gainesville,FL,32605 +Gainesville,FL,32606 +Gainesville,FL,32607 +Gainesville,FL,32608 +Gainesville,FL,32609 +Gainesville,FL,32611 +Santa Fe,FL,32615 +Anthony,FL,32617 +Archer,FL,32618 +Bell,FL,32619 +32620,FL,32620 +Bronson,FL,32621 +Brooker,FL,32622 +Cedar Key,FL,32625 +Chiefland,FL,32626 +32629,FL,32629 +32630,FL,32630 +Earleton,FL,32631 +32636,FL,32636 +Hawthorne,FL,32640 +32642,FL,32642 +High Springs,FL,32643 +32646,FL,32646 +Horseshoe Beach,FL,32648 +32649,FL,32649 +32650,FL,32650 +32652,FL,32652 +Keystone Heights,FL,32656 +32661,FL,32661 +32665,FL,32665 +Melrose,FL,32666 +Micanopy,FL,32667 +Morriston,FL,32668 +Newberry,FL,32669 +32670,FL,32670 +32671,FL,32671 +32672,FL,32672 +32673,FL,32673 +32674,FL,32674 +32675,FL,32675 +32676,FL,32676 +Old Town,FL,32680 +32684,FL,32684 +Reddick,FL,32686 +32688,FL,32688 +32691,FL,32691 +Trenton,FL,32693 +Waldo,FL,32694 +Williston,FL,32696 +32698,FL,32698 +Altamonte Spring,FL,32701 +Altoona,FL,32702 +Hunt Club,FL,32703 +Casselberry,FL,32707 +Winter Springs,FL,32708 +Christmas,FL,32709 +Apopka,FL,32712 +Debary,FL,32713 +Forest City,FL,32714 +Deland,FL,32720 +Deland,FL,32724 +Deltona,FL,32725 +Eustis,FL,32726 +Fern Park,FL,32730 +Geneva,FL,32732 +Grand Island,FL,32735 +Deltona,FL,32738 +Lake Helen,FL,32744 +Heathrow,FL,32746 +Longwood,FL,32750 +Eatonville,FL,32751 +Mims,FL,32754 +Mount Dora,FL,32757 +Oak Hill,FL,32759 +Orange City,FL,32763 +Osteen,FL,32764 +Oviedo,FL,32765 +Chuluota,FL,32766 +Paisley,FL,32767 +Sanford,FL,32771 +Sanford,FL,32773 +Sorrento,FL,32776 +Tavares,FL,32778 +Springs Plaza,FL,32779 +Titusville,FL,32780 +Dona Vista,FL,32784 +Winter Park,FL,32789 +Aloma,FL,32792 +Titusville,FL,32796 +Zellwood,FL,32798 +Orlando,FL,32801 +Orlando,FL,32803 +Fairvilla,FL,32804 +Orlando,FL,32805 +Orlando,FL,32806 +Azalea Park,FL,32807 +Pine Hills,FL,32808 +Pine Castle,FL,32809 +Lockhart,FL,32810 +Orlo Vista,FL,32811 +Orlando,FL,32812 +Naval Training C,FL,32813 +Kennedy Space Ce,FL,32815 +Union Park,FL,32817 +Orlando,FL,32818 +Sand Lake,FL,32819 +Union Park,FL,32820 +Orlando,FL,32821 +Ventura,FL,32822 +Orlando,FL,32824 +Orlando,FL,32825 +Orlando,FL,32826 +Orlando,FL,32827 +Orlando,FL,32828 +Orlando,FL,32829 +Lake Buena Vista,FL,32830 +Orlando,FL,32831 +Orlando,FL,32832 +Union Park,FL,32833 +Orlando,FL,32835 +Orlando,FL,32836 +Orlando,FL,32837 +Orlando,FL,32839 +Melbourne,FL,32901 +Indialantic,FL,32903 +Melbourne Villag,FL,32904 +Palm Bay,FL,32905 +Palm Bay,FL,32907 +Palm Bay,FL,32908 +Palm Bay,FL,32909 +Cape Canaveral,FL,32920 +Cocoa,FL,32922 +Patrick A F B,FL,32925 +Cocoa,FL,32926 +Port Saint John,FL,32927 +Cocoa Beach,FL,32931 +Eau Gallie,FL,32934 +Melbourne,FL,32935 +Indian Harbor Be,FL,32937 +Melbourne,FL,32940 +Fellsmere,FL,32948 +Melbourne Beach,FL,32951 +Merritt Island,FL,32952 +Merritt Island,FL,32953 +Rockledge,FL,32955 +Sebastian,FL,32958 +Vero Beach,FL,32960 +Vero Beach,FL,32962 +Indian River Sho,FL,32963 +Vero Beach,FL,32966 +Vero Beach,FL,32967 +Vero Beach,FL,32968 +Barefoot Bay,FL,32976 +Dania,FL,33004 +Hallandale,FL,33009 +Hialeah,FL,33010 +Hialeah,FL,33012 +Hialeah,FL,33013 +Hialeah,FL,33014 +Hialeah,FL,33015 +Hialeah,FL,33016 +Hollywood,FL,33019 +Hollywood,FL,33020 +Hollywood,FL,33021 +Miramar,FL,33023 +Pembroke Pines,FL,33024 +Hollywood,FL,33025 +Hollywood,FL,33026 +Hollywood,FL,33027 +Hollywood,FL,33028 +Pembroke Pines,FL,33029 +Homestead,FL,33030 +Homestead,FL,33031 +Princeton,FL,33032 +Homestead,FL,33033 +Florida City,FL,33034 +Homestead,FL,33035 +Islamorada,FL,33036 +Ocean Reef,FL,33037 +Homestead Air Fo,FL,33039 +Naval Air Statio,FL,33040 +Summerland Key,FL,33042 +Big Pine Key,FL,33043 +Marathon,FL,33050 +Opa Locka,FL,33054 +Carol City,FL,33055 +Carol City,FL,33056 +Pompano Beach,FL,33060 +Pompano Beach,FL,33062 +Margate,FL,33063 +Lighthouse Point,FL,33064 +Coral Springs,FL,33065 +Margate,FL,33066 +North Coral Spri,FL,33067 +Pompano Beach,FL,33068 +Pompano Beach,FL,33069 +Tavernier,FL,33070 +Pompano Beach,FL,33071 +Pompano Beach,FL,33073 +Pompano Beach,FL,33076 +Miami,FL,33122 +Miami,FL,33125 +Miami,FL,33126 +Miami,FL,33127 +Miami,FL,33128 +Miami,FL,33129 +Miami,FL,33130 +Miami,FL,33131 +Miami,FL,33132 +Coral Gables,FL,33133 +Coral Gables,FL,33134 +Miami,FL,33135 +Miami,FL,33136 +Miami,FL,33137 +Miami Shores,FL,33138 +Carl Fisher,FL,33139 +Miami,FL,33140 +North Bay Villag,FL,33141 +Miami,FL,33142 +South Miami,FL,33143 +Miami,FL,33144 +Coral Gables,FL,33145 +Coral Gables,FL,33146 +Miami,FL,33147 +Key Biscayne,FL,33149 +Miami,FL,33150 +Bal Harbour,FL,33154 +Miami,FL,33155 +Kendall,FL,33156 +Perrine,FL,33157 +Miami,FL,33158 +North Miami Beac,FL,33160 +North Miami,FL,33161 +North Miami Beac,FL,33162 +Olympia Heights,FL,33165 +Miami Springs,FL,33166 +Miami,FL,33167 +Miami,FL,33168 +Miami,FL,33169 +Quail Heights,FL,33170 +Miami,FL,33172 +Miami,FL,33173 +Miami,FL,33174 +Olympia Heights,FL,33175 +Miami,FL,33176 +Quail Heights,FL,33177 +Miami,FL,33178 +Miami,FL,33179 +Ojus,FL,33180 +North Miami Beac,FL,33181 +Miami,FL,33182 +Miami,FL,33183 +Miami,FL,33184 +Olympia Heights,FL,33185 +Miami,FL,33186 +Quail Heights,FL,33187 +Quail Heights,FL,33189 +Quail Heights,FL,33190 +Miami,FL,33193 +Miami,FL,33196 +Fort Lauderdale,FL,33301 +Oakland Park,FL,33304 +Oakland Park,FL,33305 +Oakland Park,FL,33306 +Oakland Park,FL,33308 +Fort Lauderdale,FL,33309 +Fort Lauderdale,FL,33311 +Fort Lauderdale,FL,33312 +City Of Sunrise,FL,33313 +Davie,FL,33314 +Fort Lauderdale,FL,33315 +Fort Lauderdale,FL,33316 +Plantation,FL,33317 +Tamarac,FL,33319 +Tamarac,FL,33321 +Sunrise,FL,33322 +Sunrise,FL,33323 +Plantation,FL,33324 +Davie,FL,33325 +Davie,FL,33326 +Fort Lauderdale,FL,33327 +Davie,FL,33328 +Davie,FL,33330 +Davie,FL,33331 +Davie,FL,33332 +Oakland Park,FL,33334 +Tamarac,FL,33351 +Fort Lauderdale,FL,33388 +West Palm Beach,FL,33401 +Lake Park,FL,33403 +Riviera Beach,FL,33404 +West Palm Beach,FL,33405 +Glen Ridge,FL,33406 +West Palm Beach,FL,33407 +North Palm Beach,FL,33408 +Haverhill,FL,33409 +Palm Beach Garde,FL,33410 +Royal Palm Beach,FL,33411 +West Palm Beach,FL,33412 +West Palm Beach,FL,33413 +West Palm Beach,FL,33414 +Haverhill,FL,33415 +Haverhill,FL,33417 +Palm Beach Garde,FL,33418 +Boynton Beach,FL,33426 +Boca Raton,FL,33428 +Belle Glade,FL,33430 +Boca Raton,FL,33431 +Boca Raton,FL,33432 +Boca Raton,FL,33433 +Boca Raton,FL,33434 +Briny Breezes,FL,33435 +Village Of Golf,FL,33436 +Boynton Beach,FL,33437 +Canal Point,FL,33438 +Clewiston,FL,33440 +Deerfield Beach,FL,33441 +Deerfield Beach,FL,33442 +Delray Beach,FL,33444 +Delray Beach,FL,33445 +Delray Beach,FL,33446 +Hobe Sound,FL,33455 +Jupiter,FL,33458 +Lake Worth,FL,33460 +Lake Worth,FL,33461 +Lantana,FL,33462 +Greenacres,FL,33463 +Lake Worth,FL,33467 +Tequesta,FL,33469 +Loxahatchee,FL,33470 +Moore Haven,FL,33471 +Pahokee,FL,33476 +Jupiter,FL,33477 +Jupiter,FL,33478 +Palm Beach,FL,33480 +Delray Beach,FL,33483 +Delray Beach,FL,33484 +Boca Raton,FL,33486 +Highland Beach,FL,33487 +South Bay,FL,33493 +Boca Raton,FL,33496 +Boca Raton,FL,33498 +Brandon,FL,33510 +Brandon,FL,33511 +Bushnell,FL,33513 +Center Hill,FL,33514 +Ridge Manor,FL,33525 +Dover,FL,33527 +Gibsonton,FL,33534 +Lake Panasoffkee,FL,33538 +Zephyrhills,FL,33540 +Zephyrhills,FL,33541 +Wesley Chapel,FL,33543 +Zephyrhills,FL,33544 +Lithia,FL,33547 +Lutz,FL,33549 +Odessa,FL,33556 +Plant City,FL,33565 +Plant City,FL,33566 +Plant City,FL,33567 +Riverview,FL,33569 +Ruskin,FL,33570 +Apollo Beach,FL,33572 +Sun City Center,FL,33573 +San Antonio,FL,33576 +Seffner,FL,33584 +Thonotosassa,FL,33592 +Valrico,FL,33594 +Ridge Manor Esta,FL,33597 +Wimauma,FL,33598 +Tampa,FL,33602 +Tampa,FL,33603 +Tampa,FL,33604 +Tampa,FL,33605 +Tampa,FL,33606 +Tampa,FL,33607 +Tampa,FL,33608 +Tampa,FL,33609 +Tampa,FL,33610 +Tampa,FL,33611 +Tampa,FL,33612 +Tampa,FL,33613 +Tampa,FL,33614 +Tampa,FL,33615 +Tampa,FL,33616 +Tampa,FL,33617 +Carrollwood,FL,33618 +Tampa,FL,33619 +Tampa,FL,33620 +Carrollwood,FL,33624 +Tampa,FL,33625 +Tampa,FL,33626 +Tampa,FL,33629 +Tampa,FL,33634 +Tampa,FL,33635 +Tampa,FL,33637 +Tampa,FL,33647 +Saint Petersburg,FL,33701 +Saint Petersburg,FL,33702 +Saint Petersburg,FL,33703 +Saint Petersburg,FL,33704 +Saint Petersburg,FL,33705 +Saint Petersburg,FL,33706 +Saint Petersburg,FL,33707 +Madeira Beach,FL,33708 +Kenneth City,FL,33709 +Saint Petersburg,FL,33710 +Saint Petersburg,FL,33711 +Saint Petersburg,FL,33712 +Saint Petersburg,FL,33713 +Saint Petersburg,FL,33714 +Tierra Verde,FL,33715 +Saint Petersburg,FL,33716 +Lakeland,FL,33801 +Lakeland,FL,33803 +Lakeland,FL,33805 +Lakeland,FL,33809 +Southside,FL,33811 +Southside,FL,33813 +Arcadia,FL,33821 +Auburndale,FL,33823 +Avon Park,FL,33825 +Babson Park,FL,33827 +Bartow,FL,33830 +Duette,FL,33834 +Davenport,FL,33837 +Dundee,FL,33838 +Eagle Lake,FL,33839 +Fort Meade,FL,33841 +Frostproof,FL,33843 +Grenelefe,FL,33844 +Kathleen,FL,33849 +Lake Alfred,FL,33850 +Lake Placid,FL,33852 +Lake Wales,FL,33853 +Lorida,FL,33857 +Mulberry,FL,33860 +Ona,FL,33865 +Polk City,FL,33868 +Sebring,FL,33870 +Sebring,FL,33872 +Wauchula,FL,33873 +Eloise,FL,33880 +Winter Haven,FL,33881 +Cypress Gardens,FL,33884 +Zolfo Springs,FL,33890 +Fort Myers,FL,33901 +Fort Myers,FL,33903 +Cape Coral Centr,FL,33904 +Tice,FL,33905 +Fort Myers,FL,33907 +Fort Myers,FL,33908 +Cape Coral Centr,FL,33909 +Fort Myers,FL,33912 +Fort Myers,FL,33913 +Cape Coral Centr,FL,33914 +Fort Myers,FL,33916 +Fort Myers,FL,33917 +College Parkway,FL,33919 +Alva,FL,33920 +Bokeelia,FL,33922 +Bonita Springs,FL,33923 +Captiva,FL,33924 +El Jobean,FL,33927 +Estero,FL,33928 +Fort Myers Beach,FL,33931 +Immokalee,FL,33934 +Labelle,FL,33935 +Lehigh Acres,FL,33936 +Marco Island,FL,33937 +Naples,FL,33940 +Naples,FL,33942 +Ochopee,FL,33943 +Placida,FL,33946 +Placida,FL,33947 +Port Charlotte,FL,33948 +Punta Gorda,FL,33950 +Port Charlotte,FL,33952 +Port Charlotte,FL,33953 +Port Charlotte,FL,33954 +Punta Gorda,FL,33955 +Saint James City,FL,33956 +Sanibel,FL,33957 +Venus,FL,33960 +Naples,FL,33961 +Naples,FL,33962 +Naples,FL,33963 +Naples,FL,33964 +Lehigh Acres,FL,33971 +Port Charlotte,FL,33980 +Port Charlotte,FL,33981 +Punta Gorda,FL,33982 +Punta Gorda,FL,33983 +Cape Coral Centr,FL,33990 +Cape Coral Centr,FL,33991 +Naples,FL,33999 +Braden River,FL,34202 +Braden River,FL,34203 +Westgate,FL,34205 +College Plaza,FL,34207 +Braden River,FL,34208 +Palma Sola,FL,34209 +Bradenton,FL,34210 +Cortez,FL,34215 +Bradenton Beach,FL,34217 +Parrish,FL,34219 +Palmetto,FL,34221 +Ellenton,FL,34222 +Englewood,FL,34223 +Grove City,FL,34224 +Whitney Beach,FL,34228 +Osprey,FL,34229 +South Trail,FL,34231 +Forest Lakes,FL,34232 +Sarasota,FL,34233 +Meadows Village,FL,34234 +Sarasota,FL,34235 +Sarasota,FL,34236 +Sarasota,FL,34237 +Sarasota Square,FL,34238 +Sarasota,FL,34239 +Sarasota,FL,34240 +Sarasota,FL,34241 +Crescent Beach,FL,34242 +Sarasota,FL,34243 +Myakka City,FL,34251 +Nokomis,FL,34275 +Venice,FL,34285 +North Port,FL,34287 +Mid Venice,FL,34292 +South Venice,FL,34293 +Brooksville,FL,34601 +Ridge Manor West,FL,34602 +Spring Hill,FL,34606 +Spring Hill,FL,34607 +Spring Hill,FL,34608 +Spring Hill,FL,34609 +Shady Hills,FL,34610 +Brooksville,FL,34613 +Brooksville,FL,34614 +Clearwater,FL,34615 +Clearwater,FL,34616 +Clearwater,FL,34619 +Clearwater,FL,34620 +Clearwater,FL,34621 +Airport,FL,34622 +Clearwater,FL,34623 +Clearwater,FL,34624 +Clearwater,FL,34625 +Clearwater,FL,34630 +Belleair Beach,FL,34635 +Land O Lakes,FL,34639 +Belleair Bluffs,FL,34640 +Largo,FL,34641 +Seminole,FL,34642 +Largo,FL,34643 +Largo,FL,34644 +Largo,FL,34646 +Largo,FL,34647 +Largo,FL,34648 +New Port Richey,FL,34652 +New Port Richey,FL,34653 +New Port Richey,FL,34654 +New Port Richey,FL,34655 +Pinellas Park,FL,34665 +Pinellas Park,FL,34666 +Hudson,FL,34667 +Port Richey,FL,34668 +Hudson,FL,34669 +Oldsmar,FL,34677 +Palm Harbor,FL,34683 +Lake Tarpon,FL,34684 +Palm Harbor,FL,34685 +Tarpon Springs,FL,34689 +Holiday,FL,34690 +Holiday,FL,34691 +Safety Harbor,FL,34695 +Dunedin,FL,34698 +Astatula,FL,34705 +Clermont,FL,34711 +Fruitland Park,FL,34731 +Groveland,FL,34736 +Howey In The Hil,FL,34737 +Kenansville,FL,34739 +Kissimmee,FL,34741 +Buena Ventura La,FL,34743 +Kissimmee,FL,34744 +Kissimmee,FL,34746 +Leesburg,FL,34748 +Montverde,FL,34756 +Kissimmee,FL,34758 +Poinciana,FL,34759 +Ocoee,FL,34761 +Okahumpka,FL,34762 +Saint Cloud,FL,34769 +Saint Cloud,FL,34771 +Saint Cloud,FL,34772 +Saint Cloud,FL,34773 +Wildwood,FL,34785 +Windermere,FL,34786 +Winter Garden,FL,34787 +Haines Creek,FL,34788 +Yalaha,FL,34797 +Fort Pierce,FL,34945 +Fort Pierce,FL,34946 +Fort Pierce,FL,34947 +Fort Pierce,FL,34949 +Fort Pierce,FL,34950 +Fort Pierce,FL,34951 +Port Saint Lucie,FL,34952 +Port Saint Lucie,FL,34953 +Indiantown,FL,34956 +Jensen Beach,FL,34957 +Basinger,FL,34972 +Okeechobee,FL,34974 +Fort Pierce,FL,34981 +Fort Pierce,FL,34982 +Port Saint Lucie,FL,34983 +Port Saint Lucie,FL,34984 +Port Saint Lucie,FL,34986 +Port Saint Lucie,FL,34987 +Port Saint Lucie,FL,34988 +Palm City,FL,34990 +Stuart,FL,34994 +Stuart,FL,34996 +Stuart,FL,34997 +Austell,GA,30001 +Avondale Estates,GA,30002 +Clarkston,GA,30021 +Conley,GA,30027 +Decatur,GA,30030 +Decatur,GA,30032 +Decatur,GA,30033 +Decatur,GA,30034 +Decatur,GA,30035 +Lithonia,GA,30038 +Ellenwood,GA,30049 +Forest Park,GA,30050 +Lithia Springs,GA,30057 +Centerville Gwin,GA,30058 +Mableton,GA,30059 +Marietta,GA,30060 +Marietta,GA,30062 +Marietta,GA,30064 +Marietta,GA,30066 +Marietta,GA,30067 +Marietta,GA,30068 +Norcross,GA,30071 +Powder Springs,GA,30073 +Roswell,GA,30075 +Roswell,GA,30076 +Scottdale,GA,30079 +Smyrna,GA,30080 +Smyrna,GA,30082 +Stone Mountain,GA,30083 +Tucker,GA,30084 +Stone Mountain,GA,30087 +Stone Mountain,GA,30088 +Norcross,GA,30092 +Norcross,GA,30093 +Acworth,GA,30101 +Adairsville,GA,30103 +Aragon,GA,30104 +Armuchee,GA,30105 +Ball Ground,GA,30107 +Bowdon,GA,30108 +Bremen,GA,30110 +Buchanan,GA,30113 +Canton,GA,30114 +Carrollton,GA,30117 +Cartersville,GA,30120 +Cave Spring,GA,30124 +Cedartown,GA,30125 +Cumming,GA,30130 +Dallas,GA,30132 +Douglasville,GA,30134 +Douglasville,GA,30135 +Duluth,GA,30136 +Emerson,GA,30137 +Fairmount,GA,30139 +Felton,GA,30140 +Hiram,GA,30141 +Jasper,GA,30143 +Kennesaw,GA,30144 +Kingston,GA,30145 +Lindale,GA,30147 +Marble Hill,GA,30148 +Rockmart,GA,30153 +Rome,GA,30161 +Rome,GA,30165 +Roopville,GA,30170 +Pine Log,GA,30171 +Silver Creek,GA,30173 +Suwanee,GA,30174 +Talking Rock,GA,30175 +Tallapoosa,GA,30176 +Tate,GA,30177 +Taylorsville,GA,30178 +Temple,GA,30179 +Villa Rica,GA,30180 +Waco,GA,30182 +Waleska,GA,30183 +White,GA,30184 +Whitesburg,GA,30185 +Winston,GA,30187 +Woodstock,GA,30188 +Alpharetta,GA,30201 +Alpharetta,GA,30202 +Auburn,GA,30203 +Barnesville,GA,30204 +Brooks,GA,30205 +Concord,GA,30206 +Conyers,GA,30207 +Conyers,GA,30208 +Starrsville,GA,30209 +Dacula,GA,30211 +Fairburn,GA,30213 +Woolsey,GA,30214 +Flovilla,GA,30216 +Glenn,GA,30217 +Alvaton,GA,30218 +Grantville,GA,30220 +Grayson,GA,30221 +Stovall,GA,30222 +Griffin,GA,30223 +Hampton,GA,30228 +Hogansville,GA,30230 +Jackson,GA,30233 +Jenkinsburg,GA,30234 +Jonesboro,GA,30236 +La Grange,GA,30240 +Lawrenceville,GA,30243 +Lawrenceville,GA,30244 +Lawrenceville,GA,30245 +Lilburn,GA,30247 +Locust Grove,GA,30248 +Loganville,GA,30249 +Luthersville,GA,30251 +Mc Donough,GA,30253 +Mansfield,GA,30255 +Meansville,GA,30256 +Milner,GA,30257 +Molena,GA,30258 +Moreland,GA,30259 +Morrow,GA,30260 +Newborn,GA,30262 +Raymond,GA,30263 +Newnan,GA,30265 +Oxford,GA,30267 +Palmetto,GA,30268 +Peachtree City,GA,30269 +Rex,GA,30273 +Riverdale,GA,30274 +Senoia,GA,30276 +Sharpsburg,GA,30277 +Snellville,GA,30278 +Social Circle,GA,30279 +Stockbridge,GA,30281 +The Rock,GA,30285 +Thomaston,GA,30286 +Tyrone,GA,30290 +Union City,GA,30291 +Williamson,GA,30292 +Woodbury,GA,30293 +Zebulon,GA,30295 +Riverdale,GA,30296 +Atlanta,GA,30303 +Atlanta,GA,30305 +Atlanta,GA,30306 +Atlanta,GA,30307 +Atlanta,GA,30308 +Atlanta,GA,30309 +Atlanta,GA,30310 +Atlanta,GA,30311 +Atlanta,GA,30312 +Atlanta,GA,30313 +Atlanta,GA,30314 +Atlanta,GA,30315 +Atlanta,GA,30316 +Atlanta,GA,30317 +Atlanta,GA,30318 +Atlanta,GA,30319 +Atlanta,GA,30324 +Atlanta,GA,30326 +Atlanta,GA,30327 +Sandy Springs,GA,30328 +Atlanta,GA,30329 +Atlanta,GA,30330 +Atlanta,GA,30331 +Atlanta,GA,30334 +Atlanta,GA,30336 +College Park,GA,30337 +Dunwoody,GA,30338 +Atlanta,GA,30339 +Doraville,GA,30340 +Chamblee,GA,30341 +Atlanta,GA,30342 +East Point,GA,30344 +Atlanta,GA,30345 +Atlanta,GA,30346 +Atlanta,GA,30349 +Atlanta,GA,30350 +Hapeville,GA,30354 +Atlanta,GA,30360 +Oak Park,GA,30401 +Ailey,GA,30410 +Alamo,GA,30411 +Bartow,GA,30413 +Brooklet,GA,30415 +Claxton,GA,30417 +Cobbtown,GA,30420 +Collins,GA,30421 +Garfield,GA,30425 +Girard,GA,30426 +Glennville,GA,30427 +Glenwood,GA,30428 +Louisville,GA,30434 +Lyons,GA,30436 +Manassas,GA,30438 +Metter,GA,30439 +Midville,GA,30441 +Millen,GA,30442 +Mount Vernon,GA,30445 +Newington,GA,30446 +Portal,GA,30450 +Register,GA,30452 +Reidsville,GA,30453 +Rockledge,GA,30454 +Rocky Ford,GA,30455 +Sardis,GA,30456 +Soperton,GA,30457 +Statesboro,GA,30458 +Hiltonia,GA,30467 +Tarrytown,GA,30470 +Twin City,GA,30471 +Uvalda,GA,30473 +Vidalia,GA,30474 +Wadley,GA,30477 +Gainesville,GA,30501 +Gainesville,GA,30504 +Gainesville,GA,30506 +Gainesville,GA,30507 +Alto,GA,30510 +Baldwin,GA,30511 +Blairsville,GA,30512 +Blue Ridge,GA,30513 +Bowersville,GA,30516 +Braselton,GA,30517 +Buford,GA,30518 +Canon,GA,30520 +Carnesville,GA,30521 +Cherrylog,GA,30522 +Clarkesville,GA,30523 +Clayton,GA,30525 +Clermont,GA,30527 +Cleveland,GA,30528 +Commerce,GA,30529 +Cornelia,GA,30531 +Dahlonega,GA,30533 +Juno,GA,30534 +Demorest,GA,30535 +Sky Valley,GA,30537 +Eastanollee,GA,30538 +East Ellijay,GA,30539 +Ellijay,GA,30540 +Epworth,GA,30541 +Flowery Branch,GA,30542 +Gillsville,GA,30543 +Helen,GA,30545 +Hiawassee,GA,30546 +Homer,GA,30547 +Hoschton,GA,30548 +Jefferson,GA,30549 +Lakemont,GA,30552 +Lavonia,GA,30553 +Lula,GA,30554 +Mc Caysville,GA,30555 +Martin,GA,30557 +Maysville,GA,30558 +Mineral Bluff,GA,30559 +Morganton,GA,30560 +Mount Airy,GA,30563 +Murrayville,GA,30564 +Nicholson,GA,30565 +Oakwood,GA,30566 +Pendergrass,GA,30567 +Rabun Gap,GA,30568 +Sautee Nacoochee,GA,30571 +Suches,GA,30572 +Talmo,GA,30575 +Tiger,GA,30576 +Toccoa,GA,30577 +Young Harris,GA,30582 +Athens,GA,30601 +Athens,GA,30605 +Athens,GA,30606 +Athens,GA,30607 +Arnoldsville,GA,30619 +Bethlehem,GA,30620 +Bishop,GA,30621 +Bogart,GA,30622 +Bowman,GA,30624 +Buckhead,GA,30625 +Carlton,GA,30627 +Colbert,GA,30628 +Comer,GA,30629 +Crawford,GA,30630 +Crawfordville,GA,30631 +Danielsville,GA,30633 +Dewy Rose,GA,30634 +Elberton,GA,30635 +Good Hope,GA,30641 +Greensboro,GA,30642 +Hartwell,GA,30643 +Hull,GA,30646 +Lexington,GA,30648 +Madison,GA,30650 +Monroe,GA,30655 +Philomath,GA,30660 +Royston,GA,30662 +Rutledge,GA,30663 +Statham,GA,30666 +Stephens,GA,30667 +Danburg,GA,30668 +Union Point,GA,30669 +Washington,GA,30673 +Watkinsville,GA,30677 +White Plains,GA,30678 +Winder,GA,30680 +Winterville,GA,30683 +Calhoun,GA,30701 +Chatsworth,GA,30705 +Chickamauga,GA,30707 +Cisco,GA,30708 +Cohutta,GA,30710 +Crandall,GA,30711 +Dalton,GA,30720 +Dalton,GA,30721 +Flintstone,GA,30725 +La Fayette,GA,30728 +Lyerly,GA,30730 +Cloudland,GA,30731 +Plainville,GA,30733 +Ranger,GA,30734 +Hill City,GA,30735 +Ringgold,GA,30736 +Rising Fawn,GA,30738 +Rock Spring,GA,30739 +Rocky Face,GA,30740 +Rossville,GA,30741 +Fort Oglethorpe,GA,30742 +Sugar Valley,GA,30746 +Summerville,GA,30747 +Lookout Mountain,GA,30750 +Trenton,GA,30752 +Trion,GA,30753 +Tunnel Hill,GA,30755 +Wildwood,GA,30757 +Appling,GA,30802 +Avera,GA,30803 +Blythe,GA,30805 +Dearing,GA,30808 +Evans,GA,30809 +Gibson,GA,30810 +Grovetown,GA,30813 +Harlem,GA,30814 +Hephzibah,GA,30815 +Keysville,GA,30816 +Lincolnton,GA,30817 +Matthews,GA,30818 +Mitchell,GA,30820 +Norwood,GA,30821 +Perkins,GA,30822 +Stapleton,GA,30823 +Thomson,GA,30824 +Warrenton,GA,30828 +Waynesboro,GA,30830 +Wrens,GA,30833 +Augusta,GA,30901 +Augusta,GA,30904 +Fort Gordon,GA,30905 +Peach Orchard,GA,30906 +Martinez,GA,30907 +Forest Hills,GA,30909 +Abbeville,GA,31001 +Adrian,GA,31002 +Allentown,GA,31003 +Bonaire,GA,31005 +Butler,GA,31006 +Byromville,GA,31007 +Powersville,GA,31008 +Cadwell,GA,31009 +Chauncey,GA,31011 +Chester,GA,31012 +Cochran,GA,31014 +Cordele,GA,31015 +Culloden,GA,31016 +Danville,GA,31017 +Davisboro,GA,31018 +Dexter,GA,31019 +Dry Branch,GA,31020 +East Dublin,GA,31021 +Dudley,GA,31022 +Eastman,GA,31023 +Eatonton,GA,31024 +Elko,GA,31025 +Centerville,GA,31028 +Forsyth,GA,31029 +Fort Valley,GA,31030 +Stevens Pottery,GA,31031 +Gray,GA,31032 +Haddock,GA,31033 +Harrison,GA,31035 +Hawkinsville,GA,31036 +Helena,GA,31037 +Round Oak,GA,31038 +Ideal,GA,31041 +Irwinton,GA,31042 +Jeffersonville,GA,31044 +Jewell,GA,31045 +Juliette,GA,31046 +Kathleen,GA,31047 +Kite,GA,31049 +Knoxville,GA,31050 +Lizella,GA,31052 +Mc Intyre,GA,31054 +Mc Rae,GA,31055 +Marshallville,GA,31057 +Mauk,GA,31058 +Milan,GA,31060 +Milledgeville,GA,31061 +Montezuma,GA,31063 +Monticello,GA,31064 +Montrose,GA,31065 +Musella,GA,31066 +Oglethorpe,GA,31068 +Perry,GA,31069 +Pinehurst,GA,31070 +Pineview,GA,31071 +Pitts,GA,31072 +Rentz,GA,31075 +Reynolds,GA,31076 +Rhine,GA,31077 +Roberta,GA,31078 +Rochelle,GA,31079 +Rupert,GA,31081 +Deepstep,GA,31082 +Shady Dale,GA,31085 +Devereux,GA,31087 +Warner Robins,GA,31088 +Tennille,GA,31089 +Toomsboro,GA,31090 +Unadilla,GA,31091 +Vienna,GA,31092 +Warner Robins,GA,31093 +Warthen,GA,31094 +Wrightsville,GA,31096 +Yatesville,GA,31097 +Robins A F B,GA,31098 +Huber,GA,31201 +Macon,GA,31204 +Wilson Airport,GA,31206 +Macon,GA,31210 +Macon,GA,31211 +Allenhurst,GA,31301 +Bloomingdale,GA,31302 +Clyo,GA,31303 +Crescent,GA,31304 +Darien,GA,31305 +Ellabell,GA,31308 +Fleming,GA,31309 +Guyton,GA,31312 +Hinesville,GA,31313 +Fort Stewart,GA,31314 +Ludowici,GA,31316 +Meridian,GA,31319 +Midway,GA,31320 +Pembroke,GA,31321 +Pooler,GA,31322 +Riceboro,GA,31323 +Richmond Hill,GA,31324 +Rincon,GA,31326 +Sapelo Island,GA,31327 +Tybee Island,GA,31328 +Stillwell,GA,31329 +Townsend,GA,31331 +Savannah,GA,31401 +State College,GA,31404 +Savannah,GA,31405 +Savannah,GA,31406 +Port Wentworth,GA,31407 +Garden City,GA,31408 +Savannah,GA,31409 +Savannah,GA,31410 +Savannah,GA,31411 +M M,GA,31419 +Okefenokee,GA,31501 +Alma,GA,31510 +Ambrose,GA,31512 +Baxley,GA,31513 +Blackshear,GA,31516 +Bristol,GA,31518 +Broxton,GA,31519 +Glynco,GA,31520 +Saint Simons Isl,GA,31522 +Brunswick,GA,31525 +Jekyll Island,GA,31527 +Denton,GA,31532 +Douglas,GA,31533 +Folkston,GA,31537 +Hazlehurst,GA,31539 +Hoboken,GA,31542 +Hortense,GA,31543 +Jacksonville,GA,31544 +Jesup,GA,31545 +Kingsland,GA,31548 +Lumber City,GA,31549 +Manor,GA,31550 +Mershon,GA,31551 +Millwood,GA,31552 +Nahunta,GA,31553 +Nicholls,GA,31554 +Odum,GA,31555 +Patterson,GA,31557 +Saint Marys,GA,31558 +Screven,GA,31560 +Surrency,GA,31563 +Waverly,GA,31565 +Waynesville,GA,31566 +West Green,GA,31567 +White Oak,GA,31568 +Woodbine,GA,31569 +Clyattville,GA,31601 +Bemiss,GA,31602 +Adel,GA,31620 +Alapaha,GA,31622 +Axson,GA,31624 +Barney,GA,31625 +Boston,GA,31626 +Dixie,GA,31629 +Du Pont,GA,31630 +Fargo,GA,31631 +Hahira,GA,31632 +Cogdell,GA,31634 +Lakeland,GA,31635 +Lake Park,GA,31636 +Lenox,GA,31637 +Morven,GA,31638 +Nashville,GA,31639 +Naylor,GA,31641 +Pearson,GA,31642 +Quitman,GA,31643 +Ray City,GA,31645 +Saint George,GA,31646 +Sparks,GA,31647 +Statenville,GA,31648 +Stockton,GA,31649 +Willacoochee,GA,31650 +Albany,GA,31701 +Marine Corps Log,GA,31704 +Bridgeboro,GA,31705 +Albany,GA,31707 +Georgia Southwes,GA,31709 +Andersonville,GA,31711 +Arabi,GA,31712 +Arlington,GA,31713 +Ashburn,GA,31714 +Attapulgus,GA,31715 +Baconton,GA,31716 +Bainbridge,GA,31717 +Blakely,GA,31723 +Bluffton,GA,31724 +Brinson,GA,31725 +Bronwood,GA,31726 +Cairo,GA,31728 +Calvary,GA,31729 +Camilla,GA,31730 +Chula,GA,31733 +Climax,GA,31734 +Cobb,GA,31735 +Coleman,GA,31736 +Colquitt,GA,31737 +Coolidge,GA,31738 +Cuthbert,GA,31740 +Damascus,GA,31741 +Graves,GA,31742 +De Soto,GA,31743 +Doerun,GA,31744 +Donalsonville,GA,31745 +Edison,GA,31746 +Enigma,GA,31749 +Fitzgerald,GA,31750 +Fort Gaines,GA,31751 +Georgetown,GA,31754 +Hartsfield,GA,31756 +Iron City,GA,31759 +Irwinville,GA,31760 +Jakin,GA,31761 +Leary,GA,31762 +Leesburg,GA,31763 +Leslie,GA,31764 +Meigs,GA,31765 +Morgan,GA,31766 +Springvale,GA,31767 +Moultrie,GA,31768 +Newton,GA,31770 +Norman Park,GA,31771 +Oakfield,GA,31772 +Ochlocknee,GA,31773 +Ocilla,GA,31774 +Omega,GA,31775 +Parrott,GA,31777 +Pavo,GA,31778 +Pelham,GA,31779 +Plains,GA,31780 +Poulan,GA,31781 +Rebecca,GA,31783 +Sale City,GA,31784 +Shellman,GA,31786 +Smithville,GA,31787 +Sumner,GA,31789 +Sycamore,GA,31790 +Sylvester,GA,31791 +Thomasville,GA,31792 +Abac,GA,31794 +Ty Ty,GA,31795 +Warwick,GA,31796 +Whigham,GA,31797 +Wray,GA,31798 +Juniper,GA,31801 +Tazewell,GA,31803 +Cataula,GA,31804 +Cusseta,GA,31805 +Ellaville,GA,31806 +Ellerslie,GA,31807 +Fortson,GA,31808 +Hamilton,GA,31811 +Junction City,GA,31812 +Lumpkin,GA,31815 +Manchester,GA,31816 +Midland,GA,31820 +Omaha,GA,31821 +Pine Mountain,GA,31822 +Pine Mountain Va,GA,31823 +Preston,GA,31824 +Richland,GA,31825 +Shiloh,GA,31826 +Talbotton,GA,31827 +Upatoi,GA,31829 +Warm Springs,GA,31830 +Waverly Hall,GA,31831 +Weston,GA,31832 +West Point,GA,31833 +Woodland,GA,31836 +Columbus,GA,31901 +Columbus,GA,31903 +Columbus,GA,31904 +Custer Terrace,GA,31905 +Columbus,GA,31906 +Columbus,GA,31907 +Columbus,GA,31909 +Pinetta,GA,32350 +Aiea,HI,96701 +Captain Cook,HI,96704 +Eleele,HI,96705 +Ewa Beach,HI,96706 +Kapolei,HI,96707 +Haiku,HI,96708 +Hakalau,HI,96710 +Haleiwa,HI,96712 +Hana,HI,96713 +Hanapepe,HI,96716 +Hauula,HI,96717 +Hawaii National,HI,96718 +Hawi,HI,96719 +Hilo,HI,96720 +Princeville,HI,96722 +Holualoa,HI,96725 +Honaunau,HI,96726 +Honokaa,HI,96727 +Honomu,HI,96728 +Hoolehua,HI,96729 +Kaaawa,HI,96730 +Kahului,HI,96732 +Kailua,HI,96734 +Kailua Kona,HI,96740 +Kalaupapa,HI,96742 +Kamuela,HI,96743 +Kaneohe,HI,96744 +Kapaa,HI,96746 +Kaumakani,HI,96747 +Kaunakakai,HI,96748 +Keaau,HI,96749 +Kealakekua,HI,96750 +Kekaha,HI,96752 +Kihei,HI,96753 +Kapaau,HI,96755 +Koloa,HI,96756 +Kualapuu,HI,96757 +Kurtistown,HI,96760 +Lahaina,HI,96761 +Laie,HI,96762 +Lanai City,HI,96763 +Laupahoehoe,HI,96764 +Lihue,HI,96766 +Makawao,HI,96768 +Makaweli,HI,96769 +Maunaloa,HI,96770 +Mountain View,HI,96771 +Naalehu,HI,96772 +Ninole,HI,96773 +Ookala,HI,96774 +Paauhau,HI,96775 +Paauilo,HI,96776 +Pahala,HI,96777 +Pahoa,HI,96778 +Paia,HI,96779 +Papaaloa,HI,96780 +Papaikou,HI,96781 +Pearl City,HI,96782 +Pepeekeo,HI,96783 +Volcano,HI,96785 +Wahiawa,HI,96786 +Mililani,HI,96789 +Kula,HI,96790 +Waialua,HI,96791 +Waianae,HI,96792 +Wailuku,HI,96793 +Waimanalo,HI,96795 +Waimea,HI,96796 +Waipahu,HI,96797 +Honolulu,HI,96813 +Honolulu,HI,96814 +Honolulu,HI,96815 +Honolulu,HI,96816 +Honolulu,HI,96817 +Honolulu,HI,96818 +Honolulu,HI,96819 +Honolulu,HI,96821 +Honolulu,HI,96822 +Honolulu,HI,96825 +Honolulu,HI,96826 +Pocatello,ID,83201 +Chubbuck,ID,83202 +Fort Hall,ID,83203 +Pocatello,ID,83204 +Sterling,ID,83210 +American Falls,ID,83211 +Arbon,ID,83212 +Arco,ID,83213 +Arimo,ID,83214 +Bancroft,ID,83217 +Bern,ID,83220 +Blackfoot,ID,83221 +Challis,ID,83226 +Clayton,ID,83227 +Clifton,ID,83228 +Conda,ID,83230 +Darlington,ID,83231 +Dayton,ID,83232 +Downey,ID,83234 +Ellis,ID,83235 +Firth,ID,83236 +Franklin,ID,83237 +Geneva,ID,83238 +Grace,ID,83241 +Holbrook,ID,83243 +Inkom,ID,83245 +Lava Hot Springs,ID,83246 +Mc Cammon,ID,83250 +Mackay,ID,83251 +Malad City,ID,83252 +Patterson,ID,83253 +Montpelier,ID,83254 +Moore,ID,83255 +Ovid,ID,83260 +Paris,ID,83261 +Pingree,ID,83262 +Preston,ID,83263 +Rockland,ID,83271 +Saint Charles,ID,83272 +Shelley,ID,83274 +Soda Springs,ID,83276 +Stanley,ID,83278 +Stone,ID,83280 +Thatcher,ID,83283 +Wayan,ID,83285 +Weston,ID,83286 +Fish Haven,ID,83287 +Twin Falls,ID,83301 +Rogerson,ID,83302 +Bellevue,ID,83313 +Bliss,ID,83314 +Buhl,ID,83316 +Burley,ID,83318 +Carey,ID,83320 +Castleford,ID,83321 +Corral,ID,83322 +Declo,ID,83323 +Dietrich,ID,83324 +Eden,ID,83325 +Elba,ID,83326 +Fairfield,ID,83327 +Filer,ID,83328 +Gooding,ID,83330 +Hagerman,ID,83332 +Hailey,ID,83333 +Hansen,ID,83334 +Hazelton,ID,83335 +Heyburn,ID,83336 +Jerome,ID,83338 +Obsidian,ID,83340 +Kimberly,ID,83341 +Naf,ID,83342 +Minidoka,ID,83343 +Murtaugh,ID,83344 +Oakley,ID,83346 +Paul,ID,83347 +Picabo,ID,83348 +Richfield,ID,83349 +Acequia,ID,83350 +Shoshone,ID,83352 +Wendell,ID,83355 +Ammon,ID,83401 +Idaho Falls,ID,83402 +Idaho Falls,ID,83404 +Idaho Falls,ID,83406 +Ashton,ID,83420 +Driggs,ID,83422 +Dubois,ID,83423 +Felt,ID,83424 +Hamer,ID,83425 +Iona,ID,83427 +Island Park,ID,83429 +Lewisville,ID,83431 +Menan,ID,83434 +Monteview,ID,83435 +Newdale,ID,83436 +Rexburg,ID,83440 +Rigby,ID,83442 +Ririe,ID,83443 +Roberts,ID,83444 +Saint Anthony,ID,83445 +Spencer,ID,83446 +Sugar City,ID,83448 +Swan Valley,ID,83449 +Terreton,ID,83450 +Teton,ID,83451 +Tetonia,ID,83452 +Victor,ID,83455 +Carmen,ID,83462 +Gibbonsville,ID,83463 +Leadore,ID,83464 +North Fork,ID,83466 +Salmon,ID,83467 +Shoup,ID,83469 +South Gate Plaza,ID,83501 +Ahsahka,ID,83520 +Cottonwood,ID,83522 +Craigmont,ID,83523 +Culdesac,ID,83524 +Dixie,ID,83525 +Ferdinand,ID,83526 +Grangeville,ID,83530 +Greencreek,ID,83533 +Juliaetta,ID,83535 +Kamiah,ID,83536 +Kendrick,ID,83537 +Keuterville,ID,83538 +Clearwater,ID,83539 +Lapwai,ID,83540 +Lenore,ID,83541 +Lucile,ID,83542 +Nezperce,ID,83543 +Orofino,ID,83544 +Peck,ID,83545 +Pierce,ID,83546 +Pollock,ID,83547 +Reubens,ID,83548 +Riggins,ID,83549 +Weippe,ID,83553 +White Bird,ID,83554 +Winchester,ID,83555 +Atlanta,ID,83601 +Banks,ID,83602 +Grasmere,ID,83604 +Caldwell,ID,83605 +Cambridge,ID,83610 +West Mountain,ID,83611 +Council,ID,83612 +Donnelly,ID,83615 +Eagle,ID,83616 +Montour,ID,83617 +Fruitland,ID,83619 +Garden Valley,ID,83622 +Glenns Ferry,ID,83623 +Grand View,ID,83624 +Hammett,ID,83627 +Homedale,ID,83628 +Horseshoe Bend,ID,83629 +Idaho City,ID,83631 +Indian Valley,ID,83632 +King Hill,ID,83633 +Kuna,ID,83634 +Letha,ID,83636 +Lowman,ID,83637 +Mc Call,ID,83638 +Marsing,ID,83639 +Melba,ID,83641 +Meridian,ID,83642 +Mesa,ID,83643 +Middleton,ID,83644 +Midvale,ID,83645 +Mountain Home,ID,83647 +Mountain Home A,ID,83648 +Oreana,ID,83650 +Nampa,ID,83651 +New Meadows,ID,83654 +New Plymouth,ID,83655 +Ola,ID,83657 +Parma,ID,83660 +Payette,ID,83661 +Star,ID,83669 +Sweet,ID,83670 +Weiser,ID,83672 +Wilder,ID,83676 +Yellow Pine,ID,83677 +Nampa,ID,83686 +Nampa,ID,83687 +Boise,ID,83702 +Boise,ID,83703 +Boise,ID,83704 +Boise,ID,83705 +Boise,ID,83706 +Boise,ID,83709 +Boise,ID,83712 +Garden City,ID,83714 +Athol,ID,83801 +Avery,ID,83802 +Bayview,ID,83803 +Blanchard,ID,83804 +Bonners Ferry,ID,83805 +Calder,ID,83808 +Careywood,ID,83809 +Cataldo,ID,83810 +Clark Fork,ID,83811 +Clarkia,ID,83812 +Cocolalla,ID,83813 +Coeur D Alene,ID,83814 +Coolin,ID,83821 +Old Town,ID,83822 +Deary,ID,83823 +Desmet,ID,83824 +Elk River,ID,83827 +Fernwood,ID,83830 +Genesee,ID,83832 +Harrison,ID,83833 +Harvard,ID,83834 +Hayden Lake,ID,83835 +Hope,ID,83836 +Kellogg,ID,83837 +Kingston,ID,83839 +Medimont,ID,83842 +Moscow,ID,83843 +Moyie Springs,ID,83845 +Mullan,ID,83846 +Naples,ID,83847 +Nordman,ID,83848 +Pinehurst,ID,83850 +Plummer,ID,83851 +Porthill,ID,83853 +Post Falls,ID,83854 +Potlatch,ID,83855 +Priest River,ID,83856 +Princeton,ID,83857 +Rathdrum,ID,83858 +Sagle,ID,83860 +Saint Maries,ID,83861 +Sandpoint,ID,83864 +Smelterville,ID,83868 +Spirit Lake,ID,83869 +Tensed,ID,83870 +Troy,ID,83871 +Viola,ID,83872 +Wallace,ID,83873 +Worley,ID,83876 +Antioch,IL,60002 +Arlington Height,IL,60004 +Arlington Height,IL,60005 +Elk Grove Villag,IL,60007 +Rolling Meadows,IL,60008 +Barrington,IL,60010 +Crystal Lake,IL,60012 +Cary,IL,60013 +Crystal Lake,IL,60014 +Deerfield,IL,60015 +Des Plaines,IL,60016 +Rosemont,IL,60018 +Fox Lake,IL,60020 +Fox River Grove,IL,60021 +Glencoe,IL,60022 +Glenview,IL,60025 +Glenview Nas,IL,60026 +Gages Lake,IL,60030 +Gurnee,IL,60031 +Harvard,IL,60033 +Hebron,IL,60034 +Highland Park,IL,60035 +Fort Sheridan,IL,60037 +Highwood,IL,60040 +Ingleside,IL,60041 +Island Lake,IL,60042 +Kenilworth,IL,60043 +Lake Bluff,IL,60044 +Lake Forest,IL,60045 +Lindenhurst,IL,60046 +Long Grove,IL,60047 +Libertyville,IL,60048 +Mc Henry,IL,60050 +Morton Grove,IL,60053 +Mount Prospect,IL,60056 +Mundelein,IL,60060 +Vernon Hills,IL,60061 +Northbrook,IL,60062 +Abbott Park,IL,60064 +Palatine,IL,60067 +Park Ridge,IL,60068 +Prairie View,IL,60069 +Prospect Heights,IL,60070 +Richmond,IL,60071 +Ringwood,IL,60072 +Round Lake,IL,60073 +Palatine,IL,60074 +Skokie,IL,60076 +Skokie,IL,60077 +Spring Grove,IL,60081 +Techny,IL,60082 +Wadsworth,IL,60083 +Wauconda,IL,60084 +Mc Gaw Park,IL,60085 +Waukegan,IL,60087 +Great Lakes,IL,60088 +Buffalo Grove,IL,60089 +Wheeling,IL,60090 +Wilmette,IL,60091 +Northfield,IL,60093 +Winthrop Harbor,IL,60096 +Wonder Lake,IL,60097 +Woodstock,IL,60098 +Zion,IL,60099 +Addison,IL,60101 +Lake In The Hill,IL,60102 +Hanover Park,IL,60103 +Bellwood,IL,60104 +Bensenville,IL,60106 +Streamwood,IL,60107 +Bloomingdale,IL,60108 +Carpentersville,IL,60110 +Clare,IL,60111 +De Kalb,IL,60115 +Dundee,IL,60118 +Elburn,IL,60119 +Elgin,IL,60120 +Elgin,IL,60123 +Elmhurst,IL,60126 +Esmond,IL,60129 +Forest Park,IL,60130 +Franklin Park,IL,60131 +Geneva,IL,60134 +Genoa,IL,60135 +Gilberts,IL,60136 +Glen Ellyn,IL,60137 +Glendale Heights,IL,60139 +Hampshire,IL,60140 +Hines,IL,60141 +Huntley,IL,60142 +Itasca,IL,60143 +Kingston,IL,60145 +Kirkland,IL,60146 +Lombard,IL,60148 +Malta,IL,60150 +Maple Park,IL,60151 +Marengo,IL,60152 +Broadview,IL,60153 +Westchester,IL,60154 +Medinah,IL,60157 +Melrose Park,IL,60160 +Hillside,IL,60162 +Hillside,IL,60163 +Northlake,IL,60164 +Stone Park,IL,60165 +River Grove,IL,60171 +Roselle,IL,60172 +Schaumburg,IL,60173 +Saint Charles,IL,60174 +Saint Charles,IL,60175 +Schiller Park,IL,60176 +South Elgin,IL,60177 +Sycamore,IL,60178 +Union,IL,60180 +Villa Park,IL,60181 +West Chicago,IL,60185 +Wheaton,IL,60187 +Carol Stream,IL,60188 +Winfield,IL,60190 +Wood Dale,IL,60191 +Schaumburg,IL,60193 +Hoffman Estates,IL,60194 +Hoffman Estates,IL,60195 +Evanston,IL,60201 +Evanston,IL,60202 +Evanston,IL,60203 +Oak Park,IL,60301 +Oak Park,IL,60302 +Oak Park,IL,60304 +River Forest,IL,60305 +Beecher,IL,60401 +Stickney,IL,60402 +Blue Island,IL,60406 +Braceville,IL,60407 +Braidwood,IL,60408 +Calumet City,IL,60409 +Channahon,IL,60410 +Sauk Village,IL,60411 +Chicago Ridge,IL,60415 +Coal City,IL,60416 +Crete,IL,60417 +Dolton,IL,60419 +Dwight,IL,60420 +Elwood,IL,60421 +Flossmoor,IL,60422 +Frankfort,IL,60423 +Gardner,IL,60424 +Glenwood,IL,60425 +Markham,IL,60426 +Hazel Crest,IL,60429 +Homewood,IL,60430 +Joliet,IL,60431 +Joliet,IL,60432 +Joliet,IL,60433 +Shorewood,IL,60435 +Rockdale,IL,60436 +Kinsman,IL,60437 +Lansing,IL,60438 +Argonne,IL,60439 +Bolingbrook,IL,60440 +Romeoville,IL,60441 +Manhattan,IL,60442 +Matteson,IL,60443 +Mazon,IL,60444 +Crestwood,IL,60445 +Minooka,IL,60447 +Mokena,IL,60448 +Monee,IL,60449 +Morris,IL,60450 +New Lenox,IL,60451 +Oak Forest,IL,60452 +Oak Lawn,IL,60453 +Bridgeview,IL,60455 +Hometown,IL,60456 +Hickory Hills,IL,60457 +Justice,IL,60458 +Burbank,IL,60459 +Odell,IL,60460 +Olympia Fields,IL,60461 +Orland Park,IL,60462 +Palos Heights,IL,60463 +Palos Park,IL,60464 +Palos Hills,IL,60465 +University Park,IL,60466 +Peotone,IL,60468 +Posen,IL,60469 +Ransom,IL,60470 +Richton Park,IL,60471 +Robbins,IL,60472 +South Holland,IL,60473 +Steger,IL,60475 +Thornton,IL,60476 +Tinley Park,IL,60477 +Country Club Hil,IL,60478 +Verona,IL,60479 +Willow Springs,IL,60480 +Custer Park,IL,60481 +Worth,IL,60482 +Argo,IL,60501 +Aurora,IL,60504 +Aurora,IL,60505 +Aurora,IL,60506 +Batavia,IL,60510 +Big Rock,IL,60511 +Bristol,IL,60512 +Brookfield,IL,60513 +Clarendon Hills,IL,60514 +Downers Grove,IL,60515 +Downers Grove,IL,60516 +Woodridge,IL,60517 +Earlville,IL,60518 +Hinckley,IL,60520 +Oak Brook,IL,60521 +Hodgkins,IL,60525 +Lee,IL,60530 +Leland,IL,60531 +Lisle,IL,60532 +Lyons,IL,60534 +Montgomery,IL,60538 +Mooseheart,IL,60539 +Naperville,IL,60540 +Newark,IL,60541 +North Aurora,IL,60542 +Oswego,IL,60543 +Plainfield,IL,60544 +Plano,IL,60545 +North Riverside,IL,60546 +Sandwich,IL,60548 +Serena,IL,60549 +Shabbona,IL,60550 +Sheridan,IL,60551 +Somonauk,IL,60552 +Steward,IL,60553 +Sugar Grove,IL,60554 +Warrenville,IL,60555 +Waterman,IL,60556 +Western Springs,IL,60558 +Westmont,IL,60559 +Yorkville,IL,60560 +Naperville,IL,60563 +Naperville,IL,60564 +Naperville,IL,60565 +Chicago,IL,60601 +Chicago,IL,60602 +Chicago,IL,60603 +Chicago,IL,60604 +Chicago,IL,60605 +Chicago,IL,60606 +Chicago,IL,60607 +Chicago,IL,60608 +Chicago,IL,60609 +Chicago,IL,60610 +Chicago,IL,60611 +Chicago,IL,60612 +Chicago,IL,60613 +Chicago,IL,60614 +Chicago,IL,60615 +Chicago,IL,60616 +Chicago,IL,60617 +Chicago,IL,60618 +Chicago,IL,60619 +Chicago,IL,60620 +Chicago,IL,60621 +Chicago,IL,60622 +Chicago,IL,60623 +Chicago,IL,60624 +Chicago,IL,60625 +Chicago,IL,60626 +Riverdale,IL,60627 +Chicago,IL,60628 +Chicago,IL,60629 +Chicago,IL,60630 +Chicago,IL,60631 +Chicago,IL,60632 +Burnham,IL,60633 +Norridge,IL,60634 +Elmwood Park,IL,60635 +Chicago,IL,60636 +Chicago,IL,60637 +Bedford Park,IL,60638 +Chicago,IL,60639 +Chicago,IL,60640 +Chicago,IL,60641 +Evergreen Park,IL,60642 +Calumet Park,IL,60643 +Chicago,IL,60644 +Lincolnwood,IL,60645 +Lincolnwood,IL,60646 +Chicago,IL,60647 +Chicago,IL,60648 +Chicago,IL,60649 +Cicero,IL,60650 +Chicago,IL,60651 +Chicago,IL,60652 +Chicago,IL,60653 +Chicago,IL,60654 +Merrionette Park,IL,60655 +Harwood Heights,IL,60656 +Chicago,IL,60657 +Alsip,IL,60658 +Lincolnwood,IL,60659 +Chicago,IL,60660 +Chicago,IL,60661 +Amf Ohare,IL,60666 +Kankakee,IL,60901 +Aroma Park,IL,60910 +Ashkum,IL,60911 +Beaverville,IL,60912 +Bonfield,IL,60913 +Bourbonnais,IL,60914 +Bradley,IL,60915 +Buckingham,IL,60917 +Buckley,IL,60918 +Cabery,IL,60919 +Chatsworth,IL,60921 +Chebanse,IL,60922 +Cissna Park,IL,60924 +Clifton,IL,60927 +Crescent City,IL,60928 +Cullom,IL,60929 +Danforth,IL,60930 +Donovan,IL,60931 +Emington,IL,60934 +Essex,IL,60935 +Gibson City,IL,60936 +Gilman,IL,60938 +Grant Park,IL,60940 +Herscher,IL,60941 +Hoopeston,IL,60942 +Kempton,IL,60946 +Loda,IL,60948 +Ludlow,IL,60949 +Manteno,IL,60950 +Martinton,IL,60951 +Melvin,IL,60952 +Milford,IL,60953 +Momence,IL,60954 +Onarga,IL,60955 +Paxton,IL,60957 +Piper City,IL,60959 +Rankin,IL,60960 +Reddick,IL,60961 +Roberts,IL,60962 +Rossville,IL,60963 +Saint Anne,IL,60964 +Sheldon,IL,60966 +Thawville,IL,60968 +Watseka,IL,60970 +Wellington,IL,60973 +Apple River,IL,61001 +Ashton,IL,61006 +Baileyville,IL,61007 +Belvidere,IL,61008 +Byron,IL,61010 +Caledonia,IL,61011 +Capron,IL,61012 +Chadwick,IL,61014 +Chana,IL,61015 +Cherry Valley,IL,61016 +Dakota,IL,61018 +Davis,IL,61019 +Davis Junction,IL,61020 +Dixon,IL,61021 +Durand,IL,61024 +East Dubuque,IL,61025 +Elizabeth,IL,61028 +Forreston,IL,61030 +Franklin Grove,IL,61031 +Freeport,IL,61032 +Galena,IL,61036 +Garden Prairie,IL,61038 +German Valley,IL,61039 +Hanover,IL,61041 +Harmon,IL,61042 +Kent,IL,61044 +Kings,IL,61045 +Lanark,IL,61046 +Egan,IL,61047 +Lena,IL,61048 +Lindenwood,IL,61049 +Mc Connell,IL,61050 +Milledgeville,IL,61051 +Monroe Center,IL,61052 +Mount Carroll,IL,61053 +Mount Morris,IL,61054 +Orangeville,IL,61060 +Oregon,IL,61061 +Pearl City,IL,61062 +Pecatonica,IL,61063 +Polo,IL,61064 +Poplar Grove,IL,61065 +Ridott,IL,61067 +Rochelle,IL,61068 +Rock City,IL,61070 +Rock Falls,IL,61071 +Rockton,IL,61072 +Roscoe,IL,61073 +Savanna,IL,61074 +Scales Mound,IL,61075 +Shannon,IL,61078 +South Beloit,IL,61080 +Sterling,IL,61081 +Stillman Valley,IL,61084 +Stockton,IL,61085 +Warren,IL,61087 +Winnebago,IL,61088 +Winslow,IL,61089 +Rockford,IL,61101 +Rockford,IL,61102 +Rockford,IL,61103 +Rockford,IL,61104 +Rockford,IL,61107 +Rockford,IL,61108 +Rockford,IL,61109 +Loves Park,IL,61111 +Rockford,IL,61112 +Rock Island,IL,61201 +Albany,IL,61230 +Aledo,IL,61231 +Andalusia,IL,61232 +Annawan,IL,61234 +Atkinson,IL,61235 +Cambridge,IL,61238 +Coal Valley,IL,61240 +Green Rock,IL,61241 +Cordova,IL,61242 +Deer Grove,IL,61243 +East Moline,IL,61244 +Erie,IL,61250 +Fenton,IL,61251 +Fulton,IL,61252 +Geneseo,IL,61254 +Hampton,IL,61256 +Hillsdale,IL,61257 +Illinois City,IL,61259 +Joy,IL,61260 +Lyndon,IL,61261 +Lynn Center,IL,61262 +Matherville,IL,61263 +Milan,IL,61264 +Moline,IL,61265 +Morrison,IL,61270 +New Boston,IL,61272 +Orion,IL,61273 +Osco,IL,61274 +Port Byron,IL,61275 +Prophetstown,IL,61277 +Reynolds,IL,61279 +Sherrard,IL,61281 +Silvis,IL,61282 +Tampico,IL,61283 +Taylor Ridge,IL,61284 +Thomson,IL,61285 +La Salle,IL,61301 +Amboy,IL,61310 +Ancona,IL,61311 +Arlington,IL,61312 +Blackstone,IL,61313 +Buda,IL,61314 +Compton,IL,61318 +Manville,IL,61319 +Dalzell,IL,61320 +Dana,IL,61321 +Grand Ridge,IL,61325 +Granville,IL,61326 +Hennepin,IL,61327 +La Moille,IL,61330 +Leonore,IL,61332 +Long Point,IL,61333 +Lostant,IL,61334 +Mc Nabb,IL,61335 +Magnolia,IL,61336 +Malden,IL,61337 +Marseilles,IL,61341 +Mendota,IL,61342 +Mineral,IL,61344 +Neponset,IL,61345 +New Bedford,IL,61346 +Oglesby,IL,61348 +Ohio,IL,61349 +Ottawa,IL,61350 +Paw Paw,IL,61353 +Peru,IL,61354 +Princeton,IL,61356 +Rutland,IL,61358 +Seneca,IL,61360 +Sheffield,IL,61361 +Spring Valley,IL,61362 +Streator,IL,61364 +Sublette,IL,61367 +Tiskilwa,IL,61368 +Toluca,IL,61369 +Tonica,IL,61370 +Utica,IL,61373 +Varna,IL,61375 +Normandy,IL,61376 +Wenona,IL,61377 +West Brooklyn,IL,61378 +Wyanet,IL,61379 +Galesburg,IL,61401 +Abingdon,IL,61410 +Adair,IL,61411 +Alexis,IL,61412 +Alpha,IL,61413 +Altona,IL,61414 +Avon,IL,61415 +Bardolph,IL,61416 +Berwick,IL,61417 +Biggsville,IL,61418 +Blandinsville,IL,61420 +Bradford,IL,61421 +Bushnell,IL,61422 +Cameron,IL,61423 +Carman,IL,61425 +Cuba,IL,61427 +Dahinda,IL,61428 +Ellisville,IL,61431 +Fairview,IL,61432 +Fiatt,IL,61433 +Galva,IL,61434 +Gerlaw,IL,61435 +Gilson,IL,61436 +Gladstone,IL,61437 +Good Hope,IL,61438 +Industry,IL,61440 +Ipava,IL,61441 +Keithsburg,IL,61442 +Kewanee,IL,61443 +Kirkwood,IL,61447 +Knoxville,IL,61448 +La Fayette,IL,61449 +La Harpe,IL,61450 +Laura,IL,61451 +Littleton,IL,61452 +Little York,IL,61453 +Lomax,IL,61454 +Macomb,IL,61455 +Maquon,IL,61458 +Marietta,IL,61459 +Media,IL,61460 +Monmouth,IL,61462 +New Windsor,IL,61465 +North Henderson,IL,61466 +Oneida,IL,61467 +Oquawka,IL,61469 +Prairie City,IL,61470 +Raritan,IL,61471 +Rio,IL,61472 +Roseville,IL,61473 +Saint Augustine,IL,61474 +Sciota,IL,61475 +Seaton,IL,61476 +Smithfield,IL,61477 +Smithshire,IL,61478 +Speer,IL,61479 +Stronghurst,IL,61480 +Table Grove,IL,61482 +Toulon,IL,61483 +Vermont,IL,61484 +Victoria,IL,61485 +Viola,IL,61486 +Wataga,IL,61488 +Williamsfield,IL,61489 +Woodhull,IL,61490 +Wyoming,IL,61491 +Astoria,IL,61501 +Benson,IL,61516 +Brimfield,IL,61517 +Oak Hill,IL,61518 +Bryant,IL,61519 +Canton,IL,61520 +Chillicothe,IL,61523 +Dunfermline,IL,61524 +Dunlap,IL,61525 +Edelstein,IL,61526 +Edwards,IL,61528 +Elmwood,IL,61529 +Eureka,IL,61530 +Middlegrove,IL,61531 +Forest City,IL,61532 +Glasford,IL,61533 +Green Valley,IL,61534 +Hanna City,IL,61536 +Henry,IL,61537 +Kingston Mines,IL,61539 +Lacon,IL,61540 +Lewistown,IL,61542 +Liverpool,IL,61543 +London Mills,IL,61544 +Cazenovia,IL,61545 +Manito,IL,61546 +Mapleton,IL,61547 +Metamora,IL,61548 +Morton,IL,61550 +Pekin,IL,61554 +Princeville,IL,61559 +Putnam,IL,61560 +Roanoke,IL,61561 +Saint David,IL,61563 +Sparland,IL,61565 +Topeka,IL,61567 +Tremont,IL,61568 +Trivoli,IL,61569 +Washburn,IL,61570 +Sunnyland,IL,61571 +Yates City,IL,61572 +Peoria,IL,61602 +Peoria Heights,IL,61603 +Peoria,IL,61604 +Peoria,IL,61605 +Peoria,IL,61606 +Bartonville,IL,61607 +East Peoria,IL,61611 +Peoria Heights,IL,61614 +Peoria,IL,61615 +Bloomington,IL,61701 +Bloomington,IL,61704 +Anchor,IL,61720 +Armington,IL,61721 +Arrowsmith,IL,61722 +Atlanta,IL,61723 +Bellflower,IL,61724 +Carlock,IL,61725 +Chenoa,IL,61726 +Clinton,IL,61727 +Colfax,IL,61728 +Congerville,IL,61729 +Cooksville,IL,61730 +Cropsey,IL,61731 +Danvers,IL,61732 +Deer Creek,IL,61733 +Delavan,IL,61734 +Dewitt,IL,61735 +Holder,IL,61736 +Ellsworth,IL,61737 +El Paso,IL,61738 +Fairbury,IL,61739 +Flanagan,IL,61740 +Forrest,IL,61741 +Graymont,IL,61743 +Gridley,IL,61744 +Heyworth,IL,61745 +Hopedale,IL,61747 +Hudson,IL,61748 +Kenney,IL,61749 +Le Roy,IL,61752 +Lexington,IL,61753 +Mc Lean,IL,61754 +Mackinaw,IL,61755 +Maroa,IL,61756 +Minier,IL,61759 +Minonk,IL,61760 +Normal,IL,61761 +Pontiac,IL,61764 +Saunemin,IL,61769 +Saybrook,IL,61770 +Secor,IL,61771 +Shirley,IL,61772 +Sibley,IL,61773 +Stanford,IL,61774 +Strawn,IL,61775 +Towanda,IL,61776 +Wapella,IL,61777 +Waynesville,IL,61778 +Urbana,IL,61801 +Allerton,IL,61810 +Alvin,IL,61811 +Armstrong,IL,61812 +Bement,IL,61813 +Bismarck,IL,61814 +Broadlands,IL,61816 +Catlin,IL,61817 +Cerro Gordo,IL,61818 +Champaign,IL,61820 +Champaign,IL,61821 +Cisco,IL,61830 +Collison,IL,61831 +Danville,IL,61832 +Tilton,IL,61833 +De Land,IL,61839 +Dewey,IL,61840 +Fairmount,IL,61841 +Farmer City,IL,61842 +Fisher,IL,61843 +Fithian,IL,61844 +Foosland,IL,61845 +Georgetown,IL,61846 +Gifford,IL,61847 +Homer,IL,61849 +Indianola,IL,61850 +Ivesdale,IL,61851 +Longview,IL,61852 +Mahomet,IL,61853 +Mansfield,IL,61854 +Milmine,IL,61855 +Monticello,IL,61856 +Oakwood,IL,61858 +Ogden,IL,61859 +Penfield,IL,61862 +Pesotum,IL,61863 +Philo,IL,61864 +Potomac,IL,61865 +Rantoul,IL,61866 +Rantoul,IL,61868 +Ridge Farm,IL,61870 +Sadorus,IL,61872 +Saint Joseph,IL,61873 +Savoy,IL,61874 +Seymour,IL,61875 +Sidell,IL,61876 +Sidney,IL,61877 +Thomasboro,IL,61878 +Tolono,IL,61880 +Weldon,IL,61882 +Westville,IL,61883 +White Heath,IL,61884 +Arcola,IL,61910 +Arthur,IL,61911 +Ashmore,IL,61912 +Atwood,IL,61913 +Bethany,IL,61914 +Brocton,IL,61917 +Camargo,IL,61919 +Charleston,IL,61920 +Chrisman,IL,61924 +Dalton City,IL,61925 +Gays,IL,61928 +Hammond,IL,61929 +Hindsboro,IL,61930 +Humboldt,IL,61931 +Hume,IL,61932 +Kansas,IL,61933 +Lovington,IL,61937 +Mattoon,IL,61938 +Metcalf,IL,61940 +Newman,IL,61942 +Oakland,IL,61943 +Paris,IL,61944 +Sullivan,IL,61951 +Tuscola,IL,61953 +Villa Grove,IL,61956 +Windsor,IL,61957 +Alhambra,IL,62001 +Alton,IL,62002 +Batchtown,IL,62006 +Benld,IL,62009 +Bethalto,IL,62010 +Bingham,IL,62011 +Brighton,IL,62012 +Meppen,IL,62013 +Bunker Hill,IL,62014 +Butler,IL,62015 +Carrollton,IL,62016 +Coffeen,IL,62017 +Cottage Hills,IL,62018 +Donnellson,IL,62019 +62020,IL,62020 +Dorsey,IL,62021 +Dow,IL,62022 +East Alton,IL,62024 +Edwardsville,IL,62025 +Eldred,IL,62027 +Elsah,IL,62028 +Fidelity,IL,62030 +Fieldon,IL,62031 +Fillmore,IL,62032 +Dorchester,IL,62033 +Glen Carbon,IL,62034 +Godfrey,IL,62035 +Golden Eagle,IL,62036 +Grafton,IL,62037 +Mitchell,IL,62040 +Greenfield,IL,62044 +Hamburg,IL,62045 +Hamel,IL,62046 +Hardin,IL,62047 +Hartford,IL,62048 +Hillsboro,IL,62049 +Hillview,IL,62050 +Irving,IL,62051 +Jerseyville,IL,62052 +Kampsville,IL,62053 +Kane,IL,62054 +Litchfield,IL,62056 +Madison,IL,62060 +Marine,IL,62061 +Medora,IL,62063 +62064,IL,62064 +Michael,IL,62065 +Moro,IL,62067 +Mount Olive,IL,62069 +Mozier,IL,62070 +New Douglas,IL,62074 +Nokomis,IL,62075 +Piasa,IL,62079 +Ramsey,IL,62080 +Rockbridge,IL,62081 +Roodhouse,IL,62082 +Rosamond,IL,62083 +Roxana,IL,62084 +Sorento,IL,62086 +Staunton,IL,62088 +Venice,IL,62090 +Walshville,IL,62091 +White Hall,IL,62092 +Witt,IL,62094 +Wood River,IL,62095 +Worden,IL,62097 +Sauget,IL,62201 +East Saint Louis,IL,62203 +Washington Park,IL,62204 +East Saint Louis,IL,62205 +Cahokia,IL,62206 +Alorton,IL,62207 +Fairview Heights,IL,62208 +Venedy,IL,62214 +Albers,IL,62215 +Baldwin,IL,62217 +Bartelso,IL,62218 +Belleville,IL,62220 +Belleville,IL,62221 +Belleville,IL,62223 +Scott A F B,IL,62225 +Breese,IL,62230 +Carlyle,IL,62231 +Caseyville,IL,62232 +Chester,IL,62233 +Collinsville,IL,62234 +Columbia,IL,62236 +Swanwick,IL,62237 +Cutler,IL,62238 +Dupo,IL,62239 +East Carondelet,IL,62240 +Ellis Grove,IL,62241 +Evansville,IL,62242 +Freeburg,IL,62243 +Fults,IL,62244 +Germantown,IL,62245 +Greenville,IL,62246 +Hecker,IL,62248 +Highland,IL,62249 +Keyesport,IL,62253 +Lebanon,IL,62254 +Lenzburg,IL,62255 +Maeystown,IL,62256 +Marissa,IL,62257 +Mascoutah,IL,62258 +Millstadt,IL,62260 +Modoc,IL,62261 +Mulberry Grove,IL,62262 +Nashville,IL,62263 +New Athens,IL,62264 +New Baden,IL,62265 +Oakdale,IL,62268 +Shiloh,IL,62269 +Okawville,IL,62271 +Percy,IL,62272 +Pinckneyville,IL,62274 +Pocahontas,IL,62275 +Prairie Du Roche,IL,62277 +Red Bud,IL,62278 +Renault,IL,62279 +Rockwood,IL,62280 +Saint Jacob,IL,62281 +Shattuc,IL,62283 +Smithboro,IL,62284 +Smithton,IL,62285 +Sparta,IL,62286 +Steeleville,IL,62288 +Trenton,IL,62293 +Troy,IL,62294 +Valmeyer,IL,62295 +62296,IL,62296 +Walsh,IL,62297 +Waterloo,IL,62298 +Quincy,IL,62301 +Augusta,IL,62311 +Barry,IL,62312 +Basco,IL,62313 +Baylis,IL,62314 +Bowen,IL,62316 +Burnside,IL,62318 +Camden,IL,62319 +Camp Point,IL,62320 +Carthage,IL,62321 +Chambersburg,IL,62323 +Clayton,IL,62324 +Coatsburg,IL,62325 +Colchester,IL,62326 +Pontoosuc,IL,62330 +Detroit,IL,62332 +Elvaston,IL,62334 +Fowler,IL,62338 +Golden,IL,62339 +Griggsville,IL,62340 +Hamilton,IL,62341 +Hull,IL,62343 +Huntsville,IL,62344 +Kinderhook,IL,62345 +La Prairie,IL,62346 +Liberty,IL,62347 +Lima,IL,62348 +Loraine,IL,62349 +Mendon,IL,62351 +Milton,IL,62352 +Mount Sterling,IL,62353 +Nebo,IL,62355 +New Canton,IL,62356 +New Salem,IL,62357 +Niota,IL,62358 +Paloma,IL,62359 +Payson,IL,62360 +Pearl,IL,62361 +Perry,IL,62362 +Pittsfield,IL,62363 +Plainville,IL,62365 +Pleasant Hill,IL,62366 +Colmar,IL,62367 +Rockport,IL,62370 +Sutter,IL,62373 +Tennessee,IL,62374 +Timewell,IL,62375 +Ursa,IL,62376 +Versailles,IL,62378 +Warsaw,IL,62379 +West Point,IL,62380 +Effingham,IL,62401 +Allendale,IL,62410 +Altamont,IL,62411 +Annapolis,IL,62413 +Beecher City,IL,62414 +Birds,IL,62415 +Bridgeport,IL,62417 +Brownstown,IL,62418 +Calhoun,IL,62419 +Casey,IL,62420 +Claremont,IL,62421 +Cowden,IL,62422 +Dennison,IL,62423 +Dieterich,IL,62424 +Dundas,IL,62425 +Laclede,IL,62426 +Flat Rock,IL,62427 +Hazel Dell,IL,62428 +Herrick,IL,62431 +Hidalgo,IL,62432 +Hutsonville,IL,62433 +Ingraham,IL,62434 +Jewett,IL,62436 +Lakewood,IL,62438 +Lawrenceville,IL,62439 +Lerna,IL,62440 +Marshall,IL,62441 +Martinsville,IL,62442 +Mason,IL,62443 +Montrose,IL,62445 +Mount Erie,IL,62446 +Neoga,IL,62447 +Newton,IL,62448 +Oblong,IL,62449 +Olney,IL,62450 +Palestine,IL,62451 +Parkersburg,IL,62452 +Robinson,IL,62454 +Saint Elmo,IL,62458 +Saint Francisvil,IL,62460 +Shumway,IL,62461 +Sigel,IL,62462 +Stewardson,IL,62463 +Strasburg,IL,62465 +Sumner,IL,62466 +Teutopolis,IL,62467 +Toledo,IL,62468 +Trilla,IL,62469 +Vandalia,IL,62471 +Watson,IL,62473 +Westfield,IL,62474 +West Liberty,IL,62475 +West Salem,IL,62476 +West Union,IL,62477 +West York,IL,62478 +Wheeler,IL,62479 +Willow Hill,IL,62480 +Yale,IL,62481 +Newburg,IL,62501 +Assumption,IL,62510 +Atwater,IL,62511 +Beason,IL,62512 +Blue Mound,IL,62513 +Boody,IL,62514 +Buffalo Hart,IL,62515 +Chestnut,IL,62518 +Dawson,IL,62520 +Decatur,IL,62521 +Decatur,IL,62522 +Decatur,IL,62523 +Bearsdale,IL,62526 +Cimic,IL,62530 +Edinburg,IL,62531 +Thomasville,IL,62533 +Brunswick,IL,62534 +Glenarm,IL,62536 +Harvel,IL,62538 +Illiopolis,IL,62539 +Latham,IL,62543 +Macon,IL,62544 +Bolivia,IL,62545 +Morrisonville,IL,62546 +Mount Auburn,IL,62547 +Mount Pulaski,IL,62548 +Hervey City,IL,62549 +Radford,IL,62550 +Niantic,IL,62551 +Casner,IL,62552 +Oconee,IL,62553 +Oreana,IL,62554 +Owaneco,IL,62555 +Clarksdale,IL,62556 +Dunkel,IL,62557 +Sicily,IL,62558 +Raymond,IL,62560 +Spaulding,IL,62561 +Berry,IL,62563 +Clarksburg,IL,62565 +Stonington,IL,62567 +Hewittsville,IL,62568 +Dollville,IL,62571 +Waggoner,IL,62572 +Heman,IL,62573 +Orleans,IL,62601 +Arenzville,IL,62611 +Newmansville,IL,62612 +Fancy Prairie,IL,62613 +Auburn,IL,62615 +Lynchburg,IL,62617 +Beardstown,IL,62618 +Exeter,IL,62621 +Bader,IL,62624 +Cantrall,IL,62625 +Comer,IL,62626 +Panther Creek,IL,62627 +Chapin,IL,62628 +Chatham,IL,62629 +Hagaman,IL,62630 +Concord,IL,62631 +Biggs,IL,62633 +Broadwell,IL,62634 +Emden,IL,62635 +Clements,IL,62638 +Frederick,IL,62639 +Mcvey,IL,62640 +Hubly,IL,62642 +Hartsburg,IL,62643 +Eckard,IL,62644 +Hettick,IL,62649 +Arcadia,IL,62650 +Kilbourne,IL,62655 +Lincoln,IL,62656 +Loami,IL,62661 +Luther,IL,62664 +Naples,IL,62665 +Middletown,IL,62666 +Modesto,IL,62667 +Nortonville,IL,62668 +Bates,IL,62670 +New Holland,IL,62671 +Nilwood,IL,62672 +Oakford,IL,62673 +Barr,IL,62674 +Atterbury,IL,62675 +Plainview,IL,62676 +Farmingdale,IL,62677 +Layton,IL,62681 +Allen,IL,62682 +Scottville,IL,62683 +Barclay,IL,62684 +Royal Lakes,IL,62685 +Tallula,IL,62688 +Virden,IL,62690 +Little Indian,IL,62691 +Waverly,IL,62692 +Williamsville,IL,62693 +Glasgow,IL,62694 +Springfield,IL,62701 +Grandview,IL,62702 +Southern View,IL,62703 +Jerome,IL,62704 +Andrew,IL,62707 +Centralia,IL,62801 +Hoyleton,IL,62803 +Albion,IL,62806 +Alma,IL,62807 +Ashley,IL,62808 +Barnhill,IL,62809 +Belle Rive,IL,62810 +Benton,IL,62812 +Bluford,IL,62814 +Bone Gap,IL,62815 +Bonnie,IL,62816 +Broughton,IL,62817 +Browns,IL,62818 +Buckner,IL,62819 +Burnt Prairie,IL,62820 +Carmi,IL,62821 +Christopher,IL,62822 +Cisne,IL,62823 +Clay City,IL,62824 +Crossville,IL,62827 +Dahlgren,IL,62828 +Dale,IL,62829 +Dix,IL,62830 +Du Bois,IL,62831 +Du Quoin,IL,62832 +Ellery,IL,62833 +Enfield,IL,62835 +Ewing,IL,62836 +Fairfield,IL,62837 +Farina,IL,62838 +Flora,IL,62839 +Frankfort Height,IL,62840 +Geff,IL,62842 +Golden Gate,IL,62843 +Grayville,IL,62844 +Herald,IL,62845 +Ina,IL,62846 +Iuka,IL,62849 +Johnsonville,IL,62850 +Keenes,IL,62851 +Kell,IL,62853 +Kinmundy,IL,62854 +Lancaster,IL,62855 +Bible Grove,IL,62858 +Mc Leansboro,IL,62859 +Macedonia,IL,62860 +Mill Shoals,IL,62862 +Mount Carmel,IL,62863 +Mount Vernon,IL,62864 +Mulkeytown,IL,62865 +Nason,IL,62866 +New Haven,IL,62867 +Noble,IL,62868 +Norris City,IL,62869 +Odin,IL,62870 +Omaha,IL,62871 +Opdyke,IL,62872 +Patoka,IL,62875 +Richview,IL,62877 +Rinard,IL,62878 +Saint Peter,IL,62880 +Salem,IL,62881 +Sandoval,IL,62882 +Scheller,IL,62883 +Sesser,IL,62884 +Shobonier,IL,62885 +Sims,IL,62886 +Springerton,IL,62887 +Tamaroa,IL,62888 +Texico,IL,62889 +Thompsonville,IL,62890 +Vernon,IL,62892 +Walnut Hill,IL,62893 +Waltonville,IL,62894 +Wayne City,IL,62895 +West Frankfort,IL,62896 +Whittington,IL,62897 +Woodlawn,IL,62898 +Xenia,IL,62899 +Carbondale,IL,62901 +Alto Pass,IL,62905 +Anna,IL,62906 +Ava,IL,62907 +Belknap,IL,62908 +New Liberty,IL,62910 +Buncombe,IL,62912 +Cache,IL,62913 +Cairo,IL,62914 +Campbell Hill,IL,62916 +Carrier Mills,IL,62917 +Carterville,IL,62918 +Cave In Rock,IL,62919 +Cobden,IL,62920 +Creal Springs,IL,62922 +Cypress,IL,62923 +De Soto,IL,62924 +Dongola,IL,62926 +Eddyville,IL,62928 +Eldorado,IL,62930 +Elizabethtown,IL,62931 +Elkville,IL,62932 +Equality,IL,62934 +Galatia,IL,62935 +Brownfield,IL,62938 +Goreville,IL,62939 +Gorham,IL,62940 +Grand Chain,IL,62941 +Grand Tower,IL,62942 +Grantsburg,IL,62943 +Harrisburg,IL,62946 +Herod,IL,62947 +Herrin,IL,62948 +Jacob,IL,62950 +Johnston City,IL,62951 +Jonesboro,IL,62952 +Joppa,IL,62953 +Junction,IL,62954 +Karbers Ridge,IL,62955 +Karnak,IL,62956 +Mc Clure,IL,62957 +Makanda,IL,62958 +Marion,IL,62959 +Metropolis,IL,62960 +Millcreek,IL,62961 +Miller City,IL,62962 +Mound City,IL,62963 +Mounds,IL,62964 +Murphysboro,IL,62966 +New Burnside,IL,62967 +Olmsted,IL,62970 +Ozark,IL,62972 +Pittsburg,IL,62974 +Pomona,IL,62975 +Pulaski,IL,62976 +Raleigh,IL,62977 +Ridgway,IL,62979 +Rosiclare,IL,62982 +Royalton,IL,62983 +Shawneetown,IL,62984 +Robbs,IL,62985 +Stonefort,IL,62987 +Tamms,IL,62988 +Gale,IL,62990 +Tunnel Hill,IL,62991 +Ullin,IL,62992 +Vergennes,IL,62994 +Vienna,IL,62995 +Villa Ridge,IL,62996 +Willisville,IL,62997 +Wolf Lake,IL,62998 +Zeigler,IL,62999 +Saint Mary,IL,63673 +Alexandria,IN,46001 +Anderson,IN,46011 +Anderson,IN,46012 +Anderson,IN,46013 +Anderson,IN,46016 +Chesterfield,IN,46017 +Arcadia,IN,46030 +Atlanta,IN,46031 +Carmel,IN,46032 +Cicero,IN,46034 +Colfax,IN,46035 +Elwood,IN,46036 +Fishers,IN,46038 +Forest,IN,46039 +Fortville,IN,46040 +Hillisburg,IN,46041 +Frankton,IN,46044 +Ingalls,IN,46048 +Kempton,IN,46049 +Kirklin,IN,46050 +Lapel,IN,46051 +Lebanon,IN,46052 +Mc Cordsville,IN,46055 +Markleville,IN,46056 +Michigantown,IN,46057 +Mulberry,IN,46058 +Noblesville,IN,46060 +Pendleton,IN,46064 +Rossville,IN,46065 +Sharpsville,IN,46068 +Sheridan,IN,46069 +Summitville,IN,46070 +Thorntown,IN,46071 +Tipton,IN,46072 +Westfield,IN,46074 +Whitestown,IN,46075 +Windfall,IN,46076 +Zionsville,IN,46077 +Arlington,IN,46104 +Bainbridge,IN,46105 +Bargersville,IN,46106 +Beech Grove,IN,46107 +Boggstown,IN,46110 +Brownsburg,IN,46112 +Camby,IN,46113 +Carthage,IN,46115 +Charlottesville,IN,46117 +Clayton,IN,46118 +Cloverdale,IN,46120 +Coatesville,IN,46121 +Danville,IN,46122 +Edinburgh,IN,46124 +Fairland,IN,46126 +Falmouth,IN,46127 +Fillmore,IN,46128 +Fountaintown,IN,46130 +Franklin,IN,46131 +Glenwood,IN,46133 +Greencastle,IN,46135 +Greenfield,IN,46140 +Greenwood,IN,46142 +Greenwood,IN,46143 +Jamestown,IN,46147 +Knightstown,IN,46148 +Lizton,IN,46149 +Manilla,IN,46150 +Centerton,IN,46151 +Milroy,IN,46156 +Monrovia,IN,46157 +Mooresville,IN,46158 +Morgantown,IN,46160 +Morristown,IN,46161 +Needham,IN,46162 +New Palestine,IN,46163 +Nineveh,IN,46164 +North Salem,IN,46165 +Paragon,IN,46166 +Pittsboro,IN,46167 +Avon,IN,46168 +Reelsville,IN,46171 +Roachdale,IN,46172 +Rushville,IN,46173 +Russellville,IN,46175 +Shelbyville,IN,46176 +Stilesville,IN,46180 +Trafalgar,IN,46181 +Waldron,IN,46182 +New Whiteland,IN,46184 +Wilkinson,IN,46186 +Indianapolis,IN,46201 +Indianapolis,IN,46202 +Indianapolis,IN,46203 +Indianapolis,IN,46204 +Indianapolis,IN,46205 +Indianapolis,IN,46208 +Eagle Creek,IN,46214 +Fort Benjamin Ha,IN,46216 +Southport,IN,46217 +Indianapolis,IN,46218 +Indianapolis,IN,46219 +Indianapolis,IN,46220 +Indianapolis,IN,46221 +Indianapolis,IN,46222 +Speedway,IN,46224 +Indianapolis,IN,46225 +Lawrence,IN,46226 +Southport,IN,46227 +Cumberland,IN,46229 +Bridgeport,IN,46231 +Clermont,IN,46234 +Oaklandon,IN,46236 +Southport,IN,46237 +Wanamaker,IN,46239 +Nora,IN,46240 +Park Fletcher,IN,46241 +Castleton,IN,46250 +Eagle Creek,IN,46254 +Castleton,IN,46256 +Acton,IN,46259 +Nora,IN,46260 +New Augusta,IN,46268 +New Augusta,IN,46278 +Nora,IN,46280 +Nora,IN,46290 +East Cedar Lake,IN,46303 +Porter,IN,46304 +Crown Point,IN,46307 +Demotte,IN,46310 +Dyer,IN,46311 +East Chicago,IN,46312 +Griffith,IN,46319 +Hammond,IN,46320 +Munster,IN,46321 +Highland,IN,46322 +Hammond,IN,46323 +Hammond,IN,46324 +Hammond,IN,46327 +Hanna,IN,46340 +Hebron,IN,46341 +Hobart,IN,46342 +Kouts,IN,46347 +La Crosse,IN,46348 +Lake Village,IN,46349 +La Porte,IN,46350 +Lowell,IN,46356 +Michigan City,IN,46360 +Mill Creek,IN,46365 +North Judson,IN,46366 +Portage,IN,46368 +Rolling Prairie,IN,46371 +Saint John,IN,46373 +San Pierre,IN,46374 +Schererville,IN,46375 +Union Mills,IN,46382 +Valparaiso,IN,46383 +Wanatah,IN,46390 +Westville,IN,46391 +Wheatfield,IN,46392 +Whiting,IN,46394 +Gary,IN,46402 +Gary,IN,46403 +Gary,IN,46404 +Lake Station,IN,46405 +Gary,IN,46406 +Gary,IN,46407 +Gary,IN,46408 +Gary,IN,46409 +Merrillville,IN,46410 +Argos,IN,46501 +Bourbon,IN,46504 +Bremen,IN,46506 +Bristol,IN,46507 +Claypool,IN,46510 +Culver Military,IN,46511 +Elkhart,IN,46514 +Elkhart,IN,46516 +Elkhart,IN,46517 +Etna Green,IN,46524 +Foraker,IN,46526 +Granger,IN,46530 +Grovertown,IN,46531 +Hamlet,IN,46532 +Ober,IN,46534 +Lakeville,IN,46536 +Leesburg,IN,46538 +Mentone,IN,46539 +Middlebury,IN,46540 +Milford,IN,46542 +Millersburg,IN,46543 +Mishawaka,IN,46544 +Mishawaka,IN,46545 +Nappanee,IN,46550 +New Carlisle,IN,46552 +New Paris,IN,46553 +North Liberty,IN,46554 +North Webster,IN,46555 +Saint Marys,IN,46556 +Osceola,IN,46561 +Pierceton,IN,46562 +Inwood,IN,46563 +Shipshewana,IN,46565 +Syracuse,IN,46567 +Tippecanoe,IN,46570 +Topeka,IN,46571 +Wakarusa,IN,46573 +Walkerton,IN,46574 +Warsaw,IN,46580 +Winona Lake,IN,46590 +South Bend,IN,46601 +South Bend,IN,46613 +South Bend,IN,46614 +South Bend,IN,46615 +South Bend,IN,46616 +South Bend,IN,46617 +South Bend,IN,46619 +South Bend,IN,46628 +South Bend,IN,46635 +South Bend,IN,46637 +Albion,IN,46701 +Andrews,IN,46702 +Angola,IN,46703 +Ashley,IN,46705 +Auburn,IN,46706 +Avilla,IN,46710 +Linn Grove,IN,46711 +Bluffton,IN,46714 +Butler,IN,46721 +Churubusco,IN,46723 +Columbia City,IN,46725 +Corunna,IN,46730 +Craigville,IN,46731 +Cromwell,IN,46732 +Decatur,IN,46733 +Fremont,IN,46737 +Garrett,IN,46738 +Geneva,IN,46740 +Grabill,IN,46741 +Hamilton,IN,46742 +Harlan,IN,46743 +Hoagland,IN,46745 +Howe,IN,46746 +Helmer,IN,46747 +Huntertown,IN,46748 +Huntington,IN,46750 +Kendallville,IN,46755 +Keystone,IN,46759 +Kimmell,IN,46760 +Lagrange,IN,46761 +Laotto,IN,46763 +Larwill,IN,46764 +Leo,IN,46765 +Liberty Center,IN,46766 +Ligonier,IN,46767 +Markle,IN,46770 +Monroe,IN,46772 +Monroeville,IN,46773 +New Haven,IN,46774 +Orland,IN,46776 +Ossian,IN,46777 +Pleasant Lake,IN,46779 +Poneto,IN,46781 +Roanoke,IN,46783 +Rome City,IN,46784 +Saint Joe,IN,46785 +South Whitley,IN,46787 +Spencerville,IN,46788 +Uniondale,IN,46791 +Warren,IN,46792 +Waterloo,IN,46793 +Wawaka,IN,46794 +Wolcottville,IN,46795 +Woodburn,IN,46797 +Yoder,IN,46798 +Fort Wayne,IN,46802 +Fort Wayne,IN,46803 +Fort Wayne,IN,46804 +Fort Wayne,IN,46805 +Fort Wayne,IN,46806 +Fort Wayne,IN,46807 +Fort Wayne,IN,46808 +Fort Wayne,IN,46809 +Fort Wayne,IN,46815 +Fort Wayne,IN,46816 +Fort Wayne,IN,46818 +Fort Wayne,IN,46819 +Fort Wayne,IN,46825 +Fort Wayne,IN,46835 +Fort Wayne,IN,46845 +Kokomo,IN,46901 +Kokomo,IN,46902 +Akron,IN,46910 +Amboy,IN,46911 +Bringhurst,IN,46913 +Bunker Hill,IN,46914 +Camden,IN,46917 +Converse,IN,46919 +Cutler,IN,46920 +Delphi,IN,46923 +Chili,IN,46926 +Fairmount,IN,46928 +Flora,IN,46929 +Galveston,IN,46932 +Gas City,IN,46933 +Greentown,IN,46936 +Jonesboro,IN,46938 +Kewanna,IN,46939 +La Fontaine,IN,46940 +Lagro,IN,46941 +Logansport,IN,46947 +Lucerne,IN,46950 +Macy,IN,46951 +Marion,IN,46952 +Marion,IN,46953 +Monterey,IN,46960 +North Manchester,IN,46962 +Peru,IN,46970 +Grissom Air Forc,IN,46971 +Roann,IN,46974 +Rochester,IN,46975 +Royal Center,IN,46978 +Russiaville,IN,46979 +Silver Lake,IN,46982 +Star City,IN,46985 +Swayzee,IN,46986 +Twelve Mile,IN,46988 +Upland,IN,46989 +Urbana,IN,46990 +Landess,IN,46991 +Wabash,IN,46992 +Walton,IN,46994 +Winamac,IN,46996 +Aurora,IN,47001 +Batesville,IN,47006 +Bath,IN,47010 +Bennington,IN,47011 +Brookville,IN,47012 +Cedar Grove,IN,47016 +Cross Plains,IN,47017 +Dillsboro,IN,47018 +Florence,IN,47020 +Friendship,IN,47021 +Guilford,IN,47022 +Holton,IN,47023 +Laurel,IN,47024 +Lawrenceburg,IN,47025 +Metamora,IN,47030 +Milan,IN,47031 +Moores Hill,IN,47032 +Oldenburg,IN,47036 +Osgood,IN,47037 +Patriot,IN,47038 +Rising Sun,IN,47040 +Sunman,IN,47041 +Versailles,IN,47042 +Vevay,IN,47043 +W Harrison,IN,47060 +Austin,IN,47102 +Borden,IN,47106 +Campbellsburg,IN,47108 +Central,IN,47110 +Charlestown,IN,47111 +Corydon,IN,47112 +Crandall,IN,47114 +Depauw,IN,47115 +Eckerty,IN,47116 +Elizabeth,IN,47117 +English,IN,47118 +Floyds Knobs,IN,47119 +Fredericksburg,IN,47120 +Georgetown,IN,47122 +Grantsburg,IN,47123 +Greenville,IN,47124 +Hardinsburg,IN,47125 +Henryville,IN,47126 +Clarksville,IN,47129 +Jeffersonville,IN,47130 +Laconia,IN,47135 +Lanesville,IN,47136 +Leavenworth,IN,47137 +Lexington,IN,47138 +Marengo,IN,47140 +Marysville,IN,47141 +Mauckport,IN,47142 +Memphis,IN,47143 +Milltown,IN,47145 +Nabb,IN,47147 +New Albany,IN,47150 +New Middletown,IN,47160 +New Salisbury,IN,47161 +New Washington,IN,47162 +Otisco,IN,47163 +Palmyra,IN,47164 +Pekin,IN,47165 +Ramsey,IN,47166 +Salem,IN,47167 +Scottsburg,IN,47170 +Speed,IN,47172 +Sulphur,IN,47174 +Taswell,IN,47175 +Underwood,IN,47177 +Columbus,IN,47201 +Columbus,IN,47203 +Brownstown,IN,47220 +Butlerville,IN,47223 +Canaan,IN,47224 +Commiskey,IN,47227 +Cortland,IN,47228 +Crothersville,IN,47229 +Deputy,IN,47230 +Dupont,IN,47231 +Elizabethtown,IN,47232 +Flat Rock,IN,47234 +Freetown,IN,47235 +Grammer,IN,47236 +Adams,IN,47240 +Hanover,IN,47243 +Hartsville,IN,47244 +Hope,IN,47246 +Madison,IN,47250 +Medora,IN,47260 +Norman,IN,47264 +North Vernon,IN,47265 +Paris Crossing,IN,47270 +Saint Paul,IN,47272 +Scipio,IN,47273 +Seymour,IN,47274 +Vallonia,IN,47281 +Vernon,IN,47282 +Westport,IN,47283 +Muncie,IN,47302 +Muncie,IN,47303 +Muncie,IN,47304 +Muncie,IN,47305 +Ball State Unive,IN,47306 +Albany,IN,47320 +Brownsville,IN,47325 +Bryant,IN,47326 +Cambridge City,IN,47327 +Centerville,IN,47330 +Connersville,IN,47331 +Daleville,IN,47334 +Dunkirk,IN,47336 +Eaton,IN,47338 +Economy,IN,47339 +Farmland,IN,47340 +Fountain City,IN,47341 +Gaston,IN,47342 +Greens Fork,IN,47345 +Hagerstown,IN,47346 +Hartford City,IN,47348 +Lewisville,IN,47352 +Liberty,IN,47353 +Losantville,IN,47354 +Lynn,IN,47355 +Middletown,IN,47356 +Milton,IN,47357 +Modoc,IN,47358 +Montpelier,IN,47359 +Mooreland,IN,47360 +New Castle,IN,47362 +Parker City,IN,47368 +Pennville,IN,47369 +Portland,IN,47371 +Redkey,IN,47373 +Richmond,IN,47374 +Ridgeville,IN,47380 +Salamonia,IN,47381 +Saratoga,IN,47382 +Selma,IN,47383 +Shirley,IN,47384 +Spiceland,IN,47385 +Springport,IN,47386 +Straughn,IN,47387 +Sulphur Springs,IN,47388 +Union City,IN,47390 +Webster,IN,47392 +Williamsburg,IN,47393 +Winchester,IN,47394 +Yorktown,IN,47396 +Bloomington,IN,47401 +Bloomington,IN,47403 +Bloomington,IN,47404 +Woodbridge,IN,47408 +Bedford,IN,47421 +Bloomfield,IN,47424 +Coal City,IN,47427 +Ellettsville,IN,47429 +Freedom,IN,47431 +French Lick,IN,47432 +Gosport,IN,47433 +Heltonville,IN,47436 +Jasonville,IN,47438 +Linton,IN,47441 +Lyons,IN,47443 +Mitchell,IN,47446 +Nashville,IN,47448 +Newberry,IN,47449 +Oolitic,IN,47451 +Orleans,IN,47452 +Owensburg,IN,47453 +Paoli,IN,47454 +Quincy,IN,47456 +Solsberry,IN,47459 +Spencer,IN,47460 +Springville,IN,47462 +Switz City,IN,47465 +Unionville,IN,47468 +West Baden Sprin,IN,47469 +Williams,IN,47470 +Worthington,IN,47471 +Washington,IN,47501 +Bicknell,IN,47512 +Birdseye,IN,47513 +Branchville,IN,47514 +Siberia,IN,47515 +Bruceville,IN,47516 +Cannelburg,IN,47519 +Mount Pleasant,IN,47520 +Celestine,IN,47521 +Crane Naval Depo,IN,47522 +Dale,IN,47523 +Decker,IN,47524 +Derby,IN,47525 +Dubois,IN,47527 +Edwardsport,IN,47528 +Elnora,IN,47529 +Evanston,IN,47531 +Ferdinand,IN,47532 +Gentryville,IN,47537 +Holland,IN,47541 +Huntingburg,IN,47542 +Haysville,IN,47546 +Buffaloville,IN,47550 +Leopold,IN,47551 +Lincoln City,IN,47552 +Loogootee,IN,47553 +Magnet,IN,47555 +Mariah Hill,IN,47556 +Monroe City,IN,47557 +Montgomery,IN,47558 +47559,IN,47559 +Oaktown,IN,47561 +Odon,IN,47562 +Otwell,IN,47564 +Petersburg,IN,47567 +Plainville,IN,47568 +Rome,IN,47574 +Kyana,IN,47575 +Saint Croix,IN,47576 +Saint Meinrad,IN,47577 +Sandborn,IN,47578 +Santa Claus,IN,47579 +Schnellville,IN,47580 +Shoals,IN,47581 +Stendal,IN,47585 +Tell City,IN,47586 +Tobinsport,IN,47587 +Troy,IN,47588 +Velpen,IN,47590 +Vincennes,IN,47591 +Wheatland,IN,47597 +Winslow,IN,47598 +Boonville,IN,47601 +Chandler,IN,47610 +Chrisney,IN,47611 +Cynthiana,IN,47612 +Elberfeld,IN,47613 +Grandview,IN,47615 +Griffin,IN,47616 +Lynnville,IN,47619 +Mount Vernon,IN,47620 +Newburgh,IN,47630 +New Harmony,IN,47631 +Poseyville,IN,47633 +Richland,IN,47634 +Rockport,IN,47635 +Tennyson,IN,47637 +Wadesville,IN,47638 +Haubstadt,IN,47639 +Hazleton,IN,47640 +Buckskin,IN,47647 +Fort Branch,IN,47648 +Francisco,IN,47649 +Oakland City,IN,47660 +Owensville,IN,47665 +Patoka,IN,47666 +Princeton,IN,47670 +Evansville,IN,47708 +Evansville,IN,47710 +Evansville,IN,47711 +Evansville,IN,47712 +Evansville,IN,47713 +Evansville,IN,47714 +Evansville,IN,47715 +Evansville,IN,47720 +Terre Haute,IN,47802 +Terre Haute,IN,47803 +Terre Haute,IN,47804 +North Terre Haut,IN,47805 +Terre Haute,IN,47807 +Bloomingdale,IN,47832 +Bowling Green,IN,47833 +Brazil,IN,47834 +Bridgeton,IN,47836 +Carbon,IN,47837 +Carlisle,IN,47838 +Centerpoint,IN,47840 +Clay City,IN,47841 +Clinton,IN,47842 +Cory,IN,47846 +Dana,IN,47847 +Dugger,IN,47848 +Fairbanks,IN,47849 +Farmersburg,IN,47850 +Hillsdale,IN,47854 +Lewis,IN,47858 +Marshall,IN,47859 +Merom,IN,47861 +Montezuma,IN,47862 +Pimento,IN,47866 +Poland,IN,47868 +Rockville,IN,47872 +Rosedale,IN,47874 +Shelburn,IN,47879 +Sullivan,IN,47882 +Sandford,IN,47885 +Lafayette,IN,47901 +Lafayette,IN,47904 +Lafayette,IN,47905 +West Lafayette,IN,47906 +Ambia,IN,47917 +Attica,IN,47918 +Battle Ground,IN,47920 +Boswell,IN,47921 +Brook,IN,47922 +Brookston,IN,47923 +Burnettsville,IN,47926 +Cayuga,IN,47928 +Chalmers,IN,47929 +Clarks Hill,IN,47930 +Covington,IN,47932 +Crawfordsville,IN,47933 +Darlington,IN,47940 +Earl Park,IN,47942 +Fair Oaks,IN,47943 +Fowler,IN,47944 +Francesville,IN,47946 +Goodland,IN,47948 +Hillsboro,IN,47949 +Idaville,IN,47950 +Kentland,IN,47951 +Cates,IN,47952 +Ladoga,IN,47954 +Linden,IN,47955 +Medaryville,IN,47957 +Monon,IN,47959 +Monticello,IN,47960 +Morocco,IN,47963 +New Richmond,IN,47967 +New Ross,IN,47968 +Otterbein,IN,47970 +Oxford,IN,47971 +Perrysville,IN,47974 +Pine Village,IN,47975 +Remington,IN,47977 +Collegeville,IN,47978 +Reynolds,IN,47980 +Romney,IN,47981 +Tangier,IN,47985 +Veedersburg,IN,47987 +Waveland,IN,47989 +Waynetown,IN,47990 +West Lebanon,IN,47991 +Westpoint,IN,47992 +Marshfield,IN,47993 +Wingate,IN,47994 +Wolcott,IN,47995 +Ackworth,IA,50001 +Adair,IA,50002 +Adel,IA,50003 +Albion,IA,50005 +Alden,IA,50006 +Alleman,IA,50007 +Allerton,IA,50008 +Altoona,IA,50009 +Ames,IA,50010 +Anita,IA,50020 +Ankeny,IA,50021 +Atlantic,IA,50022 +Audubon,IA,50025 +Bagley,IA,50026 +Barnes City,IA,50027 +Baxter,IA,50028 +Bayard,IA,50029 +Beaconsfield,IA,50030 +Beaver,IA,50031 +Bevington,IA,50033 +Blairsburg,IA,50034 +Bondurant,IA,50035 +Boone,IA,50036 +Booneville,IA,50038 +Bouton,IA,50039 +Boxholm,IA,50040 +Bradford,IA,50041 +Brayton,IA,50042 +Bussey,IA,50044 +Cambridge,IA,50046 +Carlisle,IA,50047 +Casey,IA,50048 +Chariton,IA,50049 +Churdan,IA,50050 +Clemons,IA,50051 +Clio,IA,50052 +Colfax,IA,50054 +Collins,IA,50055 +Colo,IA,50056 +Columbia,IA,50057 +Coon Rapids,IA,50058 +Cooper,IA,50059 +Sewal,IA,50060 +Cumming,IA,50061 +Dallas,IA,50062 +Dallas Center,IA,50063 +Dana,IA,50064 +Pleasanton,IA,50065 +Dawson,IA,50066 +Decatur,IA,50067 +Derby,IA,50068 +De Soto,IA,50069 +Dexter,IA,50070 +Dows,IA,50071 +Earlham,IA,50072 +Elkhart,IA,50073 +Ellston,IA,50074 +Ellsworth,IA,50075 +Exira,IA,50076 +Galt,IA,50101 +Garden City,IA,50102 +Garden Grove,IA,50103 +Gibson,IA,50104 +Gilman,IA,50106 +Grand Junction,IA,50107 +Grand River,IA,50108 +Granger,IA,50109 +Gray,IA,50110 +Grimes,IA,50111 +Grinnell,IA,50112 +Guthrie Center,IA,50115 +Hamilton,IA,50116 +Hamlin,IA,50117 +Hartford,IA,50118 +Harvey,IA,50119 +Haverhill,IA,50120 +Hubbard,IA,50122 +Humeston,IA,50123 +Huxley,IA,50124 +Spring Hill,IA,50125 +Iowa Falls,IA,50126 +Ira,IA,50127 +Jamaica,IA,50128 +Jefferson,IA,50129 +Jewell,IA,50130 +Johnston,IA,50131 +Kamrar,IA,50132 +Kellerton,IA,50133 +Kelley,IA,50134 +Kellogg,IA,50135 +Keswick,IA,50136 +Knoxville,IA,50138 +Lacona,IA,50139 +Lamoni,IA,50140 +Laurel,IA,50141 +Leighton,IA,50143 +Leon,IA,50144 +Liberty Center,IA,50145 +Linden,IA,50146 +Lineville,IA,50147 +Liscomb,IA,50148 +Lorimor,IA,50149 +Lovilia,IA,50150 +Lucas,IA,50151 +Luther,IA,50152 +Lynnville,IA,50153 +Mc Callsburg,IA,50154 +Macksburg,IA,50155 +Madrid,IA,50156 +Malcom,IA,50157 +Marshalltown,IA,50158 +Maxwell,IA,50161 +Melbourne,IA,50162 +Melcher-Dallas,IA,50163 +Menlo,IA,50164 +Millerton,IA,50165 +Milo,IA,50166 +Minburn,IA,50167 +Mingo,IA,50168 +Mitchellville,IA,50169 +Monroe,IA,50170 +Montezuma,IA,50171 +Guernsey,IA,50172 +Montour,IA,50173 +Murray,IA,50174 +Nevada,IA,50201 +New Providence,IA,50206 +New Sharon,IA,50207 +Newton,IA,50208 +New Virginia,IA,50210 +Norwalk,IA,50211 +Ogden,IA,50212 +Osceola,IA,50213 +Otley,IA,50214 +Panora,IA,50216 +Paton,IA,50217 +Patterson,IA,50218 +Pella,IA,50219 +Perry,IA,50220 +Peru,IA,50222 +Pilot Mound,IA,50223 +Pleasantville,IA,50225 +Polk City,IA,50226 +Popejoy,IA,50227 +Prairie City,IA,50228 +Prole,IA,50229 +Radcliffe,IA,50230 +Randall,IA,50231 +Reasnor,IA,50232 +Redfield,IA,50233 +Rhodes,IA,50234 +Rippey,IA,50235 +Roland,IA,50236 +Runnells,IA,50237 +Russell,IA,50238 +Saint Anthony,IA,50239 +Saint Charles,IA,50240 +Saint Marys,IA,50241 +Searsboro,IA,50242 +Slater,IA,50244 +Stanhope,IA,50246 +State Center,IA,50247 +Story City,IA,50248 +Stratford,IA,50249 +Stuart,IA,50250 +Sully,IA,50251 +Swan,IA,50252 +Thayer,IA,50254 +Tracy,IA,50256 +Truro,IA,50257 +Union,IA,50258 +Van Meter,IA,50261 +Van Wert,IA,50262 +Waukee,IA,50263 +Weldon,IA,50264 +West Des Moines,IA,50265 +What Cheer,IA,50268 +Williams,IA,50271 +Williamson,IA,50272 +Winterset,IA,50273 +Wiota,IA,50274 +Woodburn,IA,50275 +Woodward,IA,50276 +Yale,IA,50277 +Zearing,IA,50278 +Des Moines,IA,50309 +Des Moines,IA,50310 +Windsor Heights,IA,50311 +Des Moines,IA,50312 +Des Moines,IA,50313 +Des Moines,IA,50314 +Des Moines,IA,50315 +Des Moines,IA,50316 +Pleasant Hill,IA,50317 +Des Moines,IA,50320 +Des Moines,IA,50321 +Urbandale,IA,50322 +Clive,IA,50325 +Mason City,IA,50401 +Alexander,IA,50420 +Belmond,IA,50421 +Britt,IA,50423 +Buffalo Center,IA,50424 +Clear Lake,IA,50428 +Corwith,IA,50430 +Crystal Lake,IA,50432 +Dougherty,IA,50433 +Fertile,IA,50434 +Floyd,IA,50435 +Forest City,IA,50436 +Garner,IA,50438 +Goodell,IA,50439 +Grafton,IA,50440 +Hampton,IA,50441 +Hanlontown,IA,50444 +Joice,IA,50446 +Kanawha,IA,50447 +Kensett,IA,50448 +Klemme,IA,50449 +Lake Mills,IA,50450 +Lakota,IA,50451 +Latimer,IA,50452 +Leland,IA,50453 +Little Cedar,IA,50454 +Mc Intire,IA,50455 +Manly,IA,50456 +Meservey,IA,50457 +Nora Springs,IA,50458 +Northwood,IA,50459 +Orchard,IA,50460 +Osage,IA,50461 +Plymouth,IA,50464 +Rake,IA,50465 +Riceville,IA,50466 +Rock Falls,IA,50467 +Rockford,IA,50468 +Rockwell,IA,50469 +Rowan,IA,50470 +Rudd,IA,50471 +Saint Ansgar,IA,50472 +Scarville,IA,50473 +Sheffield,IA,50475 +Stacyville,IA,50476 +Swaledale,IA,50477 +Thompson,IA,50478 +Thornton,IA,50479 +Titonka,IA,50480 +Ventura,IA,50482 +Wesley,IA,50483 +Woden,IA,50484 +Fort Dodge,IA,50501 +Albert City,IA,50510 +Algona,IA,50511 +Armstrong,IA,50514 +Ayrshire,IA,50515 +Badger,IA,50516 +Bancroft,IA,50517 +Barnum,IA,50518 +Bode,IA,50519 +Bradgate,IA,50520 +Burnside,IA,50521 +Burt,IA,50522 +Callender,IA,50523 +Clare,IA,50524 +Clarion,IA,50525 +Curlew,IA,50527 +Cylinder,IA,50528 +Dayton,IA,50530 +Dolliver,IA,50531 +Duncombe,IA,50532 +Eagle Grove,IA,50533 +Early,IA,50535 +Emmetsburg,IA,50536 +Farnhamville,IA,50538 +Fenton,IA,50539 +Fonda,IA,50540 +Gilmore City,IA,50541 +Goldfield,IA,50542 +Gowrie,IA,50543 +Harcourt,IA,50544 +Hardy,IA,50545 +Havelock,IA,50546 +Humboldt,IA,50548 +Jolley,IA,50551 +Knierim,IA,50552 +Knoke,IA,50553 +Laurens,IA,50554 +Ledyard,IA,50556 +Lehigh,IA,50557 +Livermore,IA,50558 +Lone Rock,IA,50559 +Lu Verne,IA,50560 +Lytton,IA,50561 +Mallard,IA,50562 +Manson,IA,50563 +Marathon,IA,50565 +Moorland,IA,50566 +Nemaha,IA,50567 +Newell,IA,50568 +Otho,IA,50569 +Ottosen,IA,50570 +Palmer,IA,50571 +Plover,IA,50573 +Pocahontas,IA,50574 +Pomeroy,IA,50575 +Rembrandt,IA,50576 +Renwick,IA,50577 +Ringsted,IA,50578 +Rockwell City,IA,50579 +Rodman,IA,50580 +Rolfe,IA,50581 +Rutland,IA,50582 +Sac City,IA,50583 +Sioux Rapids,IA,50585 +Somers,IA,50586 +Storm Lake,IA,50588 +Swea City,IA,50590 +Thor,IA,50591 +Vincent,IA,50594 +Webster City,IA,50595 +West Bend,IA,50597 +Whittemore,IA,50598 +Woolstock,IA,50599 +Ackley,IA,50601 +Allison,IA,50602 +Alta Vista,IA,50603 +Aplington,IA,50604 +Aredale,IA,50605 +Arlington,IA,50606 +Aurora,IA,50607 +Austinville,IA,50608 +Beaman,IA,50609 +Bristow,IA,50611 +Buckingham,IA,50612 +Cedar Falls,IA,50613 +Charles City,IA,50616 +Clarksville,IA,50619 +Conrad,IA,50621 +Denver,IA,50622 +Dike,IA,50624 +Dumont,IA,50625 +Dunkerton,IA,50626 +Eldora,IA,50627 +Elma,IA,50628 +Fairbank,IA,50629 +Fredericksburg,IA,50630 +Garwin,IA,50632 +Geneva,IA,50633 +Gladbrook,IA,50635 +Greene,IA,50636 +Grundy Center,IA,50638 +Hansell,IA,50640 +Hazleton,IA,50641 +Holland,IA,50642 +Hudson,IA,50643 +Independence,IA,50644 +Ionia,IA,50645 +Janesville,IA,50647 +Jesup,IA,50648 +Kesley,IA,50649 +Lamont,IA,50650 +La Porte City,IA,50651 +Lincoln,IA,50652 +Marble Rock,IA,50653 +Masonville,IA,50654 +Maynard,IA,50655 +Nashua,IA,50658 +New Hampton,IA,50659 +New Hartford,IA,50660 +Oelwein,IA,50662 +Parkersburg,IA,50665 +Plainfield,IA,50666 +Raymond,IA,50667 +Readlyn,IA,50668 +Reinbeck,IA,50669 +Shell Rock,IA,50670 +Stanley,IA,50671 +Steamboat Rock,IA,50672 +Sumner,IA,50674 +Traer,IA,50675 +Tripoli,IA,50676 +Bremer,IA,50677 +Wellsburg,IA,50680 +Westgate,IA,50681 +Winthrop,IA,50682 +Waterloo,IA,50701 +Waterloo,IA,50702 +Waterloo,IA,50703 +Washburn,IA,50706 +Evansdale,IA,50707 +Nevinville,IA,50801 +Afton,IA,50830 +Bedford,IA,50833 +Benton,IA,50835 +Blockton,IA,50836 +Bridgewater,IA,50837 +Clearfield,IA,50840 +Corning,IA,50841 +Cumberland,IA,50843 +Delphos,IA,50844 +Diagonal,IA,50845 +Fontanelle,IA,50846 +Grant,IA,50847 +Gravity,IA,50848 +Greenfield,IA,50849 +Kent,IA,50850 +Lenox,IA,50851 +Maloy,IA,50852 +Massena,IA,50853 +Mount Ayr,IA,50854 +50855,IA,50855 +Nodaway,IA,50857 +Orient,IA,50858 +Prescott,IA,50859 +Redding,IA,50860 +Shannon City,IA,50861 +Sharpsburg,IA,50862 +Tingley,IA,50863 +Villisca,IA,50864 +Akron,IA,51001 +Alta,IA,51002 +Alton,IA,51003 +Anthon,IA,51004 +Aurelia,IA,51005 +Battle Creek,IA,51006 +Bronson,IA,51007 +Calumet,IA,51009 +Castana,IA,51010 +Cherokee,IA,51012 +Cleghorn,IA,51014 +Correctionville,IA,51016 +Cushing,IA,51018 +Danbury,IA,51019 +Galva,IA,51020 +Granville,IA,51022 +Hawarden,IA,51023 +Hinton,IA,51024 +Holstein,IA,51025 +Hornick,IA,51026 +Ireton,IA,51027 +Kingsley,IA,51028 +Larrabee,IA,51029 +Lawton,IA,51030 +Le Mars,IA,51031 +Linn Grove,IA,51033 +Mapleton,IA,51034 +Marcus,IA,51035 +Maurice,IA,51036 +Meriden,IA,51037 +Merrill,IA,51038 +Moville,IA,51039 +Onawa,IA,51040 +Orange City,IA,51041 +Oto,IA,51044 +Paullina,IA,51046 +Peterson,IA,51047 +Pierson,IA,51048 +Quimby,IA,51049 +Remsen,IA,51050 +Rodney,IA,51051 +Salix,IA,51052 +Schaller,IA,51053 +Sergeant Bluff,IA,51054 +Sloan,IA,51055 +Smithland,IA,51056 +Sutherland,IA,51058 +Turin,IA,51059 +Ute,IA,51060 +Washta,IA,51061 +Westfield,IA,51062 +Whiting,IA,51063 +Sioux City,IA,51101 +Sioux City,IA,51103 +Sioux City,IA,51104 +Sioux City,IA,51105 +Sioux City,IA,51106 +Sioux City,IA,51107 +Sioux City,IA,51108 +Sioux City,IA,51109 +Sioux City,IA,51110 +Sioux City,IA,51111 +Sheldon,IA,51201 +Alvord,IA,51230 +Archer,IA,51231 +Ashton,IA,51232 +Boyden,IA,51234 +Doon,IA,51235 +George,IA,51237 +Hospers,IA,51238 +Hull,IA,51239 +Inwood,IA,51240 +Larchwood,IA,51241 +Little Rock,IA,51243 +Primghar,IA,51245 +Rock Rapids,IA,51246 +Rock Valley,IA,51247 +Sanborn,IA,51248 +Sibley,IA,51249 +Sioux Center,IA,51250 +Spencer,IA,51301 +Arnolds Park,IA,51331 +Dickens,IA,51333 +Estherville,IA,51334 +Everly,IA,51338 +Fostoria,IA,51340 +Graettinger,IA,51342 +Greenville,IA,51343 +Harris,IA,51345 +Hartley,IA,51346 +Lake Park,IA,51347 +Melvin,IA,51350 +Milford,IA,51351 +Ocheyedan,IA,51354 +Okoboji,IA,51355 +Royal,IA,51357 +Ruthven,IA,51358 +Spirit Lake,IA,51360 +Superior,IA,51363 +Terril,IA,51364 +Wallingford,IA,51365 +Webb,IA,51366 +Carroll,IA,51401 +Arcadia,IA,51430 +Arthur,IA,51431 +Aspinwall,IA,51432 +Yetter,IA,51433 +Breda,IA,51436 +Charter Oak,IA,51439 +Dedham,IA,51440 +Deloit,IA,51441 +Denison,IA,51442 +Glidden,IA,51443 +Halbur,IA,51444 +Ida Grove,IA,51445 +Irwin,IA,51446 +Kirkman,IA,51447 +Kiron,IA,51448 +Lake City,IA,51449 +Lake View,IA,51450 +Lanesboro,IA,51451 +Lidderdale,IA,51452 +Lohrville,IA,51453 +Manilla,IA,51454 +Manning,IA,51455 +Odebolt,IA,51458 +Ralston,IA,51459 +Ricketts,IA,51460 +Schleswig,IA,51461 +Scranton,IA,51462 +Templeton,IA,51463 +Vail,IA,51465 +Wall Lake,IA,51466 +Westside,IA,51467 +Manawa,IA,51501 +Council Bluffs,IA,51503 +Carter Lake,IA,51510 +Arion,IA,51520 +Avoca,IA,51521 +Blencoe,IA,51523 +Carson,IA,51525 +Crescent,IA,51526 +Earling,IA,51527 +Dow City,IA,51528 +Earling,IA,51529 +Earling,IA,51530 +Elk Horn,IA,51531 +Elliott,IA,51532 +Emerson,IA,51533 +Glenwood,IA,51534 +Griswold,IA,51535 +Hancock,IA,51536 +Harlan,IA,51537 +Hastings,IA,51540 +Henderson,IA,51541 +Honey Creek,IA,51542 +Kimballton,IA,51543 +Lewis,IA,51544 +Little Sioux,IA,51545 +Logan,IA,51546 +Mc Clelland,IA,51548 +Macedonia,IA,51549 +Magnolia,IA,51550 +Malvern,IA,51551 +Marne,IA,51552 +Minden,IA,51553 +Mineola,IA,51554 +Missouri Valley,IA,51555 +Modale,IA,51556 +Mondamin,IA,51557 +Moorhead,IA,51558 +Neola,IA,51559 +Oakland,IA,51560 +Pacific Junction,IA,51561 +Panama,IA,51562 +Persia,IA,51563 +Pisgah,IA,51564 +Portsmouth,IA,51565 +Red Oak,IA,51566 +Shelby,IA,51570 +Silver City,IA,51571 +Soldier,IA,51572 +Stanton,IA,51573 +Treynor,IA,51575 +Underwood,IA,51576 +Walnut,IA,51577 +Westphalia,IA,51578 +Woodbine,IA,51579 +Shenandoah,IA,51601 +Blanchard,IA,51630 +Braddyville,IA,51631 +Clarinda,IA,51632 +Coin,IA,51636 +College Springs,IA,51637 +Essex,IA,51638 +Farragut,IA,51639 +Hamburg,IA,51640 +Imogene,IA,51645 +New Market,IA,51646 +Northboro,IA,51647 +Percival,IA,51648 +Randolph,IA,51649 +Riverton,IA,51650 +Shambaugh,IA,51651 +Sidney,IA,51652 +Tabor,IA,51653 +Thurman,IA,51654 +Yorktown,IA,51656 +Dubuque,IA,52001 +Dubuque,IA,52002 +Dubuque,IA,52003 +Andrew,IA,52030 +Bellevue,IA,52031 +Bernard,IA,52032 +Cascade,IA,52033 +Colesburg,IA,52035 +Delaware,IA,52036 +Delmar,IA,52037 +Dundee,IA,52038 +Durango,IA,52039 +Dyersville,IA,52040 +Earlville,IA,52041 +Edgewood,IA,52042 +Elkader,IA,52043 +Elkport,IA,52044 +Epworth,IA,52045 +Farley,IA,52046 +Farmersburg,IA,52047 +Garber,IA,52048 +Garnavillo,IA,52049 +Greeley,IA,52050 +Guttenberg,IA,52052 +Holy Cross,IA,52053 +La Motte,IA,52054 +Manchester,IA,52057 +Maquoketa,IA,52060 +Miles,IA,52064 +New Vienna,IA,52065 +North Buena Vist,IA,52066 +Peosta,IA,52068 +Preston,IA,52069 +Sabula,IA,52070 +Saint Donatus,IA,52071 +Saint Olaf,IA,52072 +Sherrill,IA,52073 +Spragueville,IA,52074 +Springbrook,IA,52075 +Strawberry Point,IA,52076 +Volga,IA,52077 +Worthington,IA,52078 +Zwingle,IA,52079 +Decorah,IA,52101 +Burr Oak,IA,52131 +Calmar,IA,52132 +Castalia,IA,52133 +Chester,IA,52134 +Clermont,IA,52135 +Cresco,IA,52136 +Dorchester,IA,52140 +Elgin,IA,52141 +Fayette,IA,52142 +Fort Atkinson,IA,52144 +Harpers Ferry,IA,52146 +Hawkeye,IA,52147 +Jackson Junction,IA,52150 +Lansing,IA,52151 +Lawler,IA,52154 +Lime Springs,IA,52155 +Luana,IA,52156 +Mc Gregor,IA,52157 +Marquette,IA,52158 +Monona,IA,52159 +New Albin,IA,52160 +Ossian,IA,52161 +Postville,IA,52162 +Randalia,IA,52164 +Ridgeway,IA,52165 +Saint Lucas,IA,52166 +Wadena,IA,52169 +Waterville,IA,52170 +Waucoma,IA,52171 +Waukon,IA,52172 +Eldorado,IA,52175 +Ainsworth,IA,52201 +Alburnett,IA,52202 +Amana,IA,52203 +Anamosa,IA,52205 +Atkins,IA,52206 +Baldwin,IA,52207 +Belle Plaine,IA,52208 +Blairstown,IA,52209 +Brandon,IA,52210 +Brooklyn,IA,52211 +Center Junction,IA,52212 +Center Point,IA,52213 +Central City,IA,52214 +Chelsea,IA,52215 +Clarence,IA,52216 +Clutier,IA,52217 +Coggon,IA,52218 +Conroy,IA,52220 +Deep River,IA,52222 +Delhi,IA,52223 +Dysart,IA,52224 +Elberon,IA,52225 +Elwood,IA,52226 +Ely,IA,52227 +Fairfax,IA,52228 +Garrison,IA,52229 +Harper,IA,52231 +Hartwick,IA,52232 +Hiawatha,IA,52233 +Homestead,IA,52236 +Hopkinton,IA,52237 +Iowa City,IA,52240 +Coralville,IA,52241 +Iowa City,IA,52245 +Iowa City,IA,52246 +Kalona,IA,52247 +Keota,IA,52248 +Keystone,IA,52249 +Kinross,IA,52250 +Ladora,IA,52251 +Lisbon,IA,52253 +Lost Nation,IA,52254 +Lowden,IA,52255 +Luzerne,IA,52257 +Marengo,IA,52301 +Marion,IA,52302 +Martelle,IA,52305 +Mechanicsville,IA,52306 +Middle Amana,IA,52307 +Millersburg,IA,52308 +Monmouth,IA,52309 +Monticello,IA,52310 +Mount Auburn,IA,52313 +Mount Vernon,IA,52314 +Newhall,IA,52315 +North English,IA,52316 +North Liberty,IA,52317 +Norway,IA,52318 +Olin,IA,52320 +Onslow,IA,52321 +Oxford,IA,52322 +Oxford Junction,IA,52323 +Palo,IA,52324 +Parnell,IA,52325 +Quasqueton,IA,52326 +Riverside,IA,52327 +Robins,IA,52328 +Rowley,IA,52329 +Ryan,IA,52330 +Scotch Grove,IA,52331 +Shellsburg,IA,52332 +Solon,IA,52333 +South Amana,IA,52334 +South English,IA,52335 +Springville,IA,52336 +Stanwood,IA,52337 +Swisher,IA,52338 +Tama,IA,52339 +Toddville,IA,52341 +Toledo,IA,52342 +Toronto,IA,52343 +Van Horne,IA,52346 +Victor,IA,52347 +Vining,IA,52348 +Vinton,IA,52349 +Walker,IA,52352 +Washington,IA,52353 +Watkins,IA,52354 +Webster,IA,52355 +Wellman,IA,52356 +West Amana,IA,52357 +West Branch,IA,52358 +West Chester,IA,52359 +Williamsburg,IA,52361 +Wyoming,IA,52362 +Cedar Rapids,IA,52401 +Cedar Rapids,IA,52402 +Cedar Rapids,IA,52403 +Cedar Rapids,IA,52404 +Cedar Rapids,IA,52405 +Highland Center,IA,52501 +Agency,IA,52530 +Albia,IA,52531 +Batavia,IA,52533 +Beacon,IA,52534 +Birmingham,IA,52535 +Blakesburg,IA,52536 +Bloomfield,IA,52537 +West Grove,IA,52538 +Brighton,IA,52540 +Cantril,IA,52542 +Cedar,IA,52543 +Centerville,IA,52544 +Chillicothe,IA,52548 +Cincinnati,IA,52549 +Delta,IA,52550 +Douds,IA,52551 +Drakesville,IA,52552 +Eddyville,IA,52553 +Eldon,IA,52554 +Exline,IA,52555 +Fairfield,IA,52556 +Floris,IA,52560 +Fremont,IA,52561 +Hedrick,IA,52563 +Keosauqua,IA,52565 +Kirkville,IA,52566 +Libertyville,IA,52567 +Melrose,IA,52569 +Milton,IA,52570 +Moravia,IA,52571 +Moulton,IA,52572 +Mount Sterling,IA,52573 +Mystic,IA,52574 +Numa,IA,52575 +Ollie,IA,52576 +Oskaloosa,IA,52577 +Packwood,IA,52580 +Plano,IA,52581 +Promise City,IA,52583 +Pulaski,IA,52584 +Richland,IA,52585 +Rose Hill,IA,52586 +Selma,IA,52588 +Seymour,IA,52590 +Sigourney,IA,52591 +Udell,IA,52593 +Unionville,IA,52594 +Burlington,IA,52601 +Argyle,IA,52619 +Bonaparte,IA,52620 +Crawfordsville,IA,52621 +Danville,IA,52623 +Denmark,IA,52624 +Donnellson,IA,52625 +Farmington,IA,52626 +Fort Madison,IA,52627 +Hillsboro,IA,52630 +Houghton,IA,52631 +Keokuk,IA,52632 +Lockridge,IA,52635 +Mediapolis,IA,52637 +Middletown,IA,52638 +Montrose,IA,52639 +Morning Sun,IA,52640 +Mount Pleasant,IA,52641 +Mount Union,IA,52644 +New London,IA,52645 +Oakville,IA,52646 +Olds,IA,52647 +Salem,IA,52649 +Sperry,IA,52650 +Stockport,IA,52651 +Wapello,IA,52653 +Wayland,IA,52654 +West Burlington,IA,52655 +West Point,IA,52656 +Saint Paul,IA,52657 +Wever,IA,52658 +Winfield,IA,52659 +Yarmouth,IA,52660 +Andover,IA,52701 +Atalissa,IA,52720 +Bennett,IA,52721 +Bettendorf,IA,52722 +Blue Grass,IA,52726 +Bryant,IA,52727 +Calamus,IA,52729 +Camanche,IA,52730 +Charlotte,IA,52731 +Clinton,IA,52732 +Columbus Junctio,IA,52738 +Conesville,IA,52739 +De Witt,IA,52742 +Big Rock,IA,52745 +Donahue,IA,52746 +Durant,IA,52747 +Eldridge,IA,52748 +Goose Lake,IA,52750 +Grand Mound,IA,52751 +Le Claire,IA,52753 +Letts,IA,52754 +Lone Tree,IA,52755 +Long Grove,IA,52756 +Moscow,IA,52760 +Muscatine,IA,52761 +New Liberty,IA,52765 +Nichols,IA,52766 +Princeton,IA,52768 +Stockton,IA,52769 +Tipton,IA,52772 +Walcott,IA,52773 +Welton,IA,52774 +West Liberty,IA,52776 +Wheatland,IA,52777 +Wilton,IA,52778 +Davenport,IA,52802 +Davenport,IA,52803 +Davenport,IA,52804 +Davenport,IA,52806 +Davenport,IA,52807 +Atchison,KS,66002 +Baldwin City,KS,66006 +Basehor,KS,66007 +Bendena,KS,66008 +Blue Mound,KS,66010 +Lake Of The Fore,KS,66012 +Bucyrus,KS,66013 +Centerville,KS,66014 +Colony,KS,66015 +Cummings,KS,66016 +Denton,KS,66017 +De Soto,KS,66018 +Easton,KS,66020 +Edgerton,KS,66021 +Effingham,KS,66023 +Eudora,KS,66025 +Fontana,KS,66026 +Fort Leavenworth,KS,66027 +Gardner,KS,66030 +Industrial Airpo,KS,66031 +Garnett,KS,66032 +Greeley,KS,66033 +Highland,KS,66035 +Hillsdale,KS,66036 +Mildred,KS,66039 +La Cygne,KS,66040 +Huron,KS,66041 +Lane,KS,66042 +Lansing,KS,66043 +Lawrence,KS,66044 +Lawrence,KS,66046 +Lawrence,KS,66047 +Leavenworth,KS,66048 +Lawrence,KS,66049 +Lecompton,KS,66050 +Linwood,KS,66052 +Louisburg,KS,66053 +Mc Louth,KS,66054 +Mound City,KS,66056 +Muscotah,KS,66058 +Nortonville,KS,66060 +Olathe,KS,66061 +Olathe,KS,66062 +Osawatomie,KS,66064 +Oskaloosa,KS,66066 +Ottawa,KS,66067 +Ozawkie,KS,66070 +Paola,KS,66071 +Parker,KS,66072 +Perry,KS,66073 +Pleasanton,KS,66075 +Pomona,KS,66076 +Princeton,KS,66078 +Rantoul,KS,66079 +Richmond,KS,66080 +66081,KS,66081 +Spring Hill,KS,66083 +Stilwell,KS,66085 +Tonganoxie,KS,66086 +Severance,KS,66087 +Valley Falls,KS,66088 +Wathena,KS,66090 +Welda,KS,66091 +Wellsville,KS,66092 +Westphalia,KS,66093 +White Cloud,KS,66094 +Williamsburg,KS,66095 +Winchester,KS,66097 +Kansas City,KS,66101 +Kansas City,KS,66102 +Rosedale,KS,66103 +Kansas City,KS,66104 +Kansas City,KS,66105 +Lake Quivira,KS,66106 +Kansas City,KS,66109 +Kansas City,KS,66111 +Kansas City,KS,66112 +Kansas City,KS,66115 +Kansas City,KS,66118 +Countryside,KS,66202 +Shawnee,KS,66203 +Overland Park,KS,66204 +Mission,KS,66205 +Leawood,KS,66206 +Shawnee Mission,KS,66207 +Prairie Village,KS,66208 +Leawood,KS,66209 +Lenexa,KS,66210 +Leawood,KS,66211 +Overland Park,KS,66212 +Overland Park,KS,66213 +Lenexa,KS,66214 +Lenexa,KS,66215 +Shawnee,KS,66216 +Shawnee,KS,66217 +Shawnee,KS,66218 +Lenexa,KS,66219 +Lenexa,KS,66220 +Stanley,KS,66221 +Stanley,KS,66223 +Stanley,KS,66224 +Shawnee,KS,66226 +Lenexa,KS,66227 +Alma,KS,66401 +Auburn,KS,66402 +Axtell,KS,66403 +Baileyville,KS,66404 +Beattie,KS,66406 +Belvue,KS,66407 +Bern,KS,66408 +Berryton,KS,66409 +Blue Rapids,KS,66411 +Bremen,KS,66412 +Burlingame,KS,66413 +Carbondale,KS,66414 +Centralia,KS,66415 +Circleville,KS,66416 +Corning,KS,66417 +Delia,KS,66418 +Denison,KS,66419 +Dover,KS,66420 +Emmett,KS,66422 +Eskridge,KS,66423 +Everest,KS,66424 +Fairview,KS,66425 +Winifred,KS,66427 +Goff,KS,66428 +Grantville,KS,66429 +Harveyville,KS,66431 +Havensville,KS,66432 +Herkimer,KS,66433 +Reserve,KS,66434 +Holton,KS,66436 +Home,KS,66438 +Horton,KS,66439 +Hoyt,KS,66440 +Junction City,KS,66441 +Fort Riley,KS,66442 +Leonardville,KS,66449 +Louisville,KS,66450 +Lyndon,KS,66451 +Manhattan,KS,66502 +Maple Hill,KS,66507 +Marysville,KS,66508 +Mayetta,KS,66509 +Melvern,KS,66510 +Meriden,KS,66512 +Milford,KS,66514 +Morrill,KS,66515 +Netawaka,KS,66516 +Ogden,KS,66517 +Oketo,KS,66518 +Olsburg,KS,66520 +Duluth,KS,66521 +Oneida,KS,66522 +Osage City,KS,66523 +Overbrook,KS,66524 +Paxico,KS,66526 +Powhattan,KS,66527 +Quenemo,KS,66528 +Riley,KS,66531 +Leona,KS,66532 +Rossville,KS,66533 +Sabetha,KS,66534 +Saint George,KS,66535 +Saint Marys,KS,66536 +Scranton,KS,66537 +Kelly,KS,66538 +Silver Lake,KS,66539 +Soldier,KS,66540 +Summerfield,KS,66541 +Tecumseh,KS,66542 +Vassar,KS,66543 +Vliets,KS,66544 +66545,KS,66545 +Wakarusa,KS,66546 +Wamego,KS,66547 +Waterville,KS,66548 +Blaine,KS,66549 +Wetmore,KS,66550 +Onaga,KS,66551 +Whiting,KS,66552 +Randolph,KS,66554 +Topeka,KS,66603 +Topeka,KS,66604 +Topeka,KS,66605 +Topeka,KS,66606 +Topeka,KS,66607 +Topeka,KS,66608 +Topeka,KS,66609 +Topeka,KS,66610 +Topeka,KS,66611 +Topeka,KS,66612 +Topeka,KS,66614 +Topeka,KS,66615 +Topeka,KS,66616 +Topeka,KS,66617 +Topeka,KS,66618 +Pauline,KS,66619 +Hiattville,KS,66701 +Altoona,KS,66710 +Arcadia,KS,66711 +Baxter Springs,KS,66713 +Benedict,KS,66714 +Bronson,KS,66716 +Buffalo,KS,66717 +Chanute,KS,66720 +Cherokee,KS,66724 +Hallowell,KS,66725 +Coyville,KS,66727 +Crestline,KS,66728 +Elsmore,KS,66732 +Erie,KS,66733 +Farlington,KS,66734 +Lafontaine,KS,66736 +Fulton,KS,66738 +Galena,KS,66739 +Galesburg,KS,66740 +Garland,KS,66741 +Girard,KS,66743 +Hepler,KS,66746 +Humboldt,KS,66748 +Carlyle,KS,66749 +La Harpe,KS,66751 +Mc Cune,KS,66753 +Mapleton,KS,66754 +Moran,KS,66755 +Mulberry,KS,66756 +Neodesha,KS,66757 +Neosho Falls,KS,66758 +New Albany,KS,66759 +Piqua,KS,66761 +Radley,KS,66762 +Prescott,KS,66767 +Redfield,KS,66769 +Riverton,KS,66770 +Saint Paul,KS,66771 +Savonburg,KS,66772 +Carona,KS,66773 +Stark,KS,66775 +Thayer,KS,66776 +Toronto,KS,66777 +Treece,KS,66778 +Uniontown,KS,66779 +Walnut,KS,66780 +Lawton,KS,66781 +Yates Center,KS,66783 +Emporia,KS,66801 +Admire,KS,66830 +Bushong,KS,66833 +Alta Vista,KS,66834 +Americus,KS,66835 +Burdick,KS,66838 +Strawn,KS,66839 +Burns,KS,66840 +Cassoday,KS,66842 +Clements,KS,66843 +Cottonwood Falls,KS,66845 +Dunlap,KS,66846 +66847,KS,66847 +Dwight,KS,66849 +Elmdale,KS,66850 +Florence,KS,66851 +Gridley,KS,66852 +Hamilton,KS,66853 +Hartford,KS,66854 +Lebo,KS,66856 +Le Roy,KS,66857 +Antelope,KS,66858 +Lost Springs,KS,66859 +Madison,KS,66860 +Marion,KS,66861 +Matfield Green,KS,66862 +Neosho Rapids,KS,66864 +Olpe,KS,66865 +Peabody,KS,66866 +Reading,KS,66868 +Strong City,KS,66869 +Virgil,KS,66870 +Waverly,KS,66871 +White City,KS,66872 +Wilsey,KS,66873 +Rice,KS,66901 +Agenda,KS,66930 +Ames,KS,66931 +Athol,KS,66932 +Barnes,KS,66933 +Belleville,KS,66935 +Burr Oak,KS,66936 +Clifton,KS,66937 +Clyde,KS,66938 +Courtland,KS,66939 +Cuba,KS,66940 +Esbon,KS,66941 +Formoso,KS,66942 +Greenleaf,KS,66943 +Haddam,KS,66944 +Hanover,KS,66945 +Hollenberg,KS,66946 +Jamestown,KS,66948 +Ionia,KS,66949 +Kensington,KS,66951 +Bellaire,KS,66952 +Linn,KS,66953 +Mahaska,KS,66955 +Mankato,KS,66956 +Morrowville,KS,66958 +Munden,KS,66959 +Narka,KS,66960 +Norway,KS,66961 +Palmer,KS,66962 +Randall,KS,66963 +Republic,KS,66964 +Scandia,KS,66966 +Smith Center,KS,66967 +Washington,KS,66968 +Webber,KS,66970 +Andale,KS,67001 +Andover,KS,67002 +Anthony,KS,67003 +Argonia,KS,67004 +Arkansas City,KS,67005 +Atlanta,KS,67008 +Attica,KS,67009 +Augusta,KS,67010 +Beaumont,KS,67012 +Belle Plaine,KS,67013 +67014,KS,67014 +Bentley,KS,67016 +Benton,KS,67017 +Bluff City,KS,67018 +Burden,KS,67019 +Burrton,KS,67020 +Byers,KS,67021 +Caldwell,KS,67022 +Cambridge,KS,67023 +Cedar Vale,KS,67024 +Cheney,KS,67025 +Clearwater,KS,67026 +Coats,KS,67028 +Coldwater,KS,67029 +Colwich,KS,67030 +Conway Springs,KS,67031 +Corbin,KS,67032 +Penalosa,KS,67035 +Danville,KS,67036 +Derby,KS,67037 +Dexter,KS,67038 +Douglass,KS,67039 +Elbing,KS,67041 +El Dorado,KS,67042 +Eureka,KS,67045 +Fall River,KS,67047 +Freeport,KS,67049 +Garden Plain,KS,67050 +Geuda Springs,KS,67051 +Goddard,KS,67052 +Goessel,KS,67053 +Greensburg,KS,67054 +Halstead,KS,67056 +Hardtner,KS,67057 +Harper,KS,67058 +Haviland,KS,67059 +Haysville,KS,67060 +Hazelton,KS,67061 +Hesston,KS,67062 +Hillsboro,KS,67063 +Isabel,KS,67065 +Iuka,KS,67066 +Belmont,KS,67068 +Kiowa,KS,67070 +Lake City,KS,67071 +Latham,KS,67072 +Lehigh,KS,67073 +Leon,KS,67074 +Maize,KS,67101 +Maple City,KS,67102 +Mayfield,KS,67103 +Medicine Lodge,KS,67104 +Milan,KS,67105 +Milton,KS,67106 +Moundridge,KS,67107 +Mount Hope,KS,67108 +Mullinville,KS,67109 +Mulvane,KS,67110 +Murdock,KS,67111 +Nashville,KS,67112 +Newton,KS,67114 +North Newton,KS,67117 +Norwich,KS,67118 +Oxford,KS,67119 +Peck,KS,67120 +Piedmont,KS,67122 +Potwin,KS,67123 +Pratt,KS,67124 +Protection,KS,67127 +Rago,KS,67128 +Rock,KS,67131 +Rosalia,KS,67132 +Rose Hill,KS,67133 +Sawyer,KS,67134 +Sedgwick,KS,67135 +Climax,KS,67137 +Sharon,KS,67138 +South Haven,KS,67140 +Spivey,KS,67142 +Sun City,KS,67143 +Towanda,KS,67144 +Udall,KS,67146 +Valley Center,KS,67147 +Viola,KS,67149 +Waldron,KS,67150 +Walton,KS,67151 +Wellington,KS,67152 +Whitewater,KS,67154 +Wilmore,KS,67155 +Winfield,KS,67156 +Zenda,KS,67159 +Wichita,KS,67202 +Wichita,KS,67203 +Wichita,KS,67204 +Wichita,KS,67205 +Eastborough,KS,67206 +Eastborough,KS,67207 +Wichita,KS,67208 +Wichita,KS,67209 +Wichita,KS,67210 +Wichita,KS,67211 +Wichita,KS,67212 +Wichita,KS,67213 +Wichita,KS,67214 +Wichita,KS,67215 +Wichita,KS,67216 +Wichita,KS,67217 +Wichita,KS,67218 +Park City,KS,67219 +Bel Aire,KS,67220 +Mc Connell A F B,KS,67221 +Wichita,KS,67223 +Wichita,KS,67226 +Wichita,KS,67227 +Wichita,KS,67228 +Wichita,KS,67230 +Wichita,KS,67231 +Wichita,KS,67232 +Wichita,KS,67233 +Wichita,KS,67235 +Wichita,KS,67236 +Independence,KS,67301 +Altamont,KS,67330 +Bartlett,KS,67332 +Caney,KS,67333 +Cherryvale,KS,67335 +Chetopa,KS,67336 +Coffeyville,KS,67337 +Dennis,KS,67341 +Edna,KS,67342 +Elk City,KS,67344 +Elk Falls,KS,67345 +Grenola,KS,67346 +Havana,KS,67347 +Howard,KS,67349 +Liberty,KS,67351 +Longton,KS,67352 +Moline,KS,67353 +Mound Valley,KS,67354 +Niotaze,KS,67355 +Oswego,KS,67356 +Parsons,KS,67357 +Peru,KS,67360 +Sedan,KS,67361 +Bavaria,KS,67401 +Abilene,KS,67410 +Ada,KS,67414 +Assaria,KS,67416 +Aurora,KS,67417 +Barnard,KS,67418 +Scottsville,KS,67420 +Bennington,KS,67422 +Beverly,KS,67423 +Brookville,KS,67425 +Bushton,KS,67427 +Canton,KS,67428 +Carlton,KS,67429 +Cawker City,KS,67430 +Chapman,KS,67431 +Clay Center,KS,67432 +Delphos,KS,67436 +Downs,KS,67437 +Durham,KS,67438 +Ellsworth,KS,67439 +Enterprise,KS,67441 +Falun,KS,67442 +Galva,KS,67443 +Geneseo,KS,67444 +Glasco,KS,67445 +Glen Elder,KS,67446 +Green,KS,67447 +Gypsum,KS,67448 +Delavan,KS,67449 +Holyrood,KS,67450 +Hope,KS,67451 +Hunter,KS,67452 +Kanopolis,KS,67454 +Westfall,KS,67455 +Lindsborg,KS,67456 +Little River,KS,67457 +Longford,KS,67458 +Lorraine,KS,67459 +Conway,KS,67460 +Manchester,KS,67463 +Marquette,KS,67464 +Mentor,KS,67465 +Miltonvale,KS,67466 +Minneapolis,KS,67467 +Morganville,KS,67468 +Navarre,KS,67469 +New Cambria,KS,67470 +Oakhill,KS,67472 +Osborne,KS,67473 +Portis,KS,67474 +Ramona,KS,67475 +Roxbury,KS,67476 +Simpson,KS,67478 +Smolan,KS,67479 +Solomon,KS,67480 +Sylvan Grove,KS,67481 +Talmage,KS,67482 +Tampa,KS,67483 +Culver,KS,67484 +Tipton,KS,67485 +Wakefield,KS,67487 +Wells,KS,67488 +Wilson,KS,67490 +Windom,KS,67491 +Woodbine,KS,67492 +Hutchinson,KS,67501 +Medora,KS,67502 +South Hutchinson,KS,67505 +Abbyville,KS,67510 +Albert,KS,67511 +Alden,KS,67512 +Alexander,KS,67513 +Arlington,KS,67514 +Arnold,KS,67515 +Bazine,KS,67516 +Beaver,KS,67517 +Beeler,KS,67518 +Belpre,KS,67519 +Bison,KS,67520 +Brownell,KS,67521 +Buhler,KS,67522 +Burdett,KS,67523 +Chase,KS,67524 +Claflin,KS,67525 +Ellinwood,KS,67526 +Garfield,KS,67529 +Heizer,KS,67530 +Haven,KS,67543 +Susank,KS,67544 +Hudson,KS,67545 +Inman,KS,67546 +Kinsley,KS,67547 +La Crosse,KS,67548 +67549,KS,67549 +Radium,KS,67550 +Lewis,KS,67552 +Liebenthal,KS,67553 +Lyons,KS,67554 +Mc Cracken,KS,67556 +Macksville,KS,67557 +Nekoma,KS,67559 +Ness City,KS,67560 +Nickerson,KS,67561 +Odin,KS,67562 +Offerle,KS,67563 +Galatia,KS,67564 +Galatia,KS,67565 +Partridge,KS,67566 +Pawnee Rock,KS,67567 +Plevna,KS,67568 +Pretty Prairie,KS,67570 +Ransom,KS,67572 +Raymond,KS,67573 +Rozel,KS,67574 +Rush Center,KS,67575 +Saint John,KS,67576 +Seward,KS,67577 +Stafford,KS,67578 +Sterling,KS,67579 +67580,KS,67580 +Sylvia,KS,67581 +Timken,KS,67582 +Langdon,KS,67583 +Utica,KS,67584 +Antonino,KS,67601 +Agra,KS,67621 +Almena,KS,67622 +Alton,KS,67623 +Bogue,KS,67625 +Bunker Hill,KS,67626 +Catharine,KS,67627 +Cedar,KS,67628 +Clayton,KS,67629 +Codell,KS,67630 +Collyer,KS,67631 +Damar,KS,67632 +67633,KS,67633 +Dorrance,KS,67634 +Dresden,KS,67635 +Edmond,KS,67636 +Ellis,KS,67637 +Gaylord,KS,67638 +Glade,KS,67639 +Gorham,KS,67640 +Harlan,KS,67641 +Hill City,KS,67642 +Jennings,KS,67643 +Kirwin,KS,67644 +Densmore,KS,67645 +Logan,KS,67646 +Long Island,KS,67647 +Lucas,KS,67648 +Luray,KS,67649 +Morland,KS,67650 +Natoma,KS,67651 +New Almelo,KS,67652 +Norcatur,KS,67653 +Norton,KS,67654 +Ogallah,KS,67656 +Palco,KS,67657 +Paradise,KS,67658 +Penokee,KS,67659 +Pfeifer,KS,67660 +Phillipsburg,KS,67661 +Plainville,KS,67663 +Prairie View,KS,67664 +Russell,KS,67665 +Schoenchen,KS,67667 +Stockton,KS,67669 +Victoria,KS,67671 +Wa Keeney,KS,67672 +Waldo,KS,67673 +Woodston,KS,67675 +Zurich,KS,67676 +Colby,KS,67701 +Atwood,KS,67730 +Bird City,KS,67731 +Brewster,KS,67732 +Edson,KS,67733 +Gem,KS,67734 +Goodland,KS,67735 +Gove,KS,67736 +Grainfield,KS,67737 +Grinnell,KS,67738 +Herndon,KS,67739 +Hoxie,KS,67740 +Kanorado,KS,67741 +Levant,KS,67743 +Ludell,KS,67744 +Mc Donald,KS,67745 +67746,KS,67746 +Monument,KS,67747 +Oakley,KS,67748 +Oberlin,KS,67749 +Park,KS,67751 +Quinter,KS,67752 +Menlo,KS,67753 +Russell Springs,KS,67755 +Wheeler,KS,67756 +Selden,KS,67757 +Sharon Springs,KS,67758 +Studley,KS,67759 +Wallace,KS,67761 +Weskan,KS,67762 +Winona,KS,67764 +Dodge City,KS,67801 +67830,KS,67830 +Ashland,KS,67831 +67833,KS,67833 +Bucklin,KS,67834 +Cimarron,KS,67835 +Copeland,KS,67837 +Deerfield,KS,67838 +Alamota,KS,67839 +Englewood,KS,67840 +Ensign,KS,67841 +Ford,KS,67842 +Fort Dodge,KS,67843 +Fowler,KS,67844 +Garden City,KS,67846 +Hanston,KS,67849 +Healy,KS,67850 +Holcomb,KS,67851 +Ingalls,KS,67853 +Jetmore,KS,67854 +Johnson,KS,67855 +Kalvesta,KS,67856 +Kendall,KS,67857 +Kingsdown,KS,67858 +Kismet,KS,67859 +Lakin,KS,67860 +Leoti,KS,67861 +Manter,KS,67862 +Modoc,KS,67863 +Meade,KS,67864 +Bloom,KS,67865 +67866,KS,67866 +Montezuma,KS,67867 +Pierceville,KS,67868 +Plains,KS,67869 +Satanta,KS,67870 +Friend,KS,67871 +Shields,KS,67874 +Spearville,KS,67876 +Sublette,KS,67877 +Syracuse,KS,67878 +Tribune,KS,67879 +Ulysses,KS,67880 +Wright,KS,67882 +Liberal,KS,67901 +Elkhart,KS,67950 +Hugoton,KS,67951 +Moscow,KS,67952 +Richfield,KS,67953 +Rolla,KS,67954 +Bagdad,KY,40003 +Bardstown,KY,40004 +Bedford,KY,40006 +Bethlehem,KY,40007 +Bloomfield,KY,40008 +Bradfordsville,KY,40009 +Buckner,KY,40010 +Campbellsburg,KY,40011 +Chaplin,KY,40012 +Deatsville,KY,40013 +Crestwood,KY,40014 +Eminence,KY,40019 +Finchville,KY,40022 +Fisherville,KY,40023 +Goshen,KY,40026 +Howardstown,KY,40028 +La Grange,KY,40031 +Lebanon,KY,40033 +Lockport,KY,40036 +Loretto,KY,40037 +Mackville,KY,40040 +Milton,KY,40045 +Mount Eden,KY,40046 +Mount Washington,KY,40047 +New Castle,KY,40050 +Trappist,KY,40051 +Pendleton,KY,40055 +Pewee Valley,KY,40056 +Cropper,KY,40057 +Prospect,KY,40059 +Raywick,KY,40060 +Saint Catharine,KY,40061 +Saint Francis,KY,40062 +Shelbyville,KY,40065 +Simpsonville,KY,40067 +Smithfield,KY,40068 +Maud,KY,40069 +Sulphur,KY,40070 +Taylorsville,KY,40071 +Turners Station,KY,40075 +Waddy,KY,40076 +Westport,KY,40077 +Willisburg,KY,40078 +40103,KY,40103 +Battletown,KY,40104 +Big Spring,KY,40106 +Boston,KY,40107 +Brandenburg,KY,40108 +Brooks,KY,40109 +Cloverport,KY,40111 +Constantine,KY,40114 +Custer,KY,40115 +Ekron,KY,40117 +Fairdale,KY,40118 +Glen Dean,KY,40119 +Fort Knox,KY,40121 +Garfield,KY,40140 +40141,KY,40141 +Guston,KY,40142 +Mooleyville,KY,40143 +Locust Hill,KY,40144 +Hudson,KY,40145 +Irvington,KY,40146 +Lebanon Junction,KY,40150 +Mc Daniels,KY,40152 +Payneville,KY,40157 +Radcliff,KY,40160 +Rhodelia,KY,40161 +Rineyville,KY,40162 +40163,KY,40163 +Se Ree,KY,40164 +Shepherdsville,KY,40165 +Stephensport,KY,40170 +Union Star,KY,40171 +Vine Grove,KY,40175 +Webster,KY,40176 +West Point,KY,40177 +Westview,KY,40178 +Louisville,KY,40202 +Louisville,KY,40203 +Louisville,KY,40204 +Louisville,KY,40205 +Saint Matthews,KY,40206 +Saint Matthews,KY,40207 +Louisville,KY,40208 +Louisville,KY,40209 +Louisville,KY,40210 +Louisville,KY,40211 +Louisville,KY,40212 +Louisville,KY,40213 +Louisville,KY,40214 +Louisville,KY,40215 +Shively,KY,40216 +Louisville,KY,40217 +Buechel,KY,40218 +Okolona,KY,40219 +Louisville,KY,40220 +Lyndon,KY,40222 +Anchorage,KY,40223 +Buechel,KY,40228 +Okolona,KY,40229 +Lyndon,KY,40241 +Lyndon,KY,40242 +Middletown,KY,40243 +Louisville,KY,40245 +Pleasure Ridge P,KY,40258 +Valley Station,KY,40272 +Fern Creek,KY,40291 +Jeffersontown,KY,40299 +Carlisle,KY,40311 +Westbend,KY,40312 +Clearfield,KY,40313 +Denniston,KY,40316 +Scranton,KY,40322 +Georgetown,KY,40324 +Gratz,KY,40327 +Gravel Switch,KY,40328 +Cornishville,KY,40330 +Jinks,KY,40336 +Jeffersonville,KY,40337 +Keene,KY,40339 +Lamero,KY,40341 +Lawrenceburg,KY,40342 +Mariba,KY,40345 +Means,KY,40346 +Midway,KY,40347 +Moorefield,KY,40350 +Morehead,KY,40351 +Mount Sterling,KY,40353 +New Liberty,KY,40355 +Nicholasville,KY,40356 +Olympia,KY,40358 +Owenton,KY,40359 +Owingsville,KY,40360 +Paris,KY,40361 +Pomeroyton,KY,40365 +Sadieville,KY,40370 +Salt Lick,KY,40371 +Bondville,KY,40372 +Sharpsburg,KY,40374 +Slade,KY,40376 +Stamping Ground,KY,40379 +Patsey,KY,40380 +Versailles,KY,40383 +Bybee,KY,40385 +Korea,KY,40387 +High Bridge,KY,40390 +Winchester,KY,40391 +Moores Creek,KY,40402 +Berea,KY,40403 +Brodhead,KY,40409 +Cobhill,KY,40415 +Conway,KY,40417 +Crab Orchard,KY,40419 +Danville,KY,40422 +Dreyfus,KY,40426 +Hustonville,KY,40437 +Junction City,KY,40440 +Kings Mountain,KY,40442 +Lancaster,KY,40444 +Livingston,KY,40445 +Clover Bottom,KY,40447 +Climax,KY,40456 +Orlando,KY,40460 +Paint Lick,KY,40461 +Parksville,KY,40464 +Perryville,KY,40468 +Pryse,KY,40471 +Ravenna,KY,40472 +Richmond,KY,40475 +Sandgap,KY,40481 +Stanford,KY,40484 +Elias,KY,40486 +Waynesburg,KY,40489 +Lexington,KY,40502 +Lexington,KY,40503 +Lexington,KY,40504 +Lexington,KY,40505 +Lexington,KY,40507 +Lexington,KY,40508 +Lexington,KY,40509 +Lexington,KY,40510 +Lexington,KY,40511 +Lexington,KY,40513 +Lexington,KY,40514 +Lexington,KY,40515 +Lexington,KY,40516 +Lexington,KY,40517 +Hatton,KY,40601 +Corbin,KY,40701 +Bush,KY,40724 +Symbol,KY,40729 +Gray,KY,40734 +Keavy,KY,40737 +Lily,KY,40740 +Sasser,KY,40741 +Nevisdale,KY,40754 +Rockholds,KY,40759 +Siler,KY,40763 +Pleasant View,KY,40769 +Woodbine,KY,40771 +Ages Brookside,KY,40801 +Baxter,KY,40806 +Benham,KY,40807 +Big Laurel,KY,40808 +Lewis Creek,KY,40810 +Calvin,KY,40813 +Crummies,KY,40815 +40817,KY,40817 +Coalgood,KY,40818 +Coldiron,KY,40819 +Cranks,KY,40820 +Cumberland,KY,40823 +Dayhoit,KY,40824 +Dizney,KY,40825 +Eolia,KY,40826 +Louellen,KY,40828 +Grays Knob,KY,40829 +Gulston,KY,40830 +Chevrolet,KY,40831 +Holmes Mill,KY,40843 +Hulen,KY,40845 +Keith,KY,40846 +Kenvir,KY,40847 +Lejunior,KY,40849 +Lynch,KY,40855 +Mozelle,KY,40858 +Oven Fork,KY,40861 +Partridge,KY,40862 +Pathfork,KY,40863 +Putney,KY,40865 +Smith,KY,40867 +Stinnett,KY,40868 +Totz,KY,40870 +Wallins Creek,KY,40873 +Arjay,KY,40902 +Artemus,KY,40903 +40905,KY,40905 +Bailey Switch,KY,40906 +Beverly,KY,40913 +Big Creek,KY,40914 +Bimble,KY,40915 +Bryants Store,KY,40921 +Cannon,KY,40923 +Closplint,KY,40927 +Dewitt,KY,40930 +Salt Gum,KY,40935 +Fonde,KY,40940 +Girdler,KY,40943 +Green Road,KY,40946 +Heidrick,KY,40949 +Hinkle,KY,40953 +Kettle Island,KY,40958 +Bright Shade,KY,40962 +Mary Alice,KY,40964 +Middlesboro,KY,40965 +Mills,KY,40970 +Oneida,KY,40972 +Callaway,KY,40977 +Roark,KY,40979 +40980,KY,40980 +Scalf,KY,40982 +Sextons Creek,KY,40983 +Stoney Fork,KY,40988 +Trosper,KY,40995 +Walker,KY,40997 +Woollum,KY,40999 +Alexandria,KY,41001 +Augusta,KY,41002 +Berry,KY,41003 +Brooksville,KY,41004 +Rabbit Hash,KY,41005 +Butler,KY,41006 +California,KY,41007 +Carrollton,KY,41008 +Corinth,KY,41010 +Covington,KY,41011 +Rouse,KY,41014 +Latonia,KY,41015 +Ludlow,KY,41016 +Dixie,KY,41017 +Erlanger,KY,41018 +Crittenden,KY,41030 +Cynthiana,KY,41031 +Demossville,KY,41033 +Dover,KY,41034 +Dry Ridge,KY,41035 +Ewing,KY,41039 +Falmouth,KY,41040 +Flemingsburg,KY,41041 +Florence,KY,41042 +Foster,KY,41043 +Germantown,KY,41044 +Ghent,KY,41045 +Glencoe,KY,41046 +Hebron,KY,41048 +Hillsboro,KY,41049 +Independence,KY,41051 +Jonesville,KY,41052 +Mays Lick,KY,41055 +Limestone Sq,KY,41056 +Melbourne,KY,41059 +Morning View,KY,41063 +Mount Olivet,KY,41064 +Southgate,KY,41071 +Bellevue,KY,41073 +Dayton,KY,41074 +Fort Thomas,KY,41075 +Newport,KY,41076 +Petersburg,KY,41080 +Sanders,KY,41083 +Silver Grove,KY,41085 +Sparta,KY,41086 +Union,KY,41091 +Verona,KY,41092 +Wallingford,KY,41093 +Walton,KY,41094 +Warsaw,KY,41095 +Williamstown,KY,41097 +Worthville,KY,41098 +Westwood,KY,41101 +Ashland,KY,41102 +Argillite,KY,41121 +Blaine,KY,41124 +Camp Dix,KY,41127 +Catlettsburg,KY,41129 +Denton,KY,41132 +Head Of Grassy,KY,41135 +Firebrick,KY,41137 +Flatwoods,KY,41139 +Garrison,KY,41141 +Fultz,KY,41143 +Lynn,KY,41144 +Hitchins,KY,41146 +Isonville,KY,41149 +Martha,KY,41159 +Oldtown,KY,41163 +Lawton,KY,41164 +Quincy,KY,41166 +Rush,KY,41168 +Raceland,KY,41169 +Saint Paul,KY,41170 +Burke,KY,41171 +South Portsmouth,KY,41174 +Maloneton,KY,41175 +Stephens,KY,41177 +41178,KY,41178 +Trinity,KY,41179 +Webbville,KY,41180 +Worthington,KY,41183 +Tollesboro,KY,41189 +Adams,KY,41201 +Boons Camp,KY,41204 +Davella,KY,41214 +Denver,KY,41215 +East Point,KY,41216 +Elna,KY,41219 +Fuget,KY,41220 +Hagerhill,KY,41222 +Job,KY,41224 +41225,KY,41225 +Keaton,KY,41226 +Leander,KY,41228 +Clifford,KY,41230 +Lovely,KY,41231 +Meally,KY,41234 +Offutt,KY,41237 +Manila,KY,41238 +Nippa,KY,41240 +Laura,KY,41250 +River,KY,41254 +Sitka,KY,41255 +Barnetts Creek,KY,41256 +Stambaugh,KY,41257 +Riceville,KY,41258 +Thelma,KY,41260 +Davisport,KY,41262 +Tutor Key,KY,41263 +Van Lear,KY,41265 +Fuget,KY,41266 +Hode,KY,41267 +Whitehouse,KY,41269 +Williamsport,KY,41271 +Wittensville,KY,41274 +Flat,KY,41301 +Altro,KY,41306 +Vada,KY,41311 +Morris Fork,KY,41314 +Burkhart,KY,41315 +41316,KY,41316 +Clayhole,KY,41317 +Decoy,KY,41321 +Gillmore,KY,41327 +Green Hall,KY,41328 +Haddix,KY,41331 +Grassy Creek,KY,41332 +Island City,KY,41338 +Canoe,KY,41339 +Lambric,KY,41340 +Lee City,KY,41342 +Leeco,KY,41343 +Little,KY,41346 +Hardshell,KY,41348 +Mistletoe,KY,41351 +Noctor,KY,41357 +Old Landing,KY,41358 +41359,KY,41359 +Pine Ridge,KY,41360 +Quicksand,KY,41363 +Ricetown,KY,41364 +Rogers,KY,41365 +Rousseau,KY,41366 +Rowdy,KY,41367 +Saldee,KY,41369 +41370,KY,41370 +Talbert,KY,41377 +Vancleve,KY,41385 +Vincent,KY,41386 +Whick,KY,41390 +41393,KY,41393 +Zachariah,KY,41396 +Zoe,KY,41397 +41401,KY,41401 +Caney,KY,41407 +Carver,KY,41409 +Cottle,KY,41412 +Edna,KY,41419 +Elkfork,KY,41421 +Elsie,KY,41422 +Ezel,KY,41425 +41429,KY,41429 +41431,KY,41431 +Hendricks,KY,41441 +Lenox,KY,41447 +Royalton,KY,41464 +Bethanna,KY,41465 +Seitz,KY,41466 +Blairs Mill,KY,41472 +White Oak,KY,41474 +Broad Bottom,KY,41501 +South Williamson,KY,41503 +Ashcamp,KY,41512 +Belcher,KY,41513 +Belfry,KY,41514 +Canada,KY,41519 +Senterville,KY,41522 +Biggs,KY,41524 +Forest Hills,KY,41527 +Freeburn,KY,41528 +Aflex,KY,41529 +Hardy,KY,41531 +Huddy,KY,41535 +Jamboree,KY,41536 +Payne Gap,KY,41537 +Kimper,KY,41539 +Lick Creek,KY,41540 +Mc Andrews,KY,41543 +Mc Carr,KY,41544 +Mc Combs,KY,41545 +Mc Veigh,KY,41546 +Mouthcard,KY,41548 +Paw Paw,KY,41551 +Phelps,KY,41553 +Phyllis,KY,41554 +Pinsonfork,KY,41555 +Fishtrap,KY,41557 +Regina,KY,41559 +Robinson Creek,KY,41560 +Shelbiana,KY,41562 +Shelby Gap,KY,41563 +Sidney,KY,41564 +Speight,KY,41565 +Steele,KY,41566 +Stone,KY,41567 +Argo,KY,41568 +Turkey Creek,KY,41570 +Varney,KY,41571 +Etty,KY,41572 +Allen,KY,41601 +Auxier,KY,41602 +Banner,KY,41603 +Ligon,KY,41604 +Betsy Layne,KY,41605 +Bevinsville,KY,41606 +Blue River,KY,41607 +Craynor,KY,41614 +Dana,KY,41615 +David,KY,41616 +Eastern,KY,41622 +Endicott,KY,41626 +Estill,KY,41627 +Galveston,KY,41629 +Garrett,KY,41630 +Grethel,KY,41631 +Waldo,KY,41632 +Halo,KY,41633 +Harold,KY,41635 +Buckingham,KY,41636 +Pyrmid,KY,41637 +Honaker,KY,41639 +Elmrock,KY,41640 +Ivel,KY,41642 +Lackey,KY,41643 +Langley,KY,41645 +East Mc Dowell,KY,41647 +41648,KY,41648 +Hite,KY,41649 +Emma,KY,41653 +Printer,KY,41655 +Stanville,KY,41659 +Teaberry,KY,41660 +Wayland,KY,41666 +Darfork,KY,41701 +Ary,KY,41712 +Bear Branch,KY,41714 +Blue Diamond,KY,41719 +Buckhorn,KY,41721 +Tribbey,KY,41722 +Busy,KY,41723 +Carrie,KY,41725 +Chavies,KY,41727 +Cinda,KY,41728 +Combs,KY,41729 +Confluence,KY,41730 +Ulvah,KY,41731 +Cutshin,KY,41732 +Daisy,KY,41733 +Delphia,KY,41735 +Dice,KY,41736 +Bearville,KY,41740 +Fisty,KY,41743 +Gays Creek,KY,41745 +Happy,KY,41746 +Dryhill,KY,41749 +Napfor,KY,41754 +Leatherwood,KY,41756 +Anco,KY,41759 +Scuddy,KY,41760 +Slemp,KY,41763 +Smilax,KY,41764 +Talcum,KY,41765 +Vest,KY,41772 +Vicco,KY,41773 +Farler,KY,41774 +Wendover,KY,41775 +Frew,KY,41776 +Big Rock,KY,41777 +Amburgey,KY,41801 +Carcassonne,KY,41804 +Brinkley,KY,41805 +Crown,KY,41811 +Deane,KY,41812 +Ermine,KY,41815 +Larkslane,KY,41817 +Gilly,KY,41819 +Skyline,KY,41821 +Hindman,KY,41822 +Hollybush,KY,41823 +Isom,KY,41824 +Jackhorn,KY,41825 +Jeremiah,KY,41826 +Puncheon,KY,41828 +Kona,KY,41829 +Soft Shell,KY,41831 +Letcher,KY,41832 +Linefork,KY,41833 +Littcarr,KY,41834 +Mallie,KY,41836 +Millstone,KY,41838 +Mousie,KY,41839 +Fleming Neon,KY,41840 +Omaha,KY,41843 +Raven,KY,41844 +Premium,KY,41845 +Redfox,KY,41847 +Roxana,KY,41848 +Seco,KY,41849 +Thornton,KY,41855 +Day Rural,KY,41858 +Dema,KY,41859 +Raven,KY,41861 +Dry Creek,KY,41862 +Paducah,KY,42001 +Paducah,KY,42003 +Almo,KY,42020 +Arlington,KY,42021 +Bardwell,KY,42023 +Barlow,KY,42024 +Benton,KY,42025 +Boaz,KY,42027 +Burna,KY,42028 +Calvert City,KY,42029 +Clinton,KY,42031 +Columbus,KY,42032 +Cunningham,KY,42035 +Dexter,KY,42036 +Eddyville,KY,42038 +Fancy Farm,KY,42039 +Farmington,KY,42040 +Crutchfield,KY,42041 +Gilbertsville,KY,42044 +Iuka,KY,42045 +Hampton,KY,42047 +Hardin,KY,42048 +Hazel,KY,42049 +Hickman,KY,42050 +Hickory,KY,42051 +Kevil,KY,42053 +Kirksey,KY,42054 +Kuttawa,KY,42055 +La Center,KY,42056 +Ledbetter,KY,42058 +Marion,KY,42064 +Mayfield,KY,42066 +Melber,KY,42069 +Murray,KY,42071 +New Concord,KY,42076 +Salem,KY,42078 +Sedalia,KY,42079 +Carrsville,KY,42081 +Symsonia,KY,42082 +Tiline,KY,42083 +Water Valley,KY,42085 +West Paducah,KY,42086 +Wickliffe,KY,42087 +Wingo,KY,42088 +Plum Springs,KY,42101 +Bowling Green,KY,42103 +Bowling Green,KY,42104 +Adolphus,KY,42120 +Alvaton,KY,42122 +Austin,KY,42123 +Beaumont,KY,42124 +Cave City,KY,42127 +Subtle,KY,42129 +Eighty Eight,KY,42130 +Etoile,KY,42131 +Fountain Run,KY,42133 +Franklin,KY,42134 +Gamaliel,KY,42140 +Glasgow,KY,42141 +Hestand,KY,42151 +Holland,KY,42153 +Knob Lick,KY,42154 +Lamb,KY,42155 +Lucas,KY,42156 +Mount Herman,KY,42157 +Oakland,KY,42159 +Park City,KY,42160 +Rocky Hill,KY,42163 +Scottsville,KY,42164 +Summer Shade,KY,42166 +T Ville,KY,42167 +Willow Shade,KY,42169 +Woodburn,KY,42170 +Smiths Grove,KY,42171 +Adairville,KY,42202 +Allensville,KY,42204 +Auburn,KY,42206 +Bee Spring,KY,42207 +Reedyville,KY,42210 +Golden Pond,KY,42211 +Center,KY,42214 +Cerulean,KY,42215 +Crofton,KY,42217 +Elkton,KY,42220 +Fort Campbell,KY,42223 +Gracey,KY,42232 +Tiny Town,KY,42234 +Herndon,KY,42236 +Hopkinsville,KY,42240 +Huff,KY,42250 +Jetson,KY,42252 +La Fayette,KY,42254 +Lewisburg,KY,42256 +Lindseyville,KY,42257 +Mammoth Cave Nat,KY,42259 +Logansport,KY,42261 +Oak Grove,KY,42262 +Olmstead,KY,42265 +Pembroke,KY,42266 +Quality,KY,42268 +Rochester,KY,42273 +Browning,KY,42274 +Roundhill,KY,42275 +Daysville,KY,42276 +Sharon Grove,KY,42280 +Sunfish,KY,42284 +Kyrock,KY,42285 +Trenton,KY,42286 +Welchs Creek,KY,42287 +Owensboro,KY,42301 +Owensboro,KY,42303 +Beaver Dam,KY,42320 +Beech Creek,KY,42321 +Beechmont,KY,42323 +Belton,KY,42324 +Bremen,KY,42325 +Browder,KY,42326 +Calhoun,KY,42327 +Centertown,KY,42328 +Central City,KY,42330 +Cromwell,KY,42333 +Drakesboro,KY,42337 +Dundee,KY,42338 +Dunmor,KY,42339 +42340,KY,42340 +Fordsville,KY,42343 +Graham,KY,42344 +Greenville,KY,42345 +Hartford,KY,42347 +Hawesville,KY,42348 +Horse Branch,KY,42349 +Island,KY,42350 +Lewisport,KY,42351 +Livermore,KY,42352 +Maceo,KY,42355 +Narrows,KY,42358 +Olaton,KY,42361 +Penrod,KY,42365 +Philpot,KY,42366 +Reynolds Station,KY,42368 +Rockport,KY,42369 +Rumsey,KY,42371 +Sacramento,KY,42372 +Utica,KY,42376 +Whitesville,KY,42378 +Clay,KY,42404 +Corydon,KY,42406 +Dawson Springs,KY,42408 +Dixon,KY,42409 +Earlington,KY,42410 +Fredonia,KY,42411 +Hanson,KY,42413 +Henderson,KY,42420 +Madisonville,KY,42431 +Manitou,KY,42436 +Henshaw,KY,42437 +Nebo,KY,42441 +Nortonville,KY,42442 +Princeton,KY,42445 +Providence,KY,42450 +Reed,KY,42451 +Robards,KY,42452 +Saint Charles,KY,42453 +Sebree,KY,42455 +Slaughters,KY,42456 +Spottsville,KY,42458 +Sturgis,KY,42459 +Uniontown,KY,42461 +Waverly,KY,42462 +White Plains,KY,42464 +Alcalde,KY,42501 +Bethelridge,KY,42516 +Bronston,KY,42518 +Sloans Valley,KY,42519 +Dunnville,KY,42528 +Jabez,KY,42532 +Liberty,KY,42539 +Middleburg,KY,42541 +Pointer,KY,42544 +Science Hill,KY,42553 +Shopville,KY,42554 +Sloans Valley,KY,42555 +Tateville,KY,42558 +Yosemite,KY,42566 +Pulaski,KY,42567 +Aaron,KY,42601 +Albany,KY,42602 +Alpha,KY,42603 +Coopersville,KY,42611 +Delta,KY,42613 +Jamestown,KY,42629 +Pueblo,KY,42633 +Parkers Lake,KY,42634 +Hollyhill,KY,42635 +Revelo,KY,42638 +Rockybranch,KY,42640 +Webbs Cross Road,KY,42642 +Sawyer,KY,42643 +Stearns,KY,42647 +Strunk,KY,42649 +Wiborg,KY,42653 +Windy,KY,42655 +E Town,KY,42701 +Bakerton,KY,42711 +Big Clifty,KY,42712 +Bonnieville,KY,42713 +Bow,KY,42714 +Breeding,KY,42715 +Buffalo,KY,42716 +Burkesville,KY,42717 +Campbellsville,KY,42718 +Caneyville,KY,42721 +Canmer,KY,42722 +Casey Creek,KY,42723 +Stephensburg,KY,42724 +Wax,KY,42726 +Montpelier,KY,42728 +Cub Run,KY,42729 +Cundiff,KY,42730 +Dubre,KY,42731 +E View,KY,42732 +Elk Horn,KY,42733 +Fairplay,KY,42735 +Finley,KY,42736 +Glendale,KY,42740 +Glens Fork,KY,42741 +Gradyville,KY,42742 +Greensburg,KY,42743 +Hardyville,KY,42746 +Hodgenville,KY,42748 +Horse Cave,KY,42749 +Kettle,KY,42752 +Knifley,KY,42753 +Sadler,KY,42754 +Magnolia,KY,42757 +Milltown,KY,42761 +Millwood,KY,42762 +Mount Sherman,KY,42764 +Munfordville,KY,42765 +Peytonsburg,KY,42768 +Sonora,KY,42776 +Summersville,KY,42782 +Upton,KY,42784 +White Mills,KY,42788 +Metairie,LA,70001 +Metairie,LA,70002 +Metairie,LA,70003 +Metairie,LA,70005 +Metairie,LA,70006 +Des Allemands,LA,70030 +Ama,LA,70031 +Arabi,LA,70032 +Barataria,LA,70036 +Belle Chasse,LA,70037 +Boutte,LA,70039 +Braithwaite,LA,70040 +Buras,LA,70041 +Chalmette,LA,70043 +New Sarpy,LA,70047 +Edgard,LA,70049 +Garyville,LA,70051 +Gramercy,LA,70052 +Gretna,LA,70053 +Terrytown,LA,70056 +Hahnville,LA,70057 +Harvey,LA,70058 +Kenner,LA,70062 +Kenner,LA,70065 +Lafitte,LA,70067 +La Place,LA,70068 +Luling,LA,70070 +Lutcher,LA,70071 +Marrero,LA,70072 +Meraux,LA,70075 +Norco,LA,70079 +Paradis,LA,70080 +Port Sulphur,LA,70083 +Reserve,LA,70084 +Saint Bernard,LA,70085 +Saint James,LA,70086 +Saint Rose,LA,70087 +Vacherie,LA,70090 +Venice,LA,70091 +Violet,LA,70092 +Bridge City,LA,70094 +New Orleans,LA,70112 +New Orleans,LA,70113 +New Orleans,LA,70114 +New Orleans,LA,70115 +New Orleans,LA,70116 +New Orleans,LA,70117 +New Orleans,LA,70118 +New Orleans,LA,70119 +Jefferson,LA,70121 +New Orleans,LA,70122 +Harahan,LA,70123 +New Orleans,LA,70124 +New Orleans,LA,70125 +New Orleans,LA,70126 +New Orleans,LA,70127 +New Orleans,LA,70128 +New Orleans,LA,70129 +New Orleans,LA,70130 +New Orleans,LA,70131 +Thibodaux,LA,70301 +Pierre Part,LA,70339 +Amelia,LA,70340 +Belle Rose,LA,70341 +Berwick,LA,70342 +Bourg,LA,70343 +Chauvin,LA,70344 +Cut Off,LA,70345 +Donaldsonville,LA,70346 +Dulac,LA,70353 +Galliano,LA,70354 +Gheens,LA,70355 +Gibson,LA,70356 +Golden Meadow,LA,70357 +Grand Isle,LA,70358 +Gray,LA,70359 +Houma,LA,70360 +Houma,LA,70363 +Houma,LA,70364 +Labadieville,LA,70372 +Lockport,LA,70374 +Mathews,LA,70375 +Montegut,LA,70377 +Morgan City,LA,70380 +Napoleonville,LA,70390 +Patterson,LA,70392 +Raceland,LA,70394 +Schriever,LA,70395 +Theriot,LA,70397 +Hammond,LA,70401 +Hammond,LA,70403 +Abita Springs,LA,70420 +Amite,LA,70422 +Angie,LA,70426 +Bogalusa,LA,70427 +Bush,LA,70431 +Covington,LA,70433 +Fluker,LA,70436 +Folsom,LA,70437 +Franklinton,LA,70438 +Greensburg,LA,70441 +Independence,LA,70443 +Kentwood,LA,70444 +Lacombe,LA,70445 +Loranger,LA,70446 +Madisonville,LA,70447 +Mandeville,LA,70448 +Maurepas,LA,70449 +Mount Hermon,LA,70450 +Pearl River,LA,70452 +Pine Grove,LA,70453 +Ponchatoula,LA,70454 +Robert,LA,70455 +Roseland,LA,70456 +Slidell,LA,70458 +Slidell,LA,70460 +Slidell,LA,70461 +Springfield,LA,70462 +Tickfaw,LA,70466 +Varnado,LA,70467 +Lafayette,LA,70501 +Lafayette,LA,70503 +Lafayette,LA,70506 +Lafayette,LA,70507 +Lafayette,LA,70508 +Forked Island,LA,70510 +Arnaudville,LA,70512 +Baldwin,LA,70514 +Basile,LA,70515 +Branch,LA,70516 +Henderson,LA,70517 +Broussard,LA,70518 +Carencro,LA,70520 +Church Point,LA,70525 +Crowley,LA,70526 +Delcambre,LA,70528 +Duson,LA,70529 +Egan,LA,70531 +Elton,LA,70532 +Erath,LA,70533 +Eunice,LA,70535 +Evangeline,LA,70537 +Franklin,LA,70538 +Gueydan,LA,70542 +Iota,LA,70543 +Jeanerette,LA,70544 +Jennings,LA,70546 +Kaplan,LA,70548 +Lake Arthur,LA,70549 +Loreauville,LA,70552 +Mamou,LA,70554 +Maurice,LA,70555 +Midland,LA,70559 +New Iberia,LA,70560 +Opelousas,LA,70570 +Port Barre,LA,70577 +Rayne,LA,70578 +Roanoke,LA,70581 +Saint Martinvill,LA,70582 +Scott,LA,70583 +Cankton,LA,70584 +Ville Platte,LA,70586 +Washington,LA,70589 +Welsh,LA,70591 +Youngsville,LA,70592 +Lake Charles,LA,70601 +Lake Charles,LA,70605 +Lake Charles,LA,70611 +Bell City,LA,70630 +Cameron,LA,70631 +Creole,LA,70632 +Dequincy,LA,70633 +Deridder,LA,70634 +Dry Creek,LA,70637 +Evans,LA,70639 +Grand Chenier,LA,70643 +Hackberry,LA,70645 +Iowa,LA,70647 +Kinder,LA,70648 +Lacassine,LA,70650 +Longville,LA,70652 +Fields,LA,70653 +Mittie,LA,70654 +Oberlin,LA,70655 +Pitkin,LA,70656 +Ragley,LA,70657 +Reeves,LA,70658 +Singer,LA,70660 +Starks,LA,70661 +Sugartown,LA,70662 +Sulphur,LA,70663 +Vinton,LA,70668 +Westlake,LA,70669 +Addis,LA,70710 +Albany,LA,70711 +Angola,LA,70712 +Baker,LA,70714 +Batchelor,LA,70715 +Blanks,LA,70717 +Brusly,LA,70719 +Bueche,LA,70720 +Point Clair,LA,70721 +Clinton,LA,70722 +Convent,LA,70723 +Darrow,LA,70725 +Port Vincent,LA,70726 +Erwinville,LA,70729 +Ethel,LA,70730 +Fordoche,LA,70732 +French Settlemen,LA,70733 +Geismar,LA,70734 +Glynn,LA,70736 +Gonzales,LA,70737 +Greenwell Spring,LA,70739 +Grosse Tete,LA,70740 +Holden,LA,70744 +The Bluffs,LA,70748 +Jarreau,LA,70749 +Krotz Springs,LA,70750 +Lakeland,LA,70752 +Lettsworth,LA,70753 +Livingston,LA,70754 +Livonia,LA,70755 +Lottie,LA,70756 +Ramah,LA,70757 +Morganza,LA,70759 +New Roads,LA,70760 +Norwood,LA,70761 +Oscar,LA,70762 +Paulina,LA,70763 +Plaquemine,LA,70764 +Port Allen,LA,70767 +Galvez,LA,70769 +Pride,LA,70770 +Rosedale,LA,70772 +Rougon,LA,70773 +Saint Amant,LA,70774 +Bains,LA,70775 +Iberville,LA,70776 +Slaughter,LA,70777 +Sorrento,LA,70778 +Sunshine,LA,70780 +Torbert,LA,70781 +Ventress,LA,70783 +Walker,LA,70785 +White Castle,LA,70788 +Wilson,LA,70789 +Zachary,LA,70791 +Uncle Sam,LA,70792 +Baton Rouge,LA,70801 +Baton Rouge,LA,70802 +Baton Rouge,LA,70805 +Baton Rouge,LA,70806 +Scotlandville,LA,70807 +Baton Rouge,LA,70808 +Baton Rouge,LA,70809 +Baton Rouge,LA,70810 +Greenwood,LA,70811 +Baton Rouge,LA,70812 +Baton Rouge,LA,70814 +Baton Rouge,LA,70815 +Baton Rouge,LA,70816 +Baton Rouge,LA,70817 +Baton Rouge,LA,70818 +Baton Rouge,LA,70819 +Baton Rouge,LA,70820 +Arcadia,LA,71001 +Athens,LA,71003 +Belcher,LA,71004 +Benton,LA,71006 +Bethany,LA,71007 +Bienville,LA,71008 +Castor,LA,71016 +Cotton Valley,LA,71018 +Hanna,LA,71019 +Doyline,LA,71023 +Dubberly,LA,71024 +Frierson,LA,71027 +Gibsland,LA,71028 +Gilliam,LA,71029 +Gloster,LA,71030 +Goldonna,LA,71031 +Grand Cane,LA,71032 +Greenwood,LA,71033 +Hall Summit,LA,71034 +Haughton,LA,71037 +Haynesville,LA,71038 +Heflin,LA,71039 +Homer,LA,71040 +Hosston,LA,71043 +Ida,LA,71044 +Jamestown,LA,71045 +Keatchie,LA,71046 +Keithville,LA,71047 +Lisbon,LA,71048 +Logansport,LA,71049 +Elm Grove,LA,71051 +Mansfield,LA,71052 +Minden,LA,71055 +Mira,LA,71059 +Mooringsport,LA,71060 +Oil City,LA,71061 +Pelican,LA,71063 +Plain Dealing,LA,71064 +Pleasant Hill,LA,71065 +Princeton,LA,71067 +Ringgold,LA,71068 +Rodessa,LA,71069 +Chestnut,LA,71070 +Sarepta,LA,71071 +Shongaloo,LA,71072 +Sibley,LA,71073 +Springhill,LA,71075 +Stonewall,LA,71078 +Summerfield,LA,71079 +Trees,LA,71082 +Shreveport,LA,71101 +Shreveport,LA,71103 +Shreveport,LA,71104 +Shreveport,LA,71105 +Forbing,LA,71106 +Dixie,LA,71107 +Shreveport,LA,71108 +Shreveport,LA,71109 +Barksdale A F B,LA,71110 +Bossier City,LA,71111 +Bossier City,LA,71112 +Caspiana,LA,71115 +Shreveport,LA,71118 +Shreveport,LA,71119 +Shreveport,LA,71129 +Monroe,LA,71201 +Richwood,LA,71202 +Monroe,LA,71203 +Baskin,LA,71219 +Bastrop,LA,71220 +Bernice,LA,71222 +Bonita,LA,71223 +Calhoun,LA,71225 +Chatham,LA,71226 +Choudrant,LA,71227 +Collinston,LA,71229 +Warden,LA,71232 +Downsville,LA,71234 +Dubach,LA,71235 +Epps,LA,71237 +Eros,LA,71238 +Extension,LA,71239 +Farmerville,LA,71241 +Fort Necessity,LA,71243 +Grambling,LA,71245 +Jones,LA,71250 +Jonesboro,LA,71251 +Lake Providence,LA,71254 +Lillie,LA,71256 +Mangham,LA,71259 +Linville,LA,71260 +Mer Rouge,LA,71261 +Terry,LA,71263 +Oak Ridge,LA,71264 +Pioneer,LA,71266 +Quitman,LA,71268 +Alto,LA,71269 +Ruston,LA,71270 +Simsboro,LA,71275 +Sondheimer,LA,71276 +Spearsville,LA,71277 +Spencer,LA,71280 +Mound,LA,71282 +Transylvania,LA,71286 +West Monroe,LA,71291 +West Monroe,LA,71292 +Winnsboro,LA,71295 +Alexandria,LA,71301 +Alexandria,LA,71302 +Alexandria,LA,71303 +Acme,LA,71316 +Big Bend,LA,71318 +Eola,LA,71322 +Center Point,LA,71323 +Cheneyville,LA,71325 +Clayton,LA,71326 +Cottonport,LA,71327 +Buckeye,LA,71328 +Vick,LA,71331 +Goudeau,LA,71333 +Frogmore,LA,71334 +Gilbert,LA,71336 +Hamburg,LA,71339 +Harrisonburg,LA,71340 +Hessmer,LA,71341 +Jena,LA,71342 +Larto,LA,71343 +71344,LA,71344 +Lecompte,LA,71346 +Mansura,LA,71350 +Marksville,LA,71351 +Melville,LA,71353 +Monterey,LA,71354 +Moreauville,LA,71355 +Le Moyen,LA,71356 +Newellton,LA,71357 +Palmetto,LA,71358 +Kolin,LA,71360 +Plaucheville,LA,71362 +Saint Joseph,LA,71366 +Saint Landry,LA,71367 +Sicily Island,LA,71368 +Simmesport,LA,71369 +Trout,LA,71371 +71372,LA,71372 +Vidalia,LA,71373 +Waterproof,LA,71375 +Wisner,LA,71378 +Aimwell,LA,71401 +Anacoco,LA,71403 +Atlanta,LA,71404 +Belmont,LA,71406 +Bentley,LA,71407 +Boyce,LA,71409 +Campti,LA,71411 +Chopin,LA,71412 +Derry,LA,71416 +Colfax,LA,71417 +Hebert,LA,71418 +Mitchell,LA,71419 +71421,LA,71421 +Dodson,LA,71422 +Dry Prong,LA,71423 +Elmer,LA,71424 +Enterprise,LA,71425 +Fisher,LA,71426 +Flatwoods,LA,71427 +Florien,LA,71429 +Forest Hill,LA,71430 +Georgetown,LA,71432 +Calcasieu,LA,71433 +Grayson,LA,71435 +71436,LA,71436 +Leander,LA,71438 +Hornbeck,LA,71439 +Kelly,LA,71441 +Lacamp,LA,71444 +71445,LA,71445 +Hicks,LA,71446 +Chopin,LA,71447 +Many,LA,71449 +Marthaville,LA,71450 +Melder,LA,71451 +Montgomery,LA,71454 +Clifton,LA,71455 +Natchez,LA,71456 +Natchitoches,LA,71457 +Fort Polk,LA,71459 +Newllano,LA,71461 +Noble,LA,71462 +Oakdale,LA,71463 +Olla,LA,71465 +Otis,LA,71466 +Pollock,LA,71467 +Provencal,LA,71468 +Robeline,LA,71469 +Sieper,LA,71472 +Sikes,LA,71473 +Tioga,LA,71477 +Tullos,LA,71479 +Winnfield,LA,71483 +Woodworth,LA,71485 +Zwolle,LA,71486 +Berwick,ME,3901 +Cape Neddick,ME,3902 +Eliot,ME,3903 +Kittery,ME,3904 +Kittery Point,ME,3905 +North Berwick,ME,3906 +Ogunquit,ME,3907 +South Berwick,ME,3908 +York,ME,3909 +Acton,ME,4001 +Alfred,ME,4002 +Bailey Island,ME,4003 +Arundel,ME,4005 +Biddeford Pool,ME,4006 +Bowdoinham,ME,4008 +Bridgton,ME,4009 +Brownfield,ME,4010 +Birch Island,ME,4011 +Bustins Island,ME,4013 +Casco,ME,4015 +Center Lovell,ME,4016 +Chebeague Island,ME,4017 +Cliff Island,ME,4019 +Cornish,ME,4020 +Cumberland Cente,ME,4021 +Denmark,ME,4022 +East Baldwin,ME,4024 +West Lebanon,ME,4027 +North Sebago,ME,4029 +East Waterboro,ME,4030 +Freeport,ME,4032 +Fryeburg,ME,4037 +Gorham,ME,4038 +Gray,ME,4039 +Harrison,ME,4040 +Hiram,ME,4041 +Hollis Center,ME,4042 +Kennebunk,ME,4043 +Kennebunkport,ME,4046 +Kezar Falls,ME,4047 +Limerick,ME,4048 +Limington,ME,4049 +Long Island,ME,4050 +Lovell,ME,4051 +Merepoint,ME,4053 +Naples,ME,4055 +North Fryeburg,ME,4058 +North Shapleigh,ME,4060 +North Waterboro,ME,4061 +Windham,ME,4062 +Old Orchard Beac,ME,4064 +Orrs Island,ME,4066 +Porter,ME,4068 +Pownal,ME,4069 +Raymond,ME,4071 +Saco,ME,4072 +Sanford,ME,4073 +Scarborough,ME,4074 +Sebago Lake,ME,4075 +Shapleigh,ME,4076 +South Casco,ME,4077 +South Harpswell,ME,4079 +South Waterford,ME,4081 +Springvale,ME,4083 +Standish,ME,4084 +Steep Falls,ME,4085 +Pejepscot,ME,4086 +Waterboro,ME,4087 +Wells,ME,4090 +West Baldwin,ME,4091 +Westbrook,ME,4092 +West Buxton,ME,4093 +Maplewood,ME,4095 +Yarmouth,ME,4096 +Portland,ME,4101 +Portland,ME,4102 +Portland,ME,4103 +Falmouth,ME,4105 +South Portland,ME,4106 +Cape Elizabeth,ME,4107 +Peaks Island,ME,4108 +Cushing Island,ME,4109 +Cumberland Fores,ME,4110 +Auburn,ME,4210 +Andover,ME,4216 +Bethel,ME,4217 +Bryant Pond,ME,4219 +Buckfield,ME,4220 +Canton,ME,4221 +Danville,ME,4223 +Dixfield,ME,4224 +Dryden,ME,4225 +East Andover,ME,4226 +East Livermore,ME,4228 +East Stoneham,ME,4231 +Frye,ME,4235 +Greene,ME,4236 +Hanover,ME,4237 +Hebron,ME,4238 +Jay,ME,4239 +Lewiston,ME,4240 +Lisbon,ME,4250 +Lisbon Falls,ME,4252 +Livermore Falls,ME,4254 +Mechanic Falls,ME,4256 +Mexico,ME,4257 +Monmouth,ME,4259 +New Gloucester,ME,4260 +Newry,ME,4261 +Leeds,ME,4263 +North Monmouth,ME,4265 +North Turner,ME,4266 +North Waterford,ME,4267 +Norway,ME,4268 +Oxford,ME,4270 +Poland,ME,4273 +Poland Spring,ME,4274 +Roxbury,ME,4275 +Rumford,ME,4276 +Rumford Center,ME,4278 +Rumford Point,ME,4279 +Sabattus,ME,4280 +South Paris,ME,4281 +Turner,ME,4282 +Wayne,ME,4284 +Weld,ME,4285 +West Paris,ME,4289 +Peru,ME,4290 +West Poland,ME,4291 +West Sumner,ME,4292 +Wilton,ME,4294 +Augusta,ME,4330 +Coopers Mills,ME,4341 +Dresden,ME,4342 +Farmingdale,ME,4344 +Gardiner,ME,4345 +Randolph,ME,4346 +Hallowell,ME,4347 +Jefferson,ME,4348 +Kents Hill,ME,4349 +Litchfield,ME,4350 +Manchester,ME,4351 +Mount Vernon,ME,4352 +North Whitefield,ME,4353 +Palermo,ME,4354 +Readfield,ME,4355 +Richmond,ME,4357 +South China,ME,4358 +Weeks Mills,ME,4361 +Windsor,ME,4363 +Winthrop,ME,4364 +Bangor,ME,4401 +Abbot Village,ME,4406 +Aurora,ME,4408 +Bradford,ME,4410 +Bradley,ME,4411 +Brewer,ME,4412 +Brookton,ME,4413 +Brownville,ME,4414 +Bucksport,ME,4416 +Burlington,ME,4417 +Cardville,ME,4418 +Carmel,ME,4419 +Charleston,ME,4422 +Costigan,ME,4423 +Danforth,ME,4424 +Dover Foxcroft,ME,4426 +East Corinth,ME,4427 +East Eddington,ME,4428 +East Holden,ME,4429 +East Millinocket,ME,4430 +East Orland,ME,4431 +Enfield,ME,4433 +Etna,ME,4434 +Exeter,ME,4435 +Frankfort,ME,4438 +Greenville,ME,4441 +Greenville Junct,ME,4442 +Guilford,ME,4443 +Hampden,ME,4444 +Haynesville,ME,4446 +Seboeis,ME,4448 +Hudson,ME,4449 +Kenduskeag,ME,4450 +Kingman,ME,4451 +Lagrange,ME,4453 +Lee,ME,4455 +Levant,ME,4456 +Lincoln,ME,4457 +Lincoln Center,ME,4458 +Mattawamkeag,ME,4459 +Medway,ME,4460 +Milford,ME,4461 +Millinocket,ME,4462 +Derby,ME,4463 +Monson,ME,4464 +4465,ME,4465 +Old Town,ME,4468 +North Amity,ME,4471 +Orland,ME,4472 +Orono,ME,4473 +Orrington,ME,4474 +Passadumkeag,ME,4475 +Penobscot,ME,4476 +Rockwood,ME,4478 +Sangerville,ME,4479 +Springfield,ME,4487 +Stetson,ME,4488 +Topsfield,ME,4490 +Vanceboro,ME,4491 +Waite,ME,4492 +Winn,ME,4495 +Winterport,ME,4496 +Wytopitlock,ME,4497 +Bath,ME,4530 +Boothbay,ME,4537 +Capitol Island,ME,4538 +Bristol,ME,4539 +Chamberlain,ME,4541 +Damariscotta,ME,4543 +East Boothbay,ME,4544 +Friendship,ME,4547 +Mac Mahan,ME,4548 +Medomak,ME,4551 +Newcastle,ME,4553 +New Harbor,ME,4554 +Nobleboro,ME,4555 +Edgecomb,ME,4556 +Pemaquid,ME,4558 +Phippsburg,ME,4562 +Cushing,ME,4563 +Round Pond,ME,4564 +Sebasco Estates,ME,4565 +Small Point,ME,4567 +South Bristol,ME,4568 +Squirrel Island,ME,4570 +Trevett,ME,4571 +Waldoboro,ME,4572 +Walpole,ME,4573 +Washington,ME,4574 +West Southport,ME,4576 +Wiscasset,ME,4578 +Woolwich,ME,4579 +Ellsworth,ME,4605 +Addison,ME,4606 +Gouldsboro,ME,4607 +Bar Harbor,ME,4609 +Beals,ME,4611 +Bernard,ME,4612 +Birch Harbor,ME,4613 +Blue Hill,ME,4614 +Blue Hill Falls,ME,4615 +Brooklin,ME,4616 +Brooksville,ME,4617 +Bucks Harbor,ME,4618 +Calais,ME,4619 +Cherryfield,ME,4622 +Columbia Falls,ME,4623 +Corea,ME,4624 +Cutler,ME,4626 +Deer Isle,ME,4627 +Dennysville,ME,4628 +East Machias,ME,4630 +Eastport,ME,4631 +Franklin,ME,4634 +Hancock,ME,4640 +Harborside,ME,4642 +Harrington,ME,4643 +Isle Au Haut,ME,4645 +Jonesboro,ME,4648 +Jonesport,ME,4649 +Little Deer Isle,ME,4650 +Lubec,ME,4652 +Bass Harbor,ME,4653 +Machias,ME,4654 +Machiasport,ME,4655 +Manset,ME,4656 +Meddybemps,ME,4657 +Milbridge,ME,4658 +Mount Desert,ME,4660 +North Brooklin,ME,4661 +Pembroke,ME,4666 +Perry,ME,4667 +Princeton,ME,4668 +Prospect Harbor,ME,4669 +Robbinston,ME,4671 +Sargentville,ME,4673 +Sedgwick,ME,4676 +Sorrento,ME,4677 +South Gouldsboro,ME,4678 +Southwest Harbor,ME,4679 +Steuben,ME,4680 +Stonington,ME,4681 +Sunset,ME,4683 +Surry,ME,4684 +4689,ME,4689 +West Tremont,ME,4690 +Winter Harbor,ME,4693 +Woodland,ME,4694 +Houlton,ME,4730 +Ashland,ME,4732 +Benedicta,ME,4733 +Bridgewater,ME,4735 +Caribou,ME,4736 +Clayton Lake,ME,4737 +Easton,ME,4740 +Fort Fairfield,ME,4742 +Fort Kent,ME,4743 +Grand Isle,ME,4746 +Island Falls,ME,4747 +Lille,ME,4749 +Limestone,ME,4750 +Loring Afb,ME,4751 +Madawaska,ME,4756 +Mapleton,ME,4757 +Mars Hill,ME,4758 +Monticello,ME,4760 +New Sweden,ME,4762 +Oakfield,ME,4763 +Oxbow,ME,4764 +Patten,ME,4765 +Portage,ME,4768 +Presque Isle,ME,4769 +Saint Agatha,ME,4772 +Saint David,ME,4773 +Saint Francis,ME,4774 +Sherman Mills,ME,4776 +Sherman Station,ME,4777 +Sinclair,ME,4779 +Smyrna Mills,ME,4780 +Soldier Pond,ME,4781 +Stockholm,ME,4783 +Van Buren,ME,4785 +Washburn,ME,4786 +Westfield,ME,4787 +Rockland,ME,4841 +Camden,ME,4843 +Hope,ME,4847 +Islesboro,ME,4848 +Lincolnville,ME,4849 +Monhegan,ME,4852 +North Haven,ME,4853 +Owls Head,ME,4854 +Rockport,ME,4856 +Saint George,ME,4857 +South Thomaston,ME,4858 +Spruce Head,ME,4859 +Tenants Harbor,ME,4860 +Thomaston,ME,4861 +Union,ME,4862 +Vinalhaven,ME,4863 +Warren,ME,4864 +West Rockport,ME,4865 +Winslow,ME,4901 +Albion,ME,4910 +Anson,ME,4911 +Athens,ME,4912 +Belfast,ME,4915 +Belgrade,ME,4917 +Belgrade Lakes,ME,4918 +Bingham,ME,4920 +Brooks,ME,4921 +Burnham,ME,4922 +Cambridge,ME,4923 +Canaan,ME,4924 +Caratunk,ME,4925 +Clinton,ME,4927 +Corinna,ME,4928 +Detroit,ME,4929 +Dexter,ME,4930 +Dixmont,ME,4932 +Eustis,ME,4936 +Benton Station,ME,4937 +Farmington,ME,4938 +Freedom,ME,4941 +Wellington,ME,4942 +Hartland,ME,4943 +Jackman,ME,4945 +Kingfield,ME,4947 +Liberty,ME,4949 +Madison,ME,4950 +Monroe,ME,4951 +Morrill,ME,4952 +Newport,ME,4953 +New Portland,ME,4954 +New Sharon,ME,4955 +New Vineyard,ME,4956 +Norridgewock,ME,4957 +North Anson,ME,4958 +North New Portla,ME,4961 +North Vassalboro,ME,4962 +Oakland,ME,4963 +Palmyra,ME,4965 +Phillips,ME,4966 +Pittsfield,ME,4967 +Plymouth,ME,4969 +Rangeley,ME,4970 +Saint Albans,ME,4971 +Searsmont,ME,4973 +Searsport,ME,4974 +Skowhegan,ME,4976 +Smithfield,ME,4978 +Solon,ME,4979 +Stockton Springs,ME,4981 +Stratton,ME,4982 +Strong,ME,4983 +Temple,ME,4984 +West Forks,ME,4985 +Thorndike,ME,4986 +Troy,ME,4987 +Unity,ME,4988 +Vassalboro,ME,4989 +Andrews Afb,MD,20331 +Waldorf,MD,20601 +Saint Charles,MD,20602 +Saint Charles,MD,20603 +Abell,MD,20606 +Accokeek,MD,20607 +Aquasco,MD,20608 +Avenue,MD,20609 +Bel Alton,MD,20611 +Brandywine,MD,20613 +Broomes Island,MD,20615 +Bryans Road,MD,20616 +Bryantown,MD,20617 +Bushwood,MD,20618 +California,MD,20619 +Callaway,MD,20620 +Maddox,MD,20621 +Charlotte Hall,MD,20622 +Cheltenham,MD,20623 +Clements,MD,20624 +Coltons Point,MD,20626 +Dameron,MD,20628 +Drayden,MD,20630 +Faulkner,MD,20632 +Great Mills,MD,20634 +Hollywood,MD,20636 +Hughesville,MD,20637 +Huntingtown,MD,20639 +Pisgah,MD,20640 +Issue,MD,20645 +La Plata,MD,20646 +Leonardtown,MD,20650 +Lexington Park,MD,20653 +Loveville,MD,20656 +Lusby,MD,20657 +Rison,MD,20658 +Mechanicsville,MD,20659 +Nanjemoy,MD,20662 +Newburg,MD,20664 +Park Hall,MD,20667 +Patuxent River,MD,20670 +Piney Point,MD,20674 +Pomfret,MD,20675 +Port Republic,MD,20676 +Port Tobacco,MD,20677 +Prince Frederick,MD,20678 +Ridge,MD,20680 +Saint Inigoes,MD,20684 +Saint Leonard,MD,20685 +Scotland,MD,20687 +Solomons,MD,20688 +Sunderland,MD,20689 +Tall Timbers,MD,20690 +Valley Lee,MD,20692 +Welcome,MD,20693 +White Plains,MD,20695 +Annapolis Juncti,MD,20701 +Beltsville,MD,20705 +Lanham,MD,20706 +Laurel,MD,20707 +Montpelier,MD,20708 +Bladensburg,MD,20710 +Lothian,MD,20711 +Mount Rainier,MD,20712 +North Beach,MD,20714 +Bowie,MD,20715 +Mitchellville,MD,20716 +Bowie,MD,20720 +Mitchellville,MD,20721 +Brentwood,MD,20722 +Laurel,MD,20723 +Laurel,MD,20724 +Chesapeake Beach,MD,20732 +Churchton,MD,20733 +Clinton,MD,20735 +Owings,MD,20736 +Riverdale,MD,20737 +College Park,MD,20740 +Capital Heights,MD,20743 +Fort Washington,MD,20744 +Oxon Hill,MD,20745 +Suitland,MD,20746 +District Heights,MD,20747 +Temple Hills,MD,20748 +Deale,MD,20751 +Dunkirk,MD,20754 +Fort George G Me,MD,20755 +Friendship,MD,20758 +Fulton,MD,20759 +Savage,MD,20763 +Shady Side,MD,20764 +Glenn Dale,MD,20769 +Greenbelt,MD,20770 +Upper Marlboro,MD,20772 +Harwood,MD,20776 +Highland,MD,20777 +West River,MD,20778 +Tracys Landing,MD,20779 +Hyattsville,MD,20781 +West Hyattsville,MD,20782 +Adelphi,MD,20783 +Landover Hills,MD,20784 +Landover,MD,20785 +Jessup,MD,20794 +Glen Echo,MD,20812 +Bethesda,MD,20814 +Chevy Chase,MD,20815 +Bethesda,MD,20816 +West Bethesda,MD,20817 +Cabin John,MD,20818 +Olney,MD,20832 +Brookeville,MD,20833 +Poolesville,MD,20837 +Barnesville,MD,20838 +Beallsville,MD,20839 +Boyds,MD,20841 +Dickerson,MD,20842 +Rockville,MD,20850 +Rockville,MD,20851 +Rockville,MD,20852 +Rockville,MD,20853 +Potomac,MD,20854 +Derwood,MD,20855 +Sandy Spring,MD,20860 +Ashton,MD,20861 +Brinklow,MD,20862 +Burtonsville,MD,20866 +Spencerville,MD,20868 +Clarksburg,MD,20871 +Damascus,MD,20872 +Darnestown,MD,20874 +Germantown,MD,20876 +Gaithersburg,MD,20877 +Darnestown,MD,20878 +Laytonsville,MD,20879 +Laytonsville,MD,20882 +Kensington,MD,20895 +Silver Spring,MD,20901 +Wheaton,MD,20902 +Silver Spring,MD,20903 +Colesville,MD,20904 +Colesville,MD,20905 +Aspen Hill,MD,20906 +Silver Spring,MD,20910 +Takoma Park,MD,20912 +Aberdeen,MD,21001 +Aberdeen Proving,MD,21005 +Abingdon,MD,21009 +Gunpowder,MD,21010 +Arnold,MD,21012 +Baldwin,MD,21013 +Bel Air,MD,21014 +Bel Air,MD,21015 +Belcamp,MD,21017 +Bradshaw,MD,21021 +Churchville,MD,21028 +Clarksville,MD,21029 +Cockeysville Hun,MD,21030 +Cockeysville Hun,MD,21031 +Crownsville,MD,21032 +Darlington,MD,21034 +Davidsonville,MD,21035 +Dayton,MD,21036 +Edgewater Beach,MD,21037 +Edgewood,MD,21040 +Ellicott City,MD,21042 +Daniels,MD,21043 +Columbia,MD,21044 +Columbia,MD,21045 +Columbia,MD,21046 +Fallston,MD,21047 +Patapsco,MD,21048 +Forest Hill,MD,21050 +Fork,MD,21051 +Freeland,MD,21053 +Gambrills,MD,21054 +Gibson Island,MD,21056 +Glen Arm,MD,21057 +Glen Burnie,MD,21061 +Glyndon,MD,21071 +Greenmount,MD,21074 +Hanover,MD,21076 +Havre De Grace,MD,21078 +Hydes,MD,21082 +Jarrettsville,MD,21084 +Joppa,MD,21085 +Kingsville,MD,21087 +Lineboro,MD,21088 +Linthicum Height,MD,21090 +Lutherville,MD,21093 +Manchester,MD,21102 +Marriottsville,MD,21104 +Millers,MD,21107 +Millersville,MD,21108 +Hereford,MD,21111 +Odenton,MD,21113 +Crofton,MD,21114 +Owings Mills,MD,21117 +Bentley Springs,MD,21120 +Riviera Beach,MD,21122 +Perry Hall,MD,21128 +Jacksonville,MD,21131 +Pylesville,MD,21132 +Randallstown,MD,21133 +Reisterstown,MD,21136 +Riva,MD,21140 +Severn,MD,21144 +Severna Park,MD,21146 +Glencoe,MD,21152 +Rocks,MD,21154 +Fowbelsburg,MD,21155 +Upper Falls,MD,21156 +Carrollton,MD,21157 +Uniontown,MD,21158 +Whiteford,MD,21160 +White Hall,MD,21161 +White Marsh,MD,21162 +Granite,MD,21163 +Baltimore,MD,21201 +Baltimore,MD,21202 +Eudowood,MD,21204 +Baltimore,MD,21205 +Baltimore,MD,21206 +Gwynn Oak,MD,21207 +Pikesville,MD,21208 +Baltimore,MD,21209 +Baltimore,MD,21210 +Baltimore,MD,21211 +Baltimore,MD,21212 +Baltimore,MD,21213 +Baltimore,MD,21214 +Baltimore,MD,21215 +Baltimore,MD,21216 +Baltimore,MD,21217 +Baltimore,MD,21218 +Dundalk Sparrows,MD,21219 +Middle River,MD,21220 +Essex,MD,21221 +Dundalk Sparrows,MD,21222 +Baltimore,MD,21223 +Baltimore,MD,21224 +Brooklyn Curtis,MD,21225 +Brooklyn Curtis,MD,21226 +Halethorpe,MD,21227 +Catonsville,MD,21228 +Baltimore,MD,21229 +Baltimore,MD,21230 +Baltimore,MD,21231 +Parkville,MD,21234 +Nottingham,MD,21236 +Rosedale,MD,21237 +Baltimore,MD,21239 +Baltimore,MD,21240 +Cape Saint Clair,MD,21401 +Naval Academy,MD,21402 +Annapolis,MD,21403 +Cresaptown,MD,21502 +Accident,MD,21520 +Barton,MD,21521 +Bittinger,MD,21522 +Bloomington,MD,21523 +Flintstone,MD,21530 +Friendsville,MD,21531 +Frostburg,MD,21532 +Jennings,MD,21536 +Shallmar,MD,21538 +Lonaconing,MD,21539 +Luke,MD,21540 +Sang Run,MD,21541 +Mount Savage,MD,21545 +Deer Park,MD,21550 +Oldtown,MD,21555 +Rawlings,MD,21557 +Swanton,MD,21561 +Mccoole,MD,21562 +Easton,MD,21601 +Barclay,MD,21607 +Betterton,MD,21610 +Bozman,MD,21612 +Cambridge,MD,21613 +Centreville,MD,21617 +Chester,MD,21619 +Chestertown,MD,21620 +Church Creek,MD,21622 +Church Hill,MD,21623 +Cordova,MD,21625 +Crapo,MD,21626 +Crumpton,MD,21628 +Denton,MD,21629 +East New Market,MD,21631 +Federalsburg,MD,21632 +Fishing Creek,MD,21634 +Galena,MD,21635 +Goldsboro,MD,21636 +Golts,MD,21637 +Grasonville,MD,21638 +Greensboro,MD,21639 +Henderson,MD,21640 +Williamsburg,MD,21643 +Ingleside,MD,21644 +Kennedyville,MD,21645 +Mcdaniel,MD,21647 +Marydel,MD,21649 +Massey,MD,21650 +Millington,MD,21651 +Oxford,MD,21654 +Preston,MD,21655 +Queen Anne,MD,21657 +Queenstown,MD,21658 +Rhodesdale,MD,21659 +Ridgely,MD,21660 +Rock Hall,MD,21661 +Royal Oak,MD,21662 +Saint Michaels,MD,21663 +Sherwood,MD,21665 +Stevensville,MD,21666 +Still Pond,MD,21667 +Sudlersville,MD,21668 +Taylors Island,MD,21669 +Tilghman,MD,21671 +Toddville,MD,21672 +Trappe,MD,21673 +Wingate,MD,21675 +Wittman,MD,21676 +Woolford,MD,21677 +Worton,MD,21678 +Wye Mills,MD,21679 +Lewistown,MD,21701 +Fort Detrick,MD,21702 +Doubs,MD,21710 +Big Pool,MD,21711 +Fahrney Keedy Me,MD,21713 +Brunswick,MD,21716 +Burkittsville,MD,21718 +Fort Ritchie,MD,21719 +Big Spring,MD,21722 +Cooksville,MD,21723 +Detour,MD,21725 +Emmitsburg,MD,21727 +Fair Play,MD,21733 +Glenelg,MD,21737 +Glenwood,MD,21738 +Hagerstown,MD,21740 +Hagerstown,MD,21742 +Hancock,MD,21750 +Ijamsville,MD,21754 +Jefferson,MD,21755 +Keedysville,MD,21756 +Keymar,MD,21757 +Knoxville,MD,21758 +Linwood,MD,21764 +Little Orleans,MD,21766 +Maugansville,MD,21767 +Middletown,MD,21769 +Monrovia,MD,21770 +Mount Airy,MD,21771 +Myersville,MD,21773 +New Windsor,MD,21776 +Point Of Rocks,MD,21777 +Rocky Ridge,MD,21778 +Rohrersville,MD,21779 +Sabillasville,MD,21780 +Sharpsburg,MD,21782 +Smithsburg,MD,21783 +Carrolltowne,MD,21784 +Taneytown,MD,21787 +Graceham,MD,21788 +Tuscarora,MD,21790 +Unionville,MD,21791 +Walkersville,MD,21793 +West Friendship,MD,21794 +Williamsport,MD,21795 +Woodbine,MD,21797 +Woodsboro,MD,21798 +Salisbury,MD,21801 +Berlin,MD,21811 +Bishopville,MD,21813 +Bivalve,MD,21814 +Chance,MD,21816 +Crisfield,MD,21817 +Dames Quarter,MD,21820 +Deal Island,MD,21821 +Eden,MD,21822 +Ewell,MD,21824 +Fruitland,MD,21826 +Girdletree,MD,21829 +Hebron,MD,21830 +Linkwood,MD,21835 +Mardela Springs,MD,21837 +Marion Station,MD,21838 +Nanticoke,MD,21840 +Newark,MD,21841 +Ocean City,MD,21842 +Parsonsburg,MD,21849 +Pittsville,MD,21850 +Pocomoke City,MD,21851 +Princess Anne,MD,21853 +Quantico,MD,21856 +21858,MD,21858 +Snow Hill,MD,21863 +Stockton,MD,21864 +Tyaskin,MD,21865 +Tylerton,MD,21866 +Vienna,MD,21869 +Wenona,MD,21870 +Westover,MD,21871 +Whaleysville,MD,21872 +Willards,MD,21874 +Delmar,MD,21875 +North East,MD,21901 +Perryville,MD,21903 +Bainbridge,MD,21904 +Rising Sun,MD,21911 +Warwick,MD,21912 +Cecilton,MD,21913 +Charlestown,MD,21914 +Chesapeake City,MD,21915 +Colora,MD,21917 +Conowingo,MD,21918 +Earleville,MD,21919 +Elkton,MD,21921 +Agawam,MA,1001 +Cushman,MA,1002 +Barre,MA,1005 +Belchertown,MA,1007 +Blandford,MA,1008 +Brimfield,MA,1010 +Chester,MA,1011 +Chesterfield,MA,1012 +Chicopee,MA,1013 +Chicopee,MA,1020 +Westover Afb,MA,1022 +Cummington,MA,1026 +Mount Tom,MA,1027 +East Longmeadow,MA,1028 +Feeding Hills,MA,1030 +Gilbertville,MA,1031 +Goshen,MA,1032 +Granby,MA,1033 +Tolland,MA,1034 +Hadley,MA,1035 +Hampden,MA,1036 +Hatfield,MA,1038 +Haydenville,MA,1039 +Holyoke,MA,1040 +Huntington,MA,1050 +Leeds,MA,1053 +Leverett,MA,1054 +Ludlow,MA,1056 +Monson,MA,1057 +Florence,MA,1060 +Oakham,MA,1068 +Palmer,MA,1069 +Plainfield,MA,1070 +Russell,MA,1071 +Shutesbury,MA,1072 +Southampton,MA,1073 +South Hadley,MA,1075 +Southwick,MA,1077 +Three Rivers,MA,1080 +Wales,MA,1081 +Ware,MA,1082 +Montgomery,MA,1085 +West Springfield,MA,1089 +West Warren,MA,1092 +Wilbraham,MA,1095 +Williamsburg,MA,1096 +Worthington,MA,1098 +Springfield,MA,1103 +Springfield,MA,1104 +Springfield,MA,1105 +Longmeadow,MA,1106 +Springfield,MA,1107 +Springfield,MA,1108 +Springfield,MA,1109 +Springfield,MA,1118 +Springfield,MA,1119 +Springfield,MA,1128 +Springfield,MA,1129 +Indian Orchard,MA,1151 +Pittsfield,MA,1201 +Adams,MA,1220 +Ashley Falls,MA,1222 +Becket,MA,1223 +Cheshire,MA,1225 +Dalton,MA,1226 +Great Barrington,MA,1230 +Peru,MA,1235 +Housatonic,MA,1236 +Hancock,MA,1237 +Lee,MA,1238 +Lenox,MA,1240 +Middlefield,MA,1243 +West Otis,MA,1245 +Clarksburg,MA,1247 +Otis,MA,1253 +Richmond,MA,1254 +Sandisfield,MA,1255 +Savoy,MA,1256 +Sheffield,MA,1257 +South Egremont,MA,1258 +Southfield,MA,1259 +Stockbridge,MA,1262 +West Stockbridge,MA,1266 +Williamstown,MA,1267 +Windsor,MA,1270 +Leyden,MA,1301 +Ashfield,MA,1330 +New Salem,MA,1331 +Leyden,MA,1337 +Buckland,MA,1338 +Hawley,MA,1339 +Colrain,MA,1340 +Conway,MA,1341 +Deerfield,MA,1342 +Erving,MA,1344 +Heath,MA,1346 +Millers Falls,MA,1349 +Monroe,MA,1350 +Montague,MA,1351 +New Salem,MA,1355 +Northfield,MA,1360 +New Salem,MA,1364 +Petersham,MA,1366 +Rowe,MA,1367 +Shelburne Falls,MA,1370 +South Deerfield,MA,1373 +Sunderland,MA,1375 +Turners Falls,MA,1376 +Wendell,MA,1379 +Fitchburg,MA,1420 +Ashburnham,MA,1430 +Ashby,MA,1431 +Ayer,MA,1432 +Ft Devens,MA,1433 +Baldwinville,MA,1436 +Gardner,MA,1440 +Groton,MA,1450 +Harvard,MA,1451 +Hubbardston,MA,1452 +Leominster,MA,1453 +Littleton,MA,1460 +Lunenburg,MA,1462 +Pepperell,MA,1463 +Shirley Center,MA,1464 +Templeton,MA,1468 +Townsend,MA,1469 +Westminster,MA,1473 +W Townsend,MA,1474 +Winchendon,MA,1475 +Auburn,MA,1501 +Berlin,MA,1503 +Blackstone,MA,1504 +Boylston,MA,1505 +Brookfield,MA,1506 +Charlton,MA,1507 +Clinton,MA,1510 +East Brookfield,MA,1515 +East Douglas,MA,1516 +Fiskdale,MA,1518 +Grafton,MA,1519 +Holden,MA,1520 +Holland,MA,1521 +Jefferson,MA,1522 +Lancaster,MA,1523 +Leicester,MA,1524 +Millbury,MA,1527 +Millville,MA,1529 +New Braintree,MA,1531 +Northborough,MA,1532 +Northbridge,MA,1534 +North Brookfield,MA,1535 +North Grafton,MA,1536 +North Oxford,MA,1537 +Oxford,MA,1540 +Princeton,MA,1541 +Rochdale,MA,1542 +Rutland,MA,1543 +Shrewsbury,MA,1545 +Southbridge,MA,1550 +South Grafton,MA,1560 +Spencer,MA,1562 +Sterling,MA,1564 +Sturbridge,MA,1566 +West Upton,MA,1568 +Uxbridge,MA,1569 +Dudley Hill,MA,1570 +Dudley,MA,1571 +Westborough,MA,1581 +West Boylston,MA,1583 +West Brookfield,MA,1585 +Whitinsville,MA,1588 +Wilkinsonville,MA,1590 +Worcester,MA,1602 +Worcester,MA,1603 +Worcester,MA,1604 +Worcester,MA,1605 +Worcester,MA,1606 +Worcester,MA,1607 +Worcester,MA,1608 +Worcester,MA,1609 +Worcester,MA,1610 +Cherry Valley,MA,1611 +Paxton,MA,1612 +Framingham,MA,1701 +Village Of Nagog,MA,1718 +Boxboro,MA,1719 +Acton,MA,1720 +Ashland,MA,1721 +Bedford,MA,1730 +Bolton,MA,1740 +Carlisle,MA,1741 +Concord,MA,1742 +Southborough,MA,1745 +Holliston,MA,1746 +Hopedale,MA,1747 +Hopkinton,MA,1748 +Hudson,MA,1749 +Marlborough,MA,1752 +Maynard,MA,1754 +Mendon,MA,1756 +Milford,MA,1757 +Natick,MA,1760 +Sherborn,MA,1770 +Southborough,MA,1772 +Lincoln,MA,1773 +Stow,MA,1775 +Sudbury,MA,1776 +Wayland,MA,1778 +Woburn,MA,1801 +Burlington,MA,1803 +Andover,MA,1810 +Billerica,MA,1821 +South Chelmsford,MA,1824 +Dracut,MA,1826 +Dunstable,MA,1827 +Haverhill,MA,1830 +Haverhill,MA,1832 +Georgetown,MA,1833 +Groveland,MA,1834 +Bradford,MA,1835 +Lawrence,MA,1840 +Lawrence,MA,1841 +Lawrence,MA,1843 +Methuen,MA,1844 +North Andover,MA,1845 +Lowell,MA,1850 +Lowell,MA,1851 +Lowell,MA,1852 +Lowell,MA,1854 +Merrimac,MA,1860 +North Billerica,MA,1862 +North Chelmsford,MA,1863 +North Reading,MA,1864 +Reading,MA,1867 +Tewksbury,MA,1876 +Tyngsboro,MA,1879 +Wakefield,MA,1880 +Graniteville,MA,1886 +Wilmington,MA,1887 +Winchester,MA,1890 +Lynn,MA,1901 +Lynn,MA,1902 +East Lynn,MA,1904 +West Lynn,MA,1905 +Saugus,MA,1906 +Swampscott,MA,1907 +Nahant,MA,1908 +Amesbury,MA,1913 +Beverly,MA,1915 +Boxford,MA,1921 +Byfield,MA,1922 +Danvers,MA,1923 +Essex,MA,1929 +Gloucester,MA,1930 +Ipswich,MA,1938 +Lynnfield,MA,1940 +Manchester,MA,1944 +Marblehead,MA,1945 +Middleton,MA,1949 +Newburyport,MA,1950 +Newbury,MA,1951 +Salisbury,MA,1952 +Peabody,MA,1960 +Rockport,MA,1966 +Rowley,MA,1969 +Salem,MA,1970 +South Hamilton,MA,1982 +Topsfield,MA,1983 +Wenham,MA,1984 +West Newbury,MA,1985 +Bellingham,MA,2019 +Canton,MA,2021 +Cohasset,MA,2025 +Dedham,MA,2026 +Dover,MA,2030 +East Walpole,MA,2032 +Foxboro,MA,2035 +Franklin,MA,2038 +Hingham,MA,2043 +Hull,MA,2045 +Mansfield,MA,2048 +Marshfield,MA,2050 +Medfield,MA,2052 +Medway,MA,2053 +Millis,MA,2054 +Norfolk,MA,2056 +Norwell,MA,2061 +Norwood,MA,2062 +Scituate,MA,2066 +Sharon,MA,2067 +South Walpole,MA,2071 +Stoughton,MA,2072 +Walpole,MA,2081 +Westwood,MA,2090 +Wrentham,MA,2093 +Boston,MA,2108 +Boston,MA,2109 +Boston,MA,2110 +Boston,MA,2111 +Boston,MA,2113 +Boston,MA,2114 +Boston,MA,2115 +Boston,MA,2116 +Roxbury,MA,2118 +Roxbury,MA,2119 +Roxbury,MA,2120 +Dorchester,MA,2121 +Dorchester,MA,2122 +Dorchester,MA,2124 +Dorchester,MA,2125 +Mattapan,MA,2126 +South Boston,MA,2127 +East Boston,MA,2128 +Charlestown,MA,2129 +Jamaica Plain,MA,2130 +Roslindale,MA,2131 +West Roxbury,MA,2132 +Allston,MA,2134 +Brighton,MA,2135 +Hyde Park,MA,2136 +Cambridge,MA,2138 +Cambridge,MA,2139 +North Cambridge,MA,2140 +East Cambridge,MA,2141 +Cambridge,MA,2142 +Somerville,MA,2143 +Somerville,MA,2144 +Somerville,MA,2145 +Brookline,MA,2146 +Malden,MA,2148 +Everett,MA,2149 +Chelsea,MA,2150 +Revere,MA,2151 +Winthrop,MA,2152 +North Waltham,MA,2154 +Medford,MA,2155 +Newtonville,MA,2158 +Newton Center,MA,2159 +Newtonville,MA,2160 +Newton Highlands,MA,2161 +Newtonville,MA,2162 +Cambridge,MA,2163 +Newton Upper Fal,MA,2164 +Newtonville,MA,2165 +Auburndale,MA,2166 +Boston College,MA,2167 +Waban,MA,2168 +Quincy,MA,2169 +Quincy,MA,2170 +Quincy,MA,2171 +East Watertown,MA,2172 +Lexington,MA,2173 +Arlington,MA,2174 +Melrose,MA,2176 +Belmont,MA,2178 +Stoneham,MA,2180 +Wellesley,MA,2181 +Braintree,MA,2184 +Milton,MA,2186 +Weymouth,MA,2188 +Weymouth,MA,2189 +Weymouth,MA,2190 +Weymouth,MA,2191 +Needham,MA,2192 +Weston,MA,2193 +Needham,MA,2194 +Boston,MA,2199 +Boston,MA,2210 +Boston,MA,2215 +Avon,MA,2322 +Bridgewater,MA,2324 +Carver,MA,2330 +Duxbury,MA,2332 +East Bridgewater,MA,2333 +Halifax,MA,2338 +Hanover,MA,2339 +Hanson,MA,2341 +Holbrook,MA,2343 +Middleboro,MA,2346 +Lakeville,MA,2347 +Abington,MA,2351 +North Easton,MA,2356 +Pembroke,MA,2359 +Plymouth,MA,2360 +Kingston,MA,2364 +Plympton,MA,2367 +Randolph,MA,2368 +Rockland,MA,2370 +South Easton,MA,2375 +West Bridgewater,MA,2379 +Whitman,MA,2382 +Brockton,MA,2401 +Brockton,MA,2402 +Onset,MA,2532 +Chilmark,MA,2535 +Teaticket,MA,2536 +East Sandwich,MA,2537 +East Wareham,MA,2538 +Edgartown,MA,2539 +Falmouth,MA,2540 +Otis A F B,MA,2542 +Woods Hole,MA,2543 +Nantucket,MA,2554 +North Falmouth,MA,2556 +Pocasset,MA,2559 +Sandwich,MA,2563 +Vineyard Haven,MA,2568 +Wareham,MA,2571 +West Tisbury,MA,2575 +West Wareham,MA,2576 +West Yarmouth,MA,2601 +Barnstable,MA,2630 +Brewster,MA,2631 +Centerville,MA,2632 +South Chatham,MA,2633 +Cotuit,MA,2635 +Dennis,MA,2638 +Dennis Port,MA,2639 +Eastham,MA,2642 +Forestdale,MA,2644 +Harwich,MA,2645 +Harwich Port,MA,2646 +Marstons Mills,MA,2648 +Mashpee,MA,2649 +North Chatham,MA,2650 +North Truro,MA,2652 +Orleans,MA,2653 +Osterville,MA,2655 +Provincetown,MA,2657 +South Chatham,MA,2659 +South Dennis,MA,2660 +Bass River,MA,2664 +Truro,MA,2666 +Wellfleet,MA,2667 +West Barnstable,MA,2668 +West Dennis,MA,2670 +West Harwich,MA,2671 +West Yarmouth,MA,2673 +Yarmouth Port,MA,2675 +Assonet,MA,2702 +Attleboro,MA,2703 +Cuttyhunk,MA,2713 +Dighton,MA,2715 +East Freetown,MA,2717 +East Taunton,MA,2718 +Fairhaven,MA,2719 +Fall River,MA,2720 +Fall River,MA,2721 +Fall River,MA,2723 +Fall River,MA,2724 +Somerset,MA,2725 +Somerset,MA,2726 +Marion,MA,2738 +Mattapoisett,MA,2739 +New Bedford,MA,2740 +Acushnet,MA,2743 +New Bedford,MA,2744 +New Bedford,MA,2745 +New Bedford,MA,2746 +North Dartmouth,MA,2747 +Padanaram Villag,MA,2748 +North Attleboro,MA,2760 +Plainville,MA,2762 +North Attleboro,MA,2763 +North Dighton,MA,2764 +Norton,MA,2766 +Raynham,MA,2767 +Rehoboth,MA,2769 +Rochester,MA,2770 +Seekonk,MA,2771 +Swansea,MA,2777 +Berkley,MA,2779 +Taunton,MA,2780 +Westport,MA,2790 +Pearl Beach,MI,48001 +Berlin,MI,48002 +Almont,MI,48003 +Anchorville,MI,48004 +Armada,MI,48005 +Greenwood,MI,48006 +Birmingham,MI,48009 +Mussey,MI,48014 +Center Line,MI,48015 +Clawson,MI,48017 +Eastpointe,MI,48021 +Emmett,MI,48022 +Ira,MI,48023 +Franklin,MI,48025 +Fraser,MI,48026 +Wales,MI,48027 +Harsens Island,MI,48028 +Hazel Park,MI,48030 +Grant Township,MI,48032 +Southfield,MI,48034 +Cottrellville,MI,48039 +Marysville,MI,48040 +Riley,MI,48041 +Mount Clemens,MI,48043 +Macomb,MI,48044 +Selfridge A N G,MI,48045 +Chesterfield,MI,48047 +Lenox,MI,48048 +Ruby,MI,48049 +Port Huron,MI,48060 +Richmond,MI,48062 +Bruce,MI,48065 +Roseville,MI,48066 +Royal Oak,MI,48067 +Pleasant Ridge,MI,48069 +Huntington Woods,MI,48070 +Madison Heights,MI,48071 +Berkley,MI,48072 +Royal Oak,MI,48073 +Kimball,MI,48074 +Southfield,MI,48075 +Lathrup Village,MI,48076 +Saint Clair,MI,48079 +Saint Clair Shor,MI,48080 +Saint Clair Shor,MI,48081 +Saint Clair Shor,MI,48082 +Troy,MI,48083 +Troy,MI,48084 +Warren,MI,48089 +Warren,MI,48091 +Warren,MI,48092 +Warren,MI,48093 +Washington,MI,48094 +Brockway,MI,48097 +Troy,MI,48098 +Allen Park,MI,48101 +Ann Arbor,MI,48103 +Ann Arbor,MI,48104 +Ann Arbor,MI,48105 +Ann Arbor,MI,48108 +Ann Arbor,MI,48109 +Belleville,MI,48111 +Brighton,MI,48116 +Carleton,MI,48117 +Chelsea,MI,48118 +Dearborn,MI,48120 +Melvindale,MI,48122 +Dearborn,MI,48124 +Dearborn Heights,MI,48125 +Dearborn,MI,48126 +Dearborn Heights,MI,48127 +Dearborn,MI,48128 +Dexter,MI,48130 +Dundee,MI,48131 +Erie,MI,48133 +Flat Rock,MI,48134 +Garden City,MI,48135 +Gregory,MI,48137 +Grosse Ile,MI,48138 +Ida,MI,48140 +Inkster,MI,48141 +Lambertville,MI,48144 +La Salle,MI,48145 +Lincoln Park,MI,48146 +Livonia,MI,48150 +Livonia,MI,48152 +Livonia,MI,48154 +Luna Pier,MI,48157 +Manchester,MI,48158 +Maybee,MI,48159 +Milan,MI,48160 +Detroit Beach,MI,48161 +New Boston,MI,48164 +New Hudson,MI,48165 +Newport,MI,48166 +Northville,MI,48167 +Pinckney,MI,48169 +Plymouth,MI,48170 +Gibraltar,MI,48173 +Romulus,MI,48174 +Saline,MI,48176 +South Lyon,MI,48178 +South Rockwood,MI,48179 +Taylor,MI,48180 +Temperance,MI,48182 +Woodhaven,MI,48183 +Wayne,MI,48184 +Westland,MI,48185 +Canton,MI,48187 +Canton,MI,48188 +Whitmore Lake,MI,48189 +Willis,MI,48191 +Riverview,MI,48192 +Southgate,MI,48195 +Ypsilanti,MI,48197 +Ypsilanti,MI,48198 +Detroit,MI,48201 +Detroit,MI,48202 +Highland Park,MI,48203 +Detroit,MI,48204 +Detroit,MI,48205 +Detroit,MI,48206 +Detroit,MI,48207 +Detroit,MI,48208 +Detroit,MI,48209 +Detroit,MI,48210 +Detroit,MI,48211 +Hamtramck,MI,48212 +Detroit,MI,48213 +Detroit,MI,48214 +Detroit,MI,48215 +Detroit,MI,48216 +Detroit,MI,48217 +River Rouge,MI,48218 +Detroit,MI,48219 +Ferndale,MI,48220 +Detroit,MI,48221 +Detroit,MI,48223 +Detroit,MI,48224 +Harper Woods,MI,48225 +Detroit,MI,48226 +Detroit,MI,48227 +Detroit,MI,48228 +Ecorse,MI,48229 +Grosse Pointe,MI,48230 +Detroit,MI,48234 +Detroit,MI,48235 +Grosse Pointe,MI,48236 +Oak Park,MI,48237 +Detroit,MI,48238 +Redford,MI,48239 +Redford,MI,48240 +Detroit,MI,48242 +Bloomfield Towns,MI,48301 +Bloomfield Towns,MI,48302 +Bloomfield Towns,MI,48304 +Rochester Hills,MI,48306 +Rochester Hills,MI,48307 +Rochester Hills,MI,48309 +Sterling Heights,MI,48310 +Sterling Heights,MI,48312 +Sterling Heights,MI,48313 +Sterling Heights,MI,48314 +Shelby Township,MI,48315 +Shelby Township,MI,48316 +Shelby Township,MI,48317 +Sylvan Lake,MI,48320 +West Bloomfield,MI,48322 +Orchard Lake,MI,48323 +Orchard Lake,MI,48324 +Auburn Hills,MI,48326 +Waterford,MI,48327 +Waterford,MI,48328 +Waterford,MI,48329 +Farmington Hills,MI,48331 +Farmington Hills,MI,48334 +Farmington Hills,MI,48335 +Farmington Hills,MI,48336 +Pontiac,MI,48340 +Pontiac,MI,48341 +Pontiac,MI,48342 +Independence,MI,48346 +Independence,MI,48348 +Springfield,MI,48350 +Hartland,MI,48353 +Highland,MI,48356 +Highland,MI,48357 +Orion,MI,48359 +Orion,MI,48360 +Orion,MI,48362 +Oakland,MI,48363 +Addison Township,MI,48367 +Oxford,MI,48370 +Oxford,MI,48371 +Novi,MI,48374 +Novi,MI,48375 +Novi,MI,48377 +Milford,MI,48380 +Milford,MI,48381 +Commerce Townshi,MI,48382 +White Lake,MI,48383 +White Lake,MI,48386 +Wolverine Lake,MI,48390 +Wixom,MI,48393 +Applegate,MI,48401 +Attica,MI,48412 +Bad Axe,MI,48413 +Bancroft,MI,48414 +Birch Run,MI,48415 +Brown City,MI,48416 +Burt,MI,48417 +Byron,MI,48418 +Carsonville,MI,48419 +Clio,MI,48420 +Columbiaville,MI,48421 +Croswell,MI,48422 +Davison,MI,48423 +Decker,MI,48426 +Deckerville,MI,48427 +Dryden,MI,48428 +Durand,MI,48429 +Fenton,MI,48430 +Filion,MI,48432 +Flushing,MI,48433 +Fostoria,MI,48435 +Gaines,MI,48436 +Goodrich,MI,48438 +Grand Blanc,MI,48439 +Harbor Beach,MI,48441 +Holly,MI,48442 +Imlay City,MI,48444 +Kinde,MI,48445 +Lapeer,MI,48446 +Lennon,MI,48449 +Lexington,MI,48450 +Linden,MI,48451 +Marlette,MI,48453 +Melvin,MI,48454 +Metamora,MI,48455 +Minden City,MI,48456 +Montrose,MI,48457 +Mount Morris,MI,48458 +New Lothrop,MI,48460 +North Branch,MI,48461 +Ortonville,MI,48462 +Otisville,MI,48463 +Otter Lake,MI,48464 +Palms,MI,48465 +Peck,MI,48466 +Port Austin,MI,48467 +Port Hope,MI,48468 +Port Sanilac,MI,48469 +Ruth,MI,48470 +Sandusky,MI,48471 +Snover,MI,48472 +Swartz Creek,MI,48473 +Ubly,MI,48475 +Flint,MI,48502 +Flint,MI,48503 +Northwest,MI,48504 +Flint,MI,48505 +Northeast,MI,48506 +Flint,MI,48507 +Northeast,MI,48509 +Southeast,MI,48519 +Southeast,MI,48529 +Northwest,MI,48532 +Saginaw,MI,48601 +Saginaw,MI,48602 +Saginaw,MI,48603 +Saginaw,MI,48604 +Saginaw,MI,48607 +Alger,MI,48610 +Auburn,MI,48611 +Beaverton,MI,48612 +Bentley,MI,48613 +Brant,MI,48614 +Breckenridge,MI,48615 +Chesaning,MI,48616 +Clare,MI,48617 +Coleman,MI,48618 +Comins,MI,48619 +Edenville,MI,48620 +Fairview,MI,48621 +Farwell,MI,48622 +Freeland,MI,48623 +Gladwin,MI,48624 +Harrison,MI,48625 +Hemlock,MI,48626 +Hope,MI,48628 +Houghton Lake,MI,48629 +Kawkawlin,MI,48631 +Lake,MI,48632 +Linwood,MI,48634 +Lupton,MI,48635 +Luzerne,MI,48636 +Merrill,MI,48637 +Midland,MI,48640 +Midland,MI,48642 +Mio,MI,48647 +Oakley,MI,48649 +Pinconning,MI,48650 +Prudenville,MI,48651 +Rhodes,MI,48652 +Roscommon,MI,48653 +Rose City,MI,48654 +Saint Charles,MI,48655 +Saint Helen,MI,48656 +Sanford,MI,48657 +Standish,MI,48658 +Sterling,MI,48659 +West Branch,MI,48661 +Wheeler,MI,48662 +Akron,MI,48701 +Au Gres,MI,48703 +Barton City,MI,48705 +University Cente,MI,48706 +Bay City,MI,48708 +Bay Port,MI,48720 +Black River,MI,48721 +Bridgeport,MI,48722 +Caro,MI,48723 +Caseville,MI,48725 +Cass City,MI,48726 +Clifford,MI,48727 +Curran,MI,48728 +Deford,MI,48729 +East Tawas,MI,48730 +Elkton,MI,48731 +Essexville,MI,48732 +Fairgrove,MI,48733 +Frankenmuth,MI,48734 +Gagetown,MI,48735 +Glennie,MI,48737 +Greenbush,MI,48738 +Hale,MI,48739 +Harrisville,MI,48740 +Kingston,MI,48741 +Lincoln,MI,48742 +Long Lake,MI,48743 +Mayville,MI,48744 +Mikado,MI,48745 +Millington,MI,48746 +Munger,MI,48747 +National City,MI,48748 +Omer,MI,48749 +Oscoda,MI,48750 +Owendale,MI,48754 +Pigeon,MI,48755 +Prescott,MI,48756 +Reese,MI,48757 +Sebewaing,MI,48759 +Silverwood,MI,48760 +South Branch,MI,48761 +Spruce,MI,48762 +Tawas City,MI,48763 +Turner,MI,48765 +Twining,MI,48766 +Unionville,MI,48767 +Vassar,MI,48768 +Whittemore,MI,48770 +Alma,MI,48801 +Ashley,MI,48806 +Bannister,MI,48807 +Bath,MI,48808 +Belding,MI,48809 +Carson City,MI,48811 +Charlotte,MI,48813 +Clarksville,MI,48815 +Corunna,MI,48817 +Crystal,MI,48818 +Dansville,MI,48819 +Dewitt,MI,48820 +Dimondale,MI,48821 +Eagle,MI,48822 +East Lansing,MI,48823 +Eaton Rapids,MI,48827 +Edmore,MI,48829 +Carland,MI,48831 +Elwell,MI,48832 +Fenwick,MI,48834 +Fowler,MI,48835 +Fowlerville,MI,48836 +Grand Ledge,MI,48837 +Greenville,MI,48838 +Haslett,MI,48840 +Henderson,MI,48841 +Holt,MI,48842 +Howell,MI,48843 +Hubbardston,MI,48845 +Ionia,MI,48846 +Ithaca,MI,48847 +Laingsburg,MI,48848 +Lake Odessa,MI,48849 +Lakeview,MI,48850 +Lyons,MI,48851 +Mason,MI,48854 +Middleton,MI,48856 +Morrice,MI,48857 +Mount Pleasant,MI,48858 +Muir,MI,48860 +Mulliken,MI,48861 +Okemos,MI,48864 +Orleans,MI,48865 +Ovid,MI,48866 +Owosso,MI,48867 +Perrinton,MI,48871 +Perry,MI,48872 +Pewamo,MI,48873 +Portland,MI,48875 +Potterville,MI,48876 +Riverdale,MI,48877 +Rosebush,MI,48878 +Saint Johns,MI,48879 +Saint Louis,MI,48880 +Saranac,MI,48881 +Shepherd,MI,48883 +Sheridan,MI,48884 +Sidney,MI,48885 +Six Lakes,MI,48886 +Stanton,MI,48888 +Sumner,MI,48889 +Sunfield,MI,48890 +Vestaburg,MI,48891 +Webberville,MI,48892 +Weidman,MI,48893 +Westphalia,MI,48894 +Williamston,MI,48895 +Woodland,MI,48897 +Lansing,MI,48906 +Lansing,MI,48910 +Lansing,MI,48911 +Lansing,MI,48912 +Lansing,MI,48915 +Lansing,MI,48917 +Lansing,MI,48933 +Kalamazoo,MI,49001 +Kalamazoo,MI,49002 +Parchment,MI,49004 +Kalamazoo,MI,49007 +Kalamazoo,MI,49008 +Kalamazoo,MI,49009 +Allegan,MI,49010 +Athens,MI,49011 +Augusta,MI,49012 +Bangor,MI,49013 +Battle Creek,MI,49015 +Battle Creek,MI,49017 +Bellevue,MI,49021 +Benton Harbor,MI,49022 +Bloomingdale,MI,49026 +Bronson,MI,49028 +Burlington,MI,49029 +Burr Oak,MI,49030 +Cassopolis,MI,49031 +Centreville,MI,49032 +Ceresco,MI,49033 +Climax,MI,49034 +Coldwater,MI,49036 +Coloma,MI,49038 +Colon,MI,49040 +Constantine,MI,49042 +Covert,MI,49043 +Decatur,MI,49045 +Delton,MI,49046 +Dowagiac,MI,49047 +Dowling,MI,49050 +East Leroy,MI,49051 +Fulton,MI,49052 +Galesburg,MI,49053 +Gobles,MI,49055 +Grand Junction,MI,49056 +Hartford,MI,49057 +Hastings,MI,49058 +Hickory Corners,MI,49060 +Jones,MI,49061 +Lawrence,MI,49064 +Lawton,MI,49065 +Leonidas,MI,49066 +Marcellus,MI,49067 +Marshall,MI,49068 +Martin,MI,49070 +Mattawan,MI,49071 +Mendon,MI,49072 +Nashville,MI,49073 +Olivet,MI,49076 +Otsego,MI,49078 +Paw Paw,MI,49079 +Plainwell,MI,49080 +Quincy,MI,49082 +Richland,MI,49083 +Saint Joseph,MI,49085 +Schoolcraft,MI,49087 +Scotts,MI,49088 +Sherwood,MI,49089 +South Haven,MI,49090 +Sturgis,MI,49091 +Tekonsha,MI,49092 +Three Rivers,MI,49093 +Union City,MI,49094 +Vandalia,MI,49095 +Vermontville,MI,49096 +Vicksburg,MI,49097 +Watervliet,MI,49098 +White Pigeon,MI,49099 +Baroda,MI,49101 +Berrien Center,MI,49102 +Berrien Springs,MI,49103 +Bridgman,MI,49106 +Buchanan,MI,49107 +Eau Claire,MI,49111 +Edwardsburg,MI,49112 +Galien,MI,49113 +Lakeside,MI,49116 +Grand Beach,MI,49117 +Niles,MI,49120 +Sawyer,MI,49125 +Sodus,MI,49126 +Stevensville,MI,49127 +Three Oaks,MI,49128 +Union Pier,MI,49129 +Union,MI,49130 +Jackson,MI,49201 +Jackson,MI,49202 +Jackson,MI,49203 +Addison,MI,49220 +Adrian,MI,49221 +Albion,MI,49224 +Allen,MI,49227 +Blissfield,MI,49228 +Britton,MI,49229 +Brooklyn,MI,49230 +Camden,MI,49232 +Cement City,MI,49233 +Clarklake,MI,49234 +Clayton,MI,49235 +Clinton,MI,49236 +Concord,MI,49237 +Deerfield,MI,49238 +Grass Lake,MI,49240 +Hanover,MI,49241 +Hillsdale,MI,49242 +Homer,MI,49245 +Horton,MI,49246 +Hudson,MI,49247 +Jasper,MI,49248 +Jerome,MI,49249 +Jonesville,MI,49250 +Leslie,MI,49251 +Litchfield,MI,49252 +Manitou Beach,MI,49253 +Michigan Center,MI,49254 +Montgomery,MI,49255 +Morenci,MI,49256 +Munith,MI,49259 +North Adams,MI,49262 +Onondaga,MI,49264 +Onsted,MI,49265 +Osseo,MI,49266 +Ottawa Lake,MI,49267 +Palmyra,MI,49268 +Parma,MI,49269 +Petersburg,MI,49270 +Pittsford,MI,49271 +Pleasant Lake,MI,49272 +Reading,MI,49274 +Ridgeway,MI,49275 +Riga,MI,49276 +Rives Junction,MI,49277 +Sand Creek,MI,49279 +Somerset,MI,49281 +Spring Arbor,MI,49283 +Springport,MI,49284 +Stockbridge,MI,49285 +Tecumseh,MI,49286 +Tipton,MI,49287 +Waldron,MI,49288 +Ada,MI,49301 +Alto,MI,49302 +Bailey,MI,49303 +Baldwin,MI,49304 +Barryton,MI,49305 +Belmont,MI,49306 +Big Rapids,MI,49307 +Bitely,MI,49309 +Blanchard,MI,49310 +Byron Center,MI,49315 +Dutton,MI,49316 +Casnovia,MI,49318 +Cedar Springs,MI,49319 +Comstock Park,MI,49321 +Coral,MI,49322 +Dorr,MI,49323 +Freeport,MI,49325 +Gowen,MI,49326 +Grant,MI,49327 +Hopkins,MI,49328 +Howard City,MI,49329 +Kent City,MI,49330 +Lowell,MI,49331 +Mecosta,MI,49332 +Middleville,MI,49333 +Morley,MI,49336 +Newaygo,MI,49337 +Paris,MI,49338 +Pierson,MI,49339 +Remus,MI,49340 +Rockford,MI,49341 +Rodney,MI,49342 +Sand Lake,MI,49343 +Shelbyville,MI,49344 +Sparta,MI,49345 +Stanwood,MI,49346 +Trufant,MI,49347 +Wayland,MI,49348 +White Cloud,MI,49349 +Allendale,MI,49401 +Branch,MI,49402 +Conklin,MI,49403 +Coopersville,MI,49404 +Custer,MI,49405 +Fennville,MI,49408 +Fountain,MI,49410 +Free Soil,MI,49411 +Fremont,MI,49412 +Fruitport,MI,49415 +Grand Haven,MI,49417 +Grandville,MI,49418 +Hamilton,MI,49419 +Hart,MI,49420 +Hesperia,MI,49421 +Holland,MI,49423 +Holland,MI,49424 +Holton,MI,49425 +Hudsonville,MI,49426 +Jenison,MI,49428 +Ludington,MI,49431 +Marne,MI,49435 +Mears,MI,49436 +Montague,MI,49437 +Muskegon,MI,49440 +Muskegon,MI,49441 +Muskegon,MI,49442 +Muskegon Heights,MI,49444 +North Muskegon,MI,49445 +New Era,MI,49446 +New Richmond,MI,49447 +Nunica,MI,49448 +Pentwater,MI,49449 +Pullman,MI,49450 +Ravenna,MI,49451 +Rothbury,MI,49452 +Saugatuck,MI,49453 +Scottville,MI,49454 +Shelby,MI,49455 +Spring Lake,MI,49456 +Twin Lake,MI,49457 +Walkerville,MI,49459 +West Olive,MI,49460 +Whitehall,MI,49461 +Zeeland,MI,49464 +Grand Rapids,MI,49503 +Walker,MI,49504 +Grand Rapids,MI,49505 +Grand Rapids,MI,49506 +Grand Rapids,MI,49507 +Kentwood,MI,49508 +Wyoming,MI,49509 +Kentwood,MI,49512 +Grand Rapids,MI,49546 +Kentwood,MI,49548 +Cadillac,MI,49601 +Alden,MI,49612 +Arcadia,MI,49613 +Bear Lake,MI,49614 +Bellaire,MI,49615 +Benzonia,MI,49616 +Beulah,MI,49617 +Boon,MI,49618 +Brethren,MI,49619 +Buckley,MI,49620 +Cedar,MI,49621 +Central Lake,MI,49622 +Chase,MI,49623 +Copemish,MI,49625 +Elk Rapids,MI,49629 +Empire,MI,49630 +Evart,MI,49631 +Falmouth,MI,49632 +Fife Lake,MI,49633 +Frankfort,MI,49635 +Glen Arbor,MI,49636 +Grawn,MI,49637 +Harrietta,MI,49638 +Hersey,MI,49639 +Honor,MI,49640 +Idlewild,MI,49642 +Interlochen,MI,49643 +Irons,MI,49644 +Kaleva,MI,49645 +Kalkaska,MI,49646 +Karlin,MI,49647 +Kewadin,MI,49648 +Kingsley,MI,49649 +Lake Ann,MI,49650 +Moorestown,MI,49651 +Lake Leelanau,MI,49653 +Leland,MI,49654 +Leroy,MI,49655 +Luther,MI,49656 +Mc Bain,MI,49657 +Mancelona,MI,49659 +Stronach,MI,49660 +Manton,MI,49663 +Maple City,MI,49664 +Marion,MI,49665 +Merritt,MI,49667 +Mesick,MI,49668 +Northport,MI,49670 +Onekama,MI,49675 +Rapid City,MI,49676 +Reed City,MI,49677 +Sears,MI,49679 +South Boardman,MI,49680 +Suttons Bay,MI,49682 +Thompsonville,MI,49683 +Traverse City,MI,49684 +Tustin,MI,49688 +Wellston,MI,49689 +Williamsburg,MI,49690 +Afton,MI,49705 +Alanson,MI,49706 +Alpena,MI,49707 +Atlanta,MI,49709 +Barbeau,MI,49710 +Boyne City,MI,49712 +Boyne Falls,MI,49713 +Raco,MI,49715 +Brutus,MI,49716 +Carp Lake,MI,49718 +Cedarville,MI,49719 +Charlevoix,MI,49720 +Cheboygan,MI,49721 +Dafter,MI,49724 +De Tour Village,MI,49725 +Drummond Island,MI,49726 +East Jordan,MI,49727 +Eckerman,MI,49728 +Ellsworth,MI,49729 +Elmira,MI,49730 +Frederic,MI,49733 +Gaylord,MI,49735 +Goetzville,MI,49736 +Grayling,MI,49738 +Harbor Point,MI,49740 +Hawks,MI,49743 +Herron,MI,49744 +Hillman,MI,49746 +Hubbard Lake,MI,49747 +Indian River,MI,49749 +Johannesburg,MI,49751 +Kinross,MI,49752 +Lachine,MI,49753 +Levering,MI,49755 +Lewiston,MI,49756 +Mackinac Island,MI,49757 +Millersburg,MI,49759 +Moran,MI,49760 +Naubinway,MI,49762 +Onaway,MI,49765 +Ossineke,MI,49766 +Paradise,MI,49768 +Pellston,MI,49769 +Bay View,MI,49770 +Pickford,MI,49774 +Pointe Aux Pins,MI,49775 +Posen,MI,49776 +Rogers City,MI,49779 +Fibre,MI,49780 +Saint Ignace,MI,49781 +Saint James,MI,49782 +Sault Sainte Mar,MI,49783 +Kincheloe,MI,49788 +Stalwart,MI,49789 +Tower,MI,49792 +Vanderbilt,MI,49795 +Wolverine,MI,49799 +Iron Mountain,MI,49801 +Au Train,MI,49806 +Hardwood,MI,49807 +Carney,MI,49812 +Cedar River,MI,49813 +Champion,MI,49814 +Channing,MI,49815 +Limestone,MI,49816 +Cooks,MI,49817 +Cornell,MI,49818 +Curtis,MI,49820 +Daggett,MI,49821 +Deerton,MI,49822 +Eben Junction,MI,49825 +Rumely,MI,49826 +Engadine,MI,49827 +Escanaba,MI,49829 +Little Lake,MI,49833 +Foster City,MI,49834 +Garden,MI,49835 +Germfask,MI,49836 +Brampton,MI,49837 +Gould City,MI,49838 +Grand Marais,MI,49839 +Gulliver,MI,49840 +Princeton,MI,49841 +K I Sawyer A F B,MI,49843 +Hermansville,MI,49847 +Ingalls,MI,49848 +North Lake,MI,49849 +Mc Millan,MI,49853 +Thompson,MI,49854 +Beaver Grove,MI,49855 +Menominee,MI,49858 +Michigamme,MI,49861 +Christmas,MI,49862 +Negaunee,MI,49866 +Newberry,MI,49868 +Norway,MI,49870 +Perronville,MI,49873 +Powers,MI,49874 +Quinnesec,MI,49876 +Rapid River,MI,49878 +Republic,MI,49879 +Rock,MI,49880 +Sagola,MI,49881 +Seney,MI,49883 +Shingleton,MI,49884 +Skandia,MI,49885 +Spalding,MI,49886 +Stephenson,MI,49887 +Traunik,MI,49890 +Trenary,MI,49891 +Vulcan,MI,49892 +Wallace,MI,49893 +Wells,MI,49894 +Wetmore,MI,49895 +Wilson,MI,49896 +Atlantic Mine,MI,49905 +Keweenaw Bay,MI,49908 +Bergland,MI,49910 +Bessemer,MI,49911 +Bruce Crossing,MI,49912 +Laurium,MI,49913 +Chassell,MI,49916 +Covington,MI,49919 +Crystal Falls,MI,49920 +Dodgeville,MI,49921 +Ewen,MI,49925 +Gaastra,MI,49927 +Hancock,MI,49930 +Houghton,MI,49931 +Iron River,MI,49935 +Ironwood,MI,49938 +Kenton,MI,49943 +Gay,MI,49945 +Lanse,MI,49946 +Marenisco,MI,49947 +Mass City,MI,49948 +Eagle Harbor,MI,49950 +Nisula,MI,49952 +Ontonagon,MI,49953 +Pelkie,MI,49958 +Skanee,MI,49962 +Toivola,MI,49965 +Trout Creek,MI,49967 +Wakefield,MI,49968 +Watersmeet,MI,49969 +Watton,MI,49970 +Afton,MN,55001 +Bayport,MN,55003 +East Bethel,MN,55005 +Braham,MN,55006 +Quamba,MN,55007 +Cambridge,MN,55008 +Cannon Falls,MN,55009 +Castle Rock,MN,55010 +Cedar East Bethe,MN,55011 +Chisago City,MN,55013 +Circle Pines,MN,55014 +Cottage Grove,MN,55016 +Dalbo,MN,55017 +Stanton,MN,55018 +Dundas,MN,55019 +Elko,MN,55020 +Faribault,MN,55021 +Farmington,MN,55024 +Forest Lake,MN,55025 +Frontenac,MN,55026 +Goodhue,MN,55027 +Grasston,MN,55030 +Hampton,MN,55031 +Harris,MN,55032 +Welch,MN,55033 +Hinckley,MN,55037 +Centerville,MN,55038 +Isanti,MN,55040 +Lake City,MN,55041 +Lake Elmo,MN,55042 +Lakeland,MN,55043 +Lakeville,MN,55044 +Lindstrom,MN,55045 +Veseli,MN,55046 +Marine On Saint,MN,55047 +55048,MN,55048 +Medford,MN,55049 +Mora,MN,55051 +Morristown,MN,55052 +Nerstrand,MN,55053 +Newport,MN,55055 +North Branch,MN,55056 +Northfield,MN,55057 +Owatonna,MN,55060 +Beroun,MN,55063 +Randolph,MN,55065 +Red Wing,MN,55066 +Rock Creek,MN,55067 +Rosemount,MN,55068 +Rush City,MN,55069 +Saint Francis,MN,55070 +Saint Paul Park,MN,55071 +Markville,MN,55072 +Scandia,MN,55073 +Shafer,MN,55074 +South Saint Paul,MN,55075 +Inver Grove Heig,MN,55076 +Inver Grove Heig,MN,55077 +Stacy,MN,55079 +Stanchfield,MN,55080 +Oak Park Heights,MN,55082 +Taylors Falls,MN,55084 +Warsaw,MN,55087 +Webster,MN,55088 +Welch,MN,55089 +East Bethel,MN,55092 +Saint Paul,MN,55101 +Saint Paul,MN,55102 +Saint Paul,MN,55103 +Saint Paul,MN,55104 +Saint Paul,MN,55105 +Saint Paul,MN,55106 +West Saint Paul,MN,55107 +Lauderdale,MN,55108 +North Saint Paul,MN,55109 +White Bear Lake,MN,55110 +Fort Snelling,MN,55111 +New Brighton,MN,55112 +Roseville,MN,55113 +Saint Paul,MN,55114 +White Bear Lake,MN,55115 +Saint Paul,MN,55116 +Little Canada,MN,55117 +West Saint Paul,MN,55118 +Maplewood,MN,55119 +Eagan,MN,55120 +Eagan,MN,55121 +Eagan,MN,55122 +Eagan,MN,55123 +Apple Valley,MN,55124 +Woodbury,MN,55125 +Shoreview,MN,55126 +Vadnais Heights,MN,55127 +Oakdale,MN,55128 +Mendota,MN,55150 +Albertville,MN,55301 +Annandale,MN,55302 +Ramsey,MN,55303 +Ham Lake,MN,55304 +Arlington,MN,55307 +Becker,MN,55308 +Big Lake,MN,55309 +Bird Island,MN,55310 +Brownton,MN,55312 +Buffalo,MN,55313 +Buffalo Lake,MN,55314 +Carver,MN,55315 +Champlin,MN,55316 +Chanhassen,MN,55317 +Chaska,MN,55318 +Clear Lake,MN,55319 +Clearwater,MN,55320 +Cokato,MN,55321 +Cologne,MN,55322 +Darwin,MN,55324 +Dassel,MN,55325 +Dayton,MN,55327 +Delano,MN,55328 +Eden Valley,MN,55329 +Elk River,MN,55330 +Excelsior,MN,55331 +Fairfax,MN,55332 +Franklin,MN,55333 +Gaylord,MN,55334 +Gibbon,MN,55335 +Glencoe,MN,55336 +Burnsville,MN,55337 +Green Isle,MN,55338 +Hamburg,MN,55339 +Hamel,MN,55340 +Hector,MN,55342 +Eden Prairie,MN,55343 +Eden Prairie,MN,55344 +Minnetonka,MN,55345 +Eden Prairie,MN,55346 +Eden Prairie,MN,55347 +Howard Lake,MN,55349 +Hutchinson,MN,55350 +Jordan,MN,55352 +Kimball,MN,55353 +Lester Prairie,MN,55354 +Litchfield,MN,55355 +Long Lake,MN,55356 +Loretto,MN,55357 +Maple Lake,MN,55358 +Maple Plain,MN,55359 +Mayer,MN,55360 +Monticello,MN,55362 +Montrose,MN,55363 +Mound,MN,55364 +New Auburn,MN,55366 +New Germany,MN,55367 +Norwood,MN,55368 +Maple Grove,MN,55369 +Plato,MN,55370 +Princeton,MN,55371 +Prior Lake,MN,55372 +Rockford,MN,55373 +Rogers,MN,55374 +Saint Michael,MN,55376 +Savage,MN,55378 +Shakopee,MN,55379 +Silver Creek,MN,55380 +Silver Lake,MN,55381 +South Haven,MN,55382 +Spring Park,MN,55384 +Stewart,MN,55385 +Victoria,MN,55386 +Waconia,MN,55387 +Watertown,MN,55388 +Watkins,MN,55389 +Waverly,MN,55390 +Wayzata,MN,55391 +Winsted,MN,55395 +Winthrop,MN,55396 +Young America,MN,55397 +Zimmerman,MN,55398 +Minneapolis,MN,55401 +Minneapolis,MN,55402 +Minneapolis,MN,55403 +Minneapolis,MN,55404 +Minneapolis,MN,55405 +Minneapolis,MN,55406 +Minneapolis,MN,55407 +Minneapolis,MN,55408 +Minneapolis,MN,55409 +Edina,MN,55410 +Minneapolis,MN,55411 +Minneapolis,MN,55412 +Minneapolis,MN,55413 +Minneapolis,MN,55414 +Minneapolis,MN,55415 +Saint Louis Park,MN,55416 +Minneapolis,MN,55417 +Minneapolis,MN,55418 +Minneapolis,MN,55419 +Bloomington,MN,55420 +Columbia Heights,MN,55421 +Robbinsdale,MN,55422 +Richfield,MN,55423 +Edina,MN,55424 +Bloomington,MN,55425 +Saint Louis Park,MN,55426 +Golden Valley,MN,55427 +Crystal,MN,55428 +Brooklyn Center,MN,55429 +Brooklyn Center,MN,55430 +Bloomington,MN,55431 +Fridley,MN,55432 +Coon Rapids,MN,55433 +Blaine,MN,55434 +Edina,MN,55435 +Edina,MN,55436 +Bloomington,MN,55437 +Bloomington,MN,55438 +Edina,MN,55439 +Plymouth,MN,55441 +Plymouth,MN,55442 +Brooklyn Center,MN,55443 +Brooklyn Center,MN,55444 +Brooklyn Park,MN,55445 +Plymouth,MN,55446 +Plymouth,MN,55447 +Coon Rapids,MN,55448 +Minneapolis,MN,55450 +Minneapolis,MN,55454 +Minneapolis,MN,55455 +Loretto,MN,55599 +Brimson,MN,55602 +Finland,MN,55603 +Grand Marais,MN,55604 +Grand Portage,MN,55605 +Hovland,MN,55606 +Isabella,MN,55607 +Lutsen,MN,55612 +Schroeder,MN,55613 +Little Marais,MN,55614 +Tofte,MN,55615 +Two Harbors,MN,55616 +Alborn,MN,55702 +Angora,MN,55703 +Askov,MN,55704 +Aurora,MN,55705 +Babbitt,MN,55706 +Barnum,MN,55707 +Bovey,MN,55709 +Britt,MN,55710 +Brookston,MN,55711 +Bruno,MN,55712 +Canyon,MN,55717 +Carlton,MN,55718 +Chisholm,MN,55719 +Cloquet,MN,55720 +Cohasset,MN,55721 +Cook,MN,55723 +Kelsey,MN,55724 +Crane Lake,MN,55725 +Cromwell,MN,55726 +Culver,MN,55727 +Ely,MN,55731 +Embarrass,MN,55732 +Esko,MN,55733 +Eveleth,MN,55734 +Finlayson,MN,55735 +Floodwood,MN,55736 +Gheen,MN,55740 +Gilbert,MN,55741 +Goodland,MN,55742 +La Prairie,MN,55744 +Hibbing,MN,55746 +Hill City,MN,55748 +Holyoke,MN,55749 +Hoyt Lakes,MN,55750 +Iron,MN,55751 +Jacobson,MN,55752 +55755,MN,55755 +Kerrick,MN,55756 +Kettle River,MN,55757 +Mc Gregor,MN,55760 +Mahtowa,MN,55762 +Makinen,MN,55763 +Meadowlands,MN,55765 +Melrude,MN,55766 +Moose Lake,MN,55767 +Mountain Iron,MN,55768 +Nashwauk,MN,55769 +Buyck,MN,55771 +Parkville,MN,55773 +Pengilly,MN,55775 +Saginaw,MN,55779 +Sawyer,MN,55780 +Sturgeon Lake,MN,55783 +Swan River,MN,55784 +Swatara,MN,55785 +Tamarack,MN,55787 +Togo,MN,55788 +Tower,MN,55790 +Virginia,MN,55792 +Warba,MN,55793 +Willow River,MN,55795 +Wrenshall,MN,55797 +Wright,MN,55798 +Zim,MN,55799 +Duluth,MN,55801 +Duluth,MN,55802 +Duluth,MN,55803 +Duluth,MN,55804 +Duluth,MN,55805 +Duluth,MN,55806 +Duluth,MN,55807 +Duluth,MN,55808 +Proctor,MN,55810 +Hermantown,MN,55811 +Duluth,MN,55812 +Rochester,MN,55901 +Rochester,MN,55902 +Rochester,MN,55904 +Rochester,MN,55906 +Adams,MN,55909 +Altura,MN,55910 +Austin,MN,55912 +Blooming Prairie,MN,55917 +Brownsdale,MN,55918 +Brownsville,MN,55919 +Byron,MN,55920 +Caledonia,MN,55921 +Canton,MN,55922 +Chatfield,MN,55923 +Claremont,MN,55924 +Dakota,MN,55925 +Dexter,MN,55926 +Dodge Center,MN,55927 +Dover,MN,55929 +Elgin,MN,55932 +Elkton,MN,55933 +Viola,MN,55934 +Fountain,MN,55935 +Grand Meadow,MN,55936 +Granger,MN,55937 +Harmony,MN,55939 +Hayfield,MN,55940 +Hokah,MN,55941 +Houston,MN,55943 +Kasson,MN,55944 +Theilman,MN,55945 +Kenyon,MN,55946 +La Crescent,MN,55947 +Lanesboro,MN,55949 +Le Roy,MN,55951 +Lewiston,MN,55952 +Lyle,MN,55953 +Mabel,MN,55954 +Mantorville,MN,55955 +Mazeppa,MN,55956 +Millville,MN,55957 +Minnesota City,MN,55959 +Oronoco,MN,55960 +Ostrander,MN,55961 +Peterson,MN,55962 +Pine Island,MN,55963 +Plainview,MN,55964 +Preston,MN,55965 +Racine,MN,55967 +Rollingstone,MN,55969 +Rose Creek,MN,55970 +Rushford,MN,55971 +Saint Charles,MN,55972 +Sargeant,MN,55973 +Spring Grove,MN,55974 +Spring Valley,MN,55975 +Stewartville,MN,55976 +Taopi,MN,55977 +Theilman,MN,55978 +Utica,MN,55979 +Wabasha,MN,55981 +Waltham,MN,55982 +Wanamingo,MN,55983 +West Concord,MN,55985 +Whalan,MN,55986 +Goodview,MN,55987 +Wykoff,MN,55990 +Hammond,MN,55991 +Zumbrota,MN,55992 +Mankato,MN,56001 +North Mankato,MN,56003 +Albert Lea,MN,56007 +Alden,MN,56009 +Amboy,MN,56010 +Belle Plaine,MN,56011 +Blue Earth,MN,56013 +Bricelyn,MN,56014 +Clarks Grove,MN,56016 +Cleveland,MN,56017 +Comfrey,MN,56019 +Conger,MN,56020 +Courtland,MN,56021 +Darfur,MN,56022 +Delavan,MN,56023 +Eagle Lake,MN,56024 +Easton,MN,56025 +Ellendale,MN,56026 +Elmore,MN,56027 +Elysian,MN,56028 +Emmons,MN,56029 +Essig,MN,56030 +Fairmont,MN,56031 +Freeborn,MN,56032 +Frost,MN,56033 +Garden City,MN,56034 +Geneva,MN,56035 +Glenville,MN,56036 +Good Thunder,MN,56037 +Granada,MN,56039 +Hanska,MN,56041 +Hartland,MN,56042 +Hayward,MN,56043 +Henderson,MN,56044 +Hollandale,MN,56045 +Hope,MN,56046 +Huntley,MN,56047 +Janesville,MN,56048 +Kasota,MN,56050 +Kiester,MN,56051 +Kilkenny,MN,56052 +Lafayette,MN,56054 +Lake Crystal,MN,56055 +Le Center,MN,56057 +Le Sueur,MN,56058 +Lewisville,MN,56060 +London,MN,56061 +Madelia,MN,56062 +Madison Lake,MN,56063 +Manchester,MN,56064 +Mapleton,MN,56065 +Meriden,MN,56067 +Minnesota Lake,MN,56068 +Montgomery,MN,56069 +New Prague,MN,56071 +New Richland,MN,56072 +New Ulm,MN,56073 +Nicollet,MN,56074 +Northrop,MN,56075 +Oakland,MN,56076 +Otisco,MN,56077 +Pemberton,MN,56078 +Saint Clair,MN,56080 +Saint James,MN,56081 +Saint Peter,MN,56082 +Sanborn,MN,56083 +Sleepy Eye,MN,56085 +Springfield,MN,56087 +Truman,MN,56088 +Twin Lakes,MN,56089 +Vernon Center,MN,56090 +Waldorf,MN,56091 +Walters,MN,56092 +Waseca,MN,56093 +Waterville,MN,56096 +Wells,MN,56097 +Winnebago,MN,56098 +Wilder,MN,56101 +Adrian,MN,56110 +Alpha,MN,56111 +Amiret,MN,56112 +Arco,MN,56113 +Avoca,MN,56114 +Balaton,MN,56115 +Beaver Creek,MN,56116 +Bigelow,MN,56117 +Bingham Lake,MN,56118 +Brewster,MN,56119 +Butterfield,MN,56120 +Ceylon,MN,56121 +Chandler,MN,56122 +Currie,MN,56123 +Delft,MN,56124 +Dovray,MN,56125 +Dundee,MN,56126 +Dunnell,MN,56127 +Edgerton,MN,56128 +Ellsworth,MN,56129 +56130,MN,56130 +Fulda,MN,56131 +Garvin,MN,56132 +Hadley,MN,56133 +Hardwick,MN,56134 +56135,MN,56135 +Hendricks,MN,56136 +Heron Lake,MN,56137 +Hills,MN,56138 +Holland,MN,56139 +Iona,MN,56141 +Ivanhoe,MN,56142 +Jackson,MN,56143 +Jasper,MN,56144 +Jeffers,MN,56145 +Kanaranzi,MN,56146 +Kenneth,MN,56147 +Lake Benton,MN,56149 +Lakefield,MN,56150 +Lake Wilson,MN,56151 +Lamberton,MN,56152 +Leota,MN,56153 +Lismore,MN,56155 +Luverne,MN,56156 +Lynd,MN,56157 +Magnolia,MN,56158 +Mountain Lake,MN,56159 +Odin,MN,56160 +Okabena,MN,56161 +Ormsby,MN,56162 +Hatfield,MN,56164 +Reading,MN,56165 +Revere,MN,56166 +Round Lake,MN,56167 +Rushmore,MN,56168 +Russell,MN,56169 +Florence,MN,56170 +Sherburn,MN,56171 +Slayton,MN,56172 +Steen,MN,56173 +Storden,MN,56174 +Tracy,MN,56175 +Trimont,MN,56176 +Tyler,MN,56178 +Verdi,MN,56179 +Walnut Grove,MN,56180 +Welcome,MN,56181 +Westbrook,MN,56183 +Wilmont,MN,56185 +Woodstock,MN,56186 +Worthington,MN,56187 +Willmar,MN,56201 +Alberta,MN,56207 +Appleton,MN,56208 +Atwater,MN,56209 +Barry,MN,56210 +Beardsley,MN,56211 +Bellingham,MN,56212 +Belview,MN,56214 +Benson,MN,56215 +Svea,MN,56216 +Boyd,MN,56218 +Browns Valley,MN,56219 +Canby,MN,56220 +Chokio,MN,56221 +Clara City,MN,56222 +Clarkfield,MN,56223 +Clements,MN,56224 +Clinton,MN,56225 +Clontarf,MN,56226 +Correll,MN,56227 +Cosmos,MN,56228 +Cottonwood,MN,56229 +Danube,MN,56230 +Danvers,MN,56231 +Dawson,MN,56232 +De Graff,MN,56233 +Donnelly,MN,56235 +Dumont,MN,56236 +Echo,MN,56237 +Evan,MN,56238 +Ghent,MN,56239 +Graceville,MN,56240 +Granite Falls,MN,56241 +Grove City,MN,56243 +Hancock,MN,56244 +Hanley Falls,MN,56245 +Hawick,MN,56246 +Hazel Run,MN,56247 +Herman,MN,56248 +Holloway,MN,56249 +Johnson,MN,56250 +Kandiyohi,MN,56251 +Kerkhoven,MN,56252 +Lake Lillian,MN,56253 +Louisburg,MN,56254 +Lucan,MN,56255 +Madison,MN,56256 +Marietta,MN,56257 +Marshall,MN,56258 +Maynard,MN,56260 +Milan,MN,56262 +Milroy,MN,56263 +Minneota,MN,56264 +Montevideo,MN,56265 +Morgan,MN,56266 +Morris,MN,56267 +Morton,MN,56270 +Murdock,MN,56271 +Nassau,MN,56272 +New London,MN,56273 +Norcross,MN,56274 +Odessa,MN,56276 +Olivia,MN,56277 +Ortonville,MN,56278 +Pennock,MN,56279 +Porter,MN,56280 +Prinsburg,MN,56281 +Raymond,MN,56282 +Delhi,MN,56283 +Renville,MN,56284 +Sacred Heart,MN,56285 +Saint Leo,MN,56286 +Seaforth,MN,56287 +Spicer,MN,56288 +Sunburg,MN,56289 +56290,MN,56290 +Taunton,MN,56291 +Vesta,MN,56292 +Wabasso,MN,56293 +Wanda,MN,56294 +Watson,MN,56295 +Wheaton,MN,56296 +Wood Lake,MN,56297 +Saint Cloud,MN,56301 +Saint Cloud,MN,56303 +Saint Cloud,MN,56304 +Albany,MN,56307 +Alexandria,MN,56308 +Ashby,MN,56309 +Avon,MN,56310 +Barrett,MN,56311 +Belgrade,MN,56312 +Bock,MN,56313 +Bowlus,MN,56314 +Brandon,MN,56315 +Brooten,MN,56316 +Burtrum,MN,56318 +Carlos,MN,56319 +Cold Spring,MN,56320 +Cyrus,MN,56323 +Dalton,MN,56324 +Evansville,MN,56326 +Farwell,MN,56327 +Flensburg,MN,56328 +Foley,MN,56329 +Foreston,MN,56330 +Freeport,MN,56331 +Garfield,MN,56332 +Gilman,MN,56333 +Glenwood,MN,56334 +Grey Eagle,MN,56336 +Hillman,MN,56338 +Hoffman,MN,56339 +Holdingford,MN,56340 +Holmes City,MN,56341 +Isle,MN,56342 +Kensington,MN,56343 +Little Falls,MN,56345 +Little Sauk,MN,56347 +Lowry,MN,56349 +Mc Grath,MN,56350 +Melrose,MN,56352 +Milaca,MN,56353 +Miltona,MN,56354 +Nelson,MN,56355 +Oak Park,MN,56357 +Ogilvie,MN,56358 +Onamia,MN,56359 +Osakis,MN,56360 +Parkers Prairie,MN,56361 +Paynesville,MN,56362 +Pease,MN,56363 +Pierz,MN,56364 +Rice,MN,56367 +Richmond,MN,56368 +Royalton,MN,56373 +Saint Joseph,MN,56374 +Saint Stephen,MN,56375 +Sartell,MN,56377 +Sauk Centre,MN,56378 +Sauk Rapids,MN,56379 +Sedan,MN,56380 +Starbuck,MN,56381 +Swanville,MN,56382 +Upsala,MN,56384 +Villard,MN,56385 +Wahkon,MN,56386 +Waite Park,MN,56387 +West Union,MN,56389 +East Gull Lake,MN,56401 +Aitkin,MN,56431 +Akeley,MN,56433 +Aldrich,MN,56434 +Backus,MN,56435 +Bertha,MN,56437 +Browerville,MN,56438 +Clarissa,MN,56440 +Crosby,MN,56441 +Crosslake,MN,56442 +Cushing,MN,56443 +Deerwood,MN,56444 +Eagle Bend,MN,56446 +Emily,MN,56447 +Fifty Lakes,MN,56448 +Fort Ripley,MN,56449 +Garrison,MN,56450 +Hackensack,MN,56452 +Hewitt,MN,56453 +Ironton,MN,56455 +Jenkins,MN,56456 +Lake George,MN,56458 +Lake Itasca,MN,56460 +Laporte,MN,56461 +Manhattan Beach,MN,56463 +Menahga,MN,56464 +Merrifield,MN,56465 +Leader,MN,56466 +Nevis,MN,56467 +Lake Shore,MN,56468 +Palisade,MN,56469 +Park Rapids,MN,56470 +Pequot Lakes,MN,56472 +Pillager,MN,56473 +Pine River,MN,56474 +Randall,MN,56475 +Sebeka,MN,56477 +Staples,MN,56479 +Verndale,MN,56481 +Wadena,MN,56482 +Walker,MN,56484 +Whipholt,MN,56485 +Detroit Lakes,MN,56501 +Lockhart,MN,56510 +Audubon,MN,56511 +Baker,MN,56513 +Downer,MN,56514 +Battle Lake,MN,56515 +Bejou,MN,56516 +Beltrami,MN,56517 +Bluffton,MN,56518 +Borup,MN,56519 +Breckenridge,MN,56520 +Callaway,MN,56521 +Doran,MN,56522 +Eldred,MN,56523 +Clitherall,MN,56524 +Comstock,MN,56525 +Deer Creek,MN,56527 +Dent,MN,56528 +Dilworth,MN,56529 +Elbow Lake,MN,56531 +Elizabeth,MN,56533 +Erhard,MN,56534 +Erskine,MN,56535 +Felton,MN,56536 +Carlisle,MN,56537 +Fertile,MN,56540 +Fosston,MN,56542 +Foxhome,MN,56543 +Frazee,MN,56544 +Gary,MN,56545 +Georgetown,MN,56546 +Glyndon,MN,56547 +Halstad,MN,56548 +Rollag,MN,56549 +Hendrum,MN,56550 +Henning,MN,56551 +Hitterdal,MN,56552 +Kent,MN,56553 +Lake Park,MN,56554 +Mcintosh,MN,56556 +Mahnomen,MN,56557 +Moorhead,MN,56560 +Nashua,MN,56565 +Naytahwaush,MN,56566 +New York Mills,MN,56567 +Nielsville,MN,56568 +Ogema,MN,56569 +Osage,MN,56570 +Ottertail,MN,56571 +Pelican Rapids,MN,56572 +Perham,MN,56573 +Perley,MN,56574 +Ponsford,MN,56575 +Richville,MN,56576 +Richwood,MN,56577 +Rochert,MN,56578 +Rothsay,MN,56579 +Sabin,MN,56580 +Shelly,MN,56581 +Tenney,MN,56583 +Twin Valley,MN,56584 +Ulen,MN,56585 +Underwood,MN,56586 +Vergas,MN,56587 +Vining,MN,56588 +Waubun,MN,56589 +Wendell,MN,56590 +Winger,MN,56592 +Wolf Lake,MN,56593 +Wolverton,MN,56594 +Bemidji,MN,56601 +Bagley,MN,56621 +Baudette,MN,56623 +56625,MN,56625 +Bena,MN,56626 +Big Falls,MN,56627 +Bigfork,MN,56628 +Birchdale,MN,56629 +Blackduck,MN,56630 +Boy River,MN,56632 +Cass Lake,MN,56633 +Clearbrook,MN,56634 +Deer River,MN,56636 +Talmoon,MN,56637 +Effie,MN,56639 +Federal Dam,MN,56641 +Gonvick,MN,56644 +Gully,MN,56646 +Hines,MN,56647 +International Fa,MN,56649 +Kelliher,MN,56650 +Lengby,MN,56651 +Leonard,MN,56652 +Littlefork,MN,56653 +Loman,MN,56654 +Longville,MN,56655 +Marcell,MN,56657 +Max,MN,56659 +Mizpah,MN,56660 +Northome,MN,56661 +Outing,MN,56662 +Pennington,MN,56663 +Pitt,MN,56665 +Ponemah,MN,56666 +Puposky,MN,56667 +Ranier,MN,56668 +Ray,MN,56669 +Redby,MN,56670 +Redlake,MN,56671 +Remer,MN,56672 +Roosevelt,MN,56673 +Saum,MN,56674 +Shevlin,MN,56676 +Solway,MN,56678 +Spring Lake,MN,56680 +Squaw Lake,MN,56681 +Swift,MN,56682 +Tenstrike,MN,56683 +Trail,MN,56684 +Waskish,MN,56685 +Williams,MN,56686 +Wilton,MN,56687 +Wirt,MN,56688 +Thief River Fall,MN,56701 +Alvarado,MN,56710 +Angle Inlet,MN,56711 +Angus,MN,56712 +Argyle,MN,56713 +Badger,MN,56714 +Brooks,MN,56715 +Crookston,MN,56716 +Donaldson,MN,56720 +East Grand Forks,MN,56721 +Euclid,MN,56722 +Fisher,MN,56723 +Gatzke,MN,56724 +Goodridge,MN,56725 +Greenbush,MN,56726 +Grygla,MN,56727 +Hallock,MN,56728 +Halma,MN,56729 +Karlstad,MN,56732 +Kennedy,MN,56733 +Lake Bronson,MN,56734 +Orleans,MN,56735 +Mentor,MN,56736 +Middle River,MN,56737 +Newfolden,MN,56738 +Noyes,MN,56740 +Oak Island,MN,56741 +Oklee,MN,56742 +Oslo,MN,56744 +Plummer,MN,56748 +Red Lake Falls,MN,56750 +Pencer,MN,56751 +Saint Hilaire,MN,56754 +Saint Vincent,MN,56755 +Salol,MN,56756 +Stephen,MN,56757 +Strandquist,MN,56758 +Strathcona,MN,56759 +Viking,MN,56760 +Wannaska,MN,56761 +Radium,MN,56762 +Warroad,MN,56763 +Abbeville,MS,38601 +Cannon,MS,38603 +Batesville,MS,38606 +Blue Mountain,MS,38610 +Byhalia,MS,38611 +Stovall,MS,38614 +Coahoma,MS,38617 +Coldwater,MS,38618 +Como,MS,38619 +Courtland,MS,38620 +Askew,MS,38621 +Dumas,MS,38625 +Dundee,MS,38626 +Etta,MS,38627 +Falkner,MS,38629 +Hernando,MS,38632 +Hickory Flat,MS,38633 +Holly Springs,MS,38635 +Horn Lake,MS,38637 +Lake Cormorant,MS,38641 +Lamar,MS,38642 +Lambert,MS,38643 +Lyon,MS,38645 +Marks,MS,38646 +Michigan City,MS,38647 +Myrtle,MS,38650 +Nesbit,MS,38651 +New Albany,MS,38652 +Olive Branch,MS,38654 +Lafayette,MS,38655 +Pleasant Grove,MS,38657 +Pope,MS,38658 +Potts Camp,MS,38659 +Red Banks,MS,38661 +Ripley,MS,38663 +Robinsonville,MS,38664 +Savage,MS,38665 +Sardis,MS,38666 +Senatobia,MS,38668 +Sledge,MS,38670 +Southaven,MS,38671 +Taylor,MS,38673 +Tiplersville,MS,38674 +Tunica,MS,38676 +University,MS,38677 +Walls,MS,38680 +Walnut,MS,38683 +Waterford,MS,38685 +Greenville,MS,38701 +Greenville,MS,38703 +Alligator,MS,38720 +Anguilla,MS,38721 +Benoit,MS,38725 +Beulah,MS,38726 +Boyle,MS,38730 +Cleveland,MS,38732 +Doddsville,MS,38736 +Drew,MS,38737 +Duncan,MS,38740 +Glen Allan,MS,38744 +Gunnison,MS,38746 +Percy,MS,38748 +Baird,MS,38751 +Inverness,MS,38753 +Isola,MS,38754 +Elizabeth,MS,38756 +Merigold,MS,38759 +Moorhead,MS,38761 +Mound Bayou,MS,38762 +Rosedale,MS,38769 +Ruleville,MS,38771 +Shaw,MS,38773 +Shelby,MS,38774 +Sunflower,MS,38778 +Wayside,MS,38780 +Tupelo,MS,38801 +Amory,MS,38821 +Baldwyn,MS,38824 +Belden,MS,38826 +Belmont,MS,38827 +Blue Springs,MS,38828 +Booneville,MS,38829 +Burnsville,MS,38833 +Kossuth,MS,38834 +Dennis,MS,38838 +Ecru,MS,38841 +Fulton,MS,38843 +Gattman,MS,38844 +Glen,MS,38846 +Golden,MS,38847 +Greenwood Spring,MS,38848 +Guntown,MS,38849 +Houlka,MS,38850 +Houston,MS,38851 +Iuka,MS,38852 +Mantachie,MS,38855 +Marietta,MS,38856 +Mooreville,MS,38857 +Nettleton,MS,38858 +New Site,MS,38859 +Egypt,MS,38860 +Plantersville,MS,38862 +Pontotoc,MS,38863 +Sarepta,MS,38864 +Rienzi,MS,38865 +Saltillo,MS,38866 +Shannon,MS,38868 +Smithville,MS,38870 +Thaxton,MS,38871 +Tishomingo,MS,38873 +Tremont,MS,38876 +Vardaman,MS,38878 +Grenada,MS,38901 +Avalon,MS,38912 +Banner,MS,38913 +Big Creek,MS,38914 +Bruce,MS,38915 +Calhoun City,MS,38916 +Carrollton,MS,38917 +Cascilla,MS,38920 +Charleston,MS,38921 +Coffeeville,MS,38922 +Coila,MS,38923 +Cruger,MS,38924 +Duck Hill,MS,38925 +Enid,MS,38927 +Gore Springs,MS,38929 +Greenwood,MS,38930 +Holcomb,MS,38940 +Itta Bena,MS,38941 +Mc Carley,MS,38943 +Minter City,MS,38944 +Oakland,MS,38948 +Water Valley,MS,38949 +Philipp,MS,38950 +Pittsboro,MS,38951 +Schlater,MS,38952 +Scobey,MS,38953 +Sidon,MS,38954 +Tillatoba,MS,38961 +Tutwiler,MS,38963 +Vance,MS,38964 +Water Valley,MS,38965 +Winona,MS,38967 +Belzoni,MS,39038 +Benton,MS,39039 +Bentonia,MS,39040 +Bolton,MS,39041 +Brandon,MS,39042 +Braxton,MS,39044 +Camden,MS,39045 +Canton,MS,39046 +Carlisle,MS,39049 +Edinburg,MS,39051 +Church Hill,MS,39055 +Clinton,MS,39056 +Conehatta,MS,39057 +Crystal Springs,MS,39059 +Durant,MS,39063 +Edwards,MS,39066 +Ethel,MS,39067 +Fayette,MS,39069 +Flora,MS,39071 +Florence,MS,39073 +Forest,MS,39074 +Georgetown,MS,39078 +Goodman,MS,39079 +Harrisville,MS,39082 +Hazlehurst,MS,39083 +Hermanville,MS,39086 +Holly Bluff,MS,39088 +Kosciusko,MS,39090 +Lake,MS,39092 +Lena,MS,39094 +Lexington,MS,39095 +Lorman,MS,39096 +Louise,MS,39097 +Mc Cool,MS,39108 +Madden,MS,39109 +Madison,MS,39110 +Magee,MS,39111 +Mayersville,MS,39113 +Mendenhall,MS,39114 +Mize,MS,39116 +Morton,MS,39117 +Mount Olive,MS,39119 +Natchez,MS,39120 +Newhebron,MS,39140 +Pattison,MS,39144 +Pelahatchie,MS,39145 +Pickens,MS,39146 +Pinola,MS,39149 +Port Gibson,MS,39150 +Pulaski,MS,39152 +Raleigh,MS,39153 +Learned,MS,39154 +Redwood,MS,39156 +Ridgeland,MS,39157 +Rolling Fork,MS,39159 +Sallis,MS,39160 +Satartia,MS,39162 +Silver City,MS,39166 +Taylorsville,MS,39168 +Tchula,MS,39169 +Terry,MS,39170 +Utica,MS,39175 +Vaiden,MS,39176 +Valley Park,MS,39177 +Pickens,MS,39179 +Vicksburg,MS,39180 +Walnut Grove,MS,39189 +Wesson,MS,39191 +West,MS,39192 +Yazoo City,MS,39194 +Jackson,MS,39201 +Jackson,MS,39202 +Jackson,MS,39203 +Jackson,MS,39204 +Jackson,MS,39206 +Pearl,MS,39208 +Jackson,MS,39209 +Jackson,MS,39211 +Jackson,MS,39212 +Jackson,MS,39213 +Jackson,MS,39216 +Richland,MS,39218 +Jackson,MS,39269 +Meridian,MS,39301 +Meridian,MS,39305 +Meridian,MS,39307 +Bailey,MS,39320 +Buckatunna,MS,39322 +Chunky,MS,39323 +Collinsville,MS,39325 +Daleville,MS,39326 +Decatur,MS,39327 +De Kalb,MS,39328 +Enterprise,MS,39330 +Hickory,MS,39332 +Lauderdale,MS,39335 +Lawrence,MS,39336 +Little Rock,MS,39337 +Louin,MS,39338 +Louisville,MS,39339 +Macon,MS,39341 +Newton,MS,39345 +Noxapater,MS,39346 +Pachuta,MS,39347 +Paulding,MS,39348 +Philadelphia,MS,39350 +Porterville,MS,39352 +Preston,MS,39354 +Quitman,MS,39355 +Rose Hill,MS,39356 +Scooba,MS,39358 +Matherville,MS,39360 +Shuqualak,MS,39361 +State Line,MS,39362 +Stonewall,MS,39363 +Toomsuba,MS,39364 +Union,MS,39365 +Vossburg,MS,39366 +Waynesboro,MS,39367 +Hattiesburg,MS,39401 +Hattiesburg,MS,39402 +Bassfield,MS,39421 +Bay Springs,MS,39422 +Beaumont,MS,39423 +Brooklyn,MS,39425 +Carriere,MS,39426 +Carson,MS,39427 +Collins,MS,39428 +Columbia,MS,39429 +Ellisville,MS,39437 +Heidelberg,MS,39439 +Laurel,MS,39440 +Leakesville,MS,39451 +Agricola,MS,39452 +Lumberton,MS,39455 +Leaf,MS,39456 +Moselle,MS,39459 +Neely,MS,39461 +New Augusta,MS,39462 +Ovett,MS,39464 +Petal,MS,39465 +Picayune,MS,39466 +Poplarville,MS,39470 +Prentiss,MS,39474 +Purvis,MS,39475 +Richton,MS,39476 +Sandy Hook,MS,39478 +Seminary,MS,39479 +Soso,MS,39480 +Stringer,MS,39481 +Sumrall,MS,39482 +Foxworth,MS,39483 +Gulfport,MS,39501 +Gulfport,MS,39503 +Gulfport,MS,39507 +Diamondhead,MS,39520 +Biloxi,MS,39530 +Biloxi,MS,39531 +North Bay,MS,39532 +Gautier,MS,39553 +Long Beach,MS,39560 +Mc Henry,MS,39561 +Kreole,MS,39563 +Ocean Springs,MS,39564 +Pascagoula,MS,39567 +Pass Christian,MS,39571 +Perkinston,MS,39573 +Saucier,MS,39574 +Waveland,MS,39576 +Wiggins,MS,39577 +Pascagoula,MS,39581 +Brookhaven,MS,39601 +Bogue Chitto,MS,39629 +Centreville,MS,39631 +Crosby,MS,39633 +Gloster,MS,39638 +Jayess,MS,39641 +Kokomo,MS,39643 +Liberty,MS,39645 +Mc Call Creek,MS,39647 +Mc Comb,MS,39648 +Magnolia,MS,39652 +Meadville,MS,39653 +Monticello,MS,39654 +Oak Vale,MS,39656 +Osyka,MS,39657 +Roxie,MS,39661 +Ruth,MS,39662 +Silver Creek,MS,39663 +Smithdale,MS,39664 +Sontag,MS,39665 +Summit,MS,39666 +Tylertown,MS,39667 +Union Church,MS,39668 +Woodville,MS,39669 +Columbus,MS,39701 +Columbus,MS,39702 +Aberdeen,MS,39730 +Ackerman,MS,39735 +Brooksville,MS,39739 +Caledonia,MS,39740 +Cedarbluff,MS,39741 +Crawford,MS,39743 +Tomnolen,MS,39744 +French Camp,MS,39745 +Hamilton,MS,39746 +Kilmichael,MS,39747 +Maben,MS,39750 +Mantee,MS,39751 +Mathiston,MS,39752 +Pheba,MS,39755 +Prairie,MS,39756 +Sessums,MS,39759 +Steens,MS,39766 +Stewart,MS,39767 +Sturgis,MS,39769 +Weir,MS,39772 +West Point,MS,39773 +Woodland,MS,39776 +Chesterfield,MO,63005 +Arnold,MO,63010 +Manchester,MO,63011 +Barnhart,MO,63012 +Beaufort,MO,63013 +Berger,MO,63014 +Catawissa,MO,63015 +Cedar Hill,MO,63016 +Town And Country,MO,63017 +Crystal City,MO,63019 +De Soto,MO,63020 +Ballwin,MO,63021 +Dittmer,MO,63023 +Crescent,MO,63025 +Fenton,MO,63026 +Festus,MO,63028 +Fletcher,MO,63030 +Florissant,MO,63031 +Florissant,MO,63033 +Florissant,MO,63034 +French Village,MO,63036 +Gerald,MO,63037 +Glencoe,MO,63038 +Gray Summit,MO,63039 +Grover,MO,63040 +Hazelwood,MO,63042 +Maryland Heights,MO,63043 +Bridgeton,MO,63044 +Bridgeton,MO,63045 +Herculaneum,MO,63048 +High Ridge,MO,63049 +Hillsboro,MO,63050 +House Springs,MO,63051 +Antonia,MO,63052 +Labadie,MO,63055 +Leslie,MO,63056 +Lonedell,MO,63060 +Luebbering,MO,63061 +New Haven,MO,63068 +Pacific,MO,63069 +Pevely,MO,63070 +Richwoods,MO,63071 +Robertsville,MO,63072 +Saint Ann,MO,63074 +Saint Clair,MO,63077 +Sullivan,MO,63080 +Union,MO,63084 +Valley Park,MO,63088 +Villa Ridge,MO,63089 +Washington,MO,63090 +Rosebud,MO,63091 +Saint Louis,MO,63101 +Saint Louis,MO,63102 +Saint Louis,MO,63103 +Saint Louis,MO,63104 +Clayton,MO,63105 +Saint Louis,MO,63106 +Saint Louis,MO,63107 +Saint Louis,MO,63108 +Saint Louis,MO,63109 +Saint Louis,MO,63110 +Saint Louis,MO,63111 +Saint Louis,MO,63112 +Saint Louis,MO,63113 +Overland,MO,63114 +Saint Louis,MO,63115 +Saint Louis,MO,63116 +Richmond Heights,MO,63117 +Saint Louis,MO,63118 +Webster Groves,MO,63119 +Saint Louis,MO,63120 +Normandy,MO,63121 +Kirkwood,MO,63122 +Affton,MO,63123 +Ladue,MO,63124 +Lemay,MO,63125 +Sappington,MO,63126 +Sappington,MO,63127 +Sappington,MO,63128 +South County,MO,63129 +University City,MO,63130 +Des Peres,MO,63131 +Olivette,MO,63132 +Saint Louis,MO,63133 +Berkeley,MO,63134 +Ferguson,MO,63135 +Jennings,MO,63136 +North County,MO,63137 +North County,MO,63138 +Saint Louis,MO,63139 +Berkeley,MO,63140 +Creve Coeur,MO,63141 +Maplewood,MO,63143 +Brentwood,MO,63144 +West County,MO,63146 +Saint Louis,MO,63147 +Saint Charles,MO,63301 +Saint Charles,MO,63303 +Saint Charles,MO,63304 +Annada,MO,63330 +Augusta,MO,63332 +Bellflower,MO,63333 +Bowling Green,MO,63334 +Clarksville,MO,63336 +Curryville,MO,63339 +Defiance,MO,63341 +Elsberry,MO,63343 +Eolia,MO,63344 +Farber,MO,63345 +Foley,MO,63347 +Foristell,MO,63348 +Hawk Point,MO,63349 +High Hill,MO,63350 +Jonesburg,MO,63351 +Laddonia,MO,63352 +Louisiana,MO,63353 +Lake Sherwood,MO,63357 +Middletown,MO,63359 +Montgomery City,MO,63361 +Moscow Mills,MO,63362 +New Florence,MO,63363 +New Hartford,MO,63364 +Saint Paul,MO,63366 +Lake Saint Louis,MO,63367 +Old Monroe,MO,63369 +Olney,MO,63370 +Paynesville,MO,63371 +Portage Des Siou,MO,63373 +Saint Peters,MO,63376 +Silex,MO,63377 +Troy,MO,63379 +Truxton,MO,63381 +Vandalia,MO,63382 +Warrenton,MO,63383 +Wellsville,MO,63384 +Wentzville,MO,63385 +West Alton,MO,63386 +Williamsburg,MO,63388 +Winfield,MO,63389 +Wright City,MO,63390 +Hannibal,MO,63401 +Alexandria,MO,63430 +Anabel,MO,63431 +Arbela,MO,63432 +Ashburn,MO,63433 +Bethel,MO,63434 +Canton,MO,63435 +Center,MO,63436 +Clarence,MO,63437 +Durham,MO,63438 +Emden,MO,63439 +Ewing,MO,63440 +Frankford,MO,63441 +Hunnewell,MO,63443 +Kahoka,MO,63445 +Knox City,MO,63446 +La Belle,MO,63447 +La Grange,MO,63448 +Lentner,MO,63450 +Leonard,MO,63451 +Lewistown,MO,63452 +Luray,MO,63453 +Maywood,MO,63454 +Monroe City,MO,63456 +Monticello,MO,63457 +Newark,MO,63458 +New London,MO,63459 +Novelty,MO,63460 +Palmyra,MO,63461 +Perry,MO,63462 +Philadelphia,MO,63463 +Plevna,MO,63464 +Saint Patrick,MO,63466 +Shelbina,MO,63468 +Shelbyville,MO,63469 +Steffenville,MO,63470 +Taylor,MO,63471 +Wayland,MO,63472 +Williamstown,MO,63473 +Wyaconda,MO,63474 +Kirksville,MO,63501 +Atlanta,MO,63530 +Baring,MO,63531 +Bevier,MO,63532 +Brashear,MO,63533 +Callao,MO,63534 +Coatsville,MO,63535 +Downing,MO,63536 +Edina,MO,63537 +Elmer,MO,63538 +Ethel,MO,63539 +Gibbs,MO,63540 +Glenwood,MO,63541 +Gorin,MO,63543 +Green Castle,MO,63544 +Green City,MO,63545 +Greentop,MO,63546 +Hurdland,MO,63547 +Lancaster,MO,63548 +La Plata,MO,63549 +Livonia,MO,63551 +Macon,MO,63552 +Memphis,MO,63555 +Milan,MO,63556 +New Boston,MO,63557 +New Cambria,MO,63558 +Novinger,MO,63559 +Pollock,MO,63560 +Queen City,MO,63561 +Rutledge,MO,63563 +Unionville,MO,63565 +Winigan,MO,63566 +Worthington,MO,63567 +Desloge,MO,63601 +Annapolis,MO,63620 +Arcadia,MO,63621 +Belgrade,MO,63622 +Belleview,MO,63623 +Desloge,MO,63624 +Black,MO,63625 +Blackwell,MO,63626 +Bloomsdale,MO,63627 +Bonne Terre,MO,63628 +Bunker,MO,63629 +Cadet,MO,63630 +Caledonia,MO,63631 +Centerville,MO,63633 +Des Arc,MO,63636 +Doe Run,MO,63637 +Ellington,MO,63638 +Farmington,MO,63640 +Millcreek,MO,63645 +Irondale,MO,63648 +Iron Mountain,MO,63650 +Leadwood,MO,63653 +Lesterville,MO,63654 +Marquand,MO,63655 +Middle Brook,MO,63656 +Mineral Point,MO,63660 +Patton,MO,63662 +Potosi,MO,63664 +Redford,MO,63665 +Lake Forest Esta,MO,63670 +Saint Mary,MO,63673 +Vulcan,MO,63675 +Cape Girardeau,MO,63701 +Advance,MO,63730 +New Wells,MO,63732 +Arab,MO,63733 +Bell City,MO,63735 +Benton,MO,63736 +Burfordville,MO,63739 +Chaffee,MO,63740 +Daisy,MO,63743 +Delta,MO,63744 +Friedheim,MO,63747 +Frohna,MO,63748 +Gipsy,MO,63750 +Glenallen,MO,63751 +Grassy,MO,63753 +Jackson,MO,63755 +Leopold,MO,63760 +Mc Gee,MO,63763 +Scopus,MO,63764 +Millersville,MO,63766 +63768,MO,63768 +Oak Ridge,MO,63769 +Old Appleton,MO,63770 +Oran,MO,63771 +Perryville,MO,63775 +Scott City,MO,63780 +Sedgewickville,MO,63781 +Sturdivant,MO,63782 +Uniontown,MO,63783 +Whitewater,MO,63785 +Wittenberg,MO,63786 +Zalma,MO,63787 +Sikeston,MO,63801 +Arbyrd,MO,63821 +Bernie,MO,63822 +Bertrand,MO,63823 +Bloomfield,MO,63825 +Bragg City,MO,63827 +Cardwell,MO,63829 +Caruthersville,MO,63830 +Catron,MO,63833 +Charleston,MO,63834 +Clarkton,MO,63837 +Dexter,MO,63841 +East Prairie,MO,63845 +Essex,MO,63846 +Gideon,MO,63848 +Gobler,MO,63849 +Hayti Heights,MO,63851 +Holcomb,MO,63852 +Hornersville,MO,63855 +Kennett,MO,63857 +Lilbourn,MO,63862 +Malden,MO,63863 +Marston,MO,63866 +Matthews,MO,63867 +Morehouse,MO,63868 +New Madrid,MO,63869 +Parma,MO,63870 +Portageville,MO,63873 +Senath,MO,63876 +Steele,MO,63877 +Homestown,MO,63879 +Poplar Bluff,MO,63901 +Briar,MO,63931 +Broseley,MO,63932 +Campbell,MO,63933 +Clubb,MO,63934 +Poynor,MO,63935 +Dudley,MO,63936 +Ellsinore,MO,63937 +Fairdealing,MO,63939 +Fisk,MO,63940 +Fremont,MO,63941 +Gatewood,MO,63942 +Grandin,MO,63943 +Greenville,MO,63944 +Harviell,MO,63945 +Hiram,MO,63947 +Lodi,MO,63950 +Lowndes,MO,63951 +Mill Spring,MO,63952 +Naylor,MO,63953 +Neelyville,MO,63954 +Oxly,MO,63955 +Patterson,MO,63956 +Piedmont,MO,63957 +63959,MO,63959 +Puxico,MO,63960 +Qulin,MO,63961 +Shook,MO,63963 +Silva,MO,63964 +Van Buren,MO,63965 +Wappapello,MO,63966 +Williamsville,MO,63967 +Alma,MO,64001 +Bates City,MO,64011 +Belton,MO,64012 +Blue Springs,MO,64014 +Lake Tapawingo,MO,64015 +Buckner,MO,64016 +Camden,MO,64017 +Camden Point,MO,64018 +Centerview,MO,64019 +Concordia,MO,64020 +Corder,MO,64021 +Dover,MO,64022 +Excelsior Spring,MO,64024 +Grain Valley,MO,64029 +Grandview,MO,64030 +Lake Winnebago,MO,64034 +Hardin,MO,64035 +Henrietta,MO,64036 +Higginsville,MO,64037 +Holden,MO,64040 +Holt,MO,64048 +Independence,MO,64050 +Independence,MO,64052 +Independence,MO,64053 +Sugar Creek,MO,64054 +Independence,MO,64055 +Independence,MO,64056 +Independence,MO,64057 +Independence,MO,64058 +Kearney,MO,64060 +Kingsville,MO,64061 +Lawson,MO,64062 +Lake Lotawana,MO,64063 +Lees Summit,MO,64064 +Lexington,MO,64067 +Pleasant Valley,MO,64068 +Lone Jack,MO,64070 +Mayview,MO,64071 +Napoleon,MO,64074 +Oak Grove,MO,64075 +Odessa,MO,64076 +Orrick,MO,64077 +Peculiar,MO,64078 +Platte City,MO,64079 +Pleasant Hill,MO,64080 +Lees Summit,MO,64081 +Lees Summit,MO,64082 +Raymore,MO,64083 +Rayville,MO,64084 +Richmond,MO,64085 +Sibley,MO,64088 +Smithville,MO,64089 +Warrensburg,MO,64093 +Waverly,MO,64096 +Wellington,MO,64097 +Weston,MO,64098 +Kansas City,MO,64101 +Kansas City,MO,64102 +Kansas City,MO,64105 +Kansas City,MO,64106 +Kansas City,MO,64108 +Kansas City,MO,64109 +Kansas City,MO,64110 +Kansas City,MO,64111 +Kansas City,MO,64112 +Kansas City,MO,64113 +Kansas City,MO,64114 +North Kansas Cit,MO,64116 +Randolph,MO,64117 +Gladstone,MO,64118 +Kansas City,MO,64119 +Kansas City,MO,64120 +Kansas City,MO,64123 +Kansas City,MO,64124 +Kansas City,MO,64125 +Kansas City,MO,64126 +Kansas City,MO,64127 +Kansas City,MO,64128 +Kansas City,MO,64129 +Kansas City,MO,64130 +Kansas City,MO,64131 +Kansas City,MO,64132 +Raytown,MO,64133 +Kansas City,MO,64134 +Kansas City,MO,64136 +Kansas City,MO,64137 +Raytown,MO,64138 +Kansas City,MO,64139 +Kansas City,MO,64145 +Kansas City,MO,64146 +Martin City,MO,64147 +Kansas City,MO,64149 +Kansas City,MO,64150 +Lake Waukomis,MO,64151 +Parkville,MO,64152 +Kansas City,MO,64153 +Kansas City,MO,64154 +Kansas City,MO,64155 +Kansas City,MO,64156 +Kansas City,MO,64157 +Kansas City,MO,64158 +Randolph,MO,64161 +Ferrelview,MO,64163 +Kansas City,MO,64164 +Kansas City,MO,64165 +Kansas City,MO,64166 +Kansas City,MO,64167 +Agency,MO,64401 +Albany,MO,64402 +Amazonia,MO,64421 +Amity,MO,64422 +Barnard,MO,64423 +Bethany,MO,64424 +64425,MO,64425 +Blythedale,MO,64426 +Bolckow,MO,64427 +Burlington Junct,MO,64428 +Cameron,MO,64429 +Clarksdale,MO,64430 +Clearmont,MO,64431 +Clyde,MO,64432 +Conception,MO,64433 +Conception Junct,MO,64434 +Corning,MO,64435 +Cosby,MO,64436 +Bigelow,MO,64437 +Darlington,MO,64438 +Dearborn,MO,64439 +De Kalb,MO,64440 +Denver,MO,64441 +Eagleville,MO,64442 +Easton,MO,64443 +Edgerton,MO,64444 +Elmo,MO,64445 +Fairfax,MO,64446 +Faucett,MO,64448 +Fillmore,MO,64449 +Forest City,MO,64451 +Fortescue,MO,64452 +Gentry,MO,64453 +Gower,MO,64454 +Graham,MO,64455 +Grant City,MO,64456 +Guilford,MO,64457 +Hatfield,MO,64458 +Helena,MO,64459 +Hopkins,MO,64461 +King City,MO,64463 +Lathrop,MO,64465 +Maitland,MO,64466 +Martinsville,MO,64467 +Maryville,MO,64468 +Maysville,MO,64469 +Mound City,MO,64470 +New Hampton,MO,64471 +Oregon,MO,64473 +Osborn,MO,64474 +Parnell,MO,64475 +Pickering,MO,64476 +Plattsburg,MO,64477 +Quitman,MO,64478 +Ravenwood,MO,64479 +Rea,MO,64480 +Ridgeway,MO,64481 +Rock Port,MO,64482 +Rosendale,MO,64483 +Rushville,MO,64484 +Savannah,MO,64485 +Sheridan,MO,64486 +Skidmore,MO,64487 +Stanberry,MO,64489 +Hemple,MO,64490 +Tarkio,MO,64491 +Trimble,MO,64492 +Turney,MO,64493 +Union Star,MO,64494 +Watson,MO,64496 +Weatherby,MO,64497 +Westboro,MO,64498 +Worth,MO,64499 +Saint Joseph,MO,64501 +Saint Joseph,MO,64503 +Saint Joseph,MO,64504 +Saint Joseph,MO,64505 +Saint Joseph,MO,64506 +Saint Joseph,MO,64507 +Chillicothe,MO,64601 +Altamont,MO,64620 +Avalon,MO,64621 +Bogard,MO,64622 +Bosworth,MO,64623 +Braymer,MO,64624 +Breckenridge,MO,64625 +Brookfield,MO,64628 +Browning,MO,64630 +Bucklin,MO,64631 +Cainsville,MO,64632 +Carrollton,MO,64633 +Chula,MO,64635 +Coffey,MO,64636 +Cowgill,MO,64637 +Dawn,MO,64638 +De Witt,MO,64639 +Gallatin,MO,64640 +Galt,MO,64641 +Gilman City,MO,64642 +Hale,MO,64643 +Hamilton,MO,64644 +Harris,MO,64645 +Humphreys,MO,64646 +Jameson,MO,64647 +Jamesport,MO,64648 +Kidder,MO,64649 +Kingston,MO,64650 +Laclede,MO,64651 +Laredo,MO,64652 +Linneus,MO,64653 +Lock Springs,MO,64654 +Lucerne,MO,64655 +Ludlow,MO,64656 +Mc Fall,MO,64657 +Marceline,MO,64658 +Meadville,MO,64659 +Mendon,MO,64660 +Mercer,MO,64661 +Mooresville,MO,64664 +Mount Moriah,MO,64665 +Newtown,MO,64667 +Norborne,MO,64668 +Pattonsburg,MO,64670 +Polo,MO,64671 +Powersville,MO,64672 +Princeton,MO,64673 +Purdin,MO,64674 +Rothville,MO,64676 +Saint Catharine,MO,64677 +Spickard,MO,64679 +Sumner,MO,64681 +Tina,MO,64682 +Trenton,MO,64683 +Utica,MO,64686 +Wheeling,MO,64688 +Winston,MO,64689 +Harrisonville,MO,64701 +Adrian,MO,64720 +Amoret,MO,64722 +Amsterdam,MO,64723 +Appleton City,MO,64724 +Archie,MO,64725 +Blairstown,MO,64726 +Bronaugh,MO,64728 +Butler,MO,64730 +Chilhowee,MO,64733 +Cleveland,MO,64734 +Tightwad,MO,64735 +Collins,MO,64738 +Creighton,MO,64739 +Deepwater,MO,64740 +Deerfield,MO,64741 +Drexel,MO,64742 +El Dorado Spring,MO,64744 +Foster,MO,64745 +Freeman,MO,64746 +Garden City,MO,64747 +Golden City,MO,64748 +Harwood,MO,64750 +Horton,MO,64751 +Stotesbury,MO,64752 +Jasper,MO,64755 +Jerico Springs,MO,64756 +Iantha,MO,64759 +Latour,MO,64760 +Leeton,MO,64761 +Liberal,MO,64762 +Lowry City,MO,64763 +Milo,MO,64767 +Mindenmines,MO,64769 +Montrose,MO,64770 +Moundville,MO,64771 +Nevada,MO,64772 +Osceola,MO,64776 +Richards,MO,64778 +Rich Hill,MO,64779 +Rockville,MO,64780 +Schell City,MO,64783 +Sheldon,MO,64784 +Urich,MO,64788 +Walker,MO,64790 +Joplin,MO,64801 +Joplin,MO,64804 +Anderson,MO,64831 +Asbury,MO,64832 +Avilla,MO,64833 +Carl Junction,MO,64834 +Carterville,MO,64835 +Carthage,MO,64836 +Diamond,MO,64840 +Fairview,MO,64842 +Goodman,MO,64843 +Granby,MO,64844 +Lanagan,MO,64847 +La Russell,MO,64848 +Neosho,MO,64850 +Noel,MO,64854 +Oronogo,MO,64855 +Jane,MO,64856 +Reeds,MO,64859 +Rocky Comfort,MO,64861 +Sarcoxie,MO,64862 +South West City,MO,64863 +Seneca,MO,64865 +Stark City,MO,64866 +Stella,MO,64867 +Tiff City,MO,64868 +Webb City,MO,64870 +Wentworth,MO,64873 +Wheaton,MO,64874 +Argyle,MO,65001 +Ashland,MO,65010 +Barnett,MO,65011 +Belle,MO,65013 +Bland,MO,65014 +Bonnots Mill,MO,65016 +Brumley,MO,65017 +California,MO,65018 +Camdenton,MO,65020 +Centertown,MO,65023 +Chamois,MO,65024 +Clarksburg,MO,65025 +Eldon,MO,65026 +Eugene,MO,65032 +Fortuna,MO,65034 +Freeburg,MO,65035 +Gravois Mills,MO,65037 +Hartsburg,MO,65039 +Henley,MO,65040 +Bay,MO,65041 +High Point,MO,65042 +Holts Summit,MO,65043 +Jamestown,MO,65046 +Kaiser,MO,65047 +Koeltztown,MO,65048 +Four Seasons,MO,65049 +Latham,MO,65050 +Linn,MO,65051 +Linn Creek,MO,65052 +Lohman,MO,65053 +Loose Creek,MO,65054 +Meta,MO,65058 +Mokane,MO,65059 +Morrison,MO,65061 +Mount Sterling,MO,65062 +New Bloomfield,MO,65063 +Olean,MO,65064 +Osage Beach,MO,65065 +Owensville,MO,65066 +Portland,MO,65067 +Prairie Home,MO,65068 +Rhineland,MO,65069 +Rocky Mount,MO,65072 +Russellville,MO,65074 +Saint Elizabeth,MO,65075 +Saint Thomas,MO,65076 +Steedman,MO,65077 +Stover,MO,65078 +Sunrise Beach,MO,65079 +Tebbetts,MO,65080 +Tipton,MO,65081 +Tuscumbia,MO,65082 +Ulman,MO,65083 +Versailles,MO,65084 +Westphalia,MO,65085 +Jefferson City,MO,65101 +Jefferson City,MO,65109 +Columbia,MO,65201 +Columbia,MO,65202 +Columbia,MO,65203 +Armstrong,MO,65230 +Auxvasse,MO,65231 +Benton City,MO,65232 +Boonville,MO,65233 +Brunswick,MO,65236 +Bunceton,MO,65237 +Cairo,MO,65239 +Centralia,MO,65240 +Clark,MO,65243 +Clifton Hill,MO,65244 +Dalton,MO,65246 +Excello,MO,65247 +Fayette,MO,65248 +Franklin,MO,65250 +Fulton,MO,65251 +Glasgow,MO,65254 +Hallsville,MO,65255 +Harrisburg,MO,65256 +Higbee,MO,65257 +Holliday,MO,65258 +Huntsville,MO,65259 +Jacksonville,MO,65260 +Keytesville,MO,65261 +Kingdom City,MO,65262 +Madison,MO,65263 +Martinsburg,MO,65264 +Mexico,MO,65265 +Moberly,MO,65270 +New Franklin,MO,65274 +Paris,MO,65275 +Pilot Grove,MO,65276 +Rocheport,MO,65279 +Rush Hill,MO,65280 +Salisbury,MO,65281 +Santa Fe,MO,65282 +Stoutsville,MO,65283 +Sturgeon,MO,65284 +Thompson,MO,65285 +Triplett,MO,65286 +Wooldridge,MO,65287 +Sedalia,MO,65301 +Whiteman Afb,MO,65305 +Blackburn,MO,65321 +Blackwater,MO,65322 +Calhoun,MO,65323 +Climax Springs,MO,65324 +Cole Camp,MO,65325 +Edwards,MO,65326 +Florence,MO,65329 +Gilliam,MO,65330 +Green Ridge,MO,65332 +Houstonia,MO,65333 +Hughesville,MO,65334 +Ionia,MO,65335 +Knob Noster,MO,65336 +La Monte,MO,65337 +Lincoln,MO,65338 +Grand Pass,MO,65339 +Napton,MO,65340 +Miami,MO,65344 +Mora,MO,65345 +Nelson,MO,65347 +Otterville,MO,65348 +Slater,MO,65349 +Smithton,MO,65350 +Sweet Springs,MO,65351 +Syracuse,MO,65354 +Warsaw,MO,65355 +Windsor,MO,65360 +Rolla,MO,65401 +Bendavis,MO,65433 +Beulah,MO,65436 +Birch Tree,MO,65438 +Bixby,MO,65439 +Boss,MO,65440 +Bourbon,MO,65441 +Brinktown,MO,65443 +Bucyrus,MO,65444 +Cherryville,MO,65446 +Cook Station,MO,65449 +65451,MO,65451 +Crocker,MO,65452 +Cuba,MO,65453 +Davisville,MO,65456 +Devils Elbow,MO,65457 +Dixon,MO,65459 +Duke,MO,65461 +Edgar Springs,MO,65462 +Eldridge,MO,65463 +Elk Creek,MO,65464 +Eminence,MO,65466 +Eunice,MO,65468 +Falcon,MO,65470 +Fort Leonard Woo,MO,65473 +Hartshorn,MO,65479 +Houston,MO,65483 +Huggins,MO,65484 +Iberia,MO,65486 +Jadwin,MO,65501 +Jerome,MO,65529 +Laquey,MO,65534 +Leasburg,MO,65535 +Lebanon,MO,65536 +Anutt,MO,65540 +Lenox,MO,65541 +Licking,MO,65542 +Lynchburg,MO,65543 +Mountain View,MO,65548 +Newburg,MO,65550 +Plato,MO,65552 +Raymondville,MO,65555 +Richland,MO,65556 +Roby,MO,65557 +Saint James,MO,65559 +Salem,MO,65560 +Solo,MO,65564 +Berryman,MO,65565 +Viburnum,MO,65566 +Stoutland,MO,65567 +Success,MO,65570 +Summersville,MO,65571 +Teresita,MO,65573 +Vichy,MO,65580 +Vienna,MO,65582 +Saint Robert,MO,65583 +Wesco,MO,65586 +Winona,MO,65588 +Yukon,MO,65589 +Long Lane,MO,65590 +Montreal,MO,65591 +Aldrich,MO,65601 +Arcola,MO,65603 +Ash Grove,MO,65604 +Jenkins,MO,65605 +Riverton,MO,65606 +Ava,MO,65608 +Bakersfield,MO,65609 +Billings,MO,65610 +Blue Eye,MO,65611 +Bois D Arc,MO,65612 +Bolivar,MO,65613 +Bradleyville,MO,65614 +Marvel Cave Park,MO,65616 +Brighton,MO,65617 +Brixey,MO,65618 +Brookline Statio,MO,65619 +Bruner,MO,65620 +Buffalo,MO,65622 +Butterfield,MO,65623 +Cape Fair,MO,65624 +Cassville,MO,65625 +Caulfield,MO,65626 +Cedarcreek,MO,65627 +Chadwick,MO,65629 +Chestnutridge,MO,65630 +Clever,MO,65631 +Conway,MO,65632 +Crane,MO,65633 +Cross Timbers,MO,65634 +Dadeville,MO,65635 +Dora,MO,65637 +Drury,MO,65638 +Dunnegan,MO,65640 +Eagle Rock,MO,65641 +Elkland,MO,65644 +Everton,MO,65646 +Exeter,MO,65647 +Fair Grove,MO,65648 +Fair Play,MO,65649 +Flemington,MO,65650 +Fordland,MO,65652 +Forsyth,MO,65653 +Freistatt,MO,65654 +Gainesville,MO,65655 +Galena,MO,65656 +Garrison,MO,65657 +Golden,MO,65658 +Goodson,MO,65659 +Graff,MO,65660 +Greenfield,MO,65661 +Grovespring,MO,65662 +Half Way,MO,65663 +Hardenville,MO,65666 +Hartville,MO,65667 +Hermitage,MO,65668 +Highlandville,MO,65669 +Hollister,MO,65672 +Humansville,MO,65674 +Hurley,MO,65675 +Isabella,MO,65676 +Kirbyville,MO,65679 +Kissee Mills,MO,65680 +Lampe,MO,65681 +Lockwood,MO,65682 +Louisburg,MO,65685 +Kimberling City,MO,65686 +Brandsville,MO,65688 +Cabool,MO,65689 +Couch,MO,65690 +Koshkonong,MO,65692 +Mc Clurg,MO,65701 +Macomb,MO,65702 +Mansfield,MO,65704 +Marionville,MO,65705 +Marshfield,MO,65706 +Miller,MO,65707 +Monett,MO,65708 +Morrisville,MO,65710 +Mountain Grove,MO,65711 +Mount Vernon,MO,65712 +Niangua,MO,65713 +Nixa,MO,65714 +Noble,MO,65715 +Norwood,MO,65717 +Oldfield,MO,65720 +Ozark,MO,65721 +Phillipsburg,MO,65722 +Pierce City,MO,65723 +Pittsburg,MO,65724 +Pleasant Hope,MO,65725 +Polk,MO,65727 +Ponce De Leon,MO,65728 +Pontiac,MO,65729 +Powell,MO,65730 +Powersite,MO,65731 +Preston,MO,65732 +Protem,MO,65733 +Purdy,MO,65734 +Quincy,MO,65735 +Branson West,MO,65737 +Republic,MO,65738 +Ridgedale,MO,65739 +Rockaway Beach,MO,65740 +Rogersville,MO,65742 +Rueter,MO,65744 +Seligman,MO,65745 +Seymour,MO,65746 +Shell Knob,MO,65747 +65751,MO,65751 +South Greenfield,MO,65752 +Sparta,MO,65753 +Spokane,MO,65754 +Squires,MO,65755 +Stotts City,MO,65756 +Strafford,MO,65757 +Sycamore,MO,65758 +Taneyville,MO,65759 +Tecumseh,MO,65760 +Dugginsville,MO,65761 +Nottinghill,MO,65762 +Tunas,MO,65764 +Udall,MO,65766 +Urbana,MO,65767 +Vanzant,MO,65768 +Verona,MO,65769 +Walnut Grove,MO,65770 +Walnut Shade,MO,65771 +Washburn,MO,65772 +Souder,MO,65773 +Weaubleau,MO,65774 +West Plains,MO,65775 +South Fork,MO,65776 +Moody,MO,65777 +Myrtle,MO,65778 +Wheatland,MO,65779 +Willard,MO,65781 +Windyville,MO,65783 +Zanoni,MO,65784 +Stockton,MO,65785 +Macks Creek,MO,65786 +Roach,MO,65787 +Peace Valley,MO,65788 +Pomona,MO,65789 +Pottersville,MO,65790 +Thayer,MO,65791 +Willow Springs,MO,65793 +Springfield,MO,65802 +Springfield,MO,65803 +Springfield,MO,65804 +Springfield,MO,65806 +Springfield,MO,65807 +Springfield,MO,65809 +Springfield,MO,65810 +Absarokee,MT,59001 +Acton,MT,59002 +Ashland,MT,59003 +Ballantine,MT,59006 +Bearcreek,MT,59007 +Belfry,MT,59008 +Bighorn,MT,59010 +Big Timber,MT,59011 +Birney,MT,59012 +Bridger,MT,59014 +Broadview,MT,59015 +Busby,MT,59016 +Cat Creek,MT,59017 +Columbus,MT,59019 +Crow Agency,MT,59022 +Custer,MT,59024 +Decker,MT,59025 +Emigrant,MT,59027 +Fishtail,MT,59028 +Fromberg,MT,59029 +Gardiner,MT,59030 +Garryowen,MT,59031 +Grass Range,MT,59032 +Greycliff,MT,59033 +Hardin,MT,59034 +Huntley,MT,59037 +Hysham,MT,59038 +Ingomar,MT,59039 +Silesia,MT,59041 +Lame Deer,MT,59043 +Laurel,MT,59044 +Lavina,MT,59046 +Livingston,MT,59047 +Lodge Grass,MT,59050 +Luther,MT,59051 +Mc Leod,MT,59052 +Martinsdale,MT,59053 +Melville,MT,59055 +Molt,MT,59057 +Mosby,MT,59058 +Musselshell,MT,59059 +Nye,MT,59061 +Otter,MT,59062 +Park City,MT,59063 +Pompeys Pillar,MT,59064 +Pray,MT,59065 +Rapelje,MT,59067 +Red Lodge,MT,59068 +Reedpoint,MT,59069 +Roberts,MT,59070 +Roscoe,MT,59071 +Roundup,MT,59072 +Ryegate,MT,59074 +Saint Xavier,MT,59075 +Sand Springs,MT,59077 +Shawmut,MT,59078 +Shepherd,MT,59079 +59080,MT,59080 +Twodot,MT,59085 +Wilsall,MT,59086 +Winnett,MT,59087 +Worden,MT,59088 +Wyola,MT,59089 +Billings,MT,59101 +Billings,MT,59102 +Billings Heights,MT,59105 +Billings,MT,59106 +Wolf Point,MT,59201 +Antelope,MT,59211 +Bainville,MT,59212 +Brockton,MT,59213 +Brockway,MT,59214 +Circle,MT,59215 +Culbertson,MT,59218 +Dagmar,MT,59219 +Fairview,MT,59221 +Flaxville,MT,59222 +Fort Peck,MT,59223 +Lustre,MT,59225 +Froid,MT,59226 +Glasgow,MT,59230 +Hinsdale,MT,59241 +Homestead,MT,59242 +Lambert,MT,59243 +Larslan,MT,59244 +Medicine Lake,MT,59247 +Nashua,MT,59248 +Opheim,MT,59250 +Outlook,MT,59252 +Peerless,MT,59253 +Plentywood,MT,59254 +Poplar,MT,59255 +Raymond,MT,59256 +Redstone,MT,59257 +Reserve,MT,59258 +Richey,MT,59259 +Richland,MT,59260 +Saco,MT,59261 +Savage,MT,59262 +Scobey,MT,59263 +Sidney,MT,59270 +Vida,MT,59274 +Westby,MT,59275 +Whitetail,MT,59276 +Miles City,MT,59301 +Alzada,MT,59311 +Angela,MT,59312 +Baker,MT,59313 +Biddle,MT,59314 +Bloomfield,MT,59315 +Boyes,MT,59316 +Belle Creek,MT,59317 +Brusett,MT,59318 +Capitol,MT,59319 +Cohagen,MT,59322 +Ekalaka,MT,59324 +Fallon,MT,59326 +Forsyth,MT,59327 +Glendive,MT,59330 +Hammond,MT,59332 +Ismay,MT,59336 +Jordan,MT,59337 +Kinsey,MT,59338 +Lindsay,MT,59339 +Mildred,MT,59341 +Olive,MT,59343 +Plevna,MT,59344 +Powderville,MT,59345 +Rosebud,MT,59347 +Terry,MT,59349 +Volborg,MT,59351 +Wibaux,MT,59353 +Willard,MT,59354 +Great Falls,MT,59401 +Great Falls,MT,59404 +Great Falls,MT,59405 +Augusta,MT,59410 +Babb,MT,59411 +Belt,MT,59412 +Black Eagle,MT,59414 +Brady,MT,59416 +Saint Mary,MT,59417 +Buffalo,MT,59418 +Bynum,MT,59419 +Carter,MT,59420 +Cascade,MT,59421 +Choteau,MT,59422 +Coffee Creek,MT,59424 +Conrad,MT,59425 +Cut Bank,MT,59427 +Denton,MT,59430 +Dutton,MT,59433 +East Glacier Par,MT,59434 +Fairfield,MT,59436 +Floweree,MT,59440 +Forestgrove,MT,59441 +Fort Benton,MT,59442 +Fort Shaw,MT,59443 +Galata,MT,59444 +Geraldine,MT,59446 +Geyser,MT,59447 +Heart Butte,MT,59448 +Highwood,MT,59450 +Hilger,MT,59451 +Utica,MT,59452 +Judith Gap,MT,59453 +Kevin,MT,59454 +Ledger,MT,59456 +Lewistown,MT,59457 +Loma,MT,59460 +Moccasin,MT,59462 +Monarch,MT,59463 +Moore,MT,59464 +Neihart,MT,59465 +Pendroy,MT,59467 +Power,MT,59468 +Raynesford,MT,59469 +Roy,MT,59471 +Sand Coulee,MT,59472 +Shelby,MT,59474 +Stanford,MT,59479 +Stockett,MT,59480 +Sunburst,MT,59482 +Sun River,MT,59483 +Sweetgrass,MT,59484 +Valier,MT,59486 +Vaughn,MT,59487 +Winifred,MT,59489 +Havre,MT,59501 +Big Sandy,MT,59520 +Box Elder,MT,59521 +Chester,MT,59522 +Chinook,MT,59523 +Dodson,MT,59524 +Gildford,MT,59525 +Harlem,MT,59526 +Hays,MT,59527 +Hingham,MT,59528 +Hogeland,MT,59529 +Inverness,MT,59530 +Joplin,MT,59531 +Kremlin,MT,59532 +Lloyd,MT,59535 +Loring,MT,59537 +Malta,MT,59538 +Rudyard,MT,59540 +Turner,MT,59542 +Whitewater,MT,59544 +Whitlash,MT,59545 +Zortman,MT,59546 +Helena,MT,59601 +Boulder,MT,59632 +Canyon Creek,MT,59633 +Montana City,MT,59634 +East Helena,MT,59635 +Lincoln,MT,59639 +Radersburg,MT,59641 +Ringling,MT,59642 +Toston,MT,59643 +Townsend,MT,59644 +White Sulphur Sp,MT,59645 +Winston,MT,59647 +Wolf Creek,MT,59648 +Walkerville,MT,59701 +Anaconda,MT,59711 +Belgrade,MT,59714 +Bozeman,MT,59715 +Cameron,MT,59720 +Cardwell,MT,59721 +Deer Lodge,MT,59722 +Dell,MT,59724 +Dillon,MT,59725 +Divide,MT,59727 +Ennis,MT,59729 +Gallatin Gateway,MT,59730 +Garrison,MT,59731 +Gold Creek,MT,59733 +Harrison,MT,59735 +Jackson,MT,59736 +Lima,MT,59739 +Manhattan,MT,59741 +Norris,MT,59745 +Pony,MT,59747 +Ramsay,MT,59748 +Sheridan,MT,59749 +Butte,MT,59750 +Silver Star,MT,59751 +Three Forks,MT,59752 +Twin Bridges,MT,59754 +Virginia City,MT,59755 +Warmsprings,MT,59756 +West Yellowstone,MT,59758 +Whitehall,MT,59759 +Wisdom,MT,59761 +Wise River,MT,59762 +Missoula,MT,59801 +Missoula,MT,59802 +Missoula,MT,59803 +Alberton,MT,59820 +Arlee,MT,59821 +Bonner,MT,59823 +Moiese,MT,59824 +Clinton,MT,59825 +Condon,MT,59826 +Conner,MT,59827 +Corvallis,MT,59828 +Darby,MT,59829 +Dixon,MT,59831 +Drummond,MT,59832 +Florence,MT,59833 +Frenchtown,MT,59834 +Greenough,MT,59836 +Hall,MT,59837 +Hamilton,MT,59840 +Helmville,MT,59843 +Heron,MT,59844 +Hot Springs,MT,59845 +Huson,MT,59846 +Lolo,MT,59847 +Lonepine,MT,59848 +Niarada,MT,59852 +Noxon,MT,59853 +Ovando,MT,59854 +Philipsburg,MT,59858 +Plains,MT,59859 +Polson,MT,59860 +Ronan,MT,59864 +Saint Ignatius,MT,59865 +Saint Regis,MT,59866 +Seeley Lake,MT,59868 +Stevensville,MT,59870 +Sula,MT,59871 +Superior,MT,59872 +Thompson Falls,MT,59873 +Trout Creek,MT,59874 +Victor,MT,59875 +Evergreen,MT,59901 +Big Arm,MT,59910 +Swan Lake,MT,59911 +Columbia Falls,MT,59912 +Dayton,MT,59914 +Elmo,MT,59915 +Essex,MT,59916 +Eureka,MT,59917 +Kila,MT,59920 +Lakeside,MT,59922 +Libby,MT,59923 +Marion,MT,59925 +Polebridge,MT,59928 +Proctor,MT,59929 +Rexford,MT,59930 +Rollins,MT,59931 +Somers,MT,59932 +Troy,MT,59935 +Whitefish,MT,59937 +Abie,NE,68001 +Arlington,NE,68002 +Ashland,NE,68003 +Bancroft,NE,68004 +Bellevue,NE,68005 +Bennington,NE,68007 +Blair,NE,68008 +Bruno,NE,68014 +Cedar Bluffs,NE,68015 +Ceresco,NE,68017 +Colon,NE,68018 +Craig,NE,68019 +Decatur,NE,68020 +Elkhorn,NE,68022 +Fort Calhoun,NE,68023 +Fremont,NE,68025 +Gretna,NE,68028 +Herman,NE,68029 +Hooper,NE,68031 +Ithaca,NE,68033 +Kennard,NE,68034 +Leshara,NE,68035 +Linwood,NE,68036 +Louisville,NE,68037 +Lyons,NE,68038 +Macy,NE,68039 +Malmo,NE,68040 +Mead,NE,68041 +Nickerson,NE,68044 +Oakland,NE,68045 +Papillion,NE,68046 +Pender,NE,68047 +Plattsmouth,NE,68048 +Prague,NE,68050 +Richfield,NE,68054 +Rosalie,NE,68055 +Scribner,NE,68057 +Springfield,NE,68059 +Tekamah,NE,68061 +Thurston,NE,68062 +Valley,NE,68064 +Valparaiso,NE,68065 +Wahoo,NE,68066 +Walthill,NE,68067 +Waterloo,NE,68069 +Weston,NE,68070 +Winnebago,NE,68071 +Yutan,NE,68073 +Omaha,NE,68102 +Omaha,NE,68104 +Omaha,NE,68105 +Omaha,NE,68106 +Omaha,NE,68107 +Omaha,NE,68108 +Omaha,NE,68110 +Omaha,NE,68111 +Omaha,NE,68112 +Offutt A F B,NE,68113 +Omaha,NE,68114 +Omaha,NE,68116 +Omaha,NE,68117 +Omaha,NE,68118 +Omaha,NE,68122 +Omaha,NE,68123 +Omaha,NE,68124 +Ralston,NE,68127 +Papillion,NE,68128 +Omaha,NE,68130 +Omaha,NE,68131 +Omaha,NE,68132 +Papillion,NE,68133 +Omaha,NE,68134 +Omaha,NE,68135 +Omaha,NE,68136 +Millard,NE,68137 +Papillion,NE,68138 +Omaha,NE,68142 +Millard,NE,68144 +Omaha,NE,68147 +Omaha,NE,68152 +Omaha,NE,68154 +Papillion,NE,68157 +Omaha,NE,68164 +Adams,NE,68301 +Alexandria,NE,68303 +Alvo,NE,68304 +Auburn,NE,68305 +Avoca,NE,68307 +Beatrice,NE,68310 +Beaver Crossing,NE,68313 +Bee,NE,68314 +Belvidere,NE,68315 +Benedict,NE,68316 +Bennet,NE,68317 +Blue Springs,NE,68318 +Bradshaw,NE,68319 +Brock,NE,68320 +Brownville,NE,68321 +Bruning,NE,68322 +Burchard,NE,68323 +Burr,NE,68324 +Byron,NE,68325 +Carleton,NE,68326 +Chester,NE,68327 +Clatonia,NE,68328 +Cook,NE,68329 +Cordova,NE,68330 +Cortland,NE,68331 +Crab Orchard,NE,68332 +Crete,NE,68333 +Davenport,NE,68335 +Davey,NE,68336 +Dawson,NE,68337 +Daykin,NE,68338 +Denton,NE,68339 +Deshler,NE,68340 +De Witt,NE,68341 +Diller,NE,68342 +Dorchester,NE,68343 +Douglas,NE,68344 +Du Bois,NE,68345 +Dunbar,NE,68346 +Eagle,NE,68347 +Elk Creek,NE,68348 +Elmwood,NE,68349 +Endicott,NE,68350 +Exeter,NE,68351 +Fairbury,NE,68352 +Fairmont,NE,68354 +Falls City,NE,68355 +Filley,NE,68357 +Firth,NE,68358 +Friend,NE,68359 +Garland,NE,68360 +Geneva,NE,68361 +Gilead,NE,68362 +Goehner,NE,68364 +Grafton,NE,68365 +Greenwood,NE,68366 +Gresham,NE,68367 +Hallam,NE,68368 +Hebron,NE,68370 +Henderson,NE,68371 +Holland,NE,68372 +Holmesville,NE,68374 +Hubbell,NE,68375 +Humboldt,NE,68376 +Jansen,NE,68377 +Johnson,NE,68378 +Julian,NE,68379 +Lewiston,NE,68380 +Liberty,NE,68381 +Mc Cool Junction,NE,68401 +Malcolm,NE,68402 +Martell,NE,68404 +Milford,NE,68405 +Milligan,NE,68406 +Murdock,NE,68407 +Murray,NE,68409 +Nebraska City,NE,68410 +Nehawka,NE,68413 +Nemaha,NE,68414 +Odell,NE,68415 +Ohiowa,NE,68416 +Otoe,NE,68417 +Palmyra,NE,68418 +Pawnee City,NE,68420 +Peru,NE,68421 +Pickrell,NE,68422 +Pleasant Dale,NE,68423 +Plymouth,NE,68424 +Agnew,NE,68428 +Reynolds,NE,68429 +Roca,NE,68430 +Rulo,NE,68431 +Saint Mary,NE,68432 +Salem,NE,68433 +Seward,NE,68434 +Shickley,NE,68436 +Shubert,NE,68437 +Staplehurst,NE,68439 +Steele City,NE,68440 +Steinauer,NE,68441 +Stella,NE,68442 +Sterling,NE,68443 +Strang,NE,68444 +Swanton,NE,68445 +Syracuse,NE,68446 +Table Rock,NE,68447 +Talmage,NE,68448 +Tecumseh,NE,68450 +Ong,NE,68452 +Tobias,NE,68453 +Unadilla,NE,68454 +Union,NE,68455 +Utica,NE,68456 +Verdon,NE,68457 +Virginia,NE,68458 +Waco,NE,68460 +Walton,NE,68461 +Waverly,NE,68462 +Weeping Water,NE,68463 +Western,NE,68464 +Wilber,NE,68465 +Wymore,NE,68466 +York,NE,68467 +Lincoln,NE,68502 +Lincoln,NE,68503 +Lincoln,NE,68504 +Lincoln,NE,68505 +Lincoln,NE,68506 +Lincoln,NE,68507 +Lincoln,NE,68508 +Lincoln,NE,68510 +Lincoln,NE,68512 +Lincoln,NE,68514 +Lincoln,NE,68516 +Lincoln,NE,68517 +Lincoln,NE,68520 +Lincoln,NE,68521 +Lincoln,NE,68522 +Lincoln,NE,68523 +Lincoln,NE,68524 +Lincoln,NE,68526 +Lincoln,NE,68527 +Lincoln,NE,68528 +Lincoln,NE,68531 +Lincoln,NE,68532 +Richland,NE,68601 +Albion,NE,68620 +Ames,NE,68621 +Bartlett,NE,68622 +Belgrade,NE,68623 +Bellwood,NE,68624 +Brainard,NE,68626 +Cedar Rapids,NE,68627 +Clarks,NE,68628 +Clarkson,NE,68629 +Creston,NE,68631 +Garrison,NE,68632 +Dodge,NE,68633 +Dwight,NE,68635 +Elgin,NE,68636 +Ericson,NE,68637 +Fullerton,NE,68638 +Genoa,NE,68640 +Howells,NE,68641 +Humphrey,NE,68642 +Leigh,NE,68643 +Lindsay,NE,68644 +Monroe,NE,68647 +Morse Bluff,NE,68648 +North Bend,NE,68649 +Octavia,NE,68650 +Osceola,NE,68651 +Petersburg,NE,68652 +Platte Center,NE,68653 +Polk,NE,68654 +Primrose,NE,68655 +Rising City,NE,68658 +Rogers,NE,68659 +Saint Edward,NE,68660 +Schuyler,NE,68661 +Shelby,NE,68662 +Silver Creek,NE,68663 +Spalding,NE,68665 +Stromsburg,NE,68666 +Ulysses,NE,68667 +Ulysses,NE,68669 +Norfolk,NE,68701 +Allen,NE,68710 +Amelia,NE,68711 +Atkinson,NE,68713 +Bassett,NE,68714 +Battle Creek,NE,68715 +Beemer,NE,68716 +Belden,NE,68717 +Bloomfield,NE,68718 +Bristow,NE,68719 +Brunswick,NE,68720 +Butte,NE,68722 +Carroll,NE,68723 +Center,NE,68724 +Chambers,NE,68725 +Clearwater,NE,68726 +Coleridge,NE,68727 +Concord,NE,68728 +Creighton,NE,68729 +Crofton,NE,68730 +Dakota City,NE,68731 +Dixon,NE,68732 +Emerson,NE,68733 +Emmet,NE,68734 +Ewing,NE,68735 +Fordyce,NE,68736 +Foster,NE,68737 +Hartington,NE,68739 +Hoskins,NE,68740 +Hubbard,NE,68741 +Inman,NE,68742 +Jackson,NE,68743 +Laurel,NE,68745 +Lynch,NE,68746 +Mclean,NE,68747 +Madison,NE,68748 +Magnet,NE,68749 +Maskell,NE,68751 +Meadow Grove,NE,68752 +Mills,NE,68753 +Naper,NE,68755 +Neligh,NE,68756 +Newcastle,NE,68757 +Newman Grove,NE,68758 +Newport,NE,68759 +Verdel,NE,68760 +Oakdale,NE,68761 +Obert,NE,68762 +Oneill,NE,68763 +Orchard,NE,68764 +Osmond,NE,68765 +Page,NE,68766 +Pierce,NE,68767 +Pilger,NE,68768 +Plainview,NE,68769 +Ponca,NE,68770 +Randolph,NE,68771 +Rose,NE,68772 +Royal,NE,68773 +Saint Helena,NE,68774 +South Sioux City,NE,68776 +Spencer,NE,68777 +Springview,NE,68778 +Stanton,NE,68779 +Stuart,NE,68780 +Tilden,NE,68781 +68782,NE,68782 +Verdigre,NE,68783 +Wakefield,NE,68784 +Waterbury,NE,68785 +Wausa,NE,68786 +Wayne,NE,68787 +West Point,NE,68788 +Winnetoon,NE,68789 +Winside,NE,68790 +Wisner,NE,68791 +Wynot,NE,68792 +Grand Island,NE,68801 +Grand Island,NE,68803 +Alda,NE,68810 +Amherst,NE,68812 +Milburn,NE,68813 +Ansley,NE,68814 +Arcadia,NE,68815 +Archer,NE,68816 +Ashton,NE,68817 +Aurora,NE,68818 +Berwyn,NE,68819 +Boelus,NE,68820 +Brewster,NE,68821 +Broken Bow,NE,68822 +Burwell,NE,68823 +Cairo,NE,68824 +Callaway,NE,68825 +Central City,NE,68826 +Chapman,NE,68827 +Comstock,NE,68828 +Cotesfield,NE,68829 +Dannebrog,NE,68831 +Doniphan,NE,68832 +Dunning,NE,68833 +Eddyville,NE,68834 +Elba,NE,68835 +Elm Creek,NE,68836 +Elyria,NE,68837 +Farwell,NE,68838 +Gibbon,NE,68840 +Giltner,NE,68841 +Greeley,NE,68842 +Hampton,NE,68843 +Hazard,NE,68844 +Hordville,NE,68846 +Kearney,NE,68847 +Lexington,NE,68850 +Litchfield,NE,68852 +Loup City,NE,68853 +Marquette,NE,68854 +Mason City,NE,68855 +Merna,NE,68856 +Miller,NE,68858 +North Loup,NE,68859 +Oconto,NE,68860 +Odessa,NE,68861 +Ord,NE,68862 +Overton,NE,68863 +Palmer,NE,68864 +Phillips,NE,68865 +Pleasanton,NE,68866 +Prosser,NE,68868 +Ravenna,NE,68869 +Riverdale,NE,68870 +Rockville,NE,68871 +Saint Libory,NE,68872 +Saint Paul,NE,68873 +Sargent,NE,68874 +Scotia,NE,68875 +Shelton,NE,68876 +Sumner,NE,68878 +Almeria,NE,68879 +Westerville,NE,68881 +Wolbach,NE,68882 +Wood River,NE,68883 +Hastings,NE,68901 +Alma,NE,68920 +Arapahoe,NE,68922 +Atlanta,NE,68923 +Axtell,NE,68924 +Ayr,NE,68925 +Beaver City,NE,68926 +Bertrand,NE,68927 +Bladen,NE,68928 +Bloomington,NE,68929 +Blue Hill,NE,68930 +Campbell,NE,68932 +Clay Center,NE,68933 +Deweese,NE,68934 +Edgar,NE,68935 +Edison,NE,68936 +Elwood,NE,68937 +Fairfield,NE,68938 +Franklin,NE,68939 +Funk,NE,68940 +Glenvil,NE,68941 +Guide Rock,NE,68942 +Hardy,NE,68943 +Harvard,NE,68944 +Heartwell,NE,68945 +Hendley,NE,68946 +Hildreth,NE,68947 +Holbrook,NE,68948 +Holdrege,NE,68949 +Holstein,NE,68950 +Huntley,NE,68951 +Inavale,NE,68952 +Inland,NE,68954 +Juniata,NE,68955 +Kenesaw,NE,68956 +Lawrence,NE,68957 +Loomis,NE,68958 +Minden,NE,68959 +Naponee,NE,68960 +Nora,NE,68961 +Oak,NE,68964 +Orleans,NE,68966 +Oxford,NE,68967 +Ragan,NE,68969 +Red Cloud,NE,68970 +Republican City,NE,68971 +Riverton,NE,68972 +Roseland,NE,68973 +Ruskin,NE,68974 +Saronville,NE,68975 +Smithfield,NE,68976 +Stamford,NE,68977 +Superior,NE,68978 +Sutton,NE,68979 +Trumbull,NE,68980 +Upland,NE,68981 +Wilcox,NE,68982 +Mc Cook,NE,69001 +Bartley,NE,69020 +Benkelman,NE,69021 +Cambridge,NE,69022 +Champion,NE,69023 +Culbertson,NE,69024 +Curtis,NE,69025 +Danbury,NE,69026 +Enders,NE,69027 +Eustis,NE,69028 +Farnam,NE,69029 +Haigler,NE,69030 +Hamlet,NE,69031 +Hayes Center,NE,69032 +Imperial,NE,69033 +Indianola,NE,69034 +Lamar,NE,69035 +Lebanon,NE,69036 +Max,NE,69037 +Maywood,NE,69038 +Moorefield,NE,69039 +Palisade,NE,69040 +Parks,NE,69041 +Stockville,NE,69042 +Stratton,NE,69043 +Trenton,NE,69044 +Wauneta,NE,69045 +Wilsonville,NE,69046 +North Platte,NE,69101 +Arnold,NE,69120 +Arthur,NE,69121 +Big Springs,NE,69122 +Brady,NE,69123 +Broadwater,NE,69125 +Brule,NE,69127 +Bushnell,NE,69128 +Chappell,NE,69129 +Cozad,NE,69130 +Dalton,NE,69131 +Dickens,NE,69132 +Dix,NE,69133 +Elsie,NE,69134 +Elsmere,NE,69135 +Gothenburg,NE,69138 +Grant,NE,69140 +Gurley,NE,69141 +Halsey,NE,69142 +Hershey,NE,69143 +Keystone,NE,69144 +Kimball,NE,69145 +Lemoyne,NE,69146 +Lewellen,NE,69147 +Lisco,NE,69148 +Lodgepole,NE,69149 +Madrid,NE,69150 +Maxwell,NE,69151 +Mullen,NE,69152 +Ogallala,NE,69153 +Oshkosh,NE,69154 +Paxton,NE,69155 +Potter,NE,69156 +Purdum,NE,69157 +Seneca,NE,69161 +Sidney,NE,69162 +Stapleton,NE,69163 +Sutherland,NE,69165 +Brownlee,NE,69166 +Tryon,NE,69167 +Venango,NE,69168 +Wallace,NE,69169 +Wellfleet,NE,69170 +Valentine,NE,69201 +Ainsworth,NE,69210 +Cody,NE,69211 +Crookston,NE,69212 +Johnstown,NE,69214 +Kilgore,NE,69216 +Long Pine,NE,69217 +Merriman,NE,69218 +Wood Lake,NE,69221 +Alliance,NE,69301 +Angora,NE,69331 +Ashby,NE,69333 +Bayard,NE,69334 +Bingham,NE,69335 +Bridgeport,NE,69336 +Chadron,NE,69337 +Crawford,NE,69339 +Ellsworth,NE,69340 +Gering,NE,69341 +Gordon,NE,69343 +Harrisburg,NE,69345 +Harrison,NE,69346 +Hay Springs,NE,69347 +Hemingford,NE,69348 +Henry,NE,69349 +Hyannis,NE,69350 +Lakeside,NE,69351 +Lyman,NE,69352 +Marsland,NE,69354 +Minatare,NE,69356 +Mitchell,NE,69357 +Morrill,NE,69358 +Rushville,NE,69360 +Scottsbluff,NE,69361 +Whitman,NE,69366 +Whitney,NE,69367 +Alamo,NV,89001 +Boulder City,NV,89005 +Caliente,NV,89008 +Goldfield,NV,89013 +Henderson,NV,89014 +Henderson,NV,89015 +Hiko,NV,89017 +Indian Springs,NV,89018 +Goodsprings,NV,89019 +Amargosa Valley,NV,89020 +Laughlin,NV,89029 +North Las Vegas,NV,89030 +North Las Vegas,NV,89031 +Overton,NV,89040 +Pahrump,NV,89041 +Pioche,NV,89043 +Round Mountain,NV,89045 +Cottonwood Cove,NV,89046 +Silverpeak,NV,89047 +Tonopah,NV,89049 +Las Vegas,NV,89101 +Las Vegas,NV,89102 +Las Vegas,NV,89103 +Las Vegas,NV,89104 +Las Vegas,NV,89106 +Las Vegas,NV,89107 +Las Vegas,NV,89108 +Las Vegas,NV,89109 +Las Vegas,NV,89110 +Las Vegas,NV,89113 +Las Vegas,NV,89115 +Las Vegas,NV,89117 +Las Vegas,NV,89118 +Las Vegas,NV,89119 +Las Vegas,NV,89120 +Las Vegas,NV,89121 +Las Vegas,NV,89122 +Las Vegas,NV,89123 +Las Vegas,NV,89124 +Las Vegas,NV,89128 +Las Vegas,NV,89129 +Las Vegas,NV,89130 +Las Vegas,NV,89131 +Las Vegas,NV,89134 +Ely,NV,89301 +Austin,NV,89310 +Baker,NV,89311 +Eureka,NV,89316 +Lund,NV,89317 +Dayton,NV,89403 +Denio,NV,89404 +Empire,NV,89405 +Fallon,NV,89406 +Fernley,NV,89408 +Gabbs,NV,89409 +Gardnerville,NV,89410 +Gerlach,NV,89412 +Glenbrook,NV,89413 +Golconda,NV,89414 +Hawthorne,NV,89415 +Unionville,NV,89418 +Lovelock,NV,89419 +Luning,NV,89420 +Minden,NV,89423 +Nixon,NV,89424 +Orovada,NV,89425 +Paradise Valley,NV,89426 +Schurz,NV,89427 +Silver Springs,NV,89429 +Smith,NV,89430 +Sparks,NV,89431 +Sun Valley,NV,89433 +Sparks,NV,89434 +Sparks,NV,89436 +Virginia City,NV,89440 +Wadsworth,NV,89442 +Wellington,NV,89444 +Winnemucca,NV,89445 +Yerington,NV,89447 +Incline Village,NV,89451 +Reno,NV,89501 +Reno,NV,89502 +Reno,NV,89503 +Reno,NV,89506 +Reno,NV,89509 +Reno,NV,89510 +Reno,NV,89511 +Reno,NV,89512 +Reno,NV,89523 +Carson City,NV,89701 +Carson City,NV,89703 +Carson City,NV,89704 +Carson City,NV,89705 +Moundhouse,NV,89706 +Jiggs,NV,89801 +Battle Mountain,NV,89820 +Beowawe,NV,89821 +Carlin,NV,89822 +Deeth,NV,89823 +Jackpot,NV,89825 +Mountain City,NV,89831 +Ruby Valley,NV,89833 +Tuscarora,NV,89834 +Oasis,NV,89835 +Amherst,NH,3031 +Auburn,NH,3032 +Brookline,NH,3033 +Candia,NH,3034 +Chester,NH,3036 +Deerfield,NH,3037 +Derry,NH,3038 +Epping,NH,3042 +Francestown,NH,3043 +Fremont,NH,3044 +Dunbarton,NH,3045 +Greenfield,NH,3047 +Mason,NH,3048 +Hollis,NH,3049 +Hudson,NH,3051 +Londonderry,NH,3053 +Merrimack,NH,3054 +Milford,NH,3055 +Mont Vernon,NH,3057 +Nashua,NH,3060 +Nashua,NH,3062 +Nashua,NH,3063 +New Boston,NH,3070 +New Ipswich,NH,3071 +Pelham,NH,3076 +Raymond,NH,3077 +Salem,NH,3079 +Lyndeborough,NH,3082 +Temple,NH,3084 +Wilton,NH,3086 +Windham,NH,3087 +Manchester,NH,3101 +Manchester,NH,3102 +Manchester,NH,3103 +Manchester,NH,3104 +Hooksett,NH,3106 +Manchester,NH,3109 +Bedford,NH,3110 +Andover,NH,3216 +Ashland,NH,3217 +Barnstead,NH,3218 +Belmont,NH,3220 +Bradford,NH,3221 +Bristol,NH,3222 +Beebe River,NH,3223 +Canterbury,NH,3224 +Center Barnstead,NH,3225 +Center Harbor,NH,3226 +Center Sandwich,NH,3227 +Hopkinton,NH,3229 +Danbury,NH,3230 +East Andover,NH,3231 +East Hebron,NH,3232 +Epsom,NH,3234 +Franklin,NH,3235 +Gilmanton,NH,3237 +Grafton,NH,3240 +Hebron,NH,3241 +Henniker,NH,3242 +Hill,NH,3243 +Hillsboro,NH,3244 +Gilford,NH,3246 +Lincoln,NH,3251 +Meredith,NH,3253 +Moultonborough,NH,3254 +New Hampton,NH,3256 +New London,NH,3257 +North Sandwich,NH,3259 +Northwood,NH,3261 +North Woodstock,NH,3262 +Pittsfield,NH,3263 +Plymouth,NH,3264 +Rumney,NH,3266 +Salisbury,NH,3268 +Sanbornton,NH,3269 +Allenstown,NH,3275 +Tilton,NH,3276 +Warner,NH,3278 +Warren,NH,3279 +Washington,NH,3280 +Weare,NH,3281 +Wentworth,NH,3282 +West Springfield,NH,3284 +Wilmot Flat,NH,3287 +Nottingham,NH,3290 +West Nottingham,NH,3291 +Concord,NH,3301 +Boscawen,NH,3303 +Bow,NH,3304 +Surry,NH,3431 +Antrim,NH,3440 +Ashuelot,NH,3441 +Bennington,NH,3442 +Chesterfield,NH,3443 +Dublin,NH,3444 +East Sullivan,NH,3445 +East Swanzey,NH,3446 +Fitzwilliam,NH,3447 +Gilsum,NH,3448 +Hancock,NH,3449 +Harrisville,NH,3450 +Hinsdale,NH,3451 +Jaffrey,NH,3452 +Marlborough,NH,3455 +Marlow,NH,3456 +Munsonville,NH,3457 +Peterborough,NH,3458 +Rindge,NH,3461 +Spofford,NH,3462 +Stoddard,NH,3464 +Troy,NH,3465 +West Chesterfiel,NH,3466 +Westmoreland,NH,3467 +West Swanzey,NH,3469 +Richmond,NH,3470 +Littleton,NH,3561 +Berlin,NH,3570 +Bethlehem,NH,3574 +Colebrook,NH,3576 +Errol,NH,3579 +Franconia,NH,3580 +Gorham,NH,3581 +Groveton,NH,3582 +Jefferson,NH,3583 +Lancaster,NH,3584 +Lisbon,NH,3585 +Milan,NH,3588 +North Stratford,NH,3590 +Pittsburg,NH,3592 +Whitefield,NH,3598 +Alstead,NH,3602 +Charlestown,NH,3603 +East Lempster,NH,3605 +South Acworth,NH,3607 +Walpole,NH,3608 +North Walpole,NH,3609 +Bath,NH,3740 +Canaan,NH,3741 +Claremont,NH,3743 +Cornish,NH,3745 +Enfield,NH,3748 +Etna,NH,3750 +Goshen,NH,3752 +Grantham,NH,3753 +Hanover,NH,3755 +Haverhill,NH,3765 +Lebanon,NH,3766 +Lyme,NH,3768 +Meriden,NH,3770 +Monroe,NH,3771 +Newport,NH,3773 +North Haverhill,NH,3774 +Orford,NH,3777 +Piermont,NH,3779 +Pike,NH,3780 +Plainfield,NH,3781 +Sunapee,NH,3782 +West Lebanon,NH,3784 +Woodsville,NH,3785 +Newington,NH,3801 +Alton,NH,3809 +Alton Bay,NH,3810 +Atkinson,NH,3811 +Bartlett,NH,3812 +Center Conway,NH,3813 +Center Ossipee,NH,3814 +Center Strafford,NH,3815 +Center Tuftonbor,NH,3816 +Chocorua,NH,3817 +Conway,NH,3818 +Danville,NH,3819 +Madbury,NH,3820 +Lee,NH,3824 +Barrington,NH,3825 +East Hampstead,NH,3826 +South Hampton,NH,3827 +East Wakefield,NH,3830 +Brentwood,NH,3833 +Farmington,NH,3835 +Freedom,NH,3836 +Gilmanton Iron W,NH,3837 +Glen,NH,3838 +Gonic,NH,3839 +Greenland,NH,3840 +Hampstead,NH,3841 +Hampton,NH,3842 +Hampton Falls,NH,3844 +Intervale,NH,3845 +Jackson,NH,3846 +Kingston,NH,3848 +Madison,NH,3849 +Milton Mills,NH,3852 +Mirror Lake,NH,3853 +New Castle,NH,3854 +New Durham,NH,3855 +Newmarket,NH,3857 +Newton,NH,3858 +North Conway,NH,3860 +North Hampton,NH,3862 +Ossipee,NH,3864 +Plaistow,NH,3865 +Rochester,NH,3867 +East Rochester,NH,3868 +Rollinsford,NH,3869 +Rye,NH,3870 +Sanbornville,NH,3872 +Sandown,NH,3873 +Seabrook,NH,3874 +Silver Lake,NH,3875 +Somersworth,NH,3878 +South Effingham,NH,3882 +South Tamworth,NH,3883 +Strafford,NH,3884 +Stratham,NH,3885 +Tamworth,NH,3886 +Union,NH,3887 +West Ossipee,NH,3890 +Wolfeboro,NH,3894 +Avenel,NJ,7001 +Bayonne,NJ,7002 +Bloomfield,NJ,7003 +Fairfield,NJ,7004 +Boonton,NJ,7005 +West Caldwell,NJ,7006 +Carteret,NJ,7008 +Cedar Grove,NJ,7009 +Cliffside Park,NJ,7010 +Clifton,NJ,7011 +Clifton,NJ,7012 +Clifton,NJ,7013 +Clifton,NJ,7014 +Cranford,NJ,7016 +East Orange,NJ,7017 +East Orange,NJ,7018 +Edgewater,NJ,7020 +Essex Fells,NJ,7021 +Fairview,NJ,7022 +Fanwood,NJ,7023 +Fort Lee,NJ,7024 +Garfield,NJ,7026 +Garwood,NJ,7027 +Glen Ridge,NJ,7028 +Kearny,NJ,7029 +Hoboken,NJ,7030 +North Arlington,NJ,7031 +Kearny,NJ,7032 +Kenilworth,NJ,7033 +Lake Hiawatha,NJ,7034 +Lincoln Park,NJ,7035 +Linden,NJ,7036 +Livingston,NJ,7039 +Maplewood,NJ,7040 +Millburn,NJ,7041 +Montclair,NJ,7042 +Montclair,NJ,7043 +Verona,NJ,7044 +Montville,NJ,7045 +Mountain Lakes,NJ,7046 +North Bergen,NJ,7047 +Orange,NJ,7050 +West Orange,NJ,7052 +Parsippany,NJ,7054 +Passaic,NJ,7055 +Wallington,NJ,7057 +Pine Brook,NJ,7058 +Warren,NJ,7059 +North Plainfield,NJ,7060 +North Plainfield,NJ,7062 +North Plainfield,NJ,7063 +Port Reading,NJ,7064 +Rahway,NJ,7065 +Clark,NJ,7066 +Colonia,NJ,7067 +Roseland,NJ,7068 +Rutherford,NJ,7070 +Lyndhurst,NJ,7071 +Carlstadt,NJ,7072 +East Rutherford,NJ,7073 +Moonachie,NJ,7074 +Wood Ridge,NJ,7075 +Scotch Plains,NJ,7076 +Sewaren,NJ,7077 +Short Hills,NJ,7078 +South Orange,NJ,7079 +South Plainfield,NJ,7080 +Springfield,NJ,7081 +Towaco,NJ,7082 +Union,NJ,7083 +Weehawken,NJ,7087 +Vauxhall,NJ,7088 +Westfield,NJ,7090 +Mountainside,NJ,7092 +Guttenberg,NJ,7093 +Secaucus,NJ,7094 +Woodbridge,NJ,7095 +Newark,NJ,7102 +Newark,NJ,7103 +Newark,NJ,7104 +Newark,NJ,7105 +Newark,NJ,7106 +Newark,NJ,7107 +Newark,NJ,7108 +Belleville,NJ,7109 +Nutley,NJ,7110 +Irvington,NJ,7111 +Newark,NJ,7112 +Newark,NJ,7114 +Elizabeth,NJ,7201 +Elizabeth,NJ,7202 +Roselle,NJ,7203 +Roselle Park,NJ,7204 +Hillside,NJ,7205 +Elizabeth,NJ,7206 +Elizabeth,NJ,7208 +Jersey City,NJ,7302 +Jersey City,NJ,7304 +Jersey City,NJ,7305 +Jersey City,NJ,7306 +Jersey City,NJ,7307 +Jersey City,NJ,7310 +Allendale,NJ,7401 +Bloomingdale,NJ,7403 +Kinnelon,NJ,7405 +Elmwood Park,NJ,7407 +Fair Lawn,NJ,7410 +Franklin,NJ,7416 +Franklin Lakes,NJ,7417 +Glenwood,NJ,7418 +Hamburg,NJ,7419 +Haskell,NJ,7420 +Hewitt,NJ,7421 +Highland Lakes,NJ,7422 +Ho Ho Kus,NJ,7423 +West Paterson,NJ,7424 +Mahwah,NJ,7430 +Midland Park,NJ,7432 +Newfoundland,NJ,7435 +Oakland,NJ,7436 +Milton,NJ,7438 +Ogdensburg,NJ,7439 +Pequannock,NJ,7440 +Pompton Lakes,NJ,7442 +Pompton Plains,NJ,7444 +Ramsey,NJ,7446 +Ridgewood,NJ,7450 +Glen Rock,NJ,7452 +Ringwood,NJ,7456 +Riverdale,NJ,7457 +Upper Saddle Riv,NJ,7458 +Stockholm,NJ,7460 +Sussex,NJ,7461 +Vernon,NJ,7462 +Waldwick,NJ,7463 +Wanaque,NJ,7465 +Wayne,NJ,7470 +West Milford,NJ,7480 +Wyckoff,NJ,7481 +Paterson,NJ,7501 +Paterson,NJ,7502 +Paterson,NJ,7503 +Paterson,NJ,7504 +Paterson,NJ,7505 +Hawthorne,NJ,7506 +Haledon,NJ,7508 +Totowa,NJ,7512 +Paterson,NJ,7513 +Paterson,NJ,7514 +Paterson,NJ,7522 +Paterson,NJ,7524 +Hackensack,NJ,7601 +Bogota,NJ,7603 +Hasbrouck Height,NJ,7604 +Leonia,NJ,7605 +South Hackensack,NJ,7606 +Maywood,NJ,7607 +Teterboro,NJ,7608 +Alpine,NJ,7620 +Bergenfield,NJ,7621 +Closter,NJ,7624 +Cresskill,NJ,7626 +Demarest,NJ,7627 +Dumont,NJ,7628 +Emerson,NJ,7630 +Englewood,NJ,7631 +Englewood Cliffs,NJ,7632 +Harrington Park,NJ,7640 +Haworth,NJ,7641 +Hillsdale,NJ,7642 +Little Ferry,NJ,7643 +Lodi,NJ,7644 +Montvale,NJ,7645 +New Milford,NJ,7646 +Rockleigh,NJ,7647 +Norwood,NJ,7648 +Oradell,NJ,7649 +Palisades Park,NJ,7650 +Paramus,NJ,7652 +Park Ridge,NJ,7656 +Ridgefield,NJ,7657 +Ridgefield Park,NJ,7660 +River Edge,NJ,7661 +Saddle Brook,NJ,7662 +Teaneck,NJ,7666 +Tenafly,NJ,7670 +Old Tappan,NJ,7675 +Suburban,NJ,7701 +Shrewsbury,NJ,7702 +Fort Monmouth,NJ,7703 +Fair Haven,NJ,7704 +Allenhurst,NJ,7711 +Ocean,NJ,7712 +Atlantic Highlan,NJ,7716 +Avon By The Sea,NJ,7717 +Belford,NJ,7718 +Wall,NJ,7719 +Bradley Beach,NJ,7720 +Cliffwood,NJ,7721 +Colts Neck,NJ,7722 +Deal,NJ,7723 +Eatontown,NJ,7724 +Manalapan,NJ,7726 +Farmingdale,NJ,7727 +Freehold,NJ,7728 +Hazlet,NJ,7730 +Howell,NJ,7731 +Fort Hancock,NJ,7732 +Holmdel,NJ,7733 +Keansburg,NJ,7734 +Keyport,NJ,7735 +Leonardo,NJ,7737 +Lincroft,NJ,7738 +Little Silver,NJ,7739 +Long Branch,NJ,7740 +Marlboro,NJ,7746 +Matawan,NJ,7747 +New Monmouth,NJ,7748 +Monmouth Beach,NJ,7750 +Morganville,NJ,7751 +Neptune City,NJ,7753 +Oakhurst,NJ,7755 +Ocean Grove,NJ,7756 +Oceanport,NJ,7757 +Port Monmouth,NJ,7758 +Sea Bright,NJ,7760 +Spring Lake,NJ,7762 +West Long Branch,NJ,7764 +Mine Hill,NJ,7801 +Andover,NJ,7821 +Augusta,NJ,7822 +Belvidere,NJ,7823 +Blairstown,NJ,7825 +Branchville,NJ,7826 +Montague,NJ,7827 +Budd Lake,NJ,7828 +Califon,NJ,7830 +Columbia,NJ,7832 +Denville,NJ,7834 +Flanders,NJ,7836 +Great Meadows,NJ,7838 +Hackettstown,NJ,7840 +Hopatcong,NJ,7843 +Kenvil,NJ,7847 +Lafayette,NJ,7848 +Lake Hopatcong,NJ,7849 +Landing,NJ,7850 +Layton,NJ,7851 +Ledgewood,NJ,7852 +Long Valley,NJ,7853 +Mount Arlington,NJ,7856 +Netcong,NJ,7857 +Fredon Township,NJ,7860 +Oxford,NJ,7863 +Port Murray,NJ,7865 +Rockaway,NJ,7866 +Randolph,NJ,7869 +Sparta,NJ,7871 +Stanhope,NJ,7874 +Succasunna,NJ,7876 +Wallpack Center,NJ,7881 +Washington,NJ,7882 +Wharton,NJ,7885 +Summit,NJ,7901 +Basking Ridge,NJ,7920 +Bedminster,NJ,7921 +Berkeley Heights,NJ,7922 +Bernardsville,NJ,7924 +Cedar Knolls,NJ,7927 +Chatham,NJ,7928 +Chester,NJ,7930 +Far Hills,NJ,7931 +Florham Park,NJ,7932 +Gillette,NJ,7933 +Gladstone,NJ,7934 +Green Village,NJ,7935 +East Hanover,NJ,7936 +Madison,NJ,7940 +Mendham,NJ,7945 +Millington,NJ,7946 +Greystone Park,NJ,7950 +Morristown,NJ,7960 +New Providence,NJ,7974 +New Vernon,NJ,7976 +Stirling,NJ,7980 +Whippany,NJ,7981 +Cherry Hill,NJ,8002 +Cherry Hill,NJ,8003 +Winslow,NJ,8004 +Barnegat,NJ,8005 +Barrington,NJ,8007 +Harvey Cedars,NJ,8008 +Berlin,NJ,8009 +Beverly,NJ,8010 +Washington,NJ,8012 +Bridgeport,NJ,8014 +Browns Mills,NJ,8015 +Burlington,NJ,8016 +Chatsworth,NJ,8019 +Clarksboro,NJ,8020 +Laurel Springs,NJ,8021 +Columbus,NJ,8022 +Gibbsboro,NJ,8026 +Gibbstown,NJ,8027 +Glassboro,NJ,8028 +Glendora,NJ,8029 +Gloucester City,NJ,8030 +Bellmawr,NJ,8031 +Haddonfield,NJ,8033 +Cherry Hill,NJ,8034 +Haddon Heights,NJ,8035 +Batsto,NJ,8037 +Jobstown,NJ,8041 +Voorhees,NJ,8043 +Lawnside,NJ,8045 +Willingboro,NJ,8046 +Lumberton,NJ,8048 +Magnolia,NJ,8049 +Manahawkin,NJ,8050 +Mantua,NJ,8051 +Maple Shade,NJ,8052 +Marlton,NJ,8053 +Mount Laurel,NJ,8054 +Medford Lakes,NJ,8055 +Mickleton,NJ,8056 +Moorestown,NJ,8057 +Mount Ephraim,NJ,8059 +Eastampton Twp,NJ,8060 +Mount Royal,NJ,8061 +Mullica Hill,NJ,8062 +National Park,NJ,8063 +Palmyra,NJ,8065 +Paulsboro,NJ,8066 +Pedricktown,NJ,8067 +Pemberton,NJ,8068 +Carneys Point,NJ,8069 +Pennsville,NJ,8070 +Pitman,NJ,8071 +Delanco,NJ,8075 +Cinnaminson,NJ,8077 +Runnemede,NJ,8078 +Salem,NJ,8079 +Sewell,NJ,8080 +Sicklerville,NJ,8081 +Somerdale,NJ,8083 +Stratford,NJ,8084 +Swedesboro,NJ,8085 +Thorofare,NJ,8086 +Tuckerton,NJ,8087 +Southampton,NJ,8088 +Waterford Works,NJ,8089 +Wenonah,NJ,8090 +West Berlin,NJ,8091 +West Creek,NJ,8092 +Westville,NJ,8093 +Williamstown,NJ,8094 +Deptford,NJ,8096 +Woodbury Heights,NJ,8097 +Woodstown,NJ,8098 +Camden,NJ,8102 +Camden,NJ,8103 +Camden,NJ,8104 +Camden,NJ,8105 +Audubon,NJ,8106 +Oaklyn,NJ,8107 +Collingswood,NJ,8108 +Merchantville,NJ,8109 +Delair,NJ,8110 +Smithville,NJ,8201 +Avalon,NJ,8202 +Brigantine,NJ,8203 +North Cape May,NJ,8204 +Cape May Court H,NJ,8210 +Egg Harbor City,NJ,8215 +Linwood,NJ,8221 +Marmora,NJ,8223 +Northfield,NJ,8225 +Ocean City,NJ,8226 +Ocean View,NJ,8230 +Pleasantville,NJ,8232 +Port Republic,NJ,8241 +Rio Grande,NJ,8242 +Townsends Inlet,NJ,8243 +Somers Point,NJ,8244 +Stone Harbor,NJ,8247 +Strathmere,NJ,8248 +Villas,NJ,8251 +North Wildwood,NJ,8260 +Corbin City,NJ,8270 +Seabrook,NJ,8302 +Buena,NJ,8310 +Cedarville,NJ,8311 +Clayton,NJ,8312 +Delmont,NJ,8314 +Dorothy,NJ,8317 +Elmer,NJ,8318 +Estell Manor,NJ,8319 +Franklinville,NJ,8322 +Heislerville,NJ,8324 +Landisville,NJ,8326 +Leesburg,NJ,8327 +Malaga,NJ,8328 +Mays Landing,NJ,8330 +Millville,NJ,8332 +Milmay,NJ,8340 +Minotola,NJ,8341 +Monroeville,NJ,8343 +Newfield,NJ,8344 +Newport,NJ,8345 +Newtonville,NJ,8346 +Port Norris,NJ,8349 +Richland,NJ,8350 +Vineland,NJ,8360 +Atlantic City,NJ,8401 +Margate City,NJ,8402 +Longport,NJ,8403 +Ventnor City,NJ,8406 +Allentown,NJ,8501 +Belle Mead,NJ,8502 +Bordentown,NJ,8505 +Clarksburg,NJ,8510 +Cookstown,NJ,8511 +Cranbury,NJ,8512 +Creamridge,NJ,8514 +Crosswicks,NJ,8515 +Florence,NJ,8518 +Hightstown,NJ,8520 +Hopewell,NJ,8525 +Imlaystown,NJ,8526 +Jackson,NJ,8527 +Kingston,NJ,8528 +Lambertville,NJ,8530 +New Egypt,NJ,8533 +Pennington,NJ,8534 +Perrineville,NJ,8535 +Plainsboro,NJ,8536 +Princeton,NJ,8540 +Princeton,NJ,8542 +Princeton Univer,NJ,8544 +Princeton Juncti,NJ,8550 +Ringoes,NJ,8551 +Rocky Hill,NJ,8553 +Roebling,NJ,8554 +Rosemont,NJ,8556 +Skillman,NJ,8558 +Stockton,NJ,8559 +Titusville,NJ,8560 +Wrightstown,NJ,8562 +Trenton,NJ,8608 +Hamilton,NJ,8609 +Hamilton,NJ,8610 +Hamilton,NJ,8611 +Trenton,NJ,8618 +Mercerville,NJ,8619 +Yardville,NJ,8620 +West Trenton,NJ,8628 +Hamilton,NJ,8629 +Trenton,NJ,8638 +Fort Dix,NJ,8640 +Mc Guire Afb,NJ,8641 +Lawrenceville,NJ,8648 +Hamilton,NJ,8690 +Hamilton,NJ,8691 +Lakewood,NJ,8701 +Bayville,NJ,8721 +Beachwood,NJ,8722 +Osbornsville,NJ,8723 +Brick,NJ,8724 +Brielle,NJ,8730 +Forked River,NJ,8731 +Island Heights,NJ,8732 +Lakehurst Naec,NJ,8733 +Lanoka Harbor,NJ,8734 +Lavallette,NJ,8735 +Manasquan,NJ,8736 +Mantoloking,NJ,8738 +Ocean Gate,NJ,8740 +Pine Beach,NJ,8741 +Bay Head,NJ,8742 +Sea Girt,NJ,8750 +Seaside Heights,NJ,8751 +Seaside Park,NJ,8752 +Toms River,NJ,8753 +Toms River,NJ,8755 +Toms River,NJ,8757 +Waretown,NJ,8758 +Whiting,NJ,8759 +Annandale,NJ,8801 +Pattenburg,NJ,8802 +Bloomsbury,NJ,8804 +Bound Brook,NJ,8805 +Bridgewater,NJ,8807 +Clinton,NJ,8809 +Dayton,NJ,8810 +Green Brook,NJ,8812 +East Brunswick,NJ,8816 +Edison,NJ,8817 +Edison,NJ,8820 +Flemington,NJ,8822 +Franklin Park,NJ,8823 +Kendall Park,NJ,8824 +Frenchtown,NJ,8825 +Glen Gardner,NJ,8826 +Hampton,NJ,8827 +Helmetta,NJ,8828 +High Bridge,NJ,8829 +Iselin,NJ,8830 +Jamesburg,NJ,8831 +Keasbey,NJ,8832 +Lebanon,NJ,8833 +Manville,NJ,8835 +Martinsville,NJ,8836 +Edison,NJ,8837 +Metuchen,NJ,8840 +Middlesex,NJ,8846 +Milford,NJ,8848 +Milltown,NJ,8850 +Monmouth Junctio,NJ,8852 +Neshanic Station,NJ,8853 +Piscataway,NJ,8854 +Old Bridge,NJ,8857 +Parlin,NJ,8859 +Perth Amboy,NJ,8861 +Fords,NJ,8863 +Alpha,NJ,8865 +Pittstown,NJ,8867 +Raritan,NJ,8869 +Sayreville,NJ,8872 +Somerset,NJ,8873 +North Branch,NJ,8876 +Laurence Harbor,NJ,8879 +South Bound Broo,NJ,8880 +South River,NJ,8882 +Spotswood,NJ,8884 +Stewartsville,NJ,8886 +Three Bridges,NJ,8887 +Whitehouse Stati,NJ,8889 +New Brunswick,NJ,8901 +North Brunswick,NJ,8902 +Highland Park,NJ,8904 +Algodones,NM,87001 +Boys Ranch,NM,87002 +Bernalillo,NM,87004 +Bluewater,NM,87005 +Bosque,NM,87006 +Casa Blanca,NM,87007 +Cedar Crest,NM,87008 +Cedarvale,NM,87009 +Cerrillos,NM,87010 +Cuba,NM,87013 +Cubero,NM,87014 +Edgewood,NM,87015 +Estancia,NM,87016 +Gallina,NM,87017 +Counselor,NM,87018 +Grants,NM,87020 +Jarales,NM,87023 +Jemez Pueblo,NM,87024 +Jemez Springs,NM,87025 +Canoncito,NM,87026 +La Jara,NM,87027 +Lajoya,NM,87028 +Lindrith,NM,87029 +Los Lunas,NM,87031 +Moriarty,NM,87035 +Mountainair,NM,87036 +Cochiti Pueblo,NM,87041 +Peralta,NM,87042 +Placitas,NM,87043 +Ponderosa,NM,87044 +Prewitt,NM,87045 +Regina,NM,87046 +Sandia Park,NM,87047 +Corrales,NM,87048 +San Mateo,NM,87050 +Santo Domingo Pu,NM,87052 +Zia Pueblo,NM,87053 +Seboyeta,NM,87055 +Stanley,NM,87056 +Tijeras,NM,87059 +Veguita,NM,87062 +Willard,NM,87063 +Bosque Farms,NM,87068 +Albuquerque,NM,87102 +Albuquerque,NM,87104 +Albuquerque,NM,87105 +Albuquerque,NM,87106 +Albuquerque,NM,87107 +Albuquerque,NM,87108 +Albuquerque,NM,87109 +Albuquerque,NM,87110 +Albuquerque,NM,87111 +Albuquerque,NM,87112 +Albuquerque,NM,87113 +Alameda,NM,87114 +Kirtland A F B E,NM,87115 +Albuquerque,NM,87116 +Albuquerque,NM,87118 +Albuquerque,NM,87120 +Albuquerque,NM,87121 +Albuquerque,NM,87122 +Albuquerque,NM,87123 +Rio Rancho,NM,87124 +Gallup,NM,87301 +Brimhall,NM,87310 +Continental Divi,NM,87312 +Crownpoint,NM,87313 +Fence Lake,NM,87315 +Mexican Springs,NM,87320 +Ramah,NM,87321 +Thoreau,NM,87323 +Toadlena,NM,87324 +Tohatchi,NM,87325 +Zuni,NM,87327 +Navajo,NM,87328 +Farmington,NM,87401 +Farmington,NM,87402 +Aztec,NM,87410 +Blanco,NM,87412 +Bloomfield,NM,87413 +Flora Vista,NM,87415 +Fruitland,NM,87416 +Kirtland,NM,87417 +La Plata,NM,87418 +Navajo Dam,NM,87419 +Shiprock,NM,87420 +Waterflow,NM,87421 +Pojoaque Valley,NM,87501 +Santa Fe,NM,87505 +Abiquiu,NM,87510 +Arroyo Hondo,NM,87513 +Arroyo Seco,NM,87514 +Chama,NM,87520 +Chamisal,NM,87521 +Cundiyo,NM,87522 +Costilla,NM,87524 +Dixon,NM,87527 +Dulce,NM,87528 +El Rito,NM,87530 +Embudo,NM,87531 +Espanola,NM,87532 +Glorieta,NM,87535 +Hernandez,NM,87537 +La Madera,NM,87539 +Lamy,NM,87540 +Los Alamos,NM,87544 +Ojo Caliente,NM,87549 +Pecos,NM,87552 +Penasco,NM,87553 +Questa,NM,87556 +Ranchos De Taos,NM,87557 +Ribera,NM,87560 +Rutheron,NM,87563 +San Cristobal,NM,87564 +San Jose,NM,87565 +San Juan Pueblo,NM,87566 +Santa Cruz,NM,87567 +Taos,NM,87571 +Tererro,NM,87573 +Tierra Amarilla,NM,87575 +Vadito,NM,87579 +Valdez,NM,87580 +Vallecitos,NM,87581 +Las Vegas,NM,87701 +Anton Chico,NM,87711 +Chacon,NM,87713 +Cimarron,NM,87714 +Cleveland,NM,87715 +Eagle Nest,NM,87718 +Guadalupita,NM,87722 +La Loma,NM,87724 +Ledoux,NM,87725 +Maxwell,NM,87728 +Miami,NM,87729 +Mills,NM,87730 +Montezuma,NM,87731 +Mora,NM,87732 +Albert,NM,87733 +Ocate,NM,87734 +Raton,NM,87740 +Rociada,NM,87742 +Roy,NM,87743 +Sapello,NM,87745 +Solano,NM,87746 +Springer,NM,87747 +Valmora,NM,87750 +Wagon Mound,NM,87752 +Socorro,NM,87801 +Bingham,NM,87815 +Aragon,NM,87820 +Datil,NM,87821 +Lemitar,NM,87823 +Alamo,NM,87825 +Pie Town,NM,87827 +Polvadera,NM,87828 +Quemado,NM,87829 +Reserve,NM,87830 +San Acacia,NM,87831 +Truth Or Consequ,NM,87901 +Arrey,NM,87930 +Caballo,NM,87931 +Cuchillo,NM,87932 +Derry,NM,87933 +Garfield,NM,87936 +Hatch,NM,87937 +Rincon,NM,87940 +Salem,NM,87941 +Williamsburg,NM,87942 +Winston,NM,87943 +Las Cruces,NM,88001 +White Sands Miss,NM,88002 +Las Cruces,NM,88005 +Animas,NM,88020 +Chaparral,NM,88021 +Vanadium,NM,88023 +Buckhorn,NM,88025 +Central,NM,88026 +Deming,NM,88030 +Glenwood,NM,88039 +San Lorenzo,NM,88041 +Hillsboro,NM,88042 +Hurley,NM,88043 +La Mesa,NM,88044 +Road Forks,NM,88045 +Mesilla Park,NM,88047 +Mesquite,NM,88048 +Mimbres,NM,88049 +Silver City,NM,88061 +Clovis,NM,88101 +Broadview,NM,88112 +Causey,NM,88113 +Crossroads,NM,88114 +Elida,NM,88116 +Floyd,NM,88118 +Fort Sumner,NM,88119 +Grady,NM,88120 +House,NM,88121 +Lingo,NM,88123 +Melrose,NM,88124 +Milnesand,NM,88125 +Pep,NM,88126 +Portales,NM,88130 +Rogers,NM,88132 +Saint Vrain,NM,88133 +Taiban,NM,88134 +Texico,NM,88135 +Yeso,NM,88136 +Roswell,NM,88201 +Artesia,NM,88210 +Caprock,NM,88213 +Carlsbad,NM,88220 +Dexter,NM,88230 +Eunice,NM,88231 +Hagerman,NM,88232 +Hobbs,NM,88240 +Hope,NM,88250 +Jal,NM,88252 +Lake Arthur,NM,88253 +Loving,NM,88256 +Lovington,NM,88260 +Maljamar,NM,88264 +Monument,NM,88265 +Oil Center,NM,88266 +Tatum,NM,88267 +Carrizozo,NM,88301 +Alamogordo,NM,88310 +Bent,NM,88314 +Capitan,NM,88316 +Cloudcroft,NM,88317 +Corona,NM,88318 +Encino,NM,88321 +Glencoe,NM,88324 +Holloman Air For,NM,88330 +Hondo,NM,88336 +La Luz,NM,88337 +Lincoln,NM,88338 +Mayhill,NM,88339 +Mescalero,NM,88340 +Nogal,NM,88341 +Picacho,NM,88343 +Pinon,NM,88344 +Ruidoso,NM,88345 +Ruidoso Downs,NM,88346 +Sacramento,NM,88347 +San Patricio,NM,88348 +Tinnie,NM,88351 +Tularosa,NM,88352 +Vaughn,NM,88353 +Weed,NM,88354 +Tucumcari,NM,88401 +Amistad,NM,88410 +Bard,NM,88411 +Bueyeros,NM,88412 +Capulin,NM,88414 +Clayton,NM,88415 +Conchas Dam,NM,88416 +Cuervo,NM,88417 +Des Moines,NM,88418 +Folsom,NM,88419 +Garita,NM,88421 +Gladstone,NM,88422 +Grenville,NM,88424 +Logan,NM,88426 +Mc Alister,NM,88427 +Mount Dora,NM,88429 +Nara Visa,NM,88430 +Newkirk,NM,88431 +Puerto De Luna,NM,88432 +Quay,NM,88433 +San Jon,NM,88434 +Pastura,NM,88435 +Sedan,NM,88436 +Seneca,NM,88437 +Stead,NM,88438 +Trementina,NM,88439 +Bell Ranch,NM,88441 +Fishers Island,NY,6390 +New York,NY,10001 +New York,NY,10002 +New York,NY,10003 +Governors Island,NY,10004 +New York,NY,10005 +New York,NY,10006 +New York,NY,10007 +New York,NY,10009 +New York,NY,10010 +New York,NY,10011 +New York,NY,10012 +New York,NY,10013 +New York,NY,10014 +New York,NY,10016 +New York,NY,10017 +New York,NY,10018 +New York,NY,10019 +New York,NY,10020 +New York,NY,10021 +New York,NY,10022 +New York,NY,10023 +New York,NY,10024 +New York,NY,10025 +New York,NY,10026 +New York,NY,10027 +New York,NY,10028 +New York,NY,10029 +New York,NY,10030 +New York,NY,10031 +New York,NY,10032 +New York,NY,10033 +New York,NY,10034 +New York,NY,10035 +New York,NY,10036 +New York,NY,10037 +New York,NY,10038 +New York,NY,10039 +New York,NY,10040 +New York,NY,10044 +New York,NY,10128 +New York,NY,10280 +Staten Island,NY,10301 +Staten Island,NY,10302 +Staten Island,NY,10303 +Staten Island,NY,10304 +Staten Island,NY,10305 +Staten Island,NY,10306 +Staten Island,NY,10307 +Staten Island,NY,10308 +Staten Island,NY,10309 +Staten Island,NY,10310 +Staten Island,NY,10312 +Staten Island,NY,10314 +Bronx,NY,10451 +Bronx,NY,10452 +Bronx,NY,10453 +Bronx,NY,10454 +Bronx,NY,10455 +Bronx,NY,10456 +Bronx,NY,10457 +Bronx,NY,10458 +Bronx,NY,10459 +Bronx,NY,10460 +Bronx,NY,10461 +Bronx,NY,10462 +Bronx,NY,10463 +Bronx,NY,10464 +Bronx,NY,10465 +Bronx,NY,10466 +Bronx,NY,10467 +Bronx,NY,10468 +Bronx,NY,10469 +Bronx,NY,10470 +Bronx,NY,10471 +Bronx,NY,10472 +Bronx,NY,10473 +Bronx,NY,10474 +Bronx,NY,10475 +Amawalk,NY,10501 +Ardsley,NY,10502 +Armonk,NY,10504 +Bedford,NY,10506 +Bedford Hills,NY,10507 +Brewster,NY,10509 +Briarcliff Manor,NY,10510 +Buchanan,NY,10511 +Carmel,NY,10512 +Chappaqua,NY,10514 +Cold Spring,NY,10516 +Cross River,NY,10518 +Croton On Hudson,NY,10520 +Dobbs Ferry,NY,10522 +Elmsford,NY,10523 +Garrison,NY,10524 +Granite Springs,NY,10527 +Harrison,NY,10528 +Hartsdale,NY,10530 +Hawthorne,NY,10532 +Irvington,NY,10533 +Jefferson Valley,NY,10535 +Katonah,NY,10536 +Lake Peekskill,NY,10537 +Larchmont,NY,10538 +Mahopac,NY,10541 +Mamaroneck,NY,10543 +Millwood,NY,10546 +Mohegan Lake,NY,10547 +Montrose,NY,10548 +Mount Kisco,NY,10549 +Mount Vernon,NY,10550 +Mount Vernon,NY,10552 +Mount Vernon,NY,10553 +North Salem,NY,10560 +Ossining,NY,10562 +Cortlandt Manor,NY,10566 +Pleasantville,NY,10570 +Rye Brook,NY,10573 +Pound Ridge,NY,10576 +Purchase,NY,10577 +Purdys,NY,10578 +Putnam Valley,NY,10579 +Rye,NY,10580 +Heathcote,NY,10583 +Shrub Oak,NY,10588 +Somers,NY,10589 +South Salem,NY,10590 +North Tarrytown,NY,10591 +Thornwood,NY,10594 +Valhalla,NY,10595 +Waccabuc,NY,10597 +Yorktown Heights,NY,10598 +White Plains,NY,10601 +White Plains,NY,10603 +East White Plain,NY,10604 +White Plains,NY,10605 +White Plains,NY,10606 +White Plains,NY,10607 +Yonkers,NY,10701 +Yonkers,NY,10703 +Yonkers,NY,10704 +Yonkers,NY,10705 +Hastings On Huds,NY,10706 +Tuckahoe,NY,10707 +Bronxville,NY,10708 +Eastchester,NY,10709 +Yonkers,NY,10710 +New Rochelle,NY,10801 +Pelham,NY,10803 +New Rochelle,NY,10804 +New Rochelle,NY,10805 +Suffern,NY,10901 +Bear Mountain,NY,10911 +Blauvelt,NY,10913 +Campbell Hall,NY,10916 +Central Valley,NY,10917 +Chester,NY,10918 +Circleville,NY,10919 +Congers,NY,10920 +Florida,NY,10921 +Garnerville,NY,10923 +Goshen,NY,10924 +Greenwood Lake,NY,10925 +Harriman,NY,10926 +Haverstraw,NY,10927 +Highland Falls,NY,10928 +Highland Mills,NY,10930 +Hillburn,NY,10931 +Scotchtown,NY,10940 +Monroe,NY,10950 +Monsey,NY,10952 +Bardonia,NY,10954 +New City,NY,10956 +New Hampton,NY,10958 +Nyack,NY,10960 +Orangeburg,NY,10962 +Otisville,NY,10963 +Palisades,NY,10964 +Pearl River,NY,10965 +Piermont,NY,10968 +Pine Island,NY,10969 +Pomona,NY,10970 +Slate Hill,NY,10973 +Sterlington,NY,10974 +Southfields,NY,10975 +Sparkill,NY,10976 +Chestnut Ridge,NY,10977 +Stony Point,NY,10980 +Tappan,NY,10983 +Thiells,NY,10984 +Thompson Ridge,NY,10985 +Tomkins Cove,NY,10986 +Tuxedo Park,NY,10987 +Valley Cottage,NY,10989 +Warwick,NY,10990 +Washingtonville,NY,10992 +West Haverstraw,NY,10993 +West Nyack,NY,10994 +West Point,NY,10996 +Westtown,NY,10998 +Floral Park,NY,11001 +Alden Manor,NY,11003 +Glen Oaks,NY,11004 +Franklin Square,NY,11010 +Great Neck,NY,11020 +Great Neck,NY,11021 +Great Neck,NY,11023 +Kings Point Cont,NY,11024 +Plandome,NY,11030 +Hillside Manor,NY,11040 +New Hyde Park,NY,11042 +Port Washington,NY,11050 +Astoria,NY,11101 +Astoria,NY,11102 +Astoria,NY,11103 +Sunnyside,NY,11104 +Astoria,NY,11105 +Astoria,NY,11106 +Brooklyn,NY,11201 +Brooklyn,NY,11203 +Brooklyn,NY,11204 +Brooklyn,NY,11205 +Brooklyn,NY,11206 +Brooklyn,NY,11207 +Brooklyn,NY,11208 +Brooklyn,NY,11209 +Brooklyn,NY,11210 +Brooklyn,NY,11211 +Brooklyn,NY,11212 +Brooklyn,NY,11213 +Brooklyn,NY,11214 +Brooklyn,NY,11215 +Brooklyn,NY,11216 +Brooklyn,NY,11217 +Brooklyn,NY,11218 +Brooklyn,NY,11219 +Brooklyn,NY,11220 +Brooklyn,NY,11221 +Brooklyn,NY,11222 +Brooklyn,NY,11223 +Brooklyn,NY,11224 +Brooklyn,NY,11225 +Brooklyn,NY,11226 +Brooklyn,NY,11228 +Brooklyn,NY,11229 +Brooklyn,NY,11230 +Brooklyn,NY,11231 +Brooklyn,NY,11232 +Brooklyn,NY,11233 +Brooklyn,NY,11234 +Brooklyn,NY,11235 +Brooklyn,NY,11236 +Brooklyn,NY,11237 +Brooklyn,NY,11238 +Brooklyn,NY,11239 +Brooklyn Navy Ya,NY,11251 +Flushing,NY,11354 +Flushing,NY,11355 +College Point,NY,11356 +Whitestone,NY,11357 +Flushing,NY,11358 +Fort Totten,NY,11359 +Bayside,NY,11360 +Bayside,NY,11361 +Little Neck,NY,11362 +Little Neck,NY,11363 +Flushing,NY,11364 +Fresh Meadows,NY,11365 +Fresh Meadows,NY,11366 +Flushing,NY,11367 +Corona,NY,11368 +East Elmhurst,NY,11369 +East Elmhurst,NY,11370 +Flushing,NY,11371 +Jackson Heights,NY,11372 +Jackson Heights,NY,11373 +Rego Park,NY,11374 +Forest Hills,NY,11375 +Woodside,NY,11377 +Maspeth,NY,11378 +Middle Village,NY,11379 +Ridgewood,NY,11385 +Cambria Heights,NY,11411 +Kew Gardens,NY,11412 +Springfield Gard,NY,11413 +Kew Gardens,NY,11414 +Kew Gardens,NY,11415 +Ozone Park,NY,11416 +Ozone Park,NY,11417 +Richmond Hill,NY,11418 +S Richmond Hill,NY,11419 +S Ozone Park,NY,11420 +Woodhaven,NY,11421 +Rosedale,NY,11422 +Hollis,NY,11423 +Bellerose,NY,11426 +Queens Village,NY,11427 +Queens Village,NY,11428 +Queens Village,NY,11429 +Jamaica,NY,11430 +Jamaica,NY,11432 +Jamaica,NY,11433 +Jamaica,NY,11434 +Jamaica,NY,11435 +Jamaica,NY,11436 +Mineola,NY,11501 +Albertson,NY,11507 +Atlantic Beach,NY,11509 +Baldwin,NY,11510 +Carle Place,NY,11514 +Cedarhurst,NY,11516 +East Rockaway,NY,11518 +Freeport,NY,11520 +Garden City,NY,11530 +Glen Cove,NY,11542 +Glen Head,NY,11545 +Greenvale,NY,11548 +Hempstead,NY,11550 +West Hempstead,NY,11552 +Uniondale,NY,11553 +East Meadow,NY,11554 +Hewlett,NY,11557 +Island Park,NY,11558 +Lawrence,NY,11559 +Locust Valley,NY,11560 +Long Beach,NY,11561 +Lynbrook,NY,11563 +Malverne,NY,11565 +North Merrick,NY,11566 +Old Westbury,NY,11568 +Rockville Centre,NY,11570 +Oceanside,NY,11572 +Roosevelt,NY,11575 +Roslyn,NY,11576 +Roslyn Heights,NY,11577 +Sea Cliff,NY,11579 +Valley Stream,NY,11580 +North Woodmere,NY,11581 +Westbury,NY,11590 +Williston Park,NY,11596 +Woodmere,NY,11598 +Far Rockaway,NY,11691 +Far Rockaway,NY,11692 +Far Rockaway,NY,11693 +Far Rockaway,NY,11694 +Inwood,NY,11696 +Far Rockaway,NY,11697 +Amityville,NY,11701 +Oak Beach,NY,11702 +North Babylon,NY,11703 +West Babylon,NY,11704 +Bayport,NY,11705 +Kismet,NY,11706 +Bayville,NY,11709 +North Bellmore,NY,11710 +Bellport,NY,11713 +Bethpage,NY,11714 +Blue Point,NY,11715 +Bohemia,NY,11716 +West Brentwood,NY,11717 +Brightwaters,NY,11718 +Brookhaven,NY,11719 +Centereach,NY,11720 +Centerport,NY,11721 +Central Islip,NY,11722 +Cold Spring Harb,NY,11724 +Commack,NY,11725 +Copiague,NY,11726 +Coram,NY,11727 +Deer Park,NY,11729 +East Islip,NY,11730 +Elwood,NY,11731 +East Norwich,NY,11732 +Setauket,NY,11733 +South Farmingdal,NY,11735 +Farmingville,NY,11738 +Greenlawn,NY,11740 +Holbrook,NY,11741 +Holtsville,NY,11742 +Halesite,NY,11743 +Dix Hills,NY,11746 +Melville,NY,11747 +Islip,NY,11751 +Islip Terrace,NY,11752 +Jericho,NY,11753 +Kings Park,NY,11754 +Lake Grove,NY,11755 +Levittown,NY,11756 +Lindenhurst,NY,11757 +North Massapequa,NY,11758 +Massapequa Park,NY,11762 +Medford,NY,11763 +Miller Place,NY,11764 +Mill Neck,NY,11765 +Mount Sinai,NY,11766 +Nesconset,NY,11767 +Northport,NY,11768 +Oakdale,NY,11769 +Oyster Bay,NY,11771 +Davis Park,NY,11772 +Port Jefferson S,NY,11776 +Port Jefferson,NY,11777 +Rocky Point,NY,11778 +Lake Ronkonkoma,NY,11779 +Saint James,NY,11780 +Cherry Grove,NY,11782 +Seaford,NY,11783 +Selden,NY,11784 +Shoreham,NY,11786 +Smithtown,NY,11787 +Hauppauge,NY,11788 +Sound Beach,NY,11789 +Stony Brook,NY,11790 +Syosset,NY,11791 +Wading River,NY,11792 +Wantagh,NY,11793 +Suny Stony Brook,NY,11794 +West Islip,NY,11795 +West Sayville,NY,11796 +Woodbury,NY,11797 +Wheatley Heights,NY,11798 +Hicksville,NY,11801 +Plainview,NY,11803 +Old Bethpage,NY,11804 +Riverhead,NY,11901 +Calverton,NY,11933 +Center Moriches,NY,11934 +Cutchogue,NY,11935 +East Hampton,NY,11937 +East Marion,NY,11939 +East Moriches,NY,11940 +Eastport,NY,11941 +East Quogue,NY,11942 +Greenport,NY,11944 +Hampton Bays,NY,11946 +Laurel,NY,11948 +Manorville,NY,11949 +Mastic,NY,11950 +Mastic Beach,NY,11951 +Mattituck,NY,11952 +Middle Island,NY,11953 +Montauk,NY,11954 +Moriches,NY,11955 +Orient,NY,11957 +Ridge,NY,11961 +Sag Harbor,NY,11963 +Shelter Island,NY,11964 +Shelter Island H,NY,11965 +Shirley,NY,11967 +Southampton,NY,11968 +Southold,NY,11971 +Water Mill,NY,11976 +Westhampton,NY,11977 +Westhampton Beac,NY,11978 +Yaphank,NY,11980 +Alcove,NY,12007 +Alplaus,NY,12008 +Altamont,NY,12009 +West Charlton,NY,12010 +Athens,NY,12015 +Austerlitz,NY,12017 +Averill Park,NY,12018 +Ballston Lake,NY,12019 +Ballston Spa,NY,12020 +Berlin,NY,12022 +Berne,NY,12023 +Brainard,NY,12024 +Broadalbin,NY,12025 +Burnt Hills,NY,12027 +Buskirk,NY,12028 +Canaan,NY,12029 +Carlisle,NY,12031 +Caroga Lake,NY,12032 +Castleton On Hud,NY,12033 +Central Bridge,NY,12035 +Charlotteville,NY,12036 +Chatham,NY,12037 +Clarksville,NY,12041 +Climax,NY,12042 +Cobleskill,NY,12043 +Coeymans Hollow,NY,12046 +Cohoes,NY,12047 +Coxsackie,NY,12051 +Cropseyville,NY,12052 +Delanson,NY,12053 +Delmar,NY,12054 +Dormansville,NY,12055 +Duanesburg,NY,12056 +White Creek,NY,12057 +Earlton,NY,12058 +East Berne,NY,12059 +East Chatham,NY,12060 +East Greenbush,NY,12061 +East Nassau,NY,12062 +East Worcester,NY,12064 +Clifton Park,NY,12065 +Esperance,NY,12066 +Feura Bush,NY,12067 +Fonda,NY,12068 +Fort Johnson,NY,12070 +Fultonham,NY,12071 +Fultonville,NY,12072 +Galway,NY,12074 +Ghent,NY,12075 +Gilboa,NY,12076 +Glenmont,NY,12077 +Gloversville,NY,12078 +Greenville,NY,12083 +Guilderland,NY,12084 +Hagaman,NY,12086 +Hannacroix,NY,12087 +Hoosick Falls,NY,12090 +Howes Cave,NY,12092 +Jefferson,NY,12093 +Johnsonville,NY,12094 +Johnstown,NY,12095 +Kinderhook,NY,12106 +Lake Pleasant,NY,12108 +Latham,NY,12110 +Lawyersville,NY,12113 +Malden Bridge,NY,12115 +Maryland,NY,12116 +Mayfield,NY,12117 +Mechanicville,NY,12118 +Medusa,NY,12120 +Melrose,NY,12121 +Middleburgh,NY,12122 +Nassau,NY,12123 +New Lebanon,NY,12125 +Niverville,NY,12130 +North Blenheim,NY,12131 +Edinburg,NY,12134 +Norton Hill,NY,12135 +Old Chatham,NY,12136 +Pattersonville,NY,12137 +Taconic Lake,NY,12138 +Piseco,NY,12139 +Poestenkill,NY,12140 +Ravena,NY,12143 +Rensselaer,NY,12144 +Rensselaerville,NY,12147 +Rexford,NY,12148 +Richmondville,NY,12149 +Rotterdam Juncti,NY,12150 +Round Lake,NY,12151 +Sand Lake,NY,12153 +Schaghticoke,NY,12154 +Schenevus,NY,12155 +Schodack Landing,NY,12156 +Schoharie,NY,12157 +Selkirk,NY,12158 +Slingerlands,NY,12159 +Sloansville,NY,12160 +Speculator,NY,12164 +Spencertown,NY,12165 +Sprakers,NY,12166 +Stamford,NY,12167 +Stephentown,NY,12168 +Stephentown,NY,12169 +Stillwater,NY,12170 +Stuyvesant,NY,12173 +Summit,NY,12175 +Surprise,NY,12176 +Troy,NY,12180 +Troy,NY,12182 +Green Island,NY,12183 +Valatie,NY,12184 +Valley Falls,NY,12185 +Voorheesville,NY,12186 +Warnerville,NY,12187 +Waterford,NY,12188 +Watervliet,NY,12189 +Wells,NY,12190 +West Coxsackie,NY,12192 +Westerlo,NY,12193 +West Fulton,NY,12194 +West Sand Lake,NY,12196 +Worcester,NY,12197 +Wynantskill,NY,12198 +Albany,NY,12202 +Mc Kownville,NY,12203 +Albany,NY,12204 +Roessleville,NY,12205 +Albany,NY,12206 +Albany,NY,12207 +Albany,NY,12208 +Albany,NY,12209 +Albany,NY,12210 +Loudonville,NY,12211 +Mayfair,NY,12302 +Rotterdam,NY,12303 +Schenectady,NY,12304 +Schenectady,NY,12305 +Schenectady,NY,12306 +Schenectady,NY,12307 +Schenectady,NY,12308 +Niskayuna,NY,12309 +Eddyville,NY,12401 +Accord,NY,12404 +Acra,NY,12405 +Arkville,NY,12406 +Ashland,NY,12407 +Shady,NY,12409 +Oliverea,NY,12410 +Bloomington,NY,12411 +Boiceville,NY,12412 +Cairo,NY,12413 +Catskill,NY,12414 +Chichester,NY,12416 +Cornwallville,NY,12418 +Cottekill,NY,12419 +Denver,NY,12421 +Durham,NY,12422 +East Durham,NY,12423 +East Jewett,NY,12424 +Elka Park,NY,12427 +Ellenville,NY,12428 +Halcott Center,NY,12430 +Freehold,NY,12431 +Glenford,NY,12433 +Grand Gorge,NY,12434 +Greenfield Park,NY,12435 +East Windham,NY,12439 +High Falls,NY,12440 +Hunter,NY,12442 +Hurley,NY,12443 +Jewett,NY,12444 +Kerhonkson,NY,12446 +Lake Hill,NY,12448 +Lake Katrine,NY,12449 +Lanesville,NY,12450 +Leeds,NY,12451 +Maplecrest,NY,12454 +Kelly Corners,NY,12455 +Mount Marion,NY,12456 +Mount Tremper,NY,12457 +Napanoch,NY,12458 +Oak Hill,NY,12460 +Krumville,NY,12461 +12462,NY,12462 +Palenville,NY,12463 +Phoenicia,NY,12464 +Pine Hill,NY,12465 +Port Ewen,NY,12466 +Prattsville,NY,12468 +Preston Hollow,NY,12469 +Purling,NY,12470 +Rosendale,NY,12472 +Round Top,NY,12473 +Roxbury,NY,12474 +Saugerties,NY,12477 +Shandaken,NY,12480 +Shokan,NY,12481 +South Cairo,NY,12482 +Stone Ridge,NY,12484 +Tannersville,NY,12485 +Tillson,NY,12486 +Ulster Park,NY,12487 +West Hurley,NY,12491 +West Kill,NY,12492 +West Shokan,NY,12494 +Willow,NY,12495 +Windham,NY,12496 +Woodstock,NY,12498 +Amenia,NY,12501 +Ancram,NY,12502 +Ancramdale,NY,12503 +Barrytown,NY,12507 +Beacon,NY,12508 +Claverack,NY,12513 +Clinton Corners,NY,12514 +Clintondale,NY,12515 +Copake,NY,12516 +Copake Falls,NY,12517 +Cornwall,NY,12518 +Cornwall On Huds,NY,12520 +Craryville,NY,12521 +Dover Plains,NY,12522 +Elizaville,NY,12523 +Fishkill,NY,12524 +Gardiner,NY,12525 +Germantown,NY,12526 +Highland,NY,12528 +Hillsdale,NY,12529 +Holmes,NY,12531 +Hopewell Junctio,NY,12533 +Hudson,NY,12534 +Hyde Park,NY,12538 +Lagrangeville,NY,12540 +Marlboro,NY,12542 +Maybrook,NY,12543 +Millbrook,NY,12545 +Millerton,NY,12546 +Milton,NY,12547 +Modena,NY,12548 +Montgomery,NY,12549 +Middle Hope,NY,12550 +New Windsor,NY,12553 +Mohonk Lake,NY,12561 +Patterson,NY,12563 +Pawling,NY,12564 +Pine Bush,NY,12566 +Pine Plains,NY,12567 +Pleasant Valley,NY,12569 +Poughquag,NY,12570 +Red Hook,NY,12571 +Rhinebeck,NY,12572 +Rock Tavern,NY,12575 +Salisbury Mills,NY,12577 +Salt Point,NY,12578 +Staatsburg,NY,12580 +Stanfordville,NY,12581 +Stormville,NY,12582 +Tivoli,NY,12583 +Verbank,NY,12585 +Walden,NY,12586 +Wallkill,NY,12589 +New Hamburg,NY,12590 +Wassaic,NY,12592 +Wingdale,NY,12594 +South Road,NY,12601 +Arlington,NY,12603 +Monticello,NY,12701 +Barryville,NY,12719 +Bethel,NY,12720 +Bloomingburg,NY,12721 +Callicoon,NY,12723 +Claryville,NY,12725 +Fosterdale,NY,12726 +Cochecton Center,NY,12727 +Cuddebackville,NY,12729 +Eldred,NY,12732 +Fallsburg,NY,12733 +Grossinger,NY,12734 +Fremont Center,NY,12736 +Glen Spey,NY,12737 +Glen Wild,NY,12738 +Godeffroy,NY,12739 +Grahamsville,NY,12740 +Mileses,NY,12741 +Harris,NY,12742 +Highland Lake,NY,12743 +Hortonville,NY,12745 +Huguenot,NY,12746 +Hurleyville,NY,12747 +Jeffersonville,NY,12748 +Kenoza Lake,NY,12750 +Kiamesha Lake,NY,12751 +Lake Huntington,NY,12752 +Lew Beach,NY,12753 +Liberty,NY,12754 +Livingston Manor,NY,12758 +Loch Sheldrake,NY,12759 +Long Eddy,NY,12760 +Mongaup Valley,NY,12762 +Mountain Dale,NY,12763 +Narrowsburg,NY,12764 +Neversink,NY,12765 +North Branch,NY,12766 +Parksville,NY,12768 +Pond Eddy,NY,12770 +Port Jervis,NY,12771 +Rock Hill,NY,12775 +Cook Falls,NY,12776 +Forestburgh,NY,12777 +South Fallsburg,NY,12779 +Sparrowbush,NY,12780 +Sundown,NY,12782 +Swan Lake,NY,12783 +White Lake,NY,12786 +White Sulphur Sp,NY,12787 +Woodbourne,NY,12788 +Woodridge,NY,12789 +Wurtsboro,NY,12790 +Youngsville,NY,12791 +Yulan,NY,12792 +Queensbury,NY,12801 +South Glens Fall,NY,12803 +Queensbury,NY,12804 +Adirondack,NY,12808 +Argyle,NY,12809 +Athol,NY,12810 +Blue Mountain La,NY,12812 +Bolton Landing,NY,12814 +Brant Lake,NY,12815 +Cambridge,NY,12816 +Chestertown,NY,12817 +Clemons,NY,12819 +Comstock,NY,12821 +Corinth,NY,12822 +Cossayuna,NY,12823 +Diamond Point,NY,12824 +East Greenwich,NY,12826 +Fort Ann,NY,12827 +Fort Edward,NY,12828 +Gansevoort,NY,12831 +Granville,NY,12832 +Greenfield Cente,NY,12833 +Thomson,NY,12834 +Hadley,NY,12835 +Hague,NY,12836 +Hampton,NY,12837 +Hartford,NY,12838 +Hudson Falls,NY,12839 +Indian Lake,NY,12842 +Johnsburg,NY,12843 +Pilot Knob,NY,12844 +Lake George,NY,12845 +Lake Luzerne,NY,12846 +Long Lake,NY,12847 +Middle Granville,NY,12849 +Middle Grove,NY,12850 +Minerva,NY,12851 +Newcomb,NY,12852 +North Creek,NY,12853 +North Granville,NY,12854 +North Hudson,NY,12855 +Olmstedville,NY,12857 +Paradox,NY,12858 +Porter Corners,NY,12859 +Pottersville,NY,12860 +Putnam Station,NY,12861 +Rock City Falls,NY,12863 +Salem,NY,12865 +Wilton,NY,12866 +Schroon Lake,NY,12870 +Schuylerville,NY,12871 +Severance,NY,12872 +Shushan,NY,12873 +Silver Bay,NY,12874 +Stony Creek,NY,12878 +Ticonderoga,NY,12883 +Warrensburg,NY,12885 +Wevertown,NY,12886 +Whitehall,NY,12887 +Plattsburgh,NY,12901 +Altona,NY,12910 +Au Sable Chasm,NY,12911 +Au Sable Forks,NY,12912 +Bloomingdale,NY,12913 +Bombay,NY,12914 +Brushton,NY,12916 +Burke,NY,12917 +Cadyville,NY,12918 +Champlain,NY,12919 +Chateaugay,NY,12920 +Chazy,NY,12921 +Childwold,NY,12922 +Churubusco,NY,12923 +Keeseville,NY,12924 +Constable,NY,12926 +Crown Point,NY,12928 +Dickinson Center,NY,12930 +Elizabethtown,NY,12932 +Ellenburg Center,NY,12934 +Ellenburg Depot,NY,12935 +Essex,NY,12936 +Fort Covington,NY,12937 +Nicholville,NY,12938 +Jay,NY,12941 +Keene,NY,12942 +Saint Huberts,NY,12943 +Keeseville,NY,12944 +Upper Saint Regi,NY,12945 +North Pole,NY,12946 +Lawrenceville,NY,12949 +Lewis,NY,12950 +Lyon Mountain,NY,12952 +Malone,NY,12953 +Merrill,NY,12955 +Mineville,NY,12956 +Moira,NY,12957 +Mooers,NY,12958 +Mooers Forks,NY,12959 +Moriah,NY,12960 +Moriah Center,NY,12961 +Morrisonville,NY,12962 +New Russia,NY,12964 +Nicholville,NY,12965 +Bangor,NY,12966 +North Lawrence,NY,12967 +Onchiota,NY,12968 +Owls Head,NY,12969 +Paul Smiths,NY,12970 +Peru,NY,12972 +Piercefield,NY,12973 +Port Henry,NY,12974 +Redford,NY,12978 +Rouses Point,NY,12979 +Saint Regis Fall,NY,12980 +Saranac,NY,12981 +Saranac Lake,NY,12983 +Schuyler Falls,NY,12985 +Sunmount,NY,12986 +Upper Jay,NY,12987 +Vermontville,NY,12989 +West Chazy,NY,12992 +Westport,NY,12993 +Whallonsburg,NY,12994 +Willsboro,NY,12996 +Wilmington,NY,12997 +Auburn,NY,13021 +Aurora,NY,13026 +Baldwinsville,NY,13027 +Bernhards Bay,NY,13028 +Brewerton,NY,13029 +Bridgeport,NY,13030 +Camillus,NY,13031 +Canastota,NY,13032 +Cato,NY,13033 +Cayuga,NY,13034 +Cazenovia,NY,13035 +Central Square,NY,13036 +Chittenango,NY,13037 +Cicero,NY,13039 +Cincinnatus,NY,13040 +Clay,NY,13041 +Cleveland,NY,13042 +Constantia,NY,13044 +Cortland,NY,13045 +Cuyler,NY,13050 +De Ruyter,NY,13052 +Dryden,NY,13053 +Durhamville,NY,13054 +East Freetown,NY,13055 +East Syracuse,NY,13057 +Elbridge,NY,13060 +Erieville,NY,13061 +Fabius,NY,13063 +Fayetteville,NY,13066 +Freeville,NY,13068 +Fulton,NY,13069 +Genoa,NY,13071 +Georgetown,NY,13072 +Groton,NY,13073 +Hannibal,NY,13074 +Hastings,NY,13076 +Homer,NY,13077 +Jamesville,NY,13078 +Jordan,NY,13080 +King Ferry,NY,13081 +Kirkville,NY,13082 +Lacona,NY,13083 +La Fayette,NY,13084 +Lebanon,NY,13085 +Liverpool,NY,13088 +Bayberry,NY,13090 +Locke,NY,13092 +Mc Graw,NY,13101 +Mallory,NY,13103 +Manlius,NY,13104 +Marcellus,NY,13108 +Marietta,NY,13110 +Martville,NY,13111 +Memphis,NY,13112 +Mexico,NY,13114 +Minoa,NY,13116 +Moravia,NY,13118 +Nedrow,NY,13120 +New Woodstock,NY,13122 +North Pitcher,NY,13124 +Oswego,NY,13126 +Parish,NY,13131 +Pennellville,NY,13132 +Phoenix,NY,13135 +Pitcher,NY,13136 +Port Byron,NY,13140 +Preble,NY,13141 +Pulaski,NY,13142 +Red Creek,NY,13143 +Richland,NY,13144 +Sandy Creek,NY,13145 +Savannah,NY,13146 +Venice Center,NY,13147 +Seneca Falls,NY,13148 +Skaneateles,NY,13152 +South Otselic,NY,13155 +Sterling,NY,13156 +Truxton,NY,13158 +Tully,NY,13159 +Union Springs,NY,13160 +Warners,NY,13164 +Waterloo,NY,13165 +Weedsport,NY,13166 +West Monroe,NY,13167 +Syracuse,NY,13202 +Syracuse,NY,13203 +Syracuse,NY,13204 +Syracuse,NY,13205 +Syracuse,NY,13206 +Syracuse,NY,13207 +Syracuse,NY,13208 +Solvay,NY,13209 +Syracuse,NY,13210 +Mattydale,NY,13211 +North Syracuse,NY,13212 +De Witt,NY,13214 +Onondaga,NY,13215 +Syracuse,NY,13219 +Syracuse,NY,13224 +Alder Creek,NY,13301 +Altmar,NY,13302 +Ava,NY,13303 +Barneveld,NY,13304 +Blossvale,NY,13308 +Boonville,NY,13309 +Bouckville,NY,13310 +Brookfield,NY,13314 +Burlington Flats,NY,13315 +Camden,NY,13316 +Ames,NY,13317 +Cassville,NY,13318 +Chadwicks,NY,13319 +Cherry Valley,NY,13320 +Clayville,NY,13322 +Clinton,NY,13323 +Cold Brook,NY,13324 +Constableville,NY,13325 +Cooperstown,NY,13326 +Croghan,NY,13327 +Deansboro,NY,13328 +Dolgeville,NY,13329 +Eagle Bay,NY,13331 +Earlville,NY,13332 +East Springfield,NY,13333 +Eaton,NY,13334 +Edmeston,NY,13335 +Fly Creek,NY,13337 +Forestport,NY,13338 +Fort Plain,NY,13339 +Frankfort,NY,13340 +Garrattsville,NY,13342 +Glenfield,NY,13343 +Greig,NY,13345 +Hamilton,NY,13346 +Hartwick,NY,13348 +Herkimer,NY,13350 +Hoffmeister,NY,13353 +Holland Patent,NY,13354 +Hubbardsville,NY,13355 +Ilion,NY,13357 +Inlet,NY,13360 +Jordanville,NY,13361 +Lee Center,NY,13363 +Little Falls,NY,13365 +Beaver River,NY,13367 +Lyons Falls,NY,13368 +Mc Connellsville,NY,13401 +Madison,NY,13402 +Marcy,NY,13403 +Middleville,NY,13406 +Mohawk,NY,13407 +Morrisville,NY,13408 +Munnsville,NY,13409 +New Berlin,NY,13411 +New Hartford,NY,13413 +New Lisbon,NY,13415 +Newport,NY,13416 +New York Mills,NY,13417 +North Brookfield,NY,13418 +Old Forge,NY,13420 +Oneida,NY,13421 +Oriskany,NY,13424 +Oriskany Falls,NY,13425 +Palatine Bridge,NY,13428 +Poland,NY,13431 +Port Leyden,NY,13433 +Raquette Lake,NY,13436 +Redfield,NY,13437 +Remsen,NY,13438 +Richfield Spring,NY,13439 +Rome,NY,13440 +Roseboom,NY,13450 +Saint Johnsville,NY,13452 +Salisbury Center,NY,13454 +Sauquoit,NY,13456 +Sharon Springs,NY,13459 +Sherburne,NY,13460 +Sherrill,NY,13461 +Smyrna,NY,13464 +South Edmeston,NY,13466 +Springfield Cent,NY,13468 +Stittville,NY,13469 +Stratford,NY,13470 +Taberg,NY,13471 +Turin,NY,13473 +Van Hornesville,NY,13475 +Vernon,NY,13476 +Vernon Center,NY,13477 +Verona,NY,13478 +Waterville,NY,13480 +West Burlington,NY,13482 +Westdale,NY,13483 +West Edmeston,NY,13485 +Westernville,NY,13486 +Westford,NY,13488 +West Leyden,NY,13489 +Westmoreland,NY,13490 +West Winfield,NY,13491 +Whitesboro,NY,13492 +Williamstown,NY,13493 +Woodgate,NY,13494 +Yorkville,NY,13495 +Utica,NY,13501 +Utica,NY,13502 +Watertown,NY,13601 +Fort Drum,NY,13602 +Fort Drum,NY,13603 +Smithville,NY,13605 +Adams Center,NY,13606 +Point Vivian,NY,13607 +Antwerp,NY,13608 +Belleville,NY,13611 +Black River,NY,13612 +Brasher Falls,NY,13613 +Brier Hill,NY,13614 +Calcium,NY,13616 +Canton,NY,13617 +Cape Vincent,NY,13618 +Carthage,NY,13619 +Castorland,NY,13620 +Chase Mills,NY,13621 +Chaumont,NY,13622 +Frontenac,NY,13624 +Colton,NY,13625 +Copenhagen,NY,13626 +De Kalb Junction,NY,13630 +De Peyster,NY,13633 +Dexter,NY,13634 +Edwards,NY,13635 +Ellisburg,NY,13636 +Evans Mills,NY,13637 +Felts Mills,NY,13638 +Gouverneur,NY,13642 +Hammond,NY,13646 +Harrisville,NY,13648 +Henderson,NY,13650 +Hermon,NY,13652 +Heuvelton,NY,13654 +Hogansburg,NY,13655 +La Fargeville,NY,13656 +Lisbon,NY,13658 +Lorraine,NY,13659 +Madrid,NY,13660 +Mannsville,NY,13661 +Massena,NY,13662 +Natural Bridge,NY,13665 +Newton Falls,NY,13666 +Norfolk,NY,13667 +Norwood,NY,13668 +Ogdensburg,NY,13669 +Oswegatchie,NY,13670 +Parishville,NY,13672 +Philadelphia,NY,13673 +Plessis,NY,13675 +Potsdam,NY,13676 +Redwood,NY,13679 +Rensselaer Falls,NY,13680 +Richville,NY,13681 +Rodman,NY,13682 +Degrasse,NY,13684 +Sackets Harbor,NY,13685 +South Colton,NY,13687 +Star Lake,NY,13690 +Theresa,NY,13691 +Three Mile Bay,NY,13693 +Waddington,NY,13694 +Wanakena,NY,13695 +West Stockholm,NY,13696 +Winthrop,NY,13697 +Woodville,NY,13698 +Afton,NY,13730 +Andes,NY,13731 +Apalachin,NY,13732 +Bainbridge,NY,13733 +Barton,NY,13734 +Berkshire,NY,13736 +Bloomville,NY,13739 +Bovina Center,NY,13740 +Candor,NY,13743 +Castle Creek,NY,13744 +Chenango Forks,NY,13746 +Conklin,NY,13748 +Davenport,NY,13750 +Davenport Center,NY,13751 +De Lancey,NY,13752 +Meredith,NY,13753 +Deposit,NY,13754 +Downsville,NY,13755 +East Branch,NY,13756 +East Meredith,NY,13757 +Endwell,NY,13760 +Franklin,NY,13775 +Gilbertsville,NY,13776 +Glen Aubrey,NY,13777 +Greene,NY,13778 +Guilford,NY,13780 +Hamden,NY,13782 +Cadosia,NY,13783 +Harpersfield,NY,13786 +Harpursville,NY,13787 +Hobart,NY,13788 +Johnson City,NY,13790 +Kirkwood,NY,13795 +Laurens,NY,13796 +Lisle,NY,13797 +Mc Donough,NY,13801 +Maine,NY,13802 +Marathon,NY,13803 +Masonville,NY,13804 +Meridale,NY,13806 +Milford,NY,13807 +Morris,NY,13808 +Mount Upton,NY,13809 +Mount Vision,NY,13810 +Newark Valley,NY,13811 +Nichols,NY,13812 +Nineveh,NY,13813 +Norwich,NY,13815 +Oneonta,NY,13820 +Otego,NY,13825 +Ouaquaga,NY,13826 +Owego,NY,13827 +Brisben,NY,13830 +Plymouth,NY,13832 +Sanitaria Spring,NY,13833 +Portlandville,NY,13834 +Richford,NY,13835 +Sidney,NY,13838 +Sidney Center,NY,13839 +Smithville Flats,NY,13841 +South Kortright,NY,13842 +South New Berlin,NY,13843 +South Plymouth,NY,13844 +Treadwell,NY,13846 +Unadilla,NY,13849 +Vestal,NY,13850 +Walton,NY,13856 +Wells Bridge,NY,13859 +West Oneonta,NY,13861 +Whitney Point,NY,13862 +Willet,NY,13863 +Willseyville,NY,13864 +Windsor,NY,13865 +Binghamton,NY,13901 +Binghamton,NY,13903 +Binghamton,NY,13904 +Binghamton,NY,13905 +Akron,NY,14001 +Alabama,NY,14003 +Alden,NY,14004 +Alexander,NY,14005 +Angola,NY,14006 +Appleton,NY,14008 +Arcade,NY,14009 +Attica,NY,14011 +Barker,NY,14012 +Basom,NY,14013 +Batavia,NY,14020 +Bliss,NY,14024 +Boston,NY,14025 +Bowmansville,NY,14026 +Burt,NY,14028 +Chaffee,NY,14030 +Clarence,NY,14031 +Clarence Center,NY,14032 +Colden,NY,14033 +Collins,NY,14034 +Corfu,NY,14036 +Cowlesville,NY,14037 +Dale,NY,14039 +Darien Center,NY,14040 +Dayton,NY,14041 +Delevan,NY,14042 +Depew,NY,14043 +Derby,NY,14047 +Van Buren Bay,NY,14048 +Swormville,NY,14051 +East Aurora,NY,14052 +East Bethany,NY,14054 +East Concord,NY,14055 +Eden,NY,14057 +Elba,NY,14058 +Elma,NY,14059 +Farmersville Sta,NY,14060 +Forestville,NY,14062 +Fredonia,NY,14063 +Freedom,NY,14065 +Gainesville,NY,14066 +Gasport,NY,14067 +Getzville,NY,14068 +Glenwood,NY,14069 +Gowanda,NY,14070 +Grand Island,NY,14072 +Hamburg,NY,14075 +Holland,NY,14080 +Irving,NY,14081 +Java Center,NY,14082 +Java Village,NY,14083 +Lake View,NY,14085 +Lancaster,NY,14086 +Lawtons,NY,14091 +Lewiston,NY,14092 +Lockport,NY,14094 +Lyndonville,NY,14098 +Machias,NY,14101 +Marilla,NY,14102 +Medina,NY,14103 +Middleport,NY,14105 +Newfane,NY,14108 +North Collins,NY,14111 +North Java,NY,14113 +North Tonawanda,NY,14120 +Oakfield,NY,14125 +Orchard Park,NY,14127 +Perrysburg,NY,14129 +Ransomville,NY,14131 +Sanborn,NY,14132 +Sardinia,NY,14134 +Silver Creek,NY,14136 +South Dayton,NY,14138 +South Wales,NY,14139 +Springville,NY,14141 +Stafford,NY,14143 +Strykersville,NY,14145 +Tonawanda,NY,14150 +Varysburg,NY,14167 +West Falls,NY,14170 +West Valley,NY,14171 +Wilson,NY,14172 +Youngstown,NY,14174 +Buffalo,NY,14201 +Buffalo,NY,14202 +Buffalo,NY,14203 +Buffalo,NY,14204 +Buffalo,NY,14206 +Buffalo,NY,14207 +Buffalo,NY,14208 +Buffalo,NY,14209 +Buffalo,NY,14210 +Buffalo,NY,14211 +Buffalo,NY,14212 +Buffalo,NY,14213 +Buffalo,NY,14214 +Buffalo,NY,14215 +Buffalo,NY,14216 +Kenmore,NY,14217 +Lackawanna,NY,14218 +Blasdell,NY,14219 +Buffalo,NY,14220 +Williamsville,NY,14221 +Buffalo,NY,14222 +Buffalo,NY,14223 +West Seneca,NY,14224 +Cheektowaga,NY,14225 +Amherst,NY,14226 +Cheektowaga,NY,14227 +Amherst,NY,14228 +Niagara Falls,NY,14301 +Niagara Falls,NY,14303 +Niagara Falls,NY,14304 +Niagara Falls,NY,14305 +Adams Basin,NY,14410 +Albion,NY,14411 +Avon,NY,14414 +Bellona,NY,14415 +Bergen,NY,14416 +Branchport,NY,14418 +Brockport,NY,14420 +Byron,NY,14422 +Caledonia,NY,14423 +Canandaigua,NY,14424 +Canandaigua,NY,14425 +Castile,NY,14427 +Clifton,NY,14428 +Clifton Springs,NY,14432 +Clyde,NY,14433 +Conesus,NY,14435 +Dansville,NY,14437 +Dresden,NY,14441 +East Rochester,NY,14445 +Fairport,NY,14450 +Geneseo,NY,14454 +Geneva,NY,14456 +Groveland,NY,14462 +Hamlin,NY,14464 +Hemlock,NY,14466 +Henrietta,NY,14467 +Hilton,NY,14468 +Bloomfield,NY,14469 +Hulberton,NY,14470 +Honeoye,NY,14471 +Honeoye Falls,NY,14472 +Ionia,NY,14475 +Kendall,NY,14476 +Kent,NY,14477 +Bluff Point,NY,14478 +Lakeville,NY,14480 +Leicester,NY,14481 +Le Roy,NY,14482 +Lima,NY,14485 +Linwood,NY,14486 +Livonia,NY,14487 +Lyons,NY,14489 +Macedon,NY,14502 +Manchester,NY,14504 +Marion,NY,14505 +Mendon,NY,14506 +Middlesex,NY,14507 +Tuscarora,NY,14510 +Naples,NY,14512 +Newark,NY,14513 +North Chili,NY,14514 +North Rose,NY,14516 +Nunda,NY,14517 +Ontario,NY,14519 +Hayt Corners,NY,14521 +Palmyra,NY,14522 +Linwood,NY,14525 +Penfield,NY,14526 +Penn Yan,NY,14527 +Perry,NY,14530 +Phelps,NY,14532 +Wadsworth,NY,14533 +Pittsford,NY,14534 +Portageville,NY,14536 +Mac Dougall,NY,14541 +West Rush,NY,14543 +Rushville,NY,14544 +Scottsburg,NY,14545 +Scottsville,NY,14546 +Shortsville,NY,14548 +Rock Glen,NY,14550 +Sodus,NY,14551 +Sodus Point,NY,14555 +Spencerport,NY,14559 +Springwater,NY,14560 +Stanley,NY,14561 +Victor,NY,14564 +Walworth,NY,14568 +Warsaw,NY,14569 +Waterport,NY,14571 +Wayland,NY,14572 +Webster,NY,14580 +West Henrietta,NY,14586 +Williamson,NY,14589 +Wolcott,NY,14590 +Wyoming,NY,14591 +Rochester,NY,14604 +Rochester,NY,14605 +Rochester,NY,14606 +Rochester,NY,14607 +Rochester,NY,14608 +Rochester,NY,14609 +Rochester,NY,14610 +Rochester,NY,14611 +Rochester,NY,14612 +Rochester,NY,14613 +Rochester,NY,14614 +Rochester,NY,14615 +Greece,NY,14616 +Rochester,NY,14617 +Twelve Corners,NY,14618 +Rochester,NY,14619 +Rochester,NY,14620 +Rochester,NY,14621 +Rochester,NY,14622 +Rochester,NY,14623 +Westgate,NY,14624 +Panorama,NY,14625 +Rochester,NY,14626 +Jamestown,NY,14701 +Allegany,NY,14706 +Alma,NY,14708 +Angelica,NY,14709 +Ashville,NY,14710 +Belfast,NY,14711 +Bemus Point,NY,14712 +Black Creek,NY,14714 +Bolivar,NY,14715 +Brocton,NY,14716 +Caneadea,NY,14717 +Cassadaga,NY,14718 +Cattaraugus,NY,14719 +Ceres,NY,14721 +Cherry Creek,NY,14723 +Clymer,NY,14724 +Conewango Valley,NY,14726 +Cuba,NY,14727 +Dewittville,NY,14728 +East Otto,NY,14729 +Ellicottville,NY,14731 +Falconer,NY,14733 +Fillmore,NY,14735 +Findley Lake,NY,14736 +Franklinville,NY,14737 +Frewsburg,NY,14738 +Friendship,NY,14739 +Gerry,NY,14740 +Great Valley,NY,14741 +Ischua,NY,14743 +Houghton,NY,14744 +Kennedy,NY,14747 +Kill Buck,NY,14748 +Lakewood,NY,14750 +Limestone,NY,14753 +Little Genesee,NY,14754 +Little Valley,NY,14755 +Mayville,NY,14757 +Olean,NY,14760 +Panama,NY,14767 +Portland,NY,14769 +Portville,NY,14770 +Randolph,NY,14772 +Ripley,NY,14775 +Rushford,NY,14777 +Salamanca,NY,14779 +Sherman,NY,14781 +Sinclairville,NY,14782 +Stockton,NY,14784 +Westfield,NY,14787 +Addison,NY,14801 +Alfred,NY,14802 +Alfred Station,NY,14803 +Almond,NY,14804 +Alpine,NY,14805 +Andover,NY,14806 +Arkport,NY,14807 +Atlanta,NY,14808 +Wallace,NY,14809 +Veterans Adminis,NY,14810 +Beaver Dams,NY,14812 +Belmont,NY,14813 +Big Flats,NY,14814 +Bradford,NY,14815 +Breesport,NY,14816 +Brooktondale,NY,14817 +Burdett,NY,14818 +Cameron,NY,14819 +Cameron Mills,NY,14820 +Campbell,NY,14821 +Canaseraga,NY,14822 +Canisteo,NY,14823 +Cayuta,NY,14824 +Chemung,NY,14825 +Cohocton,NY,14826 +Corning,NY,14830 +Dalton,NY,14836 +Dundee,NY,14837 +Erin,NY,14838 +Greenwood,NY,14839 +Hammondsport,NY,14840 +Hector,NY,14841 +Himrod,NY,14842 +Hornell,NY,14843 +Horseheads,NY,14845 +Hunt,NY,14846 +Interlaken,NY,14847 +Ithaca College,NY,14850 +Ithaca,NY,14853 +Jasper,NY,14855 +Lindley,NY,14858 +Lockwood,NY,14859 +Lodi,NY,14860 +Lowman,NY,14861 +Millport,NY,14864 +Montour Falls,NY,14865 +Newfield,NY,14867 +Odessa,NY,14869 +Painted Post,NY,14870 +Pine City,NY,14871 +Pine Valley,NY,14872 +Prattsburg,NY,14873 +Pulteney,NY,14874 +Rexville,NY,14877 +Rock Stream,NY,14878 +Savona,NY,14879 +Scio,NY,14880 +Slaterville Spri,NY,14881 +Lansing,NY,14882 +Spencer,NY,14883 +Swain,NY,14884 +Troupsburg,NY,14885 +Trumansburg,NY,14886 +Valois,NY,14888 +Van Etten,NY,14889 +Watkins Glen,NY,14891 +Waverly,NY,14892 +Wellsburg,NY,14894 +Wellsville,NY,14895 +Whitesville,NY,14897 +Woodhull,NY,14898 +Elmira,NY,14901 +Elmira Heights,NY,14903 +Elmira,NY,14904 +Elmira,NY,14905 +Advance,NC,27006 +Ararat,NC,27007 +Belews Creek,NC,27009 +Boonville,NC,27011 +Clemmons,NC,27012 +Cleveland,NC,27013 +Danbury,NC,27016 +Dobson,NC,27017 +East Bend,NC,27018 +Germanton,NC,27019 +Hamptonville,NC,27020 +King,NC,27021 +Lawsonville,NC,27022 +Lewisville,NC,27023 +Lowgap,NC,27024 +Madison,NC,27025 +Mayodan,NC,27027 +Mocksville,NC,27028 +Mount Airy,NC,27030 +Pfafftown,NC,27040 +Pilot Mountain,NC,27041 +Pine Hall,NC,27042 +Pinnacle,NC,27043 +Rural Hall,NC,27045 +Sandy Ridge,NC,27046 +Siloam,NC,27047 +Stoneville,NC,27048 +Tobaccoville,NC,27050 +Walkertown,NC,27051 +Walnut Cove,NC,27052 +Westfield,NC,27053 +Woodleaf,NC,27054 +Yadkinville,NC,27055 +Winston Salem,NC,27101 +Winston Salem,NC,27103 +Winston Salem,NC,27104 +Winston Salem,NC,27105 +Winston Salem,NC,27106 +Winston Salem,NC,27107 +Winston Salem,NC,27127 +Farmer,NC,27203 +Bear Creek,NC,27207 +Bennett,NC,27208 +Biscoe,NC,27209 +Blanch,NC,27212 +Browns Summit,NC,27214 +Glen Raven,NC,27215 +Burlington,NC,27217 +Candor,NC,27229 +Cedar Grove,NC,27231 +Climax,NC,27233 +Colfax,NC,27235 +Denton,NC,27239 +Eagle Springs,NC,27242 +Efland,NC,27243 +Elon College,NC,27244 +Franklinville,NC,27248 +Gibsonville,NC,27249 +Goldston,NC,27252 +Graham,NC,27253 +Haw River,NC,27258 +High Point,NC,27260 +High Point,NC,27262 +Archdale,NC,27263 +High Point,NC,27265 +Hillsborough,NC,27278 +Jackson Springs,NC,27281 +Jamestown,NC,27282 +Julian,NC,27283 +Kernersville,NC,27284 +Eden,NC,27288 +Leasburg,NC,27291 +Lexington,NC,27292 +Liberty,NC,27298 +Linwood,NC,27299 +Mc Leansville,NC,27301 +Mebane,NC,27302 +Milton,NC,27305 +Mount Gilead,NC,27306 +Oak Ridge,NC,27310 +Pelham,NC,27311 +Pittsboro,NC,27312 +Pleasant Garden,NC,27313 +Prospect Hill,NC,27314 +Providence,NC,27315 +Coleridge,NC,27316 +Randleman,NC,27317 +Reidsville,NC,27320 +Robbins,NC,27325 +Ruffin,NC,27326 +Colon,NC,27330 +Seagrove,NC,27341 +Semora,NC,27343 +Siler City,NC,27344 +Snow Camp,NC,27349 +Sophia,NC,27350 +Staley,NC,27355 +Star,NC,27356 +Stokesdale,NC,27357 +Summerfield,NC,27358 +Thomasville,NC,27360 +Trinity,NC,27370 +Troy,NC,27371 +West End,NC,27376 +Whitsett,NC,27377 +Yanceyville,NC,27379 +Greensboro,NC,27401 +Greensboro,NC,27403 +Greensboro,NC,27405 +Greensboro,NC,27406 +Greensboro,NC,27407 +Greensboro,NC,27408 +Greensboro,NC,27409 +Greensboro,NC,27410 +Angier,NC,27501 +Apex,NC,27502 +Bahama,NC,27503 +Benson,NC,27504 +Broadway,NC,27505 +Bullock,NC,27507 +Butner,NC,27509 +Carrboro,NC,27510 +Cary,NC,27511 +Cary,NC,27513 +Chapel Hill,NC,27514 +Chapel Hill,NC,27516 +Clayton,NC,27520 +Coats,NC,27521 +Creedmoor,NC,27522 +Four Oaks,NC,27524 +Franklinton,NC,27525 +Fuquay Varina,NC,27526 +Garner,NC,27529 +Grantham,NC,27530 +Seymour Johnson,NC,27531 +Goldsboro,NC,27534 +Henderson,NC,27536 +Holly Springs,NC,27540 +Hurdle Mills,NC,27541 +Kenly,NC,27542 +Kittrell,NC,27544 +Knightdale,NC,27545 +Lillington,NC,27546 +Louisburg,NC,27549 +Macon,NC,27551 +Manson,NC,27553 +Middlesex,NC,27557 +Moncure,NC,27559 +Morrisville,NC,27560 +New Hill,NC,27562 +Norlina,NC,27563 +Oxford,NC,27565 +Princeton,NC,27569 +Rolesville,NC,27571 +Rougemont,NC,27572 +Roxboro,NC,27573 +Selma,NC,27576 +Smithfield,NC,27577 +Stem,NC,27581 +Timberlake,NC,27583 +Wake Forest,NC,27587 +Warrenton,NC,27589 +Wendell,NC,27591 +Willow Spring,NC,27592 +Youngsville,NC,27596 +Zebulon,NC,27597 +Raleigh,NC,27601 +Raleigh,NC,27603 +Raleigh,NC,27604 +Raleigh,NC,27605 +Raleigh,NC,27606 +Raleigh,NC,27607 +Raleigh,NC,27608 +Raleigh,NC,27609 +Raleigh,NC,27610 +Raleigh,NC,27612 +Raleigh,NC,27613 +Raleigh,NC,27614 +Raleigh,NC,27615 +Durham,NC,27701 +Durham,NC,27703 +Durham,NC,27704 +Durham,NC,27705 +Durham,NC,27706 +Durham,NC,27707 +Durham,NC,27712 +Research Triangl,NC,27713 +Rocky Mount,NC,27801 +Rocky Mount,NC,27803 +Wesleyan College,NC,27804 +Aulander,NC,27805 +Aurora,NC,27806 +Bailey,NC,27807 +Bath,NC,27808 +Battleboro,NC,27809 +Belhaven,NC,27810 +Bethel,NC,27812 +Blounts Creek,NC,27814 +Castalia,NC,27816 +Chocowinity,NC,27817 +Como,NC,27818 +Conway,NC,27820 +Edward,NC,27821 +Elm City,NC,27822 +Enfield,NC,27823 +Middletown,NC,27824 +Fairfield,NC,27826 +Farmville,NC,27828 +Fountain,NC,27829 +Eureka,NC,27830 +Garysburg,NC,27831 +Gaston,NC,27832 +Greenville,NC,27834 +Grimesland,NC,27837 +Halifax,NC,27839 +Hamilton,NC,27840 +Henrico,NC,27842 +Hobgood,NC,27843 +Hollister,NC,27844 +Jackson,NC,27845 +Jamesville,NC,27846 +Kelford,NC,27847 +Lasker,NC,27848 +Lewiston Woodvil,NC,27849 +Littleton,NC,27850 +Lucama,NC,27851 +Crisp,NC,27852 +Margarettsville,NC,27853 +Murfreesboro,NC,27855 +Nashville,NC,27856 +Oak City,NC,27857 +Greenville,NC,27858 +Palmyra,NC,27859 +Pantego,NC,27860 +Pendleton,NC,27862 +Pikeville,NC,27863 +Pinetops,NC,27864 +Pinetown,NC,27865 +Pleasant Hill,NC,27866 +Rich Square,NC,27869 +Roanoke Rapids,NC,27870 +Robersonville,NC,27871 +Roxobel,NC,27872 +Saratoga,NC,27873 +Scotland Neck,NC,27874 +Scranton,NC,27875 +Seaboard,NC,27876 +Sims,NC,27880 +Spring Hope,NC,27882 +Stantonsburg,NC,27883 +Stokes,NC,27884 +Swanquarter,NC,27885 +Tarboro,NC,27886 +Walstonburg,NC,27888 +Washington,NC,27889 +Weldon,NC,27890 +Whitakers,NC,27891 +Williamston,NC,27892 +Wilson,NC,27893 +George,NC,27897 +Elizabeth City,NC,27909 +Ahoskie,NC,27910 +Aydlett,NC,27916 +Barco,NC,27917 +Belvidere,NC,27919 +Camden,NC,27921 +Cofield,NC,27922 +Coinjock,NC,27923 +Colerain,NC,27924 +Columbia,NC,27925 +Corapeake,NC,27926 +Corolla,NC,27927 +Creswell,NC,27928 +Currituck,NC,27929 +Edenton,NC,27932 +Eure,NC,27935 +Gates,NC,27937 +Gatesville,NC,27938 +Grandy,NC,27939 +Harbinger,NC,27941 +Harrellsville,NC,27942 +Durants Neck,NC,27944 +Hobbsville,NC,27946 +Jarvisburg,NC,27947 +Kill Devil Hills,NC,27948 +Southern Shores,NC,27949 +Knotts Island,NC,27950 +East Lake,NC,27953 +Manteo,NC,27954 +Maple,NC,27956 +Merry Hill,NC,27957 +Moyock,NC,27958 +Nags Head,NC,27959 +Plymouth,NC,27962 +Point Harbor,NC,27964 +Poplar Branch,NC,27965 +Powells Point,NC,27966 +Roper,NC,27970 +Shawboro,NC,27973 +Shiloh,NC,27974 +South Mills,NC,27976 +Stumpy Point,NC,27978 +Sunbury,NC,27979 +Tyner,NC,27980 +Windsor,NC,27983 +Winton,NC,27986 +Albemarle,NC,28001 +Alexis,NC,28006 +Belmont,NC,28012 +Bessemer City,NC,28016 +Bostic,NC,28018 +Casar,NC,28020 +Cherryville,NC,28021 +China Grove,NC,28023 +Concord,NC,28025 +Concord,NC,28027 +Cramerton,NC,28032 +Crouse,NC,28033 +Dallas,NC,28034 +Cornelius,NC,28036 +Denver,NC,28037 +Ellenboro,NC,28040 +Alexander Mills,NC,28043 +Gastonia,NC,28052 +Gastonia,NC,28054 +Gastonia,NC,28056 +Gold Hill,NC,28071 +Grover,NC,28073 +Harrisburg,NC,28075 +Cornelius,NC,28078 +Indian Trail,NC,28079 +Iron Station,NC,28080 +Kannapolis,NC,28081 +Kannapolis,NC,28083 +Kings Mountain,NC,28086 +Landis,NC,28088 +Lawndale,NC,28090 +Lilesville,NC,28091 +Boger City,NC,28092 +Locust,NC,28097 +Lowell,NC,28098 +Marshville,NC,28103 +Stallings,NC,28105 +Midland,NC,28107 +Monroe,NC,28110 +Monroe,NC,28112 +Mooresboro,NC,28114 +Mooresville,NC,28115 +Morven,NC,28119 +Mount Holly,NC,28120 +Mount Pleasant,NC,28124 +Mount Ulla,NC,28125 +New London,NC,28127 +Norwood,NC,28128 +Oakboro,NC,28129 +Peachland,NC,28133 +Pineville,NC,28134 +Polkton,NC,28135 +Richfield,NC,28137 +Rockwell,NC,28138 +Rutherfordton,NC,28139 +Salisbury,NC,28144 +Salisbury,NC,28146 +Kingstown,NC,28150 +Shelby,NC,28152 +Spencer,NC,28159 +Spindale,NC,28160 +Stanfield,NC,28163 +Stanley,NC,28164 +Troutman,NC,28166 +Union Mills,NC,28167 +Vale,NC,28168 +Wadesboro,NC,28170 +Weddington,NC,28173 +Wingate,NC,28174 +Charlotte,NC,28202 +Charlotte,NC,28203 +Charlotte,NC,28204 +Charlotte,NC,28205 +Charlotte,NC,28206 +Charlotte,NC,28207 +Charlotte,NC,28208 +Charlotte,NC,28209 +Charlotte,NC,28210 +Charlotte,NC,28211 +Charlotte,NC,28212 +Charlotte,NC,28213 +Charlotte,NC,28214 +Charlotte,NC,28215 +Charlotte,NC,28216 +Charlotte,NC,28217 +Charlotte,NC,28226 +Charlotte,NC,28227 +Charlotte,NC,28262 +Charlotte,NC,28269 +Charlotte,NC,28270 +Charlotte,NC,28273 +Charlotte,NC,28277 +Charlotte,NC,28278 +East Fayettevill,NC,28301 +Bonnie Doone,NC,28303 +Fayetteville,NC,28304 +Fayetteville,NC,28305 +Fayetteville,NC,28306 +Fort Bragg,NC,28307 +Fayetteville,NC,28311 +Fayetteville,NC,28314 +Aberdeen,NC,28315 +Autryville,NC,28318 +Bladenboro,NC,28320 +Bunnlevel,NC,28323 +Johnsonville,NC,28326 +Carthage,NC,28327 +Clinton,NC,28328 +Dudley,NC,28333 +Dunn,NC,28334 +Elizabethtown,NC,28337 +Ellerbe,NC,28338 +Erwin,NC,28339 +Mcdonald,NC,28340 +Faison,NC,28341 +Gibson,NC,28343 +Godwin,NC,28344 +Hamlet,NC,28345 +Hoffman,NC,28347 +Hope Mills,NC,28348 +Kenansville,NC,28349 +Laurel Hill,NC,28351 +Laurinburg,NC,28352 +Linden,NC,28356 +Lumber Bridge,NC,28357 +Lumberton,NC,28358 +Marston,NC,28363 +Maxton,NC,28364 +Mount Olive,NC,28365 +Newton Grove,NC,28366 +Orrum,NC,28369 +Parkton,NC,28371 +Pembroke,NC,28372 +Pinehurst,NC,28374 +Raeford,NC,28376 +Red Springs,NC,28377 +Rockingham,NC,28379 +Roseboro,NC,28382 +Rowland,NC,28383 +Saint Pauls,NC,28384 +Salemburg,NC,28385 +Shannon,NC,28386 +Southern Pines,NC,28387 +Spring Lake,NC,28390 +Stedman,NC,28391 +Tar Heel,NC,28392 +Turkey,NC,28393 +Vass,NC,28394 +Wade,NC,28395 +Wagram,NC,28396 +Bowdens,NC,28398 +White Oak,NC,28399 +Cape Fear,NC,28401 +Wilmington,NC,28403 +Ogden,NC,28405 +Wilmington,NC,28409 +Wilmington,NC,28412 +Ash,NC,28420 +Atkinson,NC,28421 +Bolivia,NC,28422 +Bolton,NC,28423 +Burgaw,NC,28425 +Carolina Beach,NC,28428 +Castle Hayne,NC,28429 +Cerro Gordo,NC,28430 +Chadbourn,NC,28431 +Clarendon,NC,28432 +Clarkton,NC,28433 +Council,NC,28434 +Currie,NC,28435 +Delco,NC,28436 +Evergreen,NC,28438 +Fair Bluff,NC,28439 +Garland,NC,28441 +Hallsboro,NC,28442 +Hampstead,NC,28443 +Harrells,NC,28444 +Surf City,NC,28445 +Ivanhoe,NC,28447 +Kelly,NC,28448 +Kure Beach,NC,28449 +Lake Waccamaw,NC,28450 +Leland,NC,28451 +Longwood,NC,28452 +Magnolia,NC,28453 +Maple Hill,NC,28454 +Nakina,NC,28455 +Riegelwood,NC,28456 +Rocky Point,NC,28457 +Rose Hill,NC,28458 +Shallotte,NC,28459 +Sneads Ferry,NC,28460 +Boiling Spring L,NC,28461 +Holden Beach,NC,28462 +Tabor City,NC,28463 +Teachey,NC,28464 +Oak Island,NC,28465 +Wallace,NC,28466 +Calabash,NC,28467 +Sunset Beach,NC,28468 +Ocean Isle Beach,NC,28469 +Watha,NC,28471 +Whiteville,NC,28472 +Willard,NC,28478 +Winnabow,NC,28479 +Wrightsville Bea,NC,28480 +Kinston,NC,28501 +Albertson,NC,28508 +Arapahoe,NC,28510 +Atlantic,NC,28511 +Pine Knoll Shore,NC,28512 +Ayden,NC,28513 +Bayboro,NC,28515 +Beaufort,NC,28516 +Beulaville,NC,28518 +Cedar Island,NC,28520 +Chinquapin,NC,28521 +Cove City,NC,28523 +Deep Run,NC,28525 +Dover,NC,28526 +Ernul,NC,28527 +Gloucester,NC,28528 +Grantsboro,NC,28529 +Grifton,NC,28530 +Harkers Island,NC,28531 +Havelock,NC,28532 +Hobucken,NC,28537 +Hookerton,NC,28538 +Hubert,NC,28539 +Jacksonville,NC,28540 +Camp Lejeune,NC,28542 +Tarawa Terrace,NC,28543 +Midway Park,NC,28544 +Jacksonville,NC,28546 +La Grange,NC,28551 +Lowland,NC,28552 +Marshallberg,NC,28553 +Maysville,NC,28555 +Merritt,NC,28556 +Morehead City,NC,28557 +New Bern,NC,28560 +New Bern,NC,28562 +Newport,NC,28570 +Oriental,NC,28571 +Pink Hill,NC,28572 +Pollocksville,NC,28573 +Richlands,NC,28574 +Sealevel,NC,28577 +Seven Springs,NC,28578 +Smyrna,NC,28579 +Snow Hill,NC,28580 +Stacy,NC,28581 +Stella,NC,28582 +Swansboro,NC,28584 +Trenton,NC,28585 +Vanceboro,NC,28586 +Vandemere,NC,28587 +Winterville,NC,28590 +Emerald Isle,NC,28594 +Hickory,NC,28601 +Hickory,NC,28602 +Banner Elk,NC,28604 +Blowing Rock,NC,28605 +Boomer,NC,28606 +Boone,NC,28607 +Catawba,NC,28609 +Claremont,NC,28610 +Collettsville,NC,28611 +Connellys Spring,NC,28612 +Conover,NC,28613 +Creston,NC,28615 +Crumpler,NC,28617 +Deep Gap,NC,28618 +Elkin,NC,28621 +Elk Park,NC,28622 +Ennice,NC,28623 +Ferguson,NC,28624 +Fleetwood,NC,28626 +Glade Valley,NC,28627 +Granite Falls,NC,28630 +Grassy Creek,NC,28631 +Harmony,NC,28634 +Hays,NC,28635 +Hiddenite,NC,28636 +Hudson,NC,28638 +Jefferson,NC,28640 +Jonesville,NC,28642 +Lansing,NC,28643 +Laurel Springs,NC,28644 +Lenoir,NC,28645 +Longisland,NC,28648 +Mc Grady,NC,28649 +Maiden,NC,28650 +Millers Creek,NC,28651 +Moravian Falls,NC,28654 +Morganton,NC,28655 +Frank,NC,28657 +Newton,NC,28658 +North Wilkesboro,NC,28659 +Olin,NC,28660 +Purlear,NC,28665 +Roaring Gap,NC,28668 +Roaring River,NC,28669 +Ronda,NC,28670 +Sherrills Ford,NC,28673 +Sparta,NC,28675 +State Road,NC,28676 +Statesville,NC,28677 +Stony Point,NC,28678 +Sugar Grove,NC,28679 +Taylorsville,NC,28681 +Terrell,NC,28682 +Thurmond,NC,28683 +Todd,NC,28684 +Traphill,NC,28685 +Triplett,NC,28686 +Union Grove,NC,28689 +Valdese,NC,28690 +Valle Crucis,NC,28691 +Vilas,NC,28692 +Warrensville,NC,28693 +West Jefferson,NC,28694 +Wilkesboro,NC,28697 +Zionville,NC,28698 +Alexander,NC,28701 +Almond,NC,28702 +Aquone,NC,28703 +Arden,NC,28704 +Bakersville,NC,28705 +Balsam Grove,NC,28708 +Barnardsville,NC,28709 +Black Mountain S,NC,28711 +Brevard,NC,28712 +Bryson City,NC,28713 +Burnsville,NC,28714 +Candler,NC,28715 +Canton,NC,28716 +Cashiers,NC,28717 +Cherokee,NC,28719 +Clyde,NC,28721 +Columbus,NC,28722 +Cullowhee,NC,28723 +East Flat Rock,NC,28726 +Etowah,NC,28729 +Fairview,NC,28730 +Flat Rock,NC,28731 +Fletcher,NC,28732 +Fontana Dam,NC,28733 +Franklin,NC,28734 +Gerton,NC,28735 +Glenville,NC,28736 +Hazelwood,NC,28738 +Hendersonville,NC,28739 +Greenmountain,NC,28740 +Highlands,NC,28741 +Horse Shoe,NC,28742 +Hot Springs,NC,28743 +Lake Junaluska,NC,28745 +Lake Lure,NC,28746 +Lake Toxaway,NC,28747 +Leicester,NC,28748 +Maggie Valley,NC,28751 +Marion,NC,28752 +Walnut,NC,28753 +Mars Hill,NC,28754 +Mill Spring,NC,28756 +Nebo,NC,28761 +Old Fort,NC,28762 +Otto,NC,28763 +Penrose,NC,28766 +Pisgah Forest,NC,28768 +Robbinsville,NC,28771 +Rosman,NC,28772 +Saluda,NC,28773 +Sapphire,NC,28774 +Scaly Mountain,NC,28775 +Spruce Pine,NC,28777 +Warren Wilson Co,NC,28778 +Sylva,NC,28779 +Tapoco,NC,28780 +Topton,NC,28781 +Tryon,NC,28782 +Tuckasegee,NC,28783 +Waynesville,NC,28786 +Weaverville,NC,28787 +Whittier,NC,28789 +Zirconia,NC,28790 +Hendersonville,NC,28792 +Asheville,NC,28801 +Asheville,NC,28803 +Asheville,NC,28804 +Asheville,NC,28805 +Asheville,NC,28806 +Andrews,NC,28901 +Brasstown,NC,28902 +Hayesville,NC,28904 +Marble,NC,28905 +Unaka,NC,28906 +Warne,NC,28909 +Absaraka,ND,58002 +Alice,ND,58003 +Amenia,ND,58004 +Argusville,ND,58005 +Arthur,ND,58006 +Ayr,ND,58007 +Barney,ND,58008 +Blanchard,ND,58009 +Buffalo,ND,58011 +Casselton,ND,58012 +Cayuga,ND,58013 +Chaffee,ND,58014 +Christine,ND,58015 +Clifford,ND,58016 +Brampton,ND,58017 +Colfax,ND,58018 +Davenport,ND,58021 +Enderlin,ND,58027 +Erie,ND,58029 +Fairmount,ND,58030 +Fingal,ND,58031 +Forman,ND,58032 +Englevale,ND,58033 +Galesburg,ND,58035 +Gardner,ND,58036 +Grandin,ND,58038 +Great Bend,ND,58039 +Crete,ND,58040 +Hankinson,ND,58041 +Prosper,ND,58042 +Havana,ND,58043 +Kelso,ND,58045 +Colgate,ND,58046 +Hickson,ND,58047 +Hunter,ND,58048 +Hastings,ND,58049 +Kindred,ND,58051 +Leonard,ND,58052 +Geneseo,ND,58053 +Elliott,ND,58054 +Luverne,ND,58056 +Mcleod,ND,58057 +Mantador,ND,58058 +Durbin,ND,58059 +Delamere,ND,58060 +Mooreton,ND,58061 +Nome,ND,58062 +Oriska,ND,58063 +Page,ND,58064 +Rutland,ND,58067 +Sheldon,ND,58068 +Stirum,ND,58069 +Tower City,ND,58071 +Valley City,ND,58072 +Dwight,ND,58075 +Walcott,ND,58077 +Riverside,ND,58078 +Embden,ND,58079 +Wyndmere,ND,58081 +North River,ND,58102 +Fargo,ND,58103 +Briarwood,ND,58104 +Grand Forks,ND,58201 +Grand Forks,ND,58203 +Grand Forks,ND,58205 +Adams,ND,58210 +Aneta,ND,58212 +Ardoch,ND,58213 +Arvilla,ND,58214 +Bathgate,ND,58216 +Buxton,ND,58218 +Caledonia,ND,58219 +Concrete,ND,58220 +Crystal,ND,58222 +Cummings,ND,58223 +Dahlen,ND,58224 +Bowesmont,ND,58225 +Gardar,ND,58227 +Emerado,ND,58228 +Fairdale,ND,58229 +Finley,ND,58230 +Fordville,ND,58231 +Forest River,ND,58233 +Honeyford,ND,58235 +Nash,ND,58237 +Hamilton,ND,58238 +Hannah,ND,58239 +Hatton,ND,58240 +Hensel,ND,58241 +Hoople,ND,58243 +Orr,ND,58244 +58245,ND,58245 +58246,ND,58246 +Langdon,ND,58249 +Lankin,ND,58250 +Mccanna,ND,58251 +Kloten,ND,58254 +Maida,ND,58255 +Manvel,ND,58256 +Mayville,ND,58257 +Mekinock,ND,58258 +Whitman,ND,58259 +Milton,ND,58260 +Voss,ND,58261 +Mountain,ND,58262 +58264,ND,58264 +Neche,ND,58265 +Niagara,ND,58266 +Kempton,ND,58267 +Osnabrock,ND,58269 +Park River,ND,58270 +Joliette,ND,58271 +Petersburg,ND,58272 +Pisek,ND,58273 +Portland,ND,58274 +Reynolds,ND,58275 +Saint Thomas,ND,58276 +Sharon,ND,58277 +Thompson,ND,58278 +Wales,ND,58281 +Backoo,ND,58282 +Devils Lake,ND,58301 +Loma,ND,58311 +Barton,ND,58315 +Belcourt,ND,58316 +Bisbee,ND,58317 +Bottineau,ND,58318 +Bremen,ND,58319 +Brinsmade,ND,58320 +Brocket,ND,58321 +Calvin,ND,58323 +Maza,ND,58324 +Churchs Ferry,ND,58325 +Southam,ND,58327 +Doyon,ND,58328 +San Haven,ND,58329 +Edmore,ND,58330 +Egeland,ND,58331 +Fillmore,ND,58332 +Hamberg,ND,58337 +Hampden,ND,58338 +Hansboro,ND,58339 +Manfred,ND,58341 +Heimdal,ND,58342 +Knox,ND,58343 +Mapes,ND,58344 +Lawton,ND,58345 +Harlow,ND,58346 +Flora,ND,58348 +Minnewaukan,ND,58351 +Calio,ND,58352 +Mylo,ND,58353 +Brantford,ND,58356 +Oberon,ND,58357 +Overly,ND,58360 +Pekin,ND,58361 +Penn,ND,58362 +Perth,ND,58363 +Rocklake,ND,58365 +Nanson,ND,58366 +Rolla,ND,58367 +Pleasant Lake,ND,58368 +Saint John,ND,58369 +Saint Michael,ND,58370 +Sarles,ND,58372 +58373,ND,58373 +Sheyenne,ND,58374 +Starkweather,ND,58377 +Hamar,ND,58380 +Warwick,ND,58381 +Webster,ND,58382 +Willow City,ND,58384 +Wolford,ND,58385 +Baker,ND,58386 +Eldridge,ND,58401 +Alfred,ND,58411 +Arena,ND,58412 +Ashley,ND,58413 +Berlin,ND,58415 +Binford,ND,58416 +Bowdon,ND,58418 +Buchanan,ND,58420 +Bordulac,ND,58421 +Emrick,ND,58422 +Chaseley,ND,58423 +Windsor,ND,58424 +Cooperstown,ND,58425 +Courtenay,ND,58426 +Dawson,ND,58428 +Sibley,ND,58429 +Denhoff,ND,58430 +Dickey,ND,58431 +Eckelson,ND,58432 +Merricourt,ND,58433 +Ellendale,ND,58436 +Fessenden,ND,58438 +Forbes,ND,58439 +Fredonia,ND,58440 +Fullerton,ND,58441 +Gackle,ND,58442 +Juanita,ND,58443 +Goodrich,ND,58444 +Grace City,ND,58445 +Walum,ND,58448 +Heaton,ND,58450 +Hurdsfield,ND,58451 +Nortonville,ND,58454 +Kensal,ND,58455 +Kulm,ND,58456 +Grand Rapids,ND,58458 +Lehr,ND,58460 +Litchville,ND,58461 +Mcclusky,ND,58463 +Mchenry,ND,58464 +Manfred,ND,58465 +Marion,ND,58466 +Medina,ND,58467 +Monango,ND,58471 +Adrian,ND,58472 +Guelph,ND,58474 +Pettibone,ND,58475 +Edmunds,ND,58476 +Regan,ND,58477 +Lake Williams,ND,58478 +Leal,ND,58479 +Sanborn,ND,58480 +Spiritwood,ND,58481 +Steele,ND,58482 +Streeter,ND,58483 +Sutton,ND,58484 +Sykeston,ND,58486 +Tappen,ND,58487 +Tuttle,ND,58488 +Venturia,ND,58489 +Verona,ND,58490 +Wimbledon,ND,58492 +Wing,ND,58494 +Burnstad,ND,58495 +Woodworth,ND,58496 +Ypsilanti,ND,58497 +Bismarck,ND,58501 +Lincoln,ND,58504 +Almont,ND,58520 +Baldwin,ND,58521 +Beulah,ND,58523 +Braddock,ND,58524 +Cannon Ball,ND,58528 +Carson,ND,58529 +Fort Clark,ND,58530 +Coleharbor,ND,58531 +Driscoll,ND,58532 +Heil,ND,58533 +Lark,ND,58535 +Huff,ND,58537 +Fort Yates,ND,58538 +Emmet,ND,58540 +Golden Valley,ND,58541 +Hague,ND,58542 +Hazelton,ND,58544 +Hazen,ND,58545 +Kintyre,ND,58549 +Leith,ND,58551 +Temvik,ND,58552 +Mckenzie,ND,58553 +Mandan,ND,58554 +Menoken,ND,58558 +Mercer,ND,58559 +Moffit,ND,58560 +Napoleon,ND,58561 +Bentley,ND,58562 +Hannover,ND,58563 +Raleigh,ND,58564 +Riverdale,ND,58565 +Saint Anthony,ND,58566 +Selfridge,ND,58568 +Shields,ND,58569 +Breien,ND,58570 +Stanton,ND,58571 +Sterling,ND,58572 +Strasburg,ND,58573 +Turtle Lake,ND,58575 +Underwood,ND,58576 +Washburn,ND,58577 +Wilton,ND,58579 +Zap,ND,58580 +Zeeland,ND,58581 +New Hradec,ND,58601 +Amidon,ND,58620 +Beach,ND,58621 +Fryburg,ND,58622 +Bowman,ND,58623 +Dodge,ND,58625 +Dunn Center,ND,58626 +Gorham,ND,58627 +Gladstone,ND,58630 +Glen Ullin,ND,58631 +Golva,ND,58632 +Grassy Butte,ND,58634 +Werner,ND,58636 +Hebron,ND,58638 +Bucyrus,ND,58639 +Killdeer,ND,58640 +Lefor,ND,58641 +Manning,ND,58642 +Marmarth,ND,58643 +Medora,ND,58645 +Burt,ND,58646 +New England,ND,58647 +Reeder,ND,58649 +Regent,ND,58650 +Rhame,ND,58651 +Richardton,ND,58652 +Gascoyne,ND,58653 +Sentinel Butte,ND,58654 +South Heart,ND,58655 +Taylor,ND,58656 +Trotters,ND,58657 +Minot,ND,58701 +Minot Afb,ND,58704 +Anamoose,ND,58710 +Antler,ND,58711 +Balfour,ND,58712 +Bantry,ND,58713 +Benedict,ND,58716 +Blaisdell,ND,58718 +Coteau,ND,58721 +Burlington,ND,58722 +Butte,ND,58723 +Carpio,ND,58725 +Larson,ND,58727 +Crosby,ND,58730 +Deering,ND,58731 +Des Lacs,ND,58733 +Donnybrook,ND,58734 +Douglas,ND,58735 +Drake,ND,58736 +Northgate,ND,58737 +Foxholm,ND,58738 +Gardena,ND,58739 +Wolseth,ND,58740 +Granville,ND,58741 +Karlsruhe,ND,58744 +Coulee,ND,58746 +Kief,ND,58747 +Kramer,ND,58748 +Lansford,ND,58750 +Lignite,ND,58752 +Mcgregor,ND,58755 +Makoti,ND,58756 +Mandaree,ND,58757 +Martin,ND,58758 +Max,ND,58759 +Maxbass,ND,58760 +Loraine,ND,58761 +Newburg,ND,58762 +Charlson,ND,58763 +Noonan,ND,58765 +Norwich,ND,58768 +Palermo,ND,58769 +Parshall,ND,58770 +Plaza,ND,58771 +Portal,ND,58772 +Battleview,ND,58773 +Roseglen,ND,58775 +Ross,ND,58776 +Ruso,ND,58778 +Raub,ND,58779 +Sawyer,ND,58781 +Sherwood,ND,58782 +Carbury,ND,58783 +Belden,ND,58784 +Surrey,ND,58785 +Tolley,ND,58787 +Berwick,ND,58788 +Upham,ND,58789 +Velva,ND,58790 +Bergen,ND,58792 +Westhope,ND,58793 +White Earth,ND,58794 +Hamlet,ND,58795 +Bonetraill,ND,58801 +Appam,ND,58830 +Rawson,ND,58831 +Ambrose,ND,58833 +Arnegard,ND,58835 +Cartwright,ND,58838 +Springbrook,ND,58843 +Colgan,ND,58844 +Alkabo,ND,58845 +Keene,ND,58847 +Wheelock,ND,58849 +Temple,ND,58852 +Trenton,ND,58853 +Watford City,ND,58854 +Zahl,ND,58856 +Alexandria,OH,43001 +Amlin,OH,43002 +Ashley,OH,43003 +Blacklick,OH,43004 +Brinkhaven,OH,43006 +Cable,OH,43009 +Centerburg,OH,43011 +Croton,OH,43013 +Danville,OH,43014 +Delaware,OH,43015 +Dublin,OH,43017 +Fredericktown,OH,43019 +Galena,OH,43021 +Gambier,OH,43022 +Granville,OH,43023 +Hebron,OH,43025 +Hilliard,OH,43026 +Howard,OH,43028 +Irwin,OH,43029 +Johnstown,OH,43031 +Magnetic Springs,OH,43036 +Martinsburg,OH,43037 +Marysville,OH,43040 +Mechanicsburg,OH,43044 +Milford Center,OH,43045 +Millersport,OH,43046 +Mount Vernon,OH,43050 +New Albany,OH,43054 +Newark,OH,43055 +Heath,OH,43056 +North Lewisburg,OH,43060 +Ostrander,OH,43061 +Pataskala,OH,43062 +Plain City,OH,43064 +Shawnee Hills,OH,43065 +Radnor,OH,43066 +Raymond,OH,43067 +Reynoldsburg,OH,43068 +Saint Louisville,OH,43071 +Saint Paris,OH,43072 +Sunbury,OH,43074 +Thornville,OH,43076 +Urbana,OH,43078 +Utica,OH,43080 +Westerville,OH,43081 +Woodstock,OH,43084 +Worthington,OH,43085 +Amanda,OH,43102 +Ashville,OH,43103 +Baltimore,OH,43105 +Bloomingburg,OH,43106 +Hide A Way Hills,OH,43107 +Canal Winchester,OH,43110 +Carroll,OH,43112 +Circleville,OH,43113 +Clarksburg,OH,43115 +Galloway,OH,43119 +Grove City,OH,43123 +Groveport,OH,43125 +Jeffersonville,OH,43128 +Lancaster,OH,43130 +Laurelville,OH,43135 +Lockbourne,OH,43137 +Logan,OH,43138 +London,OH,43140 +Mount Sterling,OH,43143 +New Holland,OH,43145 +Orient,OH,43146 +Pickerington,OH,43147 +Pleasantville,OH,43148 +Rockbridge,OH,43149 +Rushville,OH,43150 +South Bloomingvi,OH,43152 +South Solon,OH,43153 +Stoutsville,OH,43154 +Sugar Grove,OH,43155 +Washington Court,OH,43160 +West Jefferson,OH,43162 +Williamsport,OH,43164 +Columbus,OH,43201 +Columbus,OH,43202 +Columbus,OH,43203 +Columbus,OH,43204 +Columbus,OH,43205 +Columbus,OH,43206 +Columbus,OH,43207 +Bexley,OH,43209 +Columbus,OH,43210 +Columbus,OH,43211 +Columbus,OH,43212 +Whitehall,OH,43213 +Columbus,OH,43214 +Columbus,OH,43215 +Columbus,OH,43217 +Shepard,OH,43219 +Columbus,OH,43220 +Upper Arlington,OH,43221 +Columbus,OH,43222 +Columbus,OH,43223 +Columbus,OH,43224 +Columbus,OH,43227 +Lincoln Village,OH,43228 +Columbus,OH,43229 +Gahanna,OH,43230 +Columbus,OH,43231 +Columbus,OH,43232 +West Worthington,OH,43235 +Marion,OH,43302 +Belle Center,OH,43310 +Bellefontaine,OH,43311 +Caledonia,OH,43314 +Cardington,OH,43315 +Carey,OH,43316 +De Graff,OH,43318 +East Liberty,OH,43319 +Edison,OH,43320 +Fulton,OH,43321 +Harpster,OH,43323 +Huntsville,OH,43324 +Kenton,OH,43326 +Lakeview,OH,43331 +La Rue,OH,43332 +Lewistown,OH,43333 +Marengo,OH,43334 +Martel,OH,43335 +Morral,OH,43337 +Mount Gilead,OH,43338 +Mount Victory,OH,43340 +New Bloomington,OH,43341 +Prospect,OH,43342 +Quincy,OH,43343 +Richwood,OH,43344 +Ridgeway,OH,43345 +Roundhead,OH,43346 +Rushsylvania,OH,43347 +Russells Point,OH,43348 +Sparta,OH,43350 +Upper Sandusky,OH,43351 +Waldo,OH,43356 +West Liberty,OH,43357 +West Mansfield,OH,43358 +Wharton,OH,43359 +Zanesfield,OH,43360 +Bowling Green,OH,43402 +Bradner,OH,43406 +Burgoon,OH,43407 +Clyde,OH,43410 +Curtice,OH,43412 +Cygnet,OH,43413 +Elmore,OH,43416 +Fremont,OH,43420 +Genoa,OH,43430 +Gibsonburg,OH,43431 +Elliston,OH,43432 +Millersville,OH,43435 +Isle Saint Georg,OH,43436 +Kelleys Island,OH,43438 +Lacarne,OH,43439 +Lakeside,OH,43440 +Lindsey,OH,43442 +Luckey,OH,43443 +Bono,OH,43445 +Millbury,OH,43447 +Oak Harbor,OH,43449 +Pemberville,OH,43450 +Portage,OH,43451 +Port Clinton,OH,43452 +Put In Bay,OH,43456 +Risingsun,OH,43457 +Rossford,OH,43460 +Rudolph,OH,43462 +Vickery,OH,43464 +Walbridge,OH,43465 +Wayne,OH,43466 +Woodville,OH,43469 +Alvordton,OH,43501 +Archbold,OH,43502 +Berkey,OH,43504 +Bryan,OH,43506 +Custar,OH,43511 +Defiance,OH,43512 +Delta,OH,43515 +Deshler,OH,43516 +Edgerton,OH,43517 +Edon,OH,43518 +Fayette,OH,43521 +Grand Rapids,OH,43522 +Hamler,OH,43524 +Haskins,OH,43525 +Hicksville,OH,43526 +Holgate,OH,43527 +Holland,OH,43528 +Liberty Center,OH,43532 +Lyons,OH,43533 +Mc Clure,OH,43534 +Malinta,OH,43535 +Mark Center,OH,43536 +Maumee,OH,43537 +Metamora,OH,43540 +Monclova,OH,43542 +Montpelier,OH,43543 +Napoleon,OH,43545 +New Bavaria,OH,43548 +Ney,OH,43549 +Perrysburg,OH,43551 +Pioneer,OH,43554 +Sherwood,OH,43556 +Stryker,OH,43557 +Swanton,OH,43558 +Sylvania,OH,43560 +Waterville,OH,43566 +Wauseon,OH,43567 +Weston,OH,43569 +West Unity,OH,43570 +Whitehouse,OH,43571 +Toledo,OH,43602 +Toledo,OH,43604 +Oregon,OH,43605 +Toledo,OH,43606 +Toledo,OH,43607 +Toledo,OH,43608 +Toledo,OH,43609 +Toledo,OH,43610 +Toledo,OH,43611 +Toledo,OH,43612 +Toledo,OH,43613 +Toledo,OH,43614 +Toledo,OH,43615 +Oregon,OH,43616 +Toledo,OH,43617 +Oregon,OH,43618 +Northwood,OH,43619 +Toledo,OH,43620 +Toledo,OH,43623 +Toledo,OH,43624 +Sonora,OH,43701 +Somerton,OH,43713 +Beallsville,OH,43716 +Belmont,OH,43718 +Bethesda,OH,43719 +Blue Rock,OH,43720 +Byesville,OH,43723 +Caldwell,OH,43724 +Claysville,OH,43725 +Chandlersville,OH,43727 +Chesterhill,OH,43728 +Hemlock,OH,43730 +Crooksville,OH,43731 +Cumberland,OH,43732 +Duncan Falls,OH,43734 +Glenford,OH,43739 +Hopewell,OH,43746 +Jerusalem,OH,43747 +Junction City,OH,43748 +Guernsey,OH,43749 +Lewisville,OH,43754 +Lore City,OH,43755 +Mc Connelsville,OH,43756 +Malta,OH,43758 +Mount Perry,OH,43760 +New Concord,OH,43762 +New Lexington,OH,43764 +New Straitsville,OH,43766 +Norwich,OH,43767 +Philo,OH,43771 +Pleasant City,OH,43772 +Quaker City,OH,43773 +Roseville,OH,43777 +Salesville,OH,43778 +Sarahsville,OH,43779 +Senecaville,OH,43780 +Shawnee,OH,43782 +Somerset,OH,43783 +Pennsville,OH,43787 +Summerfield,OH,43788 +Antioch,OH,43793 +Adamsville,OH,43802 +Baltic,OH,43804 +Conesville,OH,43811 +Coshocton,OH,43812 +Adams Mills,OH,43821 +Frazeysburg,OH,43822 +Fresno,OH,43824 +Nashport,OH,43830 +Newcomerstown,OH,43832 +Port Washington,OH,43837 +Stone Creek,OH,43840 +Walhonding,OH,43843 +Warsaw,OH,43844 +West Lafayette,OH,43845 +Adena,OH,43901 +Alledonia,OH,43902 +Amsterdam,OH,43903 +Bellaire,OH,43906 +Moorefield,OH,43907 +Bergholz,OH,43908 +Bloomingdale,OH,43910 +Bridgeport,OH,43912 +Brilliant,OH,43913 +Clarington,OH,43915 +Dillonvale,OH,43917 +Calcutta,OH,43920 +Hammondsville,OH,43930 +Irondale,OH,43932 +Armstrong Mills,OH,43933 +Martins Ferry,OH,43935 +Mingo Junction,OH,43938 +Powhatan Point,OH,43942 +Rayland,OH,43943 +Richmond,OH,43944 +Salineville,OH,43945 +Sardis,OH,43946 +Shadyside,OH,43947 +Saint Clairsvill,OH,43950 +Wintersville,OH,43952 +Tiltonsville,OH,43963 +Toronto,OH,43964 +Wellsville,OH,43968 +Yorkville,OH,43971 +Freeport,OH,43973 +Hopedale,OH,43976 +Flushing,OH,43977 +Piedmont,OH,43983 +Jewett,OH,43986 +Scio,OH,43988 +South Amherst,OH,44001 +Andover,OH,44003 +Ashtabula,OH,44004 +Austinburg,OH,44010 +Avon,OH,44011 +Avon Lake,OH,44012 +Berea,OH,44017 +Burton,OH,44021 +Chagrin Falls,OH,44022 +Chardon,OH,44024 +Chesterland,OH,44026 +Columbia Station,OH,44028 +Conneaut,OH,44030 +Dorset,OH,44032 +Elyria,OH,44035 +North Ridgeville,OH,44039 +Gates Mills,OH,44040 +Geneva,OH,44041 +Grafton,OH,44044 +Huntsburg,OH,44046 +Jefferson,OH,44047 +Kingsville,OH,44048 +Lagrange,OH,44050 +Lorain,OH,44052 +Lorain,OH,44053 +Sheffield Lake,OH,44054 +Lorain,OH,44055 +Macedonia,OH,44056 +Madison,OH,44057 +Mentor,OH,44060 +Middlefield,OH,44062 +Montville,OH,44064 +Newbury,OH,44065 +Northfield,OH,44067 +North Olmsted,OH,44070 +Novelty,OH,44072 +Oberlin,OH,44074 +East Orwell,OH,44076 +Fairport Harbor,OH,44077 +Perry,OH,44081 +Pierpont,OH,44082 +Roaming Shores,OH,44084 +Roaming Shores,OH,44085 +Thompson,OH,44086 +Twinsburg,OH,44087 +Vermilion,OH,44089 +Wellington,OH,44090 +Wickliffe,OH,44092 +Williamsfield,OH,44093 +Willoughby,OH,44094 +Willowick,OH,44095 +Windsor,OH,44099 +Cleveland,OH,44102 +Cleveland,OH,44103 +Cleveland,OH,44104 +Cleveland,OH,44105 +Cleveland,OH,44106 +Edgewater,OH,44107 +Cleveland,OH,44108 +Cleveland,OH,44109 +Cleveland,OH,44110 +Cleveland,OH,44111 +East Cleveland,OH,44112 +Cleveland,OH,44113 +Cleveland,OH,44114 +Cleveland,OH,44115 +Rocky River,OH,44116 +Euclid,OH,44117 +Cleveland Height,OH,44118 +Cleveland,OH,44119 +Cleveland,OH,44120 +South Euclid,OH,44121 +Beachwood,OH,44122 +Shore,OH,44123 +Lyndhurst Mayfie,OH,44124 +Garfield Heights,OH,44125 +Fairview Park,OH,44126 +Cleveland,OH,44127 +Cleveland,OH,44128 +Parma,OH,44129 +Midpark,OH,44130 +Independence,OH,44131 +Noble,OH,44132 +North Royalton,OH,44133 +Parma,OH,44134 +Cleveland,OH,44135 +Strongsville,OH,44136 +Maple Heights,OH,44137 +Olmsted Falls,OH,44138 +Solon,OH,44139 +Bay Village,OH,44140 +Brecksville,OH,44141 +Brookpark,OH,44142 +Richmond Heights,OH,44143 +Brooklyn,OH,44144 +Westlake,OH,44145 +Bedford,OH,44146 +Broadview Height,OH,44147 +Atwater,OH,44201 +Reminderville,OH,44202 +Norton,OH,44203 +Brunswick,OH,44212 +Burbank,OH,44214 +Chippewa Lake,OH,44215 +Clinton,OH,44216 +Creston,OH,44217 +Cuyahoga Falls,OH,44221 +Cuyahoga Falls,OH,44223 +Stow,OH,44224 +Doylestown,OH,44230 +Garrettsville,OH,44231 +Hinckley,OH,44233 +Hiram,OH,44234 +Homerville,OH,44235 +Hudson,OH,44236 +Kent,OH,44240 +Streetsboro,OH,44241 +Litchfield,OH,44253 +Lodi,OH,44254 +Mantua,OH,44255 +Medina,OH,44256 +Mogadore,OH,44260 +Munroe Falls,OH,44262 +Peninsula,OH,44264 +Ravenna,OH,44266 +Rittman,OH,44270 +Rootstown,OH,44272 +Seville,OH,44273 +Spencer,OH,44275 +Sterling,OH,44276 +Tallmadge,OH,44278 +Valley City,OH,44280 +Wadsworth,OH,44281 +Richfield,OH,44286 +West Salem,OH,44287 +Windham,OH,44288 +Akron,OH,44301 +Akron,OH,44302 +Akron,OH,44303 +Akron,OH,44304 +Akron,OH,44305 +Akron,OH,44306 +Akron,OH,44307 +Akron,OH,44308 +Akron,OH,44310 +Akron,OH,44311 +Akron,OH,44312 +Akron,OH,44313 +Akron,OH,44314 +Akron,OH,44319 +Akron,OH,44320 +Copley,OH,44321 +Fairlawn,OH,44333 +Berlin Center,OH,44401 +Bristolville,OH,44402 +Brookfield,OH,44403 +Burghill,OH,44404 +Campbell,OH,44405 +Canfield,OH,44406 +Columbiana,OH,44408 +Cortland,OH,44410 +Deerfield,OH,44411 +Diamond,OH,44412 +East Palestine,OH,44413 +Farmdale,OH,44417 +Fowler,OH,44418 +Girard,OH,44420 +Hanoverton,OH,44423 +Hubbard,OH,44425 +Kensington,OH,44427 +Kinsman,OH,44428 +Lake Milton,OH,44429 +Leavittsburg,OH,44430 +Leetonia,OH,44431 +Lisbon,OH,44432 +Lowellville,OH,44436 +Mc Donald,OH,44437 +Masury,OH,44438 +Mineral Ridge,OH,44440 +Negley,OH,44441 +New Middletown,OH,44442 +New Springfield,OH,44443 +Newton Falls,OH,44444 +New Waterford,OH,44445 +Niles,OH,44446 +North Benton,OH,44449 +North Bloomfield,OH,44450 +North Jackson,OH,44451 +North Lima,OH,44452 +Petersburg,OH,44454 +Rogers,OH,44455 +Salem,OH,44460 +Southington,OH,44470 +Struthers,OH,44471 +Vienna,OH,44473 +Warren,OH,44481 +Warren,OH,44483 +Warren,OH,44484 +Warren,OH,44485 +Washingtonville,OH,44490 +West Farmington,OH,44491 +Youngstown,OH,44502 +Youngstown,OH,44503 +Youngstown,OH,44504 +Youngstown,OH,44505 +Youngstown,OH,44506 +Youngstown,OH,44507 +Youngstown,OH,44509 +Youngstown,OH,44510 +Youngstown,OH,44511 +Boardman,OH,44512 +Poland,OH,44514 +Austintown,OH,44515 +Alliance,OH,44601 +Apple Creek,OH,44606 +Beach City,OH,44608 +Beloit,OH,44609 +Big Prairie,OH,44611 +Bolivar,OH,44612 +Brewster,OH,44613 +Canal Fulton,OH,44614 +Carrollton,OH,44615 +Dalton,OH,44618 +Dellroy,OH,44620 +Dennison,OH,44621 +Dover,OH,44622 +Dundee,OH,44624 +East Rochester,OH,44625 +East Sparta,OH,44626 +Fredericksburg,OH,44627 +Glenmont,OH,44628 +Gnadenhutten,OH,44629 +Hartville,OH,44632 +Holmesville,OH,44633 +Homeworth,OH,44634 +Killbuck,OH,44637 +Lakeville,OH,44638 +Louisville,OH,44641 +Magnolia,OH,44643 +Malvern,OH,44644 +Marshallville,OH,44645 +Massillon,OH,44646 +Massillon,OH,44647 +Mechanicstown,OH,44651 +Millersburg,OH,44654 +Zoarville,OH,44656 +Minerva,OH,44657 +Navarre,OH,44662 +New Philadelphia,OH,44663 +North Lawrence,OH,44666 +Orrville,OH,44667 +Paris,OH,44669 +Sebring,OH,44672 +Sherrodsville,OH,44675 +Shreve,OH,44676 +Smithville,OH,44677 +Strasburg,OH,44680 +Sugarcreek,OH,44681 +Uhrichsville,OH,44683 +Uniontown,OH,44685 +Waynesburg,OH,44688 +Wilmot,OH,44689 +Wooster,OH,44691 +Bowerston,OH,44695 +Tippecanoe,OH,44699 +Canton,OH,44702 +Canton,OH,44703 +Canton,OH,44704 +Canton,OH,44705 +Canton,OH,44706 +North Industry,OH,44707 +Canton,OH,44708 +North Canton,OH,44709 +Canton,OH,44710 +Canton,OH,44714 +Jackson Belden,OH,44718 +North Canton,OH,44720 +Canton,OH,44721 +East Canton,OH,44730 +Alvada,OH,44802 +Arcadia,OH,44804 +Ashland,OH,44805 +Carrothers,OH,44807 +Bellevue,OH,44811 +Bellville,OH,44813 +Berlin Heights,OH,44814 +Bloomdale,OH,44817 +Bloomville,OH,44818 +Bucyrus,OH,44820 +Butler,OH,44822 +Castalia,OH,44824 +Chatfield,OH,44825 +Collins,OH,44826 +Crestline,OH,44827 +Fostoria,OH,44830 +Galion,OH,44833 +Green Springs,OH,44836 +Greenwich,OH,44837 +Shinrock,OH,44839 +Jeromesville,OH,44840 +Kansas,OH,44841 +Loudonville,OH,44842 +Lucas,OH,44843 +Mc Cutchenville,OH,44844 +Melmore,OH,44845 +Milan,OH,44846 +Monroeville,OH,44847 +Nevada,OH,44849 +New London,OH,44851 +New Riegel,OH,44853 +New Washington,OH,44854 +North Fairfield,OH,44855 +Norwalk,OH,44857 +Nova,OH,44859 +Perrysville,OH,44864 +Plymouth,OH,44865 +Polk,OH,44866 +Republic,OH,44867 +Sandusky,OH,44870 +Savannah,OH,44874 +Shelby,OH,44875 +Shiloh,OH,44878 +Sullivan,OH,44880 +Sycamore,OH,44882 +Tiffin,OH,44883 +Tiro,OH,44887 +Wakeman,OH,44889 +Willard,OH,44890 +Mansfield,OH,44902 +Mansfield,OH,44903 +Lexington,OH,44904 +Lincoln,OH,44905 +Mansfield,OH,44906 +Mansfield,OH,44907 +Addyston,OH,45001 +Cleves,OH,45002 +College Corner,OH,45003 +Carlisle,OH,45005 +Hamilton,OH,45011 +Rossville,OH,45013 +Fairfield,OH,45014 +Lindenwald,OH,45015 +Harrison,OH,45030 +Otterbien Home,OH,45036 +Maineville,OH,45039 +Mason,OH,45040 +Middletown,OH,45042 +Excello,OH,45044 +Monroe,OH,45050 +North Bend,OH,45052 +Okeana,OH,45053 +Oregonia,OH,45054 +Miami University,OH,45056 +Somerville,OH,45064 +South Lebanon,OH,45065 +Springboro,OH,45066 +Trenton,OH,45067 +Waynesville,OH,45068 +West Chester,OH,45069 +Aberdeen,OH,45101 +Amelia,OH,45102 +Batavia,OH,45103 +Bethel,OH,45106 +Blanchester,OH,45107 +Camp Dennison,OH,45111 +Clarksville,OH,45113 +Fayetteville,OH,45118 +Felicity,OH,45120 +Georgetown,OH,45121 +Goshen,OH,45122 +Greenfield,OH,45123 +Hamersville,OH,45130 +Hillsboro,OH,45133 +Leesburg,OH,45135 +Loveland,OH,45140 +Lynchburg,OH,45142 +Manchester,OH,45144 +Martinsville,OH,45146 +Midland,OH,45148 +Day Heights,OH,45150 +Morrow,OH,45152 +Moscow,OH,45153 +Mount Orab,OH,45154 +New Richmond,OH,45157 +New Vienna,OH,45159 +Pleasant Plain,OH,45162 +Ripley,OH,45167 +Russellville,OH,45168 +Sabina,OH,45169 +Sardinia,OH,45171 +Terrace Park,OH,45174 +Williamsburg,OH,45176 +Wilmington,OH,45177 +Cincinnati,OH,45202 +Cincinnati,OH,45203 +Cincinnati,OH,45204 +Cincinnati,OH,45205 +Cincinnati,OH,45206 +Cincinnati,OH,45207 +Cincinnati,OH,45208 +Cincinnati,OH,45209 +Cincinnati,OH,45210 +Cincinnati,OH,45211 +Norwood,OH,45212 +Taft,OH,45213 +Cincinnati,OH,45214 +Lockland,OH,45215 +Elmwood Place,OH,45216 +Saint Bernard,OH,45217 +Greenhills,OH,45218 +Cincinnati,OH,45219 +Cincinnati,OH,45220 +Cincinnati,OH,45223 +College Hill,OH,45224 +Cincinnati,OH,45225 +Cincinnati,OH,45226 +Madisonville,OH,45227 +Cincinnati,OH,45228 +Cincinnati,OH,45229 +Anderson,OH,45230 +Cincinnati,OH,45231 +Cincinnati,OH,45232 +Saylor Park,OH,45233 +Taft,OH,45236 +Cincinnati,OH,45237 +Western Hills,OH,45238 +Groesbeck,OH,45239 +Parkdale,OH,45240 +Sharonville,OH,45241 +Sycamore,OH,45242 +Madeira,OH,45243 +Newtown,OH,45244 +Newtown,OH,45245 +Glendale,OH,45246 +Groesbeck,OH,45247 +Westwood,OH,45248 +Sycamore,OH,45249 +Groesbeck,OH,45251 +Cincinnati,OH,45252 +Anderson,OH,45255 +Anna,OH,45302 +Ansonia,OH,45303 +Castine,OH,45304 +Bellbrook,OH,45305 +Botkins,OH,45306 +Bradford,OH,45308 +Brookville,OH,45309 +Camden,OH,45311 +Casstown,OH,45312 +Cedarville,OH,45314 +Clayton,OH,45315 +Conover,OH,45317 +Covington,OH,45318 +Eaton,OH,45320 +Eldorado,OH,45321 +Union,OH,45322 +Enon,OH,45323 +Fairborn,OH,45324 +Farmersville,OH,45325 +Fletcher,OH,45326 +Germantown,OH,45327 +Greenville,OH,45331 +Hollansburg,OH,45332 +Houston,OH,45333 +Jackson Center,OH,45334 +Jamestown,OH,45335 +Laura,OH,45337 +Lewisburg,OH,45338 +Ludlow Falls,OH,45339 +Maplewood,OH,45340 +Medway,OH,45341 +Miamisburg,OH,45342 +New Carlisle,OH,45344 +New Lebanon,OH,45345 +New Madison,OH,45346 +New Paris,OH,45347 +New Weston,OH,45348 +Piqua,OH,45356 +Pleasant Hill,OH,45359 +Rossburg,OH,45362 +Russia,OH,45363 +Sidney,OH,45365 +Selma,OH,45368 +South Vienna,OH,45369 +Spring Valley,OH,45370 +Phoneton,OH,45371 +Troy,OH,45373 +Vandalia,OH,45377 +Versailles,OH,45380 +West Alexandria,OH,45381 +West Manchester,OH,45382 +West Milton,OH,45383 +Xenia,OH,45385 +Yellow Springs,OH,45387 +Yorkshire,OH,45388 +Union City,OH,45390 +Dayton,OH,45402 +Dayton,OH,45403 +Dayton,OH,45404 +Dayton,OH,45405 +Dayton,OH,45406 +Dayton,OH,45407 +Dayton,OH,45408 +Dayton,OH,45409 +Dayton,OH,45410 +Dayton,OH,45414 +Dayton,OH,45415 +Trotwood,OH,45416 +Dayton,OH,45417 +Dayton,OH,45418 +Dayton,OH,45419 +Kettering,OH,45420 +Huber Heights,OH,45424 +Trotwood,OH,45426 +Dayton,OH,45427 +Kettering,OH,45429 +Beavercreek,OH,45430 +Beavercreek,OH,45431 +Beavercreek,OH,45432 +Dayton,OH,45433 +Beavercreek,OH,45434 +West Carrollton,OH,45439 +Dayton,OH,45440 +West Carrollton,OH,45449 +Centerville,OH,45458 +Centerville,OH,45459 +Springfield,OH,45502 +Springfield,OH,45503 +Springfield,OH,45504 +Springfield,OH,45505 +Springfield,OH,45506 +Chillicothe,OH,45601 +Bainbridge,OH,45612 +Beaver,OH,45613 +Bidwell,OH,45614 +Blue Creek,OH,45616 +Chesapeake,OH,45619 +Cheshire,OH,45620 +Creola,OH,45622 +Crown City,OH,45623 +Frankfort,OH,45628 +Franklin Furnace,OH,45629 +Gallipolis,OH,45631 +Hamden,OH,45634 +Ironton,OH,45638 +Jackson,OH,45640 +Kingston,OH,45644 +Kitts Hill,OH,45645 +Latham,OH,45646 +Londonderry,OH,45647 +Lucasville,OH,45648 +Allensville,OH,45651 +Mc Dermott,OH,45652 +Minford,OH,45653 +New Plymouth,OH,45654 +Oak Hill,OH,45656 +Otway,OH,45657 +Patriot,OH,45658 +Pedro,OH,45659 +Peebles,OH,45660 +Idaho,OH,45661 +New Boston,OH,45662 +Portsmouth,OH,45663 +Proctorville,OH,45669 +Radcliff,OH,45670 +Rarden,OH,45671 +Ray,OH,45672 +Richmond Dale,OH,45673 +Rock Camp,OH,45675 +Scottown,OH,45678 +Seaman,OH,45679 +South Point,OH,45680 +South Salem,OH,45681 +South Webster,OH,45682 +Stout,OH,45684 +Thurman,OH,45685 +Vinton,OH,45686 +Waterloo,OH,45688 +Waverly,OH,45690 +Wellston,OH,45692 +West Union,OH,45693 +Wheelersburg,OH,45694 +Willow Wood,OH,45696 +Winchester,OH,45697 +Athens,OH,45701 +Albany,OH,45710 +Amesville,OH,45711 +Belpre,OH,45714 +Beverly,OH,45715 +Coolville,OH,45723 +Cutler,OH,45724 +Dexter City,OH,45727 +Fleming,OH,45729 +Glouster,OH,45732 +Rinard Mills,OH,45734 +Guysville,OH,45735 +Dexter,OH,45741 +Little Hocking,OH,45742 +Long Bottom,OH,45743 +Lowell,OH,45744 +Warner,OH,45745 +Macksburg,OH,45746 +Marietta,OH,45750 +Middleport,OH,45760 +Millfield,OH,45761 +Nelsonville,OH,45764 +New Marshfield,OH,45766 +New Matamoras,OH,45767 +Newport,OH,45768 +Pomeroy,OH,45769 +Portland,OH,45770 +Racine,OH,45771 +Reedsville,OH,45772 +Reno,OH,45773 +45774,OH,45774 +Rutland,OH,45775 +Shade,OH,45776 +Stewart,OH,45778 +The Plains,OH,45780 +Vincent,OH,45784 +Waterford,OH,45786 +Whipple,OH,45788 +Wingett Run,OH,45789 +Lima,OH,45801 +Lima,OH,45804 +Lima,OH,45805 +Cridersville,OH,45806 +Elida,OH,45807 +Ada,OH,45810 +Alger,OH,45812 +Antwerp,OH,45813 +Arlington,OH,45814 +Bluffton,OH,45817 +Cecil,OH,45821 +Carthagena,OH,45822 +Cloverdale,OH,45827 +Coldwater,OH,45828 +Columbus Grove,OH,45830 +Continental,OH,45831 +Convoy,OH,45832 +Delphos,OH,45833 +Dola,OH,45835 +Dunkirk,OH,45836 +Findlay,OH,45840 +Jenera,OH,45841 +Patterson,OH,45843 +Fort Jennings,OH,45844 +Fort Loramie,OH,45845 +Fort Recovery,OH,45846 +Grover Hill,OH,45849 +Harrod,OH,45850 +Haviland,OH,45851 +Leipsic,OH,45856 +Mc Comb,OH,45858 +Maria Stein,OH,45860 +Mendon,OH,45862 +Middle Point,OH,45863 +Minster,OH,45865 +Mount Blanchard,OH,45867 +Mount Cory,OH,45868 +New Bremen,OH,45869 +New Knoxville,OH,45871 +North Baltimore,OH,45872 +Oakwood,OH,45873 +Ohio City,OH,45874 +Gilboa,OH,45875 +Ottoville,OH,45876 +Pandora,OH,45877 +Paulding,OH,45879 +Payne,OH,45880 +Rawson,OH,45881 +Rockford,OH,45882 +Saint Henry,OH,45883 +Saint Marys,OH,45885 +Scott,OH,45886 +Spencerville,OH,45887 +Van Buren,OH,45889 +Vanlue,OH,45890 +Van Wert,OH,45891 +Venedocia,OH,45894 +Wapakoneta,OH,45895 +Waynesfield,OH,45896 +Willshire,OH,45898 +Alex,OK,73002 +Amber,OK,73004 +Anadarko,OK,73005 +Apache,OK,73006 +Arcadia,OK,73007 +Bethany,OK,73008 +Binger,OK,73009 +Blanchard,OK,73010 +Bradley,OK,73011 +Edmond,OK,73013 +Calumet,OK,73014 +Carnegie,OK,73015 +Cashion,OK,73016 +Cement,OK,73017 +Chickasha,OK,73018 +Choctaw,OK,73020 +Colony,OK,73021 +Corn,OK,73024 +Coyle,OK,73027 +Crescent,OK,73028 +Cyril,OK,73029 +Davis,OK,73030 +Edmond,OK,73034 +Elmore City,OK,73035 +El Reno,OK,73036 +Fort Cobb,OK,73038 +Foster,OK,73039 +Geary,OK,73040 +Gotebo,OK,73041 +Gracemont,OK,73042 +Greenfield,OK,73043 +Guthrie,OK,73044 +Harrah,OK,73045 +Hennepin,OK,73046 +Hinton,OK,73047 +Hydro,OK,73048 +Jones,OK,73049 +Lexington,OK,73051 +Lindsay,OK,73052 +Lookeba,OK,73053 +Luther,OK,73054 +Marlow,OK,73055 +Marshall,OK,73056 +Maysville,OK,73057 +Meridian,OK,73058 +Minco,OK,73059 +Morrison,OK,73061 +Mountain View,OK,73062 +Mulhall,OK,73063 +Mustang,OK,73064 +Newcastle,OK,73065 +Ninnekah,OK,73067 +Noble,OK,73068 +Norman,OK,73069 +Norman,OK,73071 +Norman,OK,73072 +Orlando,OK,73073 +Paoli,OK,73074 +Pauls Valley,OK,73075 +Perry,OK,73077 +Piedmont,OK,73078 +Pocasset,OK,73079 +Purcell,OK,73080 +Ratliff City,OK,73081 +Rush Springs,OK,73082 +Spencer,OK,73084 +Sulphur,OK,73086 +Tussy,OK,73088 +Tuttle,OK,73089 +Union City,OK,73090 +Verden,OK,73092 +Washington,OK,73093 +Wayne,OK,73095 +Weatherford,OK,73096 +Wynnewood,OK,73098 +Yukon,OK,73099 +Oklahoma City,OK,73102 +Oklahoma City,OK,73103 +Oklahoma City,OK,73104 +Oklahoma City,OK,73105 +Oklahoma City,OK,73106 +Oklahoma City,OK,73107 +Oklahoma City,OK,73108 +Oklahoma City,OK,73109 +Midwest City,OK,73110 +Oklahoma City,OK,73111 +Oklahoma City,OK,73112 +Oklahoma City,OK,73114 +Del City,OK,73115 +Nichols Hills,OK,73116 +Oklahoma City,OK,73117 +Oklahoma City,OK,73118 +Oklahoma City,OK,73119 +Oklahoma City,OK,73120 +Oklahoma City,OK,73121 +Warr Acres,OK,73122 +Oklahoma City,OK,73127 +Oklahoma City,OK,73128 +Oklahoma City,OK,73129 +Midwest City,OK,73130 +Oklahoma City,OK,73131 +Warr Acres,OK,73132 +Oklahoma City,OK,73134 +Oklahoma City,OK,73135 +Oklahoma City,OK,73139 +Oklahoma City,OK,73141 +Oklahoma City,OK,73142 +Tinker Afb,OK,73145 +Oklahoma City,OK,73149 +Oklahoma City,OK,73150 +Oklahoma City,OK,73151 +Oklahoma City,OK,73159 +Moore,OK,73160 +Oklahoma City,OK,73162 +Moore,OK,73165 +Oklahoma City,OK,73169 +Moore,OK,73170 +Oklahoma City,OK,73173 +Oklahoma City,OK,73179 +Milo,OK,73401 +Burneyville,OK,73430 +Coleman,OK,73432 +Graham,OK,73437 +Healdton,OK,73438 +Kingston,OK,73439 +Lebanon,OK,73440 +Leon,OK,73441 +Loco,OK,73442 +Lone Grove,OK,73443 +Mc Millan,OK,73446 +Mannsville,OK,73447 +Marietta,OK,73448 +Mead,OK,73449 +Milburn,OK,73450 +Overbrook,OK,73453 +Ringling,OK,73456 +Springer,OK,73458 +Thackerville,OK,73459 +Tishomingo,OK,73460 +Wapanucka,OK,73461 +Rubottom,OK,73463 +Lawton,OK,73501 +Fort Sill,OK,73503 +Lawton,OK,73505 +Lawton,OK,73507 +Altus,OK,73521 +Blair,OK,73526 +Cache,OK,73527 +Chattanooga,OK,73528 +Comanche,OK,73529 +Davidson,OK,73530 +Devol,OK,73531 +Duke,OK,73532 +Duncan,OK,73533 +Eldorado,OK,73537 +Elgin,OK,73538 +Elmer,OK,73539 +Faxon,OK,73540 +Fletcher,OK,73541 +Frederick,OK,73542 +Geronimo,OK,73543 +Gould,OK,73544 +Grandfield,OK,73546 +Granite,OK,73547 +Hastings,OK,73548 +Headrick,OK,73549 +Hollis,OK,73550 +Hollister,OK,73551 +Indiahoma,OK,73552 +Loveland,OK,73553 +Reed,OK,73554 +Mountain Park,OK,73559 +Olustee,OK,73560 +Oscar,OK,73561 +Randlett,OK,73562 +Roosevelt,OK,73564 +Ryan,OK,73565 +Snyder,OK,73566 +Temple,OK,73568 +Grady,OK,73569 +Tipton,OK,73570 +Vinson,OK,73571 +Walters,OK,73572 +Waurika,OK,73573 +Clinton,OK,73601 +Arapaho,OK,73620 +Bessie,OK,73622 +Butler,OK,73625 +Canute,OK,73626 +Carter,OK,73627 +Strong City,OK,73628 +Cordell,OK,73632 +Crawford,OK,73638 +Custer City,OK,73639 +Dill City,OK,73641 +Durham,OK,73642 +Elk City,OK,73644 +Erick,OK,73645 +Fay,OK,73646 +Foss,OK,73647 +Hammon,OK,73650 +Hobart,OK,73651 +Leedey,OK,73654 +Lone Wolf,OK,73655 +Eagle City,OK,73658 +Putnam,OK,73659 +Reydon,OK,73660 +Rocky,OK,73661 +Sayre,OK,73662 +Seiling,OK,73663 +Sentinel,OK,73664 +Sweetwater,OK,73666 +Taloga,OK,73667 +Texola,OK,73668 +Thomas,OK,73669 +Willow,OK,73673 +Enid,OK,73701 +Enid,OK,73703 +Aline,OK,73716 +Alva,OK,73717 +Ames,OK,73718 +Amorita,OK,73719 +Bison,OK,73720 +Burlington,OK,73722 +Byron,OK,73723 +Canton,OK,73724 +Capron,OK,73725 +Carmen,OK,73726 +Carrier,OK,73727 +Cherokee,OK,73728 +Cleo Springs,OK,73729 +Covington,OK,73730 +Dacoma,OK,73731 +Douglas,OK,73733 +Dover,OK,73734 +Drummond,OK,73735 +Fairmont,OK,73736 +Orienta,OK,73737 +Garber,OK,73738 +Goltry,OK,73739 +Helena,OK,73741 +Hennessey,OK,73742 +Hitchcock,OK,73744 +Isabella,OK,73747 +Jet,OK,73749 +Kingfisher,OK,73750 +Kremlin,OK,73753 +Lahoma,OK,73754 +Longdale,OK,73755 +Loyal,OK,73756 +Lucien,OK,73757 +Manchester,OK,73758 +Medford,OK,73759 +Meno,OK,73760 +Nash,OK,73761 +Okarche,OK,73762 +Okeene,OK,73763 +Omega,OK,73764 +Pond Creek,OK,73766 +Ringwood,OK,73768 +Southard,OK,73770 +Wakita,OK,73771 +Watonga,OK,73772 +Waukomis,OK,73773 +Woodward,OK,73801 +Harmon,OK,73832 +Selman,OK,73834 +Camargo,OK,73835 +Chester,OK,73838 +Fargo,OK,73840 +Fort Supply,OK,73841 +Freedom,OK,73842 +Gage,OK,73843 +Gate,OK,73844 +Knowles,OK,73847 +Laverne,OK,73848 +Logan,OK,73849 +May,OK,73851 +Mooreland,OK,73852 +Mutual,OK,73853 +Rosston,OK,73855 +Sharon,OK,73857 +Shattuck,OK,73858 +Vici,OK,73859 +Waynoka,OK,73860 +Balko,OK,73931 +Elmwood,OK,73932 +Boise City,OK,73933 +Felt,OK,73937 +Forgan,OK,73938 +Goodwell,OK,73939 +Guymon,OK,73942 +Hardesty,OK,73944 +Optima,OK,73945 +Kenton,OK,73946 +Keyes,OK,73947 +Texhoma,OK,73949 +Baker,OK,73950 +Tyrone,OK,73951 +Barnsdall,OK,74002 +Bartlesville,OK,74003 +Bartlesville,OK,74006 +Bixby,OK,74008 +Bristow,OK,74010 +Broken Arrow,OK,74011 +Broken Arrow,OK,74012 +Broken Arrow,OK,74014 +Catoosa,OK,74015 +Chelsea,OK,74016 +Claremore,OK,74017 +Cleveland,OK,74020 +Collinsville,OK,74021 +Copan,OK,74022 +Cushing,OK,74023 +Delaware,OK,74027 +Depew,OK,74028 +Dewey,OK,74029 +Drumright,OK,74030 +Glencoe,OK,74032 +Glenpool,OK,74033 +Hominy,OK,74035 +Inola,OK,74036 +Jenks,OK,74037 +Jennings,OK,74038 +Kellyville,OK,74039 +Lenapah,OK,74042 +Mannford,OK,74044 +Maramec,OK,74045 +Mounds,OK,74047 +Nowata,OK,74048 +Ochelata,OK,74051 +Oologah,OK,74053 +Osage,OK,74054 +Owasso,OK,74055 +Pawhuska,OK,74056 +Pawnee,OK,74058 +Perkins,OK,74059 +Prue,OK,74060 +Ramona,OK,74061 +Ripley,OK,74062 +Sand Springs,OK,74063 +Sapulpa,OK,74066 +Skiatook,OK,74070 +S Coffeyville,OK,74072 +Sperry,OK,74073 +Stillwater,OK,74074 +Stillwater,OK,74075 +Kendrick,OK,74079 +Talala,OK,74080 +Terlton,OK,74081 +Wann,OK,74083 +Wynona,OK,74084 +Yale,OK,74085 +Tulsa,OK,74103 +Tulsa,OK,74104 +Tulsa,OK,74105 +Tulsa,OK,74106 +Tulsa,OK,74107 +Tulsa,OK,74108 +Tulsa,OK,74110 +Tulsa,OK,74112 +Tulsa,OK,74114 +Tulsa,OK,74115 +Tulsa,OK,74116 +Tulsa,OK,74117 +Tulsa,OK,74119 +Tulsa,OK,74120 +Tulsa,OK,74126 +Tulsa,OK,74127 +Tulsa,OK,74128 +Tulsa,OK,74129 +Tulsa,OK,74130 +Tulsa,OK,74131 +Tulsa,OK,74132 +Tulsa,OK,74133 +Tulsa,OK,74134 +Tulsa,OK,74135 +Tulsa,OK,74136 +Tulsa,OK,74137 +Tulsa,OK,74145 +Tulsa,OK,74146 +Vinita,OK,74301 +Adair,OK,74330 +Bernice,OK,74331 +Big Cabin,OK,74332 +Bluejacket,OK,74333 +Chouteau,OK,74337 +Colcord,OK,74338 +Commerce,OK,74339 +Eucha,OK,74342 +Fairland,OK,74343 +Grove,OK,74344 +Jay,OK,74346 +Kansas,OK,74347 +Locust Grove,OK,74352 +Miami,OK,74354 +Oaks,OK,74359 +Picher,OK,74360 +Pryor,OK,74361 +Quapaw,OK,74363 +Leach,OK,74364 +Salina,OK,74365 +Spavinaw,OK,74366 +Strang,OK,74367 +Twin Oaks,OK,74368 +Welch,OK,74369 +Wyandotte,OK,74370 +Muskogee,OK,74401 +Muskogee,OK,74403 +Beggs,OK,74421 +Boynton,OK,74422 +Braggs,OK,74423 +Canadian,OK,74425 +Checotah,OK,74426 +Cookson,OK,74427 +Council Hill,OK,74428 +Coweta,OK,74429 +Eufaula,OK,74432 +Fort Gibson,OK,74434 +Gore,OK,74435 +Haskell,OK,74436 +Hoffman,OK,74437 +Hoyt,OK,74440 +Hulbert,OK,74441 +Indianola,OK,74442 +Morris,OK,74445 +Okmulgee,OK,74447 +Oktaha,OK,74450 +Park Hill,OK,74451 +Peggs,OK,74452 +Porter,OK,74454 +Porum,OK,74455 +Proctor,OK,74457 +Stidham,OK,74461 +Stigler,OK,74462 +Taft,OK,74463 +Tahlequah,OK,74464 +Wagoner,OK,74467 +Warner,OK,74469 +Webbers Falls,OK,74470 +Welling,OK,74471 +Whitefield,OK,74472 +Mcalester,OK,74501 +Antlers,OK,74523 +Atoka,OK,74525 +Blanco,OK,74528 +Calvin,OK,74531 +Caney,OK,74533 +Centrahoma,OK,74534 +Clayton,OK,74536 +Coalgate,OK,74538 +Daisy,OK,74540 +Farris,OK,74542 +Finley,OK,74543 +Hartshorne,OK,74547 +Haywood,OK,74548 +Honobia,OK,74549 +Kinta,OK,74552 +Kiowa,OK,74553 +Lane,OK,74555 +Moyers,OK,74557 +Nashoba,OK,74558 +Pittsburg,OK,74560 +Quinton,OK,74561 +Rattan,OK,74562 +Red Oak,OK,74563 +Snow,OK,74567 +Stringtown,OK,74569 +Stuart,OK,74570 +Talihina,OK,74571 +Tupelo,OK,74572 +Tuskahoma,OK,74574 +Wardville,OK,74576 +Whitesboro,OK,74577 +Wilburton,OK,74578 +Ponca City,OK,74601 +Ponca City,OK,74604 +Billings,OK,74630 +Blackwell,OK,74631 +Braman,OK,74632 +Burbank,OK,74633 +Deer Creek,OK,74636 +Fairfax,OK,74637 +Hunter,OK,74640 +Kaw City,OK,74641 +Lamont,OK,74643 +Marland,OK,74644 +Nardin,OK,74646 +Peckham,OK,74647 +Ralston,OK,74650 +Red Rock,OK,74651 +Foraker,OK,74652 +Tonkawa,OK,74653 +Durant,OK,74701 +Bennington,OK,74723 +Bethel,OK,74724 +Bokchito,OK,74726 +Boswell,OK,74727 +Broken Bow,OK,74728 +Caddo,OK,74729 +Calera,OK,74730 +Cartwright,OK,74731 +Colbert,OK,74733 +Eagletown,OK,74734 +Fort Towson,OK,74735 +Garvin,OK,74736 +Grant,OK,74738 +Tom,OK,74740 +Hendrix,OK,74741 +Hugo,OK,74743 +Idabel,OK,74745 +Kenefic,OK,74748 +Ringold,OK,74754 +Rufe,OK,74755 +Sawyer,OK,74756 +Soper,OK,74759 +Spencerville,OK,74760 +Valliant,OK,74764 +Wright City,OK,74766 +Shawnee,OK,74801 +Ada,OK,74820 +Agra,OK,74824 +Allen,OK,74825 +Asher,OK,74826 +Atwood,OK,74827 +Boley,OK,74829 +Byars,OK,74831 +Carney,OK,74832 +Castle,OK,74833 +Chandler,OK,74834 +Clearview,OK,74835 +Dustin,OK,74839 +Earlsboro,OK,74840 +Fittstown,OK,74842 +Fitzhugh,OK,74843 +Vernon,OK,74845 +Holdenville,OK,74848 +Konawa,OK,74849 +Lamar,OK,74850 +Mc Loud,OK,74851 +Macomb,OK,74852 +Maud,OK,74854 +Meeker,OK,74855 +Mill Creek,OK,74856 +Newalla,OK,74857 +Bearden,OK,74859 +Paden,OK,74860 +Prague,OK,74864 +Roff,OK,74865 +Sasakwa,OK,74867 +Seminole,OK,74868 +Sparks,OK,74869 +Harden City,OK,74871 +Stratford,OK,74872 +Tecumseh,OK,74873 +Tryon,OK,74875 +Wanette,OK,74878 +Weleetka,OK,74880 +Wellston,OK,74881 +Welty,OK,74882 +Wetumka,OK,74883 +New Lima,OK,74884 +Arkoma,OK,74901 +Pocola,OK,74902 +Bokoshe,OK,74930 +Bunch,OK,74931 +Cameron,OK,74932 +Heavener,OK,74937 +Hodgen,OK,74939 +Howe,OK,74940 +Keota,OK,74941 +Mccurtain,OK,74944 +Muldrow,OK,74948 +Muse,OK,74949 +Poteau,OK,74953 +Roland,OK,74954 +Sallisaw,OK,74955 +Shady Point,OK,74956 +Octavia,OK,74957 +Spiro,OK,74959 +Stilwell,OK,74960 +Vian,OK,74962 +Watson,OK,74963 +Watts,OK,74964 +Westville,OK,74965 +Wister,OK,74966 +Antelope,OR,97001 +Aurora,OR,97002 +Beavercreek,OR,97004 +Beaverton,OR,97005 +Aloha,OR,97006 +Aloha,OR,97007 +Boring,OR,97009 +Bridal Veil,OR,97010 +Brightwood,OR,97011 +Canby,OR,97013 +Bonneville,OR,97014 +Clackamas,OR,97015 +Westport,OR,97016 +Colton,OR,97017 +Columbia City,OR,97018 +Corbett,OR,97019 +Friend,OR,97021 +Eagle Creek,OR,97022 +Estacada,OR,97023 +Gervais,OR,97026 +Gladstone,OR,97027 +Timberline Lodge,OR,97028 +Grass Valley,OR,97029 +Gresham,OR,97030 +Hood River,OR,97031 +Hubbard,OR,97032 +Kent,OR,97033 +Lake Oswego,OR,97034 +Lake Oswego,OR,97035 +Maupin,OR,97037 +Molalla,OR,97038 +Moro,OR,97039 +Mosier,OR,97040 +Mount Hood Parkd,OR,97041 +Mulino,OR,97042 +Odell,OR,97044 +Oregon City,OR,97045 +Rainier,OR,97048 +Zigzag,OR,97049 +Rufus,OR,97050 +Saint Helens,OR,97051 +Warren,OR,97053 +Deer Island,OR,97054 +Sandy,OR,97055 +Scappoose,OR,97056 +Shaniko,OR,97057 +The Dalles,OR,97058 +Troutdale,OR,97060 +Tualatin,OR,97062 +Wamic,OR,97063 +Vernonia,OR,97064 +Wasco,OR,97065 +Welches,OR,97067 +West Linn,OR,97068 +Wilsonville,OR,97070 +Woodburn,OR,97071 +Gresham,OR,97080 +Amity,OR,97101 +Astoria,OR,97103 +Banks,OR,97106 +Bay City,OR,97107 +Beaver,OR,97108 +Buxton,OR,97109 +Carlton,OR,97111 +Cloverdale,OR,97112 +Cornelius,OR,97113 +Dayton,OR,97114 +Dundee,OR,97115 +Glenwood,OR,97116 +Gales Creek,OR,97117 +Gaston,OR,97119 +Hammond,OR,97121 +Hebo,OR,97122 +Hillsboro,OR,97123 +Hillsboro,OR,97124 +Manning,OR,97125 +Lafayette,OR,97127 +Mcminnville,OR,97128 +Nehalem,OR,97131 +Newberg,OR,97132 +Rockaway,OR,97136 +Saint Paul,OR,97137 +Gearhart,OR,97138 +Sherwood,OR,97140 +Tillamook,OR,97141 +Timber,OR,97144 +Tolovana Park,OR,97145 +Warrenton,OR,97146 +Yamhill,OR,97148 +Neskowin,OR,97149 +Portland,OR,97201 +Portland,OR,97202 +Portland,OR,97203 +Portland,OR,97204 +Portland,OR,97205 +Portland,OR,97206 +Portland,OR,97209 +Portland,OR,97210 +Portland,OR,97211 +Portland,OR,97212 +Portland,OR,97213 +Portland,OR,97214 +Portland,OR,97215 +Portland,OR,97216 +Portland,OR,97217 +Portland,OR,97218 +Portland,OR,97219 +Portland,OR,97220 +Portland,OR,97221 +Milwaukie,OR,97222 +Garden Home,OR,97223 +Tigard,OR,97224 +Cedar Hills,OR,97225 +Portland,OR,97227 +Portland,OR,97229 +Rockwood Corners,OR,97230 +Portland,OR,97231 +Portland,OR,97232 +Portland,OR,97233 +Portland,OR,97236 +Portland,OR,97266 +Oak Grove,OR,97267 +Salem,OR,97301 +Salem,OR,97302 +Keizer,OR,97303 +Salem,OR,97304 +Brooks,OR,97305 +Salem,OR,97306 +Albany,OR,97321 +Alsea,OR,97324 +West Stayton,OR,97325 +Blodgett,OR,97326 +Brownsville,OR,97327 +Cascadia,OR,97329 +Corvallis,OR,97330 +Corvallis,OR,97331 +Corvallis,OR,97333 +Dallas,OR,97338 +Depoe Bay,OR,97341 +Detroit,OR,97342 +Eddyville,OR,97343 +Falls City,OR,97344 +Foster,OR,97345 +Gates,OR,97346 +Grand Ronde,OR,97347 +Halsey,OR,97348 +Idanha,OR,97350 +Independence,OR,97351 +Jefferson,OR,97352 +Lebanon,OR,97355 +Logsden,OR,97357 +Lyons,OR,97358 +Mill City,OR,97360 +Monmouth,OR,97361 +Mount Angel,OR,97362 +Neotsu,OR,97364 +Newport,OR,97365 +South Beach,OR,97366 +Lincoln City,OR,97367 +Otis,OR,97368 +Philomath,OR,97370 +Rickreall,OR,97371 +Scio,OR,97374 +Scotts Mills,OR,97375 +Seal Rock,OR,97376 +Shedd,OR,97377 +Sheridan,OR,97378 +Siletz,OR,97380 +Silverton,OR,97381 +Stayton,OR,97383 +Sublimity,OR,97385 +Sweet Home,OR,97386 +Tangent,OR,97389 +Tidewater,OR,97390 +Toledo,OR,97391 +Turner,OR,97392 +Waldport,OR,97394 +Willamina,OR,97396 +Coburg,OR,97401 +Eugene,OR,97402 +Eugene,OR,97403 +Eugene,OR,97404 +Eugene,OR,97405 +Agness,OR,97406 +Azalea,OR,97410 +Bandon,OR,97411 +Blachly,OR,97412 +Mc Kenzie Bridge,OR,97413 +Broadbent,OR,97414 +Harbor,OR,97415 +Camas Valley,OR,97416 +Canyonville,OR,97417 +Cheshire,OR,97419 +Charleston,OR,97420 +Coquille,OR,97423 +Cottage Grove,OR,97424 +Creswell,OR,97426 +Culp Creek,OR,97427 +Days Creek,OR,97429 +Greenleaf,OR,97430 +Dexter,OR,97431 +Dorena,OR,97434 +Drain,OR,97435 +Elkton,OR,97436 +Elmira,OR,97437 +Fall Creek,OR,97438 +Florence,OR,97439 +Gardiner,OR,97441 +Glendale,OR,97442 +Glide,OR,97443 +Pistol River,OR,97444 +Harrisburg,OR,97446 +Idleyld Park,OR,97447 +Junction City,OR,97448 +Lakeside,OR,97449 +Langlois,OR,97450 +Lorane,OR,97451 +Lowell,OR,97452 +Mapleton,OR,97453 +Marcola,OR,97454 +Pleasant Hill,OR,97455 +Monroe,OR,97456 +Myrtle Creek,OR,97457 +Myrtle Point,OR,97458 +North Bend,OR,97459 +Noti,OR,97461 +Oakland,OR,97462 +Oakridge,OR,97463 +Port Orford,OR,97465 +Powers,OR,97466 +Winchester Bay,OR,97467 +Remote,OR,97468 +Riddle,OR,97469 +Roseburg,OR,97470 +Scottsburg,OR,97473 +Sixes,OR,97476 +Springfield,OR,97477 +Springfield,OR,97478 +Sutherlin,OR,97479 +Swisshome,OR,97480 +Tenmile,OR,97481 +Tiller,OR,97484 +Umpqua,OR,97486 +Veneta,OR,97487 +Vida,OR,97488 +Leaburg,OR,97489 +Walton,OR,97490 +Westfir,OR,97492 +Westlake,OR,97493 +Winston,OR,97496 +Sunny Valley,OR,97497 +Yachats,OR,97498 +Yoncalla,OR,97499 +West Main,OR,97501 +Central Point,OR,97502 +White City,OR,97503 +Medford,OR,97504 +Ashland,OR,97520 +Butte Falls,OR,97522 +Cave Junction,OR,97523 +Eagle Point,OR,97524 +Gold Hill,OR,97525 +Grants Pass,OR,97526 +Grants Pass,OR,97527 +Applegate,OR,97530 +Kerby,OR,97531 +Merlin,OR,97532 +O Brien,OR,97534 +Phoenix,OR,97535 +Prospect,OR,97536 +Rogue River,OR,97537 +Selma,OR,97538 +Shady Cove,OR,97539 +Talent,OR,97540 +Trail,OR,97541 +Wilderville,OR,97543 +Williams,OR,97544 +Oretech,OR,97601 +Klamath Falls,OR,97603 +Adel,OR,97620 +Beatty,OR,97621 +Bonanza,OR,97623 +Chiloquin,OR,97624 +Dairy,OR,97625 +Keno,OR,97627 +Lakeview,OR,97630 +Malin,OR,97632 +Merrill,OR,97633 +New Pine Creek,OR,97635 +Paisley,OR,97636 +Plush,OR,97637 +Silver Lake,OR,97638 +Summer Lake,OR,97640 +Bend,OR,97701 +Bend,OR,97702 +Sunriver,OR,97707 +Ashwood,OR,97711 +Brothers,OR,97712 +Burns,OR,97720 +Camp Sherman,OR,97730 +Diamond Lake,OR,97731 +Crane,OR,97732 +Crescent,OR,97733 +Culver,OR,97734 +Fort Rock,OR,97735 +Gilchrist,OR,97737 +La Pine,OR,97739 +Lawen,OR,97740 +Madras,OR,97741 +Mitchell,OR,97750 +Paulina,OR,97751 +Post,OR,97752 +Powell Butte,OR,97753 +Prineville,OR,97754 +Redmond,OR,97756 +Riley,OR,97758 +Black Butte Ranc,OR,97759 +Crooked River Ra,OR,97760 +Warm Springs,OR,97761 +Pendleton,OR,97801 +Adams,OR,97810 +Arlington,OR,97812 +Athena,OR,97813 +Medical Springs,OR,97814 +Boardman,OR,97818 +Canyon City,OR,97820 +Condon,OR,97823 +Cove,OR,97824 +Dayville,OR,97825 +Echo,OR,97826 +Elgin,OR,97827 +Enterprise,OR,97828 +Kinzua,OR,97830 +Fox,OR,97831 +Haines,OR,97833 +Halfway,OR,97834 +Helix,OR,97835 +Heppner,OR,97836 +Hereford,OR,97837 +Hermiston,OR,97838 +Lexington,OR,97839 +Imbler,OR,97841 +Imnaha,OR,97842 +Ione,OR,97843 +Irrigon,OR,97844 +John Day,OR,97845 +Joseph,OR,97846 +Kimberly,OR,97848 +La Grande,OR,97850 +Long Creek,OR,97856 +Lostine,OR,97857 +Milton Freewater,OR,97862 +Monument,OR,97864 +Mount Vernon,OR,97865 +North Powder,OR,97867 +Pilot Rock,OR,97868 +Prairie City,OR,97869 +Richland,OR,97870 +Ritter,OR,97872 +Seneca,OR,97873 +Spray,OR,97874 +Stanfield,OR,97875 +Summerville,OR,97876 +Sumpter,OR,97877 +Mcnary,OR,97882 +Union,OR,97883 +Unity,OR,97884 +Wallowa,OR,97885 +Weston,OR,97886 +Adrian,OR,97901 +Arock,OR,97902 +Brogan,OR,97903 +Drewsey,OR,97904 +Harper,OR,97906 +Huntington,OR,97907 +Ironside,OR,97908 +Jamieson,OR,97909 +Jordan Valley,OR,97910 +Juntura,OR,97911 +Nyssa,OR,97913 +Ontario,OR,97914 +Riverside,OR,97917 +Vale,OR,97918 +Westfall,OR,97920 +Macarthur,PA,15001 +Fairoaks,PA,15003 +Baden,PA,15005 +Bakerstown,PA,15007 +Beaver,PA,15009 +Racine,PA,15010 +Rostraver,PA,15012 +Brackenridge,PA,15014 +Bradfordwoods,PA,15015 +Bridgeville,PA,15017 +Buena Vista,PA,15018 +Bulger,PA,15019 +Paris,PA,15021 +Charleroi,PA,15022 +Cheswick,PA,15024 +Large,PA,15025 +Clinton,PA,15026 +Conway,PA,15027 +Creighton,PA,15030 +Cuddy,PA,15031 +Donora,PA,15033 +Dravosburg,PA,15034 +East Mc Keesport,PA,15035 +Elizabeth,PA,15037 +Freedom,PA,15042 +Georgetown,PA,15043 +Gibsonia,PA,15044 +Glassport,PA,15045 +Harwick,PA,15049 +Hookstown,PA,15050 +Indianola,PA,15051 +Industry,PA,15052 +Joffre,PA,15053 +Lawrence,PA,15055 +Leetsdale,PA,15056 +Mc Donald,PA,15057 +Midland,PA,15059 +Midway,PA,15060 +Monaca,PA,15061 +Monessen,PA,15062 +Monongahela,PA,15063 +Morgan,PA,15064 +Natrona,PA,15065 +New Brighton,PA,15066 +New Eagle,PA,15067 +Arnold,PA,15068 +Noblestown,PA,15071 +Rochester,PA,15074 +Russellton,PA,15076 +Shippingport,PA,15077 +Slovan,PA,15078 +Sutersville,PA,15083 +Tarentum,PA,15084 +Level Green,PA,15085 +Warrendale,PA,15086 +West Newton,PA,15089 +Wexford,PA,15090 +Allison Park,PA,15101 +Bethel Park,PA,15102 +Rankin,PA,15104 +Carnegie,PA,15106 +Moon Twp,PA,15108 +Duquesne,PA,15110 +East Pittsburgh,PA,15112 +Glenshaw,PA,15116 +Munhall,PA,15120 +W Mifflin Fin,PA,15122 +Imperial,PA,15126 +Library,PA,15129 +White Oak,PA,15131 +Mc Keesport,PA,15132 +Mc Keesport,PA,15133 +Boston,PA,15135 +Mc Kees Rocks,PA,15136 +North Versailles,PA,15137 +Oakmont,PA,15139 +Pitcairn,PA,15140 +Presto,PA,15142 +Sewickley,PA,15143 +Springdale,PA,15144 +Turtle Creek,PA,15145 +Monroeville,PA,15146 +Verona,PA,15147 +Wall,PA,15148 +Arsenal,PA,15201 +Bellevue,PA,15202 +Carson,PA,15203 +Corliss,PA,15204 +Crafton,PA,15205 +East Liberty,PA,15206 +Hazelwood,PA,15207 +Homewood,PA,15208 +Millvale,PA,15209 +Mount Oliver,PA,15210 +Mount Washington,PA,15211 +Allegheny,PA,15212 +Oakland,PA,15213 +Observatory,PA,15214 +Aspinwall,PA,15215 +South Hills,PA,15216 +Squirrel Hill,PA,15217 +Swissvale,PA,15218 +Uptown,PA,15219 +Parkway Center,PA,15220 +Wilkinsburg,PA,15221 +Downtown,PA,15222 +Etna,PA,15223 +Bloomfield,PA,15224 +Neville Island,PA,15225 +Brookline,PA,15226 +Brentwood,PA,15227 +Mount Lebanon,PA,15228 +West View,PA,15229 +Shadyside,PA,15232 +Kilbuck,PA,15233 +Castle Shannon,PA,15234 +Penn Hills,PA,15235 +Caste Village,PA,15236 +Mc Knight,PA,15237 +Blawnox,PA,15238 +Plum,PA,15239 +Upper Saint Clai,PA,15241 +Cedarhurst,PA,15243 +Washington,PA,15301 +Aleppo,PA,15310 +Amity,PA,15311 +Avella,PA,15312 +Beallsville,PA,15313 +Bentleyville,PA,15314 +Mc Murray,PA,15317 +Carmichaels,PA,15320 +Cecil,PA,15321 +Clarksville,PA,15322 +Claysville,PA,15323 +Cokeburg,PA,15324 +Dilliner,PA,15327 +Prosperity,PA,15329 +Eighty Four,PA,15330 +Ellsworth,PA,15331 +Finleyville,PA,15332 +Fredericktown,PA,15333 +Graysville,PA,15337 +Greensboro,PA,15338 +Hickory,PA,15340 +Holbrook,PA,15341 +Houston,PA,15342 +Jefferson,PA,15344 +Marianna,PA,15345 +Mather,PA,15346 +Davistown,PA,15349 +New Freeport,PA,15352 +Nineveh,PA,15353 +Rices Landing,PA,15357 +Rogersville,PA,15359 +Scenery Hill,PA,15360 +Spraggs,PA,15362 +Strabane,PA,15363 +Sycamore,PA,15364 +Venetia,PA,15367 +Waynesburg,PA,15370 +West Alexander,PA,15376 +West Finley,PA,15377 +Wind Ridge,PA,15380 +Uniontown,PA,15401 +Adah,PA,15410 +Addison,PA,15411 +Allenport,PA,15412 +Allison,PA,15413 +West Brownsville,PA,15417 +California,PA,15419 +Coal Center,PA,15423 +Listonburg,PA,15424 +South Connellsvi,PA,15425 +Daisytown,PA,15427 +Dawson,PA,15428 +Dunbar,PA,15431 +Dunlevy,PA,15432 +East Millsboro,PA,15433 +Elco,PA,15434 +Fairchance,PA,15436 +Farmington,PA,15437 +Fayette City,PA,15438 +Gibbon Glade,PA,15440 +Grindstone,PA,15442 +Hiller,PA,15444 +Hopwood,PA,15445 +Indian Head,PA,15446 +La Belle,PA,15450 +Lake Lynn,PA,15451 +Lemont Furnace,PA,15456 +Lamberton,PA,15458 +Markleysburg,PA,15459 +Grays Landing,PA,15461 +Melcroft,PA,15462 +Merrittstown,PA,15463 +Mill Run,PA,15464 +New Salem,PA,15468 +Normalville,PA,15469 +Ohiopyle,PA,15470 +Oliver,PA,15472 +Layton,PA,15473 +Point Marion,PA,15474 +Republic,PA,15475 +Roscoe,PA,15477 +Smithfield,PA,15478 +Van Meter,PA,15479 +Smock,PA,15480 +Star Junction,PA,15482 +Stockdale,PA,15483 +Vanderbilt,PA,15486 +Waltersburg,PA,15488 +White,PA,15490 +Somerset,PA,15501 +Alum Bank,PA,15521 +Bedford,PA,15522 +Berlin,PA,15530 +Boswell,PA,15531 +Breezewood,PA,15533 +Buffalo Mills,PA,15534 +Clearville,PA,15535 +Crystal Spring,PA,15536 +Everett,PA,15537 +Glencoe,PA,15538 +Fort Hill,PA,15540 +Friedens,PA,15541 +Garrett,PA,15542 +Hyndman,PA,15545 +Jenners,PA,15546 +Manns Choice,PA,15550 +Markleton,PA,15551 +Meyersdale,PA,15552 +New Paris,PA,15554 +Rockwood,PA,15557 +Salisbury,PA,15558 +Schellsburg,PA,15559 +Springs,PA,15562 +Stoystown,PA,15563 +Greensburg,PA,15601 +Acme,PA,15610 +Adamsburg,PA,15611 +Alverton,PA,15612 +Apollo,PA,15613 +Ardara,PA,15615 +Armbrust,PA,15616 +Arona,PA,15617 +Avonmore,PA,15618 +Bradenville,PA,15620 +Champion,PA,15622 +Darragh,PA,15625 +Delmont,PA,15626 +Derry,PA,15627 +Donegal,PA,15628 +Everson,PA,15631 +Export,PA,15632 +Grapeville,PA,15634 +Harrison City,PA,15636 +Herminie,PA,15637 +Hunker,PA,15639 +Hyde Park,PA,15641 +North Huntingdon,PA,15642 +Jeannette,PA,15644 +Jones Mills,PA,15646 +Larimer,PA,15647 +Latrobe,PA,15650 +Laughlintown,PA,15655 +Leechburg,PA,15656 +Wilpen,PA,15658 +Loyalhanna,PA,15661 +Madison,PA,15663 +Manor,PA,15665 +Mount Pleasant,PA,15666 +Murrysville,PA,15668 +New Alexandria,PA,15670 +New Derry,PA,15671 +New Stanton,PA,15672 +Penn,PA,15675 +Rector,PA,15677 +Rillton,PA,15678 +Ruffs Dale,PA,15679 +Saltsburg,PA,15681 +Scottdale,PA,15683 +Slickville,PA,15684 +Spring Church,PA,15686 +Stahlstown,PA,15687 +Tarrs,PA,15688 +Park,PA,15690 +Westmoreland Cit,PA,15692 +Youngwood,PA,15697 +Yukon,PA,15698 +Indiana,PA,15701 +Anita,PA,15711 +Aultman,PA,15713 +Barnesboro,PA,15714 +Black Lick,PA,15716 +Blairsville,PA,15717 +Brush Valley,PA,15720 +Burnside,PA,15721 +Carrolltown,PA,15722 +Cherry Tree,PA,15724 +Clarksburg,PA,15725 +Clymer,PA,15728 +Commodore,PA,15729 +Coolspring,PA,15730 +Creekside,PA,15732 +Ernest,PA,15739 +Glen Campbell,PA,15742 +Hamilton,PA,15744 +Home,PA,15747 +Graceton,PA,15748 +La Jose,PA,15753 +Lucernemines,PA,15754 +Mc Gees Mills,PA,15757 +Marchand,PA,15758 +Marion Center,PA,15759 +Marsteller,PA,15760 +Nicktown,PA,15762 +Northpoint,PA,15763 +Oliveburg,PA,15764 +Penn Run,PA,15765 +Punxsutawney,PA,15767 +Ringgold,PA,15770 +Rochester Mills,PA,15771 +Rossiter,PA,15772 +Saint Benedict,PA,15773 +Shelocta,PA,15774 +Spangler,PA,15775 +Sprankle Mills,PA,15776 +Starford,PA,15777 +Timblin,PA,15778 +Valier,PA,15780 +Worthville,PA,15784 +Du Bois,PA,15801 +Benezett,PA,15821 +Brockport,PA,15823 +Brockway,PA,15824 +Hazen,PA,15825 +Byrnedale,PA,15827 +Clarington,PA,15828 +Corsica,PA,15829 +Driftwood,PA,15832 +Emporium,PA,15834 +Falls Creek,PA,15840 +Johnsonburg,PA,15845 +Kersey,PA,15846 +Luthersburg,PA,15848 +Penfield,PA,15849 +Reynoldsville,PA,15851 +Portland Mills,PA,15853 +Rockton,PA,15856 +Saint Marys,PA,15857 +Sigel,PA,15860 +Sinnamahoning,PA,15861 +Summerville,PA,15864 +Sykesville,PA,15865 +Weedville,PA,15868 +Wilcox,PA,15870 +Johnstown,PA,15901 +Johnstown,PA,15902 +Johnstown,PA,15904 +Johnstown,PA,15905 +Johnstown,PA,15906 +Johnstown,PA,15909 +Armagh,PA,15920 +Bolivar,PA,15923 +Cairnbrook,PA,15924 +Central City,PA,15926 +Colver,PA,15927 +Davidsville,PA,15928 +Ebensburg,PA,15931 +Hollsopple,PA,15935 +Hooversville,PA,15936 +Lilly,PA,15938 +Loretto,PA,15940 +Mineral Point,PA,15942 +Nanty Glo,PA,15943 +New Florence,PA,15944 +Parkhill,PA,15945 +Puritan,PA,15946 +Robinson,PA,15949 +Saint Michael,PA,15951 +Salix,PA,15952 +Seanor,PA,15953 +Seward,PA,15954 +Sidman,PA,15955 +South Fork,PA,15956 +Strongstown,PA,15957 +Summerhill,PA,15958 +Twin Rocks,PA,15960 +Vintondale,PA,15961 +Windber,PA,15963 +Bon Aire,PA,16001 +Boyers,PA,16020 +Bruin,PA,16022 +Marwood,PA,16023 +Chicora,PA,16025 +East Brady,PA,16028 +Eau Claire,PA,16030 +Evans City,PA,16033 +Fenelton,PA,16034 +Foxburg,PA,16036 +Harmony,PA,16037 +Harrisville,PA,16038 +Hilliards,PA,16040 +Karns City,PA,16041 +Lyndora,PA,16045 +Mars,PA,16046 +Parker,PA,16049 +Petrolia,PA,16050 +Portersville,PA,16051 +Prospect,PA,16052 +Renfrew,PA,16053 +Sarver,PA,16055 +Saxonburg,PA,16056 +Slippery Rock,PA,16057 +Valencia,PA,16059 +West Sunbury,PA,16061 +Zelienople,PA,16063 +New Castle,PA,16101 +New Castle,PA,16102 +Neshannock,PA,16105 +Adamsville,PA,16110 +Atlantic,PA,16111 +Bessemer,PA,16112 +Clarks Mills,PA,16114 +Darlington,PA,16115 +Edinburg,PA,16116 +Ellport,PA,16117 +Enon Valley,PA,16120 +Farrell,PA,16121 +Fombell,PA,16123 +Fredonia,PA,16124 +Shenango,PA,16125 +Grove City,PA,16127 +Hadley,PA,16130 +Hartstown,PA,16131 +Jackson Center,PA,16133 +Westford,PA,16134 +Mercer,PA,16137 +New Galilee,PA,16141 +New Wilmington,PA,16142 +Pulaski,PA,16143 +Sandy Lake,PA,16145 +Sharon,PA,16146 +Hermitage,PA,16148 +Sharpsville,PA,16150 +Stoneboro,PA,16153 +Transfer,PA,16154 +Volant,PA,16156 +Wampum,PA,16157 +West Middlesex,PA,16159 +Kittanning,PA,16201 +Adrian,PA,16210 +Cadogan,PA,16212 +Callensburg,PA,16213 +Clarion,PA,16214 +Cooksburg,PA,16217 +Cowansville,PA,16218 +Dayton,PA,16222 +Fairmount City,PA,16224 +Fisher,PA,16225 +Ford City,PA,16226 +Freeport,PA,16229 +Knox,PA,16232 +Leeper,PA,16233 +Limestone,PA,16234 +Lucinda,PA,16235 +Mc Grann,PA,16236 +Manorville,PA,16238 +Marienville,PA,16239 +Mayport,PA,16240 +New Bethlehem,PA,16242 +Huey,PA,16248 +Rural Valley,PA,16249 +Shippenville,PA,16254 +Sligo,PA,16255 +Smicksburg,PA,16256 +Strattanville,PA,16258 +Templeton,PA,16259 +Vowinckel,PA,16260 +Craigsville,PA,16262 +Oil City,PA,16301 +Carlton,PA,16311 +Clarendon,PA,16313 +Cochranton,PA,16314 +Conneaut Lake,PA,16316 +Cooperstown,PA,16317 +Cranberry,PA,16319 +East Hickory,PA,16321 +Franklin,PA,16323 +Fryburg,PA,16326 +Guys Mills,PA,16327 +Irvine,PA,16329 +Kossuth,PA,16331 +Lickingville,PA,16332 +Ludlow,PA,16333 +Marble,PA,16334 +Meadville,PA,16335 +Pittsfield,PA,16340 +Pleasantville,PA,16341 +Polk,PA,16342 +Russell,PA,16345 +Seneca,PA,16346 +Sheffield,PA,16347 +Sugar Grove,PA,16350 +Tidioute,PA,16351 +Tionesta,PA,16353 +Titusville,PA,16354 +Townville,PA,16360 +Utica,PA,16362 +Venus,PA,16364 +North Warren,PA,16365 +Youngsville,PA,16371 +Clintonville,PA,16372 +Emlenton,PA,16373 +Kennerdell,PA,16374 +Lundys Lane,PA,16401 +Bear Lake,PA,16402 +Cambridge Spring,PA,16403 +Centerville,PA,16404 +Columbus,PA,16405 +Conneautville,PA,16406 +Corry,PA,16407 +Cranesville,PA,16410 +East Springfield,PA,16411 +Edinboro,PA,16412 +Fairview,PA,16415 +Girard,PA,16417 +Grand Valley,PA,16420 +Harborcreek,PA,16421 +Lake City,PA,16423 +Espyville,PA,16424 +Mc Kean,PA,16426 +North East,PA,16428 +Saegertown,PA,16433 +Spartansburg,PA,16434 +Springboro,PA,16435 +Spring Creek,PA,16436 +Union City,PA,16438 +Venango,PA,16440 +Waterford,PA,16441 +Wattsburg,PA,16442 +West Springfield,PA,16443 +Erie,PA,16501 +Erie,PA,16502 +Erie,PA,16503 +Erie,PA,16504 +Presque Isle,PA,16505 +Erie,PA,16506 +Erie,PA,16507 +Erie,PA,16508 +Erie,PA,16509 +Wesleyville,PA,16510 +Erie,PA,16511 +Erie,PA,16565 +Altoona,PA,16601 +Altoona,PA,16602 +Barree,PA,16611 +Ashville,PA,16613 +Beccaria,PA,16616 +Bellwood,PA,16617 +Brisbin,PA,16620 +Broad Top,PA,16621 +Calvin,PA,16622 +Cassville,PA,16623 +Claysburg,PA,16625 +Coalport,PA,16627 +Cresson,PA,16630 +Dudley,PA,16634 +Duncansville,PA,16635 +Dysart,PA,16636 +East Freedom,PA,16637 +Fallentimber,PA,16639 +Flinton,PA,16640 +Gallitzin,PA,16641 +Glen Hope,PA,16645 +Hastings,PA,16646 +Hesston,PA,16647 +Hollidaysburg,PA,16648 +Hopewell,PA,16650 +Houtzdale,PA,16651 +Huntingdon,PA,16652 +Imler,PA,16655 +Irvona,PA,16656 +James Creek,PA,16657 +Loysburg,PA,16659 +Madera,PA,16661 +Martinsburg,PA,16662 +New Enterprise,PA,16664 +Osceola Mills,PA,16666 +St Clairsville,PA,16667 +Patton,PA,16668 +Petersburg,PA,16669 +Ramey,PA,16671 +Roaring Spring,PA,16673 +Robertsdale,PA,16674 +Saxton,PA,16678 +Six Mile Run,PA,16679 +Smithmill,PA,16680 +Spruce Creek,PA,16683 +Todd,PA,16685 +Tyrone,PA,16686 +Waterfall,PA,16689 +Wells Tannery,PA,16691 +Westover,PA,16692 +Ganister,PA,16693 +Woodbury,PA,16695 +Bradford,PA,16701 +Austin,PA,16720 +Crosby,PA,16724 +Ormsby,PA,16726 +Derrick City,PA,16727 +Duke Center,PA,16729 +Eldred,PA,16731 +Gifford,PA,16732 +James City,PA,16734 +Kane,PA,16735 +Lewis Run,PA,16738 +Mount Jewett,PA,16740 +Port Allegany,PA,16743 +Rew,PA,16744 +Rixford,PA,16745 +Roulette,PA,16746 +Shinglehouse,PA,16748 +Smethport,PA,16749 +Turtlepoint,PA,16750 +State College,PA,16801 +State College,PA,16803 +Aaronsburg,PA,16820 +Allport,PA,16821 +Beech Creek,PA,16822 +Pleasant Gap,PA,16823 +Boalsburg,PA,16827 +Centre Hall,PA,16828 +Clarence,PA,16829 +Clearfield,PA,16830 +Coburn,PA,16832 +Curwensville,PA,16833 +Frenchville,PA,16836 +Glen Richey,PA,16837 +Grampian,PA,16838 +Grassflat,PA,16839 +Hawk Run,PA,16840 +Howard,PA,16841 +Julian,PA,16844 +Karthaus,PA,16845 +Madisonburg,PA,16852 +Millheim,PA,16854 +Morrisdale,PA,16858 +Moshannon,PA,16859 +Munson,PA,16860 +New Millport,PA,16861 +Olanta,PA,16863 +Orviston,PA,16864 +Pennsylvania Fur,PA,16865 +Philipsburg,PA,16866 +Port Matilda,PA,16870 +Pottersdale,PA,16871 +Rebersburg,PA,16872 +Snow Shoe,PA,16874 +Spring Mills,PA,16875 +Warriors Mark,PA,16877 +West Decatur,PA,16878 +Winburne,PA,16879 +Woodland,PA,16881 +Woodward,PA,16882 +Wellsboro,PA,16901 +Blossburg,PA,16912 +Columbia Cross R,PA,16914 +Oswayo,PA,16915 +Covington,PA,16917 +Elkland,PA,16920 +Gaines,PA,16921 +Galeton,PA,16922 +North Bingham,PA,16923 +Gillett,PA,16925 +Granville Summit,PA,16926 +Harrison Valley,PA,16927 +Knoxville,PA,16928 +Lawrenceville,PA,16929 +Liberty,PA,16930 +Mainesburg,PA,16932 +Mansfield,PA,16933 +Middlebury Cente,PA,16935 +Millerton,PA,16936 +Mills,PA,16937 +Morris,PA,16938 +Morris Run,PA,16939 +Nelson,PA,16940 +Genesee,PA,16941 +Osceola,PA,16942 +Sabinsville,PA,16943 +Tioga,PA,16946 +Troy,PA,16947 +Ulysses,PA,16948 +Little Marsh,PA,16950 +Allensville,PA,17002 +Annville,PA,17003 +Belleville,PA,17004 +Berrysburg,PA,17005 +Blain,PA,17006 +Boiling Springs,PA,17007 +Burnham,PA,17009 +Shiremanstown,PA,17011 +Carlisle Barrack,PA,17013 +Cocolamus,PA,17014 +Dalmatia,PA,17017 +Dauphin,PA,17018 +Dillsburg,PA,17019 +Duncannon,PA,17020 +East Waterford,PA,17021 +Elizabethtown,PA,17022 +Elizabethville,PA,17023 +Elliottsburg,PA,17024 +Enola,PA,17025 +Fredericksburg,PA,17026 +Grantville,PA,17028 +Granville,PA,17029 +Gratz,PA,17030 +Green Park,PA,17031 +Halifax,PA,17032 +Hershey,PA,17033 +Highspire,PA,17034 +Honey Grove,PA,17035 +Hummelstown,PA,17036 +Ickesburg,PA,17037 +Jonestown,PA,17038 +Landisburg,PA,17040 +Cleona,PA,17042 +Wormleysburg,PA,17043 +Lewistown,PA,17044 +Liverpool,PA,17045 +Loysville,PA,17047 +Lykens,PA,17048 +Mc Alisterville,PA,17049 +Mc Veytown,PA,17051 +Mapleton Depot,PA,17052 +Marysville,PA,17053 +Hampden,PA,17055 +Middletown,PA,17057 +Mifflin,PA,17058 +Mifflintown,PA,17059 +Mill Creek,PA,17060 +Millersburg,PA,17061 +Millerstown,PA,17062 +Milroy,PA,17063 +Mount Holly Spri,PA,17065 +Mount Union,PA,17066 +Myerstown,PA,17067 +New Bloomfield,PA,17068 +New Cumberland,PA,17070 +New Germantown,PA,17071 +Newmanstown,PA,17073 +Newport,PA,17074 +Oakland Mills,PA,17076 +Palmyra,PA,17078 +Port Royal,PA,17082 +Reedsville,PA,17084 +Richfield,PA,17086 +Richland,PA,17087 +Shermans Dale,PA,17090 +Thompsontown,PA,17094 +Wiconisco,PA,17097 +Williamstown,PA,17098 +Yeagertown,PA,17099 +Harrisburg,PA,17101 +Harrisburg,PA,17102 +Penbrook,PA,17103 +Harrisburg,PA,17104 +Colonial Park,PA,17109 +Harrisburg,PA,17110 +Swatara,PA,17111 +Harrisburg,PA,17112 +Steelton,PA,17113 +Chambersburg,PA,17201 +Artemas,PA,17211 +Big Cove Tannery,PA,17212 +Blairs Mills,PA,17213 +Blue Ridge Summi,PA,17214 +Burnt Cabins,PA,17215 +Concord,PA,17217 +Doylesburg,PA,17219 +Dry Run,PA,17220 +Fannettsburg,PA,17221 +Fayetteville,PA,17222 +Fort Littleton,PA,17223 +Fort Loudon,PA,17224 +Greencastle,PA,17225 +Harrisonville,PA,17228 +Hustontown,PA,17229 +Lurgan,PA,17232 +Mc Connellsburg,PA,17233 +Mercersburg,PA,17236 +Mont Alto,PA,17237 +Needmore,PA,17238 +Neelyton,PA,17239 +Newburg,PA,17240 +Newville,PA,17241 +Orbisonia,PA,17243 +Orrstown,PA,17244 +Pleasant Hall,PA,17246 +Saint Thomas,PA,17252 +Shade Gap,PA,17255 +Shippensburg,PA,17257 +Shirleysburg,PA,17260 +Spring Run,PA,17262 +Three Springs,PA,17264 +Upperstrasburg,PA,17265 +Walnut Bottom,PA,17266 +Warfordsburg,PA,17267 +Waynesboro,PA,17268 +Willow Hill,PA,17271 +Abbottstown,PA,17301 +Airville,PA,17302 +Aspers,PA,17304 +Biglerville,PA,17307 +Brogue,PA,17309 +Yoe,PA,17313 +Delta,PA,17314 +Dover,PA,17315 +East Berlin,PA,17316 +Etters,PA,17319 +Greenstone,PA,17320 +Fawn Grove,PA,17321 +Felton,PA,17322 +Gardners,PA,17324 +Gettysburg,PA,17325 +Glen Rock,PA,17327 +Brodbecks,PA,17329 +Hanover,PA,17331 +Lewisberry,PA,17339 +Littlestown,PA,17340 +Mc Sherrystown,PA,17344 +Manchester,PA,17345 +Mount Wolf,PA,17347 +New Freedom,PA,17349 +New Oxford,PA,17350 +New Park,PA,17352 +Orrtanna,PA,17353 +Red Lion,PA,17356 +Seven Valleys,PA,17360 +Shrewsbury,PA,17361 +Spring Grove,PA,17362 +Stewartstown,PA,17363 +Thomasville,PA,17364 +Wellsville,PA,17365 +Windsor,PA,17366 +Wrightsville,PA,17368 +York Haven,PA,17370 +York Springs,PA,17372 +York,PA,17401 +East York,PA,17402 +York,PA,17403 +West York,PA,17404 +Hellam,PA,17406 +Jacobus,PA,17407 +Akron,PA,17501 +Bainbridge,PA,17502 +Bird In Hand,PA,17505 +Ninepoints,PA,17509 +Columbia,PA,17512 +Conestoga,PA,17516 +Denver,PA,17517 +Drumore,PA,17518 +East Earl,PA,17519 +East Petersburg,PA,17520 +Ephrata,PA,17522 +Gap,PA,17527 +Gordonville,PA,17529 +Holtwood,PA,17532 +Kinzers,PA,17535 +Kirkwood,PA,17536 +Salunga,PA,17538 +Leola,PA,17540 +Brunnerville,PA,17543 +Manheim,PA,17545 +Marietta,PA,17547 +Millersville,PA,17551 +Florin,PA,17552 +Mountville,PA,17554 +Narvon,PA,17555 +New Holland,PA,17557 +New Providence,PA,17560 +Paradise,PA,17562 +Peach Bottom,PA,17563 +Pequea,PA,17565 +Quarryville,PA,17566 +Reinholds,PA,17569 +Ronks,PA,17572 +Smoketown,PA,17576 +Stevens,PA,17578 +Strasburg,PA,17579 +Terre Hill,PA,17581 +Washington Boro,PA,17582 +Willow Street,PA,17584 +Neffsville,PA,17601 +Lancaster,PA,17602 +Rohrerstown,PA,17603 +South Williamspo,PA,17701 +Cammal,PA,17723 +Canton,PA,17724 +Cedar Run,PA,17727 +Cogan Station,PA,17728 +Cross Fork,PA,17729 +Hughesville,PA,17737 +Salladasburg,PA,17740 +Lairdsville,PA,17742 +Linden,PA,17744 +Lock Haven,PA,17745 +Loganton,PA,17747 +Mill Hall,PA,17751 +Montgomery,PA,17752 +Montoursville,PA,17754 +Muncy,PA,17756 +Muncy Valley,PA,17758 +Ralston,PA,17763 +Renovo,PA,17764 +Roaring Branch,PA,17765 +Shunk,PA,17768 +Trout Run,PA,17771 +Turbotville,PA,17772 +Unityville,PA,17774 +Waterville,PA,17776 +Watsontown,PA,17777 +Westport,PA,17778 +Woolrich,PA,17779 +Sunbury,PA,17801 +Allenwood,PA,17810 +Beaver Springs,PA,17812 +Beavertown,PA,17813 +Benton,PA,17814 +Bloomsburg,PA,17815 +Catawissa,PA,17820 +Danville,PA,17821 +Dornsife,PA,17823 +Elysburg,PA,17824 +Freeburg,PA,17827 +Gowen City,PA,17828 +Herndon,PA,17830 +Marion Heights,PA,17832 +Kulpmont,PA,17834 +Laurelton,PA,17835 +Leck Kill,PA,17836 +Lewisburg,PA,17837 +Mc Clure,PA,17841 +Middleburg,PA,17842 +Beaver Springs,PA,17843 +Mifflinburg,PA,17844 +Millmont,PA,17845 +Millville,PA,17846 +Milton,PA,17847 +Montandon,PA,17850 +Mount Carmel,PA,17851 +Mount Pleasant M,PA,17853 +New Berlin,PA,17855 +New Columbia,PA,17856 +Northumberland,PA,17857 +Orangeville,PA,17859 +Paxinos,PA,17860 +Port Trevorton,PA,17864 +Ranshaw,PA,17866 +Rebuck,PA,17867 +Riverside,PA,17868 +Selinsgrove,PA,17870 +Excelsior,PA,17872 +Snydertown,PA,17877 +Stillwater,PA,17878 +Trevorton,PA,17881 +Wilburton,PA,17888 +Winfield,PA,17889 +Pottsville,PA,17901 +Ashland,PA,17921 +Auburn,PA,17922 +Branchdale,PA,17923 +Brockton,PA,17925 +Centralia,PA,17927 +Cressona,PA,17929 +Frackville,PA,17931 +Girardville,PA,17935 +Hegins,PA,17938 +Klingerstown,PA,17941 +Mahanoy City,PA,17948 +Minersville,PA,17954 +Muir,PA,17957 +Kaska,PA,17959 +New Ringgold,PA,17960 +Orwigsburg,PA,17961 +Pine Grove,PA,17963 +Pitman,PA,17964 +Port Carbon,PA,17965 +Ringtown,PA,17967 +Sacramento,PA,17968 +Saint Clair,PA,17970 +Schuylkill Haven,PA,17972 +Shenandoah,PA,17976 +Spring Glen,PA,17978 +Tower City,PA,17980 +Donaldson,PA,17981 +Valley View,PA,17983 +Zion Grove,PA,17985 +Alburtis,PA,18011 +Roseto,PA,18013 +Bath,PA,18014 +Bethlehem,PA,18015 +Butztown,PA,18017 +Bethlehem,PA,18018 +Breinigsville,PA,18031 +Catasauqua,PA,18032 +Center Valley,PA,18034 +Cherryville,PA,18035 +Coopersburg,PA,18036 +Coplay,PA,18037 +Danielsville,PA,18038 +East Greenville,PA,18041 +Forks Township,PA,18042 +Emmaus,PA,18049 +Fogelsville,PA,18051 +Hokendauqua,PA,18052 +Germansville,PA,18053 +Green Lane,PA,18054 +Hellertown,PA,18055 +Hereford,PA,18056 +Kunkletown,PA,18058 +Macungie,PA,18062 +Nazareth,PA,18064 +New Tripoli,PA,18066 +Northampton,PA,18067 +Orefield,PA,18069 +Palm,PA,18070 +Palmerton,PA,18071 +Pen Argyl,PA,18072 +Pennsburg,PA,18073 +Perkiomenville,PA,18074 +Red Hill,PA,18076 +Riegelsville,PA,18077 +Schnecksville,PA,18078 +Emerald,PA,18080 +Trexlertown,PA,18087 +Walnutport,PA,18088 +Wind Gap,PA,18091 +Zionsville,PA,18092 +Allentown,PA,18101 +Allentown,PA,18102 +Allentown,PA,18103 +Allentown,PA,18104 +Wescosville,PA,18106 +West Hazleton,PA,18201 +Albrightsville,PA,18210 +Andreas,PA,18211 +Barnesville,PA,18214 +Beaver Meadows,PA,18216 +Coaldale,PA,18218 +Delano,PA,18220 +Drums,PA,18222 +Freeland,PA,18224 +Jim Thorpe,PA,18229 +Lansford,PA,18232 +Weissport,PA,18235 +Mcadoo,PA,18237 +Nesquehoning,PA,18240 +Quakake,PA,18245 +Rock Glen,PA,18246 +Sheppton,PA,18248 +Sugarloaf,PA,18249 +Summit Hill,PA,18250 +Tamaqua,PA,18252 +Weatherly,PA,18255 +East Stroudsburg,PA,18301 +Bartonsville,PA,18321 +Brodheadsville,PA,18322 +Bushkill,PA,18324 +Canadensis,PA,18325 +Cresco,PA,18326 +Delaware Water G,PA,18327 +Dingmans Ferry,PA,18328 +Effort,PA,18330 +Gilbert,PA,18331 +Henryville,PA,18332 +Kresgeville,PA,18333 +Long Pond,PA,18334 +Matamoras,PA,18336 +Milford,PA,18337 +Millrift,PA,18340 +Mount Bethel,PA,18343 +Mount Pocono,PA,18344 +Pocono Summit,PA,18346 +Pocono Lake,PA,18347 +Pocono Pines,PA,18350 +Reeders,PA,18352 +Saylorsburg,PA,18353 +Sciota,PA,18354 +Scotrun,PA,18355 +Stroudsburg,PA,18360 +Swiftwater,PA,18370 +Tamiment,PA,18371 +Tannersville,PA,18372 +Aldenville,PA,18401 +Eynon,PA,18403 +Beach Lake,PA,18405 +Simpson,PA,18407 +Clarks Summit,PA,18411 +Dalton,PA,18414 +Damascus,PA,18415 +Equinunk,PA,18417 +Factoryville,PA,18419 +Browndale,PA,18421 +Gouldsboro,PA,18424 +Greeley,PA,18425 +Greentown,PA,18426 +Hamlin,PA,18427 +Hawley,PA,18428 +Herrick Center,PA,18430 +Honesdale,PA,18431 +Mayfield,PA,18433 +Jessup,PA,18434 +Lackawaxen,PA,18435 +Lake Ariel,PA,18436 +Lake Como,PA,18437 +Lakeville,PA,18438 +Lakewood,PA,18439 +Lenoxville,PA,18441 +Milanville,PA,18443 +Moscow,PA,18444 +Newfoundland,PA,18445 +Nicholson,PA,18446 +Olyphant,PA,18447 +Paupack,PA,18451 +Peckville,PA,18452 +Pleasant Mount,PA,18453 +Preston Park,PA,18455 +Prompton,PA,18456 +Shohola,PA,18458 +South Sterling,PA,18460 +Starlight,PA,18461 +Starrucca,PA,18462 +Sterling,PA,18463 +Tafton,PA,18464 +Thompson,PA,18465 +Tobyhanna,PA,18466 +Tyler Hill,PA,18469 +Union Dale,PA,18470 +Waymart,PA,18472 +Scranton,PA,18503 +Scranton,PA,18504 +Scranton,PA,18505 +Moosic,PA,18507 +Scranton,PA,18508 +Scranton,PA,18509 +Scranton,PA,18510 +Dunmore,PA,18512 +Taylor,PA,18517 +Old Forge,PA,18518 +Dickson City,PA,18519 +Berwick,PA,18603 +Blakeslee,PA,18610 +College Miserico,PA,18612 +Dushore,PA,18614 +Falls,PA,18615 +Forksville,PA,18616 +Glen Lyon,PA,18617 +Harveys Lake,PA,18618 +Hillsgrove,PA,18619 +Hunlock Creek,PA,18621 +Huntington Mills,PA,18622 +Laceyville,PA,18623 +Lake Harmony,PA,18624 +Lopez,PA,18628 +Mehoopany,PA,18629 +Meshoppen,PA,18630 +Mifflinville,PA,18631 +Mildred,PA,18632 +Nanticoke,PA,18634 +Nescopeck,PA,18635 +Noxen,PA,18636 +Pittston,PA,18640 +Avoca,PA,18641 +Duryea,PA,18642 +West Pittston,PA,18643 +Wyoming,PA,18644 +Plymouth,PA,18651 +Mocanaqua,PA,18655 +Sweet Valley,PA,18656 +Center Moreland,PA,18657 +Wapwallopen,PA,18660 +White Haven,PA,18661 +Wilkes Barre,PA,18701 +Hanover Township,PA,18702 +Kingston,PA,18704 +Wilkes Barre,PA,18705 +Ashley,PA,18706 +Mountain Top,PA,18707 +Shavertown,PA,18708 +Luzerne,PA,18709 +Montrose,PA,18801 +Athens,PA,18810 +Brackney,PA,18812 +East Smithfield,PA,18817 +Friendsville,PA,18818 +Great Bend,PA,18821 +Hallstead,PA,18822 +Harford,PA,18823 +Hop Bottom,PA,18824 +Jackson,PA,18825 +Kingsley,PA,18826 +Lawton,PA,18828 +Le Raysville,PA,18829 +Little Meadows,PA,18830 +Milan,PA,18831 +Monroeton,PA,18832 +New Albany,PA,18833 +New Milford,PA,18834 +Rome,PA,18837 +Rushville,PA,18839 +Sayre,PA,18840 +South Gibson,PA,18842 +Springville,PA,18844 +Stevensville,PA,18845 +Sugar Run,PA,18846 +Susquehanna,PA,18847 +Towanda,PA,18848 +Ulster,PA,18850 +Warren Center,PA,18851 +Wyalusing,PA,18853 +Wysox,PA,18854 +New Britain,PA,18901 +Carversville,PA,18913 +Chalfont,PA,18914 +Colmar,PA,18915 +Dublin,PA,18917 +Erwinna,PA,18920 +Fountainville,PA,18923 +Furlong,PA,18925 +Hilltown,PA,18927 +Jamison,PA,18929 +Kintnersville,PA,18930 +Line Lexington,PA,18932 +Lumberville,PA,18933 +Mechanicsville,PA,18934 +Montgomeryville,PA,18936 +New Hope,PA,18938 +George School,PA,18940 +Ottsville,PA,18942 +Perkasie,PA,18944 +Pipersville,PA,18947 +Quakertown,PA,18951 +Richboro,PA,18954 +Richlandtown,PA,18955 +Sellersville,PA,18960 +Bethton,PA,18964 +Holland,PA,18966 +Telford,PA,18969 +Upper Black Eddy,PA,18972 +Warminster,PA,18974 +Warrington,PA,18976 +Washington Cross,PA,18977 +Ogontz Campus,PA,19001 +Maple Glen,PA,19002 +Ardmore,PA,19003 +Bala Cynwyd,PA,19004 +Huntingdon Valle,PA,19006 +Tullytown,PA,19007 +Broomall,PA,19008 +Bryn Mawr,PA,19010 +Cheltenham,PA,19012 +Chester,PA,19013 +Aston,PA,19014 +Brookhaven,PA,19015 +Primos Secane,PA,19018 +Bensalem,PA,19020 +Croydon,PA,19021 +Crum Lynne,PA,19022 +Collingdale,PA,19023 +Dresher,PA,19025 +Pilgrim Gardens,PA,19026 +Lester,PA,19029 +Fairless Hills,PA,19030 +Flourtown,PA,19031 +Folcroft,PA,19032 +Folsom,PA,19033 +Fort Washington,PA,19034 +Gladwyne,PA,19035 +Glenolden,PA,19036 +Glenside,PA,19038 +Hatboro,PA,19040 +Haverford,PA,19041 +Holmes,PA,19043 +Horsham,PA,19044 +Meadowbrook,PA,19046 +Penndel,PA,19047 +Yeadon,PA,19050 +Feasterville Tre,PA,19053 +Levittown,PA,19054 +Levittown,PA,19055 +Levittown,PA,19056 +Levittown,PA,19057 +Boothwyn,PA,19061 +Glen Riddle Lima,PA,19063 +Springfield,PA,19064 +Merion Station,PA,19066 +Yardley,PA,19067 +Morton,PA,19070 +Narberth,PA,19072 +Newtown Square,PA,19073 +Norwood,PA,19074 +Oreland,PA,19075 +Prospect Park,PA,19076 +Ridley Park,PA,19078 +Sharon Hill,PA,19079 +Swarthmore,PA,19081 +Upper Darby,PA,19082 +Havertown,PA,19083 +Villanova,PA,19085 +Wallingford,PA,19086 +Radnor,PA,19087 +Willow Grove Nas,PA,19090 +Woodlyn,PA,19094 +Wyncote,PA,19095 +Wynnewood,PA,19096 +Philadelphia,PA,19102 +Philadelphia,PA,19103 +Philadelphia,PA,19104 +Philadelphia,PA,19106 +Philadelphia,PA,19107 +Philadelphia,PA,19111 +Philadelphia,PA,19112 +Philadelphia,PA,19113 +Philadelphia,PA,19114 +Philadelphia,PA,19115 +Philadelphia,PA,19116 +Elkins Park,PA,19117 +Philadelphia,PA,19118 +Philadelphia,PA,19119 +Philadelphia,PA,19120 +Philadelphia,PA,19121 +Philadelphia,PA,19122 +Philadelphia,PA,19123 +Philadelphia,PA,19124 +Philadelphia,PA,19125 +Philadelphia,PA,19126 +Philadelphia,PA,19127 +Philadelphia,PA,19128 +Philadelphia,PA,19129 +Philadelphia,PA,19130 +Philadelphia,PA,19131 +Philadelphia,PA,19132 +Philadelphia,PA,19133 +Philadelphia,PA,19134 +Philadelphia,PA,19135 +Philadelphia,PA,19136 +Philadelphia,PA,19137 +Philadelphia,PA,19138 +Philadelphia,PA,19139 +Philadelphia,PA,19140 +Philadelphia,PA,19141 +Philadelphia,PA,19142 +Philadelphia,PA,19143 +Philadelphia,PA,19144 +Philadelphia,PA,19145 +Philadelphia,PA,19146 +Philadelphia,PA,19147 +Philadelphia,PA,19148 +Philadelphia,PA,19149 +Philadelphia,PA,19150 +Philadelphia,PA,19151 +Philadelphia,PA,19152 +Philadelphia,PA,19153 +Philadelphia,PA,19154 +Paoli,PA,19301 +Atglen,PA,19310 +Avondale,PA,19311 +Berwyn,PA,19312 +Chadds Ford,PA,19317 +Cheyney,PA,19319 +Coatesville,PA,19320 +Cochranville,PA,19330 +Devon,PA,19333 +Downingtown,PA,19335 +Exton,PA,19341 +Glen Mills,PA,19342 +Glenmoore,PA,19343 +Honey Brook,PA,19344 +Kelton,PA,19346 +Kennett Square,PA,19348 +Landenberg,PA,19350 +Lincoln Universi,PA,19352 +Frazer,PA,19355 +Nottingham,PA,19362 +Oxford,PA,19363 +Parkesburg,PA,19365 +Thorndale,PA,19372 +Thornton,PA,19373 +Toughkenamon,PA,19374 +West Chester,PA,19380 +West Chester,PA,19382 +West Grove,PA,19390 +Norristown,PA,19401 +Eagleville,PA,19403 +Bridgeport,PA,19405 +King Of Prussia,PA,19406 +Penllyn,PA,19422 +Chester Springs,PA,19425 +Collegeville,PA,19426 +West Conshohocke,PA,19428 +Frederick,PA,19435 +Gwynedd,PA,19436 +Harleysville,PA,19438 +Hatfield,PA,19440 +Lafayette Hill,PA,19444 +Lansdale,PA,19446 +Mont Clare,PA,19453 +North Wales,PA,19454 +Phoenixville,PA,19460 +Plymouth Meeting,PA,19462 +Sanatoga,PA,19464 +Limerick,PA,19468 +Schwenksville,PA,19473 +Spring City,PA,19475 +Spring House,PA,19477 +Zieglersville,PA,19492 +Adamstown,PA,19501 +Bally,PA,19503 +Barto,PA,19504 +Bechtelsville,PA,19505 +Bernville,PA,19506 +Bethel,PA,19507 +Birdsboro,PA,19508 +Blandon,PA,19510 +Boyertown,PA,19512 +Douglassville,PA,19518 +Elverson,PA,19520 +Evansville,PA,19522 +Gilbertsville,PA,19525 +Hamburg,PA,19526 +Kempton,PA,19529 +Kutztown,PA,19530 +Leesport,PA,19533 +Lenhartsville,PA,19534 +Mertztown,PA,19539 +Mohnton,PA,19540 +Mohrsville,PA,19541 +Morgantown,PA,19543 +Oley,PA,19547 +Port Clinton,PA,19549 +Robesonia,PA,19551 +Shoemakersville,PA,19555 +Temple,PA,19560 +Topton,PA,19562 +Wernersville,PA,19565 +Womelsdorf,PA,19567 +Reading,PA,19601 +Reading,PA,19602 +Reading,PA,19604 +Reading,PA,19605 +Mount Penn,PA,19606 +Shillington,PA,19607 +Sinking Spring,PA,19608 +West Lawn,PA,19609 +Wyomissing,PA,19610 +Reading,PA,19611 +Ashaway,RI,2804 +Barrington,RI,2806 +Block Island,RI,2807 +Bradford,RI,2808 +Bristol,RI,2809 +Richmond,RI,2812 +Charlestown,RI,2813 +Chepachet,RI,2814 +Clayville,RI,2815 +Coventry,RI,2816 +West Greenwich,RI,2817 +East Greenwich,RI,2818 +2821,RI,2821 +Exeter,RI,2822 +Foster,RI,2825 +Greene,RI,2827 +Greenville,RI,2828 +Harrisville,RI,2830 +Hope,RI,2831 +Richmond,RI,2832 +Jamestown,RI,2835 +Richmond,RI,2836 +Little Compton,RI,2837 +Manville,RI,2838 +Middletown,RI,2840 +North Kingstown,RI,2852 +North Scituate,RI,2857 +Oakland,RI,2858 +Pascoag,RI,2859 +Pawtucket,RI,2860 +Pawtucket,RI,2861 +Central Falls,RI,2863 +Cumberland,RI,2864 +Lincoln,RI,2865 +Portsmouth,RI,2871 +Prudence Island,RI,2872 +Saunderstown,RI,2874 +Slatersville,RI,2876 +Slocum,RI,2877 +Tiverton,RI,2878 +Narragansett,RI,2879 +Kingston,RI,2881 +Narragansett,RI,2882 +Peace Dale,RI,2883 +Warren,RI,2885 +Warwick,RI,2886 +Warwick,RI,2888 +Warwick,RI,2889 +Westerly,RI,2891 +Richmond,RI,2892 +West Warwick,RI,2893 +Wood River Junct,RI,2894 +North Smithfield,RI,2895 +Richmond,RI,2898 +Providence,RI,2903 +Centredale,RI,2904 +Cranston,RI,2905 +Providence,RI,2906 +Cranston,RI,2907 +Providence,RI,2908 +Cranston,RI,2909 +Cranston,RI,2910 +Centredale,RI,2911 +East Providence,RI,2914 +Riverside,RI,2915 +Rumford,RI,2916 +Smithfield,RI,2917 +Cranston,RI,2919 +Cranston,RI,2920 +Cranston,RI,2921 +Alcolu,SC,29001 +Bamberg,SC,29003 +Batesburg,SC,29006 +Bethune,SC,29009 +Bishopville,SC,29010 +Blackstock,SC,29014 +Blair,SC,29015 +Blythewood,SC,29016 +Bowman,SC,29018 +Camden,SC,29020 +Cameron,SC,29030 +Carlisle,SC,29031 +Cassatt,SC,29032 +Cayce,SC,29033 +Chapin,SC,29036 +Chappells,SC,29037 +Cope,SC,29038 +Cordova,SC,29039 +Dalzell,SC,29040 +Denmark,SC,29042 +Eastover,SC,29044 +Elgin,SC,29045 +Elliott,SC,29046 +Elloree,SC,29047 +Eutawville,SC,29048 +Gable,SC,29051 +Gadsden,SC,29052 +Gaston,SC,29053 +Gilbert,SC,29054 +Great Falls,SC,29055 +Greeleyville,SC,29056 +Heath Springs,SC,29058 +Holly Hill,SC,29059 +Hopkins,SC,29061 +Irmo,SC,29063 +Jenkinsville,SC,29065 +Kershaw,SC,29067 +Lamar,SC,29069 +Leesville,SC,29070 +Lexington,SC,29072 +Lexington,SC,29073 +Little Mountain,SC,29075 +Lone Star,SC,29077 +Lugoff,SC,29078 +Lynchburg,SC,29080 +Ehrhardt,SC,29081 +Lodge,SC,29082 +Mc Bee,SC,29101 +Paxville,SC,29102 +Saint Charles,SC,29104 +Monetta,SC,29105 +Neeses,SC,29107 +Newberry,SC,29108 +New Zion,SC,29111 +North,SC,29112 +Norway,SC,29113 +Olanta,SC,29114 +Orangeburg,SC,29115 +Pelion,SC,29123 +Pinewood,SC,29125 +Pomaria,SC,29126 +Prosperity,SC,29127 +Rembert,SC,29128 +Ridge Spring,SC,29129 +Ridgeway,SC,29130 +Rimini,SC,29131 +Rowesville,SC,29133 +Fort Motte,SC,29135 +Salley,SC,29137 +Saluda,SC,29138 +Santee,SC,29142 +Silverstreet,SC,29145 +Springfield,SC,29146 +Summerton,SC,29148 +Oswego,SC,29150 +Shaw A F B,SC,29152 +Sumter,SC,29154 +Swansea,SC,29160 +Timmonsville,SC,29161 +Turbeville,SC,29162 +Vance,SC,29163 +Wagener,SC,29164 +Ward,SC,29166 +Wedgefield,SC,29168 +West Columbia,SC,29169 +West Columbia,SC,29170 +West Columbia,SC,29172 +Westville,SC,29175 +Whitmire,SC,29178 +Winnsboro,SC,29180 +Columbia,SC,29201 +Columbia,SC,29203 +Columbia,SC,29204 +Columbia,SC,29205 +Columbia,SC,29206 +Columbia,SC,29209 +Columbia,SC,29210 +Columbia,SC,29212 +Columbia,SC,29223 +Spartanburg,SC,29301 +Spartanburg,SC,29302 +Valley Falls,SC,29303 +Buffalo,SC,29321 +Campobello,SC,29322 +Chesnee,SC,29323 +Clinton,SC,29325 +Cowpens,SC,29330 +Cross Hill,SC,29332 +Duncan,SC,29334 +Enoree,SC,29335 +Gaffney,SC,29340 +Inman,SC,29349 +Joanna,SC,29351 +Kelton,SC,29353 +Kinards,SC,29355 +Landrum,SC,29356 +Ora,SC,29360 +Lyman,SC,29365 +Moore,SC,29369 +Mountville,SC,29370 +Pacolet,SC,29372 +Glenn Springs,SC,29374 +Roebuck,SC,29376 +Union,SC,29379 +Waterloo,SC,29384 +Wellford,SC,29385 +Woodruff,SC,29388 +Charleston,SC,29401 +Charleston,SC,29403 +Charleston,SC,29404 +Charleston,SC,29405 +North Charleston,SC,29406 +Charleston,SC,29407 +Charleston,SC,29412 +Charleston,SC,29414 +Charleston,SC,29418 +Charleston,SC,29420 +Jericho,SC,29426 +Awendaw,SC,29429 +Bonneau,SC,29431 +Branchville,SC,29432 +Cordesville,SC,29434 +Cottageville,SC,29435 +Cross,SC,29436 +Dorchester,SC,29437 +Edisto Island,SC,29438 +Georgetown,SC,29440 +Mount Holly,SC,29445 +Green Pond,SC,29446 +Harleyville,SC,29448 +Meggett,SC,29449 +Huger,SC,29450 +Isle Of Palms,SC,29451 +Shulerville,SC,29453 +Johns Island,SC,29455 +Ladson,SC,29456 +Mc Clellanville,SC,29458 +Oakley,SC,29461 +Mount Pleasant,SC,29464 +Pineville,SC,29468 +Pinopolis,SC,29469 +Ravenel,SC,29470 +Reevesville,SC,29471 +Ridgeville,SC,29472 +Round O,SC,29474 +Ruffin,SC,29475 +Saint George,SC,29477 +Alvin,SC,29479 +Smoaks,SC,29481 +Sullivans Island,SC,29482 +Summerville,SC,29483 +Summerville,SC,29485 +Wadmalaw Island,SC,29487 +Ritter,SC,29488 +Wando,SC,29492 +Florence,SC,29501 +Florence,SC,29505 +Quinby,SC,29506 +Andrews,SC,29510 +Aynor,SC,29511 +Bennettsville,SC,29512 +Blenheim,SC,29516 +Cades,SC,29518 +Cheraw,SC,29520 +Clio,SC,29525 +Conway,SC,29526 +Bucksport,SC,29527 +Coward,SC,29530 +Darlington,SC,29532 +Dillon,SC,29536 +Effingham,SC,29541 +Fork,SC,29543 +Galivants Ferry,SC,29544 +Green Sea,SC,29545 +Gresham,SC,29546 +South Of The Bor,SC,29547 +Hartsville,SC,29550 +Hemingway,SC,29554 +Johnsonville,SC,29555 +Kingstree,SC,29556 +Lake City,SC,29560 +Lake View,SC,29563 +Lane,SC,29564 +Latta,SC,29565 +Little River,SC,29566 +Little Rock,SC,29567 +Longs,SC,29568 +Loris,SC,29569 +Mc Coll,SC,29570 +Marion,SC,29571 +Myrtle Beach,SC,29572 +Mullins,SC,29574 +Surfside Beach,SC,29575 +Murrells Inlet,SC,29576 +Myrtle Beach,SC,29577 +Nesmith,SC,29580 +Nichols,SC,29581 +Cherry Grove Bea,SC,29582 +Pamplico,SC,29583 +Patrick,SC,29584 +Pawleys Island,SC,29585 +Salters,SC,29590 +Scranton,SC,29591 +Sellers,SC,29592 +Society Hill,SC,29593 +Wallace,SC,29596 +Greenville,SC,29601 +Greenville,SC,29605 +Greenville,SC,29607 +Greenville,SC,29609 +Greenville,SC,29611 +Greenville,SC,29615 +Abbeville,SC,29620 +Anderson,SC,29621 +Anderson,SC,29624 +Anderson,SC,29625 +Belton,SC,29627 +Calhoun Falls,SC,29628 +Central,SC,29630 +Clemson,SC,29631 +Cleveland,SC,29635 +Shoals Junction,SC,29638 +Due West,SC,29639 +Easley,SC,29640 +Easley,SC,29642 +Fair Play,SC,29643 +Fountain Inn,SC,29644 +Ora,SC,29645 +Greenwood,SC,29646 +Greenwood,SC,29649 +Greer,SC,29650 +Greer,SC,29651 +Hodges,SC,29653 +Honea Path,SC,29654 +Iva,SC,29655 +Liberty,SC,29657 +Long Creek,SC,29658 +Lowndesville,SC,29659 +Marietta,SC,29661 +Mauldin,SC,29662 +Mountain Rest,SC,29664 +Ninety Six,SC,29666 +Cateechee,SC,29667 +Pelzer,SC,29669 +Pendleton,SC,29670 +Pickens,SC,29671 +Piedmont,SC,29673 +Salem,SC,29676 +Seneca,SC,29678 +Simpsonville,SC,29681 +Six Mile,SC,29682 +Starr,SC,29684 +Sunset,SC,29685 +Tamassee,SC,29686 +Taylors,SC,29687 +Tigerville,SC,29688 +Townville,SC,29689 +Travelers Rest,SC,29690 +Walhalla,SC,29691 +Ware Shoals,SC,29692 +Madison,SC,29693 +West Union,SC,29696 +Williamston,SC,29697 +Cherokee Falls,SC,29702 +Catawba,SC,29704 +Chester,SC,29706 +Chesterfield,SC,29709 +Lake Wylie,SC,29710 +Edgemoor,SC,29712 +Fort Lawn,SC,29714 +Tega Cay,SC,29715 +Hickory Grove,SC,29717 +Jefferson,SC,29718 +Lancaster,SC,29720 +Mc Connells,SC,29726 +Mount Croghan,SC,29727 +Pageland,SC,29728 +Richburg,SC,29729 +Rock Hill,SC,29730 +Rock Hill,SC,29732 +Ruby,SC,29741 +Sharon,SC,29742 +Smyrna,SC,29743 +York,SC,29745 +Aiken,SC,29801 +Aiken,SC,29803 +New Ellenton,SC,29809 +Allendale,SC,29810 +Barnwell,SC,29812 +Blackville,SC,29817 +Bradley,SC,29819 +Clarks Hill,SC,29821 +Edgefield,SC,29824 +Fairfax,SC,29827 +Graniteville,SC,29829 +Jackson,SC,29831 +Johnston,SC,29832 +Mc Cormick,SC,29835 +Martin,SC,29836 +Modoc,SC,29838 +Mount Carmel,SC,29840 +Beech Island,SC,29841 +Olar,SC,29843 +Plum Branch,SC,29845 +Trenton,SC,29847 +Troy,SC,29848 +Ulmer,SC,29849 +Warrenville,SC,29851 +Williston,SC,29853 +Windsor,SC,29856 +Burton,SC,29902 +Bluffton,SC,29910 +Brunson,SC,29911 +Early Branch,SC,29916 +Estill,SC,29918 +St Helena Island,SC,29920 +Garnett,SC,29922 +Hampton,SC,29924 +Hilton Head Isla,SC,29926 +Hardeeville,SC,29927 +Hilton Head Isla,SC,29928 +Islandton,SC,29929 +Luray,SC,29932 +Pineland,SC,29934 +Port Royal,SC,29935 +Coosawatchie,SC,29936 +Seabrook,SC,29940 +Tillman,SC,29943 +Varnville,SC,29944 +Yemassee,SC,29945 +Alcester,SD,57001 +Aurora,SD,57002 +Baltic,SD,57003 +Beresford,SD,57004 +Corson,SD,57005 +Brookings,SD,57006 +Burbank,SD,57010 +Canistota,SD,57012 +Canton,SD,57013 +Centerville,SD,57014 +Chancellor,SD,57015 +Chester,SD,57016 +Colman,SD,57017 +Colton,SD,57018 +Crooks,SD,57020 +Davis,SD,57021 +Dell Rapids,SD,57022 +Egan,SD,57024 +Elk Point,SD,57025 +Elkton,SD,57026 +Fairview,SD,57027 +Flandreau,SD,57028 +Freeman,SD,57029 +Garretson,SD,57030 +Gayville,SD,57031 +Harrisburg,SD,57032 +Hartford,SD,57033 +Hudson,SD,57034 +Humboldt,SD,57035 +Hurley,SD,57036 +Irene,SD,57037 +Jefferson,SD,57038 +Lennox,SD,57039 +Lesterville,SD,57040 +Madison,SD,57042 +Marion,SD,57043 +Meckling,SD,57044 +Menno,SD,57045 +Mission Hill,SD,57046 +Monroe,SD,57047 +Montrose,SD,57048 +Dakota Dunes,SD,57049 +Nunda,SD,57050 +Oldham,SD,57051 +Olivet,SD,57052 +Parker,SD,57053 +Ramona,SD,57054 +Renner,SD,57055 +Rutland,SD,57057 +Salem,SD,57058 +Scotland,SD,57059 +Sherman,SD,57060 +Sinai,SD,57061 +Springfield,SD,57062 +Tabor,SD,57063 +Tea,SD,57064 +Trent,SD,57065 +Tyndall,SD,57066 +Utica,SD,57067 +Valley Springs,SD,57068 +Vermillion,SD,57069 +Viborg,SD,57070 +Volga,SD,57071 +Volin,SD,57072 +Wakonda,SD,57073 +Ward,SD,57074 +Wentworth,SD,57075 +Winfred,SD,57076 +Worthing,SD,57077 +Yankton,SD,57078 +Sioux Falls,SD,57102 +Sioux Falls,SD,57103 +Sioux Falls,SD,57104 +Sioux Falls,SD,57105 +Sioux Falls,SD,57106 +Sioux Falls,SD,57107 +Buffalo Ridge,SD,57115 +Sioux Falls,SD,57116 +Watertown,SD,57201 +Waverly,SD,57202 +Arlington,SD,57212 +Astoria,SD,57213 +Badger,SD,57214 +Big Stone City,SD,57216 +Bradley,SD,57217 +Brandt,SD,57218 +Butler,SD,57219 +Bruce,SD,57220 +Bryant,SD,57221 +Castlewood,SD,57223 +Claire City,SD,57224 +Clark,SD,57225 +Altamont,SD,57226 +Corona,SD,57227 +57230,SD,57230 +De Smet,SD,57231 +Eden,SD,57232 +Erwin,SD,57233 +Dempster,SD,57234 +Florence,SD,57235 +Garden City,SD,57236 +Gary,SD,57237 +Bemis,SD,57238 +Grenville,SD,57239 +Hayti,SD,57241 +Hazel,SD,57242 +Henry,SD,57243 +Hetland,SD,57244 +Kranzburg,SD,57245 +Labolt,SD,57246 +Lake City,SD,57247 +Lake Norden,SD,57248 +Lake Preston,SD,57249 +Marvin,SD,57251 +Milbank,SD,57252 +New Effington,SD,57255 +Ortley,SD,57256 +Peever,SD,57257 +Raymond,SD,57258 +Albee,SD,57259 +Rosholt,SD,57260 +Roslyn,SD,57261 +Agency Village,SD,57262 +South Shore,SD,57263 +Stockholm,SD,57264 +Strandburg,SD,57265 +Summit,SD,57266 +Toronto,SD,57268 +Twin Brooks,SD,57269 +Veblen,SD,57270 +Vienna,SD,57271 +Wallace,SD,57272 +Waubay,SD,57273 +Lily,SD,57274 +White,SD,57276 +Willow Lake,SD,57278 +Wilmot,SD,57279 +Loomis,SD,57301 +Farmer,SD,57311 +Alpena,SD,57312 +Armour,SD,57313 +Forestburg,SD,57314 +Avon,SD,57315 +Bancroft,SD,57316 +Bonesteel,SD,57317 +Dolton,SD,57319 +Canova,SD,57321 +Carpenter,SD,57322 +Carthage,SD,57323 +Cavour,SD,57324 +Chamberlain,SD,57325 +Corsica,SD,57328 +Dante,SD,57329 +Delmont,SD,57330 +Dimock,SD,57331 +Emery,SD,57332 +Ethan,SD,57334 +Fairfax,SD,57335 +57336,SD,57336 +Fedora,SD,57337 +Fort Thompson,SD,57339 +Fulton,SD,57340 +Gann Valley,SD,57341 +Geddes,SD,57342 +Harrison,SD,57344 +Highmore,SD,57345 +Hitchcock,SD,57348 +Roswell,SD,57349 +Huron,SD,57350 +Iroquois,SD,57353 +Kaylor,SD,57354 +Kimball,SD,57355 +Lake Andes,SD,57356 +Ravinia,SD,57357 +Lane,SD,57358 +Letcher,SD,57359 +Marty,SD,57361 +Miller,SD,57362 +Mount Vernon,SD,57363 +New Holland,SD,57364 +Parkston,SD,57366 +Plankinton,SD,57368 +Academy,SD,57369 +Pukwana,SD,57370 +Ree Heights,SD,57371 +Saint Lawrence,SD,57373 +Spencer,SD,57374 +Stickney,SD,57375 +Tripp,SD,57376 +Virgil,SD,57379 +Wagner,SD,57380 +Wessington,SD,57381 +Wessington Sprin,SD,57382 +White Lake,SD,57383 +Wolsey,SD,57384 +Woonsocket,SD,57385 +Yale,SD,57386 +Aberdeen,SD,57401 +Akaska,SD,57420 +Amherst,SD,57421 +Andover,SD,57422 +Athol,SD,57424 +57425,SD,57425 +Barnard,SD,57426 +Bath,SD,57427 +Bowdle,SD,57428 +Brentford,SD,57429 +Britton,SD,57430 +Claremont,SD,57432 +Columbia,SD,57433 +Verdon,SD,57434 +Cresbard,SD,57435 +Doland,SD,57436 +Artas,SD,57437 +Miranda,SD,57438 +Frankfort,SD,57440 +Frederick,SD,57441 +Gettysburg,SD,57442 +Groton,SD,57445 +Hecla,SD,57446 +Hosmer,SD,57448 +Houghton,SD,57449 +Hoven,SD,57450 +Ipswich,SD,57451 +Java,SD,57452 +Langford,SD,57454 +Lebanon,SD,57455 +Leola,SD,57456 +Longlake,SD,57457 +Mansfield,SD,57460 +Mellette,SD,57461 +Mina,SD,57462 +Northville,SD,57465 +Onaka,SD,57466 +Orient,SD,57467 +Pierpont,SD,57468 +Redfield,SD,57469 +Rockham,SD,57470 +Roscoe,SD,57471 +Selby,SD,57472 +Seneca,SD,57473 +Stratford,SD,57474 +Tolstoy,SD,57475 +Tulare,SD,57476 +Turton,SD,57477 +Warner,SD,57479 +Wetonka,SD,57481 +Zell,SD,57483 +Pierre,SD,57501 +Agar,SD,57520 +Belvidere,SD,57521 +Blunt,SD,57522 +Lucas,SD,57523 +Carter,SD,57526 +Cedarbutte,SD,57527 +Colome,SD,57528 +Dallas,SD,57529 +Draper,SD,57531 +Fort Pierre,SD,57532 +Dixon,SD,57533 +Hamill,SD,57534 +Harrold,SD,57536 +Hayes,SD,57537 +Herrick,SD,57538 +Holabird,SD,57540 +Ideal,SD,57541 +Iona,SD,57542 +Kadoka,SD,57543 +Kennebec,SD,57544 +Keyapaha,SD,57545 +Long Valley,SD,57547 +Lower Brule,SD,57548 +Vetal,SD,57551 +Ottumwa,SD,57552 +Milesville,SD,57553 +Mission,SD,57555 +Mission Ridge,SD,57557 +Murdo,SD,57559 +Norris,SD,57560 +Okaton,SD,57562 +Onida,SD,57564 +Parmelee,SD,57566 +Philip,SD,57567 +Presho,SD,57568 +Reliance,SD,57569 +Saint Charles,SD,57571 +Saint Francis,SD,57572 +Tuthill,SD,57574 +Vivian,SD,57576 +Wanblee,SD,57577 +Wewela,SD,57578 +White River,SD,57579 +Clearfield,SD,57580 +Witten,SD,57584 +Wood,SD,57585 +Mobridge,SD,57601 +Bison,SD,57620 +Cherry Creek,SD,57622 +Dupree,SD,57623 +Faith,SD,57626 +Firesteel,SD,57628 +Glad Valley,SD,57629 +Glencross,SD,57630 +Glenham,SD,57631 +Herreid,SD,57632 +Isabel,SD,57633 +Keldron,SD,57634 +Lemmon,SD,57638 +Lodgepole,SD,57640 +Mc Intosh,SD,57641 +Mc Laughlin,SD,57642 +Mahto,SD,57643 +Meadow,SD,57644 +Morristown,SD,57645 +Mound City,SD,57646 +Parade,SD,57647 +Pollock,SD,57648 +Prairie City,SD,57649 +Ralph,SD,57650 +Reva,SD,57651 +Shadehill,SD,57653 +Timber Lake,SD,57656 +Trail City,SD,57657 +Wakpala,SD,57658 +Watauga,SD,57660 +Rockerville,SD,57701 +Silver City,SD,57702 +Ellsworth Afb,SD,57706 +Bethlehem,SD,57708 +Allen,SD,57714 +Denby,SD,57716 +Belle Fourche,SD,57717 +Black Hawk,SD,57718 +Box Elder,SD,57719 +Buffalo,SD,57720 +Buffalo Gap,SD,57722 +Sky Ranch,SD,57724 +Caputa,SD,57725 +Creighton,SD,57729 +Crazy Horse,SD,57730 +Deadwood,SD,57732 +Edgemont,SD,57735 +Elm Springs,SD,57736 +Enning,SD,57737 +Fairburn,SD,57738 +Fort Meade,SD,57741 +Fruitdale,SD,57742 +Hermosa,SD,57744 +Hill City,SD,57745 +Hot Springs,SD,57747 +Plainview,SD,57748 +Interior,SD,57750 +Keystone,SD,57751 +Kyle,SD,57752 +Spearfish Canyon,SD,57754 +Ludlow,SD,57755 +Manderson,SD,57756 +Marcus,SD,57757 +Mud Butte,SD,57758 +Nemo,SD,57759 +Newell,SD,57760 +New Underwood,SD,57761 +Nisland,SD,57762 +Oelrichs,SD,57763 +Opal,SD,57765 +Oral,SD,57766 +Owanka,SD,57767 +Piedmont,SD,57769 +Pine Ridge,SD,57770 +Porcupine,SD,57772 +Provo,SD,57774 +Cottonwood,SD,57775 +Redowl,SD,57777 +Rochford,SD,57778 +Saint Onge,SD,57779 +Scenic,SD,57780 +Smithwick,SD,57782 +Spearfish,SD,57783 +Hereford,SD,57785 +Stoneville,SD,57787 +Vale,SD,57788 +Wall,SD,57790 +Wasta,SD,57791 +White Owl,SD,57792 +Whitewood,SD,57793 +Wounded Knee,SD,57794 +Zeona,SD,57795 +Adams,TN,37010 +Alexandria,TN,37012 +Antioch,TN,37013 +Arrington,TN,37014 +Ashland City,TN,37015 +Auburntown,TN,37016 +Beechgrove,TN,37018 +Belfast,TN,37019 +Bell Buckle,TN,37020 +Bethpage,TN,37022 +Big Rock,TN,37023 +Bon Aqua,TN,37025 +Bradyville,TN,37026 +Brentwood,TN,37027 +Bumpus Mills,TN,37028 +Burns,TN,37029 +Defeated,TN,37030 +Castalian Spring,TN,37031 +Cedar Hill,TN,37032 +Centerville,TN,37033 +Chapel Hill,TN,37034 +Chapmansboro,TN,37035 +Charlotte,TN,37036 +Christiana,TN,37037 +Clarksville,TN,37040 +Clarksville,TN,37042 +Clarksville,TN,37043 +College Grove,TN,37046 +Cornersville,TN,37047 +Cottontown,TN,37048 +Cross Plains,TN,37049 +Cumberland City,TN,37050 +Cumberland Furna,TN,37051 +Cunningham,TN,37052 +Dickson,TN,37055 +Dixon Springs,TN,37057 +Dover,TN,37058 +Dowelltown,TN,37059 +Eagleville,TN,37060 +Erin,TN,37061 +Fairview,TN,37062 +Franklin,TN,37064 +Gallatin,TN,37066 +Goodlettsville,TN,37072 +Greenbrier,TN,37073 +Hartsville,TN,37074 +Hendersonville,TN,37075 +Hermitage,TN,37076 +Hurricane Mills,TN,37078 +Indian Mound,TN,37079 +Joelton,TN,37080 +Kingston Springs,TN,37082 +Lafayette,TN,37083 +Lascassas,TN,37085 +La Vergne,TN,37086 +Lebanon,TN,37087 +Lewisburg,TN,37091 +Gassaway,TN,37095 +Flatwoods,TN,37096 +Lobelville,TN,37097 +Wrigley,TN,37098 +Mc Ewen,TN,37101 +Plaza,TN,37110 +Madison,TN,37115 +Milton,TN,37118 +Mount Juliet,TN,37122 +Murfreesboro,TN,37129 +Murfreesboro,TN,37130 +New Johnsonville,TN,37134 +Nolensville,TN,37135 +Nunnelly,TN,37137 +Old Hickory,TN,37138 +Only,TN,37140 +Orlinda,TN,37141 +Palmyra,TN,37142 +Pegram,TN,37143 +Petersburg,TN,37144 +Pleasant Shade,TN,37145 +Pleasant View,TN,37146 +Pleasantville,TN,37147 +Portland,TN,37148 +Readyville,TN,37149 +Red Boiling Spri,TN,37150 +Riddleton,TN,37151 +Rockvale,TN,37153 +Royal,TN,37160 +Smithville,TN,37166 +Smyrna,TN,37167 +Southside,TN,37171 +Springfield,TN,37172 +Spring Hill,TN,37174 +Stewart,TN,37175 +Tennessee Ridge,TN,37178 +Thompsons Statio,TN,37179 +Unionville,TN,37180 +Vanleer,TN,37181 +Wartrace,TN,37183 +Watertown,TN,37184 +Waverly,TN,37185 +Westmoreland,TN,37186 +White Bluff,TN,37187 +White House,TN,37188 +Whites Creek,TN,37189 +Woodbury,TN,37190 +Woodlawn,TN,37191 +Nashville,TN,37201 +Nashville,TN,37203 +Melrose,TN,37204 +Nashville,TN,37205 +Nashville,TN,37206 +Nashville,TN,37207 +Nashville,TN,37208 +Nashville,TN,37209 +Nashville,TN,37210 +Nashville,TN,37211 +Nashville,TN,37212 +Nashville,TN,37213 +Nashville,TN,37214 +Nashville,TN,37215 +Nashville,TN,37216 +Nashville,TN,37217 +Nashville,TN,37218 +Nashville,TN,37219 +Nashville,TN,37220 +Bellevue,TN,37221 +Nashville,TN,37228 +Altamont,TN,37301 +Apison,TN,37302 +Athens,TN,37303 +Beersheba Spring,TN,37305 +Belvidere,TN,37306 +Benton,TN,37307 +Birchwood,TN,37308 +Calhoun,TN,37309 +Charleston,TN,37310 +Cleveland,TN,37311 +Cleveland,TN,37312 +Coalmont,TN,37313 +Postelle,TN,37317 +Cowan,TN,37318 +Dayton,TN,37321 +Decatur,TN,37322 +Decherd,TN,37324 +Delano,TN,37325 +Dunlap,TN,37327 +Elora,TN,37328 +Englewood,TN,37329 +Estill Springs,TN,37330 +Etowah,TN,37331 +Evensville,TN,37332 +Farner,TN,37333 +Fayetteville,TN,37334 +Flintville,TN,37335 +Georgetown,TN,37336 +Grandview,TN,37337 +Graysville,TN,37338 +Gruetli Laager,TN,37339 +Guild,TN,37340 +Harrison,TN,37341 +Hillsboro,TN,37342 +Hixson,TN,37343 +Huntland,TN,37345 +Kimball,TN,37347 +Kelso,TN,37348 +Lookout Mountain,TN,37350 +Lynchburg,TN,37352 +Mc Donald,TN,37353 +Hiwassee College,TN,37354 +Manchester,TN,37355 +Monteagle,TN,37356 +Morrison,TN,37357 +Mulberry,TN,37359 +Normandy,TN,37360 +Ocoee,TN,37361 +Oldfort,TN,37362 +Ooltewah,TN,37363 +Palmer,TN,37365 +Pelham,TN,37366 +Pikeville,TN,37367 +Reliance,TN,37369 +Riceville,TN,37370 +Sale Creek,TN,37373 +Sequatchie,TN,37374 +Sewanee,TN,37375 +Sherwood,TN,37376 +Signal Mountain,TN,37377 +Soddy Daisy,TN,37379 +South Pittsburg,TN,37380 +Spring City,TN,37381 +Tellico Plains,TN,37385 +Tracy City,TN,37387 +Dickel,TN,37388 +Turtletown,TN,37391 +Whiteside,TN,37396 +Whitwell,TN,37397 +Winchester,TN,37398 +Chattanooga,TN,37402 +Chattanooga,TN,37403 +Chattanooga,TN,37404 +Chattanooga,TN,37405 +Chattanooga,TN,37406 +Chattanooga,TN,37407 +Chattanooga,TN,37408 +Chattanooga,TN,37409 +Chattanooga,TN,37410 +Chattanooga,TN,37411 +East Ridge,TN,37412 +Red Bank,TN,37415 +Chattanooga,TN,37416 +Chattanooga,TN,37419 +Chattanooga,TN,37421 +Johnson City,TN,37601 +Johnson City,TN,37604 +Gray,TN,37615 +Afton,TN,37616 +Blountville,TN,37617 +Bluff City,TN,37618 +Bristol,TN,37620 +Butler,TN,37640 +Chuckey,TN,37641 +Church Hill,TN,37642 +Elizabethton,TN,37643 +Mount Carmel,TN,37645 +Erwin,TN,37650 +Fall Branch,TN,37656 +Flag Pond,TN,37657 +Hampton,TN,37658 +Jonesborough,TN,37659 +Bloomingdale,TN,37660 +Colonial Heights,TN,37663 +Kingsport,TN,37664 +Lynn Garden,TN,37665 +Laurel Bloomery,TN,37680 +Washington Colle,TN,37681 +Mountain City,TN,37683 +Piney Flats,TN,37686 +Roan Mountain,TN,37687 +Shady Valley,TN,37688 +Telford,TN,37690 +Trade,TN,37691 +Unicoi,TN,37692 +Watauga,TN,37694 +Alcoa,TN,37701 +Andersonville,TN,37705 +Bean Station,TN,37708 +Blaine,TN,37709 +Devonia,TN,37710 +Bulls Gap,TN,37711 +Bybee,TN,37713 +Caryville,TN,37714 +Clairfield,TN,37715 +Clinton,TN,37716 +Corryton,TN,37721 +Cosby,TN,37722 +Crab Orchard,TN,37723 +Cumberland Gap,TN,37724 +Dandridge,TN,37725 +Deer Lodge,TN,37726 +Del Rio,TN,37727 +Duff,TN,37729 +Eidson,TN,37731 +Friendsville,TN,37737 +Gatlinburg,TN,37738 +Greenback,TN,37742 +Baileyton,TN,37743 +Harriman,TN,37748 +Harrogate,TN,37752 +Hartford,TN,37753 +Heiskell,TN,37754 +Helenwood,TN,37755 +Huntsville,TN,37756 +Jacksboro,TN,37757 +Jefferson City,TN,37760 +Jellico,TN,37762 +Kingston,TN,37763 +Kodak,TN,37764 +Kyles Ford,TN,37765 +Morley,TN,37766 +Lake City,TN,37769 +Lancing,TN,37770 +Lenoir City,TN,37771 +Loudon,TN,37774 +Louisville,TN,37777 +Lowland,TN,37778 +Luttrell,TN,37779 +Maryville,TN,37801 +Maryville,TN,37804 +Mascot,TN,37806 +Maynardville,TN,37807 +Midway,TN,37809 +Mohawk,TN,37810 +Mooresburg,TN,37811 +Morristown,TN,37813 +Morristown,TN,37814 +Mosheim,TN,37818 +Newcomb,TN,37819 +New Market,TN,37820 +Newport,TN,37821 +New Tazewell,TN,37825 +Niota,TN,37826 +Oakdale,TN,37829 +Oak Ridge,TN,37830 +Oliver Springs,TN,37840 +Oneida,TN,37841 +Parrottsville,TN,37843 +Petros,TN,37845 +Philadelphia,TN,37846 +Pioneer,TN,37847 +Powder Springs,TN,37848 +Powell,TN,37849 +Robbins,TN,37852 +Rockford,TN,37853 +Rockwood,TN,37854 +Rogersville,TN,37857 +Russellville,TN,37860 +Rutledge,TN,37861 +Sevierville,TN,37862 +Pigeon Forge,TN,37863 +Seymour,TN,37865 +Sharps Chapel,TN,37866 +Sneedville,TN,37869 +Speedwell,TN,37870 +Strawberry Plain,TN,37871 +Sunbright,TN,37872 +Surgoinsville,TN,37873 +Sweetwater,TN,37874 +Talbott,TN,37877 +Tallassee,TN,37878 +Tazewell,TN,37879 +Ten Mile,TN,37880 +Thorn Hill,TN,37881 +Townsend,TN,37882 +Treadway,TN,37883 +Vonore,TN,37885 +Walland,TN,37886 +Wartburg,TN,37887 +Washburn,TN,37888 +Baneberry,TN,37890 +Whitesburg,TN,37891 +Winfield,TN,37892 +Knoxville,TN,37902 +Knoxville,TN,37909 +Knoxville,TN,37912 +Knoxville,TN,37914 +Knoxville,TN,37915 +Knoxville,TN,37916 +Knoxville,TN,37917 +Knoxville,TN,37918 +Knoxville,TN,37919 +Kimberlin Height,TN,37920 +Karns,TN,37921 +Concord,TN,37922 +Knoxville,TN,37923 +Knoxville,TN,37924 +Knoxville,TN,37931 +Concord Farragut,TN,37932 +Knoxville,TN,37938 +Alamo,TN,38001 +Arlington,TN,38002 +Atoka,TN,38004 +Bells,TN,38006 +Bolivar,TN,38008 +Brighton,TN,38011 +Brownsville,TN,38012 +Burlison,TN,38015 +Collierville,TN,38017 +Cordova,TN,38018 +Covington,TN,38019 +Drummonds,TN,38023 +Dyersburg,TN,38024 +Eads,TN,38028 +Finley,TN,38030 +Friendship,TN,38034 +Gates,TN,38037 +Grand Junction,TN,38039 +Halls,TN,38040 +Fort Pillow,TN,38041 +Hickory Valley,TN,38042 +Hornsby,TN,38044 +Mason,TN,38049 +Middleton,TN,38052 +Millington,TN,38053 +Moscow,TN,38057 +Newbern,TN,38059 +Oakland,TN,38060 +Pocahontas,TN,38061 +Ripley,TN,38063 +Rossville,TN,38066 +Saulsbury,TN,38067 +Somerville,TN,38068 +Stanton,TN,38069 +Whiteville,TN,38075 +Williston,TN,38076 +Tiptonville,TN,38079 +Ridgely,TN,38080 +Memphis,TN,38103 +Memphis,TN,38104 +Memphis,TN,38105 +Memphis,TN,38106 +Memphis,TN,38107 +Memphis,TN,38108 +Memphis,TN,38109 +Memphis,TN,38111 +Memphis,TN,38112 +Memphis,TN,38113 +Memphis,TN,38114 +Hickory Hill,TN,38115 +Memphis,TN,38116 +Memphis,TN,38117 +Memphis,TN,38118 +Memphis,TN,38119 +Memphis,TN,38120 +Memphis,TN,38122 +Memphis,TN,38125 +Memphis,TN,38126 +Memphis,TN,38127 +Memphis,TN,38128 +Memphis,TN,38131 +Memphis,TN,38132 +Memphis,TN,38133 +Bartlett,TN,38134 +Memphis,TN,38135 +Germantown,TN,38138 +Germantown,TN,38139 +Memphis,TN,38141 +Mc Kenzie,TN,38201 +Atwood,TN,38220 +Big Sandy,TN,38221 +Buchanan,TN,38222 +Cottage Grove,TN,38224 +Dresden,TN,38225 +Dukedom,TN,38226 +Gleason,TN,38229 +Greenfield,TN,38230 +Henry,TN,38231 +Hornbeak,TN,38232 +Kenton,TN,38233 +Mansfield,TN,38236 +Martin,TN,38237 +Obion,TN,38240 +Palmersville,TN,38241 +Paris,TN,38242 +Puryear,TN,38251 +Rives,TN,38253 +Sharon,TN,38255 +Springville,TN,38256 +South Fulton,TN,38257 +Trezevant,TN,38258 +Trimble,TN,38259 +Troy,TN,38260 +Union City,TN,38261 +Jackson,TN,38301 +Jackson,TN,38305 +Adamsville,TN,38310 +Bath Springs,TN,38311 +Beech Bluff,TN,38313 +Bethel Springs,TN,38315 +Bradford,TN,38316 +Bruceton,TN,38317 +Buena Vista,TN,38318 +Camden,TN,38320 +Cedar Grove,TN,38321 +Counce,TN,38326 +Crump,TN,38327 +Darden,TN,38328 +Decaturville,TN,38329 +Dyer,TN,38330 +Enville,TN,38332 +Eva,TN,38333 +Finger,TN,38334 +Gadsden,TN,38337 +Guys,TN,38339 +Henderson,TN,38340 +Holladay,TN,38341 +Hollow Rock,TN,38342 +Humboldt,TN,38343 +Huntingdon,TN,38344 +Huron,TN,38345 +Jacks Creek,TN,38347 +Lavinia,TN,38348 +Lexington,TN,38351 +Luray,TN,38352 +Medina,TN,38355 +Medon,TN,38356 +Michie,TN,38357 +Milan,TN,38358 +Milledgeville,TN,38359 +Morris Chapel,TN,38361 +Oakfield,TN,38362 +Parsons,TN,38363 +Pinson,TN,38366 +Ramer,TN,38367 +Reagan,TN,38368 +Rutherford,TN,38369 +Saltillo,TN,38370 +Sardis,TN,38371 +Savannah,TN,38372 +Scotts Hill,TN,38374 +Selmer,TN,38375 +Shiloh,TN,38376 +Stantonville,TN,38379 +Sugar Tree,TN,38380 +Toone,TN,38381 +Trenton,TN,38382 +Westport,TN,38387 +Wildersville,TN,38388 +Yuma,TN,38390 +Denmark,TN,38391 +Mercer,TN,38392 +Columbia,TN,38401 +Clifton,TN,38425 +Ardmore,TN,38449 +Collinwood,TN,38450 +Culleoka,TN,38451 +Cypress Inn,TN,38452 +Ardmore,TN,38453 +Duck River,TN,38454 +Ethridge,TN,38456 +Five Points,TN,38457 +Frankewing,TN,38459 +Goodspring,TN,38460 +Hampshire,TN,38461 +Kimmins,TN,38462 +Iron City,TN,38463 +Lawrenceburg,TN,38464 +Leoma,TN,38468 +Loretto,TN,38469 +Lutts,TN,38471 +Lynnville,TN,38472 +Minor Hill,TN,38473 +Mount Pleasant,TN,38474 +Olivehill,TN,38475 +Primm Springs,TN,38476 +Prospect,TN,38477 +Pulaski,TN,38478 +Saint Joseph,TN,38481 +Santa Fe,TN,38482 +Summertown,TN,38483 +Waynesboro,TN,38485 +Westpoint,TN,38486 +Williamsport,TN,38487 +Taft,TN,38488 +Algood,TN,38501 +Allardt,TN,38504 +Allons,TN,38541 +Allred,TN,38542 +Alpine,TN,38543 +Baxter,TN,38544 +Bloomington Spri,TN,38545 +Brush Creek,TN,38547 +Buffalo Valley,TN,38548 +Byrdstown,TN,38549 +Celina,TN,38551 +Chestnut Mound,TN,38552 +Clarkrange,TN,38553 +Crawford,TN,38554 +Fairfield Glade,TN,38555 +Jamestown,TN,38556 +Doyle,TN,38559 +Elmwood,TN,38560 +Gainesboro,TN,38562 +Gordonsville,TN,38563 +Granville,TN,38564 +Grimsley,TN,38565 +Hickman,TN,38567 +Hilham,TN,38568 +Lancaster,TN,38569 +Livingston,TN,38570 +Monroe,TN,38573 +Monterey,TN,38574 +Moss,TN,38575 +Pall Mall,TN,38577 +Pleasant Hill,TN,38578 +Quebeck,TN,38579 +Rickman,TN,38580 +Bone Cave,TN,38581 +Silver Point,TN,38582 +Ravenscroft,TN,38583 +Spencer,TN,38585 +Walling,TN,38587 +Whitleyville,TN,38588 +Wilder,TN,38589 +Fort Campbell,TN,42223 +Allen,TX,75002 +Carrollton,TX,75006 +Carrollton,TX,75007 +Carrollton,TX,75008 +Celina,TX,75009 +Carrollton,TX,75010 +Coppell,TX,75019 +Denison,TX,75020 +Plano,TX,75023 +Plano,TX,75024 +Plano,TX,75025 +Flower Mound,TX,75028 +Frisco,TX,75034 +Irving,TX,75038 +Irving,TX,75039 +Garland,TX,75040 +Garland,TX,75041 +Garland,TX,75042 +Garland,TX,75043 +Garland,TX,75044 +Sachse,TX,75048 +Grand Prairie,TX,75050 +Grand Prairie,TX,75051 +Grand Prairie,TX,75052 +The Colony,TX,75056 +Lewisville,TX,75057 +Gunter,TX,75058 +Irving,TX,75060 +Irving,TX,75061 +Irving,TX,75062 +Irving,TX,75063 +Lake Dallas,TX,75065 +Highland Village,TX,75067 +Lakewood Village,TX,75068 +Mc Kinney,TX,75069 +Mc Kinney,TX,75070 +Plano,TX,75074 +Plano,TX,75075 +Pottsboro,TX,75076 +Prosper,TX,75078 +Richardson,TX,75080 +Richardson,TX,75081 +Richardson,TX,75082 +Heath,TX,75087 +Rowlett,TX,75088 +Sherman,TX,75090 +Plano,TX,75093 +Murphy,TX,75094 +Wylie,TX,75098 +Barry,TX,75102 +Canton,TX,75103 +Cedar Hill,TX,75104 +Chatfield,TX,75105 +Corsicana,TX,75110 +Crandall,TX,75114 +De Soto,TX,75115 +Duncanville,TX,75116 +Edgewood,TX,75117 +Ennis,TX,75119 +Eustace,TX,75124 +Ferris,TX,75125 +Forney,TX,75126 +Fruitvale,TX,75127 +Lancaster,TX,75134 +Caddo Mills,TX,75135 +Duncanville,TX,75137 +Grand Saline,TX,75140 +Hutchins,TX,75141 +Kaufman,TX,75142 +Seven Points,TX,75143 +Kerens,TX,75144 +Lancaster,TX,75146 +Gun Barrel City,TX,75147 +Malakoff,TX,75148 +Mesquite,TX,75149 +Mesquite,TX,75150 +Palmer,TX,75152 +Powell,TX,75153 +Ovilla,TX,75154 +Rice,TX,75155 +Scurry,TX,75158 +Seagoville,TX,75159 +Terrell,TX,75160 +Trinidad,TX,75163 +Waxahachie,TX,75165 +Wills Point,TX,75169 +Wilmer,TX,75172 +Nevada,TX,75173 +Balch Springs,TX,75180 +Mesquite,TX,75181 +Mesquite,TX,75182 +Royse City,TX,75189 +Dallas,TX,75201 +Dallas,TX,75202 +Dallas,TX,75203 +Dallas,TX,75204 +Village,TX,75205 +Dallas,TX,75206 +Dallas,TX,75207 +Dallas,TX,75208 +Dallas,TX,75209 +Dallas,TX,75210 +Cockrell Hill,TX,75211 +Dallas,TX,75212 +Dallas,TX,75214 +Dallas,TX,75215 +Dallas,TX,75216 +Dallas,TX,75217 +Dallas,TX,75218 +Dallas,TX,75219 +Dallas,TX,75220 +Dallas,TX,75223 +Dallas,TX,75224 +Dallas,TX,75225 +Dallas,TX,75226 +Dallas,TX,75227 +Dallas,TX,75228 +Dallas,TX,75229 +Dallas,TX,75230 +Dallas,TX,75231 +Dallas,TX,75232 +Dallas,TX,75233 +Farmers Branch,TX,75234 +Dallas,TX,75235 +Dallas,TX,75236 +Dallas,TX,75237 +Dallas,TX,75238 +Dallas,TX,75239 +Dallas,TX,75240 +Dallas,TX,75241 +Dallas,TX,75243 +Farmers Branch,TX,75244 +Dallas,TX,75246 +Dallas,TX,75247 +Dallas,TX,75248 +Dallas,TX,75249 +Dallas,TX,75251 +Dallas,TX,75252 +Dallas,TX,75253 +Dallas,TX,75287 +Greenville,TX,75401 +Princeton,TX,75407 +Anna,TX,75409 +Alba,TX,75410 +Arthur City,TX,75411 +Bagwell,TX,75412 +Bells,TX,75414 +Ben Franklin,TX,75415 +Blossom,TX,75416 +Bogata,TX,75417 +Bonham,TX,75418 +Brashear,TX,75420 +Brookston,TX,75421 +Campbell,TX,75422 +Celeste,TX,75423 +Blue Ridge,TX,75424 +Clarksville,TX,75426 +Commerce,TX,75428 +Como,TX,75431 +Cooper,TX,75432 +Cumby,TX,75433 +Deport,TX,75435 +Detroit,TX,75436 +Dike,TX,75437 +Dodd City,TX,75438 +Ector,TX,75439 +Emory,TX,75440 +Farmersville,TX,75442 +Honey Grove,TX,75446 +Ivanhoe,TX,75447 +Klondike,TX,75448 +Ladonia,TX,75449 +Lake Creek,TX,75450 +Leesburg,TX,75451 +Leonard,TX,75452 +Lone Oak,TX,75453 +Melissa,TX,75454 +Mount Pleasant,TX,75455 +Mount Vernon,TX,75457 +Howe,TX,75459 +Paris,TX,75460 +Pattonville,TX,75468 +Pecan Gap,TX,75469 +Petty,TX,75470 +Pickton,TX,75471 +Point,TX,75472 +Powderly,TX,75473 +Quinlan,TX,75474 +Ravenna,TX,75476 +Roxton,TX,75477 +Saltillo,TX,75478 +Savoy,TX,75479 +Scroggins,TX,75480 +Sulphur Bluff,TX,75481 +Sulphur Springs,TX,75482 +Sumner,TX,75486 +Talco,TX,75487 +Telephone,TX,75488 +Trenton,TX,75490 +Whitewright,TX,75491 +Windom,TX,75492 +Winfield,TX,75493 +Winnsboro,TX,75494 +Van Alstyne,TX,75495 +Wolfe City,TX,75496 +Yantis,TX,75497 +Wake Village,TX,75501 +Texarkana,TX,75503 +Annona,TX,75550 +Atlanta,TX,75551 +Avery,TX,75554 +Bivins,TX,75555 +Bloomburg,TX,75556 +Cookville,TX,75558 +De Kalb,TX,75559 +Douglassville,TX,75560 +Leary,TX,75561 +Linden,TX,75563 +Marietta,TX,75566 +Maud,TX,75567 +Naples,TX,75568 +Nash,TX,75569 +Boston,TX,75570 +Omaha,TX,75571 +Queen City,TX,75572 +Simms,TX,75574 +Longview,TX,75601 +Longview,TX,75602 +Longview,TX,75603 +Longview,TX,75604 +Longview,TX,75605 +Avinger,TX,75630 +Beckville,TX,75631 +Carthage,TX,75633 +Daingerfield,TX,75638 +De Berry,TX,75639 +New Diana,TX,75640 +Gary,TX,75643 +Gilmer,TX,75644 +Gladewater,TX,75647 +Hallsville,TX,75650 +Harleton,TX,75651 +Henderson,TX,75652 +Hughes Springs,TX,75656 +Smithland,TX,75657 +Karnack,TX,75661 +Kilgore,TX,75662 +Laneville,TX,75667 +Lone Star,TX,75668 +Long Branch,TX,75669 +Marshall,TX,75670 +Mount Enterprise,TX,75681 +Ore City,TX,75683 +Overton,TX,75684 +Pittsburg,TX,75686 +Price,TX,75687 +Turnertown,TX,75689 +Tatum,TX,75691 +Waskom,TX,75692 +Clarksville City,TX,75693 +Tyler,TX,75701 +Tyler,TX,75702 +Tyler,TX,75703 +Tyler,TX,75704 +Tyler,TX,75705 +Tyler,TX,75706 +Tyler,TX,75707 +East Texas Cente,TX,75708 +Tyler,TX,75709 +Arp,TX,75750 +Athens,TX,75751 +Ben Wheeler,TX,75754 +Big Sandy,TX,75755 +Edom,TX,75756 +Mount Selman,TX,75757 +Chandler,TX,75758 +Cushing,TX,75760 +Flint,TX,75762 +Frankston,TX,75763 +Hawkins,TX,75765 +Jacksonville,TX,75766 +Larue,TX,75770 +Mt Sylvan,TX,75771 +Mineola,TX,75773 +Murchison,TX,75778 +Quitman,TX,75783 +Reklaw,TX,75784 +Dialville,TX,75785 +Troup,TX,75789 +Van,TX,75790 +Whitehouse,TX,75791 +Winona,TX,75792 +Palestine,TX,75801 +Freestone,TX,75831 +Centerville,TX,75833 +Austonio,TX,75835 +Donie,TX,75838 +Slocum,TX,75839 +Fairfield,TX,75840 +Grapeland,TX,75844 +Groveton,TX,75845 +Jewett,TX,75846 +Kennard,TX,75847 +Leona,TX,75850 +Lovelady,TX,75851 +Midway,TX,75852 +Montalba,TX,75853 +Oakwood,TX,75855 +Pennington,TX,75856 +Streetman,TX,75859 +Teague,TX,75860 +Tennessee Colony,TX,75861 +Trinity,TX,75862 +Keltys,TX,75901 +Forest,TX,75925 +Apple Springs,TX,75926 +Bon Wier,TX,75928 +Broaddus,TX,75929 +Bronson,TX,75930 +Brookeland,TX,75931 +Burkeville,TX,75932 +Call,TX,75933 +Center,TX,75935 +Chester,TX,75936 +Chireno,TX,75937 +Rockland,TX,75938 +Barnum,TX,75939 +Diboll,TX,75941 +Douglass,TX,75943 +Garrison,TX,75946 +Hemphill,TX,75948 +Huntington,TX,75949 +Sam Rayburn,TX,75951 +Joaquin,TX,75954 +Bon Ami,TX,75956 +Magnolia Springs,TX,75957 +Milam,TX,75959 +Moscow,TX,75960 +Appleby,TX,75961 +Newton,TX,75966 +Pineland,TX,75968 +Pollok,TX,75969 +San Augustine,TX,75972 +Shelbyville,TX,75973 +Tenaha,TX,75974 +Timpson,TX,75975 +Wells,TX,75976 +Wiergate,TX,75977 +Dogwood,TX,75979 +Zavalla,TX,75980 +Arlington,TX,76006 +Aledo,TX,76008 +Alvarado,TX,76009 +Arlington,TX,76010 +Arlington,TX,76011 +Arlington,TX,76012 +Arlington,TX,76013 +Arlington,TX,76014 +Arlington,TX,76015 +Arlington,TX,76016 +Arlington,TX,76017 +Arlington,TX,76018 +Azle,TX,76020 +Bedford,TX,76021 +Bedford,TX,76022 +Boyd,TX,76023 +Burleson,TX,76028 +Cleburne,TX,76031 +Colleyville,TX,76034 +Cresson,TX,76035 +Crowley,TX,76036 +Euless,TX,76039 +Euless,TX,76040 +Forreston,TX,76041 +Glen Rose,TX,76043 +Godley,TX,76044 +Granbury,TX,76048 +Granbury,TX,76049 +Grandview,TX,76050 +Grapevine,TX,76051 +Haslet,TX,76052 +Hurst,TX,76053 +Hurst,TX,76054 +Itasca,TX,76055 +Joshua,TX,76058 +Keene,TX,76059 +Kennedale,TX,76060 +Mansfield,TX,76063 +Maypearl,TX,76064 +Midlothian,TX,76065 +Millsap,TX,76066 +Mineral Wells,TX,76067 +Nemo,TX,76070 +Newark,TX,76071 +Paradise,TX,76073 +Rainbow,TX,76077 +Rhome,TX,76078 +Springtown,TX,76082 +Venus,TX,76084 +Weatherford,TX,76086 +Weatherford,TX,76087 +Grapevine,TX,76092 +Rio Vista,TX,76093 +Fort Worth,TX,76102 +Fort Worth,TX,76103 +Fort Worth,TX,76104 +Fort Worth,TX,76105 +Fort Worth,TX,76106 +Fort Worth,TX,76107 +White Settlement,TX,76108 +Fort Worth,TX,76109 +Fort Worth,TX,76110 +Fort Worth,TX,76111 +Fort Worth,TX,76112 +River Oaks,TX,76114 +Fort Worth,TX,76115 +Fort Worth,TX,76116 +Haltom City,TX,76117 +North Richland H,TX,76118 +Fort Worth,TX,76119 +Fort Worth,TX,76120 +Fort Worth,TX,76123 +Benbrook,TX,76126 +Carswell Afb,TX,76127 +Fort Worth,TX,76131 +Fort Worth,TX,76132 +Fort Worth,TX,76133 +Fort Worth,TX,76134 +Fort Worth,TX,76135 +Fort Worth,TX,76137 +Everman,TX,76140 +Watauga,TX,76148 +Fort Worth,TX,76155 +Fort Worth,TX,76177 +Saginaw,TX,76179 +North Richland H,TX,76180 +Denton,TX,76201 +Denton,TX,76205 +Alvord,TX,76225 +Argyle,TX,76226 +Aubrey,TX,76227 +Bellevue,TX,76228 +Bowie,TX,76230 +Collinsville,TX,76233 +Decatur,TX,76234 +Era,TX,76238 +Forestburg,TX,76239 +Lake Kiowa,TX,76240 +Gordonville,TX,76245 +Justin,TX,76247 +Keller,TX,76248 +Krum,TX,76249 +Lindsay,TX,76250 +Montague,TX,76251 +Muenster,TX,76252 +Nocona,TX,76255 +Pilot Point,TX,76258 +Ponder,TX,76259 +Ringgold,TX,76261 +Trophy Club,TX,76262 +Rosston,TX,76263 +Sadler,TX,76264 +Saint Jo,TX,76265 +Sanger,TX,76266 +Sunset,TX,76270 +Tioga,TX,76271 +Valley View,TX,76272 +Whitesboro,TX,76273 +Wichita Falls,TX,76301 +Wichita Falls,TX,76302 +Wichita Falls,TX,76303 +Wichita Falls,TX,76304 +Wichita Falls,TX,76305 +Wichita Falls,TX,76306 +Wichita Falls,TX,76308 +Wichita Falls,TX,76309 +Wichita Falls,TX,76310 +Sheppard Afb,TX,76311 +76350,TX,76350 +Burkburnett,TX,76354 +Byers,TX,76357 +Elbert,TX,76359 +Electra,TX,76360 +Goree,TX,76363 +Harrold,TX,76364 +Henrietta,TX,76365 +Holliday,TX,76366 +Iowa Park,TX,76367 +Munday,TX,76371 +Newcastle,TX,76372 +Oklaunion,TX,76373 +Olney,TX,76374 +Petrolia,TX,76377 +76378,TX,76378 +Scotland,TX,76379 +Seymour,TX,76380 +Vera,TX,76383 +Vernon,TX,76384 +Weinert,TX,76388 +Windthorst,TX,76389 +Stephenville,TX,76401 +Breckenridge,TX,76424 +Bridgeport,TX,76426 +Bryson,TX,76427 +Caddo,TX,76429 +Albany,TX,76430 +Chico,TX,76431 +Blanket,TX,76432 +Bluff Dale,TX,76433 +Carbon,TX,76435 +Carlton,TX,76436 +Cisco,TX,76437 +Comanche,TX,76442 +Cross Plains,TX,76443 +De Leon,TX,76444 +Desdemona,TX,76445 +Dublin,TX,76446 +76447,TX,76447 +Eastland,TX,76448 +Graford,TX,76449 +Graham,TX,76450 +Gordon,TX,76453 +Gorman,TX,76454 +Gustine,TX,76455 +Hico,TX,76457 +Jacksboro,TX,76458 +Jermyn,TX,76459 +Loving,TX,76460 +Lipan,TX,76462 +Mingus,TX,76463 +Moran,TX,76464 +Ranger,TX,76470 +Rising Star,TX,76471 +Santo,TX,76472 +Sidney,TX,76474 +Strawn,TX,76475 +Tolar,TX,76476 +Throckmorton,TX,76483 +Palo Pinto,TX,76484 +Perrin,TX,76486 +Poolville,TX,76487 +Whitt,TX,76490 +Woodson,TX,76491 +Temple,TX,76501 +Temple,TX,76502 +Temple,TX,76504 +Bartlett,TX,76511 +Belton,TX,76513 +Buckholts,TX,76518 +Burlington,TX,76519 +Cameron,TX,76520 +Izoro,TX,76522 +Davilla,TX,76523 +Eddy,TX,76524 +Bee House,TX,76525 +Flat,TX,76526 +Florence,TX,76527 +Turnersville,TX,76528 +Granger,TX,76530 +Hamilton,TX,76531 +Holland,TX,76534 +Jarrell,TX,76537 +Jonesboro,TX,76538 +Kempner,TX,76539 +Killeen,TX,76541 +Harker Heights,TX,76542 +Harker Heights,TX,76543 +Fort Hood,TX,76544 +Lampasas,TX,76550 +Milano,TX,76556 +Moody,TX,76557 +Nolanville,TX,76559 +Oglesby,TX,76561 +Pottsville,TX,76565 +Purmela,TX,76566 +Rockdale,TX,76567 +Rogers,TX,76569 +Rosebud,TX,76570 +Salado,TX,76571 +Taylor,TX,76574 +Thorndale,TX,76577 +Thrall,TX,76578 +Troy,TX,76579 +Abbott,TX,76621 +Aquilla,TX,76622 +Axtell,TX,76624 +Blooming Grove,TX,76626 +Blum,TX,76627 +Bremond,TX,76629 +Bruceville,TX,76630 +Bynum,TX,76631 +Chilton,TX,76632 +China Spring,TX,76633 +Laguna Park,TX,76634 +Coolidge,TX,76635 +Covington,TX,76636 +Cranfills Gap,TX,76637 +Crawford,TX,76638 +Dawson,TX,76639 +Elm Mott,TX,76640 +Frost,TX,76641 +Groesbeck,TX,76642 +Hewitt,TX,76643 +Hillsboro,TX,76645 +Hubbard,TX,76648 +Iredell,TX,76649 +Italy,TX,76651 +Kopperl,TX,76652 +Kosse,TX,76653 +Lorena,TX,76655 +Lott,TX,76656 +Mc Gregor,TX,76657 +Malone,TX,76660 +Marlin,TX,76661 +Mart,TX,76664 +Meridian,TX,76665 +Mertens,TX,76666 +Mexia,TX,76667 +Milford,TX,76670 +Morgan,TX,76671 +Mount Calm,TX,76673 +Otto,TX,76675 +Penelope,TX,76676 +Prairie Hill,TX,76678 +Purdon,TX,76679 +Reagan,TX,76680 +Richland,TX,76681 +Riesel,TX,76682 +Thornton,TX,76687 +Valley Mills,TX,76689 +Walnut Springs,TX,76690 +West,TX,76691 +Bonanza,TX,76692 +Wortham,TX,76693 +Waco,TX,76701 +Bellmead,TX,76704 +Bellmead,TX,76705 +Waco,TX,76706 +Waco,TX,76707 +Waco,TX,76708 +Waco,TX,76710 +Beverly Hills,TX,76711 +Woodway,TX,76712 +Early,TX,76801 +Art,TX,76820 +Ballinger,TX,76821 +Bangs,TX,76823 +Bend,TX,76824 +Fife,TX,76825 +Brookesmith,TX,76827 +Burkett,TX,76828 +Castell,TX,76831 +Cherokee,TX,76832 +Coleman,TX,76834 +Doole,TX,76836 +Eden,TX,76837 +Fort Mc Kavett,TX,76841 +Fredonia,TX,76842 +Goldthwaite,TX,76844 +Gouldbusk,TX,76845 +Hext,TX,76848 +Junction,TX,76849 +76850,TX,76850 +Lohn,TX,76852 +Lometa,TX,76853 +London,TX,76854 +Mason,TX,76856 +May,TX,76857 +Melvin,TX,76858 +Menard,TX,76859 +Miles,TX,76861 +Millersview,TX,76862 +Mullin,TX,76864 +Norton,TX,76865 +Paint Rock,TX,76866 +Pear Valley,TX,76867 +Pontotoc,TX,76869 +Priddy,TX,76870 +Richland Springs,TX,76871 +Rochelle,TX,76872 +Rockwood,TX,76873 +Roosevelt,TX,76874 +Rowena,TX,76875 +San Saba,TX,76877 +Santa Anna,TX,76878 +Star,TX,76880 +Talpa,TX,76882 +Telegraph,TX,76883 +Valera,TX,76884 +Valley Spring,TX,76885 +Voca,TX,76887 +Leaday,TX,76888 +Zephyr,TX,76890 +San Angelo,TX,76901 +San Angelo,TX,76903 +San Angelo,TX,76904 +San Angelo,TX,76905 +Barnhart,TX,76930 +Best,TX,76932 +Bronte,TX,76933 +Carlsbad,TX,76934 +Christoval,TX,76935 +Eldorado,TX,76936 +Eola,TX,76937 +Mereta,TX,76940 +Mertzon,TX,76941 +Ozona,TX,76943 +Robert Lee,TX,76945 +Silver,TX,76949 +Sonora,TX,76950 +Sterling City,TX,76951 +Vancourt,TX,76955 +Wall,TX,76957 +Houston,TX,77002 +Houston,TX,77003 +Houston,TX,77004 +Houston,TX,77005 +Houston,TX,77006 +Houston,TX,77007 +Houston,TX,77008 +Houston,TX,77009 +Houston,TX,77010 +Houston,TX,77011 +Houston,TX,77012 +Houston,TX,77013 +Houston,TX,77014 +Houston,TX,77015 +Houston,TX,77016 +Houston,TX,77017 +Houston,TX,77018 +Houston,TX,77019 +Houston,TX,77020 +Houston,TX,77021 +Houston,TX,77022 +Houston,TX,77023 +Houston,TX,77024 +Houston,TX,77025 +Houston,TX,77026 +Houston,TX,77027 +Houston,TX,77028 +Jacinto City,TX,77029 +V A Hospital,TX,77030 +Houston,TX,77031 +Houston,TX,77032 +Houston,TX,77033 +Houston,TX,77034 +Houston,TX,77035 +Houston,TX,77036 +Houston,TX,77037 +Houston,TX,77038 +Houston,TX,77039 +Jersey Village,TX,77040 +Houston,TX,77041 +Houston,TX,77042 +Houston,TX,77043 +Houston,TX,77044 +Houston,TX,77045 +Houston,TX,77046 +Houston,TX,77047 +Houston,TX,77048 +Houston,TX,77049 +Houston,TX,77050 +Houston,TX,77051 +Houston,TX,77053 +Houston,TX,77054 +Houston,TX,77055 +Houston,TX,77056 +Houston,TX,77057 +Houston,TX,77058 +Houston,TX,77059 +Houston,TX,77060 +Houston,TX,77061 +Houston,TX,77062 +Houston,TX,77063 +Houston,TX,77064 +Houston,TX,77065 +Houston,TX,77066 +Houston,TX,77067 +Houston,TX,77068 +Houston,TX,77069 +Houston,TX,77070 +Houston,TX,77071 +Houston,TX,77072 +Houston,TX,77073 +Houston,TX,77074 +Houston,TX,77075 +Houston,TX,77076 +Houston,TX,77077 +Houston,TX,77078 +Houston,TX,77079 +Houston,TX,77080 +Houston,TX,77081 +Houston,TX,77082 +Houston,TX,77083 +Houston,TX,77084 +Houston,TX,77085 +Houston,TX,77086 +Houston,TX,77087 +Houston,TX,77088 +Houston,TX,77089 +Houston,TX,77090 +Houston,TX,77091 +Houston,TX,77092 +Houston,TX,77093 +Houston,TX,77094 +Houston,TX,77095 +Houston,TX,77096 +Houston,TX,77098 +Houston,TX,77099 +Conroe,TX,77301 +Grangerland,TX,77302 +Cut And Shoot,TX,77303 +Panorama Village,TX,77304 +Cleveland,TX,77327 +Coldspring,TX,77331 +Goodrich,TX,77335 +Huffman,TX,77336 +Humble,TX,77338 +Humble,TX,77339 +Huntsville,TX,77340 +Humble,TX,77345 +Humble,TX,77346 +Segno,TX,77351 +Magnolia,TX,77355 +Montgomery,TX,77356 +New Caney,TX,77357 +New Waverly,TX,77358 +Oakhurst,TX,77359 +Pinehurst,TX,77362 +Plantersville,TX,77363 +Pointblank,TX,77364 +Porter,TX,77365 +Shepherd,TX,77371 +Splendora,TX,77372 +Spring,TX,77373 +Tomball,TX,77375 +Willis,TX,77378 +Klein,TX,77379 +The Woodlands,TX,77380 +The Woodlands,TX,77381 +Conroe,TX,77384 +Conroe,TX,77385 +Spring,TX,77386 +Spring,TX,77388 +Spring,TX,77389 +Humble,TX,77396 +Bellaire,TX,77401 +Sargent,TX,77414 +Beasley,TX,77417 +Bellville,TX,77418 +Blessing,TX,77419 +Boling,TX,77420 +Brazoria,TX,77422 +Brookshire,TX,77423 +Chappell Hill,TX,77426 +Cypress,TX,77429 +Damon,TX,77430 +Danevang,TX,77432 +Cypress,TX,77433 +Eagle Lake,TX,77434 +East Bernard,TX,77435 +El Campo,TX,77437 +Elmaton,TX,77440 +Fulshear,TX,77441 +Garwood,TX,77442 +Guy,TX,77444 +Hempstead,TX,77445 +Hockley,TX,77447 +Park Row,TX,77449 +Park Row,TX,77450 +Louise,TX,77455 +Markham,TX,77456 +Matagorda,TX,77457 +Midfield,TX,77458 +Missouri City,TX,77459 +Needville,TX,77461 +Palacios,TX,77465 +Pledger,TX,77468 +Clodine,TX,77469 +Rosenberg,TX,77471 +Sealy,TX,77474 +Stafford,TX,77477 +Sugar Land,TX,77478 +Sugar Land,TX,77479 +Sweeny,TX,77480 +Van Vleck,TX,77482 +Wadsworth,TX,77483 +Waller,TX,77484 +Wallis,TX,77485 +West Columbia,TX,77486 +Wharton,TX,77488 +Missouri City,TX,77489 +Park Row,TX,77493 +Park Row,TX,77494 +Pasadena,TX,77502 +Pasadena,TX,77503 +Pasadena,TX,77504 +Pasadena,TX,77505 +Pasadena,TX,77506 +Pasadena,TX,77507 +Alta Loma,TX,77510 +Alvin,TX,77511 +Monroe City,TX,77514 +Angleton,TX,77515 +Arcadia,TX,77517 +Bacliff,TX,77518 +Batson,TX,77519 +Baytown,TX,77520 +Baytown,TX,77521 +Channelview,TX,77530 +Clute,TX,77531 +Barrett,TX,77532 +Danbury,TX,77534 +Dayton,TX,77535 +Deer Park,TX,77536 +Devers,TX,77538 +San Leon,TX,77539 +Quintana,TX,77541 +Fresno,TX,77545 +Friendswood,TX,77546 +Galena Park,TX,77547 +Galveston,TX,77550 +Galveston,TX,77551 +Galveston,TX,77554 +Hankamer,TX,77560 +Highlands,TX,77562 +Hitchcock,TX,77563 +Hull,TX,77564 +Clear Lake Shore,TX,77565 +Lake Jackson,TX,77566 +La Marque,TX,77568 +Shoreacres,TX,77571 +League City,TX,77573 +Ames,TX,77575 +Liverpool,TX,77577 +Manvel,TX,77578 +Pearland,TX,77581 +Rosharon,TX,77583 +Pearland,TX,77584 +Saratoga,TX,77585 +El Lago,TX,77586 +South Houston,TX,77587 +Texas City,TX,77590 +Texas City,TX,77591 +Wallisville,TX,77597 +Webster,TX,77598 +Bridge City,TX,77611 +Buna,TX,77612 +Deweyville,TX,77614 +Fred,TX,77616 +Groves,TX,77619 +Hamshire,TX,77622 +Hillister,TX,77624 +Kountze,TX,77625 +Nederland,TX,77627 +West Orange,TX,77630 +Port Acres,TX,77640 +Port Arthur,TX,77642 +Crystal Beach,TX,77650 +Port Neches,TX,77651 +Silsbee,TX,77656 +Sour Lake,TX,77659 +Spurger,TX,77660 +Vidor,TX,77662 +Warren,TX,77664 +Winnie,TX,77665 +Beaumont,TX,77701 +Beaumont,TX,77702 +Beaumont,TX,77703 +Beaumont,TX,77705 +Beaumont,TX,77706 +Beaumont,TX,77707 +Beaumont,TX,77708 +Beaumont,TX,77713 +Bryan,TX,77801 +Bryan,TX,77802 +Bryan,TX,77803 +Anderson,TX,77830 +Singleton,TX,77831 +Brenham,TX,77833 +Burton,TX,77835 +Caldwell,TX,77836 +Calvert,TX,77837 +College Station,TX,77840 +College Station,TX,77843 +College Station,TX,77845 +Concord,TX,77850 +Dime Box,TX,77853 +Franklin,TX,77856 +Hearne,TX,77859 +Iola,TX,77861 +Madisonville,TX,77864 +Marquez,TX,77865 +Navasota,TX,77868 +Hilltop Lakes,TX,77871 +North Zulch,TX,77872 +Richards,TX,77873 +Somerville,TX,77879 +Washington,TX,77880 +Victoria,TX,77901 +Victoria,TX,77904 +Bloomington,TX,77951 +Cuero,TX,77954 +Edna,TX,77957 +Ganado,TX,77962 +Goliad,TX,77963 +Hallettsville,TX,77964 +Inez,TX,77968 +Lolita,TX,77971 +Meyersville,TX,77974 +Moulton,TX,77975 +Port Lavaca,TX,77979 +Port O Connor,TX,77982 +Seadrift,TX,77983 +Shiner,TX,77984 +Tivoli,TX,77990 +Westhoff,TX,77994 +Yoakum,TX,77995 +Atascosa,TX,78002 +Bandera,TX,78003 +Bergheim,TX,78004 +Bigfoot,TX,78005 +Sisterdale,TX,78006 +Calliham,TX,78007 +Campbellton,TX,78008 +Castroville,TX,78009 +Camp Verde,TX,78010 +Charlotte,TX,78011 +Comfort,TX,78013 +Cotulla,TX,78014 +Devine,TX,78016 +Dilley,TX,78017 +Encinal,TX,78019 +Fowlerton,TX,78021 +George West,TX,78022 +Grey Forest,TX,78023 +Hunt,TX,78024 +Ingram,TX,78025 +Jourdanton,TX,78026 +Kendalia,TX,78027 +Kerrville,TX,78028 +La Coste,TX,78039 +Laredo,TX,78040 +Laredo,TX,78041 +Rio Bravo,TX,78043 +Lytle,TX,78052 +Mc Coy,TX,78053 +Medina,TX,78055 +Mico,TX,78056 +Moore,TX,78057 +Mountain Home,TX,78058 +Natalia,TX,78059 +Oakville,TX,78060 +Pearsall,TX,78061 +Lakehills,TX,78063 +Pleasanton,TX,78064 +Poteet,TX,78065 +Riomedina,TX,78066 +San Ygnacio,TX,78067 +Somerset,TX,78069 +Spring Branch,TX,78070 +Three Rivers,TX,78071 +Tilden,TX,78072 +Von Ormy,TX,78073 +Whitsett,TX,78075 +Zapata,TX,78076 +Adkins,TX,78101 +Beeville,TX,78102 +Cibolo,TX,78108 +Converse,TX,78109 +Ecleto,TX,78111 +Elmendorf,TX,78112 +Falls City,TX,78113 +Floresville,TX,78114 +Gillett,TX,78116 +Hobson,TX,78117 +Karnes City,TX,78118 +Kenedy,TX,78119 +La Vernia,TX,78121 +Leesville,TX,78122 +Mc Queeney,TX,78123 +Marion,TX,78124 +Canyon Lake,TX,78130 +Canyon Lake,TX,78132 +Canyon Lake,TX,78133 +Nixon,TX,78140 +Nordheim,TX,78141 +Poth,TX,78147 +Randolph A F B,TX,78148 +Randolph A F B,TX,78150 +Runge,TX,78151 +Saint Hedwig,TX,78152 +Selma,TX,78154 +Seguin,TX,78155 +Smiley,TX,78159 +Stockdale,TX,78160 +Sutherland Sprin,TX,78161 +Wetmore,TX,78163 +Yorktown,TX,78164 +Balcones Heights,TX,78201 +San Antonio,TX,78202 +San Antonio,TX,78203 +San Antonio,TX,78204 +San Antonio,TX,78205 +San Antonio,TX,78207 +San Antonio,TX,78208 +Alamo Heights,TX,78209 +San Antonio,TX,78210 +San Antonio,TX,78211 +Olmos Park,TX,78212 +Castle Hills,TX,78213 +San Antonio,TX,78214 +San Antonio,TX,78215 +San Antonio,TX,78216 +San Antonio,TX,78217 +San Antonio,TX,78218 +Kirby,TX,78219 +San Antonio,TX,78220 +San Antonio,TX,78221 +San Antonio,TX,78222 +San Antonio,TX,78223 +San Antonio,TX,78224 +San Antonio,TX,78225 +San Antonio,TX,78226 +San Antonio,TX,78227 +San Antonio,TX,78228 +San Antonio,TX,78229 +San Antonio,TX,78230 +Shavano Park,TX,78231 +Hollywood Park,TX,78232 +Live Oak,TX,78233 +Fort Sam Houston,TX,78234 +Brooks A F B,TX,78235 +Wilford Hall U S,TX,78236 +San Antonio,TX,78237 +Leon Valley,TX,78238 +Windcrest,TX,78239 +San Antonio,TX,78240 +Kelly A F B,TX,78241 +San Antonio,TX,78242 +San Antonio,TX,78244 +San Antonio,TX,78245 +Wetmore,TX,78247 +San Antonio,TX,78248 +San Antonio,TX,78249 +San Antonio,TX,78250 +San Antonio,TX,78251 +San Antonio,TX,78252 +San Antonio,TX,78253 +San Antonio,TX,78254 +San Antonio,TX,78255 +San Antonio,TX,78256 +San Antonio,TX,78257 +San Antonio,TX,78258 +San Antonio,TX,78259 +San Antonio,TX,78260 +San Antonio,TX,78261 +San Antonio,TX,78263 +San Antonio,TX,78264 +Garden Ridge,TX,78266 +Alice,TX,78332 +Aransas Pass,TX,78336 +Armstrong,TX,78338 +Bayside,TX,78340 +Bishop,TX,78343 +Bruni,TX,78344 +Concepcion,TX,78349 +Encino,TX,78353 +Falfurrias,TX,78355 +Freer,TX,78357 +Fulton,TX,78358 +Guerra,TX,78360 +Hebbronville,TX,78361 +Ingleside,TX,78362 +Kingsville Naval,TX,78363 +Mathis,TX,78368 +Mirando City,TX,78369 +Odem,TX,78370 +Orange Grove,TX,78372 +Portland,TX,78374 +Premont,TX,78375 +Realitos,TX,78376 +Refugio,TX,78377 +Riviera,TX,78379 +Robstown,TX,78380 +Rockport,TX,78382 +Sandia,TX,78383 +San Diego,TX,78384 +Sarita,TX,78385 +Sinton,TX,78387 +Skidmore,TX,78389 +Taft,TX,78390 +Tynan,TX,78391 +Woodsboro,TX,78393 +Corpus Christi,TX,78401 +Corpus Christi,TX,78402 +Corpus Christi,TX,78404 +Corpus Christi,TX,78405 +Corpus Christi,TX,78406 +Corpus Christi,TX,78407 +Corpus Christi,TX,78408 +Corpus Christi,TX,78409 +Corpus Christi,TX,78410 +Corpus Christi,TX,78411 +Corpus Christi,TX,78412 +Corpus Christi,TX,78413 +Corpus Christi,TX,78414 +Corpus Christi,TX,78415 +Corpus Christi,TX,78416 +Corpus Christi,TX,78417 +Corpus Christi,TX,78418 +Corpus Christi,TX,78419 +Corpus Christi,TX,78473 +Mcallen,TX,78501 +Mcallen,TX,78503 +Mcallen,TX,78504 +Alamo,TX,78516 +Brownsville,TX,78520 +Brownsville,TX,78521 +Delmita,TX,78536 +Donna,TX,78537 +Monte Alto,TX,78538 +Edinburg,TX,78539 +Garciasville,TX,78547 +Grulla,TX,78548 +Hargill,TX,78549 +Harlingen,TX,78550 +Harlingen,TX,78552 +Hidalgo,TX,78557 +La Feria,TX,78559 +Linn,TX,78563 +Bayview,TX,78566 +Lyford,TX,78569 +Mercedes,TX,78570 +Alton,TX,78572 +Pharr,TX,78577 +Port Isabel,TX,78578 +Raymondville,TX,78580 +Rio Grande City,TX,78582 +Rio Hondo,TX,78583 +Roma,TX,78584 +San Benito,TX,78586 +San Isidro,TX,78588 +San Juan,TX,78589 +San Perlita,TX,78590 +Santa Elena,TX,78591 +Santa Rosa,TX,78593 +Sebastian,TX,78594 +Sullivan City,TX,78595 +Weslaco,TX,78596 +South Padre Isla,TX,78597 +Port Mansfield,TX,78598 +Bastrop,TX,78602 +Bebe,TX,78603 +Bertram,TX,78605 +Blanco,TX,78606 +Bluffton,TX,78607 +Briggs,TX,78608 +Buchanan Dam,TX,78609 +Buda,TX,78610 +Burnet,TX,78611 +Cedar Creek,TX,78612 +Cedar Park,TX,78613 +Cost,TX,78614 +Coupland,TX,78615 +Dale,TX,78616 +Del Valle,TX,78617 +Doss,TX,78618 +Driftwood,TX,78619 +Dripping Springs,TX,78620 +Elgin,TX,78621 +Fischer,TX,78623 +Fredericksburg,TX,78624 +Georgetown,TX,78626 +Andice,TX,78628 +Gonzales,TX,78629 +Harper,TX,78631 +Harwood,TX,78632 +Hutto,TX,78634 +Hye,TX,78635 +Johnson City,TX,78636 +Kingsbury,TX,78638 +Kingsland,TX,78639 +Uhland,TX,78640 +Leander,TX,78641 +Liberty Hill,TX,78642 +Sunrise Beach,TX,78643 +Lockhart,TX,78644 +Jonestown,TX,78645 +Luling,TX,78648 +Mc Dade,TX,78650 +Manchaca,TX,78652 +Manor,TX,78653 +Cypress Mill,TX,78654 +Martindale,TX,78655 +Maxwell,TX,78656 +Paige,TX,78659 +Pflugerville,TX,78660 +Red Rock,TX,78662 +Round Mountain,TX,78663 +Round Rock,TX,78664 +Sandy,TX,78665 +San Marcos,TX,78666 +Spicewood,TX,78669 +Albert,TX,78671 +Tow,TX,78672 +Willow City,TX,78675 +Wimberley,TX,78676 +Wrightsboro,TX,78677 +Round Rock,TX,78681 +Austin,TX,78701 +Austin,TX,78702 +Austin,TX,78703 +Austin,TX,78704 +Austin,TX,78705 +Austin,TX,78717 +Austin,TX,78719 +Austin,TX,78721 +Austin,TX,78722 +Austin,TX,78723 +Austin,TX,78724 +Austin,TX,78725 +Austin,TX,78726 +Austin,TX,78727 +Austin,TX,78728 +Austin,TX,78729 +Austin,TX,78730 +Austin,TX,78731 +Austin,TX,78732 +Austin,TX,78733 +Lakeway,TX,78734 +Austin,TX,78735 +Austin,TX,78736 +Austin,TX,78737 +Austin,TX,78738 +Austin,TX,78739 +Austin,TX,78741 +Austin,TX,78742 +Austin,TX,78744 +Austin,TX,78745 +West Lake Hills,TX,78746 +Creedmoor,TX,78747 +Austin,TX,78748 +Austin,TX,78749 +Austin,TX,78750 +Austin,TX,78751 +Austin,TX,78752 +Austin,TX,78753 +Austin,TX,78754 +Austin,TX,78756 +Austin,TX,78757 +Austin,TX,78758 +Austin,TX,78759 +Uvalde,TX,78801 +Asherton,TX,78827 +Barksdale,TX,78828 +Batesville,TX,78829 +Big Wells,TX,78830 +Brackettville,TX,78832 +Camp Wood,TX,78833 +Carrizo Springs,TX,78834 +Comstock,TX,78837 +Concan,TX,78838 +Crystal City,TX,78839 +Laughlin A F B,TX,78840 +D Hanis,TX,78850 +Dryden,TX,78851 +Eagle Pass,TX,78852 +Dunlay,TX,78861 +Knippa,TX,78870 +La Pryor,TX,78872 +Leakey,TX,78873 +Spofford,TX,78877 +Rio Frio,TX,78879 +Rocksprings,TX,78880 +Sabinal,TX,78881 +Tarpley,TX,78883 +Utopia,TX,78884 +Vanderpool,TX,78885 +Yancey,TX,78886 +Bleiblerville,TX,78931 +Carmine,TX,78932 +Cat Spring,TX,78933 +Columbus,TX,78934 +Alleyton,TX,78935 +Ellinger,TX,78938 +Fayetteville,TX,78940 +Flatonia,TX,78941 +Giddings,TX,78942 +Industry,TX,78944 +La Grange,TX,78945 +Ledbetter,TX,78946 +Lexington,TX,78947 +Lincoln,TX,78948 +Muldoon,TX,78949 +New Ulm,TX,78950 +Rosanky,TX,78953 +Round Top,TX,78954 +Schulenburg,TX,78956 +Smithville,TX,78957 +Waelder,TX,78959 +Weimar,TX,78962 +West Point,TX,78963 +Adrian,TX,79001 +Booker,TX,79005 +Phillips,TX,79007 +Bovina,TX,79009 +Briscoe,TX,79011 +Glazier,TX,79014 +Canyon,TX,79015 +Channing,TX,79018 +Claude,TX,79019 +Dalhart,TX,79022 +Dimmitt,TX,79027 +Dumas,TX,79029 +Earth,TX,79031 +Follett,TX,79034 +Black,TX,79035 +Fritch,TX,79036 +Groom,TX,79039 +Gruver,TX,79040 +Hale Center,TX,79041 +Happy,TX,79042 +Hart,TX,79043 +Hartley,TX,79044 +Hereford,TX,79045 +Higgins,TX,79046 +Kress,TX,79052 +Lipscomb,TX,79056 +Kellerville,TX,79057 +Miami,TX,79059 +Mobeetie,TX,79061 +Morse,TX,79062 +Nazareth,TX,79063 +Olton,TX,79064 +Pampa,TX,79065 +Panhandle,TX,79068 +Perryton,TX,79070 +Plainview,TX,79072 +Twitty,TX,79079 +Skellytown,TX,79080 +Spearman,TX,79081 +Springlake,TX,79082 +Stinnett,TX,79083 +Stratford,TX,79084 +Summerfield,TX,79085 +Sunray,TX,79086 +Texline,TX,79087 +Vigo Park,TX,79088 +Vega,TX,79092 +Wayside,TX,79094 +Wellington,TX,79095 +Wheeler,TX,79096 +White Deer,TX,79097 +Wildorado,TX,79098 +Amarillo,TX,79101 +Amarillo,TX,79102 +Amarillo,TX,79103 +Amarillo,TX,79104 +Amarillo,TX,79106 +Amarillo,TX,79107 +Amarillo,TX,79108 +Amarillo,TX,79109 +Amarillo,TX,79110 +Amarillo,TX,79111 +Amarillo,TX,79118 +Amarillo,TX,79119 +Amarillo,TX,79121 +Amarillo,TX,79124 +Kirkland,TX,79201 +Afton,TX,79220 +Chillicothe,TX,79225 +Clarendon,TX,79226 +Crowell,TX,79227 +Dickens,TX,79229 +Dodson,TX,79230 +Dumont,TX,79232 +Flomot,TX,79234 +Floydada,TX,79235 +Hedley,TX,79237 +Lakeview,TX,79239 +Lockney,TX,79241 +Mcadoo,TX,79243 +Matador,TX,79244 +Memphis,TX,79245 +Chalk,TX,79248 +Petersburg,TX,79250 +Quail,TX,79251 +Quanah,TX,79252 +Quitaque,TX,79255 +Roaring Springs,TX,79256 +Silverton,TX,79257 +Tell,TX,79259 +Truscott,TX,79260 +Turkey,TX,79261 +Abernathy,TX,79311 +Amherst,TX,79312 +Anton,TX,79313 +Brownfield,TX,79316 +Bula,TX,79320 +Crosbyton,TX,79322 +Denver City,TX,79323 +Enochs,TX,79324 +Farwell,TX,79325 +Fieldton,TX,79326 +Idalou,TX,79329 +Lamesa,TX,79331 +Levelland,TX,79336 +Littlefield,TX,79339 +Loop,TX,79342 +Lorenzo,TX,79343 +Maple,TX,79344 +Meadow,TX,79345 +Morton,TX,79346 +Muleshoe,TX,79347 +Odonnell,TX,79351 +Pep,TX,79353 +Plains,TX,79355 +Post,TX,79356 +Cone,TX,79357 +Ropesville,TX,79358 +Seagraves,TX,79359 +Seminole,TX,79360 +Shallowater,TX,79363 +Ransom Canyon,TX,79364 +Ransom Canyon,TX,79366 +Spur,TX,79370 +Sudan,TX,79371 +Tahoka,TX,79373 +Tokio,TX,79376 +Welch,TX,79377 +Whiteface,TX,79379 +Wilson,TX,79381 +Wolfforth,TX,79382 +Lubbock,TX,79401 +Lubbock,TX,79403 +Lubbock,TX,79404 +Lubbock,TX,79405 +Lubbock,TX,79406 +Lubbock,TX,79407 +Lubbock,TX,79410 +Lubbock,TX,79411 +Lubbock,TX,79412 +Lubbock,TX,79413 +Lubbock,TX,79414 +Lubbock,TX,79415 +Lubbock,TX,79416 +Lubbock,TX,79423 +Lubbock,TX,79424 +Reese Air Force,TX,79489 +Anson,TX,79501 +Aspermont,TX,79502 +Avoca,TX,79503 +Baird,TX,79504 +Blackwell,TX,79506 +Clyde,TX,79510 +Coahoma,TX,79511 +Colorado City,TX,79512 +Fluvanna,TX,79517 +Girard,TX,79518 +Goldsboro,TX,79519 +Hamlin,TX,79520 +Haskell,TX,79521 +Hawley,TX,79525 +Hermleigh,TX,79526 +Ira,TX,79527 +Jayton,TX,79528 +Knox City,TX,79529 +Lawn,TX,79530 +Loraine,TX,79532 +Lueders,TX,79533 +Mc Caulley,TX,79534 +Maryneal,TX,79535 +Merkel,TX,79536 +Nolan,TX,79537 +Novice,TX,79538 +O Brien,TX,79539 +Old Glory,TX,79540 +Ovalo,TX,79541 +79542,TX,79542 +Roby,TX,79543 +Rochester,TX,79544 +Roscoe,TX,79545 +Rotan,TX,79546 +Rule,TX,79547 +Sagerton,TX,79548 +Dermott,TX,79549 +Stamford,TX,79553 +Sweetwater,TX,79556 +Sylvester,TX,79560 +Trent,TX,79561 +Tuscola,TX,79562 +Tye,TX,79563 +Westbrook,TX,79565 +Wingate,TX,79566 +Winters,TX,79567 +Abilene,TX,79601 +Abilene,TX,79602 +Abilene,TX,79603 +Abilene,TX,79605 +Abilene,TX,79606 +Dyess Afb,TX,79607 +Midland,TX,79701 +Midland,TX,79703 +Midland,TX,79705 +Midland,TX,79707 +Ackerly,TX,79713 +Andrews,TX,79714 +Balmorhea,TX,79718 +Barstow,TX,79719 +Vealmoor,TX,79720 +Coyanosa,TX,79730 +Crane,TX,79731 +Fort Davis,TX,79734 +Fort Stockton,TX,79735 +Gail,TX,79738 +Garden City,TX,79739 +Goldsmith,TX,79741 +Grandfalls,TX,79742 +Imperial,TX,79743 +Iraan,TX,79744 +Kermit,TX,79745 +Knott,TX,79748 +Lenorah,TX,79749 +Mc Camey,TX,79752 +Mentone,TX,79754 +Midkiff,TX,79755 +Monahans,TX,79756 +Gardendale,TX,79758 +Odessa,TX,79761 +Odessa,TX,79762 +Odessa,TX,79763 +Odessa,TX,79764 +Odessa,TX,79765 +Odessa,TX,79766 +Verhalen,TX,79772 +Pyote,TX,79777 +Sheffield,TX,79781 +Stanton,TX,79782 +Tarzan,TX,79783 +Wink,TX,79789 +Anthony,TX,79821 +Alpine,TX,79830 +Big Bend Nationa,TX,79834 +Canutillo,TX,79835 +Clint,TX,79836 +Dell City,TX,79837 +Fort Hancock,TX,79839 +Marathon,TX,79842 +Marfa,TX,79843 +Presidio,TX,79845 +Salt Flat,TX,79847 +Sierra Blanca,TX,79851 +Terlingua,TX,79852 +Valentine,TX,79854 +Kent,TX,79855 +El Paso,TX,79901 +El Paso,TX,79902 +El Paso,TX,79903 +El Paso,TX,79904 +El Paso,TX,79905 +Fort Bliss,TX,79906 +El Paso,TX,79907 +Fort Bliss,TX,79908 +El Paso,TX,79912 +El Paso,TX,79915 +Fort Bliss,TX,79916 +El Paso,TX,79922 +El Paso,TX,79924 +El Paso,TX,79925 +Horizon City,TX,79927 +El Paso,TX,79930 +El Paso,TX,79932 +El Paso,TX,79934 +El Paso,TX,79935 +El Paso,TX,79936 +Altamont,UT,84001 +Altonah,UT,84002 +American Fork,UT,84003 +Alpine,UT,84004 +Bingham Canyon,UT,84006 +Bluebell,UT,84007 +Bountiful,UT,84010 +Bridgeland,UT,84012 +Cedar Valley,UT,84013 +Centerville,UT,84014 +Clearfield,UT,84015 +Coalville,UT,84017 +Croydon,UT,84018 +Draper,UT,84020 +Duchesne,UT,84021 +Dugway,UT,84022 +Dutch John,UT,84023 +Farmington,UT,84025 +Fort Duchesne,UT,84026 +Garden City,UT,84028 +Grantsville,UT,84029 +Hanna,UT,84031 +Heber City,UT,84032 +Jensen,UT,84035 +Kamas,UT,84036 +Kaysville,UT,84037 +Laketown,UT,84038 +Lapoint,UT,84039 +Layton,UT,84040 +Layton,UT,84041 +Lindon,UT,84042 +Lehi,UT,84043 +Magna,UT,84044 +Manila,UT,84046 +Midvale,UT,84047 +Midway,UT,84049 +Morgan,UT,84050 +Mountain Home,UT,84051 +Myton,UT,84052 +Neola,UT,84053 +North Salt Lake,UT,84054 +Hill Air Force B,UT,84056 +Orem,UT,84057 +Vineyard,UT,84058 +Park City,UT,84060 +Peoa,UT,84061 +Pleasant Grove,UT,84062 +Randlett,UT,84063 +Randolph,UT,84064 +Lark,UT,84065 +Roosevelt,UT,84066 +Roy,UT,84067 +Rush Valley,UT,84069 +Sandy,UT,84070 +Stockton,UT,84071 +Tabiona,UT,84072 +Talmage,UT,84073 +Tooele,UT,84074 +Syracuse,UT,84075 +Tridell,UT,84076 +Vernal,UT,84078 +Vernon,UT,84080 +Wallsburg,UT,84082 +Trout Creek,UT,84083 +West Jordan,UT,84084 +Whiterocks,UT,84085 +Woodruff,UT,84086 +Woods Cross,UT,84087 +West Jordan,UT,84088 +Alta,UT,84092 +Sandy,UT,84093 +Sandy,UT,84094 +Salt Lake City,UT,84101 +Salt Lake City,UT,84102 +Salt Lake City,UT,84103 +Salt Lake City,UT,84104 +Salt Lake City,UT,84105 +Salt Lake City,UT,84106 +Murray,UT,84107 +Salt Lake City,UT,84108 +Salt Lake City,UT,84109 +Salt Lake City,UT,84111 +Salt Lake City,UT,84112 +Salt Lake City,UT,84113 +South Salt Lake,UT,84115 +Salt Lake City,UT,84116 +Holladay,UT,84117 +Kearns,UT,84118 +West Valley City,UT,84119 +West Valley City,UT,84120 +Cottonwood,UT,84121 +Murray,UT,84123 +Holladay,UT,84124 +Brigham City,UT,84302 +Clarkston,UT,84305 +Collinston,UT,84306 +Corinne,UT,84307 +Cornish,UT,84308 +Deweyville,UT,84309 +Eden,UT,84310 +Fielding,UT,84311 +Garland,UT,84312 +Grouse Creek,UT,84313 +Honeyville,UT,84314 +Hooper,UT,84315 +Huntsville,UT,84317 +Hyrum,UT,84319 +Lewiston,UT,84320 +Logan,UT,84321 +Mantua,UT,84324 +Mendon,UT,84325 +Paradise,UT,84328 +Park Valley,UT,84329 +Providence,UT,84332 +Richmond,UT,84333 +Smithfield,UT,84335 +Snowville,UT,84336 +Tremonton,UT,84337 +Trenton,UT,84338 +Wellsville,UT,84339 +Willard,UT,84340 +Ogden,UT,84401 +Ogden,UT,84403 +Ogden,UT,84404 +Ogden,UT,84405 +Ogden,UT,84414 +Price,UT,84501 +Aneth,UT,84510 +Blanding,UT,84511 +East Carbon,UT,84520 +Ferron,UT,84523 +Green River,UT,84525 +Helper,UT,84526 +Huntington,UT,84528 +Mexican Hat,UT,84531 +Moab,UT,84532 +Bullfrog,UT,84533 +Monticello,UT,84535 +Monument Valley,UT,84536 +Thompson,UT,84540 +Wellington,UT,84542 +Provo,UT,84601 +Provo,UT,84604 +Provo,UT,84606 +Axtell,UT,84621 +Centerfield,UT,84622 +Delta,UT,84624 +Ephraim,UT,84627 +Eureka,UT,84628 +Fairview,UT,84629 +Fayette,UT,84630 +Fillmore,UT,84631 +Gunnison,UT,84634 +Hinckley,UT,84635 +Manti,UT,84642 +Mona,UT,84645 +Mount Pleasant,UT,84647 +Nephi,UT,84648 +Oasis,UT,84650 +Payson,UT,84651 +Woodland Hills,UT,84653 +Salina,UT,84654 +Genola,UT,84655 +Spanish Fork,UT,84660 +Springville,UT,84663 +Mapleton,UT,84664 +Venice,UT,84701 +Alton,UT,84710 +Antimony,UT,84712 +Beaver,UT,84713 +Beryl,UT,84714 +Boulder,UT,84716 +Bryce Canyon,UT,84717 +Brian Head,UT,84719 +Pintura,UT,84720 +Central,UT,84722 +Escalante,UT,84726 +Garrison,UT,84728 +Glendale,UT,84729 +Greenville,UT,84731 +Hanksville,UT,84734 +Hurricane,UT,84737 +Joseph,UT,84739 +Big Water,UT,84741 +Kingston,UT,84743 +Fremont,UT,84747 +Marysvale,UT,84750 +Milford,UT,84751 +Modena,UT,84753 +Austin,UT,84754 +Mount Carmel,UT,84755 +Newcastle,UT,84756 +Orderville,UT,84758 +Panguitch,UT,84759 +Paragonah,UT,84760 +Parowan,UT,84761 +Sevier,UT,84766 +St George,UT,84770 +Summit,UT,84772 +Teasdale,UT,84773 +Torrey,UT,84775 +Washington,UT,84780 +Pine Valley,UT,84781 +Veyo,UT,84782 +Dammeron Valley,UT,84783 +White River Junc,VT,5001 +Bethel,VT,5032 +Bradford,VT,5033 +Bridgewater,VT,5034 +Bridgewater Corn,VT,5035 +Brookfield,VT,5036 +Brownsville,VT,5037 +Chelsea,VT,5038 +Corinth,VT,5039 +East Corinth,VT,5040 +East Randolph,VT,5041 +Ryegate,VT,5042 +East Thetford,VT,5043 +Fairlee,VT,5045 +Groton,VT,5046 +Hartland,VT,5048 +Newbury,VT,5051 +North Hartland,VT,5052 +North Pomfret,VT,5053 +Norwich,VT,5055 +Plymouth,VT,5056 +Post Mills,VT,5058 +Randolph,VT,5060 +Randolph Center,VT,5061 +Reading,VT,5062 +Sharon,VT,5065 +South Pomfret,VT,5067 +South Royalton,VT,5068 +South Ryegate,VT,5069 +South Strafford,VT,5070 +South Woodstock,VT,5071 +Strafford,VT,5072 +Taftsville,VT,5073 +Thetford Center,VT,5075 +Tunbridge,VT,5077 +Vershire,VT,5079 +Wells River,VT,5081 +West Fairlee,VT,5083 +West Hartford,VT,5084 +West Topsham,VT,5086 +Windsor,VT,5089 +Woodstock,VT,5091 +Bellows Falls,VT,5101 +Cambridgeport,VT,5141 +Cavendish,VT,5142 +Chester,VT,5143 +Grafton,VT,5146 +Bromley Mtn,VT,5148 +Ludlow,VT,5149 +North Springfiel,VT,5150 +Perkinsville,VT,5151 +Peru,VT,5152 +Proctorsville,VT,5153 +Saxtons River,VT,5154 +South Londonderr,VT,5155 +Springfield,VT,5156 +Weston,VT,5161 +Bennington,VT,5201 +Arlington,VT,5250 +Dorset,VT,5251 +East Arlington,VT,5252 +East Dorset,VT,5253 +Manchester Cente,VT,5255 +North Bennington,VT,5257 +North Pownal,VT,5260 +Pownal,VT,5261 +Shaftsbury,VT,5262 +Brattleboro,VT,5301 +Bondville,VT,5340 +East Dover,VT,5341 +Jacksonville,VT,5342 +Jamaica,VT,5343 +Newfane,VT,5345 +Putney,VT,5346 +Readsboro,VT,5350 +Stamford,VT,5352 +Townshend,VT,5353 +Vernon,VT,5354 +Wardsboro,VT,5355 +Mount Snow,VT,5356 +West Halifax,VT,5358 +West Townshend,VT,5359 +West Wardsboro,VT,5360 +Whitingham,VT,5361 +Williamsville,VT,5362 +Wilmington,VT,5363 +Burlington,VT,5401 +South Burlington,VT,5403 +Winooski,VT,5404 +Univ Of Vermont,VT,5405 +Alburg,VT,5440 +Bakersfield,VT,5441 +Bristol,VT,5443 +Cambridge,VT,5444 +Charlotte,VT,5445 +Colchester,VT,5446 +East Berkshire,VT,5447 +East Fairfield,VT,5448 +Enosburg Falls,VT,5450 +Essex Junction,VT,5452 +Fairfax,VT,5454 +Fairfield,VT,5455 +Ferrisburg,VT,5456 +Franklin,VT,5457 +Grand Isle,VT,5458 +Highgate Center,VT,5459 +Hinesburg,VT,5461 +Huntington,VT,5462 +Isle La Motte,VT,5463 +Smugglers Notch,VT,5464 +Jericho Center,VT,5465 +Milton,VT,5468 +Montgomery Cente,VT,5471 +New Haven,VT,5472 +North Ferrisburg,VT,5473 +North Hero,VT,5474 +Richford,VT,5476 +Bolton Valley,VT,5477 +Saint Albans,VT,5478 +Shelburne,VT,5482 +Sheldon,VT,5483 +South Hero,VT,5486 +Starksboro,VT,5487 +Swanton,VT,5488 +Underhill,VT,5489 +Vergennes,VT,5491 +Waterville,VT,5492 +Westford,VT,5494 +Williston,VT,5495 +Montpelier,VT,5602 +Adamant,VT,5640 +Barre,VT,5641 +Cabot,VT,5647 +Calais,VT,5648 +East Barre,VT,5649 +East Calais,VT,5650 +East Montpelier,VT,5651 +Eden,VT,5652 +Eden Mills,VT,5653 +Graniteville,VT,5654 +Hyde Park,VT,5655 +Johnson,VT,5656 +Marshfield,VT,5658 +Moretown,VT,5660 +Morrisville,VT,5661 +Riverton,VT,5663 +North Montpelier,VT,5666 +Plainfield,VT,5667 +Roxbury,VT,5669 +Stowe,VT,5672 +Waitsfield,VT,5673 +Sugarbush Valley,VT,5674 +Washgtin,VT,5675 +Waterbury,VT,5676 +Waterbury Center,VT,5677 +Williamstown,VT,5679 +Wolcott,VT,5680 +Woodbury,VT,5681 +Worcester,VT,5682 +Rutland,VT,5701 +Belmont,VT,5730 +Hubbardton,VT,5732 +Brandon,VT,5733 +Bridport,VT,5734 +Castleton,VT,5735 +Center Rutland,VT,5736 +Chittenden,VT,5737 +Cuttingsville,VT,5738 +Danby,VT,5739 +East Wallingford,VT,5742 +Fair Haven,VT,5743 +Florence,VT,5744 +Gaysville,VT,5746 +Granville,VT,5747 +Hancock,VT,5748 +Killington,VT,5751 +Bread Loaf,VT,5753 +Middletown Sprin,VT,5757 +Mount Holly,VT,5758 +North Clarendon,VT,5759 +Orwell,VT,5760 +Pawlet,VT,5761 +Pittsfield,VT,5762 +Pittsford,VT,5763 +Poultney,VT,5764 +Proctor,VT,5765 +Ripton,VT,5766 +Rochester,VT,5767 +Salisbury,VT,5769 +Shoreham,VT,5770 +Stockbridge,VT,5772 +Wallingford,VT,5773 +Wells,VT,5774 +West Pawlet,VT,5775 +West Rupert,VT,5776 +West Rutland,VT,5777 +Leicester Juncti,VT,5778 +Saint Johnsbury,VT,5819 +Albany,VT,5820 +Barnet,VT,5821 +Barton,VT,5822 +Concord,VT,5824 +Coventry,VT,5825 +Craftsbury,VT,5826 +Craftsbury Commo,VT,5827 +Danville,VT,5828 +Derby,VT,5829 +Derby Line,VT,5830 +East Burke,VT,5832 +East Charleston,VT,5833 +East Hardwick,VT,5836 +East Haven,VT,5837 +Glover,VT,5839 +Greensboro,VT,5841 +Greensboro Bend,VT,5842 +Hardwick,VT,5843 +Irasburg,VT,5845 +Island Pond,VT,5846 +Lowell,VT,5847 +Lyndon Center,VT,5850 +Lyndonville,VT,5851 +Morgan Ctr,VT,5853 +Newport,VT,5855 +Newport Center,VT,5857 +North Concord,VT,5858 +Jay Peak,VT,5859 +Orleans,VT,5860 +Peacham,VT,5862 +Sheffield,VT,5866 +Sutton,VT,5867 +Troy,VT,5868 +West Burke,VT,5871 +West Charleston,VT,5872 +West Danville,VT,5873 +Westfield,VT,5874 +West Glover,VT,5875 +Averill,VT,5901 +Beecher Falls,VT,5902 +Canaan,VT,5903 +Gilman,VT,5904 +Guildhall,VT,5905 +Lunenburg,VT,5906 +Norton,VT,5907 +Aldie,VA,22001 +Amissville,VA,22002 +Annandale,VA,22003 +Arcola,VA,22010 +Ashburn,VA,22011 +Bluemont,VA,22012 +Bristow,VA,22013 +Broad Run,VA,22014 +Burke,VA,22015 +Catharpin,VA,22018 +Catlett,VA,22019 +Centreville,VA,22020 +Chantilly,VA,22021 +Clifton,VA,22024 +Delaplane,VA,22025 +Dumfries,VA,22026 +Dunn Loring,VA,22027 +Fairfax,VA,22030 +Fairfax,VA,22031 +Fairfax,VA,22032 +Fairfax,VA,22033 +Fairfax Station,VA,22039 +Baileys Crossroa,VA,22041 +Mosby,VA,22042 +Pimmit,VA,22043 +Seven Corners,VA,22044 +Falls Church,VA,22046 +Fort Belvoir,VA,22060 +Gainesville,VA,22065 +Great Falls,VA,22066 +Hamilton,VA,22068 +Haymarket,VA,22069 +Herndon,VA,22070 +Herndon,VA,22071 +Leesburg,VA,22075 +Mason Neck,VA,22079 +Lovettsville,VA,22080 +Lake Anne,VA,22090 +Reston,VA,22091 +Reston,VA,22094 +Mc Lean,VA,22101 +West Mclean,VA,22102 +Manassas,VA,22110 +Manassas Park,VA,22111 +Marshall,VA,22115 +Middleburg,VA,22117 +Nokesville,VA,22123 +Oakton,VA,22124 +Paeonian Springs,VA,22129 +Paris,VA,22130 +Hillsboro,VA,22132 +Quantico,VA,22134 +Round Hill,VA,22141 +Springfield,VA,22150 +North Springfiel,VA,22151 +West Springfield,VA,22152 +Springfield,VA,22153 +Sterling,VA,22170 +The Plains,VA,22171 +Triangle,VA,22172 +Upperville,VA,22176 +Vienna,VA,22180 +Vienna,VA,22181 +Vienna,VA,22182 +Airlie,VA,22186 +Waterford,VA,22190 +Woodbridge,VA,22191 +Lakeridge,VA,22192 +Dale City,VA,22193 +Arlington,VA,22201 +Arlington,VA,22202 +Arlington,VA,22203 +Arlington,VA,22204 +Arlington,VA,22205 +Arlington,VA,22206 +Arlington,VA,22207 +Arlington,VA,22209 +Arlington,VA,22211 +Arlington,VA,22213 +Alexandria,VA,22301 +Alexandria,VA,22302 +Jefferson Manor,VA,22303 +Alexandria,VA,22304 +Alexandria,VA,22305 +Community,VA,22306 +Belle View,VA,22307 +Wellington,VA,22308 +Engleside,VA,22309 +Franconia,VA,22310 +Alexandria,VA,22311 +Alexandria,VA,22312 +Alexandria,VA,22314 +Fredericksburg,VA,22401 +Falmouth,VA,22405 +Fredericksburg,VA,22406 +Fredericksburg,VA,22407 +Fredericksburg,VA,22408 +Bowling Green,VA,22427 +Burgess,VA,22432 +Burr Hill,VA,22433 +Callao,VA,22435 +Caret,VA,22436 +Center Cross,VA,22437 +Champlain,VA,22438 +Chance,VA,22439 +Oak Grove,VA,22443 +Dahlgren,VA,22448 +Howertons,VA,22454 +Farnham,VA,22460 +Hague,VA,22469 +Heathsville,VA,22473 +Hustle,VA,22476 +Irvington,VA,22480 +Kilmarnock,VA,22482 +King George,VA,22485 +Kinsale,VA,22488 +Lancaster,VA,22503 +Laneview,VA,22504 +Locust Grove,VA,22508 +Loretto,VA,22509 +Lottsburg,VA,22511 +Milford,VA,22514 +Montross,VA,22520 +Partlow,VA,22534 +Port Royal,VA,22535 +Rappahannock Aca,VA,22538 +Reedville,VA,22539 +Rhoadesville,VA,22542 +Ruther Glen,VA,22546 +Snell,VA,22553 +Stafford,VA,22554 +Supply,VA,22559 +Tappahannock,VA,22560 +Unionville,VA,22567 +Mine Run,VA,22568 +Nomini Grove,VA,22572 +Weems,VA,22576 +Windmill Point,VA,22578 +Wicomico Church,VA,22579 +Woodford,VA,22580 +Winchester,VA,22601 +Browntown,VA,22610 +Berryville,VA,22611 +Boyce,VA,22620 +Clear Brook,VA,22624 +Whitacre,VA,22625 +Flint Hill,VA,22627 +Front Royal,VA,22630 +Gore,VA,22637 +Hume,VA,22639 +Huntly,VA,22640 +Lebanon Church,VA,22641 +Linden,VA,22642 +Markham,VA,22643 +Maurertown,VA,22644 +Middletown,VA,22645 +Reliance,VA,22649 +Rileyville,VA,22650 +Saint Davids Chu,VA,22652 +Star Tannery,VA,22654 +Stephens City,VA,22655 +Stephenson,VA,22656 +Strasburg,VA,22657 +Toms Brook,VA,22660 +White Post,VA,22663 +Woodstock,VA,22664 +Raccoon Ford,VA,22701 +Aroda,VA,22709 +Morrisville,VA,22712 +Boston,VA,22713 +Brandy Station,VA,22714 +Brightwood,VA,22715 +Castleton,VA,22716 +Elkwood,VA,22718 +Etlan,VA,22719 +Goldvein,VA,22720 +Haywood,VA,22722 +Jeffersonton,VA,22724 +Leon,VA,22725 +Lignum,VA,22726 +Aylor,VA,22727 +Midland,VA,22728 +Mitchells,VA,22729 +Pratts,VA,22731 +Radiant,VA,22732 +Rapidan,VA,22733 +Remington,VA,22734 +Reva,VA,22735 +Richardsville,VA,22736 +Rixeyville,VA,22737 +Uno,VA,22738 +Sperryville,VA,22740 +Stevensburg,VA,22741 +Sumerduck,VA,22742 +Syria,VA,22743 +Viewtown,VA,22746 +Washington,VA,22747 +Woodville,VA,22749 +Harrisonburg,VA,22801 +Basye,VA,22810 +Bergton,VA,22811 +Bridgewater,VA,22812 +Broadway,VA,22815 +Criders,VA,22820 +Montezuma,VA,22821 +Edinburg,VA,22824 +Elkton,VA,22827 +Fulks Run,VA,22830 +Hinton,VA,22831 +Keezletown,VA,22832 +Linville,VA,22834 +Luray,VA,22835 +Mc Gaheysville,VA,22840 +Mount Crawford,VA,22841 +Conicville,VA,22842 +Mount Solon,VA,22843 +New Market,VA,22844 +Orkney Springs,VA,22845 +Montevideo,VA,22846 +Shenandoah Caver,VA,22847 +Shenandoah,VA,22849 +Stanley,VA,22851 +Timberville,VA,22853 +Charlottesville,VA,22901 +University,VA,22903 +Afton,VA,22920 +Tye River,VA,22922 +Burnleys,VA,22923 +Cobham,VA,22929 +Covesville,VA,22931 +Yancey Mills,VA,22932 +Boonesville,VA,22935 +Earlysville,VA,22936 +Esmont,VA,22937 +Faber,VA,22938 +Woodrow Wilson,VA,22939 +Mission Home,VA,22940 +Cashs Corner,VA,22942 +Greenwood,VA,22943 +Keene,VA,22946 +Boyd Tavern,VA,22947 +Locust Dale,VA,22948 +Lovingston,VA,22949 +Lowesville,VA,22951 +Sherando,VA,22952 +Wintergreen,VA,22958 +Alberene,VA,22959 +Montford,VA,22960 +Bybee,VA,22963 +Piney River,VA,22964 +Roseland,VA,22967 +Advance Mills,VA,22968 +Schuyler,VA,22969 +Rockfish,VA,22971 +Somerset,VA,22972 +Geer,VA,22973 +Troy,VA,22974 +Waynesboro,VA,22980 +Amelia Court Hou,VA,23002 +Arvonia,VA,23004 +Ashland,VA,23005 +Aylett,VA,23009 +Barhamsville,VA,23011 +23013,VA,23013 +Beaverdam,VA,23015 +Beaverlett,VA,23016 +23020,VA,23020 +Bohannon,VA,23021 +Bremo Bluff,VA,23022 +Bruington,VA,23023 +Bumpass,VA,23024 +Miles,VA,23025 +Tamworth,VA,23027 +Cauthornville,VA,23029 +Charles City,VA,23030 +Church View,VA,23032 +Cologne,VA,23037 +Columbia,VA,23038 +Crozier,VA,23039 +Cumberland,VA,23040 +23042,VA,23042 +Deltaville,VA,23043 +Diggs,VA,23045 +Doswell,VA,23047 +Dutton,VA,23050 +Fork Union,VA,23055 +Glen Allen,VA,23060 +Pinero,VA,23061 +Gloucester Point,VA,23062 +Goochland,VA,23063 +Gum Spring,VA,23065 +Gwynn,VA,23066 +Hanover,VA,23069 +Hardyville,VA,23070 +Hartfield,VA,23071 +Hayes,VA,23072 +Highland Springs,VA,23075 +Jamaica,VA,23079 +James Store,VA,23080 +Jetersville,VA,23083 +Kents Store,VA,23084 +King And Queen C,VA,23085 +King William,VA,23086 +Lanexa,VA,23089 +Little Plymouth,VA,23091 +Locust Hill,VA,23092 +Louisa,VA,23093 +Dabneys,VA,23102 +Manakin Sabot,VA,23103 +Manquin,VA,23106 +Mascot,VA,23108 +Mathews,VA,23109 +Shanghai,VA,23110 +Mechanicsville,VA,23111 +Midlothian,VA,23112 +Midlothian,VA,23113 +23114,VA,23114 +Mineral,VA,23117 +Mobjack,VA,23118 +Moon,VA,23119 +Moseley,VA,23120 +New Canton,VA,23123 +New Kent,VA,23124 +New Point,VA,23125 +Newtown,VA,23126 +North,VA,23128 +Oilville,VA,23129 +Onemo,VA,23130 +23137,VA,23137 +Bavon,VA,23138 +Powhatan,VA,23139 +Providence Forge,VA,23140 +Quinton,VA,23141 +Rockville,VA,23146 +Indian Neck,VA,23148 +Saluda,VA,23149 +Sandston,VA,23150 +Sandy Hook,VA,23153 +Plain View,VA,23156 +23157,VA,23157 +Stevensville,VA,23161 +Shadow,VA,23163 +Toano,VA,23168 +Syringa,VA,23169 +Remlik,VA,23175 +Wake,VA,23176 +Walkerton,VA,23177 +Warner,VA,23179 +Water View,VA,23180 +West Point,VA,23181 +Merrimac,VA,23185 +Williamsburg,VA,23188 +Montpelier,VA,23192 +Richmond,VA,23219 +Richmond,VA,23220 +Richmond,VA,23221 +Richmond,VA,23222 +Richmond,VA,23223 +Richmond,VA,23224 +Richmond,VA,23225 +Richmond,VA,23226 +Bellevue,VA,23227 +Lakeside,VA,23228 +Regency,VA,23229 +West End,VA,23230 +Richmond,VA,23231 +Ridge,VA,23233 +Ampthill,VA,23234 +Bon Air,VA,23235 +Richmond,VA,23236 +Richmond,VA,23237 +Richmond,VA,23294 +Accomac,VA,23301 +Assawoman,VA,23302 +Belle Haven,VA,23306 +Birdsnest,VA,23307 +Bloxom,VA,23308 +Cape Charles,VA,23310 +Carrollton,VA,23314 +Carrsville,VA,23315 +Chesapeake,VA,23320 +Bowers Hill,VA,23321 +Fentress,VA,23322 +Chesapeake,VA,23323 +Chesapeake,VA,23324 +Chesapeake,VA,23325 +Chincoteague,VA,23336 +Wallops Island,VA,23337 +Exmore,VA,23350 +Franktown,VA,23354 +Greenbackville,VA,23356 +Greenbush,VA,23357 +Hallwood,VA,23359 +Horntown,VA,23395 +Horsey,VA,23396 +Jenkins Bridge,VA,23399 +Locustville,VA,23404 +Machipongo,VA,23405 +Mappsville,VA,23407 +Mears,VA,23409 +Melfa,VA,23410 +New Church,VA,23415 +Oak Hall,VA,23416 +Onancock,VA,23417 +Onley,VA,23418 +Painter,VA,23420 +Parksley,VA,23421 +Sanford,VA,23426 +Smithfield,VA,23430 +Suffolk,VA,23432 +Suffolk,VA,23433 +Suffolk,VA,23434 +Suffolk,VA,23435 +Suffolk,VA,23436 +Suffolk,VA,23437 +Suffolk,VA,23438 +Tangier,VA,23440 +Temperanceville,VA,23442 +Virginia Beach,VA,23451 +Virginia Beach,VA,23452 +Virginia Beach,VA,23454 +Virginia Beach,VA,23455 +Virginia Beach,VA,23456 +Blackwater Bridg,VA,23457 +Virginia Beach,VA,23459 +Virginia Beach,VA,23462 +Virginia Beach,VA,23464 +Walters,VA,23481 +Windsor,VA,23487 +Norfolk,VA,23502 +Norfolk,VA,23503 +Norfolk,VA,23504 +Norfolk,VA,23505 +Norfolk,VA,23507 +Norfolk,VA,23508 +Norfolk,VA,23509 +Norfolk,VA,23510 +Fleet,VA,23511 +Norfolk,VA,23513 +Norfolk,VA,23517 +Norfolk,VA,23518 +Naval Amphibious,VA,23521 +Norfolk,VA,23523 +Newport News,VA,23601 +Newport News,VA,23602 +Newport News,VA,23603 +Newport News,VA,23604 +Newport News,VA,23605 +Newport News,VA,23606 +Newport News,VA,23607 +Hampton,VA,23651 +Hampton,VA,23661 +Poquoson,VA,23662 +Hampton,VA,23663 +Hampton,VA,23664 +Hampton,VA,23665 +Hampton,VA,23666 +Hampton,VA,23669 +Yorktown,VA,23690 +Grafton,VA,23692 +Tabb,VA,23693 +Seaford,VA,23696 +Portsmouth,VA,23701 +Portsmouth,VA,23702 +Portsmouth,VA,23703 +Portsmouth,VA,23704 +Portsmouth,VA,23707 +Portsmouth,VA,23709 +Fort Lee,VA,23801 +Ettrick,VA,23803 +Petersburg,VA,23805 +Alberta,VA,23821 +Blackstone,VA,23824 +Boykins,VA,23827 +Branchville,VA,23828 +Capron,VA,23829 +Carson,VA,23830 +Chester,VA,23831 +Chesterfield,VA,23832 +Church Road,VA,23833 +Colonial Heights,VA,23834 +Courtland,VA,23837 +Dendron,VA,23839 +Dewitt,VA,23840 +Dinwiddie,VA,23841 +Disputanta,VA,23842 +Dolphin,VA,23843 +Drewryville,VA,23844 +Ebony,VA,23845 +Elberon,VA,23846 +Emporia,VA,23847 +Ammon,VA,23850 +Franklin,VA,23851 +Freeman,VA,23856 +Gasburg,VA,23857 +Handsom,VA,23859 +Hopewell,VA,23860 +Ivor,VA,23866 +Jarratt,VA,23867 +Triplet,VA,23868 +Mc Kenney,VA,23872 +Newsoms,VA,23874 +Prince George,VA,23875 +Rawlings,VA,23876 +Sedley,VA,23878 +Skippers,VA,23879 +Spring Grove,VA,23881 +Stony Creek,VA,23882 +Surry,VA,23883 +Sutherland,VA,23885 +Valentines,VA,23887 +Wakefield,VA,23888 +Warfield,VA,23889 +Waverly,VA,23890 +White Plains,VA,23893 +Wilsons,VA,23894 +Yale,VA,23897 +Zuni,VA,23898 +Farmville,VA,23901 +Baskerville,VA,23915 +Boydton,VA,23917 +Bracey,VA,23919 +Brodnax,VA,23920 +Buckingham,VA,23921 +Burkeville,VA,23922 +Charlotte Court,VA,23923 +Chase City,VA,23924 +Clarksville,VA,23927 +Crewe,VA,23930 +Cullen,VA,23934 +Sprouses Corner,VA,23936 +Drakes Branch,VA,23937 +Dundas,VA,23938 +Green Bay,VA,23942 +Kenbridge,VA,23944 +Keysville,VA,23947 +Blackridge,VA,23950 +Lunenburg,VA,23952 +Meherrin,VA,23954 +Pamplin,VA,23958 +Phenix,VA,23959 +Prospect,VA,23960 +Randolph,VA,23962 +Red House,VA,23963 +Red Oak,VA,23964 +Rice,VA,23966 +Saxe,VA,23967 +Skipwith,VA,23968 +South Hill,VA,23970 +23973,VA,23973 +Victoria,VA,23974 +Wylliesburg,VA,23976 +Roanoke,VA,24011 +Roanoke,VA,24012 +Roanoke,VA,24013 +Roanoke,VA,24014 +Roanoke,VA,24015 +Roanoke,VA,24016 +Roanoke,VA,24017 +Cave Spring,VA,24018 +Hollins,VA,24019 +Ararat,VA,24053 +Axton,VA,24054 +Bassett,VA,24055 +Bent Mountain,VA,24059 +Whitethorne,VA,24060 +Blue Ridge,VA,24064 +Boones Mill,VA,24065 +Lithia,VA,24066 +Callaway,VA,24067 +Cascade,VA,24069 +Catawba,VA,24070 +Simpsons,VA,24072 +Christiansburg,VA,24073 +Claudville,VA,24076 +Cloverdale,VA,24077 +Collinsville,VA,24078 +Copper Hill,VA,24079 +Critz,VA,24082 +Daleville,VA,24083 +Dublin,VA,24084 +Eagle Rock,VA,24085 +Eggleston,VA,24086 +Ironto,VA,24087 +Ferrum,VA,24088 +Fieldale,VA,24089 +Fincastle,VA,24090 +Alum Ridge,VA,24091 +Gladehill,VA,24092 +Glen Lyn,VA,24093 +Goldbond,VA,24094 +Goodview,VA,24095 +Hardy,VA,24101 +Henry,VA,24102 +Huddleston,VA,24104 +Indian Valley,VA,24105 +Martinsville,VA,24112 +Meadows Of Dan,VA,24120 +Moneta,VA,24121 +Montvale,VA,24122 +Narrows,VA,24124 +New Castle,VA,24127 +Newport,VA,24128 +Paint Bank,VA,24131 +Patrick Springs,VA,24133 +Pearisburg,VA,24134 +Mountain Lake,VA,24136 +Penhook,VA,24137 +Pilot,VA,24138 +Pittsville,VA,24139 +Fairlawn,VA,24141 +Rich Creek,VA,24147 +Ridgeway,VA,24148 +Riner,VA,24149 +Ripplemead,VA,24150 +Rocky Mount,VA,24151 +Salem,VA,24153 +Sandy Level,VA,24161 +Shawsville,VA,24162 +Spencer,VA,24165 +Staffordsville,VA,24167 +Stanleytown,VA,24168 +Stuart,VA,24171 +Thaxton,VA,24174 +Troutville,VA,24175 +Union Hall,VA,24176 +Stewartsville,VA,24179 +Wirtz,VA,24184 +Woolwine,VA,24185 +Bristol,VA,24201 +Abingdon,VA,24210 +Exeter,VA,24216 +Bee,VA,24217 +Big Stone Gap,VA,24219 +Birchleaf,VA,24220 +Blackwater,VA,24221 +Castlewood,VA,24224 +Cleveland,VA,24225 +Clinchco,VA,24226 +Clintwood,VA,24228 +Coeburn,VA,24230 +Damascus,VA,24236 +Dante,VA,24237 +Davenport,VA,24239 +Dryden,VA,24243 +Clinchport,VA,24244 +Dungannon,VA,24245 +Ewing,VA,24248 +Fort Blackmore,VA,24250 +Gate City,VA,24251 +Haysi,VA,24256 +Hiltons,VA,24258 +Council,VA,24260 +Jonesville,VA,24263 +Keokee,VA,24265 +Lebanon,VA,24266 +Mc Clure,VA,24269 +Mendota,VA,24270 +Nickelsville,VA,24271 +Nora,VA,24272 +Norton,VA,24273 +Pennington Gap,VA,24277 +Pound,VA,24279 +Rosedale,VA,24280 +Rose Hill,VA,24281 +Saint Charles,VA,24282 +Saint Paul,VA,24283 +Stonega,VA,24285 +Trammel,VA,24289 +Weber City,VA,24290 +Whitetop,VA,24292 +Wise,VA,24293 +Pulaski,VA,24301 +Atkins,VA,24311 +Austinville,VA,24312 +Barren Springs,VA,24313 +Bastian,VA,24314 +Bland,VA,24315 +Broadford,VA,24316 +Cana,VA,24317 +Ceres,VA,24318 +Chilhowie,VA,24319 +Cripple Creek,VA,24322 +Crockett,VA,24323 +Draper,VA,24324 +Dugspur,VA,24325 +Elk Creek,VA,24326 +Fancy Gap,VA,24328 +24329,VA,24329 +Fries,VA,24330 +Galax,VA,24333 +Glade Spring,VA,24340 +Hillsville,VA,24343 +Allisonia,VA,24347 +Independence,VA,24348 +Ivanhoe,VA,24350 +Lambsburg,VA,24351 +Laurel Fork,VA,24352 +Marion,VA,24354 +Foster Falls,VA,24360 +Meadowview,VA,24361 +Mouth Of Wilson,VA,24363 +Rocky Gap,VA,24366 +Rural Retreat,VA,24368 +Saltville,VA,24370 +Seven Mile Ford,VA,24373 +Speedwell,VA,24374 +Sugar Grove,VA,24375 +Tannersville,VA,24377 +Trout Dale,VA,24378 +Willis,VA,24380 +Woodlawn,VA,24381 +Wytheville,VA,24382 +Woodrum,VA,24401 +Blue Grass,VA,24413 +Buena Vista,VA,24416 +Churchville,VA,24421 +Clifton Forge,VA,24422 +Alleghany,VA,24426 +Craigsville,VA,24430 +Crimora,VA,24431 +Deerfield,VA,24432 +Doe Hill,VA,24433 +Fairfield,VA,24435 +Fort Defiance,VA,24437 +Goshen,VA,24439 +Greenville,VA,24440 +Grottoes,VA,24441 +Head Waters,VA,24442 +Hightown,VA,24444 +Hot Springs,VA,24445 +Lexington,VA,24450 +Mc Dowell,VA,24458 +Middlebrook,VA,24459 +Millboro Spring,VA,24460 +Montebello,VA,24464 +Monterey,VA,24465 +Mount Sidney,VA,24467 +Mustoe,VA,24468 +Port Republic,VA,24471 +Raphine,VA,24472 +Rockbridge Baths,VA,24473 +Spottswood,VA,24475 +Stuarts Draft,VA,24477 +Swoope,VA,24479 +Verona,VA,24482 +Vesuvius,VA,24483 +Bolar,VA,24484 +West Augusta,VA,24485 +Weyers Cave,VA,24486 +Burnsville,VA,24487 +Lynchburg,VA,24501 +Timberlake,VA,24502 +Lynchburg,VA,24503 +Lynchburg,VA,24504 +Altavista,VA,24517 +Alton,VA,24520 +Amherst,VA,24521 +Appomattox,VA,24522 +Bedford,VA,24523 +Big Island,VA,24526 +Blairs,VA,24527 +Brookneal,VA,24528 +Buffalo Junction,VA,24529 +Callands,VA,24530 +Chatham,VA,24531 +Clover,VA,24534 +Coleman Falls,VA,24536 +Concord,VA,24538 +Crystal Hill,VA,24539 +Danville,VA,24540 +Danville,VA,24541 +Dry Fork,VA,24549 +Evington,VA,24550 +Forest,VA,24551 +Gladstone,VA,24553 +Gladys,VA,24554 +Glasgow,VA,24555 +Goode,VA,24556 +Gretna,VA,24557 +Halifax,VA,24558 +Howardsville,VA,24562 +Hurt,VA,24563 +Java,VA,24565 +Keeling,VA,24566 +Long Island,VA,24569 +Lowry,VA,24570 +Lynch Station,VA,24571 +Madison Heights,VA,24572 +Monroe,VA,24574 +Lennig,VA,24577 +Natural Bridge,VA,24578 +Natural Bridge S,VA,24579 +Nelson,VA,24580 +Ringgold,VA,24586 +Rustburg,VA,24588 +Scottsburg,VA,24589 +Scottsville,VA,24590 +South Boston,VA,24592 +Spout Spring,VA,24593 +Sutherlin,VA,24594 +Ingram,VA,24597 +Virgilina,VA,24598 +Wingina,VA,24599 +Bandy,VA,24602 +Conaway,VA,24603 +Bluefield,VA,24605 +Cedar Bluff,VA,24609 +Falls Mills,VA,24613 +Grundy,VA,24614 +Hurley,VA,24620 +Jewell Valley,VA,24622 +Mavisdale,VA,24627 +Tiptop,VA,24630 +Patterson,VA,24631 +24633,VA,24633 +Pilgrims Knob,VA,24634 +Pounding Mill,VA,24637 +Raven,VA,24639 +Richlands,VA,24641 +Rowe,VA,24646 +Swords Creek,VA,24649 +Tazewell,VA,24651 +Vansant,VA,24656 +Whitewood,VA,24657 +Algona,WA,98001 +Auburn,WA,98002 +Federal Way,WA,98003 +Beaux Arts,WA,98004 +Bellevue,WA,98005 +Bellevue,WA,98006 +Bellevue,WA,98007 +Bellevue,WA,98008 +Black Diamond,WA,98010 +Bothell,WA,98011 +Mill Creek,WA,98012 +Carnation,WA,98014 +Duvall,WA,98019 +Woodway,WA,98020 +Bothell,WA,98021 +Enumclaw,WA,98022 +Federal Way,WA,98023 +Fall City,WA,98024 +Edmonds,WA,98026 +Issaquah,WA,98027 +Kent,WA,98031 +Kent,WA,98032 +Kirkland,WA,98033 +Kirkland,WA,98034 +Brier,WA,98036 +Lynnwood,WA,98037 +Maple Valley,WA,98038 +Mercer Island,WA,98040 +Kent,WA,98042 +Mountlake Terrac,WA,98043 +North Bend,WA,98045 +Pacific,WA,98047 +Ravensdale,WA,98051 +Redmond,WA,98052 +Redmond,WA,98053 +Renton,WA,98055 +Renton,WA,98056 +Renton,WA,98058 +Renton,WA,98059 +Snoqualmie,WA,98065 +Vashon,WA,98070 +Woodinville,WA,98072 +Seattle,WA,98101 +Seattle,WA,98102 +Seattle,WA,98103 +Seattle,WA,98104 +Seattle,WA,98105 +Seattle,WA,98106 +Seattle,WA,98107 +Tukwila,WA,98108 +Seattle,WA,98109 +Bainbridge Islan,WA,98110 +Seattle,WA,98112 +Seattle,WA,98115 +Seattle,WA,98116 +Seattle,WA,98117 +Seattle,WA,98118 +Seattle,WA,98119 +Seattle,WA,98121 +Seattle,WA,98122 +Seattle,WA,98125 +Seattle,WA,98126 +Seattle,WA,98133 +Seattle,WA,98134 +Seattle,WA,98136 +Seattle,WA,98144 +Burien,WA,98146 +Normandy Park,WA,98148 +Lk Forest Park,WA,98155 +Seatac,WA,98158 +Normandy Park,WA,98166 +Tukwila,WA,98168 +Seattle,WA,98177 +Tukwila,WA,98178 +Tukwila,WA,98188 +Des Moines,WA,98198 +Seattle,WA,98199 +Everett,WA,98201 +Everett,WA,98203 +Everett,WA,98204 +Everett,WA,98205 +Everett,WA,98208 +Acme,WA,98220 +Anacortes,WA,98221 +Arlington,WA,98223 +Baring,WA,98224 +Bellingham,WA,98225 +Bellingham,WA,98226 +Blaine,WA,98230 +Bow,WA,98232 +Burlington,WA,98233 +Clinton,WA,98236 +Concrete,WA,98237 +Coupeville,WA,98239 +Custer,WA,98240 +Darrington,WA,98241 +Glacier,WA,98244 +Eastsound,WA,98245 +Everson,WA,98247 +Ferndale,WA,98248 +Freeland,WA,98249 +Friday Harbor,WA,98250 +Granite Falls,WA,98252 +Greenbank,WA,98253 +La Conner,WA,98257 +Lake Stevens,WA,98258 +Langley,WA,98260 +Lopez,WA,98261 +Lummi Island,WA,98262 +Lyman,WA,98263 +Lynden,WA,98264 +Marysville,WA,98270 +Marysville,WA,98271 +Monroe,WA,98272 +Mount Vernon,WA,98273 +Mukilteo,WA,98275 +Oak Harbor,WA,98277 +Whidbey Island N,WA,98278 +Olga,WA,98279 +Point Roberts,WA,98281 +Rockport,WA,98283 +Sedro Woolley,WA,98284 +Skykomish,WA,98288 +Snohomish,WA,98290 +Stanwood,WA,98292 +Sultan,WA,98294 +Sumas,WA,98295 +Anderson Island,WA,98303 +Ashford,WA,98304 +Beaver,WA,98305 +Bremerton,WA,98310 +Bremerton,WA,98312 +Puget Sound Nava,WA,98314 +Silverdale,WA,98315 +Brinnon,WA,98320 +Buckley,WA,98321 +Carbonado,WA,98323 +Chimacum,WA,98325 +Clallam Bay,WA,98326 +Eatonville,WA,98328 +Gig Harbor,WA,98329 +Elbe,WA,98330 +Forks,WA,98331 +Gig Harbor,WA,98332 +Fox Island,WA,98333 +Gig Harbor,WA,98335 +Glenoma,WA,98336 +Graham,WA,98338 +Port Hadlock,WA,98339 +Hansville,WA,98340 +Kingston,WA,98346 +Home,WA,98349 +Longbranch,WA,98351 +Milton,WA,98354 +Mineral,WA,98355 +Morton,WA,98356 +Nordland,WA,98358 +Olalla,WA,98359 +Orting,WA,98360 +Packwood,WA,98361 +Port Angeles,WA,98362 +Port Ludlow,WA,98365 +South Park Villa,WA,98366 +Port Townsend,WA,98368 +Poulsbo,WA,98370 +Puyallup,WA,98371 +Puyallup,WA,98372 +Puyallup,WA,98373 +Puyallup,WA,98374 +Quilcene,WA,98376 +Randle,WA,98377 +Seabeck,WA,98380 +Sekiu,WA,98381 +Sequim,WA,98382 +Silverdale,WA,98383 +Spanaway,WA,98387 +Steilacoom,WA,98388 +Bonney Lake,WA,98390 +Suquamish,WA,98392 +Vaughn,WA,98394 +Tacoma,WA,98402 +Tacoma,WA,98403 +Tacoma,WA,98404 +Tacoma,WA,98405 +Tacoma,WA,98406 +Tacoma,WA,98407 +Tacoma,WA,98408 +Tacoma,WA,98409 +Tacoma,WA,98421 +Tacoma,WA,98422 +Fife,WA,98424 +Fort Lewis,WA,98433 +Lakewood Center,WA,98439 +Tacoma,WA,98443 +Parkland,WA,98444 +Parkland,WA,98445 +Parkland,WA,98446 +Tacoma,WA,98465 +Fircrest,WA,98466 +Tacoma,WA,98467 +Lakewood Center,WA,98498 +Lakewood Center,WA,98499 +Olympia,WA,98501 +Olympia,WA,98502 +Lacey,WA,98503 +Lacey,WA,98506 +Aberdeen,WA,98520 +Allyn,WA,98524 +Amanda Park,WA,98526 +Bear Creek,WA,98528 +Centralia,WA,98531 +Chehalis,WA,98532 +Cinebar,WA,98533 +Copalis Beach,WA,98535 +Copalis Crossing,WA,98536 +Cosmopolis,WA,98537 +Curtis,WA,98538 +Elma,WA,98541 +Ethel,WA,98542 +Grapeview,WA,98546 +Grayland,WA,98547 +Hoodsport,WA,98548 +Hoquiam,WA,98550 +Humptulips,WA,98552 +Lilliwaup,WA,98555 +Mc Cleary,WA,98557 +Matlock,WA,98560 +Moclips,WA,98562 +Montesano,WA,98563 +Mossyrock,WA,98564 +Oakville,WA,98568 +Ocean City,WA,98569 +Onalaska,WA,98570 +Pacific Beach,WA,98571 +Pe Ell,WA,98572 +Quinault,WA,98575 +Rainier,WA,98576 +Raymond,WA,98577 +Rochester,WA,98579 +Roy,WA,98580 +Ryderwood,WA,98581 +Salkum,WA,98582 +Shelton,WA,98584 +Silver Creek,WA,98585 +South Bend,WA,98586 +Taholah,WA,98587 +Tahuya,WA,98588 +Tenino,WA,98589 +Tokeland,WA,98590 +Toledo,WA,98591 +Union,WA,98592 +Vader,WA,98593 +Westport,WA,98595 +Winlock,WA,98596 +Yelm,WA,98597 +Amboy,WA,98601 +Appleton,WA,98602 +Ariel,WA,98603 +Battle Ground,WA,98604 +Cook,WA,98605 +Brush Prairie,WA,98606 +Camas,WA,98607 +Carson,WA,98610 +Castle Rock,WA,98611 +Cathlamet,WA,98612 +Centerville,WA,98613 +Cougar,WA,98616 +Glenwood,WA,98619 +Goldendale,WA,98620 +Grays River,WA,98621 +Ilwaco,WA,98624 +Kalama,WA,98625 +Kelso,WA,98626 +Klickitat,WA,98628 +La Center,WA,98629 +Long Beach,WA,98631 +Longview,WA,98632 +Lyle,WA,98635 +Naselle,WA,98638 +Ocean Park,WA,98640 +Ridgefield,WA,98642 +Rosburg,WA,98643 +Silverlake,WA,98645 +Skamokawa,WA,98647 +Stevenson,WA,98648 +Toutle,WA,98649 +Trout Lake,WA,98650 +Underwood,WA,98651 +Vancouver,WA,98660 +Vancouver,WA,98661 +Orchards,WA,98662 +Vancouver,WA,98663 +Vancouver,WA,98664 +Hazel Dell,WA,98665 +Wahkiacus,WA,98670 +Washougal,WA,98671 +White Salmon,WA,98672 +Woodland,WA,98674 +Yacolt,WA,98675 +Vancouver,WA,98682 +Cascade Park,WA,98684 +Felida,WA,98685 +Vancouver,WA,98686 +Wenatchee,WA,98801 +East Wenatchee,WA,98802 +Brewster,WA,98812 +Bridgeport,WA,98813 +Carlton,WA,98814 +Cashmere,WA,98815 +Chelan,WA,98816 +Entiat,WA,98822 +Ephrata,WA,98823 +Leavenworth,WA,98826 +Loomis,WA,98827 +Malaga,WA,98828 +Mansfield,WA,98830 +Manson,WA,98831 +Marlin,WA,98832 +Mazama,WA,98833 +Methow,WA,98834 +Moses Lake,WA,98837 +Okanogan,WA,98840 +Omak,WA,98841 +Orondo,WA,98843 +Oroville,WA,98844 +Palisades,WA,98845 +Pateros,WA,98846 +Peshastin,WA,98847 +Quincy,WA,98848 +Riverside,WA,98849 +Rock Island,WA,98850 +Soap Lake,WA,98851 +Stehekin,WA,98852 +Tonasket,WA,98855 +Twisp,WA,98856 +Warden,WA,98857 +Waterville,WA,98858 +Wauconda,WA,98859 +Winthrop,WA,98862 +Terrace Heights,WA,98901 +Yakima,WA,98902 +Union Gap,WA,98903 +Wide Hollow,WA,98908 +Cle Elum,WA,98922 +Cowiche,WA,98923 +Ellensburg,WA,98926 +Grandview,WA,98930 +Granger,WA,98932 +Harrah,WA,98933 +Mabton,WA,98935 +Moxee,WA,98936 +White Pass,WA,98937 +Outlook,WA,98938 +Selah,WA,98942 +Sunnyside,WA,98944 +Thorp,WA,98946 +Tieton,WA,98947 +Toppenish,WA,98948 +Wapato,WA,98951 +White Swan,WA,98952 +Zillah,WA,98953 +Chattaroy,WA,99003 +Cheney,WA,99004 +Colbert,WA,99005 +Deer Park,WA,99006 +Edwall,WA,99008 +Elk,WA,99009 +Fairchild Air Fo,WA,99011 +Fairfield,WA,99012 +Ford,WA,99013 +Greenacres,WA,99016 +Lamont,WA,99017 +Latah,WA,99018 +Liberty Lake,WA,99019 +Mead,WA,99021 +Espanola,WA,99022 +Mica,WA,99023 +Newman Lake,WA,99025 +Nine Mile Falls,WA,99026 +Otis Orchards,WA,99027 +Reardan,WA,99029 +Rockford,WA,99030 +Spangle,WA,99031 +Sprague,WA,99032 +Tekoa,WA,99033 +Tumtum,WA,99034 +Valleyford,WA,99036 +Veradale,WA,99037 +Waverly,WA,99039 +Wellpinit,WA,99040 +Addy,WA,99101 +Almira,WA,99103 +Benge,WA,99105 +Boyds,WA,99107 +Chewelah,WA,99109 +Clayton,WA,99110 +Colfax,WA,99111 +Colton,WA,99113 +Colville,WA,99114 +Coulee City,WA,99115 +Coulee Dam,WA,99116 +Creston,WA,99117 +Curlew,WA,99118 +Cusick,WA,99119 +Danville,WA,99121 +Davenport,WA,99122 +Electric City,WA,99123 +Endicott,WA,99125 +Evans,WA,99126 +Farmington,WA,99128 +Fruitland,WA,99129 +Garfield,WA,99130 +Gifford,WA,99131 +Grand Coulee,WA,99133 +Harrington,WA,99134 +Hartline,WA,99135 +Hunters,WA,99137 +Inchelium,WA,99138 +Ione,WA,99139 +Keller,WA,99140 +Kettle Falls,WA,99141 +Lacrosse,WA,99143 +Lincoln,WA,99147 +Loon Lake,WA,99148 +Malo,WA,99150 +Metaline Falls,WA,99153 +Newport,WA,99156 +Northport,WA,99157 +Oakesdale,WA,99158 +Odessa,WA,99159 +Palouse,WA,99161 +Pullman,WA,99163 +Republic,WA,99166 +Rice,WA,99167 +Ritzville,WA,99169 +Rosalia,WA,99170 +Saint John,WA,99171 +Springdale,WA,99173 +Thornton,WA,99176 +Uniontown,WA,99179 +Usk,WA,99180 +Valley,WA,99181 +Wilbur,WA,99185 +Spokane,WA,99201 +Spokane,WA,99202 +Spokane,WA,99203 +Spokane,WA,99204 +Spokane,WA,99205 +Spokane,WA,99206 +Spokane,WA,99207 +Spokane,WA,99208 +Spokane,WA,99212 +Spokane,WA,99216 +Spokane,WA,99218 +Spokane,WA,99223 +Pasco,WA,99301 +Benton City,WA,99320 +Beverly,WA,99321 +Bickleton,WA,99322 +College Place,WA,99324 +Connell,WA,99326 +Cunningham,WA,99327 +Dayton,WA,99328 +Eltopia,WA,99330 +Kennewick,WA,99336 +Kennewick,WA,99337 +Lind,WA,99341 +Mesa,WA,99343 +Mattawa,WA,99344 +Paterson,WA,99345 +Plymouth,WA,99346 +Pomeroy,WA,99347 +Prescott,WA,99348 +Prosser,WA,99350 +Richland,WA,99352 +Roosevelt,WA,99356 +Royal City,WA,99357 +Lowden,WA,99360 +Waitsburg,WA,99361 +Walla Walla,WA,99362 +Washtucna,WA,99371 +Anatone,WA,99401 +Asotin,WA,99402 +Clarkston,WA,99403 +Bluewell,WV,24701 +Athens,WV,24712 +Beeson,WV,24714 +Bramwell,WV,24715 +Herndon,WV,24726 +Kegley,WV,24731 +Lashmeet,WV,24733 +Dott,WV,24736 +Elgood,WV,24740 +Duhring,WV,24747 +Welch,WV,24801 +Mc Dowell,WV,24810 +Brenton,WV,24818 +Vallscreek,WV,24819 +Clear Fork,WV,24822 +Coal Mountain,WV,24823 +Cyclone,WV,24827 +Asco,WV,24828 +Fanrock,WV,24834 +Hanover,WV,24839 +Iaeger,WV,24844 +Jesse,WV,24849 +Jolo,WV,24850 +Marianna,WV,24859 +Matheny,WV,24860 +Mohawk,WV,24862 +Algoma,WV,24868 +North Spring,WV,24869 +Oceana,WV,24870 +Paynesville,WV,24873 +Pineville,WV,24874 +Simon,WV,24882 +Squire,WV,24884 +Lewisburg,WV,24901 +Dawson,WV,24910 +Arbovale,WV,24915 +Asbury,WV,24916 +Auto,WV,24917 +Ballard,WV,24918 +Ballengee,WV,24919 +Bartow,WV,24920 +Bozoo,WV,24923 +Buckeye,WV,24924 +Caldwell,WV,24925 +Stony Bottom,WV,24927 +Clintonville,WV,24928 +Crawley,WV,24931 +Dunmore,WV,24934 +Indian Mills,WV,24935 +Fort Spring,WV,24936 +Anthony,WV,24938 +24939,WV,24939 +Gap Mills,WV,24941 +Glace,WV,24942 +Grassy Meadows,WV,24943 +Green Bank,WV,24944 +Greenville,WV,24945 +Droop,WV,24946 +Kieffer,WV,24950 +Lindside,WV,24951 +Minnehaha Spring,WV,24954 +Maxwelton,WV,24957 +Meadow Bluff,WV,24958 +Pence Springs,WV,24962 +Peterstown,WV,24963 +Renick,WV,24966 +Ronceverte,WV,24970 +Secondcreek,WV,24974 +Pickaway,WV,24976 +Smoot,WV,24977 +Sweet Springs,WV,24980 +Talcott,WV,24981 +Union,WV,24983 +Waiteville,WV,24984 +Wayside,WV,24985 +Neola,WV,24986 +Trout,WV,24991 +Wolfcreek,WV,24993 +Alum Creek,WV,25003 +Ameagle,WV,25004 +Amma,WV,25005 +Arnett,WV,25007 +Artie,WV,25008 +Ashford,WV,25009 +Bald Knob,WV,25010 +Barrett,WV,25013 +Diamond,WV,25015 +Bentree,WV,25018 +Fola,WV,25019 +Bim,WV,25021 +Bloomingrose,WV,25024 +Blount,WV,25025 +Bob White,WV,25028 +Bomont,WV,25030 +Buffalo,WV,25033 +Burnwell,WV,25034 +Cabin Creek,WV,25035 +Cedar Grove,WV,25039 +Clay,WV,25043 +Clear Creek,WV,25044 +Quick,WV,25045 +Clio,WV,25046 +Clothier,WV,25047 +Colcord,WV,25048 +Comfort,WV,25049 +Costa,WV,25051 +Danville,WV,25053 +Dixie,WV,25059 +Dorothy,WV,25060 +Dry Creek,WV,25062 +Duck,WV,25063 +Dunbar,WV,25064 +Frame,WV,25071 +Falling Rock,WV,25079 +Foster,WV,25081 +Fraziers Bottom,WV,25082 +Whittaker,WV,25083 +Gauley Bridge,WV,25085 +Glen,WV,25088 +Gordon,WV,25093 +Hansford,WV,25103 +Harrison,WV,25105 +Henderson,WV,25106 +Hernshaw,WV,25107 +Hewett,WV,25108 +Indore,WV,25111 +Big Otter,WV,25113 +Ramage,WV,25114 +Kanawha Falls,WV,25115 +Kimberly,WV,25118 +Kincaid,WV,25119 +Lake,WV,25121 +Carbon,WV,25122 +Arbuckle,WV,25123 +Liberty,WV,25124 +Lizemores,WV,25125 +Madison,WV,25130 +Mammoth,WV,25132 +Maysel,WV,25133 +Montgomery,WV,25136 +Mount Carbon,WV,25139 +Naoma,WV,25140 +Nebo,WV,25141 +Nellis,WV,25142 +Nitro,WV,25143 +Orgas,WV,25148 +Ovapa,WV,25150 +Peytona,WV,25154 +Pliny,WV,25158 +Lanham,WV,25159 +Pond Gap,WV,25160 +Powellton,WV,25161 +Williams Mountai,WV,25163 +Pigeon,WV,25164 +Racine,WV,25165 +Red House,WV,25168 +Ridgeview,WV,25169 +Robertsburg,WV,25172 +Robson,WV,25173 +Rock Creek,WV,25174 +Saint Albans,WV,25177 +Saxon,WV,25180 +Seth,WV,25181 +Southside,WV,25187 +Stickney,WV,25189 +Sylvester,WV,25193 +Tornado,WV,25202 +Turtle Creek,WV,25203 +Bandytown,WV,25204 +Van,WV,25206 +Garrison,WV,25209 +Winfield,WV,25213 +Winifrede,WV,25214 +Advent,WV,25231 +Arnoldsburg,WV,25234 +Floe,WV,25235 +Cottageville,WV,25239 +Evans,WV,25241 +25242,WV,25242 +Gandeeville,WV,25243 +Gay,WV,25244 +Given,WV,25245 +Harmony,WV,25246 +Romance,WV,25248 +Kentuck,WV,25249 +Left Hand,WV,25251 +Duncan,WV,25252 +Letart,WV,25253 +Letter Gap,WV,25255 +Linden,WV,25256 +Lockney,WV,25258 +Looneyville,WV,25259 +Mason,WV,25260 +Millstone,WV,25261 +Millwood,WV,25262 +Mount Alto,WV,25264 +Uler,WV,25266 +Normantown,WV,25267 +Minnora,WV,25268 +Reedy,WV,25270 +Ripley,WV,25271 +Rock Castle,WV,25272 +Sand Ridge,WV,25274 +Sandyville,WV,25275 +Spencer,WV,25276 +Statts Mills,WV,25279 +Stumptown,WV,25280 +Tariff,WV,25281 +Valley Fork,WV,25283 +Wallback,WV,25285 +Walton,WV,25286 +West Columbia,WV,25287 +Charleston,WV,25301 +Big Chimney,WV,25302 +South Charleston,WV,25303 +Charleston,WV,25304 +Malden,WV,25306 +South Charleston,WV,25309 +Charleston,WV,25311 +Charleston,WV,25312 +Cross Lanes,WV,25313 +Charleston,WV,25314 +Marmet,WV,25315 +Sissonville,WV,25320 +Martinsburg,WV,25401 +Hancock,WV,25411 +Bunker Hill,WV,25413 +Charles Town,WV,25414 +Falling Waters,WV,25419 +Gerrardstown,WV,25420 +Great Cacapon,WV,25422 +Harpers Ferry,WV,25425 +Cherry Run,WV,25427 +Inwood,WV,25428 +Kearneysville,WV,25430 +Levels,WV,25431 +Paw Paw,WV,25434 +Points,WV,25437 +Ranson,WV,25438 +Shenandoah Junct,WV,25442 +Shepherdstown,WV,25443 +Slanesville,WV,25444 +Summit Point,WV,25446 +Alkol,WV,25501 +Apple Grove,WV,25502 +Ashton,WV,25503 +Barboursville,WV,25504 +Big Creek,WV,25505 +Branchland,WV,25506 +Chapmanville,WV,25508 +Culloden,WV,25510 +Dunlow,WV,25511 +East Lynn,WV,25512 +Fort Gay,WV,25514 +Gallipolis Ferry,WV,25515 +Radnor,WV,25517 +Glenwood,WV,25520 +Griffithsville,WV,25521 +Hamlin,WV,25523 +Ferrellsburg,WV,25524 +Hurricane,WV,25526 +Julian,WV,25529 +Kenova,WV,25530 +Cove Gap,WV,25534 +Lavalette,WV,25535 +25536,WV,25536 +Lesage,WV,25537 +Midkiff,WV,25540 +Milton,WV,25541 +Myra,WV,25544 +Ona,WV,25545 +Palermo,WV,25546 +Pecks Mill,WV,25547 +Point Pleasant,WV,25550 +Prichard,WV,25555 +Ranger,WV,25557 +Salt Rock,WV,25559 +Scott Depot,WV,25560 +Sias,WV,25563 +Sod,WV,25564 +Morrisvale,WV,25565 +Sumerco,WV,25567 +Sweetland,WV,25568 +Wayne,WV,25570 +West Hamlin,WV,25571 +Woodville,WV,25572 +Yawkey,WV,25573 +West Logan,WV,25601 +Robinette,WV,25607 +Baisden,WV,25608 +Davin,WV,25617 +Gilbert,WV,25621 +Hampden,WV,25623 +Earling,WV,25632 +Hunt,WV,25635 +Barnabus,WV,25638 +Verner,WV,25650 +Wharncliffe,WV,25651 +Dehue,WV,25654 +Williamson,WV,25661 +Breeden,WV,25666 +Crum,WV,25669 +Myrtle,WV,25670 +Dingess,WV,25671 +Kermit,WV,25674 +Lenore,WV,25676 +Lobata,WV,25678 +Meador,WV,25682 +Thacker,WV,25694 +Wilsondale,WV,25699 +Huntington,WV,25701 +Huntington,WV,25702 +Huntington,WV,25703 +Huntington,WV,25704 +Huntington,WV,25705 +Beckley,WV,25801 +Amigo,WV,25811 +Ansted,WV,25812 +Beaver,WV,25813 +Bolt,WV,25817 +Camp Creek,WV,25820 +Cool Ridge,WV,25825 +Crab Orchard,WV,25827 +Clifftop,WV,25831 +Daniels,WV,25832 +Edmond,WV,25837 +Fairdale,WV,25839 +Cunard,WV,25840 +Flat Top,WV,25841 +Ghent,WV,25843 +Glen Daniel,WV,25844 +Glen Fork,WV,25845 +Sullivan,WV,25847 +Glen Rogers,WV,25848 +Hico,WV,25854 +Josephine,WV,25857 +Lansing,WV,25862 +Lawton,WV,25864 +Lester,WV,25865 +Lookout,WV,25868 +Maben,WV,25870 +Saulsville,WV,25876 +Mount Hope,WV,25880 +Mullens,WV,25882 +Harvey,WV,25901 +Odd,WV,25902 +Winding Gulf,WV,25908 +Ramsey,WV,25912 +Ravencliff,WV,25913 +East Gulf,WV,25915 +Scarbro,WV,25917 +Abraham,WV,25918 +Slab Fork,WV,25920 +Spanishburg,WV,25922 +Stephenson,WV,25928 +Surveyor,WV,25932 +Thurmond,WV,25936 +Victor,WV,25938 +Hinton,WV,25951 +Charmco,WV,25958 +Rainelle,WV,25962 +Elton,WV,25965 +Green Sulphur Sp,WV,25966 +Streeter,WV,25969 +Lerona,WV,25971 +Meadow Bridge,WV,25976 +Meadow Creek,WV,25977 +Nimitz,WV,25978 +Pipestem,WV,25979 +Marfrance,WV,25981 +Kessler,WV,25984 +Sandstone,WV,25985 +Spring Dale,WV,25986 +True,WV,25988 +White Oak,WV,25989 +Elm Grove,WV,26003 +Benwood,WV,26031 +Bethany,WV,26032 +Cameron,WV,26033 +Chester,WV,26034 +Colliers,WV,26035 +Dallas,WV,26036 +Follansbee,WV,26037 +Glen Dale,WV,26038 +Glen Easton,WV,26039 +Mc Mechen,WV,26040 +Moundsville,WV,26041 +New Cumberland,WV,26047 +Newell,WV,26050 +Proctor,WV,26055 +Triadelphia,WV,26059 +Valley Grove,WV,26060 +Weirton,WV,26062 +Wellsburg,WV,26070 +Parkersburg,WV,26101 +North Parkersbur,WV,26104 +Vienna,WV,26105 +Belleville,WV,26133 +Willow Island,WV,26134 +Bens Run,WV,26135 +Big Bend,WV,26136 +Nobe,WV,26137 +Brohard,WV,26138 +Creston,WV,26141 +Davisville,WV,26142 +Elizabeth,WV,26143 +Five Forks,WV,26145 +Friendly,WV,26146 +Grantsville,WV,26147 +Macfarlan,WV,26148 +Middlebourne,WV,26149 +Mineralwells,WV,26150 +Mount Zion,WV,26151 +Munday,WV,26152 +Murraysville,WV,26153 +New Martinsville,WV,26155 +Paden City,WV,26159 +Palestine,WV,26160 +Petroleum,WV,26161 +Ravenswood,WV,26164 +Reader,WV,26167 +Rockport,WV,26169 +Saint Marys,WV,26170 +Sherman,WV,26173 +Sistersville,WV,26175 +Smithville,WV,26178 +Tanner,WV,26179 +Walker,WV,26180 +New England,WV,26181 +Waverly,WV,26184 +Wick,WV,26185 +Wileyville,WV,26186 +Williamstown,WV,26187 +Tennerton,WV,26201 +Fenwick,WV,26202 +Erbacon,WV,26203 +Craigsville,WV,26205 +Cowen,WV,26206 +Gauley Mills,WV,26208 +Adrian,WV,26210 +Century,WV,26214 +Cleveland,WV,26215 +Diana,WV,26217 +Alexander,WV,26218 +Replete,WV,26222 +Helvetia,WV,26224 +Kanawha Head,WV,26228 +Pickens,WV,26230 +Rock Cave,WV,26234 +Selbyville,WV,26236 +Tallmansville,WV,26237 +Volga,WV,26238 +Elkins,WV,26241 +Belington,WV,26250 +Beverly,WV,26253 +Wymer,WV,26254 +Coalton,WV,26257 +Davis,WV,26260 +Richwood,WV,26261 +Dryfork,WV,26263 +Durbin,WV,26264 +Upperglade,WV,26266 +Ellamore,WV,26267 +Glady,WV,26268 +Hambleton,WV,26269 +Harman,WV,26270 +Hendricks,WV,26271 +Huttonsville,WV,26273 +Kerens,WV,26276 +Mabie,WV,26278 +Mill Creek,WV,26280 +Monterville,WV,26282 +Montrose,WV,26283 +Parsons,WV,26287 +Bolair,WV,26288 +Red Creek,WV,26289 +Slatyfork,WV,26291 +Thomas,WV,26292 +Valley Bend,WV,26293 +Mingo,WV,26294 +Job,WV,26296 +Boggs,WV,26299 +Nutter Fort Ston,WV,26301 +Wilbur,WV,26320 +Alum Bridge,WV,26321 +Alvy,WV,26322 +Auburn,WV,26325 +Berea,WV,26327 +Blandville,WV,26328 +Bridgeport,WV,26330 +Bristol,WV,26332 +Gem,WV,26335 +Cairo,WV,26337 +Camden,WV,26338 +Center Point,WV,26339 +Coxs Mills,WV,26342 +Crawford,WV,26343 +Highland,WV,26346 +Wendel,WV,26347 +Folsom,WV,26348 +Baldwin,WV,26351 +Grafton,WV,26354 +Greenwood,WV,26360 +Mahone,WV,26362 +Hazelgreen,WV,26367 +Horner,WV,26372 +Independence,WV,26374 +Wildcat,WV,26376 +Jacksonburg,WV,26377 +Jane Lew,WV,26378 +Lima,WV,26383 +Linn,WV,26384 +Lost Creek,WV,26385 +Lumberport,WV,26386 +Meadowbrook,WV,26404 +Kasson,WV,26405 +Mount Clare,WV,26408 +Newberne,WV,26409 +Newburg,WV,26410 +New Milton,WV,26411 +Orlando,WV,26412 +Toll Gate,WV,26415 +Broaddus,WV,26416 +Hastings,WV,26419 +Pullman,WV,26421 +Roanoke,WV,26423 +Manheim,WV,26425 +Salem,WV,26426 +Shinnston,WV,26431 +Smithfield,WV,26437 +Stouts Mills,WV,26439 +Thornton,WV,26440 +Troy,WV,26443 +Tunnelton,WV,26444 +Walkersville,WV,26447 +Wallace,WV,26448 +West Milford,WV,26451 +Weston,WV,26452 +West Union,WV,26456 +Wolf Summit,WV,26462 +Star City,WV,26505 +Albright,WV,26519 +Blacksville,WV,26521 +Bruceton Mills,WV,26525 +Core,WV,26529 +Kingwood,WV,26537 +Maidsville,WV,26541 +Cascade,WV,26542 +Pursglove,WV,26546 +Reedsville,WV,26547 +Monongah,WV,26554 +Baxter,WV,26560 +Big Run,WV,26561 +Coburn,WV,26562 +Enterprise,WV,26568 +Fairview,WV,26570 +Farmington,WV,26571 +Hundred,WV,26575 +Littleton,WV,26581 +Mannington,WV,26582 +Metz,WV,26585 +Rachel,WV,26587 +Rivesville,WV,26588 +Wadestown,WV,26589 +Wana,WV,26590 +Worthington,WV,26591 +Herold,WV,26601 +Birch River,WV,26610 +Flower,WV,26611 +Copen,WV,26615 +Dille,WV,26617 +Elmira,WV,26618 +Riffle,WV,26619 +Falls Mill,WV,26620 +Corley,WV,26621 +Clem,WV,26623 +Gassaway,WV,26624 +Glendon,WV,26626 +Heaters,WV,26627 +Tesla,WV,26629 +Napier,WV,26631 +Nicut,WV,26633 +Perkins,WV,26634 +Rosedale,WV,26636 +Shock,WV,26638 +Strange Creek,WV,26639 +Wilsie,WV,26641 +Summersville,WV,26651 +Belva,WV,26656 +Calvin,WV,26660 +Canvas,WV,26662 +Drennen,WV,26667 +Gilboa,WV,26671 +Jodie,WV,26674 +Keslers Cross La,WV,26675 +Leivasy,WV,26676 +Mount Lookout,WV,26678 +Runa,WV,26679 +Russelville,WV,26680 +Nettie,WV,26681 +Poe,WV,26683 +Pool,WV,26684 +Swiss,WV,26690 +Tioga,WV,26691 +Augusta,WV,26704 +Amboy,WV,26705 +Burlington,WV,26710 +Capon Bridge,WV,26711 +Corinth,WV,26713 +Delray,WV,26714 +Eglon,WV,26716 +Elk Garden,WV,26717 +Fort Ashby,WV,26719 +Gormania,WV,26720 +Green Spring,WV,26722 +Scherr,WV,26726 +Kirby,WV,26729 +Lahmansville,WV,26731 +Medley,WV,26734 +Mount Storm,WV,26739 +New Creek,WV,26743 +Piedmont,WV,26750 +Patterson Creek,WV,26753 +Rio,WV,26755 +Romney,WV,26757 +Shanks,WV,26761 +Springfield,WV,26763 +Hopemont,WV,26764 +Three Churches,WV,26765 +Wiley Ford,WV,26767 +Horse Shoe Run,WV,26769 +Baker,WV,26801 +Brandywine,WV,26802 +Circleville,WV,26804 +Fort Seybert,WV,26806 +Franklin,WV,26807 +High View,WV,26808 +Lost City,WV,26810 +Lost River,WV,26811 +Mathias,WV,26812 +Moyers,WV,26813 +Riverton,WV,26814 +Sugar Grove,WV,26815 +Arthur,WV,26816 +Bloomery,WV,26817 +Fisher,WV,26818 +Junction,WV,26824 +Maysville,WV,26833 +Rig,WV,26836 +Milam,WV,26838 +Old Fields,WV,26845 +Dorcas,WV,26847 +Wardensville,WV,26851 +Purgitsville,WV,26852 +Cabins,WV,26855 +Lehew,WV,26865 +Upper Tract,WV,26866 +Seneca Rocks,WV,26884 +Onego,WV,26886 +Adell,WI,53001 +Allenton,WI,53002 +Belgium,WI,53004 +Brookfield,WI,53005 +South Byron,WI,53006 +Butler,WI,53007 +Campbellsport,WI,53010 +Cascade,WI,53011 +Cedarburg,WI,53012 +Cedar Grove,WI,53013 +Chilton,WI,53014 +Cleveland,WI,53015 +Colgate,WI,53017 +Delafield,WI,53018 +Eden,WI,53019 +Elkhart Lake,WI,53020 +Waubeka,WI,53021 +Germantown,WI,53022 +Glenbeulah,WI,53023 +Grafton,WI,53024 +Hartford,WI,53027 +Hartland,WI,53029 +Horicon,WI,53032 +Hubertus,WI,53033 +Iron Ridge,WI,53035 +Ixonia,WI,53036 +Jackson,WI,53037 +Johnson Creek,WI,53038 +Juneau,WI,53039 +Kewaskum,WI,53040 +Kiel,WI,53042 +Kohler,WI,53044 +Brookfield,WI,53045 +Lannon,WI,53046 +Knowles,WI,53048 +Malone,WI,53049 +Mayville,WI,53050 +Menomonee Falls,WI,53051 +Mount Calvary,WI,53057 +Nashotah,WI,53058 +Neosho,WI,53059 +New Holstein,WI,53061 +Newton,WI,53063 +Oakfield,WI,53065 +Oconomowoc,WI,53066 +Okauchee,WI,53069 +Oostburg,WI,53070 +Pewaukee,WI,53072 +Plymouth,WI,53073 +Port Washington,WI,53074 +Random Lake,WI,53075 +Richfield,WI,53076 +Rubicon,WI,53078 +Saint Cloud,WI,53079 +Saukville,WI,53080 +Sheboygan,WI,53081 +Howards Grove,WI,53083 +Sheboygan Falls,WI,53085 +Slinger,WI,53086 +Sussex,WI,53089 +Theresa,WI,53091 +Mequon,WI,53092 +Waldo,WI,53093 +Watertown,WI,53094 +West Bend,WI,53095 +Big Bend,WI,53103 +Bristol,WI,53104 +Burlington,WI,53105 +Caledonia,WI,53108 +Cudahy,WI,53110 +Darien,WI,53114 +Delavan,WI,53115 +Dousman,WI,53118 +Eagle,WI,53119 +East Troy,WI,53120 +Elkhorn,WI,53121 +Elm Grove,WI,53122 +Fontana,WI,53125 +Franksville,WI,53126 +Genoa City,WI,53128 +Greendale,WI,53129 +Hales Corners,WI,53130 +Franklin,WI,53132 +Helenville,WI,53137 +Kansasville,WI,53139 +Kenosha,WI,53140 +Kenosha,WI,53142 +Kenosha,WI,53143 +Kenosha,WI,53144 +New Berlin,WI,53146 +Lake Geneva,WI,53147 +Mukwonago,WI,53149 +Muskego,WI,53150 +New Berlin,WI,53151 +North Prairie,WI,53153 +Oak Creek,WI,53154 +Palmyra,WI,53156 +Salem,WI,53168 +South Milwaukee,WI,53172 +Sturtevant,WI,53177 +Sullivan,WI,53178 +Trevor,WI,53179 +Twin Lakes,WI,53181 +Union Grove,WI,53182 +Wales,WI,53183 +Walworth,WI,53184 +Wind Lake,WI,53185 +Waukesha,WI,53186 +Waukesha,WI,53188 +Whitewater,WI,53190 +Williams Bay,WI,53191 +Milwaukee,WI,53202 +Milwaukee,WI,53203 +Milwaukee,WI,53204 +Milwaukee,WI,53205 +Milwaukee,WI,53206 +Bay View,WI,53207 +Milwaukee,WI,53208 +Milwaukee,WI,53209 +Milwaukee,WI,53210 +Shorewood,WI,53211 +Milwaukee,WI,53212 +Wauwatosa,WI,53213 +West Allis,WI,53214 +West Milwaukee,WI,53215 +Milwaukee,WI,53216 +Milwaukee,WI,53217 +Milwaukee,WI,53218 +Milwaukee,WI,53219 +Greenfield,WI,53220 +Milwaukee,WI,53221 +Milwaukee,WI,53222 +Milwaukee,WI,53223 +Milwaukee,WI,53224 +Milwaukee,WI,53225 +Wauwatosa,WI,53226 +Milwaukee,WI,53227 +Greenfield,WI,53228 +Milwaukee,WI,53233 +Racine,WI,53402 +Racine,WI,53403 +Racine,WI,53404 +Racine,WI,53405 +Racine,WI,53406 +Albany,WI,53502 +Arena,WI,53503 +Argyle,WI,53504 +Avalon,WI,53505 +Avoca,WI,53506 +Barneveld,WI,53507 +Belleville,WI,53508 +Belmont,WI,53510 +Shopiere,WI,53511 +Black Earth,WI,53515 +Blanchardville,WI,53516 +Blue Mounds,WI,53517 +Blue River,WI,53518 +Brodhead,WI,53520 +Brooklyn,WI,53521 +Browntown,WI,53522 +Cambridge,WI,53523 +Clinton,WI,53525 +Cobb,WI,53526 +Cottage Grove,WI,53527 +Cross Plains,WI,53528 +Dane,WI,53529 +Darlington,WI,53530 +Deerfield,WI,53531 +De Forest,WI,53532 +Dodgeville,WI,53533 +Edgerton,WI,53534 +Evansville,WI,53536 +Fort Atkinson,WI,53538 +Gratiot,WI,53541 +Highland,WI,53543 +Hollandale,WI,53544 +Janesville,WI,53545 +Janesville,WI,53546 +Jefferson,WI,53549 +Juda,WI,53550 +Lake Mills,WI,53551 +Linden,WI,53553 +Livingston,WI,53554 +Lodi,WI,53555 +Lone Rock,WI,53556 +Lowell,WI,53557 +Mc Farland,WI,53558 +Marshall,WI,53559 +Mazomanie,WI,53560 +Merrimac,WI,53561 +Middleton,WI,53562 +Milton,WI,53563 +Mineral Point,WI,53565 +Monroe,WI,53566 +Montfort,WI,53569 +Monticello,WI,53570 +Mount Horeb,WI,53572 +Muscoda,WI,53573 +New Glarus,WI,53574 +Oregon,WI,53575 +Orfordville,WI,53576 +Plain,WI,53577 +Prairie Du Sac,WI,53578 +Reeseville,WI,53579 +Rewey,WI,53580 +Gillingham,WI,53581 +Ridgeway,WI,53582 +Sauk City,WI,53583 +Sharon,WI,53585 +Shullsburg,WI,53586 +South Wayne,WI,53587 +Spring Green,WI,53588 +Stoughton,WI,53589 +Sun Prairie,WI,53590 +Verona,WI,53593 +Waterloo,WI,53594 +Waunakee,WI,53597 +Windsor,WI,53598 +Madison,WI,53703 +Madison,WI,53704 +Madison,WI,53705 +Madison,WI,53706 +Madison,WI,53711 +Fitchburg,WI,53713 +Madison,WI,53714 +Madison,WI,53715 +Monona,WI,53716 +Madison,WI,53717 +Madison,WI,53718 +Madison,WI,53719 +Bagley,WI,53801 +Benton,WI,53803 +Bloomington,WI,53804 +Boscobel,WI,53805 +Cassville,WI,53806 +Cuba City,WI,53807 +Fennimore,WI,53809 +Glen Haven,WI,53810 +Hazel Green,WI,53811 +Lancaster,WI,53813 +Mount Hope,WI,53816 +Platteville,WI,53818 +Potosi,WI,53820 +Prairie Du Chien,WI,53821 +Stitzer,WI,53825 +Wauzeka,WI,53826 +Woodman,WI,53827 +Portage,WI,53901 +Adams,WI,53910 +Arlington,WI,53911 +Baraboo,WI,53913 +Beaver Dam,WI,53916 +Brandon,WI,53919 +Briggsville,WI,53920 +Burnett,WI,53922 +Cambria,WI,53923 +Cazenovia,WI,53924 +Columbus,WI,53925 +Dalton,WI,53926 +Elroy,WI,53929 +Endeavor,WI,53930 +Fall River,WI,53932 +Fox Lake,WI,53933 +Friendship,WI,53934 +Grand Marsh,WI,53936 +Hillpoint,WI,53937 +Kingston,WI,53939 +La Valle,WI,53941 +Loganville,WI,53943 +Lyndon Station,WI,53944 +Markesan,WI,53946 +Marquette,WI,53947 +Mauston,WI,53948 +Montello,WI,53949 +New Lisbon,WI,53950 +North Freedom,WI,53951 +Oxford,WI,53952 +Pardeeville,WI,53954 +Poynette,WI,53955 +Randolph,WI,53956 +Reedsburg,WI,53959 +Rio,WI,53960 +Rock Springs,WI,53961 +Waupun,WI,53963 +Westfield,WI,53964 +Wisconsin Dells,WI,53965 +Wonewoc,WI,53968 +Deronda,WI,54001 +Baldwin,WI,54002 +Beldenville,WI,54003 +Clayton,WI,54004 +Clear Lake,WI,54005 +Cushing,WI,54006 +Deer Park,WI,54007 +Dresser,WI,54009 +Ellsworth,WI,54011 +Emerald,WI,54012 +Glenwood City,WI,54013 +Hager City,WI,54014 +Hammond,WI,54015 +Hudson,WI,54016 +New Richmond,WI,54017 +Osceola,WI,54020 +Prescott,WI,54021 +River Falls,WI,54022 +Roberts,WI,54023 +Saint Croix Fall,WI,54024 +Somerset,WI,54025 +Star Prairie,WI,54026 +Wilson,WI,54027 +Woodville,WI,54028 +Saint Joseph,WI,54082 +Abrams,WI,54101 +Amberg,WI,54102 +Armstrong Creek,WI,54103 +Athelstane,WI,54104 +Center Valley,WI,54106 +Navarino,WI,54107 +Brillion,WI,54110 +Cecil,WI,54111 +Coleman,WI,54112 +Combined Locks,WI,54113 +Beaver,WI,54114 +De Pere,WI,54115 +Dunbar,WI,54119 +Fence,WI,54120 +Florence,WI,54121 +Forest Junction,WI,54123 +Gillett,WI,54124 +Goodman,WI,54125 +Greenleaf,WI,54126 +Gresham,WI,54128 +Hilbert,WI,54129 +Kaukauna,WI,54130 +Keshena,WI,54135 +Kimberly,WI,54136 +Krakow,WI,54137 +Lakewood,WI,54138 +Stiles,WI,54139 +Little Chute,WI,54140 +Little Suamico,WI,54141 +Marinette,WI,54143 +Mountain,WI,54149 +Neopit,WI,54150 +Niagara,WI,54151 +Oconto,WI,54153 +Oconto Falls,WI,54154 +Oneida,WI,54155 +Pembine,WI,54156 +Peshtigo,WI,54157 +Porterfield,WI,54159 +Pound,WI,54161 +Pulaski,WI,54162 +Seymour,WI,54165 +Shawano,WI,54166 +Shiocton,WI,54170 +Sobieski,WI,54171 +Suring,WI,54174 +Townsend,WI,54175 +Underhill,WI,54176 +Wausaukee,WI,54177 +Wrightstown,WI,54180 +Algoma,WI,54201 +Baileys Harbor,WI,54202 +Brussels,WI,54204 +Casco,WI,54205 +Cato,WI,54206 +Denmark,WI,54208 +Egg Harbor,WI,54209 +Ellison Bay,WI,54210 +Fish Creek,WI,54212 +Forestville,WI,54213 +Francis Creek,WI,54214 +Kellnersville,WI,54215 +Kewaunee,WI,54216 +Luxemburg,WI,54217 +Manitowoc,WI,54220 +Maribel,WI,54227 +Mishicot,WI,54228 +New Franken,WI,54229 +Reedsville,WI,54230 +Saint Nazianz,WI,54232 +Sister Bay,WI,54234 +Sturgeon Bay,WI,54235 +Two Rivers,WI,54241 +Valders,WI,54245 +Washington Islan,WI,54246 +Whitelaw,WI,54247 +Allouez,WI,54301 +Green Bay,WI,54302 +Howard,WI,54303 +Ashwaubenon,WI,54304 +Green Bay,WI,54311 +Green Bay,WI,54313 +Wausau,WI,54401 +Abbotsford,WI,54405 +Amherst,WI,54406 +Amherst Junction,WI,54407 +Aniwa,WI,54408 +Antigo,WI,54409 +Arpin,WI,54410 +Hamburg,WI,54411 +Auburndale,WI,54412 +Babcock,WI,54413 +Birnamwood,WI,54414 +Bowler,WI,54416 +Bryant,WI,54418 +Chelsea,WI,54419 +Chili,WI,54420 +Colby,WI,54421 +Curtiss,WI,54422 +Custer,WI,54423 +Deerbrook,WI,54424 +Dorchester,WI,54425 +Fenwood,WI,54426 +Eland,WI,54427 +Elcho,WI,54428 +Elton,WI,54430 +Gilman,WI,54433 +Gleason,WI,54435 +Granton,WI,54436 +Greenwood,WI,54437 +Hatley,WI,54440 +Hewitt,WI,54441 +Irma,WI,54442 +Junction City,WI,54443 +Lily,WI,54445 +Loyal,WI,54446 +Lublin,WI,54447 +Marathon,WI,54448 +Marshfield,WI,54449 +Medford,WI,54451 +Merrill,WI,54452 +Milladore,WI,54454 +Mosinee,WI,54455 +Neillsville,WI,54456 +Nekoosa,WI,54457 +Ogema,WI,54459 +Owen,WI,54460 +Pearson,WI,54462 +Pelican Lake,WI,54463 +Pickerel,WI,54465 +Pittsville,WI,54466 +Plover,WI,54467 +Port Edwards,WI,54469 +Rib Lake,WI,54470 +Ringle,WI,54471 +Rosholt,WI,54473 +Rothschild,WI,54474 +Rudolph,WI,54475 +Schofield,WI,54476 +Spencer,WI,54479 +Stetsonville,WI,54480 +Stevens Point,WI,54481 +Stratford,WI,54484 +Summit Lake,WI,54485 +Tigerton,WI,54486 +Tomahawk,WI,54487 +Unity,WI,54488 +Vesper,WI,54489 +Westboro,WI,54490 +White Lake,WI,54491 +Willard,WI,54493 +Wisconsin Rapids,WI,54494 +Withee,WI,54498 +Wittenberg,WI,54499 +Monico,WI,54501 +Cavour,WI,54511 +Boulder Junction,WI,54512 +Brantwood,WI,54513 +Butternut,WI,54514 +Catawba,WI,54515 +Clam Lake,WI,54517 +Conover,WI,54519 +Crandon,WI,54520 +Eagle River,WI,54521 +Fifield,WI,54524 +Ingram,WI,54526 +Glidden,WI,54527 +Harshaw,WI,54529 +Hawkins,WI,54530 +Hazelhurst,WI,54531 +Hurley,WI,54534 +Iron Belt,WI,54536 +Kennan,WI,54537 +Lac Du Flambeau,WI,54538 +Lake Tomahawk,WI,54539 +Land O Lakes,WI,54540 +Laona,WI,54541 +Alvin,WI,54542 +Manitowish Water,WI,54545 +Mellen,WI,54546 +Mercer,WI,54547 +Minocqua,WI,54548 +Pence,WI,54550 +Park Falls,WI,54552 +Phelps,WI,54554 +Phillips,WI,54555 +Prentice,WI,54556 +Winchester,WI,54557 +Saint Germain,WI,54558 +Saxon,WI,54559 +Sayner,WI,54560 +Three Lakes,WI,54562 +Tony,WI,54563 +Tripoli,WI,54564 +Upson,WI,54565 +Wabeno,WI,54566 +Woodruff,WI,54568 +La Crosse,WI,54601 +La Crosse,WI,54603 +Alma,WI,54610 +Alma Center,WI,54611 +Arcadia,WI,54612 +Arkdale,WI,54613 +Bangor,WI,54614 +Black River Fall,WI,54615 +Blair,WI,54616 +Bloom City,WI,54617 +Cutler,WI,54618 +Cashton,WI,54619 +Chaseburg,WI,54621 +Waumandee,WI,54622 +Coon Valley,WI,54623 +Victory,WI,54624 +Dodge,WI,54625 +Eastman,WI,54626 +Ettrick,WI,54627 +Ferryville,WI,54628 +Fountain City,WI,54629 +Galesville,WI,54630 +Gays Mills,WI,54631 +Genoa,WI,54632 +Yuba,WI,54634 +Northfield,WI,54635 +Holmen,WI,54636 +Kendall,WI,54638 +West Lima,WI,54639 +Mather,WI,54641 +Melrose,WI,54642 +Mindoro,WI,54644 +Necedah,WI,54646 +Norwalk,WI,54648 +Onalaska,WI,54650 +Ontario,WI,54651 +Readstown,WI,54652 +Rockland,WI,54653 +Soldiers Grove,WI,54655 +Sparta,WI,54656 +Steuben,WI,54657 +Stoddard,WI,54658 +Taylor,WI,54659 +Wyeville,WI,54660 +Trempealeau,WI,54661 +Viola,WI,54664 +Viroqua,WI,54665 +Warrens,WI,54666 +Westby,WI,54667 +West Salem,WI,54669 +Wilton,WI,54670 +Eau Claire,WI,54701 +Eau Claire,WI,54703 +Altoona,WI,54720 +Arkansaw,WI,54721 +Augusta,WI,54722 +Bay City,WI,54723 +Bloomer,WI,54724 +Boyceville,WI,54725 +Boyd,WI,54726 +Cadott,WI,54727 +Chetek,WI,54728 +Chippewa Falls,WI,54729 +Colfax,WI,54730 +Conrath,WI,54731 +Cornell,WI,54732 +Dallas,WI,54733 +Downing,WI,54734 +Durand,WI,54736 +Eau Galle,WI,54737 +Eleva,WI,54738 +Elk Mound,WI,54739 +Elmwood,WI,54740 +Fairchild,WI,54741 +Fall Creek,WI,54742 +Hillsdale,WI,54744 +Holcombe,WI,54745 +Humbird,WI,54746 +Independence,WI,54747 +Jim Falls,WI,54748 +Knapp,WI,54749 +Maiden Rock,WI,54750 +Menomonie,WI,54751 +Merrillan,WI,54754 +Modena,WI,54755 +Nelson,WI,54756 +New Auburn,WI,54757 +Osseo,WI,54758 +Pepin,WI,54759 +Plum City,WI,54761 +Prairie Farm,WI,54762 +Ridgeland,WI,54763 +Sand Creek,WI,54765 +Sheldon,WI,54766 +Spring Valley,WI,54767 +Stanley,WI,54768 +Stockholm,WI,54769 +Strum,WI,54770 +Thorp,WI,54771 +Wheeler,WI,54772 +Whitehall,WI,54773 +Spooner,WI,54801 +Almena,WI,54805 +Moquah,WI,54806 +Balsam Lake,WI,54810 +Barron,WI,54812 +Barronett,WI,54813 +Bayfield,WI,54814 +Birchwood,WI,54817 +Bruce,WI,54819 +Brule,WI,54820 +Cable,WI,54821 +Cameron,WI,54822 +Centuria,WI,54824 +Comstock,WI,54826 +Cornucopia,WI,54827 +New Post,WI,54828 +Cumberland,WI,54829 +Dairyland,WI,54830 +Drummond,WI,54832 +Exeland,WI,54835 +Foxboro,WI,54836 +Clam Falls,WI,54837 +Gordon,WI,54838 +Grand View,WI,54839 +Evergreen,WI,54840 +North Woods Beac,WI,54843 +Herbster,WI,54844 +Hertel,WI,54845 +High Bridge,WI,54846 +Iron River,WI,54847 +Ladysmith,WI,54848 +Lake Nebagamon,WI,54849 +La Pointe,WI,54850 +Luck,WI,54853 +Maple,WI,54854 +Marengo,WI,54855 +Delta,WI,54856 +Milltown,WI,54858 +Minong,WI,54859 +Ojibwa,WI,54862 +Poplar,WI,54864 +Port Wing,WI,54865 +Radisson,WI,54867 +Canton,WI,54868 +Sarona,WI,54870 +Shell Lake,WI,54871 +Siren,WI,54872 +Barnes,WI,54873 +Wentworth,WI,54874 +Earl,WI,54875 +Stone Lake,WI,54876 +Superior,WI,54880 +Trego,WI,54888 +Turtle Lake,WI,54889 +Washburn,WI,54891 +Webster,WI,54893 +Weyerhaeuser,WI,54895 +Loretta,WI,54896 +Oshkosh,WI,54901 +Oshkosh,WI,54904 +Almond,WI,54909 +Appleton,WI,54911 +Appleton,WI,54914 +Appleton,WI,54915 +Bancroft,WI,54921 +Bear Creek,WI,54922 +Berlin,WI,54923 +Caroline,WI,54928 +Clintonville,WI,54929 +Coloma,WI,54930 +Eldorado,WI,54932 +Taycheedah,WI,54935 +North Fond Du La,WI,54937 +Fremont,WI,54940 +Green Lake,WI,54941 +Greenville,WI,54942 +Hancock,WI,54943 +Hortonville,WI,54944 +Iola,WI,54945 +King,WI,54946 +Larsen,WI,54947 +Leopolis,WI,54948 +Manawa,WI,54949 +Marion,WI,54950 +Menasha,WI,54952 +Neenah,WI,54956 +Neshkoro,WI,54960 +New London,WI,54961 +Ogdensburg,WI,54962 +Omro,WI,54963 +Pickett,WI,54964 +Pine River,WI,54965 +Plainfield,WI,54966 +Poy Sippi,WI,54967 +Princeton,WI,54968 +Redgranite,WI,54970 +Ripon,WI,54971 +Rosendale,WI,54974 +Scandinavia,WI,54977 +Tilleda,WI,54978 +Van Dyne,WI,54979 +Waupaca,WI,54981 +Wautoma,WI,54982 +Weyauwega,WI,54983 +Wild Rose,WI,54984 +Winneconne,WI,54986 +Cheyenne,WY,82001 +Cheyenne,WY,82007 +Cheyenne,WY,82009 +Albin,WY,82050 +Laramie,WY,82051 +Buford,WY,82052 +Burns,WY,82053 +Carpenter,WY,82054 +Centennial,WY,82055 +82057,WY,82057 +Garrett,WY,82058 +Jelm,WY,82063 +Laramie,WY,82070 +Mc Fadden,WY,82080 +Meriden,WY,82081 +Pine Bluffs,WY,82082 +Rock River,WY,82083 +Tie Siding,WY,82084 +Fishing Bridge,WY,82190 +Wheatland,WY,82201 +Chugwater,WY,82210 +Fort Laramie,WY,82212 +Glendo,WY,82213 +Guernsey,WY,82214 +Hartville,WY,82215 +Hawk Springs,WY,82217 +Jay Em,WY,82219 +Keeline,WY,82220 +Lagrange,WY,82221 +Lance Creek,WY,82222 +Lingle,WY,82223 +Lost Springs,WY,82224 +Lusk,WY,82225 +Shawnee,WY,82229 +Torrington,WY,82240 +Van Tassell,WY,82242 +Veteran,WY,82243 +Yoder,WY,82244 +Rawlins,WY,82301 +Jeffrey City,WY,82310 +Baggs,WY,82321 +Bairoil,WY,82322 +Dixon,WY,82323 +Encampment,WY,82325 +Hanna,WY,82327 +Medicine Bow,WY,82329 +Ryan Park,WY,82331 +Savery,WY,82332 +Sinclair,WY,82334 +Wamsutter,WY,82336 +Worland,WY,82401 +Basin,WY,82410 +Burlington,WY,82411 +Cody,WY,82414 +Deaver,WY,82421 +Greybull,WY,82426 +Hyattville,WY,82428 +Lovell,WY,82431 +Manderson,WY,82432 +Meeteetse,WY,82433 +Otto,WY,82434 +Powell,WY,82435 +Shell,WY,82441 +Ten Sleep,WY,82442 +Grass Creek,WY,82443 +Wapiti,WY,82450 +Gas Hills,WY,82501 +Arapahoe,WY,82510 +Crowheart,WY,82512 +Dubois,WY,82513 +Fort Washakie,WY,82514 +Kinnear,WY,82516 +Ethete,WY,82520 +Pavillion,WY,82523 +Casper,WY,82601 +Casper,WY,82604 +Casper,WY,82609 +Alcova,WY,82620 +Arminto,WY,82630 +Douglas,WY,82633 +Evansville,WY,82636 +Glenrock,WY,82637 +Kaycee,WY,82639 +Lysite,WY,82642 +Midwest,WY,82643 +Shoshoni,WY,82649 +Newcastle,WY,82701 +Aladdin,WY,82710 +Beulah,WY,82712 +Devils Tower,WY,82714 +Four Corners,WY,82715 +Gillette,WY,82716 +Hulett,WY,82720 +Pine Haven,WY,82721 +Osage,WY,82723 +Oshoto,WY,82724 +Recluse,WY,82725 +Rozet,WY,82727 +Sundance,WY,82729 +Upton,WY,82730 +Gillette,WY,82731 +Wright,WY,82732 +Sheridan,WY,82801 +Arvada,WY,82831 +Banner,WY,82832 +Buffalo,WY,82834 +Clearmont,WY,82835 +Dayton,WY,82836 +Parkman,WY,82838 +Acme,WY,82839 +Story,WY,82842 +Ranchester,WY,82844 +Rock Springs,WY,82901 +Bondurant,WY,82922 +Boulder,WY,82923 +Cora,WY,82925 +Evanston,WY,82930 +Fort Bridger,WY,82933 +Green River,WY,82935 +Lonetree,WY,82936 +Lyman,WY,82937 +Mc Kinnon,WY,82938 +Pinedale,WY,82941 +Colter Bay,WY,83001 +Kelly,WY,83011 +Moose,WY,83012 +Moran,WY,83013 +Wilson,WY,83014 +Kemmerer,WY,83101 +Afton,WY,83110 +Auburn,WY,83111 +Bedford,WY,83112 +Marbleton,WY,83113 +Cokeville,WY,83114 +Daniel,WY,83115 +Etna,WY,83118 +Freedom,WY,83120 +Grover,WY,83122 +La Barge,WY,83123 +Smoot,WY,83126 +Thayne,WY,83127 \ No newline at end of file diff --git a/splunk_eventgen/samples/dist.all.last b/splunk_eventgen/samples/dist.all.last new file mode 100644 index 00000000..75a994c1 --- /dev/null +++ b/splunk_eventgen/samples/dist.all.last @@ -0,0 +1,88799 @@ +smith +johnson +williams +jones +brown +davis +miller +wilson +moore +taylor +anderson +thomas +jackson +white +harris +martin +thompson +garcia +martinez +robinson +clark +rodriguez +lewis +lee +walker +hall +allen +young +hernandez +king +wright +lopez +hill +scott +green +adams +baker +gonzalez +nelson +carter +mitchell +perez +roberts +turner +phillips +campbell +parker +evans +edwards +collins +stewart +sanchez +morris +rogers +reed +cook +morgan +bell +murphy +bailey +rivera +cooper +richardson +cox +howard +ward +torres +peterson +gray +ramirez +james +watson +brooks +kelly +sanders +price +bennett +wood +barnes +ross +henderson +coleman +jenkins +perry +powell +long +patterson +hughes +flores +washington +butler +simmons +foster +gonzales +bryant +alexander +russell +griffin +diaz +hayes +myers +ford +hamilton +graham +sullivan +wallace +woods +cole +west +jordan +owens +reynolds +fisher +ellis +harrison +gibson +mcdonald +cruz +marshall +ortiz +gomez +murray +freeman +wells +webb +simpson +stevens +tucker +porter +hunter +hicks +crawford +henry +boyd +mason +morales +kennedy +warren +dixon +ramos +reyes +burns +gordon +shaw +holmes +rice +robertson +hunt +black +daniels +palmer +mills +nichols +grant +knight +ferguson +rose +stone +hawkins +dunn +perkins +hudson +spencer +gardner +stephens +payne +pierce +berry +matthews +arnold +wagner +willis +ray +watkins +olson +carroll +duncan +snyder +hart +cunningham +bradley +lane +andrews +ruiz +harper +fox +riley +armstrong +carpenter +weaver +greene +lawrence +elliott +chavez +sims +austin +peters +kelley +franklin +lawson +fields +gutierrez +ryan +schmidt +carr +vasquez +castillo +wheeler +chapman +oliver +montgomery +richards +williamson +johnston +banks +meyer +bishop +mccoy +howell +alvarez +morrison +hansen +fernandez +garza +harvey +little +burton +stanley +nguyen +george +jacobs +reid +kim +fuller +lynch +dean +gilbert +garrett +romero +welch +larson +frazier +burke +hanson +day +mendoza +moreno +bowman +medina +fowler +brewer +hoffman +carlson +silva +pearson +holland +douglas +fleming +jensen +vargas +byrd +davidson +hopkins +may +terry +herrera +wade +soto +walters +curtis +neal +caldwell +lowe +jennings +barnett +graves +jimenez +horton +shelton +barrett +obrien +castro +sutton +gregory +mckinney +lucas +miles +craig +rodriquez +chambers +holt +lambert +fletcher +watts +bates +hale +rhodes +pena +beck +newman +haynes +mcdaniel +mendez +bush +vaughn +parks +dawson +santiago +norris +hardy +love +steele +curry +powers +schultz +barker +guzman +page +munoz +ball +keller +chandler +weber +leonard +walsh +lyons +ramsey +wolfe +schneider +mullins +benson +sharp +bowen +daniel +barber +cummings +hines +baldwin +griffith +valdez +hubbard +salazar +reeves +warner +stevenson +burgess +santos +tate +cross +garner +mann +mack +moss +thornton +dennis +mcgee +farmer +delgado +aguilar +vega +glover +manning +cohen +harmon +rodgers +robbins +newton +todd +blair +higgins +ingram +reese +cannon +strickland +townsend +potter +goodwin +walton +rowe +hampton +ortega +patton +swanson +joseph +francis +goodman +maldonado +yates +becker +erickson +hodges +rios +conner +adkins +webster +norman +malone +hammond +flowers +cobb +moody +quinn +blake +maxwell +pope +floyd +osborne +paul +mccarthy +guerrero +lindsey +estrada +sandoval +gibbs +tyler +gross +fitzgerald +stokes +doyle +sherman +saunders +wise +colon +gill +alvarado +greer +padilla +simon +waters +nunez +ballard +schwartz +mcbride +houston +christensen +klein +pratt +briggs +parsons +mclaughlin +zimmerman +french +buchanan +moran +copeland +roy +pittman +brady +mccormick +holloway +brock +poole +frank +logan +owen +bass +marsh +drake +wong +jefferson +park +morton +abbott +sparks +patrick +norton +huff +clayton +massey +lloyd +figueroa +carson +bowers +roberson +barton +tran +lamb +harrington +casey +boone +cortez +clarke +mathis +singleton +wilkins +cain +bryan +underwood +hogan +mckenzie +collier +luna +phelps +mcguire +allison +bridges +wilkerson +nash +summers +atkins +wilcox +pitts +conley +marquez +burnett +richard +cochran +chase +davenport +hood +gates +clay +ayala +sawyer +roman +vazquez +dickerson +hodge +acosta +flynn +espinoza +nicholson +monroe +wolf +morrow +kirk +randall +anthony +whitaker +oconnor +skinner +ware +molina +kirby +huffman +bradford +charles +gilmore +dominguez +oneal +bruce +lang +combs +kramer +heath +hancock +gallagher +gaines +shaffer +short +wiggins +mathews +mcclain +fischer +wall +small +melton +hensley +bond +dyer +cameron +grimes +contreras +christian +wyatt +baxter +snow +mosley +shepherd +larsen +hoover +beasley +glenn +petersen +whitehead +meyers +keith +garrison +vincent +shields +horn +savage +olsen +schroeder +hartman +woodard +mueller +kemp +deleon +booth +patel +calhoun +wiley +eaton +cline +navarro +harrell +lester +humphrey +parrish +duran +hutchinson +hess +dorsey +bullock +robles +beard +dalton +avila +vance +rich +blackwell +york +johns +blankenship +trevino +salinas +campos +pruitt +moses +callahan +golden +montoya +hardin +guerra +mcdowell +carey +stafford +gallegos +henson +wilkinson +booker +merritt +miranda +atkinson +orr +decker +hobbs +preston +tanner +knox +pacheco +stephenson +glass +rojas +serrano +marks +hickman +english +sweeney +strong +prince +mcclure +conway +walter +roth +maynard +farrell +lowery +hurst +nixon +weiss +trujillo +ellison +sloan +juarez +winters +mclean +randolph +leon +boyer +villarreal +mccall +gentry +carrillo +kent +ayers +lara +shannon +sexton +pace +hull +leblanc +browning +velasquez +leach +chang +house +sellers +herring +noble +foley +bartlett +mercado +landry +durham +walls +barr +mckee +bauer +rivers +everett +bradshaw +pugh +velez +rush +estes +dodson +morse +sheppard +weeks +camacho +bean +barron +livingston +middleton +spears +branch +blevins +chen +kerr +mcconnell +hatfield +harding +ashley +solis +herman +frost +giles +blackburn +william +pennington +woodward +finley +mcintosh +koch +best +solomon +mccullough +dudley +nolan +blanchard +rivas +brennan +mejia +kane +benton +joyce +buckley +haley +valentine +maddox +russo +mcknight +buck +moon +mcmillan +crosby +berg +dotson +mays +roach +church +chan +richmond +meadows +faulkner +oneill +knapp +kline +barry +ochoa +jacobson +gay +avery +hendricks +horne +shepard +hebert +cherry +cardenas +mcintyre +whitney +waller +holman +donaldson +cantu +terrell +morin +gillespie +fuentes +tillman +sanford +bentley +peck +key +salas +rollins +gamble +dickson +battle +santana +cabrera +cervantes +howe +hinton +hurley +spence +zamora +yang +mcneil +suarez +case +petty +gould +mcfarland +sampson +carver +bray +rosario +macdonald +stout +hester +melendez +dillon +farley +hopper +galloway +potts +bernard +joyner +stein +aguirre +osborn +mercer +bender +franco +rowland +sykes +benjamin +travis +pickett +crane +sears +mayo +dunlap +hayden +wilder +mckay +coffey +mccarty +ewing +cooley +vaughan +bonner +cotton +holder +stark +ferrell +cantrell +fulton +lynn +lott +calderon +rosa +pollard +hooper +burch +mullen +fry +riddle +levy +david +duke +odonnell +guy +michael +britt +frederick +daugherty +berger +dillard +alston +jarvis +frye +riggs +chaney +odom +duffy +fitzpatrick +valenzuela +merrill +mayer +alford +mcpherson +acevedo +donovan +barrera +albert +cote +reilly +compton +raymond +mooney +mcgowan +craft +cleveland +clemons +wynn +nielsen +baird +stanton +snider +rosales +bright +witt +stuart +hays +holden +rutledge +kinney +clements +castaneda +slater +hahn +emerson +conrad +burks +delaney +pate +lancaster +sweet +justice +tyson +sharpe +whitfield +talley +macias +irwin +burris +ratliff +mccray +madden +kaufman +beach +goff +cash +bolton +mcfadden +levine +good +byers +kirkland +kidd +workman +carney +dale +mcleod +holcomb +england +finch +head +burt +hendrix +sosa +haney +franks +sargent +nieves +downs +rasmussen +bird +hewitt +lindsay +le +foreman +valencia +oneil +delacruz +vinson +dejesus +hyde +forbes +gilliam +guthrie +wooten +huber +barlow +boyle +mcmahon +buckner +rocha +puckett +langley +knowles +cooke +velazquez +whitley +noel +vang +shea +rouse +hartley +mayfield +elder +rankin +hanna +cowan +lucero +arroyo +slaughter +haas +oconnell +minor +kendrick +shirley +kendall +boucher +archer +boggs +odell +dougherty +andersen +newell +crowe +wang +friedman +bland +swain +holley +felix +pearce +childs +yarbrough +galvan +proctor +meeks +lozano +mora +rangel +bacon +villanueva +schaefer +rosado +helms +boyce +goss +stinson +smart +lake +ibarra +hutchins +covington +reyna +gregg +werner +crowley +hatcher +mackey +bunch +womack +polk +jamison +dodd +childress +childers +camp +villa +dye +springer +mahoney +dailey +belcher +lockhart +griggs +costa +connor +brandt +winter +walden +moser +tracy +tatum +mccann +akers +lutz +pryor +law +orozco +mcallister +lugo +davies +shoemaker +madison +rutherford +newsome +magee +chamberlain +blanton +simms +godfrey +flanagan +crum +cordova +escobar +downing +sinclair +donahue +krueger +mcginnis +gore +farris +webber +corbett +andrade +starr +lyon +yoder +hastings +mcgrath +spivey +krause +harden +crabtree +kirkpatrick +hollis +brandon +arrington +ervin +clifton +ritter +mcghee +bolden +maloney +gagnon +dunbar +ponce +pike +mayes +heard +beatty +mobley +kimball +butts +montes +herbert +grady +eldridge +braun +hamm +gibbons +seymour +moyer +manley +herron +plummer +elmore +cramer +gary +rucker +hilton +blue +pierson +fontenot +field +rubio +grace +goldstein +elkins +wills +novak +john +hickey +worley +gorman +katz +dickinson +broussard +fritz +woodruff +crow +christopher +britton +forrest +nance +lehman +bingham +zuniga +whaley +shafer +coffman +steward +delarosa +nix +neely +numbers +mata +manuel +davila +mccabe +kessler +emery +bowling +hinkle +welsh +pagan +goldberg +goins +crouch +cuevas +quinones +mcdermott +hendrickson +samuels +denton +bergeron +lam +ivey +locke +haines +thurman +snell +hoskins +byrne +milton +winston +arthur +arias +stanford +roe +corbin +beltran +chappell +hurt +downey +dooley +tuttle +couch +payton +mcelroy +crockett +groves +clement +leslie +cartwright +dickey +mcgill +dubois +muniz +erwin +self +tolbert +dempsey +cisneros +sewell +latham +garland +vigil +tapia +sterling +rainey +norwood +lacy +stroud +meade +amos +tipton +lord +kuhn +hilliard +bonilla +teague +courtney +gunn +ho +greenwood +correa +reece +weston +poe +trent +pineda +phipps +frey +kaiser +ames +paige +gunter +schmitt +milligan +espinosa +carlton +bowden +vickers +lowry +pritchard +costello +piper +mcclellan +lovell +drew +sheehan +quick +hatch +dobson +singh +jeffries +hollingsworth +sorensen +meza +fink +donnelly +burrell +bruno +tomlinson +colbert +billings +ritchie +helton +sutherland +peoples +mcqueen +gaston +thomason +mckinley +givens +crocker +vogel +robison +dunham +coker +swartz +keys +lilly +ladner +hannah +willard +richter +hargrove +edmonds +brantley +albright +murdock +boswell +muller +quintero +padgett +kenney +daly +connolly +pierre +inman +quintana +lund +barnard +villegas +simons +land +huggins +tidwell +sanderson +bullard +mcclendon +duarte +draper +meredith +marrero +dwyer +abrams +stover +goode +fraser +crews +bernal +smiley +godwin +fish +conklin +mcneal +baca +esparza +crowder +bower +nicholas +chung +brewster +mcneill +dick +rodrigues +leal +coates +raines +mccain +mccord +miner +holbrook +swift +dukes +carlisle +aldridge +ackerman +starks +ricks +holliday +ferris +hairston +sheffield +lange +fountain +marino +doss +betts +kaplan +carmichael +bloom +ruffin +penn +kern +bowles +sizemore +larkin +dupree +jewell +silver +seals +metcalf +hutchison +henley +farr +castle +mccauley +hankins +gustafson +deal +curran +ash +waddell +ramey +cates +pollock +major +irvin +cummins +messer +heller +dewitt +lin +funk +cornett +palacios +galindo +cano +hathaway +singer +pham +enriquez +aaron +salgado +pelletier +painter +wiseman +blount +hand +feliciano +temple +houser +doherty +mead +mcgraw +toney +swan +melvin +capps +blanco +blackmon +wesley +thomson +mcmanus +fair +burkett +post +gleason +rudolph +ott +dickens +cormier +voss +rushing +rosenberg +hurd +dumas +benitez +arellano +story +marin +caudill +bragg +jaramillo +huerta +gipson +colvin +biggs +vela +platt +cassidy +tompkins +mccollum +kay +gabriel +dolan +daley +crump +street +sneed +kilgore +grove +grimm +davison +brunson +prater +marcum +devine +kyle +dodge +stratton +rosas +choi +tripp +ledbetter +lay +hightower +haywood +feldman +epps +yeager +posey +sylvester +scruggs +cope +stubbs +richey +overton +trotter +sprague +cordero +butcher +burger +stiles +burgos +woodson +horner +bassett +purcell +haskins +gee +akins +abraham +hoyt +ziegler +spaulding +hadley +grubbs +sumner +murillo +zavala +shook +lockwood +jarrett +driscoll +dahl +thorpe +sheridan +redmond +putnam +mcwilliams +mcrae +cornell +felton +romano +joiner +sadler +hedrick +hager +hagen +fitch +coulter +thacker +mansfield +langston +guidry +ferreira +corley +conn +rossi +lackey +cody +baez +saenz +mcnamara +darnell +michel +mcmullen +mckenna +mcdonough +link +engel +browne +roper +peacock +eubanks +drummond +stringer +pritchett +parham +mims +landers +ham +grayson +stacy +schafer +egan +timmons +ohara +keen +hamlin +finn +cortes +mcnair +louis +clifford +nadeau +moseley +michaud +rosen +oakes +kurtz +jeffers +calloway +beal +bautista +winn +suggs +stern +stapleton +lyles +laird +montano +diamond +dawkins +roland +hagan +goldman +bryson +barajas +lovett +segura +metz +lockett +langford +hinson +eastman +rock +hooks +woody +smallwood +shapiro +crowell +whalen +triplett +hooker +chatman +aldrich +cahill +youngblood +ybarra +stallings +sheets +samuel +reeder +person +pack +lacey +connelly +bateman +abernathy +winkler +wilkes +masters +hackett +granger +gillis +schmitz +sapp +napier +souza +lanier +gomes +weir +otero +ledford +burroughs +babcock +ventura +siegel +dugan +clinton +christie +bledsoe +atwood +wray +varner +spangler +otto +anaya +staley +kraft +fournier +eddy +belanger +wolff +thorne +bynum +burnette +boykin +swenson +purvis +pina +khan +duvall +darby +xiong +kauffman +ali +yu +healy +engle +corona +benoit +valle +steiner +spicer +shaver +randle +lundy +dow +chin +calvert +staton +neff +kearney +darden +oakley +medeiros +mccracken +crenshaw +block +beaver +perdue +dill +whittaker +tobin +cornelius +washburn +hogue +goodrich +easley +bravo +dennison +vera +shipley +kerns +jorgensen +crain +abel +villalobos +maurer +longoria +keene +coon +sierra +witherspoon +staples +pettit +kincaid +eason +madrid +echols +lusk +wu +stahl +currie +thayer +shultz +sherwood +mcnally +seay +north +maher +kenny +hope +gagne +barrow +nava +myles +moreland +honeycutt +hearn +diggs +caron +whitten +westbrook +stovall +ragland +queen +munson +meier +looney +kimble +jolly +hobson +london +goddard +culver +burr +presley +negron +connell +tovar +marcus +huddleston +hammer +ashby +salter +root +pendleton +oleary +nickerson +myrick +judd +jacobsen +elliot +bain +adair +starnes +sheldon +matos +light +busby +herndon +hanley +bellamy +jack +doty +bartley +yazzie +rowell +parson +gifford +cullen +christiansen +benavides +barnhart +talbot +mock +crandall +connors +bonds +whitt +gage +bergman +arredondo +addison +marion +lujan +dowdy +jernigan +huynh +bouchard +dutton +rhoades +ouellette +kiser +rubin +herrington +hare +denny +blackman +babb +allred +rudd +paulson +ogden +koenig +jacob +irving +geiger +begay +parra +champion +lassiter +hawk +esposito +cho +waldron +vernon +ransom +prather +keenan +jean +grover +chacon +vick +sands +roark +parr +mayberry +greenberg +coley +bruner +whitman +skaggs +shipman +means +leary +hutton +romo +medrano +ladd +kruse +friend +darling +askew +valentin +schulz +alfaro +tabor +mohr +gallo +bermudez +pereira +isaac +bliss +reaves +flint +comer +boston +woodall +naquin +guevara +earl +delong +carrier +pickens +brand +tilley +schaffer +read +lim +knutson +fenton +doran +chu +vogt +vann +prescott +mclain +landis +corcoran +ambrose +zapata +hyatt +hemphill +faulk +call +dove +boudreaux +aragon +whitlock +trejo +tackett +shearer +saldana +hanks +gold +driver +mckinnon +koehler +champagne +bourgeois +pool +keyes +goodson +foote +early +lunsford +goldsmith +flood +winslow +sams +reagan +mccloud +hough +esquivel +naylor +loomis +coronado +ludwig +braswell +bearden +sherrill +huang +fagan +ezell +edmondson +cyr +cronin +nunn +lemon +guillory +grier +dubose +traylor +ryder +dobbins +coyle +aponte +whitmore +smalls +rowan +malloy +cardona +braxton +borden +humphries +carrasco +ruff +metzger +huntley +hinojosa +finney +madsen +hong +hills +ernst +dozier +burkhart +bowser +peralta +daigle +whittington +sorenson +saucedo +roche +redding +loyd +fugate +avalos +waite +lind +huston +hay +benedict +hawthorne +hamby +boyles +boles +regan +faust +crook +beam +barger +hinds +gallardo +elias +willoughby +willingham +wilburn +eckert +busch +zepeda +worthington +tinsley +russ +li +hoff +hawley +carmona +varela +rector +newcomb +mallory +kinsey +dube +whatley +strange +ragsdale +ivy +bernstein +becerra +yost +mattson +ly +felder +cheek +luke +handy +grossman +gauthier +escobedo +braden +beckman +mott +hillman +gil +flaherty +dykes +doe +stockton +stearns +lofton +kitchen +coats +cavazos +beavers +barrios +tang +parish +mosher +lincoln +cardwell +coles +burnham +weller +lemons +beebe +aguilera +ring +parnell +harman +couture +alley +schumacher +redd +dobbs +blum +blalock +merchant +ennis +denson +cottrell +chester +brannon +bagley +aviles +watt +sousa +rosenthal +rooney +dietz +blank +paquette +mcclelland +duff +velasco +lentz +grubb +burrows +barbour +ulrich +shockley +rader +german +beyer +mixon +layton +altman +alonzo +weathers +titus +stoner +squires +shipp +priest +lipscomb +cutler +caballero +zimmer +willett +thurston +storey +medley +lyle +epperson +shah +mcmillian +baggett +torrez +laws +hirsch +dent +corey +poirier +peachey +jacques +farrar +creech +barth +trimble +france +dupre +albrecht +sample +lawler +crisp +conroy +chadwick +wetzel +nesbitt +murry +jameson +wilhelm +patten +minton +matson +kimbrough +iverson +guinn +gale +fortune +croft +toth +pulliam +nugent +newby +littlejohn +dias +canales +bernier +baron +barney +singletary +renteria +pruett +mchugh +mabry +landrum +brower +weldon +stoddard +ruth +cagle +stjohn +scales +kohler +kellogg +hopson +gant +tharp +gann +zeigler +pringle +hammons +fairchild +deaton +chavis +carnes +rowley +matlock +libby +kearns +irizarry +carrington +starkey +pepper +lopes +jarrell +fay +craven +beverly +baum +spain +littlefield +linn +humphreys +hook +high +etheridge +cuellar +chastain +chance +bundy +speer +skelton +quiroz +pyle +portillo +ponder +moulton +machado +liu +killian +hutson +hitchcock +ellsworth +dowling +cloud +burdick +spann +pedersen +levin +leggett +hayward +hacker +dietrich +beaulieu +barksdale +wakefield +snowden +paris +briscoe +bowie +berman +ogle +mcgregor +laughlin +helm +burden +wheatley +schreiber +pressley +parris +ng +alaniz +agee +urban +swann +snodgrass +schuster +radford +monk +mattingly +main +lamar +harp +girard +cheney +yancey +wagoner +ridley +lombardo +lau +hudgins +gaskins +duckworth +coe +coburn +willey +prado +newberry +magana +hammonds +elam +whipple +slade +serna +ojeda +liles +dorman +diehl +angel +upton +reardon +michaels +kelsey +goetz +eller +bauman +baer +augustine +layne +hummel +brenner +amaya +adamson +ornelas +dowell +cloutier +christy +castellanos +wing +wellman +saylor +orourke +moya +montalvo +kilpatrick +harley +durbin +shell +oldham +kang +garvin +foss +branham +bartholomew +templeton +maguire +holton +alonso +rider +monahan +mccormack +beaty +anders +streeter +nieto +nielson +moffett +lankford +keating +heck +gatlin +delatorre +callaway +adcock +worrell +unger +robinette +nowak +jeter +brunner +ashton +steen +parrott +overstreet +nobles +montanez +luther +clevenger +brinkley +trahan +quarles +pickering +pederson +jansen +grantham +gilchrist +crespo +aiken +schell +schaeffer +lorenz +leyva +harms +dyson +wallis +pease +leavitt +hyman +cheng +cavanaugh +batts +warden +seaman +rockwell +quezada +paxton +linder +houck +fontaine +durant +caruso +adler +pimentel +mize +lytle +donald +cleary +cason +acker +switzer +salmon +isaacs +higginbotham +han +waterman +vandyke +stamper +sisk +shuler +riddick +redman +mcmahan +levesque +hatton +bronson +bollinger +arnett +okeefe +gerber +gannon +farnsworth +baughman +silverman +satterfield +royal +mccrary +kowalski +joy +grigsby +greco +cabral +trout +rinehart +mahon +linton +gooden +curley +baugh +wyman +weiner +schwab +schuler +morrissey +mahan +coy +bunn +andrew +thrasher +spear +waggoner +shelley +robert +qualls +purdy +mcwhorter +mauldin +mark +jordon +gilman +perryman +newsom +menard +martino +graf +billingsley +artis +simpkins +salisbury +quintanilla +gilliland +fraley +foust +crouse +scarborough +ngo +grissom +fultz +rico +marlow +markham +madrigal +lawton +barfield +whiting +varney +schwarz +huey +gooch +arce +wheat +truong +poulin +mackenzie +leone +hurtado +selby +gaither +fortner +culpepper +coughlin +brinson +boudreau +barkley +bales +stepp +holm +tan +schilling +morrell +kahn +heaton +gamez +douglass +causey +brothers +turpin +shanks +schrader +meek +isom +hardison +carranza +yanez +way +scroggins +schofield +runyon +ratcliff +murrell +moeller +irby +currier +butterfield +yee +ralston +pullen +pinson +estep +east +carbone +lance +hawks +ellington +casillas +spurlock +sikes +motley +mccartney +kruger +isbell +houle +francisco +burk +bone +tomlin +shelby +quigley +neumann +lovelace +fennell +colby +cheatham +bustamante +skidmore +hidalgo +forman +culp +bowens +betancourt +aquino +robb +rea +milner +martel +gresham +wiles +ricketts +gavin +dowd +collazo +bostic +blakely +sherrod +power +kenyon +gandy +ebert +deloach +cary +bull +allard +sauer +robins +olivares +gillette +chestnut +bourque +paine +lyman +hite +hauser +devore +crawley +chapa +vu +tobias +talbert +poindexter +millard +meador +mcduffie +mattox +kraus +harkins +choate +bess +wren +sledge +sanborn +outlaw +kinder +geary +cornwell +barclay +adam +abney +seward +rhoads +howland +fortier +easter +benner +vines +tubbs +troutman +rapp +noe +mccurdy +harder +deluca +westmoreland +south +havens +guajardo +ely +clary +seal +meehan +herzog +guillen +ashcraft +waugh +renner +milam +jung +elrod +churchill +buford +breaux +bolin +asher +windham +tirado +pemberton +nolen +noland +knott +emmons +cornish +christenson +brownlee +barbee +waldrop +pitt +olvera +lombardi +gruber +gaffney +eggleston +banda +archuleta +still +slone +prewitt +pfeiffer +nettles +mena +mcadams +henning +gardiner +cromwell +chisholm +burleson +box +vest +oglesby +mccarter +malcolm +lumpkin +larue +grey +wofford +vanhorn +thorn +teel +swafford +stclair +stanfield +ocampo +herrmann +hannon +arsenault +roush +mcalister +hiatt +gunderson +forsythe +duggan +delvalle +cintron +wilks +weinstein +uribe +rizzo +noyes +mclendon +gurley +bethea +winstead +maples +harry +guyton +giordano +alderman +valdes +polanco +pappas +lively +grogan +griffiths +bobo +arevalo +whitson +sowell +rendon +matthew +julian +fernandes +farrow +edmond +benavidez +ayres +alicea +stump +smalley +seitz +schulte +gilley +gallant +dewey +casper +canfield +wolford +omalley +mcnutt +mcnulty +mcgovern +hardman +harbin +cowart +chavarria +brink +beckett +bagwell +armstead +anglin +abreu +reynoso +krebs +jett +hoffmann +greenfield +forte +burney +broome +sisson +parent +jude +younger +trammell +partridge +marvin +mace +lomax +lemieux +gossett +frantz +fogle +cooney +broughton +pence +paulsen +neil +muncy +mcarthur +hollins +edward +beauchamp +withers +osorio +mulligan +hoyle +foy +dockery +cockrell +begley +amador +roby +rains +lindquist +gentile +everhart +bohannon +wylie +thao +sommers +purnell +palma +fortin +dunning +breeden +vail +phelan +phan +marx +cosby +colburn +chong +boling +biddle +ledesma +gaddis +denney +chow +bueno +berrios +wicker +tolliver +thibodeaux +nagle +lavoie +fisk +do +crist +barbosa +reedy +march +locklear +kolb +himes +behrens +beckwith +beckham +weems +wahl +shorter +shackelford +rees +muse +free +cerda +valadez +thibodeau +saavedra +ridgeway +reiter +mchenry +majors +lachance +keaton +israel +ferrara +falcon +clemens +blocker +applegate +paz +needham +mojica +kuykendall +hamel +escamilla +doughty +burchett +ainsworth +wilbur +vidal +upchurch +thigpen +strauss +spruill +sowers +riggins +ricker +mccombs +harlow +garnett +buffington +yi +sotelo +olivas +negrete +morey +macon +logsdon +lapointe +florence +cathey +bigelow +bello +westfall +stubblefield +peak +lindley +jeffrey +hein +hawes +farrington +edge +breen +birch +wilde +steed +sepulveda +reinhardt +proffitt +minter +messina +mcnabb +maier +keeler +gamboa +donohue +dexter +basham +shinn +orlando +crooks +cota +borders +bills +bachman +tisdale +tavares +schmid +pickard +jasper +gulley +fonseca +delossantos +condon +clancy +batista +wicks +wadsworth +new +martell +lo +littleton +ison +haag +folsom +brumfield +broyles +brito +mireles +mcdonnell +leclair +hamblin +gough +fanning +binder +winfield +whitworth +soriano +palumbo +newkirk +mangum +hutcherson +comstock +cecil +carlin +beall +bair +wendt +watters +walling +putman +otoole +oliva +morley +mares +lemus +keener +jeffery +hundley +dial +damico +billups +strother +mcfarlane +lamm +eaves +crutcher +caraballo +canty +atwell +taft +siler +rust +rawls +rawlings +prieto +niles +mcneely +mcafee +hulsey +harlan +hackney +galvez +escalante +delagarza +crider +charlton +bandy +wilbanks +stowe +steinberg +samson +renfro +masterson +massie +lanham +haskell +hamrick +fort +dehart +card +burdette +branson +bourne +babin +aleman +worthy +tibbs +sweat +smoot +slack +paradis +packard +mull +luce +houghton +gantt +furman +danner +christianson +burge +broderick +ashford +arndt +almeida +stallworth +shade +searcy +sager +noonan +mclemore +mcintire +maxey +lavigne +jobe +ireland +ferrer +falk +edgar +coffin +byrnes +aranda +apodaca +stamps +rounds +peek +olmstead +lewandowski +kaminski +her +dunaway +bruns +brackett +amato +reich +mcclung +lacroix +koontz +herrick +hardesty +flanders +cousins +close +cato +cade +vickery +shank +nagel +dupuis +croteau +cotter +cable +stuckey +stine +porterfield +pauley +nye +moffitt +lu +knudsen +hardwick +goforth +dupont +blunt +barrows +barnhill +shull +rash +ralph +penny +lorenzo +loftis +lemay +kitchens +horvath +grenier +fuchs +fairbanks +culbertson +calkins +burnside +beattie +ashworth +albertson +wertz +vo +vaught +vallejo +tyree +turk +tuck +tijerina +sage +picard +peterman +otis +marroquin +marr +lantz +hoang +demarco +daily +cone +berube +barnette +wharton +stinnett +slocum +scanlon +sander +pinto +mancuso +lima +judge +headley +epstein +counts +clarkson +carnahan +brice +boren +arteaga +adame +zook +whittle +whitehurst +wenzel +saxton +rhea +reddick +puente +hazel +handley +haggerty +earley +devlin +dallas +chaffin +cady +ahmed +acuna +solano +sigler +pollack +pendergrass +ostrander +janes +francois +fine +crutchfield +cordell +chamberlin +brubaker +baptiste +willson +reis +neeley +mullin +mercier +lira +layman +keeling +higdon +guest +forrester +espinal +dion +chapin +carl +warfield +toledo +pulido +peebles +nagy +montague +mello +lear +jaeger +hogg +graff +furr +derrick +cave +canada +soliz +poore +mendenhall +mclaurin +maestas +low +gable +belt +barraza +tillery +snead +pond +neill +mcculloch +mccorkle +lightfoot +hutchings +holloman +harness +dorn +council +bock +zielinski +turley +treadwell +stpierre +starling +somers +oswald +merrick +marquis +ivory +easterling +bivens +truitt +poston +parry +ontiveros +olivarez +neville +moreau +medlin +ma +lenz +knowlton +fairley +cobbs +chisolm +bannister +woodworth +toler +ocasio +noriega +neuman +moye +milburn +mcclanahan +lilley +hanes +flannery +dellinger +danielson +conti +blodgett +beers +weatherford +strain +karr +hitt +denham +custer +coble +clough +casteel +bolduc +batchelor +ammons +whitlow +tierney +staten +sibley +seifert +schubert +salcedo +mattison +laney +haggard +grooms +dix +dees +cromer +cooks +colson +caswell +zarate +swisher +stacey +shin +ragan +pridgen +mcvey +matheny +leigh +lafleur +franz +ferraro +dugger +whiteside +rigsby +mcmurray +lehmann +large +jacoby +hildebrand +hendrick +headrick +goad +fincher +drury +borges +archibald +albers +woodcock +trapp +soares +seaton +richie +monson +luckett +lindberg +kopp +keeton +hsu +healey +garvey +gaddy +fain +burchfield +badger +wentworth +strand +stack +spooner +saucier +sales +ruby +ricci +plunkett +pannell +ness +leger +hoy +freitas +fong +elizondo +duval +chun +calvin +beaudoin +urbina +stock +rickard +partin +moe +mcgrew +mcclintock +ledoux +forsyth +faison +devries +bertrand +wasson +tilton +scarbrough +pride +oh +leung +larry +irvine +garber +denning +corral +colley +castleberry +bowlin +bogan +beale +baines +true +trice +rayburn +parkinson +pak +nunes +mcmillen +leahy +lea +kimmel +higgs +fulmer +carden +bedford +taggart +spearman +register +prichard +morrill +koonce +heinz +hedges +guenther +grice +findley +earle +dover +creighton +boothe +bayer +arreola +vitale +valles +see +raney +peter +osgood +lowell +hanlon +burley +bounds +worden +weatherly +vetter +tanaka +stiltner +sell +nevarez +mosby +montero +melancon +harter +hamer +goble +gladden +gist +ginn +akin +zaragoza +towns +tarver +sammons +royster +oreilly +muir +morehead +luster +kingsley +kelso +grisham +glynn +baumann +alves +yount +tamayo +tam +paterson +oates +menendez +longo +hargis +greenlee +gillen +desantis +conover +breedlove +wayne +sumpter +scherer +rupp +reichert +heredia +fallon +creel +cohn +clemmons +casas +bickford +belton +bach +williford +whitcomb +tennant +sutter +stull +sessions +mccallum +manson +langlois +keel +keegan +emanuel +dangelo +dancy +damron +clapp +clanton +bankston +trinidad +oliveira +mintz +mcinnis +martens +mabe +laster +jolley +irish +hildreth +hefner +glaser +duckett +demers +brockman +blais +back +alcorn +agnew +toliver +tice +song +seeley +najera +musser +mcfall +laplante +galvin +fajardo +doan +coyne +copley +clawson +cheung +barone +wynne +woodley +tremblay +stoll +sparrow +sparkman +schweitzer +sasser +samples +roney +ramon +legg +lai +joe +heim +farias +concepcion +colwell +christman +bratcher +alba +winchester +upshaw +southerland +sorrell +shay +sells +mount +mccloskey +martindale +luttrell +loveless +lovejoy +linares +latimer +holly +embry +coombs +bratton +bostick +boss +venable +tuggle +toro +staggs +sandlin +jefferies +heckman +griffis +crayton +clem +button +browder +allan +thorton +sturgill +sprouse +royer +rousseau +ridenour +pogue +perales +peeples +metzler +mesa +mccutcheon +mcbee +jay +hornsby +heffner +corrigan +armijo +vue +romeo +plante +peyton +paredes +macklin +hussey +hodgson +granados +frias +carman +brent +becnel +batten +almanza +turney +teal +sturgeon +meeker +mcdaniels +limon +keeney +kee +hutto +holguin +gorham +fishman +fierro +blanchette +rodrigue +reddy +osburn +oden +lerma +kirkwood +keefer +haugen +hammett +chalmers +carlos +brinkman +baumgartner +zhang +valerio +tellez +steffen +shumate +sauls +ripley +kemper +jacks +guffey +evers +craddock +carvalho +blaylock +banuelos +balderas +wooden +wheaton +turnbull +shuman +pointer +mosier +mccue +ligon +kozlowski +johansen +ingle +herr +briones +southern +snipes +rickman +pipkin +peace +pantoja +orosco +moniz +lawless +kunkel +hibbard +galarza +enos +bussey +settle +schott +salcido +perreault +mcdougal +mccool +haight +garris +ferry +easton +conyers +atherton +wimberly +utley +stephen +spellman +smithson +slagle +skipper +ritchey +rand +petit +osullivan +oaks +nutt +mcvay +mccreary +mayhew +knoll +jewett +harwood +hailey +cardoza +ashe +arriaga +andres +zeller +wirth +whitmire +stauffer +spring +rountree +redden +mccaffrey +martz +loving +larose +langdon +humes +gaskin +faber +doll +devito +cass +almond +wingfield +wingate +villareal +tyner +smothers +severson +reno +pennell +maupin +leighton +janssen +hassell +hallman +halcomb +folse +fitzsimmons +fahey +cranford +bolen +battles +battaglia +wooldridge +weed +trask +rosser +regalado +mcewen +keefe +fuqua +echevarria +domingo +dang +caro +boynton +andrus +wild +viera +vanmeter +taber +spradlin +seibert +provost +prentice +oliphant +laporte +hwang +hatchett +hass +greiner +freedman +covert +chilton +byars +wiese +venegas +swank +shrader +roderick +roberge +mullis +mortensen +mccune +marlowe +kirchner +keck +isaacson +hostetler +halverson +gunther +griswold +gerard +fenner +durden +blackwood +bertram +ahrens +sawyers +savoy +nabors +mcswain +mackay +loy +lavender +lash +labbe +jessup +hubert +fullerton +donnell +cruse +crittenden +correia +centeno +caudle +canady +callender +alarcon +ahern +winfrey +tribble +tom +styles +salley +roden +musgrove +minnick +fortenberry +carrion +bunting +bethel +batiste +woo +whited +underhill +stillwell +silvia +rauch +pippin +perrin +messenger +mancini +lister +kinard +hartmann +fleck +broadway +wilt +treadway +thornhill +speed +spalding +sam +rafferty +pitre +patino +ordonez +linkous +kelleher +homan +holiday +galbraith +feeney +dorris +curtin +coward +camarillo +buss +bunnell +bolt +beeler +autry +alcala +witte +wentz +stidham +shively +nunley +meacham +martins +lemke +lefebvre +kaye +hynes +horowitz +hoppe +holcombe +estrella +dunne +derr +cochrane +brittain +bedard +beauregard +torrence +strunk +soria +simonson +shumaker +scoggins +packer +oconner +moriarty +leroy +kuntz +ives +hutcheson +horan +hales +garmon +fitts +dell +bohn +atchison +worth +wisniewski +will +vanwinkle +sturm +sallee +prosser +moen +lundberg +kunz +kohl +keane +jorgenson +jaynes +funderburk +freed +frame +durr +creamer +cosgrove +candelaria +berlin +batson +vanhoose +thomsen +teeter +sommer +smyth +sena +redmon +orellana +maness +lennon +heflin +goulet +frick +forney +dollar +bunker +asbury +aguiar +talbott +southard +pleasant +mowery +mears +lemmon +krieger +hickson +gracia +elston +duong +delgadillo +dayton +dasilva +conaway +catron +bruton +bradbury +bordelon +bivins +bittner +bergstrom +beals +abell +whelan +travers +tejada +pulley +pino +norfleet +nealy +maes +loper +held +gerald +gatewood +frierson +freund +finnegan +cupp +covey +catalano +boehm +bader +yoon +walston +tenney +sipes +roller +rawlins +medlock +mccaskill +mccallister +marcotte +maclean +hughey +henke +harwell +gladney +gilson +dew +chism +caskey +brandenburg +baylor +villasenor +veal +van +thatcher +stegall +shore +petrie +nowlin +navarrete +muhammad +lombard +loftin +lemaster +kroll +kovach +kimbrell +kidwell +hershberger +fulcher +eng +cantwell +bustos +boland +bobbitt +binkley +wester +weis +verdin +tong +tiller +sisco +sharkey +seymore +rosenbaum +rohr +quinonez +pinkston +nation +malley +logue +lessard +lerner +lebron +krauss +klinger +halstead +haller +getz +burrow +brant +alger +victor +shores +scully +pounds +pfeifer +perron +nelms +munn +mcmaster +mckenney +manns +knudson +hutchens +huskey +goebel +flagg +cushman +click +castellano +carder +bumgarner +blaine +bible +wampler +spinks +robson +neel +mcreynolds +mathias +maas +loera +kasper +jose +jenson +florez +coons +buckingham +brogan +berryman +wilmoth +wilhite +thrash +shephard +seidel +schulze +roldan +pettis +obryan +maki +mackie +hatley +frazer +fiore +falls +chesser +bui +bottoms +bisson +benefield +allman +wilke +trudeau +timm +shifflett +rau +mundy +milliken +mayers +leake +kohn +huntington +horsley +hermann +guerin +fryer +frizzell +foret +flemming +fife +criswell +carbajal +bozeman +boisvert +archie +antonio +angulo +wallen +tapp +silvers +ramsay +oshea +orta +moll +mckeever +mcgehee +luciano +linville +kiefer +ketchum +howerton +groce +gaylord +gass +fusco +corbitt +blythe +betz +bartels +amaral +aiello +yoo +weddle +troy +sun +sperry +seiler +runyan +raley +overby +osteen +olds +mckeown +mauro +matney +lauer +lattimore +hindman +hartwell +fredrickson +fredericks +espino +clegg +carswell +cambell +burkholder +august +woodbury +welker +totten +thornburg +theriault +stitt +stamm +stackhouse +simone +scholl +saxon +rife +razo +quinlan +pinkerton +olivo +nesmith +nall +mattos +leak +lafferty +justus +giron +geer +fielder +eagle +drayton +dortch +conners +conger +chau +boatwright +billiot +barden +armenta +antoine +tibbetts +steadman +slattery +sides +rinaldi +raynor +rayford +pinckney +pettigrew +nickel +milne +matteson +halsey +gonsalves +fellows +durand +desimone +cowley +cowles +brill +barham +barela +barba +ashmore +withrow +valenti +tejeda +spriggs +sayre +salerno +place +peltier +peel +merriman +matheson +lowman +lindstrom +hyland +homer +ha +giroux +fries +frasier +earls +dugas +damon +dabney +collado +briseno +baxley +andre +word +whyte +wenger +vanover +vanburen +thiel +schindler +schiller +rigby +pomeroy +passmore +marble +manzo +mahaffey +lindgren +laflamme +greathouse +fite +ferrari +calabrese +bayne +yamamoto +wick +townes +thames +steel +reinhart +peeler +naranjo +montez +mcdade +mast +markley +marchand +leeper +kong +kellum +hudgens +hennessey +hadden +guess +gainey +coppola +borrego +bolling +beane +ault +slaton +poland +pape +null +mulkey +lightner +langer +hillard +glasgow +fabian +ethridge +enright +derosa +baskin +alfred +weinberg +turman +tinker +somerville +pardo +noll +lashley +ingraham +hiller +hendon +glaze +flora +cothran +cooksey +conte +carrico +apple +abner +wooley +swope +summerlin +sturgis +sturdivant +stott +spurgeon +spillman +speight +roussel +popp +nutter +mckeon +mazza +magnuson +lanning +kozak +jankowski +heyward +forster +corwin +callaghan +bays +wortham +usher +theriot +sayers +sabo +rupert +poling +nathan +loya +lieberman +levi +laroche +labelle +howes +harr +garay +fogarty +everson +durkin +dominquez +chaves +chambliss +alfonso +witcher +wilber +vieira +vandiver +terrill +stoker +schreiner +nestor +moorman +liddell +lew +lawhorn +krug +irons +hylton +hollenbeck +herrin +hembree +hair +goolsby +goodin +gilmer +foltz +dinkins +daughtry +caban +brim +briley +bilodeau +bear +wyant +vergara +tallent +swearingen +stroup +sherry +scribner +roger +quillen +pitman +monaco +mccants +maxfield +martinson +landon +holtz +flournoy +brookins +brody +baumgardner +angelo +straub +sills +roybal +roundtree +oswalt +money +mcgriff +mcdougall +mccleary +maggard +gragg +gooding +godinez +doolittle +donato +cowell +cassell +bracken +appel +ahmad +zambrano +reuter +perea +olive +nakamura +monaghan +mickens +mcclinton +mcclary +marler +kish +judkins +gilbreath +freese +flanigan +felts +erdmann +dodds +chew +brownell +brazil +boatright +barreto +slayton +sandberg +saldivar +pettway +odum +narvaez +moultrie +montemayor +merrell +lees +keyser +hoke +hardaway +hannan +gilbertson +fogg +dumont +deberry +coggins +carrera +buxton +bucher +broadnax +beeson +araujo +appleton +amundson +aguayo +ackley +yocum +worsham +shivers +shelly +sanches +sacco +robey +rhoden +pender +ochs +mccurry +madera +luong +luis +knotts +jackman +heinrich +hargrave +gault +forest +comeaux +chitwood +child +caraway +boettcher +bernhardt +barrientos +zink +wickham +whiteman +thorp +stillman +settles +schoonover +roque +riddell +rey +pilcher +phifer +novotny +maple +macleod +hardee +haase +grider +fredrick +earnest +doucette +clausen +christmas +bevins +beamon +badillo +tolley +tindall +soule +snook +sebastian +seale +pitcher +pinkney +pellegrino +nowell +nemeth +nail +mondragon +mclane +lundgren +ingalls +hudspeth +hixson +gearhart +furlong +downes +dionne +dibble +deyoung +cornejo +camara +brookshire +boyette +wolcott +tracey +surratt +sellars +segal +salyer +reeve +rausch +philips +labonte +haro +gower +freeland +fawcett +eads +driggers +donley +collett +cage +bromley +boatman +ballinger +baldridge +volz +trombley +stonge +silas +shanahan +rivard +rhyne +pedroza +matias +mallard +jamieson +hedgepeth +hartnett +estevez +eskridge +denman +chiu +chinn +catlett +carmack +buie +book +bechtel +beardsley +bard +ballou +windsor +ulmer +storm +skeen +robledo +rincon +reitz +piazza +pearl +munger +moten +mcmichael +loftus +ledet +kersey +groff +fowlkes +folk +crumpton +collette +clouse +bettis +villagomez +timmerman +strom +saul +santoro +roddy +phillip +penrod +musselman +macpherson +leboeuf +harless +haddad +guido +golding +fulkerson +fannin +dulaney +dowdell +deane +cottle +ceja +cate +bosley +benge +albritton +voigt +trowbridge +soileau +seely +rome +rohde +pearsall +paulk +orth +nason +mota +mcmullin +marquardt +madigan +hoag +gillum +gayle +gabbard +fenwick +fender +eck +danforth +cushing +cress +creed +cazares +casanova +bey +bettencourt +barringer +baber +stansberry +schramm +rutter +rivero +race +oquendo +necaise +mouton +montenegro +miley +mcgough +marra +macmillan +lock +lamontagne +jasso +jaime +horst +hetrick +heilman +gaytan +gall +fried +fortney +eden +dingle +desjardins +dabbs +burbank +brigham +breland +beaman +banner +arriola +yarborough +wallin +treat +toscano +stowers +reiss +pichardo +orton +mitchel +michels +mcnamee +mccrory +leatherman +kell +keister +jerome +horning +hargett +guay +friday +ferro +deboer +dagostino +clemente +christ +carper +bowler +blanks +beaudry +willie +towle +tafoya +stricklin +strader +soper +sonnier +sigmon +schenk +saddler +rodman +pedigo +mendes +lunn +lohr +lahr +kingsbury +jarman +hume +holliman +hofmann +haworth +harrelson +hambrick +flick +edmunds +dacosta +crossman +colston +chaplin +carrell +budd +weiler +waits +viola +valentino +trantham +tarr +straight +solorio +roebuck +powe +plank +pettus +palm +pagano +mink +luker +leathers +joslin +hartzell +gambrell +fears +deutsch +cepeda +carty +caputo +brewington +bedell +ballew +applewhite +warnock +walz +urena +tudor +reel +pigg +parton +mickelson +meagher +mclellan +mcculley +mandel +leech +lavallee +kraemer +kling +kipp +kingston +kehoe +hochstetler +harriman +gregoire +grabowski +gosselin +gammon +fancher +edens +desai +butt +brannan +armendariz +woolsey +whitehouse +whetstone +ussery +towne +tower +testa +tallman +studer +strait +steinmetz +sorrells +sauceda +rolfe +rae +paddock +mitchem +mcginn +mccrea +luck +lovato +ling +hazen +gilpin +gaynor +fike +devoe +delrio +curiel +burkhardt +bristol +bode +backus +alton +zinn +watanabe +wachter +vanpelt +turnage +shaner +schroder +sato +riordan +quimby +portis +natale +mckoy +mccown +marker +lucio +kilmer +karl +hotchkiss +hesse +halbert +gwinn +godsey +desmond +delisle +chrisman +canter +brook +arbogast +angell +acree +yancy +woolley +wesson +weatherspoon +trainor +stockman +spiller +sipe +rooks +reavis +propst +porras +neilson +mullens +loucks +llewellyn +lamont +kumar +koester +klingensmith +kirsch +kester +honaker +hodson +hennessy +helmick +garrity +garibay +fee +drain +casarez +callis +botello +bay +aycock +avant +angle +wingard +wayman +tully +theisen +szymanski +stansbury +segovia +rudy +rainwater +preece +pirtle +padron +mincey +mckelvey +mathes +marty +larrabee +kornegay +klug +judy +ingersoll +hecht +germain +eggers +dykstra +denis +deering +decoteau +deason +dearing +cofield +carrigan +brush +bonham +bahr +aucoin +appleby +almonte +yager +womble +wimmer +weimer +vanderpool +stancil +sprinkle +romine +remington +pfaff +peckham +olivera +meraz +maze +lathrop +koehn +jonas +hazelton +halvorson +hallock +haddock +ducharme +dehaven +colton +caruthers +brehm +bosworth +bost +blow +bias +beeman +basile +bane +aikens +zachary +wold +walther +tabb +suber +strawn +stocks +stocker +shirey +schlosser +salvador +riedel +rembert +reimer +pyles +pickle +peele +merriweather +letourneau +latta +kidder +hixon +hillis +hight +herbst +henriquez +haygood +hamill +gabel +fritts +eubank +duty +dawes +correll +coffee +cha +bushey +buchholz +brotherton +bridge +botts +barnwell +auger +atchley +westphal +veilleux +ulloa +truman +stutzman +shriver +ryals +prior +pilkington +newport +moyers +miracle +marrs +mangrum +maddux +lockard +laing +kuhl +harney +hammock +hamlett +felker +doerr +depriest +carrasquillo +carothers +bogle +blood +bischoff +bergen +albanese +wyckoff +vermillion +vansickle +thibault +tetreault +stickney +shoemake +ruggiero +rawson +racine +philpot +paschal +mcelhaney +mathison +legrand +lapierre +kwan +kremer +jiles +hilbert +geyer +faircloth +ehlers +egbert +desrosiers +dalrymple +cotten +cashman +cadena +breeding +boardman +alcaraz +ahn +wyrick +therrien +tankersley +strickler +puryear +plourde +pattison +pardue +milan +mcginty +mcevoy +landreth +kuhns +koon +hewett +giddens +everette +emerick +eades +deangelis +cosme +ceballos +birdsong +benham +bemis +armour +anguiano +angeles +welborn +tsosie +storms +shoup +sessoms +samaniego +rood +rojo +rhinehart +raby +northcutt +myer +munguia +morehouse +more +mcdevitt +mateo +mallett +lozada +lemoine +kuehn +hallett +grim +gillard +gaylor +garman +gallaher +feaster +faris +darrow +dardar +coney +carreon +byron +braithwaite +boylan +boyett +born +bixler +bigham +benford +barragan +barnum +zuber +wyche +westcott +vining +stoltzfus +simonds +shupe +sabin +ruble +rittenhouse +richman +perrone +mulholland +millan +meister +mathew +lomeli +kite +jemison +hulett +holler +hickerson +herold +hazelwood +griffen +gause +forde +eisenberg +dilworth +charron +chaisson +brodie +bristow +breunig +brace +boutwell +bentz +belk +bayless +batchelder +baran +baeza +zimmermann +weathersby +volk +toole +theis +tedesco +shine +searle +schenck +satterwhite +sandy +ruelas +royce +rankins +partida +nesbit +morel +menchaca +levasseur +kaylor +johnstone +hulse +hollar +hersey +harrigan +harbison +guyer +gish +giese +gerlach +geller +geisler +falcone +ernest +elwell +doucet +deese +darr +corder +chafin +byler +bussell +burdett +brasher +bowe +bellinger +bastian +barner +alleyne +wilborn +weil +wegner +wales +tatro +spitzer +smithers +schoen +resendez +pete +parisi +overman +obrian +mudd +moy +mclaren +mahler +maggio +lindner +lalonde +lacasse +laboy +killion +kahl +jessen +jamerson +houk +henshaw +gustin +groom +graber +durst +duenas +davey +cundiff +conlon +colunga +coakley +chiles +capers +buell +bricker +bissonnette +birmingham +bartz +bagby +zayas +volpe +treece +toombs +thom +terrazas +swinney +skiles +silveira +shouse +senn +rambo +ramage +nez +moua +marlin +malik +langham +kyles +holston +hoagland +herd +hector +feller +emory +denison +corliss +carraway +burford +bickel +ambriz +abercrombie +yamada +winner +weidner +waddle +verduzco +thurmond +swindle +schrock +sanabria +rosenberger +probst +peabody +olinger +neighbors +nazario +mccafferty +mcbroom +mcabee +mazur +matherne +mapes +leverett +killingsworth +heisler +griego +grande +gosnell +frankel +franke +ferrante +fenn +elmer +ehrlich +christopherso +chick +chasse +chancellor +caton +brunelle +bly +bloomfield +babbitt +azevedo +abramson +ables +abeyta +youmans +wozniak +wainwright +summer +stowell +smitherman +sites +samuelson +runge +rule +rothman +rosenfeld +quan +peake +oxford +owings +olmos +munro +moreira +leatherwood +larkins +krantz +kovacs +kizer +kindred +karnes +jaffe +hubbell +hosey +hauck +harold +goodell +favors +erdman +dvorak +doane +cureton +cofer +buehler +bierman +berndt +banta +annis +abram +abdullah +warwick +waltz +turcotte +trinh +torrey +stith +seger +sachs +quesada +pinder +peppers +pascual +paschall +parkhurst +ozuna +oster +nicholls +mortimer +lheureux +lavalley +kimura +jablonski +haun +gourley +gilligan +fix +derby +croy +cotto +cargill +burwell +burgett +buckman +brett +booher +adorno +wrenn +whittemore +urias +szabo +sayles +saiz +rutland +rael +plant +pharr +penney +pelkey +ogrady +nickell +musick +moats +mather +massa +laurent +kirschner +kieffer +kellar +hendershot +gott +godoy +gadson +furtado +fiedler +erskine +edison +dutcher +dever +daggett +chevalier +chao +brake +ballesteros +amerson +alejandro +wingo +waldon +trott +spikes +silvey +showers +schlegel +rue +ritz +pepin +pelayo +parsley +palermo +moorehead +mchale +lett +kocher +kilburn +iglesias +humble +hulbert +huckaby +hix +haven +hartford +hardiman +gurney +grigg +grasso +goings +fillmore +farber +depew +dandrea +dame +cowen +covarrubias +cory +burrus +bracy +ardoin +thompkins +suzuki +standley +russel +radcliffe +pohl +persaud +percy +parenteau +pabon +newson +newhouse +napolitano +mulcahy +maya +malave +keim +hooten +hernandes +heffernan +hearne +greenleaf +glick +fuhrman +fetter +faria +dishman +dickenson +crites +criss +clapper +chenault +castor +casto +bugg +bove +bonney +blessing +ard +anderton +allgood +alderson +woodman +wisdom +warrick +toomey +tooley +tarrant +summerville +stebbins +sokol +sink +searles +schutz +schumann +scheer +remillard +raper +proulx +palmore +monroy +miguel +messier +melo +melanson +mashburn +manzano +lussier +lovely +lien +jenks +huneycutt +hartwig +grimsley +fulk +fielding +fidler +engstrom +eldred +dantzler +crandell +ching +calder +brumley +breton +brann +bramlett +boykins +bianco +bancroft +almaraz +alcantar +whitmer +whitener +welton +vineyard +su +rahn +paquin +mizell +mix +mcmillin +mckean +marston +maciel +lundquist +louie +liggins +lampkin +kranz +koski +kirkham +jiminez +hazzard +harrod +graziano +grammer +gendron +garrido +fordham +englert +elwood +dryden +demoss +deluna +crabb +comeau +claudio +brummett +blume +benally +wessel +vanbuskirk +thorson +stumpf +stockwell +rocco +reams +radtke +rackley +pelton +niemi +newland +nelsen +morrissette +miramontes +mcginley +mccluskey +marley +marchant +luevano +lampe +lail +jeffcoat +infante +hu +hinman +gaona +erb +eady +desmarais +decosta +dansby +cisco +choe +breckenridge +bostwick +borg +bianchi +beer +alberts +adrian +wilkie +whorton +vargo +tait +sylvia +soucy +schuman +ousley +mumford +lum +lippert +leath +lavergne +laliberte +kirksey +kenner +johnsen +izzo +hiles +gullett +greenwell +gaspar +galbreath +gaitan +ericson +duck +delapaz +croom +cottingham +clift +bushnell +boozer +bice +bernardo +beason +arrowood +waring +voorhees +truax +shreve +shockey +schatz +sandifer +rubino +rozier +roseberry +roll +player +pieper +peden +nester +nave +murphey +malinowski +macgregor +liang +lafrance +kunkle +kirkman +jorge +hipp +hasty +haddix +gervais +gerdes +garfield +gamache +fouts +fitzwater +dillingham +deming +deanda +cedeno +cannady +burson +bouldin +arceneaux +woodhouse +whitford +wescott +welty +weigel +torgerson +toms +surber +sunderland +sterner +setzer +salvatore +riojas +pumphrey +puga +pedro +patch +metts +mcgarry +mccandless +magill +lupo +loveland +llamas +leclerc +koons +kahler +huss +holbert +heintz +haupt +grimmett +gaskill +flower +ellingson +dorr +dingess +deweese +desilva +crossley +cordeiro +converse +conde +cheeks +caldera +cairns +burmeister +burkhalter +brawner +bott +youngs +vierra +valladares +tiffany +shrum +shropshire +sevilla +rusk +roof +rodarte +pedraza +nino +montana +merino +mcminn +markle +mapp +lucia +lajoie +koerner +kittrell +kato +hyder +hollifield +heiser +hazlett +greenwald +fant +eldredge +dreher +delafuente +cravens +claypool +beecher +aronson +alanis +worthen +wojcik +winger +whitacre +wellington +valverde +valdivia +troupe +thrower +swindell +suttles +suh +stroman +spires +slate +shealy +sarver +sartin +sadowski +rondeau +rolon +rick +rex +rascon +priddy +pine +paulino +nolte +munroe +molloy +mellon +mciver +lykins +loggins +lillie +lenoir +klotz +kempf +jone +hupp +hollowell +hollander +haynie +hassan +harkness +harker +gottlieb +frith +eddins +driskell +doggett +densmore +charette +cassady +carrol +byrum +burcham +buggs +benn +whitted +warrington +vandusen +vaillancourt +steger +spell +siebert +scofield +quirk +purser +plumb +orcutt +northern +nordstrom +mosely +michalski +mcphail +mcdavid +mccraw +martini +marchese +mannino +leo +lefevre +largent +lanza +kress +isham +hunsaker +hoch +hildebrandt +guarino +grijalva +graybill +fick +ewell +ewald +deangelo +cusick +crumley +coston +cathcart +carruthers +bullington +brian +bowes +blain +blackford +barboza +yingling +woodland +wert +weiland +varga +silverstein +sievers +shuster +shumway +scudder +runnels +rumsey +renfroe +provencher +polley +mohler +middlebrooks +kutz +koster +korn +grow +groth +glidden +fazio +deen +corn +copper +chipman +chenoweth +champlin +cedillo +carrero +carmody +buckles +brien +boutin +bosch +bill +berkowitz +altamirano +wilfong +wiegand +waites +truesdale +toussaint +tobey +tedder +steelman +sirois +schnell +robichaud +ridge +richburg +pray +plumley +pizarro +piercy +ortego +oberg +neace +music +mickey +mertz +mcnew +matta +lawyer +lapp +lair +kibler +jessie +howlett +hollister +hofer +hatten +hagler +germany +falgoust +engelhardt +eberle +eastwood +dombrowski +dinsmore +daye +cool +casares +capone +braud +balch +autrey +wendel +tyndall +toy +strobel +stoltz +spinelli +serrato +rochester +reber +real +rathbone +palomino +noah +nickels +mayle +mathers +mach +loeffler +littrell +levinson +leong +lemire +lejeune +lazo +lasley +koller +kennard +jester +hoelscher +hintz +hagerman +greaves +fore +eudy +engler +corrales +cordes +brunet +bidwell +bennet +bare +tyrrell +tharpe +swinton +stribling +steven +southworth +sisneros +shane +savoie +samons +ruvalcaba +roscoe +ries +ramer +omara +mosqueda +millar +mcpeak +macomber +luckey +litton +lehr +lavin +hubbs +hoard +hibbs +hagans +futrell +exum +evenson +dicks +culler +chou +carbaugh +callen +brashear +bloomer +blakeney +bigler +addington +woodford +witter +unruh +tolentino +sumrall +stgermain +smock +sherer +salem +rochelle +rayner +pooler +oquinn +nero +milano +mcglothlin +mars +linden +kowal +kerrigan +ibrahim +harvell +hanrahan +goodall +geist +fussell +fung +ferebee +federico +eley +eggert +dorsett +dingman +destefano +colucci +clemmer +caesar +burnell +brumbaugh +boddie +berryhill +avelar +alcantara +abbey +winder +winchell +vandenberg +trotman +thurber +thibeault +stlouis +stilwell +sperling +shattuck +sarmiento +ruppert +rumph +renaud +randazzo +rademacher +quiles +pearman +palomo +mercurio +lowrey +lindeman +lawlor +larosa +lander +labrecque +kimber +hovis +holifield +henninger +hawkes +hartfield +hann +hague +genovese +garrick +fudge +frink +eddings +dinh +dear +cutter +cribbs +constant +calvillo +bunton +brodeur +bolding +blanding +agosto +zahn +wiener +trussell +tew +tello +teixeira +stephan +speck +sharma +shanklin +sealy +scanlan +santamaria +roundy +robichaux +ringer +rigney +prevost +polson +philip +pass +nord +moxley +mohammed +medford +mccaslin +mcardle +macarthur +lewin +lasher +ketcham +keiser +heine +hackworth +grose +grizzle +grass +gillman +gartner +garth +frazee +fleury +fast +edson +edmonson +derry +deck +cronk +conant +burress +burgin +broom +brockington +bolick +boger +birchfield +billington +baily +bahena +armbruster +anson +yoho +wilcher +tinney +timberlake +thoma +thielen +sutphin +stultz +sikora +serra +schulman +scheffler +santillan +robin +rego +preciado +pinkham +monday +mickle +luu +lomas +lizotte +lent +lenard +kellerman +keil +juan +johanson +hernadez +hartsfield +hang +haber +gorski +farkas +eberhardt +duquette +delano +cropper +cozart +cockerham +chamblee +cartagena +cahoon +buzzell +brister +brewton +blackshear +benfield +aston +ashburn +arruda +wetmore +weise +vaccaro +tucci +sudduth +stromberg +stoops +showalter +shears +runion +rowden +rosenblum +riffle +renfrow +peres +obryant +nicolas +leftwich +lark +landeros +kistler +killough +kerley +kastner +hoggard +hartung +guertin +govan +gatling +gailey +fullmer +fulford +flatt +esquibel +endicott +edmiston +edelstein +dufresne +dressler +dickman +chee +busse +bonnett +bogart +berard +barrington +arena +anton +yoshida +velarde +veach +vanhouten +vachon +tolson +tolman +tennyson +stites +soler +shutt +ruggles +rhone +pegues +ong +neese +muro +moncrief +mefford +mcphee +mcmorris +mceachern +mcclurg +mansour +mai +mader +leija +lecompte +lafountain +labrie +jaquez +heald +hash +hartle +gainer +frisby +farina +eidson +edgerton +dyke +durrett +duhon +cuomo +cobos +cervantez +bybee +brockway +borowski +binion +beery +arguello +amaro +acton +yuen +winton +wigfall +weekley +vidrine +vannoy +tardiff +shoop +shilling +schick +sand +safford +prendergast +pilgrim +pellerin +osuna +nissen +nalley +moritz +moller +messner +messick +merry +merrifield +mcguinness +matherly +marcano +mahone +lemos +lebrun +jara +hoffer +hewlett +herren +hecker +haws +haug +hack +gwin +gober +gilliard +fredette +favela +echeverria +downer +donofrio +desrochers +dee +crozier +corson +clyde +bechtold +argueta +aparicio +zamudio +willette +westover +westerman +utter +troyer +thies +tapley +slavin +shirk +sandler +roop +rimmer +raymer +range +radcliff +otten +moorer +millet +mckibben +mccutchen +mcavoy +mcadoo +mayorga +mastin +martineau +marek +madore +leflore +kroeger +kennon +jimerson +javier +hostetter +hornback +hendley +hance +guardado +granado +gowen +goodale +flinn +fleetwood +fitz +durkee +duprey +dipietro +dilley +clyburn +brawley +beckley +arana +weatherby +vollmer +victoria +vestal +tunnell +trigg +tingle +takahashi +sweatt +storer +snapp +shiver +rooker +red +rathbun +poisson +perrine +perri +pastor +parmer +parke +pare +papa +palmieri +nottingham +midkiff +mecham +mccomas +mcalpine +lovelady +lillard +lally +knopp +kile +kiger +haile +gupta +goldsberry +gilreath +fulks +friesen +franzen +flack +findlay +ferland +dreyer +dore +dennard +deckard +debose +crim +coulombe +cork +chancey +cantor +branton +bissell +barns +woolard +witham +wasserman +waldo +spiegel +shoffner +scholz +ruch +rossman +ready +petry +palacio +paez +neary +mortenson +millsap +miele +mick +menke +mckim +mcanally +martines +manor +malcom +lemley +larochelle +klaus +klatt +kaufmann +kapp +helmer +hedge +halloran +glisson +frechette +fontana +enoch +eagan +drum +distefano +danley +creekmore +chartier +chaffee +carillo +burg +bolinger +berkley +benz +basso +bash +barrier +zelaya +woodring +witkowski +wilmot +wilkens +wieland +virgil +verdugo +urquhart +tsai +timms +swiger +swaim +sussman +scarlett +pires +molnar +mcatee +maurice +lowder +loos +linker +landes +kingery +keeley +hufford +higa +hendren +hammack +hamann +gillam +gerhardt +fell +eugene +edelman +eby +delk +deans +curl +constantine +cleaver +claar +casiano +carruth +carlyle +bump +brophy +bolanos +bibbs +bessette +beggs +baugher +bartel +averill +andresen +amin +alden +adames +wildman +via +valente +turnbow +tse +swink +sublett +stroh +stringfellow +ridgway +pugliese +poteat +pang +ohare +neubauer +murchison +mohamed +mingo +lucky +lemmons +kwon +kellam +kean +jarmon +hyden +hudak +hollinger +henkel +hemingway +hasson +hansel +halter +haire +goodnight +ginsberg +gillispie +fogel +flory +etter +elledge +eckman +deas +currin +crafton +coomer +colter +claxton +bulter +braddock +bowyer +blizzard +binns +bing +bellows +baskerville +barros +ansley +woolf +wight +waldman +wadley +tull +trull +tesch +struck +stouffer +stadler +slay +shubert +sedillo +santacruz +reinke +raleigh +poynter +neri +neale +natividad +mowry +moralez +monger +mitchum +merryman +manion +macdougall +lux +litchfield +ley +levitt +lepage +lasalle +laine +khoury +kavanagh +karns +ivie +huebner +hodgkins +halpin +garica +eversole +dutra +dunagan +duffey +dillman +dillion +deville +dearborn +damato +courson +coulson +burdine +bryce +bousquet +bonin +bish +atencio +westbrooks +wages +vaca +tye +toner +tomas +tillis +swett +surface +struble +stanfill +son +solorzano +slusher +sipple +sim +silvas +shults +schexnayder +saez +rodas +rager +pulver +plaza +penton +paniagua +meneses +mcfarlin +mcauley +matz +maloy +magruder +lohman +landa +lacombe +jaimes +hom +holzer +holst +heil +hackler +grundy +gregor +gilkey +farnham +durfee +dunton +dunston +duda +dews +dana +craver +corriveau +conwell +colella +chambless +bremer +boutte +bourassa +blaisdell +backman +babineaux +audette +alleman +towner +taveras +tarango +sullins +suiter +stallard +solberg +schlueter +poulos +pimental +owsley +olivier +okelley +nations +moffatt +metcalfe +meekins +medellin +mcglynn +mccowan +marriott +marable +lennox +lamoureux +koss +kerby +karp +jason +isenberg +howze +hockenberry +highsmith +harbour +hallmark +gusman +greeley +giddings +gaudet +gallup +fleenor +eicher +edington +dimaggio +dement +demello +decastro +cruise +bushman +brundage +brooker +brooke +bourg +board +blackstock +bergmann +beaton +banister +argo +appling +wortman +watterson +villalpando +tillotson +tighe +sundberg +sternberg +stamey +speaks +shipe +seeger +scarberry +sattler +sain +rothstein +poteet +plowman +pettiford +penland +peach +partain +pankey +oyler +ogletree +ogburn +moton +million +merkel +mask +markus +lucier +lazarus +lavelle +lakey +kratz +kinser +kershaw +josephson +jesse +imhoff +ibanez +hendry +hammon +frisbie +friedrich +frawley +fraga +forester +eskew +emmert +drennan +doyon +dominick +dandridge +cumming +cawley +carvajal +bracey +belisle +batey +ahner +wysocki +weiser +veliz +tincher +sherlock +santo +sansone +sankey +sandstrom +sale +rohrer +risner +pridemore +pfeffer +persinger +peery +oubre +orange +nowicki +musgrave +murdoch +mullinax +mccary +mathieu +livengood +leonardo +kyser +klink +kimes +kellner +kavanaugh +kasten +imes +hoey +hinshaw +halley +hake +gurule +grube +grillo +geter +gatto +garver +garretson +farwell +eiland +dunford +decarlo +corso +core +colman +collard +cleghorn +chasteen +cavender +carlile +calvo +byerly +brogdon +broadwater +breault +bono +bergin +behr +ballenger +amick +yan +vice +tamez +stiffler +steinke +simmon +shankle +schaller +salmons +sackett +saad +rideout +reader +ratcliffe +rao +ranson +randell +plascencia +petterson +olszewski +olney +olguin +nilsson +nevels +morelli +montiel +monge +michell +michaelson +mertens +mcchesney +mcalpin +mathewson +lower +loudermilk +lineberry +liggett +lamp +kinlaw +kight +just +jost +hereford +hardeman +halpern +halliday +hafer +gaul +friel +freitag +frances +forsberg +evangelista +doering +dicarlo +dendy +delp +deguzman +dameron +curtiss +cousin +cosper +charley +cauthen +cao +camper +bradberry +bouton +bonnell +bixby +bieber +beveridge +belle +bedwell +barhorst +bannon +baltazar +baier +ayotte +attaway +arenas +alex +abrego +watford +valley +turgeon +tunstall +thaxton +thai +tenorio +stotts +sthilaire +spiker +shedd +seng +seabolt +scalf +salyers +ruhl +rowlett +robinett +pfister +perlman +pepe +parkman +paradise +olin +nunnally +norvell +napper +modlin +mckellar +mcclean +mascarenas +manchester +leibowitz +ledezma +kuhlman +kobayashi +hunley +holmquist +hinkley +hazard +hartsell +gribble +gravely +fifield +eliason +doctor +doak +crossland +cover +clair +carleton +butters +bridgeman +bojorquez +boggess +banker +auten +woosley +wine +whiteley +wexler +twomey +tullis +townley +to +standridge +stamp +springs +santoyo +rueda +riendeau +revell +pless +ottinger +nigro +nickles +mulvey +menefee +mcshane +mcloughlin +mckinzie +marrow +markey +mariano +lockridge +lipsey +knisley +knepper +kitts +kiel +jinks +hathcock +godin +gallego +fikes +fecteau +estabrook +ellinger +dustin +dunlop +dudek +diego +countryman +chauvin +chatham +bullins +brownfield +boughton +bloodworth +bibb +baucom +barbieri +aubin +armitage +alessi +absher +abbate +zito +woolery +wiggs +wacker +violette +tynes +tolle +telles +tarter +swarey +strode +stockdale +stella +stalnaker +spina +schiff +saari +risley +reading +rameriz +rakes +pettaway +penner +paulus +palladino +omeara +montelongo +melnick +mehta +mcgary +mccourt +mccollough +marchetti +manzanares +lowther +leiva +lauderdale +lafontaine +kowalczyk +knighton +joubert +jaworski +ide +huth +hurdle +hung +housley +hackman +gulick +gordy +gilstrap +gehrke +gebhart +gaudette +foxworth +finger +essex +endres +dunkle +clare +cimino +cardinal +caddell +brauer +braley +bodine +blackmore +belden +backer +ayer +andress +alva +wisner +walk +vuong +valliere +twigg +tso +tavarez +strahan +steib +staub +sowder +shoulders +seiber +schutt +scharf +schade +rodriques +risinger +renshaw +rath +rahman +presnell +pillow +piatt +pasquale +nieman +nicol +nevins +milford +mcilwain +mcgaha +mccully +mccomb +maye +massengale +macedo +lines +lesher +leland +kearse +jauregui +husted +hudnall +holmberg +hertel +hershey +hardie +glidewell +frausto +fassett +dash +dalessandro +dahlgren +corum +constantino +conlin +colquitt +colombo +claycomb +carley +cardin +cancel +buller +boring +boney +bocanegra +blazer +biggers +benedetto +araiza +andino +albin +zorn +werth +weisman +walley +vanegas +ulibarri +towers +towe +tedford +teasley +suttle +steffens +stcyr +squire +smythe +singley +sifuentes +shuck +session +schram +sass +rieger +ridenhour +rickert +richerson +rayborn +rabe +raab +pendley +pastore +ordway +moynihan +mellott +mckissick +mcgann +mccready +mauney +marrufo +list +lenhart +lazar +lafave +keele +kautz +jardine +jahnke +jacobo +hord +hardcastle +hageman +griffey +giglio +gehring +fortson +duque +duplessis +donner +dicken +derosier +deitz +dalessio +cyrus +cram +chi +center +castleman +candelario +callison +caceres +bozarth +biles +bejarano +beech +bashaw +avina +armentrout +angus +alverez +acord +zack +waterhouse +vereen +vanlandingham +uhl +strawser +shotwell +severance +seltzer +schoonmaker +schock +schaub +schaffner +roeder +rodrigez +riffe +rhine +rasberry +rancourt +railey +quade +pursley +prouty +perdomo +oxley +osterman +nickens +murphree +mounts +monte +merida +maus +mattern +masse +martinelli +mangan +lutes +ludwick +loney +laureano +lasater +knighten +kissinger +kimsey +kessinger +honea +hollingshead +hockett +heyer +heron +gurrola +gove +glasscock +gillett +galan +featherstone +eckhardt +duron +dunson +dasher +culbreth +cowden +cowans +claypoole +churchwell +chabot +caviness +cater +caston +callan +byington +burkey +boden +beckford +atwater +arms +archambault +alvey +alsup +yon +whisenant +weese +voyles +verret +tsang +tessier +sweitzer +sherwin +shaughnessy +revis +remy +prine +philpott +peavy +paynter +parmenter +ovalle +offutt +nightingale +newlin +nakano +myatt +muth +mohan +mcmillon +mccarley +mccaleb +maxson +marinelli +maley +macy +liston +letendre +kain +huntsman +hirst +hagerty +gulledge +greenway +grajeda +gorton +goines +gittens +frederickson +fanelli +embree +eichelberger +dunkin +dull +dixson +dillow +defelice +chumley +burleigh +borkowski +binette +biggerstaff +berglund +beller +audet +arbuckle +allain +alfano +zander +youngman +wittman +weintraub +vanzant +vaden +twitty +trader +toon +till +stollings +standifer +spinner +sines +shope +scalise +saville +romans +posada +pisano +otte +nolasco +napoli +mier +merkle +mendiola +melcher +mejias +mcmurry +mccalla +markowitz +marine +manis +mallette +macfarlane +lough +looper +landin +kittle +kinsella +kinnard +hobart +herald +helman +hellman +hartsock +halford +hage +gordan +glasser +gayton +gattis +gastelum +gaspard +frisch +force +fitzhugh +eckstein +eberly +dowden +despain +crumpler +crotty +cornelison +collin +colin +chouinard +chamness +catlin +cann +bumgardner +budde +branum +bradfield +braddy +borst +birdwell +bent +bazan +bank +banas +bade +aubrey +arango +ahearn +addis +zumwalt +wurth +wilk +widener +wagstaff +vella +urrutia +terwilliger +tart +steinman +staats +sloat +rives +riggle +revels +reichard +prickett +poff +pitzer +petro +pell +northrup +nicks +moline +mielke +maynor +mallon +magness +lingle +lindell +lieb +lesko +lebeau +lammers +lafond +kiernan +ketron +jurado +holmgren +hilburn +hayashi +hashimoto +harbaugh +hans +guillot +gard +froehlich +felipe +feinberg +falco +dufour +drees +doney +diep +delao +daves +dail +cutting +crowson +coss +congdon +carner +camarena +butterworth +burlingame +bouffard +bloch +bilyeu +barta +bakke +baillargeon +avent +aquilar +ake +aho +zeringue +yeh +yarber +wolfson +wendell +vogler +voelker +truss +troxell +thrift +strouse +spielman +sistrunk +shows +sevigny +schuller +schaaf +ruffner +routh +roseman +ricciardi +peraza +pegram +overturf +olander +odaniel +neu +millner +melchor +maxie +marvel +maroney +machuca +macaluso +livesay +layfield +laskowski +kwiatkowski +ko +kiley +kilby +julien +hovey +heywood +hayman +havard +harville +haigh +hagood +grieco +glassman +gebhardt +garry +freeze +fleischer +fann +elson +eccles +cunha +crumb +crew +blakley +bardwell +abshire +woodham +wines +welter +wargo +varnado +tutt +traynor +swaney +svoboda +stricker +stoffel +stambaugh +sickler +shackleford +selman +seaver +sansom +sanmiguel +royston +rourke +rockett +rioux +puleo +pitchford +persons +normand +nardi +mulvaney +middaugh +manners +malek +lodge +leos +lathan +kujawa +kimbro +killebrew +joshua +houlihan +hobby +hinckley +herod +hepler +hamner +hammel +hallowell +gonsalez +gingerich +gambill +funkhouser +fricke +fewell +falkner +endsley +dulin +drennen +deaver +dambrosio +clover +chadwell +ceasar +castanon +canon +burkes +brune +brisco +brinker +bowker +boldt +berner +bee +beaumont +beaird +bazemore +barrick +arnette +albano +younts +wunderlich +weidman +vanness +tu +toland +theobald +stickler +steiger +stanger +spies +spector +sollars +smedley +seibel +scoville +saito +rye +rummel +rude +rowles +rouleau +roos +rogan +roemer +ream +raya +purkey +priester +perreira +penick +paulin +parkins +overcash +oleson +nicely +neves +muldrow +minard +midgett +michalak +melgar +mcentire +mcauliffe +marti +marte +lydon +lindholm +leyba +leader +langevin +lagasse +lafayette +kesler +kelton +kao +kaminsky +jump +jaggers +humbert +huck +howarth +hinrichs +higley +gupton +guimond +gravois +giguere +fretwell +fontes +feeley +faucher +fall +evan +eichhorn +ecker +earp +dole +dinger +derryberry +demars +deel +copenhaver +collinsworth +colangelo +cloyd +claiborne +caulfield +carlsen +calzada +caffey +broadus +brenneman +bouie +bodnar +blaney +blanc +blades +beltz +behling +begin +barahona +yun +yockey +winkle +windom +wimer +wilford +wash +villatoro +trexler +teran +taliaferro +sydnor +swinson +snelling +smtih +siu +simonton +simoneaux +simoneau +sherrer +seavey +scheel +rushton +rupe +ruano +rodney +rippy +reiner +reiff +rabinowitz +quach +penley +odle +nock +minnich +mckown +mccarver +mcandrew +longley +laux +lamothe +lafreniere +kropp +krick +kates +jepson +huie +howse +howie +henriques +haydon +haught +hatter +hartzog +harkey +grimaldo +goshorn +gormley +gluck +gilroy +gillenwater +giffin +folks +fluker +feder +eyre +eshelman +eakins +dryer +disney +detwiler +delrosario +davisson +celestine +catalan +canning +calton +buster +brammer +botelho +blakney +bartell +averett +askins +aker +zak +worcester +witmer +wiser +winkelman +widmer +whittier +western +weitzel +wardell +wagers +ullman +tupper +tingley +tilghman +talton +simard +seda +scheller +sala +rundell +rost +roa +ribeiro +rabideau +primm +porch +polite +pinon +peart +ostrom +ober +nystrom +nussbaum +nurse +naughton +murr +moorhead +monti +monteiro +melson +meissner +mclin +mcgruder +marotta +makowski +majewski +madewell +lunt +lukens +leininger +lebel +lakin +laguna +kepler +jaques +hunnicutt +hungerford +hoopes +hertz +heins +hammers +halliburton +grosso +gravitt +glasper +gideon +gallman +gallaway +funke +fulbright +falgout +eakin +dostie +dorado +dewberry +derose +cutshall +crampton +costanzo +colletti +cloninger +claytor +chiang +canterbury +campagna +burd +brokaw +broaddus +bretz +brainard +binford +bilbrey +alpert +aitken +ahlers +zajac +yale +woolfolk +witten +windle +wayland +tramel +tittle +talavera +suter +straley +stetson +specht +sommerville +soloman +so +skeens +sigman +sibert +shavers +schuck +schmit +sartain +sabol +rosenblatt +rollo +rashid +rabb +province +polston +nyberg +northrop +navarra +muldoon +mulder +mikesell +mcdougald +mcburney +mauricio +mariscal +lui +lozier +lingerfelt +legere +latour +lagunas +lacour +kurth +ku +killen +kiely +kayser +kahle +julius +isley +huertas +hower +hinz +haugh +gumm +given +galicia +fortunato +flake +dunleavy +duggins +doby +digiovanni +devaney +deltoro +cribb +crank +corpuz +coronel +comfort +coen +charbonneau +caine +burchette +blakey +blakemore +bergquist +beene +beaudette +bayles +ballance +bakker +bailes +asberry +arwood +zucker +willman +whitesell +wald +walcott +vancleave +trump +trail +strasser +simas +shorts +shick +schleicher +schaal +saleh +rotz +resnick +raphael +rainer +partee +ollis +oller +oday +noles +munday +mountain +mong +millican +merwin +mazzola +mansell +magallanes +llanes +lewellen +lepore +kisner +keesee +jim +jeanlouis +ingham +hornbeck +hermes +hawn +hartz +harber +haffner +gutshall +guth +grays +grams +gowan +finlay +finkelstein +eyler +enloe +dungan +diez +dearman +dann +cull +crosson +creek +chronister +cassity +campion +callihan +butz +breazeale +blumenthal +billy +berkey +batty +batton +barge +arvizu +alexis +alderete +aldana +albaugh +abernethy +work +wolter +wille +tweed +tollefson +thomasson +teter +testerman +sproul +spates +southwick +soukup +skelly +senter +sealey +sawicki +sargeant +rossiter +rosemond +repp +pound +pink +pifer +ormsby +nickelson +naumann +morabito +monzon +millsaps +millen +mcelrath +marcoux +mantooth +madson +macneil +mackinnon +louque +leister +lampley +kushner +krouse +kirwan +june +jessee +janson +jahn +jacquez +islas +hutt +holladay +hillyer +hepburn +hensel +harrold +guadalupe +gingrich +geis +gales +fults +finnell +ferri +featherston +epley +ebersole +eames +dunigan +drye +dismuke +devaughn +delorenzo +damiano +confer +collum +clower +clow +claussen +clack +caylor +cawthon +casias +carreno +carlo +bluhm +bingaman +bewley +belew +beckner +beamer +barefoot +auld +amey +wolfenbarger +wilkey +wicklund +waltman +villalba +valero +valdovinos +ung +ullrich +tyus +twyman +trost +tardif +tanguay +stripling +steinbach +shumpert +sasaki +sappington +sandusky +reinhold +reinert +quijano +pye +poor +placencia +pinkard +phinney +perrotta +pernell +parrett +oxendine +owensby +orman +nuno +mori +mcroberts +mcneese +mckamey +mccullum +markel +mardis +maines +lueck +lubin +lefler +leffler +lavery +larios +labarbera +kershner +josey +jeanbaptiste +izaguirre +hermosillo +haviland +hartshorn +hamlet +hafner +ginter +getty +franck +fiske +emmett +dufrene +doody +davie +dangerfield +dahlberg +cuthbertson +crone +coffelt +claus +chidester +chesson +cauley +caudell +cantara +campo +caines +bullis +bucci +brochu +bosco +bogard +bickerstaff +benning +arzola +antonelli +adkinson +zellers +wulf +worsley +woolridge +whitton +westerfield +walczak +vassar +truett +trueblood +trawick +townsley +topping +tobar +telford +sung +steverson +stagg +sitton +sill +sherrell +sergent +schoenfeld +sarabia +rutkowski +rubenstein +rigdon +prentiss +pomerleau +plumlee +phoenix +philbrick +peer +patty +patnode +oloughlin +obregon +nuss +napoleon +morell +moose +mikell +mele +mcinerney +mcguigan +mcbrayer +lore +lor +look +lollar +lakes +kuehl +kinzer +kamp +joplin +jacobi +howells +holstein +hedden +hassler +harty +halle +greig +granville +gouge +goodrum +gerhart +geier +geddes +gast +forehand +ferree +fendley +feltner +fang +esqueda +encarnacion +eichler +egger +edmundson +eatmon +dragon +doud +donohoe +donelson +dilorenzo +digiacomo +diggins +delozier +dejong +danford +crippen +coppage +cogswell +clardy +cioffi +cabe +brunette +bresnahan +bramble +blomquist +blackstone +biller +bevis +bevan +bethune +benbow +baty +basinger +balcom +andes +aman +aguero +adkisson +yandell +wilds +whisenhunt +weigand +weeden +voight +villar +trottier +tillett +suazo +setser +scurry +schuh +schreck +schauer +samora +roane +rinker +reimers +reason +ratchford +popovich +parkin +nichol +natal +melville +mcbryde +magdaleno +loehr +lockman +lingo +leduc +larocca +lao +lamere +laclair +krall +korte +koger +jumper +jalbert +hughs +higbee +henton +heaney +haith +gump +greeson +goodloe +gholston +gasper +gagliardi +fregoso +farthing +fabrizio +ensor +elswick +elgin +eklund +eaddy +drouin +dorton +dizon +derouen +delia +deherrera +davy +dark +dampier +cullum +culley +cowgill +cardoso +cardinale +brodsky +broadbent +brimmer +briceno +branscum +bolyard +boley +bennington +beadle +baur +ballentine +azure +aultman +augustus +asuncion +arciniega +aguila +aceves +yepez +yap +woodrum +wethington +weissman +veloz +trusty +troup +trammel +theodore +tarpley +stivers +steck +sprayberry +spraggins +spitler +spiers +sohn +seagraves +schiffman +rudnick +rizo +riccio +rennie +quinton +quackenbush +puma +plott +pearcy +parada +paiz +munford +moskowitz +mease +mcnary +mccusker +matt +lozoya +longmire +loesch +lasky +kuhlmann +krieg +koziol +kowalewski +konrad +kindle +jowers +jolin +jaco +hua +horgan +hine +hileman +hepner +heise +heady +hawkinson +hannigan +haberman +guilford +grimaldi +gilles +garton +gagliano +fruge +follett +fiscus +ferretti +ebner +easterday +eanes +dirks +dimarco +depalma +deforest +dance +cruce +craighead +christner +candler +cadwell +burchell +buettner +brinton +breed +brazier +brannen +brame +bova +bomar +blakeslee +belknap +bangs +balzer +athey +armes +alvis +alverson +alvardo +alter +zhao +yeung +yen +wheelock +westlund +wessels +volkman +threadgill +thelen +tandy +tague +ta +symons +swinford +sturtevant +straka +stier +stagner +segarra +seawright +sack +rutan +roux +ringler +riker +ramsdell +quattlebaum +purifoy +poulson +permenter +peloquin +pasley +pagel +osman +obannon +nygaard +nipper +newcomer +munos +motta +meadors +mcquiston +mcniel +mcmann +mccrae +mayne +matte +martine +lucy +legault +lechner +lack +kucera +krohn +kratzer +koopman +judson +jeske +horrocks +homes +hock +hibbler +hesson +hersh +harvin +halvorsen +griner +grindle +glen +gladstone +garofalo +frampton +forbis +fernando +eddington +diorio +dingus +dewar +desalvo +curcio +creasy +cortese +cordoba +connally +cluff +cascio +capuano +canaday +calabro +bussard +brayton +borja +bigley +arnone +arguelles +acuff +zamarripa +wooton +wolfgang +widner +wideman +threatt +thiele +templin +teeters +synder +swint +swick +sturges +stogner +stedman +spratt +six +siegfried +shetler +scull +savino +sather +rothwell +rook +rone +rolf +rhee +quevedo +privett +pouliot +poche +pickel +petrillo +pellegrini +peaslee +partlow +otey +nunnery +morelock +morello +meunier +messinger +mckie +mccubbin +mccarron +maria +lerch +lavine +laverty +lariviere +lamkin +kugler +krol +kissel +keeter +hummer +hubble +hickox +hetzel +hayner +hagy +hadlock +groh +gregorio +gottschalk +goodsell +gloria +gerry +gassaway +garrard +galligan +fye +firth +fenderson +feinstein +etienne +engleman +emrick +ellender +drews +doiron +degraw +deegan +dart +crissman +corr +cookson +coil +cleaves +charest +chapple +chaparro +castano +carpio +byer +bufford +bridgewater +bridgers +brandes +borrero +bonanno +aube +ancheta +abarca +abad +yung +yim +wooster +woodrow +wimbush +willhite +willams +wigley +weisberg +wardlaw +vigue +vanhook +unknow +torre +tasker +tarbox +strachan +standard +slover +shamblin +semple +schuyler +schrimsher +sayer +salzman +salomon +rubalcava +riles +rickey +reneau +reichel +rayfield +rabon +pyatt +prindle +poss +polito +plemmons +pesce +perrault +pereyra +ostrowski +nilsen +niemeyer +nick +munsey +mundell +moncada +miceli +meader +mcmasters +mckeehan +matsumoto +marron +marden +lizarraga +lingenfelter +lewallen +laurence +langan +lamanna +kovac +kinsler +kephart +keown +kass +kammerer +jeffreys +hysell +householder +hosmer +hardnett +hanner +guyette +greening +glazer +ginder +fromm +fortuna +fluellen +finkle +fey +fessler +essary +eisele +duren +dittmer +crochet +cosentino +cogan +coelho +cavin +carrizales +campuzano +brough +bow +bopp +bookman +bobb +blouin +beesley +battista +bascom +bakken +badgett +arneson +anselmo +albino +ahumada +agustin +woodyard +wolters +wireman +wilton +willison +warman +wan +waldrup +vowell +vantassel +vale +twombly +toomer +tennison +teets +tedeschi +swanner +swallow +stutz +stelly +sheehy +schermerhorn +scala +sandidge +salters +salo +saechao +roseboro +rolle +ressler +renz +renn +redford +raposa +rainbolt +pompey +pelfrey +orndorff +oney +nolin +nimmons +ney +nardone +myhre +morman +mines +menjivar +mcglone +mccammon +maxon +maris +marciano +manus +maiden +lowrance +lorenzen +lonergan +lollis +littles +lindahl +lansing +lamas +lach +kuster +krawczyk +knuth +knecht +kirkendall +keitt +keever +kantor +jarboe +hoye +houchens +holter +holsinger +hickok +herb +helwig +helgeson +heater +hassett +harner +hamman +hames +hadfield +goree +goldfarb +gaughan +gaudreau +gantz +gallion +frady +foti +flesher +ferrin +faught +engram +elbert +donegan +desouza +degroot +cutright +crowl +criner +coke +coan +clinkscales +chewning +chavira +catchings +carlock +bye +bulger +buenrostro +bramblett +brack +boulware +bordeaux +bookout +bitner +birt +baranowski +baisden +augustin +allmon +alberto +acklin +yoakum +wilbourn +whisler +weinberger +washer +vasques +vanzandt +vanatta +troxler +tomes +tindle +tims +throckmorton +thach +stpeter +stlaurent +stenson +spry +spitz +songer +snavely +sly +sleeper +shroyer +shortridge +shenk +sevier +seabrook +scrivner +saltzman +rosenberry +rockwood +robeson +roan +reiser +redwine +ramires +raber +profit +posner +popham +pipes +piotrowski +pinard +peterkin +pelham +peiffer +peay +peavey +nadler +musso +milo +millett +mestas +mcgowen +marques +marasco +manriquez +manos +mair +lipps +lesser +leiker +leeds +krumm +knorr +kinslow +kessel +kendricks +kelm +ito +irick +ickes +hurlburt +horta +hoekstra +heuer +helmuth +heatherly +hampson +hagar +haga +greenlaw +grau +godbey +gingras +gillies +gibb +gayden +gauvin +garrow +fontanez +florio +fleischman +finke +fasano +fan +faith +ezzell +ewers +eveland +eckenrode +duclos +drumm +dimmick +delancey +defazio +deacon +dashiell +damian +cusack +crowther +crigger +cray +coolidge +coldiron +cleland +chalfant +cassel +cape +camire +cabrales +broomfield +brittingham +brisson +brickey +braziel +brazell +bragdon +boulanger +bos +boman +bohannan +beem +barto +barre +barley +baptist +azar +ashbaugh +armistead +almazan +adamski +zendejas +winburn +willaims +wilhoit +westberry +wentzel +wendling +wager +visser +vanscoy +vankirk +vallee +tweedy +thornberry +sweeny +stalker +spradling +spano +smelser +shim +sechrist +schall +scaife +rugg +ruben +rothrock +roesler +riehl +ridings +render +ransdell +radke +pinero +petree +pendergast +peluso +pecoraro +pascoe +panek +oshiro +noon +navarrette +murguia +moores +moberg +mike +michaelis +mcwhirter +mcsweeney +mcquade +mccay +mauk +mariani +marceau +mandeville +maeda +lunde +ludlow +loeb +lindo +linderman +leveille +leith +larock +lambrecht +kulp +kinsley +kimberlin +kesterson +jacinto +ice +hui +hoyos +helfrich +hanke +hail +guillermo +grisby +goyette +gouveia +glazier +gile +gerena +gelinas +gasaway +garden +funches +fujimoto +flynt +fenske +fellers +fehr +eslinger +escalera +enciso +duley +dittman +dineen +diller +devault +dao +collings +clymer +clowers +chavers +charland +castorena +castello +camargo +bunce +bullen +boyes +borchers +borchardt +birnbaum +birdsall +billman +benites +bankhead +ange +ammerman +adkison +yuan +winegar +wickman +wear +warr +warnke +villeneuve +veasey +vassallo +vannatta +vadnais +twilley +truelove +towery +tomblin +tippett +theiss +talkington +talamantes +swart +swanger +streit +straw +stines +stabler +spurling +sobel +sine +simmers +shippy +shiflett +shearin +sauter +sanderlin +rusch +runkle +ruckman +rorie +roesch +roberto +richert +rehm +randel +ragin +quesenberry +puentes +plyler +plotkin +paugh +oshaughnessy +ohalloran +norsworthy +niemann +nader +moorefield +mooneyham +modica +miyamoto +mickel +mebane +mckinnie +mazurek +mancilla +lukas +lovins +loughlin +lotz +lindsley +liddle +levan +lederman +leclaire +lasseter +lapoint +lamoreaux +lafollette +kubiak +kirtley +keffer +kaczmarek +jennette +housman +honey +hiers +hibbert +herrod +hegarty +hathorn +harsh +greenhaw +grafton +govea +gardener +futch +furst +frisbee +fred +franko +forcier +foran +flickinger +fairfield +eure +emrich +embrey +edgington +ecklund +eckard +durante +deyo +delvecchio +deeds +dade +currey +cuff +creswell +cottrill +casavant +cartier +cargile +capel +cammack +calfee +buzzard +burse +burruss +brust +brousseau +bridwell +braaten +borkholder +bloomquist +bjork +bartelt +arp +amburgey +yeary +yao +whitefield +vinyard +vicente +vanvalkenburg +twitchell +timmins +tester +tapper +stringham +starcher +spotts +slaugh +simonsen +sheffer +sequeira +rosati +rode +rhymes +reza +record +quint +pollak +peirce +patillo +parkerson +paiva +nilson +nice +nevin +narcisse +nair +mitton +merriam +merced +meiners +mckain +mcelveen +mcbeth +marsden +marez +manke +mahurin +mabrey +luper +krull +kees +iles +hunsicker +hornbuckle +holtzclaw +hirt +hinnant +heston +hering +hemenway +hegwood +hearns +halterman +halls +guiterrez +grote +granillo +grainger +glasco +gilder +garren +garlock +garey +fu +fryar +fredricks +fraizer +foxx +foshee +ferrel +felty +feathers +everitt +evens +esser +elkin +eberhart +durso +duguay +driskill +doster +dewall +deveau +demps +demaio +delreal +deleo +delay +deem +darrah +cumberbatch +culberson +cranmer +cordle +colgan +chesley +cavallo +castellon +castelli +carreras +carnell +carmon +carmen +carlucci +bottom +bontrager +blumberg +blasingame +becton +ayon +artrip +arline +andujar +alkire +alder +agan +zukowski +zuckerman +zehr +wroblewski +wrigley +woodside +wigginton +westman +westgate +werts +washam +wardlow +walser +waiters +teller +tadlock +stuck +stringfield +stimpson +stickley +starbuck +standish +spurlin +spindler +speller +spaeth +sotomayor +sok +sluder +shryock +shepardson +shatley +scannell +santistevan +rosner +rolland +rhode +resto +reinhard +rathburn +prisco +poulsen +pinney +phares +pennock +pastrana +oviedo +ostler +noto +nauman +mulford +moise +moberly +mirabal +ming +metoyer +metheny +mentzer +meldrum +mcinturff +mcelyea +mcdougle +massaro +lumpkins +loveday +lofgren +loe +lirette +lesperance +lefkowitz +ledger +lauzon +lain +lachapelle +kurz +klassen +keough +kempton +kaelin +jeffords +im +huot +hsieh +hoyer +horwitz +hopp +hoeft +hennig +haskin +grill +gourdine +golightly +girouard +fulgham +fritsch +freer +frasher +foulk +firestone +fiorentino +fedor +feather +ensley +englehart +eells +ebel +dunphy +donahoe +dimas +dileo +dibenedetto +dabrowski +crick +coonrod +conder +coddington +chunn +choy +chaput +cerna +carreiro +calahan +braggs +bourdon +boner +bollman +bittle +ben +behm +bauder +batt +barreras +aubuchon +anzalone +adamo +zhou +zerbe +zachery +witty +wirt +willcox +westberg +weikel +waymire +vroman +vinci +vallejos +tutor +truesdell +troutt +trotta +tollison +toles +tichenor +tai +symonds +surles +sunday +strayer +stgeorge +sroka +sorrentino +solares +snelson +silvestri +sikorski +shawver +schumaker +schorr +schooley +scates +satterlee +satchell +sacks +rymer +roselli +robitaille +riegel +richer +regis +reames +provenzano +proper +priestley +plaisance +pettey +palomares +oman +nowakowski +nace +monette +minyard +mclamb +mchone +mccarroll +masson +marco +magoon +maddy +lundin +loza +licata +lesley +leonhardt +lema +landwehr +kircher +kinch +karpinski +johannsen +hussain +houghtaling +hoskinson +hollaway +holeman +hobgood +hilt +hiebert +gros +gram +goggin +gentle +geissler +gadbois +gabaldon +fleshman +flannigan +files +fairman +epp +eilers +dycus +dunmire +duffield +dowler +ditto +deloatch +dehaan +deemer +corner +clayborn +christofferso +chilson +chesney +chatfield +charlie +caster +carron +canale +camden +buff +brigman +branstetter +bosse +borton +bonar +blau +biron +beagle +barroso +arvin +arispe +zacharias +zabel +yaeger +works +woolford +whetzel +weakley +veatch +vandeusen +tufts +troxel +troche +traver +townsel +tosh +talarico +swilley +sterrett +stenger +springfield +speakman +sowards +sours +souders +souder +soles +sobers +snoddy +smither +sias +shute +shoaf +shahan +schuetz +scaggs +santini +rosson +rolen +robidoux +rentas +recio +pixley +pawlowski +pawlak +paull +pascal +overbey +orear +oliveri +oldenburg +nutting +naugle +mote +mossman +moor +misner +milazzo +michelson +mei +mcentee +mccullar +mccree +mcaleer +mazzone +maxim +marshal +mandell +manahan +malott +maisonet +mailloux +lumley +lowrie +louviere +lipinski +lindemann +leppert +leopold +leasure +leaf +labarge +kubik +knisely +knepp +kenworthy +kennelly +kelch +karg +kanter +ignacio +hyer +houchin +hosley +hosler +hollon +holleman +heitman +hebb +haggins +gwaltney +guin +greenman +goulding +gorden +goodyear +geraci +georges +gathers +frison +feagin +falconer +espada +erving +erikson +eisenhauer +eder +ebeling +durgin +drown +dowdle +dinwiddie +delcastillo +dedrick +crimmins +covell +cournoyer +coria +cohan +cataldo +carpentier +canas +campa +brode +brashears +blaser +bicknell +berk +bednar +barwick +ascencio +althoff +almodovar +alamo +zirkle +zabala +xu +wolverton +winebrenner +wetherell +westlake +wegener +weddington +vong +tuten +trosclair +trim +tressler +theroux +teske +sword +swinehart +swensen +sundquist +southall +socha +sizer +silverberg +shortt +shimizu +sherrard +shen +shaeffer +seth +scheid +scheetz +saravia +sanner +rubinstein +rozell +romer +ringo +rheaume +reisinger +raven +randles +pullum +petrella +payan +papp +pablo +nordin +norcross +nicoletti +nicholes +newbold +nakagawa +mraz +monteith +milstead +milliner +mellen +mccardle +matthias +marcy +luft +loo +locker +liptak +lipp +leitch +latimore +larrison +landau +laborde +koval +izquierdo +hymel +hoskin +holte +hoefer +hayworth +hausman +harrill +harrel +hardt +gully +groover +grinnell +greenspan +graver +grandberry +gorrell +goldenberg +goguen +gilleland +garr +fuson +foye +felt +feldmann +everly +dyess +dyal +dunnigan +downie +dolby +divine +deatherage +dates +danna +cosey +corrado +cheever +celaya +caver +cashion +caplinger +cansler +byrge +bruder +brew +breuer +breslin +brazelton +botkin +bonneau +bones +bondurant +bohanan +bogue +boes +bodner +boatner +blatt +bickley +belliveau +beiler +beier +beckstead +bart +bang +bachmann +atkin +aron +andreas +altizer +alloway +allaire +albro +abron +zellmer +yetter +yelverton +wiltshire +wiens +whidden +wait +viramontes +vanwormer +topper +tarantino +tanksley +sumlin +strauch +strang +stice +spahn +sosebee +sigala +shrout +seamon +schrum +schneck +schantz +said +ruddy +romig +roehl +renninger +reding +pyne +polak +pohlman +pasillas +oldfield +oldaker +ohanlon +ogilvie +norberg +nolette +nies +neufeld +nellis +mummert +mulvihill +mullaney +monteleone +mendonca +meisner +mcmullan +mccluney +mattis +massengill +manfredi +luedtke +lounsbury +lora +liberatore +leek +lease +lazaro +lamphere +laforge +kuo +koo +jourdan +ismail +iorio +iniguez +ikeda +hubler +hodgdon +hocking +heacock +haslam +haralson +hanshaw +hannum +hallam +haden +garnes +garces +gammage +gambino +finkel +faucett +fahy +esteban +ehrhardt +eggen +dusek +durrant +dubay +dones +dey +depasquale +delucia +degraff +deer +decamp +davalos +darwin +dan +cullins +conard +clouser +clontz +cifuentes +chico +chappel +chaffins +celis +carwile +byram +bruggeman +brick +bressler +brathwaite +brasfield +bradburn +boose +boon +bodie +blosser +blas +bise +bertsch +bernardi +bernabe +bengtson +barrette +astorga +armand +antone +alday +albee +abrahamson +yarnell +wiltse +wile +wiebe +waguespack +vasser +upham +tyre +turek +tune +traxler +torain +tomaszewski +tinnin +tiner +tindell +teed +styron +stahlman +staab +spoon +spells +skiba +shih +sheperd +seidl +secor +schutte +sanfilippo +ruder +rondon +reina +rearick +rank +procter +prochaska +pettengill +pauly +neilsen +nally +mutter +mullenax +morano +meads +mcnaughton +mcmurtry +mcmath +mckinsey +matthes +massenburg +marlar +margolis +marcos +malin +magallon +mackin +lovette +loughran +loring +longstreet +loiselle +lenihan +laub +kunze +kull +koepke +knights +kerwin +kalinowski +kagan +innis +innes +husband +holtzman +heinemann +harshman +haider +haack +guss +grondin +grissett +greenawalt +gravel +goudy +goodlett +goldston +gokey +goin +gardea +galaviz +gafford +gabrielson +furlow +fritch +fordyce +folger +elizalde +ehlert +eckhoff +eccleston +ealey +dubin +dolphin +dieter +diemer +deschamps +delapena +decicco +debolt +daum +cullinan +crittendon +crase +cossey +coppock +coots +colyer +columbus +cluck +chamberland +cane +burkhead +bumpus +buchan +borman +bork +boe +birkholz +berardi +benda +behnke +barter +auer +amezquita +wotring +wirtz +wingert +wiesner +whitesides +weyant +wainscott +vivian +venezia +varnell +tussey +trainer +toll +thurlow +tack +tabares +stiver +stell +starke +stanhope +stanek +sisler +sinnott +sidney +siciliano +shehan +selph +seager +scurlock +scranton +santucci +santangelo +saltsman +ruel +ropp +rolling +rogge +rettig +renwick +reidy +reider +redfield +quam +premo +port +pier +peet +parente +paolucci +pan +palmquist +orme +ohler +ogg +netherton +mutchler +morita +mistretta +minnis +middendorf +menzel +mendosa +mendelson +meaux +mcspadden +mcquaid +mcnatt +manigault +maney +mager +lung +lukes +lopresti +liriano +lipton +letson +lechuga +lazenby +lauria +larimore +kwok +kwak +krupp +krupa +krum +kopec +kinchen +kifer +kerney +kerner +kennison +kegley +kays +karcher +justis +johson +jellison +janke +isabell +huskins +holzman +hollie +hinojos +highland +hefley +he +hatmaker +harte +halloway +hallenbeck +goodwyn +glaspie +gillian +geise +fullwood +fryman +frew +frakes +fraire +farrer +enlow +engen +ellzey +eckles +earles +ealy +dunkley +drinkard +dreiling +draeger +dinardo +dills +desroches +desantiago +current +curlee +crumbley +critchlow +coury +courtright +coffield +cleek +christen +charpentier +cardone +caples +cantin +buntin +bugbee +brinkerhoff +brackin +bourland +bohl +bogdan +blassingame +beacham +banning +auguste +andreasen +amann +almon +alejo +adelman +abston +zeno +yerger +wymer +woodberry +windley +whiteaker +westfield +weibel +wanner +waldrep +vital +villani +vanarsdale +utterback +updike +triggs +topete +tolar +tigner +thoms +tauber +tarvin +tally +swiney +sweatman +studebaker +streets +stennett +states +starrett +stannard +stalvey +sonnenberg +smithey +sieber +sickles +shinault +segars +sanger +salmeron +rothe +rizzi +rine +ricard +restrepo +ralls +ragusa +quiroga +ping +phung +pero +pegg +pavlik +papenfuss +oropeza +omar +okane +neer +nee +nathaniel +mudge +mozingo +molinaro +mikel +mcvicker +mcgarvey +mcfalls +mccraney +matus +magers +llanos +livermore +liss +linehan +leto +leitner +laymon +lawing +lawerence +lacourse +kwong +kollar +kneeland +keo +kennett +kellett +kangas +janzen +hutter +huse +huling +hoss +hohn +hofmeister +hewes +hern +harjo +habib +gust +guice +grullon +greggs +grayer +granier +grable +gowdy +giannini +getchell +gartman +garnica +ganey +gallimore +fray +fetters +fergerson +farlow +fagundes +exley +esteves +enders +edenfield +easterwood +drakeford +dipasquale +desousa +deshields +deeter +dedmon +debord +daughtery +cutts +courtemanche +coursey +copple +coomes +collis +coll +cogburn +clopton +choquette +chaidez +castrejon +calhoon +burbach +bulloch +buchman +bruhn +bohon +blough +bien +belmont +baynes +barstow +zeman +zackery +yardley +yamashita +wulff +wilken +wiliams +wickersham +wible +whipkey +wedgeworth +walmsley +walkup +vreeland +verrill +valera +umana +traub +timothy +swingle +swing +summey +stroupe +stockstill +steffey +stefanski +statler +stapp +speights +sons +solari +soderberg +slick +shunk +shorey +shewmaker +sheilds +schiffer +schank +schaff +sagers +rodger +rochon +riser +rickett +reale +raglin +poon +polly +polen +plata +pitcock +percival +palen +pahl +orona +oberle +nocera +navas +nault +mullings +mouser +moos +montejano +monreal +minick +middlebrook +meece +mcmillion +mccullen +mauck +marshburn +maillet +mahaney +magner +maclin +lucey +litteral +lippincott +leite +leis +leaks +laurie +lamarre +kost +jurgens +jesus +jerkins +jager +hurwitz +hughley +hotaling +horstman +hohman +hocker +hively +hipps +hile +hessler +hermanson +hepworth +henn +helland +hedlund +harkless +haigler +gutierez +gum +grindstaff +glantz +giardina +gerken +gadsden +freda +finnerty +feld +farnum +encinas +elton +eager +drakes +dennie +cutlip +curtsinger +couto +cortinas +corby +choice +chiasson +carle +carballo +brindle +borum +bober +blagg +birk +berthiaume +beahm +batres +basnight +barbara +backes +axtell +aust +au +atterberry +alvares +alt +alegria +abe +yow +yip +woodell +wojciechowski +winfree +winbush +wiest +wesner +wax +wamsley +wakeman +verner +truex +trafton +toman +thorsen +thor +theus +tellier +tallant +szeto +strope +stills +stage +sorg +simkins +shuey +shaul +servin +serio +serafin +senior +sebring +salguero +saba +ryerson +rudder +ruark +rother +rohrbaugh +rohrbach +rohan +rogerson +risher +rigg +reeser +pryce +prokop +prins +priebe +prejean +pinheiro +petrone +petri +penson +pearlman +parikh +pal +pair +natoli +murakami +mullikin +mullane +motes +morningstar +monks +mcveigh +mcgrady +mcgaughey +mccurley +masi +marchan +manske +maine +maez +lusby +linde +lile +likens +licon +leroux +lemaire +legette +lax +laskey +laprade +laplant +lady +kolar +kittredge +kinley +kerber +kanagy +johannes +jetton +jayne +january +janik +ippolito +inouye +hunsinger +howley +howery +horrell +hoosier +holthaus +hiner +hilson +hilderbrand +hasan +hartzler +harnish +harada +hansford +halligan +hagedorn +gwynn +gudino +greenstein +greear +gracey +goudeau +gose +goodner +ginsburg +gerth +gerner +fyfe +fujii +frier +frenette +folmar +fleisher +fleischmann +fetzer +fern +eisenman +earhart +dupuy +dunkelberger +drummer +drexler +dillinger +dilbeck +diana +dewald +demby +deford +daniell +dake +craine +como +clever +chesnut +casady +carstens +carrick +carino +carignan +canchola +cale +bushong +burman +buono +brownlow +broach +britten +brickhouse +boyden +boulton +borne +borland +bohrer +blubaugh +bever +berggren +benevides +arocho +arends +amezcua +almendarez +zalewski +witzel +winkfield +wilhoite +vara +vangundy +vanfleet +vanetten +vandergriff +urbanski +tyrell +troiano +tickle +thibodaux +straus +stoneking +stjean +stillings +stiff +stange +square +speicher +speegle +sowa +smeltzer +slawson +simmonds +shuttleworth +serpa +senger +seidman +schweiger +schloss +schimmel +schechter +sayler +sabb +sabatini +ronan +rodiguez +riggleman +richins +reep +reamer +prunty +porath +plunk +piland +philbrook +pettitt +perna +peralez +pascale +padula +oboyle +nivens +nickols +murph +mundt +munden +montijo +mcmanis +mcgrane +mccrimmon +manzi +mangold +malick +mahar +maddock +lust +losey +loop +litten +liner +leff +leedy +leavell +ladue +krahn +kluge +junker +iversen +imler +hurtt +huizar +hubbert +howington +hollomon +holdren +hoisington +hise +heiden +hauge +hartigan +gutirrez +griffie +greenhill +gratton +granata +gottfried +gertz +gautreaux +furry +furey +funderburg +flippen +fitzgibbon +fergus +felice +eye +dyar +drucker +donoghue +dildy +devers +detweiler +despres +denby +degeorge +cueto +cranston +courville +clukey +cirillo +chon +chivers +caudillo +catt +butera +bulluck +buckmaster +braunstein +bracamonte +bourdeau +border +bonnette +bobadilla +boaz +blackledge +beshears +bernhard +bergeson +baver +barthel +balsamo +bak +aziz +awad +authement +altom +altieri +abels +zigler +zhu +younker +yeomans +yearwood +wurster +winget +whitsett +wechsler +weatherwax +wathen +warriner +wanamaker +walraven +viens +vandemark +vancamp +uchida +triana +tinoco +terpstra +tellis +tarin +taranto +takacs +studdard +struthers +strout +stiller +spataro +soderquist +sliger +silberman +shurtleff +sheetz +schillinger +ritch +reif +raybon +ratzlaff +radley +putt +putney +prime +press +pinette +piner +petrin +parise +osbourne +nyman +northington +noblitt +nishimura +nell +neher +nalls +naccarato +mucha +mounce +miron +millis +meaney +mcnichols +mckinnis +mcjunkin +mcduffy +max +marcello +manrique +mannion +mangual +malveaux +mains +lumsden +lucien +lohmann +lipe +lightsey +lemasters +leist +laxton +laverriere +latorre +lamons +kral +kopf +knauer +kitt +kaul +karas +kamps +jusino +janis +islam +hullinger +huges +hornung +hiser +hempel +helsel +hassinger +hargraves +hammes +hallberg +gutman +gumbs +gruver +graddy +gonsales +goncalves +glennon +gilford +geno +freshour +flippo +fifer +few +fermin +fason +farrish +fallin +ewert +estepp +escudero +ensminger +emmanuel +emberton +elms +ellerbe +eide +dysart +dougan +dierking +dicus +detrick +deroche +depue +demartino +delosreyes +dalke +culbreath +crownover +crisler +crass +corsi +chagnon +centers +cavanagh +casson +carollo +cadwallader +burnley +burciaga +burchard +broadhead +boris +booze +bolte +body +berens +bellman +bellard +baril +arden +antonucci +amado +allie +wolfgram +winsor +wimbish +wilbert +wier +wallach +viveros +vento +varley +vanslyke +vangorder +touchstone +tomko +tiemann +throop +tamura +talmadge +swayze +sturdevant +strauser +stolz +stenberg +stayton +spohn +spillers +spillane +sluss +sloane +slavens +simonetti +shofner +shead +senecal +seales +schueler +schley +schacht +sauve +sarno +salsbury +rothschild +rosier +rines +reveles +rein +redus +redfern +reck +ranney +raggs +prout +prill +preble +prager +plemons +pippen +pilon +piccirillo +pewitt +pesina +pecora +otani +orsini +ollie +oestreich +odea +ocallaghan +northup +niehaus +newberg +nasser +narron +monarrez +mishler +mcsherry +mcelfresh +mayon +mauer +mattice +mash +marrone +marmolejo +marini +marie +mara +malm +machen +lunceford +loewen +liverman +litwin +linscott +levins +lenox +legaspi +leeman +leavy +lannon +lamson +lambdin +labarre +knouse +klemm +kleinschmidt +kirklin +keels +juliano +howser +hott +hosier +hosea +hopwood +holyfield +hodnett +hirsh +heimann +height +heckel +harger +hamil +hajek +gurganus +gunning +grange +gonzalas +goggins +gerow +gaydos +garduno +ganley +galey +farner +ester +engles +emond +emert +ellenburg +edick +duell +dublin +dorazio +dong +dimond +diederich +dewalt +depuy +dempster +demaria +dehoyos +dearth +dealba +dane +czech +crose +crespin +cogdill +clinard +cipriano +chretien +chalk +cerny +ceniceros +celestin +caple +cacho +burrill +buhr +buckland +branam +boysen +bovee +boos +boler +blom +blasko +beyers +belz +belmonte +bednarz +beckmann +beaudin +bazile +barbeau +balentine +abrahams +able +zielke +yunker +yeates +wrobel +wike +whisnant +wherry +wagnon +vogan +vansant +vannest +vallo +ullery +towles +towell +tiger +thill +taormina +tannehill +taing +storrs +stickles +stetler +sparling +solt +silcox +sheard +shadle +seman +selleck +schlemmer +scher +sapien +sainz +rumble +roye +rosamond +romain +rizzuto +resch +rentz +rather +rasch +ranieri +purtell +primmer +portwood +pontius +pons +pletcher +pledger +pirkle +pillsbury +pentecost +peng +paxson +ortez +organ +oles +newborn +mullett +muirhead +mouzon +mork +mollett +mohn +mitcham +melillo +mee +medders +mcmiller +mccleery +mccaughey +manders +mak +maciejewski +macaulay +lute +lipman +lewter +larocque +langton +kriner +knipp +killeen +karn +kalish +kaczor +jonson +jerez +jarrard +janda +hymes +hollman +hollandsworth +holl +hobdy +hitch +hennen +hemmer +hagins +haddox +guitierrez +guernsey +gorsuch +gholson +genova +gazaway +gauna +gammons +freels +fonville +fly +florian +fleet +fetterman +fava +farquhar +farish +fabela +escoto +eisen +dossett +dority +dorfman +demmer +dehn +dawley +darbonne +damore +damm +crosley +cron +crompton +crichton +cotner +cordon +conerly +colvard +clauson +chess +cheeseman +charity +cavallaro +castille +cabello +burgan +buffum +bruss +brassfield +bowerman +bothwell +borgen +bonaparte +bombard +boivin +boissonneault +bogner +bodden +boan +blanche +bittinger +bickham +bedolla +bale +bainbridge +aybar +avendano +ashlock +amidon +almanzar +akridge +ackermann +zager +yong +xavier +worrall +winans +wilsey +wightman +westrick +wenner +warne +warford +verville +utecht +upson +tuma +tseng +troncoso +trollinger +torbert +taulbee +sutterfield +stough +storch +stonebraker +stolle +stilson +stiefel +steptoe +stepney +stender +stemple +staggers +spurrier +spray +spinney +spengler +smartt +skoog +silvis +sieg +shuford +selfridge +seguin +sedgwick +sease +scotti +schroer +schlenker +schill +savarese +sapienza +sanson +sandefur +salamone +rusnak +rudisill +royalty +rothermel +roca +resendiz +reliford +rasco +raiford +quisenberry +quijada +pullins +puccio +postell +poppe +pinter +piche +petrucci +pellegrin +pelaez +patti +paton +pasco +parkes +paden +pabst +orchard +olmsted +newlon +mynatt +mustafa +mower +morrone +moree +moffat +mixson +minner +min +millette +mederos +mcgahan +mcconville +maughan +massingill +marano +macri +lovern +lichtenstein +leonetti +lehner +lawley +laramie +lappin +lahti +lago +lacayo +kuester +knee +kincade +junior +juhl +joslyn +jiron +jessop +jerry +jarosz +jain +hults +hoge +hodgins +hoban +hinkson +hillyard +herzig +hervey +henriksen +hawker +hause +hard +hankerson +gregson +golliday +gilcrease +gessner +gerace +garwood +garst +gaillard +flinchum +fishel +fishback +filkins +fentress +fabre +ethier +espana +eisner +ehrhart +efird +drennon +dominy +dominique +domingue +dipaolo +dinan +dimartino +deskins +dengler +defreitas +defranco +dancer +dahlin +cutshaw +cuthbert +croyle +crothers +critchfield +cowie +costner +coppedge +copes +ciccone +champ +cesar +caufield +capo +cambron +cambridge +buser +burnes +buhl +buendia +brindley +brecht +bourgoin +boomer +blackshire +birge +benninger +bembry +beil +begaye +barrentine +barks +banton +balmer +baity +auerbach +ambler +alexandre +ackerson +zurcher +zell +wynkoop +wallick +waid +vos +vizcaino +vester +veale +vandermark +vanderford +tuthill +trivette +thiessen +tewksbury +tao +tabron +swim +swasey +swanigan +stoughton +stoudt +stimson +stecker +stead +stall +spady +souther +smoak +sklar +simcox +sidwell +sharon +seybert +sesco +seeman +seaborn +schwenk +schmeling +rossignol +robillard +robicheaux +riveria +rippeon +ridgley +remaley +rehkop +reddish +reach +rauscher +rachel +quirion +pusey +pruden +pressler +potvin +pospisil +paradiso +pangburn +palmateer +ownby +otwell +osterberg +osmond +olsson +old +oberlander +nusbaum +novack +nokes +nicastro +nehls +nay +naber +mulhern +motter +moretz +milian +mercedes +mckeel +mcclay +mccart +matsuda +mary +martucci +marple +marko +marciniak +manes +mancia +maker +macrae +lybarger +lint +lineberger +levingston +lecroy +lattimer +laseter +kulick +krier +knutsen +klem +kinne +kinkade +ketterman +kerstetter +kersten +karam +jury +joshi +jin +jent +jefcoat +hillier +hillhouse +hettinger +henthorn +henline +helzer +heitzman +heineman +heenan +haughton +haris +harbert +haman +grinstead +gremillion +gorby +giraldo +gioia +gerardi +geraghty +gaunt +gatson +gardin +gans +gammill +games +gain +friedlander +frahm +fossett +fosdick +forth +forbush +fondren +fleckenstein +fitchett +filer +feliz +feist +ewart +evelyn +esters +elsner +edgin +eddie +easterly +dussault +durazo +don +devereaux +deshotel +deckert +dargan +dare +cornman +conkle +condit +commander +claunch +clabaugh +chute +cheesman +chea +charney +charleston +casella +carone +carbonell +canipe +campana +calles +cabezas +cabell +buttram +bustillos +buskirk +boyland +bourke +blakeley +big +berumen +berrier +bench +belli +behrendt +baumbach +bartsch +baney +arambula +alldredge +allbritton +ziemba +zanders +youngquist +yoshioka +yohe +wunder +woodfin +wojtowicz +winkel +wilmore +willbanks +wesolowski +wendland +walko +votaw +vanek +uriarte +urbano +turnipseed +triche +trautman +towler +tokarz +temples +tefft +teegarden +syed +swigart +stryker +stoller +stapler +stansfield +smit +smelley +sicard +shulman +shew +shear +sheahan +sharpton +selvidge +schlesinger +savell +sandford +sabatino +rosenbloom +roepke +rish +rhames +renken +reger +rappaport +quarterman +puig +prasad +poplar +pizano +pigott +pick +phair +petrick +patt +pascua +paramore +papineau +olivieri +ogren +norden +noga +nisbet +munk +munch +mui +morvant +moro +moloney +merz +meng +meltzer +mellinger +mehl +mcnealy +mckernan +mchaney +mccleskey +mcandrews +mayton +mayor +markert +maresca +marcellus +maner +mandujano +malpass +macintyre +lytton +lyall +lummus +longshore +longfellow +lokey +locher +leverette +lepe +lefever +leeson +lederer +lampert +lagrone +la +kreider +korth +knopf +kleist +kiss +keltner +kelling +kaspar +kappler +justin +josephs +jiang +huckins +horace +holub +hofstetter +hoehn +higginson +hennings +heid +havel +hauer +harnden +hargreaves +hanger +guild +guidi +grate +grandy +grandstaff +goza +goodridge +goodfellow +goggans +godley +giusti +gilyard +geoghegan +galyon +gaeta +funes +font +flor +flanary +fales +erlandson +ellett +elia +edinger +dziedzic +duerr +draughn +donoho +dimatteo +devos +dematteo +degnan +darlington +danis +dam +dahlstrom +dahlke +czajkowski +cumbie +culbert +crosier +croley +corry +clinger +cheshire +chalker +cephas +caywood +cavalier +capehart +cales +cadiz +bussiere +burriss +burkart +brundidge +bronstein +breeze +bradt +boydston +bostrom +borel +bolles +blay +blackwelder +bissett +bevers +bester +bernardino +benefiel +belote +beedle +beckles +baysinger +bassler +bartee +barlett +bargas +barefield +baptista +arterburn +armas +apperson +amoroso +amedee +zullo +zellner +yelton +willems +wilkin +wiggin +widman +welk +weingarten +walla +viers +vess +verdi +veazey +vannote +tullos +trudell +trower +trosper +trimm +trew +tousignant +topp +tocco +thoreson +terhune +tatom +suniga +sumter +steeves +stansell +soltis +sloss +slaven +sing +shisler +sheriff +shanley +servantes +selders +segrest +seese +seeber +schaible +savala +sartor +rutt +rumbaugh +ruis +roten +roessler +ritenour +riney +restivo +rene +renard +rakestraw +rake +rachal +quiros +pullin +prudhomme +primeaux +prestridge +presswood +ponte +polzin +poarch +pittenger +piggott +pickell +phaneuf +parvin +parmley +palmeri +paisley +ozment +ormond +ordaz +ono +olea +obanion +oakman +novick +nicklas +nemec +nappi +mund +morfin +mera +melgoza +melby +mcgoldrick +mcelwain +mcchristian +mccaw +marquart +marlatt +markovich +mahr +lupton +lucus +lorusso +lerman +leddy +leaman +leachman +lavalle +laduke +kummer +koury +konopka +koh +koepp +kloss +klock +khalil +kernan +kappel +jakes +inoue +hutsell +howle +honore +hole +hockman +hockaday +hiltz +hetherington +hesser +hershman +heng +heffron +headen +haskett +hartline +harned +guillemette +guglielmo +guercio +greenbaum +goris +glines +gilmour +gardella +gadd +gabler +gabbert +fuselier +freudenburg +fragoso +follis +flemings +feltman +febus +farren +fallis +evert +ekstrom +eastridge +dyck +dufault +dubreuil +dresser +drapeau +domingues +dolezal +dinkel +didonato +devitt +devane +demott +daughtrey +daubert +das +darrell +creason +crary +costilla +chipps +cheatwood +carmean +canton +caffrey +burgher +buker +brunk +brodbeck +brantner +brandy +bolivar +boerner +bodkin +biel +betty +bencomo +bellino +beliveau +beauvais +beaupre +baylis +baskett +barcus +barbera +baltz +asay +arney +arcuri +ankney +agostini +addy +zwilling +zubia +zollinger +zeitz +yard +yanes +winship +winningham +wickline +webre +waddington +vosburgh +vessels +verrett +vedder +varnum +vandeventer +vacca +usry +towry +touchet +tookes +tonkin +timko +tibbitts +thedford +tarleton +talty +talamantez +tafolla +sugg +strecker +stirling +steffan +spiva +slape +siemens +shatzer +seyler +seamans +schmaltz +schipper +sasso +sailor +ruppe +runner +royals +roudebush +ripple +riemer +richarson +revilla +reichenbach +ratley +railsback +quayle +poplin +poorman +ponton +polo +pollitt +poitras +piscitelli +piedra +pickles +pew +perera +people +penwell +pelt +pauline +parkhill +paladino +ore +oram +olmo +oliveras +olivarria +ogorman +near +naron +na +muncie +mowbray +morones +moretti +monn +mitts +minks +minarik +mimms +milliron +millington +millhouse +messersmith +mcnett +mckinstry +mcgeorge +mcdill +mcateer +mazzeo +matchett +mahood +mabery +lundell +louden +losoya +lisk +lezama +leib +lebo +lanoue +lanford +lafortune +kump +krone +kreps +kott +kopecky +kolodziej +knuckles +kinman +kimmons +kelty +kaster +karlson +kania +jules +joyal +job +jenner +jasinski +jandreau +isenhour +hunziker +huhn +houde +houchins +holtman +hodo +heyman +hentges +hedberg +hayne +haycraft +harshbarger +harshaw +harriss +haring +hansell +hanford +handler +hamburg +hamblen +gunnell +groat +gorecki +gochenour +gleeson +genest +geiser +gabriele +fulghum +friese +fridley +freeborn +frailey +flaugher +fiala +ettinger +etheredge +espitia +eriksen +engelbrecht +engebretson +elie +eickhoff +edney +edelen +eberhard +eastin +eakes +driggs +doner +donaghy +disalvo +deshong +dahms +dahlquist +curren +cripe +cree +creager +corle +conatser +commons +coggin +coder +coaxum +closson +clodfelter +classen +chittenden +castilleja +casale +cartee +carriere +canup +canizales +burgoon +bunger +bugarin +buchanon +bruning +bruck +brookes +broadwell +brier +brekke +breese +bracero +bowley +bowersox +bose +bogar +blossom +blauser +blacker +bjorklund +belair +baumer +basler +barb +baltimore +baize +baden +auman +amundsen +amore +alvarenga +adan +adamczyk +yerkes +yerby +yawn +yamaguchi +worthey +wolk +wixom +wiersma +wieczorek +whiddon +weyer +wetherington +wein +watchman +warf +wansley +vesely +velazco +vannorman +valasquez +utz +urso +turco +turbeville +trivett +torrance +toothaker +toohey +tondreau +thaler +sylvain +swindler +swigert +swider +stiner +stever +steffes +stampley +stair +smidt +skeete +silvestre +shy +shutts +shock +shealey +seigler +schweizer +schuldt +schlichting +scherr +saulsberry +saner +rosin +rosato +roling +rohn +rix +rister +remley +remick +recinos +ramm +raabe +pursell +poythress +poli +pokorny +plum +pettry +petrey +petitt +penman +payson +paquet +pappalardo +outland +oscar +orenstein +nuttall +nuckols +nott +nimmo +murtagh +mousseau +moulder +mooneyhan +moak +minch +miera +mercuri +meighan +mcnelly +mcguffin +mccreery +mcclaskey +man +mainor +luongo +lundstrom +loughman +loose +lobo +lobb +linhart +liberty +lever +leu +leiter +lehoux +lehn +lares +lapan +langhorne +lamon +ladwig +ladson +kuzma +kreitzer +knop +keech +kea +kadlec +jo +jhonson +jantz +inglis +husk +hulme +housel +hofman +hillery +heidenreich +heaps +haslett +harting +hartig +hamler +halton +hallum +gutierres +guida +guerrier +grossi +gress +greenhalgh +gravelle +gow +goslin +gonyea +gipe +gerstner +gasser +garceau +gannaway +gama +gallop +gaiser +fullilove +foutz +fossum +flannagan +farrior +faller +ericksen +entrekin +enochs +englund +ellenberger +eastland +earwood +dudash +du +drozd +desoto +delph +dekker +dejohn +degarmo +defeo +defalco +deblois +dacus +cudd +crossen +crooms +cronan +costin +costanza +cordray +comerford +collie +colegrove +coldwell +claassen +chartrand +castiglione +carte +cardella +carberry +capp +capobianco +cangelosi +buch +brunell +brucker +brockett +brizendine +brinegar +brimer +brase +bosque +bonk +bolger +bohanon +bohan +blazek +berning +bergan +bennette +beauchemin +battiste +barra +balogh +avis +avallone +aubry +ashcroft +asencio +arledge +anchondo +amy +alvord +acheson +zaleski +yonker +wyss +wycoff +woodburn +wininger +winders +willmon +wiechmann +westley +weatherholt +warnick +wardle +warburton +volkert +virgin +villanveva +veit +vass +vanallen +tung +toribio +toothman +tiggs +thornsberry +thome +tepper +teeple +tebo +tassone +tann +sultan +stucker +stotler +stoneman +stehle +stanback +stallcup +spurr +speers +spada +solum +smolen +sinn +silvernail +sholes +shives +shain +secrest +seagle +schuette +schoch +schnieders +schild +schiavone +schiavo +scharff +santee +sandell +salvo +rollings +rollin +rivenburg +ritzman +rist +rio +ricardo +reynosa +retana +reiber +regnier +rarick +ransome +rall +propes +prall +poyner +ponds +poitra +plaster +pippins +pinion +piccolo +phu +perillo +penrose +pendergraft +pelchat +peed +patenaude +palko +odoms +oddo +novoa +noone +newburn +negri +nantz +mosser +moshier +molter +molinari +moler +millman +meurer +mendel +mcray +mcnicholas +mcnerney +mckillip +mcilvain +mcadory +matter +master +marmol +marinez +manzer +mankin +makris +majeski +magnus +maffei +luoma +luman +luebke +luby +lomonaco +loar +litchford +lintz +licht +levenson +legge +laughter +lanigan +krom +kreger +koop +kober +klima +kitterman +kinkead +kimbell +kilian +kibbe +kendig +kemmer +kash +jenkin +inniss +hurlbut +hunsucker +hugo +huckabee +hoxie +hoglund +hockensmith +hoadley +hinkel +higuera +herrman +heiner +hausmann +haubrich +hassen +hanlin +hallinan +haglund +hagberg +gullo +gullion +groner +greenwalt +grand +goodwill +gong +gobert +glowacki +glessner +gines +gildersleeve +gildea +gerke +gerhard +gebhard +gatton +gately +galasso +fralick +fouse +fluharty +faucette +fairfax +evanoff +elser +ellard +egerton +edie +ector +ebling +dunkel +duhart +drysdale +dostal +dorey +dolph +doles +dismukes +digregorio +digby +dewees +deramus +denniston +dennett +deloney +delaughter +darcy +cuneo +cumberland +crotts +crosswhite +cremeans +creasey +cottman +cothern +costales +cosner +corpus +cora +constable +colligan +cobble +clutter +chupp +chevez +chatmon +chaires +caplan +caffee +cabana +burrough +burditt +buckler +brunswick +brouillard +broady +bowlby +bouley +borgman +boltz +boddy +blackston +birdsell +bedgood +bate +basil +bartos +barriga +barrie +barna +barcenas +banach +baccus +auclair +ashman +arter +arendt +ansell +allums +allsop +allender +alber +albarran +adelson +zoll +wysong +wimbley +wildes +whitis +whitehill +whicker +weymouth +well +weldy +wark +wareham +waddy +viveiros +vito +vides +vecchio +vath +vandoren +vanderhoof +unrein +uecker +tsan +trepanier +tregre +torkelson +ton +tobler +tineo +timmer +swopes +swofford +sweeten +swarts +summerfield +sumler +stucky +strozier +stigall +stickel +stennis +stelzer +steely +solar +slayden +skillern +shurtz +shelor +shellenbarger +shand +shabazz +seo +scroggs +schwandt +schrecengost +schoenrock +schirmer +sandridge +ruzicka +rozek +rowlands +roser +rosendahl +romanowski +romaine +rolston +rink +riggio +reichman +redondo +reay +rawlinson +raskin +raine +quandt +purpura +purdue +pruneda +prevatte +prettyman +pinedo +pierro +pidgeon +phillippi +pfeil +penix +peasley +paro +overall +ospina +ortegon +ogata +ogara +normandin +nordman +nims +nassar +motz +morlan +mooring +moles +moir +mizrahi +mire +minaya +millwood +mikula +messmer +meikle +mctaggart +mcgonagle +mcewan +mccasland +mccane +mccaffery +mcalexander +mattocks +mattie +matranga +martone +markland +maravilla +manno +manly +mancha +mallery +magno +lorentz +locklin +livingstone +lipford +lininger +line +liao +lepley +leming +lemelin +leadbetter +lawhon +lattin +langworthy +lampman +lambeth +lamarr +lahey +krajewski +klopp +kinnison +kestner +kerry +kennell +karim +jozwiak +jakubowski +jagger +ivery +ishmael +iliff +iddings +hudkins +houseman +holz +holderman +hoehne +highfill +hiett +heskett +heldt +hedman +hayslett +hatchell +hasse +hamon +hamada +hakala +haislip +haffey +hackbarth +guo +gullickson +guerrette +guan +greenblatt +goudreau +gongora +godbout +glaude +gills +gillison +gigliotti +gargano +gallucci +galli +galante +frasure +fodor +fizer +fishburn +finkbeiner +finck +fager +estey +espiritu +eppinger +epperly +emig +eckley +dray +dorsch +dille +devita +deslauriers +demery +delorme +delbosque +dauphin +dantonio +curd +crume +crown +cozad +cossette +comacho +climer +chadbourne +cespedes +cayton +castaldo +carpino +carls +capozzi +canela +cadet +buzard +busick +burlison +brinkmann +bridgeforth +bourbeau +bornstein +boots +bonfiglio +boice +boese +biondi +bilski +betton +berwick +berlanga +behan +becraft +barrientez +banh +balke +balderrama +bahe +bachand +atlas +armer +arceo +aliff +alatorre +zermeno +zane +younce +you +yeoman +yamasaki +wroten +worm +woodby +winer +wilmer +willits +wilcoxon +wehmeyer +waterbury +wass +wann +wake +wachtel +vizcarra +vince +victory +veitch +vanderbilt +vallone +vallery +ureno +tyer +tipps +tiedeman +theberge +texeira +taub +tapscott +stutts +stults +stukes +staff +spink +sottile +smithwick +slane +simeone +silvester +siegrist +shiffer +sheedy +sheaffer +severin +sellman +scotto +schupp +schueller +schreier +schoolcraft +schoenberger +schnabel +sangster +samford +saliba +ryles +ryans +rossetti +rodriguz +risch +riel +rezendes +rester +rencher +recker +rathjen +profitt +poteete +polizzi +perrigo +patridge +osby +orvis +opperman +oppenheim +onorato +olaughlin +ohagan +ogles +oehler +obyrne +nuzzo +nickle +nease +neagle +navarette +nagata +musto +morning +morison +montz +mogensen +mizer +miraglia +mingus +migliore +merideth +menges +mellor +mcnear +mcnab +mcloud +mcelligott +mccollom +maynes +marquette +markowski +marcantonio +mar +maldanado +makin +macey +lundeen +lovin +longino +lisle +linthicum +limones +lesure +lesage +leisure +lauver +laubach +latshaw +lary +lapham +lacoste +lacher +kutcher +knickerbocker +klos +klingler +kleiman +kittleson +kimbrel +kimberly +kemmerer +kelson +keese +kam +kallas +jurgensen +junkins +juneau +juergens +jolliff +jelks +janicki +jang +innocent +ingles +inge +huguley +huggard +howton +hone +holford +holding +hogle +hipple +heimbach +heider +heidel +havener +hattaway +harrah +hanscom +hankinson +hamdan +gridley +goulette +goulart +goodspeed +goodrow +go +girardi +gent +gautreau +ganz +gandara +gamblin +galipeau +fyffe +furrow +fulp +fricks +frase +frandsen +fout +foulks +fouche +foskey +forgey +foor +fobbs +finklea +fincham +figueiredo +festa +ferrier +fellman +eslick +eilerman +eckart +eaglin +dunfee +dumond +drewry +douse +domino +dimick +diener +dickert +deines +degree +declue +daw +dattilo +danko +custodio +cuccia +crunk +crispin +corp +cornwall +corea +coppin +considine +coniglio +conboy +collar +cockrum +clute +clewis +claude +christiano +channell +channel +cerrato +cecere +catoe +castillon +castile +carstarphen +carmouche +caperton +buteau +bury +bumpers +brey +brenton +brazeal +brassard +brass +braga +bradham +bourget +borrelli +borba +boothby +bohr +bohm +boehme +bodin +bloss +blocher +bizzell +bieker +berthelot +bernardini +berends +benard +belser +baze +bartling +barrientes +barras +barcia +banfield +aurand +artman +arnott +arend +ardis +amon +almaguer +allee +albarado +alameda +abdo +zuehlke +zoeller +yokoyama +yocom +wyllie +woolum +wint +winland +wink +wilner +wilmes +whitlatch +westervelt +walthall +walkowiak +walburn +viviano +vanderhoff +valez +ugalde +trumbull +todaro +tilford +tidd +tibbits +terranova +templeman +tannenbaum +talmage +tabarez +swearengin +swartwood +svendsen +strum +strack +storie +stockard +steinbeck +starns +stanko +stankiewicz +stacks +stach +sproles +spenser +smotherman +slusser +sinha +silber +siefert +siddiqui +shuff +sherburne +seldon +seddon +schweigert +schroeter +schmucker +saffold +rutz +rundle +rosinski +rosenow +rogalski +ridout +rhymer +replogle +regina +reda +raygoza +ratner +rascoe +rahm +quincy +quast +pry +pressnell +predmore +pou +porto +pleasants +pigford +pavone +patnaude +parramore +papadopoulos +palmatier +ouzts +oshields +ortis +olmeda +olden +okamoto +norby +nitz +niebuhr +nevius +neiman +neidig +neece +murawski +mroz +moylan +moultry +mosteller +moring +morganti +mook +moffet +mettler +merlo +mengel +mendelsohn +meli +melchior +mcmeans +mcfaddin +mccullers +mccollister +mccloy +mcclaine +maury +maser +martelli +manthey +malkin +maio +magwood +maginnis +mabon +luton +lusher +lucht +lobato +levis +letellier +legendre +laurel +latson +larmon +largo +landreneau +landgraf +lamberson +kurland +kresge +korman +korando +klapper +kitson +kinyon +kincheloe +kawamoto +kawakami +jenney +jeanpierre +ivers +issa +ince +hugh +hug +honda +hollier +hollars +hoerner +hodgkinson +hiott +hibbitts +herlihy +henricks +heavner +hayhurst +harvill +harewood +hanselman +hanning +gwyn +gustavson +grounds +grizzard +grinder +graybeal +gravley +gorney +goll +goehring +godines +gobeil +glickman +giuliano +gimbel +gift +geib +gayhart +gatti +gains +gadberry +frei +fraise +fouch +forst +forsman +folden +fogleman +figaro +fetty +feely +fabry +eury +estill +epling +elamin +echavarria +dutil +duryea +dumais +drago +downard +douthit +doolin +dobos +dison +dinges +diebold +desilets +deshazo +depaz +degennaro +dall +cyphers +cryer +croce +crisman +credle +coriell +copp +coop +compos +colmenero +cogar +cliff +chapel +carnevale +campanella +caley +calderone +burtch +brouwer +brehmer +brassell +brafford +bourquin +bourn +bohnert +blewett +blass +blakes +bhakta +besser +berge +bellis +balfour +avera +austria +applin +ammon +alsop +aleshire +akbar +zoller +zapien +wymore +wyble +wolken +wix +wickstrom +whobrey +whigham +westerlund +welsch +weisser +weisner +weinstock +wehner +watlington +wakeland +wafer +virgen +victorino +veltri +veith +urich +uresti +umberger +twedt +tuohy +tschida +trumble +troia +tristan +trimmer +topps +tonn +tiernan +threet +thrall +thetford +teneyck +tartaglia +swords +strohl +streater +strausbaugh +stradley +stonecipher +steadham +stansel +stalcup +stabile +sprenger +spradley +speier +southwood +sorrels +slezak +skow +sirmans +simental +silk +sifford +sievert +shover +sheley +selzer +scriven +schwindt +schwan +schroth +saylors +saragosa +sant +salaam +saephan +routt +rousey +ros +rolfes +rieke +rieder +richeson +redinger +rasnick +rapoza +rambert +rafael +quist +pyron +punch +pullman +przybylski +pridmore +pooley +pines +perkinson +perine +perham +pecor +peavler +partington +panton +oliverio +olague +ohman +ohearn +noyola +nicolai +nebel +murtha +muff +mowrey +moroney +morgenstern +morant +monty +monsour +mohammad +moffit +mijares +meriwether +mendieta +melendrez +mejorado +mckittrick +mckey +mckenny +mckelvy +mckechnie +mcelvain +mccoin +mazzarella +mazon +maurin +matthies +maston +maske +marzano +marmon +marburger +mangus +mangino +mallet +luo +losada +londono +lobdell +lipson +lesniak +leighty +lei +league +lavallie +lareau +laperle +lape +laforce +laffey +kuehner +kravitz +kowalsky +kohr +kinsman +keppler +kennemer +keiper +keely +kaler +jun +jelinek +jarnagin +issac +isakson +hypes +hutzler +huls +horak +hitz +hice +herrell +henslee +heitz +heiss +heiman +hasting +hartwick +harmer +harland +hammontree +haldeman +hakes +guse +guillotte +guard +groleau +greve +greenough +golub +golson +goldschmidt +golder +godbolt +gilmartin +gies +gibby +geren +genthner +gendreau +gemmill +gaymon +galyean +galeano +friar +folkerts +fleeman +fitzgibbons +ferranti +felan +farrand +eoff +enger +engels +ducksworth +duby +dry +drumheller +douthitt +doris +donis +dixion +dittrich +dials +dessert +descoteaux +depaul +denker +demuth +demelo +delacerda +deforge +danos +dalley +daigneault +cybulski +crystal +cristobal +cothren +corns +corkery +copas +coco +clubb +clore +chitty +chichester +chery +charon +chamber +chace +catanzaro +castonguay +cassella +caroll +carlberg +cammarata +calle +cajigas +byas +buzbee +busey +burling +bufkin +brzezinski +brun +brickner +brabham +boller +bodily +bockman +bleich +blakeman +bisbee +bier +bezanson +bevilacqua +besaw +berrian +berkeley +bequette +beauford +baumgarten +baudoin +batie +basaldua +bardin +bangert +banes +backlund +avitia +artz +archey +apel +amico +alam +aden +zebrowski +yokota +wormley +wootton +woodie +womac +wiltz +wigington +whitehorn +whisman +weisgerber +weigle +weedman +watkin +wasilewski +wadlington +wadkins +viverette +vidaurri +vidales +vezina +vanleer +vanhoy +vanguilder +vanbrunt +uy +updegraff +tylor +trinkle +touchette +tilson +tilman +tengan +tarkington +surrett +super +summy +streetman +straughter +steere +stalling +spruell +spadaro +solley +smathers +silvera +siems +shreffler +sholar +selden +schaper +samayoa +ruggeri +rowen +rosso +rosenbalm +roosevelt +roose +ronquillo +rogowski +rexford +repass +renzi +renick +renda +rehberg +reaper +ranck +raffa +rackers +raap +pugsley +puglisi +prinz +primus +pounders +pon +pompa +plasencia +pipkins +pillar +petrosky +pelley +pauls +pauli +parkison +parisien +pangle +pancoast +palazzolo +owenby +overbay +orris +orlowski +nipp +newbern +nedd +nealon +najar +mysliwiec +myron +myres +musson +murrieta +munsell +mumma +muldowney +moyle +mowen +mose +morejon +moodie +monier +mikkelsen +miers +metzinger +melin +mcquay +mcpeek +mcneeley +mcglothin +mcghie +mcdonell +mccumber +mccranie +mcbean +mayhugh +marts +marenco +manges +lynam +lupien +luff +luebbert +loh +loflin +lococo +loch +lis +linke +lightle +lewellyn +leishman +lebow +lebouef +leanos +lanz +landy +landaverde +lacefield +kyler +kuebler +kropf +kroeker +kluesner +klass +kimberling +kilkenny +kiker +ketter +kelemen +keasler +kawamura +karst +kardos +jeremiah +jared +igo +huseman +huseby +hurlbert +huard +hottinger +hornberger +hopps +holdsworth +hensen +heilig +heeter +harpole +haak +gutowski +gunnels +grimmer +grieve +gravatt +granderson +gotcher +gleaves +genao +garfinkel +frerichs +foushee +flanery +finnie +feldt +fagin +ewalt +ellefson +eiler +eckhart +eastep +dwight +digirolamo +didomenico +devera +delavega +defilippo +debusk +daub +damiani +cupples +cuddy +crofoot +courter +coto +costigan +corning +corman +corlett +cooperman +collison +coghlan +cobbins +coady +coachman +clothier +client +clear +cipolla +chmielewski +chiodo +chatterton +chappelle +chairez +ceron +casperson +casler +casados +carrow +carolina +carlino +carico +cardillo +caouette +canto +canavan +cambra +byard +buterbaugh +buse +bucy +buckwalter +bubb +bryd +brissette +brault +bradwell +boshears +borchert +blansett +blanch +blade +biondo +bilbo +biehl +bessey +berta +belles +bella +beeks +beekman +beaufort +bayliss +bardsley +avilla +astudillo +ardito +anwar +antunez +amen +aderholt +abate +yowell +yin +yearby +ye +wurst +woolverton +woolbright +wildermuth +whittenburg +whitely +wetter +wetherbee +wenz +welliver +welling +welcome +wason +warrior +warlick +voorhies +vivier +villines +vida +verde +veiga +varghese +vanwyk +vanwingerden +vanhorne +umstead +twiggs +tusing +trego +tompson +tinkle +thoman +thole +tatman +tartt +suda +studley +strock +strawbridge +stokely +stec +stang +stalter +speidel +spafford +spade +sontag +sokolowski +skillman +skelley +skalski +sison +sippel +sinquefield +sin +siegle +sher +sharrow +setliff +sera +sellner +selig +seibold +seery +scriber +schull +schrupp +schippers +say +saulsbury +sao +santillo +sanor +sancho +rufus +rubalcaba +roosa +ronk +robbs +roache +river +riebe +reinoso +quin +prude +preuss +pottorff +pontiff +plouffe +picou +picklesimer +pettyjohn +petti +penaloza +parmelee +pardee +palazzo +overholt +ogawa +ofarrell +nova +nolting +noda +nicola +nickson +nevitt +neveu +navarre +nam +murrow +munz +mulloy +monzo +milliman +metivier +merlino +mcpeters +mckissack +mckeen +mcgurk +mcfee +mcfarren +mcelwee +mceachin +mcdonagh +mccarville +mayhall +mattoon +martello +marconi +marbury +mao +manzella +maly +malec +maitland +maheu +maclennan +lyke +luera +loyola +lowenstein +losh +lopiccolo +longacre +loman +loden +loaiza +lieber +libbey +lenhardt +lefebre +lauterbach +lauritsen +lass +larocco +larimer +lansford +lanclos +lamay +lal +kulikowski +kriebel +kosinski +kleinman +kleiner +kleckner +kistner +kissner +kissell +kilroy +kenna +keisler +keeble +keaney +kale +joly +jimison +jeans +ikner +hursey +hruska +hove +hou +host +hosking +hoose +holle +hoeppner +hittle +hitchens +hirth +hinerman +hilario +higby +hertzog +hentz +hensler +heist +heier +hegg +hassel +harpe +hara +hank +hain +hagopian +grimshaw +grado +gowin +gowans +googe +goodlow +goering +gleaton +gidley +giannone +gascon +garneau +gambrel +galaz +fuentez +frisina +fresquez +fraher +fitting +feuerstein +felten +everman +estell +ertel +erazo +ensign +endo +ellerman +eichorn +edgell +ebron +eaker +dundas +duncanson +duchene +ducan +dombroski +doman +dock +dickison +dewoody +deloera +delahoussaye +dejean +degroat +decaro +dearmond +dashner +dales +crossett +cressey +cowger +courts +court +cornette +corbo +coplin +coover +condie +cokley +cicero +ceaser +cannaday +callanan +cadle +buscher +bullion +bucklin +bruening +bruckner +brose +branan +bradway +botsford +bortz +borelli +bonetti +bolan +boerger +bloomberg +bingman +bilger +berns +beringer +beres +beets +beede +beaudet +beachum +baughn +bator +bastien +basquez +barreiro +barga +baratta +balser +baillie +axford +attebery +arakaki +annunziata +andrzejewski +ament +amendola +adcox +abril +zenon +zeitler +zang +zambrana +ybanez +yagi +wolak +wilcoxson +whitesel +whitehair +weyand +westendorf +welke +weinmann +wei +weesner +weekes +wedel +wedding +weatherall +warthen +vose +villalta +vila +viator +vaz +valtierra +urbanek +tulley +trojanowski +trapani +toups +torpey +tomita +tindal +tieman +tevis +tedrow +taul +tash +tammaro +sylva +swiderski +sweeting +sund +stutler +stocking +stich +sterns +stegner +stalder +splawn +speirs +southwell +soltys +smead +slye +skipworth +sipos +simmerman +sigmund +sidhu +shuffler +shingleton +shadwick +sermons +seefeldt +scipio +schwanke +schreffler +schiro +scheiber +sandoz +samsel +ruddell +royse +rouillard +rotella +rosalez +romriell +rommel +rizer +riner +rickards +rhoton +rhem +reppert +rayl +raulston +raposo +rapier +rainville +radel +quinney +purdie +puffer +pizzo +pincus +petrus +pendelton +pendarvis +peltz +peguero +peete +patricio +patchett +parrino +papke +pam +palafox +ottley +ostby +oritz +oren +ogan +odegaard +oatman +noell +nida +nicoll +newhall +newbill +netzer +nettleton +neblett +murley +mungo +mulhall +mosca +morissette +morford +montag +monsen +mitzel +miskell +minder +mehaffey +mcquillen +mclennan +mcgrail +mccreight +mayville +maysonet +maust +mathieson +mastrangelo +maskell +martina +manz +malmberg +makela +madruga +luz +lotts +longnecker +logston +littell +liska +lindauer +lillibridge +levron +letchworth +lesh +leffel +leday +leamon +laura +kulas +kula +kucharski +kromer +kraatz +konieczny +konen +komar +kivett +kirts +kinnear +kersh +keithley +keifer +judah +jimenes +jeppesen +jasmin +jansson +huntsberry +hund +huitt +huffine +hosford +hopes +holmstrom +hollen +hodgin +hirschman +hiltner +hilliker +hibner +hennis +helt +heidelberg +heger +heer +hartness +hardrick +halladay +gula +guillaume +guerriero +grunewald +grosse +griffeth +grenz +grassi +grandison +ginther +gimenez +gillingham +gillham +gess +gelman +gearheart +gaskell +gariepy +gamino +gallien +galentine +fuquay +froman +froelich +friedel +foos +fomby +focht +flythe +fiqueroa +filson +filip +fierros +fett +fedele +fasching +farney +fargo +everts +even +etzel +elzey +eichner +eger +eatman +ducker +duchesne +donati +domenech +dollard +dodrill +dinapoli +denn +delfino +delcid +delaune +delatte +deems +daluz +cusson +cullison +cue +cuadrado +crumrine +cruickshank +crosland +croll +criddle +crepeau +coutu +couey +cort +coppinger +collman +cockburn +coca +clayborne +claflin +cissell +chowdhury +chicoine +chenier +causby +caulder +cassano +casner +cardiel +burner +brunton +bruch +broxton +brosius +brooking +branco +bracco +bourgault +bosserman +books +bonet +bolds +bolander +bohman +boelter +blohm +blea +blaise +bischof +billie +beus +bellew +bastarache +bast +bartolome +bark +barcomb +barco +balls +balk +balas +bakos +avey +atnip +ashbrook +arno +arbour +aquirre +appell +aldaco +alcazar +alban +ahlstrom +abadie +zylstra +zick +zheng +yother +wyse +wunsch +whitty +weist +vrooman +vine +villalon +vidrio +vavra +vasbinder +vanmatre +vandorn +ugarte +turberville +tuel +trogdon +town +toupin +toone +tolleson +tinkham +tinch +tiano +teston +teer +tea +tawney +taplin +tant +tansey +swayne +sutcliffe +sunderman +suits +strothers +stromain +stork +stoneburner +stolte +stolp +stoehr +stingley +stegman +stangl +spinella +spier +soules +sommerfield +sipp +simek +siders +shufelt +shue +shor +shires +shellenberger +sheely +service +sepe +seaberg +schwing +scherrer +scalzo +saver +sasse +sarvis +santora +sansbury +salls +saleem +ryland +rybicki +ruggieri +rothenberg +rosenstein +roquemore +rollison +rodden +rivet +rita +ridlon +riche +riccardi +reiley +regner +rech +rayo +rawley +ranger +raff +radabaugh +quon +quill +privette +prange +pickrell +perino +penning +pankratz +orlandi +nyquist +norrell +noren +naples +nale +nakashima +musselwhite +murrin +murch +mullinix +mullican +mullan +morneau +mondor +molinar +mo +minjares +minix +mingle +minchew +mill +milewski +mikkelson +mifflin +messing +merkley +meis +meas +mcroy +mcphearson +mcneel +mcmunn +mcmorrow +mcdorman +mccroskey +mccoll +mcclusky +mcclaran +mccampbell +mazzariello +mauzy +mauch +mastro +martinek +marsala +marcantel +mahle +lyda +lucius +luciani +lubbers +louder +lobel +linsey +linch +liller +legros +layden +lapine +lansberry +lage +laforest +labriola +koga +knupp +klimek +kittinger +kirchoff +kinzel +killinger +kilbourne +ketner +kepley +kemble +kells +kear +kaya +karsten +kaneshiro +kamm +joines +joachim +janelle +jacobus +iler +holgate +hoar +hisey +hird +hilyard +heslin +herzberg +hennigan +hegland +hartl +haner +handel +gualtieri +greenly +grasser +gran +goetsch +godbold +gilland +gidney +gibney +giancola +gettinger +garzon +garret +galle +galgano +gaier +gaertner +fuston +freel +fortes +flock +fiorillo +figgs +fenstermacher +fedler +facer +fabiano +evins +eusebio +euler +esquer +enyeart +elem +eisenhower +eich +edgerly +durocher +durgan +duffin +drolet +drewes +dotts +dossantos +dolly +dockins +dirksen +difiore +dierks +dickerman +dice +dery +denault +demaree +delmonte +delcambre +days +daulton +darst +dahle +curnutt +cully +culligan +cueva +crosslin +croskey +cromartie +crofts +covin +coutee +countess +cost +coppa +coogan +condrey +concannon +coger +cloer +clatterbuck +cieslak +chumbley +choudhury +chiaramonte +charboneau +chai +carneal +cappello +campisi +callicoat +burgoyne +bucholz +brumback +brosnan +brogden +broder +brendle +breece +bown +bou +boser +bondy +bolster +boll +bluford +blandon +biscoe +bevill +bence +battin +basel +bartram +barnaby +barmore +balbuena +badgley +backstrom +auyeung +ater +arrellano +arant +ansari +alling +alejandre +alcock +alaimo +aguinaldo +aarons +zurita +zeiger +zawacki +yutzy +yarger +wygant +wurm +wuest +wolfram +witherell +wisneski +whitby +whelchel +weisz +weisinger +weishaar +wehr +wedge +waxman +waldschmidt +walck +waggener +vosburg +vita +villela +vercher +venters +vanscyoc +vandyne +valenza +utt +urick +ungar +ulm +tumlin +tsao +tryon +trudel +treiber +tow +tober +tipler +tillson +tiedemann +thornley +tetrault +temme +tarrance +tackitt +sykora +sweetman +swatzell +sutliff +suhr +sturtz +strub +strayhorn +stormer +steveson +stengel +steinfeldt +spiro +spieker +speth +spero +soza +souliere +soucie +snedeker +slifer +skillings +situ +siniard +simeon +signorelli +siggers +shultis +shrewsbury +shippee +shimp +sherron +shepler +sharpless +shadrick +severt +severs +semon +semmes +seiter +segers +sclafani +sciortino +schroyer +schrack +schoenberg +schober +scheidt +scheele +satter +sartori +sarris +sarratt +salvaggio +saladino +sakamoto +saine +ryman +rumley +ruggerio +rucks +roughton +room +robards +ricca +rexroad +resler +reny +rentschler +redrick +redick +reagle +raymo +rape +raker +racette +pyburn +pritt +presson +pressman +pough +plain +pisani +perz +perras +pelzer +pedrosa +palos +palmisano +paille +orem +orbison +oliveros +nourse +nordquist +newbury +nelligan +nawrocki +myler +mumaw +morphis +moldenhauer +miyashiro +mignone +mickelsen +michalec +mesta +mcree +mcqueary +mcninch +mcneilly +mclelland +mclawhorn +mcgreevy +mcconkey +mattes +maselli +marten +mart +marcucci +manseau +manjarrez +malbrough +machin +mabie +lynde +lykes +lueras +lokken +loken +linzy +lillis +lilienthal +levey +legler +leedom +lebowitz +lazzaro +larabee +lapinski +langner +langenfeld +lampkins +lamotte +lambright +lagarde +ladouceur +labrador +labounty +lablanc +laberge +kyte +kroon +kron +kraker +kouba +kirwin +kincer +kimbler +kegler +keach +katzman +katzer +kalman +journey +jimmerson +jenning +janus +iacovelli +hust +huson +husby +humphery +hufnagel +honig +holsey +holoman +hohl +hogge +hinderliter +hildebrant +hick +hey +hemby +helle +heintzelman +heidrick +hearon +heap +hazelip +hauk +hasbrouck +harton +hartin +harpster +hansley +hanchett +haar +guthridge +gulbranson +guill +guerrera +grund +grosvenor +grist +grell +grear +granberry +gonser +giunta +giuliani +gillon +gillmore +gillan +gibbon +gettys +gelb +gano +galliher +fullen +frese +frates +foxwell +fleishman +fleener +fielden +ferrera +feng +fells +feemster +fauntleroy +fails +evatt +espy +eno +emmerich +edwin +edler +eastham +dunavant +duca +drinnon +dowe +dorgan +dollinger +divers +dipalma +difranco +dietrick +denzer +demarest +delee +delariva +delany +decesare +debellis +deavers +deardorff +dawe +darosa +darley +dalzell +dahlen +curto +cupps +cunniff +cude +crivello +cripps +cresswell +cousar +cotta +compo +colorado +clyne +clayson +cearley +catania +carini +cargo +cantero +cali +buttrey +buttler +burpee +bulkley +buitron +buda +bublitz +bryer +bryden +brouillette +brott +brookman +bronk +breshears +brennen +brannum +brandl +braman +bracewell +boyter +bomberger +bold +bogen +boeding +bob +blauvelt +blandford +bigger +biermann +bielecki +bibby +berthold +berkman +belvin +bellomy +beland +behne +beecham +becher +beams +bax +bassham +barret +baley +bacchus +auxier +atkison +ary +arocha +arechiga +anspach +an +algarin +alcott +alberty +ager +adolph +ackman +abdul +abdallah +zwick +ziemer +zastrow +zajicek +yokum +yokley +wittrock +winebarger +wilker +wilham +whitham +wetzler +westling +westbury +wendler +wellborn +weitzman +weitz +weight +wallner +waldroup +vrabel +vowels +volker +vitiello +visconti +villicana +vibbert +vesey +vannatter +vangilder +vandervort +vandegrift +vanalstyne +vallecillo +usrey +tynan +turpen +tuller +trisler +townson +tillmon +threlkeld +thornell +terrio +taunton +tarry +tardy +swoboda +swihart +sustaita +suitt +stuber +strine +stookey +stmartin +stiger +stainbrook +solem +smail +sligh +siple +sieben +shumake +shriner +showman +shiner +sheen +sheckler +seim +secrist +scoggin +schultheis +schmalz +schendel +schacher +savard +saulter +santillanes +sandiford +sande +salzer +salvato +saltz +sakai +ryckman +ryant +ruck +ronald +rocker +rittenberry +ristau +risk +richart +rhynes +reyer +reulet +reser +redington +reddington +rebello +reasor +raftery +rabago +raasch +quintanar +pylant +purington +provencal +prom +prioleau +prestwood +pothier +popa +polster +politte +poffenberger +pinner +pietrzak +pettie +penaflor +pellot +pellham +paylor +payeur +papas +paik +oyola +osbourn +orzechowski +oppenheimer +olesen +oja +ohl +nuckolls +nordberg +noonkester +nold +nitta +niblett +neuhaus +nesler +ned +nanney +myrie +mutch +motto +mosquera +morena +montalto +montagna +mizelle +mincy +millikan +millay +miler +milbourn +mikels +migues +miesner +mershon +merrow +merlin +melia +meigs +mealey +mcraney +mcmartin +mclachlan +mcgeehan +mcferren +mcdole +mccaulley +mcanulty +maziarz +maul +mateer +martinsen +marson +mariotti +manna +mang +mance +malbon +mah +magnusson +maclachlan +macek +lurie +luc +lown +loranger +lonon +lisenby +linsley +linger +lenk +leavens +learned +lauritzen +lathem +lashbrook +landman +lamarche +lamantia +laguerre +lagrange +kogan +klingbeil +kist +kimpel +kime +kier +kerfoot +kennamer +kellems +kammer +kamen +jess +jepsen +jarnigan +isler +ishee +isabel +hux +hungate +hummell +hultgren +huffaker +hruby +hover +hornick +hooser +hooley +hoggan +hirano +hilley +higham +heuser +henrickson +henegar +hellwig +heide +hedley +hasegawa +hartt +hambright +halfacre +hafley +guion +guinan +grunwald +grothe +gries +greaney +granda +grabill +gothard +gossman +gosser +gossard +gosha +goldner +gobin +gloss +ginyard +gilkes +gilden +gerson +gephart +gengler +gautier +gassett +garon +gandhi +galusha +gallager +galdamez +fulmore +fritsche +fowles +foutch +forward +footman +fludd +flakes +ferriera +ferrero +ferreri +fenimore +fegley +fegan +fearn +farrier +fansler +fane +falzone +fairweather +etherton +elsberry +dykema +duppstadt +dunnam +dunklin +duet +due +dudgeon +dubuc +doxey +dory +donmoyer +dodgen +disanto +dingler +dimattia +dilday +digennaro +diedrich +derossett +deputy +depp +demasi +degraffenreid +deakins +deady +davin +daigre +daddario +czerwinski +cullens +cubbage +cracraft +constance +comes +combest +coletti +coghill +clerk +claybrooks +class +christofferse +chiesa +chason +chamorro +cessna +celentano +cayer +carolan +carnegie +capetillo +callier +cadogan +caba +byrom +byrns +burrowes +burket +burdge +burbage +bukowski +buchholtz +brunt +brungardt +brunetti +brumbelow +brugger +broadhurst +brigance +brandow +bouknight +bottorff +bottomley +bosarge +borger +bona +bombardier +bologna +boggan +blumer +blecha +birney +birkland +betances +beran +benny +benes +belin +belgrave +bealer +bauch +bath +bashir +bartow +baro +barnhouse +barile +ballweg +baisley +bains +baehr +badilla +bachus +bacher +bachelder +auzenne +aten +astle +allis +agarwal +adger +adamek +ziolkowski +zinke +zazueta +zamorano +younkin +won +wittig +witman +winsett +winkles +wiedman +whitner +whitcher +wetherby +westra +westhoff +wehrle +wee +wagaman +voris +vicknair +vegas +veasley +vaugh +vanish +vanderburg +valletta +tunney +trumbo +truluck +trueman +truby +trombly +trojan +tourville +tostado +tone +titcomb +timpson +tignor +thrush +thresher +thiede +tews +tamplin +taff +tacker +syverson +sylvestre +summerall +stumbaugh +strouth +straker +stradford +stoney +stokley +steinhoff +steinberger +stairs +spigner +soltero +snively +sletten +sinkler +sinegal +simoes +siller +sigel +shoe +shire +shinkle +shellman +sheller +sheats +sharer +selvage +sedlak +sea +schriver +schimke +scheuerman +schanz +savory +saulters +sauers +sais +rusin +rumfelt +ruhland +rozar +rosborough +ronning +rolph +roloff +rogue +robie +riviera +rimer +riehle +ricco +rhein +retzlaff +reisman +reimann +re +rayes +raub +raminez +quesinberry +pua +procopio +priolo +printz +prewett +preas +prahl +portugal +poovey +ploof +platz +plaisted +pinzon +pineiro +pickney +petrovich +perl +pehrson +peets +pavon +pautz +pascarella +paras +paolini +pals +pafford +oyer +ovellette +outten +outen +ours +orduna +odriscoll +oberlin +nosal +niven +nisbett +nevers +nathanson +mule +mukai +mozee +mowers +motyka +morency +montford +mollica +molden +mitten +miser +mina +millender +midgette +messerly +melendy +meisel +meidinger +meany +mcnitt +mcnemar +mcmakin +mcgaugh +mccaa +mauriello +maudlin +matzke +mattia +matteo +matsumura +masuda +mangels +maloof +malizia +mahmoud +maglione +maddix +lucchesi +lochner +linquist +lino +lietz +leventhal +leopard +lemanski +leiser +laury +lauber +lamberth +kuss +kung +kulik +kuiper +krout +kotter +kort +kohlmeier +koffler +koeller +knipe +knauss +kleiber +kissee +kirst +kirch +kilgo +kerlin +kellison +kehl +kalb +jorden +jantzen +jamar +inabinet +ikard +husman +hunsberger +hundt +hucks +houtz +houseknecht +hoots +hogsett +hogans +hintze +hession +henault +hemming +helsley +heinen +heffington +heberling +heasley +heal +hazley +hazeltine +hayton +hayse +hawke +haston +harward +harvard +harrow +hanneman +hafford +hadnot +guerro +graig +grahm +gowins +gordillo +goosby +glatt +gibbens +ghent +gerrard +germann +geil +gebo +gean +garling +gardenhire +garbutt +gagner +furguson +funchess +fujiwara +fujita +friley +frigo +forshee +folkes +filler +fernald +ferber +feingold +favorite +faul +farrelly +fairbank +failla +estelle +espey +eshleman +ertl +erhart +erhardt +erbe +elsea +ells +ellman +eisenhart +ehmann +earnhardt +duplantis +dulac +ducote +draves +dosch +dolce +divito +ditch +dimauro +derringer +demeo +demartini +delima +dehner +degen +defrancisco +defoor +dedeaux +debnam +cypert +cutrer +cusumano +custis +croker +courtois +costantino +cormack +corbeil +copher +conlan +conkling +cogdell +cilley +chapdelaine +cendejas +castiglia +cassette +cashin +carstensen +carol +caprio +calcote +calaway +byfield +butner +bushway +burritt +browner +brobst +briner +brighton +bridger +brickley +brendel +bratten +bratt +brainerd +brackman +bowne +bouck +borunda +bordner +bonenfant +boer +boehmer +bodiford +bleau +blankinship +blane +blaha +bitting +bissonette +bigby +bibeau +beverage +bermudes +berke +bergevin +bergerson +bendel +belville +bechard +bearce +beadles +batz +bartlow +barren +ayoub +avans +aumiller +arviso +arpin +arnwine +armwood +arent +arehart +arcand +antle +ambrosino +alongi +alm +allshouse +ahart +aguon +ziebarth +zeledon +zakrzewski +yuhas +yingst +yedinak +wommack +winnett +wingler +wilcoxen +whitmarsh +whistler +wayt +watley +wasser +warkentin +voll +vogelsang +voegele +vivanco +vinton +villafane +viles +versace +ver +venne +vanwagoner +vanwagenen +vanleuven +vanauken +uselton +uren +trumbauer +tritt +treadaway +tozier +tope +tomczak +tomberlin +tomasini +tollett +toller +titsworth +tirrell +tilly +tavera +tarnowski +tanouye +tall +swarthout +sutera +surette +styers +styer +stipe +stickland +steve +stembridge +stearn +starkes +stanberry +stahr +spino +spicher +sperber +speece +soo +sonntag +sneller +smalling +slowik +slocumb +sliva +slemp +slama +sitz +sisto +sisemore +sindelar +shipton +shillings +sheeley +sharber +shaddix +severns +severino +sever +sensabaugh +seder +seawell +seamons +schrantz +schooler +scheffer +scheerer +scalia +saum +santibanez +sano +sanjuan +sampley +sailer +sabella +sabbagh +royall +rottman +rivenbark +rikard +ricketson +rickel +rethman +reily +reddin +reasoner +reade +rast +ranallo +rana +quintal +pung +pucci +proto +prosperie +prim +preusser +preslar +powley +postma +pinnix +pilla +pietsch +pickerel +pica +pharris +petway +petillo +perin +pereda +pennypacker +pennebaker +pedrick +patin +patchell +parodi +parman +pantano +padua +padro +osterhout +orner +opp +olivar +ohlson +odonoghue +oceguera +oberry +novello +noguera +newquist +newcombe +neihoff +nehring +nees +nebeker +nau +mundo +mullenix +morrisey +moronta +morillo +morefield +mongillo +molino +minto +midgley +michie +menzies +medved +mechling +mealy +mcshan +mcquaig +mcnees +mcglade +mcgarity +mcgahey +mcduff +mayweather +mastropietro +masten +maranto +maniscalco +maize +mahmood +maddocks +maday +macha +maag +luken +lopp +lolley +llanas +litz +litherland +lindenberg +lieu +letcher +lentini +lemelle +leet +lecuyer +leber +laursen +latch +larrick +lantigua +langlinais +lalli +lafever +labat +labadie +kurt +krogman +kohut +knarr +klimas +klar +kittelson +kirschbaum +kintzel +kincannon +kimmell +killgore +kettner +kelsch +karle +kapoor +johansson +jock +jenkinson +janney +isabelle +iraheta +insley +hyslop +hy +human +huckstep +holleran +hoerr +hinze +hinnenkamp +hilger +higgin +hicklin +heroux +henkle +helfer +heikkinen +heckstall +heckler +heavener +haydel +haveman +haubert +harrop +harnois +hansard +hanover +hammitt +haliburton +haefner +hadsell +haakenson +guynn +guizar +grout +grosz +goo +gomer +golla +godby +glanz +glancy +givan +giesen +gerst +gayman +garraway +gabor +furness +frisk +fremont +frary +forand +fessenden +ferrigno +fearon +favreau +faulks +falbo +ewen +everton +eurich +etchison +esterly +entwistle +ellingsworth +elders +ek +eisenbarth +edelson +eckel +earnshaw +dunneback +doyal +donnellan +dolin +dibiase +deschenes +dermody +denmark +degregorio +darnall +dant +dansereau +danaher +dammann +dames +czarnecki +cuyler +custard +cummingham +cuffie +cuffee +cudney +cuadra +crigler +creger +coughlan +corvin +cortright +corchado +connery +conforti +condron +colosimo +colclough +cola +cohee +claire +ciotti +chill +chien +check +chacko +cevallos +cavitt +cavins +castagna +cashwell +carrozza +carrara +capra +campas +callas +caison +cai +caggiano +cabot +bynoe +buswell +burpo +burnam +burges +buerger +buelow +bueche +buckle +bruni +brummitt +brodersen +briese +breit +brakebill +braatz +boyers +boughner +borror +borquez +bonelli +bohner +blaze +blaker +blackmer +bissette +bibbins +bhatt +bhatia +bessler +bergh +beresford +bensen +benningfield +benito +bellantoni +behler +beehler +beazley +beauchesne +bargo +bannerman +baltes +balog +ballantyne +bad +axelson +apgar +aoki +anstett +alejos +alcocer +albury +aichele +ahl +ackles +zerangue +zehner +zank +zacarias +youngberg +yorke +yarbro +xie +wydra +worthley +wolbert +wittmer +witherington +wishart +wire +winnie +winkleman +willilams +willer +wiedeman +whittingham +whitbeck +whetsel +wheless +westerberg +welcher +wegman +waterfield +wasinger +warfel +wannamaker +walborn +wada +vogl +vizcarrondo +vitela +villeda +veras +venuti +veney +ulrey +uhlig +turcios +tremper +torian +torbett +thrailkill +terrones +teitelbaum +teems +tay +swoope +sunseri +stutes +stthomas +strohm +stroble +striegel +streicher +stodola +stinchcomb +steves +steppe +stem +steller +staudt +starner +stamant +stam +stackpole +sprankle +speciale +spahr +sowders +sova +soluri +soderlund +slinkard +skates +sjogren +sirianni +siewert +sickels +sica +shugart +shoults +shive +shimer +shier +shield +shepley +sheeran +sharper +sevin +severe +seto +segundo +sedlacek +scuderi +schurman +schuelke +scholten +schlater +schisler +schiefelbein +schalk +sanon +sae +sabala +ruyle +ruybal +ruf +rueb +rowsey +rosol +rocheleau +rishel +rippey +ringgold +rieves +ridinger +rew +retherford +rempe +reith +rafter +raffaele +quinto +putz +purdom +puls +pulaski +propp +principato +preiss +prada +polansky +poch +plath +pittard +pinnock +pfarr +pfannenstiel +penniman +pauling +patchen +paschke +parkey +pando +overly +ouimet +ottman +otter +ostlund +ormiston +occhipinti +nowacki +norred +noack +nishida +nilles +nicodemus +neth +nealey +myricks +murff +mungia +mullet +motsinger +moscato +mort +morado +moors +monnier +molyneux +modzelewski +miura +minich +militello +milbrandt +michalik +meserve +merle +mendivil +melara +meadow +mcnish +mcelhannon +mccroy +mccrady +mazzella +maule +mattera +mathena +matas +mass +mascorro +marone +marinello +marguez +marcell +manwaring +manhart +mangano +maggi +lymon +luter +luse +lukasik +luiz +ludlum +luczak +lowenthal +lossett +lorentzen +loredo +longworth +lomanto +lisi +lish +lipsky +linck +liedtke +levering +lessman +lemond +lembo +ledonne +leatham +laufer +lanphear +langlais +lando +lamphear +lamberton +lafon +lade +lacross +kyzer +krok +kring +krell +krehbiel +kratochvil +krach +kovar +kostka +knudtson +knaack +kliebert +klahn +kirkley +kimzey +kettle +kerrick +kennerson +keesler +karlin +kan +jenny +janousek +jan +imel +icenhour +hyler +hunger +hudock +houpt +hopping +hoops +holquin +holiman +holahan +hodapp +hires +hillen +hickmon +hersom +henrich +helvey +heidt +heideman +hedstrom +hedin +hebron +hayter +harn +hardage +harbor +halsted +hahne +hagemann +guzik +guel +groesbeck +gritton +grego +graziani +grasty +graney +gouin +gossage +golston +goheen +godina +glade +giorgi +giambrone +gerrity +gerrish +gero +gerling +gaulke +garlick +galiano +gaiter +gahagan +gagnier +friddle +fredericksen +franqui +follansbee +foerster +flury +fitzmaurice +fiorini +finlayson +fiecke +fickes +fichter +ferron +ferdinand +farrel +fackler +eyman +escarcega +errico +erler +erby +engman +engelmann +elsass +elliston +eddleman +eadie +dummer +drost +dorrough +dorrance +doolan +donalson +domenico +ditullio +dittmar +dishon +dionisio +dike +devinney +desir +deschamp +derrickson +delamora +deitch +dechant +dave +danek +dahmen +curci +cudjoe +crumble +croxton +creasman +craney +crader +cowling +coulston +cortina +corlew +corl +copland +convery +cohrs +clune +clausing +cipriani +cinnamon +cianciolo +chubb +chittum +chenard +charlesworth +charlebois +champine +chamlee +chagoya +casselman +cardello +capasso +cannella +calderwood +byford +buttars +bushee +burrage +buentello +brzozowski +bryner +brumit +brookover +bronner +bromberg +brixey +brinn +briganti +bremner +brawn +branscome +brannigan +bradsher +bozek +boulay +bormann +bongiorno +bollin +bohler +bogert +bodenhamer +blose +blind +bivona +bitter +billips +bibler +benfer +benedetti +belue +bellanger +belford +behn +beerman +barnhardt +baltzell +balling +balducci +bainter +babineau +babich +baade +attwood +asmus +asaro +artiaga +april +applebaum +ang +anding +amar +amaker +allsup +alligood +alers +agin +agar +achenbach +abramowitz +abbas +aasen +zehnder +yopp +yelle +yeldell +wynter +woodmansee +wooding +woll +winborne +willsey +willeford +widger +whiten +whitchurch +whang +wen +weissinger +weinman +weingartner +weidler +waltrip +walt +wagar +wafford +vitagliano +villalvazo +villacorta +vigna +vickrey +vicini +ventimiglia +vandenbosch +valvo +valazquez +utsey +urbaniak +unzueta +trombetta +trevizo +trembley +tremaine +traverso +tores +tolan +tillison +tietjen +tee +teachout +taube +tatham +tarwater +tarbell +sydow +sy +swims +swader +striplin +stops +stoltenberg +steinhauer +steil +steigerwald +starkweather +stallman +squier +sparacino +span +spadafora +shiflet +shibata +shevlin +sherrick +shake +sessums +servais +senters +seevers +seelye +searfoss +seabrooks +scoles +schwager +schrom +schmeltzer +scheffel +sax +sawin +saterfiel +sardina +sanroman +sane +sandin +salamanca +saladin +sak +sabia +rustin +rushin +ruley +rueter +row +rotter +rosenzweig +roles +rohe +roder +rockey +ro +riter +rieth +ried +riding +riddles +ridder +rennick +remmers +remer +relyea +reilley +reder +rasheed +rakowski +rabin +queener +pursel +prue +prowell +pritts +primo +presler +pouncy +porche +porcaro +pollman +pleas +planas +pinkley +pinegar +pilger +philson +petties +perrodin +pendergrast +patao +pasternak +passarelli +pasko +parshall +panos +panella +palombo +padillo +oyama +overlock +overbeck +otterson +orrell +ornellas +opitz +okelly +officer +obando +noggle +nicosia +netto +negrin +natali +nakayama +nagao +nadel +musial +murrill +murrah +munsch +mucci +mrozek +moyes +mowrer +moris +morais +moorhouse +monico +mone +mondy +moncayo +mole +miltenberger +milsap +milone +millikin +milardo +mika +micheals +micco +meyerson +mericle +mendell +meinhardt +meachum +mcleroy +mcgray +mcgonigal +maultsby +matis +matheney +matamoros +marro +marcil +marcial +mantz +mannings +maltby +malchow +maiorano +mahn +mahlum +maglio +mae +maberry +lustig +luellen +longwell +longenecker +lofland +locascio +linney +linneman +lighty +levell +levay +lenahan +lemen +lehto +lebaron +lanctot +lamy +lainez +laffoon +labombard +kujawski +kroger +kreutzer +korhonen +kondo +kollman +kohan +kogut +knaus +kivi +kittel +kinner +kindig +kindel +kiesel +kidney +kibby +khang +kettler +ketterer +kepner +kelliher +keenum +kanode +kail +july +juhasz +jowett +jolicoeur +jeon +iser +ingrassia +imai +hutchcraft +humiston +hulings +hukill +huizenga +hugley +huddle +hose +hornyak +hodder +hisle +hillenbrand +hille +higuchi +hertzler +herdon +heppner +hepp +heitmann +heckart +hazlewood +hayles +hayek +hawthorn +hawkin +haugland +hasler +harbuck +happel +hambly +hambleton +hagaman +guzzi +gullette +guinyard +grogg +grise +griffing +goto +gosney +goods +goley +goldblatt +gledhill +girton +giltner +gillock +gilham +gilfillan +giblin +gentner +gehlert +gehl +garten +garney +garlow +garett +galles +galeana +futral +fuhr +friedland +franson +fransen +foulds +follmer +foland +flax +flavin +firkins +fillion +figueredo +ferrill +fenster +fenley +fauver +farfan +factor +eustice +eppler +engelman +engelke +emmer +elzy +ellwood +ellerbee +elks +ehret +ebbert +durrah +dupras +dubuque +dragoo +donlon +dolloff +doi +dibella +derrico +demko +demar +darrington +czapla +crooker +creagh +cranor +craner +crafts +crabill +coyer +cowman +cowherd +cottone +costillo +coster +costas +cosenza +corker +collinson +coello +clingman +clingerman +claborn +citizen +chmura +chausse +chaudhry +chapell +chancy +cerrone +caves +caverly +caulkins +carn +campfield +campanelli +callaham +cadorette +butkovich +buske +burrier +burkley +bunyard +budge +buckelew +buchheit +broman +brescia +brasel +brain +boyster +booe +bonomo +bonnet +bondi +bohnsack +bobby +blomberg +blanford +bilderback +biggins +bently +behrends +beegle +bedoya +bechtol +beaubien +bayerl +baumgart +baumeister +barratt +barlowe +barkman +barbagallo +baldree +baine +bail +baggs +bacote +aylward +ashurst +arvidson +arthurs +arrieta +arrey +arreguin +arrant +arner +armor +arizmendi +anker +amis +amend +alphin +allbright +aikin +acres +zupan +zuchowski +zeolla +zanchez +zahradnik +zahler +younan +yeater +yearta +yarrington +yantis +woomer +wollard +wolfinger +woerner +witek +wishon +wisener +wingerter +willet +wilding +wiedemann +weisel +wedeking +weary +waybright +wardwell +walkins +waldorf +voth +voit +virden +viloria +villagran +vasta +vashon +vaquera +vantassell +vanderlinden +vandergrift +vancuren +valenta +underdahl +tyra +tygart +twining +twiford +turlington +tullius +tubman +trowell +trieu +transue +tousant +torgersen +tooker +tony +tome +toma +tocci +tippins +tinner +timlin +tillinghast +tidmore +teti +tedrick +tacey +swanberg +sunde +summitt +summerford +summa +sue +stratman +strandberg +storck +stober +steitz +stayer +stauber +staiger +sponaugle +spofford +sparano +spagnola +sokoloski +snay +slough +skowronski +sieck +shimkus +sheth +sherk +shankles +shakespeare +shahid +sevy +sergeant +senegal +seiden +seidell +searls +searight +schwalm +schug +schilke +schier +scheck +sawtelle +santore +santa +sanks +sandquist +sanden +saling +sabine +saathoff +ryberg +rustad +ruffing +rudnicki +ruane +rozzi +rowse +rosenau +rodes +risser +riggin +riess +riese +rhoten +reinecke +reigle +reichling +redner +rebelo +raynes +raimondi +rahe +rada +querry +quellette +pulsifer +prochnow +pretty +prato +poulton +poudrier +poll +policastro +polhemus +polasek +poissant +pohlmann +plotner +pitkin +pita +pio +pinkett +pilot +piekarski +pichon +philippe +pfau +petroff +petermann +peplinski +peller +pecinovsky +pearse +pattillo +patague +parlier +parenti +parchman +pane +paff +ota +ortner +oros +nolley +noakes +nigh +nicolosi +nicolay +newnam +netter +nass +napoles +nakata +nakamoto +muriel +muck +morlock +moraga +montilla +mongeau +molitor +mohney +mitchener +meyerhoff +medel +mcniff +mcmonagle +mcglown +mcglinchey +mcgarrity +mccright +mccorvey +mcconnel +mccargo +mazzei +matula +mastroianni +massingale +maring +maricle +marc +mans +mannon +mannix +manney +manger +manalo +malo +malan +mahony +madril +mackowiak +macko +macintosh +lurry +luczynski +lucke +lucarelli +luca +loud +lou +losee +lorence +loiacono +lohse +loder +lipari +linebarger +lindamood +limbaugh +letts +leleux +leep +leeder +leard +laxson +lawry +laverdiere +laughton +lastra +kurek +kriss +krishnan +kretschmer +krebsbach +kontos +knobel +knauf +klick +kleven +klawitter +kitchin +kirkendoll +kinkel +kingrey +kilbourn +kensinger +kennerly +kamin +justiniano +jurek +junkin +julia +judon +jordahl +jeanes +jarrells +jamal +iwamoto +isreal +ishida +ines +immel +iman +ihle +hyre +hurn +hunn +hultman +huffstetler +huffer +hubner +howey +horney +hooton +holts +holscher +holen +hoggatt +hilaire +herz +henne +helstrom +hellickson +heinlein +heckathorn +heckard +heather +heart +headlee +hauptman +haughey +hatt +harring +harford +hammill +hamed +halperin +haig +hagwood +hagstrom +gunnells +gundlach +guardiola +greeno +greenland +gonce +goldsby +gobel +gisi +gillins +gillie +germano +geibel +gauger +garriott +garbarino +gander +gajewski +funari +fullbright +fuell +fritzler +freshwater +freas +fortino +forbus +fonda +flohr +flemister +fisch +finks +fenstermaker +feldstein +faw +farhat +farah +fankhauser +fagg +fader +exline +emigh +eguia +edman +eckler +eastburn +dy +dunmore +dubuisson +dubinsky +drayer +doverspike +doubleday +doten +dorner +dolson +dohrmann +disla +direnzo +dipaola +dines +dickie +diblasi +dewolf +desanti +dennehy +demming +delker +decola +davilla +davids +daughtridge +darville +darland +danzy +dandy +dagenais +culotta +cruzado +crudup +croswell +coverdale +covelli +couts +corbell +coplan +coolbaugh +conyer +conlee +conigliaro +comiskey +coberly +clendening +clairmont +cienfuegos +chojnacki +chilcote +champney +cassara +casazza +casado +carew +carbin +carabajal +calcagni +cail +caddy +busbee +burts +burbridge +bunge +bundick +buhler +bucker +bucholtz +bruen +broce +brite +brignac +brierly +bridgman +braham +bradish +boyington +borjas +bonnie +bonn +bonhomme +bohlen +bogardus +bockelman +blick +blackerby +bizier +biro +binney +bertolini +bertin +berti +bert +bento +beno +belgarde +belding +beckel +becerril +bazaldua +bayes +bayard +barrus +barris +baros +bara +ballow +balboa +bakewell +baginski +badalamenti +backhaus +avilez +auvil +atteberry +ardon +anzaldua +anello +amsler +amo +ambrosio +althouse +alles +alix +alberti +alberson +aitchison +aguinaga +ziemann +zickefoose +zerr +zeh +zeck +zartman +zahm +zabriskie +yohn +yellowhair +yeaton +yarnall +yaple +wolski +wixon +winford +willner +willms +whitsitt +wheelwright +weyandt +wess +wengerd +weatherholtz +wattenbarger +walrath +walpole +waldrip +voges +violet +vinzant +viars +veres +veneziano +veillon +vawter +vaughns +vanwart +vanostrand +valiente +valderas +uhrig +tunison +tulloch +trostle +treaster +traywick +toye +tomson +tomasello +tomasek +tippit +tinajero +tift +tienda +thorington +thierry +thieme +thibeau +thakkar +tewell +test +telfer +sweetser +sum +stratford +stracener +stoke +stiverson +stelling +stefan +stavros +speaker +spatz +spagnoli +sorge +sober +slevin +slabaugh +simson +shupp +shoultz +shotts +shiroma +shetley +sherrow +sheffey +shawgo +shamburger +sester +segraves +seelig +seats +scioneaux +schwartzkopf +schwabe +scholes +schmuck +schluter +schlecht +schillaci +schildgen +schieber +schewe +schecter +scarpelli +scaglione +sautter +santelli +sandman +salmi +sabado +ryer +rydberg +ryba +rushford +running +runk +ruddick +rotondo +rote +rosenfield +roesner +rocchio +ritzer +rippel +rimes +riffel +richison +ribble +reynold +resh +rehn +ratti +rasor +rasnake +rappold +rando +radosevich +pulice +puff +prichett +pribble +poynor +plowden +pitzen +pittsley +pitter +pigeon +philyaw +philipps +petite +pestana +perro +perone +pera +peil +pedone +pawlowicz +pattee +parten +parlin +pariseau +paredez +pardon +panther +paek +pacifico +otts +ostrow +osornio +oslund +orso +ooten +onken +oniel +onan +ollison +ohlsen +ohlinger +odowd +niemiec +neubert +nembhard +neaves +neathery +nakasone +myerson +muto +muntz +munez +mumme +mumm +mujica +muise +muench +morriss +molock +mishoe +minier +metzgar +mero +meiser +meese +meals +mcsween +mcquire +mcquinn +mcpheeters +mckeller +mcilrath +mcgown +mcdavis +mccuen +mcclenton +maxham +matsui +marriner +marlette +mantle +mansur +mancino +maland +majka +maisch +maheux +madry +madriz +mackley +macke +lydick +lutterman +luppino +lundahl +lovingood +loudon +longmore +lippman +liefer +leveque +lescarbeau +lemmer +ledgerwood +lawver +lawrie +lattea +lasko +lahman +kulpa +kukowski +kukla +kubota +kubala +krizan +kriz +krikorian +kravetz +kramp +kowaleski +knobloch +klosterman +kloster +klepper +kirven +kinnaman +kinnaird +killam +kiesling +kesner +keebler +keagle +karls +kapinos +kantner +kaba +junious +jefferys +jacquet +izzi +ishii +irion +ifill +hyun +hotard +horman +hoppes +hopkin +hokanson +hoda +hocutt +hoaglin +hites +hirai +hindle +hinch +hilty +hild +hier +hickle +hibler +henrichs +hempstead +helmers +hellard +heims +heidler +hearst +hawbaker +hau +harkleroad +harari +hanney +hannaford +hamid +hamburger +haltom +hallford +guilliams +guerette +gryder +groseclose +groen +grimley +greenidge +greek +graffam +goucher +goodenough +goldsborough +goldie +gloster +glanton +gladson +gladding +ghee +gethers +gerstein +geesey +geddie +gayer +gaw +gaver +gauntt +gartland +garriga +garoutte +gao +gan +fronk +fritze +frenzel +forgione +fluitt +flinchbaugh +flach +fiorito +finan +finamore +fimbres +fillman +file +figeroa +ficklin +feher +feddersen +fambro +fairbairn +eves +esperanza +escalona +elsey +eisenstein +ehrenberg +eargle +dress +drane +dorothy +doria +dogan +dively +dewolfe +dettman +desiderio +desch +dennen +denk +demaris +delsignore +dejarnette +deere +dedman +daws +dawn +dauphinais +danz +dantin +dannenberg +dalby +currence +culwell +cuesta +croston +crossno +cromley +crisci +craw +coryell +cooter +condra +columbia +colpitts +colas +coach +clink +clevinger +clermont +cistrunk +cirilo +chirico +chiarello +cephus +cecena +cavaliere +caughey +casimir +carwell +carlon +carbonaro +caraveo +cantley +callejas +cagney +cadieux +cabaniss +bushard +burlew +buras +budzinski +bucklew +bruneau +brummer +brueggemann +brotzman +bross +broad +brittian +brimage +briles +brickman +breneman +breitenstein +brandel +brackins +boydstun +botta +bosket +boros +borgmann +bordeau +bonifacio +bolten +boehman +blundell +bloodsaw +bjerke +biffle +bickett +bickers +beville +bergren +bergey +benzing +belfiore +beirne +beckert +bebout +baumert +battey +bartman +barrs +barriere +barcelo +barbe +balliet +baham +babst +auton +asper +asbell +arzate +argento +arel +araki +arai +apo +antley +amodeo +ammann +allyn +allensworth +aldape +akey +abeita +zweifel +zeng +zeiler +zamor +zalenski +yzaguirre +yousef +yetman +yau +wyer +woolwine +wohlgemuth +wohlers +wittenberg +wingrove +wind +wimsatt +willimas +wilkenson +wildey +wilderman +wilczynski +wigton +whorley +wellons +welles +welle +weirich +weideman +weide +weekly +weast +wasmund +warshaw +walson +waldner +walch +walberg +wagener +wageman +vrieze +vossen +vorce +voorhis +vonderheide +viruet +vicari +verne +velasques +vautour +vartanian +varona +vankeuren +vandine +vandermeer +ursery +underdown +uhrich +uhlman +tworek +twine +twellman +tweedie +tutino +turmelle +tubb +troop +trivedi +triano +trevathan +treese +treanor +treacy +traina +topham +toenjes +tippetts +tieu +thomure +thatch +than +tetzlaff +tetterton +tena +tell +teamer +tappan +tank +talcott +tagg +szczepanski +syring +surace +sulzer +sugrue +sugarman +suess +styons +stwart +stupka +strey +straube +strate +stoddart +stockbridge +stjames +stinger +steimle +steenberg +start +stamand +staller +stahly +stager +spurgin +sprow +sponsler +speas +spainhour +sones +smits +smelcer +slovak +slaten +singleterry +simien +sidebottom +sibrian +shellhammer +shelburne +shambo +sepeda +seigel +scogin +scianna +schmoll +schmelzer +scheu +schachter +savant +sauseda +satcher +sandor +sampsell +rugh +rufener +rudolf +rotenberry +rossow +rossbach +roots +rollman +rodrique +rodreguez +rodkey +roda +rising +rini +riggan +rients +riedl +rhines +ress +reinbold +raschke +rardin +rain +racicot +quillin +pushard +primrose +pries +pressey +precourt +pratts +postel +poppell +plumer +pingree +pieroni +pflug +petre +petrarca +peterka +peru +perkin +pergande +peranio +penna +pekar +pea +paulhus +pasquariello +parras +parmentier +para +panzer +pamplin +oviatt +osterhoudt +ostendorf +osmun +ortman +orloff +orban +onofrio +olveda +oltman +okeeffe +ocana +nunemaker +novy +noffsinger +nish +niday +nethery +nestle +nemitz +neidert +nadal +nack +muszynski +munsterman +mulherin +mortimore +morter +montesino +montalvan +montalbano +momon +moman +mom +mogan +minns +millward +milling +michelsen +micheal +mewborn +metro +metayer +mensch +meloy +meggs +meaders +mcsorley +mcmenamin +mclead +mclauchlin +mcguffey +mcguckin +mcglaughlin +mcferron +mcentyre +mccrum +mccawley +mcbain +mayhue +mau +matzen +matton +marsee +marrin +marland +markum +mantilla +manfre +malta +makuch +madlock +maclaren +macauley +luzier +luthy +lufkin +lucena +loudin +lothrop +lorch +lona +loll +loadholt +lisa +lippold +likes +lichtman +liberto +liakos +lewicki +levett +level +lentine +leja +legree +lawhead +lauro +lauder +lard +lanman +lank +laning +lama +lalor +krob +kriger +kriegel +krejci +kreisel +kozel +kos +konkel +kolstad +koenen +kocsis +knoblock +knebel +klopfer +klee +kilday +kesten +kerbs +kempker +keathley +kazee +kawasaki +kaur +kamer +kamaka +kallenbach +kafka +jerrell +jehle +jaycox +jardin +jahns +ivester +hyppolite +hyche +husbands +hur +huppert +hulin +hubley +horsey +hornak +holzwarth +holmon +hollabaugh +holaway +hodes +hoak +hinesley +hillwig +hillebrand +highfield +heslop +herrada +hendryx +hellums +heit +heishman +heindel +hayslip +hayford +hastie +hartgrove +hanus +hakim +hains +hadnott +gundersen +gulino +guidroz +guebert +gressett +greenhouse +graydon +gramling +grahn +goupil +gory +gorelick +goodreau +goodnough +golay +going +goers +glatz +gillikin +gieseke +giammarino +getman +geronimo +gerardo +gensler +gazda +garibaldi +gahan +fury +funderburke +fukuda +fugitt +fuerst +fortman +forsgren +formica +fluke +flink +fitton +feltz +fekete +feit +fehrenbach +farone +farinas +faries +fagen +ewin +esquilin +esch +enderle +ellery +ellers +ekberg +egli +effinger +dymond +dulle +dula +duhe +dudney +duane +dowless +dower +dorminey +dopp +dooling +domer +disher +dillenbeck +difilippo +dibernardo +deyoe +devillier +denley +deland +defibaugh +deeb +debow +dauer +datta +darcangelo +daoust +damelio +dahm +dahlman +cypher +curling +curlin +cupit +culton +cuenca +cropp +croke +cremer +crace +cosio +corzine +coombe +coman +colone +coloma +collingwood +coletta +coderre +cocke +cobler +claybrook +circle +cincotta +cimmino +christoff +christina +chisum +chillemi +chevere +chae +chachere +cervone +cermak +cefalu +cauble +cather +caso +carns +carcamo +carbo +capoccia +capello +capell +canino +cambareri +calvi +cabiness +bushell +burtt +burstein +burkle +bunner +bundren +buechler +bryand +bruso +brownstein +brow +brouse +brodt +broaden +brisbin +brightman +bridgett +brenes +breitenbach +brazzell +brazee +bramwell +bramhall +bradstreet +boyton +bowland +boulter +bossert +bonura +bonebrake +bonacci +boeck +blystone +birchard +bilal +biddy +bibee +bevans +bethke +bertelsen +berney +bergfeld +benware +bellon +bellah +been +batterton +barberio +bamber +bagdon +badeaux +averitt +augsburger +ates +arvie +aronowitz +arens +arch +araya +angelos +andrada +amell +amante +alvin +almy +almquist +alls +aispuro +aguillon +agudelo +admire +acy +aceto +abbot +abalos +zdenek +zaremba +zaccaria +youssef +wrona +wrinkle +wrede +wotton +woolston +wolpert +wollman +wince +wimberley +willmore +willetts +wikoff +wieder +wickert +whitenack +wernick +welte +welden +weiskopf +weisenberger +weich +wallington +walder +vossler +vore +vigo +vierling +victorine +verdun +vencill +vena +vazguez +vassel +vanzile +vanvliet +vantrease +vannostrand +vanderveer +vanderveen +vancil +uyeda +umphrey +uhler +uber +tutson +turrentine +tullier +tugwell +trundy +tripodi +tomer +tomei +tomasi +tomaselli +tokarski +tisher +tibbets +thweatt +thistle +tharrington +tesar +telesco +teasdale +tatem +taniguchi +suriel +sudler +stutsman +sturman +strite +strelow +streight +strawder +stransky +strahl +stours +stong +stinebaugh +stilts +stillson +steyer +stelle +steffy +steffensmeier +statham +squillante +spiess +spargo +southward +soller +soden +snuggs +snellgrove +smyers +smiddy +slonaker +skyles +skowron +sivils +siqueiros +siers +siddall +shorty +shontz +shingler +shiley +shibley +sherard +shelnutt +shedrick +shasteen +sereno +selke +scovil +scola +schuett +schuessler +schreckengost +schranz +schoepp +schneiderman +schlanger +schiele +scheuermann +schertz +scheidler +scheff +schaner +schamber +scardina +savedra +saulnier +sater +sarro +sambrano +salomone +sabourin +ruud +rutten +ruffino +ruddock +rowser +roussell +rosengarten +rominger +rollinson +rohman +roeser +rodenberg +roberds +ridgell +rhodus +reynaga +rexrode +revelle +rempel +remigio +reising +reiling +reetz +rayos +ravenscroft +ravenell +raulerson +rasmusson +rask +rase +ragon +quesnel +quashie +puzo +puterbaugh +ptak +prost +prisbrey +principe +pricer +pratte +pouncey +portman +pontious +pomerantz +platter +planck +pilkenton +pilarski +piano +phegley +pertuit +perla +penta +pelc +peffer +pech +peagler +pavelka +pavao +patman +paskett +parrilla +pardini +papazian +panter +palin +paley +pai +pages +paetzold +packett +pacheo +ostrem +orsborn +olmedo +okamura +oiler +ohm +oglesbee +oatis +oakland +nuckles +notter +nordyke +nogueira +niswander +nibert +nesby +neloms +nading +naab +munns +mullarkey +moudy +moret +monnin +molder +modisette +moczygemba +moctezuma +mischke +miro +mings +milot +milledge +milhorn +milera +mieles +mickley +michelle +micek +metellus +mersch +merola +mercure +mencer +mellin +mell +meinke +mcquillan +mcmurtrie +mckillop +mckiernan +mckendrick +mckamie +mcilvaine +mcguffie +mcgonigle +mcgarrah +mcfetridge +mcenaney +mcdow +mccutchan +mccallie +mcadam +maycock +maybee +mattei +massi +masser +masiello +marth +marshell +marmo +marksberry +markell +marchal +manross +manganaro +mally +mallow +mailhot +magyar +madonna +madero +madding +maddalena +macfarland +lynes +lush +lugar +luckie +lucca +lovitt +loveridge +loux +loth +loso +lorenzana +lorance +lockley +lockamy +littler +litman +litke +liebel +lichtenberger +licea +leverich +letarte +lesesne +leno +legleiter +leffew +laurin +launius +laswell +lassen +lasala +laraway +laramore +landrith +lancon +lanahan +laiche +laford +lachermeier +kunst +kugel +kuck +kuchta +kube +korus +koppes +kolbe +koerber +kochan +knittel +kluck +kleve +kleine +kitch +kirton +kirker +kintz +kinghorn +kindell +kimrey +kilduff +kilcrease +kicklighter +kibble +kervin +keplinger +keogh +kellog +keeth +kealey +kazmierczak +karner +kamel +kalina +kaczynski +juel +joye +jerman +jeppson +jawad +jasik +jaqua +janusz +janco +island +inskeep +inks +ingold +ing +hyndman +hymer +hunte +hunkins +humber +huffstutler +huffines +hudon +hudec +hovland +houze +hout +hougland +hopf +hon +holsapple +holness +hollenbach +hoffmeister +hitchings +hirata +hieber +hickel +hewey +herriman +hermansen +herandez +henze +heffelfinger +hedgecock +hazlitt +hazelrigg +haycock +harren +harnage +harling +harcrow +hannold +hanline +hanel +hanberry +hammersley +hamernik +halliwell +hajduk +haithcock +haff +hadaway +haan +gullatt +guilbault +guidotti +gruner +grisson +grieves +granato +gracie +grabert +gover +gorka +glueck +girardin +giorgio +giesler +gersten +gering +geers +gaut +gaulin +gaskamp +garbett +gallivan +galland +gaeth +fullenkamp +fullam +friedrichs +freire +freeney +fredenburg +frappier +fowkes +foree +fleurant +fleig +fleagle +fitzsimons +fischetti +fiorenza +finneran +filippi +figueras +fesler +fertig +fennel +feltmann +felps +felmlee +faye +fannon +familia +fairall +fail +fadden +esslinger +enfinger +elsasser +elmendorf +ellisor +einhorn +ehrman +egner +edmisten +edlund +ebinger +dyment +dykeman +durling +dunstan +dunsmore +dugal +duer +drescher +doyel +down +dossey +donelan +dockstader +dobyns +divis +dilks +didier +desrosier +desanto +deppe +deng +delosh +delange +defrank +debo +dauber +dartez +daquila +dankert +dahn +cygan +cusic +curfman +croghan +croff +criger +creviston +crays +cravey +crandle +crail +crago +craghead +cousineau +couchman +cothron +corella +conine +coller +colberg +cogley +coatney +coale +clendenin +claywell +clagon +cifaldi +choiniere +chickering +chica +chennault +chavarin +chattin +chaloux +challis +cesario +certain +cazarez +caughman +catledge +casebolt +carrel +carra +carlow +capote +canez +camillo +caliendo +calbert +cairo +bylsma +bustle +buskey +buschman +burkhard +burghardt +burgard +buonocore +bunkley +bungard +bundrick +bumbrey +buice +buffkin +brundige +brockwell +brion +brin +briant +bredeson +bransford +brannock +brakefield +brackens +brabant +boxer +bowdoin +bouyer +bothe +boor +bonavita +bollig +blurton +blunk +blanke +blanck +birden +bierbaum +bevington +beutler +betters +bettcher +bera +benway +bengston +benesh +behar +bedsole +becenti +beachy +battersby +basta +bartmess +bartle +bartkowiak +barsky +barrio +barletta +barfoot +banegas +ballin +baldonado +bal +azcona +avants +austell +aungst +aune +aumann +audia +atterbury +asselin +asmussen +ashline +asbill +arvizo +arnot +ariola +ardrey +angstadt +anastasio +amsden +amor +amerman +alred +almeda +allington +alewine +alcina +alberico +alas +ahlgren +aguas +agrawal +agosta +adolphsen +addie +acre +acey +aburto +abler +zwiebel +zuk +zepp +zentz +ybarbo +yarberry +yamauchi +yamashiro +wurtz +wronski +worster +wootten +wool +wongus +woltz +wolanski +witzke +withey +wisecarver +wingham +wineinger +winegarden +windholz +wilgus +wiesen +wieck +widrick +wickliffe +whittenberg +westby +werley +wengert +wendorf +weimar +weick +weckerly +watrous +wasden +walford +wainright +wahlstrom +wadlow +vrba +voisin +vives +vivas +vitello +villescas +villavicencio +villanova +vialpando +vetrano +verona +vensel +vassell +varano +vanriper +vankleeck +vanduyne +vanderpol +vanantwerp +valenzula +udell +turnquist +tuff +trickett +tremble +tramble +tingey +ting +timbers +tietz +thon +thiem +then +tercero +tenner +tenaglia +teaster +tarlton +taitt +taggert +tabon +sward +swaby +suydam +surita +suman +sugar +suddeth +stumbo +studivant +strobl +stretch +streich +stow +stoodley +stoecker +stillwagon +stickle +stellmacher +stefanik +steedley +starbird +stake +stainback +stacker +speir +spath +sommerfeld +soltani +solie +sojka +sobota +sobieski +sobczak +smullen +sleeth +slaymaker +skolnick +skoglund +sires +singler +silliman +shrock +shott +shirah +shimek +shepperd +sheffler +sheeler +sharrock +sharman +shalash +seyfried +seybold +selander +seip +seifried +sedor +sedlock +sebesta +seago +scutt +scrivens +sciacca +schultze +schoemaker +schleifer +schlagel +schlachter +schempp +scheider +scarboro +santi +sang +sandhu +sally +salim +saia +rylander +ryburn +rutigliano +ruocco +ruland +rudloff +rott +rosenburg +rosenbeck +romberger +romanelli +rohloff +rohlfing +rodda +rodd +ritacco +rielly +rieck +rickles +rickenbacker +rhett +respass +reisner +reineck +reighard +rehbein +rega +redwood +reddix +razor +rawles +raver +rattler +ratledge +rathman +ramsburg +raisor +radovich +radigan +quail +puskar +purtee +priestly +prestidge +presti +pressly +pozo +pottinger +portier +porta +porcelli +poplawski +polin +points +poeppelman +pocock +plump +plantz +placek +piro +pinnell +pinkowski +pietz +picone +philbeck +pflum +peveto +perret +pentz +payer +paulette +patlan +paterno +papageorge +pae +overmyer +overland +osier +orwig +orum +orosz +oquin +opie +oda +ochsner +oathout +nygard +norville +northway +niver +nicolson +newhart +nery +neitzel +nath +nanez +mustard +murnane +mortellaro +morreale +morino +moriarity +morgado +moorehouse +mongiello +molton +mirza +minnix +millspaugh +milby +miland +miguez +mickles +michaux +mento +melugin +melrose +melito +meinecke +mehr +meares +mcneece +mckane +mcglasson +mcgirt +mcgilvery +mcculler +mccowen +mccook +mcclintic +mccallon +mazzotta +maza +mayse +mayeda +matousek +matley +martyn +maroon +marney +marnell +marling +marcelino +manuelito +maltos +malson +maire +mahi +maffucci +macken +maass +lyttle +lynd +lyden +lukasiewicz +luebbers +lovering +loveall +lords +longtin +lok +lobue +loberg +loan +lipka +lion +linen +lightbody +lichty +levert +lev +lettieri +letsinger +lepak +lemmond +lembke +leitz +lasso +lasiter +lango +landsman +lamirande +lamey +laber +kuta +kulesza +kua +krenz +kreiner +krein +kreiger +kraushaar +kottke +koser +kornreich +kopczynski +konecny +kok +koff +koehl +kocian +knaub +kmetz +kluender +klenke +kleeman +kitzmiller +kirsh +kilman +kildow +kielbasa +ketelsen +kesinger +kendra +kehr +keef +kauzlarich +karter +kahre +junk +jong +jobin +joaquin +jinkins +jines +jeffress +jaquith +jaillet +jablonowski +ishikawa +irey +ingerson +indelicato +in +huntzinger +huisman +huett +howson +houge +hosack +hora +hoobler +holtzen +holtsclaw +hollingworth +hollin +hoberg +hobaugh +hilker +hilgefort +higgenbotham +heyen +hetzler +hessel +hennessee +hendrie +hellmann +heft +heesch +haymond +haymon +haye +havlik +havis +haverland +haus +harstad +harriston +harm +harju +hardegree +hankey +hands +hampshire +hammell +hamaker +halbrook +halberg +guptill +guntrum +gunderman +gunder +gularte +guarnieri +gu +groll +grippo +greely +grave +gramlich +goh +goewey +goetzinger +goding +giraud +giefer +giberson +gennaro +gemmell +gearing +gayles +gaudin +gatz +gatts +gasca +garn +gandee +gammel +galindez +galati +gagliardo +fulop +fukushima +friedt +fretz +frenz +freeberg +frederic +fravel +fountaine +forry +forck +fonner +flippin +flewelling +flansburg +filippone +fettig +fenlon +felter +felkins +fein +faz +favor +favero +faulcon +farver +farless +fahnestock +facemire +faas +eyer +evett +every +esses +escareno +ensey +ennals +engelking +empey +emily +elvira +ellithorpe +effler +edling +edgley +durrell +dunkerson +draheim +domina +dombrosky +doescher +dobbin +divens +dinatale +dimitri +dieguez +diede +devivo +devilbiss +devaul +determan +desjardin +deshaies +demo +delpozo +delorey +delman +delapp +delamater +deibert +degroff +debelak +dapolito +dano +dacruz +dacanay +cushenberry +cruze +crosbie +cregan +cousino +corrie +corrao +corney +cookingham +conry +collingsworth +coldren +cobian +coate +clauss +chrysler +christine +christenberry +chmiel +chauez +charters +chait +cesare +cella +caya +castenada +cashen +captain +cantrelle +canova +candy +canary +campione +camel +calixte +caicedo +byerley +buttery +butter +burda +burchill +bun +bulmer +bulman +buesing +buczek +buckholz +buchner +buchler +buban +bryne +brutus +brunkhorst +brumsey +brumer +brownson +broker +brodnax +brezinski +brazile +braverman +brasil +branning +bradly +boye +boulden +bough +bossard +bosak +borth +borgmeyer +borge +blowers +blaschke +blann +blankenbaker +bisceglia +billingslea +bialek +beverlin +besecker +berquist +benigno +benavente +belizaire +beisner +behrman +beausoleil +bea +baylon +bayley +bassi +basnett +basilio +basden +basco +banerjee +balli +bake +bagnell +bady +averette +augusta +arzu +arn +archambeault +arboleda +arbaugh +arata +antrim +amrhein +amerine +alpers +alfrey +alcon +albus +albertini +aguiniga +aday +acquaviva +accardi +zygmont +zych +zollner +zobel +zinck +zertuche +zaragosa +zale +zaldivar +ying +yeadon +wykoff +woullard +wolfrum +wohlford +wison +wiseley +wisecup +winchenbach +wiltsie +whittlesey +whitelow +whiteford +wever +westrich +wertman +wensel +wenrich +weisbrod +weglarz +wedderburn +weatherhead +wease +warring +wand +wadleigh +voltz +vise +villano +vicario +vermeulen +vazques +vasko +varughese +vangieson +vanfossen +vanepps +vanderploeg +vancleve +valerius +uyehara +unsworth +twersky +turrell +tuner +tsui +trunzo +trousdale +trentham +traughber +torgrimson +toppin +tokar +tobia +tippens +tigue +thong +thiry +thackston +terhaar +tenny +tassin +tadeo +sweigart +sutherlin +sumrell +suen +stuhr +strzelecki +strosnider +streiff +stottlemyer +storment +storlie +stonesifer +stogsdill +stenzel +stemen +stellhorn +steidl +stecklein +statton +staple +stangle +spratling +spoor +spight +spelman +spece +spanos +spadoni +southers +sola +sobol +smyre +slaybaugh +sizelove +sirmons +simington +silversmith +siguenza +sieren +shelman +shawn +sharples +sharif +shack +seville +sessler +serrata +serino +serafini +semien +selvey +seedorf +seckman +seawood +screws +screen +scoby +scicchitano +schorn +schommer +schnitzer +schleusner +schlabach +schiel +schepers +schaber +scally +sautner +sartwell +santerre +sandage +salvia +salvetti +salsman +sallis +salais +saint +saeger +sable +sabat +saar +ruther +russom +ruoff +rumery +rubottom +rozelle +rowton +routon +rotolo +rostad +roseborough +rorick +ronco +rolls +roher +roberie +robare +ritts +rison +rippe +rinke +ringwood +righter +rieser +rideaux +rickerson +renfrew +releford +reinsch +reiman +reifsteck +reidhead +redfearn +reddout +reaux +rance +ram +rado +radebaugh +quinby +quigg +provo +provenza +provence +prophet +pridgeon +praylow +powel +poulter +portner +pontbriand +police +poirrier +poirer +platero +pixler +pintor +pigman +piersall +piel +pichette +phou +phillis +phillippe +pharis +phalen +petsche +perrier +penfield +pelosi +pebley +peat +pawloski +pawlik +pavlick +pavel +patz +patout +pascucci +pasch +parrinello +parekh +pantaleo +pannone +pankow +pangborn +pagani +pacelli +ort +orsi +oriley +orduno +oommen +olivero +okada +ocon +ocheltree +oberman +nyland +noss +norling +nolton +nobile +nitti +nishimoto +nghiem +neuner +neuberger +neifert +negus +naval +nagler +mullally +moulden +morra +morquecho +morocco +moots +monica +mizzell +mirsky +mirabito +minardi +milholland +mikus +mijangos +michener +michalek +methvin +merrit +menter +meneely +melody +meiers +mehring +mees +medal +mcwhirt +mcwain +mcphatter +mcnichol +mcnaught +mclarty +mcivor +mcginness +mcgaughy +mcferrin +mcfate +mcclenny +mcclard +mccaskey +mccallion +mcamis +mathisen +marton +marsico +mariner +marchi +mani +mangione +magda +macaraeg +lupi +lunday +lukowski +lucious +locicero +loach +littlewood +litt +litle +lipham +linley +lindon +lightford +lieser +leyendecker +lewey +lesane +lenzi +lenart +lena +leisinger +lehrman +lefebure +leandro +lazard +laycock +laver +launer +lastrapes +lastinger +lasker +larkey +larger +lanser +lanphere +landey +lan +lampton +lamark +lager +kumm +kullman +krzeminski +krasner +kram +koran +koning +kohls +kohen +kobel +kniffen +knick +kneip +knappenberger +knack +klumpp +klausner +kitamura +kisling +kirshner +kinloch +kingman +kin +kimery +kestler +kellen +keleher +keehn +kearley +kasprzak +kary +kampf +kamerer +kalis +kahan +kaestner +kadel +kabel +junge +juckett +joynt +jorstad +jetter +jelley +jefferis +jeff +jeansonne +janecek +jaffee +jacko +izzard +istre +isherwood +ipock +iannuzzi +hypolite +hussein +humfeld +huckleberry +hotz +hosein +honahni +holzworth +holdridge +holdaway +holaday +hodak +hitchman +hippler +hinchey +hillin +hiler +hibdon +hevey +heth +hepfer +henneman +hemsley +hemmings +hemminger +helbert +helberg +heinze +heeren +hee +heber +haver +hauff +haswell +harvison +hartson +harshberger +harryman +harries +hannibal +hane +hamsher +haggett +hagemeier +haecker +haddon +haberkorn +guttman +guttierrez +guthmiller +guillet +guilbert +gugino +grumbles +griffy +gregerson +greg +granada +grana +goya +goranson +gonsoulin +goettl +goertz +goe +godlewski +glandon +glad +gilsdorf +gillogly +gilkison +giard +giampaolo +gheen +gettings +gesell +gershon +gaumer +gartrell +garside +garrigan +garmany +garlitz +garlington +gamet +gail +fuss +furlough +funston +funaro +frix +frasca +francoeur +forshey +foose +flatley +flagler +fils +fillers +fickett +feth +fennelly +fencl +felch +fedrick +febres +fazekas +farnan +fairless +ewan +etsitty +enterline +elvin +elsworth +elliff +ell +eleby +eldreth +eidem +edgecomb +edds +ebarb +dworkin +dusenberry +durrance +duropan +durfey +dungy +dundon +dumbleton +duffel +dubon +dubberly +droz +drinkwater +dressel +doughtie +doshier +dorrell +dora +dople +doonan +donadio +dollison +doig +ditzler +dishner +discher +dimaio +digman +difalco +diem +devino +devens +derosia +deppen +depaola +deniz +denardo +demos +demay +delgiudice +davi +danielsen +dally +dais +dahmer +cutsforth +cusimano +curington +cumbee +cryan +crusoe +crowden +crete +cressman +crapo +cowens +coupe +councill +coty +cotnoir +correira +copen +consiglio +combes +coffer +cockrill +coad +clogston +clasen +chock +chesnutt +charrier +chain +chadburn +cerniglia +cebula +castruita +castilla +castaldi +casebeer +casagrande +carta +carrales +carnley +cardon +carasco +capshaw +capron +cappiello +capito +canney +candela +caminiti +califano +calico +calabria +caiazzo +cahall +buscemi +burtner +burgdorf +bureau +burdo +buffaloe +buchwald +brwon +brunke +brummond +brumm +broe +brocious +brocato +bro +britain +briski +brisker +brightwell +bresett +breiner +brazeau +braz +brayman +brandis +bramer +bradeen +boyko +bourbon +bossi +boshart +bortle +boniello +bomgardner +bolz +bolenbaugh +bohling +bohland +bochenek +blust +bloxham +blowe +blish +blackwater +bjelland +biros +birkhead +biederman +bickle +bialaszewski +bevil +beverley +beumer +bettinger +besse +bernett +bermejo +bement +belfield +beckler +beatrice +baxendale +batdorf +bastin +bashore +bascombe +bartlebaugh +barsh +ballantine +bahl +badon +bachelor +autin +audie +astin +askey +ascher +arrigo +arbeiter +antes +angers +amburn +amarante +alvidrez +althaus +allmond +alfieri +aldinger +akerley +akana +aikins +ader +acebedo +accardo +abila +aberle +abele +abboud +zollars +zimmerer +zieman +zerby +zelman +zellars +yule +yoshimura +yonts +yeats +yant +yamanaka +wyland +wuensche +worman +wordlaw +wohl +winslett +winberg +wilmeth +willcutt +wiers +wiemer +wickwire +wichman +whitting +whidbee +westergard +wemmer +wellner +weishaupt +weinert +weedon +waynick +wasielewski +waren +walworth +wallingford +walke +waechter +viviani +vitti +villagrana +vien +vicks +venema +varnes +varnadoe +varden +vanpatten +vanorden +vanderzee +vandenburg +vandehey +valls +vallarta +valderrama +valade +urman +ulery +tusa +tuft +tripoli +trimpe +trickey +tortora +torrens +torchia +toft +tjaden +tison +tindel +thurmon +thode +tardugno +tancredi +taketa +taillon +tagle +sytsma +symes +swindall +swicegood +swartout +sundstrom +sumners +sulton +studstill +student +stroop +stonerock +stmarie +stlawrence +stemm +steinhauser +steinert +steffensen +stefano +stefaniak +starck +stalzer +spidle +spake +sowinski +sosnowski +sorber +somma +soliday +soldner +soja +soderstrom +soder +sockwell +sobus +snowball +sloop +skeeter +sinner +sinkfield +simerly +silguero +sigg +siemers +siegmund +sidle +shum +sholtis +shkreli +sheikh +shattles +sharlow +shao +shambaugh +shaikh +serrao +serafino +selley +selle +seel +sedberry +secord +seat +schunk +schuch +schor +scholze +schnee +schmieder +schleich +schimpf +scherf +satterthwaite +sasson +sarkisian +sarinana +sanzone +salvas +salone +salido +saiki +sahr +rusher +rusek +ruse +ruppel +rubi +rubel +rough +rothfuss +rothenberger +rossell +rosenquist +rosebrook +romito +romines +rolando +rolan +roker +roehrig +rockhold +rocca +robuck +riss +rinaldo +right +riggenbach +rezentes +reuther +reuben +renolds +rench +remus +remsen +reller +relf +reitzel +reiher +rehder +redeker +ramero +rahaim +radice +quijas +qualey +purgason +prum +proudfoot +prock +probert +printup +primer +primavera +prenatt +pratico +polich +podkowka +podesta +plattner +plasse +plamondon +pittmon +pippenger +pineo +pierpont +petzold +petz +pettiway +petters +petroski +petrik +pesola +pershall +perlmutter +penepent +peevy +pechacek +pears +peaden +pazos +pavia +pascarelli +parm +parillo +parfait +paoletti +palomba +palencia +pagaduan +oxner +overfield +overcast +oullette +ouk +ostroff +osei +omarah +olenick +olah +odem +nygren +notaro +northcott +nodine +nilges +neyman +neve +neuendorf +neptune +neisler +neault +narciso +naff +muscarella +mun +most +morrisette +morphew +morein +mor +montville +montufar +montesinos +monterroso +mongold +mona +mojarro +moitoso +mode +mirarchi +mirando +minogue +milici +miga +midyett +michna +mey +meuser +messana +menzie +menz +mendicino +melone +mellish +meller +melle +meints +mechem +mealer +mcwilliam +mcwhite +mcquiggan +mcphillips +mcpartland +mcnellis +mcmackin +mclaughin +mckinny +mckeithan +mcguirk +mcgillivray +mcgarr +mcgahee +mcfaul +mcfadin +mceuen +mccullah +mcconico +mcclaren +mccaul +mccalley +mccalister +mazer +mayson +mayhan +maugeri +mauger +mattix +mattews +maslowski +masek +martir +marsch +marquess +maron +markwell +markow +marinaro +marietta +marcinek +manner +mannella +mango +mallen +majeed +mahnke +mahabir +magby +magallan +madere +machnik +lybrand +luque +lundholm +lueders +lucian +lubinski +lowy +loew +lippard +linson +lindblad +lightcap +levitsky +levens +leonardi +lenton +lengyel +leng +leitzel +leicht +leaver +laubscher +lashua +larusso +larrimore +lanterman +lanni +lanasa +lamoureaux +lambros +lamborn +lamberti +lall +lagos +lafuente +laferriere +laconte +kyger +kupiec +kunzman +kuehne +kuder +kubat +krogh +kreidler +krawiec +krauth +kratky +kottwitz +korb +kono +kolman +kolesar +koeppel +knapper +klingenberg +kjos +keppel +kennan +keltz +kealoha +kasel +karney +kanne +kamrowski +kagawa +joo +johnosn +joesph +jilek +jarvie +jarret +jansky +jacquemin +jacox +jacome +italiano +iriarte +ingwersen +imboden +iglesia +huyser +hurston +hursh +huntoon +hudman +hoying +horsman +horrigan +hornbaker +horiuchi +hopewell +hoop +hommel +homeyer +holzinger +holmer +hollow +hipsher +hinchman +hilts +higginbottom +hieb +heyne +hessling +hesler +hertlein +herford +heras +henricksen +hennemann +henery +hendershott +hemstreet +heiney +heckert +heatley +hazell +hazan +hayashida +hausler +hartsoe +harth +harriott +harriger +harpin +hardisty +hardge +hao +hannaman +hannahs +hamp +hammersmith +hamiton +halsell +halderman +hagge +habel +gusler +gushiken +gurr +gummer +gullick +grunden +grosch +greenburg +greb +greaver +gratz +grajales +gourlay +gotto +gorley +goodpasture +godard +glorioso +gloor +glascock +gizzi +giroir +gibeault +gauldin +gauer +gartin +garrels +gamber +gallogly +galley +gade +fusaro +fripp +freyer +freiberg +franzoni +fragale +foston +forti +forness +folts +followell +foard +flom +fling +flett +fleitas +flamm +fino +finnen +finchum +filippelli +fickel +feucht +feiler +feenstra +feagins +faver +faux +faulkenberry +farabaugh +fandel +fallen +faler +faivre +fairey +facey +exner +evensen +erion +erben +epting +epping +ephraim +engberg +elsen +ellingwood +ellen +eisenmann +eichman +ehle +edsall +eagles +durall +dupler +dunker +dumlao +duford +duffie +dudding +dries +doung +dorantes +donahoo +domenick +dollins +dobles +dipiazza +dino +dimeo +diehm +dicicco +devin +devenport +desormeaux +derrow +depaolo +denver +denise +demas +delpriore +delosantos +dela +degreenia +degenhardt +defrancesco +defenbaugh +deets +debonis +deary +dazey +dargie +dambrosia +dalal +dagen +cun +cuen +crupi +crossan +crichlow +creque +coutts +counce +coram +constante +connon +collelo +coit +cocklin +coblentz +cobey +coard +clutts +clingan +claw +clampitt +claeys +ciulla +cimini +ciampa +christon +choat +chiou +chenail +chavous +catto +catalfamo +casterline +cassinelli +caspers +carroway +carlen +carithers +cappel +calo +callow +calandra +cagley +cafferty +byun +byam +buttner +buth +burtenshaw +burget +burfield +buresh +bunt +bultman +bulow +buchta +buchmann +brunett +bruemmer +brueggeman +britto +briney +brimhall +bribiesca +bresler +brazan +brashier +brar +brandstetter +brandi +boze +boonstra +bluitt +blomgren +blattner +blasi +bladen +bitterman +bilby +bierce +biello +bettes +bertone +berrey +bernat +berberich +benshoof +bendickson +below +bellefeuille +bednarski +beddingfield +beckerman +beaston +bavaro +batalla +basye +baskins +bartolotta +bartkowski +barranco +barkett +band +banaszak +bame +bamberger +balsley +ballas +balicki +balding +bald +badura +aymond +aylor +aylesworth +axley +axelrod +aubert +armond +ariza +apicella +anstine +ankrom +angevine +anger +andreotti +andrea +alto +alspaugh +alpaugh +almada +allinder +alexandra +alequin +alan +aguillard +agron +agena +afanador +ackerley +abrev +abdalla +aaronson +zynda +zucco +zipp +zetina +zenz +zelinski +youngren +yochum +yearsley +yankey +woodfork +wohlwend +woelfel +wiste +wismer +winzer +winker +wilkison +wigger +wierenga +whipps +wheeling +westray +wesch +weld +weible +wedell +weddell +wawrzyniak +wasko +washinton +wantz +walts +wallander +wain +wahlen +wachowiak +voshell +viteri +vire +villafuerte +vieyra +viau +vescio +verrier +verhey +vause +vandermolen +vanderhorst +valois +valla +valcourt +vacek +uzzle +umland +um +ulman +ulland +turvey +tuley +trembath +trees +trabert +towsend +totman +toews +toby +tito +tisch +tisby +tipping +tierce +thivierge +tenenbaum +teagle +tacy +tabler +szewczyk +swearngin +suire +sturrock +stubbe +stronach +stoute +stoudemire +stoneberg +sterba +stejskal +steier +stehr +steckler +steckel +stearman +steakley +star +stanforth +stancill +stalls +srour +sprowl +spevak +sole +sokoloff +soderman +snover +sleeman +slaubaugh +sitzman +simpler +simmer +simes +siegal +sidoti +sidler +sider +sidener +siddiqi +shireman +shima +sheroan +shadduck +seyal +sentell +sennett +senko +seneca +sen +seligman +seipel +seekins +seabaugh +scouten +schweinsberg +schwartzberg +schurr +schult +schrick +schoening +schmitmeyer +schlicher +schlager +schack +schaar +scavuzzo +scarpa +sassano +santigo +sandavol +san +sampsel +samms +samet +salzano +salyards +salva +saidi +sabir +saam +saab +runions +rundquist +rousselle +round +rotunno +roses +rosch +romney +rohner +roff +rockhill +rockefeller +rocamora +rm +ringle +riggie +ricklefs +rexroat +reves +revel +reuss +reta +repka +rentfro +reineke +recore +recalde +rease +rawling +ravencraft +ravelo +rappa +randol +ramsier +ramerez +rahimi +rahim +radney +racey +raborn +rabalais +quebedeaux +pujol +puchalski +prothro +proffit +prigge +prideaux +prevo +portales +porco +popovic +popek +popejoy +pompei +plumber +plude +platner +plate +pizzuto +pizer +pistone +piller +pierri +piehl +pickert +piasecki +phong +philipp +peugh +pesqueira +perrett +perfetti +percell +penhollow +pelto +pellett +pavlak +paulo +paula +patricia +pastorius +parsell +parrales +pareja +parcell +pappan +pajak +owusu +ovitt +ory +orrick +oniell +olliff +olberding +oesterling +odwyer +ocegueda +obey +obermiller +nylander +nulph +nottage +northam +norgard +nodal +niel +nicols +newhard +nellum +neira +nazzaro +nassif +narducci +nalbandian +nails +musil +murga +muraoka +mumper +mulroy +mountjoy +mossey +moreton +morea +montoro +montesdeoca +montealegre +montanye +montandon +mok +moisan +mohl +modesto +modeste +mitra +mister +minson +minjarez +milbourne +michaelsen +metheney +mestre +mescher +mervis +mennenga +melgarejo +meisinger +meininger +mcwaters +mckern +mckendree +mchargue +mcglothlen +mcgibbon +mcgavock +mcduffee +mcclurkin +mccausland +mccardell +mccambridge +mazzoni +mayen +maxton +mawson +mauffray +mattinson +mattila +matsunaga +mater +mascia +marse +marotz +marois +markin +markee +marcinko +marcin +manville +mantyla +manser +manry +manderscheid +mallari +malia +malecha +malcomb +majerus +mailman +macinnis +mabey +lyford +luth +lupercio +luhman +luedke +lovick +lossing +loss +lorraine +lookabaugh +longway +lone +loisel +logiudice +loffredo +locust +lobe +lobaugh +lizaola +livers +littlepage +linnen +limmer +liebsch +liebman +leyden +levitan +levison +levier +leven +levalley +lettinga +lessley +lessig +lepine +leight +leick +leggio +leffingwell +leffert +lefevers +ledlow +leaton +leander +leaming +lazos +laviolette +lauffer +latz +lasorsa +lasch +larin +laporta +lanter +langstaff +landi +lamica +lambson +lambe +lamarca +laman +lamagna +lajeunesse +lafontant +lafler +labrum +laakso +kush +kuether +kuchar +kruk +kroner +kroh +kridler +kreuzer +kovats +koprowski +kohout +knicely +knell +klutts +kindrick +kiddy +khanna +ketcher +kerschner +kerfien +kensey +kenley +kenan +kemplin +kellerhouse +keesling +keep +keena +keas +kaplin +kanady +kampen +jutras +jungers +julio +jeschke +jen +janowski +janas +iskra +imperato +ikerd +igoe +hyneman +hynek +husain +hurrell +hultquist +hullett +hulen +huf +huberty +hoyte +hossain +hornstein +hori +hopton +holms +hollmann +holdman +holdeman +holben +hoffert +himel +hillsman +hillary +herdt +hellyer +hellen +heister +heimer +heidecker +hedgpeth +hedgepath +hebel +heatwole +hayer +hausner +haskew +haselden +hartranft +harsch +harres +harps +hardimon +halm +hallee +hallahan +hackley +hackenberg +hachey +haapala +guynes +gunnerson +gunby +gulotta +gudger +groman +grignon +griebel +gregori +greenan +grauer +gourd +gorin +gorgone +gooslin +goold +goltz +goldberger +gobble +glotfelty +glassford +glance +gladwin +giuffre +gilpatrick +germaine +gerdts +genna +geisel +gayler +gaunce +gaulding +gateley +gassman +gash +garson +garron +garand +gangestad +gallow +galbo +gabrielli +fullington +fucci +frum +frieden +friberg +frasco +francese +fowle +foucher +fothergill +foraker +fonder +foisy +fogal +flurry +flenniken +fitzhenry +fishbein +finton +filmore +filice +feola +felberbaum +fausnaught +fasciano +farrah +farquharson +faires +estridge +essman +enz +enriques +emmick +ekker +ekdahl +eisman +eggleton +eddinger +eakle +eagar +durio +dunwoody +duhaime +duenes +duden +dudas +dresher +dresel +doutt +donlan +donathan +domke +dobrowolski +dingee +dimmitt +dimery +dilullo +deveaux +devalle +desper +desnoyers +desautels +derouin +derbyshire +denmon +dena +demski +delucca +delpino +delmont +deller +dejulio +deibler +dehne +deharo +degner +defore +deerman +decuir +deckman +deasy +dease +deaner +dawdy +daughdrill +darrigo +darity +daniele +dalbey +dagenhart +daffron +curro +curnutte +curatolo +cruikshank +crosswell +croslin +croney +crofton +criado +crecelius +coscia +conniff +commodore +coltharp +colonna +collyer +collington +cobbley +coache +clonts +cloe +cliett +clemans +clara +cid +christo +chrisp +china +chiarini +chia +cheatam +cheadle +che +chauncey +chand +chadd +cervera +cerulli +cerezo +cedano +cayetano +cawthorne +cavalieri +cattaneo +caryl +cartlidge +carrithers +carreira +carranco +cargle +candanoza +camille +camburn +calender +calderin +calcagno +cahn +cadden +byham +buttry +burry +burruel +burkitt +burgio +burgener +buescher +buckalew +brymer +brumett +brugnoli +brugman +brosnahan +bronder +broeckel +broderson +brisbon +brinsfield +brinks +bresee +bregman +branner +brambila +brailsford +bouska +boster +borucki +bortner +boroughs +borgeson +bonier +bomba +bolender +boesch +boeke +bloyd +bley +binger +billing +bilbro +biery +bichrest +bezio +bevel +berrett +bermeo +bergdoll +bercier +benzel +bentler +bennetts +belnap +bellini +beitz +behrend +bednarczyk +bearse +batman +bartolini +bartol +barretta +barbero +barbaro +banvelos +bankes +ballengee +baldon +aye +ausmus +atilano +atienza +aschenbrenner +arora +armstong +aquilino +appleberry +applebee +apolinar +antos +angles +andrepont +ancona +amesquita +alvino +altschuler +allin +alire +ainslie +agular +aeschliman +accetta +abdulla +abbe +zwart +zufelt +zona +zirbel +zingaro +zilnicki +zenteno +zent +zemke +zayac +zarrella +yoshimoto +yearout +wrench +world +womer +woltman +wolin +wolery +woldt +witts +wittner +witherow +winward +winrow +wiemann +wichmann +whitwell +whitelaw +wheeless +whalley +wey +wessner +wenzl +wene +weatherbee +waye +wattles +wanke +walkes +waldeck +vonruden +voisine +vogus +vittetoe +villalva +villacis +victorian +verge +venturini +venturi +venson +vanloan +vanhooser +vanduzer +vandever +vanderwal +vanderheyden +vanbeek +vanbebber +vallance +vales +vahle +urbain +upshur +umfleet +twist +tsuji +trybus +triolo +trimarchi +trezza +trenholm +tovey +tourigny +torry +torrain +torgeson +tongue +tomey +tischler +tinkler +tinder +ticknor +tibbles +tibbals +throneberry +thormahlen +thibert +thibeaux +theurer +templet +tegeler +tavernier +taubman +tamashiro +tallon +tallarico +taboada +sypher +sybert +swyers +switalski +swinger +swedberg +suther +surprenant +sullen +sulik +sugden +suder +suchan +such +strube +stroope +strittmatter +streett +straughn +strasburg +stjacques +stimage +stimac +stifter +stgelais +steinhart +stehlik +steffenson +steenbergen +stanbery +stallone +sprung +spraggs +spoto +spilman +speno +spanbauer +spalla +spagnolo +soliman +solan +sobolik +snelgrove +snedden +smale +sliter +slankard +sircy +signor +shutter +shurtliff +shur +show +shirkey +shi +shewmake +shams +shadley +shaddox +sgro +serfass +seppala +segawa +segalla +seaberry +scruton +scism +schwein +schwartzman +schwantes +schomer +schoenborn +schlottmann +schissler +scheurer +schepis +scheidegger +saunier +sauders +sassman +sannicolas +sanderfur +salser +sagar +saffer +saeed +sadberry +saban +ryce +rybak +rux +rumore +rummell +rummage +rudasill +rozman +rota +rossin +rosell +rosel +romberg +rojero +rochin +rochell +robideau +robarge +roath +risko +ringel +ringdahl +riera +riemann +ribas +revard +renna +renegar +reinwald +rehman +regal +reels +ree +redel +reasons +raysor +rathke +rapozo +rampton +ramaker +rakow +raia +radin +raco +rackham +racca +racanelli +rabun +quaranta +purves +pundt +protsman +prosper +prezioso +presutti +president +presgraves +poydras +portnoy +portalatin +pop +pontes +poehler +poblete +poat +plumadore +pleiman +pizana +piscopo +piraino +pinelli +pillai +picken +picha +piccoli +philen +petteway +petros +peskin +perugini +perrella +pernice +peper +pensinger +pembleton +patron +passman +parrent +panetta +pancake +pallas +palka +pais +paglia +padmore +oum +ottesen +ost +oser +ortmann +ormand +oriol +orick +oler +okafor +ohair +obert +oberholtzer +number +nowland +nosek +nordeen +nolf +nogle +nobriga +nicley +niccum +newingham +neumeister +neugebauer +netherland +nerney +neiss +neis +neider +neeld +nailor +mustain +mussman +musante +murton +murden +munyon +muldrew +motton +moscoso +moschella +moroz +mormon +morelos +morace +moone +montesano +montemurro +montas +montalbo +molander +mleczko +miyake +mitschke +minger +minelli +minear +millener +mihelich +miedema +miah +metzer +mery +merrigan +merck +mennella +membreno +melecio +melder +mehling +mehler +medcalf +meche +mealing +mcqueeney +mcphaul +mcmickle +mcmeen +mcmains +mclees +mcgowin +mcfarlain +mcdivitt +mccotter +mcconn +mcclane +mccaster +mcbay +mcbath +mayoral +mayeux +matsuo +masur +massman +marzette +martensen +marlett +markie +markgraf +marcinkowski +marchbanks +marcella +mansir +mandez +mancil +malagon +magnani +madonia +madill +madia +mackiewicz +macgillivray +macdowell +macbeth +mabee +lundblad +lovvorn +lovings +loreto +linz +linwood +linnell +linebaugh +lindstedt +lindbloom +linda +limberg +liebig +lickteig +lichtenberg +licari +lex +lewison +levario +levar +lepper +lenzen +lenderman +lemarr +leinen +leider +legrande +lefort +lebleu +leask +learn +leacock +lazano +lawalin +laven +laplaca +lant +langsam +langone +landress +landen +lande +lamorte +lairsey +laidlaw +laffin +lackner +lacaze +labuda +labree +labella +labar +kyer +kuyper +kulinski +kulig +kuhnert +kuchera +kubicek +kruckeberg +kruchten +krider +kotch +kornfeld +koren +koogler +koll +kole +kohnke +kohli +kofoed +koelling +kluth +klump +klopfenstein +klippel +klinge +klett +klemp +kleis +klann +kitzman +kinnan +kingsberry +kind +kina +kilmon +killpack +kilbane +kijowski +kies +kierstead +kettering +kesselman +kenton +kennington +keniston +kehrer +kearl +keala +kassa +kasahara +kantz +kalin +kaina +jupin +juntunen +juares +joynes +jovel +joos +jn +jiggetts +jervis +jerabek +jennison +jaso +janz +izatt +ishibashi +iannotti +hymas +huneke +hulet +hougen +horvat +horstmann +hopple +holtkamp +holsten +hohenstein +hoefle +hoback +hiney +hiemstra +herwig +herter +herriott +hermsen +herdman +herder +herbig +hem +helper +helling +helbig +heitkamp +heinrichs +heinecke +heileman +heffley +heavrin +heaston +haymaker +hauenstein +hartlage +harlin +harig +hardenbrook +hankin +hamiter +hagens +hagel +grizzell +griest +griese +grief +grennan +graden +gosse +gorder +goldin +goatley +gillespi +gilbride +giel +gianni +ghoston +getter +gershman +geisinger +gehringer +gedeon +gebert +gaxiola +gawronski +gau +gathright +gatchell +gargiulo +garg +galang +gadison +fyock +furniss +furby +funnell +frizell +frenkel +freeburg +frankhouser +franchi +foulger +formby +forkey +fonte +folson +follette +flicker +flavors +flavell +finegan +fill +filippini +ferencz +ference +fennessey +feggins +feehan +fazzino +fazenbaker +fausto +faunce +farraj +farnell +farler +farabee +falkowski +facio +etzler +ethington +esterline +esper +esker +erxleben +ericsson +erick +engh +emling +elridge +ellenwood +elfrink +ekhoff +eisert +eis +eifert +eichenlaub +egnor +eggebrecht +edlin +edberg +eble +eber +easler +duwe +dutta +dutremble +dusseault +durney +dunworth +dumire +dukeman +dufner +duey +duble +dreese +dozal +douville +dougal +doom +done +diver +ditmore +distin +dimuzio +dildine +dignan +dieterich +dieckman +didonna +dhillon +dezern +devereux +devall +detty +detamore +derksen +deremer +deras +denslow +deno +denicola +denbow +demma +demille +delisa +delira +delawder +delara +delahanty +dejonge +deininger +dedios +dederick +decelles +debus +debruyn +deborde +deak +dauenhauer +darsey +daring +dansie +dalman +dakin +dagley +czaja +cybart +cutchin +currington +curbelo +croucher +crinklaw +cremin +cratty +cranfield +crafford +cowher +cowboy +couvillion +couturier +counter +corter +coombes +contos +consolini +connaughton +conely +coltrane +collom +cockett +clepper +cleavenger +claro +clarkin +ciriaco +ciesla +cichon +ciancio +cianci +chynoweth +chuang +chrzanowski +christion +cholewa +chipley +chilcott +cheyne +cheslock +chenevert +cheers +charlot +chagolla +chabolla +cesena +cerutti +cava +caul +cassone +cassin +cassese +casaus +casali +cartledge +carsten +cardamone +carcia +carbonneau +carboni +carabello +capozzoli +capella +cap +cannata +campoverde +campeau +cambre +camberos +calvery +calnan +calmes +calley +callery +calise +cacciotti +cacciatore +butterbaugh +burgo +burgamy +burell +bunde +bumbalough +buel +buechner +buchannon +bryon +brunn +brost +broadfoot +brittan +brevard +breda +brazel +brayboy +brasier +boyea +boxx +both +boso +bosio +boruff +borda +bongiovanni +bolerjack +boedeker +blye +blumstein +blumenfeld +blinn +bleakley +blatter +blan +bjornson +bisignano +billick +bieniek +bhatti +bevacqua +betterton +berra +berenbaum +bensinger +bennefield +belvins +belson +bellin +beighley +beecroft +beaudreau +baynard +bautch +bausch +basch +bartleson +barthelemy +barak +balzano +balistreri +bailer +bagnall +bagg +bae +auston +augustyn +aslinger +ashalintubbi +artist +arjona +arebalo +arab +appelbaum +anna +angst +angert +angelucci +andry +andersson +amorim +amavisca +alward +alvelo +alvear +alumbaugh +alsobrook +alli +allgeier +allende +aldrete +akiyama +ahlquist +adolphson +addario +acoff +abelson +abasta +zulauf +zirkind +zeoli +zemlicka +zawislak +zappia +zanella +yelvington +yeatman +yanni +wragg +wissing +wischmeier +wirta +wiren +wilmouth +williard +willert +willaert +wildt +whelpley +westwood +weingart +weidenbach +weidemann +weatherman +weakland +watwood +wattley +waterson +wambach +walzer +waldow +waag +vorpahl +volkmann +vitolo +visitacion +vincelette +vina +viggiano +vieth +vidana +vert +verna +verges +verdejo +venzon +velardi +varian +vargus +vandermeulen +vandam +vanasse +vanaman +utzinger +uriostegui +uplinger +twiss +tumlinson +tschanz +trunnell +troung +troublefield +trojacek +trial +treloar +tranmer +touchton +torsiello +torina +tootle +toki +toepfer +tippin +tippie +thronson +thomes +tezeno +texada +testani +tessmer +terrel +terra +terlizzi +tempel +temblador +tayler +tawil +tasch +tames +talor +talerico +swinderman +sweetland +swager +sulser +sullens +subia +sturgell +stumpff +stufflebeam +stucki +strohmeyer +strebel +straughan +strackbein +stobaugh +stetz +stelter +steinmann +steinfeld +stefani +stecher +stanwood +stanislawski +stander +speziale +soppe +soni +sol +sobotka +snipe +smuin +slider +slee +skerrett +sjoberg +sittig +simonelli +simo +sima +silvio +silverio +silveria +silsby +sillman +sienkiewicz +sick +sia +shomo +shoff +shoener +shiba +sherfey +shehane +shawl +sexson +setton +sergi +selvy +seiders +seegmiller +sebree +seabury +scroggin +sconyers +schwalb +schurg +schulenberg +schuld +schrage +schow +schon +schnur +schneller +schmidtke +schlatter +schieffer +schenkel +scheeler +schauwecker +schartz +schacherer +scafe +sayegh +savidge +saur +sarles +sarkissian +sarkis +sarcone +sagucio +saffell +saenger +sacher +rylee +ruvolo +ruston +ruple +rulison +ruge +ruffo +ruehl +rueckert +rudman +rudie +rubert +rozeboom +roysden +roylance +rothchild +rosse +rosecrans +rodrick +rodi +rockmore +robnett +roberti +rivett +riva +ritzel +rierson +ricotta +ricken +rezac +rendell +remo +reitman +reindl +reeb +reddic +reddell +rebuck +reali +raye +raso +ramthun +ramsden +rameau +ralphs +rak +rago +racz +quinteros +quinter +quinley +quiggle +quaid +purvines +purinton +purdum +pummill +puglia +puett +ptacek +przybyla +prowse +providence +prestwich +pracht +poutre +poucher +portera +polinsky +poage +platts +pineau +pinckard +pilson +pilling +pilkins +pili +pikes +pigram +pietila +pickron +pia +philippi +philhower +pflueger +pfalzgraf +pettibone +pett +petrosino +persing +perrino +perotti +periera +peri +peredo +peralto +pennywell +pennel +pen +pellegren +pella +pedroso +paulos +paulding +pates +pasek +paramo +paolino +panganiban +paneto +paluch +ozaki +ownbey +overfelt +outman +opper +onstad +oland +okuda +oertel +oelke +normandeau +nordby +nordahl +noecker +noblin +no +niswonger +nishioka +nett +nephew +negley +needles +nedeau +natera +nachman +naas +musich +mungin +mourer +mounsey +mottola +mothershed +moskal +mosbey +morini +moreles +mood +montaluo +moneypenny +monda +moench +moates +moad +mixer +missildine +misiewicz +mirabella +minott +minnifield +mincks +milum +milani +mikelson +mestayer +mess +mertes +merrihew +merlos +meritt +melnyk +medlen +meder +mean +mcvea +mcquarrie +mcquain +mclucas +mclester +mckitrick +mckennon +mcinnes +mcgrory +mcgranahan +mcglamery +mcgivney +mcgilvray +mccuiston +mccuin +mccrystal +mccolley +mcclerkin +mcclenon +mccamey +mcaninch +mazariegos +maynez +mattioli +mastronardi +masone +marzett +marsland +mari +margulies +margolin +malatesta +malachi +mainer +maietta +magrath +maese +madkins +madeiros +madamba +mackson +mac +maben +lytch +lundgreen +lumb +lukach +luick +luetkemeyer +luechtefeld +ludy +ludden +luckow +lubinsky +lowes +lout +lorenson +loran +lopinto +looby +lones +livsey +liskey +lisby +lintner +lindow +lindblom +liming +liechty +leth +lesniewski +lenig +lemonds +leisy +lehrer +lehnen +lehmkuhl +leeth +leer +leeks +lechler +lebsock +lavere +lautenschlage +laughridge +lauderback +laudenslager +lassonde +laroque +laramee +laracuente +lapeyrouse +lampron +lamers +lamer +laino +lague +laguardia +lafromboise +lafata +lacount +lachowicz +kysar +kwiecien +kuffel +kueter +kronenberg +kristensen +kristek +krings +kriesel +krey +krebbs +kreamer +krabbe +kossman +kosakowski +kosak +kopacz +konkol +koepsell +koening +koen +knerr +knapik +kluttz +klocke +klenk +klemme +klapp +kitchell +kita +kissane +kirkbride +kirchhoff +kinter +kinsel +kingsland +kimmer +kimler +killoran +kieser +khalsa +khalaf +kettel +kerekes +keplin +kentner +kennebrew +kenison +kellough +kellman +keatts +keasey +kauppi +katon +kari +kanner +kampa +kall +kai +kaczorowski +kaczmarski +juarbe +jordison +jonathan +jobst +jezierski +jeanbart +jarquin +janey +jagodzinski +ishak +isett +isa +infantino +imburgia +illingworth +hysmith +hynson +hydrick +hurla +hunton +hunnell +humbertson +housand +hottle +hosch +hoos +honn +hohlt +hodel +hochmuth +hixenbaugh +hislop +hisaw +hintzen +hilgendorf +hilchey +higgens +hersman +herrara +hendrixson +hendriks +hemond +hemmingway +heminger +helgren +heisey +heilmann +hehn +hegna +heffern +hawrylak +haverty +hauger +haslem +harnett +harb +happ +hanzlik +hanway +hanby +hanan +hamric +hammaker +halas +hagenbuch +hacking +habeck +gwozdz +gutter +gunia +guise +guadarrama +grubaugh +grivas +griffieth +grieb +grewell +gregorich +grazier +graeber +graciano +gowens +goodpaster +gondek +gohr +goffney +godbee +gitlin +gisler +gin +gillyard +gillooly +gilchrest +gilbo +gierlach +giebler +giang +geske +gervasio +gertner +gehling +geeter +gaus +gattison +gatica +gathings +gath +gassner +gassert +garabedian +gamon +gameros +galban +gabourel +gaal +fuoco +fullenwider +fudala +friscia +franceschini +foronda +fontanilla +florey +florentino +flore +flegle +flecha +fisler +fischbach +fiorita +fines +figura +figgins +fichera +fester +ferra +fear +fawley +fawbush +fausett +farnes +farago +fairclough +fahie +fabiani +everest +evanson +eutsey +eshbaugh +esh +ertle +eppley +englehardt +engelhard +emswiler +elza +elling +elderkin +eland +efaw +edstrom +edmund +edgemon +ecton +echeverri +ebright +earheart +dynes +dygert +dyches +dulmage +duhn +duhamel +dues +dubrey +dubray +dubbs +drone +drey +drewery +dreier +dorval +dorough +dorais +donlin +donatelli +doke +dohm +doetsch +dobek +ditty +disbrow +ding +dinardi +dillahunty +dillahunt +diers +dier +diekmann +diangelo +deskin +deschaine +depaoli +denner +demyan +demont +demaray +delillo +deleeuw +deibel +decato +deblasio +debartolo +daubenspeck +darner +dardon +danziger +danials +damewood +dalpiaz +dallman +dallaire +cunniffe +cumpston +cumbo +cubero +cruzan +cronkhite +critelli +crimi +creegan +crean +craycraft +crater +cranfill +coyt +courchesne +coufal +corradino +corprew +colville +cocco +coby +clinch +clickner +clavette +claggett +cirigliano +ciesielski +christain +chesbro +chavera +chard +casteneda +castanedo +cast +casseus +casa +caruana +carnero +cappelli +capellan +canedy +cancro +camilleri +calero +cada +burghart +burbidge +bulfer +buis +budniewski +bucko +bruney +brugh +brossard +brodmerkel +brockmann +bring +brigmond +briere +bremmer +breck +breau +brautigam +brasch +brandenberger +bran +bragan +bozell +bowsher +bosh +borgia +borey +boomhower +bonneville +bonam +bolland +boise +boeve +boettger +boersma +boateng +bliven +blazier +blanca +blahnik +bjornstad +bitton +biss +birkett +billingsly +biagioni +bettle +bertucci +bertolino +bermea +bergner +berber +bensley +bendixen +beltrami +bellone +belland +bein +behringer +begum +beans +bayona +batiz +bassin +baskette +bartolomeo +bartolo +bartholow +barkan +barish +barett +bardo +bamburg +ballerini +balla +balis +bakley +bailon +bachicha +babiarz +ayars +axton +axel +awong +awe +awalt +auslander +ausherman +aumick +athens +atha +atchinson +aslett +askren +arrowsmith +arras +arnhold +armagost +arey +arcos +archibeque +antunes +antilla +ann +andras +amyx +amison +amero +alzate +alphonse +alper +aller +alioto +alexandria +aigner +agtarap +agbayani +adami +achorn +aceuedo +acedo +abundis +aber +abee +zuccaro +ziglar +zier +ziebell +zieba +zamzow +zahl +yurko +yurick +yonkers +yerian +yeaman +yarman +yann +yahn +yadon +yadao +woodbridge +wolske +wollenberg +wojtczak +wnuk +witherite +winther +winick +widell +wickens +whichard +wheelis +wesely +wentzell +wenthold +wemple +weisenburger +wehling +weger +weaks +water +wassink +warn +walquist +wadman +wacaster +waage +voliva +vlcek +villafana +vigliotti +viger +viernes +viands +vey +veselka +versteeg +vero +verhoeven +vendetti +velardo +vatter +vasconcellos +varn +vanwagner +vanvoorhis +vanhecke +vanduyn +vandervoort +vanderslice +valone +vallier +vails +uvalle +ursua +urenda +upright +uphoff +tustin +turton +turnbough +turck +tullio +tuch +truehart +tropea +troester +trippe +tricarico +trevarthen +trembly +trace +trabue +traber +toto +tosi +toal +tinley +tingler +timoteo +tiffin +tien +ticer +thurgood +thorman +therriault +theel +tessman +tekulve +tejera +tebbs +tavernia +tarpey +tallmadge +takemoto +szot +sylvest +swindoll +swearinger +swantek +swaner +swainston +susi +surrette +sur +supple +sullenger +sudderth +suddarth +suckow +strider +strege +stream +strassburg +stoval +stotz +stoneham +stilley +stille +stierwalt +stfleur +steuck +stermer +stclaire +stano +staker +stahler +stablein +srinivasan +squillace +sprvill +sproull +sprau +sporer +spore +spittler +speelman +sparr +sparkes +spang +spagnuolo +sosinski +sorto +sorkin +sondag +sollers +socia +snarr +smrekar +smolka +slyter +slovinsky +sliwa +slavik +slatter +skiver +skeem +skala +sitzes +sitsler +sitler +sinko +simser +siegler +sideris +shrewsberry +shoopman +shoaff +shira +shindler +shimmin +shill +shenkel +shemwell +shehorn +severa +sergio +semones +selsor +seller +sekulski +segui +sechrest +scot +schwer +schwebach +schur +schmiesing +schlick +schlender +schebler +schear +schapiro +sauro +saunder +sauage +satterly +saraiva +saracino +saperstein +sanmartin +sanluis +sandt +sandrock +sammet +sama +salk +sakata +saini +sackrider +rys +russum +russi +russaw +rozzell +roza +rowlette +rothberg +rossano +rosebrock +romanski +romanik +romani +roma +roiger +roig +roehr +rodenberger +rodela +rod +rochford +ristow +rispoli +ripper +rigo +riesgo +riebel +ribera +ribaudo +rhoda +reys +resendes +repine +reisdorf +reisch +rebman +rasmus +raske +ranum +rames +rambin +raman +rajewski +raffield +rady +radich +raatz +quinnie +pyper +puthoff +prow +proehl +pribyl +pretti +prete +presby +poyer +powelson +porteous +poquette +pooser +pollan +ploss +plewa +plants +placide +pion +pinnick +pinales +pin +pillot +pille +pilato +piggee +pietrowski +piermarini +pickford +piccard +phenix +pevey +petrowski +petrillose +pesek +perrotti +perfecto +peppler +peppard +penfold +pellitier +pelland +pehowic +pedretti +paules +passero +pasha +panza +pallante +palau +pakele +pacetti +paavola +overy +overson +outler +osegueda +ord +oplinger +oldenkamp +ok +ohern +oetting +odums +oba +nowlen +nowack +nordlund +noblett +nobbe +nierman +nichelson +niblock +newbrough +nest +nemetz +neeson +needleman +necessary +navin +nastasi +naslund +naramore +nakken +nakanishi +najarro +mushrush +muma +mulero +morganfield +moreman +morain +moquin +montrose +monterrosa +monsivais +monroig +monje +monfort +moises +moffa +moeckel +mobbs +mitch +misiak +mires +mirelez +mineo +mineau +milnes +mikeska +michelin +michalowski +meszaros +messineo +meshell +merten +meola +menton +mends +mende +memmott +melius +mehan +mcnickle +mcmorran +mclennon +mcleish +mclaine +mckendry +mckell +mckeighan +mcisaac +mcie +mcguinn +mcgillis +mcfatridge +mcfarling +mcelravy +mcdonalds +mcculla +mcconnaughy +mcconnaughey +mcchriston +mcbeath +mayr +matyas +matthiesen +matsuura +matinez +mathys +matarazzo +masker +masden +mascio +martis +marrinan +marinucci +margerum +marengo +manthe +mansker +manoogian +mankey +manigo +manier +mangini +mandelbaum +maltese +malsam +mallo +maliszewski +mainolfi +maharaj +maggart +magar +maffett +macmaster +macky +macdonnell +mable +lyvers +lyn +luzzi +lutman +luk +lover +lovan +lonzo +longest +longerbeam +lofthouse +loethen +lodi +llorens +lizardo +lizama +liz +litscher +lisowski +lipski +lipsett +lipkin +linzey +lineman +limerick +limb +limas +lige +lierman +liebold +liberti +leverton +levene +lesueur +lenser +lenker +lemme +legnon +lefrancois +ledwell +lavecchia +laurich +lauricella +latino +lannigan +landor +lamprecht +lamountain +lamore +lamonica +lammert +lamboy +lamarque +lamacchia +lalley +lagace +lacorte +lacomb +kyllonen +kyker +kye +kuschel +kupfer +kunde +kucinski +kubacki +kuan +kroenke +krech +koziel +kovacich +kothari +koth +kotek +kostelnik +kosloski +knoles +knabe +kmiecik +klingman +kliethermes +kleffman +klees +klaiber +kittell +kissling +kisinger +kintner +kinoshita +kiener +khouri +kerman +kelii +keirn +keezer +kaup +kathan +kaser +karlsen +kapur +kandoll +kammel +kahele +justesen +jue +jonason +johnsrud +joerling +jochim +jespersen +jeong +jenness +jedlicka +jakob +isaman +inghram +ingenito +imperial +iadarola +hynd +huxtable +huwe +huron +hurless +humpal +hughston +hughart +huggett +hugar +huether +howdyshell +houtchens +houseworth +hoskie +holshouser +holmen +holloran +hohler +hoefler +hodsdon +hochman +hjort +hippert +hippe +hinzman +hillock +hilden +hilde +heyn +heyden +heyd +hergert +henrikson +henningsen +hendel +helget +helf +helbing +heintzman +heggie +hege +hecox +heatherington +heare +haxton +haverstock +haverly +hatler +haselton +hase +hartzfeld +harten +harken +hargrow +haran +hanton +hammar +hamamoto +halper +halko +hackathorn +haberle +haake +gunnoe +gunkel +gulyas +guiney +guilbeau +guider +guerrant +gudgel +guarisco +grossen +grossberg +gropp +groome +grobe +gremminger +greenley +grauberger +grabenstein +gowers +gostomski +gosier +goodenow +gonzoles +goliday +goettle +goens +goates +glymph +glavin +glassco +gladys +gladfelter +glackin +githens +girgis +gimpel +gilbreth +gilbeau +giffen +giannotti +gholar +gervasi +gertsch +gernatt +gephardt +genco +gehr +geddis +gear +gase +garrott +garrette +gapinski +ganter +ganser +gangi +gangemi +gang +gallina +galdi +gailes +gaetano +gadomski +gaccione +fuschetto +furtick +furfaro +fullman +frutos +fruchter +frogge +freytag +freudenthal +fregoe +franzone +frankum +francia +franceschi +fraction +forys +forero +folkers +foil +flug +flitter +flemons +fitzer +firpo +finizio +filiault +figg +fiddler +fichtner +fetterolf +ferringer +feil +fayne +farro +faddis +ezzo +ezelle +eynon +evitt +eutsler +euell +escovedo +erne +eriksson +enriguez +empson +elkington +elk +eisenmenger +eidt +eichenberger +ehrmann +ediger +earlywine +eacret +duzan +dunnington +duffer +ducasse +dubiel +drovin +drager +drage +donham +donat +dona +dolinger +dokken +doepke +dodwell +docherty +distasio +disandro +diniz +digangi +didion +dezzutti +devora +detmer +deshon +derrigo +dentler +demoura +demeter +demeritt +demayo +demark +demario +delzell +delnero +delgrosso +dejarnett +debernardi +dearmas +dau +dashnaw +daris +danks +danker +dangler +daignault +dafoe +dace +curet +cumberledge +culkin +cuba +crowner +crocket +crawshaw +craun +cranshaw +cragle +courser +costella +cornforth +corkill +cordy +coopersmith +conzemius +connett +connely +condict +condello +concha +comley +colt +collen +cohoon +coday +clugston +clowney +clippard +clinkenbeard +clines +clelland +clause +clapham +clancey +clabough +cichy +cicalese +chuck +chua +chittick +chisom +chisley +chino +chinchilla +cheramie +cerritos +cercone +cena +cawood +cavness +catanzarite +casada +carvell +carp +carmicheal +carll +cardozo +caplin +candia +canby +cammon +callister +calligan +calkin +caillouet +buzzelli +bute +bustillo +bursey +burgeson +bupp +bulson +bulls +buist +buffey +buczkowski +buckbee +bucio +brueckner +broz +brookhart +brong +brockmeyer +broberg +brittenham +brisbois +bridgmon +bride +breyer +brede +breakfield +breakey +brauner +branigan +brandewie +branche +brager +brader +bovell +bouthot +bostock +bosma +boseman +boschee +borthwick +borneman +borer +borek +boomershine +boni +bommarito +bolman +boleware +boisse +boehlke +bodle +blash +blasco +blakesley +blacklock +blackley +bittick +birks +birdin +bircher +bilbao +bick +biby +bertoni +bertino +bertini +berson +bern +berkebile +bergstresser +benne +benevento +belzer +beltre +bellomo +bellerose +beilke +begeman +bebee +beazer +beaven +beamish +baymon +baston +bastidas +basom +basket +basey +bartles +baroni +barocio +barnet +barclift +banville +balthazor +balleza +balkcom +baires +bailiff +bailie +baik +baggott +bagen +bachner +babington +babel +asmar +askin +arvelo +artega +arrendondo +arreaga +arrambide +arquette +aronoff +arico +argentieri +arevalos +archbold +apuzzo +antczak +ankeny +angelle +angelini +anfinson +amer +amberg +amarillas +altier +altenburg +alspach +alosa +allsbrook +alexopoulos +aleem +aldred +albertsen +akerson +ainsley +agler +adley +addams +acoba +achille +abplanalp +abella +abare +zwolinski +zollicoffer +zola +zins +ziff +zenner +zender +zelnick +zelenka +zeches +zaucha +zauala +zappa +zangari +zagorski +youtsey +yorker +yell +yasso +yarde +yarbough +xiao +woolever +woodsmall +woodfolk +wonders +wobig +wixson +wittwer +wirtanen +winson +wingerd +wilkening +wilhelms +wierzbicki +wiechman +whites +weyrick +wessell +wenrick +wenning +weltz +weinrich +weiand +wehunt +wareing +walth +waibel +wahlquist +vona +voelkel +vitek +vinsant +vincente +vilar +viel +vicars +vermette +verma +vent +venner +veazie +vayda +vashaw +varon +vardeman +vandevelde +vanbrocklin +valery +val +vaccarezza +urquidez +urie +urbach +uram +ungaro +umali +ulsh +tutwiler +turnbaugh +tumminello +tuite +tueller +trulove +troha +trivino +trisdale +trippett +tribbett +treptow +tremain +travelstead +trautwein +trautmann +tram +traeger +tonelli +tomsic +tomich +tomasulo +tomasino +tole +todhunter +toborg +tischer +tirpak +tircuit +tinnon +tinnel +tines +tina +timbs +tilden +tiede +thumm +throne +throgmorton +thorndike +thornburgh +thoren +thomann +therrell +thau +thammavong +tetrick +tessitore +tesreau +teicher +teaford +tauscher +tauer +tanabe +talamo +takeuchi +taite +tadych +sweeton +swecker +swartzentrube +swarner +surrell +surbaugh +suppa +sunshine +sumbry +suchy +stuteville +studt +stromer +strome +streng +stonestreet +stockley +stmichel +sticker +stfort +sternisha +stensrud +steinhardt +steinback +steichen +stauble +stasiak +starzyk +stango +standerfer +stachowiak +springston +spratlin +spracklen +sponseller +spilker +spiegelman +spellacy +speiser +spaziani +spader +spackman +space +sorum +sopha +sollis +sollenberger +solivan +solheim +sokolsky +sogge +smyser +smitley +sloas +slinker +skora +skiff +skare +siverd +sivels +siska +siordia +simmering +simko +sime +silmon +silano +sieger +siebold +shukla +shreves +shoun +shortle +shonkwiler +shoals +shimmel +shiel +shieh +sherbondy +shenkman +shein +shearon +shean +shatz +shanholtz +shafran +shaff +shackett +sgroi +sewall +severy +sethi +sessa +sequra +sepulvado +seper +senteno +sendejo +semmens +seipp +segler +seegers +sedwick +sedore +sechler +sebastiano +scovel +scotton +scopel +schwend +schwarting +schutter +schrier +schons +scholtes +schnetzer +schnelle +schmutz +schlichter +schelling +schams +schamp +scarber +scallan +scalisi +scaffidi +saxby +sawrey +sauvageau +sauder +sarrett +sanzo +santizo +santella +santander +sandez +sandel +sammon +salsedo +salge +sailors +sagun +safi +sader +sacchetti +sablan +saber +saade +runnion +runkel +rung +rumbo +ruesch +ruegg +ruckle +ruchti +rubens +rubano +rozycki +roupe +roufs +rossel +rosmarin +rosero +rosenwald +roselle +ronca +romos +rolla +rohling +rohleder +roell +roehm +rochefort +roch +robotham +rivenburgh +riopel +riederer +ridlen +rias +rhudy +reynard +retter +respess +reppond +repko +rengifo +reinking +reichelt +reeh +redenius +rebolledo +raymundo +rauh +ratajczak +rapley +ranalli +ramie +raitt +radloff +radle +rabbitt +quay +quant +pusateri +puffinberger +puerta +provencio +proano +privitera +prenger +prellwitz +pousson +potier +poster +portz +portlock +porth +portela +portee +porchia +pollick +polinski +polfer +polanski +polachek +pluta +plourd +plauche +pitner +piontkowski +pileggi +pierotti +pico +piacente +phinisee +phaup +pfost +pettinger +pettet +petrich +peto +persley +persad +perlstein +perko +pere +penders +peifer +peco +pear +pay +pawley +pash +parrack +parady +papen +pangilinan +pandolfo +palone +palmertree +padin +ou +ottey +ottem +ostroski +ornstein +ormonde +onstott +oncale +oltremari +olcott +olan +oishi +oien +odonell +odonald +ode +obeso +obeirne +oatley +nusser +novo +novicki +noreen +nora +nitschke +nistler +nim +nikkel +niese +nierenberg +nield +niedzwiecki +niebla +niebel +nicklin +neyhart +newsum +nevares +nageotte +nagai +myung +mutz +murata +muralles +munnerlyn +mumpower +muegge +muckle +muchmore +moulthrop +motl +moskos +mortland +morring +mormile +morimoto +morikawa +morgon +mordecai +montour +mont +mongan +monell +miyasato +mish +minshew +mimbs +millin +milliard +mihm +middlemiss +miano +mew +mesick +merlan +mendonsa +mench +melonson +melling +mecca +meachem +mctighe +mcnelis +mcmurtrey +mcmurphy +mckesson +mckenrick +mckelvie +mcjunkins +mcgory +mcgirr +mcgeever +mcfield +mcelhinney +mccrossen +mccommon +mccannon +mazyck +mawyer +maull +matute +mathies +maschino +marzan +martinie +marrotte +marmion +markarian +marinacci +margolies +margeson +marcia +marcel +marak +maraia +maracle +manygoats +mano +manker +mank +mandich +manderson +maltz +malmquist +malacara +majette +mais +magnan +magliocca +madina +madara +macwilliams +macqueen +maccallum +lyde +lyday +lutrick +lurz +lurvey +lumbreras +luhrs +luhr +lue +lowrimore +lowndes +lowers +lourenco +lougee +lorona +longstreth +loht +lofquist +loewenstein +lobos +lizardi +liverpool +lionberger +limoli +liljenquist +liguori +liebl +liburd +leukhardt +letizia +lesinski +lepisto +lenzini +leisenring +leipold +leier +leggitt +legare +leaphart +lazor +lazaga +lavey +laue +laudermilk +lauck +lassalle +larsson +larison +lanzo +lantzy +lanners +langtry +landford +lancour +lamour +lambertson +lalone +lairson +lainhart +lagreca +lacina +labranche +labate +kurtenbach +kuipers +kuechle +kue +kubo +krinsky +krauser +kraeger +kracht +kozeliski +kozar +kowalik +kotler +kotecki +koslosky +kosel +koob +kolasinski +koizumi +kohlman +koffman +knutt +knore +knaff +kmiec +klamm +kittler +kitner +kirkeby +kiper +kindler +kilmartin +killings +killin +kilbride +kerchner +kendell +keddy +keaveney +kearsley +karras +karlsson +karalis +kappes +kapadia +kallman +kallio +kalil +kader +jurkiewicz +joya +johann +jitchaku +jillson +jex +jeune +jarratt +jarchow +janak +ivins +ivans +isenhart +inocencio +inoa +imhof +iacono +hynds +hutching +hutchin +hulsman +hulsizer +hueston +huddleson +hrbek +howry +housey +hounshell +hosick +hortman +horseman +horky +horine +hootman +honeywell +honeyestewa +holste +holien +holbrooks +hoffmeyer +hof +hoese +hoenig +hirschfeld +hildenbrand +higson +higney +hibert +hibbetts +hewlin +hesley +herrold +hermon +heritage +hepker +henwood +helbling +heinzman +heidtbrink +hedger +havey +hatheway +hartshorne +harpel +haning +handelman +hamalainen +hamad +halt +halasz +haigwood +haggans +hackshaw +guzzo +gunner +gundrum +guilbeault +gugliuzza +guglielmi +gue +guderian +gruwell +grunow +grundman +gruen +grotzke +grossnickle +groomes +grode +grochowski +grob +grein +greif +greenwall +greenup +grassl +grannis +grandfield +grames +grabski +grabe +gouldsberry +gotham +gosch +goody +goodling +goodermote +gonzale +golebiowski +goldson +godlove +glanville +gillin +gilkerson +giessler +giambalvo +giacomini +giacobbe +ghio +gergen +gentz +genrich +gelormino +gelber +geitner +geimer +gauthreaux +gaultney +garvie +gareau +garbo +garbacz +ganoe +gangwer +gandarilla +galyen +galt +galluzzo +gallon +galardo +gager +gaddie +gaber +gabehart +gaarder +fusilier +furnari +furbee +fugua +fruth +frohman +friske +frilot +fridman +frescas +freier +frayer +franzese +franklyn +frankenberry +frain +fosse +foresman +forbess +foot +florida +flook +fletes +fleer +fleek +fleegle +fishburne +fiscalini +finnigan +fini +filipiak +figueira +fiero +ficek +fiaschetti +ferren +ferrando +ferman +fergusson +fenech +feiner +feig +fees +faulds +fate +fariss +fantasia +falor +falke +ewings +eversley +everding +eunice +etling +essen +erskin +enstrom +enrico +engebretsen +ender +emma +eitel +eichberger +ehler +eekhoff +edrington +edmonston +edgmon +edes +eberlein +dwinell +dux +dupee +dunklee +dunk +dungey +dunagin +dumoulin +duggar +duenez +dudzic +dudenhoeffer +ducey +dub +drouillard +dreibelbis +dreger +dreesman +draughon +downen +double +dorminy +dominic +dombeck +dolman +doebler +dittberner +dishaw +disanti +dinicola +dinham +dimino +dilling +difrancesco +dicello +dibert +deshazer +deserio +descoteau +deruyter +dering +depinto +dente +demus +demattos +demarsico +delude +dekok +debrito +debois +deakin +dea +dayley +dawsey +dauria +datson +darty +darsow +darragh +darensbourg +dalleva +dalbec +dadd +cutcher +curb +cung +cuello +cuadros +crute +crutchley +crispino +crislip +crisco +crevier +creekmur +crance +cragg +crager +cozby +coyan +coxon +covalt +couillard +costley +costilow +cossairt +corvino +corigliano +cordaro +corbridge +corban +coor +cooler +conkel +cong +conary +coltrain +collopy +colgin +colen +colbath +coiro +coffie +cochrum +cobbett +clopper +cliburn +clendenon +clemon +clementi +clausi +cirino +cina +churn +churchman +chilcutt +cherney +cheetham +cheatom +chatelain +chandra +chalifour +cesa +cervenka +cerullo +cerreta +cerbone +cecchini +ceccarelli +cawthorn +cavalero +catalina +castner +castlen +castine +casimiro +casdorph +cartmill +cartmell +carro +carriger +carlee +carias +caravella +cappas +capen +cantey +canedo +camuso +camps +campanaro +camero +cambria +calzado +callejo +caligiuri +cafaro +cadotte +cacace +byrant +busbey +burtle +burres +burnworth +burggraf +burback +bunte +bunke +bulle +bugos +budlong +buckhalter +buccellato +brummet +bruff +brubeck +brouk +broten +brosky +broner +brittle +brislin +brimm +brillhart +bridgham +brideau +brennecke +brenna +breer +breeland +bredesen +branden +brackney +brackeen +boza +boyum +bowdry +bowdish +bouwens +bouvier +bougie +bouche +bottenfield +bostian +bossie +bosler +boschert +boroff +borello +boom +bonser +bonfield +bon +bole +boldue +bogacz +boemer +bluth +bloxom +blickenstaff +blessinger +bleazard +blatz +blanchet +blacksher +birchler +binning +binkowski +biltz +bilotta +bilagody +bigbee +bieri +biehle +bidlack +betker +bethers +bethell +bertha +bero +bernacchi +bermingham +berkshire +benvenuto +bensman +benoff +bencivenga +beman +bellow +bellany +belflower +belch +bekker +bejar +beisel +beichner +began +beedy +beas +beanblossom +bawek +baus +baugus +battie +battershell +bateson +basque +basford +bartone +barritt +barko +bann +bamford +baltrip +balon +balliew +ballam +baldus +ayling +avelino +ashwell +ashland +arseneau +arroyos +armendarez +arita +argust +archuletta +arcement +antonacci +anthis +antal +annan +andree +anderman +amster +amiri +amadon +alveraz +altomari +altmann +altenhofen +allers +allbee +allaway +all +aleo +alcoser +alcorta +akhtar +ahuna +agramonte +agard +adkerson +achord +abt +abdi +abair +zurn +zoellner +zirk +zion +zee +zarro +zarco +zambo +zaiser +zaino +zachry +youd +yonan +yniguez +yepes +yeo +yellock +yellen +yeatts +yearling +yatsko +yannone +wyler +woodridge +wolfrom +wolaver +wolanin +wojnar +wojciak +wittmann +wittich +wiswell +wisser +wintersteen +wineland +willing +willford +wiginton +wigfield +wierman +wice +wiater +whitsel +whitbread +wheller +wettstein +werling +wente +wenig +wempe +welz +weinhold +weigelt +weichman +wedemeyer +weddel +ways +wayment +waycaster +wauneka +watzka +watton +warnell +warnecke +warmack +warder +wands +waldvogel +waldridge +wahs +wagganer +waddill +vyas +vought +votta +voiles +virga +viner +villella +villaverde +villaneda +viele +vickroy +vicencio +veve +vetere +vermilyea +verley +verburg +ventresca +veno +venard +venancio +velaquez +veenstra +vea +vasil +vanzee +vanwie +vantine +vant +vanschoyck +vannice +vankampen +vanicek +vandersloot +vanderpoel +vanderlinde +vallieres +uzzell +uzelac +uranga +uptain +updyke +uong +untiedt +umbrell +umbaugh +umbarger +ulysse +ullmann +ullah +tutko +turturro +turnmire +turnley +turcott +turbyfill +turano +tuminello +tumbleson +tsou +truscott +trulson +troutner +trone +troll +trinklein +tremmel +tredway +trease +traynham +traw +totty +torti +torregrossa +torok +tomkins +tomaino +tkach +tirey +tinsman +timpe +tiefenauer +tiedt +tidball +thwaites +thulin +throneburg +thorns +thorell +thorburn +thiemann +thieman +thesing +tham +terrien +terrance +telfair +taybron +tasson +tasso +tarro +tanenbaum +talent +tailor +taddeo +tada +taborn +tabios +szekely +szatkowski +sylve +swineford +swartzfager +swanton +swagerty +surrency +sunderlin +sumerlin +suero +suddith +sublette +stumpe +stueve +study +stuckert +strycker +struve +struss +strubbe +strough +strothmann +strahle +stoutner +stooksbury +stones +stonebarger +stokey +stoffer +stimmel +stief +stephans +stemper +steltenpohl +stellato +steinle +stegeman +steffler +steer +steege +steckman +stapel +stansbery +stanaland +stahley +stagnaro +stachowski +squibb +sprunger +sproule +sprehe +spreen +sprecher +sposato +spivery +souter +sopher +sommerfeldt +soffer +snowberger +snape +smylie +smyer +smack +slaydon +slatton +slaght +skovira +skeans +sjolund +sjodin +siragusa +singelton +sinatra +silis +siebenaler +shuffield +shobe +shiring +shimabukuro +shilts +sherley +sherbert +shelden +sheil +shedlock +shearn +shaub +sharbono +shapley +shands +shaheen +shaffner +servantez +sentz +seney +selin +seitzinger +seider +sehr +sego +segall +seeds +sebastien +scimeca +schwenck +schweiss +schwark +schwalbe +schucker +schronce +schrag +schouten +schoppe +schomaker +schnarr +schmied +schmader +schlicht +schlag +schield +schiano +scheve +scherbarth +schaumburg +schauman +scarpino +savinon +sassaman +sarah +saporito +sanville +santilli +santaana +sanda +salzmann +salman +saks +sagraves +safran +saccone +sa +rutty +russett +rupard +rump +rumbley +ruffins +ruacho +rozema +roxas +routson +rourk +rought +rotunda +rotermund +rosman +rosette +rork +rooke +rolin +rohm +rohlman +rohl +roeske +roecker +rober +robenson +riso +rinne +rima +riina +rigsbee +riggles +riester +rials +rhinehardt +reynaud +reyburn +rewis +revermann +reutzel +retz +rende +rendall +reistad +reinders +reichardt +rehrig +rehrer +recendez +reamy +raz +rauls +ratz +rattray +rasband +rapone +ragle +ragins +radican +raczka +rachels +raburn +rabren +raboin +ra +quesnell +quaintance +puccinelli +pruner +prouse +proud +prosise +proffer +prochazka +probasco +previte +prayer +pour +portell +porcher +popoca +poncho +pomroy +poma +polsky +polsgrove +polidore +podraza +plymale +plescia +pleau +platte +plato +pizzi +pinchon +picot +piccione +picazo +philibert +phebus +pfohl +petell +pesso +pesante +pervis +perrins +perley +perkey +pereida +penate +peloso +pellerito +peffley +peddicord +pecina +peale +peaks +payette +paxman +pawlikowski +pavy +pavlov +patry +patmon +patil +pater +patak +pasqua +pasche +partyka +parody +parmeter +pares +pardi +paonessa +pao +panozzo +panameno +paletta +pait +oyervides +ossman +oshima +ortlieb +orsak +orleans +onley +on +oldroyd +okano +ohora +offley +oestreicher +odonovan +odham +odegard +obst +obriant +obrecht +nuccio +nowling +nowden +novelli +novell +nost +norstrom +norfolk +nordgren +nopper +noller +nisonger +niskanen +nienhuis +nienaber +neuwirth +neumeyer +neice +naugher +naiman +nagamine +mustin +murrietta +murdaugh +munar +mulberry +muhlbauer +mroczkowski +mowdy +mouw +mousel +mountcastle +moscowitz +mosco +morro +moresi +morago +moomaw +montroy +montpas +montieth +montanaro +mongelli +mon +mollison +mollette +moldovan +mohar +mizuno +mitchelle +mishra +misenheimer +minshall +minozzi +minniefield +minion +milhous +migliaccio +migdal +mickell +meyering +methot +mester +mesler +meriweather +mensing +mensah +menge +mendola +mendibles +meloche +melnik +mellas +meinert +mehrhoff +medas +meckler +mctague +mcspirit +mcshea +mcquown +mcquiller +mclarney +mckiney +mckearney +mcguyer +mcfarlan +mcfadyen +mcdanial +mcdanel +mccurtis +mccrohan +mccorry +mcclune +mccant +mccanna +mccandlish +mcaloon +mayall +maver +maune +matza +matty +matsuzaki +matott +mathey +mateos +masoner +masino +mas +marzullo +marz +maryland +marsolek +marquard +mario +marchetta +marberry +manzione +many +manthei +manka +mangram +mangle +mangel +mandato +mancillas +mammen +malina +maletta +malecki +majkut +mages +maestre +macphail +maco +macneill +macadam +lysiak +lyne +luxton +luptak +lundmark +luginbill +lovallo +louthan +lousteau +loupe +lotti +lopresto +lonsdale +longsworth +lohnes +loghry +logemann +lofaro +loeber +locastro +livings +litzinger +litts +liotta +lingard +lineback +lindy +lindhorst +lill +lide +lickliter +liberman +lewinski +levandowski +leimbach +leifer +leidholt +leiby +leibel +leibee +lehrke +lehnherr +lego +leese +leen +ledo +lech +leblond +leap +leahey +lazzari +lawrance +lawlis +lawhorne +lawes +lavigna +lavell +lauzier +lauter +laumann +latsha +latourette +latona +latney +laska +larner +larmore +larke +larence +lapier +lanzarin +lands +lammey +lamke +laminack +lamastus +lamaster +lacewell +labarr +laabs +kutch +kuper +kuna +kubis +krzemien +krupinski +krepps +kreeger +kraner +krammer +kountz +kothe +korpela +komara +kolenda +kolek +kohnen +koelzer +koelsch +kocurek +knoke +knauff +knaggs +knab +kluver +klose +klien +klahr +kitagawa +kissler +kirstein +kinnon +kinnebrew +kinnamon +kimmins +kilgour +kilcoyne +kiester +kiehm +kha +kesselring +kerestes +kenniston +kennamore +kenebrew +kelderman +keitel +kefauver +katzenberger +katt +kast +kassel +kasey +karol +kamara +kalmbach +kaizer +kaiwi +kainz +jurczyk +jumonville +juliar +jourdain +johndrow +johanning +johannesen +joffrion +jobes +jerde +jentzsch +jenkens +jendro +jellerson +jefferds +jaure +jaquish +janeway +jago +iwasaki +ishman +isaza +inmon +inlow +inclan +ildefonso +ike +iezzi +ianni +iacovetto +hyldahl +huxhold +huser +humpherys +humburg +hult +hullender +hulburt +huckabay +howeth +hovermale +hoven +houtman +hourigan +hosek +hopgood +homrich +holstine +holsclaw +hokama +hoffpauir +hoffner +hochstein +hochstatter +hochberg +hjelm +hiscox +hinsley +hinks +hineman +hineline +hinck +hilbun +hewins +herzing +hertzberg +hertenstein +herrea +herington +hercules +henrie +henman +hengst +hemmen +helmke +helgerson +heinsohn +heigl +hegstad +heggen +hegge +hefti +heathcock +haylett +haupert +haufler +hatala +haslip +hartless +hartje +hartis +harpold +harmsen +harbach +hanten +hanington +hammen +hameister +hallstrom +habersham +habegger +gussman +gundy +guitterez +guisinger +guilfoyle +groulx +grismer +griesbach +grawe +grall +graft +graben +goulden +gornick +gori +gookin +gonzalaz +gonyer +gonder +golphin +goller +goergen +glosson +glor +gladin +girdler +gillim +gillians +gillaspie +gilhooly +gildon +gignac +gibler +gibbins +giardino +giampietro +gettman +gerringer +gerrald +gerlich +georgiou +georgia +georgi +geiselman +gehman +gauze +gangl +gamage +gallian +gallen +gallatin +galen +galea +gainor +gahr +furbush +fulfer +fuhrmann +fritter +friis +friendly +friedly +freudenberger +frees +freemon +fratus +frans +foulke +fosler +forquer +fontan +folwell +folds +foeller +fodge +fobes +florek +fliss +flight +flesner +flegel +fitzloff +fiser +first +firmin +firestine +finfrock +fineberg +figures +fiegel +fickling +fesperman +fernadez +felber +feimster +feazel +favre +faughn +fatula +fasone +farron +faron +farino +falvey +falkenberg +faley +faletti +faeth +fackrell +ezekiel +espe +eskola +escott +esaw +erps +erker +erath +enfield +emfinger +embury +embleton +emanuele +em +elvers +ellwanger +ellegood +einstein +eichinger +egge +egeland +edgett +echard +eblen +eastmond +duteau +durland +dure +dunlavy +dungee +dukette +dugay +duboise +dubey +dsouza +druck +dralle +doubek +dorta +dorch +dorce +dopson +dolney +dockter +distler +diss +dippel +diperna +dina +dichiara +dicerbo +dewindt +dewan +deveney +devargas +deutscher +deuel +detter +dess +derrington +deroberts +dern +deponte +denogean +denardi +denard +demary +demarcus +demarais +delucas +deloe +delmonico +delisi +delio +delduca +delaine +deihl +dehmer +deep +decoste +dechick +decatur +dec +debruce +debold +debell +deats +daunt +daquilante +dambrosi +damas +dalin +daisy +dahman +dahlem +daffin +dacquel +cutrell +cusano +curtner +currens +curnow +cuppett +cummiskey +cullers +culhane +crull +crossin +cropsey +cromie +crofford +criscuolo +crisafulli +crego +creeden +covello +covel +corse +correra +corners +cordner +cordier +coplen +copeman +contini +conteras +consalvo +conduff +condo +compher +comas +colliver +colan +cohill +cohenour +cogliano +codd +cockayne +clum +clowdus +clarida +clance +clairday +clagg +citron +citino +ciriello +cicciarelli +chrostowski +christley +christians +chrisco +chris +chrest +chisler +chieffo +cherne +cherico +cherian +cheirs +chauhan +charter +chamblin +cerra +cepero +cellini +celia +celeste +celedon +cejka +cavagnaro +cauffman +catanese +castrillo +castrellon +casserly +casino +caseres +carthen +carse +carragher +carpentieri +carmony +carmer +carlozzi +caradine +cappola +capece +capaldi +cantres +cantos +canevari +canete +calcaterra +cal +cadigan +cabbell +byrn +bykowski +butchko +busler +bushaw +buschmann +burow +buri +burgman +bunselmeyer +bunning +buhrman +budnick +buckson +buckhannon +brunjes +brummel +brumleve +bruckman +brouhard +brougham +brostrom +broerman +brocks +brison +brining +brindisi +brereton +breon +breitling +breedon +brasseaux +branaman +bramon +brackenridge +boyan +boxley +bouman +bouillion +botting +botti +bosshart +borup +borner +bordonaro +boot +bonsignore +bonsall +bolter +bojko +bohne +bohlmann +bogus +bogdon +boen +bodenschatz +bockoven +bobrow +blondin +blissett +bligen +blasini +blankenburg +bjorkman +bistline +bisset +birdow +biondolillo +bielski +biele +biddix +biddinger +bianchini +bevens +bevard +betancur +bernskoetter +bernet +bernardez +berliner +berland +berkheimer +berent +bensch +benesch +belleau +bedingfield +beckstrom +beckim +bechler +beachler +bazzell +basa +bartoszek +barsch +barrell +barnas +barnaba +barillas +barbier +baltodano +baltierra +balle +balint +baldi +balderson +balderama +baldauf +balcazar +balay +baiz +bairos +baba +azim +axe +aversa +avellaneda +ausburn +aurelio +auila +augusto +atwill +artiles +arterberry +aro +arnow +arnaud +arnall +armando +argyle +ares +arenz +arduini +archila +arakawa +appleman +aplin +antonini +anstey +anglen +andros +amweg +amstutz +amari +amadeo +aly +alteri +aloi +allebach +allah +aley +alamillo +airhart +ahrendt +africa +aegerter +adragna +admas +adderly +adderley +addair +abelar +abbamonte +abadi +zurek +zundel +zuidema +zuelke +zuck +zogg +zody +zets +zech +zecca +zavaleta +zarr +yousif +yoes +yoast +yeagley +yaney +yanda +yackel +wyles +wyke +woolman +woollard +woodis +woodin +wonderly +wombles +woloszyn +wollam +wnek +wms +wittie +withee +wissman +wisham +wintle +winthrop +winokur +winch +wilmarth +willhoite +wildner +wikel +wieser +wien +wicke +wiatrek +whitehall +whetstine +wheelus +weyrauch +weyers +westerling +wendelken +welner +welder +weinreb +weinheimer +weilbacher +weihe +weider +wecker +wead +watler +watkinson +wasmer +waskiewicz +wasik +warneke +wares +wangerin +wamble +walken +waker +wakeley +wahlgren +wahlberg +wagler +wachob +vorhies +vonseggern +vittitow +virgilio +vink +villarruel +villamil +villamar +villalovos +vidmar +victorero +vespa +vertrees +verissimo +veltman +vecchione +veals +varrone +varma +vanveen +vanterpool +vaneck +vandyck +vancise +vanausdal +vanalphen +valdiviezo +urton +urey +updegrove +unrue +ulbrich +tysinger +tyo +twiddy +tunson +trueheart +troyan +trier +traweek +trafford +tozzi +toulouse +touch +tosto +toste +torez +tooke +tonini +tonge +tomerlin +tolmie +tobe +tippen +tierno +tichy +thuss +threat +thran +thornbury +thone +theunissen +thelmon +theall +textor +teters +tesh +tennis +teng +tench +tekautz +tehrani +teat +teas +teare +te +tavenner +tartaglione +tanski +tanis +tanguma +tangeman +taney +tammen +tamburri +tamburello +talsma +tallie +takeda +taira +taheri +tademy +taddei +taaffe +szymczak +szczepaniak +szafranski +swygert +swem +swartzlander +sutley +supernaw +sundell +sullivant +suderman +sudbury +suares +stueber +stromme +striker +streeper +streck +strebe +stonehouse +stoia +stohr +stodghill +stirewalt +stick +sterry +stephanie +stenstrom +stene +steinbrecher +stear +stdenis +stanphill +staniszewski +stanard +stahlhut +stachowicz +srivastava +spong +spomer +spinosa +spindel +spera +spark +soward +sopp +sooter +sonnek +sonne +soland +sojourner +soeder +sobolewski +snellings +snare +smola +smetana +smeal +smarr +sloma +sligar +skenandore +skalsky +sitter +sissom +sirko +simkin +silverthorn +silman +sikkink +signorile +siddens +shumsky +shrider +shoulta +shonk +shomaker +shippey +shimada +shillingburg +shifflet +shiels +shepheard +sheerin +shedden +sheckles +sharrieff +sharpley +shappell +shaneyfelt +shampine +shaefer +shaddock +shadd +sforza +severtson +setzler +sepich +senne +senatore +sementilli +selway +selover +sellick +seigworth +sefton +seegars +sebourn +seaquist +sealock +seabreeze +scriver +scinto +schumer +schulke +schryver +schriner +schramek +schoon +schoolfield +schonberger +schnieder +schnider +schlitz +schlather +schirtzinger +scherman +schenker +scheiner +scheible +schaus +schakel +schaad +saxe +savely +savary +sardinas +santarelli +sanschagrin +sans +sanpedro +sanjose +sandra +sandine +sandigo +sandgren +sanderford +sandahl +salzwedel +salzar +salvino +salvatierra +salminen +salierno +salberg +sahagun +saelee +sabel +rynearson +ryker +rupprecht +runquist +rumrill +ruhnke +rovira +rottenberg +rosoff +rosete +rosebrough +roppolo +roope +romas +roley +rohrback +rohlfs +rogriguez +roel +rodriguiz +rodewald +roback +rizor +ritt +rippee +riolo +rinkenberger +riggsby +rigel +rieman +riedesel +rideau +ricke +rhinebolt +rheault +revak +relford +reinsmith +reichmann +rei +regula +redlinger +redhead +rayno +raycroft +rave +raus +raupp +rathmann +rastorfer +rasey +raponi +rantz +ranno +ranes +randal +ramp +ramnauth +rahal +raddatz +quattrocchi +quang +purchase +pullis +pulanco +pryde +prohaska +primiano +prez +prevatt +prechtl +pottle +potenza +portes +porowski +poppleton +pontillo +pong +polka +politz +politi +poggi +plonka +plaskett +placzek +pizzuti +pizzaro +pisciotta +pippens +pinkins +pinilla +pini +pingitore +piercey +pickup +piccola +piccioni +picciano +phy +philps +philp +philo +philmon +philbin +pflieger +pezzullo +petruso +petrea +petitti +peth +peshlakai +peschel +persico +persichetti +persechino +perris +perlow +perico +pergola +penniston +pembroke +pellman +pekarek +peirson +pearcey +pealer +pavlicek +passino +pasquarello +pasion +parzych +parziale +parga +papalia +papadakis +paino +pacini +oyen +ownes +owczarzak +outley +ouelette +ottosen +otting +ostwinkle +osment +oshita +osario +orlow +oriordan +orefice +orantes +oran +orahood +opel +olpin +oliveria +okon +okerlund +okazaki +ohta +offerman +nyce +nutall +northey +norcia +noor +noh +niehoff +niederhauser +nickolson +nguy +neylon +newstrom +nevill +netz +nesselrodt +nemes +neally +nauyen +nascimento +nardella +nanni +myren +murchinson +munter +munster +mundschenk +mujalli +muckleroy +mu +moussa +mouret +moulds +mottram +motte +mosey +morre +montreuil +monton +montellano +monninger +monhollen +mongeon +monestime +monegro +mondesir +monceaux +mola +moga +moening +moccia +misko +miske +mishaw +minturn +mingione +minerva +milstein +milos +milla +milks +milhouse +michl +micheletti +michals +mesia +merson +meras +menifee +meluso +mella +melick +mehlman +meffert +medoza +mecum +meaker +meahl +mczeal +mcwatters +mcomber +mcmonigle +mckiddy +mcgranor +mcgeary +mcgaw +mcenery +mcelderry +mcduffey +mccuistion +mccrudden +mccrossin +mccosh +mccolgan +mcclish +mcclenahan +mcclam +mccartt +mccarrell +mcbane +mc +maybury +mayben +maw +maulden +mauceri +matko +mathie +matheis +mathai +masucci +massiah +martorano +martnez +martindelcamp +marschke +marovich +markiewicz +marinaccio +marhefka +marcrum +manton +mantel +mannarino +manlove +mangham +manasco +malpica +mallernee +malinsky +malhotra +maish +maisel +mainville +maharrey +magid +maertz +mada +maclaughlin +macina +macdermott +macallister +macadangdang +maack +lynk +lydic +luyando +lutke +lupinacci +lunz +lundsten +lull +lujano +luhn +luecke +luebbe +ludolph +luckman +lucker +luckenbill +luckenbach +lucido +lowney +lowitz +lovaglio +louro +louk +loudy +louderback +lorick +lorenzini +lorensen +lorenc +lomuscio +loguidice +lockner +lockart +lochridge +litaker +lisowe +liptrap +linnane +linhares +lindfors +lindenmuth +lincourt +lina +like +liew +lies +liebowitz +levengood +leskovec +lesch +leoni +lennard +legner +leaser +leas +lean +leadingham +lazarski +layland +laurito +laulu +laughner +laughman +laughery +laube +latiolais +lasserre +lasser +lars +larrow +larrea +lapsley +lantrip +lanthier +langwell +langelier +landaker +lampi +lamond +lamblin +lambie +lakins +laipple +lagrimas +lafrancois +laffitte +laday +lacko +lacava +labor +labianca +kutsch +kuske +kunert +kubly +kuamoo +krummel +krise +krenek +kreiser +krausz +kraska +krakowski +kradel +kozik +koza +kotowski +koslow +korber +kojima +kochel +knabjian +klunder +klugh +klinkhammer +kliewer +klever +kleber +klages +klaas +kizziar +kitchel +kishimoto +kirschenman +kirschenbaum +kinnick +kinn +kinkle +kiner +kindla +kindall +kincaide +kilson +killins +kill +kightlinger +kienzle +kiah +khim +ketcherside +kerl +kelsoe +kelker +keizer +keir +keepers +kawano +kawa +kaveney +kath +kasparek +kaplowitz +kantrowitz +kant +kanoff +kano +kann +kamalii +kalt +kaleta +kalbach +kalauli +kalata +kalas +kaigler +kachel +juran +jubb +jonker +jonke +jolivette +joles +joas +jividen +jewel +jeffus +jeanty +jarvi +jardon +janvier +janosko +janoski +janiszewski +janish +janek +iwanski +iuliano +isabella +irle +ingmire +imber +ijames +iiams +ihrig +ichikawa +hynum +hutzel +hutts +huskin +husak +hurndon +huntsinger +humm +hulette +huitron +huguenin +hugg +hugee +huelskamp +huch +howen +hovanec +hoston +hostettler +horsfall +horodyski +holzhauer +hollimon +hollender +hogarth +hoffelmeyer +histand +hissem +hisel +hirayama +hinegardner +hinde +hinchcliffe +hiltbrand +hilsinger +hillstrom +hiley +hickenbottom +hickam +hibley +heying +hewson +hetland +hersch +herlong +herda +henzel +henshall +hendler +hence +helson +helfen +heinbach +heikkila +heggs +hefferon +hebard +heathcote +hearl +heaberlin +hauth +hauschild +haughney +hauch +hattori +haste +hasley +hartpence +harroun +harrier +harelson +hardgrove +hardel +hansbrough +handsome +handshoe +handly +haluska +hally +halling +halfhill +halferty +hakanson +haist +hairgrove +hahner +hagg +hafele +haaland +guttierez +gutknecht +gunnarson +gunlock +gummersheimer +gullatte +guity +guilmette +guhl +guenette +guardino +groshong +grober +gripp +grillot +grilli +greulich +gretzinger +greenwaldt +graven +grassman +granberg +graeser +graeff +graef +grabow +grabau +gotchy +goswick +gosa +gordineer +gorczyca +goodchild +golz +gollihue +goldwire +goldbach +goffredo +glassburn +glaeser +gillilan +gigante +giere +gieger +gidcumb +giarrusso +giannelli +gettle +gesualdi +geschke +gerwig +gervase +geoffrion +gentilcore +genther +gemes +gemberling +gelles +geitz +geeslin +gedney +gebauer +gaye +gawron +gavia +gautney +gaustad +gasmen +gargus +ganske +ganger +galvis +gallinger +gallichio +galletta +gaede +gadlin +gaby +gabrielsen +gaboriault +furlan +furgerson +fujioka +fugett +fuehrer +frisco +frint +frigon +frevert +frautschi +fraker +fradette +foulkes +forslund +forni +foo +fontenette +fones +folz +folmer +follman +folkman +flourney +flickner +flemmings +fleischacker +flander +flament +fithian +fister +fiorello +fiorelli +fioravanti +fieck +ficke +fiallos +fiacco +feuer +ferrington +fernholz +feria +fergurson +feick +febles +favila +faulkingham +fath +farnam +falter +fakhouri +fairhurst +failing +fahs +eva +estrello +essick +espree +esmond +eskelson +escue +escatel +erebia +epperley +epler +enyart +engelbert +enderson +emmitt +emch +elisondo +eli +elford +el +ekman +eick +eichmann +ehrich +ehlen +edwardson +edley +edghill +edel +eastes +easterbrooks +eagleson +eagen +eade +dyle +dutkiewicz +dunnagan +duncil +duling +drumgoole +droney +dreyfus +dragan +dowty +doscher +dornan +doremus +doogan +donaho +donahey +dombkowski +dolton +dolen +dobratz +diveley +dittemore +ditsch +disque +dishmon +disch +dirickson +dippolito +dimuccio +dilger +diefenderfer +dicola +diblasio +dibello +devan +dettmer +deschner +desbiens +derusha +denkins +demonbreun +demchak +delucchi +delprete +deloy +deliz +deline +delap +deiter +deignan +degiacomo +degaetano +defusco +dede +deboard +debiase +deaville +deadwyler +davanzo +daughton +darter +darrin +danser +dandrade +dando +dampeer +dalziel +dalen +dain +dai +dague +czekanski +cutwright +cutliff +curle +cuozzo +cunnington +cunning +cunnigham +cumings +crowston +croak +crittle +crispell +crisostomo +crear +creach +craigue +crabbs +cozzi +cozza +coxe +cowsert +coviello +couse +coull +cottier +costagliola +corra +corpening +cormany +corless +corkern +conteh +conquest +conkey +cones +conditt +conaty +colomb +collura +colledge +colins +colgate +coleson +colemon +coins +coffland +coccia +coast +clougherty +clewell +cleckley +cleaveland +clarno +clamp +civils +cillo +cifelli +ciesluk +chum +chui +christison +christiana +chowning +chouteau +choung +childres +cherrington +chenette +cheeves +cheairs +chaddock +cernoch +cerino +cazier +cathy +castel +casselberry +caserta +carvey +carton +cart +carry +carris +carrie +carmant +cariello +cardarelli +caras +caracciolo +capitano +cantoni +cantave +cancio +campillo +cam +callens +caldero +calamia +cahee +cahan +cahalan +cabanilla +cabal +bywater +bynes +byassee +butkus +busker +bushby +busack +burtis +burrola +buroker +burnias +burn +burlock +burham +burak +bulla +buffin +buffa +buening +budney +buchannan +buchalter +bua +brule +brugler +broxson +broun +brosh +brissey +brisby +brinlee +brinkmeyer +brimley +brickell +breth +breger +brees +brank +braker +bozak +bowlds +bowersock +bousman +boushie +botz +bordwell +bonkowski +bonine +bonifay +bonesteel +boldin +bohringer +bohlander +boecker +bocook +bocock +boblett +bobbett +boas +boarman +bleser +blazejewski +blaustein +blausey +blancarte +blaize +blackson +blacketer +blackard +bisch +birchett +billa +bilder +bierner +bienvenu +bielinski +bialas +biagini +beynon +beyl +bettini +bethany +betcher +bessent +beshara +besch +bernd +bergemann +bergeaux +berdan +bens +benedicto +bendall +beltron +beltram +bellville +beisch +behney +beemer +beechler +beckum +becks +batzer +batte +bastida +bassette +basley +base +bartosh +bartolone +barraclough +barnick +barket +barkdoll +baringer +barges +barella +barbian +barbati +bannan +banderas +balles +baldo +balasubramani +bala +baig +bahn +bachmeier +babyak +baas +baars +ayuso +axt +avinger +avella +ausbrooks +aull +augello +atkeson +atkerson +atherley +athan +assad +asebedo +arrison +armon +armfield +armbrust +arlington +arkin +archambeau +antonellis +angotti +andy +amorose +amini +amborn +amano +aluarez +alma +allgaier +allegood +ales +alen +aldama +albertine +aki +aird +ahsing +ahmann +aguado +agostino +agostinelli +agnes +adwell +adsit +adelstein +ade +actis +acierno +achee +abbs +abbitt +zwagerman +zuercher +zinno +zettler +zeff +zavalza +zaugg +zarzycki +zappulla +zanotti +zachman +zacher +yundt +yslas +younes +yontz +yglesias +yeske +yellow +yeargin +yauger +yamane +xang +wylam +wrobleski +wratchford +worker +woodlee +wolsey +wolfinbarger +wohlenhaus +wittler +wittenmyer +witkop +wishman +wintz +winkelmann +windus +winborn +wims +wiltrout +wilshire +willmott +williston +wilemon +wilbourne +wiedyk +widmann +wickland +wickes +wichert +whitsell +whisenand +whidby +wetz +westmeyer +wertheim +wernert +werle +werkheiser +weng +weldin +weissenborn +weingard +weinfeld +weihl +weightman +weichel +wehrheim +wegrzyn +wegmann +wearing +waszak +wankum +wangler +walthour +waltermire +walstad +waldren +walbert +walawender +wahlund +wahlert +wahlers +wach +vuncannon +vroom +vredenburgh +vonk +vollmar +voisinet +vlahos +viscardi +vires +vipperman +violante +vidro +vessey +vesper +veron +vergari +verbeck +venturino +velastegui +vegter +varas +vanwey +vanvranken +vanvalkenbur +vanorsdale +vanoli +vanochten +vanier +vanevery +vane +vanduser +vandersteen +vandell +vandall +vallot +vallon +vallez +vallely +vadenais +uthe +usery +unga +ultsch +ullom +tyminski +twogood +tursi +turay +tungate +truxillo +trulock +trovato +troise +tripi +trinks +trimboli +trickel +trezise +trefry +treen +trebilcock +travieso +trachtenberg +touhey +tougas +tortorella +tormey +torelli +torborg +toran +tomek +tomassi +tollerson +tolden +toda +tobon +tjelmeland +titmus +tilbury +tietje +thurner +thum +thrope +thornbrough +thibaudeau +thackeray +tesoro +territo +ternes +teich +tecson +teater +teagarden +tatsch +tarallo +tapanes +tanberg +tamm +sylvis +swenor +swedlund +swagger +sutfin +sura +sundt +sundin +summerson +sumatzkuku +sultemeier +sulivan +suggitt +suermann +sturkie +sturgess +stumph +stuemke +struckhoff +strose +stroder +stride +stricklen +strick +streib +strei +strawther +stratis +strahm +stortz +storrer +storino +stohler +stohl +stockel +stinnette +stile +stieber +stensland +steffenhagen +stefanowicz +steever +steagall +statum +stapley +stanish +standiford +standen +stamos +stahlecker +stadtler +spratley +spraker +sposito +spickard +spehar +spees +spearing +spangle +spallone +sox +soulard +sorel +sora +sopko +sood +sonnen +som +solly +solesbee +soldano +sobey +sobczyk +snedegar +sneddon +smolinski +smolik +slota +sloman +sleigh +slavick +skorupski +skolnik +skirvin +skeels +skains +skahan +skaar +siwiec +siverly +siver +sivak +sirk +sinton +sinor +sincell +silberstein +sieminski +sidelinger +shurman +shunnarah +shirer +shidler +sherlin +shepperson +shemanski +sharum +shartrand +shapard +shanafelt +shamp +shader +shackelton +seyer +seroka +sernas +seright +serano +sengupta +semper +selinger +seith +seidler +seehusen +seefried +seed +scovell +scorzelli +sconiers +schwind +schwichtenber +schwerin +schwenke +schwaderer +schussler +schuneman +schumpert +schultheiss +schroll +schroepfer +schroeden +schrimpf +schook +schoof +schomburg +schoenfeldt +schoener +schnoor +schmick +schlereth +schindele +schildt +schildknecht +schemmel +scharfenberg +schanno +schane +schaer +schad +scearce +scardino +sawka +sawinski +savoca +savery +saults +saucer +sarpy +saris +sardinha +sarafin +sankar +sanjurjo +sanderfer +sanagustin +samudio +sammartino +samas +salz +salmen +sallie +salkeld +salamon +sakurai +sakoda +safley +sada +sachse +ryden +ryback +russow +russey +ruprecht +rumple +ruffini +rudzinski +rudel +rudden +rud +rovero +routledge +roussin +rousse +rouser +rougeau +rosie +rosica +romey +romaniello +rolfs +rogoff +rogne +rodriquz +rodrequez +rodin +rocray +rocke +robbin +riviere +rivette +riske +risenhoover +rindfleisch +rinaudo +rimbey +riha +righi +ridner +ridling +riden +rhue +reyome +reynoldson +reusch +rensing +rensch +rennels +renderos +reininger +reiners +reigel +rehmer +regier +reff +reef +redlin +recchia +reaume +reagor +rayne +rawe +rattigan +raska +rashed +ranta +ranft +randlett +randa +ramiez +ramella +rallis +rajan +raisbeck +raimondo +raible +ragone +rackliffe +quirino +quiring +quero +quaife +pyke +purugganan +pursifull +purkett +purdon +punches +pun +pulos +pulling +puccia +provance +propper +preis +prehn +prata +prasek +pranger +pradier +portor +portley +porte +popiel +popescu +pomales +polowy +pollett +politis +polit +poley +pol +pohler +poggio +poet +podolak +poag +plymel +ploeger +planty +piskura +pirrone +pirro +piroso +pinsky +pile +pilant +pickerill +piccolomini +picart +piascik +phann +petruzzelli +petosa +persson +perretta +perkowski +perilli +percifield +perault +peppel +pember +pelotte +pelcher +peixoto +pehl +peatross +pearlstein +peacher +payden +paya +pawelek +pavey +pauda +pathak +parrillo +parness +parlee +paoli +pannebaker +palomar +palo +palmberg +paganelli +paffrath +padovano +padden +pachucki +over +ovando +othman +osowski +osler +osika +orsburn +orlowsky +oregel +oppelt +opfer +opdyke +onell +omer +olivos +okumura +okoro +ogas +offer +oelschlaeger +odette +oder +ocanas +obrion +obarr +oas +oare +nyhus +nyenhuis +nunnelley +nunamaker +nuckels +noyd +nowlan +novakovich +noteboom +norviel +nortz +norment +norland +nolt +nolie +nixson +nitka +nissley +nishiyama +niland +niewiadomski +niemeier +nieland +nickey +nicholsen +newark +neugent +neto +nerren +nein +neikirk +neigh +nedrow +neave +nazaire +navaro +navalta +nasworthy +nasif +nani +nalepa +nakao +nakai +nadolny +myklebust +mussel +murthy +muratore +murat +mundie +mulverhill +muilenburg +muetzel +mudra +mudgett +mrozinski +moura +mottinger +morson +moretto +morentin +mordan +mooreland +mooers +monts +montone +montondo +montiero +monserrate +monie +monat +monares +mollo +mollet +molacek +mokry +mohrmann +mohabir +mogavero +moes +moceri +miyoshi +mitzner +misra +mis +mirr +mira +minish +minge +minckler +milroy +mille +mileski +milanesi +miko +mihok +mihalik +mieczkowski +messerli +meskill +mesenbrink +merton +merryweather +merkl +menser +menner +menk +menden +menapace +melbourne +mekus +meinzer +mein +meers +mctigue +mcquitty +mcpheron +mcmurdie +mcleary +mclafferty +mckinzy +mckibbin +mckethan +mcintee +mcgurl +mceachran +mcdowall +mcdermitt +mccuaig +mccreedy +mccoskey +mcclosky +mcclintick +mccleese +mccanless +mazzucco +mazzocco +mazurkiewicz +mazariego +mayhorn +maxcy +mavity +mauzey +maulding +matuszewski +mattsson +mattke +matsushita +matsuno +matsko +matkin +mathur +mates +masterman +massett +massart +massari +mashni +martella +marren +margotta +marder +marczak +maran +maradiaga +manwarren +mantini +manter +mantelli +manso +mangone +manfredonia +malden +malboeuf +malanga +makara +maison +maisano +mairs +mailhiot +magri +magic +madron +madole +mackall +macduff +macartney +lynds +lusane +luffman +lua +louth +loughmiller +lougheed +lotspeich +lorenzi +loree +loosli +looker +longe +longanecker +lonero +lohmeyer +loeza +lobstein +lobner +lober +littman +litalien +lippe +lints +linear +lijewski +ligas +liebert +liebermann +liberati +lezcano +levinthal +lessor +less +lesieur +lenning +lengel +len +lempke +lemp +lemar +leitzke +leinweber +legrone +lege +leder +lawnicki +lauth +laun +laughary +latin +lassley +lashway +larrivee +largen +lare +lanouette +lanno +langille +langen +landing +lana +lamonte +lalin +lala +laible +lafratta +laforte +lacuesta +lacer +labore +laboe +labeau +kwasniewski +kunselman +kuhr +kuchler +kuc +krugman +kruckenberg +krotzer +kroemer +krist +krigbaum +kreke +kreisman +kreisler +kreft +krasnow +kras +krag +kouyate +kough +kotz +kostura +korner +kornblum +korczynski +koppa +kopczyk +konz +komorowski +kollen +kolander +koepnick +koehne +kochis +knoch +knippers +knaebel +klipp +klinedinst +klimczyk +klier +klement +klaphake +kisler +kinzie +kines +kindley +kimple +kimm +kimbel +kilker +kilborn +kibbey +khong +ketchie +kerbow +kennemore +kennebeck +kenneally +kenndy +kenmore +kemnitz +kemler +kemery +kelnhofer +kellstrom +kellis +kellams +keiter +keirstead +keeny +keelin +keefauver +keams +kautzman +kaus +katayama +kasson +kassim +kasparian +kase +karwoski +kapuscinski +kaneko +kamerling +kamada +kalka +kalar +kakacek +kaczmarczyk +jurica +junes +journell +jolliffe +johnsey +joel +jindra +jimenz +jette +jesperson +jerido +jenrette +jencks +jech +jayroe +jayo +jaye +javens +jaskot +jaros +jaquet +janowiak +jame +jaegers +jackel +izumi +ith +italia +irelan +ion +inzunza +imoto +imme +iglehart +iannone +iannacone +huyler +hussaini +hurlock +hurlbutt +huprich +humphry +hulslander +huelsman +hudelson +hudecek +hsia +hreha +hoyland +howk +housholder +housden +houff +horkey +honan +homme +holtzberg +hollyfield +hollings +hollenbaugh +hokenson +hogrefe +hogland +hoel +hodgkin +hochhalter +hjelle +hittson +hinderman +hinchliffe +hime +hilyer +hilby +hibshman +heydt +hewell +heward +hetu +hestand +heslep +herridge +herner +hernande +hermandez +hermance +herbold +heon +henthorne +henion +henao +heming +helmkamp +hellberg +heidgerken +heichel +hehl +hegedus +hefty +heckathorne +hearron +haymer +haycook +havlicek +hausladen +haseman +hartsook +hartog +harns +harne +harmann +haren +hanserd +hanners +hanekamp +hamra +hamley +hamelin +hamblet +hakimi +hagle +hagin +haehn +haeck +hackleman +haacke +gulan +guirand +guiles +guggemos +guerrieri +guerreiro +guereca +gudiel +guccione +gubler +gruenwald +gritz +grieser +grewe +grenon +gregersen +grefe +greener +grech +grecco +gravette +grassia +granholm +graner +grandi +grahan +gradowski +gradney +graczyk +gouthier +gottschall +goracke +gootee +goodknight +goodine +gonzalea +gonterman +gonalez +gomm +goleman +goldtooth +goldstone +goldey +golan +goes +goen +goeller +goel +goecke +godek +goan +glunz +gloyd +glodowski +glinski +glawe +girod +girdley +giovanni +gindi +gillings +gildner +giger +giesbrecht +gierke +gier +giboney +giaquinto +giannakopoulo +giaimo +giaccio +giacalone +gessel +gerould +gerlt +gerhold +geralds +genson +genereux +gellatly +geigel +gehrig +gehle +geerdes +geagan +gawel +gavina +gauss +gatwood +gathman +gaster +garske +garratt +garms +garis +gansburg +gammell +gambale +gamba +galimore +gadway +gadoury +furrer +furnish +furino +fullard +fukui +fuhrer +fryou +friesner +friedli +friedl +friedberg +freyermuth +fremin +fredell +fraze +franken +fought +foth +fote +fortini +fornea +formanek +forker +forgette +folan +foister +foglesong +flinck +flewellen +flaten +flaig +fitgerald +fischels +firman +finstad +finkelman +finister +finder +fina +fettes +fetterhoff +ferriter +ferch +fennessy +feltus +feltes +feinman +farve +farry +farrall +farag +falzarano +falck +falanga +fakhoury +faire +fairbrother +fagley +faggins +facteau +ewer +ewbank +evola +evener +eustis +eugenio +estwick +estel +essa +espinola +escutia +eschmann +erpelding +ernsberger +erling +entz +enrique +engelhart +enbody +emick +elsinger +ellinwood +ellingsen +ellicott +elkind +eisinger +eisenbeisz +eischen +eimer +eigner +eichhorst +ehmke +egleston +eggett +ege +efurd +edgeworth +eckels +ebey +eberling +eagleton +dwiggins +dweck +dunnings +dunnavant +dumler +duman +dugue +duerksen +dudeck +dreisbach +drawdy +drawbaugh +draine +draggoo +dowse +dovel +doughton +douds +doubrava +dort +dorshorst +dornier +doolen +donavan +dominque +dominion +dominik +domingez +dome +dom +dolder +dold +dobies +dk +diskin +disano +dirden +diponio +dipirro +dimock +diltz +dillabough +diley +dikes +digges +digerolamo +diel +dicker +dicharry +dicecco +dibartolomeo +diamant +dewire +devone +dessecker +dertinger +derousselle +derk +depauw +depalo +denherder +demeyer +demetro +demastus +delvillar +deloye +delosrios +delgreco +delarge +delangel +dejongh +deitsch +degiorgio +degidio +defreese +defoe +decambra +debenedetto +deaderick +daza +dauzat +daughenbaugh +dato +dass +darwish +dantuono +danton +dammeyer +daloia +daleo +dagg +dacey +curts +cuny +cunneen +culverhouse +cuervo +cucinella +cubit +crumm +crudo +crowford +crout +crotteau +crossfield +crooke +crom +critz +cristaldi +crickmore +cribbin +cremeens +crayne +cradduck +couvertier +cottam +cossio +correy +cordrey +coplon +copass +coone +coody +contois +consla +connelley +connard +congo +congleton +condry +conception +coltey +colindres +colgrove +colfer +colasurdo +cocker +cochell +cobbin +clouthier +closs +cloonan +clizbe +clennon +clayburn +claybourn +clausell +clasby +clagett +ciskowski +cirrincione +cinque +cinelli +cimaglia +ciaburri +christiani +christeson +chladek +chizmar +chinnici +chiarella +chevrier +cheves +chernow +cheong +chelton +charlette +chanin +cham +chaligoj +celestino +cayce +cavey +cavaretta +caughron +catmull +catapano +casio +cashaw +carullo +carualho +carthon +cartelli +carruba +carrere +carolus +carmine +carlstrom +carli +carfora +carello +carbary +car +caplette +cannell +cancilla +campell +cammarota +camilo +camejo +camarata +caisse +cacioppo +cabbagestalk +cabatu +cabanas +byles +buxbaum +butland +butch +burrington +burnsed +burningham +burlingham +burgy +buitrago +buffett +bueti +buehring +buday +bucks +bucknell +buchbinder +bucey +bruster +brunston +brumby +bruins +brouillet +brosious +broomes +brodin +broddy +brochard +britsch +britcher +brierley +brezina +bressi +bressette +breslow +brenden +breier +brei +braymer +brasuell +brash +branscomb +branin +brandley +brahler +bracht +bracamontes +brabson +boyne +boxell +bowery +bovard +boutelle +boulette +bottini +botkins +bosen +boscia +boscarino +borich +bores +boreman +bordoy +bordley +bordenet +boquet +boocks +bolner +boissy +boilard +bohnen +bohall +boening +boccia +boccella +bobe +blyth +blitz +blew +blacksmith +biviano +bitto +bisel +binstock +bines +billiter +bigsby +bighorse +bielawski +bickmore +bettin +bettenhausen +besson +beseau +berton +berroa +berntson +bernas +berisford +berhow +bergsma +benyo +benyard +bente +bennion +benko +belsky +bellavance +belasco +belardo +beidler +behring +begnaud +bega +befort +beek +bedore +beddard +becknell +beardslee +beardall +beagan +bayly +bauza +bautz +bausman +baumler +batterson +battenfield +bassford +basse +basemore +baruch +bartholf +bars +barman +baray +barabas +banghart +banez +balsam +ballester +ballagh +baldock +bagnoli +bagheri +bacus +bacho +baccam +axson +averhart +aver +ave +austill +auberry +athans +atcitty +atay +astarita +ascolese +artzer +arts +arrasmith +argenbright +aresco +arb +aranjo +appleyard +appenzeller +app +apilado +antonetti +antis +annett +annas +angwin +andris +andries +andreozzi +ando +andis +anderegg +anastasia +amyot +aminov +amelung +amelio +amason +alviar +allendorf +allday +alice +aldredge +alcivar +alaya +alapai +airington +aina +ailor +ahrns +ahmadi +agresta +agent +affolter +aeschlimann +adney +aderhold +adell +adachi +ackiss +aben +abdelhamid +abar +aase +zorilla +zordan +zollman +zoch +zipfel +zimmerle +zike +ziel +zhong +zens +zelada +zaman +zahner +zadora +zachar +zaborowski +zabinski +yzquierdo +yoshizawa +yori +yielding +yerton +yehl +yeargain +yeakley +yamaoka +yagle +yablonski +wynia +wyne +wyers +wrzesinski +wrye +wriston +woolums +woolen +woodlock +woodle +wonser +wombacher +wollschlager +wollen +wolfley +wolfer +wisse +wisell +wirsing +winstanley +winsley +winiecki +winiarski +winge +winesett +windell +winberry +willyard +willemsen +wilkosz +wilensky +wikle +wiford +wienke +wieneke +wiederhold +wiebold +widick +wickenhauser +whitrock +whisner +whinery +wherley +whedbee +wheadon +whary +wessling +wessells +wenninger +wendroth +wende +wellard +weirick +weinkauf +wehrman +weech +weathersbee +waterford +warton +warncke +warm +wardrip +walstrom +walks +walkowski +walcutt +waight +wai +wagman +waggett +wadford +vowles +vormwald +vondran +vohs +vitt +vitalo +viser +vinas +villena +villaneuva +villafranca +villaflor +vilain +vigilante +vicory +viana +vian +vial +verucchi +verra +venzke +venske +veley +veile +veeder +vaske +vasconez +vargason +varble +vanwert +vantol +vanscooter +vanmetre +vanmaanen +vanhise +vanetta +vaneaton +vandyk +vandriel +vandorp +vandewater +vandervelden +vanderstelt +vanderhoef +vanderbeck +vanbibber +vanalstine +vanacore +valdespino +vaill +vailes +vagliardo +ursini +urrea +urive +uriegas +umphress +ucci +uballe +tyrone +tynon +twiner +tutton +tudela +tuazon +troisi +tripplett +trias +trescott +treichel +tredo +tranter +tozer +toxey +tortorici +tornow +topolski +topia +topel +topalian +tonne +tondre +tola +toepke +tiu +tisdell +tiscareno +thornborrow +thomison +thilges +theuret +therien +thang +thagard +thacher +texter +terzo +teresa +tep +tenpenny +tempesta +teetz +teaff +tavella +taussig +tatton +tasler +tarrence +tardie +tarazon +tantillo +tanney +tankson +tangen +tamburo +takes +tabone +szilagyi +syphers +swistak +swiatkowski +sweigert +swayzer +swapp +svehla +sutphen +sutch +susa +surma +surls +sundermeyer +sundeen +sulek +suite +sughrue +sudol +sturms +stupar +stum +stuckman +strole +strohman +streed +strebeck +strausser +strassel +stpaul +storts +storr +stommes +stmary +stjulien +stika +stiggers +sthill +stevick +sterman +stephany +stepanek +stemler +stelman +stelmack +steinkamp +steinbock +stcroix +stcharles +staudinger +starry +stanly +stallsworth +stalley +stains +srock +spritzer +spracklin +spinuzzi +spidell +spice +speyrer +sperbeck +spendlove +speedy +speckman +spargur +spangenberg +spaid +sowle +soulier +sotolongo +sostre +sorey +sonier +somogyi +somera +solo +soldo +sofia +soderholm +snoots +snooks +snoke +snodderly +snide +snee +smoke +smithhart +smillie +smay +smallman +sliwinski +slentz +sledd +slager +skogen +skog +skarda +skalicky +siwek +sitterson +sisti +sissel +sis +sinopoli +similton +simila +simenson +silvertooth +silos +siggins +sieler +siburt +sianez +shurley +shular +shuecraft +shreeves +shon +shollenberger +shoen +shishido +shipps +shipes +shinall +sherfield +shawe +sharrett +sharrard +shankman +shan +sham +sessum +serviss +servello +serice +serda +semler +semenza +selmon +sellen +seley +seidner +seib +sehgal +seelbach +sedivy +sebren +sebo +seanez +seagroves +seagren +seagrave +seabron +schwertner +schwegel +schwarzer +schrunk +schriefer +schreder +schrank +schopp +schonfeld +schoenwetter +schnall +schnackenberg +schnack +schmutzler +schmierer +schmidgall +schlup +schloemer +schlitt +schermann +scherff +schellenberg +schain +schaedler +schabel +scaccia +saye +saxman +saurez +sasseen +sasnett +sas +sarti +sarra +sarber +saran +santoy +santeramo +sansoucy +sando +sandles +sandburg +sandau +samra +samaha +salon +salizar +salam +saindon +sagaser +saeteun +sadusky +sackman +sabater +saas +ruthven +ruszkowski +rusche +rumpf +ruhter +ruhenkamp +rufo +rudge +ruddle +rowlee +rowand +routhier +rougeot +rotramel +rotan +roswell +rosten +rosillo +rookard +roode +rongstad +rollie +roider +roffe +roettger +rodick +rochez +rochat +roads +rivkin +rivadeneira +riston +risso +rise +rinderknecht +riis +riggsbee +rifkin +rieker +riegle +riedy +richwine +richmon +ricciuti +riccardo +ricardson +rhew +revoir +revier +remsberg +remiszewski +rembold +rella +reinken +reiland +reidel +reichart +rehak +redway +rednour +redifer +redgate +redenbaugh +redburn +reap +readus +raybuck +rauhuff +rauda +ratte +rathje +rappley +rands +ramseyer +ramseur +ramsdale +ramo +ramariz +raitz +raisch +rainone +rahr +ragasa +rafalski +radunz +quenzer +queja +queenan +pyun +puz +putzier +puskas +purrington +puri +punt +pullar +pruse +pring +primeau +prevette +preuett +presto +prestage +pownell +pownall +potthoff +potratz +poth +poter +posthuma +posen +porritt +popkin +poormon +polidoro +poles +polcyn +pokora +poer +pluviose +plock +pleva +placke +pioli +pingleton +pinchback +pinch +pieretti +piccone +piatkowski +philley +phibbs +phay +phagan +pfund +peyer +pettersen +petter +petrucelli +petropoulos +petras +petix +pester +perks +pepperman +pennick +penado +pelot +pelis +peeden +pechon +peal +pazmino +patchin +pasierb +parran +parilla +pardy +parcells +paragas +paradee +papin +panko +pangrazio +pangelinan +pandya +pancheri +panas +palmiter +pallares +palinkas +palek +pagliaro +packham +pacitti +ozier +overbaugh +oursler +ouimette +otteson +otsuka +othon +osmundson +oroz +orgill +ordeneaux +orama +oppy +opheim +onkst +oltmanns +olstad +olofson +ollivier +olen +olejniczak +okura +okuna +okey +ohrt +oharra +oguendo +ogier +offermann +oetzel +oechsle +odor +odoherty +oddi +ockerman +occhiogrosso +obryon +obremski +nyreen +nylund +nylen +nyholm +nuon +nuanes +norrick +noris +nordell +norbury +nooner +nono +nomura +nole +nolden +nola +nofsinger +nocito +nobel +niedbala +niebergall +nicolini +nicole +nicklaus +nevils +neuburger +nemerofsky +nemecek +nazareno +nastri +nast +nancy +nagorski +myre +muzzey +mutton +mutschler +muther +musumeci +muranaka +muramoto +murad +murach +muns +munno +muncrief +mugrage +muecke +mozer +moyet +mowles +mottern +mosman +mosconi +morine +morge +moravec +morad +moneymaker +mones +moncur +monarez +molzahn +moglia +moesch +mody +modisett +mitnick +mithcell +mitchiner +mistry +misercola +mirabile +minvielle +mino +minkler +minifield +minichiello +mindell +minasian +milteer +millwee +millstein +millien +mikrut +mihaly +miggins +michard +mezo +metzner +mesquita +mervin +merriwether +merk +merfeld +mercik +mercadante +mention +menna +mendizabal +mender +members +melusky +melquist +mellado +meler +melendes +mekeel +meiggs +megginson +meck +mcwherter +mcwayne +mcsparren +mcrea +mcneff +mcnease +mcmurrin +mckeag +mchughes +mcguiness +mcgilton +mcelreath +mcelhone +mcelhenney +mceldowney +mccurtain +mccure +mccosker +mccory +mccormic +mccline +mccleave +mcclatchey +mccarney +mccanse +mcallen +mazzie +mazin +mazanec +mayette +mautz +mauser +maun +mattas +mathurin +mathiesen +massmann +masri +masias +mascolo +mascetti +mascagni +marzolf +maruska +martain +marta +marszalek +marolf +marmas +marlor +markwood +marines +marinero +marier +marich +marcom +marciante +marchman +marchio +marbach +manzone +mantey +mannina +manhardt +manfred +manaois +malmgren +mallonee +mallin +mallary +malette +makinson +makins +makarewicz +mainwaring +maida +maiava +magro +magouyrk +magett +maeder +madyun +maduena +maden +madeira +macnamara +mackins +mackel +macinnes +macia +macgowan +lyssy +lyerly +lyalls +lutter +lunney +luksa +ludeman +lucidi +lucci +lowden +lovier +loughridge +losch +lory +lorson +lorenzano +lorden +lorber +lopardo +loosier +loomer +longsdorf +longchamps +loncar +loker +logwood +loeffelholz +lockmiller +livoti +linford +linenberger +lindloff +lindenbaum +limoges +lilla +liley +lighthill +lightbourne +lieske +leza +levels +levandoski +leuck +lepere +leonhart +lenon +lemma +lemler +leising +leinonen +lehtinen +lehan +leetch +leeming +ledyard +ledwith +ledingham +leclere +leck +lebert +leandry +lazzell +layo +laye +laxen +lawther +lawn +lawerance +lavoy +lavertu +laverde +lauren +latouche +latner +lathen +last +laskin +lashbaugh +lascala +larroque +larick +laraia +laplume +lanzilotta +lannom +landrigan +landolt +landess +lancia +lamkins +lalla +lalk +lakeman +lakatos +laib +lahay +lagrave +lagerquist +lafoy +lafleche +lader +labrada +kwiecinski +kutner +kunshier +kulakowski +kujak +kuehnle +kubisiak +krzyminski +krugh +krois +kritikos +krill +kriener +krewson +kretzschmar +kretz +kresse +kreiter +kreischer +krebel +kraut +krans +kraling +krahenbuhl +kouns +kotson +kossow +kopriva +konkle +kolter +kolk +kolich +kohner +koeppen +koenigs +kock +kochanski +kobus +knowling +knouff +knoerzer +knippel +kloberdanz +kleinert +klarich +klaassen +kizzie +kisamore +kirn +kiraly +kipps +kinson +kinneman +kington +kine +kimbriel +kille +kick +kibodeaux +khamvongsa +keylon +kever +keser +kertz +kercheval +kenneth +kendrix +kendle +ken +kempt +kemple +keesey +keats +keatley +kazmierski +kazda +kazarian +kawashima +katsch +kasun +kassner +kassem +kasperski +kasinger +kaschak +karels +kantola +kana +kamai +kalthoff +kalla +kalani +kahrs +kahanek +kacher +jurasek +juniper +jungels +jukes +juelfs +judice +juda +ju +josselyn +jonsson +jonak +joens +jobson +jegede +jee +jeanjacques +jaworowski +jaspers +jannsen +janner +jankowiak +jank +janiak +jackowski +jacklin +jabbour +iyer +iveson +ivan +isner +iniquez +ingwerson +ingber +ina +imbrogno +ille +ikehara +iannelli +hyson +huxford +huseth +hurns +hurney +hurles +hunnings +humbarger +hulan +huisinga +hughett +hughen +hudler +hubiak +hricko +how +hoversten +hottel +hosaka +horsch +hormann +hordge +honzell +homburg +holten +holme +hollopeter +hollinsworth +hollibaugh +holberg +hohmann +hoenstine +hodell +hodde +hobert +hives +hiter +hirko +hipolito +hinzmann +hinrichsen +hinger +hincks +hilz +hilborn +highley +higashi +hieatt +hicken +heverly +hesch +hervert +hershkowitz +herreras +hermanns +herget +henriguez +hennon +hengel +helmlinger +helmig +helen +heldman +heizer +heinitz +heifner +heidorn +heglin +heffler +hebner +heathman +heaslip +hazlip +haymes +hayase +hawver +haw +havermale +havas +hauber +hashim +hasenauer +harvel +hartney +hartel +harsha +harpine +harkrider +harkin +harer +harclerode +hanzely +hanni +hannagan +hampel +hammerschmidt +hamar +hallums +hallin +hainline +haid +haggart +hafen +haer +hadiaris +hadad +hackford +habeeb +guymon +guttery +gunnett +gull +guillette +guiliano +guilbeaux +guiher +guignard +guerry +gude +gucman +guadian +grzybowski +grzelak +grussendorf +grumet +gruenhagen +grudzinski +ground +grossmann +grof +grisso +grisanti +griffitts +griesbaum +grella +gregston +graveline +grandusky +grandinetti +gramm +goynes +gowing +goudie +gosman +gort +gorsline +goralski +goodstein +goodroe +goodlin +goodheart +goodhart +gonzelez +gonthier +goldsworthy +goldade +goettel +goerlitz +goepfert +goehner +goben +gobeille +glock +gliem +gleich +glasson +glascoe +gladwell +giusto +girdner +gipple +giller +giesing +giammona +ghormley +germon +geringer +gergely +gerberich +gepner +gens +genier +gemme +gelsinger +geigle +gebbia +gayner +gavitt +gatrell +gastineau +gasiewski +gascoigne +garro +garin +ganong +ganga +galpin +gallus +galizia +gajda +gahm +gagen +gaffigan +furno +furnia +furgason +fronczak +frishman +friess +frierdich +fresh +freestone +franta +frankovich +fors +forres +forrer +floris +florido +floria +flis +flicek +flens +flegal +flamenco +finkler +finkenbinder +finefrock +filter +filpo +filion +fierman +fieldman +ferreyra +fernendez +fergeson +fera +fencil +feith +feight +federici +federer +fechtner +feagan +fausnaugh +faubert +fata +farman +farinella +fantauzzi +fanara +falso +falardeau +fagnani +fabro +excell +ewton +evey +everetts +eve +evarts +etherington +estremera +estis +estabrooks +essig +esplin +espenschied +ernzen +erich +eppes +eppard +entwisle +emmi +emison +elison +elguezabal +eledge +elbaz +eisler +eiden +eichorst +eichert +egle +eggler +eggimann +edey +eckerman +echelberger +ebbs +ebanks +dziak +dyche +dyce +dusch +duross +durley +durate +dunsworth +dumke +dulek +duhl +duggin +dufford +dudziak +ducrepin +dubree +dubre +dubie +dubas +droste +drisko +drewniak +doxtator +dowtin +downum +doubet +dottle +dosier +doshi +dorst +dorset +dornbusch +doren +donze +donica +domanski +domagala +dohse +doerner +doerfler +doble +dobkins +dilts +digiulio +digaetano +dietzel +diddle +dickel +dezarn +devoy +devoss +devonshire +devon +devilla +devere +deters +desvergnes +deshay +desena +deross +der +depedro +densley +demorest +demore +demora +demirjian +demerchant +dematteis +demateo +delgardo +delfavero +delaurentis +delamar +delacy +deitrich +deisher +degracia +degraaf +defries +defilippis +decoursey +debruin +debiasi +debar +dearden +dealy +dayhoff +davino +darvin +darrisaw +darbyshire +daquino +daprile +danial +danh +danahy +dalsanto +dallavalle +daine +dagel +dadamo +dacy +dacunha +dabadie +czyz +cutsinger +curney +cuppernell +cunliffe +cumby +cullop +cullinane +cugini +cudmore +cuda +cucuzza +cuch +crumby +crouser +crock +critton +critchley +cristy +cremona +cremar +crehan +creary +crasco +crall +crabbe +cozzolino +cozier +coyner +couvillier +counterman +coulthard +coudriet +cottom +corzo +cornutt +corkran +cords +corda +copelin +coonan +consolo +conrow +conran +connerton +conkwright +condren +comp +comly +comisky +colli +collet +colello +colbeck +colarusso +coiner +cohron +codere +cocks +cobia +cly +cluster +clure +clowser +clovis +clingenpeel +clenney +clendaniel +clemenson +cleere +cleckler +claybaugh +clason +cirullo +ciraulo +ciolek +ciampi +christopherse +christophe +chovanec +chopra +chol +chiem +chestnutt +chesterman +chernoff +chermak +chelette +checketts +charpia +charo +chargois +champman +challender +chafins +cerruto +celi +cea +cazenave +cay +cavaluzzi +cauthon +caudy +catino +caterina +catano +castell +cassaro +cassarino +carrano +carozza +carow +carmickle +carlyon +carlew +cardena +caputi +capley +capalbo +canseco +candella +canal +campton +camposano +calleros +calleja +callegari +calica +calarco +calais +caillier +cahue +cadenhead +cadenas +cabera +buzzo +busto +bussmann +busenbark +burzynski +bursley +bursell +burle +burkleo +burkette +burczyk +bumstead +bullett +buikema +buenaventura +buege +buechel +budreau +budhram +bucknam +brye +brushwood +brumbalow +brulotte +bruington +bruderer +browns +brougher +bromfield +broege +brodhead +brocklesby +broadie +brizuela +britz +brisendine +brilla +briggeman +brierton +bridgeford +breyfogle +brevig +breuninger +bresse +bresette +brelsford +breitbach +bread +brayley +braund +branscom +brando +brandner +brahm +braboy +brabble +bozman +boyte +boynes +boyken +bowell +bowan +boutet +bouse +boulet +boule +bottcher +bosquez +borrell +boria +bordes +borchard +bonson +bonino +bonas +bonamico +bolstad +bolser +bollis +bolich +bolf +boker +boileau +bohac +bogucki +bogren +boeger +bodziony +bodo +bodley +boback +blyther +blight +blenker +blazina +blase +blamer +blacknall +blackmond +bitz +biser +biscardi +binz +bilton +billotte +billafuerte +bigford +biegler +bibber +bhandari +beyersdorf +bevelle +bettendorf +bessard +bertsche +berne +berlinger +berish +beranek +bentson +bentsen +benskin +benoy +benoist +benitz +belongia +belmore +belka +belen +beitzel +beiter +beitel +behrns +beckworth +becka +beaudion +beary +beare +beames +beabout +beaber +bazzano +bazinet +baucum +batrez +baswell +bastos +bascomb +bartha +barstad +barrilleaux +barretto +barresi +barona +barkhurst +barke +bardales +barczak +barca +barash +banfill +bambino +balonek +balmes +ballon +balko +balestrieri +baldino +baldelli +baken +baiza +bahner +baek +badour +badman +badley +badia +backmon +bacich +bacca +ayscue +ayo +aynes +austen +ausiello +auringer +auiles +aspinwall +askwith +artiga +arroliga +arns +arman +arellanes +aracena +antwine +antuna +anselmi +ansel +annen +angelino +angeli +angarola +andrae +amparo +amodio +amie +ameen +alwine +alverio +altro +altobello +altemus +alquicira +ally +allphin +allemand +allam +alessio +akpan +akerman +aiona +aikman +agyeman +agredano +adamik +adamczak +acrey +achilles +acevado +abu +abreo +abrahamsen +abild +zwicker +zweig +zuvich +zumpano +zuluaga +zubek +zornes +zoglmann +ziminski +zimbelman +zhanel +zenor +zechman +zauner +zamarron +zaffino +yusuf +ytuarte +yoke +yett +yerkovich +yelder +yaw +yasuda +yapp +yankee +yaden +yackley +yaccarino +xia +wytch +wyre +wussow +worthing +wormwood +wormack +worlds +wordsworth +wordell +woodroof +woodington +woodhams +wooddell +wollner +wojtkowski +wojcicki +wogan +wlodarczyk +wixted +withington +withem +wisler +wirick +winterhalter +winski +winne +winemiller +wimett +wiltfong +willibrand +willes +wilkos +wilbon +wiktor +wiggers +wigg +wiegmann +wickliff +wiberg +whittler +whittenton +whitling +whitledge +whitherspoon +whiters +whitecotton +whitebird +wheary +wetherill +westmark +westaby +wertenberger +wentland +wenstrom +wenker +wellen +weier +wegleitner +wedekind +wawers +wassel +warehime +wank +wandersee +waltmon +waltersheid +walbridge +wakely +wakeham +wajda +waithe +waidelich +wahler +wahington +wagster +wadel +vuyovich +vuolo +vulich +vukovich +volmer +vollrath +vollbrecht +vogelgesang +voeller +vlach +vivar +vitullo +vitanza +visker +visalli +viray +vinning +viniard +villapando +villaman +vier +viar +viall +verstraete +vermilya +verdon +venn +velten +velis +vasey +vanoven +vanorder +vanlue +vanheel +vanderwoude +vanderheide +vandenheuvel +vandenbos +vandeberg +vandal +vanblarcom +vanaken +vanacker +vallian +valine +valent +vaine +vaile +vadner +uttech +urioste +urbanik +unrath +unnasch +underkofler +uehara +udy +tyrer +tyburski +twaddle +turntine +tunis +tullock +trunk +tropp +troilo +tritsch +triola +trigo +tribou +tribley +tri +trethewey +tress +trela +treharne +trefethen +trayler +trax +traut +trang +tranel +trager +traczyk +towsley +torrecillas +tornatore +tork +torivio +toriello +tooles +toodle +tomme +tolosa +tolen +toca +titterington +tipsword +tinklenberg +tim +tigney +tigert +thygerson +thurn +thur +threats +thorstad +thornberg +thoresen +thomaston +tholen +thicke +theiler +thebeau +theaux +thaker +tewani +teufel +tetley +terrebonne +terrano +terpening +telly +tela +teig +teichert +tegethoff +teele +tatar +tashjian +tarte +tanton +tanimoto +tamimi +tamas +talman +taal +szydlowski +szostak +swoyer +swerdlow +sweeden +sweda +swanke +swander +swackhammer +suyama +suriano +suri +surdam +suprenant +sundet +summerton +sult +suleiman +suffridge +suby +stych +studeny +stubbins +strupp +struckman +strief +strictland +stremcha +strehl +stramel +stoy +stoutamire +storozuk +stordahl +stopher +stolley +stolfi +stoeger +stockhausen +stjulian +stivanson +stinton +stinchfield +stigler +stieglitz +stgermaine +steuer +steuber +steuart +stepter +stepnowski +stepanian +steimer +stefanelli +stebner +stears +steans +stayner +staubin +statz +stasik +starn +starmer +stargel +stanzione +stankovich +stan +stamour +staib +stadelman +stadel +stachura +squadrito +sprinkles +springstead +spragg +spigelmyer +spieler +spielberg +spaur +sovocool +sovereign +soundara +soulia +souffrant +sos +sorce +sonkin +sodhi +soble +sniffen +smouse +smittle +smithee +smedick +smaller +slowinski +slovacek +slominski +slice +skowronek +skokan +skanes +sivertson +sinyard +sinka +sinard +simonin +simonian +simmions +silcott +silberg +siefken +siddon +shuttlesworth +shubin +shubeck +shiro +shiraki +shipper +shina +shilt +shikles +shideler +shenton +shelvey +shellito +shelhorse +shawcroft +shatto +shanholtzer +shamonsky +shall +shadden +seymer +seyfarth +sewer +setlock +servant +serratos +serr +sepulueda +senay +semmel +semans +selvig +selkirk +selk +seligson +seldin +seiple +seiersen +seidling +seidensticker +secker +searson +scordo +scollard +scoggan +scobee +sciandra +scialdone +schwimmer +schwieger +schweer +schwanz +schutzenhofer +schuetze +schrodt +schriever +schriber +schremp +schrecongost +schraeder +schonberg +scholtz +scholle +schoettle +schoenemann +schoene +schnitker +schmuhl +schmith +schlotterbeck +schleppenbach +schlee +schickel +schibi +schein +scheide +scheibe +scheib +schaumberg +schardein +schaalma +scantlin +scantlebury +sayle +sausedo +saurer +sassone +sarracino +saric +sanz +santino +santarpia +santano +santaniello +sangha +sandvik +sandoral +sandobal +sandercock +sanantonio +salviejo +salsberry +salois +salazer +sagon +saglibene +sagel +sagal +saetern +saefong +sadiq +sabori +saballos +rygiel +rushlow +runco +rulli +ruller +ruffcorn +ruess +ruebush +rudlong +rudin +rudgers +rudesill +ruderman +rucki +rucinski +rubner +rubinson +rubiano +ruan +roznowski +rozanski +rowson +rower +rounsaville +roudabush +rotundo +rothell +rotchford +rosiles +roshak +rosetti +rosenkranz +rorer +rollyson +rokosz +rojek +roitman +rohrs +rogel +roewe +rodriges +rodocker +rodgerson +rodan +rodak +rocque +rochholz +rochel +robicheau +robbinson +roady +ritchotte +ripplinger +rippetoe +ringstaff +ringenberg +rinard +rigler +rightmire +riesen +riek +ridges +richner +richberg +riback +rial +rhyner +rhees +resse +renno +renee +rendleman +ren +reisz +reisenauer +reinschmidt +reins +reinholt +reinard +reifsnyder +rehfeld +reha +regester +reffitt +redler +rediske +reckner +reckart +rebolloso +rebollar +reasonover +reasner +reaser +reano +reagh +raval +ratterman +ratigan +rater +rasp +raneses +randolf +ramil +ramdas +ramberg +rajaniemi +rail +raid +raggio +ragel +ragain +rade +radaker +racioppi +rabinovich +quickle +quertermous +queal +quartucci +quander +quain +pynes +putzel +purl +pulizzi +pugliares +prusak +prueter +protano +propps +primack +prieur +presta +preister +prawl +pratley +prairie +pozzo +powless +povey +pottorf +pote +postley +porzio +ports +portney +ponzi +pontoriero +ponto +pont +poncedeleon +polimeni +polhamus +pole +polan +poetker +poellnitz +podgurski +plotts +pliego +plaugher +plantenberg +plair +plagmann +pizzitola +pittinger +pitcavage +pischke +piontek +pintar +pinnow +pinneo +pinley +pingel +pinello +pimenta +pillard +piker +pietras +piere +picasso +phillps +pfleger +pfahl +pezzuti +petruccelli +petrello +peteet +pescatore +peruzzi +perusse +perotta +perona +perini +peretti +perelman +perciful +peppin +pennix +pennino +penalosa +pemble +pelz +peltzer +pelphrey +pelote +pellum +pellecchia +pelikan +peitz +peels +pebworth +peary +pawlicki +pavelich +paster +pasquarella +paskey +paseur +paschel +parslow +parrow +parrot +parlow +parlett +parler +pargo +parco +paprocki +panepinto +panebianco +pandy +pandey +pamphile +pamintuan +pamer +paluso +paleo +paker +pagett +paczkowski +ozburn +ovington +overmeyer +ouellet +osterlund +oslin +oseguera +osaki +orrock +ormsbee +orlikowski +organista +oregan +orebaugh +orabuena +openshaw +ontiveroz +ondo +omohundro +ollom +ollivierre +olivencia +oley +olazabal +okino +oki +offenberger +oestmann +ocker +obar +oakeson +nuzum +nurre +nowinski +novosel +norquist +nordlie +noorani +nonnemacher +nolder +njoku +niznik +niwa +niss +ninneman +niner +nimtz +niemczyk +nieder +nicolo +nichlos +niblack +newyear +newtown +newill +newcom +neverson +neuhart +neuenschwande +nestler +nenno +nejman +neiffer +neidlinger +neglia +needs +nearing +nazarian +navor +nary +narayan +nangle +nakama +naish +naik +nadolski +muscato +murphrey +murdick +murchie +muratalla +munnis +mundwiller +muncey +munce +mullenbach +mulhearn +mulcahey +muhammed +muchow +mountford +moudry +mosko +morvay +morrical +morr +moros +mormann +morgen +moredock +morden +mordarski +moravek +morandi +morale +mooradian +montejo +montegut +montan +monsanto +monford +moncus +molinas +molek +mohd +moehrle +moehring +modzeleski +model +modafferi +moala +moake +miyahira +mitani +mischel +minges +minella +mimes +milles +milbrett +milanes +mikolajczyk +mikami +meucci +metler +methven +metge +messmore +messerschmidt +mesrobian +meservey +merseal +menor +menon +menear +melott +melley +melfi +meinhart +megivern +megeath +meester +meeler +meegan +medoff +medler +meckley +meath +mearns +mcquigg +mcpadden +mclure +mckellips +mckeithen +mcglathery +mcginnes +mcghan +mcdonel +mccullom +mccraken +mccrackin +mcconathy +mccloe +mcclaughry +mcclaflin +mccarren +mccaig +mcaulay +mcaffee +mazzuca +maytubby +mayner +maymi +mattiello +matthis +matthees +matthai +mathiason +mastrogiovann +masteller +mashack +marucci +martorana +martiniz +marter +martellaro +marsteller +marris +marrara +maroni +marolda +marocco +maritn +margo +maresh +maready +marchione +marbut +maranan +maragno +mapps +manrriquez +manny +mannis +manni +mangina +manganelli +mancera +mamon +maloch +mallozzi +maller +majchrzak +majano +mainella +mahanna +maertens +madon +macumber +macioce +machuga +machlin +machida +machala +mabra +lynne +lybbert +luvert +lutts +luttrull +lupez +lukehart +ludewig +luchsinger +loyal +lovecchio +louissaint +loughney +lottie +lostroh +lose +lorton +lorette +lopeman +loparo +longs +loner +londo +lombera +lokietek +loiko +lohrenz +lohan +lofties +locklar +lockaby +lobianco +loader +loa +llano +livesey +litster +liter +liske +linsky +linne +lindbeck +limes +licudine +leyua +levie +letterman +leonelli +lenzo +lenze +lents +leitao +leif +leidecker +leibold +lehne +legan +legacy +lefave +leehy +ledue +lecount +lecea +leadley +lazzara +lazcano +lazalde +layer +lavi +lavancha +lavan +lav +laude +latu +latty +lato +larranaga +lapidus +lapenta +langridge +langeveld +langel +lanes +landowski +landgren +landfried +lame +lamattina +lallier +lairmore +lahaie +lagazo +lagan +lafoe +lafluer +laflame +lafevers +lada +lacoss +lachney +labreck +labreche +labay +laa +kwasnik +kuzyk +kutzner +kushnir +kusek +kurtzman +kurian +kulhanek +kuklinski +kuh +kueny +kuczynski +kubitz +kuang +kruschke +krous +krompel +kritz +krimple +kriese +krenzer +kreis +kratzke +krane +krage +kraebel +kozub +kozma +kouri +koudelka +kotcher +kotas +kostic +kosh +kosar +kopko +kopka +kooy +konigsberg +konarski +kolmer +kohlmeyer +kobbe +knoop +knoedler +knocke +knipple +knippenberg +knickrehm +kneisel +kluss +klossner +klipfel +klawiter +klasen +kittles +kissack +kirtland +kirschenmann +kirckof +kiphart +kinstler +kinion +kilton +killman +kiehl +kief +kett +kesling +keske +kerstein +kepple +keneipp +kempson +kempel +kelp +kehm +kehler +keh +keeran +keedy +kebert +keast +kearbey +kawaguchi +kaupu +kauble +katzenbach +kate +katcher +kartes +karpowicz +karpf +karen +karban +kanzler +kanarek +kamper +kaman +kalsow +kalafut +kaeser +kaercher +kaeo +kaeding +jurewicz +julson +jozwick +jollie +johnigan +johll +jochum +jewkes +jestes +jeska +jersey +jereb +jayson +jaurez +jarecki +jansma +janosik +jandris +jamin +jahr +jacot +jabs +ivens +itson +isenhower +iovino +ionescu +ingrum +ingels +inch +imrie +imlay +ihlenfeld +ihde +igou +ibach +huyett +hurry +huppe +hultberg +hullihen +hugi +hueso +huesman +hsiao +hronek +hovde +housewright +houlahan +hougham +houchen +hostler +hoster +hosang +hornik +hornes +horio +honyumptewa +honeyman +honer +hommerding +holsworth +hollobaugh +hollinshead +hollands +hollan +holecek +holdorf +hokes +hogston +hoesly +hodkinson +hodgman +hodgens +hochstedler +hochhauser +hobbie +hoare +hnat +hiss +hiskey +hirschy +hinostroza +hink +hing +hillmer +hillian +hillerman +hietala +hierro +hickling +hickingbottom +heye +heubusch +hesselschward +herriot +hernon +hermida +hermans +hentschel +henningson +henneke +henk +heninger +heltsley +helmle +helminiak +helmes +hellner +hellmuth +helke +heitmeyer +heird +heinle +heinicke +heinandez +heimsoth +heimlich +heibel +hegyi +heggan +hefel +heeralall +hedrington +heacox +hazlegrove +hazelett +haymore +havenhill +hautala +hascall +harvie +hartrick +hartling +harrer +harles +hargenrader +hanshew +hanly +hankla +hanisch +hancox +hammann +hambelton +halseth +hallisey +halleck +hallas +haisley +hairr +hainey +hainer +hailstock +haertel +guzek +guyett +guster +gussler +gurwitz +gurka +gunsolus +guinane +guiden +gugliotti +guevin +guevarra +guerard +gudaitis +guadeloupe +gschwind +grupe +grumbach +gruenes +gruenberg +grosser +grom +grodski +groden +grizzel +gritten +griswald +grishaber +grinage +grimwood +grims +griffon +griffies +gribben +grew +gressley +gren +greenstreet +grealish +gravett +grantz +granfield +granade +gowell +gossom +gorsky +goring +goodnow +goodfriend +goodemote +golob +gollnick +golladay +goldwyn +goldsboro +golds +goldrick +gohring +gohn +goettsch +goertzen +goelz +godinho +goans +glumac +gleisner +gleen +glassner +glanzer +gladue +gjelaj +givhan +girty +girone +girgenti +giorgianni +gilpatric +gillihan +gillet +gilbar +gierut +gierhart +gibert +gianotti +giannetto +gianelli +giambanco +gharing +geurts +gettis +gettel +gest +germani +gerdis +gerbitz +geppert +gennings +gemmer +gelvin +gellert +gehler +geddings +gearon +geach +gazaille +gayheart +gauld +gaukel +gaudio +gato +gathing +gasque +garstka +garsee +garringer +garofano +garo +garnsey +garigen +garcias +garbe +ganoung +ganfield +ganaway +gamero +galuska +galster +gallacher +galinski +galimi +galik +galeazzi +galdo +galdames +galas +galanis +gaglio +gaff +gaeddert +gadapee +fussner +furukawa +fuhs +fuerte +fuerstenberg +fryrear +fruits +froese +fringer +frieson +friesenhahn +frieler +friede +freymuth +freyman +freudenberg +freman +fredricksen +frech +frasch +frantum +frankin +franca +frago +fragnoli +fouquet +fossen +foskett +forner +formosa +formisano +forget +fooks +fons +folino +flott +floor +flesch +flener +flemmons +flattery +flanagin +flamino +flamand +fitzerald +findling +filsinger +fillyaw +fillinger +fiechter +ferre +ferdon +feldkamp +fazzio +favia +faulconer +faughnan +faubel +fassler +faso +farrey +farrare +farnworth +farland +fairrow +faille +faherty +fagnant +fabula +fabbri +eylicio +esteve +estala +espericueta +escajeda +erlich +equia +epson +enrriquez +enomoto +enmon +engemann +emmerson +emmel +emler +emilio +elstad +ellwein +ellerson +eliott +eliassen +elchert +eisenbeis +eisel +eikenberry +eichholz +ehmer +edris +edgerson +echenique +eberley +eans +dziuk +dykhouse +dworak +dutt +dupas +duntz +dunshee +dunovant +dunnaway +dummermuth +duerson +duddy +ducotey +duchon +duchesneau +ducci +dubord +duberry +dubach +drummonds +droege +drish +drier +drexel +dresch +dresbach +drenner +drechsler +dowen +dotter +dosreis +doser +dorward +dorin +dorf +door +domeier +doler +doleman +dolbow +dolbin +dobrunz +dobransky +dobberstein +dlouhy +diosdado +dingmann +dimmer +dimarino +dimaria +dilly +dillenburg +dilaura +dieken +dickhaus +dibbles +dibben +diamante +dewilde +dewaard +devich +devenney +devaux +dettinger +desroberts +dershem +dersch +derita +derickson +depina +deorio +deoliveira +denzler +dentremont +denoble +demshar +demond +demint +demichele +demel +delzer +delval +delorbe +delli +delbridge +delanoy +delancy +delahoya +dekle +deitrick +deis +dehnert +degrate +defrance +deetz +deeg +decoster +decena +dearment +daughety +datt +darrough +danzer +dante +danielovich +dandurand +dancause +dalo +dalgleish +daisley +daft +dadlani +daddona +daddio +dacpano +cyprian +cutillo +cush +curz +curvin +cuna +cumber +cullom +cudworth +cubas +crysler +cryderman +crummey +crumbly +crookshanks +croes +criscione +crimes +crespi +cresci +creaser +craton +cramp +cradle +cowin +cowdrey +coutcher +cotterman +cosselman +cosgriff +cortner +corsini +corporan +corniel +cornick +cordts +cordial +copening +coolman +connick +conlisk +conelli +common +comito +colten +colling +colletta +coldivar +colclasure +colantuono +colaizzi +coggeshall +cockman +cockfield +cobourn +cobo +cobarrubias +clyatt +cloney +clonch +climes +cleckner +clearo +claybourne +clavin +claridge +claffey +ciufo +cisnero +cipollone +cieslik +ciejka +cichocki +cicchetti +cianflone +chrusciel +christesen +chmielowiec +chirino +chillis +chihuahua +chhoun +chevas +chehab +chaviano +chavaria +chasten +charbonnet +chanley +champoux +champa +chalifoux +cerio +cedotal +cech +cavett +cavendish +catoire +castronovo +castellucci +castellow +castaner +casso +cassels +cassatt +cassar +cashon +cartright +carros +carrisalez +carrig +carrejo +carnicelli +carnett +carlise +carline +carhart +caren +cardova +cardell +carchi +caram +caquias +capper +capizzi +capano +cannedy +campese +calvello +callon +callins +callies +callicutt +calix +calin +califf +calderaro +caldeira +cadriel +cadmus +cadman +caccamise +buys +buttermore +butay +bustamente +busa +burmester +burkard +burhans +burgert +bure +burdin +bullman +bulin +buelna +buehner +budin +buco +buckhanon +bryars +brutger +brus +brumitt +brum +bruer +brucato +broyhill +broy +brownrigg +brownie +brossart +brookings +broden +brocklehurst +brockert +bristo +briskey +brisbane +bringle +bries +briar +bressman +bren +branyan +brands +bramson +brammell +brallier +bozich +boysel +bowthorpe +bowron +bowin +boutilier +boulos +boullion +boughter +bottiglieri +borruso +borrow +borreggine +borns +borkoski +borghese +borenstein +boran +bora +booton +bonvillain +bonini +bong +bonello +bolls +boitnott +boike +bohnet +bohnenkamp +bohmer +boeson +boeneke +bodey +bocchino +bobrowski +bobic +bluestein +bloomingdale +blogg +blewitt +blenman +bleck +blaszak +blankenbeckle +blando +blanchfield +blancato +blalack +blakenship +blackett +bisping +birkner +birckhead +bingle +bineau +billiel +bigness +bies +bierer +bhalla +beyerlein +bew +betesh +besler +berzins +bertalan +berntsen +berna +bergo +berganza +bennis +benney +benkert +benjamen +benincasa +bengochia +bendle +bendana +benchoff +benbrook +belsito +belshaw +belinsky +belak +bela +beigert +beidleman +behen +befus +beel +beebee +bedonie +beckstrand +beckerle +beato +bears +bauguess +baughan +bauerle +battis +batis +bastone +bastille +bassetti +bashor +bary +bartunek +bartoletti +barro +barno +barnicle +barlage +barkus +barkdull +bari +barcellos +barbarino +baranski +baranick +bankert +banchero +ban +bambrick +bamberg +bambenek +balthrop +balmaceda +ballman +balistrieri +balcomb +balboni +balbi +bakshi +bagner +bagent +badasci +bacot +bache +babu +babione +babic +babers +babbs +awkward +avitabile +avers +avena +avance +ausley +auker +audas +aud +aubut +athearn +atcheson +astorino +asplund +aslanian +askari +ashmead +asby +asai +arterbury +artalejo +arqueta +arquero +arostegui +arnell +armeli +arista +arender +arca +arballo +aprea +applen +applegarth +apfel +antonello +antolin +antkowiak +angis +angione +angerman +angelilli +andujo +andrick +anderberg +amigon +ambers +amalfitano +alviso +alvez +altice +altes +almarez +allton +allston +allgeyer +allegretti +aliaga +algood +alberg +albarez +albaladejo +akre +aitkin +ahles +ahlberg +agnello +adrien +adinolfi +adamis +abramek +abolt +abitong +zurich +zurawski +zufall +zubke +zizzo +zipperer +zinner +zinda +ziller +zill +zevallos +zesati +zenzen +zentner +zellmann +zelinsky +zboral +zarcone +zapalac +zaldana +zakes +zaker +zahniser +zacherl +zabawa +zabaneh +yum +youse +youree +younis +yorty +yonce +yero +yerkey +yeck +yeargan +yauch +yashinski +yambo +xiang +wrinn +wrightsman +worton +wortley +worland +woolworth +woolfrey +woodhead +woltjer +wolfenden +wolden +wolchesky +wojick +woessner +witwer +witters +witchard +wissler +wisnieski +wisinski +winnike +winkowski +winkels +wingenter +wineman +winegardner +wimpy +wilridge +wilmont +willy +willians +williamsen +wilhide +wilhelmsen +wilhelmi +wildrick +wilden +wiland +wiker +wigglesworth +wiebusch +widdowson +wiant +wiacek +whittet +whitter +whitelock +whiteis +whiley +westrope +westpfahl +westin +wessman +wessinger +wesemann +wesby +wertheimer +weppler +wenke +wengler +wender +welp +weitzner +weissberg +weisenborn +weipert +weiman +weidmann +wehrsig +wehrenberg +weemes +weeman +wayner +waston +wasicek +wascom +wasco +warmath +warbritton +waltner +wallenstein +waldoch +waldal +wala +waide +wadlinger +wadhams +vullo +voorheis +vonbargen +volner +vollstedt +vollman +vold +voge +vittorio +virtue +virginia +violett +viney +vinciguerra +vinal +villata +villarrvel +vilanova +vigor +vigneault +view +vielma +veyna +vessella +versteegh +verderber +venier +venice +venditti +velotta +vejarano +veil +vecchia +vecchi +vastine +vasguez +varella +vanry +vannah +vanhyning +vanhuss +vanhoff +vanhoesen +vandivort +vandevender +vanderlip +vanderkooi +vandebrink +vancott +vallien +vallas +vallandingham +valiquette +valasek +vahey +vagott +uyematsu +urbani +uran +upp +uno +union +umbach +udo +tyon +tyma +twyford +twombley +twohig +tutterrow +turnes +turkington +turchi +tunks +tumey +tumbaga +tuinstra +tsukamoto +tschetter +trussel +trubey +trovillion +troth +trostel +tron +trinka +trine +tribbey +triarsi +trevor +treto +trautz +tragesser +tooman +toolson +tonozzi +tomkiewicz +tomb +tomasso +tolin +tolfree +toelle +tisor +tiry +tinstman +timmermann +tillie +tickner +tiburcio +thunberg +thronton +thompsom +theil +thayne +thaggard +teschner +tensley +tenery +tempest +tellman +tellado +telep +teigen +teator +teall +tayag +tavis +tattersall +tassoni +tarshis +tappin +tappe +tansley +talone +talford +tainter +taha +taguchi +tacheny +tabak +szymczyk +szwaja +szopinski +sze +syvertsen +swogger +switcher +swist +swilling +swierczek +swiech +swickard +swiatek +swezey +swepson +sweezy +swaringen +swanagan +swailes +swade +sveum +svenningsen +svec +suttie +supry +sunga +summerhill +summars +sulit +stys +stutesman +stupak +stumpo +stuller +stuekerjuerge +stuckett +stuckel +stuchlik +stuard +strutton +strop +stromski +stroebel +strehlow +strause +strano +straney +stradling +stoyle +stormo +stopyra +stoots +stoop +stonis +stoltenburg +stoiber +stoessel +stitzer +stien +stichter +stezzi +stewert +stepler +steinkraus +stegemann +steeples +steenburg +steeley +staszak +stasko +starkson +stanwick +stanke +stanifer +stangel +stain +stai +squiers +sprout +springsteen +spraglin +spragins +spraberry +spoelstra +spisak +spirko +spille +spidel +speyer +speroni +spenst +speak +spartz +sparlin +sparacio +spaman +spainhower +sow +souers +souchet +sosbee +sorn +sorice +sorbo +soqui +somer +solon +soehl +sodergren +socorro +sobie +smucker +smsith +smoley +smolensky +smolenski +smolder +smethers +slusar +slowey +slonski +slemmons +slatkin +slates +slappy +slaney +slagter +slacum +skutnik +skrzypek +skibbe +sjostrom +sjoquist +sivret +sitko +sisca +sinnett +sineath +simoni +simar +simao +silvestro +silleman +silkwood +silha +silfies +silberhorn +silacci +sigrist +sieczkowski +sieczka +shure +shulz +shugrue +shrode +shown +shovlin +shortell +shonka +shiyou +shiraishi +shiplett +sheu +shermer +sherick +sheng +sheeks +shed +sharron +shantz +shakir +shaheed +shadoan +shadid +shackford +shabot +seung +seufert +setty +setters +servis +server +serres +serrell +serpico +serpas +serafine +sensenig +senft +semenec +semen +semas +semaan +selvera +sellmeyer +sek +segar +seever +seeney +seeliger +seehafer +seebach +sebben +seaward +seary +searl +searby +scotland +scordino +scolieri +scolaro +schwiebert +schwartze +schwaner +schuur +schupbach +schumacker +schum +schudel +schubbe +schroader +schramel +schollmeyer +schoenherr +schoeffler +schoeder +schnurr +schnorr +schneeman +schnake +schnaible +schmaus +schlotter +schinke +schimming +schimek +schikora +scheulen +scherping +schermer +scherb +schember +schellhase +schedler +schanck +schaffhauser +schaffert +schadler +scarola +scarfo +scarff +scantling +scaff +sayward +sayas +saxbury +savin +savel +savastano +savannah +sault +satre +sarkar +santellan +sandmeier +sampica +salvesen +saltis +salloum +salling +salce +salatino +salata +salamy +safe +sadowsky +sadlier +sabbatini +sabatelli +sabal +sabados +rydzewski +rybka +rybczyk +ruz +rusconi +rupright +rufino +ruffalo +rudiger +rudig +ruda +rubyor +royea +roxberry +rover +rouzer +roumeliotis +roston +rossmann +rosko +rosetta +rosene +rosenbluth +roseland +rosasco +rosano +rosal +rorabaugh +romie +romaro +rolstad +rollow +rohrich +roghair +rogala +roets +roen +roemmich +roelfs +roeker +roedl +roedel +rodeheaver +roddenberry +rockstad +rocchi +robirds +robben +robasciotti +robaina +rizzotto +rizzio +rittle +ritcher +rissman +riseden +ripa +rion +rintharamy +rinehimer +rinck +riling +rike +rietschlin +riesenberg +riemenschneid +rieland +rickenbaugh +rickenbach +riches +rhody +revells +reutter +respress +resnik +renton +remmel +reitmeyer +reitan +reister +reinstein +reino +reinkemeyer +reifschneider +reierson +reichle +rehmeier +rehl +regine +reeds +rede +records +recar +rebeiro +raybourn +rawl +rautio +raugust +raudenbush +raudales +rattan +rashad +rapuano +rapoport +rantanen +ransbottom +raner +ramkissoon +rambousek +raio +rainford +radakovich +rad +rabenhorst +quivers +quispe +quintin +quinoes +quince +quilici +quattrone +quates +quance +quale +purswell +purpora +pulera +pulcher +puckhaber +pryer +pruyne +pruit +prudencio +prows +protzman +prothero +prospero +prosperi +prospal +privott +pritchet +priem +prest +prell +preer +pree +preddy +preda +pravata +pradhan +potocki +postier +postema +posse +posadas +poremba +popper +popichak +ponti +pomrenke +pomponi +pomarico +pollok +polkinghorn +polino +pock +plough +plenty +plater +plagman +pipher +pinzone +pinkleton +pillette +pillers +pill +pilapil +pignone +pignatelli +piersol +piepho +picton +pickrel +picket +pichard +picchi +piatek +pharo +phanthanouvon +pettingill +pettinato +petrovits +pethtel +petersheim +pershing +perrez +perra +pergram +peretz +perego +perches +pennello +pennella +pennant +pendry +penaz +pellish +peeks +pecanty +peare +paysour +pavlovich +pavick +pavelko +paustian +patzer +patsy +patete +patadia +paszkiewicz +pase +pasculli +pascascio +parrotte +parlor +parajon +paparo +papandrea +paone +pantaleon +panning +paniccia +pancho +panarello +palmeter +pallan +palardy +pahmeier +padget +padel +oyster +oya +oxborrow +oveson +outwater +ottaway +otake +ostermeyer +osmer +osinski +osiecki +oroak +orndoff +orms +orkin +oregon +ordiway +opatz +onsurez +onishi +oliger +okubo +okoye +ohlmann +offord +offner +offerdahl +oesterle +oesch +odonnel +odeh +odebralski +obie +obermeier +oberhausen +obenshain +obenchain +oats +nute +nulty +norrington +norlin +nore +nordling +nordhoff +norder +nordan +norals +nogales +noboa +nitsche +niermann +nienhaus +niedringhaus +niedbalski +nicolella +nicolais +nickleberry +nicewander +newfield +neurohr +neumeier +netterville +nersesian +nern +nerio +nerby +nerbonne +neitz +neighbours +neighbor +neidecker +neat +neason +nead +navratil +naves +nastase +nasir +nasca +narine +narimatsu +nard +narayanan +nappo +namm +nalbone +nakonechny +nabarro +myott +muthler +muscatello +murriel +murin +murders +muoio +mundel +munafo +mulch +mukherjee +muffoletto +muessig +muckey +mucher +mruk +moyd +mowell +mowatt +moutray +mourning +mou +motzer +moster +mortis +morgenroth +morga +morataya +montross +montezuma +monterroza +montemarano +montello +montbriand +montavon +montaque +monigold +monforte +molgard +moleski +mohsin +mohead +mofield +moerbe +moeder +mochizuki +miyazaki +miyasaki +mital +miskin +mischler +minus +minniear +minero +milosevic +mildenhall +mila +mikhail +mielsch +midden +michonski +michniak +michitsch +michelotti +micheli +michelfelder +michand +miao +metelus +merkt +merando +meranda +mentz +meneley +menaker +memory +melino +meir +mehaffy +meehl +meech +meczywor +mcweeney +mcumber +mcredmond +mcneer +mcnay +mcmikle +mcmaken +mclaurine +mclauglin +mclaney +mckune +mckinnies +mckague +mchattie +mcgrapth +mcglothen +mcgath +mcfolley +mcdannell +mccurty +mccort +mcclymonds +mcclimon +mcclamy +mccaughan +mccartan +mccan +mccadden +mcburnie +mcburnett +mcbryar +mcannally +mcalevy +mcaleese +maytorena +mayrant +mayol +mayland +mayeaux +mauter +matthewson +mathiew +matern +matera +maslow +mashore +masaki +maruco +martorell +martenez +marry +marrujo +marrison +maroun +markway +markos +markoff +markman +marian +marello +marbry +marban +maranda +maphis +manuele +mansel +manganello +mandrell +mandoza +manard +manago +maltba +mallick +mallak +maline +malikowski +majure +majcher +maise +mahl +maffit +maffeo +madueno +madlem +madariaga +macvane +mackler +macconnell +macchi +maccarone +lyng +lynchard +lura +lunning +luneau +lunden +lumbra +lumbert +lueth +ludington +luckado +lucchini +lucatero +luallen +lozeau +lowen +lovera +lovelock +louck +lothian +lorio +lorimer +lorge +loretto +longhenry +lonas +loiseau +lohrman +logel +loft +locks +lockie +llerena +livington +liuzzi +liscomb +lippeatt +liou +linhardt +lindelof +lindbo +limehouse +limage +lillo +lillian +lilburn +liggons +lidster +liddy +liddick +lich +liberato +lian +lia +leysath +lewelling +lesney +leser +lescano +leonette +lentsch +lenius +lemmo +lemming +lemcke +lein +leggette +legerski +legard +leever +leete +ledin +lecomte +lecocq +leakes +leab +lazarz +layous +lawrey +lawery +lauze +lautz +laughinghouse +latulippe +lattus +lattanzio +later +lascano +larmer +laris +larcher +laprise +lapin +lapage +lano +langseth +langman +langland +landstrom +landsberg +landsaw +landram +lamphier +lamendola +lamberty +lakhani +laker +lajara +lagrow +lagman +ladewig +laderman +ladden +lacrue +laclaire +lachut +lachner +kwit +kvamme +kvam +kutscher +kushi +kurgan +kunsch +kundert +kun +kulju +kukene +kudo +kubin +kubes +kuberski +krystofiak +kruppa +krul +krukowski +kruegel +kronemeyer +krock +kriston +kretzer +krenn +kralik +krafft +krabill +kozisek +kovich +koverman +kovatch +kovarik +kotlowski +kosmala +kosky +kosir +kosa +korpi +kornbluth +koppen +kooistra +kohlhepp +kofahl +koeneman +koebel +koczur +kobrin +kobashigawa +koba +knuteson +knoff +knoble +knipper +knierim +kneisley +klusman +kloc +klitzing +klinko +klinefelter +klemetson +kleinpeter +klauser +klatte +klaren +klare +kissam +kirkhart +kirchmeier +kinzinger +kindt +kincy +kincey +kimoto +killingworth +kilcullen +kilbury +kietzman +kienle +kiedrowski +kidane +khamo +khalili +ketterling +ketchem +kessenich +kessell +kepp +kenon +kenning +kennady +kendzior +kemppainen +kellermann +keirns +keilen +keiffer +kehew +keelan +keawe +keator +kealy +keady +kathman +kastler +kastanes +kassab +karren +karpin +karau +karathanasis +kara +kaps +kaplun +kapaun +kannenberg +kanipe +kander +kandel +kanas +kanan +kamke +kaltenbach +kallenberger +kallam +kali +kaley +kafton +kafer +kabler +kaaihue +jupiter +jundt +jubilee +jovanovich +jojola +johnstad +jodon +joachin +jinright +jew +jessick +jeronimo +jerald +jenne +jelsma +jeannotte +jeangilles +jaworsky +jaubert +jarry +jarrette +jarreau +jarett +janos +janecka +janczak +jalomo +jagoda +jagla +jacquier +jaber +iwata +ivanoff +isola +iserman +isais +isaacks +iron +inverso +infinger +ibsen +hyser +hylan +hybarger +hwee +hutchenson +hutchcroft +husar +hurlebaus +hunsley +hunker +hummingbird +humberson +hulst +hulon +huhtala +hugill +hugghins +huffmaster +huckeba +hrabovsky +howden +hoverson +houts +houskeeper +housh +hosten +horras +horchler +hor +hopke +hooke +honie +holtsoi +holsomback +holoway +holmstead +hoistion +hohnstein +hoheisel +hoguet +hoggle +hogenson +hoffstetter +hoffler +hoffa +hofe +hoefling +hoague +hizer +hirschfield +hironaka +hiraldo +hinote +hingston +hind +hinaman +hillie +hillesheim +hilderman +hiestand +heyser +heys +hews +hew +hertler +herrero +herrandez +heppe +henle +henkensiefken +henigan +henandez +henagan +hemberger +heman +helser +helmich +hellinger +helfrick +heldenbrand +heinonen +heineck +heikes +heidkamp +heglar +heffren +heelan +hedgebeth +heckmann +heckaman +hechmer +hazelhurst +hawken +haverkamp +havatone +hausauer +hasch +harwick +hartse +harts +harrower +harle +hargroder +hardway +hardinger +hardemon +harbeck +hant +hamre +hamberg +hallback +haisten +hailstone +hahl +hagner +hagman +hagemeyer +haeussler +hackwell +haby +haataja +gverrero +gustovich +gustave +guske +gushee +gurski +gurnett +gura +gunto +gunselman +gugler +gudmundson +gudinas +guarneri +grumbine +gruis +grotz +grosskopf +grosman +grosbier +grinter +grilley +grieger +grewal +gressler +greaser +graus +grasman +graser +grannan +granath +gramer +graboski +goyne +gowler +gottwald +gottesman +goshay +gorr +gorovitz +gores +goossens +goodier +goodhue +gonzeles +gonzalos +gonnella +golomb +golick +golembiewski +goeke +godzik +goar +glosser +glendenning +glendening +glatter +glas +gittings +gitter +gisin +giscombe +gimlin +gillitzer +gillick +gilliand +gilb +gigler +gidden +gibeau +gibble +gianunzio +giannattasio +gertelman +gerosa +gerold +gerland +gerig +gerecke +gerbino +genz +genovesi +genet +gelrud +geitgey +geiszler +gehrlein +gazzo +gawrys +gavilanes +gaulden +gate +garthwaite +garmoe +gargis +gara +gannett +galligher +galler +galleher +gallahan +galford +gal +gahn +gacek +gabert +fuster +furuya +furse +fujihara +fuhriman +fruit +frueh +fromme +from +froemming +friskney +frietas +freiler +freelove +freber +frear +frankl +frankenfield +franey +francke +foxworthy +formella +foringer +forgue +forge +fonnesbeck +fonceca +folland +fodera +fode +floresca +fleurent +fleshner +flentge +fleischhacker +fleeger +flecher +flam +flair +flaim +fivecoat +firebaugh +fioretti +finucane +filley +figuroa +figuerda +fiddelke +feurtado +fetterly +fessel +femia +feild +fehling +fegett +fedde +fechter +fawver +faustino +faulhaber +fatchett +fassnacht +fashaw +fasel +farrugia +farran +farness +farhart +farbman +fama +falwell +falvo +falling +falkenstein +falin +failor +faigin +fagundo +fague +fagnan +fagerstrom +faden +eytchison +eyles +ewy +evon +everage +evangelist +estrin +estorga +esponda +espindola +escher +esche +escarsega +escandon +erven +erding +eplin +enix +englade +engdahl +enck +emmette +embery +emberson +eltzroth +else +elsayed +ellerby +ellens +elhard +elfers +elazegui +eisermann +eilertson +eiben +ehrhard +ehresman +egolf +egnew +eggins +efron +effland +eduardo +edminster +edgeston +ede +eckstrom +eckhard +eckford +echoles +ebsen +eatherly +eastlick +earnheart +ear +dykhuizen +dyas +duttweiler +dutka +dutch +dusenbury +dusenbery +durre +durnil +durnell +durie +durhan +durando +dupriest +dunsmoor +dunseith +dunnum +dunman +dunlevy +duma +dulude +dulong +duignan +dugar +dufek +ducos +duchaine +duch +dubow +drowne +dross +drollinger +droke +driggars +dredge +drawhorn +drach +drabek +doyne +doukas +dorvil +dorow +doroski +dornak +dormer +dorian +donnelson +donna +donn +donivan +dondero +dompe +dolle +doakes +diza +dixie +divirgilio +ditore +distel +disimone +disbro +dipiero +dingson +diluzio +dillehay +dilbert +digiorgio +diflorio +dietzler +dietsch +dieterle +dierolf +dierker +dicostanzo +dicesare +dexheimer +dewitte +dewing +devoti +devincentis +devary +deutschman +dettloff +detienne +destasio +dest +despard +desmet +deslatte +desfosses +derise +derenzo +deppner +depolo +denoyer +denoon +denno +denne +deniston +denike +denes +demoya +demick +demicco +demetriou +demange +delva +delorge +delley +delisio +delhoyo +delgrande +delgatto +delcour +delair +deinert +degruy +degrave +degeyter +defino +deffenbaugh +deener +decook +decant +deboe +deblanc +deatley +dearmitt +deale +deaguiar +dayan +daus +dauberman +datz +dase +dary +dartt +darocha +dario +dari +dardis +dapper +danowski +dancel +dami +dallmann +dalere +dalba +dakan +daise +dailing +dahan +dagnan +daggs +dagan +czarkowski +czaplinski +cutten +curtice +curenton +cure +curboy +cura +culliton +culberth +cucchiara +cubbison +csaszar +crytser +crotzer +crossgrove +crosser +croshaw +croissant +crocco +critzer +creveling +cressy +creps +creese +cratic +crate +craigo +craigen +craib +cracchiolo +crable +coykendall +cowick +coville +couzens +coutch +cousens +cousain +counselman +coult +cotterell +cott +cotham +corsaut +corriere +corredor +cornet +cornelia +corkum +coreas +cordoza +corbet +corathers +conwill +contreas +consuegra +constanza +conolly +conedy +companion +comins +combee +colosi +colom +colmenares +collymore +colleran +colina +colaw +colatruglio +colantro +colantonio +cohea +cogill +codner +code +codding +cockram +cocanougher +cobine +cluckey +clucas +cloward +cloke +clisham +clipper +clinebell +cliffe +clendenen +cisowski +cirelli +ciraolo +ciocca +cintora +ciesco +cibrian +chupka +chugg +christmann +choma +chiverton +chirinos +chinen +chimenti +chima +cheuvront +chesla +chesher +chesebro +chern +chehebar +cheatum +chastine +chapnick +chapelle +chambley +cercy +celius +celano +cayea +cavicchi +cattell +catanach +catacutan +castelluccio +castellani +cassmeyer +cassetta +cassada +caspi +cashmore +casebier +casanas +carrothers +carrizal +carriveau +carretero +carradine +carosella +carnine +carmel +carloni +carkhuff +cardosi +cardo +carchidi +caravello +caranza +carandang +capes +cantrall +canpos +canoy +cannizzaro +canion +canida +canham +cangemi +cange +candle +cancelliere +canard +camarda +calverley +calogero +callendar +calame +cadrette +cachero +caccavale +cabreros +cabrero +cabrara +cabler +butzer +butte +butrick +butala +bustios +busser +busic +bushorn +busher +burmaster +burl +burkland +burkins +burkert +burgueno +burgraff +buren +burel +burdon +burck +burby +buoy +bunk +bumford +bulock +bujnowski +buggie +buffy +budine +bucciero +bubier +brzoska +brydges +brumlow +brosseau +brooksher +brokke +broeker +brittin +bristle +briano +briand +brettschneide +bresnan +brentson +brenneis +brender +brazle +brassil +brasington +branstrom +branon +branker +brandwein +brandau +brana +bralley +brailey +brague +brade +bozzi +bownds +bowmer +bournes +bour +bouchey +botto +boteler +borroel +borra +boroski +boothroyd +boord +bonny +bonga +bonato +bonadonna +bolejack +boldman +boiser +boggio +bogacki +boerboom +boehnlein +boehle +bodah +bobst +boak +bluemel +blockmon +blitch +blincoe +bleier +blaydes +blasius +bittel +bir +binsfeld +bindel +bilotti +billiott +bilbrew +bihm +biersner +bielat +bidrowski +bickler +biasi +bianca +bhola +bhat +bewick +betzen +bettridge +betti +betsch +besley +beshero +besa +bertoli +berstein +berrien +berrie +berrell +bermel +berenguer +benzer +bensing +bennie +benedix +bemo +belile +beilman +behunin +behrmann +bedient +becht +beaule +beaudreault +bealle +beagley +bayuk +bayot +bayliff +baugess +battistoni +batrum +basinski +basgall +bartolomei +bartnik +bartl +bartko +bartholomay +barthlow +bartgis +barsness +barski +barlette +barickman +bargen +bardon +barcliff +barbu +barbar +barakat +baracani +baraban +banos +banko +bania +bambach +balok +balogun +bally +baldini +balck +balcer +balash +baim +bailor +bahm +bahar +bagshaw +baggerly +badie +badal +backues +babino +ba +aydelott +awbrey +aversano +avansino +auyon +aukamp +aujla +augenstein +astacio +ast +asplin +asato +asano +aruizu +artale +arrick +arneecher +armelin +armbrester +armacost +arkell +argue +argrave +areizaga +areas +apolo +anzures +anzualda +antwi +antillon +antenor +annand +anhalt +angove +anglemyer +anglada +angiano +angeloni +andaya +ancrum +anagnos +ammirati +amescua +america +ambrosius +amacker +amacher +amabile +alvizo +alvernaz +alvara +altobelli +altobell +althauser +alterman +altavilla +alsip +alphonso +almeyda +almeter +alman +allscheid +allaman +aliotta +alicia +aliberti +alghamdi +alfonzo +albiston +alberta +alberding +alarie +alano +aja +ailes +ahsan +ahrenstorff +ahler +aerni +ackland +achor +acero +acebo +ace +abshier +abruzzo +abrom +abood +abnet +abend +abegg +abbruzzese +aaberg +zysk +zutell +zumstein +zummo +zuhlke +zuehlsdorff +zuch +zucconi +zortman +zohn +ziv +zingone +zingg +zingale +zima +zientek +zieg +zervas +zerger +zenk +zeldin +zeiss +zeiders +zediker +zea +zavodny +zarazua +zappone +zappala +zapanta +zaniboni +zanchi +zampedri +zaller +zakrajsek +zagar +zadrozny +zablocki +zable +yust +yunk +youngkin +yosten +yockers +yochim +yerke +yerena +yeast +yanos +yam +wysinger +wyner +wrisley +woznicki +wortz +worsell +wooters +woon +woolcock +woodke +wonnacott +wolnik +wittstock +witting +witry +witfield +witcraft +wissmann +wissink +wisehart +wiscount +wironen +wipf +winterrowd +wingett +windon +windish +windisch +windes +wiltbank +willmarth +willick +wiler +wieseler +wiedmaier +wiederstein +wiedenheft +wieberg +wickware +wickkiser +wickell +whittmore +whitker +whitegoat +whitcraft +whisonant +whisby +whetsell +whedon +westry +westcoat +wernimont +wentling +wendlandt +wencl +weisgarber +weininger +weikle +weigold +weigl +weichbrodt +wehrli +wehe +weege +weare +watland +wassmann +warzecha +warrix +warrell +warnack +waples +wantland +wanger +wandrei +wander +wanat +wampole +waltjen +walterscheid +waligora +walding +waldie +walczyk +wakins +waitman +wair +wainio +wahpekeche +wahlman +wagley +wagenknecht +wadle +waddoups +wadding +wack +vuono +vuillemot +vugteveen +vosmus +vorkink +vories +vondra +voelz +vlashi +vivo +vitelli +vitali +viscarra +virgo +vinet +vimont +villega +villard +vignola +viereck +videtto +vicoy +vessell +vescovi +verros +vernier +vernaglia +vergin +verdone +verdier +verastequi +vejar +vasile +vasi +varnadore +vardaro +vanzanten +vansumeren +vanschuyver +vanleeuwen +vanhowe +vanhoozer +vaness +vandewalker +vandevoorde +vandeveer +vanderzwaag +vanderweide +vanderhyde +vandellen +vanamburg +vanalst +vallin +valk +valerie +valentini +valcarcel +valasco +valadao +vacher +urquijo +unterreiner +unsicker +unser +unrau +undercoffler +uhm +uffelman +uemura +ueda +tyszko +tyska +tymon +tyce +tyacke +twinam +tutas +tussing +turmel +turkowski +turkel +turchetta +tupick +tumblin +tukes +tufte +tufo +tuey +tuell +tuckerman +tsutsumi +tsuchiya +try +trossbach +trivitt +trippi +trippensee +trimbach +trillo +triller +trible +tribe +tribby +trevisan +tresch +tramonte +traff +trad +tousey +totaro +torregrosa +torralba +torn +tolly +tofil +tofani +tobiassen +tippy +tiogangco +tino +tinnes +tingstrom +tingen +tine +tindol +tifft +tiffee +tiet +thuesen +thruston +throndson +thornsbury +thornes +thiery +thielman +thie +theilen +thede +thate +thane +thalacker +thaden +teuscher +terracina +terell +terada +tepfer +tennessee +tenneson +tenant +temores +temkin +tellers +telleria +teaque +tealer +teachey +tavakoli +tauras +taucher +tator +tartaglino +tarpy +tape +tannery +tani +tams +tamlin +tambe +tallis +talamante +takayama +takaki +takagi +taibl +taffe +tadesse +tade +tabeling +tabag +szoke +szoc +szala +szady +sysak +sylver +syler +swonger +swiggett +swensson +sweis +sweers +sweene +sweany +sweaney +swartwout +swamy +swales +swab +susman +surman +surgeon +sundblad +summerset +summerhays +sumerall +sule +sugimoto +subramanian +sturch +stupp +stunkard +stumpp +struiksma +stropes +stromyer +stromquist +strede +strazza +strauf +storniolo +storjohann +stonum +stonier +stonecypher +stoneberger +stollar +stokke +stokan +stoetzel +stoeckel +stockner +stockinger +stockholm +stockert +stockdill +stobbe +stitzel +stitely +stirgus +stigers +stettner +stettler +sterlin +sterbenz +stemp +stelluti +steinmeyer +steininger +steinauer +steigerwalt +steider +steady +stavrou +staufenberger +stassi +starin +stankus +stanaway +stammer +stakem +staino +stahlnecker +stagnitta +staelens +staal +srsen +sprott +sprigg +sprenkle +sprenkel +spreitzer +spraque +sprandel +spotted +sporn +spivak +spira +spiewak +spieth +spiering +sperow +speh +specking +spease +spead +sparger +spanier +spall +sower +southcott +sosna +soran +sookram +sonders +solak +sohr +sohl +sofranko +soderling +sochor +sobon +smutz +smudrick +smithj +smid +slosser +sliker +slenker +sleight +sleger +sleet +slaby +skousen +skilling +skibinski +skeeters +skeet +skees +skane +skafidas +sivic +sivertsen +sivers +sitra +sito +siracusa +sinicki +simpers +simley +simbeck +silberberg +siever +siegwarth +sidman +siddons +siddle +sibbett +si +shumard +shubrooks +shough +shorb +shoptaw +sholty +shoffstall +shiverdecker +shininger +shimasaki +shifrin +shiffler +sheston +sherr +sherill +shere +shepeard +shelquist +shells +sheler +shave +shauf +sharrar +sharpnack +shanon +shamsiddeen +shambley +shallenberger +shadler +shaban +sha +sferra +seys +sexauer +sevey +severo +setlak +seta +sesko +sersen +serratore +serdula +senechal +seldomridge +seilhamer +seifer +seidlitz +sehnert +sedam +sebron +seber +sebek +seavers +sear +scullark +scroger +scovill +sciascia +sciarra +schweers +schwarze +schummer +schultes +schuchardt +schuchard +schrieber +schrenk +schreifels +schowalter +schoultz +scholer +schofill +schoff +schnuerer +schnettler +schmitke +schmiege +schloop +schlinger +schlessman +schlesser +schlageter +schiess +schiefer +schiavoni +scherzer +scherich +schechtman +schebel +scharpman +schaich +schaap +scappaticci +scadlock +savocchia +savini +savers +save +savageau +sauvage +sause +sauerwein +sary +sarwary +sarnicola +santone +santoli +santalucia +santacruce +sansoucie +sankoff +sanes +sandri +sanderman +sammartano +salmonson +salmela +salmans +sallaz +salis +sakuma +sakowski +sajdak +sahm +sagredo +safrit +sade +sackey +sabio +sabino +sabina +rybolt +ruzzo +ruthstrom +ruta +russin +russian +russak +rusko +ruskin +rusiecki +ruscher +rupar +rumberger +rullan +ruliffson +ruhlman +ruger +rufenacht +ruelle +rudisell +rudi +rucci +rublee +ruberto +rubeck +rowett +rouge +rottinghaus +roton +rothgeb +rothgaber +rothermich +rostek +rossini +roskelley +rosing +rosi +rosewell +rosebush +rosberg +roon +ronin +romesburg +romelus +rolley +rollerson +rollefson +rolins +rolens +rois +rohrig +rohrbacher +rohland +rohen +roh +rogness +roes +roering +roehrick +roebke +rodregez +rodabaugh +rocks +rockingham +roblee +robel +roadcap +rizzolo +riviezzo +rivest +riveron +risto +rissler +risen +rippentrop +ripka +rinn +ringuette +ringering +rindone +rindels +rim +rieffer +riedman +riede +riecke +riebow +riddlebarger +rhome +rhodd +rhatigan +rhame +reyers +rewitzer +revalee +retzer +rettinger +reschke +requa +reper +reopell +renzelman +renne +renker +renk +renicker +rendina +rendel +remund +remmele +remiasz +remaklus +remak +reitsma +reitmeier +reiswig +reishus +reining +reim +reidinger +reick +reiche +regans +reffett +reesor +reekie +redpath +redditt +rechtzigel +recht +rebel +rearden +raynoso +raxter +ratkowski +rasulo +rassmussen +rassel +raspberry +raser +rappleye +rappe +randy +randrup +randleman +ramson +rampey +ramming +rama +rainier +raider +radziewicz +quirarte +quintyne +quickel +query +quattrini +quarry +quakenbush +quaile +pytel +putty +pushaw +pusch +purslow +punzo +pullam +pugmire +puello +pu +przekop +pruss +pruiett +provow +prophete +procaccini +pritz +prillaman +priess +pretlow +prestia +presha +prescod +preast +praytor +prashad +praino +pozzi +pounder +pottenger +potash +porada +popplewell +ponzo +ponter +pommier +polland +polidori +polasky +pola +pok +poitier +poisso +poire +point +pofahl +podolsky +podell +plueger +plowe +plotz +plotnik +ploch +pliska +plessner +plaut +platzer +plake +pizzino +pizza +pirog +piquette +pipho +pioche +pintos +pinkert +pinet +pilkerton +pilch +pilarz +pignataro +piermatteo +picozzi +pickler +pickette +pichler +philogene +pheasant +phare +phang +pfrogner +pfisterer +pettinelli +petruzzi +petrovic +petretti +petermeier +pestone +pesterfield +pessin +pesch +persky +perruzza +perrott +perritt +perretti +perrera +peroutka +peroni +peron +peret +perdew +perazzo +peppe +peno +penberthy +penagos +peles +pelech +peiper +peight +pefferman +peddie +peckenpaugh +pean +payen +pavloski +pavlica +paullin +pattie +patteson +passon +passey +passe +passalacqua +pasquini +paskel +parter +partch +parriott +parrella +parraz +parmely +parizo +parisian +papelian +papasergi +pantojz +panto +panich +panchal +palys +palms +pallone +palinski +pali +palevic +pale +pagels +paciorek +pacho +pacella +paar +ozbun +overweg +overholser +ovalles +outhouse +outcalt +otterbein +otta +ostergren +osher +osbon +orzech +orwick +orrico +oropesa +orn +ormes +orillion +opal +onorati +onnen +omary +olk +olding +okonski +okimoto +ohlrich +ohayon +oguin +ogley +oftedahl +offen +ofallon +oeltjen +odam +ockmond +ockimey +ocean +obermeyer +oberdorf +obanner +oballe +oard +oakden +nyhan +nydam +numan +noyer +notte +nothstein +notestine +noser +nork +nolde +noa +nishihara +nishi +nikolic +nihart +nietupski +niesen +niehus +niece +nidiffer +nicoulin +nicolaysen +nicklow +nickl +nickeson +nichter +nicholl +ngyun +newsham +newmann +neveux +neuzil +neumayer +netland +nessen +nesheim +nelli +nelke +necochea +nazari +navy +navorro +navarez +navan +natter +natt +nater +nasta +narvaiz +nardelli +napp +nakahara +nairn +nagg +nager +nagano +nafziger +naffziger +nadelson +muzzillo +murri +murrey +murgia +murcia +muno +munier +mulqueen +mulliniks +mulkins +mulik +muhs +muffley +mozell +moynahan +mounger +mottley +motil +moseman +moseby +mosakowski +morten +mortell +morrisroe +morrero +mormino +morland +morger +morgenthaler +moren +morelle +morawski +morasca +morang +morand +moog +montney +montera +montee +montane +montagne +mons +monohan +monnett +monkhouse +moncure +momphard +molyneaux +molles +mollenkopf +molette +moland +mohs +mohmand +mohlke +moessner +moers +mockus +moccio +mlinar +mizzelle +mittler +mitri +mitchusson +mitchen +mistrot +mistler +misch +miriello +minkin +mininger +minerich +minehart +minderman +minden +minahan +milonas +millon +millholland +milleson +millerbernd +millage +militante +milionis +milhoan +mildenberger +milbury +mikolajczak +miklos +mikkola +mikes +migneault +mifsud +mietus +mieszala +mielnicki +midy +michon +michioka +micheau +michaeli +micali +methe +metallo +messler +mesch +merow +meroney +mergenthaler +meres +mercy +menuey +menousek +menning +menn +menghini +mendia +memmer +melot +mellow +mellenthin +melland +meland +meixner +meisenheimer +meineke +meinders +mehrens +mehlig +meglio +medsker +medicine +medero +mederios +meabon +mcwright +mcright +mcreath +mcrary +mcquirter +mcquerry +mcquary +mcphie +mcnurlen +mcnelley +mcnee +mcnairy +mcmanamy +mcmahen +mckowen +mckiver +mckinlay +mckearin +mcirvin +mcintrye +mchorse +mchaffie +mcgroarty +mcgoff +mcgivern +mceniry +mcelhiney +mcdiarmid +mccullars +mccubbins +mccrimon +mccovery +mccommons +mcclour +mccarrick +mccarey +mccallen +mcbrien +mcarthy +mayone +maybin +maximo +maxam +maurais +maughn +matzek +matts +matin +mathre +mathia +mateen +matava +masso +massar +massanet +masingale +mascaro +marthaler +martes +marso +marshman +marsalis +marrano +marolt +marold +markins +margulis +mardirosian +marchiano +marchak +marandola +marana +manues +mantis +mante +mansukhani +mansi +mannan +maniccia +mangine +manery +mandigo +manda +mancell +mamo +malstrom +malouf +malenfant +malena +maldenado +malandruccolo +malak +malabanan +makino +maj +maisonave +mainord +maino +mainard +maillard +maia +mahmud +mahdi +mahapatra +mahaley +mahaffy +magouirk +maglaras +magat +magan +maga +maffia +madrazo +madrano +maditz +mackert +mackellar +mackell +macht +macchia +maccarthy +maahs +lytal +lye +luzar +luzader +lutjen +lunger +lunan +luma +lukins +luhmann +luers +ludvigsen +ludlam +ludemann +luchini +lucente +lubrano +lubow +luber +lubeck +lowing +loven +loup +louise +louge +losco +lorts +lormand +lorenzetti +longford +longden +longbrake +lokhmatov +loge +loeven +loeser +locket +locey +locatelli +litka +lista +lisonbee +lisenbee +liscano +liranzo +liquori +liptrot +lionetti +lio +linscomb +linkovich +linington +lingefelt +lindler +lindig +lindall +lincks +linander +linan +limburg +limbrick +limbach +likos +lighthall +liford +lietzke +liebe +liddicoat +lickley +lichter +libel +lias +liapis +lezo +lewan +levitz +levesgue +leverson +levander +leuthauser +letbetter +lesuer +lesmeister +lesly +lerer +leppanen +lepinski +leota +lenherr +lembrick +lelonek +leisten +leiss +leins +leingang +leinberger +leinbach +leikam +leidig +lehtonen +lehnert +lehew +legier +lefchik +lecy +leconte +lecher +lebrecht +leather +leaper +lawter +lawrenz +lavy +laur +lauderbaugh +lauden +laudato +latting +latsko +latini +lassere +lasseigne +laspina +laso +laslie +laskowitz +laske +laser +lasenby +lascola +lariosa +larcade +lapete +laperouse +lanuza +lanting +lantagne +lansdale +lanphier +langmaid +langella +lanese +landrus +lampros +lamens +laizure +laitinen +laigle +lahm +lagueux +lagorio +lagomarsino +lagasca +lagana +lafont +laflen +lafavor +lafarge +laducer +ladnier +ladesma +lacognata +lackland +lacerte +labuff +laborin +labine +labauve +kuzio +kusterer +kussman +kusel +kusch +kurutz +kurdyla +kupka +kunzler +kunsman +kuni +kuney +kunc +kulish +kuliga +kulaga +kuilan +kuhre +kuhnke +kuemmerle +kueker +kudla +kudelka +kubinski +kubicki +kubal +krzyzanowski +krupicka +krumwiede +krumme +kross +kropidlowski +krokos +kroell +kritzer +kribs +kreitlow +kreisher +kraynak +krass +kranzler +kramb +kozyra +kozicki +kovalik +kovalchik +kovacevic +kotula +kotrba +koteles +kosowski +koskela +kosiba +koscinski +kosch +kory +korab +kopple +kopper +koppelman +koppel +konwinski +kon +kolosky +koloski +kolinsky +kolinski +kolbeck +kolasa +koepf +koda +kochevar +kochert +kobs +knust +knueppel +knoy +knieriem +knier +kneller +knappert +klitz +klintworth +klinkenberg +klinck +kleindienst +kleeb +klecker +kjellberg +kitten +kitsmiller +kisor +kisiel +kise +kirbo +kio +kinzle +kinkaid +kingsford +kingry +kimpton +kimel +kimberley +killmon +killick +kilgallon +kilcher +kihn +kiggins +kiecker +kher +khaleel +keziah +kettell +ketchen +keshishian +kersting +kersch +kerins +kercher +keno +kenefick +kemph +kempa +kelsheimer +kelln +kellenberger +kekahuna +keisling +keirnan +keimig +kehn +keal +ke +kaupp +kaufhold +kauffmann +katzenberg +katona +kaszynski +kaszuba +kassebaum +kasa +kartye +kartchner +karstens +karpinsky +karmely +karel +karasek +kapral +kaper +kanelos +kanahele +kampmann +kampe +kalp +kallus +kallevig +kallen +kaliszewski +kaleohano +kalchthaler +kalama +kalahiki +kaili +kahawai +kagey +justiss +jurkowski +jurgensmeyer +juilfs +josue +jopling +jondahl +jomes +joice +johannessen +joeckel +jezewski +jezek +jeswald +jervey +jeppsen +jenniges +jennifer +jennett +jemmott +jeffs +jeffry +jaurequi +janisch +janick +janice +jacek +jacaruso +iwanicki +ishihara +isenberger +isbister +iruegas +inzer +inyart +inscore +innocenti +inglish +infantolino +indovina +inaba +imondi +imdieke +imbert +illes +ida +iarocci +iannucci +huver +hutley +husser +husmann +hupf +huntsberger +hunnewell +hullum +huit +huish +huh +hughson +huft +hufstetler +hueser +hudnell +hovden +housen +houghtling +hoth +hossack +hoshaw +horsford +horry +hornbacher +horde +hoppenstedt +hopkinson +honza +honor +homann +holzmeister +holycross +holverson +holtzlander +holroyd +holmlund +hollywood +holderness +holderfield +holck +hojnacki +hohlfeld +hohenberger +hoganson +hogancamp +hoffses +hoerauf +hoell +hoefert +hodum +hoder +hockenbury +hoage +hisserich +hislip +hirons +hippensteel +hippen +hinkston +hindes +hinchcliff +hin +himmel +hillberry +hildring +hiester +hiefnar +hides +hibberd +hibben +heyliger +heyl +heyes +hevia +heu +hettrick +hert +hersha +hernandz +herkel +herber +henscheid +hennesy +henly +henegan +henebry +hench +hemsath +hemm +hemken +hemann +heltzel +hellriegel +hejny +heinl +heinke +heidinger +hegeman +hefferan +hedglin +hebdon +hearnen +hearing +heape +heagy +headings +headd +hazelbaker +havlick +hauschildt +haury +hassenfritz +hasenbeck +haseltine +hartstein +hartry +hartnell +harston +harpool +harmen +hardister +hardey +harders +harbolt +harbinson +haraway +haque +hansmann +hanser +hansch +hansberry +hankel +hanigan +haneline +hampe +hamons +hammerstone +hammerle +hamme +hammargren +hamelton +hamberger +hamasaki +halprin +halman +hallihan +halen +haldane +hails +haifley +hai +hages +hagadorn +hadwin +habicht +habermehl +gyles +gutzman +gutekunst +gustason +gusewelle +gurnsey +gurnee +gunterman +gumina +gulliver +gulbrandson +guiterez +guerino +guedry +gucwa +guardarrama +guagliano +guadagno +grulke +groote +groody +groft +groeneweg +grochow +grippe +grimstead +griepentrog +greenfeld +greenaway +grebe +graziosi +graw +gravina +grassie +grapes +granzow +grandjean +granby +gramacy +graces +gozalez +goyer +gotch +gosden +gorny +gormont +goodness +goodgion +gonya +gonnerman +gompert +golish +goligoski +goldmann +goike +goetze +godeaux +glenna +glaza +glassel +glaspy +glander +glady +giumarro +gitelman +gisondi +gismondi +girvan +girten +gironda +giovinco +ginkel +gilster +giesy +gierman +giddins +giardini +gianino +ghea +geurin +gett +getson +gerrero +germond +gere +gentsy +genta +gennette +genito +genis +gene +gendler +geltz +geiss +gehret +gegenheimer +geffert +geeting +gebel +gavette +gavenda +gaumond +gaudioso +gatzke +gatza +gattshall +gaton +gatchel +gasperi +gaska +gasiorowski +garritson +garrigus +garnier +garnick +gardinier +gardenas +garcy +garate +gandolfi +gamm +gamel +gambel +gallmon +gallemore +gallati +gainous +gainforth +gahring +gaffey +gaebler +gadzinski +gadbury +gabri +gabe +gaba +fyke +furtaw +furnas +furcron +funn +funck +fulwood +fulvio +fullmore +fukumoto +fuest +fuery +fuente +fuel +frymire +frush +frohlich +froedge +frodge +fritzinger +fricker +frericks +frein +freid +freggiaro +fratto +franzi +franciscus +fralix +fowble +fotheringham +foslien +foshie +fortmann +forsey +forkner +foppiano +fontanetta +fonohema +fogler +fockler +fluty +flusche +flud +florin +flori +flenory +fleharty +fleeks +flaxman +flash +flaming +fiumara +fitzmorris +finnicum +finkley +fineran +fillhart +filipi +fijal +fieldson +ficken +ficarra +fetch +festerman +fess +ferryman +ferner +fergason +ferell +fennern +femmer +feldmeier +feeser +feenan +federick +fedak +febbo +feazell +fearing +fazzone +fauth +fauset +faurote +faulker +faubion +fatzinger +fasick +fanguy +fambrough +falks +fahl +fabio +faaita +exler +ewens +estrado +esten +esteen +esquivez +espejo +esmiol +esguerra +esco +ertz +erspamer +ernstes +erisman +erhard +ereaux +ercanbrack +erbes +epple +entsminger +entriken +enslow +ennett +engquist +englebert +englander +engesser +engert +engeman +enge +enerson +end +emhoff +emge +emerald +elting +ellner +ellenberg +ellenbecker +elio +elfert +elden +elawar +ekstrand +eison +eismont +eisenbrandt +eiseman +eischens +ehrgott +egley +egert +eddlemon +economy +eckerson +eckersley +eckberg +echeverry +eberts +earthman +earnhart +eapen +eachus +dykas +dust +dusi +durning +during +durdan +dunomes +duncombe +dume +dullen +dullea +dulay +dul +duffett +dubs +dubard +drook +drenth +drahos +dragone +downin +downham +dowis +dowhower +doward +dovalina +dost +dopazo +doose +donson +donnan +dominski +dollarhide +dolinar +dolecki +dolbee +doege +dockus +dobler +dobkin +dobias +divoll +diviney +ditter +ditman +dissinger +dismang +dirlam +dinneen +dini +dingwall +dine +din +diloreto +dilmore +dillaman +dikeman +diiorio +dighton +diffley +dieudonne +dietel +dieringer +diercks +dienhart +diekrager +diefendorf +dicke +dicamillo +dibrito +dibona +dezeeuw +dewhurst +devins +deviney +deupree +detherage +despino +desmith +desjarlais +deshner +desha +desanctis +derring +derousse +derobertis +deridder +derego +derden +deprospero +deprofio +depping +deperro +denty +denoncourt +dencklau +demler +demirchyan +demichiel +demesa +demere +demaggio +delung +deluise +delmoral +delmastro +delmas +delligatti +delle +delena +delasbour +delarme +delargy +delagrange +delafontaine +deist +deiss +deighan +dehoff +degrazia +degman +defosses +deforrest +deeks +decoux +decarolis +debuhr +deberg +debarr +debari +dearmon +deare +deardurff +daywalt +dayer +davoren +davignon +daviau +dauteuil +dauterive +daul +darnley +darlin +darakjy +dapice +dannunzio +danison +daniello +damario +dalonzo +dallis +daleske +dalenberg +daiz +dains +daines +dagnese +dady +dadey +czyzewski +czapor +czaplewski +czajka +cyganiewicz +cuttino +cutrona +cussins +cusanelli +cuperus +cundy +cumiskey +cumins +cuizon +cuffia +cuffe +cuffari +cuccaro +cubie +cryder +cruson +crounse +cromedy +cring +creer +credeur +crea +cozort +cozine +cowee +cowdery +coventry +couser +courtway +courington +cotman +costlow +costell +corton +corsaro +corrieri +corrick +corradini +coron +coren +cord +corbi +corado +copus +coppenger +cooperwood +coontz +coonce +contrera +connealy +conell +comtois +compere +commins +commings +comegys +coma +colyar +colo +collister +collick +collella +coler +colborn +cohran +cogbill +coffen +cocuzzo +clynes +closter +clock +clipp +clingingsmith +clemence +clayman +classon +clas +clarey +clarence +clague +ciubal +citrino +citarella +cirone +cipponeri +cindrich +cimo +ciliberto +cichowski +ciccarello +cicala +chura +chubbuck +chronis +christlieb +chriss +chizek +chittester +chiquito +chimento +childree +chianese +chevrette +cheese +checo +chastang +chargualaf +chapmon +chantry +chahal +chafetz +cezar +ceruantes +cerrillo +cerrano +cerecedes +cerami +cegielski +cavallero +catinella +cassata +caslin +casano +casacchia +caruth +cartrette +carten +carodine +carnrike +carnall +carmicle +carlan +carlacci +caris +cariaga +cardine +cardimino +cardani +carbonara +carano +capua +capponi +cappellano +caporale +capelli +canupp +cantrel +cantone +canterberry +cannizzo +cannan +canelo +caneer +candill +candee +campbel +caminero +camble +caluya +callicott +calk +caito +caffie +caden +cadavid +cacy +cachu +cachola +cabreja +cabiles +cabada +caamano +byran +byon +buyck +bussman +bussie +bushner +burston +burnison +burkman +burkhammer +bures +burdeshaw +bumpass +bullinger +bullers +bulgrin +bugay +buffalo +budak +buczynski +buckendorf +buccieri +bubrig +brynteson +brunz +brunmeier +brunkow +brunetto +brunelli +brumwell +bruggman +brucki +brucculeri +brozovich +browing +brotman +broda +brocker +broadstreet +brix +britson +brinck +brimmage +brightly +brierre +bridenstine +brezenski +brezee +brevik +brest +brentlinger +brentley +breidenbach +breckel +brech +breaker +brazzle +braughton +brauch +brattin +brattain +branhan +branford +braner +brander +braly +braegelmann +brabec +boyt +boyack +bowren +bowl +bovian +boughan +botton +botner +bosques +borzea +borre +boron +bornhorst +borgstrom +borella +boop +bontempo +bonniwell +bonnes +bonjour +bonillo +bonano +bolek +bohol +bohaty +boffa +boetcher +boesen +boepple +boehler +boedecker +boeckx +bodi +boal +bloodsworth +bloodgood +blome +blockett +blixt +blanchett +blackhurst +blackaby +bjornberg +bitzer +bittenbender +bitler +birchall +binnicker +binggeli +billett +bilberry +bijou +biglow +bierly +bielby +biegel +beu +berzas +berte +bertagnolli +berreth +bernhart +bergum +berentson +berenson +berdy +bercegeay +bentle +bentivegna +bentham +benscoter +benns +bennick +benjamine +beneze +benett +beneke +bendure +bendix +bendick +benauides +belman +bellus +bellott +bellefleur +bellas +beljan +belgard +beith +beinlich +beierle +behme +beevers +beermann +beeching +bedward +bedrosian +bedner +bedeker +bechel +becera +beaubrun +beardmore +bealmear +bazin +bazer +baumhoer +baumgarner +bauknecht +battson +battiest +basulto +baster +basques +basista +basiliere +bashi +barzey +barz +bartus +bartucca +bartek +barrero +barreca +barnoski +barndt +barklow +baribeau +barette +bares +barentine +bareilles +barch +barbre +barberi +barbagelata +baraw +baratto +baranoski +bar +baptise +bankson +bankey +bankard +banik +baltzley +ballen +balkey +balius +balderston +bakula +bakalar +baffuto +baerga +badoni +backous +bachtel +bachrach +baccari +babine +babilonia +baar +azbill +azad +aycox +ayalla +avolio +austerberry +aughtry +aufderheide +auch +attanasio +athayde +atcher +astor +asselta +aslin +aslam +ashwood +ashraf +ashbacher +asbridge +asakura +arzaga +arriaza +arrez +arrequin +arrants +armiger +armenteros +armbrister +arko +argumedo +arguijo +ardolino +arcia +arbizo +aravjo +aper +anzaldo +antu +antrikin +antony +antonia +antonetty +antinoro +anthon +antenucci +anstead +annese +ankrum +andreason +andrado +andaverde +anastos +anable +amsterdam +amspoker +amrine +amrein +amorin +amel +ambrosini +amber +alsbrook +alnutt +almasi +allessio +allateef +alison +aldous +alderink +aldaz +akmal +akard +aiton +aites +ainscough +aikey +ahrends +ahlm +aguada +agans +adelmann +adebisi +addesso +adaway +adamaitis +ackison +abud +abendroth +abdur +abdool +aamodt +zywiec +zwiefelhofer +zwahlen +zunino +zuehl +zmuda +zmolek +zizza +ziska +zinser +zinkievich +zinger +zingarelli +ziesmer +ziegenfuss +ziebol +zettlemoyer +zettel +zervos +zenke +zembower +zelechowski +zelasko +zeise +zeek +zeeb +zarlenga +zarek +zaidi +zahnow +zahnke +zaharis +zach +zacate +zabrocki +zaborac +yurchak +yuengling +younie +youngers +youell +yott +yoshino +yorks +yordy +yochem +yerico +yerdon +yeiser +yearous +yearick +yeaney +ybarro +yasutake +yasin +yanke +yanish +yanik +yamazaki +yamat +yaggi +ximenez +wyzard +wynder +wyly +wykle +wutzke +wuori +wuertz +wuebker +wrightsel +worobel +worlie +worford +worek +woolson +woodrome +woodly +woodling +wontor +wondra +woltemath +wollmer +wolinski +wolfert +wojtanik +wojtak +wohlfarth +woeste +wobbleton +witz +wittmeyer +witchey +wisotzkey +wisnewski +wisman +wirch +wippert +wineberg +wimpee +wilusz +wiltsey +willig +williar +willers +willadsen +wilfred +wildhaber +wilday +wigham +wiggen +wiewel +wieting +wietbrock +wiesel +wiesehan +wiersema +wiegert +widney +widmark +wickson +wickings +wichern +whtie +whittie +whitlinger +whitfill +whitebread +whispell +whetten +wheeley +wheeles +wheelen +whatcott +weyland +weter +westrup +westphalen +westly +westland +wessler +wesolick +wesler +wesche +werry +wero +wernecke +werkhoven +wellspeak +wellings +welford +welander +weissgerber +weisheit +weins +weill +weigner +wehrmann +wehrley +wehmeier +wege +weers +weavers +watring +wassum +wassman +wassil +washabaugh +wascher +wary +warth +warbington +wanca +wammack +wamboldt +walterman +walkington +walkenhorst +walinski +wakley +wagg +wadell +vuckovich +voogd +voller +vokes +vogle +vogelsberg +vodicka +vissering +visage +vipond +vincik +villalona +vil +vickerman +vettel +veteto +vessel +vesperman +vesco +vertucci +versaw +verba +ventris +venecia +vendela +venanzi +veldhuizen +vehrs +veer +vee +vay +vaughen +vasilopoulos +vascocu +varvel +varno +varlas +varland +vario +vareschi +vanwyhe +vanweelden +vansciver +vannaman +vanluven +vanloo +vanlaningham +vankomen +vanhout +vanhampler +vangorp +vangorden +vanella +vandresar +vandis +vandeyacht +vandewerker +vandevsen +vanderwall +vandercook +vanderberg +vanbergen +valko +valesquez +valeriano +valen +vachula +vacha +uzee +uva +uselman +urizar +urion +urben +upthegrove +unzicker +unsell +unick +umscheid +umin +umanzor +ullo +ulicki +uhlir +uddin +tytler +tymeson +tyger +twisdale +twedell +tweddle +turrey +tures +turell +tur +tupa +tuitt +tuberville +tubby +tryner +trumpower +trumbore +truly +troglen +troff +troesch +trivisonno +tritto +tritten +tritle +trippany +tringali +tretheway +treon +trench +trejos +tregoning +treffert +traycheff +travali +trauth +trauernicht +transou +trane +trana +toves +tosta +torp +tornquist +tornes +torchio +toppings +toor +tooks +tonks +tomblinson +tomala +tollinchi +tolles +tokich +toh +tofte +todman +toddy +titze +timpone +tillema +tier +tienken +tiblier +thyberg +thursby +thurrell +thurm +thruman +thorsted +thorley +thomer +thoen +thissen +theimer +thee +thayn +thanpaeng +thammavongsa +thalman +texiera +texidor +teverbaugh +teska +ternullo +teplica +tepe +teno +tenholder +tenbusch +tenbrink +temby +tejedor +teitsworth +teichmann +tehan +tegtmeyer +tees +teem +tays +taubert +tauares +taschler +tartamella +tarquinio +tarbutton +tappendorf +tapija +tansil +tannahill +tamondong +talahytewa +takashima +taecker +tabora +tabin +tabbert +szymkowski +szymanowski +syversen +syrett +syracuse +synnott +sydnes +swimm +sweney +swearegene +swartzel +swanstrom +svedin +suss +suryan +surrey +supplice +supnet +suoboda +sundby +sumaya +sumabat +sulzen +sukovaty +sukhu +sugerman +sugalski +sugai +sudweeks +sudbeck +sucharski +stutheit +stumfoll +stuffle +struyk +strutz +strumpf +strowbridge +strothman +strojny +strohschein +stroffolino +stribble +strevel +strenke +stremming +strehle +strattman +stranak +stram +stracke +stoudamire +storks +stopp +stonebreaker +stolt +stoica +stofer +stockham +stockfisch +stjuste +stiteler +stiman +stillions +stillabower +stierle +sterlace +sterk +stepps +stenquist +stenner +stellman +steines +steinbaugh +steinbacher +steiling +steidel +steffee +stavinoha +staver +stastny +stasiuk +starrick +starliper +starlin +staniford +staner +standre +standefer +standafer +stanczyk +stallsmith +stagliano +staehle +staebler +stady +stadtmiller +squyres +spurbeck +sprunk +spranger +spoonamore +spoden +spilde +spezio +speros +sperandio +specchio +spearin +spayer +spallina +spadafino +sovie +sotello +sortor +sortino +sorrow +soros +sorola +sorbello +sonner +sonday +somes +soloway +soledad +soens +soellner +soderblom +sobin +sniezek +sneary +smyly +smutnick +smoots +smoldt +smitz +smitreski +smallen +smades +slunaker +sluka +slown +slovick +slocomb +slinger +slife +slicker +sleeter +slanker +skufca +skubis +skrocki +skov +skjei +skilton +skill +skarke +skalka +skalak +skaff +sixkiller +sitze +siter +sisko +sirman +sirls +sinotte +sinon +sincock +sincebaugh +simmoms +similien +silvius +silton +silloway +sikkema +sieracki +sienko +siemon +siemer +siefker +sieberg +siebens +siebe +sicurella +sicola +sickle +shumock +shumiloff +shuffstall +shuemaker +shuart +shu +shroff +shreeve +shostak +shortes +shorr +shivley +shintaku +shindo +shimomura +shiigi +sherow +sherburn +shepps +shenefield +shelvin +shelstad +shelp +sheild +sheaman +shaulis +sharrer +sharps +sharpes +shareef +shappy +shapero +shanor +shandy +shad +seyller +severn +sessom +sesley +servidio +serrin +sero +serge +septon +septer +sennott +sengstock +senff +senese +semprini +semone +sembrat +selva +sella +selbig +seiner +seif +seidt +sehrt +seemann +seelbinder +sedlay +sebert +searing +seaholm +seacord +seaburg +se +scungio +scroggie +scritchfield +scripture +scrimpsher +scrabeck +score +scorca +scobey +scivally +schwulst +schwinn +schwieson +schwery +schweppe +schwartzenbur +schurz +schumm +schulenburg +schuff +schuerholz +schryer +schrager +schorsch +schonhardt +schoenfelder +schoeck +schoeb +schnitzler +schnick +schnautz +schmig +schmelter +schmeichel +schluneger +schlosberg +schlobohm +schlenz +schlembach +schleisman +schleining +schleiff +schleider +schink +schilz +schiffler +schiavi +scheuer +schemonia +scheman +schelb +schaul +schaufelberge +scharer +schardt +scharbach +schabacker +scee +scavone +scarth +scarfone +scalese +sayne +sayed +savitz +satterlund +sattazahn +satow +sastre +sarr +sarjeant +sarff +sardella +santoya +santoni +santai +sankowski +sanft +sandow +sandoe +sandhaus +sandefer +sampey +samperi +sammarco +samia +samek +samay +samaan +salvadore +saltness +salsgiver +saller +salaz +salano +sakal +saka +saintlouis +saile +sahota +saggese +sagastume +sagan +sadri +sadak +sachez +saalfrank +saal +saadeh +ryu +rynn +ryley +ryle +rygg +rybarczyk +ruzich +ruyter +ruvo +rupel +ruopp +rundlett +runde +rundall +runck +rukavina +ruggiano +rufi +ruef +rubright +rubbo +rowbottom +route +rotner +rotman +rothweiler +rothlisberger +rosseau +rossean +rossa +roso +rosiek +roshia +rosenkrans +rosener +rosencrantz +rosencrans +rosello +roques +rookstool +rondo +romasanta +romack +rokus +rohweder +rog +roethler +roediger +rodwell +rodrigus +rodenbeck +rodefer +rodarmel +rockman +rockholt +rockford +rochow +roches +roblin +roblez +roble +robers +roat +rizza +rizvi +rizk +rixie +riveiro +rius +ritschard +ritrovato +risi +rishe +rippon +rinks +rings +ringley +ringgenberg +ringeisen +rimando +rilley +rijos +rieks +rieken +riechman +riddley +ricord +rickabaugh +richmeier +richesin +reyolds +rexach +revere +requena +reppucci +reposa +renzulli +renter +renault +remondini +relic +reither +reisig +reifsnider +reifer +reibsome +reibert +rehor +rehmann +reedus +redshaw +redfox +reczek +recupero +recor +reckard +recher +rear +realbuto +razer +rayman +raycraft +rayas +rawle +raviscioni +ravetto +ravenelle +rauth +raup +rattliff +rattley +rathfon +rataj +rasnic +rappleyea +rapaport +ransford +rann +rampersad +ramis +ramcharan +rainha +rainforth +ragans +ragains +rafidi +raffety +raducha +radsky +radler +radatz +raczkowski +rack +rabenold +quraishi +quinerly +quiet +quercia +quarnstrom +qian +pusser +puppo +pullan +pulis +pugel +puccini +puca +pruna +prowant +provines +pronk +prinkleton +prindall +primas +priesmeyer +pridgett +prevento +preti +presser +presnall +preseren +presas +presa +prchal +prattis +pratillo +praska +prak +powis +powderly +postlewait +postle +posch +porteus +portal +porraz +popwell +popoff +poplaski +poniatoski +pollina +polle +polhill +poletti +polaski +pokorney +poke +pointdexter +poinsette +po +ploszaj +plitt +pletz +pletsch +plemel +pleitez +playford +plaxco +platek +plambeck +plagens +placido +pisarski +pinuelas +pinnette +pinick +pinell +pinciaro +pinal +pilz +piltz +pillion +pilkinton +pilar +pikul +piepenburg +piening +piehler +piedrahita +piechocki +picknell +picker +pickelsimer +pich +picariello +phoeuk +phillipson +philbert +pherigo +phelka +peverini +petronis +petrina +petrash +petramale +petraglia +pery +personius +perrington +perrill +perpall +perot +perman +peragine +pentland +pennycuff +penninger +pennie +pennachio +penhall +pendexter +pencil +penalver +pelzel +pelter +pelow +pelo +peli +peinado +pedley +pecue +pecore +pechar +peairs +paynes +payano +pawelk +pavlock +pavlich +pavich +pavek +pautler +paulik +patmore +patella +patee +patalano +passini +passeri +paskell +parrigan +parmar +parayno +paparelli +pantuso +pante +panico +panduro +panagos +pama +palmo +pallotta +paling +palamino +pake +pajtas +pailthorpe +pahler +pagon +paglinawan +pagley +paget +paetz +paet +padley +pacleb +pacific +pachelo +pacer +paccione +pabey +ozley +ozimek +ozawa +owney +outram +oun +ouillette +oudekerk +ouch +ostrosky +ostermiller +ostermann +osterloh +osterfeld +ossenfort +osoria +oshell +orsino +orscheln +orrison +ororke +orf +orellano +orejuela +ordoyne +opsahl +opland +onofre +onaga +omahony +olszowka +olshan +ollig +oliff +olien +olexy +oldridge +oldfather +older +olalde +okun +okumoto +oktavec +okin +oka +ohme +ohlemacher +ohanesian +odneal +odgers +oderkirk +odden +ocain +obradovich +oakey +nussey +nunziato +nunoz +nunnenkamp +nuncio +noviello +novacek +nothstine +nostrand +northum +norsen +norlander +norkus +norgaard +norena +nored +nobrega +niziolek +ninnemann +nievas +nieratko +nieng +niedermeyer +niedermaier +nicolls +niang +newham +newcome +newberger +nevills +nevens +nevel +neumiller +netti +net +nessler +neria +nemet +nelon +nellon +neller +neisen +neilly +neifer +neid +negro +neering +neehouse +neef +needler +nebergall +nealis +naumoff +naufzinger +narum +narro +narramore +naraine +napps +nansteel +namisnak +namanny +nallie +nakhle +naito +naccari +nabb +myracle +myra +myhand +mwakitwile +muzzy +muscolino +musco +muscente +muscat +muscara +musacchia +musa +murrish +murfin +muray +munnelly +munley +munivez +mundine +mundahl +munari +mulling +mullennex +mullendore +mulkhey +mulinix +mulders +muhl +muenchow +muellner +mudget +mudger +muckenfuss +muchler +mozena +movius +mouldin +motola +mosseri +mossa +moselle +mory +morsell +morrish +morles +morie +morguson +moresco +morck +moppin +moosman +moons +montuori +montono +montogomery +montis +monterio +monter +monsalve +mongomery +mongar +mondello +moncivais +monard +monagan +molt +mollenhauer +moldrem +moldonado +molano +mokler +moisant +moilanen +mohrman +mohamad +moger +mogel +modine +modin +modic +modha +modena +mlynek +miya +mittiga +mittan +mitcheltree +miss +misfeldt +misener +mirchandani +miralles +miotke +miosky +minty +mintey +mins +minnie +mince +minassian +minar +mimis +milon +milloy +millison +milito +milfort +milbradt +mikulich +mikos +miklas +mihelcic +migliorisi +migliori +miesch +midura +miclette +michele +michela +micale +mezey +mews +mewes +mettert +mesker +mesich +mesecher +merthie +mersman +mersereau +merrithew +merriott +merring +merenda +merchen +mercardo +merati +mentzel +mentis +mentel +menotti +meno +mengle +mendolia +mellick +mellett +melichar +melhorn +melendres +melchiorre +meitzler +mehtani +mehrtens +megan +meditz +medeiras +meckes +me +mcteer +mctee +mcparland +mcniell +mcnealey +mcmanaway +mcleon +mclay +mclavrin +mcklveen +mckinzey +mcken +mckeand +mckale +mcilwraith +mcilroy +mcgreal +mcgougan +mcgettigan +mcgarey +mcfeeters +mcelhany +mcdaris +mccomis +mccomber +mccolm +mccollins +mccollin +mccollam +mccoach +mcclory +mcclennon +mccathern +mccarthey +mccarson +mccarrel +mccargar +mccandles +mccamish +mccally +mccage +mcbrearty +mcaneny +mcanallen +mcalarney +mcaferty +mazzo +mazy +mazurowski +mazique +mayoras +mayden +maxberry +mauller +matusiak +mattsen +matthey +matters +matkins +mathiasen +mathe +mateus +mate +matalka +masullo +massay +mashak +mascroft +martinex +martenson +marsiglia +marsella +marseille +maroudas +marotte +marner +marlo +markes +marina +maret +mareno +marean +marcinkiewicz +marchel +marasigan +manzueta +manzanilla +manternach +manring +manquero +manoni +manne +mankowski +manjarres +mangen +mangat +mandonado +mandia +mancias +manbeck +mamros +mam +maltez +mallia +mallar +malla +mall +malen +malaspina +malahan +malagisi +malachowski +makowsky +makinen +makepeace +majkowski +majid +majestic +majercin +maisey +mainguy +mailliard +maignan +mahlman +maha +magsamen +magpusao +magnano +magley +magedanz +magarelli +magaddino +maenner +madnick +maddrey +madaffari +macnaughton +macmullen +macksey +macknight +macki +macisaac +maciejczyk +maciag +macho +machenry +machamer +macguire +macdougal +macdaniel +maccormack +maccabe +mabbott +mabb +lynott +lyndon +lym +lydia +lycan +luy +lutwin +luscombe +lusco +lusardi +luria +lunetta +lundsford +lumas +luisi +luevanos +lueckenhoff +ludgate +ludd +lucherini +lubbs +lozado +lovie +lourens +lounsberry +loughrey +loughary +lotton +losser +loshbaugh +loser +loseke +loscalzo +los +lortz +loperena +loots +loosle +looman +longstaff +longobardi +longbottom +lomay +lomasney +lohrmann +lohmiller +logalbo +loetz +loeffel +lodwick +lodrigue +lockrem +llera +llarena +liv +littrel +littmann +lisser +lippa +lipner +linnemann +lingg +lindemuth +lindeen +limbo +lillig +likins +lights +lieurance +liesmann +liesman +liendo +lickert +lichliter +leyvas +leyrer +lewy +leubner +letters +lesslie +lesnick +lesmerises +lerno +lequire +lepera +lepard +lenske +leneau +lempka +lemmen +lemm +lemere +leinhart +leichner +leicher +leibman +lehmberg +leggins +lebeda +leavengood +leanard +lazaroff +laventure +lavant +lauster +laumea +latigo +lasota +lashure +lasecki +lascurain +lartigue +larouche +lappe +laplaunt +laplace +lanum +lansdell +lanpher +lanoie +lankard +laniado +langowski +langhorn +langfield +langfeldt +landt +landingham +landerman +landavazo +lampo +lampke +lamper +lamery +lambey +lamadrid +lallemand +laisure +laigo +laguer +lagerman +lageman +lagares +lacosse +lachappelle +labs +laborn +labonne +kyung +kuzia +kutt +kutil +kus +kurylo +kurowski +kuriger +kupcho +kulzer +kulesa +kules +kuhs +kuhne +krutz +krus +krupka +kronberg +kromka +kroese +krizek +krivanek +krishna +kringel +kreiss +kratofil +krapp +krakowsky +kracke +kozlow +koy +kowald +kover +kovaleski +kothakota +kosten +koskinen +kositzke +korff +korey +korbar +kor +kopplin +koplin +koos +konyn +konczak +komp +komo +kolber +kolash +kolakowski +kohm +kogen +koestner +koegler +kodama +kocik +kochheiser +kobler +kobara +knezevich +kneifl +knapchuck +knabb +klutz +klugman +klosner +klingel +klimesh +klice +kley +kleppe +klemke +kleinmann +kleinhans +kleinberg +kleffner +kleckley +klase +kisto +kissick +kisselburg +kirsten +kirschman +kirks +kirkner +kirkey +kirchman +kipling +kinville +kinnunen +kingdom +kimmey +kimmerle +kimbley +kilty +kilts +killmeyer +killilea +killay +kiest +kierce +kiepert +kielman +khalid +kewal +keszler +kesson +kesich +kerwood +kerksiek +kerkhoff +kerbo +keranen +keomuangtai +kenter +kennelley +keniry +kendzierski +kempner +kemmis +kemerling +kelsay +kelchner +kela +keithly +keipe +kegg +keer +keahey +kaywood +kayes +kawahara +kasuboski +kastendieck +kassin +kasprzyk +karraker +karnofski +karman +karger +karge +karella +karbowski +kapphahn +kap +kannel +kamrath +kaminer +kamansky +kalua +kaltz +kalpakoff +kalkbrenner +kaku +kaib +kaehler +kackley +kaber +justo +juris +jurich +jurgenson +jurez +junor +juniel +juncker +jugo +jubert +jowell +jovanovic +josiah +joosten +joncas +joma +johnso +johanns +jodoin +jockers +joans +jinwright +jinenez +jimeson +jerrett +jergens +jerden +jerdee +jepperson +jendras +jeanfrancois +jazwa +jaussi +jaster +jarzombek +jarencio +janocha +jakab +jadlowiec +jacobsma +jach +izaquirre +iwaoka +ivaska +iturbe +israelson +ismael +isles +isachsen +isaak +irland +inzerillo +insogna +ingegneri +ingalsbe +inciong +inagaki +idol +icenogle +hyon +hyett +hyers +huyck +hutti +hutten +hutnak +hussar +husky +hurrle +hurford +hurde +hupper +hunkin +hunkele +hunke +hun +humann +huhtasaari +hugger +hugel +huge +hufft +huegel +hrobsky +hren +hoyles +howlin +hovsepian +hovenga +hovatter +houdek +hotze +hossler +hossfeld +hosseini +horten +hort +horr +horgen +horen +hoopii +hoon +hoogland +hontz +honnold +homewood +holway +holtgrewe +holtan +holstrom +holstege +hollway +hollingshed +holling +hollenback +hollard +holberton +hoines +hogeland +hofstad +hoetger +hoen +hoaglund +hirota +hintermeister +hinnen +hinders +hinderer +hinchee +himelfarb +himber +hilzer +hilling +hillers +hillegas +hildinger +hignight +highman +hierholzer +heyde +hettich +hesketh +herzfeld +herzer +hershenson +hershberg +hernando +hermenegildo +hereth +hererra +hereda +herbin +heraty +herard +hepa +henschel +henrichsen +hennes +henneberger +heningburg +henig +hendron +hendericks +hemple +hempe +hemmingsen +hemler +helvie +helmly +helmbrecht +heling +helin +helfrey +helble +helaire +heizman +heisser +heiny +heinbaugh +heigh +heidemann +heidema +heiberger +hegel +heerdt +heeg +heefner +heckerman +heckendorf +heavin +headman +haynesworth +haylock +hayakawa +hawksley +hawking +haverstick +haut +hausen +hauke +haubold +hattan +hattabaugh +hasten +hasstedt +hashem +haselhorst +harrist +harpst +haroldsen +harmison +harkema +hark +harison +hariri +harcus +harcum +harcourt +harcharik +hanzel +hanvey +hantz +hansche +hansberger +hannig +hanken +hanhardt +hanf +hanauer +hamberlin +halward +halsall +hals +hallquist +hallmon +halk +halbach +halat +hajdas +hainsworth +haik +hahm +hagger +haggar +hader +hadel +haddick +hackmann +haasch +haaf +guzzetta +guzy +gutterman +gutmann +gutkowski +gustine +gursky +gurner +gunsolley +gumpert +gumbel +gulla +guilmain +guiliani +guier +guers +guerero +guerena +guebara +guadiana +grunder +grothoff +grosland +grosh +groos +grohs +grohmann +groepper +grodi +grizzaffi +grissinger +grippi +grinde +griffee +grether +greninger +greigo +gregorski +greger +grega +greenberger +graza +grattan +grasse +gras +grano +gramby +gradilla +govin +goutremout +goulas +gotay +gosling +gorey +goren +gordner +goossen +goon +goodwater +gonzaga +gonyo +gonska +gongalves +gomillion +gombos +golonka +gollman +goldtrap +goldammer +golas +golab +gola +gogan +goffman +goeppinger +godkin +godette +glore +glomb +glauner +glassey +glasner +gividen +giuffrida +gishal +giovanelli +ginoza +ginns +gindlesperger +gindhart +gillem +gilger +giggey +giebner +gibbson +giacomo +giacolone +giaccone +giacchino +ghere +gherardini +gherardi +gfeller +getts +gerwitz +gervin +gerstle +gerfin +geremia +gercak +general +gener +gencarelli +gehron +gehrmann +geffers +geery +geater +gawlik +gaudino +garsia +garrahan +garrabrant +garofolo +garigliano +garfinkle +garelick +gardocki +garafola +gappa +gantner +ganther +gangelhoff +gamarra +galstad +gally +gallik +gallier +galimba +gali +galassi +gaige +gadsby +gabby +gabbin +gabak +fyall +furney +funez +fulwider +fulson +fukunaga +fujikawa +fugere +fuertes +fuda +fryson +frump +frothingham +froning +froncillo +frohling +froberg +froats +fritchman +frische +friedrichsen +friedmann +fridge +friddell +frid +fresch +frentzel +freno +frelow +freimuth +freidel +freehan +freeby +freeburn +fredieu +frederiksen +fredeen +frazell +frayser +fratzke +frattini +franze +franich +francescon +francesco +frames +framer +fraiser +fragman +frack +foxe +fowlston +fosberg +fortna +fornataro +forden +foots +foody +fogt +foglia +fogerty +fogelson +flygare +flowe +florentine +flinner +flem +flatten +flath +flater +flahaven +flad +fjeld +fitanides +fistler +fishbaugh +firsching +fireman +finzel +finical +fingar +filosa +filicetti +filby +fierst +fierra +ficklen +ficher +fersner +ferrufino +ferrucci +fero +ferns +ferlenda +ferko +fergerstrom +ferge +fenty +fent +fennimore +fendt +femat +felux +felman +feldhaus +feisthamel +feijoo +feiertag +fehrman +fehl +feezell +feeny +feeback +fedigan +fedder +fechner +feary +fayson +faylor +fauteux +faustini +faure +fauci +fauber +fattig +farruggio +farrens +fare +faraci +fantini +fantin +fanno +fannings +faniel +fallaw +falker +falkenhagen +fajen +fahrner +fabel +fabacher +eytcheson +eyster +exford +exel +exe +evetts +evenstad +evanko +euresti +euber +etcitty +estler +esther +essner +essinger +esplain +espenshade +espanol +espaillat +escribano +escorcia +errington +errett +errera +erlanger +erenrich +erekson +erber +entinger +ensworth +ensell +enno +ennen +englin +engblom +engberson +encinias +enama +emel +elzie +elsbree +elmo +elman +elm +ellebracht +elkan +elfstrom +elerson +eleazer +eleam +eldrige +elcock +einspahr +eike +eidschun +eid +eickman +eichele +eiche +ehlke +eguchi +eggink +edouard +edgehill +eckes +eblin +ebberts +eavenson +earvin +eardley +eagon +eader +dzubak +dylla +dyckman +dwire +dutrow +dutile +dusza +dustman +dusing +duryee +durupan +durtschi +durtsche +durell +dunny +dunnegan +dunken +dun +dumm +dulak +duker +dukelow +dufort +dufilho +duffee +duett +dueck +dudzinski +dudasik +duckwall +duchemin +dubrow +dubis +dubicki +duba +drust +druckman +drinnen +drewett +drewel +dreitzler +dreckman +drappo +draffen +drabant +doyen +dowding +doub +dorson +dorschner +dorrington +dorney +dormaier +dorff +dorcy +donges +donelly +donel +domangue +dols +dollahite +dolese +doldo +doiley +dohrman +dohn +doheny +doceti +dobry +dobrinski +dobey +divincenzo +dischinger +dirusso +dirocco +dipiano +diop +dinitto +dinehart +dimsdale +diminich +dimalanta +dillavou +dilello +difusco +diffey +diffenderfer +diffee +difelice +difabio +dietzman +dieteman +diepenbrock +dieckmann +dicey +dicampli +dibari +diazdeleon +diallo +dewitz +dewiel +devoll +devol +devincent +devier +devendorf +devalk +detten +detraglia +dethomas +deter +detemple +desler +desharnais +desanty +derocco +dermer +derks +derito +derick +derhammer +deraney +dequattro +depass +depadua +deon +denzel +denyes +denyer +dentino +denlinger +deneal +demory +demopoulos +demontigny +demonte +demeza +delsol +delrosso +delpit +delpapa +delouise +delone +delo +delmundo +delmore +delmar +dellapaolera +delfin +delfierro +deleonardis +delenick +delcarlo +delcampo +delcamp +delawyer +delaware +delaroca +delaluz +delahunt +delaguardia +dekeyser +dekay +dejaeger +dejackome +dehay +dehass +degraffenried +degenhart +degan +deever +deedrick +deckelbaum +dechico +decent +dececco +decasas +debrock +debona +debeaumont +debarros +debaca +dearmore +deangelus +dealmeida +dawood +davney +daudt +datri +dasgupta +darring +darracott +darius +darcus +daoud +dansbury +dannels +danish +danielski +danehy +dancey +damour +dambra +daman +dalcour +daisey +dahlheimer +dagon +dadisman +dacunto +dacamara +dabe +cyrulik +cyphert +cwik +cussen +curles +curit +curby +curbo +cunas +cunard +cunanan +cumpton +culcasi +cui +cucinotta +cucco +csubak +cruthird +crumwell +crummitt +crumedy +crouthamel +cronce +cromack +cristina +crisafi +crimin +cresto +crescenzo +cremonese +creedon +credit +crankshaw +cozzens +cove +coval +courtwright +courcelle +coupland +counihan +coullard +cotrell +cosgrave +cornfield +cornelio +corish +cordoua +corbit +coppersmith +coonfield +cools +conville +contrell +contento +conser +conrod +connole +congrove +conery +condray +colver +coltman +colflesh +colcord +colavito +colar +coile +coggan +coenen +codling +coda +cockroft +cockrel +cockerill +cocca +coberley +coaster +clouden +clos +clive +clish +clint +clinkscale +clester +clammer +city +cittadino +citrano +ciresi +cillis +ciccarelli +ciborowski +ciarlo +ciardullo +chritton +chopp +choo +chirco +chilcoat +chevarie +cheslak +chernak +chay +chatterjee +chatten +chatagnier +chastin +chappuis +channing +channey +champlain +chalupsky +chalfin +chaffer +chadek +chadderton +cestone +cestero +cestari +cerros +cermeno +centola +cedrone +cayouette +cavan +cavaliero +casuse +castricone +castoreno +casten +castanada +castagnola +casstevens +cassio +cassi +cassanova +caspari +casher +cashatt +casco +casassa +casad +carville +carvel +cartland +cartegena +carsey +carsen +carrino +carrilo +carpinteyro +carmley +carlston +carlsson +carie +cariddi +caricofe +carel +cardy +carducci +carby +carangelo +capriotti +capria +caprario +capelo +canul +cantua +cantlow +canny +cangialosi +canepa +candland +campolo +campi +camors +camino +camfield +camelo +camarero +camaeho +calvano +callum +calliste +caldarella +calcutt +calcano +caissie +cager +caccamo +cabotage +cabble +byman +buzby +butkowski +bussler +busico +bushy +bushovisky +busbin +busard +busalacchi +burtman +burrous +burridge +burrer +burno +burin +burgette +burdock +burdier +burckhard +bunten +bungay +bundage +bumby +bultema +bulinski +bulan +bukhari +buganski +buerkle +buen +buehl +bue +budzynski +buckham +bub +bryk +brydon +bruyere +brunsvold +brunnett +brunker +brunfield +brumble +brue +brozina +brossman +brosey +brookens +broersma +brodrick +brockmeier +brockhouse +brisky +brinkly +brine +brincefield +brighenti +brigante +brieno +briede +bridenbaugh +bridegroom +brickett +bria +breske +brener +brenchley +breitkreutz +breitbart +breister +breining +breighner +breidel +brehon +breheny +breard +brean +breakell +breach +brazill +braymiller +braum +brau +brashaw +bransom +brandolino +brancato +branagan +braff +brading +bracker +brackenbury +bracher +braasch +boylen +boyda +boyanton +bowlus +bowditch +boutot +bouthillette +boursiquot +bourjolly +bouret +bouquet +boulerice +bouer +bouchillon +bouchie +bottin +boteilho +bosko +bosack +borys +bors +borla +borjon +borghi +borah +booty +booten +boore +bonuz +bonne +bongers +boneta +bonawitz +bonanni +bomer +bollen +bollard +bolla +bolio +boisseau +boies +boiani +bohorquez +boghossian +boespflug +boeser +boehl +boegel +bodrick +bodkins +bodenstein +bodell +bockover +bocci +bobbs +boals +boahn +boadway +bluma +bluett +bloor +blomker +blevens +blethen +bleecker +blayney +blaske +blasetti +blancas +blackner +blackie +bjorkquist +bjerk +bizub +bisono +bisges +bisaillon +birr +birnie +bires +birdtail +birdine +bina +billock +billinger +billig +billet +bigwood +bigalk +bielicki +biddick +biccum +biafore +bhagat +beza +beyah +bex +bevier +bevell +beute +betzer +betthauser +bethay +bethard +beshaw +bertholf +bertels +berridge +bernot +bernath +bernabei +berkson +berkovitz +berkich +bergsten +berget +berezny +berdin +beougher +benthin +benhaim +benenati +benejan +bemiss +beloate +bellucci +bells +bellotti +belling +bellido +bellaire +bellafiore +bekins +bekele +beish +behnken +beerly +beddo +becket +becke +bebeau +beauchaine +beaucage +beadling +beacher +bazar +baysmore +bayers +baun +baulch +baucher +batto +baton +bathe +basora +baruffi +bartimus +bartholemew +barrickman +barribeau +barreda +barrack +baroody +barness +barn +barmer +barillari +barias +barginear +barg +barde +barbone +barbato +barbarin +baoloy +bansal +bangle +banducci +bandel +bambeck +balter +ballif +baller +balladares +balkus +baldy +baldivia +balcerzak +balazs +baksh +bakr +bakemeier +baisey +bainer +bailly +bagge +badua +badini +bachtell +bachrodt +bachorski +bacak +babula +bable +babjeck +babecki +azbell +ayudan +awai +avita +avino +avellar +auzat +autman +autio +autery +ausman +ausland +aulabaugh +augle +aughenbaugh +augeri +audi +attleson +attig +attal +ator +asselmeier +askland +asiello +asch +arya +artola +arslanian +arron +arrezola +arnesen +arnau +armster +armintrout +armento +armato +arkenberg +ariaza +arguin +arenson +areias +archut +archibold +arave +arand +appelman +appello +antonson +antoniewicz +antill +antigua +annino +anness +anneler +angustia +angry +angiolillo +angelico +andreula +andreen +andreassi +andeson +ander +anda +anania +anadio +amicone +amenta +alzaga +alwardt +aluarado +altreche +altic +alsobrooks +alpern +almodova +almas +alltop +alliston +allio +alipio +alicandro +alibozek +alguire +alff +alcalde +alborn +albery +alberry +albany +albani +albanez +alavi +akkerman +ahlheim +agresti +agnelli +agilar +agib +aggas +afton +afonso +adil +adi +adank +adamsky +acri +accurso +abruzzese +abrew +abeln +abdullai +abdulkarim +abdelrahman +abbenante +abatiell +abaloz +zyskowski +zwiefel +zurmiller +zupancic +zuno +zumsteg +zumbrennen +zumaya +zullinger +zuleger +zozaya +zourkos +zorrilla +zorko +zolocsik +zittel +ziobro +zimmerly +zimmerli +zillmer +zigmond +zierer +zieber +zide +zevenbergen +zephier +zemel +zelazo +zeitlin +zeiser +zehring +zeger +zedian +zearfoss +zbranek +zaya +zatarain +zasso +zarn +zarilla +zari +zapp +zapf +zanghi +zange +zamacona +zalesky +zalazar +zaki +zafar +zade +yusko +yurman +yurkovich +yuhasz +younge +yiu +yeasted +yarrito +yark +yarboro +yannuzzi +yankovich +yanagawa +yago +yaffe +wyndham +wyms +wyand +wuensch +wryals +wrubel +worosz +woolstenhulme +wolpe +wolner +wolgamot +wolfman +wojtaszek +woeppel +woehr +wodarski +wizwer +wittkop +wisseman +wisor +wishum +wischmann +wisch +wirkkala +wion +wintjen +wintermute +wintermantel +winks +winkey +winham +windschitl +willow +willitzer +willier +willets +willenbrink +willen +willaimson +wilfahrt +wilenkin +wilen +wildeboer +wilchek +wigren +wignall +wiggington +wierson +wiegman +wiegel +widmayer +wider +widder +wickey +wickers +wical +whiton +whitenton +whiteleather +whiston +whirley +whetham +wheatly +wetenkamp +westenberger +westenbarger +westall +werblow +wengel +welson +welschmeyer +wellmann +wellbrock +wela +wekenborg +weiter +weisenstein +wehmann +weeda +wede +webley +waver +wauford +waterworth +watchorn +wassinger +wassell +wasp +wasiuta +warnix +warning +warnes +warmoth +warling +warila +warga +warburg +wanzer +want +waner +wanek +walwyn +walle +walkner +walin +waletzko +waler +walenta +wainer +wailes +wahr +waddel +wactor +wachtler +wachsman +wachowski +vulgamore +vukelich +vote +vost +voskamp +vorwerk +vongphakdy +volpi +volle +volino +voeks +vodopich +vittone +virdin +virag +vinroe +vinegar +vindiola +vilmont +villerreal +villaneva +villalobas +villada +vilhauer +vilchis +vilches +viggiani +vig +vieux +viets +vient +vielle +viejo +vidovich +vichi +veys +veverka +verser +veronesi +vernoy +vermont +verhines +verheyen +veren +vereb +verano +venuto +ventry +ventrone +veltz +velo +velazguez +veeser +vassey +vasque +varin +varaza +varady +vaquez +vaquerano +vansteenwyk +vanschoick +vanroekel +vannorden +vanlent +vangrouw +vangelder +vanes +vanelli +vanderkar +vanderbeek +vandenburgh +vandekieft +vandekamp +vancura +vancooten +vanconey +vancampen +vanaria +valvano +vallette +vallero +valiton +valin +valeri +valek +valdovino +valdivieso +vakas +vagas +vadala +vaccarella +vacanti +urrabazo +urguhart +urda +urbino +urbas +upmeyer +umphlett +ulerio +uitz +uchimura +uccello +tysdal +ty +tweedle +turrubiates +turrubiartes +turri +turnham +turko +turben +tupin +tumulty +tuffey +tuckey +tuckett +tucholski +tubolino +tubergen +tsuboi +tschumperlin +tschoepe +trynowski +tryba +truslow +truog +trumball +trudelle +trojillo +trnka +trizarry +trigueiro +trigleth +tricomi +tresselt +trentacoste +trendell +trenary +treml +treleven +treherne +treasure +trayer +travino +traugott +trappey +tranbarger +tramontano +tramell +trainum +traino +traill +trabucco +townsell +tourtillott +touar +toscani +torrella +torguson +torda +top +toomes +tonner +tommasino +tomaro +tolve +tolefree +toguchi +tofflemire +tofanelli +tody +toce +tobacco +toan +toalson +tkacik +tirone +tipple +tippery +tinson +tinnell +timper +timmers +times +timblin +tilotta +tillberg +tijernia +tigges +tigar +tielking +thyng +thonen +thomley +thombs +thimmesch +thier +thevenin +theodorov +theodoropoulo +tharnish +tharaldson +thackaberry +tewari +tetu +tetter +tersigni +tepezano +tennon +tennent +teichman +teehan +tayloe +taus +tatis +tata +tat +tashima +tarufelli +tarlow +tarkowski +tarka +targett +taran +tarabokija +tappen +tanzer +tanous +tanigawa +taneja +tammo +tallerico +tallada +talk +talhelm +takehara +takata +tagliavia +taffer +tadman +tacdol +tacconi +tables +szewczak +szeredy +szanto +sympson +symmes +syers +sydney +syas +swinny +swierk +swendsen +sweigard +sweezey +sweesy +sween +sweely +sweed +sweazy +swauger +swansbrough +swango +swanda +swamp +swallows +swaggerty +svatek +survant +surowka +surina +suozzi +sunstrom +sunford +sundseth +sundahl +summerill +sumida +sumbler +suma +sulyma +sulla +sulieman +suit +sugiyama +suell +sudo +suddreth +sucher +sturn +sturkey +studzinski +studler +stuckmeyer +stryjewski +stroy +strotman +strollo +stroik +stroede +streeby +stredny +strazi +stray +strawderman +straiton +stower +stoudmire +stormont +stopka +stoneback +stoldt +stolarz +stolarski +stockmaster +stobb +stivason +stirk +stipp +stipes +stingel +stike +stiebel +stidd +steurer +sterley +sterle +stepro +stepovich +stephson +stenseth +stenerson +stello +steinbrook +steidley +stehlin +stegmaier +stefanow +steese +steenhuis +stavely +stave +stautz +staunton +stater +stas +startup +startt +startin +starratt +stargell +starcevich +stank +stanis +standing +stancliff +stanchfield +stanbrough +stakes +stahmer +staheli +staebell +stadtlander +stadheim +sroufe +sroczynski +srnsky +sreaves +srader +squeo +spuler +sproat +springmeyer +sprengeler +sport +spolar +spivack +spinale +spiegler +spickerman +spessard +spenner +speich +spaziano +sparaco +spalter +sowells +sovich +southmayd +southgate +sotto +sotomayer +sosaya +sorvillo +sorrel +soos +songco +somerset +somero +soll +soldan +solarzano +solana +sokal +soibelman +soesbe +sobotta +sobina +sobeck +soard +snorton +snopek +snoozy +snethen +smithhisler +smee +smaniotto +slusarski +slowe +slotnick +sleva +sleighter +slappey +skyers +skutt +skorcz +skoczylas +skillicorn +skiffington +skibicki +skerl +skehan +skalla +siwinski +sivley +sittloh +sitterly +sith +sit +sise +siroky +sirles +sirin +sirignano +siren +sinsabaugh +sinks +sinisi +sinibaldi +singson +sindlinger +simpkin +siminski +simcoe +siford +siegert +sidor +sidhom +siddique +siddell +sicotte +sichting +sicari +sic +siano +shufflebarger +shramek +shortnacy +sholler +sholette +sholders +shogren +shoenberger +shoemate +shoat +shinoda +shines +shimshak +shigley +sheward +shetrone +shetlar +sherretts +sherod +shenkle +shely +sheltra +shelpman +shellabarger +shelite +sheldrick +shelburn +sheinbein +shebby +shawley +shatrau +shartle +sharifi +shanker +shami +shamel +shamburg +shamas +shallow +shaffstall +shadowens +shackleton +shaak +seykora +seyfert +sevillano +sevcik +seubert +seu +setter +sesler +servatius +serrant +serramo +serl +serini +serenil +serapion +sept +sensibaugh +sens +senich +sengbusch +sendra +senate +semrau +semrad +sempertegui +semons +semke +selma +sellinger +seliga +sekel +seilheimer +seigfried +seesholtz +seefeld +seecharran +sedrakyan +seavy +search +seamster +seabold +scyoc +sculley +scullawl +scrogham +scow +scopa +scontras +sciulli +sciola +scifres +schweyen +schwering +schwerdtfeger +schweim +schweikert +schweder +schwebel +schwartzwalde +schusterman +schuhmann +schuerman +schuchman +schrotenboer +schreurs +schoppert +schopper +schools +schoneman +scholfield +schoeppner +schoenleber +schoeman +schoel +schnurbusch +schnepel +schnader +schlarb +schlappi +schlangen +schlaht +schiraldi +schinkel +schimizzi +schifo +schiesher +scheyer +schettler +scheppke +schepper +scheinost +scheidel +scheets +schatzman +scharwath +scharp +schaarschmidt +schaack +scarnato +scarnati +scaringi +scarcia +scarano +sberna +sawina +sawer +sawaya +sawatzky +savcedo +sauser +saumier +sauchez +sauceman +sathre +satawa +sasala +sartoris +sare +sarchet +saracco +santulli +santory +santorelli +santopietro +sansing +sanseverino +saniatan +sangiacomo +sanges +sanfratello +sanflippo +sandona +sandelin +sandate +samona +sammis +sambor +samano +salvitti +salvietti +salvi +salum +salsa +salonek +salm +salles +sall +salera +salemo +salee +salak +sakihara +sakasegawa +sakaguchi +sagastegui +saeturn +sadan +sacayanan +saborio +sabeiha +sabedra +sabagh +rzepecki +rzasa +ryser +ryner +rydman +rycroft +rybij +ruyes +ruttan +russon +rushe +rusert +rusell +runnells +rundstrom +rumschlag +rullman +ruka +ruiloba +ruh +ruggs +ruffer +ruest +rueluas +rueger +ruediger +rubinoff +rubendall +rozmus +roxburgh +rowls +rousch +rothove +rotelli +roszel +roske +roskam +rosensteel +rosendo +roome +rombough +romash +romanson +romanello +romance +rolison +rogol +rogas +roese +roehrs +roegner +roeger +rodrguez +rodeman +rodebaugh +rockenbaugh +rocconi +robleto +robateau +roarty +roaf +rivenberg +rivara +rivali +risse +risby +ripperger +riopelle +ringrose +rinebarger +rile +riggen +rigano +riff +rifenbark +rieper +rieffenberger +riedmayer +ridolfi +ridderhoff +rickon +rickers +rickels +richoux +richens +ribao +rhodarmer +rheingans +reznik +reveron +reus +reph +renko +remme +remlinger +remke +remily +reitano +reissig +reisher +reinitz +reinholtz +reines +reigstad +reigh +reichelderfer +rehnert +rehagen +redline +rediger +redhouse +redepenning +recla +rechkemmer +reando +razavi +rayson +rayna +rax +raveling +rauser +rauschenberg +raupach +raum +rauen +ratulowski +ratterree +ratering +rapin +rannels +rane +randhawa +ramus +ramsfield +rams +ramroop +ramano +raj +raina +raikes +ragonese +rafaniello +raetz +raether +raeside +radwan +radman +rademaker +radar +racki +rachlin +rabena +rabassa +rabadan +raad +quoss +quizon +quito +quintela +quimet +quilty +quilimaco +quidley +quezaire +quave +quarto +quaranto +quandel +qiu +qazi +pyrdum +pyon +pyeatt +puzinski +putnal +punter +pumphery +pumper +pump +pummell +pumarejo +pulvermacher +pultz +pully +pullens +pulkrabek +pulk +pudlinski +puccetti +przygocki +przybyszewski +prusha +prudente +prucnal +prottsman +prosch +prodoehl +procell +prinzivalli +primes +prey +presnar +presho +prentis +preisler +preisel +pratka +pratcher +prass +pozzuoli +powanda +poundstone +potters +potra +potestio +potempa +postlethwait +posas +portrum +portland +portilla +portie +popovitch +popken +ponzio +pontremoli +pontarelli +pombo +pomainville +polycarpe +pollart +politowski +politano +poliquin +polczynski +pokoj +poitevint +poissonnier +poeppel +poellot +poehlman +poehlein +podratz +pociask +plocher +pline +plessinger +plautz +platten +plass +plageman +placko +pizzola +pizzella +pittsenbarger +pittner +pitstick +pitsch +pitney +pitaniello +pistoresi +pirc +pinski +pinera +pincock +pinckley +pincince +piliero +pilat +pigue +pietschman +pierpoint +pierini +picon +picking +picardi +phlegm +phippin +phetteplace +pharel +pfundt +pfluger +pfeuffer +pfefferle +pezzulo +pezzano +peveler +pettersson +petsch +petrusky +petruska +petrulis +petrossian +petroske +petrini +petitte +petito +petela +petaccio +pesto +pestka +pesta +pessoa +perun +perrow +perricone +peros +perney +perlin +perigo +perella +percle +pepple +penz +penttila +pensiero +penigar +penez +pendrak +penas +pellowski +pellow +pellin +pelissier +pelini +pekrul +peevey +pedraja +pecher +peasel +payment +pavolini +paviolitis +paulsell +paulina +paule +patrum +patrone +patrie +patras +patera +patek +patane +pastrano +pastora +passow +passley +passaretti +passantino +paske +partible +parsa +parnes +parliman +parlato +paravati +paradowski +papaleo +papagni +paoletta +panzarino +pannunzio +panis +pandit +paluzzi +palomin +palomaki +pallanes +palla +pall +palino +palfreyman +palazzi +palanza +palagi +painton +pain +pahulu +paganico +paeth +padlo +padillia +paddy +paddick +paciolla +pacholski +paap +paa +owolabi +overshown +overocker +overgaard +ouchi +ottoson +ostrye +osterland +osland +oslan +osick +osen +osdoba +osberg +orzel +ortmeier +orren +ormerod +orio +orgeron +orengo +orbaker +opiela +opdahl +onks +oltrogge +olnick +olivarres +olide +oleksy +olaya +okray +okonek +okinaka +ojima +ojala +oinonen +ohotto +ohan +ogwin +ogborn +oflaherty +offill +oetken +oertle +oehlert +odems +oconnel +ocha +ocarroll +oby +oblak +oberst +obermann +obas +oachs +nydegger +nybo +nuuanu +nutile +nuse +nuriddin +nungesser +nuber +noy +novinger +nouri +northan +norseworthy +norrod +normington +nori +norenberg +nordine +nop +noori +noblet +nives +nist +niskala +nilan +nikolai +nigl +nightengale +nichole +ni +nhek +ngvyen +newville +newsam +newnham +newmeyer +newlan +newbert +neuschwander +neusch +neun +nethken +nethercutt +nesser +neske +neman +nelton +nelles +nekola +neiling +neeser +neelly +nedved +neang +navejar +naveja +nauarro +natho +nathe +natcher +naser +nasby +narlock +nanton +naillon +naill +naguin +nagele +naftzger +naegle +naegele +naef +nacke +nabritt +mynhier +myart +muzquiz +mutty +musolino +mushero +murtaugh +murie +muresan +murdough +mura +munuz +munstermann +munsen +munselle +munise +mungle +munerlyn +muncher +mulrooney +mullee +mulaney +mulanax +muhlhauser +muhlestein +mugleston +mugg +mugford +muckel +mucerino +mt +mrotek +mrnak +mozdzierz +moyler +moury +moulin +moulding +moul +mottai +mostyn +mosimann +mosholder +mosburg +morrisseau +moron +morice +morgante +moreta +morcos +morasco +morante +mooe +montori +montminy +monteforte +montante +montanari +monsees +mondier +monden +monckton +monce +monarch +monarca +mompoint +mollema +molin +molima +molen +molash +moher +mogle +mogannam +moel +moehn +modesitt +mobilia +moag +miyagawa +mivshek +miu +mittman +mittleman +mittelsteadt +mittelstaedt +mitsch +mithell +miscione +mirbaha +mirabelli +mir +minon +minniti +minnerly +mingrone +minervini +minerd +minarcin +mimnaugh +milord +milnor +milnik +millers +milkowski +mikrot +mikles +miglorie +mientka +midthun +middlesworth +micklos +mickler +michetti +michelli +michelet +micallef +meyn +meullion +mette +metoxen +messore +messano +mesaros +mertel +merritts +merrion +merril +mermis +merlini +merker +meridith +mergel +merbaum +mente +mensi +menninger +mennen +menlove +menken +menezes +menette +mendyk +mendoca +mendivel +mendias +menasco +melloy +mellema +mellard +melis +meldahl +melberg +meirick +meinel +meiler +meile +meidl +meerdink +meer +medus +meduna +medovich +medine +medico +medici +mcvaigh +mctier +mcquirk +mcnight +mcmurrey +mcmurdo +mcmorries +mcmilleon +mcmickell +mcmicheal +mcmeel +mcleese +mclee +mclaws +mclanahan +mclaird +mckusker +mckibbens +mckenley +mckenize +mckendall +mckellop +mckellip +mckeirnan +mcinvale +mcguffee +mcgrue +mcgregory +mcgrann +mcgoey +mcglinn +mcgillicuddy +mcgillen +mcgeachy +mcgarrell +mcgannon +mcgalliard +mcfarlen +mcevers +mcerlean +mcennis +mcelvany +mcelvaine +mcdonal +mcdavitt +mccullick +mccrone +mccreadie +mccoun +mcconchie +mcconaughy +mcconahy +mcconaghy +mccomsey +mccoggle +mcclimans +mccleod +mccleaf +mcclafferty +mccatty +mccarry +mccance +mccament +mccaghren +mcbreen +mcardell +mcabier +mazell +mayotte +maybrier +mavis +mautone +matuszek +mattimoe +mattey +matterson +matten +matsushima +matsubara +matrone +matras +mato +matier +matheus +massucci +massoni +massare +maslin +mashaw +mase +mascola +masci +marze +marvray +marusak +martowski +martiny +martie +martabano +marsha +marschel +marsack +marsac +marohnic +markve +markis +marking +marken +marioni +marichalar +margosian +maretti +mardesich +marcussen +marchessault +marcey +maraldo +marafioti +manzanero +manwill +manual +manocchio +manko +manista +manire +manikowski +manganiello +manetta +mandy +mandino +mandarino +mancinelli +manasse +manary +manalang +malling +mallahan +maliska +malet +maleski +maldonaldo +malaterre +malaney +malagarie +malabe +maks +makinster +makar +maita +maiolo +mahley +magos +mago +magnotti +magnant +maglott +maglori +maenius +madkin +madarang +madagan +macrina +macquarrie +macphee +macneal +macmahon +maclellan +mackeen +maciver +machkovich +machan +macewen +macera +macer +maceachern +macdonell +macaskill +maaske +lysaght +lynum +lynema +lyas +lutton +luttman +lutsky +luthi +lutfy +lupoe +lundrigan +lunderville +lukan +luedeman +ludke +lucore +lucksinger +lucks +luckner +lucarell +lubelski +luarca +luaces +lozinski +loynes +lowis +lovorn +loverde +lovasz +loughery +lotzer +losito +loschiavo +lorsung +lorquet +lorkowski +lorino +lorey +lorente +loreman +lopaz +looft +lonie +longman +longhofer +longan +lomascolo +lomack +lolagne +lokaphone +logins +loggin +lofredo +loffler +loescher +loendorf +locus +lockyer +lockheart +lobendahn +lobasso +lob +lizana +livshits +litzau +litty +litteer +litsey +litrenta +litner +liszewski +lisman +lisboa +liquet +liptok +lineweaver +lindenpitz +lindel +lime +lillywhite +life +lievano +lieblong +liebler +lidey +libutti +liborio +libengood +leyson +leyland +lewczyk +lewark +leviner +levenstein +leuenberger +leszczynski +lestage +leske +lerwick +leray +lepkowski +leonor +lenyard +lenger +lendon +lemarie +leman +lelle +leisner +leisey +leischner +leimer +leigers +leiferman +leibfried +lehoullier +lehnortt +legget +legato +legath +legassie +legarreta +leftridge +leewright +ledsome +lecrone +lecourt +lecky +lechman +lebsack +lebouf +lebon +leazer +leavins +leadbeater +lawwill +lawall +lavorini +laviero +lavertue +lavalais +lautenbach +lausier +laurita +lauriano +laurange +launey +laughead +laufenberg +lauderman +laubhan +latunski +latulas +lastrape +lastiri +lason +laskoski +lasanta +laroux +larizza +larive +larish +laquerre +lappas +lapilio +lapadula +lapa +lanzi +lanzafame +lantier +lanski +laningham +langon +langdale +landron +landero +landauer +landacre +lamport +lamping +lamott +lamonda +lammi +lambiase +laite +lahaye +laframboise +lafone +laferte +laeger +ladieu +ladabouche +lachat +labonville +labbee +labatt +laban +kynaston +kwaterski +kuzniar +kuthe +kuter +kutchar +kurtin +kuramoto +kupstas +kuperman +kuns +kullmann +kuligowski +kukielka +kuehler +kudrna +kubie +kubera +kubas +kuba +kualii +krysinski +kryder +kronberger +kroft +kroencke +kristiansen +krigger +krieser +kretschman +krentz +krenke +kremers +kreitner +kreimer +kray +krawchuk +kravs +kranich +krampitz +kragh +krager +kozuch +kozloski +kozatek +kozakiewicz +kovalsky +kovalcik +kovack +kotera +kot +koszyk +kostel +kosmicki +koshy +korona +koroma +korba +koopmann +konstantinidi +kolodzik +kolodzieski +kolle +kolkmann +kolker +kolda +kokaly +kofford +koepper +koeing +koehnen +kodish +kodani +kocur +kocourek +kobza +koble +koback +knutzen +knows +knolton +knoblauch +knispel +knieper +knepshield +klyce +klunk +kluka +klostermann +klosinski +klish +klint +klinner +klindt +klimko +klicker +kleman +kleinsorge +kleinfelder +kleier +klas +klaman +kizzee +kitto +kitka +kirtdoll +kirscht +kintzer +kinstle +kinning +kinniburgh +kinnett +kinker +kinkelaar +kings +kingham +kingfisher +kimmet +killingbeck +kilberg +kikuchi +kikkert +kiesow +kienitz +kidner +kida +kid +khuu +khatak +khaleck +kezar +keyton +ketelhut +kesley +keshishyan +kerzman +kertesz +kerslake +kerscher +kernes +kerin +ker +kenimer +kenfield +kempe +kemick +kem +keitsock +keisker +keery +keblish +kebalka +kearny +kearby +kayler +kavin +kauer +kattan +katoa +kassis +kashuba +kashan +kartman +karry +karpel +karo +karnopp +karmazyn +karjala +karcz +karasti +karagiannis +kapoi +kapanke +kanz +kaniewski +kanemoto +kaneholani +kandt +kampfer +kammann +kamler +kamal +kalvig +kalmen +kalmar +kallstrom +kallin +kallbrier +kakaviatos +kakar +kahahane +kagel +kabat +kabanuck +kaas +jurczak +jurasin +juras +junke +junghans +jungen +jund +juliusson +juhnke +juett +jolla +jokinen +jokela +joffe +joecks +jochumsen +joa +jeziorski +jesseman +jessamy +jernejcic +jergenson +jerdon +jensrud +jellinek +jedrey +jedele +jeannette +jauron +jatho +jarrel +januszewski +janski +janovsek +janning +janikowski +jane +jandres +jamaica +jalonen +jainlett +jahnsen +jahde +jagow +jagielski +jaffray +jaecks +jacquot +jacoway +jacocks +iwami +isadore +irmeger +irie +iredale +iqbal +inscoe +inklebarger +ingemi +immen +imig +imberg +imamura +illies +ilacqua +ijams +iha +iden +ibraham +ibey +ialongo +iafrate +hyzer +hyacinthe +huyard +huxman +hutchkiss +hutchingson +husson +hussman +hurm +hupka +hunyadi +hunstad +humpert +hummons +hultz +hulton +hules +huisenga +huhta +hugueley +hughe +huggler +hufton +huffstickler +huddelston +huba +hrivnak +hoysradt +howorth +howenstine +hovda +hourani +houglum +houch +hotalen +hosse +horwich +horvitz +horoschak +hornor +hornbrook +horita +hoque +hopman +hoovler +hoople +hookfin +honeysucker +honeycut +honerkamp +homyak +homa +holzwart +holzerland +holyoke +holtry +holterman +holohan +hollinshed +hollington +hollenshead +holey +holderby +holak +hokkanen +hohner +hogsed +hoglen +hogen +hogberg +hofland +hofius +hoffis +hofferber +hoffarth +hofacker +hoekman +hodor +hochstetter +hochnadel +hobbins +hoa +hlavaty +hittner +hitson +hirtz +hirschi +hinkes +hinke +hindley +hince +hilse +hilke +hilferty +hildesheim +hikes +hignite +higman +hiemer +hidden +hickinbotham +hewatt +hetz +hetsler +hessian +hershaw +herra +hernander +herlocker +hepper +henseler +henri +hennick +hennecke +hendrikson +henderlight +hellstrom +helderman +heitland +heistand +heiskell +heisinger +heiserman +heinritz +heinly +heinlen +heimerdinger +heimbigner +heidbreder +hegwer +hedeen +hebrank +heberlein +heaslet +hearin +hazle +hazelbush +hayzlett +hayre +haymans +hayenga +hayduk +haward +havner +haushalter +hauf +hatke +hatchel +hassard +haskovec +hashmi +harvest +harvath +hartill +harteau +harshfield +harrigill +harriet +haros +haroldson +harmeson +harl +harkley +hariston +harington +harian +hargus +hargens +hardina +haraldson +harajly +hapke +hapeman +hanz +hanthorn +hanry +hannen +hannasch +hannam +hanifan +hanft +handon +handford +hancher +hancey +hample +hammrich +hammerstrom +hambric +halwick +halma +hallgren +hallet +hallada +halla +halik +halgas +halcon +halbrooks +hakel +hairfield +hainesworth +haggarty +hagenhoff +hagebusch +hagadone +haft +haflett +haefele +haddow +hackbart +haberer +haass +gwinner +gwathney +gwartney +gutterrez +gutoski +gutkin +gutherie +gutches +gustus +gustison +gustaveson +gurtner +gurkin +gummo +gulliksen +gulke +guldin +gulden +guitierez +guile +guildford +guidice +gugerty +guffy +gueningsman +gudgell +guderjahn +guastella +guariglia +guardia +gryniuk +grueser +grudem +growden +grossett +gropper +gron +grodin +groch +grismore +gripper +grinvalsky +grima +griffth +griess +greynolds +gresh +greminger +gregoria +greenwade +greenlief +greenier +grayes +gravell +grassmyer +grappe +grantland +grandin +grandel +grandbois +granahan +gramham +graffeo +graeter +gradwell +gradel +grabo +graban +goy +govoni +governale +govern +gouty +goughnour +goude +goubeaux +goth +gosline +goslee +goshen +gosewisch +gorzynski +gortman +gorter +gordin +gord +goos +goodwine +goodrick +goodley +gombert +goletz +goldy +goldthwaite +goldthwait +goldizen +golar +goist +gofman +goffer +goerges +goeltz +goedicke +goedecke +godnick +gocke +goade +gneiser +gluth +glovier +glomski +glodo +gloden +glenister +glawson +glasier +gladysz +gladstein +gjertsen +giudice +gitto +gittelman +girvin +girolamo +gionfriddo +gingell +gimble +gilhousen +gilboy +gilberti +gigantino +gietzen +gieseking +gianikas +ghosn +ghosh +geyman +gevara +getsinger +gessert +gerrits +gerrior +geris +gerhauser +gerety +genzone +genuario +gentles +gentille +genter +genetti +gelle +gelfand +gelabert +gekas +geck +gearin +gdovin +gaydosh +gawith +gave +gauntlett +gaugler +gaudy +gaub +gatten +gathje +gasperini +gasner +gasco +gascho +gasbarro +garvis +garra +garnette +garing +garick +gardunio +gardon +gardemal +garde +garczynski +garant +ganus +gantnier +ganis +gangloff +gangler +ganer +ganem +gandolfo +gampp +gallihugh +galletti +gallenstein +gallarello +galla +galka +galayda +galarneau +galapon +gaito +gaglione +gady +gadsen +gachupin +gaboury +futterman +fusch +furuta +furth +furber +fune +funai +fuess +frutchey +frumkin +fruhling +frommer +fromdahl +froehner +frizzle +friends +friederich +freyre +freilich +fregia +frediani +frederico +frater +fraile +foste +fosselman +fosnaugh +fosburg +fortis +fortgang +forstner +forson +forseth +forkin +forister +forinash +footer +fontillas +fontenelle +fonesca +folker +fogerson +fogelquist +flye +flummer +floth +floro +florine +flies +flexer +flessner +flatness +flank +fland +flahive +flager +fiveash +fitzner +fitzke +fitcheard +fisherman +fishbeck +fipps +fiorino +finster +finken +finigan +fingal +finer +filsaime +fillingim +filipponi +fila +fies +fiebelkorn +fiducia +fiallo +fetherston +fetherolf +fesmire +fesenmyer +ferroni +ferriss +ferrini +ferrick +ferraris +ferniza +fernades +ferdig +ferandez +feoli +fenninger +fenney +femi +fejes +fehlman +feger +fede +febo +febbraio +feasel +feagley +fayad +favaloro +fauerbach +fauble +fasheh +farrant +farra +faro +farinacci +farfaglia +farell +farb +farace +fanjoy +fangmann +famulare +falsetta +fallows +fallert +falero +faldyn +falconi +falce +fait +fairburn +faiola +faiella +fahlsing +faggett +fafinski +fadness +fabros +fabert +everidge +evaristo +eustache +etzkorn +etier +estabillo +esquivias +esquirel +eslava +eschete +esau +erway +ertzbischoff +eron +erner +ermitano +ermitanio +ermert +erie +erdley +equihua +enzor +ensing +enns +engleking +engelkes +endlich +endler +emry +emms +emmerling +emerich +ellsbury +ellie +elizarraras +eliot +eliopoulos +elery +elek +elderidge +elbaum +ekins +ekin +eisley +eilderts +eikleberry +eigo +eighmy +eichel +ehly +egloff +egland +eggington +eggenberger +egar +egans +eftekhari +efford +eeds +edvalson +edin +edgman +edemann +edelmann +eddens +eckl +eckerle +eckelman +ebrahim +eberth +eberspacher +ebbighausen +ebaugh +easly +eash +dzledzic +dyett +dyba +dworaczyk +duttry +duthie +duszynski +duso +dushaj +dusett +dus +durman +durkins +durick +duplechain +dunnivan +dunlow +dunivan +dumars +dumaine +duliba +dulany +duka +duft +dufrane +duffek +duellman +ducking +dubourg +drzewiecki +drugan +drozdowski +drozda +dronet +drilling +driesenga +dreyfuss +drevs +dreben +draudt +draleau +dragos +draghi +doyer +dowlin +douma +dotterweich +dottavio +doroff +dornon +dorland +doop +donndelinger +donehoo +donate +donado +dommer +dominici +domann +dolio +dolence +doland +dolak +doersam +doerrer +doede +dockham +dobrich +dobosz +dobin +dobbratz +divlio +divel +ditzel +disalvatore +diotte +dinnen +dinkin +dimler +dimiceli +dimeglio +dimascio +dimare +diluca +dilsaver +dillen +dilibero +dile +digioia +difede +diefenbach +diedrick +dickmann +dickes +dickason +dicapua +dicaprio +dibrell +dibley +dibattista +deyon +devotie +devoid +deval +detlefsen +destro +destiche +desposito +desola +deshotels +descombes +deschepper +desautel +desano +deroy +derosset +derosby +deroeck +derocher +dergance +deren +deptula +deprey +depolis +depner +depetro +denunzio +densford +dennington +dene +dender +denbo +demuro +demoranville +demling +demerson +demelis +demeglio +dembo +demattia +demarinis +delprincipe +deloria +delnoce +delmedico +dellow +delles +dellavalle +dellamora +delguidice +delgato +delfs +delcourt +delcolle +delbert +delaportilla +delahoz +delacueva +deisch +deike +degro +degonia +degollado +degolier +degirolamo +degener +degele +degeest +degeare +defina +defabio +deeley +decraene +decou +decorte +declercq +decinti +dechambeau +debutts +debro +deblieck +deblasi +debem +deavila +deases +deangeles +deahl +daymude +daven +datil +daros +darnick +darienzo +dardy +daponte +dannhaus +danneman +danielle +dani +danger +dangel +danes +danekas +dandrow +dambrose +dalpe +dalesandro +daiton +dainels +daigh +dahnke +dahme +dahling +dagata +dack +czaplicki +czachorowski +cuttitta +cutaia +custance +curless +curie +curi +cupelli +cumens +cumbass +cumba +cullars +cullar +cukaj +cubito +cuascut +crytzer +crye +cruzen +cruser +crunkleton +crummett +crumbliss +cropley +cronquist +cronkite +cronic +crombie +crockwell +crnkovich +critcher +cristo +cristales +crisanti +crier +cretsinger +crest +creson +crelia +crecco +craze +craveiro +cratch +crapps +cran +craigmiles +craiger +craige +crady +cradic +craddieth +cowels +coveney +courcy +coulbourne +cotsis +cotrone +cotney +cotilla +costaneda +costabile +cossel +cossa +cos +corte +corsino +corria +cornog +cornely +corio +corino +corington +coressel +cordone +corbisiero +corbelli +copps +coovert +coopwood +cooner +cookman +conzales +conver +contratto +conrady +conradi +connel +conneely +conmy +comunale +comber +comans +colvert +columbo +coluccio +colp +colop +collini +college +colestock +colebank +colasante +colasacco +colapietro +cokeley +coia +cocuzza +coalson +co +clowes +cliche +clevette +cleven +clerico +clearwater +civiello +ciullo +citro +cirocco +cioppa +cilek +cieszynski +cieri +cicerchia +ciaschi +ciani +cianchetti +chudy +chuc +chryst +christodoulou +christin +chrisley +chokshi +chmela +chkouri +chiodini +chio +chimilio +chilen +chilek +childrey +chier +chicas +chiaro +chiappone +chiappinelli +chiado +chhom +chesterfield +chesteen +cheshier +cherrez +cherep +chene +cheevers +checkett +cheaney +chayka +chawla +chasin +chasen +charvat +char +chapoton +chantos +chantler +chant +chadez +chad +chaco +chabez +cerrito +ceppetelli +centanni +celso +cederberg +cedar +cecchetti +cavel +cavanah +cavagna +catus +catton +catterton +catrambone +catherwood +catherman +cataldi +castellana +castellan +cassey +casparis +casilla +cashdollar +casaceli +carvana +carriedo +carrecter +carraher +carrabine +carpinelli +carouthers +carnovale +carmany +carles +caretto +careaga +cardosa +cardelli +carbine +carathers +caraker +caracci +capuchin +cappelletti +capistran +capdeville +caparros +canute +cante +canizares +canel +canclini +cancino +campus +campise +campen +cammarano +camilli +camic +camey +calwell +calvey +calvary +callo +callinan +callais +calizo +calixto +calisto +calip +calibuso +caira +cahillane +cahalane +cahal +caffery +caffarelli +cafarelli +cadlett +cacciatori +cabebe +byus +byrnside +byrer +byone +buza +buttrum +buttel +butremovic +butanda +bustin +bussen +bushlen +bushart +burtchell +burrel +burnard +burlett +burkeen +burce +buote +bunyan +buntrock +bunck +bumpas +bulleri +buglione +bugge +bueter +buerk +buenger +buehrle +buechele +budrow +buddenhagen +bucolo +buchenau +bucco +buccino +bubar +bruzas +brutsch +bruschke +brunot +brungard +brund +bruender +brucks +bruchey +brozowski +brownd +brothern +broomhead +bronw +brom +brog +brodigan +brockhaus +brockel +broadaway +brletich +briston +brissett +brines +brillon +brilliant +brightbill +brigges +briel +bresciani +brents +breitmeyer +breithaupt +breidenthal +breden +bredemeier +breckinridge +brecheisen +brecheen +breazeal +bream +brazzel +brawdy +brave +brashers +branz +branyon +brantz +brannam +brankovich +brandle +branchaud +branca +bramley +bramante +bramall +brakeman +bradby +bozzo +bozelle +boyarski +bowline +bowey +bowerize +bowdon +bowdler +boutros +bouten +bourdier +bouras +boufford +bottex +bottemiller +bothman +botcher +boshers +borris +bornemann +bonus +bonnot +bonifant +bongiardina +bonenberger +bonasera +bollier +bolar +bokman +bokanovich +boissonnault +boiles +bohrn +bohlke +bogenschutz +bogel +bogda +boevers +boever +boender +boehringer +boehne +bodor +bodda +bodak +bocker +bockenkamp +boche +blyden +bluto +bludworth +bloxsom +blomstrom +bloise +bloebaum +blier +bleiweiss +blegen +bleacher +blaum +blasz +blasingim +blasengame +blanda +blagman +blackstad +blackham +blache +bixel +bitters +bissegger +bisker +bishoff +bisard +bis +birtwell +birley +birkenmeier +birkenholz +birkeland +birdsey +birdo +birdinground +binner +bilsborough +billot +billops +billingham +bigney +bigg +bienkowski +bienek +bielefeld +bielec +biddie +bickell +bichler +bibo +biava +biagi +biagas +bhayani +bez +beyene +beyda +bevels +bettner +bettinson +betson +beto +bessix +bessire +bertschy +bertozzi +bertoncini +bertelson +berteau +berrong +berrones +berringer +berrigan +bernsen +berlingeri +berken +berka +berges +bergdorf +bergara +bergant +bergamini +beren +berdugo +berdine +berberian +benvenuti +benish +benincase +benek +benedith +bendas +benak +bena +beltrame +belsheim +belotti +bellrichard +belleville +beliles +belgrade +belcastro +bekius +bekhit +beightol +behel +beetz +bedson +becze +beckmeyer +beckey +beckers +beckelhimer +beccue +beberwyk +bebber +beamesderfer +beacom +bazzle +bazil +baynham +bayhonan +bayas +bawany +bava +baumgardt +bauerkemper +baudry +baudino +battko +battisti +batta +bassano +baskas +baseler +basanta +bartucci +bartron +barthold +bartamian +barsalou +barrineau +barriger +barreneche +barkie +barich +bardes +barbano +baral +baragar +baque +banther +banome +bannowsky +banke +baniaga +bandley +banahan +banaag +bamba +baltzer +balster +balnis +balkin +bali +balfe +balerio +balent +baldyga +baldor +baldinger +baldassano +baldacci +balanoff +balado +balaban +balaam +bakes +bajwa +baisch +bahnsen +bahls +bahler +bahamonde +bagdasarian +bagaoisan +bafia +baese +badolato +bado +badder +bacurin +backers +bachor +babe +babbit +babauta +baadsgaard +azzara +azebedo +avril +avello +aveline +authur +ausby +auricchio +auna +aukerman +auckerman +auck +auble +atterson +attard +aswegan +aste +asta +assaf +aspen +asken +asif +asiedu +ashner +asel +aschenbach +arvay +arvan +artus +artley +arrollo +aroyo +aronov +aromin +arnsworth +arnspiger +arnn +armant +arington +argubright +arentz +arcoraci +arbuthnot +arbo +aquilina +aquilera +apt +apsey +appolonia +apollo +apana +antista +anshutz +anon +anno +annala +anklam +angold +angelone +angeline +angeletti +andren +andreadis +andera +andelman +andel +anctil +anchors +anacker +ampy +amons +amirault +amir +amezaga +ameigh +alyea +altvater +altig +altermatt +alo +almengor +alme +allvin +allocco +allegrini +aliment +algee +alexanian +aler +aldo +albero +alarid +akiona +akemon +ajello +aitcheson +ainley +ailey +ahluwalia +ahlf +ahlbrecht +agundez +agro +agins +aggarwal +afalava +adriano +adomaitis +adolphus +adlam +adie +adey +adduci +addleman +adamyan +acothley +acklen +ackert +ackerly +acencio +accosta +abundiz +abedi +abbassi +abbasi +aanerud +aakre +aagaard +zwickl +zuver +zurasky +zumbo +zumba +zuckerwar +zuccarelli +zubris +zoucha +zorns +zorc +zitzow +zitzloff +zirkles +zippe +ziola +zinz +zinsmeister +zincke +zieschang +zierdt +zien +ziemke +zidek +zickler +zeuner +zerba +zera +zenger +zeltmann +zelle +zelinka +zelek +zele +zeiner +zeimet +zeidler +zecchini +zebley +zdanowicz +zbell +zaro +zaremski +zar +zani +zancanella +zana +zambarano +zakar +zadorozny +zader +zaccaro +ysquierdo +yoxall +youst +youngstrom +youn +youker +yoss +yoshina +yonke +yonemura +yohannes +yock +yerhot +yengo +yehle +yanofsky +yaker +yagues +yach +ya +xue +wyrosdick +wygle +wygand +wurzer +wurl +wunderlin +wunderle +wuerth +writer +wrighten +wrich +wozny +wozney +wowk +wouters +wormington +worf +woolem +woodrich +wooderson +wonder +womeldorf +wolz +woltmann +wolstenholme +wollmuth +wolle +wolfard +woldridge +wojtanowski +wojner +woitowitz +woehl +wittenburg +wittel +witschi +witaszek +witaker +wiszynski +wiswall +wiss +wisher +wisenbaker +wires +winsky +winfough +windler +winckler +wimes +wiltberger +wilm +willrich +willoby +willimon +willenborg +wilda +wilczewski +wilcock +wiggens +wigboldy +wiesler +wies +wienhoff +wielgus +wiebers +wieber +wickizer +wichrowski +wibbens +whyard +wholey +whitsey +whitlingum +whitlach +whirry +wharry +wharff +whack +weyman +weyler +wethje +westveer +westmorland +westerhold +wesselman +wesloh +wery +wermers +werlinger +werksman +wenzinger +weninger +wendeln +wendelin +wenck +wember +welters +welland +welchman +welchel +weitnauer +weissler +weinger +weimann +weigert +weidert +wehby +wehbe +weck +wechter +weaving +weather +weal +weagle +wdowiak +wayns +waycott +waychoff +waterfall +watcher +watahomigie +wasowski +wasner +washko +washing +washell +wartenberg +warson +warrenfeltz +warp +warmbrodt +warhurst +wardsworth +wanzek +wanta +wansing +wankel +wangberg +wanberg +wamack +waltzer +walthers +walterson +walshe +walrond +wallschlaeger +wallgren +walema +waldram +waldhauser +waldecker +walby +wakin +wakabayashi +wah +wagy +waggner +wagenaar +wage +waffle +wadzinski +wademan +wackerly +wachs +wable +vredenburg +vrana +vrable +voyer +voto +vosper +vosberg +vorhees +voran +vora +vonstein +vondoloski +voltin +volpicelli +volland +volentine +volcko +vojtko +voice +vogeler +vizzini +vizena +vix +vitko +viste +visor +visco +virock +vinup +vinion +vincenzo +villas +villarta +villari +vilello +vigne +viener +vielmas +vielhauer +viehman +vidulich +vidinha +videen +vickerson +vicker +vertz +verry +vermeesch +verhulst +verhoff +verhagen +verhaeghe +vergo +vergeer +verdino +venus +ventrella +ventola +venter +vennes +venneri +venditto +velzy +velilla +velie +velandia +vecker +vecellio +vear +vavricka +vautrin +vates +vassall +vasmadjides +varty +varriano +varriale +varrato +varnedoe +varillas +vardaman +varajas +vaquero +vanzyl +vanvleet +vanvleck +vansoest +vanskiver +vanskike +vanruler +vanputten +vanoy +vanous +vanoort +vanliew +vanlew +vanhulle +vanhoozier +vanhofwegen +vanhaitsma +vanecek +vandrunen +vandixon +vandivier +vandiford +vandezande +vandewege +vanderzanden +vanderwerff +vanderwerf +vanderschel +vandergiessen +vandenberghe +vandehei +vandee +vancheri +vanbramer +valsin +valli +valido +valenzano +vajda +vaillencourt +vacheresse +va +uzdygan +uyetake +usilton +urueta +ursprung +ursiak +urquilla +urquidi +urfer +ureta +urbancic +ura +upwall +uptegrove +uphaus +upadhyaya +unterburger +unch +unavailable +unangst +umphenour +umbenhauer +ulseth +ulatowski +ukosata +uhyrek +uhrmacher +uhlich +ueno +uelmen +udoh +ude +uchytil +tzeng +typhair +twelves +twehous +tuxhorn +turybury +turro +turne +turnblom +turkus +turks +turbin +turbes +tunick +tumpkin +tuholski +tuggie +tufnell +tubertini +tubaugh +tsutsui +tsuha +tsuda +tsinnie +trupp +trupiano +trupia +truner +trundle +trumm +trullinger +truell +trucco +trowers +trover +trosien +tronnes +trompeter +tromp +trolio +troendle +trobaugh +triska +trimarco +trifiletti +tridle +tricoche +tresvant +trest +tresler +tresca +tremont +tremayne +treinen +treichler +treglia +treamer +traxson +traugh +trasher +trapasso +trant +trancoso +traister +trailor +trageser +traficante +trac +toya +towson +tovrea +totherow +tote +tortorelli +torri +tornabene +torigian +torello +toppa +topor +toothill +toop +tonsil +tomsich +tommie +tomlison +tolmich +tollner +tollefsrud +toledano +tolayo +toenges +toefield +tock +tobiasz +tobery +tobert +toban +toback +tjarks +tiznado +titlow +tishler +tirabassi +tippet +tinkey +timson +timperman +timmis +timmermans +timme +timberman +tikkanen +tietze +tierman +tiberi +thuringer +thul +thu +thro +thornwell +thomlison +thomlinson +thomassen +thimmes +thilking +thierman +thielemann +thiboutot +thibideau +theresa +theard +thavichith +thaut +tezak +tetzloff +teto +tetlow +tessler +tesseyman +teskey +tes +terzian +terwillegar +tervo +terronez +ternasky +termini +terboss +teramoto +tepley +tenuta +tenen +tellio +tellefson +telecky +tekell +tefertiller +teece +tedesko +tederous +tebeau +tear +teahan +tazewell +tazelaar +tavano +tatsapaugh +tatlock +tataris +tassinari +tassie +tarvis +tarkey +tarangelo +tappa +tanna +tanikella +tamblyn +tamaro +talyor +tallas +talayumptewa +talaska +taj +tagliarini +tagata +taflinger +taddonio +tacderan +tablang +tabisula +tabicas +tabar +szwed +szumski +szumigala +szollosi +szczesny +sypniewski +syon +sylvan +syal +swor +swoopes +swoap +swire +swimmer +swiler +swida +sweezer +sweep +sweeley +swede +swearengen +sweadner +swartzwelder +swanhart +sveen +svay +sutyak +sutten +sutler +suski +surprise +supernault +suozzo +suns +sunder +sumney +summarell +sumera +sulzbach +sulfridge +sukhram +suk +suitor +sughroue +sugahara +sudlow +sudan +sudak +subido +style +stweart +sturz +sturdy +sturchio +stulce +stukenborg +stuckemeyer +stsauveur +stroll +strohmeier +strissel +strimple +stremmel +streczywilk +strawhorn +stratz +stratos +straton +strassner +strama +strada +stoss +storti +stomberg +stolze +stoliker +stoler +stolberg +stolarik +stohlton +stofko +stofflet +stoff +stoesser +stoeber +stodden +stobierski +stobbs +stjohns +stirrup +stirman +stinehelfer +stimmell +stimits +stigger +stiers +stieff +stidam +stewarts +stevinson +stevey +sterett +ster +steppello +stepnoski +stentzel +stencil +stencel +stempien +steketee +steinbruckner +steinborn +steigman +steiber +stegent +steffani +steerman +steenken +steenhard +steedman +steckley +stealey +stayrook +stavnes +stauss +stash +stary +stare +stant +stanfa +standfield +standberry +standage +stanco +stanage +stampe +stamdifer +stalworth +stalma +staires +staines +staine +stahlberg +stadden +staberg +stabel +spurgers +spruce +sprinkel +springman +spriggle +sporleder +sporcic +spontak +sponholz +spohr +spittle +spiry +spiece +spicuzza +sperlich +sperdute +sperazza +spelts +speares +speakes +sparhawk +spaniel +spaar +soyars +soverns +southam +sour +souphom +soun +soula +sossamon +sosh +sosby +sorsby +soroka +soricelli +sorgi +sorbera +soplop +soohoo +sonoda +sonny +sonneborn +somodi +sommese +solman +sollie +solla +solina +soliani +soley +solecki +solages +sohre +soenksen +sodeman +sobiech +soberanis +snobeck +snerling +sneider +snaza +smolic +smigel +smigaj +smiechowski +smida +smerkar +smeby +slothower +slotemaker +slodysko +slivka +slimmer +slight +slifko +slayter +slawski +slauson +slatten +slain +skultety +skrip +skowyra +skorupa +skordahl +skomsky +skoff +sklenar +skeldon +skeesick +skea +skagen +sjostrand +sixtos +sivyer +siverson +siverling +sivan +siva +sitzler +sither +siskind +siske +siron +siregar +sirbaugh +sirak +siptak +sinstack +sins +siniscalchi +singlton +sinden +sinagra +sina +simpon +simmoneau +simler +simkulet +simi +simeona +simens +silverstone +silverness +silsbee +sillas +sileo +silbert +sikula +siglin +sigley +sigafus +siew +sietsma +sierras +siembida +sieker +siedlik +sidur +sidell +siddoway +sibille +sibilia +sibbald +shusta +shuskey +shurts +shryack +shroll +showell +shove +shoulars +shortino +shopp +shmidt +shiu +shirar +shinners +shingles +shinabery +shimko +shibles +shertzer +sherrin +sherril +shellhamer +shellhaas +sheldrup +sheladia +shehab +sheff +sheck +shearman +sheaff +shauer +shatswell +shaske +sharick +shappard +shallcross +shala +shaklee +shakespear +shafe +shady +shadwell +shacklett +seymor +settlemire +setting +sether +sesma +sesareo +seryak +serven +sers +serbus +serb +seppi +sephus +sentinella +sensel +senf +senato +sempek +semidey +semasko +selz +seltz +selmer +selitto +selim +seiser +seikel +seigle +seid +segouia +segner +segerson +segala +sefcik +seeholzer +seegert +sedita +sedenko +sedar +secondo +seckinger +sebald +seba +seahorn +seabright +scotty +scothorn +scordato +scoma +scobie +scipione +sciara +schwieterman +schwendemann +schwede +schwartzbach +schwarcz +schwalen +schutzman +schunemann +schulweis +schul +schuffert +schuckers +schrull +schrubbe +schreyer +schreckhise +schreader +schoonhoven +schoolman +schol +schoettmer +schoepf +schoenle +schoenecker +schobert +schnyer +schnoke +schnipper +schneiter +schneekloth +schnapp +schmits +schmelzle +schmelz +schmeisser +schmeiser +schmahl +schlotzhauer +schlott +schlossberg +schlipf +schlicker +schleuder +schleimer +schlauch +schlau +schlaefer +schiesser +schieler +schied +schie +scheuvront +scheumann +scherz +scheperle +schenewerk +schemm +schellenger +schaupp +schauf +schaudel +schau +schatzberg +scharr +schappert +schapp +schamel +schallhorn +schaefers +schadt +schadel +schackow +schabowski +schabes +schabert +schab +schaab +scavotto +scarver +scarsella +scarbro +scampoli +scammon +scallon +scalley +scale +scafuri +scadden +scacco +sawchuk +saviano +saverchenko +savelli +savarino +satsky +satoe +sarwinski +sartorio +sartorelli +sarria +saro +sarna +sarkin +sarisky +sario +sarazin +sara +sapia +santmyer +santmier +santillana +santanna +santacroce +sansouci +sannes +sanez +sandvig +sandino +sandella +sanburg +samy +sammer +samit +salvucci +salvey +salvatori +salvant +salvage +salts +salton +saltarelli +salt +salome +sallade +saletta +salehi +saleeby +salameh +salama +salaiz +salafia +sakry +sako +sakash +saitta +sahu +sahara +saguil +sagrera +saglimben +sagi +saggio +sagen +safranek +safko +saeli +sadar +sacre +saccardi +saborido +sabins +sabet +sabbah +saale +rynne +rynders +rylands +rykowski +ruzbasan +ruwe +rutiaga +ruthledge +rutecki +rusu +russler +rurup +ruozzo +ruot +runels +rumphol +rumpel +rumpca +rullo +ruisi +ruic +ruhle +ruffaner +rufer +ruetz +ruesink +ruehle +ruedy +ruden +rubulcaba +rua +roya +rowald +rovner +rouselle +roura +roulston +rougeaux +rotty +rothery +rotert +rossler +roskowinski +rosiak +rosh +rosenstock +roselius +roscigno +rosaro +rosada +roperto +ropers +rookwood +rongo +rondinelli +ronda +ronchetti +romrell +rollinger +rola +rokos +rohwer +rohrscheib +rohlf +rogal +rogacion +roeschley +roers +roemen +roelofs +roekle +roehrich +rodriguel +rodges +rodeen +roddey +roddam +rocquemore +rockers +roccia +robishaw +robida +robichau +robertshaw +roberton +roberta +roberg +rob +roary +rizzuti +rizal +riveros +rittenour +risper +rippin +ripp +riola +riogas +rinner +ringus +ringhand +rinehardt +rinderer +rigotti +righetti +riggi +riggans +rigazio +rigatti +rifenburg +rieu +riehm +riegler +riech +riebau +ridgel +ridens +ridener +riddel +rickner +richardt +ricciardone +rhynard +rhyan +rhoderick +rho +rheinschmidt +rezak +reusing +rettkowski +retterath +retta +reshid +reppe +repke +reos +reome +rensen +renschler +renova +renollet +renison +reninger +rengers +rengel +renart +rena +relihan +reisen +reiniger +reindel +reil +reier +reh +reggio +regener +reekers +reeger +redmann +reddinger +redcay +reckling +rebert +reategui +reagin +reagen +readnour +razzano +raynolds +rayer +raybould +rawdon +ravotta +ravo +ravitz +ravert +rathert +raterman +ratel +raque +rapko +ransone +ransburg +rangnow +randon +rancifer +ramotar +ramones +ramone +ramire +ramin +rameres +rakoski +rajala +raithel +rainie +rainge +rainbow +raigoza +rahming +ragazzo +radomski +radish +radilla +raden +radde +racano +rabine +rabil +rabell +rabasca +quiterio +quinzi +quink +quinci +quilliams +quiller +quider +quenneville +quelch +queeley +quear +quattro +quastad +quaglieri +pyscher +pust +purtle +purtill +purdin +puorto +punja +pullem +pulfer +puleio +pujia +puetz +puehler +puebla +ptomey +przewozman +prysock +pruter +prunier +pruess +prudom +pruchnik +proveaux +prophit +promise +procknow +proby +pro +prive +preziosi +preza +prem +preite +preisser +pregler +precella +prazma +prats +prator +prakash +prahm +prader +pozniak +poxon +powledge +pouge +pott +postlewaite +posthumus +posnick +posley +poskey +porro +poreda +poppema +popat +pondexter +ponciano +pompilio +pommer +polosky +pollom +pollo +pollica +pollaro +polizio +polek +polack +polacek +poirot +poertner +poduska +pockrus +pochintesta +pluym +pluhar +pluck +pliner +pliml +plese +pleasent +playle +plasky +plane +plack +pizani +pitz +pittari +pitruzzello +pistorius +pistilli +pisha +piselli +pisco +piros +pirone +pirolli +pirman +pirkl +pirie +pique +pintado +pinkey +pingrey +pinger +pinelo +pilsner +pilley +pilgreen +piles +pila +pignatello +pietig +pierrott +pierron +pierceall +pieratt +pienta +piekos +piechota +picquet +pickar +picerno +piceno +phyfiher +phorng +phearsdorf +pharmes +phariss +pfuhl +pfenning +pezzetti +pevy +petzoldt +pettrey +pettas +petta +petross +petrochello +petriello +petrelli +petch +pestoni +pestano +pesick +pesavento +perzanowski +perrien +perrenoud +perque +peroff +perlas +perkerson +perisho +perich +perfect +peregrino +peregoy +perch +pequeno +penza +pensis +penquite +peniston +penister +pendola +pendergraph +pelle +pelczar +pelch +pela +pehler +pegoda +peelle +peeling +pedroni +pedlar +pedder +pecoraino +peckman +pechal +pebsworth +peasnall +peasant +pead +peacemaker +paytes +paysen +payn +pavletic +pavlat +pavlas +pavese +paup +paulis +patrice +patocka +pat +pastorino +pascocello +parthemer +parreira +parido +paretti +pardun +parchment +papstein +papps +papetti +papakostas +pantoni +panik +panfilov +panfil +pana +pampusch +pamperin +palmitessa +palmero +pallett +palilla +palese +palesano +palange +pagenkopf +padon +padmanabhan +padinha +packen +pacitto +pacchiana +pabich +oza +oyabu +overdorf +ourada +otukolo +otterbine +ottalagano +oto +other +otano +osting +ostiguy +osterholt +osley +oscarson +osaile +ortz +ortolano +ortea +orte +ortaga +orszulak +orser +orihuela +orejel +ordorica +ording +ordal +orbin +oransky +oppel +onsgard +ondrick +olsin +ollmann +olives +olavarria +olano +olafson +okuno +okuniewski +okuhara +okrent +okoniewski +okeke +ohs +ohotnicky +ohno +ohlund +ohlendorf +ohaire +ogaz +ogando +offield +odiorne +oclair +ockenfels +ochocki +ocamb +ocallahan +obleton +oberly +oberhelman +oberbeck +nylin +nydick +nwachukwu +nutzmann +nuque +nunz +nulle +nuffer +notti +nothum +nothnagel +notah +nossett +nose +nosbisch +norrix +norlien +norkin +nordon +nordmeyer +norat +nooe +nokleby +nofziger +noens +nivison +niu +nittler +nissalke +nishikawa +ninness +nin +nimon +nifong +niewieroski +nietzer +niemela +nicolette +nicoletta +nico +nickolas +nickless +nicklaw +niccoli +nibbs +neyland +newmark +newey +newbauer +nevwirth +neverman +neuser +neumaier +neufville +netzley +netzel +nettle +neiswonger +neiswender +neilan +neidhardt +neesmith +nebgen +navia +nate +nasuti +nasso +nassimi +nashe +nases +naro +nardo +narasimhan +naqvi +nanka +naman +nahrstedt +nagura +nagarajan +nadile +nabours +nabers +mysinger +mynear +muzzarelli +muthig +mustian +muskus +muskelly +musi +mushtaq +musca +murzynski +murzyn +murrillo +murello +murdy +murakawa +munsinger +munnell +munks +munkberg +mundorf +mummey +mullick +mulkin +mulhollen +mulgrew +mulderig +mulac +muehl +muddiman +muckerman +muckenthaler +much +mucciolo +mruczek +mrazek +mowat +moure +mould +motts +mosure +mossor +mossberg +mosler +mosha +moscrip +moschetti +mosbarger +morua +morss +morron +morrall +moroni +morioka +moricca +morgensen +morganson +moreshead +morely +morch +moras +morar +moranville +moralas +morak +moradel +moothart +moonen +monzingo +montpetit +montjoy +monteagudo +monoz +mongrain +mongon +mondejar +monas +monachino +momplaisir +momin +moment +molpus +molony +molner +molleda +molinski +molinelli +molfetta +molenda +molchan +mohseni +mogg +moerke +moenius +moehlman +modugno +modi +modest +moder +moch +moat +miyamura +mittlestadt +mittelstedt +mittelman +mitschelen +mitro +mitchan +misty +missey +misenhimer +mirra +mirjah +mirante +miosek +minteer +minrod +minning +minney +minnema +minium +minihane +minicucci +minecci +minchey +milota +millson +milloway +millonzi +millier +milley +millam +milillo +milbrath +mikowski +mikola +mikler +mihelic +mihaila +miesen +mierzejewski +mickels +michienzi +michalke +miazga +mezydlo +mezick +meynard +meylor +mexicano +metsker +metrick +meter +mestad +meske +mertins +merta +mersinger +merschman +merna +merila +meridieth +mergen +merel +menzella +menze +mentnech +menson +mensick +mennig +mendillo +memos +melroy +melochick +mells +mellgren +meline +melich +melena +melchiori +melching +melahn +meisler +meinerding +meilleur +meidlinger +mehner +megrabyan +megee +meeuwsen +medlar +medick +medema +mechler +mechanic +meadowcroft +mcpike +mcpeake +mcnell +mcneary +mcmutry +mcmeekin +mcmannus +mcluen +mclouth +mclerran +mcleoud +mclagan +mckone +mckneely +mckissic +mckinnell +mckillips +mckibbon +mckenty +mckennan +mckeeman +mckasson +mcinturf +mcinerny +mchan +mcgurn +mcguirl +mcgue +mcgrain +mcgonnell +mcglumphy +mcglauflin +mcginity +mcgibboney +mcgeough +mcgauley +mcgarvie +mcfatter +mcentegart +mcenroe +mcelmury +mcelhinny +mcdonnel +mcdoniel +mcdoe +mcdermond +mcdearmon +mcdearman +mcday +mcdannald +mcdaid +mccurren +mccrosky +mccrane +mccraig +mccooey +mccoo +mccolpin +mccolloch +mcclucas +mcclester +mcclement +mcclamroch +mcclammy +mcclallen +mccarte +mccaie +mccaddon +mcanelly +mcalmond +mcalary +mazzini +mazzarino +mazzara +mazzanti +mazurk +mazor +mayerle +mayenschein +mayard +mayans +maxedon +mavromatis +mavins +maves +mausser +maulsby +matya +matuke +matto +mattler +mattiace +matkowski +mathern +matero +matchette +matayoshi +matar +mastine +massing +massimo +masseria +massenberg +massard +masoud +masotti +maslak +masey +masella +mascarena +mascall +marzella +maryott +marwick +marugg +martt +martinis +martian +martha +marstaller +marsingill +marsicek +marotto +market +markegard +marke +marinella +marien +margison +margheim +margason +margaris +margaret +marett +marentes +marcott +marcon +marchena +marcellino +mapston +mantione +mantanona +mansouri +manoi +mankus +mankins +manin +manikas +mangieri +manfredini +mane +mandt +mandolini +mandley +mancina +manas +maltsberger +maltais +malmin +mallis +mallicoat +malleck +mallach +malkowski +malkani +malito +malensek +malandra +malander +makos +makanani +maille +mail +maidens +maid +mahowald +mahala +mahajan +magnotta +maggiore +magel +maestos +maerz +maedche +madise +madi +mades +maddaloni +madayag +madaras +macnair +mackinlay +mackesy +machon +machia +machey +machesky +machacek +maceyak +macchio +macbride +mabray +maasch +lyseski +lykken +luzania +luxenberg +lutrell +lupkes +lupino +lupardus +lunnon +lunghofer +lundvall +lundby +lundborg +lulow +lukman +lukin +lukaszewski +lukacs +lugones +luger +lueder +ludeke +lucek +lucchetti +lucchese +lozowski +lozaro +loyer +lowthert +lowdermilk +lovitz +lovinggood +lovenduski +loura +loung +lounder +louks +loughry +loudermill +lotta +lostetter +loskot +losiewski +lorman +loren +lorelli +lorange +lonsinger +longinotti +longhurst +lomedico +lola +lohwasser +lohn +lohden +lograsso +logie +loftman +loften +lofaso +loewer +loehrs +locy +loconte +lockerman +lockerby +locken +lobaton +loatman +lleras +lizak +livingood +litwiler +litvin +littledave +lites +lisee +lipszyc +lippy +lionello +linsday +linnear +linklater +lingbeck +lindie +lindenfelser +lindenberger +linarez +limber +lily +lightning +liffick +lieto +liestman +liepins +lieng +liebross +licciardi +licavoli +libbee +lhuillier +lhommedieu +leyra +lewman +levreault +levitre +levings +levick +levecke +levanger +leval +leva +leuthold +leuenthal +letze +letterlough +leski +lerwill +lertora +leppla +leopoldo +leonides +leonardis +lenoue +lenoch +lengerich +lemont +lemmert +lemery +lemaitre +lella +leko +leithauser +leisher +leise +leisch +leiendecker +leiber +leialoha +lehtomaki +lehigh +leggs +legate +leflar +lefeber +leezer +ledden +lecleir +lechliter +lebrane +lebarron +leason +leapheart +leadman +lazarte +lawin +lavole +lavesque +laverdure +lautner +lauthern +laurila +laurendeau +launderville +laumeyer +latina +laszlo +lassan +larzelere +larzazs +larubbio +larriuz +larew +laremont +laredo +lardizabal +larance +lappa +lapolla +lapatra +lapaglia +lantieri +lannan +lann +langwith +langolf +langloss +langlo +langholz +langhart +langfitt +langendorf +langenbach +langbehn +lanehart +landoni +landherr +landberg +landazuri +lancey +lamus +lamunyon +lampitt +lampiasi +lammon +lamme +lamirand +lambes +lamarta +lamarra +lalim +lalande +laky +laitila +laidler +laich +lahue +lahtinen +lagrasse +lagrand +lagle +lagerstrom +lagerberg +laferney +lacson +lachenauer +lablue +labean +lab +kuzara +kuza +kuy +kutchera +kustra +kurtyka +kurschner +kurka +kunstlinger +kunka +kunicki +kunda +kulling +kulla +kulbida +kuker +kujath +kujala +kuhta +kuhner +kuhle +kufalk +kuennen +kuen +kudley +kucharik +kuca +kubic +kryst +krysh +krumenauer +kruczek +kroschel +kronk +kroells +krivak +kristoff +kristin +kreuziger +kreitz +kreisberg +kreiman +kreighbaum +kreh +kreck +kraszewski +krason +krammes +krake +kozusko +kozola +kozikowski +kozielski +kowis +kowalske +kottman +kottler +kottenstette +kostelnick +kosmowski +koska +kosinar +kosik +kosanovic +kosanke +kortge +korsak +kornbau +kordas +korby +korbel +kopperman +koppenhaver +kopischke +koper +kopelman +kopel +kopas +kooser +koors +koor +koone +koogle +konzen +konieczka +kondracki +kondos +komatsu +kolo +kolarik +kolacki +kokesh +kohrt +kohrs +kogel +kofron +kofman +koewler +koetting +koes +koellner +koellmann +koczela +kocon +knoth +knollman +knoebel +knknown +knittle +kniphfer +knightly +kniffin +knaphus +knaak +kloth +klonoski +kloke +kloer +klinetob +kliger +klich +kleyman +klepchick +klemish +kleen +klebe +klakowicz +klaft +kithcart +kister +kisker +kishel +kishbaugh +kirt +kirouac +kirley +kirklen +kirkegaard +kirchen +kipka +kipfer +kinsinger +kiniry +kinikini +kingma +kinderknecht +kinahan +kimmes +kimak +killiany +killelea +kilkus +kilfoyle +kiflezghie +kiffer +kiesewetter +kienow +kieler +kiebler +kicks +kicker +kibel +kibe +kibbee +kiang +khounthavong +khatri +khamsyuorauon +kham +keye +keup +keto +ketch +kess +kerth +kero +kernell +kerkvliet +keomany +keomanivong +kennemur +kennel +kenndey +kendi +kempter +kempinski +kemna +kellan +keliikoa +keledjian +keithan +keisel +keib +kehs +kedley +keay +kearin +kawulok +kawai +kawaa +kava +kaunisto +kaumo +kauahi +kattner +katra +kastel +kastein +kassulke +kassman +kassing +kashani +kasch +karty +karstetter +karrenberg +karper +karow +karmo +karhoff +kardell +kardas +karapetian +kapper +kappen +kapichok +kanis +kaneakua +kanaris +kamuda +kamirez +kamat +kaloudis +kallberg +kallaher +kalkwarf +kalkman +kalk +kalisek +kalehuawehe +kalchik +kalbfleisch +kalberer +kalal +kala +kakimoto +kaing +kaigle +kahill +kahanaoi +kaemmerling +kadri +kadle +kading +kadi +kadar +kachmar +kachiroubas +kachelmeyer +kaase +juve +juul +justinger +jungwirth +jungman +jungck +julander +juenemann +jubie +joun +joswick +jossund +joss +jory +jonnson +jongsma +joliet +johngrass +jocoy +jing +jimerez +jimbo +jeudy +jerowski +jernstrom +jernstad +jernberg +jeoffroy +jentry +jennie +jeng +jenaye +jemerson +jeltema +jeanpaul +jeanmard +jax +javery +jaudon +jasperse +jasmer +jarred +jarrar +jargas +jardot +jardell +jaquay +jappa +janower +jankoski +janise +jandrey +jandl +jakubiak +jakobson +jakobsen +jahncke +jagers +jacobitz +jackon +izard +ivel +itzkowitz +itani +issacs +isome +isle +islar +isidro +isidoro +isch +irvan +irizary +irene +ipson +ip +ioele +interiano +insalaco +iniestra +ingargiola +impson +illiano +iller +illa +ilardi +iida +ihrke +igneri +igbal +igartua +iffland +idell +iberra +iba +ianacone +hysong +hyrkas +huzzard +huttle +husselbee +husseini +hupe +hunzeker +hunnicut +humprey +humbird +humason +hugle +hufana +huestis +huesing +huell +hudy +hudley +hudas +hudalla +hudack +huckfeldt +hubka +hubenthal +huante +hsing +hromek +hritz +hrdlicka +howzell +howles +howat +hovarter +houy +housler +houska +houseal +houlberg +hostert +hosman +hoscheid +horvers +hortin +hornish +hornbeak +hornaday +hoppman +hopfer +hoot +honts +honsberger +hons +honnen +honberger +honahnie +homma +homesley +holyoak +holweger +holubar +holtzer +holtrop +holtberg +holpp +holmquest +hollinghead +holje +holgerson +holabaugh +hoitt +hofford +hoffmaster +hoffine +hoffelt +hoes +hoellwarth +hoegh +hoegerl +hoeger +hodrick +hodgkiss +hodek +hockey +hobday +hlavacek +hlad +hitzeman +hitzel +hitsman +hissong +hissam +hiscock +hirz +hirshberg +hipkins +hinsch +hinken +hinckle +hinchliff +himmons +himmelwright +himmelspach +himebaugh +hilst +hilmes +hillsgrove +hillestad +hillesland +hillegass +hilfiger +hilado +highshaw +highers +higginbothan +higbie +hieronymus +hidy +hickory +hickernell +hibma +hibbets +heximer +hewgley +heutmaker +heuschkel +heupel +heumann +heuman +hetzer +hetherman +hesterman +hespe +hertweck +herson +herry +herrboldt +herms +hermosilla +herl +herbolsheimer +herbel +hera +heptinstall +heppler +heppell +henslin +henschen +hennington +hennagir +henkhaus +henken +henggeler +hempfling +hemmerling +hemish +hema +helveston +helsey +helscher +helo +heline +helfin +helder +heitner +heiple +heinzelman +heinricher +heines +heimsness +heiler +heidelburg +heiberg +hegner +hegler +hefferman +heffelbower +heebner +hediger +hedding +heckbert +hearnsberger +heaivilin +heagle +heafner +hazelrig +hayth +hayoz +haydu +haybarger +haya +havers +haverfield +hauze +haugabrook +haub +hathcoat +hasychak +hassin +hassey +hasenberg +hasek +harvat +haruta +hartvigsen +hartong +hartke +harre +harradon +harnisch +harmond +harmening +harlem +harkrader +harklerode +hargitt +hardon +hardgrave +hardester +harbeson +harben +hanrath +handville +handcock +hamza +hamson +hamming +hamic +hambley +halphen +halpain +halmes +hallaway +hallauer +half +haldiman +halbur +hakkila +hakimian +haimes +hahs +hagmann +hagglund +hagert +hagee +hafeman +haeber +haddan +hada +hackner +hackel +hacher +habisch +haarstad +haare +haaker +gyger +guzowski +guzi +guzalak +guyon +guyll +gutzmer +guttirez +gutt +gutierrex +gutierre +gut +gustis +gushwa +gurke +gurevich +gunyan +gumz +guisbert +guire +guintanilla +guimaraes +guillereault +guidos +guidera +guffin +guererro +guenthner +guedes +guareno +guardian +grussing +gruska +grudzien +growcock +grossenbacher +grosjean +groshans +grondahl +grollimund +groeneveld +groenendyk +grinnan +grindell +grindeland +grimaud +grigorov +griffard +grierson +grich +gribbins +gribbin +grever +gretter +grennon +grenfell +gremer +greising +greenhoward +gravitz +gravis +gravino +graubard +grates +granstrom +grannell +grandt +granat +grambling +gramajo +gralak +graise +grafe +grade +grad +gracy +goyco +goyal +govindeisami +govert +govero +gouras +goulbourne +goularte +gouker +gotwalt +gottshall +gottsch +gorum +gordo +gordils +gorbet +goonan +goombi +gooley +goolesby +goodlet +goodland +gomaz +golt +golombek +golom +golojuch +golightley +goldyn +goldkamp +goldfine +goldermann +goffinet +goetter +goethals +goerdt +goehl +goedken +goede +goedde +goeckel +godshall +godleski +godino +godine +godden +godar +gockley +gockel +gochnour +gobler +goard +gniewek +gnerre +gluszek +glunt +glotzbach +glory +glista +glisan +glende +glee +gleave +glaus +glau +glassing +gladhill +gizzo +giulian +gittins +girven +girt +girling +girardot +gipp +giovannini +gionet +gins +ginolfi +gimar +gilvin +gilliom +gilling +gillece +gilio +gildow +gilberg +gieser +gierisch +gielow +gieck +gica +gibboney +giarraputo +gianopoulos +giannecchini +giambruno +ghrist +ghiloni +geving +getto +gessford +gesner +gesick +gerstenkorn +gersbach +geroge +gerleman +gerl +gerkin +gerding +gerchak +georgiades +geoffroy +gentes +genre +genous +genge +geney +gendusa +gendel +gemma +gembler +gemaehlich +geldmacher +gehris +geffrard +geffken +geans +gavel +gavaldon +gaughran +gaud +gaucin +gauch +gattuso +gatliff +gather +gastonguay +gassen +gasior +garzia +gartz +gartley +garski +garramone +garoner +garone +garnow +garley +garibai +garguilo +garfunkel +gardley +gardecki +garcilazo +garbarini +garan +garafalo +gani +gandert +gampong +gamons +gamma +gambone +gambler +galves +galo +galm +galluccio +gallinari +gallentine +gallamore +galeotti +galella +gajica +gaisford +gaietto +gahlman +gahl +gaglia +gaffke +gaetz +gadwah +gabaree +gaar +fust +furutani +furner +furnace +furgison +furgeson +fundis +fullem +fullagar +fujisawa +fugit +fugh +fuemmeler +fuelling +fude +frusci +frosch +frontera +fronek +fritzman +fristoe +frishkorn +frilling +frigge +friels +friehe +friedline +fridlington +frezzo +frezza +fresta +freise +freiman +freidhof +freiberger +freetage +freet +freemyer +fredin +fredenberg +frayne +fraughton +franzel +frankie +frankenstein +frankenberg +francher +franch +francesconi +franc +fraize +fragmin +frabott +foxman +fouty +fournet +foulcard +fouhy +fougere +fotopoulos +forsmark +fornell +form +forline +forguson +fontus +fontanella +folkner +fok +foggie +fogelman +flumerfelt +fluegge +fluegel +fluck +floe +flocco +flitsch +flirt +flinders +fletchen +flechsig +flebbe +flathers +flatau +flamer +flaharty +fladger +fitten +fitchpatrick +fissori +fissel +fischler +fioritto +fiori +fiorentini +fiorella +finnemore +finkelson +fingleton +fingerhut +finazzo +filmer +fillip +fillingham +filipek +filan +figurski +figueron +figueiras +figley +fiedor +ficker +fickas +fevig +feutz +fetner +fertal +ferraiolo +fernsler +fernet +fernatt +fergusen +ferg +feraco +fenny +fengler +felsted +fellner +fellin +fellenz +felkner +felkel +feliu +feleppa +felderman +felde +feigel +feickert +feibusch +fedorek +fedora +federgreen +fedalen +feck +febre +fearnow +feagler +favorito +faville +favalora +fauls +faudree +fasulo +fassino +farson +farlin +faretra +farenbaugh +farella +faraone +faragoza +fanucchi +fantroy +fanny +fangman +famiglietti +faltus +faltin +falt +falley +falldorf +falick +fala +fahrney +faggs +fafard +faes +fadely +fadel +facchine +fabionar +ezagui +evoy +evilsizer +evick +eversoll +eversman +everley +evelo +euvrard +eun +etkin +ethen +estrela +esteb +estain +estacion +esquerra +esposto +espert +eskra +eskin +eskenazi +eshom +eshenbrenner +esera +escobio +eschief +eschenbrenner +erschen +erlewine +erdner +erck +erceg +erbach +epolito +ephriam +enwright +enwall +entrikin +entress +entler +enstad +engwall +engroff +englemann +engelson +enderlin +enamorado +emme +emlay +emke +emerton +embertson +elworthy +elwick +elward +eloy +ellyson +ellstrom +ellingboe +elliam +elifritz +elgart +elerick +eitzen +eismann +eisentrout +eischeid +eirich +eikner +eickhorst +ehrler +ehrle +eglinton +egerer +egelhoff +edmunson +ecord +eckrich +eckland +echevaria +ebersold +eberenz +ebener +ebadi +ealand +eaks +eagleston +eaglen +eagin +dyals +dwelley +duy +duva +dutter +dutko +duster +duskin +dusel +durrenberger +durke +durian +dupay +duntley +dunsford +dundee +dulemba +dugi +dufficy +duensing +dueno +dueitt +duclo +dubrock +dubitsky +drumgo +drozdowicz +dromgoole +drobot +drivas +drinkwine +drewing +dressman +dreessen +drainville +dragna +draffin +dowgiallo +dovey +dougher +dottin +dossous +dossie +dose +doronio +dorning +dorko +dorion +dorinirl +doring +doorn +donohoo +donnally +donkin +donez +donerson +dondlinger +donchez +donaway +donatien +donath +dommel +domine +domin +domiano +domhoff +domek +doller +dolinsky +dolberry +doker +doil +doidge +dohman +doeden +dodridge +dodgson +dobkowski +dobie +dobes +dobert +diwan +ditomasso +distaffen +distad +dispenza +disorbo +diskind +diserens +discipio +dirico +dire +dirago +diprima +dinwoodie +dinn +dinkens +dinius +dingeldein +dimon +dimitt +dimitriadis +dilliard +dilick +dilauro +dilallo +dilalla +dihel +digilio +difonzo +difeo +dietze +dietl +diesi +diesel +dieppa +dienes +diemert +diegel +dieffenbacher +diec +dickhoff +dickensheets +dibonaventura +dibblee +dibartolo +dibacco +dhondt +dewer +develbiss +devazier +devara +deuser +deur +deuell +detzel +dettling +detro +destine +destefanis +desorcy +desomma +deslandes +desisto +desiga +deshler +deshaw +desgroseillie +desaulniers +derwitsch +derrig +derouchie +dermady +derider +derfus +derbes +depperschmidt +depoyster +depaula +dense +dennin +deniro +denio +dengel +deneen +dempsy +demmy +demmert +demichelis +demedeiros +dembroski +dembitzer +demarse +demaranville +demagistris +deluz +delson +delrossi +delrie +delossanto +delos +delmolino +dellis +dellarocco +dellano +della +delisser +delille +deleston +delerme +deleone +delehanty +delbalso +delavina +delauter +delashmit +dekalb +deguire +degross +degroote +degrasse +degrange +degrace +degasperis +deffibaugh +defaber +decrosta +decristoforo +dechert +decelle +decapua +decapite +decandia +debuse +debruler +deblauw +debella +debeer +dayrit +davidian +davick +davich +davia +daversa +davern +davault +dautrich +dausch +dathe +dastrup +dassow +darras +darnold +darks +dargis +dargatz +darbouze +dannenfelser +dannard +dampf +dalzen +dalphonse +dalluge +dalhover +daivs +dainack +daher +dagle +daghita +dagdag +dafonseca +daffern +daehler +dadson +czuba +czlapinski +czarnik +czap +cynova +cwiklinski +cuzco +cutno +curt +curbow +cunninghan +cunis +cuningham +cunico +culmer +cuhel +cuestas +cuebas +cuchares +cubr +csizmadia +crumpacker +cruell +crousore +crosten +crosman +crooked +cromuel +cromey +crockarell +croan +crissler +crispen +crismon +crise +criscillis +crippin +crilly +cresta +cregar +cragun +coye +cowing +cower +coverstone +coverdell +couty +coutant +courtnage +courteau +couper +countee +coultas +coughran +cottew +cotler +cotelesse +costen +cossin +coskrey +cosen +cosden +corvera +cortis +corsello +corrion +corrigeux +correiro +coro +cornetta +corneil +corlee +corin +corgan +corfman +corell +cordovi +cordia +cordas +corcino +corchero +coral +coppolino +coppernoll +coppens +coote +cooperstein +cooperrider +conterras +consolazio +cons +connin +connerley +conkin +congress +concienne +conaghan +comrey +cominsky +comella +comee +come +combe +coln +collums +collamore +colicchio +colee +colding +colder +colbenson +colagiovanni +cokely +coin +codde +cobrin +coak +cluxton +cluesman +clouston +closser +clopp +cliatt +clendennen +clearman +clattenburg +clarks +clapsaddle +cius +cira +ciolli +cinotti +cimko +cima +cienega +cicatello +cicale +ciarlante +cianfrini +cianciulli +churley +churches +chuong +chukes +christou +christescu +christe +chrismon +chrisler +choun +chobot +chisem +chiong +chimera +chila +chicca +chiarito +chhun +chhum +chhim +chestang +chesler +cherubin +chernosky +cherebin +chepiga +chellis +chell +cheda +checca +cheater +cheatem +chaulk +chaudhuri +chauca +chatcho +chartraw +charping +charnley +charm +charlson +charbonneaux +charan +chapp +chango +chanez +chancer +chamnanphony +chalepah +chaiken +chaddlesone +chaconas +chabaud +cestia +cessor +cervetti +cerveny +cerise +cerecer +cerasoli +cera +centini +cenci +cembura +celli +cederstrom +cdebaca +cayo +cawthron +caviggia +cavers +caveney +causley +caughlin +cathie +catan +catala +castrogiovann +castleton +castilo +castillio +castellaw +castellari +castejon +caspersen +casivant +cashio +cascioli +casciano +casamento +casadei +carwin +carvin +carucci +cartin +cartez +carston +carrio +carriaga +carretino +carotenuto +carosiello +carolfi +carnathan +carnalla +carnagey +carlill +carinio +cariker +caride +care +cardero +cardenal +carasquillo +carabez +capwell +capurro +capulong +cappucci +cappetta +cappa +capouch +caporali +caponigro +capilla +capata +capan +canzoneri +cantine +cantarano +cannellos +cannard +cannada +canlas +cangey +canaan +campoy +campany +campainha +cambi +camba +camastro +camano +calrk +callin +callari +calicutt +calemine +caleb +caldon +caldas +cajas +cadelina +cacal +cabriales +cables +bytheway +byland +byes +byan +buzick +buziak +buzhardt +butzlaff +buttolph +butta +butron +butorac +butaud +butac +busuttil +busque +busing +busboom +burwood +burright +burri +burrall +burness +burlington +burlin +burkham +burick +burich +burgner +burdex +burdell +burde +burba +buol +bundi +bulick +bulgin +bukovsky +bukovac +bujak +bugett +buffo +bueschel +bueckers +budnik +buckey +buckel +buchko +buchinski +buchana +buchaman +bucek +buba +bryans +brustkern +brussel +brusseau +bruntz +brunscheen +brunken +brumbach +bruess +brueckman +brueck +brucken +brozena +brozek +brownley +browers +brosman +brosch +broody +brood +bronzo +bronn +bromwell +brome +bromagen +broll +brofman +broekemeier +brodi +brixner +brisban +brinkmeier +bringham +bridgforth +bridgette +breznak +brewbaker +breitweiser +breiten +breitbarth +brehaut +breedan +breech +bree +bredernitz +brechner +brechbiel +breashears +brazinski +brazille +bratz +bratu +bratsch +bras +branting +brannin +bramsen +brailford +bragas +bradney +bradner +bradigan +bradica +brad +brabston +bozwell +boys +boyn +boyar +boyance +boxton +bowering +bowar +bournazian +bourgue +bourgoine +bourdage +boulier +boulds +boulding +bouch +bottum +bottorf +botero +bossler +bosshardt +bossart +bosman +borzillo +borstad +borsos +borsellino +borrayo +borowiak +borio +borgos +borglum +borghoff +boreland +bordeleau +borchelt +boorman +boole +bookwalter +bookhart +bonventre +bonucchi +bonnema +bongard +bonardi +bonadio +bomstad +bombaci +bolus +bolognese +bolnick +bolebruch +boldrin +bolder +boje +boho +bohmker +bogosh +bognar +bogin +bogatitus +bogaert +boga +boehmke +boeh +bodway +bodemann +bockhorst +bochner +bocek +boblitt +bobbit +boatfield +boast +boardley +bo +blumhardt +blower +blondell +bloemer +bloczynski +blint +blenden +blend +blem +bleininger +bleile +blehm +blechman +bleak +blattler +blattel +blatherwick +blatchley +blasing +blasen +blandin +blaire +blad +blackler +bizzle +bison +bisogno +bisking +bishopp +bischke +biscaro +bisarra +birton +birrueta +birrell +birklid +binkerd +binetti +binegar +bindrup +billerbeck +bilka +biley +bilecki +biglin +bievenue +bierwagen +biernat +bienvenue +bielik +biedrzycki +bideaux +bidding +bickman +biber +bibel +biancardi +bialy +bialke +bialecki +bhattacharya +bezak +bevilaqua +beuth +beuter +beutel +beucler +betties +betteridge +betschart +betran +bethley +beteta +beswick +bessmer +bessemer +besherse +beserra +berver +bertuzzi +bertke +berthelsen +berthelette +bertagna +bersch +berrio +bernoski +bernatowicz +bernardy +berling +berl +bergmeier +bergland +bergfield +bergesen +bergem +bergantzel +bergamo +berdecia +berardo +berardino +bequillard +benzinger +benyamin +bentzen +bennice +benke +benet +beneker +benedum +benedick +bend +bencosme +bemrose +bemiller +bemer +belzung +belmarez +bellina +bellendir +bellemare +bellantuono +bellanca +belkin +belinski +belcourt +bejaran +behl +beeker +beeghly +bedney +bedker +bedeau +beddome +beddoe +becvar +beccaria +beaz +beaushaw +beaulac +beatley +beardon +beachem +beachel +bazydlo +baydal +baxi +bauserman +baudler +batzli +battino +battee +batley +batesole +batcher +basurto +basu +bastianelli +bassage +basner +bashford +basher +bashara +basha +baselice +bartosiewicz +bartolomucci +bartnick +bartholic +barthe +bartelson +barsuhn +barson +barries +barricelli +barrena +barredo +barraz +barrale +baroldy +barne +barmettler +barjas +baris +bareis +bardach +barcroft +barcello +barbuto +barbrick +barbo +barbish +barbaria +baras +baragona +baquet +banwell +banowetz +bandle +bambhrolia +balthazar +balson +balliett +ballestas +balin +balfany +balette +baldrige +baldenegro +baldassara +baldasaro +balcorta +balckwell +balcitis +balasco +baka +baish +bainum +bailin +baile +bahlmann +baher +bagoyo +baggette +bafford +baddley +badanguio +badamo +badame +baczewski +bacorn +bacolor +bacigalupi +bachtold +bacha +babick +azzano +azua +azhocar +ayre +aydt +aydlett +axsom +awada +averbach +avenoso +auzston +auyong +autaubo +austad +aus +aurora +aultz +aulds +auldridge +aul +auge +auel +audirsch +audain +auchmoody +aubertine +auber +astry +asquith +asp +ashdown +asen +aselage +ascensio +asam +asad +artuso +artinger +arritola +arre +arraiol +arra +arouri +arnzen +arntson +arnstein +arnoldy +arnhart +arnet +armentor +armel +arganbright +argall +argabright +arenstam +ardinger +arcuo +arambulo +aramboles +arabian +appelt +appelgren +apodoca +ape +anzai +anttila +antoniou +antoniotti +antonakos +antell +antee +antaya +anschutz +ano +annon +anne +annarummo +anick +angelovich +anes +androes +andrle +andreoli +andreassen +anderl +ancira +anastasi +anastacio +analla +ana +amunrud +amparan +amory +amores +amodei +amdahl +amazan +alway +alvira +aluise +altomonte +altidor +altadonna +alstott +alsina +alshouse +alpizar +alonge +almestica +almaras +almand +allwardt +allum +allgier +allerman +alkbsh +alier +aliano +alfson +alfero +alexender +alessandro +alesci +aldas +aldaba +alcide +alby +albelo +albares +albair +albach +alamin +alagna +akuna +akright +akim +akes +aken +akbari +akau +aitkins +aita +airola +aines +aimone +ailts +ahrent +ahne +ahlman +ahlin +aguire +agor +agner +agerter +age +agcaoili +afzal +afshari +affleck +aduddell +adu +adolfo +adolf +adjei +adham +aderholdt +adens +adee +adauto +acocella +ackroyd +ackers +acken +ack +achter +acheampong +aceret +accornero +abts +abruzzino +abrecht +abramov +aboud +abo +abes +abed +abby +aamot +aalbers +zwolensky +zwiener +zwanzig +zvorsky +zutter +zurowski +zupfer +zunker +zumbach +zubik +zubiate +zottola +zoss +zorman +zonker +zomer +zollo +zolezzi +znidarsic +zmijewski +zmich +zlaten +zisk +zinter +zingler +zindel +zimlich +zillman +zilliox +zigich +ziesemer +zielonka +ziebart +zia +zhuang +zeyer +zerkle +zepf +zenisek +zempel +zemaitis +zeltner +zellman +zelasco +zeisler +zeinert +zeier +zegarra +zeeman +zedaker +zecher +zeagler +zbinden +zaunbrecher +zarlengo +zannino +zanni +zangara +zanetti +zanes +zanderigo +zanayed +zambito +zalusky +zakutney +zaiss +zahar +zagrodnik +zaeske +zadroga +zadeh +zacek +yzaquirre +yuro +yupe +yunt +yue +youns +youngerman +youkhana +yoshizumi +yoshiyama +yoshikawa +yoshihara +yore +yoneda +yoh +yepsen +yepiz +yentzer +yelin +yedid +yeddo +yeboah +yeah +yauck +yattaw +yarrow +yarosh +yarn +yanuaria +yanko +yampolsky +yamin +yamagata +yakow +yaegle +yacono +yacko +xayavong +wythe +wyrich +wydeven +wyandt +wurtzel +wurdeman +wunner +wulffraat +wujcik +wry +wrighton +wreath +wraight +wragge +woznick +woten +wormuth +woofter +woodmore +woode +womeldorff +wolvin +wolman +wolgast +wolfgramm +wojtas +wojenski +wohletz +woetzel +woelke +woelk +woehrle +wittlinger +wittke +witthuhn +witthoft +wittekind +witkus +witbeck +wist +wissinger +wisnoski +wisley +wishard +wish +wipperfurth +winterling +winterholler +winterfeld +winsman +winkenwerder +wingerson +winegard +windland +winchel +wilmott +willwerth +willougby +willinger +willims +williby +willian +williamon +willhelm +willging +willens +willenbring +willcott +willardson +wilhelmy +wildsmith +wildoner +wildberger +wikholm +wigner +wiglesworth +wiggett +wiget +wigdor +wieman +wied +wieboldt +widen +wickett +wickard +wichterman +wichland +wicher +whysong +whyms +whooper +whooley +whitver +whitmoyer +whitehorse +whitebear +whish +whippo +wheler +whelehan +wheetley +wheeland +wheelan +whatoname +whalan +weygandt +wexell +wetherald +westfahl +westerholm +westerheide +westenhaver +westen +wessendorf +wescom +werstein +wersal +werra +werntz +wernicki +wernett +werger +werber +wenskoski +wenk +wendzel +wendelboe +wenciker +wemhoff +welshans +welde +welby +welburn +weisfeld +weisenfels +weinreich +weikert +weiglein +weida +wegweiser +wegley +weflen +weeler +wedo +wedin +wedgewood +wedderspoon +wedd +weberg +weathington +wears +weakly +weafer +weaber +waz +waxler +wave +wauson +waugaman +waterer +wasmuth +washmuth +warters +warsaw +warns +warnken +warney +wariner +warchol +wansitler +wanless +wanker +wandrie +wandler +wanczyk +waltmann +waltersdorf +walsworth +walseth +walp +walner +walmer +walloch +wallinger +wallett +walkley +walkingstick +walentoski +walega +wale +waldock +waldenmyer +walde +waldbauer +walchak +wakayama +waiau +waddick +wacyk +vreeken +vrbka +vradenburg +vounas +votolato +vosquez +vosika +vorwald +vorse +voros +vorgas +vorel +voorhes +voncannon +volstad +volo +volkmer +volden +volbrecht +voisard +voetsch +voetberg +voeltner +voegeli +vock +vlloa +vivona +vivino +vivenzio +vitucci +vittitoe +viti +viteaux +vitatoe +viscome +virzi +virula +virrey +virella +virani +viox +violetta +vinall +villatora +vilcan +vik +vigen +vieths +vielman +vidra +vidot +vidalez +vicent +vibert +vibbard +veth +vestering +veshedsky +versoza +verrell +veroeven +vernola +vernia +verjan +verity +veriato +verhague +verdusco +verderosa +verderame +verdell +verch +verbeke +venture +veness +vener +vendrick +vences +vellucci +vellone +velk +vegh +vedia +vecchiarelli +vazzana +vaux +vaupel +vaudrain +vatalaro +vastano +vasso +vasiliou +vasher +vascones +vas +varuzzo +varrelman +varnedore +vari +varel +vanwright +vanvoorhees +vanvolkinburg +vantrump +vanstraten +vanstone +vansice +vanscoter +vanscoit +vanord +vanoosten +vannortwick +vannette +vannatten +vanloon +vanliere +vanis +vanhese +vangalder +vanelderen +vandre +vandover +vandinter +vandewalle +vandevander +vanderroest +vandermay +vanderloo +vanderlee +vanderlaan +vandergraph +vanderen +vandenbrink +vandenboom +vandenberge +vandel +vandegriff +vandale +vanbruggen +vanboerum +vanbelle +vanauker +vanasten +vanarsdall +vallerand +valladao +valis +valintine +valenziano +valentia +valensuela +vaisman +vahena +vaglienty +vacchiano +uziel +uyemura +utsler +usie +urzua +ureste +urby +urbine +urabe +uptgraft +unterzuber +untalan +ungerman +ungerland +underland +underberg +umholtz +umbright +ulwelling +ulstad +ulmen +ulcena +ulanski +uhlenkott +uher +uhas +uglow +ugland +uerkwitz +uccellini +tysarczyk +tyron +twymon +twohey +twisselman +twichell +tweten +tuzzolo +tuzzo +tutoky +tusler +turnner +turja +turick +turiano +tunnicliff +tummons +tumlison +tumaneng +tuder +tuczynski +tuchman +tubville +tsukiyama +tselee +truxon +truxler +trussler +trusler +trusillo +trudillo +trude +truchan +trowery +trotochaud +tropiano +tronstad +trolinger +trocinski +triveno +trites +triplet +trick +trichell +trichel +trevey +trester +treisch +treger +trefz +tredwell +trebbe +treakle +travillion +travillian +travaglio +trauscht +traube +trapper +tranum +trani +train +towlson +towlerton +towey +tovmasyan +tousley +tourtellotte +toure +toulson +totin +tosti +tosado +toruno +torrisi +torris +torrent +torrado +torner +torino +torell +topolansky +tooze +toot +tontarski +tonnessen +tonneson +tones +tomisin +tomilson +tomasetti +tolomeo +tollman +tolhurst +tolchin +tolbent +toher +toffton +toepel +toelkes +todorovich +todisco +toczek +tockey +tochterman +tobiasson +tlucek +titzer +titman +tise +tippets +tio +tingwald +timmel +timbrook +tilmon +tijerino +tigerino +tigano +tieken +tiegs +tiefenbrun +tichacek +tica +thurmer +thuotte +thramer +thoroughman +thornock +thorndyke +thongchanh +thomen +thoe +thody +thigpin +thielemier +thi +therres +thal +thakur +tewes +teves +tesmer +teslow +tesler +teruel +terron +terris +terre +terrasi +terrace +tero +terman +tereska +teresi +tepp +teo +tenzer +tennille +tennies +tencza +tenamore +tejadilla +tecklenburg +techaira +tayse +tawwater +tavolacci +taverner +taurino +taulman +taublee +tauarez +tattershall +tatsuta +tatsuno +taschner +tasby +tarrats +tarrants +tarone +tarley +taraborelli +taper +tanniehill +tanks +tankard +tangri +tanequodle +tamporello +tamer +tamburro +tambunga +taliman +talib +talas +takala +takach +taiwo +taibi +taghon +tagaban +tadena +taccone +taccetta +tabatabai +szyszka +szmalc +szerszen +szczepanik +szarek +szafraniec +szafran +szablewski +syta +sysyn +syndergaard +symanski +sylvian +syck +swymer +swoffer +swoager +swiggum +swiat +swetnam +swestka +swentzel +sweetwood +swedenburg +swearingin +swartzendrube +swarm +swant +swancey +sverchek +svenson +sutor +suthoff +suthar +susong +suskin +surra +surano +supplee +supino +sundborg +summons +summerour +sumers +sultzer +sulouff +sulecki +suhoski +suhar +sugerak +suganuma +suddoth +sudberry +sud +stymiest +stvrestil +stuve +sturrup +sturmer +stumer +stuhlsatz +stuenkel +studier +stuczynski +stubbolo +struebing +struchen +strozzi +strowder +strohbehn +stroer +strobridge +strobeck +stritmater +strike +strieter +strickling +streu +streifel +straugter +stratakos +strasburger +straface +straatmann +stpeters +stovel +stoudenmire +stotsky +stothart +storz +stormes +storman +stoppel +stooks +stonelake +stonebrook +stombaugh +stoltzman +stolsig +stolpe +stoglin +stoffle +stodgell +stocke +stirna +stipetich +stinner +stimpert +stimer +stilphen +stikeleather +stifel +stiely +stielau +stieger +stidman +stickrath +stickman +stickels +stgerard +sternberger +stergios +stepien +stepanski +stent +stenkamp +stenehjem +stempel +stemmer +stelb +steiskal +steinmuller +steinmacher +steinhorst +steinhaus +steinharter +steinhagen +steinburg +steifle +stefanick +stefanich +steeber +stay +stawarz +stavropoulos +staves +staup +stauch +staubs +stathopoulos +stathis +startz +starowitz +starowicz +starkie +starcic +stanely +standrod +standahl +stanczak +stample +stampka +stamer +stallins +stalford +stahoski +stagger +stader +staack +srsic +srey +squitieri +spyres +spuhler +sprouffske +sprosty +sprinzl +springle +spoth +spletzer +spizer +spitsberg +spitale +spiroff +spirer +spiotta +spinola +spingler +spike +spierling +spickler +sphon +spettel +sperle +sperka +sperberg +speltz +spaw +spasiano +spare +spancake +spagna +sowerby +sovern +souvannasap +southerly +sous +sourwine +soult +sotiriou +sothman +sota +sortore +sorley +sorin +sorells +soratos +soose +soong +sonsino +sonnabend +sonia +songster +sondrol +sondergaard +soltau +solinski +solinger +solid +sojda +sohns +softleigh +soffel +soffa +sodaro +sodano +soda +sobran +sobczynski +sneeden +snater +snair +smoker +smithingell +smink +smiles +smialek +smetak +smejkal +smeck +smaldone +sluyter +slot +slostad +slingerland +sliffe +slemmer +slawter +slavinski +slagowski +slaff +skuse +skulski +skornia +skolfield +skogstad +skinkle +skidgel +skeffington +skeets +skeele +skarupa +skarphol +skaare +sjolander +sjaarda +sitts +sitterud +sitt +sissell +siprasoeuth +sipper +sipla +sipkema +sinning +sinitiere +single +simmens +simm +simiskey +simelton +silverthorne +silvernale +silvan +siliado +silbaugh +siket +siker +sigurdson +signore +sigers +siffert +sieving +sieverding +sietsema +siering +sienicki +siemsen +siemonsma +siemering +sielski +siedlecki +siebers +sidbury +sickman +sickinger +sicilian +sible +sibilio +sibble +shutler +shurgot +shuping +shulda +shula +shrieves +shreiner +shreckengost +shreck +showes +showe +shoupe +shoumaker +shortey +shorten +shorrock +shorkey +shones +shockency +shoats +shivel +shipmen +shinsel +shindledecker +shinabarger +shiminski +shiloh +shillingford +shigo +shifman +shiers +shibuya +shewchuk +shettsline +shetter +shetrawski +sheffel +sheesley +sheekey +sheeder +sheares +shauger +sharko +shanna +shankin +shani +shandley +shanaa +shammo +shamlin +shambrook +shadow +shackley +sgambati +sferrazza +seydel +sewald +sevenbergen +sevaaetasi +seumanu +seuell +settler +setterberg +setera +sesso +sesay +servoss +servino +serpe +sermeno +serles +serena +serapio +senske +semmler +seminole +semel +selvaggi +sellai +selissen +seling +seleg +seledon +selbo +selan +sekuterski +sekula +seiwell +seivert +seise +sein +seils +seier +seidita +seiberling +seher +segroves +segoviano +segel +segee +seftick +sees +seekell +seegobin +seebold +sedlack +sedbrook +section +secrease +secore +seckler +seastrand +seargent +seacrist +seachord +seabrooke +scudieri +scrim +scozzafava +scotten +sconce +scircle +scipioni +sciarretta +sciallo +schwingler +schwinghammer +schwingel +schwiesow +schweinfurth +schweda +schwebke +schwarzkopf +schwander +schwaller +schwall +schut +schurkamp +schunter +schulder +schuenemann +schue +schuckman +schuchart +schroff +schoville +schorzman +schorder +schooner +schones +scholler +schofell +schoewe +schoeninger +schoenhals +schoenbeck +schoefield +schoberg +schnittker +schneidermann +schneckloth +schnebly +schnathorst +schnarrs +schnakenberg +schmitzer +schmidbauer +schmeeckle +schmeckpeper +schmandt +schmalzried +schmal +schlinker +schliep +schlette +schlesier +schleig +schlehuber +schlarbaum +schlaffer +schkade +schissel +schindeldecke +schimandle +schiermeier +scheunemann +scherrman +schepp +schemmer +schelp +schehr +schayer +schaunaman +schauland +schatzel +scharrer +scharping +scharpf +scharnberg +scharmer +scharbor +schalow +schaf +schader +schacter +scelfo +scarpello +scarlet +scaringe +scarduzio +scamardo +scaman +sbano +sayman +saylee +saxena +sawdey +sawada +savitsky +savickas +savic +savaglio +sauriol +sauret +saulo +satar +sasportas +sarvas +sarullo +sarsfield +sarne +sarmento +sarjent +sarellano +sardin +saputo +santheson +santellana +santarsiero +santago +sansalone +sanos +sanna +sanko +sanker +sanghani +sangalli +sandven +sandmann +sandhoff +sandelius +sandall +sanchious +sancedo +sance +sampogna +sampilo +sampayan +sampaia +sampaga +samo +samlal +samela +samec +samad +salzberg +salway +salwasser +salveson +salvemini +salus +salquero +salowitz +salizzoni +salina +salin +salimi +salgero +salemi +salato +salassi +salamacha +salahubdin +salada +saintignon +saintamand +saines +sahl +saha +sagona +sagedahl +saffel +saemenes +sadow +sadlow +sadger +sacramento +sackal +sachtleben +sabota +sabot +sabe +sabata +sabastian +sabad +rzepka +ryzinski +rytuba +ryon +rynes +rykiel +rykert +rykard +rydolph +rydell +ruzicki +rutko +rutenbar +rustrian +rusinski +rushmore +rushenberg +rushen +ruschak +rury +ruper +ruotolo +rummerfield +rumer +rumbolt +rulon +ruleman +rufe +rudo +rudkin +rudick +rubinich +rubidoux +rubero +roys +rowman +rovere +rousu +rouillier +rotton +rotondi +rothenbach +roszell +rossotto +rossmiller +rossey +roshannon +rosenfeldt +roscioli +rosander +rorrer +rorex +ropes +ropac +rooth +roorda +ronsani +ronne +rong +ronfeldt +rondy +romp +romon +romness +romm +romera +romeiro +rombach +romar +romansky +romagnoli +rom +rolson +rojos +rohanna +rogstad +rogillio +rogg +rogacki +roffman +roethle +roeth +roetcisoender +rodibaugh +roderiques +rodenburg +rodemeyer +rodberg +rockovich +rocher +roccio +robeck +robe +robayo +robar +rizzardo +rivie +rival +ritterbush +ritchko +ritchhart +ristig +rishty +rippstein +rippelmeyer +rioseco +ringwald +ringquist +ringham +rinella +rineer +rimple +rilling +rill +rijo +riihimaki +riglos +riggens +rigaud +rigali +rietz +rietdorf +riessen +riesgraf +rienstra +riekena +riedle +riedinger +rieb +rickenbaker +richcreek +richbourg +riccelli +riberdy +ribb +rhodie +rheome +rheinhardt +rezai +reynalds +reyman +reyez +rewenko +reville +revello +revelez +reul +resue +restuccia +replenski +reon +rentar +rensberger +rens +rennaker +renell +remson +rell +relacion +rekuc +reker +reitler +reischl +reints +reinoehl +reinart +reimund +reimold +reikowsky +reiger +reifman +reicks +reichler +reichhardt +rehling +regos +regino +regalbuto +reffner +reents +reenders +reeks +reek +reeck +redmer +redican +reddoch +reddig +reddicks +redbird +rectenwald +recek +rebillard +rebich +rebeck +reagon +raziano +raymore +ravenel +ravel +rause +rauschenbach +rauer +rauchwerger +ratelle +rasinski +rasbury +rardon +rapson +rapkin +raoof +rannells +ranke +rangitsch +rangasammy +randt +ran +ramser +ramsaroop +ramsahai +ramrez +rampley +ramirec +ramesh +ralbovsky +rakoczy +rakoci +rajwani +rajaratnam +raiden +rahmani +ragno +raghunandan +ragas +ragar +rafuse +radvany +rados +radmacher +radick +radecki +raczynski +rachell +qureshi +quirin +quire +quintona +quinnett +quinalty +quiambao +quella +quatraro +quartararo +qualle +qin +pytko +pyer +pyanowski +puzio +pushcar +purviance +purtlebaugh +pupo +pulte +pulse +pullom +pullings +pullano +pulkkinen +puliafico +pulfrey +pujols +puhala +puchalla +pucciarelli +prutzman +prutt +pruneau +prucha +provitt +protin +prose +proco +proa +prisk +prioletti +priode +prinkey +princiotta +prich +pribnow +prial +preyer +prestino +pressimone +preskitt +preli +preissler +prehoda +predovich +precise +prazenica +prawdzik +prast +pozzobon +pozos +powles +pov +poullard +pouch +potucek +postert +posten +posson +posa +portuondo +porten +porst +poree +pora +poque +popiolek +poot +poock +pongkhamsing +ponessa +pone +poncio +polumbo +pollutro +pollet +pollen +poljak +polemeni +pokswinski +poisel +poette +poelman +pody +podewils +podaras +pocius +pobanz +plympton +ply +plush +plume +pluff +plues +plue +plona +plexico +plew +pleiss +pleil +pleasanton +plattsmier +plathe +plankey +plahs +plagge +placker +placha +pizira +piwowar +piwetz +pittelkow +pitta +pithan +pitcherello +pisciotti +pipilas +pintea +pinta +pinkstaff +pinkos +pinc +pilotte +pillo +pihl +pignotti +piggs +pietrzyk +piermont +pieczynski +piechowski +piech +pickersgill +picetti +picciuto +piccinini +picarello +picardo +picado +piantanida +pianka +pian +phothirath +phippard +philman +philipson +philavanh +phelts +phanor +phanco +pflughoeft +pflugh +pfliger +pfeister +pfeifle +peyre +peyatt +pettine +pettett +petru +petronio +petricka +petrak +petko +petitto +petersson +pesnell +peshek +pesh +pescador +perze +perteet +pertee +pert +perschbacher +perruzzi +perrish +perrigan +perriello +perr +perozo +perlich +perking +perkes +perfater +perce +pepez +peon +penunuri +penuel +penso +pennisi +penkins +penkalski +pendon +pellon +pellissier +pelino +pel +peick +peguese +peggs +pefanis +peeters +peedin +peduto +pedulla +pedrozo +pedrotti +pedroncelli +pedrogo +pedri +pedregon +pederzani +pedde +pecukonis +peckler +pecka +pecha +pecci +peatman +peals +pazo +paye +pawlusiak +pawlitschek +pavlosky +pavlo +paveglio +paulman +paukstis +pauk +patts +patter +patriss +patneaude +paszek +paswaters +pastula +pastuch +pastel +passy +passarella +pasquin +pasqualetti +pasqual +pascuzzi +pasceri +parviainen +parral +parolini +parmele +parma +parlavecchio +parfitt +parez +pardieck +pardew +parda +paraz +parat +papay +paparello +papaioannou +paolello +pansini +panelli +panell +pander +pancholi +panaro +panagiotopoul +palomarez +palmrose +palmisciano +palmese +pallotto +palleschi +palk +palhegyi +palenzuela +paleaae +palczynski +palakiko +palaia +paith +pagonis +pago +pagliuca +pagliari +paganini +padovani +padfield +padamadan +pacquette +paco +packwood +pachero +pachar +pacewicz +paasch +pa +ozols +ozga +ozenne +oxman +overpeck +overbeek +overbee +oulette +otsu +otremba +otool +otar +otanicar +osumi +osucha +ostrov +osthoff +ostertag +ostergard +ostaba +ospital +ososkie +osofsky +osisek +oshinsky +orzalli +orwin +ortwein +ortuno +orts +ortell +orpen +ornelaz +orewiler +ores +ordones +opunui +oppenlander +opoien +opalka +ooley +ontko +ondrey +omura +omtiveros +omland +olup +olthoff +olsten +ollila +olivia +olinsky +olinick +oleksa +olejarz +oldakowski +okoronkwo +okins +ohmer +ohlsson +oherron +oheron +ohanian +oganesian +ogaldez +oest +oehlenschlage +oedekerk +odon +odekirk +ocran +oconor +obrzut +obrist +obringer +oborny +oblander +obi +oberley +oberer +obeng +oatridge +oajaca +nypaver +nuzzi +nuzback +nuxoll +nussbaumer +nurmi +nuhn +nugen +nuara +nquyen +nozicka +noxon +nowick +nowaczyk +novielli +novembre +november +novas +noun +notto +notowich +norzagaray +norway +northover +northcross +norem +nordmann +nordenson +nolet +nojiri +nohel +noethiger +nodd +nitzel +nita +nisbit +nina +nikas +nigon +niglio +nighswander +nighbert +niemietz +niedzielski +niederkorn +niederhaus +niederer +nicometo +nicolaides +nickolich +nguyn +neyra +neymeyer +newmon +newgent +newbery +nevala +neuweg +neuhoff +neuhauser +neubecker +nettik +netters +nestingen +nesspor +nerad +nenez +neldon +neizer +neives +neils +neiger +neidich +neibert +negroni +neemann +needle +neeb +nedry +nedley +neas +naze +nazaroff +nayes +nayar +nattress +natonabah +nassr +nasseri +nassef +naso +narkier +naret +nardini +nardecchia +naragon +naputi +napierala +nanny +nanke +namdar +naji +naidoo +nahm +nahas +nagelschmidt +naes +naegeli +nacol +naclerio +nachor +nabozny +nabarrete +nab +myrlie +mykins +muzio +mutolo +muta +mustoe +muster +muske +muschamp +muscarello +musacchio +murzycki +murrufo +murnan +muraski +murany +murano +munzer +munis +munion +mumby +mumbower +mulrain +mullinex +mullineaux +mullennix +mullahey +mukhtar +muina +muha +muehlman +muccigrosso +mrozoski +mozier +mow +mova +moustafa +mousser +mouse +mousa +mouritsen +mourad +mottet +motten +motamedi +mostowy +mostafavi +mosiman +moscone +moscicki +mosbrucker +morva +mortinez +mortel +morsey +morrin +morren +morosco +morledge +morla +morisky +morishita +morisey +morgia +moretta +morera +morenz +mordue +mordhorst +mordaunt +morber +morawa +moravick +morarity +mooty +mooser +moock +moochler +montoure +montooth +montonez +montierth +monticello +monteverde +monterrano +montella +montecillo +monsrud +monsma +monserrat +monrreal +monro +monetti +mondok +mondella +moncion +monaldi +moltz +molon +mollicone +molle +moliterno +molinere +molinary +molesworth +moh +mogush +mogren +moellers +moeck +modert +mockbee +mocher +mochel +moc +moberley +moan +moallankamp +miyose +miyata +miyashita +miyagi +mitsuda +misumi +missel +miskelly +misiaszek +mirzadeh +mirto +mirsch +mirles +miolen +minzel +minutillo +minugh +mintzer +minskey +minnaert +minkoff +miniard +mingledorff +minas +minaai +milly +millinor +millie +millerd +millea +milkey +milham +milfeld +mileham +milas +milar +milak +mikulski +mihara +mihalek +mihalchik +mihal +mignot +mignano +mighty +miesse +mierzwinski +micthell +mickus +mickolick +mickiewicz +michlin +michelena +micha +miccio +micari +mezzatesta +mewbourn +meuse +meurin +metzker +mettling +metting +metters +metropoulos +metevia +mesteth +mesko +mesi +meserole +mervyn +mernin +mermelstein +merling +merli +merkowitz +merklin +merkerson +merica +merendino +mercury +meray +meranto +merancio +mensik +mense +menoni +mennie +mengsteab +menes +mend +mency +memolo +meltz +meling +melen +melcer +melamed +mekee +meiste +meise +meinhard +meierotto +mehok +meharg +meginnes +meenach +medicus +mediano +media +medell +mede +meddaugh +meconi +mech +mearse +meardon +mealor +meadville +meachen +mcvicar +mcsparin +mcrorie +mcrobbie +mcoy +mcowen +mcnorton +mcnertney +mcnamer +mcnail +mcmanamon +mcmain +mclyman +mcleland +mckirgan +mckew +mckevitt +mckercher +mckensie +mckeegan +mckeane +mckahan +mcinture +mcindoe +mcilvenny +mcillwain +mciff +mcgwin +mcguff +mcgrotty +mcgrone +mcgrant +mcgoogan +mcglon +mcgloin +mcgiveron +mcghehey +mcghay +mcgavin +mcgahen +mcfann +mcelwaine +mcelduff +mceachron +mcdilda +mcdermid +mcdannold +mcdale +mcculough +mccuien +mccrumb +mccrorey +mccreless +mccravy +mccourtney +mccorrison +mccorkell +mccorey +mcconney +mcconnaughhay +mccollester +mcclurkan +mccluer +mccloudy +mcclenaghan +mcclave +mcclarnon +mcclarin +mcclaney +mcclanan +mcclair +mcchristion +mccaskell +mccartha +mccarl +mccamant +mccalmont +mccalman +mccaine +mccahill +mccague +mcbrown +mcanany +mcalvain +mazzurco +mazuc +mazo +mazingo +mawhorter +mavro +mavraganis +mautner +mautino +mauceli +matzinger +maturi +matturro +mattlin +mattheis +matsuoka +matsuki +matro +matlack +matice +mathson +matheu +mathenia +math +matejka +mateja +matanane +masztal +mastropaolo +mastromarino +mastrolia +mastel +massy +massoud +massimino +maslanka +masini +mascioli +marzec +marvier +maruyama +marusarz +marum +martorella +martire +martinkus +martinas +martiez +marthe +marteney +marschall +marruffo +marrazzo +marples +marohl +marn +marlborough +markunas +marki +marjan +maritnez +marinkovic +marineau +margaitis +marentis +mare +marcou +marciel +marci +marchiori +marchello +marchell +marcelle +marcelin +marales +mapel +manzanarez +mantilia +mansmith +manon +mannschreck +mannick +mankiewicz +mankel +manila +manifold +manha +mangrich +mangiapane +mangiamele +manera +mandes +mandella +mandelik +mandaloniz +mand +mancusi +mancine +mana +mamula +mammoccio +malzhan +malzahn +malsom +maloon +malnar +mallone +mallinson +mallie +mallek +malle +malinoski +malinconico +malicoat +malicdem +malhi +malfatti +malandrino +malamud +malakowsky +makovec +makey +majercik +majer +majamay +maisenbacher +mainey +mailey +mailander +mahuna +mahomes +mahoe +mahnken +maheras +mahaxay +mahana +maham +magnia +magni +magnanti +magliano +magliacane +maglaughlin +magistrale +magierski +maggini +magano +mafnas +madren +mador +maderios +madena +maddron +madan +madalinski +macmanus +maclead +mackowski +mackinaw +mackessy +mackerl +macker +macivor +machold +machain +macedonio +macdiarmid +macchiaroli +macbean +macayan +macari +mabin +mabel +lyter +lyster +lysne +lynskey +lyness +lyndaker +lymaster +lykke +lyell +luxmore +luttmer +lutgen +lusignan +lupold +lungstrom +lunford +lundeby +lumbard +lule +lukaskiewicz +luinstra +luevand +luer +lueking +luehrs +luecking +ludvigson +ludgood +lucich +luchetti +lubman +lubic +lozito +lowhorn +lowd +loverich +loveman +lovas +lovaas +louvier +louthen +loury +loukanis +loughner +loughnane +louato +lotshaw +lother +lothamer +loter +losinski +losinger +loshek +losecco +lortie +lorin +lorent +lorello +loras +lorah +lopau +loosen +lontz +longpre +longie +loncaric +lombrana +lomba +lohrey +lohoff +logghe +loges +lofstead +lofft +loertscher +loeper +loeblein +lodato +lochen +lobbins +lobban +lizarrago +livigni +livernash +liukko +littich +litterer +littau +litchmore +lisy +lissy +lishman +lischak +lirag +liptow +lins +linkhart +linkert +lingren +lingelbach +lingel +lingad +linet +linegar +linebrink +lindroth +lindeland +lindboe +linardi +linard +ligman +liggans +lifland +liff +lieuallen +liesveld +liess +lienhard +liehr +liedy +liedke +liebau +lidtke +lidstrom +licano +libra +leys +leymeister +lewerke +lewand +levoci +leviton +levien +leveston +leverenz +levere +levangie +leuy +leukuma +lettman +letran +letlow +lethco +letersky +lestronge +lesso +lessey +leshem +lerud +leps +leonesio +leones +lento +lente +lennertz +lenior +lenhard +lenfest +lene +lendrum +lempicki +lemonier +lemle +lemkau +lemings +lem +lelli +lekas +leitten +leitheiser +leino +leiner +leinenbach +leidy +leidich +leid +leich +lehnhoff +leh +legum +legoullon +legeyt +legalley +legace +lefton +lefthand +leforge +lefore +lefleur +leerar +leef +leed +ledl +leddon +ledain +leckie +lecates +lebeouf +leben +lebeck +lebeaux +leban +leaverton +learman +leardi +leamy +lazare +lazarczyk +layssard +layson +layhew +layel +laychock +lawernce +lavzon +lavalla +lauterborn +laut +lauseng +lausen +laurino +lauri +laurenzano +laurenza +laundry +laumbach +lauinger +lauenroth +latzke +latulipe +lattig +latronica +latouf +latko +latiker +lathern +laterza +latchaw +lataquin +lasure +lashomb +lasell +lasasso +lartey +larriva +laro +lardner +lardieri +laprarie +lapping +lapitan +lapeyrolerie +lapar +lanzetta +lantis +lanka +lani +langshaw +langmyer +langin +langerman +langeland +langbein +landro +landrian +landmesser +landmann +landfair +landesberg +lanciotti +lamprey +lampey +lamos +lamora +lamoine +lamfers +lambka +lamance +lamana +laliotis +lajza +lajaunie +lainson +laher +lahar +lagrotta +lagrant +lagraize +lagnese +lafrazia +lafountaine +laflin +lafaso +lafarga +ladage +lacsamana +lacrosse +lacrone +lachowski +labruyere +labrake +labossiere +laba +laack +kyzar +kynard +kwek +kuzmin +kuttner +kusiak +kuser +kuse +kurtzer +kurtzeborn +kurpinski +kurohara +kuroda +kurnik +kurihara +kurdziel +kurban +kuras +kupper +kupferer +kupec +kunzelman +kunkler +kunin +kunesh +kumro +kumpf +kulon +kulka +kukucka +kuk +kuhse +kuhls +kuhlo +kuhar +kuerbitz +kuenzi +kuehneman +kudron +kuczenski +kuchle +kuchenmeister +kuchenbecker +kucan +kubu +kubsch +kubiszewski +kubish +kubicz +kubick +kubaska +kuarez +ksiazek +kshywonis +krzykowski +krzak +krysl +kruzewski +kruzan +krumrine +krumins +krucker +kroupa +krough +krotz +kronstedt +kromrey +krogstad +krogmann +kroeze +kroetz +kroc +kristianson +kristen +kriser +krips +kringas +kriete +kreuter +kretschmann +kresha +kreidel +kregger +kreatsoulas +kratochwil +krasovec +krase +krapf +kranawetter +krajnik +kozubal +koyanagi +kowalkowski +kovarovic +kovalcin +kou +kotzen +kotnik +kostelecky +kostek +kostecki +kostal +kosse +koslowski +koskie +kosicki +koshar +kosek +kortright +korpal +kornhauser +kormos +korinek +korgie +kordsmeier +kordish +koral +kops +kopps +kopperud +koppang +kopfer +kopet +kook +konno +konik +konek +konefal +komm +komis +komer +komarek +kolsrud +kolp +kolopajlo +kollmorgen +kolis +kolesnik +koles +kolding +kohs +kohlhoff +kohatsu +kohara +koetter +koestler +koepsel +koeppe +koenigsman +koelewyn +koe +kodadek +koci +kochler +kocab +kobylinski +kobryn +koberg +knower +knollenberg +knock +knizley +kniss +knies +knezovich +knesek +knepel +knehans +kneeskern +knaust +knapke +kmet +kluz +klukas +kloska +klopf +klinglesmith +klinekole +klimes +kliment +klimaszewski +klepfer +klepacki +klepac +klemash +kleinkopf +kleinknecht +kleimola +kleiboeker +klei +klehn +klegin +klavuhn +klauer +klasinski +klasing +klarr +klapec +klaass +klaameyer +kjelland +kiyuna +kitching +kistle +kissi +kishi +kirvin +kirtner +kirovac +kirnon +kirkby +kiritsy +kirchgesler +kippley +kipping +kinzig +kins +kinnare +kinna +kingcade +kinatyan +kimme +kimbrow +kimbril +kilzer +kiltz +killmer +killibrew +killeagle +kilger +kiles +kievit +kientzy +kielty +kiekbusch +kiehne +kiefert +khou +khiev +khat +khare +keywan +keyt +kevin +keville +kevern +keuler +ketola +ketelaar +kertis +kerson +kernen +kerkman +kerker +keogan +kenwood +kenne +kenaan +kempler +kempisty +kempfer +kempen +kemmerlin +kelter +kelman +kellie +keliihoomalu +keleman +kekiwi +keiswetter +keiss +keilty +keidong +kegel +keets +keeneth +keefner +kedzierski +kebort +keate +keat +kazmorck +kazi +kaz +kawachi +kaushiva +kauk +katzner +katzmark +katzen +katsuda +kats +kater +katen +kasting +kasserman +kassay +kassabian +kasprowicz +kasperek +kasowski +kasmir +kaska +kasik +kascak +karth +karsnak +karshner +karsh +karmel +karlstad +karley +karins +karimi +karcich +karch +karapetyan +karakas +kapsalis +kappeler +kapke +kaperonis +kapahu +kanthak +kansky +kansas +kanoy +kanno +kannady +kandarian +kanai +kanae +kanaan +kamphoefner +kammler +kaminetzky +kaminaka +kamienski +kamaunu +kamakea +kama +kaltefleiter +kaloustian +kaloi +kallmeyer +kalisch +kalinski +kaliher +kalgren +kalfas +kales +kalafatis +kagle +kadish +kachermeyer +kabina +kaawa +kaaua +kaatz +juvera +jutte +justen +jusko +juriga +jure +jungquist +jungbluth +juneja +juncaj +juliet +juhas +juenger +juell +jucean +jubinville +jovich +jorres +joris +jore +jonhson +joneson +jonassen +jolissaint +jointer +johnny +johengen +johar +joh +joern +jodway +jobs +joanette +jirik +jirasek +jipson +jinkerson +jinkens +jiminian +jimeno +jiau +jevnikar +jessel +jerauld +jephson +jentzen +jenkerson +jenista +jenifer +jemmett +jelovich +jehlicka +jeffris +jedziniak +jeantet +jeanclaude +jayme +javor +javaux +jaurigue +jaureguy +jarvinen +jarocki +japp +janszen +jansons +jans +jankauskas +janka +janhunen +janeczek +jandrin +janczewski +janack +jamir +jakuboski +jakubik +jakubek +jahnel +jageman +jaenicke +jacquem +jacquay +jaconski +jacobellis +jablon +iyo +ivancevic +iurato +iulianetti +itri +issler +isla +isip +ishmon +ishizu +isgrigg +iseri +iseli +iseley +isbrecht +isassi +isaiah +irsik +irias +inzana +intveld +intrieri +interdonato +instasi +inscho +ingwell +ingebretsen +inga +inda +incle +inabinett +imus +immordino +imbesi +imbach +illsley +illig +ill +ignowski +idler +idleburg +ideue +ibara +ianuzzi +ianniello +iacovone +hyter +hyles +hyle +hykes +hyams +huxley +hutch +hustead +huscher +hurtz +hurse +hurren +huret +huotari +huntress +hunting +hunstiger +hunking +humpries +humbles +hum +hulvey +hulcy +huizinga +huhman +huhammad +hufty +huesso +hueftle +huebschman +huebert +hue +hudmon +huberman +hubbartt +hubach +hsueh +hrycenko +hrabal +hoxit +howsare +howman +howitt +howerter +houlton +houis +hottman +hotovec +hostin +hoshall +hosfeld +hoschek +horwath +horsely +horsburgh +horovitz +hornstrom +hornbarger +horkley +horka +horey +horeth +hordyk +horack +hoppin +hoppel +hopfensperger +hooey +hooe +honhart +honga +honeck +homs +hommell +homles +homen +home +holzner +holzheimer +holzem +holsopple +holsman +holowell +holliway +holizna +holesovsky +holderbaum +holbach +holan +hoit +hoist +hohenbrink +hoger +hofmans +hofheimer +hoffhines +hofbauer +hoesing +hoeschen +hoerter +hoepfner +hoemann +hodgeman +hockersmith +hochadel +hobock +hobel +hluska +hlavac +hisrich +hirsbrunner +hirpara +hire +hinners +hindbaugh +himenez +hilles +hilleary +hillanbrand +hillan +hildner +hilding +hilderbrandt +hiland +hightree +highnote +highberger +higgason +higaneda +hidinger +hickock +heymann +heusinkveld +heusel +heuring +hettler +hesseltine +hesselink +hesford +herth +herskovits +herschell +heroman +hernton +herne +hernandaz +hermez +hermanstorfer +herling +herke +herimann +heriford +hergenrader +herforth +herdes +hercher +herceg +herbick +hentze +henniger +henney +henness +hennegan +henkes +heneisen +henderickson +henard +hemrick +hemric +hempton +hemp +hemme +hemeon +hembry +hembrough +hembrey +helstad +helmus +hellings +hellgren +helie +helgert +helgerman +helger +helgason +helfinstine +helfgott +helfenstein +heldreth +helander +heitzmann +heisserer +heising +heisel +heinold +heinis +heinemeyer +heimark +heiliger +heiderman +heidenescher +heidebrink +hehir +hegan +heersink +heep +hedquist +heckford +hebets +heberly +heberle +hebenstreit +heavilin +heartz +heaphy +heany +hazer +hazelgrove +haynsworth +haydock +hawelu +havnen +havely +hauss +hausam +haumesser +hauman +haulk +hauley +haubrick +haubner +hattman +hatman +hatherly +hatchcock +hastert +hassenplug +hasko +haser +haselhuhn +hasberry +has +harthorne +harthcock +harriett +harouff +harootunian +harkavy +harell +hardridge +hardacre +harborth +haraguchi +haptonstall +happenny +hantman +hanses +hannemann +hannay +hannafin +hanle +hangartner +handerson +hanberg +hamzik +hamstra +hammans +hamano +halsema +halonen +halim +halek +haleamau +halama +hakeem +hainley +hagley +hagist +hagie +haggberg +haggan +hagele +hafenstein +hafemeister +hady +hadges +hadef +hackey +hach +habbyshaw +haaga +haab +gysin +gwirtz +guzzio +guzzardo +guzma +gutzmann +gutta +gutermuth +guterman +gutenberger +gurganious +gural +guppy +gunzalez +guntert +gums +gumb +gullotta +gullixson +gulling +gullace +guler +gulbransen +guitian +guinta +guinasso +guilboard +guichard +gugliotta +guglielmina +guggenheim +gugel +guetierrez +guethle +gueth +guerrido +gueits +gudenkauf +gucciardo +guarnera +guadagnolo +gsell +gschwend +grush +grupp +grundmann +grunau +grueninger +gruca +groupe +grotzinger +grotheer +grossmeyer +grossetete +grossack +gromer +groenke +groening +groehler +groebner +grochmal +groby +grobes +gritman +griswould +grisset +grime +griffo +griesinger +greuel +greth +gressman +gremel +greiwe +greis +greil +greife +greider +grefrath +greff +greenmyer +greany +grazioplene +gravlin +gravito +gravert +grav +grater +grap +granzin +grannum +granlund +grando +grammes +gramley +grambo +grala +grahl +gradwohl +gradillas +gradert +graciana +grabner +grabinski +grabinger +grabel +graaf +gouzy +gouger +gottron +gottardo +gothro +gosso +gossi +gorringe +gorneault +gorn +gormly +gorenflo +goral +gopen +goosey +goodnoe +goodie +goodhile +goodfield +goodard +gonneville +gongalez +gondola +gompf +gommer +gollehon +golie +golebiewski +goldinger +goldhaber +goldfeder +goldbaum +golaszewski +gojcaj +gogerty +goettsche +goethe +goessl +godson +godbe +gochanour +gocha +gnau +gnatek +glud +glorius +glordano +gloodt +glod +glinka +glime +gleim +gleicher +glazewski +glay +glasford +glascott +glanzman +glahn +gladish +gjerde +gizinski +gitzen +girsh +girote +girman +giovino +giovanini +giorgini +ginty +ginsky +ginnings +gingues +gingg +ginger +giner +gimm +gilruth +gillund +gillenwaters +gilday +gilcrest +gilcher +gilani +gigstad +giernoth +gienger +gidaro +giczewski +gibas +giarratano +giantonio +giannitti +giannetti +giampapa +giacopelli +giacone +giacomelli +gherman +ghera +ghan +gevorkyan +gettig +getchman +gesinski +gerundo +gershenson +gerraro +gernert +germundson +gerloff +gergel +gerdeman +gerdel +geraldo +geraldes +georgopoulos +georgis +georgevic +georgeson +genzel +genung +gentzler +gentili +genich +gelzinis +geiken +geidner +geidl +gehrer +geho +gehlbach +geeding +gedye +geberth +geathers +gearan +gealy +gazzola +gazella +gawrych +gavidia +gautam +gaumont +gaudenzi +gaucher +gaubert +gattas +gatley +gaters +gatchalian +gassel +gasman +gaslin +garufi +garriepy +garrell +garrand +garnto +garns +garno +garlinger +garivay +garhart +gardino +garcea +garbin +garaventa +garavaglia +garahan +garafano +garacia +gapen +ganiron +ganino +ganim +gangwish +gange +ganes +gandia +gandeza +gamlin +gamelin +galway +galow +gallob +gallishaw +gallinaro +gallicchio +gallese +gallero +gallegas +galeoto +galeas +galbreth +galbavy +galavis +galam +gajate +gair +gagney +gagel +gagarin +gaete +gaetani +gadbaw +gack +gabrysch +gabardi +fyksen +futrelle +furl +furches +furbeck +funnye +funicello +fumagalli +fullford +fulginiti +fulenwider +fulena +fugler +fuerstenberge +fuentas +fucillo +fuapau +fryberger +frusciante +fruehling +fromberg +froeschle +frock +fritzgerald +fritcher +frisbey +frihart +frieling +friedler +frie +fridell +freuden +freud +frett +frend +freiling +freije +freie +freidman +freibert +fregozo +freehling +fredo +fredlund +fredley +frede +freberg +frayre +fraunfelter +frascella +franssen +frankowski +francour +francom +francillon +francey +fraioli +fracassa +fostervold +fossey +foshay +foscue +forsell +forrister +forren +fornicola +fornes +forgie +forbs +foppe +foore +fontecchio +fongeallaz +follick +folio +foder +flyzik +fluhman +fluet +flow +floto +floros +floriano +floren +floran +floerke +flitcroft +flipp +flintroy +fleschner +flenner +fleeting +flamio +flaggs +flagge +fjeseth +fithen +fissell +fischman +fire +fioranelli +finseth +finocchiaro +finerty +fineman +finchman +filyaw +filipovich +filas +figler +figge +fiers +fiereck +fidell +ficorilli +fico +ficks +fickle +fialkowski +feyen +fetz +fetsko +ferullo +fertitta +ferriman +ferrebee +ferrand +ferrales +fernelius +fernberg +ferioli +fergoson +ferenc +fereira +fequiere +fennema +fenelus +fenelon +feneis +femrite +feltenberger +felsenthal +fels +felmet +felgenhauer +felarca +feiteira +feirer +feinen +feigenbaum +fehlinger +federle +fecko +feavel +featheringham +fayer +faxon +faurrieta +faull +fatone +fatigate +fasy +fasula +fassio +fass +farwick +farrill +farquer +farmwald +fantozzi +fanoele +fannell +fanizza +fandrich +fallo +fallago +faist +faines +faine +fahrendorff +faggard +faessler +fadale +fabrizi +eychaner +exon +exilus +ewig +evitts +evinger +everheart +everhardt +eveleth +eveleigh +eurbin +esworthy +estus +estock +esterbrook +essler +esque +espina +espalin +eschenburg +eschberger +esbenshade +ertley +erstad +erp +eroman +erno +ermatinger +erkkila +erkela +eriquez +erin +ericks +erdahl +ercolani +equils +eppinette +eon +enter +enke +engley +englebrecht +engleberg +englar +engelstad +engelsman +engellant +ence +emslie +empie +emoto +emons +emley +emile +embly +embler +emanuelson +emal +elzinga +elwer +elvis +elvington +elshere +elmquist +ellout +ellifritz +ellerd +ellerbusch +elizando +elizabeth +elick +eliasen +elgert +elger +elena +elbers +ekstein +ekmark +eiser +einck +eimers +eilert +eidinger +eicke +ehsan +ehn +egleton +egel +effner +ednilao +edner +edmons +edmister +edmison +edlow +edholm +edgeman +edgcomb +edell +edelblute +eclarinal +eckroad +echave +ebesu +eberwein +ebeid +ebe +ebbing +eastlund +eary +earps +dzuro +dziuban +dysinger +dyner +dymek +dyll +dyl +dydell +dwelle +dwan +duvernois +dutson +dutro +dutchover +dusky +duskey +dusik +dushkin +dushane +durrani +duroseau +durnford +durk +durepo +duranceau +duprat +duplechin +duperry +dunscomb +dunkleberger +dung +dunegan +dundlow +dumpson +dumphy +dumpert +dumesnil +dullum +duldulao +dular +dukart +duhan +dugdale +dugat +duffney +duesing +duenow +duce +dubson +drzewicki +druetta +drube +drozdenko +drop +drohan +drivers +drinski +driever +drewer +dressen +drehmer +drawe +drapkin +draney +drahota +dowers +dowdall +dovenbarger +dousay +douin +doughan +doucett +douce +dorshimer +dorsaint +dorries +dorosky +dorl +dorich +dorenfeld +dorcelus +dool +donoso +donnick +donnely +donart +donalds +donaghey +donaghe +dominges +domebo +dollings +dolejsi +doggette +doell +dockwiller +dockal +dobosh +dobis +dobiesz +dluhy +dixons +divin +diventura +divenere +divelbiss +dittrick +ditommaso +dirosa +dircks +diogo +diodonet +dinning +dininno +dimodica +dimitroff +diminno +dimassimo +dillie +dilan +digsby +digrande +digmann +digirolomo +digian +digiacinto +dietzen +dietlin +dietert +diersen +dienst +dieffenbach +dicorcia +dickhaut +diberardino +diab +dhein +dhar +dhamer +dezan +dez +dewispelaere +dewhirst +devonish +devincenzo +devillez +devany +devalcourt +deubler +dettori +detone +detommaso +detoma +desue +destree +destephen +desso +desselle +desimoni +desadier +derham +derfler +dercole +derasmo +depugh +deporter +depolito +depa +deninno +deni +denenberg +denaro +denardis +demry +demro +demmel +demme +demiel +demeritte +demarzio +demaline +demaine +deluco +delton +delsordo +delosa +delongis +delois +deloff +delmuro +delmoro +delmonaco +delmage +dellen +dellaripa +dellamore +delhierro +delfuente +deleppo +delemos +delea +delcarmen +delaura +delanuez +delang +delamarter +delamare +delage +delacuesta +dekorte +dekenipp +dekany +deinhardt +deily +deierlein +degravelle +deglow +degler +degiulio +defoore +defonce +deflorio +defiore +defilippi +deed +dedeke +dedecker +dedaj +decost +decillis +dechellis +dechaine +decarr +decaprio +debutiaco +debski +debry +debruhl +debouse +deblase +debey +debenedetti +debacker +deang +deandrade +deadmond +deacy +daykin +dayhuff +dayal +davion +davidsen +dautremont +daughrity +daubs +datwyler +datko +dasmann +daruszka +darugar +darroch +daro +darkis +daricek +daras +dar +dapoz +dapinto +danuser +danoff +dankmeyer +danesi +danesh +daneker +dammen +damien +damberger +dalmoro +dallmier +daller +dalka +daliva +dahline +dahlhauser +daguerre +dagrella +dagraca +dagesse +dage +daehn +dado +dabbraccio +dabato +czolba +czepiel +czelusniak +czechowski +czarny +czar +czapski +cywinski +cyran +cypret +cwiek +cuzzort +cuzzi +cutty +cutrone +cuthrell +cuthill +cutbirth +custeau +cushingberry +curvey +curson +currell +curly +curll +curdy +curcuru +cupstid +cuoco +culverson +culnane +culliver +cullivan +culleton +cuddeback +cuckler +cubillo +cubias +cua +cryar +crutsinger +crusan +crupe +crummie +cruice +cruea +crowthers +crowers +crowdis +crovo +croson +crosno +crosdale +cronwell +cronon +crocetti +crnich +cristal +crisson +crismond +crighton +cridland +crickard +creten +cretella +crespino +cremins +cremers +creehan +creecy +credell +cranney +cranker +craker +craffey +cozzy +coyazo +coxum +cowdin +covino +coven +courtenay +course +courier +courchene +coup +couley +couchenour +cotugno +cottongim +cotti +cotillo +costine +costain +cosmo +coslan +cose +coryea +cortwright +corsoro +corrente +correl +cornford +corneluis +cornelious +corneau +corne +corkins +corippo +corgiat +coreil +cordwell +cordovano +cordill +cordano +corazza +coran +coppess +coonrad +coonfare +coomber +cooksley +cookis +coodey +contrino +contee +consorti +console +conorich +conole +connoly +connley +connington +connie +conness +conly +conkright +coner +conchas +comrie +compston +compagno +comnick +commiskey +commer +comiso +comish +comden +colondres +collica +colleen +colle +collaer +colinger +colford +colao +colanero +cohens +cofresi +coerver +cockriel +cockran +cockerell +cobham +cobert +cobern +cobell +clunie +clubs +clubbs +cloutman +clise +clippinger +clerkley +cler +clemmens +clemen +cleare +cleamons +claycamp +clawges +claverie +clarkston +clarity +clantz +clakley +clain +cizek +ciuffreda +citrone +ciraco +cinotto +cini +cinadr +cilento +cilano +cihon +ciganek +cieslinski +cicoria +cicco +cibula +ciarrocchi +ciak +ciafardoni +chubbs +chrzan +christophel +christoph +christoforou +christel +christan +chreene +chrabaszcz +chrabasz +chowhan +choules +chorney +chorley +cholico +cholewinski +cholakyan +chojnowski +chlebek +chittam +chiszar +chisam +chirafisi +chiprean +chinetti +chimes +chiera +chicon +chiarelli +chiaravalle +chiappetta +chesner +cheser +chesbrough +cherubino +cherrette +cherpak +chelf +cheesebrough +cheeney +cheely +chean +cheak +chavana +chauvette +chatt +chasser +chaskey +charriez +chappie +chappelear +chapparo +chapek +chanoine +chandley +challenger +challberg +challacombe +chaleun +chainey +chaffey +cetta +cerza +cervenak +certosimo +cerruti +cerqueira +cernohous +cereceres +ceovantes +ceo +centrich +centore +cellucci +ceglinski +ceconi +cecilio +cecchinato +cecchi +cazorla +cayne +cayabyab +cavill +cavicchia +cavez +cavener +cavasos +cavaness +cavalcante +caulk +caudel +cattano +catrett +catlow +catella +cataquet +catalino +cataline +catalanotto +catalanatto +cata +castenanos +castelo +cassiday +casparian +casillo +casewell +casarrubias +casalman +casal +carvalno +carskadon +carrus +carrison +carriker +carrazco +carratala +carpanini +carovski +caroli +carne +carmella +carlis +carfagno +carethers +carella +cardonia +cardno +carda +carcieri +carcano +carcana +carboneau +carbon +caravantes +carattini +caramanica +capriola +cappelluti +capossela +caponi +caperon +caper +capati +cantv +cantore +cantell +cantatore +cantarella +cantadore +canslor +canonico +cannonier +cannone +cannavo +cannatella +cangiano +campoli +campellone +campean +campanile +camera +camcam +cambel +calta +callsen +callarman +calicott +calhaun +calegari +calco +calciano +calabretta +cake +cairone +cahela +cagliostro +caflisch +cafferky +caetano +cadice +caddle +cadarette +cackowski +caccia +cabrena +cabotaje +caborn +caberto +bystrom +byndon +buzek +buysse +bux +buttrick +buttaro +butscher +butsch +butor +butman +buteux +butchee +but +bustard +busta +bussy +busson +bussing +bussa +busi +buseman +buschner +buscaglia +burttram +burth +bursch +burnsworth +burland +burkowski +burglin +burgdorfer +burdman +burau +buran +burakowski +buquet +buonomo +buntyn +bungo +bunche +bunal +bult +bulliner +bullaro +bulkeley +bulcao +bula +buisson +buissereth +bugni +buetow +buesgens +budziszewski +budinich +buddington +buchtel +buchli +buchert +buchar +buben +brzuchalski +brummell +brull +brudnicki +brucz +bruchman +brubach +brownwood +browen +browe +brossett +brosco +brookshear +brookfield +bronstad +bronsky +bronaugh +bron +brohawn +brogna +brodzik +brodsho +brodowski +brodnicki +brodell +brod +brockney +broas +broadrick +briz +britschgi +brint +brinich +bringard +brindamour +brincat +brimfield +brillant +brilhante +brihon +brignoni +brightful +briggman +bried +brickle +brickel +brezeale +brewen +breutzman +bretado +brester +bresko +brennon +brennaman +breniser +brendon +brems +breisch +breidenstein +brechtel +brea +brazington +brazen +brayer +brawer +bravata +braune +braunbeck +braue +braucht +braseth +brantly +branter +branski +brandler +bramham +brahney +bradac +brackley +brackey +brackemyre +brach +boyarsky +bowlan +bowhall +bowdre +bovie +bouyea +boustead +bourgeault +bounthapanya +boultinghouse +bouillon +boudrie +boudinot +bottgenbach +bottari +botos +bothof +botha +bosten +bostelmann +bossley +bossick +bossen +bosquet +boscio +bosche +bosa +borski +borsh +borowik +borom +borke +borgerding +borgatti +bordwine +booser +bookbinder +bookard +boock +bonte +bonomi +bonning +bonito +bonillas +bondura +bombich +boltinghouse +bollozos +bolliger +bollie +bolka +bolitho +boldenow +bolch +bolay +boissoneault +boisjolie +boisclair +boie +bohrman +bohley +boglioli +boghosian +boggus +boggiano +bogden +boey +boesenhofer +boerst +boerma +boenisch +boemig +boebinger +boday +bodamer +bocklage +bocchini +bobseine +bobian +boberg +bobek +blyler +blumenstein +bloyer +blotter +blore +blomme +blomdahl +bliske +blinston +bliek +blessman +bleggi +bleeker +bledsaw +blauch +blaskovich +blankley +blankenberg +blanken +blakelock +blaida +bjorgen +biven +bitzel +bittman +bitonti +bissen +bisom +bisher +birman +birky +birkes +bippus +bintz +bintner +bintliff +binnie +binks +binkiewicz +binienda +bingley +bilotto +billheimer +billen +billeck +billeaudeau +bilinski +bilello +bild +bihari +bigda +biez +bierwirth +bierle +bierbower +bienenstock +biemer +bieler +bielak +bidle +biddleman +biddiscombe +bicknese +bickerton +bickelhaupt +bichsel +bibles +bibian +biase +biancuzzo +biancaniello +biamonte +bia +bhatnagar +bhardwaj +bhan +beyett +bewig +beuchat +better +betsill +bethey +betenbaugh +betance +betacourt +beske +besendorfer +besemer +besco +bery +bertran +bertling +bertie +bernson +bernosky +bernon +berninger +bernes +bernecker +bernasconi +bernardin +berlo +berliew +berky +berhe +berhalter +bergsjo +bergholm +bergener +bergeman +beraun +benward +benusa +bense +bennage +benischek +benion +beninato +bengel +benedek +bene +bendzus +bendler +bendit +benderman +benberry +benallie +bemrich +belyea +beltrain +belter +bellue +bellocchio +bellisle +bellipanni +bellion +bellessa +bellavia +belay +bejjani +beisser +beiriger +beik +beien +behymer +behrenwald +behanna +beed +beechum +beechner +bednarik +bednarek +bedenbaugh +becwar +beckton +beckom +bech +bebo +beatie +beat +bearman +beaner +beakley +beahan +beachamp +bazzi +bayman +bayardo +bayala +bawcum +bavier +bauswell +baures +baune +baumgarter +bault +baughey +baugatz +bauernfeind +bauerlein +bau +batun +battistone +batteen +batko +batistich +bater +batcheller +batarse +bastow +bassuk +bassolino +bassel +bason +basilone +basich +bascle +bascetta +bartush +bartrum +bartlet +barthelmes +bartberger +bartash +barsoum +barsanti +barrott +barrom +barriner +barnhurst +barnell +barkle +barkes +barillaro +bargerstock +barganier +baremore +bardney +barda +barbot +barbie +barayuga +barager +bantz +bandulin +banasiak +balzarini +balwin +balton +balsiger +balmos +balmir +ballestero +ballek +balick +balian +balestra +balensiefen +balduf +balckburn +balasa +balafoutas +baksi +bakowski +baklund +bakko +bakey +bakanauskas +baj +baio +bainard +baima +baillet +baich +bahrmasel +bahrke +bahoora +bagsby +bagger +badena +badders +backfisch +bacik +bachler +bachleda +bachhuber +bachert +babiracki +baatz +azzarito +azzarella +azulay +azotea +azeem +ayoob +ayola +ayles +ayersman +ayaia +axthelm +ax +awtry +avrett +avilar +aveni +avellino +aurelia +aumend +auletta +augustson +augustave +aughe +auerswald +aubrecht +athalone +atanacio +atamian +astrologo +astrella +aspinall +asman +ashlin +ashenfelter +aschenbrener +ascheman +ascenzo +asante +asa +arvayo +artmann +artice +art +arslan +arrott +arrojo +arrizola +arriano +arrendell +arps +aronstein +aronow +aronica +arntz +arnst +arnio +arne +armengol +armantrout +arlt +arkadie +arjune +arismendez +arimas +aries +ariel +argandona +arflack +areola +arenales +ardman +arciga +arciba +archacki +arcaro +arcano +arbogust +arauz +aranas +aquil +aquero +apresa +appiah +appert +apostal +apodace +apadoca +antrobus +antoniuk +antione +antinarelli +antich +anslow +ansbro +annicchiarico +angleberger +angelson +angello +andruzzi +androsky +androlewicz +andrion +andringa +andracki +andra +ancelet +anastas +anast +anagnost +amsley +amsdell +amsberry +amsbaugh +amoruso +amoa +amici +amesbury +ambrosia +ambrogi +amack +alvia +alvaro +alvanas +altrogge +altomare +altmire +altenbach +alsheimer +alquisira +alouf +aloisi +aloe +almiron +allford +allex +allery +allenbach +allegrucci +alig +alicuben +alfisi +alferez +alfandre +alf +alexion +alevras +alessandrini +alesi +alescio +alegre +alea +aldecoa +alcini +albrittain +albrashi +alawdi +ala +aksamit +akima +akel +akahi +ajose +ajayi +aivao +aiu +ainge +ailshire +aidt +aicklen +ahuja +ahr +aholt +agle +agamao +affeld +aeschbacher +aeling +adriance +adkin +adhami +adeyemo +ades +adelgren +addicks +adamitis +ada +acor +acimovic +accomando +accola +acampora +abuaita +abshear +abrantes +abramovich +abrachinsky +abilay +abellera +abeles +abdula +abdon +abbed +abati +abascal +aavang +aadland +zylka +zwolak +zwingman +zwerschke +zwack +zurin +zupp +zumbrunnen +zukoski +zukor +zukas +zuanich +zoumis +zoulek +zou +zorra +zorich +zomorodi +zolty +zolondek +zolnoske +zoldesy +zoldak +zocklein +zlotnik +ziraldo +zipf +zinsli +ziniewicz +zindell +zin +zimmerebner +zimmel +zimm +zills +zilla +zilka +zietz +zietlow +ziemski +zielesch +zieler +zieglen +ziegenbein +ziegelbauer +ziegel +ziech +zicker +zicherman +zich +ziccardi +zgoda +zeschke +zerko +zerhusen +zepka +zents +zeni +zeme +zematis +zema +zella +zelkin +zelenski +zeilinger +zeidan +zegarelli +zeanah +zdon +zbikowski +zazula +zavesky +zavasky +zaruba +zarrineh +zarrillo +zarraluqui +zarling +zaring +zaretsky +zarebski +zanini +zanin +zangl +zaner +zand +zampieri +zaltz +zaloudek +zall +zalk +zalar +zakowski +zajc +zahran +zahnen +zagroba +zagel +zagara +zagami +zaffuto +zachmann +zachariades +zaccagnino +zaccagnini +zaborski +zabloudil +zabarkes +yvon +yusef +yuricic +yuill +yuenger +yuasa +ysbrand +yourshaw +younkers +youngdahl +youngblut +youkers +youkanaa +yorkey +yoneyama +yonamine +yoeckel +yodis +yocius +yocham +yobst +yeubanks +yetto +yerigan +yerbic +yentsch +yennard +yemchuk +yax +yaun +yasurek +yasui +yaskiewicz +yantzer +yantz +yanosky +yanek +yandle +yance +yanagi +yambao +yamakawa +yagoda +yaekel +yackeren +yacavone +yacano +ximines +xaimoungkhoun +wysock +wyont +wynott +wynans +wylde +wyett +wydner +wurzbacher +wulfing +wruck +wroe +wrobliski +wrobbel +wrights +wraspir +wrape +woytowicz +woy +worthan +worstel +worsfold +worrel +worbington +wools +woollen +woolems +woodmancy +woodhull +woodgate +woodfield +woodcox +woock +wonsik +wolven +wolslegel +wolny +wolma +wollyung +wollin +wolley +wollan +wolkow +wolke +wolever +woleslagle +wolansky +wojnicki +wohner +wohlfahrt +wohler +wloch +wittlin +wittkopp +wittenborn +wittels +withiam +withfield +wisz +wissel +wisseh +wislocki +wiscombe +wischmeyer +wischman +wirebaugh +winzelberg +winterstein +wintersmith +winterroth +winrich +winograd +winlock +winley +winkley +wings +winfred +winebaugh +windover +windly +winarski +wimbs +wimber +wiltgen +willmschen +williver +willinghurst +williamston +willenbrock +willars +willamson +wileman +wileczek +wildenberg +wildeman +wilcutt +wilch +wilby +wilbers +wikstrom +wigman +wigle +wigelsworth +wietzel +wiesneski +wienert +wienecke +wienandt +wieloch +wielgosz +wiedmann +wieckowski +wiece +wieand +widmar +widhalm +widgeon +widerski +widdows +widdop +widdison +widby +wida +whyne +whyel +whybrew +whittman +whittall +whitler +whitinger +whitewater +whitescarver +whitemarsh +whitecloud +whit +whistlehunt +whinnery +whillock +while +whilby +wheldon +wheatcroft +whapham +whaite +wettlaufer +wetterer +wettach +wetsel +wethern +westrum +westlie +westgaard +westerhof +westerfeld +westad +wesly +wesberry +werring +werre +wernz +wermter +werkmeister +werbelow +wentzlaff +weniger +wengreen +wendolski +wendelberger +wempa +weltzin +welti +weltch +wellnitz +wellenstein +wekenmann +weitze +weitman +weisholz +weishar +weisbaum +weinraub +weinbauer +weinbach +weidig +weiderhold +wehrwein +wehrs +wehrly +wehnes +wehn +wegge +weerts +weemhoff +weekey +wedman +weder +weckman +weckhorst +weaklend +wauters +wauer +waud +wattenberg +watte +watling +waszkiewicz +wasmus +wasilko +washor +wartchow +warshauer +warsham +warrender +warnstaff +warmuth +warmington +wardrup +wardhaugh +wardall +warchal +warboys +wanty +wanous +wanlass +wangstad +waneka +wandless +wandel +wanda +wamser +wamhoff +walvatne +waltemeyer +walsingham +walljasper +wallet +wallerich +walkling +walkers +walezak +waldroff +waldhoff +waldall +walbright +walat +wakita +waka +waisner +waiki +waiden +wagle +wagenblast +wadusky +wadden +waclawski +wackenhut +wackenheim +wachal +waananen +waack +vy +vukcevic +vreugdenhil +vreeman +vrazel +vranes +vranek +voytek +voves +vormelker +vorachek +vontungeln +vonniederhaus +vonner +vonhagen +vondrak +vondielingen +vonasek +vonallmen +voltaire +vollucci +vollick +vollenweider +volante +voitier +vogts +vocu +voci +voccia +vliet +vliem +vizarro +vizard +vittorini +vitro +vitolas +vititoe +viteo +visnic +visher +visel +viscia +viscera +vis +virrueta +virola +viren +vinz +vinke +vinger +vind +vinagre +viltz +villwock +villifana +villiard +villetas +villasana +villarin +villante +villacana +vile +vilcheck +vilardi +vigueras +vigoren +vignovich +vignaux +vignarath +vigier +vieweg +vietti +vietor +viegas +viebrock +vidals +victorin +vicsik +vicic +vicens +viapiano +vetsch +vetri +vertiz +versluis +verrilli +verrelli +verrecchia +verni +vernetti +vermeer +verling +verlato +verkler +verkamp +verghese +verducci +verant +venzeio +venturella +ventress +venton +venhorst +venerable +veneman +ven +velverton +velunza +velmontes +vellutini +vellekamp +veleta +veldkamp +velazques +veino +veigel +veeneman +vavro +vauters +vattes +vaszily +vastakis +vasiloff +vasilauskas +vasconcelos +vars +varos +varnon +varkey +vares +varenhorst +vardy +varcoe +vanwye +vanwoert +vanwieren +vanvickle +vantreese +vansyckle +vanstrander +vansteenburg +vanstee +vanslander +vanproosdy +vanpoucke +vanpoppelen +vanpatton +vanosdel +vannelli +vanmiddleswor +vanloh +vanlith +vankoten +vanisouvong +vanholland +vanhekken +vanharlingen +vanhandel +vangemert +vaneyck +vanert +vaneps +vanegdom +vandesteene +vanderschaege +vanderkam +vanderheiden +vandergriend +vanderark +vandeputte +vandenbergh +vandegraaff +vandebogart +vandamme +vandalsen +vandagriff +vanclief +vanboven +vanbecelaere +vanartsdalen +vanaller +vanakin +vanabel +valrie +valrey +valotta +vallangeon +valladolid +valaitis +vala +vair +vaidya +vaid +vagt +vagle +uyeno +uson +us +urwin +urtado +ursino +urry +urquiza +urps +urmeneta +urlaub +uribazo +urhahn +ure +urch +urbanic +urata +urankar +ur +uppinghouse +unthank +unland +unikel +ungvarsky +ungerleider +ungerecht +underkoffler +umlauf +umbdenstock +ulrick +uliano +uldrich +ulch +ulberg +uknown +ukena +uk +uhri +uhde +udley +uboldi +tzeremes +tysor +tyrus +tyrol +tyl +tyksinski +tycer +tyberg +twitt +tweden +tuy +tuton +tuter +tustison +tuschhoff +turso +turrigiano +turowski +turnbo +turnball +turlich +turli +turla +turkin +turke +turi +tuong +tulk +tulip +tugman +tuggles +tufano +tucknott +tuccillo +tubeszewski +tuason +tsuzuki +tsunoda +tschannen +trytten +trybala +truskowski +trueba +trueax +truden +trucchi +trotti +trongone +tromble +tromblay +trokey +troiani +troglin +trodden +troccoli +tritz +tritch +trischitta +trisch +trippet +triplette +trinca +trimmell +trilling +trieger +treworgy +trevorrow +trevillion +trevigne +trevett +tretter +treston +trepagnier +trentinella +trenkle +trenh +trenbeath +tremelling +treider +treib +treftz +tredennick +trecroci +trebil +traves +traversa +tratar +traster +trasport +trank +trampe +trammer +trame +trachte +toyoshima +towley +tovias +touvell +tout +toussant +tourikis +toten +tosten +tosic +tosches +tortoriello +tortorice +torstrick +torset +torrijos +torrie +torress +torred +torra +torma +torkildsen +toppi +toporek +topolosky +topick +topez +toper +toncrey +tompsett +tompkin +tomory +tommolino +tomjack +tombs +tombrello +tomaszycki +tomaski +tolzmann +tolston +tolosky +toldness +tokuoka +tokihiro +tokay +tok +tojo +tointon +tohill +togni +tognazzini +todeschi +tobola +tobeck +toala +toadvine +tllo +tkacz +titchener +titch +tissot +tiso +tirri +tipka +tintle +tinneberg +tinius +tinelli +tin +timmreck +timmerberg +timinsky +timi +timchak +tillberry +tilgner +tiff +tieszen +tiemeyer +tiemens +tiell +tiehen +tidey +tick +ticas +tiboni +tiberio +tibbert +thyne +thurton +thurau +thune +thrune +threets +thorngren +thornbrugh +thorin +thongdy +thommarson +thoene +thoben +thoams +thixton +thistlethwait +thingvold +thiesfeld +thierauf +thielbar +thiebeault +thiara +thews +theophilus +theodoratos +thenhaus +theam +thay +thalmann +thake +thady +tevlin +tevebaugh +testen +tesseneer +tervort +terri +terrey +terres +terrasas +terney +termeer +terlecki +terheggen +terhark +terhar +terepka +terault +terando +teppo +tepler +teper +tent +tenpas +tennill +tennett +tenley +templer +tempe +temp +teltschik +telschow +telle +tekippe +teitsort +teitenberg +tei +tegarden +teffeteller +tefera +teesdale +teemer +teekasingh +teddick +tebay +tebar +teats +teano +teagues +teachman +teabo +tchakian +tazzara +tayor +tavorn +tavira +taverna +tave +tautuiaki +tatters +tatevosian +tassey +taschereau +tarzia +tarring +tarrien +tarras +tarkenton +tariq +tardio +tarascio +tara +tappeiner +tannen +tankersly +tanious +tangren +tangredi +tangert +tamulis +tamburrino +tambasco +tamargo +tamanaha +talluto +taki +takeshita +takemura +takaoka +tajiri +taintor +tahu +tags +taglieri +tafel +tadiello +tacket +taborda +tabolt +tabisola +tabian +taback +szymansky +szwejbka +szweda +szufat +szubinski +szerlong +szekula +szczygiel +szczepanek +szalay +szafryk +syrek +syphard +synan +symmonds +sydner +swirsky +swires +swietoniowski +swickheimer +swets +swetland +swenk +sweetin +swavely +swatt +swatsworth +swatski +swartzmiller +swartzbeck +swartzbaugh +swansen +swalley +swaisgood +swails +swaggert +svrcek +svinth +svetz +svetlik +sutulovich +suttell +susswein +sussex +susor +susoev +susich +susana +surwillo +suran +sunn +sunkel +sundling +sundholm +sumsion +sump +summar +sumlar +suminski +sumi +sumas +sulzman +sultana +sullinger +suleski +sulcer +sul +sukeforth +suing +suglia +sugiki +suggett +sueltenfuss +suders +sudar +suchecki +sucharzewski +suchanek +subler +suben +subasic +styborski +stvil +stumme +stulick +studyvin +stubson +stuble +stubits +stubenrauch +strysko +struggs +strudwick +strowd +stroub +stroth +stropko +stroinski +strnad +stritzke +stritzinger +strittmater +strieker +strickert +strength +stremlow +stremel +strejcek +streitmatter +streif +streb +streams +straws +strausberg +strathy +strathman +strater +straseskie +strapp +stranger +strande +stramiello +strakbein +strachn +stoyer +stoyanoff +stowman +stowbridge +stove +stoutt +stoutenburg +stouer +stouder +store +stoppkotte +stopa +stolts +stolinski +stolecki +stole +stojanovic +stofsky +stoffregen +stoffels +stoffa +stoesz +stodolski +stockett +stittsworth +stipek +stinett +stillion +stillinger +stiel +stiehl +stiegler +stieg +stickrod +sticht +stibbins +stevener +steudeman +stetzel +sterr +sternal +sterback +stephco +stenman +stemmerman +stemme +stemarie +stelting +stellings +steir +steinlicht +steiniger +steinbrenner +steidinger +stehney +stehly +stefka +steffel +stefanovich +steeno +steeneck +steenburgh +steckline +steckelberg +stazenski +stavis +staum +stauffacher +stauder +staude +statzer +stasinos +starwalt +starrs +starnauld +starek +stapleford +stapf +stapels +stansifer +stanojevic +stanick +standring +standrew +standke +standford +stancle +stanciel +stamnos +stamison +stallons +stallion +stallbaumer +stailey +staie +staiano +stahnke +stahle +stageman +stacken +stachecki +stableford +stabb +sramek +squines +spurzem +sprock +springate +spreng +spratte +sprang +sprake +spotwood +splain +spiwak +spitznogle +spirito +spirek +spingola +spincic +spillett +spika +spigelman +spielmann +spetter +sperl +spenard +speilman +speigel +speice +speach +spaugh +spatafore +spatafora +spar +spanski +spannaus +spanish +spanfellner +spalinger +spagnolia +spadea +spadafore +spadaccini +spachtholz +spach +spacek +sozzi +sowels +soulasinh +souffront +soucier +sotolo +soteros +sotero +soter +sossaman +soshnik +sorrick +soron +soroa +sornsen +sorgente +sordahl +sonza +sontheimer +sonstroem +sonoski +sonnenfeld +sonderup +somani +soman +somalski +solymani +solton +soloveichik +solmonson +sollberger +solkowitz +solimini +soleman +solders +soldavini +solanki +sohm +sodek +sode +socks +sockalosky +sochan +sobilo +soapes +snyders +snowman +snowdy +sniffin +snetting +snellman +snellenberger +snellen +snellbaker +sneathen +sneath +smyrl +smull +smolko +smithheart +smiht +smestad +sluter +slupe +slomkowski +slomka +slomba +sliz +slipp +slim +slightam +sleper +sledz +slechta +slaughterbeck +slaughenhoupt +slaight +sladick +slader +skye +skupski +skroch +skripko +skrine +skreen +skradski +skorski +skornik +skokowski +skok +skocilich +skinnen +skillington +skemp +skay +skattebo +skagerberg +siwik +sivik +sitar +sitaca +sission +sissac +sisney +siruta +sirmon +sirkoch +siriano +siracuse +sipler +sipho +sinkovich +sinkey +sinistore +singo +sinclaire +simunovich +simuel +simril +simpton +simpliciano +simoson +simonis +simoncini +simister +simison +simenez +simco +simcheck +silvi +silveri +silvano +silletto +sillavan +siles +silbernagel +sigwart +sigona +signs +signaigo +sigmond +sigars +siemek +siem +sieloff +sieligowski +siefke +siebeneck +siebenberg +siderman +siderine +sidberry +sicilia +sichta +sibrel +sibell +sibayan +shyu +shvey +shuter +shumski +shulund +shulte +shuker +shugars +shufford +shubrick +shub +shouldice +shotton +shotkoski +shost +shortsleeve +shorette +shopen +shont +shonerd +shone +shomin +shomer +sholl +shoger +shirts +shirota +shinholster +shindle +shinaberry +shimura +shimsky +shimo +shillinger +shilleh +shihadeh +shierling +shewbridge +shevitz +sheumaker +shettle +shers +sherren +shern +sherling +sherle +sheridon +sherdon +shelter +shelmon +shelling +shelko +sheline +shelhamer +shekey +shekarchi +sheinberg +shehata +sheffo +shebchuk +shearing +sheaks +shazier +shayne +shawnee +shawhan +shaud +shastri +sharr +sharlin +shark +sharits +sharf +share +shapskinsky +shape +shankland +shames +shalhoup +shaftic +shadiack +shackle +shabala +sevick +sevedge +seurer +sette +servan +serva +serrett +serrand +serisky +sering +serie +serianni +sereda +sequin +senti +senosk +senno +senner +senna +senerchia +sendro +sencabaugh +semonick +semetara +sembler +selvaggio +seltzen +selser +sellek +sellberg +selking +seliba +selfe +seki +seifarth +seielstad +sehorn +sehl +segur +segrave +sefcovic +seeton +seek +seecharan +seeberger +sedman +sedano +secunda +seburg +sebold +sebastion +seate +seashore +seard +seang +seaney +seace +seabert +sczygiel +scurti +scullen +scroggy +scripter +scowden +scorsone +scoleri +scocca +scire +sciotti +sciera +scibilia +sciabica +schwisow +schwier +schweinert +schweinberg +schweiker +schweigart +schweickert +schwass +schwarzenbach +schwarts +schwarm +schwamberger +schwalenberg +schwabenbauer +schwabauer +schuttler +schutjer +schuring +schure +schuppert +schuner +schulthess +schulteis +schulle +schuhmacher +schuermann +schuepfer +schuele +schrott +schrope +schrauder +schrandt +schouviller +schonert +schonack +scholzen +scholnick +schoffstall +schoenthal +schoenstein +schoenhut +schoenhard +schoeneman +schoemer +schoborg +schnicke +schneidtmille +schneiders +schmunk +schmoyer +schmeider +schmale +schlottman +schlitzer +schlipp +schlink +schliesser +schlieper +schlesselman +schlensker +schleis +schlein +schleck +schlabaugh +schiver +schirpke +schindel +schimler +schiltz +schillings +schiffelbein +schiebel +schiaffino +schettig +schetrompf +schessler +scherler +scheppe +schepens +schellman +schellhammer +scheirman +scheibelhut +schei +schech +scheaffer +schattner +schatt +scharte +schappell +schanding +schanbacher +schan +schaming +schamburek +schaeffler +schadle +schadegg +schabot +schaberg +schaadt +scerra +scercy +scattergood +scarset +scarrow +scarritt +scarpaci +scarles +scarce +scanlin +scalice +scali +scahill +sazama +saysithideth +sayres +sayavong +sawlivich +sawczyszyn +savo +savina +savilla +savela +savasta +saurel +saupe +sauberan +satunas +sattley +satterley +satiago +satchel +saska +sarvey +saroukos +sarnowski +sarnoff +sarli +sarley +sarelas +sardi +sarconi +sarbacher +saragusa +saraceno +sar +sappenfield +sanzotta +santy +santorella +santopolo +santin +santiesteban +santhuff +santell +sansburn +sanpaolo +sanocki +sannon +sannella +sanlucas +sanjabi +sangrey +sangi +sanghvi +sangh +sanfiorenzo +sandrowicz +sandoual +sandora +sandlian +sandi +sandholm +samuelsen +samu +sampedro +samorano +samok +samide +samber +samain +saltzgaber +saltonstall +saltern +salte +salonia +salmond +sallas +saliva +saler +salek +saldibar +salabarria +sakon +sakelaris +sake +sajorda +sajor +sahni +sagoes +saglimbeni +sagehorn +sagayaga +safdeye +safa +sadlon +sadbury +sadahiro +sache +sacavage +sacarello +sables +sabean +sabates +sabataso +saager +saa +rzucidlo +rzeszutko +ryther +rylant +ryks +ryherd +ryhal +rygalski +rybacki +rviz +ruys +ruuska +ruttman +ruttinger +ruts +ruter +rutana +rusten +russnak +rusinko +rusi +rushiti +rushia +rushdan +ruscetti +rusboldt +ruppenthal +rupke +rundahl +rund +rummer +rummans +rumler +ruminski +rumfola +rull +ruise +ruggle +ruescher +ruegsegger +ruegger +rudzik +rudney +rudisail +rudis +rudduck +rucky +ruckdeschel +rubins +rubenzer +rozo +rox +rowzee +rownd +rowey +rowcliffe +rovinsky +roup +rottner +rothmiller +rothgery +rothbart +rotenberg +rotando +roswick +rosu +rossum +rossetto +rosseter +rosselli +roskos +roskopf +rosenholm +rosencranz +rosenbrook +rosella +rosebaugh +rosbough +rosan +roofe +ronson +ronhaar +rones +ronchetto +romeno +rombs +romanoski +romanini +romanick +roloson +rollock +rollheiser +rollans +rold +rolark +rokisky +roja +roik +rohaley +rognstad +rofkahr +roethel +roessner +roesser +roehrman +roehrenbeck +roegge +roefaro +rody +rodrigo +rodricks +rodino +rodillas +rodia +rodenbaugh +rodell +rodeiguez +rodarta +rockenbach +robley +robes +robertello +robello +robella +robak +roarx +rivlin +rivira +rivena +ritzert +ritell +ritcheson +riska +risberg +ripke +rinkel +riniker +ringman +ringlein +ringelheim +ringbloom +rinde +rincones +rimson +rimar +riliford +rihn +rihanek +rigoni +riggott +riffon +rievley +rieve +riesenweber +rieg +rieff +riedell +riechers +rieber +rieben +riebeling +ridpath +ridler +riddock +rickson +rickmon +rickley +rickie +richrdson +ribot +riblet +rhyme +rhoney +rhed +rhead +rezek +reynvaan +reynoza +reye +rexwinkle +revord +reven +reveal +reutlinger +reuland +reuer +retzler +rettke +retterbush +retort +reth +resureccion +restifo +resnikoff +rerko +repsher +repress +reppell +repinski +repenning +renze +rennix +renning +renney +rennell +renfer +rener +rendino +renaker +remmen +rementer +remenaric +relkin +reiterman +reist +reisser +reisling +reisert +reise +reio +reinmiller +reine +reill +reigner +reifler +reifel +reidenbach +rehnquist +rehler +rehfield +rehfeldt +rehberger +regler +regel +regehr +refsell +reen +reem +reeher +reech +reeber +redstone +redo +redish +redhage +redenz +redell +reddrick +redder +reckley +reckleben +recine +rebusi +rebuldela +rebera +rebell +rebeles +reavley +reau +reatherford +reaney +reaid +reagans +reado +razinger +razey +raza +rayside +raymos +raygosa +rawding +raw +ravens +ravenhorst +rav +rauzman +rautenberg +rausin +rauner +raudebaugh +rattner +ratleff +rathmell +rathgeb +ratermann +rataczak +rasher +rashdi +rashada +rasbery +rarang +rapose +rapa +ransick +ranos +rankhorn +raniero +rang +randzin +rancher +rances +rancatti +ramoutar +ramnarase +ramlakhan +ramiro +ramiriz +ramez +rameriez +rambus +ramaswamy +ramagos +ramadanovic +ramadan +ralko +ralat +rakel +raju +rajtar +raja +rairdon +raimo +raif +raiche +raheja +raheem +rahall +raguso +rafanan +rafalko +raes +radzavich +radune +radulescu +raduenz +radsek +radom +radell +rackett +racilis +rachi +rach +racedo +rabold +rabner +rabern +rabenstein +rabelo +quintas +quinlisk +quine +quincey +quilantang +quicksey +quereto +quelette +quaresma +quann +quall +quails +quaas +qadir +pytlovany +pybus +putaski +purwin +purter +purple +purol +purkiss +pummel +pults +pultorak +pullian +puller +pulham +puletasi +puidokas +puhuyaoma +puffinburger +puesey +puelo +puddephatt +pucillo +puc +przepiora +prys +pruzansky +pruyn +prust +prusinski +prus +pruette +provis +provine +proue +protz +prosonic +prophett +pronto +pronovost +proksch +prok +proietto +proia +proenza +probus +prizzi +privalsky +prisock +printy +primozich +priefert +pridham +preus +prettner +prester +pressel +preskar +premer +premeaux +preisinger +preisendorf +prehm +pregeant +preedom +pralle +prag +pradel +prabhakar +poyser +poupard +potterson +pottebaum +potolsky +poto +potes +postlethwaite +postin +pospishil +poskus +posik +portsche +portolese +porrini +poro +porietis +poppenhagen +poppen +poppel +pontonio +ponting +pono +pomposo +pomponio +pomplun +pomo +pomeranz +pomella +pomberg +pomares +polucha +polselli +polnau +pollins +pollara +polisky +polio +policz +policar +polchinski +polashek +polakowski +polaco +poitevin +poister +pointon +poinson +poinsett +pogar +poetter +podmore +poczobut +pockette +pocasangre +pobre +plys +plunket +plumpton +pluemer +plover +ploetz +ploense +plocek +plikerd +pleet +pleasure +plazza +plaxico +platko +platania +plassmann +plantier +plantenga +plancarte +plakke +pladson +pizzano +pivin +pittsinger +pittmann +pitsenbarger +pitonyak +pitmon +pitfield +pitek +pitassi +pistulka +pistole +piske +pishko +pisegna +pirnie +pirkey +pippitt +piorkowski +pinna +pinkton +pinks +pinkerman +pinchbeck +pimpare +pilloud +pillitteri +pilakowski +pikus +pikula +pikkarainen +pijanowski +pigao +piette +pietrzykowski +pietryga +pietropaolo +pies +piersaul +pieri +piepenbrink +pieloch +pieffer +picucci +pickl +pickhardt +picini +picerni +picaro +piatak +pianalto +piacquadio +phoun +phonharath +phomsoukha +phommaseng +phinazee +phillippy +phillians +philavong +phernetton +pheonix +phenes +pfotenhauer +pfleiderer +pfleider +pflanz +pfieffer +pfeiff +pfautz +pezzica +pevez +pevehouse +petrunger +petrullo +petrucco +petrson +petrilla +petrides +petrauskas +petkus +petiet +petgrave +peterschick +petaway +pesner +pesiri +pesin +pesa +pervine +pertubal +perschall +perrucci +perow +peroddy +perocho +perno +perloff +peria +pergerson +pereyda +pereria +pereiro +perdzock +perchinski +peraro +peques +pepito +pentek +pentaris +pennison +pennewell +pennacchio +penington +peninger +pengelly +penegar +pencek +penale +penaherrera +pembrook +pelyo +pelligra +pele +pekala +peine +peightal +peers +peerbolt +pedaci +ped +pectol +pecot +pecos +pecorelli +pechart +pebbles +peatry +pearle +peard +peakes +peaches +paywa +paysinger +payes +pawelczyk +pavoni +pavlovic +pavelec +pavan +paullus +pauldo +patuto +patruno +patoine +patock +patka +pata +pastiva +pastick +passwater +passineau +passi +pasquino +pasquel +pasquarelli +pason +paskert +pashley +pashia +partis +partido +parsi +parrill +parolari +parisio +pariser +parents +parduhn +parden +parcel +parbo +paray +papson +pappa +papillion +papik +paparella +papai +paoletto +pantone +pannhoff +pankowski +pangelina +pangallo +panda +panciera +panchana +panasci +panarella +paltanavage +palsgrove +palovick +paloma +palmiotto +palmiero +palmerton +palmerin +pallet +pallesen +pallazzo +palitti +palischak +paliotta +palifka +palenik +palecek +palczewski +palasik +palacious +pala +pahnke +pahls +paguirigan +pagnozzi +pagliarini +paduano +paddison +padavano +pacubas +packingham +packebush +pacius +paci +pacey +pacas +pac +ozolins +ozog +ozminkowski +oyuela +owston +ovsanik +overlie +overbo +oven +ovard +ourso +ouderkirk +ottis +otterholt +otomo +otley +osuch +ostling +ostlie +ostheimer +osterstuck +osterdyk +ostenson +osten +ossowski +osso +osmon +osle +oskins +osendorf +osburne +osawa +ortic +ortenzio +orrantia +orrala +orouke +orone +orofino +orkwis +orizetti +oris +orines +orgovan +orgain +orendorff +orendain +oree +orea +ordner +ordas +orbeck +oravec +opray +ophus +opela +opatrny +opara +oosterhof +onusko +onstead +onorata +onitsuka +onishea +oneel +ondrusek +omundson +omoyosi +omdahl +oltz +olton +olrich +olquin +olp +olmscheid +olm +olivio +oliverson +oliven +olis +oline +olexa +olesnevich +olesky +oleksiak +oldani +olcus +oksen +okolo +okojie +okerblom +okajima +ohrenich +ohms +ohmann +ohland +oguinn +ogiba +ogeen +oge +oganyan +offenbacker +oesterreich +oerther +oelschlager +odore +odonal +odonahue +odiase +odenwald +odens +odear +octave +ockey +ochwat +ochotorena +ochiltree +och +ocejo +ocano +obstfeld +obleness +obiesie +oberloh +oberfell +obannion +oakleaf +oak +nyswonger +nyseth +ny +nuvallie +nusom +nush +nurnberger +nunziata +nunev +nudelman +nucklos +nuce +novik +noury +notik +notari +nosis +nosel +northcraft +northcote +norskog +norrid +norquest +normann +norma +norlund +norley +norcott +norbeck +noonon +nooney +nonaka +nollora +nollman +nolda +nolau +nol +nogueras +nogowski +nogosek +noftsger +noeldner +nocum +nocket +nocar +noaks +niverson +nittinger +nitterhouse +nitkowski +niten +nitchals +nissila +nishiguchi +nippert +nippe +ninos +nine +nimocks +nimmer +nilsby +nill +nikolas +nikirk +niimi +nii +niheu +nihei +nigg +niforos +niezgoda +nieva +niethamer +niesman +nienow +niedermayer +niedecken +nied +niebyl +nie +nicotera +nicolet +nicolaisen +nickolls +nickol +nickleson +nickelston +nichois +nicewarner +niceswander +nicarry +nicar +nhep +ngueyn +nguen +ngov +nghe +newsted +newnum +newer +newburg +newall +nevland +neugin +neuenfeldt +neuby +nestel +nesseth +nervis +nerpio +nenninger +nemzek +nemoede +nemer +nelmark +nellem +neithercutt +neiswander +neisius +neish +neihart +neiderhiser +nehmer +negrisor +negrette +nefzger +neeper +neelon +needels +needam +nealley +nealen +nealeigh +nayee +nawn +navone +navejas +navedo +navar +naud +natiello +nathoo +nasson +naselli +nase +naschke +narez +nares +nappier +napoletano +napihaa +naone +nannini +nannie +nania +nanda +nampel +nalepka +najjar +nahass +naeve +naecker +nadell +myrum +myint +myhr +myerscough +muterspaw +mutana +muszar +mustafaa +must +mussenden +mussen +mushett +musetti +musemeche +musel +muscaro +murrock +murrie +murrain +murilla +murelli +murayama +murai +munzell +munteanu +munt +munshower +munlin +muni +munding +munda +mulvehill +mulry +mulliner +mullice +mullaly +muhr +muhn +mugica +muether +muehlberger +muehlbach +muccia +mrowka +mrotz +mrochek +mracek +moznett +moyse +moxham +mowris +moutoux +moussette +mousley +moun +moulinos +mostrom +mostert +mosses +moskovitz +mosinski +mosgrove +mosebach +moschetto +morway +morthland +morta +morsbach +morreau +morowski +moroles +morlas +morgenstein +morasch +moranda +moralis +moraitis +moraites +moote +moorcroft +montier +montie +montesa +monteros +montefusco +montecalvo +montazami +montaya +monsky +monsegur +monnet +monjaras +moniot +monholland +monet +monestine +monds +mondry +mondo +mondino +momsen +momaya +molski +mollins +molitoris +mokbel +moistner +moilien +mohring +mohrbacher +mogro +moerman +moellman +modero +moczo +mocco +mocarski +mobus +mizukami +miyares +miyahara +miyagishima +mittendorf +mittelstadt +mitsakos +mith +mita +misura +missler +misrahi +misnick +misemer +miscovich +miscavage +misasi +mirich +miravalle +miras +miramon +mioduszewski +mio +minster +minnier +minneweather +minnehan +minkel +miners +mineah +mincher +minatra +minato +minari +minardo +milush +miltner +milster +milovich +milman +millraney +millot +millisor +milliren +millimaki +millich +milland +milkovich +militano +mileti +milek +mildren +milder +milch +milbert +milbauer +milanowski +milanese +mikulecky +mikulak +mikita +mikelsen +mihlfeld +mihatsch +mihalkovic +mihalko +mignogna +migl +miessner +mieras +midcap +mickleberry +michocki +michelman +michales +michalenko +mias +mhoon +mezza +mezquita +mezera +meyette +meyerhoffer +meyerhofer +meury +meuller +mettle +metter +mettee +metta +metroka +metevier +metaxas +mestrovich +messa +mesidor +meschino +meryman +merrett +merrbach +merone +merkling +merickel +mercante +meo +mensinger +menist +menino +menhennett +mengarelli +menez +menesez +mendelowitz +mencl +men +mellors +mellom +mellencamp +mellekas +melkonian +melish +meleski +melero +melchin +melbert +melandez +melander +meisels +meighen +mehtala +mehserle +meholick +mehalic +megna +meginnis +meggitt +meggers +meger +meeter +meeske +meeder +medows +mednick +medich +mediate +median +medez +medbery +medak +mebus +meason +meanor +meager +mcwethy +mcvean +mcthune +mcsweeny +mcspedon +mcsharry +mcravin +mcraven +mcquistion +mcquilkin +mcquaide +mcquage +mcpherren +mcpeck +mcnaney +mcmindes +mcmilliam +mcmenomy +mcmarlin +mcmahill +mcloy +mcloone +mclear +mclaughlan +mckoan +mckerley +mckerchie +mckeone +mckennie +mckellan +mckaig +mcinally +mchendry +mcgwier +mcguirt +mcgugin +mcgready +mcgraff +mcgrade +mcgorry +mcglothian +mcglory +mcgavisk +mcgarrigle +mcever +mcelmurry +mcelheny +mcelhattan +mcdaries +mcdargh +mccumiskey +mccredie +mccraven +mccoyle +mccoppin +mccombie +mccloughan +mccleve +mcclenty +mcclennan +mcclees +mccleer +mcclearen +mccaskin +mccartin +mccamy +mccammack +mccaman +mccalop +mccaffity +mcburrows +mcburrough +mcbrady +mcalphin +mcalhaney +mcaboy +mazikowski +mazar +mayzes +maymon +mayeski +maycumber +mayala +maxin +maute +mauss +mauritz +maurey +maulin +matuszeski +matusik +matuseski +mattu +mattier +matthys +matteucci +matsuhara +matsen +matrejek +matlick +mathewes +mathal +matey +matesic +materna +matelic +matarese +matalavage +mataalii +mastrocovi +mastrobuono +mastoris +mastera +mastenbrook +mastella +massaglia +maslyn +masley +masin +masiclat +mashiah +mashek +mascot +maschke +maschio +masch +marzinske +marxen +marville +marushia +marungo +maruffo +maruca +martinz +martinetto +martinetti +martinea +martincic +martig +marske +marshalsea +marsette +marroguin +marreo +marquena +marona +marola +marmie +markstrom +marksbury +markrof +markovitz +markevich +markette +marius +maritt +marionneaux +marinos +marinese +maricich +marhoefer +margiotta +maren +marecki +marcone +marcoline +marcolina +marchuk +marcelynas +marcaida +marbus +marazzi +marazas +marashio +maranville +marani +marandi +marander +marade +mapalo +manza +manylath +manvelyan +manusyants +mantuano +mantsch +mantell +mantano +mansmann +manship +manozca +mannie +mannes +manliguis +manigold +maniatis +mania +mangon +manginelli +mangicavallo +mangiaracina +mangas +mangaoang +manford +mandiola +manchini +mamoran +mammucari +mamer +malys +malvin +malvaez +malusky +maltie +maltbie +malphurs +malotte +malloch +malkasian +malit +malis +malinski +malinchalk +malicote +malich +maletz +malesky +maler +malekzadeh +maleh +malech +malbaurn +malara +malakan +malakai +malafronte +malady +makley +makekau +majmundar +majersky +maiten +mainiero +mainello +mailes +maigret +mahusay +maharg +mahany +maguet +magowan +magone +magnall +magleby +maglaya +maginn +magin +magil +maggs +maggie +magelssen +magaw +magario +magallanez +maeweather +madura +madrueno +madinger +madho +maderas +maddry +madaris +maczko +macugay +macrowski +macomb +macnab +maclaurin +maclauchlan +mackynen +macksoud +macks +mackney +mackintosh +mackinder +maciej +macie +machowski +machol +machinsky +machalek +macchione +macall +macafee +mabus +mabins +mabane +maassen +lysen +lynaugh +lykens +luvian +luttenegger +lutkins +lutchman +lutao +luskin +luskey +lungren +lundburg +lumm +lulic +lulewicz +lukaszewicz +luiso +luhnow +lugg +lugardo +lufsey +luetmer +luepke +ludtke +luczkowiak +luckhardt +luckenbaugh +lucken +luchenbill +lubke +lubell +lube +lubbock +lozon +loze +lozaya +loynd +loxley +lowthorp +lowek +loviska +lovig +lovgren +loverink +lovensheimer +lounsbery +loukota +loughnan +loughborough +loudenslager +lotson +lothspeich +lotan +lossa +losolla +losier +lorna +lorimor +lori +lorett +lorens +loreg +loreaux +lorandeau +loque +lopus +lopriore +lootens +lookadoo +lonneman +lonn +longiotti +longhini +longendyke +longbotham +londre +londagin +lonabaugh +lomu +lominy +lomboy +lomartire +lollie +lokker +loia +loi +logrono +logosso +loggains +loflen +lofink +lofgreen +loewenthal +loeurm +loerzel +loeppke +loepp +loegering +lodholz +lockey +lockbaum +lochte +lochan +lobur +loban +llorca +lloid +llewlyn +llanez +liwanag +livernoche +litzenberg +litano +lissard +lisko +liscio +lipskar +lipscombe +lipschutz +lipphardt +lipinsky +lipani +lions +linnertz +links +linkowski +linko +lingafelter +lingafelt +lindzy +lindman +lindert +lindersmith +linders +linderholm +lindburg +lindaman +lincicome +linberg +linamen +limke +lilyquist +liloia +lillpop +lillick +lillich +lilien +lighter +liggin +lifton +lifsey +lifford +lifer +liest +liem +lidke +liddiard +lick +lichtenwalner +lichtenfeld +lichak +licerio +licausi +licause +libman +libera +liaw +leya +lewitt +lewandoski +levoy +levitin +leviston +leventer +levenhagen +leveillee +leve +lettre +letsche +lesiak +leshinsky +leriche +leri +lepri +leppke +lepping +lepp +lepo +leonhard +leonello +leona +leofsky +lensing +lenoci +lennington +lennihan +lenn +lenkiewicz +lenis +lenertz +lenehan +lenci +lenarz +lemucchi +lemick +lelah +lelacheur +lejenne +leitman +leithoff +leistiko +leipert +leibert +leibe +lehnertz +leheny +lehar +lehane +legorreta +legoff +legleu +legions +leggat +leggans +legaard +left +leesmann +leemaster +leemans +ledwig +ledlie +lederhos +lecorchick +leclear +leclare +leckman +leckbee +lebrecque +lebahn +leavenworth +leatherberry +leamer +leady +lazzeri +lazarini +lazarine +laza +layng +lawshe +lawman +lawer +laware +lavista +lavis +laviola +lavinder +lavern +lavene +lavelett +lavanway +lavanchy +lavalette +lavala +lavadie +lava +lautzenheiser +lautt +lauser +laurimore +lauridsen +laurey +laurenti +laurente +laurenitis +laurelli +laukitis +laud +lattrell +lattner +latterell +latten +lattari +lattanzi +latif +lastufka +lasswell +lasseson +lassa +laslo +laski +lashute +lashmet +larrieu +larrier +larribeau +laronda +larney +larita +lariccia +largin +larez +lardin +larch +lapusnak +laprete +lapre +lapradd +lapore +lapinsky +lapid +laperriere +laos +lantto +lantaff +lanson +lanois +lanius +lanini +languirand +languell +langstraat +langreck +langkabel +langill +langeness +langefels +langarica +langager +lanfranco +lanfear +lanfair +landvatter +landolfi +landborg +lanagan +lampson +lampshire +lamoreux +lambrukos +lambrakis +lamborne +lambing +lamax +lamarch +lallave +lalka +lais +lairy +laiben +lahren +lahn +lahmers +lah +lagory +laforrest +laflore +lafkas +lafield +lafay +laduc +laderer +ladell +ladakakos +lacoy +lacki +lacio +lacinski +lachowsky +lacerda +lace +lacasa +labruzzo +labre +labove +laberpool +labbadia +labarba +labady +kytle +kym +ky +kwasnicki +kwapniewski +kwang +kuzminski +kuzel +kuwahara +kut +kusko +kusick +kuruvilla +kurtulus +kurtis +kurtich +kurkowski +kurkeyerian +kuritz +kurelko +kurcaba +kuralt +kuprewicz +kupetz +kuntzman +kunishige +kundtz +kulwicki +kulow +kulis +kuhlmey +kufel +kues +kuehnel +kudrick +kudlacik +kudej +kuchel +kuchan +kucha +kuboushek +kubishta +kubilus +kubert +kubeika +kubasik +kuakini +krzyston +krzeczkowski +kryzak +krygier +kry +krupski +krupke +krupansky +krumvieda +krumholz +krumbholz +krudop +krstic +krovious +krommes +kromm +krolak +kroes +kroening +kroener +kritter +kristy +krisman +kriege +kridel +kreul +kretsinger +kretlow +kresal +krejsa +kreines +kreig +krefft +krauskopf +kratt +krassow +krasnecky +krance +krajcik +krail +kraham +krack +kozloff +kozlak +kozera +kozee +koyama +kowalowski +kowalchuk +kovalovsky +kovalcheck +koutz +kotts +kostyk +kosty +kostohryz +kostiuk +kostis +kostick +kosofsky +kosman +kosin +kosier +kosen +kosco +koschnitzki +kosbab +kosack +korzep +korvin +kortkamp +kornrumpf +korfhage +kordus +korchnak +koppinger +kopinski +kopald +kooyman +koopmans +koonz +kooker +kooch +konzal +konye +kontogiannis +konruff +konowal +konopnicki +konopacky +konopacki +konig +konicki +konecni +kondel +konakowitz +komlos +kombe +komatz +kolm +kollmeyer +kollasch +kolin +kolden +kolbo +kolata +kolaga +kokocinski +koko +koinzan +kohrman +kohnz +kogler +koets +koerwitz +koep +koenecke +koehly +kockler +kocka +kociolek +kobie +knudsuig +knoten +knotek +knole +knochel +knobbe +knightstep +knigge +knife +kniess +knickelbein +kneisler +kneedler +knedler +knall +knable +klym +klussmann +kluever +kludt +klouda +klotzbach +klosowski +klockars +klinker +klingshirn +klingelhoets +klingelhoefer +klena +klempa +klemisch +klemens +klemencic +klemen +kleinhenz +klecha +klebanow +klebanoff +klave +klang +klammer +klamet +klaers +klacic +kjar +kivisto +kivel +kitzrow +kitzerow +kitz +kiszka +kistenmacher +kisicki +kisak +kirylo +kirson +kirschke +kirmer +kirakosyan +kinton +kint +kinsland +kinlock +kini +kingsolver +kingdon +kindschuh +kindlimann +kindl +kindberg +kinas +kinaj +kimberl +killoy +killette +killer +killary +kilgor +kildoo +kilborne +kilbert +kil +kijek +kiewiet +kiever +kiesz +kiessling +kielar +kiehn +khosravi +kholodivker +kho +khatib +khatcherian +keyworth +keylor +kewanwytewa +kettman +kettlewell +kettl +kettelle +kethcart +ketay +keslar +kesby +kerne +kerk +kercy +kerchal +kerbel +kenrick +kennis +kennin +kennemuth +kennelty +kenkel +kemmerling +kemfort +kelstrom +kellow +kellom +kelk +keliiholokai +kelcourse +kekua +keiger +keglovic +keesecker +keehne +keedah +keding +keavney +keanu +keagy +keaffaber +keadle +kazemi +kazanowski +kazanjian +kazan +kawelo +kavanah +kautzer +kaukola +kaufusi +kauffeld +katowicz +katos +katheder +kately +kata +kastor +kastl +kassouf +kassler +kassam +kaskey +kasimis +kasdon +kaschmitter +kaschel +karratti +karpinen +karpen +karmann +karlovich +karlen +karkut +karin +kariger +karaffa +kapsos +kapps +kapnick +kanoa +kanney +kannas +kanduth +kampman +kamimura +kamens +kamemoto +kalvaitis +kaltenhauser +kalloch +kaller +kallenberg +kaliszuk +kalinoski +kalinger +kalich +kalfus +kalfayan +kalert +kalenkoski +kalen +kaleiwahea +kaleel +kaldas +kalawe +kalathas +kakos +kaiserman +kais +kailiponi +kaighn +kahuhu +kahoun +kahen +kahaleua +kah +kagy +kager +kagarise +kaffka +kaempfer +kaemmerer +kaelker +kady +kadner +kadlubowski +kadakia +kacynski +kacic +kach +kabrick +justman +justine +jurina +jurik +jurcik +junius +jumalon +julca +jui +jugan +juart +jove +journeay +joung +jou +josilowsky +josephsen +josephpauline +jorde +joor +jonte +jolie +johnke +johanningmeie +joerg +jochems +jilk +ji +jhonston +jez +jethva +jethro +jest +jesko +jerrel +jerich +jentsch +jensvold +jennrich +jenious +jenck +jemenez +jelle +jelinski +jeleniewski +jelen +jeffrie +jefford +jedik +jebbett +jayes +javarone +jauss +jaus +jaskolski +jasionowski +jasin +jarzynka +jarva +jaruis +jaross +jaret +jaquess +janovich +jannusch +jann +jankins +janitz +janicke +jangula +jamon +jammer +jamie +jameel +jakupcak +jakubczak +jakowich +jakeman +jagneaux +jagher +jaekel +jadin +jacobowitz +jackstadt +jackowiak +jackiewicz +jackels +jabour +izsak +izarraras +iwasa +iwanyszyn +iulo +iuliucci +iturbide +itkin +isby +isam +isales +isackson +irizarri +iribarren +irani +iracheta +iott +ioli +iodice +ioannidis +intriago +interrante +intermill +insco +inloes +ingrim +inglin +inglese +ingala +infield +inestroza +ineson +indest +incorvaia +inacio +imparato +imm +imfeld +imaizumi +illescas +ikuta +iino +ignasiak +igler +igel +iffert +idris +idema +ichinotsubo +ichinose +iburg +iarossi +iannaccone +iams +iacovissi +hytros +hyten +hysinger +hylle +hylinski +hvizdos +huyghe +huus +hutsler +hutchen +hustus +huso +husni +huslander +huska +hush +huschle +husayko +husanini +hurtis +hurter +hurrington +hurrigan +hurl +hurban +hunten +hundemer +humerickhouse +humbel +hulstine +hulm +huitzacua +hughlett +huger +huewe +huels +hudrick +hudek +huckeby +hubright +hubric +hubel +hsi +hryniewich +hrovat +hronick +hribar +hozempa +hoxworth +howryla +howison +howieson +howdeshell +hoving +hovi +hovelson +hovell +houten +housten +housekeeper +houpe +houp +houman +houghland +hougas +hothan +hotchkin +hoste +hosie +hosendove +hoseman +hoseck +hoschouer +horwood +horuath +hortillosa +horth +horsfield +horniak +hornby +hormander +horii +hores +horaney +horal +hopskins +hoppesch +hoopengardner +hoomana +hoolihan +hoof +honzel +honse +honohan +hongo +hongerholt +homola +homerding +homchick +holy +holvey +holsing +holshue +hollenberg +hollemon +holla +holka +holifeild +holets +holdt +holdness +holdiness +holda +holcey +holbein +hoium +hoisl +hohstadt +hohowski +hoh +hogy +hogsten +hogsette +hoggins +hofler +hoffstot +hoffschneider +hoffee +hoevel +hoernemann +hoeper +hoener +hoene +hoeke +hoeg +hoeflich +hoeffner +hoeffliger +hoecker +hoeck +hoe +hodgen +hodan +hockema +hochschild +hobkirk +hnatow +hledik +hjalmarson +hitzler +hittman +hisman +hirstein +hirschhorn +hirsche +hirkaler +hiraoka +hiraki +hipwell +hippo +hinsey +hinkey +hinish +hingst +hingle +hindin +hinahon +himelstein +hillburg +hillaire +hilgert +hildred +hildahl +hilcher +higueros +higle +higinbotham +hieserich +hidvegi +hidrogo +hickton +hickonbottom +hickert +hibl +heyveld +heydel +hevner +hevesy +heverley +heverin +heusley +heuberger +hettwer +hett +heter +hesters +hessong +hessing +hessenthaler +hessell +hessee +hesby +herzberger +herwood +herting +herscher +herschel +herrling +herrig +herriage +herrel +herre +herpolsheimer +hernanders +hermosura +hermie +hermens +herklotz +herkert +herby +herbster +herbison +herbers +herbein +heppeard +henrick +henrey +henretta +henneberg +hennagin +henington +henifin +heney +henesey +henehan +hendy +henderosn +hender +hendee +henby +henaire +hemrich +hemmie +hemmes +hemlepp +heminover +hemauer +helvy +helsing +helmy +helmstetler +helmink +helmcamp +hellar +hellams +helker +helgesen +helfritz +helena +hele +hektner +hejl +heitschmidt +heitger +heinzmann +heinzen +heininger +heineken +heimrich +heimbaugh +heiermann +hehr +hegre +hegmann +hefler +hefflinger +heese +heeney +heemstra +hedrich +hedgespeth +hedemann +hedegore +heddlesten +heckenberg +hebig +hebden +hebda +heatly +heathershaw +hearson +heally +healan +heads +hazleton +hazarika +hayhoe +haydal +hayburn +hawthrone +hawman +hawkey +hawf +havice +havercroft +hautamaki +hauskins +haulter +haugrud +hauan +hatzenbuhler +hatzenbuehler +hattub +hattier +hatteyer +hatstat +hathway +hataway +hassick +hassian +hasselman +hasselbarth +hasper +haspel +haske +hasgill +hasen +harviston +harvilla +harvilicz +harver +hartzer +hartup +hartsough +hartsch +hartly +hartlep +hartlein +hartkopf +harthun +hartfiel +hartery +hartert +hartage +harsey +harrey +harrett +harral +haroutunian +harmeyer +harlowe +harloff +hardyman +hards +hardrict +hardmon +hardigree +hardenburg +hardell +hardebeck +hardaman +hardaker +harcey +harbick +harajli +happer +hapgood +hanstein +hansbury +hanold +hanohano +hano +hanns +hannifan +hannes +hanko +hanis +hanenkrat +hanemann +hanek +handzel +handwerker +handwerk +handsaker +handrick +handelsman +handal +hancin +hanbury +hanaway +hanahan +hams +hammerly +hammeren +hammatt +hammarlund +hamling +hamiss +hamiel +hamelinck +hambrecht +halo +hallinger +hallick +halifax +halgrimson +halfmann +halder +hald +halburnt +halberstam +halaby +haker +haken +haine +hagos +hagmaier +hagenson +hagene +hagenbrok +hagenbaugh +hafter +haffling +haeger +haegele +hade +hadder +hadcock +haczynski +hackle +hachigian +hachez +habrock +habowski +habina +haberkamp +habben +habash +haaby +gyatso +gwalthney +guziec +guziak +guys +guynup +gutzwiller +guttmann +gutting +gutteridge +guterrez +guszak +gusky +gusciora +gurry +gurrieri +guritz +gunst +gundry +gundert +gulsvig +gulisano +gulinson +guittar +guitard +guisti +guiski +guinto +guinther +guinnip +guilliam +guillerault +guilfoil +guijarro +guidetti +guiberteau +guger +guevera +guetersloh +guerini +guella +guedea +guecho +gudis +guckin +guberman +guardipee +guanio +guagliardo +grzegorek +grybel +grunst +grunlien +grundmeier +grundhoefer +grun +grumer +grum +gruhn +gruger +grudt +growney +grotts +groton +grotelueschen +grotberg +grosswiler +gronowski +gronosky +gronewald +gronert +groholski +groetken +groeschel +groene +grodecki +groceman +griswell +griseta +grinkley +grinie +grinberg +grimmius +grieme +greytak +grett +grenke +grenda +greinke +greeves +greever +greet +greenlun +greenler +greenham +grebin +grboyan +grawburg +grattelo +grassham +granvold +granthan +gransky +grandolfo +grandmaison +grandchild +granbois +gramolini +grammatica +gramc +grajek +grahe +gragson +gragert +grage +grafenstein +graetz +gracely +graceffo +grabarczyk +gouzalez +gouse +gourdin +goudelock +goud +gottlob +gottke +gotthelf +gotthard +gotter +gotsche +gotschall +gosz +goston +gossack +gosdin +gorz +gorrill +gornto +gornie +gorenberg +gorelli +gordinier +gora +gopin +gopie +goolman +goolden +goodsite +goodmanson +goodly +goodkin +goodiel +gonzolas +gonsior +gonseth +gonez +gonchoff +gonales +gomzales +gomora +golly +gollihar +gollhofer +golka +golinski +golen +golembeski +golemba +goldwater +goldstock +goldklang +goldbeck +golda +gojmerac +goich +gohlke +goger +gogel +goga +gofton +goffe +goetting +goeser +goerner +goerke +goerdel +goeppner +godsman +godert +godel +gobeli +gnas +glucksman +glotzbecker +gloeckner +glockner +glish +glickson +glicken +glew +glessing +gleichman +glazener +glave +glausier +glatzel +glassett +glasbrenner +gladu +glab +glaab +giza +gittler +gittleman +gittinger +gitting +gitthens +gissel +gischer +girst +girsch +girona +girillo +gire +gira +giovanetti +gionest +gingles +gingery +ging +gillstrap +gillson +gillotti +gillmor +gilliss +gillig +gillert +gillcrest +gilgour +gilgore +gilding +gilderman +gilcreast +gieseman +gieselman +gieringer +gick +giangrosso +giangregorio +giambra +giambattista +ghibaudy +ghianni +ghelfi +ghaziani +ghantt +ghant +ghaemmaghami +gey +getler +getchius +gesualdo +gesmondi +gerweck +gerwe +gerula +gertsen +gershey +gershen +gers +gerritsen +gerdsen +gerczak +gerbatz +gerba +gerache +georgl +georgiadis +georgelis +georgalas +genualdo +gentery +gennock +gennett +genett +gendernalik +genas +gena +gemmen +gelston +gellman +gelfo +gelen +gelbowitz +geibig +gehlhausen +geffre +geesaman +geel +gedman +geckles +gebbie +gearwar +gearlds +gayne +gayfield +gawlas +gauwain +gaufin +gauani +gastley +gastello +gassoway +gasparino +gaskey +gaser +gascot +garuti +garrington +garreh +garnand +garlits +garity +garitty +gariety +garia +gari +garetson +garelik +garding +garb +garasha +ganzer +gantert +ganotisi +ganner +ganison +ganie +gangell +gangel +ganesh +gandrud +ganas +gamby +gambles +galyan +galuski +galper +gallwas +galluzzi +gallups +gallosa +gallipeau +gallet +gallerani +gallegly +gallaty +gallaspy +gallander +galioto +galicinao +galer +galdon +galardi +galamay +galabeas +gala +gaitor +gagg +gagan +gaerlan +gadley +gacke +gacia +gach +gabrelcik +gabay +gabard +fylnn +fydenkevez +futter +fuse +fuscaldo +furstenberg +furmanik +furlone +furia +furer +furci +furbish +funt +fulker +fukano +fujino +fuhrmeister +fugo +fuerman +frymyer +fryling +frontz +froncek +fronce +frolich +froio +froid +froehle +frischman +friou +friot +frieze +friesz +friemering +frieman +friedrick +friedle +frickson +frickel +frichette +fricano +fribley +frewing +frever +freudenstein +frerking +frenger +freisner +fregeau +freedle +frease +frazey +frascone +franzmann +franzetti +frankforter +francy +franckowiak +francies +franchette +fralin +fraleigh +fraint +fragozo +fracchia +frabizzio +fousek +fouraker +foucault +fosson +fossati +fosnough +forts +forthman +forsting +forstedt +forshay +forshaw +forsha +forro +forno +forlivio +forkosh +forkan +forcello +foradori +fontane +fonger +foney +fondy +fondow +folta +follin +folliard +folley +folken +foiles +fohn +foggs +foesch +foertsch +foecking +fodness +foat +flot +flosi +florenz +florens +florencio +florea +florczak +flodin +flocke +flo +flentroy +flenard +fleisner +flecther +flaks +flagstad +flagel +fjetland +fixico +fiume +fitterer +fisette +firlit +firestein +fiotodimitrak +fioto +finner +finnefrock +fingado +finely +fincel +finau +fimbrez +filoteo +fillpot +fillare +filipski +filippo +filipovic +filipelli +filimaua +filhiol +filgo +fileds +filbert +figuera +figliola +figart +fietsam +fieselman +fiene +fieldhouse +fiebig +fidel +fida +fickert +fiato +fevold +feuerborn +fetchko +fesh +feser +ferruso +ferriolo +ferriola +ferrence +ferrar +ferran +ferraiz +feroz +ferone +fernstrom +fernstaedt +fernow +ferkovich +fergen +ferdolage +ferdinandsen +ferbrache +fennewald +fenk +fenix +fendler +fenchel +felske +fellinger +felicetti +feldpausch +feighan +feichter +fehrle +fehringer +fegaro +feener +feeler +fedorchak +federowicz +fedd +feauto +feagen +feaganes +fazzina +fazzi +faykosh +fayard +favuzza +favolise +fausset +fauske +fausel +fauscett +faulknen +faulkenburg +fatica +fastlaben +fastic +farzan +farstvedt +farin +farguharson +fargnoli +farfalla +farese +farer +faraldo +faraj +fara +fanzo +fanton +fanney +fanizzi +fanion +fanelle +falterman +falsetti +fallone +falkiewicz +falconio +fake +fairleigh +fahringer +fahrenkrug +faerber +fadley +fadeley +facundo +fack +face +faby +fabrizius +fabozzi +fabiszewski +fabin +ezpeleta +ezparza +eyrich +eyerman +ewoldt +ewards +evasco +evanich +evangelo +eustace +eugley +euertz +etulain +etchells +esson +esskew +essery +esselink +espinol +espenoza +espelien +espeland +espadas +esler +eske +eska +escuriex +escovar +escort +eschrich +eschette +eschen +eschbaugh +escalon +escalero +esbrandt +esary +ertman +eroh +ernesto +erlenbusch +erle +erke +erichsen +eric +erholm +erbstein +erbst +eppolito +eppihimer +eppich +entin +enslinger +enslen +enockson +ennenga +enman +englett +engleson +englerth +engl +engholm +engelken +engelkemier +engelhaupt +engelbach +endries +endow +endito +enderby +encallado +emziah +embt +embs +embelton +emard +elwonger +elvsaas +elumbaugh +elstner +elsmore +elskamp +elshant +elmblad +ellson +ellias +elletson +ellestad +ellert +ellermann +ellerbrock +elleman +ellars +elland +eliezrie +eldib +eldert +elbe +ekwall +ekholm +eken +eitnier +eitniear +eisenzimmer +eisenstadt +eisensmith +eiselman +eisbach +eisaman +eiken +eibell +ehrke +ehrismann +ehrenfeld +ehlman +egizi +egitto +eggeman +effron +ednie +edelbrock +edde +edd +economos +eckols +eckloff +echegoyen +ebia +eberlin +ebbers +easterbrook +earney +earleywine +eanni +eadens +dyron +dykhoff +dyers +dyda +dybala +dwane +dwaileebe +duverne +duve +dusen +dusatko +dusablon +durrette +durphey +durnin +durkes +durette +durdy +durch +duracher +dupray +dupoux +duponte +duperclay +dupass +dupar +dunwiddie +dunsing +dunnaville +duncomb +duncklee +dunay +dunakin +dumpe +dumes +dumdei +dumay +dulkis +dukich +dukas +duin +dugo +duewall +duemmel +duelm +dueber +dudman +dudak +duckhorn +duchscherer +ducat +ducas +dubyk +dubill +dubiansky +dubaldi +dua +dspain +drzazgowski +drymon +drylie +druvenga +druschel +drungo +droze +drouse +drott +drosick +droneburg +droessler +droesch +drobny +drizin +dripps +drinkley +drillock +driesbach +dretzka +dresner +drentlaw +drenon +drehs +drehobl +drda +draxler +drath +drapeaux +dragula +drafts +draft +dozer +doxtater +doxie +dowst +dowson +downton +dowlen +dowey +dowery +douty +doughtry +doughtery +dotzler +dotterer +dothard +dosher +dosal +dorso +dorsette +doro +dornfeld +dorkin +dorka +dorge +dorchy +dorame +dopler +dopico +doore +dooms +donnie +donnelley +donnel +donayre +donatello +donachie +dominiguez +domingos +dominga +dominey +domenget +dolores +dollyhigh +dollen +dollak +doleac +dolch +dolbeare +dokka +dokes +doire +doing +dohring +dohogne +dohnal +dohan +doerle +doerhoff +doemelt +doehring +doegg +dodsworth +dodoo +dodier +dockendorf +docken +dobrowski +dobrin +dobine +doberstein +dizer +dixey +divita +diven +divalerio +dituri +ditton +disspain +disparte +dismore +disilvestro +dishong +dishian +diseth +discenza +dirkson +dirkse +dirker +dirk +dipippo +dipinto +dipierro +dinnocenzo +dinizio +dinis +dingivan +dingfelder +dincher +dimucci +dimpson +dimpfl +dimitrov +dimarzo +dils +dilisio +diliberto +diliberti +diles +dileonardo +dilena +dijulio +diiulio +digiuseppe +diga +difillippo +difebbo +dieng +diekman +didyk +didriksen +dickus +dickow +dickeson +dicastro +dibenedetti +dhaliwal +dezenzo +dewyse +dewinter +dewaters +dewaele +devoto +devor +devoogd +deviva +devitis +devit +deveyra +devericks +devenuto +deveja +devaughan +deutschendorf +deuink +deubner +detzler +detullio +detore +dethlefsen +dethlefs +detamble +desrevisseau +desotel +deso +desmeules +desmaris +desilvio +deshpande +deschambault +descamps +desatnik +desamito +desalle +desak +derwin +derting +derrah +deroven +derosso +deromer +dermott +deringer +derico +derga +derflinger +derezinski +derck +derbacher +deranick +depuydt +depung +depree +deppert +depierre +dephillips +deojay +denzin +denten +dentel +dennies +denina +denger +deneke +denegre +denboer +denapoli +demsky +demsey +demotta +demmons +demman +demendonca +demeester +dembowski +demarce +deman +demallie +demaire +delwiche +delphia +delore +dellenbaugh +dellbringge +dellaratta +dellaporta +dellapenna +dellacioppa +deliberto +delibertis +delgenio +delcueto +delaurie +delauder +delatrinidad +delash +delaet +del +dekrey +dejoie +deiters +deimund +degrenier +degre +degrand +degon +degeston +degelbeck +degaust +degasparre +defreece +defenderfer +defee +deeken +dedon +dedinas +dedicke +dedic +decristofaro +decoud +decos +deconti +deckers +decio +decenzo +debroux +debrot +debray +deboef +debiasio +debettignies +debenedittis +debbins +debaecke +dearson +dearo +deardon +deaquino +deacetis +dayne +dayem +dax +dawoud +davitt +davito +davidoff +dauterman +daughterty +daugaard +daudelin +daubendiek +dattilio +datcher +dasovich +daso +dasilua +dashem +darou +darke +dargin +darga +darco +darcey +dapas +dantos +danson +danny +danielian +danchetz +danby +damrow +damours +damboise +dambakly +dambach +damasco +damann +dallmeyer +dallesandro +dalfonso +dakins +dakes +daire +dahill +daguio +dagis +dabdoub +czerkies +czarnota +czachor +czach +cypress +cynthia +cylkowski +cyfers +cwiakala +cvetkovic +cuzman +cuzick +cuttler +cutt +cuti +cutforth +cutchins +cutchall +cushwa +curo +curbeam +cunnick +cuneio +cundick +cumbaa +cultice +cullity +cullip +cullifer +cucvas +cuculich +cucino +cubeta +cser +crupper +crunkilton +cruden +crover +crouter +crough +crouchet +crosthwaite +croon +cronshaw +cronenberg +crome +croman +crognale +crogan +croasmun +cristofori +cristiano +crisan +cringle +crincoli +crill +crieghton +cridge +criblez +crellin +cregeen +creeks +creath +creacy +crazier +crawmer +crawhorn +cratin +crapser +crapse +cranmore +cramm +cramblit +cramblet +cragin +cracas +cozzone +coyco +coxey +cowper +cowett +covone +covill +coverton +councilman +coultrap +coulas +coughenour +cough +cotty +cotherman +cother +costantini +cossell +cossano +cosley +coslett +coskey +cosgray +corza +corvi +corvan +corsetti +corscadden +corsa +corrow +corrice +correro +correale +corre +corna +corke +corid +corelli +cordonnier +cordona +corak +coppler +copelan +coore +coonradt +coones +cookus +conveniencia +contrerras +contrenas +contorno +constantini +constantineau +consolver +conrath +connet +connerly +conliffe +conforto +conda +conca +conales +compono +compau +commendatore +comings +comboy +combass +coltrin +colpetzer +colonel +colombini +cologie +colla +colbeth +colbaugh +colasuonno +colapinto +colamarino +colaluca +colaianni +colafrancesco +colace +colabella +coggsdale +coffill +codispoti +codell +cocoros +cocopoti +cocola +cockley +cockey +cochron +coch +cobden +coatsworth +coarsey +coar +clymore +clumpner +clougher +clolinger +clinkingbeard +clineman +clewes +clemments +claypole +clayburg +claybron +claybon +claughton +clase +clarenbach +clankscales +clampett +claessens +claburn +citrin +cisney +cirri +cipro +cipkowski +cione +cinquanti +cink +cimiano +ciervo +ciers +cicora +ciciora +cicione +cicerelli +ciccolini +ciccarone +cicarella +ciarletta +ciaccio +chuta +chustz +churan +chumbler +chuba +chruch +christler +christinsen +christinat +christello +chrispin +chrismer +chrislip +chrisjohn +chrestman +choute +chough +chorlton +chomka +chmelicek +chiulli +chislom +chiras +chinzi +chinnery +chinick +chim +chilvers +chilo +chiarmonte +chiarenza +chiapetti +chhuon +chhour +chheang +chetram +chessher +cherrier +cherepy +cherenfant +chenot +cheli +checa +cheathan +chears +chauvaux +chaudoin +chauarria +chatters +chatlos +chatley +chasey +charves +charsky +charania +chaplen +chaple +channer +chander +champey +champeau +challen +chall +chalkley +chalet +chalcraft +chaix +chadick +chadbourn +chaban +cesari +cervoni +cervin +certalich +cerni +cerney +cereo +cerce +ceravolo +ceparano +centrella +centner +centano +cenat +celmer +celenza +celadon +cefaratti +cefalo +cedillos +cecilia +cechini +cecala +cease +cearns +cazeau +cayson +cayanan +cavallario +cauthron +cattrell +catterson +catrone +catone +catoggio +caterino +catching +catalani +castrataro +castoe +castles +castillanos +castellonese +castelhano +cassman +cassius +cassisse +cassem +cassani +cassandra +casola +caselli +cascone +casburn +casbeer +casbarro +carrin +carreker +carrea +carre +carrauza +carranzo +carpinello +carolin +carmolli +carmena +carmell +carmain +carlye +carlsten +carlough +carlone +caringi +carine +carin +carela +cardono +cardle +cardinali +cardi +cardera +carback +capuzzi +capracotta +cappo +cappleman +capparelli +caponera +caplener +capanna +caoili +caoile +canzio +cantoran +cantillo +canta +canonica +cannington +canniff +cangas +canevazzi +canes +caneles +candido +canders +cance +canaway +canarte +canario +canan +camren +campusano +campman +camm +caminos +camferdam +camerena +camell +camak +camaj +calway +calvino +calvetti +calvani +caltabiano +calnimptewa +calnick +calnen +calmese +callander +callabrass +caliz +calija +calger +calendine +calderara +calcara +calamity +cailler +caho +caguimbal +cadoff +caddick +cadavieco +cabos +cabiltes +cabibbo +cabellero +cabasso +caballes +cabading +caal +byra +byod +bynon +byner +bynam +byker +buzzi +buzzeo +butzen +buttz +butteris +butkiewicz +buteaux +bustad +bussone +busman +bushmaker +busche +burwinkel +burum +burtless +bursi +burrup +burross +burries +burrichter +burrelli +buron +buro +burnstein +burnaugh +burnap +burkdoll +buris +burington +burgun +burgie +burghard +burgh +burgas +burgardt +burga +burdess +burcin +burchfiel +burchess +burandt +buonanno +buonamici +buntjer +bungert +bundschuh +bumps +buman +bulosan +bullocks +bullie +bularz +buland +bujarski +buhmann +buhman +bugna +buglisi +buggy +buemi +budke +buder +budds +buddie +buczak +buckwald +buckovitch +buckholtz +buckhanan +buchetto +buchauer +bucciarelli +buccheri +bucaram +bubis +bubash +bubak +brzostek +brzezowski +bryton +brusuelas +brussell +bruschi +brundrett +brundin +brumet +bruley +bruk +brug +bruestle +brudner +bruccoleri +brozie +broxterman +brox +browy +brownle +browm +broward +brouwers +brousard +brought +brotherson +brotemarkle +brossoit +broscious +brooms +broomhall +brookshaw +brookhouse +bronchetti +broks +broida +brohl +broglie +brofft +broermann +broenneke +brodnex +brodka +brodish +brockelmeyer +brockberg +broch +broccoli +brobeck +broadstone +brittman +brislan +brisk +brisentine +bringhurst +brindel +brinda +brincks +brimeyer +brihm +brignolo +briglia +brighi +brient +bridenbaker +briddell +briante +brians +briagas +brevo +breu +bretto +bretthauer +breslauer +bresemann +brentari +brenning +brenhaug +brengettey +brenek +brendal +brenagh +breiling +breidenbaugh +brehant +bregel +bredeweg +bredehoft +breceda +braylock +brause +brauning +braulio +braukus +braucher +bratchett +brasseur +brasser +branstutter +branstad +branscombe +brannick +brandolini +brandly +brandenberg +brandeis +brandal +branciforte +brancheau +brancati +bramlette +bramlet +brakhage +braitman +braisted +bradfute +bracks +bracket +braccia +braam +bozzone +bozenski +bozard +boyson +boylston +boxwell +bowlen +bowdle +bowdich +boward +bovia +bovey +boven +bouza +bouwman +bouwkamp +boutiette +boursaw +bourret +bourgoyne +bounleut +bound +bouma +bouleris +bouler +boughman +boughamer +boudoin +boudewyns +botwinick +bottone +bottino +botticello +botten +bottaro +bottalico +bostel +boshes +boshard +bosell +boscarello +bory +borsari +borok +borodec +bornmann +bormuth +bormet +borling +borlace +borkin +borkenhagen +boreen +bordin +borcherding +boote +booras +boody +bonton +bontemps +bonomini +bonina +bonifer +bongartz +boness +bonefont +bonefield +bonder +bonde +bondanza +bonavia +bonamo +bonadurer +bomkamp +bolognia +bollich +bollacker +bolinsky +boldosser +boldon +bolda +bolado +boken +bok +boisselle +boisen +bois +bohs +bohnenblust +bohlig +bohinc +bogumil +bogie +boggioni +boggi +bogenschneide +bogema +boge +bogdanski +bogdanovich +boettner +boesiger +boesel +boensch +boele +boeken +boehning +boehlar +bodwell +bodreau +bodovsky +boda +boczar +boclair +bockemehl +bochenski +bochat +boch +boccio +bocchicchio +boccanfuso +bobzien +bobson +bobino +bobier +bobeck +bobak +boarts +boardwine +boaldin +boakye +boady +blunden +blumenstock +blovin +blouir +bloschichak +bloome +bloodough +blonder +blommer +blok +bloeser +blinks +blinka +bline +blickem +bleyl +blews +bless +blenner +bleimehl +blecker +bleasdale +bleakney +blatnick +blaski +blare +blanzy +blankumsee +blancett +blaich +blada +blackbum +bjorseth +bjorlin +bizzaro +bivin +bitetto +bisso +biskup +biskach +bisio +bisi +bishard +bisesi +bisaccia +birtcher +birrittella +birkhimer +birkey +biringer +biren +birdette +birak +bio +binker +bink +bingler +bingert +bingamon +bindas +bilson +billow +billon +billo +bille +bilis +bilich +biler +bilek +bilden +bilazzo +bila +bigus +biggart +biggar +bigaud +biesheuvel +biernacki +bierley +bierlein +bielefeldt +biedermann +biedenbender +biddulph +bicksler +bickes +bicek +bica +bibiano +biangone +bi +bezzo +bezdicek +beyt +beydler +bevelacqua +beuther +beucke +betzold +bettman +bettino +betterley +betancourth +bessel +beska +beschorner +berwald +berum +bertotti +bertorelli +bertoldo +bertolami +bertley +berteotti +bertaina +berstler +berniard +berndsen +bernadette +berlinski +berkstresser +berks +berkovich +berkoff +berkhimer +berkery +bergmark +berga +berfield +bereznak +beresky +berenger +berendzen +berendt +berczel +berch +berbes +berardinelli +beppu +benziger +benzie +benzango +benthall +bentancourt +bensberg +benno +bennin +bennes +benken +benike +benigni +benestad +bendtsen +bendis +bendig +bendetti +bendele +benasher +benack +bemben +belts +belrose +belnas +bellusci +belloso +bellizzi +bellinghausen +belliard +belletto +bellettiere +belko +belitz +belfanti +beldon +bekis +bejcek +beitler +beiser +beine +beiley +beierschmitt +behrle +behran +behlmer +behlke +beguelin +beghtol +beger +begeal +beezley +beesmer +beerer +beere +beerbohm +beenel +beelby +beecken +bedor +bede +beddows +beddow +beddia +becky +beckius +beckfield +beckem +becena +beavis +beaumonte +beauman +beauharnois +beaudine +beasly +beales +be +bazylewicz +bazner +bazel +baytos +bayton +bayt +baylock +bayird +baygents +baxa +bawner +bawden +bavelas +bauske +baumberger +baul +battuello +battig +batterman +battani +battaglino +batimon +bathke +baters +batch +batas +batara +batala +bastine +bassani +bassali +baskind +baseman +basehore +basara +barze +barwell +barut +baruffa +bartlome +bartin +barthol +barthell +barters +barswell +barshaw +barrigan +barria +barrasa +barraco +barnthouse +barnt +barmes +barkhimer +barios +bario +barino +barie +barick +barfuss +barfknecht +barer +bareford +bardis +barcley +barchick +barcena +barbur +barbor +barbin +barben +barbella +barbaglia +baransky +baragan +baquiran +banzhaf +banter +bankowski +banet +bandt +banaszek +banana +balque +balowski +ballog +ballina +ballensky +ballato +baliga +baldomero +balden +balde +baldassare +balbontin +balbas +balassi +balandran +bakkala +bakhshian +bakerville +bakaler +bajaj +baites +baisten +bairam +bailard +baierl +baichan +bai +bahrs +bagozzi +bagni +bagnato +baglione +baggio +baggesen +baggenstoss +bagan +baessler +baerman +baerlocher +badgero +baddour +badami +baculpo +bacio +bacigalupo +bachta +bachar +bacchi +babrow +babonis +babish +babicke +babeu +baab +azzopardi +azore +azen +aykroid +axon +axelrad +awkard +awender +avon +avirett +averitte +averbeck +avellano +avary +auwaerter +autrano +auteri +austgen +ausdemore +aurich +aumen +auler +augustyniak +augliano +aughtman +aue +auduong +aucter +attianese +atiles +athas +asturias +astrup +astley +assante +aspden +aspacio +asley +asleson +askvig +askegren +askam +ashmen +ashauer +asfour +aschoff +aschim +aschan +asal +arzo +arvesen +arrow +arrocha +arris +arribas +arquitt +arone +aroche +arnt +arnoux +arnoldi +arning +arnholt +arndorfer +armson +arment +arlotta +arlinghaus +arlia +arkema +arizaga +arisumi +aristide +aris +arif +ariano +arguilez +argudo +argrow +argiro +argetsinger +arfman +arenburg +aredondo +area +ardry +ardner +ardizone +arcudi +arcizo +arcila +archilla +archangel +arcega +arbucci +arato +arano +aran +aragan +apostol +apolito +apland +apkin +aperges +apalategui +apaez +anzora +antonsen +antolos +antolini +antman +anter +anspaugh +anselm +annonio +annichiarico +annibale +annarumo +anliker +ankrapp +ankenman +anhorn +angton +angrisano +angon +angolo +angleton +anglebrandt +anglea +anglade +angilletta +angeron +angelotti +angelbeck +angela +anez +andueza +andrulis +andronis +andreu +andreoni +andert +anderlik +anauo +anastasiades +ananias +anand +amuso +amrich +amr +amour +amoss +amorosi +amoako +amoah +ammirato +ammar +amirian +amiot +amidi +ameduri +amderson +ambuehl +amass +amanza +amadio +alwang +alwan +alvine +alvarran +alvarracin +alvanez +aluqdah +altshuler +altonen +altmiller +altken +altiery +althiser +altaras +alstrom +alstad +alsbury +alsberry +alquijay +alpha +alonza +aloia +alnas +almerico +almenar +almen +allwood +allstott +allridge +alleva +allenson +allenbaugh +allegretta +allegra +allbritten +allara +allamon +alken +alizadeh +alirez +alires +aline +alim +algire +algier +algien +alfonsi +alexy +alexnder +alessandroni +alert +alemany +aleksey +alderton +alderfer +aldava +aldapa +alconcel +albornoz +albini +albergotti +alben +albea +albang +alario +alamilla +alalem +akoni +akles +akande +akamine +ajasin +aiyer +aihara +ahrendes +aherns +aharoni +agunos +aguliar +aguillar +agudo +agoras +agnor +agni +agers +agel +aery +aerts +adon +adessa +aderson +aderman +adema +adelsberg +adelblue +adel +addiego +adas +adamcik +acquilla +ackmann +achterhof +achane +abuhl +abrial +abreau +aboulahoud +aboudi +ablao +abilez +abete +aberson +abelman +abelardo +abedelah +abdulmateen +abato +aas +aarestad +aanenson +zymowski +zyla +zybia +zwolski +zwigart +zuwkowski +zurovec +zurkuhlen +zuppa +zunich +zumpfe +zumalt +zulkowski +zulfer +zugg +zuerlein +zuehls +zuckerberg +zuchelkowski +zucchetto +zucca +zubrowski +zubizarreta +zsadanyi +zrake +zotti +zosel +zoltek +zolla +zogopoulos +zogby +zmek +zitzmann +zitzelberger +zirker +zinzow +zimick +zimerman +zilk +zigomalas +ziesman +ziernicki +zierke +zierk +zierenberg +zierden +ziems +zieger +ziebert +zicafoose +zic +zibell +ziada +ziad +zhen +zetzer +zetino +zerphey +zercher +zeran +zephyr +zelonis +zellinger +zelko +zeliff +zeleznik +zekria +zeidman +zehrer +zehrbach +zeherquist +zehender +zegar +zega +zechiel +zeccardi +zebracki +zeavala +zbierski +zaza +zayicek +zawistowski +zawasky +zavitz +zaverl +zavcedo +zavattieri +zavacky +zausch +zatorski +zarrabi +zarlingo +zarin +zarillo +zaren +zapel +zapatero +zantow +zant +zannini +zangger +zanfardino +zanardi +zan +zampella +zamoro +zamborano +zambelli +zalamea +zajdel +zais +zahourek +zaharek +zagulski +zagacki +zadina +zaczek +zachter +zachariah +zacchini +zabenko +zabbo +yuska +yuscak +yurovic +yurek +yunes +yumas +yuk +yudell +ysaguirre +yray +yozzo +yovan +youssefi +yousko +younghans +youmon +youla +yotter +yoshi +yoseph +yorck +yono +yoneoka +yonashiro +yomes +yokel +yoest +ynocencio +yewell +yetzer +yetsko +yerty +yeropoli +yerka +yergin +yenor +yem +yeley +yearego +yeakel +yazzle +yazzi +yazdani +yaws +yasika +yarwood +yarris +yaroch +yarmitsky +yara +yantzi +yannucci +yannayon +yannantuono +yankovski +yankovitch +yandow +yanchik +yanagihara +yanagida +yanacek +yamanoha +yamaki +yalon +yaklin +yake +yaiva +yaish +yahne +yafuso +yafaie +yacullo +yacovone +yacoub +xyong +xayasith +wyze +wyrostek +wynes +wyker +wygal +wybenga +wurz +wung +wueste +wubnig +wubbena +wubben +wrzesien +wrynn +wrightington +wride +wreyford +woytowich +woytek +wosick +workowski +worell +wordlow +worchester +wooward +woolhiser +woodlin +woodka +woodbeck +woodal +wondoloski +wonderling +wolsdorf +wolper +wollert +wollenburg +woline +wolfing +wolfensperger +wolbrecht +wojnowski +wojewoda +wojdak +wohlfeil +wohlert +woge +woelfl +wodicka +wobser +wobbe +wnukowski +wnorowski +wmith +wlodarek +wiza +witucki +wittrup +wittnebel +witthoeft +wittenbrink +wittbrodt +witkowsky +wisnowski +wisely +wirtzfeld +wirfs +wipfli +winterberg +winslette +winscott +winnicki +winnen +winik +wingeier +windsheimer +windrow +windhorst +windfield +windauer +wincapaw +win +wimbrow +wimble +wilund +wilshusen +wilsen +willock +willmert +willies +williemae +williamis +willia +willi +willeto +willborn +wilkus +wilkson +wilkoff +wildridge +wilczak +wilcut +wiklund +wiggan +wigand +wig +wiesemann +wieseman +wiersteiner +wienberg +wielock +wielgasz +wiegard +wiedrich +wiederholt +wieben +widjaja +widera +wide +wicklin +wickersheim +wiborg +wiatrowski +why +whittum +whittinghill +whittenbeck +whitiker +whitey +whiter +whitelightnin +whitcome +whisted +whirlow +whiles +whilden +whetzell +whelihan +wheeldon +wheater +whaltey +weynand +weyker +weydert +weuve +wetzstein +wetzell +westler +westermeier +westermark +westermann +westerhoff +westbrooke +weske +weser +werst +werremeyer +wernsman +wernex +wern +werme +werline +werk +wergin +werdlow +werderman +went +wensman +wenske +wendorff +welzel +weltha +wellinghoff +welding +weit +weissenbach +weispfenning +weismantle +weisbecker +weirauch +weinzierl +weinrib +weinland +weinfurter +weinburg +weiher +weig +weidower +weicht +weibe +wehking +weglage +wegiel +wedige +weckwerth +weatherington +weasel +weant +wealer +weagraff +weader +wayts +wayson +waymon +waygood +wayford +waychowsky +waverly +wattigny +watsky +watry +wates +watah +wasurick +wassam +waskom +waskin +washum +washpun +washler +waser +warzybok +warstler +warrilow +warran +waroway +warntz +warnberg +warmka +warmbrod +warlow +warlock +warde +war +wapp +wantuck +wannlund +wannarka +wanko +wandell +walund +waltos +waltho +walstrum +walrod +walper +waln +wallwork +wallo +wallman +walliser +wallie +wallenbrock +wallau +walka +walizer +walgren +waley +walen +waldroop +walderon +wal +wakeford +waitz +waiss +waisanen +wais +wainkrantz +wahn +wahdan +wahba +wagnor +waggy +wagemann +wagatsuma +waffenschmidt +waegner +waddups +waddles +wadas +wacht +waas +waaga +vuoso +vukelj +vriens +vredeveld +vrbas +vranicar +vovak +votsmier +vostal +vorsburgh +vornes +vopava +vonseeger +vonschriltz +vonholt +vongsamphanh +vongkhamphanh +vongkhamchanh +vonfelden +voner +vondrasek +vondracek +vonderhaar +vonderahe +vonbank +volpone +volmar +vollmers +vollette +volinsky +volek +volbert +vojna +voigtlander +vogelzang +voeltz +voelkerding +vocelka +vljeric +vleming +vlchek +vizzi +vixayack +vixay +vivyan +vivion +vitrano +vitez +vitellaro +visounnaraj +visick +viscosi +virostko +virgile +virgadamo +virant +vintila +vinti +vint +vilven +vilt +villnave +villescaz +ville +villasis +villaplana +villao +villanveua +villanvera +villandry +villamayor +villamarin +villaluz +villaluazo +villaire +villacrusis +vilegas +vildosola +viker +vijil +vijayan +vigneau +vigilo +vigiano +vieu +vietzke +vierk +viengxay +vieau +vidas +vidaca +vicuna +vicueroa +vicenteno +vias +viard +viano +viale +viafara +vezza +vevea +vetterkind +vetterick +veto +vessar +vesperas +vesley +verwers +verunza +verso +versage +verrue +verrone +verrastro +verplanck +verone +vernazza +verlinden +verlin +verkuilen +verfaillie +venzor +venturelli +venskoske +venning +venneman +veneri +vendig +vence +veltkamp +velthuis +velovic +veller +velky +velega +velardes +veksler +veitinger +vehrenkamp +vegerano +vedovelli +veasman +vbiles +vautier +vaulet +vatterott +vasudevan +vasos +vasek +vasallo +varquez +varquera +varoz +varone +varisco +varieur +varanda +vanzie +vanwyck +vanwhy +vanweerd +vanwechel +vanvuren +vanvorst +vanveldhuize +vanuden +vantuyle +vantull +vansteenhuyse +vansteenberg +vanson +vansise +vanschoor +vanschoiack +vanrossum +vanosdol +vanos +vanorsouw +vanoni +vannuck +vanlinden +vanlier +vanlaere +vaninetti +vanhove +vanhoutte +vanhoecke +vanheusen +vanhamme +vanham +vangordon +vaneekelen +vandonsel +vandevanter +vandesande +vandernoot +vanderjagt +vanderiet +vanderhurst +vanderbie +vandawalker +vandaele +vanblaricum +vanbeveren +vanamerongen +vanamburgh +vanalstin +valtas +valme +vallow +vallotton +valliant +vallegos +vallar +valladores +valerino +valeriani +valela +valdo +valant +valado +vajnar +vais +vagnier +vadlamudi +vactor +vaccarello +vacarro +uzzo +uutela +utzig +useted +urtz +urtiz +urtiaga +urteaga +urquides +urmston +urmos +urbany +urbaez +uptmor +upole +uphold +uoy +unverzagt +unvarsky +unterseher +unterman +unglesbee +underdue +uncapher +umeh +ulven +ulvan +ulshafer +ulsamer +uljevic +ulbricht +ulabarro +ujano +uimari +uihlein +ugolini +uglum +ufford +ueckert +udani +uchiyama +ubl +ubaldo +tyrie +tyndal +tyms +tylwalk +tyeryar +twilligear +twidwell +twardy +tuzzio +tutterow +tutaj +turziano +turzak +turtura +turtle +turrietta +turns +turnell +turneer +turnbill +turello +turbacuski +tupaj +tupacyupanqui +tuomi +tuomala +tuohey +tuning +tumolo +tuman +tullar +tulino +tuggerson +tuckerson +tucke +tuchy +tucek +tucciarone +tuamoheloa +tuai +tua +tsu +tsironis +tsing +tsiatsos +tsemetzis +tscrious +tsau +tsasie +tsakonas +trypaluk +trygg +truxell +truver +trusso +trush +trusello +truocchio +truncellito +trumps +trumper +trumbley +trulli +truhe +truglia +trufin +trudnowski +trudics +trudgeon +trucks +trucker +troyano +troyani +trouser +trotty +tronaas +tromley +tromburg +troller +trojecki +trojahn +troike +troidl +troge +trofholz +trochesset +trish +trio +trinkley +trinkl +tringham +trindle +trimnell +trilli +trill +triguro +trigueros +triece +trider +trexel +trewin +trewhitt +treuter +treutel +trettin +trett +treso +trenton +trentini +trenholme +tremel +trell +tregan +trecarichi +trbovich +traverse +traunfeld +trapanese +tramp +tramm +trajillo +trahin +traher +tradup +toyne +toyama +townzen +towber +toussiant +tousom +tourtelotte +touma +toulmin +touhy +tottingham +totter +tott +totosz +toti +tota +tostanoski +toso +tory +torreson +torreon +torrell +torralva +torno +torngren +tornese +tordsen +torbit +torbeck +toppins +toppen +toppah +topolinski +toplk +topliss +toplin +topinka +topi +toomsen +tools +toof +too +tonic +toniatti +toni +tongren +tonche +tonas +tomsick +tomsche +tomopoulos +tomkowicz +tomasko +toliongco +toleston +tokunaga +tokita +tohonnie +tognetti +toevs +todora +todahl +tod +tocher +tocchio +tobosa +tobiason +tjepkema +tizon +tixier +tiwald +tittl +tisue +tisinger +tisa +tirona +tiro +tirk +tirino +tiotuico +tinnea +tinin +timone +timber +tilleman +tille +tiley +tijing +tigg +tiffner +tietjens +tieger +tidrington +tidrick +tibwell +tibolla +tibbit +tiangco +tian +thyfault +thurstonson +thundercloud +thuman +thrun +thrill +thorsten +thornquist +thorner +thormina +thormer +thoran +thomspon +thoeny +thoennes +thoele +thoby +thillet +thiesse +thibedeau +theuner +thessing +therurer +thero +theo +themot +them +thein +theim +theiling +theesfeld +theaker +thaniel +thamphia +thammorongsa +thalheimer +thain +thaemert +thackxton +thackrey +thackery +teyler +tewmey +tevada +tetz +tetteh +tetro +tetreau +testman +tessner +tesoriero +tesnow +tesauro +tersteeg +terrett +terrero +terrence +terrall +terr +terkelsen +terbush +teranishi +tepperberg +tentler +tenor +tenharmsel +tengwall +tenerowicz +tenebruso +tendick +tencer +ten +temoshenka +telman +tellinghuisen +telega +telchik +tejeiro +teitel +teichrow +teichmiller +tegtmeier +tegenkamp +teet +teeples +teepe +tebow +tebbetts +tebbe +tease +teach +tayo +taymon +taylan +taydus +tavolario +taves +tauteoli +tatu +tatsak +tatnall +tates +tasto +tasse +tashman +tartar +tarsis +tarris +tarricone +tarran +tarner +tarbor +tarbet +tarasuik +taraschke +taps +tappis +tapio +tapat +tapales +tapaha +taomoto +tanzosch +tanzman +tanweer +tanoue +tanori +tanon +tannazzo +tanker +tanke +tango +tanen +tandon +tandetzke +tancer +tamminen +tamiya +tameron +talladino +taliulu +talburt +talboti +talat +talamas +takiguchi +takenaka +tak +tahir +tagliente +taglialatela +tagge +tagami +tafuri +tafreshi +tacderen +taccariello +tacata +tacadina +tablada +tabet +taberski +tabbaa +taake +szypowski +szynkowicz +szymula +szychowski +szwarc +szuszkiewicz +szumny +szumilas +szumiesz +szuch +szuba +sznejkowski +szmidt +szlosek +szigethy +szenasi +szczurek +szczesniak +szalankiewicz +szalai +szal +szaflarski +syrstad +syrop +synowiec +synakowski +symore +symon +syddall +sybounheuan +swonke +swisshelm +swiller +swenton +swell +sweley +sweger +swefford +sweere +swee +swedeen +sweazey +swearngen +swaynos +swatloski +swatek +swary +swartley +swarr +swarn +swarb +swarat +swanzy +swantner +swantko +swanteck +swanick +swaine +swadling +svob +svensen +sutt +suto +sutherburg +susmilch +susla +susko +susan +surridge +surran +surkamer +suon +suominen +suneson +sundman +sumstad +sumruld +sumey +sumbera +sumaran +sultaire +sully +sulloway +sulkowski +sulc +sukut +sukup +sukovich +suihkonen +suga +suffern +sueyoshi +suet +suennen +suellentrop +sueda +suddath +succop +sub +sualevai +styler +stvictor +stuzman +stusse +sturwold +sturino +sturiale +sturdnant +stupke +stumm +stumb +stukel +stufflebean +stuever +stuessy +stuedemann +stueckrath +stueck +studwell +stubler +stubbert +strzyzewski +strzelczyk +strutynski +struckmann +struber +strow +stropus +strople +stroot +strohecker +string +strimel +stright +striffler +stridiron +stricklan +strem +streller +strekas +strek +streitz +streitenberge +strech +streat +strazzullo +strawberry +stratter +strathmann +strassell +strassberg +strangstalien +stoyanov +stouten +stoutamyer +stotelmyer +stoskopf +storton +storbeck +stoppenbach +stoot +stoor +stonewall +stonefield +stolzenberg +stollsteimer +stokel +stohs +stohrer +stofferahn +stoermer +stoen +stoecklin +stockhoff +stockburger +stoakley +stoa +stlucien +stitz +stittgen +stitch +stires +stippich +stinser +stinemetz +stinde +stinar +stimus +stiliner +stilgenbauer +stifflemire +stickfort +sticher +stibb +stewardson +stevison +steube +sternod +sterger +steptore +steppig +stepleton +stephanski +stephano +stepchinski +stepanik +stepaniak +stenslien +stenslie +stengle +stengele +stendal +stempert +steman +stelmach +steitzer +steinworth +steinway +steins +steinour +steinmiller +steinhouse +steinhour +steinger +steindorf +steinau +steinacker +stegmann +steff +stefansky +steensland +steenrod +steenland +steeby +stech +stealy +steagell +steadings +steach +stawasz +stavsvick +stavrides +stavish +stathes +state +stassinos +stasser +stasio +stasa +starzynski +starritt +starring +starnold +starchman +starch +starace +stapelton +stanuszek +stanovich +stankovic +stankey +stanislaw +staniforth +stanier +stangarone +stanganelli +standlee +standerwick +standback +stancombe +stancer +stancato +stammel +stambough +stallones +stakelin +stagnitto +stafiej +staffon +staffieri +staffen +stade +stachniw +stachnik +stacer +staber +stabell +staback +staadt +spunt +spueler +spruit +spruel +spriggins +spratlen +sprain +sprafka +sportsman +sports +sporle +spoerl +spoerer +splonskowski +splinter +splane +spizzirri +spinoso +spinka +spiney +spine +spindola +spindle +spinas +spilski +spielmaker +spiegle +spevacek +sperrey +sperger +sperduti +speranza +sperandeo +spender +spena +spella +speith +speis +speiden +speidell +speese +specter +speake +speagle +spaun +spara +spanton +spanswick +spannbauer +spana +spaide +spadlin +sowash +sovey +sovak +souvannavong +souvannarith +souvannakhiry +souser +soulek +soukkhavong +soucek +sottosanti +sotlar +sotak +sossong +sosso +sosinsky +soscia +sorotzkin +sorokin +sorman +sorgatz +soren +soravilla +sor +soprych +sopata +soorus +sookoo +sonnenburg +sonkens +sondrini +sondelski +somsana +sommerdorf +sommella +solverson +soltren +soltes +solonika +solomons +sollock +sollman +solle +solimeno +soliece +solgovic +soldow +solas +solarz +sokorai +sokolik +soisson +sohrabi +soho +sogol +soga +sofka +sodomka +sodachanh +sochocki +socci +sobrowski +sobrino +soboleski +soberano +sobba +sobania +soans +snuffer +snowdon +snowdeal +snoderly +snock +snitker +snith +sniff +snedeger +snearly +snachez +smurthwaite +smolski +smithmyer +smithen +smithberger +smisek +smily +smiglewski +smietana +smialowski +smeltz +smelko +smeenk +smedsrud +smayda +smaw +smarsh +smalt +smalarz +slutzky +sluis +sloup +slotkin +slosek +sloon +slomski +slocombe +slockbower +slisz +slinsky +slicer +sleek +slayman +slavis +slatin +slanina +slagel +sladky +sladek +skyberg +skwara +skursky +skurski +skura +skrobacki +skretowicz +skorepa +skomo +sknerski +skinsacos +skillom +skillen +skibosh +skibisky +skewis +skene +skender +skalecki +skafec +sixon +sivia +sivert +sitto +sita +sissman +sisneroz +siskey +sischo +sirwet +sirucek +sirrine +sirnio +siriani +sirek +sippial +sionesini +sioma +sinkiewicz +sininger +singuefield +sings +singhisen +singeltary +singco +siner +sindt +sindorf +sindoni +sindel +simzer +simunek +simplot +simpelo +simonetta +simonett +simoneavd +simmelink +simlick +simkowitz +simino +simers +simer +simcic +simank +silverwood +silverhorn +silquero +sillitti +sillery +silla +silker +silerio +silagy +silago +sikorra +sikkila +sikel +sikat +sikander +sigworth +signorino +sigafoos +siewers +sievel +sierzenga +sierer +siepker +siena +sien +siegfreid +siegers +siefkes +siefferman +siebel +sidles +side +siddiq +sida +sickmeir +sickendick +sichler +sicheneder +sichel +siangco +siad +shymske +shutte +shutes +shurkus +shumay +shukert +shuhi +shuga +shuckhart +shryer +shroeder +shrimplin +shrier +shrefler +shrake +shoyer +showden +shouts +shoto +shonts +shoeman +shoddie +shirilla +shird +shirai +shipwash +shiplet +shipler +shintani +shinney +shinko +shindorf +shimonishi +shimanuki +shiller +shiiba +shigemitsu +shigematsu +shifley +shifflette +shiever +shido +shidemantle +shidel +shibahara +shey +shevenell +shetz +sheskey +sherratt +sherif +sherfy +sherbo +shepp +shenberger +shenassa +shemper +sheltrown +shellum +shellnut +shellhorn +shellgren +shelenberger +sheive +sheasby +shearier +shearhart +shawler +shawaiki +shaull +shau +shatt +sharratt +sharrai +sharpsteen +sharpey +sharley +shariff +shariat +sharar +shapin +shansky +shannonhouse +shangraw +shammaa +shamapande +shalam +shaker +shahinian +shaginaw +shaggy +shafto +shafi +shaer +shae +shadix +shadburn +sfera +sfatcu +seymoure +sey +sewester +severyn +seutter +seuss +seufer +settecase +sespinosa +servey +servano +serum +sertuche +sert +serro +serret +serre +sermon +sermania +sergovia +seremet +serabia +ser +sephton +sep +senta +sensenbach +senneker +senk +senion +senemounnarat +seneker +semo +semenick +seltrecht +sellar +seliski +selis +seligmann +selia +selestewa +selem +sele +selca +selbert +selbe +sekerak +sejkora +seiz +seiver +seirer +seilhymer +seiley +seiger +seigart +seifts +seiffert +seidle +seide +seiberlich +segota +segobia +seewald +seepersaud +seen +sedy +sedtal +sedotal +sedler +sedlachek +secreto +secora +secky +seckington +sebestyen +sebers +searchwell +searchfield +searcey +seanor +sean +seamen +sealander +seaford +scullion +scrudato +scronce +scrobola +scribellito +scozzari +scoresby +scolnik +scoh +scoble +sclavi +sciuto +scisco +scigliano +scieszka +scierka +scibetta +sciavillo +sciarini +sciancalepore +schwuchow +schwoyer +schwoerer +schwien +schwetz +schwertfager +schwentker +schwent +schwendinger +schwemm +schweiner +schwarzenberg +schwartzer +schwarten +schwanebeck +schwanbeck +schwallie +schwald +schuyleman +schustrich +schurer +schuppenhauer +schumucker +schumans +schuiling +schueth +schuckert +schuchmann +schuble +schub +schroy +schromen +schroeppel +schroedel +schreur +schreimann +schrecker +schouweiler +schou +schornick +schoreplum +schooling +school +schoo +schontz +schoninger +schoneck +schone +schonaerts +schomberg +schollmeier +schoepflin +schoenegge +schoeneck +schoeller +schoebel +schnitman +schnetter +schnelzer +schneidmiller +schnair +schnabl +schmuff +schmoldt +schmider +schmeer +schlussel +schlissel +schlett +schlesner +schlesener +schlepphorst +schlepp +schlechten +schlaack +schiveley +schirm +schimanski +schilmoeller +schille +schilawski +schiffner +schiffert +schiedler +schickler +schiappa +scheuring +scheule +schepker +schenz +schenkelberg +schembri +schembra +schellhorn +schellenberge +schelle +scheitlin +scheidecker +scheibner +scheiblich +schehl +schefers +schee +schearer +schaubert +schattschneid +scharich +schares +scharber +schappach +schaneman +schamberger +schak +schaetzle +schaecher +scerbo +scelba +scavona +scatton +scarsdale +scarr +scarpone +scarlata +scariano +scandurra +scandura +scandalis +scammahorn +scafuto +scaffe +scachette +sayyed +sayko +sayco +sayasane +sayaphon +sawney +sawdo +sawatzke +sawallich +savko +savka +savitts +saviola +savio +savine +savich +savells +saulpaugh +saulino +sauler +saugis +sauber +sau +saturnio +sattel +satomba +saterfield +satava +sasseville +sasahara +sarzynski +sartorius +sartore +sartell +sarsour +sarson +sarp +sarnosky +sarni +sarlinas +sarka +sarinsky +sarin +sardo +sarden +sarchett +sarault +sarate +sarao +sarantakis +saralegui +sapper +sappah +sapinski +sapardanis +sapara +sanyaro +santwire +santrmire +santoriella +santor +santomassimo +santisteban +santillanez +santamarina +sansotta +sanpson +sannutti +sankoh +sangasy +sanfelix +sandvill +sandus +sandstede +sandling +sandland +sandhop +sandeen +sandblom +sanday +sandager +sancrant +sancken +sanchirico +sancher +sances +sanberg +sanacore +samyn +samul +samrov +samrah +sampere +sampang +samland +samii +samiento +sames +sambrook +samborski +samberg +samaroo +salzl +salvio +salvati +salvadge +saluan +saltzberg +saltus +saltman +salstrom +salotti +salmonsen +sallmen +salle +sallach +salines +salesky +saleme +saleha +saldano +salb +salazak +salasar +salado +salach +sakumoto +sakamaki +sajovic +sajous +sainte +sainliere +sainato +sails +saik +saieva +saice +sahe +sahady +sago +saft +safier +saffo +safer +saether +saens +saeler +saelens +sadvary +sadoski +sadorra +sadolsky +sadin +sadik +sadeghi +sadat +sacramed +sachetti +sacchi +sacca +saberi +saarela +saadat +saabatmand +rzeczycki +rysz +rynkowski +rynerson +ryneer +rymut +rymes +rymasz +rylaarsdam +rykaczewski +ryen +ryea +rydin +rydelek +rydel +rydeen +rybinski +ruvalcava +rutski +rutske +rutman +rutkin +ruths +ruthman +ruthers +rutheford +rutgers +rutenberg +rutar +russwurm +russomano +russomanno +russer +russello +rushanan +rusen +ruschmeyer +rusaw +rupnick +rupley +rupinski +ruopoli +rumps +rumbach +rulapaugh +ruivo +ruiter +ruhoff +ruhn +ruhman +ruggirello +ruffell +ruffel +ruezga +ruesga +ruelar +ruehter +ruehling +ruehlen +ruedas +rued +rueck +rudoy +rudio +rudh +rudell +rudat +rudack +ruckey +ruckel +ruckdaschel +rubsam +rubie +rubick +ruberti +rubeo +rubenfield +rubenfeld +rubash +rubalcave +rozzelle +rozon +royle +roxbury +rowlison +rowels +rowbotham +rovell +rouw +routzen +routzahn +routte +rousso +rousell +rous +rounsville +rouly +roulhac +roulette +roule +rouhoff +roughen +rouch +rottinghous +rottier +rotruck +rotkowski +rotkovecz +rothfeld +rotherham +rotch +rotanelli +rosul +rossie +rossen +rosseel +rosky +rosian +rosher +rosewall +roseum +roseth +rosenwinkel +rosentrater +rosenlof +rosenhagen +rosengren +rosendorf +rosendale +rosenbush +rosemore +rosek +rosebur +roscup +rosca +rosboril +rosazza +rosane +rorabacher +ropka +roofner +ronsini +ronnie +ronnfeldt +ronn +ronero +roner +ronayne +rona +ron +romprey +rommelfanger +romkema +romiro +romay +romanowicz +romanov +romanoff +romaniszyn +romanek +romane +rollf +rollag +rolfson +rolack +rokicki +rohrdanz +rohdenburg +rohal +rogowicz +rogish +rogian +rogens +rogado +roesslein +roesing +roerig +roenigk +roelle +roehler +rodvold +rodrigres +rodregues +rodolph +rodkin +rodiquez +rodina +rodero +roderman +roderiquez +rodenizer +rodenbough +rodebush +rodde +rocle +rochlitz +rochkes +rocheford +robyn +robusto +roberston +robbie +robbert +robberson +robair +roam +roadruck +roades +roaden +roadarmel +rizzardi +rivinius +riveras +rivello +rivelli +rivadulla +rittinger +rittie +rittichier +ritthaler +ritmiller +riskin +risien +rishor +risatti +ripson +ringold +ringen +rinfret +rineheart +rindal +rincan +rinauro +rinaldis +rina +rimkus +rimi +rimel +rimbach +rily +rillie +riller +rihner +riherd +rigley +rightmyer +righthouse +riggert +riggers +rigerman +rigas +rifai +riesner +rienzo +riemersma +riefer +ridgebear +rides +ridell +ridall +ricucci +ricley +rickerl +richemond +richelieu +richel +richardville +riccitelli +ricciardelli +ricardez +riblett +ribar +riase +rian +rhym +rhule +rhude +rhondes +rhodehamel +rhim +rheingold +rheaves +reznick +reynero +revolorio +revette +revelo +reuven +reusswig +reusser +reuhl +reuber +rettele +retka +retersdorf +resseguie +resper +resner +resides +reshard +resek +reseigh +repaci +renzullo +renuart +rentfrow +rennemeyer +renneker +renkes +renier +rendle +renburg +remsburg +remos +remmie +remmick +remlin +remkus +remfert +remey +remerez +remedies +remaly +relph +rellihan +relles +relaford +reksten +rekas +reitzes +reiten +reitema +reisin +reinmann +reinicke +reinholdt +reinheimer +reinfeld +reineman +reineking +reinartz +reimel +reik +reihe +reidling +reidler +reichenberg +reichenback +reho +rehnborg +rehnberg +rehart +regusters +regulus +reglin +reginal +reges +regensburg +regen +regas +reevers +reever +reeter +reedholm +redle +redic +redfear +reddekopp +rechel +rebick +rebholz +reazer +reauish +reath +reasinger +reas +reary +realmuto +reager +readenour +razze +rawicki +rawhoof +ravi +ravetti +ravenscraft +rava +rauf +rauelo +rattee +rattay +rattanachane +rattana +rathmanner +rathgeber +rathe +rathbum +rasul +rastogi +rastelli +rassman +rasmuson +rasely +raschko +raschilla +rasche +rasanen +rary +raring +raridon +rarey +raquel +rappenecker +rapelyea +ransier +ransberger +rannalli +ranjel +ranford +randoll +randklev +ramy +ramundo +ramu +ramsuer +ramstad +ramsbottom +ramphal +ramnarine +rammer +ramiscal +ramgel +ramesar +ramento +rambeau +ramales +ralon +rallison +rakich +raith +raiola +rainwaters +rainbott +raimundo +raimer +raimann +railing +rahl +rahama +ragusano +rafla +rafiq +rafi +raffone +raffo +rafail +raelson +raehl +raebel +radway +radue +radona +radisovich +radics +rademan +radeke +radder +radden +rackow +racitano +racina +rachar +racanello +rabuck +rabkin +rabidoux +rabello +rabel +rabara +qunnarath +quirindongo +quintel +quintano +quinlin +quinchia +quincel +quilling +quillian +quilliam +quillens +quihuiz +quiett +quicksall +quest +querta +querido +quent +quealy +quaye +quante +quamme +qualia +quaker +quagliano +quader +pytlewski +pyo +pylvainen +pyland +pych +py +puyear +puulei +puthiyamadam +putalavage +purzycki +purkerson +purcella +purce +puppe +pupa +pullon +pullie +pulgarin +pulford +pujals +puiatti +pugeda +puffett +puffenbarger +puertas +puddy +pucio +pucella +ptaszynski +psomiades +psencik +przybysz +przybycien +przedwiecki +pryzgoda +prvitt +pruskowski +prugh +prudent +prudden +provazek +protasewich +protain +proo +prondzinski +prokes +prohonic +progacz +proescher +prodan +privatsky +privateer +priore +prinzing +prinzi +printers +prigmore +priewe +prier +pribbeno +prezzia +preyor +prewer +prevett +preuitt +prepotente +prence +prekker +preisach +precythe +prebish +preato +prchlik +prazeres +prazak +prauner +prattella +prati +prat +prasser +prasomsack +praml +prabhakaran +prabel +poyneer +powroznik +powal +poux +poullion +pouliotte +pottier +potthast +potocnik +poties +poths +postuci +postal +posso +poser +portwine +portune +portaro +porrello +porreca +porrazzo +poremski +pore +porcello +popple +poppert +popowski +popovec +popke +popik +popielarczyk +popick +popi +poper +popelka +popec +poortinga +poorte +pooni +ponyah +pontin +pomerance +pomar +polynice +polyak +polverari +poltorak +polovoy +pollmann +pollio +pollinger +pollacco +polivka +polian +poleyestewa +polera +poldrack +polcovich +polakoff +polakis +poladian +pokorski +poiter +poffenroth +poetzsch +poeschl +poeschel +poepplein +poepping +poeling +podvin +podsiad +podrasky +podlas +pode +podbielski +podany +pochiba +pocchia +poalino +poaipuni +plymire +plyer +pluvoise +plungy +pluid +ploude +plosker +plomma +plohr +plocica +pliler +plevin +plessis +plesnarski +plesha +plenskofski +plecker +platenburg +platas +plansinis +plana +plamer +placencio +pizzolato +pizur +pius +piurkowski +pituch +pittillo +pitel +pitcak +piszczatowski +pisula +pishner +pirner +pirillo +pippert +pipe +pinyan +pinsonnault +pinnt +pinkelton +pinena +pinela +pineault +pinault +pilotti +pillips +pilbin +pilati +pikey +pih +piguet +pigna +pigler +pigat +pietzsch +pietrafesa +pieters +pierzchala +pierrie +pierfax +piercefield +piedmont +piedigrossi +piede +piechoski +piearcy +pidcock +picolet +pickren +pickings +picht +picco +pi +phomphithak +phommatheth +phlieger +phippen +philpotts +phillipi +philippon +philipose +philben +pherson +pherguson +phatdouang +phanthauong +phanord +pfirsch +pfendler +pfannenstein +pfahlert +pfahler +pezzuto +pezzimenti +pexton +pexsa +pewo +pevsner +petzel +petts +pettner +pettinella +petticrew +pettibon +pettes +petrov +petrosyan +petron +petrocelli +petrocco +petrizzo +petris +petrino +petricone +petralba +petrakis +petrain +petkoff +petitjean +petges +peteuil +petet +petersdorf +petchulis +pestronk +peskind +pesenti +pertsovsky +personette +persia +persampieri +persall +pers +perre +perper +perolta +perng +perler +perkoski +perish +perilloux +perey +peressini +percontino +perciballi +peral +peppas +pepitone +penzero +pentico +pent +penski +pense +penrice +penoyer +penovich +pennimpede +pennigton +pennig +penisson +pendl +pendill +penceal +penatac +penasa +penanegra +pelman +pelligrini +pelliccia +pellant +pelkowski +pelak +pein +peightell +pegler +pegelow +peffers +peetz +peelman +pee +pedrin +pedlow +pedelty +pede +peddy +peckinpaugh +peckens +pecht +pechin +peche +peccia +peca +peaker +pazik +pazderski +pazan +payno +payenda +pawluk +pawlosky +pawell +pavlikowski +pavlides +pavish +paviol +paulick +paukert +pattum +patrylak +patronella +patrich +patriarco +patraw +patierno +patient +patience +paten +pastorin +pasternack +pastano +passaro +pasqualino +paskoff +paskin +paskiewicz +pashel +pasey +pascher +pasaye +pasanen +parvis +partmann +parthemore +parshotam +parsens +parraga +paronto +paroda +parobek +parmann +parmalee +parlet +parle +parkers +pariente +paree +pardey +parde +pardall +parbs +parbol +paranada +parah +parado +pappy +pappenheim +paplow +papka +papich +papi +papallo +paolicelli +panzarella +panyik +pantle +pantera +pantalone +pansullo +panone +pano +panny +pannenbacker +pankiewicz +pankhurst +panke +pankau +pangan +panessa +pandolfi +pandiani +panchik +panchak +panakos +panak +panagakos +palubiak +palso +palowoda +palmucci +palmour +palmino +palmerino +palme +pallino +pallerino +palisi +palisano +palis +palazzola +palay +palaspas +palamara +paladini +paladin +paire +paillet +pailet +paider +paguin +pagoda +paglione +paglialunga +pageau +pagdanganan +pafundi +padiong +padberg +padarebones +padalecki +pacol +pacilio +pachter +pachew +pabelick +paaske +ozzella +owoc +owca +ovitz +overmann +overlee +overhulser +overholtzer +ovens +ovall +outhier +ouren +ouinones +ottum +ottomaniello +otteman +otsman +otinger +oszust +ostorga +ostolaza +osterhouse +osterberger +ostberg +ososki +osmers +osmera +oshey +osequera +osenkowski +oschmann +osbment +osbey +osazuwa +osayande +osako +orzell +orvin +ortwine +ortmeyer +ortelt +ortelli +orsten +orson +orrill +orphey +orndorf +orloski +orlich +orlander +orland +ork +orji +orison +orielly +orielley +ori +organek +orey +orender +ordona +ordon +ordman +orazine +oravetz +orandello +orabone +ora +or +oquenda +opyd +opteyndt +opoka +opiola +opielski +opell +opeka +onyeagu +onezne +ondeck +ona +oms +ommen +ominelli +omernik +omelia +olynger +olwin +olvey +olufson +olubunmi +olten +olshefski +olsby +olores +olma +olli +ollech +ollar +oliviera +olivarri +oligschlaeger +olheiser +olgin +olevera +olerud +olenski +olenius +oldow +oldershaw +oldenburger +olausen +olaes +okutsu +okken +okitsu +okie +okeson +okelberry +okel +ojito +ojano +ohyama +ohr +ohnstad +ohmen +ohlhauser +ohlensehlen +ohle +ohashi +ohanley +ogzewalla +ogutu +ogston +ogrodowicz +oginski +ogiamien +oger +ogarro +ofsak +oflynn +off +ofer +oelze +oehm +oehlschlager +oehl +odome +odo +odmark +odil +odgen +odermott +odair +oczon +ockman +ockleberry +ocken +ochal +ochakovsky +ocenasek +occhuizzo +ocanaz +obrein +obray +oborne +oblinski +obin +obierne +obholz +obhof +oberski +obermier +oberlies +obergfell +obenauer +obeid +obbink +obaker +oatney +oatfield +nyulassy +nwagbara +nutley +nuth +nurthen +nuntaray +nunno +nunlee +nuner +numkena +nuhfer +nugal +nuessen +nuding +nuchols +noye +noya +nowosielski +novickis +novi +novencido +novel +novad +noujaim +notoma +notice +noth +notch +notarnicola +nosworthy +nosacka +norum +northouse +nortesano +norstrand +norsingle +norrie +norr +norn +normoyle +norise +nordstrand +nordmark +nordes +norales +nopachai +noorda +nooman +nonroe +nonemaker +nonamaker +nommay +noman +nollet +nolle +noli +noice +noerr +nodland +nocon +nocks +nockels +nocella +nocek +njie +nizo +nitchman +nistendirk +nissan +nisly +nishitani +nishio +nishina +nirschl +niro +nirenberg +niquette +nip +nindorf +nincehelsor +nimz +nimura +nilmeier +nikula +nikach +nik +nightwine +night +nighman +nighbor +niffenegger +niez +niesporek +nier +nieminen +niemie +niedermeier +niederberger +nido +nicome +nicolozakes +nicolia +nicoles +nicolau +nickodem +nicklous +nickisch +nicka +nici +nibler +nibbe +nhatsavang +ngoun +neyer +newmyer +newitt +newgard +newenle +newbraugh +newbound +newand +nevue +nevison +nevis +nev +neujahr +neufer +nette +netkowicz +nethkin +nesvig +nestico +nessner +nesslein +nesset +nessel +neshem +nesbeth +neris +nerenberg +neren +nepomuceno +nemith +nelder +neitzke +neita +neiner +neimeyer +neigenfind +neiford +neidenbach +nehlsen +negreta +negrana +neenan +neddenriep +nech +neborak +nebesny +nazar +nawfel +navo +navarete +nauss +naumes +naugler +nauer +natvig +natalizio +natalie +natalia +nastasia +nasaire +naruaez +narrow +narkevicius +nardozzi +nardino +narain +napue +napenas +nap +naomi +nao +nanz +nantwi +nannen +nang +nanfito +nanes +nan +namsaly +namey +namer +namauu +namanworth +nalevanko +nalder +nakaoka +nakamatsu +nakajima +nakada +nakaahiki +naimoli +nahmias +nahhas +nagtalon +nagelkirk +nagasawa +naftel +nadine +naderman +nachbar +nacci +nabzdyk +nabor +nabavian +nabarowsky +naasz +myslim +myree +mylar +myall +muzii +muyres +muwwakkil +mutters +mutschelknaus +musulin +mustaro +mustache +musslewhite +mussell +mussa +musni +muslim +muskrat +muskopf +muskett +musitano +musilli +musielak +musguire +musgraves +muscott +muschik +muschaweck +mursch +murril +murra +muros +muri +murel +murcko +murak +muphy +muntean +mundz +mundinger +munder +mumaugh +mulville +mulrenin +mulnix +mullenaux +mullahy +mulkern +mulkerin +mulchrone +mulato +muinos +muhlstein +mugnolo +muggeo +mugge +muffett +muenzenberger +muellerleile +mudie +muckelroy +muccio +mrvan +mrkvicka +mraw +mozick +mozga +mozak +moxness +moxey +mounkes +mound +motonaga +mothershead +motayne +motayen +mosty +mostad +mossbarger +moskwa +moskop +mosena +mosen +moscoffian +moryl +morvillo +mortin +mortier +morsberger +morrey +morrales +morral +morphy +morock +morlino +morkert +morken +morisseau +morishito +morinville +morici +morgano +morgana +moreschi +morenco +morence +morella +mordeci +moratto +morath +morario +morando +moradian +morada +mootry +moomey +monville +montoto +montore +montoney +montfort +montey +montesi +monterrubio +montembeau +montayes +montalban +montaivo +monsay +monot +monopoli +monnerjahn +monkowski +monka +monjure +monios +monington +monges +monfils +moneyhun +moneaux +mondt +mondoza +mondloch +mondelli +mondale +monclova +moncher +monath +monagas +mominee +moma +molz +molstad +molsan +molnau +mollura +molleur +molla +molands +moitoza +moisa +moine +mohrlock +mohre +mohomed +mohmed +mohair +mogus +moeuy +moeser +moehr +moehle +modique +modgling +modglin +moderski +moczulski +moccasin +moayyad +moatz +mlodzianowski +mleczynski +mizwicki +mizutani +mizia +mizenko +miyataki +miyanaga +miville +mitsdarffer +mitrani +mitman +mitkowski +misuraca +miskinis +miskiewicz +miska +misik +mishulovin +mishulouin +mishkin +mishar +misenti +mischo +mischnick +mirisola +miricle +mirick +miramontez +mirafuentes +miraflores +miquel +mione +minzy +minzenmayer +minzenberger +mintken +minten +minot +minors +minn +minkowitz +minkins +minister +minic +minhas +mingioni +mingee +minert +minchow +mincer +minalga +mimozo +milward +milson +milosch +millings +millick +millare +milke +milinazzo +milin +milich +milette +mile +mildrum +mildon +milcher +milberger +mikuszewski +miklitz +mikko +mihalios +mihalick +mieth +mierzwiak +mierzwa +mierow +mierez +mierau +mielcarek +miecznikowski +miears +middlekauff +micucci +mickelberry +michno +michlich +michieli +michelstein +michelini +michalicek +michal +micciche +micalizzi +mguyen +mezzina +mezzenga +meydid +meusel +meusa +metty +mettig +mettenburg +metier +meth +metelko +mestemacher +messamore +mesplay +mespelt +mesiti +mesina +meshyock +mesenbring +meschke +merzlak +merrih +merner +merkwan +merklein +merkey +meringolo +merine +mergist +merganthaler +merckling +menzer +mensalvas +mennecke +menne +menjiva +mengwasser +menger +menedez +meneal +menck +mencia +menchen +menchavez +melzer +melve +melso +meloan +melman +mellison +mellerson +mellendorf +mellberg +melikian +melian +melgaard +meleo +melbye +melber +meja +meixelberger +meitz +meitner +meiss +meisch +meinen +meinberg +meigel +meierhofer +mehringer +mehrer +mehle +mehall +megahan +mega +mefferd +meenan +meecham +medvec +medinger +meddock +medawar +medaries +mecias +mecannic +meazell +measom +meaden +meach +mcwhinnie +mcwhinney +mcwells +mcvinney +mcvenes +mcthige +mcthay +mcshaw +mcroyal +mcrenolds +mcratt +mcquilliams +mcquesten +mcphetridge +mconnell +mcnolty +mcneish +mcnany +mcnamar +mcmullins +mcmulen +mcmenimen +mcmellen +mcmanuis +mcmanemy +mclernon +mclauren +mclamore +mckusick +mckosky +mckirryher +mckindra +mckin +mckever +mckernin +mckerlie +mckennzie +mckelvin +mckelphin +mckeague +mckaughan +mciwraith +mcilhinney +mchardy +mcgurie +mcgrevey +mcgreen +mcgohan +mcglocklin +mcglew +mcglaun +mcgibney +mcghinnis +mcgaughan +mcgathy +mcferran +mcfeely +mcfatten +mcewin +mcendarfer +mcenany +mcelvy +mcelmarry +mceathron +mceaddy +mcdugle +mcdoulett +mcdaneld +mcculloh +mccullin +mccullan +mccullagh +mccubrey +mccrobie +mccrain +mccraight +mccracker +mccrabb +mccowin +mccoubrey +mccoon +mcconomy +mcconnico +mcconahay +mccomish +mccoid +mccloude +mcclinsey +mcclenic +mcclee +mccier +mccathran +mccash +mccarvy +mccarrol +mccarraher +mccalpane +mccalebb +mccalanahan +mccade +mccadams +mcbroome +mcaskill +mcartor +mcaree +mbonu +mazzillo +mazzetti +mazuera +mazowieski +mazierski +mazella +mayze +maywalt +mayher +mawk +mavris +maushardt +mauras +mauracher +maupins +matysiak +matye +matusz +matuska +matusiewicz +matulewicz +mattock +mattingley +mattina +mattick +mattan +matskin +matros +matrisciano +matone +matonak +matlow +matkovic +matison +mathelier +matelski +mateiro +masunaga +masterton +mastalski +massini +massena +massed +massarelli +massanelli +maso +maslen +maslakowski +masincup +masilko +masher +mashall +masello +masell +maschmeyer +mascheck +maschak +mascari +masar +masak +masaitis +marxsen +maruschak +maruscak +marus +marumoto +martyr +martsolf +martorelli +martling +martischnig +martirano +martinsons +martinov +martinon +martinolli +martinet +martinell +martinel +martinat +martich +martey +martelles +martelle +marsolais +marsili +marshbanks +marshak +marseilles +marsaw +marrier +marrett +marrapodi +marrapese +marquitz +marousek +maronge +maro +marmerchant +marlene +markworth +markwardt +markuson +markou +markakis +marjenhoff +maritato +mariska +mariacher +margot +margis +marflak +marfil +marer +mardirossian +marcusen +marconis +marcisak +marcille +marchionni +marchesi +marchaland +marcet +marcelli +marca +marbley +marash +marascalco +marante +marangoni +marando +mapua +mapstone +mapa +maohu +manzur +manweiler +manuia +manto +mantifel +mantia +manteuffel +mantella +manteca +manspeaker +mansbach +manous +manoso +manolis +manocchia +mannheim +mannello +manlangit +manino +manieri +manicchio +maniar +maniaci +maniace +manglona +mangis +mangiafico +manghane +manero +manely +maneafaiga +mandril +mandolfo +mander +mandelberg +mandala +manco +mancill +mancher +manche +manaugh +manassa +manasares +manansala +manalili +mamudoski +mammo +mammenga +mamaril +mamaclay +malueg +malter +maltbia +maltas +malool +mallas +mallalieu +mallacara +malkiewicz +malinovsky +malewski +malett +maldomado +malcomson +malcik +malavet +malaver +malasky +malas +malango +malanaphy +malach +makofsky +mako +makler +maka +majuste +majied +majeske +majerowski +majera +maixner +maisto +maiocco +mailo +maile +maikoksoong +mahunik +mahrer +mahraun +maholmes +mahlke +mahli +mahfouz +maheia +mahalko +magwire +magpuri +magoun +magnone +magnetti +magliulo +magliolo +magliocco +magitt +magginson +maggert +magera +maged +mage +magbitang +magalong +magaha +maffitt +maffey +maestri +maenpaa +maenhout +maendel +mady +maduro +madu +madray +madras +madock +madlung +madler +madenford +madeau +maddaleno +macvean +macura +macrum +macrostie +macnaught +macnamee +macmurray +macmillen +maclay +mackle +mackimmie +mackedanz +maciejko +maciasz +maciak +machtley +machens +macentee +maceda +macdougald +maccauley +maccartney +macareno +macaraig +macapagal +macahilas +macadamia +mabone +mabary +maatta +maalouf +lysak +lynge +lynady +lykam +lyerla +lychwala +luzuriaga +luzinski +luxon +luvene +lutzi +luthe +luss +lushbaugh +luscavage +lurey +luquin +lupul +lupu +lupkin +lupfer +luoto +lundman +lundie +lundi +lundemo +luncsford +lumukanda +lumpp +lummis +lumantas +luloff +lukavsky +luitjens +luhring +luga +luffy +luelf +luehring +luedi +lueckenotte +luecht +luebano +ludvik +ludovici +ludkowski +luderman +luddy +lucksom +luckritz +luckadoo +lucion +luci +luchessa +luchesi +lucear +lucario +luben +luangsingotha +lozzi +lozo +loyst +loyed +lowin +lowber +lovich +lovenbury +loveh +lovec +louser +louris +lourence +loureiro +louras +lounds +loukidis +loukas +louissant +louer +louch +lotze +lotthammer +lotter +loterbauer +lotempio +lostracco +loston +lossman +loson +loskill +loske +loshe +lorz +lorion +lopuzzo +lopilato +lopera +loosey +looi +loock +lonsway +lons +longueville +longton +longknife +longin +longfield +longcor +londner +lompa +lommel +lomg +lolling +lolli +loli +lolar +lokuta +lokke +lokhmator +lojek +lois +loil +lohmeier +logero +loewe +loessberg +loeschner +loesche +loehlein +loeckle +loebs +loduca +lodense +lodeiro +locsin +locorriere +locklier +lockette +lochotzki +loche +locantore +locante +lobosco +lobingier +loats +loarca +llyod +llopis +llarenas +ljungquist +lizer +lizarda +livi +livezey +liverani +livas +liuzza +litzsinger +litza +littlehale +litter +litehiser +litecky +liskovec +liskiewicz +liskai +lisius +lisiecki +lisherness +lisanti +lipstone +lipsitz +lippi +lipovsky +lipkind +lipke +lipitz +lipa +liontos +linzie +linstrom +linssen +linsner +linsay +linnecke +linnan +linkkila +linginfelter +lingberg +lingardo +lingao +linea +lindwall +lindskog +lindline +lindesmith +lincicum +linahan +limthong +limesand +limauro +limardo +lilleberg +liljedahl +liljeberg +lilja +likio +ligons +lifshitz +liesch +lierle +lienke +lienemann +liekhus +liederbach +lieder +liechti +liebskind +liebhardt +liebelt +lie +liddie +lidbom +licor +lico +lickness +lickiss +lickey +lichtig +lichtenwalter +lichte +lichstein +lichorat +lichlyter +liccione +licalzi +librizzi +libre +librandi +libke +libert +liano +lianes +lezon +lezer +lezak +leynes +lewton +lewry +lewandowsky +levo +levites +levitch +levitas +levister +levinsky +leverentz +levendosky +leuty +leuters +leusink +leupold +leuchs +letteney +letteer +letrent +letourneaux +letofsky +letman +letko +letang +letalien +lestelle +lessin +lessenberry +lessen +lessa +lespier +lesky +leshure +leshko +lescavage +lermond +lerew +leonti +leonaggeo +lenza +lenters +lenord +lenny +lennert +lenix +lening +lengle +lengacher +lener +leneave +lencioni +lempe +lemone +lemin +lemich +lemert +lelis +lele +lekwa +lejune +leitze +leitem +leistner +leipheimer +leimkuehler +leiding +leidel +leidall +leichty +leichtman +leibenstein +leiba +lehrian +lehrfeld +legrow +legrant +legore +leghorn +legel +legallo +lefew +leemow +leebrick +ledy +leduke +ledon +ledley +ledec +ledebuhr +lecoultre +leconey +leckington +lechlak +lechel +lebovic +lebourgeois +leberman +lebario +leavelle +leasy +leah +leagjeld +leafe +leabow +lazzar +lazer +lazenson +lazenberry +layher +lawe +lavon +lavina +lavette +laverne +laverette +lavee +lavear +lavatch +lauwers +lauw +lauture +lautman +lauters +laurion +laurens +laurenceau +launt +launelez +laughbaum +lauerman +laudat +laubacher +latzka +latzig +latortue +lathon +lathim +latessa +latella +lataille +lasyone +lastovica +lasselle +lask +lashutva +laserna +lascody +lasaint +larve +laruffa +larsh +larreta +larko +largay +larey +lardydell +larde +laravie +larate +laquay +lapuz +laprairie +lapora +lapiana +lanzoni +lanzillotti +lanzillo +lanzer +lanzalotti +lanton +lantey +lansdowne +lansden +lansang +lanquist +lanosga +lanosa +laninga +langsdale +langoni +langlands +langhout +langhorst +langenheim +langehennig +laneve +landucci +landsberry +landrey +landolfo +landkamer +landham +landgrebe +landefeld +lampp +lamparski +lamorgese +lamorella +lammie +lamielle +lamela +lambourne +lambino +lamberto +lamber +lambeck +lamascolo +lamarsh +lamantagne +lamaitre +lalumiere +lallo +laliberty +lalata +lalanne +laland +lakner +laity +lahrman +lahmann +lahip +lagroon +lagoa +laginess +lagge +lagatella +lagassie +laganga +lafranca +lafosse +laffredo +laferty +lafera +lafaver +lafauci +laesser +ladyman +ladtkow +laditka +ladeau +ladas +lacouette +lacosta +lacock +lacks +lackman +lackie +lachley +lacassagne +labrune +labrode +labreque +labrec +labog +labkovsky +labita +labbie +lababit +laaker +kylish +kyhn +kwiat +kwasny +kwack +kvilhaug +kuznicki +kuzmish +kuzmanic +kuzemchak +kuttler +kutella +kutchin +kuszlyk +kusumoto +kusuma +kustes +kusinski +kushlan +kushiner +kushin +kusak +kurzyniec +kury +kurter +kurrie +kurpiel +kurkjian +kurk +kurisu +kupres +kuokkanen +kunzie +kunzel +kunis +kuning +kundrick +kundla +kundinger +kully +kullas +kulkarni +kulcona +kulak +kulacz +kuks +kuklis +kuka +kuja +kuizinas +kuhtz +kuhnle +kuhnen +kuhnemund +kuhnel +kuhens +kuharik +kufner +kufeldt +kuenstler +kuehnert +kudzma +kudasik +kuczkowski +kucinskas +kuchto +kuch +kucel +kucek +kubica +kubecka +kuban +kszaszcz +krzywicki +krzynowek +krzal +krystal +krysiak +krys +krutsch +kruss +krusen +krusemark +krupiak +krumsiek +kruml +krulish +krulik +krulicki +krueth +kruer +kruel +krows +krossen +krolikowski +krolczyk +kroetch +kriticos +krites +krisher +krinke +krienke +kriegh +krichbaum +kribbs +kretchmar +kreitzbender +kreitler +kreinbring +kreb +kreamalmeyer +kreager +krawiecz +krawetz +krasley +krapfl +kranze +kranendonk +kramper +krampe +kramm +kralicek +krajnovich +krajcer +krain +kracker +kozinski +kownacki +kown +kowing +kowallis +kowall +kowalcyk +kowalchick +kovacic +kourt +kourkoumellis +kounter +kounlavong +kounce +koulabout +koualeski +kotzur +kottsick +kottre +kotte +kotrys +kotow +kothenbeutel +kotara +kostyla +kostich +kostenko +kossmann +kossin +kossakowski +kossack +kosoff +kosmatka +koshiol +koscielak +koscho +korzenski +kortz +kortum +korthauer +korshak +korsen +korol +korns +kornprobst +kornman +kormann +korineck +korf +koretsky +korenic +korbal +koralewski +koppelmann +kopis +kopiak +kopera +kopchick +kooken +kontogianis +konon +konn +konieczko +konick +konicek +koneval +kondratowicz +koncan +konat +komsthoeft +komosinski +kommer +kominek +koman +kolthoff +kology +kolnik +kolmetz +kolling +kolkowski +kolkemeyer +kolias +kolen +kolehmainen +kolby +kolberg +kolat +kokoska +koistinen +kohnert +kohlmyer +kofutua +kofoid +kofler +kofa +koetz +koetje +koerper +koeppl +koenning +koenigstein +koenigsfeld +koelle +koegel +koebley +koczera +kochmanski +kocaj +koc +koblick +kobis +kobialka +kobernick +kobak +knost +knori +knopinski +knoepfler +knoche +knipping +knipfel +knighter +kniefel +knie +knickman +knezevic +knewtson +knestrick +knesel +kneifel +knavel +knappe +knackstedt +klusmeyer +klus +klund +klun +kloos +kloock +kloiber +klohr +kloepper +klocek +klis +klingerman +klingen +klines +klimkowicz +kliever +kliem +kleypas +klevene +kleppinger +kleparek +klepacz +klemenc +klemanski +kleinwolterin +kleinsmith +kleinke +kleinberger +kleidon +kleespies +kleese +kleekamp +kleban +klayman +klay +klaver +klarman +klarberg +klapperich +kjetland +kizewski +kiyabu +kivioja +kittner +kittelberger +kissik +kisser +kishaba +kisch +kirner +kirkpatric +kirchhofer +kirchgessner +kirchausen +kirbie +kiral +kippes +kipper +kippel +kintsel +kintop +kinseth +kinroth +kinnion +kinningham +kinnier +kinnie +kinkin +kinkella +kingshott +kingore +kingen +kinerson +kindermann +kinart +kinan +kinabrew +kimbral +killean +kilcrest +kilb +kilarjian +kiffe +kientz +kiening +kielich +kieger +kieft +kieff +kiefel +kie +khum +khu +khov +khounborine +khoun +khoo +khensovan +khela +khay +khansari +khanponaphan +khano +khammixay +khalife +khalifah +khachatoorian +keyna +kexel +kewish +kettmann +ketring +ketler +ketcheside +ket +kestle +kessner +kerzer +kerss +kerska +kershbaumer +keros +kerntke +kerkel +keri +kerger +kereluk +kerechanko +kercado +keppers +keohane +kennet +kennealy +kenely +keneally +kendrew +kenderdine +kenagy +kenady +kemner +kemmler +kemme +kemerer +kelzer +kellon +kello +kellin +kellebrew +kellaway +keliipio +kelder +kelash +keitzer +keigley +keicher +kegerries +keens +keemer +keckler +keaveny +keath +keasley +kears +keany +keanum +keamo +kealohanui +kazmi +kazmer +kazin +kazeck +kazakos +kayrouz +kaylo +kawata +kaveny +kavadias +kauphusman +kaune +kaull +kaub +katzberg +katynski +katula +katten +katsbulas +katnik +katechis +katcsmorak +katan +kastning +kastman +kassell +kassabaum +kasprak +kasica +kasack +karvonen +karvis +karpowich +karpiak +karnish +karma +karell +kareem +kardashian +karczewski +karayan +karatz +karadimas +kapusniak +kapraun +kappe +kappa +kapitula +kapfer +kapelke +kapa +kaopua +kantarian +kanta +kanoza +kannard +kanish +kaniecki +kanevsky +kaner +kandra +kanda +kanatzar +kanable +kamph +kamnik +kammes +kammerdiener +kamerad +kamelamela +kamealoha +kame +kamb +kaluzny +kalupa +kaluna +kaltved +kalter +kalscheuer +kalmus +kalmer +kalland +kalima +kalichman +kalfa +kalbaugh +kakudji +kaitz +kainoa +kailey +kaiama +kahrer +kahola +kahana +kagay +kafel +kaetzel +kaesemeyer +kaer +kaea +kaduk +kadis +kaderlik +kade +kacik +kachikian +kacerski +kaboos +kabba +kaaz +kaauamo +juza +justino +justason +jurs +jurisch +jurgensmeier +jurden +jura +jungling +julye +juluke +julock +julias +julen +jufer +juedes +jubic +juariqui +juaire +jozsa +joulwan +jostes +josten +josich +josias +joshlin +josefy +josef +jorski +jorn +jorinscay +jorda +jons +jongeling +jongebloed +jondle +jolls +johnshoy +johnico +johanek +jirjis +jiran +jimmison +jill +jewels +jevtic +jetty +jesmer +jes +jerone +jerko +jenschke +jenquin +jennins +jennelle +jenison +jendrick +jeminez +jellis +jekot +jekel +jehl +jebb +jeavons +jeanneret +jeane +jeancharles +jeanbaptise +jaworowicz +javellana +jaurigui +jauch +jastrzebski +jass +jasmine +jarzembowski +jarver +jarosh +jaroscak +jarnesky +jares +jarell +jaradat +jarad +jaquins +janulewicz +jansing +janrhett +janowicz +janosek +jannetti +jannell +janeczko +jandron +janczunski +jancik +janacek +jamwant +jamili +jakovac +jagoe +jaffy +jaeschke +jaenke +jacque +jacobos +jackovitz +jackola +jackley +jacka +jacckson +jablonsky +jabiro +jabaay +jaap +iyengar +iwanowski +iwanejko +ivon +iverslie +ivanov +ivancich +iturralde +ittner +israelsen +israels +ismay +isleib +isita +isiordia +ising +isidore +isbill +isagawa +isacs +isaacsen +irzyk +irizzary +irineo +irimata +ireton +irestone +iozzo +iozzi +iopa +intrabartolo +intihar +insko +insana +inocente +ink +inhulsen +ingole +inches +inafuku +imperatore +imgrund +imbimbo +imbier +imaino +ilse +illuzzi +illian +ilic +ilasin +ilagan +iker +ihnat +ihm +igwe +igtanloc +ifversen +iese +ieng +ienco +idemoto +icard +iborra +ible +iberg +ibbetson +ibale +iavarone +iatarola +iacovino +iacopino +iacobellis +iachetta +hysom +hymowitz +hymon +hymen +hylands +hych +huy +huval +hutmacher +huszar +hustace +hussien +huskinson +husfelt +husenaj +husch +hurtig +hurtgen +huro +hurne +hurlston +hupman +huor +hunzelman +hunsperger +hunneyman +hunckler +humphrys +humphers +humetewa +humeniuk +humenik +hulstrand +hullings +hulitt +hulick +huland +huiting +hugron +hufstedler +huffner +huezo +huettman +huereca +huenink +huelse +hueckman +hudgeons +hudach +huckstadt +huckle +huckabey +hubschmitt +hubin +hubertus +hubby +hubbel +huban +huaman +hsun +hsiang +hrapski +hoznour +hoyman +howkins +howick +howatt +hovorka +hovick +hovanesian +hounchell +houf +hotton +hottes +hotrum +hotelling +hotaki +hostoffer +hosterman +hosteller +hospkins +hospelhorn +hoscheit +hoschander +horstead +horris +hornoff +hornberg +hornandez +hornack +hormell +horikoshi +horigan +horger +hoppins +hopperstad +hopko +hootsell +hoopingarner +hookano +hooghkirk +hoofard +hoock +honsinger +honour +honnette +honnerlaw +honma +honkanen +hongach +honeycott +hondorp +honchell +honas +honanie +homsher +homestead +holze +holtorf +holthus +holster +holsonback +holom +hollinrake +hollidge +hollerman +hollendonner +hollberg +holk +holian +holes +holecz +holec +holdvogt +hokutan +hok +hoiness +hoilman +hohiudden +hohensee +hohaia +hogelin +hogatt +hogarty +hoftiezer +hoffstatter +hoffnagle +hoffeditz +hoffart +hoerl +hoefel +hodos +hodnefield +hockins +hockenbrock +hocke +hochard +hocate +hobler +hober +hoben +hobell +hobden +hoagberg +hnyda +hlavka +hladik +hladek +hitchen +hislope +hirschberg +hirneise +hirn +hirliman +hirleman +hirao +hippenstiel +hintson +hint +hinley +hinh +hinebaugh +hindson +hinderberger +himmelmann +himanga +him +hilston +hilstad +hilser +hilsendager +hilsenbeck +hilscher +hilsabeck +hilpert +hilman +hillerud +hillebrano +hillebrandt +hilland +hilgers +hilgeman +hilfiker +hildago +hilda +hilbrand +hikel +highbaugh +higgons +higgenbottom +hiersche +hierholcer +hiedeman +hiday +hickethier +hichens +hibbitt +heyduck +hewko +hevron +heuwinkel +heuvelmann +heusner +heung +heuett +heuck +hettinga +hessey +hespen +hescock +heschke +hervig +hertzel +herston +herstad +hershkop +hershelman +herschelman +herriges +herres +herrarte +herpich +hernanez +hernanadez +hernan +hermenau +hermanowicz +herkstroeter +herkenratt +herera +herendeen +herauf +henstrom +hense +henrity +hennigh +hennies +henneberry +henkey +henjes +hengl +hengen +henfling +henerson +henein +hendrik +hendricksen +hendeson +henderso +henderlite +hemon +hemmann +hemker +hemesath +hemani +helweg +helverson +helseth +helquist +helom +helmstetter +helmsing +hellweg +hellmich +helgager +helgaas +helfenbein +helems +helem +helde +heiting +heither +heisdorffer +heiro +heirendt +heinzig +heiniger +heingartner +heimlicher +heimburger +heiken +heidtman +heidrich +heidi +heidelberger +heidebrecht +heick +heibult +heholt +heggood +heeth +heers +heern +heerkes +hedtke +hedspeth +hedon +hedinger +hecke +hechinger +hebeisen +heatherton +heartsill +heagney +heafey +headly +headland +headlam +headington +heade +hazy +hazim +haza +haynam +hayertz +haydt +haxby +hawse +hawkinberry +hawe +havlin +havir +havelka +hauxwell +hautan +hausrath +hauptmann +haughn +hauersperger +hatzenbihler +hattley +hatta +hatori +hathorne +hatchitt +hatchet +hatada +hastin +hastedt +hassing +hassenger +hassanein +hasker +haskel +hashaway +hasenfuss +hasenfratz +hascup +hasas +hartwigsen +hartrum +hartquist +hartory +hartlen +hartleben +hartinger +harsin +harritt +harriage +harpham +harnos +harnist +harleman +harlee +harke +hargers +hardter +hardsock +hardnette +hardine +hardi +hardges +harderman +harde +hardan +harcar +harbater +harapat +harang +haq +hanzl +hansome +hansman +hansis +hansing +hanoa +hanninen +hannaway +hannawalt +hanmer +hankison +hanible +hanenberger +haneke +hanebutt +handzlik +handsom +handkins +handke +handin +hanback +hanawalt +hanavan +hamsik +hamonds +hammette +hammerman +hammacher +hamlette +hamiltan +hamidi +hamff +hamett +hamersly +hamers +hamdn +hamden +hamberry +hamara +hamacher +halyk +haltiwanger +halstrom +halse +halpert +halnon +hallo +halliman +hallemeyer +hallack +halima +halick +haldi +halcott +halbershtam +halajian +halaas +hakey +haitz +hairell +haims +haifa +hahnert +haggin +haggerton +haggermaker +hagey +hafferkamp +haferkamp +haeuser +haessly +haese +haerter +haering +haeder +hadvab +hadsall +hadler +hadesty +haddenham +hadaller +hacopian +hackl +hackerott +hacken +hachting +haboush +hable +habig +habibi +haberstroh +habenicht +haaz +haakenstad +haage +gyllensten +gwilt +gwillim +guzon +guzewicz +guye +gutzler +guttormson +gutsche +gutjahr +gutgesell +gutenberg +gustitus +gussow +gusmar +gushi +gushard +gurwell +gurske +gurrero +gurin +gurecki +guoan +gunzelman +gunyon +guntharp +gunstream +gungor +gundelach +gunawan +gumprecht +gumaer +gulston +gulnac +gulizio +gulbrandsen +guitano +guimares +guillebeau +guillary +guillama +guilfoos +guiggey +guiga +guieb +guidrey +guiab +guffanti +guerrini +guerrazzi +guerera +guenthur +guell +guedjian +gudmundsson +gucker +gubin +gubala +guba +guasp +guarriello +guarno +guarini +guanche +guagenti +gstohl +grzesik +grzebien +gryszowka +grymes +gruz +grustas +gruse +gruntz +grunert +grune +grunberg +grumney +grumbling +gruman +grulkey +gruiger +gruening +gruenewald +gruby +gruben +grubel +grubba +grriffin +groys +growell +grothaus +grosskreutz +groskreutz +grosclaude +groot +gronstal +gronquist +gronlund +gronitz +gronberg +grona +gromoll +grohowski +grohman +groetsch +groder +grobmyer +groberg +grivno +grivetti +grippen +grine +grimme +grills +grigoreas +griglen +griffitt +griffan +grieshop +grieshaber +griep +grieff +griebling +griblin +grev +greubel +gressmire +gresco +grenway +grensky +grennay +grenko +grenet +gremo +gremmels +gregware +gregus +greggory +gregan +greep +greenweig +greensfelder +greenhalge +greengo +greenbacker +greem +greder +greczkowski +grebner +greber +greason +gream +gravat +grauman +grauel +grassle +grasmick +grapp +granzella +granto +gransberry +granquist +granneman +granieri +granes +grandon +grandner +granai +grammont +gramble +graleski +grainey +grain +graichen +grahovac +grageda +gragas +graffney +graffagnino +grafals +gradley +gradias +gradford +grabowsky +grabonski +grabler +grabhorn +graap +gozman +goyen +goyda +gowey +gowda +govostes +govia +gour +gouldman +gouldie +gougis +gotts +gottemoeller +gottdenger +gotta +gotshall +gosvener +gostlin +gossow +gosson +gossling +gosset +gosey +gorrindo +gormanous +gormally +gorius +gorena +gorell +gordley +gordey +gorbea +goonen +goodmon +gonzelas +gonzalis +gonyou +gonsiewski +gonsar +goney +gomoran +gomoll +gollop +gollob +gollier +golik +golida +golias +golian +golia +golec +goldthorpe +goldhorn +goldhirsh +goldfuss +goldfeld +golderer +goldenstein +goldenman +golde +golbin +golackson +goicoechea +goffigan +goerlich +goepfarth +goepel +goeing +goehringer +godboldt +gochett +gochal +gocek +goblirsch +gnoza +gnegy +gnabah +gmernicki +glyn +glueckert +glowacky +glovinsky +gloston +gloshen +glos +glogowski +gloeckler +glimpse +glidwell +glesener +gleitz +gleckler +glebocki +gleber +glazner +glazebrook +glaves +glavan +glasby +gladysiewski +gladle +gladhart +gjeltema +givant +gius +giulioli +gitt +girres +girbach +girand +gip +giottonini +giorno +gionta +giombetti +gioffre +gioe +ginzel +ginsel +ginocchio +ginnis +ginard +gimse +gilzow +gilton +gilstad +gilomen +gilner +gilly +gillming +gillion +gillich +gillice +gille +giliberto +gilhuly +gilgan +gildemeister +gilcris +gigger +giffith +giffee +giff +gietz +giesel +giera +gibeaut +gibala +giasson +giarusso +giarrano +giaquinta +giannavola +giandomenico +gianandrea +giallorenzo +giacherio +giachelli +giacchi +ghebremicael +gezalyan +getzschman +getzlaff +gettens +gettelman +gestether +gesing +gesamondo +gerz +gerwin +gerveler +gertsema +gerthung +gerten +gertel +gerteisen +gerstenberger +gershkovich +gerney +germy +germana +gerich +gerdiman +gerckens +gerbig +georghiou +geoly +gentleman +gentges +gentelia +gensel +geniesse +genia +generalao +gemmiti +geml +gelner +gellings +gellinger +gelino +gelhar +gelfond +gelerter +gelder +gelbart +geisinsky +gehrki +gehm +geen +gederman +gede +gearn +geant +gazzara +gazitano +gazdik +gayanilo +gawthorp +gavit +gaviglia +gavett +gavan +gavagan +gausman +gaukroger +gaufusi +gaudier +gaudett +gauci +gatzow +gatta +gatheright +gatesy +gatesman +gastelo +gaschke +garwin +garter +gartenmayer +gartenhaus +garsjo +garroutte +garrettson +garrean +garre +garnham +garnache +garmire +garmen +garlett +garkow +garito +garinger +gargan +garcon +gapp +gantzler +gantvoort +gansert +gansen +ganns +gannetti +ganin +ganigan +gamotan +gammond +gamer +gamello +gambrill +gambold +gambee +gambardella +galven +galvani +galuszka +galuppo +galmore +gallusser +gallodoro +gallington +galleta +gallegoz +gallaugher +gallargo +galkin +galipo +galinis +galimberti +galic +galbiso +galathe +galassini +galanti +galano +galagher +gajeski +gajardo +gaiters +gails +gailliard +gaffer +gafanha +gaer +gadewoltz +gaden +gackle +gabrial +gabrenas +gabossi +gables +gabl +gabhart +gabeline +gabbamonte +fyler +fykes +fusner +fusillo +fushimi +fus +furtak +furblur +fundora +funderberg +fumero +fuls +fulham +fulco +fujimura +fujikake +fugueroa +fuger +fugatt +fuerstenau +fuerbringer +frymoyer +frymier +frymark +frutiger +frushour +fruman +fruin +frugoli +fruehauf +froyd +frosto +frontis +frontiero +fronick +froneberger +frohberg +froebe +frobish +frittz +fritchley +fritchey +frisinger +frisell +frija +friehauf +friedenthal +friebel +freundlich +fret +frerich +frens +freker +freiseis +freimark +freilino +freiheit +freiermuth +freidin +freemantle +freeh +freedlander +freeders +freeburger +fredregill +frederique +freckleton +frecker +frazzano +frauenfelder +frattali +fratta +fratrick +fratercangelo +frasso +frashure +fraschilla +franzman +franzini +franza +franty +fransisco +franpton +frankson +frankland +frankiewicz +frankart +frangione +franchini +francescone +fralic +fraklin +frair +fragosa +fradkin +fracasso +foyer +foxhoven +fowlie +fowley +fowlar +fower +foute +foussell +fouquette +founds +fougner +fosmire +fosher +fosbrook +fortun +forss +forsmann +forslin +forsee +forpahl +fornili +fornier +fornaro +formichelli +formaggioni +forkum +forkell +foriest +forgrave +foresta +forejt +foreback +forcum +forcht +forchione +forch +forberg +forbach +fonua +fonteno +fonteneau +fongvongsa +fondriest +fondaw +fonck +fohl +foglio +foersterling +foddrell +focke +flugum +flucas +fluaitt +floss +florendo +floras +floer +flockhart +flockerzi +floan +flin +fliger +flieller +fleurilus +flenord +fleniken +flenaugh +flemmon +flemm +fleites +fleischner +fleckles +flechas +flauding +flatter +flato +flanner +flanegan +flammang +flakne +flaker +flagiello +fladung +flachs +flaa +fiwck +fitzrandolph +fitzherbert +fitzgerrel +fitsgerald +fisser +fishell +fischl +fischhaber +fischel +fiscella +fiscel +firpi +firenze +fiorilli +fiorica +finwall +finklestein +fingerson +fingerman +fineout +finello +finell +findlen +finco +filthaut +filpus +filo +filla +fili +fil +figiel +figgeurs +figert +fietek +fiest +fieser +fiesel +fickbohm +ficht +ficchi +fialho +fial +feyh +feyereisen +feuss +feusier +fette +festini +fest +fesko +fertik +ferrusi +ferrone +ferrio +ferringo +ferries +ferrie +ferrett +ferrato +ferrario +ferraraccio +ferranto +ferr +ferouz +fernette +fernanders +ferkel +feret +ferer +ferenz +fenrich +fenniman +fennig +fenison +fendrick +fendlason +fend +fenbert +felver +feltham +felonia +felling +fellezs +felizardo +felio +felicien +felicia +felicano +feliberty +feistner +feister +feintuch +feilds +feighner +feierman +fehrs +fegueroa +fegles +fegette +feerick +feela +feehly +feehery +fedorko +fedie +fedezko +fedewa +federkeil +fecto +fechtig +fecher +featheroff +feagans +fazzari +faycurry +fawson +fawler +favuzzi +favro +favian +favazza +fausey +faus +faupel +fattore +fatora +fathy +fathree +fatheree +fassinger +faske +farug +fars +farnese +farkus +farinha +faren +faraimo +farahkhan +faragher +fanti +fanter +fantazia +fantauzzo +fansher +fandino +fanatia +famageltto +falzon +fallow +fallenstein +falencki +falcioni +falci +failey +failde +faigley +faidley +fahrni +fahrlander +fahrenthold +fahning +fago +fagle +fagerquist +fagerlund +fageraes +facello +ezzelle +eyton +eyestone +exton +exantus +evjen +evilsizor +evertt +evertsen +eversmeyer +everroad +everline +everet +evartt +evansky +evancho +eull +ettman +ettienne +ettel +etringer +eth +estronza +estrem +estrade +estok +estle +estimable +estess +estella +estanislau +essix +essency +esquinaldo +espiridion +espinel +esperon +espenlaub +espejel +esparsen +esmont +esmon +esmay +esmaili +eskins +eskind +eshmon +esfahani +escober +escanlar +erz +ersery +eros +ernster +erlebach +eriks +erichson +erger +eredia +erdos +ercole +ercolano +erazmus +eraso +epel +eovaldi +ensz +ensel +enock +ennes +enis +engnath +engfer +engelmeyer +engelberg +engard +endris +endreson +endorf +endersbe +ende +encino +emshwiller +empasis +emore +emmond +emiliano +emerling +emenaha +emde +emberling +emano +elway +elvey +eltringham +elter +elsken +elsheimer +elsaesser +elrick +elreda +elpert +elnicki +elmes +ellsmore +ellrod +ello +ellinghuysen +ellingham +ellingburg +elles +ellenbogen +elleby +ellcessor +ellamar +elke +elijah +eligio +elieff +elicker +elian +eliades +elhadi +elfenbein +elenbaas +eldringhoff +eld +elbie +eke +ekas +eisnaugle +eisiminger +eisenhaver +eisenhardt +eisenberger +eiselein +einwalter +eighmey +eidemiller +eickmeyer +eichstedt +eichenberg +eichberg +eibel +ehrisman +ehrenzeller +ehman +ehli +ehl +eheler +egwuohua +eglin +egler +egersdorf +egelston +efthimiou +eelkema +edu +edridge +edland +edenholm +edem +economou +eckmann +eckblad +eckardt +echternach +echter +ebrahimi +eberst +ebershoff +eberheart +ebbett +eayrs +eavey +eatough +eastling +eastern +easterlin +earthly +earing +eakles +eagleman +eacho +eaby +dzwonkowski +dzurnak +dzurilla +dziuba +dzinski +dziewanowski +dziekan +dyrstad +dydo +dvorsky +duyer +duttinger +dutchess +duston +dush +durward +dursteler +durpee +durough +durniok +durnan +durisseau +duris +duriga +durda +durboraw +dura +duquaine +duplessy +duplanti +dupes +duperre +dupaski +duos +dunshie +dunphe +dunnell +dunkinson +dunkerley +dunkan +dunemann +dunderman +duncans +dunahoe +dumouchel +dummett +dumeny +dumbar +dumar +dulan +dukett +duk +duis +duguette +dugre +dufrain +dufauchard +duesterhaus +duesterback +duerst +duenwald +dudzik +dudycha +dudenbostel +dudden +ducklow +duckey +duchnowski +duchane +duceman +dubovsky +dubler +duber +dubel +dubbert +drutman +drummey +drumbore +droy +drow +droubay +drorbaugh +dropinski +dronko +dronick +droggitis +drissel +driscol +drinen +driessen +driedric +dreuitt +drenning +drelick +drejka +dreiss +drebes +dratch +drakulic +drakos +draime +dragovich +dragich +draggett +dragg +drabicki +doyscher +doxbeck +downy +downhour +dowland +dowker +dowds +dowda +douyette +douthett +doughman +dougharty +douga +doudna +dotolo +dossman +dosh +dorsinville +dorsay +dorrill +dorosh +dornbrook +dorlando +dorio +dorie +dorcas +doporto +dopita +doorley +dooner +donton +dono +donnerberg +donnalley +donlyuk +donkle +donilon +doniger +donigan +doniel +doncaster +donatich +donaher +donah +donaghue +donaby +domowicz +domitrovich +dominowski +dominiak +domenice +dombek +domagalski +domagall +dolsen +dolmajian +dolley +dolinski +dolhun +dolfi +dolecek +dokovic +dok +dohrn +doerksen +doelger +doeberling +dody +dodimead +dodgion +dockum +dockerty +dochterman +dobrzykowski +dobrynski +dobrushin +dobrosky +dobrinin +dobison +dobbyn +dobbe +dlugos +ditucci +dittus +dittmann +dito +ditmars +disotell +disorda +disharoon +dischner +discala +disalvi +dirth +dirr +dirienzo +dipolito +dipilato +dipietrantoni +dipanfilo +dioneff +diomede +dinuzzo +dintino +dinsmoor +dinsdale +dinos +dinora +dinnendahl +dinkle +dininger +dingillo +dingie +dingell +dimitry +dimicco +dimezza +dimarzio +dimario +dimariano +dimanche +dilucca +dillis +dilliner +dillin +dillashaw +dilillo +dilg +dilella +diker +digiouanni +digeorgio +difronzo +difrancisco +dietterick +diestler +dies +dierkes +diekema +diederichs +dieball +didway +didonatis +didomizio +didio +didato +dicosmo +dicorpo +dicocco +diclaudio +dichiaro +dible +diblase +dibiasi +dibbern +diano +diani +diangelis +diamantopoulo +diaco +dhruva +dheel +dharas +dezalia +deyak +deya +dewolff +dewick +dewese +dewater +devot +devost +devis +devilliers +devery +deveny +devenny +develice +devasier +devarona +devanski +devai +deus +dettorre +dettor +detrolio +detrich +detillion +deteso +determann +deterline +deterding +detchon +detaeye +destina +destefani +desruisseaux +desormeau +desonia +desmore +desko +desimas +desher +deshayes +deschene +desantos +desando +desamparo +desalvatore +derx +deruiter +derosie +derogatis +derman +derkas +derivan +derington +derienzo +derian +dereus +derenzi +derentis +derderian +derastel +deraps +dequinzio +deprato +depont +depiro +depierro +depeyster +deonarine +deocampo +denzine +denwood +denos +denooyer +denomme +denoia +dennig +denjen +denisco +denick +denholm +denfip +deneui +denetclaw +denet +denery +demuzio +demske +dempewolf +demorrett +demorizi +demny +demiter +demilt +demik +demien +demianczyk +demetrakos +demer +dembek +demauro +demase +demart +demarino +deluzio +delullo +delucian +deltufo +deltora +delsoin +delsavio +delross +delperdang +delpaggio +delosier +delonge +delonais +deloge +delmendo +dellwo +dellum +dellosso +delliveneri +dellefave +dellarose +dellapenta +dellamonica +delgoda +delekta +delegado +deldonno +delco +delce +delbene +delavergne +delashmutt +delapuente +delaporte +delana +delallo +delahay +delagol +delagado +delabarre +dekruif +dekoning +dekeyzer +dejoseph +dejardin +dejarden +deister +deigado +deichmann +deichman +dehm +dehlinger +dehl +dehetre +dehaney +dehaas +degrood +degrass +degrande +degooyer +degnim +deglandon +degenfelder +degenaro +degear +degagne +defrang +defrain +defosset +defosse +defont +defir +defayette +deerdoff +deely +dedrickson +dednam +dederich +decurtis +decourt +decourcey +decock +declerk +decius +dechavez +dech +december +decarvalho +decarmine +decaire +decaen +debrosse +debreto +debrecht +debrae +debore +debien +debenedictis +debarge +debardelaben +debaets +deasis +dears +dearruda +dearring +dearinger +dearin +dearcos +deanes +deakyne +dazzi +dazi +dayao +dawkin +davolt +davise +davine +davidsmeyer +davidowicz +davaz +davari +davance +dauster +dause +daulerio +daughters +daugereau +daubney +datamphay +dasouza +daskal +dashno +dashne +dasen +daschofsky +dasch +darwich +darvish +darveau +darting +darthard +darron +daron +darnstaedt +darmody +darmiento +darington +dariano +daria +dardenne +darakjian +danyow +dannis +danniels +danni +dannelly +dannelley +dannatt +daniely +dangelis +danese +daner +dandoy +danco +danca +danas +damrell +damone +damms +damme +dalporto +daloisio +dalmata +dallison +dallam +dallago +dalegowski +dalecki +daku +daking +daken +dajer +dajani +daidone +dahlka +dagres +dago +dager +dafonte +dada +daczewitz +dach +czysz +czubakowski +czartoryski +czapiewski +cyrnek +cyree +cygrymus +cwikla +cwalinski +cutrera +cuther +cutchember +cushner +cusenza +curreri +curlis +curio +curimao +curia +curey +cunio +cumoletti +cumberlander +culpit +culloton +cuffy +cuffman +cuddington +cucuta +cucufate +cubine +cubano +cuadras +csuhta +crutison +cruther +crusinberry +crummell +crumly +cruff +crozat +crossmon +crosiar +crookshank +crookes +cronoble +croner +cromeans +crolley +crofutt +crockette +crivelli +crivaro +cristino +criste +crissey +crisalli +criley +cribari +crewe +creselious +crescenti +crepps +crenwelge +creitz +cregin +cregger +creekbaum +credi +crebs +crayford +cravy +cravalho +crauswell +crathers +crask +crapp +crape +crapanzano +cranson +crans +crannell +crandal +craigwell +craigmyle +crafter +cradler +coxwell +coxen +cowlin +covitz +coventon +coutre +coutinho +coutermarsh +courton +courseault +courrege +courey +coulon +coulibaly +couden +coton +coste +cossett +cosman +cosma +coslow +cosico +coshow +corwell +corvo +corujo +cortopassi +cortinez +cortijo +corrio +corrington +corriher +corridan +corrga +correla +corping +corpe +coroniti +cornn +cornmesser +cornella +corneille +corkron +corf +coreen +cordiero +cordew +cordenas +corcuera +corbley +coray +coraham +copstead +copsey +copping +coppes +copney +coopper +cooperider +coopage +coonse +cookerly +conwright +contreraz +continenza +contes +consuelo +constine +constanzo +constantin +constancio +consentino +conradt +conour +conoley +conney +connerat +conlogue +conforme +confalone +coneway +condroski +condina +condiff +condi +conchado +conch +concatelli +conaughty +commerford +comissiong +cominski +cominotti +comar +colschen +colpi +colpa +colony +collons +collon +collicott +collea +collari +colker +colier +colesar +colemen +colecchi +colcher +colchado +coklow +cokel +cohick +cofone +coffinberger +coffell +coffel +codispot +codilla +cocroft +cockerhan +cochren +cochenour +cobetto +cobar +coalter +clyman +cluver +clusky +clunes +clukies +clowerd +clouatre +clossin +cloos +clokey +clinkinbeard +cliffton +clibon +clevland +cleverley +clesca +clerc +clemenza +cleath +cleasby +cleal +clavijo +clater +claros +claghorn +clacher +clabo +civil +cittadini +citroni +cissel +cisar +cirella +circelli +ciprian +cipcic +ciotta +cinnamond +cinkan +cinco +cinar +cimorelli +ciminera +cilenti +cihak +cieloszyk +cidre +cicen +cicali +cibik +ciavardini +cianfrani +cianciola +ciallella +ciaffone +chyle +chy +churchfield +churape +chuma +chulla +chueng +chubicks +chrystal +chrosniak +chriswell +christopoulos +christi +christerson +christenbury +chowenhill +chowansky +choudhary +chor +chopton +cholula +chollett +choinski +chocron +chockley +chochrek +choates +chlebus +chiz +chitrik +chisman +chiphe +chiola +chiodi +chinault +chime +chimal +chilsom +chillo +chicles +chicharello +chicalace +chiariello +chiappari +chhan +chham +chez +chevis +cheverton +cheverez +cheu +chessman +cherubini +cherrin +cheroki +cherny +chernich +chernesky +cheranichit +cheeseboro +chech +cheam +chavoustie +chavies +chaumont +chaulklin +chatampaya +chasson +chassaniol +chary +charvet +charry +chari +chararria +chappo +chappa +chapmond +chaplik +chapen +chanthasene +chanler +chanco +chamul +champaco +chalupa +challinor +challa +chalender +chaknis +chakkalakal +chaisty +chaddick +chaboya +chaberek +chabbez +cevera +cerverizzo +cerventez +cervantsz +cerva +cerroni +cerri +cerrello +cerone +cernuto +cernota +cerminaro +cerf +ceretti +cerceo +cerasuolo +ceraso +cerasi +cerar +ceraos +cepin +cepas +centi +cendana +cendan +cellar +celeya +ceder +cecot +cazel +cazaree +cawon +cawein +cavrak +caveness +cavalaris +cavaiani +cauterucci +caughorn +caughell +cauazos +catts +cattanach +catrini +catozzi +catignani +catholic +catherson +catherine +cathell +catello +catchpole +catanzano +casuscelli +castros +castrey +castongvay +castillion +castelum +castells +castellion +cassler +cassino +cassilano +cassiano +cassetty +cassens +cassells +cassavaugh +cassagne +cassa +casolary +casmore +casley +caska +casis +casini +cashour +cashmer +cashett +casement +casciato +casavez +casasola +casarz +casar +casana +casales +carvill +carvallo +cartner +carrousal +carrizo +carretta +carrethers +carrao +carran +carpen +caroselli +carolla +carnillo +carnegia +carmin +carmickel +carlini +carland +carknard +carioscia +carina +carideo +carfrey +cardinalli +cardiff +cardazone +carbonella +carbery +carbee +caravetta +caravati +caramelo +caramella +caraig +carabine +cara +capristo +capri +cappellini +caporiccio +capicotto +capestro +capener +capek +capas +capaccino +caoagdan +canwell +cantella +cantakis +canson +cansino +cansibog +cannistraro +canner +caneza +caney +caneva +canetta +canestraro +candozo +candlish +candell +canant +canalez +can +camus +campora +campobasso +campble +campau +campain +camlin +camisa +camerino +camerano +camenisch +camelin +cameli +cambia +camareno +camancho +camack +calvan +calumag +caltagirone +calowell +callnan +callington +calliham +calligaro +caller +callar +callam +callagy +callagher +callado +caliman +caldron +caldoron +caldarera +calcao +calaf +cakmak +cajulus +cajka +caivano +caires +caire +caiozzo +cains +cainne +caimi +cagnon +cagno +cagan +caffentzis +cafasso +caez +caddigan +caddel +cacatian +cabugos +cabon +cabarcas +cabanillas +cabanela +cabam +bywaters +bystron +byse +byous +bynun +byczek +bybel +byal +buzza +buzo +buzis +buvinghausen +butzke +buttross +buttray +buttke +buttitta +butenhoff +busscher +busk +busitzky +bushweller +bushrod +bushfield +buschur +busacca +burzlaff +burvine +burtts +burtschi +burtell +bursik +burrs +burras +burows +burnie +burnash +burmside +burm +burly +burlson +burlile +burlaza +burlage +burkstrand +burkly +burklow +burkin +burian +burgs +burgoa +burgey +burgees +burfeind +burdzel +burchinal +burbine +buratti +buonassisi +buonaiuto +buntz +bunts +buntenbach +bunson +bunda +bumpaus +bumbalo +bumbaca +bullivant +bullin +bulisco +bulik +buley +bulat +bukowiecki +builes +buhrke +buhlig +bugh +buffone +buenviaje +bueler +buehlman +budzik +budy +budrovich +budish +budiao +budhu +buden +buddy +bud +buczko +bucknor +buckmeon +buckless +buckett +buckaloo +buchwalter +buchmiller +buchmeier +buchite +buchinsky +bucheli +buchann +buchal +bucaro +bubolz +buboltz +bubert +brzezicki +brzenk +brys +bryngelson +bryla +bryington +bruzewski +bruzek +brustmann +brusser +bruscato +brunzel +brunkhardt +brunick +brunetta +brunecz +bruna +brumaghim +bruker +bruin +brugliera +bruffee +brueske +bruegger +bruechert +bruckmeier +brroks +brozeski +broyle +brownlie +browman +broudy +brothen +broski +brosi +brookskennedy +brookie +bronston +broncheau +brommer +brola +broitzman +brohn +broglio +brogley +broers +broering +brodtmann +brodis +brodine +brodfuehrer +brodess +brodes +brockus +brockenberry +brociner +brochet +broadnay +brizeno +britts +brinley +brinkhaus +brinius +brininger +bringer +brindza +brindger +brinar +brilowski +brigner +brightharp +brighter +brienza +brienen +bridenbecker +brickson +breznay +brezinka +breyers +brevell +brettmann +bretos +bresser +brentz +brennick +brening +brendeland +brem +breiter +breihan +breidigan +bredlow +bredin +breckley +breckenstein +brebes +breaz +breaud +breath +bready +brazie +braunwarth +braunberger +brauman +braucks +brath +brasure +brasswell +brasseux +braskett +brasby +brantingham +bransfield +branseum +brano +brangers +brang +branes +brandstrom +brandorff +brandom +brandenburger +branck +brancaccio +bramuchi +bramlitt +bramel +bramasco +bram +brakke +brak +braget +bragado +brafman +bradmon +bradick +bradey +bradd +bracklin +brackbill +brabazon +braband +bozych +bozic +boyl +boyens +boyde +boyas +bowlick +bowle +bowcock +bouy +bouvia +bousum +bourraine +bourgon +bourbois +bouquin +boumthavee +boulger +boulch +boulais +boughn +bouges +boudle +boudjouk +boucouvalas +boucaud +bottrell +bottoni +bottella +bothner +botellio +boswink +bostow +bostain +bosson +bossier +bossey +bosold +boslet +boshnack +boshell +bosheers +bosefski +borza +boryszewski +borysewicz +borson +borseth +borroto +borrigo +borriello +borrello +borowicz +borovetz +borovec +borgelt +bordinger +bordas +bord +borcuk +borcher +borbridge +boothman +bookhardt +boocock +bonwell +bonsal +bonnoitt +bonnifield +bonnick +bonnel +bonker +bonita +boning +bonifield +boniface +bongle +bongivengo +bongio +bonge +bonett +bonebright +bondroff +bondoc +bonda +boncella +bonaventure +bonalumi +bonadona +bonaccorso +bonaccorsi +bompiani +bommer +bolvin +boluda +bolorin +bolon +bollom +bollettino +bolk +boliver +boline +bolieu +boliek +boleyn +boldul +boldery +bolante +bokor +boklund +bojanowski +boisuert +boislard +bohren +bohmann +bohlinger +bohart +boham +bogust +bogh +bogatay +bogany +boeving +boeshore +boesenberg +boerstler +boers +boenig +boelsche +boelke +boekhout +boekelman +boehner +boeckmann +bodwin +bodrey +bodman +bodiroga +bodford +bodensteiner +bodenheimer +boddorf +boddeker +bockskopf +bocchi +bocage +bobola +bobko +boben +boardway +boards +blyzes +blumenkranz +bloomgren +blong +blondeau +blommel +blois +bloem +blocklinger +blisset +blimka +bliler +bliese +blice +bleyer +blette +blesh +blender +blemel +bleifus +blechinger +bleattler +blazosky +blatti +blatteau +blatnik +blatchford +blankship +blankschan +blandy +blandino +blakeway +blakeborough +blaho +blackstar +blackgoat +blachly +blacher +blach +bizcassa +bizarro +bivings +bitsuie +bitsui +bitsko +bistodeau +bister +bisonette +bishel +bisconer +biscocho +biscahall +bisby +bisagna +birts +birnell +birkline +birkenhead +birenbaum +birckett +birckbichler +birchwood +biorkman +bimler +bilous +billinghurst +billey +billeter +billegas +billard +bilkiss +bile +bilcik +bigos +bignall +bigio +biggio +bigas +biffer +biffar +biesinger +bieschke +bierbrauer +bienfang +biehn +biederwolf +bieberle +biebel +bidon +bidner +bidgood +bidez +biderman +bickleman +bicklein +bicket +bicker +bickart +bichel +biard +bialik +bialczyk +bezner +beyrer +beylotte +beyerl +bevly +beulah +beul +betzel +betterman +betsinger +betschman +betita +bethurum +bethoney +beth +beston +besso +bessick +besio +beshear +besarra +bervig +bertus +bertrano +bertovich +bertolasio +bertog +bertinetti +bertelle +bertel +bertch +bertagnoli +berschauer +bersamin +bers +berri +berretti +berretta +berret +bernucho +bernt +bernstrom +berno +bernick +bernice +bernhagen +bernardoni +bernabo +bermers +berlove +berlinghof +berkhalter +berisha +bergseng +bergreen +bergholz +bergert +berez +beresnyak +berdes +beras +benzschawel +benzi +benya +benwell +benty +bentrup +bentele +benser +bennison +bennink +bennerson +bennerman +benitone +beniquez +benik +bengelsdorf +benell +beneduce +benecke +benear +bendzans +bendy +bendt +bendorf +bendolph +bendlage +benders +bendavid +benck +benassi +benari +benage +benadom +benabides +bembury +bemboom +bemberry +belyoussian +belveal +belsey +belongie +belone +belon +beloff +belluomini +belloma +bellmay +bellish +bellisario +bellingham +bellflower +bellfleur +bellerdine +bellemy +bellazer +belkowski +belich +belfiglio +beley +beldin +belback +belarde +belangia +bel +bekerman +beker +bek +beiswanger +beirise +behun +behning +behmer +behlen +begor +begg +beetley +bees +beermudez +beerling +beeck +bedsaul +bedoka +bednorz +becklund +beckerdite +beckendorf +beckenbach +bechthold +bechman +becherer +beavin +beauprez +beaumier +beauliev +beaugard +beaufait +beaudrie +beathe +beasmore +bearup +bearfield +beahn +beadnell +beadell +bazzel +bazzanella +bazelais +bazata +bazarte +baza +bayle +bayete +bawa +bavzee +bavard +bausley +baunleuang +baumgard +baumbusch +bauknight +baugham +bauers +bauermeister +baublitz +battistini +battiato +battiata +batters +battaglini +bathurst +bathrick +batel +batalona +basua +bastura +bastress +bastilla +bastidos +bastic +basten +bastedo +bastain +bassil +basset +bashinelli +basbas +baruth +barufaldi +bartylla +barts +bartrop +bartosz +bartosiak +bartolotto +bartolet +bartoldus +bartnett +bartlone +barthen +barthelman +bartenfield +bartczak +barsotti +barrocas +barrile +barrieau +barrer +barreira +barranger +barranca +barquera +barnscater +barnfield +barncastle +barnathan +barnar +barlip +barkins +barkenhagen +barkalow +barimah +baridon +barhydt +bargar +barff +bardeen +barcelona +barby +barbini +barbiere +barbetta +barberis +barberian +barban +barasch +baranow +baranovic +barajos +baraby +bapties +banyas +bantug +bantin +bantillan +bantay +bansbach +bankemper +banis +banick +banecker +bandin +bandemer +bandanza +bance +banales +bammon +bamfield +bambacigno +bambaci +balyeat +balvanz +balsano +balmores +ballreich +balloon +ballmer +ballintyn +balley +balletta +balhorn +balford +balezentis +baldrey +baldiviez +balder +baldassarre +baldacchino +balchunas +balceiro +balbin +balaz +balaski +balancia +balagtas +bakst +bakkum +bakios +bakeley +bajorek +bajdas +baizer +baitg +baise +bailony +baillio +baille +baiera +bahun +bah +bagne +bagi +baghdasarian +bageant +bagdonas +baetz +baeringer +badget +badeau +baddeley +bacy +backey +backenstose +backen +backe +backbone +baccouche +bacco +bacarella +babitsch +babena +babbin +babbel +babat +bab +azzaro +azoulay +azimi +azer +aylsworth +ayarza +axline +axelsen +awtrey +avola +avie +avetisyan +averyt +aveado +avanzato +avala +auyer +auxilien +auwarter +aurges +aures +auprey +aupperle +aunkst +aumich +aument +aumavae +aulbach +aukes +augspurger +auffrey +attridge +attkisson +attinger +atta +aton +atoe +atiyeh +athmann +athay +atchity +atallah +atala +astwood +astolfi +astol +asters +aspegren +asma +ashpole +ashfield +ashely +asevedo +aschmann +asar +asaeli +arzilli +arundel +arujo +aruiso +arturo +artry +artison +artinian +arrizaga +arriazola +arpino +arons +aronhalt +arntt +arniotes +arnholtz +arneberg +armillei +armijos +arm +arleth +arlen +arlan +arkins +arjes +arizzi +arizola +ariyoshi +aring +arimoto +arigo +arietta +arie +aridas +aricas +arhelger +arhart +arguillo +arguellez +argote +argenal +arenos +arenivas +arenivar +arendz +arendsee +arebela +ardizzone +ardion +ardery +ardd +ardan +arcino +arcilla +arcea +arcaute +arcangel +arcadipane +arbry +araque +aramini +arambuia +aragus +aragundi +aragoni +aragaki +aradanas +arabie +arabia +ar +apyuan +apuzzi +apruzzese +applewhaite +applebury +appeling +appelgate +apling +apking +apela +aparo +apa +aoay +anyan +antrican +antonopoulos +antonis +antonich +antonaccio +antona +antolik +antinore +anteby +anslinger +ansbacher +ansara +annette +ankersen +anis +aniol +aningalan +aniello +anichini +anibal +angviano +anglum +angley +angerer +angeloro +angeloff +angelocci +anestos +anerton +anelli +andzulis +andruss +andrian +andreatta +andonian +andon +anderon +andebe +andary +ancy +ancell +anasagasti +anakalea +anagnostou +amyotte +amtower +amstein +amsinger +amsili +amphy +amonette +amolsch +amistoso +amisano +amidei +amesquieto +amert +amento +ameling +amelang +ambroz +ambrosone +ambres +amble +amberson +ambeau +amati +amargo +amancio +amailla +amadi +alzugaray +alvorez +alverest +alven +alvarengo +alvalle +alvacado +alummoottil +alukonis +alu +altwies +altum +altringer +altop +altheimer +altew +alterio +alsman +alsdon +alsbrooks +alsandor +alrich +alrais +almario +allor +allocca +allnutt +allmand +allhands +allgaeuer +allessi +allenbrand +allemond +allegre +allcorn +allbones +allamong +allaband +algeo +alge +alfreds +alfera +alexzander +alexiou +alexaki +alexader +alevedo +alerte +alekna +aleizar +alegi +alegar +aleff +alecca +aldrege +aldi +aldarondo +alcosiba +alcombright +alce +alcaoa +alcaide +albriton +albrekht +albracht +alberthal +alberro +alberda +alattar +alar +alampi +alamos +alaibilla +alacano +akuchie +akram +akinyooye +akiereisen +aimbez +ailstock +ahyou +ahrenholtz +ahonen +ahmau +ahlstedt +ahle +ahlborn +aharonof +aharon +ahal +aguino +aguillera +aguiler +agueda +aguallo +agrios +agriesti +agricola +agreste +agrela +agre +agney +agne +agliam +agerton +afoa +aflalo +affelt +affagato +afan +aemmer +adzhabakyan +ady +adside +adrovel +adrid +adonis +adleman +adle +adjutant +adesso +adels +addo +adamiak +acron +ackins +ackies +achziger +achzet +achekian +ache +acfalle +accetturo +abubakr +abson +abramowski +aboytes +aboulissan +abling +ablin +ablang +abke +abetrani +abernatha +abela +abeb +abdin +abdelwahed +abdella +abdeldayen +abdel +abbinanti +abbay +abbadessa +abaya +abaunza +abatti +aasby +aaland +aaby +zysett +zwinger +zweier +zuziak +zusman +zuro +zurkus +zurheide +zurawik +zuniega +zumot +zullig +zukowsky +zukof +zukerman +zuclich +zuchara +zubrzycki +zuberbuhler +zuazo +zsohar +zschoche +zrimsek +zoutte +zotos +zorzi +zoroiwchak +zorens +zoquier +zonia +zone +zondlo +zomora +zombro +zombory +zombo +zomberg +zolman +zollar +zolinski +zolinas +zoellick +zoelle +zoebisch +zodrow +zoda +zobell +zmiejko +zlotnick +zlatkin +ziyad +ziter +zita +zissler +zisser +zirin +zircher +zipse +zipkin +zipay +zinni +zinkl +zimit +zimba +ziman +ziler +zilahi +ziko +zihal +zieske +zieser +zientara +ziencina +zielonko +ziek +ziehm +ziego +ziegenhagen +ziedan +ziebold +zidzik +zickuhr +zicari +zibert +zibelli +ziak +ziadie +zezima +zeyadeh +zeto +zetes +zerzan +zerring +zerom +zerck +zerbel +zentgraf +zenker +zener +zenbaver +zena +zemon +zemjanis +zeminski +zelmar +zellous +zellefrow +zelkind +zeleny +zelenko +zeis +zeimetz +zeimantz +zeilman +zehnpfennig +zehe +zeegers +zeckzer +zebell +zebel +zeals +zdrojkowski +zazozdor +zaxas +zawadzki +zavatson +zavadoski +zatko +zastawny +zaspel +zarzuela +zarycki +zarucki +zart +zarriello +zarozinski +zarnick +zarkin +zaritsky +zarella +zappolo +zappile +zappavigna +zapoticky +zapico +zapato +zapatas +zanueta +zanter +zanola +zanis +zaneski +zanco +zamzam +zamperini +zamparini +zampaglione +zamostny +zammiello +zammetti +zambotti +zamborsky +zam +zalwsky +zakarian +zaituna +zaitlin +zaidel +zaic +zaibel +zahri +zahradka +zahra +zahorchak +zaharchuk +zagorac +zagen +zaffina +zaffalon +zadra +zadow +zador +zadd +zacharia +zacharewicz +zablonski +zabka +zabik +zabielski +zabek +yuzn +yuste +yusi +yurkanin +yurich +yurchiak +yungclas +yungbluth +yunan +yuki +yueh +yucha +yslava +yrigollen +yragui +ypina +yozamp +yovino +yovanovich +yournet +younkins +younglove +younglas +youket +yosko +yoshimori +yorton +yorn +yorkman +yorio +yorgey +yoquelet +yonkoske +yongue +yonge +yoney +yonemori +yonek +yokiel +yokely +yoders +yo +yngsdal +ylonen +yilma +yidiaris +yezek +yestramski +yessios +yeskey +yerry +yerly +yerbich +yenz +yenney +yenner +yenglin +yengich +yendell +yeldon +yekel +yeisley +yeilding +yegge +yeend +yeeloy +yearicks +yeamans +yeakle +ydara +ybos +yballe +yavorsky +yater +yasutomi +yasinski +yarzabal +yarrell +yarish +yanoff +yannotti +yankovitz +yanity +yanetta +yandura +yancik +yanan +yanai +yamnitz +yammine +yamkosumpa +yakulis +yaklich +yakel +yahraus +yahna +yahl +yagoudaef +yagin +yagecic +yaftali +yafei +yafai +yablonsky +xander +wzorek +wykes +wydryck +wydo +wydler +wycuff +wyborny +wurts +wurgler +wuolle +wunderly +wun +wulkan +wuitschick +wuestenberg +wuerz +wuellenweber +wucherer +wublin +wubbel +wrotten +wrinkles +wriedt +wrenne +wreede +wraggs +woyahn +woulard +woudenberg +woskobojnik +wosher +wortinger +worstell +worst +worner +worn +wormely +worlow +workings +workinger +wootan +woolhouse +wooleyhan +woolcott +woodliff +woodert +woodend +woodburg +woodand +women +wombolt +wolzen +wolthuis +wolsted +wolsky +woloszczak +woller +wolkowski +wolkowiecki +woliver +wolhok +wolfsberger +wolfred +wolffe +wolfertz +wolbeck +wokwicz +wojtowich +wojtecki +wojnaroski +wojeik +woiwode +wohlwendi +wohlschlegel +wohlrab +wohld +woester +woernle +woelzlein +woelfle +wodskow +wlosinski +wlodyka +wlazlowski +wlach +wizar +wiuff +witvoet +wittstruck +wittry +wittliff +witterstauter +witsell +witosky +withy +witherbee +withenshaw +witczak +wisterman +wisnosky +wisniowski +wiskowski +wisk +wisinger +wisenor +wischner +wisbey +wirtjes +wirght +wirf +wipprecht +winzler +winzenried +wintringham +winterton +winterfeldt +winterbottom +winsted +wins +winninger +winning +winney +winnewisser +winners +winnegan +winklepleck +winkleblack +winkelpleck +winkeljohn +winkelbauer +winingear +winikoff +wingstrom +winett +winesickle +winesberry +winek +windmeyer +windhurst +windam +wimpey +wiman +wilts +wiltjer +wilterdink +willrett +willour +willmes +willmann +willinsky +willington +willigar +williama +willegal +willcoxon +willand +willame +willaby +wilkowitz +wilkers +wilison +wilis +wilgocki +wilging +wilfinger +wilebski +wildin +wildfong +wilderson +wildenthaler +wildeisen +wildauer +wilcinski +wilansky +wilabay +wikins +wikert +wik +wiinikainen +wiggains +wigen +wieto +wiess +wiesman +wierzba +wierschen +wierschem +wiehe +wieger +wiederwax +wiederin +wiede +wieciech +wiechert +wiechec +widrig +widowski +widmaier +widlak +widdoes +wickus +wicketts +wickemeyer +wicka +wicinsky +wibeto +wibberley +wibbenmeyer +wiatrak +wiatr +wiand +whyman +wholly +whittley +whittiker +whitteker +whitset +whitmyre +whitmeyer +whitheld +whitesinger +whitemore +whitacker +whistle +whisker +whisenton +whippie +whipp +whildin +whigum +whiby +whelton +wheeington +whan +whaler +whal +weyhrauch +wewerka +wetterauer +wetselline +wetklow +westwater +westrom +westre +westhouse +westervoorde +westergaard +westerbeck +westcote +westaway +wesselink +wesselhoft +weslowski +weslow +wescovich +werthman +wershey +werries +wernli +werning +werma +werking +wenzell +wentzloff +wentcell +wenstrand +wensky +wennersten +wenman +wengren +wener +weneck +wendy +wendte +wenderoth +wend +wenclawiak +wence +wemark +weltmer +welms +welman +wellendorf +welfel +weitkamp +weith +weiszbrod +weissmann +weissert +weisse +weissbrodt +weismiller +weisiger +weisenhorn +weisenfluh +weisend +weisenberg +weisdorfer +weisberger +weirather +weinzinger +weinzimer +weinzetl +weintz +weinand +weiker +weikal +weik +weigman +weigleb +weigart +weidenheimer +weiden +weickum +wehring +wehausen +weglin +weghorst +weeth +weeter +weenum +weelborg +weegar +weeber +wedwick +wedner +wedlow +wedlock +wedi +wedgworth +weckenborg +wechselblatt +webbs +webbink +weavil +weatherley +weatherill +wearrien +wearly +weagel +weadon +waymer +wayde +waybill +wavra +waughtel +waughtal +wauch +watzke +wattson +watrs +watral +watne +waterston +waszmer +wasylow +wasyliszyn +wassermann +wassenberg +wassenaar +waskow +waskey +waska +washurn +washup +washuk +washnock +washman +washinski +wasem +wartman +warsme +warsing +warschaw +warsager +warpool +warneka +warnasch +warmbier +warley +warick +warholic +warhola +warhol +warens +wareheim +wardrop +wardon +wardman +wardinsky +wardian +wappel +wanvig +wanser +wanschek +wanland +waninger +wanders +wampol +walzier +walvoord +walto +waltenbaugh +waltemath +waloven +walman +wally +wallravin +wallor +wallinga +walles +wallentine +wallenda +walleck +wallbrown +wallberg +wallbank +walland +wallaker +wallaert +wallack +walkinshaw +walking +walicki +waldrope +waldmann +waldenberg +walczynski +walchli +walbrecht +wakula +wakham +wakenight +wakeling +waitkus +waisman +waisath +wainman +wahoske +wahner +wahlenmaier +wahid +wagon +waggaman +wagenheim +waganer +wafula +waeyaert +waetzig +waelti +waeckerlin +waddouds +wackman +wackerbarth +wachsmuth +wabasha +vyhnal +vuturo +vulgamott +vukich +vrias +vranich +vrablic +votraw +voter +votaua +voskowsky +vorwaller +vorholt +voracek +voong +vonwagoner +vonstaden +vonsoosten +vonkrosigk +vongxay +vongvivath +vongunten +vongsakda +vongal +vonfeldt +vondohlen +vonderkell +vonbraunsberg +vonarx +volpert +volper +volpa +volmink +vollmering +volking +volkers +volkens +volin +volesky +volckmann +vojta +voita +voights +vogtman +vogtlin +voglund +vogland +vogenthaler +vogelpohl +vogds +voetmann +voedisch +vodder +voce +vlk +vlasaty +vlasak +vlahovich +vizza +vizuete +vivolo +vittum +vittek +vitorino +vitkus +vititow +vitera +vitantonio +vitaniemi +visvardis +vissman +visovsky +visosky +visocsky +visnosky +visnocky +viscarro +visaya +virts +virkler +virgili +virgie +virgel +virelli +viramontas +viorel +vintinner +vintimilla +vinsel +viniegra +vinck +villot +villenas +villemarette +villecus +villaquiran +villane +villalouos +villaescusa +vilkoski +vilkama +vilca +vilaro +vilardo +vilandre +viken +vigus +viguerie +vigorito +vigario +viessman +viesselman +viesca +vierthaler +vierps +vientos +vienneau +vidler +victorica +vickey +vicioso +vichidvongsa +viccica +veysey +vespia +veselic +verzi +versele +veroba +vernet +verlotte +verigan +verhaag +vergamini +verga +verfaille +verela +vere +verdine +verdiguel +verd +verbridge +verble +verbit +verbilla +verbasco +ventur +ventrice +ventre +ventors +venth +venosh +vennari +venkus +veninga +venible +venghaus +venetos +venere +veneable +vendelin +vemura +velzeboer +veltre +veltin +veloso +veles +vele +veld +veitz +veitenheimer +vein +veillette +vegher +vegetabile +vegar +veerkamp +veen +vecino +vebel +veater +veader +ve +vayon +vayner +vavricek +vauter +vaulx +vaughner +vaudreuil +vaubel +vattikuti +vathroder +vatch +vastola +vastardis +vassure +vassil +vassie +vasseur +vassen +vasquiz +vasaure +varvil +vartanyan +varron +varro +vargis +varesko +varda +varanese +varakuta +varagona +vanzante +vanyo +vanwyngaarden +vanwassenhove +vanvolkenburg +vanvalen +vantuyl +vantil +vanta +vanstrom +vanslooten +vansicklin +vanscoik +vanschaick +vanruiten +vanostberg +vanorsdol +vanolinda +vanoflen +vannuland +vannover +vannorsdell +vanniello +vanni +vanner +vanmarter +vanleuvan +vanlaar +vankilsdonk +vankammen +vanhevel +vanheukelem +vanhee +vanhauen +vanhamlin +vanhamersveld +vangyi +vangompel +vangoff +vangerbig +vangelos +vanfossan +vanez +vaneffen +vandygriff +vandy +vanduynhoven +vandunk +vandorien +vandon +vandiest +vandeweert +vandevort +vandevere +vandeveble +vandestreek +vandesteeg +vanderwyk +vanderwood +vanderwilt +vanderwege +vanderweerd +vanderweel +vandertuig +vanderstappen +vanderschoot +vandermoon +vanderkaaden +vanderhoot +vanderboom +vanderau +vandenacre +vandemortel +vandeman +vandelaare +vandebrake +vanconant +vancleaf +vanbogelen +vanbenthuyse +vanbeck +vanasselt +vanaprasert +vanandel +vampa +valseca +valree +valot +valorie +vallimont +vallie +vallentine +vallelonga +vallario +vall +valgren +valer +valenzvela +valentyn +valenstein +valenciana +valderamo +valcin +valcho +valakas +vaksman +vakil +vaka +vajgrt +vaissiere +vainio +vaiko +vaghy +vaghn +vafiadis +vafiades +vaeza +vaeth +vadasy +vaclavik +vacio +vaci +vache +vaccarino +vacante +uzun +uxa +uvalles +utvik +uttley +ustico +usman +usina +ushioda +ushijima +uscio +usack +urse +urrey +urreta +urraca +urness +urlanza +uriostejue +urik +urenio +urdiano +urbieta +uptegraft +uppencamp +unterkofler +unnold +unnewehr +unkn +uniacke +unglaub +unck +umnus +umezawa +umbel +ultseh +ultreras +ulses +ullum +ulisch +ulicnik +ulich +uleman +ukich +uken +uhrin +uhrhammer +uhles +uhlenhopp +ugaz +ugaitafa +ueki +uebersax +udinsky +udicious +ucha +uccio +uc +ubry +ubiles +ubertini +ubence +tyssens +tysseling +tyrance +tynio +tylman +tydings +tydeman +twohatchet +twito +twillie +twiet +twiest +tweet +tweddell +twait +tvedt +tuxbury +tuukanen +tutuska +tutoni +tutela +tushoski +turvaville +turturo +turrill +turrie +turpiano +turomsha +turocy +turnpaugh +turnow +turnmyre +turnier +turkmay +turkasz +turinetti +tureson +turdo +turcio +turbiner +turbide +turber +turbe +turansky +tupy +tuppen +tuplano +tuorto +tunon +tunget +tunby +tun +tumolillo +tumminia +tumbleston +tullison +tulis +tuliau +tukuafa +tukis +tujague +tuia +tugade +tuffin +tuesburg +tuerk +tuer +tuenge +tudruj +tudman +tudisco +tuccio +tucay +tuberman +tsuruda +tsuchiura +tsuchida +tsistinas +tshudy +tschirhart +tschache +tsantakis +trzaska +trythall +tryninewski +truont +trumpp +truka +truiolo +truglio +trueluck +trudo +truchon +trucchio +trube +truan +troxil +trowel +trovinger +trotz +trotto +trosen +troost +tronzo +tront +trometter +trombino +tromba +trollope +troke +trojanovich +trojak +trohanov +trogstad +troe +trocchio +trobridge +trobough +trnong +trivane +trippel +trimnal +trimis +trimino +trilt +trillas +trillana +triglia +trigillo +trifone +triffo +trifero +tridenti +tricoli +tricamo +tribue +triblett +trevithick +trevisone +trevis +trevillian +trevethan +treves +treusdell +tretola +tretina +tretera +tressel +treola +trentz +trento +trentman +trenor +trennell +trend +trenchard +tremore +tremillo +trembinski +trelles +treister +treine +treible +treff +tredinnick +treder +trebon +trebesch +trear +traviss +traux +trautner +trausch +traum +trattner +trass +traphagen +trapeni +trapalis +traner +tramonti +trainham +traicoff +trahern +traffanstedt +trachsel +tracewell +trabold +trabazo +tozloski +toyota +toyn +towse +townsand +towels +touton +toussand +toupe +touney +toudle +touchard +touby +touart +totzke +tototzintle +totino +toting +tossie +tosco +tosch +tortu +tortolano +tortelli +torruellas +torros +torrion +torrillo +torrico +torreblanca +torrano +torongeau +toromanides +tornincasa +torey +toren +torbus +toquinto +topolewski +topoian +topness +toplistky +topliffe +topal +topacio +toothacre +tooms +toolsiram +toolan +tookmanian +tonzi +tonti +tonschock +tonsall +tonrey +tonnesen +tonnar +tongate +tonetti +tonelson +tonder +tonai +tomspon +tomski +tomshack +tomkus +tomka +tomidy +tomichek +tomeldan +tomehak +tombleson +tomasson +tomasic +tomash +tomanek +tolontino +tollin +tollerud +tollefsen +toline +tokley +tokkesdal +tohen +togashi +tofolla +toepperwein +toeller +toelke +toedebusch +todt +todoroff +todor +todesco +toboz +tobolski +toaston +toa +tlumacki +tlatenchi +tlatelpa +tlamka +tjandra +tix +tivis +tivar +titterness +titone +titler +tith +tisi +tish +tisdel +tisdal +tischner +tipre +tippey +tipold +tinucci +tintinger +tinnerello +tinn +tinlin +tinger +timus +timothe +timons +timonere +timon +timenez +timchula +timbrell +timas +timar +tilzer +tilus +tilt +tilow +tillou +tietge +tieng +tichnell +tichi +tibor +thy +thury +thurness +thurlby +thurby +thuney +thuma +thull +thruthley +throssell +thress +threlfall +thrapp +thrams +thraen +thouvenel +thorstenson +thorsness +thoroughgood +thornborough +thormaehlen +thorade +thonney +thompon +thometz +thomeczek +thomases +thomae +thoburn +thobbs +thivener +thim +thilmony +thiengtham +thielges +thieklin +thidphy +thibaut +thibadeau +thew +theule +theuenin +thepbanthao +theos +thell +thelin +thelemaque +theinert +theeman +theden +thebo +thansamai +thanos +thangavelu +thanem +thanasouk +thanas +thamann +thaman +thalls +thaller +thall +thadison +tewolde +tewa +teuteberg +teteak +testolin +tessendorf +tess +tesmar +teschler +terwey +tertinek +terstage +terrone +terrible +terrian +terrezza +terracciano +terp +teroganesyan +termilus +terinoni +teri +terhorst +terherst +terazes +teravainen +teque +teoh +teodoro +tention +tenore +tenofsky +tenn +tenhoff +tenhaeff +tengben +tenerovich +tener +tenda +tenario +tempelton +temoney +teman +tellefsen +telkamp +telgen +teles +telch +telander +teklu +teixeria +teissedre +teisberg +tehney +tegner +tegan +teehee +teder +teddy +tecuanhuey +techau +tecchio +teakell +teager +taylar +tayan +tawwab +tavolieri +taverab +tavaris +tavana +tauzin +tautolo +tausch +taula +taualii +tattrie +tatsuhara +taton +tatge +tatel +tastet +tassa +tasma +taskey +tashiro +taruer +taruc +tartsah +tarski +tarrenis +tarnoff +tarmey +tarman +tarling +tarella +tarduno +tarboro +tarbert +taray +taras +taque +tapian +taphous +tapaoan +tanzi +tantum +tannous +tankxley +tankesly +tanh +tangney +tangerman +tangaro +tangari +tangabekyan +tandus +tande +tamkin +tami +tamburrelli +tamburino +tamborlane +tamai +talvy +talsky +talleut +tallacksen +taliferro +talicska +talentino +talaro +talamentez +talaga +tako +taker +takara +takai +tajudeen +tajima +taitague +taillefer +tail +tahon +tagupa +taglauer +tagalog +tagaloe +tagala +tagaca +tag +tafiti +tafelski +taetzsch +taegel +tadt +tadgerson +taddio +tadd +tacopino +tacneau +tackette +tackes +tacke +tachauer +tacason +tabuena +tabion +tabatt +szysh +szymonik +szwede +szulimowski +szpak +szoka +szocki +szklarski +szitar +szewc +szesterniak +szermer +szerbin +szczepkowski +szczeblewski +szachewicz +szabat +syzdek +syrrakos +syria +sypult +sypolt +synovic +syner +symkowick +symeon +sylney +sylla +syktich +syer +swopshire +swolley +swithenbank +swiss +swirczek +swingler +swingen +swinerton +swinea +swille +swierenga +swierczynski +swieca +swicord +swerdloff +swenceski +swelt +swelgart +swehla +sweets +sweem +swed +sweatmon +sweatfield +swatman +swartzman +swartzell +swantak +swanston +swancutt +swanay +swamm +swam +swait +swainey +swaggart +swabe +swabb +svobodny +svetlak +svennungsen +svedine +svatos +svare +svancara +suydan +suwannakintho +suvada +suttin +suttee +sutkus +sutic +suthers +sutcliff +suszynski +sustar +sustaire +suskay +susany +susanin +suryanarayana +survis +surpris +suro +surminec +surguy +surgoine +sures +suren +surbella +suomela +sunyich +sunniga +sunier +sumrow +sumption +summerlot +sumerix +sumeriski +sultani +sulley +sullenberger +sulipizio +sulin +sulima +sulikowski +sulentic +sulejmanovski +sugabo +suffield +suentenfuss +suehs +sudekum +sudbrock +sucre +suchocki +suchla +sucgang +succar +subijano +subich +subert +subera +suaava +stuttgen +sturner +sturk +sturgul +sturghill +stukowski +stuesse +stuermer +stuer +stuebe +studyvance +studnicki +studniarz +studmire +studdiford +stucke +stublaski +stubby +stubbendeck +strzalkowski +struzzi +struzik +strubel +strozewski +strowe +strous +strotz +strombeck +stroker +strohmayer +strogen +strizich +strini +stringari +strimling +strimback +strife +strid +stricklind +stribley +strevels +strevell +streva +stretz +strenge +stremi +strelecki +strejan +streitnatter +streff +strefeler +streeton +stred +strazisar +strayhand +strayham +stravinski +strausz +strausner +strauhal +straugh +strasters +stranford +strandburg +stranahan +strahin +stradtner +stracquatanio +strachman +straathof +stpierrie +stoviak +stovell +stoutenger +stoudymire +stoud +stouch +stouall +stottlar +stotko +stothard +stotesbury +stotesberry +storto +stores +storage +stoos +stonich +stolzenburg +stolly +stolebarger +stolcals +stolar +stoklasa +stogden +stoffey +stofferan +stoey +stoett +stoeltzing +stoel +stoeke +stoeffler +stoeckert +stoebner +stoeberl +stodomingo +stodder +stockwin +stockon +stocki +stockebrand +stocco +stobie +stlouise +stives +stirn +stire +stipanuk +stingle +stinespring +stinehour +stinebuck +stindt +stimple +stimler +stilwagen +stiltz +stilner +stillie +stigsell +stiern +stiens +stiehm +stiegman +stiegemeier +stieb +stidstone +sticklin +sticklen +stickford +sthole +stford +stflorant +steury +stetzenbach +stetke +sterpka +sterker +sterkenburg +sterkel +stephensen +stepan +step +stenz +stenn +stendeback +stenbeck +stenback +sten +stemmler +stelzl +steltzer +stellpflug +stellfox +stelk +stele +steinruck +steinmeiz +steinkuehler +steinkirchner +steinkellner +steinerkert +steine +steinbrink +steinbauer +steik +steighner +steiert +steich +steibel +stehno +steggeman +stefl +stefford +steffa +stefanatos +steep +steenwyk +steenhoven +steelmon +steeg +steeb +stedronsky +steczo +stecklair +stechuchak +stechlinski +steber +stebe +stearnes +stearne +stea +stdenny +stchur +stayter +stawicki +stavrositu +staudenmeier +stattelman +statires +station +stathos +stathas +stasulis +stassen +stasny +staser +staschke +starweather +stars +starnaud +starley +starkman +starken +starich +starghill +starcevic +staplins +stapelman +stanzak +stanway +stanowski +stankowitz +stankaitis +staniec +stania +stangroom +stanesic +stanert +staneart +stands +standors +standifur +standeven +standaert +stancoven +stanclift +stancey +stanbaugh +stana +stammler +stamenov +stambach +stamatopoulos +stamas +stalberger +stakoe +stakley +stakkeland +stakemann +stainbach +stagowski +stagno +stagman +stagles +stagers +staffeld +staenglen +staehler +stadther +stadt +stadnik +stadick +stachurski +stace +stabs +stabley +stable +srygley +srinvasan +squarciafico +squair +spyrakos +spyies +spycher +spurger +spulick +spudis +spuck +sprygada +spruiell +spruance +sprowls +sprouls +sprong +sprole +springe +sprewell +sprengelmeyer +sprawls +sprauve +spragley +spotorno +sporysz +sporman +sporich +spoonemore +spoleti +spohnholz +splitt +splett +splatt +spiter +spirounias +spirk +spire +spinoza +spinn +spinetti +spinello +spinar +spilis +spiliakos +spigutz +spielvogel +spicknall +spicker +sperier +speraw +spennicchia +spene +spellane +spegal +spee +specken +spearow +spearmon +spayd +spartin +spartichino +spart +sparacina +spannuth +spanner +spanicek +spanger +spane +spakes +spadard +spacht +spacagna +sozio +soyke +sowl +sowden +sowada +sovel +souvannakhily +souto +southand +sourlis +soulliere +souhrada +sou +sotos +sothen +sosbe +sorzano +sorvig +sortland +sorokata +soro +sorlie +sorhaindo +sorell +sordia +sorace +soptick +soppeland +sophy +sopczak +sooy +soop +soomaroo +soolua +sonterre +sonsteng +sonnefeld +sonnee +sonka +songy +sondrup +sondles +sondheimer +sonderman +sonderegger +somvang +somsy +somrak +somoza +somogye +somo +sommons +sommar +somji +somilleda +somerfield +somdah +somayor +solwold +solverud +soltow +soltmann +solow +solorsano +solonar +solomen +sollors +sollitto +solliday +solito +solinas +solima +solies +solien +solich +solian +solhjem +solera +soldeo +solazar +solarski +solaita +soladine +sokul +sokotowski +sokolski +sokolowich +sojo +soito +soiro +soifer +softich +sofer +soechting +sodini +sodervick +soders +sodawasser +sockey +sobrio +sobieraj +sobeski +sobery +soberanes +sobenes +sobe +sobanski +soape +snowder +snorden +snode +snetsinger +snaples +snaer +snaders +smyrski +smyntek +smykowski +smutzler +smutny +smulik +smugala +smuck +smolnicky +smolinsky +smitty +smithe +smiling +smiler +smigiel +smerdon +smeja +smedes +smeathers +smarra +smar +smallmon +smallin +smallidge +slyton +slutsky +sluski +slovinski +sloter +slonecker +slomer +slogeris +slobodnik +sloanes +slipper +slingluff +slingland +sliney +slimko +sliman +slimak +slessman +slepski +sleppy +sleiman +sleaford +slaugenhaupt +slark +slackman +slaboda +skyes +skweres +skwarek +skubik +skrzypinski +skrebes +skrabanek +skovlund +skotnicki +skone +skonczewski +skold +skoien +skoczen +skobiak +skimehorn +skillpa +skillett +skillan +skildum +skibski +skibo +skevofilakas +skepple +skarzynski +skartvedt +skar +skapura +skaflen +skaer +skabo +sjulstad +sjerven +sizar +sixt +sixsmith +siwicki +sivills +sivilay +sivie +sivick +sivay +sivalia +sival +siurek +siuda +sittre +sittner +sittman +sitterding +sitosky +sitkiewicz +sistek +sista +sisomphou +sisofo +sisley +siskin +sisavath +sirpilla +sirosky +sirolli +siroka +sirna +sirico +sirhan +siravo +sipriano +sippy +siphan +siona +siok +sinrich +sington +singharath +singewald +singerman +sinarath +simple +simper +simor +simoniello +simonetty +simonet +simokat +simoens +simmond +simmes +simitian +simich +simerson +simensky +simcock +silvestrini +silvaggio +siluis +siltman +silovich +sillitoe +silkenson +siliezar +silevinac +silence +silbiger +silao +sil +sikarskie +siglow +siglar +sifre +sifontes +sifers +sievertsen +sieverson +sieve +sietz +siert +sieradski +sier +sielaff +sieja +siedner +siedel +siebenthal +sidorowicz +sidley +sidi +sideman +sicks +sickel +sickafoose +sicinski +sibounma +sibgert +sibeto +sibel +sibal +siar +siaperas +siami +sialana +shyne +shybut +shwab +shutty +shutters +shusterman +shurr +shurak +shuptrine +shupert +shummon +shulthess +shult +shulse +shullick +shulick +shulenberger +shuffleburg +shubov +shry +shrigley +shren +shrawder +showen +shoulder +shorthair +shopbell +shoobridge +shongo +shoman +shollenbarger +shoji +shofestall +shodunke +shober +shivy +shisila +shirvanian +shirakawa +shippen +ship +shinsky +shinnick +shinkel +shingleur +shingledecker +shindel +shimon +shimaoka +shilo +shillito +shillingsford +shilkuski +shiliata +shildneck +shikuma +shike +shigeta +shigemi +shifferd +shider +shibi +shettleroe +shetterly +sherville +sherrock +sherrange +sherraden +sherles +sherief +sherbon +shepperdson +shenker +sheneman +shene +shempert +sheman +shelvy +shelsy +shelkoff +shekels +sheirich +sheingold +sheidler +shehee +shefte +sheftall +sheerer +sheer +sheakley +shbi +shawber +shatek +shasky +shary +sharplin +sharperson +sharabi +shappen +shapouri +shapleigh +shapino +shaper +shanno +shandro +shanberg +shamsi +shammah +shamir +shamily +shalwani +shalla +shaline +shalhoub +shakoor +shakin +shahinfar +shahin +shahim +shahbaz +shaffren +shaffen +shadfar +shadding +shadazz +shaben +shabel +sgueglia +sgrignoli +sgammato +seykoski +seyb +sewyerd +seweall +sewade +severi +seveney +sevadjian +settlemyre +settlemires +settino +settimo +setterland +seton +setler +setias +seti +setchell +setaro +sestoso +sessin +sesser +serville +servi +servedio +serve +serravalli +sermersheim +serfoss +serfling +serey +seres +serens +serene +sercovich +serban +seratti +seratt +serasio +serandos +seraiva +seraille +sepvlieda +sepulbeda +septelka +seppelt +seppanen +seppa +senz +senst +sensor +sensmeier +sensing +senseney +sensenbrenner +senseman +seniff +sengvilay +sengun +senethavilouk +senesenes +senderling +sender +senavanh +semsem +semonis +seminario +sember +selzler +selvester +selusi +selnes +sellin +sellards +selkey +selic +selgrade +selesnick +selakovic +seiters +seit +seisler +seil +seikaly +seidenbecker +seibt +seibers +seiavitch +segreto +segonia +seggerman +segerman +segelhorst +seferovic +sefcheck +seering +seemer +seekford +seekamp +seegar +seedorff +seedborg +seebaum +sedanos +secundo +second +seckletstewa +sechang +sebranek +sebion +sebero +sebeniecher +sebasovich +searer +seara +seanger +seajack +seaholtz +seagers +seaforth +seacrest +seacat +seaburn +sdoia +sczbecki +scurci +scullin +scuito +scudero +scucchi +scsarpisnato +scro +scrivener +scriuner +scripps +scrimsher +scrichfield +screnci +scrape +scouller +scotts +scotting +scorgie +scollan +sciullo +scites +scicutella +scialpi +sciacchitano +schy +schworm +schwizer +schwister +schwipps +schwertfeger +schwerdt +schwerd +schwenzer +schwenneker +schwendeman +schwemmer +schweitz +schwarzlose +schwart +schwantd +schwadron +schutze +schute +schusted +schurk +schumachor +schulter +schultens +schulkin +schulist +schuit +schuering +schueren +schueneman +schuemann +schuchat +schuber +schubach +schrumpf +schroot +schroen +schroedter +schreuder +schreacke +schrayter +schrawder +schrauger +schraub +schrameck +schraff +schradle +schrab +schowengerdt +schossow +schopmeyer +schopflin +schop +schomin +schomas +schomacker +scholtens +scholin +schoggen +schoessow +schoepfer +schoenmaker +schoenig +schoelman +schoellkopf +schoell +schoeben +schoderbek +schockley +schnure +schnorbus +schnopp +schnobrich +schnitz +schnickel +schnibbe +schnepf +schnelder +schneidman +schneeberger +schnackel +schmollinger +schmoak +schmittou +schmiot +schmille +schmier +schmiel +schmiedeskamp +schmidtka +schmidlin +schmertz +schmerge +schmerer +schmelmer +schmeidler +schmautz +schmauder +schmatz +schmand +schmaling +schlund +schlumaker +schlotthauer +schlotte +schlotfeldt +schlote +schlossman +schloemann +schlindwein +schlimmer +schlieter +schlichenmaye +schleppy +schlenger +schleker +schleibaum +schleh +schlecter +schlaefli +schladweiler +schlabs +schirrmacher +schiralli +schinnell +schinker +schingeck +schindewolf +schimel +schilsky +schilk +schilder +schifko +schiffmann +schierenbeck +schierbrock +schielke +schieferstein +schiefen +schickedanz +schey +scheuren +scheuers +scherschligt +scherma +scherbring +scherbel +scheno +schenfeld +schells +schellin +schellermann +scheiern +scheiderer +schegetz +scheffrahn +scheffert +schechinger +schavone +schaunt +schaumann +schauble +schaubhut +schatzle +scharmann +scharler +scharbrough +schap +schanzenbach +schantini +schange +schandel +schammel +schallig +schaffter +schaffeld +schaffel +schafersman +schaen +schachterle +schachsieck +schabbing +scelzo +scelsi +scavo +scavetta +scaturro +scatenato +scarpitto +scarpitta +scarpato +scarpati +scarp +scarlato +scargall +scarfi +scantlen +scanneu +scannapieco +scanio +scandrett +scandalios +scancarello +scamehorn +scalzi +scallorn +scallion +scalet +scaiano +scaia +scagliotti +scace +sboro +sbarra +saysongkham +saysana +sayloe +saxinger +saxfield +sawtell +sawransky +sawhill +sawatzki +sawaia +savitch +savinar +savi +saven +savas +savaria +savakis +sava +sauveur +sausser +saurey +sauredo +saunas +saulsbery +sauger +sauerhage +sauerbry +sauce +sauby +satz +sattlefield +satmary +sathiraboot +satchwell +sat +sasuille +sashington +sasengbong +sasao +sarwar +sarrell +sarraga +saroop +sarnes +sarnacki +sarlo +sarks +sarkodie +sark +sargis +sargetakis +saretto +sarette +sarensen +sarcinelli +sarcinella +sarcia +saras +saranzak +saraniti +sarani +sarafian +saraf +sarac +sarabando +saporita +sapnu +sapko +saous +sanzenbacher +santti +santrizos +santoscoy +santomauro +santolucito +santis +santio +santilukka +santaloci +santagata +santaella +sanseda +sanquenetti +sanots +sanosyan +sann +sanmarco +sanlatte +sankovich +sanke +sankary +sankaran +sanislo +sanipasi +saniger +sangren +sanghez +saneaux +sandstedt +sandry +sandovar +sandos +sandone +sandness +sandlan +sandison +sandersen +sandborg +sanchz +sanchec +sancen +sanasith +samway +samuell +sampselle +sampieri +sampair +samoyoa +samowitz +sammut +samiec +samick +samele +sambucetti +samara +samantha +samanlego +salverson +salvature +saluto +saluja +saltourides +saltmarsh +salta +salsberg +saloum +salos +saloom +sallings +sallies +sallah +salisberry +salimas +salfelder +salesses +salen +saleado +saldvir +saldi +saldeen +salceda +salazan +salaza +salay +salandy +sakshaug +sakovitch +sakkinen +sakkas +sakiestewa +sakic +sakakeeny +saison +saisa +saintfleur +saide +saicedo +sahsman +sahli +sahler +sahlberg +sahagian +saggione +sages +sagendorf +safron +safar +saetteurn +saenphimmacha +sadhu +sadhra +saden +sadee +saddat +sackos +sachleben +saches +sachar +saccucci +sacane +sablone +sablock +sablea +sabiston +sabini +sabi +sabha +sabellico +sabaj +saadd +ryun +rysavy +rysanek +rylowicz +ryll +ryken +rygiewicz +rydalch +rychlicki +rybowiak +ryal +ruzycki +ruyz +ruwet +rutley +ruthenberg +ruszala +rusteika +rusteberg +russotto +russotti +russman +russek +russe +rusley +rusich +rushworth +rushman +rushforth +ruscitti +ruscio +ruschmann +ruschel +rusak +rupertus +ruoho +runzler +runyons +runswick +runfola +rumney +rummler +rumford +rumburd +rumbold +ruman +rulnick +rujawitz +ruhstorfer +ruhmann +ruhling +ruhlin +ruggiere +ruggero +rugga +rugama +ruffolo +ruether +ruesswick +ruell +rudnitski +rudnicky +rudish +rudicil +rudes +rudeen +rubow +rubloff +rubison +rubinow +ruberte +rubenacker +rubarts +ruballos +rubal +rozgonyi +rozga +rozenberg +rozas +rozance +roytek +rowsell +rowray +rowold +rowntree +rowlins +rowling +rowback +rovelto +rovella +rovack +rouzzo +rout +roussos +rounkles +roundabush +rouisse +rougier +rouff +roudybush +roucoulet +roubekas +rotstein +rothmann +rothhaupt +rothfus +rothenburger +rothbauer +rothacher +rotering +roszales +rossnagel +rossingnol +rossing +rosselle +roskovensky +roskop +rositano +rosine +rosich +rosettie +rosentrance +rosenthall +rosenkoetter +rosenheim +rosenbarger +rosekrans +rosebure +roseboom +roscow +roscorla +rosbozom +rosavio +rosacker +ropiski +ronzoni +rons +rondell +ronde +roncskevitz +romulus +rompf +romjue +romenesko +rombult +rombardo +romaniak +romandia +romanchuk +romag +rolseth +rollind +rollend +rolfsen +rolff +rolek +rokusek +rohs +rohowetz +rohlack +rohla +rogugbakaa +roguemore +rogosky +roginson +roggero +roggensack +roggenbaum +roggeman +roever +roetzler +roettgen +roessing +roerish +roemhild +roehling +roede +roeber +rodriuez +rodrigeuz +rodnguez +rodis +rodinson +rodine +rodemoyer +rodeigues +rodea +roddick +rodar +rodamis +rodal +rockymore +rockelman +rockafellow +rocho +rochlin +rochenstire +rocasah +roblow +roblodowski +robinzine +robinsons +robinso +robinault +robilotto +robichard +robeza +robertos +roberrtson +robblee +robante +roats +roatch +roaoo +roanhorse +roal +roacho +rizas +rivord +riveroll +riverman +rivel +ritzke +ritzie +ritums +ritson +ritchlin +ritari +ristaino +rissell +rissanen +risler +riskalla +risius +rishell +risha +risewick +risden +rische +riscen +risbeck +riquelme +ripoll +rioz +riofrio +riobe +rinnert +rinkus +rininger +ringland +ringhouse +ringelspaugh +rinebold +rindler +rinderle +rimm +rillera +riise +riippi +rightnour +rightley +riggings +rigger +riffee +rifenbery +riexinger +riesland +rieske +riesinger +rieley +riekert +rief +riedlinger +ridgnal +ridgle +ridgill +ridep +ridel +riddleberger +ridders +riculfy +rickford +richters +richmann +richlin +richiusa +richerds +richan +ricenberg +ricaud +ricardi +ribsamen +ribron +ribiero +ribero +ribbink +rhump +rhum +rhorer +rhoe +rhoan +rhoad +rhinerson +rhen +reznicek +reyner +reyne +reynaldo +reyelts +rewerts +rewakowski +revira +revils +revering +revera +revelli +revay +reuteler +reust +reuschel +reudink +retzloff +rethmeier +retek +retchless +retamar +ressel +respicio +respes +respers +resos +resetar +resenz +resecker +res +rerucha +requarth +reprogle +repoff +replin +repetowski +repasky +reola +renzoni +renzo +renyer +rentoulis +rentie +renouf +renosky +renigar +renert +rendler +rend +remondet +remis +remian +remele +remeder +rellama +rekus +rekemeyer +reives +reitter +reistetter +reinsvold +reinsfelder +reinowski +reinier +reing +reinen +reineccius +reindeau +reinbolt +reimnitz +reimmer +reihl +reihing +reigleman +reighley +reidherd +reidhaar +reichow +reibman +reial +rehse +rehmert +rehlander +reher +rehbock +regulski +regueira +regn +reginaldo +regelman +regar +refsal +refazo +reemer +reefer +redlon +redkey +redinbo +rediker +redig +redemer +redcross +redal +recuparo +recksiek +reckers +recidivi +rechichi +reburn +rebold +rebik +rebar +reavish +reaver +reavely +reash +reaollano +reagey +readinger +readdy +razon +rayyan +rayshell +rayow +rayome +rayhel +raychard +rayam +rawi +rawhouser +rawat +ravizee +raviele +ravago +rautenstrauch +raulino +raul +rauhecker +rauhe +raught +rauco +raucci +ratzloff +rattu +rattell +rattanasinh +ratsep +ratkovich +rathrock +rathel +rathai +ratana +rasual +rastetter +rastegar +rasset +raspotnik +raspa +rasool +rasole +rasley +raskey +rasico +rasavong +ras +rarogal +rarden +raptis +rappl +rapkowicz +rapisura +rapanot +rapalo +rapacki +ranweiler +ransonet +ransler +ranni +ranmar +ranks +ranildi +randgaard +randahl +ranch +ranaudo +ranah +ramsy +ramsour +ramshur +ramsby +ramrirez +rampy +rampulla +rampadarat +rampa +ramonez +ramler +ramlall +ramjhon +ramjan +ramirel +rametta +ramelli +ramelize +ramelb +ramdeo +ramcharran +ramaudar +ramal +ramagano +ramach +rakyta +rakus +rakestrow +rakers +rajk +rajas +rajaphoumy +raisley +raisler +raisin +rais +railes +raike +raigosa +rahoche +rahmes +rahib +rahaman +ragus +ragula +raguay +raglow +rafus +rafey +rafel +rafala +raethke +raemer +raef +raeder +radziwon +radwick +radwanski +radoslovich +radon +radmall +radlinski +radie +raderstorf +radej +raddle +raczak +racko +raciti +racioppo +racer +rabuse +rabsatt +rabjohn +rabito +rabey +rabeneck +rabehl +rabeck +rabbe +rabal +quivoz +quiver +quituqua +quitugua +quittner +quitter +quitero +quitedo +quirke +quiram +quiralte +quintard +quintania +quinnan +quinlivan +quilter +quillman +quillan +quilindrino +quiel +quidas +quicho +quibodeaux +quezergue +quezad +quettant +queros +querio +quercioli +quenzel +quencer +queller +quebral +quatrevingt +quashnock +quasdorf +quartuccio +quartiero +quartieri +quartaro +quarrell +quanstrum +quammen +qualheim +quagliato +quadnau +qua +qasba +qare +qadeer +pywell +pysher +pyros +pyfrom +pyfer +pyette +pychardo +puzon +putzer +putton +putcha +puskarich +push +purkhiser +purfeerst +puraty +puotinen +puntillo +punihaole +pundsack +puna +pulwer +pullus +pullara +puita +puhrman +puhr +puhl +puffenberger +puerto +puent +pudenz +pucket +pucker +public +ptaschinski +psuty +psuik +psilovikos +przybyl +przeniczny +prye +prybylski +prukop +pruessner +provosty +provorse +provins +provino +provenzo +provent +protich +protas +pross +prosienski +prosenick +proscia +prosak +propheter +promisco +promer +prokup +prokos +progl +profeta +profera +profancik +procsal +prociuk +prochak +proch +procaccino +prizio +privado +pritzker +pritzel +pritcher +pritchell +prisoc +priolean +prinn +prindiville +princevalle +primos +prima +prigg +priego +priegnitz +prible +pribish +pribbenow +prevot +prevet +pretzer +pretzel +prety +presume +prestley +prestipino +presnal +preslipsky +presiado +prendes +prejsnar +preist +preissner +preisner +preheim +prefontaine +predom +precissi +prechtel +precht +prause +pratten +prately +prante +prang +pramuk +praley +prakoth +prach +pozar +poynton +powskey +powsey +powlen +powells +pourvase +pourner +pourier +pourchot +pouncil +poulisse +poulet +pouk +pouche +potulski +pottkotter +pottichen +potteiger +potsander +pothoven +potanovic +potaczala +posusta +posto +postles +postiglione +postemski +possinger +possick +possehl +pospicil +poskitt +poska +posis +portnoff +portello +porris +porres +porep +porell +porat +popularis +poppo +popadiuk +pooyouma +pooschke +poort +poolheco +ponsler +poniatowski +pomykala +pompi +pomilla +pomiecko +pomfret +polzer +polvino +poltrock +polton +polter +polski +poloskey +pollot +pollnow +polivick +polisoto +polintan +poliks +polikoff +policicchio +policastri +policare +poletski +polee +poledore +polacco +pokrzywa +pokallas +pointe +poinelli +pohorilla +pohlson +pogozelski +pogorelc +poellinetz +podwoski +podeszwa +pod +pocklington +pociengel +pochatko +pocekay +pocai +poague +pniewski +plutt +plumbar +pluma +plotzker +plotrowski +ploskunak +ploennigs +plimpton +plienis +plewinski +plett +pleskac +pleshe +plesant +pleppo +plegge +playl +plavnik +plateroti +plateros +plastow +plassmeyer +plassman +planer +plance +planagan +plan +plamondin +plainy +plackett +placino +plachecki +placeres +plaas +pjetrovic +pizzulo +pizzini +pizzico +pivec +pitpitan +pitorak +pitocco +pitka +pitch +pitcairn +pitarresi +piszczek +pistelli +piskel +pisicchio +piserchio +piscitello +pirrotta +pirrello +pirre +pirozhkov +pirollo +pirieda +pipper +pipia +pioske +piombino +pinzino +pintello +pinsonneault +pinsoneault +pinn +pinkenburg +pinke +pindell +pinchock +pince +pimple +pim +piluso +pillon +pillarella +pillado +pilkey +pilette +pilchowski +piirto +pihlaja +piggie +piganelli +piety +pietrowicz +pietrok +pietrini +piesco +piertraccini +piersiak +pierrot +pierdon +pierannunzio +pientka +pielow +piela +piek +piegaro +piefer +piecuch +pidro +picotte +pickman +picketts +picketpin +pickerell +pickenpaugh +pichoff +picher +piccuillo +piccirilli +piccinone +piccinich +piccillo +picchetti +piatz +piao +piacitelli +piacenza +phyfe +phurrough +phuong +phuma +phuaphes +phramany +phoubandith +phommajack +phom +pho +phimsoutham +phimpradapsy +philmore +phillies +philliber +philio +phildor +philabaum +phi +phetsanghane +phetphongsy +phelp +phaymany +pharmer +pharao +phanthavongsa +pfrommer +pfoutz +pforr +pfnister +pflugradt +pflugrad +pfleuger +pfingsten +pfifer +pfeiffenberge +pfefferkorn +pfanstiel +pfander +pfalmer +pfaffinger +pezley +pezina +pezez +peyser +pevahouse +petula +petton +pettipas +pettijohn +pettigrove +pettay +petrouits +petropulos +petronzio +petronella +petrilli +petriccione +petric +petrecca +petralia +petr +petka +petigny +petesic +petersik +petek +petanick +petalcu +peszynski +pessolano +pesses +pesicka +peschong +pesarchick +pesantes +perza +pertea +persyn +persten +persch +perrota +perrot +perriott +perring +perrilloux +perrette +perrelli +perrell +pernod +pernin +perniciaro +pernesky +permann +perlson +perkiss +perina +perie +perencevich +peredz +percey +peraha +peplau +pepka +pepion +penzien +penzel +penya +penwarden +penticoff +pensky +pensick +pensa +pennelle +penird +penhallurick +penha +pengra +penderel +pendegraft +pencak +pemelton +peluse +pelnar +pellom +pellitteri +pelligrino +pellietier +pellicone +pelletiu +pellet +pellam +peleg +pekas +pekara +pehowich +peha +pegeron +peffly +pefferkorn +peetoom +peerzada +peecha +peduzzi +pedralba +pedez +pedeare +pecinousky +pechaira +pecatoste +pecarina +pecararo +pearyer +peacy +peachay +payseur +payor +payna +payant +payamps +pax +pawluch +pavliska +pavis +pavelski +pavella +pav +pauza +pausch +paulshock +paulseth +paulmino +paulic +paulauskis +paulauskas +paulas +pauker +paugsch +patzner +patzke +patwell +patuel +pattyre +pattinson +pattengale +patriquin +patrin +patrias +patria +patolot +patik +paterniti +patellis +patches +patcher +patanella +pataki +patajo +pasvizaca +pastures +pasto +pastian +passerino +passer +paskow +pasket +pasinski +pasho +pashea +pashal +pascorell +pascoal +pascanik +pascall +pasaya +pasana +paruta +party +partman +partipilo +partenope +partelow +part +parsygnat +parsh +parsells +parrotta +parron +parrington +parrin +parriera +parreno +parquette +parpan +parone +parnin +parms +parmantier +parkos +parkhouse +parizek +paripovich +parinas +parihar +parhan +pargman +pardoe +parayuelos +paravano +paratore +parara +papranec +pappajohn +paponetti +papitto +papike +papiernik +papciak +papantonio +papanikolas +papania +papan +papale +pap +paongo +paola +panzica +panzella +panyko +panuccio +pantosa +pantoliano +pantelakis +panrell +panowicz +panora +pankiw +pankake +panitz +panila +panias +paneque +panela +paneczko +pandola +panahon +panah +panagoulias +panagis +paluszynski +paluk +paluck +palu +paloukos +palombit +palmios +palley +pallant +pallansch +pallafor +palisbo +palchetti +palazola +palas +palacois +pakonen +pajerski +paillant +pahk +pagni +pagnello +paglio +paga +pafel +padol +padgette +padeken +paddio +paddilla +paddack +padavich +pacquin +packineau +pacior +pacholec +pachlin +pachla +pach +pacenta +pacek +pacapac +pacana +paben +paarmann +paalan +ozer +ozane +ozaine +ozaeta +oz +oyston +oyellette +oxton +oxnam +oxenrider +oxborough +owers +ow +ovit +ovesen +overstrom +overshiner +overmire +overley +overkamp +overdick +overbough +ovdenk +ovadilla +ouye +outzen +ousdahl +oury +ourth +ounsy +ouellete +oudker +otutaha +otuafi +ottrix +ottogary +ottino +ottilige +ottenwess +otiz +othoudt +otex +otega +osvaldo +ostwald +ostrzyeki +ostrum +ostroot +osterhaut +ostendorff +ostenberg +ostasiewicz +osswald +ossola +osowicz +osorno +osollo +osol +osnoe +osmus +osmanski +osias +oshman +osentowski +osden +osche +osbeck +orttenburger +ortolf +orto +ortga +orrego +orpin +orozeo +orochena +orobona +oroark +ornelos +ornedo +orne +orm +orlove +orlosky +orlof +orlinsky +orlinski +orlin +orizabal +oriti +orion +origer +orie +orhenkowski +orford +orff +oreskovich +orellama +oreily +orehek +oreb +ordazzo +ordahl +orcholski +orce +oras +opula +opstein +oppliger +oppegard +opichka +opher +opet +opalicki +opaka +ooton +onyeanus +onwunli +onukogu +onisick +onifade +oneale +ondik +ondic +ondersma +omullan +omoto +omo +omlin +omli +omersa +olverson +olveira +olvedo +olowe +olona +olnes +olloqui +olliver +ollhoff +ollendick +olkowski +olivid +olivers +oliveres +olivarra +olinghouse +oligee +olgvin +olfers +olewinski +olewine +oleveda +oleskiewicz +olejarski +olecki +olde +olckhart +olbrish +olay +olarte +okwuona +okuley +okula +okorududu +okoren +okoli +okihara +okerson +oken +ojard +ojanen +oines +oilvares +oieda +ohrnstein +ohren +ohmit +ohmie +ohlmacher +ohlenbusch +ohlen +ohaver +oharroll +ogwynn +ogunyemi +ogram +ogilive +ogen +ogbonnaya +ogasawara +ogans +ogami +oflahrity +offret +oen +oeler +oehrlein +oehrle +oehmke +oehmig +oeftger +oeder +odougherty +odorizzi +odomes +odin +odien +odhner +odess +odenheimer +ocus +ochsenbein +ochinang +ochiai +ochalek +occhino +ocacio +obnegon +oblow +oblinger +obiano +obery +oberson +oberpriller +obermuller +obermoeller +oberholzer +oberhaus +oberdier +oberdick +oaxaca +oar +nysether +nykiel +nygaro +nycum +nyahay +nwankwo +nwakanma +nwadiora +nwabeke +nuzenski +nusz +nunnelee +nunmaker +nuniz +nunery +nulisch +nuetzman +nuessle +nuesca +nuckoles +nuccitelli +nucci +nozum +nozick +nowzari +nowosadko +nowley +nowitzke +novitsky +novitski +novitske +novikoff +novida +novetsky +novelly +novellino +novara +nouth +noullet +noud +notwick +notowitz +notley +notis +nothem +nothacker +nostro +noseff +norwell +northwood +northcut +norstrud +norseth +norse +norsaganay +norko +norkaitis +noriego +norg +noreiga +nordwall +nordsiek +nordlinger +nordick +nordenstrom +norbo +noorigian +noordam +nonu +nones +noneman +nondorf +noltensmeier +nollette +nolfe +nolazco +nokken +noke +noiseux +noia +nohe +nogueda +noguchi +nogoda +noggles +noggler +noftsier +noey +noerenberg +noegel +nodurft +nodarse +nockai +nobregas +nobis +nkuku +nkomo +njango +niziol +nixion +nixa +nivar +nivala +nitzschke +nitzsche +nitzkowski +nitcher +niswender +nisley +nishimori +nirmaier +nipps +nipple +ninke +nini +ninh +nimrod +nimox +nimick +nila +niksich +nikodem +nikocevic +nikaido +nightlinger +niggemann +nietfeldt +niess +niesent +niesborella +nierer +niemitzio +niemiel +niemants +niedzwiedzki +niedzwiedz +niedens +niedbalec +niebaum +nicoson +nicoli +nicolaus +nickoley +nicklos +nicklien +nickenberry +nickas +nicholason +nichell +nichalson +nicewonger +niau +nian +nham +nguyan +ngin +nezich +nezat +neyaci +newstead +newness +newhook +newes +newens +newbell +newball +nevinger +nevilles +nevil +never +nevarrez +neuse +neundorfer +neuenswander +neudeck +neubig +neubaum +neubacher +nettleingham +netrosio +netolicky +netley +nesti +nessmith +neslusan +nesline +nesland +nesin +nerlich +nepa +neonakis +nenni +nemzin +nemunaitis +nemets +nemard +nemani +nelmes +nellums +nellenback +nelisse +nejaime +neja +neither +neiswoger +neiper +neild +neidiger +nehrt +nehme +neglio +negbenebor +needy +nedman +nedina +nederostek +nedelman +neddo +nedbalek +nebred +neblock +nebesnik +nebarez +neall +nealious +nealer +neahr +ncneal +nazzise +nazzal +nazir +nazelrod +naz +naysmith +nayman +nawwar +nawda +naveed +navarrate +navaretta +navappo +navanjo +natwick +nattiah +natsis +nati +nathans +natewa +natani +natalello +nasti +nassie +nasr +nasers +nasalroad +narr +nargi +nardy +napieralski +nanthanong +nantanapibul +nanna +nanik +nanasy +nanas +namur +namihira +namaka +nalty +nalbach +naki +nakatsu +nakamori +najarian +nailer +naifeh +naidu +nahrwold +nahl +nahari +nagode +nagindas +nagengast +nagelhout +nagase +naftzinger +naftali +naeher +nadoff +naderi +nadelbach +naddeo +nacy +nacisse +nacion +nachtrieb +nachmias +nachazel +nacar +naborg +nabity +nabhan +mytych +myslinski +myslin +mysak +myrtle +myrman +myrck +myntti +mynnerlyn +mylott +myking +myes +mycroft +mway +muzyka +muzacz +muyskens +muysenberg +mutone +mutner +mutherspaw +muthart +muthana +mutart +musty +muston +mussmann +musshorn +musse +muss +musquiz +musolf +muskthel +muska +musinski +musigdilok +muschick +muschett +musch +murwin +murty +mursko +murnock +mure +murasso +muraro +muran +murallies +muraco +munyer +munshi +munning +munl +munir +muninger +munhall +muney +munet +mundziak +mundschau +mundhenk +munderville +muncil +munchmeyer +munaz +muna +mulzer +mulvahill +mulryan +mulroney +mulready +mulneix +mullowney +mullner +mullison +mullany +mulich +mula +muhtaseb +muhlenkamp +muhlbach +muggley +mueske +muenkel +muell +muehleisen +mudrick +muddaththir +muczynski +mucklow +muckley +muckelvaney +muchortow +mthimunye +mrazik +mozzone +mozo +mozley +mozie +mozgala +mozelak +moyerman +mowder +mowan +movlin +mouzas +mourino +moulhem +mottillo +motteshard +mottershead +motamed +mosz +mostoller +mostiller +mostero +mostella +mosson +mossing +mossien +mossel +mosmeyer +moskau +moshos +mosho +moscovic +moscaritolo +moscariello +moscardelli +morosow +morono +morneault +morna +morn +morkve +moriwaki +morise +moriera +moricle +moribayed +morgret +morgner +morgas +morgans +morgandi +morfee +morelen +moreida +moreci +moreb +mordino +mordini +mordehay +morda +mootz +mootispaw +moosbrugger +moosa +moonsommy +moonshower +moodispaugh +mooberry +monz +montuoro +montrella +montijano +montgonery +montelle +montell +montcalm +montalgo +monske +monrroy +monrow +monnot +moniak +mongue +mongolo +mongiovi +monfore +mondoux +mondone +mondell +mondaine +moncrieffe +moncrieff +moncier +monasterio +monarque +monaham +monagle +momper +momeni +moltrie +molone +molly +mollohan +molliere +mollere +molleker +mollberg +molinini +moling +molineaux +molett +moldan +molavi +molaison +mokriski +mokiao +mojzisik +mojardin +moisey +mohorovich +mohinani +mohaupt +mohabeer +mogollon +moghadam +mofle +mofford +moevao +moelter +moede +modrak +moddejonge +mockler +mocha +mobilio +mlenar +mizzi +mizner +mizee +miyasaka +miyao +mixdorf +mitter +mittchell +mittag +mithani +mitchler +misove +mismit +misluk +miskovich +mishou +miserendino +misek +miscoe +mirmow +mirman +mirkovich +mirao +miran +miquelon +minucci +mintreas +mintos +mintor +minotti +minock +minnatee +miniuk +minissale +minihan +minicozzi +mini +minford +minette +minery +minehan +mineconzo +mindingall +minchella +minarcik +minacci +mimaki +milz +milwee +miltz +milsaps +milosevich +millstead +millott +millora +millian +millhiser +millerr +millbrand +millbern +millberg +milkent +milius +milite +milelr +mildred +milderberger +mildenstein +milbrodt +milare +mikulec +mikovec +mikota +mikolon +mikhaiel +mikez +miker +mikasa +mihovk +mihor +mihaliak +mihalco +mihalak +miggo +miessler +miernik +miernicki +miene +mieloszyk +mielkie +mielczarek +mielcarz +miehe +midget +middough +middents +microni +mickulskis +micks +mickonis +mickenheim +michello +michealson +michavd +michalczik +mezzinni +mezzanotte +meysembourg +meyerowitz +meyerott +meyerman +meyerhoefer +mevis +mevers +meuler +meulemans +meua +metzga +metzel +mettlen +mettille +metott +metos +metil +metia +metherell +metevelis +metenosky +meteer +metchikoff +mestler +mestanza +messman +messey +messervy +messel +messan +mesoloras +mesmer +mesiona +mesias +meshew +meshanko +meservy +mesecar +mesdaq +merzig +mervine +mertine +merrills +merren +merlette +merles +merlain +merl +merksamer +merithew +merisier +mering +merilos +merical +merhar +merette +mereno +merdian +merceir +mercando +merante +merana +merales +menucci +mentkowski +mentgen +menso +mensen +menkin +menjes +menjares +menitz +menietto +menier +meneus +menefield +menees +mendrin +mendrala +mendler +mendiaz +mendesa +mencke +menchu +menches +menas +mems +memo +memmo +meltzner +melter +melstrom +melsheimer +melser +melodia +mellos +mellis +melliere +mellie +mellecker +mellage +mellady +melikyan +melford +meley +melencamp +meleen +melear +melchert +melaun +melaro +melady +mekonis +meisenburg +meireles +meinsen +meinershagen +meil +meihofer +mehrotra +mehlhaff +mehis +mehelich +mehdizadeh +mehdi +meharry +mehalko +megraw +megown +mego +megill +megia +meggison +meggett +meggerson +meetze +meeroff +meemken +meehleder +meeds +medure +medosch +medora +mednis +medling +medland +medious +medino +medin +medill +medieros +medi +medhus +medearis +medanich +medalion +meckel +meccia +mecardo +measheaw +measeck +mearing +meara +meakin +mcwilson +mcward +mcwalters +mcwade +mcvoy +mctush +mctiernan +mctarnaghan +mcswiggan +mcstay +mcritchie +mcrill +mcquiddy +mcqueeny +mcpharlane +mcphan +mcpartlin +mcnutty +mcnuh +mcnicoll +mcnicol +mcnevin +mcnespey +mcneme +mcnellie +mcnayr +mcmina +mcmenamy +mcmanigal +mcluckie +mclilly +mcleskey +mclearan +mclauchlen +mclatchy +mclaen +mckray +mckouen +mckoon +mckisson +mckinna +mckines +mckimmy +mckimley +mckewen +mckerrow +mckenzy +mckentie +mckemie +mckaskle +mckanic +mcintyde +mcinroy +mcinnish +mcilwaine +mciltrot +mchalffey +mcgurren +mcgurr +mcgunnis +mcgunnigle +mcgunagle +mcguinnes +mcguin +mcgrotha +mcgrogan +mcgraph +mcgoon +mcglothern +mcgloster +mcglohon +mcglockton +mcglawn +mcginnity +mcginister +mcgilberry +mcgiboney +mcghin +mcghaney +mcgeeney +mcgeady +mcgartland +mcgarraugh +mcgaffey +mcgafferty +mcgaffee +mcfeeley +mcfan +mceneny +mcelwine +mcelreavy +mcelpraug +mcelmeel +mceirath +mceady +mcdunn +mcdonnall +mcdewitt +mcdermett +mcdeavitt +mcdearmont +mccurine +mccunn +mccumbers +mccumbee +mccullors +mccullon +mccullogh +mccullock +mccuan +mccrate +mccra +mccoulskey +mccornack +mccormik +mccorkindale +mccorison +mcconnal +mccomack +mccole +mccoil +mccoard +mcclurken +mcclodden +mcclod +mcclimens +mccleveland +mcclenningham +mcclellon +mcclaugherty +mcclatcher +mcclarty +mcclamma +mcclaim +mcchain +mccelland +mccastle +mccarvill +mccarther +mccarr +mccarns +mccarn +mccard +mccandrew +mccandliss +mccalvin +mccalpin +mccalment +mccallun +mccallough +mccahan +mccaffree +mcbratney +mcaveney +mcausland +mcauly +mcarthun +mcanaw +mcall +mbamalu +mazzera +mazze +mazzawi +mazzaferro +mazzacano +mazuo +mazion +mazey +maywood +mayshack +mayrose +mayou +mayorca +mayoka +maynerich +maylone +mayhood +mayeshiba +maydew +maxi +maxell +mawhinney +mavropoulos +mavle +mavai +mautte +mauson +mausey +mauseth +mausbach +maurus +maurizio +maura +maupredi +maung +maultasch +mauleon +maud +matyi +matuszak +matushevsky +matusek +matuck +mattys +mattsey +mattione +mattias +matteis +matsu +matsoukas +matrey +matot +matlin +matkowsky +matise +mathwich +mathus +mathony +mathery +matherson +mathen +maten +matelich +matejek +matczak +matchen +matarrita +matakonis +mataka +matacale +masuyama +masure +masupha +masudi +masturzo +mastrocola +mastriano +mastrianni +mastrianna +mastrelli +massicotte +massetti +massella +massei +massee +massaquoi +masood +masom +maslowsky +masloski +maslonka +maski +maskaly +masiejczyk +masgalas +masero +masenten +masciantonio +masaya +masaracchia +marzocchi +marzili +marzigliano +marye +marusiak +marullo +marturano +martos +martorello +martineze +martillo +martignago +martiarena +marsters +marshalek +marsell +marsek +marseglia +marriot +marrion +marrington +marrietta +marrello +marreel +marrable +marquina +marque +marozzi +marovic +marotti +marose +marnett +marmolejos +markt +markson +marklund +markewich +marinoni +marinko +marinas +maril +mariello +marguardt +margreiter +margraf +margel +margaryan +margarita +margan +marevka +maresco +marero +marentez +maree +mardini +marcotrigiano +marcoguisepp +marcks +marcinka +marchizano +marchitto +marchiony +marchionese +marchesseault +marcheski +marchesano +marchall +marceaux +marbray +maratre +maratos +marashi +marasciulo +maras +marantz +marallo +maragni +maragh +marabella +maquis +maontesano +maobi +manzie +manzay +manvelito +manvel +manuell +mantik +mantele +mantegna +mansbridge +mansanares +manora +manolakis +manokey +mannine +mannheimer +mannebach +mannchen +manlito +mankoski +manivong +manheim +mangubat +manfra +manemann +manecke +mandry +mandler +mandi +mandap +mandahl +mancos +manciel +mancherian +manchel +manca +manby +manatt +manaker +mamone +mammano +malvern +malton +malsch +malovich +malouff +malory +maloff +malocha +malmanger +mallinger +mallinak +mallegni +mallat +malkoski +malinky +malinak +malichi +malgieri +maleszka +males +maleonado +malenke +malekan +malehorn +maleck +malcome +malay +malawy +malarkey +malanado +malama +malabey +makua +makhija +makel +makarem +majorga +majocka +majica +majic +majeau +maizes +mairot +maione +mainz +mainland +mainetti +mainero +maimone +maifeld +maiers +maiello +maidonado +maicus +mahung +mahula +mahrenholz +mahran +mahomly +mahin +mahe +mahall +mahal +magsby +magsayo +magrone +magraw +magrann +magpali +magouliotis +magorina +magobet +magnini +magnifico +magnie +magnett +maglioli +maggit +magg +magette +magdefrau +magdalena +magaziner +magathan +magalski +magaldi +magadan +mafua +maeno +maenaga +maedke +madziar +madre +madine +madin +madhavan +madge +madeja +maddoy +maddison +maddin +maddern +mad +macvicar +macurdy +macreno +macpartland +macoreno +macola +macnutt +macnevin +macmullan +maclain +mackstutis +macknair +macklem +mackillop +mackenthun +mackechnie +mackaman +macione +maciolek +maciarello +machover +machle +machi +machel +machak +macduffee +maccutcheon +macculloch +maccord +macconaghy +maccoll +macclellan +macclairty +maccini +macchiarella +maccheyne +maccarter +maccarino +maccarini +macandog +macanas +macalma +macabeo +maasen +maarx +lytell +lyson +lysher +lyngholm +lynchj +lynah +lyme +lyken +lyew +lydecker +lybert +lyberger +lybecker +lyau +lweis +luzi +luzell +luvianos +luvera +lutze +lutkus +luten +lusty +lustberg +lurye +lury +lurtz +luquette +lupiani +lupacchino +lunter +lunstrum +lungwitz +lungsford +lunemann +lunderman +lunch +luminati +lumbley +lumba +lumadue +lulas +lukow +lukianov +lukesh +lukander +luka +luing +luikart +lugabihl +lufborough +luette +luescher +lueschen +luersen +luensmann +luening +lueker +luedecke +lueckenbach +luebbering +ludovico +ludera +ludeker +ludecke +luczki +luco +luckinbill +lucis +lucik +lucie +lucic +luchterhand +luccous +lucash +luberger +lubbert +lubben +lubawy +lubahn +luangxay +luangrath +luangamath +luague +lozey +loyborg +loyack +loxton +loxtercamp +lownsbery +lowler +lowcks +lowa +lovstad +lovisone +lovfald +lovetinsky +lovet +lovero +loverdi +lovellette +loveberry +louwagie +lournes +louria +lourentzos +lourdes +louka +louil +loudermelt +louchen +loubier +lotto +lotridge +lothringer +lothridge +lota +lot +loszynski +lossius +losneck +loseth +losavio +losardo +losano +losado +losacco +losa +lorr +loron +lorincz +loria +loretz +lorentine +lordi +loraine +lopze +lopiccalo +lopey +loperfido +lope +lopata +lopas +loparco +loofbourrow +longwith +longhi +longenberger +longbine +longaker +longabaugh +lomonte +lomino +lominack +lomen +lombel +lombardino +lomago +loma +lokan +loiacona +lohry +lohrke +lohre +logoleo +loggens +logarbo +lofwall +lofty +lofts +lofthus +lofte +lofstrom +loforte +lofman +lofing +lofguist +loffier +loffelbein +loerwald +loeppky +loehrer +loehner +loecken +lockshaw +locknane +lockington +lockery +lockemer +lochrico +lobregat +lobley +lobello +lobell +lobalbo +lobach +llaneza +llanet +llams +livley +livinton +living +liversedge +livernois +livermon +liverance +liveoak +livecchi +livasy +liukkonen +litzenberger +litvak +littfin +litmanowicz +litchard +listi +listen +lisker +lisitano +lisena +lisbey +lipsie +lips +lippoldt +lippitt +lipper +lipoma +lipkovitch +lipira +lipan +linzan +linza +linsin +linsenmayer +linsdau +linnert +linman +linkon +lingner +lingley +lingerfelter +lingbeek +linero +lindorf +lindmeyer +lindinha +linderleaf +lindau +lindabury +linburg +linak +limmel +limle +limbert +limardi +lilyblade +lillehaug +likar +liiv +ligonis +ligler +lighthart +ligget +liftin +lifschitz +liewald +lievsay +lievens +lietzow +lierz +liegler +liedberg +lied +liebrecht +liebherr +lieberg +liebenthal +liebenow +liebeck +lidstone +lidie +lidge +lidder +licursi +licklider +lickfelt +lichota +lichenstein +liceaga +liccketto +libertini +libberton +leyton +leyh +leydecker +leyda +lexer +lewi +lewars +levreau +levra +levielle +levian +leveto +leversee +levers +leverone +leverance +levendoski +levee +levatino +levans +levandofsky +leuze +leutwiler +leuthe +leuhring +leuga +leuckel +leuasseur +lettsome +lettiere +letscher +letender +letchaw +leta +lestrange +lestourgeon +lestor +leston +lessner +lessmann +lessly +lespedes +leso +lesneski +leskovar +leskovac +lese +lesco +lesches +lesa +lerra +lerper +lerow +lero +lermon +lepretre +lepre +leppink +lepke +lepez +lepetich +leopardi +leonpacher +leonick +leonberger +leomiti +leny +lenski +lenorud +lenort +lennis +lennart +lennan +lenling +lenke +lenigan +lenhoff +lenharr +leners +lendt +lendor +lendo +lenczyk +lench +lenberg +lemoyne +lemmonds +lemmings +lemish +lemear +lembcke +lemansky +lemans +lellig +lekey +lekberg +lekan +lek +lejman +leitzinger +leithiser +leiper +leinwand +leimkuhler +leimberger +leilich +leigland +leichtenberge +leiberton +leho +lehning +lehneis +lehmer +lehenbauer +lehberger +legrotte +legro +legra +legat +legall +lefurgy +leflores +leffers +leffelman +lefeld +lefaver +leetham +leesman +leeker +leehan +leeber +ledsinger +ledermann +ledenbach +ledee +led +lecznar +leckband +lechleidner +lechelt +lecato +lecaros +lecain +lebroke +lebold +leblane +lebitski +lebish +leberte +lebedeff +lebby +lebaugh +lebarge +leavigne +leaven +leasor +leasher +leash +leanza +leanen +leaird +leahman +leadford +lazusky +lazurek +lazott +lazio +lazier +lazich +lazewski +lazares +layva +layell +laycox +lawsky +lawrentz +lawis +lawford +lawcewicz +lawbaugh +lawary +lawal +lavongsar +lavgle +lavezzo +lavelli +lave +lavani +lavander +lavagnino +lavadera +lautieri +lautaret +lausell +lauschus +laurole +lauretta +laureno +laureles +laurance +launiere +laundree +lauigne +laughon +laugen +laudeman +laudadio +lauckner +lauchaire +lauby +laubersheimer +latus +latourrette +latos +laton +lathrum +lather +lathe +latendresse +late +latassa +latam +lat +lastella +lassetter +laskosky +laskoskie +lasin +lasik +lashlee +lashier +laselle +laschinger +lascaro +lasane +lasagna +lasage +larusch +larrosa +larriviere +larralde +larr +larowe +larousse +larotta +laroia +laroe +larmett +larman +larkan +largena +laregina +lardone +larcom +larche +larbie +larbi +larason +laranjo +laragy +laraby +larabell +larabel +lapuerta +lappinga +lappi +laport +lapinta +lapila +laperuta +lapere +laper +lapek +lapari +lapalme +laorange +lanze +lanzarotta +lantry +lantgen +lantelme +lanteigne +lansey +lansberg +lannier +lannen +lanna +lankster +lanie +langrum +langness +langmo +langlitz +langi +langholdt +langhans +langgood +langanke +lanfor +lanen +laneaux +landu +landruth +landrie +landreville +landres +landquist +landolf +landmark +landini +landevos +landenberger +landan +lancz +lamudio +lampsas +lampl +lampinen +lamphiear +lampel +lamoree +lamoreau +lamoore +lamontagna +lammy +lammel +lamison +laming +lamie +lamia +lameda +lambuth +lambertus +lambermont +lamartina +lamango +lamaack +lalinde +lalich +lale +lakowski +lakhan +lajoye +lajoy +laios +lahne +laham +laguire +lagrenade +lagore +lagoo +lagonia +lagoni +laglie +laggan +lagesse +lagerstedt +lagergren +lagatta +lagard +lagant +lagamba +lagadinos +lafuze +lafrate +laforey +lafoon +lafontain +laflam +laffer +lafevre +lafemina +lafantano +laface +laessig +laehn +ladt +ladouce +ladonne +lado +ladika +ladick +ladebauche +lacz +lacusky +lacovara +lackett +lackage +lachino +lachiatto +lacharite +lacerenza +lacek +lacau +lacatena +lacaille +labovitch +labounta +labombar +laboissonnier +labo +labitan +labier +labeots +labarriere +labaro +labarbara +laatsch +laasaga +laake +kyseth +kypuros +kyper +kyner +kwilosz +kvzian +kvoeschen +kveton +kvek +kveen +kvaternik +kuziel +kuypers +kuykendoll +kuwana +kuwada +kutzer +kuty +kutlu +kuti +kutchie +kuszynski +kussmaul +kussel +kusnic +kusner +kusky +kushaney +kurzinski +kurtti +kurshuk +kurr +kurokawa +kurns +kuretich +kurasz +kurant +kura +kur +kupihea +kupferberg +kupersmith +kupchinsky +kunter +kunkleman +kuniyoshi +kunimitsu +kunich +kundanani +kunau +kummerow +kumlander +kumfer +kuman +kumalaa +kum +kulseth +kulbeth +kulbacki +kulback +kukura +kukler +kuklenski +kukauskas +kukahiko +kujat +kuiz +kuitu +kuick +kuhry +kuhlenschmidt +kuffa +kuepfer +kuehnhold +kuechler +kudro +kudrle +kuczma +kuckens +kuciemba +kuchinski +kuchem +kubley +kubler +kubesh +kubeck +kubasch +kub +kuanoni +krzewinski +krzesinski +krzan +kryston +krystek +krynicki +krylo +kruzel +kruyt +kruszewski +krusor +kruskie +krushansky +krush +kruppenbacher +krupinsky +krumroy +krumbein +krumbach +krukiel +kruizenga +kruis +kruiboesch +kruebbe +krucke +krotine +krostag +kropff +kropfelder +kroninger +kronau +krome +krolick +krokus +krog +krofta +krofft +kroesing +krochmal +krobath +krnach +krivanec +kristofferson +kristof +kristan +krissie +kriskovich +kriske +krishun +krishnamurthy +krishman +krinov +kriek +kriegshauser +krewer +kreutzbender +kreusch +kretzinger +kressler +kressin +kressierer +kresky +krepp +krenzke +krenning +krenik +kremple +kremmel +kremen +krejcik +kreissler +kreinhagen +krehel +kreese +krawitz +kravetsky +kravets +kravec +krausse +krausmann +krauel +kratowicz +kratchman +krasnici +krasnansky +kraskouskas +krasinski +kranwinkle +kranock +kramarczyk +krallman +krallis +krakowiak +krakauer +krainbucher +kraig +kraichely +krahulec +krahe +krah +kragt +kraetsch +krabel +krabbenhoft +kraasch +kraack +kozlovsky +kozlik +koziak +kozeyah +kozan +kowitz +kowalke +kowalec +koves +kovalaske +kovacik +koutras +koussa +kousonsavath +kounthong +kounthapanya +kounovsky +kounkel +kounick +koulavongsa +koulalis +kotyk +kotur +kottraba +kottlowski +kotterna +kotschevar +kotonski +kotlar +kotheimer +kotey +koterba +koteras +kotarski +kotaki +kosuta +kostrzewa +kostiv +kosters +kossey +kossen +kossak +kososky +kosorog +koso +koslan +kosiorek +koshi +koscielniak +kosareff +korzyniowski +korzybski +korynta +korwin +korwatch +kortemeier +korst +korsmeyer +korslund +koroch +kornn +kornfield +kornblatt +korkmas +koritko +korinta +koria +korewdit +kores +korenek +kordys +kordowski +kordiak +korbin +kopsho +koppy +kopke +kopin +kopicko +kopiasz +koperski +kopay +kopatz +kopan +koosman +koong +koolman +kool +konty +konow +konopski +konma +konishi +konger +konetchy +kone +konderla +konczewski +konarik +komula +kominski +komada +koma +kolwyck +kolupke +koltz +kolts +kolppa +koloc +kollross +kollos +kolkman +kolkhorst +kolikas +kolic +kolbusz +kolassa +kol +kokubun +kokoszka +kokko +kokenge +koitzsch +koiner +kohus +kohles +kohel +koguchi +kofoot +koers +koenitzer +koeninger +koenigsberg +koener +koenemund +koelbel +koehring +koeck +kody +kodera +koczwara +kocieda +kochkodin +kochen +kochanek +kobylski +kobylarz +kobylarczyk +kobold +knyzewski +knupke +knudsvig +knowiton +knowell +knous +knotowicz +knorp +knoflicek +knoeppel +knoepke +knoell +knoechel +knodel +knockaert +knobler +kniola +knill +knilands +kniesel +kniceley +kneuper +knetsch +kneser +knerien +knellinger +kneefe +knazs +knatt +knapko +knapick +knape +knap +knake +kmiotek +kment +kmatz +kman +klyn +klute +kluse +klumph +klukken +klukan +kluemper +kluber +klosky +kloppenburg +klonowski +klomp +klohs +klohe +kloeppel +kloeker +kloefkorn +kloeck +klobucar +kljucaric +klitzner +klitsch +kliskey +klinski +klinnert +klinich +klingner +klingenberger +klingberg +klingaman +klimo +klimavicius +klickman +klicka +klez +klevjer +klette +kletschka +kless +kleppen +klenovich +kleintop +kleinsasser +kleinfeld +kleifgen +kleid +kleftogiannis +kleefisch +kleck +klebes +klear +klawuhn +klawinski +klavon +klavetter +klarin +klappholz +klande +klancnik +klan +klamn +klamert +klaja +klaich +klafehn +klabunde +kjolseth +kjergaard +kjellsen +kjellman +kjeldgaard +kizzia +kizior +kivela +kitty +kitthikoune +kittelman +kitelinger +kitcher +kitchenman +kitanik +kisro +kisielewski +kiryakoza +kirsopp +kirshman +kirlin +kirkness +kirkling +kirkconnell +kirgan +kirchmann +kirchherr +kirchberg +kirchbaum +kirberger +kiracofe +kipple +kip +kious +kintopp +kintigh +kinsolving +kinsky +kinlin +kinlecheeny +kingwood +kingson +kinds +kindregan +kinderman +kinde +kimminau +kimbal +kilver +kiltie +kilstofte +kilogan +kilness +kilner +kilmister +killoren +killius +kilimnik +kilichowski +kildare +kiko +kijak +kiili +kihlstrom +kietzer +kiesser +kierzewski +kienbaum +kienast +kieke +kieck +kiebala +kiddle +kickel +kichline +kibbler +kiani +khubba +khora +khokher +khn +khlok +khilling +khensamphanh +khemmanivong +khazdozian +khazaleh +khauv +khairallah +kezele +keyon +keyl +kew +kevwitch +kevorkian +keveth +kevelin +kevan +keuper +ketzler +kettinger +ketterl +ketteringham +kettenring +ketchersid +kessans +kesey +kesek +kertzman +kertels +kerst +kerper +kernodle +kernighan +kernagis +kermes +kerens +kercheff +kerce +kerans +keppner +kepke +kepani +keovongxay +keoghan +keodalah +keobaunleuang +kenzie +kenson +kenoyer +kenouo +kennie +kenngott +kennaugh +kenik +keney +kenekham +kenealy +kendziora +kendal +kenaga +kempster +kemps +kempon +kempkens +kemmeries +kemerly +keltt +kellywood +kellish +kellem +keliipaakaua +kelau +keks +keisacker +keis +keinonen +keilholz +keilholtz +keihl +kehres +keetch +keetan +keet +keeser +keenom +keeman +keehner +keehan +kedra +kedia +kecskes +kecker +kebede +kebe +keba +keaty +keaten +keaser +kearsey +kearn +kazunas +kazimi +kazar +kazabi +kaza +kayat +kayastha +kawski +kawell +kawczynski +kawaiaea +kave +kavaney +kaut +kaushal +kausch +kauo +kaumans +kaui +kauder +kaucher +kaua +katzmann +katzaman +katterjohn +kattaura +katsaounis +katoh +katke +katis +katin +katie +kathleen +kathel +kataoka +kaszton +kaszinski +kasula +kasuba +kastens +kaspari +kasmarek +kasky +kashner +kasen +kasemeier +kasee +kasal +karz +karwowski +karstensen +karroach +karro +karrels +karpstein +karpe +karoly +karnath +karnas +karlinsky +karlgaard +kardux +karangelen +karamchandani +karagiannes +karageorge +karabin +kar +kapsner +kapperman +kappelmann +kapler +kapiloff +kapetanos +kanzenbach +kanwar +kantis +kantah +kanosh +kanoon +kanniard +kannan +kanjirathinga +kangleon +kaneta +kanekuni +kanealii +kand +kanakares +kamstra +kamradt +kampner +kamna +kammerzell +kamman +kamiya +kaminska +kamensky +kamber +kallhoff +kallfelz +kalley +kallestad +kallal +kalista +kalhorn +kalenak +kaldahl +kalberg +kalandek +kalan +kalamaras +kalafarski +kalaf +kakowski +kakeh +kakani +kajder +kaja +kaines +kaiktsian +kaid +kahookele +kahoohalphala +kahley +kahao +kahalehoe +kahal +kahae +kagimoto +kaewprasert +kaemingk +kadow +kadelak +kaczka +kacvinsky +kacprowski +kachmarsky +kabzinski +kabus +kabir +kabigting +kabala +kabacinski +kababik +kaarlela +kaanana +kaan +kaak +kaai +ka +juvenal +justian +juste +justak +jurries +jurney +jurkovich +jurist +jurin +jurgen +juray +junod +junkersfeld +junick +jumbo +julsrud +julitz +juliana +jukich +juengling +juen +juelich +judie +jubyna +jubran +jubeh +juback +juba +juanico +joynson +joyne +jover +journot +joto +jotblad +josic +jorrisch +jordt +jording +jondrow +jonah +jome +jollimore +joline +jolina +joler +joki +johnting +johnstonbaugh +johnikins +johniken +johe +johansing +johal +joganic +joerger +joelson +joehnck +jody +jodha +joanis +jirsa +jirak +jira +jingst +jhingree +jhanson +jews +jestis +jessica +jeskie +jesiolowski +jesenovec +jeschon +jermeland +jerkin +jericho +jerger +jergen +jerding +jepko +jens +jenovese +jennkie +jenderer +jenab +jempty +jemmings +jelome +jellings +jelden +jelarde +jeffryes +jeffirs +jedan +jecmenek +jecklin +jeck +jeanquart +jeanphilippe +jeannoel +jeanette +jeancy +jaysura +javis +javers +javed +jave +jaussen +jauhar +jastremski +jastrebski +jasmann +jaskolka +jasko +jaskiewicz +jasica +jasch +jarriett +jaroski +jarnutowski +jarmin +jaremka +jarema +jarels +jarecke +jarding +jardel +japak +janysek +janway +janowiec +janow +janofsky +janoff +jannise +jannett +jankoff +janeiro +jana +jaminet +jami +jamgochian +jamesson +jamer +jamel +jamason +jalovel +jalkut +jakubov +jaksic +jaksch +jakiela +jaji +jaiyesimi +jahosky +jahoda +jahaly +jagiello +jaggie +jafek +jafari +jae +jadoo +jaculina +jacquin +jacquelin +jacobsohn +jacobovits +jackso +jacksits +jackosn +jackett +jacinthe +jabbie +jabaut +jabali +jaarda +izak +izaguine +iwasko +iwashita +ivrin +ivener +iveans +ivancic +iuchs +itnyre +istorico +isiminger +isgur +isgro +isenbarger +iseman +isebrand +isaksen +isagba +isacson +isaack +irr +ironhorse +irigoyen +ireson +ipsen +iossa +inzano +introini +insognia +inserra +inostraza +innerst +innella +innarelli +innamorato +inkavesvanitc +ingvolostad +inguardsen +ingran +ingrahm +ingraffea +ingleton +inghem +ingersol +ingargiolo +inferrera +iner +induddi +indermuehle +indeck +indal +incomstanti +incera +incarnato +inbody +inabnit +imming +immerman +immediato +imholte +imeson +imbruglia +imbrock +imbriale +imbrenda +imam +imada +iltzsch +illovsky +illich +illas +illar +iliffe +ilg +ilarraza +ilaria +ilalio +ikzda +ikkela +ikenberry +ikemoto +ikemire +ikeard +ihnen +ihenyen +iheme +igus +iguina +ignoria +igles +igbinosun +ifie +ifft +ifeanyi +ifantides +iennaco +idrovo +idriss +idiart +ickert +icardo +ibric +ibdah +ibbotson +ibasitas +iarussi +iara +iannalo +iamiceli +iacuzio +iacobucci +iacobelli +hysquierdo +hyske +hydzik +hyberger +hyatte +huysman +huyna +hutyra +huttman +huttar +huter +husul +hustedt +hussy +hussong +hussian +huski +hushon +husein +husaini +hurtubise +hurta +hurni +hurme +hupy +huppenbauer +hunze +hunson +huner +hundertmark +hunderlach +humston +hummert +huminski +humerick +humbard +hulzing +hulshoff +hulmes +hukle +hujer +huitink +huirgs +hugus +huguet +hugghis +huffstutter +huerto +huertes +huenergardt +huemmer +huelle +huehn +huebsch +hudok +hudnut +hudlow +hudlin +hudes +huddy +huckabone +huckabaa +hubsch +hubl +hubertz +htwe +hsy +hrycko +hrna +hric +hribal +hrcka +hrbacek +hranchak +hradecky +hoysock +hoyne +hoylton +hoyal +hoxsie +howlingwolf +howett +howarter +hovnanian +hovard +hovantzi +hovanes +houzah +houtkooper +housner +housemate +hourihan +houltberg +houghtelling +houey +houchard +houben +hotter +hotten +hottell +hotek +hosoi +hosner +hosle +hoskyns +hoskey +hoshino +hosfield +hortein +horseford +horse +horridge +hornshaw +horns +hornlein +hornig +horneff +hormuth +horimoto +horesco +horenstein +horelick +hore +horbert +horabik +hoppenrath +hoppa +hopfauf +hoosock +hool +hoogheem +hoogendoorn +hoo +honus +honold +honokaupu +honigsberg +hongisto +hongeva +hones +honegger +hondros +hondel +honchul +honch +homza +homsey +homrighaus +hommer +homiak +homby +homans +holznecht +holzmiller +holzhueter +holzboog +holtmeier +holtmann +holthouse +holthoff +holtham +holtgrefe +holstad +holshovser +holquist +holmers +hollyday +hollo +hollner +hollinghurst +holleyman +hollett +hollerud +hollering +hollembaek +hollarn +hollamon +hollack +holihan +holibaugh +holgersen +holdy +holdgrafer +holdcraft +holdbrook +holcroft +holch +hokula +hokett +hojeij +hojczyk +hoivik +hoiseth +hoinacki +hohnson +hohney +hohmeier +hohm +hohlstein +hogstrum +hogon +hoglan +hogenmiller +hogains +hoga +hofstra +hofstadter +hofhine +hoffpavir +hoeser +hoerig +hoerger +hoelzel +hoelter +hoeller +hoek +hoehl +hoefflin +hoeffer +hodosy +hodnicki +hodermarsky +hodd +hockley +hochstine +hochfelder +hobstetter +hoblit +hobin +hoberek +hobb +hnot +hlywa +hlastala +hjermstad +hizkiya +hitzfelder +hiteman +hitchko +hitchingham +hissom +hismith +hiske +hirte +hirschmann +hirose +hirezi +hipsley +hippley +hipol +hintergardt +hinokawa +hinely +hindsman +hindmarsh +hinderaker +hindall +hinckson +hinajosa +himmelsbach +himmelright +hilyar +hilvers +hilu +hiltunen +hiltebeitel +hilsgen +hilovsky +hilo +hilmer +hillseth +hillered +hilleman +hillbrant +hillabush +hilla +hilkert +hilk +hildman +hilbner +hilbig +hilb +hila +hija +higy +hightshoe +higashida +hiens +hielscher +hidde +hidaka +hickley +hickingbotham +hickie +hiciano +hibble +hibbits +heziak +heynen +heykoop +heydenreich +heybrock +hevrin +hevessy +heugel +heuangvilay +hettes +hettenhausen +hetling +hetjonk +hethcox +hethcote +hetchman +hetcher +hesterly +hessman +hesselrode +hesselman +hesselbein +hesselbach +herzbrun +heryford +herwehe +hervol +hertle +herta +herskovic +hershnowitz +hershfield +herschaft +hersberger +herrud +herrnandez +herrlich +herritt +herrion +herrand +herran +herout +heroth +heronemus +hero +herny +hermus +herline +herley +hergenroeder +hergenreter +herena +herem +herek +hercman +heral +hequembourg +heppert +hepperly +heppel +heppding +henzler +hentrich +henter +hensle +hensdill +henschke +hennighausen +hennard +henkin +henges +henedia +hendson +hendsbee +hendrics +hendrickx +hencken +henchel +hencheck +hemsworth +hemry +hemperley +hemmig +hemmeter +hemmert +hemmelgarn +hemmeke +hemley +hemeyer +hemerly +hembre +hemans +hemanes +helwick +helvik +helphinstine +helphenstine +helowicz +helmert +helmen +helmbright +helliwell +helley +hellerman +hellenbrand +helferty +helfert +hekman +heitmuller +heitbrink +heisse +heisner +heir +heinzle +heinzerling +heino +heinig +heindl +heimerl +heimbuch +heilbrun +heilbron +heidtke +heidmann +heglund +heggins +heggestad +hegener +hegdahl +hefter +heffernen +heery +heebsh +hedrix +hedler +hedeiros +hedegaard +heddleson +heddins +hect +heckle +heckers +hebsch +hebrard +heberer +hebblethwaite +heaviland +heartley +hearston +heang +hean +heam +heagany +headlon +heading +hazouri +hazinski +hazekamp +hayword +haysbert +hayn +hayball +hawkings +havier +havermann +havekost +hauswald +haustein +hausteen +hauslein +hausher +haurin +hauptly +haulbrook +haukaas +haugaard +hauffe +hauben +hatzell +hatto +hattenbach +hatridge +hatlee +hathcox +hatchette +hatcherson +hatake +hassig +hasselvander +hasselkus +haslinger +haskamp +hashbarger +hasha +hasfjord +hasencamp +haseloff +haschke +hasbni +hasbell +hasak +harwin +harvley +harvilchuck +harvick +harutunian +hartzo +hartzheim +hartjen +hartgraves +hartgrave +hartgerink +hartenstein +harsy +harrisow +harrigton +harrellson +harralson +harrald +harradine +harraden +haroun +harnly +harnes +harnar +harnan +harnack +harlston +harlor +harleston +harkenreader +harkcom +harjochee +hargest +harges +harfert +harens +hardung +hardney +hardinson +hardigan +harby +harbus +harbough +harbottle +harbold +harary +haramoto +harader +harabedian +har +happney +happe +haper +hape +hanville +hanusey +hantzarides +hantula +hanstine +hansteen +hansson +hansrote +hansil +hanoharo +hanock +hannula +hanno +hannem +hanneken +hannegan +hanmore +hanisko +hanisco +hanify +hanhan +hanegan +handt +handshaw +handschumaker +handren +handlin +handing +handeland +hanagan +hanagami +hanafin +hanafan +hanacek +hamway +hampon +hamper +hamparian +hamor +hamontree +hamolik +hamnon +hamn +hammet +hammerstein +hammerstad +hammerlund +hammed +hammang +hameen +hamborsky +hamb +hamalak +hamai +halwood +halston +halpainy +halon +halmstead +halmick +hallstead +hallowich +hallio +hallie +hallerman +halleen +hallczuk +hallan +halgren +halechko +halcom +halbritter +halaliky +hal +hajdukiewicz +hait +haislett +hairster +hainsey +hainds +hailes +hagwell +hagon +haghighi +haggstrom +haggis +haggen +hageny +hagelgans +hagarty +hafenbrack +haessler +haessig +haerr +haener +haen +haeckel +hadson +hadland +hadian +haddaway +hackmeyer +hackethal +hackerd +hackenmiller +hackenbery +hacke +hackborn +hachette +habif +habermann +haberern +habbs +haakinson +haagensen +gzym +gyurko +gyllenband +gyaki +gwynes +gwenn +guzmdn +guziczek +guz +guyott +guyot +guyet +guttenberg +gutschow +gutreuter +gutrerrez +gutieres +gutiennez +guthorn +guthary +guterriez +gutenson +gussin +gushue +gusa +gurvine +gurtin +gurrad +gurne +guridi +gureczny +guralnick +gunzenhauser +gunthrop +gunkelman +gunagan +gun +gumphrey +gummersall +gumbert +gulnick +gullung +gullage +gulini +gulikers +guley +guldemond +gulde +gulbraa +gulati +guittennez +guitreau +guith +guitar +guirgis +guinle +guiltner +guilstorf +guillote +guillan +guilianelli +guilbe +guiffre +guiel +guidaboni +guiao +guialdo +guevana +guesman +guerrouxo +guerinot +gueretta +guenison +guenin +guempel +guemmer +guelpa +guelff +guelespe +guedesse +gudroe +gudat +guckes +gucciardi +gubser +gubitosi +gubernath +gubbins +guarracino +guarin +guariglio +guandique +guaman +gualdoni +guadalajara +grzywinski +grzywacz +grzyb +grzesiak +grygiel +gruzinsky +gruters +grusenmeyer +grupa +gruninger +grunin +grundon +gruhlke +gruett +gruesbeck +gruell +grueber +gruda +grubman +gruba +grovier +grothen +groszkiewicz +grossley +grossklaus +grosshans +grosky +groshek +grosenick +groscost +grosby +groombridge +gronvall +gromley +grollman +grohoske +groesser +groeber +grocott +grobstein +grix +grivna +gritsch +grit +gristede +grissam +grisostomo +grisom +grishan +grip +grinner +grinman +grines +grindel +grimlie +grimard +grillette +griggers +grigas +grigalonis +grigaliunas +grifin +griffins +griffes +griffel +grife +griesmeyer +griesi +griem +grham +grgurevic +greyovich +greydanus +greviston +gretzner +gretz +gretsch +greto +gresl +gresko +grengs +gremler +greist +greisser +greisiger +greiser +greiber +gregoroff +gregoreski +gregas +greenrose +greenlow +greenlees +greenfelder +greenen +greenbush +greeb +grebs +grebel +greaux +grdina +gravit +gravenstein +gravelin +grava +graul +graughard +graue +grat +grastorf +grassano +grasmuck +grashot +grasha +grappo +graper +granvil +granucci +grantier +granstaff +granroth +granizo +graniero +graniela +granelli +grandos +grandmont +gramza +graminski +gramberg +grahams +grago +graen +graefe +grae +gradle +graciani +graci +grabowiecki +grabauskas +gounder +gougeon +goudge +gouchie +gou +gottula +gottleber +gotthardt +gotowka +gotlib +gotimer +gothier +gothe +goswami +gostowski +gossin +gosserand +gossen +goshow +goshi +gosda +gosche +gorychka +gorri +gornikiewicz +gorlich +gorgo +gorglione +goretti +gorence +gorelik +goreczny +gordis +gorczynski +gorans +gootz +goosen +goonez +goolsbee +goolia +goodvin +goodpastor +goodgine +goodger +gooder +goodenberger +goodaker +goodacre +gonzolez +gonzaliz +gonsalues +gones +gone +gondran +gonda +gonazlez +gomzalez +gomey +gome +gomberg +golumski +goluba +goltry +goltra +golpe +golombecki +gollwitzer +gollogly +gollin +golkin +golk +goldware +goldrup +goldrich +goldhammer +goldhahn +goldfischer +goldfield +goldeman +goldak +golberg +golba +golanski +golabek +goick +gogocha +goglia +gogins +goetzke +goettman +goettig +goetjen +goeman +goeldner +goeken +goeden +godyn +godwyn +godown +godfray +goderich +gode +godde +goda +gockerell +gochnauer +gochie +gobrecht +gobeyn +gobern +gobea +gobbo +gobbi +gnagey +glugla +gluckman +gluc +glowski +glowka +glowinski +glow +glossner +gloff +gloe +glodich +gliwski +gliues +glise +glinkerman +glimp +glicher +glenny +glembocki +gleiss +gleichweit +gleghorn +glaviano +glauser +glaue +glaubke +glauberman +glathar +glasow +glashen +glasglow +glarson +glapion +glanden +glader +gladen +glacken +gjorven +gjokaj +gjesdal +gjelten +givliani +gitzlaff +gittere +gitlewski +gitchell +gissler +gisriel +gislason +girolami +girmazion +girellini +girauard +girardeau +girad +giove +gioriano +gionson +gioacchini +ginnetti +ginnery +ginanni +gillom +gillmer +gillerist +gillentine +gilhooley +gilfoy +gilespie +gildroy +gildore +gilcoine +gilarski +gihring +giggie +giessinger +gierling +gielstra +giehl +giegerich +giedlin +gieber +giebel +gidwani +gicker +gibes +gibbings +gibbard +gianopulos +gianola +giannell +giandelone +giancaspro +giancarlo +gian +giamichael +giagni +giacomazzi +giacoletti +giachino +ghramm +ghosten +ghiringhelli +ghiorso +ghil +ghia +gheza +ghekiere +gheewala +ghazvini +ghazi +ghazal +ghaor +ghane +ghanayem +ghamdi +gfroerer +geyette +gewinner +gewant +gevorkian +gevedon +geuder +getting +gettenberg +getschman +getachew +gestes +gesselli +geryol +gerych +gerty +gerton +gertken +gerster +gersch +gerpheide +geronime +gerondale +gerock +germinaro +germershausen +germer +gerlock +gerla +gerking +gerguson +geres +gerbs +gerbi +gerathy +gerardot +georgiana +georgales +geohagan +geoghan +geoffrey +genualdi +gentis +gennusa +gennaria +gennarelli +genin +genga +geng +geneseo +generous +generoso +genera +genberg +gemmel +gembe +gembarowski +gelzer +gelo +gellis +gellespie +gell +gelineau +gelger +geldrich +gelbach +geister +geissel +geisen +geiman +geils +gehrking +gehri +gehrett +gehred +gefroh +geerken +geelan +gedris +gedo +gechas +gecan +gebrayel +gebers +geasley +geanopulos +gdula +gbur +gazzillo +gazza +gazo +gaznes +gazdecki +gayoso +gayo +gaymes +gawlak +gavula +gavles +gaviria +gavinski +gavigan +gaves +gavell +gavalis +gautsch +gauron +gauntner +gaulzetti +gattie +gatski +gatch +gata +gastelun +gastellum +gastel +gasson +gassler +gasse +gasquet +gaspari +gasienica +gaseoma +gasch +garzone +garverick +garve +garthee +garrod +garriss +garrish +garraghty +garnet +garness +garnder +garlovsky +gariti +garich +garibaldo +garib +gargani +garfias +garff +garf +gares +garen +gardy +garder +garcelon +garced +garavelli +garala +garacci +ganze +gantewood +ganska +gannoe +ganji +ganja +ganibe +ganiban +ganguli +gangluff +gangadyal +gane +gandhy +gandarillia +gancio +gana +gamrath +gamewell +gamela +gamberini +gamberg +gambell +gambaiani +galvano +galva +galustian +galston +galstian +galson +gals +galon +galofaro +gallipo +gallery +galleno +gallegher +gallante +gallagos +gallaga +galjour +galinoo +galinol +galin +galietti +galhardo +galfayan +galetti +galetta +galecki +galauiz +galaska +galashaw +galarita +galanga +galacio +gailun +gailis +gaibler +gagon +gago +gagliardotto +gaetke +gaestel +gaekle +gadue +gades +gacusan +gacad +gabrel +gabouer +gabisi +gabino +gabbett +gabbay +gab +gaarsland +fyles +fventes +fusselman +fusik +fusi +fusha +fusca +furuyama +furubotten +furton +furrh +furne +furna +furlotte +furler +furkin +furfey +fure +furch +furay +fupocyupanqui +funderbunk +fundenberger +fulwiler +fulsom +fullwiler +fulliton +fulling +fuleki +fulda +fukuroku +fukada +fuhri +fuglsang +fugle +fugah +fuesting +fuents +fudacz +fucile +fuchser +frydman +fryday +fruusto +frutoz +frullate +fruchey +frossard +fross +froschheiser +froozy +fronduti +frondorf +fron +fromong +frometa +froiland +frohwein +frohock +froeliger +frodsham +fritzpatrick +frist +frisino +frisella +frischkorn +fringuello +frings +friling +frikken +frietsch +friest +friedstrom +friedhaber +friedenberg +friedeck +fridal +freytas +freydel +freudiger +freshley +frere +frenner +freniere +fremon +fremming +freme +freligh +freistuhler +freiser +freil +freifeld +freidkin +freidet +frehse +freguson +freerksen +freelon +freeley +freehoffer +freedland +fredrikson +fredric +fredline +fredicks +freddrick +frawkin +frauenkron +frati +franzeo +frantzich +frankina +frankford +frankenreiter +frankenfeld +franeo +frandeen +franculli +francolino +francoise +francisque +franciosa +francios +francione +franceski +franceschina +fram +fraine +fragassi +fracier +fraccola +frabotta +frabizio +fouyer +foux +foutain +fourre +fouracre +found +foules +foucha +fosso +fosser +fossa +fosburgh +forwood +fortado +forston +forsthoffer +forschner +forsch +fornkohl +fornerod +formhals +formey +formento +formato +forlani +forgy +forgach +fordon +forcino +forcell +forcade +forbish +forber +fontneau +fontelroy +fonteboa +fontanini +fonsecn +fondell +fon +follie +foller +folkins +folkens +folgar +foks +fogus +fogo +foerschler +foell +foecke +foderaro +foddrill +focks +flum +flugence +fluette +fluetsch +flueck +flournay +flotow +flota +florkowski +florestal +florance +floore +floerchinger +flodman +floch +flitton +flitt +flister +flinton +flinspach +flierl +flever +fleurissaint +fleurantin +flether +flennoy +fleitman +flegler +fleak +flautt +flaum +flasher +flaminio +fixari +fiumefreddo +fitzmier +fitzgerlad +fitzen +fittje +fitser +fitchette +fisichella +fisger +fischbein +fischang +fiscal +fisanick +firoozbakht +firlik +firkey +fiorenzi +fiora +finucan +finto +finona +finocan +finnley +finnin +finnila +finni +finnel +finne +finland +finkenbiner +finey +finders +filzen +filyan +filteau +filonuk +fillo +fillerup +filkey +filippides +filippello +filburn +filbrardt +filbey +filary +filarecki +filak +fijalkowski +figurelli +figone +figlioli +figlar +figary +figarsky +fiermonte +fierge +fiely +fieldstadt +fiedtkou +fiedorowicz +fiebich +fie +fidsky +fido +ficenec +feyler +fewless +feulner +feuerberg +fetui +fetrow +fesus +fesenbek +ferugson +ferster +ferrise +ferratt +ferratella +ferrarotti +ferrarini +ferrao +ferrandino +ferrall +ferracioli +feron +ferndez +fernandz +fermo +ferm +ferlic +ferjerang +feris +ferentz +fereday +ferdin +ferdico +ferderer +ferard +feramisco +fenti +fensel +fenoglio +fenoff +feno +fenniwald +fenger +fenceroy +felzien +felson +felsher +fellon +felli +fellhauer +fellenbaum +felleman +fellars +felks +felipa +felila +felico +felicione +felger +feldtman +feldner +feldker +feldhake +felciano +felcher +fekety +feindt +feinblatt +feilbach +feikles +feigh +feichtner +fehribach +fehnel +fehn +fegurgur +fego +fefer +feezor +feery +feerst +feeling +feekes +feduniewicz +feduccia +fedorka +fedoriw +fedorczyk +fedel +feddes +fedderly +fechtel +fecat +feazelle +feast +fearheller +fearen +feamster +fealy +fazzinga +fawell +favilla +favieri +favaron +favaro +faustman +faurot +faur +faulstick +faulstich +faulkes +faulkenbury +faulisi +faubus +fat +faster +fash +fasenmyer +fasci +fasbender +faruolo +farrin +farria +farrauto +farmsworth +farmar +farm +farlee +fariello +farid +farha +fardo +faraco +fantz +fanner +famy +famiano +fam +falu +faltz +falto +falson +fallie +fallick +falla +falknor +falkenthal +falis +falha +falge +falconeri +falcione +falchi +falb +falasco +falah +falack +falacco +faix +faisca +fairy +fairly +faigle +faichtinger +fahrenwald +fahrenbruck +fahner +fahlstedt +fagnoni +faglie +fagala +faehnle +fadri +fadei +facenda +fabus +fabroquez +fabello +fabeck +fabbozzi +ezernack +ezer +ezechu +ezdebski +eyubeh +eyermann +extine +expose +ewelike +evora +eviston +evertz +eversmann +everleth +evering +eveline +eveler +evanski +evanosky +evanoski +evanchyk +evanchalk +euton +euser +eurton +europe +ettl +ettison +etters +etoll +ethel +etchinson +esty +esteybar +estevane +esterson +esterling +estergard +estela +estaban +esshaki +essepian +esselman +essaid +essaff +esquiuel +esquerre +esquea +esposita +espenscheid +esparaza +esoimeme +esnard +eskuchen +eskelsen +eskeets +eskaran +eskaf +eshlerman +esenwein +escorza +escoe +escobeo +eschenbacher +eschenbach +eschborn +escarrega +escalet +esbensen +esannason +ervine +ervay +ertelt +erpenbach +ero +ernstrom +ernspiker +ernandez +ermogemous +ermita +erm +erlwein +erlanson +erixon +erice +erfert +ereth +erdmun +erdelt +erchul +ercek +erbentraut +erard +eracleo +equiluz +eppert +epperheimer +eppenger +epifano +eperson +enzenauer +entzi +entrup +entel +enote +enocencio +enny +ennist +ennels +ennaco +enkerud +enick +engwer +engleby +enget +engessor +engerman +engbretson +enfort +ends +endresen +endecott +encalade +emuka +emslander +emshoff +empleo +empfield +emperor +emo +emmrich +emlin +emigholz +emfield +emeru +emeche +emdee +emberlin +emberley +emberger +emayo +emanus +emami +elvert +elshair +elsensohn +elsbury +elsa +elroy +elquist +elofson +elmaghrabi +ellworths +ellifritt +ellies +elliem +ellerkamp +ellerbeck +ellenbee +ellena +ellebrecht +elldrege +ellanson +elko +elkayam +eliszewski +eliseo +elis +elion +elhosni +elhassan +elhaj +elhaddad +elgen +elgas +elgar +elg +elftman +elfering +elewa +eleveld +elefritz +elbogen +elbertson +elberson +elbahtity +elahi +ekstrum +eklov +ekis +ejide +eissinger +eirls +einfeldt +eilts +eilders +eilbert +eilbeck +eikmeier +eifler +eiesland +eichstadt +eichenmiller +eichenauer +eichelmann +ehr +ehorn +ehnis +ehmen +ehleiter +ehinger +ehiginator +ehigiator +egvirre +egure +eguizabal +ego +egidio +eggenberg +eggart +eget +egertson +egbe +efrati +eflin +eerkes +ee +edwads +edster +edralin +edmerson +edmeier +edleston +edlao +edith +edis +edeline +edeker +economus +economides +ecoffey +eckrote +eckmeyer +eckle +ecklar +eckis +echemendia +echavez +echaure +ebrani +ebo +ebilane +ebesugawa +eberting +ebersol +eberline +eberl +ebenstein +eben +ebbesen +ebach +easom +easlick +easker +easey +easdon +earman +earll +earlgy +earenfight +earehart +ealley +ealick +eagy +eafford +dziurawiec +dzierzanowski +dziegielewski +dziduch +dziadek +dzama +dyser +dys +dyreson +dymke +dyen +dwyar +dwornik +dwellingham +duxbury +duwhite +duverney +duvel +dutschmann +dutel +dute +dusak +durun +dursch +durrwachter +durousseau +durol +durig +durett +duresky +durelli +duree +dural +duraku +dupouy +duplin +duplesis +duplaga +dupaty +duonola +dunzelman +dunten +dunt +dunster +dunnahoo +dunmead +dunks +dunkentell +dunemn +duncker +dunckel +dunahoo +dummitt +dumez +dumag +dulberg +dulatre +dukhovny +dukeshire +dukeshier +duitscher +duitch +duh +dugmore +dughi +duffus +duffany +dufer +duesenberg +duerkson +duerkop +duenke +duel +dudleson +dudik +duderstadt +dudack +duchow +duchesney +duchatellier +ducceschi +ducayne +ducay +ducatelli +dubonnet +duberstein +dubej +dubeck +dubeau +dubbin +duban +duball +duartes +dsaachs +dryman +drybread +drumwright +drumheiser +drumgole +drullard +drue +drude +druckhammer +dru +drought +drossos +drossman +droski +drong +drones +dronen +droegmiller +drock +drisdelle +drinkall +drimmer +driggins +driesel +driere +drewski +dreps +dreka +dreith +dregrich +dreggs +drawy +drawec +dravland +drape +dramis +drainer +dragun +dragt +dragotta +dragaj +drafton +drafall +drader +draa +dozois +dozar +doyan +doxon +dowsett +dovenmuehler +douyon +douvier +douvia +douthart +doussan +dourado +doulani +douillet +dougharity +dougall +douet +dou +dotto +dottery +dotstry +doto +dotie +doswell +doskocil +doseck +dorweiler +dorvillier +dorvee +dortilla +dorsainvil +dorrian +dorpinghaus +dorph +dorosan +dornseif +dornhelm +dornellas +dorne +dornbos +dormanen +dormane +doriean +dorer +dorcent +dorat +dopf +dootson +doornbos +dooney +donten +dontas +donota +donohve +donning +donnellon +donne +donmore +donkor +donkervoet +donhoe +dongo +donelon +donchatz +donawa +donar +domnick +domkowski +domio +dominis +dominiquez +dominicus +dominico +domingus +domianus +domas +dolven +dolliver +doljac +doliveira +dolhon +dolgas +dolfay +dolcetto +dokuchitz +doino +doiel +doffing +doerflinger +doepner +doelling +dodich +doderer +dockray +dockett +docker +docimo +dobre +dobrasz +dobmeier +dobesh +dobberfuhl +dobb +dmitriev +dlobik +dlabaj +djuric +dizadare +divento +divan +diulio +ditti +dittbrenner +ditta +ditolla +ditchfield +distilo +distance +disponette +dispirito +dishinger +discon +disarufino +disabato +diruzzo +dirose +dirollo +dirado +dippery +dionisopoulos +diones +dinunzio +dinucci +dinovo +dinovi +dinola +dinho +dings +dinglasan +dingel +dinco +dimperio +dimoulakis +dimopoulos +dimmack +dimling +dimitriou +dimes +dilthey +dilox +dillworth +dillmore +dilligard +dilleshaw +dilgard +dilda +dilcher +dilchand +dikkers +diket +dikens +digrazia +digness +digiorgi +digiambattist +digesare +difiora +diffendal +diewold +dietsche +diestel +diesen +dien +diemoz +dielman +diegidio +diedricks +diebol +didlake +didamo +dickun +dickstein +dickirson +dickins +dicioccio +diciano +dichristopher +dicaro +dicara +dibrino +dibenedict +diamico +diak +diachenko +dhosane +dezell +dezayas +deyette +deyarmond +deyarmin +dewyer +dewulf +dewit +dewinne +dewaratanawan +devreese +devitto +devincenzi +devick +devey +devenecia +devel +deuschle +deuschel +deuman +deuermeyer +detz +deturenne +dettra +dettore +dettmering +dettmann +detterich +detorres +detlefs +detjen +detillier +dethomasis +detering +detar +desutter +destime +destephano +desrocher +desquare +desporte +desparrois +desort +desormo +desorbo +desolier +desmarias +desloge +deslaurier +desjardiws +desiyatnikov +desisles +desilvo +desiato +deshazior +desforges +deserres +deschomp +deschino +deschambeault +desautelle +desantigo +desan +deruso +derubeis +derriso +derricott +derrer +deroos +deroko +deroin +deroest +derobles +dernier +dermo +derkach +derizzio +deritis +derion +deriggi +dergurahian +dereu +derer +derenzis +derenthal +derensis +derendal +derenberger +deremiah +deraveniere +deramo +deralph +depsky +deprizio +deprince +deprez +depratt +depottey +depippo +depinho +depietro +depetris +deperte +depena +depaulis +depasse +depace +deonarian +deodato +denski +densieski +denoyelles +denofrio +denni +dennert +denna +deniken +denier +denice +denhartog +dench +dence +denburger +denafo +demyers +demulling +demuizon +demosthenes +demoney +demonett +demmon +demich +demian +demetris +demetree +demeris +demchok +dembosky +dembinski +dember +demauri +dematos +demasters +demarrais +demarini +demarc +demara +delvin +delveechio +delusia +deluney +deluccia +delre +delpiano +delosanglel +delosangeles +delon +delnegro +dellos +dellon +delling +dellibovi +dellasciucca +dellasanta +dellapina +dellajacono +dellagatta +dellaca +deliso +delinois +delilli +delilla +deliberato +delhomme +delguercio +delger +delgadilo +delfi +delfelder +deley +delevik +delettre +delessio +deleonardo +delellis +delehoy +delegeane +deldeo +delcine +delbusto +delbrune +delbrocco +delbo +delasko +delashaw +delasancha +delaremore +delaplane +delapenha +delanoche +delalla +delaguila +delaglio +dekuyper +dekort +dekorne +deklerk +dekine +dejoode +dejes +dejarme +dejager +deja +deischer +deir +deighton +deidrick +deida +deible +dehrer +dehombre +dehler +dehghani +dehan +dehaemers +degunya +deguise +degrella +degrazio +degrandpre +degori +degolyer +deglopper +deglanville +degado +defrates +defrancis +defranceschi +defouw +defiguero +defiglio +defide +defaria +deeters +dedominicis +dedo +dedier +dedek +deculus +decroo +decree +decourley +decomo +declouette +declet +declark +deckelman +dechart +dechamplain +decasanova +decardo +decardenas +decann +decaneo +debrita +debrie +debraga +debnar +debiew +debes +debenham +debello +debarba +deback +dearstyne +dearco +deanne +deanhardt +deamer +deaguero +daylong +daya +dawber +dawahoya +davydov +davtyan +davos +davirro +davidek +davide +davers +davensizer +davel +davda +dauzart +daurizio +dauila +daughetee +dauge +daufeldt +daudier +daubenmire +daty +datu +datte +dastoli +daste +dasso +daskam +dasinger +dasalia +daryanl +darvile +darsi +darsch +darrup +darnel +darm +darjean +dargenio +darey +dardashti +dardagnac +darbro +darbeau +daramola +daquip +dapvaala +danza +dantoni +dantes +danoski +danns +dannecker +danfield +danella +danczak +dancoes +damphousse +damoth +damoro +dammrich +dammad +damis +damerell +dambrozio +dama +daltorio +dalponte +dalomba +dalmida +dalmau +dallen +dalla +dalitz +dalio +dalhart +daleus +dalene +dalee +dalbeck +dalaq +dair +daimaru +daill +daichendt +dahood +dahlstedt +dahley +dahler +dagnone +dagnon +dagner +daggy +daer +dae +dadds +daddea +daddabbo +dad +dacres +dachs +dachelet +daber +czyrnik +czwakiel +czupryna +czubia +czosek +czernovski +czerno +czernik +czerniak +czekaj +czarniecki +cyler +cychosz +cuzzo +cuva +cutri +cutone +cutia +cutburth +cusworth +custa +cusmano +cushway +cushinberry +cusher +cushen +cushard +cusatis +curzi +curylo +curriere +currans +curra +curpupoz +curls +curleyhair +curella +cureau +curameng +cupe +cunningan +cunnane +cummisky +cummer +cumley +cumblidge +culotti +cullin +culajay +cujas +cuez +cuddihee +cudan +cuchiara +cuccinello +cucchiaro +cuartas +cuaresma +cuadro +csensich +cruthirds +cruthers +crutchev +crutch +crummedyo +crumlish +cruiz +cruey +cruel +croxford +croxen +crowin +croutch +croushorn +crotwell +crother +croslen +crookston +cronholm +cronauer +cromeens +crogier +croffie +crocitto +critzman +criton +critchelow +cristofaro +cristello +cristelli +crissinger +crispo +criqui +crickenberger +cressell +cresencio +creglow +creggett +creenan +creeley +credo +credille +crease +crawn +cravenho +cravatta +cration +crantz +cragar +cragan +cracolici +cracknell +craawford +craan +cozadd +coyier +cowser +cowns +cowder +covotta +covitt +covil +covarruvia +covarrubio +covarrubia +covar +cova +coutino +cousey +courtoy +courtad +couron +courneya +courie +couret +courchine +countis +counceller +cottillion +cottengim +cotroneo +cotreau +cotheran +cotey +coteat +cotant +coswell +costenive +costellowo +costeira +costanzi +cossaboon +cossaboom +cosimini +cosier +cosca +cosano +corvelli +corti +cortesi +corsilles +corsey +corseri +corron +corridoni +corrett +correo +corren +correau +corraro +corporon +corporal +corpeno +corolla +corolis +cornes +cornelson +cornea +cornacchio +cormican +cormia +coriz +coric +coriaty +coriano +corderman +cordel +corde +cordasco +corburn +corallo +coradi +coponen +coples +copier +copa +coopey +coonley +coomey +coolbrith +coolbeth +coolahan +cookey +coogen +cooey +cooch +conze +conzalez +contreros +contreres +contras +contraras +contopoulos +contofalsky +contino +consoli +consigli +conoly +connyer +conninghan +connette +connerty +connarton +conlans +conkrite +confrey +confair +coneys +conelly +conejo +condreay +condino +condell +condelario +concini +concilio +concho +conces +concepion +conceicao +conable +compres +compiseno +compeau +compean +comparoni +companie +compagna +comoletti +commes +comment +comeauy +colyott +columbres +colsch +colpaert +colpack +colorina +colopy +colonnese +colona +colomy +colombe +colomba +colmer +colly +collozo +collova +collora +collmeyer +collaco +colian +colglazier +colehour +colebrook +coldsmith +colden +colato +colasanti +colasamte +colarossi +colander +colaizzo +colaiacovo +coladonato +colacone +colabrese +cokins +cohoe +coho +cohlmia +cohagan +cogen +cofrancesco +cofran +codey +codeluppi +cocran +cocozza +cocoran +cocomazzi +cockrin +cockreham +cocking +cochis +cocherell +coccoli +cobio +cobane +coatley +coatie +coant +coaker +coachys +cmiel +clozza +cloughly +clothey +closovschi +closey +cloman +cloffi +cloepfil +clites +clinker +cleverly +cleve +clesen +clery +clerf +clemson +clemo +clemmon +clemmo +clemmey +cleark +clayter +clavey +clavelle +clausel +claud +claucherty +claton +clarson +clarendon +clarbour +clar +clap +clanin +clan +claman +clam +claes +civitello +civcci +civatte +civale +ciucci +cito +cisneroz +cislo +cisewski +cirioni +cirilli +cipullo +cippina +cipolone +cipolloni +cioni +cintra +cinkosky +cinalli +cimmiyotti +cimeno +cilva +cills +ciliento +cilibrasi +cilfone +ciesiolka +ciersezwski +cierpke +cierley +cieloha +cicio +cichosz +cichonski +cicconi +cibulskas +ciaramitaro +ciano +cianciotta +ciampanella +cialella +ciaccia +chwieroth +chwalek +chvilicek +chuyangher +churner +churchville +chuppa +chupik +chukri +chuh +chudzinski +chudzik +chudej +chrones +chroman +christoffer +christmau +christle +christaldi +christal +chrispen +chriscoe +chown +chowen +chowanec +chounlapane +choulnard +chott +chopelas +chomicki +chomali +choen +chodorov +chmelik +chludzinski +chivalette +chiv +chiumento +chittom +chisnall +chischilly +chisari +chirdon +chirasello +chipp +chiotti +chionchio +chioma +chinweze +chinskey +chinnis +chinni +chindlund +chimeno +chilinskas +childes +chikko +chihak +chiffriller +chieves +chieng +chiavaroli +chiara +chiapetto +chiaminto +chhor +chhon +chheng +chhabra +cheyney +chey +chevres +chetelat +chet +chestand +chessor +chesmore +chesick +chesanek +cherwinski +chervin +cherven +cherrie +chernick +chernay +cherchio +cheon +chenevey +chenet +chenauls +chenaille +chemin +chemell +chegwidden +cheffer +chefalo +chebret +chebahtah +cheas +chaven +chavayda +chautin +chauhdrey +chauffe +chaudet +chatterson +chatriand +chaton +chastant +chass +chasnoff +chars +charnoski +charleton +charle +charisse +charif +charfauros +chareunsri +chareunrath +charbonnel +chappan +chaples +chaplean +chapko +chaobal +chanthaumlsa +chantha +chanofsky +chanel +chandsawangbh +chandronnait +chandrasekhar +chandrasekara +chandier +chanchuan +chananie +chanady +champy +champany +chamley +chamers +chamble +chamberlian +chalow +chaloner +chalita +chalaban +chajon +chais +chaim +chaille +chaidy +chagollan +chafe +chadsey +chaderton +chabotte +cezil +cersey +cerritelli +ceronsky +ceroni +cernansky +cerenzia +cereghino +cerdan +cerchia +cerbantes +cerao +ceranski +centrone +centorino +censky +ceman +cely +celuch +cellupica +cellio +celani +cegla +cedars +ceasor +cearlock +cazzell +cazeault +caza +cavezon +cavalli +cavaleri +cavaco +cautillo +cauthorne +caulley +caughran +cauchon +catucci +cattladge +cattabriga +catillo +cathers +catenaccio +catena +catani +catalli +catacun +casumpang +casuat +castrovinci +castronova +castoral +castiola +castin +castillero +castillejo +castera +castellanoz +castellaneta +castelan +castanio +castanado +castagnier +cassis +cassion +cassello +casseday +cassase +cassarubias +cassard +cassaday +caspary +caspar +casoria +casilles +casile +casida +cashing +casgrove +caseman +caselton +casello +caselden +cascia +casario +casareno +casarella +casamayor +casaliggi +casalenda +casagranda +casabona +carza +caryk +carvett +carthew +carther +carthens +cartaya +cartan +carsno +carscallen +carrubba +carroca +carril +carrigg +carridine +carrelli +carraturo +carratura +carras +carransa +carrahan +carpente +carpenito +caroway +carota +caronna +caroline +carnoske +carnohan +carnighan +carnie +carnahiba +carmichel +carmello +carlsley +carlington +carleo +cariveau +caristo +carillion +carilli +caridine +cariaso +cardoni +cardish +cardino +cardinas +cardenos +cardejon +cardeiro +carco +carbal +caravalho +caraher +caradonna +caracso +caracciola +capshaws +caprice +capriccioso +capraro +cappaert +caposole +capitani +capinpin +capiga +capezzuto +capetl +capestany +capels +capellas +caparoula +caparelli +capalongan +capaldo +canu +cantre +cantoral +cantfield +cantabrana +canori +cannuli +canestro +canestrini +canerday +canellas +canella +candon +cancer +canatella +canak +cana +campolongo +campagnone +campagnini +campagne +camon +cammarn +caminita +camidge +cambronne +cambric +cambero +camaron +calzone +calzadilla +calver +calvent +calvelo +calvaruso +calvaresi +calpin +calonsag +calonne +caloca +calligy +callez +calleo +callaro +calixtro +caliguire +caligari +calicut +caler +calderson +caldarone +calchera +calcagino +calaycay +calamarino +calamari +calamare +cakanic +cajune +cajucom +cajero +cainion +cainglit +caiafa +cagey +cafourek +caffarel +cafarella +cafagno +cadoy +cadmen +cader +cademartori +cackett +cacibauda +caci +cacciola +cabrar +cabla +cabiya +cabido +cabeza +cabellon +cabeceira +cabanes +cabag +bzhyan +byther +byro +byrley +byrdsong +bynd +bylund +byant +bverger +buzzelle +buzzanca +buyes +buyak +buvens +buttino +buttimer +buttari +buttaccio +buther +butel +buszak +bustinza +bussom +busskohl +bussink +bussinger +bussert +busselberg +bussani +busl +buskohl +busie +bushie +busenius +buseck +buscarino +busacker +burwick +burtin +burriesci +burreson +burnum +burnet +burneisen +burnaman +burlette +burlando +burki +burker +burkel +burka +burigsay +burhanuddin +burgen +burgbacher +buretta +buress +burdsall +burdis +burdi +burdg +burbano +bur +buquo +buontempo +buonadonna +bunzey +bunyea +buntain +bunkers +bungy +bungart +bunetta +bunes +bundley +bundette +bumm +bumbray +bumba +bumatay +bulwinkle +bultron +bulnes +bullo +bullmore +bullerwell +bullert +bullara +bulland +bulkin +bulgarella +bulacan +bukrim +bukowinski +bujol +buja +buike +buhoveckey +buhite +bugtong +bugler +bugenhagen +bugayong +bugarewicz +bufton +buetti +buess +buerstatte +buergel +buerge +buer +buena +buegler +bueggens +buecher +budzyna +budz +budworth +budesa +buddle +budden +buddemeyer +buckridge +buckreis +buckmiller +bucke +buchser +buchsbaum +buchs +buchna +buchheim +buchberger +bucchin +bucanan +bubbico +buanno +bual +brzycki +brzostowski +bryum +brynga +brynestad +bryar +bruzewicz +bruyn +bruun +brutlag +bruson +bruski +bruse +brusco +bruscino +brunsting +brunskill +brunow +brunnemer +brunderman +brunckhorst +brunback +brumbley +bruh +brugal +bruenderman +bruegman +brucie +brozyna +brozell +brownsworth +brownsword +brownsberger +browley +brous +brounson +broumley +brostoff +brossmann +brosig +broschinsky +broomell +brookshier +brooklyn +bronikowski +brondyke +bromberek +brombach +brokins +broking +brojakowski +broich +brogren +brogglin +brodhurst +brodhag +brodey +brocklebank +brockie +brockell +brochure +brochhausen +broccolo +brixius +brittsan +brits +britnell +brisley +brisbone +briola +brintnall +bringman +bringas +bringantino +brinckerhoff +briguglio +briggerman +brigg +brigantino +briehl +brieger +bridson +bridjmohan +bridgford +bridget +bridgens +bridendolph +briden +briddick +bricknell +brickles +brichetto +briare +brez +brevitz +brevil +breutzmann +breuning +bretl +brethour +bretana +bresolin +breslawski +brentnall +brentano +brensnan +brensinger +brensel +brenowitz +brennenstuhl +brengle +brendlinger +brenda +brend +brence +brenaman +bremseth +bremme +breman +brelje +breitung +breitenfeldt +breitenbucher +breitenberg +breines +breiland +brehony +bregon +brege +bregantini +brefka +breeman +breehl +bredy +bredow +bredice +bredahl +brechbill +brearley +brdar +brazzi +brazler +braye +braver +bravender +bravard +braunsdorf +braunschweige +braught +brauchla +bratek +braskey +brasket +branske +branot +branine +braniff +brangan +branen +branecki +brandsrud +brandman +brandeland +brande +brandauer +brancazio +brancanto +branaugh +bramucci +brakstad +brais +braim +braig +brah +brage +bradtke +bradrick +bradon +bradicich +brackelsberg +brachman +brachle +bracetty +bracaloni +bozzell +bozovich +bozinovich +boyenga +bowring +bowlet +bowgren +bowersmith +bowels +bowcutt +bovio +boveja +bovain +boutchyard +bousson +bousqute +bousley +bourns +bourlier +bourgois +bourff +bourek +bourdeaux +bourdages +bourbonnais +boundy +bouliouris +boudrieau +boudin +bouchaert +botwin +bottomly +bottolfson +bottolene +bottiggi +botterbusch +botros +botras +botdorf +bostelman +bossenbroek +bossardet +bosowski +boschult +borycz +borwig +boruvka +bortignon +borsa +borromeo +borrolli +borries +borreta +borremans +borras +borr +borozny +borowiec +boronat +bornman +bormes +borlin +borguez +borgstede +borgese +borgert +borgers +borgella +borell +bordon +bordi +bordges +bordenkircher +borde +borbon +boratko +boque +boppre +boosalis +boorom +bookter +bookmiller +bookamer +bonzo +bonyai +bonugli +bonsu +bonsey +bonsell +bonsee +bonow +bonno +bonnlander +bonnin +bonnenfant +bonjorno +boniol +bongo +bonetto +bonepart +bondre +bonaventura +bonatti +bonapart +bonagurio +bonaguidi +bomzer +bompane +bomilla +bomia +bombino +bomaster +bollens +bollbach +bollaert +bolins +bolinder +bolig +bolian +bolfa +bolevice +boldwyn +bolduan +boldizsar +bolde +bokal +boitel +boin +boillot +boid +bohonik +bohnker +bohney +bohlsen +bohlman +bohlken +bogut +bognuda +bogguess +bogg +bofinger +boero +boerm +boeri +boera +boelk +boehnke +boege +bodyfelt +bodon +bodison +bodfish +boderick +bodenhagen +bodelson +bodary +bocskor +bockrath +bocklund +bockhorn +bockenstedt +bockelmann +bochicchio +boches +bochek +bocchieri +boccard +bobsin +bobrosky +bobowiec +boblak +bobet +boane +boamah +blyze +blute +blush +blunkall +blundo +blumkin +bluming +blumenschein +blumenkrantz +blumenberg +bluel +bloye +blott +blotsky +blossomgame +blosfield +bloomstrom +bloomstrand +bloomsburg +blonsky +blonigan +blomstrand +bloes +bloemker +bloedel +blochberger +blizard +blinebry +blindt +blihovde +blide +blicker +bleything +blevans +blessett +blesofsky +bleiler +bleichner +bleicher +bleeck +blee +blazon +blazing +blazich +blaydon +blaxland +blauw +blauman +blaszczyk +blasl +blashak +blasenhauer +blanscet +blanquet +blanquart +blannon +blanko +blankenbecler +blanga +blander +blakstad +blailock +blafield +blaeser +blaese +blady +bladt +blacock +blackwall +blackmoore +blackmar +blackington +blackbird +blacio +blachowski +bjornstrom +bjorn +bjerknes +bjerken +bjella +bizzard +bivans +bitzenhofer +bitar +bitah +bissol +bissel +bissada +bispham +bisikirski +bischel +biscari +bisanz +birthwright +birsner +bironas +birner +birnberg +birkmaier +birkenhagen +birely +birdon +bionda +binn +bininger +binet +binderup +binam +billus +billue +billotti +billinsley +billingsby +billigmeier +billiet +billiar +billesbach +bilchak +bilansky +bijan +bihler +bihl +bigusiak +bigony +bignell +biggard +biewald +biever +bietsch +biesenthal +biesecker +bierut +bierstedt +bierschbach +biersack +bierod +bierl +bierkortte +biener +bielser +bielke +bielefield +biedekapp +bidstrup +bidell +biddlecome +bicknase +bicking +bichoupan +bichoff +bibiloni +biastock +biasotti +bianchin +bhullar +bhaskar +bhamaraniyama +bhairo +bezenek +beyser +beyke +beyea +beydoun +beyale +beyal +bevevino +beuttel +beutnagel +beuthin +beuse +beurskens +beukema +beukelman +beuerle +beuchler +betzner +betzler +betzig +bettley +betry +betit +bethurem +betha +betenson +betak +bestwick +bestine +beste +bessone +bessinger +bessellieu +besong +besner +beskom +beshore +beser +besen +beseke +besares +besant +besanson +besancon +berzunza +berulie +bertrum +bertot +berto +bertman +berther +berth +bertella +bertao +bershadsky +bersaw +berrospe +berrocal +berray +bernstock +bernotas +bernos +bernmen +bernitsky +bernieri +berni +bernheim +berneri +bernell +bernbeck +bernaudo +bernau +bernatchez +bernarducci +bernardon +bernand +bernacki +berlingo +berley +berlandy +berlacher +berkovitch +berkenbile +berkbigler +berishaj +bering +bergstedt +bergsman +bergouignan +bergold +bergmeyer +bergfalk +bergenty +bergenstock +bergene +bergamine +bergami +berey +beresik +berentz +berenschot +bereda +berdux +berdar +berdahl +berczy +berchielli +bercher +berceir +berbig +berbereia +benzee +benwarc +benulis +bentzinger +bentrem +benthusen +benston +bennings +bennight +benneth +bennard +bennafield +benkosky +benker +benje +benisek +benintendi +bening +beninati +benimadho +benezra +beneuento +bendu +bending +bendell +benckendorf +benbenek +benanti +benamati +benafield +benach +benac +bembi +belwood +belvees +beltramo +belstad +belski +belschner +belscher +belovs +belousson +belous +belony +belonger +belluz +bellmore +bellitti +belliston +bellingtier +bellinder +bellhouse +bellflowers +bellen +bellehumeur +bellefontaine +bellar +bellantone +bellair +bellace +belken +belke +beliz +belina +belieu +belidor +beliard +belhumeur +belfy +belfort +belfi +belfast +belezos +belchior +belarmino +belanich +belancer +bejil +bejger +bejerano +beja +beiswenger +beissel +beilstein +beilinson +beilfuss +beile +behner +behizadeh +behimer +beherns +behanan +behal +begun +beguhl +begonia +begolli +begnoche +begen +beese +beerle +beemon +beelar +beedoo +beedles +beedham +beeckman +beebout +bedre +bedocs +bednarowicz +bedlion +bedillion +beder +bedenfield +bedee +bedaw +bedatsky +bedar +beckor +becklin +beckes +beckelheimer +beaureguard +beauparlant +beau +beattle +beatson +beath +beards +bearded +beandoin +beady +beachman +beachell +bayus +baysden +bayouth +bayon +bayn +bayani +baxtor +bawks +bawer +bawcombe +baves +bautiste +baute +baurer +baumohl +baumli +baumkirchner +baumiester +baumgartel +baumgarn +baumfalk +bauchspies +bauce +batzri +battisto +batter +battenhouse +batteiger +batrich +batra +batlle +batlis +batliner +batkin +batchellor +bastick +bastardi +bassiti +basore +basone +baskow +basini +basila +bashline +baseley +bascas +barvosa +barvick +barus +bartuska +bartula +bartosik +bartosch +bartoli +bartmes +bartlette +bartkus +bartkiewicz +bartholomeu +barte +bartch +barsegyan +barschdoor +barscewski +barsamian +barryman +barrowman +barrois +barrish +barriault +barrete +barree +barran +baronne +barninger +barners +barnebey +barnak +barnacle +barlup +barlock +barlau +barlak +barken +barkema +barjenbruch +barillo +barill +barientos +baria +bargstadt +bargmann +bargeron +baresi +barera +barends +bardos +bardoner +bardill +bardell +barck +barcik +barchus +barchacky +barberr +barbaza +barbarito +barbare +barbalich +barbadillo +baranga +barahana +baradi +barad +barach +barabin +baquero +banwarth +bansmer +banse +banowski +bannett +bankos +bangura +banerji +banek +bandyk +bandura +bandasak +bandarra +bancourt +banco +bancks +banbury +bamforth +bambas +bambace +balzotti +balzarine +balza +balwinski +baltruweit +baltazor +balsis +baloy +balow +balock +balo +balm +balluch +ballowe +ballmann +ballez +balletto +ballesterous +ballena +ballejos +ballar +ballan +ballagas +balitas +balish +baligod +balich +baldwyn +balduzzi +baldos +balderree +baldearena +balda +balcos +balasko +balangatan +balak +baladejo +bakalars +bajko +bajek +baitner +baison +bairo +baiotto +bainey +bailleu +bailado +baibak +bahri +bahde +bahadue +bagwill +bagu +bagron +bagnaschi +baffa +baff +baeskens +baerg +baenziger +baena +baell +badzinski +badruddin +badlam +badey +badertscher +badenoch +badagliacca +bacone +bacman +backhuus +bacino +bachmeyer +bachinski +bachas +bachan +bacerra +bacayo +babson +bablak +babinski +babilon +babikian +babicz +babey +babbish +baarts +baack +azznara +azuma +azor +azatyan +azapinto +azahar +ayyad +aytes +aysien +aymar +aylock +ayhens +ayele +aydin +axtman +axman +awyie +aw +avona +avner +avison +avenia +aveles +avarbuch +avancena +autullo +autovino +autobee +auther +auter +austino +austine +auster +auslam +aurrichio +aun +auls +aulder +aufiero +audrey +audibert +audelhuk +auckley +auces +aubel +auala +atzinger +atzhorn +attwell +attles +attilio +attia +atthowe +atteburg +atmore +atma +atleh +atkisson +athy +atherholt +athanasiou +atengco +atamanczyk +astillero +astafan +assum +assis +assing +assenmacher +assalone +assael +asrari +aspri +aspley +asperheim +aspell +asnicar +asner +askiew +askia +aske +ask +ashly +ashkettle +ashing +ashbourne +ashbach +ashaf +asenjo +aseng +aseltine +ascol +aschbacher +asamoah +arzt +arzabala +arview +arvez +arvanitis +arva +arunachalam +arton +arties +artibee +arthun +artez +arters +arsham +arseneault +arroyd +arroyano +arrospide +arrocho +arrisola +arrindel +arrigone +arrellin +arredla +arrand +arrance +arquelles +arosemena +arollo +aroca +arntzen +arnsberger +arnitz +arnerich +arndell +arnaudet +arnao +arnaldo +army +armout +armold +armocida +armlin +armiso +armesto +armen +armada +arkontaky +arking +aristizabal +arisa +arildsen +arichabala +ariail +argulewicz +argudin +argro +argie +argenziano +argenti +arendash +arendall +arendale +arelleano +arehano +ards +ardeneaux +ardelean +ardaly +arciola +arcieri +archiopoli +archdale +archbell +arbon +arbolida +arbetman +arbertha +arau +arashiro +araneo +arancibia +araldi +aragones +aragao +arabajian +aquas +apthorpe +apshire +aprill +aprigliano +applonie +appl +appia +appana +aponta +aplington +apley +apker +apelian +apadaca +aono +ao +anzideo +anway +antronica +antosh +antonovich +antoniak +antolak +antila +antignani +anthes +antao +ansoategui +ansloan +anreozzi +anos +anolick +anoe +annuzzi +anning +annarino +annal +annable +annabel +anitok +aninion +animashaun +anidi +angocicco +angland +angiolelli +angileri +angilello +angier +angermeier +angelozzi +angelou +angellotti +angelillo +angelica +angalich +aney +anewalt +anetsberger +anesi +aneshansley +anene +anecelle +andrzejczyk +andrzejczak +andruszkiewic +andrson +androde +andriopulos +andrino +andrich +andreola +andregg +andreessen +andrango +andradez +andrades +andrachak +andoh +andina +anderst +anderholm +andere +andalora +anciso +ancic +ancel +ancar +ancalade +anawaty +anawalt +amys +amstrong +amspaugh +amous +amott +amoros +amormino +amoriello +amorello +amoe +amodt +ammonds +ammirata +ammer +amlin +amith +amistadi +amill +amigo +amerio +american +amentler +amemiya +amela +amejorado +amedro +amedeo +amburgy +ambroziak +ambrister +amboree +amboise +ambert +ambagis +amauty +amat +amas +amarian +amara +amalong +alwin +alwazan +alvirez +alvero +alverado +alty +altstatt +altsisi +altmark +altimus +altamiruno +alson +alsing +alsaqri +alrod +alquesta +alpis +alpheaus +alperin +aloy +alosta +aloan +alnoor +almsteadt +almstead +almos +almgren +almarza +almajhoub +allyne +allsbrooks +allon +allinger +alliman +alliance +allgire +allevato +alleshouse +alleruzzo +allerton +allder +allcock +allbert +allanson +allabaugh +alkins +alkema +alkana +aljemal +alisauskas +alimo +alimento +alie +alicer +alias +alhusseini +alhameed +alhambra +alhaddad +alfredo +alfiero +aleyandrez +alexidor +alexandropoul +alexanders +alexakis +alesse +alesna +alepin +alejandrez +aldworth +aldrow +aldrige +aldonza +alcine +alcantas +albu +albrough +albor +albe +albarracin +albarazi +alatosse +alarcone +alanko +aland +alamia +alameida +alambar +alai +akwei +aksoy +ako +akley +akinrefon +akimseu +akhavan +akhand +akery +akawanzie +akapo +akamiro +akal +ajoku +ajani +aiuto +aiudi +airth +aipperspach +aiporlani +aipopo +aiola +aini +ailsworth +aills +ailiff +aievoli +aid +aiava +ahyet +ahrenholz +ahnell +ahlo +ahlfield +ahlemeyer +ahimud +ahia +ahhee +ahaus +ahalt +agustino +agustine +agurs +agumga +aguele +agresto +agreda +agpaoa +agosti +agoro +agonoy +agoff +aggers +agemy +ageboi +agbisit +afurong +afshar +affronti +afflick +affeltranger +afable +aeillo +adule +adrion +adolphe +adolfson +adner +adloff +adling +adickes +adib +adelsperger +adelmund +adelizzi +addeo +adamsonis +adamsen +adamowski +adamos +adamec +adalja +acosto +acors +acorda +acock +acly +ackah +achin +aceveda +acerra +acerno +aceituno +acee +accala +acal +abusufait +abugn +abuel +absalon +abriola +abrey +abrell +abramovitz +abramoff +abramian +abrahamian +abousaleh +aboshihata +abolafia +ableman +abkemeier +abington +abina +abigantus +abide +abeta +abercombie +abdulmuniem +abdulaziz +abdou +abdelmuti +abdelaziz +abdelal +abbington +abbatiello +abajian +abaja +aarsvold +aarhus +aardema +aarant +aanderud +aalund +aalderink diff --git a/splunk_eventgen/samples/dist.female.first b/splunk_eventgen/samples/dist.female.first new file mode 100644 index 00000000..30a4ebb0 --- /dev/null +++ b/splunk_eventgen/samples/dist.female.first @@ -0,0 +1,4275 @@ +mary +patricia +linda +barbara +elizabeth +jennifer +maria +susan +margaret +dorothy +lisa +nancy +karen +betty +helen +sandra +donna +carol +ruth +sharon +michelle +laura +sarah +kimberly +deborah +jessica +shirley +cynthia +angela +melissa +brenda +amy +anna +rebecca +virginia +kathleen +pamela +martha +debra +amanda +stephanie +carolyn +christine +marie +janet +catherine +frances +ann +joyce +diane +alice +julie +heather +teresa +doris +gloria +evelyn +jean +cheryl +mildred +katherine +joan +ashley +judith +rose +janice +kelly +nicole +judy +christina +kathy +theresa +beverly +denise +tammy +irene +jane +lori +rachel +marilyn +andrea +kathryn +louise +sara +anne +jacqueline +wanda +bonnie +julia +ruby +lois +tina +phyllis +norma +paula +diana +annie +lillian +emily +robin +peggy +crystal +gladys +rita +dawn +connie +florence +tracy +edna +tiffany +carmen +rosa +cindy +grace +wendy +victoria +edith +kim +sherry +sylvia +josephine +thelma +shannon +sheila +ethel +ellen +elaine +marjorie +carrie +charlotte +monica +esther +pauline +emma +juanita +anita +rhonda +hazel +amber +eva +debbie +april +leslie +clara +lucille +jamie +joanne +eleanor +valerie +danielle +megan +alicia +suzanne +michele +gail +bertha +darlene +veronica +jill +erin +geraldine +lauren +cathy +joann +lorraine +lynn +sally +regina +erica +beatrice +dolores +bernice +audrey +yvonne +annette +june +samantha +marion +dana +stacy +ana +renee +ida +vivian +roberta +holly +brittany +melanie +loretta +yolanda +jeanette +laurie +katie +kristen +vanessa +alma +sue +elsie +beth +jeanne +vicki +carla +tara +rosemary +eileen +terri +gertrude +lucy +tonya +ella +stacey +wilma +gina +kristin +jessie +natalie +agnes +vera +willie +charlene +bessie +delores +melinda +pearl +arlene +maureen +colleen +allison +tamara +joy +georgia +constance +lillie +claudia +jackie +marcia +tanya +nellie +minnie +marlene +heidi +glenda +lydia +viola +courtney +marian +stella +caroline +dora +jo +vickie +mattie +terry +maxine +irma +mabel +marsha +myrtle +lena +christy +deanna +patsy +hilda +gwendolyn +jennie +nora +margie +nina +cassandra +leah +penny +kay +priscilla +naomi +carole +brandy +olga +billie +dianne +tracey +leona +jenny +felicia +sonia +miriam +velma +becky +bobbie +violet +kristina +toni +misty +mae +shelly +daisy +ramona +sherri +erika +katrina +claire +lindsey +lindsay +geneva +guadalupe +belinda +margarita +sheryl +cora +faye +ada +natasha +sabrina +isabel +marguerite +hattie +harriet +molly +cecilia +kristi +brandi +blanche +sandy +rosie +joanna +iris +eunice +angie +inez +lynda +madeline +amelia +alberta +genevieve +monique +jodi +janie +maggie +kayla +sonya +jan +lee +kristine +candace +fannie +maryann +opal +alison +yvette +melody +luz +susie +olivia +flora +shelley +kristy +mamie +lula +lola +verna +beulah +antoinette +candice +juana +jeannette +pam +kelli +hannah +whitney +bridget +karla +celia +latoya +patty +shelia +gayle +della +vicky +lynne +sheri +marianne +kara +jacquelyn +erma +blanca +myra +leticia +pat +krista +roxanne +angelica +johnnie +robyn +francis +adrienne +rosalie +alexandra +brooke +bethany +sadie +bernadette +traci +jody +kendra +jasmine +nichole +rachael +chelsea +mable +ernestine +muriel +marcella +elena +krystal +angelina +nadine +kari +estelle +dianna +paulette +lora +mona +doreen +rosemarie +angel +desiree +antonia +hope +ginger +janis +betsy +christie +freda +mercedes +meredith +lynette +teri +cristina +eula +leigh +meghan +sophia +eloise +rochelle +gretchen +cecelia +raquel +henrietta +alyssa +jana +kelley +gwen +kerry +jenna +tricia +laverne +olive +alexis +tasha +silvia +elvira +casey +delia +sophie +kate +patti +lorena +kellie +sonja +lila +lana +darla +may +mindy +essie +mandy +lorene +elsa +josefina +jeannie +miranda +dixie +lucia +marta +faith +lela +johanna +shari +camille +tami +shawna +elisa +ebony +melba +ora +nettie +tabitha +ollie +jaime +winifred +kristie +marina +alisha +aimee +rena +myrna +marla +tammie +latasha +bonita +patrice +ronda +sherrie +addie +francine +deloris +stacie +adriana +cheri +shelby +abigail +celeste +jewel +cara +adele +rebekah +lucinda +dorthy +chris +effie +trina +reba +shawn +sallie +aurora +lenora +etta +lottie +kerri +trisha +nikki +estella +francisca +josie +tracie +marissa +karin +brittney +janelle +lourdes +laurel +helene +fern +elva +corinne +kelsey +ina +bettie +elisabeth +aida +caitlin +ingrid +iva +eugenia +christa +goldie +cassie +maude +jenifer +therese +frankie +dena +lorna +janette +latonya +candy +morgan +consuelo +tamika +rosetta +debora +cherie +polly +dina +jewell +fay +jillian +dorothea +nell +trudy +esperanza +patrica +kimberley +shanna +helena +carolina +cleo +stefanie +rosario +ola +janine +mollie +lupe +alisa +lou +maribel +susanne +bette +susana +elise +cecile +isabelle +lesley +jocelyn +paige +joni +rachelle +leola +daphne +alta +ester +petra +graciela +imogene +jolene +keisha +lacey +glenna +gabriela +keri +ursula +lizzie +kirsten +shana +adeline +mayra +jayne +jaclyn +gracie +sondra +carmela +marisa +rosalind +charity +tonia +beatriz +marisol +clarice +jeanine +sheena +angeline +frieda +lily +robbie +shauna +millie +claudette +cathleen +angelia +gabrielle +autumn +katharine +summer +jodie +staci +lea +christi +jimmie +justine +elma +luella +margret +dominique +socorro +rene +martina +margo +mavis +callie +bobbi +maritza +lucile +leanne +jeannine +deana +aileen +lorie +ladonna +willa +manuela +gale +selma +dolly +sybil +abby +lara +dale +ivy +dee +winnie +marcy +luisa +jeri +magdalena +ofelia +meagan +audra +matilda +leila +cornelia +bianca +simone +bettye +randi +virgie +latisha +barbra +georgina +eliza +leann +bridgette +rhoda +haley +adela +nola +bernadine +flossie +ila +greta +ruthie +nelda +minerva +lilly +terrie +letha +hilary +estela +valarie +brianna +rosalyn +earline +catalina +ava +mia +clarissa +lidia +corrine +alexandria +concepcion +tia +sharron +rae +dona +ericka +jami +elnora +chandra +lenore +neva +marylou +melisa +tabatha +serena +avis +allie +sofia +jeanie +odessa +nannie +harriett +loraine +penelope +milagros +emilia +benita +allyson +ashlee +tania +tommie +esmeralda +karina +eve +pearlie +zelma +malinda +noreen +tameka +saundra +hillary +amie +althea +rosalinda +jordan +lilia +alana +gay +clare +alejandra +elinor +michael +lorrie +jerri +darcy +earnestine +carmella +taylor +noemi +marcie +liza +annabelle +louisa +earlene +mallory +carlene +nita +selena +tanisha +katy +julianne +john +lakisha +edwina +maricela +margery +kenya +dollie +roxie +roslyn +kathrine +nanette +charmaine +lavonne +ilene +kris +tammi +suzette +corine +kaye +jerry +merle +chrystal +lina +deanne +lilian +juliana +aline +luann +kasey +maryanne +evangeline +colette +melva +lawanda +yesenia +nadia +madge +kathie +eddie +ophelia +valeria +nona +mitzi +mari +georgette +claudine +fran +alissa +roseann +lakeisha +susanna +reva +deidre +chasity +sheree +carly +james +elvia +alyce +deirdre +gena +briana +araceli +katelyn +rosanne +wendi +tessa +berta +marva +imelda +marietta +marci +leonor +arline +sasha +madelyn +janna +juliette +deena +aurelia +josefa +augusta +liliana +young +christian +lessie +amalia +savannah +anastasia +vilma +natalia +rosella +lynnette +corina +alfreda +leanna +carey +amparo +coleen +tamra +aisha +wilda +karyn +cherry +queen +maura +mai +evangelina +rosanna +hallie +erna +enid +mariana +lacy +juliet +jacklyn +freida +madeleine +mara +hester +cathryn +lelia +casandra +bridgett +angelita +jannie +dionne +annmarie +katina +beryl +phoebe +millicent +katheryn +diann +carissa +maryellen +liz +lauri +helga +gilda +adrian +rhea +marquita +hollie +tisha +tamera +angelique +francesca +britney +kaitlin +lolita +florine +rowena +reyna +twila +fanny +janell +ines +concetta +bertie +alba +brigitte +alyson +vonda +pansy +elba +noelle +letitia +kitty +deann +brandie +louella +leta +felecia +sharlene +lesa +beverley +robert +isabella +herminia +terra +celina +tori +octavia +jade +denice +germaine +sierra +michell +cortney +nelly +doretha +sydney +deidra +monika +lashonda +judi +chelsey +antionette +margot +bobby +adelaide +nan +leeann +elisha +dessie +libby +kathi +gayla +latanya +mina +mellisa +kimberlee +jasmin +renae +zelda +elda +ma +justina +gussie +emilie +camilla +abbie +rocio +kaitlyn +jesse +edythe +ashleigh +selina +lakesha +geri +allene +pamala +michaela +dayna +caryn +rosalia +sun +jacquline +rebeca +marybeth +krystle +iola +dottie +bennie +belle +aubrey +griselda +ernestina +elida +adrianne +demetria +delma +chong +jaqueline +destiny +arleen +virgina +retha +fatima +tillie +eleanore +cari +treva +birdie +wilhelmina +rosalee +maurine +latrice +yong +jena +taryn +elia +debby +maudie +jeanna +delilah +catrina +shonda +hortencia +theodora +teresita +robbin +danette +maryjane +freddie +delphine +brianne +nilda +danna +cindi +bess +iona +hanna +ariel +winona +vida +rosita +marianna +william +racheal +guillermina +eloisa +celestine +caren +malissa +lona +chantel +shellie +marisela +leora +agatha +soledad +migdalia +ivette +christen +athena +janel +chloe +veda +pattie +tessie +tera +marilynn +lucretia +karrie +dinah +daniela +alecia +adelina +vernice +shiela +portia +merry +lashawn +devon +dara +tawana +oma +verda +christin +alene +zella +sandi +rafaela +maya +kira +candida +alvina +suzan +shayla +lyn +lettie +alva +samatha +oralia +matilde +madonna +larissa +vesta +renita +india +delois +shanda +phillis +lorri +erlinda +cruz +cathrine +barb +zoe +isabell +ione +gisela +charlie +valencia +roxanna +mayme +kisha +ellie +mellissa +dorris +dalia +bella +annetta +zoila +reta +reina +lauretta +kylie +christal +pilar +charla +elissa +tiffani +tana +paulina +leota +breanna +jayme +carmel +vernell +tomasa +mandi +dominga +santa +melodie +lura +alexa +tamela +ryan +mirna +kerrie +venus +noel +felicita +cristy +carmelita +berniece +annemarie +tiara +roseanne +missy +cori +roxana +pricilla +kristal +jung +elyse +haydee +aletha +bettina +marge +gillian +filomena +charles +zenaida +harriette +caridad +vada +una +aretha +pearline +marjory +marcela +flor +evette +elouise +alina +trinidad +david +damaris +catharine +carroll +belva +nakia +marlena +luanne +lorine +karon +dorene +danita +brenna +tatiana +sammie +louann +loren +julianna +andria +philomena +lucila +leonora +dovie +romona +mimi +jacquelin +gaye +tonja +misti +joe +gene +chastity +stacia +roxann +micaela +nikita +mei +velda +marlys +johnna +aura +lavern +ivonne +hayley +nicki +majorie +herlinda +george +alpha +yadira +perla +gregoria +daniel +antonette +shelli +mozelle +mariah +joelle +cordelia +josette +chiquita +trista +louis +laquita +georgiana +candi +shanon +lonnie +hildegard +cecil +valentina +stephany +magda +karol +gerry +gabriella +tiana +roma +richelle +ray +princess +oleta +jacque +idella +alaina +suzanna +jovita +blair +tosha +raven +nereida +marlyn +kyla +joseph +delfina +tena +stephenie +sabina +nathalie +marcelle +gertie +darleen +thea +sharonda +shantel +belen +venessa +rosalina +ona +genoveva +corey +clementine +rosalba +renate +renata +mi +ivory +georgianna +floy +dorcas +ariana +tyra +theda +mariam +juli +jesica +donnie +vikki +verla +roselyn +melvina +jannette +ginny +debrah +corrie +asia +violeta +myrtis +latricia +collette +charleen +anissa +viviana +twyla +precious +nedra +latonia +lan +hellen +fabiola +annamarie +adell +sharyn +chantal +niki +maud +lizette +lindy +kia +kesha +jeana +danelle +charline +chanel +carrol +valorie +lia +dortha +cristal +sunny +leone +leilani +gerri +debi +andra +keshia +ima +eulalia +easter +dulce +natividad +linnie +kami +georgie +catina +brook +alda +winnifred +sharla +ruthann +meaghan +magdalene +lissette +adelaida +venita +trena +shirlene +shameka +elizebeth +dian +shanta +mickey +latosha +carlotta +windy +soon +rosina +mariann +leisa +jonnie +dawna +cathie +billy +astrid +sidney +laureen +janeen +holli +fawn +vickey +teressa +shante +rubye +marcelina +chanda +cary +terese +scarlett +marty +marnie +lulu +lisette +jeniffer +elenor +dorinda +donita +carman +bernita +altagracia +aleta +adrianna +zoraida +ronnie +nicola +lyndsey +kendall +janina +chrissy +ami +starla +phylis +phuong +kyra +charisse +blanch +sanjuanita +rona +nanci +marilee +maranda +cory +brigette +sanjuana +marita +kassandra +joycelyn +ira +felipa +chelsie +bonny +mireya +lorenza +kyong +ileana +candelaria +tony +toby +sherie +ok +mark +lucie +leatrice +lakeshia +gerda +edie +bambi +marylin +lavon +hortense +garnet +evie +tressa +shayna +lavina +kyung +jeanetta +sherrill +shara +phyliss +mittie +anabel +alesia +thuy +tawanda +richard +joanie +tiffanie +lashanda +karissa +enriqueta +daria +daniella +corinna +alanna +abbey +roxane +roseanna +magnolia +lida +kyle +joellen +era +coral +carleen +tresa +peggie +novella +nila +maybelle +jenelle +carina +nova +melina +marquerite +margarette +josephina +evonne +devin +cinthia +albina +toya +tawnya +sherita +santos +myriam +lizabeth +lise +keely +jenni +giselle +cheryle +ardith +ardis +alesha +adriane +shaina +linnea +karolyn +hong +florida +felisha +dori +darci +artie +armida +zola +xiomara +vergie +shamika +nena +nannette +maxie +lovie +jeane +jaimie +inge +farrah +elaina +caitlyn +starr +felicitas +cherly +caryl +yolonda +yasmin +teena +prudence +pennie +nydia +mackenzie +orpha +marvel +lizbeth +laurette +jerrie +hermelinda +carolee +tierra +mirian +meta +melony +kori +jennette +jamila +ena +anh +yoshiko +susannah +salina +rhiannon +joleen +cristine +ashton +aracely +tomeka +shalonda +marti +lacie +kala +jada +ilse +hailey +brittani +zona +syble +sherryl +randy +nidia +marlo +kandice +kandi +deb +dean +america +alycia +tommy +ronna +norene +mercy +jose +ingeborg +giovanna +gemma +christel +audry +zora +vita +van +trish +stephaine +shirlee +shanika +melonie +mazie +jazmin +inga +hoa +hettie +geralyn +fonda +estrella +adella +su +sarita +rina +milissa +maribeth +golda +evon +ethelyn +enedina +cherise +chana +velva +tawanna +sade +mirta +li +karie +jacinta +elna +davina +cierra +ashlie +albertha +tanesha +stephani +nelle +mindi +lu +lorinda +larue +florene +demetra +dedra +ciara +chantelle +ashly +suzy +rosalva +noelia +lyda +leatha +krystyna +kristan +karri +darline +darcie +cinda +cheyenne +cherrie +awilda +almeda +rolanda +lanette +jerilyn +gisele +evalyn +cyndi +cleta +carin +zina +zena +velia +tanika +paul +charissa +thomas +talia +margarete +lavonda +kaylee +kathlene +jonna +irena +ilona +idalia +candis +candance +brandee +anitra +alida +sigrid +nicolette +maryjo +linette +hedwig +christiana +cassidy +alexia +tressie +modesta +lupita +lita +gladis +evelia +davida +cherri +cecily +ashely +annabel +agustina +wanita +shirly +rosaura +hulda +eun +bailey +yetta +verona +thomasina +sibyl +shannan +mechelle +lue +leandra +lani +kylee +kandy +jolynn +ferne +eboni +corene +alysia +zula +nada +moira +lyndsay +lorretta +juan +jammie +hortensia +gaynell +cameron +adria +vina +vicenta +tangela +stephine +norine +nella +liana +leslee +kimberely +iliana +glory +felica +emogene +elfriede +eden +eartha +carma +bea +ocie +marry +lennie +kiara +jacalyn +carlota +arielle +yu +star +otilia +kirstin +kacey +johnetta +joey +joetta +jeraldine +jaunita +elana +dorthea +cami +amada +adelia +vernita +tamar +siobhan +renea +rashida +ouida +odell +nilsa +meryl +kristyn +julieta +danica +breanne +aurea +anglea +sherron +odette +malia +lorelei +lin +leesa +kenna +kathlyn +fiona +charlette +suzie +shantell +sabra +racquel +myong +mira +martine +lucienne +lavada +juliann +johnie +elvera +delphia +clair +christiane +charolette +carri +augustine +asha +angella +paola +ninfa +leda +lai +eda +sunshine +stefani +shanell +palma +machelle +lissa +kecia +kathryne +karlene +julissa +jettie +jenniffer +hui +corrina +christopher +carolann +alena +tess +rosaria +myrtice +marylee +liane +kenyatta +judie +janey +in +elmira +eldora +denna +cristi +cathi +zaida +vonnie +viva +vernie +rosaline +mariela +luciana +lesli +karan +felice +deneen +adina +wynona +tarsha +sheron +shasta +shanita +shani +shandra +randa +pinkie +paris +nelida +marilou +lyla +laurene +laci +joi +janene +dorotha +daniele +dani +carolynn +carlyn +berenice +ayesha +anneliese +alethea +thersa +tamiko +rufina +oliva +mozell +marylyn +madison +kristian +kathyrn +kasandra +kandace +janae +gabriel +domenica +debbra +dannielle +chun +buffy +barbie +arcelia +aja +zenobia +sharen +sharee +patrick +page +my +lavinia +kum +kacie +jackeline +huong +felisa +emelia +eleanora +cythia +cristin +clyde +claribel +caron +anastacia +zulma +zandra +yoko +tenisha +susann +sherilyn +shay +shawanda +sabine +romana +mathilda +linsey +keiko +joana +isela +gretta +georgetta +eugenie +dusty +desirae +delora +corazon +antonina +anika +willene +tracee +tamatha +regan +nichelle +mickie +maegan +luana +lanita +kelsie +edelmira +bree +afton +teodora +tamie +shena +meg +linh +keli +kaci +danyelle +britt +arlette +albertine +adelle +tiffiny +stormy +simona +numbers +nicolasa +nichol +nia +nakisha +mee +maira +loreen +kizzy +johnny +jay +fallon +christene +bobbye +anthony +ying +vincenza +tanja +rubie +roni +queenie +margarett +kimberli +irmgard +idell +hilma +evelina +esta +emilee +dennise +dania +carl +carie +antonio +wai +sang +risa +rikki +particia +mui +masako +mario +luvenia +loree +loni +lien +kevin +gigi +florencia +dorian +denita +dallas +chi +billye +alexander +tomika +sharita +rana +nikole +neoma +margarite +madalyn +lucina +laila +kali +jenette +gabriele +evelyne +elenora +clementina +alejandrina +zulema +violette +vannessa +thresa +retta +pia +patience +noella +nickie +jonell +delta +chung +chaya +camelia +bethel +anya +andrew +thanh +suzann +spring +shu +mila +lilla +laverna +keesha +kattie +gia +georgene +eveline +estell +elizbeth +vivienne +vallie +trudie +stephane +michel +magaly +madie +kenyetta +karren +janetta +hermine +harmony +drucilla +debbi +celestina +candie +britni +beckie +amina +zita +yun +yolande +vivien +vernetta +trudi +sommer +pearle +patrina +ossie +nicolle +loyce +letty +larisa +katharina +joselyn +jonelle +jenell +iesha +heide +florinda +florentina +flo +elodia +dorine +brunilda +brigid +ashli +ardella +twana +thu +tarah +sung +shea +shavon +shane +serina +rayna +ramonita +nga +margurite +lucrecia +kourtney +kati +jesus +jesenia +diamond +crista +ayana +alica +alia +vinnie +suellen +romelia +rachell +piper +olympia +michiko +kathaleen +jolie +jessi +janessa +hana +ha +elease +carletta +britany +shona +salome +rosamond +regena +raina +ngoc +nelia +louvenia +lesia +latrina +laticia +larhonda +jina +jacki +hollis +holley +emmy +deeann +coretta +arnetta +velvet +thalia +shanice +neta +mikki +micki +lonna +leana +lashunda +kiley +joye +jacqulyn +ignacia +hyun +hiroko +henry +henriette +elayne +delinda +darnell +dahlia +coreen +consuela +conchita +celine +babette +ayanna +anette +albertina +skye +shawnee +shaneka +quiana +pamelia +min +merri +merlene +margit +kiesha +kiera +kaylene +jodee +jenise +erlene +emmie +else +daryl +dalila +daisey +cody +casie +belia +babara +versie +vanesa +shelba +shawnda +sam +norman +nikia +naoma +marna +margeret +madaline +lawana +kindra +jutta +jazmine +janett +hannelore +glendora +gertrud +garnett +freeda +frederica +florance +flavia +dennis +carline +beverlee +anjanette +valda +trinity +tamala +stevie +shonna +sha +sarina +oneida +micah +merilyn +marleen +lurline +lenna +katherin +jin +jeni +hae +gracia +glady +farah +eric +enola +ema +dominque +devona +delana +cecila +caprice +alysha +ali +alethia +vena +theresia +tawny +song +shakira +samara +sachiko +rachele +pamella +nicky +marni +mariel +maren +malisa +ligia +lera +latoria +larae +kimber +kathern +karey +jennefer +janeth +halina +fredia +delisa +debroah +ciera +chin +angelika +andree +altha +yen +vivan +terresa +tanna +suk +sudie +soo +signe +salena +ronni +rebbecca +myrtie +mckenzie +malika +maida +loan +leonarda +kayleigh +france +ethyl +ellyn +dayle +cammie +brittni +birgit +avelina +asuncion +arianna +akiko +venice +tyesha +tonie +tiesha +takisha +steffanie +sindy +santana +meghann +manda +macie +lady +kellye +kellee +joslyn +jason +inger +indira +glinda +glennis +fernanda +faustina +eneida +elicia +dot +digna +dell +arletta +andre +willia +tammara +tabetha +sherrell +sari +refugio +rebbeca +pauletta +nieves +natosha +nakita +mammie +kenisha +kazuko +kassie +gary +earlean +daphine +corliss +clotilde +carolyne +bernetta +augustina +audrea +annis +annabell +yan +tennille +tamica +selene +sean +rosana +regenia +qiana +markita +macy +leeanne +laurine +kym +jessenia +janita +georgine +genie +emiko +elvie +deandra +dagmar +corie +collen +cherish +romaine +porsha +pearlene +micheline +merna +margorie +margaretta +lore +kenneth +jenine +hermina +fredericka +elke +drusilla +dorathy +dione +desire +celena +brigida +angeles +allegra +theo +tamekia +synthia +stephen +sook +slyvia +rosann +reatha +raye +marquetta +margart +ling +layla +kymberly +kiana +kayleen +katlyn +karmen +joella +irina +emelda +eleni +detra +clemmie +cheryll +chantell +cathey +arnita +arla +angle +angelic +alyse +zofia +thomasine +tennie +son +sherly +sherley +sharyl +remedios +petrina +nickole +myung +myrle +mozella +louanne +lisha +latia +lane +krysta +julienne +joel +jeanene +jacqualine +isaura +gwenda +earleen +donald +cleopatra +carlie +audie +antonietta +alise +alex +verdell +val +tyler +tomoko +thao +talisha +steven +so +shemika +shaun +scarlet +savanna +santina +rosia +raeann +odilia +nana +minna +magan +lynelle +le +karma +joeann +ivana +inell +ilana +hye +honey +hee +gudrun +frank +dreama +crissy +chante +carmelina +arvilla +arthur +annamae +alvera +aleida +aaron +yee +yanira +vanda +tianna +tam +stefania +shira +perry +nicol +nancie +monserrate +minh +melynda +melany +matthew +lovella +laure +kirby +kacy +jacquelynn +hyon +gertha +francisco +eliana +christena +christeen +charise +caterina +carley +candyce +arlena +ammie +yang +willette +vanita +tuyet +tiny +syreeta +silva +scott +ronald +penney +nyla +michal +maurice +maryam +marya +magen +ludie +loma +livia +lanell +kimberlie +julee +donetta +diedra +denisha +deane +dawne +clarine +cherryl +bronwyn +brandon +alla +valery +tonda +sueann +soraya +shoshana +shela +sharleen +shanelle +nerissa +micheal +meridith +mellie +maye +maple +magaret +luis +lili +leonila +leonie +leeanna +lavonia +lavera +kristel +kathey +kathe +justin +julian +jimmy +jann +ilda +hildred +hildegarde +genia +fumiko +evelin +ermelinda +elly +dung +doloris +dionna +danae +berneice +annice +alix +verena +verdie +tristan +shawnna +shawana +shaunna +rozella +randee +ranae +milagro +lynell +luise +louie +loida +lisbeth +karleen +junita +jona +isis +hyacinth +hedy +gwenn +ethelene +erline +edward +donya +domonique +delicia +dannette +cicely +branda +blythe +bethann +ashlyn +annalee +alline +yuko +vella +trang +towanda +tesha +sherlyn +narcisa +miguelina +meri +maybell +marlana +marguerita +madlyn +luna +lory +loriann +liberty +leonore +leighann +laurice +latesha +laronda +katrice +kasie +karl +kaley +jadwiga +glennie +gearldine +francina +epifania +dyan +dorie +diedre +denese +demetrice +delena +darby +cristie +cleora +catarina +carisa +bernie +barbera +almeta +trula +tereasa +solange +sheilah +shavonne +sanora +rochell +mathilde +margareta +maia +lynsey +lawanna +launa +kena +keena +katia +jamey +glynda +gaylene +elvina +elanor +danuta +danika +cristen +cordie +coletta +clarita +carmon +brynn +azucena +aundrea +angele +yi +walter +verlie +verlene +tamesha +silvana +sebrina +samira +reda +raylene +penni +pandora +norah +noma +mireille +melissia +maryalice +laraine +kimbery +karyl +karine +kam +jolanda +johana +jesusa +jaleesa +jae +jacquelyne +irish +iluminada +hilaria +hanh +gennie +francie +floretta +exie +edda +drema +delpha +bev +barbar +assunta +ardell +annalisa +alisia +yukiko +yolando +wonda +wei +waltraud +veta +tequila +temeka +tameika +shirleen +shenita +piedad +ozella +mirtha +marilu +kimiko +juliane +jenice +jen +janay +jacquiline +hilde +fe +fae +evan +eugene +elois +echo +devorah +chau +brinda +betsey +arminda +aracelis +apryl +annett +alishia +veola +usha +toshiko +theola +tashia +talitha +shery +rudy +renetta +reiko +rasheeda +omega +obdulia +mika +melaine +meggan +martin +marlen +marget +marceline +mana +magdalen +librada +lezlie +lexie +latashia +lasandra +kelle +isidra +isa +inocencia +gwyn +francoise +erminia +erinn +dimple +devora +criselda +armanda +arie +ariane +angelo +angelena +allen +aliza +adriene +adaline +xochitl +twanna +tran +tomiko +tamisha +taisha +susy +siu +rutha +roxy +rhona +raymond +otha +noriko +natashia +merrie +melvin +marinda +mariko +margert +loris +lizzette +leisha +kaila +ka +joannie +jerrica +jene +jannet +janee +jacinda +herta +elenore +doretta +delaine +daniell +claudie +china +britta +apolonia +amberly +alease +yuri +yuk +wen +waneta +ute +tomi +sharri +sandie +roselle +reynalda +raguel +phylicia +patria +olimpia +odelia +mitzie +mitchell +miss +minda +mignon +mica +mendy +marivel +maile +lynetta +lavette +lauryn +latrisha +lakiesha +kiersten +kary +josphine +jolyn +jetta +janise +jacquie +ivelisse +glynis +gianna +gaynelle +emerald +demetrius +danyell +danille +dacia +coralee +cher +ceola +brett +bell +arianne +aleshia +yung +williemae +troy +trinh +thora +tai +svetlana +sherika +shemeka +shaunda +roseline +ricki +melda +mallie +lavonna +latina +larry +laquanda +lala +lachelle +klara +kandis +johna +jeanmarie +jaye +hang +grayce +gertude +emerita +ebonie +clorinda +ching +chery +carola +breann +blossom +bernardine +becki +arletha +argelia +ara +alita +yulanda +yon +yessenia +tobi +tasia +sylvie +shirl +shirely +sheridan +shella +shantelle +sacha +royce +rebecka +reagan +providencia +paulene +misha +miki +marline +marica +lorita +latoyia +lasonya +kerstin +kenda +keitha +kathrin +jaymie +jack +gricelda +ginette +eryn +elina +elfrieda +danyel +cheree +chanelle +barrie +avery +aurore +annamaria +alleen +ailene +aide +yasmine +vashti +valentine +treasa +tory +tiffaney +sheryll +sharie +shanae +sau +raisa +pa +neda +mitsuko +mirella +milda +maryanna +maragret +mabelle +luetta +lorina +letisha +latarsha +lanelle +lajuana +krissy +karly +karena +jon +jessika +jerica +jeanelle +january +jalisa +jacelyn +izola +ivey +gregory +euna +etha +drew +domitila +dominica +daina +creola +carli +camie +bunny +brittny +ashanti +anisha +aleen +adah +yasuko +winter +viki +valrie +tona +tinisha +thi +terisa +tatum +taneka +simonne +shalanda +serita +ressie +refugia +paz +olene +na +merrill +margherita +mandie +man +maire +lyndia +luci +lorriane +loreta +leonia +lavona +lashawnda +lakia +kyoko +krystina +krysten +kenia +kelsi +jude +jeanice +isobel +georgiann +genny +felicidad +eilene +deon +deloise +deedee +dannie +conception +clora +cherilyn +chang +calandra +berry +armandina +anisa +ula +timothy +tiera +theressa +stephania +sima +shyla +shonta +shera +shaquita +shala +sammy +rossana +nohemi +nery +moriah +melita +melida +melani +marylynn +marisha +mariette +malorie +madelene +ludivina +loria +lorette +loralee +lianne +leon +lavenia +laurinda +lashon +kit +kimi +keila +katelynn +kai +jone +joane +ji +jayna +janella +ja +hue +hertha +francene +elinore +despina +delsie +deedra +clemencia +carry +carolin +carlos +bulah +brittanie +bok +blondell +bibi +beaulah +beata +annita +agripina +virgen +valene +un +twanda +tommye +toi +tarra +tari +tammera +shakia +sadye +ruthanne +rochel +rivka +pura +nenita +natisha +ming +merrilee +melodee +marvis +lucilla +leena +laveta +larita +lanie +keren +ileen +georgeann +genna +genesis +frida +ewa +eufemia +emely +ela +edyth +deonna +deadra +darlena +chanell +chan +cathern +cassondra +cassaundra +bernarda +berna +arlinda +anamaria +albert +wesley +vertie +valeri +torri +tatyana +stasia +sherise +sherill +season +scottie +sanda +ruthe +rosy +roberto +robbi +ranee +quyen +pearly +palmira +onita +nisha +niesha +nida +nevada +nam +merlyn +mayola +marylouise +maryland +marx +marth +margene +madelaine +londa +leontine +leoma +leia +lawrence +lauralee +lanora +lakita +kiyoko +keturah +katelin +kareen +jonie +johnette +jenee +jeanett +izetta +hiedi +heike +hassie +harold +giuseppina +georgann +fidela +fernande +elwanda +ellamae +eliz +dusti +dotty +cyndy +coralie +celesta +argentina +alverta +xenia +wava +vanetta +torrie +tashina +tandy +tambra +tama +stepanie +shila +shaunta +sharan +shaniqua +shae +setsuko +serafina +sandee +rosamaria +priscila +olinda +nadene +muoi +michelina +mercedez +maryrose +marin +marcene +mao +magali +mafalda +logan +linn +lannie +kayce +karoline +kamilah +kamala +justa +joline +jennine +jacquetta +iraida +gerald +georgeanna +franchesca +fairy +emeline +elane +ehtel +earlie +dulcie +dalene +cris +classie +chere +charis +caroyln +carmina +carita +brian +bethanie +ayako +arica +an +alysa +alessandra +akilah +adrien +zetta +youlanda +yelena +yahaira +xuan +wendolyn +victor +tijuana +terrell +terina +teresia +suzi +sunday +sherell +shavonda +shaunte +sharda +shakita +sena +ryann +rubi +riva +reginia +rea +rachal +parthenia +pamula +monnie +monet +michaele +melia +marine +malka +maisha +lisandra +leo +lekisha +lean +laurence +lakendra +krystin +kortney +kizzie +kittie +kera +kendal +kemberly +kanisha +julene +jule +joshua +johanne +jeffrey +jamee +han +halley +gidget +galina +fredricka +fleta +fatimah +eusebia +elza +eleonore +dorthey +doria +donella +dinorah +delorse +claretha +christinia +charlyn +bong +belkis +azzie +andera +aiko +adena +yer +yajaira +wan +vania +ulrike +toshia +tifany +stefany +shizue +shenika +shawanna +sharolyn +sharilyn +shaquana +shantay +see +rozanne +roselee +rickie +remona +reanna +raelene +quinn +phung +petronila +natacha +nancey +myrl +miyoko +miesha +merideth +marvella +marquitta +marhta +marchelle +lizeth +libbie +lahoma +ladawn +kina +katheleen +katharyn +karisa +kaleigh +junie +julieann +johnsie +janean +jaimee +jackqueline +hisako +herma +helaine +gwyneth +glenn +gita +eustolia +emelina +elin +edris +donnette +donnetta +dierdre +denae +darcel +claude +clarisa +cinderella +chia +charlesetta +charita +celsa +cassy +cassi +carlee +bruna +brittaney +brande +billi +bao +antonetta +angla +angelyn +analisa +alane +wenona +wendie +veronique +vannesa +tobie +tempie +sumiko +sulema +sparkle +somer +sheba +shayne +sharice +shanel +shalon +sage +roy +rosio +roselia +renay +rema +reena +porsche +ping +peg +ozie +oretha +oralee +oda +nu +ngan +nakesha +milly +marybelle +marlin +maris +margrett +maragaret +manie +lurlene +lillia +lieselotte +lavelle +lashaunda +lakeesha +keith +kaycee +kalyn +joya +joette +jenae +janiece +illa +grisel +glayds +genevie +gala +fredda +fred +elmer +eleonor +debera +deandrea +dan +corrinne +cordia +contessa +colene +cleotilde +charlott +chantay +cecille +beatris +azalee +arlean +ardath +anjelica +anja +alfredia +aleisha +adam +zada +yuonne +xiao +willodean +whitley +vennie +vanna +tyisha +tova +torie +tonisha +tilda +tien +temple +sirena +sherril +shanti +shan +senaida +samella +robbyn +renda +reita +phebe +paulita +nobuko +nguyet +neomi +moon +mikaela +melania +maximina +marg +maisie +lynna +lilli +layne +lashaun +lakenya +lael +kirstie +kathline +kasha +karlyn +karima +jovan +josefine +jennell +jacqui +jackelyn +hyo +hien +grazyna +florrie +floria +eleonora +dwana +dorla +dong +delmy +deja +dede +dann +crysta +clelia +claris +clarence +chieko +cherlyn +cherelle +charmain +chara +cammy +bee +arnette +ardelle +annika +amiee +amee +allena +yvone +yuki +yoshie +yevette +yael +willetta +voncile +venetta +tula +tonette +timika +temika +telma +teisha +taren +ta +stacee +shin +shawnta +saturnina +ricarda +pok +pasty +onie +nubia +mora +mike +marielle +mariella +marianela +mardell +many +luanna +loise +lisabeth +lindsy +lilliana +lilliam +lelah +leigha +leanora +lang +kristeen +khalilah +keeley +kandra +junko +joaquina +jerlene +jani +jamika +jame +hsiu +hermila +golden +genevive +evia +eugena +emmaline +elfreda +elene +donette +delcie +deeanna +darcey +cuc +clarinda +cira +chae +celinda +catheryn +catherin +casimira +carmelia +camellia +breana +bobette +bernardina +bebe +basilia +arlyne +amal +alayna +zonia +zenia +yuriko +yaeko +wynell +willow +willena +vernia +tu +travis +tora +terrilyn +terica +tenesha +tawna +tajuana +taina +stephnie +sona +sol +sina +shondra +shizuko +sherlene +sherice +sharika +rossie +rosena +rory +rima +ria +rheba +renna +peter +natalya +nancee +melodi +meda +maxima +matha +marketta +maricruz +marcelene +malvina +luba +louetta +leida +lecia +lauran +lashawna +laine +khadijah +katerine +kasi +kallie +julietta +jesusita +jestine +jessia +jeremy +jeffie +janyce +isadora +georgianne +fidelia +evita +eura +eulah +estefana +elsy +elizabet +eladia +dodie +dion +dia +denisse +deloras +delila +daysi +dakota +curtis +crystle +concha +colby +claretta +chu +christia +charlsie +charlena +carylon +bettyann +asley +ashlea +amira +ai +agueda +agnus +yuette +vinita +victorina +tynisha +treena +toccara +tish +thomasena +tegan +soila +shiloh +shenna +sharmaine +shantae +shandi +september +saran +sarai +sana +samuel +salley +rosette +rolande +regine +otelia +oscar +olevia +nicholle +necole +naida +myrta +myesha +mitsue +minta +mertie +margy +mahalia +madalene +love +loura +lorean +lewis +lesha +leonida +lenita +lavone +lashell +lashandra +lamonica +kimbra +katherina +karry +kanesha +julio +jong +jeneva +jaquelyn +hwa +gilma +ghislaine +gertrudis +fransisca +fermina +ettie +etsuko +ellis +ellan +elidia +edra +dorethea +doreatha +denyse +denny +deetta +daine +cyrstal +corrin +cayla +carlita +camila +burma +bula +buena +blake +barabara +avril +austin +alaine +zana +wilhemina +wanetta +virgil +vi +veronika +vernon +verline +vasiliki +tonita +tisa +teofila +tayna +taunya +tandra +takako +sunni +suanne +sixta +sharell +seema +russell +rosenda +robena +raymonde +pei +pamila +ozell +neida +neely +mistie +micha +merissa +maurita +maryln +maryetta +marshall +marcell +malena +makeda +maddie +lovetta +lourie +lorrine +lorilee +lester +laurena +lashay +larraine +laree +lacresha +kristle +krishna +keva +keira +karole +joie +jinny +jeannetta +jama +heidy +gilberte +gema +faviola +evelynn +enda +elli +ellena +divina +dagny +collene +codi +cindie +chassidy +chasidy +catrice +catherina +cassey +caroll +carlena +candra +calista +bryanna +britteny +beula +bari +audrie +audria +ardelia +annelle +angila +alona +allyn diff --git a/splunk_eventgen/samples/dist.male.first b/splunk_eventgen/samples/dist.male.first new file mode 100644 index 00000000..95b473d0 --- /dev/null +++ b/splunk_eventgen/samples/dist.male.first @@ -0,0 +1,1219 @@ +james +john +robert +michael +william +david +richard +charles +joseph +thomas +christopher +daniel +paul +mark +donald +george +kenneth +steven +edward +brian +ronald +anthony +kevin +jason +matthew +gary +timothy +jose +larry +jeffrey +frank +scott +eric +stephen +andrew +raymond +gregory +joshua +jerry +dennis +walter +patrick +peter +harold +douglas +henry +carl +arthur +ryan +roger +joe +juan +jack +albert +jonathan +justin +terry +gerald +keith +samuel +willie +ralph +lawrence +nicholas +roy +benjamin +bruce +brandon +adam +harry +fred +wayne +billy +steve +louis +jeremy +aaron +randy +howard +eugene +carlos +russell +bobby +victor +martin +ernest +phillip +todd +jesse +craig +alan +shawn +clarence +sean +philip +chris +johnny +earl +jimmy +antonio +danny +bryan +tony +luis +mike +stanley +leonard +nathan +dale +manuel +rodney +curtis +norman +allen +marvin +vincent +glenn +jeffery +travis +jeff +chad +jacob +lee +melvin +alfred +kyle +francis +bradley +jesus +herbert +frederick +ray +joel +edwin +don +eddie +ricky +troy +randall +barry +alexander +bernard +mario +leroy +francisco +marcus +micheal +theodore +clifford +miguel +oscar +jay +jim +tom +calvin +alex +jon +ronnie +bill +lloyd +tommy +leon +derek +warren +darrell +jerome +floyd +leo +alvin +tim +wesley +gordon +dean +greg +jorge +dustin +pedro +derrick +dan +lewis +zachary +corey +herman +maurice +vernon +roberto +clyde +glen +hector +shane +ricardo +sam +rick +lester +brent +ramon +charlie +tyler +gilbert +gene +marc +reginald +ruben +brett +angel +nathaniel +rafael +leslie +edgar +milton +raul +ben +chester +cecil +duane +franklin +andre +elmer +brad +gabriel +ron +mitchell +roland +arnold +harvey +jared +adrian +karl +cory +claude +erik +darryl +jamie +neil +jessie +christian +javier +fernando +clinton +ted +mathew +tyrone +darren +lonnie +lance +cody +julio +kelly +kurt +allan +nelson +guy +clayton +hugh +max +dwayne +dwight +armando +felix +jimmie +everett +jordan +ian +wallace +ken +bob +jaime +casey +alfredo +alberto +dave +ivan +johnnie +sidney +byron +julian +isaac +morris +clifton +willard +daryl +ross +virgil +andy +marshall +salvador +perry +kirk +sergio +marion +tracy +seth +kent +terrance +rene +eduardo +terrence +enrique +freddie +wade +austin +stuart +fredrick +arturo +alejandro +jackie +joey +nick +luther +wendell +jeremiah +evan +julius +dana +donnie +otis +shannon +trevor +oliver +luke +homer +gerard +doug +kenny +hubert +angelo +shaun +lyle +matt +lynn +alfonso +orlando +rex +carlton +ernesto +cameron +neal +pablo +lorenzo +omar +wilbur +blake +grant +horace +roderick +kerry +abraham +willis +rickey +jean +ira +andres +cesar +johnathan +malcolm +rudolph +damon +kelvin +rudy +preston +alton +archie +marco +wm +pete +randolph +garry +geoffrey +jonathon +felipe +bennie +gerardo +ed +dominic +robin +loren +delbert +colin +guillermo +earnest +lucas +benny +noel +spencer +rodolfo +myron +edmund +garrett +salvatore +cedric +lowell +gregg +sherman +wilson +devin +sylvester +kim +roosevelt +israel +jermaine +forrest +wilbert +leland +simon +guadalupe +clark +irving +carroll +bryant +owen +rufus +woodrow +sammy +kristopher +mack +levi +marcos +gustavo +jake +lionel +marty +taylor +ellis +dallas +gilberto +clint +nicolas +laurence +ismael +orville +drew +jody +ervin +dewey +al +wilfred +josh +hugo +ignacio +caleb +tomas +sheldon +erick +frankie +stewart +doyle +darrel +rogelio +terence +santiago +alonzo +elias +bert +elbert +ramiro +conrad +pat +noah +grady +phil +cornelius +lamar +rolando +clay +percy +dexter +bradford +merle +darin +amos +terrell +moses +irvin +saul +roman +darnell +randal +tommie +timmy +darrin +winston +brendan +toby +van +abel +dominick +boyd +courtney +jan +emilio +elijah +cary +domingo +santos +aubrey +emmett +marlon +emanuel +jerald +edmond +emil +dewayne +will +otto +teddy +reynaldo +bret +morgan +jess +trent +humberto +emmanuel +stephan +louie +vicente +lamont +stacy +garland +miles +micah +efrain +billie +logan +heath +rodger +harley +demetrius +ethan +eldon +rocky +pierre +junior +freddy +eli +bryce +antoine +robbie +kendall +royce +sterling +mickey +chase +grover +elton +cleveland +dylan +chuck +damian +reuben +stan +august +leonardo +jasper +russel +erwin +benito +hans +monte +blaine +ernie +curt +quentin +agustin +murray +jamal +devon +adolfo +harrison +tyson +burton +brady +elliott +wilfredo +bart +jarrod +vance +denis +damien +joaquin +harlan +desmond +elliot +darwin +ashley +gregorio +buddy +xavier +kermit +roscoe +esteban +anton +solomon +scotty +norbert +elvin +williams +nolan +carey +rod +quinton +hal +brain +rob +elwood +kendrick +darius +moises +son +marlin +fidel +thaddeus +cliff +marcel +ali +jackson +raphael +bryon +armand +alvaro +jeffry +dane +joesph +thurman +ned +sammie +rusty +michel +monty +rory +fabian +reggie +mason +graham +kris +isaiah +vaughn +gus +avery +loyd +diego +alexis +adolph +norris +millard +rocco +gonzalo +derick +rodrigo +gerry +stacey +carmen +wiley +rigoberto +alphonso +ty +shelby +rickie +noe +vern +bobbie +reed +jefferson +elvis +bernardo +mauricio +hiram +donovan +basil +riley +ollie +nickolas +maynard +scot +vince +quincy +eddy +sebastian +federico +ulysses +heriberto +donnell +cole +denny +davis +gavin +emery +ward +romeo +jayson +dion +dante +clement +coy +odell +maxwell +jarvis +bruno +issac +mary +dudley +brock +sanford +colby +carmelo +barney +nestor +hollis +stefan +donny +art +linwood +beau +weldon +galen +isidro +truman +delmar +johnathon +silas +frederic +dick +kirby +irwin +cruz +merlin +merrill +charley +marcelino +lane +harris +cleo +carlo +trenton +kurtis +hunter +aurelio +winfred +vito +collin +denver +carter +leonel +emory +pasquale +mohammad +mariano +danial +blair +landon +dirk +branden +adan +numbers +clair +buford +german +bernie +wilmer +joan +emerson +zachery +fletcher +jacques +errol +dalton +monroe +josue +dominique +edwardo +booker +wilford +sonny +shelton +carson +theron +raymundo +daren +tristan +houston +robby +lincoln +jame +genaro +gale +bennett +octavio +cornell +laverne +hung +arron +antony +herschel +alva +giovanni +garth +cyrus +cyril +ronny +stevie +lon +freeman +erin +duncan +kennith +carmine +augustine +young +erich +chadwick +wilburn +russ +reid +myles +anderson +morton +jonas +forest +mitchel +mervin +zane +rich +jamel +lazaro +alphonse +randell +major +johnie +jarrett +brooks +ariel +abdul +dusty +luciano +lindsey +tracey +seymour +scottie +eugenio +mohammed +sandy +valentin +chance +arnulfo +lucien +ferdinand +thad +ezra +sydney +aldo +rubin +royal +mitch +earle +abe +wyatt +marquis +lanny +kareem +jamar +boris +isiah +emile +elmo +aron +leopoldo +everette +josef +gail +eloy +dorian +rodrick +reinaldo +lucio +jerrod +weston +hershel +barton +parker +lemuel +lavern +burt +jules +gil +eliseo +ahmad +nigel +efren +antwan +alden +margarito +coleman +refugio +dino +osvaldo +les +deandre +normand +kieth +ivory +andrea +trey +norberto +napoleon +jerold +fritz +rosendo +milford +sang +deon +christoper +alfonzo +lyman +josiah +brant +wilton +rico +jamaal +dewitt +carol +brenton +yong +olin +foster +faustino +claudio +judson +gino +edgardo +berry +alec +tanner +jarred +donn +trinidad +tad +shirley +prince +porfirio +odis +maria +lenard +chauncey +chang +tod +mel +marcelo +kory +augustus +keven +hilario +bud +sal +rosario +orval +mauro +dannie +zachariah +olen +anibal +milo +jed +frances +thanh +dillon +amado +newton +connie +lenny +tory +richie +lupe +horacio +brice +mohamed +delmer +dario +reyes +dee +mac +jonah +jerrold +robt +hank +sung +rupert +rolland +kenton +damion +chi +antone +waldo +fredric +bradly +quinn +kip +burl +walker +tyree +jefferey +ahmed +willy +stanford +oren +noble +moshe +mikel +enoch +brendon +quintin +jamison +florencio +darrick +tobias +minh +hassan +giuseppe +demarcus +cletus +tyrell +lyndon +keenan +werner +theo +geraldo +lou +columbus +chet +bertram +markus +huey +hilton +dwain +donte +tyron +omer +isaias +hipolito +fermin +chung +adalberto +valentine +jamey +bo +barrett +whitney +teodoro +mckinley +maximo +garfield +sol +raleigh +lawerence +abram +rashad +king +emmitt +daron +chong +samual +paris +otha +miquel +lacy +eusebio +dong +domenic +darron +buster +antonia +wilber +renato +jc +hoyt +haywood +ezekiel +chas +florentino +elroy +clemente +arden +neville +kelley +edison +deshawn +carrol +shayne +nathanial +jordon +danilo +claud +val +sherwood +raymon +rayford +cristobal +ambrose +titus +hyman +felton +ezequiel +erasmo +stanton +lonny +len +ike +milan +lino +jarod +herb +andreas +walton +rhett +palmer +jude +douglass +cordell +oswaldo +ellsworth +virgilio +toney +nathanael +del +britt +benedict +mose +hong +leigh +johnson +isreal +gayle +garret +fausto +asa +arlen +zack +warner +modesto +francesco +manual +jae +gaylord +gaston +filiberto +deangelo +michale +granville +wes +malik +zackary +tuan +nicky +eldridge +cristopher +cortez +antione +malcom +long +korey +jospeh +colton +waylon +von +hosea +shad +santo +rudolf +rolf +rey +renaldo +marcellus +lucius +lesley +kristofer +boyce +benton +man +kasey +jewell +hayden +harland +arnoldo +rueben +leandro +kraig +jerrell +jeromy +hobert +cedrick +arlie +winford +wally +patricia +luigi +keneth +jacinto +graig +franklyn +edmundo +sid +porter +leif +lauren +jeramy +elisha +buck +willian +vincenzo +shon +michal +lynwood +lindsay +jewel +jere +hai +elden +dorsey +darell +broderick +alonso diff --git a/splunk_eventgen/samples/external_ips.sample b/splunk_eventgen/samples/external_ips.sample new file mode 100644 index 00000000..2c7ed056 --- /dev/null +++ b/splunk_eventgen/samples/external_ips.sample @@ -0,0 +1,150 @@ +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +142.162.221.28 +142.233.200.21 +194.215.205.19 +201.122.42.235 +201.28.109.162 +201.3.120.132 +201.42.223.29 +203.92.58.136 +212.235.92.150 +212.27.63.151 +217.132.169.69 +59.162.167.100 +74.125.19.106 +81.11.191.113 +82.245.228.36 +84.34.159.23 +86.212.199.60 +86.9.190.90 +87.194.216.51 +89.167.143.32 +90.205.111.169 +92.1.170.135 +1.16.0.0 +1.19.11.11 +27.1.0.0 +27.1.11.11 +27.35.0.0 +27.35.11.11 +27.96.128.0 +27.96.191.11 +27.101.0.0 +27.101.11.11 +27.102.0.0 +27.102.11.11 +27.160.0.0 +27.175.11.11 +27.176.0.0 +193.33.170.23 +194.146.236.22 +194.8.74.23 +195.216.243.24 +195.69.160.22 +195.69.252.22 +195.80.144.22 +200.6.134.23 +202.164.25.24 +203.223.0.20 +217.197.192.20 +62.216.64.19 +64.66.0.20 +69.80.0.18 +87.240.128.18 +89.11.192.18 +91.199.80.24 +91.205.40.22 +91.208.184.24 +91.214.92.22 +94.229.0.20 +94.229.0.21 \ No newline at end of file diff --git a/splunk_eventgen/samples/firstNames.sample b/splunk_eventgen/samples/firstNames.sample new file mode 100644 index 00000000..c16e1d1c --- /dev/null +++ b/splunk_eventgen/samples/firstNames.sample @@ -0,0 +1,2000 @@ +JAMES +JOHN +ROBERT +MICHAEL +WILLIAM +DAVID +RICHARD +CHARLES +JOSEPH +THOMAS +CHRISTOPHER +DANIEL +PAUL +MARK +DONALD +GEORGE +KENNETH +STEVEN +EDWARD +BRIAN +RONALD +ANTHONY +KEVIN +JASON +MATTHEW +GARY +TIMOTHY +JOSE +LARRY +JEFFREY +FRANK +SCOTT +ERIC +STEPHEN +ANDREW +RAYMOND +GREGORY +JOSHUA +JERRY +DENNIS +WALTER +PATRICK +PETER +HAROLD +DOUGLAS +HENRY +CARL +ARTHUR +RYAN +ROGER +JOE +JUAN +JACK +ALBERT +JONATHAN +JUSTIN +TERRY +GERALD +KEITH +SAMUEL +WILLIE +RALPH +LAWRENCE +NICHOLAS +ROY +BENJAMIN +BRUCE +BRANDON +ADAM +HARRY +FRED +WAYNE +BILLY +STEVE +LOUIS +JEREMY +AARON +RANDY +HOWARD +EUGENE +CARLOS +RUSSELL +BOBBY +VICTOR +MARTIN +ERNEST +PHILLIP +TODD +JESSE +CRAIG +ALAN +SHAWN +CLARENCE +SEAN +PHILIP +CHRIS +JOHNNY +EARL +JIMMY +ANTONIO +DANNY +BRYAN +TONY +LUIS +MIKE +STANLEY +LEONARD +NATHAN +DALE +MANUEL +RODNEY +CURTIS +NORMAN +ALLEN +MARVIN +VINCENT +GLENN +JEFFERY +TRAVIS +JEFF +CHAD +JACOB +LEE +MELVIN +ALFRED +KYLE +FRANCIS +BRADLEY +JESUS +HERBERT +FREDERICK +RAY +JOEL +EDWIN +DON +EDDIE +RICKY +TROY +RANDALL +BARRY +ALEXANDER +BERNARD +MARIO +LEROY +FRANCISCO +MARCUS +MICHEAL +THEODORE +CLIFFORD +MIGUEL +OSCAR +JAY +JIM +TOM +CALVIN +ALEX +JON +RONNIE +BILL +LLOYD +TOMMY +LEON +DEREK +WARREN +DARRELL +JEROME +FLOYD +LEO +ALVIN +TIM +WESLEY +GORDON +DEAN +GREG +JORGE +DUSTIN +PEDRO +DERRICK +DAN +LEWIS +ZACHARY +COREY +HERMAN +MAURICE +VERNON +ROBERTO +CLYDE +GLEN +HECTOR +SHANE +RICARDO +SAM +RICK +LESTER +BRENT +RAMON +CHARLIE +TYLER +GILBERT +GENE +MARC +REGINALD +RUBEN +BRETT +ANGEL +NATHANIEL +RAFAEL +LESLIE +EDGAR +MILTON +RAUL +BEN +CHESTER +CECIL +DUANE +FRANKLIN +ANDRE +ELMER +BRAD +GABRIEL +RON +MITCHELL +ROLAND +ARNOLD +HARVEY +JARED +ADRIAN +KARL +CORY +CLAUDE +ERIK +DARRYL +JAMIE +NEIL +JESSIE +CHRISTIAN +JAVIER +FERNANDO +CLINTON +TED +MATHEW +TYRONE +DARREN +LONNIE +LANCE +CODY +JULIO +KELLY +KURT +ALLAN +NELSON +GUY +CLAYTON +HUGH +MAX +DWAYNE +DWIGHT +ARMANDO +FELIX +JIMMIE +EVERETT +JORDAN +IAN +WALLACE +KEN +BOB +JAIME +CASEY +ALFREDO +ALBERTO +DAVE +IVAN +JOHNNIE +SIDNEY +BYRON +JULIAN +ISAAC +MORRIS +CLIFTON +WILLARD +DARYL +ROSS +VIRGIL +ANDY +MARSHALL +SALVADOR +PERRY +KIRK +SERGIO +MARION +TRACY +SETH +KENT +TERRANCE +RENE +EDUARDO +TERRENCE +ENRIQUE +FREDDIE +WADE +AUSTIN +STUART +FREDRICK +ARTURO +ALEJANDRO +JACKIE +JOEY +NICK +LUTHER +WENDELL +JEREMIAH +EVAN +JULIUS +DANA +DONNIE +OTIS +SHANNON +TREVOR +OLIVER +LUKE +HOMER +GERARD +DOUG +KENNY +HUBERT +ANGELO +SHAUN +LYLE +MATT +LYNN +ALFONSO +ORLANDO +REX +CARLTON +ERNESTO +CAMERON +NEAL +PABLO +LORENZO +OMAR +WILBUR +BLAKE +GRANT +HORACE +RODERICK +KERRY +ABRAHAM +WILLIS +RICKEY +JEAN +IRA +ANDRES +CESAR +JOHNATHAN +MALCOLM +RUDOLPH +DAMON +KELVIN +RUDY +PRESTON +ALTON +ARCHIE +MARCO +WM +PETE +RANDOLPH +GARRY +GEOFFREY +JONATHON +FELIPE +BENNIE +GERARDO +ED +DOMINIC +ROBIN +LOREN +DELBERT +COLIN +GUILLERMO +EARNEST +LUCAS +BENNY +NOEL +SPENCER +RODOLFO +MYRON +EDMUND +GARRETT +SALVATORE +CEDRIC +LOWELL +GREGG +SHERMAN +WILSON +DEVIN +SYLVESTER +KIM +ROOSEVELT +ISRAEL +JERMAINE +FORREST +WILBERT +LELAND +SIMON +GUADALUPE +CLARK +IRVING +CARROLL +BRYANT +OWEN +RUFUS +WOODROW +SAMMY +KRISTOPHER +MACK +LEVI +MARCOS +GUSTAVO +JAKE +LIONEL +MARTY +TAYLOR +ELLIS +DALLAS +GILBERTO +CLINT +NICOLAS +LAURENCE +ISMAEL +ORVILLE +DREW +JODY +ERVIN +DEWEY +AL +WILFRED +JOSH +HUGO +IGNACIO +CALEB +TOMAS +SHELDON +ERICK +FRANKIE +STEWART +DOYLE +DARREL +ROGELIO +TERENCE +SANTIAGO +ALONZO +ELIAS +BERT +ELBERT +RAMIRO +CONRAD +PAT +NOAH +GRADY +PHIL +CORNELIUS +LAMAR +ROLANDO +CLAY +PERCY +DEXTER +BRADFORD +MERLE +DARIN +AMOS +TERRELL +MOSES +IRVIN +SAUL +ROMAN +DARNELL +RANDAL +TOMMIE +TIMMY +DARRIN +WINSTON +BRENDAN +TOBY +VAN +ABEL +DOMINICK +BOYD +COURTNEY +JAN +EMILIO +ELIJAH +CARY +DOMINGO +SANTOS +AUBREY +EMMETT +MARLON +EMANUEL +JERALD +EDMOND +EMIL +DEWAYNE +WILL +OTTO +TEDDY +REYNALDO +BRET +MORGAN +JESS +TRENT +HUMBERTO +EMMANUEL +STEPHAN +LOUIE +VICENTE +LAMONT +STACY +GARLAND +MILES +MICAH +EFRAIN +BILLIE +LOGAN +HEATH +RODGER +HARLEY +DEMETRIUS +ETHAN +ELDON +ROCKY +PIERRE +JUNIOR +FREDDY +ELI +BRYCE +ANTOINE +ROBBIE +KENDALL +ROYCE +STERLING +MICKEY +CHASE +GROVER +ELTON +CLEVELAND +DYLAN +CHUCK +DAMIAN +REUBEN +STAN +AUGUST +LEONARDO +JASPER +RUSSEL +ERWIN +BENITO +HANS +MONTE +BLAINE +ERNIE +CURT +QUENTIN +AGUSTIN +MURRAY +JAMAL +DEVON +ADOLFO +HARRISON +TYSON +BURTON +BRADY +ELLIOTT +WILFREDO +BART +JARROD +VANCE +DENIS +DAMIEN +JOAQUIN +HARLAN +DESMOND +ELLIOT +DARWIN +ASHLEY +GREGORIO +BUDDY +XAVIER +KERMIT +ROSCOE +ESTEBAN +ANTON +SOLOMON +SCOTTY +NORBERT +ELVIN +WILLIAMS +NOLAN +CAREY +ROD +QUINTON +HAL +BRAIN +ROB +ELWOOD +KENDRICK +DARIUS +MOISES +SON +MARLIN +FIDEL +THADDEUS +CLIFF +MARCEL +ALI +JACKSON +RAPHAEL +BRYON +ARMAND +ALVARO +JEFFRY +DANE +JOESPH +THURMAN +NED +SAMMIE +RUSTY +MICHEL +MONTY +RORY +FABIAN +REGGIE +MASON +GRAHAM +KRIS +ISAIAH +VAUGHN +GUS +AVERY +LOYD +DIEGO +ALEXIS +ADOLPH +NORRIS +MILLARD +ROCCO +GONZALO +DERICK +RODRIGO +GERRY +STACEY +CARMEN +WILEY +RIGOBERTO +ALPHONSO +TY +SHELBY +RICKIE +NOE +VERN +BOBBIE +REED +JEFFERSON +ELVIS +BERNARDO +MAURICIO +HIRAM +DONOVAN +BASIL +RILEY +OLLIE +NICKOLAS +MAYNARD +SCOT +VINCE +QUINCY +EDDY +SEBASTIAN +FEDERICO +ULYSSES +HERIBERTO +DONNELL +COLE +DENNY +DAVIS +GAVIN +EMERY +WARD +ROMEO +JAYSON +DION +DANTE +CLEMENT +COY +ODELL +MAXWELL +JARVIS +BRUNO +ISSAC +MARY +DUDLEY +BROCK +SANFORD +COLBY +CARMELO +BARNEY +NESTOR +HOLLIS +STEFAN +DONNY +ART +LINWOOD +BEAU +WELDON +GALEN +ISIDRO +TRUMAN +DELMAR +JOHNATHON +SILAS +FREDERIC +DICK +KIRBY +IRWIN +CRUZ +MERLIN +MERRILL +CHARLEY +MARCELINO +LANE +HARRIS +CLEO +CARLO +TRENTON +KURTIS +HUNTER +AURELIO +WINFRED +VITO +COLLIN +DENVER +CARTER +LEONEL +EMORY +PASQUALE +MOHAMMAD +MARIANO +DANIAL +BLAIR +LANDON +DIRK +BRANDEN +ADAN +NUMBERS +CLAIR +BUFORD +GERMAN +BERNIE +WILMER +JOAN +EMERSON +ZACHERY +FLETCHER +JACQUES +ERROL +DALTON +MONROE +JOSUE +DOMINIQUE +EDWARDO +BOOKER +WILFORD +SONNY +SHELTON +CARSON +THERON +RAYMUNDO +DAREN +TRISTAN +HOUSTON +ROBBY +LINCOLN +JAME +GENARO +GALE +BENNETT +OCTAVIO +CORNELL +LAVERNE +HUNG +ARRON +ANTONY +HERSCHEL +ALVA +GIOVANNI +GARTH +CYRUS +CYRIL +RONNY +STEVIE +LON +FREEMAN +ERIN +DUNCAN +KENNITH +CARMINE +AUGUSTINE +YOUNG +ERICH +CHADWICK +WILBURN +RUSS +REID +MYLES +ANDERSON +MORTON +JONAS +FOREST +MITCHEL +MERVIN +ZANE +RICH +JAMEL +LAZARO +ALPHONSE +RANDELL +MAJOR +JOHNIE +JARRETT +BROOKS +ARIEL +ABDUL +DUSTY +LUCIANO +LINDSEY +TRACEY +SEYMOUR +SCOTTIE +EUGENIO +MOHAMMED +SANDY +VALENTIN +CHANCE +ARNULFO +LUCIEN +FERDINAND +THAD +EZRA +SYDNEY +ALDO +RUBIN +ROYAL +MITCH +EARLE +ABE +WYATT +MARQUIS +LANNY +KAREEM +JAMAR +BORIS +ISIAH +EMILE +ELMO +ARON +LEOPOLDO +EVERETTE +JOSEF +GAIL +ELOY +DORIAN +RODRICK +REINALDO +LUCIO +JERROD +WESTON +HERSHEL +BARTON +PARKER +LEMUEL +LAVERN +BURT +JULES +GIL +ELISEO +AHMAD +NIGEL +EFREN +ANTWAN +ALDEN +MARGARITO +COLEMAN +REFUGIO +DINO +OSVALDO +LES +DEANDRE +NORMAND +KIETH +IVORY +ANDREA +TREY +NORBERTO +NAPOLEON +JEROLD +FRITZ +ROSENDO +MILFORD +SANG +DEON +CHRISTOPER +ALFONZO +LYMAN +JOSIAH +BRANT +WILTON +RICO +JAMAAL +DEWITT +CAROL +BRENTON +YONG +OLIN +FOSTER +FAUSTINO +CLAUDIO +JUDSON +GINO +EDGARDO +BERRY +ALEC +TANNER +JARRED +DONN +TRINIDAD +TAD +SHIRLEY +PRINCE +PORFIRIO +ODIS +MARIA +LENARD +CHAUNCEY +CHANG +TOD +MEL +MARCELO +KORY +AUGUSTUS +KEVEN +HILARIO +BUD +SAL +ROSARIO +ORVAL +MAURO +DANNIE +ZACHARIAH +OLEN +ANIBAL +MILO +JED +FRANCES +THANH +DILLON +AMADO +NEWTON +CONNIE +LENNY +TORY +RICHIE +LUPE +HORACIO +BRICE +MOHAMED +DELMER +DARIO +REYES +DEE +MAC +JONAH +JERROLD +ROBT +HANK +SUNG +RUPERT +ROLLAND +KENTON +DAMION +CHI +ANTONE +WALDO +FREDRIC +BRADLY +QUINN +KIP +BURL +WALKER +TYREE +JEFFEREY +AHMED +MARY +PATRICIA +LINDA +BARBARA +ELIZABETH +JENNIFER +MARIA +SUSAN +MARGARET +DOROTHY +LISA +NANCY +KAREN +BETTY +HELEN +SANDRA +DONNA +CAROL +RUTH +SHARON +MICHELLE +LAURA +SARAH +KIMBERLY +DEBORAH +JESSICA +SHIRLEY +CYNTHIA +ANGELA +MELISSA +BRENDA +AMY +ANNA +REBECCA +VIRGINIA +KATHLEEN +PAMELA +MARTHA +DEBRA +AMANDA +STEPHANIE +CAROLYN +CHRISTINE +MARIE +JANET +CATHERINE +FRANCES +ANN +JOYCE +DIANE +ALICE +JULIE +HEATHER +TERESA +DORIS +GLORIA +EVELYN +JEAN +CHERYL +MILDRED +KATHERINE +JOAN +ASHLEY +JUDITH +ROSE +JANICE +KELLY +NICOLE +JUDY +CHRISTINA +KATHY +THERESA +BEVERLY +DENISE +TAMMY +IRENE +JANE +LORI +RACHEL +MARILYN +ANDREA +KATHRYN +LOUISE +SARA +ANNE +JACQUELINE +WANDA +BONNIE +JULIA +RUBY +LOIS +TINA +PHYLLIS +NORMA +PAULA +DIANA +ANNIE +LILLIAN +EMILY +ROBIN +PEGGY +CRYSTAL +GLADYS +RITA +DAWN +CONNIE +FLORENCE +TRACY +EDNA +TIFFANY +CARMEN +ROSA +CINDY +GRACE +WENDY +VICTORIA +EDITH +KIM +SHERRY +SYLVIA +JOSEPHINE +THELMA +SHANNON +SHEILA +ETHEL +ELLEN +ELAINE +MARJORIE +CARRIE +CHARLOTTE +MONICA +ESTHER +PAULINE +EMMA +JUANITA +ANITA +RHONDA +HAZEL +AMBER +EVA +DEBBIE +APRIL +LESLIE +CLARA +LUCILLE +JAMIE +JOANNE +ELEANOR +VALERIE +DANIELLE +MEGAN +ALICIA +SUZANNE +MICHELE +GAIL +BERTHA +DARLENE +VERONICA +JILL +ERIN +GERALDINE +LAUREN +CATHY +JOANN +LORRAINE +LYNN +SALLY +REGINA +ERICA +BEATRICE +DOLORES +BERNICE +AUDREY +YVONNE +ANNETTE +JUNE +SAMANTHA +MARION +DANA +STACY +ANA +RENEE +IDA +VIVIAN +ROBERTA +HOLLY +BRITTANY +MELANIE +LORETTA +YOLANDA +JEANETTE +LAURIE +KATIE +KRISTEN +VANESSA +ALMA +SUE +ELSIE +BETH +JEANNE +VICKI +CARLA +TARA +ROSEMARY +EILEEN +TERRI +GERTRUDE +LUCY +TONYA +ELLA +STACEY +WILMA +GINA +KRISTIN +JESSIE +NATALIE +AGNES +VERA +WILLIE +CHARLENE +BESSIE +DELORES +MELINDA +PEARL +ARLENE +MAUREEN +COLLEEN +ALLISON +TAMARA +JOY +GEORGIA +CONSTANCE +LILLIE +CLAUDIA +JACKIE +MARCIA +TANYA +NELLIE +MINNIE +MARLENE +HEIDI +GLENDA +LYDIA +VIOLA +COURTNEY +MARIAN +STELLA +CAROLINE +DORA +JO +VICKIE +MATTIE +TERRY +MAXINE +IRMA +MABEL +MARSHA +MYRTLE +LENA +CHRISTY +DEANNA +PATSY +HILDA +GWENDOLYN +JENNIE +NORA +MARGIE +NINA +CASSANDRA +LEAH +PENNY +KAY +PRISCILLA +NAOMI +CAROLE +BRANDY +OLGA +BILLIE +DIANNE +TRACEY +LEONA +JENNY +FELICIA +SONIA +MIRIAM +VELMA +BECKY +BOBBIE +VIOLET +KRISTINA +TONI +MISTY +MAE +SHELLY +DAISY +RAMONA +SHERRI +ERIKA +KATRINA +CLAIRE +LINDSEY +LINDSAY +GENEVA +GUADALUPE +BELINDA +MARGARITA +SHERYL +CORA +FAYE +ADA +NATASHA +SABRINA +ISABEL +MARGUERITE +HATTIE +HARRIET +MOLLY +CECILIA +KRISTI +BRANDI +BLANCHE +SANDY +ROSIE +JOANNA +IRIS +EUNICE +ANGIE +INEZ +LYNDA +MADELINE +AMELIA +ALBERTA +GENEVIEVE +MONIQUE +JODI +JANIE +MAGGIE +KAYLA +SONYA +JAN +LEE +KRISTINE +CANDACE +FANNIE +MARYANN +OPAL +ALISON +YVETTE +MELODY +LUZ +SUSIE +OLIVIA +FLORA +SHELLEY +KRISTY +MAMIE +LULA +LOLA +VERNA +BEULAH +ANTOINETTE +CANDICE +JUANA +JEANNETTE +PAM +KELLI +HANNAH +WHITNEY +BRIDGET +KARLA +CELIA +LATOYA +PATTY +SHELIA +GAYLE +DELLA +VICKY +LYNNE +SHERI +MARIANNE +KARA +JACQUELYN +ERMA +BLANCA +MYRA +LETICIA +PAT +KRISTA +ROXANNE +ANGELICA +JOHNNIE +ROBYN +FRANCIS +ADRIENNE +ROSALIE +ALEXANDRA +BROOKE +BETHANY +SADIE +BERNADETTE +TRACI +JODY +KENDRA +JASMINE +NICHOLE +RACHAEL +CHELSEA +MABLE +ERNESTINE +MURIEL +MARCELLA +ELENA +KRYSTAL +ANGELINA +NADINE +KARI +ESTELLE +DIANNA +PAULETTE +LORA +MONA +DOREEN +ROSEMARIE +ANGEL +DESIREE +ANTONIA +HOPE +GINGER +JANIS +BETSY +CHRISTIE +FREDA +MERCEDES +MEREDITH +LYNETTE +TERI +CRISTINA +EULA +LEIGH +MEGHAN +SOPHIA +ELOISE +ROCHELLE +GRETCHEN +CECELIA +RAQUEL +HENRIETTA +ALYSSA +JANA +KELLEY +GWEN +KERRY +JENNA +TRICIA +LAVERNE +OLIVE +ALEXIS +TASHA +SILVIA +ELVIRA +CASEY +DELIA +SOPHIE +KATE +PATTI +LORENA +KELLIE +SONJA +LILA +LANA +DARLA +MAY +MINDY +ESSIE +MANDY +LORENE +ELSA +JOSEFINA +JEANNIE +MIRANDA +DIXIE +LUCIA +MARTA +FAITH +LELA +JOHANNA +SHARI +CAMILLE +TAMI +SHAWNA +ELISA +EBONY +MELBA +ORA +NETTIE +TABITHA +OLLIE +JAIME +WINIFRED +KRISTIE +MARINA +ALISHA +AIMEE +RENA +MYRNA +MARLA +TAMMIE +LATASHA +BONITA +PATRICE +RONDA +SHERRIE +ADDIE +FRANCINE +DELORIS +STACIE +ADRIANA +CHERI +SHELBY +ABIGAIL +CELESTE +JEWEL +CARA +ADELE +REBEKAH +LUCINDA +DORTHY +CHRIS +EFFIE +TRINA +REBA +SHAWN +SALLIE +AURORA +LENORA +ETTA +LOTTIE +KERRI +TRISHA +NIKKI +ESTELLA +FRANCISCA +JOSIE +TRACIE +MARISSA +KARIN +BRITTNEY +JANELLE +LOURDES +LAUREL +HELENE +FERN +ELVA +CORINNE +KELSEY +INA +BETTIE +ELISABETH +AIDA +CAITLIN +INGRID +IVA +EUGENIA +CHRISTA +GOLDIE +CASSIE +MAUDE +JENIFER +THERESE +FRANKIE +DENA +LORNA +JANETTE +LATONYA +CANDY +MORGAN +CONSUELO +TAMIKA +ROSETTA +DEBORA +CHERIE +POLLY +DINA +JEWELL +FAY +JILLIAN +DOROTHEA +NELL +TRUDY +ESPERANZA +PATRICA +KIMBERLEY +SHANNA +HELENA +CAROLINA +CLEO +STEFANIE +ROSARIO +OLA +JANINE +MOLLIE +LUPE +ALISA +LOU +MARIBEL +SUSANNE +BETTE +SUSANA +ELISE +CECILE +ISABELLE +LESLEY +JOCELYN +PAIGE +JONI +RACHELLE +LEOLA +DAPHNE +ALTA +ESTER +PETRA +GRACIELA +IMOGENE +JOLENE +KEISHA +LACEY +GLENNA +GABRIELA +KERI +URSULA +LIZZIE +KIRSTEN +SHANA +ADELINE +MAYRA +JAYNE +JACLYN +GRACIE +SONDRA +CARMELA +MARISA +ROSALIND +CHARITY +TONIA +BEATRIZ +MARISOL +CLARICE +JEANINE +SHEENA +ANGELINE +FRIEDA +LILY +ROBBIE +SHAUNA +MILLIE +CLAUDETTE +CATHLEEN +ANGELIA +GABRIELLE +AUTUMN +KATHARINE +SUMMER +JODIE +STACI +LEA +CHRISTI +JIMMIE +JUSTINE +ELMA +LUELLA +MARGRET +DOMINIQUE +SOCORRO +RENE +MARTINA +MARGO +MAVIS +CALLIE +BOBBI +MARITZA +LUCILE +LEANNE +JEANNINE +DEANA +AILEEN +LORIE +LADONNA +WILLA +MANUELA +GALE +SELMA +DOLLY +SYBIL +ABBY +LARA +DALE +IVY +DEE +WINNIE +MARCY +LUISA +JERI +MAGDALENA +OFELIA +MEAGAN +AUDRA +MATILDA +LEILA +CORNELIA +BIANCA +SIMONE +BETTYE +RANDI +VIRGIE +LATISHA +BARBRA +GEORGINA +ELIZA +LEANN +BRIDGETTE +RHODA +HALEY +ADELA +NOLA +BERNADINE +FLOSSIE +ILA +GRETA +RUTHIE +NELDA +MINERVA +LILLY +TERRIE +LETHA +HILARY +ESTELA +VALARIE +BRIANNA +ROSALYN +EARLINE +CATALINA +AVA +MIA +CLARISSA +LIDIA +CORRINE +ALEXANDRIA +CONCEPCION +TIA +SHARRON +RAE +DONA +ERICKA +JAMI +ELNORA +CHANDRA +LENORE +NEVA +MARYLOU +MELISA +TABATHA +SERENA +AVIS +ALLIE +SOFIA +JEANIE +ODESSA +NANNIE +HARRIETT +LORAINE +PENELOPE +MILAGROS +EMILIA +BENITA +ALLYSON +ASHLEE +TANIA +TOMMIE +ESMERALDA +KARINA +EVE +PEARLIE +ZELMA +MALINDA +NOREEN +TAMEKA +SAUNDRA +HILLARY +AMIE +ALTHEA +ROSALINDA +JORDAN +LILIA +ALANA +GAY +CLARE +ALEJANDRA +ELINOR +MICHAEL +LORRIE +JERRI +DARCY +EARNESTINE +CARMELLA +TAYLOR +NOEMI +MARCIE +LIZA +ANNABELLE +LOUISA +EARLENE +MALLORY +CARLENE +NITA +SELENA +TANISHA +KATY +JULIANNE +JOHN +LAKISHA +EDWINA +MARICELA +MARGERY +KENYA +DOLLIE +ROXIE +ROSLYN +KATHRINE +NANETTE +CHARMAINE +LAVONNE +ILENE +KRIS +TAMMI +SUZETTE +CORINE +KAYE +JERRY +MERLE +CHRYSTAL +LINA +DEANNE +LILIAN +JULIANA +ALINE +LUANN +KASEY +MARYANNE +EVANGELINE +COLETTE +MELVA +LAWANDA +YESENIA +NADIA +MADGE +KATHIE +EDDIE +OPHELIA +VALERIA +NONA +MITZI +MARI +GEORGETTE +CLAUDINE +FRAN +ALISSA +ROSEANN +LAKEISHA +SUSANNA +REVA +DEIDRE +CHASITY +SHEREE +CARLY +JAMES +ELVIA +ALYCE +DEIRDRE +GENA +BRIANA +ARACELI +KATELYN +ROSANNE +WENDI +TESSA +BERTA +MARVA +IMELDA +MARIETTA +MARCI +LEONOR +ARLINE +SASHA +MADELYN +JANNA +JULIETTE +DEENA +AURELIA +JOSEFA +AUGUSTA +LILIANA +YOUNG +CHRISTIAN +LESSIE +AMALIA +SAVANNAH +ANASTASIA +VILMA +NATALIA +ROSELLA +LYNNETTE +CORINA +ALFREDA +LEANNA +CAREY +AMPARO +COLEEN +TAMRA +AISHA +WILDA +KARYN +CHERRY +QUEEN +MAURA +MAI +EVANGELINA +ROSANNA +HALLIE +ERNA +ENID +MARIANA +LACY +JULIET +JACKLYN +FREIDA +MADELEINE +MARA +HESTER +CATHRYN +LELIA +CASANDRA +BRIDGETT +ANGELITA +JANNIE +DIONNE +ANNMARIE +KATINA +BERYL +PHOEBE +MILLICENT +KATHERYN +DIANN +CARISSA +MARYELLEN +LIZ +LAURI +HELGA +GILDA +ADRIAN +RHEA +MARQUITA +HOLLIE +TISHA +TAMERA +ANGELIQUE +FRANCESCA +BRITNEY +KAITLIN +LOLITA +FLORINE +ROWENA +REYNA +TWILA +FANNY +JANELL +INES +CONCETTA +BERTIE +ALBA +BRIGITTE +ALYSON +VONDA +PANSY +ELBA +NOELLE +LETITIA +KITTY +DEANN +BRANDIE +LOUELLA +LETA +FELECIA +SHARLENE +LESA +BEVERLEY +ROBERT +ISABELLA +HERMINIA +TERRA +CELINA \ No newline at end of file diff --git a/splunk_eventgen/samples/hostname.sample b/splunk_eventgen/samples/hostname.sample new file mode 100644 index 00000000..ce31533a --- /dev/null +++ b/splunk_eventgen/samples/hostname.sample @@ -0,0 +1,50 @@ +ACME-001 +ACME-002 +ACME-003 +ACME-004 +ACME-005 +ACME-006 +HOST-001 +HOST-002 +HOST-003 +HOST-004 +HOST-005 +HOST-006 +ops-sys-001 +ops-sys-002 +ops-sys-003 +ops-sys-004 +ops-sys-005 +ops-sys-006 +PROD-POS-001 +PROD-POS-002 +PROD-POS-003 +PROD-POS-004 +PROD-POS-005 +PROD-POS-006 +PROD-MFS-001 +PROD-MFS-002 +PROD-MFS-003 +PROD-MFS-004 +PROD-MFS-005 +PROD-MFS-006 +COREDEV-001 +COREDEV-002 +COREDEV-003 +COREDEV-004 +COREDEV-005 +COREDEV-006 +SE-001 +SE-002 +SE-003 +SE-004 +SE-005 +SE-006 +BUSDEV-001 +BUSDEV-002 +BUSDEV-003 +BUSDEV-004 +BUSDEV-005 +BUSDEV-006 +BUSDEV-007 +BUSDEV-008 \ No newline at end of file diff --git a/splunk_eventgen/samples/iana_domains.sample b/splunk_eventgen/samples/iana_domains.sample new file mode 100644 index 00000000..07216ff1 --- /dev/null +++ b/splunk_eventgen/samples/iana_domains.sample @@ -0,0 +1,316 @@ +ac +ad +ae +aero +af +ag +ai +al +am +an +ao +aq +ar +arpa +as +asia +at +au +aw +ax +az +ba +bb +bd +be +bf +bg +bh +bi +biz +bj +bm +bn +bo +br +bs +bt +bv +bw +by +bz +ca +cat +cc +cd +cf +cg +ch +ci +ck +cl +cm +cn +co +com +coop +cr +cu +cv +cw +cx +cy +cz +de +dj +dk +dm +do +dz +ec +edu +ee +eg +er +es +et +eu +fi +fj +fk +fm +fo +fr +ga +gb +gd +ge +gf +gg +gh +gi +gl +gm +gn +gov +gp +gq +gr +gs +gt +gu +gw +gy +hk +hm +hn +hr +ht +hu +id +ie +il +im +in +info +int +io +iq +ir +is +it +je +jm +jo +jobs +jp +ke +kg +kh +ki +km +kn +kp +kr +kw +ky +kz +la +lb +lc +li +lk +lr +ls +lt +lu +lv +ly +ma +mc +md +me +mg +mh +mil +mk +ml +mm +mn +mo +mobi +mp +mq +mr +ms +mt +mu +museum +mv +mw +mx +my +mz +na +name +nc +ne +net +nf +ng +ni +nl +no +np +nr +nu +nz +om +org +pa +pe +pf +pg +ph +pk +pl +pm +pn +post +pr +pro +ps +pt +pw +py +qa +re +ro +rs +ru +rw +sa +sb +sc +sd +se +sg +sh +si +sj +sk +sl +sm +sn +so +sr +st +su +sv +sx +sy +sz +tc +td +tel +tf +tg +th +tj +tk +tl +tm +tn +to +tp +tr +travel +tt +tv +tw +tz +ua +ug +uk +us +uy +uz +va +vc +ve +vg +vi +vn +vu +wf +ws +xn--0zwm56d +xn--11b5bs3a9aj6g +xn--3e0b707e +xn--45brj9c +xn--80akhbyknj4f +xn--80ao21a +xn--90a3ac +xn--9t4b11yi5a +xn--clchc0ea0b2g2a9gcd +xn--deba0ad +xn--fiqs8s +xn--fiqz9s +xn--fpcrj9c3d +xn--fzc2c9e2c +xn--g6w251d +xn--gecrj9c +xn--h2brj9c +xn--hgbk6aj7f53bba +xn--hlcj6aya9esc7a +xn--j6w193g +xn--jxalpdlp +xn--kgbechtv +xn--kprw13d +xn--kpry57d +xn--lgbbat1ad8j +xn--mgb9awbf +xn--mgbaam7a8h +xn--mgbayh7gpa +xn--mgbbh1a71e +xn--mgbc0a9azcg +xn--mgberp4a5d4ar +xn--mgbx4cd0ab +xn--o3cw4h +xn--ogbpf8fl +xn--p1ai +xn--pgbs0dh +xn--s9brj9c +xn--wgbh1c +xn--wgbl6a +xn--xkc2al3hye2a +xn--xkc2dl3a5ee0h +xn--yfro4i67o +xn--ygbi2ammx +xn--zckzah +xxx +ye +yt +za +zm +zw \ No newline at end of file diff --git a/splunk_eventgen/samples/internal_ips.sample b/splunk_eventgen/samples/internal_ips.sample new file mode 100644 index 00000000..a9070e8d --- /dev/null +++ b/splunk_eventgen/samples/internal_ips.sample @@ -0,0 +1,951 @@ +10.88.232.170 +10.88.153.34 +10.89.86.103 +10.89.108.98 +10.123.2.9 +10.90.150.222 +10.178.191.121 +10.91.215.193 +10.123.194.42 +10.123.194.42 +10.88.50.221 +10.91.136.210 +10.151.125.19 +10.86.252.201 +10.145.73.211 +10.152.220.151 +10.145.224.179 +10.168.32.2 +10.95.22.60 +10.86.252.201 +10.175.207.190 +10.152.162.9 +10.90.100.32 +10.150.132.242 +10.150.132.242 +10.86.181.156 +10.91.202.219 +10.91.74.198 +10.91.202.219 +10.88.35.78 +10.172.22.224 +10.185.31.33 +10.162.247.125 +10.152.53.222 +10.91.25.243 +10.91.25.243 +10.98.40.77 +10.151.34.146 +10.84.250.163 +10.90.100.32 +10.148.188.147 +10.154.158.105 +10.170.246.4 +10.179.212.77 +10.123.124.28 +10.123.124.28 +10.173.60.83 +10.121.82.247 +10.168.40.117 +10.89.181.26 +10.153.208.149 +10.120.226.95 +10.162.247.125 +10.85.5.11 +10.89.254.80 +10.154.8.65 +10.122.171.246 +10.99.222.66 +10.177.237.244 +10.172.155.181 +10.89.107.135 +10.123.125.160 +10.179.193.254 +10.179.193.254 +10.85.245.109 +10.120.12.226 +10.184.180.90 +10.175.163.61 +10.88.35.78 +10.175.0.116 +10.85.245.109 +10.121.139.48 +10.86.220.2 +10.123.176.152 +10.120.12.226 +10.144.8.66 +10.167.67.70 +10.179.121.51 +10.166.101.209 +10.173.119.236 +10.120.251.250 +10.168.211.65 +10.122.68.227 +10.122.7.163 +10.94.33.205 +10.148.161.103 +10.187.180.140 +10.186.177.160 +10.185.186.50 +10.171.10.88 +10.161.146.110 +10.185.163.233 +10.151.12.232 +10.152.110.151 +10.123.141.235 +10.149.245.182 +10.91.164.40 +10.187.55.51 +10.149.245.182 +10.147.141.101 +10.162.65.160 +10.122.23.196 +10.145.233.94 +10.172.155.181 +10.174.58.87 +10.146.106.176 +10.123.125.160 +10.154.66.66 +10.148.17.16 +10.157.6.88 +10.151.191.20 +10.132.171.78 +10.187.165.92 +10.153.94.133 +10.148.17.16 +10.165.74.249 +10.185.198.156 +10.184.108.156 +10.99.199.248 +10.86.220.2 +10.99.199.248 +10.87.251.230 +10.168.118.92 +10.168.247.238 +10.163.249.196 +10.179.121.51 +10.187.36.80 +10.84.186.98 +10.166.101.209 +10.186.204.29 +10.86.7.223 +10.84.24.192 +10.123.50.113 +10.186.177.160 +10.187.180.140 +10.146.224.148 +10.186.28.31 +10.186.28.31 +10.147.6.208 +10.95.215.7 +10.185.163.233 +10.90.192.49 +10.88.232.170 +10.121.23.194 +10.157.120.61 +10.186.221.70 +10.152.127.222 +10.154.193.33 +10.176.87.78 +10.176.87.78 +10.122.23.196 +10.91.99.125 +10.89.81.236 +10.169.212.193 +10.120.73.193 +10.171.30.254 +10.175.12.58 +10.95.232.172 +10.120.28.237 +10.150.20.61 +10.177.122.209 +10.95.129.147 +10.150.20.61 +10.86.70.72 +10.177.122.209 +10.169.15.7 +10.86.70.72 +10.165.74.249 +10.85.15.2 +10.178.163.168 +10.168.118.92 +10.157.149.229 +10.168.247.238 +10.90.65.167 +10.147.16.248 +10.185.148.226 +10.91.154.210 +10.186.51.216 +10.152.116.119 +10.89.4.172 +10.120.251.250 +10.122.68.227 +10.122.242.60 +10.95.64.145 +10.169.43.34 +10.84.215.85 +10.148.236.57 +10.185.140.200 +10.186.73.143 +10.187.36.80 +10.167.0.233 +10.177.211.214 +10.167.0.233 +10.177.211.214 +10.187.66.116 +10.179.102.38 +10.179.102.38 +10.184.209.97 +10.169.160.173 +10.172.155.54 +10.91.172.61 +10.91.172.61 +10.172.137.16 +10.85.105.94 +10.171.30.254 +10.156.91.39 +10.178.163.168 +10.123.178.139 +10.172.155.54 +10.186.204.172 +10.151.118.232 +10.186.204.172 +10.88.53.92 +10.170.54.174 +10.151.118.232 +10.151.246.53 +10.88.33.180 +10.95.174.21 +10.88.33.180 +10.157.196.89 +10.149.49.10 +10.146.229.254 +10.123.164.101 +10.123.141.235 +10.155.61.131 +10.185.43.165 +10.120.83.93 +10.150.112.220 +10.157.191.113 +10.89.4.172 +10.174.0.16 +10.89.7.165 +10.169.187.156 +10.121.245.92 +10.170.114.49 +10.177.21.81 +10.177.21.81 +10.171.200.6 +10.85.33.246 +10.145.105.209 +10.154.100.208 +10.173.29.16 +10.84.30.158 +10.145.141.224 +10.85.105.94 +10.150.55.193 +10.171.200.6 +10.186.185.151 +10.187.99.83 +10.169.15.7 +10.84.113.180 +10.89.146.208 +10.88.53.92 +10.165.58.82 +10.185.34.113 +10.150.31.135 +10.120.208.207 +10.120.208.207 +10.88.156.50 +10.158.75.243 +10.179.125.134 +10.158.255.30 +10.151.89.208 +10.84.159.171 +10.91.165.150 +10.169.43.34 +10.157.71.11 +10.154.128.55 +10.173.215.179 +10.87.16.136 +10.95.64.145 +10.146.108.101 +10.170.128.166 +10.146.108.101 +10.121.245.92 +10.169.187.156 +10.121.49.110 +10.95.247.50 +10.174.0.16 +108.97.15.244 +10.176.240.103 +10.156.184.246 +10.170.114.49 +10.159.231.160 +10.163.196.156 +10.177.185.205 +10.84.167.96 +10.88.148.223 +10.184.125.119 +10.186.117.235 +108.106.227.179 +10.156.173.90 +10.178.147.108 +10.144.194.79 +10.178.152.155 +10.87.80.86 +10.87.80.86 +10.120.251.250 +10.156.52.17 +10.174.200.119 +10.84.30.158 +10.173.173.124 +10.122.68.227 +10.187.155.143 +10.86.25.63 +10.187.179.162 +10.144.235.14 +10.187.99.83 +10.95.74.112 +10.95.74.112 +10.179.242.29 +10.155.83.232 +10.145.157.40 +10.148.245.116 +10.88.156.50 +10.184.240.63 +10.171.11.219 +10.144.237.252 +10.150.11.179 +10.156.113.90 +10.123.178.139 +10.121.45.90 +10.145.188.245 +10.91.165.150 +10.173.215.179 +10.155.164.34 +10.84.100.124 +10.121.92.169 +10.156.165.11 +10.174.113.138 +10.95.5.109 +10.172.71.122 +10.147.9.147 +10.147.9.147 +10.162.152.219 +10.90.92.92 +10.175.130.131 +10.157.243.84 +10.156.252.253 +10.184.201.112 +10.186.159.239 +10.186.217.239 +10.186.217.239 +10.159.40.117 +10.184.238.250 +10.184.137.99 +10.149.73.47 +10.179.37.79 +10.87.210.253 +10.187.155.143 +10.177.249.16 +10.176.196.207 +10.152.11.202 +10.172.3.217 +10.85.105.184 +10.144.91.209 +10.122.124.96 +10.156.158.187 +10.152.151.49 +10.159.201.178 +10.98.58.47 +10.170.54.174 +10.144.119.50 +10.152.159.179 +10.179.10.238 +10.174.181.136 +10.172.199.60 +10.171.215.182 +10.155.231.52 +10.179.236.5 +10.164.232.181 +10.84.100.124 +10.174.113.138 +10.99.4.4 +10.179.200.152 +10.179.200.152 +10.89.128.158 +10.162.152.219 +10.148.143.37 +10.154.196.241 +10.187.6.61 +10.186.144.157 +10.153.166.229 +10.163.243.2 +10.168.80.39 +10.84.22.59 +10.87.142.37 +10.168.80.39 +10.186.129.250 +108.118.34.203 +10.155.20.94 +10.177.64.102 +10.148.223.135 +10.89.42.18 +10.178.198.97 +10.147.164.143 +10.95.22.60 +10.176.196.207 +10.186.126.101 +10.122.124.96 +10.120.251.250 +10.90.133.113 +10.152.36.225 +10.147.217.9 +10.184.253.224 +10.122.68.227 +10.171.10.242 +10.176.13.131 +10.176.13.131 +10.98.58.47 +10.168.30.195 +10.174.3.152 +10.85.170.88 +10.179.37.79 +10.178.1.102 +10.150.243.248 +10.171.10.242 +10.158.97.222 +10.122.27.216 +10.176.40.67 +10.122.27.216 +10.179.236.5 +10.94.63.34 +10.150.60.106 +10.150.60.106 +10.87.150.157 +10.164.232.181 +10.146.86.213 +10.99.4.4 +10.153.49.217 +10.184.13.57 +10.187.94.11 +10.147.177.144 +10.121.45.90 +10.89.128.158 +10.146.23.89 +10.151.115.126 +10.153.209.44 +10.186.144.157 +10.123.188.24 +10.163.243.2 +10.148.26.227 +10.147.160.121 +10.84.54.32 +10.95.129.147 +10.155.235.210 +10.123.80.140 +10.178.198.97 +10.156.242.55 +10.187.165.92 +10.145.145.57 +10.149.104.109 +10.170.238.215 +10.91.147.19 +10.146.66.45 +10.90.133.113 +10.85.89.218 +10.86.18.62 +10.170.241.199 +10.176.221.247 +10.176.221.247 +10.169.255.210 +10.122.252.23 +10.121.188.30 +10.85.7.243 +10.157.207.251 +10.184.217.203 +10.185.67.197 +10.151.178.216 +10.84.151.48 +10.153.93.82 +10.179.235.28 +10.172.20.47 +10.176.175.119 +10.184.91.45 +10.95.5.109 +10.186.60.244 +10.184.91.45 +10.146.213.92 +10.120.137.110 +10.120.137.110 +10.173.119.236 +10.175.130.131 +10.85.245.109 +10.168.142.202 +10.147.66.34 +10.121.11.184 +10.177.97.252 +10.173.5.59 +10.122.211.114 +10.90.86.21 +10.90.86.21 +10.186.178.69 +10.184.2.253 +10.159.153.246 +10.186.132.107 +10.170.224.65 +10.90.178.9 +10.85.89.218 +10.184.5.195 +10.86.18.62 +10.155.230.93 +10.121.37.17 +10.177.177.173 +10.177.177.173 +10.185.198.156 +10.88.204.248 +10.147.140.87 +10.173.158.251 +10.123.170.54 +10.88.204.248 +10.186.133.28 +10.87.16.136 +10.184.129.29 +10.169.255.210 +10.184.176.70 +10.179.251.234 +10.170.105.145 +10.150.112.220 +10.161.146.110 +10.157.173.134 +10.122.86.199 +10.146.66.83 +10.85.56.175 +10.158.114.195 +10.122.27.216 +10.186.123.127 +10.174.3.152 +10.168.80.39 +10.98.200.43 +10.157.236.62 +10.121.45.90 +10.184.2.253 +10.88.132.110 +10.90.178.9 +10.187.132.168 +10.184.167.136 +10.168.80.39 +10.179.176.113 +10.87.82.118 +10.186.60.244 +10.173.20.254 +10.144.90.219 +10.91.28.32 +10.86.31.223 +10.176.201.171 +10.176.201.171 +10.85.60.133 +10.177.97.252 +10.155.163.25 +10.186.133.28 +10.87.82.118 +10.173.158.251 +10.184.129.29 +10.123.85.91 +108.115.181.224 +10.184.176.70 +10.155.246.200 +10.156.90.230 +10.152.57.49 +10.153.0.219 +10.160.53.104 +10.169.199.125 +10.155.93.246 +10.178.1.102 +10.174.153.117 +10.145.60.177 +10.89.89.79 +10.85.56.175 +10.186.123.127 +10.91.22.183 +10.168.83.177 +10.177.170.216 +10.98.200.43 +10.173.71.214 +10.155.40.51 +10.120.137.110 +10.150.91.103 +10.185.57.185 +10.185.57.185 +10.150.51.219 +10.164.120.186 +10.157.163.53 +10.153.120.100 +10.173.20.254 +10.187.209.102 +10.99.226.145 +10.187.132.168 +10.153.252.194 +10.121.100.242 +10.186.127.115 +10.122.173.236 +10.122.171.246 +10.88.89.88 +10.122.11.175 +10.186.212.134 +10.88.59.8 +10.89.29.115 +10.154.224.252 +10.171.18.43 +10.123.33.21 +10.84.77.86 +10.179.75.61 +10.167.129.50 +10.89.62.241 +10.97.66.133 +10.121.37.17 +10.89.62.241 +10.179.176.113 +10.159.39.202 +10.87.120.201 +10.123.170.54 +10.85.69.60 +10.88.186.201 +10.94.48.216 +10.86.79.167 +10.186.60.244 +10.88.63.200 +10.88.63.200 +10.99.66.34 +10.121.211.216 +10.89.89.79 +10.148.36.45 +10.149.191.81 +10.186.236.22 +10.186.236.22 +10.174.96.92 +10.122.242.60 +10.87.73.240 +10.121.223.194 +10.121.5.92 +10.87.73.240 +10.168.165.97 +10.186.174.30 +10.185.94.54 +10.149.197.224 +10.146.132.200 +10.157.196.99 +10.120.7.193 +10.185.195.228 +10.89.138.237 +10.89.138.237 +10.122.27.216 +10.185.21.151 +10.147.131.243 +10.186.206.159 +10.187.184.50 +10.179.138.161 +10.99.43.62 +10.154.112.152 +10.154.112.152 +10.177.59.94 +10.152.32.227 +10.99.103.72 +10.85.157.9 +10.85.157.9 +10.121.45.90 +10.184.20.120 +10.156.3.224 +10.184.11.153 +10.156.3.224 +10.88.89.88 +10.184.11.153 +10.152.126.112 +10.149.94.44 +10.121.197.105 +10.123.33.21 +10.169.38.85 +10.178.196.196 +10.122.112.71 +10.159.77.23 +10.90.57.155 +10.171.18.43 +10.150.152.52 +10.86.254.51 +10.154.27.171 +10.97.66.133 +10.149.63.58 +10.169.199.125 +10.186.34.155 +10.169.38.85 +10.87.117.85 +10.87.120.201 +10.88.186.201 +10.178.193.141 +10.169.140.40 +10.86.79.167 +10.177.17.60 +10.154.25.106 +10.144.154.223 +10.90.54.1 +10.170.241.199 +10.123.105.247 +10.169.46.197 +10.159.132.197 +10.90.249.242 +10.168.83.177 +10.173.185.64 +10.185.94.54 +10.186.174.30 +10.174.96.92 +10.144.66.5 +10.155.38.154 +10.123.175.128 +10.122.253.51 +10.186.186.198 +10.185.104.182 +10.149.98.49 +10.157.248.45 +10.185.148.20 +10.84.187.44 +10.85.105.184 +10.158.83.94 +10.98.218.30 +10.185.195.228 +10.91.190.241 +10.158.203.37 +10.186.248.46 +10.120.109.82 +10.120.137.110 +10.184.171.56 +10.184.171.56 +10.184.20.120 +108.119.185.220 +10.121.197.105 +10.186.232.241 +10.123.182.223 +10.122.183.49 +10.176.185.54 +10.122.183.49 +10.87.212.228 +10.90.151.105 +10.121.194.104 +10.90.151.105 +10.177.200.59 +10.177.63.37 +10.149.150.1 +10.123.201.145 +10.155.3.240 +10.87.117.85 +10.186.140.173 +10.122.11.175 +10.187.55.51 +10.98.106.225 +10.159.88.132 +10.86.254.51 +10.90.54.1 +10.90.249.242 +10.149.111.250 +10.187.157.200 +10.149.111.250 +10.121.47.88 +10.186.85.250 +10.121.37.17 +10.91.199.143 +10.147.95.50 +10.185.29.26 +10.178.196.196 +10.158.164.2 +10.184.121.230 +10.154.16.165 +10.123.170.54 +10.123.175.128 +10.122.253.51 +10.147.70.19 +10.186.97.185 +10.186.115.80 +10.88.97.124 +10.153.140.122 +10.159.4.17 +10.105.159.56 +10.91.190.241 +10.94.48.216 +10.172.138.201 +10.123.210.96 +10.172.138.201 +10.120.109.82 +10.146.14.234 +10.99.53.164 +10.146.169.164 +10.186.248.46 +10.185.4.151 +10.154.242.95 +10.153.60.212 +10.157.200.154 +10.91.113.30 +10.90.84.191 +10.120.7.193 +10.157.83.114 +10.147.89.174 +10.84.12.108 +10.172.95.74 +10.88.239.25 +10.87.106.58 +10.150.8.76 +10.174.16.172 +10.173.145.191 +10.186.127.115 +10.173.145.191 +10.90.22.188 +10.123.139.156 +10.87.82.115 +10.95.233.119 +10.148.199.219 +10.177.63.37 +10.149.105.161 +10.97.154.146 +10.148.36.75 +10.174.187.15 +10.175.161.179 +10.174.187.15 +10.175.161.179 +10.87.82.115 +107.34.5.77 +108.119.77.220 +10.157.178.58 +10.175.163.61 +10.167.91.27 +10.166.221.58 +10.166.221.58 +10.177.104.14 +10.185.29.26 +10.159.199.89 +10.86.29.105 +10.187.157.200 +10.184.121.230 +10.164.61.128 +10.86.29.105 +10.85.38.37 +10.145.220.199 +10.186.85.250 +10.120.220.21 +10.91.79.22 +10.148.252.117 +10.157.236.62 +10.159.186.146 +10.87.102.57 +10.86.189.239 +10.88.97.124 +10.153.201.22 +10.145.50.55 +10.91.22.183 +10.98.27.195 +10.184.185.225 +10.152.233.66 +10.157.217.243 +10.123.210.96 +10.91.8.131 +10.184.4.195 +10.155.93.246 +10.186.97.28 +10.88.179.163 +10.91.95.2 +10.90.254.192 +10.91.95.2 +10.166.214.42 +10.99.53.164 +10.90.84.191 +10.122.201.54 +10.84.12.108 +10.86.83.139 +10.88.239.25 +10.87.106.58 +10.121.250.120 +10.186.233.107 +10.123.139.156 +10.187.39.60 +10.187.210.188 +10.184.224.137 +10.158.158.79 +10.91.169.242 +10.91.169.242 +10.121.175.224 +10.91.199.143 +10.175.215.17 +10.122.183.49 +10.155.85.64 +10.156.127.22 +10.88.4.22 +10.164.61.128 +10.122.89.26 +10.91.79.22 +10.151.94.91 +10.150.107.203 +10.149.126.245 +10.89.86.103 +10.151.27.87 +10.185.229.204 +10.145.97.184 +10.145.145.100 +10.177.2.84 +10.154.16.165 +10.85.103.2 +10.88.89.237 +10.88.89.237 +10.98.27.195 +10.145.138.114 +10.121.65.171 +10.85.33.246 +10.91.8.131 +10.121.37.17 +10.158.173.3 +10.90.150.222 +10.84.151.48 +10.151.67.172 +10.148.193.91 +10.178.155.199 +10.123.170.54 +10.169.212.193 +10.148.193.91 +10.176.170.148 +10.185.148.20 +10.186.186.198 +10.90.254.192 +10.185.124.240 +10.86.217.233 +10.86.83.139 +10.95.233.119 +10.177.123.11 +10.157.52.116 +10.170.189.248 +10.145.152.235 +10.122.216.74 +10.151.68.71 +10.97.14.129 +10.187.39.60 +10.184.227.115 +10.187.210.188 +10.96.16.252 +10.184.224.137 +10.150.170.55 +10.154.250.190 +10.89.107.135 +10.175.215.17 +10.84.159.171 +10.88.34.250 +10.184.238.250 +10.88.4.22 +10.175.90.228 +10.163.196.156 +10.158.68.159 +10.187.14.109 +10.184.180.90 +10.153.58.241 +10.150.219.53 +10.185.240.34 +10.97.175.248 +10.154.177.173 +10.87.234.179 +10.95.31.172 +10.95.31.172 diff --git a/splunk_eventgen/samples/ip_address.sample b/splunk_eventgen/samples/ip_address.sample new file mode 100644 index 00000000..1d8602d9 --- /dev/null +++ b/splunk_eventgen/samples/ip_address.sample @@ -0,0 +1,50 @@ +10.11.36.1 +10.11.36.2 +10.11.36.3 +10.11.36.4 +10.11.36.5 +10.11.36.6 +10.11.36.7 +10.11.36.8 +10.11.36.9 +10.11.36.10 +10.11.36.11 +10.11.36.12 +10.11.36.13 +10.11.36.14 +10.11.36.15 +10.11.36.16 +10.11.36.17 +10.11.36.18 +10.11.36.19 +10.11.36.20 +10.11.36.21 +10.11.36.22 +10.11.36.23 +10.11.36.24 +10.11.36.25 +10.11.36.26 +10.11.36.27 +10.11.36.28 +10.11.36.29 +10.11.36.30 +10.11.36.31 +10.11.36.32 +10.11.36.33 +10.11.36.34 +10.11.36.35 +10.11.36.36 +10.11.36.37 +10.11.36.38 +10.11.36.39 +10.11.36.40 +10.11.36.41 +10.11.36.42 +10.11.36.43 +10.11.36.44 +10.11.36.45 +10.11.36.46 +10.11.36.47 +10.11.36.48 +10.11.36.49 +10.11.36.50 \ No newline at end of file diff --git a/splunk_eventgen/samples/lastNames.sample b/splunk_eventgen/samples/lastNames.sample new file mode 100644 index 00000000..8e263542 --- /dev/null +++ b/splunk_eventgen/samples/lastNames.sample @@ -0,0 +1,1002 @@ +SMITH +JOHNSON +WILLIAMS +JONES +BROWN +DAVIS +MILLER +WILSON +MOORE +TAYLOR +ANDERSON +THOMAS +JACKSON +WHITE +HARRIS +MARTIN +THOMPSON +GARCIA +MARTINEZ +ROBINSON +CLARK +RODRIGUEZ +LEWIS +LEE +WALKER +HALL +ALLEN +YOUNG +HERNANDEZ +KING +WRIGHT +LOPEZ +HILL +SCOTT +GREEN +ADAMS +BAKER +GONZALEZ +NELSON +CARTER +MITCHELL +PEREZ +ROBERTS +TURNER +PHILLIPS +CAMPBELL +PARKER +EVANS +EDWARDS +COLLINS +STEWART +SANCHEZ +MORRIS +ROGERS +REED +COOK +MORGAN +BELL +MURPHY +BAILEY +RIVERA +COOPER +RICHARDSON +COX +HOWARD +WARD +TORRES +PETERSON +GRAY +RAMIREZ +JAMES +WATSON +BROOKS +KELLY +SANDERS +PRICE +BENNETT +WOOD +BARNES +ROSS +HENDERSON +COLEMAN +JENKINS +PERRY +POWELL +LONG +PATTERSON +HUGHES +FLORES +WASHINGTON +BUTLER +SIMMONS +FOSTER +GONZALES +BRYANT +ALEXANDER +RUSSELL +GRIFFIN +DIAZ +HAYES +MYERS +FORD +HAMILTON +GRAHAM +SULLIVAN +WALLACE +WOODS +COLE +WEST +JORDAN +OWENS +REYNOLDS +FISHER +ELLIS +HARRISON +GIBSON +MCDONALD +CRUZ +MARSHALL +ORTIZ +GOMEZ +MURRAY +FREEMAN +WELLS +WEBB +SIMPSON +STEVENS +TUCKER +PORTER +HUNTER +HICKS +CRAWFORD +HENRY +BOYD +MASON +MORALES +KENNEDY +WARREN +DIXON +RAMOS +REYES +BURNS +GORDON +SHAW +HOLMES +RICE +ROBERTSON +HUNT +BLACK +DANIELS +PALMER +MILLS +NICHOLS +GRANT +KNIGHT +FERGUSON +ROSE +STONE +HAWKINS +DUNN +PERKINS +HUDSON +SPENCER +GARDNER +STEPHENS +PAYNE +PIERCE +BERRY +MATTHEWS +ARNOLD +WAGNER +WILLIS +RAY +WATKINS +OLSON +CARROLL +DUNCAN +SNYDER +HART +CUNNINGHAM +BRADLEY +LANE +ANDREWS +RUIZ +HARPER +FOX +RILEY +ARMSTRONG +CARPENTER +WEAVER +GREENE +LAWRENCE +ELLIOTT +CHAVEZ +SIMS +AUSTIN +PETERS +KELLEY +FRANKLIN +LAWSON +FIELDS +GUTIERREZ +RYAN +SCHMIDT +CARR +VASQUEZ +CASTILLO +WHEELER +CHAPMAN +OLIVER +MONTGOMERY +RICHARDS +WILLIAMSON +JOHNSTON +BANKS +MEYER +BISHOP +MCCOY +HOWELL +ALVAREZ +MORRISON +HANSEN +FERNANDEZ +GARZA +HARVEY +LITTLE +BURTON +STANLEY +NGUYEN +GEORGE +JACOBS +REID +KIM +FULLER +LYNCH +DEAN +GILBERT +GARRETT +ROMERO +WELCH +LARSON +FRAZIER +BURKE +HANSON +DAY +MENDOZA +MORENO +BOWMAN +MEDINA +FOWLER +BREWER +HOFFMAN +CARLSON +SILVA +PEARSON +HOLLAND +DOUGLAS +FLEMING +JENSEN +VARGAS +BYRD +DAVIDSON +HOPKINS +MAY +TERRY +HERRERA +WADE +SOTO +WALTERS +CURTIS +NEAL +CALDWELL +LOWE +JENNINGS +BARNETT +GRAVES +JIMENEZ +HORTON +SHELTON +BARRETT +OBRIEN +CASTRO +SUTTON +GREGORY +MCKINNEY +LUCAS +MILES +CRAIG +RODRIQUEZ +CHAMBERS +HOLT +LAMBERT +FLETCHER +WATTS +BATES +HALE +RHODES +PENA +BECK +NEWMAN +HAYNES +MCDANIEL +MENDEZ +BUSH +VAUGHN +PARKS +DAWSON +SANTIAGO +NORRIS +HARDY +LOVE +STEELE +CURRY +POWERS +SCHULTZ +BARKER +GUZMAN +PAGE +MUNOZ +BALL +KELLER +CHANDLER +WEBER +LEONARD +WALSH +LYONS +RAMSEY +WOLFE +SCHNEIDER +MULLINS +BENSON +SHARP +BOWEN +DANIEL +BARBER +CUMMINGS +HINES +BALDWIN +GRIFFITH +VALDEZ +HUBBARD +SALAZAR +REEVES +WARNER +STEVENSON +BURGESS +SANTOS +TATE +CROSS +GARNER +MANN +MACK +MOSS +THORNTON +DENNIS +MCGEE +FARMER +DELGADO +AGUILAR +VEGA +GLOVER +MANNING +COHEN +HARMON +RODGERS +ROBBINS +NEWTON +TODD +BLAIR +HIGGINS +INGRAM +REESE +CANNON +STRICKLAND +TOWNSEND +POTTER +GOODWIN +WALTON +ROWE +HAMPTON +ORTEGA +PATTON +SWANSON +JOSEPH +FRANCIS +GOODMAN +MALDONADO +YATES +BECKER +ERICKSON +HODGES +RIOS +CONNER +ADKINS +WEBSTER +NORMAN +MALONE +HAMMOND +FLOWERS +COBB +MOODY +QUINN +BLAKE +MAXWELL +POPE +FLOYD +OSBORNE +PAUL +MCCARTHY +GUERRERO +LINDSEY +ESTRADA +SANDOVAL +GIBBS +TYLER +GROSS +FITZGERALD +STOKES +DOYLE +SHERMAN +SAUNDERS +WISE +COLON +GILL +ALVARADO +GREER +PADILLA +SIMON +WATERS +NUNEZ +BALLARD +SCHWARTZ +MCBRIDE +HOUSTON +CHRISTENSEN +KLEIN +PRATT +BRIGGS +PARSONS +MCLAUGHLIN +ZIMMERMAN +FRENCH +BUCHANAN +MORAN +COPELAND +ROY +PITTMAN +BRADY +MCCORMICK +HOLLOWAY +BROCK +POOLE +FRANK +LOGAN +OWEN +BASS +MARSH +DRAKE +WONG +JEFFERSON +PARK +MORTON +ABBOTT +SPARKS +PATRICK +NORTON +HUFF +CLAYTON +MASSEY +LLOYD +FIGUEROA +CARSON +BOWERS +ROBERSON +BARTON +TRAN +LAMB +HARRINGTON +CASEY +BOONE +CORTEZ +CLARKE +MATHIS +SINGLETON +WILKINS +CAIN +BRYAN +UNDERWOOD +HOGAN +MCKENZIE +COLLIER +LUNA +PHELPS +MCGUIRE +ALLISON +BRIDGES +WILKERSON +NASH +SUMMERS +ATKINS +WILCOX +PITTS +CONLEY +MARQUEZ +BURNETT +RICHARD +COCHRAN +CHASE +DAVENPORT +HOOD +GATES +CLAY +AYALA +SAWYER +ROMAN +VAZQUEZ +DICKERSON +HODGE +ACOSTA +FLYNN +ESPINOZA +NICHOLSON +MONROE +WOLF +MORROW +KIRK +RANDALL +ANTHONY +WHITAKER +OCONNOR +SKINNER +WARE +MOLINA +KIRBY +HUFFMAN +BRADFORD +CHARLES +GILMORE +DOMINGUEZ +ONEAL +BRUCE +LANG +COMBS +KRAMER +HEATH +HANCOCK +GALLAGHER +GAINES +SHAFFER +SHORT +WIGGINS +MATHEWS +MCCLAIN +FISCHER +WALL +SMALL +MELTON +HENSLEY +BOND +DYER +CAMERON +GRIMES +CONTRERAS +CHRISTIAN +WYATT +BAXTER +SNOW +MOSLEY +SHEPHERD +LARSEN +HOOVER +BEASLEY +GLENN +PETERSEN +WHITEHEAD +MEYERS +KEITH +GARRISON +VINCENT +SHIELDS +HORN +SAVAGE +OLSEN +SCHROEDER +HARTMAN +WOODARD +MUELLER +KEMP +DELEON +BOOTH +PATEL +CALHOUN +WILEY +EATON +CLINE +NAVARRO +HARRELL +LESTER +HUMPHREY +PARRISH +DURAN +HUTCHINSON +HESS +DORSEY +BULLOCK +ROBLES +BEARD +DALTON +AVILA +VANCE +RICH +BLACKWELL +YORK +JOHNS +BLANKENSHIP +TREVINO +SALINAS +CAMPOS +PRUITT +MOSES +CALLAHAN +GOLDEN +MONTOYA +HARDIN +GUERRA +MCDOWELL +CAREY +STAFFORD +GALLEGOS +HENSON +WILKINSON +BOOKER +MERRITT +MIRANDA +ATKINSON +ORR +DECKER +HOBBS +PRESTON +TANNER +KNOX +PACHECO +STEPHENSON +GLASS +ROJAS +SERRANO +MARKS +HICKMAN +ENGLISH +SWEENEY +STRONG +PRINCE +MCCLURE +CONWAY +WALTER +ROTH +MAYNARD +FARRELL +LOWERY +HURST +NIXON +WEISS +TRUJILLO +ELLISON +SLOAN +JUAREZ +WINTERS +MCLEAN +RANDOLPH +LEON +BOYER +VILLARREAL +MCCALL +GENTRY +CARRILLO +KENT +AYERS +LARA +SHANNON +SEXTON +PACE +HULL +LEBLANC +BROWNING +VELASQUEZ +LEACH +CHANG +HOUSE +SELLERS +HERRING +NOBLE +FOLEY +BARTLETT +MERCADO +LANDRY +DURHAM +WALLS +BARR +MCKEE +BAUER +RIVERS +EVERETT +BRADSHAW +PUGH +VELEZ +RUSH +ESTES +DODSON +MORSE +SHEPPARD +WEEKS +CAMACHO +BEAN +BARRON +LIVINGSTON +MIDDLETON +SPEARS +BRANCH +BLEVINS +CHEN +KERR +MCCONNELL +HATFIELD +HARDING +ASHLEY +SOLIS +HERMAN +FROST +GILES +BLACKBURN +WILLIAM +PENNINGTON +WOODWARD +FINLEY +MCINTOSH +KOCH +BEST +SOLOMON +MCCULLOUGH +DUDLEY +NOLAN +BLANCHARD +RIVAS +BRENNAN +MEJIA +KANE +BENTON +JOYCE +BUCKLEY +HALEY +VALENTINE +MADDOX +RUSSO +MCKNIGHT +BUCK +MOON +MCMILLAN +CROSBY +BERG +DOTSON +MAYS +ROACH +CHURCH +CHAN +RICHMOND +MEADOWS +FAULKNER +ONEILL +KNAPP +KLINE +BARRY +OCHOA +JACOBSON +GAY +AVERY +HENDRICKS +HORNE +SHEPARD +HEBERT +CHERRY +CARDENAS +MCINTYRE +WHITNEY +WALLER +HOLMAN +DONALDSON +CANTU +TERRELL +MORIN +GILLESPIE +FUENTES +TILLMAN +SANFORD +BENTLEY +PECK +KEY +SALAS +ROLLINS +GAMBLE +DICKSON +BATTLE +SANTANA +CABRERA +CERVANTES +HOWE +HINTON +HURLEY +SPENCE +ZAMORA +YANG +MCNEIL +SUAREZ +CASE +PETTY +GOULD +MCFARLAND +SAMPSON +CARVER +BRAY +ROSARIO +MACDONALD +STOUT +HESTER +MELENDEZ +DILLON +FARLEY +HOPPER +GALLOWAY +POTTS +BERNARD +JOYNER +STEIN +AGUIRRE +OSBORN +MERCER +BENDER +FRANCO +ROWLAND +SYKES +BENJAMIN +TRAVIS +PICKETT +CRANE +SEARS +MAYO +DUNLAP +HAYDEN +WILDER +MCKAY +COFFEY +MCCARTY +EWING +COOLEY +VAUGHAN +BONNER +COTTON +HOLDER +STARK +FERRELL +CANTRELL +FULTON +LYNN +LOTT +CALDERON +ROSA +POLLARD +HOOPER +BURCH +MULLEN +FRY +RIDDLE +LEVY +DAVID +DUKE +ODONNELL +GUY +MICHAEL +BRITT +FREDERICK +DAUGHERTY +BERGER +DILLARD +ALSTON +JARVIS +FRYE +RIGGS +CHANEY +ODOM +DUFFY +FITZPATRICK +VALENZUELA +MERRILL +MAYER +ALFORD +MCPHERSON +ACEVEDO +DONOVAN +BARRERA +ALBERT +COTE +REILLY +COMPTON +RAYMOND +MOONEY +MCGOWAN +CRAFT +CLEVELAND +CLEMONS +WYNN +NIELSEN +BAIRD +STANTON +SNIDER +ROSALES +BRIGHT +WITT +STUART +HAYS +HOLDEN +RUTLEDGE +KINNEY +CLEMENTS +CASTANEDA +SLATER +HAHN +EMERSON +CONRAD +BURKS +DELANEY +PATE +LANCASTER +SWEET +JUSTICE +TYSON +SHARPE +WHITFIELD +TALLEY +MACIAS +IRWIN +BURRIS +RATLIFF +MCCRAY +MADDEN +KAUFMAN +BEACH +GOFF +CASH +BOLTON +MCFADDEN +LEVINE +GOOD +BYERS +KIRKLAND +KIDD +WORKMAN +CARNEY +DALE +MCLEOD +HOLCOMB +ENGLAND +FINCH +HEAD +BURT +HENDRIX +SOSA +HANEY +FRANKS +SARGENT +NIEVES +DOWNS +RASMUSSEN +BIRD +HEWITT +LINDSAY +LE +FOREMAN +VALENCIA +ONEIL +DELACRUZ +VINSON +DEJESUS +HYDE +FORBES +GILLIAM +GUTHRIE +WOOTEN +HUBER +BARLOW +BOYLE +MCMAHON +BUCKNER +ROCHA +PUCKETT +LANGLEY +KNOWLES +COOKE +VELAZQUEZ +WHITLEY +NOEL +VANG + +Read more at http://names.mongabay.com/most_common_surnames.htm#CyreE4PYIvmxDJ5K.99 \ No newline at end of file diff --git a/splunk_eventgen/samples/linux_arch.sample b/splunk_eventgen/samples/linux_arch.sample new file mode 100644 index 00000000..33ef3111 --- /dev/null +++ b/splunk_eventgen/samples/linux_arch.sample @@ -0,0 +1,25 @@ +i386 +i686 +x86_64 +ia64 +alpha +amd64 +arm +armeb +armel +hppa +m32r +m68k +mips +mipsel +powerpc +ppc64 +s390 +s390x +sh3 +sh3eb +sh4 +sh4eb +sparc +sparcv8 +sparcv9 \ No newline at end of file diff --git a/splunk_eventgen/samples/mac_address.sample b/splunk_eventgen/samples/mac_address.sample new file mode 100644 index 00000000..37e425c9 --- /dev/null +++ b/splunk_eventgen/samples/mac_address.sample @@ -0,0 +1,50 @@ +19:61:3c:3e:20:84 +c7:df:23:1a:e8:ba +ba:b7:72:7a:16:30 +52:70:fa:52:7c:e4 +6a:83:f8:c6:5a:fc +e2:64:ae:81:26:f7 +ab:1a:41:74:87:2c +2f:29:25:a5:78:de +fb:69:33:d1:44:a4 +ac:d7:f5:9c:16:50 +67:c4:0e:fe:1a:34 +1a:ae:35:d8:b8:52 +af:fd:16:4f:9e:d8 +4a:43:e4:f5:3a:ae +0b:4a:fe:06:36:92 +73:09:b0:ec:6a:35 +d9:9d:e8:dc:91:d3 +76:a1:f8:7a:5b:6c +ec:ab:17:6c:17:c6 +92:90:55:51:61:31 +03:53:39:5b:ed:ab +da:b9:81:e1:17:01 +8b:66:79:4a:bf:c5 +f0:6c:88:2a:34:52 +74:c2:0a:56:49:99 +60:6e:74:df:78:fb +c0:eb:cf:50:74:6d +ad:7b:3d:db:49:8b +d8:9b:1f:b9:e6:01 +de:09:a2:ae:7a:93 +01:30:f9:d0:79:13 +20:c5:8e:0b:9d:a3 +ca:b6:07:cb:eb:a4 +ab:53:c2:c6:97:6b +84:df:af:01:a9:a5 +23:15:be:bc:d1:7f +d3:da:83:05:5e:2a +04:83:e5:65:6b:2c +5b:68:1e:b8:1d:25 +72:3d:78:de:38:ec +44:23:aa:bc:b0:b0 +3e:27:1c:ce:52:1f +88:7d:9a:11:64:de +81:4e:78:df:ad:d7 +59:7b:7f:54:da:c9 +8c:37:db:f0:2b:25 +d2:54:56:e0:f2:d9 +7e:70:7a:94:ca:76 +4b:a0:b6:18:fb:d0 +d0:ef:08:18:0d:8d \ No newline at end of file diff --git a/splunk_eventgen/samples/malicious_domains.sample b/splunk_eventgen/samples/malicious_domains.sample new file mode 100644 index 00000000..cb292097 --- /dev/null +++ b/splunk_eventgen/samples/malicious_domains.sample @@ -0,0 +1,5 @@ +www.theflyingpoodles.com +www.partychimp.com +www.truepants.ru +www.makerealcashnow.com +www.freepetcaretips.com \ No newline at end of file diff --git a/splunk_eventgen/samples/markets.sample b/splunk_eventgen/samples/markets.sample new file mode 100644 index 00000000..ccb98634 --- /dev/null +++ b/splunk_eventgen/samples/markets.sample @@ -0,0 +1 @@ +1101,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1102,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1103,SPRINGFIELD,MA,42.1029,-72.588735,HAMPDEN 1104,SPRINGFIELD,MA,42.128848,-72.577769,HAMPDEN 1105,SPRINGFIELD,MA,42.099931,-72.578312,HAMPDEN 1107,SPRINGFIELD,MA,42.117907,-72.606544,HAMPDEN 1108,SPRINGFIELD,MA,42.085314,-72.558432,HAMPDEN 1109,SPRINGFIELD,MA,42.114455,-72.554349,HAMPDEN 1111,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1115,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1118,SPRINGFIELD,MA,42.092937,-72.527445,HAMPDEN 1119,SPRINGFIELD,MA,42.12473,-72.51211,HAMPDEN 1128,SPRINGFIELD,MA,42.094397,-72.488903,HAMPDEN 1129,SPRINGFIELD,MA,42.122263,-72.487622,HAMPDEN 1133,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1138,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1139,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1144,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1151,SPRINGFIELD,MA,42.153225,-72.505048,HAMPDEN 1152,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1195,SPRINGFIELD,MA,42.1015,-72.5898,HAMPDEN 1199,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1601,WORCESTER,MA,42.2621,-71.8034,WORCESTER 1602,WORCESTER,MA,42.270251,-71.841678,WORCESTER 1603,WORCESTER,MA,42.245033,-71.837995,WORCESTER 1604,WORCESTER,MA,42.254084,-71.774626,WORCESTER 1605,WORCESTER,MA,42.289391,-71.788795,WORCESTER 1606,WORCESTER,MA,42.311029,-71.795774,WORCESTER 1607,WORCESTER,MA,42.230294,-71.793837,WORCESTER 1608,WORCESTER,MA,42.262425,-71.800262,WORCESTER 1609,WORCESTER,MA,42.275387,-71.817456,WORCESTER 1610,WORCESTER,MA,42.249186,-71.810798,WORCESTER 1613,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1614,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1615,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1653,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1654,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1655,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1801,WOBURN,MA,42.482894,-71.157404,MIDDLESEX 1806,WOBURN,MA,42.4791,-71.1527,MIDDLESEX 1807,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1808,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1813,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1815,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1888,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1901,LYNN,MA,42.463378,-70.945516,ESSEX 1902,LYNN,MA,42.469814,-70.941989,ESSEX 1903,LYNN,MA,42.4647,-70.9467,ESSEX 1904,LYNN,MA,42.487453,-70.962798,ESSEX 1905,LYNN,MA,42.46453,-70.973825,ESSEX 1910,LYNN,MA,42.4647,-70.9467,ESSEX 2108,BOSTON,MA,42.357603,-71.068432,SUFFOLK 2109,BOSTON,MA,42.362963,-71.053386,SUFFOLK 2110,BOSTON,MA,42.357636,-71.051417,SUFFOLK 2111,BOSTON,MA,42.350348,-71.0629,SUFFOLK 2112,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2113,BOSTON,MA,42.365656,-71.055958,SUFFOLK 2114,BOSTON,MA,42.361111,-71.06823,SUFFOLK 2115,BOSTON,MA,42.342706,-71.092215,SUFFOLK 2116,BOSTON,MA,42.349201,-71.076798,SUFFOLK 2117,BOSTON,MA,42.3503,-71.0762,SUFFOLK 2118,BOSTON,MA,42.340154,-71.075627,SUFFOLK 2119,BOSTON,MA,42.322414,-71.086923,SUFFOLK 2120,BOSTON,MA,42.332844,-71.097978,SUFFOLK 2121,BOSTON,MA,42.307503,-71.08305,SUFFOLK 2122,BOSTON,MA,42.297278,-71.058304,SUFFOLK 2123,BOSTON,MA,42.345,-71.0876,SUFFOLK 2124,BOSTON,MA,42.287984,-71.072898,SUFFOLK 2125,BOSTON,MA,42.315305,-71.061924,SUFFOLK 2127,BOSTON,MA,42.333454,-71.043792,SUFFOLK 2128,BOSTON,MA,42.378137,-71.028682,SUFFOLK 2133,BOSTON,MA,42.3573,-71.065,SUFFOLK 2138,CAMBRIDGE,MA,42.377045,-71.125611,MIDDLESEX 2139,CAMBRIDGE,MA,42.364688,-71.104155,MIDDLESEX 2140,CAMBRIDGE,MA,42.391366,-71.129379,MIDDLESEX 2141,CAMBRIDGE,MA,42.370701,-71.088277,MIDDLESEX 2142,CAMBRIDGE,MA,42.362025,-71.083011,MIDDLESEX 2163,BOSTON,MA,42.364005,-71.141879,SUFFOLK 2196,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2199,BOSTON,MA,42.347873,-71.082543,SUFFOLK 2201,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2203,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2204,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2205,BOSTON,MA,42.348,-71.0551,SUFFOLK 2206,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2207,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2210,BOSTON,MA,42.348921,-71.046511,SUFFOLK 2211,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2212,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2215,BOSTON,MA,42.347088,-71.102689,SUFFOLK 2216,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2217,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2222,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2238,CAMBRIDGE,MA,42.3731,-71.124,MIDDLESEX 2239,CAMBRIDGE,MA,42.3662,-71.1063,MIDDLESEX 2241,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2266,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2283,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2284,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2293,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2295,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2297,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2298,BOSTON,MA,42.3422,-71.0506,SUFFOLK 2740,NEW BEDFORD,MA,41.634749,-70.9372,BRISTOL 2741,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2742,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2744,NEW BEDFORD,MA,41.612716,-70.916746,BRISTOL 2745,NEW BEDFORD,MA,41.691337,-70.935545,BRISTOL 2746,NEW BEDFORD,MA,41.659972,-70.93243,BRISTOL 2901,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2902,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2903,PROVIDENCE,RI,41.820002,-71.415801,PROVIDENCE 2904,PROVIDENCE,RI,41.860461,-71.438102,PROVIDENCE 2905,PROVIDENCE,RI,41.786568,-71.403146,PROVIDENCE 2906,PROVIDENCE,RI,41.835104,-71.397065,PROVIDENCE 2907,PROVIDENCE,RI,41.800842,-71.424039,PROVIDENCE 2908,PROVIDENCE,RI,41.838294,-71.437684,PROVIDENCE 2909,PROVIDENCE,RI,41.816777,-71.448165,PROVIDENCE 2912,PROVIDENCE,RI,41.825833,-71.400833,PROVIDENCE 2918,PROVIDENCE,RI,41.8454,-71.4398,PROVIDENCE 2940,PROVIDENCE,RI,41.8238,-71.4133,PROVIDENCE 3101,MANCHESTER,NH,42.992858,-71.463255,HILLSBOROUGH 3102,MANCHESTER,NH,42.99442,-71.488433,HILLSBOROUGH 3103,MANCHESTER,NH,42.965563,-71.449325,HILLSBOROUGH 3104,MANCHESTER,NH,43.007307,-71.448233,HILLSBOROUGH 3105,MANCHESTER,NH,42.9925,-71.4635,HILLSBOROUGH 3107,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3108,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3109,MANCHESTER,NH,42.971349,-71.413474,HILLSBOROUGH 3111,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 4101,PORTLAND,ME,43.660564,-70.258864,CUMBERLAND 4102,PORTLAND,ME,43.660168,-70.28981,CUMBERLAND 4103,PORTLAND,ME,43.687568,-70.2876,CUMBERLAND 4104,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4109,PORTLAND,ME,43.674971,-70.202201,CUMBERLAND 4112,PORTLAND,ME,43.6613,-70.2558,CUMBERLAND 4122,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4123,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4124,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 5601,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5602,MONTPELIER,VT,44.264082,-72.576992,WASHINGTON 5603,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5604,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5609,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5620,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5633,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 6101,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6102,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6103,HARTFORD,CT,41.767196,-72.675966,HARTFORD 6104,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6105,HARTFORD,CT,41.769116,-72.701006,HARTFORD 6106,HARTFORD,CT,41.749841,-72.694734,HARTFORD 6107,WEST HARTFORD,CT,41.755553,-72.75322,HARTFORD 6110,WEST HARTFORD,CT,41.732566,-72.733691,HARTFORD 6112,HARTFORD,CT,41.79053,-72.69641,HARTFORD 6114,HARTFORD,CT,41.740293,-72.680726,HARTFORD 6115,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6117,WEST HARTFORD,CT,41.790021,-72.745689,HARTFORD 6119,WEST HARTFORD,CT,41.762765,-72.726799,HARTFORD 6120,HARTFORD,CT,41.78596,-72.675807,HARTFORD 6123,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6126,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6127,WEST HARTFORD,CT,41.7586,-72.7446,HARTFORD 6132,HARTFORD,CT,41.7813,-72.6968,HARTFORD 6133,WEST HARTFORD,CT,41.725,-72.7213,HARTFORD 6134,HARTFORD,CT,41.7431,-72.6834,HARTFORD 6137,WEST HARTFORD,CT,41.7619,-72.7425,HARTFORD 6140,HARTFORD,CT,41.7926,-72.678,HARTFORD 6141,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6142,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6143,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6144,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6145,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6146,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6147,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6150,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6151,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6152,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6153,HARTFORD,CT,41.6869,-72.7313,HARTFORD 6154,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6155,HARTFORD,CT,41.7692,-72.6861,HARTFORD 6156,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6160,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6161,HARTFORD,CT,41.6983,-72.6653,HARTFORD 6167,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6176,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6180,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6183,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6199,HARTFORD,CT,41.9266,-72.6546,HARTFORD 6501,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6502,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6503,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6504,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6505,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6506,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6507,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6508,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6509,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6510,NEW HAVEN,CT,41.308701,-72.92706,NEW HAVEN 6511,NEW HAVEN,CT,41.318364,-72.931771,NEW HAVEN 6513,NEW HAVEN,CT,41.314215,-72.882554,NEW HAVEN 6515,NEW HAVEN,CT,41.329301,-72.966445,NEW HAVEN 6519,NEW HAVEN,CT,41.296284,-72.937307,NEW HAVEN 6520,NEW HAVEN,CT,41.319,-72.9552,NEW HAVEN 6521,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6530,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6531,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6532,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6533,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6534,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6535,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6536,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6537,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6538,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6540,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6601,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6602,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6604,BRIDGEPORT,CT,41.179574,-73.201859,FAIRFIELD 6605,BRIDGEPORT,CT,41.166796,-73.216251,FAIRFIELD 6606,BRIDGEPORT,CT,41.20907,-73.208619,FAIRFIELD 6607,BRIDGEPORT,CT,41.178382,-73.165048,FAIRFIELD 6608,BRIDGEPORT,CT,41.189466,-73.181141,FAIRFIELD 6610,BRIDGEPORT,CT,41.200508,-73.168771,FAIRFIELD 6650,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6673,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6699,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6701,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6702,WATERBURY,CT,41.556568,-73.038545,NEW HAVEN 6703,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6704,WATERBURY,CT,41.575435,-73.031805,NEW HAVEN 6705,WATERBURY,CT,41.550328,-72.996268,NEW HAVEN 6706,WATERBURY,CT,41.536261,-73.03064,NEW HAVEN 6708,WATERBURY,CT,41.551102,-73.064495,NEW HAVEN 6710,WATERBURY,CT,41.567503,-73.046821,NEW HAVEN 6720,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6721,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6722,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6723,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6724,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6725,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6726,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6749,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6810,DANBURY,CT,41.391663,-73.453165,FAIRFIELD 6811,DANBURY,CT,41.423983,-73.471587,FAIRFIELD 6813,DANBURY,CT,41.3961,-73.4544,FAIRFIELD 6814,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6816,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6817,DANBURY,CT,41.3947,-73.4544,FAIRFIELD 6850,NORWALK,CT,41.12222,-73.435827,FAIRFIELD 6851,NORWALK,CT,41.132346,-73.405802,FAIRFIELD 6852,NORWALK,CT,41.1168,-73.4155,FAIRFIELD 6853,NORWALK,CT,41.070243,-73.439667,FAIRFIELD 6854,NORWALK,CT,41.095722,-73.428485,FAIRFIELD 6855,NORWALK,CT,41.101382,-73.401119,FAIRFIELD 6856,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6857,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6858,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6859,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6860,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6901,STAMFORD,CT,41.053083,-73.539039,FAIRFIELD 6902,STAMFORD,CT,41.052552,-73.537428,FAIRFIELD 6903,STAMFORD,CT,41.135235,-73.568356,FAIRFIELD 6904,STAMFORD,CT,41.0485,-73.5396,FAIRFIELD 6905,STAMFORD,CT,41.082576,-73.543757,FAIRFIELD 6906,STAMFORD,CT,41.069218,-73.523563,FAIRFIELD 6907,STAMFORD,CT,41.094206,-73.520297,FAIRFIELD 6910,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6911,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6912,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6913,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6914,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6920,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6921,STAMFORD,CT,41.0493,-73.5394,FAIRFIELD 6922,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6925,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6926,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6927,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6928,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 7097,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7101,NEWARK,NJ,40.7308,-74.1744,ESSEX 7102,NEWARK,NJ,40.73201,-74.176505,ESSEX 7103,NEWARK,NJ,40.736975,-74.196364,ESSEX 7104,NEWARK,NJ,40.766446,-74.1695,ESSEX 7105,NEWARK,NJ,40.727086,-74.156346,ESSEX 7106,NEWARK,NJ,40.741485,-74.233023,ESSEX 7107,NEWARK,NJ,40.760656,-74.18816,ESSEX 7108,NEWARK,NJ,40.723647,-74.201538,ESSEX 7112,NEWARK,NJ,40.71071,-74.213073,ESSEX 7114,NEWARK,NJ,40.708246,-74.189105,ESSEX 7175,NEWARK,NJ,40.7355,-74.1727,ESSEX 7182,NEWARK,NJ,40.731,-74.174,ESSEX 7184,NEWARK,NJ,40.7355,-74.1727,ESSEX 7188,NEWARK,NJ,40.7355,-74.1727,ESSEX 7189,NEWARK,NJ,40.7949,-74.1624,ESSEX 7191,NEWARK,NJ,40.7355,-74.1727,ESSEX 7192,NEWARK,NJ,40.7355,-74.1727,ESSEX 7193,NEWARK,NJ,40.7355,-74.1727,ESSEX 7194,NEWARK,NJ,40.7355,-74.1727,ESSEX 7195,NEWARK,NJ,40.7355,-74.1727,ESSEX 7198,NEWARK,NJ,40.7355,-74.1727,ESSEX 7199,NEWARK,NJ,40.7355,-74.1727,ESSEX 7302,JERSEY CITY,NJ,40.722126,-74.046878,HUDSON 7303,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7304,JERSEY CITY,NJ,40.717973,-74.075358,HUDSON 7305,JERSEY CITY,NJ,40.702007,-74.088998,HUDSON 7306,JERSEY CITY,NJ,40.732125,-74.066038,HUDSON 7307,JERSEY CITY,NJ,40.748167,-74.049752,HUDSON 7308,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7309,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7310,JERSEY CITY,NJ,40.732354,-74.043149,HUDSON 7311,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7395,JERSEY CITY,NJ,40.7282,-74.0776,HUDSON 7399,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7501,PATERSON,NJ,40.914273,-74.167141,PASSAIC 7502,PATERSON,NJ,40.919926,-74.193238,PASSAIC 7503,PATERSON,NJ,40.897046,-74.157272,PASSAIC 7504,PATERSON,NJ,40.912179,-74.145247,PASSAIC 7505,PATERSON,NJ,40.915581,-74.171947,PASSAIC 7509,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7510,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7513,PATERSON,NJ,40.906994,-74.152862,PASSAIC 7514,PATERSON,NJ,40.924764,-74.146717,PASSAIC 7522,PATERSON,NJ,40.925168,-74.178078,PASSAIC 7524,PATERSON,NJ,40.930916,-74.155457,PASSAIC 7533,PATERSON,NJ,40.8945,-74.1603,PASSAIC 7543,PATERSON,NJ,40.906,-74.1527,PASSAIC 7544,PATERSON,NJ,40.9335,-74.1545,PASSAIC 8601,TRENTON,NJ,40.2169,-74.7433,MERCER 8602,TRENTON,NJ,40.2169,-74.7433,MERCER 8603,TRENTON,NJ,40.2169,-74.7433,MERCER 8604,TRENTON,NJ,40.2169,-74.7433,MERCER 8605,TRENTON,NJ,40.2169,-74.7433,MERCER 8606,TRENTON,NJ,40.2169,-74.7433,MERCER 8607,TRENTON,NJ,40.2169,-74.7433,MERCER 8608,TRENTON,NJ,40.220437,-74.762237,MERCER 8609,TRENTON,NJ,40.223338,-74.742598,MERCER 8610,TRENTON,NJ,40.19894,-74.717205,MERCER 8611,TRENTON,NJ,40.207297,-74.751997,MERCER 8619,TRENTON,NJ,40.241977,-74.690377,MERCER 8620,TRENTON,NJ,40.178477,-74.671699,MERCER 8625,TRENTON,NJ,40.2712,-74.8179,MERCER 8629,TRENTON,NJ,40.219843,-74.732764,MERCER 8641,TRENTON,NJ,40.044026,-74.588195,BURLINGTON 8645,TRENTON,NJ,40.2169,-74.7433,MERCER 8646,TRENTON,NJ,40.2169,-74.7433,MERCER 8647,TRENTON,NJ,40.2169,-74.7433,MERCER 8648,TRENTON,NJ,40.277646,-74.723956,MERCER 8650,TRENTON,NJ,40.2169,-74.7433,MERCER 8666,TRENTON,NJ,40.2169,-74.7433,MERCER 8677,TRENTON,NJ,40.2169,-74.7433, 8690,TRENTON,NJ,40.223852,-74.659138,MERCER 8691,TRENTON,NJ,40.231785,-74.606262,MERCER 8695,TRENTON,NJ,40.2169,-74.7433,MERCER 8901,NEW BRUNSWICK,NJ,40.489073,-74.448193,MIDDLESEX 8903,NEW BRUNSWICK,NJ,40.5203,-74.4143,MIDDLESEX 8905,NEW BRUNSWICK,NJ,40.4587,-74.4648,MIDDLESEX 8906,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8922,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8933,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8988,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 8989,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 10001,NEW YORK,NY,40.74838,-73.996705,NEW YORK 10002,NEW YORK,NY,40.715231,-73.987681,NEW YORK 10003,NEW YORK,NY,40.731253,-73.989223,NEW YORK 10004,NEW YORK,NY,40.693604,-74.019025,NEW YORK 10005,NEW YORK,NY,40.705649,-74.008344,NEW YORK 10006,NEW YORK,NY,40.708451,-74.013474,NEW YORK 10007,NEW YORK,NY,40.713905,-74.007022,NEW YORK 10008,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10009,NEW YORK,NY,40.726188,-73.979591,NEW YORK 10010,NEW YORK,NY,40.737476,-73.981328,NEW YORK 10011,NEW YORK,NY,40.740225,-73.99963,NEW YORK 10012,NEW YORK,NY,40.72553,-73.998284,NEW YORK 10013,NEW YORK,NY,40.718511,-74.002529,NEW YORK 10014,NEW YORK,NY,40.73393,-74.005421,NEW YORK 10015,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10016,NEW YORK,NY,40.744281,-73.978134,NEW YORK 10017,NEW YORK,NY,40.75172,-73.970661,NEW YORK 10018,NEW YORK,NY,40.754713,-73.992503,NEW YORK 10019,NEW YORK,NY,40.765069,-73.985834,NEW YORK 10020,NEW YORK,NY,40.759729,-73.982347,NEW YORK 10021,NEW YORK,NY,40.768476,-73.958805,NEW YORK 10022,NEW YORK,NY,40.757091,-73.965703,NEW YORK 10023,NEW YORK,NY,40.77638,-73.982652,NEW YORK 10024,NEW YORK,NY,40.786446,-73.976385,NEW YORK 10025,NEW YORK,NY,40.797466,-73.968312,NEW YORK 10026,NEW YORK,NY,40.801942,-73.953069,NEW YORK 10027,NEW YORK,NY,40.811556,-73.954978,NEW YORK 10028,NEW YORK,NY,40.776267,-73.952866,NEW YORK 10029,NEW YORK,NY,40.791817,-73.94475,NEW YORK 10030,NEW YORK,NY,40.818333,-73.942597,NEW YORK 10031,NEW YORK,NY,40.82455,-73.950712,NEW YORK 10032,NEW YORK,NY,40.83819,-73.941978,NEW YORK 10033,NEW YORK,NY,40.84955,-73.935649,NEW YORK 10034,NEW YORK,NY,40.866222,-73.922077,NEW YORK 10035,NEW YORK,NY,40.801116,-73.937098,NEW YORK 10036,NEW YORK,NY,40.759724,-73.991826,NEW YORK 10037,NEW YORK,NY,40.813491,-73.9381,NEW YORK 10038,NEW YORK,NY,40.710092,-74.001298,NEW YORK 10039,NEW YORK,NY,40.826458,-73.938266,NEW YORK 10040,NEW YORK,NY,40.858308,-73.929601,NEW YORK 10041,NEW YORK,NY,40.7051,-74.014,NEW YORK 10043,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10044,NEW YORK,NY,40.762998,-73.949136,NEW YORK 10045,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10046,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10047,NEW YORK,NY,40.7102,-74.0128,NEW YORK 10048,NEW YORK,NY,40.7113,-74.0121,NEW YORK 10055,NEW YORK,NY,40.7589,-73.9735,NEW YORK 10060,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10065,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10069,NEW YORK,NY,40.7543,-73.9997,NEW YORK 10072,NEW YORK,NY,40.7501,-73.9978,NEW YORK 10075,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10079,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10080,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10081,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10082,NEW YORK,NY,40.7753,-73.9844,NEW YORK 10087,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10090,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10094,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10095,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10096,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10098,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10099,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10101,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10102,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10103,NEW YORK,NY,40.7597,-73.9762,NEW YORK 10104,NEW YORK,NY,40.7603,-73.9794,NEW YORK 10105,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10106,NEW YORK,NY,40.7647,-73.9804,NEW YORK 10107,NEW YORK,NY,40.7661,-73.9825,NEW YORK 10108,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10109,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10110,NEW YORK,NY,40.7533,-73.9808,NEW YORK 10111,NEW YORK,NY,40.7586,-73.9772,NEW YORK 10112,NEW YORK,NY,40.7584,-73.9784,NEW YORK 10113,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10114,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10115,NEW YORK,NY,40.8109,-73.954,NEW YORK 10116,NEW YORK,NY,40.8113,-73.9534,NEW YORK 10117,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10118,NEW YORK,NY,40.7483,-73.9865,NEW YORK 10119,NEW YORK,NY,40.7509,-73.9921,NEW YORK 10120,NEW YORK,NY,40.7496,-73.9884,NEW YORK 10121,NEW YORK,NY,40.7497,-73.9919,NEW YORK 10122,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10123,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10124,NEW YORK,NY,40.7577,-73.978,NEW YORK 10125,NEW YORK,NY,40.7995,-73.9679,NEW YORK 10126,NEW YORK,NY,40.7586,-73.9724,NEW YORK 10128,NEW YORK,NY,40.781618,-73.951112,NEW YORK 10129,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10130,NEW YORK,NY,40.7778,-73.9541,NEW YORK 10131,NEW YORK,NY,40.7679,-73.9611,NEW YORK 10132,NEW YORK,NY,40.7849,-73.9748,NEW YORK 10133,NEW YORK,NY,40.7716,-73.9873,NEW YORK 10138,NEW YORK,NY,40.754,-73.9909,NEW YORK 10149,NEW YORK,NY,40.7655,-73.9873,NEW YORK 10150,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10151,NEW YORK,NY,40.7631,-73.9733,NEW YORK 10152,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10153,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10154,NEW YORK,NY,40.7578,-73.973,NEW YORK 10155,NEW YORK,NY,40.7609,-73.9679,NEW YORK 10156,NEW YORK,NY,40.753,-73.9924,NEW YORK 10157,NEW YORK,NY,40.753,-73.9924,NEW YORK 10158,NEW YORK,NY,40.7487,-73.9753,NEW YORK 10159,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10160,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10161,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10162,NEW YORK,NY,40.7693,-73.9505,NEW YORK 10163,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10164,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10165,NEW YORK,NY,40.752,-73.9792,NEW YORK 10166,NEW YORK,NY,40.7532,-73.9766,NEW YORK 10167,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10168,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10169,NEW YORK,NY,40.754,-73.9771,NEW YORK 10170,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10171,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10172,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10173,NEW YORK,NY,40.7537,-73.9784,NEW YORK 10174,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10175,NEW YORK,NY,40.7538,-73.98,NEW YORK 10176,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10177,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10178,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10179,NEW YORK,NY,40.714167,-74.006667,NEW YORK 10184,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10185,NEW YORK,NY,40.7577,-73.978,NEW YORK 10196,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10197,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10199,NEW YORK,NY,40.7507,-73.9945,NEW YORK 10203,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10211,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10212,NEW YORK,NY,40.7051,-74.014,NEW YORK 10213,NEW YORK,NY,40.720278,-74.005,NEW YORK 10242,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10249,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10256,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10257,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10258,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10259,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10260,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10261,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10265,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10268,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10269,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10270,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10271,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10272,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10273,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10274,NEW YORK,NY,40.7051,-74.014,NEW YORK 10275,NEW YORK,NY,40.7051,-74.014,NEW YORK 10276,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10277,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10278,NEW YORK,NY,40.715,-74.0042,NEW YORK 10279,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10280,NEW YORK,NY,40.710537,-74.016323,NEW YORK 10281,NEW YORK,NY,40.7147,-74.016,NEW YORK 10282,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10285,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10286,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10292,NEW YORK,NY,40.7066,-74.0053,NEW YORK 10301,STATEN ISLAND,NY,40.631602,-74.092663,RICHMOND 10302,STATEN ISLAND,NY,40.630597,-74.137918,RICHMOND 10303,STATEN ISLAND,NY,40.630062,-74.160679,RICHMOND 10304,STATEN ISLAND,NY,40.610249,-74.087836,RICHMOND 10305,STATEN ISLAND,NY,40.597296,-74.076795,RICHMOND 10306,STATEN ISLAND,NY,40.568183,-74.118386,RICHMOND 10307,STATEN ISLAND,NY,40.508452,-74.244482,RICHMOND 10308,STATEN ISLAND,NY,40.55181,-74.152649,RICHMOND 10309,STATEN ISLAND,NY,40.535179,-74.211572,RICHMOND 10310,STATEN ISLAND,NY,40.632427,-74.11715,RICHMOND 10311,STATEN ISLAND,NY,40.6047,-74.1781,RICHMOND 10312,STATEN ISLAND,NY,40.545745,-74.179165,RICHMOND 10313,STATEN ISLAND,NY,40.5781,-74.1697,RICHMOND 10314,STATEN ISLAND,NY,40.603915,-74.147218,RICHMOND 10451,BRONX,NY,40.8222,-73.921735,BRONX 10452,BRONX,NY,40.837594,-73.921555,BRONX 10453,BRONX,NY,40.852047,-73.912937,BRONX 10454,BRONX,NY,40.808549,-73.919821,BRONX 10455,BRONX,NY,40.815309,-73.907172,BRONX 10456,BRONX,NY,40.831557,-73.909893,BRONX 10457,BRONX,NY,40.848635,-73.899907,BRONX 10458,BRONX,NY,40.863307,-73.889464,BRONX 10459,BRONX,NY,40.824699,-73.894047,BRONX 10460,BRONX,NY,40.840949,-73.879409,BRONX 10461,BRONX,NY,40.846506,-73.840953,BRONX 10462,BRONX,NY,40.843369,-73.860185,BRONX 10463,BRONX,NY,40.879812,-73.906737,BRONX 10464,BRONX,NY,40.846941,-73.787436,BRONX 10465,BRONX,NY,40.826065,-73.819581,BRONX 10466,BRONX,NY,40.890375,-73.850333,BRONX 10467,BRONX,NY,40.873671,-73.871242,BRONX 10468,BRONX,NY,40.866231,-73.900259,BRONX 10469,BRONX,NY,40.870193,-73.849465,BRONX 10470,BRONX,NY,40.900029,-73.862194,BRONX 10471,BRONX,NY,40.901084,-73.905283,BRONX 10472,BRONX,NY,40.829464,-73.871557,BRONX 10473,BRONX,NY,40.819364,-73.860626,BRONX 10474,BRONX,NY,40.801518,-73.886376,BRONX 10475,BRONX,NY,40.872903,-73.827817,BRONX 10499,BRONX,NY,40.85,-73.866667,BRONX 10550,MOUNT VERNON,NY,40.907863,-73.837961,WESTCHESTER 10551,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10552,MOUNT VERNON,NY,40.923056,-73.829919,WESTCHESTER 10553,MOUNT VERNON,NY,40.908645,-73.822111,WESTCHESTER 10557,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10558,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10601,WHITE PLAINS,NY,41.032955,-73.765231,WESTCHESTER 10602,WHITE PLAINS,NY,41.0274,-73.775,WESTCHESTER 10603,WHITE PLAINS,NY,41.049913,-73.77758,WESTCHESTER 10605,WHITE PLAINS,NY,41.014053,-73.755247,WESTCHESTER 10606,WHITE PLAINS,NY,41.024714,-73.778097,WESTCHESTER 10607,WHITE PLAINS,NY,41.039813,-73.811692,WESTCHESTER 10610,WHITE PLAINS,NY,41.0276,-73.7744,WESTCHESTER 10701,YONKERS,NY,40.940716,-73.888317,WESTCHESTER 10702,YONKERS,NY,40.931111,-73.899167,WESTCHESTER 10703,YONKERS,NY,40.951763,-73.885163,WESTCHESTER 10704,YONKERS,NY,40.917633,-73.859347,WESTCHESTER 10705,YONKERS,NY,40.917665,-73.895041,WESTCHESTER 10710,YONKERS,NY,40.965574,-73.843435,WESTCHESTER 11020,GREAT NECK,NY,40.774235,-73.718918,NASSAU 11021,GREAT NECK,NY,40.786674,-73.726984,NASSAU 11022,GREAT NECK,NY,40.7875,-73.725,NASSAU 11023,GREAT NECK,NY,40.799307,-73.734257,NASSAU 11024,GREAT NECK,NY,40.813307,-73.741391,NASSAU 11025,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11026,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11027,GREAT NECK,NY,40.7875,-73.725,NASSAU 11040,NEW HYDE PARK,NY,40.743926,-73.68042,NASSAU 11041,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11042,NEW HYDE PARK,NY,40.7602,-73.694978,NASSAU 11043,NEW HYDE PARK,NY,40.7317,-73.6821,NASSAU 11044,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11050,PORT WASHINGTON,NY,40.834995,-73.696356,NASSAU 11051,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11052,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11053,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11054,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11055,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11099,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11201,BROOKLYN,NY,40.694021,-73.99034,KINGS 11202,BROOKLYN,NY,40.6959,-73.9934,KINGS 11203,BROOKLYN,NY,40.650496,-73.934888,KINGS 11204,BROOKLYN,NY,40.617871,-73.985623,KINGS 11205,BROOKLYN,NY,40.692433,-73.96662,KINGS 11206,BROOKLYN,NY,40.701195,-73.943617,KINGS 11207,BROOKLYN,NY,40.670486,-73.893957,KINGS 11208,BROOKLYN,NY,40.676191,-73.873649,KINGS 11209,BROOKLYN,NY,40.625106,-74.030304,KINGS 11210,BROOKLYN,NY,40.628064,-73.946682,KINGS 11211,BROOKLYN,NY,40.709476,-73.956283,KINGS 11212,BROOKLYN,NY,40.662474,-73.914483,KINGS 11213,BROOKLYN,NY,40.669961,-73.93665,KINGS 11214,BROOKLYN,NY,40.601563,-73.99681,KINGS 11215,BROOKLYN,NY,40.666863,-73.982783,KINGS 11216,BROOKLYN,NY,40.67943,-73.949639,KINGS 11217,BROOKLYN,NY,40.68165,-73.979797,KINGS 11218,BROOKLYN,NY,40.642373,-73.975806,KINGS 11219,BROOKLYN,NY,40.633568,-73.996011,KINGS 11220,BROOKLYN,NY,40.641165,-74.013287,KINGS 11221,BROOKLYN,NY,40.690695,-73.927373,KINGS 11222,BROOKLYN,NY,40.727164,-73.949846,KINGS 11223,BROOKLYN,NY,40.597874,-73.974291,KINGS 11224,BROOKLYN,NY,40.576729,-73.988395,KINGS 11225,BROOKLYN,NY,40.662776,-73.954588,KINGS 11226,BROOKLYN,NY,40.646694,-73.956985,KINGS 11228,BROOKLYN,NY,40.617441,-74.012067,KINGS 11229,BROOKLYN,NY,40.601094,-73.94749,KINGS 11230,BROOKLYN,NY,40.622493,-73.965007,KINGS 11231,BROOKLYN,NY,40.679437,-74.00141,KINGS 11232,BROOKLYN,NY,40.652113,-74.001797,KINGS 11233,BROOKLYN,NY,40.678415,-73.921104,KINGS 11234,BROOKLYN,NY,40.620475,-73.923915,KINGS 11235,BROOKLYN,NY,40.583898,-73.953599,KINGS 11236,BROOKLYN,NY,40.640685,-73.902764,KINGS 11237,BROOKLYN,NY,40.700616,-73.917979,KINGS 11238,BROOKLYN,NY,40.679015,-73.964387,KINGS 11239,BROOKLYN,NY,40.649748,-73.882375,KINGS 11240,BROOKLYN,NY,40.6981,-73.986,KINGS 11241,BROOKLYN,NY,40.6932,-73.9911,KINGS 11242,BROOKLYN,NY,40.6932,-73.9911,KINGS 11243,BROOKLYN,NY,40.6846,-73.9804,KINGS 11244,BROOKLYN,NY,40.6895,-73.9906,KINGS 11245,BROOKLYN,NY,40.6873,-73.9896,KINGS 11247,BROOKLYN,NY,40.68,-73.9476,KINGS 11248,BROOKLYN,NY,40.6991,-73.9928,KINGS 11249,BROOKLYN,NY,40.6942,-73.9907,KINGS 11251,BROOKLYN,NY,40.703578,-73.966511,KINGS 11252,BROOKLYN,NY,40.618611,-74.033611,KINGS 11254,BROOKLYN,NY,40.6983,-73.9917,KINGS 11255,BROOKLYN,NY,40.6953,-73.9899,KINGS 11256,BROOKLYN,NY,40.6632,-73.8603,KINGS 11351,FLUSHING,NY,40.7816,-73.8272,QUEENS 11352,FLUSHING,NY,40.7476,-73.8263,QUEENS 11354,FLUSHING,NY,40.766722,-73.824142,QUEENS 11355,FLUSHING,NY,40.753573,-73.822609,QUEENS 11358,FLUSHING,NY,40.760636,-73.796788,QUEENS 11367,FLUSHING,NY,40.727966,-73.81953,QUEENS 11371,FLUSHING,NY,40.772117,-73.873535,QUEENS 11381,FLUSHING,NY,40.7652,-73.8177,QUEENS 11390,FLUSHING,NY,40.7652,-73.8177,QUEENS 11405,JAMAICA,NY,40.6913,-73.8061,QUEENS 11424,JAMAICA,NY,40.714167,-73.831389,QUEENS 11425,JAMAICA,NY,40.6913,-73.8061,QUEENS 11430,JAMAICA,NY,40.647221,-73.782663,QUEENS 11431,JAMAICA,NY,40.6913,-73.8061,QUEENS 11432,JAMAICA,NY,40.711867,-73.79442,QUEENS 11433,JAMAICA,NY,40.69691,-73.787669,QUEENS 11434,JAMAICA,NY,40.677483,-73.77584,QUEENS 11435,JAMAICA,NY,40.702934,-73.811121,QUEENS 11436,JAMAICA,NY,40.676347,-73.796596,QUEENS 11439,JAMAICA,NY,40.6913,-73.8061,QUEENS 11451,JAMAICA,NY,40.7011,-73.8006,QUEENS 11499,JAMAICA,NY,40.6913,-73.8061,QUEENS 11801,HICKSVILLE,NY,40.762305,-73.52297,NASSAU 11802,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11815,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11819,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11854,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11855,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 12201,ALBANY,NY,42.6525,-73.7566,ALBANY 12202,ALBANY,NY,42.641314,-73.764071,ALBANY 12203,ALBANY,NY,42.676757,-73.821988,ALBANY 12204,ALBANY,NY,42.684667,-73.735364,ALBANY 12205,ALBANY,NY,42.713116,-73.820174,ALBANY 12206,ALBANY,NY,42.668326,-73.774406,ALBANY 12207,ALBANY,NY,42.658133,-73.752327,ALBANY 12208,ALBANY,NY,42.655989,-73.796357,ALBANY 12209,ALBANY,NY,42.641665,-73.785385,ALBANY 12210,ALBANY,NY,42.65677,-73.76052,ALBANY 12211,ALBANY,NY,42.704693,-73.769982,ALBANY 12212,ALBANY,NY,42.6525,-73.7566,ALBANY 12214,ALBANY,NY,42.6525,-73.7566,ALBANY 12220,ALBANY,NY,42.6525,-73.7566,ALBANY 12222,ALBANY,NY,42.6525,-73.7566,ALBANY 12223,ALBANY,NY,42.6525,-73.7566,ALBANY 12224,ALBANY,NY,42.6525,-73.7566,ALBANY 12225,ALBANY,NY,42.6525,-73.7566,ALBANY 12226,ALBANY,NY,42.6525,-73.7566,ALBANY 12227,ALBANY,NY,42.6525,-73.7566,ALBANY 12228,ALBANY,NY,42.6525,-73.7566,ALBANY 12229,ALBANY,NY,42.6525,-73.7566,ALBANY 12230,ALBANY,NY,42.6525,-73.7566,ALBANY 12231,ALBANY,NY,42.6525,-73.7566,ALBANY 12232,ALBANY,NY,42.6525,-73.7566,ALBANY 12233,ALBANY,NY,42.7174,-73.8285,ALBANY 12234,ALBANY,NY,42.6525,-73.7566,ALBANY 12235,ALBANY,NY,42.7174,-73.8285,ALBANY 12236,ALBANY,NY,42.6525,-73.7566,ALBANY 12237,ALBANY,NY,42.6525,-73.7566,ALBANY 12238,ALBANY,NY,42.6525,-73.7566,ALBANY 12239,ALBANY,NY,42.6525,-73.7566,ALBANY 12240,ALBANY,NY,42.6525,-73.7566,ALBANY 12241,ALBANY,NY,42.6525,-73.7566,ALBANY 12242,ALBANY,NY,42.6525,-73.7566,ALBANY 12243,ALBANY,NY,42.6525,-73.7566,ALBANY 12244,ALBANY,NY,42.6525,-73.7566,ALBANY 12245,ALBANY,NY,42.6525,-73.7566,ALBANY 12246,ALBANY,NY,42.647,-73.75,ALBANY 12247,ALBANY,NY,42.6525,-73.7566,ALBANY 12248,ALBANY,NY,42.6525,-73.7566,ALBANY 12249,ALBANY,NY,42.6525,-73.7566,ALBANY 12250,ALBANY,NY,42.6525,-73.7566,ALBANY 12252,ALBANY,NY,42.6525,-73.7566,ALBANY 12255,ALBANY,NY,42.6525,-73.7566,ALBANY 12256,ALBANY,NY,42.6525,-73.7566,ALBANY 12257,ALBANY,NY,42.6525,-73.7566,ALBANY 12260,ALBANY,NY,42.6525,-73.7566,ALBANY 12261,ALBANY,NY,42.7174,-73.8285,ALBANY 12288,ALBANY,NY,42.7174,-73.8285,ALBANY 12301,SCHENECTADY,NY,42.8155,-73.9395,SCHENECTADY 12302,SCHENECTADY,NY,42.858839,-73.955051,SCHENECTADY 12303,SCHENECTADY,NY,42.769645,-73.938776,SCHENECTADY 12304,SCHENECTADY,NY,42.784083,-73.909432,SCHENECTADY 12305,SCHENECTADY,NY,42.816131,-73.939786,SCHENECTADY 12306,SCHENECTADY,NY,42.790384,-73.980876,SCHENECTADY 12307,SCHENECTADY,NY,42.804653,-73.936349,SCHENECTADY 12308,SCHENECTADY,NY,42.817928,-73.920591,SCHENECTADY 12309,SCHENECTADY,NY,42.796168,-73.878268,SCHENECTADY 12325,SCHENECTADY,NY,42.869,-73.9325,SCHENECTADY 12345,SCHENECTADY,NY,42.8102,-73.9507,SCHENECTADY 13201,SYRACUSE,NY,43.0459,-76.1528,ONONDAGA 13202,SYRACUSE,NY,43.040988,-76.148856,ONONDAGA 13203,SYRACUSE,NY,43.060703,-76.136931,ONONDAGA 13204,SYRACUSE,NY,43.044398,-76.175767,ONONDAGA 13205,SYRACUSE,NY,43.012314,-76.14518,ONONDAGA 13206,SYRACUSE,NY,43.06773,-76.110226,ONONDAGA 13207,SYRACUSE,NY,43.019482,-76.16501,ONONDAGA 13208,SYRACUSE,NY,43.073007,-76.148616,ONONDAGA 13209,SYRACUSE,NY,43.078204,-76.238448,ONONDAGA 13210,SYRACUSE,NY,43.035414,-76.128166,ONONDAGA 13211,SYRACUSE,NY,43.09951,-76.142181,ONONDAGA 13212,SYRACUSE,NY,43.130623,-76.137295,ONONDAGA 13214,SYRACUSE,NY,43.042529,-76.07844,ONONDAGA 13215,SYRACUSE,NY,42.997544,-76.211851,ONONDAGA 13217,SYRACUSE,NY,43.0512,-76.122,ONONDAGA 13218,SYRACUSE,NY,43.0301,-76.1259,ONONDAGA 13219,SYRACUSE,NY,43.040943,-76.226159,ONONDAGA 13220,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13221,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13224,SYRACUSE,NY,43.042134,-76.104609,ONONDAGA 13225,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13235,SYRACUSE,NY,43.0321,-76.1271,ONONDAGA 13244,SYRACUSE,NY,43.0394,-76.1361,ONONDAGA 13250,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13251,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13252,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13261,SYRACUSE,NY,43.0433,-76.1508,ONONDAGA 13290,SYRACUSE,NY,43.0685,-76.1709,ONONDAGA 13501,UTICA,NY,43.087112,-75.231463,ONEIDA 13502,UTICA,NY,43.106723,-75.231383,ONEIDA 13503,UTICA,NY,43.1015,-75.2319,ONEIDA 13504,UTICA,NY,43.1008,-75.233,ONEIDA 13505,UTICA,NY,43.1008,-75.233,ONEIDA 13599,UTICA,NY,43.1008,-75.233,ONEIDA 14201,BUFFALO,NY,42.896659,-78.884575,ERIE 14202,BUFFALO,NY,42.887038,-78.877948,ERIE 14203,BUFFALO,NY,42.893938,-78.868143,ERIE 14204,BUFFALO,NY,42.883978,-78.859736,ERIE 14205,BUFFALO,NY,42.8925,-78.8707,ERIE 14206,BUFFALO,NY,42.881132,-78.810375,ERIE 14207,BUFFALO,NY,42.949062,-78.897815,ERIE 14208,BUFFALO,NY,42.915416,-78.850487,ERIE 14209,BUFFALO,NY,42.913,-78.865629,ERIE 14210,BUFFALO,NY,42.861432,-78.82055,ERIE 14211,BUFFALO,NY,42.908153,-78.822477,ERIE 14212,BUFFALO,NY,42.894553,-78.824458,ERIE 14213,BUFFALO,NY,42.916675,-78.889461,ERIE 14214,BUFFALO,NY,42.941429,-78.837403,ERIE 14215,BUFFALO,NY,42.933536,-78.811504,ERIE 14216,BUFFALO,NY,42.949914,-78.859865,ERIE 14217,BUFFALO,NY,42.968618,-78.872948,ERIE 14218,BUFFALO,NY,42.818301,-78.817263,ERIE 14219,BUFFALO,NY,42.790039,-78.822228,ERIE 14220,BUFFALO,NY,42.844138,-78.818205,ERIE 14221,BUFFALO,NY,42.985621,-78.738044,ERIE 14222,BUFFALO,NY,42.916401,-78.876333,ERIE 14223,BUFFALO,NY,42.973088,-78.845,ERIE 14224,BUFFALO,NY,42.836162,-78.75109,ERIE 14225,BUFFALO,NY,42.928642,-78.760855,ERIE 14226,BUFFALO,NY,42.967232,-78.799849,ERIE 14227,BUFFALO,NY,42.877467,-78.741936,ERIE 14228,BUFFALO,NY,43.018414,-78.774604,ERIE 14231,BUFFALO,NY,42.963889,-78.738056,ERIE 14233,BUFFALO,NY,42.8849,-78.8265,ERIE 14240,BUFFALO,NY,42.8849,-78.8265,ERIE 14241,BUFFALO,NY,42.8849,-78.8265,ERIE 14260,BUFFALO,NY,43.0003,-78.7902,ERIE 14261,BUFFALO,NY,43.0013,-78.7853,ERIE 14263,BUFFALO,NY,42.8849,-78.8265,ERIE 14264,BUFFALO,NY,42.8849,-78.8265,ERIE 14265,BUFFALO,NY,42.8849,-78.8265,ERIE 14267,BUFFALO,NY,42.8849,-78.8265,ERIE 14269,BUFFALO,NY,42.8849,-78.8265,ERIE 14270,BUFFALO,NY,42.8849,-78.8265,ERIE 14272,BUFFALO,NY,42.8849,-78.8265,ERIE 14273,BUFFALO,NY,42.8849,-78.8265,ERIE 14276,BUFFALO,NY,42.8849,-78.8265,ERIE 14280,BUFFALO,NY,42.8849,-78.8265,ERIE 14602,ROCHESTER,NY,43.1683,-77.6026,MONROE 14603,ROCHESTER,NY,43.1615,-77.6073,MONROE 14604,ROCHESTER,NY,43.157729,-77.607978,MONROE 14605,ROCHESTER,NY,43.169758,-77.600711,MONROE 14606,ROCHESTER,NY,43.168455,-77.684488,MONROE 14607,ROCHESTER,NY,43.150086,-77.588976,MONROE 14608,ROCHESTER,NY,43.152144,-77.625803,MONROE 14609,ROCHESTER,NY,43.174001,-77.563701,MONROE 14610,ROCHESTER,NY,43.14524,-77.549501,MONROE 14611,ROCHESTER,NY,43.148375,-77.639353,MONROE 14612,ROCHESTER,NY,43.256576,-77.665228,MONROE 14613,ROCHESTER,NY,43.18308,-77.639276,MONROE 14614,ROCHESTER,NY,43.155823,-77.61419,MONROE 14615,ROCHESTER,NY,43.20575,-77.652118,MONROE 14616,ROCHESTER,NY,43.232359,-77.651238,MONROE 14617,ROCHESTER,NY,43.220258,-77.599442,MONROE 14618,ROCHESTER,NY,43.115416,-77.558801,MONROE 14619,ROCHESTER,NY,43.136685,-77.6481,MONROE 14620,ROCHESTER,NY,43.131711,-77.606239,MONROE 14621,ROCHESTER,NY,43.183362,-77.604284,MONROE 14622,ROCHESTER,NY,43.213959,-77.55549,MONROE 14623,ROCHESTER,NY,43.083371,-77.634412,MONROE 14624,ROCHESTER,NY,43.12589,-77.733552,MONROE 14625,ROCHESTER,NY,43.14949,-77.503188,MONROE 14626,ROCHESTER,NY,43.21257,-77.703996,MONROE 14627,ROCHESTER,NY,43.1284,-77.6295,MONROE 14638,ROCHESTER,NY,43.1572,-77.6064,MONROE 14639,ROCHESTER,NY,43.1572,-77.6064,MONROE 14642,ROCHESTER,NY,43.1242,-77.6231,MONROE 14643,ROCHESTER,NY,43.1572,-77.6064,MONROE 14644,ROCHESTER,NY,43.1572,-77.6064,MONROE 14645,ROCHESTER,NY,43.1572,-77.6064,MONROE 14646,ROCHESTER,NY,43.1572,-77.6064,MONROE 14647,ROCHESTER,NY,43.1572,-77.6064,MONROE 14649,ROCHESTER,NY,43.1572,-77.6064,MONROE 14650,ROCHESTER,NY,43.1541,-77.6255,MONROE 14651,ROCHESTER,NY,43.1541,-77.6255,MONROE 14652,ROCHESTER,NY,43.1541,-77.6255,MONROE 14653,ROCHESTER,NY,43.1541,-77.6255,MONROE 14664,ROCHESTER,NY,43.1572,-77.6064,MONROE 14673,ROCHESTER,NY,43.1572,-77.6064,MONROE 14683,ROCHESTER,NY,43.1572,-77.6064,MONROE 14692,ROCHESTER,NY,43.0869,-77.5973,MONROE 14694,ROCHESTER,NY,43.1541,-77.6255,MONROE 14901,ELMIRA,NY,42.100769,-76.811977,CHEMUNG 14902,ELMIRA,NY,42.0909,-76.8061,CHEMUNG 14903,ELMIRA,NY,42.130203,-76.843572,CHEMUNG 14904,ELMIRA,NY,42.072866,-76.803735,CHEMUNG 14905,ELMIRA,NY,42.086919,-76.839686,CHEMUNG 14925,ELMIRA,NY,42.1146,-76.8055,CHEMUNG 15201,PITTSBURGH,PA,40.474536,-79.952524,ALLEGHENY 15202,PITTSBURGH,PA,40.501321,-80.066966,ALLEGHENY 15203,PITTSBURGH,PA,40.425439,-79.977556,ALLEGHENY 15204,PITTSBURGH,PA,40.455569,-80.061056,ALLEGHENY 15205,PITTSBURGH,PA,40.438045,-80.073393,ALLEGHENY 15206,PITTSBURGH,PA,40.468885,-79.919267,ALLEGHENY 15207,PITTSBURGH,PA,40.401206,-79.933935,ALLEGHENY 15208,PITTSBURGH,PA,40.454955,-79.898474,ALLEGHENY 15209,PITTSBURGH,PA,40.49718,-79.97401,ALLEGHENY 15210,PITTSBURGH,PA,40.408541,-79.987405,ALLEGHENY 15211,PITTSBURGH,PA,40.42908,-80.012156,ALLEGHENY 15212,PITTSBURGH,PA,40.468873,-80.013128,ALLEGHENY 15213,PITTSBURGH,PA,40.44372,-79.954428,ALLEGHENY 15214,PITTSBURGH,PA,40.481309,-80.01393,ALLEGHENY 15215,PITTSBURGH,PA,40.499225,-79.917513,ALLEGHENY 15216,PITTSBURGH,PA,40.399584,-80.035727,ALLEGHENY 15217,PITTSBURGH,PA,40.431852,-79.924973,ALLEGHENY 15218,PITTSBURGH,PA,40.424468,-79.887591,ALLEGHENY 15219,PITTSBURGH,PA,40.44539,-79.977229,ALLEGHENY 15220,PITTSBURGH,PA,40.417405,-80.051202,ALLEGHENY 15221,PITTSBURGH,PA,40.438352,-79.870243,ALLEGHENY 15222,PITTSBURGH,PA,40.442111,-80.000556,ALLEGHENY 15223,PITTSBURGH,PA,40.50428,-79.95145,ALLEGHENY 15224,PITTSBURGH,PA,40.464215,-79.945445,ALLEGHENY 15225,PITTSBURGH,PA,40.513819,-80.137027,ALLEGHENY 15226,PITTSBURGH,PA,40.394628,-80.015759,ALLEGHENY 15227,PITTSBURGH,PA,40.37619,-79.975816,ALLEGHENY 15228,PITTSBURGH,PA,40.371326,-80.043186,ALLEGHENY 15229,PITTSBURGH,PA,40.519321,-80.035685,ALLEGHENY 15230,PITTSBURGH,PA,40.5085,-80.0786,ALLEGHENY 15231,PITTSBURGH,PA,40.502778,-80.188333,ALLEGHENY 15232,PITTSBURGH,PA,40.453598,-79.932557,ALLEGHENY 15233,PITTSBURGH,PA,40.460425,-80.029965,ALLEGHENY 15234,PITTSBURGH,PA,40.369424,-80.017907,ALLEGHENY 15235,PITTSBURGH,PA,40.4605,-79.826892,ALLEGHENY 15236,PITTSBURGH,PA,40.345244,-79.976894,ALLEGHENY 15237,PITTSBURGH,PA,40.552238,-80.034939,ALLEGHENY 15238,PITTSBURGH,PA,40.515077,-79.877423,ALLEGHENY 15239,PITTSBURGH,PA,40.477693,-79.734505,ALLEGHENY 15240,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15241,PITTSBURGH,PA,40.332174,-80.07921,ALLEGHENY 15242,PITTSBURGH,PA,40.420278,-80.05,ALLEGHENY 15243,PITTSBURGH,PA,40.373797,-80.072425,ALLEGHENY 15244,PITTSBURGH,PA,40.444444,-80.146111,ALLEGHENY 15250,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15251,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15252,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15253,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15254,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15255,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15257,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15258,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15259,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15260,PITTSBURGH,PA,40.4424,-79.9507,ALLEGHENY 15261,PITTSBURGH,PA,40.4442,-79.9617,ALLEGHENY 15262,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15263,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15264,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15265,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15267,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15268,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15270,PITTSBURGH,PA,40.4036,-80.0344,ALLEGHENY 15272,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15274,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15275,PITTSBURGH,PA,40.4513,-80.1788,ALLEGHENY 15276,PITTSBURGH,PA,40.4292,-80.1253,ALLEGHENY 15277,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15278,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15279,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15281,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15282,PITTSBURGH,PA,40.4371,-79.9929,ALLEGHENY 15283,PITTSBURGH,PA,40.4199,-80.0499,ALLEGHENY 15285,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15286,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15289,PITTSBURGH,PA,40.4406,-79.9961,ALLEGHENY 15290,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15295,PITTSBURGH,PA,40.4747,-79.9521,ALLEGHENY 15901,JOHNSTOWN,PA,40.325957,-78.91408,CAMBRIA 15902,JOHNSTOWN,PA,40.307787,-78.896905,CAMBRIA 15904,JOHNSTOWN,PA,40.285026,-78.865383,CAMBRIA 15905,JOHNSTOWN,PA,40.307188,-78.943006,CAMBRIA 15906,JOHNSTOWN,PA,40.352193,-78.938317,CAMBRIA 15907,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 15909,JOHNSTOWN,PA,40.387965,-78.862284,CAMBRIA 15915,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 16101,NEW CASTLE,PA,40.99222,-80.328449,LAWRENCE 16102,NEW CASTLE,PA,40.967745,-80.390704,LAWRENCE 16103,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16105,NEW CASTLE,PA,41.033502,-80.342191,LAWRENCE 16107,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16108,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16501,ERIE,PA,42.125962,-80.08601,ERIE 16502,ERIE,PA,42.113332,-80.097607,ERIE 16503,ERIE,PA,42.126506,-80.063976,ERIE 16504,ERIE,PA,42.1108,-80.05208,ERIE 16505,ERIE,PA,42.097526,-80.161902,ERIE 16506,ERIE,PA,42.073801,-80.14844,ERIE 16507,ERIE,PA,42.131579,-80.086424,ERIE 16508,ERIE,PA,42.097577,-80.093544,ERIE 16509,ERIE,PA,42.076326,-80.066827,ERIE 16510,ERIE,PA,42.123673,-80.003752,ERIE 16511,ERIE,PA,42.15529,-80.017665,ERIE 16512,ERIE,PA,42.1185,-80.0229,ERIE 16514,ERIE,PA,42.1185,-80.0229,ERIE 16515,ERIE,PA,42.1185,-80.0229,ERIE 16522,ERIE,PA,42.1185,-80.0229,ERIE 16530,ERIE,PA,42.1185,-80.0229,ERIE 16531,ERIE,PA,42.1185,-80.0229,ERIE 16532,ERIE,PA,42.1185,-80.0229,ERIE 16533,ERIE,PA,42.1185,-80.0229,ERIE 16534,ERIE,PA,42.1185,-80.0229,ERIE 16538,ERIE,PA,42.1185,-80.0229,ERIE 16541,ERIE,PA,42.1185,-80.0229,ERIE 16544,ERIE,PA,42.1185,-80.0229,ERIE 16546,ERIE,PA,42.1073,-80.0486,ERIE 16550,ERIE,PA,42.1185,-80.0229,ERIE 16553,ERIE,PA,42.1185,-80.0229,ERIE 16554,ERIE,PA,42.1185,-80.0229,ERIE 16563,ERIE,PA,42.1185,-80.0229,ERIE 16565,ERIE,PA,42.0687,-80.10011,ERIE 17101,HARRISBURG,PA,40.261767,-76.883079,DAUPHIN 17102,HARRISBURG,PA,40.27278,-76.891044,DAUPHIN 17103,HARRISBURG,PA,40.273852,-76.863812,DAUPHIN 17104,HARRISBURG,PA,40.259683,-76.859397,DAUPHIN 17105,HARRISBURG,PA,40.2846,-76.8736,DAUPHIN 17106,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17107,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17108,HARRISBURG,PA,40.2615,-76.8831,DAUPHIN 17109,HARRISBURG,PA,40.29122,-76.822612,DAUPHIN 17110,HARRISBURG,PA,40.302957,-76.886246,DAUPHIN 17111,HARRISBURG,PA,40.266058,-76.793918,DAUPHIN 17112,HARRISBURG,PA,40.335208,-76.791438,DAUPHIN 17113,HARRISBURG,PA,40.234007,-76.827568,DAUPHIN 17120,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17121,HARRISBURG,PA,40.3136,-76.875,DAUPHIN 17122,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17123,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17124,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17125,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17126,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17127,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17128,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17129,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17130,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17140,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17177,HARRISBURG,PA,40.2959,-76.8553,DAUPHIN 17401,YORK,PA,39.963539,-76.726887,YORK 17402,YORK,PA,39.971508,-76.674578,YORK 17403,YORK,PA,39.94943,-76.712998,YORK 17404,YORK,PA,39.961988,-76.768987,YORK 17405,YORK,PA,39.9594,-76.7263,YORK 17406,YORK,PA,39.998249,-76.592646,YORK 17407,YORK,PA,39.880203,-76.714634,YORK 17408,YORK,PA,39.9492,-76.8018,YORK 17415,YORK,PA,39.9933,-76.6475,YORK 17601,LANCASTER,PA,40.075381,-76.319888,LANCASTER 17602,LANCASTER,PA,40.033514,-76.284364,LANCASTER 17603,LANCASTER,PA,40.030475,-76.331583,LANCASTER 17604,LANCASTER,PA,40.0598,-76.3357,LANCASTER 17605,LANCASTER,PA,40.0494,-76.2506,LANCASTER 17606,LANCASTER,PA,40.0932,-76.3036,LANCASTER 17607,LANCASTER,PA,40.0516,-76.3608,LANCASTER 17608,LANCASTER,PA,40.0405,-76.308,LANCASTER 17611,LANCASTER,PA,40.0092,-76.372,LANCASTER 17622,LANCASTER,PA,40.0378755,-76.3055144,LANCASTER 17699,LANCASTER,PA,40.0377,-76.3058,LANCASTER 18015,BETHLEHEM,PA,40.600167,-75.380507,NORTHAMPTON 18016,BETHLEHEM,PA,40.6209,-75.3645,NORTHAMPTON 18017,BETHLEHEM,PA,40.65168,-75.35823,NORTHAMPTON 18018,BETHLEHEM,PA,40.627849,-75.392827,NORTHAMPTON 18020,BETHLEHEM,PA,40.6609,-75.3274,NORTHAMPTON 18025,BETHLEHEM,PA,40.6335,-75.3952,LEHIGH 18101,ALLENTOWN,PA,40.602729,-75.470955,LEHIGH 18102,ALLENTOWN,PA,40.606818,-75.478139,LEHIGH 18103,ALLENTOWN,PA,40.589145,-75.464521,LEHIGH 18104,ALLENTOWN,PA,40.601849,-75.522499,LEHIGH 18105,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18106,ALLENTOWN,PA,40.561451,-75.566424,LEHIGH 18109,ALLENTOWN,PA,40.6235,-75.4383,LEHIGH 18175,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18195,ALLENTOWN,PA,40.5728,-75.6153,LEHIGH 18501,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18502,SCRANTON,PA,41.3732,-75.6788,LACKAWANNA 18503,SCRANTON,PA,41.409517,-75.664205,LACKAWANNA 18504,SCRANTON,PA,41.412777,-75.686081,LACKAWANNA 18505,SCRANTON,PA,41.39145,-75.665738,LACKAWANNA 18508,SCRANTON,PA,41.438917,-75.662529,LACKAWANNA 18509,SCRANTON,PA,41.427353,-75.646454,LACKAWANNA 18510,SCRANTON,PA,41.408039,-75.648397,LACKAWANNA 18512,SCRANTON,PA,41.426184,-75.62294,LACKAWANNA 18514,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18515,SCRANTON,PA,41.4476,-75.6669,LACKAWANNA 18522,SCRANTON,PA,41.4303,-75.6437,LACKAWANNA 18540,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18577,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18701,WILKES BARRE,PA,41.244892,-75.884063,LUZERNE 18702,WILKES BARRE,PA,41.236512,-75.882557,LUZERNE 18703,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18705,WILKES BARRE,PA,41.268921,-75.845309,LUZERNE 18706,WILKES BARRE,PA,41.206709,-75.918157,LUZERNE 18710,WILKES BARRE,PA,41.2454,-75.8819,LUZERNE 18711,WILKES BARRE,PA,41.2474,-75.8536,LUZERNE 18762,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18764,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18765,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18766,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18767,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18769,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18773,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 19019,PHILADELPHIA,PA,40.1162,-75.0141,PHILADELPHIA 19092,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19093,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19099,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19101,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19102,PHILADELPHIA,PA,39.948908,-75.166109,PHILADELPHIA 19103,PHILADELPHIA,PA,39.951285,-75.174136,PHILADELPHIA 19104,PHILADELPHIA,PA,39.959732,-75.202445,PHILADELPHIA 19105,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19106,PHILADELPHIA,PA,39.94742,-75.147271,PHILADELPHIA 19107,PHILADELPHIA,PA,39.94867,-75.159339,PHILADELPHIA 19108,PHILADELPHIA,PA,39.9591,-75.1599,PHILADELPHIA 19109,PHILADELPHIA,PA,39.9498,-75.1641,PHILADELPHIA 19110,PHILADELPHIA,PA,39.9504,-75.164,PHILADELPHIA 19111,PHILADELPHIA,PA,40.059635,-75.081792,PHILADELPHIA 19112,PHILADELPHIA,PA,39.889252,-75.178207,PHILADELPHIA 19113,PHILADELPHIA,PA,39.864998,-75.275196,DELAWARE 19114,PHILADELPHIA,PA,40.063356,-74.999032,PHILADELPHIA 19115,PHILADELPHIA,PA,40.090286,-75.041036,PHILADELPHIA 19116,PHILADELPHIA,PA,40.116599,-75.019803,PHILADELPHIA 19118,PHILADELPHIA,PA,40.081247,-75.2006,PHILADELPHIA 19119,PHILADELPHIA,PA,40.054681,-75.186564,PHILADELPHIA 19120,PHILADELPHIA,PA,40.034254,-75.121256,PHILADELPHIA 19121,PHILADELPHIA,PA,39.981085,-75.174005,PHILADELPHIA 19122,PHILADELPHIA,PA,39.978014,-75.145882,PHILADELPHIA 19123,PHILADELPHIA,PA,39.965975,-75.150968,PHILADELPHIA 19124,PHILADELPHIA,PA,40.017798,-75.089526,PHILADELPHIA 19125,PHILADELPHIA,PA,39.978751,-75.126156,PHILADELPHIA 19126,PHILADELPHIA,PA,40.056839,-75.137854,PHILADELPHIA 19127,PHILADELPHIA,PA,40.027512,-75.224167,PHILADELPHIA 19128,PHILADELPHIA,PA,40.040247,-75.223084,PHILADELPHIA 19129,PHILADELPHIA,PA,40.011816,-75.186149,PHILADELPHIA 19130,PHILADELPHIA,PA,39.967677,-75.173467,PHILADELPHIA 19131,PHILADELPHIA,PA,39.98447,-75.228226,PHILADELPHIA 19132,PHILADELPHIA,PA,39.995393,-75.16982,PHILADELPHIA 19133,PHILADELPHIA,PA,39.992467,-75.141505,PHILADELPHIA 19134,PHILADELPHIA,PA,39.99252,-75.113284,PHILADELPHIA 19135,PHILADELPHIA,PA,40.024694,-75.051827,PHILADELPHIA 19136,PHILADELPHIA,PA,40.042159,-75.024388,PHILADELPHIA 19137,PHILADELPHIA,PA,40.000849,-75.072654,PHILADELPHIA 19138,PHILADELPHIA,PA,40.05683,-75.156898,PHILADELPHIA 19139,PHILADELPHIA,PA,39.961166,-75.230301,PHILADELPHIA 19140,PHILADELPHIA,PA,40.011771,-75.145626,PHILADELPHIA 19141,PHILADELPHIA,PA,40.036473,-75.145109,PHILADELPHIA 19142,PHILADELPHIA,PA,39.922332,-75.233796,PHILADELPHIA 19143,PHILADELPHIA,PA,39.944815,-75.228819,PHILADELPHIA 19144,PHILADELPHIA,PA,40.033773,-75.173099,PHILADELPHIA 19145,PHILADELPHIA,PA,39.922724,-75.181194,PHILADELPHIA 19146,PHILADELPHIA,PA,39.937949,-75.179364,PHILADELPHIA 19147,PHILADELPHIA,PA,39.936175,-75.156324,PHILADELPHIA 19148,PHILADELPHIA,PA,39.92068,-75.159538,PHILADELPHIA 19149,PHILADELPHIA,PA,40.036915,-75.066374,PHILADELPHIA 19150,PHILADELPHIA,PA,40.07262,-75.170621,PHILADELPHIA 19151,PHILADELPHIA,PA,39.977199,-75.254492,PHILADELPHIA 19152,PHILADELPHIA,PA,40.060571,-75.047079,PHILADELPHIA 19153,PHILADELPHIA,PA,39.905512,-75.244431,PHILADELPHIA 19154,PHILADELPHIA,PA,40.089738,-74.978052,PHILADELPHIA 19155,PHILADELPHIA,PA,40.0947,-74.9818,PHILADELPHIA 19160,PHILADELPHIA,PA,40.0117,-75.1463,PHILADELPHIA 19161,PHILADELPHIA,PA,40.0614,-75.0795,PHILADELPHIA 19162,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19170,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19171,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19172,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19173,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19175,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19176,PHILADELPHIA,PA,39.9523,-75.1638,PHILADELPHIA 19177,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19178,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19179,PHILADELPHIA,PA,40.0315,-75.1764,PHILADELPHIA 19181,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19182,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19183,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19184,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19185,PHILADELPHIA,PA,39.8893,-75.1701,PHILADELPHIA 19187,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19188,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19190,PHILADELPHIA,PA,39.952335,-75.163789,PHILADELPHIA 19191,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19192,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19193,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19194,PHILADELPHIA,PA,39.9543,-75.1827,PHILADELPHIA 19195,PHILADELPHIA,PA,39.9522,-75.1642,PHILADELPHIA 19196,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19197,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19244,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19255,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19481,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19482,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19483,VALLEY FORGE,PA,40.08,-75.4159,MONTGOMERY 19484,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19485,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19493,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19494,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19495,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19496,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19601,READING,PA,40.346621,-75.935132,BERKS 19602,READING,PA,40.330604,-75.919229,BERKS 19603,READING,PA,40.3362,-75.9277,BERKS 19604,READING,PA,40.350721,-75.914262,BERKS 19605,READING,PA,40.38859,-75.932769,BERKS 19606,READING,PA,40.325109,-75.868178,BERKS 19607,READING,PA,40.299696,-75.953103,BERKS 19608,READING,PA,40.31449,-76.024086,BERKS 19609,READING,PA,40.325778,-75.995347,BERKS 19610,READING,PA,40.333478,-75.976382,BERKS 19611,READING,PA,40.324989,-75.944188,BERKS 19612,READING,PA,40.3683,-75.9116,BERKS 19640,READING,PA,40.3683,-75.9116,BERKS 19702,NEWARK,DE,39.634869,-75.699339,NEW CASTLE 19711,NEWARK,DE,39.701129,-75.737534,NEW CASTLE 19712,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19713,NEWARK,DE,39.669881,-75.715101,NEW CASTLE 19714,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19715,NEWARK,DE,39.6832,-75.749,NEW CASTLE 19716,NEWARK,DE,39.6814,-75.754,NEW CASTLE 19717,NEWARK,DE,39.6816,-75.7545,NEW CASTLE 19718,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19725,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19726,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19801,WILMINGTON,DE,39.737752,-75.549658,NEW CASTLE 19802,WILMINGTON,DE,39.75638,-75.534041,NEW CASTLE 19803,WILMINGTON,DE,39.793236,-75.531076,NEW CASTLE 19804,WILMINGTON,DE,39.720854,-75.612815,NEW CASTLE 19805,WILMINGTON,DE,39.743375,-75.582724,NEW CASTLE 19806,WILMINGTON,DE,39.757076,-75.563503,NEW CASTLE 19807,WILMINGTON,DE,39.782206,-75.607205,NEW CASTLE 19808,WILMINGTON,DE,39.734737,-75.663891,NEW CASTLE 19809,WILMINGTON,DE,39.771913,-75.494592,NEW CASTLE 19810,WILMINGTON,DE,39.819377,-75.505999,NEW CASTLE 19850,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19880,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19884,WILMINGTON,DE,39.778889,-75.598611,NEW CASTLE 19885,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19886,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19887,WILMINGTON,DE,39.8187,-75.508,NEW CASTLE 19889,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19890,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19891,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19892,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19893,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19894,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19895,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19896,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19897,WILMINGTON,DE,39.7856,-75.5458,NEW CASTLE 19898,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19899,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 20001,WASHINGTON,DC,38.912217,-77.017691,DISTRICT OF COLUMBIA 20002,WASHINGTON,DC,38.902365,-76.990055,DISTRICT OF COLUMBIA 20003,WASHINGTON,DC,38.882941,-76.989539,DISTRICT OF COLUMBIA 20004,WASHINGTON,DC,38.892955,-77.026303,DISTRICT OF COLUMBIA 20005,WASHINGTON,DC,38.906731,-77.031236,DISTRICT OF COLUMBIA 20006,WASHINGTON,DC,38.896444,-77.044701,DISTRICT OF COLUMBIA 20007,WASHINGTON,DC,38.914365,-77.074042,DISTRICT OF COLUMBIA 20008,WASHINGTON,DC,38.936282,-77.059936,DISTRICT OF COLUMBIA 20009,WASHINGTON,DC,38.920202,-77.037504,DISTRICT OF COLUMBIA 20010,WASHINGTON,DC,38.93272,-77.032183,DISTRICT OF COLUMBIA 20011,WASHINGTON,DC,38.951786,-77.020251,DISTRICT OF COLUMBIA 20012,WASHINGTON,DC,38.975712,-77.028248,DISTRICT OF COLUMBIA 20013,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20015,WASHINGTON,DC,38.965768,-77.067961,DISTRICT OF COLUMBIA 20016,WASHINGTON,DC,38.938117,-77.086037,DISTRICT OF COLUMBIA 20017,WASHINGTON,DC,38.936723,-76.994038,DISTRICT OF COLUMBIA 20018,WASHINGTON,DC,38.927724,-76.976159,DISTRICT OF COLUMBIA 20019,WASHINGTON,DC,38.890237,-76.937588,DISTRICT OF COLUMBIA 20020,WASHINGTON,DC,38.860039,-76.974187,DISTRICT OF COLUMBIA 20022,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20023,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20024,WASHINGTON,DC,38.875939,-77.016028,DISTRICT OF COLUMBIA 20026,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20027,WASHINGTON,DC,38.9008,-76.9827,DISTRICT OF COLUMBIA 20029,WASHINGTON,DC,38.8938,-76.9501,DISTRICT OF COLUMBIA 20030,WASHINGTON,DC,38.8648,-76.9707,DISTRICT OF COLUMBIA 20032,WASHINGTON,DC,38.833843,-76.999549,DISTRICT OF COLUMBIA 20033,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20035,WASHINGTON,DC,38.9026,-77.0398,DISTRICT OF COLUMBIA 20036,WASHINGTON,DC,38.908704,-77.041434,DISTRICT OF COLUMBIA 20037,WASHINGTON,DC,38.901446,-77.050448,DISTRICT OF COLUMBIA 20038,WASHINGTON,DC,38.9008,-77.0328,DISTRICT OF COLUMBIA 20039,WASHINGTON,DC,38.9528,-77.0234,DISTRICT OF COLUMBIA 20040,WASHINGTON,DC,38.9658,-77.0276,DISTRICT OF COLUMBIA 20041,WASHINGTON,DC,38.944,-77.4624,DISTRICT OF COLUMBIA 20042,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20043,WASHINGTON,DC,38.9033,-77.0325,DISTRICT OF COLUMBIA 20044,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20045,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20046,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20047,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20049,WASHINGTON,DC,38.8963,-77.02,DISTRICT OF COLUMBIA 20050,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20051,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20052,WASHINGTON,DC,38.899,-77.0457,DISTRICT OF COLUMBIA 20053,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20055,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20056,WASHINGTON,DC,38.9158,-77.0321,DISTRICT OF COLUMBIA 20057,WASHINGTON,DC,38.9079,-77.0714,DISTRICT OF COLUMBIA 20058,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20059,WASHINGTON,DC,38.9226,-77.0212,DISTRICT OF COLUMBIA 20060,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20061,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20062,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20063,WASHINGTON,DC,38.9055,-77.0467,DISTRICT OF COLUMBIA 20064,WASHINGTON,DC,38.9326,-76.9973,DISTRICT OF COLUMBIA 20065,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20066,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20067,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20068,WASHINGTON,DC,38.9002,-77.0437,DISTRICT OF COLUMBIA 20069,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20070,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20071,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20073,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20074,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20075,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20076,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20077,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20078,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20080,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20081,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20082,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20088,WASHINGTON,DC,38.9417,-77.0771,DISTRICT OF COLUMBIA 20090,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20091,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20097,WASHINGTON,DC,38.8858,-77.0063,DISTRICT OF COLUMBIA 20098,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20101,DULLES,VA,38.9886,-77.4507,LOUDOUN 20102,DULLES,VA,38.9886,-77.4507,LOUDOUN 20103,DULLES,VA,38.9886,-77.4507,LOUDOUN 20104,DULLES,VA,38.9886,-77.4507,LOUDOUN 20108,MANASSAS,VA,38.7518,-77.4728,MANASSAS CITY 20109,MANASSAS,VA,38.841111,-77.538056,PRINCE WILLIAM 20110,MANASSAS,VA,38.7509,-77.48,MANASSAS CITY 20111,MANASSAS,VA,38.783889,-77.47,PRINCE WILLIAM 20112,MANASSAS,VA,38.6811,-77.4324,PRINCE WILLIAM 20113,MANASSAS,VA,38.7776,-77.5197,MANASSAS PARK CITY 20170,HERNDON,VA,38.9764,-77.3839,FAIRFAX 20171,HERNDON,VA,38.935556,-77.380278,FAIRFAX 20172,HERNDON,VA,38.9335,-77.3477,FAIRFAX 20189,DULLES,VA,38.8951,-77.0369,LOUDOUN 20190,RESTON,VA,38.96,-77.3456,FAIRFAX 20191,RESTON,VA,38.9379,-77.352,FAIRFAX 20192,HERNDON,VA,38.9496,-77.366,FAIRFAX 20193,RESTON,VA,38.959167,-77.336944,FAIRFAX 20194,RESTON,VA,38.9785,-77.347,FAIRFAX 20195,RESTON,VA,38.9335,-77.3477,FAIRFAX 20196,RESTON,VA,38.9253,-77.3971,FAIRFAX 20199,DULLES,VA,39.0011,-77.4562,LOUDOUN 20201,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20202,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20203,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20204,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20206,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20207,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20208,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20210,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20211,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20212,WASHINGTON,DC,38.8971,-77.0084,DISTRICT OF COLUMBIA 20213,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20214,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20215,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20216,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20217,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20218,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20219,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20220,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20221,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20222,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20223,WASHINGTON,DC,38.895,-77.036667,DISTRICT OF COLUMBIA 20224,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20226,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20227,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20228,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20229,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20230,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20232,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20233,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20235,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20237,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20238,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20239,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20240,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20241,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20242,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20244,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20245,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20250,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20251,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20254,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20260,WASHINGTON,DC,38.8836,-77.02,DISTRICT OF COLUMBIA 20261,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20262,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20265,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20266,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20268,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20270,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20277,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20289,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20299,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20301,WASHINGTON,DC,38.891019,-77.038196,DISTRICT OF COLUMBIA 20303,WASHINGTON,DC,38.9171,-76.994,DISTRICT OF COLUMBIA 20306,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20307,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20310,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20314,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20317,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20318,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20319,WASHINGTON,DC,38.867778,-77.015556,DISTRICT OF COLUMBIA 20330,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20340,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20350,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20355,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20370,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20372,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20375,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20380,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20389,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20390,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20392,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20393,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20394,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20395,WASHINGTON,DC,38.8619,-76.9738,DISTRICT OF COLUMBIA 20401,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20402,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20403,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20404,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20405,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20406,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20407,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20408,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20409,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20410,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20411,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20412,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20413,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20414,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20415,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20416,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20418,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20419,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20420,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20421,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20422,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20423,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20424,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20425,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20426,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20427,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20428,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20429,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20431,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20433,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20434,WASHINGTON,DC,38.9058,-77.0472,DISTRICT OF COLUMBIA 20435,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20436,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20437,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20439,WASHINGTON,DC,38.8991,-77.035,DISTRICT OF COLUMBIA 20440,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20441,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20442,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20444,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20447,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20451,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20453,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20456,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20460,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20463,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20468,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20469,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20470,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20472,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20500,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20501,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20502,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20503,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20504,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20505,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20506,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20507,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20508,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20509,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20510,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20511,WASHINGTON,DC,38.977,-77.0527,DISTRICT OF COLUMBIA 20515,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20520,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20521,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20522,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20523,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20524,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20525,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20526,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20527,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20528,WASHINGTON,DC,38.895,-77.0367,DISTRICT OF COLUMBIA 20529,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 20530,WASHINGTON,DC,38.894,-77.025,DISTRICT OF COLUMBIA 20531,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20532,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20533,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20534,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20535,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20536,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20537,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20538,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20539,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20540,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20541,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20542,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20543,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20544,WASHINGTON,DC,38.8968,-77.0079,DISTRICT OF COLUMBIA 20546,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20547,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20548,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20549,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20551,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20552,WASHINGTON,DC,38.8982,-77.0406,DISTRICT OF COLUMBIA 20553,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20554,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20555,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20557,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20558,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20559,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20560,WASHINGTON,DC,38.8888,-77.0254,DISTRICT OF COLUMBIA 20565,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20566,WASHINGTON,DC,38.8958,-77.056,DISTRICT OF COLUMBIA 20570,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20571,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20572,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20573,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20575,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20576,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20577,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20578,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20579,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20580,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20581,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20585,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20586,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20590,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20591,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20593,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20594,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20597,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20599,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20707,LAUREL,MD,39.107687,-76.872043,PRINCE GEORGES 20708,LAUREL,MD,39.068376,-76.847725,PRINCE GEORGES 20709,LAUREL,MD,39.061389,-76.851111,PRINCE GEORGES 20715,BOWIE,MD,38.979696,-76.743497,PRINCE GEORGES 20716,BOWIE,MD,38.927482,-76.731979,PRINCE GEORGES 20717,BOWIE,MD,38.925,-76.743056,PRINCE GEORGES 20718,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20719,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20720,BOWIE,MD,38.973733,-76.789526,PRINCE GEORGES 20721,BOWIE,MD,38.919588,-76.80527,PRINCE GEORGES 20723,LAUREL,MD,39.120806,-76.84345,HOWARD 20724,LAUREL,MD,39.095801,-76.815485,ANNE ARUNDEL 20725,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20726,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20781,HYATTSVILLE,MD,38.95063,-76.934652,PRINCE GEORGES 20782,HYATTSVILLE,MD,38.963575,-76.966632,PRINCE GEORGES 20783,HYATTSVILLE,MD,38.993751,-76.97472,PRINCE GEORGES 20784,HYATTSVILLE,MD,38.951541,-76.888829,PRINCE GEORGES 20785,HYATTSVILLE,MD,38.91992,-76.882243,PRINCE GEORGES 20787,HYATTSVILLE,MD,38.988611,-76.981667,PRINCE GEORGES 20788,HYATTSVILLE,MD,38.963333,-76.962222,PRINCE GEORGES 20810,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20811,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20813,BETHESDA,MD,38.9643,-77.0884,MONTGOMERY 20814,BETHESDA,MD,39.000343,-77.102165,MONTGOMERY 20816,BETHESDA,MD,38.958485,-77.11528,MONTGOMERY 20817,BETHESDA,MD,38.999659,-77.137239,MONTGOMERY 20824,BETHESDA,MD,38.9832,-77.0942,MONTGOMERY 20827,BETHESDA,MD,39.014,-77.1602,MONTGOMERY 20847,ROCKVILLE,MD,39.0838,-77.153,MONTGOMERY 20848,ROCKVILLE,MD,39.0753,-77.1165,MONTGOMERY 20849,ROCKVILLE,MD,39.084,-77.1537,MONTGOMERY 20850,ROCKVILLE,MD,39.087037,-77.167973,MONTGOMERY 20851,ROCKVILLE,MD,39.076265,-77.123449,MONTGOMERY 20852,ROCKVILLE,MD,39.049628,-77.120416,MONTGOMERY 20853,ROCKVILLE,MD,39.088738,-77.095037,MONTGOMERY 20857,ROCKVILLE,MD,39.0629,-77.1152,MONTGOMERY 20877,GAITHERSBURG,MD,39.14187,-77.188993,MONTGOMERY 20878,GAITHERSBURG,MD,39.115534,-77.236434,MONTGOMERY 20879,GAITHERSBURG,MD,39.172597,-77.194599,MONTGOMERY 20882,GAITHERSBURG,MD,39.238345,-77.174718,MONTGOMERY 20883,GAITHERSBURG,MD,39.1743,-77.1915,MONTGOMERY 20884,GAITHERSBURG,MD,39.139,-77.1942,MONTGOMERY 20885,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20889,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20892,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20894,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20898,GAITHERSBURG,MD,39.1272,-77.1727,MONTGOMERY 20899,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20901,SILVER SPRING,MD,39.019106,-77.007613,MONTGOMERY 20902,SILVER SPRING,MD,39.04158,-77.046348,MONTGOMERY 20903,SILVER SPRING,MD,39.009513,-76.984648,MONTGOMERY 20904,SILVER SPRING,MD,39.06524,-76.976399,MONTGOMERY 20905,SILVER SPRING,MD,39.102438,-76.989928,MONTGOMERY 20906,SILVER SPRING,MD,39.081041,-77.063233,MONTGOMERY 20907,SILVER SPRING,MD,38.9965,-77.0341,MONTGOMERY 20908,SILVER SPRING,MD,39.1029,-77.0763,MONTGOMERY 20910,SILVER SPRING,MD,38.998198,-77.033776,MONTGOMERY 20911,SILVER SPRING,MD,38.9943,-77.0302,MONTGOMERY 20914,SILVER SPRING,MD,39.075556,-77.002222,MONTGOMERY 20915,SILVER SPRING,MD,39.039722,-77.055556,MONTGOMERY 20916,SILVER SPRING,MD,39.083,-77.0785,MONTGOMERY 20918,SILVER SPRING,MD,39.0213,-77.015,MONTGOMERY 20993,SILVER SPRING,MD,38.9907,-77.0261,MONTGOMERY 20997,SILVER SPRING,MD,39.1127,-77.248,MONTGOMERY 21201,BALTIMORE,MD,39.29463,-76.625203,BALTIMORE CITY 21202,BALTIMORE,MD,39.299844,-76.607499,BALTIMORE CITY 21203,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21205,BALTIMORE,MD,39.300871,-76.579915,BALTIMORE CITY 21206,BALTIMORE,MD,39.336494,-76.541135,BALTIMORE CITY 21209,BALTIMORE,MD,39.371622,-76.674431,BALTIMORE CITY 21210,BALTIMORE,MD,39.350727,-76.632099,BALTIMORE CITY 21211,BALTIMORE,MD,39.331642,-76.633625,BALTIMORE CITY 21212,BALTIMORE,MD,39.362571,-76.609989,BALTIMORE CITY 21213,BALTIMORE,MD,39.312667,-76.581012,BALTIMORE CITY 21214,BALTIMORE,MD,39.35206,-76.564375,BALTIMORE CITY 21215,BALTIMORE,MD,39.344572,-76.679397,BALTIMORE CITY 21216,BALTIMORE,MD,39.309349,-76.669891,BALTIMORE CITY 21217,BALTIMORE,MD,39.306416,-76.639267,BALTIMORE CITY 21218,BALTIMORE,MD,39.3265,-76.6048,BALTIMORE CITY 21223,BALTIMORE,MD,39.287,-76.647586,BALTIMORE CITY 21224,BALTIMORE,MD,39.287558,-76.556831,BALTIMORE CITY 21229,BALTIMORE,MD,39.285645,-76.689885,BALTIMORE CITY 21230,BALTIMORE,MD,39.269943,-76.626193,BALTIMORE CITY 21231,BALTIMORE,MD,39.289193,-76.589956,BALTIMORE CITY 21233,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21235,BALTIMORE,MD,39.3111,-76.7213,BALTIMORE CITY 21239,BALTIMORE,MD,39.360977,-76.589082,BALTIMORE CITY 21240,BALTIMORE,MD,39.17185,-76.648287,ANNE ARUNDEL 21241,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21250,BALTIMORE,MD,39.2595,-76.7091,BALTIMORE 21251,BALTIMORE,MD,39.3459,-76.5856,BALTIMORE CITY 21252,BALTIMORE,MD,39.3875,-76.6184,BALTIMORE 21263,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21264,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21265,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21268,BALTIMORE,MD,39.2192,-76.7214,BALTIMORE CITY 21270,BALTIMORE,MD,39.3339,-76.674,BALTIMORE CITY 21273,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21274,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21275,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21278,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21279,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21280,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21281,BALTIMORE,MD,39.2873,-76.5419,BALTIMORE CITY 21282,BALTIMORE,MD,39.374167,-76.722778,BALTIMORE 21283,BALTIMORE,MD,39.2902,-76.6125,BALTIMORE CITY 21284,BALTIMORE,MD,39.418889,-76.535556,BALTIMORE 21285,BALTIMORE,MD,39.4164,-76.608,BALTIMORE 21287,BALTIMORE,MD,39.2946,-76.5908,BALTIMORE CITY 21288,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21289,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21290,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21297,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21298,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21401,ANNAPOLIS,MD,38.999645,-76.503139,ANNE ARUNDEL 21402,ANNAPOLIS,MD,38.982436,-76.48079,ANNE ARUNDEL 21403,ANNAPOLIS,MD,38.952394,-76.49103,ANNE ARUNDEL 21404,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21405,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21409,ANNAPOLIS,MD,39.01932,-76.441827,ANNE ARUNDEL 21411,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21412,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21660,RIDGELY,MD,38.956787,-75.884825,CAROLINE 21681,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21682,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21683,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21684,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21685,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21686,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21687,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21688,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21701,FREDERICK,MD,39.408235,-77.400875,FREDERICK 21702,FREDERICK,MD,39.436532,-77.447369,FREDERICK 21703,FREDERICK,MD,39.3876,-77.4471,FREDERICK 21704,FREDERICK,MD,39.325833,-77.351667,FREDERICK 21705,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21709,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21740,HAGERSTOWN,MD,39.632022,-77.737215,WASHINGTON 21741,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21742,HAGERSTOWN,MD,39.657291,-77.692102,WASHINGTON 21746,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21747,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21748,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21749,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 22030,FAIRFAX,VA,38.845826,-77.324151,FAIRFAX CITY 22031,FAIRFAX,VA,38.860353,-77.264937,FAIRFAX 22032,FAIRFAX,VA,38.817729,-77.292527,FAIRFAX 22033,FAIRFAX,VA,38.877627,-77.388451,FAIRFAX 22034,FAIRFAX,VA,38.8595,-77.2659,FAIRFAX 22035,FAIRFAX,VA,38.854,-77.3577,FAIRFAX 22036,FAIRFAX,VA,38.86,-77.2593,FAIRFAX 22037,FAIRFAX,VA,38.8594,-77.2269,FAIRFAX 22038,FAIRFAX,VA,38.8482,-77.3065,FAIRFAX CITY 22040,FALLS CHURCH,VA,38.8838,-77.1741,FALLS CHURCH CITY 22041,FALLS CHURCH,VA,38.848506,-77.136928,FAIRFAX 22042,FALLS CHURCH,VA,38.866272,-77.192271,FAIRFAX 22043,FALLS CHURCH,VA,38.901226,-77.20005,FAIRFAX 22044,FALLS CHURCH,VA,38.863544,-77.150819,FAIRFAX 22046,FALLS CHURCH,VA,38.88559,-77.180231,FALLS CHURCH CITY 22047,FALLS CHURCH,VA,38.869,-77.2241,FAIRFAX 22081,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22082,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22092,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22095,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22096,RESTON,VA,38.925278,-77.396944,FAIRFAX 22101,MC LEAN,VA,38.932624,-77.170628,FAIRFAX 22102,MC LEAN,VA,38.936318,-77.221934,FAIRFAX 22106,MC LEAN,VA,38.9372,-77.1786,FAIRFAX 22107,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22108,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22109,MC LEAN,VA,38.9327,-77.1825,FAIRFAX 22116,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22118,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22119,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22120,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22150,SPRINGFIELD,VA,38.779718,-77.186582,FAIRFAX 22151,SPRINGFIELD,VA,38.803323,-77.213908,FAIRFAX 22152,SPRINGFIELD,VA,38.776488,-77.233243,FAIRFAX 22153,SPRINGFIELD,VA,38.744859,-77.237026,FAIRFAX 22156,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22158,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22159,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22160,SPRINGFIELD,VA,38.8111,-77.2182,FAIRFAX 22161,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22180,VIENNA,VA,38.893527,-77.253219,FAIRFAX 22181,VIENNA,VA,38.897695,-77.288048,FAIRFAX 22182,VIENNA,VA,38.928005,-77.264876,FAIRFAX 22183,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22184,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22185,VIENNA,VA,38.880833,-77.301111,FAIRFAX 22201,ARLINGTON,VA,38.887103,-77.093197,ARLINGTON 22202,ARLINGTON,VA,38.856547,-77.059228,ARLINGTON 22203,ARLINGTON,VA,38.873799,-77.114191,ARLINGTON 22204,ARLINGTON,VA,38.858962,-77.099688,ARLINGTON 22205,ARLINGTON,VA,38.883557,-77.139488,ARLINGTON 22206,ARLINGTON,VA,38.841508,-77.09046,ARLINGTON 22207,ARLINGTON,VA,38.903321,-77.126287,ARLINGTON 22209,ARLINGTON,VA,38.8926,-77.07531,ARLINGTON 22210,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22212,ARLINGTON,VA,38.8809,-76.8545,ARLINGTON 22213,ARLINGTON,VA,38.895375,-77.163295,ARLINGTON 22214,ARLINGTON,VA,38.8795,-77.0802,ARLINGTON 22215,ARLINGTON,VA,38.8793,-77.1131,ARLINGTON 22216,ARLINGTON,VA,38.8916,-77.0839,ARLINGTON 22217,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22218,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22219,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22222,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22223,ARLINGTON,VA,38.8867,-77.0936,ARLINGTON 22225,ARLINGTON,VA,38.8566,-77.0584,ARLINGTON 22226,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22227,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22229,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22230,ARLINGTON,VA,38.873,-77.1042,ARLINGTON 22234,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22240,ARLINGTON,VA,38.88,-77.1153,ARLINGTON 22241,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22242,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22243,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22244,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22245,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22246,ARLINGTON,VA,38.8575,-77.0531,ARLINGTON 22301,ALEXANDRIA,VA,38.820042,-77.058901,ALEXANDRIA CITY 22302,ALEXANDRIA,VA,38.83354,-77.092412,ALEXANDRIA CITY 22303,ALEXANDRIA,VA,38.791143,-77.076608,FAIRFAX 22304,ALEXANDRIA,VA,38.814871,-77.120989,ALEXANDRIA CITY 22305,ALEXANDRIA,VA,38.837184,-77.064039,ALEXANDRIA CITY 22306,ALEXANDRIA,VA,38.755769,-77.085389,FAIRFAX 22307,ALEXANDRIA,VA,38.77056,-77.062511,FAIRFAX 22308,ALEXANDRIA,VA,38.729122,-77.060639,FAIRFAX 22309,ALEXANDRIA,VA,38.727855,-77.108139,FAIRFAX 22310,ALEXANDRIA,VA,38.769132,-77.131707,FAIRFAX 22311,ALEXANDRIA,VA,38.832039,-77.119962,ALEXANDRIA CITY 22312,ALEXANDRIA,VA,38.819099,-77.148438,FAIRFAX 22313,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22314,ALEXANDRIA,VA,38.806018,-77.052867,ALEXANDRIA CITY 22315,ALEXANDRIA,VA,38.756667,-77.145556,FAIRFAX 22320,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22321,ALEXANDRIA,VA,38.8062,-77.0528,FAIRFAX 22331,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22332,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22333,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22334,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22336,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22401,FREDERICKSBURG,VA,38.299538,-77.477152,FREDERICKSBURG CITY 22402,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22403,FREDERICKSBURG,VA,38.3242,-77.4685,STAFFORD 22404,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22405,FREDERICKSBURG,VA,38.314557,-77.404537,STAFFORD 22406,FREDERICKSBURG,VA,38.379627,-77.534892,STAFFORD 22407,FREDERICKSBURG,VA,38.268803,-77.547584,SPOTSYLVANIA 22408,FREDERICKSBURG,VA,38.248141,-77.468068,SPOTSYLVANIA 22412,FREDERICKSBURG,VA,38.3971,-77.5516,STAFFORD 22901,CHARLOTTESVILLE,VA,38.054752,-78.490869,ALBEMARLE 22902,CHARLOTTESVILLE,VA,37.9962,-78.4782,CHARLOTTESVILLE CITY 22903,CHARLOTTESVILLE,VA,38.032728,-78.505758,CHARLOTTESVILLE CITY 22904,CHARLOTTESVILLE,VA,38.0337,-78.5153,CHARLOTTESVILLE CITY 22905,CHARLOTTESVILLE,VA,38.0519,-78.501,CHARLOTTESVILLE CITY 22906,CHARLOTTESVILLE,VA,38.0883,-78.4701,CHARLOTTESVILLE CITY 22907,CHARLOTTESVILLE,VA,38.0575,-78.4922,CHARLOTTESVILLE CITY 22908,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22909,CHARLOTTESVILLE,VA,38.0444,-78.4726,ALBEMARLE 22910,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22911,CHARLOTTESVILLE,VA,38.0943,-78.4232,ALBEMARLE 23218,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23219,RICHMOND,VA,37.546265,-77.437798,RICHMOND CITY 23220,RICHMOND,VA,37.549808,-77.458798,RICHMOND CITY 23221,RICHMOND,VA,37.558301,-77.4845,RICHMOND CITY 23222,RICHMOND,VA,37.574802,-77.426725,RICHMOND CITY 23223,RICHMOND,VA,37.547721,-77.394772,RICHMOND CITY 23224,RICHMOND,VA,37.495512,-77.471014,RICHMOND CITY 23225,RICHMOND,VA,37.515842,-77.504709,RICHMOND CITY 23226,RICHMOND,VA,37.582473,-77.519657,HENRICO 23227,RICHMOND,VA,37.604181,-77.446309,HENRICO 23228,RICHMOND,VA,37.623503,-77.493308,HENRICO 23229,RICHMOND,VA,37.596351,-77.566202,HENRICO 23230,RICHMOND,VA,37.588376,-77.496828,HENRICO 23231,RICHMOND,VA,37.491529,-77.368002,HENRICO 23232,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23233,RICHMOND,VA,37.619354,-77.614933,HENRICO 23234,RICHMOND,VA,37.453158,-77.469798,CHESTERFIELD 23235,RICHMOND,VA,37.512034,-77.565103,CHESTERFIELD 23236,RICHMOND,VA,37.478165,-77.585413,CHESTERFIELD 23237,RICHMOND,VA,37.401145,-77.461471,CHESTERFIELD 23238,RICHMOND,VA,37.605,-77.6209,HENRICO 23240,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23241,RICHMOND,VA,37.5441,-77.4406,RICHMOND CITY 23242,RICHMOND,VA,37.6171,-77.6149,HENRICO 23249,RICHMOND,VA,37.4967,-77.4672,RICHMOND CITY 23250,RICHMOND,VA,37.502778,-77.337222,HENRICO 23255,RICHMOND,VA,37.6074,-77.5672,HENRICO 23260,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23261,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23269,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23273,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23274,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23276,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23278,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23279,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23282,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23284,RICHMOND,VA,37.5484,-77.454,RICHMOND CITY 23285,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23286,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23288,RICHMOND,VA,37.5992,-77.5456,HENRICO 23289,RICHMOND,VA,37.5439,-77.4489,RICHMOND CITY 23290,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23291,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23292,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23293,RICHMOND,VA,37.5428,-77.4396,RICHMOND CITY 23294,RICHMOND,VA,37.632923,-77.545125,HENRICO 23295,RICHMOND,VA,37.5537,-77.4609,RICHMOND CITY 23297,RICHMOND,VA,37.4019,-77.4597,CHESTERFIELD 23298,RICHMOND,VA,37.5419,-77.4288,RICHMOND CITY 23320,CHESAPEAKE,VA,36.735246,-76.23843,CHESAPEAKE CITY 23321,CHESAPEAKE,VA,36.827964,-76.411012,CHESAPEAKE CITY 23322,CHESAPEAKE,VA,36.634008,-76.213064,CHESAPEAKE CITY 23323,CHESAPEAKE,VA,36.763424,-76.339743,CHESAPEAKE CITY 23324,CHESAPEAKE,VA,36.805568,-76.266557,CHESAPEAKE CITY 23325,CHESAPEAKE,VA,36.813963,-76.240555,CHESAPEAKE CITY 23326,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23327,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23328,CHESAPEAKE,VA,36.7296,-76.2268,CHESAPEAKE CITY 23432,SUFFOLK,VA,36.866823,-76.559811,SUFFOLK CITY 23433,SUFFOLK,VA,36.909027,-76.49286,SUFFOLK CITY 23434,SUFFOLK,VA,36.730433,-76.593147,SUFFOLK CITY 23435,SUFFOLK,VA,36.854427,-76.466397,SUFFOLK CITY 23436,SUFFOLK,VA,36.892625,-76.514157,SUFFOLK CITY 23437,SUFFOLK,VA,36.652611,-76.792043,SUFFOLK CITY 23438,SUFFOLK,VA,36.591311,-76.687097,SUFFOLK CITY 23439,SUFFOLK,VA,36.728056,-76.583889,SUFFOLK CITY 23450,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23451,VIRGINIA BEACH,VA,36.858451,-76.001928,VIRGINIA BEACH CITY 23452,VIRGINIA BEACH,VA,36.83481,-76.096142,VIRGINIA BEACH CITY 23453,VIRGINIA BEACH,VA,36.7891,-76.0852,VIRGINIA BEACH CITY 23454,VIRGINIA BEACH,VA,36.828187,-76.023723,VIRGINIA BEACH CITY 23455,VIRGINIA BEACH,VA,36.888121,-76.144552,VIRGINIA BEACH CITY 23456,VIRGINIA BEACH,VA,36.779851,-76.089162,VIRGINIA BEACH CITY 23457,VIRGINIA BEACH,VA,36.624793,-76.037816,VIRGINIA BEACH CITY 23458,VIRGINIA BEACH,VA,36.8525,-75.9767,VIRGINIA BEACH CITY 23459,VIRGINIA BEACH,VA,36.9216,-76.017122,VIRGINIA BEACH CITY 23460,VIRGINIA BEACH,VA,36.8133,-76.0288,VIRGINIA BEACH CITY 23461,VIRGINIA BEACH,VA,36.7779,-75.9608,VIRGINIA BEACH CITY 23462,VIRGINIA BEACH,VA,36.839193,-76.152184,VIRGINIA BEACH CITY 23463,VIRGINIA BEACH,VA,36.7996,-76.1902,VIRGINIA BEACH CITY 23464,VIRGINIA BEACH,VA,36.797772,-76.175909,VIRGINIA BEACH CITY 23465,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23466,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23467,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23471,VIRGINIA BEACH,VA,36.8952,-76.1416,VIRGINIA BEACH CITY 23479,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23501,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23502,NORFOLK,VA,36.854648,-76.214253,NORFOLK CITY 23503,NORFOLK,VA,36.944196,-76.252008,NORFOLK CITY 23504,NORFOLK,VA,36.858554,-76.268628,NORFOLK CITY 23505,NORFOLK,VA,36.91675,-76.28748,NORFOLK CITY 23506,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23507,NORFOLK,VA,36.864506,-76.300385,NORFOLK CITY 23508,NORFOLK,VA,36.885922,-76.300356,NORFOLK CITY 23509,NORFOLK,VA,36.878743,-76.260361,NORFOLK CITY 23510,NORFOLK,VA,36.852929,-76.287784,NORFOLK CITY 23511,NORFOLK,VA,36.951164,-76.309206,NORFOLK CITY 23512,NORFOLK,VA,36.9214,-76.3161,NORFOLK CITY 23513,NORFOLK,VA,36.891395,-76.239578,NORFOLK CITY 23514,NORFOLK,VA,36.8469,-76.2904,NORFOLK CITY 23515,NORFOLK,VA,36.9471,-76.3005,NORFOLK CITY 23517,NORFOLK,VA,36.869547,-76.294519,NORFOLK CITY 23518,NORFOLK,VA,36.920246,-76.216027,NORFOLK CITY 23519,NORFOLK,VA,36.9222,-76.1884,NORFOLK CITY 23520,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23521,NORFOLK,VA,36.916923,-76.163715,NORFOLK CITY 23523,NORFOLK,VA,36.82942,-76.270125,NORFOLK CITY 23529,NORFOLK,VA,36.8871,-76.3053,NORFOLK CITY 23541,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23551,NORFOLK,VA,36.9246,-76.3027,NORFOLK CITY 23601,NEWPORT NEWS,VA,37.057951,-76.460722,NEWPORT NEWS CITY 23602,NEWPORT NEWS,VA,37.131684,-76.532125,NEWPORT NEWS CITY 23603,NEWPORT NEWS,VA,37.198887,-76.582059,NEWPORT NEWS CITY 23605,NEWPORT NEWS,VA,37.015583,-76.433158,NEWPORT NEWS CITY 23606,NEWPORT NEWS,VA,37.076777,-76.496724,NEWPORT NEWS CITY 23607,NEWPORT NEWS,VA,36.986352,-76.416469,NEWPORT NEWS CITY 23608,NEWPORT NEWS,VA,37.1523,-76.5424,NEWPORT NEWS CITY 23609,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23612,NEWPORT NEWS,VA,37.0679,-76.4959,NEWPORT NEWS CITY 23628,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23630,HAMPTON,VA,37.0065,-76.413,HAMPTON CITY 23661,HAMPTON,VA,37.007432,-76.380085,HAMPTON CITY 23663,HAMPTON,VA,37.03181,-76.319875,HAMPTON CITY 23664,HAMPTON,VA,37.056611,-76.296639,HAMPTON CITY 23665,HAMPTON,VA,37.100565,-76.409939,YORK 23666,HAMPTON,VA,37.046241,-76.409617,HAMPTON CITY 23667,HAMPTON,VA,37.0297,-76.3455,HAMPTON CITY 23668,HAMPTON,VA,37.0207,-76.3323,HAMPTON CITY 23669,HAMPTON,VA,37.043559,-76.342573,HAMPTON CITY 23670,HAMPTON,VA,37.0059,-76.4122,HAMPTON CITY 23681,HAMPTON,VA,37.1009,-76.3932,HAMPTON CITY 23701,PORTSMOUTH,VA,36.808902,-76.36714,PORTSMOUTH CITY 23702,PORTSMOUTH,VA,36.803534,-76.326979,PORTSMOUTH CITY 23703,PORTSMOUTH,VA,36.869501,-76.386872,PORTSMOUTH CITY 23704,PORTSMOUTH,VA,36.829821,-76.314604,PORTSMOUTH CITY 23705,PORTSMOUTH,VA,36.8352,-76.2986,PORTSMOUTH CITY 23707,PORTSMOUTH,VA,36.836234,-76.344011,PORTSMOUTH CITY 23708,PORTSMOUTH,VA,36.8458,-76.3085,PORTSMOUTH CITY 23709,PORTSMOUTH,VA,36.813883,-76.305188,PORTSMOUTH CITY 24001,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24002,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24003,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24004,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24005,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24006,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24007,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24008,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24009,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24010,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24011,ROANOKE,VA,37.268997,-79.942019,ROANOKE CITY 24012,ROANOKE,VA,37.302912,-79.932179,ROANOKE CITY 24013,ROANOKE,VA,37.267685,-79.924747,ROANOKE CITY 24014,ROANOKE,VA,37.23268,-79.946332,ROANOKE CITY 24015,ROANOKE,VA,37.258363,-79.980694,ROANOKE CITY 24016,ROANOKE,VA,37.270407,-79.953495,ROANOKE CITY 24017,ROANOKE,VA,37.293655,-79.990248,ROANOKE CITY 24018,ROANOKE,VA,37.231554,-80.021749,ROANOKE 24019,ROANOKE,VA,37.33585,-79.956328,ROANOKE 24020,ROANOKE,VA,37.355278,-79.942222,ROANOKE 24022,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24023,ROANOKE,VA,37.2698,-79.9537,ROANOKE CITY 24024,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24025,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24026,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24027,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24028,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24029,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24030,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24031,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24032,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24033,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24034,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24035,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24036,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24037,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24038,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24040,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24042,ROANOKE,VA,37.2695,-79.9386,ROANOKE CITY 24043,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24044,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24045,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24048,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24050,ROANOKE,VA,37.2725,-79.953,BOTETOURT 24155,ROANOKE,VA,37.2935,-80.0553,SALEM 24157,ROANOKE,VA,37.2912,-80.0649,SALEM 24501,LYNCHBURG,VA,37.386228,-79.171464,LYNCHBURG CITY 24502,LYNCHBURG,VA,37.359635,-79.211783,LYNCHBURG CITY 24503,LYNCHBURG,VA,37.437646,-79.204982,LYNCHBURG CITY 24504,LYNCHBURG,VA,37.390422,-79.12142,LYNCHBURG CITY 24505,LYNCHBURG,VA,37.4146,-79.1434,LYNCHBURG CITY 24506,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24512,LYNCHBURG,VA,37.4502,-79.2501,LYNCHBURG CITY 24513,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24514,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24515,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 25301,CHARLESTON,WV,38.349,-81.630606,KANAWHA 25302,CHARLESTON,WV,38.383178,-81.623876,KANAWHA 25303,CHARLESTON,WV,38.359226,-81.684079,KANAWHA 25304,CHARLESTON,WV,38.317289,-81.590272,KANAWHA 25305,CHARLESTON,WV,38.3367,-81.6085,KANAWHA 25306,CHARLESTON,WV,38.30028,-81.536813,KANAWHA 25309,CHARLESTON,WV,38.344903,-81.734462,KANAWHA 25311,CHARLESTON,WV,38.349032,-81.599282,KANAWHA 25312,CHARLESTON,WV,38.409563,-81.674688,KANAWHA 25313,CHARLESTON,WV,38.424982,-81.764877,KANAWHA 25314,CHARLESTON,WV,38.327442,-81.668988,KANAWHA 25315,CHARLESTON,WV,38.233309,-81.554361,KANAWHA 25317,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25320,CHARLESTON,WV,38.509586,-81.629585,KANAWHA 25321,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25322,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25323,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25324,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25325,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25326,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25327,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25328,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25329,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25330,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25331,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25332,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25333,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25334,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25335,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25336,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25337,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25338,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25339,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25350,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25356,CHARLESTON,WV,38.4461,-81.7553,KANAWHA 25357,CHARLESTON,WV,38.3759,-81.6733,KANAWHA 25358,CHARLESTON,WV,38.3528,-81.6314,KANAWHA 25360,CHARLESTON,WV,38.4538,-81.6666,KANAWHA 25361,CHARLESTON,WV,38.3422,-81.6213,KANAWHA 25362,CHARLESTON,WV,38.3601,-81.6462,KANAWHA 25364,CHARLESTON,WV,38.3219,-81.5827,KANAWHA 25365,CHARLESTON,WV,38.2335,-81.5734,KANAWHA 25375,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25387,CHARLESTON,WV,38.3102,-81.5674,KANAWHA 25389,CHARLESTON,WV,38.3529,-81.6381,KANAWHA 25392,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25396,CHARLESTON,WV,38.3373,-81.6276,KANAWHA 25401,MARTINSBURG,WV,39.459959,-77.958915,BERKELEY 25402,MARTINSBURG,WV,39.4643,-77.9513,BERKELEY 25403,MARTINSBURG,WV,39.4895,-77.9909,BERKELEY 25404,MARTINSBURG,WV,39.4833,-77.9254,BERKELEY 25405,MARTINSBURG,WV,39.4151,-77.9647,BERKELEY 25429,MARTINSBURG,WV,39.3203,-77.9491,BERKELEY 25701,HUNTINGTON,WV,38.409726,-82.442348,CABELL 25702,HUNTINGTON,WV,38.42862,-82.391083,CABELL 25703,HUNTINGTON,WV,38.421116,-82.422666,CABELL 25704,HUNTINGTON,WV,38.384943,-82.503646,WAYNE 25705,HUNTINGTON,WV,38.409588,-82.36901,CABELL 25706,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25707,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25708,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25709,HUNTINGTON,WV,38.4141,-82.458,CABELL 25710,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25711,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25712,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25713,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25714,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25715,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25716,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25717,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25718,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25719,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25720,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25721,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25722,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25723,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25724,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25725,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25726,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25727,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25728,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25729,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25755,HUNTINGTON,WV,38.4226,-82.4315,CABELL 25770,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25771,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25772,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25773,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25774,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25775,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25776,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25777,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25778,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25779,HUNTINGTON,WV,38.4156,-82.4741,CABELL 26501,MORGANTOWN,WV,39.6368,-80.018,MONONGALIA 26502,MORGANTOWN,WV,39.5863,-79.959,MONONGALIA 26504,MORGANTOWN,WV,39.658333,-79.986667,MONONGALIA 26505,MORGANTOWN,WV,39.633858,-79.954225,MONONGALIA 26506,MORGANTOWN,WV,39.6494,-79.9571,MONONGALIA 26507,MORGANTOWN,WV,39.6276,-79.9574,MONONGALIA 26508,MORGANTOWN,WV,39.556667,-80,MONONGALIA 27101,WINSTON SALEM,NC,36.10237,-80.222798,FORSYTH 27102,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27103,WINSTON SALEM,NC,36.067127,-80.302509,FORSYTH 27104,WINSTON SALEM,NC,36.091985,-80.322423,FORSYTH 27105,WINSTON SALEM,NC,36.144039,-80.237646,FORSYTH 27106,WINSTON SALEM,NC,36.142762,-80.306866,FORSYTH 27107,WINSTON SALEM,NC,36.040324,-80.193265,FORSYTH 27108,WINSTON SALEM,NC,36.0869,-80.2486,FORSYTH 27109,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27110,WINSTON SALEM,NC,36.0902,-80.2275,FORSYTH 27111,WINSTON SALEM,NC,36.1267,-80.0669,FORSYTH 27113,WINSTON SALEM,NC,36.0894,-80.2738,FORSYTH 27114,WINSTON SALEM,NC,36.0758,-80.3103,FORSYTH 27115,WINSTON SALEM,NC,36.1351,-80.2426,FORSYTH 27116,WINSTON SALEM,NC,36.1412,-80.2995,FORSYTH 27117,WINSTON SALEM,NC,36.0699,-80.2067,FORSYTH 27120,WINSTON SALEM,NC,36.1042,-80.2442,FORSYTH 27127,WINSTON SALEM,NC,36.042534,-80.260946,FORSYTH 27130,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27150,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27151,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27152,WINSTON SALEM,NC,36.1005,-80.208,FORSYTH 27155,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27156,WINSTON SALEM,NC,36.1434,-80.2275,FORSYTH 27157,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27198,WINSTON SALEM,NC,36.1028,-80.2225,FORSYTH 27199,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27260,HIGH POINT,NC,35.959313,-80.011673,GUILFORD 27261,HIGH POINT,NC,35.9537,-80.0024,GUILFORD 27262,HIGH POINT,NC,35.973406,-80.010677,GUILFORD 27263,HIGH POINT,NC,35.910757,-79.961764,GUILFORD 27264,HIGH POINT,NC,36.0354,-79.998,GUILFORD 27265,HIGH POINT,NC,36.003584,-80.003571,GUILFORD 27395,GREENSBORO,NC,36.0726,-79.792,CASWELL 27401,GREENSBORO,NC,36.069741,-79.768151,GUILFORD 27402,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27403,GREENSBORO,NC,36.064147,-79.820181,GUILFORD 27404,GREENSBORO,NC,36.0853,-79.833,GUILFORD 27405,GREENSBORO,NC,36.121408,-79.7733,GUILFORD 27406,GREENSBORO,NC,36.021969,-79.782058,GUILFORD 27407,GREENSBORO,NC,36.033442,-79.862647,GUILFORD 27408,GREENSBORO,NC,36.1064,-79.816531,GUILFORD 27409,GREENSBORO,NC,36.077683,-79.908602,GUILFORD 27410,GREENSBORO,NC,36.103164,-79.879365,GUILFORD 27411,GREENSBORO,NC,36.078,-79.7706,GUILFORD 27412,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27413,GREENSBORO,NC,36.0712,-79.8114,GUILFORD 27415,GREENSBORO,NC,36.0917,-79.7805,GUILFORD 27416,GREENSBORO,NC,36.0018,-79.7626,GUILFORD 27417,GREENSBORO,NC,36.0091,-79.8743,GUILFORD 27419,GREENSBORO,NC,36.1271,-79.944,GUILFORD 27420,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27425,GREENSBORO,NC,36.126944,-79.943889,GUILFORD 27427,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27429,GREENSBORO,NC,36.0935,-79.8147,GUILFORD 27435,GREENSBORO,NC,36.0655,-79.8052,GUILFORD 27438,GREENSBORO,NC,36.1129,-79.8333,GUILFORD 27455,GREENSBORO,NC,36.1567,-79.8143,GUILFORD 27480,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27495,GREENSBORO,NC,36.0389,-79.9433,GUILFORD 27497,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27498,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27499,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27601,RALEIGH,NC,35.772701,-78.632439,WAKE 27602,RALEIGH,NC,35.7719,-78.6388,WAKE 27603,RALEIGH,NC,35.707569,-78.656265,WAKE 27604,RALEIGH,NC,35.833407,-78.579949,WAKE 27605,RALEIGH,NC,35.790795,-78.653025,WAKE 27606,RALEIGH,NC,35.764499,-78.711189,WAKE 27607,RALEIGH,NC,35.801385,-78.687747,WAKE 27608,RALEIGH,NC,35.807746,-78.646277,WAKE 27609,RALEIGH,NC,35.847989,-78.631654,WAKE 27610,RALEIGH,NC,35.766674,-78.60076,WAKE 27611,RALEIGH,NC,35.7719,-78.6388,WAKE 27612,RALEIGH,NC,35.851997,-78.684119,WAKE 27613,RALEIGH,NC,35.894932,-78.705059,WAKE 27614,RALEIGH,NC,35.945711,-78.643339,WAKE 27615,RALEIGH,NC,35.888744,-78.639277,WAKE 27616,RALEIGH,NC,35.8662,-78.549,WAKE 27617,RALEIGH,NC,35.9073,-78.7741,WAKE 27619,RALEIGH,NC,35.8973,-78.6338,WAKE 27620,RALEIGH,NC,35.7719,-78.6388,WAKE 27621,RALEIGH,NC,35.7719,-78.6388,WAKE 27622,RALEIGH,NC,35.8501,-78.6916,WAKE 27623,RALEIGH,NC,35.8607,-78.7928,WAKE 27624,RALEIGH,NC,35.8423,-78.6337,WAKE 27625,RALEIGH,NC,35.7719,-78.6388,WAKE 27626,RALEIGH,NC,35.7719,-78.6388,WAKE 27627,RALEIGH,NC,35.7676,-78.695,WAKE 27628,RALEIGH,NC,35.7719,-78.6388,WAKE 27629,RALEIGH,NC,35.7719,-78.6388,WAKE 27634,RALEIGH,NC,35.7719,-78.6388,WAKE 27635,RALEIGH,NC,35.7719,-78.6388,WAKE 27636,RALEIGH,NC,35.7719,-78.6388,WAKE 27640,RALEIGH,NC,35.7719,-78.6388,WAKE 27650,RALEIGH,NC,35.7719,-78.6388,WAKE 27656,RALEIGH,NC,35.8501,-78.6916,WAKE 27658,RALEIGH,NC,35.8478,-78.5965,WAKE 27661,RALEIGH,NC,35.8928,-78.56,WAKE 27668,RALEIGH,NC,35.8422,-78.6337,WAKE 27675,RALEIGH,NC,35.9025,-78.7452,WAKE 27676,RALEIGH,NC,35.9057,-78.7488,WAKE 27690,RALEIGH,NC,35.8932,-78.6251,WAKE 27695,RALEIGH,NC,35.8086,-78.7196,WAKE 27697,RALEIGH,NC,35.7719,-78.6388,WAKE 27698,RALEIGH,NC,35.7719,-78.6388,WAKE 27699,RALEIGH,NC,35.6682,-78.6618,WAKE 27701,DURHAM,NC,35.996725,-78.896613,DURHAM 27702,DURHAM,NC,35.9938,-78.8988,DURHAM 27703,DURHAM,NC,35.978122,-78.843874,DURHAM 27704,DURHAM,NC,36.038297,-78.876437,DURHAM 27705,DURHAM,NC,36.021846,-78.947776,DURHAM 27706,DURHAM,NC,36.002427,-78.937524,DURHAM 27707,DURHAM,NC,35.963076,-78.931484,DURHAM 27708,DURHAM,NC,35.9985,-78.9394,DURHAM 27710,DURHAM,NC,35.9938,-78.8988,DURHAM 27711,DURHAM,NC,35.905,-78.8785,DURHAM 27712,DURHAM,NC,36.091779,-78.929919,DURHAM 27713,DURHAM,NC,35.916105,-78.916641,DURHAM 27715,DURHAM,NC,35.9938,-78.8988,DURHAM 27717,DURHAM,NC,35.9938,-78.8988,DURHAM 27722,DURHAM,NC,36.1002,-78.9248,DURHAM 28201,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28202,CHARLOTTE,NC,35.229002,-80.841864,MECKLENBURG 28203,CHARLOTTE,NC,35.208139,-80.858279,MECKLENBURG 28204,CHARLOTTE,NC,35.213178,-80.823149,MECKLENBURG 28205,CHARLOTTE,NC,35.219951,-80.788129,MECKLENBURG 28206,CHARLOTTE,NC,35.252173,-80.826505,MECKLENBURG 28207,CHARLOTTE,NC,35.193474,-80.827248,MECKLENBURG 28208,CHARLOTTE,NC,35.235795,-80.896352,MECKLENBURG 28209,CHARLOTTE,NC,35.179629,-80.855926,MECKLENBURG 28210,CHARLOTTE,NC,35.131586,-80.857749,MECKLENBURG 28211,CHARLOTTE,NC,35.167653,-80.793244,MECKLENBURG 28212,CHARLOTTE,NC,35.190797,-80.744777,MECKLENBURG 28213,CHARLOTTE,NC,35.317868,-80.750079,MECKLENBURG 28214,CHARLOTTE,NC,35.273095,-80.95709,MECKLENBURG 28215,CHARLOTTE,NC,35.243962,-80.738669,MECKLENBURG 28216,CHARLOTTE,NC,35.283377,-80.870216,MECKLENBURG 28217,CHARLOTTE,NC,35.0972,-81.007848,MECKLENBURG 28218,CHARLOTTE,NC,35.1985,-80.7893,MECKLENBURG 28219,CHARLOTTE,NC,35.2063,-80.9419,MECKLENBURG 28220,CHARLOTTE,NC,35.1755,-80.851,MECKLENBURG 28221,CHARLOTTE,NC,35.2967,-80.7998,MECKLENBURG 28222,CHARLOTTE,NC,35.1663,-80.7959,MECKLENBURG 28223,CHARLOTTE,NC,35.3239,-80.7427,MECKLENBURG 28224,CHARLOTTE,NC,35.1503,-80.8763,MECKLENBURG 28226,CHARLOTTE,NC,35.086856,-80.816675,MECKLENBURG 28227,CHARLOTTE,NC,35.193612,-80.684634,MECKLENBURG 28228,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28229,CHARLOTTE,NC,35.2027,-80.7346,MECKLENBURG 28230,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28231,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28232,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28233,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28234,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28235,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28236,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28237,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28241,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28242,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28243,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28244,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28246,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28247,CHARLOTTE,NC,35.1034,-80.825,MECKLENBURG 28250,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28253,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28254,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28255,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28256,CHARLOTTE,NC,35.2802,-80.7656,MECKLENBURG 28258,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28260,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28262,CHARLOTTE,NC,35.272506,-80.775958,MECKLENBURG 28263,CHARLOTTE,NC,35.2101,-80.689,MECKLENBURG 28265,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28266,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28269,CHARLOTTE,NC,35.288635,-80.820941,MECKLENBURG 28270,CHARLOTTE,NC,35.135473,-80.766872,MECKLENBURG 28271,CHARLOTTE,NC,35.2267,-80.8434,MECKLENBURG 28272,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28273,CHARLOTTE,NC,35.159646,-80.896673,MECKLENBURG 28274,CHARLOTTE,NC,35.1873,-80.8298,MECKLENBURG 28275,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28277,CHARLOTTE,NC,35.134486,-80.800174,MECKLENBURG 28278,CHARLOTTE,NC,35.146685,-80.960421,MECKLENBURG 28280,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28281,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28282,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28284,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28285,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28287,CHARLOTTE,NC,35.15,-80.84,MECKLENBURG 28288,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28289,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28290,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28296,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28297,CHARLOTTE,NC,35.2762,-80.8558,MECKLENBURG 28299,CHARLOTTE,NC,35.2189,-80.8122,MECKLENBURG 28301,FAYETTEVILLE,NC,35.05099,-78.842255,CUMBERLAND 28302,FAYETTEVILLE,NC,34.9677,-78.7392,CUMBERLAND 28303,FAYETTEVILLE,NC,35.084046,-78.960135,CUMBERLAND 28304,FAYETTEVILLE,NC,35.025683,-78.970494,CUMBERLAND 28305,FAYETTEVILLE,NC,35.056022,-78.904658,CUMBERLAND 28306,FAYETTEVILLE,NC,35.001874,-78.936408,CUMBERLAND 28309,FAYETTEVILLE,NC,35.0554,-78.8777,CUMBERLAND 28311,FAYETTEVILLE,NC,35.129416,-78.898217,CUMBERLAND 28312,FAYETTEVILLE,NC,35.034,-78.7926,CUMBERLAND 28314,FAYETTEVILLE,NC,35.058322,-79.007985,CUMBERLAND 28401,WILMINGTON,NC,34.225304,-77.937856,NEW HANOVER 28402,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28403,WILMINGTON,NC,34.223653,-77.886213,NEW HANOVER 28404,WILMINGTON,NC,34.2251,-77.9377,NEW HANOVER 28405,WILMINGTON,NC,34.264065,-77.852937,NEW HANOVER 28406,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28407,WILMINGTON,NC,34.1569,-77.8925,NEW HANOVER 28408,WILMINGTON,NC,34.1279,-77.8991,NEW HANOVER 28409,WILMINGTON,NC,34.166256,-77.87227,NEW HANOVER 28410,WILMINGTON,NC,34.1388,-77.9168,NEW HANOVER 28411,WILMINGTON,NC,34.2834,-77.8044,NEW HANOVER 28412,WILMINGTON,NC,34.157173,-77.914137,NEW HANOVER 28801,ASHEVILLE,NC,35.597075,-82.556533,BUNCOMBE 28802,ASHEVILLE,NC,35.594,-82.5554,BUNCOMBE 28803,ASHEVILLE,NC,35.539291,-82.518021,BUNCOMBE 28804,ASHEVILLE,NC,35.63743,-82.564625,BUNCOMBE 28805,ASHEVILLE,NC,35.600363,-82.491781,BUNCOMBE 28806,ASHEVILLE,NC,35.580814,-82.607787,BUNCOMBE 28810,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28813,ASHEVILLE,NC,35.5439,-82.5335,BUNCOMBE 28814,ASHEVILLE,NC,35.6237,-82.5545,BUNCOMBE 28815,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28816,ASHEVILLE,NC,35.5835,-82.6048,BUNCOMBE 29201,COLUMBIA,SC,34.0004,-81.033418,RICHLAND 29202,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29203,COLUMBIA,SC,34.063452,-81.026462,RICHLAND 29204,COLUMBIA,SC,34.026037,-81.004647,RICHLAND 29205,COLUMBIA,SC,33.990309,-80.999731,RICHLAND 29206,COLUMBIA,SC,34.024655,-80.953152,RICHLAND 29207,COLUMBIA,SC,34.0133,-80.9407,RICHLAND 29208,COLUMBIA,SC,33.9964,-81.0265,RICHLAND 29209,COLUMBIA,SC,33.965863,-80.935525,RICHLAND 29210,COLUMBIA,SC,34.047863,-81.11006,RICHLAND 29211,COLUMBIA,SC,34.003,-81.0322,RICHLAND 29212,COLUMBIA,SC,34.072613,-81.179617,LEXINGTON 29214,COLUMBIA,SC,33.9967,-81.0481,RICHLAND 29215,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29216,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29217,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29218,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29219,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29220,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29221,COLUMBIA,SC,34.0407,-81.0973,RICHLAND 29222,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29223,COLUMBIA,SC,34.085267,-80.91667,RICHLAND 29224,COLUMBIA,SC,34.0568,-80.8456,RICHLAND 29225,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29226,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29227,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29228,COLUMBIA,SC,33.9207,-81.0927,LEXINGTON 29229,COLUMBIA,SC,34.1434,-80.8876,RICHLAND 29230,COLUMBIA,SC,34.1402,-81.0648,RICHLAND 29240,COLUMBIA,SC,34.0298,-81.0075,RICHLAND 29250,COLUMBIA,SC,34.0001,-81.0167,RICHLAND 29260,COLUMBIA,SC,34.0125,-80.9664,RICHLAND 29290,COLUMBIA,SC,33.9641,-80.9425,RICHLAND 29292,COLUMBIA,SC,34.0062,-81.0377,RICHLAND 29301,SPARTANBURG,SC,34.935211,-81.965377,SPARTANBURG 29302,SPARTANBURG,SC,34.956283,-81.873625,SPARTANBURG 29303,SPARTANBURG,SC,34.993728,-81.957566,SPARTANBURG 29304,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29305,SPARTANBURG,SC,35.0039,-81.9702,SPARTANBURG 29306,SPARTANBURG,SC,34.9195,-81.9291,SPARTANBURG 29307,SPARTANBURG,SC,34.983,-81.8569,SPARTANBURG 29318,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29319,SPARTANBURG,SC,34.95,-81.929,SPARTANBURG 29401,CHARLESTON,SC,32.779506,-79.937069,CHARLESTON 29402,CHARLESTON,SC,32.7763,-79.9317,CHARLESTON 29403,CHARLESTON,SC,32.797575,-79.949283,CHARLESTON 29405,NORTH CHARLESTON,SC,32.851206,-79.976442,CHARLESTON 29406,CHARLESTON,SC,32.903035,-80.001053,CHARLESTON 29407,CHARLESTON,SC,32.799322,-80.005953,CHARLESTON 29409,CHARLESTON,SC,32.7763,-79.9311,CHARLESTON 29410,NORTH CHARLESTON,SC,33.0562,-80.0759,BERKELEY 29412,CHARLESTON,SC,32.732319,-79.954727,CHARLESTON 29413,CHARLESTON,SC,32.7919,-79.9314,CHARLESTON 29414,CHARLESTON,SC,32.821538,-80.056756,CHARLESTON 29415,NORTH CHARLESTON,SC,32.8672,-79.9978,CHARLESTON 29416,CHARLESTON,SC,32.8753,-80.0599,CHARLESTON 29417,CHARLESTON,SC,32.7865,-79.9923,CHARLESTON 29418,NORTH CHARLESTON,SC,32.907135,-80.055126,CHARLESTON 29419,NORTH CHARLESTON,SC,32.9169,-80.0282,CHARLESTON 29420,NORTH CHARLESTON,SC,32.933096,-80.086463,DORCHESTER 29422,CHARLESTON,SC,32.6823,-79.9575,CHARLESTON 29423,CHARLESTON,SC,32.9521,-80.0641,CHARLESTON 29424,CHARLESTON,SC,32.7836,-79.937,CHARLESTON 29425,CHARLESTON,SC,32.7848,-79.9493,CHARLESTON 29492,CHARLESTON,SC,32.962223,-79.86533,BERKELEY 29501,FLORENCE,SC,34.18375,-79.772786,FLORENCE 29502,FLORENCE,SC,34.1952,-79.8026,FLORENCE 29503,FLORENCE,SC,34.1968,-79.7729,FLORENCE 29504,FLORENCE,SC,34.1652,-79.7644,FLORENCE 29505,FLORENCE,SC,34.256368,-79.775983,FLORENCE 29506,FLORENCE,SC,34.245178,-79.794547,FLORENCE 29572,MYRTLE BEACH,SC,33.758701,-78.804448,HORRY 29575,MYRTLE BEACH,SC,33.625245,-78.995228,HORRY 29577,MYRTLE BEACH,SC,33.699363,-78.913697,HORRY 29578,MYRTLE BEACH,SC,33.6888,-78.8869,HORRY 29579,MYRTLE BEACH,SC,33.7438,-78.9361,HORRY 29587,MYRTLE BEACH,SC,33.605833,-78.973333,HORRY 29588,MYRTLE BEACH,SC,33.6742,-79.0108,HORRY 29601,GREENVILLE,SC,34.847165,-82.406049,GREENVILLE 29602,GREENVILLE,SC,34.8545,-82.4091,GREENVILLE 29603,GREENVILLE,SC,34.8499,-82.3969,GREENVILLE 29604,GREENVILLE,SC,34.8276,-82.3996,GREENVILLE 29605,GREENVILLE,SC,34.800117,-82.393218,GREENVILLE 29606,GREENVILLE,SC,34.8422,-82.3612,GREENVILLE 29607,GREENVILLE,SC,34.828507,-82.35155,GREENVILLE 29608,GREENVILLE,SC,34.8794,-82.405,GREENVILLE 29609,GREENVILLE,SC,34.892101,-82.400195,GREENVILLE 29610,GREENVILLE,SC,34.8839,-82.4697,GREENVILLE 29611,GREENVILLE,SC,34.85331,-82.449296,GREENVILLE 29612,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29613,GREENVILLE,SC,34.9231,-82.4355,GREENVILLE 29614,GREENVILLE,SC,34.9152,-82.3905,GREENVILLE 29615,GREENVILLE,SC,34.866095,-82.319815,GREENVILLE 29616,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29617,GREENVILLE,SC,34.8988,-82.4482,GREENVILLE 29621,ANDERSON,SC,34.526051,-82.630436,ANDERSON 29622,ANDERSON,SC,34.5082,-82.6498,ANDERSON 29623,ANDERSON,SC,34.5453,-82.6696,ANDERSON 29624,ANDERSON,SC,34.474807,-82.677052,ANDERSON 29625,ANDERSON,SC,34.527134,-82.70868,ANDERSON 29626,ANDERSON,SC,34.4631,-82.7546,ANDERSON 29698,GREENVILLE,SC,34.9137,-82.0978,SPARTANBURG 29801,AIKEN,SC,33.553024,-81.719429,AIKEN 29802,AIKEN,SC,33.6125,-81.7089,AIKEN 29803,AIKEN,SC,33.531868,-81.594702,AIKEN 29804,AIKEN,SC,33.5149,-81.7321,AIKEN 29805,AIKEN,SC,33.6531,-81.6301,AIKEN 29808,AIKEN,SC,33.2541,-81.6281,AIKEN 29901,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29902,BEAUFORT,SC,32.418035,-80.709026,BEAUFORT 29903,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29904,BEAUFORT,SC,32.4583,-80.7102,BEAUFORT 29905,BEAUFORT,SC,32.3502,-80.682,BEAUFORT 29906,BEAUFORT,SC,32.4454,-80.747,BEAUFORT 30003,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30006,MARIETTA,GA,33.9043,-84.468,COBB 30007,MARIETTA,GA,33.9802,-84.425,COBB 30008,MARIETTA,GA,33.8997,-84.5847,COBB 30010,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30030,DECATUR,GA,33.769883,-84.295044,DEKALB 30031,DECATUR,GA,33.775,-84.3047,DEKALB 30032,DECATUR,GA,33.740825,-84.263165,DEKALB 30033,DECATUR,GA,33.812305,-84.281918,DEKALB 30034,DECATUR,GA,33.695385,-84.248939,DEKALB 30035,DECATUR,GA,33.72784,-84.2143,DEKALB 30036,DECATUR,GA,33.772,-84.2917,DEKALB 30037,DECATUR,GA,33.7059,-84.2719,DEKALB 30042,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30043,LAWRENCEVILLE,GA,33.9967,-84.0186,GWINNETT 30044,LAWRENCEVILLE,GA,33.9256,-84.0697,GWINNETT 30045,LAWRENCEVILLE,GA,33.9427,-83.9782,GWINNETT 30046,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30049,LAWRENCEVILLE,GA,33.635376,-84.264333,GWINNETT 30060,MARIETTA,GA,33.909199,-84.564881,COBB 30061,MARIETTA,GA,33.9529,-84.5454,COBB 30062,MARIETTA,GA,34.002521,-84.463291,COBB 30063,MARIETTA,GA,33.9529,-84.5454,COBB 30064,MARIETTA,GA,33.934285,-84.607584,COBB 30065,MARIETTA,GA,33.9525,-84.55,COBB 30066,MARIETTA,GA,34.037807,-84.503817,COBB 30067,MARIETTA,GA,33.928198,-84.473251,COBB 30068,MARIETTA,GA,33.967861,-84.438549,COBB 30069,MARIETTA,GA,33.9178,-84.5212,COBB 30071,NORCROSS,GA,33.938145,-84.197158,GWINNETT 30073,DECATUR,GA,33.875377,-84.685645,DEKALB 30090,MARIETTA,GA,33.9527,-84.5489,COBB 30091,NORCROSS,GA,33.9405,-84.2078,GWINNETT 30092,NORCROSS,GA,33.967688,-84.243787,GWINNETT 30093,NORCROSS,GA,33.905964,-84.183953,GWINNETT 30301,ATLANTA,GA,33.7564,-84.3918,FULTON 30302,ATLANTA,GA,33.7493,-84.3958,FULTON 30303,ATLANTA,GA,33.752504,-84.388846,FULTON 30304,ATLANTA,GA,33.6605,-84.3858,FULTON 30305,ATLANTA,GA,33.831963,-84.385145,FULTON 30306,ATLANTA,GA,33.786027,-84.351418,FULTON 30307,ATLANTA,GA,33.769138,-84.335957,FULTON 30308,ATLANTA,GA,33.771839,-84.375744,FULTON 30309,ATLANTA,GA,33.798407,-84.388338,FULTON 30310,ATLANTA,GA,33.727849,-84.423173,FULTON 30311,ATLANTA,GA,33.722957,-84.470219,FULTON 30312,ATLANTA,GA,33.746749,-84.378125,FULTON 30313,ATLANTA,GA,33.76825,-84.39352,FULTON 30314,ATLANTA,GA,33.756103,-84.425546,FULTON 30315,ATLANTA,GA,33.705062,-84.380771,FULTON 30316,ATLANTA,GA,33.721686,-84.333913,FULTON 30317,ATLANTA,GA,33.749788,-84.31685,DEKALB 30318,ATLANTA,GA,33.786454,-84.445432,FULTON 30319,ATLANTA,GA,33.868728,-84.335091,DEKALB 30320,ATLANTA,GA,33.6377,-84.4431,FULTON 30321,ATLANTA,GA,33.7488,-84.388,FULTON 30322,ATLANTA,GA,33.7931,-84.3244,DEKALB 30324,ATLANTA,GA,33.820609,-84.354867,FULTON 30325,ATLANTA,GA,33.8007,-84.4153,FULTON 30326,ATLANTA,GA,33.848168,-84.358232,FULTON 30327,ATLANTA,GA,33.862723,-84.419966,FULTON 30328,ATLANTA,GA,33.936295,-84.381143,FULTON 30329,ATLANTA,GA,33.823555,-84.321402,DEKALB 30330,ATLANTA,GA,33.70645,-84.434735,FULTON 30331,ATLANTA,GA,33.72241,-84.520468,FULTON 30332,ATLANTA,GA,33.7782,-84.3978,FULTON 30333,ATLANTA,GA,33.8049,-84.3369,DEKALB 30334,ATLANTA,GA,33.74715,-84.388188,FULTON 30336,ATLANTA,GA,33.78534,-84.510028,FULTON 30337,ATLANTA,GA,33.644227,-84.460849,FULTON 30338,ATLANTA,GA,33.944313,-84.316529,DEKALB 30339,ATLANTA,GA,33.87125,-84.462879,FULTON 30340,ATLANTA,GA,33.896377,-84.248265,DEKALB 30341,ATLANTA,GA,33.886727,-84.286969,DEKALB 30342,ATLANTA,GA,33.884245,-84.376091,FULTON 30343,ATLANTA,GA,33.7595,-84.387,FULTON 30344,ATLANTA,GA,33.676214,-84.457292,FULTON 30345,ATLANTA,GA,33.851347,-84.286961,DEKALB 30346,ATLANTA,GA,33.926717,-84.333354,DEKALB 30347,ATLANTA,GA,33.8281,-84.3337,FULTON 30348,ATLANTA,GA,33.8345,-84.3893,FULTON 30349,ATLANTA,GA,33.605331,-84.481258,FULTON 30350,ATLANTA,GA,33.979471,-84.341146,FULTON 30353,ATLANTA,GA,33.7488,-84.388,FULTON 30354,ATLANTA,GA,33.66546,-84.387025,FULTON 30355,ATLANTA,GA,33.8365,-84.3689,FULTON 30356,ATLANTA,GA,33.9472,-84.3321,DEKALB 30357,ATLANTA,GA,33.7488,-84.388,FULTON 30358,ATLANTA,GA,33.924167,-84.378611,FULTON 30359,ATLANTA,GA,33.8374,-84.3112,DEKALB 30360,ATLANTA,GA,33.937772,-84.271645,DEKALB 30361,ATLANTA,GA,33.7488,-84.388,FULTON 30362,ATLANTA,GA,33.9021,-84.2738,DEKALB 30363,ATLANTA,GA,33.7899,-84.3955,FULTON 30364,ATLANTA,GA,33.679444,-84.439444,FULTON 30366,ATLANTA,GA,33.8956,-84.2987,DEKALB 30368,ATLANTA,GA,33.7488,-84.388,FULTON 30369,ATLANTA,GA,33.7488,-84.388,FULTON 30370,ATLANTA,GA,33.7488,-84.388,FULTON 30371,ATLANTA,GA,33.7488,-84.388,FULTON 30374,ATLANTA,GA,33.7488,-84.388,FULTON 30375,ATLANTA,GA,33.6605,-84.3858,FULTON 30376,ATLANTA,GA,33.8196,-84.3563,FULTON 30377,ATLANTA,GA,33.781,-84.4125,FULTON 30378,ATLANTA,GA,33.7408,-84.5641,FULTON 30379,ATLANTA,GA,33.7488,-84.388,FULTON 30380,ATLANTA,GA,33.6605,-84.3858,FULTON 30384,ATLANTA,GA,33.7488,-84.388,FULTON 30385,ATLANTA,GA,33.6605,-84.3858,FULTON 30386,ATLANTA,GA,33.6487,-84.3915,FULTON 30387,ATLANTA,GA,33.7488,-84.388,FULTON 30388,ATLANTA,GA,33.6487,-84.3915,FULTON 30389,ATLANTA,GA,33.7488,-84.388,FULTON 30390,ATLANTA,GA,33.7488,-84.388,FULTON 30392,ATLANTA,GA,33.7488,-84.388,FULTON 30394,ATLANTA,GA,33.7488,-84.388,FULTON 30396,ATLANTA,GA,33.6487,-84.3915,FULTON 30398,ATLANTA,GA,33.7488,-84.388,FULTON 30399,ATLANTA,GA,33.7488,-84.388,FULTON 30601,ATHENS,GA,33.976097,-83.363174,CLARKE 30602,ATHENS,GA,33.9482,-83.3745,CLARKE 30603,ATHENS,GA,33.9597,-83.3765,CLARKE 30604,ATHENS,GA,33.9496,-83.41,CLARKE 30605,ATHENS,GA,33.932097,-83.352508,CLARKE 30606,ATHENS,GA,33.946085,-83.418019,CLARKE 30607,ATHENS,GA,34.006978,-83.427761,CLARKE 30608,ATHENS,GA,33.9608,-83.378,CLARKE 30609,ATHENS,GA,33.8983,-83.3688,CLARKE 30612,ATHENS,GA,33.9013,-83.3203,CLARKE 30901,AUGUSTA,GA,33.460084,-81.972959,RICHMOND 30903,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30904,AUGUSTA,GA,33.47374,-82.013078,RICHMOND 30905,AUGUSTA,GA,33.419032,-82.139179,RICHMOND 30906,AUGUSTA,GA,33.402024,-82.038358,RICHMOND 30907,AUGUSTA,GA,33.511692,-82.099505,COLUMBIA 30909,AUGUSTA,GA,33.480932,-82.060439,RICHMOND 30911,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30912,AUGUSTA,GA,33.4719,-81.9803,RICHMOND 30913,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30914,AUGUSTA,GA,33.4695,-82.0211,RICHMOND 30916,AUGUSTA,GA,33.4213,-82.0208,RICHMOND 30917,AUGUSTA,GA,33.5167,-82.0579,COLUMBIA 30919,AUGUSTA,GA,33.4692,-82.0669,RICHMOND 30999,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 31106,ATLANTA,GA,33.7488,-84.388,FULTON 31107,ATLANTA,GA,33.7488,-84.388,FULTON 31119,ATLANTA,GA,33.8571,-84.3462,DEKALB 31120,ATLANTA,GA,33.7844,-84.3828,DEKALB 31126,ATLANTA,GA,33.8473,-84.3606,FULTON 31131,ATLANTA,GA,33.6927,-84.5109,FULTON 31136,ATLANTA,GA,33.6619,-84.6288,FULTON 31139,ATLANTA,GA,33.8705,-84.4611,FULTON 31141,ATLANTA,GA,33.8872,-84.2897,DEKALB 31145,ATLANTA,GA,33.8491,-84.2835,DEKALB 31146,ATLANTA,GA,33.9246,-84.3381,DEKALB 31150,ATLANTA,GA,33.9861,-84.3439,FULTON 31156,ATLANTA,GA,33.9605,-84.3659,FULTON 31191,ATLANTA,GA,33.7917,-84.4476,FULTON 31192,ATLANTA,GA,33.6222,-84.53,FULTON 31193,ATLANTA,GA,33.6605,-84.3858,FULTON 31195,ATLANTA,GA,33.7488,-84.388,FULTON 31196,ATLANTA,GA,33.7488,-84.388,FULTON 31197,ATLANTA,GA,33.7488,-84.388,FULTON 31198,ATLANTA,GA,33.7488,-84.388,FULTON 31199,ATLANTA,GA,33.7488,-84.388,FULTON 31201,MACON,GA,32.84386,-83.598686,BIBB 31202,MACON,GA,32.8405,-83.6325,BIBB 31203,MACON,GA,32.8405,-83.6325,BIBB 31204,MACON,GA,32.842393,-83.676634,BIBB 31205,MACON,GA,32.7501,-83.658,BIBB 31206,MACON,GA,32.780758,-83.682303,BIBB 31207,MACON,GA,32.8297,-83.651,BIBB 31208,MACON,GA,32.8405,-83.6325,BIBB 31209,MACON,GA,32.8405,-83.6325,BIBB 31210,MACON,GA,32.892565,-83.745537,BIBB 31211,MACON,GA,32.886905,-83.602062,BIBB 31212,MACON,GA,32.7509,-83.6772,BIBB 31213,MACON,GA,32.7509,-83.6772,BIBB 31216,MACON,GA,32.7333,-83.6904,BIBB 31217,MACON,GA,32.8389,-83.5538,BIBB 31220,MACON,GA,32.8626,-83.7903,BIBB 31221,MACON,GA,32.88,-83.821,BIBB 31294,MACON,GA,32.8405,-83.6325,BIBB 31295,MACON,GA,32.8405,-83.6325,BIBB 31296,MACON,GA,32.8405,-83.6325,BIBB 31297,MACON,GA,32.7032,-83.65,BIBB 31401,SAVANNAH,GA,32.067631,-81.102394,CHATHAM 31402,SAVANNAH,GA,32.0828,-81.0992,CHATHAM 31403,SAVANNAH,GA,32.0454,-81.1094,CHATHAM 31404,SAVANNAH,GA,32.044178,-81.068704,CHATHAM 31405,SAVANNAH,GA,32.039119,-81.124192,CHATHAM 31406,SAVANNAH,GA,31.988993,-81.097893,CHATHAM 31407,SAVANNAH,GA,32.148075,-81.162891,CHATHAM 31408,SAVANNAH,GA,32.109245,-81.168181,CHATHAM 31409,SAVANNAH,GA,32.002104,-81.158371,CHATHAM 31410,SAVANNAH,GA,32.016188,-80.983859,CHATHAM 31411,SAVANNAH,GA,31.926801,-81.038074,CHATHAM 31412,SAVANNAH,GA,32.0771,-81.0927,CHATHAM 31414,SAVANNAH,GA,32.0436,-81.0639,CHATHAM 31415,SAVANNAH,GA,32.0768,-81.1193,CHATHAM 31416,SAVANNAH,GA,32.005,-81.0957,CHATHAM 31418,SAVANNAH,GA,32.1137,-81.1642,CHATHAM 31419,SAVANNAH,GA,31.985149,-81.177387,CHATHAM 31420,SAVANNAH,GA,32.0722,-81.1102,CHATHAM 31421,SAVANNAH,GA,32.0873,-81.0856,CHATHAM 31601,VALDOSTA,GA,30.810578,-83.277166,LOWNDES 31602,VALDOSTA,GA,30.890268,-83.273299,LOWNDES 31603,VALDOSTA,GA,30.7493,-83.3371,LOWNDES 31604,VALDOSTA,GA,30.9504,-83.238,LOWNDES 31605,VALDOSTA,GA,30.9244,-83.2526,LOWNDES 31606,VALDOSTA,GA,30.8043,-83.2007,LOWNDES 31698,VALDOSTA,GA,30.8495,-83.2888,LOWNDES 31701,ALBANY,GA,31.567783,-84.161923,DOUGHERTY 31702,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31703,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31704,ALBANY,GA,31.550099,-84.050812,DOUGHERTY 31705,ALBANY,GA,31.550851,-84.090089,DOUGHERTY 31706,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31707,ALBANY,GA,31.578908,-84.211834,DOUGHERTY 31708,ALBANY,GA,31.5221,-84.2955,DOUGHERTY 31721,ALBANY,GA,31.547,-84.2707,DOUGHERTY 31901,COLUMBUS,GA,32.473035,-84.979456,MUSCOGEE 31902,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31903,COLUMBUS,GA,32.424513,-84.948127,MUSCOGEE 31904,COLUMBUS,GA,32.516091,-84.978475,MUSCOGEE 31906,COLUMBUS,GA,32.463819,-84.948422,MUSCOGEE 31907,COLUMBUS,GA,32.477909,-84.89799,MUSCOGEE 31908,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31909,COLUMBUS,GA,32.536913,-84.927404,MUSCOGEE 31914,COLUMBUS,GA,32.5573,-85.0045,MUSCOGEE 31917,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31993,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31997,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31998,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31999,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 32080,SAINT AUGUSTINE,FL,29.8364,-81.2745,SAINT JOHNS 32084,SAINT AUGUSTINE,FL,29.880457,-81.298367,SAINT JOHNS 32085,SAINT AUGUSTINE,FL,29.8914,-81.3167,SAINT JOHNS 32086,SAINT AUGUSTINE,FL,29.828514,-81.323734,SAINT JOHNS 32092,SAINT AUGUSTINE,FL,29.947511,-81.526379,SAINT JOHNS 32095,SAINT AUGUSTINE,FL,29.905726,-81.347626,SAINT JOHNS 32099,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32114,DAYTONA BEACH,FL,29.201168,-81.037071,VOLUSIA 32115,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32116,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32117,DAYTONA BEACH,FL,29.236006,-81.054698,VOLUSIA 32118,DAYTONA BEACH,FL,29.221874,-81.009469,VOLUSIA 32119,DAYTONA BEACH,FL,29.152526,-81.022142,VOLUSIA 32120,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32121,DAYTONA BEACH,FL,29.165556,-81.004722,VOLUSIA 32122,DAYTONA BEACH,FL,29.1479,-81.03,VOLUSIA 32124,DAYTONA BEACH,FL,29.122456,-81.106746,VOLUSIA 32125,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32126,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32198,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32201,JACKSONVILLE,FL,30.3294,-81.6613,DUVAL 32202,JACKSONVILLE,FL,30.329882,-81.651672,DUVAL 32203,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32204,JACKSONVILLE,FL,30.318899,-81.685445,DUVAL 32205,JACKSONVILLE,FL,30.317236,-81.722034,DUVAL 32206,JACKSONVILLE,FL,30.351073,-81.648769,DUVAL 32207,JACKSONVILLE,FL,30.290766,-81.63205,DUVAL 32208,JACKSONVILLE,FL,30.393664,-81.688939,DUVAL 32209,JACKSONVILLE,FL,30.35841,-81.691974,DUVAL 32210,JACKSONVILLE,FL,30.268743,-81.747312,DUVAL 32211,JACKSONVILLE,FL,30.348034,-81.588248,DUVAL 32212,JACKSONVILLE,FL,30.220905,-81.68848,DUVAL 32214,JACKSONVILLE,FL,30.2128,-81.6867,DUVAL 32215,JACKSONVILLE,FL,30.23295,-81.663142,DUVAL 32216,JACKSONVILLE,FL,30.293907,-81.547387,DUVAL 32217,JACKSONVILLE,FL,30.240678,-81.616956,DUVAL 32218,JACKSONVILLE,FL,30.45067,-81.662631,DUVAL 32219,JACKSONVILLE,FL,30.403365,-81.763451,DUVAL 32220,JACKSONVILLE,FL,30.329003,-81.817572,DUVAL 32221,JACKSONVILLE,FL,30.283707,-81.820231,DUVAL 32222,JACKSONVILLE,FL,30.229176,-81.813081,DUVAL 32223,JACKSONVILLE,FL,30.154817,-81.629961,DUVAL 32224,JACKSONVILLE,FL,30.303076,-81.440427,DUVAL 32225,JACKSONVILLE,FL,30.350968,-81.506092,DUVAL 32226,JACKSONVILLE,FL,30.473485,-81.544808,DUVAL 32227,JACKSONVILLE,FL,30.388275,-81.405424,DUVAL 32228,JACKSONVILLE,FL,30.383889,-81.415278,DUVAL 32229,JACKSONVILLE,FL,30.4937,-81.6715,DUVAL 32230,JACKSONVILLE,FL,30.3268,-81.7339,DUVAL 32231,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32232,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32234,JACKSONVILLE,FL,30.229562,-81.978345,DUVAL 32235,JACKSONVILLE,FL,30.2908,-81.6316,DUVAL 32236,JACKSONVILLE,FL,30.3118,-81.7379,DUVAL 32237,JACKSONVILLE,FL,30.2006,-81.6157,DUVAL 32238,JACKSONVILLE,FL,30.2469,-81.7387,DUVAL 32239,JACKSONVILLE,FL,30.3521,-81.5688,DUVAL 32241,JACKSONVILLE,FL,30.1535,-81.6326,DUVAL 32244,JACKSONVILLE,FL,30.223137,-81.75558,DUVAL 32245,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32246,JACKSONVILLE,FL,30.297,-81.516,DUVAL 32247,JACKSONVILLE,FL,30.2937,-81.627,DUVAL 32254,JACKSONVILLE,FL,30.3357,-81.73,DUVAL 32255,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32256,JACKSONVILLE,FL,30.221356,-81.557139,DUVAL 32257,JACKSONVILLE,FL,30.192703,-81.605042,DUVAL 32258,JACKSONVILLE,FL,30.145944,-81.573864,DUVAL 32260,JACKSONVILLE,FL,30.0759,-81.5803,SAINT JOHNS 32267,JACKSONVILLE,FL,30.3826,-81.4199,DUVAL 32277,JACKSONVILLE,FL,30.3661,-81.5888,DUVAL 32290,JACKSONVILLE,FL,30.3318,-81.6555,DUVAL 32301,TALLAHASSEE,FL,30.428563,-84.259337,LEON 32302,TALLAHASSEE,FL,30.4418,-84.284,LEON 32303,TALLAHASSEE,FL,30.487433,-84.318946,LEON 32304,TALLAHASSEE,FL,30.447752,-84.321132,LEON 32305,TALLAHASSEE,FL,30.348,-84.2844,LEON 32306,TALLAHASSEE,FL,30.442152,-84.295594,LEON 32307,TALLAHASSEE,FL,30.426667,-84.285278,LEON 32308,TALLAHASSEE,FL,30.507725,-84.206903,LEON 32309,TALLAHASSEE,FL,30.594444,-84.041389,LEON 32310,TALLAHASSEE,FL,30.399125,-84.3298,LEON 32311,TALLAHASSEE,FL,30.415625,-84.186995,LEON 32312,TALLAHASSEE,FL,30.518474,-84.262708,LEON 32313,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32314,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32315,TALLAHASSEE,FL,30.4648,-84.2854,LEON 32316,TALLAHASSEE,FL,30.437,-84.2979,LEON 32317,TALLAHASSEE,FL,30.4675,-84.1231,LEON 32318,TALLAHASSEE,FL,30.5567,-84.1766,LEON 32395,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32399,TALLAHASSEE,FL,30.4328,-84.2671,LEON 32401,PANAMA CITY,FL,30.160624,-85.649403,BAY 32402,PANAMA CITY,FL,30.1558,-85.6629,BAY 32403,PANAMA CITY,FL,30.058252,-85.576225,BAY 32404,PANAMA CITY,FL,30.165291,-85.576264,BAY 32405,PANAMA CITY,FL,30.194949,-85.672686,BAY 32406,PANAMA CITY,FL,30.1786,-85.6841,BAY 32408,PANAMA CITY,FL,30.160859,-85.763628,BAY 32409,PANAMA CITY,FL,30.310679,-85.644536,BAY 32411,PANAMA CITY,FL,30.1516,-85.7246,BAY 32412,PANAMA CITY,FL,30.1586,-85.6602,BAY 32417,PANAMA CITY,FL,30.176389,-85.805556,BAY 32501,PENSACOLA,FL,30.422282,-87.224763,ESCAMBIA 32502,PENSACOLA,FL,30.4126,-87.2112,ESCAMBIA 32503,PENSACOLA,FL,30.456406,-87.210432,ESCAMBIA 32504,PENSACOLA,FL,30.487299,-87.187242,ESCAMBIA 32505,PENSACOLA,FL,30.448069,-87.258937,ESCAMBIA 32506,PENSACOLA,FL,30.412912,-87.309185,ESCAMBIA 32507,PENSACOLA,FL,30.373707,-87.312558,ESCAMBIA 32508,PENSACOLA,FL,30.351063,-87.274945,ESCAMBIA 32509,PENSACOLA,FL,30.4628,-87.3381,ESCAMBIA 32511,PENSACOLA,FL,30.4066,-87.2886,ESCAMBIA 32512,PENSACOLA,FL,30.3969,-87.3013,ESCAMBIA 32513,PENSACOLA,FL,30.4441,-87.215,ESCAMBIA 32514,PENSACOLA,FL,30.524148,-87.216723,ESCAMBIA 32516,PENSACOLA,FL,30.426,-87.2876,ESCAMBIA 32520,PENSACOLA,FL,30.4123,-87.2035,ESCAMBIA 32521,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32522,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32523,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32524,PENSACOLA,FL,30.498,-87.1961,ESCAMBIA 32526,PENSACOLA,FL,30.475593,-87.317925,ESCAMBIA 32534,PENSACOLA,FL,30.530065,-87.279324,ESCAMBIA 32559,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32590,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32591,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32592,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32601,GAINESVILLE,FL,29.645029,-82.310046,ALACHUA 32602,GAINESVILLE,FL,29.6513,-82.325,ALACHUA 32603,GAINESVILLE,FL,29.651484,-82.349286,ALACHUA 32604,GAINESVILLE,FL,29.6526,-82.3437,ALACHUA 32605,GAINESVILLE,FL,29.678458,-82.36794,ALACHUA 32606,GAINESVILLE,FL,29.695393,-82.402324,ALACHUA 32607,GAINESVILLE,FL,29.645618,-82.403252,ALACHUA 32608,GAINESVILLE,FL,29.613204,-82.387282,ALACHUA 32609,GAINESVILLE,FL,29.70053,-82.308032,ALACHUA 32610,GAINESVILLE,FL,29.6396,-82.3439,ALACHUA 32611,GAINESVILLE,FL,29.644148,-82.35092,ALACHUA 32612,GAINESVILLE,FL,29.6093,-82.3721,ALACHUA 32613,GAINESVILLE,FL,29.6646,-82.3244,ALACHUA 32614,GAINESVILLE,FL,29.6771,-82.3717,ALACHUA 32627,GAINESVILLE,FL,29.6462,-82.3261,ALACHUA 32635,GAINESVILLE,FL,29.7077,-82.3979,ALACHUA 32641,GAINESVILLE,FL,29.6434,-82.2805,ALACHUA 32653,GAINESVILLE,FL,29.7227,-82.3918,ALACHUA 32801,ORLANDO,FL,28.539882,-81.372668,ORANGE 32802,ORLANDO,FL,28.5453,-81.3783,ORANGE 32803,ORLANDO,FL,28.555897,-81.353462,ORANGE 32804,ORLANDO,FL,28.576547,-81.391955,ORANGE 32805,ORLANDO,FL,28.5302,-81.404516,ORANGE 32806,ORLANDO,FL,28.513958,-81.356968,ORANGE 32807,ORLANDO,FL,28.544924,-81.305274,ORANGE 32808,ORLANDO,FL,28.580463,-81.44758,ORANGE 32809,ORLANDO,FL,28.461916,-81.381751,ORANGE 32810,ORLANDO,FL,28.622183,-81.425852,ORANGE 32811,ORLANDO,FL,28.516082,-81.442014,ORANGE 32812,ORLANDO,FL,28.49981,-81.328816,ORANGE 32814,ORLANDO,FL,28.5675,-81.333,ORANGE 32815,ORLANDO,FL,28.498821,-80.58248,BREVARD 32816,ORLANDO,FL,28.6049,-81.205,ORANGE 32817,ORLANDO,FL,28.590251,-81.253537,ORANGE 32818,ORLANDO,FL,28.580147,-81.484618,ORANGE 32819,ORLANDO,FL,28.467258,-81.452484,ORANGE 32820,ORLANDO,FL,28.578256,-81.110628,ORANGE 32821,ORLANDO,FL,28.395724,-81.466602,ORANGE 32822,ORLANDO,FL,28.504765,-81.293874,ORANGE 32824,ORLANDO,FL,28.393157,-81.362187,ORANGE 32825,ORLANDO,FL,28.546865,-81.257081,ORANGE 32826,ORLANDO,FL,28.582601,-81.190705,ORANGE 32827,ORLANDO,FL,28.43168,-81.342979,ORANGE 32828,ORLANDO,FL,28.552297,-81.179489,ORANGE 32829,ORLANDO,FL,28.484877,-81.260778,ORANGE 32830,ORLANDO,FL,28.369378,-81.519034,ORANGE 32831,ORLANDO,FL,28.488229,-81.191768,ORANGE 32832,ORLANDO,FL,28.377428,-81.188807,ORANGE 32833,ORLANDO,FL,28.531797,-81.098129,ORANGE 32834,ORLANDO,FL,28.538,-81.3794,ORANGE 32835,ORLANDO,FL,28.528885,-81.478663,ORANGE 32836,ORLANDO,FL,28.460842,-81.49564,ORANGE 32837,ORLANDO,FL,28.394861,-81.417882,ORANGE 32839,ORLANDO,FL,28.487102,-81.408162,ORANGE 32853,ORLANDO,FL,28.5515,-81.3644,ORANGE 32854,ORLANDO,FL,28.5665,-81.3894,ORANGE 32855,ORLANDO,FL,28.538,-81.3794,ORANGE 32856,ORLANDO,FL,28.5109,-81.3727,ORANGE 32857,ORLANDO,FL,28.538,-81.3794,ORANGE 32858,ORLANDO,FL,28.5527,-81.4498,ORANGE 32859,ORLANDO,FL,28.4521,-81.3644,ORANGE 32860,ORLANDO,FL,28.6218,-81.4392,ORANGE 32861,ORLANDO,FL,28.538,-81.3794,ORANGE 32862,ORLANDO,FL,28.483,-81.3299,ORANGE 32867,ORLANDO,FL,28.5675,-81.253,ORANGE 32868,ORLANDO,FL,28.583,-81.476,ORANGE 32869,ORLANDO,FL,28.5901,-81.4936,ORANGE 32872,ORLANDO,FL,28.5148,-81.2882,ORANGE 32877,ORLANDO,FL,28.5416,-81.3739,ORANGE 32878,ORLANDO,FL,28.538,-81.3794,ORANGE 32885,ORLANDO,FL,28.5382,-81.3795,ORANGE 32886,ORLANDO,FL,28.538,-81.3794,ORANGE 32887,ORLANDO,FL,28.3804,-81.4704,ORANGE 32890,ORLANDO,FL,28.4611,-81.3845,ORANGE 32891,ORLANDO,FL,28.538,-81.3794,ORANGE 32893,ORLANDO,FL,28.4286,-81.3097,ORANGE 32896,ORLANDO,FL,28.3212,-81.2299,ORANGE 32897,ORLANDO,FL,28.538,-81.3794,ORANGE 32898,ORLANDO,FL,28.538,-81.3794,ORANGE 32899,ORLANDO,FL,28.6138,-80.6774,BREVARD 32901,MELBOURNE,FL,28.069132,-80.620015,BREVARD 32902,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32904,MELBOURNE,FL,28.073177,-80.668577,BREVARD 32905,PALM BAY,FL,28.014605,-80.599087,BREVARD 32906,PALM BAY,FL,28.0449,-80.6053,BREVARD 32907,PALM BAY,FL,28.016849,-80.673889,BREVARD 32908,PALM BAY,FL,27.981636,-80.689426,BREVARD 32909,PALM BAY,FL,27.96936,-80.647327,BREVARD 32910,PALM BAY,FL,28.0341,-80.5888,BREVARD 32911,PALM BAY,FL,28.0775,-80.6266,BREVARD 32912,MELBOURNE,FL,28.0775,-80.6266,BREVARD 32919,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32934,MELBOURNE,FL,28.136822,-80.691683,BREVARD 32935,MELBOURNE,FL,28.138385,-80.652353,BREVARD 32936,MELBOURNE,FL,28.1307,-80.6296,BREVARD 32940,MELBOURNE,FL,28.206136,-80.684959,BREVARD 32941,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32960,VERO BEACH,FL,27.632985,-80.403075,INDIAN RIVER 32961,VERO BEACH,FL,27.6383,-80.3975,INDIAN RIVER 32962,VERO BEACH,FL,27.588486,-80.392251,INDIAN RIVER 32963,VERO BEACH,FL,27.653623,-80.360916,INDIAN RIVER 32964,VERO BEACH,FL,27.6515,-80.3576,INDIAN RIVER 32965,VERO BEACH,FL,27.7257,-80.3893,INDIAN RIVER 32966,VERO BEACH,FL,27.637214,-80.47939,INDIAN RIVER 32967,VERO BEACH,FL,27.697223,-80.441617,INDIAN RIVER 32968,VERO BEACH,FL,27.59993,-80.438223,INDIAN RIVER 32969,VERO BEACH,FL,27.639,-80.3989,INDIAN RIVER 33002,HIALEAH,FL,25.905,-80.3049,MIAMI-DADE 33010,HIALEAH,FL,25.832536,-80.280801,MIAMI-DADE 33011,HIALEAH,FL,25.8248,-80.2835,MIAMI-DADE 33012,HIALEAH,FL,25.865395,-80.3059,MIAMI-DADE 33013,HIALEAH,FL,25.859351,-80.272533,MIAMI-DADE 33014,HIALEAH,FL,25.896349,-80.306255,MIAMI-DADE 33015,HIALEAH,FL,25.938841,-80.316545,MIAMI-DADE 33016,HIALEAH,FL,25.880262,-80.33681,MIAMI-DADE 33017,HIALEAH,FL,25.978889,-80.201667,MIAMI-DADE 33018,HIALEAH,FL,25.911667,-80.325,MIAMI-DADE 33019,HOLLYWOOD,FL,26.007011,-80.121931,BROWARD 33020,HOLLYWOOD,FL,26.016091,-80.15166,BROWARD 33021,HOLLYWOOD,FL,26.021836,-80.189085,BROWARD 33022,HOLLYWOOD,FL,26.0131,-80.1435,BROWARD 33023,HOLLYWOOD,FL,25.987516,-80.216035,BROWARD 33024,HOLLYWOOD,FL,26.024273,-80.240183,BROWARD 33025,HOLLYWOOD,FL,25.992061,-80.271236,BROWARD 33027,HOLLYWOOD,FL,25.997449,-80.32484,BROWARD 33028,HOLLYWOOD,FL,26.024804,-80.330797,BROWARD 33029,HOLLYWOOD,FL,26.01375,-80.428407,BROWARD 33030,HOMESTEAD,FL,25.476639,-80.483853,MIAMI-DADE 33031,HOMESTEAD,FL,25.532314,-80.507463,MIAMI-DADE 33032,HOMESTEAD,FL,25.521191,-80.40918,MIAMI-DADE 33033,HOMESTEAD,FL,25.490576,-80.438014,MIAMI-DADE 33034,HOMESTEAD,FL,25.396332,-80.548438,MIAMI-DADE 33035,HOMESTEAD,FL,25.457338,-80.457153,MIAMI-DADE 33039,HOMESTEAD,FL,25.499088,-80.390513,MIAMI-DADE 33060,POMPANO BEACH,FL,26.231529,-80.12346,BROWARD 33061,POMPANO BEACH,FL,26.2594,-80.1147,BROWARD 33062,POMPANO BEACH,FL,26.234314,-80.094133,BROWARD 33063,POMPANO BEACH,FL,26.249221,-80.211483,BROWARD 33065,POMPANO BEACH,FL,26.271403,-80.255578,BROWARD 33066,POMPANO BEACH,FL,26.254237,-80.177878,BROWARD 33067,POMPANO BEACH,FL,26.305134,-80.22188,BROWARD 33068,POMPANO BEACH,FL,26.216021,-80.22054,BROWARD 33069,POMPANO BEACH,FL,26.228817,-80.163486,BROWARD 33071,POMPANO BEACH,FL,26.243515,-80.260085,BROWARD 33072,POMPANO BEACH,FL,26.2327,-80.0925,BROWARD 33073,POMPANO BEACH,FL,26.299693,-80.180966,BROWARD 33075,POMPANO BEACH,FL,26.2434,-80.266,BROWARD 33076,POMPANO BEACH,FL,26.291902,-80.248086,BROWARD 33077,POMPANO BEACH,FL,26.2392,-80.2517,BROWARD 33081,HOLLYWOOD,FL,26.0174,-80.2036,BROWARD 33083,HOLLYWOOD,FL,26.1499,-80.2314,BROWARD 33084,HOLLYWOOD,FL,26.002778,-80.224167,BROWARD 33090,HOMESTEAD,FL,25.468333,-80.477778,MIAMI-DADE 33092,HOMESTEAD,FL,25.517222,-80.421667,MIAMI-DADE 33097,POMPANO BEACH,FL,26.3173,-80.1808,BROWARD 33101,MIAMI,FL,25.779,-80.1982,MIAMI-DADE 33102,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33107,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33109,MIAMI BEACH,FL,25.7611,-80.1403,MIAMI-DADE 33110,MIAMI,FL,25.8519,-80.2073,MIAMI-DADE 33111,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33112,MIAMI,FL,25.7968,-80.3826,MIAMI-DADE 33114,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33116,MIAMI,FL,25.6719,-80.3746,MIAMI-DADE 33119,MIAMI BEACH,FL,25.7836,-80.1324,MIAMI-DADE 33121,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33122,MIAMI,FL,25.7911,-80.320733,MIAMI-DADE 33124,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33125,MIAMI,FL,25.782547,-80.234118,MIAMI-DADE 33126,MIAMI,FL,25.776255,-80.291932,MIAMI-DADE 33127,MIAMI,FL,25.814344,-80.205121,MIAMI-DADE 33128,MIAMI,FL,25.775612,-80.208858,MIAMI-DADE 33129,MIAMI,FL,25.755926,-80.201301,MIAMI-DADE 33130,MIAMI,FL,25.767197,-80.205888,MIAMI-DADE 33131,MIAMI,FL,25.762852,-80.189506,MIAMI-DADE 33132,MIAMI,FL,25.786712,-80.179996,MIAMI-DADE 33133,MIAMI,FL,25.732251,-80.243639,MIAMI-DADE 33134,MIAMI,FL,25.755582,-80.269576,MIAMI-DADE 33135,MIAMI,FL,25.766391,-80.231746,MIAMI-DADE 33136,MIAMI,FL,25.786385,-80.204232,MIAMI-DADE 33137,MIAMI,FL,25.815648,-80.189663,MIAMI-DADE 33138,MIAMI,FL,25.850208,-80.18526,MIAMI-DADE 33139,MIAMI BEACH,FL,25.785179,-80.136378,MIAMI-DADE 33140,MIAMI BEACH,FL,25.819505,-80.127921,MIAMI-DADE 33141,MIAMI BEACH,FL,25.852384,-80.133578,MIAMI-DADE 33142,MIAMI,FL,25.812966,-80.232023,MIAMI-DADE 33143,MIAMI,FL,25.700252,-80.301408,MIAMI-DADE 33144,MIAMI,FL,25.762563,-80.309631,MIAMI-DADE 33145,MIAMI,FL,25.752648,-80.235134,MIAMI-DADE 33146,MIAMI,FL,25.720089,-80.274649,MIAMI-DADE 33147,MIAMI,FL,25.850675,-80.236558,MIAMI-DADE 33148,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33150,MIAMI,FL,25.851214,-80.206968,MIAMI-DADE 33151,MIAMI,FL,25.8315,-80.2098,MIAMI-DADE 33152,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33153,MIAMI,FL,25.8655,-80.1936,MIAMI-DADE 33154,MIAMI BEACH,FL,25.879094,-80.127055,MIAMI-DADE 33155,MIAMI,FL,25.7392,-80.31032,MIAMI-DADE 33156,MIAMI,FL,25.66767,-80.308535,MIAMI-DADE 33157,MIAMI,FL,25.604384,-80.352473,MIAMI-DADE 33158,MIAMI,FL,25.636433,-80.318703,MIAMI-DADE 33159,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33161,MIAMI,FL,25.893806,-80.182034,MIAMI-DADE 33162,MIAMI,FL,25.92807,-80.177238,MIAMI-DADE 33163,MIAMI,FL,25.948056,-80.150833,MIAMI-DADE 33164,MIAMI,FL,25.928889,-80.178333,MIAMI-DADE 33165,MIAMI,FL,25.735353,-80.359084,MIAMI-DADE 33166,MIAMI,FL,25.817473,-80.29902,MIAMI-DADE 33167,MIAMI,FL,25.885605,-80.229168,MIAMI-DADE 33168,MIAMI,FL,25.890232,-80.210106,MIAMI-DADE 33169,MIAMI,FL,25.944083,-80.21436,MIAMI-DADE 33170,MIAMI,FL,25.558847,-80.3981,MIAMI-DADE 33172,MIAMI,FL,25.773523,-80.357232,MIAMI-DADE 33173,MIAMI,FL,25.699242,-80.361824,MIAMI-DADE 33174,MIAMI,FL,25.762779,-80.361128,MIAMI-DADE 33175,MIAMI,FL,25.733677,-80.408226,MIAMI-DADE 33176,MIAMI,FL,25.657449,-80.362667,MIAMI-DADE 33177,MIAMI,FL,25.593255,-80.39377,MIAMI-DADE 33178,MIAMI,FL,25.814079,-80.354925,MIAMI-DADE 33179,MIAMI,FL,25.957095,-80.181382,MIAMI-DADE 33180,MIAMI,FL,25.961902,-80.139447,MIAMI-DADE 33181,MIAMI,FL,25.896548,-80.160329,MIAMI-DADE 33182,MIAMI,FL,25.787678,-80.416643,MIAMI-DADE 33183,MIAMI,FL,25.699977,-80.412969,MIAMI-DADE 33184,MIAMI,FL,25.757382,-80.402997,MIAMI-DADE 33185,MIAMI,FL,25.718082,-80.437366,MIAMI-DADE 33186,MIAMI,FL,25.669437,-80.408501,MIAMI-DADE 33187,MIAMI,FL,25.597112,-80.47137,MIAMI-DADE 33188,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33189,MIAMI,FL,25.57431,-80.350851,MIAMI-DADE 33190,MIAMI,FL,25.560935,-80.35381,MIAMI-DADE 33193,MIAMI,FL,25.696365,-80.440087,MIAMI-DADE 33194,MIAMI,FL,25.7576,-80.4505,MIAMI-DADE 33195,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33196,MIAMI,FL,25.661502,-80.441031,MIAMI-DADE 33197,MIAMI,FL,25.558333,-80.381667,MIAMI-DADE 33199,MIAMI,FL,25.7574,-80.3754,MIAMI-DADE 33222,MIAMI,FL,37.0625,-95.677068,MIAMI-DADE 33231,MIAMI,FL,25.7299,-80.3013,MIAMI-DADE 33233,MIAMI,FL,25.7272,-80.2585,MIAMI-DADE 33234,MIAMI,FL,25.7299,-80.2426,MIAMI-DADE 33238,MIAMI,FL,25.8518,-80.1944,MIAMI-DADE 33239,MIAMI BEACH,FL,25.7902,-80.1424,MIAMI-DADE 33242,MIAMI,FL,25.8059,-80.224,MIAMI-DADE 33243,MIAMI,FL,25.7057,-80.2902,MIAMI-DADE 33245,MIAMI,FL,25.7481,-80.2877,MIAMI-DADE 33247,MIAMI,FL,25.8348,-80.2415,MIAMI-DADE 33255,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33256,MIAMI,FL,25.666667,-80.308333,MIAMI-DADE 33257,MIAMI,FL,25.6113,-80.3486,MIAMI-DADE 33261,MIAMI,FL,25.9075,-80.1583,MIAMI-DADE 33265,MIAMI,FL,25.726389,-80.355556,MIAMI-DADE 33266,MIAMI,FL,25.821944,-80.289722,MIAMI-DADE 33269,MIAMI,FL,25.9449,-80.2057,MIAMI-DADE 33280,MIAMI,FL,25.9335,-80.1366,MIAMI-DADE 33283,MIAMI,FL,25.6933,-80.3821,MIAMI-DADE 33296,MIAMI,FL,25.657,-80.3592,MIAMI-DADE 33299,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33301,FORT LAUDERDALE,FL,26.121561,-80.128778,BROWARD 33302,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33303,FORT LAUDERDALE,FL,26.1186,-80.1296,BROWARD 33304,FORT LAUDERDALE,FL,26.137908,-80.125283,BROWARD 33305,FORT LAUDERDALE,FL,26.153115,-80.127768,BROWARD 33306,FORT LAUDERDALE,FL,26.165091,-80.112572,BROWARD 33307,FORT LAUDERDALE,FL,26.171944,-80.132222,BROWARD 33308,FORT LAUDERDALE,FL,26.187883,-80.107674,BROWARD 33309,FORT LAUDERDALE,FL,26.181698,-80.174624,BROWARD 33310,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33311,FORT LAUDERDALE,FL,26.142104,-80.172786,BROWARD 33312,FORT LAUDERDALE,FL,26.096819,-80.181038,BROWARD 33313,FORT LAUDERDALE,FL,26.151145,-80.223142,BROWARD 33314,FORT LAUDERDALE,FL,26.068199,-80.225034,BROWARD 33315,FORT LAUDERDALE,FL,26.098885,-80.15408,BROWARD 33316,FORT LAUDERDALE,FL,26.104193,-80.125951,BROWARD 33317,FORT LAUDERDALE,FL,26.113536,-80.224272,BROWARD 33318,FORT LAUDERDALE,FL,26.1278,-80.2502,BROWARD 33319,FORT LAUDERDALE,FL,26.181153,-80.225413,BROWARD 33320,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33321,FORT LAUDERDALE,FL,26.212072,-80.264356,BROWARD 33322,FORT LAUDERDALE,FL,26.151923,-80.271954,BROWARD 33323,FORT LAUDERDALE,FL,26.164641,-80.307583,BROWARD 33324,FORT LAUDERDALE,FL,26.113639,-80.271019,BROWARD 33325,FORT LAUDERDALE,FL,26.10862,-80.321952,BROWARD 33326,FORT LAUDERDALE,FL,26.114338,-80.369941,BROWARD 33327,FORT LAUDERDALE,FL,26.097291,-80.40645,BROWARD 33328,FORT LAUDERDALE,FL,26.060708,-80.272022,BROWARD 33329,FORT LAUDERDALE,FL,26.1219,-80.1436,BROWARD 33330,FORT LAUDERDALE,FL,26.055479,-80.312907,BROWARD 33331,FORT LAUDERDALE,FL,26.044366,-80.364533,BROWARD 33332,FORT LAUDERDALE,FL,26.054436,-80.41299,BROWARD 33334,FORT LAUDERDALE,FL,26.181514,-80.135511,BROWARD 33335,FORT LAUDERDALE,FL,26.1824,-80.1347,BROWARD 33336,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33337,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33338,FORT LAUDERDALE,FL,26.1367,-80.1231,BROWARD 33339,FORT LAUDERDALE,FL,26.1646,-80.1141,BROWARD 33340,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33345,FORT LAUDERDALE,FL,26.150278,-80.224444,BROWARD 33346,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33348,FORT LAUDERDALE,FL,26.1692,-80.1022,BROWARD 33349,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33351,FORT LAUDERDALE,FL,26.177148,-80.273376,BROWARD 33355,FORT LAUDERDALE,FL,26.112,-80.3037,BROWARD 33359,FORT LAUDERDALE,FL,26.1814,-80.2276,BROWARD 33388,FORT LAUDERDALE,FL,26.117586,-80.250587,BROWARD 33394,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33401,WEST PALM BEACH,FL,26.713956,-80.065874,PALM BEACH 33402,WEST PALM BEACH,FL,26.7131,-80.058,PALM BEACH 33403,WEST PALM BEACH,FL,26.803187,-80.073078,PALM BEACH 33404,WEST PALM BEACH,FL,26.781343,-80.06852,PALM BEACH 33405,WEST PALM BEACH,FL,26.669968,-80.058234,PALM BEACH 33406,WEST PALM BEACH,FL,26.655582,-80.093026,PALM BEACH 33407,WEST PALM BEACH,FL,26.749154,-80.072492,PALM BEACH 33409,WEST PALM BEACH,FL,26.713218,-80.096347,PALM BEACH 33411,WEST PALM BEACH,FL,26.700539,-80.209898,PALM BEACH 33412,WEST PALM BEACH,FL,26.805526,-80.248203,PALM BEACH 33413,WEST PALM BEACH,FL,26.67616,-80.140474,PALM BEACH 33414,WEST PALM BEACH,FL,26.662707,-80.25299,PALM BEACH 33415,WEST PALM BEACH,FL,26.655722,-80.127966,PALM BEACH 33416,WEST PALM BEACH,FL,26.715,-80.0536,PALM BEACH 33417,WEST PALM BEACH,FL,26.713006,-80.124764,PALM BEACH 33419,WEST PALM BEACH,FL,26.7819,-80.0927,PALM BEACH 33420,WEST PALM BEACH,FL,26.8555,-80.086,PALM BEACH 33421,WEST PALM BEACH,FL,26.708,-80.2308,PALM BEACH 33422,WEST PALM BEACH,FL,26.690833,-80.120278,PALM BEACH 33424,BOYNTON BEACH,FL,26.525,-80.0666,PALM BEACH 33425,BOYNTON BEACH,FL,26.5283,-80.0643,PALM BEACH 33426,BOYNTON BEACH,FL,26.51747,-80.083427,PALM BEACH 33427,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33428,BOCA RATON,FL,26.344605,-80.210942,PALM BEACH 33429,BOCA RATON,FL,26.352,-80.0847,PALM BEACH 33431,BOCA RATON,FL,26.379929,-80.097488,PALM BEACH 33432,BOCA RATON,FL,26.34619,-80.084421,PALM BEACH 33433,BOCA RATON,FL,26.346409,-80.156399,PALM BEACH 33434,BOCA RATON,FL,26.383909,-80.174858,PALM BEACH 33435,BOYNTON BEACH,FL,26.529161,-80.06424,PALM BEACH 33436,BOYNTON BEACH,FL,26.526862,-80.106423,PALM BEACH 33437,BOYNTON BEACH,FL,26.531187,-80.141812,PALM BEACH 33444,DELRAY BEACH,FL,26.456445,-80.079321,PALM BEACH 33445,DELRAY BEACH,FL,26.456359,-80.105397,PALM BEACH 33446,DELRAY BEACH,FL,26.451717,-80.158016,PALM BEACH 33447,DELRAY BEACH,FL,26.4685,-80.0718,PALM BEACH 33448,DELRAY BEACH,FL,26.4567,-80.1378,PALM BEACH 33449,LAKE WORTH,FL,26.6159015,-80.056986,PALM BEACH 33454,LAKE WORTH,FL,26.6155,-80.1469,PALM BEACH 33460,LAKE WORTH,FL,26.618207,-80.055996,PALM BEACH 33461,LAKE WORTH,FL,26.62316,-80.094573,PALM BEACH 33462,LAKE WORTH,FL,26.576766,-80.077264,PALM BEACH 33463,LAKE WORTH,FL,26.609609,-80.130503,PALM BEACH 33464,BOCA RATON,FL,26.5844,-80.0526,PALM BEACH 33465,LAKE WORTH,FL,26.5844,-80.0526,PALM BEACH 33466,LAKE WORTH,FL,26.618,-80.1083,PALM BEACH 33467,LAKE WORTH,FL,26.610366,-80.168299,PALM BEACH 33472,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33473,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33474,BOYNTON BEACH,FL,26.5272,-80.0911,PALM BEACH 33481,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33482,DELRAY BEACH,FL,26.4611,-80.073,PALM BEACH 33483,DELRAY BEACH,FL,26.45457,-80.065637,PALM BEACH 33484,DELRAY BEACH,FL,26.454272,-80.13459,PALM BEACH 33486,BOCA RATON,FL,26.348099,-80.110418,PALM BEACH 33487,BOCA RATON,FL,26.409142,-80.089072,PALM BEACH 33488,BOCA RATON,FL,26.349,-80.1141,PALM BEACH 33496,BOCA RATON,FL,26.402975,-80.181287,PALM BEACH 33497,BOCA RATON,FL,26.349,-80.2211,PALM BEACH 33498,BOCA RATON,FL,26.390693,-80.216087,PALM BEACH 33499,BOCA RATON,FL,26.3757,-80.1216,PALM BEACH 33601,TAMPA,FL,27.9428,-82.4549,HILLSBOROUGH 33602,TAMPA,FL,27.961381,-82.45972,HILLSBOROUGH 33603,TAMPA,FL,27.984534,-82.462997,HILLSBOROUGH 33604,TAMPA,FL,28.017312,-82.457848,HILLSBOROUGH 33605,TAMPA,FL,27.967078,-82.433368,HILLSBOROUGH 33606,TAMPA,FL,27.933828,-82.467035,HILLSBOROUGH 33607,TAMPA,FL,27.962538,-82.489535,HILLSBOROUGH 33608,TAMPA,FL,27.865916,-82.507097,HILLSBOROUGH 33609,TAMPA,FL,27.942456,-82.50572,HILLSBOROUGH 33610,TAMPA,FL,27.995125,-82.404584,HILLSBOROUGH 33611,TAMPA,FL,27.891422,-82.506714,HILLSBOROUGH 33612,TAMPA,FL,28.050187,-82.450018,HILLSBOROUGH 33613,TAMPA,FL,28.077184,-82.445519,HILLSBOROUGH 33614,TAMPA,FL,28.00914,-82.503393,HILLSBOROUGH 33615,TAMPA,FL,28.008057,-82.580495,HILLSBOROUGH 33616,TAMPA,FL,27.87418,-82.52029,HILLSBOROUGH 33617,TAMPA,FL,28.038358,-82.394876,HILLSBOROUGH 33618,TAMPA,FL,28.075875,-82.493291,HILLSBOROUGH 33619,TAMPA,FL,27.93824,-82.375558,HILLSBOROUGH 33620,TAMPA,FL,28.069465,-82.409188,HILLSBOROUGH 33621,TAMPA,FL,27.8516,-82.4885,HILLSBOROUGH 33622,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33623,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33624,TAMPA,FL,28.077194,-82.524944,HILLSBOROUGH 33625,TAMPA,FL,28.072551,-82.558987,HILLSBOROUGH 33626,TAMPA,FL,28.050932,-82.616378,HILLSBOROUGH 33629,TAMPA,FL,27.92102,-82.507897,HILLSBOROUGH 33630,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33631,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33633,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33634,TAMPA,FL,28.006783,-82.556006,HILLSBOROUGH 33635,TAMPA,FL,28.03013,-82.604822,HILLSBOROUGH 33637,TAMPA,FL,28.03377,-82.365876,HILLSBOROUGH 33646,TAMPA,FL,27.9475216,-82.4584279,HILLSBOROUGH 33647,TAMPA,FL,28.114698,-82.367751,HILLSBOROUGH 33650,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33651,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33655,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33660,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33661,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33662,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33663,TAMPA,FL,27.9281,-82.3734,HILLSBOROUGH 33664,TAMPA,FL,27.967,-82.5177,HILLSBOROUGH 33672,TAMPA,FL,27.9519,-82.4588,HILLSBOROUGH 33673,TAMPA,FL,27.9943,-82.4597,HILLSBOROUGH 33674,TAMPA,FL,28.0088,-82.4514,HILLSBOROUGH 33675,TAMPA,FL,27.9641,-82.4376,HILLSBOROUGH 33677,TAMPA,FL,27.958,-82.4833,HILLSBOROUGH 33679,TAMPA,FL,27.9521,-82.5083,HILLSBOROUGH 33680,TAMPA,FL,27.9958,-82.4273,HILLSBOROUGH 33681,TAMPA,FL,27.8959,-82.5227,HILLSBOROUGH 33682,TAMPA,FL,28.0552,-82.4593,HILLSBOROUGH 33684,TAMPA,FL,27.996,-82.4964,HILLSBOROUGH 33685,TAMPA,FL,27.9985,-82.5827,HILLSBOROUGH 33686,TAMPA,FL,27.8682,-82.5276,HILLSBOROUGH 33687,TAMPA,FL,28.0357,-82.394,HILLSBOROUGH 33688,TAMPA,FL,28.0613,-82.5036,HILLSBOROUGH 33689,TAMPA,FL,28.0792,-82.4924,HILLSBOROUGH 33690,TAMPA,FL,27.920556,-82.495556,HILLSBOROUGH 33694,TAMPA,FL,28.0696,-82.4949,HILLSBOROUGH 33697,TAMPA,FL,28.0879,-82.4593, 33701,SAINT PETERSBURG,FL,27.772318,-82.638609,PINELLAS 33702,SAINT PETERSBURG,FL,27.842712,-82.644795,PINELLAS 33703,SAINT PETERSBURG,FL,27.816957,-82.626393,PINELLAS 33704,SAINT PETERSBURG,FL,27.795435,-82.637289,PINELLAS 33705,SAINT PETERSBURG,FL,27.739113,-82.64349,PINELLAS 33706,SAINT PETERSBURG,FL,27.745606,-82.751646,PINELLAS 33707,SAINT PETERSBURG,FL,27.75487,-82.720791,PINELLAS 33708,SAINT PETERSBURG,FL,27.816529,-82.800779,PINELLAS 33709,SAINT PETERSBURG,FL,27.817427,-82.729845,PINELLAS 33710,SAINT PETERSBURG,FL,27.789798,-82.724285,PINELLAS 33711,SAINT PETERSBURG,FL,27.74649,-82.689708,PINELLAS 33712,SAINT PETERSBURG,FL,27.735336,-82.666298,PINELLAS 33713,SAINT PETERSBURG,FL,27.789015,-82.677939,PINELLAS 33714,SAINT PETERSBURG,FL,27.817621,-82.677612,PINELLAS 33715,SAINT PETERSBURG,FL,27.694792,-82.715646,PINELLAS 33716,SAINT PETERSBURG,FL,27.873764,-82.640039,PINELLAS 33729,SAINT PETERSBURG,FL,27.8831,-82.6672,PINELLAS 33730,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33731,SAINT PETERSBURG,FL,27.7717,-82.6387,PINELLAS 33732,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33733,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33734,SAINT PETERSBURG,FL,27.8031,-82.6469,PINELLAS 33736,SAINT PETERSBURG,FL,27.725,-82.741389,PINELLAS 33737,SAINT PETERSBURG,FL,27.7382,-82.7081,PINELLAS 33738,SAINT PETERSBURG,FL,27.797778,-82.7975,PINELLAS 33740,SAINT PETERSBURG,FL,27.7689,-82.7686,PINELLAS 33741,SAINT PETERSBURG,FL,27.743,-82.7516,PINELLAS 33742,SAINT PETERSBURG,FL,27.8423,-82.6478,PINELLAS 33743,SAINT PETERSBURG,FL,27.7838,-82.7293,PINELLAS 33747,SAINT PETERSBURG,FL,27.7893,-82.7268,PINELLAS 33755,CLEARWATER,FL,27.9799,-82.7806,PINELLAS 33756,CLEARWATER,FL,27.935556,-82.806389,PINELLAS 33757,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33758,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33759,CLEARWATER,FL,27.9777,-82.716,PINELLAS 33760,CLEARWATER,FL,27.9094,-82.7139,PINELLAS 33761,CLEARWATER,FL,28.0295,-82.7257,PINELLAS 33762,CLEARWATER,FL,27.8912,-82.6852,PINELLAS 33763,CLEARWATER,FL,28.0027,-82.7442,PINELLAS 33764,CLEARWATER,FL,27.9317,-82.7389,PINELLAS 33765,CLEARWATER,FL,27.9743,-82.745,PINELLAS 33766,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33769,CLEARWATER,FL,27.9887,-82.7548,PINELLAS 33770,LARGO,FL,27.9163,-82.7996,PINELLAS 33771,LARGO,FL,27.9061,-82.7597,PINELLAS 33773,LARGO,FL,27.8824,-82.7515,PINELLAS 33774,LARGO,FL,27.8821,-82.8274,PINELLAS 33778,LARGO,FL,27.8831,-82.7952,PINELLAS 33779,LARGO,FL,27.9062,-82.7599,PINELLAS 33784,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33801,LAKELAND,FL,28.038134,-81.939153,POLK 33802,LAKELAND,FL,28.0454,-81.9585,POLK 33803,LAKELAND,FL,28.014045,-81.952283,POLK 33804,LAKELAND,FL,28.0786,-81.9534,POLK 33805,LAKELAND,FL,28.072006,-81.96091,POLK 33806,LAKELAND,FL,28.029,-81.9576,POLK 33807,LAKELAND,FL,27.9734,-81.9607,POLK 33809,LAKELAND,FL,28.123356,-81.984219,POLK 33810,LAKELAND,FL,28.1129,-82.0112,POLK 33811,LAKELAND,FL,27.966284,-82.007236,POLK 33812,LAKELAND,FL,27.9694,-81.8943,POLK 33813,LAKELAND,FL,27.969534,-81.933187,POLK 33815,LAKELAND,FL,28.0416,-81.9876,POLK 33880,WINTER HAVEN,FL,27.999296,-81.751507,POLK 33881,WINTER HAVEN,FL,28.045219,-81.732485,POLK 33882,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33883,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33884,WINTER HAVEN,FL,27.994901,-81.678905,POLK 33885,WINTER HAVEN,FL,28.043333,-81.716944,POLK 33888,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33900,FORT MYERS,FL,26.640628,-81.8723084,LEE 33901,FORT MYERS,FL,26.620403,-81.8725,LEE 33902,FORT MYERS,FL,26.6439,-81.8727,LEE 33904,CAPE CORAL,FL,26.57746,-81.952243,LEE 33905,FORT MYERS,FL,26.676472,-81.785341,LEE 33906,FORT MYERS,FL,26.5932,-81.8578,LEE 33907,FORT MYERS,FL,26.568057,-81.873558,LEE 33908,FORT MYERS,FL,26.502518,-81.927589,LEE 33909,CAPE CORAL,FL,26.680276,-81.958909,LEE 33910,CAPE CORAL,FL,26.627778,-81.946667,LEE 33911,FORT MYERS,FL,26.6402,-81.8725,LEE 33912,FORT MYERS,FL,26.49722,-81.824554,LEE 33913,FORT MYERS,FL,26.522808,-81.706469,LEE 33914,CAPE CORAL,FL,26.56971,-81.990915,LEE 33915,CAPE CORAL,FL,26.5625,-81.949722,LEE 33916,FORT MYERS,FL,26.646595,-81.842946,LEE 33919,FORT MYERS,FL,26.554159,-81.900587,LEE 33936,LEHIGH ACRES,FL,26.615302,-81.61046,LEE 33948,PORT CHARLOTTE,FL,26.98268,-82.141173,CHARLOTTE 33949,PORT CHARLOTTE,FL,26.975833,-82.090833,CHARLOTTE 33952,PORT CHARLOTTE,FL,26.990475,-82.096372,CHARLOTTE 33953,PORT CHARLOTTE,FL,27.004008,-82.211743,CHARLOTTE 33954,PORT CHARLOTTE,FL,27.022815,-82.110782,CHARLOTTE 33965,FORT MYERS,FL,26.4737,-81.9397,LEE 33966,FORT MYERS,FL,26.583,-81.8339,LEE 33967,FORT MYERS,FL,26.4725,-81.8122,LEE 33970,LEHIGH ACRES,FL,26.625,-81.625,LEE 33971,LEHIGH ACRES,FL,26.602252,-81.665822,LEE 33972,LEHIGH ACRES,FL,26.6436,-81.6051,LEE 33973,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33974,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33976,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33980,PORT CHARLOTTE,FL,26.983969,-82.058886,CHARLOTTE 33981,PORT CHARLOTTE,FL,26.937925,-82.238774,CHARLOTTE 33990,CAPE CORAL,FL,26.630893,-81.945967,LEE 33991,CAPE CORAL,FL,26.628881,-82.006703,LEE 33993,CAPE CORAL,FL,26.629444,-82.071111,LEE 33994,FORT MYERS,FL,26.6734,-81.8175,LEE 34101,NAPLES,FL,26.1377,-81.7966,COLLIER 34102,NAPLES,FL,26.1427,-81.7974,COLLIER 34103,NAPLES,FL,26.1925,-81.8022,COLLIER 34104,NAPLES,FL,26.1515,-81.7407,COLLIER 34105,NAPLES,FL,26.1932,-81.7642,COLLIER 34106,NAPLES,FL,26.1377,-81.7966,COLLIER 34108,NAPLES,FL,26.2424,-81.8051,COLLIER 34109,NAPLES,FL,26.243,-81.7674,COLLIER 34110,NAPLES,FL,26.2922,-81.7812,COLLIER 34112,NAPLES,FL,26.1232,-81.7471,COLLIER 34113,NAPLES,FL,26.0791,-81.716,COLLIER 34114,NAPLES,FL,26.0374,-81.6448,COLLIER 34116,NAPLES,FL,26.1837,-81.7071,COLLIER 34117,NAPLES,FL,26.1335,-81.5508,COLLIER 34119,NAPLES,FL,26.2611,-81.7211,COLLIER 34120,NAPLES,FL,26.2909,-81.5996,COLLIER 34201,BRADENTON,FL,27.502778,-82.513889,MANATEE 34202,BRADENTON,FL,27.46521,-82.431487,MANATEE 34203,BRADENTON,FL,27.444871,-82.5404,MANATEE 34204,BRADENTON,FL,27.4462,-82.511,MANATEE 34205,BRADENTON,FL,27.480896,-82.584733,MANATEE 34206,BRADENTON,FL,27.4952,-82.5709,MANATEE 34207,BRADENTON,FL,27.439663,-82.580627,MANATEE 34208,BRADENTON,FL,27.485881,-82.536961,MANATEE 34209,BRADENTON,FL,27.487909,-82.627631,MANATEE 34210,BRADENTON,FL,27.454393,-82.635752,MANATEE 34211,BRADENTON,FL,27.4438,-82.3817,MANATEE 34212,BRADENTON,FL,27.5007,-82.4255,MANATEE 34230,SARASOTA,FL,27.3348,-82.5375,SARASOTA 34231,SARASOTA,FL,27.26757,-82.513793,SARASOTA 34232,SARASOTA,FL,27.320056,-82.475709,SARASOTA 34233,SARASOTA,FL,27.286614,-82.47698,SARASOTA 34234,SARASOTA,FL,27.365355,-82.535182,SARASOTA 34235,SARASOTA,FL,27.367162,-82.484759,SARASOTA 34236,SARASOTA,FL,27.331588,-82.548624,SARASOTA 34237,SARASOTA,FL,27.336915,-82.512778,SARASOTA 34238,SARASOTA,FL,27.243834,-82.482898,SARASOTA 34239,SARASOTA,FL,27.311137,-82.519545,SARASOTA 34240,SARASOTA,FL,27.32765,-82.385594,SARASOTA 34241,SARASOTA,FL,27.282179,-82.418112,SARASOTA 34242,SARASOTA,FL,27.266025,-82.546932,SARASOTA 34243,SARASOTA,FL,27.407235,-82.530299,MANATEE 34260,SARASOTA,FL,27.421667,-82.540278,MANATEE 34276,SARASOTA,FL,27.3361,-82.5308,SARASOTA 34277,SARASOTA,FL,27.3027,-82.5293,SARASOTA 34278,SARASOTA,FL,27.324722,-82.491389,SARASOTA 34280,BRADENTON,FL,27.4994,-82.6364,MANATEE 34281,BRADENTON,FL,27.4401,-82.5827,MANATEE 34282,BRADENTON,FL,27.4401,-82.5827,MANATEE 34286,NORTH PORT,FL,27.0781,-82.1735,SARASOTA 34287,NORTH PORT,FL,27.047839,-82.241616,SARASOTA 34288,NORTH PORT,FL,27.0516,-82.1208,SARASOTA 34289,NORTH PORT,FL,27.0854,-82.1537,SARASOTA 34290,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34291,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34470,OCALA,FL,29.1981,-82.0974,MARION 34471,OCALA,FL,29.1703,-82.1015,MARION 34472,OCALA,FL,29.1166,-82.0181,MARION 34473,OCALA,FL,29.0043,-82.1956,MARION 34474,OCALA,FL,29.1623,-82.1753,MARION 34475,OCALA,FL,29.2189,-82.1546,MARION 34476,OCALA,FL,29.0788,-82.2129,MARION 34477,OCALA,FL,29.1869,-82.1402,MARION 34478,OCALA,FL,29.1869,-82.1402,MARION 34479,OCALA,FL,29.2397,-82.1097,MARION 34480,OCALA,FL,29.1172,-82.0854,MARION 34481,OCALA,FL,29.1175,-82.3149,MARION 34482,OCALA,FL,29.2302,-82.2487,MARION 34483,OCALA,FL,29.1541,-82.1937,MARION 34601,BROOKSVILLE,FL,28.565805,-82.373674,HERNANDO 34602,BROOKSVILLE,FL,28.511167,-82.290545,HERNANDO 34603,BROOKSVILLE,FL,28.5562,-82.3862,HERNANDO 34604,BROOKSVILLE,FL,28.4766,-82.4528,HERNANDO 34605,BROOKSVILLE,FL,28.555,-82.388,HERNANDO 34606,SPRING HILL,FL,28.46551,-82.598084,HERNANDO 34607,SPRING HILL,FL,28.506546,-82.626671,HERNANDO 34608,SPRING HILL,FL,28.479696,-82.556206,HERNANDO 34609,SPRING HILL,FL,28.477611,-82.499896,HERNANDO 34610,SPRING HILL,FL,28.405084,-82.530148,PASCO 34611,SPRING HILL,FL,28.4859,-82.5832,HERNANDO 34613,BROOKSVILLE,FL,28.546558,-82.521286,HERNANDO 34614,BROOKSVILLE,FL,28.662244,-82.523613,HERNANDO 34741,KISSIMMEE,FL,28.305056,-81.424208,OSCEOLA 34742,KISSIMMEE,FL,28.2916,-81.4077,OSCEOLA 34743,KISSIMMEE,FL,28.329656,-81.356044,OSCEOLA 34744,KISSIMMEE,FL,28.307807,-81.368122,OSCEOLA 34745,KISSIMMEE,FL,28.3229,-81.3911,OSCEOLA 34746,KISSIMMEE,FL,28.26796,-81.467478,OSCEOLA 34747,KISSIMMEE,FL,28.325,-81.533333,OSCEOLA 34758,KISSIMMEE,FL,28.198436,-81.487014,OSCEOLA 34759,KISSIMMEE,FL,28.124786,-81.458984,POLK 34945,FORT PIERCE,FL,27.438233,-80.443963,SAINT LUCIE 34946,FORT PIERCE,FL,27.50077,-80.35996,SAINT LUCIE 34947,FORT PIERCE,FL,27.449281,-80.359185,SAINT LUCIE 34948,FORT PIERCE,FL,27.5147,-80.422,SAINT LUCIE 34949,FORT PIERCE,FL,27.389594,-80.261468,SAINT LUCIE 34950,FORT PIERCE,FL,27.448567,-80.3385,SAINT LUCIE 34951,FORT PIERCE,FL,27.539097,-80.405195,SAINT LUCIE 34952,PORT SAINT LUCIE,FL,27.288895,-80.297971,SAINT LUCIE 34953,PORT SAINT LUCIE,FL,27.262506,-80.379323,SAINT LUCIE 34954,FORT PIERCE,FL,27.4467,-80.3419,SAINT LUCIE 34979,FORT PIERCE,FL,27.4463,-80.3258,SAINT LUCIE 34981,FORT PIERCE,FL,27.404882,-80.362257,SAINT LUCIE 34982,FORT PIERCE,FL,27.390764,-80.324633,SAINT LUCIE 34983,PORT SAINT LUCIE,FL,27.309444,-80.345029,SAINT LUCIE 34984,PORT SAINT LUCIE,FL,27.265476,-80.338936,SAINT LUCIE 34985,PORT SAINT LUCIE,FL,27.293611,-80.350556,SAINT LUCIE 34986,PORT SAINT LUCIE,FL,27.32148,-80.403045,SAINT LUCIE 34987,PORT SAINT LUCIE,FL,27.260595,-80.477052,SAINT LUCIE 34988,PORT SAINT LUCIE,FL,27.323233,-80.51726,SAINT LUCIE 35201,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35202,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35203,BIRMINGHAM,AL,33.520994,-86.806626,JEFFERSON 35204,BIRMINGHAM,AL,33.51795,-86.837198,JEFFERSON 35205,BIRMINGHAM,AL,33.495144,-86.805937,JEFFERSON 35206,BIRMINGHAM,AL,33.567797,-86.719854,JEFFERSON 35207,BIRMINGHAM,AL,33.559383,-86.815344,JEFFERSON 35208,BIRMINGHAM,AL,33.497658,-86.879884,JEFFERSON 35209,BIRMINGHAM,AL,33.469624,-86.806738,JEFFERSON 35210,BIRMINGHAM,AL,33.532797,-86.685697,JEFFERSON 35211,BIRMINGHAM,AL,33.481565,-86.85904,JEFFERSON 35212,BIRMINGHAM,AL,33.540883,-86.749524,JEFFERSON 35213,BIRMINGHAM,AL,33.508195,-86.742108,JEFFERSON 35214,BIRMINGHAM,AL,33.555445,-86.886989,JEFFERSON 35215,BIRMINGHAM,AL,33.635447,-86.693197,JEFFERSON 35216,BIRMINGHAM,AL,33.41531,-86.790425,JEFFERSON 35217,BIRMINGHAM,AL,33.5887,-86.764995,JEFFERSON 35218,BIRMINGHAM,AL,33.505972,-86.892993,JEFFERSON 35219,BIRMINGHAM,AL,33.4735,-86.8259,JEFFERSON 35220,BIRMINGHAM,AL,33.6464,-86.6816,JEFFERSON 35221,BIRMINGHAM,AL,33.452316,-86.893493,JEFFERSON 35222,BIRMINGHAM,AL,33.521859,-86.766579,JEFFERSON 35223,BIRMINGHAM,AL,33.488726,-86.736584,JEFFERSON 35224,BIRMINGHAM,AL,33.519126,-86.934193,JEFFERSON 35225,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35226,BIRMINGHAM,AL,33.403675,-86.831257,JEFFERSON 35228,BIRMINGHAM,AL,33.462446,-86.914703,JEFFERSON 35229,BIRMINGHAM,AL,33.4633,-86.79,JEFFERSON 35230,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35231,BIRMINGHAM,AL,33.564,-86.8953,JEFFERSON 35232,BIRMINGHAM,AL,33.5375,-86.7564,JEFFERSON 35233,BIRMINGHAM,AL,33.506161,-86.800257,JEFFERSON 35234,BIRMINGHAM,AL,33.53775,-86.80685,JEFFERSON 35235,BIRMINGHAM,AL,33.618045,-86.661051,JEFFERSON 35236,BIRMINGHAM,AL,33.3733,-86.8104,JEFFERSON 35237,BIRMINGHAM,AL,33.5167,-86.8071,JEFFERSON 35238,BIRMINGHAM,AL,33.4144,-86.6753,JEFFERSON 35240,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35242,BIRMINGHAM,AL,33.401559,-86.705511,SHELBY 35243,BIRMINGHAM,AL,33.446053,-86.743676,JEFFERSON 35244,BIRMINGHAM,AL,33.371776,-86.776381,JEFFERSON 35245,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35246,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35249,BIRMINGHAM,AL,33.5055,-86.8015,JEFFERSON 35253,BIRMINGHAM,AL,33.4848,-86.7737,JEFFERSON 35254,BIRMINGHAM,AL,33.5129,-86.8537,JEFFERSON 35255,BIRMINGHAM,AL,33.4991,-86.7985,JEFFERSON 35259,BIRMINGHAM,AL,33.4828,-86.7918,JEFFERSON 35260,BIRMINGHAM,AL,33.4131,-86.8471,JEFFERSON 35261,BIRMINGHAM,AL,33.5847,-86.7038,JEFFERSON 35263,BIRMINGHAM,AL,33.5311,-86.7834,JEFFERSON 35266,BIRMINGHAM,AL,33.4444,-86.7908,JEFFERSON 35277,BIRMINGHAM,AL,33.4429,-86.739,JEFFERSON 35278,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35279,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35280,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35281,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35282,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35283,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35285,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35286,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35287,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35288,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35289,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35290,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35291,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35292,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35293,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35294,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35295,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35296,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35297,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35298,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35299,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35401,TUSCALOOSA,AL,33.196891,-87.562666,TUSCALOOSA 35402,TUSCALOOSA,AL,33.147,-87.6128,TUSCALOOSA 35403,TUSCALOOSA,AL,33.2029,-87.5621,TUSCALOOSA 35404,TUSCALOOSA,AL,33.210914,-87.488079,TUSCALOOSA 35405,TUSCALOOSA,AL,33.161704,-87.514435,TUSCALOOSA 35406,TUSCALOOSA,AL,33.272174,-87.536035,TUSCALOOSA 35407,TUSCALOOSA,AL,33.1681,-87.5216,TUSCALOOSA 35485,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35486,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35487,TUSCALOOSA,AL,33.2177,-87.5455,TUSCALOOSA 35801,HUNTSVILLE,AL,34.726866,-86.567318,MADISON 35802,HUNTSVILLE,AL,34.667922,-86.560347,MADISON 35803,HUNTSVILLE,AL,34.620506,-86.55096,MADISON 35804,HUNTSVILLE,AL,34.7277,-86.5926,MADISON 35805,HUNTSVILLE,AL,34.705943,-86.616493,MADISON 35806,HUNTSVILLE,AL,34.744765,-86.670411,MADISON 35807,HUNTSVILLE,AL,34.7197,-86.6148,MADISON 35808,HUNTSVILLE,AL,34.684525,-86.653821,MADISON 35809,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35810,HUNTSVILLE,AL,34.778378,-86.609063,MADISON 35811,HUNTSVILLE,AL,34.778949,-86.543786,MADISON 35812,HUNTSVILLE,AL,34.7953,-86.706,MADISON 35813,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35814,HUNTSVILLE,AL,34.7367,-86.6269,MADISON 35815,HUNTSVILLE,AL,34.7267,-86.5414,MADISON 35816,HUNTSVILLE,AL,34.738864,-86.624948,MADISON 35824,HUNTSVILLE,AL,34.658321,-86.729486,MADISON 35893,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35894,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35895,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35896,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35897,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35898,HUNTSVILLE,AL,34.6347,-86.6503,MADISON 35899,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35901,GADSDEN,AL,33.997248,-86.010279,ETOWAH 35902,GADSDEN,AL,34.0747,-85.9352,ETOWAH 35903,GADSDEN,AL,33.997057,-85.928724,ETOWAH 35904,GADSDEN,AL,34.021694,-86.049479,ETOWAH 35905,GADSDEN,AL,33.956787,-85.927586,ETOWAH 35906,GADSDEN,AL,33.9427,-86.0675,ETOWAH 35907,GADSDEN,AL,33.9045,-86.026,ETOWAH 36101,MONTGOMERY,AL,32.3743,-86.3118,MONTGOMERY 36102,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36103,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36104,MONTGOMERY,AL,32.373037,-86.308129,MONTGOMERY 36105,MONTGOMERY,AL,32.32573,-86.310449,MONTGOMERY 36106,MONTGOMERY,AL,32.354268,-86.267278,MONTGOMERY 36107,MONTGOMERY,AL,32.380405,-86.279885,MONTGOMERY 36108,MONTGOMERY,AL,32.341682,-86.352904,MONTGOMERY 36109,MONTGOMERY,AL,32.383443,-86.243394,MONTGOMERY 36110,MONTGOMERY,AL,32.421686,-86.274997,MONTGOMERY 36111,MONTGOMERY,AL,32.337363,-86.271543,MONTGOMERY 36112,MONTGOMERY,AL,32.378611,-86.346944,MONTGOMERY 36113,MONTGOMERY,AL,32.388133,-86.355848,MONTGOMERY 36114,MONTGOMERY,AL,32.406667,-86.248056,MONTGOMERY 36115,MONTGOMERY,AL,32.406814,-86.247327,MONTGOMERY 36116,MONTGOMERY,AL,32.312943,-86.242056,MONTGOMERY 36117,MONTGOMERY,AL,32.373568,-86.183299,MONTGOMERY 36118,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36119,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36120,MONTGOMERY,AL,32.3104,-86.2362,MONTGOMERY 36121,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36123,MONTGOMERY,AL,32.3494,-86.2212,MONTGOMERY 36124,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36125,MONTGOMERY,AL,32.3134,-86.3214,MONTGOMERY 36130,MONTGOMERY,AL,32.378,-86.2982,MONTGOMERY 36131,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36132,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36133,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36134,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36135,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36140,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36141,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36142,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36177,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36191,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36201,ANNISTON,AL,33.653896,-85.838152,CALHOUN 36202,ANNISTON,AL,33.6584,-85.8268,CALHOUN 36204,ANNISTON,AL,33.6853,-85.8231,CALHOUN 36205,ANNISTON,AL,33.710168,-85.801467,CALHOUN 36206,ANNISTON,AL,33.719124,-85.838904,CALHOUN 36207,ANNISTON,AL,33.6589,-85.761,CALHOUN 36210,ANNISTON,AL,33.6485,-85.9163,CALHOUN 36601,MOBILE,AL,30.6959,-88.0434,MOBILE 36602,MOBILE,AL,30.688828,-88.045308,MOBILE 36603,MOBILE,AL,30.692141,-88.05622,MOBILE 36604,MOBILE,AL,30.681963,-88.067804,MOBILE 36605,MOBILE,AL,30.634117,-88.084646,MOBILE 36606,MOBILE,AL,30.672899,-88.100909,MOBILE 36607,MOBILE,AL,30.697486,-88.1029,MOBILE 36608,MOBILE,AL,30.69636,-88.187784,MOBILE 36609,MOBILE,AL,30.660527,-88.161806,MOBILE 36610,MOBILE,AL,30.737846,-88.083761,MOBILE 36611,MOBILE,AL,30.766821,-88.084973,MOBILE 36612,MOBILE,AL,30.751844,-88.11311,MOBILE 36615,MOBILE,AL,30.631199,-88.068871,MOBILE 36616,MOBILE,AL,30.6941,-88.043,MOBILE 36617,MOBILE,AL,30.714522,-88.091796,MOBILE 36618,MOBILE,AL,30.732178,-88.175753,MOBILE 36619,MOBILE,AL,30.592803,-88.194645,MOBILE 36621,MOBILE,AL,30.6959,-88.0434,MOBILE 36622,MOBILE,AL,30.6959,-88.0434,MOBILE 36625,MOBILE,AL,30.6959,-88.0434,MOBILE 36628,MOBILE,AL,30.6959,-88.0434,MOBILE 36630,MOBILE,AL,30.6959,-88.0434,MOBILE 36633,MOBILE,AL,30.6959,-88.0434,MOBILE 36640,MOBILE,AL,30.6901,-88.0568,MOBILE 36641,MOBILE,AL,30.6901,-88.0568,MOBILE 36644,MOBILE,AL,30.6925,-88.0432,MOBILE 36652,MOBILE,AL,30.6959,-88.0434,MOBILE 36660,MOBILE,AL,30.675,-88.0867,MOBILE 36663,MOBILE,AL,30.8179,-88.1926,MOBILE 36670,MOBILE,AL,30.6954,-88.1059,MOBILE 36671,MOBILE,AL,30.7753,-88.0791,MOBILE 36675,MOBILE,AL,30.6941,-88.043,MOBILE 36685,MOBILE,AL,30.6941,-88.043,MOBILE 36688,MOBILE,AL,30.6966,-88.1741,MOBILE 36689,MOBILE,AL,30.6893,-88.1731,MOBILE 36690,MOBILE,AL,30.6959,-88.0434,MOBILE 36691,MOBILE,AL,30.6267,-88.1499,MOBILE 36693,MOBILE,AL,30.631076,-88.158843,MOBILE 36695,MOBILE,AL,30.647431,-88.229245,MOBILE 37127,MURFREESBORO,TN,35.7913,-86.357,RUTHERFORD 37128,MURFREESBORO,TN,35.8209,-86.4537,RUTHERFORD 37129,MURFREESBORO,TN,35.871019,-86.41809,RUTHERFORD 37130,MURFREESBORO,TN,35.847792,-86.364675,RUTHERFORD 37131,MURFREESBORO,TN,35.8911,-86.3822,RUTHERFORD 37132,MURFREESBORO,TN,35.8475,-86.3625,RUTHERFORD 37133,MURFREESBORO,TN,35.8369,-86.393,RUTHERFORD 37201,NASHVILLE,TN,36.167028,-86.778441,DAVIDSON 37202,NASHVILLE,TN,36.158,-86.7837,DAVIDSON 37203,NASHVILLE,TN,36.146802,-86.793922,DAVIDSON 37204,NASHVILLE,TN,36.114628,-86.781808,DAVIDSON 37205,NASHVILLE,TN,36.111432,-86.868954,DAVIDSON 37206,NASHVILLE,TN,36.179813,-86.741106,DAVIDSON 37207,NASHVILLE,TN,36.2195,-86.774008,DAVIDSON 37208,NASHVILLE,TN,36.176196,-86.807563,DAVIDSON 37209,NASHVILLE,TN,36.154592,-86.860212,DAVIDSON 37210,NASHVILLE,TN,36.137904,-86.741042,DAVIDSON 37211,NASHVILLE,TN,36.072486,-86.724038,DAVIDSON 37212,NASHVILLE,TN,36.133681,-86.800555,DAVIDSON 37213,NASHVILLE,TN,36.165512,-86.760556,DAVIDSON 37214,NASHVILLE,TN,36.163339,-86.660854,DAVIDSON 37215,NASHVILLE,TN,36.098584,-86.821917,DAVIDSON 37216,NASHVILLE,TN,36.212491,-86.725687,DAVIDSON 37217,NASHVILLE,TN,36.10585,-86.666585,DAVIDSON 37218,NASHVILLE,TN,36.207062,-86.845583,DAVIDSON 37219,NASHVILLE,TN,36.167768,-86.783676,DAVIDSON 37220,NASHVILLE,TN,36.064139,-86.769654,DAVIDSON 37221,NASHVILLE,TN,36.071512,-86.943674,DAVIDSON 37222,NASHVILLE,TN,36.0687,-86.7255,DAVIDSON 37224,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37227,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37228,NASHVILLE,TN,36.190145,-86.805264,DAVIDSON 37229,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37230,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37232,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37234,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37235,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37236,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37237,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37238,NASHVILLE,TN,36.1656,-86.7803,DAVIDSON 37240,NASHVILLE,TN,36.1491,-86.8035,DAVIDSON 37241,NASHVILLE,TN,36.1089,-86.672,DAVIDSON 37242,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37243,NASHVILLE,TN,36.1687,-86.7845,DAVIDSON 37244,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37245,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37246,NASHVILLE,TN,36.1585,-86.79,DAVIDSON 37247,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37248,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37249,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37250,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37401,CHATTANOOGA,TN,35.0455,-85.3081,HAMILTON 37402,CHATTANOOGA,TN,35.046288,-85.316126,HAMILTON 37403,CHATTANOOGA,TN,35.045045,-85.296516,HAMILTON 37404,CHATTANOOGA,TN,35.030634,-85.272229,HAMILTON 37405,CHATTANOOGA,TN,35.076801,-85.308224,HAMILTON 37406,CHATTANOOGA,TN,35.061446,-85.247839,HAMILTON 37407,CHATTANOOGA,TN,35.002361,-85.284913,HAMILTON 37408,CHATTANOOGA,TN,35.029236,-85.306809,HAMILTON 37409,CHATTANOOGA,TN,34.99809,-85.331016,HAMILTON 37410,CHATTANOOGA,TN,35.001787,-85.313762,HAMILTON 37411,CHATTANOOGA,TN,35.02706,-85.235583,HAMILTON 37412,CHATTANOOGA,TN,34.996726,-85.237957,HAMILTON 37414,CHATTANOOGA,TN,35.0123,-85.2267,HAMILTON 37415,CHATTANOOGA,TN,35.117668,-85.28633,HAMILTON 37416,CHATTANOOGA,TN,35.094246,-85.175656,HAMILTON 37419,CHATTANOOGA,TN,35.033092,-85.368698,HAMILTON 37421,CHATTANOOGA,TN,35.024986,-85.14594,HAMILTON 37422,CHATTANOOGA,TN,35.0537,-85.1893,HAMILTON 37424,CHATTANOOGA,TN,35.0455,-85.3097,HAMILTON 37450,CHATTANOOGA,TN,35.0489,-85.3116,HAMILTON 37501,MEMPHIS,TN,35.0337,-89.9343,SHELBY 37544,MEMPHIS,TN,35.1495,-90.049,SHELBY 37601,JOHNSON CITY,TN,36.333872,-82.340775,WASHINGTON 37602,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37604,JOHNSON CITY,TN,36.310744,-82.381042,WASHINGTON 37605,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37614,JOHNSON CITY,TN,36.3027,-82.3681,WASHINGTON 37615,JOHNSON CITY,TN,36.41006,-82.447128,WASHINGTON 37660,KINGSPORT,TN,36.552766,-82.554034,SULLIVAN 37662,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37663,KINGSPORT,TN,36.4693,-82.4948,SULLIVAN 37664,KINGSPORT,TN,36.520834,-82.516835,SULLIVAN 37665,KINGSPORT,TN,36.578305,-82.569906,SULLIVAN 37669,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37901,KNOXVILLE,TN,35.9609,-83.9189,KNOX 37902,KNOXVILLE,TN,35.962516,-83.920915,KNOX 37909,KNOXVILLE,TN,35.945978,-84.023501,KNOX 37912,KNOXVILLE,TN,36.005492,-83.977317,KNOX 37914,KNOXVILLE,TN,35.991755,-83.849624,KNOX 37915,KNOXVILLE,TN,35.972074,-83.901005,KNOX 37916,KNOXVILLE,TN,35.955584,-83.933576,KNOX 37917,KNOXVILLE,TN,35.99803,-83.915216,KNOX 37918,KNOXVILLE,TN,36.050054,-83.922558,KNOX 37919,KNOXVILLE,TN,35.924385,-84.001468,KNOX 37920,KNOXVILLE,TN,35.922976,-83.879793,KNOX 37921,KNOXVILLE,TN,35.976297,-83.982894,KNOX 37922,KNOXVILLE,TN,35.877697,-84.127332,KNOX 37923,KNOXVILLE,TN,35.933127,-84.076116,KNOX 37924,KNOXVILLE,TN,36.032044,-83.80207,KNOX 37927,KNOXVILLE,TN,35.9956,-83.9225,KNOX 37928,KNOXVILLE,TN,36.0357,-83.9309,KNOX 37929,KNOXVILLE,TN,35.9622,-83.9164,KNOX 37930,KNOXVILLE,TN,35.917,-84.0741,KNOX 37931,KNOXVILLE,TN,35.992363,-84.120072,KNOX 37932,KNOXVILLE,TN,35.923619,-84.169591,KNOX 37933,KNOXVILLE,TN,35.884444,-84.153611,KNOX 37934,KNOXVILLE,TN,35.876913,-84.176448,KNOX 37938,KNOXVILLE,TN,36.105473,-83.945968,KNOX 37939,KNOXVILLE,TN,35.9365,-83.9936,KNOX 37940,KNOXVILLE,TN,35.9081,-83.8654,KNOX 37950,KNOXVILLE,TN,35.945,-84.015,KNOX 37990,KNOXVILLE,TN,35.8655,-84.1267,KNOX 37995,KNOXVILLE,TN,35.945,-84.015,KNOX 37996,KNOXVILLE,TN,35.9529,-83.9293,KNOX 37997,KNOXVILLE,TN,35.945,-84.015,KNOX 37998,KNOXVILLE,TN,35.945,-84.015,KNOX 38101,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38103,MEMPHIS,TN,35.144001,-90.047995,SHELBY 38104,MEMPHIS,TN,35.133393,-90.004625,SHELBY 38105,MEMPHIS,TN,35.149748,-90.033042,SHELBY 38106,MEMPHIS,TN,35.102124,-90.032997,SHELBY 38107,MEMPHIS,TN,35.183136,-90.020077,SHELBY 38108,MEMPHIS,TN,35.178655,-89.968238,SHELBY 38109,MEMPHIS,TN,35.042538,-90.073238,SHELBY 38110,MEMPHIS,TN,35.0519,-89.941,SHELBY 38111,MEMPHIS,TN,35.107573,-89.945745,SHELBY 38112,MEMPHIS,TN,35.148277,-89.972895,SHELBY 38113,MEMPHIS,TN,35.111201,-90.079426,SHELBY 38114,MEMPHIS,TN,35.098094,-89.98254,SHELBY 38115,MEMPHIS,TN,35.054405,-89.86082,SHELBY 38116,MEMPHIS,TN,35.030298,-90.012314,SHELBY 38117,MEMPHIS,TN,35.112357,-89.903367,SHELBY 38118,MEMPHIS,TN,35.051421,-89.926538,SHELBY 38119,MEMPHIS,TN,35.082101,-89.850142,SHELBY 38120,MEMPHIS,TN,35.120654,-89.865119,SHELBY 38122,MEMPHIS,TN,35.157166,-89.926844,SHELBY 38124,MEMPHIS,TN,35.1144,-89.9059,SHELBY 38125,MEMPHIS,TN,35.031249,-89.812357,SHELBY 38126,MEMPHIS,TN,35.125518,-90.042444,SHELBY 38127,MEMPHIS,TN,35.250982,-90.029623,SHELBY 38128,MEMPHIS,TN,35.221273,-89.941314,SHELBY 38130,MEMPHIS,TN,35.0248,-89.9803,SHELBY 38131,MEMPHIS,TN,35.0655,-90.003699,SHELBY 38132,MEMPHIS,TN,35.071967,-89.988627,SHELBY 38133,MEMPHIS,TN,35.205362,-89.803564,SHELBY 38134,MEMPHIS,TN,35.188639,-89.86409,SHELBY 38135,MEMPHIS,TN,35.232301,-89.850878,SHELBY 38136,MEMPHIS,TN,35.1325,-90.0565,SHELBY 38137,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38141,MEMPHIS,TN,35.023091,-89.84916,SHELBY 38142,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38145,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38147,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38148,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38150,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38151,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38152,MEMPHIS,TN,35.1195,-89.9372,SHELBY 38157,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38159,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38161,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38163,MEMPHIS,TN,35.1506,-90.0155,SHELBY 38165,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38166,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38167,MEMPHIS,TN,35.2103,-90.023,SHELBY 38168,MEMPHIS,TN,35.2266,-89.904,SHELBY 38173,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38174,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38175,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38177,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38181,MEMPHIS,TN,35.0519,-89.941,SHELBY 38182,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38184,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38186,MEMPHIS,TN,35.0335,-90.0167,SHELBY 38187,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38188,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38190,MEMPHIS,TN,35.0549,-90.0599,SHELBY 38193,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38194,MEMPHIS,TN,35.0655,-89.9984,SHELBY 38197,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38301,JACKSON,TN,35.610222,-88.814011,MADISON 38302,JACKSON,TN,35.6144,-88.8138,MADISON 38303,JACKSON,TN,35.6144,-88.8138,MADISON 38305,JACKSON,TN,35.682875,-88.828127,MADISON 38308,JACKSON,TN,35.6144,-88.8138,MADISON 38314,JACKSON,TN,35.5727,-88.8213,MADISON 39201,JACKSON,MS,32.293502,-90.186655,HINDS 39202,JACKSON,MS,32.314883,-90.178194,HINDS 39203,JACKSON,MS,32.308145,-90.202064,HINDS 39204,JACKSON,MS,32.283162,-90.230579,HINDS 39205,JACKSON,MS,32.2986,-90.1847,HINDS 39206,JACKSON,MS,32.369956,-90.173787,HINDS 39207,JACKSON,MS,32.2986,-90.1847,HINDS 39209,JACKSON,MS,32.318422,-90.244626,HINDS 39210,JACKSON,MS,32.3242,-90.1765,HINDS 39211,JACKSON,MS,32.373924,-90.129297,HINDS 39212,JACKSON,MS,32.24347,-90.261201,HINDS 39213,JACKSON,MS,32.355288,-90.217099,HINDS 39215,JACKSON,MS,32.2986,-90.1847,HINDS 39216,JACKSON,MS,32.338574,-90.170814,HINDS 39217,JACKSON,MS,32.2976,-90.209,HINDS 39225,JACKSON,MS,32.2986,-90.1847,HINDS 39235,JACKSON,MS,32.2986,-90.1847,HINDS 39236,JACKSON,MS,32.3628,-90.1459,HINDS 39250,JACKSON,MS,32.2986,-90.1847,HINDS 39269,JACKSON,MS,32.30085,-90.188503,HINDS 39271,JACKSON,MS,32.2986,-90.1847,HINDS 39282,JACKSON,MS,32.2539,-90.2501,HINDS 39283,JACKSON,MS,32.3661,-90.2246,HINDS 39284,JACKSON,MS,32.2725,-90.216,HINDS 39286,JACKSON,MS,32.3509,-90.1765,HINDS 39289,JACKSON,MS,32.3852,-90.2747,HINDS 39296,JACKSON,MS,32.3342,-90.1755,HINDS 39298,JACKSON,MS,32.2999,-90.1843,RANKIN 39301,MERIDIAN,MS,32.357441,-88.655973,LAUDERDALE 39302,MERIDIAN,MS,32.3656,-88.7007,LAUDERDALE 39303,MERIDIAN,MS,32.41,-88.6994,LAUDERDALE 39304,MERIDIAN,MS,32.3656,-88.7227,LAUDERDALE 39305,MERIDIAN,MS,32.440129,-88.678322,LAUDERDALE 39307,MERIDIAN,MS,32.373591,-88.743598,LAUDERDALE 39309,MERIDIAN,MS,32.5519,-88.585,LAUDERDALE 39401,HATTIESBURG,MS,31.314553,-89.306471,FORREST 39402,HATTIESBURG,MS,31.309753,-89.37751,FORREST 39403,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39404,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39406,HATTIESBURG,MS,31.3282,-89.3303,FORREST 39407,HATTIESBURG,MS,31.3269,-89.2902,FORREST 39501,GULFPORT,MS,30.382556,-89.097618,HARRISON 39502,GULFPORT,MS,30.3672,-89.0927,HARRISON 39503,GULFPORT,MS,30.460105,-89.088552,HARRISON 39505,GULFPORT,MS,30.3672,-89.0927,HARRISON 39506,GULFPORT,MS,30.4756,-89.1444,HARRISON 39507,GULFPORT,MS,30.396248,-89.035347,HARRISON 39530,BILOXI,MS,30.403478,-88.897143,HARRISON 39531,BILOXI,MS,30.40334,-88.960499,HARRISON 39532,BILOXI,MS,30.452031,-88.918846,HARRISON 39533,BILOXI,MS,30.395,-88.8855,HARRISON 39534,BILOXI,MS,30.401389,-88.921389,HARRISON 39535,BILOXI,MS,30.4832,-89.1997,HARRISON 39701,COLUMBUS,MS,33.537699,-88.426194,LOWNDES 39702,COLUMBUS,MS,33.481175,-88.355387,LOWNDES 39703,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39704,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39705,COLUMBUS,MS,33.5694,-88.4305,LOWNDES 39710,COLUMBUS,MS,33.6298,-88.4468,LOWNDES 39901,ATLANTA,GA,33.8872,-84.2897,DEKALB 40201,LOUISVILLE,KY,38.2435,-85.7639,JEFFERSON 40202,LOUISVILLE,KY,38.250734,-85.747646,JEFFERSON 40203,LOUISVILLE,KY,38.245332,-85.762595,JEFFERSON 40204,LOUISVILLE,KY,38.236936,-85.724938,JEFFERSON 40205,LOUISVILLE,KY,38.22217,-85.688542,JEFFERSON 40206,LOUISVILLE,KY,38.256495,-85.697581,JEFFERSON 40207,LOUISVILLE,KY,38.257908,-85.649689,JEFFERSON 40208,LOUISVILLE,KY,38.219988,-85.764823,JEFFERSON 40209,LOUISVILLE,KY,38.190125,-85.751904,JEFFERSON 40210,LOUISVILLE,KY,38.230585,-85.790548,JEFFERSON 40211,LOUISVILLE,KY,38.241958,-85.81265,JEFFERSON 40212,LOUISVILLE,KY,38.265116,-85.804479,JEFFERSON 40213,LOUISVILLE,KY,38.183929,-85.710642,JEFFERSON 40214,LOUISVILLE,KY,38.159318,-85.778027,JEFFERSON 40215,LOUISVILLE,KY,38.191319,-85.784707,JEFFERSON 40216,LOUISVILLE,KY,38.186138,-85.831771,JEFFERSON 40217,LOUISVILLE,KY,38.21736,-85.740371,JEFFERSON 40218,LOUISVILLE,KY,38.191084,-85.654834,JEFFERSON 40219,LOUISVILLE,KY,38.141291,-85.680548,JEFFERSON 40220,LOUISVILLE,KY,38.21494,-85.624489,JEFFERSON 40221,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40222,LOUISVILLE,KY,38.263825,-85.611183,JEFFERSON 40223,LOUISVILLE,KY,38.253688,-85.561151,JEFFERSON 40224,LOUISVILLE,KY,38.2289,-85.575,JEFFERSON 40225,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40228,LOUISVILLE,KY,38.1392,-85.630967,JEFFERSON 40229,LOUISVILLE,KY,38.090655,-85.671889,JEFFERSON 40231,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40232,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40233,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40241,LOUISVILLE,KY,38.301509,-85.582421,JEFFERSON 40242,LOUISVILLE,KY,38.276858,-85.590224,JEFFERSON 40243,LOUISVILLE,KY,38.240115,-85.537381,JEFFERSON 40245,LOUISVILLE,KY,38.268273,-85.484461,JEFFERSON 40250,LOUISVILLE,KY,38.2164,-85.6236,JEFFERSON 40251,LOUISVILLE,KY,38.2497,-85.7974,JEFFERSON 40252,LOUISVILLE,KY,38.256667,-85.601667,JEFFERSON 40253,LOUISVILLE,KY,38.245278,-85.538889,JEFFERSON 40255,LOUISVILLE,KY,38.2237,-85.6868,JEFFERSON 40256,LOUISVILLE,KY,38.2,-85.822778,JEFFERSON 40257,LOUISVILLE,KY,38.252778,-85.655833,JEFFERSON 40258,LOUISVILLE,KY,38.142369,-85.862505,JEFFERSON 40259,LOUISVILLE,KY,38.141111,-85.687778,JEFFERSON 40261,LOUISVILLE,KY,38.1942,-85.6515,JEFFERSON 40266,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40268,LOUISVILLE,KY,38.1435,-85.8384,JEFFERSON 40269,LOUISVILLE,KY,38.1931,-85.5668,JEFFERSON 40270,LOUISVILLE,KY,38.111111,-85.870278,JEFFERSON 40272,LOUISVILLE,KY,38.097063,-85.858701,JEFFERSON 40280,LOUISVILLE,KY,38.2576,-85.7019,JEFFERSON 40281,LOUISVILLE,KY,38.144444,-85.866389,JEFFERSON 40282,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40283,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40285,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40287,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40289,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40290,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40291,LOUISVILLE,KY,38.15205,-85.594513,JEFFERSON 40292,LOUISVILLE,KY,38.2183,-85.7593,JEFFERSON 40293,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40294,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40295,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40296,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40297,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40298,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40299,LOUISVILLE,KY,38.188491,-85.568947,JEFFERSON 40502,LEXINGTON,KY,38.017394,-84.485423,FAYETTE 40503,LEXINGTON,KY,38.001002,-84.52821,FAYETTE 40504,LEXINGTON,KY,38.040628,-84.543325,FAYETTE 40505,LEXINGTON,KY,38.061201,-84.458338,FAYETTE 40506,LEXINGTON,KY,38.0244,-84.5047,FAYETTE 40507,LEXINGTON,KY,38.046385,-84.495289,FAYETTE 40508,LEXINGTON,KY,38.04754,-84.496435,FAYETTE 40509,LEXINGTON,KY,38.010166,-84.427419,FAYETTE 40510,LEXINGTON,KY,38.070211,-84.591046,FAYETTE 40511,LEXINGTON,KY,38.093233,-84.500671,FAYETTE 40512,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40513,LEXINGTON,KY,38.01388,-84.581522,FAYETTE 40514,LEXINGTON,KY,37.983291,-84.576667,FAYETTE 40515,LEXINGTON,KY,37.965102,-84.470751,FAYETTE 40516,LEXINGTON,KY,38.054355,-84.354802,FAYETTE 40517,LEXINGTON,KY,37.984864,-84.481588,FAYETTE 40522,LEXINGTON,KY,38.0196,-84.488,FAYETTE 40523,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40524,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40526,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40533,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40536,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40544,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40546,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40550,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40555,LEXINGTON,KY,38.0491,-84.5002,FAYETTE 40574,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40575,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40576,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40577,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40578,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40579,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40580,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40581,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40582,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40583,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40588,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40591,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40598,LEXINGTON,KY,38.0494,-84.5004,FAYETTE 40601,FRANKFORT,KY,38.192831,-84.88061,FRANKLIN 40602,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40603,FRANKFORT,KY,38.2017,-84.8324,FRANKLIN 40604,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40618,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40619,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40620,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40621,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40622,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 43085,COLUMBUS,OH,40.105155,-83.010069,FRANKLIN 43201,COLUMBUS,OH,39.995157,-83.004732,FRANKLIN 43202,COLUMBUS,OH,40.020084,-83.011842,FRANKLIN 43203,COLUMBUS,OH,39.971925,-82.969131,FRANKLIN 43204,COLUMBUS,OH,39.952333,-83.077999,FRANKLIN 43205,COLUMBUS,OH,39.956905,-82.964352,FRANKLIN 43206,COLUMBUS,OH,39.942639,-82.974845,FRANKLIN 43207,COLUMBUS,OH,39.904565,-82.970334,FRANKLIN 43209,COLUMBUS,OH,39.958999,-82.926595,FRANKLIN 43210,COLUMBUS,OH,40.002804,-83.016404,FRANKLIN 43211,COLUMBUS,OH,40.011792,-82.973196,FRANKLIN 43212,COLUMBUS,OH,39.987381,-83.045579,FRANKLIN 43213,COLUMBUS,OH,39.967146,-82.878275,FRANKLIN 43214,COLUMBUS,OH,40.053482,-83.01875,FRANKLIN 43215,COLUMBUS,OH,39.967106,-83.004383,FRANKLIN 43216,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43217,COLUMBUS,OH,39.806209,-82.947483,FRANKLIN 43218,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43219,COLUMBUS,OH,40.004394,-82.936459,FRANKLIN 43220,COLUMBUS,OH,40.049484,-83.066911,FRANKLIN 43221,COLUMBUS,OH,40.015431,-83.064592,FRANKLIN 43222,COLUMBUS,OH,39.957628,-83.031109,FRANKLIN 43223,COLUMBUS,OH,39.938753,-83.046344,FRANKLIN 43224,COLUMBUS,OH,40.042493,-82.968947,FRANKLIN 43226,COLUMBUS,OH,40.1035,-82.9866,FRANKLIN 43227,COLUMBUS,OH,39.944394,-82.890298,FRANKLIN 43228,COLUMBUS,OH,39.947876,-83.123858,FRANKLIN 43229,COLUMBUS,OH,40.083886,-82.972568,FRANKLIN 43230,COLUMBUS,OH,40.038458,-82.882429,FRANKLIN 43231,COLUMBUS,OH,40.080984,-82.938275,FRANKLIN 43232,COLUMBUS,OH,39.923024,-82.866432,FRANKLIN 43234,COLUMBUS,OH,40.1011,-83.0555,FRANKLIN 43235,COLUMBUS,OH,40.101271,-83.059287,FRANKLIN 43236,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43240,COLUMBUS,OH,40.1444,-82.9789,DELAWARE 43251,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43260,COLUMBUS,OH,39.9618,-83.0009,FRANKLIN 43265,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43266,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43268,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43270,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43271,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43272,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43279,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43287,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43291,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43299,COLUMBUS,OH,40.0395,-82.8695,FRANKLIN 43601,TOLEDO,OH,41.642,-83.5438,LUCAS 43603,TOLEDO,OH,41.6497,-83.5341,LUCAS 43604,TOLEDO,OH,41.661415,-83.524949,LUCAS 43605,TOLEDO,OH,41.640701,-83.512341,LUCAS 43606,TOLEDO,OH,41.671213,-83.605992,LUCAS 43607,TOLEDO,OH,41.650417,-83.597419,LUCAS 43608,TOLEDO,OH,41.677908,-83.534359,LUCAS 43609,TOLEDO,OH,41.629761,-83.577282,LUCAS 43610,TOLEDO,OH,41.676693,-83.557303,LUCAS 43611,TOLEDO,OH,41.704507,-83.489203,LUCAS 43612,TOLEDO,OH,41.704567,-83.565622,LUCAS 43613,TOLEDO,OH,41.703913,-83.603397,LUCAS 43614,TOLEDO,OH,41.60279,-83.62917,LUCAS 43615,TOLEDO,OH,41.649197,-83.670583,LUCAS 43617,TOLEDO,OH,41.666765,-83.716967,LUCAS 43620,TOLEDO,OH,41.66536,-83.553602,LUCAS 43623,TOLEDO,OH,41.707968,-83.643408,LUCAS 43635,TOLEDO,OH,41.6615,-83.6861,LUCAS 43652,TOLEDO,OH,41.642,-83.5438,LUCAS 43654,TOLEDO,OH,41.642,-83.5438,WOOD 43656,TOLEDO,OH,41.7043,-83.6509,LUCAS 43657,TOLEDO,OH,41.642,-83.5438,LUCAS 43659,TOLEDO,OH,41.6465,-83.536,LUCAS 43660,TOLEDO,OH,41.642,-83.5438,LUCAS 43661,TOLEDO,OH,41.642,-83.5438,LUCAS 43666,TOLEDO,OH,41.642,-83.5438,LUCAS 43667,TOLEDO,OH,41.642,-83.5438,LUCAS 43681,TOLEDO,OH,41.642,-83.5438,LUCAS 43682,TOLEDO,OH,41.642,-83.5438,LUCAS 43697,TOLEDO,OH,41.642,-83.5438,LUCAS 43699,TOLEDO,OH,41.642,-83.5438,LUCAS 44101,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44102,CLEVELAND,OH,41.473508,-81.739791,CUYAHOGA 44103,CLEVELAND,OH,41.515726,-81.640475,CUYAHOGA 44104,CLEVELAND,OH,41.480924,-81.624502,CUYAHOGA 44105,CLEVELAND,OH,41.450912,-81.619002,CUYAHOGA 44106,CLEVELAND,OH,41.508359,-81.60757,CUYAHOGA 44108,CLEVELAND,OH,41.53492,-81.608974,CUYAHOGA 44109,CLEVELAND,OH,41.445768,-81.703315,CUYAHOGA 44110,CLEVELAND,OH,41.563557,-81.573276,CUYAHOGA 44111,CLEVELAND,OH,41.457066,-81.78435,CUYAHOGA 44112,CLEVELAND,OH,41.535517,-81.576262,CUYAHOGA 44113,CLEVELAND,OH,41.481648,-81.701848,CUYAHOGA 44114,CLEVELAND,OH,41.506351,-81.67425,CUYAHOGA 44115,CLEVELAND,OH,41.494574,-81.667009,CUYAHOGA 44118,CLEVELAND,OH,41.501213,-81.553945,CUYAHOGA 44119,CLEVELAND,OH,41.588238,-81.546759,CUYAHOGA 44120,CLEVELAND,OH,41.471433,-81.583911,CUYAHOGA 44121,CLEVELAND,OH,41.526019,-81.533758,CUYAHOGA 44124,CLEVELAND,OH,41.514349,-81.46801,CUYAHOGA 44125,CLEVELAND,OH,41.415792,-81.605385,CUYAHOGA 44126,CLEVELAND,OH,41.4433,-81.856381,CUYAHOGA 44127,CLEVELAND,OH,41.470125,-81.648999,CUYAHOGA 44128,CLEVELAND,OH,41.441565,-81.548574,CUYAHOGA 44129,CLEVELAND,OH,41.396474,-81.734604,CUYAHOGA 44130,CLEVELAND,OH,41.377178,-81.774858,CUYAHOGA 44134,CLEVELAND,OH,41.390764,-81.705726,CUYAHOGA 44135,CLEVELAND,OH,41.434177,-81.804433,CUYAHOGA 44143,CLEVELAND,OH,41.552195,-81.484715,CUYAHOGA 44144,CLEVELAND,OH,41.434419,-81.735222,CUYAHOGA 44178,CLEVELAND,OH,41.4994,-81.6955,CUYAHOGA 44181,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44185,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44188,CLEVELAND,OH,41.4017,-81.8266,CUYAHOGA 44189,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44190,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44191,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44192,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44193,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44194,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44195,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44197,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44198,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44199,CLEVELAND,OH,41.5047,-81.6911,CUYAHOGA 44301,AKRON,OH,41.044852,-81.520048,SUMMIT 44302,AKRON,OH,41.091988,-81.542015,SUMMIT 44303,AKRON,OH,41.102508,-81.538609,SUMMIT 44304,AKRON,OH,41.080808,-81.508526,SUMMIT 44305,AKRON,OH,41.076029,-81.464409,SUMMIT 44306,AKRON,OH,41.04791,-81.491554,SUMMIT 44307,AKRON,OH,41.069465,-81.548786,SUMMIT 44308,AKRON,OH,41.079576,-81.519363,SUMMIT 44309,AKRON,OH,41.0655,-81.5204,SUMMIT 44310,AKRON,OH,41.107547,-81.500586,SUMMIT 44311,AKRON,OH,41.063784,-81.520005,SUMMIT 44312,AKRON,OH,41.033442,-81.438528,SUMMIT 44313,AKRON,OH,41.121995,-81.568487,SUMMIT 44314,AKRON,OH,41.040774,-81.559825,SUMMIT 44315,AKRON,OH,41.0655,-81.5204,SUMMIT 44316,AKRON,OH,41.0655,-81.5204,SUMMIT 44317,AKRON,OH,41.0655,-81.5204,SUMMIT 44319,AKRON,OH,40.97912,-81.53468,SUMMIT 44320,AKRON,OH,41.083496,-81.56744,SUMMIT 44321,AKRON,OH,41.103139,-81.648045,SUMMIT 44322,AKRON,OH,41.0655,-81.5204,SUMMIT 44325,AKRON,OH,41.0748,-81.5165,SUMMIT 44326,AKRON,OH,41.0655,-81.5204,SUMMIT 44328,AKRON,OH,41.0758,-81.5206,SUMMIT 44333,AKRON,OH,41.146734,-81.62385,SUMMIT 44372,AKRON,OH,41.112,-81.5746,SUMMIT 44393,AKRON,OH,41.0655,-81.5204,SUMMIT 44396,AKRON,OH,41.0813,-81.5191,SUMMIT 44398,AKRON,OH,41.0655,-81.5204,SUMMIT 44399,AKRON,OH,41.0655,-81.5204,SUMMIT 44481,WARREN,OH,41.172426,-80.871806,TRUMBULL 44482,WARREN,OH,41.1742,-80.8702,TRUMBULL 44483,WARREN,OH,41.263878,-80.816448,TRUMBULL 44484,WARREN,OH,41.231819,-80.764243,TRUMBULL 44485,WARREN,OH,41.240511,-80.844136,TRUMBULL 44486,WARREN,OH,41.3004,-80.8436,TRUMBULL 44488,WARREN,OH,41.2375,-80.8162,TRUMBULL 44501,YOUNGSTOWN,OH,41.0986,-80.6474,MAHONING 44502,YOUNGSTOWN,OH,41.077366,-80.640905,MAHONING 44503,YOUNGSTOWN,OH,41.102016,-80.650007,MAHONING 44504,YOUNGSTOWN,OH,41.123686,-80.653887,MAHONING 44505,YOUNGSTOWN,OH,41.125748,-80.627748,MAHONING 44506,YOUNGSTOWN,OH,41.096045,-80.625916,MAHONING 44507,YOUNGSTOWN,OH,41.073236,-80.655336,MAHONING 44509,YOUNGSTOWN,OH,41.10498,-80.694463,MAHONING 44510,YOUNGSTOWN,OH,41.119714,-80.667204,MAHONING 44511,YOUNGSTOWN,OH,41.070402,-80.693098,MAHONING 44512,YOUNGSTOWN,OH,41.031985,-80.666629,MAHONING 44513,YOUNGSTOWN,OH,41.024167,-80.663056,MAHONING 44514,YOUNGSTOWN,OH,41.023258,-80.610254,MAHONING 44515,YOUNGSTOWN,OH,41.093903,-80.743966,MAHONING 44555,YOUNGSTOWN,OH,41.1073,-80.6513,MAHONING 44701,CANTON,OH,40.7962,-81.3768,STARK 44702,CANTON,OH,40.80267,-81.373946,STARK 44703,CANTON,OH,40.809791,-81.381439,STARK 44704,CANTON,OH,40.799076,-81.353701,STARK 44705,CANTON,OH,40.825866,-81.339903,STARK 44706,CANTON,OH,40.767959,-81.411903,STARK 44707,CANTON,OH,40.776885,-81.360407,STARK 44708,CANTON,OH,40.81196,-81.424116,STARK 44709,CANTON,OH,40.837227,-81.385947,STARK 44710,CANTON,OH,40.791107,-81.416946,STARK 44711,CANTON,OH,40.827,-81.3853,STARK 44712,CANTON,OH,40.827,-81.3853, 44714,CANTON,OH,40.827174,-81.360963,STARK 44718,CANTON,OH,40.85479,-81.448514,STARK 44721,CANTON,OH,40.883446,-81.33279,STARK 44735,CANTON,OH,40.8436,-81.4363,STARK 44750,CANTON,OH,40.827,-81.3853,STARK 44767,CANTON,OH,40.827,-81.3853,STARK 44799,CANTON,OH,40.827,-81.3853,STARK 44901,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 44902,MANSFIELD,OH,40.755937,-82.512269,RICHLAND 44903,MANSFIELD,OH,40.762258,-82.52538,RICHLAND 44904,MANSFIELD,OH,40.682568,-82.590605,RICHLAND 44905,MANSFIELD,OH,40.777173,-82.474609,RICHLAND 44906,MANSFIELD,OH,40.762679,-82.559295,RICHLAND 44907,MANSFIELD,OH,40.734483,-82.519833,RICHLAND 44999,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 45011,HAMILTON,OH,39.405906,-84.522117,BUTLER 45012,HAMILTON,OH,39.3993,-84.5638,BUTLER 45013,HAMILTON,OH,39.40619,-84.606655,BUTLER 45015,HAMILTON,OH,39.367152,-84.551187,BUTLER 45025,HAMILTON,OH,39.3993,-84.5638,BUTLER 45026,HAMILTON,OH,39.3993,-84.5638,BUTLER 45201,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45202,CINCINNATI,OH,39.107225,-84.501956,HAMILTON 45203,CINCINNATI,OH,39.10754,-84.525684,HAMILTON 45204,CINCINNATI,OH,39.102498,-84.566794,HAMILTON 45205,CINCINNATI,OH,39.110439,-84.575672,HAMILTON 45206,CINCINNATI,OH,39.126916,-84.485258,HAMILTON 45207,CINCINNATI,OH,39.139747,-84.470621,HAMILTON 45208,CINCINNATI,OH,39.136082,-84.435474,HAMILTON 45209,CINCINNATI,OH,39.151578,-84.427833,HAMILTON 45211,CINCINNATI,OH,39.152401,-84.596714,HAMILTON 45212,CINCINNATI,OH,39.162505,-84.452765,HAMILTON 45213,CINCINNATI,OH,39.182905,-84.418701,HAMILTON 45214,CINCINNATI,OH,39.120642,-84.541442,HAMILTON 45215,CINCINNATI,OH,39.230063,-84.457168,HAMILTON 45216,CINCINNATI,OH,39.199183,-84.479232,HAMILTON 45217,CINCINNATI,OH,39.161715,-84.497424,HAMILTON 45218,CINCINNATI,OH,39.266573,-84.519608,HAMILTON 45219,CINCINNATI,OH,39.127027,-84.513127,HAMILTON 45220,CINCINNATI,OH,39.143183,-84.521738,HAMILTON 45221,CINCINNATI,OH,39.1325,-84.5159,HAMILTON 45222,CINCINNATI,OH,39.193611,-84.448611,HAMILTON 45223,CINCINNATI,OH,39.169619,-84.547807,HAMILTON 45224,CINCINNATI,OH,39.203079,-84.53883,HAMILTON 45225,CINCINNATI,OH,39.144654,-84.553267,HAMILTON 45226,CINCINNATI,OH,39.117356,-84.431194,HAMILTON 45227,CINCINNATI,OH,39.15431,-84.387211,HAMILTON 45228,CINCINNATI,OH,39.066448,-84.423539,HAMILTON 45229,CINCINNATI,OH,39.149016,-84.489184,HAMILTON 45230,CINCINNATI,OH,39.080861,-84.378727,HAMILTON 45231,CINCINNATI,OH,39.241827,-84.543702,HAMILTON 45232,CINCINNATI,OH,39.185926,-84.514101,HAMILTON 45233,CINCINNATI,OH,39.11928,-84.669411,HAMILTON 45234,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45235,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45236,CINCINNATI,OH,39.207302,-84.394746,HAMILTON 45237,CINCINNATI,OH,39.18797,-84.457997,HAMILTON 45238,CINCINNATI,OH,39.111667,-84.608805,HAMILTON 45239,CINCINNATI,OH,39.207995,-84.579225,HAMILTON 45240,CINCINNATI,OH,39.286424,-84.526299,HAMILTON 45241,CINCINNATI,OH,39.276745,-84.391161,HAMILTON 45242,CINCINNATI,OH,39.239881,-84.359919,HAMILTON 45243,CINCINNATI,OH,39.187847,-84.359349,HAMILTON 45244,CINCINNATI,OH,39.107091,-84.347765,HAMILTON 45245,CINCINNATI,OH,39.091293,-84.277383,CLERMONT 45246,CINCINNATI,OH,39.28751,-84.472353,HAMILTON 45247,CINCINNATI,OH,39.207604,-84.631608,HAMILTON 45248,CINCINNATI,OH,39.159056,-84.651535,HAMILTON 45249,CINCINNATI,OH,39.275946,-84.326673,HAMILTON 45250,CINCINNATI,OH,39.1145,-84.5359,HAMILTON 45251,CINCINNATI,OH,39.253005,-84.587987,HAMILTON 45252,CINCINNATI,OH,39.266803,-84.62832,HAMILTON 45253,CINCINNATI,OH,39.223056,-84.586944,HAMILTON 45254,CINCINNATI,OH,39.068889,-84.277222,HAMILTON 45255,CINCINNATI,OH,39.070642,-84.330774,HAMILTON 45258,CINCINNATI,OH,39.1419,-84.6254,HAMILTON 45262,CINCINNATI,OH,39.1212,-84.5448,HAMILTON 45263,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45264,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45267,CINCINNATI,OH,39.1396,-84.5038,HAMILTON 45268,CINCINNATI,OH,39.1329,-84.5093,HAMILTON 45269,CINCINNATI,OH,39.107,-84.4991,HAMILTON 45270,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45271,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45273,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45274,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45275,CINCINNATI,OH,39.0424,-84.6608,HAMILTON 45277,CINCINNATI,OH,38.9846,-84.4889,HAMILTON 45280,CINCINNATI,OH,39.1616,-84.4569,HAMILTON 45296,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45298,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 45299,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45401,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45402,DAYTON,OH,39.756305,-84.189508,MONTGOMERY 45403,DAYTON,OH,39.761728,-84.149802,MONTGOMERY 45404,DAYTON,OH,39.78619,-84.162157,MONTGOMERY 45405,DAYTON,OH,39.78993,-84.213546,MONTGOMERY 45406,DAYTON,OH,39.782148,-84.237297,MONTGOMERY 45408,DAYTON,OH,39.739526,-84.228963,MONTGOMERY 45409,DAYTON,OH,39.728496,-84.182495,MONTGOMERY 45410,DAYTON,OH,39.74743,-84.16001,MONTGOMERY 45412,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45413,DAYTON,OH,39.8225,-84.1914,MONTGOMERY 45414,DAYTON,OH,39.828528,-84.202444,MONTGOMERY 45415,DAYTON,OH,39.835488,-84.261328,MONTGOMERY 45416,DAYTON,OH,39.805541,-84.259824,MONTGOMERY 45417,DAYTON,OH,39.752812,-84.246961,MONTGOMERY 45418,DAYTON,OH,39.716251,-84.267696,MONTGOMERY 45419,DAYTON,OH,39.715486,-84.163656,MONTGOMERY 45420,DAYTON,OH,39.721286,-84.133892,MONTGOMERY 45422,DAYTON,OH,39.76,-84.1959,MONTGOMERY 45423,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45424,DAYTON,OH,39.845339,-84.123287,MONTGOMERY 45426,DAYTON,OH,39.810548,-84.298283,MONTGOMERY 45427,DAYTON,OH,39.754527,-84.281884,MONTGOMERY 45428,DAYTON,OH,39.7489,-84.2531,MONTGOMERY 45429,DAYTON,OH,39.686392,-84.156077,MONTGOMERY 45430,DAYTON,OH,39.709381,-84.083596,MONTGOMERY 45431,DAYTON,OH,39.765396,-84.099802,GREENE 45432,DAYTON,OH,39.740774,-84.094157,GREENE 45433,DAYTON,OH,39.813758,-84.059048,GREENE 45434,DAYTON,OH,39.716552,-84.040385,GREENE 45435,DAYTON,OH,39.7578,-84.1777,GREENE 45437,DAYTON,OH,39.7692,-84.1226,MONTGOMERY 45439,DAYTON,OH,39.689617,-84.21626,MONTGOMERY 45440,DAYTON,OH,39.674854,-84.113573,MONTGOMERY 45441,DAYTON,OH,39.6458,-84.1669,MONTGOMERY 45448,DAYTON,OH,39.6325,-84.1564,MONTGOMERY 45449,DAYTON,OH,39.662098,-84.237887,MONTGOMERY 45454,DAYTON,OH,39.6976,-84.2213,MONTGOMERY 45458,DAYTON,OH,39.615755,-84.162697,MONTGOMERY 45459,DAYTON,OH,39.645957,-84.166422,MONTGOMERY 45463,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45469,DAYTON,OH,39.7331,-84.1804,MONTGOMERY 45470,DAYTON,OH,39.6274,-84.2775,MONTGOMERY 45475,DAYTON,OH,39.6371,-84.2205,MONTGOMERY 45479,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45481,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45482,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45490,DAYTON,OH,39.8968,-84.2227,MONTGOMERY 45501,SPRINGFIELD,OH,39.924167,-83.808889,CLARK 45502,SPRINGFIELD,OH,39.930486,-83.841338,CLARK 45503,SPRINGFIELD,OH,39.9528,-83.78043,CLARK 45504,SPRINGFIELD,OH,39.940793,-83.834302,CLARK 45505,SPRINGFIELD,OH,39.910588,-83.785593,CLARK 45506,SPRINGFIELD,OH,39.910418,-83.827512,CLARK 45801,LIMA,OH,40.764066,-84.097296,ALLEN 45802,LIMA,OH,40.7425,-84.105278,ALLEN 45804,LIMA,OH,40.727476,-84.089023,ALLEN 45805,LIMA,OH,40.739911,-84.14591,ALLEN 45806,LIMA,OH,40.675926,-84.144049,AUGLAIZE 45807,LIMA,OH,40.791599,-84.163966,ALLEN 45999,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 46011,ANDERSON,IN,40.114577,-85.725305,MADISON 46012,ANDERSON,IN,40.130947,-85.653591,MADISON 46013,ANDERSON,IN,40.061865,-85.680073,MADISON 46014,ANDERSON,IN,40.0865,-85.6837,MADISON 46015,ANDERSON,IN,40.1059,-85.6784,MADISON 46016,ANDERSON,IN,40.098799,-85.684566,MADISON 46017,ANDERSON,IN,40.096431,-85.601493,MADISON 46018,ANDERSON,IN,40.1052,-85.6802,MADISON 46201,INDIANAPOLIS,IN,39.775006,-86.109348,MARION 46202,INDIANAPOLIS,IN,39.785063,-86.159502,MARION 46203,INDIANAPOLIS,IN,39.743025,-86.117859,MARION 46204,INDIANAPOLIS,IN,39.771986,-86.153491,MARION 46205,INDIANAPOLIS,IN,39.826761,-86.138582,MARION 46206,INDIANAPOLIS,IN,39.761,-86.161,MARION 46207,INDIANAPOLIS,IN,39.761,-86.161,MARION 46208,INDIANAPOLIS,IN,39.829905,-86.179444,MARION 46209,INDIANAPOLIS,IN,39.761,-86.161,MARION 46211,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46214,INDIANAPOLIS,IN,39.792678,-86.289952,MARION 46216,INDIANAPOLIS,IN,39.857731,-86.016688,MARION 46217,INDIANAPOLIS,IN,39.664141,-86.175394,MARION 46218,INDIANAPOLIS,IN,39.80817,-86.101425,MARION 46219,INDIANAPOLIS,IN,39.782092,-86.049533,MARION 46220,INDIANAPOLIS,IN,39.864685,-86.11815,MARION 46221,INDIANAPOLIS,IN,39.750885,-86.19243,MARION 46222,INDIANAPOLIS,IN,39.788971,-86.213574,MARION 46223,INDIANAPOLIS,IN,39.761,-86.161,MARION 46225,INDIANAPOLIS,IN,39.740599,-86.156944,MARION 46226,INDIANAPOLIS,IN,39.836969,-86.048945,MARION 46227,INDIANAPOLIS,IN,39.675,-86.129817,MARION 46228,INDIANAPOLIS,IN,39.8456,-86.2051,MARION 46229,INDIANAPOLIS,IN,39.792219,-85.983826,MARION 46230,INDIANAPOLIS,IN,39.8686,-86.1443,MARION 46231,INDIANAPOLIS,IN,39.740637,-86.318289,MARION 46234,INDIANAPOLIS,IN,39.788438,-86.324117,MARION 46235,INDIANAPOLIS,IN,39.836,-85.9829,MARION 46236,INDIANAPOLIS,IN,39.849588,-85.985059,MARION 46237,INDIANAPOLIS,IN,39.686777,-86.07891,MARION 46239,INDIANAPOLIS,IN,39.721826,-86.008209,MARION 46240,INDIANAPOLIS,IN,39.9057,-86.129548,MARION 46241,INDIANAPOLIS,IN,39.723814,-86.250856,MARION 46242,INDIANAPOLIS,IN,39.7279,-86.2559,MARION 46244,INDIANAPOLIS,IN,39.7735,-86.1583,MARION 46247,INDIANAPOLIS,IN,39.665,-86.127778,MARION 46249,INDIANAPOLIS,IN,39.8552,-86.0138,MARION 46250,INDIANAPOLIS,IN,39.9069,-86.069112,MARION 46251,INDIANAPOLIS,IN,39.7269,-86.268,MARION 46253,INDIANAPOLIS,IN,39.718056,-86.196389,MARION 46254,INDIANAPOLIS,IN,39.841379,-86.2638,MARION 46255,INDIANAPOLIS,IN,39.761,-86.161,MARION 46256,INDIANAPOLIS,IN,39.90114,-86.023877,MARION 46259,INDIANAPOLIS,IN,39.660901,-85.992603,MARION 46260,INDIANAPOLIS,IN,39.897488,-86.184809,MARION 46262,INDIANAPOLIS,IN,37.0625,-95.677068,MARION 46266,INDIANAPOLIS,IN,39.761,-86.161,MARION 46268,INDIANAPOLIS,IN,39.900296,-86.222104,MARION 46274,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46275,INDIANAPOLIS,IN,39.761,-86.161,MARION 46277,INDIANAPOLIS,IN,39.761,-86.161,MARION 46278,INDIANAPOLIS,IN,39.883858,-86.291455,MARION 46280,INDIANAPOLIS,IN,39.938417,-86.13894,HAMILTON 46282,INDIANAPOLIS,IN,39.761,-86.161,MARION 46283,INDIANAPOLIS,IN,39.761,-86.161,MARION 46285,INDIANAPOLIS,IN,39.761,-86.161,MARION 46290,INDIANAPOLIS,IN,39.93077,-86.167118,HAMILTON 46291,INDIANAPOLIS,IN,39.761,-86.161,MARION 46295,INDIANAPOLIS,IN,39.673,-86.1931,MARION 46296,INDIANAPOLIS,IN,39.7683,-86.1582,MARION 46298,INDIANAPOLIS,IN,39.8966,-86.2313,MARION 46401,GARY,IN,41.593333,-87.346389,LAKE 46402,GARY,IN,41.599711,-87.338548,LAKE 46403,GARY,IN,41.603612,-87.258984,LAKE 46404,GARY,IN,41.589937,-87.373153,LAKE 46406,GARY,IN,41.587806,-87.40621,LAKE 46407,GARY,IN,41.580429,-87.334958,LAKE 46408,GARY,IN,41.542178,-87.35883,LAKE 46409,GARY,IN,41.541247,-87.327126,LAKE 46601,SOUTH BEND,IN,41.672699,-86.253489,ST JOSEPH 46604,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46613,SOUTH BEND,IN,41.654636,-86.247865,ST JOSEPH 46614,SOUTH BEND,IN,41.625461,-86.243278,ST JOSEPH 46615,SOUTH BEND,IN,41.67413,-86.210375,ST JOSEPH 46616,SOUTH BEND,IN,41.691894,-86.264739,ST JOSEPH 46617,SOUTH BEND,IN,41.684966,-86.2351,ST JOSEPH 46619,SOUTH BEND,IN,41.667397,-86.315266,ST JOSEPH 46620,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46624,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46626,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46628,SOUTH BEND,IN,41.701525,-86.294929,ST JOSEPH 46634,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46635,SOUTH BEND,IN,41.716768,-86.207806,ST JOSEPH 46637,SOUTH BEND,IN,41.729936,-86.240694,ST JOSEPH 46660,SOUTH BEND,IN,41.6944,-86.2143,ST JOSEPH 46680,SOUTH BEND,IN,41.5762,-86.2407,ST JOSEPH 46699,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46801,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46802,FORT WAYNE,IN,41.070717,-85.15431,ALLEN 46803,FORT WAYNE,IN,41.069452,-85.107362,ALLEN 46804,FORT WAYNE,IN,41.050843,-85.256013,ALLEN 46805,FORT WAYNE,IN,41.097663,-85.118865,ALLEN 46806,FORT WAYNE,IN,41.047988,-85.113496,ALLEN 46807,FORT WAYNE,IN,41.049054,-85.146167,ALLEN 46808,FORT WAYNE,IN,41.093877,-85.162121,ALLEN 46809,FORT WAYNE,IN,41.02543,-85.1834,ALLEN 46814,FORT WAYNE,IN,41.0457,-85.3023,ALLEN 46815,FORT WAYNE,IN,41.105318,-85.062397,ALLEN 46816,FORT WAYNE,IN,41.016519,-85.097573,ALLEN 46818,FORT WAYNE,IN,41.146847,-85.206686,ALLEN 46819,FORT WAYNE,IN,41.005167,-85.152743,ALLEN 46825,FORT WAYNE,IN,41.146482,-85.123156,ALLEN 46835,FORT WAYNE,IN,41.137051,-85.068531,ALLEN 46845,FORT WAYNE,IN,41.195783,-85.119088,ALLEN 46850,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46851,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46852,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46853,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46854,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46855,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46856,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46857,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46858,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46859,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46860,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46861,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46862,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46863,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46864,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46865,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46866,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46867,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46868,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46869,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46885,FORT WAYNE,IN,41.1204,-85.0651,ALLEN 46895,FORT WAYNE,IN,41.1057,-85.1145,ALLEN 46896,FORT WAYNE,IN,41.0073,-85.0625,ALLEN 46897,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46898,FORT WAYNE,IN,41.1305,-85.1288,ALLEN 46899,FORT WAYNE,IN,41.0298,-85.1663,ALLEN 47130,JEFFERSONVILLE,IN,38.307767,-85.735885,CLARK 47131,JEFFERSONVILLE,IN,38.296667,-85.76,CLARK 47132,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47133,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47134,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47144,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47190,JEFFERSONVILLE,IN,38.28647,-85.732145,CLARK 47199,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47302,MUNCIE,IN,40.168414,-85.380689,DELAWARE 47303,MUNCIE,IN,40.217992,-85.378966,DELAWARE 47304,MUNCIE,IN,40.211134,-85.429115,DELAWARE 47305,MUNCIE,IN,40.193299,-85.386163,DELAWARE 47306,MUNCIE,IN,40.192739,-85.410153,DELAWARE 47307,MUNCIE,IN,40.1248,-85.3404,DELAWARE 47308,MUNCIE,IN,40.1314,-85.3764,DELAWARE 47401,BLOOMINGTON,IN,39.140057,-86.508262,MONROE 47402,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47403,BLOOMINGTON,IN,39.12632,-86.576867,MONROE 47404,BLOOMINGTON,IN,39.195026,-86.57572,MONROE 47405,BLOOMINGTON,IN,39.168,-86.5205,MONROE 47406,BLOOMINGTON,IN,39.1748,-86.5135,MONROE 47407,BLOOMINGTON,IN,39.2458,-86.4546,MONROE 47408,BLOOMINGTON,IN,39.183175,-86.505836,MONROE 47490,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47701,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47702,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47703,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47704,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47705,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47706,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47708,EVANSVILLE,IN,37.971818,-87.571973,VANDERBURGH 47710,EVANSVILLE,IN,38.008617,-87.574569,VANDERBURGH 47711,EVANSVILLE,IN,38.076377,-87.535236,VANDERBURGH 47712,EVANSVILLE,IN,37.998484,-87.634682,VANDERBURGH 47713,EVANSVILLE,IN,37.962326,-87.55768,VANDERBURGH 47714,EVANSVILLE,IN,37.959076,-87.529302,VANDERBURGH 47715,EVANSVILLE,IN,37.967815,-87.485526,VANDERBURGH 47716,EVANSVILLE,IN,37.9624,-87.4924,VANDERBURGH 47719,EVANSVILLE,IN,38.087,-87.5321,VANDERBURGH 47720,EVANSVILLE,IN,37.998832,-87.538793,VANDERBURGH 47721,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47722,EVANSVILLE,IN,37.9734,-87.5301,VANDERBURGH 47724,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47725,EVANSVILLE,IN,38.0934,-87.5243,VANDERBURGH 47727,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47728,EVANSVILLE,IN,37.9625,-87.5309,VANDERBURGH 47730,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47731,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47732,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47733,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47734,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47735,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47736,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47737,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47739,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47740,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47741,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47744,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47747,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47750,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47801,TERRE HAUTE,IN,39.4666,-87.4138,VIGO 47802,TERRE HAUTE,IN,39.40697,-87.402019,VIGO 47803,TERRE HAUTE,IN,39.465696,-87.353967,VIGO 47804,TERRE HAUTE,IN,39.493665,-87.394494,VIGO 47805,TERRE HAUTE,IN,39.535981,-87.341109,VIGO 47807,TERRE HAUTE,IN,39.470974,-87.400859,VIGO 47808,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47809,TERRE HAUTE,IN,39.4719,-87.4039,VIGO 47811,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47812,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47813,TERRE HAUTE,IN,39.4667,-87.4068, 47814,TERRE HAUTE,IN,39.4667,-87.4068, 47901,LAFAYETTE,IN,40.417743,-86.888358,TIPPECANOE 47902,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47903,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47904,LAFAYETTE,IN,40.427649,-86.873464,TIPPECANOE 47905,LAFAYETTE,IN,40.400054,-86.860236,TIPPECANOE 47909,LAFAYETTE,IN,40.3589,-86.8875,TIPPECANOE 47933,CRAWFORDSVILLE,IN,40.032524,-86.907424,MONTGOMERY 47934,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47935,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47936,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47937,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47938,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47939,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 48007,TROY,MI,42.5609,-83.1471,OAKLAND 48033,SOUTHFIELD,MI,42.46302,-83.288048,OAKLAND 48034,SOUTHFIELD,MI,42.477676,-83.288295,OAKLAND 48037,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48075,SOUTHFIELD,MI,42.463831,-83.225539,OAKLAND 48076,SOUTHFIELD,MI,42.499915,-83.22971,OAKLAND 48083,TROY,MI,42.559668,-83.113771,OAKLAND 48084,TROY,MI,42.562696,-83.179947,OAKLAND 48085,TROY,MI,42.5983,-83.1178,OAKLAND 48086,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48088,WARREN,MI,42.5159,-82.9824,MACOMB 48089,WARREN,MI,42.468494,-82.997385,MACOMB 48090,WARREN,MI,42.5009,-83.0461,MACOMB 48091,WARREN,MI,42.466463,-83.059263,MACOMB 48092,WARREN,MI,42.512459,-83.064278,MACOMB 48093,WARREN,MI,42.514943,-82.996764,MACOMB 48098,TROY,MI,42.598118,-83.145001,OAKLAND 48099,TROY,MI,42.5609,-83.1471,OAKLAND 48103,ANN ARBOR,MI,42.279379,-83.783998,WASHTENAW 48104,ANN ARBOR,MI,42.26939,-83.728156,WASHTENAW 48105,ANN ARBOR,MI,42.304247,-83.706756,WASHTENAW 48106,ANN ARBOR,MI,42.2723,-83.7747,WASHTENAW 48107,ANN ARBOR,MI,42.2796,-83.7461,WASHTENAW 48108,ANN ARBOR,MI,42.232782,-83.701481,WASHTENAW 48109,ANN ARBOR,MI,42.293,-83.715363,WASHTENAW 48113,ANN ARBOR,MI,42.3107,-83.6922,WASHTENAW 48120,DEARBORN,MI,42.305295,-83.160488,WAYNE 48121,DEARBORN,MI,42.3115,-83.1913,WAYNE 48123,DEARBORN,MI,42.3041,-83.2491,WAYNE 48124,DEARBORN,MI,42.294141,-83.253565,WAYNE 48126,DEARBORN,MI,42.334882,-83.180065,WAYNE 48128,DEARBORN,MI,42.319981,-83.270131,WAYNE 48201,DETROIT,MI,42.347429,-83.060398,WAYNE 48202,DETROIT,MI,42.377033,-83.079613,WAYNE 48204,DETROIT,MI,42.366098,-83.142151,WAYNE 48205,DETROIT,MI,42.431259,-82.981279,WAYNE 48206,DETROIT,MI,42.374893,-83.108695,WAYNE 48207,DETROIT,MI,42.352373,-83.027101,WAYNE 48208,DETROIT,MI,42.34947,-83.092711,WAYNE 48209,DETROIT,MI,42.309746,-83.115464,WAYNE 48210,DETROIT,MI,42.337603,-83.130281,WAYNE 48211,DETROIT,MI,42.380922,-83.040945,WAYNE 48213,DETROIT,MI,42.39816,-82.99253,WAYNE 48214,DETROIT,MI,42.366944,-82.993798,WAYNE 48215,DETROIT,MI,42.377272,-82.951319,WAYNE 48216,DETROIT,MI,42.327467,-83.082656,WAYNE 48217,DETROIT,MI,42.271914,-83.154545,WAYNE 48219,DETROIT,MI,42.426033,-83.249495,WAYNE 48221,DETROIT,MI,42.425998,-83.149976,WAYNE 48222,DETROIT,MI,42.2927,-83.1386,WAYNE 48223,DETROIT,MI,42.394453,-83.245403,WAYNE 48224,DETROIT,MI,42.409808,-82.944061,WAYNE 48226,DETROIT,MI,42.333346,-83.048432,WAYNE 48227,DETROIT,MI,42.388303,-83.193732,WAYNE 48228,DETROIT,MI,42.35473,-83.216753,WAYNE 48231,DETROIT,MI,42.3316,-83.05,WAYNE 48232,DETROIT,MI,42.2927,-83.1386,WAYNE 48233,DETROIT,MI,42.2927,-83.1386,WAYNE 48234,DETROIT,MI,42.4337,-83.043383,WAYNE 48235,DETROIT,MI,42.426098,-83.195124,WAYNE 48238,DETROIT,MI,42.395932,-83.141145,WAYNE 48242,DETROIT,MI,42.220718,-83.377081,WAYNE 48243,DETROIT,MI,42.3305,-83.0385,WAYNE 48244,DETROIT,MI,42.2927,-83.1386,WAYNE 48255,DETROIT,MI,42.2927,-83.1386,WAYNE 48260,DETROIT,MI,42.2927,-83.1386,WAYNE 48264,DETROIT,MI,42.2927,-83.1386,WAYNE 48265,DETROIT,MI,42.4388,-82.9293,WAYNE 48266,DETROIT,MI,42.2927,-83.1386,WAYNE 48267,DETROIT,MI,42.2927,-83.1386,WAYNE 48268,DETROIT,MI,42.2927,-83.1386,WAYNE 48269,DETROIT,MI,42.2927,-83.1386,WAYNE 48272,DETROIT,MI,42.2927,-83.1386,WAYNE 48275,DETROIT,MI,42.2927,-83.1386,WAYNE 48277,DETROIT,MI,42.2927,-83.1386,WAYNE 48278,DETROIT,MI,42.2927,-83.1386,WAYNE 48279,DETROIT,MI,42.2927,-83.1386,WAYNE 48288,DETROIT,MI,42.4221,-83.1034,WAYNE 48331,FARMINGTON,MI,42.510042,-83.405433,OAKLAND 48332,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48333,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48334,FARMINGTON,MI,42.506798,-83.35198,OAKLAND 48335,FARMINGTON,MI,42.463055,-83.400134,OAKLAND 48336,FARMINGTON,MI,42.460938,-83.345465,OAKLAND 48397,WARREN,MI,42.4916,-83.0402,MACOMB 48501,FLINT,MI,43.0233,-83.6856,GENESEE 48502,FLINT,MI,43.012321,-83.687768,GENESEE 48503,FLINT,MI,43.012836,-83.691429,GENESEE 48504,FLINT,MI,43.04247,-83.729908,GENESEE 48505,FLINT,MI,43.063369,-83.700093,GENESEE 48506,FLINT,MI,43.052596,-83.640192,GENESEE 48507,FLINT,MI,42.97303,-83.688999,GENESEE 48531,FLINT,MI,43.0467,-83.7444,GENESEE 48532,FLINT,MI,43.01021,-83.768576,GENESEE 48550,FLINT,MI,43.0233,-83.6856,GENESEE 48551,FLINT,MI,42.9645,-83.7185,GENESEE 48552,FLINT,MI,42.9645,-83.7185,GENESEE 48553,FLINT,MI,42.9645,-83.7185,GENESEE 48554,FLINT,MI,42.9724,-83.7952,GENESEE 48555,FLINT,MI,43.0097,-83.7093,GENESEE 48556,FLINT,MI,43.0233,-83.6856,GENESEE 48557,FLINT,MI,42.9645,-83.7185,GENESEE 48559,FLINT,MI,43.0233,-83.6856,GENESEE 48601,SAGINAW,MI,43.404692,-83.915626,SAGINAW 48602,SAGINAW,MI,43.424838,-83.974455,SAGINAW 48603,SAGINAW,MI,43.43251,-84.03028,SAGINAW 48604,SAGINAW,MI,43.473223,-83.951421,SAGINAW 48605,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48606,SAGINAW,MI,43.432,-83.9341,SAGINAW 48607,SAGINAW,MI,43.430141,-83.931872,SAGINAW 48608,SAGINAW,MI,43.4392,-84.0292,SAGINAW 48609,SAGINAW,MI,43.411,-84.0925,SAGINAW 48638,SAGINAW,MI,43.418551,-84.016734,SAGINAW 48640,MIDLAND,MI,43.637562,-84.26796,MIDLAND 48641,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48642,MIDLAND,MI,43.637488,-84.197941,MIDLAND 48663,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48667,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48670,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48674,MIDLAND,MI,43.6165,-84.1972,MIDLAND 48686,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48901,LANSING,MI,42.7323,-84.556,INGHAM 48906,LANSING,MI,42.763464,-84.558043,INGHAM 48908,LANSING,MI,42.7335,-84.6391,EATON 48909,LANSING,MI,42.6849,-84.4986,INGHAM 48910,LANSING,MI,42.700784,-84.549005,INGHAM 48911,LANSING,MI,42.679727,-84.577168,INGHAM 48912,LANSING,MI,42.737115,-84.524414,INGHAM 48913,LANSING,MI,42.6849,-84.4986,INGHAM 48915,LANSING,MI,42.739074,-84.570398,INGHAM 48916,LANSING,MI,42.6636,-84.5361,INGHAM 48917,LANSING,MI,42.737621,-84.62439,EATON 48918,LANSING,MI,42.6849,-84.4986,INGHAM 48919,LANSING,MI,42.6849,-84.4986,INGHAM 48921,LANSING,MI,42.6849,-84.4986,INGHAM 48922,LANSING,MI,42.6849,-84.4986,INGHAM 48924,LANSING,MI,42.6849,-84.4986,INGHAM 48929,LANSING,MI,42.6849,-84.4986,INGHAM 48930,LANSING,MI,42.6849,-84.4986,INGHAM 48933,LANSING,MI,42.733429,-84.557142,INGHAM 48937,LANSING,MI,42.7487,-84.5587,INGHAM 48950,LANSING,MI,42.6849,-84.4986,INGHAM 48951,LANSING,MI,42.7327,-84.5558,INGHAM 48956,LANSING,MI,42.6849,-84.4986,INGHAM 48980,LANSING,MI,42.6849,-84.4986,INGHAM 49001,KALAMAZOO,MI,42.273565,-85.545653,KALAMAZOO 49003,KALAMAZOO,MI,42.2661,-85.5663,KALAMAZOO 49004,KALAMAZOO,MI,42.326538,-85.541959,KALAMAZOO 49005,KALAMAZOO,MI,42.2919,-85.5798,KALAMAZOO 49006,KALAMAZOO,MI,42.2938,-85.6251,KALAMAZOO 49007,KALAMAZOO,MI,42.295688,-85.613722,KALAMAZOO 49008,KALAMAZOO,MI,42.262432,-85.609645,KALAMAZOO 49009,KALAMAZOO,MI,42.280947,-85.686333,KALAMAZOO 49014,BATTLE CREEK,MI,42.3053,-85.1389,CALHOUN 49015,BATTLE CREEK,MI,42.302806,-85.212825,CALHOUN 49016,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49017,BATTLE CREEK,MI,42.332218,-85.181106,CALHOUN 49018,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49019,KALAMAZOO,MI,42.2916,-85.5872,KALAMAZOO 49037,BATTLE CREEK,MI,42.3211522,-85.1797142,CALHOUN 49048,KALAMAZOO,MI,42.292,-85.5261,KALAMAZOO 49440,MUSKEGON,MI,43.232589,-86.249191,MUSKEGON 49441,MUSKEGON,MI,43.196184,-86.273819,MUSKEGON 49442,MUSKEGON,MI,43.232876,-86.188467,MUSKEGON 49443,MUSKEGON,MI,43.234167,-86.248333,MUSKEGON 49444,MUSKEGON,MI,43.195046,-86.216208,MUSKEGON 49445,MUSKEGON,MI,43.282873,-86.273297,MUSKEGON 49501,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49502,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49503,GRAND RAPIDS,MI,42.965879,-85.65273,KENT 49504,GRAND RAPIDS,MI,42.98392,-85.725543,KENT 49505,GRAND RAPIDS,MI,43.012025,-85.630931,KENT 49506,GRAND RAPIDS,MI,42.943978,-85.621317,KENT 49507,GRAND RAPIDS,MI,42.931788,-85.65417,KENT 49508,GRAND RAPIDS,MI,42.875653,-85.624179,KENT 49510,GRAND RAPIDS,MI,43.021,-85.6106,KENT 49512,GRAND RAPIDS,MI,42.89269,-85.578156,KENT 49514,GRAND RAPIDS,MI,42.9872,-85.7092,KENT 49515,GRAND RAPIDS,MI,43.0136,-85.6254,KENT 49516,GRAND RAPIDS,MI,42.9567,-85.6331,KENT 49518,GRAND RAPIDS,MI,42.8839,-85.6252,KENT 49523,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49525,GRAND RAPIDS,MI,43.0225,-85.6009,KENT 49528,GRAND RAPIDS,MI,42.9039,-85.6684,KENT 49530,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49534,GRAND RAPIDS,MI,43.008883,-85.774227,KENT 49544,GRAND RAPIDS,MI,43.0255,-85.7131,KENT 49546,GRAND RAPIDS,MI,42.928029,-85.548346,KENT 49548,GRAND RAPIDS,MI,42.867048,-85.660767,KENT 49550,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49555,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49560,GRAND RAPIDS,MI,42.8733,-85.6242,KENT 49588,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49599,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 50301,DES MOINES,IA,41.6005,-93.6088,POLK 50302,DES MOINES,IA,41.6005,-93.6088,POLK 50303,DES MOINES,IA,41.6005,-93.6088,POLK 50304,DES MOINES,IA,41.6005,-93.6088,POLK 50305,DES MOINES,IA,41.6005,-93.6088,POLK 50306,DES MOINES,IA,41.6005,-93.6088,POLK 50307,DES MOINES,IA,41.6005,-93.6088,POLK 50308,DES MOINES,IA,41.6005,-93.6088,POLK 50309,DES MOINES,IA,41.588743,-93.621175,POLK 50310,DES MOINES,IA,41.625475,-93.673611,POLK 50311,DES MOINES,IA,41.601562,-93.674371,POLK 50312,DES MOINES,IA,41.585453,-93.671908,POLK 50313,DES MOINES,IA,41.638085,-93.620305,POLK 50314,DES MOINES,IA,41.603003,-93.632993,POLK 50315,DES MOINES,IA,41.544394,-93.619226,POLK 50316,DES MOINES,IA,41.609228,-93.599966,POLK 50317,DES MOINES,IA,41.612499,-93.549446,POLK 50318,DES MOINES,IA,41.6005,-93.6088,POLK 50319,DES MOINES,IA,41.594,-93.6146,POLK 50320,DES MOINES,IA,41.548693,-93.582674,POLK 50321,DES MOINES,IA,41.547628,-93.661846,POLK 50327,DES MOINES,IA,41.583889,-93.519722,POLK 50328,DES MOINES,IA,41.6005,-93.6088,POLK 50329,DES MOINES,IA,41.6005,-93.6088,POLK 50330,DES MOINES,IA,41.6005,-93.6088,POLK 50331,DES MOINES,IA,41.6005,-93.6088,POLK 50332,DES MOINES,IA,41.6005,-93.6088,POLK 50333,DES MOINES,IA,41.6564,-93.623,POLK 50334,DES MOINES,IA,41.6005,-93.6088,POLK 50335,DES MOINES,IA,41.6005,-93.6088,POLK 50336,DES MOINES,IA,41.6005,-93.6088,POLK 50339,DES MOINES,IA,41.6005,-93.6088,POLK 50340,DES MOINES,IA,41.6005,-93.6088,POLK 50347,DES MOINES,IA,41.6005,-93.6088,POLK 50350,DES MOINES,IA,41.6005,-93.6088, 50359,DES MOINES,IA,41.6005,-93.6088,POLK 50360,DES MOINES,IA,41.6005,-93.6088,POLK 50361,DES MOINES,IA,41.6005,-93.6088,POLK 50362,DES MOINES,IA,41.6005,-93.6088,POLK 50363,DES MOINES,IA,41.6005,-93.6088,POLK 50364,DES MOINES,IA,41.6005,-93.6088,POLK 50367,DES MOINES,IA,41.6005,-93.6088,POLK 50368,DES MOINES,IA,41.6005,-93.6088,POLK 50369,DES MOINES,IA,41.6005,-93.6088,POLK 50380,DES MOINES,IA,41.6005,-93.6088,POLK 50381,DES MOINES,IA,41.6005,-93.6088,POLK 50391,DES MOINES,IA,41.6005,-93.6088,POLK 50392,DES MOINES,IA,41.5878,-93.6271,POLK 50393,DES MOINES,IA,41.6005,-93.6088,POLK 50394,DES MOINES,IA,41.6005,-93.6088,POLK 50395,DES MOINES,IA,41.6005,-93.6088,POLK 50396,DES MOINES,IA,41.6005,-93.6088,POLK 50397,DES MOINES,IA,41.6005,-93.6088,POLK 50936,DES MOINES,IA,41.6005,-93.6088,POLK 50940,DES MOINES,IA,41.6005,-93.6088,POLK 50947,DES MOINES,IA,41.6005,-93.6088,POLK 50950,DES MOINES,IA,41.6005,-93.6088,POLK 50980,DES MOINES,IA,41.6005,-93.6088,POLK 50981,DES MOINES,IA,41.6005,-93.6088,POLK 51101,SIOUX CITY,IA,42.497223,-96.40292,WOODBURY 51102,SIOUX CITY,IA,42.5,-96.4,WOODBURY 51103,SIOUX CITY,IA,42.506793,-96.42951,WOODBURY 51104,SIOUX CITY,IA,42.52536,-96.400453,WOODBURY 51105,SIOUX CITY,IA,42.503224,-96.382855,WOODBURY 51106,SIOUX CITY,IA,42.467057,-96.352755,WOODBURY 51108,SIOUX CITY,IA,42.546891,-96.361695,WOODBURY 51109,SIOUX CITY,IA,42.517287,-96.480304,WOODBURY 51111,SIOUX CITY,IA,42.408912,-96.371294,WOODBURY 52240,IOWA CITY,IA,41.654899,-91.511192,JOHNSON 52242,IOWA CITY,IA,41.6603,-91.541,JOHNSON 52243,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52244,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52245,IOWA CITY,IA,41.664916,-91.51507,JOHNSON 52246,IOWA CITY,IA,41.643813,-91.566882,JOHNSON 52401,CEDAR RAPIDS,IA,41.9743,-91.655382,LINN 52402,CEDAR RAPIDS,IA,42.018778,-91.661222,LINN 52403,CEDAR RAPIDS,IA,41.984312,-91.625919,LINN 52404,CEDAR RAPIDS,IA,41.952108,-91.685286,LINN 52405,CEDAR RAPIDS,IA,41.980422,-91.709816,LINN 52406,CEDAR RAPIDS,IA,41.9189,-91.6785,LINN 52407,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52408,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52409,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52410,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52411,CEDAR RAPIDS,IA,42.0421,-91.7178,LINN 52497,CEDAR RAPIDS,IA,42.0213,-91.66,LINN 52498,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52499,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52801,DAVENPORT,IA,41.5218,-90.5743,SCOTT 52802,DAVENPORT,IA,41.516358,-90.61409,SCOTT 52803,DAVENPORT,IA,41.538509,-90.561348,SCOTT 52804,DAVENPORT,IA,41.538603,-90.61147,SCOTT 52805,DAVENPORT,IA,41.521,-90.5865,SCOTT 52806,DAVENPORT,IA,41.573271,-90.603845,SCOTT 52807,DAVENPORT,IA,41.561822,-90.540262,SCOTT 52808,DAVENPORT,IA,41.521,-90.5865,SCOTT 52809,DAVENPORT,IA,41.521,-90.5865,SCOTT 53201,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53202,MILWAUKEE,WI,43.050601,-87.896792,MILWAUKEE 53203,MILWAUKEE,WI,43.040299,-87.915375,MILWAUKEE 53204,MILWAUKEE,WI,43.015778,-87.931685,MILWAUKEE 53205,MILWAUKEE,WI,43.052841,-87.935332,MILWAUKEE 53206,MILWAUKEE,WI,43.075324,-87.934714,MILWAUKEE 53207,MILWAUKEE,WI,42.981405,-87.894598,MILWAUKEE 53208,MILWAUKEE,WI,43.048775,-87.962454,MILWAUKEE 53209,MILWAUKEE,WI,43.118765,-87.947834,MILWAUKEE 53210,MILWAUKEE,WI,43.068545,-87.971466,MILWAUKEE 53211,MILWAUKEE,WI,43.080517,-87.885078,MILWAUKEE 53212,MILWAUKEE,WI,43.071195,-87.908415,MILWAUKEE 53213,MILWAUKEE,WI,43.051316,-88.000757,MILWAUKEE 53214,MILWAUKEE,WI,43.019113,-88.010757,MILWAUKEE 53215,MILWAUKEE,WI,43.000411,-87.94174,MILWAUKEE 53216,MILWAUKEE,WI,43.085868,-87.974218,MILWAUKEE 53217,MILWAUKEE,WI,43.14086,-87.907261,MILWAUKEE 53218,MILWAUKEE,WI,43.11218,-87.993161,MILWAUKEE 53219,MILWAUKEE,WI,42.995909,-87.994368,MILWAUKEE 53220,MILWAUKEE,WI,42.968186,-87.992209,MILWAUKEE 53221,MILWAUKEE,WI,42.954864,-87.944734,MILWAUKEE 53222,MILWAUKEE,WI,43.08283,-88.02687,MILWAUKEE 53223,MILWAUKEE,WI,43.162374,-87.989818,MILWAUKEE 53224,MILWAUKEE,WI,43.159415,-88.032744,MILWAUKEE 53225,MILWAUKEE,WI,43.115416,-88.03464,MILWAUKEE 53226,MILWAUKEE,WI,43.050006,-88.041386,MILWAUKEE 53227,MILWAUKEE,WI,42.994919,-88.036384,MILWAUKEE 53228,MILWAUKEE,WI,42.970251,-88.034638,MILWAUKEE 53233,MILWAUKEE,WI,43.040738,-87.93566,MILWAUKEE 53234,MILWAUKEE,WI,43.0031,-87.9679,MILWAUKEE 53235,MILWAUKEE,WI,42.9691,-87.8763,MILWAUKEE 53237,MILWAUKEE,WI,42.9443,-87.9093,MILWAUKEE 53244,MILWAUKEE,WI,43.0408,-87.9912,MILWAUKEE 53259,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53263,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53267,MILWAUKEE,WI,43.0439,-87.9097,MILWAUKEE 53268,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53274,MILWAUKEE,WI,43.0345,-87.9153,MILWAUKEE 53278,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53288,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53290,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53293,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53295,MILWAUKEE,WI,43.0186,-87.9772,MILWAUKEE 53401,RACINE,WI,42.726,-87.7825,RACINE 53402,RACINE,WI,42.772596,-87.795985,RACINE 53403,RACINE,WI,42.706015,-87.801375,RACINE 53404,RACINE,WI,42.743348,-87.8053,RACINE 53405,RACINE,WI,42.716112,-87.823329,RACINE 53406,RACINE,WI,42.724162,-87.855104,RACINE 53407,RACINE,WI,42.7261,-87.7827,RACINE 53408,RACINE,WI,42.717,-87.8395,RACINE 53490,RACINE,WI,42.6868,-87.8378, 53701,MADISON,WI,43.073,-89.3817,DANE 53702,MADISON,WI,43.0985,-89.317,DANE 53703,MADISON,WI,43.077535,-89.383068,DANE 53704,MADISON,WI,43.120526,-89.352295,DANE 53705,MADISON,WI,43.072999,-89.452823,DANE 53706,MADISON,WI,43.076929,-89.409362,DANE 53707,MADISON,WI,43.0985,-89.317,DANE 53708,MADISON,WI,43.0985,-89.317,DANE 53711,MADISON,WI,43.035644,-89.452558,DANE 53713,MADISON,WI,43.037381,-89.390008,DANE 53714,MADISON,WI,43.097735,-89.311758,DANE 53715,MADISON,WI,43.065287,-89.400045,DANE 53716,MADISON,WI,43.067413,-89.315921,DANE 53717,MADISON,WI,43.073587,-89.507984,DANE 53718,MADISON,WI,43.152143,-89.407339,DANE 53719,MADISON,WI,43.03207,-89.499324,DANE 53725,MADISON,WI,43.0569,-89.4038,DANE 53726,MADISON,WI,43.0701,-89.4215,DANE 53744,MADISON,WI,43.0157,-89.4166,DANE 53774,MADISON,WI,43.0733,-89.4012,DANE 53777,MADISON,WI,43.073,-89.4011,DANE 53778,MADISON,WI,43.0985,-89.317,DANE 53779,MADISON,WI,43.073,-89.4011,DANE 53782,MADISON,WI,43.073,-89.4011,DANE 53783,MADISON,WI,43.073,-89.4011,DANE 53784,MADISON,WI,43.073,-89.4011,DANE 53785,MADISON,WI,43.073,-89.4011,DANE 53786,MADISON,WI,43.073,-89.4011,DANE 53788,MADISON,WI,43.073,-89.4011,DANE 53789,MADISON,WI,43.073,-89.4011,DANE 53790,MADISON,WI,43.073,-89.4011,DANE 53791,MADISON,WI,43.0985,-89.317,DANE 53792,MADISON,WI,43.073,-89.4011,DANE 53793,MADISON,WI,43.073,-89.4011,DANE 53794,MADISON,WI,43.073,-89.4011,DANE 54301,GREEN BAY,WI,44.485313,-88.016868,BROWN 54302,GREEN BAY,WI,44.502508,-87.977136,BROWN 54303,GREEN BAY,WI,44.530146,-88.045262,BROWN 54304,GREEN BAY,WI,44.505525,-88.066799,BROWN 54305,GREEN BAY,WI,44.5126,-88.0103,BROWN 54306,GREEN BAY,WI,44.5191,-88.0197,BROWN 54307,GREEN BAY,WI,44.4817,-88.0206,BROWN 54308,GREEN BAY,WI,44.5192,-87.9718,BROWN 54311,GREEN BAY,WI,44.491405,-87.926685,BROWN 54313,GREEN BAY,WI,44.546289,-88.102054,BROWN 54324,GREEN BAY,WI,44.4794,-88.0181,BROWN 54344,GREEN BAY,WI,44.4207,-88.1102,BROWN 54911,APPLETON,WI,44.277325,-88.397649,OUTAGAMIE 54912,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 54913,APPLETON,WI,44.315,-88.4057,OUTAGAMIE 54914,APPLETON,WI,44.270992,-88.432608,OUTAGAMIE 54915,APPLETON,WI,44.26351,-88.399902,OUTAGAMIE 54919,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 55101,SAINT PAUL,MN,44.969963,-93.083167,RAMSEY 55102,SAINT PAUL,MN,44.937228,-93.120852,RAMSEY 55103,SAINT PAUL,MN,44.960798,-93.121594,RAMSEY 55104,SAINT PAUL,MN,44.953179,-93.15797,RAMSEY 55105,SAINT PAUL,MN,44.934723,-93.165148,RAMSEY 55106,SAINT PAUL,MN,44.968384,-93.048817,RAMSEY 55107,SAINT PAUL,MN,44.927235,-93.086157,RAMSEY 55108,SAINT PAUL,MN,44.982217,-93.17458,RAMSEY 55109,SAINT PAUL,MN,45.011859,-93.017072,RAMSEY 55110,SAINT PAUL,MN,45.074527,-93.011299,RAMSEY 55111,SAINT PAUL,MN,44.901548,-93.202579,HENNEPIN 55112,SAINT PAUL,MN,45.074129,-93.199691,RAMSEY 55113,SAINT PAUL,MN,45.012876,-93.149245,RAMSEY 55114,SAINT PAUL,MN,44.967968,-93.198067,RAMSEY 55115,SAINT PAUL,MN,45.061132,-92.954847,WASHINGTON 55116,SAINT PAUL,MN,44.914007,-93.172747,RAMSEY 55117,SAINT PAUL,MN,44.992165,-93.103659,RAMSEY 55118,SAINT PAUL,MN,44.902691,-93.096435,DAKOTA 55119,SAINT PAUL,MN,44.955384,-93.008019,RAMSEY 55120,SAINT PAUL,MN,44.873825,-93.12902,DAKOTA 55121,SAINT PAUL,MN,44.843039,-93.16753,DAKOTA 55122,SAINT PAUL,MN,44.803593,-93.196937,DAKOTA 55123,SAINT PAUL,MN,44.809764,-93.14135,DAKOTA 55124,SAINT PAUL,MN,44.746147,-93.20776,DAKOTA 55125,SAINT PAUL,MN,44.916195,-92.951413,WASHINGTON 55126,SAINT PAUL,MN,45.083334,-93.134367,RAMSEY 55127,SAINT PAUL,MN,45.070839,-93.07875,RAMSEY 55128,SAINT PAUL,MN,44.984648,-92.968128,WASHINGTON 55129,SAINT PAUL,MN,44.9114,-92.901,WASHINGTON 55130,SAINT PAUL,MN,44.9718,-93.0826,RAMSEY 55133,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55144,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55145,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55146,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55155,SAINT PAUL,MN,44.954,-93.1023,RAMSEY 55161,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55164,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55165,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55166,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55168,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55169,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55170,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55171,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55172,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55175,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55177,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55187,SAINT PAUL,MN,44.9445,-93.0932,RAMSEY 55188,SAINT PAUL,MN,44.9453,-92.9105,RAMSEY 55191,SAINT PAUL,MN,45.076,-93.1901,RAMSEY 55348,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55357,LORETTO,MN,45.106099,-93.669165,HENNEPIN 55359,MAPLE PLAIN,MN,44.978686,-93.700214,HENNEPIN 55362,MONTICELLO,MN,45.295557,-93.802252,WRIGHT 55365,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55393,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55394,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55397,YOUNG AMERICA,MN,44.792905,-93.918049,CARVER 55399,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55401,MINNEAPOLIS,MN,44.983473,-93.268251,HENNEPIN 55402,MINNEAPOLIS,MN,44.976184,-93.275871,HENNEPIN 55403,MINNEAPOLIS,MN,44.967345,-93.282841,HENNEPIN 55404,MINNEAPOLIS,MN,44.960891,-93.26416,HENNEPIN 55405,MINNEAPOLIS,MN,44.968734,-93.299096,HENNEPIN 55406,MINNEAPOLIS,MN,44.938359,-93.221357,HENNEPIN 55407,MINNEAPOLIS,MN,44.937787,-93.2545,HENNEPIN 55408,MINNEAPOLIS,MN,44.946575,-93.286173,HENNEPIN 55409,MINNEAPOLIS,MN,44.926378,-93.28182,HENNEPIN 55410,MINNEAPOLIS,MN,44.915366,-93.318187,HENNEPIN 55411,MINNEAPOLIS,MN,44.999601,-93.300548,HENNEPIN 55412,MINNEAPOLIS,MN,45.024236,-93.302033,HENNEPIN 55413,MINNEAPOLIS,MN,44.997994,-93.255194,HENNEPIN 55414,MINNEAPOLIS,MN,44.977908,-93.219904,HENNEPIN 55415,MINNEAPOLIS,MN,44.971455,-93.264403,HENNEPIN 55416,MINNEAPOLIS,MN,44.946899,-93.340344,HENNEPIN 55417,MINNEAPOLIS,MN,44.905371,-93.23606,HENNEPIN 55418,MINNEAPOLIS,MN,45.01923,-93.240108,HENNEPIN 55419,MINNEAPOLIS,MN,44.902567,-93.288618,HENNEPIN 55420,MINNEAPOLIS,MN,44.837284,-93.276034,HENNEPIN 55421,MINNEAPOLIS,MN,45.049582,-93.246095,ANOKA 55422,MINNEAPOLIS,MN,45.016722,-93.339769,HENNEPIN 55423,MINNEAPOLIS,MN,44.875731,-93.281351,HENNEPIN 55424,MINNEAPOLIS,MN,44.904385,-93.335005,HENNEPIN 55425,MINNEAPOLIS,MN,44.843198,-93.249413,HENNEPIN 55426,MINNEAPOLIS,MN,44.954448,-93.379627,HENNEPIN 55427,MINNEAPOLIS,MN,45.010374,-93.381585,HENNEPIN 55428,MINNEAPOLIS,MN,45.060299,-93.376908,HENNEPIN 55429,MINNEAPOLIS,MN,45.067667,-93.340203,HENNEPIN 55430,MINNEAPOLIS,MN,45.061106,-93.299068,HENNEPIN 55431,MINNEAPOLIS,MN,44.827776,-93.312322,HENNEPIN 55432,MINNEAPOLIS,MN,45.095695,-93.253905,ANOKA 55433,MINNEAPOLIS,MN,45.168192,-93.326253,ANOKA 55434,MINNEAPOLIS,MN,45.168083,-93.242557,ANOKA 55435,MINNEAPOLIS,MN,44.877143,-93.371452,HENNEPIN 55437,MINNEAPOLIS,MN,44.823279,-93.343499,HENNEPIN 55438,MINNEAPOLIS,MN,44.823924,-93.380141,HENNEPIN 55439,MINNEAPOLIS,MN,44.873716,-93.332169,HENNEPIN 55440,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55441,MINNEAPOLIS,MN,45.009836,-93.422782,HENNEPIN 55442,MINNEAPOLIS,MN,45.045151,-93.426316,HENNEPIN 55443,MINNEAPOLIS,MN,45.105586,-93.340184,HENNEPIN 55444,MINNEAPOLIS,MN,45.100172,-93.302455,HENNEPIN 55445,MINNEAPOLIS,MN,45.103956,-93.373495,HENNEPIN 55446,MINNEAPOLIS,MN,45.032446,-93.472323,HENNEPIN 55447,MINNEAPOLIS,MN,44.998593,-93.494695,HENNEPIN 55448,MINNEAPOLIS,MN,45.180626,-93.289699,ANOKA 55449,MINNEAPOLIS,MN,45.1647,-93.2111,ANOKA 55450,MINNEAPOLIS,MN,44.865883,-93.247414,HENNEPIN 55454,MINNEAPOLIS,MN,44.968161,-93.242898,HENNEPIN 55455,MINNEAPOLIS,MN,44.981562,-93.23928,HENNEPIN 55458,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55459,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55460,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55467,MINNEAPOLIS,MN,44.98,-93.2638,HENNEPIN 55468,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55470,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55472,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55473,MINNEAPOLIS,MN,44.7827,-93.9133,HENNEPIN 55474,MINNEAPOLIS,MN,44.9767,-93.2682,HENNEPIN 55478,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55479,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55480,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55483,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55484,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55485,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55486,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55487,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55488,MINNEAPOLIS,MN,44.9758,-93.262,HENNEPIN 55550,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55551,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55552,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55553,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55555,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55556,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55557,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55558,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55559,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55560,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55561,MONTICELLO,MN,45.2797,-93.8097,CARVER 55562,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55563,MONTICELLO,MN,45.2797,-93.8097,CARVER 55564,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55565,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55566,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55567,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55568,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55570,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55571,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55573,YOUNG AMERICA,MN,44.8148,-93.921,HENNEPIN 55574,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55576,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55578,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55579,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55580,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55581,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55582,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55584,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55585,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55586,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55587,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55588,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55589,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55590,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55591,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55592,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55593,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55594,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55595,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55596,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55597,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55598,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55599,LORETTO,MN,45.05604,-93.664534,HENNEPIN 55801,DULUTH,MN,47.094431,-91.846731,SAINT LOUIS 55802,DULUTH,MN,46.768475,-92.086497,SAINT LOUIS 55803,DULUTH,MN,46.874913,-92.094057,SAINT LOUIS 55804,DULUTH,MN,46.855131,-92.007433,SAINT LOUIS 55805,DULUTH,MN,46.798733,-92.094553,SAINT LOUIS 55806,DULUTH,MN,46.771457,-92.127871,SAINT LOUIS 55807,DULUTH,MN,46.740783,-92.169821,SAINT LOUIS 55808,DULUTH,MN,46.681002,-92.22261,SAINT LOUIS 55810,DULUTH,MN,46.74459,-92.232332,SAINT LOUIS 55811,DULUTH,MN,46.81341,-92.168225,SAINT LOUIS 55812,DULUTH,MN,46.810598,-92.076693,SAINT LOUIS 55814,DULUTH,MN,46.8367,-92.1878,SAINT LOUIS 55815,DULUTH,MN,46.8197,-92.2595,SAINT LOUIS 55816,DULUTH,MN,46.7596,-92.132,SAINT LOUIS 55901,ROCHESTER,MN,44.049572,-92.48962,OLMSTED 55902,ROCHESTER,MN,44.003217,-92.483519,OLMSTED 55903,ROCHESTER,MN,44.0216,-92.4627,OLMSTED 55904,ROCHESTER,MN,44.010545,-92.397276,OLMSTED 55905,ROCHESTER,MN,44.0213,-92.4671,OLMSTED 55906,ROCHESTER,MN,44.021001,-92.446874,OLMSTED 56301,SAINT CLOUD,MN,45.540972,-94.181857,STEARNS 56302,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56303,SAINT CLOUD,MN,45.571298,-94.203634,STEARNS 56304,SAINT CLOUD,MN,45.552113,-94.128447,BENTON 56372,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56393,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56395,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56396,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56397,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56398,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56399,SAINT CLOUD,MN,45.560556,-94.162222,STEARNS 56901,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56915,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 56920,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56933,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56944,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56972,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 57101,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57103,SIOUX FALLS,SD,43.537386,-96.686415,MINNEHAHA 57104,SIOUX FALLS,SD,43.551355,-96.737535,MINNEHAHA 57105,SIOUX FALLS,SD,43.523972,-96.734141,MINNEHAHA 57106,SIOUX FALLS,SD,43.517912,-96.792376,MINNEHAHA 57107,SIOUX FALLS,SD,43.556628,-96.802811,MINNEHAHA 57108,SIOUX FALLS,SD,43.488,-96.7343,LINCOLN 57109,SIOUX FALLS,SD,43.5149,-96.7508,MINNEHAHA 57110,SIOUX FALLS,SD,43.5409,-96.6523,MINNEHAHA 57117,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57118,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57186,SIOUX FALLS,SD,43.5503,-96.7002,MINNEHAHA 57188,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57189,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57192,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57193,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57194,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57195,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57196,SIOUX FALLS,SD,43.5444,-96.7232,MINNEHAHA 57197,SIOUX FALLS,SD,43.5271,-96.7364,MINNEHAHA 57198,SIOUX FALLS,SD,43.7326,-96.6285,MINNEHAHA 58102,FARGO,ND,46.900878,-96.793577,CASS 58103,FARGO,ND,46.856406,-96.812252,CASS 58104,FARGO,ND,46.81492,-96.823846,CASS 58105,FARGO,ND,46.8782,-96.7895,CASS 58106,FARGO,ND,46.8782,-96.7895,CASS 58107,FARGO,ND,46.8782,-96.7895,CASS 58108,FARGO,ND,46.8782,-96.7895,CASS 58109,FARGO,ND,46.808,-96.8642,CASS 58121,FARGO,ND,46.8772,-96.7894,CASS 58122,FARGO,ND,46.8772,-96.7894,CASS 58124,FARGO,ND,46.8772,-96.7894,CASS 58125,FARGO,ND,46.8548,-96.8563,CASS 58126,FARGO,ND,46.8772,-96.7894,CASS 58201,GRAND FORKS,ND,47.901041,-97.04463,GRAND FORKS 58202,GRAND FORKS,ND,47.9229,-97.0763,GRAND FORKS 58203,GRAND FORKS,ND,47.927217,-97.067156,GRAND FORKS 58206,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58207,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58208,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58501,BISMARCK,ND,46.823448,-100.774755,BURLEIGH 58502,BISMARCK,ND,46.849,-100.7169,BURLEIGH 58503,BISMARCK,ND,46.8645,-100.7711,BURLEIGH 58504,BISMARCK,ND,46.782463,-100.774411,BURLEIGH 58505,BISMARCK,ND,46.8166,-100.7789,BURLEIGH 58506,BISMARCK,ND,46.7287,-100.6156,BURLEIGH 58507,BISMARCK,ND,46.849,-100.7169,BURLEIGH 59101,BILLINGS,MT,45.774489,-108.500452,YELLOWSTONE 59102,BILLINGS,MT,45.781265,-108.572662,YELLOWSTONE 59103,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59104,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59105,BILLINGS,MT,45.828443,-108.474726,YELLOWSTONE 59106,BILLINGS,MT,45.775306,-108.65191,YELLOWSTONE 59107,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59108,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59111,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59112,BILLINGS,MT,45.7833,-108.5,YELLOWSTONE 59114,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59115,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59116,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59117,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59601,HELENA,MT,46.613066,-112.021283,LEWIS AND CLARK 59602,HELENA,MT,46.6652,-111.9939,LEWIS AND CLARK 59604,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59620,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59623,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59624,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59625,HELENA,MT,46.601,-112.0391,LEWIS AND CLARK 59626,HELENA,MT,46.5927,-112.0352,LEWIS AND CLARK 59715,BOZEMAN,MT,45.669269,-111.043057,GALLATIN 59717,BOZEMAN,MT,45.6678,-111.0499,GALLATIN 59718,BOZEMAN,MT,45.6723,-111.1211,GALLATIN 59719,BOZEMAN,MT,45.6476,-111.171,GALLATIN 59771,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59772,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59773,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59801,MISSOULA,MT,46.856274,-114.025207,MISSOULA 59802,MISSOULA,MT,46.900615,-114.002732,MISSOULA 59803,MISSOULA,MT,46.822362,-114.026528,MISSOULA 59804,MISSOULA,MT,46.858,-114.109,MISSOULA 59806,MISSOULA,MT,46.8516,-114.0141,MISSOULA 59807,MISSOULA,MT,47.0005,-113.9872,MISSOULA 59808,MISSOULA,MT,46.9403,-114.0875,MISSOULA 59812,MISSOULA,MT,46.8625,-113.9808,MISSOULA 60038,PALATINE,IL,42.1258,-88.0764,COOK 60055,PALATINE,IL,42.1258,-88.0764,COOK 60067,PALATINE,IL,42.113888,-88.042937,COOK 60074,PALATINE,IL,42.145775,-88.022998,COOK 60078,PALATINE,IL,42.1102,-88.0341,COOK 60094,PALATINE,IL,42.1258,-88.0764,COOK 60095,PALATINE,IL,42.0967,-88.0112,COOK 60116,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60122,CAROL STREAM,IL,42.0372,-88.2811,DUPAGE 60125,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60128,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60132,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60159,SCHAUMBURG,IL,42.0333,-88.0833,COOK 60168,SCHAUMBURG,IL,42.0269,-88.092,COOK 60173,SCHAUMBURG,IL,42.05807,-88.048189,COOK 60188,CAROL STREAM,IL,41.91784,-88.136962,DUPAGE 60193,SCHAUMBURG,IL,42.014432,-88.093481,COOK 60194,SCHAUMBURG,IL,42.039025,-88.109442,COOK 60195,SCHAUMBURG,IL,42.073865,-88.108709,COOK 60196,SCHAUMBURG,IL,42.0269,-88.092,COOK 60197,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60199,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60201,EVANSTON,IL,42.054551,-87.694331,COOK 60202,EVANSTON,IL,42.03022,-87.686544,COOK 60203,EVANSTON,IL,42.048487,-87.71759,COOK 60204,EVANSTON,IL,42.0472,-87.6872,COOK 60208,EVANSTON,IL,42.0491,-87.677,COOK 60209,EVANSTON,IL,42.0472,-87.6872,COOK 60290,CHICAGO,IL,41.850033,-87.6500523,COOK 60431,JOLIET,IL,41.527154,-88.08241,WILL 60432,JOLIET,IL,41.537758,-88.057178,WILL 60433,JOLIET,IL,41.511873,-88.05687,WILL 60434,JOLIET,IL,41.525,-88.081667,WILL 60435,JOLIET,IL,41.541468,-88.128107,WILL 60436,JOLIET,IL,41.508818,-88.135779,WILL 60502,AURORA,IL,41.78262,-88.260697,DUPAGE 60503,AURORA,IL,41.710269,-88.258888,DUPAGE 60504,AURORA,IL,41.752269,-88.245281,DUPAGE 60505,AURORA,IL,41.758209,-88.297139,KANE 60506,AURORA,IL,41.766414,-88.344582,KANE 60507,AURORA,IL,41.7605,-88.32,KANE 60540,NAPERVILLE,IL,41.766198,-88.141038,DUPAGE 60563,NAPERVILLE,IL,41.78955,-88.16901,DUPAGE 60564,NAPERVILLE,IL,41.704022,-88.195248,WILL 60565,NAPERVILLE,IL,41.732833,-88.128245,DUPAGE 60566,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60567,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60568,AURORA,IL,41.7605,-88.32,KANE 60572,AURORA,IL,41.8017,-88.0685,DUPAGE 60598,AURORA,IL,41.7749,-88.2486,DUPAGE 60601,CHICAGO,IL,41.885847,-87.618123,COOK 60602,CHICAGO,IL,41.882883,-87.632125,COOK 60603,CHICAGO,IL,41.87985,-87.628499,COOK 60604,CHICAGO,IL,41.87845,-87.632999,COOK 60605,CHICAGO,IL,41.87125,-87.627715,COOK 60606,CHICAGO,IL,41.886822,-87.638648,COOK 60607,CHICAGO,IL,41.872075,-87.657845,COOK 60608,CHICAGO,IL,41.851482,-87.669444,COOK 60609,CHICAGO,IL,41.809721,-87.653279,COOK 60610,CHICAGO,IL,41.903294,-87.633565,COOK 60611,CHICAGO,IL,41.897105,-87.622285,COOK 60612,CHICAGO,IL,41.880483,-87.687333,COOK 60613,CHICAGO,IL,41.954341,-87.657491,COOK 60614,CHICAGO,IL,41.92286,-87.648295,COOK 60615,CHICAGO,IL,41.802211,-87.600623,COOK 60616,CHICAGO,IL,41.84258,-87.630552,COOK 60617,CHICAGO,IL,41.725743,-87.556012,COOK 60618,CHICAGO,IL,41.946401,-87.704214,COOK 60619,CHICAGO,IL,41.745765,-87.60539,COOK 60620,CHICAGO,IL,41.741119,-87.654251,COOK 60621,CHICAGO,IL,41.774993,-87.642136,COOK 60622,CHICAGO,IL,41.901923,-87.67785,COOK 60623,CHICAGO,IL,41.849015,-87.7157,COOK 60624,CHICAGO,IL,41.880394,-87.722349,COOK 60625,CHICAGO,IL,41.970325,-87.704157,COOK 60626,CHICAGO,IL,42.009475,-87.668887,COOK 60628,CHICAGO,IL,41.693443,-87.624277,COOK 60629,CHICAGO,IL,41.778149,-87.706936,COOK 60630,CHICAGO,IL,41.969862,-87.760273,COOK 60631,CHICAGO,IL,41.995145,-87.808215,COOK 60632,CHICAGO,IL,41.809274,-87.70518,COOK 60633,CHICAGO,IL,41.649791,-87.549489,COOK 60634,CHICAGO,IL,41.945213,-87.796054,COOK 60636,CHICAGO,IL,41.775989,-87.667368,COOK 60637,CHICAGO,IL,41.781312,-87.605097,COOK 60638,CHICAGO,IL,41.789703,-87.771927,COOK 60639,CHICAGO,IL,41.920162,-87.753502,COOK 60640,CHICAGO,IL,41.971928,-87.662405,COOK 60641,CHICAGO,IL,41.945333,-87.747376,COOK 60643,CHICAGO,IL,41.693243,-87.659445,COOK 60644,CHICAGO,IL,41.882913,-87.758163,COOK 60645,CHICAGO,IL,42.007718,-87.6962,COOK 60646,CHICAGO,IL,41.996414,-87.759172,COOK 60647,CHICAGO,IL,41.920903,-87.704322,COOK 60649,CHICAGO,IL,41.761968,-87.570252,COOK 60651,CHICAGO,IL,41.902509,-87.739307,COOK 60652,CHICAGO,IL,41.745393,-87.713516,COOK 60653,CHICAGO,IL,41.819645,-87.612605,COOK 60654,CHICAGO,IL,41.888533,-87.635292,COOK 60655,CHICAGO,IL,41.693033,-87.702188,COOK 60656,CHICAGO,IL,41.971844,-87.819981,COOK 60657,CHICAGO,IL,41.93992,-87.652805,COOK 60659,CHICAGO,IL,41.991687,-87.700823,COOK 60660,CHICAGO,IL,41.990879,-87.662856,COOK 60661,CHICAGO,IL,41.881351,-87.642969,COOK 60663,CHICAGO,IL,41.8767,-87.6381,COOK 60664,CHICAGO,IL,41.85,-87.65,COOK 60666,CHICAGO,IL,41.9821,-87.906803,COOK 60668,CHICAGO,IL,41.879,-87.6306,COOK 60669,CHICAGO,IL,41.8767,-87.6381,COOK 60670,CHICAGO,IL,41.8767,-87.6381,COOK 60673,CHICAGO,IL,41.8767,-87.6381,COOK 60674,CHICAGO,IL,41.8796,-87.6322,COOK 60675,CHICAGO,IL,41.8767,-87.6381,COOK 60677,CHICAGO,IL,41.8819,-87.6369,COOK 60678,CHICAGO,IL,41.8767,-87.6381,COOK 60679,CHICAGO,IL,41.8767,-87.6381,COOK 60680,CHICAGO,IL,41.8767,-87.6381,COOK 60681,CHICAGO,IL,41.8846,-87.6222,COOK 60682,CHICAGO,IL,41.8649,-87.8115,COOK 60684,CHICAGO,IL,41.8767,-87.6381,COOK 60685,CHICAGO,IL,41.8767,-87.6381,COOK 60686,CHICAGO,IL,41.85,-87.65,COOK 60687,CHICAGO,IL,41.8767,-87.6381,COOK 60688,CHICAGO,IL,41.8501,-87.65,COOK 60689,CHICAGO,IL,41.8746,-87.6332,COOK 60690,CHICAGO,IL,41.879,-87.6306,COOK 60691,CHICAGO,IL,41.879,-87.6306,COOK 60693,CHICAGO,IL,41.8767,-87.6381,COOK 60694,CHICAGO,IL,41.8767,-87.6381,COOK 60695,CHICAGO,IL,41.8501,-87.65,COOK 60696,CHICAGO,IL,41.8501,-87.65,COOK 60697,CHICAGO,IL,41.8767,-87.6381,COOK 60699,CHICAGO,IL,41.8727,-87.6393,COOK 60701,CHICAGO,IL,42.0274,-87.808,COOK 61101,ROCKFORD,IL,42.292233,-89.116118,WINNEBAGO 61102,ROCKFORD,IL,42.254669,-89.124695,WINNEBAGO 61103,ROCKFORD,IL,42.300986,-89.083326,WINNEBAGO 61104,ROCKFORD,IL,42.255355,-89.076779,WINNEBAGO 61105,ROCKFORD,IL,42.3358,-89.1353,WINNEBAGO 61106,ROCKFORD,IL,42.2522,-89.0798,WINNEBAGO 61107,ROCKFORD,IL,42.278629,-89.036107,WINNEBAGO 61108,ROCKFORD,IL,42.251406,-89.023519,WINNEBAGO 61109,ROCKFORD,IL,42.216581,-89.05118,WINNEBAGO 61110,ROCKFORD,IL,42.2668,-89.0823,WINNEBAGO 61112,ROCKFORD,IL,42.245639,-88.970429,WINNEBAGO 61114,ROCKFORD,IL,42.3074,-89.0033,WINNEBAGO 61125,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61126,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61601,PEORIA,IL,40.6854,-89.5953,PEORIA 61602,PEORIA,IL,40.687987,-89.601178,PEORIA 61603,PEORIA,IL,40.713915,-89.580813,PEORIA 61604,PEORIA,IL,40.711142,-89.632377,PEORIA 61605,PEORIA,IL,40.677512,-89.626325,PEORIA 61606,PEORIA,IL,40.698926,-89.612189,PEORIA 61607,PEORIA,IL,40.652434,-89.673898,PEORIA 61612,PEORIA,IL,40.7595,-89.5926,PEORIA 61613,PEORIA,IL,40.7419,-89.6276,PEORIA 61614,PEORIA,IL,40.75481,-89.603295,PEORIA 61615,PEORIA,IL,40.770165,-89.632083,PEORIA 61625,PEORIA,IL,40.6981,-89.6157,PEORIA 61629,PEORIA,IL,40.6936,-89.5888,PEORIA 61630,PEORIA,IL,40.6854,-89.5953,PEORIA 61633,PEORIA,IL,40.7311,-89.6038,PEORIA 61634,PEORIA,IL,40.6893,-89.5921,PEORIA 61635,PEORIA,IL,40.7045,-89.5219,PEORIA 61636,PEORIA,IL,40.7005,-89.5949,PEORIA 61637,PEORIA,IL,40.6936,-89.5888,PEORIA 61638,PEORIA,IL,40.8019,-89.6281,PEORIA 61639,PEORIA,IL,40.6936,-89.5888,PEORIA 61641,PEORIA,IL,40.6936,-89.5888,PEORIA 61643,PEORIA,IL,40.7247,-89.5566,PEORIA 61650,PEORIA,IL,40.6936,-89.5888,PEORIA 61651,PEORIA,IL,40.6936,-89.5888,PEORIA 61652,PEORIA,IL,40.6936,-89.5888,PEORIA 61653,PEORIA,IL,40.6936,-89.5888,PEORIA 61654,PEORIA,IL,40.6936,-89.5888,PEORIA 61655,PEORIA,IL,40.6936,-89.5888,PEORIA 61656,PEORIA,IL,40.6936,-89.5888,PEORIA 61701,BLOOMINGTON,IL,40.478295,-88.989318,MCLEAN 61702,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61704,BLOOMINGTON,IL,40.471618,-88.962466,MCLEAN 61709,BLOOMINGTON,IL,40.4638,-88.9564,MCLEAN 61710,BLOOMINGTON,IL,40.4783,-88.9535,MCLEAN 61791,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61799,BLOOMINGTON,IL,40.4297,-88.9819,MCLEAN 61820,CHAMPAIGN,IL,40.111017,-88.240747,CHAMPAIGN 61821,CHAMPAIGN,IL,40.107262,-88.278847,CHAMPAIGN 61822,CHAMPAIGN,IL,40.1175,-88.293,CHAMPAIGN 61824,CHAMPAIGN,IL,40.109,-88.2433,CHAMPAIGN 61825,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 61826,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 62201,EAST SAINT LOUIS,IL,38.631538,-90.138066,SAINT CLAIR 62202,EAST SAINT LOUIS,IL,38.615278,-90.127778,SAINT CLAIR 62203,EAST SAINT LOUIS,IL,38.599191,-90.074449,SAINT CLAIR 62204,EAST SAINT LOUIS,IL,38.631335,-90.102008,SAINT CLAIR 62205,EAST SAINT LOUIS,IL,38.614947,-90.127502,SAINT CLAIR 62206,EAST SAINT LOUIS,IL,38.561899,-90.16587,SAINT CLAIR 62207,EAST SAINT LOUIS,IL,38.58734,-90.12829,SAINT CLAIR 62521,DECATUR,IL,39.827137,-88.925984,MACON 62522,DECATUR,IL,39.843237,-88.986139,MACON 62523,DECATUR,IL,39.841694,-88.953435,MACON 62524,DECATUR,IL,39.9045,-88.9642,MACON 62525,DECATUR,IL,39.8426,-88.9525,MACON 62526,DECATUR,IL,39.877413,-88.953515,MACON 62701,SPRINGFIELD,IL,39.80004,-89.649531,SANGAMON 62702,SPRINGFIELD,IL,39.816768,-89.644147,SANGAMON 62703,SPRINGFIELD,IL,39.772401,-89.63333,SANGAMON 62704,SPRINGFIELD,IL,39.780319,-89.681066,SANGAMON 62705,SPRINGFIELD,IL,39.799,-89.6465,SANGAMON 62706,SPRINGFIELD,IL,39.7987,-89.6534,SANGAMON 62707,SPRINGFIELD,IL,39.772842,-89.663991,SANGAMON 62708,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62711,SPRINGFIELD,IL,39.76,-89.7178,SANGAMON 62712,SPRINGFIELD,IL,39.7359,-89.5993,SANGAMON 62713,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62715,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62716,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62719,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62721,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62722,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62723,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62726,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62736,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62739,SPRINGFIELD,IL,39.8003,-89.6471,SANGAMON 62746,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62756,SPRINGFIELD,IL,39.7971,-89.6535,SANGAMON 62757,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62761,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62762,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62763,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62764,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62765,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62766,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62767,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62769,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62776,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62777,SPRINGFIELD,IL,39.8022,-89.6547,SANGAMON 62781,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62786,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62791,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62794,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62796,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 63101,SAINT LOUIS,MO,38.634616,-90.191313,SAINT LOUIS CITY 63102,SAINT LOUIS,MO,38.630803,-90.18736,SAINT LOUIS CITY 63103,SAINT LOUIS,MO,38.633176,-90.216444,SAINT LOUIS CITY 63104,SAINT LOUIS,MO,38.612819,-90.218512,SAINT LOUIS CITY 63105,SAINT LOUIS,MO,38.642574,-90.324189,SAINT LOUIS 63106,SAINT LOUIS,MO,38.644246,-90.208198,SAINT LOUIS CITY 63107,SAINT LOUIS,MO,38.664522,-90.21249,SAINT LOUIS CITY 63108,SAINT LOUIS,MO,38.644526,-90.254397,SAINT LOUIS CITY 63109,SAINT LOUIS,MO,38.585452,-90.292918,SAINT LOUIS CITY 63110,SAINT LOUIS,MO,38.618534,-90.256381,SAINT LOUIS CITY 63111,SAINT LOUIS,MO,38.563349,-90.249452,SAINT LOUIS CITY 63112,SAINT LOUIS,MO,38.661619,-90.28187,SAINT LOUIS CITY 63113,SAINT LOUIS,MO,38.65896,-90.249633,SAINT LOUIS CITY 63114,SAINT LOUIS,MO,38.704425,-90.363304,SAINT LOUIS 63115,SAINT LOUIS,MO,38.675618,-90.238478,SAINT LOUIS CITY 63116,SAINT LOUIS,MO,38.581356,-90.262543,SAINT LOUIS CITY 63117,SAINT LOUIS,MO,38.629202,-90.324817,SAINT LOUIS 63118,SAINT LOUIS,MO,38.594265,-90.230911,SAINT LOUIS CITY 63119,SAINT LOUIS,MO,38.588853,-90.350807,SAINT LOUIS 63120,SAINT LOUIS,MO,38.690914,-90.25945,SAINT LOUIS CITY 63121,SAINT LOUIS,MO,38.705086,-90.296719,SAINT LOUIS 63122,SAINT LOUIS,MO,38.58486,-90.410042,SAINT LOUIS 63123,SAINT LOUIS,MO,38.550594,-90.325304,SAINT LOUIS 63124,SAINT LOUIS,MO,38.642383,-90.375468,SAINT LOUIS 63125,SAINT LOUIS,MO,38.521899,-90.295909,SAINT LOUIS 63126,SAINT LOUIS,MO,38.550349,-90.378679,SAINT LOUIS 63127,SAINT LOUIS,MO,38.540369,-90.405967,SAINT LOUIS 63128,SAINT LOUIS,MO,38.498285,-90.372275,SAINT LOUIS 63129,SAINT LOUIS,MO,38.468864,-90.32139,SAINT LOUIS 63130,SAINT LOUIS,MO,38.663941,-90.321896,SAINT LOUIS 63131,SAINT LOUIS,MO,38.612479,-90.44264,SAINT LOUIS 63132,SAINT LOUIS,MO,38.672823,-90.369642,SAINT LOUIS 63133,SAINT LOUIS,MO,38.6779,-90.303272,SAINT LOUIS 63134,SAINT LOUIS,MO,38.739614,-90.337834,SAINT LOUIS 63135,SAINT LOUIS,MO,38.748429,-90.302241,SAINT LOUIS 63136,SAINT LOUIS,MO,38.738878,-90.260189,SAINT LOUIS 63137,SAINT LOUIS,MO,38.74885,-90.217778,SAINT LOUIS 63138,SAINT LOUIS,MO,38.787041,-90.211582,SAINT LOUIS 63139,SAINT LOUIS,MO,38.610776,-90.292045,SAINT LOUIS CITY 63140,SAINT LOUIS,MO,38.738482,-90.322846,SAINT LOUIS 63141,SAINT LOUIS,MO,38.661741,-90.457072,SAINT LOUIS 63143,SAINT LOUIS,MO,38.613116,-90.319611,SAINT LOUIS 63144,SAINT LOUIS,MO,38.620839,-90.350944,SAINT LOUIS 63145,SAINT LOUIS,MO,38.7397,-90.3627,SAINT LOUIS 63146,SAINT LOUIS,MO,38.688418,-90.448251,SAINT LOUIS 63147,SAINT LOUIS,MO,38.713889,-90.237512,SAINT LOUIS CITY 63150,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63151,SAINT LOUIS,MO,38.4688,-90.305,SAINT LOUIS 63155,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63156,SAINT LOUIS,MO,38.6368,-90.2445,SAINT LOUIS CITY 63157,SAINT LOUIS,MO,38.6072,-90.2007,SAINT LOUIS CITY 63158,SAINT LOUIS,MO,38.6041,-90.2226,SAINT LOUIS CITY 63160,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63163,SAINT LOUIS,MO,38.5994,-90.2422,SAINT LOUIS CITY 63164,SAINT LOUIS,MO,38.6189,-90.1994,SAINT LOUIS CITY 63166,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63167,SAINT LOUIS,MO,38.6723,-90.4048,SAINT LOUIS 63169,SAINT LOUIS,MO,38.6288,-90.1924,SAINT LOUIS CITY 63171,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63177,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63178,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63179,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63180,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63182,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63188,SAINT LOUIS,MO,38.6294,-90.1963,SAINT LOUIS CITY 63190,SAINT LOUIS,MO,38.6272,-90.1978,SAINT LOUIS CITY 63195,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63196,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63197,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63198,SAINT LOUIS,MO,38.6583,-90.5672,SAINT LOUIS 63199,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 64050,INDEPENDENCE,MO,39.098288,-94.411072,JACKSON 64051,INDEPENDENCE,MO,39.091111,-94.415278,JACKSON 64052,INDEPENDENCE,MO,39.074984,-94.449945,JACKSON 64053,INDEPENDENCE,MO,39.105041,-94.462461,JACKSON 64054,INDEPENDENCE,MO,39.107234,-94.441496,JACKSON 64055,INDEPENDENCE,MO,39.054504,-94.403902,JACKSON 64056,INDEPENDENCE,MO,39.11773,-94.359637,JACKSON 64057,INDEPENDENCE,MO,39.073099,-94.353284,JACKSON 64058,INDEPENDENCE,MO,39.141233,-94.351526,JACKSON 64063,LEES SUMMIT,MO,38.921094,-94.348744,JACKSON 64064,LEES SUMMIT,MO,38.995336,-94.365192,JACKSON 64065,LEES SUMMIT,MO,38.951389,-94.401389,JACKSON 64081,LEES SUMMIT,MO,38.914169,-94.407302,JACKSON 64082,LEES SUMMIT,MO,38.851803,-94.394368,JACKSON 64086,LEES SUMMIT,MO,38.923056,-94.243889,JACKSON 64101,KANSAS CITY,MO,39.10005,-94.601849,JACKSON 64102,KANSAS CITY,MO,39.086067,-94.606596,JACKSON 64105,KANSAS CITY,MO,39.102459,-94.590092,JACKSON 64106,KANSAS CITY,MO,39.105186,-94.569858,JACKSON 64108,KANSAS CITY,MO,39.0837,-94.586826,JACKSON 64109,KANSAS CITY,MO,39.066286,-94.567372,JACKSON 64110,KANSAS CITY,MO,39.036088,-94.572206,JACKSON 64111,KANSAS CITY,MO,39.056483,-94.592942,JACKSON 64112,KANSAS CITY,MO,39.038191,-94.592873,JACKSON 64113,KANSAS CITY,MO,39.01234,-94.593828,JACKSON 64114,KANSAS CITY,MO,38.962147,-94.595941,JACKSON 64116,KANSAS CITY,MO,39.163189,-94.569882,CLAY 64117,KANSAS CITY,MO,39.168111,-94.527367,CLAY 64118,KANSAS CITY,MO,39.213842,-94.570448,CLAY 64119,KANSAS CITY,MO,39.19785,-94.519873,CLAY 64120,KANSAS CITY,MO,39.122206,-94.54873,JACKSON 64121,KANSAS CITY,MO,39.0906,-94.538,JACKSON 64123,KANSAS CITY,MO,39.113593,-94.523545,JACKSON 64124,KANSAS CITY,MO,39.106832,-94.539402,JACKSON 64125,KANSAS CITY,MO,39.104157,-94.492328,JACKSON 64126,KANSAS CITY,MO,39.092255,-94.50466,JACKSON 64127,KANSAS CITY,MO,39.088303,-94.536636,JACKSON 64128,KANSAS CITY,MO,39.065932,-94.538634,JACKSON 64129,KANSAS CITY,MO,39.040093,-94.49513,JACKSON 64130,KANSAS CITY,MO,39.035106,-94.546674,JACKSON 64131,KANSAS CITY,MO,38.971303,-94.57741,JACKSON 64132,KANSAS CITY,MO,38.991073,-94.552156,JACKSON 64133,KANSAS CITY,MO,39.014909,-94.459229,JACKSON 64134,KANSAS CITY,MO,38.929633,-94.500908,JACKSON 64136,KANSAS CITY,MO,39.018684,-94.400774,JACKSON 64137,KANSAS CITY,MO,38.92988,-94.540487,JACKSON 64138,KANSAS CITY,MO,38.96871,-94.479361,JACKSON 64139,KANSAS CITY,MO,38.965891,-94.406086,JACKSON 64141,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64144,KANSAS CITY,MO,39.1433,-94.571,CLAY 64145,KANSAS CITY,MO,38.89767,-94.597607,JACKSON 64146,KANSAS CITY,MO,38.897264,-94.57638,JACKSON 64147,KANSAS CITY,MO,38.861352,-94.529717,JACKSON 64148,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64149,KANSAS CITY,MO,38.860646,-94.463554,JACKSON 64151,KANSAS CITY,MO,39.213876,-94.63318,PLATTE 64152,KANSAS CITY,MO,39.220954,-94.691313,PLATTE 64153,KANSAS CITY,MO,39.262746,-94.697008,PLATTE 64154,KANSAS CITY,MO,39.254728,-94.635444,PLATTE 64155,KANSAS CITY,MO,39.275831,-94.570401,CLAY 64156,KANSAS CITY,MO,39.290052,-94.533614,CLAY 64157,KANSAS CITY,MO,39.276673,-94.459456,CLAY 64158,KANSAS CITY,MO,39.228428,-94.472036,CLAY 64161,KANSAS CITY,MO,39.161506,-94.459829,CLAY 64163,KANSAS CITY,MO,39.359756,-94.719315,PLATTE 64164,KANSAS CITY,MO,39.3426,-94.644643,PLATTE 64165,KANSAS CITY,MO,39.340054,-94.572966,CLAY 64166,KANSAS CITY,MO,39.329399,-94.519858,CLAY 64167,KANSAS CITY,MO,39.309643,-94.465291,CLAY 64168,KANSAS CITY,MO,39.1775,-94.612778,PLATTE 64170,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64171,KANSAS CITY,MO,39.0544,-94.5886,JACKSON 64172,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64179,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64180,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64183,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64184,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64185,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64187,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64188,KANSAS CITY,MO,39.2239,-94.5852,CLAY 64190,KANSAS CITY,MO,39.2815,-94.7326,PLATTE 64191,KANSAS CITY,MO,39.0844,-94.5844,JACKSON 64192,KANSAS CITY,MO,38.9223,-94.5089,JACKSON 64193,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64194,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64195,KANSAS CITY,MO,39.3035,-94.7198,PLATTE 64196,KANSAS CITY,MO,39.1006,-94.5831,JACKSON 64197,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64198,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64199,KANSAS CITY,MO,39.1032,-94.5826,JACKSON 64501,SAINT JOSEPH,MO,39.768755,-94.838488,BUCHANAN 64502,SAINT JOSEPH,MO,39.7655,-94.8506,BUCHANAN 64503,SAINT JOSEPH,MO,39.733987,-94.817125,BUCHANAN 64504,SAINT JOSEPH,MO,39.707566,-94.867749,BUCHANAN 64505,SAINT JOSEPH,MO,39.796532,-94.844341,BUCHANAN 64506,SAINT JOSEPH,MO,39.789292,-94.804314,BUCHANAN 64507,SAINT JOSEPH,MO,39.755052,-94.817303,BUCHANAN 64508,SAINT JOSEPH,MO,39.7768,-94.7995,BUCHANAN 64944,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64999,KANSAS CITY,MO,38.9573,-94.574,JACKSON 65101,JEFFERSON CITY,MO,38.546212,-92.152462,COLE 65102,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65103,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65104,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65105,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65106,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65107,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65108,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65109,JEFFERSON CITY,MO,38.577272,-92.244298,COLE 65110,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65111,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65201,COLUMBIA,MO,38.938176,-92.304865,BOONE 65202,COLUMBIA,MO,38.995019,-92.311204,BOONE 65203,COLUMBIA,MO,38.93482,-92.363865,BOONE 65205,COLUMBIA,MO,38.9528,-92.3313,BOONE 65211,COLUMBIA,MO,38.9368,-92.3221,BOONE 65212,COLUMBIA,MO,38.9528,-92.3313,BOONE 65215,COLUMBIA,MO,38.9527,-92.3199,BOONE 65216,COLUMBIA,MO,38.9566,-92.3268,BOONE 65217,COLUMBIA,MO,38.8976,-92.3349,BOONE 65218,COLUMBIA,MO,38.8935,-92.3963,BOONE 65299,COLUMBIA,MO,38.909,-92.2463,BOONE 65801,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65802,SPRINGFIELD,MO,37.211663,-93.29903,GREENE 65803,SPRINGFIELD,MO,37.259327,-93.291232,GREENE 65804,SPRINGFIELD,MO,37.165361,-93.252154,GREENE 65805,SPRINGFIELD,MO,37.2152,-93.298,GREENE 65806,SPRINGFIELD,MO,37.203057,-93.297108,GREENE 65807,SPRINGFIELD,MO,37.166799,-93.308457,GREENE 65808,SPRINGFIELD,MO,37.1885,-93.2619,GREENE 65809,SPRINGFIELD,MO,37.185223,-93.205742,GREENE 65810,SPRINGFIELD,MO,37.113647,-93.289594,GREENE 65814,SPRINGFIELD,MO,37.1668,-93.3247,GREENE 65817,SPRINGFIELD,MO,37.1173,-93.3089,GREENE 65890,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65897,SPRINGFIELD,MO,37.199132,-93.279111,GREENE 65898,SPRINGFIELD,MO,37.2376,-93.2492,GREENE 65899,SPRINGFIELD,MO,37.1494,-93.2502,GREENE 66101,KANSAS CITY,KS,39.115733,-94.627139,WYANDOTTE 66102,KANSAS CITY,KS,39.113247,-94.669337,WYANDOTTE 66103,KANSAS CITY,KS,39.056193,-94.625105,WYANDOTTE 66104,KANSAS CITY,KS,39.137512,-94.679158,WYANDOTTE 66105,KANSAS CITY,KS,39.085025,-94.635646,WYANDOTTE 66106,KANSAS CITY,KS,39.061187,-94.687396,WYANDOTTE 66109,KANSAS CITY,KS,39.143376,-94.785598,WYANDOTTE 66110,KANSAS CITY,KS,39.1164,-94.6916,WYANDOTTE 66111,KANSAS CITY,KS,39.080332,-94.780593,WYANDOTTE 66112,KANSAS CITY,KS,39.115999,-94.764024,WYANDOTTE 66115,KANSAS CITY,KS,39.114534,-94.614647,WYANDOTTE 66117,KANSAS CITY,KS,39.1176,-94.6227,WYANDOTTE 66118,KANSAS CITY,KS,39.096867,-94.608361,WYANDOTTE 66119,KANSAS CITY,KS,39.0616,-94.6092,WYANDOTTE 66160,KANSAS CITY,KS,39.0572,-94.6117,WYANDOTTE 66203,SHAWNEE,KS,39.019802,-94.708303,JOHNSON 66204,OVERLAND PARK,KS,38.992488,-94.674769,JOHNSON 66207,OVERLAND PARK,KS,38.957472,-94.645193,JOHNSON 66210,OVERLAND PARK,KS,38.922007,-94.704788,JOHNSON 66212,OVERLAND PARK,KS,38.958954,-94.68414,JOHNSON 66213,OVERLAND PARK,KS,38.904899,-94.700344,JOHNSON 66214,OVERLAND PARK,KS,38.959929,-94.713265,JOHNSON 66216,SHAWNEE,KS,39.009289,-94.738234,JOHNSON 66217,SHAWNEE,KS,39.004835,-94.779663,JOHNSON 66218,SHAWNEE,KS,39.017431,-94.823913,JOHNSON 66221,OVERLAND PARK,KS,38.85272,-94.706745,JOHNSON 66223,OVERLAND PARK,KS,38.848477,-94.664467,JOHNSON 66224,OVERLAND PARK,KS,38.867526,-94.628903,JOHNSON 66225,OVERLAND PARK,KS,38.8878,-94.6861,JOHNSON 66226,SHAWNEE,KS,38.997764,-94.873017,JOHNSON 66251,OVERLAND PARK,KS,38.9165,-94.6579,JOHNSON 66282,OVERLAND PARK,KS,38.952,-94.6859,JOHNSON 66283,OVERLAND PARK,KS,38.8625,-94.6668,JOHNSON 66286,SHAWNEE,KS,39.024167,-94.718611,JOHNSON 66601,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66603,TOPEKA,KS,39.055344,-95.680212,SHAWNEE 66604,TOPEKA,KS,39.040549,-95.717831,SHAWNEE 66605,TOPEKA,KS,39.015076,-95.643894,SHAWNEE 66606,TOPEKA,KS,39.058345,-95.709458,SHAWNEE 66607,TOPEKA,KS,39.042111,-95.644858,SHAWNEE 66608,TOPEKA,KS,39.085812,-95.686651,SHAWNEE 66609,TOPEKA,KS,38.991899,-95.668069,SHAWNEE 66610,TOPEKA,KS,38.982213,-95.746061,SHAWNEE 66611,TOPEKA,KS,39.014152,-95.69815,SHAWNEE 66612,TOPEKA,KS,39.042714,-95.681806,SHAWNEE 66614,TOPEKA,KS,39.015403,-95.746883,SHAWNEE 66615,TOPEKA,KS,39.04458,-95.790561,SHAWNEE 66616,TOPEKA,KS,39.064479,-95.641302,SHAWNEE 66617,TOPEKA,KS,39.127098,-95.638388,SHAWNEE 66618,TOPEKA,KS,39.132853,-95.70231,SHAWNEE 66619,TOPEKA,KS,38.942859,-95.700728,SHAWNEE 66620,TOPEKA,KS,38.9459,-95.7131,SHAWNEE 66621,TOPEKA,KS,39.0361,-95.7004,SHAWNEE 66622,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66624,TOPEKA,KS,38.9353,-95.6898,SHAWNEE 66625,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66626,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66628,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66629,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66636,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66637,TOPEKA,KS,39.0154,-95.6957,SHAWNEE 66642,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66647,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66652,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66653,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66667,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66675,TOPEKA,KS,39.1439,-95.7457,SHAWNEE 66683,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66692,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66699,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 67201,WICHITA,KS,37.6898,-97.3415,SEDGWICK 67202,WICHITA,KS,37.689945,-97.33551,SEDGWICK 67203,WICHITA,KS,37.704798,-97.363766,SEDGWICK 67204,WICHITA,KS,37.748838,-97.356563,SEDGWICK 67205,WICHITA,KS,37.763929,-97.426924,SEDGWICK 67206,WICHITA,KS,37.699622,-97.239253,SEDGWICK 67207,WICHITA,KS,37.667152,-97.238962,SEDGWICK 67208,WICHITA,KS,37.702428,-97.281062,SEDGWICK 67209,WICHITA,KS,37.677855,-97.42354,SEDGWICK 67210,WICHITA,KS,37.637915,-97.261254,SEDGWICK 67211,WICHITA,KS,37.666181,-97.316451,SEDGWICK 67212,WICHITA,KS,37.700683,-97.438344,SEDGWICK 67213,WICHITA,KS,37.667959,-97.359074,SEDGWICK 67214,WICHITA,KS,37.705051,-97.313284,SEDGWICK 67215,WICHITA,KS,37.633333,-97.424985,SEDGWICK 67216,WICHITA,KS,37.622332,-97.313625,SEDGWICK 67217,WICHITA,KS,37.626574,-97.358139,SEDGWICK 67218,WICHITA,KS,37.669007,-97.280219,SEDGWICK 67219,WICHITA,KS,37.76482,-97.313517,SEDGWICK 67220,WICHITA,KS,37.74548,-97.275915,SEDGWICK 67223,WICHITA,KS,37.748434,-97.467421,SEDGWICK 67226,WICHITA,KS,37.737891,-97.247853,SEDGWICK 67227,WICHITA,KS,37.588466,-97.460561,SEDGWICK 67228,WICHITA,KS,37.776061,-97.201404,SEDGWICK 67230,WICHITA,KS,37.680814,-97.155764,SEDGWICK 67232,WICHITA,KS,37.642797,-97.164278,SEDGWICK 67235,WICHITA,KS,37.668631,-97.461145,SEDGWICK 67260,WICHITA,KS,37.7165,-97.2968,SEDGWICK 67275,WICHITA,KS,37.6728,-97.4437,SEDGWICK 67276,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67277,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67278,WICHITA,KS,37.6922,-97.3372,SEDGWICK 68101,OMAHA,NE,41.261,-95.9376,DOUGLAS 68102,OMAHA,NE,41.258961,-95.940909,DOUGLAS 68103,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68104,OMAHA,NE,41.29186,-95.999888,DOUGLAS 68105,OMAHA,NE,41.243502,-95.962938,DOUGLAS 68106,OMAHA,NE,41.240322,-95.997972,DOUGLAS 68107,OMAHA,NE,41.206783,-95.955877,DOUGLAS 68108,OMAHA,NE,41.238198,-95.933557,DOUGLAS 68109,OMAHA,NE,41.2345,-95.937,DOUGLAS 68110,OMAHA,NE,41.293342,-95.936072,DOUGLAS 68111,OMAHA,NE,41.296212,-95.965045,DOUGLAS 68112,OMAHA,NE,41.329614,-95.959684,DOUGLAS 68114,OMAHA,NE,41.265624,-96.049306,DOUGLAS 68116,OMAHA,NE,41.287854,-96.149462,DOUGLAS 68117,OMAHA,NE,41.206403,-95.995301,DOUGLAS 68118,OMAHA,NE,41.260636,-96.166118,DOUGLAS 68119,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68120,OMAHA,NE,41.2795,-95.9461,DOUGLAS 68122,OMAHA,NE,41.333312,-96.045772,DOUGLAS 68124,OMAHA,NE,41.233814,-96.049515,DOUGLAS 68127,OMAHA,NE,41.201782,-96.055019,DOUGLAS 68130,OMAHA,NE,41.235452,-96.168815,DOUGLAS 68131,OMAHA,NE,41.264658,-95.963891,DOUGLAS 68132,OMAHA,NE,41.265746,-95.995954,DOUGLAS 68134,OMAHA,NE,41.294917,-96.054569,DOUGLAS 68135,OMAHA,NE,41.210419,-96.169827,DOUGLAS 68136,OMAHA,NE,41.168343,-96.209633,SARPY 68137,OMAHA,NE,41.201067,-96.124462,DOUGLAS 68138,OMAHA,NE,41.177724,-96.129718,SARPY 68139,OMAHA,NE,41.2179,-96.1206,DOUGLAS 68142,OMAHA,NE,41.335904,-96.090109,DOUGLAS 68144,OMAHA,NE,41.235599,-96.116772,DOUGLAS 68145,OMAHA,NE,41.2348,-96.1198,DOUGLAS 68152,OMAHA,NE,41.334557,-96.000295,DOUGLAS 68154,OMAHA,NE,41.264167,-96.120611,DOUGLAS 68155,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68157,OMAHA,NE,41.183423,-95.995378,SARPY 68164,OMAHA,NE,41.29552,-96.100793,DOUGLAS 68172,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68175,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68176,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68178,OMAHA,NE,41.2649,-95.9488,DOUGLAS 68179,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68180,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68181,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68182,OMAHA,NE,41.2594,-96.0049,DOUGLAS 68183,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68197,OMAHA,NE,41.2353,-96.1213,DOUGLAS 68198,OMAHA,NE,41.2547,-95.9784,DOUGLAS 68501,LINCOLN,NE,40.8169,-96.7103,LANCASTER 68502,LINCOLN,NE,40.789282,-96.693763,LANCASTER 68503,LINCOLN,NE,40.823339,-96.676623,LANCASTER 68504,LINCOLN,NE,40.839226,-96.653248,LANCASTER 68505,LINCOLN,NE,40.824674,-96.625193,LANCASTER 68506,LINCOLN,NE,40.784796,-96.643052,LANCASTER 68507,LINCOLN,NE,40.847265,-96.628874,LANCASTER 68508,LINCOLN,NE,40.814503,-96.700907,LANCASTER 68509,LINCOLN,NE,40.8,-96.6666,LANCASTER 68510,LINCOLN,NE,40.806345,-96.654458,LANCASTER 68512,LINCOLN,NE,40.756487,-96.694606,LANCASTER 68514,LINCOLN,NE,40.925792,-96.661082,LANCASTER 68516,LINCOLN,NE,40.756807,-96.652304,LANCASTER 68517,LINCOLN,NE,40.931743,-96.604509,LANCASTER 68520,LINCOLN,NE,40.774441,-96.569341,LANCASTER 68521,LINCOLN,NE,40.851044,-96.711006,LANCASTER 68522,LINCOLN,NE,40.793407,-96.747871,LANCASTER 68523,LINCOLN,NE,40.740766,-96.758339,LANCASTER 68524,LINCOLN,NE,40.852913,-96.794345,LANCASTER 68526,LINCOLN,NE,40.731386,-96.587817,LANCASTER 68527,LINCOLN,NE,40.834708,-96.540053,LANCASTER 68528,LINCOLN,NE,40.819541,-96.754496,LANCASTER 68529,LINCOLN,NE,40.8583,-96.6349,LANCASTER 68531,LINCOLN,NE,40.899397,-96.715572,LANCASTER 68532,LINCOLN,NE,40.792159,-96.85509,LANCASTER 68542,LINCOLN,NE,40.8,-96.6666,LANCASTER 68583,LINCOLN,NE,40.8303,-96.6667,LANCASTER 68588,LINCOLN,NE,40.8207,-96.7026,LANCASTER 70001,METAIRIE,LA,29.987138,-90.169513,JEFFERSON 70002,METAIRIE,LA,30.009843,-90.16303,JEFFERSON 70003,METAIRIE,LA,29.99746,-90.21457,JEFFERSON 70004,METAIRIE,LA,29.9759,-90.1608,JEFFERSON 70005,METAIRIE,LA,30.000476,-90.13314,JEFFERSON 70006,METAIRIE,LA,30.012885,-90.191483,JEFFERSON 70009,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70010,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70011,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70033,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70055,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70060,METAIRIE,LA,29.8675,-90.0691,JEFFERSON 70112,NEW ORLEANS,LA,29.960484,-90.075301,ORLEANS 70113,NEW ORLEANS,LA,29.940511,-90.084777,ORLEANS 70114,NEW ORLEANS,LA,29.937934,-90.033126,ORLEANS 70115,NEW ORLEANS,LA,29.928863,-90.1005,ORLEANS 70116,NEW ORLEANS,LA,29.968608,-90.064614,ORLEANS 70117,NEW ORLEANS,LA,29.970298,-90.03124,ORLEANS 70118,NEW ORLEANS,LA,29.950352,-90.123598,ORLEANS 70119,NEW ORLEANS,LA,29.974552,-90.085156,ORLEANS 70121,NEW ORLEANS,LA,29.963071,-90.160953,JEFFERSON 70122,NEW ORLEANS,LA,30.005637,-90.064409,ORLEANS 70123,NEW ORLEANS,LA,29.953473,-90.210748,JEFFERSON 70124,NEW ORLEANS,LA,30.007081,-90.109384,ORLEANS 70125,NEW ORLEANS,LA,29.951225,-90.102785,ORLEANS 70126,NEW ORLEANS,LA,30.015341,-90.018913,ORLEANS 70127,NEW ORLEANS,LA,30.033811,-89.980688,ORLEANS 70128,NEW ORLEANS,LA,30.052691,-89.956421,ORLEANS 70129,NEW ORLEANS,LA,30.047984,-89.906206,ORLEANS 70130,NEW ORLEANS,LA,29.932438,-90.073949,ORLEANS 70131,NEW ORLEANS,LA,29.916811,-89.996033,ORLEANS 70139,NEW ORLEANS,LA,29.95,-90.071,ORLEANS 70140,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70141,NEW ORLEANS,LA,29.9928,-90.2587,JEFFERSON 70142,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70143,NEW ORLEANS,LA,29.8272,-90.0212,ORLEANS 70145,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70146,NEW ORLEANS,LA,29.9614,-90.0332,ORLEANS 70148,NEW ORLEANS,LA,30.0315,-90.0437,ORLEANS 70149,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70150,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70151,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70152,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70153,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70154,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70156,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70157,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70158,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70159,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70160,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70161,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70162,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70163,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70164,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70165,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70166,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70167,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70170,NEW ORLEANS,LA,29.9518,-90.0697,ORLEANS 70172,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70174,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70175,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70176,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70177,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70178,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70179,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70181,NEW ORLEANS,LA,29.9639,-90.0654,JEFFERSON 70182,NEW ORLEANS,LA,30.0089,-90.0647,ORLEANS 70183,NEW ORLEANS,LA,29.9656,-90.0644,JEFFERSON 70184,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70185,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70186,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70187,NEW ORLEANS,LA,30.0235,-89.975,ORLEANS 70189,NEW ORLEANS,LA,30.0749,-89.8161,ORLEANS 70190,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70195,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70500,LAFAYETTE,LA,30.2240897,-92.0198427,LAFAYETTE 70501,LAFAYETTE,LA,30.236141,-92.008261,LAFAYETTE 70502,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70503,LAFAYETTE,LA,30.184256,-92.049745,LAFAYETTE 70504,LAFAYETTE,LA,30.2244,-92.0451,LAFAYETTE 70505,LAFAYETTE,LA,30.205,-92.0157,LAFAYETTE 70506,LAFAYETTE,LA,30.207707,-92.065623,LAFAYETTE 70507,LAFAYETTE,LA,30.281313,-92.015962,LAFAYETTE 70508,LAFAYETTE,LA,30.158222,-92.023579,LAFAYETTE 70509,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70593,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70595,LAFAYETTE,LA,30.2195,-92.0074,LAFAYETTE 70596,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70598,LAFAYETTE,LA,30.1765,-92.008,LAFAYETTE 70601,LAKE CHARLES,LA,30.228453,-93.187966,CALCASIEU 70602,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70605,LAKE CHARLES,LA,30.169349,-93.221798,CALCASIEU 70606,LAKE CHARLES,LA,30.166,-93.232,CALCASIEU 70607,LAKE CHARLES,LA,30.1142,-93.2014,CALCASIEU 70609,LAKE CHARLES,LA,30.1809,-93.2157,CALCASIEU 70611,LAKE CHARLES,LA,30.322031,-93.211082,CALCASIEU 70612,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70615,LAKE CHARLES,LA,30.2404,-93.1523,CALCASIEU 70616,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70629,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70801,BATON ROUGE,LA,30.450731,-91.186954,EAST BATON ROUGE 70802,BATON ROUGE,LA,30.444236,-91.169037,EAST BATON ROUGE 70803,BATON ROUGE,LA,30.4124,-91.1822,EAST BATON ROUGE 70804,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70805,BATON ROUGE,LA,30.48604,-91.148095,EAST BATON ROUGE 70806,BATON ROUGE,LA,30.448486,-91.130046,EAST BATON ROUGE 70807,BATON ROUGE,LA,30.533199,-91.178615,EAST BATON ROUGE 70808,BATON ROUGE,LA,30.406596,-91.146765,EAST BATON ROUGE 70809,BATON ROUGE,LA,30.408891,-91.084213,EAST BATON ROUGE 70810,BATON ROUGE,LA,30.363309,-91.091898,EAST BATON ROUGE 70811,BATON ROUGE,LA,30.53046,-91.126539,EAST BATON ROUGE 70812,BATON ROUGE,LA,30.505159,-91.118111,EAST BATON ROUGE 70813,BATON ROUGE,LA,30.5262,-91.1955,EAST BATON ROUGE 70814,BATON ROUGE,LA,30.484808,-91.068936,EAST BATON ROUGE 70815,BATON ROUGE,LA,30.455809,-91.059558,EAST BATON ROUGE 70816,BATON ROUGE,LA,30.427289,-91.035645,EAST BATON ROUGE 70817,BATON ROUGE,LA,30.390404,-91.00213,EAST BATON ROUGE 70818,BATON ROUGE,LA,30.540832,-91.049964,EAST BATON ROUGE 70819,BATON ROUGE,LA,30.46679,-91.01565,EAST BATON ROUGE 70820,BATON ROUGE,LA,30.379523,-91.167064,EAST BATON ROUGE 70821,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70822,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70823,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70825,BATON ROUGE,LA,30.4484,-91.1832,EAST BATON ROUGE 70826,BATON ROUGE,LA,30.3979,-91.0768,EAST BATON ROUGE 70827,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70831,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70833,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70835,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70836,BATON ROUGE,LA,30.3909,-91.0909,EAST BATON ROUGE 70837,BATON ROUGE,LA,30.5538,-91.0373,EAST BATON ROUGE 70873,BATON ROUGE,LA,30.4476,-91.1772,EAST BATON ROUGE 70874,BATON ROUGE,LA,30.5211,-91.1451,EAST BATON ROUGE 70879,BATON ROUGE,LA,30.3733,-90.9815,EAST BATON ROUGE 70883,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70884,BATON ROUGE,LA,30.3786,-91.0974,EAST BATON ROUGE 70891,BATON ROUGE,LA,30.449,-91.1784,EAST BATON ROUGE 70892,BATON ROUGE,LA,30.4965,-91.1575,EAST BATON ROUGE 70893,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70894,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70895,BATON ROUGE,LA,30.4534,-91.0767,EAST BATON ROUGE 70896,BATON ROUGE,LA,30.444,-91.1434,EAST BATON ROUGE 70898,BATON ROUGE,LA,30.4205,-91.1396,EAST BATON ROUGE 71101,SHREVEPORT,LA,32.503743,-93.748696,CADDO 71102,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71103,SHREVEPORT,LA,32.494459,-93.772701,CADDO 71104,SHREVEPORT,LA,32.482978,-93.734862,CADDO 71105,SHREVEPORT,LA,32.458882,-93.714341,CADDO 71106,SHREVEPORT,LA,32.426251,-93.747922,CADDO 71107,SHREVEPORT,LA,32.564652,-93.828781,CADDO 71108,SHREVEPORT,LA,32.448596,-93.781378,CADDO 71109,SHREVEPORT,LA,32.473994,-93.801297,CADDO 71115,SHREVEPORT,LA,32.410156,-93.697402,CADDO 71118,SHREVEPORT,LA,32.397664,-93.802543,CADDO 71119,SHREVEPORT,LA,32.477121,-93.87261,CADDO 71120,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71129,SHREVEPORT,LA,32.41412,-93.874192,CADDO 71130,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71133,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71134,SHREVEPORT,LA,32.4814,-93.7367,CADDO 71135,SHREVEPORT,LA,32.4431,-93.7098,CADDO 71136,SHREVEPORT,LA,32.4222,-93.7587,CADDO 71137,SHREVEPORT,LA,32.5935,-93.8539,CADDO 71138,SHREVEPORT,LA,32.4081,-93.7979,CADDO 71148,SHREVEPORT,LA,32.456,-93.7777,CADDO 71149,SHREVEPORT,LA,32.525,-93.75,CADDO 71150,SHREVEPORT,LA,34.16812,-94.96993,CADDO 71151,SHREVEPORT,LA,32.525,-93.75,CADDO 71152,SHREVEPORT,LA,32.4405,-93.7886,CADDO 71153,SHREVEPORT,LA,32.525,-93.75,CADDO 71154,SHREVEPORT,LA,32.525,-93.75,CADDO 71156,SHREVEPORT,LA,32.525,-93.75,CADDO 71161,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71162,SHREVEPORT,LA,32.525,-93.75,CADDO 71163,SHREVEPORT,LA,32.525,-93.75,CADDO 71164,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71165,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71166,SHREVEPORT,LA,32.525,-93.75,CADDO 71201,MONROE,LA,32.528551,-92.106104,OUACHITA 71202,MONROE,LA,32.463327,-92.090231,OUACHITA 71203,MONROE,LA,32.553038,-92.042241,OUACHITA 71207,MONROE,LA,32.5148,-92.116,OUACHITA 71208,MONROE,LA,32.4967,-92.0756,OUACHITA 71209,MONROE,LA,32.5281,-92.0728,OUACHITA 71210,MONROE,LA,32.5006,-92.1146,OUACHITA 71211,MONROE,LA,32.5985,-92.0179,OUACHITA 71212,MONROE,LA,32.5091,-92.1191,OUACHITA 71213,MONROE,LA,32.5259,-92.0811,OUACHITA 71217,MONROE,LA,32.4923,-92.0957,OUACHITA 71301,ALEXANDRIA,LA,31.288519,-92.463349,RAPIDES 71302,ALEXANDRIA,LA,31.268272,-92.424169,RAPIDES 71303,ALEXANDRIA,LA,31.304838,-92.508892,RAPIDES 71306,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71307,ALEXANDRIA,LA,31.2856,-92.4507,RAPIDES 71309,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71315,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71901,HOT SPRINGS NATIONAL PARK,AR,34.501475,-93.026024,GARLAND 71902,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71903,HOT SPRINGS NATIONAL PARK,AR,34.5114,-93.0537,GARLAND 71909,HOT SPRINGS NATIONAL PARK,AR,34.65862,-93.006386,GARLAND 71913,HOT SPRINGS NATIONAL PARK,AR,34.473304,-93.109177,GARLAND 71914,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71951,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 72114,NORTH LITTLE ROCK,AR,34.766974,-92.265376,PULASKI 72115,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72116,NORTH LITTLE ROCK,AR,34.807629,-92.237359,PULASKI 72117,NORTH LITTLE ROCK,AR,34.776305,-92.194604,PULASKI 72118,NORTH LITTLE ROCK,AR,34.821598,-92.307875,PULASKI 72119,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72124,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72190,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72198,NORTH LITTLE ROCK,AR,34.772,-92.2717,PULASKI 72199,NORTH LITTLE ROCK,AR,34.901111,-92.310556,PULASKI 72201,LITTLE ROCK,AR,34.748342,-92.281939,PULASKI 72202,LITTLE ROCK,AR,34.736322,-92.274067,PULASKI 72203,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72204,LITTLE ROCK,AR,34.726904,-92.344041,PULASKI 72205,LITTLE ROCK,AR,34.750971,-92.345512,PULASKI 72206,LITTLE ROCK,AR,34.683599,-92.277606,PULASKI 72207,LITTLE ROCK,AR,34.772121,-92.356481,PULASKI 72209,LITTLE ROCK,AR,34.672509,-92.352919,PULASKI 72210,LITTLE ROCK,AR,34.707625,-92.465981,PULASKI 72211,LITTLE ROCK,AR,34.758819,-92.431485,PULASKI 72212,LITTLE ROCK,AR,34.787076,-92.422232,PULASKI 72214,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72215,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72216,LITTLE ROCK,AR,34.6537,-92.2489,PULASKI 72217,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72219,LITTLE ROCK,AR,34.6803,-92.3452,PULASKI 72221,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72222,LITTLE ROCK,AR,34.8025,-92.4398,PULASKI 72223,LITTLE ROCK,AR,34.7928,-92.4794,PULASKI 72225,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72227,LITTLE ROCK,AR,34.775,-92.3765,PULASKI 72231,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72260,LITTLE ROCK,AR,34.7476,-92.2814,PULASKI 72295,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72901,FORT SMITH,AR,35.365272,-94.411035,SEBASTIAN 72902,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72903,FORT SMITH,AR,35.342673,-94.378361,SEBASTIAN 72904,FORT SMITH,AR,35.405122,-94.38723,SEBASTIAN 72905,FORT SMITH,AR,35.297366,-94.340521,SEBASTIAN 72906,FORT SMITH,AR,35.332,-94.4001,SEBASTIAN 72908,FORT SMITH,AR,35.3028,-94.4093,SEBASTIAN 72913,FORT SMITH,AR,35.3339,-94.3753,SEBASTIAN 72914,FORT SMITH,AR,35.3858,-94.3983,SEBASTIAN 72916,FORT SMITH,AR,35.250175,-94.370308,SEBASTIAN 72917,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72918,FORT SMITH,AR,35.3511,-94.3509,SEBASTIAN 72919,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 73003,EDMOND,OK,35.68,-97.53,OKLAHOMA 73012,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73013,EDMOND,OK,35.621534,-97.473268,OKLAHOMA 73019,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73025,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73026,NORMAN,OK,35.2277,-97.2813,CLEVELAND 73034,EDMOND,OK,35.666483,-97.479835,OKLAHOMA 73069,NORMAN,OK,35.220389,-97.457743,CLEVELAND 73070,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73071,NORMAN,OK,35.224254,-97.379159,CLEVELAND 73072,NORMAN,OK,35.210733,-97.472984,CLEVELAND 73083,EDMOND,OK,35.5193,-97.3362,OKLAHOMA 73101,OKLAHOMA CITY,OK,35.473,-97.5177,OKLAHOMA 73102,OKLAHOMA CITY,OK,35.472601,-97.519926,OKLAHOMA 73103,OKLAHOMA CITY,OK,35.490957,-97.519591,OKLAHOMA 73104,OKLAHOMA CITY,OK,35.479388,-97.501714,OKLAHOMA 73105,OKLAHOMA CITY,OK,35.510811,-97.500291,OKLAHOMA 73106,OKLAHOMA CITY,OK,35.485328,-97.537228,OKLAHOMA 73107,OKLAHOMA CITY,OK,35.48736,-97.573974,OKLAHOMA 73108,OKLAHOMA CITY,OK,35.444485,-97.561928,OKLAHOMA 73109,OKLAHOMA CITY,OK,35.425944,-97.526131,OKLAHOMA 73110,OKLAHOMA CITY,OK,35.461978,-97.397661,OKLAHOMA 73111,OKLAHOMA CITY,OK,35.504238,-97.480607,OKLAHOMA 73112,OKLAHOMA CITY,OK,35.518435,-97.574639,OKLAHOMA 73113,OKLAHOMA CITY,OK,35.5657,-97.5175,OKLAHOMA 73114,OKLAHOMA CITY,OK,35.570357,-97.525736,OKLAHOMA 73115,OKLAHOMA CITY,OK,35.440093,-97.441645,OKLAHOMA 73116,OKLAHOMA CITY,OK,35.542484,-97.56394,OKLAHOMA 73117,OKLAHOMA CITY,OK,35.479667,-97.472195,OKLAHOMA 73118,OKLAHOMA CITY,OK,35.513645,-97.531908,OKLAHOMA 73119,OKLAHOMA CITY,OK,35.421033,-97.561584,OKLAHOMA 73120,OKLAHOMA CITY,OK,35.583478,-97.563756,OKLAHOMA 73121,OKLAHOMA CITY,OK,35.506235,-97.445183,OKLAHOMA 73122,OKLAHOMA CITY,OK,35.520239,-97.613305,OKLAHOMA 73123,OKLAHOMA CITY,OK,35.537,-97.6228,OKLAHOMA 73124,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73125,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73126,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73127,OKLAHOMA CITY,OK,35.483371,-97.629927,OKLAHOMA 73128,OKLAHOMA CITY,OK,35.444358,-97.616362,OKLAHOMA 73129,OKLAHOMA CITY,OK,35.43119,-97.491309,OKLAHOMA 73130,OKLAHOMA CITY,OK,35.460863,-97.351489,OKLAHOMA 73131,OKLAHOMA CITY,OK,35.579693,-97.469127,OKLAHOMA 73132,OKLAHOMA CITY,OK,35.552783,-97.636333,OKLAHOMA 73134,OKLAHOMA CITY,OK,35.617397,-97.558342,OKLAHOMA 73135,OKLAHOMA CITY,OK,35.411037,-97.438762,OKLAHOMA 73136,OKLAHOMA CITY,OK,35.4946,-97.4778,OKLAHOMA 73137,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73139,OKLAHOMA CITY,OK,35.379193,-97.536205,OKLAHOMA 73140,OKLAHOMA CITY,OK,35.449444,-97.396389,OKLAHOMA 73141,OKLAHOMA CITY,OK,35.491848,-97.366606,OKLAHOMA 73142,OKLAHOMA CITY,OK,35.598994,-97.625067,OKLAHOMA 73143,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73144,OKLAHOMA CITY,OK,35.4087,-97.5548,OKLAHOMA 73146,OKLAHOMA CITY,OK,35.4945,-97.53,OKLAHOMA 73147,OKLAHOMA CITY,OK,35.4861,-97.5817,OKLAHOMA 73148,OKLAHOMA CITY,OK,35.4546,-97.5543,OKLAHOMA 73149,OKLAHOMA CITY,OK,35.394998,-97.497175,OKLAHOMA 73150,OKLAHOMA CITY,OK,35.41231,-97.33308,OKLAHOMA 73151,OKLAHOMA CITY,OK,35.568508,-97.39057,OKLAHOMA 73152,OKLAHOMA CITY,OK,35.4933,-97.505,OKLAHOMA 73153,OKLAHOMA CITY,OK,35.3337,-97.4922,CLEVELAND 73154,OKLAHOMA CITY,OK,35.5235,-97.5249,OKLAHOMA 73155,OKLAHOMA CITY,OK,35.4203,-97.4376,OKLAHOMA 73156,OKLAHOMA CITY,OK,35.5659,-97.5489,OKLAHOMA 73157,OKLAHOMA CITY,OK,35.5109,-97.5658,OKLAHOMA 73159,OKLAHOMA CITY,OK,35.39224,-97.55674,OKLAHOMA 73160,OKLAHOMA CITY,OK,35.342465,-97.487352,CLEVELAND 73162,OKLAHOMA CITY,OK,35.580647,-97.641934,OKLAHOMA 73163,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73164,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73165,OKLAHOMA CITY,OK,35.337086,-97.349792,CLEVELAND 73167,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73169,OKLAHOMA CITY,OK,35.388233,-97.658683,OKLAHOMA 73170,OKLAHOMA CITY,OK,35.341554,-97.536,CLEVELAND 73172,OKLAHOMA CITY,OK,35.5797,-97.6449,OKLAHOMA 73173,OKLAHOMA CITY,OK,35.342455,-97.63171,OKLAHOMA 73178,OKLAHOMA CITY,OK,35.5368,-97.565,OKLAHOMA 73179,OKLAHOMA CITY,OK,35.424157,-97.654729,OKLAHOMA 73184,OKLAHOMA CITY,OK,35.6166,-97.568,OKLAHOMA 73185,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73189,OKLAHOMA CITY,OK,35.3929,-97.579,CLEVELAND 73190,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73193,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73194,OKLAHOMA CITY,OK,35.5182,-97.5025,OKLAHOMA 73195,OKLAHOMA CITY,OK,35.4678,-97.5164,OKLAHOMA 73196,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73197,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73198,OKLAHOMA CITY,OK,35.5277,-97.569,OKLAHOMA 73199,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73301,AUSTIN,TX,30.2303,-97.7144,TRAVIS 73344,AUSTIN,TX,30.1798,-97.729,TRAVIS 74101,TULSA,OK,36.1504,-95.9953,TULSA 74102,TULSA,OK,36.1504,-95.9953,TULSA 74103,TULSA,OK,36.153858,-95.995426,TULSA 74104,TULSA,OK,36.146446,-95.952566,TULSA 74105,TULSA,OK,36.094808,-95.965544,TULSA 74106,TULSA,OK,36.188296,-95.985956,TULSA 74107,TULSA,OK,36.104199,-96.024448,TULSA 74108,TULSA,OK,36.149893,-95.792311,TULSA 74110,TULSA,OK,36.180296,-95.952492,TULSA 74112,TULSA,OK,36.147039,-95.907036,TULSA 74114,TULSA,OK,36.126152,-95.940796,TULSA 74115,TULSA,OK,36.175408,-95.911183,TULSA 74116,TULSA,OK,36.174994,-95.847695,TULSA 74117,TULSA,OK,36.27949,-95.910768,TULSA 74119,TULSA,OK,36.140688,-95.990194,TULSA 74120,TULSA,OK,36.144228,-95.973373,TULSA 74121,TULSA,OK,36.1504,-95.9953,TULSA 74126,TULSA,OK,36.238288,-95.993113,TULSA 74127,TULSA,OK,36.157636,-96.03107,TULSA 74128,TULSA,OK,36.145927,-95.851377,TULSA 74129,TULSA,OK,36.125928,-95.865354,TULSA 74130,TULSA,OK,36.239481,-95.959649,TULSA 74131,TULSA,OK,36.05566,-96.060229,CREEK 74132,TULSA,OK,36.063971,-96.025104,TULSA 74133,TULSA,OK,36.046717,-95.884062,TULSA 74134,TULSA,OK,36.116223,-95.822472,TULSA 74135,TULSA,OK,36.097603,-95.922805,TULSA 74136,TULSA,OK,36.060548,-95.945178,TULSA 74137,TULSA,OK,36.028426,-95.930597,TULSA 74141,TULSA,OK,36.1303,-95.8752,TULSA 74145,TULSA,OK,36.093433,-95.885576,TULSA 74146,TULSA,OK,36.109293,-95.85061,TULSA 74147,TULSA,OK,36.0969,-95.8861,TULSA 74148,TULSA,OK,36.191,-95.9856,TULSA 74149,TULSA,OK,36.1607,-96.036,TULSA 74150,TULSA,OK,36.1592,-95.9578,TULSA 74152,TULSA,OK,36.1538,-95.9925,TULSA 74153,TULSA,OK,36.0888,-95.9058,TULSA 74155,TULSA,OK,36.097,-95.8775,TULSA 74156,TULSA,OK,36.2481,-95.9752,TULSA 74157,TULSA,OK,36.1011,-96.036,TULSA 74158,TULSA,OK,36.1661,-95.9176,TULSA 74159,TULSA,OK,36.1414,-95.9595,TULSA 74169,TULSA,OK,36.1218,-95.8327,TULSA 74170,TULSA,OK,36.0626,-95.9604,TULSA 74171,TULSA,OK,36.0513,-95.9577,TULSA 74172,TULSA,OK,36.1549,-95.9916,TULSA 74182,TULSA,OK,36.1504,-95.9953,TULSA 74183,TULSA,OK,36.0616,-95.9412,TULSA 74184,TULSA,OK,36.0616,-95.9412,TULSA 74186,TULSA,OK,36.1504,-95.9953,TULSA 74187,TULSA,OK,36.1504,-95.9953,TULSA 74189,TULSA,OK,36.1504,-95.9953,TULSA 74192,TULSA,OK,36.1504,-95.9953,TULSA 74193,TULSA,OK,36.1504,-95.9953,TULSA 74194,TULSA,OK,36.1504,-95.9953,TULSA 75014,IRVING,TX,32.842,-96.9719,DALLAS 75015,IRVING,TX,32.8297,-96.9815,DALLAS 75016,IRVING,TX,32.8138,-96.9486,DALLAS 75017,IRVING,TX,32.8118,-96.9473,DALLAS 75023,PLANO,TX,33.054972,-96.736454,COLLIN 75024,PLANO,TX,33.075211,-96.784307,COLLIN 75025,PLANO,TX,33.078377,-96.729142,COLLIN 75026,PLANO,TX,33.0378,-96.7334,COLLIN 75037,IRVING,TX,32.7833,-96.8,DALLAS 75038,IRVING,TX,32.865309,-96.990503,DALLAS 75039,IRVING,TX,32.869669,-96.938876,DALLAS 75040,GARLAND,TX,32.922744,-96.624804,DALLAS 75041,GARLAND,TX,32.87937,-96.641115,DALLAS 75042,GARLAND,TX,32.918486,-96.677545,DALLAS 75043,GARLAND,TX,32.856502,-96.599882,DALLAS 75044,GARLAND,TX,32.952228,-96.665383,DALLAS 75045,GARLAND,TX,32.945,-96.6822,DALLAS 75046,GARLAND,TX,32.9158,-96.6419,DALLAS 75047,GARLAND,TX,32.8766,-96.6477,DALLAS 75049,GARLAND,TX,32.8565,-96.6031,DALLAS 75060,IRVING,TX,32.80231,-96.959665,DALLAS 75061,IRVING,TX,32.826658,-96.963256,DALLAS 75062,IRVING,TX,32.847854,-96.974027,DALLAS 75063,IRVING,TX,32.924686,-96.959817,DALLAS 75074,PLANO,TX,33.027722,-96.67771,COLLIN 75075,PLANO,TX,33.024985,-96.739743,COLLIN 75086,PLANO,TX,33.0234,-96.6986,COLLIN 75093,PLANO,TX,33.029866,-96.788903,COLLIN 75094,PLANO,TX,33.004873,-96.609101,COLLIN 75149,MESQUITE,TX,32.767821,-96.608219,DALLAS 75150,MESQUITE,TX,32.815416,-96.630681,DALLAS 75180,MESQUITE,TX,32.720216,-96.615278,DALLAS 75181,MESQUITE,TX,32.727166,-96.566889,DALLAS 75185,MESQUITE,TX,32.7666,-96.5988,DALLAS 75187,MESQUITE,TX,32.7666,-96.5988,DALLAS 75201,DALLAS,TX,32.790439,-96.80439,DALLAS 75202,DALLAS,TX,32.778056,-96.805352,DALLAS 75203,DALLAS,TX,32.745985,-96.806976,DALLAS 75204,DALLAS,TX,32.803814,-96.785144,DALLAS 75205,DALLAS,TX,32.836878,-96.793828,DALLAS 75206,DALLAS,TX,32.831029,-96.769219,DALLAS 75207,DALLAS,TX,32.793897,-96.831871,DALLAS 75208,DALLAS,TX,32.749208,-96.838898,DALLAS 75209,DALLAS,TX,32.84564,-96.825984,DALLAS 75210,DALLAS,TX,32.769919,-96.742974,DALLAS 75211,DALLAS,TX,32.736928,-96.881797,DALLAS 75212,DALLAS,TX,32.782884,-96.871396,DALLAS 75214,DALLAS,TX,32.824789,-96.749774,DALLAS 75215,DALLAS,TX,32.758206,-96.76226,DALLAS 75216,DALLAS,TX,32.708611,-96.795488,DALLAS 75217,DALLAS,TX,32.724429,-96.675481,DALLAS 75218,DALLAS,TX,32.846335,-96.697212,DALLAS 75219,DALLAS,TX,32.813245,-96.814166,DALLAS 75220,DALLAS,TX,32.868131,-96.862202,DALLAS 75221,DALLAS,TX,32.7836,-96.7986,DALLAS 75222,DALLAS,TX,32.7833,-96.8,DALLAS 75223,DALLAS,TX,32.794173,-96.747475,DALLAS 75224,DALLAS,TX,32.711415,-96.838711,DALLAS 75225,DALLAS,TX,32.862808,-96.791753,DALLAS 75226,DALLAS,TX,32.78871,-96.767552,DALLAS 75227,DALLAS,TX,32.767226,-96.683586,DALLAS 75228,DALLAS,TX,32.824997,-96.678378,DALLAS 75229,DALLAS,TX,32.8958,-96.8588,DALLAS 75230,DALLAS,TX,32.89994,-96.789679,DALLAS 75231,DALLAS,TX,32.875621,-96.74953,DALLAS 75232,DALLAS,TX,32.664708,-96.838392,DALLAS 75233,DALLAS,TX,32.704638,-96.872547,DALLAS 75234,DALLAS,TX,32.929803,-96.876848,DALLAS 75235,DALLAS,TX,32.825213,-96.838843,DALLAS 75236,DALLAS,TX,32.690002,-96.917737,DALLAS 75237,DALLAS,TX,32.658972,-96.876453,DALLAS 75238,DALLAS,TX,32.876976,-96.707982,DALLAS 75240,DALLAS,TX,32.937431,-96.787214,DALLAS 75241,DALLAS,TX,32.672216,-96.777421,DALLAS 75242,DALLAS,TX,32.7833,-96.8,DALLAS 75243,DALLAS,TX,32.910347,-96.728472,DALLAS 75244,DALLAS,TX,32.925817,-96.842533,DALLAS 75245,DALLAS,TX,32.8207,-96.8398,DALLAS 75246,DALLAS,TX,32.79484,-96.769696,DALLAS 75247,DALLAS,TX,32.801323,-96.887123,DALLAS 75248,DALLAS,TX,32.968199,-96.794242,DALLAS 75249,DALLAS,TX,32.636024,-96.949266,DALLAS 75250,DALLAS,TX,32.7801,-96.8014,DALLAS 75251,DALLAS,TX,32.912203,-96.771831,DALLAS 75252,DALLAS,TX,32.996848,-96.792113,COLLIN 75253,DALLAS,TX,32.683311,-96.59643,DALLAS 75254,DALLAS,TX,32.9464,-96.8022,DALLAS 75258,DALLAS,TX,32.8092,-96.8894,DALLAS 75260,DALLAS,TX,32.7833,-96.8,DALLAS 75261,DALLAS,TX,32.8939,-97.0404,DALLAS 75262,DALLAS,TX,32.7833,-96.8,DALLAS 75263,DALLAS,TX,32.7833,-96.8,DALLAS 75264,DALLAS,TX,32.7833,-96.8,DALLAS 75265,DALLAS,TX,32.7833,-96.8,DALLAS 75266,DALLAS,TX,32.7833,-96.8,DALLAS 75267,DALLAS,TX,32.7833,-96.8,DALLAS 75270,DALLAS,TX,32.7807,-96.8015,DALLAS 75275,DALLAS,TX,32.8351,-96.7848,DALLAS 75277,DALLAS,TX,32.7833,-96.8,DALLAS 75283,DALLAS,TX,32.8366,-96.7963,DALLAS 75284,DALLAS,TX,32.8366,-96.7963,DALLAS 75285,DALLAS,TX,32.7833,-96.8,DALLAS 75286,DALLAS,TX,32.7833,-96.8,DALLAS 75287,DALLAS,TX,33.000458,-96.83143,COLLIN 75301,DALLAS,TX,32.7833,-96.8,DALLAS 75303,DALLAS,TX,32.7833,-96.8,DALLAS 75310,DALLAS,TX,32.7833,-96.8,DALLAS 75312,DALLAS,TX,32.7833,-96.8,DALLAS 75313,DALLAS,TX,32.7833,-96.8,DALLAS 75315,DALLAS,TX,32.7739,-96.7689,DALLAS 75320,DALLAS,TX,32.7833,-96.8,DALLAS 75323,DALLAS,TX,32.9698,-96.8001,DALLAS 75326,DALLAS,TX,32.8633,-96.9804,DALLAS 75334,DALLAS,TX,32.8375,-96.8653,DALLAS 75336,DALLAS,TX,32.6713,-96.6193,DALLAS 75339,DALLAS,TX,32.7144,-96.7835,DALLAS 75340,DALLAS,TX,32.8375,-96.8653,DALLAS 75342,DALLAS,TX,32.809,-96.8894,DALLAS 75343,DALLAS,TX,32.8375,-96.8653,DALLAS 75344,DALLAS,TX,32.8375,-96.8653,DALLAS 75353,DALLAS,TX,32.7833,-96.8,DALLAS 75354,DALLAS,TX,32.8601,-96.8869,DALLAS 75355,DALLAS,TX,32.8791,-96.708,DALLAS 75356,DALLAS,TX,32.8092,-96.8894,DALLAS 75357,DALLAS,TX,32.7833,-96.8,DALLAS 75358,DALLAS,TX,32.9397,-96.8722,DALLAS 75359,DALLAS,TX,32.8136,-96.7559,DALLAS 75360,DALLAS,TX,32.8282,-96.7456,DALLAS 75363,DALLAS,TX,32.9382,-96.7932,DALLAS 75364,DALLAS,TX,32.7833,-96.8,DALLAS 75367,DALLAS,TX,32.9022,-96.7921,DALLAS 75368,DALLAS,TX,32.9207,-96.9762,DALLAS 75370,DALLAS,TX,32.9899,-96.831,DALLAS 75371,DALLAS,TX,32.7739,-96.7689,DALLAS 75372,DALLAS,TX,32.8417,-96.7723,DALLAS 75373,DALLAS,TX,32.7833,-96.8,DALLAS 75374,DALLAS,TX,32.9133,-96.7439,DALLAS 75376,DALLAS,TX,32.7107,-96.8388,DALLAS 75378,DALLAS,TX,32.894,-96.8697,DALLAS 75379,DALLAS,TX,32.9382,-96.7932,DALLAS 75380,DALLAS,TX,32.9335,-96.8172,DALLAS 75381,DALLAS,TX,32.9439,-96.8899,DALLAS 75382,DALLAS,TX,32.8775,-96.7492,DALLAS 75386,DALLAS,TX,32.786667,-96.802222,DALLAS 75387,DALLAS,TX,32.7833,-96.8,DALLAS 75388,DALLAS,TX,32.7833,-96.8,DALLAS 75389,DALLAS,TX,32.7833,-96.8,DALLAS 75390,DALLAS,TX,32.8126,-96.8384,DALLAS 75391,DALLAS,TX,32.8366,-96.7963,DALLAS 75392,DALLAS,TX,32.7833,-96.8,DALLAS 75393,DALLAS,TX,32.7833,-96.8,DALLAS 75394,DALLAS,TX,32.7833,-96.8,DALLAS 75395,DALLAS,TX,32.7107,-96.8388,DALLAS 75396,DALLAS,TX,32.7833,-96.8,DALLAS 75397,DALLAS,TX,32.7833,-96.8,DALLAS 75398,DALLAS,TX,32.7833,-96.8,DALLAS 75501,TEXARKANA,TX,33.407371,-94.118245,BOWIE 75503,TEXARKANA,TX,33.466906,-94.077374,BOWIE 75504,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75505,TEXARKANA,TX,33.425,-94.0475,BOWIE 75507,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75599,TEXARKANA,TX,33.4425,-94.0776,BOWIE 75601,LONGVIEW,TX,32.526854,-94.72328,GREGG 75602,LONGVIEW,TX,32.472373,-94.710078,GREGG 75603,LONGVIEW,TX,32.426368,-94.711691,GREGG 75604,LONGVIEW,TX,32.525139,-94.798957,GREGG 75605,LONGVIEW,TX,32.554711,-94.776748,GREGG 75606,LONGVIEW,TX,32.4955,-94.7377,GREGG 75607,LONGVIEW,TX,32.4628,-94.7305,GREGG 75608,LONGVIEW,TX,32.5005,-94.7402,GREGG 75615,LONGVIEW,TX,32.4628,-94.7305,GREGG 75701,TYLER,TX,32.325366,-95.292179,SMITH 75702,TYLER,TX,32.361969,-95.311652,SMITH 75703,TYLER,TX,32.276827,-95.303147,SMITH 75704,TYLER,TX,32.373781,-95.406977,SMITH 75705,TYLER,TX,32.376599,-95.125225,SMITH 75706,TYLER,TX,32.444148,-95.330993,SMITH 75707,TYLER,TX,32.303782,-95.192692,SMITH 75708,TYLER,TX,32.389193,-95.244354,SMITH 75709,TYLER,TX,32.307817,-95.395563,SMITH 75710,TYLER,TX,32.3511,-95.3008,SMITH 75711,TYLER,TX,32.3511,-95.3008,SMITH 75712,TYLER,TX,32.3511,-95.3008,SMITH 75713,TYLER,TX,32.3511,-95.3008,SMITH 75798,TYLER,TX,32.3325,-95.2848,SMITH 75799,TYLER,TX,32.3132,-95.2457,SMITH 76001,ARLINGTON,TX,32.6336,-97.1469,TARRANT 76002,ARLINGTON,TX,32.6252,-97.0977,TARRANT 76003,ARLINGTON,TX,32.6578,-97.1723,TARRANT 76004,ARLINGTON,TX,32.7344,-97.1043,TARRANT 76005,ARLINGTON,TX,32.7531,-97.0591,TARRANT 76006,ARLINGTON,TX,32.778494,-97.083425,TARRANT 76007,ARLINGTON,TX,32.7204,-97.0822,TARRANT 76010,ARLINGTON,TX,32.720368,-97.082576,TARRANT 76011,ARLINGTON,TX,32.758236,-97.100302,TARRANT 76012,ARLINGTON,TX,32.753962,-97.134808,TARRANT 76013,ARLINGTON,TX,32.719905,-97.14416,TARRANT 76014,ARLINGTON,TX,32.695425,-97.087556,TARRANT 76015,ARLINGTON,TX,32.693125,-97.134685,TARRANT 76016,ARLINGTON,TX,32.688898,-97.190466,TARRANT 76017,ARLINGTON,TX,32.65545,-97.159899,TARRANT 76018,ARLINGTON,TX,32.654752,-97.091987,TARRANT 76019,ARLINGTON,TX,32.7286,-97.1159,TARRANT 76094,ARLINGTON,TX,32.7234,-97.1487,TARRANT 76096,ARLINGTON,TX,32.621,-97.0718,TARRANT 76101,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76102,FORT WORTH,TX,32.758897,-97.328023,TARRANT 76103,FORT WORTH,TX,32.747005,-97.260394,TARRANT 76104,FORT WORTH,TX,32.725551,-97.318409,TARRANT 76105,FORT WORTH,TX,32.723325,-97.26899,TARRANT 76106,FORT WORTH,TX,32.796849,-97.356008,TARRANT 76107,FORT WORTH,TX,32.739175,-97.385248,TARRANT 76108,FORT WORTH,TX,32.759271,-97.474063,TARRANT 76109,FORT WORTH,TX,32.700246,-97.378876,TARRANT 76110,FORT WORTH,TX,32.706505,-97.337505,TARRANT 76111,FORT WORTH,TX,32.782382,-97.300327,TARRANT 76112,FORT WORTH,TX,32.749297,-97.218122,TARRANT 76113,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76114,FORT WORTH,TX,32.775379,-97.401526,TARRANT 76115,FORT WORTH,TX,32.679618,-97.333634,TARRANT 76116,FORT WORTH,TX,32.723032,-97.448279,TARRANT 76118,FORT WORTH,TX,32.808944,-97.222781,TARRANT 76119,FORT WORTH,TX,32.691379,-97.267492,TARRANT 76120,FORT WORTH,TX,32.763912,-97.178112,TARRANT 76121,FORT WORTH,TX,32.7314,-97.4503,TARRANT 76122,FORT WORTH,TX,32.6824,-97.3469,TARRANT 76123,FORT WORTH,TX,32.625361,-97.365838,TARRANT 76124,FORT WORTH,TX,32.7471,-97.2159,TARRANT 76126,FORT WORTH,TX,32.670023,-97.464141,TARRANT 76129,FORT WORTH,TX,32.7108,-97.3602,TARRANT 76130,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76131,FORT WORTH,TX,32.863156,-97.337656,TARRANT 76132,FORT WORTH,TX,32.671092,-97.405626,TARRANT 76133,FORT WORTH,TX,32.652561,-97.375849,TARRANT 76134,FORT WORTH,TX,32.646886,-97.332467,TARRANT 76135,FORT WORTH,TX,32.824844,-97.45191,TARRANT 76136,FORT WORTH,TX,32.8967,-97.457,TARRANT 76137,FORT WORTH,TX,32.866421,-97.289114,TARRANT 76140,FORT WORTH,TX,32.631332,-97.270406,TARRANT 76147,FORT WORTH,TX,32.751,-97.364,TARRANT 76148,FORT WORTH,TX,32.8681,-97.249029,TARRANT 76150,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76155,FORT WORTH,TX,32.824742,-97.050285,TARRANT 76161,FORT WORTH,TX,32.8245,-97.3208,TARRANT 76162,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76163,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76164,FORT WORTH,TX,32.7822,-97.3564,TARRANT 76166,FORT WORTH,TX,32.725409,-97.3208496,TARRANT 76177,FORT WORTH,TX,32.901017,-97.332671,TARRANT 76179,FORT WORTH,TX,32.872961,-97.403149,TARRANT 76181,FORT WORTH,TX,32.8548,-97.2117,TARRANT 76185,FORT WORTH,TX,32.8647,-97.2151,TARRANT 76191,FORT WORTH,TX,32.8068,-97.3515,TARRANT 76192,FORT WORTH,TX,32.9295,-97.4351,TARRANT 76193,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76195,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76196,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76197,FORT WORTH,TX,32.7789,-97.2995,TARRANT 76198,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76199,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76201,DENTON,TX,33.22893,-97.131436,DENTON 76202,DENTON,TX,33.2147,-97.1327,DENTON 76203,DENTON,TX,33.2147,-97.1327,DENTON 76204,DENTON,TX,33.2147,-97.1327,DENTON 76205,DENTON,TX,33.180106,-97.101833,DENTON 76206,DENTON,TX,33.2566,-97.1536,DENTON 76207,DENTON,TX,33.2404,-97.1649,DENTON 76208,DENTON,TX,33.2031,-97.0642,DENTON 76209,DENTON,TX,33.2343,-97.1119,DENTON 76210,DENTON,TX,33.1511,-97.0905,DENTON 76301,WICHITA FALLS,TX,33.905284,-98.497645,WICHITA 76302,WICHITA FALLS,TX,33.864278,-98.493987,WICHITA 76305,WICHITA FALLS,TX,33.937345,-98.540679,WICHITA 76306,WICHITA FALLS,TX,33.974595,-98.524835,WICHITA 76307,WICHITA FALLS,TX,33.913611,-98.493056,WICHITA 76308,WICHITA FALLS,TX,33.863258,-98.533965,WICHITA 76309,WICHITA FALLS,TX,33.893084,-98.534288,WICHITA 76310,WICHITA FALLS,TX,33.858122,-98.575548,WICHITA 76501,TEMPLE,TX,31.089518,-97.334264,BELL 76502,TEMPLE,TX,31.071004,-97.389781,BELL 76503,TEMPLE,TX,31.1006,-97.3391,BELL 76504,TEMPLE,TX,31.091742,-97.364764,BELL 76505,TEMPLE,TX,31.0183,-97.3279,BELL 76508,TEMPLE,TX,31.1006,-97.3391,BELL 76540,KILLEEN,TX,31.117,-97.7261,BELL 76541,KILLEEN,TX,31.116426,-97.727808,BELL 76542,KILLEEN,TX,31.075056,-97.746736,BELL 76543,KILLEEN,TX,31.100505,-97.676864,BELL 76544,KILLEEN,TX,31.137953,-97.776404,BELL 76545,KILLEEN,TX,31.1169,-97.7275,BELL 76546,KILLEEN,TX,31.1169,-97.7275,BELL 76547,KILLEEN,TX,31.1169,-97.7275,BELL 76549,KILLEEN,TX,31.0839,-97.7818,BELL 76701,WACO,TX,31.552452,-97.139608,MCLENNAN 76702,WACO,TX,31.4721,-97.2468,MCLENNAN 76703,WACO,TX,31.5517,-97.1384,MCLENNAN 76704,WACO,TX,31.575701,-97.126742,MCLENNAN 76705,WACO,TX,31.610787,-97.094575,MCLENNAN 76706,WACO,TX,31.517086,-97.119752,MCLENNAN 76707,WACO,TX,31.552709,-97.158824,MCLENNAN 76708,WACO,TX,31.576544,-97.178635,MCLENNAN 76710,WACO,TX,31.534981,-97.189891,MCLENNAN 76711,WACO,TX,31.519863,-97.150254,MCLENNAN 76714,WACO,TX,31.5283,-97.1917,MCLENNAN 76715,WACO,TX,31.6032,-97.0796,MCLENNAN 76716,WACO,TX,31.4535,-97.0983,MCLENNAN 76795,WACO,TX,31.4721,-97.2468,MCLENNAN 76797,WACO,TX,31.5359,-97.1918,MCLENNAN 76798,WACO,TX,31.5446,-97.1192,MCLENNAN 76799,WACO,TX,31.5359,-97.1918,MCLENNAN 76901,SAN ANGELO,TX,31.478165,-100.481752,TOM GREEN 76902,SAN ANGELO,TX,31.5571,-100.5506,TOM GREEN 76903,SAN ANGELO,TX,31.470735,-100.438586,TOM GREEN 76904,SAN ANGELO,TX,31.419411,-100.480036,TOM GREEN 76905,SAN ANGELO,TX,31.464738,-100.390005,TOM GREEN 76906,SAN ANGELO,TX,31.4636,-100.4366,TOM GREEN 76909,SAN ANGELO,TX,31.4432,-100.4661,TOM GREEN 77001,HOUSTON,TX,29.7652,-95.3657,HARRIS 77002,HOUSTON,TX,29.759366,-95.359361,HARRIS 77003,HOUSTON,TX,29.748903,-95.339108,HARRIS 77004,HOUSTON,TX,29.724687,-95.362546,HARRIS 77005,HOUSTON,TX,29.717856,-95.426261,HARRIS 77006,HOUSTON,TX,29.740899,-95.392255,HARRIS 77007,HOUSTON,TX,29.773603,-95.403421,HARRIS 77008,HOUSTON,TX,29.799096,-95.411797,HARRIS 77009,HOUSTON,TX,29.793558,-95.367481,HARRIS 77010,HOUSTON,TX,29.75125,-95.356549,HARRIS 77011,HOUSTON,TX,29.741992,-95.307262,HARRIS 77012,HOUSTON,TX,29.71491,-95.281925,HARRIS 77013,HOUSTON,TX,29.784169,-95.230134,HARRIS 77014,HOUSTON,TX,29.979637,-95.462497,HARRIS 77015,HOUSTON,TX,29.785287,-95.185189,HARRIS 77016,HOUSTON,TX,29.857855,-95.303199,HARRIS 77017,HOUSTON,TX,29.686301,-95.255485,HARRIS 77018,HOUSTON,TX,29.827166,-95.426631,HARRIS 77019,HOUSTON,TX,29.751651,-95.40539,HARRIS 77020,HOUSTON,TX,29.775759,-95.312101,HARRIS 77021,HOUSTON,TX,29.69538,-95.356151,HARRIS 77022,HOUSTON,TX,29.829862,-95.376862,HARRIS 77023,HOUSTON,TX,29.724179,-95.317777,HARRIS 77024,HOUSTON,TX,29.76958,-95.520063,HARRIS 77025,HOUSTON,TX,29.688897,-95.434107,HARRIS 77026,HOUSTON,TX,29.797168,-95.328775,HARRIS 77027,HOUSTON,TX,29.739571,-95.446032,HARRIS 77028,HOUSTON,TX,29.829657,-95.287886,HARRIS 77029,HOUSTON,TX,29.760326,-95.254861,HARRIS 77030,HOUSTON,TX,29.70372,-95.40619,HARRIS 77031,HOUSTON,TX,29.658144,-95.541281,HARRIS 77032,HOUSTON,TX,29.93676,-95.329883,HARRIS 77033,HOUSTON,TX,29.668566,-95.338157,HARRIS 77034,HOUSTON,TX,29.636395,-95.221615,HARRIS 77035,HOUSTON,TX,29.651833,-95.485368,HARRIS 77036,HOUSTON,TX,29.698447,-95.540464,HARRIS 77037,HOUSTON,TX,29.889161,-95.393515,HARRIS 77038,HOUSTON,TX,29.91956,-95.438601,HARRIS 77039,HOUSTON,TX,29.906731,-95.33338,HARRIS 77040,HOUSTON,TX,29.879613,-95.529969,HARRIS 77041,HOUSTON,TX,29.860187,-95.581663,HARRIS 77042,HOUSTON,TX,29.740446,-95.558895,HARRIS 77043,HOUSTON,TX,29.805181,-95.560734,HARRIS 77044,HOUSTON,TX,29.863485,-95.19757,HARRIS 77045,HOUSTON,TX,29.629717,-95.438166,HARRIS 77046,HOUSTON,TX,29.73279,-95.431845,HARRIS 77047,HOUSTON,TX,29.625443,-95.374993,HARRIS 77048,HOUSTON,TX,29.632097,-95.341606,HARRIS 77049,HOUSTON,TX,29.823471,-95.184815,HARRIS 77050,HOUSTON,TX,29.901456,-95.284837,HARRIS 77051,HOUSTON,TX,29.65792,-95.368763,HARRIS 77052,HOUSTON,TX,29.7577,-95.361,HARRIS 77053,HOUSTON,TX,29.596156,-95.458709,FORT BEND 77054,HOUSTON,TX,29.685209,-95.401677,HARRIS 77055,HOUSTON,TX,29.797064,-95.495787,HARRIS 77056,HOUSTON,TX,29.744584,-95.468282,HARRIS 77057,HOUSTON,TX,29.74217,-95.490253,HARRIS 77058,HOUSTON,TX,29.574787,-95.057413,HARRIS 77059,HOUSTON,TX,29.597493,-95.113354,HARRIS 77060,HOUSTON,TX,29.933462,-95.398061,HARRIS 77061,HOUSTON,TX,29.665221,-95.278987,HARRIS 77062,HOUSTON,TX,29.572084,-95.130292,HARRIS 77063,HOUSTON,TX,29.734843,-95.522039,HARRIS 77064,HOUSTON,TX,29.918981,-95.556894,HARRIS 77065,HOUSTON,TX,29.931933,-95.61063,HARRIS 77066,HOUSTON,TX,29.961027,-95.494717,HARRIS 77067,HOUSTON,TX,29.954717,-95.452158,HARRIS 77068,HOUSTON,TX,30.006867,-95.489661,HARRIS 77069,HOUSTON,TX,29.986292,-95.520827,HARRIS 77070,HOUSTON,TX,29.978099,-95.58027,HARRIS 77071,HOUSTON,TX,29.651838,-95.517554,HARRIS 77072,HOUSTON,TX,29.699026,-95.586155,HARRIS 77073,HOUSTON,TX,30.019767,-95.408671,HARRIS 77074,HOUSTON,TX,29.689601,-95.510588,HARRIS 77075,HOUSTON,TX,29.622276,-95.259983,HARRIS 77076,HOUSTON,TX,29.85801,-95.383442,HARRIS 77077,HOUSTON,TX,29.747656,-95.602991,HARRIS 77078,HOUSTON,TX,29.849724,-95.258208,HARRIS 77079,HOUSTON,TX,29.773759,-95.597993,HARRIS 77080,HOUSTON,TX,29.815854,-95.522986,HARRIS 77081,HOUSTON,TX,29.711926,-95.484531,HARRIS 77082,HOUSTON,TX,29.722283,-95.628533,HARRIS 77083,HOUSTON,TX,29.694709,-95.651098,HARRIS 77084,HOUSTON,TX,29.844022,-95.662329,HARRIS 77085,HOUSTON,TX,29.621787,-95.481945,HARRIS 77086,HOUSTON,TX,29.922667,-95.493868,HARRIS 77087,HOUSTON,TX,29.687579,-95.301062,HARRIS 77088,HOUSTON,TX,29.881694,-95.453877,HARRIS 77089,HOUSTON,TX,29.593978,-95.221786,HARRIS 77090,HOUSTON,TX,30.016673,-95.447002,HARRIS 77091,HOUSTON,TX,29.853448,-95.443521,HARRIS 77092,HOUSTON,TX,29.832391,-95.472031,HARRIS 77093,HOUSTON,TX,29.861661,-95.340286,HARRIS 77094,HOUSTON,TX,29.770536,-95.710742,HARRIS 77095,HOUSTON,TX,29.894115,-95.648082,HARRIS 77096,HOUSTON,TX,29.672205,-95.486066,HARRIS 77097,HOUSTON,TX,29.7652,-95.3657,HARRIS 77098,HOUSTON,TX,29.734987,-95.411778,HARRIS 77099,HOUSTON,TX,29.670869,-95.586613,HARRIS 77201,HOUSTON,TX,29.7652,-95.3657,HARRIS 77202,HOUSTON,TX,29.763,-95.363,HARRIS 77203,HOUSTON,TX,29.763,-95.363,HARRIS 77204,HOUSTON,TX,29.763,-95.363,HARRIS 77205,HOUSTON,TX,29.982,-95.3427,HARRIS 77206,HOUSTON,TX,29.8267,-95.4259,HARRIS 77207,HOUSTON,TX,29.6858,-95.3031,HARRIS 77208,HOUSTON,TX,29.763,-95.363,HARRIS 77209,HOUSTON,TX,29.6198,-95.1882,HARRIS 77210,HOUSTON,TX,29.7652,-95.3657,HARRIS 77212,HOUSTON,TX,29.763,-95.363,HARRIS 77213,HOUSTON,TX,29.7857,-95.2183,HARRIS 77215,HOUSTON,TX,29.7351,-95.5202,HARRIS 77216,HOUSTON,TX,29.763,-95.363,HARRIS 77217,HOUSTON,TX,29.6761,-95.2478,HARRIS 77218,HOUSTON,TX,29.7848,-95.6749,HARRIS 77219,HOUSTON,TX,29.7526,-95.4042,HARRIS 77220,HOUSTON,TX,29.7728,-95.312,HARRIS 77221,HOUSTON,TX,29.7037,-95.355,HARRIS 77222,HOUSTON,TX,29.8299,-95.3763,HARRIS 77223,HOUSTON,TX,29.7273,-95.3206,HARRIS 77224,HOUSTON,TX,29.763,-95.363,HARRIS 77225,HOUSTON,TX,29.6925,-95.4174,HARRIS 77226,HOUSTON,TX,29.7939,-95.3415,HARRIS 77227,HOUSTON,TX,29.7392,-95.4365,HARRIS 77228,HOUSTON,TX,29.8247,-95.2863,HARRIS 77229,HOUSTON,TX,29.7857,-95.2183,HARRIS 77230,HOUSTON,TX,29.6958,-95.3873,HARRIS 77231,HOUSTON,TX,29.6536,-95.4825,HARRIS 77233,HOUSTON,TX,29.763056,-95.363056,HARRIS 77234,HOUSTON,TX,29.6256,-95.2205,HARRIS 77235,HOUSTON,TX,29.6536,-95.4825,HARRIS 77236,HOUSTON,TX,29.7066,-95.4967,HARRIS 77237,HOUSTON,TX,29.7337,-95.499,HARRIS 77238,HOUSTON,TX,29.9207,-95.4425,HARRIS 77240,HOUSTON,TX,29.8573,-95.5374,HARRIS 77241,HOUSTON,TX,29.8573,-95.5374,HARRIS 77242,HOUSTON,TX,29.7316,-95.5596,HARRIS 77243,HOUSTON,TX,29.8157,-95.5204,HARRIS 77244,HOUSTON,TX,29.7459,-95.6096,HARRIS 77245,HOUSTON,TX,29.6135,-95.4213,HARRIS 77246,HOUSTON,TX,29.7369,-95.2607,HARRIS 77247,HOUSTON,TX,29.7369,-95.2607,HARRIS 77248,HOUSTON,TX,29.763,-95.363,HARRIS 77249,HOUSTON,TX,29.8033,-95.3727,HARRIS 77250,HOUSTON,TX,29.8308,-95.4748,HARRIS 77251,HOUSTON,TX,29.7005,-95.5363,HARRIS 77252,HOUSTON,TX,29.7652,-95.3657,HARRIS 77253,HOUSTON,TX,29.7652,-95.3657,HARRIS 77254,HOUSTON,TX,29.6797,-95.4055,HARRIS 77255,HOUSTON,TX,29.8014,-95.4928,HARRIS 77256,HOUSTON,TX,29.7392,-95.4365,HARRIS 77257,HOUSTON,TX,29.7337,-95.499,HARRIS 77258,HOUSTON,TX,29.5481,-95.0887,HARRIS 77259,HOUSTON,TX,29.5768,-95.1407,HARRIS 77260,HOUSTON,TX,29.763,-95.363,HARRIS 77261,HOUSTON,TX,29.674,-95.2464,HARRIS 77262,HOUSTON,TX,29.7233,-95.2784,HARRIS 77263,HOUSTON,TX,29.7298,-95.5174,HARRIS 77265,HOUSTON,TX,29.7247,-95.4413,HARRIS 77266,HOUSTON,TX,29.7469,-95.3935,HARRIS 77267,HOUSTON,TX,29.953,-95.4444,HARRIS 77268,HOUSTON,TX,30.0062,-95.4876,HARRIS 77269,HOUSTON,TX,29.9774,-95.5723,HARRIS 77270,HOUSTON,TX,29.763,-95.363,HARRIS 77271,HOUSTON,TX,29.7562,-95.3653,HARRIS 77272,HOUSTON,TX,29.6883,-95.5847,HARRIS 77273,HOUSTON,TX,30.0174,-95.4453,HARRIS 77274,HOUSTON,TX,29.7066,-95.4967,HARRIS 77275,HOUSTON,TX,29.7562,-95.3653,HARRIS 77276,HOUSTON,TX,29.7369,-95.2607,HARRIS 77277,HOUSTON,TX,29.7247,-95.4413,HARRIS 77278,HOUSTON,TX,29.7369,-95.2607,HARRIS 77279,HOUSTON,TX,29.763,-95.363,HARRIS 77280,HOUSTON,TX,29.8157,-95.5204,HARRIS 77282,HOUSTON,TX,29.7459,-95.6096,HARRIS 77284,HOUSTON,TX,29.763,-95.363,HARRIS 77285,HOUSTON,TX,29.7369,-95.2607,HARRIS 77286,HOUSTON,TX,29.7369,-95.2607,HARRIS 77287,HOUSTON,TX,29.6761,-95.2478,HARRIS 77288,HOUSTON,TX,29.7317,-95.3767,HARRIS 77289,HOUSTON,TX,29.5768,-95.1407,HARRIS 77290,HOUSTON,TX,30.0174,-95.4453,HARRIS 77291,HOUSTON,TX,29.9207,-95.4425,HARRIS 77292,HOUSTON,TX,29.8268,-95.426,HARRIS 77293,HOUSTON,TX,29.8692,-95.3265,HARRIS 77294,HOUSTON,TX,29.7369,-95.2607,HARRIS 77296,HOUSTON,TX,29.7369,-95.2607,HARRIS 77297,HOUSTON,TX,29.763,-95.363,HARRIS 77298,HOUSTON,TX,29.763,-95.363,HARRIS 77299,HOUSTON,TX,29.763,-95.363,HARRIS 77301,CONROE,TX,30.312535,-95.452667,MONTGOMERY 77302,CONROE,TX,30.250357,-95.416087,MONTGOMERY 77303,CONROE,TX,30.344456,-95.369725,MONTGOMERY 77304,CONROE,TX,30.327351,-95.495244,MONTGOMERY 77305,CONROE,TX,30.311667,-95.455833,MONTGOMERY 77306,CONROE,TX,30.333056,-95.357778,MONTGOMERY 77320,HUNTSVILLE,TX,30.7947,-95.5337,WALKER 77340,HUNTSVILLE,TX,30.73435,-95.534186,WALKER 77341,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77342,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77343,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77344,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77348,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77349,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77373,SPRING,TX,30.053241,-95.377329,HARRIS 77379,SPRING,TX,30.023377,-95.528481,HARRIS 77380,SPRING,TX,30.13739,-95.468944,MONTGOMERY 77381,SPRING,TX,30.168887,-95.500743,MONTGOMERY 77382,SPRING,TX,30.2042,-95.5308,MONTGOMERY 77383,SPRING,TX,30.0136,-95.5177,HARRIS 77384,CONROE,TX,30.225725,-95.492392,MONTGOMERY 77385,CONROE,TX,30.187695,-95.428789,MONTGOMERY 77386,SPRING,TX,30.128805,-95.423943,MONTGOMERY 77387,SPRING,TX,30.1356,-95.4151,MONTGOMERY 77388,SPRING,TX,30.050546,-95.469456,HARRIS 77389,SPRING,TX,30.104398,-95.506624,HARRIS 77391,SPRING,TX,30.0234,-95.5685,HARRIS 77393,SPRING,TX,30.1474,-95.5086,MONTGOMERY 77449,KATY,TX,29.819922,-95.729267,HARRIS 77450,KATY,TX,29.767632,-95.744506,HARRIS 77491,KATY,TX,29.8398,-95.7771,HARRIS 77492,KATY,TX,29.8398,-95.7771,HARRIS 77493,KATY,TX,29.804876,-95.815988,HARRIS 77494,KATY,TX,29.750893,-95.811675,FORT BEND 77501,PASADENA,TX,29.692,-95.2005,HARRIS 77502,PASADENA,TX,29.678945,-95.198193,HARRIS 77503,PASADENA,TX,29.687696,-95.15721,HARRIS 77504,PASADENA,TX,29.650133,-95.188478,HARRIS 77505,PASADENA,TX,29.651753,-95.146388,HARRIS 77506,PASADENA,TX,29.70087,-95.19895,HARRIS 77507,PASADENA,TX,29.6055,-95.079365,HARRIS 77508,PASADENA,TX,29.6653,-95.1482,HARRIS 77550,GALVESTON,TX,29.298272,-94.79297,GALVESTON 77551,GALVESTON,TX,29.276584,-94.830334,GALVESTON 77552,GALVESTON,TX,29.2821,-94.8147,GALVESTON 77553,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77554,GALVESTON,TX,29.229638,-94.913716,GALVESTON 77555,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77701,BEAUMONT,TX,30.068805,-94.103896,JEFFERSON 77702,BEAUMONT,TX,30.087057,-94.125412,JEFFERSON 77703,BEAUMONT,TX,30.113201,-94.119698,JEFFERSON 77704,BEAUMONT,TX,30.0839,-94.1014,JEFFERSON 77705,BEAUMONT,TX,30.021128,-94.115673,JEFFERSON 77706,BEAUMONT,TX,30.094834,-94.164816,JEFFERSON 77707,BEAUMONT,TX,30.068567,-94.175541,JEFFERSON 77708,BEAUMONT,TX,30.139957,-94.160357,JEFFERSON 77709,BEAUMONT,TX,30.175,-94.201667,JEFFERSON 77710,BEAUMONT,TX,30.0471,-94.0758,JEFFERSON 77713,BEAUMONT,TX,30.084996,-94.260719,JEFFERSON 77720,BEAUMONT,TX,30.0382,-94.158,JEFFERSON 77725,BEAUMONT,TX,30.0976,-94.1665,JEFFERSON 77726,BEAUMONT,TX,30.0932,-94.1463,JEFFERSON 77801,BRYAN,TX,30.632698,-96.36616,BRAZOS 77802,BRYAN,TX,30.658171,-96.335143,BRAZOS 77803,BRYAN,TX,30.691293,-96.371398,BRAZOS 77805,BRYAN,TX,30.7546,-96.3317,BRAZOS 77806,BRYAN,TX,30.7546,-96.3317,BRAZOS 77807,BRYAN,TX,30.6626,-96.4589,BRAZOS 77808,BRYAN,TX,30.774,-96.3085,BRAZOS 77840,COLLEGE STATION,TX,30.604476,-96.31227,BRAZOS 77841,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77842,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77843,COLLEGE STATION,TX,30.614738,-96.340001,BRAZOS 77844,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77845,COLLEGE STATION,TX,30.511811,-96.317113,BRAZOS 78040,LAREDO,TX,27.515538,-99.498579,WEBB 78041,LAREDO,TX,27.556933,-99.490653,WEBB 78042,LAREDO,TX,27.5063,-99.508,WEBB 78043,LAREDO,TX,27.481537,-99.465488,WEBB 78044,LAREDO,TX,27.9133,-99.438,WEBB 78045,LAREDO,TX,27.6136,-99.5182,WEBB 78046,LAREDO,TX,27.43,-99.4664,WEBB 78049,LAREDO,TX,27.9133,-99.438,WEBB 78201,SAN ANTONIO,TX,29.468525,-98.526352,BEXAR 78202,SAN ANTONIO,TX,29.427462,-98.460112,BEXAR 78203,SAN ANTONIO,TX,29.414799,-98.460127,BEXAR 78204,SAN ANTONIO,TX,29.400217,-98.5063,BEXAR 78205,SAN ANTONIO,TX,29.423711,-98.492509,BEXAR 78206,SAN ANTONIO,TX,29.4153,-98.4823,BEXAR 78207,SAN ANTONIO,TX,29.422855,-98.525967,BEXAR 78208,SAN ANTONIO,TX,29.440039,-98.458983,BEXAR 78209,SAN ANTONIO,TX,29.488623,-98.455774,BEXAR 78210,SAN ANTONIO,TX,29.397718,-98.465796,BEXAR 78211,SAN ANTONIO,TX,29.358366,-98.545219,BEXAR 78212,SAN ANTONIO,TX,29.461181,-98.495815,BEXAR 78213,SAN ANTONIO,TX,29.513406,-98.522679,BEXAR 78214,SAN ANTONIO,TX,29.364115,-98.492436,BEXAR 78215,SAN ANTONIO,TX,29.441338,-98.479338,BEXAR 78216,SAN ANTONIO,TX,29.533387,-98.497511,BEXAR 78217,SAN ANTONIO,TX,29.539525,-98.419444,BEXAR 78218,SAN ANTONIO,TX,29.496852,-98.403184,BEXAR 78219,SAN ANTONIO,TX,29.448794,-98.397315,BEXAR 78220,SAN ANTONIO,TX,29.410641,-98.412791,BEXAR 78221,SAN ANTONIO,TX,29.330913,-98.505417,BEXAR 78222,SAN ANTONIO,TX,29.383113,-98.396005,BEXAR 78223,SAN ANTONIO,TX,29.357869,-98.435628,BEXAR 78224,SAN ANTONIO,TX,29.337432,-98.539335,BEXAR 78225,SAN ANTONIO,TX,29.387497,-98.524494,BEXAR 78226,SAN ANTONIO,TX,29.393001,-98.551095,BEXAR 78227,SAN ANTONIO,TX,29.402687,-98.643311,BEXAR 78228,SAN ANTONIO,TX,29.458937,-98.569871,BEXAR 78229,SAN ANTONIO,TX,29.504228,-98.569726,BEXAR 78230,SAN ANTONIO,TX,29.540738,-98.552117,BEXAR 78231,SAN ANTONIO,TX,29.571434,-98.536817,BEXAR 78232,SAN ANTONIO,TX,29.582833,-98.4673,BEXAR 78233,SAN ANTONIO,TX,29.554741,-98.369128,BEXAR 78234,SAN ANTONIO,TX,29.461961,-98.435404,BEXAR 78235,SAN ANTONIO,TX,29.341733,-98.439444,BEXAR 78236,SAN ANTONIO,TX,29.394267,-98.613367,BEXAR 78237,SAN ANTONIO,TX,29.420758,-98.564546,BEXAR 78238,SAN ANTONIO,TX,29.476833,-98.615451,BEXAR 78239,SAN ANTONIO,TX,29.515686,-98.361604,BEXAR 78240,SAN ANTONIO,TX,29.518896,-98.600566,BEXAR 78241,SAN ANTONIO,TX,29.392432,-98.578063,BEXAR 78242,SAN ANTONIO,TX,29.350905,-98.610927,BEXAR 78243,SAN ANTONIO,TX,29.3798,-98.5959,BEXAR 78244,SAN ANTONIO,TX,29.479264,-98.347585,BEXAR 78245,SAN ANTONIO,TX,29.418927,-98.689494,BEXAR 78246,SAN ANTONIO,TX,29.5362,-98.4881,BEXAR 78247,SAN ANTONIO,TX,29.577604,-98.409783,BEXAR 78248,SAN ANTONIO,TX,29.58936,-98.520105,BEXAR 78249,SAN ANTONIO,TX,29.561245,-98.611666,BEXAR 78250,SAN ANTONIO,TX,29.505394,-98.668765,BEXAR 78251,SAN ANTONIO,TX,29.459743,-98.655472,BEXAR 78252,SAN ANTONIO,TX,29.346015,-98.646395,BEXAR 78253,SAN ANTONIO,TX,29.459923,-98.747931,BEXAR 78254,SAN ANTONIO,TX,29.54091,-98.724841,BEXAR 78255,SAN ANTONIO,TX,29.636875,-98.655572,BEXAR 78256,SAN ANTONIO,TX,29.616946,-98.625215,BEXAR 78257,SAN ANTONIO,TX,29.64953,-98.613701,BEXAR 78258,SAN ANTONIO,TX,29.65624,-98.496699,BEXAR 78259,SAN ANTONIO,TX,29.628331,-98.444495,BEXAR 78260,SAN ANTONIO,TX,29.702578,-98.475908,BEXAR 78261,SAN ANTONIO,TX,29.705463,-98.419092,BEXAR 78262,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78263,SAN ANTONIO,TX,29.36143,-98.317386,BEXAR 78264,SAN ANTONIO,TX,29.173345,-98.472272,BEXAR 78265,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78266,SAN ANTONIO,TX,29.644226,-98.312774,COMAL 78268,SAN ANTONIO,TX,29.497,-98.6248,BEXAR 78269,SAN ANTONIO,TX,29.563,-98.5915,BEXAR 78270,SAN ANTONIO,TX,29.5827,-98.4538,BEXAR 78275,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78278,SAN ANTONIO,TX,29.5612,-98.5607,BEXAR 78279,SAN ANTONIO,TX,29.5334,-98.4929,BEXAR 78280,SAN ANTONIO,TX,29.5629,-98.3579,BEXAR 78283,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78284,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78285,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78286,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78287,SAN ANTONIO,TX,29.4892,-98.4566,BEXAR 78288,SAN ANTONIO,TX,29.5238,-98.6061,BEXAR 78289,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78291,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78292,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78293,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78294,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78295,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78296,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78297,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78298,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78299,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78401,CORPUS CHRISTI,TX,27.794086,-97.402994,NUECES 78402,CORPUS CHRISTI,TX,27.82621,-97.385659,NUECES 78403,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78405,CORPUS CHRISTI,TX,27.776234,-97.427132,NUECES 78406,CORPUS CHRISTI,TX,27.768412,-97.51445,NUECES 78407,CORPUS CHRISTI,TX,27.804195,-97.435597,NUECES 78408,CORPUS CHRISTI,TX,27.794477,-97.43815,NUECES 78409,CORPUS CHRISTI,TX,27.814555,-97.527034,NUECES 78410,CORPUS CHRISTI,TX,27.84585,-97.596002,NUECES 78411,CORPUS CHRISTI,TX,27.731139,-97.387732,NUECES 78412,CORPUS CHRISTI,TX,27.70608,-97.353694,NUECES 78413,CORPUS CHRISTI,TX,27.691041,-97.39832,NUECES 78414,CORPUS CHRISTI,TX,27.677016,-97.365016,NUECES 78415,CORPUS CHRISTI,TX,27.726204,-97.40778,NUECES 78416,CORPUS CHRISTI,TX,27.753593,-97.43468,NUECES 78417,CORPUS CHRISTI,TX,27.728964,-97.449429,NUECES 78418,CORPUS CHRISTI,TX,27.668531,-97.266558,NUECES 78419,CORPUS CHRISTI,TX,27.692502,-97.27636,NUECES 78426,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78427,CORPUS CHRISTI,TX,27.7961,-97.4002,NUECES 78460,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78461,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78463,CORPUS CHRISTI,TX,27.7739,-97.3983,NUECES 78465,CORPUS CHRISTI,TX,27.7765,-97.4198,NUECES 78466,CORPUS CHRISTI,TX,27.7438,-97.3804,NUECES 78467,CORPUS CHRISTI,TX,27.6574,-97.4676,NUECES 78468,CORPUS CHRISTI,TX,27.705,-97.3589,NUECES 78469,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78470,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78471,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78472,CORPUS CHRISTI,TX,27.6953,-97.4145,NUECES 78473,CORPUS CHRISTI,TX,27.79515,-97.396624,NUECES 78474,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78475,CORPUS CHRISTI,TX,27.7964,-97.3976,NUECES 78476,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78477,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78478,CORPUS CHRISTI,TX,27.7952,-97.3974,NUECES 78480,CORPUS CHRISTI,TX,27.6437,-97.3006,NUECES 78664,ROUND ROCK,TX,30.51452,-97.668028,WILLIAMSON 78665,ROUND ROCK,TX,30.5082551,-97.678896,WILLIAMSON 78680,ROUND ROCK,TX,30.517,-97.6987,WILLIAMSON 78681,ROUND ROCK,TX,30.508431,-97.706171,WILLIAMSON 78682,ROUND ROCK,TX,30.515278,-97.669167,WILLIAMSON 78683,ROUND ROCK,TX,30.4961,-97.646,WILLIAMSON 78701,AUSTIN,TX,30.271289,-97.742559,TRAVIS 78702,AUSTIN,TX,30.263817,-97.716589,TRAVIS 78703,AUSTIN,TX,30.290671,-97.764809,TRAVIS 78704,AUSTIN,TX,30.242831,-97.765788,TRAVIS 78705,AUSTIN,TX,30.289619,-97.739627,TRAVIS 78708,AUSTIN,TX,30.3911,-97.705,TRAVIS 78709,AUSTIN,TX,30.2342,-97.8497,TRAVIS 78710,AUSTIN,TX,30.3545,-97.655,TRAVIS 78711,AUSTIN,TX,30.2782,-97.7376,TRAVIS 78712,AUSTIN,TX,30.2858,-97.7349,TRAVIS 78713,AUSTIN,TX,30.2847,-97.7414,TRAVIS 78714,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78715,AUSTIN,TX,30.2065,-97.7966,TRAVIS 78716,AUSTIN,TX,30.2735,-97.7992,TRAVIS 78717,AUSTIN,TX,30.505972,-97.747187,WILLIAMSON 78718,AUSTIN,TX,30.3612,-97.7166,TRAVIS 78719,AUSTIN,TX,30.180243,-97.666701,TRAVIS 78720,AUSTIN,TX,30.4241,-97.7569,TRAVIS 78721,AUSTIN,TX,30.272144,-97.686798,TRAVIS 78722,AUSTIN,TX,30.289305,-97.71495,TRAVIS 78723,AUSTIN,TX,30.308515,-97.684941,TRAVIS 78724,AUSTIN,TX,30.295982,-97.639587,TRAVIS 78725,AUSTIN,TX,30.256186,-97.624301,TRAVIS 78726,AUSTIN,TX,30.43,-97.832649,TRAVIS 78727,AUSTIN,TX,30.425422,-97.719488,TRAVIS 78728,AUSTIN,TX,30.441679,-97.681123,TRAVIS 78729,AUSTIN,TX,30.45206,-97.768787,WILLIAMSON 78730,AUSTIN,TX,30.360745,-97.824062,TRAVIS 78731,AUSTIN,TX,30.347129,-97.760887,TRAVIS 78732,AUSTIN,TX,30.375233,-97.900685,TRAVIS 78733,AUSTIN,TX,30.331355,-97.866633,TRAVIS 78734,AUSTIN,TX,30.377404,-97.957558,TRAVIS 78735,AUSTIN,TX,30.248978,-97.841423,TRAVIS 78736,AUSTIN,TX,30.244433,-97.915968,TRAVIS 78737,AUSTIN,TX,30.210692,-97.942749,HAYS 78738,AUSTIN,TX,30.333708,-97.982367,TRAVIS 78739,AUSTIN,TX,30.172026,-97.878433,TRAVIS 78741,AUSTIN,TX,30.231513,-97.722317,TRAVIS 78742,AUSTIN,TX,30.231296,-97.670349,TRAVIS 78744,AUSTIN,TX,30.18764,-97.74723,TRAVIS 78745,AUSTIN,TX,30.206298,-97.795599,TRAVIS 78746,AUSTIN,TX,30.285009,-97.808129,TRAVIS 78747,AUSTIN,TX,30.130235,-97.762127,TRAVIS 78748,AUSTIN,TX,30.174311,-97.822474,TRAVIS 78749,AUSTIN,TX,30.216641,-97.850755,TRAVIS 78750,AUSTIN,TX,30.422401,-97.796676,TRAVIS 78751,AUSTIN,TX,30.309288,-97.724163,TRAVIS 78752,AUSTIN,TX,30.331562,-97.700394,TRAVIS 78753,AUSTIN,TX,30.36485,-97.682658,TRAVIS 78754,AUSTIN,TX,30.342331,-97.667267,TRAVIS 78755,AUSTIN,TX,30.3574,-97.7607,TRAVIS 78756,AUSTIN,TX,30.322312,-97.739032,TRAVIS 78757,AUSTIN,TX,30.343732,-97.731617,TRAVIS 78758,AUSTIN,TX,30.376431,-97.707758,TRAVIS 78759,AUSTIN,TX,30.403614,-97.752602,TRAVIS 78760,AUSTIN,TX,30.2139,-97.7339,TRAVIS 78761,AUSTIN,TX,30.3332,-97.6984,TRAVIS 78762,AUSTIN,TX,30.2615,-97.7218,TRAVIS 78763,AUSTIN,TX,30.2969,-97.7668,TRAVIS 78764,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78765,AUSTIN,TX,30.3065,-97.7296,TRAVIS 78766,AUSTIN,TX,30.3514,-97.7318,TRAVIS 78767,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78768,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78769,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78772,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78773,AUSTIN,TX,30.3306,-97.7036,TRAVIS 78774,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78778,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78779,AUSTIN,TX,30.3458,-97.7674,TRAVIS 78780,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78781,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78783,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78785,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78786,AUSTIN,TX,30.3545,-97.655,TRAVIS 78788,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78789,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78798,AUSTIN,TX,30.2822,-97.7639,TRAVIS 78799,AUSTIN,TX,30.2667,-97.7428,TRAVIS 79101,AMARILLO,TX,35.203238,-101.842052,POTTER 79102,AMARILLO,TX,35.199854,-101.84963,POTTER 79103,AMARILLO,TX,35.175134,-101.797587,POTTER 79104,AMARILLO,TX,35.193918,-101.797503,POTTER 79105,AMARILLO,TX,35.2219,-101.8308,POTTER 79106,AMARILLO,TX,35.197741,-101.894918,POTTER 79107,AMARILLO,TX,35.230866,-101.805962,POTTER 79108,AMARILLO,TX,35.277866,-101.830025,POTTER 79109,AMARILLO,TX,35.166332,-101.886764,RANDALL 79110,AMARILLO,TX,35.154468,-101.864063,RANDALL 79111,AMARILLO,TX,35.228619,-101.670342,POTTER 79114,AMARILLO,TX,35.1637,-101.882,RANDALL 79116,AMARILLO,TX,35.2138,-101.8834,POTTER 79117,AMARILLO,TX,35.2224,-101.8118,POTTER 79118,AMARILLO,TX,35.07629,-101.834936,RANDALL 79119,AMARILLO,TX,35.064214,-101.97432,RANDALL 79120,AMARILLO,TX,35.1886,-101.8165,POTTER 79121,AMARILLO,TX,35.169689,-101.926594,RANDALL 79124,AMARILLO,TX,35.270269,-101.942952,POTTER 79159,AMARILLO,TX,35.2219,-101.8308,POTTER 79166,AMARILLO,TX,35.1886,-101.8165,POTTER 79168,AMARILLO,TX,35.1886,-101.8165,POTTER 79172,AMARILLO,TX,35.1886,-101.8165,POTTER 79174,AMARILLO,TX,35.1886,-101.8165,POTTER 79178,AMARILLO,TX,35.1886,-101.8469,POTTER 79185,AMARILLO,TX,35.1886,-101.8165,POTTER 79187,AMARILLO,TX,35.2662,-101.7196,POTTER 79189,AMARILLO,TX,35.1886,-101.8165,POTTER 79401,LUBBOCK,TX,33.586527,-101.860634,LUBBOCK 79402,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79403,LUBBOCK,TX,33.619573,-101.80982,LUBBOCK 79404,LUBBOCK,TX,33.525979,-101.833263,LUBBOCK 79405,LUBBOCK,TX,33.570972,-101.850655,LUBBOCK 79406,LUBBOCK,TX,33.581934,-101.877828,LUBBOCK 79407,LUBBOCK,TX,33.568369,-101.942333,LUBBOCK 79408,LUBBOCK,TX,33.5916,-101.848,LUBBOCK 79409,LUBBOCK,TX,33.5837,-101.8809,LUBBOCK 79410,LUBBOCK,TX,33.56931,-101.890377,LUBBOCK 79411,LUBBOCK,TX,33.570393,-101.862593,LUBBOCK 79412,LUBBOCK,TX,33.546313,-101.857737,LUBBOCK 79413,LUBBOCK,TX,33.546597,-101.887142,LUBBOCK 79414,LUBBOCK,TX,33.549728,-101.918666,LUBBOCK 79415,LUBBOCK,TX,33.602117,-101.876015,LUBBOCK 79416,LUBBOCK,TX,33.592397,-101.936705,LUBBOCK 79423,LUBBOCK,TX,33.514604,-101.87946,LUBBOCK 79424,LUBBOCK,TX,33.515866,-101.93439,LUBBOCK 79430,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79452,LUBBOCK,TX,33.5483,-101.8481,LUBBOCK 79453,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79457,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79464,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79490,LUBBOCK,TX,33.5777,-101.8547,LUBBOCK 79491,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79493,LUBBOCK,TX,33.5482,-101.8831,LUBBOCK 79499,LUBBOCK,TX,33.5921,-102.018,LUBBOCK 79601,ABILENE,TX,32.468155,-99.718208,TAYLOR 79602,ABILENE,TX,32.41783,-99.721448,TAYLOR 79603,ABILENE,TX,32.467852,-99.761916,TAYLOR 79604,ABILENE,TX,32.3783,-99.6907,TAYLOR 79605,ABILENE,TX,32.431987,-99.772374,TAYLOR 79606,ABILENE,TX,32.392038,-99.774578,TAYLOR 79608,ABILENE,TX,32.4189,-99.7492,TAYLOR 79697,ABILENE,TX,32.4308,-99.749,TAYLOR 79698,ABILENE,TX,32.4486,-99.7327,TAYLOR 79699,ABILENE,TX,32.4699,-99.7082,TAYLOR 79701,MIDLAND,TX,31.989636,-102.06261,MIDLAND 79702,MIDLAND,TX,31.8691,-101.9227,MIDLAND 79703,MIDLAND,TX,31.972106,-102.136854,MIDLAND 79704,MIDLAND,TX,31.9972,-102.0775,MIDLAND 79705,MIDLAND,TX,32.029473,-102.091483,MIDLAND 79706,MIDLAND,TX,31.9089,-102.027,MIDLAND 79707,MIDLAND,TX,32.019911,-102.147599,MIDLAND 79708,MIDLAND,TX,32.0196,-102.1253,MIDLAND 79710,MIDLAND,TX,32.0593,-102.021,MIDLAND 79711,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79712,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79760,ODESSA,TX,31.8465,-102.3663,ECTOR 79761,ODESSA,TX,31.857945,-102.352252,ECTOR 79762,ODESSA,TX,31.889029,-102.354806,ECTOR 79763,ODESSA,TX,31.834085,-102.416179,ECTOR 79764,ODESSA,TX,31.876683,-102.437465,ECTOR 79765,ODESSA,TX,31.937548,-102.394403,ECTOR 79766,ODESSA,TX,31.782683,-102.344863,ECTOR 79768,ODESSA,TX,31.9037,-102.3324,ECTOR 79769,ODESSA,TX,31.8465,-102.3663,ECTOR 79901,EL PASO,TX,31.758411,-106.478311,EL PASO 79902,EL PASO,TX,31.776317,-106.493165,EL PASO 79903,EL PASO,TX,31.786213,-106.440569,EL PASO 79904,EL PASO,TX,31.853334,-106.438135,EL PASO 79905,EL PASO,TX,31.767447,-106.430445,EL PASO 79906,EL PASO,TX,31.807631,-106.421611,EL PASO 79907,EL PASO,TX,31.708908,-106.329281,EL PASO 79908,EL PASO,TX,31.82753,-106.386711,EL PASO 79910,EL PASO,TX,31.7691,-106.4264,EL PASO 79911,EL PASO,TX,31.7586,-106.4863,EL PASO 79912,EL PASO,TX,31.838309,-106.536433,EL PASO 79913,EL PASO,TX,31.8405,-106.5659,EL PASO 79914,EL PASO,TX,31.8816,-106.4195,EL PASO 79915,EL PASO,TX,31.743234,-106.368605,EL PASO 79916,EL PASO,TX,31.794873,-106.159157,EL PASO 79917,EL PASO,TX,31.6927,-106.327,EL PASO 79920,EL PASO,TX,31.8232,-106.4614,EL PASO 79922,EL PASO,TX,31.821767,-106.573176,EL PASO 79923,EL PASO,TX,31.7818,-106.4591,EL PASO 79924,EL PASO,TX,31.902098,-106.414857,EL PASO 79925,EL PASO,TX,31.781402,-106.361317,EL PASO 79926,EL PASO,TX,31.7649,-106.3659,EL PASO 79927,EL PASO,TX,31.653014,-106.273064,EL PASO 79928,EL PASO,TX,31.654444,-106.302778,EL PASO 79929,EL PASO,TX,31.692,-106.1575,EL PASO 79930,EL PASO,TX,31.804795,-106.456754,EL PASO 79931,EL PASO,TX,31.813,-106.4441,EL PASO 79932,EL PASO,TX,31.862334,-106.593186,EL PASO 79934,EL PASO,TX,31.938585,-106.407328,EL PASO 79935,EL PASO,TX,31.771847,-106.330258,EL PASO 79936,EL PASO,TX,31.767655,-106.30159,EL PASO 79937,EL PASO,TX,31.7847,-106.3363,EL PASO 79938,EL PASO,TX,31.8211,-106.117,EL PASO 79940,EL PASO,TX,31.7598,-106.4871,EL PASO 79941,EL PASO,TX,31.7598,-106.4871,EL PASO 79942,EL PASO,TX,31.7598,-106.4871,EL PASO 79943,EL PASO,TX,31.7598,-106.4871,EL PASO 79944,EL PASO,TX,31.7598,-106.4871,EL PASO 79945,EL PASO,TX,31.7598,-106.4871,EL PASO 79946,EL PASO,TX,31.7598,-106.4871,EL PASO 79947,EL PASO,TX,31.7598,-106.4871,EL PASO 79948,EL PASO,TX,31.7598,-106.4871,EL PASO 79949,EL PASO,TX,31.7598,-106.4871,EL PASO 79950,EL PASO,TX,31.7598,-106.4871,EL PASO 79951,EL PASO,TX,31.7598,-106.4871,EL PASO 79952,EL PASO,TX,31.7598,-106.4871,EL PASO 79953,EL PASO,TX,31.7598,-106.4871,EL PASO 79954,EL PASO,TX,31.7598,-106.4871,EL PASO 79955,EL PASO,TX,31.7598,-106.4871,EL PASO 79958,EL PASO,TX,31.7598,-106.4871,EL PASO 79960,EL PASO,TX,31.7598,-106.4871,EL PASO 79961,EL PASO,TX,31.7598,-106.4871,EL PASO 79968,EL PASO,TX,31.7707,-106.5037,EL PASO 79976,EL PASO,TX,31.7598,-106.4871,EL PASO 79978,EL PASO,TX,31.7598,-106.4871,EL PASO 79980,EL PASO,TX,31.7598,-106.4871,EL PASO 79990,EL PASO,TX,31.7691,-106.4264,EL PASO 79995,EL PASO,TX,31.7691,-106.4264,EL PASO 79996,EL PASO,TX,31.7691,-106.4264,EL PASO 79997,EL PASO,TX,31.7691,-106.4264,EL PASO 79998,EL PASO,TX,31.7691,-106.4264,EL PASO 79999,EL PASO,TX,31.7691,-106.4264,EL PASO 80001,ARVADA,CO,39.8039,-105.0859,JEFFERSON 80002,ARVADA,CO,39.794533,-105.098402,JEFFERSON 80003,ARVADA,CO,39.828572,-105.065549,JEFFERSON 80004,ARVADA,CO,39.814066,-105.11771,JEFFERSON 80005,ARVADA,CO,39.842189,-105.109719,JEFFERSON 80006,ARVADA,CO,39.8467,-105.0815,JEFFERSON 80007,ARVADA,CO,39.8296,-105.1828,JEFFERSON 80010,AURORA,CO,39.736788,-104.864618,ARAPAHOE 80011,AURORA,CO,39.737809,-104.815233,ADAMS 80012,AURORA,CO,39.698672,-104.837693,ARAPAHOE 80013,AURORA,CO,39.657457,-104.784566,ARAPAHOE 80014,AURORA,CO,39.666171,-104.834954,ARAPAHOE 80015,AURORA,CO,39.62552,-104.787438,ARAPAHOE 80016,AURORA,CO,39.618713,-104.741734,ARAPAHOE 80017,AURORA,CO,39.694827,-104.788093,ARAPAHOE 80018,AURORA,CO,39.710179,-104.707102,ARAPAHOE 80019,AURORA,CO,39.765608,-104.706906,ADAMS 80040,AURORA,CO,39.7412,-104.8749,ADAMS 80041,AURORA,CO,39.6986,-104.8371,ARAPAHOE 80042,AURORA,CO,39.7404,-104.8089,ADAMS 80044,AURORA,CO,39.6609,-104.8351,ARAPAHOE 80045,AURORA,CO,39.748014,-104.837954,ADAMS 80046,AURORA,CO,39.6283,-104.7966,ARAPAHOE 80047,AURORA,CO,39.7007,-104.767,ARAPAHOE 80110,ENGLEWOOD,CO,39.646027,-104.990022,ARAPAHOE 80111,ENGLEWOOD,CO,39.610327,-104.882832,ARAPAHOE 80112,ENGLEWOOD,CO,39.58051,-104.901115,ARAPAHOE 80113,ENGLEWOOD,CO,39.641667,-104.958889,ARAPAHOE 80120,LITTLETON,CO,39.599426,-105.0044,ARAPAHOE 80121,LITTLETON,CO,39.605835,-104.957285,ARAPAHOE 80122,LITTLETON,CO,39.581418,-104.955673,ARAPAHOE 80123,LITTLETON,CO,39.596854,-105.07766,JEFFERSON 80124,LITTLETON,CO,39.55061,-104.897204,DOUGLAS 80125,LITTLETON,CO,39.484466,-105.056098,DOUGLAS 80126,LITTLETON,CO,39.55134,-104.963751,DOUGLAS 80127,LITTLETON,CO,39.591968,-105.132811,JEFFERSON 80128,LITTLETON,CO,39.5752,-105.0809,JEFFERSON 80129,LITTLETON,CO,39.5446,-105.0097,DOUGLAS 80130,LITTLETON,CO,39.5408,-104.922,DOUGLAS 80150,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80151,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80155,ENGLEWOOD,CO,39.617222,-104.950278,ARAPAHOE 80160,LITTLETON,CO,39.6128,-105.0156,ARAPAHOE 80161,LITTLETON,CO,39.5953,-104.9622,ARAPAHOE 80162,LITTLETON,CO,39.5999,-105.1073,JEFFERSON 80163,LITTLETON,CO,39.5427,-104.9365,DOUGLAS 80165,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80166,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80201,DENVER,CO,39.7507,-104.989,DENVER 80202,DENVER,CO,39.749107,-104.994591,DENVER 80203,DENVER,CO,39.731285,-104.981111,DENVER 80204,DENVER,CO,39.734022,-105.025854,DENVER 80205,DENVER,CO,39.758993,-104.966141,DENVER 80206,DENVER,CO,39.733109,-104.9524,DENVER 80207,DENVER,CO,39.758425,-104.91771,DENVER 80208,DENVER,CO,39.676667,-104.961667,DENVER 80209,DENVER,CO,39.707437,-104.968587,DENVER 80210,DENVER,CO,39.679003,-104.963124,DENVER 80211,DENVER,CO,39.766515,-105.020377,DENVER 80212,DENVER,CO,39.772396,-105.046979,DENVER 80214,DENVER,CO,39.746931,-105.062036,JEFFERSON 80215,DENVER,CO,39.744033,-105.102329,JEFFERSON 80216,DENVER,CO,39.783469,-104.966946,DENVER 80217,DENVER,CO,39.7391,-104.9841,DENVER 80218,DENVER,CO,39.732747,-104.971652,DENVER 80219,DENVER,CO,39.695624,-105.034134,DENVER 80220,DENVER,CO,39.7312,-104.912866,DENVER 80221,DENVER,CO,39.840562,-105.007985,ADAMS 80222,DENVER,CO,39.682803,-104.927992,DENVER 80223,DENVER,CO,39.700239,-105.002799,DENVER 80224,DENVER,CO,39.687995,-104.910778,DENVER 80225,DENVER,CO,39.7204,-105.1201,JEFFERSON 80226,DENVER,CO,39.712186,-105.066703,JEFFERSON 80227,DENVER,CO,39.666746,-105.085359,JEFFERSON 80228,DENVER,CO,39.696898,-105.143009,JEFFERSON 80229,DENVER,CO,39.860998,-104.961749,ADAMS 80230,DENVER,CO,39.720556,-104.898611,DENVER 80231,DENVER,CO,39.679324,-104.884326,DENVER 80232,DENVER,CO,39.697282,-105.094524,JEFFERSON 80233,DENVER,CO,39.901222,-104.958257,ADAMS 80234,DENVER,CO,39.905479,-105.004474,ADAMS 80235,DENVER,CO,39.647175,-105.079466,JEFFERSON 80236,DENVER,CO,39.653535,-105.037595,DENVER 80237,DENVER,CO,39.64314,-104.89866,DENVER 80238,DENVER,CO,39.793611,-104.833056,DENVER 80239,DENVER,CO,39.787757,-104.828837,DENVER 80241,DENVER,CO,39.927792,-104.941809,ADAMS 80243,DENVER,CO,39.6875,-104.9613,DENVER 80244,DENVER,CO,39.7391,-104.9841,DENVER 80246,DENVER,CO,39.7025,-104.933611,DENVER 80247,DENVER,CO,39.6941,-104.8786,ARAPAHOE 80248,DENVER,CO,39.7516,-105.0008,DENVER 80249,DENVER,CO,39.778264,-104.75565,DENVER 80250,DENVER,CO,39.68,-104.9433,DENVER 80251,DENVER,CO,39.7391,-104.9841,DENVER 80252,DENVER,CO,39.7391,-104.9841,DENVER 80256,DENVER,CO,39.7391,-104.9841,DENVER 80257,DENVER,CO,39.7391,-104.9841,DENVER 80259,DENVER,CO,39.7391,-104.9841,DENVER 80260,DENVER,CO,39.851389,-104.998056,ADAMS 80261,DENVER,CO,39.7391,-104.9841,DENVER 80262,DENVER,CO,39.7328,-104.9366,DENVER 80263,DENVER,CO,39.6522,-104.9129,DENVER 80264,DENVER,CO,39.7423,-104.9853,DENVER 80265,DENVER,CO,39.7391,-104.9841,DENVER 80266,DENVER,CO,39.7983,-104.8999,DENVER 80271,DENVER,CO,39.7391,-104.9841,DENVER 80273,DENVER,CO,39.7391,-104.9841,DENVER 80274,DENVER,CO,39.7391,-104.9841,DENVER 80279,DENVER,CO,39.7391,-104.9841,DENVER 80280,DENVER,CO,39.7193,-104.8989,DENVER 80281,DENVER,CO,39.7391,-104.9841,DENVER 80290,DENVER,CO,39.7391,-104.9841,DENVER 80291,DENVER,CO,39.7391,-104.9841,DENVER 80293,DENVER,CO,39.7391,-104.9841,DENVER 80294,DENVER,CO,39.7491,-104.9885,DENVER 80295,DENVER,CO,39.7454,-104.9859,DENVER 80299,DENVER,CO,39.7472,-104.9912,DENVER 80301,BOULDER,CO,40.049733,-105.21426,BOULDER 80302,BOULDER,CO,40.017235,-105.285131,BOULDER 80303,BOULDER,CO,39.991381,-105.239178,BOULDER 80304,BOULDER,CO,40.037482,-105.277073,BOULDER 80305,BOULDER,CO,39.9802,-105.2516,BOULDER 80306,BOULDER,CO,40.0178,-105.2752,BOULDER 80307,BOULDER,CO,39.9858,-105.2371,BOULDER 80308,BOULDER,CO,40.015,-105.27,BOULDER 80309,BOULDER,CO,40.005556,-105.263889,BOULDER 80310,BOULDER,CO,40.015,-105.27,BOULDER 80314,BOULDER,CO,40.015,-105.27,BOULDER 80321,BOULDER,CO,40.015,-105.27,BOULDER 80322,BOULDER,CO,40.015,-105.27,BOULDER 80323,BOULDER,CO,40.015,-105.27,BOULDER 80328,BOULDER,CO,40.015,-105.27,BOULDER 80329,BOULDER,CO,40.015,-105.27,BOULDER 80521,FORT COLLINS,CO,40.581293,-105.103884,LARIMER 80522,FORT COLLINS,CO,40.584,-105.0804,LARIMER 80523,FORT COLLINS,CO,40.5731,-105.086,LARIMER 80524,FORT COLLINS,CO,40.59865,-105.05811,LARIMER 80525,FORT COLLINS,CO,40.538354,-105.054715,LARIMER 80526,FORT COLLINS,CO,40.547294,-105.107646,LARIMER 80527,FORT COLLINS,CO,40.532,-105.0731,LARIMER 80528,FORT COLLINS,CO,40.4977,-105.0041,LARIMER 80553,FORT COLLINS,CO,40.5675,-105.0453,LARIMER 80631,GREELEY,CO,40.413968,-104.704756,WELD 80632,GREELEY,CO,40.4236,-104.6959,WELD 80633,GREELEY,CO,40.4236,-104.6959,WELD 80634,GREELEY,CO,40.410947,-104.754113,WELD 80638,GREELEY,CO,40.4233,-104.7086,WELD 80639,GREELEY,CO,40.4025,-104.701111,WELD 80901,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80902,COLORADO SPRINGS,CO,38.8338816,-104.8213634,EL PASO 80903,COLORADO SPRINGS,CO,38.838832,-104.814466,EL PASO 80904,COLORADO SPRINGS,CO,38.853318,-104.859513,EL PASO 80905,COLORADO SPRINGS,CO,38.837692,-104.836997,EL PASO 80906,COLORADO SPRINGS,CO,38.790164,-104.819893,EL PASO 80907,COLORADO SPRINGS,CO,38.876001,-104.817034,EL PASO 80908,COLORADO SPRINGS,CO,39.023745,-104.693331,EL PASO 80909,COLORADO SPRINGS,CO,38.852038,-104.773483,EL PASO 80910,COLORADO SPRINGS,CO,38.815164,-104.770299,EL PASO 80911,COLORADO SPRINGS,CO,38.745665,-104.722322,EL PASO 80912,COLORADO SPRINGS,CO,39.0475,-104.6901,EL PASO 80913,COLORADO SPRINGS,CO,38.741967,-104.782218,EL PASO 80914,COLORADO SPRINGS,CO,38.784241,-104.719052,EL PASO 80915,COLORADO SPRINGS,CO,38.855845,-104.713422,EL PASO 80916,COLORADO SPRINGS,CO,38.807619,-104.74034,EL PASO 80917,COLORADO SPRINGS,CO,38.886027,-104.739904,EL PASO 80918,COLORADO SPRINGS,CO,38.912924,-104.773444,EL PASO 80919,COLORADO SPRINGS,CO,38.926795,-104.84642,EL PASO 80920,COLORADO SPRINGS,CO,38.949732,-104.766951,EL PASO 80921,COLORADO SPRINGS,CO,39.048674,-104.814042,EL PASO 80922,COLORADO SPRINGS,CO,38.90503,-104.698161,EL PASO 80923,COLORADO SPRINGS,CO,38.92538,-104.717101,EL PASO 80924,COLORADO SPRINGS,CO,38.951969,-104.71418,EL PASO 80925,COLORADO SPRINGS,CO,38.731329,-104.660087,EL PASO 80926,COLORADO SPRINGS,CO,38.698073,-104.85051,EL PASO 80927,COLORADO SPRINGS,CO,38.918882,-104.675545,EL PASO 80928,COLORADO SPRINGS,CO,38.623261,-104.457043,EL PASO 80929,COLORADO SPRINGS,CO,38.796837,-104.607857,EL PASO 80930,COLORADO SPRINGS,CO,38.828926,-104.526924,EL PASO 80931,COLORADO SPRINGS,CO,38.7513,-104.7322,EL PASO 80932,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80933,COLORADO SPRINGS,CO,38.8729,-104.8105,EL PASO 80934,COLORADO SPRINGS,CO,38.8459,-104.8632,EL PASO 80935,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80936,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 80937,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80938,COLORADO SPRINGS,CO,38.917468,-104.650769,EL PASO 80939,COLORADO SPRINGS,CO,38.879618,-104.679918,EL PASO 80940,COLORADO SPRINGS,CO,38.8864,-104.6716,EL PASO 80941,COLORADO SPRINGS,CO,38.9594,-104.7536,EL PASO 80942,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80943,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80944,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80945,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80946,COLORADO SPRINGS,CO,38.8466,-104.8238,EL PASO 80947,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80949,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80950,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80951,COLORADO SPRINGS,CO,38.863647,-104.670443,EL PASO 80960,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80962,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80970,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80977,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80995,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80997,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 81001,PUEBLO,CO,38.287876,-104.584828,PUEBLO 81002,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81003,PUEBLO,CO,38.284277,-104.62337,PUEBLO 81004,PUEBLO,CO,38.244063,-104.627829,PUEBLO 81005,PUEBLO,CO,38.235157,-104.660031,PUEBLO 81006,PUEBLO,CO,38.24465,-104.531834,PUEBLO 81007,PUEBLO,CO,38.319975,-104.743264,PUEBLO 81008,PUEBLO,CO,38.313251,-104.628433,PUEBLO 81009,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81010,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81011,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81012,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81501,GRAND JUNCTION,CO,39.078326,-108.545692,MESA 81502,GRAND JUNCTION,CO,39.063889,-108.55,MESA 81503,GRAND JUNCTION,CO,39.056777,-108.575609,MESA 81504,GRAND JUNCTION,CO,39.083136,-108.489094,MESA 81505,GRAND JUNCTION,CO,39.107097,-108.596834,MESA 81506,GRAND JUNCTION,CO,39.103209,-108.54911,MESA 82001,CHEYENNE,WY,41.143719,-104.796234,LARAMIE 82002,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82003,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82006,CHEYENNE,WY,41.4052,-104.8606,LARAMIE 82007,CHEYENNE,WY,41.108433,-104.810745,LARAMIE 82008,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82009,CHEYENNE,WY,41.183566,-104.802328,LARAMIE 82010,CHEYENNE,WY,41.1371,-104.818,LARAMIE 83201,POCATELLO,ID,42.887592,-112.438142,BANNOCK 83202,POCATELLO,ID,42.926548,-112.474873,BANNOCK 83204,POCATELLO,ID,42.846463,-112.443352,BANNOCK 83205,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83206,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83209,POCATELLO,ID,42.8628,-112.4338,BANNOCK 83401,IDAHO FALLS,ID,43.517679,-111.990626,BONNEVILLE 83402,IDAHO FALLS,ID,43.493373,-112.057762,BONNEVILLE 83403,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83404,IDAHO FALLS,ID,43.475043,-112.012449,BONNEVILLE 83405,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83406,IDAHO FALLS,ID,43.473233,-111.966052,BONNEVILLE 83415,IDAHO FALLS,ID,43.4666,-112.0333,BONNEVILLE 83701,BOISE,ID,43.6154,-116.2161,ADA 83702,BOISE,ID,43.632237,-116.205192,ADA 83703,BOISE,ID,43.660051,-116.252396,ADA 83704,BOISE,ID,43.633001,-116.295099,ADA 83705,BOISE,ID,43.585077,-116.219104,ADA 83706,BOISE,ID,43.588495,-116.191006,ADA 83707,BOISE,ID,43.6154,-116.2161,ADA 83708,BOISE,ID,43.6136,-116.2025,ADA 83709,BOISE,ID,43.574085,-116.29407,ADA 83711,BOISE,ID,43.6154,-116.2161,ADA 83712,BOISE,ID,43.602311,-116.164924,ADA 83713,BOISE,ID,43.6401,-116.3328,ADA 83715,BOISE,ID,43.5665,-116.2119,ADA 83716,BOISE,ID,43.5444,-116.043,ADA 83717,BOISE,ID,43.5544,-116.1472,ADA 83719,BOISE,ID,43.5476,-116.2836,ADA 83720,BOISE,ID,43.6154,-116.2161,ADA 83721,BOISE,ID,43.6136,-116.2025, 83722,BOISE,ID,43.6136,-116.2025,ADA 83724,BOISE,ID,43.6136,-116.2025,ADA 83725,BOISE,ID,43.605,-116.2054,ADA 83726,BOISE,ID,43.4343,-116.0029,ADA 83727,BOISE,ID,43.6136,-116.2025, 83728,BOISE,ID,43.6136,-116.2025,ADA 83729,BOISE,ID,43.6136,-116.2025,ADA 83730,BOISE,ID,43.6136,-116.2025, 83731,BOISE,ID,43.7435,-116.2024,ADA 83732,BOISE,ID,43.5476,-116.2836,ADA 83733,BOISE,ID,43.6136,-116.2025, 83735,BOISE,ID,43.6136,-116.2025,ADA 83756,BOISE,ID,43.6136,-116.2025,ADA 83757,BOISE,ID,43.6136,-116.2025,ADA 83799,BOISE,ID,43.6142,-116.2161,ADA 84070,SANDY,UT,40.579379,-111.881625,SALT LAKE 84090,SANDY,UT,40.583,-111.8332,SALT LAKE 84091,SANDY,UT,40.5897,-111.8713,SALT LAKE 84092,SANDY,UT,40.560245,-111.82736,SALT LAKE 84093,SANDY,UT,40.592651,-111.830989,SALT LAKE 84094,SANDY,UT,40.568757,-111.861716,SALT LAKE 84101,SALT LAKE CITY,UT,40.755851,-111.896657,SALT LAKE 84102,SALT LAKE CITY,UT,40.760034,-111.862721,SALT LAKE 84103,SALT LAKE CITY,UT,40.777584,-111.874891,SALT LAKE 84104,SALT LAKE CITY,UT,40.74985,-111.925979,SALT LAKE 84105,SALT LAKE CITY,UT,40.737236,-111.858087,SALT LAKE 84106,SALT LAKE CITY,UT,40.705597,-111.854841,SALT LAKE 84107,SALT LAKE CITY,UT,40.659014,-111.878383,SALT LAKE 84108,SALT LAKE CITY,UT,40.737136,-111.825822,SALT LAKE 84109,SALT LAKE CITY,UT,40.704251,-111.814218,SALT LAKE 84110,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84111,SALT LAKE CITY,UT,40.754834,-111.881,SALT LAKE 84112,SALT LAKE CITY,UT,40.752372,-111.827827,SALT LAKE 84113,SALT LAKE CITY,UT,40.763057,-111.841825,SALT LAKE 84114,SALT LAKE CITY,UT,40.7755,-111.8874,SALT LAKE 84115,SALT LAKE CITY,UT,40.715797,-111.883828,SALT LAKE 84116,SALT LAKE CITY,UT,40.785697,-111.929054,SALT LAKE 84117,SALT LAKE CITY,UT,40.666302,-111.832943,SALT LAKE 84118,SALT LAKE CITY,UT,40.652759,-111.98521,SALT LAKE 84119,SALT LAKE CITY,UT,40.690977,-111.952964,SALT LAKE 84120,SALT LAKE CITY,UT,40.68708,-112.009783,SALT LAKE 84121,SALT LAKE CITY,UT,40.623247,-111.82468,SALT LAKE 84122,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84123,SALT LAKE CITY,UT,40.660479,-111.919483,SALT LAKE 84124,SALT LAKE CITY,UT,40.67966,-111.820833,SALT LAKE 84125,SALT LAKE CITY,UT,40.7,-111.9443,SALT LAKE 84126,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84127,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84128,SALT LAKE CITY,UT,40.6951,-112.044,SALT LAKE 84130,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84131,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84132,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84133,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84134,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84136,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84138,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84139,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84141,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84143,SALT LAKE CITY,UT,40.7785,-111.8789,SALT LAKE 84144,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84145,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84147,SALT LAKE CITY,UT,40.7682,-111.8872,SALT LAKE 84148,SALT LAKE CITY,UT,40.7582,-111.8397,SALT LAKE 84150,SALT LAKE CITY,UT,40.7693,-111.8886,SALT LAKE 84151,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84152,SALT LAKE CITY,UT,40.7288,-111.8586,SALT LAKE 84157,SALT LAKE CITY,UT,40.6628,-111.8867,SALT LAKE 84158,SALT LAKE CITY,UT,40.7502,-111.8255,SALT LAKE 84165,SALT LAKE CITY,UT,40.713611,-111.891111,SALT LAKE 84170,SALT LAKE CITY,UT,40.6972,-111.9945,SALT LAKE 84171,SALT LAKE CITY,UT,40.619722,-111.809444,SALT LAKE 84180,SALT LAKE CITY,UT,40.7696,-111.9009,SALT LAKE 84184,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84189,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84190,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84199,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84201,OGDEN,UT,41.2443,-112.0072,WEBER 84244,OGDEN,UT,41.2839,-112.1235,WEBER 84401,OGDEN,UT,41.22148,-111.962121,WEBER 84402,OGDEN,UT,41.1976,-111.9844,WEBER 84403,OGDEN,UT,41.189412,-111.948927,WEBER 84404,OGDEN,UT,41.262727,-111.983686,WEBER 84405,OGDEN,UT,41.173928,-111.980945,WEBER 84407,OGDEN,UT,41.2839,-112.1235,WEBER 84408,OGDEN,UT,41.192,-111.9465,WEBER 84409,OGDEN,UT,41.1976,-111.9844,WEBER 84412,OGDEN,UT,41.2639,-111.9686,WEBER 84414,OGDEN,UT,41.311201,-111.968924,WEBER 84415,OGDEN,UT,41.1796,-111.9496,WEBER 84601,PROVO,UT,40.231949,-111.675504,UTAH 84602,PROVO,UT,40.2483,-111.6484,UTAH 84603,PROVO,UT,40.232,-111.6589,UTAH 84604,PROVO,UT,40.260681,-111.654906,UTAH 84605,PROVO,UT,40.2338,-111.6577,UTAH 84606,PROVO,UT,40.234675,-111.644724,UTAH 85001,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85002,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85003,PHOENIX,AZ,33.451095,-112.077428,MARICOPA 85004,PHOENIX,AZ,33.455708,-112.068584,MARICOPA 85005,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85006,PHOENIX,AZ,33.465016,-112.047357,MARICOPA 85007,PHOENIX,AZ,33.452298,-112.089326,MARICOPA 85008,PHOENIX,AZ,33.466457,-111.998381,MARICOPA 85009,PHOENIX,AZ,33.456373,-112.128368,MARICOPA 85010,PHOENIX,AZ,33.4659,-112.0236,MARICOPA 85011,PHOENIX,AZ,33.5054,-112.0634,MARICOPA 85012,PHOENIX,AZ,33.509744,-112.067816,MARICOPA 85013,PHOENIX,AZ,33.508493,-112.082657,MARICOPA 85014,PHOENIX,AZ,33.510263,-112.05557,MARICOPA 85015,PHOENIX,AZ,33.508164,-112.101064,MARICOPA 85016,PHOENIX,AZ,33.502117,-112.030496,MARICOPA 85017,PHOENIX,AZ,33.515263,-112.121232,MARICOPA 85018,PHOENIX,AZ,33.495796,-111.988259,MARICOPA 85019,PHOENIX,AZ,33.512284,-112.141681,MARICOPA 85020,PHOENIX,AZ,33.562281,-112.055888,MARICOPA 85021,PHOENIX,AZ,33.559965,-112.092686,MARICOPA 85022,PHOENIX,AZ,33.631513,-112.052008,MARICOPA 85023,PHOENIX,AZ,33.632383,-112.111838,MARICOPA 85024,PHOENIX,AZ,33.661664,-112.036956,MARICOPA 85025,PHOENIX,AZ,33.4506,-112.0773,MARICOPA 85026,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85027,PHOENIX,AZ,33.667157,-112.102723,MARICOPA 85028,PHOENIX,AZ,33.585115,-112.008724,MARICOPA 85029,PHOENIX,AZ,33.596133,-112.119913,MARICOPA 85030,PHOENIX,AZ,33.4519,-112.0775,MARICOPA 85031,PHOENIX,AZ,33.493909,-112.16963,MARICOPA 85032,PHOENIX,AZ,33.623807,-112.004369,MARICOPA 85033,PHOENIX,AZ,33.494426,-112.213185,MARICOPA 85034,PHOENIX,AZ,33.441251,-112.042135,MARICOPA 85035,PHOENIX,AZ,33.472353,-112.183177,MARICOPA 85036,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85037,PHOENIX,AZ,33.491278,-112.246763,MARICOPA 85038,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85039,PHOENIX,AZ,33.495362,-112.288573,MARICOPA 85040,PHOENIX,AZ,33.390475,-112.03126,MARICOPA 85041,PHOENIX,AZ,33.388882,-112.095437,MARICOPA 85042,PHOENIX,AZ,33.3783,-112.0313,MARICOPA 85043,PHOENIX,AZ,33.449056,-112.197245,MARICOPA 85044,PHOENIX,AZ,33.329124,-111.9943,MARICOPA 85045,PHOENIX,AZ,33.2997,-112.0958,MARICOPA 85046,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85048,PHOENIX,AZ,33.3042,-112.0282,MARICOPA 85050,PHOENIX,AZ,33.6794,-111.9991,MARICOPA 85051,PHOENIX,AZ,33.559113,-112.133168,MARICOPA 85053,PHOENIX,AZ,33.6279,-112.1315,MARICOPA 85054,PHOENIX,AZ,33.6764,-111.9569,MARICOPA 85055,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85060,PHOENIX,AZ,33.4805,-111.9963,MARICOPA 85061,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85062,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85063,PHOENIX,AZ,33.5014,-112.1723,MARICOPA 85064,PHOENIX,AZ,33.5098,-112.0378,MARICOPA 85065,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85066,PHOENIX,AZ,33.3924,-112.0675,MARICOPA 85067,PHOENIX,AZ,33.4934,-112.0823,MARICOPA 85068,PHOENIX,AZ,33.5742,-112.0644,MARICOPA 85069,PHOENIX,AZ,33.5562,-112.1113,MARICOPA 85070,PHOENIX,AZ,33.561,-112.0935,MARICOPA 85071,PHOENIX,AZ,33.597,-112.0987,MARICOPA 85072,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85073,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85074,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85075,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85076,PHOENIX,AZ,33.3475,-111.9742,MARICOPA 85077,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85078,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85079,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85080,PHOENIX,AZ,33.6548,-112.1043,MARICOPA 85082,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85083,PHOENIX,AZ,33.4483771,-112.0740373,MARICOPA 85085,PHOENIX,AZ,33.7485,-112.1254,MARICOPA 85086,PHOENIX,AZ,33.8405,-112.112,MARICOPA 85098,PHOENIX,AZ,33.4368,-112.1416,MARICOPA 85099,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85201,MESA,AZ,33.43174,-111.846931,MARICOPA 85202,MESA,AZ,33.385095,-111.872429,MARICOPA 85203,MESA,AZ,33.436952,-111.805697,MARICOPA 85204,MESA,AZ,33.399168,-111.789554,MARICOPA 85205,MESA,AZ,33.43685,-111.712939,MARICOPA 85206,MESA,AZ,33.402603,-111.724223,MARICOPA 85207,MESA,AZ,33.432073,-111.64256,MARICOPA 85208,MESA,AZ,33.398416,-111.651297,MARICOPA 85209,MESA,AZ,33.378332,-111.636262,MARICOPA 85210,MESA,AZ,33.38867,-111.842757,MARICOPA 85211,MESA,AZ,33.4181,-111.8304,MARICOPA 85212,MESA,AZ,33.3341,-111.6381,MARICOPA 85213,MESA,AZ,33.436688,-111.773114,MARICOPA 85214,MESA,AZ,33.4222,-111.8219,MARICOPA 85215,MESA,AZ,33.4702,-111.708,MARICOPA 85216,MESA,AZ,33.4085,-111.6853,MARICOPA 85224,CHANDLER,AZ,33.330091,-111.863156,MARICOPA 85225,CHANDLER,AZ,33.310505,-111.823881,MARICOPA 85226,CHANDLER,AZ,33.30917,-111.919827,MARICOPA 85233,GILBERT,AZ,33.35,-111.8092,MARICOPA 85234,GILBERT,AZ,33.352746,-111.780876,MARICOPA 85244,CHANDLER,AZ,33.3047,-111.8378,MARICOPA 85246,CHANDLER,AZ,33.3061,-111.8405,MARICOPA 85248,CHANDLER,AZ,33.223056,-111.866899,MARICOPA 85249,CHANDLER,AZ,33.241384,-111.774486,MARICOPA 85250,SCOTTSDALE,AZ,33.521767,-111.904926,MARICOPA 85251,SCOTTSDALE,AZ,33.493559,-111.916697,MARICOPA 85252,SCOTTSDALE,AZ,33.4873,-111.9247,MARICOPA 85254,SCOTTSDALE,AZ,33.616476,-111.955422,MARICOPA 85255,SCOTTSDALE,AZ,33.696801,-111.889213,MARICOPA 85256,SCOTTSDALE,AZ,33.485793,-111.85333,MARICOPA 85257,SCOTTSDALE,AZ,33.46693,-111.915129,MARICOPA 85258,SCOTTSDALE,AZ,33.564747,-111.893067,MARICOPA 85259,SCOTTSDALE,AZ,33.587943,-111.840438,MARICOPA 85260,SCOTTSDALE,AZ,33.601323,-111.88671,MARICOPA 85261,SCOTTSDALE,AZ,33.4946,-111.9204,MARICOPA 85262,SCOTTSDALE,AZ,33.77524,-111.779135,MARICOPA 85266,SCOTTSDALE,AZ,33.4359,-112.0201,MARICOPA 85267,SCOTTSDALE,AZ,33.6105,-111.8902,MARICOPA 85271,SCOTTSDALE,AZ,33.4657,-111.92,MARICOPA 85274,MESA,AZ,33.4073,-111.8829,MARICOPA 85275,MESA,AZ,33.4222,-111.8219,MARICOPA 85277,MESA,AZ,33.4591,-111.7199,MARICOPA 85280,TEMPE,AZ,33.4273,-111.9307,MARICOPA 85281,TEMPE,AZ,33.422675,-111.926144,MARICOPA 85282,TEMPE,AZ,33.391669,-111.924896,MARICOPA 85283,TEMPE,AZ,33.366524,-111.93122,MARICOPA 85284,TEMPE,AZ,33.336302,-111.919696,MARICOPA 85285,TEMPE,AZ,33.3926,-111.9352,MARICOPA 85286,CHANDLER,AZ,33.3061605,-111.8412502,MARICOPA 85287,TEMPE,AZ,33.420833,-111.93,MARICOPA 85289,TEMPE,AZ,33.4001,-111.9652,MARICOPA 85295,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85296,GILBERT,AZ,33.3196,-111.7595,MARICOPA 85297,GILBERT,AZ,33.2646,-111.7086,MARICOPA 85298,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85299,GILBERT,AZ,33.3496,-111.7914,MARICOPA 85301,GLENDALE,AZ,33.531122,-112.176703,MARICOPA 85302,GLENDALE,AZ,33.567487,-112.175289,MARICOPA 85303,GLENDALE,AZ,33.526215,-112.214937,MARICOPA 85304,GLENDALE,AZ,33.594289,-112.174575,MARICOPA 85305,GLENDALE,AZ,33.529103,-112.248232,MARICOPA 85306,GLENDALE,AZ,33.623882,-112.177563,MARICOPA 85307,GLENDALE,AZ,33.534879,-112.326735,MARICOPA 85308,GLENDALE,AZ,33.653924,-112.169391,MARICOPA 85310,GLENDALE,AZ,33.704726,-112.164131,MARICOPA 85311,GLENDALE,AZ,33.532,-112.1764,MARICOPA 85312,GLENDALE,AZ,33.6252,-112.1839,MARICOPA 85313,GLENDALE,AZ,33.6086,-112.1611,MARICOPA 85318,GLENDALE,AZ,33.6821,-112.1862,MARICOPA 85345,PEORIA,AZ,33.576135,-112.234424,MARICOPA 85380,PEORIA,AZ,33.5822,-112.2414,MARICOPA 85381,PEORIA,AZ,33.604761,-112.223723,MARICOPA 85382,PEORIA,AZ,33.63083,-112.207177,MARICOPA 85383,PEORIA,AZ,33.7218,-112.2594,MARICOPA 85385,PEORIA,AZ,33.6099,-112.2261,MARICOPA 85701,TUCSON,AZ,32.213873,-110.969445,PIMA 85702,TUCSON,AZ,32.2216,-110.9258,PIMA 85703,TUCSON,AZ,32.2465,-110.9786,PIMA 85704,TUCSON,AZ,32.329175,-110.984593,PIMA 85705,TUCSON,AZ,32.269088,-110.984536,PIMA 85706,TUCSON,AZ,32.139172,-110.945127,PIMA 85707,TUCSON,AZ,32.177778,-110.8775,PIMA 85708,TUCSON,AZ,32.179989,-110.869283,PIMA 85709,TUCSON,AZ,32.2251,-111.0167,PIMA 85710,TUCSON,AZ,32.213813,-110.824046,PIMA 85711,TUCSON,AZ,32.212729,-110.882892,PIMA 85712,TUCSON,AZ,32.250043,-110.886919,PIMA 85713,TUCSON,AZ,32.194065,-110.973896,PIMA 85714,TUCSON,AZ,32.170657,-110.971891,PIMA 85715,TUCSON,AZ,32.269213,-110.834837,PIMA 85716,TUCSON,AZ,32.246815,-110.922176,PIMA 85717,TUCSON,AZ,32.2356,-110.9398,PIMA 85718,TUCSON,AZ,32.311154,-110.917882,PIMA 85719,TUCSON,AZ,32.247426,-110.949142,PIMA 85720,TUCSON,AZ,32.2033,-110.9451,PIMA 85721,TUCSON,AZ,32.2335,-110.9521,PIMA 85722,TUCSON,AZ,32.2317,-110.9567,PIMA 85723,TUCSON,AZ,32.1812,-110.9683,PIMA 85724,TUCSON,AZ,32.2033,-110.9451,PIMA 85725,TUCSON,AZ,32.2216,-110.9258,PIMA 85726,TUCSON,AZ,32.2033,-110.9451,PIMA 85728,TUCSON,AZ,32.2885,-110.9435,PIMA 85730,TUCSON,AZ,32.180951,-110.81904,PIMA 85731,TUCSON,AZ,32.2216,-110.9258,PIMA 85732,TUCSON,AZ,32.225,-110.8833,PIMA 85733,TUCSON,AZ,32.2356,-110.9398,PIMA 85734,TUCSON,AZ,32.1336,-110.9741,PIMA 85735,TUCSON,AZ,32.057796,-111.260758,PIMA 85736,TUCSON,AZ,31.667909,-111.317842,PIMA 85737,TUCSON,AZ,32.431679,-110.954463,PIMA 85739,TUCSON,AZ,32.5088,-110.8969,PIMA 85740,TUCSON,AZ,32.3203,-110.9742,PIMA 85741,TUCSON,AZ,32.347215,-111.041873,PIMA 85742,TUCSON,AZ,32.3855,-111.0466,PIMA 85743,TUCSON,AZ,32.33655,-111.177071,PIMA 85744,TUCSON,AZ,32.0916,-110.8046,PIMA 85745,TUCSON,AZ,32.243359,-111.017907,PIMA 85746,TUCSON,AZ,32.142244,-111.050569,PIMA 85747,TUCSON,AZ,32.071142,-110.667337,PIMA 85748,TUCSON,AZ,32.214981,-110.775765,PIMA 85749,TUCSON,AZ,32.273285,-110.765829,PIMA 85750,TUCSON,AZ,32.2977,-110.8447,PIMA 85751,TUCSON,AZ,32.2501,-110.8527,PIMA 85752,TUCSON,AZ,32.3506,-111.0467,PIMA 85754,TUCSON,AZ,32.2345,-111.0024,PIMA 85755,TUCSON,AZ,32.44284,-110.98941,PIMA 85757,TUCSON,AZ,32.136691,-111.10789,PIMA 85775,TUCSON,AZ,32.2033,-110.9451,PIMA 85777,TUCSON,AZ,32.0907,-110.9103,PIMA 86301,PRESCOTT,AZ,34.629909,-113.022459,YAVAPAI 86302,PRESCOTT,AZ,34.754,-112.8314,YAVAPAI 86303,PRESCOTT,AZ,34.558577,-112.473459,YAVAPAI 86304,PRESCOTT,AZ,34.7363,-112.9576,YAVAPAI 86305,PRESCOTT,AZ,34.6476,-112.6458,YAVAPAI 86313,PRESCOTT,AZ,34.5495,-112.4496,YAVAPAI 87101,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87102,ALBUQUERQUE,NM,35.081831,-106.648171,BERNALILLO 87103,ALBUQUERQUE,NM,35.0826,-106.6526,BERNALILLO 87104,ALBUQUERQUE,NM,35.103822,-106.671215,BERNALILLO 87105,ALBUQUERQUE,NM,35.044761,-106.689341,BERNALILLO 87106,ALBUQUERQUE,NM,35.079011,-106.616917,BERNALILLO 87107,ALBUQUERQUE,NM,35.134742,-106.642747,BERNALILLO 87108,ALBUQUERQUE,NM,35.072586,-106.574864,BERNALILLO 87109,ALBUQUERQUE,NM,35.15058,-106.569004,BERNALILLO 87110,ALBUQUERQUE,NM,35.110417,-106.578052,BERNALILLO 87111,ALBUQUERQUE,NM,35.134724,-106.522164,BERNALILLO 87112,ALBUQUERQUE,NM,35.101026,-106.518338,BERNALILLO 87113,ALBUQUERQUE,NM,35.175906,-106.601467,BERNALILLO 87114,ALBUQUERQUE,NM,35.195612,-106.659138,BERNALILLO 87115,ALBUQUERQUE,NM,34.904876,-106.513896,BERNALILLO 87116,ALBUQUERQUE,NM,35.056116,-106.550605,BERNALILLO 87119,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87120,ALBUQUERQUE,NM,35.142146,-106.704137,BERNALILLO 87121,ALBUQUERQUE,NM,35.051209,-106.726861,BERNALILLO 87122,ALBUQUERQUE,NM,35.178715,-106.510176,BERNALILLO 87123,ALBUQUERQUE,NM,35.07166,-106.509003,BERNALILLO 87125,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87131,ALBUQUERQUE,NM,35.0862,-106.6213,BERNALILLO 87151,ALBUQUERQUE,NM,35.0844,-106.6508,BERNALILLO 87153,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87154,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87158,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87165,ALBUQUERQUE,NM,35.2533,-106.6459,BERNALILLO 87176,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87181,ALBUQUERQUE,NM,35.101,-106.5153,BERNALILLO 87184,ALBUQUERQUE,NM,35.1849,-106.6202,BERNALILLO 87185,ALBUQUERQUE,NM,34.9821,-106.5156,BERNALILLO 87187,ALBUQUERQUE,NM,35.1697,-106.8332,BERNALILLO 87190,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87191,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87192,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87193,ALBUQUERQUE,NM,35.1881,-106.6826,BERNALILLO 87194,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87195,ALBUQUERQUE,NM,35.001,-106.6511,BERNALILLO 87196,ALBUQUERQUE,NM,35.0806,-106.6189,BERNALILLO 87197,ALBUQUERQUE,NM,35.1211,-106.6446,BERNALILLO 87198,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87199,ALBUQUERQUE,NM,35.1595,-106.5782,BERNALILLO 87501,SANTA FE,NM,35.702472,-105.974818,SANTA FE 87502,SANTA FE,NM,35.8099,-105.985,SANTA FE 87503,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87504,SANTA FE,NM,35.8099,-105.985,SANTA FE 87505,SANTA FE,NM,35.619623,-105.981994,SANTA FE 87506,SANTA FE,NM,35.7956,-106.0122,SANTA FE 87507,SANTA FE,NM,35.635,-106.0446,SANTA FE 87508,SANTA FE,NM,35.5587,-105.9762,SANTA FE 87509,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87592,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87594,SANTA FE,NM,35.7946,-105.9929,SANTA FE 88001,LAS CRUCES,NM,32.321641,-106.746034,DONA ANA 88003,LAS CRUCES,NM,32.2809,-106.7473,DONA ANA 88004,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88005,LAS CRUCES,NM,32.316076,-106.79908,DONA ANA 88006,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88007,LAS CRUCES,NM,32.3538,-106.8395,DONA ANA 88011,LAS CRUCES,NM,32.327,-106.709,DONA ANA 88012,LAS CRUCES,NM,32.4435,-106.7253,DONA ANA 88013,LAS CRUCES,NM,32.3111,-106.7888,DONA ANA 88510,EL PASO,TX,31.7691,-106.4264,EL PASO 88511,EL PASO,TX,31.7691,-106.4264,EL PASO 88512,EL PASO,TX,31.7691,-106.4264,EL PASO 88513,EL PASO,TX,31.7691,-106.4264,EL PASO 88514,EL PASO,TX,31.7691,-106.4264,EL PASO 88515,EL PASO,TX,31.7691,-106.4264,EL PASO 88516,EL PASO,TX,31.7691,-106.4264,EL PASO 88517,EL PASO,TX,31.7691,-106.4264,EL PASO 88518,EL PASO,TX,31.7691,-106.4264,EL PASO 88519,EL PASO,TX,31.7691,-106.4264,EL PASO 88520,EL PASO,TX,31.7691,-106.4264,EL PASO 88521,EL PASO,TX,31.7691,-106.4264,EL PASO 88523,EL PASO,TX,31.7691,-106.4264,EL PASO 88524,EL PASO,TX,31.7691,-106.4264,EL PASO 88525,EL PASO,TX,31.7691,-106.4264,EL PASO 88526,EL PASO,TX,31.7691,-106.4264,EL PASO 88527,EL PASO,TX,31.7691,-106.4264,EL PASO 88528,EL PASO,TX,31.7691,-106.4264,EL PASO 88529,EL PASO,TX,31.7691,-106.4264,EL PASO 88530,EL PASO,TX,31.7691,-106.4264,EL PASO 88531,EL PASO,TX,31.7691,-106.4264,EL PASO 88532,EL PASO,TX,31.7691,-106.4264,EL PASO 88533,EL PASO,TX,31.7691,-106.4264,EL PASO 88534,EL PASO,TX,31.7691,-106.4264,EL PASO 88535,EL PASO,TX,31.7691,-106.4264,EL PASO 88536,EL PASO,TX,31.7691,-106.4264,EL PASO 88538,EL PASO,TX,31.7691,-106.4264,EL PASO 88539,EL PASO,TX,31.7691,-106.4264,EL PASO 88540,EL PASO,TX,31.7691,-106.4264,EL PASO 88541,EL PASO,TX,31.7691,-106.4264,EL PASO 88542,EL PASO,TX,31.7691,-106.4264,EL PASO 88543,EL PASO,TX,31.7691,-106.4264,EL PASO 88544,EL PASO,TX,31.7691,-106.4264,EL PASO 88545,EL PASO,TX,31.7691,-106.4264,EL PASO 88546,EL PASO,TX,31.7691,-106.4264,EL PASO 88547,EL PASO,TX,31.7691,-106.4264,EL PASO 88548,EL PASO,TX,31.7691,-106.4264,EL PASO 88549,EL PASO,TX,31.7691,-106.4264,EL PASO 88550,EL PASO,TX,31.7691,-106.4264,EL PASO 88553,EL PASO,TX,31.7691,-106.4264,EL PASO 88554,EL PASO,TX,31.7691,-106.4264,EL PASO 88555,EL PASO,TX,31.7691,-106.4264,EL PASO 88556,EL PASO,TX,31.7691,-106.4264,EL PASO 88557,EL PASO,TX,31.7691,-106.4264,EL PASO 88558,EL PASO,TX,31.7691,-106.4264,EL PASO 88559,EL PASO,TX,31.7691,-106.4264,EL PASO 88560,EL PASO,TX,31.7691,-106.4264,EL PASO 88561,EL PASO,TX,31.7691,-106.4264,EL PASO 88562,EL PASO,TX,31.7691,-106.4264,EL PASO 88563,EL PASO,TX,31.7691,-106.4264,EL PASO 88565,EL PASO,TX,31.7691,-106.4264,EL PASO 88566,EL PASO,TX,31.7691,-106.4264,EL PASO 88567,EL PASO,TX,31.7691,-106.4264,EL PASO 88568,EL PASO,TX,31.7691,-106.4264,EL PASO 88569,EL PASO,TX,31.7691,-106.4264,EL PASO 88570,EL PASO,TX,31.7691,-106.4264,EL PASO 88571,EL PASO,TX,31.7691,-106.4264,EL PASO 88572,EL PASO,TX,31.7691,-106.4264,EL PASO 88573,EL PASO,TX,31.7691,-106.4264,EL PASO 88574,EL PASO,TX,31.7691,-106.4264,EL PASO 88575,EL PASO,TX,31.7691,-106.4264,EL PASO 88576,EL PASO,TX,31.7691,-106.4264,EL PASO 88577,EL PASO,TX,31.7691,-106.4264,EL PASO 88578,EL PASO,TX,31.7691,-106.4264,EL PASO 88579,EL PASO,TX,31.7691,-106.4264,EL PASO 88580,EL PASO,TX,31.7691,-106.4264,EL PASO 88581,EL PASO,TX,31.7691,-106.4264,EL PASO 88582,EL PASO,TX,31.7691,-106.4264,EL PASO 88583,EL PASO,TX,31.7691,-106.4264,EL PASO 88584,EL PASO,TX,31.7691,-106.4264,EL PASO 88585,EL PASO,TX,31.7691,-106.4264,EL PASO 88586,EL PASO,TX,31.7691,-106.4264,EL PASO 88587,EL PASO,TX,31.7691,-106.4264,EL PASO 88588,EL PASO,TX,31.7691,-106.4264,EL PASO 88589,EL PASO,TX,31.8102,-106.4167,EL PASO 88590,EL PASO,TX,31.7691,-106.4264,EL PASO 88595,EL PASO,TX,31.7691,-106.4264,EL PASO 89002,HENDERSON,NV,35.992678,-114.951684,CLARK 89009,HENDERSON,NV,36.0938,-114.9445,CLARK 89011,HENDERSON,NV,36.0816,-114.9771,CLARK 89012,HENDERSON,NV,36.0188,-115.0512,CLARK 89014,HENDERSON,NV,36.056435,-115.077968,CLARK 89015,HENDERSON,NV,36.035705,-114.971809,CLARK 89016,HENDERSON,NV,36.0698,-115.0811,CLARK 89030,NORTH LAS VEGAS,NV,36.4475,-114.851389,CLARK 89031,NORTH LAS VEGAS,NV,36.206228,-115.124832,CLARK 89032,NORTH LAS VEGAS,NV,36.2236,-115.1745,CLARK 89033,NORTH LAS VEGAS,NV,36.3231,-115.1214,CLARK 89036,NORTH LAS VEGAS,NV,36.3709,-114.8819,CLARK 89044,HENDERSON,NV,35.9378,-115.098,CLARK 89052,HENDERSON,NV,35.9811,-115.1033,CLARK 89053,HENDERSON,NV,36.0865,-114.9434,CLARK 89074,HENDERSON,NV,36.0368,-115.0854,CLARK 89077,HENDERSON,NV,36.003889,-115.100556,CLARK 89081,NORTH LAS VEGAS,NV,36.2621,-115.1126,CLARK 89084,NORTH LAS VEGAS,NV,36.2873,-115.176,CLARK 89085,NORTH LAS VEGAS,NV,36.3096,-115.1963,CLARK 89086,NORTH LAS VEGAS,NV,36.2805,-115.1199,CLARK 89087,NORTH LAS VEGAS,NV,36.1989,-115.1175,CLARK 89101,LAS VEGAS,NV,36.172082,-115.122366,CLARK 89102,LAS VEGAS,NV,36.143303,-115.200351,CLARK 89103,LAS VEGAS,NV,36.114865,-115.216072,CLARK 89104,LAS VEGAS,NV,36.15197,-115.109195,CLARK 89105,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89106,LAS VEGAS,NV,36.184673,-115.161703,CLARK 89107,LAS VEGAS,NV,36.170457,-115.217638,CLARK 89108,LAS VEGAS,NV,36.204399,-115.223259,CLARK 89109,LAS VEGAS,NV,36.125991,-115.145378,CLARK 89110,LAS VEGAS,NV,36.173031,-115.066892,CLARK 89111,LAS VEGAS,NV,36.0856,-115.1458,CLARK 89112,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89113,LAS VEGAS,NV,36.085366,-115.256614,CLARK 89114,LAS VEGAS,NV,36.1328,-115.171,CLARK 89115,LAS VEGAS,NV,36.215818,-115.067062,CLARK 89116,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89117,LAS VEGAS,NV,36.130196,-115.275518,CLARK 89118,LAS VEGAS,NV,36.081052,-115.216856,CLARK 89119,LAS VEGAS,NV,36.100836,-115.136463,CLARK 89120,LAS VEGAS,NV,36.091423,-115.088485,CLARK 89121,LAS VEGAS,NV,36.12318,-115.090219,CLARK 89122,LAS VEGAS,NV,36.120501,-115.052322,CLARK 89123,LAS VEGAS,NV,36.038273,-115.146182,CLARK 89124,LAS VEGAS,NV,35.963391,-115.095067,CLARK 89125,LAS VEGAS,NV,36.1725,-115.1402,CLARK 89126,LAS VEGAS,NV,36.1507,-115.2075,CLARK 89127,LAS VEGAS,NV,36.1771,-115.1532,CLARK 89128,LAS VEGAS,NV,36.175992,-115.256252,CLARK 89129,LAS VEGAS,NV,36.245004,-115.274254,CLARK 89130,LAS VEGAS,NV,36.247137,-115.221032,CLARK 89131,LAS VEGAS,NV,36.295604,-115.241942,CLARK 89132,LAS VEGAS,NV,36.0998,-115.145,CLARK 89133,LAS VEGAS,NV,36.175,-115.1363,CLARK 89134,LAS VEGAS,NV,36.209234,-115.294123,CLARK 89135,LAS VEGAS,NV,36.1314,-115.3278,CLARK 89136,LAS VEGAS,NV,36.175,-115.1364,CLARK 89137,LAS VEGAS,NV,36.175,-115.1363,CLARK 89138,LAS VEGAS,NV,36.1694,-115.349,CLARK 89139,LAS VEGAS,NV,36.0411,-115.2163,CLARK 89140,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89141,LAS VEGAS,NV,35.9894,-115.203,CLARK 89142,LAS VEGAS,NV,36.1484,-115.0453,CLARK 89143,LAS VEGAS,NV,36.3158,-115.289,CLARK 89144,LAS VEGAS,NV,36.1788,-115.324,CLARK 89145,LAS VEGAS,NV,36.1678,-115.274,CLARK 89146,LAS VEGAS,NV,36.1428,-115.2253,CLARK 89147,LAS VEGAS,NV,36.1126,-115.2796,CLARK 89148,LAS VEGAS,NV,36.0643,-115.2964,CLARK 89149,LAS VEGAS,NV,36.2756,-115.2894,CLARK 89150,LAS VEGAS,NV,36.175,-115.1363,CLARK 89151,LAS VEGAS,NV,36.175,-115.1363,CLARK 89152,LAS VEGAS,NV,36.175,-115.1363,CLARK 89153,LAS VEGAS,NV,36.175,-115.1363,CLARK 89154,LAS VEGAS,NV,36.1065,-115.1372,CLARK 89155,LAS VEGAS,NV,36.1907,-115.1876,CLARK 89156,LAS VEGAS,NV,36.2012,-115.0327,CLARK 89157,LAS VEGAS,NV,36.175,-115.1372,CLARK 89159,LAS VEGAS,NV,36.0717,-115.14,CLARK 89160,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89161,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89162,LAS VEGAS,NV,36.175,-115.136,CLARK 89164,LAS VEGAS,NV,36.175,-115.1363,CLARK 89165,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89166,LAS VEGAS,NV,36.3211,-115.3335,CLARK 89169,LAS VEGAS,NV,36.122458,-115.141483,CLARK 89170,LAS VEGAS,NV,36.1059,-115.1362,CLARK 89173,LAS VEGAS,NV,36.1062,-115.1374,CLARK 89177,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89178,LAS VEGAS,NV,36.0115,-115.2711,CLARK 89179,LAS VEGAS,NV,35.987,-115.246,CLARK 89180,LAS VEGAS,NV,36.1276,-115.2421,CLARK 89183,LAS VEGAS,NV,35.991178,-115.147411,CLARK 89185,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89193,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89195,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89199,LAS VEGAS,NV,36.175,-115.1363,CLARK 89431,SPARKS,NV,39.547254,-119.755588,WASHOE 89432,SPARKS,NV,39.5407,-119.7466,WASHOE 89434,SPARKS,NV,39.550229,-119.717754,WASHOE 89435,SPARKS,NV,39.535,-119.7516,WASHOE 89436,SPARKS,NV,39.626861,-119.708125,WASHOE 89441,SPARKS,NV,39.6652,-119.6958,WASHOE 89501,RENO,NV,39.526812,-119.811275,WASHOE 89502,RENO,NV,39.497239,-119.776395,WASHOE 89503,RENO,NV,39.5354,-119.837409,WASHOE 89504,RENO,NV,39.5297,-119.8127,WASHOE 89505,RENO,NV,39.5297,-119.8127,WASHOE 89506,RENO,NV,39.641168,-119.873505,WASHOE 89507,RENO,NV,39.5385,-119.8179,WASHOE 89508,RENO,NV,39.5296329,-119.8138027,WASHOE 89509,RENO,NV,39.498042,-119.823932,WASHOE 89510,RENO,NV,39.769919,-119.602678,WASHOE 89511,RENO,NV,39.41512,-119.766846,WASHOE 89512,RENO,NV,39.548312,-119.795699,WASHOE 89513,RENO,NV,39.5297,-119.8127,WASHOE 89515,RENO,NV,39.5132,-119.7806,WASHOE 89519,RENO,NV,39.4857,-119.8522,WASHOE 89520,RENO,NV,39.5132,-119.7806,WASHOE 89521,RENO,NV,39.455833,-119.771667,WASHOE 89523,RENO,NV,39.524917,-119.903065,WASHOE 89533,RENO,NV,39.5297,-119.8127,WASHOE 89555,RENO,NV,39.5297,-119.8129,WASHOE 89557,RENO,NV,39.5452,-119.8201,WASHOE 89570,RENO,NV,39.5297,-119.8127,WASHOE 89595,RENO,NV,39.5132,-119.7806,WASHOE 89599,RENO,NV,39.5297,-119.8127,WASHOE 89701,CARSON CITY,NV,39.150746,-119.745904,CARSON CITY 89702,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89703,CARSON CITY,NV,39.17036,-119.778242,CARSON CITY 89705,CARSON CITY,NV,39.089147,-119.782899,DOUGLAS 89706,CARSON CITY,NV,39.210876,-119.742912,CARSON CITY 89711,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89712,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89713,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89714,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89721,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 90001,LOS ANGELES,CA,33.973093,-118.247896,LOS ANGELES 90002,LOS ANGELES,CA,33.94969,-118.246213,LOS ANGELES 90003,LOS ANGELES,CA,33.965335,-118.272739,LOS ANGELES 90004,LOS ANGELES,CA,34.076163,-118.302863,LOS ANGELES 90005,LOS ANGELES,CA,34.058508,-118.301197,LOS ANGELES 90006,LOS ANGELES,CA,34.049323,-118.291687,LOS ANGELES 90007,LOS ANGELES,CA,34.029442,-118.287095,LOS ANGELES 90008,LOS ANGELES,CA,34.011643,-118.341123,LOS ANGELES 90009,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90010,LOS ANGELES,CA,34.060633,-118.302664,LOS ANGELES 90011,LOS ANGELES,CA,34.007856,-118.258189,LOS ANGELES 90012,LOS ANGELES,CA,34.061396,-118.238479,LOS ANGELES 90013,LOS ANGELES,CA,34.044841,-118.243366,LOS ANGELES 90014,LOS ANGELES,CA,34.044272,-118.250937,LOS ANGELES 90015,LOS ANGELES,CA,34.043439,-118.271613,LOS ANGELES 90016,LOS ANGELES,CA,34.029826,-118.352787,LOS ANGELES 90017,LOS ANGELES,CA,34.055864,-118.266582,LOS ANGELES 90018,LOS ANGELES,CA,34.028972,-118.315173,LOS ANGELES 90019,LOS ANGELES,CA,34.048158,-118.33426,LOS ANGELES 90020,LOS ANGELES,CA,34.066535,-118.302211,LOS ANGELES 90021,LOS ANGELES,CA,34.033303,-118.244698,LOS ANGELES 90022,LOS ANGELES,CA,34.023638,-118.155319,LOS ANGELES 90023,LOS ANGELES,CA,34.024478,-118.197498,LOS ANGELES 90024,LOS ANGELES,CA,34.063691,-118.440796,LOS ANGELES 90025,LOS ANGELES,CA,34.044662,-118.448717,LOS ANGELES 90026,LOS ANGELES,CA,34.076629,-118.264641,LOS ANGELES 90027,LOS ANGELES,CA,34.104031,-118.292516,LOS ANGELES 90028,LOS ANGELES,CA,34.100549,-118.325363,LOS ANGELES 90029,LOS ANGELES,CA,34.089982,-118.294393,LOS ANGELES 90030,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90031,LOS ANGELES,CA,34.078349,-118.211279,LOS ANGELES 90032,LOS ANGELES,CA,34.081785,-118.175323,LOS ANGELES 90033,LOS ANGELES,CA,34.048676,-118.208442,LOS ANGELES 90034,LOS ANGELES,CA,34.028977,-118.400482,LOS ANGELES 90035,LOS ANGELES,CA,34.053096,-118.380615,LOS ANGELES 90036,LOS ANGELES,CA,34.069888,-118.349175,LOS ANGELES 90037,LOS ANGELES,CA,34.002982,-118.286284,LOS ANGELES 90038,LOS ANGELES,CA,34.089769,-118.321489,LOS ANGELES 90039,LOS ANGELES,CA,34.112089,-118.259428,LOS ANGELES 90040,LOS ANGELES,CA,33.99471,-118.151352,LOS ANGELES 90041,LOS ANGELES,CA,34.133932,-118.208205,LOS ANGELES 90042,LOS ANGELES,CA,34.114527,-118.192902,LOS ANGELES 90043,LOS ANGELES,CA,33.987099,-118.33211,LOS ANGELES 90044,LOS ANGELES,CA,33.955089,-118.290119,LOS ANGELES 90045,LOS ANGELES,CA,33.963075,-118.394128,LOS ANGELES 90046,LOS ANGELES,CA,34.09743,-118.357979,LOS ANGELES 90047,LOS ANGELES,CA,33.956896,-118.307304,LOS ANGELES 90048,LOS ANGELES,CA,34.073656,-118.371969,LOS ANGELES 90049,LOS ANGELES,CA,34.066,-118.473967,LOS ANGELES 90050,LOS ANGELES,CA,34.1208,-118.2033,LOS ANGELES 90051,LOS ANGELES,CA,33.948889,-118.247778,LOS ANGELES 90052,LOS ANGELES,CA,33.9818,-118.2579,LOS ANGELES 90053,LOS ANGELES,CA,34.0535,-118.2397,LOS ANGELES 90054,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90055,LOS ANGELES,CA,34.0449,-118.2579,LOS ANGELES 90056,LOS ANGELES,CA,33.985329,-118.370703,LOS ANGELES 90057,LOS ANGELES,CA,34.062172,-118.276262,LOS ANGELES 90058,LOS ANGELES,CA,33.997344,-118.235365,LOS ANGELES 90059,LOS ANGELES,CA,33.929331,-118.24628,LOS ANGELES 90060,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90061,LOS ANGELES,CA,33.924493,-118.271638,LOS ANGELES 90062,LOS ANGELES,CA,34.00324,-118.307277,LOS ANGELES 90063,LOS ANGELES,CA,34.044017,-118.185432,LOS ANGELES 90064,LOS ANGELES,CA,34.035279,-118.425911,LOS ANGELES 90065,LOS ANGELES,CA,34.107307,-118.226637,LOS ANGELES 90066,LOS ANGELES,CA,34.002956,-118.429769,LOS ANGELES 90067,LOS ANGELES,CA,34.055146,-118.409479,LOS ANGELES 90068,LOS ANGELES,CA,34.115625,-118.330476,LOS ANGELES 90070,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90071,LOS ANGELES,CA,34.052043,-118.257127,LOS ANGELES 90072,LOS ANGELES,CA,34.0961,-118.3086,LOS ANGELES 90073,LOS ANGELES,CA,34.056667,-118.456944,LOS ANGELES 90074,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90075,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90076,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90077,LOS ANGELES,CA,34.111245,-118.450155,LOS ANGELES 90078,LOS ANGELES,CA,34.0996,-118.3261,LOS ANGELES 90079,LOS ANGELES,CA,34.0522,-118.2427,LOS ANGELES 90080,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90081,LOS ANGELES,CA,33.9542,-118.3972,LOS ANGELES 90082,LOS ANGELES,CA,34.0008,-118.2772,LOS ANGELES 90083,LOS ANGELES,CA,33.9537,-118.398,LOS ANGELES 90084,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90086,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90087,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90088,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90089,LOS ANGELES,CA,34.0204,-118.2874,LOS ANGELES 90091,LOS ANGELES,CA,33.992222,-118.150278,LOS ANGELES 90093,LOS ANGELES,CA,34.0967,-118.3346,LOS ANGELES 90094,LOS ANGELES,CA,33.9732,-118.4231,LOS ANGELES 90095,LOS ANGELES,CA,34.070833,-118.444167,LOS ANGELES 90096,LOS ANGELES,CA,33.9681,-118.1696,LOS ANGELES 90099,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90101,LOS ANGELES,CA,33.974,-118.2488,LOS ANGELES 90102,LOS ANGELES,CA,34.0184,-118.1987,LOS ANGELES 90103,LOS ANGELES,CA,34.0184,-118.1996,LOS ANGELES 90189,LOS ANGELES,CA,34.0583,-118.2476,LOS ANGELES 90301,INGLEWOOD,CA,33.955048,-118.355575,LOS ANGELES 90302,INGLEWOOD,CA,33.974496,-118.354805,LOS ANGELES 90303,INGLEWOOD,CA,33.937691,-118.332058,LOS ANGELES 90304,INGLEWOOD,CA,33.938514,-118.355562,LOS ANGELES 90305,INGLEWOOD,CA,33.958304,-118.32585,LOS ANGELES 90306,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90307,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90308,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90309,INGLEWOOD,CA,33.9726,-118.3567,LOS ANGELES 90310,INGLEWOOD,CA,33.9306,-118.3218,LOS ANGELES 90311,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90312,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90313,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90397,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90398,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90401,SANTA MONICA,CA,34.017628,-118.490708,LOS ANGELES 90402,SANTA MONICA,CA,34.034875,-118.503011,LOS ANGELES 90403,SANTA MONICA,CA,34.028658,-118.49241,LOS ANGELES 90404,SANTA MONICA,CA,34.026828,-118.4733,LOS ANGELES 90405,SANTA MONICA,CA,34.01001,-118.471708,LOS ANGELES 90406,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90407,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90408,SANTA MONICA,CA,34.0259,-118.489,LOS ANGELES 90409,SANTA MONICA,CA,34.0003,-118.482,LOS ANGELES 90410,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90411,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90501,TORRANCE,CA,33.826817,-118.31183,LOS ANGELES 90502,TORRANCE,CA,33.828555,-118.292039,LOS ANGELES 90503,TORRANCE,CA,33.839709,-118.354236,LOS ANGELES 90504,TORRANCE,CA,33.870815,-118.329517,LOS ANGELES 90505,TORRANCE,CA,33.810635,-118.350733,LOS ANGELES 90506,TORRANCE,CA,33.885367,-118.329543,LOS ANGELES 90507,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90508,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90509,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90510,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90601,WHITTIER,CA,34.001119,-118.037139,LOS ANGELES 90602,WHITTIER,CA,33.96931,-118.033703,LOS ANGELES 90603,WHITTIER,CA,33.943199,-117.992685,LOS ANGELES 90604,WHITTIER,CA,33.929931,-118.012075,LOS ANGELES 90605,WHITTIER,CA,33.941338,-118.035568,LOS ANGELES 90606,WHITTIER,CA,33.977019,-118.065639,LOS ANGELES 90607,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90608,WHITTIER,CA,33.9804,-118.0342,LOS ANGELES 90609,WHITTIER,CA,33.9791,-118.0319,LOS ANGELES 90610,WHITTIER,CA,33.9686,-118.0702,LOS ANGELES 90612,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90801,LONG BEACH,CA,33.7705,-118.1885,LOS ANGELES 90802,LONG BEACH,CA,33.770553,-118.182025,LOS ANGELES 90803,LONG BEACH,CA,33.761932,-118.134073,LOS ANGELES 90804,LONG BEACH,CA,33.782993,-118.155187,LOS ANGELES 90805,LONG BEACH,CA,33.863457,-118.180102,LOS ANGELES 90806,LONG BEACH,CA,33.799319,-118.187443,LOS ANGELES 90807,LONG BEACH,CA,33.830712,-118.18092,LOS ANGELES 90808,LONG BEACH,CA,33.824145,-118.110299,LOS ANGELES 90809,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90810,LONG BEACH,CA,33.810985,-118.215006,LOS ANGELES 90813,LONG BEACH,CA,33.78202,-118.183488,LOS ANGELES 90814,LONG BEACH,CA,33.771576,-118.147988,LOS ANGELES 90815,LONG BEACH,CA,33.793908,-118.119249,LOS ANGELES 90822,LONG BEACH,CA,33.744415,-118.239257,LOS ANGELES 90831,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90832,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90833,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90834,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90835,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90840,LONG BEACH,CA,33.7828,-118.1153,LOS ANGELES 90842,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90844,LONG BEACH,CA,33.7744,-118.1923,LOS ANGELES 90845,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90846,LONG BEACH,CA,33.8281,-118.1427,LOS ANGELES 90847,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90848,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90853,LONG BEACH,CA,33.759,-118.1306,LOS ANGELES 90888,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90899,LONG BEACH,CA,33.7668,-118.1886,LOS ANGELES 91101,PASADENA,CA,34.146762,-118.139119,LOS ANGELES 91102,PASADENA,CA,34.146,-118.1438,LOS ANGELES 91103,PASADENA,CA,34.166906,-118.155119,LOS ANGELES 91104,PASADENA,CA,34.167776,-118.12609,LOS ANGELES 91105,PASADENA,CA,34.135455,-118.163577,LOS ANGELES 91106,PASADENA,CA,34.143527,-118.126647,LOS ANGELES 91107,PASADENA,CA,34.150997,-118.088905,LOS ANGELES 91109,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91110,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91114,PASADENA,CA,34.1692,-118.1302,LOS ANGELES 91115,PASADENA,CA,34.1359,-118.1532,LOS ANGELES 91116,PASADENA,CA,34.1461,-118.1295,LOS ANGELES 91117,PASADENA,CA,34.1463,-118.0956,LOS ANGELES 91121,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91123,PASADENA,CA,34.1445,-118.1566,LOS ANGELES 91124,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91125,PASADENA,CA,34.1359,-118.1262,LOS ANGELES 91126,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91129,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91131,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91182,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91184,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91185,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91188,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91189,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91191,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91199,PASADENA,CA,34.1668,-118.1216,LOS ANGELES 91201,GLENDALE,CA,34.171606,-118.289892,LOS ANGELES 91202,GLENDALE,CA,34.165235,-118.265649,LOS ANGELES 91203,GLENDALE,CA,34.151718,-118.263614,LOS ANGELES 91204,GLENDALE,CA,34.137871,-118.259947,LOS ANGELES 91205,GLENDALE,CA,34.137798,-118.24245,LOS ANGELES 91206,GLENDALE,CA,34.155605,-118.232217,LOS ANGELES 91207,GLENDALE,CA,34.164856,-118.245086,LOS ANGELES 91208,GLENDALE,CA,34.19212,-118.234966,LOS ANGELES 91209,GLENDALE,CA,34.1463,-118.2515,LOS ANGELES 91210,GLENDALE,CA,34.1441,-118.2593,LOS ANGELES 91221,GLENDALE,CA,34.1647,-118.2885,LOS ANGELES 91222,GLENDALE,CA,34.16,-118.2635,LOS ANGELES 91225,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91226,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91324,NORTHRIDGE,CA,34.236743,-118.546595,LOS ANGELES 91325,NORTHRIDGE,CA,34.235332,-118.51884,LOS ANGELES 91327,NORTHRIDGE,CA,34.274167,-118.541111,LOS ANGELES 91328,NORTHRIDGE,CA,34.2432,-118.535,LOS ANGELES 91329,NORTHRIDGE,CA,34.2224,-118.5024,LOS ANGELES 91330,NORTHRIDGE,CA,34.23805,-118.528634,LOS ANGELES 91388,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91401,VAN NUYS,CA,34.180152,-118.432375,LOS ANGELES 91404,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91405,VAN NUYS,CA,34.200068,-118.445636,LOS ANGELES 91406,VAN NUYS,CA,34.200568,-118.486821,LOS ANGELES 91407,VAN NUYS,CA,34.194,-118.4489,LOS ANGELES 91408,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91409,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91410,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91411,VAN NUYS,CA,34.178133,-118.457396,LOS ANGELES 91470,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91482,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91496,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91497,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91499,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91501,BURBANK,CA,34.186238,-118.300898,LOS ANGELES 91502,BURBANK,CA,34.174487,-118.305912,LOS ANGELES 91503,BURBANK,CA,34.1804,-118.3084,LOS ANGELES 91504,BURBANK,CA,34.200097,-118.326401,LOS ANGELES 91505,BURBANK,CA,34.168998,-118.344175,LOS ANGELES 91506,BURBANK,CA,34.171746,-118.323148,LOS ANGELES 91507,BURBANK,CA,34.1672,-118.3472,LOS ANGELES 91508,BURBANK,CA,34.1914,-118.3259,LOS ANGELES 91510,BURBANK,CA,34.187,-118.348,LOS ANGELES 91521,BURBANK,CA,34.1559,-118.3268,LOS ANGELES 91522,BURBANK,CA,34.1491,-118.3427,LOS ANGELES 91523,BURBANK,CA,34.1563,-118.3333,LOS ANGELES 91526,BURBANK,CA,34.1745,-118.3462,LOS ANGELES 91601,NORTH HOLLYWOOD,CA,34.16867,-118.371274,LOS ANGELES 91602,NORTH HOLLYWOOD,CA,34.151095,-118.367606,LOS ANGELES 91603,NORTH HOLLYWOOD,CA,34.1681,-118.3778,LOS ANGELES 91605,NORTH HOLLYWOOD,CA,34.205747,-118.400069,LOS ANGELES 91606,NORTH HOLLYWOOD,CA,34.187182,-118.386538,LOS ANGELES 91609,NORTH HOLLYWOOD,CA,34.1891,-118.387,LOS ANGELES 91611,NORTH HOLLYWOOD,CA,34.1867,-118.3976,LOS ANGELES 91612,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91615,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91616,NORTH HOLLYWOOD,CA,34.184,-118.3964,LOS ANGELES 91618,NORTH HOLLYWOOD,CA,34.1388,-118.3525,LOS ANGELES 91766,POMONA,CA,34.043268,-117.752086,LOS ANGELES 91767,POMONA,CA,34.081187,-117.736171,LOS ANGELES 91768,POMONA,CA,34.066168,-117.776312,LOS ANGELES 91769,POMONA,CA,34.0601,-117.7575,LOS ANGELES 91797,POMONA,CA,34.0852,-117.96,LOS ANGELES 91799,POMONA,CA,34.0552,-117.7513,LOS ANGELES 91801,ALHAMBRA,CA,34.091436,-118.129288,LOS ANGELES 91802,ALHAMBRA,CA,34.0931,-118.1257,LOS ANGELES 91803,ALHAMBRA,CA,34.074514,-118.143354,LOS ANGELES 91804,ALHAMBRA,CA,34.0952,-118.1261,LOS ANGELES 91841,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91896,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91899,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91909,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91910,CHULA VISTA,CA,32.637139,-117.06756,SAN DIEGO 91911,CHULA VISTA,CA,32.608428,-117.056459,SAN DIEGO 91912,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91913,CHULA VISTA,CA,32.651296,-116.985237,SAN DIEGO 91914,CHULA VISTA,CA,32.65875,-116.96517,SAN DIEGO 91915,CHULA VISTA,CA,32.631513,-116.940807,SAN DIEGO 91921,CHULA VISTA,CA,32.6248,-117.0142,SAN DIEGO 92008,CARLSBAD,CA,33.160241,-117.324998,SAN DIEGO 92009,CARLSBAD,CA,33.095407,-117.261888,SAN DIEGO 92010,CARLSBAD,CA,33.156116,-117.280831,SAN DIEGO 92011,CARLSBAD,CA,33.107933,-117.288181,SAN DIEGO 92013,CARLSBAD,CA,33.0986,-117.2788,SAN DIEGO 92018,CARLSBAD,CA,33.1626,-117.3489,SAN DIEGO 92025,ESCONDIDO,CA,33.110117,-117.069987,SAN DIEGO 92026,ESCONDIDO,CA,33.160513,-117.097808,SAN DIEGO 92027,ESCONDIDO,CA,33.138824,-117.051966,SAN DIEGO 92029,ESCONDIDO,CA,33.089497,-117.112793,SAN DIEGO 92030,ESCONDIDO,CA,33.1362,-117.0543,SAN DIEGO 92033,ESCONDIDO,CA,33.1236,-117.086,SAN DIEGO 92046,ESCONDIDO,CA,33.1249,-117.1016,SAN DIEGO 92049,OCEANSIDE,CA,33.1951,-117.3776,SAN DIEGO 92051,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92052,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92054,OCEANSIDE,CA,33.20723,-117.357294,SAN DIEGO 92056,OCEANSIDE,CA,33.196784,-117.283089,SAN DIEGO 92057,OCEANSIDE,CA,33.240654,-117.302484,SAN DIEGO 92058,OCEANSIDE,CA,33.1958696,-117.3794834,SAN DIEGO 92101,SAN DIEGO,CA,32.71852,-117.159316,SAN DIEGO 92102,SAN DIEGO,CA,32.713893,-117.121858,SAN DIEGO 92103,SAN DIEGO,CA,32.746638,-117.163552,SAN DIEGO 92104,SAN DIEGO,CA,32.745425,-117.127189,SAN DIEGO 92105,SAN DIEGO,CA,32.7423,-117.094681,SAN DIEGO 92106,SAN DIEGO,CA,32.72725,-117.226829,SAN DIEGO 92107,SAN DIEGO,CA,32.742531,-117.243307,SAN DIEGO 92108,SAN DIEGO,CA,32.778327,-117.133525,SAN DIEGO 92109,SAN DIEGO,CA,32.796923,-117.240534,SAN DIEGO 92110,SAN DIEGO,CA,32.763476,-117.202847,SAN DIEGO 92111,SAN DIEGO,CA,32.797185,-117.17081,SAN DIEGO 92112,SAN DIEGO,CA,32.7246,-117.1648,SAN DIEGO 92113,SAN DIEGO,CA,32.697047,-117.115257,SAN DIEGO 92114,SAN DIEGO,CA,32.705923,-117.05235,SAN DIEGO 92115,SAN DIEGO,CA,32.760742,-117.072056,SAN DIEGO 92116,SAN DIEGO,CA,32.762446,-117.124166,SAN DIEGO 92117,SAN DIEGO,CA,32.823948,-117.196536,SAN DIEGO 92119,SAN DIEGO,CA,32.803587,-117.026065,SAN DIEGO 92120,SAN DIEGO,CA,32.79581,-117.070708,SAN DIEGO 92121,SAN DIEGO,CA,32.891894,-117.203503,SAN DIEGO 92122,SAN DIEGO,CA,32.857736,-117.211507,SAN DIEGO 92123,SAN DIEGO,CA,32.797297,-117.139248,SAN DIEGO 92124,SAN DIEGO,CA,32.820113,-117.098613,SAN DIEGO 92126,SAN DIEGO,CA,32.916136,-117.140227,SAN DIEGO 92127,SAN DIEGO,CA,33.027854,-117.085596,SAN DIEGO 92128,SAN DIEGO,CA,33.00666,-117.068982,SAN DIEGO 92129,SAN DIEGO,CA,32.965185,-117.121308,SAN DIEGO 92130,SAN DIEGO,CA,32.955533,-117.225201,SAN DIEGO 92131,SAN DIEGO,CA,32.912343,-117.089758,SAN DIEGO 92132,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92133,SAN DIEGO,CA,32.7256,-117.2177,SAN DIEGO 92134,SAN DIEGO,CA,32.725,-117.1465,SAN DIEGO 92135,SAN DIEGO,CA,32.702482,-117.19202,SAN DIEGO 92136,SAN DIEGO,CA,32.681585,-117.124678,SAN DIEGO 92137,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92138,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92139,SAN DIEGO,CA,32.680612,-117.047375,SAN DIEGO 92140,SAN DIEGO,CA,32.7399,-117.198,SAN DIEGO 92142,SAN DIEGO,CA,32.8398,-117.0973,SAN DIEGO 92145,SAN DIEGO,CA,32.870365,-117.116518,SAN DIEGO 92147,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92149,SAN DIEGO,CA,32.6759,-117.0643,SAN DIEGO 92150,SAN DIEGO,CA,32.9847,-117.0786,SAN DIEGO 92152,SAN DIEGO,CA,32.7023,-117.2448,SAN DIEGO 92153,SAN DIEGO,CA,32.5656,-117.0805,SAN DIEGO 92154,SAN DIEGO,CA,32.575276,-117.070725,SAN DIEGO 92155,SAN DIEGO,CA,32.676144,-117.160335,SAN DIEGO 92158,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92159,SAN DIEGO,CA,32.8015,-117.0136,SAN DIEGO 92160,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92161,SAN DIEGO,CA,32.8717,-117.2319,SAN DIEGO 92162,SAN DIEGO,CA,32.7171,-117.1354,SAN DIEGO 92163,SAN DIEGO,CA,32.7476,-117.1665,SAN DIEGO 92164,SAN DIEGO,CA,32.7474,-117.1273,SAN DIEGO 92165,SAN DIEGO,CA,32.7496,-117.1039,SAN DIEGO 92166,SAN DIEGO,CA,32.7211,-117.2305,SAN DIEGO 92167,SAN DIEGO,CA,32.7458,-117.2468,SAN DIEGO 92168,SAN DIEGO,CA,32.7654,-117.1546,SAN DIEGO 92169,SAN DIEGO,CA,32.799,-117.2518,SAN DIEGO 92170,SAN DIEGO,CA,32.697,-117.1335,SAN DIEGO 92171,SAN DIEGO,CA,32.783,-117.1702,SAN DIEGO 92172,SAN DIEGO,CA,32.9627,-117.1329,SAN DIEGO 92174,SAN DIEGO,CA,32.7063,-117.0844,SAN DIEGO 92175,SAN DIEGO,CA,32.7651,-117.0598,SAN DIEGO 92176,SAN DIEGO,CA,32.7636,-117.1225,SAN DIEGO 92177,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92179,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92182,SAN DIEGO,CA,32.7768,-117.0702,SAN DIEGO 92184,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92186,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92187,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92190,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92191,SAN DIEGO,CA,32.9025,-117.218,SAN DIEGO 92192,SAN DIEGO,CA,32.8508,-117.2133,SAN DIEGO 92193,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92194,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92195,SAN DIEGO,CA,32.7442,-117.0525,SAN DIEGO 92196,SAN DIEGO,CA,32.9163,-117.1292,SAN DIEGO 92197,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92198,SAN DIEGO,CA,33.0222,-117.0739,SAN DIEGO 92199,SAN DIEGO,CA,32.9954,-117.0722,SAN DIEGO 92401,SAN BERNARDINO,CA,34.110521,-117.289753,SAN BERNARDINO 92402,SAN BERNARDINO,CA,34.1085,-117.2904,SAN BERNARDINO 92403,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92404,SAN BERNARDINO,CA,34.142577,-117.260572,SAN BERNARDINO 92405,SAN BERNARDINO,CA,34.144101,-117.310765,SAN BERNARDINO 92406,SAN BERNARDINO,CA,34.1351,-117.2891,SAN BERNARDINO 92407,SAN BERNARDINO,CA,34.20928,-117.293697,SAN BERNARDINO 92408,SAN BERNARDINO,CA,34.083127,-117.271059,SAN BERNARDINO 92410,SAN BERNARDINO,CA,34.107729,-117.296789,SAN BERNARDINO 92411,SAN BERNARDINO,CA,34.121414,-117.317158,SAN BERNARDINO 92412,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92413,SAN BERNARDINO,CA,34.141,-117.2504,SAN BERNARDINO 92414,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92415,SAN BERNARDINO,CA,34.1083,-117.2862,SAN BERNARDINO 92418,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92423,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92424,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92427,SAN BERNARDINO,CA,34.1982,-117.3405,SAN BERNARDINO 92501,RIVERSIDE,CA,33.9924,-117.369421,RIVERSIDE 92502,RIVERSIDE,CA,33.9805,-117.3727,RIVERSIDE 92503,RIVERSIDE,CA,33.920808,-117.458862,RIVERSIDE 92504,RIVERSIDE,CA,33.931458,-117.411948,RIVERSIDE 92505,RIVERSIDE,CA,33.922769,-117.486687,RIVERSIDE 92506,RIVERSIDE,CA,33.945485,-117.375696,RIVERSIDE 92507,RIVERSIDE,CA,33.976086,-117.338874,RIVERSIDE 92508,RIVERSIDE,CA,33.889676,-117.304264,RIVERSIDE 92509,RIVERSIDE,CA,33.997355,-117.444896,RIVERSIDE 92513,RIVERSIDE,CA,33.9151,-117.4626,RIVERSIDE 92514,RIVERSIDE,CA,33.946,-117.415,RIVERSIDE 92515,RIVERSIDE,CA,33.9187,-117.4887,RIVERSIDE 92516,RIVERSIDE,CA,33.9547,-117.3936,RIVERSIDE 92517,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92519,RIVERSIDE,CA,33.9957,-117.4128,RIVERSIDE 92521,RIVERSIDE,CA,33.9693,-117.3332,RIVERSIDE 92522,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92551,MORENO VALLEY,CA,33.8858,-117.2211,RIVERSIDE 92552,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92553,MORENO VALLEY,CA,33.915719,-117.235066,RIVERSIDE 92554,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92555,MORENO VALLEY,CA,33.937659,-117.185105,RIVERSIDE 92556,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92557,MORENO VALLEY,CA,33.955257,-117.245682,RIVERSIDE 92602,IRVINE,CA,33.7357,-117.7672,ORANGE 92603,IRVINE,CA,33.6345,-117.8022,ORANGE 92604,IRVINE,CA,33.6882,-117.7888,ORANGE 92605,HUNTINGTON BEACH,CA,33.7152,-118.0088,ORANGE 92606,IRVINE,CA,33.6984,-117.807,ORANGE 92612,IRVINE,CA,33.6611,-117.8271,ORANGE 92614,IRVINE,CA,33.6791,-117.8285,ORANGE 92615,HUNTINGTON BEACH,CA,33.6574,-117.968,ORANGE 92616,IRVINE,CA,33.6699,-117.7646,ORANGE 92617,IRVINE,CA,33.6422,-117.8459,ORANGE 92618,IRVINE,CA,33.6671,-117.7415,ORANGE 92619,IRVINE,CA,33.6699,-117.7646,ORANGE 92620,IRVINE,CA,33.7113,-117.762,ORANGE 92623,IRVINE,CA,33.6699,-117.7646,ORANGE 92646,HUNTINGTON BEACH,CA,33.668448,-117.967771,ORANGE 92647,HUNTINGTON BEACH,CA,33.721018,-118.003035,ORANGE 92648,HUNTINGTON BEACH,CA,33.674577,-117.999012,ORANGE 92649,HUNTINGTON BEACH,CA,33.719111,-118.045142,ORANGE 92658,NEWPORT BEACH,CA,33.6398,-117.8643,ORANGE 92659,NEWPORT BEACH,CA,33.6208,-117.923,ORANGE 92660,NEWPORT BEACH,CA,33.630027,-117.8757,ORANGE 92661,NEWPORT BEACH,CA,33.604429,-117.906237,ORANGE 92662,NEWPORT BEACH,CA,33.606459,-117.891732,ORANGE 92663,NEWPORT BEACH,CA,33.623084,-117.92788,ORANGE 92697,IRVINE,CA,33.650833,-117.825833,ORANGE 92701,SANTA ANA,CA,33.75016,-117.857665,ORANGE 92702,SANTA ANA,CA,33.75,-117.8665,ORANGE 92703,SANTA ANA,CA,33.746613,-117.899589,ORANGE 92704,SANTA ANA,CA,33.726513,-117.904683,ORANGE 92705,SANTA ANA,CA,33.74866,-117.768902,ORANGE 92706,SANTA ANA,CA,33.764434,-117.881791,ORANGE 92707,SANTA ANA,CA,33.715938,-117.870346,ORANGE 92709,IRVINE,CA,33.681287,-117.715018,ORANGE 92710,IRVINE,CA,33.720556,-117.9075,ORANGE 92711,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92712,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92725,SANTA ANA,CA,33.7484,-117.8593,ORANGE 92735,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92799,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92801,ANAHEIM,CA,33.842679,-117.954035,ORANGE 92802,ANAHEIM,CA,33.806909,-117.92219,ORANGE 92803,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92804,ANAHEIM,CA,33.81908,-117.974985,ORANGE 92805,ANAHEIM,CA,33.835332,-117.906263,ORANGE 92806,ANAHEIM,CA,33.837344,-117.875928,ORANGE 92807,ANAHEIM,CA,33.851583,-117.787657,ORANGE 92808,ANAHEIM,CA,33.857569,-117.748445,ORANGE 92809,ANAHEIM,CA,33.8444,-117.9519,ORANGE 92812,ANAHEIM,CA,33.8178,-117.9272,ORANGE 92814,ANAHEIM,CA,33.8177,-117.9604,ORANGE 92815,ANAHEIM,CA,33.8333,-117.9126,ORANGE 92816,ANAHEIM,CA,33.8391,-117.8832,ORANGE 92817,ANAHEIM,CA,33.852,-117.7924,ORANGE 92825,ANAHEIM,CA,33.8352,-117.9136,ORANGE 92831,FULLERTON,CA,33.8796,-117.8951,ORANGE 92832,FULLERTON,CA,33.8685,-117.9294,ORANGE 92833,FULLERTON,CA,33.8778,-117.9621,ORANGE 92834,FULLERTON,CA,33.8784,-117.8964,ORANGE 92835,FULLERTON,CA,33.9022,-117.9065,ORANGE 92836,FULLERTON,CA,33.8784,-117.8964,ORANGE 92837,FULLERTON,CA,33.8697,-117.963,ORANGE 92838,FULLERTON,CA,33.8784,-117.8964,ORANGE 92840,GARDEN GROVE,CA,33.7857,-117.9318,ORANGE 92841,GARDEN GROVE,CA,33.7869,-117.9788,ORANGE 92842,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92843,GARDEN GROVE,CA,33.7652,-117.9313,ORANGE 92844,GARDEN GROVE,CA,33.7662,-117.9717,ORANGE 92845,GARDEN GROVE,CA,33.7828,-118.0266,ORANGE 92846,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92850,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92856,ORANGE,CA,33.7877,-117.8755,ORANGE 92857,ORANGE,CA,33.7877,-117.8755,ORANGE 92859,ORANGE,CA,33.7877,-117.8755,ORANGE 92862,ORANGE,CA,33.813,-117.7143,ORANGE 92863,ORANGE,CA,33.7877,-117.8755,ORANGE 92864,ORANGE,CA,33.8146,-117.8271,ORANGE 92865,ORANGE,CA,33.8299,-117.8468,ORANGE 92866,ORANGE,CA,33.7831,-117.8435,ORANGE 92867,ORANGE,CA,33.814,-117.8252,ORANGE 92868,ORANGE,CA,33.7861,-117.8799,ORANGE 92869,ORANGE,CA,33.7936,-117.7932,ORANGE 92877,CORONA,CA,33.8815,-117.6078,RIVERSIDE 92878,CORONA,CA,33.8774,-117.5739,RIVERSIDE 92879,CORONA,CA,33.8812,-117.5391,RIVERSIDE 92880,CORONA,CA,33.9241,-117.5963,RIVERSIDE 92881,CORONA,CA,33.8382,-117.5382,RIVERSIDE 92882,CORONA,CA,33.8643,-117.5942,RIVERSIDE 92883,CORONA,CA,33.771,-117.4823,RIVERSIDE 92899,ANAHEIM,CA,33.8415,-117.9364,ORANGE 93001,VENTURA,CA,34.290531,-119.28882,VENTURA 93002,VENTURA,CA,34.3557,-119.3011,VENTURA 93003,VENTURA,CA,34.270568,-119.2214,VENTURA 93004,VENTURA,CA,34.278091,-119.168727,VENTURA 93005,VENTURA,CA,34.2509,-119.2058,VENTURA 93006,VENTURA,CA,34.2783,-119.2922,VENTURA 93007,VENTURA,CA,34.2918,-119.1569,VENTURA 93009,VENTURA,CA,34.27,-119.2123,VENTURA 93030,OXNARD,CA,34.214142,-119.174952,VENTURA 93031,OXNARD,CA,34.2199,-119.18,VENTURA 93032,OXNARD,CA,34.1981,-119.1777,VENTURA 93033,OXNARD,CA,34.168505,-119.171732,VENTURA 93034,OXNARD,CA,34.176,-119.1765,VENTURA 93035,OXNARD,CA,34.182177,-119.215975,VENTURA 93036,OXNARD,CA,34.2301,-119.1771,VENTURA 93062,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93063,SIMI VALLEY,CA,34.279202,-118.699229,VENTURA 93065,SIMI VALLEY,CA,34.265589,-118.765349,VENTURA 93093,SIMI VALLEY,CA,34.2718,-118.7123,VENTURA 93094,SIMI VALLEY,CA,34.279,-118.7021,VENTURA 93099,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93101,SANTA BARBARA,CA,34.419668,-119.70782,SANTA BARBARA 93102,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93103,SANTA BARBARA,CA,34.429065,-119.683275,SANTA BARBARA 93105,SANTA BARBARA,CA,34.436915,-119.728538,SANTA BARBARA 93106,SANTA BARBARA,CA,34.4173,-119.8459,SANTA BARBARA 93107,SANTA BARBARA,CA,34.4208,-119.6972,SANTA BARBARA 93108,SANTA BARBARA,CA,34.434258,-119.64255,SANTA BARBARA 93109,SANTA BARBARA,CA,34.403848,-119.7194,SANTA BARBARA 93110,SANTA BARBARA,CA,34.441814,-119.764668,SANTA BARBARA 93111,SANTA BARBARA,CA,34.445262,-119.802509,SANTA BARBARA 93120,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93121,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93130,SANTA BARBARA,CA,34.5283,-119.8192,SANTA BARBARA 93140,SANTA BARBARA,CA,34.4209,-119.6767,SANTA BARBARA 93150,SANTA BARBARA,CA,34.436667,-119.631111,SANTA BARBARA 93160,SANTA BARBARA,CA,34.4348,-119.803,SANTA BARBARA 93190,SANTA BARBARA,CA,34.4234,-119.7037,SANTA BARBARA 93277,VISALIA,CA,36.311379,-119.306471,TULARE 93278,VISALIA,CA,36.3093,-119.3142,TULARE 93279,VISALIA,CA,36.3289,-119.2922,TULARE 93290,VISALIA,CA,36.33,-119.291,TULARE 93291,VISALIA,CA,36.355108,-119.301029,TULARE 93292,VISALIA,CA,36.3469,-119.2483,TULARE 93301,BAKERSFIELD,CA,35.386611,-119.017063,KERN 93302,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93303,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93304,BAKERSFIELD,CA,35.339581,-119.021793,KERN 93305,BAKERSFIELD,CA,35.387772,-118.982042,KERN 93306,BAKERSFIELD,CA,35.386697,-118.939104,KERN 93307,BAKERSFIELD,CA,35.327484,-118.983851,KERN 93308,BAKERSFIELD,CA,35.424395,-119.043319,KERN 93309,BAKERSFIELD,CA,35.33839,-119.062713,KERN 93311,BAKERSFIELD,CA,35.303891,-119.105647,KERN 93312,BAKERSFIELD,CA,35.382082,-119.15014,KERN 93313,BAKERSFIELD,CA,35.297391,-119.050936,KERN 93314,BAKERSFIELD,CA,35.3993,-119.1895,KERN 93380,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93381,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93382,BAKERSFIELD,CA,35.2596,-119.0019,KERN 93383,BAKERSFIELD,CA,35.3329,-119.0859,KERN 93384,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93385,BAKERSFIELD,CA,35.3785,-118.9907,KERN 93386,BAKERSFIELD,CA,35.3764,-118.9537,KERN 93387,BAKERSFIELD,CA,35.2908,-118.9665,KERN 93388,BAKERSFIELD,CA,35.4714,-118.9667,KERN 93389,BAKERSFIELD,CA,35.3538,-119.0615,KERN 93390,BAKERSFIELD,CA,35.3431,-119.0635,KERN 93401,SAN LUIS OBISPO,CA,35.263453,-120.650933,SAN LUIS OBISPO 93403,SAN LUIS OBISPO,CA,35.2827,-120.6586,SAN LUIS OBISPO 93405,SAN LUIS OBISPO,CA,35.290058,-120.681724,SAN LUIS OBISPO 93406,SAN LUIS OBISPO,CA,35.2794,-120.6606,SAN LUIS OBISPO 93407,SAN LUIS OBISPO,CA,35.3011,-120.6607,SAN LUIS OBISPO 93408,SAN LUIS OBISPO,CA,35.2847,-120.6606,SAN LUIS OBISPO 93409,SAN LUIS OBISPO,CA,35.221,-120.6364,SAN LUIS OBISPO 93410,SAN LUIS OBISPO,CA,35.2996,-120.6555,SAN LUIS OBISPO 93534,LANCASTER,CA,34.690888,-118.149129,LOS ANGELES 93535,LANCASTER,CA,34.684751,-118.063245,LOS ANGELES 93536,LANCASTER,CA,34.673619,-118.213336,LOS ANGELES 93539,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93550,PALMDALE,CA,34.571483,-118.061306,LOS ANGELES 93551,PALMDALE,CA,34.601404,-118.181207,LOS ANGELES 93552,PALMDALE,CA,34.5636,-118.0349,LOS ANGELES 93584,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93586,LANCASTER,CA,34.6475,-118.2175,LOS ANGELES 93590,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93591,PALMDALE,CA,34.6042,-117.8506,LOS ANGELES 93599,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93650,FRESNO,CA,36.841107,-119.800359,FRESNO 93701,FRESNO,CA,36.748727,-119.786705,FRESNO 93702,FRESNO,CA,36.739954,-119.753215,FRESNO 93703,FRESNO,CA,36.768445,-119.759401,FRESNO 93704,FRESNO,CA,36.798781,-119.799745,FRESNO 93705,FRESNO,CA,36.786285,-119.828617,FRESNO 93706,FRESNO,CA,36.700589,-119.820408,FRESNO 93707,FRESNO,CA,36.7329,-119.7828,FRESNO 93708,FRESNO,CA,36.7329,-119.7828,FRESNO 93709,FRESNO,CA,36.7329,-119.7828,FRESNO 93710,FRESNO,CA,36.823643,-119.76205,FRESNO 93711,FRESNO,CA,36.830297,-119.831896,FRESNO 93712,FRESNO,CA,36.7329,-119.7828,FRESNO 93714,FRESNO,CA,36.7329,-119.7828,FRESNO 93715,FRESNO,CA,36.7329,-119.7828,FRESNO 93716,FRESNO,CA,36.7329,-119.7828,FRESNO 93717,FRESNO,CA,36.7329,-119.7828,FRESNO 93718,FRESNO,CA,36.7329,-119.7828,FRESNO 93720,FRESNO,CA,36.857944,-119.765522,FRESNO 93721,FRESNO,CA,36.737714,-119.784273,FRESNO 93722,FRESNO,CA,36.791779,-119.880119,FRESNO 93723,FRESNO,CA,36.79,-119.9532,FRESNO 93724,FRESNO,CA,36.7387,-119.8046,FRESNO 93725,FRESNO,CA,36.675312,-119.742477,FRESNO 93726,FRESNO,CA,36.794943,-119.760445,FRESNO 93727,FRESNO,CA,36.752796,-119.706055,FRESNO 93728,FRESNO,CA,36.758095,-119.811314,FRESNO 93729,FRESNO,CA,36.8518,-119.7669,FRESNO 93730,FRESNO,CA,36.8878,-119.7589,FRESNO 93740,FRESNO,CA,36.8142,-119.7461,FRESNO 93741,FRESNO,CA,36.7656,-119.7956,FRESNO 93744,FRESNO,CA,36.7585,-119.7995,FRESNO 93745,FRESNO,CA,36.6275,-119.7378,FRESNO 93747,FRESNO,CA,36.7432,-119.7012,FRESNO 93750,FRESNO,CA,36.7387,-119.8046,FRESNO 93755,FRESNO,CA,36.79,-119.7905,FRESNO 93760,FRESNO,CA,36.7387,-119.8046,FRESNO 93761,FRESNO,CA,36.7387,-119.8046,FRESNO 93764,FRESNO,CA,36.7387,-119.8046,FRESNO 93765,FRESNO,CA,36.8349,-119.8301,FRESNO 93771,FRESNO,CA,36.7387,-119.8046,FRESNO 93772,FRESNO,CA,36.7387,-119.8046,FRESNO 93773,FRESNO,CA,36.7387,-119.8046,FRESNO 93774,FRESNO,CA,36.7387,-119.8046,FRESNO 93775,FRESNO,CA,36.7387,-119.8046,FRESNO 93776,FRESNO,CA,36.7387,-119.8046,FRESNO 93777,FRESNO,CA,36.7387,-119.8046,FRESNO 93778,FRESNO,CA,36.7387,-119.8046,FRESNO 93779,FRESNO,CA,36.7387,-119.8046,FRESNO 93780,FRESNO,CA,36.7387,-119.8046,FRESNO 93784,FRESNO,CA,36.8243,-119.7615,FRESNO 93786,FRESNO,CA,36.6377,-119.8999,FRESNO 93790,FRESNO,CA,36.785,-119.8345,FRESNO 93791,FRESNO,CA,36.785,-119.8345,FRESNO 93792,FRESNO,CA,36.785,-119.8345,FRESNO 93793,FRESNO,CA,36.785,-119.8345,FRESNO 93794,FRESNO,CA,36.785,-119.8345,FRESNO 93844,FRESNO,CA,36.7387,-119.8046,FRESNO 93888,FRESNO,CA,36.7387,-119.8046,FRESNO 93901,SALINAS,CA,36.667693,-121.659589,MONTEREY 93902,SALINAS,CA,36.7758,-121.6562,MONTEREY 93905,SALINAS,CA,36.681143,-121.617606,MONTEREY 93906,SALINAS,CA,36.710339,-121.643805,MONTEREY 93907,SALINAS,CA,36.765385,-121.665588,MONTEREY 93908,SALINAS,CA,36.601122,-121.672861,MONTEREY 93912,SALINAS,CA,36.6964,-121.6688,MONTEREY 93915,SALINAS,CA,36.6665,-121.6269,MONTEREY 94035,MOUNTAIN VIEW,CA,37.41001,-122.051944,SANTA CLARA 94039,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94040,MOUNTAIN VIEW,CA,37.385532,-122.087983,SANTA CLARA 94041,MOUNTAIN VIEW,CA,37.389347,-122.078341,SANTA CLARA 94042,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94043,MOUNTAIN VIEW,CA,37.405567,-122.077468,SANTA CLARA 94101,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94102,SAN FRANCISCO,CA,37.781334,-122.416728,SAN FRANCISCO 94103,SAN FRANCISCO,CA,37.77254,-122.414664,SAN FRANCISCO 94104,SAN FRANCISCO,CA,37.791487,-122.401826,SAN FRANCISCO 94105,SAN FRANCISCO,CA,37.786427,-122.389229,SAN FRANCISCO 94106,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94107,SAN FRANCISCO,CA,37.762147,-122.397099,SAN FRANCISCO 94108,SAN FRANCISCO,CA,37.792931,-122.40791,SAN FRANCISCO 94109,SAN FRANCISCO,CA,37.791687,-122.418579,SAN FRANCISCO 94110,SAN FRANCISCO,CA,37.750858,-122.415344,SAN FRANCISCO 94111,SAN FRANCISCO,CA,37.797376,-122.400147,SAN FRANCISCO 94112,SAN FRANCISCO,CA,37.71954,-122.441081,SAN FRANCISCO 94114,SAN FRANCISCO,CA,37.758716,-122.432977,SAN FRANCISCO 94115,SAN FRANCISCO,CA,37.785607,-122.435835,SAN FRANCISCO 94116,SAN FRANCISCO,CA,37.744144,-122.486296,SAN FRANCISCO 94117,SAN FRANCISCO,CA,37.771234,-122.441272,SAN FRANCISCO 94118,SAN FRANCISCO,CA,37.781174,-122.461414,SAN FRANCISCO 94119,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94120,SAN FRANCISCO,CA,37.793,-122.4012,SAN FRANCISCO 94121,SAN FRANCISCO,CA,37.778616,-122.489178,SAN FRANCISCO 94122,SAN FRANCISCO,CA,37.759326,-122.483647,SAN FRANCISCO 94123,SAN FRANCISCO,CA,37.799865,-122.434163,SAN FRANCISCO 94124,SAN FRANCISCO,CA,37.730888,-122.388649,SAN FRANCISCO 94125,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94126,SAN FRANCISCO,CA,37.795,-122.3933,SAN FRANCISCO 94127,SAN FRANCISCO,CA,37.735385,-122.457116,SAN FRANCISCO 94128,SAN FRANCISCO,CA,37.621944,-122.381944,SAN MATEO 94129,SAN FRANCISCO,CA,37.800507,-122.464958,SAN FRANCISCO 94130,SAN FRANCISCO,CA,37.823128,-122.369319,SAN FRANCISCO 94131,SAN FRANCISCO,CA,37.745032,-122.438335,SAN FRANCISCO 94132,SAN FRANCISCO,CA,37.721118,-122.47545,SAN FRANCISCO 94133,SAN FRANCISCO,CA,37.800175,-122.409081,SAN FRANCISCO 94134,SAN FRANCISCO,CA,37.718968,-122.409577,SAN FRANCISCO 94135,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94136,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94137,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94138,SAN FRANCISCO,CA,37.7917,-122.4007,SAN FRANCISCO 94139,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94140,SAN FRANCISCO,CA,37.7555,-122.4153,SAN FRANCISCO 94141,SAN FRANCISCO,CA,37.7667,-122.4097,SAN FRANCISCO 94142,SAN FRANCISCO,CA,37.7819,-122.4146,SAN FRANCISCO 94143,SAN FRANCISCO,CA,37.7631,-122.4591,SAN FRANCISCO 94144,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94145,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94146,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94147,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94150,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94151,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94152,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94153,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94154,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94155,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94156,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94158,SAN FRANCISCO,CA,37.7705,-122.3926,SAN FRANCISCO 94159,SAN FRANCISCO,CA,37.7814,-122.4524,SAN FRANCISCO 94160,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94161,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94162,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94163,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94164,SAN FRANCISCO,CA,37.789,-122.4206,SAN FRANCISCO 94171,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94172,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94175,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94177,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94188,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94199,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94203,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94204,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94205,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94206,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94207,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94208,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94209,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94211,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94229,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94230,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94232,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94234,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94235,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94236,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94237,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94239,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94240,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94244,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94245,SACRAMENTO,CA,38.5599,-121.4841,SACRAMENTO 94246,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94247,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94248,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94249,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94250,SACRAMENTO,CA,38.5658,-121.4671,SACRAMENTO 94252,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94254,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94256,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94257,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94258,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94259,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94261,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94262,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94263,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94267,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94268,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94269,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94271,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94273,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94274,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94277,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94278,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94279,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94280,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94282,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94283,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94284,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94285,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94286,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94287,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94288,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94289,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94290,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94291,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94293,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94294,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94295,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94296,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94297,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94298,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94299,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94301,PALO ALTO,CA,37.444324,-122.149685,SANTA CLARA 94302,PALO ALTO,CA,37.441944,-122.141944,SANTA CLARA 94303,PALO ALTO,CA,37.455641,-122.131902,SANTA CLARA 94304,PALO ALTO,CA,37.433424,-122.184234,SANTA CLARA 94306,PALO ALTO,CA,37.418009,-122.127375,SANTA CLARA 94309,PALO ALTO,CA,37.424167,-122.165,SANTA CLARA 94518,CONCORD,CA,37.950434,-122.026296,CONTRA COSTA 94519,CONCORD,CA,37.984082,-122.011948,CONTRA COSTA 94520,CONCORD,CA,37.982259,-122.036178,CONTRA COSTA 94521,CONCORD,CA,37.957503,-121.974955,CONTRA COSTA 94522,CONCORD,CA,37.9857,-122.0357,CONTRA COSTA 94524,CONCORD,CA,37.9769,-122.0561,CONTRA COSTA 94527,CONCORD,CA,37.978,-122.0557,CONTRA COSTA 94529,CONCORD,CA,37.978,-122.03,CONTRA COSTA 94540,HAYWARD,CA,37.6564,-122.0957,ALAMEDA 94541,HAYWARD,CA,37.674048,-122.089418,ALAMEDA 94542,HAYWARD,CA,37.658566,-122.047236,ALAMEDA 94543,HAYWARD,CA,37.6707,-122.0827,ALAMEDA 94544,HAYWARD,CA,37.637443,-122.067029,ALAMEDA 94545,HAYWARD,CA,37.633245,-122.0971,ALAMEDA 94557,HAYWARD,CA,37.6335,-122.0961,ALAMEDA 94601,OAKLAND,CA,37.780595,-122.216587,ALAMEDA 94602,OAKLAND,CA,37.801133,-122.210368,ALAMEDA 94603,OAKLAND,CA,37.740239,-122.171017,ALAMEDA 94604,OAKLAND,CA,37.8018,-122.2652,ALAMEDA 94605,OAKLAND,CA,37.764132,-122.163326,ALAMEDA 94606,OAKLAND,CA,37.79565,-122.24292,ALAMEDA 94607,OAKLAND,CA,37.807084,-122.285051,ALAMEDA 94609,OAKLAND,CA,37.836096,-122.26367,ALAMEDA 94610,OAKLAND,CA,37.812636,-122.244322,ALAMEDA 94611,OAKLAND,CA,37.828157,-122.22683,ALAMEDA 94612,OAKLAND,CA,37.808473,-122.266774,ALAMEDA 94613,OAKLAND,CA,37.782427,-122.181585,ALAMEDA 94614,OAKLAND,CA,37.7209,-122.2154,ALAMEDA 94615,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94617,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94618,OAKLAND,CA,37.84368,-122.24191,ALAMEDA 94619,OAKLAND,CA,37.787786,-122.18838,ALAMEDA 94621,OAKLAND,CA,37.758924,-122.185335,ALAMEDA 94622,OAKLAND,CA,37.7417,-122.192,ALAMEDA 94623,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94624,OAKLAND,CA,37.7478,-122.1725,ALAMEDA 94625,OAKLAND,CA,37.8045,-122.3198,ALAMEDA 94649,OAKLAND,CA,37.827,-122.2998,ALAMEDA 94659,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94660,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94661,OAKLAND,CA,37.8285,-122.2094,ALAMEDA 94666,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94701,BERKELEY,CA,37.8691,-122.2696,ALAMEDA 94702,BERKELEY,CA,37.865611,-122.285126,ALAMEDA 94703,BERKELEY,CA,37.863028,-122.274914,ALAMEDA 94704,BERKELEY,CA,37.866428,-122.257048,ALAMEDA 94705,BERKELEY,CA,37.85711,-122.249964,ALAMEDA 94707,BERKELEY,CA,37.893118,-122.276517,ALAMEDA 94708,BERKELEY,CA,37.890829,-122.25976,ALAMEDA 94709,BERKELEY,CA,37.878397,-122.265461,ALAMEDA 94710,BERKELEY,CA,37.869603,-122.295929,ALAMEDA 94712,BERKELEY,CA,37.8693,-122.268,ALAMEDA 94720,BERKELEY,CA,37.8719,-122.2591,ALAMEDA 94801,RICHMOND,CA,37.940039,-122.36201,CONTRA COSTA 94802,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94804,RICHMOND,CA,37.926523,-122.33421,CONTRA COSTA 94805,RICHMOND,CA,37.941719,-122.323756,CONTRA COSTA 94807,RICHMOND,CA,37.9271,-122.384,CONTRA COSTA 94808,RICHMOND,CA,37.9338,-122.3432,CONTRA COSTA 94850,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94952,PETALUMA,CA,38.240349,-122.677727,SONOMA 94953,PETALUMA,CA,38.3221,-122.6441,SONOMA 94954,PETALUMA,CA,38.250739,-122.615536,SONOMA 94955,PETALUMA,CA,38.2325,-122.6355,SONOMA 94975,PETALUMA,CA,38.3221,-122.6441,SONOMA 94999,PETALUMA,CA,38.3221,-122.6441,SONOMA 95050,SANTA CLARA,CA,37.34732,-121.954079,SANTA CLARA 95051,SANTA CLARA,CA,37.346992,-121.983848,SANTA CLARA 95052,SANTA CLARA,CA,37.3522,-121.9583,SANTA CLARA 95053,SANTA CLARA,CA,37.3473,-121.9328,SANTA CLARA 95054,SANTA CLARA,CA,37.394673,-121.95394,SANTA CLARA 95055,SANTA CLARA,CA,37.3451,-121.9769,SANTA CLARA 95056,SANTA CLARA,CA,37.3997,-121.9608,SANTA CLARA 95060,SANTA CRUZ,CA,36.982946,-122.043612,SANTA CRUZ 95061,SANTA CRUZ,CA,37.063,-122.162,SANTA CRUZ 95062,SANTA CRUZ,CA,36.972101,-121.988055,SANTA CRUZ 95063,SANTA CRUZ,CA,36.9792,-122.0088,SANTA CRUZ 95064,SANTA CRUZ,CA,36.995851,-122.057803,SANTA CRUZ 95065,SANTA CRUZ,CA,37.003319,-121.982557,SANTA CRUZ 95101,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95103,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95106,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95108,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95109,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95110,SAN JOSE,CA,37.32966,-121.890299,SANTA CLARA 95111,SAN JOSE,CA,37.282276,-121.824038,SANTA CLARA 95112,SAN JOSE,CA,37.341388,-121.880414,SANTA CLARA 95113,SAN JOSE,CA,37.335188,-121.887227,SANTA CLARA 95115,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95116,SAN JOSE,CA,37.351342,-121.850221,SANTA CLARA 95117,SAN JOSE,CA,37.308896,-121.962126,SANTA CLARA 95118,SAN JOSE,CA,37.256162,-121.889845,SANTA CLARA 95119,SAN JOSE,CA,37.230135,-121.790067,SANTA CLARA 95120,SAN JOSE,CA,37.217538,-121.861547,SANTA CLARA 95121,SAN JOSE,CA,37.30593,-121.811939,SANTA CLARA 95122,SAN JOSE,CA,37.329313,-121.833949,SANTA CLARA 95123,SAN JOSE,CA,37.244594,-121.830502,SANTA CLARA 95124,SAN JOSE,CA,37.256844,-121.920831,SANTA CLARA 95125,SAN JOSE,CA,37.296187,-121.895476,SANTA CLARA 95126,SAN JOSE,CA,37.322482,-121.917398,SANTA CLARA 95127,SAN JOSE,CA,37.3664,-121.819516,SANTA CLARA 95128,SAN JOSE,CA,37.314657,-121.934364,SANTA CLARA 95129,SAN JOSE,CA,37.306537,-122.000494,SANTA CLARA 95130,SAN JOSE,CA,37.288628,-121.979182,SANTA CLARA 95131,SAN JOSE,CA,37.386368,-121.879977,SANTA CLARA 95132,SAN JOSE,CA,37.40408,-121.860336,SANTA CLARA 95133,SAN JOSE,CA,37.372875,-121.855959,SANTA CLARA 95134,SAN JOSE,CA,37.413999,-121.943399,SANTA CLARA 95135,SAN JOSE,CA,37.297539,-121.757228,SANTA CLARA 95136,SAN JOSE,CA,37.268423,-121.847625,SANTA CLARA 95138,SAN JOSE,CA,37.246259,-121.778641,SANTA CLARA 95139,SAN JOSE,CA,37.225162,-121.766867,SANTA CLARA 95141,SAN JOSE,CA,37.169912,-121.755808,SANTA CLARA 95148,SAN JOSE,CA,37.329765,-121.792111,SANTA CLARA 95150,SAN JOSE,CA,37.3866,-121.897,SANTA CLARA 95151,SAN JOSE,CA,37.3198,-121.8262,SANTA CLARA 95152,SAN JOSE,CA,37.4022,-121.847,SANTA CLARA 95153,SAN JOSE,CA,37.2488,-121.8459,SANTA CLARA 95154,SAN JOSE,CA,37.2649,-121.9139,SANTA CLARA 95155,SAN JOSE,CA,37.31,-121.9011,SANTA CLARA 95156,SAN JOSE,CA,37.3576,-121.8416,SANTA CLARA 95157,SAN JOSE,CA,37.3008,-121.9777,SANTA CLARA 95158,SAN JOSE,CA,37.2625,-121.8779,SANTA CLARA 95159,SAN JOSE,CA,37.3179,-121.9349,SANTA CLARA 95160,SAN JOSE,CA,37.2187,-121.8601,SANTA CLARA 95161,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95164,SAN JOSE,CA,37.3916,-121.9203,SANTA CLARA 95170,SAN JOSE,CA,37.3103,-122.0093,SANTA CLARA 95172,SAN JOSE,CA,37.334,-121.8847,SANTA CLARA 95173,SAN JOSE,CA,37.3352,-121.8938,SANTA CLARA 95190,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95191,SAN JOSE,CA,37.3262,-121.9158,SANTA CLARA 95192,SAN JOSE,CA,37.3383,-121.8801,SANTA CLARA 95193,SAN JOSE,CA,37.2441,-121.8287,SANTA CLARA 95194,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95196,SAN JOSE,CA,37.3338,-121.8894,SANTA CLARA 95201,STOCKTON,CA,37.958,-121.2876,SAN JOAQUIN 95202,STOCKTON,CA,37.960632,-121.287087,SAN JOAQUIN 95203,STOCKTON,CA,37.956515,-121.307688,SAN JOAQUIN 95204,STOCKTON,CA,37.974302,-121.315364,SAN JOAQUIN 95205,STOCKTON,CA,37.960986,-121.259241,SAN JOAQUIN 95206,STOCKTON,CA,37.931643,-121.287169,SAN JOAQUIN 95207,STOCKTON,CA,38.002025,-121.32056,SAN JOAQUIN 95208,STOCKTON,CA,37.9304,-121.436,SAN JOAQUIN 95209,STOCKTON,CA,38.033105,-121.343292,SAN JOAQUIN 95210,STOCKTON,CA,38.024997,-121.297229,SAN JOAQUIN 95211,STOCKTON,CA,37.980364,-121.310336,SAN JOAQUIN 95212,STOCKTON,CA,38.034428,-121.246018,SAN JOAQUIN 95213,STOCKTON,CA,37.9054,-121.2222,SAN JOAQUIN 95215,STOCKTON,CA,37.968545,-121.215295,SAN JOAQUIN 95219,STOCKTON,CA,38.010233,-121.363712,SAN JOAQUIN 95267,STOCKTON,CA,38.0003,-121.3174,SAN JOAQUIN 95269,STOCKTON,CA,38.0187,-121.3225,SAN JOAQUIN 95296,STOCKTON,CA,37.715833,-121.380556,SAN JOAQUIN 95297,STOCKTON,CA,38.0025,-121.324,SAN JOAQUIN 95350,MODESTO,CA,37.674649,-121.011303,STANISLAUS 95351,MODESTO,CA,37.625022,-121.006033,STANISLAUS 95352,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95353,MODESTO,CA,37.6424,-120.9999,STANISLAUS 95354,MODESTO,CA,37.644526,-120.968323,STANISLAUS 95355,MODESTO,CA,37.673515,-120.954658,STANISLAUS 95356,MODESTO,CA,37.699431,-121.027051,STANISLAUS 95357,MODESTO,CA,37.6635,-120.9186,STANISLAUS 95358,MODESTO,CA,37.622,-121.0453,STANISLAUS 95397,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95401,SANTA ROSA,CA,38.443123,-122.751722,SONOMA 95402,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95403,SANTA ROSA,CA,38.477273,-122.748528,SONOMA 95404,SANTA ROSA,CA,38.449556,-122.689524,SONOMA 95405,SANTA ROSA,CA,38.438279,-122.66988,SONOMA 95406,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95407,SANTA ROSA,CA,38.410462,-122.727896,SONOMA 95409,SANTA ROSA,CA,38.461242,-122.642125,SONOMA 95811,SACRAMENTO,CA,38.5815719,-121.4943996,SACRAMENTO 95812,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 95813,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95814,SACRAMENTO,CA,38.579792,-121.489404,SACRAMENTO 95815,SACRAMENTO,CA,38.613303,-121.443543,SACRAMENTO 95816,SACRAMENTO,CA,38.572788,-121.46753,SACRAMENTO 95817,SACRAMENTO,CA,38.549785,-121.458324,SACRAMENTO 95818,SACRAMENTO,CA,38.556778,-121.492884,SACRAMENTO 95819,SACRAMENTO,CA,38.568293,-121.436634,SACRAMENTO 95820,SACRAMENTO,CA,38.534694,-121.445139,SACRAMENTO 95821,SACRAMENTO,CA,38.623889,-121.383807,SACRAMENTO 95822,SACRAMENTO,CA,38.509139,-121.493541,SACRAMENTO 95823,SACRAMENTO,CA,38.479711,-121.443846,SACRAMENTO 95824,SACRAMENTO,CA,38.517843,-121.441883,SACRAMENTO 95825,SACRAMENTO,CA,38.589226,-121.405677,SACRAMENTO 95826,SACRAMENTO,CA,38.553868,-121.369265,SACRAMENTO 95827,SACRAMENTO,CA,38.56623,-121.328593,SACRAMENTO 95828,SACRAMENTO,CA,38.483718,-121.401504,SACRAMENTO 95829,SACRAMENTO,CA,38.472564,-121.346631,SACRAMENTO 95830,SACRAMENTO,CA,38.476556,-121.281453,SACRAMENTO 95831,SACRAMENTO,CA,38.496226,-121.529661,SACRAMENTO 95832,SACRAMENTO,CA,38.475387,-121.482967,SACRAMENTO 95833,SACRAMENTO,CA,38.616993,-121.494487,SACRAMENTO 95834,SACRAMENTO,CA,38.633418,-121.492052,SACRAMENTO 95835,SACRAMENTO,CA,38.662595,-121.483444,SACRAMENTO 95836,SACRAMENTO,CA,38.707346,-121.532259,SACRAMENTO 95837,SACRAMENTO,CA,38.681726,-121.60297,SACRAMENTO 95838,SACRAMENTO,CA,38.640566,-121.44396,SACRAMENTO 95840,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95841,SACRAMENTO,CA,38.662699,-121.340608,SACRAMENTO 95842,SACRAMENTO,CA,38.687385,-121.35046,SACRAMENTO 95851,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95852,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95853,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95860,SACRAMENTO,CA,38.6105,-121.3799,SACRAMENTO 95864,SACRAMENTO,CA,38.587768,-121.376889,SACRAMENTO 95865,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95866,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95867,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95887,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95894,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95899,SACRAMENTO,CA,38.5383,-121.5549,SACRAMENTO 95926,CHICO,CA,39.756466,-121.851806,BUTTE 95927,CHICO,CA,39.8117,-121.9398,BUTTE 95928,CHICO,CA,39.729523,-121.81555,BUTTE 95929,CHICO,CA,39.7301,-121.8414,BUTTE 95973,CHICO,CA,39.925556,-121.73,BUTTE 95976,CHICO,CA,39.7346,-121.8331,BUTTE 96150,SOUTH LAKE TAHOE,CA,38.916976,-119.986469,EL DORADO 96151,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96152,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96154,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96155,SOUTH LAKE TAHOE,CA,39.0166,-120.1229,EL DORADO 96156,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96157,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96158,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96801,HONOLULU,HI,21.3095,-157.863,HONOLULU 96802,HONOLULU,HI,21.3095,-157.863,HONOLULU 96803,HONOLULU,HI,21.3095,-157.863,HONOLULU 96804,HONOLULU,HI,21.3095,-157.863,HONOLULU 96805,HONOLULU,HI,21.3095,-157.863,HONOLULU 96806,HONOLULU,HI,21.3095,-157.863,HONOLULU 96807,HONOLULU,HI,21.3095,-157.863,HONOLULU 96808,HONOLULU,HI,21.3095,-157.863,HONOLULU 96809,HONOLULU,HI,21.3095,-157.863,HONOLULU 96810,HONOLULU,HI,21.3095,-157.863,HONOLULU 96811,HONOLULU,HI,21.3095,-157.863,HONOLULU 96812,HONOLULU,HI,21.3095,-157.863,HONOLULU 96813,HONOLULU,HI,21.317905,-157.852072,HONOLULU 96814,HONOLULU,HI,21.299846,-157.843876,HONOLULU 96815,HONOLULU,HI,21.281084,-157.826616,HONOLULU 96816,HONOLULU,HI,21.288677,-157.800626,HONOLULU 96817,HONOLULU,HI,21.329452,-157.861469,HONOLULU 96818,HONOLULU,HI,21.353173,-157.926925,HONOLULU 96819,HONOLULU,HI,21.34877,-157.875947,HONOLULU 96820,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96821,HONOLULU,HI,21.292811,-157.755242,HONOLULU 96822,HONOLULU,HI,21.311704,-157.829819,HONOLULU 96823,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96824,HONOLULU,HI,21.2808,-157.7552,HONOLULU 96825,HONOLULU,HI,21.298684,-157.698523,HONOLULU 96826,HONOLULU,HI,21.294139,-157.828388,HONOLULU 96827,HONOLULU,HI,21.3172,-157.8643,HONOLULU 96828,HONOLULU,HI,21.294,-157.8226,HONOLULU 96830,HONOLULU,HI,21.2841,-157.8341,HONOLULU 96835,HONOLULU,HI,21.3509,-157.8794,HONOLULU 96836,HONOLULU,HI,21.2899,-157.8384,HONOLULU 96837,HONOLULU,HI,21.315,-157.8633,HONOLULU 96838,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96839,HONOLULU,HI,21.3107,-157.812,HONOLULU 96840,HONOLULU,HI,21.3095,-157.863,HONOLULU 96841,HONOLULU,HI,21.3095,-157.863,HONOLULU 96843,HONOLULU,HI,21.3095,-157.863,HONOLULU 96844,HONOLULU,HI,21.2981,-157.8189,HONOLULU 96846,HONOLULU,HI,21.3095,-157.863,HONOLULU 96847,HONOLULU,HI,21.3095,-157.863,HONOLULU 96848,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96849,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96850,HONOLULU,HI,21.3095,-157.863,HONOLULU 97005,BEAVERTON,OR,45.475035,-122.805395,WASHINGTON 97006,BEAVERTON,OR,45.517675,-122.859209,WASHINGTON 97007,BEAVERTON,OR,45.472985,-122.859473,WASHINGTON 97008,BEAVERTON,OR,45.4614,-122.8062,WASHINGTON 97075,BEAVERTON,OR,45.4861,-122.8004,WASHINGTON 97076,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97077,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97078,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97201,PORTLAND,OR,45.498819,-122.690258,MULTNOMAH 97202,PORTLAND,OR,45.484007,-122.636534,MULTNOMAH 97203,PORTLAND,OR,45.588872,-122.734699,MULTNOMAH 97204,PORTLAND,OR,45.51807,-122.674498,MULTNOMAH 97205,PORTLAND,OR,45.52072,-122.688846,MULTNOMAH 97206,PORTLAND,OR,45.483995,-122.59727,MULTNOMAH 97207,PORTLAND,OR,45.5136,-122.6801,MULTNOMAH 97208,PORTLAND,OR,45.5273,-122.6786,MULTNOMAH 97209,PORTLAND,OR,45.526962,-122.685447,MULTNOMAH 97210,PORTLAND,OR,45.530318,-122.703348,MULTNOMAH 97211,PORTLAND,OR,45.565259,-122.644815,MULTNOMAH 97212,PORTLAND,OR,45.544127,-122.642319,MULTNOMAH 97213,PORTLAND,OR,45.537292,-122.59867,MULTNOMAH 97214,PORTLAND,OR,45.514207,-122.636397,MULTNOMAH 97215,PORTLAND,OR,45.514282,-122.599001,MULTNOMAH 97216,PORTLAND,OR,45.513746,-122.55688,MULTNOMAH 97217,PORTLAND,OR,45.57424,-122.684196,MULTNOMAH 97218,PORTLAND,OR,45.560032,-122.600131,MULTNOMAH 97219,PORTLAND,OR,45.457956,-122.70738,MULTNOMAH 97220,PORTLAND,OR,45.541109,-122.556586,MULTNOMAH 97221,PORTLAND,OR,45.491829,-122.726723,MULTNOMAH 97222,PORTLAND,OR,45.442919,-122.615092,CLACKAMAS 97223,PORTLAND,OR,45.443343,-122.775974,WASHINGTON 97224,PORTLAND,OR,45.407292,-122.788379,WASHINGTON 97225,PORTLAND,OR,45.500449,-122.768344,WASHINGTON 97227,PORTLAND,OR,45.549564,-122.674257,MULTNOMAH 97228,PORTLAND,OR,45.5275,-122.6764,MULTNOMAH 97229,PORTLAND,OR,45.541087,-122.829924,WASHINGTON 97230,PORTLAND,OR,45.535753,-122.500343,MULTNOMAH 97231,PORTLAND,OR,45.640124,-122.838032,MULTNOMAH 97232,PORTLAND,OR,45.528712,-122.63631,MULTNOMAH 97233,PORTLAND,OR,45.514206,-122.498493,MULTNOMAH 97236,PORTLAND,OR,45.488748,-122.509091,MULTNOMAH 97238,PORTLAND,OR,45.5849,-122.5804,MULTNOMAH 97239,PORTLAND,OR,45.489,-122.6881,MULTNOMAH 97240,PORTLAND,OR,45.522,-122.6741,MULTNOMAH 97242,PORTLAND,OR,45.5003,-122.6495,MULTNOMAH 97251,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97253,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97254,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97255,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97256,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97258,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97259,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97266,PORTLAND,OR,45.476207,-122.559607,MULTNOMAH 97267,PORTLAND,OR,45.407494,-122.610631,CLACKAMAS 97268,PORTLAND,OR,45.4012,-122.6203,CLACKAMAS 97269,PORTLAND,OR,45.4416,-122.6392,CLACKAMAS 97271,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97272,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97280,PORTLAND,OR,45.4685,-122.7164,MULTNOMAH 97281,PORTLAND,OR,45.431,-122.769,WASHINGTON 97282,PORTLAND,OR,45.474,-122.6488,MULTNOMAH 97283,PORTLAND,OR,45.5888,-122.7525,MULTNOMAH 97286,PORTLAND,OR,45.4966,-122.6091,MULTNOMAH 97290,PORTLAND,OR,45.5761,-122.6436,MULTNOMAH 97291,PORTLAND,OR,45.5623,-122.8316,WASHINGTON 97292,PORTLAND,OR,45.5164,-122.5359,MULTNOMAH 97293,PORTLAND,OR,45.5155,-122.6569,MULTNOMAH 97294,PORTLAND,OR,45.5519,-122.5357,MULTNOMAH 97296,PORTLAND,OR,45.5359,-122.6559,MULTNOMAH 97298,PORTLAND,OR,45.4968,-122.7658,WASHINGTON 97299,PORTLAND,OR,45.5402,-122.6106,MULTNOMAH 97301,SALEM,OR,44.926039,-122.979692,MARION 97302,SALEM,OR,44.903899,-123.044514,MARION 97303,SALEM,OR,44.985794,-123.019015,MARION 97304,SALEM,OR,44.958846,-123.075323,POLK 97305,SALEM,OR,44.982502,-122.966892,MARION 97306,SALEM,OR,44.8685,-123.043789,MARION 97308,SALEM,OR,44.943,-123.0338,MARION 97309,SALEM,OR,44.9253,-123.0091,MARION 97310,SALEM,OR,44.9406,-123.0054,MARION 97311,SALEM,OR,44.943,-123.0338,MARION 97312,SALEM,OR,44.9371,-123.0385,MARION 97313,SALEM,OR,45.0306,-123.0256,MARION 97314,SALEM,OR,45.0306,-123.0256,MARION 97317,SALEM,OR,44.9036,-122.9466,MARION 97401,EUGENE,OR,44.073677,-123.078757,LANE 97402,EUGENE,OR,44.061243,-123.155525,LANE 97403,EUGENE,OR,44.038534,-123.061422,LANE 97404,EUGENE,OR,44.100536,-123.13336,LANE 97405,EUGENE,OR,44.018497,-123.099769,LANE 97408,EUGENE,OR,44.1129,-123.0711,LANE 97440,EUGENE,OR,44.0541,-123.092,LANE 98004,BELLEVUE,WA,47.619899,-122.207371,KING 98005,BELLEVUE,WA,47.614961,-122.166288,KING 98006,BELLEVUE,WA,47.561425,-122.155179,KING 98007,BELLEVUE,WA,47.617443,-122.142572,KING 98008,BELLEVUE,WA,47.611468,-122.116173,KING 98009,BELLEVUE,WA,47.6105,-122.1994,KING 98015,BELLEVUE,WA,47.6122,-122.1862,KING 98030,KENT,WA,47.3695,-122.1949,KING 98031,KENT,WA,47.388004,-122.193184,KING 98032,KENT,WA,47.377633,-122.285362,KING 98035,KENT,WA,47.3808,-122.2346,KING 98042,KENT,WA,47.368044,-122.120615,KING 98064,KENT,WA,47.3873,-122.1983,KING 98089,KENT,WA,47.3811,-122.2336,KING 98101,SEATTLE,WA,47.611435,-122.330456,KING 98102,SEATTLE,WA,47.63025,-122.320993,KING 98103,SEATTLE,WA,47.67335,-122.342621,KING 98104,SEATTLE,WA,47.603631,-122.325644,KING 98105,SEATTLE,WA,47.663266,-122.302236,KING 98106,SEATTLE,WA,47.534362,-122.354688,KING 98107,SEATTLE,WA,47.67012,-122.37626,KING 98108,SEATTLE,WA,47.547448,-122.306823,KING 98109,SEATTLE,WA,47.633875,-122.347615,KING 98111,SEATTLE,WA,47.609,-122.3351,KING 98112,SEATTLE,WA,47.630115,-122.297157,KING 98113,SEATTLE,WA,47.6064,-122.3308,KING 98114,SEATTLE,WA,47.6036,-122.3258,KING 98115,SEATTLE,WA,47.684918,-122.296828,KING 98116,SEATTLE,WA,47.574591,-122.393445,KING 98117,SEATTLE,WA,47.687263,-122.377223,KING 98118,SEATTLE,WA,47.541234,-122.275021,KING 98119,SEATTLE,WA,47.637917,-122.364272,KING 98121,SEATTLE,WA,47.615135,-122.344696,KING 98122,SEATTLE,WA,47.611633,-122.305608,KING 98124,SEATTLE,WA,47.6063,-122.3308,KING 98125,SEATTLE,WA,47.717002,-122.301546,KING 98126,SEATTLE,WA,47.544361,-122.373458,KING 98127,SEATTLE,WA,47.6064,-122.3308,KING 98129,SEATTLE,WA,47.6063,-122.3308,KING 98131,SEATTLE,WA,47.6063,-122.3308,KING 98132,SEATTLE,WA,47.6063,-122.3308,KING 98133,SEATTLE,WA,47.737717,-122.343132,KING 98134,SEATTLE,WA,47.590276,-122.326346,KING 98136,SEATTLE,WA,47.539769,-122.387768,KING 98138,SEATTLE,WA,47.4572,-122.2529,KING 98139,SEATTLE,WA,47.6064,-122.3308,KING 98141,SEATTLE,WA,47.6064,-122.3308,KING 98144,SEATTLE,WA,47.584624,-122.300457,KING 98145,SEATTLE,WA,47.6591,-122.3115,KING 98146,SEATTLE,WA,47.501069,-122.353989,KING 98148,SEATTLE,WA,47.450209,-122.326112,KING 98151,SEATTLE,WA,47.6063,-122.3308,KING 98154,SEATTLE,WA,47.6036,-122.3258,KING 98155,SEATTLE,WA,47.758161,-122.296305,KING 98158,SEATTLE,WA,47.442739,-122.318454,KING 98160,SEATTLE,WA,47.7654,-122.3614,KING 98161,SEATTLE,WA,47.609,-122.3351,KING 98164,SEATTLE,WA,47.6036,-122.3258,KING 98165,SEATTLE,WA,47.6064,-122.3308,KING 98166,SEATTLE,WA,47.455052,-122.347392,KING 98168,SEATTLE,WA,47.48851,-122.302376,KING 98170,SEATTLE,WA,47.6064,-122.3308,KING 98171,SEATTLE,WA,47.609,-122.3351,KING 98174,SEATTLE,WA,47.6036,-122.3258,KING 98175,SEATTLE,WA,47.6064,-122.3308,KING 98177,SEATTLE,WA,47.746678,-122.368585,KING 98178,SEATTLE,WA,47.499489,-122.247366,KING 98181,SEATTLE,WA,47.6063,-122.3308,KING 98184,SEATTLE,WA,47.6063,-122.3308,KING 98185,SEATTLE,WA,47.6641,-122.2941,KING 98188,SEATTLE,WA,47.449808,-122.281159,KING 98190,SEATTLE,WA,47.6064,-122.3308,KING 98191,SEATTLE,WA,47.6063,-122.3308,KING 98194,SEATTLE,WA,47.6064,-122.3308,KING 98195,SEATTLE,WA,47.6518,-122.3101,KING 98198,SEATTLE,WA,47.407286,-122.309559,KING 98199,SEATTLE,WA,47.648845,-122.396357,KING 98201,EVERETT,WA,47.988431,-122.200571,SNOHOMISH 98203,EVERETT,WA,47.941937,-122.221846,SNOHOMISH 98204,EVERETT,WA,47.901659,-122.247217,SNOHOMISH 98205,EVERETT,WA,47.990065,-122.115759,SNOHOMISH 98206,EVERETT,WA,47.9763,-122.2088,SNOHOMISH 98207,EVERETT,WA,47.9988,-122.188,SNOHOMISH 98208,EVERETT,WA,47.894822,-122.198722,SNOHOMISH 98213,EVERETT,WA,47.9792,-122.2008,SNOHOMISH 98401,TACOMA,WA,47.2764,-122.7583,PIERCE 98402,TACOMA,WA,47.254508,-122.440536,PIERCE 98403,TACOMA,WA,47.26428,-122.457538,PIERCE 98404,TACOMA,WA,47.211312,-122.412625,PIERCE 98405,TACOMA,WA,47.248351,-122.46435,PIERCE 98406,TACOMA,WA,47.26325,-122.499349,PIERCE 98407,TACOMA,WA,47.282479,-122.503881,PIERCE 98408,TACOMA,WA,47.207267,-122.444381,PIERCE 98409,TACOMA,WA,47.20381,-122.482503,PIERCE 98411,TACOMA,WA,47.2215,-122.4717,PIERCE 98412,TACOMA,WA,47.1826,-122.4402,PIERCE 98413,TACOMA,WA,47.253,-122.443,PIERCE 98415,TACOMA,WA,47.253,-122.443,PIERCE 98416,TACOMA,WA,47.2633,-122.4803,PIERCE 98417,TACOMA,WA,47.1663,-12.2378,PIERCE 98418,TACOMA,WA,47.2242,-122.4473,PIERCE 98419,TACOMA,WA,47.1663,-12.2378,PIERCE 98421,TACOMA,WA,47.266373,-122.401457,PIERCE 98422,TACOMA,WA,47.294805,-122.398349,PIERCE 98424,TACOMA,WA,47.243632,-122.350962,PIERCE 98431,TACOMA,WA,47.063056,-122.553333,PIERCE 98433,TACOMA,WA,47.100864,-122.583486,PIERCE 98439,LAKEWOOD,WA,47.122905,-122.529326,PIERCE 98442,TACOMA,WA,47.1461,-122.4347,PIERCE 98443,TACOMA,WA,47.204369,-122.372815,PIERCE 98444,TACOMA,WA,47.156553,-122.448842,PIERCE 98445,TACOMA,WA,47.133967,-122.411614,PIERCE 98446,TACOMA,WA,47.14041,-122.37189,PIERCE 98447,TACOMA,WA,47.1458,-122.44,PIERCE 98448,TACOMA,WA,47.1663,-12.2378,PIERCE 98450,TACOMA,WA,47.253,-122.443,PIERCE 98455,TACOMA,WA,47.253,-122.443,PIERCE 98460,TACOMA,WA,47.253,-122.443,PIERCE 98464,TACOMA,WA,47.253,-122.443,PIERCE 98465,TACOMA,WA,47.249139,-122.527272,PIERCE 98466,TACOMA,WA,47.22788,-122.53503,PIERCE 98471,TACOMA,WA,47.2551,-122.4733,PIERCE 98477,TACOMA,WA,47.253,-122.443,PIERCE 98481,TACOMA,WA,47.2208,-122.4732,PIERCE 98490,TACOMA,WA,47.1663,-12.2378,PIERCE 98492,LAKEWOOD,WA,47.123611,-122.555833,PIERCE 98493,TACOMA,WA,47.0631,-122.5536,PIERCE 98496,LAKEWOOD,WA,47.1663,-12.2378,PIERCE 98497,LAKEWOOD,WA,47.1805,-122.5465,PIERCE 98498,LAKEWOOD,WA,47.164269,-122.555357,PIERCE 98499,LAKEWOOD,WA,47.160786,-122.509074,PIERCE 98501,OLYMPIA,WA,47.012906,-122.876311,THURSTON 98502,OLYMPIA,WA,47.029828,-122.95214,THURSTON 98504,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98505,OLYMPIA,WA,47.0704,-122.9604,THURSTON 98506,OLYMPIA,WA,47.076259,-122.832844,THURSTON 98507,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98508,OLYMPIA,WA,47.0352,-122.9369,THURSTON 98512,OLYMPIA,WA,46.974,-122.9871,THURSTON 98513,OLYMPIA,WA,47.008,-122.7571,THURSTON 98516,OLYMPIA,WA,47.0833,-122.7776,THURSTON 98599,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98660,VANCOUVER,WA,45.64183,-122.68014,CLARK 98661,VANCOUVER,WA,45.641807,-122.625146,CLARK 98662,VANCOUVER,WA,45.674519,-122.576182,CLARK 98663,VANCOUVER,WA,45.6514,-122.660385,CLARK 98664,VANCOUVER,WA,45.623086,-122.576741,CLARK 98665,VANCOUVER,WA,45.68217,-122.664223,CLARK 98666,VANCOUVER,WA,45.6307,-122.6733,CLARK 98667,VANCOUVER,WA,45.6388,-122.6602,CLARK 98668,VANCOUVER,WA,45.6408,-122.6221,CLARK 98682,VANCOUVER,WA,45.664399,-122.521224,CLARK 98683,VANCOUVER,WA,45.6034,-122.5101,CLARK 98684,VANCOUVER,WA,45.617522,-122.524969,CLARK 98685,VANCOUVER,WA,45.707313,-122.682474,CLARK 98686,VANCOUVER,WA,45.712017,-122.632226,CLARK 98687,VANCOUVER,WA,45.6311,-122.518,CLARK 98901,YAKIMA,WA,46.606991,-120.477336,YAKIMA 98902,YAKIMA,WA,46.593393,-120.531084,YAKIMA 98903,YAKIMA,WA,46.5572,-120.556587,YAKIMA 98904,YAKIMA,WA,46.6022,-120.5047,YAKIMA 98907,YAKIMA,WA,46.666,-120.3543,YAKIMA 98908,YAKIMA,WA,46.605865,-120.605175,YAKIMA 98909,YAKIMA,WA,46.5708,-120.5069,YAKIMA 99201,SPOKANE,WA,47.666485,-117.436527,SPOKANE 99202,SPOKANE,WA,47.654741,-117.380972,SPOKANE 99203,SPOKANE,WA,47.629443,-117.404121,SPOKANE 99204,SPOKANE,WA,47.640682,-117.471896,SPOKANE 99205,SPOKANE,WA,47.69641,-117.439912,SPOKANE 99206,SPOKANE,WA,47.649588,-117.258126,SPOKANE 99207,SPOKANE,WA,47.697712,-117.374565,SPOKANE 99208,SPOKANE,WA,47.737434,-117.435207,SPOKANE 99209,SPOKANE,WA,47.6934,-117.4382,SPOKANE 99210,SPOKANE,WA,47.6581,-117.424,SPOKANE 99211,SPOKANE,WA,47.6588,-117.425,SPOKANE 99212,SPOKANE,WA,47.668598,-117.304853,SPOKANE 99213,SPOKANE,WA,47.6588,-117.425,SPOKANE 99214,SPOKANE,WA,47.6588,-117.425,SPOKANE 99215,SPOKANE,WA,47.6953,-117.2105,SPOKANE 99216,SPOKANE,WA,47.663389,-117.219307,SPOKANE 99217,SPOKANE,WA,47.7143,-117.3247,SPOKANE 99218,SPOKANE,WA,47.755648,-117.4146,SPOKANE 99219,SPOKANE,WA,47.6588,-117.425,SPOKANE 99220,SPOKANE,WA,47.657,-117.3859,SPOKANE 99223,SPOKANE,WA,47.61558,-117.362215,SPOKANE 99224,SPOKANE,WA,47.6319,-117.4873,SPOKANE 99228,SPOKANE,WA,47.7155,-117.4245,SPOKANE 99251,SPOKANE,WA,47.7511,-117.4176,SPOKANE 99252,SPOKANE,WA,47.6717,-117.3897,SPOKANE 99256,SPOKANE,WA,47.657,-117.3859,SPOKANE 99258,SPOKANE,WA,47.6683,-117.4028,SPOKANE 99260,SPOKANE,WA,47.657,-117.3859,SPOKANE 99299,SPOKANE,WA,47.6588,-117.425,SPOKANE 99501,ANCHORAGE,AK,61.211571,-149.876077,ANCHORAGE 99502,ANCHORAGE,AK,61.096163,-150.093943,ANCHORAGE 99503,ANCHORAGE,AK,61.189953,-149.893844,ANCHORAGE 99504,ANCHORAGE,AK,61.203696,-149.74467,ANCHORAGE 99507,ANCHORAGE,AK,61.153543,-149.828912,ANCHORAGE 99508,ANCHORAGE,AK,61.205959,-149.810085,ANCHORAGE 99509,ANCHORAGE,AK,61.1897,-149.9063,ANCHORAGE 99510,ANCHORAGE,AK,61.2199,-149.8882,ANCHORAGE 99511,ANCHORAGE,AK,61.1104,-149.8577,ANCHORAGE 99513,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99514,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99515,ANCHORAGE,AK,61.119381,-149.897401,ANCHORAGE 99516,ANCHORAGE,AK,61.10541,-149.779998,ANCHORAGE 99517,ANCHORAGE,AK,61.190136,-149.936111,ANCHORAGE 99518,ANCHORAGE,AK,61.154862,-149.886571,ANCHORAGE 99519,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99520,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99521,ANCHORAGE,AK,61.1996,-149.7314,ANCHORAGE 99522,ANCHORAGE,AK,61.1521,-149.9198,ANCHORAGE 99523,ANCHORAGE,AK,61.1682,-149.8356,ANCHORAGE 99524,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99529,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99530,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99599,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99695,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99701,FAIRBANKS,AK,64.840238,-147.710431,FAIRBANKS NORTH STAR 99706,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99707,FAIRBANKS,AK,64.8419,-147.7227,FAIRBANKS NORTH STAR 99708,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99709,FAIRBANKS,AK,64.85437,-147.846917,FAIRBANKS NORTH STAR 99710,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99711,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99712,FAIRBANKS,AK,64.910879,-147.510479,FAIRBANKS NORTH STAR 99775,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99790,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99801,JUNEAU,AK,58.362767,-134.529429,JUNEAU 99802,JUNEAU,AK,58.2997,-134.4149,JUNEAU 99803,JUNEAU,AK,58.3722,-134.5868,JUNEAU 99811,JUNEAU,AK,58.4773,-134.1549,JUNEAU 99812,JUNEAU,AK,58.2806,-134.3994,JUNEAU 99850,JUNEAU,AK,58.4773,-134.1549,JUNEAU \ No newline at end of file diff --git a/splunk_eventgen/samples/mdn.sample b/splunk_eventgen/samples/mdn.sample new file mode 100644 index 00000000..33c645bb --- /dev/null +++ b/splunk_eventgen/samples/mdn.sample @@ -0,0 +1,815 @@ +5556374832 +5559863091 +5557507373 +5554715490 +5553574320 +5553556664 +5554400219 +5556890861 +5557027750 +5557607034 +5557607034 +5555750129 +5556948686 +5557974528 +5552275314 +5553593502 +5557131993 +5557974528 +5556685507 +5559972146 +5556791445 +5556791445 +5555689490 +5554351797 +5555524026 +5554351797 +5559902928 +5557700462 +5555697044 +5557822114 +5552576124 +5552576124 +5552563627 +5559697090 +5559972146 +5555172530 +5558835506 +5553911046 +5553911046 +5555523241 +5552337761 +5558128479 +5555912195 +5553298804 +5559402954 +5557822114 +5556438360 +5559897094 +5552172942 +5553235675 +5554980675 +5558143038 +5559897465 +5558341450 +5558816449 +5558816449 +5558041235 +5557555207 +5553328482 +5555635916 +5559902928 +5556585650 +5558041235 +5558091300 +5555630768 +5552287241 +5557555207 +5555521164 +5558920996 +5555750166 +5557268571 +5554982823 +5552373863 +5554982823 +5552997923 +5556120001 +5554087740 +5555588602 +5552450005 +5553133793 +5559730494 +5555503191 +5557173544 +5552243212 +5556480338 +5553312305 +5555146289 +5556480338 +5557647981 +5554413449 +5554754883 +5554690066 +5558143038 +5559910004 +5558341450 +5552088600 +5556528711 +5553176306 +5552088600 +5556581781 +5555896510 +5554888539 +5553665199 +5555630768 +5553665199 +5552970411 +5556851965 +5557443407 +5552151677 +5558920996 +5557128051 +5557975756 +5555750166 +5559782161 +5555570461 +5556039988 +5557728712 +5555588602 +5554087740 +5553740044 +5553740044 +5557751404 +5555027890 +5555503191 +5559952550 +5559863091 +5553589476 +5553245990 +5558836762 +5558836762 +5554754883 +5555426586 +5555313257 +5559472318 +5557621778 +5554402125 +5556555960 +5557180594 +5557510869 +5558504854 +5559645866 +5557065509 +5558504854 +5552781642 +5559645866 +5555449287 +5552781642 +5556581781 +5552850129 +5556890751 +5556851965 +5557443407 +5556404243 +5552408987 +5555691525 +5554391346 +5556966188 +5552141758 +5557438596 +5554982823 +5554982823 +5554130240 +5557175702 +5556885463 +5555894233 +5555584413 +5557565865 +5557128051 +5556545078 +5559407533 +5556545078 +5559407533 +5552907674 +5552727287 +5552727287 +5554621247 +5555511538 +5559957668 +5552804625 +5552804625 +5552016739 +5552171436 +5554402125 +5556890751 +5552058127 +5559957668 +5557710320 +5558137769 +5557710320 +5556289887 +5556394690 +5558137769 +5557660601 +5557054702 +5555077653 +5557054702 +5553581943 +5552243212 +5558538413 +5552325580 +5559214497 +5557438596 +5554401598 +5557026126 +5559732639 +5553399856 +5559496764 +5553783890 +5553783890 +5552528438 +5557156220 +5558150968 +5558765231 +5552171436 +5552528438 +5555058619 +5553919201 +5555449287 +5557155799 +5558485552 +5556289887 +5557129269 +5554205531 +5557422487 +5552385950 +5552385950 +5556408359 +5558925695 +5555935051 +5558962220 +5556885463 +5555203745 +5557586339 +5557175702 +5556347018 +5556990675 +5556347018 +5553399856 +5559732639 +5554440405 +5559180045 +5554401598 +5554024269 +5559496764 +5557079104 +5558828667 +5553502807 +5559863782 +5554804798 +5553175253 +5555467300 +5552922603 +5555367836 +5555367836 +5554982823 +5554501823 +5558765231 +5552170636 +5554982823 +5557824204 +5552849794 +5553675132 +5559889370 +5553919201 +5555153211 +5555153211 +5558878613 +5554497192 +5556408359 +5557172548 +5554400905 +5559091902 +5556774478 +5552058127 +5553048905 +5558962220 +5555203745 +5557582164 +5557415314 +5559031692 +5555137632 +5555617468 +5557086916 +5558533825 +5558533825 +5558851093 +5553335032 +5555284427 +5557028894 +5556692087 +5556473983 +5556895290 +5556895290 +5556196234 +5553549339 +5554892806 +5558913765 +5554172753 +5557824204 +5558387327 +5558964348 +5557036858 +5552844302 +5554236100 +5557542589 +5552877073 +5556832579 +5556394690 +5552928425 +5555680076 +5554288136 +5553550994 +5552977358 +5552015132 +5557582164 +5555137632 +5557124211 +5559218961 +5559218961 +5555318017 +5558851093 +5554128400 +5555898487 +5559024813 +5555587773 +5558128479 +5557087464 +5557970692 +5557150288 +5557087464 +5555698038 +5552074216 +5554995736 +5556405854 +5558538687 +5553323028 +5557131993 +5558964348 +5555583797 +5554236100 +5554982823 +5557176938 +5552457324 +5554982823 +5553680161 +5554166546 +5554166546 +5556832579 +5552005169 +5558822901 +5555692646 +5558913765 +5553525787 +5553680161 +5552210369 +5556537930 +5553652782 +5556537930 +5552977358 +5559651635 +5557980797 +5557980797 +5552225223 +5552015132 +5557124211 +5553360775 +5557728710 +5554431953 +5553048905 +5555318017 +5557988971 +5559024813 +5552411345 +5558128479 +5559772622 +5557065509 +5556907433 +5552650754 +5558538687 +5553176306 +5555592565 +5555315487 +5557176938 +5559440881 +5553557993 +5558474082 +5552087114 +5552087114 +5555091383 +5554881085 +5552353726 +5556508603 +5553547104 +5556672043 +5554034102 +5556877632 +5556387619 +5552930599 +5553714142 +5555617468 +5552146585 +5553714142 +5554354010 +5554354010 +5557268571 +5555284427 +5558041235 +5557703964 +5552586726 +5553395569 +5558894047 +5554001467 +5554345946 +5558682270 +5558682270 +5553302696 +5559041911 +5553135921 +5559466325 +5555006434 +5559440881 +5553317465 +5553557993 +5555050861 +5552581799 +5552581799 +5555896510 +5552166319 +5556583481 +5555050861 +5552166319 +5555603215 +5557586339 +5552144871 +5555091383 +5555774294 +5552728442 +5559516691 +5559214497 +5559730494 +5554353477 +5553063863 +5559960243 +5553209206 +5556537930 +5555848323 +5558822901 +5557087464 +5558050416 +5559363979 +5553048905 +5559041911 +5554476746 +5555006434 +5556407407 +5555699353 +5557087464 +5554107516 +5559904661 +5552146585 +5555443145 +5556764110 +5559903808 +5559632128 +5558945948 +5558945948 +5555063834 +5558894047 +5555603215 +5559904661 +5556583481 +5552144871 +5554138369 +5555774294 +5556540735 +5556036834 +5553013039 +5552840736 +5556896328 +5553525787 +5558816406 +5554401225 +5553209206 +5555848323 +5557324659 +5552871462 +5554177692 +5558050416 +5552569278 +5554753149 +5554354010 +5552901307 +5552901307 +5558751138 +5553444703 +5555443145 +5554806740 +5557352957 +5556407407 +5554352852 +5557555323 +5553170091 +5554431584 +5552172942 +5556356064 +5552388108 +5552912306 +5556354463 +5552087376 +5557770172 +5552008689 +5553058588 +5559904126 +5558935490 +5552131557 +5555054504 +5552271621 +5555050861 +5555054504 +5554107516 +5553330495 +5553941873 +5555050861 +5558763139 +5555059345 +5552190099 +5558286514 +5552146585 +5554716578 +5554716578 +5558847998 +5553362389 +5554401225 +5554276306 +5554276306 +5558829079 +5554130240 +5552776222 +5555070167 +5554650353 +5552776222 +5556365753 +5556625350 +5553141973 +5552240784 +5555180934 +5554358850 +5555517941 +5554012188 +5555004149 +5555004149 +5556537930 +5556891148 +5554612296 +5559497591 +5554366087 +5557856809 +5553420368 +5555440660 +5555440660 +5557067982 +5557800633 +5559684208 +5559684208 +5553048905 +5558032080 +5555826139 +5553094374 +5555826139 +5556356064 +5553094374 +5552348684 +5554907454 +5553058588 +5554593084 +5553736792 +5555102551 +5553775173 +5552008689 +5558074421 +5552271621 +5553627942 +5552840736 +5557426959 +5554593084 +5555783154 +5553941873 +5555059345 +5553880365 +5554545971 +5558286514 +5558960097 +5557173434 +5558474082 +5554876003 +5555520055 +5553184966 +5552871462 +5557342102 +5553141973 +5556625350 +5558829079 +5554464236 +5555782091 +5552329283 +5554091818 +5553095742 +5555900494 +5559044005 +5559631398 +5552844302 +5557985767 +5554012188 +5554864285 +5559065754 +5554751737 +5554354010 +5556625625 +5556625625 +5558032080 +5554907454 +5557769297 +5552044271 +5557182867 +5552973036 +5557182867 +5558638661 +5559911292 +5555534432 +5559911292 +5559214572 +5552073900 +5557426305 +5555783154 +5552144967 +5552388108 +5555146289 +5557778727 +5558074421 +5557173434 +5553184966 +5558932732 +5552723389 +5558932732 +5552558308 +5559551802 +5555050861 +5557016622 +5557568693 +5553736792 +5552560481 +5558021323 +5555050861 +5552329283 +5554091818 +5555315987 +5554090471 +5556357136 +5559960266 +5557890985 +5554864285 +5552190099 +5558690103 +5552552547 +5558690103 +5554751737 +5554932300 +5559065754 +5554278541 +5552096870 +5552121383 +5554696820 +5555050508 +5555517941 +5557025652 +5555832993 +5557093122 +5555771813 +5553283593 +5552827515 +5559364524 +5553170091 +5559364524 +5557048233 +5557884966 +5552547017 +5558829713 +5552073900 +5556064559 +5555701707 +5554097351 +5554576909 +5555526825 +5554576909 +5555526825 +5552547017 +5555635916 +5557129302 +5552174328 +5552174328 +5558355074 +5557568693 +5554032644 +5552723389 +5552560481 +5556732133 +5554032644 +5555967795 +5554295458 +5559551802 +5553734614 +5557183004 +5559363979 +5553652050 +5554035226 +5556027308 +5559960266 +5557873635 +5557324659 +5554335264 +5552457570 +5556931054 +5556078837 +5552552547 +5552295483 +5553915812 +5556896328 +5553991921 +5559970518 +5556020864 +5555614349 +5556020864 +5556542168 +5554932300 +5555050508 +5559887089 +5555832993 +5552850848 +5555771813 +5553283593 +5557622385 +5553555893 +5557884966 +5553173463 +5555635542 +5552091642 +5555520932 +5555520932 +5555686173 +5557016622 +5552000229 +5557182867 +5554715129 +5556732133 +5552991250 +5557183004 +5557732351 +5556604980 +5554715490 +5552627113 +5553205881 +5553743316 +5553968260 +5558021323 +5553350609 +5558225901 +5558225901 +5554335264 +5558858078 +5554726718 +5557156220 +5552295483 +5555050861 +5554400219 +5554034102 +5553365287 +5558895202 +5555377331 +5555050861 +5559472318 +5558895202 +5558926329 +5559044005 +5553095742 +5555614349 +5558899235 +5553550742 +5552850848 +5558829713 +5556903157 +5555443830 +5555022781 +5558026056 +5559231459 +5553173463 +5553203396 +5555635542 +5558989194 +5552091642 +5555572800 +5559897465 +5552000229 +5555935051 +5553465315 +5556196234 +5554715129 +5555631799 +5557079104 +5553093101 +5553328482 +5559067772 +5554936719 +5553936269 +5554210126 +5554210126 diff --git a/splunk_eventgen/samples/networkProvider.sample b/splunk_eventgen/samples/networkProvider.sample new file mode 100644 index 00000000..5064233a --- /dev/null +++ b/splunk_eventgen/samples/networkProvider.sample @@ -0,0 +1,39 @@ +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire \ No newline at end of file diff --git a/splunk_eventgen/samples/oracle11.action.sample b/splunk_eventgen/samples/oracle11.action.sample new file mode 100644 index 00000000..aacd248a --- /dev/null +++ b/splunk_eventgen/samples/oracle11.action.sample @@ -0,0 +1,20 @@ +100 +101 +102 +100 +101 +102 +100 +101 +102 +43 +51 +52 +53 +54 +55 +79 +108 +109 +114 +115 \ No newline at end of file diff --git a/splunk_eventgen/samples/oracleUserNames.sample b/splunk_eventgen/samples/oracleUserNames.sample new file mode 100644 index 00000000..55db3c2c --- /dev/null +++ b/splunk_eventgen/samples/oracleUserNames.sample @@ -0,0 +1,24 @@ +scott +dba_user_1 +dba_user_2 +dba_user_3 +oracle_1 +oracle_2 +oracle_3 +oracle_4 +oracle_5 +oracle_6 +oracle_7 +oracle_8 +oracle_9 +oracle_10 +oracle_11 +oracle_12 +oracle_13 +oracle_14 +oracle_15 +oracle_16 +oracle_17 +oracle_18 +oracle_19 +oracle_20 \ No newline at end of file diff --git a/splunk_eventgen/samples/orderType.sample b/splunk_eventgen/samples/orderType.sample new file mode 100644 index 00000000..61c7b11d --- /dev/null +++ b/splunk_eventgen/samples/orderType.sample @@ -0,0 +1,6 @@ +New +New +Change +Change +Change +Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/orig.sample.mobilemusic.csv b/splunk_eventgen/samples/orig.sample.mobilemusic.csv new file mode 100644 index 00000000..bee172e5 --- /dev/null +++ b/splunk_eventgen/samples/orig.sample.mobilemusic.csv @@ -0,0 +1 @@ +index,host,source,sourcetype,_raw main,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. main,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" main,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO sample.mobilemusic.csv.origRADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/phones.sample b/splunk_eventgen/samples/phones.sample new file mode 100644 index 00000000..091173af --- /dev/null +++ b/splunk_eventgen/samples/phones.sample @@ -0,0 +1,69 @@ +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4-8,iPhone,iPhone 4 8 Gig +IP4-8,iPhone,iPhone 4 8 Gig +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +SGS2,Android,Samsung GALAXY S2 +SGS2,Android,Samsung GALAXY S2 +SGS2,Android,Samsung GALAXY S2 +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SS,Android,Samsung Stratosphere +MDB,Android,Motorola Droid Bionic +MDB,Android,Motorola Droid Bionic +MDR,Android,Motorola Droid Razr +MDR,Android,Motorola Droid Razr +HE4G,Android,HTC Evo 4G +HE4G,Android,HTC Evo 4G +HDI,Android,HTC Droid Incredible +LGR,Android,LG Revolution +NL700,Windows Phone,Nokia Lumia 700 +NL1600,Windows Phone,Nokia Lumia 1600 +SFF,Windows Phone,Samsung Focus Flash +BBC,Blackberry,Blackberry Curve 9360 +BBT,Blackberry,Blackberry Torch 91660 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +MTUN,Feature,Motorola Tundra +MTUN,Feature,Motorola Tundra \ No newline at end of file diff --git a/splunk_eventgen/samples/plans.sample b/splunk_eventgen/samples/plans.sample new file mode 100644 index 00000000..9c678ef1 --- /dev/null +++ b/splunk_eventgen/samples/plans.sample @@ -0,0 +1,24 @@ +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text +900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text +ULPOST70,PostPaid,69.99,Unlimited,Nationwide Unlimited Minutes, Unlimited Text, Unlimited Data +5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +2100POST5L110,PostPaid,109.99,2100 Minute Family,Nationwide 2100 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +ULPOST5L120,PostPaid,119.99,2100 Minute Family,Nationwide Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +ULPRE2D,PrePaid,60.00,Unlimited Prepaid,Nationwide Prepaid Daily Unlimited Minutes, $2/Day, Unlimited Mobile to Mobile, Unlimited Data \ No newline at end of file diff --git a/splunk_eventgen/samples/radPIDs.sample b/splunk_eventgen/samples/radPIDs.sample new file mode 100644 index 00000000..c94ffb74 --- /dev/null +++ b/splunk_eventgen/samples/radPIDs.sample @@ -0,0 +1,3 @@ +2363 +12676 +12548 \ No newline at end of file diff --git a/splunk_eventgen/samples/radhosts.sample b/splunk_eventgen/samples/radhosts.sample new file mode 100644 index 00000000..c5d92cbc --- /dev/null +++ b/splunk_eventgen/samples/radhosts.sample @@ -0,0 +1,3 @@ +aaa1 +aaa2 +aaa3 \ No newline at end of file diff --git a/splunk_eventgen/samples/random_domains.sample b/splunk_eventgen/samples/random_domains.sample new file mode 100644 index 00000000..1a35bb4f --- /dev/null +++ b/splunk_eventgen/samples/random_domains.sample @@ -0,0 +1,73 @@ +ryanzdimyxojlks.ac +xyosowlnwqaihkq.by +dxqjhxwvqnnaeja.com +tkhwesmptszdody.dm +nrsosrvzugflgrr.edu +cpzwbasblwxuslm.fo +ymtwccawahahbln.gov +traqoovhxmnlzsw.hn +rlmzjhmoavhvecn.info +gtryuifjydlebbw.jobs +kisebvtvvbwpqvs.kp +uxdtcpgatmrkusb.ly +dtutxaqyplrqawt.mil +awgnwunsglcdniy.net +tfrrmvpxtgsqkgx.org +emyadlwbzdcvkji.post +becfmwohxowgrin.ro +zqtpdchgtqfaxeg.sm +qsjchqcocvyrfvf.travel +eetnpmejmgcjuts.ug +rpuqtuhgwosvgrw.vc +bbijrgibymvwkqh.wf +jpmnwejftfqnmdj.xn--11b5bs3a9aj6g +ctimibiiriizsfe.xn--9t4b11yi5a +jhievxgnocibcid.xn--pgbs0dh +wzpsynmmqaaytvk.xn--yfro4i67o +sbmbsavwlynzcdt.ye +umivkuhkfmnuqie.za +grrwtjyyrtrupmf.ac +vpsircrczggyxti.by +qdpqjkvtbrsvsfu.com +ttbxwberplbcpjt.dm +mpesgkjkvrvxttk.edu +yfgjawitvcjtlwx.fo +tlcficjhlotnbnw.gov +qlcasnxbwukyogy.hn +ovuroahuiqgstho.info +zkotiwaewxfbsra.jobs +omizpmexfthdtkn.kp +etabjoqkfincucc.ly +wunehceccozhicb.mil +vasfeglzezfrhin.net +ondbxluvhhdfrzz.org +rvpfszpypaprorv.post +ufcyhlsjhnilxyu.ro +cpynvdqsyyrmotr.sm +qmaeaqfaminmtyd.travel +bvaiwgaqcdsxupe.ug +ddqulhrvujjvanx.vc +pafzyzkypzovtmi.wf +dcaioweydsfexnz.xn--11b5bs3a9aj6g +hmrdxjpzmcdjpug.xn--9t4b11yi5a +gqtavlakkdkcryl.xn--pgbs0dh +dytwkhnhsuulniq.xn--yfro4i67o +saeleofdezzuvfs.ye +hojdytnzcsvpkok.za +pcqxcoxljjtcrui.ac +ymfojvebwimzpzm.by +vbhnlghrkdvbpov.com +rqsszeznvhhbrah.dm +ztluylwgnmpgcac.edu +ufvmgvfvklsrfgf.fo +abgyotorvogikfm.gov +dpznommctrfaycs.hn +qhkhdkextwrztdm.info +frlkmlrpxsjcmbx.jobs +rxqdywdxhfhckte.kp +buajzkdmvrsyljm.ly +juvzvpjgiuwvpfo.mil +bdprepgvmaafowj.net +aldpagsgbplmxli.org +meyeagtuyybatkh.post +vbdcxghnetrwljh.ro \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.businessevent b/splunk_eventgen/samples/sample.businessevent new file mode 100644 index 00000000..c5914af3 --- /dev/null +++ b/splunk_eventgen/samples/sample.businessevent @@ -0,0 +1 @@ +2011-10-11 16:30:20,072,Event [Event=UpdateBillingProvQuote, timestamp=1318375820071, properties={JMSCorrelationID=NA, JMSMessageID=ID:ESP-PD.289F4E3F7A381:CEBE7D53, orderType=ChangeESN, quotePriority=NORMAL, conversationId=ESB~47af426612b50c97:5a04ce5c:132f52c51600:440d, credits=NA, JMSReplyTo=pub.esb.genericasync.response, timeToLive=-1, serviceName=UpdateBillingProvisioning, esn=NA, accountNumber=71081182961, MethodName=InternalEvent, AdapterName=UpdateBillingProvQuote, meid=NA, orderNumber=NA, quoteNumber=60354607, ReplyTo=NA, userName=cid, EventConversationID=NA, mdn=8322976226, accountType=PostPaid, marketCity="Houston", marketState=TX, marketZip=55555, billingCycle=5, autoBillPayment=T, phoneCode=IP4S, phoneType=iPhone, phoneName="iPhone 4S", planCode=700UD, planType=PostPaid, planPrice=45, planName="700 Minute Unlimited Data", planDescription="Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Texting, Unlimited Data", networkProviderName=Native}] \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic b/splunk_eventgen/samples/sample.mobilemusic new file mode 100644 index 00000000..a8e1b03d --- /dev/null +++ b/splunk_eventgen/samples/sample.mobilemusic @@ -0,0 +1,3 @@ +May 28 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. +2012-05-28 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 "Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" 200 0 0 468 1488 +May 28 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic.csv b/splunk_eventgen/samples/sample.mobilemusic.csv new file mode 100644 index 00000000..797ec2fa --- /dev/null +++ b/splunk_eventgen/samples/sample.mobilemusic.csv @@ -0,0 +1,6 @@ +index,host,source,sourcetype,_raw +oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:125 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 200 0 0 468 1488" +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:137 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" +oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.tutorial1 b/splunk_eventgen/samples/sample.tutorial1 new file mode 100644 index 00000000..67d004c1 --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial1 @@ -0,0 +1,2020 @@ +index,host,source,sourcetype,"_raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=506" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=506" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44392" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4585" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229725, instantaneous_eps=1.450299, average_kbps=0.187305, total_k_processed=4351, kb=7.127930, ev=45, load_average=1.409668" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=14, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=507" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=507" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44468" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4589" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229747, instantaneous_eps=1.450238, average_kbps=0.187356, total_k_processed=4358, kb=7.128906, ev=45, load_average=1.789551" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44544" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229712, instantaneous_eps=1.450219, average_kbps=0.187407, total_k_processed=4365, kb=7.127930, ev=45, load_average=1.492676" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44620" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=3, cumulative_hits=4596" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229731, instantaneous_eps=1.450336, average_kbps=0.187457, total_k_processed=4372, kb=7.127930, ev=45, load_average=1.444336" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.963 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.974 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 84.80 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=mpool, max_used_interval=10761, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=509" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=509" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44696" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4603" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.233630, instantaneous_eps=1.450311, average_kbps=0.187508, total_k_processed=4379, kb=7.249023, ev=45, load_average=1.162598" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.219592, eps=1.385853, kb=6.813477, ev=43, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014037, eps=0.064458, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=43, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=510" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=510" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=44773" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4607" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236177, instantaneous_eps=1.482525, average_kbps=0.187559, total_k_processed=4386, kb=7.328125, ev=46, load_average=1.863281" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=22, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:25:04.953 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:25:15.391 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=1436 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=292" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=511" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=511" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=95, cumulative_hits=44868" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4630" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.315106, instantaneous_eps=2.062395, average_kbps=0.187694, total_k_processed=4395, kb=9.778320, ev=64, load_average=1.803711" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243166, eps=1.546796, kb=7.545898, ev=48, avg_age=0.979167, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.240145, eps=1.514571, kb=7.452148, ev=47, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229728, eps=1.450122, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236966, eps=1.482347, kb=7.353516, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=mpool, max_used_interval=14851, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=512" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=512" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=112, cumulative_hits=44980" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4650" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.405086, instantaneous_eps=2.623319, average_kbps=0.187959, total_k_processed=4407, kb=12.507812, ev=81, load_average=2.545898" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.279 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:26:16.298 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6853 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=mpool, max_used_interval=12307, max_used=95646, avg_rsv=251, capacity=268435456, used=688" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=513" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=513" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45087" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4673" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.376027, instantaneous_eps=2.449070, average_kbps=0.188179, total_k_processed=4418, kb=11.668945, ev=76, load_average=2.261719" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=3, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251597, eps=1.579006, kb=7.807617, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=mpool, max_used_interval=12606, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=514" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=514" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=104, cumulative_hits=45191" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=18, cumulative_hits=4691" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.361229, instantaneous_eps=2.352349, average_kbps=0.188399, total_k_processed=4429, kb=11.209961, ev=73, load_average=1.763672" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:27:16.362 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6817 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.373 INFO Metrics - group=mpool, max_used_interval=12985, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=515" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=515" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45298" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4714" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.374176, instantaneous_eps=2.449107, average_kbps=0.188618, total_k_processed=4440, kb=11.611328, ev=76, load_average=1.811523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251538, eps=1.579030, kb=7.805664, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=516" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=516" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=90, cumulative_hits=45388" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4724" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.298454, instantaneous_eps=1.901243, average_kbps=0.188751, total_k_processed=4449, kb=9.261719, ev=59, load_average=1.978027" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:00.924 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:28:16.424 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=3977 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=mpool, max_used_interval=12292, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=293" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=517" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=517" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4747" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.331881, instantaneous_eps=2.159083, average_kbps=0.188927, total_k_processed=4459, kb=10.298828, ev=67, load_average=2.186035" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264567, eps=1.675706, kb=8.209961, ev=52, avg_age=0.019231, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261546, eps=1.643481, kb=8.116211, ev=51, avg_age=0.019608, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251129, eps=1.579031, kb=7.792969, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258367, eps=1.611256, kb=8.017578, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:52.363 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=mpool, max_used_interval=14856, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=518" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=518" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=105, cumulative_hits=45591" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.369509, instantaneous_eps=2.392134, average_kbps=0.189145, total_k_processed=4470, kb=11.430664, ev=74, load_average=2.300293" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.298070, eps=1.874916, kb=9.220703, ev=58, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.295039, eps=1.842590, kb=9.126953, ev=57, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.950 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.961 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 76.48 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:29:17.392 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=4388 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=mpool, max_used_interval=13875, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=519" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=519" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45689" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=16, cumulative_hits=4783" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.345734, instantaneous_eps=2.159124, average_kbps=0.189319, total_k_processed=4480, kb=10.728516, ev=67, load_average=1.769043" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284335, eps=1.772415, kb=8.823242, ev=55, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=mpool, max_used_interval=12892, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=520" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=520" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=82, cumulative_hits=45771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4787" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.264461, instantaneous_eps=1.643410, average_kbps=0.189409, total_k_processed=4488, kb=8.207031, ev=51, load_average=1.705078" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=51, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - splunk-system-user [15/Sep/2012:22:30:29.494 -0700] ""POST /servicesNS/nobody/ui_examples/saved/searches/Sample%20scheduled%20search/notify?trigger.condition_state=1 HTTP/1.0"" 200 256 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/scheduler.log",scheduler,"09-15-2012 22:30:29.498 INFO SavedSplunker - savedsearch_id=""nobody;ui_examples;Sample scheduled search"", user=""nobody"", app=""ui_examples"", savedsearch_name=""Sample scheduled search"", status=success, digest_mode=1, scheduled_time=1347773400, dispatch_time=1347773429, run_time=0.263, result_count=5, alert_actions="""", sid=""scheduler__nobody_dWlfZXhhbXBsZXM_U2FtcGxlIHNjaGVkdWxlZCBzZWFyY2g_at_1347773400_5d094f1622375e86"", suppressed=0, thread_id=""AlertNotifierWorker-0""" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=521" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=521" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=45849" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=searchscheduler, dispatched=1, skipped=0, total_lag=29, max_ready=0, max_pending=0, max_lag=29, max_running=0, actions_triggered=0, completed=1, total_runtime=0.263, max_runtime=0.263" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.251102, instantaneous_eps=1.514604, average_kbps=0.189456, total_k_processed=4495, kb=7.791992, ev=47, load_average=1.481934" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/scheduler.log"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""scheduler"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, user=splunk-system-user, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:30:39.075 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.501 INFO Metrics - group=mpool, max_used_interval=12615, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=2, cumulative_hits=296" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=522" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=522" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=99, cumulative_hits=45948" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4820" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.347846, instantaneous_eps=2.191169, average_kbps=0.189630, total_k_processed=4505, kb=10.794922, ev=68, load_average=0.939453" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.280945, eps=1.707823, kb=8.718750, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261687, eps=1.643377, kb=8.121094, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:31:17.513 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2958 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=mpool, max_used_interval=13874, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=103, cumulative_hits=46051" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=17, cumulative_hits=4837" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362707, instantaneous_eps=2.320315, average_kbps=0.189845, total_k_processed=4516, kb=11.254883, ev=72, load_average=1.306641" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032227, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284312, eps=1.772463, kb=8.822266, ev=55, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.535 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.400 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=85, cumulative_hits=46136" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=6, cumulative_hits=4843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.277605, instantaneous_eps=1.749341, average_kbps=0.189935, total_k_processed=4524, kb=8.569336, ev=54, load_average=1.299316" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:32:18.412 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2000 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=mpool, max_used_interval=12291, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=525" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=525" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=81, cumulative_hits=46217" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4850" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.258340, instantaneous_eps=1.611281, average_kbps=0.190023, total_k_processed=4532, kb=8.016602, ev=50, load_average=1.508789" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251102, eps=1.579056, kb=7.791992, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.459 INFO Metrics - group=mpool, max_used_interval=11558, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=526" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=526" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4854" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236367, instantaneous_eps=1.482534, average_kbps=0.190069, total_k_processed=4539, kb=7.333984, ev=46, load_average=1.604004" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=47, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.490 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46370" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4858" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229703, instantaneous_eps=1.450162, average_kbps=0.190115, total_k_processed=4546, kb=7.127930, ev=45, load_average=1.450195" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.901 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.912 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 36.75 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=528" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=528" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46446" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4862" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229721, instantaneous_eps=1.450274, average_kbps=0.190161, total_k_processed=4553, kb=7.127930, ev=45, load_average=1.360352" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.550 INFO Metrics - group=mpool, max_used_interval=11881, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=529" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=529" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=46524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4869" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.243738, instantaneous_eps=1.514608, average_kbps=0.190207, total_k_processed=4560, kb=7.563477, ev=47, load_average=1.221680" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450157, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=48, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=530" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=530" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46601" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4873" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236166, instantaneous_eps=1.482460, average_kbps=0.190253, total_k_processed=4567, kb=7.328125, ev=46, load_average=1.238770" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms +09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0 +09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:35:21,387 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms +2012-09-15 22:36:36 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms +2012-09-15 22:36:36 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:24,887 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.321 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms +2012-09-15 22:36:36 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:30,164 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms +127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms +127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688 +127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms +127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms +127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms +127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms +127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, system total, active_hist_searches=4, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=4, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.487 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565317c433ec70 310ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:45,491 - admin search index=main | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.494 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.617 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.675 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.733 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.790 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 7135 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.811 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1923 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531cf1675b70 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.817 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 624 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d162a9d0 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.822 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 7959 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d262a470 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.828 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2181 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.831 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 8217 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.832 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 882 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.883 -0700] ""POST /en-US/api/search/jobs/1347773730.619/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a230 49ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.886 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3940 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a210 36ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10922 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.926 -0700] ""POST /services/search/jobs/1347773730.619/control HTTP/1.1"" 200 383 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.959 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1932 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f54334670 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.961 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1465 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f6433e310 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.969 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10238 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f862a510 35ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2190 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10496 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.985 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1723 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.026 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532061de6b90 57ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.034 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653208433b910 42ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.038 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.042 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.049 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 397 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.051 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1071 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320d4334d50 242ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.060 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3942 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320f62a910 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.082 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.083 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.101 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.113 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.126 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.158 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677850 116ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.159 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1949 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677cd0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.161 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653229273c790 114ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.185 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565322f4326d10 70ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.207 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2207 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.216 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.217 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.219 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.466 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3960 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532774277b10 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.472 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10946 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.487 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327c1de6d10 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.489 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d433e6f0 69ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.491 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d2740e10 65ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.501 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532802740290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.517 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.111 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 4073 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565331c4331350 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.116 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.131 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653321273c070 35ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.133 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533224331cd0 65ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.135 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533221672690 67ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.143 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653324432fc10 137ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.145 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533254325c30 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.156 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.157 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.158 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.170 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565332b432f270 75ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.256 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.684 -0700] ""GET /en-US/api/search/jobs/1347773745.621/result?isDownload=true&timeFormat=%25FT%25T.%25Q%25%3Az&maxLines=0&count=0&filename=sample.tutorial4&outputMode=csv&spl_ctrl-limit=unlimited&spl_ctrl-count=10000 HTTP/1.1"" 200 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556546af1e943b0 40ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.690 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=1&output_mode=xml HTTP/1.1"" 200 1055 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.703 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.714 -0700] ""GET /servicesNS/admin/search/search/jobs/1347773745.621/results/export?output_mode=csv&f=index&f=host&f=source&f=sourcetype&f=_raw HTTP/1.1"" 200 442032 - - - 634ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055654d6b4325050 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.425 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=mpool, max_used_interval=23242, max_used=95646, avg_rsv=251, capacity=268435456, used=1138" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=47, cumulative_hits=438" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=532" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=532" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=214, cumulative_hits=47131" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=295.993347, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=37, cumulative_hits=4968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.262388, instantaneous_eps=5.957074, average_kbps=0.193592, total_k_processed=4659, kb=38.780273, ev=183, load_average=1.042480" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.262388, eps=5.957074, kb=38.780273, ev=183, avg_age=0.901639, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.054263, eps=4.427115, kb=32.386719, ev=136, avg_age=1.213235, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.115 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565551d1e942f0 23ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.123 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.134 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:36:35.965 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=mpool, max_used_interval=54719, max_used=95646, avg_rsv=252, capacity=268435456, used=54719" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=3, cumulative_hits=441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=533" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=533" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=13.472726, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=260.400024, executes=248, cumulative_hits=47379" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=105.671432, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=17.018181, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4991" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.631942, instantaneous_eps=7.030721, average_kbps=0.195419, total_k_processed=4709, kb=50.369141, ev=217, load_average=1.270508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=4, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.631942, eps=7.030721, kb=50.369141, ev=217, avg_age=46.626728, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.620994, eps=6.933522, kb=50.031250, ev=214, avg_age=47.280374, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=183, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565896b1672ef0 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.424 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=mpool, max_used_interval=68161, max_used=95646, avg_rsv=252, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=6, cumulative_hits=447" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=92, cumulative_hits=47471" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=11, cumulative_hits=5002" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362699, instantaneous_eps=1.965783, average_kbps=0.195624, total_k_processed=4720, kb=11.254883, ev=61, load_average=1.154297" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.362699, eps=1.965783, kb=11.254883, ev=61, avg_age=0.032787, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292897, eps=1.772427, kb=9.088867, ev=55, avg_age=0.036364, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.114 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565911d1668190 23ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.122 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.132 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.546 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4417 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a38b1672e50 383ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.582 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.601 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.613 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.825 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 8912 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.834 -0700] ""GET /services/search/jobs/1347773859.646/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21348 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.860 -0700] ""GET /services/search/jobs/1347773859.646/results?count=84&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14687 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.878 -0700] ""POST /services/search/jobs/1347773859.646/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:40.846 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5005 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a4d81672f70 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.029 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6071672850 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:42,032 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.035 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:42,050 ERROR [505565a6071672850] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.062 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6101672ff0 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.069 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.079 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.273 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8461e1e7f0 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,276 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.280 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,282 ERROR [505565a8461e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.898 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8e61672c50 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,902 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.906 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,908 ERROR [505565a8e61672c50] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.083 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565aa151e1e7f0 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:46,087 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.090 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:46,093 ERROR [505565aa151e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=mpool, max_used_interval=13395, max_used=95646, avg_rsv=252, capacity=268435456, used=2972" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=15, cumulative_hits=462" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=535" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=535" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=127, cumulative_hits=47598" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=41, cumulative_hits=5043" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.575686, instantaneous_eps=3.096366, average_kbps=0.196077, total_k_processed=4737, kb=17.848633, ev=96, load_average=1.330566" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.575686, eps=3.096366, kb=17.848633, ev=96, avg_age=0.906250, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.507179, eps=2.580305, kb=15.724609, ev=80, avg_age=1.087500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=5, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:49,866 - admin search index=main | reveres | table index, host, source, sourcetype, _raw" diff --git a/splunk_eventgen/samples/sample.tutorial2 b/splunk_eventgen/samples/sample.tutorial2 new file mode 100644 index 00000000..ca8bd283 --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial2 @@ -0,0 +1,274 @@ +Mar 1 00:01:50.575: %SYS-5-CONFIG_I: Configured from console by console +Mar 1 00:01:51.047: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 1 00:01:52.047: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up +Mar 1 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 1 00:04:37.815: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:04:42.135: OSPF: Send with youngest Key 1 +Mar 1 00:04:47.607: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:04:52.071: OSPF: Send with youngest Key 1 +Mar 1 00:04:57.091: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:05:01.095: OSPF: Send with youngest Key 1 +Mar 5 07:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 5 07:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 5 07:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 7 02:22:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 7 02:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 7 02:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 7 02:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 8 12:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 19:49:00.000: %SYS-6-CLOCKUPDATE: System clock has been updated from 00:05:06 UTC Fri Mar 1 2002 to 19:49:00 UTC Mon Mar 9 2012, configured from console by console. +Mar 9 19:49:00.411: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 9 19:49:04.483: OSPF: Send with youngest Key 1 +Mar 9 19:49:10.395: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 9 19:49:13.723: OSPF: Send with youngest Key 1 +Mar 9 19:49:28.407: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x622AC624, alignment 0 +Pool: Processor Free: 21244 Cause: Memory fragmentation +Alternate Pool: None Free: 0 Cause: No Alternate pool + -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x622AC62C 0x622AD9D8 0x622AE560 0x622AFEC4 0x6252CD28 0x6252D120 0x6252E004 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 +Mar 9 19:49:28.407: %SYS-2-CHUNKEXPANDFAIL: Could not expand chunk pool for regex. No memory available -Process= "Chunk Manager", ipl= 4, pid= 1, -Traceback= 0x6144B520 0x60024E24 0x6273BAAC 0x6273BA90 +Mar 9 19:49:28.487: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x62551FB0 0x62552584 0x6252C7CC 0x6252DA78 0x6252E014 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 9 19:49:37.099: %SYS-5-CONFIG_I: Configured from console by console +Mar 9 19:50:30.499: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x6254F9F8, alignment 0 +Pool: Processor Free: 29796 Cause: Memory fragmentation +Alternate Pool: None Free: 0 Cause: No Alternate pool + -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x6254FA00 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 +Mar 9 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 9 19:50:35.303: %SYS-5-CONFIG_I: Configured from console by console +Mar 9 19:51:41.523: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:52:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:52:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:53:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:53:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:54:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:54:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:55:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:55:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:56:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:56:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:57:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:57:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:58:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:58:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:59:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:59:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 20:00:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 20:00:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 21:40:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 9 22:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 9 22:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 9 22:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 9 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 9 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 9 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 10 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:03:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:04:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:05:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:10:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 10:40:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 10:50:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 11:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 12:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 11 08:13:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:15:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:15:20.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:16:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:17:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:18:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 22:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 11 17:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 12 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 12 15:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 14 05:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 15 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 19 20:01:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:01:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:02:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:02:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:03:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:03:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:04:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:04:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:05:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:05:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 19 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 19 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 20 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 21 08:41:38.199: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:41:47.039: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:47 UTC Wed Mar 21 2012 +Mar 21 08:41:49.451: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:49 UTC Wed Mar 21 2012 +Mar 21 08:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 +Mar 21 08:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 +Mar 21 08:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 +Mar 21 08:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 08:42:38.027: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:38 UTC Wed Mar 21 2012 +Mar 21 08:42:45.115: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:45 UTC Wed Mar 21 2012 +Mar 21 08:42:48.983: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:48 UTC Wed Mar 21 2012 +Mar 21 08:42:55.475: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:55 UTC Wed Mar 21 2012 +Mar 21 08:42:59.747: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:59 UTC Wed Mar 21 2012 +Mar 21 08:46:07.527: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:46:08.923: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:46:09.923: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up +Mar 21 08:46:28.435: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:47:01.147: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Init +Mar 21 08:47:02.203: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:47:21.659: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:48:46.283: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:48:50.003: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:49:00.575: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 21 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 21 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:53:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 21 09:00:54.371: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:02:54.743: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 09:03:00.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 21 09:03:10.547: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:03:10.915: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:03:59.615: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:03:59.907: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:04.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 21 09:04:05.007: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:05.275: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:25.631: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:26.243: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:31.343: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:31.755: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:06:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 21 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 10:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 +Mar 21 10:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 +Mar 21 10:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 +Mar 21 10:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:43:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:44:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:45:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:46:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:47:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:48:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:49:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:50:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:51:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:52:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:53:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:54:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:55:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:56:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:57:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:58:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:59:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:00:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:01:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:02:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:03:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:04:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:05:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:06:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:07:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:08:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:09:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:10:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 22 09:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 23 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:51:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:51:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:52:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:52:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:52:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:52:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:53:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:54:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 23 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 24 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). diff --git a/splunk_eventgen/samples/sample.tutorial3 b/splunk_eventgen/samples/sample.tutorial3 new file mode 100644 index 00000000..0ee0619c --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial3 @@ -0,0 +1 @@ +2012-09-14 16:30:20,072 transType=ReplaceMe transID=000000 transGUID=0A0B0C userName=bob city="City" state=State zip=00000 value=0 diff --git a/splunk_eventgen/samples/sample.tutorial4 b/splunk_eventgen/samples/sample.tutorial4 new file mode 100644 index 00000000..20f40e7d --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial4 @@ -0,0 +1,4 @@ +index,host,source,sourcetype,_raw +main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:28:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 open" +main,www.splunk.com,/var/log/httpd/access_log,access_custom,"2012-09-14 17:29:11:000 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.12.0.20 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" +main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:30:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 closed" \ No newline at end of file diff --git a/splunk_eventgen/samples/searchArtists.sample b/splunk_eventgen/samples/searchArtists.sample new file mode 100644 index 00000000..0761bc00 --- /dev/null +++ b/splunk_eventgen/samples/searchArtists.sample @@ -0,0 +1,21 @@ +Rihanna +Bruno+Mars +LMFAO +Flo+Rida +Katy+Perry +Kanye+West +Adele +David+Guetta +Maroon+5 +T-Pain +Gym+Class+Heroes +Big+Sean +J.Cole +Drake +Toby+Keith +Snoop+Dogg +Foster+The+People +Cobra+Starship +Kelly+Clarkson +Gavin+DeGraw +Luke+Bryan \ No newline at end of file diff --git a/splunk_eventgen/samples/sha1_checksums.sample b/splunk_eventgen/samples/sha1_checksums.sample new file mode 100644 index 00000000..f79c853f --- /dev/null +++ b/splunk_eventgen/samples/sha1_checksums.sample @@ -0,0 +1,1000 @@ +8f43e0bac89e62ad971e00963b0272a402419fd2 +d5990ec1660ccf9c43d4e67cbf4ac905ed1f41fd +debbeb03959805463ea63777e4f9457cf925e8fe +7ff82d64bccc5c896d6ea61ea4347bac1a3ea47c +135e485c4635cb2f22d96f7d0d7f77b58bd95d05 +046f14fd4fd13b449f4e0a1bcb57fd308fc1b19f +89e4f285f3d8015664e63d6289142221e06314fe +79f500040ec6555aa948856079f6627ebecc2b70 +ec0e3db341e9636de6274ed0b2fc32de9ad162bb +34e78655c17d87e2e3b5abca3bfdcf389b77d419 +cfdcc8006bdd48cf56ecba0c77b5e8dc14ad2e5d +7d79e4f94538ea319ae0092653cf6d8a777d427d +08ad65558308c762f2782d7179a380040d98b43b +cb8ef13b8d6c09afac0972a903ee5bebeca0ae62 +0dd39fd674706f4aad27181a1e51b79b879847aa +9a1ad1b820919522ca8263721520b7f931b8fe7b +244cc0ba509f0753a16b12d969af8c0ef4b31293 +6e443884b0b07ba53abae72cebc66c444e552d0d +7b91c1a5d2c29a2537a215be91f1b17f7413b3b3 +d03987c966b0a5c045f2dfd9dd6322ad3b0d0d5d +5b2b6ed1591a45a2b3eefa02649a55c8b704595a +cd8e7d0f4aea0154acfeac2e31f6ab8268bad15e +fef8ce08d57ea4570fa052c8bb23f7e357c0ada2 +ed7be8d52be86008f3e8ef29a65db6439fcf0eb7 +25463deebf294f9783bc49a3f40eee11974bdbea +5b9ae9529b3a24962e697949ec0e2f86317f6c15 +1e5fdca95de18cb439df7a0bc47ef1151dd79ef1 +e566cc71ee49042e1466ee991cf09c5ef30314d2 +8d617d0e675bf5e1c14076bc4603393c23fb1912 +a741f7308571e975f0478b7a1879706e4a561e6c +852f36e1468c2efc607e6832eb602d6cfae11141 +11ecaf6c0301ab8151e42f7e5a593c73442922a3 +3c696723e044aee3448825058e515bfd39130e7e +8038a239e8f0919c1ecac3ad9d48ef25315036f7 +4000d274490d909608171ad2cbf563aa498f44ee +7e3967689f66a2030526a0dfe124c3ba51a60a0a +eefb96c42f9f389b4355a61066c91a588b9ecf6f +eafe80fa8bb9d0332e40a4d5e148b8e029ac2d3a +c6e6956149d2fbf73faba54d509d1e2457c44fa0 +f02a338899e6d29de8dc48428aa6d86cb0499dc6 +813b1bd4b8674248668deb50eecfaf424edeec23 +64baaee1853f69e7d72d136de0858073239e978c +d9ca8078d8885eaf233b24dcb78803131a84687b +11b446639ec8b91d1d8dee42168e369abe50d73e +323369d79c1fe0aeb13da93e032a9b9a8eb61e03 +745f7877e88f6ed43688ad8145d5b48595bf52b2 +29bb3e222bae2466e340477d63252e2df8ec71be +f8440d8b4b379d86c1c11dbead8379e67a6866a2 +eb64a44a51fdf790dcf0a8bce63d005897b3e1b0 +f9dfb8b73708c36df76cf4b15cf591c1640fbac1 +fde9cfeb9c70ffae9b8d2e217efc048282d150a9 +dff78cdc36f9a8b10f540420571fa3e37f4b096e +998208107c71cd5930889b0309edb9401efe5567 +f896812812b13bbfd25b1c7e9d424b246eec45d8 +6c23807332aaae8dd0eeb7433e29d80592d8bc67 +b2b897b2b18c8e8dd164aca1e517f3b349266f3c +e4c6648764cab41dcaa054981e2b33ec466d9aac +3b6b16a91a9d4c24294184362caded4161260482 +d8b5e3025347ea6ff9861732924338f5bfddf8ee +15119f0cfa48bb45f1f6112a168c0a12530a597e +c8ea17ace7ba929b110591ef8c5bc62c4cd7f1d3 +23f89e04a4d6f7c46c26e3a7720ad15f3e6efe69 +6252fb60d3797d57ae1a9c69d5be70a3d8fa104a +8336e9b658c57f54da56fd4e36b3a11bac08cb63 +e02715b0b40ac5cb373a61e2968bb1cf7e0db4f4 +eb1f3976b298ed0366931fb8cd496934f3edb46a +fb2801f62a2731c348548d746f197a0505047f45 +855c4464d02b4cc023cc840c388c63e3d868357c +71aafd716684c223d9c7d2bd029ae97acef05585 +335604a88f0649775428e44e27dae6c42b55795d +84548f57569ac73579cf4f93be4322beddaeede6 +4da00f62524a29d536377a101db78fd027131120 +4fc7d1c333ec53005437081e33491f070d3f9a44 +e5ff8f0777969f7c536c856678d24cead1d9cad1 +7f4e00ae9d3e916b1b2116dd9e010e375e61f559 +3a64ed6e45236661edbd4f29e822b4e3463a2361 +63078e26907c7e0bf39caf3b1dbc33e46791c9ac +ce11428e96707ecfe63b5c01adac3429264a70b1 +dfa8427f3dc4a72abbdfb3b01e480916fa7890f5 +694ce787741e6f422b01d29e687a258e92a46ee9 +ecae8a331d7a8b1f83d536444dbde361c54da31d +1b3e887ef869e13e17cfd1f9d382176e815a4921 +41ce8c939dfab847ae11fb67a2766abdfaebb4ca +ced27174ec9520e22d5a7d8cd8d13dda6fbff3fc +6fbe8c8068fce1f7faa7048cf71553ff8818a39e +4a8e24a7e1c20576c87d4c5e6070be73332aba8f +99e811bdadfb0e2ce4f19825f525b6c35d1bc506 +b8db8b2d43689940fd23bf2bae27e40155fdc7d2 +ea7d2ec45b9ba1ddcd8491c67d864970017f0e5c +4afb6238f27c49259b9c3fe94d4bfe46e7981c5c +44dfc1a98af2ca9b01c987c7238e6c9829c0ca79 +7150517ccb77e21b108dd47d749085def371d78d +2884978dd45c124e64033a58eb8a09a159c4f8c5 +c8fd6c6b57bcee96740736e0ccaa2f95b382c590 +8e3314c894189678b461a92b1d634f7375d20382 +c2d818b18452638264eb38f7d9566794084efc98 +507acea6a662d70def1abeb492bc7781f6bd5c30 +3067e11a0decf9e389394b446ce2e11465b73b46 +77825c13fb1fe0ec9da497bd32d1d7d5b9fc1e9c +4dd0ab5cc22dbb7ba80ff5843130764ebc3f4953 +65e4a6169d0d3d9695673eebc90abb55eaf95c8e +6aea9a96e49e6b8a5d22638377fe492c6e6d9014 +54ed81ba14e427a8ff7aba8168a6124abe9ad280 +3bd562c4129c7210b3c3ee52e8b52887d281af0f +88f7cea4edf4a71113c4e53637be8c6c406101e1 +910fa87514244dfeeac94b3771dc9b6e2c442baa +83947fab9bddb434979a81cf7bfc0f1b91c1cf01 +6df00406e815bf118b34e2b20830faf9e9b573ea +773e5b4f3271f97cda1f9969f8dd6d9bb1251f21 +d8f6d7e0b29eb1895434c3fe61f278e12f3f2e30 +cccdd396bf6a6ad0c3921eae99ccdfddb49d71a2 +0f62ff1dc5414e4f7e72605d4f4fb78c195b7506 +45078804a6e5729d3fce86bad2e09f486bb8d922 +4c537ddff9d6fd01fb9ed7d6c67363c7719e81d3 +7981c35772d560e4eaab5bd9ff019dc2675bbf93 +a17d877e92c409baf16383bec5f193e25f9c99cf +de8668b9ca19acbdb47559502eb372fdb6e74519 +ef42fb2683227dc2525215334bb36f9e0a820f6c +b982fad361ff0249be3fd771020b0e26d17ec84c +47532f386b76da71326b5fd0cde8fed00de0df5e +7df732da0d6c1f053d6339fa47859cd4f184cbf5 +7dab3ea7746ecff9cf24eaecfd8e2b8784b36fa4 +444041d27a22117e20120369f1cfcef4aca0b7e3 +dc2bc5f79c88a52c049b2892e5235b9a10783889 +abd0fa7534a994bd8188ca271657684f831f0827 +f3a7c3be7482dafe37c20c4b1e39de8b7a014e66 +20a3ba4d0a4f74ac92ce786662aa804d7a7ee53e +329b5fcde781c4b8b8673d4efeb7d62fa9e6eea9 +c7634078d14b7ba2c6ed05df75840b3af50ecaae +bc845beaeda4c4cbd6ebb73d0fbd7a86686137b2 +b823c619bef218a4f3bd404127748f2256f6dc35 +e60aa47ac79ac2d683251ec4b91e5fc9fd8c9954 +bbb0c88cc607f1cce2a2d4fa11783e317323084b +98da69bc4ac675ca93f942f97693a9f3f1fe9119 +dd51e1c42b9bf4301e7e457f86ee84f56f4e020e +f1226fc18c62d03475b0297efc63823f89159ccf +1202737f4bb24f1002b27b2296cc1f592a14b45a +ef7237cbc6c7bfc16c0ceab13134908a999effed +f0b3be619e2d9d68e05fc16c15abfe88871a035c +6e24917e7715a1759a9f23910596ad5078bc9fa1 +1bd9f10278e871f24c9578426e838614d50f2301 +08743654931b04787f6ba8ff4f5ecec2bdf0f157 +56db6249e148d97e2147d676ba47f03b1deeedaa +78d2a53b72dff2291eaf17382592cdabc5a6d7d8 +6d746643ff20eff7d9aad8dba89a81bcecd090f3 +cc3c5a481258aafb9b8d3b6145c2b04debd532a4 +0b81c6699fd0a0655ae8f1459e66237d0f9be038 +4730f389e62019de95488c28d8c755f11f9bbb99 +c3e0ce4b2de0abeb8648cf154912aae7bf42d8c4 +bb7d3253ac3982c81dac8df293d44485c2b75459 +6d21b614f881d4b15b289847768d1d1f11bd8515 +5d2f9c1fe2119c88a2a44d90c113b9beff5f6496 +9bb5e28ae720e21f3eefb34f74960ba6577180ea +ff991087fb6313d1e1b4be781ae35ac87d796101 +4e438c6e579600dcc42067e23c3778efdca3c6c4 +0c311bfa94f465147c693552e94de28615b9eb18 +980aeb208d9e93a63c1d33ea400bdcc9293498c8 +842d591b38881fc5dcd75445338d6408ddfe4d12 +dea3282c25b5de4cab74793e7fdd31b0495c43dc +3218306b30703ac7968106c64a25ffc51f627a75 +d56ca2edb4df3cf60ab10b346cb25afdd750dea1 +b6b8a83c07cf5a23d570181d9bef184b7b9810fe +ebc7e6f60c43246455410beac016c4108c27d498 +42474a432626c240e80f52d6ff84fc6937156890 +f5dbfb3394680ba54f68765ad5b3e8979660853f +b36b4dc3d5a53832438596ec21a3ff64b15ee855 +a4060e36c6d881def0f855e9a467fefe9a238a86 +e3b0f1ac8c734d1545cac685ed454a4ab7069408 +2e5171e862afd686d9e3d9e8b387cad01ffa9ec1 +b56c6bf91676cf2294a94e8bb9e9b9fc8db539ff +8a36d9bd7d6d3bb10227bc2b12cef43b032dd03e +3f641128a87e46f4fe18ad8ac93eb0405a3ece91 +0e29a268548b1a3c2253be73e261527004f98946 +cfd92aa125380b36e56d2cda3f9d116ddf7c9c61 +17041fa7399d450dc8a3bd10362c0ba4fe46de9a +3e1a47ad15039d9c382c89508121f4c411ec93bc +b9a07505a69721e4a20ad20ec8d58f143226bd36 +86903ad2b03329cd200abb7b5f21813f084ae995 +db1100269fa59df56c331f946452889100fd0f1b +f33f85e8c04c400b1547e11a68dddaf4fea1e8bc +c4c23bddc01fd53f403535c9f88c08218743a516 +cb09982f6579f59d0467e208e6d14ffdadda4fee +58b1cb0e46b5f49e28494f3f0d9e3380cd2773ba +f01dd134139efd23d5eee126f998374c11e9416b +e7143c1cb384ffda7e94d8843352000a9f3771b5 +83c32af057801a7d6129036685159d306cbf6a0d +721c48b7c549bb477dee141286bc40f108f0f1f0 +455f17229f9b46306d784f436e2fd0265f23958a +bc4d2894f8ee8c457b56ef0f72ea8d663e7d9dec +bdb42c5f6e37eebbb04a91dfd49af91b2d5883d0 +42630483ae7d64147a0c819f284624fce8c453df +1df79f087525b50935d6a728e3ba380ac7b5cc8f +56617676a0a6111e910acb8e9fd9ef3e55178d5d +7b66d48661db2cf452f7a78f033c18fc31dc9e96 +5c45bc7e7127b0ccccf2572f6b79c24ca6a88a51 +cfd60c224bb4d14e9539fe993f7cc1e64e4fa5b1 +52bd56e2d935b18dd43ecf8882c5c0c6999b9b7a +2bece31f7e0cffaac62678b98c4c5de1a1b685f1 +8a4d3635bd1a5ee57fc73fed5b75def266ef6d15 +a6c47e51a08f14001346dd3563e11b0fcc40974c +8f083f3e507b817cd45a46788e6cdef759130729 +57cb7b03270450e5c5ae2e239dfc673263b5323f +d253fa85ad2c098dbfa3f7e40fe1ad055e040558 +fd64d55bca1e336b69cbab2cca173bc7c463fb87 +be5ea7619f14c06171ade12858989d0ef526974d +dbdd0206af5fde5d9716151a2513fc4fe86dadba +4519ba2e2742b29b7335ceee4de7f23a3f386a82 +e4ebcfca9d9cc55186bb3946ecf45dc5ad6c6f2f +e0cac937b8a4af5a59c8463ccdc83c85f02e75e5 +0f584b501af1a1d1b83d494df5182bdc8f0a090c +734ce7e53e6bf4e55bec7e5e5fd95ac1806dad72 +7adfab7deb5266ad2b11a75c4bdf520e5a47a80a +1991a9dbf49c5fc4dd4a01f4110b32683270c758 +fde9f109730db49efba744c17dbf77113928c3ab +67cdb7c7ca2053e891d96914057009ef04fedd0d +e5f53780005de2fbd8186914fd9a6c785f114a29 +b205fa7b461e008240f7def1ea2113596a9fdd35 +54f2bff0b90064bf3a0626a1c1d4e1321823dd10 +133d26abac76c2150dbfa916830503a036e00b9d +47e97a08ef89b9028d0aadc0ba44c65cb8e6ccd1 +c62b45680da1cfacdaf83fea284af73f509e68bf +e871eff417cf4120947f0059c31073679351da73 +c32beb7b15b18c8513ff48590f4be352b98eedb0 +5ae9d518dcca4908e5c044dfcf9e95e402a40347 +e1ce99ae4593e81a9df29e4873bf893c3a27ff5c +60a85a10681898ac32fafd9359bcb4c1889e0587 +c862e7f1f77b435d7362147da5e4072977f11d9b +1e540b7f29dc5f50cf076ec871488e803837cc89 +a3476caef8b981156259aaf9390218d28cb6c540 +788fad65622bc3f9ad1f39a05b28b1b4aca5af2d +a43bc6f3b4d5141cca4e97a2984c20893d7f340e +6ab150e47509c93359de7ef7a522f6d9789cbc4e +d34fa0ddb471314e30baf042b8c8560f350f866e +d13af0215d6bbec20310f5331c5a5fcd4e1a7720 +7d4ed057ec238ba3932f296497061493d93ac907 +7f8db1fbf364cf80d4bf85f3cbc706317aed7d7c +07a99de16c26a547a09661e1cc0dcb5de15b63ae +1f39403361d61d6f63669c35d44f54fafd5947a5 +cac63e943650bbc629cfd1a015cee12241d1fa95 +6554e93357e9119de1b5ffa6a341def2c8412670 +a7ad5ec36a37425e4c721e8bb6087b602314432b +b431d6a2db5e79e0c6753d64dd2913d7ffb3ccf7 +63ea4328757c720dbbe5d68dd59f2984404b7c63 +25b3ed62ebe05b4738993e4971538c45ff43bc22 +1fe279e603981b0b2319c606a1886a2a345ae37d +6278bcadc46fdf5bc23ee1f95f71d0912b58aa12 +161c17beae2c4a98804327139c450ade4861d09b +fce9350201e084c400a2ad1b8f44e82007a68ae8 +8ef1c8c10bc6f465eaf1fb031192ca8832dc6fe9 +ca290fdfdbaca08d689d4bc6424cd3adc2d94b83 +b14a748afd708a96baf33f3bdfa0a68a68404cc3 +b355ee59e65e442d5d47e09c4d1a4adbc3eab92a +5a44b2286404537b12b75067303baadeaf58cf6b +042e35c25a23c636342a62904359adf42ee5fa80 +9fcbea49eb08cfdc9252588acaa9e2bb6505761d +df110888a94f9f1d0d3e57dc36d601ff38713d99 +b44dab64e956bcdd6719b085ff97d30044c80f1a +257c3ba27c91ff2961b4b7a8a0974b489ed2df27 +bf1a2e0c49adf023c39b2dc14819faa56e1e6524 +5b37a60dffb97b6bba73fbd61fced418833cd39b +4837d25331e13ff240a939e1b9c867276539214f +b643568f87e0f8af6af7734b750800c4ec69273f +442d5ee582b8bc65e139d9b878fb9a25afd58fb4 +8167eb5d4327454889a642631e462957b0ac6f23 +4fb17f89f0a27586f08ef8a98b83ce4a4b35613f +9c5a4af7870ca4d5f929b581fce0e1537bb4cbe0 +36adad535a80c99e358a13526d86ddfed8ed7c1a +371248997c7188ef9754449dd5f3850fbb6dbc1d +68b63867410c0e3627d65c94c229c1d65dc7b9a3 +09f79d3b0b6d7d20291816be7f75726711112ab6 +d9960959420c70534ccc6073a5e2779003d95834 +9335d7ace2c0a5149049fa742921d2fc8c8933ed +0abbddf2c16dc4e41145cf55dcaccd868e141f91 +58011c9babf5583e5f3f433f1f3ab931d11cfaed +d946a78e9ebda75f655607fe1ee79c8e1e86192f +d2bcb13aaf3437f9dd0ac959b573e6e835374500 +7d78326f226227a0d70c2ff8b922c2a85288ff2e +b8168bcdb73b652d11db9336f988cce5990bc833 +21a289e3406d697b9a6ad3c3d534c7c52049d02e +f53346b3c0802251d69a47ccb485a4cd1a028480 +c840c04109090cebca49e3bd238dc76f42c78033 +460b06fddd834c2b5a577aedecdb55a308b4fa1e +05bdc6bf8c3f02093277f944347133c3cf747040 +3c3b072983bf9e438ce6e4c0d6138262dc9bb998 +e39871bea6fb4e18b480b2a7d63a653bdf391b66 +fb81b20a2a954bb3a11964944aac1f9dfa9698e3 +2677974df51d481c4cab68a37f64354202a61ba7 +5b03e377ea9672b2493e469bc80bcc8cca23fa03 +9a08799cc14ddee16307a4074eb99e81161d98b1 +4da2022083388dec61b6d17bd955fd4989a73117 +5ab460b0f72ac9b12fc843c8d51b21c8749c2d9a +3e232422ceff6f5df0760f82242fd009939d4732 +eae0620ab4fa01e71c59e25562cad00a8f0ef394 +3056d58984623068272ecfe6a675941e13918369 +1d5905d4924f318070c590334da1321d9679a703 +69ef69bdb32cb9608e8a83e0fe93061ab19445fd +2550a27f3f90f2ccc25bb6d1db039c5e5e4317b7 +d71e2498ccd66f8e6f27ec47a78edfd19ada67a9 +d1cbd58629769474c66c4fd1218c02a7f0108bd1 +6f63b646a54e4fd99dc829f5c59e9cef765a7d90 +eb971dfbce994b1d5059c50cba8075b0d7b5a704 +b49b722fb3362d92a660383d05188e2ea6cd2c47 +a406567b826e1556d3c9fdebc4d8f5251431accd +ef237e681704f38a5bd4bcd9d1fd56eb99e8b718 +15bf15308b7b914bc06d36a7219149e53b34882c +0284399fcc478d4f94eef5940cbef172dedbd0b7 +e0b032f0a76945a39144744b715be6574b1f64c2 +f040464bd0687d9fa3d5cefab95584a564973d9f +73ffa728648ac4b2e0dedb0f62a09699434e5d0e +6f2d810709155bf8b085c23de5f128ce3daef428 +86ccedca76193425f1dbc0ee5fa2400867351ca5 +fd2de60a6813877298ef9f84edf48ce3cdef51d6 +15711b4a1e3dda8256101f826fecb7c018d1c825 +d871755ffff5425b343d8bde03345cd5863b6cb6 +2cf2eeba7b6c38b2f69bec30f5a6f8f4206a9ac1 +ae711b2c3740b25271c6e2f6e052147a59a6f02e +8e7d8848bbf34dad445e513770e144e22ac2181f +be375c3174303f7fd178ce0db0197ec9531e7a2b +0bd59a38e0008e62a957a7e5e37ada9fbedbe32e +43a95ebdbfae7ce5e776e0b3547438a39333aca1 +bbdba347dd84b910d13b0b10d60c939fbeef9d39 +0a4b1f129d141eff16386a7f50d30aa861305620 +0368d941fc4cb318a31507f6cfa8372c6c1f11b6 +2ca850e9729d1c09889ca5bb15fc116a13d4b5c3 +ca4cb5862bbb9608c144ec8708ecef6d7dd4b873 +f75d04f53d0fce8987742753f7634fafb71094c6 +e46f410405c31d0843e654b945e66f864a20e42b +e0cce19c892925132c82c2f1ad81477b5d08ff0b +8e3d68bd95c27a50c6cd02fad9352373b3fd7246 +5e848e99955fbb4ec297854d88aca8b925e22cd0 +8e0d39be69d2940633745ed970e03dd6218a5eb3 +efcc936fe9e6129defee9358903c4db313f4b780 +976055fb24b3079ea56d0e5eb2507a812a4f063c +47bd2bc5172cd9224d266afaceea785772973baf +bbe71c36d810e0ee70d7486c035ee0cd8b27fd0b +cd1890db1bc46df64fdf02eba150c0d195b93b4c +679e4d3837778ebdbcbfcfdd84e9b3dec68ae4b3 +43c80c79f53ab43bcbd3c70cc0d890412ab1b345 +131855a69b35df1b0910cec9e8411f8fec240189 +f9cb18c98af61685ac34e65c30efe8a7d9a33848 +edc757058f61ac774a8e1e12955c470037fb7bf7 +40f80fe783b90fd64c1b248646a9f14c5b25183c +1f4b244806e2518c805d5782a84a5849bf7f136a +b7e7b76aa9830a74f16bfbf992e0d5a2ef474170 +8551960ec5f098a4f4d4cc064d1765e8e6772aa4 +f5c7fb2141f5a9a0484557064d2f48b62a72735b +155a44113dd14630d2b5e230cbc76e3ad7df6bc4 +ca3113e3ee36e73873a499ee6207accc88af0629 +f95e804087830b0f9f9e64277dd6c5196a0237ea +dea6ff22e709c971f120bc3f8b962363e1bf26fd +845e3b0070e97ee8c805d27c19ce99022573f6a3 +da77608ca01951ed15f6b81921bc95e993be5bb6 +d0763e4b3f350575e5ec1a76ffc5a6d036d769a5 +bd904b4532a63c1d7d850058aa33f9d9c921033e +f55eb4c26ed71e6415243b95d48db479a0597324 +0af1cd007a9fc76d87ab94f202bcfc3a9afbb787 +d594b7c6326adb0539b7318fa3b9ba4230c69991 +e364cbac30c0259c910041f958ed5c2189a3577b +500be5e425935c76bf87f5edb8c3fb65538fecc8 +fafb3acfe68ac4ec87ead21ffb8648225b21d1fd +37662cbdafc9a71690c341fe8ed4b7ccd430429e +2b00739491c584c2be0a3c54cc19f118dacba6de +0b03073a5742fa2d45172febaecc0e47840db8af +30d48df9b68163bed0815c7b62f32e606031324c +f92307ee6f485353bd6ba9f9ef395fa2340a3fb4 +caf4265c45a13d2f7d15226c71c62e4660c48248 +7b462084919b9e1db70417707a8fb785a43e2067 +0e151ddd2f046793ff1ba4ed0e1d2c031f53783f +59e6d3c78cbfbe94dc65f0ff523546873e34fd25 +d3f108bead61024a4a631371ef12286129625b0d +ed70b8354692b68b4fd42f1aabb91d53c4d4c324 +e515b0f7d31893b068541d0bf0b5cd4a4dac057d +aa98b2122466afd27d0a9e0c70f282be56761e13 +032a990935cc1769eadb8422ec5776253b643e30 +64609804acb5914b509851714e7c651128ab2c15 +47b837abd56108db2124bf7a6086ec5deac5830f +828f89f64391f9499a131717ef48384242bbc7fd +496d0e0add9ca578a9e3209be1a96a78292a67a3 +38eca61281c5d787cd0e2ab040d454b559039666 +667c0618ea2b7109b7063041ae4dd718c85067eb +d11a12307d87a3c04073e87404b6e4555d2df921 +a561ff0d076adf82f939158b07ccabfc8700ffdb +8fbbc916d909c2b00f48e2cdcbf51976198015b2 +85bb67563172ac0c3340eb3feebaafbe347eb40d +4e198f792afa95edb2a55d9b287c2cc7bb499fa1 +18b42acc4c494a554513c91791de48c875583490 +414f362fe87453e94d7b9b861932d826d3dc693c +beea9c7dc1d9eb2e970bcf64ae9f95b350da8508 +3b4421830e121ac0a8d3c0419dfc3dfc73ba5b5e +54018a72e3f6b193e8fc24cd1140c1bec20cee39 +c15fbcfc07db9f3c93cea58d61e6e4138ad14ab5 +ad6536d89a6e44184a01c8757a0739662398e224 +9869177322e7acced78073e23d11746fea136d79 +f57a07d3f2b0f8e43611031bb861fa0f936bc65e +4890006c2033aaf2a22c7e1cfec035c3d6a6b0c5 +a7e24cd38d6d83fd9f9c1f757e30afceee989542 +ece5445fe303bd6dec379c700e51a20f6907ea4d +7139fa93805a085b08e23c17d867c2ac8b14d7f2 +ed613ae198f098e427ccebc1494e321fc3f5d590 +3cc26ca51d51bda6eaf02dd18d126b82d1f8251b +fe638266c42c704c1eb4866a38d0c56164a11b74 +aa78bec2242a877e3656a211904ed1cba3b8106e +82d43b0fbe8d0b1a6ab4a872db6c5746c7c73a05 +b7e52f3c378dec4e0e05cba7df85edbbeee442f7 +698670a36233aaa93d45e824de736182dd9d894b +178ffa6947290e9fa8fa0398568178fd010db71b +2f4a9a0422d6a9ec726bc937cdc9dee3ff4c8a68 +6f489b6e205d82b96448a43068a2ee02e1840acc +b1b2b0cc90712ef1a399c8a668eef52d0a500546 +ba160026ebaaeefaa717c6734c799efbda94201e +fc7bdf99eb5a7e94c10f1fcce9ecc203ea6e1c81 +98cb30738ce6aeb24fe1b6cf4468a2b6fb6cadda +91ad298a1dac5551f62b296980f16f39d1684401 +0ec7ee885a7bb05d782652d4cf7a8993aaf613aa +ac92c622d613d0bfa6d1e04d631f4e929383afd0 +65628345ec92dc55aca858e7b645d32ec81d3e6e +81bef11ebe58987ba694e3c613ef4ad1623093a7 +12b8a8610123c3ab4482011773e6eefa4681fa57 +04965c0a15abded3dd29150b03b580bda11e62ba +423e69e2b0519a16944decda74d11ecbcf5e1ce9 +bc39619d8aaa3c4964f3548c2e28b10d718d98b2 +6981b8da8a769ca57b9d657a64aac1e9aa2d35bb +c5b5fcbc0dcba6c13cc77a5110ae40829bfdd66a +30a1e1dc1b9c35b600d1c2968a7da210f0bc1a3f +0652ccb29ae17a29cb642e184cbbc3791530bcb3 +a913fc5e5633fd0a6037ff7d40f831f66ac83483 +68a7fafcbf055b92a1464819ac393725a7b5efa4 +cd1184c753ec41fbf88d2688df3d29b79231c857 +16c1f154ed36f48c7ba8e264dfce5af71d6e1ea1 +aa8145bf9bf8114c9528c309f573eb44d7450d3a +5cfe7c6bf6eb9baaeb1258d3ba09fd06724615d4 +3dced74f740952c8e5f8d9a3f44cd5ae8c8b8fcc +434caf4e0832c798a5a46e949aa04954b79c0d74 +9c9a1935d2c07c4d1ced89640326cfdd2a5b38a8 +1de2fc199e9a2cc64808b28c3ab136b376bc8849 +53cb2e18852c90d2f572a0c8065c5ec0e491af5d +80f6790d17bdbfbe6100405e4ca282231bc129ec +bd630343acda3b8254825893d43bf540c25ff65b +dcbe57e48939c945ad5a30b541aec050acb4cf34 +eb1bfd41af5ac50dbb1e7f8b617243bd9ee1eff7 +d98ca8b2e07ac1d67499d5a987ff35a0b68ce453 +11f317b0d235365fe466669b193c300938a9a0a7 +b0f55b1709346729aeea7adce0da1c1bcb218a27 +2744537a0fd616479a6f22b9adae6ae8cda8896d +98ce92ee23af518cb983dad79b7e5332217f1db2 +ef8e28bdeae9bd1378b29848c4b4607a40443ca6 +50e064e3979e39384e5ebbfca8ac0407723e59bb +d86af34d5b15a0904549fadcb1eafcbb043b0d6d +58c4d797e8a33222fe9599f36b2d066116d09f2f +bf275d3d18154c19c8838fdea574de696e67620e +7089d0b49dec804ede626129460c0560fff8f5ad +4a962febc4362f259d4f48528917f29e0f2ec997 +6f5c55119bc985b8801288c8c26cc9611b39f010 +5a327575d2ad37e56a10f097046dde853e6aa2cd +db125de3a6a5c0ca6c4663e947920f7129ed7c18 +0aedc6bc13c891cef40fb655d4187473ab737279 +facd5540dedc301a2594ac024863496696d499bc +8e88327fc4811bad3b220b28ba44321b707881ef +297924142683e37c0451597f81051df85cbd1d2c +f87a6f254359f4330c5de5b96c477ca38fc95ea9 +254993dac988e11231b1195146af41208916c690 +1c42d0f0dbc82cdd6bf922991bb573acd3275025 +b1c19d59ad0ab844f5174d847705d088f774a83a +a4ab98c6bfe2f453e406192980c6a16fc760085e +f44027b2b3d40d50f64a2009f9676dc2f9213f54 +2494aa2253aae1674e536ec007d4da8b8fa8359c +8df626a56640082f633dbc0edb32d1a3a087e451 +256b47cd5cfb1e1de06dee97293f2d1f2be5fd56 +d0a04fac342eb0c67f8e5bddaa5a4f97f904c765 +4d3ad85a319f527183ea4ccaff4fbac95c48e4a0 +de6025ae924a8a657bc9477e71c1b183131f7b49 +97daa03d4ed01ccf137d3c5c94b0d1660955f5e2 +4e2316b741ea9cceb84d2b18c3a914d5e1d0a2af +50de82d8f7e5e3cdcc98f3f0773b0b2ab6578253 +bce847a7f327bb10c4e8fb49a2e0fe760fed5714 +ff64cf4c6ceb51aa3fbd8310f9510cc3f3f16054 +f091d5439a0dd78b52959aa2beec5a7a11047c87 +c68f439b7c87d22e6a9f919d33bec571b542d878 +35e95a468e6d59278def89608a323239a7c2a31e +9e00415d17b4478ccfca4278d85001153360ad8c +c0428bdd9987d5b1457abd101bf0e60970fb532f +18c85efc7837fcd4447d32e6543e8fd96c18f872 +04551e68c319e66b32881395b72c712b3d895faa +64aa0443dae19d8d274121985acda48bb5b13b93 +c9537cec5630955f1f4d99f527be3f883fad0d26 +6c5a56fb95f508623acbb3d772148b724b578387 +fc0eb197e2701f931c24d3234ef7930e81c3f3ee +a144be04d0eaa98cab2f9ce2c1f3ff2986db7156 +e2b1a872cc8363b427577df27c351ace34bcf3e6 +58e7ab7380d4bd324ee3663b7fc9042b98038673 +351706f54fde077f05d439ea97bec3de199e09ba +149cc8db6d46890caf8ef634214ff59cbb8f8d97 +fa5768b69093bacfef294e2e869588b31a4c3ecd +a1bf1a8f5a4f56bfd29b40fa60f5418ea42a76e9 +b426368e3c63f6242b10794b98ffacf9a931f9b9 +6c77b1356eca816e566b94a278241041c20470ba +1cefbe3582c247e5d99f6cf517e8099967c8a6ea +5c69740109e85724f539b7e12935961891c65a30 +9810518ccf0a3c47217f6601ab1dea5389951898 +74e23d46532fc6844325cdfc1de340d11882f88e +d5d072bbde1fd07d9d53d5f9758504a4ac99b5f0 +68463d6ee6e7ad3dfce164f2e09d5e68926a4b6c +0760a3be41e252ade9edde0bea93edffaf692344 +0611ee3721e0f1f6d46ecdfe5069fabaea47a272 +1e5d806dfc8d1cbdb2fa8c3c5ca5e2d6e29db365 +3cabe15632c4254333d54a0c2682c67e855d9fe0 +194720840afcba4655dc8c94fddb0f817e0ff356 +48d9c8852d93dff7da345ae92b4fc273282d0fb0 +e7aee25c66a5ca0113acd83746d6312c16978a58 +3ec2e929d7a7b89672898038afc81564fa26aa4a +58d1d761f8164dd59e7afa047d910126169427e5 +9e6876369694fefdffe353005ba07c9aeb3210a4 +3f18ce1042bfa4813c502277727620f5e7c1b5b9 +2e63025a5940b045948f908297697c7f1527ff35 +50a8f64d5971be72c20aff88cec4c3f4d33bfae4 +c050418bc7a706f5ec32e3185aeb12c8dd294604 +996fe73b49d602d0fa1542f34a0a6264179fa155 +89d7985ae6fdecb08b5d7b34c1a81fdba080b2bf +9f5481748584fc6a0206bdb5c4355da87b5875c8 +0cda53bfac6a4e67691cc10e359175babcc0ee72 +9d5cd7527e2aa1a02bc8c40de740919ce7f13b7b +9a6876d2c67a1f2d51b4325580b7d76e079f6f1f +de8005ff7a1a4f65baef21f5945c01934c1752c7 +312ff5d32d9d8e92700ca438a623c9bdfe9f9573 +d73ed59a4039629b3f0e31c1fab4a6b8508d72d0 +270b04ba86d9a7daf626c6d59b23f632268aec60 +da63e706176284b5509ec8d9ce56578e5118075d +8ea7cb6c06ba53a13b5b342bd90222ef58fde5d1 +45e30c1f1c71ae6f1c3954f3c3e3558b534117fa +5c57ce6e79001b4ff444140751fa28f36a206adf +ae377f98078d0aaa53d31ff07844e4159195a6bd +fa7848f24b9383f2b32acda473decf9b8a36e314 +279d11183bfb50566064eb5db08d69198a89f9a6 +4cceef250aab38fa6f08c9427bf3d7ed7be5bd22 +79d28966c37434ca5dbdf46af8b3b6b1918b43cb +ec5cf7def10c51865a598a32cf7567ec50b501a3 +45cf07da481589fbde460575a00863f5e4783e9c +cef0040eb2704f2065135d12a2373b0aa58ff6c7 +4f9bf3f2eec88946bc503b4e7fbcddf6a316d062 +d8683d24cda3bacb42746d6bdcd2b27571bc4134 +be932506129939607372412af984eac65ed8594c +647ced600e8ec3de150f7927d37f4a1366eb467f +9e1fd503480117fbd39db138496735bc3fc7e25f +ab84175ce8e0c77118ad94e09352f2262008df73 +5e75b71198f02b447c5fc1676a659227a882d689 +ffe847e1f105b95a1ee6107bbd3c1098bc6652eb +4eccb54368b420216f1286d273322fe840411025 +f191c46147f1b4b0cd97b4feba3aa63fd1f733b5 +637de03c36c28c6a90b5f8a94f6644348cd5526e +8f55d67011877242670b36a902668394d4aeedd7 +1b6e3e82e8f9b536e313620bf9fb099227977e44 +14b9b31a0d72fbecdf56600719a071257d8ae925 +54f40dac31b93220807b2c3208fb428e642572a7 +e8c5bd44ef6d92bf9df8b1396fc9841ee0e16553 +cbef753dc615fd59dd7da017444c1e3719a0208b +0677a6e7ac8e8ca2e5a55241fbfaf2762265790d +479df35be1bf5d7c3a841910b7905e1645858623 +947c3de4861743223fa83cfd99e8a00ee58e82ef +56afad5bb7b5342e65d2d84fa2a5eb0a8b7c81b7 +8c10c102695d5e6c5e0db10c72210a05dd308982 +d436a04d4636bc92a8a30fa01113c671099cc0f8 +9f1d42fd65f47a62829cb0ed7b98216ffbff5da3 +0e2b63b11e7fe156374074b1c760d23340857f30 +de0ced8b3d36ddd1b36ca0beee51a7ad1b5cb190 +d11e7178fa97742c2afc8502eca023c8cbbeb2f3 +6d3fbf7ccb1ca062f958f7d237081c80f69744b6 +e5a1f108704284670be96a31ec70a48f8d8f65ac +9c798e4a40596f093475d02b12d58657c72b233c +d76857ce9a9d0ec9eb7b8e8a446515a7583e1b3b +f9f2a592724a41b10bce58739b52131d4d674803 +218b5dc556736950e40490d3ee6d550b780094b4 +d5cb083d1aa6fa2699aa38a215ceeb8102040d7c +e08f4873c83e54409690f05672830b220a4acdb7 +05a71547fdce0e0e32b166843f575b427f518e13 +224c8c299c5b520b9c87dd00687a8b103bff431e +07f6073783804eececeed66a025ed5163e319e5a +0616b273d98b6b7a5cf573baa816bc5b4c131b87 +12f2db24512e450f4e87ccb03c965c61f5abfcf7 +adee26fc3c0b5526204a209f60c04932882f1fc2 +1cb36ce34d895767a6dcfe41f017166ec0f9f855 +6377404cad7bb8af9ee34ceeeb78a7dacce95e9f +47d69950b9ceae9ded78bac4562c1599443b1b46 +643e8f217206bc2ddaa7a2cb2c03545b9780d36b +ab3accb0686750fc1b2d8ee28fd058b536bba4bf +794c310c1c1aabaef0464793c977061d6a1f4731 +4d862111c9b8648c4ebd74d9a7794780d1f42851 +c5d4d9ed99a011f5176e59bdd0a6d1742ce8fed8 +dbe85e6b3435574a0ed0a0090aa88fbe52eb2093 +0936b6d135594e94ffb695c91ea1e5ad43a27d23 +715940d21e2ae7e41f06806d4f83072d6624a107 +a3cb1088cc64d3f9794679a78bd753d7b8219f80 +4326bba7874a688a1275dc248c5a610c725ac4bd +a703385d8a8e52ef12eca30dd3228c81689eb8c8 +c868b823c728c8d41260a07b0acab5087fd9044f +01f1643ee2fb042026d155e3dd2558501abcd802 +45c549e21be00401a674066086c74f88358cfb96 +3927415715ca6a162e89b478914156f761086652 +d06836512877077939266d16e82617c6404e7dad +2f27b138d1ee8049279c25eeacfb958d6b8e64ed +98f0c3b29b2d4dd0aeb69b9cedf062a77a15d207 +e08f92f2fb1ee5e565571e29eb60d3982b8ec17c +e5f7318c47698e3fcef72bd25ffcdaf502bb719a +53dc3a8dacf91d92b112b72b698ee5d7309974b9 +5d2279bcc8c1ad8453dbca7e502e5794fa17f555 +c4066c76b6c82a006d10b10a4f00b9d8753c9c4e +fdb3b98e73e17e98e69b5ca27bc579c7eaf2a0a3 +49b54dbd5edc9ab4f8f751c8e9d8297e53c56375 +c147129f11f46921dc0751872a12660c25504942 +18395b3bca008ad13733e6df91acefe6fbd4cd21 +d3bcf7302a51c1e5000fd0f72d4f8ad5f230f909 +c655239b49957384953811ae707b9add4123d7c6 +a448b669940fb9d5cbb99f4b828f7dc6b2d14fcc +b584c9710d5c3ba96adfceeda4487eb58c5d85ba +86480e345f50a132b774033f5c14b4fbccbb7c71 +e2e1b2ad5bcda9faa47ad00bf32aabc403d616d5 +a47114c7556e7e73f6944a26b3ce6e50491cccf7 +03e67583de0a0b3adb0269bde1746bfcee599185 +2d9035d81ce9f7d59722bf9b5b41748efd56c3c1 +8bc45e41acdeda13ac44295f84927374a21229b6 +c6092e45eef3577aa87b8ac4b7e6b39bf07964a3 +67740262f2abe5e9e75cfb32c2a640e88143caf0 +6f70e93f46bdcaf82c0cf52cfae9b61b6205646d +a4131f1a99d8a257787a401aac53818dc9d6f89e +994d54fee264f5a15ecf690448d90a75b5e330a8 +f1941dbd08077b4511604ca4f3ee8622cbc3c4b1 +171194436de640b6570106c6e316506d328640b9 +b55d2513b7ddf5a25bdd2173e1e469bc7ec610e8 +a76a666595787280d2d7707f2609cd87df490b80 +da9cc1f16e9776634987361e94d476efd9825fdb +9dc8b4afa944812a2a47a414b6c4d67f9f52347e +2710171bb91691cd611ef4f2fa10d83305bb0115 +48a36b26deb226baebfa9ad6b108745cb3a5e9a7 +5d8fa0ee9456d9b8db8a423d5babb81a184ba6e8 +1003042311c4c5de6056abef616ea968ff839ae2 +2a9e13c05d8c7c3e21adb348baaae74b52c4029b +89f6fb91d89e33abae20f1e43fe0caa0152e651a +c9804a0f84d3e770fde3414a3a1958bfbc5d63cd +24ac1782cd4c51cf6feea6dcd49bea791d20b246 +b25fc6be2f56569c0d054ca786eb6be7bbfd0b4e +9649c0e835d3d57c3d646950ffe98d888a3d6629 +f9acdc7c243891ea549e2ea9424f10635cdbc61c +1c655721d09d9a5063a0e794f78e7d325c4619d2 +44eca901d337c56cacade83dd20cc99b48dbb15f +7c257e0ca7d95bc0519d052f7366c6e195736acd +5b2fd02ac7e6678724229436b7e38379d061d3a3 +e02469c669e2538c91553ff00af93e8b68a2d4fb +e2ce2868541b5619ace23f0b2039f91523fc4599 +96355028158cf9b5814c4caa614b7857e572a051 +2abf9000b65b20c09e37bd5ec225447b37cc32a4 +2f2e5528011a5fdddfc194da008b591b63e21191 +9815b6dd21a635fbafbc6a737a9b6cf0bdc981a3 +918be8a89d667f17a3956f5cb6c5f9517bf47b13 +1b18252107675b00ce034beddee74fa2a15969d3 +e0256a2c86d9ca20d3474bdeae12a33887270754 +2b366ab561d3baa75daf68ec1fdd12812858e426 +bcb23258538636d5d1668484833411ef17210cb7 +2bcc6e04c2bd89ac2d0a662edd99883810521074 +19f4dabeccb28c609d64055634e10c2a9b2596a1 +4932b2b65a725eb56ef8d40219c061c178496250 +9dd0cd225dbc654cb2e85fde7cc26c751cfc0a66 +4158cdc3c32f0c18910640559c3fc85e738c0533 +4fa80cc2fd942b9fb2bb63d4dd525e8d4da51e27 +7b10b39ada3befb1c397a07cb0aafda07960d3ce +671830a1f0764d26ef2ed99c925a73a2e7399fae +1deace23c02bea665ce3535e6269f89a0a1378e9 +ad3b61c096905f42d3bc83e77268075de54914aa +6fd536dce54a08007ff110d7916e8c379f8013c5 +23f534167393770cc33b81e09266e85dd2e5b05d +80c0652a57712325859a9389d1149a288769257c +a67091a0baf75fe9db27676430e722eed5156bf0 +f8c2fd1a45447d576642b41aab6f71d3576955e1 +82e90f5e923a11843c69c65cfddbd107e2251c02 +68bcce0060bac06a73d78dfe37fa5857c0a947e5 +3e035e7a26e64ddd4600fc383666a4d194f8c103 +a882b7c8b186b1a637a14303c6154040d2ac0463 +f20e44a97e6e4d8c6b8870808d49336a491669ee +0e120fe943db8d6eeca347e66361b966fae2c52f +c2eb8591123a05c6c3bbf3c0439ecbeeec03d23a +0f9f8e5a5a6149d2e888091d338ace360b08da5a +572a0bc4491bd05b07765ab4ba8dfe878ab16b02 +46b7b907968bd74024a23a872d258c4ab1159da8 +117f764eda7e4d2970c436d4eec7f4cab77b42ea +4d8e5c50f5c491a4a4a596dea84dd3cebbda9fde +8bae6ec37fb25cfd49eae64d3f346100316401db +0d8b5cb1a5b1c668cdacbdf71f3dd3c5c4273075 +4c278803e4d9788c2e08e57a4d944e0e45216d18 +ee3711f054b261c98d4820d6bd0096316be52243 +0846ea8577df75ad007ac123068e3e784865b659 +de4e48e37e99901816a96022a590c9435631420f +eca59fababcfc909813dfe68dab5705c7dc2a422 +c0641d5434dd1719206c257b43fe7475b6e11c00 +605b8ffa176e8337f47a131b7fd247d64a9304c3 +3ac1c90c574b87032de4913b7069e56527e9ac1c +8a20a7a574999f13c272aeff2f5cccef17801b6f +4963a1d62d8dcb6d0b3b9c2c27d6b77018294719 +78988d252bb6627608a87b51e08c7b073c047d4d +61fbfcd8b72a590f79247e90305d34a7db7792a1 +e5839e212faab84f05649652c2a767c2e5786845 +1179f748ac0d033d046e7a301a17258f49abb69e +84db5c8b71bce2bc1c86c26b4962c3babb2ff05e +1728a9fdbe6d62d375408f593f0ecba1dd48518a +cd5c1fbc82e4c9b1e484c9d3a52e949441d0e53e +c73c1e2cecbca9e544f8dde26ce0007755cdfb66 +0b371f11a28697670a48f32355ae54718eb02f71 +85726d15f2e2c62a879cfcd11fb1597a76a6892c +7e2b9cc47b641de67119392dc3c0d7dbda14edd2 +aaa58b0061c39acd1bac200a60b8b137841b0001 +9816ef3a8c7f81b2ad4f472fb15c796f0cb38c66 +9aac0c256878c206b2cb14aca9990bcf84d02082 +95e3e78f3026b558af059fa84d98462e1de0b500 +efd7699e848a31ee8111ad8ddb793b69fb0995b3 +63c67785035a7c6f5b6d55bc6178e24580389fda +836622a7330dba6a0da6723988b9e7c88e99df2c +a8ad6f41f3ef887b4ac94d8255a808623fb10d83 +1bebab793b3e4a673112962d6d7cb2fb8b7c5efc +5c1d6659d7e38d3b4a6a7f959270440f6cc50240 +2a73e25c86083f9191528d4a763886ac10516748 +283d1998cbe503e58eddbafd562fa3d4a7136712 +4e9bb9b0a461dd8a9fc9bb0696527da9d4df6e12 +0b67cfd7f959e7413fa6c0f807f4470f120dcda2 +1aa2fa29ef0f06fa7911ff3d5e0e1fcaf4293d01 +fed41f6cbbe1b7c4e267f296b9c826cbc104eb87 +ad49fdc34d6134b7c018d7ba5632fe537bf210d4 +c23aefd1c32208a456e2d1520efc189ba7e64ab8 +24a5c61ae5d81dc9eb49253b6e01a1082dae877e +de2015557d9f940913441be0acd3d56f4dca7625 +a007048f449d3d84fb63ac884353335afaec64b2 +bfd49dcb4c10ad5c2c07ff52d62174a1f3f94f52 +85ff8b8718e4f853b5f037c3c02a2a24d3902eb5 +5db0878296645ef9479c20a80ef9149ef4038977 +247ce34ef0ca21cf63302d3ef7f465b0a941cf78 +f2150d09b5b0f9e32bb30f9cdcd273f6f36c1ab8 +e1c0a6d93cf9c4ab400bd7b45dcb79fb6f37e6c9 +b1fd46c2341f592a5ca7ce0ace524626c5a9fab8 +94258743828143cfc92c8399ce0bad52da08bb0a +41d75a50c552f3fd79d2f1148a7ee91a3aa9721c +07af0f058e33d3603f14d64f77e23bc8db26f112 +34b18e6530ed832f0d26a62cf5b2d15576543de4 +0b3e2ca9b8a7badc3f26d2e885fe9041eca99395 +5af42e1dfff690931957622d428d96017c843678 +d1baaa60a13c369aae738dae53defa3785a6c711 +f60b77e2c9527bba80017f66082f24cf256eb3da +6a2a7d0dae9b2900dfe44a0c682fa9ecbb130409 +1d9a6995ffa7fc9029cb8c3230f6dda8849b4e6d +23a0964044daac7200d93511a40be0fa648924bb +ad62ab3d638ed52b0d0138f2d78d7bc3dfa2bf62 +38f72f576c0f005b1f8712fc9770f328e76779f7 +047cc1dff6f7ab024a7a01b0f348ba4d56587ae1 +e5cbf7b0aa68ab41e82218de1284f80f074992ea +66a221ab71a731ad4c2c478bbeacde4b7fa2ea0f +bdeee0a178760bfc86e1fd7d4594cdc40c9be300 +96225e72ad49e26b62492933742edabf265d8cb8 +7fbf047718c84aece38b1fe8c4d187c411742700 +fb76fbcf4a377bc3b0048f3575ae7727b61d3c1e +68af9ca915026ba27c06fb09177d9724690d2439 +eb9874ae4fc5eb458a3c90a33aed04007a93408a +73f57bb7982e0f63a9e49d73bb722fb77b129a00 +bea5e7081049bdd8417ef8a95105b3f07eb1698c +b232eb6fb86204143afb560c8bf19b32cf7634cf +3509915cf54053abce78de68f29066db39d53a64 +7b29c231b754dd692f3fec1fcb2a84d820379ebd +ed10b9e64b7146fd266c8f081308aae5231ba809 +53af246217a52b43a09163a28b57a343d3fc9754 +1b66d8bf25e0e6311d54549167448f93a30853fa +0b9c392cdcb2fd94d0758717a979675e2d6fa658 +fd75eef7ffb81af96f07fe03f3b7074a7a2352ef +8c655c4e6f11973f7087c9a46983eaaf9dfcbef3 +14f474b84b249d35cc16c7dad7bce3780f724002 +0bcb0fa1f81b086b45f38cf0a277aaf58b9f4467 +aaad0d9bbff20bb2660311bb6f8f16fdec905d6e +24211c071be5a4ac13bf10aaeb9f72ba7a02bba1 +2bcfd1491f904b10b78e4c41b4abb29d85b90020 +c99df5ab7d1b0753b1f73233f39bcb0813b5de0f +11ede745157b5f3754b1b3290421a93d51478b93 +df60e035cd72e5aaafdebcbf1b6d48bddc5df3d0 +dbd43fbcc41e46b96cd8a2b3b4743155d7f33fab +241c9246e49d899bbab6932aad4a6caa48a53c12 +fc73a0202dcbcda51aa92101b7d851c45db4a4c4 +b6f6eb90d7907f73a65931ea291b423cfa30b64a +a089a2a76fab50019a25001a56d48023f8094b81 +040f5b27354a7989541165b6f17398758bec1795 +54db5cd8d4d7fff2e9265618f9f41d04deceee84 +ec52671def2732383f387e55a3bf5152046db869 +9ab25d0dea129411a42380009a2aae3048012075 +5f3530b0f9b0e597467c1e625b9d4987833c9e1b +339d28495dde0cc63849a55b96ced816c7d9d032 +5a489d2090c5af754a1e2e185248d19513efc4cc +783713e1cd64935240f687cfd3944dc38e33b57a +b933f419492ea954707d6745ab1a43c3f3789460 +afa9ef4682a3370c473d6c652743652928bff1f1 +62bc6e7e88b052400a732f1bff451eb922651d12 +671c30116bdf0f14dcda204bea96899e4699f15c +aee9d32650a17ed3ef812505d505937f7b02be3e +30e7267f13f12cb50f604503989b7f30455c4b0f +479cb04472777a41d470d9382bd266b13237afd6 +6d79def0face19bc275cb8d32608e451bf0b39e4 +d524e6ea2e94554abe4423732470bc962aa0fc37 +384b5dd23fa9cf60a577aa8c1a22ca862077aa5a +99e97484b13c5f85f6547b7374472acd560f5f78 +1b7e470883353ee61a71e931445a2ee68cf4548b +14bce4218302d486d9abb784c7a61414b21b285a +f106b9d364edbf597f189d231470bec201d3b0b6 +3f3ca9cc85da8dc2dfb3780586daeed934c9b623 +f816b693c07971be77effe27f38aa6be259c2b8f +966a1bd7031cfd4aa1c67425d8513666e37d0e36 +5a375adb469c5df0a82a3cc5d5782439605fbd6e +1f90da8d5178d78dc2a284915c38be132467caaa +cff35afeec7e533b726a28964820dfaadedfb19e +81d1fcdacdfe299157afd9edca619acd05ba8e28 +e5f8d91923cea42077a263a187f24702c6efe6c7 +e1964767766938bb5f381f72543b01d4dc5fcc20 +44bafa51620fa90ed7dd32bed35ff345649ea47d +3220d09b4bd74b1cca8b4182dcc6e46d3a8a2b69 +833b04042608a2aea3e6a2b7a2b648bda6990817 +359e18606c5ad84e9b846b3901adbd8b186cc595 +122b48d8bd42c650d6d406012cf76faf7995dab5 +2d22d3ca54882695e0fd22e6c8359d536cd940db +a7afe8d88ceba1d6bacb0aa13bd53f613af80bc7 +00429af86eff3b9b48f7585d2d0357c73929641d +aa71e4bf941c15481345419187667109c47d464d +d6d9f569e76ea6aa9a5001be190eac1ad4f4cfde +6af1a6fb5415be283ac066e2bae11e38781bb966 +2622966cbf4fb998f4559dd5c9af968b9ada7904 +7af07818842d22a3592293752df519c02458a330 +2168ea462d734d1ddf927f22d4b87f666e5e528d +1f028537fcf274a940c09be24459da7f3f66dfd3 +f4cedf091cdb5d5594bf0579b2b07e411742c6e9 +32adcafafb24995980b957abac736e65766bfdad +f43013665e53aa998c82574d662a9b6c16b585fb +9f57aa2b8fca2596264fb705176e468f96ca6afd +28a85dc6f2cff10844bd1dd0ad0874965d5e6007 +8b06f68d68002c39b89af790f1e0cdbd9b12c36f +885d7c1e41c22d0841c0a2b10db0662fd5619f35 +e1641da12fd73ec44d0927f8d2eceacefcd05477 +da7ee6004d27071890e22dcb0960415646503d0f +7487d6368272fa82b638c7ca2efce56d77451f5f +3ff804654ad7efe3f06409429b9907269ae29e90 +52e45aa2eb85fe39d5895f7c9b7b55b43a0bc038 +059835254490a9dfe17d3e4600d459ecbb46a49c +f5f07c844f29f50ade7fdcd744df2db4ae028e8f +3015c09cdfd816546f02e3c72dcc87b33d76183f +cbf5a80e3a10bb1bd69a657fff47e08ac44076e6 +689fddf3464fffc82a472487fbbd8a968745154c +2fa2fbbecbfe8073637a0e89c96e84b3f512dd50 +d747cf976b0d02130cd84377e45e7d4565b8b977 +79217ddce0ada9df57b969f55cd5543a05ae44e9 +83aa1a6678c11a628e826186e6f7a8cdee6a74c8 +bacb89507dddae9799b854514ec58a373cc8d18d +e43cc67a13574c28f1f47ecd110f7e753d451a4c +d99be7fc55f6605e3df840dca460d1a0a19ef732 +6ad7fd5433f0a86a19d448076d86c6128ffb222b +3872f892f693139644fd1b263ade87272746f00e +faa579abbfcc76548b7b4fb6c1e5ae363789abcd +8e6654fe9772b35ea404cc13f54218ee6a5abd61 +8eac08a1659e10ef844a197ad8d371a5bcba528f +26ca4bb1cbd817a77c09ee9d13ae94be46959605 +c3d87b077cff057441ba394c31651547688749cc +827777e3daa9cb45e07625d881a9aea33ed24e3c +8b168513c59c739c011af2f0c09ee5cbdb1b1a7b +2c536c21bf168fe1aebd5ab1c8e139970d2819be +85ca45762f82b12a00e6457454791e1cad9896e9 +05609159a19b91c3a9118877f863cc4f57836673 +a4997757f99b79b5e8687a2614fc2f71de418af0 +d078dc1e4cf1bad18315be7fa6a3fcc68a20d64d +276c402bb28b161d6c73f0ce272369347e9736cf +cc66155f3f2023c3c66b3f27682a1534954d37d8 +0b49a2f9f816e9690f8b59e5f6b54d4deaf695ae +07d253f3018984546453dff2ac8adc9b6504f3e8 +6d9ab5da7bf2d7a84dd0d06b16a0e654946de80b +36a6d4337a5a4450732610e7aa27b946a4bcd93f +d616796818f0a729bd72f6620ae9ce6d4bcdaaee +9e56fc6b65ecacc853e77dc607fd1947068ee5ac +df711a02a2f20f6734205cde678e9f0aa6904709 +fa422c483e51b35e828ce724e320b3d4cc1b9749 +78c01deebb6c477d0374695e89a32e753609540a +724c7258a2c35e3135d6b7d3531784e4630e5f74 +7a7abfe73efe1e36b388b65501b16fc7b5016e01 +5d4823d44496c69f9ea85cefed0b66f3af988528 +47794ec44b2bf56090b6d0b922053653f1a18f5c +950e8bbd9de9c0cdbac0ff9bd69fcb64268794c1 +a8abf040dcb86fc4932d6d1a6a3d5ae69719dda6 +ff1c6bcc1b64c1235da9984fc66cab14e63ec526 +130e6b518988b330ecec2dc199c96378803dc130 +f1c51199e3b7841a02060298dff7244896e0bc77 +132eba05a80c380872c9f0b0f29dadcc6a7ff951 +c0f996b85a11a680c0f95a680dfe08cba62dfc78 +aecf51fca000eac6e53005bed74c7c975bb02ec4 +f1ddaae4cd7ecb9de0b51782d017eee5dbca257a +860718af6151ad972ffc7b77021789c49a883d8c +cc14e7371abb36343c5b2cdb79ae93737364403f +28b770af7c5cfdc57c44d6ab6935904067f066ef +bea9fd27b9ffe76d6a3ab8b535e9604d5c6df304 +82a72afc15b63f6c27fb1249ad8d2d9f85cd990e +d2662badddfd10a505f3e776720ec9cf6ed575c5 +664a253e593580a61e6da6d60d1051342205a664 +2b34f8cefbf2c45f1e49b4f470797718410a04d2 +e3fc8cf5ba208834951c21b96d76b3aa88a0c244 +157d0fa5978103864e7b183267464d9306fe50f6 +e03610ff9dc39cb35a236c20bb36773d0681968c +981df59ebce85fbce5642a74e3c273891b25411b +7e8fd0cd650361318a694cf7f9cf6bda5ed3b1b5 +096c3a35fb23f658962803814aaeb1912d5e4d25 +7b1e7cade3a14c25f1712b5b9d543b4720ee1752 +f63fcaa64cab6f17ac45e57055fccce225440505 +0d091ac5bc71b18521a32e8ade3e00367e5aea10 +06e0d152d36736b8355ea53b5da518a254078d24 +222c29951c105959016648d68e52bc06cbd3bc1c +927e33577124cc69d07dbe642cee909ccf7ccb03 +76f85bd0901be8986ef172caf0863b101c1a6123 +66672a0ca6462851e545c598977ab44827dc60ca +6c57cbefbf4642deb06ffd48b7600242c7bca86d +5cc938a2603d7ddc20c83b488f6bc7be8bafa0b8 +828bb79e31942a219dd022e9083dd20eb09f3d0d +0e5f5e2d0304b1fde6b172b430ba8808767ab575 +2f936c94172e7717e12656eef320a619c503fba0 +88204a1fbdac059fb060336766e5dfb5e08da667 +068b17d0d05146e6db606baba35193ab3cd20159 +6fcea75eca2796eb153caaec5d4de9c4abe7fa0e +344addb6f8240a2bde845ee43d8020da8f7ed2d7 +3186f70c2b53949b0629bdc2b1ddf04c0d1021d3 +af4a6d169e39f9b7a7cda44aa9cfa023881c9323 +264b078c6df792db42dcd69021690f507d1d2270 +3bd6a390a1c7888141975a48ed0a6689c6e2d371 +5a5c3fac4777990c1f377384aa1be0a60f14e0c7 +61095bd7fd962aa623b78f3756ea9ddb17fdc328 +21f59eb19e7cc76d83bac58bb233eb47218ac45d +97ddd0336729a2a53d0b5f9cfd2334f73421ed24 +249829457cddf0f1a9d3651e67721a32ac404e22 +568d7c18f99c4ff38a592dbe01cec2a7e9a9382d +1c481f7cd58d81858ee635c91a29bab245e0ff18 +4e64d9d4d5188511923f571589a589ddbcdfae12 +f45d6576976af58f8dbaafbc672a16a41ec92443 +2fad73a0de6431fd239732606d03dcedc6ab1920 +34eccc91f0baa2f6511002bcc60e30704b1f8b82 +d71a6860811645be4880941f7fe26ec440dff47e +15087243a17c0a05d7437ce85f1b802351e889af +f7508232ec452da12f85bcb34e01207a11eb4d2c +54d38277b0c75d2c17874edd2b2c5a250a2f0a29 +0af153efe4f3d98528f126fe34b021588e2107a4 +8727b83f4184b94dacb49768cb9abdc45e63b2d8 +fddb92e76a0e170c3009a932c5218bab041d9b45 +17ba30e253535834cf3ccf5c89ee0984355e5d56 +32a66c598820a44483a239536bb5a49fe00045b1 +31649b709dfe8b3a58a6d03769fe0bcbc2299aeb +d012ce536e82ecfba4c4917aa1ffee2fe65d03b5 +3d39c69b6c9523a23d4537273f7b9b58073a74af +d025c474f9a990f28cc1e460be3ea1a0e4db5b5e +42e1c6ff2ece64619fca26ddb740f2f25f9ccd9e +a1dea8ebb9e2a1d6f1e15724d69b8abc07eaf97f +093d073a9b476ff69d916cc08f2852f59d06a880 +722ccd33662ff742736d2005c0558c51f93fe506 +76f2adff7bd26cef8384e6f1b20b048bfbe8c57f +335a058b9941fed98348435d0962306bf8346ebe +6b737bca08af7b155c4d283a66f5f608b0ea40dd +27b93c8defb124e40077183f445316eab8513ae9 +a7ad71511c33428ec3ea097fb65d434cb22d4752 +28bff1c8a96c3a39db2652bc6a69e986d0c77f71 +b4c5a435b10092c8bd0655e36f0e2914d957dd75 +ca3169157135f70be56d1757067a80a183dd0de7 +a4d00badfd9930bc2484d6c0df4b41dd9c152d78 +5d3e7beffca75a153289036fb98c2b49b0c6e26a +f70af7226bf6b9ada686a70afb899eb879dc24aa +9ee7169df55852d0cbb9c0e1a42e597e083a190d +a53a5c9ade8c49299819246a430d6fb1943093cd +b2ee04b7df92e1280e4859d533baeca498e5433c +fed84f05c3f310951d8d93ee25c9d2f1bc1fe2ad +319f9e395e64ad2af0eb1eb3118e337b86f12618 +65658423850a3edab6e25577f7aa94ff42eebcc2 +c9799f7f40bee2ca46ff2c036e97d7730a505c2a +2c82600de5c34f1ed6d05856ebe6579ab90ef3ce +c6dd7baa055fa3b03feadbdded30d3005106e765 +b75b35302870ca1269c9694b12df5aec053adcdf +8c5a4fa55cd7170aa7815fffed70f75f8d9247ab +21c25195090a9ebb4a6419d58675d2c1ddb1a19f +7b28d48c20d08f570a05b3f1a58865cf90c4472c +0813f33b6eafe88a8af264d580a3de978fcefb5a +79528439eb4029d3a9e93c55b1221598a496e063 +923b1e75e9a96644b84cc25f9c4b31772829a644 +e92ab0b843916354d70b2fb02d1a9afaf696859c +e9b50cf7a07a44ce077db9ea22cb6d4bd5121330 +eb1b15e96fa22207fee73c7291046c79e7c01b9e +bd0b00e3933d6ddd04a3e39514bc6bbb244654f1 +6e6f9c070087fb3a4f1c7da9a708feb2f9a94a7a +0df111354c7093399301307abdc84ec024f96f57 +1b24ee66de08656aff4fa5f57ad831573dff5b76 +e17cc9f5674de44dc8380c048c36933cad1a2cb4 +bb8c2be64eb080d29c312e7dd1cfea3cd8aa7969 +0244d78f6eb52f099778e410ff91482bee236e29 +7fd6dfbfd17c7eefc49884ac7741097f047be1b2 +43ae598226735e98162dfcba05e756c4192c1349 +279a9d83a2a369fd606b1b5889fc2e8822f7fdaf +9ffe4581fd464104433b0f83e3219e0f99422941 +b697209c983421c365f6da410d9779f345bcccd5 +fec411445c0be0d929b28412d09d2e59ef459871 +4f73bf531632ecb69a63566362535cf118427119 +8924df03ddc1128865627b8c53bc9a9e126cc263 +d02c0613ffa50f7039d77d45a83c57f0437e5333 +a100726a64ace0e816fb9377fbc5b9e3c38b375d +b226472cafab4e9fad102e20d37c9a42c3be233b +ca4799fd522c13e55600bf09ace7ce3c6e9dbb1a diff --git a/splunk_eventgen/samples/states b/splunk_eventgen/samples/states new file mode 100644 index 00000000..ad6632e6 --- /dev/null +++ b/splunk_eventgen/samples/states @@ -0,0 +1,50 @@ +Alabama +Alaska +Arizona +Arkansas +California +Colorado +Connecticut +Delaware +Florida +Georgia +Hawaii +Idaho +Illinois +Indiana +Iowa +Kansas +Kentucky +Louisiana +Maine +Maryland +Massachusetts +Michigan +Minnesota +Mississippi +Missouri +Montana +Nebraska +Nevada +New Hampshire +New Jersey +New Mexico +New York +North Carolina +North Dakota +Ohio +Oklahoma +Oregon +Pennsylvania +Rhode Island +South Carolina +South Dakota +Tennessee +Texas +Utah +Vermont +Virginia +Washington +West Virginia +Wisconsin +Wyoming \ No newline at end of file diff --git a/splunk_eventgen/samples/states.abbrev b/splunk_eventgen/samples/states.abbrev new file mode 100644 index 00000000..a20d9ce6 --- /dev/null +++ b/splunk_eventgen/samples/states.abbrev @@ -0,0 +1,59 @@ +AK +AL +AR +AS +AZ +CA +CO +CT +DC +DE +FL +FM +GA +GU +HI +IA +ID +IL +IN +KS +KY +LA +MA +MD +ME +MH +MI +MN +MO +MP +MS +MT +NC +ND +NE +NH +NJ +NM +NV +NY +OH +OK +OR +PA +PR +PW +RI +SC +SD +TN +TX +UT +VA +VI +VT +WA +WI +WV +WY \ No newline at end of file diff --git a/splunk_eventgen/samples/street.types b/splunk_eventgen/samples/street.types new file mode 100644 index 00000000..6b86ed6b --- /dev/null +++ b/splunk_eventgen/samples/street.types @@ -0,0 +1,59 @@ +Ally +App +Arc +Ave +Blvd +Brow +Bypa +Cway +Cct +Circ +Cl +Cpse +Cnr +Cove +Ct +Cres +Dr +End +Esp +Flat +Fway +Frnt +Gdns +Gld +Glen +Grn +Gr +Hts +Hwy +Lane +Link +Loop +Mall +Mews +Pckt +Pde +Park +Pkwy +Pl +Prom +Res +Rdge +Rise +Rd +Row +Sq +St +Strp +Tarn +Tce +Tfre +Trac +Tway +View +Vsta +Walk +Way +Wway +Yard \ No newline at end of file diff --git a/splunk_eventgen/samples/streetNames.sample b/splunk_eventgen/samples/streetNames.sample new file mode 100644 index 00000000..736df459 --- /dev/null +++ b/splunk_eventgen/samples/streetNames.sample @@ -0,0 +1,91670 @@ +A E Smythe +A Fernwood +A G Spanos +A H Gray +A Jones +A New +A York +A. Alfred Lombardi +A.J. Hare +ASDA Britannia +AVRowe +Aa +Aalten +Aaron +Aaron Hill +Aaron Park +Aaron River +Abalone +Abanaki +Abandoned +Abaroo +Abate +Abbe +Abberton +Abbett +Abbetts +Abbeville +Abbey +Abbey Barn +Abbey Ellen +Abbey Field +Abbey Glen +Abbey Hey +Abbey Hill +Abbey Hills +Abbey Manor +Abbey Mill +Abbey Oak +Abbey Oaks +Abbey Orchard +Abbey Valley +Abbey Wood +Abbeydale +Abbeyfeale +Abbeyfield +Abbeyhill +Abbeystead +Abbeyview +Abbeyville +Abbeywood +Abbie +Abbington +Abbington Farm +Abbot +Abbotford +Abbots +Abbots Court +Abbots Ford +Abbots Wick +Abbots Wood +Abbotsbury +Abbotsfield +Abbotsford +Abbotsford Cove +Abbotshade +Abbotshall +Abbotsleigh +Abbotstone +Abbotswood +Abbott +Abbott Bridge +Abbott Valley View +Abbotts +Abbotts Park +Abbottsford +Abbottswell +Abbruzzi +Abby +Abby Wood +Abbywood +Abchurch +Abdale +Abden +Abdon +Abdul +Abe +Abecrombie +Abeel +Abel +Abele +Abelia +Abell +Abels +Abelyn +Abenaki +Abend +Abendroth +Abensburg +Aber +Aberavon +Abercairn +Abercombie +Aberconway +Abercorn +Abercrombie +Abercromby +Aberdare +Aberdeen +Aberdour +Aberfeldy +Aberfield +Aberfoil +Aberford +Aberford Highfield +Aberfoyle +Abergeldie +Abergele +Aberjona +Abermain +Abernathy +Abernethy +Abersoch +Abert +Abery +Abescon +Abierto +Abigail +Abilene +Abinante +Abingdon +Abinger +Abington +Abington Cambs +Abington Manor +Abington Woods +Abirdge +Able +Ablemarle +Ablett +Ablondi +Abner +Abner Belcher +Abney +Abney Court +Abode +Aborn +Aborn Square +Aboud +Aboukir +Aboyne +Abraham +Abraham Kazan +Abrahams +Abrams +Abramsky +Abramson +Abrew +Abridge +Abruzzini Hill +Absalom +Absecon +Absher +Abson +Abuklea +Ac +Acacia +Academia +Academic +Academy +Academy Fields +Academy Hill +Academy Woods +Acadia +Acadia Park +Acalanes +Acampo +Acanthis +Acanthus +Acapulco +Acari +Acaster +Accacia +Access +Accokeek +Accokeek Landing +Accolade +Accolawn +Accomac +Accommodation +Accomodation +Accord +Accord Park +Accord Pond +Accotink +Accotink Park +Ace +Acedemy Fields +Acela +Acer +Acerra +Acess +Acevedo +Acfold +Aches +Acheson +Achille +Achilles +Achillies +Achnacone +Achorn +Acken +Ackender +Acker +Ackerly +Ackerman +Ackers +Ackerson +Ackertown +Acklam +Ackley +Ackling +Acklington +Ackman +Ackmar +Ackroyd +Ackton +Ackworth +Acland +Acme +Acoma +Acomb +Aconbury +Acorn +Acorn Court +Acorn Hill +Acorn Hollow +Acorn Knoll +Acorn Park +Acorn Ponds +Acorn Wharf +Acosta +Acre +Acre More +Acre Top +Acre View +Acreage +Acrefield +Acregate +Acres +Acresfield +Acri +Acris +Acrocomia +Acron +Acropolis +Actinotus +Action +Actium +Active +Acton +Acton Horn +Acton Park East Acton +Acton Vale Bromyard +Actriz +Acts +Acushnet +Ad Art +Ad Hoc +Ada +Adagio +Adah +Adahmore +Adair +Adaire +Adak +Adalis +Adalist +Adaluma +Adam +Adam Albright +Adam C. Powell +Adam Wheeler +Adaminaby +Adamo +Adams +Adams Church +Adams Hill +Adams Park +Adams Ranch +Adams Ridge +Adams School +Adamson +Adamsrill +Adamsway +Adamswood +Adanac +Adar +Adare +Adason +Adastral +Adbaston +Adbert +Adbeth +Adclare +Adclire +Adcock +Adcroft +Add +Addalia +Addenbrooke +Adderley +Adderstone +Adderton +Addicks +Addie +Addington +Addington Village +Addiscombe +Addiscombe Court +Addison +Addisson +Addleman +Addlestead +Addlestone +Addsion +Addy +Adee +Adel +Adel Wood +Adela +Adelade +Adelaide +Adelberg +Adelbert +Adele +Adelia +Adeline +Adella +Adelle +Adelman +Adelphi +Adelphia +Adelsburg +Aden +Adenlee +Adenmore +Adept +Aderene +Adesso +Adey +Adeyfield +Adhara +Adie +Adin +Adina +Adine +Adios +Adirondack +Adisham +Adj. +Adkins +Adler +Adler Woods +Adlers +Adley +Adlington +Admaston +Admin Service +Administration +Admiral +Admiral Callaghan +Admiral Cochrane +Admiral Moore +Admiral Seymour +Admirals +Admiralty +Admont +Adobe +Adobe Canyon +Adobe Creek +Adobe Creek Lodge +Adolfo +Adolph +Adolphus +Adomar +Adonia +Ador +Adorn +Adp +Adpar +Adra +Adria +Adrian +Adriana +Adrianne +Adriano +Adriatic +Adrien +Adrienne +Adshall +Adstone +Adswood +Adswood Old Hall +Adult +Adur +Advance +Advantage +Advent +Adversane +Advice +Adwell +Ady +Adys +Ae +Aec +Aegean +Aegina +Aeolia +Aeolus +Aerator +Aerial +Aerie +Aerie Wynde +Aero +Aerobee +Aerodrome +Aerojet +Aerospace +Aetheric +Aetna +Aetna Springs +Af +Affetside +Affleck +Afghan +Afirmed +Africa +Afshar +Afterglow +Afternoon +Afton +Afton Coulee Ridge +Agadir +Agamemnon +Agape +Agar +Agassiz +Agate +Agates +Agatha +Agatite +Agaton +Agave +Agawam +Agden +Agdon +Agecroft +Ager +Aggie +Aggisters +Agincourt +Aging Oak +Agister +Agius +Aglen +Agneous +Agnes +Agnes Morley Heights +Agnesfield +Agnew +Agnola +Agnon +Agorista +Agoritsas +Agostina +Agostino +Agradar +Agrand +Agraria +Agricultural Farm +Agriculture +Agrippa +Agua Vista +Aguadilla +Aguazul +Aguilar +Agusta +Ah +Ahab +Ahearn +Ahern +Ahlmeyer +Ahlstrand +Ahlstrom +Ahmed +Ahneita +Ahnert +Aho +Ahr +Ahrens +Ahwahnee +Ahwanee +Aida +Aidan +Aiden +Aiello +Aiken +Aikens +Ailee +Aileen +Ailsa +Ailsworth +Ailward +Aimee +Aimee Meadows +Aimwell +Aines +Ainger +Ainsbrook +Ainsbury +Ainscough +Ainscow +Ainsdale +Ainsford +Ainsley +Ainslie +Ainslie Wood +Ainsty +Ainsworth +Ainsworth Hall +Aintree +Air +Air Base +Air Cargo +Air Cargo Service +Air Force +Air Freight +Air Park +Air View +Airbase +Aircraft +Aird +Airds +Airdsley +Aire +Airedale +Aires +Airfield +Airlea +Airlie +Airline +Airmen +Airmont +Airmont Hunt +Airmount +Airpark +Airport +Airport Access +Airport Park +Airport Plaza +Airport Ser +Airway +Airwick +Airy Hill +Airybrink +Aisgill +Aisher +Aislibie +Aisne +Aisquith Farm +Aitchander +Aitcheson +Aitchison +Aitken +Ajax +Ak +Akbar +Akeby +Akehurst +Akela +Akeman +Akenside +Akerly +Akerman +Akers +Akerson +Akesmoor +Akeson +Aketon +Akhtamar +Akin +Akira +Akora +Akron +Akroyd +Aksarben +Aksland +Al Catraz +Al Jones +Al Ventura +Al Wilhelmi +Alabama +Alabaster +Alachua +Alacross +Aladdin +Aladore +Alaga +Alago +Alahambra +Alam +Alamance +Alamatos +Alameda +Alameda Marina +Alameda Park +Alamein +Alamitos +Alamitos Creek +Alamo +Alamo Glen +Alamo Hills +Alamo Oaks +Alamo Ranch +Alamo Springs +Alamo Square +Alamos +Alamosa +Alan +Alan A Dale +Alan Boyd +Alan Crest +Alan Dale +Alan Deatherage +Alan Turing +Alana +Alanas +Alanbrook +Alandale +Alanhurst +Alann +Alanna +Alanon +Alanwick +Alaric +Alaska +Alaska Service +Alastair +Alba +Albacete +Albacore +Alban +Albana +Albanese +Albano +Albany +Albany Park +Albara +Albata +Albatross +Albee +Albemarle +Albergo +Albermale +Albermarle +Albermyrtle +Albern +Alberni +Albers +Albert +Albert Bridge +Albert Einstein +Albert Hill +Albert Leonard +Albert M Teglia +Albert Park +Albert Ray +Albert Royds +Alberta +Alberti +Albertina +Albertine +Alberto +Alberts +Albertson +Albertstone +Albertsworth +Albezzia +Albia +Albin +Albina +Albine +Albion +Albion Villas +Albon +Albot +Albourne +Albradt +Albrae +Albrecht +Albright +Albrighton +Albro +Albuera +Albury +Albury Grove +Albyan +Albyn +Albyns +Alcajapa +Alcala +Alcalde +Alcan +Alcana +Alcann +Alcatraz +Alcazar +Alcester +Alchester +Alcinda +Alcine +Alcira Nunez +Alcoa +Alcock +Alcocks +Alcon +Alcona +Alconbury +Alcoomie +Alcorn +Alcorne +Alcosta +Alcott +Alcova +Alcove +Alda +Aldacourrou +Aldagrove +Aldana +Aldbourne +Aldbridge +Aldbury +Aldcock +Aldcroft +Aldea +Aldean +Aldebaran +Aldeburgh +Aldebury +Aldemarle +Alden +Alden Glen +Alden Pond +Aldene +Aldenglen +Aldenham +Aldensley +Alder +Alder Brook +Alder Creek +Alder Glen +Alder Hill +Alder Woods +Alderberry +Alderbourne +Alderbrook +Alderbury +Aldercar +Aldercombe +Aldercroff Heights +Aldercroft +Aldercroft Heights +Alderdale +Alderfield +Alderfold +Alderford +Aldergate +Alderglen +Alderleaf +Alderley +Alderman +Aldermary +Aldermaston +Alderminster +Alderney +Alders +Alders End +Alders Green +Aldersbrook +Aldersbrook Park +Aldersey +Aldersgate +Aldersgrove +Aldershot +Alderside +Aldersley +Aldersmead +Alderson +Alderstead +Alderstone +Aldersyde +Alderton +Alderton Hall +Alderue +Alderville +Alderwick +Alderwood +Alderwood Mall +Aldfield +Aldford +Aldgate +Aldgate High +Aldham +Aldi +Aldie +Aldine +Aldington +Aldis +Aldo +Aldock +Aldon +Aldona +Aldorae +Aldred +Aldren +Aldria +Aldrich +Aldrid +Aldridge +Aldrin +Aldrington +Aldro +Aldsworth +Aldus +Aldwark +Aldwick +Aldwin +Aldwina +Aldworth +Aldwych +Aldwyn Park +Alec +Alec Templeton +Alecia +Aleda +Alee +Alegra +Alegre +Aleilani +Alejandra +Alejandro +Alelanto +Alemany +Alembic +Alemeda +Alene +Aleppo +Alerche +Alers +Alesia +Alessandra +Alessandro +Alessi +Alessio +Alestan Beck +Alester +Alesworth +Aleta +Aletha +Alethea +Aleutian +Alewife +Alewife Brook +Alex +Alexander +Alexander Bell +Alexander Cornell +Alexander D. Sullivan +Alexander Fleming +Alexander Hamilton +Alexander Manor +Alexander Valley +Alexanders +Alexandra +Alexandras Grove +Alexandria +Alexandria Overlook +Alexendria +Alexian +Alexine +Alexis +Aley +Alezane +Alfa +Alfadel +Alfalfa +Alfalfa Plant +Alfan +Alfandre +Alfandre Mews +Alfearn +Alfini +Alfold +Alford +Alford Valley +Alfords Point +Alforth +Alfred +Alfred Lord Tennyson +Alfred Nobel +Alfreda +Alfreg +Alfreton +Alfriston +Alft +Algair +Algar +Algarve +Algea +Algen +Alger +Algernon +Algers +Alghera +Algiers +Algoma +Algona +Algonkian +Algonkin +Algonquian +Algonquin +Algosi +Algreave +Algretus +Alhambra +Alhambra Creek +Alhambra Hills +Alhambra Valley +Alherst +Ali +Aliberti +Alibi +Alibon +Alicante +Alice +Alice Bright +Alice Eastwood +Alice G Agnew +Alice Griffith +Alicia +Alick +Alida +Alie +Alienor +Alimar +Alina +Alinda +Aline +Alinga +Alington +Alisa +Alisal +Alisha +Alisma +Aliso +Alison +Alisons +Alissa +Alistair +Alitos +Aliwal +Alix +Alize +Aljan +Aljay +Alkamont +Alkaringa +Alken +Alker +Alkerden +Alkham +Alkier +Alkira +Alkire +Alkoo +Alkoomie +Alkrington Park +All Day +All Saints +All Souls +Alla +Alladin +Allaire +Allama Iqbal +Allambee +Allambi +Allambie +Allan +Allan Daugherty +Allandale +Allander +Allanhill +Allanmere +Allano +Allanson +Allanwood +Allara +Allard +Allardyce +Allars +Allawah +Allay +Allborough +Allbrook +Allcroft +Allday +Allden +Alldens +Allder +Alldicks +Alldis +Allee +Alleen +Allegany +Alleghany +Allegheny +Allegheny Grove +Allegra +Allegro +Allemand +Allemany +Allemong +Allen +Allen Dale +Allen Dent +Allen Edwards +Allen Farm +Allen Oneill +Allen Park +Allen Robert +Allenby +Allencrest +Allendale +Allende +Allene +Allenhurst +Allens +Allensby +Allenswood +Allentown +Allenwood +Aller +Allerds +Allerford +Allerman +Allerton +Allerton Grange +Alles +Allesley +Allessandria +Allessandrini +Allestree +Alletta +Allevard +Alley +Alleyndale +Alleyne +Alleyns +Allfarthing +Allgair +Allgood +Allgrove +Allhallows +Alliance +Allibone +Allied +Allies +Allindale +Alline +Alling +Allingham +Allington +Alliott +Allis +Allisha +Allison +Allison Park +Allister +Allitsen +Allman +Allmen +Allnatt +Allness +Allnutt +Allnutts +Allocco +Allom +Allon +Allonby +Allotment +Alloway +Allowrie +Allport +Allred +Allsmoor +Allsopp +Allspice +Allstate +Allston +Allum +Allview +Allward +Allwood +Allworth +Allwyn +Allyn +Allyson +Alm +Alma +Alma Bridge +Alma College +Alma Farm +Almack +Almada +Almaden +Almaden Valley +Almaden Village +Almadera +Almadine +Almanac +Almandon +Almanera +Almanor +Almansa +Almanza +Almar +Almarida +Almaz +Almeda +Almeida +Almena +Almenar +Almendra +Almendral +Almer +Almeria +Almeric +Almeta +Almien +Almira +Almners +Almon +Almona +Almond +Almond Blossom +Almond Orchard +Almond Tree +Almond Valley +Almondridge +Almonds +Almondtree +Almondwood +Almont +Almonte +Almora +Almorah +Almount +Almroth +Alms Hill +Almsbury +Almshouse +Almwch +Alness +Alnond +Alnwick +Alnwood +Aloe +Aloha +Alondra +Along Neponset +Alonso +Alonzo +Alopex +Alorn +Alosio +Alp +Alpena +Alpenglow +Alpert +Alperton +Alpet +Alph +Alpha +Alphabet +Alphagate +Alpheus +Alphin +Alphington +Alphonse +Alphonsus +Alpine +Alpine Beach +Alpine Creek +Alpine Falls +Alpine Frost +Alpine Meadow +Alpine Springs +Alpita +Alport +Alprilla Farm +Alps +Alquire +Alray +Alresford +Alric +Alridge +Alro +Alrose +Alroy +Alsa +Alsace +Alsace Loraine +Alsada +Alschuler +Alsfeld +Alsike +Alsom +Alson +Alsop +Alsops +Alstead +Alston +Alstone +Alstyne +Alt +Alt Fold +Alt Hill +Alta +Alta Garden +Alta Glen +Alta Haciendas +Alta Loma +Alta Mesa +Alta Mesa East +Alta Mira +Alta Monte +Alta Punta +Alta Sierra +Alta Sonoma +Alta Sunrise +Alta Tierra +Alta Valley +Alta Verde +Alta Via +Alta Vista +Altacrest +Altadena +Altair +Altamara +Altamead +Altamira +Altamont +Altamont Creek +Altamont Pass +Altamore +Altamount +Altanta +Altarinda +Altena +Altenitas +Alter +Altessa +Altgeld +Altham +Althea +Alther +Althorn +Althorne +Althorp +Althorpe +Althouse +Altia +Altimont +Altino +Altivo +Altman +Altmar +Alto +Alto Verde +Altofts +Altofts Hall +Altofts Lodge +Altoga +Alton +Altona +Altoona +Altoona Beach +Altos +Altos Oaks +Altrincham +Altrura +Altruria +Altschul +Altura +Alturas +Altus +Altwood +Altyre +Alum Rock +Alum Rock Falls +Alumni +Alumrock +Alva +Alvah +Alvan +Alvarado +Alvarado Niles +Alvarez +Alvaston +Alveley +Alvern +Alvernaz +Alverno +Alverson +Alverstoke +Alverston +Alverstone +Alverton +Alvertus +Alves +Alves Ranch +Alveston +Alvey +Alviena +Alvin +Alvina +Alvine +Alvington +Alviso +Alvista +Alviston +Alvord +Alwaes +Alward +Alwat +Alway +Alwick +Alwin +Alwine +Alwinton +Alwoodley +Alwoodley The +Alwyn +Alwyne +Alwyngton +Alwyns +Alxandria +Alyce +Alyea +Alysheba +Alyson +Alyssa +Alyssum +Alyward +Alywne +Alywood +Amadeus +Amado +Amador +Amador Creek +Amador Plaza +Amador Valley +Amal +Amalfi +Amalgamated +Amalia +Amanda +Amann +Amanola +Amant +Amapala +Amapola +Amaral +Amaranta +Amaranth +Amaretto +Amargosa +Amari +Amarillo +Amarina +Amark +Amaro +Amaroo +Amaroo Park +Amaryl +Amaryllis +Amasa +Amatista +Amato +Amax +Amaya +Amaya Creek +Amaya Ridge +Amazon +Ambarrow +Ambassador +Amber +Amber Creek +Amber Grove +Amber Meadows +Amber Ridge +Amber Valley +Amberdale +Amberden +Amberfield +Amberg +Ambergate +Amberglen +Amberhill +Amberina +Amberjack +Amberlea +Amberlea Farm +Amberleaze +Amberleigh +Amberleigh Farn +Amberley +Amberly +Amberside +Amberson +Amberton +Amberwood +Ambiance +Amble +Ambler +Amblers +Ambleside +Amblethorn +Amblewood +Ambley +Ambon +Ambourn +Amboy +Ambria +Ambriance +Ambric Knolls +Ambrook +Ambrooke +Ambrosden +Ambrose +Ambrose Valley +Ambrosia +Ambrym +Ambulance Only +Ambum +Ambush +Amby +Ameland +Amelia +Amelia Earhart +Amelia Godbee +Amelian +Amelung +Amenbury +Amend +Amendodge +Ameno +Ament +Amer +Amerada +Amerden +America +America Center +America Moor +American +American Aggregate +American Beauty +American Canyon +American Eagle +American Holly +American Legion +American Oaks +American Pride +American River +American River Canyon +Americana +Americus +Amerigo +Amerland +Amero +Amersham +Amersham Hill +Amery +Ames +Ames Crossing +Ames Hill +Amesbury +Amesti +Amesury +Amethyest +Amethyst +Amey +Amherst +Amherst Bank +Amhurst +Amias +Amicita +Amico +Amid +Amidio +Amidon +Amiens +Amigo +Amilcar +Amina +Amiott +Amir +Amis +Amisfield +Amisse +Amistad +Amitaf +Amito +Amity +Amkin +Amlee +Amlets +Amli +Amlin +Amlong +Amman +Ammel +Ammendale +Ammer +Ammons +Ammunition +Amner +Amners Farm +Amoco +Amondo +Amor +Amori +Amoruso +Amory +Amos +Amos Garrett +Amos Hill +Amos Sampson +Amoss +Amott +Amour +Ampeg +Ampel +Ampere +Amphibian +Amphitheatre +Ampleforth +Ampthill +Ampton +Amsbury +Amsden +Amsden Ridge +Amstel +Amsterdam +Amsterdan +Amstutz +Amulet +Amundsen +Amundson +Amur Hill +Amvet +Amvets +Amwell +Amy +Amyand Park +Amyruth +Ana +Ana Lisa +Ana Maria +Anabell +Anable +Anacapa +Anacapri +Anaconda +Anagram +Anaheim +Anakai +Anakin +Analitis +Analy +Anamor +Anamosa +Anana +Anand Brook +Ananda +Anandale +Anastasia +Anastasio +Anatola +Anatolia +Anawan +Anawanda +Ancaster +Ancell +Ancells +Ancestor +Ancho Vista +Anchor +Anchor And Hope +Anchorage +Ancient Oak +Ancient Oaks +Ancient Tree +Ancille +Ancoats +Ancon +Ancona +Ancroft +Ancrum +Andale +Andall +Andalucia +Andalusia +Andalusian +Andaman +Andante +Andard +Anderby +Anderley +Anderlie +Andermann +Anders +Andersen +Anderson +Anderson Estates +Anderson Farm +Anderson Hill +Anderson Lakes +Anderson Ridge +Anderson Scout Camp +Anderton +Andertons +Andes +Anding +Andiron +Andith +Andlers Ash +Andora +Andorick +Andorra +Andove +Andover +Andover Country Club +Andover Heights +Andrade +Andre +Andre Hill +Andrea +Andreas +Andrease +Andreasen +Andrejewski +Andrene +Andres +Andrew +Andrew Alan +Andrew Borde +Andrew Hill +Andrew Lloyd +Andrewartha +Andrews +Andrews Farm +Andria +Andrieux +Andromeda +Andros +Androvette +Andrus +Andrus Island +Andsbury +Andwell +Andy +Anebo +Anelda +Anella +Anembo +Anerley +Anerley Park +Anesbury +Anets +Anette +Anfield +Anfred +Angas +Angel +Angel Falls +Angel Flight +Angel Hill +Angel Kerley +Angel Rod +Angela +Angela Rose +Angeles +Angelica +Angelico +Angelina +Angeline +Angelini +Angelique +Angelita +Angell +Angelo +Angelos +Angels +Angelus +Angelwing +Angerer +Angerstein +Angevine +Angie +Angier +Angies of Holloway +Angle +Angle Vale +Angledook +Anglefield +Angler +Anglers +Angles +Anglesea +Anglesey +Anglesey Court +Angleside +Anglessey +Anglewood +Angley +Anglian +Anglican +Anglin +Anglo +Angophora +Angora +Angorra +Angouleme +Angrave +Angsley +Angus +Angwin +Anhalt +Anice +Animal Husbandry +Animbo +Anis +Anise +Aniseed +Anita +Anjim +Anjo +Anjou +Anka +Ankener +Ankeny +Anker +Ankers +Anlaby +Anley +Ann +Ann Arbor +Ann Boleyn +Ann Fitz Hugh +Ann Lee +Ann Marie +Ann Natalie +Ann Rose +Ann Vinal +Anna +Anna Louise +Anna Mac +Anna Maria +Anna Marie +Annabel +Annabella +Annabelle +Annable +Annables +Annadale +Annadea +Annadel Heights +Annafran +Annalisa +Annam +Annamarie +Annamorh +Annan +Annandale +Annangrove +Annapolis +Annapolis Neck +Annapolis Walk +Annapolitan +Annardale +Annawan +Annaway +Annawon +Annbar +Anncroft +Anne +Anne Arundel +Anne Arundel Com Col +Anne Marie +Anne Peake +Anne Tucker +Anne William +Anne of Cleves +Anneliese +Annella +Annenberg +Annerino +Annerley +Annes Court +Annes Prospect +Annese +Annesley +Annete +Annett +Annetta +Annette +Annettes +Annettes Retreat +Annfield +Annhurst +Annico +Annie +Annie Laurie +Annie Moore +Annie Spence +Annie Terrace +Annin +Annina +Anning +Annington +Annis +Annisfield +Annisquam +Anniston +Anniversary +Annjim +Annmar +Annmore +Annona +Annoreno +Anns +Anntaramiss +Annual +Annunciation +Annursnac Hill +Annuskemunnica +Anny +Ano +Ano Nuevo +Anoatok +Anoka +Anola +Anon +Anona +Anondale +Anoover +Anpell +Anroyd +Ansbrough +Ansculf +Ansdell +Ansel +Ansell +Anselm +Anselma +Ansford +Ansie +Ansleigh +Ansley +Anson +Ansonia +Ansted +Anstee +Anstey +Anstey Mill +Anstice +Anstone +Anstridge +Answell +Answorth +Antarctic +Antares +Antaya +Ante Up +Antell +Antelope +Antelope Hills +Antelope Run +Antelope Springs +Anteros +Anthea +Anthem +Antholl +Anthony +Anthony Hill +Anthony Marangiello +Antietam +Antigone +Antigua +Antil +Antile +Antill +Antioch +Antiopi +Antiqua +Antique +Antique Forest +Antiquity +Antlands +Antler +Antoine +Antoinette +Antolak +Anton +Antone +Antonetta +Antonette +Antonette Marie +Antonia +Antonia Ford +Antonietta +Antonio +Antony +Antram +Antrican +Antrim +Antrobus +Antwerp +Anvil +Anvilwood +Anworth +Anyards +Anza +Anzac +Anzar +Anzavista +Anzio +Apache +Apakesha +Apap +Apara +Apartment +Apawamis +Apeldoorn +Aperdele +Apers +Apethorn +Apex +Apfel +Apgar +Apia +Apian +Apiary +Apking +Apley +Aplin +Aplomado +Apollo +Apollo Regent +Aponi +Apothecary +Appach +Appalachian +Appaloosa +Appamatox +Appeal +Appenzel +Apperley +Apperlie +Apperson Ridge +Appian +Appin +Apple +Apple Blossom +Apple Creek +Apple Crest +Apple Dor +Apple Farm +Apple Garden +Apple Gate +Apple Glen +Apple Green +Apple Grove +Apple Hill +Apple Lovers +Apple Manor +Apple Mill +Apple Orchard +Apple Ridge +Apple River +Apple Row +Apple Tree +Apple Valley +Apple View +Apple Wood +Applebee +Appleberry +Appleblossom +Applebox +Applebrook +Appleby +Applecreek +Applecrest +Applecroft +Applecross +Appledale +Appledell +Appledore +Appledown +Appleford +Applegarth +Applegate +Applegreen +Applegrove +Applejack +Appleman +Applemarket +Applemint +Applenut +Appleseed +Appleton +Appletree +Applewick +Applewood +Appley +Appleyard +Appling +Appling Valley +Appollo +Appomattox +Apprentice +Approach +Apps +Appspond +Apricot +April +April Journey +Apron +Apshawa Cross +Apsis +Apsley +Apsley End +Aptakisic +Apthorp +Apthrop +Apton +Apton Hall +Aptos +Aptos Beach +Aptos Creek +Aptos Creek Fire +Aptos High School +Aptos Hill +Aptos Rancho +Aptos School +Aptos View +Aptos Wharf +Aqua +Aqua Lynn +Aqua View +Aqua Vista +Aquahart +Aquamarine +Aquarium +Aquarius +Aquasco Farm +Aquatic +Aquavia +Aqueduct +Aquia Creek +Aquila +Aquilina +Aquinas +Aquino +Aquistapace +Ara +Arab +Arabanoo +Arabella +Arabelle +Arabian +Arabin +Araca +Arafura +Araglen +Arago +Aragon +Aragona +Arakelian +Araki +Arakoon +Aralia +Aralluen +Araluen +Aram +Arambel +Aramis +Aramon +Aran +Arana +Aranda +Arandale +Araneo +Arapaho +Arapahoe +Ararat +Arastradero +Arata +Arate +Araujo +Arballo +Arbardee +Arbeiter +Arbeleche +Arbeleda +Arbell +Arbella +Arbetter +Arbie +Arbit +Arbogast +Arbol +Arbolado +Arboleda +Arbor +Arbor Creek +Arbor Falls +Arbor Fields +Arbor Gate +Arbor Glen +Arbor Grove +Arbor Hill +Arbor Hills +Arbor Lakes +Arbor Meadows +Arbor Oaks +Arbor Park +Arbor Ridge +Arbor View +Arbor Villa +Arbor Vine +Arbor Vitae +Arbordale +Arboreo +Arboretum +Arboretum Village +Arborfield +Arborfield Church +Arborfield Walden +Arboro +Arborough +Arborsedge +Arborside +Arborview +Arborvitae +Arborway +Arborwood +Arbory +Arbour +Arbour Walk +Arbre +Arbroath +Arbrook +Arbroth +Arbuckle +Arbury +Arbuton +Arbutus +Arca +Arcada +Arcade +Arcade Lake +Arcadia +Arcadia Palms +Arcadian +Arcady +Arcand +Arcangela +Arcata Bay +Arce +Arch +Arch Airport +Arch Hall +Arch Rk +Archangel +Archbold +Archbridge +Archbury +Archdale +Archel +Archer +Archerdale +Archers +Archers Green +Archery +Archery Fire +Arches +Archibald +Archie +Architect +Archlaw +Archmeadow +Archstone +Archung +Archway +Archwood +Arco +Arcola +Arcon +Arctic +Arctic Cat +Arctic Fox +Arcturus +Arcus +Arcwood +Arcy +Ard +Ardale +Ardan +Ardath +Ardaugh +Ardbeg +Ardee +Ardell +Ardelle +Arden +Arden Bluff +Arden Creek +Arden Forest +Arden Oaks +Arden Shore +Arden View +Ardendale +Ardenfield +Ardenham +Ardenlee +Ardenmore +Ardennes +Ardenness +Ardenridge +Ardent +Ardenwood +Ardern +Arderne +Ardfern +Ardfilan +Ardfour +Ardglass +Ardgowan +Ardgryffe +Ardilaun +Ardilla +Ardilla Canyon +Arding +Ardingly +Ardis +Ardith +Ardleigh +Ardleigh Green +Ardler +Ardley +Ardlui +Ardmere +Ardmore +Ardno +Ardo +Ardoch +Ardor +Ardra +Ardrossan +Ardrossen +Ardshiel +Ardsleigh +Ardsley +Ardsmoor +Ardvin +Ardwell +Ardwick +Ardwick Ardmore +Area +Areil +Arellano +Arena +Arenal +Arends +Arenosa +Arethusa +Arey +Arezzo +Arezzo Pointe +Arf +Arford +Argall +Argent +Argenta +Argentine +Argents +Argie +Argila +Argilla +Argo +Argon +Argonaut +Argonne +Argonne Ridge +Argosy +Argowan +Arguello +Arguimbau +Argus +Argyle +Argyle Club +Argyll +Argyll Park +Ari +Ariadne +Ariana +Arianna +Arias +Aric +Arica +Aricia +Ariel +Arielle +Aries +Ariey +Arikara +Arilla +Arimo +Arinya +Arion +Aris T Allen +Arista +Aristocrat +Aristotle +Arizona +Arjay +Ark +Ark Haven +Arkana +Arkansas +Arkay +Arkell +Arkena +Arkendale +Arkhaven +Arkindale +Arkinglander +Arkland +Arkle +Arkley +Arklow +Arkwood +Arkwright +Arlanda +Arleda +Arlee +Arleen +Arleigh +Arleita +Arlen +Arlene +Arlesey +Arlesford +Arleta +Arletta +Arlette +Arlewis +Arley +Arley New +Arlia +Arlie +Arlies +Arline +Arlingdale +Arlingford +Arlington +Arlington N +Arliss +Arlisson +Arlmont +Arlo +Arlon +Arlott +Arlow +Arlton +Arlyn +Arlyne +Arm +Armaan +Armadale +Armagh +Armand +Armandale +Armandine +Armanini +Armat +Armata +Armbrust +Armell +Armendown +Armentieres +Armes +Armetale +Armett +Armfield +Armfield Farm +Armida +Armidale +Armiger +Arminda +Arminger +Armington +Arminio +Arminteres +Armistead +Armistice +Armiston +Armit +Armitage +Armitree +Armitstead +Armitt +Armley +Armley Branch +Armley Grange +Armley Lodge +Armley Park +Armley Ridge +Armm +Armon +Armond +Armonk +Armor +Armore +Armory +Armour +Armour Villa +Armouries +Armoury +Arms +Armsby +Armsby Cemetery +Armside +Armstead +Armstrong +Armstrong Wood +Armwood +Army +Army Navy +Army Trail +Arnaudo +Arncliff +Arncliffe +Arncot +Arncott +Arncott Wood +Arndell +Arndill +Arne +Arner +Arnerich +Arnesby +Arnet +Arnett +Arneway +Arneways +Arnfield +Arnheim +Arnhem +Arnica +Arnison +Arno +Arnold +Arnold Janssen +Arnold Mills +Arnold Park +Arnolds +Arnon Chapel +Arnon Lake +Arnon Meadow +Arnos +Arnot +Arnott +Arnould +Arnow +Arnprior +Arnside +Arnsley +Arnulf +Arnulls +Arodene +Aromas +Aromas Heights +Aromitas +Aron +Arona +Aronia +Aronow +Aroona +Aroostook +Arora Heights +Arosa +Arpeggio +Arqueado +Arquilla +Arragon +Arragong +Arran +Arrandale +Arrezzo +Arrianne +Arriba +Arrighi +Arrigotti +Arrington +Arrol +Arrow +Arrow Creek +Arrow Head +Arrow Park +Arrowbrook +Arrowfield +Arrowhead +Arrowhead Farm +Arrowhead Farms +Arrowhead Park +Arrowhill +Arrowleaf +Arrowood +Arrowrock +Arrowsmith +Arrowwood +Arroyada +Arroyo +Arroyo Grande +Arroyo Hondo +Arroyo Leon +Arroyo Oaks +Arroyo Seco +Arroyo Sierra +Arroyo Vista +Arroyuelo +Arrunga +Arsan +Arsenal +Art +Art Gallery +Art Schultz +Artarmon +Artegall +Artemas +Artemel +Artemus +Arterberry +Arterial +Artery +Artese +Artesian +Arthall +Arthill +Arthington +Arthingworth +Arthog +Arthur +Arthur B Lord +Arthur Conan Doyle +Arthur Kill +Arthur King +Arthur Matthew +Arthur Nate Haugh +Arthur Taylor +Arthur Woods +Arthurdon +Arthursdale +Artic +Artic Quill +Artichoke +Artie +Artillary +Artillery +Artillery Park +Artimus +Artis +Artisan +Artist +Artists +Artizan +Artlett +Artornish +Arts +Arts Circle +Artuna +Artwill +Aruba +Aruma +Arun +Arunah +Arundale +Arundel +Arundel Beach +Arundel Corp +Arundel Corporation +Arundel Cove +Arundel Gateway +Arundel Mills +Arundel Park +Arundel on the Bay +Arundell +Arundle +Arunta +Arutas +Arvale +Arverne +Arvidson +Arvilla +Arvin +Arvon +Arwick +Ary +Arye +Aryness +Arywood +Arzate +Asa +Asbourne +Asbury +Asbury Circle +Ascadilla +Ascalano +Ascalon +Ascan +Ascension +Ascham +Asche +Aschurch +Ascol +Ascolano +Ascot +Ascots +Ascott +Ascroft +Asdee +Aseki +Asford +Ash +Ash Church +Ash Green +Ash Grove +Ash Hill +Ash House +Ash Lawn +Ash Park +Ash Platt +Ash Ride Rosewood +Ash Tree +Ashampstead +Ashanger +Asharoken +Ashbee +Ashbel +Ashberry +Ashboro +Ashbourn +Ashbourne +Ashbox +Ashbridge +Ashbrook +Ashbrook Hey +Ashbrooke +Ashburn +Ashburn Farm +Ashburn Village +Ashburner +Ashburnham +Ashburnham Hill +Ashburton +Ashburton Manor +Ashbury +Ashby +Ashby Ponds +Ashby West +Ashccott +Ashcombe +Ashcott +Ashcroft +Ashdale +Ashdell +Ashden +Ashdene +Ashdod +Ashdon +Ashdown +Ashdown Forest +Ashe +Ashebrook +Ashely +Ashen +Ashen Grove +Ashenden +Ashendene +Ashenground +Ashentree +Asher +Asheridge +Ashes +Asheville +Ashfield +Ashfield Farm +Ashford +Ashfordby +Ashgap +Ashgate +Ashgrove +Ashgrove House +Ashingdon +Ashington +Ashkins +Ashkirk +Ashlake +Ashland +Ashland Woods +Ashlands +Ashlar +Ashlawn +Ashlea +Ashleaf +Ashleigh +Ashler +Ashley +Ashley Glen +Ashley Green +Ashley Manor +Ashley Mill +Ashley Oaks +Ashley Park +Ashley Woods +Ashleys Park +Ashlin +Ashling +Ashlon +Ashlone +Ashlyn +Ashlyns +Ashmall +Ashmead +Ashmeade +Ashmere +Ashmill +Ashmole +Ashmon Boburg +Ashmond +Ashmont +Ashmoor +Ashmore +Ashmount +Ashness +Ashnut +Ashover +Ashridge +Ashstead +Ashtead +Ashtead Woods +Ashton +Ashton Clough +Ashton Hill +Ashton New +Ashton Oaks +Ashton Old +Ashton Park +Ashton Woods +Ashtonbirch +Ashtree +Ashtrees +Ashurst +Ashvale +Ashview +Ashville +Ashwater +Ashwell +Ashwells +Ashwells Manor +Ashwin +Ashwood +Ashworth +Asia +Asiatic +Asilomar +Askam +Aske +Askegrens +Asket +Askett +Askew +Askewton +Askey +Askill +Askland +Askov +Askren +Askwith +Asland +Aslett +Asmara +Asmus +Aso Taro +Asolando +Asoleado +Asp +Aspara +Aspasia +Aspdin +Aspen +Aspen Grove +Aspen Hill +Aspen Hollow +Aspen Leaf +Aspen Point +Aspen Ridge +Aspen Tree +Aspen Valley +Aspen Willow +Aspen Woods +Aspenlea +Aspenpark +Aspenridge +Aspenshaw +Aspentree +Aspenwood +Aspern +Aspesi +Asphalt +Aspian +Aspinal +Aspinall +Aspinden +Aspinwall +Aspley +Asplins +Asplund +Aspull +Asquith +Asquithoaks +Asquithview +Ass House +Assabet +Assateague +Asselin +Assell +Assembly +Assembly Square +Asset +Assets +Assher +Assheton +Assinippi +Assisi +Assissi +Associated +Association +Assonet +Assumption +Assumpton +Assunta +Assyria +Asta +Astan +Astbury +Aste +Astelia +Astell +Aster +Asterbilt +Asterwood +Asti +Asticou +Astin +Astle +Astleham +Astley +Astley Hall +Astolat +Aston +Aston Abbotts +Aston Clinton +Aston End +Aston Forest +Aston Manor +Astonville +Astor +Astoria +Astoria Park +Astra +Astrahan +Astral +Astrid +Astrida +Astro +Astrodome +Astrolabe +Astron +Astronaut +Astronomy +Astrope +Asturias +Astwick +Astwin +Astwood +Asylum +Asylum Arch +At Last Farm +Atalanta +Atbara +Atcham +Atchenson +Atcheson +Atchison +Atco +Atcost +Aten +Atha +Athabaska +Athania +Athearn +Athel +Atheldene +Athelney +Athelstan +Athelstane +Athelstone +Athelwold +Athem +Athena +Athenaeum +Athene +Athenia +Athenlay +Athens +Atherden +Atherfield +Atherfold +Atherly +Atherstone +Atherton +Atherton Oaks +Atherwood +Athey +Athletic Field +Athlon +Athlone +Athol +Atholl +Athony +Athos +Athrusleigh +Athy +Atilda +Atina +Atka +Atkins +Atkinson +Atlandtic +Atlanta +Atlantic +Atlantic Hills +Atlantic House +Atlantic View +Atlantis +Atlantus +Atlas +Atlas Peak +Atlee +Atleigh +Atlip +Atna +Atney +Atno +Atom +Atomic +Atrebatti +Atria +Atrium +Attar +Attard +Attawa +Attawan +Atte +Atteberry +Atteentee +Attenburys +Atterbury +Attercliffe +Atteridge +Attewell +Attewood +Attica +Attimore +Attingham +Attitash +Attleboro +Attlee +Attleford +Attneave +Attorney +Attow +Attridge +Attunga +Attwaters +Attwood +Atty +Atwater +Atwell +Atwill +Atwood +Auberge +Auberry +Aubert +Aubin +Aubinoe Farm +Auborn +Aubreen +Aubrey +Aubrey Neville +Aubreys +Aubrieta +Auburn +Auburn Folsom +Auburn Grove +Auburn Lakes +Auburn Leaf +Auburn Meadow +Auburn Oaks Village +Auburn Ridge +Auburn Woods +Auburndale +Auchmar Service +Auciello +Auckland +Auclair +Auclum +Auction +Auction Barn +Aucutt +Auden +Audenshaw +Audery +Audette +Audine +Auditorium +Auditors +Audlem +Audley +Audmar +Audobon +Audrea +Audrey +Audrey Smith +Audrey Zapp +Audry +Auds +Audubon +Auerbach +Auger +Aughton +Augurs +August +Augusta +Augusta Hooe +Augusta Point +Augustan +Augustana +Augustina +Augustine +Augustus +Aukane +Aukland +Auld +Auldwood +Aulin +Aulston +Aultman +Auluba +Aulwurm +Aumack +Auman +Aumuna +Auna +Aunt Lilly +Aunt Lizzies +Aura Vista +Aurallia +Aurelia +Aurelia Sylvia +Aurelian +Aurelie +Auricchio +Auriel +Auriga +Aurilla +Auriol +Auriol Park +Aurora +Aurore +Auseon +Aussie +Austell +Austen +Austenwood +Austhorpe +Austin +Austin Creek +Austin Joseph +Austins +Austral +Australia +Australian +Australis +Australorp +Austrian +Austrian Pine +Autenreith +Auth +Authority +Authorpe +Authors +Auto +Auto Center +Auto Circle +Auto Club +Auto Mall +Auto Park +Auto Plaza +Autocenter +Automation +Automobile +Automotive +Autopilot +Autotech +Autoville +Autran +Autrey +Autum Leaf +Autumn +Autumn Brook +Autumn Chace +Autumn Chase +Autumn Creek +Autumn Crest +Autumn Fields +Autumn Flower +Autumn Gate +Autumn Gold +Autumn Hill +Autumn Lake +Autumn Leaf +Autumn Maple +Autumn Meadow +Autumn Mist +Autumn Oak +Autumn Oaks +Autumn Park +Autumn Point +Autumn Ridge +Autumn Rust +Autumn Trail +Autumn Valley +Autumn Willow +Autumn Woods +Autumncrest +Autumnleaf +Autumnvale +Autumnwind +Autumnwood +Auvergne +Auvernat +Aux Sable +Auxplaines +Auzerais +Ava +Avalani +Avalli +Avalon +Avalon Bay +Avalon Ct +Avamere +Avansino +Avante +Avanti +Avard +Avarn +Avati +Avdon +Ave Maria +Avebury +Avelar +Aveley +Aveline +Aveling +Aveling Park +Avella +Avellano +Avelon +Avena +Avenal +Avenel +Avenel Farm +Avenel Gardens +Avenell +Avenida +Avenida del Este +Avenida del Norte +Avening +Avenleigh +Avenons +Avens +Avenue +Avenue A +Avenue B +Avenue of Heroes +Averell +Averenches +Averett +Averhill +Averill +Averitt +Avern +Avers +Averton +Avery +Avery Park +Avesbury +Avey +Aviador +Avian +Aviary +Aviation +Aviator +Aviemore +Avignon +Avila +Avington +Avior +Avis +Avisford +Aviston +Avitar +Avoca +Avocet +Avola +Avon +Avon Beach +Avon Hill +Avona +Avonbrook +Avondale +Avondale Park +Avonelle +Avonia +Avonlea +Avonley +Avonmore +Avonmouth +Avonshire +Avonwick +Avots +Avram +Avro +Avy +Awaba +Awald +Awalt +Awani +Award +Awashawagh +Awatea +Awatos +Awbrey Patent +Awburn +Awixa +Awkard +Awl +Awlfield +Awliscombe +Axbridge +Axdell +Axe +Axehurst +Axel +Axes +Axford +Axholme +Axinn +Axletree +Axminster +Axtaine +Axtell +Axton +Ayala +Ayanian +Aybrook +Aycliffe +Aycrigg +Ayd Mill +Aydon +Ayebridges +Ayelands +Ayer +Ayers +Aylands +Ayles +Aylesbury +Aylesbury Vale +Aylesby +Aylesford +Aylestone +Ayleswade +Aylesworth +Aylett +Ayliffe +Aylin +Ayling +Ayloffe +Aylor +Aylsford +Aylsham +Aylsworth +Aylward +Aylwin +Aymar +Aymer +Aynho +Aynhoe +Aynor +Aynsley +Aynsworth +Ayot Little Green +Ayotte +Ayr +Ayres +Ayres End +Ayreshire +Ayresome +Ayrlawn +Ayrlie Water +Ayrmont +Ayrshire +Ayrsome +Ayrton +Ayrton Senna +Aysgarth +Ayshe Court +Ayshford +Ayshire +Aythorne +Ayton +Aytoun +AzTec +Aza +Azalea +Azalea Dell +Azalea Flat +Azalea Grove +Azalea Sands +Azalia +Azara +Azeala +Azee +Azel +Azelea +Azell +Azenby +Azevedo +Azimuth +Azof +Azores +Aztec +Aztec Ridge +Azuar +Azucar +Azule +Azure +Azusa +Azzopardi +B Colony +B Fernwood +B Gale Wilson +B Leeds +B Lefferts +B V French +B W Williams +B York +BART Access +BK. Methley +BMW Park +BP Connect Regent +BP Darling +BP Davies +BP Victoria +Baalbec +Baardwyck +Baardwyk +Baas +Babb +Babbage +Babbe +Babbin +Babbington +Babbit +Babbit Bridge +Babbs Creek +Babcock +Babe Ruth +Babe Ruth Park +Babe Thompson +Babel +Babel Slough +Baben +Baber +Babero +Babes +Babetta +Babich +Babicz +Babington +Babmaes +Babs +Babson +Babson College +Babula +Babylon +Babylon Farmingdale +Babyn +Bacall +Baccarat +Baccharis +Bacchetti +Bacchus +Bach +Bache +Bachelder Ranch +Bachell +Bacheller +Bachelor +Bachelor Grove +Bachelors +Bachman +Bacigalup +Bacigalupi +Bacinada +Back +Back Acton +Back Ainsworth +Back Albert +Back Alexander +Back Alfred +Back Alice +Back Alicia +Back Alma +Back Anson +Back Archery +Back Arnold +Back Ashbee +Back Ashville +Back Ashworth +Back Astley +Back Aston +Back Atlanta +Back Austhorpe +Back Aviary +Back Baldwin +Back Banbury +Back Banstead +Back Bath +Back Baxendale +Back Bay +Back Bay Beach +Back Baythorpe +Back Belmont +Back Bennetts +Back Birley +Back Blackbank +Back Blackburn +Back Bolton +Back Bowen +Back Bowling Green +Back Bradford +Back Bride +Back Bridge +Back Bright +Back Bristol +Back Bromwich +Back Broom +Back Brudenell +Back Brunswick +Back Burley +Back Burnaby +Back Bury +Back Camberley +Back Carl +Back Carter +Back Castle +Back Cautley +Back Cecil +Back Ceder +Back Chalfont +Back Chapel +Back Charlton +Back Chatsworth +Back Chestnut +Back China +Back Church +Back Clarence +Back Clarendon +Back Clegg +Back Clipston +Back Cobden +Back Colenso +Back Collings +Back Coniston +Back Conway +Back Coop +Back Corson +Back Cotton +Back Cranbrook +Back Crawford +Back Crescent +Back Croft +Back Cromer +Back Cross Flatts +Back Cross Green +Back Crown +Back Crumpsall +Back Darcy +Back Darley +Back Darwen +Back Dawlish +Back Dean Church +Back Dent +Back Dobie +Back Dorset +Back Duncan +Back Duxbury +Back East Park +Back Eastbank +Back Eccles +Back Ecclesburn +Back Eckersley +Back Eddisbury +Back Eden +Back Edinburgh +Back Elsworth +Back Empire +Back Ena +Back Eskrick +Back Estcourt +Back Fairhaven +Back Fletcher +Back Florence +Back Fortune +Back Frances +Back Fylde +Back Garton +Back Gaskell +Back Gate +Back Gaythorne +Back George +Back George Barton +Back Gladstone +Back Glen Bott +Back Glossop +Back Gloster +Back Graveley +Back Green +Back Greenhalgh +Back Greenland +Back Gresham +Back Grove +Back Hadwin +Back Haigh +Back Halliwell +Back Halstead +Back Hargreaves +Back Hartley +Back Haydock +Back Headingley +Back Heddon +Back Hessle +Back High +Back High Bank +Back Higher Darcy +Back Highfield +Back Highthorne +Back Hilden +Back Hilton +Back Hind +Back Holly +Back Hope +Back Horsa +Back Howarden +Back Howcroft +Back Hulme +Back Irlam +Back Ivanhoe +Back Ivy Bank +Back James +Back Jubilee +Back Karnak +Back Keighley +Back Kelso +Back Kendal +Back Kingsley +Back Kitson +Back Knowl +Back Landseer +Back Lark +Back Latham +Back Leachfield +Back Leatham +Back Lena +Back Lever Hall +Back Lindley +Back Lodge +Back Long +Back Longworth +Back Lord +Back Loxham +Back Lucas +Back Luton +Back Lytton +Back MAsrhall +Back Mackenzie +Back Manchester +Back Manor +Back Market +Back Marshall +Back Mary +Back Massie +Back Maud +Back Maxwell +Back Mayfield +Back Mayville +Back Maze +Back Meynell +Back Milan +Back Milner +Back Monk Bridge +Back Morritt +Back Nansen +Back Nelson +Back Nevada +Back New York +Back Newton +Back Norris +Back Norwood +Back Nunington +Back Nunroyd +Back Olaf +Back Olga +Back Ollerton +Back Outwood +Back Palm +Back Parkdale +Back Parkville +Back Parnaby +Back Pawson +Back Pine +Back Pleasant +Back Poplar +Back Portugal +Back Preston +Back Primrose +Back Quay +Back Quebec +Back Queen +Back Rainshaw +Back Ranch +Back Rawson +Back Rawsthorne +Back River +Back River Neck +Back Romer +Back Rosamond +Back Rose +Back Roseberry +Back Ryefield +Back Sandhurst +Back Sandy Bank +Back Sapling +Back Savile +Back Scowcroft +Back Seaforth +Back Sefton +Back Seymour +Back Sharman +Back Sholebroke +Back Short +Back South View +Back Southfield +Back Springfield +Back Sunnybank +Back Sunnyside +Back Sutcliffe +Back Talbot +Back Teak +Back Tempest +Back Thicketford +Back Thorn +Back Thorns +Back Thorpe +Back Tong +Back Tonge Old +Back Torr +Back Trafford +Back Turner +Back Ulleswater +Back Union +Back Uttley +Back Vernon +Back Vickerman +Back Victoria +Back Viking +Back Viola +Back Walmsley +Back Walnut +Back Wapping +Back Wardle +Back Wash +Back Water +Back Waverley +Back Webster +Back Wesley +Back Westbury +Back Westfield +Back Westminster +Back Wetherby +Back Wheatfield +Back Wickham +Back Wilton +Back Wolfenden +Back Wood +Back Woodgate +Back Worcester +Back Wordsworth +Back Wright +Back Yates +Back York +Backer Ranch +Backiel +Backlick +Backlund +Backpack +Backriver +Backstone Gill +Backstrad +Backus +Backus Farm +Backwater +Backwoods +Bacon +Bacon Island +Bacon Race +Bacons +Bacton +Bacup +Bad Munstereifel +Badajos +Badajoz +Badcoe +Baddacook Pond +Baddeley +Badding +Baddow +Baddow Hall +Baddow Place +Bade +Badeau +Baden +Baden Naylor +Baden Powell +Baden Spring +Baden Westwood +Badenoch +Bader +Badgally +Badgemore +Badger +Badger Creek +Badger Hall +Badger Pass +Badger Valley +Badger Woods +Badgers +Badgerwood +Badgery +Badgley +Badham +Badian +Badin +Badingham +Badlands +Badlis +Badminton +Badsell +Badshot Lea +Badsworth +Badto +Baemar +Baer +Baert +Baffin +Baffin Bay +Baford +Bafp +Bag +Bagala +Bagatelle +Bagdad +Bagdaly +Bagel +Baggett +Baggins +Baghill +Bagley +Bagleys +Bagnell +Bago +Bagot +Bagpipe +Bags +Bagshaw +Bagshawe +Bagshill +Bagshot +Bagshotte +Bagslate Moor +Bagstock +Baguley +Bagwell +Bahama +Bahia +Bahl +Bahr +Bahram +Baier +Baigents +Baigorry +Baildon +Bailes +Bailey +Bailey Ranch +Bailey Ridge +Baileyana +Baileys +Baileys Crossing +Bailin +Bailiwick +Baillie +Baily +Baimbridge +Bain +Bain Bridge +Bain Ranch +Bainbridge +Bainbrigge +Bainbrook +Baincroft +Baine +Baines +Bainter +Bainton +Baio +Bair Island +Baird +Bairin +Bairn +Baisley +Baiting Place +Baitx +Baizdon +Baja +Baja Sol +Bajada +Baje Industrial +Bajo +Bajor +Bajt +Baker +Baker Bridge +Baker Hill +Baker Park +Bakers +Bakersfield +Bakersmill +Bakersville +Bakestonedale +Bakewell +Bakhouse +Bakken +Bakley +Bal Harbor +Balaam +Balaams +Balaclava +Balaka +Balaming +Balanada +Balance +Baland +Balantine +Balantre +Balas +Balbach +Balbec +Balbeek +Balboa +Balcarres +Balceta +Balch +Balchen +Balchier +Balchins +Balclutha +Balcom +Balcomb +Balcombe +Balcome +Balcorne +Bald Cypress +Bald Eagle +Bald Eagle School +Bald Hill +Bald Nob +Bald Pate +Bald Rock +Balder +Balderstone +Balderton +Baldi +Baldin +Baldo +Baldock +Baldocks +Baldridge +Baldrine +Baldur Park +Baldwin +Baldwin Dam +Baldwin Hill +Baldwin Lake +Baldwins +Baldwyns +Baldy +Bale +Balenese +Balentine +Baler +Baleri Ranch +Bales +Baley Bridge +Balfanz +Balfe +Balfern +Balfour +Balgang +Balgonie +Balgowan +Balgowlah +Balgownie +Balgreen +Balham High +Balham Park +Balhan +Bali +Balint +Balintore +Baliol +Balis +Balk +Balkan +Ball +Ball Hill +Ball Park +Balla +Ballad +Ballamore +Ballance +Ballanda +Ballandella +Ballantine +Ballantrae +Ballantrae Farm +Ballantre +Ballantree +Ballantyne +Ballar +Ballarat +Ballard +Ballards +Ballardvale +Ballast +Ballast Point +Ballater +Ballbrook +Ballena +Ballena Bay +Ballencrieff +Ballenger +Ballens +Ballentine +Balleratt +Ballew +Ballfield +Ballina +Ballindine +Ballingdon +Ballinger +Ballingswood +Balliol +Ballister +Ballman +Balloch +Ballogie +Ballord +Ballou +Ballpark +Ballpate Hill +Balls Bluff +Balls Ford +Balls Head +Balls Hill +Balls Pond +Ballsten +Ballston +Ballum +Ballville +Ballwood +Bally Bunion +Ballybunion +Ballycastle +Ballycor +Ballydrain +Ballymena +Ballymore +Ballyshannon +Balm +Balma +Balmain +Balmanringa +Balmaringa +Balme +Balmer +Balmerino +Balmes +Balmfield +Balmino +Balmoral +Balmoral Forest +Balmoral Greens +Balmoral Woods +Balmore +Balmy +Balnacraig +Balnew +Balog +Balowrie +Balra +Balsa +Balsam +Balsamo +Balsamtree +Balsamwood +Balsawood +Balshaw +Balsm +Balsom +Balston +Balstonia +Balsum +Baltan +Baltes +Baltic +Baltimore +Baltimore Annapolis +Baltimore Hill +Baltimore Washington +Baltus +Baltusrol +Baltz +Baltzer +Balyata +Balzer +Bamarcia +Bambara +Bamber +Bamberg +Bamberger +Bambi +Bamboo +Bambra +Bambrick +Bambridge +Bamburgh +Bambury +Bamfield +Bamford +Bamm Hollow +Bampton +Ban Tara +Banana Grove +Banaro +Banas +Banbal +Banbury +Banbury Ridings +Banchio +Banchory +Bancker +Bancroft +Bancroft Tower +Bancrofts +Band +Bandain +Bandalong +Bandera +Banderra +Bandicoot +Bandley +Bando +Bandol +Bandon +Bandoni +Bandy +Bandy Run +Bane +Baneberry +Banes +Banff +Banff Vista +Banfield +Banfill +Bangalay +Bangalla +Bangalore +Bangalow +Bangert +Bangor +Bangs +Banim +Banister +Baniulis +Banjo +Bank +Bank Bridge +Bank Field +Bank Gate Royd +Bank Hall +Bank Hey Bottom +Bank Hill +Bank House +Bank Mill +Bank Side +Bank Top +Bank Vale +Bankart +Banker +Bankfield +Bankfoot +Bankhall +Bankhead +Bankhouse +Bankley +Banks +Banksfield +Banksia +Bankside +Bankston +Bankton +Bankview +Bankwell +Banky +Banleigh +Bannach +Bannacle Hill +Bannan +Bannard +Bannehr +Banneker +Banner +Banner Farm +Bannerman +Bannerwood +Banning +Bannington +Bannister +Bannisters +Bannock +Bannockburn +Bannon +Bannon Creek +Bannon Off Morse +Banool +Banquo +Banshee +Banshire +Bansom +Banstock +Banta +Bantam Grove +Bantas Point +Banters +Banti +Banting +Bantle Farm +Banton +Bantry +Bantry Bay +Banwell +Banyan +Banyan Tree +Banyard +Banyon +Banyon Ridge +Bapaume +Baptist +Baptista +Bar +Bar Beach +Bar Harbor +Bar Harbour +Bar King +Bar Oak +Bar du +Baragoola +Barambah +Baranbali +Barandas +Baranga +Barangaroo +Baranof +Barb Hill +Barb Werner +Barbadoes +Barbadon +Barbados +Barbara +Barbara Ann +Barbara D +Barbara Dale +Barbara Jean +Barbara Lee +Barbary +Barbee +Barbel +Barber +Barbera +Barberie +Barberry +Barbers +Barbers Corner +Barbers Point +Barbers Wood +Barbersville +Barbery +Barbettini +Barbey +Barbi +Barbican +Barbie +Barbieri +Barbour +Barbour Pond +Barbra +Barbrook +Barbud +Barca +Barcaglia +Barcaly +Barcellona +Barcells +Barcelona +Barchard +Barchester +Barcheston +Barcicroft +Barclay +Barclays +Barcliffe +Barclose +Barco +Barcom +Barcombe +Barcoo +Barcroft +Barcroft Mews +Barczewski +Bard +Bardalino +Bardard +Barden +Bardenville +Bardet +Bardfield +Bardhurst +Bardin +Bardion +Bardmour +Bardney +Bardo +Bardolier +Bardolino +Bardolph +Bardon +Bardoo +Bards +Bardsey +Bardsley +Bardsley Gate +Bardsley Vale +Bardu +Bardue +Bardwell +Bardy +Bare +Bare Cove +Bare Cove Park +Bare Hill +Bare Island +Bare Sky +Bareena +Barefoot +Barefoot Hill +Barehill +Barell +Barellan +Barenscheer +Barett +Barfett +Barff +Barfield +Barford +Barforth +Bargagni +Barge +Barge House +Barge Pier +Bargeman +Barger +Bargers +Bargmann +Bargo +Bargrove +Barham +Barharbor +Barhatch +Bari +Bariadoa +Barina +Barina Downs +Baring +Baring Ridge +Baringa +Barington +Bariston +Barium +Bark +Bark Burr +Bark Hart +Barkala +Barkalow +Barkdoll +Barkduk +Barkei +Barker +Barker Hill +Barkers +Barkers Pt +Barkett +Barkfield +Barkham +Barkhart +Barking +Barkingside High +Barkl +Barkley +Barkley Gate +Barkly +Barksdale +Barksdale Farm +Barkway +Barkwell +Barkwood +Barkworth +Barlas +Barlborough +Barlea +Barleau +Barletta +Barley +Barley Croft +Barley Field +Barley Hall +Barley Hill +Barley Mow +Barley Ponds +Barleycastle +Barleycorn +Barleycroft +Barleylands Farm +Barleymow +Barleywood +Barlik +Barlina +Barling +Barlings +Barlow +Barlow Fold +Barlow Hall +Barlow Moor +Barlow Park +Barlow Wood +Barlowe +Barmeston +Barmhouse +Barming +Barmouth +Barn +Barn Cottage +Barn Croft +Barn Hill +Barn House +Barn Owl +Barn Ridge +Barn Swallow +Barn Wood +Barna +Barnabas +Barnabe +Barnabe Mountain Fire +Barnabus Mill +Barnaby +Barnaby Run +Barnack +Barnacre +Barnacres +Barnard +Barnardo +Barnards +Barnboard +Barnbrough +Barnby +Barncleuth +Barncroft +Barndance +Barnecat +Barnegat +Barnehurst +Barnell +Barner +Barnert +Barnes +Barnes Cray +Barnes Hill +Barnes Lake +Barnes Mill +Barnes Wallis +Barnesdale +Barneson +Barnestead +Barnesville +Barneswell +Barneswood +Barnet +Barnet Chesterfield +Barnet Salisbury +Barnet Church Wood +Barnet Gate +Barnet High +Barnet Park +Barnet Side +Barnett +Barnett Valley +Barnett Wood +Barnetts +Barnetts Wood +Barneveld +Barney +Barney Hill +Barnfield +Barngate +Barnhall +Barnham +Barnhart +Barnheisel +Barnhill +Barnhouse +Barnhurst +Barnida +Barnier +Barnmead +Barns +Barnsboro +Barnsbury +Barnsdale +Barnsfield +Barnsfold +Barnside +Barnsley +Barnsole +Barnstable +Barnstaple +Barnstead +Barnston +Barnswallow +Barnum +Barnums +Barnwall +Barnwell +Barnwood +Barnyard +Baroda +Barola +Barolo +Barombah +Baron +Baron Cameron +Baron Kent +Baron Park +Baronbali +Barone +Baroness +Baronet +Baronhurst +Baronnel +Barons +Barons Court +Baronsfield +Baronsmead +Baronsmere +Barooga +Baroona +Baroque +Barossa +Barott +Barouche +Barque Hill +Barr +Barr Creek +Barr Elms +Barra +Barrabooka +Barracane +Barrack +Barracks +Barragulung +Barranca +Barraran +Barras +Barras Garth +Barrass +Barratt +Barrawinga +Barre +Barrel +Barrel House +Barremma +Barrena +Barrenger +Barrenjoey +Barrensdale +Barret +Barrett +Barrette +Barretto +Barretts +Barretts Green +Barretts Mill +Barreville +Barrfield +Barrhurst +Barri +Barrick +Barrie +Barrie Lynn +Barrier +Barrington +Barrington Bourne +Barrington Bridge +Barrington Hills +Barrington Point +Barrister +Barrley +Barroilhet +Barroll +Barron +Barron Field +Barron Heights +Barron Park +Barrons Reach +Barros +Barrow +Barrow Bridge +Barrow Furnace +Barrow Green +Barrow Hall +Barrow Hill +Barrow Point +Barrow on Duxbury +Barrowby +Barrowfield +Barrowgate +Barrows +Barrs +Barrs Fold +Barrsbrook Farm +Barrule +Barrus +Barry +Barry Point +Barrymeade +Barrymore +Barrypoint +Barrys Hill +Barsalugia +Barsby +Barsden +Barse +Barsenden +Barsham +Barson +Barstable +Barston +Barstow +Bart +Barta +Bartch +Barteau +Bartel +Bartell +Bartelmy +Bartels +Bartelt +Barter +Barth +Barth Pond +Bartha +Barthel +Barthelone +Barthold +Bartholdi +Bartholf +Bartholomew +Bartholomew Fair +Barthorpe +Bartina +Bartle +Bartlemore +Bartleson +Bartlet +Bartlets +Bartlett +Bartletts +Bartley +Bartman +Barto +Bartol +Bartolini +Bartolomei +Barton +Barton Creek +Barton Dock +Barton Hall +Barton Hill +Barton Manor +Bartons +Bartosh +Bartow +Bartram +Bartrams +Bartrip +Bartsch +Bartson +Barttelot +Bartz +Barunga +Barway +Barwell +Barwick +Barwick Main +Barwon +Barwon Park +Barwood +Basalt +Basalt Rock Company +Basbow +Basch +Bascom +Bascombe +Base +Basel +Baseline +Basewood +Basford +Bashall +Bashaw +Basher +Bashford +Bashford Barn +Basil +Basildon +Basile +Basilica +Basill +Basilon +Basils +Basilwood +Basin +Basing +Basingbourne +Basingfield +Basinghall +Basingstoke +Baskenridge +Baskerville +Basket +Basket Ring +Baskin +Baskin Service +Basking +Basking Ridge +Basler +Baslers +Baslow +Basmore +Basque +Bass +Bass Lake +Bass Point +Bass Pond +Bass Pro +Bass River +Bass Rock +Bassant +Basse +Bassel +Bassenthwaite +Basset +Bassetsbury +Bassett +Bassett Creek +Bassett Crk +Bassetts +Bassford +Bassil +Bassin +Bassingbourn +Bassingham +Bassler +Basswood +Bast +Bastable +Basted +Basten +Bastia +Bastian +Bastille +Bastion +Bastogne +Baston +Baston Manor +Bastona +Bastoni +Bastwick +Basuto +Bata +Bataan +Batacao +Batavia +Batchelder +Batchelder Park +Batcheller +Batchelor +Batchelors +Batchelors Choice +Batchwood +Batchworth +Batcliffe +Bate +Bate Bay +Bateman +Batemans +Batemill +Bates +Bates Farm +Bates Grove +Bates Park +Bates Point +Batesole +Bateson +Bateswell +Batey +Batford +Bath +Bath Hard +Bath House +Batham Gate +Bather +Bathgate +Bathhurst +Bathing Beach +Batho +Bathol +Baths +Bathurst +Batista +Batley +Batley Commercial +Batley Cross Bank +Batman +Baton +Baton Rouge +Batridge +Batson +Batsworth +Batt +Battaglia +Battalion +Battee +Batten +Batten Hollow +Battenburg +Batter +Battersby +Battersea +Battersea Bridge +Battersea Church +Battersea Park +Battery +Battery Blaney +Battery Chamberlin +Battery Cranston +Battery Dynamite +Battery East +Battery Heights +Battery Ridge +Battery Safford +Battery Wagner +Batterymarch +Batti +Battin +Battishill +Battle +Battle Bridge +Battle Creek +Battle Dance +Battle Flagg +Battle Green +Battle Ridge +Battle Rock +Battlebridge +Battledean +Battlefield +Battlefields +Battlehill +Battlement +Battles +Battles Farm +Battlesden +Battlesmere +Battock +Batts +Batts Bridge +Batty +Battye +Bauer +Bauers Farm +Baugh +Baugher +Baugher Farm +Baughman +Baulkham Hills +Baum +Bauman +Baumann +Baumans +Baumbach +Baumberg +Baumer +Baumert +Baumgartner +Baur +Bausell +Bausum +Bautista +Bavant +Bavaria +Bavarian Shores +Bavent +Bavin +Bawan +Bawdale +Bawn +Baxendale +Baxter +Baxters +Bay +Bay Beach +Bay Breeze +Bay Canyon +Bay Cliff +Bay Club +Bay Colony +Bay Creek +Bay Crest +Bay Dale +Bay Edge +Bay Farm +Bay Farms +Bay Flat +Bay Forest +Bay Front +Bay Green +Bay Harbor +Bay Harbour +Bay Haven +Bay Head +Bay Heights +Bay Highlands +Bay Hill +Bay Hills +Bay Horse +Bay Laurel +Bay Meadows +Bay Park +Bay Path +Bay Pond +Bay Reef +Bay Ridge +Bay Shore +Bay Side +Bay Terrace +Bay To Bay +Bay Town +Bay Tree +Bay Valley +Bay View +Bay View Farm +Bay View Point +Bay Vista +Bay Water +Bay Wood +Bayard +Baybell +Bayberrie +Bayberry +Bayberry Hill +Bayberry Ridge +Baybriar +Baybridge +Baybrook +Baybury +Baybutt +Baychester +Baycliff +Baycliffe +Baydon +Bayeau +Bayer +Bayfair +Bayfield +Bayford +Bayfront +Bayhall +Bayham +Bayhead +Bayhill +Bayhills +Bayhorne +Bayhurst +Baylands +Baylawn +Baylee +Bayles +Bayless +Bayley +Baylie +Baylight +Bayliner +Baylis +Bayliss +Baylor +Bayly +Baymeadow +Baynard +Bayne +Baynes +Bayns Hill +Baynton +Bayo +Bayo Vista +Bayona +Bayonne +Bayou +Bayou Bend +Baypath +Baypoint +Baypoint Village +Baypointe +Bayport +Bayrd +Bayridge +Bayshire +Bayshore +Bayside +Bayside Beach +Bayside Park +Bayston +Bayswater +Baytech +Baythorne +Baythorpe +Baytomac Farms +Bayton +Baytree +Bayview +Bayview Beach +Bayview Hill +Bayview Hills +Bayview Park +Bayville +Bayville Park +Baywalk +Baywater +Bayway +Baywind +Baywolf +Baywood +Baywood Shores +Baywoods +Bazeley +Bazentin +Bazley +Bazz +Bb +Bea +Bea Kay +Beach +Beach Bluff +Beach Channel +Beach Haven +Beach Hill +Beach Lake +Beach Mill +Beach Park +Beach Pines +Beach Plum +Beach Point +Beach Side +Beach Spring +Beach View +Beacham +Beachamwell +Beachborough +Beachcomber +Beachcroft +Beachfield +Beachfront +Beachhall +Beachland +Beachler +Beachley +Beachmont +Beachnut +Beachplum +Beachs +Beachside +Beachview +Beachview Creek +Beachville +Beachway +Beachwood +Beachwood Park +Beachy +Beacom +Beacon +Beacon Bay +Beacon Heights +Beacon Hill +Beacon Hollow +Beacon Light +Beacon Oak +Beacon Park +Beacon Point +Beacon Pond +Beacon Ridge +Beacon Shores +Beacon View +Beaconfield +Beaconridge +Beaconsfield +Beaconsfield Common +Beaconsfield Terrace +Beacontree +Beaconwood +Beacrane +Beadel +Beadham +Beadle +Beadles +Beadlow +Beadman +Beadnell +Beadon +Beaford +Beaghan +Beagles Wood +Beak +Beal +Beale +Beales +Beales Wood +Bealey +Beall +Beall Mountain +Beall Spring +Bealle Hill +Beallsville +Bealmear Mill +Beals +Beam +Beaman +Beamer +Beames +Beaminster +Beamis +Beamish +Beamon +Beamont +Beamsley +Bean +Bean Creek +Bean Field +Bean Hill +Bean Hill Orchard +Bean Hollow +Bean Leach +Beancroft +Beane +Beanes +Bear +Bear Brook +Bear Canyon +Bear Creek +Bear Creek Canyon +Bear Cub +Bear Flag +Bear Forest +Bear Glen +Bear Gulch +Bear Hill +Bear Island +Bear Min +Bear Mountain +Bear Oaks +Bear Paw +Bear Ridge +Bear River +Bear Swamp +Bear Tooth +Bear Valley +Bearce +Bearcloud +Beard +Beardall +Beardell +Bearden +Beardon +Beards +Beards Creek +Beards Point +Beardslee +Beardsley +Beardsmore +Beardwood +Bearfield +Bearfoot +Bearfort +Bearhurst +Bearinda +Bearing +Bearpath +Bears +Bears School +Bearse +Bearskin Farm +Bearsted +Bearton +Bearwood +Bearwoods +Beasley +Beathwaite +Beatie +Beatrice +Beatrice Wignall +Beatricia +Beatrix +Beatriz +Beatson +Beattie +Beatty +Beatty Ridge +Beau +Beau Bien +Beau Brummel +Beau D Rue +Beau Meade +Beau Monde +Beau Pre +Beau Ridge +Beaubien +Beauchamp +Beauchamps +Beaudet +Beaudin +Beaudry +Beaufield +Beauford +Beauforest +Beaufort +Beaufoy +Beaufront +Beaulieu +Beaumant +Beaumaris +Beaumeadow +Beaumis +Beaumond +Beaumont +Beaumont Canyon +Beaumont Hall +Beaumont Park +Beauport +Beauregard +Beaurepaire +Beausoleil +Beauteau +Beauty Beach +Beauty Point +Beautys Hill +Beauval +Beauvale +Beauvoir +Beaux Arts +Beaven +Beaver +Beaver Brook +Beaver Creek +Beaver Dam +Beaver Dam Park +Beaver Ford +Beaver Heights +Beaver Hill +Beaver Hollow +Beaver Knoll +Beaver Meadow +Beaver Mill +Beaver Park +Beaver Pond +Beaver Ridge +Beaver Run +Beaverbank +Beaverbrok +Beaverbrook +Beavercreek +Beaverdale +Beaverdam +Beaverkill +Beavers +Beaverwood +Beavours +Beawick +Bebbington +Bebe +Bebelong +Bebout +Becado +Beccles +Becerra +Becharry +Bechaud +Bechert +Bechstein +Bechtel +Bechtold +Beck +Beck Creek +Beckbridge +Beckenham +Beckenham Hill +Becker +Becker Farm +Beckerle +Beckers Green +Beckert +Becket +Becket Meadow +Beckett +Beckett Crossing +Becketts +Beckfield +Beckfoot +Beckford +Beckham +Beckhaus +Beckingham +Beckington +Beckland +Beckler +Beckley +Becklow +Beckman +Becknel +Becks +Beckton +Beckway +Beckwith +Beckworth +Becky +Becky Lynn +Beclan +Beclands +Becola +Becondale +Becontree +Becontree Lake +Bedal +Bedale +Bedder +Beddington +Beddington Farm +Beddlestead +Beddoo +Bede +Bedell +Bedells +Bedens +Bederwood +Bedevere +Bedfont +Bedford +Bedford Park +Bedfordshire +Bedgebury +Bedivere +Bedlam +Bedle +Bedlington +Bedloes +Bedlow +Bedmond +Bednal +Bedonwell +Bedrock +Bedser +Bedwardine +Bedwell +Bedwin +Bedwins +Bee +Bee Bee +Bee Biology +Bee Fold +Bee Hive +Bee Oak +Beebe +Beeby +Beech +Beech Bottom +Beech Creek +Beech Down +Beech Farm +Beech Forest +Beech Glen +Beech Hall +Beech Hangers +Beech Hayes +Beech Hill +Beech Hollow +Beech Housre +Beech Hyde +Beech Park +Beech Ridge +Beech Spring +Beech Tree +Beech Trees +Beecham +Beechbank +Beechbrook +Beechcraft +Beechcrest +Beechcroft +Beechdale +Beechdrop +Beechen +Beechen Bank +Beechenlea +Beecher +Beeches +Beeches Farm +Beechfern +Beechfield +Beechgreen +Beechgrove +Beechhill +Beechhurst +Beechin Wood +Beeching +Beechknoll +Beechland +Beechlands +Beechmont +Beechmore +Beechnut +Beecholme +Beechpark +Beechstone +Beechtree +Beechview +Beechvue +Beechway +Beechwood +Beechworth +Beechy +Beechy Lees +Beecot +Beecroft +Beede +Beedell +Beedingwood +Beedle +Beedon +Beeger +Beehag +Beehive +Beehive Beach +Beehrle +Beekay +Beekey +Beekman +Beekman Hill +Beel +Beelar +Beelard +Beeleigh +Beeler +Beeley +Beeline +Beelong +Beeman +Beemer +Beemera +Beemra +Beers +Beesfield +Beeson +Beesonend +Beeston +Beet +Beet Wagon +Beeth +Beethoven +Beever +Beffa +Bega +Begen +Beggarhouse +Beggars +Beggars Hill +Beggarsbush +Beggers Bush +Beggs +Begier +Begonia +Behan +Beharrel +Beharrell +Behler +Behm +Behmer +Behn +Behnke +Behoes +Behr +Behrendt +Behrens +Behrns +Behun +Bei +Beige +Beiling +Beinoris +Beira +Beiriger +Beith +Beitzel +Bejay +Bekeswell +Bel Air +Bel Air Plantation +Bel Aire +Bel Ayre +Bel Canto +Bel Escou +Bel Estos +Bel Glade +Bel Mar +Bel Marin Keys +Bel Pre +Bel Red +Bel Roma +Bela +Belah +Belair +Belaire +Belanger +Belar +Belarre +Belbeck +Belburn +Belcamp +Belchamps +Belchams +Belcher +Belcher Farm +Belchers +Belclare +Belconte +Belcot +Belcourt +Belcrest +Belcroft +Beldam +Beldam Bridge +Beldams +Belden +Belder +Beldham +Beldhams +Beldin +Belding +Beldon +Belec +Belemba +Belevedere +Belfair +Belfairs +Belfairs Park +Belfast +Belfield +Belfield Old +Belfiore +Belford +Belfort +Belfry +Belgarden +Belgaro +Belgatos +Belgenny +Belgian +Belgica +Belgium +Belglen +Belgrade +Belgrave +Belgravia +Belgreen +Belgrove +Belham +Belhaven +Belhurst +Belick +Belinda +Belinder +Belinus +Belisle +Belita +Beliveau +Belknap +Bell +Bell Air +Bell Bluff +Bell Branch +Bell Bridge +Bell Canyon +Bell Chase +Bell Clough +Bell Creek +Bell Executive +Bell Farm +Bell Flower +Bell Foundry +Bell Green +Bell Hill +Bell House +Bell Laboratories +Bell Meadow +Bell Oak +Bell Oaks Estates +Bell Rock +Bell Rose +Bell Tower +Bell Tree +Bell Vale +Bell Vue +Bella +Bella Casa +Bella Coola +Bella Lago +Bella Madeira +Bella Oaks +Bella Terra +Bella Tuscany +Bella Villa +Bella Vista +Bellafiore +Bellagio +Bellain +Bellair +Bellaire +Bellaire Hills +Bellam +Bellambi +Bellamere +Bellamy +Bellamy Farm +Bellanca +Belland +Bellantoni +Bellara +Bellasis +Bellaterea +Bellaterra +Bellatrix +Bellavia +Bellavista +Bellbird +Bellbrook +Bellbrooke +Bellcast +Bellcastle +Bellclose +Belle +Belle Aire +Belle Ami +Belle Angela +Belle Chasse +Belle Cote +Belle Crest +Belle Fontaine +Belle Foret +Belle Grae +Belle Grove +Belle Haven +Belle Isle +Belle Marie +Belle Meade +Belle Monti +Belle Plaine +Belle Plains +Belle Point +Belle Pond +Belle Roche +Belle Terra +Belle Terre +Belle View +Belle Vista +Belle Vue +Belle of Georgia +Belleair +Belleaire +Belleau +Belleau Woods +Bellechase +Bellecrest +Bellefair +Bellefield +Bellefield Park +Bellefields +Belleflower +Bellefonte +Belleforest +Belleforte +Bellegrove +Bellemaine +Bellemeade +Bellenden +Belleplaine +Beller +Bellerive +Bellerose +Belles +Belleterre +Belleto +Belletto +Bellevale +Belleverde +Belleview +Belleville +Bellevista +Bellevue +Bellevue Hill +Bellevue Park +Bellevue Redmond +Bellew +Bellewood +Belleza +Bellfield +Bellfields +Bellflower +Bellgrove +Bellham +Bellhaven +Bellhouse +Bellhurst +Belli +Bellina +Bellina Canyon +Bellingara +Bellingdon +Bellinger +Bellingham +Bellingrath +Bellington +Bellman +Bellmarsh +Bellmeade +Bellmere +Bellmill +Bellmont +Bellmore +Bellmount Wood +Bello +Bellombi +Bellomo +Bellomy +Bellona +Belloreid +Bellot +Bellotti +Bellows +Bellows Hill +Bellplaine +Bellport +Bellridge +Bellrive +Bellrock +Bellrose +Bells +Bells Croft +Bells Hill +Bells Mill +Bells Ridge +Bellsbrae +Bellstone +Bellswood +Bellthorne +Belltower +Bellue +Belluno +Belluscio +Bellvale +Bellview +Bellville +Bellvista +Bellvue +Bellwood +Belmar +Belmart +Belmer +Belmers +Belmill +Belmohr +Belmond +Belmonde +Belmont +Belmont Bay +Belmont Canyon +Belmont Grove +Belmont Harbor +Belmont Landing +Belmont Park +Belmont Place +Belmont Ridge +Belmont Woods +Belmore +Belnap +Belnay +Belnel +Belnor +Beloit +Belot +Belpark +Belper +Belport +Belridge +Belrose +Belsham +Belshaw +Belsize +Belson +Belsteads Farm +Belswaine +Belswains +Belt +Beltagh +Beltana +Beltane +Belter +Beltinge +Beltline +Belton +Beltrami +Beltran +Beltring +Belts +Beltsville +Beltwood +Beltz +Belva +Belvale +Belvedere +Belverere +Belvidere +Belvidere Line +Belview +Belvoir +Belvoir Farm +Belvoir Woods +Belvor +Belvue +Belvue Close Belvue +Belward Campus +Belwood +Bembe Beach +Bembridge +Bement +Bemerton +Bemis +Bemis Heights +Bemish +Bempton +Bemrose +Bemsted +Bemuth +Ben +Ben Boyd +Ben Eden +Ben Franklin +Ben Howard +Ben Jones +Ben Jonson +Ben Ledi +Ben Levin +Ben Lomond +Ben Lomond Park +Ben Lomond Toll +Ben More +Ben Nevis +Ben Oak +Ben Oaks +Ben Roe +Bena +Benalla +Benalong +Benares +Benaroon +Benassi +Benaud +Benavente +Benbo +Benbow +Benbrick +Benbrook +Benburb +Benbury +Bench +Benchill +Benchleys +Benchmark +Bencich +Bencliffe +Bencombe +Bencoolen +Bencroft +Bend +Bend Circle +Bend of River +Benda +Bendale +Bendall +Bendemeer +Bendemere +Bender +Benders +Bendigo +Bending +Bendish +Bendix +Bendlowes +Bendmore +Bendorf +Bendysh +Bendywine +Benecia +Benedetti +Benedick +Benedict +Benedictine +Benefit +Benefly +Benelli +Benelong +Benenden +Benenson +Benet +Benetfield +Benets +Benett +Benevides +Benfield +Benfleet +Benfleet Park +Benford +Benforest +Bengal +Bengarth +Bengeo +Bengeworth +Bengeyfield +Benghazi +Bengloe +Benham +Benhams +Benhardt +Benhenry +Benhill +Benhooks +Benhurst +Benich +Benicia +Benine +Beninford +Bening +Beningfield +Benington +Benita +Benita Fitzgerald +Benito +Benjamin +Benjamin Day +Benjamin Franklin +Benjamin Kidder +Benjamins +Benjoe +Benkert +Benledi +Benmere +Benmor +Benmore +Benn +Bennacott +Bennalong +Benndorf +Bennel +Bennelong +Benner +Bennerley +Bennet +Bennetsfield +Bennett +Bennett End +Bennett Hill +Bennett Meadows +Bennett Ridge +Bennett Valley +Bennett View +Bennetta +Bennetts +Bennetts End +Bennetts Grove +Benning +Benningfield +Benningholme +Benninghton +Bennington +Bennington Hollow +Bennington Woods +Bennion +Bennison +Bennit +Benny +Benoit +Benoni +Benover +Benoy +Benris +Bens +Bensbach +Bensham +Bensham Manor +Bensin +Benskin +Benskins +Bensley +Benslow +Benson +Benson Ferry +Bensonhurst +Benstone +Bensville +Bent +Bent Bough +Bent Brook +Bent Creek +Bent Cross +Bent Fold +Bent Grass +Bent Hill +Bent Maple +Bent Oak +Bent Ridge +Bent Spur +Bent Tree +Bent Tree Hills +Bent Twig +Bent Water +Bent Willow +Bentay +Bentcliffe +Bentella +Bentfield +Bentgate +Benthal +Bentham +Bentinck +Bentink +Bentley +Bentley Hall +Bentley Heath +Bentley Ridge +Bentley Village +Bently +Bentnor +Bento +Bentoak +Benton +Benton Creek +Benton Park +Benton Square +Bentonbrook +Bentree +Bentridge +Bentry +Bents +Bentsbrook +Bentside +Bentson +Bentswood +Benttree +Bentwaters +Bentwillow +Bentwood +Bentwoods +Bentworth +Benty +Bentzen +Benvenue +Benwell +Benwerrin +Benworth +Benyon +Benz +Benziger +Benzo +Benzon +Bepler +Bepton +Berachan +Berallier +Beram +Berambil +Berard +Berber +Berberis Walk Laurel +Berbice +Bercaw +Bercik +Berckman +Bercta +Bercut +Berdan +Berdina +Berdnick +Bere +Berea +Berechurch +Berechurch Hall +Beredens +Berendos +Berengrave +Berens +Beres Ford +Beresford +Beresini +Berestede +Beret +Beretta +Berg +Bergamont +Bergamot +Berge +Bergen +Bergen Hill +Bergen Ridge +Bergenfield +Bergenline +Bergenwood +Berger +Bergerac +Bergeron +Berges +Bergholt +Bergholz +Bergin +Berglund +Bergman +Bergonia +Bergstrom +Bergthold +Beridge +Berilda +Berith +Berk +Berkeley +Berkeley Court +Berkeley Park +Berkely +Berkenshire +Berkey +Berkhampstead +Berkhamsted +Berking +Berkley +Berkley Manor +Berkmans +Berkowitz +Berks +Berkshire +Berkshire Woods +Berlant +Berlee +Berlin +Berliz +Berma +Berman +Bermar +Bermer +Bermill +Bermondsey +Bermondsey Long +Bermuda +Bern +Berna +Bernacci +Bernadette +Bernadine +Bernado +Bernadotte +Bernal +Bernal Heights +Bernard +Bernard Ashley +Bernard Cassidy +Bernardine +Bernardo +Bernas +Bernath +Bernay +Bernds +Berne +Bernel +Berner +Bernera +Berners +Bernhard +Bernhardt +Bernice +Bernie +Bernie Kelly +Bernie Ruth +Bernier +Bernini +Bernisdale +Bernita +Bernon +Bernstein +Bernt +Bernyce +Bero +Beronga +Berowra +Berrellessa +Berrendo +Berrian +Berridale +Berridge +Berries +Berrigan +Berrille +Berrillee +Berrima +Berriman +Berring +Berrington +Berristall +Berriton +Berritt +Berry +Berry Corner +Berry Cove +Berry Creek +Berry Hill +Berry Mill +Berry Patch +Berry Pond +Berry Ridge +Berrybush +Berrycroft +Berrydale +Berrydown +Berryessa +Berryfield +Berryhill +Berryland +Berrylands Avalon +Berryleaf +Berryman +Berrymede +Berrypick +Berrys +Berrys Hill +Berryscroft +Berrywood +Bersano +Bersham +Berstein +Bert +Berta +Berta Canyon +Berta Views +Bertal +Berteau +Bertenshaw +Bertero +Berth +Bertha +Berthold +Berthole +Berthon +Berthoud +Bertie Minor +Bertine +Bertini +Bertis +Bertita +Bertito +Bertlee +Bertling +Bertmore +Bertocchi +Bertola +Bertoldo +Bertoli +Bertolli +Bertolotto +Berton +Bertram +Bertrand +Berts +Bertsky +Bertuccio +Bertwell +Berverdor +Berwick +Berwick Pond +Berwin +Berwind +Berwood +Berwyn +Berwyn House +Berwynd +Beryl +Beryllium +Berylwood +Besana +Besant +Besborough +Besco +Beskeen +Besler +Besley +Beslyns +Besom +Besonend +Bess +Bessant +Bessborough +Bessels Green +Bessemer +Bessemund +Bessida +Bessie +Bessie Coleman +Bessingby +Bessle +Bessmer +Besso +Bessom +Bessy +Best +Bestgate +Bestic +Bestick +Bestobell +Beston +Bestor +Bestwicke +Beswick +Beswicke Royds +Beswicks +Beta +Betabel +Betam +Betchets Green +Betchworth +Betenson +Beth +Beth David +Beth Israel +Beth Lee +Bethal +Bethany +Bethards +Bethayres +Bethecar +Bethel +Bethel Church +Bethel Island +Bethelen Woods +Bethersden +Bethesda +Bethia +Bethlehem +Bethlehem Church +Bethnal Green +Bethnall +Bethpage +Beths +Bethune +Betlen +Betley +Betleymere +Betlin +Betlo +Betnor +Betola +Betoyne +Betsham +Betson +Betstyle +Betsy +Betsy Brown +Betsy Davis +Betsy Ross +Bette +Betteker +Bettencourt +Bettenhausen +Betterton +Bettescombe +Bettina +Bettinelli +Bettington +Bettinson +Bettio +Bettis +Bettison +Bettowynd +Bettridge +Betts +Bettswood +Betty +Betty Ann +Betty Crocker +Betty Cuthbert +Betty Grove +Betty Lou +Betty Mae +Betula +Betz +Beulah +Beulah Park +Beult +Beumont +Beuna Vista +Beutke +Beutler +Bev +Bev Cunha County +Bevan +Bevans +Bevanwood +Bevard +Beveland +Beveridge +Beverlee +Beverley +Beverly +Beverly Hill +Beverly Hills +Beverly J Griffin +Beverly Jay +Beverly Manor +Beverly Park +Bevern +Bevers +Beversbrook +Beverstone +Bevier +Bevil +Bevilacqua +Bevin +Bevin Brook +Bevington +Bevins +Bevis +Bevmar +Bewbush +Bewdley +Bewick +Bewlbridge +Bewley +Bewlys +Bexhill +Bexley +Bexley High +Bexon +Bexton +Beyer +Beynon +Beythe +Beza +Bezant +Bezos +Bi County +Biagar +Bianca +Bianchi +Bianco +Biara +Biarritz +Biava +Bibbenluke +Bibbits +Bibbs +Bibbs Hall +Bibby +Bibeau +Bibel +Bible +Bible Baptist Church +Bibsworth +Bibury +Bicek +Bicentennial +Bicester +Bichner +Bickell +Bickerdike +Bickershaw +Bickerstaff +Bickersteth +Bickertoh +Bickerton +Bickford +Bickleigh +Bickley +Bickling +Bicknell +Bicknell Hill +Bicknoiler +Bicknoller +Bicknor +Bidborough +Biddall +Bidden +Biddenden +Bidder +Biddestone +Biddle +Biddleford +Biddulph +Bideford +Bidgee +Bidston +Bidurgal +Bidwell +Bieber +Bieghle +Biehn +Biel +Bielawski +Bielby +Bielenberg +Bieneman +Bienville +Bierline +Biermann +Bierstan +Bies +Biesi +Biesterfield +Biffins +Bifrost +Big Axe +Big Barn +Big Basin +Big Bear +Big Bend +Big Blue +Big Bluestem +Big Branch +Big Break +Big Burn +Big Canyon +Big Circle +Big Common +Big Creek +Big Dipper Ranch +Big Foot +Big Fox +Big Horn +Big Indian +Big Island +Big Lake +Big Live Oak +Big Oak +Big Peninsula +Big Piece +Big Pine +Big Plum +Big Pool +Big Ramapo +Big Ranch +Big Rock +Big Rock Ridge +Big Rock Ridge Fire +Big Run +Big Spring +Big Springs +Big Springs Canyon +Big Sur +Big Timber +Big Tree +Big Valley +Big Woods +Bigelow +Bigfrith +Biggar +Bigge +Bigger +Biggers +Biggerstaff +Biggin +Bigginwood +Biggs +Biggs Grove +Biggs Purchase +Bigham +Bighorn +Bighorn Sheep +Bight +Bighton Dean +Bigland +Biglow +Bigmore +Bignell +Bigney +Bignor +Bigonia +Bigthan +Bigwood +Bija +Bijou +Bikila +Bikini +Bilambee +Bilbao +Bilberry +Bilbo +Bilbrook +Bilby +Bilga +Bilgola +Bilkurra +Bill +Bill Aldis +Bill Carr +Bill Ferguson +Bill Graham +Bill Hoare +Billa +Billabong +Billadell +Billams Hill Farnley +Billand Common +Billara +Billard +Billarga +Billarong +Billeci +Billerica +Billericay +Billeroy +Billett +Billie +Billie Limacher +Billie Smith Memorial +Billing +Billingbauk +Billingham +Billings +Billingsgate +Billingshurst +Billingsley +Billington +Billinton +Billiou +Billiter +Billman +Billong +Billop +Billou +Billow +Billows +Billrose +Bills +Billson +Billy +Billy Bob +Billy Casper +Billy Diehl +Billy Lows +Billyard +Billys +Bilney +Biloba +Bilodeau +Biloolo +Bilpin +Bilsen +Bilter +Biltmore +Biltom +Bilton +Bimbadeen +Bimbil +Bimburra +Bimini +Binalong +Binaville +Bincote +Binda +Bindaree +Bindari +Bindea +Binden +Binder +Binet +Binfield +Binford +Bing +Bingara +Bingen +Binger +Bingfield +Binggelli +Bingham +Bingham Hill +Binghampton +Binghamton +Bingle +Bingley +Bingo Lake +Bings +Bingswood +Binkey +Binks +Binley +Binn +Binna Burra +Binnacle +Binnari +Binnaway +Binnett +Binney +Binney Park +Binnie +Binning +Binnowee +Binns +Binns Nook +Binscombe +Binstead +Binsted +Binton +Binya +Binyon +Bionda +Biondi +Bionia +Biotechnology +Bir +Birbetts +Birch +Birch Bark +Birch Bend +Birch Brush +Birch Cliff +Birch Cove +Birch Creek +Birch Green +Birch Hall +Birch Hill +Birch Island +Birch Knoll +Birch Lake +Birch Lakes +Birch Meadow +Birch Pond +Birch Ranch +Birch Ridge +Birch Run +Birch Tree +Birchall +Bircham +Birchanger +Birchard +Birchbark +Birchbaugh +Birchbrook +Birchbrow +Birchcliff +Birchcrest +Birchcroft +Birchdale +Birchdene +Birchell +Birchen +Birchenall +Birchenlea +Bircher +Bircherley +Birches +Birches Croft +Birchett +Birchetts +Birchetts Green +Birchfield +Birchfields +Birchgrove +Birchill +Birchin +Birchin Cross +Birchington +Birchleaf +Birchmead +Birchmeadow +Birchmont +Birchmore +Birchmount +Bircholt +Birchpond +Birchside +Birchtree +Birchvale +Birchview +Birchwood +Birchwood Grove +Birchwood Hill Ring +Birchwood Park +Bird +Bird Hall +Bird Hill +Bird In Bush +Bird In Hand +Bird in Bush +Bird in Hand +Birdale +Birdbrook +Birdcage +Birdcage Center +Birdcherry +Birdcroft +Birdfoot +Birdhill +Birdhurst +Birdie +Birds Farm +Birds Hill +Birds Landing +Birdsall +Birdsboro +Birdseye +Birdsfield +Birdsfoot +Birdsong +Birdsville +Birdswood +Birdwood +Birfield +Birginal +Birinta +Birk +Birkbeck +Birkby +Birkdale +Birken +Birkendene +Birkenhead +Birkenshaw +Birkenshaw Town +Birkett +Birkey +Birkhall +Birkhead +Birkhofer +Birkin +Birkinheath +Birklands +Birkle +Birkley +Birks +Birkwood +Birley +Birling +Birmingham +Birmington +Birnam +Birnam Wood +Birnamwood +Birney +Birnham +Birnie +Birok +Birrell +Birrellea +Birriga +Birrima +Birriwa +Birrong +Birs +Birstall +Birt +Birtch +Birtle +Birtles +Birtlespool +Birtrick +Birtwistle +Birubi +Birunna +Biruta +Birwood +Bisacno +Bisbee +Biscay +Biscayne +Bisceglia +Bischoff +Biscot +Bisenden +Bisham +Bishoff +Bishop +Bishop Carroll +Bishop Hall +Bishop Ken +Bishop Pine +Bishop R Allen +Bishopdale +Bishopgate +Bishops +Bishops Bequest +Bishops Castle +Bishops Content +Bishops Down +Bishops Down Park +Bishops Gate +Bishops Hall +Bishopscote +Bishopsford +Bishopsgate +Bishopsmead +Bishopsthorpe +Bishopstone +Bishopswood +Bishopton +Bisland +Bisley +Bismach +Bismarck +Bismark +Bismire +Bismuth +Bisner +Bison +Bisordi +Bispham +Bisque +Bissel +Bissell +Bissett +Bisshop +Bisso +Bisson +Bisterne +Biter +Bithell +Bither +Bitola +Bittacy +Bittacy Park +Bittams +Bitter Oak +Bitter Sweet +Bittercreek +Bittern +Bitterne +Bitternut +Bitterroot +Bittersweet +Bitterwater +Bitting +Bittle +Bittner +Bitty +Bivona +Biwana +Bix +Bixby +Bixby Hill +Bixler +Bixley +Bizzaro +Bizzibe +Bjerstedt +Bjork +Bjorkman +Bjune +Bjur +Blachley +Black +Black Alder +Black Arrow +Black Bass +Black Bear +Black Beech +Black Birch +Black Boy +Black Branch +Black Briar +Black Brook +Black Bull +Black Bush +Black Chapel +Black Chestnut +Black Crow +Black Diamond +Black Duck +Black Eagle +Black Feather +Black Forest +Black Friar +Black Friars +Black Gold +Black Gum Tree +Black Hawk +Black Hill +Black Hill Ridge +Black Hills +Black Horse +Black Hut +Black Ironwood +Black Kettle +Black Kite +Black Lake +Black Lion +Black Log +Black Mill +Black Moor +Black Mount +Black Mountain +Black Oak +Black Park +Black Partridge +Black Pearl +Black Pine +Black Plain +Black Point +Black Point Horseshoe +Black Pond +Black Pond Hill +Black Prince +Black Rock +Black Saddle +Black Swan +Black Tail +Black Thorn +Black Tree +Black Twig +Black Velvet +Black Walnut +Black Wood +Blackacre +Blackall +Blackamoor +Blackbank +Blackberry +Blackberry Fields +Blackberry Hill +Blackberry Ridge +Blackberry Shore +Blackbird +Blackbird Cross Forty +Blackbird Hill +Blackbirds +Blackborne +Blackborough +Blackbourn +Blackbower +Blackboy +Blackbriar +Blackbridge +Blackbrook +Blackburn +Blackburn Ford +Blackburnian +Blackbush +Blackbutt +Blackbutts +Blackcap +Blackcarr +Blackchapel +Blackcherry +Blackcroft +Blackdown +Blackduck +Blacker +Blacket +Blackett +Blacketts +Blackfan +Blackfen +Blackfield +Blackfold +Blackfoot +Blackford +Blackfriars +Blackgate +Blackgates +Blackhall +Blackhawk +Blackhawk Club +Blackhawk Hills +Blackhawk Meadow +Blackheaath +Blackheath +Blackhill +Blackhoath +Blackhorse +Blackhouse +Blackhurst +Blackington +Blackinton +Blackjack +Blacklands +Blackledge +Blackley +Blackley New +Blackley Park +Blacklock +Blackman +Blackmar +Blackmer +Blackmon +Blackmoor +Blackmore +Blackmore End +Blackness +Blacknest +Blackney +Blackoak +Blackoaks +Blackpoint +Blackpond +Blackpool +Blackpowder +Blackridge +Blackrock +Blackrod +Blacks +Blacks Hill +Blacksand +Blacksburg +Blackshaw +Blackshire +Blackshots +Blacksmith +Blacksnake +Blacksole +Blackspur +Blackstar +Blackstock +Blackstocks +Blackstone +Blackstone Edge Old +Blackstone River +Blackstroud +Blacktail +Blackthorn +Blackthorne +Blackthorne Ridge +Blacktop +Blacktown +Blackwall +Blackwall Point +Blackwalnut +Blackwatch +Blackwater +Blackwater Valley +Blackwattle +Blackwattle Creek +Blackwell +Blackwell Farm +Blackwin +Blackwolf +Blackwood +Blackwood Edge +Blacow +Blade +Blade Green +Bladen +Bladensburg +Blades +Bladindon +Bladon +Blagdon +Blaggard +Blagrave +Blagrove +Blaier +Blaikie +Blain +Blaine +Blair +Blair Athol +Blair Mill +Blair Ranch +Blair Ridge +Blairbeth +Blairderry +Blaire +Blairgowrie +Blairhall +Blairhead +Blairmore +Blairton +Blairwood +Blais Farm +Blaisdell +Blaiswood +Blake +Blake Ridge +Blakeden +Blakedown +Blakefield +Blakehall +Blakeley +Blakelock +Blakelow +Blakely +Blakeman +Blakemere +Blakemore +Blakemore End +Blakeney +Blakenham +Blaker +Blakeridge +Blakes +Blakes Farm +Blakes Hill +Blakeslee +Blakesley +Blakestones +Blaketon +Blakeville +Blakewood +Blakiston +Blakistone +Blamey +Blamire +Blanc +Blanca +Blanch +Blanchan +Blanchard +Blanche +Blanche Dell +Blanchfield +Blanchlands +Blanco +Bland +Blandfield +Blandford +Blandin +Blanding +Blands +Blandsford +Blandy +Blane +Blaney +Blanford +Blank +Blanken +Blankenship +Blanket Hall +Blanks +Blanmerle +Blanton +Blantre +Blantyre +Blarney +Blashford +Blasi +Blatchford +Blattman +Blau +Blauer +Blausanne +Blauss +Blauvelt +Blawith +Blaxcell +Blaxland +Blaydon +Blays +Blaze +Blazer +Blazingwood +Bleach +Bleak +Bleakley +Bleakney +Bleakwood +Blean +Bleasby +Bleasdale +Blease +Bleasedale +Bleatarn +Blechynden +Bleck +Bleckely +Bledlow Ridge +Bleecker +Bleeker +Blegborough +Blehm +Blellatrey +Blemer +Blencarn +Blendall +Blendia +Blendon +Blendwood +Blenford +Blenheim +Blenheim Park +Blenhiem +Blenkinsop +Blenman +Bleriot +Blessing +Blessington +Bletchingley +Bletchley +Blevins +Blewbury +Blewett +Blewitt +Blick +Blickview +Bligh +Blighs +Blighton +Blinco +Blind +Blind Brook +Blindgrooms +Blindley +Blindsill +Blinkhorn +Blinn +Bliss +Blissett +Blithdale +Blithedale +Blithewood +Blithfield +Bloch +Block +Block House +Blockhouse +Blocklehurst +Blockley +Blodgett +Blodgetts +Bloemfontein +Blohm +Blom +Blomerth +Blomfield +Blomquist +Blomskog +Blomville +Blondell +Blondin +Blood +Bloodwood +Bloody Point +Bloom +Bloom Grade +Bloom Lake +Bloom Park +Bloomberg +Bloomburg +Bloomdale +Bloomfield +Bloomhall +Bloomingbank +Bloomingdale +Bloomington +Bloomington Ferry +Bloomington Frwy +Blooms +Blooms Quarry +Bloomsbury +Bloors +Bloors Wharf +Blossom +Blossom Acres +Blossom Cove +Blossom Creek +Blossom Dale +Blossom Heath +Blossom Hill +Blossom Park +Blossom Ranch +Blossom Ridge +Blossom River +Blossom Tree +Blossom Valley +Blossom Vista +Blossom Wood +Blossomcrest +Blossoms +Blossomview +Blossomwood +Blossum +Blouin +Blount +Blounts +Blounts Court +Blowing Rock +Blows +Bloxhall +Bloxham +Bloxon +Bloy +Bluberry +Blucher +Blucher Valley +Blue +Blue Anchor +Blue Ash +Blue Aster +Blue Ball +Blue Banner +Blue Bayou +Blue Bell +Blue Berry +Blue Bird +Blue Boar +Blue Bonnet +Blue Brook +Blue Circle +Blue Coat +Blue Cove +Blue Cow +Blue Crane +Blue Cross +Blue Dan +Blue Dolphin +Blue Flag +Blue Fox +Blue Gate +Blue Gentian +Blue Goose +Blue Grass +Blue Gray +Blue Gum +Blue Heaven +Blue Heron +Blue Herron +Blue Hill +Blue Hill River +Blue Hill Terrace +Blue Hills +Blue Iris +Blue Island +Blue Island Vermont +Blue Jay +Blue Lagoon +Blue Lake +Blue Lakes +Blue Larkspur +Blue Leaves +Blue Ledge +Blue Line +Blue Lupine +Blue Meadow +Blue Mill +Blue Mist +Blue Mound +Blue Mountain +Blue Oak +Blue Oaks +Blue Point +Blue Poppy +Blue Post +Blue Rapids +Blue Ravine +Blue Ribbon +Blue Ridge +Blue Ridge Fire +Blue Roan +Blue Rock +Blue Rock Hill +Blue Sage +Blue Sea +Blue Shirt +Blue Silk +Blue Sky +Blue Slate +Blue Smoke +Blue Spring +Blue Spruce +Blue Tees +Blue Topaz +Blue Valley +Blue Violet +Blue Water +Blue Waters +Blue Waters Farm +Blue Whale +Blue Willow +Blue Wing +Bluearrow +Bluebell +Blueberry +Blueberry Hill +Bluebill +Bluebill Bay +Bluebird +Bluebonnet +Bluebridge +Bluecoat +Bluecoats +Bluedale +Bluefield +Bluefields +Bluefin +Bluefish +Blueford +Bluegate +Bluegill +Bluegrass +Bluegum +Bluehouse +Bluejay +Blueridge +Blueridge Meadows +Blueridge View +Bluerock +Blues Point +Bluestem +Bluestern +Bluestone +Bluestone Bay +Bluet +Bluett +Blueview +Bluewater +Bluewillow +Bluff +Bluff City +Bluff Creek +Bluff Ct +Bluff Edge +Bluff Head +Bluff Point +Bluff Pointe +Bluff Ridge +Bluffs +Bluffs Edge +Bluffwood +Bluhill +Bluhm +Blum +Blume +Blumenfeld +Blumert +Blundell +Blunden +Blundon +Blunn +Blunt +Blunts +Blunts Hall +Blunts Wall +Blunts Wood +Blurton +Blush +Bluth +Bluxome +Bly +Blyden +Blysdale +Blyth +Blythe +Blythe Hill +Blytheswood +Blythewood +Blythorn +Blythswood +Blythwood +Boa Nova +Boa Vista +Boad +Boadicea +Boama +Boar +Boar Head +Board +Board School +Boardale +Boardley +Boardleys +Boardman +Boardschool +Boardwalk +Boarfold +Boarley +Boarman +Boarmans +Boars Tye +Boarshaw +Boarshead +Boarshurst +Boarstones +Boas +Boastfield +Boat +Boat Dock +Boat House +Boatclub +Boathouse +Boatman +Boatwright +Bob +Bob Ehlen +Bob Larsen +Bob O Link +Bob Reed +Bob White +Bobadah +Bobal +Bobann +Bobart +Bobbell +Bobbett +Bobbi +Bobbie +Bobbin Head +Bobbina +Bobby +Bobby Jean +Bobby Jones +Bobby Locke +Bobby Spencer +Bobbyber +Bobbys +Bobbywood +Bobcat +Bobelaine +Boblee +Bobmore +Bobolink +Bobs +Bobs Ford +Bobsled +Bobstay +Bobwhite +Boca +Boca Rio +Bocana +Bock +Bocket +Bockhampton +Bockhanger +Bockman +Bockmer +Bocks +Bodalla +Bodan +Bodden +Boddens Hill +Boddington +Boddingtons +Bode +Bodega +Bodega Bay +Boden +Bodensee +Bodiam +Bodie +Bodily +Bodin +Bodino +Bodkin +Bodkin View +Bodle +Bodley +Bodmer +Bodmin +Bodnarik +Bodney +Bodrick +Bodsworth +Bodway +Bodwell +Body +Boeger +Boehm +Boehme +Boehmer +Boehmhurst +Boeing +Boeing Access +Boekland Ranch +Boelsen +Boerum +Boesch +Boeske +Boessow +Bog +Bogalara +Bogalusa +Bogan +Bogandale +Bogarde +Bogarin +Bogart +Bogastow Book +Bogastow Brook +Bogata +Bogert +Bogerts Mill +Bogetti +Bogey +Boggard +Boggart Hill +Boggiano +Boggs +Bogie +Bogle +Bogner +Bogny +Bogota +Bograh +Bogren +Bogue +Bohac +Bohan Dillon +Bohannon +Bohemia +Bohemian +Bohemian Beach +Bohen +Bohland +Bohlander +Bohlken +Bohlman +Bohn +Bohnen +Bohns Point +Bohny +Bohr +Boice +Boiling Spring +Boiling Springs +Bois +Bois Hall +Bois Moor +Boise +Boismoor +Boisvert +Boivin +Bokel +Bokelman +Bolado +Bolan +Boland +Boland Farm +Bolanos +Bolaro +Bolas +Bolberry +Bolcum +Bold +Bold Lion +Bold Venture +Bolden +Bolderwood +Bolding House +Boldman +Boldmere +Bolds +Boldt +Bolero +Boles +Boley +Boleyn +Boleyns +Bolford +Bolgard +Bolger +Bolina +Bolinas +Bolinas Fairfax +Bolinda +Boling +Bolingbroke +Bolingbrook +Bolivar +Bolivia +Boll +Bolla +Bollard +Bollate +Bolle +Bollenbacher +Boller +Bolles +Bollin +Bollinbarn +Bolling +Bollinger +Bollinger Canyon +Bollington +Bollo +Bollo Bridge +Bollum +Bolmer +Bolney +Bolney Chapel +Bolney Trevor +Bolnore +Bolsa +Bolsa Tank Fr +Bolsena +Bolser +Bolshaw +Bolshaw Farm +Bolsin +Bolson +Bolsover +Bolstead +Bolster +Bolster Moor +Bolt +Bolter +Bolter End +Bolters +Bolton +Bolton House +Bolton Old +Boltons +Boltres +Boltro +Boltwood +Boltzen +Bolus +Bolwarra +Bolyston +Bolz +Bomabellee +Bombadier +Bombadil +Bombala +Bombay +Bombell +Bombers +Bombora +Bomford +Bomish +Bomore +Bon +Bon Accord +Bon Air +Bon Fleur +Bon Haven +Bon Mar +Bon Terre +BonHam +Bona +Bona Vista +Bonaccordo +Bonad +Bonair +Bonair Siding +Bonaire +Bonalbo +Bonan +Bonanza +Bonaparte +Bonar +Bonaventura +Bonaventure +Bonavesta +Bonbon +Bonbury +Boncarn +Boncheff +Bonchurch +Boncosky +Bond +Bond Hollow +Bond Mill +Bondage +Bondell +Bondfield +Bondi +Bondmark +Bonds +Bonds Retreat +Bondsburry +Bondy +Boneashe +Bonehurst +Bones +Boneset +Boneta +Bonetti +Bonfair +Bonfield +Bonfire +Bong +Bongart +Bongs +Bonham +Bonheur +Bonhill +Bonhomme +Boniface +Bonifacio +Bonifant +Bonington +Bonis Hall +Bonita +Bonita Downs +Bonita Vista +Bonito +Bonna Villa +Bonnard +Bonnardel +Bonnards +Bonneau +Bonnefin +Bonnell +Bonnema +Bonner +Bonner Hill +Bonnersfield +Bonness +Bonnet +Bonneting +Bonnett +Bonnetts +Bonneville +Bonnevista +Bonney +Bonnibrook +Bonnie +Bonnie Acres +Bonnie Brae +Bonnie Branch +Bonnie Briar +Bonnie Brook +Bonnie Burn +Bonnie Clare +Bonnie Dale +Bonnie Dell +Bonnie Dundee +Bonnie Glen +Bonnie Heights +Bonnie Jay +Bonnie Meadow +Bonnie Ridge +Bonnie View +Bonnie Vista +Bonniebrook +Bonniemill +Bonnievale +Bonnieview +Bonniewood +Bonnington +Bonny +Bonny Brow +Bonny Doon +Bonny Hill +Bonnybrook +Bonnydale +Bonnyman +Bonnymead +Bonnys +Bonnywell +Bonpel +Bonsai +Bonsal +Bonsall +Bonser +Bonsey +Bonseys +Bonsor +Bont +Bonta +Bontempo +Bonter +Bontou +Bonus +Bonus Hill +Bonview +Bonville +Bonvini +Bonwell +Bonwit +Bonwood +Boo +Boodle +Book +Booker +Booker T +Booker Washington +Bookerhill +Bookert +Bookham +Bookhurst +Books +Booksin +Boola +Boolarong +Booligal +Boom +Boomer +Boomerang +Boon +Boonah +Boonara +Boondah +Boone +Boone Grove +Boones +Boones Hill +Boongil +Boonstra +Boonton +Booraba +Booraem +Booragul +Booralee +Booralie +Booralla +Boorara +Boorea +Booream +Booreea +Boorroo +Booster Ring +Boot +Bootes +Booth +Booth Bank +Booth Bed +Booth Hall +Booth Hill +Booth Memorial +Booth Tarkington +Bootham +Boothbay +Boothbed +Boothby +Boothdale +Boothe +Boothey +Boothfield +Boothhaven +Boothouse +Boothroyd +Boothroyden +Booths Hill +Boothsbank +Boothstown +Bootjack +Bootle +Boots +Booyong +Booze Lake +Bopete +Bora +Bora Bora +Boraga +Boranda +Borax +Borba +Borcher +Borchers +Borchert +Bordale +Bordars +Borde Hill +Bordeau +Bordeaux +Bordelais +Borden +Bordentown +Border +Border Hill +Borderland +Borders +Bordesley +Bordessa +Bordly +Bordner +Bordolino +Bordona +Boreal +Borec +Boree +Boreham +Borel +Borella +Borello +Boren +Borers Arms +Borgard +Borge +Borges +Borges Ranch +Borghaus +Borgia +Borgins +Borglum +Borhart +Bori +Boria +Borica +Borick +Boright +Borina +Borinski +Borinsky +Borio +Bork +Borkshire +Borlaise +Borland +Borley +Borman +Bormet +Bornedale +Bornwood +Borojevic +Boroline +Boronga +Boronia +Borough +Borough Court +Borough Farm +Borough Green +Borough High +Borovere +Borre +Borregas +Borrego +Borrett +Borrette +Borrodaile +Borrodale +Borron +Borroway +Borrowdale +Borrows +Borrugh +Borsdane +Borsden +Borstal +Bortfield +Borth +Borthwick +Bortic +Borwell +Borwick +Borzotta +Bos +Bosanquet +Bosbury +Boscastle +Boscell +Bosch +Boschi +Bosci +Boscobel +Boscobell +Boscombe +Boscow +Bosden +Bosden Hall +Bosdenfold +Bose +Bosely +Bosenhill +Bosham +Bosk +Bosko +Bosley +Bosmore +Bosnjak +Bosphorus +Bosque +Boss +Bossa +Bossard +Bosse +Bossi +Bossington +Bossley +Bosson +Bossy +Bost +Bostall +Bostall Hill +Bostall Park +Bostian +Bostock +Boston +Boston Hill +Boston Manor +Boston Post +Boston Rock +Boston Scientific +Boston Spa Padmans +Boston Wharf +Bostonia +Bostonthorpe +Bostwick +Bosun +Bosville +Boswell +Boswells +Boswick +Bosworth +Bosworthfield +Botanical +Botany +Botany Bay +Bote +Boteler +Botelho +Botetourt +Botha +Bothelo +Bothfeld +Bothin +Bothner +Bothnia +Bothwell +Botiano +Botley +Botolph +Botsford +Botsom +Bott +Botterman +Bottesford +Botticelli +Bottineau +Bottle Brush +Bottle Forest +Bottle Square +Bottlebrush +Bottles +Bottner +Bottom +Bottom Boat +Bottom Pond +Bottomboat +Bottomley +Bottoms +Bottrells +Botts +Botwell Common +Botyl +Bou +Bouchard +Boucher +Bouck +Bouddi +Boudinot +Boudreau +Bouffant +Bougainville +Bougainvillea +Bouganville +Bouganvillea +Boughey +Boughton +Boughton Hall +Bouic +Boula +Boulden +Boulder +Boulder Bay +Boulder Bluff +Boulder Brae +Boulder Bridge +Boulder Brook +Boulder Canyon +Boulder Creek +Boulder Field +Boulder Glen +Boulder Lake +Boulder Point +Boulder Pointe +Boulder Ridge +Boulder Run +Boulderstone +Bouldish Farm +Bouldrewood +Bouleau +Boulevard +Boulmer +Boulogne +Boult +Boulters +Boulton +Boultwood +Bounces +Bound +Bound Brook +Boundaries +Boundary +Boundary Farm +Boundary Hill +Boundary Oaks +Boundless +Boundry +Bounds +Bounds Green +Boundstone +Bounstead +Bountiful +Bounty +Bounty View +Bouquet +Bouquet Park +Bourassa +Bourbon +Bourchier +Bourdeaux +Bourdon +Bourke +Bourley +Bourn +Bournbrook +Bourne +Bourne End +Bourne Grange +Bourne Grove +Bourne Park +Bourne Trail Fire +Bournebridge +Bournedale +Bournehall +Bournemouth +Bournemouth Park +Bourneside +Bournevale +Bourneville +Bournewood +Bournlea +Bournville +Bourque +Bourton +Bourtzos +Bousfield +Boussole +Boutas +Boutelle +Boutemain +Bouterse +Bouthiette +Bouton +Bouts +Boutwell +Boutwell Hill +Bouvardia +Bouve +Bouvel +Bouverie +Bouvier +Bovanizer +Bovarde +Bovelder +Boveney +Boveney New +Boveney Wood +Bovet +Bovey +Bovill +Bovingdon +Bovington +Bow +Bow Arrow +Bow Arts +Bow Green +Bow Ridge +Bow Spirit +Bow Sprit +Bowaga +Bowater +Bowbell +Bowcliffe +Bowdell +Bowden +Bowden Hey +Bowden House +Bowden View +Bowdens +Bowditch +Bowdoin +Bowdon +Bowe +Bowen +Bowenhurst +Bower +Bower Farm +Bower Heath +Bower Hill +Bower Mount +Bowerbird +Bowerdean +Bowerfiled +Bowerfold +Bowerland +Bowerman +Bowers +Bowers Farm +Bowers Grove +Bowerwood +Bowery +Bowes +Bowes Bend +Bowes Creek +Bowesden +Bowfell +Bowfin +Bowfonds +Bowford +Bowgreave +Bowhill +Bowie +Bowie Shop +Bowker +Bowker Bank +Bowl +Bowland +Bowlands +Bowlder +Bowlen +Bowler +Bowlers +Bowles +Bowley +Bowlhead Green +Bowlin +Bowline +Bowling +Bowling Green +Bowman +Bowman Green +Bowman Mill +Bowman Point +Bowman Towne +Bowmans +Bowmans Folly +Bowmer +Bown +Bownas +Bowne +Bowness +Bowns +Bowood +Bowral +Bowring +Bowrons +Bowry +Bows +Bowsens +Bowser +Bowsprit +Bowstone Hill +Bowstonegate +Bowstridge +Bowtell +Bowyer +Box +Box Canyon +Box Car +Box Elder +Box Mill +Box Office +Box Pond +Box R Ranch +Box Ridge +Boxall +Boxalls +Boxberry +Boxboard +Boxboro +Boxcar +Boxelder +Boxer +Boxes +Boxford +Boxgrove +Boxhill +Boxley +Boxman +Boxmill +Boxmoor +Boxoll +Boxted +Boxted Church +Boxtree +Boxwell +Boxwood +Boxwood Farms +Boxwood Grove +Boy Court +Boy Scout +Boyard +Boyce +Boyce Farm +Boyce Thompson +Boyce View +Boyd +Boyd Willis +Boydell +Boyden +Boyds +Boyds Turn +Boyer +Boyers +Boyes +Boyfield +Boylan +Boyland +Boyle +Boyle Farm +Boyles +Boyletown +Boylston +Boyn Hill +Boyndon +Boyne +Boynes +Boyneswood +Boynton +Boys +Boys Hall +Boys Ranch +Boys School +Boysea +Boysen +Boysenberry +Boyson +Boythorn +Boyton +Boyton Court +Boyton Hall +Bozen Green +Bozoian +Brabant +Brabazon +Brabham +Brabon +Brabourne +Brabrook +Brabyn +Brabyns +Bracadale +Bracci +Brace +Brace Bridge +Bracebridge +Bracewell +Bracher +Brack +Brack Mill +Bracken +Bracken Hill +Brackenbridge +Brackenbury +Brackendale +Brackenhurst +Brackenlea +Brackens +Brackenwood +Brackett +Bracketts +Bracketts Point +Brackley +Brackleys +Bracklyn +Brackman +Bracknell +Brackney +Bracks +Brackston +Bracondale +Bracton +Brad +Bradbourne +Bradbourne Park +Bradbourne Vale +Bradburn +Bradburns +Bradbury +Bradburys +Bradcutts +Braddale +Braddan +Bradden +Braddock +Braddock Creek +Braddock Ridge +Braddock Springs +Braddon +Braddyll +Bradeen +Braden +Bradenham +Bradenham Wood +Bradenton +Bradey +Bradfield +Bradfields +Bradford +Bradford Jay +Bradford Park +Bradford Pond +Bradforde +Bradgate +Bradgers Hill +Bradgreen +Bradgrove +Bradhill +Bradhoff +Bradhurst +Bradish +Bradish Farm +Bradiston +Bradl +Bradlee +Bradleigh +Bradley +Bradley Farm +Bradley Fold +Bradley Forest +Bradley Forge +Bradley Green +Bradley Hill +Bradley Park +Bradley Ranch +Bradley Woods +Bradly +Bradman +Bradmoor +Bradmoore +Bradmore +Bradmore Park +Bradner +Bradoc +Bradrick +Bradshad +Bradshaw +Bradshaw Hall +Bradshire +Bradstock +Bradston +Bradstone +Bradstreet +Bradview +Bradwahl +Bradwater +Bradwell +Bradwood +Brady +Brady S Hill +Bradyll +Brae +Brae Brooke +Brae Burn +Brae Loch +Braebridge +Braeburn +Braehurst +Braeland +Braeleigh +Braeman +Braemar +Braemer +Braemont +Braemoor +Braemore +Braes +Braeside +Braesmere +Braewood +Brafferton +Braga +Braganza +Bragato +Bragaw +Bragbury +Bragdon +Bragenham +Bragers +Bragg +Braghetta +Bragi +Braham +Brahma +Brahms +Braidburn +Braidwood +Braikfield +Brailley +Brailsford +Brain +Brain Ridge +Brainard +Brainerd +Brainton +Braintree +Brainwood +Brair Ridge +Brairfield +Brairwood +Braisted +Braiswick +Braithwaite +Braithwaithe +Brake +Brakefield +Brakelly +Braken +Brakenhurst +Brakke +Bralan +Brallas +Brallos +Braly +Bramall +Braman +Brambach +Bramber +Bramble +Bramble Bush +Bramble Reed +Bramble Wood +Bramblebrook +Bramblebush +Brambledene +Brambledown +Bramblefield +Bramblehill +Brambles Farm +Brambleton +Brambletye +Brambletye Park +Bramblewood +Brambling +Brambly +Bramcote +Bramdean +Bramer +Bramerton +Bramfield +Bramford +Bramhall +Bramhall Moor +Bramhall Park +Bramham +Bramhope +Bramhope Breary +Bramingham +Bramkampo +Bramleigh +Bramley +Bramley Green +Bramley Ring +Bramling +Bramlys +Brammay +Brampton +Brampton Park +Bramshaw +Bramshill +Bramshot +Bramshott +Bramstan +Bramston +Bramwell +Bramwood +Bramwoods +Bramworth +Branbridges +Branbury +Branca +Brancaster +Branch +Branch Brigade +Branch Brook +Branch Center +Branch Hill +Branch Side +Branchaud +Branchaw +Branchbrook +Branchview +Branchville +Branchwood +Branciforte +Brancker +Brancourt +Brand +Brandau +Brande +Brandee +Brandeis +Branden +Brandenburg +Brander +Branderburgh +Brandermill +Brandess +Brandford +Brandforth +Branding +Branding Iron +Brandis +Brandle +Brandlehow +Brandles +Brandlesholme +Brandley +Brandling +Brandlwood +Brandon +Brandon Green +Brandon Groves +Brandon Oaks +Brandon Shore +Brandon Way +Brandon Woods +Brandreth +Brands +Brands Hatch +Brands Hill +Brandt +Brandwood +Brandy +Brandy Carr +Brandy Farms +Brandy Hall +Brandy Hill +Brandyhall +Brandyn +Brandywine +Brandywine Heights +Brandywyn +Brandywyne +Braney +Branfield +Branford +Brangbourne +Brangton +Brangus +Branham +Branhum +Branigan +Branko +Branksea +Branksome +Branksome Hill +Branksome Park +Branksomewood +Brann +Brannan +Brannan Island +Branner +Brannick +Brannigan +Brannon +Branower +Bransby +Branscombe +Bransdale +Bransfield +Bransford +Bransgrove +Branson +Branson Ranch +Bransten +Branston +Branstone +Brant +Brantfield +Brantford +Brantingham +Brantley +Branton +Brantridge +Brantwood +Branvall +Branwell +Branwood +Branxton +Braquet +Brasch +Brasenose +Brasero +Brashear +Brashears +Brass Wheel +Brassel +Brasser +Brassey +Brassfield +Brassie +Brassington +Brasted +Brasted Hill +Brastow +Brathway +Bratley +Bratsell +Brattice +Brattle +Bratton +Brattray +Brauer +Braun +Braund +Braundton +Braunecker +Braunsdorf +Braunston +Braunton +Brautigam +Bravado +Brave +Bravender +Braverton +Bravington +Bravo +Bravo Fire +Brawner +Braxfield +Braxmar +Braxted +Braxted Park +Braxton +Bray +Brayards +Braybourne +Braybrook +Braybrooke +Brayburne +Braycourt +Braydon +Brayfield +Brayford +Braygreen +Brayley +Braymer +Brays +Brayshaw +Brayside +Brayton +Braywick +Braywood +Brazao +Brazenhose +Brazier +Braziers +Brazil +Brazley +Brea +Breach +Breach House +Bread +Breadcroft +Breadlands +Bready +Breaker +Breakers +Breakfast +Breakfast Point +Breakheart +Breaking Wave +Breakneck +Breakneck Hill +Breaks +Breakspear +Breakspeare +Breakspears +Breakwater +Breakwell +Bream +Breamore +Breary +Breasley +Breasted +Breaston +Breault +Breaults +Breaults Landing +Brechin +Breck +Brecken Ridge +Breckenbridge +Breckenridge +Breckinridge +Breckland +Brecknock +Brecks +Brecon +Breconshire +Breconwood +Bredbo +Bredbury +Bredhurst +Bredon +Bredon Hill +Bree +Bree Hill +Breech +Breed +Breeden +Breedens +Breedon +Breeds +Breen +Breer +Breesway +Breewood +Breeze +Breeze Hill +Breeze Knoll +Breezedale +Breezehurst +Breezeland +Breezemont +Breezewalk +Breezewood +Breezy +Breezy Hill +Breezy Knoll +Breezy Point +Breezyhill +Brefni +Brega +Breglia +Bregman +Brehaut +Brehme +Brei Kessel +Breiderhoft +Breightmet +Breightmet Fold +Breillat +Breitweiser +Breitwert +Breitwieser +Brem +Bremar +Brember +Bremen +Brementowne +Bremer +Bremerton +Bremner +Bremond +Bremtonwood +Bren +Bren Mar +Brenan +Brenchley +Brencon +Brenda +Brenda Lee +Brendan +Brendel +Brenden +Brendon +Brendon Hill +Brenford +Brenham +Brenish +Brenlyn +Brenman Park +Brennan +Brennans +Brennen +Brenner +Brennfleck +Brenning +Brennon +Brent +Brent Moor +Brent Park +Brent Town +Brent View +Brent Wood +Brentbridge +Brentfield +Brentford +Brentford High +Brentham +Brenthurst +Brentlands +Brentley +Brentmoor +Brentnall +Brentnor +Brenton +Brenton Point +Brentridge +Brentsville +Brentwall +Brentwood +Brentwood Farm +Brentz +Brenwood +Brereton +Bresee +Breslau +Bresnahan +Bressay +Bressey +Bret +Bret Hart +Bret Harte +Brethren +Bretland +Bretlands +Bretman +Bretmoor +Breton +Breton Lakes +Brett +Brettell +Brettenham +Bretton +Bretton View +Bretton Woods +Bretts Farm +Brettun +Bretz +Breuer +Breuner +Breval +Brevard +Breve +Brevensville +Brevent +Brevet +Brevity +Brevoort +Brew +Brew House +Brewer +Brewer Beach +Brewer House +Brewer Neck +Brewers +Brewers Hill +Brewerton +Brewery +Brewhouse +Brewhurst +Brewin +Brewington +Brewongle +Brewster +Brewster Creek +Brewster Gate +Brewton +Brexdale +Brey +Breyers +Breyley +Brian +Brian Run +Brian Smith +Briana +Brianboru +Briane +Brianne +Brians Hill +Briant +Briants +Briar +Briar Brae +Briar Cliff +Briar Close +Briar Creek +Briar Glen +Briar Hill +Briar Lea +Briar Mill +Briar Oak +Briar Oakes +Briar Patch +Briar Path +Briar Ridge +Briar Rock +Briar Rose +Briar Tree +Briar cliff +Briarbank +Briarberry +Briarbrook +Briarbush +Briarchip +Briarcliff +Briarcliffe +Briarcrest +Briarcroft +Briard +Briardale +Briarfield +Briarford +Briargate +Briarglen +Briargrove +Briarhill +Briarknoll +Briarlands +Briarly +Briarmont +Briarmoor +Briarpoint +Briars +Briarstone +Briarton +Briarwood +Briarwood North +Briarwood South +Briarwoods +Briary +Briary Wood +Brice +Brice Chapel +Bricher +Brichetto +Bricin +Brick +Brick Church +Brick House +Brick Kiln +Brick Plant +Brickel +Brickell +Brickenden +Brickendon +Bricker +Bricket +Brickett +Brickfield +Brickfields +Brickhill +Brickhouse +Bricklin +Brickmakers +Bricknoller +Brickpond +Brickspring +Brickstone +Brickvale +Brickwall +Brickway +Brickwood +Brickworks +Brickyard +Brickyard Cove +Bridal +Bridal Path +Bridalsmith +Briddle Path +Bride +Bride Hall +Briden +Brideoak +Brideoake +Bridestowe +Bridewain +Bridewell +Bridge +Bridge Barn +Bridge Bay +Bridge Branch +Bridge Creek +Bridge End +Bridge Farm +Bridge Hall +Bridge Pointe +Bridge Spur +Bridge View +Bridgecote +Bridgecourt +Bridgecross +Bridgedale +Bridgefield +Bridgefoot +Bridgeford +Bridgegate +Bridgeham +Bridgehampton +Bridgehead +Bridgeland +Bridgelea +Bridgeman +Bridgemarsh +Bridgenhall +Bridgenorth +Bridgepoint +Bridgepointe +Bridgeport +Bridgeport Lake +Bridger +Bridges +Bridges Farm +Bridgeside +Bridgestone +Bridget +Bridgeton +Bridgetown +Bridgevale +Bridgeview +Bridgewater +Bridgeway +Bridgeway Lakes +Bridgewood +Bridgford +Bridgham +Bridgit +Bridgman +Bridgnorth +Bridgwater +Bridle +Bridle Creek +Bridle Cross +Bridle Pass +Bridle Path +Bridle Post +Bridle Ridge +Bridle Spur +Bridle Trail +Bridle Wood +Bridlefield +Bridlegate +Bridlepath +Bridlespur +Bridleway +Bridlewood +Bridlington +Bridoon +Bridport +Bridson +Bridwell +Brie +Brief +Brielle +Brien +Briens +Brier +Brier Glen +Brier Hill +Brierbrook +Briercliffe +Briercrest +Brierdale +Brierfield +Brierhill +Brierholme +Brierley +Brierly +Brierway +Brierwood +Brierwoods +Briery +Brig +Briga +Brigade +Brigadier +Brigadoon +Brigalow +Brigantine +Brigantino +Brigate +Brigg +Briggs +Briggs Chaney +Briggs Fold +Briggs Ranch +Brigham +Brigham Hill +Bright +Bright Day +Bright Meadows +Bright Memory +Bright Mountain +Bright Pond +Bright Ridge +Bright Silk +Bright Sun +Bright View +Bright Wood +Brighten +Brightfield +Brightlands +Brightlea +Brightleaf +Brightling +Brightman +Brightmore +Brighton +Brighton Beach +Brighton Dam +Brighton Oaks +Brightshore +Brightside +Brightstone +Brightview +Brightwater +Brightwater Beach +Brightwell +Brightwells +Brightwood +Brigid Flanigan +Brigshaw +Brigstock +Brill +Brim +Brimbal +Brimbal Hills +Brimblecom +Brimblecomb +Brimbrook +Brimelow +Brimfield +Brimhall +Brimmer +Brimmers +Brimpton +Brimrod +Brimsdown +Brimshot +Brimsmead +Brimstone +Brimstone Academy +Brinawa +Brinckerhoff +Brindabella +Brindale +Brindle +Brindlehurst +Brindles +Brindlewood +Brindley +Brindwood +Brinef +Brinell +Bringelly +Brington +Brink +Brink Meadow +Brinkburn +Brinker +Brinkerhoff +Brinkhaus +Brinkinfield +Brinkley +Brinks +Brinkshaw +Brinkwood +Brinkworth +Brinley +Brinmar +Brinnington +Brinns +Brinsdale +Brinsley +Brinsmade +Brinsmead +Brinsop Hall +Brinsworth +Brinton +Brinwood +Brion +Briones +Briones Valley +Brionne +Briony +Brisa +Brisas +Brisbane +Brisbee +Brisbin +Briscoe +Briscoe Farm +Briscoe Turn +Briscolina +Briset +Brisette +Brishing +Briskin +Brislands +Brisley +Brisson +Bristel +Bristers Hill +Bristle Cone +Bristlecone +Bristles +Bristol +Bristol Bay +Bristol Downs +Bristol Hill +Bristol Off Water +Bristol Park +Bristol Ridge +Bristol Square +Bristol Trail +Bristol Village +Bristolwood +Briston +Bristow +Bristowe +Britain +Britani +Britania +Britannia +Britannic +Brite +Britford +Brithorn +British +British Colony +Britnall +Britney +Briton +Briton Hill +Britt +Britta +Brittain +Brittan +Brittany +Brittany Hills +Brittany Parc +Brittany Park +Brittanyann +Britten +Brittenden +Brittenford +Brittin +Brittle +Brittney +Britton +Britton Farm +Brittons +Britts Brook +Britwell +Briubi +Brive +Brixham +Brixton +Brixton Square +Brixton Water +Broach +Broad +Broad Arrow +Broad Bill +Broad Branch +Broad Brook +Broad Canal +Broad Creek +Broad Creek Church +Broad Ditch +Broad Foot +Broad Gate +Broad Green +Broad Hollow +Broad Meadow +Broad Oak +Broad Oaks +Broad Run +Broad Sound +Broadacre +Broadacres +Broadale +Broadbent +Broadbirch +Broadbottom +Broadbridge +Broadbridge Heath +Broadcar +Broadcarr +Broadclyst +Broadcroft +Broader +Broadfield +Broadfields +Broadford +Broadford Bridge +Broadgate +Broadgates +Broadhalgh +Broadham Green +Broadhead +Broadheath +Broadheys +Broadhinton +Broadhollow +Broadhurst +Broadis +Broadland +Broadlands +Broadlawn +Broadlea +Broadleaf +Broadley +Broadleys +Broadlove +Broadman +Broadmark +Broadmead +Broadmeadow +Broadmeadows +Broadmeadows Sheridan +Broadmoor +Broadmoore +Broadmore +Broadmoss +Broadneck +Broadneck Park +Broadoak +Broadoaks +Broads +Broadside +Broadsmore +Broadstone +Broadsword +Broadview +Broadview Academy +Broadwalk +Broadwater +Broadwater Creek +Broadwater Forest +Broadwater Point +Broadwaters +Broadway +Broadway Alexandra +Broadway Feather Bank +Broadway Wood +Broadway near Wood +Broadwell +Broadwick +Broadwire +Broadwood +Broady +Brocade +Brocas +Broccoli +Brocher +Brochie +Brock +Brock Bridge +Brock Hall +Brock Hill +Brockamin +Brockdish +Brockenbrough +Brockenhurst +Brocket +Brockett +Brockford +Brockham +Brockhamhurst +Brockhuizen +Brockhurst +Brocklebank +Brocklehurst +Brockleman +Brocklesby +Brockley +Brockley Hall +Brockman +Brockman Farm +Brockmeyer +Brockmier +Brocks +Brocksford +Brockswood +Brockton +Brockway +Brockwell +Brockwood +Broder +Broderick +Brodewater +Brodia +Brodick +Brodie +Brodie Spark +Brodin +Brodkin +Brodwood +Brody +Broe +Broening +Brogan +Brogdale +Brogden +Broghinge +Brokaw +Broke Farm +Broken Arrow +Broken Bow +Broken Branch +Broken Gate +Broken Land +Broken Oak +Broken Shell +Broken Tree +Broken Twig +Broker +Brokes +Brolass +Brom +Bromar +Bromborough +Brome +Bromehead +Bromfelde +Bromfield +Bromfords +Bromhall +Bromholm +Bromleigh +Bromley +Bromley Cross +Bromley Green +Bromley Hall +Bromley Hill London +Bromley Village +Brommer +Brompton +Brompton Farm +Bromshill +Bromwells +Bromwich +Bromyard +Bromycroft +Broncho +Bronco +Brondesbury +Brondsbury +Bronfield +Brong +Bronislaw +Brons +Bronsart +Bronson +Bronstein +Bronte +Bronte Marine +Bronti +Bronx +Bronx Park +Bronx River +Bronxdale +Bronxville +Bronxville Glen +Bronxwood +Bronze +Bronze Post +Bronzewing +Bronzon +Brook +Brook Bay +Brook Bottom +Brook Crossing +Brook Dale +Brook End +Brook Farm +Brook Ford +Brook Forest +Brook Grains +Brook Haven +Brook Head +Brook Hill +Brook Hills +Brook Hollow +Brook Knoll +Brook Lodge +Brook Lynn +Brook Mar +Brook Mill +Brook Park +Brook Run +Brook Trail +Brook Tree +Brook Vale +Brook Valley +Brook Village +Brookash +Brookbank +Brookbend +Brookbridge +Brookburn +Brookby +Brookcot +Brookcroft +Brookdale +Brookdene +Brooke +Brooke Acres +Brooke Farm +Brooke Grove +Brooke Jane +Brooke Knolls +Brooke Meadow +Brookehowse +Brookend +Brooker +Brookes +Brookeside +Brookeway +Brookfall +Brookfield +Brookfield Corporate +Brookfield Tower +Brookfold +Brookfoot +Brookford +Brookgate +Brookgreen +Brookgrove +Brookhaven +Brookhead +Brookhey +Brookhill +Brookhollow +Brookhouse +Brookhurst +Brooking +Brookings +Brooklake +Brookland +Brooklands +Brooklawn +Brookledge +Brooklee +Brookleigh +Brookley +Brookline +Brookln +Brooklyn +Brooklyn Bridge +Brooklyn Park +Brookman +Brookmans +Brookmans Park +Brookmead +Brookmeade +Brookmeadow +Brookmere +Brookmill +Brookmont +Brookmoor +Brookpark +Brookridge +Brookroyd +Brooks +Brooks Bank +Brooks Church +Brooks Terrace +Brooks View +Brooksbank +Brooksbie +Brooksby +Brookscroft +Brooksdale +Brooksedge +Brookshade +Brookshaw +Brookshill +Brookshire +Brookshire Estates +Brookshore +Brookside +Brookside Farm +Brookside Glen +Brookside Ranch +Brookside West +Brookspur +Brooksquare +Brookston +Brookstone +Brooksville +Brooksweld +Brookswood +Brookthorpe +Brooktree +Brooktree Ranch +Brookvale +Brookview +Brookville +Brookway +Brookwell +Brookwold +Brookwood +Brookwood Farm +Brookwood Lye +Brookwood Way +Broom +Broom Farm +Broom Hill +Broom Mills +Broomall +Brooman +Broombarn +Broomcroft +Broome +Broomers +Broomers Hill +Broomfield +Broomfields +Broomgerrie +Broomgrove +Broomhall +Broomhill +Broomhill Park +Broomhills +Broomhouse +Broomhurst +Broomlands +Broomleaf +Broomrigg +Brooms +Broomshaw +Broomsleigh +Broomsquires +Broomstair +Broomstick +Broomstick Hall +Broomville +Broomwood +Brophy +Brosam +Broschart +Broseley +Brosnan +Brossman +Brotherhood +Brothers +Brotherton +Broton +Brotto +Brouch +Brougham +Broughshane +Broughton +Broughton Craggs +Broughville +Brouilette +Brouillard +Brouillette +Broula +Broullie +Brounckner +Brousseau +Brouwerij +Brouwet +Brovelli +Brow +Browdens +Browells +Brower +Browers +Browertown +Brown +Brown Branch +Brown Deer +Brown Derby +Brown Duvall +Brown Edge +Brown Fox +Brown Gables +Brown Hill +Brown House +Brown Lea +Brown Loaf +Brown Lodge +Brown Otter +Brown Post +Brown Ranch +Brown Wood +Brownberrie +Browncross +Browndale +Browndens +Browne +Brownell +Brownfield +Browngraves +Brownhill +Brownie +Brownies Beach +Browning +Brownings +Brownlea +Brownley +Brownlow +Brownlow Hill Loop +Brownrigg +Browns +Browns Bridge +Browns Chapel +Browns Dock +Browns Farm +Browns Ferry +Browns Hall +Browns Mill +Browns School +Browns Valley +Browns Woods +Brownsea +Brownshade +Brownson +Brownsover +Brownspring +Brownstone +Brownsville +Brownswell +Brownview +Brownville +Brownwood +Brows +Brox +Broxash +Broxbourne +Broxburn +Broxhill +Broxholm +Broxmead +Broxted +Broxton +Broyhill +Broyle +Broyles +Brubaker +Brubeck +Brubri +Bruce +Bruce Castle +Bruce Park +Brucedale +Bruces Wharf +Bruceville +Brucewood +Bruche +Brucito +Bruck +Bruckner +Brude +Brudenell +Brueberry +Bruell +Bruella +Bruen +Bruhn +Bruin Hill +Brumbaugh +Brumby +Brumfield +Brumley +Brummel +Brundage +Brundige +Brundrett +Brundretts +Brune +Brunel +Brunell +Brunella +Brunello +Bruner +Brunero +Brunett +Brunette +Brunetti +Bruning +Brunk +Brunker +Brunner +Bruno +Bruns +Brunschon +Brunsvold +Brunswick +Brunswick Park +Brunswick Woods +Brunswig +Brunt +Bruntcliffe +Bruntleigh +Brunton +Bruntwood +Brunwin +Brush +Brush Creek +Brush Hill +Brush Hollow +Brush Island +Brush Lake +Brush Prairie +Brushes +Brushfield +Brushford +Brushwood +Brushy Hill +Brushyridge +Brussel +Brussels +Bruton +Brutus +Bruzek +Bruzzone +Bryan +Bryan Branch +Bryan Meadows +Bryan Point +Bryanston +Bryanstone +Bryant +Bryant Lake +Bryantown +Bryants +Bryants Bottom +Bryants Nursery +Bryantwood +Bryanwood +Bryce +Bryce Canyon +Brycewood +Bryden +Brydges +Brydon +Bryer +Bryett +Brygger +Bryla +Bryn +Bryn Bach +Bryn Mawr +Brynden +Bryne +Bryngs +Brynhaven +Brynmaer +Brynmore +Brynn +Brynorme +Brynton +Brynwood +Bryon +Bryone +Bryony +Bryson +Bryte +Bryte Bend +Bubb +Bubblestone +Bubbling Brook +Bubhurst +Bubier +Bucareli +Buccaneer +Buccleuch +Buchal Heights +Buchan +Buchanan +Buchanan Field +Buchanon +Bucher +Buck +Buck Board +Buck Cavey +Buck Center +Buck Creek +Buck Hill +Buck Knoll +Buck Lake +Buck Meadow +Buck Point +Buckbee +Buckboard +Buckbrush +Buckby +Buckden +Buckelew +Bucket +Bucket Mill +Bucketmill +Buckettsland +Buckeye +Buckfast +Buckhall +Buckhannon +Buckhatch +Buckhaven +Buckhill +Buckhold +Buckhole Farm +Buckhorn +Buckhorn Ridge +Buckhurst +Buckhurst Farm +Bucki +Buckingham +Buckingham Cove +Buckingham Hill +Buckingham Palace +Buckinghan +Buckinghorse +Buckland +Bucklands +Buckle +Buckleberry +Bucklebury +Buckleigh +Buckler +Buckles +Buckley +Buckley Hill +Buckleys +Bucklin +Bucklodge +Bucklow +Bucklow HIll +Buckman +Buckmans +Buckmaster +Buckmeadow +Buckminster +Buckmore +Bucknall +Bucknalls +Bucknam +Bucknell +Buckner +Buckout +Buckram +Buckrell +Buckridge +Bucks +Bucks Haven +Bucks Lake +Bucks Mill +Bucksfield +Bucksford +Buckskin +Buckskin Lake +Buckskin Wood +Buckstone +Buckstones +Buckswood +Bucktail +Buckthorn +Buckthorne +Buckton +Buckton Vale +Buckwall +Buckwell +Buckwood +Buckwoods +Bud +Buda +Budapest +Budbury +Budd +Budding Branch +Buddle +Budds +Buddy +Bude +Budeberry +Buderim +Budge +Budgen +Budgeree +Budgerigar +Budin +Budingen +Budiselich +Budland +Budleigh +Budler +Budna +Budoch +Budreau +Budworth +Budworth Heath +Budyan +Buehere +Buehler +Buel +Buell +Buena +Buena Monte +Buena Tierra +Buena Ventura +Buena Vida +Buena Vista +Buenaventure +Bueno +Buens +Buer +Buerkle +Buersil +Buerton +Buff +Buffalo +Buffalo Creek +Buffalo Grove +Buffalo Ridge +Buffalo Run +Buffbeards +Buffers +Buffham +Buffington +Buffins +Bufflehead +Bufford +Buffum +Buffy +Bufkin +Buford +Bugatti +Bugbee +Bugden +Bugeia +Bugglesden +Buggy Whip +Bugle +Bugler +Bugli +Bugong +Bugsbys Way Gallions +Buhl +Buhman +Buhre +Buhrstone +Buick +Build America +Builders +Buile +Buile Hill +Buist +Buker +Bukra +Bulaire +Bulara +Bulb +Bulba +Bulbeggars +Bulbi +Bulborne +Bulbrine +Bulbul +Bulcher +Bulfinch +Bulford +Bulga +Bulganak +Bulger +Buli +Bulinga +Bulkara +Bulkeley +Bulkey +Bulkhead +Bulkira +Bulkley +Bull +Bull Calf +Bull Hill +Bull Pine +Bull Pond +Bull Run +Bull Run Post Office +Bullace +Bullard +Bullbaiters +Bullbeggars +Bullbrook +Bullcote +Bullcroft +Bulldog +Bullecourt +Bullen +Bullens +Buller +Bullers +Bullers Wood +Bullerthorpe +Bullescroft +Bulletin +Bullette +Bullfinch +Bullfrog +Bullfrog Fire +Bullfrog Pond +Bullhead +Bullingstone +Bullion +Bullitt Neck +Bulliukian +Bullivant +Bullneck +Bulloch +Bullock +Bullocks +Bullocks Farm +Bullring +Bulls +Bulls Bridge +Bulls Eye +Bulls Ferry +Bulls Mill +Bulls Neck +Bullsbrook +Bullsmoor +Bullswater +Bullswater Common +Bullwood +Bullwood Hall +Bulmann +Bulmer +Bulmershe +Bulolo +Bulow +Bulrush +Bulrush Farm +Bulson +Bulstrode +Bultee +Bulteel +Bultustrol +Bulu +Bulumin +Bulwara +Bulwark +Bulwarra +Bulwer +Bulwer Court +Bumbera +Bumble Bee +Bumblebee +Bumfords +Bummer +Bumps +Bumpus +Bumpy +Bumpy Oak +Buna +Buna Mae +Bunarba +Bunbinla +Bunbury +Bunby +Bunce +Bunce Common +Bunce Court +Bunce Meadows +Buncefield +Bunces +Bunch +Bunch Berry +Bunchberry +Bunche +Buncton +Bundaleer +Bundanoon +Bundara +Bundarra +Bundeena +Bundell +Bundeluk +Bundemar +Bundesen +Bundeson +Bundilla +Bundock +Bundoon +Bundoran +Bundschu +Bundy +Bunescu +Bungal +Bungaloe +Bungalow +Bungan +Bungan Head +Bungaree +Bungarribee +Bungay +Bungendore +Bungonia +Bungoona +Bungowen +Bungtown +Bungulla +Bunhill Row Old +Bunin +Bunker +Bunker Hill +Bunker Lake +Bunker Woods +Bunkerhill +Bunkers +Bunkers Hill +Bunkershill +Bunn +Bunnai +Bunnell +Bunnerong +Bunning +Bunns +Bunny +Bunratty +Bunsen +Bunt +Bunters +Bunters Hill +Bunting +Buntingbridge +Buntingford +Bunton +Bunts +Bunya +Bunyala +Bunyan +Bunyana +Bunyard +Bunyarra +Bunyula +Buono +Buoy +Bur +Burando +Burandt +Burard +Burbage +Burbank +Burbanks +Burbeck +Burberry +Burbidge +Burbong +Burbury +Burch +Burch Haven +Burch Hill +Burchap +Burcharbro +Burchard +Burchell +Burchells Wood +Burches +Burchetts Green +Burchfield +Burchlawn +Burchmore +Burckhalter +Burcote +Burd +Burdak +Burdean +Burdeck +Burdekin +Burdell +Burdell Mountain Fire +Burden +Burdenshott +Burdent +Burder +Burdett +Burdette +Burdetts +Burdge +Burdick +Burdith +Burditt +Burdock +Burdocks +Burdon +Burdsall +Bureau +Buren +Bures +Burfield +Burfitt +Burford +Burg +Burgamot +Burgan +Burgandy +Burgattes +Burge +Burge End +Burgener +Burges +Burgess +Burgess Hill +Burget +Burgh +Burgh Heath +Burghardt +Burghclere +Burghead +Burgher +Burghfield +Burghley +Burgin +Burgner +Burgon +Burgos +Burgoyne +Burgundy +Burgundy Leaf +Burham +Burhans +Burhill +Buriat +Burich +Buried Oak +Burilla +Burk +Burkards +Burke +Burke Bradley +Burke Centre +Burke Commons +Burke Dale +Burke Lake +Burke Meadow +Burke Pond +Burke Woods +Burkes +Burkes Promise +Burkeside +Burkett +Burkette +Burkewood +Burkhall +Burkhard +Burkhardt +Burkhart +Burkitts +Burkland +Burkwood +Burl +Burl Hollow +Burl Oaks +Burla +Burleigh +Burlescoombe +Burley +Burley Farm +Burley Grange +Burley Lodge +Burley Place Viaduct +Burley Wood +Burleyhurst +Burleys +Burliegh +Burline +Burling +Burling Wood +Burlingame +Burlingame Club +Burlings +Burlington +Burlington Mall +Burlingview +Burlison +Burlow +Burlway +Burlwood +Burma +Burmah +Burman +Burmester +Burmingham +Burnaby +Burnage +Burnage Hall +Burnap +Burnbrae +Burnbray +Burnbury +Burncoat +Burncoat Park +Burndale +Burne +Burnece +Burned Chimney +Burnedge +Burnell +Burnell Park +Burnels +Burnes +Burnet +Burnet Hill +Burnet Hill School +Burnett +Burnett North +Burnetta +Burnette +Burnetts +Burney +Burnfoot +Burngarten +Burnham +Burnham Green +Burnham Harbor +Burnham Ranch +Burnhams +Burnhaven +Burnhill +Burnie +Burning Branch +Burning Bush +Burning Hollow +Burning Oak +Burning Oaks +Burning Springs +Burning Timber +Burning Tree +Burning Trees +Burnley +Burnmoor +Burnquist +Burns +Burns Bay +Burns Chalk Fire +Burns Crossing +Burns Cutoff +Burns Dairy +Burns Hill +Burns Valley +Burnsall +Burnsdale +Burnside +Burnside Landing +Burnstie +Burnsville +Burnt Ash +Burnt Bridge +Burnt Common +Burnt Crest +Burnt Edge +Burnt Ember +Burnt Hill +Burnt House +Burnt Meadow +Burnt Mill +Burnt Mills +Burnt Oak +Burnt Plats +Burnt Pollard +Burnt Swamp +Burnt Tree +Burnt Woods +Burntash +Burnthouse +Burnthouse Farm +Burnthwaite +Burntlodge +Burntside +Burntwick +Burntwood +Burntwood Grange +Burnwood +Buron +Buross +Burpee +Burpham +Burquest +Burr +Burr Hill +Burr Oak +Burr Oaks +Burr Ridge +Burr Ridge Club +Burr Tree +Burra +Burrabirra +Burrabogee +Burraddar +Burradoo +Burraga +Burrage +Burragorang +Burraloo +Burran +Burraneer +Burraneer Bay +Burras +Burrawang +Burrawong +Burrcroft +Burrell +Burrells +Burren +Burrendong +Burrfield +Burrfields +Burricks Hill +Burrill +Burrill Hill +Burrimul +Burringbar +Burrington +Burrinjuck +Burris +Burritt +Burro +Burrock +Burrough Farm +Burrough Hill +Burroughs +Burrow +Burroway +Burrows +Burrs +Burrswood +Burrwood +Burry +Burry Circle +Bursa +Bursar +Burshire +Bursill +Bursland +Burslem +Bursley +Burson +Burstead +Burstock +Burston +Burstow +Burt +Burtenshaw +Burtfield +Burtis +Burton +Burton Farm +Burton Glen +Burton Hole +Burtonhill +Burtonhole +Burtonpark +Burtons +Burtons Green +Burtonsville +Burtonwood +Burtwell +Buruwan +Burville +Burwash +Burwell +Burwick +Burwood +Burwood Park +Bury +Bury Farm +Bury Green +Bury Mead +Bury New +Bury Old +Burydell +Buryfield +Burywood +Bus +Bus Turning +Busaco +Busbridge +Busby +Busca +Busch +Busch Corner Spur +Buscher +Buschmann +Buschs Frontage +Busdens +Busgrove +Bush +Bush Elms +Bush Hall +Bush Hill +Bush Lake +Bush Pond +Bushaway +Bushberry +Bushbury +Bushby +Bushell +Bushes +Bushey +Bushey Grove +Bushey Hall +Bushey Hill +Bushey Mill +Bushfield +Bushgrove +Bushka +Bushkill +Bushlake +Bushland +Bushlands +Bushman +Bushmead +Bushnell +Bushrod +Bushtail +Bushthorn +Bushview +Bushwick +Bushwood +Bushy +Bushy Hill +Business +Business Center +Business Park +Busit +Busk +Buskin +Buskirk +Buslingthorpe +Buslins +Busman +Buss +Busse +Bussell +Bussendius +Bussey +Bussing +Busteed +Buster +Busters +Bustleton +Busty +Buswell +Butano +Butano Creek +Butano Fire +Butano Park +Butch +Butcher +Butcher Hill Lea Farm +Butcher Hill Old Oak +Butchers +Bute +Butely +Butera +Buthmann +Buti Park +Butler +Butler School +Butlers +Butlers Dene +Butlers Hall +Butlers Island +Butley +Butlin +Butman +Butt +Butt Field +Butt Green +Butt Hill +Buttaro +Butte +Butte View +Buttel +Butter Churn +Butter Cup +Butter Nut Hill +Butterbowl +Butterchurn +Buttercross +Buttercup +Butteremere +Butterfield +Butterfield Frontage +Butterfield Green +Butterfly +Butterfly Field +Butterhouse +Butterick +Butterley +Buttermarket +Buttermere +Buttermilk +Buttermilk Falls +Buttermilk Ridge +Butternut +Butternut Hollow +Butters +Butterscotch +Butterside +Butterstile +Butterworth +Buttesland +Buttfield +Butthinge +Buttitta +Buttlerly +Buttner +Button +Button Bush +Button Cove +Button Wood +Buttonbush +Buttons +Buttonwillow +Buttonwood +Buttress +Buttrick +Buttry +Butts +Butts Canyon +Butts Hill +Buttsbury +Buttway +Butu Wargun +Butwin Camp +Buxmont +Buxted +Buxton +Buxton Bridge +Buxton New +Buxton Old +Buxworth +Buyuma +Buzzard +Buzzard Hill +Buzzard Lagoon +Buzzell +Buzzoni +By +By The Sea +Byam +Byamee +Byard +Bybee +Bybrook +Bycroft +Bycullah +Byd A While +Byde +Bydown +Bye +Byefield +Byeforde +Byer +Byerley +Byers +Byes +Byfield +Byfleet +Byford +Bygrave +Bygrove +Bying +Byington +Bykool +Byland +Byloss +Bylund +Byman +Byna +Byne +Bynes +Byng +Bynner +Bynon +Bypass +Byram +Byram Brook +Byram Dock +Byram Shore +Byram Terrace +Byran +Byrd +Byre +Byrefield +Byrne +Byrne Park +Byrneley +Byrnes +Byrnwood +Byrom +Byron +Byron Hill +Byrondale +Byrons +Byrth +Byrum +Byscane +Bysing Wood +Byslips +Byton +Byward +Bywater +Byway +Bywell +Bywood +Byworth +Byxbee +C Commercial +C E Dixon +C Fernwood +C J Hafey +C Jones +C Leeds Infirmary +C York +CP Lumber +CSM +Caballero +Caballeros +Caballo +Caballo Ranchero +Cabana +Cabarita +Cabbage Hill +Cabbage Tree +Cabban +Cabbel +Cabbell +Cabe +Cabell +Cabello +Cabells Mill +Caber +Cabernet +Cabin +Cabin Branch +Cabin Creek +Cabin John +Cabina +Cabinet +Cabinwood +Cable +Cabot +Cabota +Cabover +Cabral +Cabramatta +Cabramurra +Cabrera +Cabrilho +Cabrillo +Cabrini +Cabriolet +Cabrito +Cabro +Cabrol +Cabul +Cache +Cache Peak +Cacia +Cackle +Cackler +Cackling +Cactus +Cactus Hill +Cadbury +Caddell +Caddie +Caddington +Caddo +Caddy +Cade +Cadenasso +Cadence +Cader +Cades +Cadet +Cadia +Cadigal +Cadillac +Cadish +Cadiz +Cadle +Cadle Creek +Cadloni +Cadman +Cadman Quarry +Cadmia +Cadmore +Cadmus +Cadogan +Cadogen +Cadoret +Cadorna +Cadourette +Cadow +Cadoxton +Cadsden +Cadwallader +Cadwallon +Cadwell +Cady +Caedigan +Caedmon +Caen +Caen Wood +Caenshill +Caerleon +Caernarvon +Caesar +Caesar Chelor +Caesars Camp +Cafe On The +Cafe on the +Cafeteria +Cafeto +Caffa +Caffee +Caffrey +Cage +Cage Green +Cage Pond +Cagefield +Cages Wood +Cagle +Cagney +Cagwin +Cahalan +Cahen +Cahill +Cahill Park +Cahir +Cahoon +Cahors +Cail +Caillard +Caim +Cain +Caine +Cainfield +Cains +Caird +Cairds +Cairn +Cairnfield +Cairns +Cairnslea +Cairnwell +Cairo +Cairo New +Caishowe +Caisson +Caister +Caistor +Caistor Park +Caithness +Caitlin +Cajed +Cakebread +Cal +Cal Geary +Cal Sag +Cala Vista +Calabar +Calabasas +Calabash +Calabazas +Calabrese +Calabria +Calabro +Calaby +Caladium +Calado +Caladonia +Calafia +Calais +Calala +Calamint +Calamity +Calamo +Calamus +Calanda +Calandra +Calandria +Calariva +Calaroga +Calavaras +Calaveras +Calaveras Ridge +Calawasse +Calbert +Calbina +Calboro +Calbourne +Calbroke +Calcaterra +Calcita +Calcite +Calco Creek +Calcot Mill +Calcot Place +Calcroft +Calcutta +Caldarra +Caldbeck +Caldecot +Caldecote +Caldecott +Caldeira +Calder +Calderbank +Calderbrook +Calderon +Caldershaw +Caldervale +Calderwood +Caldew +Caldicot +Caldor +Caldran +Caldwell +Caldwells Gate +Caldy +Cale +Caleb +Calebs +Caledon +Caledonia +Caledonian +Caledonium +Caleen +Calendar View +Calera Creek Heights +Calero +Calero Hills +Caleta +Caletti +Calexico +Caley +Calf +Calf Farm +Calf Hey +Calf Pasture Beach +Calfas +Calfornia +Calfstock +Calga +Calgary +Calhoun +Cali +Caliban +Calibria +Calico +Calico Pool +Calico Tree +Calicooneck +Calida +Calidore +Caliente +Calif Pacific +Califon +California +California Farms +California Poppy +Caliguiri +Calimyrna +Calinoma +Calista +Calistoga +Calitonia +Calkins +Call +Call Barnes +Calla +Calla Lilly +Callabone +Callaghan +Callagher +Callahan +Callahan School +Callahans Beach +Callan +Calland +Callander +Callaway +Callaways +Callcott +Calle Amigo +Calle Verde +Calle View +Callecita +Callen +Callendar +Callender +Caller +Callery +Callicoma +Callie +Callingdon +Callington +Calliope +Callis +Callison +Callistan +Callistemon +Callister +Callisto +Callow +Calloway +Calluna +Calmace +Calmar +Calmar Vista +Calmer +Calmont +Calmor +Calmos +Calnwood +Caloden +Calool +Caloola +Calow +Calpack +Calpella +Calpine +Calrofold +Calshot +Calt +Caltha +Calthea +Calthorpe +Calthrope +Calton +Caltor +Caltrans E +Caltrans Richards +Caltrans University +Calument +Calumet +Calumet Access +Calumet Grove +Calumet Sag +Calvados +Calvary +Calveley +Calvend +Calver +Calverley +Calverley Blackett +Calverley Green +Calverly +Calvert +Calvert Hills +Calverton +Calverton School +Calvery +Calvi +Calview +Calvin +Calvin Forest +Calvine +Calwagner +Calydon +Calyer +Calyne +Calypso +Calza +Cam +Cama +Camalier +Camanoe +Camarena +Camargo +Camargo Club +Camarillo +Camaritas +Camarri +Camas +Cambalt +Cambell +Camber +Camberford +Camberley +Camberley Forest +Camberly +Cambert +Camberton +Camberwell +Camberwell Church +Cambewarra +Cambeys +Cambia +Cambleton +Cambo +Cambodia +Cambon +Camborne +Cambourne +Cambra +Cambrai +Cambray +Cambreleng +Cambria +Cambrian +Cambrianna +Cambridge +Cambridge Barracks +Cambridge Grove +Cambridge Heath +Cambridge Lakes +Cambridge Park +Cambridgepark +Cambryar +Cambus +Camby +Camdale +Camden +Camden Acres +Camden Bay +Camden High +Camden Hill +Camden Park +Camden Town +Camden View +Camder +Camdike +Camel +Camel Hollow +Camelback +Camelia +Camellia +Camellia Mather +Camellia Park +Camelot +Camelsdale +Camenson +Cameo +Camer +Camera +Camero +Cameron +Cameron Crescent +Cameron Glen +Cameron Grove +Cameron Hills +Cameron Mills +Cameron Pond +Cameron Ridge +Cameron Rnch +Camfield +Camile +Camilla +Camille +Camilleri +Camillia +Camillo +Camino +Camino Andres +Camino Diablo +Camino Hermoso +Camino Medio +Camino Real +Camino Royale +Camino Vista +Camino de Luna +Camino del Lago +Camino del Rey +Camino del Sol +Camion +Camira +Camiri +Camlan +Camlet +Camley +Camley Park +Camlot +Camm +Cammack +Camman +Cammarata +Cammaray +Cammarlie +Cammeray +Cammerer +Cammile +Camner +Camomile +Camore +Camp +Camp Alger +Camp Arequipa +Camp Bluefields +Camp Creek +Camp David +Camp Dixie +Camp End +Camp Endeavor +Camp Flint +Camp Ground +Camp Grove +Camp Joy +Camp Kaufmann +Camp Kiwanis +Camp Letts +Camp Meade +Camp Meeting +Camp Ohlone +Camp Pearson +Camp Roosevelt +Camp Rose +Camp Springs +Camp Thayer +Camp View +Camp Wastashi +Campagna +Campagnoli +Campana +Campanara +Campanelli +Campania +Campanile +Campaspe +Campaw +Campbell +Campbell Farm +Campbell Hill +Campbell Ranch +Campbell River +Campbell Technology +Campbellfield +Campbelltown +Campden +Campeau +Campell +Campello +Camper +Camper Creek +Camperdown +Campers +Campfield +Campflint +Campgaw +Campground +Camphor +Camping Ridge +Campini Estates +Campion +Cample +Camplin +Campo +Campo Bello +Campo Dorado +Campo Vista +Campoli +Campolindo +Campora +Campos +Campoy +Campsbourne +Campsfield +Campshill +Campsie +Campton +Campton Crossings +Campton Hills +Campton Ridge +Campton Trail +Campton Woods +Camptown +Campus +Campus Commons +Campus Green +Campus Hill +Campus Loop +Camrose +Cams +Camsley +Canaan +Canabury +Canacum +Canada +Canada Cove +Canada Farm +Canada Goose +Canada Hills +Canada Valley +Canady +Canal +Canal Bank +Canale +Canalport +Cananaro +Canandaigua +Cananea +Canara +Canard +Canarsie +Canary +Canary Wharf +Canarys +Canavan +Canberra +Canbury +Canbury Park +Canby +Canda +Candace +Candahar +Candalero +Candelabra +Candelero +Canden +Candeur +Candia +Candice +Candida +Candido +Candidus +Candle +Candle Ridge +Candleberry +Candlefield +Candleford +Candlelight +Candlemas +Candlenut +Candler +Candlestick +Candlewick +Candlewood +Candlewood Hill +Candon +Candor +Candover +Candy +Candy Apple +Candy Hill +Candyland +Candytuft +Cane +Canelo Hills +Canepa +Canes +Canessa +Canesworde +Canewdon +Caney +Canfield +Canfield Hill +Canford +Canger +Canham +Canhurst +Canine +Canis +Canisius +Canistear +Canley Vale +Cann +Cann Hall +Canna +Cannan +Cannella +Cannery +Cannes +Canney +Cannfield +Cannici +Cannikin +Canning +Cannington +Cannistraci +Cannizaro +Cannock +Cannon +Cannon Ball +Cannon Bluff +Cannon Bottom +Cannon Court +Cannon Dale +Cannon Falls +Cannon Fort +Cannon Hill +Cannon Industrial +Cannon Mill +Cannon Ridge +Cannon River +Cannon Rock +Cannon View +Cannonade +Cannonball +Cannondown +Cannongate +Cannons +Cannons Mill +Cannozzi +Canoas Garden +Canoe +Canoe Brook +Canoe River +Canoe Tree +Canoga +Canon +Canon Barns +Canon Beck +Canon Hill +Canon Park +Canon Vista +Canonaro +Canonbie +Canonbury +Canonero +Canongate +Canons +Canonsfield +Canoona +Canopus +Canopy +Canright +Canrobert +Cansdale +Cansiron +Cantabrook +Cantalier +Cantalowes +Cantata +Cantebury +Cantello +Cantelow +Cantelowes +Cantelupe +Canter +Canter Glen +Canterberry +Canterbury +Canterfield +Cantering +Canterton +Canterwood +Cantiague +Cantiague Rock +Cantigny +Cantil Oaks +Cantitoe +Cantle +Cantley +Canto +Canton +Cantor +Cantore +Cantrell +Cantrill +Cants +Canturbury +Cantwell +Canuden +Canute +Canva +Canvas Back +Canvasback +Canvey +Canyon +Canyon Brook +Canyon Creek +Canyon Crest +Canyon Falls +Canyon Four +Canyon Green +Canyon Head +Canyon Heights +Canyon Hills +Canyon Lake +Canyon Lakes +Canyon Oak +Canyon Oaks +Canyon One +Canyon Rim +Canyon Run +Canyon Seven +Canyon Six +Canyon Terrace +Canyon Three +Canyon Tree +Canyon Two +Canyon View +Canyon Vista +Canyon Wood +Canyon Woods +Canyonlands +Canyonside +Canyonview +Canyonwood +Cap +Capalbo +Capastaic +Capatin Hunter +Capay +Capay Valley +Cape +Cape Ann +Cape Banks +Cape Barron +Cape Breton +Cape Buffalo +Cape Cod +Cape Colony +Cape Coral +Cape Cottage +Cape Diamond +Cape Horn +Cape Jessup +Cape Kennedy +Cape May +Cape McKinsey +Cape Misty +Cape Saint Claire +Cape Saint John +Cape Solander +Cape View +Capehart +Capel +Capell +Capell Valley Cross +Capella +Capellan +Capelli +Capen +Capen Hill +Capenhurst +Capern +Capertee +Capes +Capesthorne +Capetown +Capeview +Capewood +Capi +Capicure +Capista +Capistrano +Capital +Capital Center +Capital Gateway +Capital Hill +Capital Park +Capital View +Capitales +Capitan +Capitancillos +Capitol +Capitol Heights +Capitol Hill +Capitol Oaks +Capitol Raceway +Capitol View +Capitola +Capitolian +Capland +Caple +Caples +Capobianco +Capon +Capon Tree +Capone +Capons +Caporaletti +Capp +Cappell +Cappelletti +Capper +Capperton +Cappy +Caprera +Capri +Caprice +Capriconus +Capricorn +Caprilli +Capriole +Capron +Capsey +Capshill +Capstan +Capstone +Captain +Captain Bailey +Captain Brendt +Captain Brown +Captain Clarke +Captain Cook +Captain Dement +Captain Duval +Captain Eager +Captain Forbush +Captain Gookin +Captain Handley +Captain Hickory +Captain Honeywell +Captain John Smith +Captain Joshua +Captain Lees +Captain Marbury +Captain Miles +Captain Nathaniel +Captain Peirce +Captain Peter Simpson +Captain Robert Cook +Captain Torrey +Captains +Captains Cove +Captains Hill +Captains House +Captains Table +Captains View +Captains Wood +Captiva +Captolene +Captons +Capuchino +Capulet +Capulina +Capwell +Car Bank +Cara +Carabeen +Carabella +Caraden +Caradoc +Caramar +Caramel +Caramoor +Caran +Carandini +Caravaggio +Caravan +Caravan Head +Caravel +Caravella +Carawa +Carawatha +Caraway +Carb Apple +Carbarn +Carbeen +Carberry +Carbide +Carbis +Carbon +Carbondale +Carbonera +Carboni +Carboona +Carbrey +Carbride +Carburton +Carbury +Carby +Carcoola +Card +Cardale +Cardamom +Cardamon +Cardell +Carden +Cardenas +Cardens +Carder +Carderock +Carderock Springs +Cardiff +Cardigal +Cardigan +Cardin +Cardinal +Cardinal Bourne +Cardinal Clancy +Cardinal Cove +Cardinal Creek +Cardinal Crest +Cardinal Estate +Cardinal Forest +Cardinal Medeiros +Cardinal O Connell +Cardinet +Carding Mill +Cardington +Cardinham +Cardoso +Cardownie +Cardoza +Cardozo +Cardrew +Cardrona +Cardross +Cardus +Cardwell +Care +Careebong +Carefree +Carell +Carella +Caremine +Caren +Careo +Careswell +Caret +Carew +Carey +Carey Arthur +Carey Branch +Carey Heights +Carey School +Careyback +Careybrook +Carfax +Carfield +Cargate +Cargie +Cargil Park +Cargill +Cargo +Cargo Service +Cargreen +Carhart +Carholme +Carhullen +Cari +Cariage +Cariann +Carib +Caribon +Caribou +Caricia +Carieville +Carignane +Carill +Carilla +Carillion +Carillo +Carillon +Carillon Lakes +Carina +Carinda +Carindale +Caring +Caringal +Carington +Carino +Carinya +Caris +Caris Glenne +Carisa +Carisbrook +Carisbrooke +Carissa +Carl +Carl G Whritenour +Carl Jordan +Carl Lee +Carl Sandburg +Carl Sands +Carl Thompson +Carla +Carlback +Carlbern +Carlby +Carldon +Carle +Carleah +Carleen +Carlemont +Carlene +Carlester +Carleton +Carletta +Carley +Carlfield +Carlgate +Carli +Carlile +Carlin +Carlin Springs +Carlinda +Carline +Carling +Carlingford +Carlinghow +Carlino +Carlinwalk +Carlisle +Carlisle Pines +Carlisle on Duxbury +Carll +Carlmark +Carlmont +Carlo +Carlo Scimeca +Carlock +Carlon +Carlos +Carlos Bee +Carlotta +Carlough +Carlow +Carls Farm +Carls Hill +Carlsbad +Carlsbrook +Carlsen +Carlson +Carlson Lake +Carlstad +Carlstadt +Carlston +Carlstrom +Carlton +Carlton Bay +Carlton Club +Carlton Park +Carlwell +Carlwood +Carlwyn +Carly +Carly Creek +Carlyle +Carlyn +Carlyn Hill +Carlynn +Carlyon +Carlysle +Carm +Carman +Carman Mill +Carman River +Carmans +Carmar +Carmathen +Carmel +Carmel Valley +Carmela +Carmelhead +Carmelita +Carmelite +Carmella +Carmellia +Carmello +Carmelo +Carmelwood +Carmen +Carmena +Carmencita +Carmenna +Carmer +Carmet +Carmi +Carmichael +Carmichael Park +Carmin +Carmine +Carminya +Carmita +Carmody +Carmody Hills +Carmona +Carmoor +Carna +Carnaby +Carnac +Carnadero +Carnage +Carnarvon +Carnation +Carnavron +Carnbrook +Carneal +Carneer +Carnegie +Carnelian +Carnene +Carneros +Carnes +Carney +Carnforth +Carniel +Carniglia +Carnoble +Carnot +Carnoustie +Carntion +Carnwath +Caro +Carob +Carobwood +Carol +Carol Ann +Carol Anne +Carol Crest +Carol Lee +Carol Louise +Carol Lynn +Carol Raye +Carola +Carole +Carolian +Carolier +Carolin +Carolina +Caroline +Caroline Brook +Caroline Chisholm +Caroline Chisolm +Caroline Farms +Caroll +Carolos +Carolwood +Carolyn +Carolyn Forest +Carolyn Weston +Carolyne +Carolynn +Caroma +Caron +Carona +Carondelet +Caroni +Caroon +Carotana +Carousel +Carp +Carpathia +Carpender +Carpenders +Carpenter +Carpenter Hill +Carpenteria +Carpenters +Carpenters Arms +Carpenters Beach +Carpenters Brook +Carpenters Hall +Carpenters Wood +Carpentier +Carper +Carpino +Carpinteria +Carquinez +Carquinez Scenic +Carr +Carr Bank +Carr Bottom +Carr Bridge +Carr Brook +Carr Common +Carr Crofts +Carr Crofts Town +Carr Gate +Carr Hall +Carr Hill +Carr House +Carr Manor +Carr Moor +Carr Wood +Carragata +Carraige +Carraige Hill +Carral +Carramar +Carramarr +Carrana +Carranya +Carrar +Carraway +Carrbridge +Carrbrook +Carrcroft +Carreau +Carrel +Carrell +Carrelton +Carrera +Carrerio +Carreta +Carrfield +Carrgate +Carrgreen +Carrhill +Carrhouse +Carriage +Carriage Crossing +Carriage Ford +Carriage Green +Carriage Hill +Carriage Hills +Carriage House +Carriage Park +Carriage Ridge +Carriage Run +Carriage Square +Carriage Walk +Carriage Way +Carriagehouse +Carriagepark +Carriageway +Carrick +Carrico +Carrie +Carrie Ann +Carrie Litchfield +Carrier +Carriere +Carriers +Carrigan +Carriger +Carriglea +Carriker +Carrillo +Carrington +Carrington Field +Carrington Hall +Carrington Hill +Carrington Moss +Carrington Ridge +Carrisa +Carrisbrook +Carrithers +Carrizal +Carrlyn +Carrmann +Carro +Carrol +Carrol Gate +Carroll +Carroll Heights +Carroll Mill +Carrolls +Carrollton +Carrollwood +Carrolton +Carron +Carrona +Carroun +Carrousel +Carrow +Carrowbrook +Carrs +Carrs Creek +Carrs Ridge +Carrs Wharf +Carrsfield +Carrsvale +Carrswood +Carruth +Carruthers +Carrwood +Carry +Carry Back +Carryback +Carsam +Carsdale +Carse +Carsha +Carshalton +Carshalton High +Carshalton Park +Carslake +Carson +Carsonwood +Carstairs +Carstensen +Carswell +Cart +Cart Path +Carta +Carta Blanca +Cartagena +Cartan +Cartbridge +Carter +Carter Acres +Carter House +Carter Ridge +Carteret +Carterhatch +Carters +Carters Grove +Cartersfield +Carterwood +Carthage +Carthew +Carthona +Carthouse +Carthusian +Cartier +Cartigan +Carting +Cartisian +Cartledge +Cartlodge +Cartmel +Cartmell +Cartmore +Carton +Cartref +Cartridge +Cartway +Cartwright +Carukin +Carunna +Caruso +Caruth +Carvel +Carvel Beach +Carvell +Carven +Carver +Carver Beach +Carver Highland +Carver Hill +Carver Park +Carvers +Carville +Carwall +Carwar +Carwell +Carwin +Cary +Cary Algonquin +Cary Geights +Cary Point +Caryhurst +Caryl +Caryll +Carysfield +Carysfort +Caryville +Cas +Casa +Casa Blanca +Casa Bona +Casa Buena +Casa Del Sol +Casa Grande +Casa Linda +Casa Loma +Casa Madeira +Casa Mia +Casa Nueva +Casa Robles +Casa Verde +Casa View +Casa de Arroyo +Casa de Vida +Casa del Mar +Casablanca +Casado +Casals +Casamita +Casanda +Casanova +Casavan +Casbeer +Cascade +Cascade Falls +Cascade Fire +Cascade Ridge +Cascades +Cascara +Casco +Casco Point +Cascus +Casdin +Case +Casears +Casella +Caselli +Caselman +Casement +Casemont +Casewick +Casey +Cashel +Cashel Bay +Cashell +Casher +Cashew +Cashew Blossom +Cashlenan +Cashman +Cashmere +Cashmore +Casilear +Casillas +Casimere +Casimir +Casino +Casita +Casitas +Caskey +Caslan +Caslocke +Casmar +Cason +Caspar +Caspars +Casper +Caspers +Casperson +Caspian +Caspian Sea +Cass +Cass Brook +Cassady +Cassandra +Cassata +Cassayre +Casseday +Cassedy +Cassel +Casselden +Casselino +Cassell +Casselman +Cassena +Casserly +Cassett +Cassia +Cassiar +Cassidy +Cassidy Field +Cassie +Cassilda +Cassilis +Cassin +Cassina +Cassins +Cassio +Cassiobridge +Cassiobury +Cassiobury Park +Cassiopia +Cassland +Casslee +Casson +Casswall +Casta +Castagnaro +Castagnasso +Castaldi +Castanas +Castano +Castanos +Castaway +Castec +Castell +Castellain +Castelli +Castello +Castelnau Lonsdale +Castelton +Casten +Castenada +Casterbridge +Casterline +Casterson +Casterton +Castile +Castilian +Castilla +Castilleja +Castillejo +Castillo +Castillon +Castine +Castlands +Castle +Castle Bar +Castle Baynard +Castle Brooke +Castle Cary +Castle Cove +Castle Creek +Castle Crest +Castle Croft +Castle Edge +Castle End +Castle Farm +Castle Gate +Castle Glen +Castle Grove +Castle Harbor +Castle Heights +Castle Hill +Castle Hill Ranch +Castle Howard +Castle Ings +Castle Knoll +Castle Lake +Castle Lodge +Castle Manor +Castle Mill +Castle Moor +Castle Oaks +Castle Park +Castle Pine +Castle Pines +Castle Pointe +Castle Ridge +Castle Rock +Castle Rough +Castle View +Castle Wynd +Castlebar +Castleberry +Castlebridge +Castlebrook +Castlebury +Castlecombe +Castlecrest +Castlecroft +Castledon +Castledown +Castlefield +Castleford +Castleford Bank +Castlegate +Castlehaven +Castleknoll +Castlemain +Castlemaine +Castleman +Castlemere +Castlemill +Castlemont +Castlemoor +Castlenau +Castleraegh +Castlerea +Castlereagh +Castlereigh +Castlerigg +Castlerock +Castlerook +Castles +Castleshaw +Castleton +Castletown +Castleview +Castlewellan +Castlewood +Castley +Casto +Caston +Castor +Castro +Castro Ranch +Castro Valley +Castroville +Casuarina +Casula +Casurina +Caswell +Cat +Cat Hollow +Cat Pond +Cat Rock +Cat Tail +Catafalque +Cataldi +Cataldo +Catalina +Catalina Island +Cataline +Catalpa +Catalpha +Catamaran +Catamount +Catania +Catanna +Catapult +Cataract Hollow +Cataumet +Catawba +Catbird +Catchpenny +Catchpole +Cateaton +Cateau +Catepillar +Cater +Caterfield +Caterham +Caterpillar +Caterson +Cates Lake +Cates Ranch +Catesby +Catfish +Catford BridgeDoggett +Catha +Cathall +Cathan +Cathanger +Cathard +Catharine +Catharpin +Cathay +Cathcart +Cathead +Cathedral +Cathedral Park +Cather +Catherall +Catherine +Catherine Field +Catherine Fran +Catherine Glen +Catherine Wheel +Catherines +Cathermola +Catherwood +Cathill +Cathleen +Cathlin +Cathlow +Cathness +Cathrine +Cathy +Catia +Catie +Catlett +Catlin +Catlins +Catlow +Cato +Catoctin +Caton +Caton Center +Caton Crest +Caton Farm +Caton Ridge +Catonopsis +Catoona +Cator +Catrina +Catron +Catsbrook +Catsey +Catskill +Cattai Creek +Cattail +Cattail Spring +Cattaraugus +Catterall +Catterick +Catterwood +Catteshall +Cattistock +Cattle +Cattle Chute +Cattle Market +Cattlegate +Cattleman +Catton +Catts Tavern +Cattswood +Catulpa +Caucer +Caudill +Caughey +Cauldwell +Cauley +Caulfield +Caulms Wood +Caumsett Farms +Caumsett Woods +Causeway +Causeway End +Causey +Causeyware +Causton +Cautherly +Cautley +Cavalcade +Cavalier +Cavalier Landing +Cavalier Woods +Cavallero +Cavalletti +Cavallo +Cavalry +Cavan +Cavanagh +Cavanaugh +Cavatorta +Cave +Cave Gulch +Cave Rocks +Cavedale +Cavell +Caven Point +Cavendish +Caveridge +Caverly +Cavern +Cavers +Caversham +Caversham Park +Caversham park +Caves +Caveys +Cavill +Cavite +Cavitt +Cavoretto +Cavour +Cawarra +Cawarrah +Cawbeck +Cawcott +Cawder Lee +Cawdor +Cawdor Farms +Cawfield +Cawker +Cawley +Cawnpore +Cawthorne +Caxton +Cayden +Cayer +Cayetano +Cayley +Cayman +Cayman Island +Caymus +Cayote Hill +Cayser +Caythorpe +Cayton +Cayucos +Cayuga +Caywood +Cazadero +Cazeneuve +Cazenove +Cazneau +Cañada +Cbq +Cc +Ce. Patricia +Cebalo +Cebold +Cebra +Cebu +Cecala +Cecatra +Cecelia +Cecil +Cecil Aldin +Cecil Crest +Cecil Newman +Cecile +Cecilia +Cecilian +Cecily +Cedar +Cedar Acres +Cedar Branch +Cedar Bridge +Cedar Brook +Cedar Cliff +Cedar Creek +Cedar Crest +Cedar Crossing +Cedar Crown +Cedar Dale +Cedar Dell +Cedar Falls +Cedar Farms +Cedar Flat +Cedar Forest +Cedar Gables +Cedar Gate +Cedar Glade +Cedar Glen +Cedar Glenn +Cedar Green +Cedar Grove +Cedar Haven +Cedar Hedge +Cedar Hill +Cedar Hills +Cedar Hollow +Cedar Knoll +Cedar Knolls +Cedar Lake +Cedar Lakes +Cedar Lawn +Cedar Logs +Cedar Mountain +Cedar Oaks +Cedar Park +Cedar Point +Cedar Pointe +Cedar Pond +Cedar Post +Cedar Ranch +Cedar Ridge +Cedar River Park +Cedar River Pipeline +Cedar Run +Cedar Shore +Cedar Spring +Cedar Springs +Cedar Swamp +Cedar Terrace +Cedar Tree +Cedar Valley +Cedar View +Cedar Wood +Cedarbend +Cedarberry +Cedarbluff +Cedarbridge +Cedarbrook +Cedarcliff +Cedarcreek +Cedarcrest +Cedarcroft +Cedardale +Cedarest +Cedarfield +Cedarforest +Cedargrove +Cedarhill +Cedarhollow +Cedarhurst +Cedarlawn +Cedarlea +Cedarleaf +Cedarmeadow +Cedarne +Cedars +Cedars East +Cedartree +Cedarvale +Cedarvale Access +Cedarview +Cedarvillage +Cedarville +Cedarwood +Ceddox +Ceder +Cedrela +Cedric +Cedro +Cedrus +Ceely +Cefalo +Cefalu +Celadon +Celandine +Celano +Celebes +Celebrar +Celebration +Celebrity +Celeo +Celery +Celeste +Celestial +Celestine +Celia +Celilo +Celina +Celinda +Celine +Celium +Cell Barnes +Cell Farm +Cellar +Cellar Door +Cellars +Celler +Celtic +Cembellin +Cement Hill +Cement Plant +Cemetary +Cemetery +Cemmaes Court +Cenacle +Cendry +Cenex +Centaur +Centaurus +Centech +Centella +Centenary +Centennial +Centennial Grove +Centennial Park +Centeno +Center +Center Bay +Center Briarwood +Center Bridge +Center Cargo +Center Chicot +Center Cir +Center Court +Center Dyre +Center Flats +Center Harbor +Center Hill +Center Knolls +Center Market +Center Ridge +Center Village +Center Wood +Center for the Arts +Centergate +Centerhill +Centerport +Centershore +Centerton +Centerview +Centerville +Centerwood +Centinella +Centola +Centoni +Central +Central Cabin +Central Park +Central Skokie +Central Square +Central Village +Central Wall +Central Way Faggs +Centre +Centre Common +Centre Court +Centre Island +Centre Park +Centre Pointe +Centre Pt +Centre Square +Centre View +Centrella +Centreville +Centreville Farms +Centrum +Centurion +Century +Century Farm +Century Frontage +Century Manor +Century Mill +Century Oaks +Century Ridge +Century Towne +Century Vista +Cephas +Cera +Ceralene +Ceramic +Ceramica +Cerchio +Cerdan +Cereal +Cereda +Cereea +Cerenzia +Ceres +Ceresia +Cereza +Cereze +Cerezo +Cerina +Cerini +Cerise +Cermak +Cernan +Cerne +Cernohous +Cernon +Cerny +Cerone +Cerqua +Cerra Vista +Cerrato +Cerreta +Cerretta +Cerrito +Cerritos +Cerro +Cerro Crest +Cerro Este +Cerro Vista +Cerruti +Cervantes +Cervato +Cesa +Cesar +Cesar Chavez +Cesario +Cesena +Cessford +Cessington +Cessna +Cesta +Cestaric +Cestrum +Cetrina +Cevets +Cevu +Cewell +Ceylon +Ceynowa +Cezanne +Chaban +Chablis +Chabolla +Chabot +Chaboya +Chace +Chace Hill +Chackfield +Chaco +Chad +Chada +Chadacre +Chadbourne +Chadd +Chadderton +Chadderton Hall +Chadderton Park +Chaddick +Chaddock +Chadds Ford +Chadima +Chadkirk +Chado +Chadovoyne +Chads +Chadsworth +Chadvil +Chadwell +Chadwic +Chadwick +Chadwick Hall +Chadwick Oaks +Chadwicke +Chadwin +Chaffee +Chaffer +Chaffes +Chaffey +Chaffin +Chaffinch +Chaffins +Chafford +Chagall +Chagford +Chahotkin +Chailey +Chain +Chain Bar +Chain Bridge +Chain O Hills +Chain of Lakes +Chaingate +Chairborough +Chaix +Chakya +ChalGrave +Chaladay +Chalapa +Chalcedony +Chalcombe +Chalcot +Chalcroft +Chalder +Chaldon +Chaldon Common +Chale +Chalet +Chalet Clothilde +Chaleyer +Chalfant +Chalfont +Chalfonte +Chalford +Chalfort +Chalgrove +Chalice +Chalk +Chalk Farm +Chalk Hill +Chalk Mountain +Chalk Pit +Chalk Point +Chalkely +Chalkenden +Chalkers +Chalket +Chalkhouse Green +Chalkpit +Chalks +Chalkshire +Chalkwell +Chalkwell Park +Chalky +Chalky Bank +Challas +Challedon +Challener +Challenge +Challenger +Challin +Challis +Challoner +Challum +Chally +Chalmers +Chalmette +Chalner +Chalomar +Chalon +Chalone +Chaloner +Chalsey +Chalton +Chalvedon +Chambellan +Chamber +Chamber House +Chamberer +Chamberlain +Chamberland +Chamberlayne +Chamberlin +Chambers +Chambers Green +Chambersbury +Chambino +Chamblis +Chambord +Chambosse +Chambourd +Chambray +Chaminade +Chamlis +Chamomile +Chamone +Chamonieux +Chamonix +Champ +Champa +Champagne +Champion +Champions +Championship +Champlain +Champlaine +Champlin +Champness +Champney +Champs Elysee +Chanate +Chance +Chance Farm +Chanceford +Chancel +Chancelet +Chancell +Chancellor +Chancellors +Chancelor +Chancery +Chanctonbury +Chandeaux +Chandlee Mill +Chandler +Chandler Mill +Chandlers +Chandley +Chandos +Chanel +Chaney +Chaneyville +Changebridge +Chanhassen +Chanler +Chanlon +Channahon +Channel +Channel Center +Channel Gate +Channel Islands +Channelsea +Channer +Channing +Channing Bicycle +Channon +Chanol +Chanslor +Chansory +Chant +Chantal +Chantecler +Chantel +Chanters +Chanticlare +Chanticleer +Chantilley +Chantilly +Chantilly Baptist +Chantilly Crossing +Chantler +Chantlers +Chanton +Chantrey +Chantry +Chantry View +Chanute +Chanwahon +Chapala +Chaparral +Chaparro +Chapek +Chapel +Chapel Chase +Chapel Cove +Chapel End +Chapel Farm +Chapel Field +Chapel Fields +Chapel Forge +Chapel Gate +Chapel Hill +Chapel House +Chapel Lake +Chapel Mill +Chapel Oak +Chapel Oaks +Chapel Pond +Chapel Springs +Chapel View +Chapel Wood +Chapelfield +Chapelgate +Chapelle +Chapelmount +Chapeltown +Chapeltown Carlisle +Chapeltown Grove +Chapelview +Chapelwood +Chapin +Chaplain +Chaplin +Chapman +Chapman Mill +Chapman Oak +Chapmans +Chapmans Landing +Chapmans Town +Chapparal +Chappel +Chappell +Chappell of Bond +Chappellwood +Chappie +Chapter +Chapter House +Char +Charabanc +Charal +Charandy +Charant +Charbonnier +Charcoal +Charcot +Chard +Chardin +Chardmore +Chardon +Chardonnay +Chardonnay Ridge +Charen +Charena +Charfleets +Charford +Chargall +Chargeable +Charger +Charges +Chargin +Charina +Charing +Charing Cross +Charing Heath +Charing School +Charington +Chariot +Charish +Charismatic +Chariton +Charity +Charker +Charkers +Charlam +Charlbert +Charlbury +Charlcote +Charldane +Charlden +Charlecot +Charlecote +Charlela +Charlemagne +Charlemaine +Charlemont +Charlene +Charleroi +Charles +Charles Anna +Charles Arrington +Charles Augustine +Charles Babbage +Charles Cali +Charles Coveney +Charles Crossing +Charles Davis +Charles Dean +Charles Dickens +Charles Diersch +Charles Dunn +Charles E Ryan +Charles Gate +Charles Hackett +Charles Hall +Charles Halle +Charles Haller +Charles Hawkins +Charles Hayman +Charles Hill +Charles Holden +Charles II +Charles Lacey +Charles Lake +Charles Lindbergh +Charles M Bailey +Charles Mary +Charles Park +Charles Patten +Charles River +Charles Schell +Charles Sevright +Charles Thomson +Charles Wack +Charles Young +Charlesbank +Charlescotte +Charlesdale +Charlesfield +Charlesford +Charlesgate +Charlesmere +Charleson +Charleston +Charlestown +Charlestowne +Charlesview +Charlesworth +Charley +Charley Forest +Charlie +Charlie Joyner +Charlie Piddles +Charlie Yankos +Charlieville +Charline +Charlmont +Charlock +Charlott +Charlotte +Charlotte Despard +Charlotte Park +Charlotteburg +Charlottesburg +Charlottesville +Charlson +Charlton +Charlton Church +Charlton Mead +Charlville +Charlwood +Charlwoods +Charlyn +Charmada +Charmain +Charman +Charman Hill +Charme +Charmello +Charmeran +Charmfield +Charmian +Charmin +Charmingfare +Charminster +Charmouth +Charning Cross +Charnock +Charnstaffe +Charnswood +Charnville +Charnwood +Charolette +Charolotte +Charon +Charred Oak +Charredwood +Charring +Charrington +Chars +Charsan +Chart +Chart Hill +Chart House +Charta +Chartbury +Charter +Charter Oak +Charter Oaks +Charter One +Charterhouse +Charteris +Charters +Chartfield +Chartham +Charthouse +Chartier +Chartmoor +Chartres +Chartreux +Chartridge +Chartsey +Chartwell +Charvil +Charvil House +Charvil Meadow +Charvill +Charville +Charwood +Chas +Chasden +Chase +Chase Commons +Chase Cross Havering +Chase Green +Chase Hill +Chase Hills +Chase Pond +Chase Side +Chasefield +Chaseley +Chaseling +Chasely +Chasemill +Chasemoor +Chaseside +Chasewood +Chaska +Chaske +Chasmar +Chasner +Chasselas +Chassen +Chassyl +Chastworth +Chatam +Chataway +Chatburn +Chateau +Chateau Bluff +Chateau Ridge +Chateau Thierry +Chateau la Salle +Chateaugay +Chateaulin +Chateaux Bouane +Chatelain +Chatfield +Chatham +Chatham Hall +Chatham Hill +Chatham Hill Windmill +Chatham Village +Chathamfield +Chathams Ford +Chathlake +Chatillion +Chatillon +Chatley +Chaton +Chatres +Chatswood +Chatsworth +Chattanooga +Chattenden +Chatter Brook +Chatteris +Chattern +Chatterton +Chattleton +Chatto +Chattswood +Chatwood +Chaucer +Chaul End +Chaulden +Chaumont +Chauncey +Chauncy +Chauntry +Chauser +Chautaugua +Chautauqua +Chauvel +Chauvet +Chauvety +Chave +Chaves +Chavey Down +Chavez +Chavoya +Chaworth +Chawridge +Chawton Park +Chayes Park +Chaytor +Chazey +Che Che Pinqua +Cheadle +Cheadle Old +Cheal +Cheam +Cheam Common +Cheapside +Cheatle +Chebacco +Chebec +Chebek +Chechester +Check +Checker +Checker Berry +Checkerberry +Checkered Flag +Checkers +Checkerspot +Checkley +Checkstone +Cheda +Cheda Knolls +Cheddar +Cheddington +Cheddleton +Chedlee +Chedlin +Chedworth +Cheekbridge +Cheekwood +Cheelson +Cheeney +Cheers +Cheery +Cheeryble +Cheese +Cheesecombe Farm +Cheesequake +Cheesequake Park +Cheetah +Cheetam Fold +Cheetham +Cheetham Hill +Cheethams +Cheetwood +Cheever +Cheevers +Cheffins +Chegwell +Chegworth +Chegwyn +Chehalis +Chelan +Chelbourne +Cheldon +Chelford +Chell +Chellaston +Chellman +Chellows +Chells +Chelmar +Chelmer +Chelmer Valley +Chelmerton +Chelmont +Chelmsford +Chelsa +Chelsea +Chelsea Beaufort +Chelsea Hills +Chelsea Manor +Chelsey +Chelsfield +Chelsham +Chelsham Common +Chelsham Court +Chelshire +Chelson +Chelston +Chelsworth +Cheltenham +Cheltenhan +Chelton +Chelverton +Chelwood +Chelwood Gate +Chelwynd +Chemeketa +Chemical +Chemise +Chemka Pool +Chemlsford +Chemolite +Chemung +Chen +Chenango +Chenault +Chenery +Cheney +Cheney Pond +Chenies +Chenin +Chenin Blanc +Chennault +Chennell Park +Chenu +Chepstow +Chequer +Chequers +Chequers Bridge +Chequesset +Chequessett +Cherbourg +Cherbury +Cheri +Cherice +Cherie +Cherington +Cheris +Cherita +Cheriton +Cherly +Cherlyn +Cherne +Cherokee +Cherokee Heights +Cherri +Cherri Lynn +Cherrington +Cherry +Cherry Bend +Cherry Blossom +Cherry Brook +Cherry Creek +Cherry Crest +Cherry Garden +Cherry Gate +Cherry Glen +Cherry Green +Cherry Grove +Cherry Hill +Cherry Hills +Cherry Holt +Cherry Laurel +Cherry Lawn +Cherry Mill +Cherry Oak +Cherry Oca +Cherry Orchard +Cherry Point +Cherry Ridge +Cherry Springs +Cherry Tree +Cherry Tree Crossing +Cherry Tree Farm +Cherry Trees +Cherry Valley +Cherry Wood +Cherryblossom +Cherrybrook +Cherrycrest +Cherrycroft +Cherrydale +Cherrydown +Cherryfield +Cherryfields +Cherryhill +Cherryhills +Cherryland +Cherrylawn +Cherrystone +Cherrythorne +Cherryton +Cherrytree +Cherryvale +Cherryview +Cherryville +Cherrywood +Cherston +Chertsey +Chertsey Bridge +Cherubina +Chervil +Cherwal +Cherwek +Cherwell +Cherwick +Cherwing +Cheryl +Cheryl Ann +Cheryl Beck +Cheryl Hills +Cheryl Turn +Cheryll +Ches Mar +Chesapeake +Chesapeake Bay +Chesapeake Beach +Chesapeake Harbour +Chesapeake Lighthouse +Chesborough +Chesbro +Chesbro Lake +Chesbrough +Cheseapeake +Chesebrough +Cheselden +Cheseman +Chesett +Chesfield +Chesford +Chesham +Chesham Fold +Cheshire +Chesholm +Cheshunt +Chesilton +Chesire +Chesley +Chesley Knoll +Chesline +Chesman +Chesney +Chesney Glen +Chesnut +Chess +Chessel +Chessenden +Chessholme +Chesshyre +Chessington +Chessman +Chessnut +Chesson +Chestehunt +Chester +Chester Brook +Chester Hall +Chester Hill +Chesterblade +Chesterbrook +Chesterfield +Chesterford +Chesterhill +Chesterlee +Chesterman +Chesters +Chesterton +Chestertown +Chesterwood +Chestney +Chestnut +Chestnut Cove +Chestnut Crossing +Chestnut Farm +Chestnut Gardens +Chestnut Grove +Chestnut Hill +Chestnut Hills +Chestnut Knolls +Chestnut Leaf +Chestnut Oak +Chestnut Park +Chestnut Pointe +Chestnut Ridge +Chestnut Springs +Chestnut Tree +Chestnut Wood +Cheston +Chestwall +Cheswick +Cheswood +Chetland +Chettenham +Chetwode +Chetwood +Chetwyn +Chetwynd +Cheval +Chevalier +Chevalle +Chevchenko +Chevelle +Chevening +Cheverly +Cheverly Park +Cheverton +Cheverus +Cheves +Chevet +Chevin +Chevington +Cheviot +Cheviot on Duxbury +Cheviots +Chevy +Chevy Chase +Chevy Chase Lake +Chew +Chew Brook +Chew Valley +Chewpon +Chews Branch +Chews Chapel +Chewter +Cheyenne +Cheylesmore +Cheyne +Cheyne Park +Cheyneys +Chiala +Chianti +Chicago +Chicago Tube +Chicama +Chicamuxen +Chicatabut +Chicatawbut +Chicester +Chichele +Chicheley +Chichester +Chichester House +Chick +Chick Evans +Chickacoan Trail +Chickadee +Chickaree +Chickasaw +Chickatabot +Chickatawbut +Chicken +Chicken Shack Fire +Chicken Valley +Chickenden +Chickering +Chickie +Chickney +Chickory +Chico +Chicoine +Chicopee +Chicorp +Chicory +Chicot +Chiddingfold +Chiddingstone +Chidester +Chidley Cross +Chidlow +Chidswell +Chidwall +Chiechi +Chief +Chieftain +Chiesa +Chieveley +Chifley +Chigborough +Chignal +Chignall +Chigwell +Chigwell Park +Chilanian +Chilaw +Chilberton +Chilbrook +Chilco +Chilcoate +Chilcote +Chilcott +Chilcroft +Child +Childerditch +Childerditch Hall +Childeric +Childerley +Childers +Childrens +Childress +Childs +Childs Hall +Childs Hill Finchley +Childs Point +Childsbridge +Childscroft +Chileno Valley +Chiles +Chiles Pope Valley +Chilgrove +Chilham +Chilhowie +Chillem +Chillerton +Chillies +Chilling +Chillington +Chillingworth +Chillis Wood +Chilliwack +Chillum +Chillum Manor +Chillumgate +Chilmark +Chilmead +Chilpancingo +Chilsey Green +Chilston +Chiltern +Chiltern Green +Chiltern Hill +Chiltern Hills +Chiltern Park +Chiltern View +Chiltley +Chilton +Chilver +Chilvers +Chilverton +Chilworth +Chimalus +Chime +Chimes +Chimes Harbor +Chimney +Chimney Corner +Chimney Creek +Chimney House +Chimney Pot +Chimney Ridge +Chimney Rock +Chimney Swift +China +China Air +China Basin +China Grade +China Wall +Chinaberry +Chinatown Dean +Chinbrook +Chinchilla +Chincoteague +Chindits +Chineham +Chinewood +Chingarora +Chingdale +Chingford +Chingford Mount +Chinkapin +Chinley +Chinmoy +Chinn +Chinn Park +Chinnock +Chinnuk +Chinook +Chinquapin +Chinquapin Crest +Chinquapin Round +Chinthurst +Chiott +Chip Hill +Chipili +Chipily +Chipka +Chiplay +Chipley +Chiplou +Chipman +Chipmonk Hollow +Chipmunk +Chippen +Chippendale +Chippendayle +Chippenham +Chipper +Chipper Hill +Chipperfield +Chippetts +Chippewa +Chipping +Chipping Campden +Chippingham +Chippingstone +Chippy +Chipstead +Chipstead Valley +Chipstone +Chipwood +Chiquita +Chiquita Camino +Chircan +Chirco +Chisago +Chisamore Ranch +Chiselhurst +Chisenhale +Chisholm +Chisholme +Chisledon +Chislehurst +Chisley +Chism Park +Chisolm +Chisom +Chisum +Chiswell +Chiswell Green +Chiswick +Chiswick Common +Chiswick High +Chisworth +Chittenden +Chittendon +Chittick +Chitty +Chittys +Chivalry +Chivers +Chloe +Choate +Choats +Chobham +Chobham Park +Chobot +Chocataw +Chocksett +Chocolate +Chocolog +Choctaw +Choir +Choke +Choke Cherry +Chokeberry +Chokecherry +Chole +Cholesbury +Cholla +Cholmeley +Cholmley +Cholmondeley +Cholseley +Chope +Chopek +Chopin +Choptank +Chorley +Chorley Hall +Chorley New +Chorley Old +Chorley Wood +Chorleywood +Chorlton +Choseley +Chouteau +Chovan +Chowan +Chowdermarch +Chowen +Chownes Mead +Chrerrybrook +Chretien +Chris +Chris Mar +Chrisandra +Chrisba +Chrisdumar +Chrisibar +Chrisland +Chrisman +Chrisman Hill +Chrismar +Chrismas +Chrisp +Christ Church +Christa +Christabel +Christchurch +Christeen +Christel +Christel Oaks +Christen +Christensen +Christenson +Christeph +Christer +Christian +Christian Fields +Christian Hill +Christiana +Christiana Parran +Christiano +Christiansen +Christie +Christie Heights +Christie Hill +Christies +Christina +Christina Marie +Christine +Christine Lynn +Christleton +Christman +Christmas +Christmas Lake +Christmas Pie +Christmas Tree +Christmas Tree Point +Christo +Christofaro +Christol +Christoper +Christopher +Christopher Columbus +Christopher Martin +Christopher Michael +Christopher Thomas +Christopher Wren +Christophers +Christs Hospital +Christy +Chrome +Chromite +Chronical +Chronicle +Chronnell +Chruchville +Chrysanthemum +Chrysanthy +Chrysler +Chrysopolis +Chryssell +Chrystie +Chu +Chubb +Chubbs Brook +Chubbuck +Chubworthy +Chuch +Chuck +Chuck Hatch +Chuckanutt +Chuckwagon +Chudleigh +Chukker +Chula +Chula Vista +Chulsey +Chum +Chumalia +Chumasero +Chumleigh +Chung Wah +Chungking +Chunis +Chunooma +Church +Church Access +Church Creek +Church Elm +Church End +Church End East End +Church End EstateMayo +Church Farm +Church Gate +Church Headland +Church Hill +Church Hill Kirkfield +Church Lake +Church Park +Church Wood +Church of Hazel +Churchbury +Churcher +Churchfield +Churchfields +Churchgate +Churchhill +Churchill +Churchill Downs +Churchill Farm +Churchill Glen +Churchill Park +Churchills +Churchland +Churchman +Churchmead +Churchmore +Churchston +Churchtown +Churchview +Churchville +Churchwood +Churin +Churley Wood +Churlin +Churn +Churnet +Churnside +Churston +Churt +Churton +Churubusco +Churwell +Chute +Chuter +Chutney +Chuzzlewit +Chyam +Chynoweth +Ciampa +Cianci +Ciarlo +Cibber +Cibis +Cibrian +Cicada +Cicada Glen +Ciccarelli +Ciccone +Ciceley Mill +Cicely +Cicero +Cicerone +Cid +Cidalia +Cider +Cider Hill +Cider House +Cider Mill +Cider Springs +Cidermill +Cielito +Cielo +Cielo Vista +Cienega +Ciervos +Cijos +Cilantro +Cima +Cimarron +Cimino +Cimmaron +Cimmarron +Cinamon +Cincinatti +Cincinnatti +Cincinnatus +Cindee +Cinder +Cinder Hill +Cinderbed +Cinderella +Cinderford +Cindra +Cindy +Cindy Jo +Cinmar +Cinnabar +Cinnabar Hills +Cinnamin +Cinnamon +Cinnamon Apple +Cinnamon Creek +Cinnamon Teal +Cinnamon Tree +Cinnamond +Cintra +Cintura +Ciolino +Ciper +Cippenham +Cipres +Cipriani +Cipriano +Cipriano Springs +Circa +Circle +Circle C +Circle Court +Circle Creek +Circle Gate +Circle High +Circle Hill +Circle Oaks +Circle Pine +Circle Ranch +Circle Ridge +Circledale +Circlegate +Circling Hunter +Circuit +Circular +Circus +Ciro +Cirolero +Cirrus +Ciruela +Cirvelo +Cisco +Cisler +Cisney +Ciss +Cissbury +Cissell +Cissell Manor +Cisticola +Cistus +Cit +Citadel +Citadelle +Citation +Citizen +Citizens +Citrine +Citron +Citrus +Citrus Grove +Citrus Wood +Citruswood +City +City Center +City Centre +City Dock +City Gate +City Hall +City Heights +City Island +City Park +City View +City Way Pattens +City West +Cityfront Plaza +Cityhomes +Cityview +Civic +Civic Center +Civic Centre Wood +Civic Ctr +Civic Heights +Civic Terrace +Civita +Clack +Clacket +Clackhams +Clackmannan +Claeys +Claffey +Claffy +Claflin +Claflin Farm +Clafton +Clagett +Clagett Farm +Claggett +Claggett Landing +Claggy +Claiborne +Claibourne +Claim +Clair +Clairborne +Claire +Clairemont +Clairfield +Clairmont +Clairton +Clairvale +Clairview +Clallam +Clam +Clam Shell +Clames +Clamhunger +Clammer Hill +Clamshell +Clanalpine +Clanbrook +Clancarty +Clancy +Clandlpline +Clandon +Clanton +Clanville +Clanwilliam +Clapboard Ridge +Clapboardtree +Clapgate +Clapham +Clapham High +Clapham Manor +Clapham Park +Clapp +Clapper +Clappers +Clappers Farm +Clappertown +Clappins +Clapton Hall +Clara +Clara Barton +Clara Louise +Clara Maass +Clara Vista +Claradon +Clarana +Clarane +Clarden +Clare +Clare Lawn +Claredale +Claredon +Clarefield +Claremon +Claremont +Claremont Park +Claremont Woods +Claremore +Claremount +Clarenan +Clarence +Clarence Bromell +Clarendale +Clarenden +Clarendon +Clarendon Hills +Clarendon Woods +Clarens +Clares +Clares Green +Claret +Clarevale +Clareview +Clareville +Clarewill +Clarewood +Clarges +Claria +Claribel +Clarice +Claridge +Clarie +Clarina +Clarinada +Clarinda +Clarion +Clarissa +Clarita +Clark +Clark Fork +Clark Green +Clark Hill +Clark Lake +Clark Smith +Clarkbrooke +Clarke +Clarke Farms +Clarke Hall +Clarkebourne +Clarken +Clarkes +Clarkes Landing +Clarkford +Clarkin +Clarks +Clarks Branch +Clarks Crossing +Clarks Farm +Clarks Hill +Clarks Run +Clarks Wood +Clarksburg +Clarksdale +Clarksfield +Clarkson +Clarkspur +Clarkston +Clarksville +Clarkton +Clarkwood +Clarmont +Clarmonte +Clarner +Claron +Clary +Clary Sage +Clason +Clason Point +Classen +Classic +Classical +Classico +Classon +Clatterbury +Claucus +Claudare +Claude +Claude Moore +Claudett +Claudia +Claudine +Claudius +Claudy +Claughton +Claus +Clausen +Clauser +Clausing +Clausland Mountain +Clauson +Clauss +Clavadal +Clave +Clavel +Clavela +Clavell +Claverack +Claverdale +Claverdon +Claverhambury +Clavering +Claverton +Claverts +Clavey +Clavinia +Clawiter +Clawson +Claxfield +Claxton +Clay +Clay Bank +Clay Basket +Clay Cliffe +Clay East +Clay End +Clay Hammond +Clay Hill +Clay Pit +Clay Spring +Clay Tye +Claybank +Claybar +Clayboard +Clayborn +Clayborne +Claybourne +Claybrook +Claybrook Farms +Clayburn +Claybury +Claycart +Claycord +Claycourt +Claydon +Clayfarm +Clayfield +Claygate +Clayhall +Clayhill +Clayholes +Claymere +Claymont +Claymoor +Claymore +Claypit +Claypit Hill +Claypits +Claypitt +Claypole +Clayponds +Claypool +Clays +Clayshotts +Clayton +Clayton Croft +Clayton Hall +Clayton Marsh +Clayton View +Claytonbrook +Claytonia +Claywood +Cleabarrow +Cleadon +Cleall +Cleanthus +Clear +Clear Creek +Clear Echo +Clear Lake +Clear Ridge +Clear River +Clear Shot +Clear Spring +Clear Springs +Clear View +Clearbrook +Clearbrook Park +Clearcroft +Cleares +Clearfield +Clearland +Clearly +Clearmeadow +Clearmont +Clearmount +Clearpointe +Clearview +Clearwater +Clearwater Creek +Clearwaters +Clearway +Clearwell +Clearwood +Cleary +Cleary Lake +Cleave +Cleaveland +Cleaver +Cleaves +Cleavland +Cleavley +Cleburne +Clee +Cleeve +Cleft +Cleg +Clegg +Cleggs +Cleghorn +Cleland +Clelia +Clelland +Clem +Clemans +Clematis +Clemence +Clemens +Clement +Clement Royds +Clemente +Clementhorpe +Clementi +Clementina +Clementine +Clementon +Clements +Clements End +Clements Hall +Clementson +Clemiston +Clemmons +Clemo +Clemons +Clemson +Clemton +Clenches Farm +Clendenin +Clendenny +Clendinnen +Clennam +Clensham +Clent +Cleo +Cleo Rand +Cleo Springs +Cleome +Cleone +Cleopatra +Clere +Cleremont +Cleremore +Clerihew +Clerk +Clerke +Clermont +Cletus +Cleve +Clevedon +Cleveland +Cleveland Park +Cleveleys +Clevely +Clevemont +Cleverdon +Cleverly +Cleves +Clevis +Clewborough +Clewer +Clewer Court +Clewer Hill +Clewerwall +Clewes +Clewley +Cleworth +Cleworth Hall +Clews +Cley +Cliddesden +Client +Clif +Clifden +Cliff +Cliff Edge +Cliff Estates +Cliff Hill +Cliff Hollins +Cliff House +Cliff Lake +Cliff Pine +Cliff Swallow +Cliff View +Cliff Walk +Cliffbourne +Cliffdale +Cliffe +Cliffe Park +Cliffhaven +Cliffhill +Cliffhouse +Cliffland +Cliffmont +Clifford +Clifford Manor +Clifford Moor +Clifforest +Cliffrose +Cliffside +Cliffside Circle +Clifftop +Clifftown +Cliffview +Cliffwood +Clift +Clifton +Clifton Court +Clifton Creek +Clifton Forest +Clifton Heights +Clifton Hunt +Clifton Oaks +Clifton Park +Clifton Pines +Clifton Point +Clifton Quarry +Clifton Spring +Cliftonbrook +Cliftondale +Cliftons +Cliftonville +Cliftwood +Climbhill +Climmen +Climping +Climus +Clinch +Cline +Clingan +Clinglog +Clink +Clinton +Clinton Manor +Clinton Park +Clinton South +Clinton Vista +Clintonia +Clintonville +Clintwood +Clio +Clipper +Clipper Gap +Clipper Hill +Clipper Ship +Clippers +Clippership +Clipston +Clipstone +Clirieden +Clisby +Clisdell +Clissold +Clitheroe +Clito +Clive +Clive Hills +Clivedale +Cliveden +Clivedon +Clivemont +Clivesdale +Cloak +Cloberry +Clock +Clock Barn +Clock House +Clock Tower +Clockhouse +Clocks +Clocktower +Clohesey +Cloister +Cloisterham +Cloisters +Clomnel +Clonavor +Clonbrock +Cloncurry +Clonmel +Clonmell +Clonmore +Clontarf +Clopper +Cloppers Mill +Clopton +Clorinda +Close +Closeworth +Closter Dock +Cloth +Cloth Hall +Clothall +Clothier +Clothorn +Clothworkers +Clotilda +Cloud +Cloud View +Cloudberry +Cloudesley +Clouds Mill +Cloudsdale +Cloudview +Clough +Clough End +Clough Fold +Clough Head Pinfold +Clough House +Clough Park +Clough Top +Clouston +Cloutier +Cloutman +Clova +Clove +Clove Brook +Clovelly +Clovely +Clover +Clover Flat +Clover Glen +Clover Hill +Clover Knoll +Clover Leaf +Clover Leaf Center +Clover Oak +Clover Patch +Clover Ranch +Clover Ridge +Cloverbrook +Cloverbrooke +Clovercrest +Cloverdale +Cloverfield +Clovergrass +Cloverhill +Cloverhurst +Cloverleaf +Cloverley +Cloverly +Clovermeadow +Clovermere +Clovernook +Cloverview +Cloverway +Cloverwood +Cloveside +Clovewood +Clovis +Clow Creek +Clow International +Clowders +Clowe +Clower +Clowes +Cloyd +Club +Club Center +Club Circle +Club Hill +Club Hollow +Club House +Club Lake +Club Park +Club Pointe +Club Tree +Club View +Club Way +Clubb +Clubhouse +Clubhouse Gate +Clubhouse Memorial +Clubside +Clubview +Clubway +Clucas +Clue +Cluett +Cluff +Clumber +Clump +Clumps +Clunbury +Clunes +Clunie +Clunies Ross +Clutha +Clutton +Clybourn +Clybourne +Clyburn +Clyda +Clyde +Clyde Jones +Clyde O Bosworth +Clyde Potts +Clydebank +Clydelle +Clydesdale +Clydia +Clyfford +Clyfton +Clymer +Clynderven +Clyne +Clysedale +Clyston +Clywd +Cnopius +Co +Co Line +Coach +Coach Hill +Coach House +Coachella +Coachlace +Coachlads +Coachlamp +Coachlight +Coachmaker +Coachman +Coachman Ridge +Coachmans +Coachway +Coachwood +Coakley +Coal +Coal Creek +Coal Hill +Coal Pier +Coal Pit +Coalbrook +Coale +Coalecroft +Coales +Coalinga +Coalkiln +Coalpit +Coalport +Coalshaw Green +Coan +Coare +Coast +Coast Guard +Coast Hill +Coast Hospital +Coast Oak +Coast Range +Coastal +Coastal Charter +Coastal Cove +Coastal Fire +Coastland +Coastview +Coastwise +Coat Ridge +Coatbridge +Coate +Coates +Coates Hill +Coates Park +Coats +Coats Hutton +Cob +Cob Kiln +Cobac +Cobalt +Cobar +Cobargo +Cobb +Cobb Hill +Cobb Island +Cobbadah +Cobbert +Cobbett +Cobbett Hill +Cobbetts +Cobbinsend +Cobbitee +Cobbitty +Cobbity +Cobble +Cobble Brook +Cobble Cove +Cobble Creek +Cobble Crest +Cobble Field +Cobble Hill +Cobble Knoll +Cobble Mill +Cobble Ridge +Cobble Shores +Cobblefield +Cobbler +Cobblerock +Cobblers +Cobblers Beach +Cobblershill +Cobblestone +Cobblestone Fire +Cobblestone Lake +Cobblewood +Cobbold +Cobbs +Cobden +Cobdown +Cobelstone +Coben +Coberley +Cobh +Cobham +Cobham Park +Cobhambury +Cobland +Cobleigh +Coblentz +Coborn +Cobourg +Cobra +Cobran +Cobtree +Coburg +Coburn +Coburn Hill +Coca Cola +Cocasset +Coccio +Cochato +Cochea +Cochetto +Cochise +Cochituate +Cochraine +Cochran +Cochran Mill +Cochrane +Cochrans Lock +Cock +Cock Clod +Cock Green +Cock Hall +Cockatoo +Cockbush +Cockcroft +Cockenoe +Cocker +Cocker Creek +Cocker Mill +Cockerell +Cockerhurst +Cockett +Cockey +Cockfosters +Cockhedge +Cockle Bur +Cocklebur +Cockmannings +Cockpit Point +Cockrell +Cockrells +Cockrill +Cockrobin +Cocks +Cocksfoot +Cocksheadhey +Cockshot +Cockshott +Cockspur +Cocksure +Cockthorpe +Coco +Coco Palm +Coconino +Coconut +Cocos +Cocquina +Cocupara +Cod +Coda +Codale +Codderre +Codding +Coddington +Coddle Harbor +Code +Coderolli +Coderre +Codham Hall +Codicote +Codington +Codjer +Codman +Codman Hill +Codmore Wood +Codo +Codornices +Codorniz +Codorus +Codrington +Cody +Coe +Coeburn +Coed +Coelho +Coes +Coes Neck +Coey +Coeyman +Cofer +Coffee +Coffeeberry +Coffer Woods +Coffey +Coffield +Coffin +Coffman +Coffs Harbour +Cog Hill +Cogate +Coger +Cogger +Coggeshall +Coggins +Coggs Bill +Coghill +Coghlan +Cogmans +Cognewaugh +Cogshall +Cogswell +Cohancy +Cohansey +Cohasett +Cohasset +Cohassett +Cohawney +Cohen +Cohill +Cohn +Cohns +Coho +Cohort +Coil +Coil Plus +Coila +Coin +Coit +Coit Dam +Coit Spring +Coity +Coke +Cokefield +Coker +Cokes +Cola +Colahan +Colam +Colane +Colantha +Colaric +Colasanti +Colbeck +Colbera +Colberg +Colbert +Colborne +Colbourne +Colbrook +Colburn +Colby +Colby Hewitt +Colby Lake +Colby Point +Colchester +Colchester Brook +Colchester Hunt +Colchester Meadow +Colcokes +Cold Arbor +Cold Christmas +Cold Harbor +Cold Harbour +Cold Hill +Cold Norton +Cold Plain +Cold Point +Cold Spring +Cold Spring Brook +Cold Spring Harbor +Cold Spring Hills +Cold Spring Ridge +Cold Springs +Cold Well +ColdHarbour +Coldalhurst +Coldbath +Coldblow +Coldbridge +Coldbrook +Coldcotes +Coldcreek +Colden +Colder +Coldershaw +Coldevin +Coldfall +Coldfield +Coldharbour +Coldicutt +Coldmoorholme +Coldnailhurst +Coldred +Coldren +Coldrum +Coldspring +Coldstream +Coldwaltham +Coldwater +Cole +Cole Farm +Cole Green +Cole Park +Colebert +Coleborne +Colebrook +Colebrooke +Coleby +Colechin +Coleen +Colefair +Coleford +Coleford Bridge +Colegate +Colegates +Colegrave +Colegrove +Coleherne +Colehill +Colekitchen +Colella +Colella Farm +Coleman +Coleman Glen +Coleman Green +Coleman Park +Coleman Ranch +Coleman Thomas +Coleman Valley +Colemans +Colemans Hatch +Colemansmoor +Colemore +Colennade +Colenso +Colepits Wood +Colerain +Coleraine +Colerick +Coleridege +Coleridge +Coleridge Taylor +Coles +Coles Chance +Coles Crossing +Coles Green +Coles Hill +Coles Orchard +Colesberg +Colesburg +Coleshill +Coleshire +Colesmead +Coleson Hill +Colestown +Colesville +Colesville Manor +Colet +Colette +Coleus +Coleville +Colewood +Colewood Estates +Coley +Coley Park +Colfax +Colfe +Colford +Colgan +Colgate +Colgett +Colgrove +Colham +Colham Green +Colham Mill +Colie +Coligni +Colima +Colin +Colin Blythe +Colin Kelly +Colin Murphy +Colin P Kelly Jr +Colin Park +Colina +Colinda +Colindale +Colindeep +Colindia +Colinette +Colins +Colinton +Coliston +Coll +Collado +Collamore +Collar House +Collard +Collards +Collarenebri +Collaroy +Collector +Colleen +Colleen Garden +College +College Eight +College Eight Service +College Farm +College Green +College Heights +College Hill +College Loop +College Manor +College Nine +College Park +College Point +College Pond +College Ten +College Town +College View +Collegeview +Collegiate +Collendean +Collens +Collenswood +Collent +Colles +Colless +Collet +Collete +Colleton +Collett +Collette +Colley +Colley Hill +Colley Manor +Collfield +Collie +Collier +Collier Canyon +Collier Hill +Collier Row +Colliers +Colliers Row +Colliers Water +Colliery +Collimore +Collin +Collincote +Collindale +Colling +Collingbourne +Collingdon +Collinge +Collingham +Collingham Main +Collings +Collingswood +Collingsworth +Collington +Collingtree +Collingwood +Collins +Collins Taft +Collinson +Collinson Lee +Collinsville +Collinwood +Collis +Collischan +Collison +Colliston +Collum Green +Collura +Collyer +Collyhurst +Colma +Colma Creek Service +Colmac +Colman +Colmer +Colmery +Colmore +Colnbrook +Colne +Colne Bank +Colne Park +Colnedale +Colney +Colney Hatch +Colney Heath +Colo +Cologne +Coloma +Colomb +Colombard +Colombine +Colombo +Colon +Colona +Colonade +Colonel +Colonel Bell +Colonel Bennett +Colonel Ellis +Colonel Gridley +Colonel Holcomb +Colonel Hunt +Colonel Johnson +Colonel Lindsay +Colonel Mansfield +Colonel Pye +Colonel Taylor +Colonels +Colonels Choice +Colonia +Colonial +Colonial Arms +Colonial Beach +Colonial Gardens +Colonial Heights +Colonial Hill +Colonial Hills +Colonial Oaks +Colonial Park +Colonial Port +Colonial Post +Colonial Ridge +Colonial Springs +Colonial Village +Colonial Woods +Colonna +Colonnade +Colonsay +Colony +Colony Club +Colony Cove +Colony Crest +Colony Green +Colony Hill +Colony Hills +Colony Knoll +Colony Park +Colony Point +Colony Ridge +Colony View +Colorada +Colorado +Colorado Springs +Colorado Way Carr +Colorado Way Whistler +Colorados +Coloriver +Colpitts +Colrain +Colridge +Colshaw +Colshire +Colson +Colsterworth +Colston +Colt +Colt Run +Coltash +Colthurst +Coltishall +Coltman +Colton +Colton School +Colts +Colts Brook +Colts Neck +Coltsfood +Coltsfoot +Coltwood +Columba +Columbas +Columbet +Columbia +Columbia Creek +Columbia Crossing +Columbia Gateway +Columbia Park +Columbia Square +Columbia Wharf +Columbian +Columbine +Columbus +Colusa +Colvamore +Colville +Colvin +Colvin Forest +Colvin Meadows +Colvin Run +Colwell +Colwick +Colwith +Colwood +Colworth +Colwyn +Colyer +Colyton +Colywn +Comack +Comalli +Comanche +Comaneci +Comargo +Combara +Combat +Combe +Combedale +Combee +Comber +Combermere +Comberton +Combes +Comboy +Combs +Comconex +Comeau +Comely +Comely Bank +Comer +Comeragh +Comerford +Comet +Cometrowe +Comfort +Comforts Farm +Comfrey +Comice +Comiskey +Comistas +Comly +Commack +Commanche +Command +Commander +Commander Black +Commander John Shea +Commerce +Commerce Center +Commerce Park +Commercial +Commercial Vehicle +Commerford +Commers +Commill +Commissary +Commissioners +Commo +Commodore +Commodore Webster +Commoms +Common +Common Gate +Common Side +Common Wood +Commonage +Commonfield +Commonhall +Commonmeadow +Commons +Commonside +Commonside Bromley +Commonside Wood +Commonwealth +Commority +Communication Hill +Communications Hill +Community +Community College +Community College SE +Community Hall +Community Memorial +Community Park +Community Sq +Como +Comp +Compadre +Compass +Compass Point +Compasses +Component +Comprehensive +Compressor +Compromise +Compstall +Compton +Compton Parc +Compton Village +Comptons +Comptons Brow +Compubil +Computer +Comrie +Comstock +Comstock Mill +Comus +Comyn +Comyns +Conally +Conan Doyle +Conant +Concannon +Concanon +Concar +Concepcion +Concert +Concerto +Concetta +Concetta Sass +Concettina +Conch +Concho +Conco +Concolor +Concord +Concord Hill +Concord Point +Concorde +Concordia +Concourse +Concrete +Concrete Pipe +Condado +Condamine +Conde +Condell +Conder +Condesa +Condict +Condit +Condoin +Condon +Condor +Condover +Condron +Conduit +Cone +Coneflower +Conegra +Conejo +Conen +Conerly +Conerty +Conestoga +Conewood +Coney +Coney Byes +Coney Hall Addington +Coney Hill +Coney Island +Coney Warren +Coneyburrow +Coneyhurst +Confederate +Confederate Ridge +Confederation +Confer +Conference +Conference Center +Conference Ground +Conford +Conforti +Congdon +Conger +Congewoi +Congham +Conghurst +Congleton +Congo +Congou +Congresbury +Congress +Congress Hall +Congress Park +Congress Springs +Congress Valley +Congressbury +Congressional +Congreve +Congrove +Conie +Conies +Conifer +Conifer Fire +Conifer Hill +Coniger +Conihasset +Coningesby +Coningham +Coningsby +Conington +Conisboro +Coniscliffe +Coniston +Coniton +Conkey +Conkeyshaw +Conklin +Conkling +Conklins +Conklintown +Conlan +Conlee +Conley +Conley Creek +Conley Downs +Conlogue +Conlon +Conlyn +Conmur +Conn +Conn Creek +Conn Valley +Connaught +Connawarra +Conne Mara +Connect +Connecticut +Connecticut View +Connecting +Connector +Connel +Connell +Connellan +Connelley +Connells Point +Connelly +Connelly Hill +Connels +Connely +Connemara +Connemarra +Connemera +Conner +Conners +Connett +Connie +Connierae +Conningham +Connington +Connolly +Connop +Connor +Connors +Conolly +Conomo +Conomo Point +Conovan +Conover +Conow +Conowingo +Conqueror +Conquest +Conrad +Conrads +Conran +Conrick +Conroy +Conry Crescent +Cons +Cons Land Off Hayward +Consatance +Conselyea +Conservation +Consfield +Consideration +Considine +Consistory +Consiton +Consolidated +Consolo +Consort +Constable +Constance +Constant +Constantine +Constanzo +Constellation +Constitution +Constitution Beach +Constitutional Hill +Consuelo +Consul +Consulate +Contact +Contaplas +Conte +Conte Warf +Contee +Contees Wharf +Contempo +Content +Contentment Island +Contento +Conti Square +Continental +Continental Cove +Continente +Contour +Contra Costa +Contra Loma +Contractor +Contractors +Control Tower +Convair +Convalescent +Convent +Convention +Convention Center +Conventry +Conver +Converse +Convery +Conway +Conway Farms +Conways +Conwell +Conyer +Conyerd +Conyingham +Conyngham +Conzelman +Cooba +Coogan +Coogarah +Coogee +Coogee Bay +Cooinda +Cook +Cook Farm +Cook Riolo +Cooke +Cookes +Cookham Wood +Cookhill +Cookridge +Cookridge Green +Cooks +Cooks Farm +Cooks River +Cooksey +Cookshall +Cookson +Cool Brook +Cool Hollow +Cool Oak +Cool Spring +Coolabah +Coolah +Coolalie +Coolangatta +Coolaroo +Coolawin +Coolbrith +Coolbrook +Cooledge +Cooleena +Cooley +Coolgardie +Coolgun +Coolham +Coolhurst +Coolibah +Coolibar +Coolidge +Coolidge Farm +Coolidge Hill +Cooling +Coolinga +Coolong +Cooloongatta +Coolowie +Coolridge +Coolspring +Coolwood +Cooma +Coomalie +Coomassie +Coombe +Coombe Farm +Coombe Hill +Coombe Wood +Coombehurst +Coombelands +Coombers +Coombes +Coombewood +Coombfield +Coombs +Coombsville +Coomes +Coon Creek +Coon Heights +Coon Hollow +Coon Point +Coon Rapids +Coon Rapids Serv +Coon Rapids Service +Coonamble +Coonan +Coonanbarra +Coonara +Coonawarra +Cooney +Cooney Hill +Coongra +Coonley +Coonong +Coop +Coope +Cooper +Cooper Park +Cooper Pond +Cooper River +Cooper School +Cooperative +Coopermill +Coopernook +Coopers +Coopers End +Coopers Green +Coopers Grove +Coopers Hill +Coopers Pond +Coopers Shaw +Coopersale +Cooperworth +Coora +Coorabin +Cooriengah Heights +Coorilla +Coot +Cootamundra +Coote +Coover +Cooyong +Cop +Copa del Oro +Copas +Copco +Copcutt +Cope +Copel +Copeland +Copeland Creek +Copeland Tannery +Copen Meadow +Copenger +Copenhagen +Copenhaver +Copernic +Copernicus +Copes +Copestake +Copford +Copgrove +Copiage +Copiague +Copland +Copleston +Copley +Coppabella +Coppage +Coppards +Copped Hall +Coppel +Coppen +Copper +Copper Beach +Copper Bed +Copper Beech +Copper Creek +Copper Hill +Copper Leaf +Copper Mill +Copper Mine +Copper Mountain +Copper Peak +Copper Penny +Copper Ridge +Copper Springs +Copper View +Copperas +Copperas Ridge +Copperbeach +Copperbeech +Copperdale +Copperfield +Copperflagg +Copperhill +Copperhouse +Copperkins +Copperleaf +Coppermill +Coppermine +Copperopolis +Copperpenny +Coppers +Coppersmith +Copperstrip +Coppertree +Copperwood +Copperwynd +Coppetts +Coppetts Wood +Coppice +Coppice Farm +Coppice Wood +Coppidwell +Coppins +Coppleridge +Copplestone +Coppola +Coppy +Coprock +Copse +Copse Edge +Copsem +Copsewood +Copsleigh +Copson +Copster +Copsterhill +Copt Hall +Coptefield +Copter +Coptfold +Copthall +Copthorne +Copthorne Common +Coptic +Copts Hill +Copwood +Copyground +Copyhold +Coquette +Coquille +Cora +Cora Bell +Cora Post +Corabel +Corabelle +Coraki +Coral +Coral Berry +Coral Gables +Coral Heath +Coral Reef +Coral Ridge +Coral Sands +Coral Sea +Coral Tree +Corala +Coralberry +Coralee +Coralflower +Coralie +Coralino +Corall Hollow +Coralla Vista +Corallie +Coralwood +Coralyn +Coram +Coram Farm +Coramba +Corang +Coranto +Corban +Corbane +Corbar +Corbar Woods +Corben +Corbet +Corbets +Corbett +Corbett Hill +Corbetta +Corbin +Corbin Hall +Corbitt +Corbridge +Corby +Corbyn +Corchaug +Corcoran +Corcoran Hill +Cord +Corda +Cordage +Cordale +Cordaville +Corday +Cordeaux +Cordeiro +Cordelia +Cordell +Cordellia +Corden +Corder +Cordero +Cordes +Cordgrass +Cordial +Cordier +Cordiero +Cordilleras +Cordina +Cordingley +Cordis +Cordoba +Cordone +Cordova +Cordoy +Cordoza +Cordwainer +Cordwaiver +Cordwallis +Cordwell +Cordwood +Core +Corea +Coree +Coreen +Coreen Hills +Corell +Corella +Corens +Cores End +Corewood +Corey +Coreys Mill +Corfdon +Corfe +Corfield +Corfu +Corgiat +Cori +Coriander +Coriegarth +Coriell +Corinda +Corinha +Corinne +Corinth +Corinthia +Corinthian +Corio +Cork +Cork Oak +Cork Tree +Corkan +Corkberry +Corkland +Corkran +Corks +Corktree +Corkwell +Corkwood +Corky +Corla +Corlano +Corlear +Corlett +Corley +Corlies +Corliss +Corlista +Cormack +Corman +Cormar +Cormier +Cormiston +Cormongers +Cormorant +Cormoy +Corn +Corn Mill +Corn Point +Cornall +Cornauba +Cornbrook +Cornbrook Park +Corncastle +Corncrib +Cornec +Cornehlsen +Corneils +Cornelia +Cornelian +Cornelias Prospect +Cornelison +Cornelius +Cornell +Cornells +Corner +Corner Farm +Corner Hall +Corners +Cornerstone +Cornett +Corney +Cornfield +Cornflower +Cornford +Cornforth +Cornhey +Cornhill +Corniche +Cornilsen +Cornine +Corning +Cornish +Cornith +Cornmill +Cornock +Cornorstone +Cornshaw +Cornstalk +Cornwall +Cornwallis +Cornwalls +Cornwell +Cornwell Farm +Cornwells Beach +Cornwood +Cornworthy +Corobon +Corodon +Corona +Coronach +Coronada +Coronado +Coronation +Coronation Tree Main +Coronawood +Coronel +Coronet +Coroval +Corperation +Corporal Frank Scott +Corporal Kennedy +Corporate +Corporate Center +Corporate Crossing +Corporate Grove +Corporate Lakes +Corporate Limit +Corporate Park +Corporate West +Corporate Yard +Corporation +Corpus Christi +Corral +Corral Hollow +Corrales +Corralitos +Corralitos Ridge +Corralitos View +Corrance +Correas +Corregidor +Correia +Correja +Correll +Correllis +Correnden +Correys +Corri +Corriander +Corrib +Corrick +Corrie +Corriedale +Corrielle +Corriente Point +Corrigan +Corrin +Corrine +Corringham +Corrinne +Corrinthia +Corron +Corruna +Corry +Corryong +Corsa +Corsair +Corsaire +Corsay +Corseley +Corsett +Corsey +Corsham +Corsi +Corsica +Corsicana +Corsletts +Corso +Corson +Cortadera +Cortayne +Cortbridge +Corte Madera +Corte Mesa +Corte Verte +Corte Vista +Cortelyou +Corter +Cortereal +Cortes +Cortese +Cortesi +Cortez +Corthell +Cortina +Cortland +Cortlandt +Cortney +Corto +Corto San Miguel +Cortona +Cortright +Cortsen +Corucopia +Corunna +Corvair +Corvallis +Corve +Corvette +Corvin +Corvina +Corvus +Corwell +Corwin +Corwood +Cory +Corydalis +Coryell +Corys Brook +Cos Cob +Cosbycote +Cosca Park +Cosdach +Cosden +Cose +Cosgrave +Cosgrove +Coslin +Cosma +Cosman +Cosmic +Cosmo +Cosmos +Coso +Cossack +Cosser +Cosset +Cossington +Cossio +Costa +Costa Mesa +Costa Rica +Costa Verde +Costanza +Costanzo +Costar +Costead Manor +Costela +Costello +Coster +Costner +Coston +Costons +Cosumnes +Cosway +Cot +Cot Hill +Cotall +Cotati +Cotchford +Cote +Cote Green +Cotebrook +Cotefield +Cotefields +Cotentin +Coteroyd +Cotesmore +Cotford +Cotham +Cotherstone +Cothran +Cotleigh +Cotluss +Cotman +Coton +Coton Commons +Coton Hall +Coton Manor +Cotoneaster +Cotsford +Cotswold +Cotswolds Hill +Cotswood +Cotta +Cottage +Cottage Colony +Cottage Farm +Cottage Field +Cottage Garden +Cottage Grove +Cottage Hill +Cottage Park +Cottage Point +Cottage Run +Cottagewood +Cottall +Cottam +Cottee +Cottenden +Cottenham +Cotter +Cottered +Cotterell +Cotterill +Cotters +Cottesbrook +Cottesmore +Cottie +Cottimore +Cotting +Cottingham +Cottingley +Cottington +Cottis +Cottle +Cottler +Cotton +Cotton Farm +Cotton Mill +Cotton Reserve +Cotton Tail +Cotton Tree +Cotton Wood +Cottoneaster +Cottonfield +Cottongrass +Cottonleaf +Cottonmill +Cottontail +Cottonwood +Cottonwoods +Cottrell +Cotts Wood +Cottswold +Cotuit +Couch +Couching +Couchmore +Couchon +Couchtown +Couden +Cougar +Cougar Mountain +Cougar Rock +Coughlan +Coughlin +Coulee +Coulgate +Coulman +Coulombe +Coulsden +Coulsdon +Coulsdon Ridgemount +Coulson +Coulter +Coulton +Council +Council Crest +Council Hill +Council Oak +Councillor +Counrtyside +Counsellor +Counselman +Counselor +Count +Count Rumford +Counter +Countess +Counthill +Counting House +Countisbury +Country +Country Acres +Country Aire +Country Brook +Country Club +Country Club Village +Country Commons +Country Corners +Country Creek +Country Crossing +Country Day +Country Estates +Country Fair +Country Falls +Country Farm +Country Fields +Country Forge +Country Glen +Country Hill +Country Hills +Country Hollows +Country House +Country Knoll +Country Knolls +Country Lake +Country Lakes +Country Life +Country Manor +Country Meadow +Country Meadows +Country Mill +Country Oak +Country Oaks +Country Park +Country Pond +Country Ridge +Country Run +Country School +Country Side +Country Squire +Country Trail +Country View +Country Village +Country Wood +Country Woods +Countrybrook +Countryfield +Countryman +Countryridge +Countryside +Countryside Lake +Countrystone +Countryvale +Countryview +Countrywood +Countrywoods +County +County Airport +County Center +County Club +County Court House +County Dump +County Farm +County House +County Institutional +County Labor Camp +County Line +County Park +County Quarry +County Seat +Coupland +Courage +Courallie +Couranga +Courcival +Courier +Courland +Course +Course Brook +Coursehorn +Coursers +Court +Court Bushes +Court Close +Court Downs +Court Farm +Court House +Court Lodge +Court North +Court Side +Court Tree +Court Way Colin Park +Courtauld +Courtenay +Courteney +Courter +Courtesy +Courtfield +Courthill +Courthouse +Courthouse Oaks +Courtland +Courtland Hill +Courtland Manor +Courtland Park +Courtlands +Courtlandt Heights +Courtleet +Courtleigh +Courtley +Courtly +Courtmead +Courtmoor +Courtnell +Courtney +Courtney Park +Courtoak +Courtrai +Courts +Courts Hill +Courtside +Courtwood +Courtwright +Courtyard +Courville +Cousin +Cousins +Coutant +Couter +Couthurst +Coutler +Coutu +Coval +Cove +Cove Edge +Cove Hill +Cove Landing +Cove Neck +Cove Point +Cove Pointe +Cove Ridge +Cove View +Cove of Cork +Covell +Coveney +Covent +Covent Garden +Coventon +Coventry +Coventry on Duxbury +Coveny +Cover +Coverdale +Covered Bridge +Covered Trail +Covered Wagon +Coverhill +Coverly +Coverstone +Covert +Coverton +Coverts +Coves End +Covewood +Covey +Covey Hall +Covey Hill +Covina +Coving Cross +Covington +Covino +Cow +Cow Hill +Cow Pond Brook +Cow Watering +Cowan +Coward +Cowards +Cowasset +Cowbarn +Cowbridge +Cowburn +Cowcross +Cowden +Cowdery +Cowdin +Cowdray +Cowdrey +Cowdroy +Cowdry +Coweeset +Cowell +Cowell Service +Cowells +Cowelside +Cowen +Cowens +Cowesby +Cowesit +Cowfold +Cowhill +Cowick +Cowie +Cowing +Cowl +Cowland +Cowleaze +Cowles +Cowley +Cowley Mill +Cowlin +Cowling +Cowlishaw +Cowlitz +Cowlow +Cowm Top +Coworth +Cowpasture +Cowpastures +Cowpens +Cowper +Cowper Wharf +Cowperthwaite +Cowrang +Cowsill +Cowslad +Cowslip +Cowstead +Cowsted +Cowthorpe +Cox +Cox Farm +Cox Green +Coxheath +Coxmount +Coxon +Coxs +Coxshire +Coxtie Green +Coxton +Coxwell +Coxwold +Coy +Coybay +Coyle +Coyne +Coyote +Coyote Creek +Coyote Hill +Coyote Lake +Coyote Moon +Coyote Point +Coyote Ranch +Coyote Reservoir +Coyote Ridge +Cozens +Cozette +Cozine +Cozumel +Cozy +Cozy Glen +Cozy Lake +Cozzens +Crab +Crab Apple +Crab Hill +Crab Orchard +Crab Tree +Crabapple +Crabb +Crabbet +Crabtree +Crabtree Meadow +Cracco +Crackenedge +Cracklingtown +Cracow +Craddock +Craddocks +Cradducks +Cradle +Cradlebridge +Cradles +Cradleskid +Cradley +Cradock +Crafford +Craft +Crafton +Craftown +Crafts +Craftsland +Craftsman +Craftwood +Crag +Cragg +Craggs +Craggwood +Cragmont +Cragmore +Cragun +Cragwood +Crahan +Craig +Craigavon +Craigdale +Craigen +Craigend +Craigerne +Craighall +Craighill +Craigholm +Craighton +Craighurst +Craigie +Craiglands +Craiglawn +Craiglea +Craigmont +Craigmore +Craignish +Craigton +Craigtown +Craigweil +Craigwell +Craik +Crail +Crain +Crainmont +Cramer +Cramhurst +Crammavill +Crammaville +Crammond +Cramond +Crampshaw +Crampton +Cramptons +Crana +Cranage +Cranberry +Cranberry Hill +Cranberry Meadow +Cranbook +Cranborne +Cranbourn +Cranbourne +Cranbrook +Cranbrooke +Cranbury +Cranbury Cross +Cranch +Crandall +Crandallwood +Crandell +Crandon +Crandor +Crane +Crane Lodge +Crane Meadow +Crane Park +Crane Ranch +Cranebrook +Cranefield +Cranes +Cranes Crook +Cranes Farm +Cranesbill +Craneswell +Craneway +Cranfield +Cranfield Park +Cranford +Cranford Park +Cranham +Cranham Moor +Cranhurst +Crankwood +Cranleigh +Cranley +Cranlington +Cranmer +Cranmer Bank Tynwald +Cranmere +Cranmore +Crann +Cranoke +Crans +Cranshaw +Cranshire +Cranstal +Cranston +Cranstons +Cranswick +Crantock +Cranwell +Cranwells +Cranwich +Cranworth +Crape Myrtle +Crapo +Crary +Craske +Crassas +Craston +Crater +Crater Lake +Crathie +Craut +Crave +Cravea +Cravells +Craven +Cravenwood +Craver +Craw +Crawford +Crawley +Crawley Green +Crawleys +Crawshaw +Crawshay +Cray +Craybrooke +Craycroft +Craydene +Craydon +Crayfield +Crayford +Craylands +Crayle +Crays Will +Crayside +Crayton +Crazy Horse +Crazy Horse Canyon +Crealock +Creamcup +Creameary +Creamer +Creamery +Creamery Hill +Creasey Park +Creasys +Creaville +Crebor +Crecienta +Crecy +Credenhall +Credenhill +Credit River +Credit View +Crediton +Credon +Cree +Creed +Creedmor +Creedon +Creeds Mill +Creek +Creek Bed +Creek Bend +Creek Crossing +Creek Farm +Creek Knoll +Creek Line +Creek Meadow +Creek Oaks +Creek Park +Creek Ridge +Creek Run +Creek Shore +Creek Side +Creek Tree +Creek Valley +Creek View +Creek Water +Creekbed +Creekbend +Creekdale +Creekfield +Creekfront +Creekhollow +Creekline +Creekpaum +Creekpoint +Creekridge +Creeks Bend +Creeksea +Creeksea Ferry +Creeksedge +Creekside +Creekside Oaks +Creekview +Creekview Meadow +Creekway +Creekwood +Creel +Creeley +Creelman +Creely +Creeper +Creeper Hill +Creephedge +Creesy +Creewood +Creffield +Creger +Cregier +Crehore +Creif +Creigan +Creighton +Creighton Farms +Creighton Ridge +Crellin +Cremen +Cremers +Cremia +Cremona +Cremorne +Cremyll +Crencoun +Crendon +Crenna +Crenshaw +Creole +Crepeau +Crerie +Cresbury +Crescent +Crescent Beach +Crescent Cove +Crescent Green +Crescent Knoll +Crescent Lake +Crescent Park +Crescent Ridge +Crescente +Crescenzo +Cresci +Cresenda +Cresent +Cresente +Cresford +Creskeld +Creskell +Creskill +Cresleigh +Crespi +Crespigny +Crespo +Cress +Cress Brook +Cress Creek +Cress View +Cressbrook +Cresset +Cressex +Cressey +Cressfield +Cressida +Cressing +Cressingham +Cresskill +Cresson +Cresston +Cresswell +Cressy +Crest +Crest Estate +Crest Haven +Crest Hill +Crest Hollow +Crest Lake +Crest Line +Crest Maple +Crest Park +Crest Ridge +Crest View +Crest View Hill +Cresta +Cresta Vista +Crestablanca +Crestberry +Crestbrook +Crestbury +Crestdale +Crested +Crested Iris +Crested Quali +Crestedge +Crestfield +Cresthaven +Cresthill +Crestlake +Crestlan +Crestland +Crestlawn +Crestleigh +Crestline +Crestmont +Crestmoor +Crestmount +Creston +Crestone +Crestpark +Crestridge +Crestshire +Crestview +Crestview Forest +Crestwater +Crestway +Crestwood +Creswell +Creswick +Crete +Crete Hall +Crete Wood +Creton +Creukhorne +Crevenna Oak +Crew +Crewe +Crewman +Crews +Crewys +Crib +Cribari +Criccieth +Crichton +Crick +Cricket +Cricket Club +Cricket Green +Cricket Ground +Cricket Hill +Cricket Trail +Cricketers +Cricketers Arms +Cricketfield +Crickets +Crickett +Crickett Hill +Cricketwood +Cricklade +Cricklewood +Cridland +Crieff +Criers +Criffel +Crigger +Crighton +Crilley +Crillon +Crimble Clough +Crimbles +Crimbourne +Crime +Crimea +Crimmins +Crimscott +Crimson +Crimson Bay +Crimson Clover +Crimson King +Crimson Tree +Crimson Valley +Crimsworth +Crinan +Crine +Crinella +Cringle +Cringle Hall +Crio +Criol +Crippen +Cripple +Cripple Creek +Cripplebush +Cripplegate +Cripps +Cripse +Cripsey +Cris +Crisanto +Crisci +Crisfield +Crisman +Crismill +Crismore +Crisp +Crispen +Crispin +Crispmill +Crispsparkle +Crissara +Crissey +Crisswell +Crissy Field +Crist +Cristal +Cristiani +Cristich +Cristina +Cristo +Cristoforo Colombo +Cristom +Cristopher +Cristowe +Cristy +Criswell +Critchley +Critchmere +Criton +Crittall +Critten +Crittenden +Crivelli +Crivello +Cro She +Croak +Croaker +Croal +Croasdaile +Croasdale +Croatan +Croatia +Croce +Crocheron +Crockenhill +Crocker +Crocker Grove +Crocker Hill +Crocker Mansion +Crocker Pond +Crockers +Crockerton +Crocket +Crockett +Crockford +Crockford Park +Crockhamwell +Crockhurst +Crocknorth +Crocus +Crocus Hill +Croes +Croff +Croft +Croft End +Croft Gates +Croft House +Croft Regis +Croft Walk +Croftdale +Croftdown +Crofters +Crofthill +Croftland +Croftlands +Croftleigh +Crofton +Crofton Hill +Crofton Park +Crofton Valley +Croftridge +Crofts +Crofts Bank +Croghan +Crogsland +Croham Manor +Croham Park +Croham Valley +Croindene +Croissy +Croix Crest +Croixwood +Croley +Crolona Hgts +Crom +Cromar +Cromartie +Cromarty +Crombie +Cromdale +Crome +Cromer +Cromer Hyde +Cromer Villas +Cromers +Cromford +Cromhurst +Cromie +Cromley +Crommelin +Crompton +Cromwell +Cromwell Park +Crondace +Crondall +Crondon Park +Croner +Cronin +Cronks Hill +Cronshaw +Cronston +Cronulla +Crook +Crooke +Crooked +Crooked Creek +Crooked Crow +Crooked Hill +Crooked Lake +Crooked Lk Service +Crooked Meadow +Crooked Oak +Crooked Pond +Crooked Spring +Crooked Tree +Crooked Yard +Crooker +Crookfield +Crookham +Crookhill +Crooks +Crooksbury +Crookston +Croom +Croom Acres +Croom Airport +Croombs +Croot +Cropland +Cropley +Cropp +Croppers +Cropsey +Croquet +Crosby +Crosby Farm +Crosby Hill +Crosby Lake +Crosfell +Crosier +Crosland +Crosman +Croson +Cross +Cross Bank +Cross Bath +Cross Bay +Cross Belgrave +Cross Bellbrooke +Cross Bentley +Cross Bow +Cross Bridge +Cross Bridles +Cross Bronx Service +Cross Burley Lodge +Cross Catherine +Cross Chancellor +Cross Chapel +Cross Country +Cross County +Cross Creek +Cross Crown +Cross Elford +Cross Flatts +Cross Foxes +Cross Gate +Cross Gates +Cross Green +Cross Green East Busk +Cross Green Garnet +Cross Hartley +Cross Henley +Cross Hill +Cross Hills +Cross Island +Cross Kelso +Cross Lances +Cross Laurel +Cross Maude +Cross Milan +Cross Moun +Cross Myrtle +Cross Oak +Cross Oaks +Cross Ormrod +Cross Osmondthorpe +Cross Park +Cross Peel +Cross Point +Cross Quarry +Cross Queen +Cross Rail +Cross Ridge +Cross Rink +Cross Roundhay +Cross School +Cross Springs +Cross Timber +Cross Valley +Cross Westchester +Cross Woodstock +Cross Woodview +Cross York +Crossacres +Crossall +Crossbank +Crossbay +Crossbow +Crossbridge +Crossbrook +Crosscreek +Crossdale +Crossefield +Crossen +Crossfell +Crossfield +Crossford +Crossgate +Crossgates +Crosshill +Crossing +Crossing Creek +Crossings +Crosslake +Crossland +Crosslands +Crosslet +Crossley +Crossman +Crossmead +Crossmeadow +Crossoak +Crossoaks +Crosson +Crossover +Crosspike +Crosspoint +Crosspointe +Crossrail +Crossridge +Crossrip +Crossroad +Crossroads +Crossthwaite +Crosstie +Crosstitch +Crosstown +Crosstown Service +Crosstrail +Crossvalley +Crossview +Crosswaite +Crosswater +Crossway +Crossway Pinner Hill +Crossways +Crossways Anchor +Crossways Galleon +Crossways Lake +Crosswind +Crosswinds +Crosswood +Crosswoods +Croston +Crosts +Crothers +Croton +Crotona +Crotty +Crouch +Crouch Hall +Crouch House +Croucher +Crouchfield +Crouchley +Crough +Crouse +Croval +Crow +Crow Canyon +Crow Creek +Crow Green +Crow Haven +Crow Hill +Crow Nest +Crow Piece +Crow Point +Crow Pond +Crow River +Crow Trees +Crow Wood +Crowborough +Crowbridge +Crowbrook +Crowcroft +Crowden +Crowder +Crowdis +Crowe +Crowe Farm +Crowell +Crowell Farm +Crowells +Crowes +Crowfoot +Crowgey +Crowhill +Crowhurst +Crowhurst Village +Crowland +Crowlands +Crowle +Crowley +Crown +Crown Colony +Crown Commons +Crown Court +Crown Farm +Crown Fox +Crown Hill +Crown Meadow +Crown Oak +Crown Oaks +Crown Peak +Crown Point +Crown Pt +Crown Quay +Crown Ridge +Crown Royal +Crown Service +Crown View +Crown Woods +Crowndale +Crowne Hill +Crowne Oak +Crowneast +Crowner +Crownest +Crownfield +Crownhill +Crowningshield +Crowninshield +Crownpits +Crownpointe +Crownridge +Crownshield +Crownstone +Crownsville +Crowntop +Crownwood +Crows +Crows Landing +Crows Mill +Crows Nest +Crowsheath +Crowshott +Crowsley +Crowstone +Crowswood +Crowther +Crowthorn +Crowton +Croxall +Croxdale +Croxley +Croxted +Croxton +Croy +Croy Ridge +Croyde +Croyden +Croydon +Croydon Park +Croydon Barn +Croydonbarn +Croyland +Croylands +Croysdale +Croyton +Crozet +Crozier +Crucero +Crucible +Crucie +Cruden +Cruden Bay +Crudge +Cruet +Cruff +Cruft +Cruger +Cruick +Cruickshank +Cruikshank +Cruiser +Crummell +Crummock +Crump +Crumpsall +Crundale +Crunden +Crundwell +Crunson +Crusade +Crusader +Crusoe +Crutches +Crutchfield +Cruttenden +Crux +Cruz +Cryalls +Cryals +Cryder +Cryders +Cryer +Cryers Hill +Cryol +Crypt +Crystal +Crystal Airport +Crystal Bay +Crystal Cove +Crystal Creek +Crystal Glen +Crystal Glow +Crystal Grove +Crystal Heights +Crystal Hills +Crystal Lake +Crystal Lake Ranch +Crystal Palace +Crystal Palace Park +Crystal Park +Crystal Point +Crystal Pond +Crystal Ridge +Crystal Rock +Crystal Shore +Crystal Spring +Crystal Spring Farm +Crystal Springs +Crystal View +Crystalford +Crystalline +Crystalwood +Crystyl Ranch +Cuardo +Cub Run +Cub Run Park +Cuba +Cuba Hill +Cubberley +Cubbitt +Cubitt +Cubley +Cublington +Cubstream +Cucamonga +Cuciz +Cuckfield +Cuckold Point +Cuckolds Green +Cuckoo +Cuckoo Hall +Cuckoo Hill +Cuckoos +Cuckoowood +Cucumber +Cudbear +Cudd +Cuddington +Cudgee +Cudgegong +Cudham +Cudham Park +Cudworth +Cuenca +Cuerdon +Cuernavaca +Cuesta +Cufaude +Cuff +Cufflin +Cugley +Cuire +Culbert +Culbertson +Culburra +Culcheth +Culcheth Hall +Culdees +Culebra +Culet +Culet Ranch +Culford +Culgoa +Culham +Culin +Cull +Cullen +Cullens +Cullesden +Culley +Culligan +Cullinan +Cullinane +Culling +Cullingworth +Cullins +Cullivan +Cullman +Culloden +Culloden Park +Cullom +Culls +Cullum +Cully +Cullyn +Culmer +Culmington +Culmore +Culotta +Culp +Culpeper +Culpepper +Culps Hill +Culross +Culsac +Cultowa +Culver +Culverden +Culverden Park +Culverhouse +Culverley +Culvers +Culvert +Culverwell +Culworth +Culya +Culyer +Culzean +Cumbara +Cumbee +Cumber +Cumberbach +Cumberland +Cumberland Green +Cumberland Hill +Cumberlow +Cumbermeade +Cumbermere +Cumberstone +Cumberton +Cumbrae +Cumbre +Cumbria Valley +Cumley +Cumming +Cummings +Cummings Hall +Cummings Park +Cummings Point +Cummington +Cummins +Cumner +Cumnock +Cumnor +Cumora +Cumorah +Cumston +Cumulus +Cunard +Cuncliffe +Cundalls +Cundey +Cundiff +Cundy +Cuneo +Cunha +Cunliffe +Cunniff +Cunningham +Cunningham Hill +Cunningham Hole +Cunninghame +Cunnington +Cunninham +Cunnison +Cuny +Cuozzo +Cupar +Cupertino +Cupid Green +Cupola +Cupp +Curagul +Curate +Curban +Curci +Curds +Curfew +Curie +Curl +Curletto +Curlew +Curlew Camp +Curlewis +Curley +Curley Hill +Curling +Curling Pond +Curling Tye +Curls +Curlton +Curmore +Curness +Curney Court +Curragh Downs +Curragh Oaks +Currah +Curran +Currans +Currans Hill +Currant +Currants Farm +Currawang +Curraweela +Currawong +Currell +Curren +Current +Currey +Curricle +Currie +Currier +Currier And Ives +Curringa +Currong +Curry +Curry Canyon +Curry Creek +Curry Ford +Curry Powder +Currymine +Cursitor +Curson +Curt +Curtain +Curteis +Curtice +Curtice Farm +Curtier +Curtin +Curtis +Curtis Bay Pleasure +Curtis Field +Curtis Mill +Curtisden Green +Curtiss +Curtner +Curtola +Curve +Curve Crest +Curved Bridge +Curved Iron +Curvers +Curwen +Curzon +Cusack +Cushing +Cushing Hill +Cushman +Cushwa +Cusick +Custance +Custer +Custis +Custis Acres +Custis Memorial +Custom House +Custom Village +Customs House +Cut +Cut Accross +Cut Hill +Cutacre +Cutbush +Cutchogue +Cutcliffe +Cutcombe +Cutenhoe +Cutforth +Cutgate +Cuthbert +Cuthbertson +Cuthel +Cutie +Cutlass +Cutler +Cutler Farm +Cutler Heights +Cutler Hill +Cutler Ridge +Cutlers +Cutlog +Cutmore +Cutnook +Cuton Hall +Cutsyke +Cutten +Cutter +Cutter Boy Scout Camp +Cutter Hill +Cutter Ridge +Cuttermill +Cutters +Cutters Dock +Cutters Grove +Cutters Mill +Cutting +Cuttinglye +Cuttings +Cuttings Wharf +Cutts +Cuttys +Cutwater +Cutwood +Cuvier +Cuxton +Cuyahoga +Cuyler +Cuyuna +Cuzco +Cvs +Cyanamid +Cyclone +Cyclotron +Cygnet +Cygnus +Cymbal +Cymbeline +Cynron +Cynthia +Cyphers +Cypress +Cypress Bay +Cypress Beach +Cypress Branch +Cypress Cove +Cypress Creek +Cypress Garden +Cypress Green +Cypress Grove +Cypress Hill +Cypress Hills +Cypress Hollow +Cypress Landing +Cypress Neck +Cypress Peak +Cypress Point +Cypress Pointe +Cypress Ranch +Cypress Ridge +Cypress Run +Cypress Tree +Cypress Village +Cypresstree +Cyprian +Cyprus +Cyprus Cedar +Cyr +Cyrandall Valley +Cyrene +Cyress +Cyril +Cyril Magnin +Cyrus +Cyrus Field +Cyrus Heights +Czacki +Czar +Czarina +Czerkies +Czerny +D Amico +D C Training School +D Chene +D Commercial +D Evereux Circle +D Fernwood +D Gipsy +D Harehills +D J Murphy +D Leeds Infirmary +D Miller +D W Field Park +D W Field West +D. Hutchison +Da Rosa +Da Vinci +Daarle +Dabbert +Dabbs Hill +Dabel +Dabley +Dabner +Dabney +Dacca +Daccamill +Dace +Dacey +Dacia +Dacosta +Dacotah +Dacre +Dacres +Dacy +Dadant +Dade +Dadley +Dado +Daffil +Daffodil +Dafrack +Dagden +Dagenham +Dagenham Centre +Dagenham Goring +Dagger +Daggert +Daggett +Daggs Dell +Dagley +Dagmar +Dagnall +Dagnam Park +Dagnan +Dagnell +Dagnets +Dagnino +Dagwood +Dahill +Dahl +Dahlberg +Dahlen +Dahlgreen +Dahlgren +Dahlia +Dahlin +Dahlonega +Dahnerts Park +Dahomey +Daigle +Daiglen +Dail +Dailey +Daily +Daimler +Daine +Daines +Daingerfield +Dainton +Daintree +Daintry +Dainty +Daiquiri +Dairsie +Dairy +Dairy Farm +Dairy House +Dairy Lou +Dairyglen +Dairyground +Dairyherd +Dairyhouse +Dairymaid +Daisey +Daisleys +Daisy +Daisy Bank +Daisy Farm +Daisy Farms +Daisy Field +Daisy Green +Daisy Hall +Daisy Hill +Daisy Trail +Daisyfield +Daisygate +Daisyley +Daka +Dakar +Dakara +Dakarla +Dake +Daken Brook +Dakin +Daking +Dakins +Dakley +Dakota +Dakota Fields +Dakota Lakes +Dakotah +Dakyn +Dalamar +Dalbeattie +Dalberg +Dalbert +Dalbertis +Dalbury +Dalby +Dalcassia +Dalcross +Daldunn +Dale +Dale Brook +Dale Green +Dale Lodge +Dale Odell +Dale Park +Dale View +Dale Wood +Dalebrook +Dalebrooke +Dalebury +Dalecarlia +Dalegarth +Daleham +Dalehead +Dalehurst +Dalemar +Dalemeade +Dalemere +Dalen +Dales +Dales Brow +Dalesford +Daleside +Dalessi +Dalesway +Daleswood +Daleview +Dalewood +Daley +Dalgety +Dalgo +Dalham +Dalhart +Dalhouse +Dalhousie +Dali +Dalis +Dalke +Dalkeith +Dalkieth +Dall +Dall Sheep +Dallas +Dallas Ranch +Dallenbach +Dalles +Dalley +Dalleys +Dallimore +Dallin +Dalling +Dallinger +Dallington +Dallon +Dallow +Dally +Dalma +Dalmally +Dalman +Dalmar +Dalmatia +Dalmation +Dalmeny +Dalmeyer +Dalmney +Dalmore +Dalmorton +Dalny +Dalphen +Dalphin +Dalpura +Dalray +Dalroy +Dalrympl +Dalrymple +Dalston +Dalton +Daltons +Daltry +Dalveen +Dalwood +Daly +Dalyell +Dalyn +Dalys +Dalziel +Dam +Dam Head +Damascus +Damases +Damask +Dambly +Dambrosio +Dame +Dame Head +Dame Mary Gilmore +Dameelie +Damen +Dameron +Dames +Damey +Damian +Damiano +Damico +Damien +Damigos +Damin +Damish +Damon +Damon Park +Damons Point +Damour +Damper +Damphurst +Dampier +Damrell +Dams +Damsel +Damsen +Damson +Damsonwood +Damuth +Damyon +Dan +Dan Jennings +Dan Mason +Dan Patch +Dana +Dana Estates +Dana Hill +Danada +Danalan +Danbeck +Danberry +Danbridge +Danbrook +Danbury +Danbury Forest +Danby +Dancause +Dance +Dancer +Dancers +Dancers End +Dancers Hill +Dancing Bear +Dancing Dicks +Dancing Waters +Dancrest +Dancy +Dandarbong +Dandee +Dandelion +Dandenong +Dandies +Dandon +Dandy +Dane +Dane Bank +Dane Bridge +Dane End +Dane Hill +Danebridge +Danebury +Daneby +Danecourt +Danecroft +Daned +Danedale +Danefield +Danehill +Daneholme +Danehurst +Danel +Danemar +Danemere +Danenhower +Danens +Danes +Danesbury +Danesbury Park +Danescroft +Danesdale +Daneshill +Danesmoor +Danesta +Daneswood +Danethorpe +Danetree +Daneville +Danewell +Danewood +Danfield +Danford +Danford Park +Danforth +Dangan +Dangar +Dangelo +Dangerfield +Danhof +Dania +Danial +Danica +Daniel +Daniel Adamson +Daniel Cox +Daniel French +Daniel K Ludwig +Daniel Lewis +Daniel Maloney +Daniel Mccahill +Daniel Payne +Daniel Shays +Daniel Teague +Daniel Webster +Daniel Young +Danielian +Daniell +Danielle +Danielli +Daniels +Danigus +Danis +Danisher +Danita +Dankhoff +Danko +Danks +Danlee +Danley +Danmann +Danmar +Dann +Dannell +Danner +Dannet +Danns +Danny +Dannys +Dano +Danoha +Danridge +Danrose +Danroth +Dans +Dansen +Dansforth +Dansington +Danson +Dant +Dante +Dante Robles +Danthonia +Danton +Dantzic +Danube +Danver +Danvera +Danvers +Danvid +Danville +Danwood +Danworth +Danywern +Danza +Danze +Danzic +Dapdune +Daphne +Daphne Jackson +Dapifer +Daplyn +Dapper Darby +Dapple +Dapplegray +Dara +Dara James +Daraya +Darbishire +Darby +Darby Green +Darbydale +Darcelle +Darcey +Darcy +Dardanelle +Dardanelle West +Dardanelles +Dardanelli +Darden +Dardenelle +Dare +Dareen +Darek +Darel +Darell +Darenth +Darenth Park +Darenth Wood +Darerka +Dares Beach +Dares Wharf +Daresbury +Darewood +Darfield +Dargai +Dargan +Dargets +Darghan +Dargie +Dargle +Daria +Darian +Dariel +Darien +Darien Club +Darien Lakes +Darin +Darina +Darington +Dario +Darius +Dark +Dark Canyon +Dark Forest +Dark Horse Lake +Dark Neville +Darkwood +Darkwoods +Darla +Darlan +Darland +Darlands +Darlene +Darlenen +Darley +Darling +Darling Island +Darling Point +Darlinghurst +Darlings +Darlington +Darlow +Darman +Darmenia +Darmody +Darmour +Darmstadt +Darmuid Green +Darnall +Darnay +Darnby +Darnel +Darnell +Darnells Grove +Darnestown +Darnet +Darnley +Darnton +Daron +Darook Park +Darr +Darragh +Darrambal +Darras +Darrel +Darrell +Darren +Darri +Darrian +Darrick +Darrick Wood +Darrigo +Darrin +Darrington +Darrow +Darrs +Darryl +Darset +Darsha +Darsow +Dart +Dart Thru +Dartbrook +Darter +Darters +Dartford +Darthmouth +Darting Bird +Dartington +Dartley +Dartmoor +Dartmouth +Dartmouth Park +Dartnell +Dartnell Park +Darton +Daruga +Daruish +Darvall +Darvell +Darvill +Darville +Darvon +Darwell +Darwen +Darwin +Daryl +Daryngton +Dascomb +Dasea +Dasher +Dashia +Dashiell +Dashiell Hammett +Dashmere +Dashwood +Dashwood Lang +Dassance +Dassel +Dassell +Dassern +Dassett +Dassing +Data +Datchet +Datchett +Date +Dateleaf +Daten +Dater +Dato +Datoni +Datoro +Daub +Daubenbiss +Daugherty +Dault +Daulton +Daunt +Dauntesy +Dauntless +Dauntly +Dauntsey +Dauphin +Dauphine +Dauria +Dauses +Dauster +Daux +Dav +Davan +Davane +Dave +Davehall +Davelin +Daven +Davenant +Davenfield +Davenham +Davenhill +Davenport +Davenport Fold +Davenport Landing +Davenport Park +Daventer +Daventry +Davern +Daves +Davey +Davey Glen +Daveyhulme +Davi +Davian +David +David A Barry +David Brainerd +David Henderson +David Hooper +David Joseph +David Morris +David Pilgrim +David Scott +David Victoria +Davida +Davidge +Davids +Davids Island +Davidson +Davidson Mill +Davidsons Mill +Davidsons Private +Davidsonville +Davie +Davies +Daviess +Davilla +Davine +Davington +Davini +Davis +Davis Brook +Davis Farm +Davis Ford +Davis Ledge +Davis Mill +Davisfield +Davison +Davisson +Davisville +Daviswood +Davit +Davitt +Davitto +Davona +Davoren +Davos +Davron +Davy +Davy Robinson +Davyhulme +Daw +Dawe +Dawell +Dawes +Dawes East +Dawkins +Dawley +Dawlish +Dawn +Dawn Day +Dawn Fraser +Dawn Harbor +Dawn Heather +Dawn Hill +Dawn Oak +Dawn Whistle +Dawnay +Dawneys +Dawngate +Dawnlee +Dawnridge +Dawnview +Dawnwood +Dawpool +Daws Heath +Daws Hill +Dawson +Dawson Beach +Dawson Farm +Dawson Manor +Dawtrey +Day +Day Break +Day Care +Day Farm +Day Hill +Day Lillies +Day Lily +Day School +Day Spring +Day Valley +Daybreak +Daybrook +Daycroft +Dayfield +Dayflower +Daylesford +Daylight +Daylilly +Daylily +Daylong +Daylop +Dayna +Days +Days Farm +Days Inn Connecticut +Days Island +Daysailer +Daysbrook +Dayton +Dayton Herzog +Dayton River +Daytona +Daytonna +Daywalt +Db +Dd +De Anza +De Beauvoir +De Bell +De Bera +De Berg +De Bernardo +De Boer +De Bohun +De Bord +De Bow +De Broggi +De Brome +De Bruin +De Burgh +De Busch +De Camp +De Carli +De Carlo +De Castella +De Chair +De Chario +De Chene +De Cook +De Costa +De Fillipo +De Foe +De Force +De Ford +De Forest +De Fremery +De Frene +De Grasse +De Guigne +De Haro +De Hart +De Haven +De Havilland +De John +De Jong +De Korte +De Koven +De Kraft +De La Cruz +De La Salle +De Lacies +De Lasalle +De Laune +De Lauret +De Laval +De Lemos +De Leon +De Lima +De Long +De Luca +De Luci +De Lucy +De Mandeville +De Mar +De Marietta +De Mate +De Mello +De Milhau +De Mille +De Mones +De Montfort +De Morgan +De Mott +De Normandie +De Ovan +De Palma +De Pascale +De Paul +De Ponti +De Prizio +De Quincey +De Reimer +De Ronde +De Roon +De Salis +De Sanka +De Sellum +De Silva +De Solo +De Soto +De Souza +De Tamble +De Tracey +De Turk +De Vere +De Veres +De Vito +De Voe +De Walden +De Witt +De Wolf +De Young +De la Costa +De la Cruz +De la Farge +De la Guerra +De la Pena +De la Salle +DeAnza +DeBaun +DeCosta +DeFrance +DeKalb +DeLeon +DeReimer +DeSota +DeWolfe +Deacon +Deacon Haynes +Deacon Hill +Deacon Hunt +Deaconess +Deacons +Deacons Hill +Deaconsfield +Dead +Dead End +Dead Horse Canyon +Dead Run +Deadbrook +Deadfield +Deadman +Deadmans +Deadmans Ash +Deadwood +Deady +Deakin +Deakins +Deakins Hall +Deaks +Deal +Deale +Deale Beach +Deale Churchton +Dealey +Dealton +Dealtry +Dealy +Dealynn +Dean +Dean Bank +Dean Bradley +Dean Farm +Dean Head +Dean Hill +Dean House +Dean Lakes +Dean Lesher +Dean Moor +Dean Oak +Dean Park +Dean Row +Dean Ryle +Dean Trench +Dean Wood +Deancroft +Deancross +Deane +Deane Church +Deane Croft +Deaner +Deanery +Deanes +Deanfield +Deangelo +Deanhill +Deanland +Deanmar +Deanna +Deanne +Deanoak +Deans +Deans Hill +Deans Lake +Deans Rhode Hall +Deansbrook +Deanscourt +Deansgate +Deanshut +Deanswood +Deanville +Deanwood +Dearborn +Dearborn Park +Dearborne +Dearden +Deardorff +Dearfield +Dearing +Dearlove +Dearne +Dearsley +Deasy +Deauville +Deb +Debartolo +Debaun +Debbie +Debbie Hill +Debby +Debdale +Debden +Debeck +Debele +Debellevue +Debenham +Debernardi +Debes Ranch +Debevoise +Deblin +Deblois +Debmar +Debnams +Deboer +Debolt +Debonaire +Debora +Deborah +Deborah Jean +Deborah Lee +Deborah Sampson +Debord +Debow +Debra +Debrick +Debrincat +Debruin +Debruyne +Debston +Deburgh +Debutante +Decarli +Decarolous +Decathalon +Decatur +Decca +Decelle +December +Decesaris +Dechantal +Decicco +Decima +Deck +Deckard +Decker +Deckman +Declaration +Decoe +Decora +Decorah +Decota +Decoto +Decoverly +Decoy +Decoy Hill +Decree +Dedalera +Dederer +Dedham +Dedmere +Dedswell +Dedworth +Dee +Dee Jay +Deeble +Deedham +Deedie +Deeley +Deems +Deen +Deep +Deep Bottom +Deep Cliffe +Deep Cove +Deep Creek +Deep Earth +Deep Glen +Deep Gorge +Deep Haven +Deep Hollow +Deep Landing +Deep Mill +Deep River +Deep Run +Deep Spring +Deep Turn +Deep Water +Deep Well +Deep Wood +Deep Woods +Deepage +Deepbrook +Deepcar +Deepdale +Deepdene +Deepdene Park +Deepfield +Deepfields +Deepford +Deephaven +Deeping +Deepstone +Deepwater +Deepwell +Deepwood +Deepwood Farm +Deepwoods +Deer +Deer Bay +Deer Camp Fire +Deer Canyon +Deer Chase +Deer Cove +Deer Creek +Deer Creek Heights +Deer Crest +Deer Cross +Deer Field +Deer Forest +Deer Garden +Deer Grass +Deer Grove +Deer Haven +Deer High +Deer Hill +Deer Hill End +Deer Hills +Deer Hollow +Deer Isle +Deer Lake +Deer Meadow +Deer Oaks +Deer Pack Fire +Deer Park +Deer Park Fire +Deer Pass +Deer Path +Deer Point +Deer Pointe +Deer Pond +Deer Ridge +Deer Rock +Deer Run +Deer Trail +Deer Valley +Deer Water +Deerbank +Deerbarn +Deerbrook +Deerchase +Deercliff +Deercrest +Deerdale +Deerdell +Deere +Deere Park +Deerfield +Deerfield Pond +Deerfoot +Deerford +Deergrass +Deerhaven +Deerhill +Deerhurst +Deering +Deering Bay +Deering Oaks +Deerings +Deeringwood +Deerlea +Deerleap +Deernolm +Deerpark +Deerpark Meadow +Deerpath +Deerpoint +Deerpond +Deershorn +Deerslayer +Deerswood +Deerton +Deertrack +Deertrail +Deervale +Deerview +Deerwatch +Deerwater +Deerwood +Deeside +Deeves Hall +Deevon +Defence +Defender +Defense +Defford +Defiance +Defoe +Deford +Deforest +Deforrest +Defremery +Defries +Dega +Degas +Degema +Degen +Degener +Degnan +Degraw +Degray +Degroate +Dehart +Dehaven +Dehlsen +Dehne +Dehnhoff +Dehnsfield +Dehoff Canyon +Dehon +Dei +Deichmann +Deigan +Deighton +Deirdre +Deirving +Deisius +Dejarld +Dekalb +Dekay +Dekoven +Del +Del Amigo +Del Antico +Del Avion +Del Cambre +Del Camino +Del Campo +Del Canto +Del Carlo +Del Casa +Del Cerro +Del Dayo +Del Este +Del Favero +Del Franco +Del Ganado +Del Hombre +Del Lago +Del Loma +Del Luz +Del Mar +Del Medio +Del Miller +Del Mont +Del Monte +Del Monte Farms +Del Norte +Del Oceano +Del Ogier +Del Oro +Del Otero +Del Paso +Del Prado +Del Presidio +Del Prete +Del Puerto Canyon +Del Ray +Del Rey +Del Rio +Del Rio Wood +Del Rosa +Del Sol +Del Sur +Del Tren +Del Vale +Del Valle +Del Vista +Del Webb +Del Wes +Dela Park +Delabole +Delacourt +Delacy +Delafield +Delafield Island +Delaford +Delagnes +Delahays +Delaigh +Delaine +Delamare +Delamark +Delamer +Delamere +Delamont +Delancey +Delanco +Delancy +Deland +Delander +Delando +Delane +Delaney +Delange +Delano +Delanoy +Delard +Delarma +Delat +Delaunay +Delaunays +Delauneys +Delavan +Delaveaga Park +Delawanda +Delawanna +Delaware +Delbarton +Delbert +Delbooth +Delbrook +Delcastle +Delce +Delcina +Delcombe +Delcris +Delder +Deldorf +Delecta +Delehanty +Delekas +Delenty +Deleo +Delery +Delevan +Deleware +Delf +Delfield +Delfin +Delfino +Delford +Delft +Delfur +Delfzul +Delgada +Delgado +Delgarno +Delhi +Delia +Delia Walker +Delibes +Delicious +Delikat +Delisio +Delisle +Delius +Delivery +Dell +Dell Field +Dell Glen +Dell Hollow +Dell Park +Dell Wood +Della +Dellabrooke +Dellanno +Dellbow +Dellbrook +Dellcastle +Dellcot +Dellcut +Delle +Deller +Delles +Dellfield +Dellmar +Dellmead +Dellmont +Dellmore +Dellney +Dellos +Dellow +Dellows +Dellridge +Dells +Dellsome +Dellview +Dellway +Dellwood +Delma +Delmar +Delmas +Delmeade +Delmer +Delmer End +Delmonden +Delmonico +Delmont +Delmonte +Delmor +Delmore +Delna Manor +Delno +Delnor +Delnor Glen +Delo +Deloitte +Delong +Deloraine +Delorenzo +Delores +Delorey +Delorme +Delos +Deloss +Delph +Delph New +Delpha +Delphfields +Delphi +Delphia +Delphinium +Delport +Delprete +Delrey +Delridge +Delrogue +Delrose +Delside +Delsignore +Delt +Delta +Delta Breeze +Delta Fair +Delta King +Delta Queen +Delta Ranch +Delta River +Delta Wind +Deltaview +Deltawind +Delton +Deluca +Delucchi +Delve +Delverton +Delves +Delvin +Delvino +Delwick +Delwit +Delwood +Demaine +Demar +Demarco +Demarcus +Demarest +Demaret +Demarr +Demarr Homestead +Demars +Demartini +Demartino +Demauro +Demby +Demeo +Demercurio +Demerest +Demerrit +Demers +Demesne +Demeter +Demetre +Demetrius +Demeyer +Demille +Deming +Demmert +Demmings +Demmond +Democracy +Demolay +Demont +Demopolis +Demorest +Demostene +Demott +Dempsey +Dempster +Demund +Demyan +Den +Den Helder +Den Hill +Den Lee +Den Meade +Den Quarry +Dena +Denair +Denali +Denali Ridge +Denault +Denawen +Denbeigh +Denberry +Denbigh +Denbish +Denbridge +Denbrook +Denbury +Denby +Dencombe +Dene +Deneane +Deneb +Deneden +Deneholm +Denell +Denevi +Denewood +Denfield +Denford +Dengate +Denham +Denham Court +Denham Green +Denhart +Denhoff +Denholm +Denholme +Denhurst +Denicio +Denicola +Deniehy +Denim +Denin +Denio +Denis +Denis Winston +Denise +Denisen +Denison +Deniston +Denistone +Denke +Denker +Denkinger +Denley +Denlyn +Denman +Denmans +Denmar +Denmark +Denmark Hill +Denmark Hill Sunray +Denmead +Denmont +Denmore +Dennan +Denne +Denner +Denner Ranch +Denness +Dennett +Dennetts +Dennettsland +Dennil +Denning +Denninger +Dennington +Dennington Park +Dennis +Dennis F. Ryan +Dennis Loop +Dennis Martin +Dennis Point +Dennis Torricelli Sr +Dennison +Dennistoun +Denno +Denny +Dennys +Denoble +Denoncourt +Denora +Denos +Densefield +Densham +Denshaw +Denslow +Denslowe +Densmore +Denson +Denstone +Dent +Dental +Denton +Denton Court +Denton Hall Farm +Dents +Dentwood +Denver +Denverton +Denville +Denwood +Denyer +Denys +Denzil +Denziloe +Deodar +Deodara +Deoder +Deodor +Deonsire +Depan +Departed Sunset +Departures +Depaul +Depauli +Depauw +Depew +Depeyster +Depinedo +Depleach +Deposit +Depot +Depoto +Deppe +Depraitre +Depriest +Deptford +Deptford Church +Deptford Ferry +Deptford High +Depue +Deputy +Dequincey +Deramore +Deramus Farm +Deranti +Derbe +Derby +Derby Arms +Derby Farms +Derby Glen +Derby Ridge +Derbyshire +Derecho +Dereham +Derehams +Derek +Derekwood +Derfuss +Deri +Derick +Dering +Derinton +Derker +Derman +Dermody +Dermont +Dermott +Dern +Derna +Dernacourt +Dernancourt +Derne +Dernford +Dernier +Dero +Deroma +Derosier +Derowie +Derr +Derria +Derribong +Derrick +Derrick Adkins +Derrico +Derring +Derringer +Derriwong +Derrom +Derrough +Derry +Derrydown +Derryfield +Dersingham +Derussey +Derventer +Derwen +Derwent +Derwentwater +Derwin +Derwint +Derwood +Dery +Des Moines +Des Moines Memorial +Des Moulin +Des Peres +Des Plaines +Des Plaines River +DesPlaines +Desarc +Desborough +Desborough Park +Desbrosses +Descanso +Descendant +Deschenaux +Desconsado +Desdemona +Desen +Desenfans +Desepio +Deseret +Deserre +Desert +Desert Brook +Desert Flame +Desert Forest +Desert Isle +Desert Rose +Desert Willow +Desertwood +Desford +Deshler +Deshon +Design +Desimone +Desin +Desiree +Desisto +Deslie +Desmarais +Desmet +Desmond +Desmoulin +Desna +Desnoyer +Desota +Desoto +Desouter +Despard +Desplaines River +Despointes +Desrochers +Desrosiers +Desrys +Dessa +Destefano +Destiny +Desvignes +Detert +Detillens +Detjen +Detling +Detmer +Detmold +Detrick +Detroit +Dettingen +Dettmering +Detwiller +Deuce +Deusenberg +Devaney +Devas +Devcon +Deveau +Devecchi +Developers +Development +Devenill +Devenish +Devens +Dever +Deveraux +Devere +Devereaux +Deverell +Devereux +Devereux Manor +Deverill +Deveron +Devers +Deves +Deviar +Devika +Devil +Deville +Deville Estates +Devilliers +Devils +Devils Garden +Devils Reach +Devilwood +Devin +Devin Shafron +Devincent +Devine +Devir +Devita +Devitt +Devizes +Devlin +Devlins +Devoe +Devoes +Devoils +Devoke +Devon +Devon Hills +Devon Ridge +Devon Woods +Devonia +Devonian +Devonport +Devons +Devonshire +Devonshire Hill +Devonshire Park +Devonswood +Devonwood +Devore +Devotion +Devoto +Devries +Dew +Dew Grass +Dew Pond +Dew Wood +Dewald +Dewar +Dewart +Dewberry +Dewdney +Dewdrop +Dewe +Dewell +Dewerff +Dewes +Dewes Green +Dewey +Dewey Hill +Dewey Jones +Deweys Run +Dewhurst +Dewhurst Clough +Dewindt +Dewing +Dewitt +Dewlands +Dewmar +Dewolf +Dewolfe +Dewoody +Dewpoint +Dewrang +Dewsbury +Dewsbury Gate +Dewsnap +Dewson +Dewyk +Dexter +Dexters +Dey +Deyncour +Deyne +Deynes +Deyo +Dezenzo +Dharma Ridge +Di Antonio +Di Fiore +Di Giulio +Di Lusso +Di Maggio +Di Salvo +Diab +Diablo +Diablo Creek +Diablo Downs +Diablo Grande +Diablo Hills +Diablo Ranch +Diablo Shadow +Diablo View +Diablo Vista +Diadem +Diadon +Diagonal +Dial +Dial Green +Dial Park +Dialstone +Diamantina +Diamantini +Diamedes +Diameter +Diamond +Diamond Bay +Diamond Bridge +Diamond Creek +Diamond Head +Diamond Heights +Diamond Hill +Diamond K +Diamond Lake +Diamond Mill +Diamond Mountain +Diamond Oaks +Diamond Path +Diamond Peak +Diamond Point +Diamond Pointe +Diamond Ridge +Diamond Rock +Diamond Spring +Diamond Springs +Diamondback +Diamontina +Diana +Diana Maria +Diana Marie +Dianda +Diane +Dianella +Diann +Dianna +Dianne +Dianthus +Diantonio +Diary +Dias +Diauto +Diavila +Diaz +Diaz Ridge Fire +Dib +Diban +Dibble +Dibbs +Dibden +Dibdin +Dibella +Dibiase +Diblee +Dibling +Dibuono +Dicarlo +Dicastro +Dicconson +Diceland +Dicey +Dick +Dick Phelps +Dickel +Dickens +Dickens Bay +Dickenson +Dickensons +Dickerage +Dickerman +Dickerson +Dickerson Church +Dickerson School +Dickey +Dickey Lake +Dickie +Dickin +Dickins +Dickinson +Dickley +Dickman +Dicks +Dickson +Dickson Hill +Dickson Ranch +Dicksons Mill +Dicus Mill +Didio +Didmarton +Didriksen +Didrikson +Didsbury +Diecke +Dieckman +Diedrich +Diefenbach +Diego +Diehl +Diehl Farm +Diel +Diellen +Dieman +Dieninger +Diens +Dierauf +Diericx +Dierks +Dierssen +Diesel +Diessner +Dietrich +Dietz +Diffey +Diffley +Dig Dog +Digby +Digger Bend Ranch +Digger Pine +Diggers +Digges +Digges Canyon +Digging +Diggins +Diggon +Diggs +Diggs Park +Dight +Dighton +Digital +Digiulian +Diglands +Diglee +Digney +Dignon +Dignum +Digpal +Digren +Digswell +Digswell Park +Dijohn Court +Dijon +Dike +Dikeman +Dikes +Diknson Hollow +Dikran +Dilber Bay +Dilga +Diligent +Dilisio +Dilke +Dill +Dill Pointe +Dilla +Dillabough +Dillard +Dillaway +Dille +Diller +Dilleta +Dillman +Dillmont +Dillo +Dillon +Dillon Beach +Dillon Point +Dillonfield +Dillworth +Dillwynia +Dilly +Dillywood +Dilman +Dilorenzo +Dilston +Dilworth +Diman +Dimassa +Dimensions +Dimeo +Dimes +Dimick +Dimm +Dimmig +Dimmock +Dimmocks +Dimmydale +Dimock +Dimona +Dimond +Dimple +Dimsdale +Dina +Dina Beth +Dinah +Dinallo +Dinanno +Dinant Link +Dinapoli +Dind +Dine +Dineen +Dineff +Dinesh +Dinger +Dingle +Dingle Bank +Dingleden +Dingletown +Dingley +Dingley Dell +Dingwall +Dingwell +Diniz +Dinkel Spiel +Dinley +Dinmore +Dinneen +Dinny +Dino +Dinora +Dinorben +Dinosaur Point +Dinsdale +Dinsmore +Dinting +Dinton +Dinuba +Dinwiddie +Dinwoodie +Diogenes +Dion +Dione +Dionne +Dipierro +Diploma +Diplomat +Dippenhall +Dipper +Dipping Brook +Diprose +Dipsea +Dirado +Direct River +Dirker +Dirker Bank +Dirksen +Dirkshire +Dirkson +Dirleton +Dirt +Dirtham +Dirty +Disbrow +Disbrowe +Disc +Disch +Discovery +Discovery Bay +Discovery Creek +Discovery Farm +Discovery Village +Disepo +Dishforth +Dishman +Dishong +Disk +Disley +Dislingbury +Disney +Dispensary +Disposal +Disraeli +Diss +Distaff +Distel +Distillery +Distin +Distler +Distribution +Distributor +District +District Office +Ditch +Ditchburn +Ditches +Ditchfield +Ditchling +Ditchmore +Ditmar +Ditmars +Ditmas +Ditson +Dittisham +Dittman +Dittmer +Ditton +Ditton Court +Ditton Grange +Ditton Hill +Ditton Park +Dittos +Ditty +Ditzel Farm +Divac +Dive +Diven +Diversey +Diversified +Diverting Canal Levee +Dividence +Dividing +Dividing Creek +Divine +Diving Cliff +Divinity +Divisadero +Division +Divisional +Diviso +Divittorio +Divney +Divot +Dix +Dix Hills +Dixey +Dixfield +Dixie +Dixie Hill +Dixie Lou +Dixieanne +Dixmoor +Dixmude +Dixon +Dixon Landing +Dixon Park +Dixon Ridge Fire +Dixona +Dixons Hill +Dixter +Dixwell +Dixwoods +Dnieper +Dnr +Doages +Doak +Doaks +Doane +Dobb Brow +Dobbel +Dobbies +Dobbin +Dobbinets +Dobbins +Dobbs +Dobbs Ferry +Dobbs Weir +Dobcross New +Dobe +Dobell +Dobells +Dobern +Dobhill +Dobie +Doble +Doblin +Dobree +Dobrody Farm +Dobroyd +Dobson +Dobsons +Doby +Docena +Dochart Sound +Dock +Dock Approach +Dock Head +Dock Hill +Dock Hollow +Dock Pathway +Dockenfield +Dockerell +Dockers Tanner +Dockery +Docket +Dockett Eddy +Docklands +Dockley +Dockray +Docks Corner +Dockser +Dockside +Dockwra +Docs Ranch +Doctor +Doctor Belt +Doctor Bird +Doctor Bowen +Doctor David Cline +Doctor Fold +Doctor Hawkins +Doctor Paul Ware +Doctor Samuel Mudd +Doctor Walling +Doctors +Doctors Commons +Doctors Park +Docwra +Dod +Dodbrooke +Dodd +Doddinghurst +Doddington +Dodds +Doddsfield +Dodero +Dodford +Dodge +Dodge Hill +Dodge Park +Dodgewood +Dodgson +Dodhurst +Dodie +Dodon +Dodsley +Dodson +Dodsworth +Dodworth +Dody +Doe +Doe Crossing +Doe Hey +Doe Path +Doe Trail +Doeg +Doering +Doescher +Doesgate +Doeshill +Doeskin +Doewood +Dofena +Doffcocker +Doffin +Doffing +Dog +Dog Kennel +Dogan +Dogaway +Dogberry +Dogden +Dogford +Doggett +Doggetts +Doggetts Farm +Doggetts Wood +Doghurst +Dogleg +Dogue +Dogue Hill +Dogue Hollow +Dogue Run +Dogwood +Dogwood Farm +Dogwood Hills +Dogwood Park +Dogwood Tree +Doherty +Doherty Ridge +Dohertys +Dohr +Dohrman +Dohrmann +Doidge +Doig +Doire +Doker +Dolan +Dolben +Dolbrook +Dolby +Dolce +Dolcetto +Dole +Dolecetto +Doleful Pond +Dolerita +Doles +Dolesbury +Dolesden +Dolin +Dolittle +Dolland +Dollar +Dollar Fire +Dollar Mountain +Dollard +Dollarhide +Dolle +Dolley Madison +Dollinger +Dollis +Dollis Hill +Dollis Park +Dollis Valley +Dolloff +Dollond +Dolly +Dolly Cam +Dolma +Dolman +Dolomite +Dolomite Hills +Dolores +Dolorosa +Dolph +Dolphin +Dolphin Lake +Dolphine +Dolsie Grove +Dolton +Doma +Domaine +Doman +Dombey +Dome +Domenic +Domenica +Domer +Domestic +Domett +Dominga +Domingo +Dominic +Dominica +Dominican +Dominici +Dominick +Dominion +Dominion Crest +Dominion Mill +Dominion Ridge +Dominion Valley +Dominion Wood +Dominique +Domino +Dominoe +Dominque +Dominque Estates +Domitian +Domonic +Doms +Domsey +Don +Don Allen +Don Carlos +Don Carol +Don Juan +Don Julio +Don Kirk +Don Martin +Don Mills +Don Pedro +Don Ramon +Don Walden +Dona +Donachy Cove +Donahe +Donahue +Donal +Donald +Donald Allen +Donald Biggs +Donald Curtis +Donald Moor +Donalds Range +Donaldson +Donard +Donata +Donatello +Donato +Donazetti +Donbush +Doncaster +Doncastle +Doncrest +Donde +Dondi +Done +Donegal +Donegal Bay +Donegan +Donellan +Donelson +Donemowe +Donerail +Doneraile +Doneva +Dongan +Dongan Hills +Dongary +Dongola +Donig +Donington +Donisthorpe +Donkey +Donkin +Donlan +Donlea +Donleigh +Donley +Donlon +Donmar +Donmaur +Donmoor +Donmore +Donn +Donna +Donna Dean +Donna Lee +Donna Marie +Donnan +Donnas +Donne +Donnefield +Donnel +Donnell +Donnelly +Donnely +Donner +Donner Pass +Donnici +Donnings +Donnington +Donny +Donny Brook +Donny Hill +Donnybridge +Donnybrook +Donoghue +Donoho +Donohoe +Donohue +Donor +Donora +Donovan +Donovans Hill +Dons +Donsen +Donset +Donston +Donwood +Donwood Trails +Doods +Doods Park +Doody +Doogan +Doohat +Doolan +Dooley +Dooleys +Dooligah +Doolin +Dooling +Doolittle +Doomben +Doomsday +Doon +Doonan +Doone +Dooneen +Doonkuna +Doonmore +Doonside +Doorn +Doorstep +Dootson +Dopping Brook +Doppler +Dopwns +Dora +Dorac +Dorado +Dorahy +Doral +Doral Farms +Doralee +Doran +Doran Beach +Doran Park +Doranne +Dorans +Dorantes +Doray +Dorcar +Dorcas +Dorcey +Dorchester +Dorcich +Dorcis +Dorclyn +Dordans +Dorden +Dordrecht +Dore +Doree +Doreen +Dorel +Doremus +Dorena +Dorene +Dorenkemper +Dorer +Doretha +Doretta +Dorfman +Dorforth +Dori +Doria +Dorian +Doriann +Dorianna +Doric +Dorigo +Dorina +Dorincourt +Dorine +Doris +Dorisa +Dorison +Dorking +Dorlan +Dorland +Dorlcote +Dorlen +Dorling +Dorlon +Dorlton +Dorman +Dormans +Dormans High +Dormans Park +Dormas +Dormay +Dormer +Dormer’s +Dormer’s Wells +Dormidera +Dormitory +Dormity +Dormont +Dormy +Dornan +Dornberg +Dorncliff +Dorncliffe +Dornell +Dorney Wood +Dorneywood +Dornfell +Dorning +Dornoch +Dornton +Doron +Dorothea +Dorothy +Dorothy Farm +Dorothy Meeks +Dorothy Sayers +Dorothy Smith +Dorotockeys +Dorr +Dorrance +Dorrells +Dorrence +Dorrie +Dorrigo +Dorringo +Dorrington +Dorris +Dorrit +Dorritt +Dorsa +Dorsch +Dorset +Dorsetshire +Dorsett Hill +Dorsey +Dorsey Hall +Dorsey Run +Dorseymill +Dorson +Dorthel +Dorton +Dorval +Dorville +Dorwin +Dorwood +Dory +Dory Brooks +Dos Loma Vista +Dos Palos +Dos Polos +Dos Reis +Dos Rios +Doscher +Dosh +Dosoris +Doswell +Dot +Doten +Doter +Dothan +Dots +Dotson +Dotte +Dotterel +Dottielyn +Dottino +Dotty +Dotty Ann +Doty +Double Bogey +Double Dove +Double Eagle +Double Gate +Double Oak +Double R +Double Tree +Doubleday +Doublegate +Doubleland +Doublerock +Doubles +Doublet Hill +Doubletree +Doubling +Doucette +Doud +Doug +Dougal +Dougan +Dougherty +Doughty +Dougill +Douglane +Douglas +Douglas Fir +Douglas Haig +Douglas Legum +Douglas Park +Douglass +Douglyn +Douglynn +Dougmar +Doulton +Dounby +Douro +Douse +Dousman +Doust +Dove +Dove Bank +Dove Creek +Dove Dale +Dove Hill +Dove Tail +Dove Tree +Dovecoat +Dovecoate +Dovecot +Dovecote +Dovedale +Dovehouse +Doveleys +Dovelys +Dovenshire +Dover +Dover Farm +Dover Hill +Dovercliff +Dovercourt +Dovers Green +Doverton +Dovervelt +Doves +Doveston +Dovetail +Doveton +Doveville +Dovewood +Dovre +Dow +Dowanhill +Dowd +Dowdell +Dowding +Dowdle +Dowdy +Dowe +Dowel +Dowell +Dower +Dower House +Dower Village +Dowitcher +Dowkell +Dowlais +Dowland +Dowlands +Dowlans +Dowlas +Dowle +Dowlerville +Dowles +Dowlin +Dowling +Down +Down Barns +Down Court +Down Green +Down Patrick +Downbank +Downdale +Downen +Downer +Downers +Downers Grove Main +Downes +Downey +Downey Mill +Downfield +Downhall +Downham +Downham Old Bromley +Downhaul +Downhill +Downhills +Downhurst +Downie +Downieville +Downing +Downingwood +Downland +Downlands +Downley +Downmill +Downpatrick +Downs +Downs Bridge +Downs Court +Downs Hill +Downs Hill The +Downs View +Downsberry +Downsbridge +Downsell +Downsfield +Downshall +Downshaw +Downshire +Downside +Downside Bridge +Downside Common +Downsland +Downsview +Downswick +Downton +Dowrelio +Dowrey +Dowry +Dows +Dowse +Dowsett +Dowsetts +Dowsing +Dowson +Doxbury +Doxey +Doxsee +Doyce +Doyer +Doyers +Doyle +Doyle Cove +Doyle Park +Doyles +Doynton +Dozer +Dr Johnson +Dr Richard A Graham +Dr Samuel Mudd +Dracena +Dracic +Drackert +Draco +Dracut +Draeger +Draelon +Drage +Dragon +Dragon Slayers +Dragonette +Dragonfly +Dragonwyck +Dragoon +Dragor +Dragus +Drahos +Drain +Drainage +Drais +Drake +Drake Beach +Drake Park +Drake Smith Woods +Drakefell +Drakefield +Drakeford +Drakes +Drakes Bay +Drakes Beach +Drakes Cove +Drakes Landing +Drakes Summit +Drakes View +Drakewood +Dralle +Dranesville +Dransfield +Draper +Drapers +Drapkin +Drauden +Dravet +Dravus +Draw Bridge +Drawbridge +Drawfield +Drax +Dray Corner +Draycot +Draycott +Drayhorse +Drayton +Drea +Dreadnought +Dream +Dream House +Dreamwold +Dreas +Dreeme +Dreher +Dreier +Dremeday +Drendel +Drepanos +Dresden +Dresel +Dress +Dress Cricle +Dressage +Dresser +Dressington +Dressler +Dressmaker +Drever +Drew +Drew Lake +Drewery +Drewett +Drewlaine +Drewry +Drews +Drewsbury +Drewstead +Drexel +Drexelgate +Dreyer +Dreyfus +Dreyfuss +Dried Earth +Driffield +Drift +Drifter +Drifters +Driftway +Driftwood +Driggs +Drill Hall +Drillane +Drillfield +Drinkwater +Driprock +Driscol +Driscoll +Driscolls +Drisler +Drive +Driver +Drivers End +Driveway +Drivewood +Driving Park +Drogue +Drohan +Droitwich +Dromana +Dromey +Dromore +Drone +Dronfield +Drookdale +Droop +Drop +Drop Anchor +Drop Forge +Droughts +Drouin +Drove +Drover +Drovers +Drowsy +Droxford +Droyers Pointe +Droylsden +Dru +Drub +Druce +Drucilla +Drue +Druet +Druetzler +Druid +Druid Hill +Druitt +Drum +Drum Hill +Drum Point +Drumalbyn +Drumaldry +Drumard +Drumbalyn +Drumcliff +Drumelzia +Drumlea +Drumlin +Drumlin Hill +Drumm +Drummer +Drummond +Drummore +Drummoyne +Drumsheugh +Drungewick +Drury +Drusy +Dry +Dry Arch +Dry Barley +Dry Creek +Dry Creek Fork +Dry Ends +Dry Harbor +Dry Hill +Dry Hill Park +Dry Hollow +Dry Meadow +Dry Mill +Dry Ridge +Dry Run +Dry Well +Dry Yard +Dryad +Dryander +Dryberry +Dryburgh +Dryden +Drydock +Dryer +Dryfield +Dryhill +Dryhill Park +Dryhurst +Dryland +Drylands +Drymill Overlook +Drynan +Drysdale +Drystraw +Drywood +Du Bois +Du Cane +Du Cros +Du Page +Du Sault +DuBois +Dual Wide +Duane +Duar +Duardo +Duarte +Dub +Dubanski +Dubarry +Dubbo +Dubbs +Dube +Dubel +Duberstein +Dubert +Dubiel +Dublane +Dublin +Dublin Canyon +Dublin Green +Dublin Hill +Dublin Meadows +Duboce +Dubois +Dubon +Dubonet +Dubonnet +Dubons +Dubrow +Dubuque +Duby +Duca +Ducal +Duchaine +Duchamp +Ducharme +Duches +Duchesne +Duchess +Duchess of Kent +Duchin +Duchy +Ducie +Duck +Duck Cove +Duck Creek +Duck Hill +Duck Island +Duck Lake +Duck Mill +Duck Pass +Duck Plain +Duck Pond +Duck Trail +Duckend +Duckend Farm +Duckens +Ducket +Duckett +Duckettes +Duckettown +Ducketts +Duckeys Run +Duckhorn +Duckinfield +Duckling +Duckmallois +Duckmead +Duckmore +Ducks Cove +Duckshaw +Duckwood +Duckworth +Duclos +Ducros +Duda +Dudak +Dudbrook +Dudden Hill +Duddington +Duddon +Duddy +Dudley +Dudlington +Dudlow Green +Dudrow +Dudsbury +Dudset +Dudswell +Due +Duell +Duen +Duena +Duer +Duesenberg +Duet +Duff +Duffer +Dufferin +Duffet +Duffield +Duffin +Duffney +Duffus +Duffy +Duffys +Dufief +Dufief Mill +Dufour +Dufranc +Dufresne +Dufton +Dufuar +Dugald +Dugan +Dugard +Dugdale +Duggan +Duggans +Duggers +Dugie +Duglas Fir +Dugolly +Duguid +Dugway +Duhaime +Duhart +Duhig +Duiker +Dukane +Duke +Duke Humphrey +Duke of Edinburgh +Duke of Gloucester +Duke of Kent +Duke of Wellington +Duke of York +Dukefield +Dukes +Dukes Farm +Dukes Meadow +Dukes Wood +Dukesberry +Dukesbury +Dukeshill +Dukesthorpe +Dukic +Dukinfield +Dulaney +Dulany +Dulas +Dulce +Dulcey +Dulcie +Duley +Dulford +Dulgar +Dulin +Dulittle +Dulka +Dullai +Dulles +Dulles Access +Dulles Center +Dulles Corner +Dulles Technology +Dulles Toll +Dulles Town +Dully +Dulsie +Dulude +Duluth +Dulverton +Dulwich +Dulwich Plough +Dulwich Common +Dulwich Wood +Dumaine +Dumais +Dumaresq +Dumas +Dumb Womans +Dumbah +Dumbarton +Dumber +Dumble +Dumbourne +Dumbreck +Dumergue +Dumerle +Dumers +Dumfries +Dumhart +Dumke +Dummer +Dumney +Dumont +Dumoulin +Dump +Dumpford +Dumville +Dun Horse +Dun Lo +Dun Robbin +Dunalley +Dunamon +Dunand +Dunaway +Dunbar +Dunbar Oaks +Dunbarton +Dunberry +Dunbier +Dunblane +Dunboy +Dunboyne +Dunbridge +Dunbrin +Dunbrook +Dunbury +Duncan +Duncan Elder +Duncannon +Duncanson +Dunchurch +Duncklee +Duncomb +Duncombe +Duncraig +Duncrevie +Duncton High +Dundale +Dundalk +Dundar +Dundas +Dundee +Dunderave +Dundilla +Dundonald +Dune +Dune Forest +Duneba +Dunedin +Duneiden +Duneland +Dunellen +Dunelm +Dunera +Dunes +Dunes Meadows +Dunes View +Dunfey +Dunford +Dunfries +Dungannon +Dungarven +Dungates +Dungells +Dungeness +Dungeon +Dunglow +Dungrove Hill +Dunham +Dunham Trail +Dunhams +Dunhams Corner +Dunhaven +Dunheath +Dunheved +Dunhill +Dunholme +Dunibar Ridge +Dunios +Dunisch +Dunkeld +Dunkerhook +Dunkerley +Dunkerly +Dunkers Pond +Dunkery +Dunkin +Dunkirk +Dunklee +Dunkley +Dunks +Dunlace +Dunlake +Dunlap +Dunlap Ranch +Dunlay +Dunlea +Dunleavy +Dunleer +Dunleigh +Dunleigh Glen +Dunleith +Dunley +Dunlin +Dunloe +Dunloggin +Dunlop +Dunloring +Dunlow +Dunmail +Dunmar +Dunmaston +Dunmore +Dunmow +Dunmurry +Dunn +Dunn Meadow +Dunncombe +Dunne +Dunnel +Dunnell +Dunnerdale +Dunnigan +Dunning +Dunnings +Dunnington +Dunnisher +Dunniwood +Dunnock +Dunns +Dunns Hill +Dunny +Dunnymans +Dunollie +Dunoon +Dunran +Dunraven +Dunreath +Dunree +Dunrobbin +Dunrobin +Dunrossil +Dunroven Lakes +Dunrovin +Dunsany +Dunsby +Dunsdon +Dunsfold +Dunsfold Common +Dunsham +Dunshea +Dunshee +Dunshire +Dunsinane +Dunsley +Dunsmore +Dunsmuir +Dunsmure +Dunsop +Dunspring +Dunstable +Dunstaffenage +Dunstall +Dunstan +Dunstans +Dunstar +Dunstarn +Dunster +Dunsters +Dunsters Mill +Dunston +Dunsyre +Dunteachin +Dunteman +Dunton +Duntroon +Duntrune +Duntshill +Dunvegan +Dunwell +Dunwich +Dunwood +Dunwood Valley +Dunwoodie +Dunwoody +Dunworth +Dupage +Dupage Country Club +Dupahze +Dupas +Duperu +Dupont +Dupont Park +Duppas +Duppas Hill +Dupras +Dupre +Dupree +Dupuis +Duquesne +Dura +Dural +Duran +Durand +Durango +Durant +Durante +Durants +Durants Park +Durar +Durbach +Durban +Durbans +Durbar +Durbeck +Durbin +Durbyan +Durdans +Durell +Durer +Durfee +Durfold +Durford +Durgess +Durgin +Durham +Durham Ferry +Durham House +Durham Wharf +Durhamoc +Duri +Durie +Durigan +Durillo +Durkee +Durkin +Durkins +Durland +Durlaston +Durleston Park +Durley +Durling +Durlston +Durmont +Durndale +Durnell +Durness +Durnford +Durning +Durnsford +Duronia +Duroso +Durrants +Durrants Hill +Durras +Durrell +Durrington +Durrington Park +Durrow +Dursey +Dursley +Durso +Durst +Durward +Durweston +Dury +Duryea +Dusenberry +Dusharme +Dusk +Dusko +Dustan +Dustin +Dustin Young +Dustman +Duston +Dusty +Dusty Oak +Dusty Wheel +Dusty Willow +Dutch +Dutch Barn +Dutch Flat +Dutch Haven +Dutch Hill +Dutch Hollow +Dutch Lake +Dutch Mill +Dutch Ship +Dutch Slough +Dutch Tulip +Dutch Valley +Dutch Village +Dutchcap +Dutcher +Dutcher Creek +Dutchess +Dutchland +Dutchman +Dutchview +Dutoit +Dutra +Dutra Bend +Dutruc +Dutt +Dutton +Duttonwood +Duty +Duval +Duvall +Duvall Bridge +Duvall Parish +Duvan +Duvawn +Duvol +Duwane +Duwari +Dux +Dux Court +Duxburry +Duxbury +Duxford +Duxhurst +Duynecrest +Dvorak +Dwane +Dwarf +Dwars Kill +Dwas Line +Dwasline +Dwelley +Dwelly +Dwhinda +Dwight +Dwinell +Dwinnell +Dwyer +Dybeck +Dyckman +Dye +Dye House +Dyer +Dyers +Dyers Hall +Dyes +Dygal +Dyke +Dykers Farm +Dylan +Dylan Creek +Dylane +Dymchurch +Dymock +Dymoke +Dymond +Dympna +Dynamic +Dynasty +Dyne +Dyneley +Dynes +Dynes Hall +Dynevor +Dynham +Dyott +Dyre +Dyrham +Dysart +Dysdale +Dyson +Dysons +Dysonswood +Dystelegh +Dystrup +E A +E A Joseph +E Abingdon +E Acker +E Ackerman +E Adams +E Addison +E Alabama +E Albert +E Alden +E Alder +E Alexandria +E Algonquin +E Alhambra +E Allison +E Almira +E Almondbury +E Alpine +E Altgeld +E Ames +E Amsterdam +E Amy +E Anchor +E Anderson +E Annandale +E Appletree +E Arch +E Ardmore +E Ardyce +E Argyle +E Armitage +E Army Trail +E Arrowhead +E Artisan +E Ash +E Atlantic +E Atwater +E Augusta +E Austin +E Avon +E Ayres +E Aztec +E Babcock +E Baker +E Balbo +E Baldwin +E Ballpark +E Balsam +E Baltimore +E Baltusrol +E Bancroft +E Banks +E Barberry +E Barbour +E Barclay +E Barkley +E Baronet +E Barret +E Bartlett +E Base Line +E Bauer +E Bay +E Bay Front +E Bay View +E Beach +E Beam +E Beaumont +E Beaver +E Bedell +E Beech +E Beechcroft +E Beecher +E Belden +E Bell +E Belle +E Bellefonte +E Belleterre +E Bellingham +E Bellwood +E Belmont +E Bemes +E Bend +E Bentley +E Benton +E Berkley +E Berkshire +E Bernice +E Berry +E Best +E Bethpage +E Bevan +E Bexhill +E Big Horn +E Big Sand +E Bigelow +E Birch +E Birchwood +E Bissell +E Black Dog +E Blair +E Blancke +E Blodgett +E Bloomingdale +E Bluebonnet +E Bluestone +E Bode +E Booker +E Boston Post +E Boundary +E Bowen +E Braddock +E Bradford +E Bradley +E Brandis +E Brannick +E Brayton +E Brenner +E Brewster +E Briarcliff +E Briarwood +E Brighton +E Brightway +E Brinkerhoff +E Brinwood +E Brittany +E Broad +E Broadway +E Brook +E Brookdale +E Brooklawn +E Brooks +E Brookside +E Brookwood +E Brown +E Browning +E Brunswick +E Brush Hill +E Bryn Mawr +E Burke +E Burlington +E Burning Tree +E Burr +E Burr Oak +E Burville +E Bush Lake +E Business Center +E Busse +E Butterfield +E Byway +E C +E Cabot +E Calendar +E California +E Cambridge +E Camden +E Camp McDonald +E Campbell +E Candlenut +E Canterbury +E Capitol +E Carib +E Carl +E Carmans +E Carolina +E Carondelet +E Carpenter +E Carriage +E Carriageway +E Carver +E Cascade +E Case +E Cass +E Castlewood +E Catalpa +E Cayuga +E Cedar +E Cedar Lake +E Centennial +E Center +E Central +E Centre +E Century +E Chalk Point +E Chapin +E Chapman +E Charles +E Charlotte +E Cherry +E Cheryl +E Chester +E Chestnut +E Chevy Chase +E Chicago +E Chinkapin Oak +E Chippendale +E Cholo +E Church +E Circle +E Circle Hill +E Circuit +E Clarendon +E Clark +E Clear +E Clearwater +E Cleburne +E Cleveland +E Cliff +E Clifford +E Clifton +E Clinton +E Coach +E Coady +E Coddington +E Cold Mill +E Cole +E Coleman +E Colfax +E College +E Collins +E Colonial +E Colorado +E Columbia +E Columbine +E Columbus +E Comfort +E Commercial +E Como Lake +E Comstock +E Congress +E Connecticut +E Constance +E Constitution +E Conway +E Cook +E Cooper +E Coral +E Corktree +E Cortland +E Cortwood +E Cosner +E Cossitt +E Cottage +E Country +E Country Club +E Countryside +E County Line +E Course +E Court +E Courtland +E Crabtree +E Craig +E Crainmont +E Crescent +E Crest +E Crestview +E Crestwood +E Crusader +E Crystal +E Crystal Lake +E Cuba +E Cullerton +E Cumberland +E Cunningham +E Curtice +E Curtis +E Custer +E Custis +E Cuttriss +E Dallas +E Danbury +E Daniels +E Danne +E Danube +E Darryl +E Dartmoor +E Davis +E Dean +E Decatur +E Deer Park +E Deerpath +E Delgado +E Delos +E Demarest +E Demont +E Denberry +E Dennis +E Des Moines +E Devon +E Devonia +E Dewey +E Diamond Lake +E Diane +E Dickens +E Diehl +E Diversey +E Division +E Dolton +E Donegal Bay +E Dosoris +E Dover +E Dudley +E Duncan +E Dundee +E Dundee Quarter +E Dunmore +E Dunslow +E Eagle Lake +E East +E Eastman +E Edgemont +E Edgewater +E Edsall +E Edward +E Edwards +E Elder +E Elderberry +E Elgin +E Elizabeth +E Elizbeth +E Elk Grove +E Ellis +E Elm +E Elmwood +E Emerson +E Emmerson +E Erie +E Euclid +E Eureka +E Evans +E Everett +E Evergreen +E Exchange +E Fabish +E Fairfax +E Fairfield +E Fairmont +E Fairview +E Falcon +E Farmdale +E Farmgate +E Fenimore +E Fernwood +E Figurea +E Fillmore +E Firehouse +E Fish Lake +E Flake +E Flanders +E Fleet +E Flentie +E Florida +E Foch +E Folsom +E Foreman +E Forest +E Fort Lee +E Forthill +E Fortlee +E Fox +E Fox Hill +E Frances +E Francis +E Franciscan +E Frank +E Franklin +E Frederick +E Fremont +E French Lake +E Friends +E Front +E Frontage +E Frontier +E Fullerton +E Fulton +E Furnace Branch +E Gaisor +E Galena +E Garden +E Gardner +E Garfield +E Garrett +E Gartner +E Garwood +E Gate +E Gates +E Gateway +E Geneva +E George +E Georgia +E Geranium +E Gibbons +E Gibbs +E Gilbert +E Gilfillan +E Glade +E Gladys +E Glebe +E Glen +E Glen Park +E Glendale +E Glenlake +E Goebel +E Goethe +E Golden Lake +E Goldsborough +E Golf +E Golfhurst +E Goodenow +E Goodman +E Goodrich +E Gore +E Gouverneur +E Graham +E Granada +E Grand +E Grand Lake +E Granite +E Grant +E Grantley +E Granville +E Grassy Sprain +E Green +E Green Meadow +E Greenbriar +E Greenbrook +E Greenfield +E Greenleaf +E Greenway +E Greenwich +E Greenwood +E Gregory +E Grenada +E Greystone +E Grissom +E Grove +E Gun Hill +E Hackberry +E Halbert +E Halden +E Half Hollow +E Halsey +E Ham Lake +E Hamburg +E Hamilton +E Hamline Service +E Hammond +E Hampton +E Hansel +E Hansen +E Harbor +E Harding +E Hardy +E Harehills +E Harkness +E Harper +E Harriet +E Harris +E Harrison +E Hartford +E Hartsdale +E Hartshorn +E Harvest +E Harwood +E Hattendorf +E Haven +E Hawley +E Hawthorne +E Hayes +E Hazel +E Hazelwood +E Heatherlea +E Hegel +E Helen +E Hendricks +E Hennepin +E Henry +E Heron +E Hickey +E Hickory +E Higbie +E Higgins +E High +E High Point +E Highland +E Hill +E Hillcrest +E Hillgrove +E Hillside +E Hinsdale +E Hintz +E Hitchcock +E Hobart Gap +E Hoffman +E Hollywood +E Holm +E Holsman +E Home +E Homestead +E Hooker +E Hopkins +E Horseshoe +E Howard +E Howell +E Hoyt +E Hubbard +E Hudson +E Hunter +E Hunter Ridge +E Hunter Valley +E Hurley +E Huron +E Huxley +E Hyacinth +E Hyde Park +E Hydraulic +E Ida +E Idaho +E Illinois +E Indian Spring +E Indian Trl +E Indiana +E Inman +E Inwood +E Iowa +E Ironstone +E Iroquois +E Irving +E Irving Park +E Isabel +E Isabella +E Ivy +E J Conroy +E Jack +E Jackson +E Jamaica +E Janata +E Jane +E Jefferson +E Jeffery +E Jeffrey +E Jenks +E Jersey +E Jessamine +E Joan +E Joe Orr +E Joffre +E John +E Johnson +E Joliet +E Joseph +E Joyce +E Judith Ann +E Jules +E Julius +E June +E Juniper +E Kammes +E Kansas +E Kathleen +E Kendall +E Kenilworth +E Kennedy +E Kenny +E Kensington +E Kenwood +E Kerry Brook +E Kilmer +E King +E Kinney +E Kinzie +E Kissimee +E Knob Hill +E Knollwood +E Kohlman +E Krage +E Kupsch +E Lacrosse +E Lafayette +E Lafayette Frontage +E Lahon +E Lake +E Lake Cook +E Lake Harriet +E Lake Louise +E Lake Netta +E Lake Rebecca +E Lake Shore +E Lakeland +E Lakeshore +E Lakeside +E Laraway +E Larkspur +E Larry Ho +E Laurel +E Lawn +E Lawndale +E Lawrence +E Lawson +E Le Moyne +E Lee +E Leeds Infirmary +E Lemoyne +E Lenox +E Leon +E Leonard +E Leone +E Lester +E Lexington +E Liberty +E Light +E Lillian +E Lincoln +E Linden +E Lindsley +E Linwood +E Locust +E Logan +E Lombard +E Long Lake +E Lorraine +E Lottie +E Louella +E Louis +E Louise +E Lowden +E Lower Pine Lake +E Lucas +E Luray +E Luther +E Lynda +E Lyndale +E Lynden +E Lynfield +E Lynnhurst +E Lynnwood +E Lyon Farm +E Lyons +E Mac Arthur +E Macarthur +E Macon +E Madison +E Magnolia +E Mahogany +E Main +E Major +E Malibou +E Mallard +E Mallory +E Manchester +E Manor +E Maple +E Margaret +E Marie +E Marine +E Marion +E Market +E Marlboro +E Marquette +E Marshall +E Marsteller +E Martin +E Mary +E Maryland +E Mason +E Masonic View +E Maude +E Maujer +E Maxon +E Maya +E Mayfair +E Mc Eldowney +E Mc Kenny +E Mc Lean +E McClellan +E McConnell +E McLane +E Meadow +E Meadow Lake +E Meadowland +E Mechanic +E Medicine Lake +E Medill +E Melrose +E Memorial +E Memory +E Mercer +E Merchants +E Meredith +E Merle +E Merrick +E Merritt +E Michael Manor +E Michigan +E Middle +E Middlesex +E Milburn +E Mill +E Mill Valley +E Miller +E Millers +E Millpage +E Millwood +E Milton +E Mineola +E Miner +E Mineral Pond +E Minerva +E Minnehaha +E Minooka +E Mississippi +E Mitchell +E Moehling +E Mohawk +E Monee +E Monitor +E Monroe +E Montana +E Monterey +E Montgomery +E Montrose +E Moonachie +E Moore Lake +E Moreland +E Morris +E Morse +E Morton +E Mound +E Mount +E Mount Harmony +E Mount Ida +E Mount Pleasant +E Mulberry +E Mundhank +E Munz +E Myrick +E Myrtle +E Nalley +E Nap +E Naperville +E Nassau +E National +E Navajo +E Nebraska +E Neck +E Nelson +E Nerge +E Nevada +E Neville +E New +E New York +E Newbold +E Newell +E Niagara +E Nicholai +E Nichols +E Nicollet +E Nolcrest +E Norfolk +E Norlander +E Norman +E Normandy +E North +E North Broadway +E North End +E North Frontage +E North Water +E Northfield +E Norwood +E Notre Dame +E Oak +E Oak Glenn +E Oak Hill +E Oakdale +E Oakdene +E Oakridge +E Oaks +E Oaksbury +E Oakton +E Oakview +E Oakwood +E Oasis Service +E Ocean +E Oceanside +E Offner +E Ogden +E Ohio +E Old Bridge +E Old Country +E Old Elm +E Old Hicks +E Old Mill +E Old Pine Bluff +E Old Post +E Old Ridge +E Old Shakopee +E Old White Plains +E Old Willow +E Olde Virginia +E Olive +E Oltendorf +E Oneida +E Onwentsia +E Orange +E Orchard +E Ordnance +E Oriole +E Osage +E Oxford +E Pacific +E Paddock +E Page +E Palatine +E Palisade +E Palisades +E Palmer +E Parallel +E Park +E Parkhill +E Parkside +E Parkview +E Pasadena +E Passaic +E Patapsco +E Patten +E Patton +E Payne +E Peachtree +E Pearl +E Pearson +E Peddie +E Peiffer +E Penn +E Pennington +E Pennsylvania +E Penny +E Pennywood +E Perkal +E Perkiomen +E Pershing +E Pettit +E Phillip +E Phillips +E Pierce +E Pierrepont +E Pine +E Pine Bluff +E Plainfield +E Plate +E Pleasant +E Pleasant Lake +E Pleasantview +E Plum +E Plum Tree +E Plymouth +E Point +E Pomeroy +E Pontiac +E Pool +E Poplar +E Port +E Porter +E Portland +E Ports O Call +E Ports of Call +E Post +E Potomac +E Potter +E Prairie +E Prairie Brook +E Pratt +E Price +E Prince +E Priscilla +E Private +E Progress +E Prospect +E Pt Douglas +E Pulaski +E Quackenbush +E Quincy +E Railroad +E Railway +E Rana +E Ranch +E Rand +E Randolph +E Randville +E Raven +E Raymond +E Reader +E Reading +E Reaney +E Red Coat +E Red Oak +E Redwood +E Reed +E Regal +E Reichert +E Research Center +E Reynolds +E Richard +E Richards +E Rickard +E Ridge +E Ridgefield +E Ridgewood +E Rietveld +E River +E Riverside +E Riviera +E Roberta +E Robie +E Rock Ridge +E Rockaway +E Rockland +E Rockwell +E Roland +E Rondeau Lake +E Roosevelt +E Rose +E Roselle +E Rosemont +E Rosita +E Ross +E Royal Ridge +E Ruby +E Runyon +E Russell +E Saddle Back +E Saddle River +E Saint Andrews +E Saint Charles +E Saint Georges +E Salem +E Saltaire +E Sanborn +E Sanctuary +E Sanders +E Sandpiper +E Santa Barbara +E Savannah +E Sayles +E Schaumburg +E Schick +E Schiller +E School +E Schoolhouse +E Schubert +E Scott +E Scranton +E Seacrest +E Seagrove +E Seaman +E Sedwick +E Seminary +E Service +E Severn Ridge +E Shadow Lake +E Shady Oaks +E Shag Bark +E Shannon +E Shaw +E Shawnee +E Sheffield +E Shelby +E Shelley +E Sheridan +E Sherman +E Sherrill +E Sherwood +E Shirley +E Shore +E Short +E Shoshone +E Side +E Sidney +E Sims +E Sioux Vista +E Sitka +E Skillman +E Skokie +E Slade +E Slayton +E Slope +E Smith +E Soffel +E Somerset +E Somonauk +E South +E South Branch +E South Broadway +E South Frontage +E Spencer +E Spring +E Spring Valley +E Springbrook +E Springhill +E Spruce +E Suburban +E Suffield +E Summer +E Summit +E Sumner +E Sunnyside +E Sunnyslope +E Sunset +E Superior +E Surf +E Surrey +E Susan +E Swain +E Swan +E Sycamore +E Sydney +E Sylvan +E Taft +E Talbot +E Tall Oaks +E Tano +E Tantallon +E Tappen +E Taylor +E Teal +E Techny +E Terra Cotta +E Terrace +E Terresa +E Terry +E Thayer +E Thomas +E Thompson +E Thorman +E Thorn +E Thorndale +E Timbercreek +E Tower +E Townline +E Traube +E Tremont +E Tryon +E Turner +E Turtle +E Twin +E Tyler +E Udall +E Uhler +E Union +E University +E Upland +E Utica +E Valencia +E Vallette +E Valley +E Valleyview +E Van Buren +E Van Emmon +E Van Ness +E Vargo +E Vera +E Vermillion +E Vermont +E Veterans +E Victoria +E View +E Viking +E Villa +E Village +E Virginia +E Voss +E Wakefield +E Waldron +E Wallace +E Wallum Lake +E Walnut +E Warburton +E Ward +E Warren +E Warwick +E Washington +E Water +E Waterside +E Waverly +E Weaver +E Webster +E Wells +E Wellwood +E Wend +E Wesley +E West +E West Shady Side +E Westleigh +E Westminster +E Wheelock +E Whispering Oaks +E White Water +E Wildwood +E Wilhelm +E William +E William Tell +E Williams +E Williston +E Willow +E Wilson +E Winant +E Winchester +E Windsor +E Wing +E Winifred +E Winthrop +E Wisconsin +E Wise +E Witchie +E Witchwood +E Wood +E Wood Duck +E Woodbine +E Woodcrest +E Woodland +E Woodlawn +E Woodman +E Woodridge +E Woodrow +E Woods +E Woodside +E Woodstock +E Worth +E Wrightwood +E Wyngate +E Wynstone +E York +E Yuma +E Zarley +E Zinnia +E Zoller +E Zoranne +E del Ray +E la Porte +E. Chicago +E. Market +E.Sylvestris +Eacham +Eachann +Eade +Eades +Eadington +Eads +Eafield +Eagan +Eagan Industrial +Eagan Oaks +Eagan Woods +Eagandale +Eagar +Eager +Eagle +Eagle Bay +Eagle Bluff +Eagle Brook +Eagle Chase +Eagle Creek +Eagle Crest +Eagle Gap +Eagle Harbor +Eagle Head +Eagle Hill +Eagle Knolls +Eagle Lake +Eagle Landing +Eagle N +Eagle Nest +Eagle Park +Eagle Peak +Eagle Point +Eagle Ridge +Eagle Rim +Eagle Rock +Eagle Rock Hill +Eagle Springs +Eagle Tavern +Eagle Trace +Eagle Tree +Eagle Vale +Eagle Valley +Eagle View +Eagle Vista +Eagle Wharf +Eaglecroft +Eaglehawk +Eaglehead +Eaglehurst +Eaglepoint +Eagleridge +Eagles +Eagles Mere +Eagles Nest +Eagles Notch +Eagles Roost +Eagles Run +Eagles View +Eaglesfield +Eagleshore +Eagleton +Eagleview +Eaglewing +Eaglewood +Eagley +Eagrett +Eaker +Eakins +Ealand +Ealing +Ealing on Duxbury +Eames +Eamont +Eardley +Earhart +Earhart Dam +Earl +Earl Howe +Earl Iliff +Earl Mountbatten +Earl Sullivan +Earl of Chester +Earlander +Earldom +Earle +Earle Brown +Earle Ovington +Earle Shores +Earlehurst +Earleigh Heights +Earleigh Woods +Earlena +Earlene +Earles +Earley +Earley Hill +Earlham +Earls +Earls Colne +Earls Hall +Earlsbrook +Earlsfield +Earlsford +Earlsgate +Earlsmead +Earlsmere +Earlsthorpe +Earlstoke +Earlston +Earlswood +Earlsworth +Earlwood +Earlwoode +Early +Early Autumn +Early Glow +Early Morning +Early Oaks +Early Times +Earlybird +Earlynn +Earnell +Earnest +Earnestine +Earnscliff +Earnshaw +Earsby +Earth +Earth Flower +Easby +Eascote +Easebourne +Easecrest +Easedale +Easel +Easement +Eashing +Easie +Easington +Easley +Eason +East +East A +East Abbey +East Ac +East Access +East Acton +East Acton Brunel +East Ad +East Adams +East Agua Caliente +East Ahwanee +East Airway +East Alameda +East Albion +East Aldea +East Alden +East Alder +East Algonquin +East Allendale +East Allison +East Alma +East Aloha +East Altarinda +East Amhurst +East Anderson +East Angela +East Angus +East Anza +East Arbor +East Arbour +East Arques +East Ashland +East Ashley +East Atherton +East Atlantic +East Augusta +East Austin Creek +East B +East Bacon +East Bagwell +East Baker +East Balbo +East Baldwin +East Banbury +East Bare Hill +East Barnet +East Bath +East Battery +East Battles +East Bay +East Bayshore +East Beach +East Beachwood +East Beamer +East Beech +East Beeches +East Bel Mar +East Belcher +East Bell +East Bellevue +East Bend +East Benjamin Holt +East Berkeley +East Berkley +East Berna +East Bianchi +East Bidwell +East Bird +East Black Oak +East Blaine +East Blair +East Blithedale +East Bolton +East Bond +East Bonness +East Border +East Boscobel +East Boston +East Boundary +East Boxford +East Branch +East Bridge +East Bridgewater +East Broadway +East Brockman +East Brokaw +East Bronte +East Brook +East Brookline +East Brookwood +East Brunswick +East Buchanan +East Bulfinch +East Burnham +East Burnside +East Busk +East C +East Calaveras +East Calhoun +East California +East Campbell +East Campus +East Canton +East Canyon +East Canyon View +East Capitol +East Cardinal +East Caribbean +East Carlo +East Carol +East Carriage +East Carroll +East Cascade +East Castro Valley +East Cavendish +East Cavour +East Cemetery +East Center +East Central +East Centry +East Channel +East Charles +East Charleston +East Charlotte +East Cherry +East Chestnut +East Chevin +East Chiles +East Church +East Cintura +East Clarendon +East Clay +East Claydon +East Cliff +East Coast +East Colfax +East College +East Collins +East Colorado +East Columbia +East Comfort +East Commercial +East Common +East Como +East Concord +East Congress Plaza +East Conley +East Cornell +East Corning +East Cotati +East Country Club +East Court +East Cove +East Covell +East Coyote Creek +East Creek +East Crescent +East Crockett +East Crooked Hill +East Cross +East Curtis +East Cypress +East D +East Dalton +East Dam +East Dana +East Danbury +East Dartmouth +East Davis +East Dedham +East Dellridge +East Dene +East Denver +East Deodara +East Devon +East Diamond +East Diane +East Division +East Downs +East Duane +East Duck Lees +East Dulwich +East Dundee +East Dunne +East Dunstable +East Durant +East E +East Eagle +East Eaglewood +East East +East Eastman +East Eastview +East Echo Lake +East Edgar +East Edith +East Edmundson +East Edwards +East Eight Mile +East Eighth +East Elbrook +East Elm +East Elmwood +East Emerson +East Empire +East End +East Englewood +East Estates +East Euclid +East Eugene +East Evans +East Evelyn +East Evergreen +East F +East Fabyan +East Fairfax +East Fairfield +East Fairview +East Falcon +East Fawn +East Ferdinand +East Ferndale +East Ferry +East Field +East Field Service +East Fifth +East Fir +East First +East Flexford +East Foothill +East Foppiano +East Fordham +East Foreman +East Forest Lake +East Forks +East Fosket +East Foster +East Foster Island +East Fourth +East Foxboro +East Francis +East Franklin +East Frederick +East Fremont +East French Camp +East Frisbee +East Front +East Frontage +East Fulton +East Furman +East G +East Galena +East Galer +East Galin +East Garfield +East Gary +East Gate +East Geary +East Geneva +East George +East Gibson +East Gilbert +East Gish +East Glen +East Glencoe +East Gnarled Oak +East Golf +East Gordon +East Gowe +East Grace +East Grand +East Grange +East Grant Line +East Greystone +East Grinstead +East Grove +East Gude +East Guernsey +East Gum +East Gun Hill +East H +East Hacienda +East Haight +East Hall +East Hamilton +East Hamlin +East Hammer +East Hampton +East Handel +East Hanningfield +East Harding +East Harney +East Harper +East Harris +East Harrison +East Harting +East Harvest +East Harwood +East Haven +East Hawthorne +East Hayden Lake +East Haydon +East Hazelton +East Heath +East Hedding +East Helen +East Hemlock +East Hendy +East Hennepin +East Henning +East Higgins +East High +East Highland +East Hildreth +East Hill +East Hill Alma +East Hillcrest +East Hills +East Hillsdale +East Hilton +East Hirsch +East Hoe +East Hogan +East Holly +East Hollywood +East Home +East Homestead +East Hopkins +East Horner +East Hospital +East Houston +East Howard +East Howe +East Howell +East Hoyle +East Humboldt +East Hurd +East Hurlbut +East Huron +East I +East Iberia +East Ike Crow +East Illinois +East India Dock +East Ingram +East Interlaken +East Interurban +East Iowa +East Iris +East Irving Park +East J +East Jack London +East Jack Tone +East Jackson +East Jahant +East James +East Jamestown +East Java +East Jefferson +East John +East Jonathan +East Jonquil +East Juana +East Julian +East Juniper +East K +East Kavanagh +East Kelly +East Kendall +East Kenilworth +East Kennedy +East Kensington +East Kent +East Kentucky +East Kenyon +East Kettleman +East Keystone +East Kimber +East Kimberly +East King +East Kingfisher +East Kingsbridge +East Kingsley +East Kingston +East Kirke +East Kirschenman +East Kitson +East Knoll +East Krell +East Lafayette +East Laguna +East Lake +East Lake Kayak +East Lake Shore +East Lake Washington +East Lakeshore +East Lancashire +East Lancaster +East Lanram +East Larkspur +East Las Palmas +East Latimer +East Laurel +East Laurel Creek +East Laurin +East Lawn +East Lawrence +East Le Moyne +East Lee +East Leeds Link +East Leigh +East Leland +East Lenox +East Levee +East Lewelling +East Lewis +East Lincoln +East Linden Church +East Linden Orchard +East Lindsay +East Linne +East Live Oak +East Lockeford +East Locust +East Lodge +East Lodi +East Lomond +East Long Barn +East Longfellow +East Longview +East Lonnquist +East Loomis +East Loop +East Lorenzen +East Loretta +East Los Felis +East Lost Lake +East Lothrop +East Louisa +East Louise +East Lousia +East Lowe +East Lowell +East Lubell +East Lynch +East Lynn +East M +East Macarthur +East Madill +East Madison +East Magnolia +East Mahwah +East Main +East Mall +East Mallory +East Manor +East Manzanita +East Maple +East March +East Marion +East Mariposa +East Market +East Marsh +East Marshall +East Mascalls +East Mathews +East Maude +East Mayes +East Mayfair +East Mc Gilvra +East Mc Graw +East Mc Kenzie +East Mc Mullin +East McAllen +East McGlincey +East Meadow +East Mearn +East Meeker +East Mehrten +East Melbourne +East Mendocino +East Meon +East Mercer +East Mercer Highland +East Merrimack +East Messick +East Michigan +East Middle +East Middlefield +East Midland +East Milgeo +East Militia Heights +East Mill +East Millbrae +East Miller +East Millwood +East Milton +East Miner +East Mission +East Mistletoe +East Mockingbird +East Moltke +East Moncure +East Monroe +East Montara +East Monte Vista +East Monterey +East Moor +East Morada +East Morris +East Morrison +East Morse +East Mount +East Mount Diablo +East Mozart +East Munford +East Munro +East Myrtle +East N +East Napa +East Nash +East Natoma +East Nauraushaun +East Nerge +East New York +East Newton +East Nichols +East Nile +East Nilsson +East Ninth +East Noble +East North +East Novak +East Noyes +East Nulty +East Nursery +East O +East Oak +East Oaksbury +East Oakton +East Oakview +East Oakwood +East Ohio +East Old Barn +East Old Greenville +East Olive +East Olivera +East Ontario +East Orchard +East Ordnance +East Ordsall +East Orford +East Orwood +East Otis +East Pacific +East Palatine +East Palm +East Park +East Park Farm +East Park View +East Parkdale +East Passaic +East Patrol +East Patterson +East Peach +East Pearl +East Peltier +East Penn +East Pennsylvania +East Perimeter +East Perrin +East Pescadero +East Phillips +East Pickwick +East Pike +East Pine +East Plain +East Plateau +East Plumeria +East Point +East Ponce de Leon +East Pond +East Poplar +East Port +East Portola +East Poultry +East Power +East Prairie +East Princeton +East Prospect +East Prouty +East Purchase +East Putnam +East Quarry +East Quashnick +East Quinobequin +East Railroad +East Raleigh +East Ramapo +East Ranch +East Rancho Arroyo +East Rand +East Rand Grove +East Randolph +East Realty +East Redwood +East Reed +East Regal +East Reitze +East Remington +East Republican +East Rianda +East Richardson +East Richmond +East Ridge +East Ridgecrest +East Riding +East Rincon +East Ringwood +East River +East Riverside +East Riverview +East Roanoke +East Robert +East Robertson +East Robinhood +East Robles +East Rockwell +East Rollins +East Ronald +East Roosevelt +East Rose +East Rosemary +East Roy +East Ruby +East Ruby Hill +East Rutherford +East Ryer +East Saddle River +East Saint Charles +East Saint James +East Saint John +East Salt +East San Antonio +East San Bruno +East San Carlos +East San Fernando +East San Martin +East San Salvador +East Sandalwood +East Sandralee +East Santa Clara +East Santa Fe +East Santa Inez +East Santos +East Sargent +East Scenic +East School +East Schoolhouse +East Schuyler +East Scotts +East Seaview +East Second +East Section +East Seegers +East Selby +East Seneca +East Serenity +East Service +East Seventh +East Shady +East Shalford +East Shea +East Sheen +East Shelby +East Sheppard +East Sherman +East Shiloh +East Shore +East Shoreview +East Shorewood +East Side +East Sidney +East Sierra +East Sigwalt +East Sikorsky +East Sixth +East Slope +East Smith +East Soda Rock +East Sola +East Sonoma +East Sonora +East South +East South Water +East Southgate +East Southland +East Spain +East Spiess +East Spring +East Spruce +East Squantum +East Sst +East Sunnyoaks +East Sunnyslope +East Sunset +East Superior +East Sutter +East Sutton +East Swain +East Sylvester +East T +East Tabor +East Tacoma +East Taron +East Tasman +East Taylor +East Tazewell +East Tehama +East Temperance +East Temple +East Tennessee +East Tennys +East Tenter +East Terrace +East Thacker +East Third +East Thomas +East Thomas Grade +East Thomson +East Thorndale +East Thornwood +East Thurman +East Thurrock +East Tiffany +East Tilbury +East Titus +East Tobacco +East Todd +East Tokay +East Tokay Colony +East Touhy +East Town Line +East Towne +East Travis +East Tregallas +East Tremont +East Trident +East Trimble +East Tripps Run +East Underwood +East Union +East University +East Utah +East Vail +East Valley +East Van Buren +East Vanston +East Verdon +East Veritas +East Vernon +East Victor +East Victoria +East View +East Vine +East Vineland +East Vineyard +East Virginia +East Vista +East Vivian +East Wacker +East Walnut +East Ward +East Warren +East Washington +East Water +East Watmaugh +East Wayne +East Weald +East Weddell +East West +East Wetmore +East Whipley +East White Oak +East Whitehouse +East Whittier +East Wilchard +East Wildcat Canyon +East William +East Williamsburg +East Williston +East Willow +East Wilmette +East Wilson +East Wiltse +East Winery +East Wood +East Woodbridge +East Woodbury +East Woodcliffe +East Woodfield +East Woods +East Woodson +East Woodward +East Worcester +East Worth +East Wyandotte +East Wyman +East Wyoming +East Yokuts +East Yolo Levee +East Yorkshire +East Younger +East Zayante +East el Campo +East el Macero +East la Chiquita +East la Mesa +EastField +Eastbank +Eastbluff +Eastbourne +Eastbournia +Eastbrook +Eastbrooke +Eastburn +Eastbury +Eastcastle +Eastchester +Eastchester – Dyre +Eastchurch +Eastcliff +Eastcliffe +Eastcombe +Eastcote +Eastcourt +Eastcrest +Eastcroft +Eastdale +Eastdean +Eastdene +Easteds +Eastend +Eastentry +Easter +Easterby +Easterford +Easterley +Easterly +Eastern +Eastern Arterial +Eastern Creek +Eastern Crest +Eastern Heights +Eastern Marketplace +Eastern Perimeter +Eastern Point +Eastertown +Eastfield +Eastfields +Eastford +Eastgate +Eastgate View +Eastgrove +Eastham +Easthampstead +Easthaven +Eastheath +Easthill +Eastholme +Easthorpe +Eastin +Eastlake +Eastland +Eastlands +Eastlawn +Eastlea +Eastleigh +Eastlewood +Eastlick +Eastline +Eastling +Eastman +Eastman Lake +Eastmans +Eastmont +Eastmoor +Eastmoreland +Eastmount +Eastney +Eastnor +Easton +Easton North +Eastover +Eastpine +Eastport +Eastridge +Eastrop +Eastry +Eastshire +Eastshore +Eastside +Eastus +Eastview +Eastview Farm +Eastville +Eastward +Eastway +Eastwick +Eastwick Hall +Eastwick Park +Eastwind +Eastwood +Eastwood Old +Eastwood Park +Eastwood Village +Eastwoodbury +Eastwoods +Eastworth +Easum +Easy +Eather +Eatington +Eatkart +Eaton +Eaton Bray +Eaton Green +Eaton Landing +Eaton Park +Eaton Valley +Eatonia +Eatons +Eatons Neck +Eaves +Eaves Knoll +Eba +Ebano +Ebb +Ebb Tide +Ebberns +Ebberstone +Ebbertaft +Ebbesen +Ebbett +Ebbetts +Ebbetts Pass +Ebbisham +Ebbitts +Ebbsfleet +Ebbtide +Ebden +Ebe +Eben +Ebener +Ebenezer +Ebensburg +Ebenzer +Eberhard +Eberhardt +Eberhart +Eberlin +Eberly +Ebersbach +Ebert +Eberts +Eberwein +Ebey +Ebken +Ebley +Ebner +Ebony +Ebor +Ebrington +Ebro +Ebsworth +Eburne +Ebury +Ebury Bridge +Eby +Eccles +Eccles New +Eccles Old +Ecclesbourne +Ecclesbridge +Ecclesburn +Eccleshall +Eccleston +Ecclestone +Eccup +Eccups +Echelforde +Echo +Echo Barn +Echo Bay +Echo Bridge +Echo Cove +Echo Glen +Echo Grove +Echo Hill +Echo Hills +Echo Knolls +Echo Lake +Echo Park +Echo Pit +Echo Point +Echo Ridge +Echo Springs +Echo Square Sun +Echo Summit +Echo Valley +Echo Woods +Echols +Echunga +Eckberg +Eckbo +Eckel +Ecker +Eckersley +Eckersley Fold +Eckerson +Eckert +Eckert Farm +Eckford +Eckhart +Eckles +Eckley +Eckmoor +Eckstein +Eclipse +Ecole +Ecology +Ecton +Ector +Ed Bossert +Ed Finn +Ed McDashowicz +Ed Prout +Ed Rau +Edale +Edan +Edbrooke +Edcris +Eddel +Eddeys +Eddie +Eddinger +Eddington +Eddisbury +Eddiscombe +Eddisford +Eddison +Eddiwick +Edds +Eddy +Eddyspark +Eddystone +Ede +Edel +Edelblut +Edelen +Edelin +Edelmar +Edelton +Edelweiss +Eden +Eden Bower +Eden Bridge +Eden Brook +Eden Canyon +Eden Glen +Eden Grove +Eden Landing +Eden Oaks +Eden Park +Eden Plains +Eden Prairie +Eden Roc +Eden Rock +Eden Shores +Eden View +Eden West +Edenbank +Edenberry +Edenborough +Edenbridge +Edenbury +Edencourt +Edencrest +Edendale +Edenderry +Edenfield +Edenhall +Edenholme +Edenhurst +Edenlee +Edenmoor +Edensor +Edentenny +Edenton +Edenvale +Edenview +Edenville +Edenwood +Eder +Eder Ct +Ederline +Ederoyd +Edes +Edfeldt +Edgar +Edgar A Poe +Edgar Buggy +Edgars +Edgartown +Edgbaston +Edgcumbe +Edgcumbe Park +Edge +Edge Creek +Edge Field +Edge Fold +Edge Hill +Edge Lake +Edge Rock +Edge View +Edgebank +Edgeboro +Edgebrook +Edgebrooke +Edgecliff +Edgecliffe +Edgecomb +Edgecombe +Edgecome +Edgecote +Edgecott +Edgecourt +Edgecreek +Edgecrest +Edgecroft +Edgecumbe +Edgedale +Edgefield +Edgegate +Edgegrove +Edgehill +Edgel +Edgelawn +Edgelea +Edgeley +Edgell +Edgemar +Edgemeade +Edgemere +Edgemere Park +Edgemont +Edgemoor +Edgemore +Edgemount +Edgepark +Edgerly +Edgerton +Edgevale +Edgeview +Edgeware +Edgewarebury +Edgewater +Edgewater Place +Edgewater Pond +Edgewick +Edgewold +Edgewood +Edgewood Glen +Edgewood Hills +Edgeworth +Edgeworth David +Edgington +Edgrace +Edgware +Edgwarebury +Edi +Edice +Edie +Edilom +Edin Garth +Edina +Edina Industrial +Edinboro +Edinbrook +Edinburg +Edinburgh +Edinger +Edington +Edis +Edison +Edison Park +Edith +Edith Holmes +Edith Patch +Edith Sherman +Edithna +Editors Park +Ediva +Edlee +Edlin +Edlington +Edloe +Edlys +Edman +Edmands +Edmar +Edminton +Edmond +Edmonds +Edmondson +Edmons +Edmonston +Edmonton +Edmore +Edmund +Edmund Beaufort +Edmund Corrigan +Edmund Halley +Edmund Hock +Edmund Hurst +Edmunds +Edmunton +Edna +Ednor +Edoka +Edpas +Edquiba +Edric +Edrich +Edrick +Edridge +Edsall +Edscho +Edsel +Edson +Edstan +Edstone +Education +Educational Park +Edulf +Edwall +Edward +Edward Barron +Edward Bennett +Edward Bentley +Edward Charlton +Edward Cody +Edward Cul de Sac +Edward Edgar +Edward Foster +Edward H Ross +Edward Hart +Edward II +Edward Kelleher +Edward S Harrison +Edward Temme +Edwardel +Edwardene +Edwards +Edwards Bay +Edwards Ferry +Edwards Point +Edwards Rancho +Edwardson +Edwin +Edwin C Weiskopf +Edwin Flack +Edwin H. Land +Edwin Markham +Edwin Raynor +Edwina +Edwins Hall +Edwrads +Edythe +Ee +Eel +Eelmoor +Eelmoor Plain +Eerawy +Effey +Effie +Effies +Effingham +Effingham Common +Effington +Efford +Effort +Effra +Effress +Effron +Efner +Egan +Egandale +Eganey +Egard +Egbert +Egbert Hill +Egdon +Ege +Egel +Egerszegi +Egerton +Egerton Green +Egerton House +Egg Farm +Egg Pie +Egg Ranch +Eggar Woods +Eggelston +Eggers +Eggert +Eggington +Eggleson +Eggleston +Eggleton +Egham +Eghams Wood +Egidi +Eglantine +Egleston +Egley +Eglin +Eglington +Eglinton +Eglise +Egliston +Egmont +Egmontt Park +Egolf +Egremont +Egret +Egypt +Egypt Beach +Egyptian +Ehle +Ehlen +Ehlers +Ehlinger +Ehrbar +Ehret +Ehrhardt +Ehrhorn +Eich +Eichenwald +Eicher +Eichler +Eichten +Eider +Eiffel +Eiger +Eight +Eight Acre +Eight Lots +Eight Rod +Eighteen Acre +Eighteenth +Eighth +Eightlands +Eightpenny +Eigleberry +Eigth +Eike +Eildon +Eileen +Eilene +Eiler +Eilers +Eilerson +Eillimatta +Eilliot +Eilmatta +Eimer +Einfield +Einhorn +Eire +Eischens +Eiseman +Eisenbeisz +Eisenhower +Eisner +Eisnor +Eitel +Eith +Eith High +Ekala +Ekberg +Ekings +Ekins +Eklund +Ekman +Eknes +Ekstrand +El Alamein +El Arroyo +El Balcon +El Bonita +El Bonito +El Bosque +El Cajon +El Cameno +El Camille +El Caminito +El Camino +El Camino Medio +El Camino Plaza +El Campo +El Caney +El Capitan +El Caprice +El Carlo +El Carmelo +El Cemonte +El Centro +El Cerrito +El Cerro +El Charro +El Chorlito +El Cid +El Cimino +El Cortez +El Crystal +El Curtola +El Divisadero +El Dorado +El Dorado Beach Club +El Dorado Hills +El Dorado Turn +El Dori +El Douro +El Encanto +El Faisan +El Fresco +El Gato +El Granada +El Grande +El Greco +El Invierno +El James +El Lago +El Lisa +El Macero +El Manto +El Matador +El Mercado +El Mirador +El Modena +El Molino +El Monte +El Moro +El Morro +El Nido +El Nido Ranch +El Oro +El Oro Plaza +El Oso +El Padro +El Paraiso +El Paseo +El Paso +El Patio +El Pinal +El Pintado +El Pintado Heights +El Pinto +El Portal +El Porto +El Portola +El Prado +El Pueblo +El Quanito +El Rancho +El Rancho Verde +El Refugio +El Reno +El Rey +El Rincon +El Rio +El Rose +El Salto +El San +El Sanjon +El Segundo +El Sereno +El Sobrante +El Solyo +El Solyo Heights +El Sombroso +El Suyo +El Terraza +El Toro +El Vanada +El Verand +El Verano +El Vista +El Zuparko +Ela +Elacqua +Elaine +Elam +Elan +Elan Village +Eland +Elanora +Elario +Elayne +Elba +Elbe +Elberon +Elbert +Elberta +Elbertson +Elbon +Elbormar +Elborough +Elbow +Elbridge +Elbrook +Elbury +Elbut +Elby +Elcedo +Elchester +Elcho +Elcock +Elcombe +Elcorte Madera +Elcot +Elcott +Elda +Eldamain +Eldbridge +Eldee +Elden +Eldene +Elder +Elder Brewster +Elder Creek +Elder Oaks +Elder Tree +Elderberry +Elderbrook +Eldercroft +Elderd +Elderfield +Elderfields +Elderfo +Elderly +Eldermount +Elders Hollow +Eldershaw +Elderslie +Eldert +Elderton +Elderwood +Eldon +Eldor +Eldora +Eldorado +Eldred +Eldredge +Eldrid +Eldridge +Eldridge Grade Fire +Eldrige +Eleana +Eleanor +Eleanor Cross +Eleanore +Elebana +Elebe +Election +Electioneer +Electo +Electra +Electric +Electronic +Electronics +Elefa +Elegans +Elegante +Eleham +Elena +Elena Marie +Elenda +Elendil +Elene +Eleni +Elephant +Elester +Eletson +Elevation +Elevator +Eleven Oaks +Eleventh +Eley +Elf +Elfelt +Elfers +Elfin +Elfindale +Elford +Elfort +Elfred +Elfreda +Elfrida +Elfrieda +Elfwine +Elgar +Elgarth +Elger +Elgin +Elgin Hosp Service +Elgin Mental Hospital +Elginwood +Elgiva +Elham +Elholm +Eli +Eli Whitney +Elia +Elianore +Elias +Elias Howe +Eliason +Elibank +Elijah +Elim +Elimatta +Elingwood +Elinor +Elinor Fr +Elinora +Elinore +Elioak +Eliot +Eliot Hill +Eliot Memorial +Eliot View +Eliots Oak +Eliott +Elisa +Elise +Eliseo +Elisha +Elissa +Elissagaray +Eliston +Elite +Eliz +ElizAbeth +Eliza +Eliza Ann +Elizabath +Elizabeth +Elizabeth Bay +Elizabeth Fry +Elizabeth Ida +Elizabeth MacArthur +Elizabeth Macarthur +Elizabeth Ridge +Elizabeth River +Elizabeth Slinger +Elizia +Eljays +Eljer +Elk +Elk Crest +Elk Grove +Elk Hills +Elk Horn +Elk Lick +Elk Mar +Elk Point +Elk Run +Elk Spring +Elka +Elkan +Elker +Elkgrove Township +Elkhart +Elkhorn +Elkhorn Manor +Elkin +Elkington +Elkins +Elkland +Elkmont +Elko +Elkridge +Elkridge Heights +Elkridge Landing +Elks +Elkstone +Elkton +Elkwood +Ell +Ella +Ellaline +Ellalong +Ellam +Elland +Ellard +Ellbank +Ellbourne +Elle +Ellege +Ellen +Ellen Terry +Ellen Webb +Ellena +Ellenbrook +Ellendale +Ellenel +Ellenmere +Ellenor +Ellensue +Ellenton +Ellentree +Ellenwhorne +Ellenwood +Elleray +Ellerbe +Ellerbie +Ellerbrook +Ellerby +Ellerdale +Ellerdine +Ellergreen +Ellerhausen +Ellerhorst +Ellerker +Ellerman +Ellers +Ellerslee +Ellerslie +Ellert +Ellerton +Ellery +Elles +Ellesborough +Ellesemere +Ellesfield +Ellesmere +Ellestere +Ellestuen +Ellet +Ellice +Ellicott +Ellicott Woods +Ellie +Elliman +Ellin +Ellinger +Ellingfort +Ellingham +Ellingson +Ellington +Ellingwood +Ellinwood +Elliot +Elliot Ranch +Elliott +Elliott Av +Elliott Ranch +Ellis +Ellis Farm +Ellis Johnson +Ellisen +Ellisfield +Ellison +Ellisville +Elliswick +Ellita +Ellithorpe +Ellman +Ellmar Oaks +Ellmore +Ellmyer +Ellor +Ellora +Ells +Ellsberg +Ellsmere +Ellsmore +Ellswood +Ellsworth +Ellwell +Ellwood +Ellyn +Ellyridge +Ellzey +Elm +Elm Beds +Elm Brook +Elm Creek +Elm Creet +Elm Crest +Elm Farm +Elm Green +Elm Grove +Elm Hill +Elm Knoll +Elm Lawn +Elm Lodge +Elm Park +Elm Ridge +Elm Rock +Elm Sea +Elm Top +Elm Tree +Elm View +Elma +Elman +Elmang +Elmar +Elmbank +Elmbark +Elmbourne +Elmbridge +Elmbrook +Elmcrest +Elmcroft +Elmdale +Elmdene +Elmdon +Elmdorf +Elmendorf +Elmer +Elmer F Hagner +Elmer School +Elmers +Elmers End +Elmerside +Elmesmere +Elmet +Elmete +Elmfield +Elmgate +Elmgrove +Elmhirst +Elmhurst +Elmington +Elminya +Elmira +Elmire +Elmlea +Elmleaf +Elmley +Elmo +Elmont +Elmoor +Elmora +Elmore +Elmridge +Elmroyd +Elms +Elms Farm +Elms Park +Elmscott +Elmscroft +Elmsdale +Elmsfield +Elmsford +Elmshaven +Elmside +Elmsleigh +Elmsmere +Elmstead +Elmstone +Elmstone Hole +Elmstree +Elmstreet +Elmswood +Elmsworth +Elmton +Elmtree +Elmview +Elmwood +Elmwood Farm +Elmwood Park +Elmwynd +Elna +Elnew +Elnido +Elnoka +Elnor +Elnora +Elodie +Eloise +Elon +Elonera +Eloora +Elora +Elouera +Eloura +Elphick +Elphinstone +Elphistone +Elray +Elrene +Elridge +Elrington +Elrod +Elrose +Elroy +Elsa +Elsbeth +Elsbree +Elsdale +Elsden +Elsdon +Elsen +Elsenham +Elsenwood +Elsham +Elsholz +Elsie +Elsie Mae +Elsie Maud +Elsiedene +Elsinge +Elsinoor +Elsinor +Elsinore +Elskip +Elsley +Elsma +Elsmere +Elsmore +Elsom +Elson +Elsona +Elspeth +Elstar +Elstead +Elsted +Elston +Elstow +Elstree +Elsway +Elswick +Elsworth +Elsworthy +Elsynge +Elterwater +Eltham +Eltham Church High +Eltham Green +Eltham Palace +Elthiron +Elthorne +Eltinge +Eltingville +Eltisley +Elton +Elton Farm +Elton Vale +Eltringham +Elva +Elvans +Elvas +Elvaston +Elvaton +Elvaton Towne +Elveden +Elvedon +Elven +Elvendon +Elvera +Elverland +Elverson +Elverston +Elverta +Elverton +Elves +Elvessa +Elvet +Elvetham +Elvia +Elvies +Elvin +Elvina +Elvington +Elvino +Elvir +Elvira +Elvis +Elvstrom +Elward +Elway +Elwell +Elwern +Elwick +Elwin +Elwood +Elwyn +Ely +Elyard +Elyne +Elyse +Elysian +Elysian Fields +Elysium +Elystan +Elzer +Elzey +Em +Emack +Emado +Emalon +Emami +Emanuel +Emaron +Emba +Embankment +Embarcadero +Embarcadero North +Embarcadero South +Embassy +Embden +Embee +Ember +Ember Farm +Embercourt +Emberdale +Embers +Emblem +Embleton +Embroidery +Embry +Embry Farm +Emden +Emegency +Emelia +Emeline +Emer +Emerad +Emerald +Emerald Bay +Emerald Chase +Emerald Cove +Emerald Crest +Emerald Forest +Emerald Green +Emerald Grove +Emerald Hill +Emerald Hills +Emerald Isle +Emerald Lake +Emerald Oak +Emerald Park +Emerald Pointe +Emerald Pool +Emerald Ridge +Emerald Rock +Emerald Vista +Emerald Wood +Emergency +Emergency Access +Emeric +Emerick +Emerson +Emerson Gardens +Emerson Valley +Emersons +Emerstan +Emert +Emerton +Emery +Emery Bay +Emery Hill +Emery Village +Emeryn +Emes +Emigh +Emigrant Gap +Emil +Emilia +Emilie +Emiline +Emilio +Emilissa +Emily +Emily Clarke +Emily Dickinson +Emily Jeffers +Emilys +Emington +Emjay +Emkay +Emley +Emlong +Emlyn +Emma +Emma Lee +Emmaline +Emmanual +Emmanuel +Emmanuel Church +Emmaton +Emmaus +Emmbrook +Emme +Emmeline +Emmer Green +Emmerick +Emmers +Emmerson +Emmert +Emmet +Emmet Hill +Emmet Roche +Emmetsburg +Emmett +Emmetts +Emmetts Farm +Emmitt +Emmons +Emmons Canyon +Emmonsdale +Emmott +Emms +Emo +Emond +Emory +Emory Church +Emory Grove +Emperor +Empire +Empire Builder +Empire Mine +Empire Tract +Empire Wharf +Empoli +Emporia +Empress +Empson +Empty Song +Emrol +Emroy +Emshee +Emsworth +Emu +Emu Plains +Emwood +Ena +Enatai +Enborg +Enborn +Enbrook +Encanto +Encerti +Enchanted +Enchanted Forest +Enchantment +Enchanto Vista +Encima +Encina +Encina Grande +Encinal +Encino +Encinosa +Enclave +Enclosure +Encore +Encounter +End +End View +Endean +Endeavor +Endeavour +Endell +Enderby +Enderley +Enders +Endersby +Endicott +Endlebury +Endleigh +Endlesham +Endlich +Endmoor +Endo +Endon +Endor +Endow +Endres +Endriss +Endsleigh +Endview +Endwell +Endwood +Endymion +Enea +Energy +Energy Park +Enes +Enesco +Enfield +Enfield Church +Enfield Park +Enford +Enfrente +Engadine +Engel +Engelhard +Engelke +Engelmann Oak +Engert +Engesta +Engine +Engine House +Engineer +Engineers +England +Englands +Engle +Englefield +Englehardt +Englehart +Englehutt +Engleman +Englemere +Engler +Englert +Engleside +Englewood +Englhardt +Engliff +English +English Bay +English Chestnut +English Consul +English Hills +English Holly +English Morning +English Oak +English Oaks +English Prairie +English Rows +English Turn +Englishman +Englishtown +Englishwood +Englorie Park +Engracia +Enid +Enloe +Enlund +Enman +Enmore +Ennabrock +Ennalls +Ennals +Enneking +Ennell +Ennerdale +Ennersdale +Enness +Enning +Ennis +Ennismore +Enoch +Enochs +Enoggera +Enola +Enon +Enos +Enrica +Enrico +Enright +Ensbrook +Ensell +Ensenada +Ensfield +Ensign +Ensleigh +Enslen +Enslin +Enstone +Enstrom +Enterdent +Enterprise +Enterprise Park +Entertainment +Entin +Entomology +Entrada +Entrance +Entranda +Entrata +Entre +Entrevaux +Entry +Entwisle +Entwistle +Entwistle Hall +Enveart +Envee +Enver +Envill +Enville +Environs +Envoy +Enzenauer +Enzo +Eola +Epacris +Epaul +Ephriam +Epic +Epirus +Episcopal Hs Service +Epling +Eppard +Epping +Epping Farms +Epping Forest +Epping New +Eppirt +Epple +Eppleworth +Eppling +Epps +Epsam +Epsilon +Epsom +Epson +Epstein +Epworth +Equality +Equestrian +Equine +Equitable +Equity +Equus +Era +Erang +Erasmus +Erb Farm +Erba +Erben +Ercall +Ercama +Ercell +Ercildoune +Ercolani +Erconwald +Erebus +Eresby +Ereswell +Erhardt +Eric +Eric Clarke +Eric Cooper +Eric Felton +Eric Green +Erica +Erica Hill +Erick +Ericka +Erickson +Erico +Ericon +Ericson +Ericsons +Ericsson +Eridge +Erie +Eriff +Erik +Erika +Eriks +Erin +Erina +Erins Glen +Erins Ridge +Eriswell +Erita +Erith +Erith High +Erland +Erlandson +Erlanger +Erle Havard +Erledon +Erleigh +Erleigh Court +Erles +Erlesmere +Erlin +Erlington +Erma +Erman +Ermen +Ermina +Ermine +Ermington +Erna +Ernal +Ernald +Ernan +Ernel +Ernest +Ernesti +Ernestine +Ernie +Ernie Pyle +Ernle +Ernlouen +Ernocroft +Ernst +Ernst Chain +Ernston +Ernwood +Eros +Erpingham +Errang +Errante +Errica +Errico +Erriff +Errington +Errol +Errol Flynn +Erroll +Errwood +Erskine +Erskine Park +Erskineville +Erta +Ertle +Ertman +Ertter +Erudo +Ervilla +Erville +Ervin Industrial +Ervine +Erving +Erwin +Erwin Park +Esa +Esberg +Escalero +Escalle +Escallonia +Escalon +Escalona +Escamilla +Escanaba +Escanyo +Escatta +Eschenburg +Escher +Eschinger +Eschol +Eschol Park +Escobar +Escobita +Escolta +Escombe +Escondida +Escondido +Escondito +Escot +Escover +Escuela +Esdaile +Esek Hopkins +Esfahan +Eshald +Eshcol +Esher +Esher Green +Esher Park +Esher Place +Eshleman +Esholt +Esk +Eskdale +Eskin +Eskow +Eskridge +Esler +Eslin +Esme +Esmeralda +Esmeyer +Esmond +Esmont +Espanola +Esparito +Esparto +Espee +Esperanza +Espey +Espie +Espinosa +Esplanade +Esplande +Esplin +Esposito +Espy +Esquina +Esquire +Esquivel +Essanay +Essella +Essen +Essenay +Essenden +Essendene +Essendine +Essendon +Essenton +Esser +Essetford +Essex +Essex Center +Essex Green +Essex Hall +Essex Heights +Essex Park +Essex View +Esshire +Essian +Essie +Essiembre +Essilia +Essington +Esslog +Esta +Estabrook +Estabueno +Estacada +Estancia +Estate +Estates +Estates View +Estcots +Estcourt +Este +Este Madera +Esteban +Estee +Esteem +Estel +Estella +Estelle +Estelle Marsan +Esten +Estepa +Ester +Esterbrook +Esterbrooke +Esterlee +Esterly Oaks +Estero +Esterwood +Estes +Estey +Esther +Esthers +Estherwood +Esthwaite +Estler +Estling Lake +Estok +Eston +Estona +Estonfield +Estonia +Estrada +Estrade +Estralita +Estreham +Estrella +Estridge +Estuary +Estudillo +Esty +Esty Farm +Eswick +Esworthy +Eswyn +Eta +Etchells +Etcheverry +Etchingham +Etchingham Park +Etchison +Etela +Eternal Rings +Eternity +Etham +Ethan +Ethan Allen +Ethel +Ethel Porter +Ethelbert +Ethelburga +Ethelden +Etheldene +Etheldore +Ethell +Ethelridge +Ethelton +Etherden +Etheridge +Etherstone +Ethie +Ethier +Ethnam +Ethnard +Ethne +Ethridge +Ethrlbert +Ethronvi +Ethyl +Etloe +Etna +Eton +Eton College +Eton High +Eton Hill +Eton Manor +Eton Wick +Eton on Oxford +Etowah +Etre +Etruria +Etruscan +Etsinger +Etta +Ettalong +Ettersberg +Ettie +Ettl +Ettlesdale +Ettrick +Etuird +Etvile +Etzel +Eubank +Eubanks +Eucalyptas +Eucalyptus +Eucalyptus Knoll +Eucker +Eucla +Euclid +Eucra +Eucumbene +Eudo +Eudon +Eugene +Eugenes Prospect +Eugenia +Eugenia Park +Eulabah +Eulalia +Eulalie +Eulbertie +Eulda +Eulner +Eulow +Eunice +Eurabalong +Eurabba +Eurabbie +Euralla +Eureka +Eureka Canal +Eureka Canyon +Eurella +Eurimbla +Eurobin +Euroka +Eurolink Way Milton +Eurong +Europa +Europa Park +Europe +Euryalus +Eustace +Eustice +Eustis +Euston +Eutaw +Eutaw Forest +Euterpe +Euthella +Eva +Eva Gude +Evadna +Evaline +Evan +Evana +Evandale +Evangel +Evangeline +Evangelist +Evans +Evans Black +Evans Farm +Evans Ford +Evans Mill +Evans Pond +Evans Ridge +Evansdale +Evanston +Evanston Central +Evanston Davis +Evanston Elgin +Evanston Main +Evanstone +Evanswood +Evar +Evarts +Evas +Eve +Eveas +Eveleigh +Eveleth +Evelina +Eveline +Evelyn +Evelyn Denington +Evelyn Gingell +Evelyn Wood +Evelyns +Evemarie +Even +Evendale +Evenden +Evenfall +Evening +Evening Hill +Evening Primrose +Eveningside +Evenlode +Evens +Evensong +Evenstar +Evenston +Everard +Everberg +Everd +Everdale +Everdean +Everdell +Everell +Everendon +Everest +Everest Peak +Everett +Everett Farm +Everett Gaylord +Everett Paine +Everett School +Everette +Everglade +Everglades +Everglades Park +Evergreen +Evergreen Forest +Evergreen Mills +Evergreen Point +Evergreen Ridge +Everhill +Everilda +Evering +Everington +Everit +Everitt +Everlasting +Everleigh +Everley +Everly +Everlyn +Evermay +Evers +Eversfield +Eversholt +Evershot +Everside +Eversleigh +Eversley +Eversley Park +Eversole +Everson +Everst +Evert +Everthorpe +Everton +Everts +Everview +Everwood +Every +Evesboro +Evesham +Evesson +Eveton +Evey +Evian +Evolution +Evon +Evona +Evonne +Evonshire +Evora +Evry +Ewald +Ewan +Ewart +Ewart Dale +Ewe +Ewehurst +Ewell +Ewell Court +Ewell Downs +Ewellhurst +Ewen +Ewens +Ewenton +Ewer +Ewhurst +Ewing +Ewood +Ewrin +Ews Woods +Ewshot +Exbourne +Exbury +Excaliber +Excalibur +Excange +Exceller +Excelsior +Excelso +Exchange +Excy +Executive +Executive Park +Exedown +Exeforde +Exell +Exeter +Exeter Square +Exeter Way Pagnell +Exeter on Oxford +Exfair +Exford +Exhibition +Exira +Exit +Exley +Exmoor +Exmoor Oaks +Exmore +Exmouth +Exner +Exning +Exodus +Exon +Expando +Experiment +Exploration +Explorer +Explorers +Expo +Export +Exposition +Express +Expressway +Extension +Extension Center +Exterior +Exton +Eyam +Eycott +Eye +Eyebrook +Eyelet +Eyet +Eyhorne +Eyhurst +Eylandt +Eyles +Eyncourt +Eynella +Eynford +Eynham +Eynsford +Eynsham +Eynswood +Eyre +Eyres +Eyrie +Eyston +Eythorne +Ezel +Ezie +Ezra +Ezzy +F A Orechio +F Fernwood +F Jellman +F Leeds Infirmary +F Line +F Morley Commercial +F R +F S Mathewson +FDR +Faben +Fabens +Faber +Fabian +Fabiano +Fabien +Fabio +Fabiola +Fable +Fabor +Fabry +Fabyan +Facade +Facchina +Facel Vega +Facendini +Facet +Fackenden +Factor +Factory +Factory Mutual +Factory Pond +Factory Shops +Faculty +Fadem +Fado +Fagan +Fagen +Fagerness Point +Faggoters +Faggs +Fagin +Fagley +Fagnall +Fagundes +Fagus +Fahden +Fahey +Fahms +Fahrner +Fahy +Faigle +Faile +Failsworth +Fair +Fair Acres +Fair Briar +Fair Elms +Fair Garden +Fair Greene +Fair Haven +Fair Heights +Fair Hill +Fair Knoll +Fair Lakes +Fair Lakes Promenade +Fair Lawn +Fair Meadow +Fair Meadows +Fair Oak +Fair Oaks +Fair Play +Fair Ponds +Fair Ranch +Fair Ridge +Fair Valley +FairView +Fairacre +Fairacres +Fairbairn +Fairbank +Fairbanks +Fairbault +Fairbluff +Fairbottom +Fairbourn +Fairbourne +Fairbridge +Fairbrook +Fairbrother +Fairburn +Fairbury +Fairby +Faircastle +Fairchester +Fairchild +Fairchildes +Faircliff +Fairclough +Faircrest +Faircross +Fairdale +Fairdell +Fairdene +Faireno +Fairey +Fairfax +Fairfax Corner +Fairfax Corner West +Fairfax County +Fairfax Farms +Fairfax Hunt +Fairfax Metro +Fairfax Ridge +Fairfax Village +Fairfield +Fairfield House +Fairfield Loop +Fairfields +Fairfoot +Fairford +Fairfowl +Fairgate +Fairglen +Fairgrave +Fairgreen +Fairground +Fairgrounds +Fairgrove +Fairham +Fairhauser +Fairhaven +Fairhill +Fairhills +Fairholm +Fairholme +Fairholt +Fairhomes +Fairhope +Fairhunt +Fairhurst +Fairkytes +Fairlaine +Fairlake +Fairlamb +Fairland +Fairland Park +Fairlands +Fairlane +Fairlawn +Fairle +Fairlea +Fairlead +Fairlee +Fairleigh +Fairless +Fairlie +Fairlight +Fairlop +Fairly +Fairlyn +Fairman +Fairmans +Fairmark +Fairmead +Fairmeadow +Fairmeadows +Fairmede +Fairmile +Fairmile Park +Fairmont +Fairmont Heights +Fairmount +Fairoak +Fairoaks +Fairorchard +Fairpine +Fairport +Fairridge +Fairs +Fairseat +Fairsky +Fairstead +Fairstead Hall +Fairtown +Fairtree +Fairtrough +Fairview +Fairview Beach +Fairview Circle +Fairview Cottage +Fairview Estates +Fairview Park +Fairview Vista +Fairview Woods +Fairwater +Fairwaters +Fairway +Fairway Entrance +Fairway Glen +Fairway Hills +Fairway Knoll +Fairway Ridge +Fairway Two +Fairway View +Fairways +Fairways Edge +Fairweather +Fairwell +Fairwind +Fairwinds +Fairwood +Fairwyn +Fairy +Fairy Bank +Fairy Bower +Fairyland +Fairytale +Fairywell +Faith +Faith Baptist Church +Faithfull +Faithorn +Faithorne +Faitoute +Falaise +Falcato +Falcon +Falcon Greens +Falcon Lakes +Falcon Meadow +Falcon Park +Falcon Point +Falcon Ridge +Falcon View +Falconbridge +Falconcrest +Falcone +Falconer +Falconers +Falconwood +Falda +Faldo +Fales +Falesky +Faletto +Falfield +Falgren +Falkerners +Falkirk +Falkland +Falkland Park +Falklands +Falkner +Fall +Fall Birch +Fall Brook +Fall Creek +Fall River +Fallard +Fallbrook +Fallen Leaf +Fallen Oak +Fallen Timbers +Fallenleaf +Faller +Falleri +Fallfax +Fallgold +Fallgren +Fallibroome +Falling +Falling Brook +Falling Creek +Falling Green +Falling Leaf +Falling Run +Falling Water +Fallingtree +Fallman +Fallon +Fallow +Fallow Court +Fallow Fields +Fallowfield +Fallowfields +Falls +Falls Bridge +Falls Farm +Falls Lake +Falls Pointe +Falls Reach +Falls Run +Fallsbrook +Fallscliff +Fallsgrove +Fallston +Fallstone +Fallsway +Fallswood +Fallview +Fallwater +Fallway +Fallwind +Fallwood +Falmead +Falmer +Falmore +Falmouth +Falmouth on Oxford +Falshaw +Falson +Falstaff +Falster +Falston +Falstone +Faltings +Falulah +Falworth +Fambridge +Famet +Family +Family Acres +Family Farm +Fams +Famularo +Fan +Fanchon +Fanconi +Fancroft +Fane +Faner +Faneuff +Faneuil +Fanfair +Fanhams +Fanhams Hall +Fann +Fannen +Fanners +Fanning +Fannon +Fanny +Fano +Fanok +Fans +Fanshaw +Fanshawe +Fanshaws +Fant +Fantail +Fantasia +Fanthorpe +Fantome +Fanton Hall +Fanum +Fanwood +Fanyon +Far +Far Cromwell +Far Hill +Far Hills +Far Reach +Far Rockaway +Far Rockaway – Mott +Far View +Far Well +Far Woodseats +Fara +Faraday +Farah +Farallon +Farallone +Farallones +Faran +Faraone +Farasi +Faraway Hills +Farber +Farber Hill +Farbrook +Farcroft +Fardale +Farden +Fareham +Farel Dae +Farendon +Farese +Farewell +Farfield +Fargher +Fargo +Fargrove +Farham +Farhan +Farhill +Faria +Faribault +Faricy +Farina +Farinella +Faringdon +Faringford +Farington +Fariola +Faris +Faris Barn +Fariss +Farjeon +Farland +Farlands +Farlane +Farleigh +Farleigh Court +Farless +Farley +Farley Brook +Farley Heath +Farley Pond +Farlie +Farlington +Farlow +Farlton +Farm +Farm Bridge +Farm Bureau +Farm Credit +Farm Creek +Farm Crest +Farm Gate +Farm Glen +Farm Haven +Farm Hill +Farm Hills +Farm House +Farm Line +Farm Market +Farm Mill +Farm Pond +Farm River +Farm Trace +Farm View +Farman +Farmbridge End +Farmbrook +Farmcombe +Farmcrest +Farmdale +Farmedge +Farmer +Farmerbrook +Farmers +Farmers Cliff +Farmfield +Farmgate +Farmhaven +Farmhill +Farmhouse +Farmilo +Farmin +Farmingdale +Farmingham +Farmington +Farmington Creek +Farmington Lakes +Farmland +Farms +Farmside +Farmstead +Farmview +Farmwell +Farmwood +Farnaby +Farnam +Farnan +Farnborn +Farnborough +Farncombe +Farndale +Farndon +Farne +Farnell +Farnes +Farnesdown +Farness +Farney +Farnham +Farnham Park +Farningham +Farningham Hill +Farnley +Farnol +Farnsworth +Farnum +Farnworth +Faro +Faroe +Farquhar +Farquharson +Farr +Farr Ranch +Farrabow +Farraday +Farragot +Farragut +Farrahs Calvary +Farran +Farrance +Farrand +Farrandale +Farrant +Farrar +Farrar Farm +Farrara +Farrari +Farravet +Farrcroft +Farrel +Farrell +Farrells +Farrelly +Farrellys +Farren +Farrer +Farrier +Farrier Point +Farriers +Farringdon +Farringdon Service +Farrington +Farris +Farrol +Farrow +Farrowdene +Farrs +Farrwood +Farside +Fartherwell +Farthing +Farthing Green +Farthing Park +Farthingale +Farthingham +Fartown Bankhouse +Fartown Hillthorpe +Farver +Farview +Farvue +Farwell +Farwood +Fashion +Fashion Island +Fashoda +Fassett +Fassetts +Fassler +Fast +Fastnet +Father Burns +Father Capodanno +Father Carney +Father Hayes +Father Herlihy +Father Hurley +Father Morissette +Father Urban +Father White +Fatherson +Fathke +Fathom +Fatima +Fattoria +Faubert +Fauce +Faucett +Fauchons +Fauconberg +Faught +Faulds +Faulk +Faulkbourne +Faulkenhurst +Faulkner +Faulkner Hill +Faulkners +Faun Bar +Fauna +Faunce +Faunes +Fauquier +Faust +Faustina +Fauvel +Faux +Fava +Favart +Favell +Faverolle +Faversham +Favonia +Favor +Favorite +Favre +Favre Ridge +Fawborough +Fawcett +Fawe +Fawe Park +Fawell +Fawhelm +Fawkes +Fawkham +Fawkham Green +Fawley +Fawley Bottom +Fawn +Fawn Creek +Fawn Crossing +Fawn Glen +Fawn Hill +Fawn Hollow +Fawn Lake +Fawn Meadow +Fawn Park +Fawn Ridge +Fawn Trail +Fawn Wood +Fawnbrake +Fawnbrook +Fawncrest +Fawndale +Fawnhill +Fawnridge +Fawsett +Faxfield +Faxon +Faxon Park +Faxton +Fay +Fay Mountain +Fay Ranch +Fay Rotenberg +Fayann +Faye +Faye Memorial +Faye Park +Fayerweather +Fayette +Fayetteville +Faygate +Fayland +Fayrewood +Fays +Fayson Lake +Fayston +Faywood +Fazio +Fe Carter +Feafel +Fearing +Fearless +Fearn +Fearnhead +Fearnley +Fearns +Fearnville +Fearnville Dib +Fearon +Feather +Feather Bed +Feather Creek +Feather River +Feather Rock +Feather Sound +Featherbank +Featherbed +Featherby +Feathercombe +Featherleigh +Featherock +Feathers +Featherstall +Featherston +Featherstone +Featherwood +Featley +Feature +February +Fechet +Fechter +Fed Ex +Federal +Federal Eagle +Federal Hill +Federal Signal +Federal Systems Park +Federalist +Federation +Federspiel +Fedor +Fedore +Fedrick Ranch +Fedsco +Fee +Fee Farm +Feece +Feeches +Feeder +Feedranchs +Feehanville +Feeks +Feeley +Feeney +Feeny +Fegan +Fehler +Fehon +Fehren +Feickert +Feinberg +Fela +Felbridge +Felbrigg Hall +Felbrigge +Felch +Felcot +Felcott +Felcourt +Feld +Felday +Felden +Felder +Felderland +Feldin +Feldmeyer +Feldmeyers +Feldom +Feldon +Feldott +Feldspar +Felhampton +Felice +Felicia +Felicidad +Felipe +Felix +Felixtowe +Feliz +Felker +Fell +Fella +Fellbrigg +Fellemore +Feller +Fellers +Fellner +Fellow Green +Fellowes +Fellows +Fellowship +Fellpark +Fells +Fells Manor +Fellscrest +Fellsmere +Fellsview +Fellsway +Fellsway W opp. Elm +Fellswood +Felltop +Felmersham +Felmingham +Fels Farm +Felsberg +Felsham +Felskirk +Felspa +Felstead +Felsted +Felsview +Felt +Felta +Felten +Felter +Feltes +Feltham +Feltham Hill +Felthorpe +Feltl +Felton +Felton Empire +Felton Quarry +Feltz +Felwood +Femia +Femleaf +Femoyer +Fen +Fen Pond +Fenbrook +Fence +Fencegate +Fenceline +Fencepose +Fenchurch +Fencl +Fencourt +Fencsak +Fendale +Fendall +Fendant +Fender +Fendyke +Fenelon +Fenemore +Fengates +Fenham +Fenian +Fenimore +Fenley +Fenlon +Fenmere +Fenmore +Fenn +Fennel +Fennell +Fennels +Fennels Farm +Fenner +Fenner Grant +Fennes +Fennfields +Fenning +Fenno +Fenns +Fenny +Fennycroft +Fenor +Fensalir +Fensmere +Fensome +Fenstanton +Fensview +Fentem +Fenton +Fenton Wood +Fentree +Fentress +Fentum +Fenview +Fenway +Fenwick +Fenwood +Fenworth +Fenz +Feramin +Ferber +Ferbusson +Ferdinand +Ferdinand Day +Ferdon +Fergerson +Fergus +Ferguson +Fergusson +Feri +Ferigo +Ferland +Ferme Park +Fermer +Fermery +Fermi +Fermo +Fermont +Fermor +Fermoy +Fermoy Heights +Fern +Fern Bank +Fern Canyon +Fern Creek +Fern Dell +Fern Hill +Fern Hollow +Fern Lea +Fern Leaf +Fern Park +Fern Ridge +Fern River +Fern Valley +Fernald +Fernally +Fernandes +Fernandez +Fernando +Fernbank +Fernbanks +Fernberry +Fernboro +Fernbray +Fernbrook +Ferncliff +Ferncliffe +Fernclough +Ferncote +Ferncourt +Ferncroft +Ferndale +Ferndale Hilbert +Ferndale Woods +Ferndell +Fernden +Ferndene +Ferndown +Ferne +Fernedge +Ferney +Ferney Field +Ferneydale +Fernfield +Ferngate +Fernglade +Fernglen +Ferngrove +Fernhall +Fernham +Fernhead +Fernhill +Fernhoff +Fernhollow +Fernholme +Fernhurst +Fernhust +Fernie +Fernish +Fernlea +Fernleaf +Fernleigh +Fernley +Fernmont +Fernote +Fernridge +Ferns +Fernsbury +Fernshaw +Fernshire +Fernside +Fernthorpe +Ferntower +Ferntree +Fernvale +Fernview +Fernville +Fernwald +Fernwood +Fero +Ferol +Feronia +Ferrabetta +Ferran +Ferrara +Ferrari +Ferrari Creek +Ferraris +Ferraro +Ferrecchia +Ferreira +Ferrelo +Ferren +Ferrera +Ferrero +Ferrers +Ferrestone +Ferri +Ferrier +Ferrin +Ferris +Ferriter +Ferro +Ferron +Ferry +Ferry Crossing Point +Ferry Farms +Ferry Hill +Ferry Landing +Ferry Line +Ferry Point +Ferrybridge +Ferryhill +Ferrymead +Ferryville +Ferson Creek +Ferson Woods +Fertada +Fertado +Fertelli +Fertiledale +Feruzza +Ferwood +Feryby +Fescue +Fessenden +Fessenden Hill +Fesseneva +Fessler +Festa +Festa Agilio +Festal +Festival +Fetcham Common +Fetcham Park +Fetherston +Fetlock +Fetter +Fetterly +Fetters +Fettes +Fetyko +Fetz +Fetzer +Feustal +Fever +Fewings +Fewston +Fewtrell +Fey +Ff +Ffinch +Fiarway +Fiat +Fibich +Ficarelle +Fichter +Fiday +Fiddens Wharf +Fiddicroft +Fiddle +Fiddlebridge +Fiddler +Fiddlers +Fiddlers Green +Fiddlers Green Spur +Fiddlers Hill +Fiddlesticks +Fiddyment +Fidler +Fiedler +Field +Field Common +Field Crest +Field Daisy +Field Encampment +Field End +Field Gate +Field Head +Field House +Field Lark +Field Master +Field Mill +Field Office +Field Point +Field Pond +Field Vale +Field View +Field Way Hill +Field of Mars +Fieldale +Fieldbank +Fieldbrook +Fieldcommon +Fieldcreek +Fieldcrest +Fielden +Fieldend +Fielder +Fieldfair +Fieldfare +Fieldgate +Fieldhead +Fieldhead Longwood +Fieldhouse +Fielding +Fieldings +Fieldmere +Fieldmont +Fieldpoint +Fields +Fields Brigade +Fields Crown Farm +Fields End +Fields Farm +Fields First Federal +Fields New +Fields Pond +Fieldsend +Fieldside +Fieldsman +Fieldston +Fieldstone +Fieldthorn +Fieldvale +Fieldview +Fieldway +Fieldway Lodge +Fieldwood +Fieldwork +Fiene +Fierro +Fiesta +Fife +Fifer +Fifers +Fifield +Fifteenth +Fifth +Fifth Cross +Fig +Fig Tree +Figard +Figg +Figges +Figone +Figtree +Figueroa +Figura +Figurea +Figurehead +Fiji +Fike +Filament +Filante +Filarete +Filbert +Filbro +Filby +Filer +Filey +Filice +Filip +Filipe +Filkins +Fillat +Fille +Fillebrook +Fillets Farm +Filley +Fillingame +Fillingfir +Fillion +Fillippelli +Fillmer +Fillmore +Filly +Filmer +Filmore +Filmorehill +Filomena +Filston +Filter Bed +Filter Plant +Filterbed +Finborough +Fincastle +Finch +Finchale +Fincham End +Finchampstead +Fincharn +Finchdale +Finches +Finchleigh +Finchley +Finchmead +Finck +Finden +Finders +Findhorn +Findland +Findlay +Findlays +Findley +Findon +Fine +Fine Bush +Fine Farms +Fingal +Finger +Fingerboard +Fingest +Finghall +Fingrith Hall +Finian +Finings +Finisterre +Fink +Finkbohner +Finkelstein +Finkin +Finkle +Finland +Finlandia +Finlaw +Finlay +Finlays +Finlayson +Finley +Finley Ridge +Finlow Hill +Finmor +Finn +Finn Farm +Finn S +Finnamore +Finnegan +Finnell +Finney +Finnie +Finnigan +Finningley +Finnis +Finns +Finnway +Finny Bank +Finnymore +Finrud +Finsbury +Finsbury Park +Finsbury Park Rock +Finschhafen +Finsen +Finster +Finstock +Fintonagh +Fintry +Finucane +Finway +Finwell +Fiona +Fiord +Fiore +Fiorello +Fiorenza +Fiori +Fir +Fir Bank +Fir Cottage +Fir Grange +Fir Ridge +Fir Toll +Fir Tree +Firacre +Firbank +Firbeck +Fircrest +Fircroft +Firdale +Fire +Fire Academy +Fire Access +Fire Barn +Fire Fly +Fire House +Fire Island +Fire Poppy +Fire Rock +Fire Science +Fireball +Firebird +Firebrand +Firebrick +Firecrest +Firecut +Firefly +Firefly Hill +Fireglow +Firehouse +Firelight +Firemans Memorial +Firenza +Firenze +Fireplace +Fireside +Firestone +Firethorn +Firethorne +Firetrail +Firfield +Firglade +Firgrove +Firham Park +Firhaven +Firlands +Firloch +Firma +Firmin +Firmingers +Firs +Firs Park +Firs View +Firsby +Firsgrove +First +First Cross +First Farm +First Fleet +First Fork +First Oak +First Parish +First Summer +Firstfield +Firstore +Firswood +Firth +Firth Knoll +Firth of Tae +Firthcliffe +Firtree +Firtree Park +Firvale +Firview +Firwood +Firwoods +Firzen +Fiscal +Fischer +Fischrupp +Fish +Fish Brook +Fish Farm +Fish Gultch Fire +Fish Hawk +Fish House +Fish Point +Fish Ranch +Fishback +Fishbourne +Fishburn +Fishburne +Fishel +Fisher +Fisher Crescent +Fisher Hawk +Fisher Hill +Fisher Woods +Fisherfield +Fisherman +Fishermans +Fishermore +Fishers +Fisherton +Fishery +Fishing +Fishing Creek +Fishing Point +Fishkill +Fishmarket +Fishpool +Fishtorn +Fishwick +Fisk +Fisk Mill +Fiske +Fiske Mill +Fiske Pond +Fiskeville +Fistelera Ridge +Fistor +Fistral +Fitch +Fitch Farm +Fitch Hill +Fitch View +Fitchburg +Fitchdale +Fitchett +Fitchome +Fitchs Bridge +Fittleworth +Fitton +Fitton Hill +Fitz +Fitzalan +Fitzallen +Fitzer +Fitzgeorge +Fitzgerald +Fitzgibbon +Fitzgilbert +Fitzhardinge +Fitzhenry +Fitzherbert +Fitzhugh +Fitzilian +Fitzjames +Fitzjohn +Fitzjohns +Fitzmaurice +Fitzneal +Fitzoatrick +Fitzpatrick +Fitzrandolph +Fitzroy +Fitzsimmons +Fitzsimons +Fitzstephen +Fitzuren +Fitzwalter +Fitzwarren +Fitzwater +Fitzwilliam +Fiume +Five Acres +Five Ash +Five Bells +Five Canyons +Five Elms +Five Fields +Five Forks +Five Gates +Five Hawks +Five Island +Five Mile +Five Mile River +Five Oak +Five Oak Green +Five Oaks +Five Points +Five Wounds +Fiveash +Fiveways +Fjord +Flack +Fladbury +Fladgate +Flag +Flag City +Flag Day +Flag Harbor +Flag Hill +Flagcroft +Flagg +Flagg Creek +Flagg Hill +Flagg Wood +Flagger +Flaggler +Flagler +Flagmaker +Flagpole +Flagship +Flagstaff +Flagstone +Flaherty +Flake +Flaker +Flam +Flambard +Flambeau +Flamborough +Flame +Flame Tree +Flames +Flamewood +Flaming Arrow +Flaming Oak +Flamingo +Flamm Brook +Flamstead +Flamstead End +Flamsteadbury +Flamsted +Flamsteed +Flanagan +Flanagan Hill +Flanders +Flandrau +Flandreau +Flanigan +Flank +Flannel +Flannery +Flapjack +Flapper Fold +Flash +Flasner +Flass +Flat +Flat Hill +Flat Iron +Flat Meadow +Flat Rock +Flatback +Flatboat +Flatbush +Flater +Flatfield +Flatlands +Flatley +Flats +Flatts +Flatwood +Flaumont +Flaunden +Flavel +Flavell +Flavelle +Flavia +Flavius +Flax +Flax Hill +Flax Place The +Flax Pond +Flaxberry +Flaxcroft +Flaxen +Flaxfield +Flaxley +Flaxman +Flaxpond +Flaxton +Flaxwood +Flay +Fleabane +Fleagle +Fleece +Fleece Flower +Fleeming +Fleenor +Fleeson +Fleet +Fleet Thro +Fleethall +Fleets Cove +Fleets Point +Fleetwood +Fleishacker +Fleming +Fleming Hill +Flemings +Flemings Farm +Flemington +Flemingwood +Flemish +Flemming +Flemons +Flempton +Flers +Fletchall +Fletcher +Fletcher Farms +Fletcher Fold +Fletcher Hill +Fletchers +Fletchertown +Fletching +Fletsand +Flett +Fletton +Fleuette +Fleur De Lis +Fleur de Lis +Fleurbaix +Fleurs +Fleuti +Flewing +Flexbury +Flexford +Flexmere +Flichcroft +Flicker +Flickinger +Flide +Flight +Flight Crew +Flightime +Flightline +Flinders +Flinn +Flint +Flint Creek +Flint Farm +Flint Hill +Flint Lee +Flint Licke +Flint Locke +Flint Meadow +Flint Pond +Flint Rock +Flintcrest +Flintdale +Flintfeet +Flintfield +Flinthaven +Flintlock +Flintlocke +Flintlocke Ridge +Flintmont +Flinton +Flintonbridge +Flintridge +Flintrock +Flints Grove +Flintshire +Flintstone +Flintwood +Flitch +Flitt +Flitterbrook +Flittogate +Flitwick +Flixton +Flo +Float +Floating Leaf +Floatshall +Flock +Flockton +Flodden +Flomar +Flonun +Flood +Flood Spring +Flor +Flora +Flora Lee +Flora Linda +Flora Vista +Florabelle +Floradale +Floradora +Floral +Floral Park +Florales +Florance +Florek +Florence +Florence Park +Florencia +Florentia +Florentine +Flores +Floresta +Florey +Florfield +Florgate +Florham +Florian +Floribel +Floribuna +Floribunda +Florida +Florida Grove +Florido +Florimond +Florin +Florin Mall +Florin Perkins +Florin Wood +Florinda +Florine +Florio +Floris +Florissant +Florist +Floriston +Florita +Floritta +Florrie +Florsheim +Flory +Flosden +Floss +Flossie +Flossmoor +Flour Mill +Flournoy +Flow +Flower +Flower Blossom +Flower Garden +Flower Hill +Flower Valley +Flowerdale +Flowerden +Flowerfield +Flowering Cherry +Flowering Dogwood +Flowering Meadow +Flowering Pear +Flowering Plum +Flowering Tree +Flowermeadow +Flowerree +Flowers +Flowers Bottom +Flowerstone +Flowerwood +Flowing Well +Floyd +Floyd Brown +Floyd Hill +Floyds +Floyer +Fludyer +Fluid Power +Flume +Fluorine +Flurry +Flushcombe +Flushing +Flushing Hills +Flushing Pond +Fly Cloud +Flyaway Pond +Flyboat +Flying Cloud +Flying Fields +Flying Fish +Flying Mist +Flynn +Flynt +Flyway +Foal +Foam +Foamcrest +Fobbing +Fobney +Foch +Focha +Foden +Foerster +Fog +Fog Bank +Fogarty +Fogel +Fogelman +Fogg +Foggs +Foggy +Foggy Glen +Foghorn +Fogle +Fogo +Fokard +Foksville +Folcroft +Fold +Folders +Foldi +Folds +Foleshill +Foley +Foley Beach +Folger +Foliage +Folin +Folini +Foliot +Folk +Folkers +Folkes +Folkeston +Folkestone +Folkingham +Folkstone +Folland +Folle Blanche +Follen +Follet +Follett +Follette +Follin Farm +Follows +Folly +Folly Hall +Folly Hill +Folly Mill +Folly Orchard +Folly Pond +Follyfield +Folsom +Folsom Dam +Folsom Prison +Folsom Ranch +Foltz +Folwell +Fonblanque +Fonda +Fondant +Fondell +Fondiller +Foneswood +Fong +Fonick +Font +Font Hill +Fontainbleau +Fontainbleu +Fontaine +Fontainebleau Park +Fontana +Fontanelle +Fontanoso +Fontarabia +Fontayne +Fontenay +Fontenbleau +Fontenoy +Fontes +Fonthill +Fonti +Fontonett +Fontridge +Fontron +Fontwell +Food Center +Foodlink +Foodmart +Foolish Pleasure +Foord +Foot Hill +Foot of Bridgehead +Football +Footbury Hill +Foote +Foote Ranch +Footes +Foothill +Foothill Glen +Foothill Knolls +Foothill Oaks +Foothill Ranch +Foothill Vista +Foothills +Footpath +Foots Cray +Foots Cray High +Footscray +For Glen +Foran +Foray +Forbell +Forbes +Forbes Creek +Forbes Glen +Forbes Hill +Forbs +Forburg +Forbury +Forbush +Forbush Mill +Force +Force Green +Force Hill +Force Tube +Forcum +Ford +Ford Branch +Ford Hill +Ford Manor +Fordal +Fordbank +Fordbridge +Fordcombe +Fordcroft +Forde +Fordel +Fordham +Fordhook +Fordington +Fords +Fords Park +Fordson +Fordville +Fordway +Fordwells +Fordwich +Fordwych +Fordyce +Fordyke +Fore +Fore River +Forebury +Foregate +Foreland +Forelands +Foreman +Foremost Mountain +Forenza +Forepaugh +Foresdt +Forest +Forest Arms +Forest Beach +Forest Brook +Forest Cove +Forest Creek +Forest Crest +Forest Cross +Forest Dale +Forest Dell +Forest Edge +Forest End +Forest Farm +Forest Garden +Forest Gate +Forest Gate Green +Forest Glen +Forest Green +Forest Grove +Forest Hall +Forest Haven +Forest Hill +Forest Hills +Forest Hills Entrance +Forest Hollow +Forest Knoll +Forest Knolls +Forest Lake +Forest Lake Service +Forest Lawn +Forest Manor +Forest Meadow +Forest Mews +Forest Mill +Forest Mist +Forest Mount +Forest Oak +Forest Off Chesnut +Forest Park +Forest Prairie +Forest Preserve +Forest Ridge +Forest Run +Forest Side +Forest Spring +Forest Trail +Forest View +Forest Villa +Forest Walk +Forest Wood +Forest Woods +Forestburg +Forestdale +Forestedge +Forester +Foresters +Forestgrove +Foresthill +Forestlake +Foreston +Forestside +Forestvale +Forestview +Forestville +Forestville Meadows +Forestway +Forestwood +Forfar +Forge +Forge Bridge +Forge Hill +Forge Village +Forges +Forget Me Not +Forgetts +Forgewood +Forgotten Flower +Forgue +Fork +Forked Creek +Forkey +Forkland +Forlease +Forley +Forli +Forman +Formans Barn +Formby +Former Peter Brock +Formosa +Formosa Ridge +Formosana +Formschlag +Fornasier +Fornelius +Forner +Forni +Forrest +Forrest Hill +Forrest Lake +Forrest Maple +Forrest Preserve +Forrest View +Forrestal +Forrester +Forrester Hill +Forresters +Forris +Forsberg +Forset +Forsgate +Forsham +Forsham Lake +Forshaw +Forslin +Forslund +Forsman +Forstal +Forster +Forston +Forsum +Forsyth +Forsythe +Forsythia +Fort +Fort Ann +Fort Apache +Fort Armistead +Fort Baker +Fort Beggs +Fort Corloran +Fort Craig +Fort Dearborn +Fort Donelson +Fort Dupont +Fort Farnsworth +Fort Foote +Fort Funston +Fort George +Fort Hamilton +Fort Hill +Fort Howard Park +Fort Hunt +Fort Independence +Fort Johnson +Fort Johnston +Fort Laramie +Fort Lee +Fort Lyon +Fort Meade +Fort Meadow +Fort Niagara +Fort Pitt +Fort Point +Fort Pond +Fort Pond Hill +Fort Pond Inn +Fort Ross +Fort Salonga +Fort Sheridan +Fort Slocum +Fort Smallwood +Fort Sumner +Fort Sumter +Fort Washington +Fort Worth +Forte +Forte Memorial +Fortescue +Fortesque +Fortess +Fortfield +Forth +Forth Bridge +Forthill +Fortier +Fortier Lookout +Fortin +Fortini +Fortis Green +Fortismere +Fortna +Fortnam +Fortner +Forton +Fortril +Fortside +Fortuna +Fortunato +Fortune +Fortunegate +Forty +Forty Acre +Forty Acres +Forty Foot +Forty Green +Forty Oaks +Fortyacre +Forum +Forward +Forwood +Fosbak +Fosbrook +Foscarn +Foscote +Fosgate +Foskett +Foss +Foss Hill +Fossdale +Fossdene +Fosse +Fossen +Fossetts +Fossgill +Fossil +Fossil Ridge +Fosswood +Fostall +Fosten +Foster +Foster City +Foster Clarke +Foster Pond +Fostern +Fosters +Fostones +Fothergill +Fotheringham +Fotherley +Fottler +Foucart +Foulden +Foulds +Foulger +Foulks Ranch +Foulser +Foulsham +Founceley +Foundary +Founders +Founders Field +Founders Hill +Founders Mill +Founders Pointe +Founders Ridge +Founders Way +Foundry +Foundry MIll +Foundry Mill +Fount +Fountain +Fountain Circle +Fountain Club +Fountain Green +Fountain Grove +Fountain Head +Fountain Hills +Fountain Oaks +Fountain Park +Fountain Springs +Fountain Square +Fountain Valley +Fountain View +Fountainbleau +Fountaine +Fountaingrove +Fountainhead +Fountainhead Access +Fountains +Fountainside +Fountainview +Fountayne +Four Acre +Four Acres +Four Bridges +Four Chimney +Four Corners +Four Elms +Four Lakes +Four Leaf Clover +Four Mile +Four Oaks +Four Penny +Four Seasons +Four Wents +Four Winds +Fouracres +Fouratt +Fourier +Fourness +Fournier +Foursome +FourtFour Peter +Fourteen Mile +Fourteenth +Fourth +Fourth Cross +Fourwents +Foust +Fouth +Foveaux +Fowey +Fowke +Fowle +Fowler +Fowler Creek +Fowlers +Fownes +Fownhope +Fox +Fox Beach +Fox Bend +Fox Bluff +Fox Bow +Fox Burrow +Fox Burrows +Fox Chapel +Fox Chase +Fox Creek +Fox Cross +Fox Den +Fox Farm +Fox Fern +Fox Fire +Fox Forest +Fox Gate +Fox Glen +Fox Glove +Fox Grape +Fox Grove +Fox Harbor +Fox Harrow +Fox Haven +Fox Hedge +Fox Hill +Fox Hills +Fox Hollow +Fox Hollow Ridings +Fox Hound +Fox House +Fox Hunt +Fox Island +Fox Lair +Fox Lake +Fox Ledge +Fox Meadow +Fox Mill +Fox Mill Manor +Fox Mine +Fox Park +Fox Path +Fox Platt +Fox Plaza +Fox Point +Fox Pointe +Fox Rest +Fox Ridge +Fox Ripple +Fox River +Fox Run +Fox Shadow +Fox Shores +Fox Sparrow +Fox Tail +Fox Trail +Fox Trot +Fox Valley +Fox Valley Center +Fox View +Fox Vine +Fox Wilds +Fox Wood +Fox Woods +Foxall +Foxbay +Foxbeach +Foxberry +Foxberry Farms +Foxboro +Foxborough +Foxborough Hill +Foxbourne +Foxbridge +Foxburrows +Foxbury +Foxchase +Foxclove +Foxcombe +Foxcovert +Foxcreek +Foxcroft +Foxdale +Foxdells +Foxden +Foxdenton +Foxearth +Foxenden +Foxendown +Foxes +Foxfarm +Foxfield +Foxfields +Foxfire +Foxford +Foxgate +Foxglen +Foxglove +Foxgrape +Foxgrove +Foxhall +Foxhall Farm +Foxhall Manor +Foxham +Foxhays +Foxhead Manor +Foxhill +Foxhills +Foxhole +Foxholes +Foxhollow +Foxholm +Foxhound +Foxhunt +Foxhurst +Foxlair +Foxlake +Foxland +Foxlands +Foxley +Foxline +Foxlow +Foxmanor +Foxmeadow +Foxmoor +Foxmore +Foxon +Foxpoint +Foxridge +Foxs +Foxspring +Foxstone +Foxstones +Foxswallow +Foxtail +Foxton +Foxtrap +Foxtree +Foxtrot +Foxvale +Foxview +Foxwell +Foxwell Bend +Foxwood +Foxwoods +Foxworth +Foxworthy +Foy +Foye +Foyer +Foyette +Foyle +Fr +Fraatz +Frace +Fradkin +Fraga +Fragar +Fragrance +Fraint +Frairy +Fraiser +Fraley +Fraley Farm +Fram +Framar +Frambury +Frame +Framewood +Framfield +Framingdale +Framingham +Framley +Framlingham +Frampton +Frampton Park +Fran +Fran del +Francavilla +France +Franceen +Francemary +Francemont +Frances +Frances Green +Frances Hill +Frances McCormick +Francesca +Francessca +Franche Court +Franchise +Francine +Francis +Francis Crick +Francis Greenway +Francis J. Mcgrath +Francis Kelley +Francis Kelly +Francis Lewis +Francis Scott Key +Francis Short +Francis West +Francis Wyman +Franciscan +Francisco +Francisco Villa +Franck +Franclaire +Franco +Franconia +Franconia Commons +Franconia Forest +Frandsen +Franela +Franey +Frangipani +Franich +Frank +Frank Beames +Frank Brown +Frank Cox +Frank D Tanner +Frank E Rodgers +Frank Lloyd Wright +Frank McCue +Frank Oliveri +Frank Scott +Frank Tippett +Frank Turk +Frank W Burr +Frank Woolley +Frankay +Franke +Frankel +Frankford +Frankfort +Frankfort Square +Frankfurst +Frankfurt +Frankham +Frankie +Frankiln +Franklach +Frankland +Franklands +Frankle +Franklin +Franklin Canyon +Franklin Corner +Franklin Farm +Franklin Fox +Franklin Fr +Franklin Gibson +Franklin High +Franklin Hill +Franklin Hills +Franklin Lake +Franklin Manor +Franklin Oaks +Franklin Park +Franklin Park Service +Franklin Spring +Franklyn +Franklynn +Franko +Franks +Franks Valley +Frankson +Frankstowne +Frankswood +Frankton +Frankwood +Franlee +Franlo +Franmar +Franmil +Franquette +Franrose +Franscella +Fransean +Fransen +Fransioli +Franston +Frant +Franton +Frantz +Franusich +Franwall +Franz +Franz Valley +Franz Valley School +Franzen +Franzman +Frascatti +Frasco +Frase +Fraser +Frasinetti +Fraternal +Fraternity +Fraters +Frates +Frati +Fratis +Frattalone +Frauenfield +Fravel +Frawley +Fray +Frayne +Frays +Frazee +Frazer +Frazier +Frazier Lake +Frazier Lewis +Frean +Frear +Freas +Freathy +Freca +Frechette +Freckleton +Fred +Fred Allen +Fred Davis +Fred Russo +Fred Smith +Fred Wehran +Fred Wonran +Freda +Fredale +Fredana +Fredben +Fredbert +Freddie +Freddy +Frede +Fredela +Fredereickburg +Frederic +Frederica +Frederick +Frederick Douglas +Frederick Douglass +Frederick Sanger +Fredericks +Fredericksburg +Frederickson +Frederika +Frederiksen +Fredette +Fredi +Fredith +Fredon +Fredonia +Fredonian +Fredric +Fredrick +Fredricks +Fredrickson +Freds Oak +Fredson +Free +Free Green +Free Heath +Free Prae +Freeboard +Freeborn +Freebournes +Freedman +Freedom +Freedom Center +Freedom Farme +Freedom Park +Freedown +Freegrove +Freehauf +Freehaven +Freehill +Freehollow +Freeks +Freeland +Freeling +Freelon +Freeman +Freeman Shores +Freemans +Freemantle +Freemark +Freemasons +Freemont +Freeport +Freer +Freesia +Freestate +Freeston +Freestone +Freestone Flat +Freestone Ranch +Freestone Valley Ford +Freetown +Freetrade +Freeway +Freewood +Freezeout +Frei +Frei Bros Winery +Frei Ranch +Freight +Freisman +Freitas +Freke +Frelinghuysen +Freman +Fremantle +Fremlin +Fremlins +Fremont +Fremont Pines +Fremontia +French +French Barn +French Camp +French Creek +French Ford +French Hill +French Horn +French Lake +French Oaks +French Ranch Fire +French Trace +Frencham +Frenches +Frenchmans +Frenchmans Bend +Frenchmans Creek +Frenchmens +Frenchs +Frenchs Forest +Frendsbury +Freneau +Frensham +Frensham Heights +Frensham Vale +Frere +Freres +Fresa +Fresca +Fresco +Fresh Meadow +Fresh Meadows +Fresh Mill +Fresh Pond +Fresh Ponds +Fresh River +Fresh Wharf +Freshaire +Freshes +Freshfield +Freshfields +Freshford +Freshland +Freshwater +Freshwell +Freshwood +Fresno +Fresson +Freston +Freswick +Freta +Fretherne +Freud +Freund +Frewert +Frewin +Frewland +Frey +Freya +Freyman +Friar +Friar Tuck +Friarmere +Friars +Friars Place +Friary +Friberg +Fribourg +Frick +Fricourt +Frida +Friday +Fridays +Friden +Fridley +Frieda +Friedberg +Friedel +Friedland +Friedlund +Friedrich +Frieh +Friend +Friendless +Friendly +Friendlywood +Friends +Friends Choice +Friends House +Friendship +Frienza +Friern Watch +Friesen +Friesian +Frieston +Frieth +Friezland +Friezley +Frigate +Frigatebird +Frilsham +Frimley +Frimley Close Dunley +Frimley Green +Frimley Hall +Frimley High +Frindsbury +Fringe Tree +Frink +Frinsted +Frinton +Fripp +Frisbie +Frisby +Frisch +Frisco +Frisk +Friston +Fritch Creek +Frith +Frith End +Frith Hill +Friths +Frithwald +Frithwood +Fritsch +Frittenden +Fritz +Fritzen +Frizell +Frizlands +Froberg +Frobisher +Frodsham +Froehlich Farm +Froelich +Frog +Frog Grove +Frog Hall +Frog Pond +Froggy +Froghall +Froghole +Frogley +Frogmoor +Frogmore +Frogmore Park +Frognal +Frogs +Frogs Hall +Frogs Hole +Frogs Leap +Frohling +Froissart +Frolich +From +Fromandez +Frome +Fromelles +Fromer +Fromondes +Fromwich +Fronda +Frongillo Farm +Front +Front Field +Front Royal +Frontage +Frontana +Frontenac +Frontera +Frontero +Frontier +Frontier Trail +Frontignan +Frost +Frost Creek +Frost Lake +Frost Mill +Frost Pond +Frost Valley +Frostleaf +Frostwood +Frosty +Frothingham +Froude +Froxfield +Froxmer +Froyd +Froyle +Fruen +Fruit +Fruit Barn +Fruitdale +Fruitland +Fruitledge +Fruitridge +Fruitvale +Fruitwood +Frum +Frustuck +Fry +Frye +Frye Creek +Fryer +Fryer Creek +Fryerning +Fryers +Frying Pan +Frylands +Frymans +Fryston +Fteley +Fuchia +Fuchsia +Fuel Break +Fuel Farm +Fuente +Fuente de Paz +Fugelmere +Fugere +Fugett +Fuggle +Fuggles +Fuhrman +Fujiko +Fujita +Fujiyama +Fulbeck +Fulbert +Fulbourne +Fulbright +Fulbrook +Fulcher +Fulda +Fulford +Fulham +Fulham High +Fulham Palace +Fulham Park +Fulkerson +Fulks Corner +Fulks Farm +Full View +Fullagar +Fullam +Fullbrook +Fullbrooks +Fulle +Fuller +Fuller Brook +Fuller Creek +Fuller Heights +Fuller Mount +Fullerbrook +Fullers +Fullers Farm +Fullerton +Fullham +Fulling +Fulling Mill +Fullington +Fullwell +Fulmar +Fulmead +Fulmer +Fulmer Common +Fulmor +Fulready +Fulshaw +Fulthorp +Fulton +Fulton Shipyard +Fulton Square +Fulwell +Fulwell Park +Fulwich +Fulwood +Fumasi +Fumay +Fumia +Fun +Fundus +Funke +Funston +Furbarn +Furber +Furbush +Furci +Furey +Furler +Furley +Furlong +Furlongs +Furmage +Furman +Furmanville +Furnace +Furnace Brook +Furnace Colony +Furnace Farm +Furnace Hill +Furnace Mountain +Furnari Farm +Furnedge +Furner +Furness +Furnival +Furnlea +Furrells +Furrow +Fursby +Furse +Fursorb +Furth +Further +Further Green +Furtherwick +Furtherwood +Furwood +Fury +Furze +Furze Bushes +Furze Hill +Furze Platt +Furze Vale +Furzedown +Furzefield +Furzeham +Furzehill +Furzen +Fuschia +Fusden +Futuna +Futura +Fuyatt +Fyall +Fycke +Fye Foot +Fyfe +Fyffe +Fyfield +Fyke +Fyke Hollow +Fylde +Fyne +Fynes +Fyrbeck +Fysh +Fysie +G Commercial +G Fernwood +G Hall +G K +G Leeds Infirmary +G Line +G Petersen +GEOINT +GSK Fourth +Gaage +Gabby +Gabel +Gabeli +Gabes Rock +Gabilan +Gabirol +Gable +Gable Ridge +Gables +Gabriel +Gabriele +Gabriella +Gabrielle +Gabrus +Gaby +Gadara +Gadbridge +Gadbrook +Gadbury +Gadby +Gaddesden +Gaddi +Gaddini +Gaddum +Gaddy +Gade +Gadebridge +Gadesden +Gadeview +Gadigal +Gading +Gadley +Gadmore +Gadoury +Gads Hill +Gadsby +Gadsden +Gadsen +Gadwall +Gadwell +Gae Wood +Gael +Gaerloch +Gaffery +Gaffey +Gaffney +Gafford +Gafzelle +Gaga +Gagas +Gage +Gager +Gaggin +Gagne +Gagnon +Gagos +Gahant +Gaiger +Gail +Gail Ann +Gailen +Gailine +Gaillard +Gailmor +Gailview +Gain +Gainer +Gaines +Gainesville +Gainford +Gainsboro +Gainsborough +Gainsford +Gainsport +Gainsthorpe +Gainsville +Gainswood +Gair +Gairloch +Gaisford +Gaist +Gaither +Gaither Farm +Gaither Hunt +Gaitskell +Gala +Galahad +Galanis +Galara +Galashiels +Galata +Galatea +Galaxie +Galaxy +Galbraith +Galbrath +Galbreath +Galbreth +Galda +Galdana +Gale +Gale Ridge +Galea +Galen +Galena +Galer +Gales +Gales Point +Galesborough +Galesbury +Galesi +Galesville +Galetown +Galeucia +Galewood +Galga +Galgate +Galia +Galilee +Galindo +Galitz +Gall +Gall End +Gallagher +Gallahad +Gallahan +Galland +Gallant +Gallant Fox +Gallant Green +Gallants +Gallants Farm +Gallard +Gallatin +Gallaudet +Gallegos +Gallek +Gallen +Galleon +Galleons +Galleria +Galleron +Gallery +Galletta +Galley +Galley East +Galley Hill +Galley West +Galleydean +Galleyhill +Galleywall +Galleywood +Galli +Gallia +Galliard +Galliford +Galligan +Gallimore +Gallin +Gallina +Gallinelli +Gallinson +Gallions +Gallions View +Gallipoli +Gallison +Gallivan +Gallo +Gallogate +Gallop +Gallop Hill +Galloping Hill +Gallosson +Galloupe +Galloupes Point +Galloway +Gallows +Gallows Branch +Gallows Corner Main +Gallows Green +Gallows Hill +Gallows Tree +Gallup +Gallway +Gallwey +Gallypot +Gallys +Galpin +Galpin Lake +Galston +Galsworthy +Galt +Galtier +Galton +Galty +Galusha +Galvani +Galveston +Galvez +Galvin +Galway +Galway Bay +Gamay +Gambel Oak +Gambetta +Gambia +Gambier +Gambini +Gamble +Gamble Hill +Gambles +Gamblin +Gamboa +Gambole +Gambonini +Gambrel Bank +Gambril +Gambrill +Gambrills +Gambrills Cove +Game +Game Cock +Game Creek +Game Farm +Game Lord +Game Preserve +Gamecock +Gamecock Canyon +Gamenya +Games +Gamewell +Gamid +Gamlen +Gamma +Gammell +Gammie +Gammon +Gammons +Gamon +Gamut +Gandangara +Gander +Gander Green +Gandolfi +Gandy Dancer +Gandys +Ganels +Ganges +Gangurlin +Ganic +Ganley +Ganna +Gannawatte +Ganners +Ganners Way Ganners +Gannet +Gannett +Gannett Pasture +Gannon +Gannons +Gano +Gansett +Gansevoort +Gant +Gantner +Ganton +Gantry +Ganzer +Gap +Gap Head +Gap View +Gapemouth +Gaping +Garabaldi +Garabedian +Garage +Garand +Garaventa +Garaventa Ranch +Garavogue +Garazi +Garbala +Garbarino +Garber +Garber Hill +Garbo +Garbo Ranch +Garbrook +Garbutt +Garcal +Garceau +Garces +Garcez +Garcia +Garcia Ranch +Gard +Garda +Gardella +Garden +Garden Brook +Garden City +Garden Close Hanworth +Garden Court +Garden Creek +Garden Cty +Garden Gate +Garden Grove +Garden Heights +Garden Hill +Garden House +Garden Meadow +Garden Ridge +Garden Rock +Garden Rose +Garden Terrace +Garden Tract +Garden View +Garden Wood +Gardena +Gardendale +Gardendell +Gardender +Gardener +Gardeners +Gardenia +Gardensen +Gardenside +Gardenvale +Gardenview +Gardenvine +Gardenwood +Gardere +Gardiner +Gardiner Glen +Gardiners +Gardner +Gardner Ranch +Gardners +Gardyne +Gareis +Garendon +Gareth +Garey +Garfield +Garfield Park +Garfinkle +Garford +Garforth +Garforth Main +Gargery +Gargrave +Garibaldi +Garie +Garigal +Garin +Garino +Garison +Garit +Garland +Garlands +Garlen +Garlichill +Garlick +Garlieb +Garlies +Garligne +Garling +Garlinge +Garlisch +Garlot +Garlough +Garman +Garment +Garmon +Garmont +Garnault +Garner +Garnero +Garners +Garnet +Garnet Rock +Garnett +Garnetts +Garnham +Garnica +Garnsey +Garofallo +Garofolo +Garold +Garove +Garrabrant +Garran +Garrans +Garrard +Garratt +Garratts +Garraween +Garrawille +Garrecht +Garret +Garret Hill +Garretson +Garrett +Garrett Park +Garrett Spillane +Garretts +Garric +Garrick +Garriland +Garrion +Garrison +Garrity +Garrod +Garron +Garrone +Garrong +Garrow +Garry +Garry Glen +Garry Oak +Garryanna +Garryford +Garsdale +Garside +Garside Hey +Garson +Garst +Garstang +Garston +Garswood +Gartfern +Garth +Garth Willow +Garthland +Garthmere +Garthorne +Garthorp +Garthowen +Garthwaite +Gartland +Gartleman Farm +Gartlet +Gartley +Gartmore +Gartney +Garton +Gartside +Gartwick +Garvan +Garvary +Garver +Garvey +Garvies Point +Garvin +Garvin Brook +Garvock +Garway +Garwick +Garwood +Garwood Glen +Gary +Gary Galli +Gary Hill +Gary Lee +Gary Ray +Garys Mill +Garywood +Garza +Garzoli +Garzot +Gas +Gas House +Gas Light +Gas Well +Gas Wharf +Gas Works +Gasbarri +Gascoigne +Gasconge +Gascony +Gascoyne +Gasden +Gaselee +Gashes +Gaskarth +Gaskell +Gasket +Gaskill +Gaskin +Gaskins +Gaslight +Gaspar +Gassett +Gassiot +Gassmann +Gasson +Gasson Wood +Gassons +Gast +Gastein +Gaston +Gaston Bridge +Gastville +Gaswell +Gasworks +Gaszi +Gatacre +Gataker +Gatch +Gatcombe +Gate +Gate Dancer +Gate Farm +Gate Field +Gate House +Gate Park +Gateau +Gatecliff +Gatefield +Gateford +Gateforth +Gatehall +Gatehampton +Gatehead +Gatehill +Gatehouse +Gateley +Gately +Gateon House +Gatepost +Gater +Gates +Gates Canyon +Gates Creek +Gates Green +Gates Pond +Gatesborough +Gatesby +Gatesden +Gatesgarth +Gateshead +Gateside +Gatestone +Gatestone Square +Gateview +Gatewater +Gateway +Gateway Center +Gateway Oaks +Gateway Overlook +Gateway Park +Gatewood +Gathering +Gathorne +Gathurst +Gatland +Gatley +Gatliff +Gatlin +Gatling +Gaton +Gatonby +Gatsby +Gatses +Gatter +Gatto +Gatton +Gatton Park +Gattucio +Gatward +Gatwick +Gatzmer +Gaub +Gauden +Gaudet +Gaudette +Gaudreau +Gaug Farm +Gauge +Gauger +Gaugler +Gauguin +Gauldy +Gaulin +Gault +Gaulton +Gaundabert +Gaunt +Gauntlet +Gauntlett +Gaurdino +Gautier +Gautrey +Gavel +Gavell +Gavello +Gaven +Gaverick +Gavern +Gaveston +Gavestone +Gavilan +Gavin +Gavins Pond +Gavotte +Gavrin +Gawain +Gawaine +Gawber +Gawen +Gawler +Gawne +Gawron +Gawsworth +Gawthorpe +Gay +Gay Bowers +Gay Head +Gay Lore +Gaycroft +Gaydon +Gaye +Gayfere +Gayfields +Gayford +Gayhouse +Gayhurst +Gayland +Gaylawn +Gayle +Gayley +Gayline +Gaylor +Gaylord +Gaymark +Gaymore +Gaynelle +Gaynes Hill +Gaynesford +Gaynor +Gays +Gaysham +Gaythorne +Gayton +Gayville +Gaywood +Gaza +Gazania +Gazebo +Gazehill +Gazelle +Gazos Creek +Gazza +Gazzard +Geana +Gear +Gearny +Gears +Gearty +Geary +Geaton +Geb +Gebhardt +Gebhart +Gebo +Geddes +Geddings +Geddington +Gedeney +Gedick +Gedney +Gedney Park +Gee +Geebung +Geelong +Geer +Geere +Geewan +Geffrye +Gehart +Gehb +Gehl +Gehricke +Gehrig +Gehringer +Geiger +Geigerich +Geise +Geisler +Geissler +Gelardi +Gelato +Gelb +Gelb Ranch +Gelbke +Geldart +Gelder +Gelderd +Geldert +Geldeston +Gelding +Geldner +Gelinas +Gellatly +Gellert +Gellineau +Gelling +Gelnaw +Gelndene +Gelsthorpe +Gelston +Gem +Gemalla +Gemas +Gemini +Gemma +Gemmur +Gemoore +Gemstone +Gen Mills +Gen. Kennedy +GenStar +Genazzi +Genco +Genders +Gendre +Gendron +Gene +General +General Aviation +General Heath +General Henry Knox +General Holmes +General Lee +General Mills +General Mueller +General R. W. Berry +General San Martin +General Sieben +General Smallwood +General Warren +General Waterbury +General Winglass +General Wolfe +Generals +Generation +Generations +Genes +Genesee +Genesis +Geneso +Genessee +Genest +Genesta +Genetti +Geneva +Genevieve +Genevra +Genex +Geng +Genie +Genine +Genista +Genna +Gennene +Gennep +Genner +Gennessee +Genoa +Genoble +Genotin +Genova +Genovesio +Gensell +Genstar +Genther +Gentian +Gentile +Gentilly +Gentle +Gentle Light +Gentle Shade +Gentlees +Gentles +Gentlewood +Gentner +Gentry +Gentrytown +Genty +Genualdi +Genyn +Geoffery +Geoffrey +Geoffreyson +Geoffroy +Geofrey +Geordan +Georeffy Tuttle +Georgann +Georganna +George +George Aggott +George Barton +George Baylor +George Beard +George Bell +George Brown +George C Marshall +George Clauss +George F Willett +George Green +George Groves +George Hill +George Hood +George Hunter +George Julius +George Lee +George Leven +George Lovell +George Mann +George Mason +George Mathers +George McKay +George Michas +George Mobbs +George Moran +George Nelson +George Norman +George Oaks +George P Hassett +George R. Visconti +George River +George V +George Wacker +George Washington +George Weber +George Willing +George Young +Georgean +Georgeham +Georgene +Georges +Georges River +Georgetown +Georgetown Commons +Georgetowne +Georgetta +Georgewood +Georgia +Georgian +Georgiana +Georgianna +Georgina +Georgine +Georginia +Georgio +Georjean +Gera +Gerada +Geraint +Gerald +Geraldine +Geralds +Geraldton +Geralind +Geralynn +Geran +Geranimo +Geranium +Gerard +Geraud +Gerber +Gerbera +Gerbulin +Gerda +Gerdes +Gerdts +Gerdview +Gereghty +Gerek +Geren +Gerfalcon +Gerhard +Gerhardt +Gerhig +Geri +Gericke +Gerine Blossom +Geringer +Gerino +Gerken +Gerlach +Germack +Germain +Germaine +German +German Church +Germander +Germane +Germania +Germanium +Germano +Germantown +Germantown Park +Germany +Germone +Germyn +Gernon +Gerogina +Gerome +Gerona +Geronimo +Gerpins +Gerrale +Gerrard +Gerrards +Gerrards Cross +Gerri +Gerridge +Gerring +Gerrish +Gerritsen +Gerroa +Gerry +Gerrymander +Gershom +Gershwin +Gerstner +Gerstung +Gerten +Gerth +Gertmin +Gertrude +Gertz +Gertzen +Gervais +Gervase +Gervil +Gerwig +Gesford +Geske +Gesna +Gesner +Gessner +Gest +Gestingthorpe +Getchell +Gethsemane +Getson +Gettler +Getty +Gettysburg +Getyunga +Getz +Getzelman +Geyer +Geylen +Geyser +Geyser Ridge +Geysers +Geyserville +Gg +Ggp Access +Ghadbank +Gharkey +Ghent +Gherty +Ghillotti +Ghione +Ghisletta +Ghormley +Ghost Pony +Ghostley +Ghyll +Ghyll Beck +Ghyll Side +Ghyllroyd +Giacalone +Giadeczka +Giahos +Giampaoli +Gianelli +Gianera +Gianna +Giannecchini +Gianni +Giannini +Giannone +Giant +Giant Arches +Giant Oak +Giant Panda +Giants +Giaramita +Giasson +Gib +Gibb +Gibbens +Gibbes +Gibbet +Gibbet Hill +Gibbins +Gibbon +Gibbons +Gibbons Church +Gibbons Ranch +Gibbs +Giberson +Gibfield +Gibfield Park +Gibian +Giblets +Giblett +Gibraltar +Gibraltar Island +Gibralter +Gibson +Gibson Canyon +Gibson Oaks +Gibson Transfer +Gibsons +Gidding +Giddings +Giddyhorn +Gidea +Gideon +Gideons +Gideons Point +Gidgee +Gidji +Gidley +Gidlow +Gidya +Gieger +Giegerich +Gierz +Giesbach +Giese +Gieseke +Giesen +Giesman +Giffard +Giffen +Giffin +Giffnock +Gifford +Gifford Pinchot +Giffords +Giffords Cross +Gifhorn +Gift +Gig +Gigante +Gigey +Gigg +Giggs Hill +Gighill +Gigi +Giguere +Gil Blas +Gila +Gilander +Gilardi +Gilardoni +Gilba +Gilbert +Gilbert L Bean +Gilberto +Gilbertson +Gilbey +Gilboa +Gilbourne +Gilbralter +Gilbreth +Gilbride +Gilbulla +Gilburt Hill +Gilcar +Gilchrest +Gilchrist +Gilcrest +Gilda +Gilda Brook +Gildabrook +Gildar +Gildare +Gildea +Gilden +Gildenhill +Gildenthorpe +Gilder +Gilderdale +Gilders +Gildersdale +Gildersleeve +Gildersome +Gildersome Back +Gildridge +Gile +Giles +Giles Run +Gilfeather +Gilfillan +Gilford +Gilgandra +Gilger +Gilham +Gilhams +Gill +Gill Bent +Gill Port +Gillam +Gillard +Gillbane +Gillbrook +Gilleevan +Gillen +Gillender +Gillens +Gillenwater +Gillespie +Gillespies +Gillet +Gillett +Gillette +Gilletts +Gillham +Gilliam +Gillian +Gillian Park +Gilliat +Gillick +Gillier +Gillies +Gilligans +Gillimer +Gilling +Gillingham +Gillingham Gate +Gillings +Gillis +Gillman +Gillmans +Gillmor +Gillmore +Gillon +Gillooly +Gillpepper +Gillridge +Gills +Gills Hill +Gillville +Gillwinga +Gilly +Gilma +Gilman +Gilmar +Gilmartin +Gilmer +Gilmerton +Gilmore +Gilmour +Gilmoure +Gilnow +Gilpen +Gilpin +Gilray +Gilrix +Gilroy +Gilroy Hot Springs +Gilruth +Gilsan +Gilsland +Gilson +Gilstead +Gilston +Giltbrook +Giltner +Gilton +Giltspur +Gilway +Gilwell +Gilwinga +Gilwood +Gimbal +Gimbel +Gina +Gina Nicole +Ginahgulla +Ginavale +Gincroft +Ginda +Ginden +Gindurra +Ginesi +Ginge +Gingells Farm +Ginger +Ginger Brook +Ginger Creek +Ginger Root +Ginger Wood +Ginger Woods +Gingerblossom +Gingerbread +Gingerbrook +Gingerview +Gingerwood +Gingham +Gingrich +Ginhams +Ginita +Ginkgo +Ginko +Ginley +Ginn +Ginniver +Ginny +Gino +Ginseng +Ginther +Ginu +Gio +Gioconda +Giorgano +Giovanetti +Giovannetti +Giovanni +Gipps +Gipps Cross +Gipson +Gipsy +Gipton Approach York +Gipton Oak Tree +Gipton Wood +Giralda +Girard +Giraud +Giraudo +Gird +Girdle +Girdler +Girdlers +Girdlestone +Girdwood +Gironde +Girouard +Girra +Girralong +Girraween +Girrilang +Girtin +Girton +Girvan +Girvin +Gisborn +Gisbourne +Gisburn +Gisburne +Gischel +Gisela +Gisella +Giselle +Gissing +Gist +Giuffrida +Giusti +Givan +Given +Givendale +Givens +GizMo +Gizmo +Glabe +Glabyn +Glacial Falls +Glacier +Glacier Park +Glacier Point +Glacier Ridge +Glackens +Glad +Glad Valley +Gladbeck +Gladden +Gladdie +Gladding +Glade +Glade Hill +Glade Spring +Glader +Glades +Gladeside +Gladesville +Gladeswood +Gladewright +Gladhill +Gladiator +Gladiola +Gladiolus +Gladish +Gladlands +Gladmore +Gladney +Gladnor +Gladsdale +Gladsmuir +Gladston +Gladstone +Gladstone Terrace +Gladswood +Gladville +Gladwalt +Gladwell +Gladwin +Gladwood +Gladwyn +Gladwyne +Gladys +Gladys May +Glafil +Glaisdale +Glaisher +Glaister +Glaizewood +Glamford +Glamis +Glamorgan +Glancy +Glandon +Glandore +Glandy Glen +Glanfield +Glanleam +Glanmire +Glanmor +Glanthams +Glantz +Glanville +Glanvor +Glanz +Glarner +Glarus +Glasbrook +Glascock +Glascoe +Glascow +Glaserton +Glasford +Glasgow +Glasmere +Glass +Glass House +Glass Mountain +Glassboro +Glasscock +Glassenbury +Glasser +Glasseys +Glasshill +Glasshouse +Glasslyn +Glassmanor +Glassmill +Glassop +Glassword +Glaston +Glastonberry +Glastonbury +Glatton +Glaude +Glauser +Glavis +Glaydin Woods +Glazbury +Glazebrook +Glazebury +Glazer +Glazier +Glaziers +Glazzy +Gleahaven +Gleaming Wood +Gleane +Gleaner +Gleason +Gleason Acres +Gleason Lake +Gleasondale +Gleave +Gleaves +Glebe +Glebe Heights +Glebe House +Glebe Point +Glebe View +Glebefield +Glebeland +Glebelands +Gleden +Gledhall +Gledhill +Gledhow +Gledhow Lidgett +Gledhow Park +Gledhow Valley +Gledhow Wood +Gledstanes +Gledwood +Gledwood Wood +Gleed +Gleedsville +Gleeland +Gleeson +Gleffe +Glegg +Glemar +Glen +Glen Abbey +Glen Albyn +Glen Alden +Glen Allan +Glen Alpine +Glen Alto +Glen Arbor +Glen Arms +Glen Artney +Glen Aulin +Glen Avon +Glen Ayre +Glen Bott +Glen Brae +Glen Briar +Glen Byron +Glen Cannon +Glen Canyon +Glen Carlyn +Glen Cove +Glen Cove Oyster Bay +Glen Creek +Glen Crest +Glen Cross +Glen Curtiss +Glen Dale +Glen Davies +Glen Dell +Glen Donegal +Glen Eagle +Glen Eagles +Glen Echo +Glen Edge +Glen Edin +Glen Ellen +Glen Ellyn +Glen Elyn +Glen Entrance +Glen Eyrie +Glen Faba +Glen Farm +Glen Fire +Glen Firth +Glen Flora +Glen Forest +Glen Fr +Glen Garry +Glen Gary +Glen Gate +Glen Gerry +Glen Gery +Glen Goin +Glen Gorham +Glen Gray +Glen Hanleigh +Glen Hannah +Glen Harbor +Glen Haven +Glen Head +Glen Heather +Glen Heights +Glen Hill +Glen Hollow +Glen Hook +Glen Innes +Glen Irene +Glen Isle +Glen Ivy +Glen Keith +Glen Lake +Glen Logan +Glen Lomond +Glen Manor +Glen Mar +Glen Margaret +Glen Mawr +Glen Meadow +Glen Mill +Glen Miller +Glen Mor +Glen Oak +Glen Oakes +Glen Oaks +Glen Oban +Glen Ora +Glen Ormond +Glen Park +Glen Paul +Glen Pointe +Glen Ridge +Glen Rigde +Glen Rock +Glen Rose +Glen Ross +Glen Rouken E +Glen Sharon +Glen Shell +Glen Side +Glen Spring +Glen Taylor +Glen Toro +Glen Tree +Glen Una +Glen Valley +Glen View +Glen Vista +Glen Washington +Glen Wilding +Glen Willow +Glenada +Glenaffric +Glenair +Glenaire +Glenalla +Glenallan +Glenallen +Glenalmond +Glenark +Glenarm +Glenarms +Glenarvon +Glenavon +Glenavy +Glenayr +Glenayre +Glenbar +Glenbard +Glenbarr +Glenberry +Glenboro +Glenborough +Glenbourne +Glenbrae +Glenbriar +Glenbrook +Glenbrook Crest +Glenbrook Hospital +Glenbrooke +Glenbrooke Woods +Glenbuck +Glenburne +Glenburnie +Glenby +Glencairn +Glencannon +Glencar +Glencarl +Glencarron +Glencliff +Glenclift +Glencoe +Glencorse +Glencourse +Glencourt +Glencove +Glencoyne +Glencrest +Glencroft +Glencross +Glenda +Glendale +Glendall +Glendalough +Glendarvon +Glendell +Glendene +Glendenning +Glendevie +Glendevon +Glendish +Glendon +Glendoon +Glendora +Glendower +Glenduin +Glendundee +Gleneagle +Gleneagles +Gleneden +Glenelg +Glenella +Glenellen +Glenellyn +Glenerye +Glenesk +Glenfair +Glenfaire +Glenfarg +Glenfarne +Glenfern +Glenferrie +Glenfield +Glenfield Mews +Glenfinnan +Glenford +Glenforth +Glenfruin +Glenfyne +Glengalen +Glengall +Glengarif +Glengariff +Glengarnock +Glengarrie +Glengarrif +Glengarry +Glengarth +Glengary +Glengoin +Glengreen +Glengyle +Glenham +Glenhaven +Glenhazel +Glenheath +Glenheather +Glenhill +Glenhome +Glenhouse +Glenhurst +Glenice +Glenilla +Glenisia +Glenister +Glenister Park +Glenisters +Glenkirk +Glenlake +Glenland +Glenlawn +Glenlea +Glenlee +Glenlo +Glenlock +Glenloe +Glenluce +Glenly +Glenlyn +Glenmalure +Glenmar +Glenmark +Glenmary +Glenmeadow +Glenmere +Glenmere Park +Glenmist +Glenmont +Glenmoor +Glenmora +Glenmore +Glenmore Spring +Glenmount +Glenn +Glenn Coolidge +Glenn Cove +Glenn Curtiss +Glenn Dale +Glenn Ellen +Glenna +Glennan +Glennell +Glennie +Glennon +Glenns +Glennville +Glenny +Glenoak +Glenoban +Glenoe +Glenola +Glenolden +Glenora +Glenorchy +Glenpark +Glenparke +Glenpine +Glenriddle +Glenridge +Glenrio +Glenrise +Glenrock +Glenroe +Glenrosa +Glenrose +Glenross +Glenrowan +Glenrown +Glenroy +Glens +Glensdale +Glenshaw +Glenshiel +Glenshire +Glenside +Glentham +Glenthorn +Glenthorne +Glenthorpe +Glenton +Glentrammon +Glentree +Glentrees +Glentworth +Glenugie +Glenure +Glenvale +Glenview +Glenvilla +Glenville +Glenwari +Glenway +Glenwild +Glenwillow +Glenwix +Glenwood +Glenwood Dale +Glenwood Dyer +Glenwood Lansing +Glenwoodie +Glenworth +Glenyar +Glenys +Gless +Glezen +Glidden +Gliddon +Glide +Glider +Glimpsewood +Glines +Glissade +Glisson +Glittering Light +Glnrosa +Global +Globe +Globe Farm +Globe Pond +Globe Theatre +Glodwick +Glori Dawn +Gloria +Gloria Jean +Glorietta +Glorieux +Glory +Glory Mill +Glos +Glossop +Glossop Brook +Gloster +Gloucester +Glouceston +Glouchester +Glouster +Glover +Glovers +Glovers Brook +Glow +Gloxinia +Glueck +Gluek +Glumack +Glycena +Glygena +Glymont +Glymont Crest +Glyn +Glynde +Glyndon +Glynfield +Glynis +Glynn +Glynne +Glynnis Rose +Glynwood +Gnarbo +Gnarled Oak +Gnekow +Gnesa +Goad +Goat +Goat Hall +Goat Hill +Goat House +Goat Rock +Goaters +Goatham +Goatlees +Goatley +Goatsfield +Goatsmoor +Goatswood +Gobernadores +Gobind +Gobions +Goble +Godair +Godbert +Godbold +Goddard +Goddard Memorial +Godden +Goddings +Goddington +Goddu +Goden +Godetia +Godfrey +Goding +Godington +Godinton +Godley +Godliman +Godly +Godman +Godmans +Godmond Hall +Godolphin +Godric +Godson +Godspeed +Godston +Godstone +Godstone Green +Godward +Godwin +Goebel +Goecken +Goeller +Goerke +Goes +Goesel +Goethals +Goethe +Goethe Park +Goettingen +Goetz +Goff +Goffe +Goffle +Goffle Hill +Goffs +Goffs Oak +Goffs Park +Gogel +Gogh +Gogmore +Gohagen +Goiffon +Goin +Going +Goins +Goirle +Golansky +Golborne +Gold +Gold Arbor +Gold Bar +Gold Bluff +Gold Brook +Gold Camp +Gold Canal +Gold Center +Gold Coast +Gold Country +Gold Course +Gold Creek +Gold Cup +Gold Dust +Gold Express +Gold Field +Gold Flat +Gold Flint +Gold Gulch +Gold Kettle +Gold Lake +Gold Meadow +Gold Mine +Gold Nugget +Gold Oak +Gold Parke +Gold Pointe +Gold Poppy +Gold Ridge +Gold River +Gold Run +Gold Rush +Gold Valley +Gold Yarrow +Goldberg +Goldberry +Goldborne +Goldbridge +Goldcliff +Goldcoast +Goldcrest +Goldcup +Golden +Golden Acre +Golden Acres +Golden Arrow +Golden Aspen +Golden Ball +Golden Bay +Golden Bear +Golden Canyon +Golden Centre +Golden Chapel +Golden Corn +Golden Cove +Golden Cross +Golden Days Access +Golden Eagle +Golden Eye +Golden Falcon +Golden Fleece +Golden Foothill +Golden Gate +Golden Grove +Golden Harvest +Golden Heights +Golden Hill +Golden Hills +Golden Hinde +Golden Lake +Golden Larch +Golden Leaf +Golden Light +Golden Manor +Golden Meadow +Golden Oak +Golden Oaks +Golden Pheasant +Golden Pond +Golden Poppy +Golden Post +Golden Rain +Golden Raintree +Golden Ridge +Golden Rod +Golden Rose +Golden Run +Golden Russet +Golden Sage +Golden Sands +Golden Springs +Golden Sunset +Golden Tree +Golden Triangle +Golden Valley +Golden View +Golden West +Goldencrest +Goldeneye +Goldenhill +Goldenlake +Goldenrain +Goldenrod +Goldentree +Goldenview +Goldfield +Goldfinch +Goldfinger +Goldhaber +Goldhanger +Goldhawk +Goldie +Golding +Goldingham +Goldings +Goldington +Goldlay +Goldleaf +Goldman +Goldmine +Goldney +Goldrill +Goldrings +Goldsands +Goldsberry +Goldsboro +Goldsborough +Goldsdown +Goldsel +Goldsmid +Goldsmith +Goldsmiths +Goldstein +Goldsworth +Goldsworthy +Goldthwait +Goldthwaite +Goldwell +Goldwyn +Goleta +Golf +Golf Academy +Golf Club +Golf Course +Golf Course Access +Golf Creek +Golf Crest +Golf Edge +Golf Estates +Golf Greens +Golf House +Golf Links +Golf Trail +Golf View +Golf Vista +Golfe +Golfers +Golfers Ridge +Golford +Golfview +Goliath +Gollan +Gollum +Gombert +Gomer +Gomersal +Gomes +Gomez +Gomm +Gomoljak +Gomshall +Gona +Gonda +Gondar +Gondek +Gondola +Gone Away +Gong Hill +Gonnelli +Gonsalves +Gonson +Gonville +Gonzaga +Gonzales +Gonzalez +Goobarah +Gooch +Good +Good Blood +Good Harbor +Good Hope +Good Lion +Good Luck +Good Samaritan +Good Speed +Good Spring +Good Valley +Goodacre +Goodale +Goodall +Goodboys +Goodbury +Goodchap +Goodchild +Goode +Goodell +Gooden +Goodenia +Goodenough +Goodenow +Goodey +Goodfellow +Goodge +Goodhall +Goodhart +Goodhew +Goodhill +Goodhope +Goodhue +Goodhurst +Goodier +Goodin +Gooding +Goodinge +Goodlad +Goodland +Goodlands +Goodlet +Goodloe +Goodloes Promise +Goodman +Goodmans +Goodmayes +Goodner +Goodnestone +Goodnough +Goodnow +Goodport +Goodrich +Goodrick +Goodridge +Goodrington +Goodrow +Goodsell +Goodsir +Goodson +Goodstone +Goodview +Goodvine +Goodward +Goodway +Goodways +Goodwells +Goodwill +Goodwin +Goodwives River +Goodwood +Goodworth +Goodwyn +Goodwyns +Goody +Goody Cross +Goodyear +Goodyers +Goojerat +Goold +Goold Park +Goole +Goonaroi +Goonda +Goondah +Goondari +Goora +Goorari +Goorawahl +Gooraway +Gooreen +Goorgool +Gooroa +Goose +Goose Cove +Goose Creek +Goose Glen +Goose Haven +Goose Hill +Goose Lake +Goose Point +Goose Pond +Goose Rye +Gooseacre +Gooseberry +Goosebrook +Goosecroft +Goosegreen +Gooselake +Gooseley +Gooseneck +Goostrey +Gopher +Gophir +Gopsall +Gorada +Gorby +Gordan +Gorden +Gordon +Gordon Johnston +Gordon McKinnon +Gordon Parker +Gordon Valley +Gordonhurst +Gordonia +Gordons +Gordy +Gore +Gore Court +Gore Gable +Gore Green +Goredale +Gorefield +Goresbrook +Goreside +Gorgas +Gorge +Gorgo +Gorham +Goring +Goring Heath +Gorinski +Gorizia +Gorky +Gorleston +Gorman +Gormel +Gormley +Gornall +Gorniak +Gornik +Goroka +Goroki +Gorrel +Gorring +Gorringe +Gorse +Gorse Bank +Gorse Covert +Gorse Hall +Gorse Hill +Gorse Wood +Gorses +Gorsewood +Gorsey +Gorsey Bank +Gorsey Hill +Gorsey Mount +Gorsline +Gorst +Gorstage +Gorsuch +Gort +Gortner +Gorton +Gorwin +Gory Brook +Gosbecks +Gosbell +Gosberton +Gosbrook +Gosby +Goscombs +Gosden +Gosden Hill +Gosfield +Gosforth +Goshawk +Gosheff +Goshen +Goshen Hunt +Goshen Oaks +Goshen School +Goshen Valley +Goshen View +Gosling +Gosling Hill +Gosmore +Gosnell +Gosnold +Gospel Union +Gospodnevich +Gosport +Goss +Goss Hall +Goss Pond +Gossabe +Gossage +Gossamer +Gosselin +Gossell +Gosser +Gosset +Gosshill +Gossling +Gossops +Gossops Green +Gosterwood +Gostlin +Gostling +Goswell +Goswell End +Goth +Gotham +Gotham Hill +Gothberg +Gothic +Gothland +Gothwaite +Gotland +Gott +Gottenham +Gotthardt +Gottlieb +Gotts +Gotts Park +Gottschalk +Gotzian +Goucher +Gouda +Goudhurst +Gougar +Gouge +Gough +Gougham +Goughs +Goularte +Goulburn +Gould +Gould Hill +Gouldbury +Goulden +Goulder +Gouldin +Goulding +Gouldman +Goulds +Goulston +Goulton +Gourlay +Gourley +Gousy +Gouthier +Gouverneur +Gouwens +Govan +Gove +Govenors +Gover +Government +Government Center +Government House +Governo +Governor +Governor Andrew +Governor Belcher +Governor Bridge +Governor Carver +Governor Endicott +Governor Fuller +Governor Hutchinson +Governor Long +Governor Macquarie +Governor Oden Bowie +Governor Peabody +Governor Saltonstall +Governor Winthrop +Governor Yeardley +Governors +Governors Bay +Governors Bridge +Governors Ridge +Govert +Govett +Gow +Gowan +Gowan Brae +Goward +Gowdey +Gowell +Gower +Gowerdale +Gowers +Gowin +Gowing +Gowlett +Gowrie +Goya +Goyak +Goyen +Goyt +Goyt Valley +Gozo +Grace +Grace Ann +Grace Church +Grace Estates +Grace Keller +Grace Leather +Grace Max +Grace Memorial +Grace Valley +Grace View +Gracechurch +Gracedale +Gracefield +Gracel +Graceland +Gracelands +Gracemar +Gracemere +Gracemere Lake +Gracemore +Graces +Graceview +Graceway +Gracewood +Gracey +Grachur +Gracie +Graciella +Gracin +Gracious +Gracious Pond +Gradall +Grade +Graduates +Gradwell +Grady +Graeagle +Graeloch +Graeme +Graemere +Graemesdyke +Graf +Grafe +Graff +Graffian +Graffigna +Grafton +Grafton Farm +Grafton Park +Gragg +Grago +Graham +Graham Creek +Graham Hill +Graham Park +Grahame +Grahampton +Grahm +Grahn +Graicious +Graiden +Grain +Grainery +Grainfield +Grainger +Graingers +Grains +Gralynn +Gramar School +Gramarcy +Gramatan +Gramby +Gramercy +Gramercy Park +Gramford +Grammar School +Grammercy +Grammont +Grammy +Grampian +Grams Private +Gramsie +Gran Deur +Granada +Granado +Granard +Granart +Granary +Granaston +Granborough +Granby +Grand +Grand Banks +Grand Birch +Grand Canal +Grand Canyon +Grand Central +Grand Champion +Grand Comons +Grand Corner +Grand Coulee +Grand Cru +Grand Cypress +Grand Depot +Grand Fir +Grand Hamptons +Grand Haven +Grand Highlands +Grand Hill +Grand Island +Grand Lake +Grand Meadow +Grand Mesa +Grand Oaks +Grand Park +Grand Point +Grand Pointe +Grand Prairie +Grand Pre +Grand Prix +Grand Reserve +Grand Ridge +Grand Rio +Grand River +Grand Summit +Grand Targee +Grand Terrace +Grand Teton +Grand Teton Park +Grand Tour +Grand Tree +Grand Valley +Grand View +Grandads +Grandale +Grandborough +Grandby +Grande +Grande Park +Grande Pines +Grande View +Grande Vista +Grandee +Granden +Grandfield +Grandhaven +Grandiflora +Grandin +Grandison +Grandmas +Grandparents +Grandpere +Grandshore +Grandstaff +Grandstand +Grandview +Grandwind +Grandwood Lake +Grandys +Grane +Granelli +Graney +Granfield +Grange +Grange Court +Grange Farm +Grange Fields +Grange Hall +Grange Park +Grange Valley +Grange View +Grangecourt +Grangefield +Grangefields +Grangeforth +Grangehill +Granger +Grangers Dairy +Grangethorpe +Grangewood +Grangnelli +Granison +Granite +Granite Creek +Granite Crossing +Granite Park +Granite Ridge +Granite Rock +Graniteville +Granitewood +Granlee +Granleigh +Granli +Grannis +Granniss +Granny +Gransden +Granshaw +Gransmoor +Grant +Grant Chapman +Grant Line +Grant Lorenz +Grant Mills +Grant Park +Grant School +Grantbridge +Grantham +Grantland +Grantley +Grantock +Granton +Grants +Grants Mill +Grantully +Grantwood +Granvaile +Granville +Granzotto +Grapal +Grapanche +Grape +Grape Leaf +Grape Shot +Grape Vine +Grapes +Grapevine +Grapewood +Graphic +Grappenhall +Grapple +Grasdene +Grasmead +Grasmere +Grason +Grass Lake +Grass Valley +Grasscroft +Grasselli +Grassfield +Grassholme +Grasshopper +Grassina +Grassingham +Grassington +Grassland +Grasslands +Grassmere +Grasswood +Grassy +Grassy Garth +Grassy Knoll +Grassy Pond +Grassy Slope Fire +Grassy Sprain +Grassymeade +Grater +Gratia +Graton +Gratrix +Grattan +Gratten +Gratto +Gratton +Grattons +Gratuity +Gratwicke +Grau +Gravatt +Grave +Grave Oak +Gravel +Gravel Bank +Gravel Hill +Gravel Pit +Gravel Pit Haul +Gravel Pits +Gravel Point +Graveley +Graveleythorpe +Gravelly +Gravelly Bottom +Gravelly Brook +Gravelly Hill +Gravelly Point +Gravelye +Graveney +Gravenhurst +Gravenmoor +Gravenstein +Graver +Graves +Gravesend +Gravesend Neck +Gravestone +Gravett +Gravetts +Graveyard +Gravity Car +Gray +Gray Barn +Gray Beach +Gray Beech +Gray Birch +Gray Cliff +Gray Farms +Gray Fox +Gray Hawk +Gray Heron +Gray Oaks +Gray Owl +Gray Rock +Gray Wing +Graybar +Graybill +Graybriar +Grayburn +Graydon +Grayfield +Grayfriars +Grayham +Grayhampton +Grayhawk +Grayheaven Manor +Grayhouse +Grayland +Graylawn +Graylind +Grayling +Graylock +Graylynn +Graymarsh +Graymill +Graymont +Graymoor +Graymore +Grayne +Grayon +Grayridge +Grayrigg +Grayrock +Grays +Grays Bay +Grays Creek +Grays Farm +Grays Ford +Grays Landing +Grays Park +Grays Point +Grays Pointe +Graysands +Grayscroft +Grayshire +Grayshott +Grayslake +Grayson +Grayston +Graystone +Graystone Meadow +Grayswood +Graythwaite +Grayton +Grayvine +Graywacke +Graywhaler +Graywood +Grazebrook +Grazeley +Grazeley Green +Graziano +Greacen +Greacen Point +Greame +Greany +Great +Great America +Great Ancoats +Great Arbor +Great Augur +Great Bank +Great Basin +Great Bay +Great Bend +Great Berry +Great Binfields +Great Bounds +Great Braitch +Great Bramingham +Great Brickhill +Great Bridgewater +Great Brook Valley +Great Brooms +Great Buckingham +Great Bushey +Great Canfield +Great Castle +Great Central +Great Chapel +Great Chart +Great Chertsey +Great Church +Great Circle +Great Clowes +Great College +Great Cumberland +Great Dover +Great East Neck +Great Eastern +Great Egerton +Great Egret +Great Elm +Great Elms +Great Falls +Great Falls Forest +Great Gardens +Great Gates +Great George +Great Goodwin +Great Gregories +Great Guildford +Great Hadham +Great Hall +Great Harry +Great Heron +Great Hill +Great Hills +Great Hollands +Great Horwood +Great House +Great Jackson +Great James +Great John +Great Jones +Great Kills +Great King +Great Knollys +Great Lake +Great Lakes +Great Laurel +Great Lodge +Great Mall +Great Marlborough +Great Meadow +Great Moor +Great Moss +Great Neck +Great New +Great Newport +Great Norbury +Great North +Great Northern +Great Notley +Great Oak +Great Oaks +Great Ormond +Great Owl +Great Percy +Great Peter +Great Pines +Great Plain +Great Plains +Great Pond +Great Portwood +Great Post +Great Prestons +Great Pulteney +Great Queen +Great Republic +Great Ridge +Great River +Great Rock +Great Ropers +Great Russell +Great Salt Lake +Great Smith +Great Smokey +Great South +Great Southern +Great Sutton +Great Tey +Great Thorne +Great Titchfield +Great Totham +Great Trinity +Great View +Great WInchester +Great West +Great Western +Great Wheatley +Great Whites +Great Wilson +Great Winchester +Great Windmill +Great Wood +Great Woodcote +Great Woods +Greatdown +Greate House Farm +Greatfield +Greatfields +Greatford +Greatham +Greatland +Greatness +Greatnews +Greaton +Greatrex +Greatwater +Greave +Greaves +Grebe +Grecian +Greco +Gredinger +Greeba +Greek +Greeley +Greely +Green +Green Acre +Green Acres +Green Ash +Green Bay +Green Branch +Green Briar +Green Bridge +Green Brier +Green Brook +Green Bud +Green Canyon +Green Cir +Green Circle +Green Common +Green Court +Green Cove +Green Crest +Green Croft +Green Cross +Green Dale +Green Dory +Green Duck +Green East +Green End +Green Farm +Green Farms +Green Fields +Green Fold +Green Forest +Green Garden +Green Garland +Green Glen +Green Grass +Green Grove +Green Haven +Green Hedges +Green Heron +Green Hill +Green Hills +Green Hollow +Green Holly +Green Holly Springs +Green Hundred +Green Ice +Green Island +Green Knoll +Green Knolls +Green Lake +Green Landing +Green Lawn +Green Lea +Green Leaf +Green Ledge +Green Lodge +Green Man +Green Meadow +Green Meadows +Green Mill +Green Moor +Green Moss +Green Mountain +Green Needles +Green North +Green Oak +Green Oaks +Green Orchard +Green Park +Green Pasture +Green Pastures +Green Pheasant +Green Pine +Green Point +Green Pond +Green Ranch +Green Range +Green Ravine +Green Ridge +Green River +Green Run +Green School +Green Spring +Green Springs +Green Tiles +Green Trails +Green Tree +Green Trees +Green Twig +Green Valley +Green Valley Oaks +Green Valley School +Green View +Green View Church +Green Way +Green Willow +Green Wrythe +GreenHedges +Greenacre +Greenacre Park +Greenacres +Greenall +Greenaway +Greenbach +Greenback +Greenbank +Greenbanks +Greenbaum +Greenbay +Greenbelt +Greenbelt Metro +Greenberg +Greenberry +Greenbooth +Greenboro +Greenborough +Greenbough +Greenbrae +Greenbranch +Greenbriar +Greenbridge +Greenbrier +Greenbrier Park +Greenbrook +Greenbrow +Greenburn +Greenbury +Greenbury Point +Greenbush +Greencastle +Greencastle Ridge +Greencourt +Greencrest +Greencroft +Greencroft Deans +Greencroft Hale +Greendale +Greendale Village +Greendale Villege +Greendell +Greene +Greene Field +Greene Ridge +Greeneich +Greenery +Greenfeather +Greenfern +Greenfield +Greenfield Farm +Greenfields +Greenfinch +Greenfold +Greenford +Greenfrith +Greengate +Greengates Redcar +Greenglen +Greengold +Greengrove +Greenhalge +Greenhalgh +Greenhalgh Moss +Greenhall +Greenham +Greenhaven +Greenhayes +Greenhays +Greenhead +Greenheys +Greenhill +Greenhills +Greenholme +Greenhood +Greenhorn +Greenhouse +Greenhow +Greenhurst +Greenhythe +Greening +Greenknoll +Greenknowe +Greenlake +Greenland +Greenlands +Greenlane +Greenlaven +Greenlaw +Greenlawn +Greenlay +Greenlea +Greenleach +Greenleaf +Greenleafe +Greenleas +Greenlee +Greenlees +Greenleigh +Greenlodge +Greenlook +Greenly +Greenman +Greenmead +Greenmeadow +Greenmont +Greenmoor +Greenmount +Greenoak +Greenock +Greenough +Greenpark +Greenpoint +Greenport +Greenrale +Greenridge +Greenrock +Greenroyd +Greens +Greens Arms +Greensand +Greensboro +Greensborough +Greensburgh +Greensfield +Greenshall +Greenshire +Greenside +Greenside Mortimer +Greenslade +Greensleeves +Greenslope +Greenson +Greenspan +Greenspring +Greenstead +Greensted +Greenstede +Greenstein +Greenstone +Greensview +Greensward +Greenthorn +Greenthorpe +Greentrails +Greentree +Greentree Manor +Greentrees +Greenvale +Greenvale Glen Cove +Greenvalley +Greenview +Greenville +Greenwald +Greenway +Greenway Grand +Greenway Longland +Greenway Center +Greenway Corporate +Greenway Court +Greenways +Greenweadow +Greenwell +Greenwich +Greenwich Church +Greenwich Cove +Greenwich High +Greenwich Hills +Greenwich Park +Greenwich Point +Greenwich South +Greenwich Wood +Greenwich Woods +Greenwillow +Greenwing +Greenwolde +Greenwood +Greenwood Bay +Greenwood Beach +Greenwood Cove +Greenwood East +Greenwood Hill +Greenwood Lake +Greenwood Valley +Greenwoods +Greer +Greet +Greetland +Greeves +Greg +Greg Lawn +Greg Marc +Greg Taylor +Greger +Gregerscroft +Gregford +Gregg +Gregge +Greggory +Greggs +Greggs Wood +Greggswood +Gregor +Gregori +Gregorich +Gregories +Gregories Farm +Gregorio +Gregory +Gregory Farm +Gregory Hills +Gregory Island +Gregory M Sears +Gregson +Greig +Greisen +Greiving +Gremley +Grena +Grenaby +Grenada +Grenade +Grenadier +Grenadon +Grenda +Grendale +Grendon +Grenelefe +Grenfel +Grenfell +Grengs +Grenhart +Grenier +Grennan +Grennell +Grenoble +Grenock +Grenstead +Grenton +Grenville +Grenwold +Grenwolde +Gresel +Gresham +Greshan +Gresley +Gresse +Gressenhall +Gresser +Gressinger +Grest South West +Greswell +Gretchen +Gretel +Greten +Gretna +Gretna Green +Gretter +Gretton +Greve +Greville +Greville Park +Grevillea +Grevillia +Grew +Grew Hill +Grex +Grey +Grey Barn +Grey Canyon +Grey Coach +Grey Colt +Grey Dove +Grey Eagle +Grey Finch +Grey Fox +Grey Ghost +Grey Gull +Grey Mare +Grey Mist +Grey Oaks +Grey Pebble +Grey Rock +Grey Run +Grey Seal +Grey Squirrel +Grey Towers +Grey Wall +Grey Willow +Greybert +Greybirch +Greybury +Greycaine +Greycliff +Greycliffe +Greycoat +Greydells +Greyfriars +Greygums +Greyhound +Greylag +Greylands +Greylock +Greylyn +Greymere +Greymont +Greyrock +Greys +Greyshiels +Greyshon +Greyson Creek +Greystanes +Greystead +Greystoke +Greystone +Greystones +Greyswood +Greythorne +Greyview +Greywall +Greywell +Greywing +Greywood +Gribble Bridge +Grice +Grid +Griddle +Gridley +Gridley Bryant +Grier +Grierson +Grieve Glen +Grieves +Griff +Griffanti +Griffe +Griffen +Griffey +Griffin +Griffin Brook +Griffin Farm +Griffin Oaks +Griffing +Griffing Park +Griffins +Griffiss +Griffit +Griffith +Griffith Farm +Griffith Industrial +Griffiths +Griffon +Griffth +Grifon +Grigg +Griggs +Griglio +Grigsby +Grijalva +Grill +Grimeford +Grimes +Grimley +Grimm +Grimmer +Grimmett +Grimsby +Grimsby on Oxford +Grimsdells +Grimsditch +Grimsdyke +Grimshaw +Grimsley +Grimstone +Grimthorpe +Grimwade +Grimwood +Grin Low +GrindStone +Grindal +Grindall +Grindel +Grinder +Grindle +Grindley +Grindon +Grindsbrook +Grindstone +Griner +Grinnel +Grinnell +Grinstead +Grinsted +Grinton +Grisborne +Griscom +Grisdale +Grissom +Grist Mill +Gristmill +Gristmill Square +Gristone +Griswold +Gritstone +Gritte +Grittleton +Grizedale +Grizilo +Grizzly Flat +Grizzly Island +Grizzly Oaks +Grizzly Peak +Grizzly Rock +Grizzly Terrace +Groah +Groat Point +Grobars +Grobelny +Groben +Groberg +Grobie Pond +Groby +Groce +Grochowiak +Groen +Groesbeck Hill +Groff +Grofsick +Grogan +Groh +Grohmans +Gromer +Grommet +Grommon +Grondine +Gronwall +Groom +Groom Cottage +Groombridge +Groomlands +Grooms +Groomsby +Groomsland +Groote +Gropius +Grosbeak +Grosby +Grose +Grose Farm +Groshon +Grosmont +Gross +Gross Point +Grosse +Grosse Pointe +Grosset +Grossman +Grossmont +Grossweiler +Grosvener +Grosvenor +Grosvenor Wharf +Grote +Groth +Grothman +Grotke +Groton +Groton Harvard +Groton School +Groton Shirley +Grott +Grotto +Grotto Glen +Grottoes +Ground +Ground Pine +Grounds +Groundsel +Grouse +Grouse Run +Grouserun +Grove +Grove Angle +Grove Crescent +Grove Cross +Grove End +Grove Farm +Grove Green +Grove Hall +Grove Heath +Grove Hill +Grove House +Grove Mill +Grove Park +Grovebury +Grovedale +Grovefield +Grovefields +Grovehall +Groveherst +Grovehill +Grovehurst +Groveland +Grovelands +Groveleigh +Groveley +Grovemont +Grovemore +Grovenor +Grover +Grovers +Grovers Turn +Groverville +Groves +Groveside +Grovesnor +Groveton +Groveton Gardens +Grovetown +Groveview +Grovewood +Grow +Growney +Grub +Grubb +Grubbs +Gruber +Grubwood +Gruenhagen +Gruenther +Gruenwald +Grumman +Grunauer +Grunberg +Grundel +Grundey +Grundy +Grundy County Line +Gruneisen +Grunewald +Grymes Hill +Gryphon +Grystalwood +Guadalajara +Guadalcanal +Guadalupe +Guadalupe Canyon +Guadalupe Mines +Guam +Guard +Guardian +Guardino +Guards +Guards Club +Guava +Guay +Guayamas +Guaymas +Gubbins +Gubbuteh +Gubernat +Gubyon +Gude +Gudelsky +Gudrun +Guelphs +Guenever +Guenoc +Guenter +Guenther +Guenza +Guerie +Guerin +Guerino +Guerlain +Guerne Hill +Guerneville +Guernewood +Guerneys +Guernse +Guernsey +Guernsey Farm +Guerra +Guerrero +Guertin +Guess +Guessens +Guest +Gueudecourt +Guggiano +Guggins +Guglielmetti +Guibal +Guide +Guide Post +Guider +Guido +Guidotti +Guihen +Guild +Guildables +Guildberry +Guilden +Guilder +Guildersfield +Guildford +Guildford Lodge +Guildford Park +Guildhall +Guildhouse +Guildmore +Guildner +Guildown +Guildwood +Guile +Guileshill +Guilford +Guilford Run +Guilfoy +Guilfoyle +Guillemot +Guilles +Guilliver +Guinan +Guinard +Guinda +Guinea +Guinevere +Guinions +Guinness +Guinzburg +Guion +Guise +Guisti +Guisto +Guithavon +Guittard +Gulch +Guldeford +Gulden +Gulf +Gulf Keys +Gulfport +Gulfstream +Gulia +Gulick +Gulick Mill +Gull +Gull Hill +Gull Island +Gullane +Gullet Wood +Gulliver +Gullo +Gully +Gulton +Guluzzo +Gum +Gum Blossom +Gum Bottom +Gum Grove +Gum Spring +Gum Springs +Gum Springs Village +Gum Tree +Gum Wood +Gumara +Gumbooya +Gumbuya +Gumdale +Gumdrop +Gumleigh +Gumley +Gumnut +Gumping +Gumpus +Gumtree +Gumtree Park +Gumtrees +Gumview +Gumwood +Gun +Gun Back +Gun Club +Gun Hill +Gun Meadow +Gun Pit +Gun Rock +Gunar +Gunbalanya +Gunco +Gundah +Gundain +Gundaroo +Gundawarra +Gundersen +Gunderson +Gundibri +Gundimaine +Gundry +Gundrys +Gundulph +Gungah Bay +Gungarlin +Gungurru +Gunhouse +Gunia +Gunmakers +Gunn +Gunnamatta +Gunnar +Gunnarson +Gunnedah +Gunnell Farms +Gunnels Wood +Gunner Run +Gunnerfield +Gunners +Gunners Branch +Gunnersbury +Gunnery +Gunness +Gunning +Gunnison +Gunpowder +Gunsight Fire +Gunson +Gunston +Gunston Corner +Gunston Cove +Gunston Hill +Gunstor +Gunsynd +Guntawong +Gunter +Gunters +Gunterstone +Gunther +Gunthorpe +Gunton +Guntzer +Gunwood +Gunya +Gunyah +Guptill +Gurdon +Gurdwara +Gurdwara Neville +Gurin +Gurley +Gurnee +Gurnells +Gurner +Gurnet +Gurney +Gurney Court +Gurnsey +Gurrier +Gurry +Gurton +Gus Young +Gushee +Gushue +Gussett +Gustafson +Gustav +Gustave +Gustavus +Gusted Hall +Gustin +Gustine +Gusto +Guston +Gustus +Gusty +Gusty Knoll +Gutedel +Guth +Gutheil +Gutherie +Guthmiller +Guthrie +Gutierrez +Guting +Gutkowski +Guttenberg +Gutter +Gutteridge +Gutters +Guttman +Guy +Guy Dituri +Guy Lombardo +Guy R Brewer +Guy R. Brewer +Guyer +Guyon +Guyong +Guyra +Guys +Guys Farm +Guysborough +Guyscliffe +Guysfield +Guywood +Guzman +Guzzlebrook +Gwalior +Gwandalan +Gwea +Gweal +Gwelo +Gwen +Gwenbury +Gwendale +Gwendalen +Gwendolen +Gwendoline +Gwendolyn +Gwendor +Gweneth +Gwernon +Gwin +Gwinett +Gwinette +Gwinn +Gwinnett +Gwladys +Gwyder +Gwydir +Gwydor +Gwydyr +Gwyn +Gwyndale +Gwyne +Gwynn +Gwynndale +Gwynne +Gwynne Park +Gybbons +Gyen +Gymea Bay +Gymkhana +Gymnasium +Gymoty +Gynant +Gyorr +Gypsum +Gypsy +Gypsy Hill +Gypsy Moth +Gypsy Valley +H A Wyeth Sr +H Diggs +H Fernwood +H Line Fire +H Ranch +HIghfield +HIghview +HIll +HIllside +HMS Essington +HMS Fitzroy +HMS Halsted +HMS Whitaker +Ha Ha +Haab +Haag +Haan +Haar +Haarlem +Haas +Haase +Habben +Habberton +Habel +Haben +Haber +Haberdasher +Haberfield +Habershon +Habgood +Hacianda +Hacienda +Haciendas +Hack +Hackamore +Hackberry +Hackbridge +Hacked Way +Hacken +Hacken Bridge +Hackensack +Hackensack Plank +Hacker +Hackett +Hacketts +Hacketts Pond +Hackfeld +Hackford +Hackhurst +Hacking +Hackle +Hacklorn +Hackman +Hackmans +Hackmore +Hackness +Hackney +Hackney Dalston +Hackney Coach +Hackney Tesco Morning +Hackwood +Hacton +Hadbutt +Haddam +Haddassah +Haddaway +Hadde +Hadden +Haddenfield +Haddenham +Haddesley +Haddington +Haddo +Haddock +Haddon +Haddon Hall +Haddonfield +Haddow +Hadenfeld +Hadfield +Hadham +Hadland +Hadleigh +Hadleigh Park +Hadley +Hadley Farms +Hadley Green +Hadley Hill +Hadley Run +Hadley Wood +Hadlow +Hadlow Down +Hadrian +Hadwen +Hadwin +Hadyn Park +Haeg +Haegers Bend +Haering +Haerse +Haeseler +Hafenrichter +Hafer +Hafey +Haff +Hafner +Hafstrom +Haft +Hafton +Hag Bank +Hag Hill +Haga +Hagadorn +Hagafen +Hagaman +Hagan +Hagans +Hagar +Hagdell +Hage +Hagel +Hageman +Hagemann +Hagen +Hagen Oaks +Hagenberger +Hager +Hagerman +Hagert +Haggard +Hagger +Haggers +Haggerston +Haggerty +Haggetts Pond +Haggie +Haggin +Haggin Oaks +Haglands +Hagley +Haglis +Haglund +Hagman +Hagsdell +Hague +Hague Bar +Hahl +Hahman +Hahn +Hahnemann +Hahns +Haider +Haidlen +Haig +Haigh +Haigh Moor +Haigh Park +Haigh Wood +Haighside +Haight +Haile +Hailey +Hailsham +Hailstone +Haimo +Hainault +Haines +Haines Ranch +Haining +Hainline +Hainsworth +Hainthorpe +Haire +Haise +Haislip +Haith +Haiti +Hakea +Hal +Halaper +Halbert +Halborn +Halco +Halcomb +Halcourt +Halcrow +Halcyon +Haldane +Haldeman +Halden +Haldon +Hale +Hale Haven +Hale House +Hale Low +Hale Oak +Hale Park +Hale Ranch +Haleakala +Halebank +Haledon +Halefield +Halepit +Hales +Hales Hollow +Hales Trace +Halesden +Halesmith +Halesowen +Haleswood +Halesworth +Halethorpe +Halethorpe Farms +Halevy +Haley +Haley Meadows +Haleybird +Half +Half Acre +Half Crown +Half Day +Half Dome +Half Edge +Half Mile +Half Moon +Half Moon Bay +Half Penny +Half Round +Halfacre +Halfcrown +Halfe +Halfhide +Halfmoon +Halford +Halfpence +Halfpenny +Halfway +Halgren +Haliard +Haliburton +Halibut +Halick +Haliday +Halifax +Halifield +Haligus +Halimote +Halina +Halinda +Haling +Halite +Halkin +Halkins +Halko +Hall +Hall Acres +Hall Brown +Hall Creek +Hall Farm +Hall Green +Hall House +Hall Lee +Hall Meadow +Hall Memorial +Hall Moss +Hall Park +Hall Place +Hall Pond +Hall Pool +Hall Ranch +Hall Shop +Halladay +Hallam +Hallandale +Hallberg +Hallbright +Hallbrook +Hallcrest +Halleck +Hallefield +Hallen +Hallenoak +Haller +Hallet +Hallet Davis +Hallett +Hallett Hill +Halley +Hallfields +Hallgate +Hallgren +Halli +Halliday +Halliden +Halliford +Halligan +Hallin +Hallingbury +Hallister +Halliwell +Halliwick +Hallman +Hallmark +Hallmead +Hallo +Hallock +Hallocks Point +Halloran +Hallow +Hallow Vale +Halloway +Halloween +Hallowell +Hallowing +Hallows +Hallran +Hallron +Halls +Halls Green +Halls Grove +Halls Hole +Hallsfield +Hallside +Hallsons +Hallstead +Hallsville +Hallswelle +Halltown +Hallwicks +Hallwood +Hallworth +Hally +Halm Oak +Halmar +Halmore +Halmos +Halmstad +Halnaker +Halo +Halock +Halperin +Halpine +Halsall +Halsbrook +Halsbury +Halse +Halsey +Halsford +Halsford Park +Halsley +Halsmere +Halstad +Halstead +Halsteads +Halsted +Halston +Halstone +Halsworth +Halt +Halter +Halterman +Halton +Halton Cross +Halton Moor +Halton Wood +Haltwhistle +Halvard +Halverson +Halvorsen +Halwis +Halyard +Halycon +Ham +Ham Ashburnham +Ham Ashburnham +Ham Mill +Ham Park +Haman +Hamand +Hamann +Hamar +Hamas +Hambalt +Hamberlins +Hamberts +Hambey +Hamble +Hambledon +Hambledown +Hamblen +Hamblet +Hambleton +Hambletonian +Hamblett +Hamblin +Hambly +Hamborough +Hambrick Manor +Hambridge +Hambro +Hambrook +Hamburg +Hamden +Hamel +Hamelin +Hamels +Hamelyn +Hamer +Hamerick +Hamersley +Hamerstone +Hamerton +Hames +Hamesmoor +Hamfrith +Hamilcar +Hamill +Hamilton +Hamilton Hill +Hamilton Manor +Hamilton Park +Hamilton Spring +Hamiltonian +Hamlen +Hamlet +Hamlet Court +Hamley +Hamlin +Hamlin Park +Hamline +Hamline Service +Hamm Moor +Hammarlee +Hammatt +Hammel +Hammelton +Hammer +Hammer Hill +Hammer Hook +Hammerhead +Hammerlee +Hammerpond +Hammers +Hammerschmidt +Hammersley +Hammersmith +Hammerstone +Hammerton +Hammertown +Hammerwood +Hammes +Hammett +Hammitt +Hammock +Hammon +Hammond +Hammond Branch +Hammond Pond +Hammonds +Hammonds End +Hammonds Ferry +Hammonds Plains +Hammondswood +Hammons +Hammonton +Hamnett +Hamon +Hamor +Hamowell +Hampden +Hampden Gurney +Hampel +Hampermill +Hampers +Hampshire +Hampshire Green +Hampshire Hog +Hampson +Hampson Mill +Hampstead +Hampstead High +Hamptom Park +Hampton +Hampton The +Hampton Brook +Hampton Course +Hampton Court +Hampton Creek +Hampton Hill +Hampton Hollow +Hampton Hunt +Hampton Knoll +Hampton Lake +Hampton Oak +Hampton Park +Hampton Point +Hampton Ridge +Hampton Woods +Hamptondale +Hamptons +Hampworth +Hamrick +Hamsell +Hamsley +Hamson +Hamstead +Hamstel +Hamstreet +Hamstrom +Hamton +Hana +Hanameel +Hanback +Hanburg +Hanbury +Hanby +Hance +Hancey +Hanchett +Hanco Center +Hancock +Hancock Hill +Hancombe +Hancott +Hancox +Hancroft +Hand +Handcroft +Handcross +Handel +Handford +Handforth +Handle +Handlebar +Handley +Handley Page +Hands +Handside +Handsworth +Handverg +Handwerg +Handy +Handzel +Hane +Hanes +Haney +Hanfling +Hanford +Hangar +Hanger +Hanger Vale +Hanging Birch +Hanging Chadder +Hanging Hill +Hangings +Hangmans +Hanian +Hanifan +Hanigan +Hank +Hanken +Hankerson +Hankes +Hankin +Hankins +Hanks +Hankshaw +Hanlan +Hanley +Hanlon +Hanly +Hanlye +Hanmer +Hanmore +Hanna +Hanna Bay +Hanna Park +Hanna Ranch +Hannaford +Hannah +Hannah Farm +Hannah Pearl +Hannahs Pond +Hannam +Hannan +Hannans +Hannay +Hanne +Hannen +Hannerton +Hannes +Hannet +Hannett +Hannibal +Hannigan +Hannington +Hannis +Hannon +Hannons +Hannora +Hannover +Hanns +Hannum +Hano +Hanover +Hanrahan +Hanrehan Lake +Hans +Hansard +Hansborough +Hansbury +Hansby +Hansch +Hanscom +Hanse +Hansel +Hansell +Hansen +Hansens +Hansford +Hanshaw +Hansler +Hansletts +Hanslow +Hansol +Hansom +Hanson +Hanson Ridge +Hanton +Hantz +Hanus +Hanway +Hanworth +Hanyards +Hap Arnold +Hapgood +Happ +Happy +Happy Acres +Happy Choice +Happy Creek +Happy Heart +Happy Hills +Happy Hollow +Happy Valley +Happy Valley Glen +Happyland +Hapton +Hara +Haralson +Haran +Haraszthy +Harback +Harbell +Harben +Harbern +Harberson +Harberton +Harberts +Harbet +Harbin +Harbinger +Harbison +Harbledown +Harbolets +Harbor +Harbor Bay +Harbor Court +Harbor Heights +Harbor Hill +Harbor Hills +Harbor House +Harbor Light +Harbor Lights +Harbor Oak +Harbor Oaks +Harbor Park +Harbor Place +Harbor Point +Harbor Ridge +Harbor Side +Harbor Terrace +Harbor Town +Harbor Tree +Harbor Valley +Harbor View +Harbor Villa +Harbord +Harboro +Harborough +Harborough Hall +Harborside +Harborview +Harborwood +Harbour +Harbour Club +Harbour Cove +Harbour Farm +Harbour Gates +Harbour Heights +Harbour Point +Harbour Shore +Harbour Town +Harbour View +Harbourer +Harbourfield +Harbourne +Harbourtown +Harbourwood +Harbridge +Harbury +Harbut +Harby +Harcombe +Harcourt +Harcross +Harcus +Hard Platts +Hardan +Hardaway +Hardcastle +Harde +Hardees +Hardeman +Harden +Harden Hill +Hardenbergh +Hardenburg +Hardenburgh +Harder +Harders +Hardess +Hardester +Hardesty +Hardfield +Hardie +Hardies +Hardiman +Hardin +Harding +Harding Hall +Hardinge +Hardings +Hardings Elms +Hardman +Hardmans +Hardrock +Hardrow +Hards +Hardscrabble +Hardwell +Hardwick +Hardwicke +Hardwidge +Hardwood +Hardwood Forest +Hardy +Hardy Mill +Hardy Pond +Hardy Ridge +Hardywood +Hare +Hare Farm +Hare Hall +Hare Hill +Harebell +Harecombe +Harecourt +Harecroft +Haredale +Harefield +Harehatch +Harehills +Harehills Compton +Harehills Easterly +Harehills Park +Harelands +Hares +Haresfield +Hareshill +Harestone +Harestone Valley +Hareward +Harewood +Harewood Arms The +Harff +Harfield +Harford +Harfred +Harg +Hargate +Hargate Hill +Harger +Hargo +Hargold +Hargood +Hargrave +Hargraves +Hargreaves +Hargrove +Hargus +Hargwyne +Haring +Haring Farm +Haringa +Haringey +Harjean +Hark +Harkeith +Harker +Harkhurst +Harkim +Harkin +Harking +Harkins +Harkins Slough +Harkison +Harkle +Harkleroad +Harkness +Harlan +Harland +Harlands +Harle +Harlea +Harlech +Harledene +Harleigh +Harlem +Harlem River +Harlequin +Harlescott +Harlesden +Harlesden Manor Park +Harleston +Harley +Harley Run +Harleyford +Harlin +Harling +Harlinger +Harlington +Harliss +Harlow +Harlowe +Harlyn +Harman +Harmans +Harmans Water +Harmel +Harmer +Harmer Green +Harmich +Harmon +Harmon Meadow +Harmoni +Harmony +Harmony Acres +Harmony Grove +Harmony Hall +Harmony Hill +Harmony Ranch +Harmony Woods +Harms +Harmston +Harmsworth +Harn Ranch +Harnden +Harned +Harness +Harness Creek +Harness Creek View +Harness Shop +Harnett +Harney +Harnham +Harnish +Harnleigh +Harnley +Harold +Harold Court +Harold Hill Gooshays +Harold Lees +Harold Parker +Harold Secord +Harold Smith +Harold Woods +Haroldene +Harolds +Haroldslea +Haroldstone +Harp +Harp Farm +Harp Meadow +Harpenden +Harper +Harper Fold +Harper Green +Harpers +Harpers Cove +Harpers Farm +Harpers Ferry +Harpers Mill +Harpesford +Harpford +Harpin +Harpole +Harpour +Harps +Harps Oak +Harpsden +Harpster +Harptree +Harpur +Harpur Hill +Harpurhey +Harrabrook +Harraden +Harrel +Harrell +Harreton +Harridge +Harrier +Harriet +Harriet Tubman +Harriett +Harriette +Harrigan +Harriman +Harringay +Harrington +Harrington Ridge +Harriot +Harriots +Harriott +Harriotts +Harris +Harris Farm +Harris Heights +Harris Hill +Harris Hills +Harris Pond +Harrisburg +Harrishof +Harrison +Harrison Grade +Harrison Hill +Harrison Hollow +Harrison School +Harrisons +Harristown +Harrisville Main +Harrivan +Harrod +Harrogate +Harrogate on Oxford +Harrold +Harrop +Harrop Court +Harrop Edge +Harrop Green +Harrow +Harrow Bottom +Harrow View +Harroway +Harrowband +Harrowby +Harrowden +Harrowdene +Harrowgate +Harrowhill +Harrows +Harrowsgate +Harry +Harry Davis +Harry Homans +Harry J Rogowski +Harry S Truman +Harrys +Harseille +Harsek +Harshman +Harston +Hart +Hart Dyke +Hart Farm +Hart Forest +Hart Hill +Hart Hills +Hart Mews +Harte +Hartell +Harter +Hartfield +Hartford +Hartford Hills +Hartforde +Hartgate +Harthall +Hartham +Harthill +Harthouse +Hartigan +Harting +Harting Farm +Hartington +Hartis +Hartkopf +Hartlake +Hartland +Hartlawn +Hartles +Hartley +Hartley Bottom +Hartley Court +Hartley Old +Hartman +Hartman Creek +Hartman Hill +Hartmann +Hartnell +Hartness +Hartnett +Hartnoll +Hartnup +Hartog +Harton +Hartong +Hartrey +Hartridge +Harts +Harts Hill +Harts Leap +Hartsbourne +Hartsburg +Hartsdale +Hartsfield +Hartshead +Hartshill +Hartshorn +Hartshorne +Hartslands +Hartsmead +Hartson +Hartsop +Hartspiece +Hartspring +Hartsuff +Hartswood +Hartung +Hartungs Oaks +Hartville +Hartway +Hartwell +Hartwich +Hartwick +Hartwood +Harty +Harty Ferry +Hartz +Hartzell +Haruff +Harugari +Harvale +Harvard +Harvard Bend +Harvard Depot +Harve +Harvel +Harvell +Harvest +Harvest Bank +Harvest Bend +Harvest Crossing +Harvest Falls +Harvest Field +Harvest Gold +Harvest Green +Harvest Hill +Harvest Landing +Harvest Mills +Harvest Moon +Harvest Oak +Harvest Park +Harvest Ridge +Harvest Run +Harvest Sun +Harvest Valley +Harvest View +Harvest Woods +Harvester +Harvester Farm +Harvesting +Harvestwood +Harvey +Harvey Lake +Harvil +Harvill +Harville +Harvist +Harwalt +Harwarden +Harwater +Harway +Harwell +Harwich +Harwick +Harwill +Harwin +Harwood +Harwood Hall +Harwoods +Hasbrouck +Hascall +Hascomb +Hascombe +Haseco +Hasedines +Haseldine +Haseley +Haselfoot +Haselrigge +Haseltine +Haselwood +Hasey +Haskard +Haskell +Hasker +Hasketon +Haskett +Haskin +Haskins +Haskney +Haskoll +Haslam +Hasle +Haslemere +Hasler +Haslers +Haslet +Haslett +Haslewood +Hasley +Haslingbourne +Hasluck +Haspel +Hassake +Hassal +Hassall +Hassard +Hassart +Hasselburgh +Hassell +Hassenbrook +Hassendean +Hassert +Hasset +Hassett +Hassler +Hassock +Hassocks +Hassold +Hassop +Hastards +Haste +Haste Hill +Hasted +Hasting +Hastings +Hastings Island +Hastings Mill +Hastings Shore +Hastingwood +Hastoe +Hasty +Hatch +Hatch Gate +Hatch Way +Hatcham +Hatcham Park +Hatchard +Hatcher +Hatchery +Hatches +Hatchet Rock +Hatchett +Hatchetts +Hatchfield +Hatchgate +Hatchlands +Hatchley +Hatchway +Hatcliff +Hatfield +Hatford +Hatham Green +Hathaway +Hatherall +Hatherleigh +Hatherley +Hatherlow +Hatherly +Hathern +Hatherop +Hathersage +Hathersham +Hathershaw +Hatherton +Hatheway +Hathorn +Hathorne +Hathway +Hatley +Hatmark +Hatmill +Hatona +Hatpat +Hattan +Hatte Gray +Hatter +Hatteraick +Hatters +Hatters Hill +Hattersley +Hattie +Hattingley +Hatton +Hatton Point +Hattons +Hatzis +Hauck +Haug +Hauge +Haugh +Haugh Hill +Haughton +Haughton Green +Haughton Hall +Haughwout +Haul +Haultain +Hauman +Hauppauge +Hauschildt +Hauser +Hauser Bridge +Hausman +Haussermann +Haussler +Haussmann +Haussner +Hautevale +Hauth +Hauxhurst +Havana +Havannah +Havant +Havard +Havasu +Havelock +Havelok +Havemeyer +Haven +Haven Green Gordon +Haven Hill +Havenbrook +Havencrest +Havendale +Havenfield +Havengore +Havenhill +Havenhurst +Havenner +Havenpark +Havens +Havensbrook +Havenscourt +Havenshire +Havenside +Havenview +Havenwood +Havenworth +Haverfield +Haverford +Haverhill +Havering +Haverley +Haverlock +Havermeyer +Havers +Haversack +Haversham +Haverstock +Haverthwaite +Haverton +Havey +Havil +Havilah +Havilan +Haviland +Haviland Mill +Havilend +Havis +Havisham +Havlicek +Havre +Havre de Grace +Haw +Haw Clough +Hawaii +Haward +Hawarden +Hawbeck +Hawbridge +Hawdon +Hawes +Haweswater +Haweswood +Hawfinch +Hawgood +Hawhorn +Hawick +Hawk +Hawk Channel +Hawk Crest +Hawk Green +Hawk Hallow +Hawk Haven +Hawk Hill +Hawk Hollow +Hawk Ridge +Hawk View +Hawk Yard +Hawkaway +Hawkchurch +Hawke +Hawke Park +Hawken +Hawkenbury +Hawker +Hawkes +Hawkesbourne +Hawkesbury +Hawkesbury Bush +Hawkesfield +Hawkesmore +Hawkewood +Hawkeye +Hawkfield +Hawkhill +Hawkhirst +Hawkhurst +Hawkins +Hawkins Creamery +Hawkins Gate +Hawkins Hall +Hawkins Point +Hawkridge +Hawks +Hawks Bill +Hawks Hill +Hawks Hollow +Hawks Nest +Hawks Peak +Hawks on Second +Hawksbrook +Hawksbury +Hawkshaw +Hawkshead +Hawkshill +Hawkslade +Hawksley +Hawksmoor +Hawkstone +Hawksview +Hawkswick +Hawkswood +Hawksworth +Hawktree +Hawkview +Hawkweed +Hawkwell +Hawkwell Park +Hawkwood +Hawley +Hawley Woods +Hawleys +Hawlings +Hawlings River +Haworth +Hawridge +Haws +Hawsbrook +Hawser +Hawstead +Hawth +Hawthorn +Hawthorn Park +Hawthorne +Hawthorne Farms +Hawthorne Hill +Hawthorne Ridge +Hawthorne Woods +Hawthrone +Hawtree +Hawtree Creek +Hawtrey +Hawxhurst +Haxby +Haxted +Haxtun +Hay +Hay Camp +Hay Creek Hills +Hay Creek Valley +Hay Currie +Hay Green +Hay Meadow +Hay Path +Haybarn +Hayberry +Haybluff +Hayburn +Haycock +Hayday +Hayden +Hayden Brook +Hayden Lake +Hayden Rowe +Haydens +Haydn +Haydock +Haydon +Haydon Park +Haydons +Hayenga +Hayes +Hayes George +Hayes Lansbury +Hayes End +Hayes End Angel +Hayes Hill +Hayes Leonard +Hayes Manor +Hayes Memorial +Hayes Wood +Hayesford Park +Hayeswater +Hayfield +Hayfields +Hayford +Hayhouse +Hayhurst +Hayle +Hayle Mill +Hayleigh +Hayles +Haylett +Hayley +Haylind +Hayling +Hayloft +Haymaker +Haymakers +Hayman +Haymarket +Haymeadow +Haymeads +Haymen +Haymerle +Haymet +Haymill +Haymond +Hayne +Haynes +Haynes Green +Haynesworth +Hayrack +Hayrick +Hays +Haysbrook +Haysden +Hayshire +Haystack +Hayter +Haythorp +Hayvick +Hayward +Hayward Farms +Hayward Mill +Haywards +Haywards Heath +Haywood +Hayworth +HazEl +HazElton +HazElwood +Hazard +Hazebrouck +Hazel +Hazel Crest +Hazel Dell +Hazel End +Hazel Nut +Hazel Ridge +Hazel Thicket +Hazel Tree +Hazelbadge +Hazelbank +Hazelbottom +Hazelbourne +Hazelbridge +Hazelbrook +Hazelbury +Hazelcrest +Hazeldean +Hazeldell +Hazeldene +Hazeldon +Hazeleigh Hall +Hazelglen +Hazelgrove +Hazelhurst +Hazell +Hazellville +Hazelmead +Hazelmere +Hazelmoor +Hazelnut +Hazelrig +Hazels +Hazeltine +Hazeltine Bluff +Hazelton +Hazeltree +Hazelview +Hazelwick +Hazelwick Mill +Hazelwood +Hazen +Hazlebank +Hazlebury +Hazledean +Hazlehurst +Hazlemere +Hazlet +Hazleton +Hazlett +Hazlewell +Hazlewood +Hazley +Hazlitt +Hazzard +Heacham +Heacox +Head +Headcorn +Headingley +Headingley North +Headingley Shaw +Headingly +Headington +Headlam +Headland +Headlands +Headley +Headley Common +Headley High +Headley Hill +Headline +Headly +Headquarters +Headrow +Headstone +Headwater +Headwaters +Heady Hill +Heafey +Heald +Healds +Healdsburg +Healdwood +Healey +Healing +Health Center +Health Sciences +Healthway +Healy +Healy Farm +Heaney +Heapey +Heapey Fold +Heapworth +Heapy +Heard +Hearford +Hearle +Hearn +Hearne +Hearns +Hearnshaw +Hearnville +Hearsall +Hearst +Heart Leaf +Heartbreak +Heartenoak +Heartfields +Hearth +Hearthridge +Hearthside +Hearthstone +Hearthwood +Heartland +Heartland Ranch +Heartlander +Hearts Bay +Hearts Delight +Heartstead +Heartwood +Heath +Heath Close +Heath Cote +Heath End +Heath Farm +Heath Green +Heath Hall +Heath House +Heath Hurst +Heath Mill +Heath Park +Heath View +Heathbank +Heathbrook +Heathbrow +Heathcliff +Heathclose +Heathcote +Heathcroft +Heathdale +Heathdene +Heather +Heather Crest +Heather Dawn +Heather Dell +Heather Down +Heather Garden +Heather Glen +Heather Green +Heather Heights +Heather Hill +Heather Hills +Heather Mist +Heather Point +Heather Ridge +Heather Tree +Heatherbloom +Heatherbrook +Heathercreek +Heatherdale +Heatherden +Heatherdene +Heatherfield +Heatherhill +Heatherland +Heatherleaf +Heatherleigh +Heatherley +Heathermead +Heathermore +Heathermount +Heatherpace +Heatherside +Heatherstone +Heathertoe +Heatherton +Heatherton Ridge +Heathertree +Heathervale +Heatherview +Heatherway +Heatherwick +Heatherwold +Heatherwood +Heatherwood Estates +Heathfield +Heathfields +Heathgate +Heathhurst +Heathland +Heathlands +Heathlee +Heathleigh +Heathmans +Heathmoor +Heathorn +Heathpark +Heathrow +Heaths Bridge +Heathside +Heathside Park +Heathstan +Heathvale Bridge +Heathview +Heathwalk +Heathwall +Heathway Church Elm +Heathwick +Heathwood +Heathyfields +Heatley +Heaton +Heaton Grange +Heaton Moor +Heaton Park +Heavegate +Heaven +Heaven Hill +Heavenly +Heavenly Ridge +Heaver +Heavey +Heavilin +Heavitree +Hebard +Hebberd +Hebburn +Hebden +Hebe +Heber +Hebert +Heberto +Heberton +Hebron +Hechinger +Hecht +Heckel +Heckelman +Hecker +Hecker Pass +Heckfield +Heckford +Heckle +Heckmondwike +Heckmondwike Regent +Heckmondwyke Market +Heckscher +Hecla +Hectic Hill +Hector +Hedberg +Hedding +Heddings +Heddon +Heddy +Hedegard +Hedge +Hedge Hopper +Hedge Neck +Hedge Place +Hedge Row +Hedgeford +Hedgehog +Hedgehope +Hedgeman +Hedgemans +Hedger +Hedgerley +Hedgerow +Hedges +Hedges Run +Hedgeside +Hedgetop +Hedgewick +Hedgewood +Hedgley +Hediger +Hedin +Hedingham +Hedley +Hedlund +Hedman +Hedrick +Hedsor +Hedwig +Hedworth +Hedy +Heel +Heelan +Heelas +Heeley +Heenan +Heene +Heeswyk +Hefferman +Heffernan +Heflin +Hegarty +Hegel +Hegeman +Hegemans +Hegerty +Heggen +Heggs +Hegi +Heide +Heideburg +Heidelberg +Heiden +Heidenrich +Heidi +Heidi Ranch +Heidleberg +Heidleburg +Heidorn +Heidorn Ranch +Heidrick +Heiges +Heigham +Heights +Heights Of Hill +Heighway +Heikes +Heil +Heilicia +Heiling +Heilsburg +Heimel +Heimgartner +Heims +Hein +Heindel +Heindrich +Heine +Heinel +Heiner +Heinestrasse +Heinke +Heinrich +Heins +Heinz +Heinze +Heinzelman +Heirloom +Heiron +Heiser +Heiskell +Heitzman +Hejka +Hekenberg +Helado +Helby +Helden +Heldt +Heldts +Heldun +Helen +Helen Macintosh +Helen Power +Helena +Helene +Helens +Helenslea +Helenwood +Helfred +Helfrich +Helga +Heling +Helio +Helions +Helios +Heliotrope +Helix +Hellard +Hellards +Hellen +Hellen Lee +Hellendoorn +Hellenic +Heller +Helles +Hellings +Hellman +Hellweg +Hellwig +Hellwood +Hellyer +Helm +Helm Cottage +Helman +Helmar +Helmart +Helmer +Helmet +Helmetta +Helmetta Jamesburg +Helmick +Helmond +Helmons +Helmont +Helmore +Helmsdale +Helmshore +Helmsley +Helmstetter +Helmuth +Helo +Help +Helperby +Helsby +Helsel +Helston +Helton +Heltzer +Helva +Helvellyn +Helvetia +Helvetta +Heman +Hemberton +Hembree +Hembroff +Hembury +Hemdean +Hemel Hempstead +Hemenway +Hemery +Hemet +Heming +Hemingford +Hemington +Hemingway +Hemishor +Hemley +Hemlock +Hemlock Hill +Hemlock Park +Hemlock Pool +Hemlock Ridge +Hemlock Tree +Hemlock Woods +Hemman +Hemme +Hemmen +Hemmer +Hemming +Hemmingsen +Hemmington +Hemmingway +Hemmons +Hemnall +Hemond +Hemp +Hempcroft +Hemphill +Hempland +Hempshaw +Hempshire +Hempson +Hempstead +Hempstead Valley +Hempstone +Hemsby +Hemsley +Hemstal +Hemstead +Hemsted +Hemstock +Hemswell +Hemsworth +Hemwood +Hen Fold +Henage +Henaor +Henbury +Henchman +Henconner +Hendale +Hendee +Hendel +Henderson +Henderson Corner +Hendham +Hendler +Hendley +Hendon +Hendre +Hendrick +Hendricks +Hendrickson +Hendrie +Hendrix +Hendry +Hendy +Henessy +Henfield +Henfold +Hengist +Henham +Henhawk +Henhurst +Henhurst Cross +Heniker +Henitz +Henke +Henkels +Henley +Henley Marine +Henley Wood +Henmar +Henmarken +Henn Parks +Henna +Henneberry +Hennen +Hennepin +Hennepin Town +Hennes +Hennessey +Hennessey Ridge +Hennessy +Hennig +Henniker +Henning +Hennings +Hennion +Hennipen +Henno +Henno Ranch +Hennon +Henny Back +Henoch +Henon +Henri +Henri Hill +Henrici +Henricks +Henrickson +Henrico +Henrietta +Henrik Ibsen Park +Henriques +Henry +Henry Adams +Henry Cowell +Henry Dixon +Henry Doulton +Henry Fleet +Henry Ford II +Henry Garnett +Henry Herz +Henry Hudson +Henry J +Henry Jackson +Henry Kendall +Henry Knox +Henry L. +Henry Lawler +Henry Lawson +Henry Lee +Henry Legg +Henry Long +Henry Macaulay +Henry Peters +Henry Turner Bailey +Henrys +Henryson +Hens Rest +Hensel +Henshall +Henshaw +Henshawe +Hensill +Hensler +Hensley +Henslowe +Henson +Henty +Henwick +Henwood +Henwood Green +Henzi +Henzie +Hepburn +Hepburn Heights +Hepher +Hepley +Hepner +Heppleton +Heppner +Hepscott +Hepworth +Herald +Herald Harbor +Herath +Herb +Herb Elliot +Herb Farm +Herb Hill +Herbage Park +Herbalist +Herbazal +Herberg +Herbert +Herbert Breclaw +Herbert Creek +Herbert Sachs +Herbert Springs +Herberts Crossing +Herbertson +Herbhill +Herbill +Herbing +Herbrand +Herbst +Herchell +Hercies +Hercules +Herd +Herdlyn +Heredia +Heredity +Hereford +Herendon +Herent +Herevale Hall +Hereward +Herford +Herfort +Herga +Hergesell +Herget +Hering +Heriot +Heristone +Heritage +Heritage Crossing +Heritage Estates +Heritage Farm +Heritage Farms +Heritage Glen +Heritage Hill +Heritage Hills +Heritage Hunt +Heritage Lake +Heritage Landing +Heritage Manor +Heritage Meadow +Heritage Meadows +Heritage Oaks +Heritage Park +Heritage Rose +Heritage Square +Heritage Tree +Heritage Valley +Heritage Village +Heritage Woods +Herkimer +Herkner +Herkomer +Herley +Herlihy +Herlong +Herma +Hermaine +Herman +Herman Melville +Hermann +Hermans +Hermany +Hermasillo +Hermes +Hermies +Hermina +Hermine +Hermington +Hermiston +Hermit +Hermit Ranch +Hermitage +Hermitage Hills +Hermits +Hermitt +Hermleigh +Hermon +Hermon Hill Chigwell +Hermongers +Hermosa +Hermoyne +Hernandez +Hernando +Hernbrook +Herndon +Herne +Hernen +Herning +Herns +Hero +Herodian +Herold +Heron +Heron Bay +Heron Flight +Heron Lake +Heron Lakes +Heron Pond +Heron Wood +Herondale +Herons +Herons Nest +Herons Run +Heronslea +Heronswood +Herontye +Heronvue +Heronwood +Heroult +Heroux +Herpers +Herr +Herren +Herrera +Herrett +Herrick +Herricks +Herrier +Herries +Herriman +Herring +Herring Bay +Herring Brook +Herring Creek +Herring Pond +Herring Weir +Herringham +Herrings +Herrington +Herriot +Herriott +Herristone +Herrmann +Herrod +Herron +Hersam +Hersand +Hersch Farm +Herschel +Herschell +Hersey +Hersham +Hershey +Hershfield +Hershner +Hershon +Hersley +Hersman +Hersperger +Herst +Herston +Hertel +Herter +Hertford +Hertingfordbury +Hertslet +Hertsmere +Hervey +Hervey Park +Hervines +Herwick Hall +Herzel +Herzl +Herzog +Hesket +Hesketh +Hesketh Meadow +Heskin +Heslop +Hespeller +Hesper +Hesperian +Hesperus +Hess +Hesse +Hesse Farm +Hessel +Hesseltine +Hession +Hessle +Hessler +Hessney +Hesten +Hester +Hester Creek +Hestercombe +Hesterman +Heston +Heswall +Hetfield +Hetherden +Hetherington +Hetherton +Hethorn +Hethrow +Hetley +Heton +Hetrick +Hett +Hetten +Hettiefred +Hettinger +Hetton +Hetts +Hetzel +Heuer +Heurich +Heusted +Heustis +Heuters +Hevelyne +Hever +Hever Court +Hever Wood +Heverham +Hevern +Hevers +Hevey +Hevingham +Hew Watt +Hewart +Hewbold Hall +Hewer +Hewes +Hewetson +Hewett +Hewins +Hewins Farm +Hewison +Hewitt +Hewitts +Hewlett +Hewlett Heath +Hewlett Neck +Hewlett Point +Hewmason +Hews +Hewshott +Hewson +Hexal +Hexem +Hexham +Hextol +Hexton +Hexton Hill +Hey +Hey Beck +Hey Hoe Woods +Heybourne +Heybridge +Heybrook +Heycroft +Heyde +Heydon +Heyer +Heyes +Heyes Farm +Heyeswood +Heyford +Heygate +Heyheads New +Heykens +Heyland +Heyman +Heynes +Heyridge +Heyrod +Heys +Heysbank +Heysen +Heysham +Heyshoot +Heyside +Heysoms +Heyson +Heythorp +Heyward +Heyward Hills +Heywood +Heywood Fold +Heywood Hall +Heywood Old +Heyworth +Hezlet +Hezlett +Hh +Hi Grade +Hi Lo +Hi Vista +Hi Wood +Hialeah +Hiar +Hiawatha +Hibbard +Hibbert +Hibbling +Hibel +Hibernia +Hibiscus +Hibler +Hibner +Hichborn +Hichisson +Hickerson +Hickey +Hickey Hollow +Hickin +Hickman +Hickmans +Hickock +Hickok +Hickory +Hickory Bend +Hickory Cliff +Hickory Creek +Hickory Forest +Hickory Hill +Hickory Hills +Hickory Hollow +Hickory Knoll +Hickory Leaf +Hickory Nut Grove +Hickory Oaks +Hickory Point +Hickory Ridge +Hickory Run +Hickory Spring +Hickory Tavern +Hickory Trace +Hickory Valley +Hickory Wood +Hickorywood +Hickox +Hicks +Hicks Corner +Hicks Point +Hicks Valley +Hickson +Hickstead +Hicksville +Hickton +Hidalgo +Hidcote +Hidden +Hidden Acres +Hidden Bay +Hidden Brick +Hidden Bridge +Hidden Brook +Hidden Canyon +Hidden Cove +Hidden Creek +Hidden Falls +Hidden Farm +Hidden Fawn +Hidden Garden +Hidden Glade +Hidden Glen +Hidden Green +Hidden Harbor +Hidden Hill +Hidden Hills +Hidden Hollow +Hidden Knoll +Hidden Lake +Hidden Lakes +Hidden Ledge +Hidden Meadow +Hidden Mine +Hidden Moon +Hidden Oak +Hidden Oakes +Hidden Oaks +Hidden Pine +Hidden Pines +Hidden Point +Hidden Pond +Hidden Ponds +Hidden Ridge +Hidden River +Hidden River View +Hidden Spring +Hidden Springs +Hidden Trail +Hidden Vale +Hidden Valley +Hidden View +Hidden Village +Hiddenbrook +Hiddenbrooke +Hiddenhollow +Hiddenlake +Hiddenvale +Hiddenwood +Hide A Way +Hide Away +Hideaway +Hideout +Hides +Hideway +Hieber +Hield +Higate +Higbee +Higbie +Higby +Higdon +Higfh Bank +Higgerson +Higginbotham +Higgins +Higgins Park East +Higgins Park South +Higgins Park West +Higgins Purisima +Higgins Quarter +Higginshaw +Higginson +Higgs +High +High Ash +High Bank +High Bar +High Barn +High Beech +High Beeches +High Bent +High Bluff +High Bridge +High Broom +High Brooms +High Cedar +High Clear +High Cliff +High Cliffe +High Country +High Court +High Crest +High Cross +High Dewar +High Down +High Eagle +High Easter +High Elm +High Elms +High Farms +High Field +High Forest +High Gables +High Gate +High Glen +High Green +High Grove +High Grove Hills +High Gulch +High Haith +High Halden +High Hamstead +High Hatch +High Hay +High Hill +High Hills +High Holborn +High Hollow +High Hope Canyon +High House +High Knob +High Knoll +High Lake +High Lea +High Lee +High Legh +High Level +High Low +High Meadow +High Meadows +High Meads +High Mountain +High Oak +High Oaks +High Oxford +High Park +High Path +High Peak +High Pine +High Pines +High Plain +High Plains +High Plane +High Point +High Point Trails +High Pond +High Rid +High Ridge +High Rock +High Rocks +High School +High School Windmill +High School Windsor +High Site +High Terrace +High Thicket +High Timber +High Tor +High Town +High Trail +High Tree +High Trees +High Valley +High View +High View School +High Weardley +High Wood +High Woodhall +High Woods +High Wych +HighLands +Higham +Higham Hill +Higham School +Highams +Highbank +Highbanks +Highbarrow +Highboro +Highbourne +Highbridge +Highbrook +Highbury +Highbush +Highclere +Highcliff +Highcliffe +Highclove +Highcotts +Highcourt +Highcrest +Highcroft +Highcross +Highdales +Highdaun +Highdown +Highdown The Manor +Highdown Hill +Higher +Higher Barn +Higher Bents +Higher Bridge +Higher Bury +Higher Cambridge +Higher Carr +Higher Chatham +Higher Cross +Higher Darcy +Higher Dean +Higher Grange +Higher Green +Higher Knutsford +Higher Lime +Higher Lomax +Higher Market +Higher Ormond +Higher Pit +Higher Shady +Higher Swan +Higher Tame +Higher Turf +Higherdale +Highet +Highett +Highfield +Highfield Park +Highfields +Highgate +Highgate High +Highgoal +Highgrove +Highhill +Highhold +Highknob +Highland +Highland Corporate +Highland Creek +Highland Estates +Highland Farm +Highland Glen +Highland Grove +Highland Hall +Highland Heights +Highland Hills +Highland Lake +Highland Meadows +Highland Oaks +Highland Park +Highland Ridge +Highland Springs +Highland View +Highland Vista +Highland Woods +Highlander +Highlands +Highlandview +Highlawn +Highledge +Highlever +Highline +Highmead +Highmeadow +Highmoor +Highmore +Highmount +Highover +Highpath +Highpoint +Highpointe +Highridge +Highrise +Highrock +Highs +Highschool +Highshore +Highstead +Highsted +Highstream +Highthorne +Hightimber +Hightop +Hightown +Hightree +Highvale +Highview +Highwater +Highway +Highwood +Highwoodhall +Highwoods +Highworth +Higland +Higley +Higmoor +Higson +Higton +Higuera +Higuero +Higuero Highland +Hihn +Hihns Sulphur Spring +Hikido +Hikmat +Hil Ray +Hila +Hilaire +Hiland +Hilarita +Hilary +Hilbar +Hilbert +Hilbery +Hilborn +Hilborough +Hilbre +Hilburn +Hilbury +Hilcot +Hilda +Hilda May +Hildarose +Hildaville +Hilde +Hildebrand +Hildegard +Hildegarde +Hilden +Hilden Park +Hildenborough +Hildene +Hildens +Hilder +Hilderbrand +Hilders +Hilding +Hildreth +Hildyard +Hileen +Hileman +Hiles +Hiley +Hiley Brook +Hilfield +Hilgard +Hilgrove +Hilier +Hiline +Hilingdon +Hiliritas +Hill +Hill Born +Hill Brow +Hill Burne +Hill Climb +Hill Cot +Hill Court +Hill Crest +Hill Cumorah +Hill Dyke +Hill End +Hill Farm +Hill Field +Hill Girt Ranch +Hill Glen +Hill Green +Hill Hollow +Hill House +Hill Meade +Hill Meadow +Hill Oaks +Hill Park +Hill Path +Hill Point +Hill Pond +Hill Ridge +Hill Side +Hill Top +Hill Top View +Hill Trail +Hill View +Hillaire +Hillairy +Hillandale +Hillando +Hillantrae +Hillard +Hillard Lake +Hillars Heath +Hillary +Hillary Farm +Hillas +Hillbarn +Hillberg +Hillborough +Hillbottom +Hillbourne +Hillbrook +Hillbrooke +Hillbrow +Hillburn +Hillbury +Hillcap +Hillcot +Hillcote +Hillcourt +Hillcreek +Hillcrest +Hillcrest Park +Hillcrest View +Hillcroft +Hillcroome +Hillcross +Hilldale +Hilldeane +Hilldene +Hilldirk +Hilldown +Hilldrop +Hillegass +Hillen +Hillend +Hillendale +Hiller +Hillersdon +Hillery +Hillesden +Hillesley +Hilleyfield +Hillfield +Hillflower +Hillfoot +Hillgate +Hillgirt +Hillgrade +Hillgrove +Hillhaven +Hillhouse +Hillhurst +Hilliard +Hilliards +Hillidge +Hillier +Hilliers +Hilliger +Hilline +Hillingdon +Hillington +Hillis +Hillman +Hillmarton +Hillmead +Hillmeade +Hillmeyer +Hillmont +Hillmoor +Hillock +Hilloway +Hillpine +Hillplace +Hillridge +Hillrise +Hillrod +Hillrose +Hills +Hills Farm +Hills View +Hills of Claire +Hillsboro +Hillsboro Hunt +Hillsborough +Hillsdale +Hillshire +Hillside +Hillside Manor +Hillside Park +Hillside View +Hillsleigh +Hillslope +Hillsman +Hillsmere +Hillspark +Hillspoint +Hillspur +Hillstone +Hillstowe +Hillsview +Hillswood +Hillthorpe +Hillton +Hilltop +Hilltop Mall +Hilltree +Hillturn +Hillvale +Hillveiw +Hillview +Hillway +Hillwick +Hillwood +Hillworth +Hilly +Hillyard +Hillybarn +Hillydeal +Hillyer +Hilma +Hilmar +Hilmay +Hilmer +Hilmont +Hilo +Hilow +Hilrose +Hilsden +Hilsea +Hilsinger +Hiltibrand +Hilton +Hilton Fold +Hilton Head +Hilton Hill +Hilts +Hilversum +Hilwa +Himelfarb +Himley +Himmel +Himoor +Himrod +Hinchen +Hinchinbrook +Hinchingham +Hinchley +Hinchman +Hinckley +Hinckley Basin Fire +Hincks +Hind +Hind Hill +Hinde +Hindemith +Hindes +Hindhay +Hindhead +Hindiyeh +Hindle +Hindleap +Hindles +Hindley +Hindley Mill +Hindmans +Hindmarsh +Hindostan +Hindrey +Hinds +Hindsford +Hine +Hinemoa +Hines +Hing +Hingham +Hingston +Hinguar +Hinkle +Hinkler +Hinkley +Hinksden +Hinman +Hinricher +Hinsbrook +Hinsdale +Hinson Farm +Hinspeter +Hinstock +Hinston +Hinswood +Hinterlong +Hinton +Hinton Manor +Hinton Ranch +Hintz +Hintzewater +Hinxman +Hipley +Hipplers +Hipsley Mill +Hipwood +Hirabayashi +Hiram +Hird +Hirliman +Hiromi +Hirsch +Hirschberg +Hirst +Hirtes +Hirth +Hiscox +Hisperry +Historic +Historic Country +Historical +History +Hitch +Hitch Common +Hitcham +Hitchcock +Hitchcock Farm +Hitchen +Hitchen Hatch +Hitches +Hitchin +Hitching Post +Hitchings +Hitchins +Hitchwood +Hither Farm +Hitherbroom +Hithercroft +Hitherfield +Hitherwell +Hitherwood +Hito +Hitsman +Hitter +Hittinger +Hitty Tom +Hive +Hix +Hixberry +Hixon +Hixson +Hixson Farm +Hjelm +Hllwood +Hnery +Hoad +Hoade +Hoadley +Hoadly +Hoag +Hoagland +Hoaglands +Hob +Hob Hey +Hobamack +Hobart +Hobbayne +Hobbes +Hobbie +Hobbis +Hobbitt +Hobble Bush +Hobblebush +Hobbs +Hobbs Brook +Hobbs Cross +Hobbs Hill +Hobby +Hobcroft +Hobday +Hobdens +Hobe +Hoberg +Hobert +Hobhouse +Hobie +Hobler +Hobletts +Hobleythick +Hoboken +Hobomack +Hobomock +Hobson +Hobson Hollow +Hobson Mill +Hobson Moor +Hobson Oaks +Hobson Trails +Hobson Valley +Hobtoe +Hobury +Hochler +Hock Farm +Hockenden +Hocker +Hockerill +Hockering +Hockerley +Hockers +Hockett +Hockey +Hockin +Hocking +Hockley +Hockliffe +Hockney +Hocroft +Hoddam +Hodder +Hoddesdon +Hoddeston +Hoddle +Hodds +Hodel +Hodge +Hodge Clough +Hodgedale +Hodges +Hodgkins +Hodgkinson +Hodgson +Hodings +Hodlmair +Hodnett +Hodsoll +Hodson +Hoe +Hoe Mill +Hoecroft +Hoeder +Hoeffner +Hoeg +Hoehn +Hoelands +Hoen +Hoen Frontage +Hoerl +Hoestock +Hoeweed +Hoff +Hoffer +Hoffman +Hoffman Woods +Hoffmans +Hoffstead +Hoffstots +Hoford +Hofstra +Hog +Hog Farm +Hog Hatch +Hog Hill +Hog Neck +Hogan +Hogarth +Hogback +Hogback Wood +Hogbarn +Hogben +Hogden +Hoge +Hogeland Mill +Hogenkamp +Hogfair +Hogg +Hogg End +Hogg Memorial +Hoggshill +Hoghole +Hogmoor +Hogoak +Hogscross +Hogsdell +Hogshaw +Hogshaw Villas +Hogshill +Hogsmill +Hogspudding +Hogstough +Hogtrough +Hogue +Hogwood +Hohener +Hohlfelder +Hohman +Hoile +Hoiles +Hoiting +Hoitt +Hokah +Hokanson +Hoke +Holabird +Holasek +Holbeach +Holbeam +Holbeche +Holbeck +Holbeck Moor +Holbein +Holbek +Holberton +Holborn +Holborn Theobalds +Holborough +Holborow +Holbrook +Holbrook School +Holbrooke +Holburn +Holburne +Holcolme +Holcomb +Holcombe +Holcombe Old +Holcott +Holcroft +Holdcroft +Holden +Holden Clough +Holden Park +Holden Pond +Holdenby +Holdener +Holdenhurst +Holdenwood +Holder +Holderith +Holderman +Holderness +Holdernesse +Holders +Holders Hill +Holdfast +Holding +Holdridge +Holdrum +Holdsworth +Hole +Hole House +Holeclaw +Holegate +Holehouse +Holeman +Holesapple +Holeton +Holey +Holford +Holgate +Holhouse +Holiday +Holiday Hill +Holiday Hills +Holiday Park +Holiday Plaza +Holiday Ranch +Holin +Holister +Holkein +Holker +Holkham +Hollace +Hollacher +Holladay +Holladay Park +Holland +Holland Cliffs +Holland House +Holland Meadow +Holland Park +Holland Tract +Holland Villas +Hollanda +Hollander +Hollands +Hollar +Hollaway +Hollbrook +Hollen +Hollenbeck +Hollers +Hollerton +Holles +Hollett +Holley +Holleys +Holleyside +Hollhey +Holliben +Hollice +Hollicks +Hollickwood +Hollicombe +Holliday +Hollies +Holligrave +Hollin +Hollin Hey +Hollin Hill +Hollin Park +Hollinbank +Hollincross +Hollindale +Hollingdon +Hollinger +Hollings +Hollingshed +Hollingswood +Hollingsworth +Hollington +Hollingworth +Hollinhall +Hollinhurst +Hollins +Hollins Ferry +Hollins Green +Hollinsmoor +Hollinswood +Hollinsworth +Hollinwood +Hollis +Hollis Canyon +Hollis Court +Hollis Wood +Hollist +Hollister +Holliston +Holliwood +Hollman +Holloman +Hollow +Hollow Hill +Hollow Log +Hollow Oak +Hollow Park +Hollow Ridge +Hollow Spring +Hollow Tree +Hollow Tree Ridge +Hollow View +Hollow Way +Hollow Wood +Holloway +Holloways +Hollowbrook +Hollowdale Farm +Hollowell +Hollowfield +Hollowood +Hollowside +Hollowstone +Holly +Holly Auto Center +Holly Bank +Holly Beach Farm +Holly Berry +Holly Briar +Holly Bush +Holly Creek +Holly Crest +Holly Croft +Holly Cross +Holly Dene +Holly Farm +Holly Farms +Holly Forest +Holly Gate +Holly Gillingham +Holly Glen +Holly Green +Holly Grove +Holly Haven +Holly Hedge +Holly Hedges +Holly Hill +Holly Hills +Holly Hock +Holly House +Holly Knoll +Holly Lake +Holly Landing +Holly Leaf +Holly Loch +Holly Lynn +Holly Manor +Holly Marie +Holly Oak +Holly Park +Holly Point +Holly Ridge +Holly Spring +Holly Tree +Holly View +Holly la Access +Hollyann +Hollybank +Hollyberry +Hollybrook +Hollyburne +Hollybush +Hollycrest +Hollycroft +Hollycross +Hollydale +Hollyedge +Hollyfield +Hollyford +Hollygate +Hollygrape +Hollyhead +Hollyhedge +Hollyhey +Hollyhill +Hollyhock +Hollylea +Hollymead +Hollymeade +Hollymeoak +Hollymoor +Hollymount +Hollyoak +Hollyridge +Hollyrood +Hollys +Hollyshaw +Hollyspring +Hollythorn +Hollytree +Hollyview +Hollywater +Hollywood +Holm +Holm Mill +Holm Oak +Holman +Holmard +Holmbank +Holmbrook +Holmbury +Holmbury Hill +Holmbush +Holmcroft +Holmdale +Holmdel +Holmdel Middletown +Holmdell +Holmdene +Holme +Holme Farm +Holme House +Holme Lacey +Holme Lea +Holme Wood Felcourt +Holme Wood Heysham +Holme Wood Landscove +Holmead +Holmebrook +Holmefield +Holmehill +Holmemoor +Holmer +Holmer Green +Holmerdale +Holmes +Holmes Run +Holmesdale +Holmesley +Holmespun +Holmeswood +Holmethorpe +Holmewell +Holmewood +Holmfield +Holmfirth +Holmhurst +Holmlea +Holmleigh +Holmpark +Holmquist +Holmscroft +Holmshill +Holmside +Holmsley +Holmsley Field +Holmstall +Holmstead +Holmwood +Holmwood View +Holness +Holohan +Holroyd +Holsclaw +Holsing +Holsman +Holst +Holste +Holstein +Holster +Holstock +Holston +Holstrom +Holsworth +Holsworthy +Holt +Holt Head +Holt Park Chestnut +Holt Wood +Holtby +Holtdale +Holte +Holter +Holtermann +Holthouse +Holton +Holton Woods +Holts +Holtsmere End +Holtspur +Holtspur Top +Holtye +Holtz +Holub +Holway +Holwell +Holwell Hyde +Holwick +Holwood +Holworthy +Holy City +Holy Cross +Holy Harbour +Holy Name +Holy Ridge +Holy Trinity +Holybourne +Holybread +Holybrook +Holyfield +Holyoak +Holyoake +Holyoke +Holyport +Holyrood +Holywell +Holywood +Holzheimer +Homan +Homann +Homans +Hombrook +Home +Home Acres +Home Crest +Home Depot +Home Farm +Home Gate +Home Guard +Home Lawn +Home Meadows +Home Park +Home Park Mill Link +Home Place +Homebury +Homebush +Homebush Bay +Homecoming +Homecrest +Homecroft +Homedale +Homedean +Homefarm +Homefield +Homefields +Homeglen +Homeland +Homelands +Homelea +Homeleigh +Homemead +Homemeadow +Homeplace +Homepride +Homer +Homer Wheaton +Homerite +Homerlee +Homers +Homers Wood +Homersham +Homerton +Homerton High +Homes +Homes Park +Homesdale +Homeside +Homesite +Homespun +Homestake +Homestall +Homestead +Homestead Farm +Homestead Heights +Hometown +Homeview +Homeward +Homeward Glen +Homeward Hill +Homeward Hills +Homewards +Homewood +Homewood Landing +Hommann +Hommell +Hommocks +Homsted +Homsy +Honda +Honduras +Hone +Honest Pleasure +Honesty +Honey +Honey Bear +Honey Bridge +Honey Brook +Honey Creek +Honey Croft +Honey End +Honey Hill +Honey Lake +Honey Locust +Honey Pot +Honey Suckle +Honeybear +Honeybee +Honeybourne +Honeybrook +Honeycomb +Honeycritch +Honeycrock +Honeycross +Honeydew +Honeygold +Honeyhill +Honeymoon +Honeymyrtle +Honeynut +Honeysett +Honeysuckle +Honeysuckle Rose +Honeytree +Honeywell +Honeywood +Honfleur +Honford +Hong Kong +Honiss +Honister +Honiton +Honker +Honley +Honnicut +Honnor +Honolulu +Honor +Honor End +Honor Oak +Honora +Honore +Honors +Honsa +Honsena +Hontar +Honved +Honywood +Hoo +Hoo Green +Hoobyar +Hood +Hood Farm +Hood Franklin +Hood School +Hooded Crow +Hooe +Hooes +Hooffs Run +Hook +Hook Creek +Hook End +Hook Farm +Hook Gate +Hook Green +Hook Harbor +Hook Heath +Hook Hill +Hook Mountain +Hooke +Hookend +Hooker +Hookhouse +Hooking +Hooklands +Hookley +Hookmill +Hooks +Hooks Hall +Hookstile +Hookston +Hookstone +Hookwood +Hooley +Hooleyhay +Hooper +Hooper High +Hooper Lake +Hoopers +Hoopes +Hoosic +Hoot Owl +Hooten +Hooton +Hoover +Hoover Farm +Hooyman +Hop +Hop Brook +Hop Garden +Hop Gardens +Hop Pocket +Hop Ranch +Hopark +Hopatcong +Hope +Hope Acres +Hope Carr +Hope Chapel +Hope Farm +Hope Fold +Hope Hey +Hope Park +Hopeco +Hopedale +Hopefield +Hopehouse +Hopeland +Hopelea +Hopes Farm +Hopestill +Hopestill Brown +Hopeton +Hopetoun +Hopewell +Hopewell Farm +Hopewood +Hopfield +Hopgarden +Hopgood +Hophurst +Hopi +Hopke +Hopkin +Hopkins +Hopkins Gulch +Hopkinson +Hopkinton +Hopman +Hoppa +Hopper +Hopper Farm +Hoppers +Hoppett +Hoppin +Hoppin Hill +Hopping +Hopping Brook +Hopping Jacks +Hoppingwood +Hoppit +Hoppner +Hopps +Hoppys +Hops +Hopson +Hopton +Hopwood +Hopyard +Horace +Horace Darling +Horace Harding +Horace Ward +Horatio +Horbling +Horbor +Horbury +Horcajo +Horde +Horder +Hordern +Horderns +Horeb +Horest +Horewood +Horgan +HorizOn +Horizen Island +Horizon +Horizon Hts +Horizons +Horkesley +Horley +Horley Lodge +Horlock +Horman +Hormead +Horn +Horn Beam +Horn Blower +Horn Point +Horn Pond Brook +Hornash +Hornbaker +Hornbeam +Hornbeam Hill +Hornbeams +Hornbeck +Hornblower +Hornbrook +Hornbuckle +Hornby +Horncastle +Hornchurch +Hornchurch Grosvenor +Horndean +Horne +Horne Tooke +Hornecastle +Hornell +Horner +Hornes Green +Hornet +Horneywood +Hornez +Hornfair +Hornhill +Hornidge +Horning +Horning sea Park +Horningsea Park +Horns +Horns Lodge +Horns Oak +Hornsby +Hornsea +Hornsey +Hornsey Park +Hornshay +Hornshill +Hornsmill +Hornton +Horridge +Horrigan +Horrobin +Horrocks +Horrocks Fold +Horsa +Horse +Horse Center +Horse Ferry +Horse Guards +Horse Hill +Horse Hollow +Horse Island +Horse Lake +Horse Pen +Horse Pond +Horse Prairie +Horse Shoe +Horseblock +Horsebrass +Horsedge +Horsefair +Horseferry +Horseforth +Horsegrove +Horseguard +Horseguards +Horsehead +Horseless Carriage +Horsell +Horsell Common +Horselydown +Horseman +Horsemans +Horsemans Canyon +Horsemoor +Horsenden +Horseneck +Horseneile +Horsepond +Horseshoe +Horseshoe Bend +Horseshoe Hill +Horseshoes +Horsetail +Horsewash +Horsfall +Horsfeld +Horsfield +Horsford +Horsforth Town +Horsham +Horsley +Horsman +Horsmann +Horsmonden +Horsnell +Horst +Horsted +Hort +Hortense +Hortensia +Horton +Horton Bridge +Horton Hill +Hortonia Point +Hortree +Hortus +Horwath +Horwedel +Horwich +Horwood +Hory +Hosack +Hosdens +Hoser +Hosey +Hosey Common +Hosford +Hosford Hills +Hosie +Hosier +Hosker +Hoskier +Hoskin +Hosking +Hoskins +Hoskinson +Hosler +Hosmer +Hospital +Hospital Cent Ser +Hospital High +Hospital Ring +Hosta +Hostetter +Hotaling +Hotchkin +Hotchkiss +Hotel +Hotham +Hother +Hothersall +Hothfield +Hothorn +Hotin +Hotley Bottom +Hotson +Hotspur +Hottel +Hotten +Houbolt +Houchin +Houde +Hough +Hough End +Hough Hall +Hough Hill +Hough Side +Hough Tree +Houghend +Houghley +Houghton +Houghton Green +Houghton Park +Houldsworth +Houldworth +Houle +Houlton +Hound House +Hound Run +Houndhill +Houndmaster +Houndmills +Houndridge +Hounds +Hounds Ditch +Houndsden +Houndsfield +Houndsworth +Hounslow +Hounslow High +Hour Glass +Houret +Hourglass +Hourihan +Hourseywood +Housatonic +House +House Rock +House Works +House of Correction +Houselands +Houseley +Houseman +Houser +Housley +Housman +Houson +Houston +Houtman +Houtmann +Houts +Hove +Hoveden +Hovefields +Hovell +Hoven +Hovenden +Hoverman +Hovey +Hovingham +Hovis +How +How Green +How Lea +Howard +Howard Castle +Howard Chapel +Howard Farm +Howard Farms +Howard Gleason +Howard Grove +Howard Hills +Howard Lake +Howard Landing +Howard Manor +Howard Park +Howards +Howards Point +Howards Wood +Howardton +Howarth +Howarth Cross +Howatt +Howbourne +Howbridge +Howbridge Hall +Howbro +Howbury +Howden +Howden Clough +Howdy +Howe +Howe Green +Howell +Howell Mountain +Howells +Howerton +Howes +Howes Brook +Howgate +Howgill +Howie +Howison +Howitt +Howitzer +Howkins +Howland +Howland Hill +Howlands +Howlett +Howletts +Howley +Howley Mill +Howley Park +Howliston +Hows +Howse +Howsen +Howser +Howsin +Howsman +Howson +Howth +Howton +Hoxett +Hoxey +Hoxie +Hoxton +Hoxton Baring +Hoxton Park +Hoy +Hoya +Hoyer +Hoyet +Hoylake +Hoyle +Hoyles +Hoyles Mill +Hoym +Hoyne +Hoysville +Hoysville Manor +Hoyt +Hoyts +Hoyts Wharf +Hoytt +Hozz +Hren +Hub +Hubbard +Hubbard Gulch +Hubbard Park +Hubbard School +Hubbards +Hubbardston +Hubbardton +Hubbartt +Hubbell +Hubberd +Hubbert School +Hubble +Huber +Hubert +Hubert H Humphrey +Hubon +Hubs Point +Huck +Huckins +Huckleberry +Huckleberry Hill +Hucklow +Hud +Hudcar +Huddart +Huddart Park +Huddersfield +Huddleson +Huddleston +Huddlestone +Huddy +Hudee +Hudis +Hudleston +Hudnall +Hudner +Hudson +Hudson Bay +Hudson Bluff +Hudson Crest +Hudson Landing +Hudson Park +Hudson River +Hudson Service +Hudswell +Huehl +Huehn +Huerto +Huested +Huey +Huff +Hugel Hill +Hugenot +Huggins +Hugh +Hugh Bennett +Hugh Cargill +Hugh Dalton +Hugh Dickson +Hugh Fraser +Hugh Hill +Hugh Lupus +Hugh Muir +Hughan +Hughen +Hughenden +Hughes +Hughesdale +Hughey +Hughline +Hugletts +Hugo +Hugon +Huguenot +Hugus +Huhtala +Huie +Huizenga +Hula +Hulbert +Hulet +Hulfords +Hull +Hull Shore +Hullbridge +Hulley +Hulls +Hulls Mill +Hulme +Hulme Hall +Hulme High +Hulmes +Hulseheath +Hulton +Humar Pond +Humber +Humberstone +Humbert +Humblebee +Humboldt +Humbolt +Humbug +Humbug Creek +Hume +Hume Hall +Humes +Humma Yeppa +Hummer +Humming +Hummingbird +Hummingbird Hill +Hummock +Hump +Humphrey +Humphreys +Humphries +Humphrys +Hunbldt +Huncoat +Huncote +Hundertmark +Hundred Acre +Hundred Acres +Hundred Oaks +Hundredhouse +Hundreds +Hundsford +Hunewill +Hunger Hill +Hunger Hills +Hungerden +Hungerford +Hungers +Hungry Harbor +Hungry Hill +Hungry Hollow +Hunington +Hunkele +Hunken +Hunnable +Hunner +Hunnewell +Hunnicutt +Hunolt +Hunsaker +Hunsaker Canyon +Hunsdon +Hunslet +Hunslet Hall +Hunsley +Hunstanton +Hunston +Hunsworth +Hunt +Hunt Club +Hunt Country +Hunt Farm +Hunt Fold +Hunt Hill +Hunt Manor +Hunt Master +Hunt Meadow +Hunt Ridge +Hunt Valley +Hunt Way +Huntchase +Huntcliff +Hunteigh +Hunter +Hunter Creek +Hunter Hill +Hunter Mill +Hunter Mountain +Hunter Ridge +Hunter View +Hunter Village +Hunterbrook +Hunterbrooke +Huntercombe End +Hunterdon +Hunters +Hunters Chase +Hunters Club +Hunters Creek +Hunters Den +Hunters Gate +Hunters Glen +Hunters Grove +Hunters Hall +Hunters Harbor +Hunters Hill +Hunters Point +Hunters Ridge +Hunters Valley +Hunters View +Huntersend +Hunterspoint +Hunterton +Huntfield +Huntgate +Hunting +Hunting Creek +Hunting Crest +Hunting Farms +Hunting Gate +Hunting Hill +Hunting Hollow +Hunting Horn +Hunting Horse +Hunting Hound +Hunting Lake +Hunting Quarter +Hunting Ridge +Hunting Shire +Huntingdale +Huntingdon +Huntingfield +Huntingfields +Huntington +Huntington Bay +Huntington Commons +Huntington Estates +Huntington Farm +Huntington Squ +Huntington Square +Huntington Village +Huntington Woods +Huntingtown +Huntingwood +Huntland +Huntleigh +Huntley +Huntley Automall +Huntley Meadows +Huntley Mount +Huntley Square +Huntley Woods +Huntleys Point +Huntly +Huntmar Park +Huntmaster +Hunton +Huntoon +Huntover +Huntress +Huntridge +Huntroyde +Hunts +Hunts Bridge +Hunts Hill +Hunts Point +Hunts Pond +Hunts Slip +Huntsbottom +Huntsbridge +Huntshire +Huntsman +Huntsmans +Huntsmill +Huntsmoor +Huntsmore +Huntspill +Huntsville +Huntswood +Huntting +Huntwood +Huntwood Manor +Huntzinger +Huon +Huppenthal +Huran +Hurd +Hurden +Hurdis +Hurdle Hill +Hurds +Hurdsfield +Hurford +Hurlands +Hurlbert +Hurlburt +Hurlbut +Hurlcroft +Hurley +Hurlingham +Hurlock +Hurlstone +Hurn Court +Hurnard +Hurndell +Huron +Hurricane +Hursley +Hurst +Hurst Bank +Hurst Farm +Hurst Green +Hurst Lea +Hurst Mill +Hurst Park +Hurstbank +Hurstborne +Hurstbourne +Hurstbrook +Hurstcourt +Hurstdene +Hurstead +Hurstfield +Hurstfold +Hurstford +Hurstheads +Hurstleigh +Hurstvale +Hurstville +Hurstwood +Hurtmore +Hurtwood +Hus +Huse +Huseman +Hushbeck +Husker +Husking Peg +Huskisson +Huskwood +Husky +Husman +Huss +Hussa +Hussey +Husson +Hust +Husteads +Husted +Hustlings +Huston +Hutchenson +Hutcheson +Hutchings +Hutchingsons +Hutchins +Hutchinson +Hutchinson River +Hutchison +Hutchison Valley +Hutson +Hutter +Hutton +Hutton Hill +Huxbear +Huxley +Huxtable +Huyler +Huyler Landing +Hy Sil +Hyacinth +Hyacynth +Hyam +Hyannis +Hyannisport +Hyatt +Hyatts +Hybernia +Hybrid +Hycliff +Hycrest +Hyde +Hyde Bank +Hyde Burndale +Hyde End +Hyde Estate +Hyde Farms +Hyde Hall +Hyde Heath +Hyde Park +Hyde Wood +Hydebrae +Hyden Farm +Hyder +Hydeway +Hydra +Hydrae +Hydrangea +Hydrangia +Hydraulic +Hydrus +Hygate +Hygelund +Hyla +Hyla Brook +Hylair +Hylan +Hyland +Hyland Courts +Hyland Creek +Hyland Greens +Hyland Hills +Hyland Ridge +Hylands +Hyles +Hylton +Hyman +Hymen +Hyndman +Hynds +Hynes +Hynson +Hynton +Hypatia +Hyperion +Hypine +Hypoint +Hyrax +Hyrons +Hyrstlands +Hysler +Hyslip +Hyslop +Hyson +Hythe +Hythe End +Hythe Park +Hythefield +Hywood +I Beam +I Fernwood +I R Russo +I U Willets +II +Iadarosa +Iadorola +Iager +Iago +Ian +Ian Keats +Iandra +Iannis Spring +Iasco +Ibbetson +Ibbotson +Ibera +Iberia +Iberian +Iberis +Ibex +Ibis +Ibsen +Ibstone +Ibworth +Icard +Icarus +Icasia +Ice +Ice Arena +Ice Box Canyon +Ice Circle +Ice Cream +Ice Crystal +Ice Fort Cove +Ice House +Ice Plant +Ice Pond +Icehouse +Icehouse Woods +Iceland +Icemeadow +Icerose +Iceton +Ichabod +Ickburgh +Ickenham +Ickenham Crosier +Ickenham Edinburgh +Ickenham Milverton +Icker +Ickford +Ickleford +Ickleton +Icklingham +Icknield +Ickworth Park +Icy Brook +Ida +Ida Clayton +Idabright +Idaho +Idal +Idalane +Idalia +Idaline +Idalla +Idalou +Idalyn +Idas +Ide +Ide Hill +Ideal +Idell +Iden +Idle Creek +Idle Day +Idle Pines +Idle Wild +Idlebrook +Idlebunny +Idleigh Court +Idlepark +Idlestone +Idlewell +Idlewild +Idlewilde +Idlewood +Idlewood Park +Idmiston +Idol +Idolstone +Idonia +Idora +Idyl +Idylberry +Idylewild +Idyllwild +Idylwild +Idylwilde +Idylwood +Idylwood Mews +Idzorek +Ielmorine +Iffley +Ifield +Ifold +Ifold Bridge +Ightham +Iglehart +Iglesia +Ignacio +Ignatius +Ignatius Diggs +Igoe +Ijauna +Ijuana +Ikara +Ike +Ikea Center +Ikin +Ila +Ilbert +Ilchester +Ilderton +Ileen +Ilene +Iler +Ilex +Ilford +Ilfracombe +Ilgars +Iliad +Iliff +Iliffe +Ilikai +Ilinka +Ilion +Ilk +Ilka +Ilkeston +Ilkley +Ilkley Moor +Illabo +Illalong +Illarangi +Illaroo +Illawarra +Illawong +Illeroy +Illi Indy +Illiliwa +Illingsworth +Illingworth +Illini +Illinios +Illinois +Illona +Illoura +Ilma +Ilmington +Ilminster +Ilo +Ils +Ilsley +Iluka +Ilwaco +Ilya +Imbaro +Imber +Imber Park +Imberhorne +Imbrook +Imelda +Imhoff +Imlay +Immanuel +Immarna +Imogene +Imola +Impala +Impalla +Impatiens +Imperia +Imperial +Imperial College +Imperio +Import +Impressions +Impton +Impulse +Imran +Imrie +Ina +Inala +Inaudi +Inca +Ince +Inchbonnie +Inchcape +Inchfield +Inchley +Inchmery +Inchon +Incinerator +Incline +Incline Green +Increase Ward +Ind.Bch. Serv. +Indale +Indan Fire +Indelicato +Independence +Independent +Independent Hill +Independent School +Independents +Inderwick +Index +India +Indian +Indian Boundary +Indian Boundary Line +Indian Brook +Indian Broom +Indian Bull +Indian Camp +Indian Chase +Indian Chief +Indian Club +Indian Cove +Indian Creek +Indian Field +Indian Grass +Indian Gulch +Indian Harbor +Indian Head +Indian Hill +Indian Hill Way +Indian Hills +Indian Hollow +Indian Home +Indian Inn +Indian Joe +Indian Knoll +Indian Lake +Indian Landing +Indian Meadow +Indian Mill +Indian Moon +Indian Mound +Indian Oaks +Indian Path +Indian Pipe +Indian Point +Indian Pond +Indian Princess +Indian Queen Point +Indian Rice +Indian Ridge +Indian River +Indian Rock +Indian Run +Indian Spring +Indian Springs +Indian Summer +Indian Trail +Indian Tree +Indian Valley +Indian Wells +Indian Wind +Indian Wood +Indian Woods +Indiana +Indiana Toll +Indianapolis +Indianhill +Indianola +Indianwood +Indigo +Indio +Indlebar +Indura +Indus +Industrial +Industrial Heights +Industrial Park +Industry +Indy +Inelgah +Inez +Infantry Ridge +Infield +Infirmary +Ing +Inga +Ingal +Ingalara +Ingalls +Ingalton +Ingara +Ingate +Ingatestone +Ingelow +Ingelrica +Ingelside +Ingemunson +Ingersley +Ingersol +Ingersoll +Ingerson +Ingestre +Ingfield Manor +Ingham +Inghams +Ingle +Inglebar +Inglebert +Ingleboro +Ingleborough +Inglebrook +Ingleburn +Ingleburn Gardens +Ingleby +Ingleden Park +Ingledene +Ingledew +Inglee +Inglefield +Inglemere +Inglenook +Ingleshire +Ingleside +Inglethorpe +Ingleton +Inglewood +Inglis +Inglish Mill +Ingold +Ingoldsby +Ingolsby +Ingot +Ingraffia +Ingraham +Ingram +Ingram Creek +Ingram Parade Church +Ingrams +Ingrave +Ingrebourne +Ingress Park +Ingrid +Ingroff +Ings +Inhams +Inheritance +Inholmes Park +Inholms +Inigo Jones +Inip +Ink +Ink Grade +Ink Pen +Inkerman +Inland +Inlet +Inman +Inman Hill +Inmans +Inmoor +Inn +Inner +Inner Belt +Inner Circle +Inner Distribution +Inner Harbor +Inner Lake Shore +Inner Loop +Inner Ring +Innerhill +Innerwick +Innes +Innesdale +Inness +Innings +Innis +Innis Property +Innisbrook +Innisfail +Innisfall +Innisfree +Inniskilling +Innisvale +Innitou +Innkeeper +Innovation +Innovator +Innsbrook +Innsbruck +Insall +Insbrook +Inscho +Inscoe +Insel +Insey +Insignia +Inskip +Inslee +Insley +Inspection House +Inspiration +Inspiration Point +Institute +Instone +Instow +Instrom +Intack +Intake +Intalbury +Interbay +Interchange +Interglen +Interhaven +Interlachen +Interlake +Interlaken +Interlochen +Interlocken +Intermezzo +International +Internationale +Interocean +Interpretive Center +Interpromontory +Intersection +Interstate +Intertech +Interurban +Interval +Intervale +Interventions +Intone +Intrepid +Intrieri +Inverallan +Inverary +Inverbeg +Inverchapel +Inverdale +Inverell +Inverforth +Invergorden +Invergowrie +Inverine +Inverlael +Inverleith +Inverness +Inverness Ridge +Inverrary +Inverray +Inversham +Inverton +Invertrees +Inverway +Inverwood +Investigator +Investment +Invicta +Inville +Invincible +Inwood +Inworth +Inyo +Inza +Inzer +Iodine +Iola +Iolanthe +Iolanthus +Iolite +Iona +Iona Sound +Ione +Ione Michigan Bar +Ionia +Ionic +Ioof +Iorio +Iowa +Ipava +Iping +Ipswich +Ipswich River +Ira +Iraga +Iralba +Iran +Irding +Iredale +Iredine +Ireland +Ireland Brook +Irelands +Irena +Irene +Irenhyl +Irenic +Ireson +Ireta +Ireton +Iride +Iriquois +Iris +Iris Bloom +Irish Ridge +Irk +Irk Vale +Irkdale +Irlam +Irma +Irma Harvey +Irma Jones +Irma Lyle +Irmen +Irmisch +Irmish +Iron +Iron Bridge +Iron Brigade Unit +Iron Forge +Iron Gate +Iron Gorge +Iron Hill +Iron Hollow +Iron Horse +Iron Latch +Iron Mill +Iron Mine +Iron Mine Hill +Iron Point +Iron Spgs Fire +Iron Springs +Iron Wood +Ironbark +Ironbark Ridge +Ironbound +Irondale +Irondequoit +Irongate +Ironhill +Ironhorse +Ironmaster +Ironmine +Ironmonger +Ironshoe +Ironside +Ironstone +Ironton +Ironwell +Ironwood +Ironwood View South +Iroquios +Iroquis +Iroquois +Irrara +Irrawong +Irribin +Irrigation +Irrubel +Irvana +Irvin +Irvine +Irvine Turner +Irving +Irving Johnson +Irving Park +Irvington +Irvington Manor +Irvon Hill +Irwell +Irwin +Irwindale +Irwine +Iry +Isa +Isaac +Isaac Davis +Isaac Hull +Isaac Smith +Isaacs +Isabel +Isabel Virginia +Isabell +Isabella +Isabelle +Isador +Isadora +Isadora Duncan +Isadore +Isaiah +Isalona +Isanti +Isar +Isbel +Isbell +Isbells +Isca +Ischia +Ise +Iselin +Isen Manor +Isengard +Isernia +Isetta +Isham +Isham Randolph +Isherwood +Ishi +Ishi Goto +Ishnala +Ishtar +Isis +Isla +Isla Vista +Island +Island Channel +Island Creek +Island Farm +Island Heights +Island Hill +Island Lake +Island Park +Island Pond +Island View +Islander +Islandside +Islandview +Islay +Isle +Isle Royal +Isle Royale +Isle of Skye +Isle of Wight +Isled +Isledon +Isleford +Isler +Isles +Islesboro +Islet +Islet Park +Isleton +Isleview +Islingham Farm +Islington +Islington High +Islington Park +Islip +Islip Manor +Ismailia +Ismay +Ismays +Ismona +Isobell +Isola +Isoscelles +Issa +Issac Miller +Issaquah Hobart +Istana +Isted +Istvan +Italia +Italy +Itasca +Itaska +Itch +Itchel +Itchell +Iteri +Ithaca +Ithan +Ithica +Itte +Ittureria +Iva +Ivah +Ivahar +Ivakota +Ivakota Farm +Ivaloo +Ivan +Ivanhoe +Ivano +Ivans +Ive Farm +Iveagh +Ivedon +Ivel +Iveley +Ively +Iver +Ivere +Ivernia +Ivers +Iverson +Iverys +Ives +Iveson +Ivey +Ivie +Ivie Acres +Ivimey +Ivins +Ivonhoe +Ivor +Ivory +Ivory Creek +Ivory Lace +Ivy +Ivy Bank +Ivy Barn +Ivy Bridge +Ivy Bush +Ivy Chimneys +Ivy Creek +Ivy Crest +Ivy Dene +Ivy Falls +Ivy Gate +Ivy Glen +Ivy Green +Ivy Hall +Ivy Hill +Ivy Hills +Ivy Hollow +Ivy House +Ivy Leaf +Ivy League +Ivy Lodge +Ivy Meade +Ivy Mill +Ivy Mills +Ivy Oak +Ivy Park +Ivy Ridge +Ivy Tree +Ivy Wood +Ivychurch +Ivydale +Ivydene +Ivygate +Ivygreen +Ivyhouse +Ivylea +Ivyleaf +Ivymount +Ivystone +Ivytown +Ivywild +Ivywood +Iwanuma +Ixias +Ixion +Ixonia +Ixworth +Izaak Walton +Izane +Izmer +Izmir +Izola +J D Reading +J F Kennedy +J H Brooks +J Hart Clinton +J L B +J M Van Ryper +J Pankow +J Rogers +J Smith +J T Crow +J Yard +JW Williams +Jabez +Jabil +Jacana +Jacap +Jacaranda +Jacey +Jacinta +Jacinth +Jacinto +Jack +Jack Breault +Jack Clow +Jack Cornwell +Jack London +Jack Pine +Jack Rabbit +Jack Rabbit Ridge +Jack Rogers +Jack Russell +Jack Tar +Jack Tone +Jack Williams +Jacka +Jackaranda +Jackass +Jackdaw +Jackets +Jackey +Jackie +Jackie Robinson +Jackies +Jacklin +Jackling +Jacklynn +Jackman +Jackpine +Jackpit +Jacks +Jacks Reef +Jacksnipe +Jacksol +Jackson +Jackson Branch +Jackson Grove +Jackson Mill +Jackson Oaks +Jackson Ranch +Jackson Schoolhouse +Jackson Slough +Jacksonia +Jacksons +Jacksons Edge +Jacksonville +Jackstraw +Jacky +Jaclyn +Jacob +Jacob Amsden +Jacob Brack +Jacob Cobb +Jacob Cushman +Jacob Ferry +Jacobs +Jacobs Gates +Jacobs Meadow +Jacobs Mill +Jacobs Well +Jacobsen +Jacobson +Jacobus +Jacoby +Jaconnet +Jacquara +Jacquard +Jacquelin +Jacqueline +Jacquelyn +Jacques +Jacquie +Jacquith +Jacqwill +Jacuzzi +Jada +Jadach +Jadchalm +Jade +Jade Hill +Jade Meadow +Jade Post +Jadeleaf +Jaden +Jadwin +Jaeger +Jaffa +Jaffe +Jaffray +Jaffrey +Jagelman +Jagerrd +Jagged Rock +Jagger +Jaggers +Jagle +Jago +Jagoe +Jaguar +Jagusch +Jahant +Jahn +Jahns +Jai +Jail +Jaimee +Jaipur +Jake +Jake Brown +Jake Creek +Jakeman +Jakes +Jakson +Jalaber +Jalbert +Jalisco +Jalleison +Jamaica +Jamaica Park +Jamberoo +Jamboree +Jameison +James +James Andrew +James Bailey +James Barton +James Bay +James Black +James Burke +James Butcher +James Butterworth +James Carter +James Cook +James Craig +James Creek +James Deane +James Donlon +James Doolittle +James Edward +James Erskine +James Fenimore Cooper +James Flynn +James Halley +James Haney +James Hentry +James King +James L L Burrell +James Lee +James Leigh +James Lex +James M Rochford +James Madison +James Maury +James Michener +James Mileham +James Millen +James Patten +James R Rakow +James Ridge +James River +James Ruse +James Russell +James Swanzey +James Tighe +James Town +James W Smith +James Watson +James Wittchen +James Wright +Jamesburg Half Acre +Jamesbury +Jameson +Jameson Canyon +Jameston +Jamestown +Jamestowne +Jamesview +Jamey +Jami +Jamica +Jamie +Jamie Lee +Jamieson +Jamieson Sprigg +Jamison +Jamison Creek +Jamlin +Jamroga +Jan +Jan Mar +Jan Marie +Jan River +Jan View +Jana +Jana Vista +Janali +Janamba +Janas +Jancie +Jandell +Jandus +Jandus Cut Off +Jandy +Jandyce +Jane +Jane Adams +Jane Addams +Jane Ellen +Jane Morbey +Janel +Janelia Farm +Janelin +Janell +Janelle +Janer +Janero +Janes +Janeswood +Janet +Janeth +Janette +Janeway +Janice +Janie +Janina +Janine +Janis +Janita +Janke +Janna +Janna Lee +Jannali +Jannarone +Jannelle +Janney +Janneys +Jannie +Janocha +Janock +Janos +Janphil +Janrick +Jansa +Janschek +Jansen +Jansen Farm +Jansens +Janssen +January +Janvrin +Janwal +Japan +Japaul +Japonica +Jappa +Jaquays +Jaques +Jaqui +Jar Brook +Jarboe +Jardin +Jardine +Jared +Jarico +Jarist +Jarlath +Jarman +Jarmann +Jarmons +Jarnecke +Jarnigan +Jarocin +Jarombek +Jarrah +Jarrard +Jarrett +Jarrett Valley +Jarrow +Jarsey +Jarvie +Jarvis +Jasen +Jaskot +Jaskula +Jaslow +Jasmin +Jasmine +Jasmine Hollow +Jasnar +Jason +Jason Grant +Jason Hill +Jason Woods +Jasons +Jasper +Jasper Highland +Jasper Hill +Jasper Sears +Jasset +Jasyn +Jauncey +Jaunell +Java +Javalina +Javan +Javelin +Javier +Javins +Javore +Jawl +Jay +Jay Bee +Jay Miller +Jayar +Jaybarry +Jaybee +Jaydee +Jaydine +Jayeselle +Jayhawk +Jaylee +Jayme +Jayne +Jaynes +Jaypore +Jayrose +Jays +Jaysmith +Jayson +Jaystone +Jayton +Jaywalk +Jaywick +Jaywood +Jealam +Jean +Jean Baptiste +Jean Carol +Jean Creek +Jean Ellen +Jean Marie +Jean Wailes +Jeane +Jeanette +Jeanie +Jeanine +Jeanna +Jeanne +Jeanne Darc +Jeanneret +Jeannette +Jeannie +Jeannine +Jeans +Jeatom +Jebb +Jebidia +Jed +Jed Forest +Jed Smith +Jedburg +Jedburgh +Jeddo +Jedediah +Jedforest +Jef +Jeff +Jeff Brian +Jeff Ryan +Jeffcott +Jeffer +Jeffereson +Jefferies +Jefferon +Jeffers +Jefferson +Jefferson Heights +Jefferson Run +Jeffersonian +Jeffery +Jefferys +Jeffrey +Jeffrey Keating +Jeffreys +Jeffreys Neck +Jeffrie +Jeffries +Jeffry +Jefry +Jefts +Jeger +Jehl +Jeken +Jelf +Jelin +Jelinic +Jelley +Jellicoe +Jelliff +Jellingal +Jelly Belly +Jelson +Jemmett +Jemryn +Jenckes +Jencks +Jendi +Jenes +Jenevein +Jeni +Jenifer +Jenison +Jenkin +Jenkins +Jenkins Farm +Jenkins Ridge +Jenkinson +Jenkisson +Jenks +Jenlar +Jenmar +Jenna +Jenne +Jennell +Jenner +Jennery +Jenness +Jennett +Jenney +Jenni +Jennie +Jennie Dugan +Jennie Richards +Jennie Run +Jennifer +Jennifer Daisy +Jennifer School +Jenniffer +Jenning +Jenningham +Jennings +Jennings Chapel +Jennings Cove +Jennings Farm +Jennings Mill +Jennings Park +Jennings Pond +Jenniper +Jennison +Jenny +Jenny D +Jenny Green +Jenny Jae +Jenny Lind +Jenny Lynne +Jenolan +Jens Jensen +Jensen +Jensen Ranch +Jensen Springs +Jenton +Jenvey +Jephson +Jephtha +Jeppos +Jeppson +Jepson +Jerad Place +Jerald +Jeraldo +Jerdens +Jere +Jerele +Jeremiah +Jeremie +Jeremy +Jeremys +Jereva +Jeri +Jericho +Jericho City +Jericho Hill +Jericho Oyster Bay +Jericho Park +Jerico Hill +Jerilderie +Jerilyn +Jerilynn +Jerlyn +Jerman +Jermantown +Jerminle +Jermyn +Jernee +Jernee Mill +Jerningham +Jerold +Jerome +Jerrara +Jerrard +Jerri +Jerridge +Jerrie +Jerries +Jerrold +Jerry +Jerry Clay +Jerry Jingle +Jerry Liefert +Jerrys +Jersey +Jersey City +Jersey Gardens +Jersey Island +Jersy +Jerusalem +Jerusalem Church +Jerusha +Jervey +Jervis +Jervois +Jeshurun +Jesierski +Jeskyns +Jesmond +Jespersen +Jess +Jess Ranch +Jessam +Jessamine +Jessamy +Jesse +Jesse James +Jessel +Jessen +Jessenland +Jesses +Jessett +Jessica +Jessie +Jessie Blythe +Jessie Jo +Jesson +Jessop +Jessup +Jester +Jesup +Jesup Blair +Jet +Jeter +Jethro +Jethro Peters +Jetson +Jetter +Jetty +Jetwood +Jewel +Jewelflower +Jewell +Jewell Hill +Jewell McKoy +Jewelsford +Jewett +Jewett Hill +Jewett Park +Jewish War Veterans +Jewitt +Jewry +Jeyes +Jeymer +Jezebel +Jezierski +Jezreels +Jf Kennedy +Jf Mahoney +Jib +Jibbon +Jibboom +Jibstay +Jidana +Jigger +Jill +Jill Ann +Jill Peak +Jillana +Jillian +Jillifer +Jillong +Jillson +Jilrick +Jim +Jim Dhamer +Jim Elder +Jim Fear +Jim Negra +Jim Shaw +Jim Simpson +Jim Veal +Jimada +Jimdale +Jimeno +Jimmer +Jimmy +Jimno +Jinatong +Jinchilla +Jindabyne +Jingle +Jingle Bell +Jiniwin +Jinna +Jionzo +Jipp +Jj +Jo +Jo Ann +Jo Deb +Jo Jo +Joaedja +Joal +Joalah +Joan +Joan Marie +Joan Vista +Joann +Joanna +Joanne +Joaquin +Joaquin Miller +Joaquin Murieta +Job Cushing +Jobe +Jobling +Jobs +Joby +Jocama +Jocarda +Jocare +Jocarm +Jocelyn +Jocher +Jochinsen +Jochum +Jocine +Jocketts +Jockey +Jockey Hollow +Joclyn +Joda +Jodan +Jodane +Jodave +Jodee +Jodi +Jodie +Jodis +Jodphur +Jodrell +Jody +Joe +Joe Adler +Joe Borovich +Joe Di Maggio +Joe F Young +Joe Jenny +Joe Klutsch +Joe Mary +Joe Orr +Joe Perez +Joe Pombo +Joel +Joelle +Joerg +Joerganson +Joerger +Joerger Cut Off +Joes +Joetta +Joey +Joffre +Jofran +Johanna +Johans Beach +Johansen +Johensu +John +John A Andrew +John A Dunn Memorial +John A Thompson +John Adam +John Adams +John Alden +John Allen +John Ayres +John Bailey +John Bardeen +John Barnes +John Batman +John Berry +John Booth +John Bourg +John Bradshaw +John Brown +John Burge +John Burke +John Burns +John C Ward +John Calvert +John Calvin +John Campbell +John Carlyle +John Carpenter +John Carroll +John Carver +John Charles +John Clagett +John Clynes +John Cobb +John Cross +John Crowder +John D Paige +John Dailey +John Dalton +John Daly +John Daves +John Davey +John David +John Dee +John Deere +John Dow +John Dwyer +John Dykes +John E Carroll +John E Smith +John Edward +John Eppes +John F Kennedy +John F Mason +John F Shelley +John F. Allen +John F. Kennedy +John Fisher +John Forrest +John Franklin +John Friend +John Fryer +John Gildi +John Glenn +John Gooch +John H Johnson +John Hancock +John Hanson +John Harper +John Harris +John Harrison +John Hay +John Henry +John Heywood +John Hill +John Hines +John Hopkins +John Humphrey +John Hus +John Ireland +John Islip +John J Brady +John J Gallagher +John J Grimaldi +John J Kingman +John J Paige +John Kennedy +John Kent +John Kidd +John Kirkham +John Knott +John L Dietsch +John Lynn +John M Boor +John Marr +John Marsh +John Marshall +John Marthens +John Martin +John Matthew +John Matthews +John McAdam +John McCormack +John Miller +John Milless +John Milton +John Montgomery +John Mooney +John Muir +John Neil +John Ochs +John Ormsby Way Leeds +John Oxley +John Partridge +John Paul Jones +John Penn +John Pierson +John Poulter +John Quincy +John Quincy Adams +John Radley +John Rezza +John Roberts +John Robinson +John Roos +John Ross +John Runge +John Ruskin +John Ryle +John Sam +John Shepley +John Silkin +John Smith +John Sorci +John Swift +John Tate +John Telfer +John Thomas +John Ticer +John Turco +John Turk +John Wade +John Wall +John Warren +John Wayne +John William +John Wilson +John Wise +John Wyatt +Johnathan +Johnathon +Johned +Johnny +Johnny Appleseed +Johnny Cake +Johnny Cake Ridge +Johnny Moore +Johnnycake +Johnor +Johns +Johns Chapel +Johns Hollow +Johns Hopkins +Johnsburg +Johnsbury +Johnson +Johnson Beach +Johnson Farm +Johnson Fold +Johnson Grove +Johnson Memorial +Johnson Park +Johnson Woods +Johnsonbrook +Johnsons +Johnsontown +Johnston +Johnston Crescent +Johnstone +Johnstown +Johnsvale +Johnsway +Johnswood +Joice +Join +Joiner +Joiners +Joint +Jokic +Jolan +Jolana +Jolen +Jolie +Joliet +Jolin +Joline +Jolliett +Jolly +Jollyboys +Jollyman +Jollys +Jolma +Jolon +Joludow +Jomar +Jon +Jon Mar +Jon Paul +Jona +Jonagold +Jonah +Jonalan +Jonamac +Jonas +Jonathan +Jonathan Carver +Jonathan Mitchell +Jonathan Ridge +Jonathan Simpson +Jonathen +Jonathon Swift +Jonel +Jones +Jones Acres +Jones Bay +Jones Branch +Jones Bridge +Jones Farm +Jones Gulch +Jones Hill +Jones Mill +Jones Park +Jones Point +Jones River +Jonesdale +Jonesport +Jonesville +Jonive +Jonko +Jono +Jonquil +Jonspin +Jony +Joongah +Joost +Jopak +Jopenda +Joplea +Joplin +Jopling +Joppa +Jopson +Joralemon +Jordan +Jordan Park +Jordan Ranch +Jordan Taylor +Jordans +Jordans Journey +Jorden +Jordon +Jordon Pond +Jordonalo +Joree +Jorgan +Jorgen +Jorgensen +Jorgenson +Jori +Jorie +Jorissen +Joronollo +Jorrick +Jose +Jose Figueres +Jose Ramon +Josef +Josefa +Josefson +Joselson +Joseph +Joseph Banks +Joseph Damon +Joseph Leon +Joseph Mill +Joseph P. Ward +Joseph Pace +Joseph Ray +Joseph Reed +Joseph Schwab +Joseph Siewick +Joseph Smith +Joseph Speciale +Josepha +Josephine +Josephine Evaristo +Josephs Point +Josephson +Josh Gray +Josham +Joshua +Joshua Moore +Joshua Tree +Josiah +Josie +Josina +Joslin +Joslyn +Jospeh +Josselin +Josselyn +Jossie +Josslyn +Jost +Jotham +Jotmans +Joubert +Jouet +Jouldings +Joule +Journal +Journeay +Journet +Journey +Joust +Jousting +Jowett +Joy +Joy Bell +Joy Lee +Joy Ridge +Joya +Joyce +Joyce Anne +Joyce Green +Joyce Island +Joyce Kilmer +Joyce Lundberg +Joyceton +Joydens Wood +Joydon +Joyer +Joylyn +Joyner +Joynson +Joynt +Joynton +Joys +Juan Hernandez +Juan Pablo +Juana +Juanita +Juanita Woods +Juarez +Jubbs Delight +Jubilee +Jubliee +Judah +Judd +Jude +Judette +Judge +Judge Cushing +Judge E A Loveless +Judge Haley +Judge Heath +Judges +Judi +Judicial +Judick +Judie +Judique +Judistine +Judith +Judith Anderson +Judkins +Judson +Judsonville +Judy +Judy Farm +Judy Witt +Judys +Juel +Juer +Juercen +Juergens +Juggs +Jughandle +Jugiong +Juglans +Juhasz +Juhlin +Juirrang +Julep +Jules +Jules Thorn +Juli +Juli Lynn +Julia +Julia Connors +Julia Dawn +Julian +Juliana +Julianna +Julianne +Julians +Julias +Julie +Julie Ann +Juliedale +Julien +Julien Court +Juliers +Juliesse +Juliet +Juliet Park +Juliett +Julietta +Juliette +Julio +Julius +Julliard +Julliard Park +July +Jumbles +Jumel +Jump +Jumper +Jumper Hill +Jumpers Hole +Jumping Horse +Jumppun +Jumps +Juna +Junard +Junco +Junction +June +June Elaine +June Hollow +Juneau +Juneberry +Junebreeze +Junebug +Junee +Junegrass +Juneway +Junewood +Jungle +Junia +Junin +Junior +Juniper +Juniper Hill +Juniper Point +Juniper Ridge +Juniper Valley +Juniperberry +Juniperbrook +Junipero +Junipero Serra +Junipertree +Junius +Junker +Juno +Juntar +Jupiter +Jupitor +Jupp +Jura +Jurby +Jurdins Hill +Jurdy +Jurgens +Jurgensen +Juri +Juricic +Jurocko +Jury +Just +Justa Short +Justamere +Justco +Justen +Justice +Justice Hill +Justin +Justin Knoll +Justin Morgan +Justina +Justine +Justinian +Justino +Justis +Justus +Jute +Jutewood +Jutland +Jutsums +Juvenis +Juxon +Juxton +Jyra +Jytek +K Fernwood +Kaanapali +Kaban +Kabarli +Kable +Kabot Cove +Kabutts +Kachina +Kadderly +Kadema +Kaden +Kadin +Kadlin +Kado +Kaehler +Kaelin +Kaeser +Kafka +Kagera +Kahiba +Kahl +Kahle +Kahler +Kahler Jr +Kahlo +Kahn +Kahns +Kahrs +Kaila +Kaimu +Kain +Kaine +Kains +Kaintuck +Kairawa +Kaiser +Kaiser Aetna +Kaiser Creek +Kaiser Quarry +Kaitia +Kaitlin +Kaitlyn +Kajer +Kakae +Kakeout +Kalama +Kalamazoo +Kalana +Kalang +Kalarama +Kalaui +Kalda +Kale +Kalenda +Kales +Kaleski +Kaleva +Kaley +Kalgal +Kalgoorlie +Kali +Kalimina +Kalimna +Kalinda +Kalinya +Kalk +Kalkada +Kalkar +Kalland +Kallaroo +Kallenberger +Kalliam +Kallien +Kallista +Kalmar +Kalmia +Kalora +Kalorama +Kalson +Kalsow +Kaltemeier +Kaltern +Kalua +Kaluga +Kaluna +Kaly +Kalyan +Kamaitis +Kamari +Kamaur +Kambala +Kamber +Kambora +Kamda +Kame +Kameha +Kamena +Kameruka +Kamerwyk +Kamilaroi +Kamilaroy +Kaminski +Kamiri +Kamlea +Kamm +Kammerer +Kammes +Kamp +Kampersal +Kamputa +Kamsack +Kamuela +Kanaabec +Kanabec +Kanadah +Kanai +Kanandah +Kanangra +Kanangur +Kananook +Kanatha +Kanawha +Kandahar +Kandi +Kandos +Kandra +Kandy +Kane +Kane Industrial +Kanegis +Kaneko +Kanes +Kaneville +Kangaroo +Kangaroo Point +Kangley Bridge +Kaniara +Kanili +Kanimbla +Kankakee +Kanlow +Kannely +Kanning +Kano +Kanoff +Kanoona +Kanoora +Kanouse +Kanowar +Kansala +Kansas +Kanst +Kanteles +Kantor +Kanuka +Kanya +Kanzo +Kao +Kapala +Kapalua +Kapareil +Kaparia +Kapetanopolous +Kaphan +Kapiolani +Kapiti +Kapkowski +Kaplan +Kaplolani +Kaposia +Kapovic +Kapp +Kappa +Kappel Hill +Kappel View +Kappner +Kappock +Kapyong +Kara +Kara Ann +Karabar +Karal +Karalee +Karamarra +Karameos +Karangi +Karani +Karat +Karban +Karcher +Karda +Kardel +Kardella +Kardon +Kareela +Kareelah +Kareema +Kareena +Karelitz +Karels +Karen +Karen Anne +Karen Elaine +Karen Forest +Karen Lee +Karen Pines +Karen Spring +Karens +Kari +Karilla +Karimbla +Karin +Karingal +Kariola +Karius +Kariwara +Karkus +Karl +Karl Hoyo +Karla +Karli +Karlo +Karloo +Karloon +Karlskoga +Karlson +Karlstad +Karlyn +Karmel +Karmich +Karn +Karnak +Karne +Karnell +Karner +Karns +Karol +Karoo +Karool +Karoola +Karoom +Karoon +Karraba +Karrabah +Karrabee +Karrabul +Karranga +Karrie +Karril +Karringal +Karrong +Karsey +Karth +Karth Lake +Karuah +Karuk +Karver +Karyl +Karyn +Kasba +Kashey +Kashgar +Kashmir +Kask +Kaskaskia +Kaski +Kaslo +Kasota +Kasper +Kass +Kassala +Kassan +Kassar +Kassel +Kasson +Kastania +Kastelan +Kastell +Kasten +Kasting +Katahdin +Katan +Katanna +Katarina +Kate +Katebini +Katena +Kates +Katesgrove +Kath +Katharine +Katharines +Kathay +Katherin +Katherine +Katherine Ann +Katheryn +Kathlean +Kathleen +Kathleen Elizabeth +Kathleen Grant +Kathleene +Kathletta +Kathmoore +Kathrene +Kathrina +Kathryn +Kathryne +Kathwood +Kathy +Kathy Ellen +Kathyanne +Kathys +Katie +Katie Bird +Katina +Katleba +Kato +Katonah +Katonia +Katrina +Katrine +Katrinka +Katsikas +Katsura +Katy +Katydid +Katz +Kauai +Kaufman +Kaul +Kaula +Kaup +Kauri +Kausen +Kauth +Kautz +Kavanagh +Kavanaugh +Kaveny +Kaverton +Kavin +Kavooras +Kavrik +Kawahara +Kawai +Kawalker +Kawameeh +Kawana +Kawana Springs +Kay +Kayak +Kayak Lake +Kaybro +Kaycee +Kaydot +Kaye +Kayemoor +Kayeton +Kayhart +Kayhill +Kayjay +Kayla +Kaylar +Kaylee +Kaylene +Kaymar +Kaymark +Kaynyne +Kayron +Kays +Kays Wood +Kaysha +Kayson +Kaywin +Kaywood +Kazan +Kazebeer +Kazimer +Kazwell +Kc Farm +Keable +Keach +Keagles +Kealsey +Kealsy +Kean +Keane +Keans +Keansburg +Keany +Keap +Kearley +Kearney +Kearneys +Kearns +Kearny +Kearsage +Kearsarge +Kearsley +Kearsley Hall +Keary +Keasbey +Keasler +Keates +Keating +Keato +Keaton +Keats +Keawe +Keayne +Keb +Kebet Ridge +Keble +Keck +Kecutan +Kedge +Kedith +Kedleston +Kedron +Kedvale +Kedzie +Kee +Keebler +Keeby +Keech +Keech Briar +Keedonwood +Keefe +Keefer +Keegan +Keegans +Keel +Keele +Keelendi +Keeler +Keeley +Keelham +Keeling +Keelings +Keelo +Keema +Keen +Keenan +Keene +Keeney +Keeney Pond +Keenland +Keens +Keens Park +Keep +Keep Hill +Keepataw +Keeper +Keepers +Keephatch +Keeps +Keepsake +Keer +Keera +Keese +Keeseville +Keesing +Keesling +Keeton +Keevil +Keevin +Keewadin +Keewatin +Keewaydin +Keeyunga +Kefauver +Kegan +Kegle +Kegwood +Kegworth +Kehoe +Keierleber +Keighley +Keighly +Keighran Mill +Keightley +Keil +Keilana +Keildon +Keiley +Keilman +Keily +Keim +Keinches +Keino +Keir +Keira +Keiran +Keirle +Keiser +Keiser Ranch +Keith +Keith Allen +Keith Hill +Keith Jeffries +Keith Lucas +Keith Park +Keith Smith +Keith Taylor +Keithley +Keiths +Keithson +Keiwarra +Kelboro +Kelbourne +Kelbrook +Kelbum +Kelburn +Kelby +Kelch +Kelchers +Keld +Keldholme +Keldie +Keldon +Kelesey +Kelez +Kelfield +Kelford +Keli +Kell +Kell Green +Kellam +Kelland +Kellaway +Kellbrook +Kelldon +Kelleher +Keller +Keller Lake +Keller Ridge +Kellerman +Kellet +Kellett +Kelley +Kelley Farm +Kellicar +Kellick +Kelliher +Kelling +Kellington +Kellino +Kellner +Kelloch +Kellogg +Kellogg Creek +Kelloway +Kells +Kellum +Kelly +Kelly Ann +Kelly Case +Kelly Farm +Kelly Glen +Kelly Hill +Kelly Lake +Kelly Mist +Kelmore +Kelmscot +Kelmscott +Kelner +Kelp +Kelpatrick +Kelrose +Kelross +Kelsall +Kelsey +Kelsey Park +Kelshill +Kelsic +Kelso +Kelson +Kelstern +Kelston +Kelsy +Kelsy Creek +Keltner +Kelton +Kelty +Kelveden +Kelvedon +Kelvedon Hall +Kelverlow +Kelvin +Kelvin Park +Kelvindale +Kelvington +Kelwynne +Kelzer Pond +Kem +Kemah +Kemball +Kember +Kemberley +Kembers +Kembla +Kemble +Kembo +Kembridge +Kemerton +Kemika +Kemman +Kemmerton +Kemmever +Kemmis +Kemnal +Kemondo +Kemp +Kemp Mill +Kemp Mill Forest +Kempair +Kempbridge +Kempe +Kemper +Kempley +Kempmill +Kempner +Kempnough Hall +Kemps +Kemps Farm +Kempsey +Kempsford +Kempson +Kempster +Kempston +Kempsville +Kempt +Kempthorne +Kempton +Kemrich +Kemsing +Kemsley +Ken +Ken Hall +Kenabec +Kenalray +Kenardington +Kenart +Kenavon +Kenbar +Kenberma +Kenbridge +Kenbrook +Kenburn +Kenbury +Kenchester +Kencrest +Kenda +Kendal +Kendal Common +Kendale +Kendall +Kendall Hill +Kendall Point +Kendall Ridge +Kendall Self +Kendallwood +Kendalwood +Kendee +Kendel +Kendell +Kender +Kendig +Kendle +Kendoa +Kendon +Kendra +Kendra Hall +Kendree +Kendrew +Kendrick +Kendricks +Kendridge +Kenduck +Kenelm +Kenelworth +Kenerson +Keneson +Kenfield +Kenfig +Kenhill +Kenhowe +Kenic +Keniff +Kenilwood +Kenilwoods +Kenilworth +Kenion +Keniston +Kenland +Kenlar +Kenleigh +Kenlen +Kenley +Kenloch +Kenlor +Kenmar +Kenmare +Kenmel +Kenmere +Kenmont +Kenmoor +Kenmor +Kenmore +Kenmuir +Kenmure +Kennabec +Kennady +Kennan +Kennard +Kennebec +Kennedy +Kennedy Knolls +Kennedy Memorial +Kennel +Kennel Barn +Kennell Hill +Kennelling +Kennelly +Kennels +Kennelwood +Kennelworth +Kenner +Kennerleigh +Kennerley +Kennesaw +Kenneson +Kennet +Kenneth +Kenneth Creek +Kenneth Hyde +Kenneth Kostka +Kenneth More +Kenneth Slessor +Kennett +Kennett Wharf +Kennewick +Kenney +Kenni +Kennicott +Kennie +Kenning +Kenninghall +Kennington +Kennington Park +Kennison +Kennsington +Kennworth +Kenny +Kenny Hill +Kenny Lofton +Kennylands +Keno +Kenoga +Kenora +Kenosha +Kenosia +Kenova +Kenreel +Kenrick +Kenridge +Kens +Kensal +Kensellas +Kensett +Kensico +Kensington +Kensington Church +Kensington High +Kensington Park +Kenslee Hill +Kenson +Kensor +Kenstan +Kenstford +Kenston +Kenswick +Kensworth +Kent +Kent Fire +Kent Fort +Kent Hatch +Kent House +Kent Place +Kent Point +Kent Pump +Kent Pump Fire +Kent Sq +Kent Town +Kent View +Kent Village +Kentbury +Kentdale +Kenter +Kentfield +Kentford +Kenthurst +Kentigern +Kentile +Kentish +Kentland +Kentlands +Kentlea +Kentley +Kentmere +Kentmore +Kentnor +Kenton +Kenton Park +Kentons +Kentos +Kentridge +Kents +Kents Bank +Kents Farm +Kents Hill +Kentsdale +Kentshire +Kentstone +Kentucky +Kentview +Kentville +Kentwal +Kentwell +Kentwood +Kentwyns +Kenver +Kenwar +Kenward +Kenway +Kenwick +Kenwin +Kenwith +Kenwood +Kenwood Forest +Kenwood Isles +Kenworth +Kenworthy +Kenwyn +Kenya +Kenyngton +Kenyon +Kenyons +Kenzel +Keoffram +Keogh +Keokee +Keokok +Keokuk +Keoncrest +Keota +Keough +Kephart +Kepler +Kepos +Keppel +Kepper +Keppler +Kepwick +Keran +Kerber +Kerbey +Kerby +Kerby Hill +Kerfoot +Kerger +Keri +Keri Ann +Keriba +Kerill +Kerin +Kerley +Kerlin +Kerman +Kermath +Kermes +Kermit +Kermoor +Kern +Kern Creek +Kerna +Kernal +Kernberry +Kerner +Kerney +Kernham +Kernochan +Kerns +Kernwood +Kero +Kerr +Kerrawah +Kerri +Kerrick +Kerridge +Kerrie +Kerrigan +Kerrill +Kerrinea +Kerrins +Kerrison +Kerriston +Kerroge +Kerrs +Kerrwood +Kerry +Kerry Ann +Kerry Beacon +Kerry Winde +Kerrydale +Kerryshire +Kersal +Kersal Hall +Kersal Vale +Kerschner +Kerscott +Kersey +Kersfield +Kersh +Kershaw +Kerslake +Kersley +Kersten +Kerstin +Kertsinger +Kervan +Kerves +Kerwin +Kerwood +Kesey +Keshan +Keslake +Keslar +Keslinger +Kesner +Kessel +Kessell +Kesserling +Kessingland +Kessler +Kester +Kesters +Kesterson +Kesteven +Keston +Kestor +Kestral +Kestrel +Kestrel Lake +Keswick +Ketay +Ketcham +Ketchams +Ketchen +Ketcherside +Ketchum +Ketelaar +Ketelsen +Ketewamoke +Ketewomoke +Kethel +Ketner +Ketridge +Kettell +Kettelson +Ketten +Kettenacker +Ketter +Kettering +Kettering on Oxford +Ketterman +Kettle +Kettle Creek +Kettle Green +Kettle Hill +Kettle Hole +Kettle Mountain +Kettle Pond +Kettle River +Kettle Run +Kettlehook +Kettleman +Kettleson +Kettlewell +Kettmann +Keuka +Kevan +Kevelioc +Keverton +Kevill +Kevin +Kevin Coombs +Kevin Longley +Kevin Walker +Kevinaire +Kevinberg +Kevington +Kevins +Kevyn +Kew +Kew Foot +Kew Forest +Kew Gardens +Kewadin +Kewanee +Kewferry +Kewin +Kewsick +Key +Key Largo +Key Route +Key Turn +Key West +Keyberry +Keyes +Keyes House +Keymar +Keymer +Keyne +Keyner +Keynes +Keynote +Keynsham +Keyntel +Keyport +Keys +Keys Ridge +Keyse +Keyser +Keysers +Keysford +Keysham +Keysor +Keystone +Keystone Manor +Keytone +Keyworth +Kezar +Kezia +Khakum +Khakum Wood +Khalid +Khalsa +Khama +Khartoum +Khun +Khyber +Kialba +Kiama +Kiaora +Kiara +Kiawah +Kiawah Island +Kibbles +Kiber +Kiberd +Kibo +Kibworth +Kice +Kickapoo +Kickham +Kidacre +Kidborough +Kidbrook Park +Kidbrooke +Kidbrooke Park +Kidd +Kidd Creek +Kiddal +Kidder +Kidderminster +Kidderpore +Kidders +Kiddie +Kiddiminister +Kidlington +Kidman +Kidmore +Kidmore End +Kidmore end +Kidomore End +Kidwell +Kidwell Field +Kidwells Park +Kiefer +Kiel +Kieland Ridge +Kielgart +Kielion +Kiely +Kientz +Kiep +Kieper +Kieran +Kiernan +Kierst +Kierstead +Kiersted +Kiesenwetter +Kiess +Kiessig +Kiest +Kiev +Kievit +Kifer +Kiffen +Kiger +Kihila +Kijek +Kiki +Kikuo +Kil +Kilarney +Kilauea +Kilbane +Kilbenny +Kilbernie +Kilbirnie +Kilborn +Kilbourn +Kilbourne +Kilbride +Kilburn +Kilburn High +Kilburne +Kilby +Kilby Glenn +Kilchurn +Kilcoby +Kilconnell +Kilconway +Kilcullen +Kildare +Kildeer +Kildonan +Kildoran +Kildowan +Kile +Kiley +Kilfoyle +Kilgore +Kilgour +Kilheeney +Kilimanjaro +Kiline +Kilkare +Kilkee +Kilkenny +Kilkerry +Kilkie +Killala +Killam Hill +Killanoola +Killarney +Killarney Pass +Killarny +Killawarra +Killbarron +Killdeer +Killearn +Killeaton +Killebrew +Killeen +Killey +Killian +Killians +Killick +Killieser +Killigrew +Killinger +Killinghurst +Killingsworth +Killingworth +Killon +Killoola +Killowen +Killuran +Killybegs +Killyon +Kilmaine +Kilmarnock +Kilmarnok +Kilmarsh +Kilmartin +Kilmer +Kilmington +Kilminister +Kilmiston +Kilmoray +Kilmore +Kilmorey +Kilmory +Kilmurray +Kiln +Kiln Barn +Kiln Croft +Kiln Pond +Kiln View +Kiln Wood +Kilner +Kilnfield +Kilnorey +Kilnsea +Kilnside +Kilnwood +Kilo +Kilpatrick +Kilpatrik +Kilpin Hill +Kilravock +Kilroe +Kilronan +Kilross +Kilrue +Kilrush +Kilsha +Kilsmore +Kilsyth +Kiltie +Kilvert +Kilworth +Kilzer +Kim +Kim Ann +Kim Hunter +Kim Kris +Kim Louise +Kimanna +Kimball +Kimball Beach +Kimball Hill +Kimballwood +Kimbark +Kimbarra +Kimbell +Kimber +Kimberlee +Kimberley +Kimberlin Heights +Kimberly +Kimberly Grove +Kimberly Woods +Kimbers +Kimberwick +Kimberwicke +Kimble +Kimble Park +Kimblehunt +Kimblewick +Kimbriki +Kimbro +Kimbrough +Kimcumber +Kimdee +Kime +Kimes +Kimiyo +Kimlee +Kimlo +Kimloch +Kimmel +Kimmeridge +Kimmig +Kimo +Kimpton +Kimwood +Kinarra +Kinbrace +Kinburn +Kincade +Kincaid +Kincardine +Kincheloe +Kincraig +Kindee +Kindelan +Kinder +Kinder Farm Park +Kinderbrook +Kindergarten +Kinderhaven +Kinderkamack +Kinders +Kinderton +Kindler +Kindlewood +Kindra Hill +Kindross +Kineholme +Kineo +Kiner +Kinfauns +King +King Albert +King Alfred +King Arthur +King Arthurs +King Caesar +King Carter +King Centre +King Charles +King Coel +King Creek +King David +King Duncan +King Edward +King Edward VII +King Farm +King Fisher +King George +King George IV +King George V +King George VI +King Georges +King Georges Post +King Grant +King Hall +King Harold +King Harry +King Henry +King Henrys +King Hill +King James +King James Landing +King John +King Johns +King Krest +King Louis +King Malcolm +King Manor +King Max +King Midas +King Muir +King Philip +King Phillip +King Richard +King Ridge +King Solomon +King William +Kingarth +Kingate +Kingbird +Kingbrook +Kingcroft +Kingcup +Kingdale +Kingdom +Kingdon +Kingery +Kingfield +Kingfisher +Kingham +Kingham Ranch +Kinghorn +Kinghorne +Kinghurst +Kingingwood +Kinglake +Kingland +Kinglet +Kingly +Kingman +Kingmont +Kingmoor +Kingridge +Kings +Kings Arm +Kings Arms +Kings Arrow +Kings Beach +Kings Bench +Kings Canyon +Kings Chapel +Kings Charter +Kings College +Kings Color +Kings Court +Kings Creek +Kings Creek Truck +Kings Cross +Kings Crossing +Kings Farm +Kings Field +Kings Forest +Kings Furlong +Kings Gate +Kings Grant +Kings Grove +Kings Hall +Kings Head +Kings Heather +Kings Heights +Kings Hill +Kings House +Kings Lake +Kings Landing +Kings Lynn +Kings Manor +Kings Meadow +Kings Mill +Kings Mountain +Kings Park +Kings Pine +Kings Point +Kings Retreat +Kings Terrace +Kings Toll +Kings Tree +Kings Valley +Kings View +Kings Village +Kings Walk +Kings Way +Kings Wood +Kingsand +Kingsash +Kingsbay +Kingsberry +Kingsbridge +Kingsbrook +Kingsbury +Kingsbury Estates +Kingsclare +Kingsclear +Kingsclere +Kingscliffe +Kingscote +Kingscourt +Kingscroft +Kingsdale +Kingsdon +Kingsdown +Kingsdowne +Kingsfernsden +Kingsfield +Kingsford +Kingsford Smith +Kingsgate +Kingsgrove +Kingshill +Kingshold +Kingsholme +Kingshurst +Kingsingfield +Kingsland +Kingslangley +Kingslea +Kingslee +Kingsleigh +Kingsley +Kingsley Wood +Kingsly +Kingsman +Kingsmans Farm +Kingsmead +Kingsmead Main +Kingsmen +Kingsmere +Kingsmill +Kingsmoor +Kingsnorth +Kingsord +Kingspark +Kingspit +Kingsport +Kingsthorpe +Kingston +Kingston Brook +Kingston Eden +Kingston Brook +Kingston Eden +Kingston Hall +Kingstown +Kingstowne +Kingstowne Commons +Kingstowne Village +Kingstream +Kingstree +Kingsview +Kingsview Village +Kingsway +Kingsway Westbourne +Kingswear +Kingswell +Kingswick +Kingswood +Kingswood Pond +Kingsworthy +Kingthorpe +Kingusse +Kingwell +Kingwood +Kinkade +Kinkaid +Kinkead +Kinkel +Kinkuna +Kinlay +Kinlet +Kinley +Kinloch +Kinlock +Kinloss +Kinmel +Kinmont +Kinmonth +Kinnaird +Kinne +Kinnear +Kinnelon +Kinnerton +Kinney +Kinnickinnic +Kinnicut +Kinnicutt +Kinnikinnic +Kinnoul +Kinnybrook +Kino +Kinross +Kinsale +Kinsbourne Green +Kinsel +Kinsella +Kinsey +Kinship +Kinsington +Kinsley +Kinsman +Kinson +Kinsport +Kinster +Kinswood +Kintmount +Kintop +Kintore +Kintyre +Kinvara +Kinvarra +Kinver +Kinzel +Kinzer +Kinzey +Kinzie +Kinzley +Kiogle +Kiola +Kiora +Kiote +Kiowa +Kip +Kiparra +Kiperash +Kipheart +Kipland +Kipling +Kipp +Kippara +Kippax +Kippax Valley +Kipperkopper +Kippington +Kippist +Kippling +Kipps +Kippy +Kira +Kirben +Kirby +Kirby Lionsdale +Kirbys +Kirbywood +Kirch +Kirche Hill +Kirchen +Kirchner +Kirchoff +Kirckpatrick +Kirdford +Kirk +Kirk Farm +Kirk Glen +Kirkbank +Kirkbrook +Kirkby +Kirkcady +Kirkcaldy +Kirkcrest +Kirkdale +Kirke +Kirker Pass +Kirketon +Kirkfell +Kirkfield +Kirkgate College +Kirkgate High +Kirkgate Highgate +Kirkhall +Kirkham +Kirkhamgate Lindale +Kirkhill +Kirkhope +Kirkland +Kirkland Ranch +Kirkleas +Kirklee +Kirklees +Kirkley +Kirklin +Kirklinton +Kirklyn +Kirklynn +Kirkman +Kirkmans +Kirkmanshulme +Kirkmichael +Kirkmont +Kirkpatrick +Kirkridge +Kirkside +Kirkstall +Kirkstall Bridge +Kirkstall Hill Eden +Kirkstead +Kirksted +Kirkstone +Kirksville +Kirkton +Kirkup +Kirkwall +Kirkwick +Kirkwood +Kirman +Kirmes +Kirpatrick +Kirra +Kirrang +Kirrawee +Kirribilli +Kirschman +Kirschoff +Kirshon +Kirst +Kirsten +Kirstmont +Kirston +Kirtland +Kirtle +Kirtley +Kirton +Kirwin +Kisconko +Kiser +Kishfield +Kishimura +Kishwaukee +Kiska +Kismet +Kiso +Kissam +Kissel +Kissena +Kissing Point +Kissling +Kista Dan +Kiswick +Kit +Kit Carson +Kit Hill +Kit Kat +Kitayama +Kitchell +Kitchell Lake +Kitchener +Kitcheners +Kitchenour +Kitching +Kitchner +Kitcombe +Kite +Kite Hawk +Kite Hill +Kite Wood +Kither +Kitkatts +Kitmary +Kitmore +Kitrk +Kitsap +Kitsbridge +Kitsbury +Kitsmead +Kitson +Kitt +Kitt Moss +Kittani +Kittanning +Kitter +Kittery +Kittewake +Kittie +Kittiwake +Kitto +Kittoe +Kittredge +Kittridge +Kitts +Kittson +Kitty +Kitty Duvall +Kitty Hawk +Kitty Pozer +Kittyhawk +Kitwood +Kiva +Kiver +Kivy +Kiwanis +Kiwanis Beach +Kiwanis Campground +Kiwong +Kizer +Klaers +Klaibar +Klainert +Klakring +Klamath +Klamath River +Klare +Klasen +Klassen +Klasson +Klaus +Klausers +Klea +Klee +Klehm +Kleiber Hall +Klein +Klein Creek +Kleinman +Kleins +Kleis +Klem +Klemetson +Klen +Klengel +Klianthi +Klickitat +Klier +Kliewer +Klimm +Kline +Kling +Klinger +Klingle Valley +Klinsky +Klipspringer +Klo +Klockstad +Kloer +Kloman +Klondike +Klough +Klovstad +Kluge +Klute +Kluth +Knack +Knapmill +Knapp +Knapsack +Knapton +Knaresborough +Knarlwood +Knarr +Knarr Barn +Knatchbull +Knatts +Knatts Valley +Knauer +Knave Wood +Kneafseys +Knebworth +Knecht +Kneeland +Knell +Knella +Knelle +Kneller +Knerr +Knesel +Knibb +Knichel +Knickerbocker +Knickerson +Knife Shop +Knight +Knight Arch +Knighten +Knighthill +Knighthood +Knightland +Knightlinger +Knighton +Knightons +Knightrider +Knights +Knights Bridge +Knights Forest +Knights Hill +Knights Park +Knights Park Denmark +Knightsbridge +Knightscroft +Knightsen +Knightsfield +Knightshayes +Knightswick +Knightswood +Knightwake +Knightwood +Knightwoods +Knivet +Knivton +Knob +Knob Cone +Knob Hill +Knobcone +Knobhill +Knobloch +Knoch Knolls +Knock +Knock Mill +Knockall +Knockhall +Knockholt +Knockhundred +Knocklayde +Knockwood +Knoelke +Knole +Knoll +Knoll Acres +Knoll Creek +Knoll Crest +Knoll Glen +Knoll Haven +Knoll Manor +Knoll Mist +Knoll North +Knoll Park +Knoll Ridge +Knoll Top +Knoll Valley +Knoll View +Knoll Way +Knoll Wick +Knoll Wood +Knollbrook +Knollcrest +Knollcross +Knolle +Knolle Bros +Knolles +Knollin +Knollridge +Knolls +Knolls Pond +Knollside +Knollton +Knolltop +Knollview +Knollwood +Knollys +Knopf +Knopp +Knorr +Knot +Knota +Knott +Knott Hill +Knottingham +Knottingwood +Knottisford +Knottocks +Knotts Green +Knotty Oak +Knotty Pine +Knotwood +Knowes +Knowl +Knowl Top +Knowland +Knowle +Knowle Park +Knowledge +Knowles +Knowles Hill +Knowlman +Knowlsey +Knowlton +Knowsley +Knowsthorpe +Knox +Knox Park +Knoxboro +Knoxbury +Knoxville +Knoyle +Knudtsen +Knuth +Knutsen +Knutsen Knoll +Knutsford +Knutsford Old +Knutson +Knypersley +Koa +Koala +Koala Bear +Kobada +Kobala +Kobara +Kobb +Kobbe +Kobe +Kober +Kobert +Koblike +Koch +Koch Peak +Kocher +Kochia +Kochka +Kociemba +Kodaya +Kodiak +Koehl +Koehler +Koehling +Koehnen +Koelle +Koenig +Koeper +Koepke +Koepp +Koester +Kofman +Koford +Koftinow +Kogan +Kohala +Kohat +Kohima +Kohl +Kohlepp +Kohler +Kohler Garden +Kohley +Kohlhoss +Kohlman +Kohlwood +Kohout +Kohr +Kokera +Koko +Kokoda +Kokoma +Kokomo +Kokora +Kolb +Kolbert +Kolff +Kolin +Koll Center +Kolling +Kollmar +Kollum +Kolmar +Kolmer +Kolob +Kolodong +Koloona +Kolpin +Kolrausch +Kolstad +Kolze +Koman +Komenich +Komiatum +Komina +Komirra +Komorn +Kon Tiki +Kona +Kondazian +Kondos +Kondrup +Konen +Konet +Konish +Konittekock +Konjevich +Konner +Konrad +Konvalin Oaks +Konynenburg +Kooba +Koobilya +Kooemba +Kookaburra +Koola +Kooloora +Koombalah +Koonawarra +Koongara +Koonya +Koopman +Koopmans +Koora +Kooraban +Koorabar +Koorabel +Koorala +Koorangi +Koorawatha +Koorinda +Koorine +Kooringa +Kooringai +Kooringal +Koorong +Koorool +Kooser +Koosman +Kootenai +Kootingal +Koowong +Kooy +Kooyong +Kop Hill +Kopf +Koping +Kopp +Koppie +Kopping +Korangai +Korbel +Korean War Veterans +Korfitsen +Korinya +Korman +Korn +Korndyk +Korneck +Kornett +Korogwe Forest +Korokan +Korol +Korrel +Kort +Kortright +Kortum +Kortum Canyon +Korvale +Korvett +Kosciusco +Kosciusko +Kosciuszko +Kosec +Kosene +Koshivas +Kosich +Koski +Kosmas +Kosmina +Koso +Kossman +Kossuth +Kosta +Koster +Kostner +Kotenberg +Kotlik +Kotlin +Koto +Kotschevar +Kott +Kottinger +Kouba +Kourtney +Kousa +Kouwenhoven +Kov +Kovacs +Koval +Kovanda +Kovar +Kovey +Kovr +Kowal +Kowald +Kowari +Kowell +Koya +Koyen +Kozera +Koziara +Kozy +Kraay +Kraemer +Kraft +Krafton +Krainski +Krakar +Kraken +Krakow +Kral +Kralj +Krame +Kramer +Krameria +Kraml +Kramme +Krapish +Krattley +Kratz +Krause +Kravchenok +Krazy Acre +Krebs +Krech +Kreck +Kredel +Kreeger +Kreekview +Kreekwood +Kreil +Kreischer +Kreitzburg +Krenn +Krenz +Kress +Kress Farm +Kresse +Kressin +Kresswood +Krestrel +Krestwood +Kreth +Kreuse Canyon +Kreuser +Kreutzer +Kreuz +Kreuzer +Krey +Krieger +Krinbill +Kring +Krings +Kris +Krishna +Krismer +Kriss +Krista +Kriste +Kristen +Kristi +Kristie +Kristin +Kristina +Kristine +Kristmont +Kristo +Kristoffer +Kristy +Kristyn +Kroc +Krochmal +Krochmally +Kroeger +Krohn +Kroll +Krolop +Kromray +Krona +Kroner +Kronmeyer +Kroombit +Krooner +Kropf +Krost +Krotiak +Krouser +Krowka +Kroy +Krueger +Krug +Kruger +Kruhm +Kruk +Krull +Krumb +Kruse +Kruse Ranch +Kruser +Kruze +Krysch +Krysiak +Krystal +Krystallos +Ku Ring Gai Chase +Kubek +Kuberski +Kublank +Kubor +Kuck +Kudilla +Kuehnis +Kuester +Kuethe +Kuhl +Kuhlthau +Kuhn +Kuhnle +Kulani +Kulas +Kulgoa +Kulgun +Kulick +Kulinia +Kullaroo +Kullberg +Kuller +Kulshan +Kult +Kumar +Kumbardang +Kumquat +Kumulla +Kunath +Kunde Winery +Kundes +Kundi +Kundibah +Kunen +Kungala +Kungar +Kuniholm +Kunipipi +Kunkel +Kunkundi +Kuno +Kuntz +Kuppa +Kupsch +Kuranda +Kurchian +Kurdyla +Kuringai +Kurland +Kurnell +Kuroki +Kurraba +Kurrabi +Kurrajong +Kurrara +Kurrawa +Kurri +Kurt +Kurth +Kurtis +Kurtz +Kuru +Kuruc +Kurung +Kurvers Point +Kurwin +Kurzon +Kushner +Kushnetki +Kusilek +Kuss +Kussoth +Kutcher +Kuter +Kutmut +Kuts +Kuttabul +Kuzik +Kvistad +Kwajalein +Kwedar +Kyalite +Kybes +Kyer +Kyffin +Kyle +Kyleigh +Kylemore +Kyler +Kyllo +Kymberley +Kyme +Kynaston +Kynder +Kyndhurst +Kyne +Kyngdon +Kynoch +Kyogle +Kyong +Kyra +Kyrle +Kytes +Kyverdale +Kywong +L Fernwood +L I Exwy Service +L R A +L Ranch +L V Loop +L W Besinger +L W Johnson +LIE North Service +LIE South Service +LIsmore +LIttle Comber +LIttle Commodore +LMU Commercial +La Alameda +La Alegria +La Avanzada +La Baig +La Barbera +La Baree +La Barranca +La Barthe +La Bella +La Boheme +La Bolsa +La Brea +La Brecque +La Cadena +La Campana +La Canada +La Canyada +La Casa +La Casita +La Cienega +La Cima +La Clair +La Colina +La Conner +La Contenta +La Corona +La Corso +La Corte +La Coruna +La Coruno +La Cosa +La Costa +La Coste +La Count +La Cresenda +La Cresenta +La Cresta +La Croix +La Crosse +La Cruz +La Cuesta +La Cumbre +La Donna +La Duke +La Encina +La Esperanza +La Espiral +La Fayette +La Field +La Follette +La Fond +La Fonda +La Fontaine +La Fox +La Fox River +La France +La Franchi +La Goma +La Grama +La Granada +La Granda +La Grande +La Grange +La Habra +La Hai Roi +La Haigh +La Haya +La Herran +La Homa +La Honda +La Jolla +La Jota +La Junta +La Lena +La Loma +La Londe +La Lynn +La Madrona +La Maison +La Mancha +La Mans +La Mar +La Mascotte +La Mesa +La Messa +La Mirada +La Monte +La Nuez +La Pala +La Palm +La Paloma +La Paz +La Perouse +La Placita +La Plata +La Playa +La Plaza +La Plume +La Porte +La Pradera +La Prenda +La Puerta +La Questa +La Quinta +La Ragione +La Reina +La Reina Real +La Rena +La Rhee +La Ribera +La Rinconada +La Riva +La Riviera +La Riviere +La Rocca +La Roche +La Roda +La Rosa +La Rose +La Rue +La Salette +La Salida del Sol +La Salle +La Selva +La Sendita +La Serena +La Setta +La Sierra +La Siesta +La Torre +La Tour +La Vera +La Vereda +La Vergne +La Verne +La Vida +La Vista +La Vita +La Vuelta +La para +LaSalle +Laars +Laauwe +Laban Pratt +Labarge +Labath +Labau +Labbe +Label +Labelle +Labernum +Labo +Labonte +Labor +Labor In Vain +Labore +Labour Centre +Labourn +Labrador +Labranza +Labrooke +Labrott +Labtec +Labuan +Labumum +Laburch +Laburnam +Laburnham +Laburnum +Labworth +Lac Lavon +Lac Lehman +Lac du Beatrice +Lacasse +Lacassie +Lace +Lace D +Lacebark +Lacewing +Lacewood +Lacey +Laceys +Lachal +Lachapelle +Lachine +Lachlan +Lackawanna +Lackey +Lackey Dam +Lackford +Lackington +Lackland +Lackspur +Lacky Dam +Laclair +Laclede +Lacoma +Lacombe +Lacon +Lacona +Laconheath +Laconia +Lacosta +Lacota +Lacrosse +Lacrozia +Lacy +Lad +Ladas +Ladbroke +Ladbrook +Ladbrooke +Ladbury +Ladcastle +Ladd +Ladd Hill +Ladd Tract +Laddie +Laddin Rock +Laddins +Ladds +Ladenburg +Ladera +Laderman +Ladero +Ladew +Ladge +Ladham +Ladhill +Ladies +Ladino +Ladner +Ladomus +Ladonia +Ladram +Ladson +Ladue +Ladues End +Ladwik +Lady +Lady Alesford +Lady Ann +Lady Bank +Lady Bird +Lady Bridge +Lady Brook +Lady Bug +Lady Carrington +Lady Cutler +Lady Game +Lady Jamison +Lady Jane +Lady Marion +Lady Oak +Lady Penrhyn +Lady Pit +Lady Slipper +Lady Somerset +Lady Wakehurst +Lady Winter +Lady Wood +Ladybank +Ladybarn +Ladybird +Ladybooth +Ladybridge +Ladybrook +Ladyclose +Ladycroft +Ladyegate +Ladygrove +Ladymeade +Ladypit +Ladyshore +Ladyslipper +Ladysmith +Ladythorn +Ladythorne +Ladywell +Ladywood +Lae +Lafarge +Lafata +Lafayette +Lafayette Center +Lafayette Forest +Lafayette Park +Lafayette Ridge +Lafayette Village +Laffans +Laffayette +Lafferty +Lafield +Laflamme +Lafleur +Laflin +Lafollete +Lafond +Lafone +Lafontaine +Laforet +Laforge +Lafox +Lafoye +Lafranconi +Lafreniere +Lagade +Lagaret +Lage +Laggan +Lagham +Lagiss +Lago +Lago De Bracciano +Lago Oaks +Lago Vista +Lagoda +Lagonda +Lagoon +Lagoon Fire +Lagoon Valley +Lagoon View +Lagorio +Lagrandeur +Lagrange +Laguardia +Laguna +Laguna Creek +Laguna Grove +Laguna Honda +Laguna Main +Laguna Manor +Laguna Mirage +Laguna Oaks +Laguna Park +Laguna Springs +Laguna Vega +Laguna Vista +Laguna Wind +Laguna Woods +Lagunaria +Lagunita +Lagunitas +Lagunitas School +Lahams +Lahard +Lahey +Lahiere +Lahinch +Lahn +Lahon +Lahonda +Lahontan +Lahti +Laidlaw +Laidlow +Laight +Laighton +Laigle +Laila +Lain +Laindon +Laindon Common +Laindon High +Laine +Laings +Laiolo +Laird +Lairds Landing +Laith +Laithe Croft +Laitoki +Laitwood +Lake +Lake Adalyn +Lake Almanor +Lake Anza +Lake Arrowhead +Lake Augusta +Lake Barlee +Lake Beach +Lake Bellevue +Lake Berryessa +Lake Bluestone +Lake Bluff +Lake Boone +Lake Braddock +Lake Breeze +Lake Bridgeport +Lake Candlewood +Lake Canyon +Lake Central +Lake Chabot +Lake Chad +Lake Champlain +Lake Chapel +Lake Charles +Lake Christopher +Lake Circle +Lake Claire +Lake Cook +Lake Court +Lake Cove +Lake Curve +Lake Dam +Lake Dell +Lake Denmark +Lake Echo +Lake Eliza +Lake Elmo +Lake End +Lake Erie +Lake Fairfax +Lake Fall +Lake Farrington +Lake Fontal +Lake Forest +Lake Forrest +Lake Front +Lake Garda +Lake Garrison +Lake George +Lake Glen +Lake Grove +Lake Haughey +Lake Hazeltine +Lake Herman +Lake Heron +Lake Hill +Lake Hills +Lake Hills Connector +Lake Hinsdale +Lake Home +Lake House +Lake Huron +Lake Iosco +Lake Isle +Lake Jackson +Lake James +Lake Johanna +Lake Katherine +Lake Knoll +Lake Landing +Lake Largo +Lake Lawn +Lake Lenore +Lake Lesina +Lake Linden +Lake Lock +Lake Louise +Lake Lucy +Lake Lynwood +Lake Manor +Lake Marian +Lake Marie +Lake Mary +Lake Mary Cele +Lake McClure +Lake Mead +Lake Meadow +Lake Merced +Lake Michigan +Lake Nanuet +Lake Natoma +Lake Newport +Lake Nimbus +Lake Normandy +Lake Oaks +Lake Occoquan +Lake Of Isles +Lake One +Lake Oneida +Lake Ontario +Lake Overlook +Lake Park +Lake Pillsbury +Lake Pine +Lake Placid +Lake Pleasant +Lake Plz +Lake Point +Lake Pointe +Lake Potomac +Lake Pulaski +Lake Pyramid +Lake Ranch +Lake Ree +Lake Ridge +Lake Ridge Club +Lake Riley +Lake Rose +Lake Santa Clara +Lake Sarah +Lake Sarah Heights +Lake Shore +Lake Shore Crest +Lake Susan +Lake Susan Hills +Lake Tana +Lake Temescal +Lake Terrace +Lake Terrapin +Lake Towne +Lake Trail +Lake Trasineno +Lake Tree +Lake Valentine +Lake Valley +Lake Varuna +Lake View +Lake Villa +Lake Village +Lake Virginia +Lake Vista +Lake Warren +Lake Washington +Lake Wawasee +Lake Wilhaggin +Lake Windermere +Lake Zurich +Lakeaires +Lakebird +Lakebrook +Lakechime +Lakecliff +Lakecrest +Lakefair +Lakefield +Lakeford +Lakeforest +Lakefront +Lakegreen +Lakehall +Lakehaven +Lakehill +Lakehouse +Lakehurst +Lakeknoll +Lakeland +Lakeland Park +Lakeland Shores +Lakeland Valley +Lakeland fells +Lakelands +Lakelawn +Lakeman +Lakemba +Lakemont +Lakemoor +Lakemore +Lakemuir +Laken +Lakenheath +Lakenhurst +Lakepark +Lakepoint +Lakepointe +Laker +Lakeridge +Lakeridge Oaks +Lakes +Lakeshire +Lakeshore +Lakeshore Plaza +Lakeside +Lakeside Circle +Lakeside Manor +Lakeside Oak +Lakeside View +Lakeside Village +Lakespring +Lakespur +Lakestone +Lakeswood +Laketree +Lakevale +Lakeview +Lakeview Fire +Lakeview Terrace +Lakeville +Lakewater +Lakeway +Lakewind +Lakewinds +Lakewood +Lakewood Falls +Lakewood Farms +Lakewood Park +Lakewood Prairie +Lakewood Trails +Lakewoods +Lakeworth +Lakin +Lakota +Lalchere +Laleham +Lalic +Lalich +Lalique +Lallas +Lalleford +Laloki +Lalonde +Lalor +Lalos +Lamanda +Lamanna +Lamar +Lamarck +Lamarcus +Lamarr +Lamarre +Lamartine +Lamb +Lamb Heights +Lambarde +Lambaren +Lambden +Lambdin +Lambe +Lambeck +Lamberhurst +Lamberson +Lambert +Lambert Bridge +Lambert Creek +Lambertina +Lamberton +Lamberton Square +Lamberts +Lamberts Mill +Lambertson +Lambeth +Lambeth High +Lambeth Hill +Lambeth Palace +Lambiance +Lambie +Lambley +Lambolle +Lambourn +Lambourne +Lambourne Hall +Lambrecht +Lambridge +Lambridge Wood +Lambrusca +Lambs +Lambs Conduit +Lambs Farm +Lambsgate +Lambskin +Lambton +Lamburn +Lamer +Lamerock +Lamers +Lamerton +Lamesa +Lametti +Lamington +Lamlash +Lammas +Lammas Park +Lammermoor +Lammers +Lamoil +Lamoine +Lamoka +Lamon +Lamond +Lamonerie +Lamont +Lamonte +Lamorak +Lamoraux +Lamore +Lamorna +Lamotte +Lamour +Lamoureux +Lamp +Lamp Lighter +Lamp Post +Lamp Rey +Lampard +Lampasas +Lampec +Lamphere +Lamping +Lampits +Lampits Hill +Lamplight +Lamplighter +Lamplighters +Lamport +Lamprey +Lampson +Lampton +Lampton Park +Lamring +Lamrock +Lamsey +Lamshin +Lamson +Lan Ark +Lana +Lanacre +Lanae +Lanai +Lanark +Lanatt +Lanbros +Lanbury +Lancashire +Lancaster +Lancaster School +Lancastre +Lancastrian +Lance +Lancefield +Lanceley +Lancell +Lancelot +Lancelyn +Lancer +Lancero +Lancers +Lancet +Lancewood +Lanchester +Lancia +Lancing +Lancot +Lancraft +Land +Land Off Causeway +Land Off Kendall +Land Off Pond +Land Off Priest +Land Off Whipple +Land Park +Land View +Landa +Landaker +Landale +Landana +Landau +Landcroft +Landells +Landen +Lander +Lander Set +Landeros +Landers +Landerset +Landerwood +Landess +Landfair +Landfall +Landfield +Landfill +Landfill Access +Landford +Landgraf +Landgrane +Landgrave +Landgreen +Landham +Landing +Landings +Landini +Landis +Landman +Landmark +Landmead +Landmeier +Landolt +Landon +Landon Hill +Landor +Landore +Landos +Landover +Landra +Landrace +Landrail +Landreth +Landridge +Landrock +Landry +Lands +Lands End +Landsberg +Landsburg +Landscape +Landscove +Landsdale +Landsdown +Landsdowne +Landseer +Landsend +Landsfield +Landtree +Landvale +Landview +Landwehr +Landwick +Landy +Lane +Lane And Dowry +Lane Cove +Lane Crest +Lane End +Lane Head +Lane Lorraine +Lanehead +Lanell +Lanercost +Lanes +Lanesboro +Lanesburgh +Laneside +Lanett +Lanette +Laneview +Lanewood +Lanfair +Lanfear +Lanfield +Lanford +Lanfranc +Lang +Langaller +Langbar +Langborough +Langbourne +Langbrook +Langcroft +Langdale +Langdon +Langdrum +Lange +Langelier +Langen +Langer +Langerfeld +Langetree +Langevin +Langewood +Langfield +Langford +Langham +Langhart +Langhedge +Langholm +Langhome +Langhorn +Langhorne +Langhurst +Langhurst Wood +Langland +Langlands +Langler +Langley +Langley Canyon +Langley Common +Langley Fork +Langley Hall +Langley Hill +Langley Lodge +Langley Oaks +Langley Park +Langley Platt +Langley Vale +Langleybury +Langly +Langmaid +Langmans +Langmead +Langmuir +Langner +Langness +Langney +Lango +Langport +Langridge +Langroyd +Langset +Langsett +Langsford +Langshan +Langshott +Langside +Langstaff +Langston +Langstone +Langthorne +Langton +Langtree +Langtry +Langwith +Langwith Valley +Langworth +Langworthy +Lanham +Lanham Severn +Lanhill +Lani +Lani Kai +Lanier +Lanigan +Laning +Lanini +Lanitos +Lankers +Lankester Parker +Lankford +Lanktree +Lanning +Lannock +Lannon +Lannoy +Lanny +Lano +Lanram +Lanrick +Lanridge +Lansbrook +Lansbury +Lansdale +Lansdell +Lansdown +Lansdowne +Lansdwone +Lanseer +Lansfield +Lansford +Lanshaw +Lansing +Lansley +Lansmere +Lant +Lantana +Lantern +Lantern Hollow +Lantern View +Lanterns +Lanthorn +Lantis +Lanton +Lantz +Lanvalley +Lanvanor +Lanyard +Lanza +Lanzaro +Lapa +Lapeer +Lapham +Lapidge +Lapier +Lapierre +Lapin +Lapine +Lapins +Lapis +Lapish +Lapland +Laplata +Laport +Laporte +Lapper +Lappmark +Lapre +Lapridge +Lapstrake +Lapu Lapu +Lapus +Lapwing +Laque +Lara +Larada +Laramee +Laramere +Laramie +Laraway +Larbert +Larbo +Larbre +Larc +Larc Industrial +Larch +Larch Hill +Larchdale +Larchfield +Larchmont +Larchmont Square +Larchmore +Larchview +Larchwood +Larciano +Larcom +Larcombe +Larcridge +Laredo +Laren +Larentia +Large +Larges +Larges Bridge +Largewood +Largo +Largo Center +Larguita +Largura +Laria +Lariat +Larimar +Larimer +Larios +Larissa +Lariston +Larita +Larium +Lark +Lark Brown +Lark Center +Lark Haven +Lark Hill +Lark Rise +Lark Song +Lark Spur +Larkard +Larkbere +Larkdale +Larkdale E +Larkellen +Larken +Larkey +Larkfield +Larkhall +Larkhill +Larkin +Larkin Ridge +Larking +Larkings +Larkington +Larkins +Larkmead +Larkmeade +Larks +Larksfield +Larkshall +Larkspur +Larkspur Canyon +Larkspur Plaza +Larkswood +Larkview +Larkwell +Larkwood +Larlin +Larmans +Larmuth +Larnach +Larne +Larned +Larnis +Larno +Larnock +Larochelle +Laron +Larool +Larosa +Larose +Larpent +Larpin +Larra +Larrabee +Larraway +Larrimore +Larrlyn +Larry +Larry Heller +Larry Ho +Larsdotter +Larsen +Larsens +Larson +Larson Farm +Larstan +Larue +Larup +Larwin +Larwood +Las Amigas +Las Animas +Las Astas +Las Barrancas +Las Brisas +Las Casas +Las Casitas +Las Colinas +Las Colindas +Las Cumbres +Las Dunas +Las Encinitas +Las Feliz +Las Flores +Las Gallinas +Las Huertas +Las Juntas +Las Lomas +Las Lomitas +Las Miradas +Las Olas +Las Ovejas +Las Palmas +Las Pavadas +Las Piedras +Las Plumas +Las Posadas +Las Positas +Las Pulgas +Las Quebradas +Las Ramblas +Las Raposa +Las Robles +Las Trampas +Las Vegas +Lasalle +Lasallette +Lasata +Lascelles +Lascombe +Laselle +Laser +Lash +Lash Larue +Lasham +Lashbrook +Lashbrooks +Lasher +Lashlake +Lasiandra +Lasker +Laskey +Laskie +Lass +Lassa +Lassell +Lassen +Lasser +Lasseter +Lassie +Lassiter +Lasso +Lasswade +Last +Last Chance +Lasta +Lastingham +Lastner +Lastreto +Lasuen +Latch +Latchford +Latchingdon +Latchmere +Latchmoor +Latchmore +Latchwood +Late Harvest +Late Walter +Lateward +Latham +Lathan +Lathbury +Lathem +Latholm +Lathom +Lathom Hall +Lathrop +Latigo +Latimer +Latin +Latina +Latisquama +Latney +Latoff +Latona +Latonia +Latoria +Latour +Latourette +Latrobe +Latshaw +Latta +Lattice +Lattie +Lattimer +Lattimore +Lattin +Latting +Lattingtown +Latton +Latty +Latura +Latvia +Laub Pond +Laud +Laud Honm +Lauder +Lauderdale +Laudervale +Lauerman +Lauf +Laufall +Lauff Ranch +Laugelle +Laughing Cow +Laughlin +Laughter +Laughton +Lauma +Lauman +Laumer +Launcelot +Launceston +Launch +Launch Site +Launching +Launders +Laundess +Laundress +Laundry +Launton +Lauppe +Laura +Laura Belle +Laura Lee +Laura Mark +Laura Ville +Lauradale +Laural +Laural Hills +Lauralton +Laurana +Lauras +Laurel +Laurel Acres +Laurel Bank +Laurel Bowie +Laurel Branch +Laurel Brook +Laurel Canyon +Laurel Cove +Laurel Creek +Laurel Crest +Laurel Dell +Laurel Dell Fire +Laurel End +Laurel Fort Meade +Laurel Glen +Laurel Grove +Laurel Hill +Laurel Hills +Laurel Hollow +Laurel Lakes +Laurel Leaf +Laurel Leaves +Laurel Oak +Laurel Oaks +Laurel Park +Laurel Race Track +Laurel Ridge +Laurel Rock +Laurel Springs +Laurel Valley +Laurel View +Laurel Wood +Laurel Woods +Laurelbrook +Laureldale +Laurelei +Laureles +Laurelglen +Laurelgrove +Laurelhurst +Laurels +Laurelton +Laurelview +Laurelwalk +Laurelwood +Lauren +Lauren Ridge +Laurence +Laurence Hamilton +Laurence Pountney +Laurene +Laurent +Lauretta +Laurette +Lauri +Laurian +Lauriana +Lauriat +Lauricella +Laurie +Laurie Ann +Laurie Jo +Laurie Lee +Laurie Meadows +Laurier +Laurieton +Laurin +Laurina +Laurinda +Laurine +Lauriston +Laurita +Lauritson +Lauritzen +Laury +Lausanne +Lausecker +Lausen +Lauser +Lausett +Laussat +Laux +Lava +Lava Bed +Laval +Lavalencia +Lavall +Lavalle +Lavally +Lavander +Lavant +Lavarack +Lavell +Lavelle +Lavelle Smith +Lavender +Lavender Hill +Lavender Park +Lavenders +Lavengro +Lavenham +Lavenida +Lavenir +Laventhal +Laver +Lavergne +Lavern +Laverne +Lavernock +Laverock +Lavers +Laverstoke +Lavidge +Lavidia +Lavigne +Lavin +Lavina +Lavington +Lavinia +Lavinus +Lavio +Laviolette +Lavister +Lavoie +Lavona +Lavoni +Lavonne +Lavrock +Law +Law Hall +Lawbrook +Lawday Place +Lawers +Lawes +Lawfield +Lawford +Lawfords Hill +Lawler +Lawler Ranch +Lawless +Lawley +Lawling +Lawlinge +Lawlins +Lawlor +Lawmarissa +Lawn +Lawn House +Lawn Ridge +Lawnbank +Lawndale +Lawnfair +Lawnhurst +Lawnmeadow +Lawns +Lawnside +Lawnswood +Lawnview +Lawnwood +Lawrance +Lawrence +Lawrence Brook +Lawrence Creek +Lawrence End +Lawrence Hargrave +Lawrence Hill +Lawrence Mill +Lawridge +Lawrie +Lawrie Park +Lawry +Laws +Laws Brook +Laws Ford +Lawsbrook +Lawson +Lawson Glen +Lawton +Lawton Moor +Lawtonka +Lawtonwood +Lawyers +Lawyers Hill +Lax +Laxell +Laxey +Laxfield +Laxton +Lay +Layard +Laybutt +Laycock +Layden +Layer +Layfield +Layham +Layhill +Layland +Laylock +Layman +Layminster +Layne +Laystall +Layters +Layters Green +Laytham +Laythan +Layton +Layton Hall +Layton Park +Layton Ridge +Laytonia +Laytons +Laytonsville +Lazaneo +Lazel +Lazell +Lazelle +Lazonby +Lazy +Lazy Acres +Lazy Creek +Lazy Day +Lazy Glen +Lazy Hollow +Lazy Point +Lazywoods +Lazzeretti +Lazzini +Le Ah +Le Ann +Le Bain +Le Britton +Le Brun +Le Chateau +Le Claire +Le Clos +Le Conte +Le Donne +Le Fevre +Le Fevres +Le Franc +Le Freth +Le Gendre +Le Grande +Le Havre +Le Jeune +Le Maire +Le Mans +Le Marchant +Le May +Le Moyne +Le Roy +Le Sueur +Le Temple +Le Visnet +Le personne +LeGrand +Lea +Lea Bridge +Lea Farm +Lea Hall +Lea Mount +Lea Park +Lea Valley +Leabank +Leabig +Leabons +Leabourne +Leabrook +Leaburn +Leach +Leaches +Leachs +Leacocks +Leacon +Leaconfield +Leacroft +Lead +Lead Mine +Leadale +Leadbeater +Leadbeaters +Leadbetter +Leadenhall +Leader +Leader Williams +Leadon +Leadville +Leadwell +Leaf +Leaf Lawn +Leaf Wing +Leafcrest +Leafcup +Leafcutter +Leafgreen +Leafhaven +Leafield +Leaflet +Leaford +Leaforis +Leafwood +Leafy +Leafy Oak +Leagrave +Leagrave High +Leah +Leahaven +Leahurst +Leahy +Leake +Leal +Lealand +Lealand Peck +Lealands +Leam +Leaman +Leaman Farm +Leamar +Leamington +Leamon +Leamoore +Leamore +Leamouth +Lean +Leana +Leander +Leaning Oak +Leann +Leanna +Leanne +Leanore +Leapale +Leapfrog +Leaping Deer +Leapingwell +Leapley +Lear +Learmonth +Learned +Learner +Learning +Lears Glen +Leary +Leas +Leasam +Leasey Bridge +Leasey Dell +Leaside +Leask +Leasowe +Leasowes +Leasure +Leat +Leatham +Leathe +Leather +Leather Creek +Leatherback +Leatherbark +Leatherchip +Leatherdale +Leatherhead +Leatherleaf +Leathermarket +Leathers +Leatherstocking +Leatherwood +Leathley +Leathwaite +Leathwell +Leaton +Leavenworth +Leaver +Leaves Green +Leavesden +Leavesley +Leavitt +Leavitt Woods +Leawarra +Leawood +Leaycraft +Leazes +Lebanon +Lebaron +Lebeaux +Lebec +Lebed +Lebeda +Lebel +Leber +Lebkamp +Leblanc +Leboeuf +Lebos +Lebrun +Leburmum +Lecante +Lech Walesa +Lechford +Lechmere +Lechner +Leckford +Leckwith +Lecky +Leclair +Leclaire +Leclerc +Lecluse +Lecompte +Leconfield +Lectern +Lecuyer +Leda +Ledborough +Ledbury +Leddy +Lede +Leder +Lederhaus +Ledford +Ledgard +Ledge +Ledge Brook +Ledge Hill +Ledge Rock +Ledge View +Ledgebrook +Ledgecrest +Ledgedale +Ledgelawn +Ledgemere +Ledgemore +Ledger +Ledgers +Ledgestone +Ledgetree +Ledgeview +Ledgeville +Ledgewood +Ledley +Lednura +Ledochowski +Ledoux +Ledrington +Ledsham +Ledson +Ledston +Ledston Main +Leduc +Ledward +Ledway +Ledwell +Ledyard +Lee +Lee Acres +Lee Alan +Lee Ann +Lee Brig Coronation +Lee Cemetery +Lee Chapel +Lee Church +Lee Conservancy +Lee Deforest +Lee Green +Lee High +Lee Hill +Lee Holm +Lee Jackson +Lee Jay +Lee Landing +Lee Lee +Lee Manor +Lee Masey +Lee Moor +Lee Overlook +Lee Patent +Lee Prescott +Lee School +Lee School Cross +Lee Vale +Lee Valley +Lee Wootens +Leeann +Leeberg +Leebrad +Leech +Leech Brook +Leechcroft +Leechpool +Leecroft +Leedale +Leedburg +Leeder +Leeds +Leeds Aire +Leeds Albion +Leeds Barnsdale +Leeds Bayswater +Leeds Boar +Leeds Call +Leeds Castle +Leeds Duncan +Leeds Hall +Leeds Infirmary +Leeds Moor +Leeds Old +Leeds Potternewton +Leeds Spen +Leeds Tunstall +Leeds Vicar +Leeds Victoria +Leeds York +Leedsville +Leedy +Leefield +Leegate +Leehigh +Leek +Leeke +Leelair +Leeland +Leeland Orchard +Leelyn +Leemans +Leemay +Leeming +Leemon +Leeper +Leepin +Leerdam +Lees +Lees Corner +Lees Court +Lees Crossing +Lees Farm +Lees Hall +Lees Hill +Lees New +Lees Park +Leesborough +Leesburg +Leese +Leeside +Leesley +Leeson +Leestone +Leesville +Leesway +Leeswood +Leet +Leeta Cornus +Leete +Leeton +Leeuwarden +Leever +Leeward +Leewater +Leewill +Leewood +Leewood Forest +Lefante +Lefavour +Lefevre Inn +Leffern +Lefferts +Lefke +Lefont +Lefrancois +Lefreth +Lefroy +Lefurgy +Legacy +Legacy Park +Legacy Pointe +Legana +Legard +Legaski +Legate +Legate Hill +Legation +Legato +Legatt +Legdewood +Legend +Legend Glen +Legend Manor +Legend Oaks +Legends +Legends Club +Legg +Leggatt +Leggatts Wood +Legge +Leggerini +Leggett +Leggo +Leggs +Leggs Heath +Leggs Hill +Legh +Leghorn +Legion +Lego +Legon +Legra +Legrand +Legregni +Legros +Legsheath +Lehan +Lehigh +Lehman +Lehmann +Lehmer +Lehn +Lehnert +Lehnertz +Lehr +Lehrer +Lehtinen +Lei +Leibel +Leibert +Leibes +Leibig +Leibrandt +Leicester +Leichardt +Leichester +Leichhardt +Leick +Leidesdorff +Leigh +Leigh Beck +Leigh Cliff +Leigh Hall +Leigh Hill +Leigh Hunt +Leigh Mill +Leigh Park +Leigh View +Leigham +Leigham Court +Leighams +Leighbrook +Leighdon +Leighfield +Leighfield Valley +Leighfields +Leighlands +Leighs Lodge +Leighton +Leighton Buzzard +Leighton Wood +Leighwood +Leigton +Leila +Leilani +Leims +Leineke +Leinster +Leipzig +Leishear +Leister +Leisure +Leisure Oak +Leisure Town +Leisure World +Leisureville +Leitch +Leitches Wharf +Leith +Leith Park +Leith View +Leitha +Leitrim +Leitz +Leka +Lekoday +Lekoe +Leksand +Leksich +Lektorich +Lela +Lelak +Leland +Leland Farm +Leland Hill +Lelani +Leliaris +Lelland +Lelong +Leman +Leman Lake +Lemans +Lemar +Lemarc +Lemas +Lemay +Lemay Lake +Lembeck +Lembi +Lemcrow +Lemen +Lemire +Lemm +Lemmington +Lemmon +Lemna +Lemnos +Lemocks +Lemoine +Lemon +Lemon Hill +Lemon Tea +Lemon Thyme +Lemon Tree +Lemongrove +Lemons Bridge +Lemont +Lemontree +Lemonwell +Lemonwood +Lemoore +Lemorr +Lemos +Lemoyne +Lemsford +Lemur +Len +Len Hill +Lena +Lenacre +Lenah +Lenah Farm +Lenape +Lenapi +Lenard +Lenark +Lenaskin +Lenbob +Lenborough +Lenburg +Lench +Lenclair +Lencoe +Lendall +Lendell +Lendon +Lendore +Lendrum +Leneda +Lenel +Lenelby +Lenertz +Leness +Leney +Lenfant +Lenfell +Lenfest +Lenfield +Leng +Lengl +Lenglen +Lenham +Lenham Forstal +Lenham Heath +Lenhart +Lenhome +Lenhurst +Lenington +Lenis +Lenison +Leniston +Lenmore +Lennan Brook +Lennane +Lennard +Lennartz +Lennecke +Lennell +Lennis +Lennoco +Lennon +Lennox +Lennoxshire +Lenoir +Lenolt +Lenora +Lenore +Lenox +Lenoxdale +Lenray +Lenroc +Lens +Lenside +Lent +Lent Green +Lent Rise +Lentara +Lenten +Lenthall +Lenthen +Lenthorp +Lentmead +Lenton +Lentz +Lenwood +Lenz +Lenzen +Lenzi +Lenzie +Leo +Leo Park +Leo Slyvious +Leofrene +Leola +Leoleis +Leominster +Leominster Shirley +Leon +Leon Cook +Leona +Leonard +Leonard Calvert +Leonard Farm +Leonard Wood +Leonard Young +Leonardine +Leonardini +Leonardo +Leonardo Da Vinci +Leonardtown +Leonardville +Leone +Leonello +Leong +Leonhard +Leonhardt +Leonia +Leonor +Leonora +Leopold +Leos +Leota +Lepanto +Lepine +Leplastrier +Leppoc +Lerch +Lerch Creek +Lerer +Leric +Lerida +Leritz +Lerner +Lerners +Lernhart +Lerose +Leroux +Leroy +Leroy Gorham +Lerwick +Les +Lesa +Lesbourne +Lescombe +Lescot +Leseur +Lesford +Lesher +Leshyk +Lesieur +Leski +Leslee +Lesley +Leslie +Leslie Ann +Leslie Gilbert +Leslie Park +Leslie Smith +Leslyn +Lesney Park +Lesnick +Lesnie +Lesoir +Lessar +Lesser +Lessing +Lessingham +Lessington +Lessini +Lessness +Lester +Lester Grey +Lester Wall +Lesters +Leston +Lestric +Lesueur +Lesure +Leswell +Leswin +Leswing +Leta +Letawsky +Letcher +Letchmore +Letchworth +Letcombe +Letendre +Letham +Lethbridge +Leticia +Letitia +Letsdown +Lett +Lettau +Letter +Letter Box +Letterbox +Letterkenny +Letterman +Letterstone +Lettice +Lettie +Lettsom +Lettumann +Letzen +Leucha +Leue +Leumeah +Leuna +Leuning +Leupold +Leupp +Leura +Lev +Leva +Levade +Leval +Levant +Levato +Levbert +Levedale +Levee +Levee Access +Level +Level Crossing +Levelle +Leven +Levenage +Levendale +Levendi +Levenhurst +Levens +Levenshulme +Levenworth +Lever +Lever Edge +Lever Hall +Lever Park +Leverenz +Leveret +Leverett +Leverhulme +Leverich +Leveridge +Levering +Levern +Leveroni +Leverson +Leverstock Green +Leverton +Leveson +Levett +Levey +Levgar +Levi +Levick +Levin +Levine +Levington +Levinson +Leviston +Levit +Levitt +Levoy +Levuka +Levvy +Levy +Lewandowski +Lewanna +Lewd +Lewelling +Lewellyn +Lewelyn +Lewgars +Lewid +Lewin +Lewins +Lewinsville +Lewis +Lewis Brown +Lewis Chapel +Lewis Clark +Lewis Court +Lewis Farm +Lewis Foster +Lewis Hill +Lewis Isle +Lewis Knolls +Lewis Point +Lewis Spring +Lewisburg +Lewisbury +Lewisdale +Lewish +Lewisham +Lewishham +Lewiston +Lewistown +Lewitt +Lewmay +Lewood +Lewsey +Lewson +Lewyt +Lex +Lexann +Lexden +Lexford +Lexington +Lexington Crossing +Lexington School +Lexington Valley +Lexton +Ley +Ley Field +Ley Hey +Leyborne +Leybourne +Leyburn +Leyburne +Leycester +Leycett +Leycroft +Leyden +Leyden Park +Leydenhatch +Leydon +Leyes +Leyete +Leyfield +Leyfield The Manor +Leyhill +Leyland +Leyland Park +Leyland Ridge +Leylands +Leylang +Leymar +Leys +Leysdown +Leysfield +Leysholme +Leyspring +Leystone +Leystra +Leyswood +Leyte +Leythe +Leyton +Leyton Cross +Leyton Midland +Leyton Park +Leytonstone +Leytonstone High +Leytte +Leywell +Leywick +Leywood +Lezayre +Lherault +Liable +Liahona +Liana +Liardet +Liatris +Libbeus +Libbey +Libby +Libeau +Libera +Liberata +Liberator +Liberia +Liberty +Liberty Bell +Liberty Grove +Liberty Hall +Liberty Heights +Liberty Hill +Liberty Island +Liberty Lake +Liberty Lakes +Liberty Mill +Liberty Oak +Liberty Park +Liberty Pole +Liberty School +Liberty Square +Liberty Tree +Liberty View +Libourel +Libra +Library +Library Hill +Libs +Libuse +Licata +Liccicitos +Lichau +Lichen +Lichfield +Lichtenberg +Lick +Lick Mill +Lick River +Lickfolds +Lickless +Lida +Lidbury +Lidco +Liddell +Liddell Pipeline +Lidden +Liddicoat +Lidding +Liddington +Liddington Hall +Liddington New +Liddle +Liddon +Lidell +Lidfield +Lidgate +Lidgerwood +Lidget +Lidgett +Lidgett Park +Lidgetts +Lidiard +Lido +Lidsing +Lidwells +Lidyard +Liebenrood +Liebig +Liebrock +Lieder +Liedum +Lief Erickson +Liege +Lieno +Lieper +Lierly +Lies +Liese +Lietz +Lieutenant Cox +Life +Life Quest +Liffler +Liffre +Lift +Lifton +Ligar +Liggett +Ligham +Light +Light Alders +Light Guard +Light House +Light Infantry +Light Oaks +Light Springs +Lightborne +Lightbounds +Lightbourne +Lightbowne +Lightburn +Lightburne +Lightcap +Lightcliff +Lightermans +Lightfoot +Lighthorne +Lighthouse +Lighthouse Landing +Lighthouse View +Lightland +Lightlands +Lightner +Lightning +Lightning Ridge +Lightning View +Lightridge Farm +Lightshaw +Lightship +Lightson +Lightthorne +Lightwater +Lightwood +Ligman +Lignum +Ligon +Ligonier +Liguria +Ligurian +Lihon +Likala +Likely +Likens +Likes +Lila +Lilac +Lilac Blossom +Lilac Bush +Lilac Park +Lilah +Lilbet +Lilbourne +Lilestone +Liley +Lilford +Lilian +Lilibet +Lilienthal +Lilihina +Lilita +Lill +Lilla +Lillard +Lille +Lillechurch +Lillehei +Lilleshall +Lilley +Lilleyhoo +Lilli Pilli +Lilli Pilli Point +Lillian +Lillick +Lillie +Lillifee +Lilline +Lilliput +Lillis +Lilly +Lilly Bottom +Lilly Hill +Lilly Pilly +Lilly Pond +Lillys +Lilting +Lilva +Lily +Lily Bottom +Lily Cache +Lily Dhu +Lily Field +Lily Hill +Lily Lake +Lily Mar +Lily Park +Lily Pond +Lilyan +Lilybrook +Lilydale +Lilyfield +Lilypad +Lilyville +Lima +Liman +Limantour +Limar +Limb Tree +Limberi +Limbourne +Limbrick +Limburg +Limbury +Lime +Lime Green +Lime Hill +Lime Kiln +Lime Meadow +Lime Pit +Lime Tree +Lime Trees +Lime Works +Limebank +Limeburner +Limecroft +Limeditch +Limefield +Limehouse +Limehurst +Limekilln +Limekiln +Limekiln Canyon +Limelight +Limerick +Limeridge +Limerston +Limes +Limes Field +Limesfield +Limestead +Limestone +Limestone School +Limetree +Limetrees +Limewood +Liming +Limits +Limmer +Limmerhill +Limmings +Limoges +Limoli +Limon +Limonite +Limpsfield +Lin Gate +Lin Lor +Lina +Linacre +Linares +Linaria +Linbarger +Linberg +Linbrook +Linby +Lince +Linch +Linchfield +Linclon +Lincoln +Lincoln Centre +Lincoln Crest +Lincoln Green +Lincoln Hill Camp Oak +Lincoln Hills +Lincoln House +Lincoln Knoll +Lincoln Log +Lincoln Mall +Lincoln Meadows +Lincoln Mill +Lincoln Oaks +Lincoln Park +Lincoln Village +Lincoln Woods +Lincolnia +Lincolns +Lincolnshire +Lincolntown +Lincolnway +Lincolnwood +Lincombe +Lincon +Lincrest +Lincroft +Lind +Linda +Linda Bee +Linda Flora +Linda Jean +Linda Lee +Linda Mar +Linda Marie +Linda Mesa +Linda Moor +Linda Rio +Linda Sue +Linda Vista +Lindabury +Lindaire +Lindal +Lindale +Lindall +Lindamoor +Lindaro +Lindau +Lindauer +Lindawood +Lindberg +Lindbergh +Lindbury +Linde +Lindegar +Lindeke +Lindel +Lindell +Lindelof +Lindemann +Linden +Linden Chapel +Linden Farms +Linden Grove +Linden Hall +Linden Hill +Linden Hills +Linden Hurst +Linden Leaf +Linden Linthicum +Linden Oaks +Linden Park +Linden Ridge +Linden Thomas +Linden Tree +Linden Wood +Lindenberry +Lindenbrook +Lindendale +Lindenhill +Lindenhouse +Lindenleaf +Lindenoaks +Lindentree +Lindenwood +Linder +Linder Hill +Linderman +Lindero +Lindesay +Lindeth +Lindfield +Lindford +Lindgren +Lindhurst +Lindi +Lindig +Lindinis +Lindisfarm +Lindisfarne +Lindley +Lindleywood +Lindmuir +Lindo +Lindon +Lindop +Lindor +Lindore +Lindores +Lindow +Lindow Fold +Lindquist +Lindrick +Lindridge +Lindron +Lindrop +Lindrum +Lindsay +Lindsay Blake +Lindsay Creek +Lindsay McDermott +Lindsay Pond +Lindsell +Lindsey +Lindsey Farm +Lindsey Manor +Lindsgate +Lindsley +Lindstrom +Lindum +Lindview +Lindy +Lindys +Line +Line Ridge +Lineas +Linebaugh +Linebrook +Linefield +Linehurst +Linersh +Linersh Wood +Lines +Linet +Linette +Liney +Linfield +Linford +Ling +Lingan +Linganore +Lingard +Lingards +Lingdale +Lingfield +Lingfield Common +Lingholme +Lingley +Linglongs +Lingmoor +Lingwell +Lingwell Gate +Lingwell Nook +Lingwood +Linhares +Linhope +Linington +Link +Link Hill +Linkfield +Linkmead +Links +Links View +Linkscroft +Linkside +Linksley +Linksview +Linksway +Linkswood +Linkway +Linkwood +Linkythorn +Linlar +Linlee +Linley +Linmore +Linmouth +Linn +Linnaean +Linnards +Linne +Linnea +Linnean +Linnell +Linneman +Linner +Linnet +Linnet Hill +Linney +Linnitt +Linnway +Linom +Linquist +Linroping +Linscheid +Linscott +Linsdale +Linsdell +Linsey +Linsford +Linslade +Linsley +Linstead +Linstedt +Linthicum +Linthorne +Linthorpe +Linton +Linton Hall +Linton Way +Lintonia +Lintric +Linum +Linus +Linus Pauling +Linver +Linville +Linway +Linway Park +Linwood +Linwood Forest +Linzee +Lio +Lion +Lion Fold +Lion Wharf +Lioncrest +Lionel +Lions +Lions Chase +Lions Club +Lions Creek +Lions Field +Lions Gate +Lions Head Ranch +Lions Park +Lions Watch +Lionsfield +Lionshead +Liotard +Liparita +Lipes +Liphook +Lipman +Lipnick +Lippard +Lippen +Lippert +Lippi +Lippit +Lippitt +Lippizan +Lippizaner +Lippold +Lipsett +Lipton +Liptraps +Liquid Amber +Liquid Laughter +Liquidamber +Lira +Lirious +Liryc +Lisa +Lisa Ann +Lisa Gaye +Lisa Lee +Lisamary +Lisawood +Lisbeth +Lisbon +Lisbon Center +Lisborough +Lisburn +Lisburne +Liscanor +Liscard +Liscomb +Liscombe +Liscum +Lisdowney +Lise +Lisetta +Lisford +Lisgar +Lisheen +Lisk +Liska +Liskeard +Lisker +Lisle +Lismore +Lispenard +Liss +Lissadel +Lissanthe +Lisso +Lissoms +Lisson +Lissow +List +Lister +Listetr +Listing +Listmas +Liston +Listowe +Listowel +Listra +Liszka +Liszt +Lita +Litchenberg +Litchfield +Litchfield Pine +Litchult +Litherland +Lithgow +Litho +Lithonia +Lithos +Lithuanica +Litina +Litke +Litle Circle +Litnonia +Litohenberg Fire +Littel +Littell +Little +Little ALmshoe +Little Acres +Little Ada +Little Albany +Little Albion +Little Alfred +Little Argyll +Little Arthur +Little Aston +Little Baddow +Little Bank +Little Bardfield +Little Basin +Little Bay +Little Bear Creek +Little Bear Hill +Little Beattie +Little Bend +Little Berkhamsted +Little Berry +Little Big Horn +Little Bloomfield +Little Bluestem +Little Boy +Little Braxted +Little Brighton +Little Broadway +Little Brook +Little Browns +Little Buckingham +Little Bury +Little Bushey +Little Cahill +Little Canada +Little Chapel +Little Chester +Little Church +Little Circle +Little City +Little Cleveland +Little Clove +Little College +Little Collins +Little Common +Little Compton +Little Cormiston +Little Cove +Little Cranmore +Little Creek +Little Crow +Little Current +Little Darling +Little David +Little Difficult +Little Dorrit +Little Downling +Little Ealing +Little East Neck +Little Edward +Little Ees +Little Egerton +Little Essex +Little Eveleigh +Little Falls +Little Farm +Little Farms +Little Fawn Canyon +Little Ferry +Little Foot +Little Fountain +Little Fox +Little Friday +Little Gaynes +Little Gerpins +Little Grange +Little Grass +Little Green +Little Gregories +Little Grove +Little Gypps +Little Hammer +Little Harbor +Little Haven +Little Hay +Little Heath +Little Heath Barley +Little Hill +Little Hollow +Little Honker Bay +Little Horkesley +Little Horwood +Little Hunter +Little Hyde +Little John +Little Johns +Little Joyce +Little King +Little Kings +Little Laver +Little Lever +Little Llagas +Little Llewellyn +Little London +Little Market +Little Marlborough +Little Marlow +Little Marryat +Little Marsh +Little Martin +Little Meadow +Little Melody +Little Merrill +Little Montague +Little Montgomery +Little Moose +Little Mort +Little Moss +Little Mount +Little Mountain +Little Nahant +Little Nassau +Little Neck +Little Neville +Little New +Little Nicholson +Little Norsey +Little Norton +Little Oak +Little Oaks +Little Orchard +Little Ox +Little Oxford +Little Oxhey +Little Path +Little Patuxent +Little Peninsula +Little Peter +Little Pier +Little Pitt +Little Plains +Little Point +Little Pond +Little Portland +Little Potters +Little Quarry +Little Queen +Little Queens +Little Reeves +Little Regent +Little Revel End +Little Ridge +Little Riley +Little River +Little River Run +Little Rock +Little Roke +Little Russell +Little Saint Marys +Little Seneca +Little Smith +Little Somerset +Little Sorrel +Little Spring +Little Tey +Little Theodore +Little Titchfield +Little Totham +Little Tree +Little Tring +Little Trinity +Little Turnpike +Little Turriell Bay +Little Twye +Little Uvas +Little Valley +Little Wakering +Little Wakering Hall +Little Walker +Little Waltham +Little Warley Hall +Little Wellington +Little West +Little Whaleneck +Little Widbury +Little Willandra +Little Wonga +Little Wood +Little Woodhouse +Little Wyndham +Little Young +Littlebourne +Littlebrook +Littlebrooke +Littlebuck +Littlebury +Littlecote +Littlecroft +Littledale +Littledales +Littledown +Littlefield +Littlefields +Littleford +Littleham +Littlehaven +Littleheath +Littlehurst +Littlejohn +Littlemoor +Littlemore +Littlemoss +Littleoak +Littles +Littles Point +Littlethorpe +Littleton +Littleton County +Littletree +Littleway +Littlewick +Littlewood +Littleworth +Littleworth Common +Littley Green +Littlfield +Littman +Litton +Littondale +Litwin +Litzen +Liv +Live Oak +Lively +Livermere +Livermore +Liverno +Liverpool +Liversedge Hall +Liversidge +Liverstudd +Liverton +Livery +Livesey +Livesy +Livia +Livingston +Livingston Terrace +Livingstone +Livinston +Livoli +Livonia +Livorna +Livorna Heights +Livoti +Livsey +Liz +Liz Kernohan +Liza +Lizann +Lizard +Lizban +Lizette +Lizotte +Lizwelch +Lizzie +Ljepava +Lladro +Llagas +Llagas Creek +Llagas Vista +Llama +Llama Ranch +Llanaway +Llanberis +Llandaff +Llandilo +Llanelly +Llanfair +Llangollan +Llano +Llanover +Llanovista +Llanthony +Llanvair +Llewellyn +Llewellyn Field +Llewellyn Manor +Llewelyn +Lleweyn +Lloyd +Lloyd Baker +Lloyd C Gary +Lloyd George +Lloyd Harbor +Lloyd Haven +Lloyd Park +Lloyd Point +Lloyd Rees +Lloyd Wright +Lloyden +Lloyden Park +Lloydhaven +Lloydminster +Lloyds +Llyod +Loa +Loader +Loading Place +Loading Rock +Loakes +Loampit Vale Jerrard +Loamy Hill +Loanda +Loantaka +Loates +Loats +Lob +Lobao +Lobata +Lobaugh +Lobelia +Lobert +Lobitos Creek +Lobley +Loblolly +Loblolly Pine +Lobo +Lobos +Local +Local Board +Locarno +Locbury +Loccmind +Loch +Loch Glen +Loch Haven +Loch Leven +Loch Lomand +Loch Lomond +Loch Maree +Loch Moor +Loch Raven +Loch Sloy Service +Lochaber +Lochaline +Lochalsh +Lochan Ora +Lochanburn +Lochanora +Lochard +Lochat +Lochaven +Lochbrae +Lochbrook +Lochdale +Lochdon +Lochee +Lochiel +Lochinvar +Lochinver +Lochland +Lochlash +Lochloy +Lochmere +Lochmoore +Lochnell +Lochner +Lochness +Lochridge +Lochrobin +Lochslea +Lochstead +Lochton +Lochville +Lochwan +Lochwood +Lochy +Lock +Lock Bridge +Lockborne +Lockdale +Locke +Locke King +Locke Lake +Lockeford Ranch +Lockeland +Locker +Lockerbie +Lockerby +Lockers Park +Lockesley +Locket +Lockett +Lockewood +Lockewoods +Lockey +Lockfield +Lockham Farm +Lockhart +Lockhart Gulch +Lockhaven +Lockheed +Lockhern +Lockhurst +Lockhurst Hatch +Lockingate +Lockinger +Lockington +Lockland +Locklands +Lockleven +Lockleys +Lockman +Lockner +Lockney +Lockport +Lockram +Lockridge +Locks +Locksbridge +Locksley +Locksley Park +Locksly +Locksmeade +Lockton +Lockundy +Lockward +Lockway +Lockwood +Lockyer +Locomotive +Locris +Locus +Locust +Locust Cove +Locust Creek +Locust Glen +Locust Grove +Locust Hill +Locust Point +Locust Ridge +Locust Spring +Locust Tree +Locust Wood +Locustdale +Locustwood +Lodato +Loddiges +Loddington +Loddon +Loddon Bridge +Loddon Hall +Lode +Loder +Lodestone +Lodge +Lodge Bottom +Lodge Farm +Lodge Forest +Lodge Hill +Lodge Point +Lodge Wood +Lodgehill +Lodgepole +Lodges +Lodi +Lodore +Lodovick +Loduca +Loe Ann +Loeb +Loeffler +Loehr +Loeser +Loewen +Lofberg +Lofstrand +Loft +Lofthouse Jumbles +Loftie +Lofting +Lofton +Lofts +Loftus +Lofty +Log +Log Bridge +Log Cabin +Log Cabin Ranch +Log Chain +Log Hill +Log House +Log Inn +Log Lodge +Log Teal +Logan +Logan Creek +Logan Hill +Logan Manor +Logan Wood +Loganberry +Logansport +Loganview +Loganwood +Logarto +Logee +Loggers +Logging +Loggins +Loggon +Logic +Logie +Logmill +Logmore +Logquarter +Logsdon +Logue +Logway +Logwood +Loh +Lohman +Lohnes +Lohr +Lohrman +Lohsen +Loi Linda +Loines +Lois +Loisdale +Loise +Loiselle +Loker +Loki +Lokoya +Lokus +Lola +Lolan +Loland +Loleta +Loletta +Lolita +Loll +Lolleywood +Lollipop +Lolly +Lolly Post +Lolo Pass +Loma +Loma Almaden +Loma Alta +Loma Alta Fire +Loma Chiquita +Loma Heights +Loma Linda +Loma Mar +Loma Prieta +Loma Rio +Loma Robles +Loma Verde +Loma Vista +Loman +Lomand +Lomani +Lomar +Lomas +Lomax +Lombard +Lombardi +Lombardo +Lombardy +Lometa +Lomglands +Lomita +Lomitas +Lommel +Lomond +Lomond South +Lompico +Lon +Lonanbe +Lonard +Lonardo +Loncin Mead +Loncroft +Lonczak +Londesborough +Londin +London +London And Decatur +London Bay +London Bridge +London Council +London Fenchurch +London Hill +London Leaf +London Ranch +Londonary +Londonberry +Londonderry +Lone +Lone Barn +Lone Cedar +Lone Eagle +Lone Hill +Lone Leaf +Lone Oak +Lone Pine +Lone Tree +Lone Tree Plaza +Lonergan +Lonesome +Lonesome Pine +Loney +Long +Long Acre +Long Acres +Long Barn +Long Beach +Long Beech +Long Boat Key +Long Border +Long Bottom +Long Bow +Long Branch +Long Bridge +Long Canyon +Long Catlis +Long Channel +Long Close +Long Cope +Long Cove +Long Croft +Long Deacon +Long Down +Long Ferry +Long Furlong +Long Gate +Long Green +Long Grove +Long Hill +Long Island +Long Island Motor +Long Island Rail +Long Lake +Long Leaf +Long Lodge +Long Marl +Long Marsh +Long Marston +Long Meadow +Long Mill +Long Neck Point +Long Oak +Long Orchard +Long Pine +Long Point +Long Pond +Long Ranch +Long Readings +Long Rede +Long Ridge +Long Ridings +Long River +Long Row Hopwood +Long Run +Long Shadow +Long Shadows +Long Sought For Pond +Long Spur +Long Thorpe +Long Valley +Long View +Long Wood +Longacre +Longacres +Longaker +Longard +Longbarn +Longbeach +Longboat +Longbow +Longbranch +Longbridge +Longbutt +Longcommon +Longcor +Longcroft +Longcrofte +Longcross +Longdale +Longden +Longdene +Longdike +Longdin +Longdon +Longdown +Longdraft +Longdyke +Longe +Longedge +Longell +Longend +Longest +Longfellow +Longfield +Longfields +Longford +Longham +Longhams +Longhayes +Longhedge +Longhill +Longhope +Longhorn +Longhorn Ridge +Longhouse +Longhurst +Longlands +Longlane +Longleaf +Longleat +Longledge +Longleigh +Longlevens +Longley +Longleys +Longlook +Longmark +Longmead +Longmeade +Longmeade Crossing +Longmeadow +Longmere +Longmoor +Longmoore +Longmore +Longmorn +Longnor +Longo +Longobardi +Longpoint +Longpoles +Longport +Longreach +Longreen +Longridge +Longroyd +Longs +Longshadow +Longshaw +Longshaw Ford +Longshore +Longshot +Longshut +Longsight +Longson +Longspur +Longstaff +Longstomps +Longstone +Longstreak +Longstreet +Longton +Longtown +Longtree +Longueville +Longvale +Longvalley +Longview +Longville +Longvue +Longwalk +Longwater +Longwell +Longwick +Longwood +Longwood Grove +Longworth +Loni +Lonicera +Loniewski +Lonmount +Lonna +Lonni +Lonnie +Lonnquist +Lonsdale +Lonus +Loo +Loobath +Loobert +Loobey +Look +Looker +Lookes +Looking Glass +Looking Post +Lookoff +Lookout +Lookout Farm +Lookout Hill +Loom +Loombah +Loomes +Loomis +Loon +Loon Hill +Looney +Loop +Loorana +Loose +Loose Down +Lopa +Lopes +Lopez +Loppets +Lopton +Loquat +Loquat Valley +Lora +Lorabelle +Lorac Vista +Loradale +Lorain +Loraine +Loral +Loralee +Loran +Loran Nordaren +Lorando +Lorane +Lorang +Loras +Loray +Lorayne +Lorca +Lord +Lord Baltimore +Lord Cecil +Lord Culpeper +Lord Derby +Lord Eldon +Lord Fairfax +Lord Hills +Lord Howe +Lord Kitchner +Lord Mayors +Lord Mead +Lord Nelson +Lord North +Lord Warwick +Lorden +Lordina +Lordine +Lordings +Lords +Lords Landing +Lordsfield +Lordship +Lordsmead +Lordswell +Lordswood +Loree +Loreen +Lorel +Lorele +Lorelei +Loreley +Loren +Lorena +Lorene +Lorensen +Lorentz +Lorenz +Lorenze +Lorenzen +Lorenzetti +Lorenzo +Lorete +Loreto +Loretta +Lorette +Loretto +Lorey +Lorfax +Lori +Lori Anne +Lorian +Loriann +Lorie +Lorient +Lorigan +Lorijean +Lorikeet +Lorillard +Lorimer +Lorin +Lorina +Lorinda +Loring +Loring Hills +Loring Towers +Lorion +Loris +Lorita +Lorking +Lorland +Lorn +Lorna +Lorna Leigh +Lornadel +Lorne +Lornkel +Lorraine +Lorraine Metcalf +Lorre +Lorree +Lorren +Lorreta +Lorretta +Lorrie +Lorrimore +Lorring +Lorry +Lortel +Lorton +Lorton Market +Lorton Valley +Lorum +Lorusso +Lory +Loryn +Los Alamos +Los Altos +Los Amigos +Los Angeles +Los Arabis +Los Arboles +Los Banos +Los Banos Cdf +Los Carneros +Los Cedros +Los Cerritos +Los Cerros +Los Charros +Los Coches +Los Dedos +Los Encinos +Los Esteros +Los Felicas +Los Felice +Los Flores +Los Gamos +Los Gatos +Los Gatos Almaden +Los Guilicos +Los Gullicos +Los Huecos +Los Lagos +Los Medanos +Los Molinas +Los Montes +Los Ojos +Los Olivos +Los Padres +Los Palmos +Los Palos +Los Pinos +Los Positos +Los Prados +Los Pueblos +Los Ranchitos +Los Ranchos +Los Reyes +Los Rios +Los Robles +Los Suenos +Los Torres +Los Trancos +Los Trancos Woods +Los Viboras +Loscoe +Loseberry +Losfield +Loslomas +Losoya +Lossie +Lost +Lost Acre +Lost Boy +Lost Colony +Lost Corner +Lost Creek +Lost Deer +Lost Horse +Lost Lake +Lost Meadow +Lost Meadows +Lost Oak +Lost Ranch +Lost Rock +Lost Tree +Lost Valley +Lost View +Lostock +Lostock Hall +Lostock Park +Lostwood +Lot +Lot Phillips +Loten +Loth +Loth Lorian +Lothair +Lothenbach +Lotherton +Lothian +Lothrop +Lotman +Lots +Lott +Lotte +Lotten +Lottery +Lottie +Lottie Bennett +Lottie Fowler +Lotts +Lottsford +Lottsford Vista +Lotus +Lotus View +Lotz +Lotz Hill +Lou +Lou Ann +Lou Courtney +Louanis +Louart +Loubet +Louches +Loucks +Loucreta +Loud +Louden +Louders +Loudhams Wood +Loudon +Loudoun +Loudoun County +Loudoun Park +Loudoun Reserve +Loudoun Tech +Louds +Loudwater +Louetta +Lough +Loughboro +Loughborough +Loughead +Lougheed +Loughlin +Loughran +Loughrigg +Loughton +Loughton High +Louie +Louis +Louis Ballard +Louis Bork +Louis Holstrom +Louis Krohn +Louis Mattei +Louis Mill +Louis Nine +Louis Prang +Louis W Farley +Louisa +Louisana +Louisburg +Louise +Louise F Luther +Louisiana +Louisville +Loumac +Loumena +Lounga +Lounsbery +Loupe +Lourae +Lourdes +Loureiro +Loushers +Lousons +Louth +Louvain +Louvaine +Louville +Louvre +Lovall Valley +Lovall Valley Loop +Lovas +Lovat +Lovatt +Lovcraft +Love +Love Creek +Love Green +Love Grove +Love Harris +Love Joy +Loveall Valley +Lovedale +Loveday +Lovegrove +Lovejoy +Lovel +Lovelace +Loveland +Lovelands +Loveless +Lovell +Lovell Park +Lovely +Loventree +Loveridge +Lovering +Loverock +Lovers +Lovers Leap +Lovers Point +Loversend +Loves +Lovet +Lovett +Lovewell +Loveys +Lovibonds +Lovile +Loville +Loving +Lovis +Lovisa +Lovoni +Low +Low Close +Low Crompton +Low Cross Wood +Low Fields +Low Grove +Low Hall +Low Hill +Low Lea +Low Leighton +Low Meadow +Low Mills +Low Moor Side Wolley +Low Moorside +Low Shops +Low Wood +Lowana +Lowander +Lowandra +Lowanna +Lowbell +Lowbrook +Lowcross +Lowdells +Lowden +Lowder +Lowder Brook +Lowe +Lowe Mill +Lowell +Lowell Davis +Lowell Mason +Lower +Lower Adeyfield +Lower Afton +Lower Albion +Lower Alden +Lower Alderton Hall +Lower Almora +Lower Anchor +Lower Anchorage +Lower Armour +Lower Avon +Lower Aztec +Lower Bank +Lower Barn +Lower Basinghall +Lower Beach +Lower Bedfords +Lower Belgrave +Lower Bell +Lower Bennett +Lower Bents +Lower Bligh +Lower Bloors +Lower Bolton +Lower Boxley +Lower Boyle +Lower Boyndon +Lower Brand Lake +Lower Breeche +Lower Bridge +Lower Britwell +Lower Broad +Lower Broadmoor +Lower Brook +Lower Broughton +Lower Brunswick +Lower Burnham +Lower Bury +Lower Byrom +Lower Campbell +Lower Carr +Lower Carriage +Lower Charles +Lower Chatham +Lower Chestnut +Lower Chiles Valley +Lower Church +Lower Circle +Lower Cliff +Lower Colonial +Lower Cookham +Lower Coombe +Lower Country +Lower Court +Lower Cox +Lower Crescent +Lower Cross +Lower Cutter +Lower D +Lower Dagnall +Lower Darcy +Lower Darwin +Lower Dearborn Park +Lower Denmark +Lower Derby +Lower Dunton +Lower Edge +Lower Edgeborough +Lower Ellen +Lower Elmstone +Lower Exchange +Lower Express +Lower Fant +Lower Farm +Lower Farnham +Lower Featherby +Lower Field +Lower Fort +Lower Frenches +Lower Gore +Lower Grand +Lower Gravel +Lower Green +Lower Greenshall +Lower Grove +Lower Guildford +Lower Hall +Lower Ham +Lower Hampton +Lower Harpenden +Lower Hartlip +Lower Hatfield +Lower Haysden +Lower Henley +Lower Hey +Lower Hiberia +Lower Hibernia +Lower Hidden Falls +Lower High +Lower Higham +Lower Hill +Lower House +Lower Hutchinson +Lower Illinois +Lower James +Lower John +Lower Jones +Lower Kenwood +Lower Kings +Lower Knoll +Lower Lake +Lower Lees +Lower Leigh +Lower Lime +Lower Lock +Lower Locksley +Lower Lodge +Lower Luton +Lower Magazine +Lower Magothy Beach +Lower Maidstone +Lower Main +Lower Manor +Lower Mardyke +Lower Margaret +Lower Market +Lower Marlboro +Lower Marsh Baylis +Lower Matchaponix +Lower Memory +Lower Michigan +Lower Mickletown Boat +Lower Monton +Lower Morden +Lower Mortlake +Lower Mosley +Lower Mount +Lower Moushill +Lower Norton +Lower Notch +Lower Ormond +Lower Overlook +Lower Oxford +Lower Paddock +Lower Paice +Lower Park +Lower Paxton +Lower Pindell +Lower Pine +Lower Placerville +Lower Plateau +Lower Pound +Lower Queens +Lower Rainham +Lower Randolph +Lower Range +Lower Rawson +Lower Redwood +Lower Richmond +Lower Ridge +Lower Robert +Lower Rochester +Lower Roke +Lower Rollstone +Lower Rushton +Lower Sacramento +Lower Sandhurst +Lower Seedly +Lower Shear Creek +Lower Sheering +Lower Sheriff +Lower Sloane +Lower Southend +Lower Sutherland +Lower Tofts +Lower Town +Lower Trabing +Lower Trail +Lower Turf +Lower Turk +Lower Tweedale +Lower Twydall +Lower Vicarage +Lower Vickers +Lower Village +Lower Wabash +Lower Wacker +Lower Warren +Lower Weybourne +Lower Wharf +Lower Wokingham +Lower Wood +Lower Woodlands +Lower Wortley +Lower Wycombe +Lowercroft +Lowerfield +Lowerfold +Lowerhouse +Lowerre +Lowerwood +Lowery +Lowery Oaks +Lowes +Lowes Island +Lowestoft +Loweswater +Lowfield +Lowfield Heath +Lowfields +Lowgate +Lowick +Lowicks +Lowland +Lowlands +Lowman +Lowmoor +Lowndes +Lownorth +Lowood +Lowrey +Lowrie +Lowry +Lowshoe +Lowside +Lowth +Lowther +Lowthorpe +Lowton +Lox +Loxford +Loxford Hall Loxford +Loxham +Loxley +Loxton +Loxwood +Loy +Loyalton +Loyalty +Loyed +Loyola +Lozano +Lozier +Lt Glenn Zamorki +Lt Nichols +Lt. L. Duffy +Lu Anne +Lu Ray +Luana +Luanne +Luau +Lubar +Lubberhedges +Lubbock +Lubec +Lubeck +Lubin +Lubrono +Luby +Lucan +Lucas +Lucas Green +Lucas Park +Lucas Valley +Lucastes +Lucasville +Lucca +Luccarelli +Lucchesi +Luce +Luce Creek +Lucena +Lucent +Lucente +Lucerne +Lucero +Lucey +Luchessa +Luchessi +Luci +Lucia +Lucian +Lucianna +Lucie +Lucien +Lucienne +Lucile +Lucilla +Lucille +Lucina +Lucinda +Lucio +Lucius +Luck +Luckenbach +Luckenbill +Luckett +Lucketts +Lucking +Luckley +Luckmore +Lucknow +Lucks +Lucky +Lucky Hollow +Lucky Lake +Lucky Lure +Luckyn +Lucon +Lucot +Lucretia +Luctons +Luculia +Lucus +Lucy +Lucy Brown +Lucy Ray +Lucylle +Luda +Ludbury +Luddenham +Luddesdon +Luddesdown +Luddington +Ludell +Ludeman +Ludgate +Ludgershall +Ludgores +Ludham +Ludham Hall +Ludington +Ludlam +Ludlow +Ludlum +Ludpit +Ludwig +Ludy +Lue Ellen +Luedke +Luedtke +Luella +Luellan +Lufberry +Lufbery +Luff +Luffburrow +Luffenhall +Luffield +Luffman +Lufkin +Luft +Luftschloss +Lugano +Lugar +Lugar Brae +Lugard +Lugarno +Luger +Lughorse +Lugo +Luhmann +Luhn +Luis Munoz Marin +Luisa Kayasso +Luise +Luisi +Luisser +Luiz Fire +Lujan +Lujean +Lukas +Luke +Luken +Lukens +Luker +Lukes +Lukewood +Lukin +Lukins +Lula Belle +Luland +Lulea +Lull +Lullaby +Lullingstone +Lullington +Lulworth +Lum +Lumac +Lumar +Lumas Verdes +Lumb +Lumb Brook +Lumb Carr +Lumbar +Lumber +Lumber Company +Lumber Hill +Lumbertown +Lumby +Lumeah +Lumley +Lummas +Lummus +Lumn +Lumns +Lumry +Lumsdaine +Lumsdale +Lumsden +Luna +Luna Park +Lunada +Lunan +Lunar +Lunceford +Luncies +Lund +Lund Hill +Lund Ranch +Lunda +Lundan +Lundberg +Lundburg +Lundeen +Lundergan +Lundholm +Lundquist +Lunds Farm +Lundstead +Lundsten +Lundvall +Lundy +Lundys +Lune +Lunedale +Lunelle +Lunenburg +Luneta +Lunghurst +Lunham +Luning +Lunn +Lunny +Lunsford +Lunski +Lunt +Lupidia +Lupin +Lupine +Lupine Den +Lupine Hill +Lupine Valley +Lupp +Lupton +Lupus +Luquer +Lura +Lurene +Lureta Ann +Lurgan +Luria +Lurilane +Lurliene +Lurline +Lurnea +Lurting +Lurton +Lury +Lusan +Lusard +Lusbys +Luscombe +Lushes +Lushington +Lusitana +Lusitano +Lusk +Lussier +Lusted +Luster +Lusterleaf +Lustre +Lusty +Lute +Luten +Lutener +Lutes +Luther +Lutheran +Luthin +Lutman +Luton +Luton Airport +Luton High +Lutrell +Lutter +Luttrell +Lutz +Luvena +Luverne +Luvian +Luvie +Lux +Luxberry +Luxborough +Luxemburg +Luxfield +Luxford +Luxmanor +Luxmore +Luxon +Luxor +Luxury +Luyster +Luyung +Luz +Luzena +Luzern +Luzerne +Luzitania +Luzley +Luzon +Lyall +Lybrook +Lybury +Lycett +Lych Gate +Lychfield +Lycoming +Lycrome +Lyda +Lydbrook +Lydd +Lydden +Lydeard +Lydecker +Lydell +Lydens +Lydford +Lydgate +Lydham +Lydhurst +Lydia +Lydia Bradley +Lydia Ford +Lydianna +Lydiard +Lydiat +Lydig +Lyding +Lydney +Lydon +Lydstep +Lydyett +Lye +Lye Copse +Lye Green +Lyell +Lyeway +Lyford +Lygean +Lygetun +Lygoe +Lyla +Lyle +Lyles +Lylewood +Lyly +Lyman +Lyman School +Lyman Wheelock +Lymann +Lymbridge +Lymcote +Lymden +Lyme +Lyme Bay +Lyme Farm +Lyme Regis +Lymefield +Lymer +Lymerston +Lymewood +Lyminge +Lymington +Lymington Bottom +Lymm +Lymmhay +Lymmington +Lymoore +Lyn Oak +Lynack +Lynbara +Lynbrae +Lynbrook +Lynch +Lynch Hill +Lynchford +Lyncliff +Lyncrest +Lyncroft +Lynd +Lynda +Lyndale +Lyndall +Lyndals +Lynde +Lyndeboro +Lyndell +Lynden +Lyndene +Lyndenwood +Lynderswood +Lyndhurst +Lyndhurst Museum +Lyndia +Lyndley +Lyndon +Lyndsay +Lyndwood +Lyne +Lyne Crossing +Lynegrove +Lyneham +Lynesta +Lynestra +Lynette +Lynfield +Lynfords +Lyng +Lynham +Lynhurst +Lynmar +Lynmere +Lynmont +Lynmouth +Lynn +Lynn Crest +Lynn End +Lynn Fells +Lynn Forest +Lynn Manor +Lynn Oaks +Lynn Ric +Lynn Ridge +Lynn Shore +Lynn W Riffle +Lynn Wood +Lynnalan +Lynnbrook +Lynnbrooke +Lynncrest +Lynncroft +Lynndale +Lynne +Lynnett +Lynnfield +Lynngate +Lynnhaven +Lynnhurst +Lynnmoor +Lynns Retreat +Lynnview +Lynnwood +Lynors +Lynridge +Lynsander +Lynslade +Lynsted +Lynstock +Lynthorpe +Lynton +Lynton Park +Lynvale +Lynview +Lynvue +Lynway +Lynwick +Lynwood +Lynwood Hill +Lynwood Manor +Lynx +Lyon +Lyon Farm +Lyon Park +Lyon Ranch +Lyonia +Lyonpark +Lyonridge +Lyons +Lyons Creek +Lyons Hall +Lyonsdown +Lyonsville +Lyoth +Lyra +Lyrac +Lyric +Lysander +Lysbeth +Lysia +Lysias +Lysle +Lysons +Lyster +Lytchet +Lytcott +Lytelle +Lyth +Lytham +Lythe +Lytherton +Lythgoes +Lythrum +Lytle +Lyton +Lyttel +Lyttelton +Lyttleton +Lytton +Lytton Springs +Lyttonsville +Lyveden +Lywood +M F Bowen +M Gresham +M I Bowen +M. Hershman +MArkland +MCintosh +MINI Park +MITRE Corp Inner +MIddleton +MLK +MMU Didsbury Access +Maacama +Maacka +Maar +Maas +Mabaline +Mabank +Mabbs +Mabel +Mabel Ann +Mabel Josephine +Mabelle +Maberley +Mabey +Mabfield +Mabie +Mabini +Mable +Mabledon +Mablethorpe +Mabley +Mablin +Mabrey +Mabry +Mac +Mac Afee +Mac Arthur +Mac Donald +Mac Dougal +Mac Duff +Mac Farlane +Mac Gregor +Mac Intosh +Mac Kenzie +Mac Kenzie Creek +Mac Lean +Mac Leay +Mac Murtry +Mac Queen +Mac Sherry +MacArthur +MacAuley +MacCall +MacCartney +MacCulloch +MacDonald +MacDonough +MacDougal +MacGregor +MacIntosh +MacKay +MacKellar +MacKenzie +MacKillop +MacLachlan +MacLaurin +MacLeay +MacMillan +MacNamara +MacPherson +MacRae +Macadam +Macadamia +Macalaster +Macalester +Macalla +Macalpin +Macalpine +Macalvey +Macao +Macara +Macarthur +Macarthur Access +Macartney +Macatera +Macaulay +Macauley +Macaw +Macbain +Macbean +Macbeth +Macbride +Maccaboy +Macclesfield +Macclesfield Main +Macclesfield Old +Maccomb +Macculoch +Macdonald +Macdonnell +Macdougald +Macdowell +Macduff +Mace +Macedon +Macedonia +Macefin +Macers +Macey +Macfadden +Macfall +Macfarlan +Macfarland +Macfarlane +Macgill +Macgreggor +Macgregor +Mach +Machado +Machado Ranch +Machell +Machelle +Machen +Macher +Machias +Machin +Machpela +Machpelah +Maciel +Macintire +Macintosh +Macintyre +Maciorowski +Maciver +Mack +Mack Center +Mackall +Mackay +Mackell +Mackellar +Mackennal +Mackenthun +Mackenzie +Mackes Muff +Mackeson +Mackey +Mackeys +Mackie +Mackin +Mackin Woods +Mackinac +Mackinaw +Mackinnon +Mackintosh +Mackinwood +Mackley +Macklin +Macklyn +Mackson +Macksville +Mackubin +Mackville +Mackworth +Maclain +Maclaren +Maclaurin +Maclay +Maclean +Macleay +Maclefish +Maclennan +Macleod +Macler +Maclise +Maclure +Maclynn +Macmahon +Macmillan +Macmurdo +Macneil +Macnichol +Macnish +Maco +Macoma +Macomb +Macomber +Macombs +Macon +Macondray +Macone Farm +Macopin +Macoun +Macpherson +Macpumphrey +Macquarie +Macquarie Grove +Macquariedale +Macquarrie +Macrae +Macready +Macredes +Macri +Macroom +Macsherry +Mactier +Mactorowski +Macullar +Macwood +Macy +Macy Plaza +Mad River +Mada +Madagascar +Madalen +Madaline +Madan +Madary +Madawaska +Maddams +Maddaus +Maddecks +Madden +Maddison +Maddock +Maddocks +Maddox +Maddux +Maddy +Madeira +Madeiros +Madel +Madelaine +Madeleine +Madelena +Madeley +Madelia +Madeline +Madelyn +Maden +Mader +Madera +Madera del Presidio +Madere +Maderia Port +Madero +Madetra +Madge +Madgehole +Madgeways +Madginford +Madi +Madia +Madie +Madiera +Madigan +Madinah +Madingley +Madison +Madison Circle +Madison Farm +Madison Forest +Madison Green +Madison Greens +Madison Hill +Madison House +Madison McLean +Madles +Madoc +Madoline +Madonna +Madras +Madre +Madrers +Madrid +Madrigal +Madrillon +Madrillon Estates +Madrillon Springs +Madron +Madrona +Madronawood +Madrone +Madrone Fire +Madronean +Madrono +Madruga +Madsen +Madson +Maduro +Mae +Mae Belle +Mae Jim +Maeder +Maesbrook +Maesmaur +Maestro +Maeve +Mafeking +Maffei +Maffey +Maffia +Mag +Magaletta +Magarity +Magazine +Magda +Magdala +Magdalen +Magdalena +Magdalene +Magdalin +Magdelene +Magdelina +Magdella +Magee +Magee Ranch +Mageira +Magellan +Magenta +Mager +Magers +Magerus +Magestic +Magga Dan +Maggi +Maggie +Maggio +Maggiolo +Maggiora +Maggiore +Maggy +Magic +Magic Leaf +Magic Mountain +Magie +Magill +Maginnis +Magladry +Maglie +Magliocco +Magna +Magna Carta +Magna Vista +Magnaville +Magner +Magnet +Magnetic +Magnetite +Magney +Magnola +Magnolia +Magnolia Blossom +Magnolia Grove +Magnolia Hill +Magnolia Ridge +Magnollia +Magnum +Magnus +Mago Vista +Magoffin +Magonko +Magos +Magothy +Magothy Beach +Magothy Bridge +Magothy Manor +Magothy Park +Magothy River Shore +Magothy View +Magoun +Magowan +Magowar +Magown +Magpie +Magpie Hall +Magrath +Magreed +Magro +Magruder +Mags +Mague +Maguire +Mahala +Mahan +Mahar +Mahaska +Maher +Mahler +Mahlon +Mahlon Brower +Mahnken +Mahogany +Mahogony +Mahon +Mahoney +Mahoney Meadows +Mahonia +Mahony +Mahoo +Mahood +Mahopac +Mahoras +Mahtomedi +Mahtomedi Service +Mahwah +Maianbar +Maid Marion +Maida +Maida Vale +Maida Vale Hall +Maiden +Maiden Choice +Maiden Erlech +Maiden Erleigh +Maidenbower +Maidenhead +Maidenshaw +Maidera +Maidstone +Maier +Mailers +Maille +Maillet +Mailloux +Main +Main Beach +Main Campus +Main Creek +Main Entrance +Main Gate +Main Line +Main Tiger Mountain +Main Wharf +Maine +Maine Cove +Maine Prairie +Mainerd +Mainline +Mainprize +Mains +Mainsail +Mainsbridge +Mainstone +Mainwaring +Mainwood +Mair +Mairesfield +Mairfield +Mairmont +Maismore +Maison +Mait +Maithouse +Maitland +Maitland Park +Maize +Majendie +Majestic +Majestic Oaks +Majestic Pine +Majestic Prince +Majesty +Majilla +Major +Major Appleby +Major Deegan Service +Major Denton +Major Lansdale +Major Taylor +Major Trescott +Majorca +Majorie +Majors +Majors Bay +Majors Farm +Makah +Makamah +Makamah Beach +Makanna +Makant +Makatom +Makechnie +Makely +Makemoney +Makepeace +Makim +Makin +Makins +Makinson +Maklary +Makofske +Makos +Makushin +Mal +Mala +Malabar +Malachite +Malacoota +Malaga +Malaguerra +Malahide +Malakoff +Malam +Malaney +Malapardis +Malarin +Malat +Malay +Malba +Malbec +Malbert +Malbone +Malborough +Malbrook +Malburn +Malby +Malcolm +Malcolm Dixon +Malcolm Sargent +Malcolm Wilson +Malcolm X +Malcolmson +Malcom +Malcomb +Malden +Malders +Maldive +Maldon +Maldonado +Maldwyn +Maleady +Malec +Malech +Malecon +Malek +Malet +Maley +Malfort +Malga +Malham +Malhams +Mali +Malibou +Malibu +Malicoat +Malier +Malinda +Maling +Malinya +Malissa +Malkin +Mall +Mall Access +Mall Connection +Mall Loop +Mallacoota +Mallalieu +Mallar +Mallard +Mallard Lake +Mallard Landing +Mallard Point +Mallard Pointe +Mallard Ponds +Mallard Shore +Mallard Slough +Mallards Cove +Mallards Ponds +Mallawa +Mallee +Malleny +Mallery +Mallet +Mallet Hill +Mallett +Mallette +Malley +Malling +Mallings +Mallinson +Mallis +Mallison +Mallon +Mallorca +Mallord +Mallory +Mallory Canyon +Mallory Hill +Mallow +Mallow Ridge +Mallowdale +Mallows Green +Malloy +Mallview +Malm +Malmains +Malmaynes Hall +Malmers Well +Malmesbury +Malmo +Malmsbury +Malmstone +Malobar +Maloian +Malone +Maloney +Malonga +Maloon +Malory +Malott +Malouf +Maloyan +Malpas +Malpass +Malquinn +Malraux +Malsbury +Malsham +Malt +Malt House +Malt Kiln +Malta +Maltbie +Maltby +Maltese +Malthouse +Malthus +Malting +Malting Green +Maltings +Maltings Park +Maltings Villas +Maltmans +Malton +Maltravers +Malts +Malua +Malubar +Malus +Malvar +Malvasia +Malverley +Malvern +Malvern Hill +Malverna +Malverne +Malvin Albright +Malvina +Malvine +Malvini +Malwood +Malyon +Malyons +Malysana +Malzeard +Mamaroneck +Mamie +Mammoroneck +Mammoth +Mamor +Mamre +Man O War +Manacor +Manadnock +Managers +Manahan +Manalapan +Manana +Manand +Manassas +Manassas Forge +Manassas Mill +Manatauck +Manatee +Manatuck +Manbey +Manbre +Manbrough +Mance +Manchaug +Manchest +Manchester +Manchester Lakes +Manchester New +Manchester Old +Manchester Oxford +Manchet +Manchuria +Mancini +Manciple +Mancroft +Mancunian +Mancus +Mancuso +Manda +Mandalay +Mandalay Beach +Mandalong +Mandam Village +Mandan +Mandarin +Mandel +Mandela +Mandemar +Mander +Manderly +Manderston +Mandeville +Mandible +Mandoli +Mandolin +Mandoo +Mandoon +Mandora +Mandrake +Mandrell +Mandy +Mane +Manee +Manella +Manemet +Maneroo +Manet +Manette +Manetto +Manetto Hill +Maney +Manfield +Manfre +Manfred +Manfroy Ranch +Mangalore +Mangariva +Mangel Ranch +Mangels +Manger +Mangin +Mangini +Mangiri +Mangle +Mangles +Mango +Mangold +Mangos +Mangravet +Mangrill +Mangrove +Mangrum +Mangs +Manguire +Mangum +Manguso +Manhasset +Manhasset Woods +Manhattan +Manhattan Beach +Manhattan College +Manhattanville +Manhatten +Manheim +Maniago +Manico +Manida +Manifold +Manigan +Manila +Manildra +Manilla +Manion +Manipur +Manis +Manison +Manister +Manito +Manitoba +Manitou +Manitou Island +Manitowac +Mankas +Mankas Corner +Manker +Manland +Manley +Manley Bridge +Manlove +Manly +Manly Dixon +Mann +Mann Hill +Mann Lot +Manna Gum +Mannakee +Manner +Mannering +Manners +Mannetti +Mannetto Hill +Mannheim +Mannikin +Mannin +Manning +Manningtree +Mannix +Mannock +Mannow +Manns +Manns Hill +Manoel +Manoff +Manolete +Manomet +Manomin +Manon +Manooka +Manor +Manor Brook +Manor Circle +Manor Court +Manor Crest +Manor Ct +Manor Farm +Manor Gate +Manor Green +Manor Grove +Manor Hall +Manor Haven +Manor Hill +Manor House +Manor Lake +Manor Lea +Manor Mill +Manor Oaks +Manor Park +Manor Pond +Manor Pound +Manor Ridge +Manor Village +Manor Way Lee +Manor Way New +Manor Way Lime Tree +Manor Way Maythorne +Manora +Manorcrofts +Manorfield +Manorgate +Manorhaven +Manorhill +Manorhouse +Manors +Manorside +Manorstone +Manorvale +Manorview +Manorville +Manorwood +Manourhouse +Manowie +Manresa +Manresa Uplands +Mansard +Mansbury +Manscroft +Mansdale +Manse +Manseau +Mansel +Mansell +Mansells +Manser +Mansfield +Mansfield Manor +Mansford +Manshaw +Manship +Mansion +Mansion House +Mansion Park +Manson +Manston +Manstone +Mansur +Mansway +Manswood +Mant +Mantalini +Mantauk +Manteca +Mantelli +Manter +Manthey +Manthorne +Manthorp +Manthorpe +Mantilla +Mantis +Mantle +Manton +Mantoni +Mantua +Mantus +Manuel +Manuel Campos +Manuel T Freitas +Manuela +Manuelian +Manuella +Manufacturers +Manufactures +Manuka +Manursing +Manvel +Manvers +Manville +Manville Hill +Manwaring +Manwell +Manwood +Manx +Many Flower +Many Levels +Many Mind +Manygate +Manymind +Manzana +Manzanetta +Manzanilla +Manzanillo +Manzanita +Manzanita Fire +Manzanita Park +Manzanita Point +Manzanita Springs +Manzano +Maoli +Maolis +Maori +Map +Map Hill +Mapache +Mape +Mapel +Mapes +Mapesbury +Mapewood +Maple +Maple Bluff +Maple Branch +Maple Brook +Maple Chase +Maple Creek +Maple Cross +Maple Dell +Maple Falls +Maple Glen +Maple Grove +Maple Hall +Maple Heights +Maple Hill +Maple Island +Maple Knoll +Maple Lake +Maple Lawn +Maple Leaf +Maple Manors +Maple Mountain +Maple Park +Maple Pond +Maple Ridge +Maple Run +Maple Shores +Maple Tree +Maple Valley +Maple View +Maple Wood +Maplebrook +Maplecreek +Maplecrest +Maplecroft +Mapledale +Mapledon +Mapledrakes +Mapledurham +Maplefield +Maplegrove +Maplehill +Maplehurst +Maplelawn +Mapleleaf +Maplemoor +Maplenut +Mapleplain +Mapleridge +Maplers +Maples +Maplescombe +Mapleshade +Mapleside +Maplestead +Maplestead Hall +Maplethorpe +Mapleton +Mapletree +Mapleview +Maplewood +Maplewood Mall +Maplewood Park +Mapley +Maplin +Maquan +Maquilla +Mar +Mar East +Mar Monte +Mar Vista +Mar West +Mara +Maracaibo +Marakesh +Maraket +Maralinga +Maralyee +Maramel +Marampo +Maran +Marana +Maranatha +Maranda +Maranello +Maranie +Maranon +Maranook +Marant +Maranta +Maranui +Maras +Maraschino +Marathon +Maravich +Maravista +Maray +Marazzani +Marba +Marban +Marbee +Marbella +Marben +Marberry +Marbet +Marbi +Marbilynn +Marble +Marble Arch +Marble Canyon +Marble Fawn +Marble Hill +Marble Mountain +Marble Ridge +Marble Rock +Marble Valley +Marble Wood +Marbledale +Marblehead +Marbleridge +Marblestone +Marblewood +Marbly +Marboro +Marbour +Marbourne +Marbridge +Marbrook +Marburg +Marburger +Marbury +Marbury Run +Marc +Marcama Ranch +Marcando +Marceau +Marcee +Marcel +Marcela +Marcella +Marcellas +Marcello +Marcellus +Marcelyn +Marcer +Marcey +Marcey Creek +March +Marchand +Marchant +Marchbank +Marchbanks +Marchen +Marcher +Marches +Marchi +Marchmont +Marchwood +Marcia +Marcia Jean +Marcin +Marcius +Marclaire +Marcliffe +Marco +Marconi +Marcotte +Marcourt +Marcross +Marcshire +Marcus +Marcus Garvey +Marcuse +Marcussen +Marcy +Marda +Mardale +Mardan +Mardel +Mardell +Mardella +Marden +Marder +Mardi +Mardie +Mardin +Mardinly +Mardis +Mardjetko +Mardle +Mardley +Mardleybury +Mardo +Mardol +Mardon +Mardyke +Mare +Mare Barn +Mare Hill +Marea +Marechal Niel +Mareda +Maree +Marefield +Mareldor +Marella +Maren +Marenda +Marengo +Mares Neck +Mareschal +Mareshall +Mareth +Maretha +Maretimo +Mareu +Marfargoa +Marfield +Marford +Marfrance +Marga +Margail +Margaret +Margaret Bondfield +Margaret Corbin +Margaret Curtis +Margaret Gardner +Margaret Keahon +Margaret Mitchell +Margaret Woods +Margarets +Margaretta +Margaretting +Margarido +Margarita +Margarite +Margate +Margate on Oxford +Margelet +Margeret +Margerie +Margerita +Margery +Margery Park +Margery Wood +Marget +Margetts +Margherita +Margie +Margin +Marginal +Marginella +Margo +Margorie +Margot +Margraten +Margravine +Margret +Margrett +Margrove +Marguerette +Marguerita +Marguerite +Margurite +Marham +Mari +Maria +Maria Lake +Maria Noel +Mariada +Marian +Mariana +Marianas +Mariani +Mariann +Marianna +Marianne +Mariano +Maribess +Maricas +Marice +Marich +Maricopa +Maridon +Marie +Marie Angela +Marie Ann +Marie Curie +Marie Louise +Marie Major +Marieba +Mariele +Marielene +Mariemont +Maries +Mariestad +Marietta +Marigold +Marik +Marikay +Marilla +Marillac +Marillian +Marilona +Marilyn +Marilyne +Marilynn +Marimac +Mariman +Marin +Marin Center +Marin Oaks +Marin View +Marina +Marina Bay +Marina Court +Marina Cove +Marina Green +Marina Lakes +Marina Park +Marina Point +Marina Shore +Marina View +Marina Village +Marina Vista +Marinaview +Marinda +Marindell +Marine +Marine Terminal +Marine View +Marine World +Marinea +Marinefield +Marinella +Marinelli +Mariner +Mariner Green +Mariner Square +Marinera +Mariners +Mariners Cove +Mariners Island +Marinette +Marineview +Marinita +Marinna +Marino +Marinor +Marinovich +Marinucci +Marinus +Marinwood +Mario +Mario Anthony +Marioak +Mariola +Mariom +Marion +Marion Pepe +Marione +Marionet +Marions +Mariposa +Marique +Maris +Marisa +Marischal +Marish +Marisma +Marissa +Marist +Marit +Marita +Maritime +Maritime Academy +Marius +Marivista +Marjohn +Marjoram +Marjorams +Marjorie +Marjorie Jackson +Marjory +Mark +Mark Alan +Mark Bradford +Mark Center +Mark Collins +Mark Graf +Mark Lee +Mark Mead +Mark Terrace +Mark Thomas +Mark Twain +Mark Vincent +Mark West Springs +Mark Wood +Markab +Marked Tree +Markedge +Markeley +Markenfield +Market +Market Commons +Market Loop +Market Oak +Market Place +Market Square +Market Town +Marketfield +Marketplace +Marketpointe +Marketview +Markev +Markey +Markfield +Markgrafs Lake +Markham +Markham Grant +Markhams Grant +Markhouse +Markingdon +Markington +Markland +Markland Hill +Marklands +Marklay +Markley +Markmanor +Markovich +Markovina +Markowitz +Marks +Marks Hall +Marksman +Markstakes +Markston +Markwick +Markwood +Markyate +Marl +Marl Oak +Marl Pat +Marla +Marlain +Marlan +Marland +Marland Fold +Marland Hill +Marland Old +Marlands +Marlbarough +Marlboro +Marlboro Woods +Marlborough +Marlbrook +Marlbrough +Marlcroft +Marle +Marle Place +Marlee +Marleigh +Marlen +Marlene +Marler +Marless +Marlesta +Marlette +Marley +Marley Combe +Marley Creek +Marley Hills +Marley Neck +Marlfield +Marlin +Marlinford +Marling +Marlington +Marlins Park +Marlinspike +Marlis +Marlisle +Marlo +Marloborough +Marlock +Marloes +Marlon +Marlou +Marlow +Marlow Bridge +Marlow Farm +Marlowe +Marlpit +Marlpits +Marlpost +Marlstone +Marlton +Marlton Center +Marlwood +Marly Garden +Marlyn +Marlynn +Marlyns +Marlyon +Marmadon +Marmaduke +Marmary +Marmet +Marmion +Marmion Academy +Marmith +Marmon +Marmona +Marmont +Marmora +Marmot +Marna +Marne +Marnel +Marnell +Marney +Marnham +Marnice +Marnook +Marnpar +Maro +Maroel +Marong +Maroo +Marooba +Marook +Maroon +Maroon Bells +Maroopna +Maros +Maroubra +Marple +Marple Hall +Marple Old +Marquand +Marquard +Marquardt +Marques +Marquess +Marquet +Marquette +Marquis +Marquita +Marr +Marr Crest +Marr Lodge +Marra +Marrang +Marrett +Marri +Marriage +Marrick +Marrickville +Marrietta +Marrigan +Marrilyne +Marriner +Marringdean +Marrion +Marriot +Marriott +Marriotts +Marron +Marrow +Marrowbrook +Marryat +Marryott +Mars +Marsack +Marsad +Marsak +Marsala +Marsalla +Marsan +Marsand +Marsardis +Marscay +Marsch +Marschall +Marsdale +Marsden +Marsden Fall +Marsden Peel +Marsdon +Marseille +Marseilles +Marsh +Marsh Creek +Marsh Crossing +Marsh Farm +Marsh Fold +Marsh Gibbon +Marsh Green +Marsh Hall +Marsh Harbor +Marsh Hawk +Marsh Hill +Marsh House +Marsh Lake +Marsh Overlook +Marsh Point +Marsh Pointe +Marsh Quarter +Marsh View +Marsha +Marshal +Marshalee +Marshall +Marshall Ash +Marshall Beach +Marshall Concourse +Marshall Corner +Marshall Crown +Marshall Hall +Marshall Lake +Marshall Minor +Marshall Petaluma +Marshall Pond +Marshall Yard +Marshalls +Marshalls Heath +Marshalltown +Marshalswick +Marsham +Marshbrook +Marshcroft +Marshdale +Marshes Dock +Marshfield +Marshgate +Marshlake +Marshland +Marshlands +Marshman +Marshmellow +Marshmoor +Marshsong +Marshview +Marshy Point +Marsilly +Marsland +Marsland Green +Marson +Marstan Moor +Marsteller +Marsten +Marsters +Marston +Marstone +Marstonfields +Marsulin +Marsworth +Marszalkowski +Marta +Martaban +Martel +Martell +Martellini +Martello +Marten +Martens +Martense +Martensen +Marth +Martha +Martha Custis +Martha Greenleaf +Martha Jane +Martha Jones +Martha Washington +Marthall +Martham +Marthas +Marthas Point +Marti +Marti Marie +Martian +Martie +Martiin +Martin +Martin Francis +Martin Frobisher +Martin Jue +Martin Long +Martin Luther King +Martin Luther King Jr +Martin Redman +Martina +Martinack +Martinangelo +Martindale +Martine +Martineau +Martinelli +Martinez +Martingale +Martingdale +Martinhoe +Martini +Martinique +Martino +Martinoni +Martins +Martins Beach +Martins Cove +Martins Hundred +Martins Landing +Martins Pond +Martinsburg +Martinscroft +Martinsend +Martinstein +Martinvale +Martinwood +Martiri +Martis +Martius +Martland +Martlet +Martlett +Martlew +Martley +Martling +Martock +Martom +Marton +Martool +Martown +Marts +Marty +Martyn +Martyr +Martyrs +Maruba +Marumsco +Marva +Marva Oaks +Marvel +Marvell +Marvelle +Marvels +Marville +Marvin +Marvin Elwood +Marvin Gardens +Marvo +Marvy +Marwell +Marwick +Marwood +Marx +Marx Meadow +Mary +Mary Adele +Mary Agnes +Mary Alice +Mary Allen +Mary Ann +Mary Anne +Mary Augusta +Mary Baldwin +Mary Byrne +Mary C +Mary Caroline +Mary Case +Mary Cassatt +Mary Catherine +Mary Chilton +Mary Chris +Mary E Brown +Mary Eddy +Mary Ellen +Mary Etta +Mary Evelyn +Mary Fee +Mary France +Mary Helen +Mary Hills +Mary Jane +Mary Jean +Mary Jo +Mary Joe +Mary Kate +Mary Kay +Mary Kennedy +Mary Knoll +Mary Lee +Mary Lou +Mary Lu +Mary Lynn +Mary Neunar +Mary Paige +Mary Peters +Mary Powell +Mary Roth +Mary Scano +Mary Scot +Mary Todd +Mary Wollstonecraft +Marya +Maryal +Maryann +Maryanna +Maryanne +Maryannis +Maryatt +Marybelle +Marycrest +Marycris +Marydale +Marydell +Marye +Maryellen +Maryfield +Maryhill +Maryhurst +Maryjane +Maryknoll +Maryl +Marylake +Maryland +Maryland Park +Marylands +Marylebone +Marylebone High +Maryleborn +Marylin +Marylon +Marylou +Marylu +Marylyn +Marymead +Marymeade +Marymont +Marymoor Park +Marymount +Maryon +Maryport +Marys +Marys Mount +Marystown +Marysville +Maryton +Maryvale +Maryview +Maryville +Marywood +Marywood Oaks +Marz +Marzino +Marzitelli +Marzoff +Mas Que Farm +Masar +Masasoit +Masboro +Masbro +Mascalls +Mascalls Court +Mascari +Masciarelli +Mascoma +Masconemet +Masconomet +Masconomo +Mascot +Mascotte +Mase +Masefield +Maserati +Masham +Mashbury +Mashie +Mashman +Mashpee +Masjid +Maskell +Maskwonicut +Maslen +Masoma +Mason +Mason Bluff +Mason Crossing +Mason Dixon +Mason Hill +Mason Pond +Mason Ranch +Mason Ridge +Masonbrook +Masonic +Masonic Hall +Masonic Home +Masonry +Masons +Masons Beach +Masons Bridge +Masons Ferry +Masons Green +Masons Spring +Masonville +Masonwood +Maspeth +Mass +Massa +Massachusetts +Massanutten +Massapequa +Massapoag +Massar +Massasoit +Massbury +Masse +Massei +Massena +Masser +Masseth +Massetts +Massey +Massey Brook +Massie +Massingham +Massitoa +Massoit +Massolo +Masson +Massport Haul +Mast +Mast Hill +Mastbrook +Masten +Master +Master Gunner +Masterfield +Masterman +Masterpiece +Masters +Masterson +Masterton +Masterworks +Masthead +Mastic +Mastick +Mastlands +Mastmaker +Mastro +Maswell Park +Mat +Matadero +Matadero Creek +Matador +Matanzas +Matapeake +Matapeake Business +Mataro +Matawan +Matawan Green +Matbury +Match Point +Matcham +Matchaponix +Matchett +Matching +Matchless +Matchmoor +Matena +Mateny +Mateny Hill +Mateo +Matera +Materials +Matey +Matfair +Matfield +Matham +Mathams +Mathaurs +Mather +Mather East +Mather Field +Matheron +Mathes +Matheson +Mathew +Mathews +Mathews Park +Mathewsgreen +Mathewson +Mathia +Mathias +Mathieson +Mathieu +Mathilda +Mathis +Mathurin +Mathwig +Mathy +Matiasevich +Matignon +Matilda +Matilija +Matina +Matinecock +Matinecock Farms +Matis +Matisse +Matley +Matlock +Matmor +Matong +Matora +Matoza +Matross +Matson +Matsonia +Matsons +Matsqui +Matsuda +Matsumoto +Matt +Mattakeeset +Mattakeesett +Mattande +Mattapan +Mattaponi +Mattaponi River +Mattapony +Mattawoman +Mattawoman Beantown +Mattawoman Creek +Mattei +Matteline +Matteo +Matterhorn +Matteri +Matterson +Matteson +Matthes +Matthew +Matthew Henson +Matthew Mills +Matthew Moss +Matthew Parker +Matthews +Matthews Town +Matthias +Matthies +Matthiessen +Mattice +Mattie +Mattimore +Mattingley +Mattingley Bottle +Mattingly +Mattique +Mattison +Mattituck +Mattity +Mattock +Mattocke +Mattos +Mattox +Mattox Creek +Matts +Matts Hill +Mattson +Mattson Brook +Mattsons +Matule +Matura +Maturan +Matzen +Matzley +Maubert +Maud +Maude +Maudlin +Mauds +Maudslay +Maudsley +Maue +Mauer +Maugh +Maugham +Maughan +Maugus +Maugus Hill +Maui +Maujer +Maul +Maulbeck +Mauld +Mauldeth +Maule +Mauleverer +Maumee +Maumell +Mauna Kea +Maunder +Maunsel +Maura +Maura Elizabeth +Maureen +Maurer +Maurice +Mauricia +Mauritania +Mauritius +Maurland +Mauro +Mauro Pietro +Maury +Mausoleum +Mavelle +Maverick +Maverton +Maves +Mavins +Mavis +Mavor +Mavus +Mawal +Mawarra +Mawavi +Mawbey +Mawdsley +Mawhinney +Mawman +Mawney +Mawson +Max +Max Blobs Park +Maxall +Maxanicki +Maxcy +Maxdale +Maxess +Maxey +Maxfield +Maxim +Maximfeldt +Maximilian +Maximillian +Maxine +Maxson +Maxted +Maxwell +Maxwell Canyon +Maxwell Frye +Maxwells +Maxwelton +May +May Bate +May Brown +May Elm +May Lake +May School +May Wagner +Maya +Mayall +Mayan +Mayaone +Mayapple +Mayapple Hill +Maybank +Maybaugh +Maybaum +Maybeck +Maybeck Twin +Maybee +Maybell +Maybelle +Maybern +Mayberry +Mayborne +Mayboro +Maybrick +Maybrook +Maybury +Maybush +Maycheck +Maycliff +Maycock +Maycotts +Maycroft +Mayda +Maydale +Maydan +Mayday +Maydencroft +Maye +Mayellen +Mayer +Mayerne +Mayes +Mayesford +Mayeswood +Mayette +Mayfair +Mayfair Park +Mayfarm +Mayfiar +Mayfield +Mayfield Heights +Mayfields +Mayflower +Mayford +Maygood +Maygoods +Maygrove +Mayhall +Mayher +Mayhew +Mayhews +Mayhews Landing +Mayhill +Mayhouse +Mayhurst +Maykirk +Mayland +Maylands +Maylard +Maylea +Maylen +Maylins +Maylock +Maylons +Mayman +Mayme +Maymens Flat +Maymont +Maynadier +Maynard +Maynard Farm +Mayne +Maynestone +Mayo +Mayo Ridge +Mayock +Mayola +Mayor +Mayorlowe +Mayow +Mayplace +Maypole +Maypool +Mayport +Mayre +Mayroyd +Mays +Mays Canyon +Maysenger +Maysent +Maysfield +Mayside +Maysoule +Mayten +Maytham +Maythorne +Maytime +Mayton +Maytone +Maytorena +Maytree +Maytum +Mayvic +Mayview +Mayville +Mayweed +Maywin +Maywood +Mazalin +Mazarin +Mazatlan +Mazda +Mazda Brook +Maze +Maze Green +Mazeau +Mazenod +Mazepa +Mazewood +Mazey +Mazie +Mazoe +Mazuela +Mazur +Mazza +Mazzaglia +Mazzeo +Mazzilli +Mazzini +Mazzone +Mazzoni +Mc Abee +Mc Adam +Mc Afee +Mc Alester +Mc Alister +Mc Allister +Mc Alpin +Mc Arthur +Mc Auliffe +Mc Avoy +Mc Baine +Mc Breen +Mc Bride +Mc Cabe +Mc Callum +Mc Cameron +Mc Cammon +Mc Cann +Mc Cannon +Mc Carron +Mc Carter +Mc Carthy +Mc Ceney +Mc Chesney +Mc Chord +Mc Clean +Mc Clellan +Mc Clelland +Mc Clellen +Mc Clish +Mc Closkey +Mc Clung +Mc Clure +Mc Coco +Mc Coll +Mc Collam +Mc Comber +Mc Connell +Mc Cook +Mc Cool +Mc Cord +Mc Corkle +Mc Cormick +Mc Cornack +Mc Corty +Mc Covey +Mc Coy +Mc Cracken +Mc Cray Ridge +Mc Crea +Mc Creery +Mc Creery Ranch +Mc Crone +Mc Cue +Mc Culloch +Mc Cullough +Mc Cully +Mc Curdy Trail +Mc Cutchan +Mc Cutcheon +Mc Daniel +Mc Dermott +Mc Divitt +Mc Dole +Mc Donald +Mc Donell +Mc Dougall +Mc Dowell +Mc Eachern +Mc Evoy +Mc Ewen +Mc Fadden +Mc Fall +Mc Faul +Mc Garvey +Mc Gaw +Mc Ginley +Mc Ginn +Mc Ginness +Mc Ginnis +Mc Glashan +Mc Gloshen +Mc Glynn +Mc Grady +Mc Grann +Mc Graw +Mc Gregor +Mc Guckian +Mc Guffie +Mc Henry +Mc Intosh +Mc Intosh Creek +Mc Kay +Mc Kean +Mc Kee +Mc Keel +Mc Kellar +Mc Kelvey +Mc Kendree +Mc Kenna +Mc Kenny +Mc Kenzie +Mc Keon +Mc Keown +Mc Kinley +Mc Kinney +Mc Kissick +Mc Knew +Mc Knight +Mc Kool +Mc Lain +Mc Laren +Mc Larin +Mc Laughlin +Mc Lean +Mc Lellan +Mc Lendon +Mc Leod +Mc Loughlin +Mc Magan +Mc Mahon +Mc Menemy +Mc Millan +Mc Morrow +Mc Mullen +Mc Mullin +Mc Murray +Mc Nabbs +Mc Nair +Mc Near +Mc Neer +Mc Neil +Mc Neile +Mc Ney +Mc North +Mc Nutt +Mc Pherson +Mc Quay +Mc Questen +Mc Roberts +Mc Sween +Mc Vay +Mc Veigh +Mc Vicker +Mc Vickers +Mc Whorter +McAdam +McAdams +McAdoo +McAfee +McAleer +McAlister +McAllister +McAlpine +McAmant +McAndrew +McAndrews +McArdle +McArthur +McArthur Loop +McAtee +McAuley +McAuliffe +McBain +McBrian +McBride +McBrown +McBryde +McBurney +McCabe +McCahill +McCalium +McCall +McCallum +McCampbell +McCandless +McCann +McCannon +McCarron +McCarrs Creek +McCarters +McCarthy +McCarthy Ranch +McCarthy Ridge +McCarthys +McCartney +McCarty +McCarty Ranch +McCary +McCasland +McCauley +McCaulley +McCay +McCellen +McCeney +McChesney +McClain +McClaran +McClaren +McClarren +McClary +McClean +McCleer +McClellan +McClelland +McClellen +McClintock +McClish +McCloskey +McClosky +McCloud +McCloud River +McCloy +McClung +McClure +McClurg +McColl +McCollum +McComas +McComb +McCombe +McComber +McCone +McConnel +McConnell +McCook +McCool +McCoppin +McCord +McCorkle +McCormack +McCormic +McCormick +McCornick +McCosh +McCoville +McCowan +McCoy +McCoy Creek +McCracken +McCrae +McCray +McCray Ridge +McCrea +McCredie +McCreey +McCrory +McCrossin +McCubbens +McCubbin +McCudden +McCue +McCuen +McCul +McCulley +McCulloch +McCullough +McCullough Park +McCullum +McCune +McCurahan +McCurdy +McCurley +McCurry +McCutchen +McDaniel +McDaniels +McDeeds +McDermott +McDevitt +McDiarmid +McDivitt +McDole +McDonald +McDonald Chapel +McDonalds +McDonell +McDonnel +McDonnell +McDonough +McDonough Heights +McDougal +McDougald +McDougall +McDowall +McDowell +McDuff +McDuffie +McEathron +McElhone +McEllen +McElroy +McEncroe +McEnery +McEntee +McEvilly +McEvoy +McEwan +McFadden +McFadyen +McFarlan +McFarland +McFarlane +McFarlin +McFeeley +McFeeley Shipyard +McFetridge +McGaffigan Mill +McGann +McGarity +McGarvie +McGary +McGaw +McGee +McGeory +McGettigan +McGill +McGilvray +McGinn +McGinnis +McGirr +McGlenn +McGlinchey +McGovern +McGovney +McGowan +McGowen +McGrath +McGraw +McGregor +McGrue +McGuckian +McGuffey +McGuffie +McGuin +McGuiness +McGuinn +McGuinness +McGuire +McGuirk +McGurrin +McHarry Ranch +McHatton +McHenry +McHenry Service +McHenzie +McHugh +McIlvenie +McIlwraith +McIndoe +McInnis +McIntire +McIntosh +McIntyre +McIver +McKanna +McKay +McKean +McKee +McKeel +McKeever +McKell +McKellar +McKenchnie +McKendree +McKendrie +McKenna +McKennas Gulch Fire +McKenney +McKenny +McKenstry +McKenzie +McKenzie Point +McKeon +McKeown +McKern +McKernan +McKerrell +McKevitte +McKibben +McKibbin +McKillop +McKinley +McKinley Woods +McKinney +McKinnon +McKinsey +McKinsey Park +McKinstry +McKinzie +McKlintock +McKnew +McKnight +McKool +McKye +McLain +McLane +McLaren +McLaughan +McLaughlin +McLean +McLean Commons +McLean Corner +McLean Park +McLeans +McLearen +McLees +McLellan +McLennan +McLeod +McLester +McLoud +McMahon +McMane +McManus +McMaster +McMenemy +McMillan +McMillen +McMinn +McMullen +McMurdie +McMurdo +McMurry +McMurtry +McNab +McNabb +McNair +McNair Farms +McNamara +McNamee +McNaught +McNaughton +McNear +McNear Brickyard +McNeely +McNeil +McNeill +McNerney +McNichols +McNicoll +McNie +McNomee +McNultey +McOwen +McPeak +McPhee +McPherson +McQuade +McQuay +McRae +McRaes +McReynolds +McRoberts +McSherry +McTernan +McTucker +McVie +McWIlliam +McWalter +McWhirter +McWhorter +McWilliams +Mcadams +Mcafee +Mcalee +Mcallester +Mcandrew +Mcarthur +Mcauliffe +Mcavoy +Mcbride +Mccabe +Mccall +Mccallum +Mccalmont +Mccann Hill +Mccarrons +Mccarthy +Mcclelland +Mcclure +Mccoba +Mccoll +Mccordick +Mccormack +Mccormick +Mccoy +Mccracken +Mccraw +Mccue +Mcculloch +Mccullough +Mccusker +Mcdermott Farm +Mcdevitt +Mcdewell +Mcdonald +Mcdonald Farm +Mcdonna +Mcdonnell +Mcdougall +Mcdowell +Mcendy +Mcenelly +Mcfarlin +Mcgarvey +Mcgee +Mcgeoch +Mcgeough +Mcgill +Mcgovern +Mcgrane +Mcgrath +Mcgregor +Mcguire +Mchugh +Mchugh Farm +Mcintire +Mcintosh +Mcintyre +Mckay +Mckean +Mcken +Mckenn +Mckeon +Mckim +Mckinley +Mckinnon +Mcknight +Mckone +Mclains Woods +Mclaren +Mclean +Mcleavey +Mclellan +Mcleod +Mcmahon +Mcmenemy +Mcnair +Mcneill +Mcnulty +Mcphee +Mcpherson +Mcquade +Mcrayne Hill +Mctaggart +Mcvitty +Mea +Meacham +Meacher +Meachin +Mead +Mead House +Mead Point +Mead Pond +Mead Way Tollers +Meadbrook +Meadcroft +Meade +Meade Hill +Meade Village +Meader +Meades +Meadfield +Meadfoot +Meadgate +Meadhook +Meadhurst +Meadlands +Meado +Meadow +Meadow Bay +Meadow Bluff +Meadow Bridge +Meadow Brook +Meadow Chase +Meadow Club +Meadow Creek +Meadow Crest +Meadow Croft +Meadow Dam +Meadow Edge +Meadow Farm +Meadow Fence +Meadow Field +Meadow Gate +Meadow Glade +Meadow Glen +Meadow Green +Meadow Grove +Meadow Hall +Meadow Hill +Meadow Hunt +Meadow Lake +Meadow Lakes +Meadow Lark +Meadow Lily +Meadow Marsh +Meadow Oak +Meadow Oaks +Meadow Park +Meadow Pines +Meadow Pond +Meadow Ridge +Meadow Rose +Meadow Rue +Meadow Run +Meadow Sage +Meadow Shire +Meadow Side +Meadow Springs +Meadow Trail +Meadow Valley +Meadow View +Meadow Wood +Meadow Woods +Meadowbank +Meadowbridge +Meadowbrook +Meadowcot +Meadowcourt +Meadowcreek +Meadowcrest +Meadowcroft +Meadowdale +Meadowdale Beach +Meadowdown +Meadowfaire +Meadowfarm +Meadowfield +Meadowgate +Meadowglen +Meadowgreen +Meadowhaven +Meadowhawk +Meadowheights +Meadowhill +Meadowlake +Meadowland +Meadowlands +Meadowlark +Meadowlark Farm +Meadowlawn +Meadowmere +Meadowmist +Meadowmont +Meadowood +Meadowpond +Meadowridge +Meadowrill +Meadowrue +Meadows +Meadows Edge +Meadows Farm +Meadowsedge +Meadowshire +Meadowside +Meadowspring +Meadowstone +Meadowsweet +Meadowvale +Meadowview +Meadowvista +Meadowwood +Meadowwwod +Meads +Meadscroft +Meadvale +Meadview +Meadway +Meadway Bigwood +Meadway Devon +Meagan +Meager +Meagher +Meagill Rise Weston +Meakem +Meakin +Meal +Meal HIll +Mealer +Mealhouse +Meander +Meander Cove +Meandering +Meanderwood +Meanley +Meanwood +Meanwood Grove +Meanwood Valley +Mear +Mears +Meath +Meath Green +Mecan +Mecartney +Mecca +Mechanic +Mechanical +Mechanics +Mechanicsville Glen +Mechanicville +Meckes +Meckiff +Mecosta +Meda +Medalist +Medallion +Medanos +Medary +Medawar +Medbourne +Medburn +Medbury +Medcalf +Medcom +Medebridge +Medeiros +Meder +Medera +Medewood +Medfield +Medford +Medgar Evars +Medhurst +Media +Median +Mediati +Medical +Medical Center +Medical Foundation +Medicine Lake +Medicine Lk +Medicine Ridge +Medieval +Medill +Medina +Medina Lake +Medinah +Medinah Ridge +Medio +Mediterranean +Medlake +Medlar +Medlee +Medley +Medlin +Medlock +Medlow +Medora +Medoro +Medowview +Medtronic +Medusa +Medved +Medway +Medway Wharf +Medwick +Medwin +Mee +Meeds +Meeham +Meehan +Meehling +Meeker +Meekins +Meeks +Meela +Meem +Meer +Meerbrook +Meeres +Meeres Court +Meernaa +Meeson +Meester +Meeting +Meeting Camp +Meeting House +Meeting House Hill +Meeting Oak +Meeting Square +Meetinghouse +Meetinghouse Hill +Mefferd +Mefford +Meg +Meg Grace +Megalong +Megan +Megg +Meggan +Meggins +Meghan +Meghann +Megills Landing +Meginniss +Megonko +Mehaffey +Mehan +Meherrin +Mehetabel +Mehrhof +Mehrman +Mei +Meidl +Meiele +Meier +Meiggs +Meigh +Meigs +Mein +Meinzer +Meisel +Meisinger +Meisler +Meisner +Meiss +Meisser +Meister +Mekler +Meknight +Mel +Mel Mara +Meladee +Melaleuca +Melaleuka +Melandra +Melandra Castle +Melanie +Melba +Melboourne +Melborne +Melbourne +Melbrook +Melbrooke +Melbury +Melby +Melch +Melcher +Melchester +Melclare +Melcombe +Meldar +Meldon +Meldrum +Meldung +Melea +Melee +Melendez +Melendy +Meleny +Melfa +Melford +Melfort +Melgren +Melgund +Melham +Melhorn +Melia +Melillo +Melin +Melina +Melinda +Melior +Meliot +Melisa +Melise +Melissa +Melita +Melksham +Mell +Mellalieu +Melland +Mellbrook +Mellen +Mellenbrook +Meller +Mellersh Hill +Mellfell +Mellgren +Mellick +Mellin +Melling +Mellington +Mellish +Mellison +Melliss +Mellitus +Mello +Mello Hollow +Mello View +Mellodew +Mellodora +Mellon +Mellon Hollow +Mellor +Mellots +Mellott +Mellow +Mellowood +Mellows +Mellowstone +Mellus +Mellwood +Melne +Melnea Cass +Melnotte +Melo +Melody +Melody Hill +Melody Lake +Melolane +Melon +Melony +Melrose +Melrose Spring +Melsa +Melsomby +Melsted +Melstock +Melstone +Meltham +Melthorne +Melting Shadows +Melton +Melva +Melverley +Melvern +Melvich +Melvikoff +Melville +Melville Park +Melville Villas +Melvin +Melvina +Melvyn +Melwex +Melwood +Melwood Chapel +Melwood Park +Melyard +Melyncourt +Membrey +Memel +Memo +Memorex +Memorial +Memorial Beach +Memorial Heights +Memorial School +Memory +Memory la +Memphis +Mena +Menai +Menalto +Menangle +Menard +Menaugh +Menay +Mendakota +Mendel +Mendell +Mendelsohn +Mendelssohn +Mendelssohn Service +Menden Farm +Mendenhall +Mendes +Mendez +Mendfield +Mendham +Mending Wall +Mendip +Mendocino +Mendocino Creek +Mendoker +Mendon +Mendonca +Mendora +Mendosa +Mendota +Mendota Heights +Mendota Hts +Mendoza +Mendum +Mendy +Menemsha +Menges +Menhart +Menin +Menindee +Menini +Menk +Menker +Menlee +Menlo +Menlo Oaks +Menmarsh +Menne +Menno +Menocker +Menodora +Menoher +Menokin +Menominee +Menomini +Menon +Menotomy +Menotomy Rocks +Menotti +Menow +Menpes +Mensching +Menser +Mentana +Mente +Mentel +Menteth Point +Mentley +Mentmore +Mento +Menton +Mentone +Mentor +Mentzer +Menzel +Menzies +Meola +Meon +Meopham +Meota +Mepham +Meppel +Mera +Merano +Merbach +Merc +Mercantile +Mercator +Merced +Mercedes +Mercer +Mercer Terrace +Merceron +Mercers +Mercerwood +Merchant +Merchants +Merchiston +Mercia +Mercian +Mercie +Mercier +Mercury +Mercy +Mercy Center +Mercy Hollow +Mere +Merebank +Merebrook +Mereclough +Merecourt +Meredith +Meredyth +Merefield +Merehall +Mereheath +Mereil +Mereland +Mereline +Merelyn +Merelynne +Mereoak +Merepond +Meres +Meresborough +Mereside +Mereway +Merewood +Mereworth +Merfton +Merganser +Merger +Meriadoc +Meriam +Merian +Meric +Merical +Merida +Meridan +Meriden +Meridian +Meridian Hill +Meridian Lake +Meridian Park +Meridian Ridge +Meridith +Meriel +Merifield +Merikern +Merikoke +Meriland +Merilda +Merilee +Meriline +Merillon +Merilyn +Merinda +Merindah +Merino +Merion +Merioneth +Merit +Meritage +Meriton +Meritoria +Meritt +Merivale +Meriwether +Merk +Merkel +Merker +Merkle +Merkley +Merklin +Merle +Merleburgh +Merlen +Merlewood +Merley +Merlin +Merlindale +Merlini +Merlins +Merlo +Merlot +Merlyn +Merlyn Rees +Mermaid +Mermod +Merna +Mernagh +Merner +Mero +Merokee +Merold +Meron +Meroo +Merrall +Merrals Wood +Merrell +Merrenburn +Merri Oaks +Merriain +Merriam +Merribee +Merribrook +Merrick +Merricks +Merricourt +Merridale +Merridan +Merriden +Merridong +Merrie Mill +Merrie Ridge +Merriebrook +Merriewood +Merrifield +Merrifields +Merriford +Merrilands +Merrilee +Merrill +Merrill New +Merrill Service +Merrill Woods +Merrillon +Merrillville +Merrilong +Merrimac +Merrimac River +Merrimack +Merriman +Merriments +Merrimount +Merrina +Merrington +Merrinot +Merrion +Merris +Merrison +Merrit +Merrithew +Merriton +Merritt +Merritt Farm +Merritt Point +Merritton +Merritts +Merrivale +Merriville +Merriwa +Merriweather +Merriwether +Merriwind +Merriwood +Merrow +Merrow Common +Merry +Merry Hill +Merry Hills +Merry Moppet +Merry Oaks +Merry Wood +Merrybower +Merryboys +Merrybrook +Merrydale +Merrydown +Merryfield +Merryhill +Merryhills +Merryknoll +Merrylands +Merryle +Merryman +Merrymans +Merrymeeting +Merrymount +Merryoaks +Merryrest +Merryvale +Merryville Farm +Merrywood +Mersea +Merseles +Merselis +Mersereau +Mersey +Mersey Bank +Merseybank +Mersham +Merstham +Merstham High +Merston +Mert +Merten +Mertens +Mertford +Merton +Merton High +Merttins +Mertz +Merust +Mervan +Merville +Mervin +Mervyn +Merwell +Merwin +Merwood +Mery +Meryl +Meryla +Meryll +Mesa +Mesa Buena +Mesa Creek +Mesa Grande +Mesa Oak +Mesa Ridge +Mesa Verde +Mesa Verdes +Mesabi +Mesaview +Mescalero +Meseda +Meserole +Meserve +Meshaka +Mesnefield +Mesquite +Mess +Messaline +Messenger +Messent +Messer +Messervy +Messiah +Messick +Messier +Messina +Messiner +Messines +Messinger +Messiter +Messler +Meta +Metacomet +Metacomett +Metawa +Metcalf +Metcalfe +Metella +Meteor +Methane +Metheun +Methilhaven +Methley +Methuen +Methven +Methwold +Metispa +Metlars +Metrapolitan +Metro +Metro Access +Metro Center +Metro Park +Metro Plaza +Metro Vista +Metroplex +Metropolitan +Metropolitan Church +Metropolitan Grove +Metrotech +Metson +Metsons +Mettawa +Mettawa Woods +Mettel +Metten +Metters +Mettler +Metuchen +Metuxen +Metz +Metzerott +Metzgar +Metzler +Meucci +Meudon +Meurants +Meuret +Meurilee +Mevan +Mevril +Mexborough +Mexfield +Mexico +Meyel +Meyenberg +Meyer +Meyer Point +Meyers +Meyers Grade +Meyersville +Meymott +Meyn +Meynell +Meyrick +Mezes +Mezmer +Mezzamonte +Mezzine +Mgm +Mhp +Mia +Mia Mia +Miall +Miamba +Miami +Mianga +Mianus +Miara +Mica +Micawber +Mich Bluff +Michael +Michael Canlis +Michael F +Michael Faraday +Michael Frey +Michael John +Michael Mack +Michael Mark +Michael McGuire +Michael Point +Michael Robert +Michael William +Michaelangelo +Michaele +Michaels +Michaelson +Michale +Michalik +Michaud +Michaux +Micheal +Michealangelo +Michel +Michelangelo +Michele +Michelham +Michelini +Michell +Michelle +Michelline +Michels +Michels Dale +Michelson +Michener +Michie +Michigamme +Michigan +Michigan City +Michille +Micholls +Michon +Micik +Mickelson +Micken +Mickens +Mickey +Micklands +Mickle +Micklefield +Mickleham +Micklehurst +Micklejohn +Micklem +Micklethwaite +Mickley +Miclands +Micro +Microlab +Micron +Mid +Mid Atlantic +Mid Cities +Mid Dural +Mid Oaks +Mid Park +Midan +Midbrook +Midchester +Midcrest +Middagh +Middale +Middaugh +Midday +Middelton +Midden +Middle +Middle Bay +Middle Bourne +Middle Brook +Middle Burdell Fire +Middle Church +Middle Creek +Middle Cross +Middle Dunstable +Middle Ellen +Middle Express +Middle Fork +Middle Golf +Middle Harbor +Middle Harbour +Middle Head +Middle Hollow +Middle Island +Middle Loop +Middle Meadow +Middle Memory +Middle Mill +Middle Neck +Middle Opening +Middle Oxford +Middle Park +Middle Pinecreek +Middle Point +Middle Ridge +Middle Rincon +Middle River +Middle Ruddings +Middle Run +Middle School +Middle Temple +Middle Town +Middle Two Rock +Middle Valley +Middle park +Middleberry +Middleboro +Middlebourne +Middlebridge +Middlebrook +Middleburg +Middlebury +Middleby +Middlecamp +Middlecoff +Middlecot +Middlecreek +Middlecroft +Middlefield +Middleford +Middlefork +Middlegate +Middlegate Church +Middlegate Kings +Middlegreen +Middleham +Middlehope +Middlehurst +Middlemead +Middlemiss +Middlemoor +Middleneck +Middlesborough +Middleset +Middlesex +Middlesex Canal +Middlesex Center +Middlestone +Middleton +Middleton Common +Middleton Farm +Middleton Hall +Middleton Old +Middleton Park +Middleton Ridge +Middleton Ring +Middleton Thorpe +Middleton Tract +Middleton Way +Middletown +Middletown Lincroft +Middletree +Middletune +Middlevale +Middleville +Middlewich +Middlewood +Middough +Midelton +Midfarm +Midfield +Midfields +Midford +Midge +Midge Hall +Midgely +Midgley +Midgrove +Midhill +Midholm +Midhope +Midhurst +Midian +Midiron +Midland +Midland Grove +Midland Hills +Midlane +Midlawn +Midledge +Midleton +Midline +Midlothian +Midmoor +Midnight +Midpine +Midra +Midridge +Midsection +Midship +Midson +Midstate +Midstone +Midstrath +Midsummer +Midtown +Midtown Bridge +Midvale +Midvale Mountain +Midville +Midway +Midway Branch +Midway Ranch +Midwest +Midwick +Midwood +Mierscourt +Mifflin +Mifsud +Miggins +Mighall +Mighell +Mighty Oak +Mignin +Mignon +Mignot +Migration +Miguel +Miguelito +Migues Mountain +Miilbank +Mika +Mikan +Mikasa +Mikayla +Mike +Mike Collins +Mike Shapiro +Mikel +Mikell +Mikesell +Mikkelsen +Miko +Mil Mil +Milagra +Milan +Miland +Milandy +Milani +Milanna +Milano +Milba +Milbank +Milbar +Milbeck +Milbern +Milbert +Milborne +Milboro +Milbourne +Milbrae +Milbrook +Milburn +Milbury +Milch +Milch Hill +Milcote +Mildam +Milden +Mildenhall +Mildmay +Mildon +Mildred +Mildreds +Mildura +Mile +Mile End +Mile Hill +Mile House +Mile Oak +Mile Pond +Mile Square +Mile Tree +Milebrook +Milebush +Mileham +Milemore +Milepost +Miles +Miles Gray +Miles Hill +Miles Keene +Miles River +Milestone +Milestone Center +Milestone Manor +Mileview +Miley +Milfan +Milfoil +Milford +Milford Haven +Milford Mill +Milgate +Milgeo +Milguy +Milham +Milik +Miliken +Milita +Military +Militia +Miljevich +Milk +Milk Farm +Milking +Milkingpen +Milksey +Milkshake +Milkweed +Milkwood +Mill +Mill Bay +Mill Branch +Mill Brook +Mill Brow +Mill Chase +Mill Church +Mill Copse +Mill Court +Mill Creek +Mill Cross +Mill Crossing +Mill Dam +Mill End +Mill Farm +Mill Fold +Mill Forest +Mill Gate +Mill Glen +Mill Green +Mill Harbor +Mill Hill +Mill Hill Page +Mill House +Mill Meadows +Mill Park +Mill Pit +Mill Plat +Mill Pond +Mill Pond Point +Mill Pond Valley +Mill Race +Mill Race Estates +Mill River +Mill Run +Mill Site +Mill Spring +Mill Springs +Mill Swamp +Mill Trail +Mill View +Mill Vue +Mill Wheel +Millais +Milland +Millar +Millard +Millay +Millbank +Millbeck +Millboard +Millbottom +Millbourne +Millbrae +Millbridge +Millbrook +Millburn +Millburne +Millbury +Millcreek +Millcrest +Millcroft +Milldale +Millen +Milleninum +Millenium +Millennium +Miller +Miller Circle +Miller Creek +Miller Cut Off +Miller Fall +Miller Farm +Miller Heights +Miller Hill +Miller Ridge +Miller View +Millerick +Milleridge +Millers +Millers Green +Millers Island +Millersburg +Millersville +Millet +Millett +Milley +Millfarm +Millfield +Millfields +Millford +Millfordhope +Millgarth +Millgate +Millgrove +Millham +Millhaven +Millhead +Millhouse +Millibank +Millicent +Millich +Millie +Millie May +Milligan +Milliken +Milliken Creek +Millikens Bend +Milling +Millington +Millington Hall +Million +Million Penny +Milliston +Millman +Millmarsh +Millmont +Millns +Millom +Millpond +Millponds +Millrace +Millrich +Millridge +Millrose +Mills +Mills Choice +Mills Corner +Mills Farm +Mills Hill +Mills Orchard +Mills Pond +Millsbrae +Millsdale +Millsgate +Millshaw +Millshire +Millshot +Millside +Millspring +Millstead +Millston +Millstone +Millstone Hill +Millstream +Millstream Service +Millsview +Millthorpe +Millthwait +Millton +Milltown +Milltown Landing +Millvale +Millview +Millville +Millwall Dock +Millwheel +Millwood +Millwood Pond +Millwoof +Millwright +Millyan +Milman +Milmans +Milmont +Miln +Milnbank +Milne +Milne Cove +Milner +Milnes +Milnrow +Milnthorpe +Milnwood +Milo +Milo Candini +Milosh +Milot +Milparinka +Milray +Milrose +Milroy +Milroy Crest +Milsom +Milson +Milsop +Milstead +Milsted +Miltiades +Milton +Milton Court +Milton Grant +Milton Hall +Milton High +Milton Hill +Milton I Ross +Milton Manor +Milton Mount +Milton Regis High +Miltonia +Miltsin +Milva +Milvain +Milvale +Milverton +Milvia +Milvia Bicycle +Milwain +Milward +Milwaukee +Milway +Milwood +Mima +Mimas +Mimi +Mimie Anderson +Mimms +Mimms Hall +Mimon +Mimosa +Mimosa Cove +Mimram +Mims +Mimsey +Mina +Mina Rosa +Minaglia +Minahen +Minaker +Minard +Minardi +Minaret +Minarto +Minas +Minburn +Minchen +Minchens +Minchin +Minchinbury +Mincing +Mindanao +Mindar +Mindaribba +Mindarie +Minden +Mindleheim +Mindona +Mindoro +Mindres +Mindy +Mine +Mine Bank +Mine Brook +Mine Ridge +Mine Run +Minea +Minear +Minebrook +Minehan +Minehead +Minehurst +Mineola +Miner +Mineral +Mineral Spring +Mineral Springs +Minert +Minerva +Mines +Minet +Minetta +Minette +Minford +Ming +Minga +Mingo +Mini +Miniature +Minidoka +Minihan +Minimall +Minimbah +Minion +Minisink +Minister +Ministerial +Minjon +Mink +Mink Hollow +Mink Meadows +Mink Trap +Minkara +Minkler +Minley +Minmai +Minna +Minnamorra +Minnamurra +Minnaqua +Minneapolis +Minnear +Minnehaha +Minnehaha Academy +Minneola +Minnesota +Minnesota Bluffs +Minnetonka +Minnetonka Highlands +Minnetonka Industrial +Minnewashta Woods +Minnewaska +Minnick +Minnie +Minnieford +Minnieville +Minnisink +Minnow Creek +Minns +Minoan +Minoca +Minocqua +Minola +Minoma +Minor +Minor Hill +Minorca +Minoru +Minoso +Minot +Minot Light +Minots +Minsden +Minshull +Minson +Minster +Minsterley +Minstrel Tune +Minstrell +Mint +Mint Julip +Minta +Mintaro +Mintching Wood +Minter +Minterne +Minthaven +Minthorne +Minto +Minton +Minturn +Mintwood +Mintz +Minue +Minuet +Minute +Minute Arms +Minute Man +Minuteman +Minutemen +Minya +Minyip +Mionske +Miowera +Mipaty +Mir Mirou +Mira +Mira Flores +Mira Lagos +Mira Loma +Mira Mesa +Mira Vista +Mira del Rio +Mirabeau +Mirabel +Mirabella +Mirabelle +Miracle +Miracle Mountain +Mirada +Miradera +Miradero +Mirador +Miraflores +Mirage +Miraggio +Miralo +Miramar +Miramar Park +Miramare +Miramonte +Miramontes +Miramontes Point +Miramount +Miranda +Miranda Green +Mirandy +Mirante +Mirasol +Mirassou +Miravalle +Mire +Mireille +Mireval +Mirfield +Miriam +Mirimar +Mirimichi +Mirin +Mirko +Mirkwood +Mirmar +Miro +Miroballi +Mirosa +Mirrabooka +Mirral +Mirrasou +Mirrielees +Mirrool +Mirror +Mirror Lake +Mirror Lakes +Mirror Pond +Mirschel +Miry +Mirycarr +Misbourne +Misbrooks Green +Miscoe Brook +Miscoe Hill +Mise +Mishawum +Miskin +Miss Anne +Missden +Missenden +Mission +Mission Bay +Mission Bell +Mission Blue +Mission Cielo +Mission College +Mission Creek +Mission Falls +Mission Glen +Mission Greens +Mission Hills +Mission Park +Mission Ridge +Mission Rock +Mission Square +Mission Trail +Mission Valley +Mission View +Mission Vineyard +Missionary +Mississippi +Mississippi Bar +Mississippi River +Missouri +Mist +Mist Trail +Mister +Mistflower +Misthaven +Mistic Harbour +Mistle +Mistler +Mistletoe +Mistletoe Spring +Mistley +Mistral +Mistress +Mistwood +Misty +Misty Brook +Misty Creek +Misty Dawn +Misty Falls +Misty Glade +Misty Glen +Misty Hill +Misty Hills +Misty Hollow +Misty Knoll +Misty Meadow +Misty Morning +Misty Mountain +Misty Ridge +Misty Woods +Mistyvale +Miswell +Mitala +Mitch Snyder +Mitcham +Mitchel +Mitchell +Mitchell Canyon +Mitchell Manor +Mitchell Ridge +Mitchells +Mitchells Chance +Mitchellville +Mitchie +Mitchison +Mitchler +Mitchley +Mitchs +Mitchum +Mitey Mite +Mitford +Mithering +Mitichell +Mitlon +Mitra +Mitre +Mitris +Mitscher +Mittabah +Mittel +Mitten +Mittendorf +Mittiamo +Mittman +Mitton +Mitumba +Mitzi +Mitzy +Mivo +Miwok +Mix Canyon +Mixes Hill +Mixnams +Mixon Brook +Miyuki +Mizar +Mizpah +Mizzen +Mliss +Moab +Moak +Moala +Moani +Moat +Moat Farm +Moat Hall +Moate +Moats +Mobberley +Mobbs +Mobeck +Moberly +Mobile +Mobley +Mobley Farm +Mobrey +Mobus +Mocabee +Mocassin +Mocatta +Moccasin +Moccasin Hill +Mocha +Mochel +Mocho +Mocine +Mock +Mockbeggar +Mocking Bird +Mockingbird +Mockingbird Hill +Mockingbird Ridge +Mockley Point +Mockridge +Moclips +Mococo +Moczygemba +Modaff +Modder +Moddison +Mode Wheel +Model +Model Farm +Model Farms +Modena +Modern Ice +Moders +Modesto +Modisto +Modoc +Modred +Modular +Modzelewski +Moe +Moehring +Moelfre +Moeller +Moen +Moeser +Moessner +Moffat +Moffats +Moffatt +Moffatts +Moffet +Moffett +Moffett Forge +Moffett Park +Moffitt +Moffitts +Mogador +Mogan +Mogden +Moggie +Mogila +Mohave +Mohawk +Mohawk River +Mohegan +Mohican +Mohican Park +Mohmmad Khan +Mohovy +Mohr +Mohwawk +Moir +Moira +Moiso +Moison +Moitoza +Moiyas +Mojave +Mokelumne +Mokelumne River +Mokelumne School +Mokema +Mokena +Mokera +Molair +Molaskey +Molasky +Molasses Run +Mold +Mole +Mole Hall +Mole Hill Green +Molehill Green +Molember +Moles +Molesey +Molesford +Molesworth +Molimo +Molina +Molinari +Molinaro +Molinart +Moline +Molino +Molino Reservoir +Molise +Molitas +Molitor +Moll +Mollands +Molle +Moller +Moller Ranch +Mollie +Mollison +Molloy +Molly +Molly Berry +Molly Millars +Mollymook +Molnar +Moloney +Molong +Molonglo +Molrams +Molteg +Molteno +Molter +Molton +Moltzen +Moluccana +Moly +Molyneaux +Molyneux +Momar +Mombri +Mommouth +Mon +Mona +Mona Park +Mona Vale +Mona Woods +Monacan +Monachus +Monaco +Monadnock +Monaghan +Monahan +Monaldi +Monalee +Monaltrie +Monamie +Monan +Monarch +Monarch Birch +Monarch Oak +Monarch Ridge +Monarch Vista +Monard +Monardo +Monaro +Monart +Monash +Monastary +Monastery +Monatiquot +Monaton +Moncado +Monck +Monckton +Moncktons +Monclar +Moncrief +Moncrieff +Moncton +Moncur +Moncure +Mond +Monda +Mondamin +Monday +Mondelli +Mondigo +Mondovi +Mondrian +Monee +Monega +Monegra +Monestary +Monet +Monetary +Moneterrey +Monetta +Monette +Money +Money Ash +Money Hill +Money Hole +Monfarville +Monferino +Monfort +Monfredo +Mongers +Mongomery +Monhegan +Monica +Monie +Monika +Monins +Monique +Monitor +Monivea +Monix +Monk +Monk Bridge +Monk Sherborne +Monkdowns +Monkery +Monkey Island +Monkfrith +Monkhams +Monkmead +Monks +Monks Hill +Monks Ings +Monksdale +Monksdown +Monksford +Monkswell +Monkswick +Monkswood +Monkton +Monktons +Monkville +Monkwood +Monmouth +Monn +Monna +Monnens +Monnett +Monnier +Monnow +Mono +Mono Lake +Monocacy +Monoco +Monogram +Monomeeth +Monomoy +Monona +Monongahela +Monoosnock +Monoponsan +Monowood +Monponset +Monponsett +Monro +Monroe +Monroe Duvall +Monroe Manor +Monrovia +Mons +Monsal +Monsall +Monsen +Monserat +Monserra +Monsignor Rooney +Monson +Mont +Mont Clare +Mont Croix +Mont Fern +Mont Sec +Montacute +Montafia +Montagu +Montague +Montair +Montaire +Montalban +Montalt +Montalto +Montalvin +Montalvo +Montammy +Montana +Montara +Montaro +Montauban +Montauk +Montaup +Montayne +Montazah +Montbatten +Montbelle +Montcalm +Montcastle +Montclair +Montclaire +Montclare +Montclare Lake +Montcourse +Montcurve +Monte +Monte Alegre +Monte Brazil +Monte Buena +Monte Carlo +Monte Cimas +Monte Cresta +Monte Cristo +Monte Linda +Monte Mar +Monte Maria +Monte Park +Monte Rio +Monte Rosa +Monte Sereno +Monte Sunset +Monte Veda +Monte Verde +Monte Villa +Monte Vista +Monte Vista Ridge +Monteagle +Montebello +Montecello +Montecillo +Montecito +Montecito Meadow +Monteclair +Montecrest +Montee +Montefiore +Monteforte +Montefrio +Montega +Montego +Montehill +Monteira +Monteith +Montelegre +Montelena +Montell +Montello +Montem +Montemura +Montenotte +Monteray +Monterery +Monterey +Monterey Estates +Monterey Frontage +Montern +Montero +Monterra +Monterrey +Montery +Montesano +Monteswood +Monteva +Montevalle +Montevarchi +Monteverde +Montevideo +Montevina +Montevista +Montewood +Montez +Montezuma +Montezuma Hills +Montfern +Montfield +Montford +Montfort +Montgomerie +Montgomery +Montgomery Run +Montgomery Village +Montgue +Montholme +Montibello +Monticelli +Monticello +Montiero +Montieth +Montilio +Montilla +Montmarte +Montmorenci +Montmorency +Montmouth +Montoclair +Monton +Montonfields +Montore +Montoro +Montour +Montoya +Montpelier +Montpellior +Montreal +Montrell +Montresor +Montridge +Montrose +Montross +Montserrat +Montvale +Montview +Montville +Monty +Montyville +Monument +Monument Corner +Monument Farm +Monument Hill +Monumental +Monush +Monycrower +Monza +Monzal +Mooculta +Moodie +Moodkee +Moody +Moody Slough +Mooer +Mooers +Mooki +Moolah +Moolanda +Moombara +Moomin +Moon +Moon Beam +Moon Hall +Moon Hill +Moon Lake +Moon Meadow +Moon Mountain +Moon Penny +Moon Point +Moon Ridge +Moon Shadow +Moon Valley Ranch +Moona +Moonachie +Moonah +Moonbeam +Moonbi +Moonbie +Moonbria +Moondani +Moondara +Moonedge +Moonen Bay +Mooney +Mooneys +Moonglow +Moonlight +Moonlight Hill +Moonlite +Moonraker +Moonrider +Moonrise +Moons +Moonsail +Moonsails +Moonshine +Moonstone +Moontree +Moor +Moor Allerton +Moor End +Moor Flatts +Moor Grange +Moor Green +Moor Hall +Moor Hey +Moor Knoll +Moor Mead +Moor Mill +Moor Park +Moor Side +Moora +Mooramba +Mooramie +Moorbottom +Moorbridge +Moorbrook +Moorby +Moorcroft +Moordale +Moore +Moore Creek +Moore Park +Moore Ranch +Moorebank +Mooredge +Moorefield +Moorefields +Moorehead +Mooreland +Moorend +Moores +Moores Hill +Moores Plains +Mooresfield +Mooreview +Moorfield +Moorfoot +Moorgate +Moorhayes +Moorhead +Moorheart Ridge +Moorhen +Moorhey +Moorhill +Moorhills +Moorhouse +Moorhurst +Moorilla +Moorina +Mooring +Moorings +Moorland +Moorlands +Moormead +Moormill +Moorpark +Moors +Moorsholme +Moorside +Moorsley +Moorsom +Moorton +Moortown King +Moorview +Moorville +Moorwood +Moos +Moose +Moose Hill +Moosehead +Mooseheart +Moosepac +Moosewood +Mope +Mopsick +Mora +Mora Glen +Morab +Morada +Moraga +Moraga Valley +Morahapa +Moraine +Moraine Hill +Moraine Hills +Moran +Morandi +Morani +Morano +Morant +Morants Court +Morar +Morat +Moravian +Moray +Morazan +Morcambe Bay +Morcom +Mordaunt +Mordecai Lincoln +Morden +Morden Hall +Morden Wharf +Mordente +Mordon +Mordor +Mordred +More +Morea +Moreau +Morecambe +Morecroft +Moree +Morehead +Morehouse +Moreing +Morela +Moreland +Moreland Green +Morelands +Morell +Morella +Morelli +Morelli Vista +Morello +Morello Heights +Morello Hills +Morello Park +Morelos +Morely +Moremead +Morement +Moren +Morenci +Morency +Moreno +Mores +Moresby +Moresdale +Moretaine +Moreton +Moreton End +Moretti +Morettis Ranch +Moretto +Morewood +Morewood Oaks +Morey +Morford +Morgal +Morgan +Morgan Days +Morgan Farm +Morgan Hill +Morgan Territory +Morgan Valley +Morgana +Morgans +Morgans Ridge +Morganston +Morgantine +Morganville +Morgaston +Mori +Moriac +Moriatry +Morice +Moriconi +Morie +Morieux +Moril +Morillon +Morin +Morin Heights +Morinda +Moring +Morini +Moris Point +Morison +Morisse +Moritz +Morken +Morlan +Morland +Morlands +Morley +Morley Clough +Morley Peel +Morley Wynyard +Morleys +Morlock +Morlot +Mormon +Mormon Island +Morna +Mornant +Mornigside +Morning +Morning Brook +Morning Dale +Morning Dew +Morning Dove +Morning Field +Morning Gate +Morning Glen +Morning Glory +Morning Meadow +Morning Mist +Morning Ride +Morning Spring +Morning Sun +Morning Time +Morning View +Morning Watch +Morning Wind +Morningbird +Morningdale +Morninghome +Morninglo +Morningmist +Morningside +Morningside Mountain +Morningstar +Mornington +Morningview +Morningwood +Moro +Morobe +Morocco +Morona +Moroney +Morotai +Morpeth +Morphett +Morpheus +Morphew +Morphou +Morrell +Morrell Cutoff +Morrell Mill +Morrene +Morrice +Morrie +Morril +Morrill +Morrington +Morris +Morris Fold +Morris Green +Morris Hill +Morris Park +Morris Pesin +Morris Phelps +Morris Plains +Morris Ranch +Morris Tongue +Morrisey +Morrish +Morrison +Morrison Canyon +Morrison Creek +Morrisse +Morrissee +Morrissette +Morrissey +Morrissey Service +Morristown +Morrisworth +Morritt +Morro +Morro Bay +Morro Vista +Morrow +Morrowfield +Morry +Mors +Morse +Morse Farm +Morse Glen +Morse Lake +Morse Lakes +Morseland +Morsemere +Morses Pond +Morsetown +Morshead +Morson +Mort +Mortain +Mortar +Morten +Mortensen +Mortenson +Morteyne +Mortfield +Mortham +Morthland +Mortimer +Mortimer Lewis +Mortimers +Mortlake +Mortlake High +Mortley +Morton +Morton Davis +Morton Hall +Morton Hill +Morton Park +Mortono +Mortonsberry +Mortuary +Moruben +Moruya +Morva +Morval +Morvan +Morvem +Morven +Morven Park +Morville +Morwell +Morwick +Morwood +Moryan +Mosaic +Mosby +Mosby Hollow +Moscato +Mosco +Moscow +Moseby +Mosedale +Mosefan +Mosegard +Mosel +Moselden +Moseldene +Moseley +Moseley Wood +Moselle +Mosely +Moser +Moses +Moses Hill +Moses Plat +Mosgrove +Mosher +Moshier +Mosholu +Mosier +Moslee +Mosley +Mosley Common +Mosman +Moss +Moss Bank +Moss Bower +Moss Bridge +Moss Brook +Moss Brow +Moss Garden +Moss Glen +Moss Grange +Moss Hall +Moss Hey +Moss Hill +Moss Hollow +Moss House +Moss Landing +Moss Oak +Moss Park +Moss Point +Moss Ranch +Moss Rock +Moss Side +Moss Vale +Moss Valley +Moss View +Mossbank +Mossberry +Mossbray +Mossbrook +Mossbury +Mosscreek +Mossdale +Mossfield +Mossford +Mossgate +Mossgiel +Mossglen +Mossgrove +Mossland +Mosslea +Mossley +Mossman +Mossmere +Mosso +Mossrock +Mosswood +Mossy Bank +Mossy Creek +Mossy Oak +Mossy Rock +Mostika +Moston +Moston Bank +Mostyn +Mosyer +Mota +Motcomb +Motcombe +Motcombe Farm +Mote +Motel +Mother Gaston +Mother Julia +Motherwell +Motley +Motney Hill +Motor +Motor City +Mott +Motta +Mottershead +Mottingham +Mottins +Mottisfont +Mottram +Mottrom +Motts +Motts Hill +Mouacdie +Mough +Moul +Mouldsworth +Moulin +Moulsham +Moulsham Copse +Moulsham Hall +Moulton +Moulton Park +Moultrie +Mounce +Mouncey +Mound +Mound View +Moundfield +Mounds +Moundsview +Moundview +Mounslow +Mount +Mount Zion +Mount Air +Mount Airey +Mount Airy +Mount Alventine +Mount Alvernia +Mount Annan +Mount Ararat +Mount Ash +Mount Auburn +Mount Bache +Mount Baker +Mount Bethel +Mount Blanc +Mount Blue +Mount Bovers +Mount Calvary +Mount Carmel +Mount Carmel Cemetery +Mount Carriage +Mount Castle +Mount Cedar +Mount Crest +Mount Culver +Mount Curve +Mount Daniel +Mount Darwin +Mount Day +Mount Dell +Mount Dew +Mount Diablo +Mount Diablo Scenic +Mount Duncan +Mount Eagle +Mount Echo +Mount Eden +Mount Edgcumbe +Mount Elam +Mount Ephraim +Mount Erin +Mount Etna +Mount Everest +Mount Everett +Mount Feake +Mount Foraker +Mount Forest +Mount Frazier +Mount George +Mount Gilead +Mount Glen +Mount Globe +Mount Grace +Mount Grove +Mount Hamilton +Mount Hamilton View +Mount Harmony +Mount Harry +Mount Hebron +Mount Henry +Mount Hercules +Mount Herman +Mount Hermon +Mount High +Mount Hill +Mount Holly +Mount Holyoke +Mount Hood +Mount Hope +Mount Horeb +Mount Ida +Mount Isabel +Mount Jackson Lockout +Mount Jackson Resort +Mount Jackson Trail +Mount Jasper +Mount Joy +Mount Kemble +Mount Kennedy +Mount Kenya +Mount King +Mount Kisco +Mount Lassen +Mount Laurel +Mount Lebanon +Mount Leneve +Mount Lewis +Mount Locust +Mount Logan +Mount Lyell +Mount Maclure +Mount Madonna +Mount Mc Kinley +Mount McKinley +Mount Misery +Mount Morris +Mount Nebo +Mount Nod +Mount Normandale +Mount Oak +Mount Olive +Mount Oliveira +Mount Olivet +Mount Olney +Mount Olympus +Mount Oso +Mount Palomar +Mount Park +Mount Paul +Mount Peller +Mount Pisgah +Mount Pleasant +Mount Pleasent +Mount Preston +Mount Prieta +Mount Prospect +Mount Quail +Mount Rainier +Mount Ridge +Mount Ridgeway +Mount Rock +Mount Royal +Mount Rushmore +Mount Saint Charles +Mount Saint Helena +Mount Shasta +Mount Skip +Mount Skirgo +Mount Sugarloaf +Mount Sunapee +Mount Tabor +Mount Tamalpais +Mount Taylor +Mount Tenaya +Mount Thabor +Mount Tom +Mount Umunhum +Mount Veeder +Mount Vernon +Mount Vickery +Mount View +Mount Vision +Mount Vista +Mount Wachusett +Mount Walley +Mount Washington +Mount Wayte +Mount Wellington +Mount Weske +Mount Whitney +Mount William +Mount Wilson +Mount Zephyr +Mount Zion +Mountabatten +Mountain +Mountain Ash +Mountain Bell +Mountain Canyon +Mountain Charlie +Mountain Dump +Mountain Estate +Mountain Gate +Mountain Heights +Mountain Home +Mountain Home Ranch +Mountain House +Mountain Lakes +Mountain Laurel +Mountain Lion +Mountain Meadow +Mountain Mist +Mountain Park +Mountain Quail +Mountain Ridge +Mountain Rock +Mountain Shadows +Mountain Spring +Mountain Springs +Mountain Top +Mountain Trails +Mountain Valley +Mountain View +Mountain View Ranch +Mountain Vista +Mountain Wood +Mountaindale +Mountains +Mountains Farm +Mountainside +Mountainview +Mountaire +Mountbatten +Mountbel +Mounters +Mountfield +Mountfitchet +Mountford +Mountfort +Mountgrove +Mounthaven +Mounthill +Mountnessing +Mounts +Mounts Pond +Mountview +Mountville +Mountwood +Moura +Mourfield +Mourning Dove +Mousehill +Moushill +Mouth of Monocacy +Moverly +Movers +Movida +Movie +Moville +Moving Water +Mow Halls +Mowatt +Mowbray +Mowden Hall +Mower +Mowera +Mowla +Mowle +Mowlem +Mowll +Mowry +Mowry School +Moxham +Moxhams +Moxley +Moxleys Ford +Moxom +Moxon +Moyarta +Moyengully +Moyer +Moyers +Moyes +Moylan +Moyne +Moynihan +Moyse +Moyser +Mozart +Mozden +Mrack +Mrs Macquarie +Msgr Jacobbe +Msgr. Shea +Mt Calvert +Mt Curve +Mt Hope +Mt Pisgah Farm +Mt Pleasant +Mt Prospect +Mt Sizer +Mt Vernon +Mt. Elam +Mt. Hope +Mt. Umunhum +Mt. Vernon +Mucciarone +Muccillo +Muchelney +Muchmore +Muckelemi +Mucking Hall +Muckingford +Mucklehany +Mud +Mud Gulley +Mud Lake +Mudd +Muddy +Muddy Branch +Muddy Pond +Mudge +Mudhurst +Mudies +Muehl +Muela +Mueller +Muender +Muerer +Muffets +Muffit +Muggeridge +Mugleston +Mugo +Muhammad Ali +Muhlenhardt +Muir +Muir Woods +Muirdown +Muirfield +Muirhead +Muirkirk +Muirkirk Meadows +Muirwood +Mukerji +Mulberry +Mulberry Bottom +Mulberry E +Mulberry Hill +Mulberry Mount +Mulberry Wood +Mulbring +Mulcahy +Mulcare +Mulcerns +Mulders +Muldoon +Muldrow +Mule +Mule Deer +Mule Lovers +Mulford +Mulga +Mulgoa +Mulgrave +Mulgray +Mulguy +Mulhall +Mulherin +Mulhern +Mulheron +Mulholland +Mulica +Muliner +Mulkern +Mull +Mullacre +Mullane +Mullarkey +Mullberry +Mullbrook +Mullen +Mullenderree +Mullens +Muller +Mulligan +Mullikin +Mullin +Mullins +Mullion +Mullon +Mulloy +Mullumbimby +Mulpus +Mulqueeney +Mulqueeny +Mulready +Mulroy +Mulry +Multiplex +Multon +Mulvey +Mulvihill +Mulvoy +Mulwaree +Mulyan +Mumford +Mums +Mun Kwok +Muncaster +Muncaster Mill +Munces +Muncey +Munch +Muncie +Muncy +Mund +Munda +Mundakal +Mundamatta +Mundania +Mundarrah +Munday +Mundays Borough +Munden +Munderah +Mundesley +Mundford +Mundin +Mundon +Mundowi +Mundy +Munford +Mungarra +Munger +Munger Farm +Mungerie +Mungo Park +Munhall +Munich +Municipal +Muniz Ranch +Munko +Munmorah +Munmurra +Munn +Munni +Munnings +Munnion +Munns +Munnumba +Munoora +Munro +Munroe +Munroe Hill +Munsee +Munsey +Munsgore +Munson +Munson Hill +Munstad +Munstead View +Munster +Munsterburg +Munter +Munton +Munyan +Munyang +Munz +Muraban +Mural +Muraoka +Murata +Murcer +Murchia +Murchison +Murcia +Murco Mill +Murcott +Murdoch +Murdock +Murdstone +Murfield +Murguia +Muricatia +Muriel +Murieston +Murieta +Murieta South +Murietta +Murillo +Murkand +Murlagan +Murlett +Murley +Murmansk +Murnane +Muroc Lake +Muron +Muroney +Murphy +Murphy Crossing +Murphy Hill +Murphy Lake +Murphy Springs +Murphys +Murrabin +Murrain +Murralong +Murrami +Murrandah +Murray +Murray Farm +Murray Hill +Murray Hulbert +Murray Park +Murray Point +Murray Ranch +Murray Ranch Access +Murray Rose +Murrays +Murre +Murrel Hill +Murrell +Murrells +Murrey +Murrieta +Murrin +Murriverie +Murrobah +Murrphy +Murrua +Murrumbidgee +Murrumburrah +Murry +Murry Hill +Mursley +Murston +Murtha +Murthering +Murton +Murtwell +Muru +Murvey +Murwillubah +Murwillumbah +Murwood +Murylu +Musante +Musard +Musbury +Muscat +Muscatatuck +Muschamp +Muscharry +Muscovy +Muse +Museum +Museum Campus +Musgnug +Musgrave +Musgrove +Mushroom +Mushtown +Music +Music Hall +Musick +Musicmaster +Musico +Musjid +Musk +Muskeego +Muskegon +Musket +Musket Ball +Musketaquid +Muskett +Muskham +Muskie +Muskogee +Muskrat Pond +Musley +Muslin +Musquashicut +Mussenden +Mussey Brook +Mustang +Mustang Hill +Mustard +Mustard Mill +Musterfield +Musto +Muston +Muswell +Muswell Hill +Muswell Hill Pages +Muswell Hill Woodside +Muswellbrook +Mutch +Muth +Mutilod +Mutrix +Muttama +Mutton +Mutton Hall +Mutton Hollow +Muttong +Muttontown +Muttontown Eastwoods +Mutual +Mux +Muybridge +Muzzey +Muzzy +My +My Mollies Pride +MyEye +Myahgah +Myall +Myallie +Myalora +Myamba +Myano +Myatt +Mycenae +Mycumbene +Myddelton +Myddleton +Mydell +Mydellton +Myee +Myer +Myers +Myers Farm +Myerson +Myette +Mygrove +Myhre +Mykala +Myler +Myles +Myles View +Mylinda +Mylith Park +Mylnar +Mylne +Mylod +Mylon +Mylott +Mymms +Mynchen +Mynor +Myola +Myoora +Myosotis +Myotis +Mypolonga +Myra +Myradell +Myran +Myrdle +Myriah +Myrick +Myrle +Myrman +Myrna +Myro +Myron +Myrrh +Myrte +Myrtle +Myrtle Beach +Myrtle Grove +Myrtle Leaf +Myrtle Park +Myrtle Vista +Myrtlebank +Myrtledale +Myrtledene +Myrtlewood +Myson +Mysore +Mystery Spot +Mystic +Mystic Lake +Mystic River +Mystic Valley +Mystic View +Mystique +Mytchett +Mytchett Lake +Mytchett Place +Mytham +Mytton +Myuna +N Abbey Glenn +N Abbotsford +N Aber +N Aberdeen +N Abingdon +N Acorn +N Acres +N Ada +N Adams +N Addison +N Adelaide +N Adolphus +N Aglen +N Ahrens +N Ahwahnee +N Airlite +N Alameda +N Alaska +N Albany +N Albemarle +N Albert +N Alder +N Aldine +N Alfred +N Algonquin +N Alleghany +N Allen +N Althea +N Amberley +N Anderson +N Andoa +N Andover +N Anthon +N Anvil +N Apache +N Apple Hill +N Aqueduct +N Aralia +N Arbogast +N Arbor +N Arcade +N Archer +N Ardmore +N Argyle +N Arizona +N Arkwright +N Arlington +N Arlington Heights +N Arlington Mill +N Arlington Ridge +N Arm +N Armistead +N Arona +N Arrowhead +N Artesian +N Arthur +N Arundel +N Asbury +N Ascan +N Ash +N Ashbury +N Ashby +N Ashland +N Ashton +N Astor +N Atlanta +N Atlantic +N Attleboro +N Aurora +N Austin +N Avalon +N Avon +N Avondale +N Babbit +N Babcock +N Bailey +N Baker +N Baldwin +N Ballou +N Balmiere +N Bank +N Barclay +N Barkley +N Barrett +N Barrington +N Barrington Woods +N Barry +N Barsumian +N Bartlett +N Barton +N Bassford +N Bates +N Bay +N Bayles +N Baynard +N Bayview +N Beach +N Beaumont +N Bedford +N Beech +N Beers +N Belair +N Belgrade +N Bell +N Bellmore +N Belmont +N Bend +N Bereman +N Bernard +N Berteau +N Bertha +N Betty +N Beverly +N Beverwyck +N Bingham +N Birch +N Birchdale +N Birchwood +N Bishop +N Bissell +N Bittner +N Blackburn +N Blackhawk +N Blanchard +N Blanding Woods +N Bleeker +N Bloomingdale +N Bloomington +N Bluebonnet +N Bluemont +N Bobwhite +N Bolingbrook +N Bon Aire +N Bond +N Bonnie +N Boo +N Boro +N Boston +N Bosworth +N Bothwell +N Boulder +N Bourndale +N Boynton +N Bradford +N Bradley +N Brainard +N Braintree +N Branch +N Brandon +N Brandywine +N Brashares +N Braymore +N Brentwood +N Brewer +N Briarcliff +N Briarwood +N Bridge +N Bridgeport +N Bridle Trail +N Briggs +N Brightway +N Bristol +N Brittany +N Broad +N Broadview +N Broadway +N Brockway +N Brompton +N Brook +N Brookdale +N Brooks +N Brookshore +N Brookside +N Brookwood +N Broome +N Brown +N Browning +N Bruner +N Brunson +N Bryan +N Buchanan +N Buckeye +N Buckhout +N Budd +N Buell +N Buesching +N Buffalo +N Buffalo Grove +N Buffalo Run +N Burling +N Burlington +N Burnett +N Burning Bush +N Burr +N Burtis +N Busse +N Butehorn +N Butterfield +N Cabin +N Cady +N Calhoun +N California +N Callahan +N Callero +N Calvert +N Cambridge +N Camden +N Cameron +N Camp Meade +N Campbell +N Canal +N Canfield +N Capitol +N Cardinal +N Carillon +N Carlin Springs +N Carll +N Carlton +N Carlyle +N Caroline +N Carpenter +N Carter +N Caryl +N Cass +N Cassell +N Catalpa +N Cathedral +N Catherine +N Cavender +N Cawdor +N Cedar +N Celia +N Center +N Central +N Central Park +N Centre +N Century +N Chalmers +N Chamber +N Chambliss +N Chamlin +N Champlain +N Channing +N Chapel +N Chapel Hill +N Charles +N Charlotte +N Charter +N Charter Point +N Chase +N Chatsworth +N Chelmsford +N Chelsea +N Cherry +N Cherry Grove +N Cheryl +N Chesapeake +N Chester +N Chestnut +N Chevy Chase +N Chicago +N Chicora +N Chicot +N Chippewa +N Christiana +N Christie +N Church +N Churchill +N Circle +N Claremont +N Clarence +N Clarendon +N Clarice +N Clark +N Clay +N Cleaver +N Cleveland +N Cliff +N Clifford +N Clifton +N Clinton +N Clover +N Club House +N Clyde +N Coach +N Cogswell +N Cohansey +N Cold Mill +N Coldspring +N Colfax +N College +N College Park +N Collins +N Colombian +N Colombus +N Colonial +N Colorado +N Columbia +N Columbine +N Columbus +N Commons +N Commonwealth +N Concord +N Connecticut +N Conrad +N Conservatory +N Constitution +N Converse +N Cook +N Cooper +N Copper Beach +N Corona +N Cortez +N Cottage +N Cottenet +N Countryside +N County Farm +N County Line +N Court +N Court House +N Cowley +N Crabtree +N Cranberry +N Crane +N Crescent +N Crest +N Crestview +N Croname +N Crosby +N Cross +N Crystal +N Crystal Beach +N Culpeper +N Cumberland +N Cumnor +N Custis +N Cutler +N Cuyler +N Cypress +N Cypress Point +N Dairy +N Dale +N Dallas +N Damen +N Danforth +N Daniel +N Daniels +N Dante +N Danube +N Danville +N Darrell +N Dartmoor +N Dato +N Davisson +N Dawson +N Day +N Dayton +N Dean +N Dearborn +N Dearing +N Dearman +N Dee +N Deep Lake +N Deer Lake +N Deer Park +N Deer Run +N Deerpath +N Delaplaine +N Delaware +N Delphia +N Demarest +N Denal +N Denberry +N Deneen +N Denise +N Dennis +N Denton +N Derby +N Derbyshire +N Des Plaines River +N Desplaines +N Detroit +N Devon +N Dewey +N Dexter +N Diamond Lake +N Diane +N Dickenson +N Dickerson +N Dickinson +N Dieter +N Dinwiddie +N Dittmar +N Division +N Dominick +N Donald +N Donelson +N Dorchester +N Douglas +N Dover +N Dovington +N Dowagiac +N Dumbarton +N Dunlap +N Dunton +N Dupont +N Dutcher +N Dutton +N Dwiggins +N Dwight +N Dymond +N Dyre +N Eagle +N Eagle Lake +N Earl +N Early +N East +N East Brook +N East Lake Shore +N East River +N Eastern +N Easton +N Eastwood +N Echo +N Echo Lake +N Eckar +N Eden +N Edgelawn +N Edgemond +N Edgemont +N Edgewood +N Edie +N Edison +N Edmer +N Edmore +N Edward +N Ela +N Elberta +N Elbridge +N Elchester +N Elgin +N Elizabeth +N Elk +N Elk Grove +N Ellen +N Ellis +N Ellison +N Ellsworth +N Ellyn +N Elm +N Elma +N Elmer +N Elmhurst +N Elmwood +N Elodie +N Elroy +N Elston +N Emerald +N Emerson +N Emery +N Emmett +N Emroy +N Enchanted +N Englewood +N English +N Eola +N Erie +N Ernest +N Essex +N Essington +N Ethel +N Etna +N Euclid +N Eugene +N Eustis +N Evanslawn +N Evanston +N Evarts +N Everett +N Evergreen +N Ewing +N Exmoor +N Fairfax +N Fairfield +N Fairlawn +N Fairview +N Fairway +N Falls +N Farrell +N Farrington +N Farview +N Faxon +N Faye +N Fayette +N Fenview +N Fenwick +N Ferdinand +N Fernandez +N Ferndale +N Fernwood +N Ferris +N Ferry +N Ferry Point +N Field +N Fillmore +N Finn +N Fire +N Firestone +N Fisk +N Flake +N Flamingo +N Flanders +N Fletcher +N Florence +N Florida +N Florida Grove +N Floyd +N Ford +N Fordham +N Forest +N Forest Garden +N Forest Glen +N Forest Lake +N Forest Preserve +N Forestview +N Forrest +N Fort Myer +N Four Mile Run +N Fox +N Fox River +N Foxtail +N Frank +N Franklin +N Franks +N Franzen +N Frazier +N Frederick +N Freemont +N Freeway +N Fremont +N Fremont Center +N French +N Friendly +N Frontage +N Frontenac +N Frontier +N Fry +N Fullerton +N Fulton +N Furman +N Gables +N Gaillard +N Galena +N Galesburg +N Galveston +N Gannon +N Garden +N Gardiner +N Garfield +N Garland +N Garnsey +N Gary +N Gate +N Gates +N Gateway +N Gatewood +N Gem +N Genesee +N Geneva +N George Mason +N Gerald +N Geraldine +N Gerard +N Gibbons +N Gibson +N Gifford +N Gilbert +N Gilmer +N Ginger Creek +N Gladden +N Gladstone +N Glebe +N Glen +N Glendale +N Glenmore +N Glenn +N Glenview +N Glenwood +N Glover +N Golden +N Goodwin +N Gordon +N Grace +N Granada +N Grand +N Grand Monde +N Grandin +N Grandview +N Grant +N Graylynn +N Grayson +N Greeley +N Green +N Green Bay +N Green Meadows +N Green Valley +N Greenbrier +N Greenbush +N Greencastle +N Greene +N Greenfield +N Greenmount +N Greenview +N Greenwich +N Greenwood +N Gresham +N Griffith +N Griggs +N Grotto +N Grove +N Gurney +N Guyer +N Haddow +N Hager +N Haig Point +N Hale +N Haledon +N Ham Lake +N Hamilton +N Hamlin +N Hamline +N Hampden +N Hampshire +N Hampton +N Hancock +N Hanover Hills +N Hansen +N Harbor +N Harby +N Harding +N Harlem +N Harold +N Harriet +N Harrison +N Hart +N Hartford +N Hartshorne +N Harvard +N Harvey +N Haskins +N Haverhill +N Hawk +N Hawthorn +N Hawthorne +N Hayes +N Hazel +N Hazel Crest +N Hazelton +N Healy +N Heather +N Hebbard +N Hedgewood +N Heights +N Helgesen +N Hemlock +N Hempstead +N Henderson +N Henry +N Herbert +N Hereford +N Heritage +N Herky +N Hermitage +N Herndon +N Herschel +N Hess +N Hiawatha +N Hickory +N Hickory Hill +N Hickory Nut Grove +N High +N High Ridge +N Highcrest +N Highland +N Highview +N Highway +N Highwood +N Hilandale +N Hill +N Hillcrest +N Hillfarm +N Hillside +N Hillview +N Hobart +N Holder +N Hollins Ferry +N Hollister +N Holly +N Holton +N Homan +N Home +N Homeland +N Honey +N Honore +N Hooker +N Hope +N Horatio +N Horners +N Hotz +N Hough +N Howard +N Howe +N Howell +N Hoyne +N Hoyne Av +N Hubbard +N Hudson +N Huffman +N Humboldt +N Humphrey +N Hundley +N Hunter Ridge +N Hunting Valley +N Huntington +N Hurdale +N Huron +N Huston +N Hythe +N Idaho +N Illinois +N Ilwaco +N Imboden +N Indian +N Indiana +N Inglewood +N Innsbruck +N International +N Ionia +N Iowa +N Irene +N Irving +N Island +N Ivanhoe +N Iverson +N Ivy +N J RR +N Jackson +N Jacksonville +N Jacob +N James +N Jameson +N Jane +N Janssen +N Jason +N Jasper +N Jay +N Jean +N Jefferson +N Jensen +N Jerome +N Jersey +N Jerusalem +N Jessie +N John +N John Marshall +N Johnson +N Joliet +N Jones +N Jordan +N Joyce +N Jugtown +N Julian +N Juliet +N Juniper +N Justine +N Kane +N Kansas +N Karlov +N Kaspar +N Kasson +N Kearns +N Kearsarge +N Keating +N Kedvale +N Kedzie +N Keeler +N Keene +N Kelsey +N Kelso +N Kemman +N Kemper +N Kendall +N Kenilworth +N Kenmore +N Kennard +N Kennebec +N Kennedy +N Kennesaw +N Kenneth +N Kennicott +N Kennison +N Kenosha +N Kensington +N Kent +N Kenton +N Kentucky +N Keokuk +N Keota +N Kerbs +N Kercheval +N Keston +N Ketay +N Kewanee +N Key +N Keys +N Keystone +N Kilbourn +N Kilburn +N Kildare +N Kilpatrick +N Kimball +N Kimberly +N Kinderkamack +N King +N Kings +N Kingsbury +N Kingsdale +N Kingsway +N Kinzua +N Kiona +N Kirby +N Kirkwood +N Kittson +N Knight +N Knollwood +N Knox +N Kohlman +N Kolin +N Kolmar +N Konner +N Kostner +N Kramer +N Krueger +N Kruger +N L Johnson +N La Fox +N Lacey +N Lafayette +N Laflin +N Laird +N Lake +N Lake Arlington +N Lake Park +N Lake Shore +N Lake Zurich +N Lakeland +N Lakeshore +N Lakeside +N Lakeview +N Lakewood +N Lama +N Lamon +N Lancaster +N Landau +N Landers +N Langley +N Lansing +N Laporte +N Laramie +N Larch +N Larkspur +N Larned +N Larrabee +N Larrimore +N Las Casas +N Lasalle +N Latham +N Latrobe +N Laurel +N Laurine +N Lavergne +N Lawler +N Lawn +N Lawndale +N Lawrence +N Le Mai +N Leader +N Leamington +N Leavenworth +N Leavitt +N Lebanon +N Leclaire +N Lee +N Legett +N Legion +N Lehigh +N Leibert +N Leisure World +N Lemai +N Lemon +N Lemont +N Lenhome +N Lenore +N Lenox +N Lenwood +N Leona +N Leonard +N Leoti +N Lerisa +N Leroy +N Lester +N Leswing +N Lewis +N Lexington +N Lexow +N Liano +N Liberty +N Lieb +N Lightfoot +N Lilac +N Lillian +N Lincoln +N Lincolnway +N Lind +N Linda +N Linden +N Linder +N Linwood +N Lister +N Little Falls +N Littleton +N Livermore +N Liverpool +N Livingston +N Lochleven +N Locke +N Lockwood +N Locust +N Loleta +N Lombard +N Lombardy +N London +N Long +N Long Beach +N Long Cove +N Long Meadows +N Longcross +N Longfellow +N Longmeadow +N Longview +N Longwood +N Lookout Pointe +N Loomis +N Loop +N Lorang +N Lorcom +N Lord +N Lorel +N Loring +N Loron +N Lotus +N Loucks +N Louis +N Louise +N Lovejoy +N Lowell +N Lucerne +N Ludlam +N Luella +N Lullo +N Luna +N Lund +N Lundy +N Luther +N Lyle +N Lynch +N Lynn +N Lytle +N Macarthur +N Mack +N Mackubin +N Madison +N Magazine +N Magnet +N Magnolia +N Magoun +N Maid Marion +N Maidstone +N Main +N Major +N Malden +N Mall +N Mallard +N Mallory +N Manchester +N Mandell +N Mango +N Manhattan +N Manila +N Mankato +N Manor +N Mansards +N Mansfield +N Mansion +N Manton +N Maple +N Maplewood +N Marcey +N Maria +N Marilyn +N Marine +N Marion +N Market +N Markham +N Marmora +N Marsha +N Marshfield +N Martha +N Martha Lake +N Martin +N Martine +N Martling +N Marybrook +N Maryknoll +N Maryland +N Marywood +N Mason +N Massasoit +N Matteson +N Matthews +N Maud +N Mavis +N May +N Mayfield +N Mayflower +N Maywood +N Mc Clellan +N Mc Cook +N Mc Crea +N Mc Lean +N Mc Leod +N Mc Vicker +N McAlpin +N McCarron +N McKinley +N McKnight +N McLean +N McLindon +N McVicker +N Meacham +N Meade +N Meadow +N Meadow Lake +N Meadowbrook +N Medford +N Medina +N Melody +N Melrose +N Melvina +N Menard +N Mendell +N Mendota +N Menominee +N Mercer +N Merchants +N Meredith +N Meridian +N Merrill +N Merrimac +N Mesa +N Miami +N Michigan +N Middle +N Middleton +N Middletown +N Midfield +N Midland +N Midlothian +N Midmar +N Mildred +N Military +N Mill +N Mill Creek +N Millpage +N Miltmore +N Milton +N Milwaukee +N Mineral Springs +N Minnehaha +N Minnetonka +N Minnisink +N Minntonka +N Mississippi +N Mississippi River +N Mitchell +N Mobile +N Moetz +N Mohawk +N Moki +N Monitor +N Monroe +N Mont Clare +N Montague +N Montana +N Montclair +N Montclare +N Monterey +N Montgomery +N Monticello +N Moody +N Moore +N Moorman +N Moreland +N Morey +N Morgan +N Morris +N Morrison +N Mortimer +N Moselle +N Mound +N Mountain +N Mozart +N Muirfield +N Mulligan +N Munn +N Mura +N Murray +N Myrtle +N Nagle +N Nancy +N Naper +N Naperville Wheaton +N Naples +N Napoleon +N Narragansett +N Nash +N Nashotah +N Nashville +N Nassau +N Natchez +N National +N Natoma +N Navajo +N Navarre +N Naylor +N Neenah +N Nelly Custis +N Nelson +N Neltnor +N Neola +N Nettleton +N Neva +N New Britton +N New England +N New Hampshire +N New York +N Newark +N Newbridge +N Newburg +N Newcastle +N Newgard +N Newland +N Newport +N Niagara +N Niagra +N Niami +N Nicholas +N Nichols +N Nickerson +N Nicolet +N Nina +N Nixon +N Noble +N Nokomis +N Nolton +N Nora +N Nordica +N Norman +N Normandy +N North Branch +N North Park +N Northampton +N Northbridge +N Northcott +N Northwest +N Norton +N Norwood +N Nottingham +N Noyes +N Nybro +N Oak +N Oak Beach +N Oak Hill +N Oak Hills +N Oak Knoll +N Oak Park +N Oakhurst +N Oakland +N Oaklawn +N Oakley +N Oakmont +N Oakview +N Oakwood +N Obrien +N Ocean +N Oceanside +N Oconto +N Octavia +N Ode +N Odell +N Ogden +N Ohio +N Oketo +N Olcott +N Old Barrington +N Old Bridge +N Old Creek +N Old Dominion +N Old Farm +N Old Hicks +N Old Mill +N Old Rand +N Old School +N Old Wick +N Oleander +N Oliphant +N Olive +N Olmsted +N Oltendorf +N Olympia +N Onarga +N Oneida +N Ontario +N Opal +N Orange +N Orchard +N Oriole +N Orleans +N Osage +N Osceola +N Oshkosh +N Oswego +N Otsego +N Ott +N Ottawa +N Overhill +N Overlook +N Owen +N Owens +N Oxford +N Ozanam +N Ozark +N Pacific +N Page +N Panama +N Paris +N Park +N Parke +N Parker +N Parkside +N Pascal +N Passaic +N Patrick +N Patrick Henry +N Patton +N Paulina +N Pawnee +N Paxton +N Payne +N Peach +N Peachtree +N Pearl +N Peary +N Peck +N Pecos +N Pegram +N Pelham +N Pembroke +N Penfield +N Pennington +N Pennsylvania +N Penny +N Peoria +N Peotone +N Pequanneck +N Perkins +N Pershing +N Pet +N Peyton +N Pfingsten +N Pheasant +N Phelps +N Pickett +N Piedmont +N Pierce +N Pierre +N Pima +N Pine +N Pine Grove +N Pinecrest +N Pinehurst +N Pinetree +N Pioneer +N Pipe Mill +N Pitt +N Pittsburgh +N Plainfield +N Plandome +N Plantation +N Pleasant +N Plum Grove +N Plumwood +N Plymouth +N Pocomoke +N Pocono +N Poe +N Point +N Pollard +N Ponchartrain +N Pond +N Pond Shore +N Pondview +N Pontiac +N Poplar +N Porchuck +N Porter +N Potawatomie +N Potomac +N Powhatan +N Prague +N Praire +N Prairie +N Prater +N Prescott +N President +N Preston +N Prestwick +N Prince Crossing +N Prince Frederick +N Prindle +N Prior +N Prologis +N Prospect +N Prospect Manor +N Prosperity +N Pryor +N Pulaski +N Putnam +N Quaker +N Quantico +N Quarry +N Quebec +N Queen +N Queens +N Quesada +N Quincy +N Quinn +N Quintana +N Race +N Racine +N Raddant +N Radford +N Railroad +N Rainbow +N Raleigh +N Ramapo +N Rammer +N Ramona +N Rand +N Randall +N Randolph +N Randolphville +N Raven +N Ravenswood +N Ravine +N Raymond +N Raynor +N Recreation +N Red Coat +N Reform +N Regency +N Regent +N Rensselaer +N Reserve +N Reta +N Retford +N Reuter +N Reynolds +N Rhett +N Rhodes +N Richmond +N Ridge +N Ridgeland +N Ridgemoor +N Ridgeview +N Ridgeway +N Ridgewood +N Ripley +N River +N Rivershore +N Riverside +N Riverview +N Riverwoods +N Riviera +N Rivoli +N Robert +N Robert Damm +N Roberta +N Roberts +N Robin +N Robinson +N Rochester +N Rock Cove +N Rock Spring +N Rockingham +N Rockledge +N Rockwell +N Rocky Top +N Rocky Wood +N Rogers +N Rohallion +N Rohde +N Rohlwing +N Roland +N Rolfe +N Rondeau Lake +N Roosevelt +N Root +N Rose +N Rosedale +N Roselle +N Rosemary +N Rosetree +N Rosewell +N Rossell +N Rosser +N Rosslyn +N Rowling +N Roy +N Royal +N Royal Oaks +N Rumple +N Rush +N Russell +N Ruth +N Rutherford +N Ryde +N Sacramento +N Saddle Brook +N Saddlebrook +N Saint Asaph +N Saint Marys +N Salem +N Salk +N Salt Creek +N Sandra +N Sangamon +N Santee +N Sapphire +N Saratoga +N Sauganash +N Sawyer +N Sayre +N Scherer +N Schletti +N Schmidt +N Schoenbeck +N School +N Schrader +N Schultz +N Schuneman +N Scotch Plains +N Scott +N Scoville +N Sedgwick +N Seebert +N Seeley +N Seminary +N Seminole +N Serven +N Service +N Seymour +N Shaddle +N Shady Oaks +N Shagbark +N Shelby +N Sheldon +N Shelley +N Shenandoah +N Sheridan +N Sherman +N Shermer +N Sherwood +N Shore +N Sibley +N Silver +N Silverlake +N Simonds +N Simpson +N Sioux +N Skokie +N Skyline +N Sleight +N Sloan +N Smith +N Smythe +N Snelling +N Snuff Valley +N Somerset +N Sott +N Sound Beach +N South Elgin +N South Park +N Southport +N Southwood +N Spaulding +N Spencer +N Spokane +N Spring +N Spring Garden +N Springfield +N Springinsguth +N Springwood +N Spruce +N Suffolk +N Summit +N Sumner +N Sunset +N Suthers +N Sutton Lake +N Swift +N Sycamore +N Sylvan +N Sylvander +N Sylvester +N Syndicate +N Syracuse +N Tabler +N Tacoma +N Tahoma +N Talcott +N Tall Oaks +N Talmadge +N Talman +N Tamarack +N Tappan Landing +N Tatge +N Taylor +N Temperance +N Terrace +N Terramere +N Terre +N Terrill +N Thatcher +N Thomas +N Thompson +N Thorndale +N Thorsen +N Throop +N Tippecanoe +N Tonty +N Topanga +N Toronto +N Tower +N Tracy +N Tree +N Trenton +N Trinidad +N Tripp +N Trivett +N Troop +N Troy +N True +N Trumbull +N Tuckahoe +N Turf Hill +N Turtle Bay +N Tyler +N Tyson +N Uhle +N Underwood +N Union +N University +N Upland +N Upshur +N Upton +N Utah +N Utica +N Vacation +N Vail +N Valley +N Van Brunt +N Van Buren +N Van Dien +N Van Dorn +N Van Dyke +N Van Nortwick +N Vance +N Vanderburg +N Vanderpool +N Varner +N Veitch +N Venable +N Venice +N Ventura +N Veprek +N Verde +N Vermillion +N Vermont +N Vernon +N Verrill +N Vest +N Victoria +N View +N Vigo +N Villa +N Village +N Vine +N Violet +N Virginia +N Vista +N Vivyen +N Wabash +N Wabasso +N Wacouta +N Wade +N Wagner +N Waiola +N Wakefield +N Walden +N Waldinger +N Walkup +N Waller +N Walnut +N Walsh +N Wantagh +N Ward +N Warner +N Warren +N Warrick +N Warrington +N Warwick +N Washington +N Washtenaw +N Wasson +N Watchung +N Water +N Waterford +N Waterman +N Waters Edge +N Waukegan +N Waukesha +N Waveland +N Wayne +N Wayzata +N Wear +N Weatherstone +N Webster +N Wedgewood +N Weed +N Weide +N Weigel +N Weiland +N Wellington +N Wells +N Wellwood +N Werden +N Wespark +N West +N West Brook +N Westchester +N Western +N Westgate +N Westland +N Westlawn +N Westminster +N Westmore +N Westmoreland +N Weston +N Westward Ho +N Westwood +N Wheaton +N Wheeler +N Wheeling +N Whipple +N Whispering Hills +N Whitcomb +N White +N White Pine +N Whitman +N Wicker Park +N Wickom +N Widgeon +N Wieland +N Wiggs +N Wilder +N Wildrose +N Wildwood +N Wiley +N Wilke +N Will +N Willard +N Wille +N William +N Williams +N Williams Park +N Williamsburg +N Willis +N Williston +N Willow +N Wilmette +N Wilmot +N Wilshire +N Wilson +N Wilton +N Winchester +N Windell +N Windham +N Windhorst +N Winding +N Windsor +N Winfield +N Winifred +N Winnebago +N Winston +N Winter +N Winthrop +N Wisconsin +N Wisner +N Wolcott +N Wolf +N Wood +N Woodard +N Woodbine +N Woodbridge +N Wooddale +N Woodgate +N Woodhull +N Woodland +N Woodlawn +N Woodley +N Woodrow +N Woodside +N Woodstock +N Woodward +N Woodwork +N Worth +N Wright +N Wulff +N Wyndwood +N Wynstone +N Wyoming +N Yale +N York +N Young +N Youngs +N Yucatan +N Zoranne +N du Bois +N la Crosse +N la Londe +N. Irving +N. Oak +N. Oliver +N. School +N. Whisman +NASA +NE Allen +NE Arthur +NE Benjamin +NE Buchanan +NE Circle +NE Cleveland +NE Columbia +NE Garfield +NE Grand +NE Greens Crossing +NE Hayes +NE Highland +NE Holcomb +NE Hollywood +NE Howard +NE Industrial +NE Jackson +NE Jambor +NE Lincoln +NE Madison +NE Main +NE Odell +NE Ohland +NE Pierce +NE Plaza +NE Polk +NE Roosevelt +NE Taft +NE Taylor +NE Tyler +NE Ulysses +NE University +NE Van Buren +NE Wilson +NW Centennial +NW Circle +NW Diagonal +NW Frontage +NW Holcomb +NW Walker +NY Orphan AYM +Na Wa Ta +Nab +Nabbot +Nabbott +Nabbs Creek +Nabiac +Nabnasset +Nabor +Nabscot Brook +Naburn +Nace +Nacona +Nacy Lee +Nada +Nadeau +Nadel +Naden +Nadia +Nadin +Nadina +Nadine +Nadotti +Nagareda +Nagel +Nagle +Naglee +Nagog +Nagog Hill +Nags Head +Nagy +Nahant +Nahanton +Nahatan +Nahmens +Nahua +Naida +Naify +Nails +Nairana +Nairdwood +Nairn +Naisby +Naismith +Najm +Najoles +Nalders +Naldretts +Nalisty +Nall +Nallada +Nalley +Nallhead +Nalls +Nalya +Namakagan +Namassin +Namba +Nambour +Nambucca +Namdac +Namdre +Namekagon +Nameoke +Namitjira +Namleps +Namoi +Namona +Nampeyo +Namsan +Namton +Namur +Nan +Nan King +Nan Mill +Nan Nook +Nan Tucks +Nana +Nana Glen +Nana Russell +Nanak +Nanapashamet +Nanbaree +Nancarles +Nancarrow +Nance +Nancemond +Nancia +Nancy +Nancy Ann +Nancy Vallera +Nancye +Nandell +Nandi +Nandina +Nanepashemet +Nanette +Nangana +Nangar +Nangreave +Nangreaves +Nanita +Nankin +Nanlee +Nann +Nanna +Nannet +Nanny Goat +Nanong +Nanowie +Nansen +Nanset +Nansmoss +Nant +Nantasket +Nantes +Nanti +Nanticoke +Nantucket +Nantwich +Nantwick +Nanuet +Naoi +Naoma +Naomi +Naomi Cochran +Naoroji +Napa +Napa Nook +Napa River +Napa Valley +Napa Valley Corporate +Napco +Naper +Naperville +Napier +Naple +Naples +Napleton +Napolean +Napoleon +Napoli +Napper +Nappsbury +Napsbury +Narada +Naranga +Naranganah +Naranghi +Naranja +Narbeth +Narbonne +Narborough +Narbuth +Narcissius +Narcissus +Narcot +Nardango +Nardell +Nardi +Nardis +Nardone +Nardoo +Nare +Nareb +Naree +Narellan +Narelle +Nares +Naretha +Narford +Nargong +Nariel +Narla +Narland +Naro +Naromake +Naroo +Narooma +Narrabeen +Narrabri +Narraganset +Narragansett +Narray +Narromine +Narromore +Narrow +Narrowbush +Narrowleaf +Narrows +Narumson +Narumsunk +Narvaez +Narvick +Narvik +Narwee +Narwood +Nascoby +Nascot +Nascot Wood +Naseby +Nash +Nash Lee +Nash Memorial +Nash Mills +Nasha Way +Nashawtuc +Nashdom +Nashenden +Nashenden Farm +Nashgrove +Nashoba +Nashua +Nashville +Nasmyth +Nason +Nason Hill +Nasonville +Nasreen +Nassau +Nassau Terminal +Nasse +Nassington +Nast +Nasturtium +Nata +Natahala +Natal +Natalie +Natalie Joy +Natalye +Nataqua +Natasha +Natchez +Nate Nutting +Natelli Woods +Nately +Nathalee +Nathalie +Nathan +Nathan Hale +Nathaniel +Nathaniel Guild +Nathaniel Oaks +Nathans +Nathanson +Nathanson Creek +Nathelle +Nathhorst +Nathorst +Natia Manor +Natick +Natick Mall +National +National Business +National Harbor +National Park +Nations +Nationville +Native Dancer +Native Oak +Native Rocks +Native Sons +Natividad +Natoma +Natomas +Natomas Central +Natomas Crossing +Natomas Park +Natta +Nattai +Nattinger +Natuna +Natural Bridges +Natural History +Nature +Nature Center +Nature View +Nature Walk +Natures +Natwick +Naugatuck +Naughton +Naugle +Naugler +Naugus +Naumkeag +Naunton +Nausbaumer +Nauset +Naushon +Nausin +Nautical +Nautilus +Nauvoo +Navaho +Navaho Trail +Navahoe +Navajo +Naval +Navarino +Navarone +Navarra +Navarre +Navarro +Nave +Navel +Navellier +Navenby +Navesink +Navesink River +Naviens +Navigation +Navigator +Navillus +Navins +Navion +Navone +Navy +Navy Day +Navy Yard +Nawadaha +Nawakwa +Nawatam +Nawthorne +Nay +Naying +Nayland +Nayling +Naylon +Naylor +Nazarene +Nazeing +Nazeing New +Nazeing Old +Nazielle +Nazing +Nazrul +Nea +Neabsco +Neabsco Mills +Neagle +Neal +Neal Dow +Neal Gate +Nealden +Neale +Nealley +Nealon +Neals +Neals Hollow +Nealy +Neame +Neaptide +Near Mountain +Near Mtn +Nearbrook +Nearcroft +Nearmaker +Nearwater +Neary +Neasden +Neasham +Neate +Neath +Neatham Mill +Neatscourt +Neb +Nebel +Nebo +Nebraska +Nebrentwood +Nebula +Necco +Neck +Neck Hill +Neckar +Neckinger +Necropolis +Nectar +Nectarbrook +Nectarine +Necton +Necturine +Ned +Nedderson +Neddleton +Nedellec +Nedley +Nedra +Neds +Nedshire +Needes +Needham +Needham Green +Needham Landing +Needhamdale +Needle +Needle Leaf +Needleleaf +Needleman +Needles +Needless Inn +Needlewood +Needwood +Needwood Lake +Neef +Neel +Neelen +Neeley +Neelon +Neelsville Church +Neely +Neenah +Neer +Neerim +Neerwinder +Nees +Neeser +Neet +Neeta +Neeworra +Neff +Negaune +Negundo +Nehemiah +Nehf +Nehoiden +Nehring +Neid +Neider +Neighbor +Neighborhood +Neighbors +Neihart +Neil +Neil Armstrong +Neild +Neilis +Neill +Neill Lake +Neillian +Neills +Neilsen +Neilson +Neilwood +Neimann +Neirbo +Neiss +Neitzel +Nekoma +Nel Pan +Nela +Nelda +Nelden +Nelgarde +Nelkin +Nell +Nell Gwynn +Nell Gwynne +Nella +Nella Dan +Nelldale +Nellella +Nellen +Nellgrove +Nellie +Nellie White +Nelligan +Nellington +Nellis +Nells +Nelly +Nelmark +Nelmes +Nelo +Nels +Nels Berglund +Nelsine +Nelson +Nelson Farm +Nelson Grove +Nelson Heights +Nelson Lake +Nelson Mandela +Nelson Park +Nelson Perrie +Nelson Point +Nelson Rising +Nelson Short +Nelstrop +Nelway +Nelwyn +Nemba +Nemec Knoll +Nemesia +Nemeth +Nemic +Nemitz +Nemoure +Nenagh +Nene +Nenninger +Neola +Neosho +Neotomas +Nepaul +Nepawin +Nepean +Nepean Towers +Nepenthe +Neperan +Nephi +Nepicar +Nepil +Nepo +Neponset +Neponset Heights +Neponset Valley +Neponsit +Nepperhan +Nepshaw +Nepton +Neptune +Neptune Gardens +Nequa +Neranda +Nerang +Nerbonne +Nerdy +Nereid +Nerida +Neridah +Neringa +Nerious +Nerli +Nern +Nero +Neroly +Nertherne +Nesaquake +Nesbit +Nesbitt +Nesconset +Nesfield +Neshobe +Nesler +Neslite +Nesmith +Ness +Nessralla +Nesta +Nester +Nestlewood +Nestlewood Farm +Neston +Nestor +Nestora +Nestro +Nether +Nether Hey +Netheravon +Netherbury +Netherby +Nethercliffe Hall +Nethercote +Nethercourt +Nethercroft +Netherdale +Netherend +Netherfield +Netherford +Netherhall +Netherhouse +Netherland +Netherlands +Netherley +Nethermont +Nethern Court +Netherne +Netherpark +Netherton +Netherwood +Netley +Netta +Netteswell +Netties +Nettle +Nettlebarn +Nettleden +Nettlepole +Nettlestead +Nettleton +Nettlewood +Netto +Network +Neuberry Ridge +Neubert +Neubourg +Neuchatel +Neuenschwander +Neufairfield +Neugebauer +Neuharth +Neulist +Neumaier +Neuman +Neumann +Neuner +Neustoneshire +Neuton +Neutral +Neuville +Neva +Nevada +Nevells +Nevendon +Nevern +Neves +Nevil +Nevill +Neville +Neville Duke +Neville Grove Church +Nevin +Nevins +Nevis +Nevius +Nevsky +Nevy Fold +New +New Abbey +New Acadia +New Ackertown +New Adel +New Albany +New Allen +New Ascot +New Bailey +New Balch +New Bank +New Banner +New Barge Pier +New Barn +New Barn Farm +New Barns +New Barton +New Battlebridge +New Beach +New Bedford +New Beech +New Berry +New Bond +New Boston +New Braddock +New Brent +New Briar +New Bridge +New Brier +New Bright +New Brighton +New Brighton Service +New Britton +New Broad +New Brook +New Brooklyn +New Brunswick +New Burlington +New Butt +New Canterbury +New Carson +New Castle +New Castor +New Cathedral +New Century +New Change Cannon +New Chapel +New Chardon +New Charles +New Church +New City +New Clark +New Coach +New Cold Mill +New Commons +New Compton +New Country +New County +New Court +New Creek +New Cross +New Cut +New Cypher +New Dairy +New Dawn +New Derby +New Design +New Devon +New Disney +New Dobbel +New Dock +New Dominion +New Dorp +New Dover +New Dunne +New Durham +New Dutch +New Earth +New Elm +New Emerald +New England +New England Village +New England Woods +New Era +New Estate +New Fairview +New Farm +New Fisher +New Fitchburg +New Fletcher +New Ford +New Forest +New Foster +New Fox Hill +New Freetown +New Front +New Garden +New Gardens +New Garrison +New Gateway +New George +New Goulston +New Greens +New Guinea +New Hall +New Hall Farm +New Hampshire +New Harbor +New Harter +New Haven +New Haven RR +New Haw +New Heath +New Heckman +New Helvetia +New Herbert +New Hewy +New Hey +New High +New Holder +New Holland +New Home +New Hook Access +New Hope +New Horizon +New Horizons +New Horwich +New House +New House Farm +New Hyde Park +New Hythe +New Illawarra +New Industrial +New Inn +New Ipswich +New Jefferson +New Jersey +New Jersey Railroad +New Kelvin +New Kent +New Kiln +New King +New Lake +New Lancaster +New Lawn +New Lebanon +New Lenox +New Liberty +New Line +New Line Carr Bottom +New Line Elder +New Line Redcar +New Line near Albion +New Lodge +New London +New Lots +New Lydenburg +New Main +New Malden High +New Manchester +New Maple +New Market +New Mathews +New Mayfield +New McLean +New McNeil +New Mead +New Meadow +New Meadows +New Mexico +New Mile +New Milford +New Mill +New Mills +New Minton +New Monmouth +New Montgomery +New Moor +New Moorhead +New Mount +New North +New North Rocks +New Northern +New Oak +New Occupation +New Ocean +New Odiham +New Old Bridge +New Orchard +New Orleans +New Oxford +New Park +New Parkland +New Peachey +New Pittsburg +New Place +New Plaistow +New Point +New Pond +New Port +New Prague +New Princess +New Providence +New Quay +New Quebec +New Radcliffe +New Read +New Rectory +New Ridge +New Riggs +New River +New Rochelle +New Row +New Royd +New Rutherford +New Salem +New Saw Mill River +New Schley +New School +New Solomoms Island +New South +New South Head +New Spaulding +New Sudbury +New Sudlersville +New Sutton +New Tank +New Tank Hill +New Terrace +New Town +New Towne +New Tradition +New Trier +New Trinity +New Union +New Utrecht +New Utrecth +New Vernon +New Viaduct +New Village +New Vine +New Vista +New Wakefield +New Walnut +New Warrington +New Washington +New Water +New Waugh Chapel +New Waverley +New Way +New Welcome +New West Townsend +New Wharf +New Wickham +New Wilke +New Willow +New Wilmot +New Windsor +New Wokingham +New Woods +New World +New Writtle +New Wye +New Years +New York +New Zealand +New lands +Newacre +Newacres +Newall +Newalls +Newand +Newanga +Newark +Newark Broad +Newarth +Newasa +Newbank +Newbarn +Newberm +Newbern +Newberne +Newberries +Newberry +Newbert +Newbery +Newbiggen +Newbold +Newbolt +Newborough +Newboult +Newbreak +Newbridge +Newbrook +Newburg +Newburgh +Newburn +Newbury +Newby +Newby Bridge +Newcastle +Newcastle Coal Creek +Newcastle Gap +Newcastle Golf Club +Newchapel +Newchurch +Newcliffe +Newcomb +Newcombe +Newcombs +Newcome +Newcomen +Newcompton +Newcourt +Newcroft +Newcrossing +Newcut +Newdale +Newdene +Newdigate +Newearth +Newel +Newell +Newell Creek +Newell Hill +Newells +Newenden +Newenham +Newey +Newfield +Newfields +Newfoundland +Newgate +Newgatestreet +Newglen +Newground +Newhall +Newham +Newham Hospital Glen +Newham Way Colman +Newhaven +Newhey +Newhill +Newhouse +Newick +Newington +Newington Commons +Newington Forest +Newington Green +Newington Woods +Newitt +Newkirk +Newkirt +Newlaithes +Newland +Newland Green +Newlander +Newlands +Newlands Farm +Newlay +Newlay Wood +Newley +Newlyn +Newmain +Newman +Newman Hill +Newman Springs +Newmans +Newmarch +Newmark +Newmarket +Newmarsh +Newmer +Newminster +Newmont +Newnham +Newood +Newpasture +Newport +Newport Cove +Newport Mill +Newpots +Newpound +Newquay +Newry +News +News Direct +News Lees +Newsam +Newsham +Newshaw +Newsholme +Newsom +Newsome +Newstead +Newteswell +Newton +Newton Abbot +Newton Falls +Newton Hall +Newton Lodge +Newton Park +Newton Patent +Newton Wood +Newtonville +Newtown +Newtowne +Newvale +Newvalley Church +Newville +Newyears Green +Next Day Hill +Ney +Nez Perce +Niagara +Niagara Falls +Niagra +Niantic +Niara +Nibbe +Niblick +Niblo +Nibshaw +Nibthwaite +Nicanoa +Nicasio Creek +Nicasio Valley +Nicastro +Nice +Nichandros +Nichol +Nicholai +Nicholas +Nicholas Run +Nicholay +Nichold +Nichole +Nicholes +Nicholi +Nicholl +Nicholls +Nichols +Nicholsen +Nicholson +Nicholsons +Nicholsridge +Nick +Nickel +Nickelson +Nickerson +Nicklaus +Nickle Plate +Nickleby +Nickles +Nickleson +Nickley Wood +Nickolas +Nickolsen +Nicks Rock +Nickson +Nicky +Nicobar +Nicod +Nicol +Nicola +Nicolai +Nicolar +Nicole +Nicolet +Nicoletta +Nicolette +Nicolini +Nicoll +Nicollet +Nicolls +Nicolosi +Nicols +Nicolson +Nicora +Nicosia +Nicrobia +Nider +Nido +Nidva +Niebaum +Niederwald +Niehaus +Nield +Nields +Nielsen +Nielson +Nieman +Niemann +Niemela +Niemeyer +Niestrath +Nieves +Nigel +Nigel Playfair +Nigeria +Nigh +Nigher Moss +Night Shade +Nightengale +Nightfall +Nighthawk +Nightingale +Nightingale Farm +Nightingale Hall +Nightside +Nightsong +Nightwatch +Niguel +Nijong +Nike +Nike Manor +Niki +Nikisch +Nikki +Nikkie +Nikol +Niland +Nilda +Nile +Niles +Niles Center +Nill +Nillera +Nilsen +Nilson +Nilsson +Nimbey +Nimbin +Nimbrin +Nimbus +Nimco +Nimitz +Nimmo +Nimoola +Nimrick +Nimrod +Nims +Nina +Nina Grey +Nine Acre +Nine Acres +Nine Ashes +Nine Elms +Nine Mile Creek +Ninehams +Ninelands +Nineteenth +Nineteeth +Ninevah +Ninevan +Nineveh +Ninfa +Ninfantino +Ninfield +Ninian +Ninive +Ninn +Ninnings +Ninnis +Nino +Ninth +Niobe +Niobrara +Nioka +Nipawaton +Nipigon +Nipmuc +Nipmuck +Nipowin +Nipper +Nippert +Nippon +Nira +Nircana +Nire +Nirimba +Nirvana +Nisbet +Nish +Nishia +Nishida +Nishuane +Nisich +Nisperos +Nisqually +Nissen +Nissitissit +Nisson +Niswender +Nita +Nithdale +Nithila +Nithsdale +Niton +Nittany +Niven +Nivens +Nix +Nixon +Nizam +Nizels +Nizoni +No Name +No Name Uno +Noah +Noahs Ark +Noak Hill North Hill +Noake Mill +Noakes +Noanet +Noanet Brook +Noanett +Nob +Nob Hill +Nobbs +Nobby +Nobehar +Nobel +Nobel Crest +Nobes +Nobhill +Nobi +Nobile +Nobili +Noble +Noble Fir +Noble Hill +Noble Oak +Noble Rock +Noble Tree +Noble Victory +Nobles Green +Noblestown +Noblewood +Nobscot +Nobu +Noce +Noche Vista +Nock +Nockege +Nockolds +Nodaway +Nodd +Noddin +Nodes +Nodine +Noe +Noel +Noel Park +Noelene +Noeline +Noell +Noemi +Nogal +Nogales +Nohea +Noia +Noid +Noke +Nokes +Nokesville +Nokomis +Nola +Nolan +Nolan Farm +Noland +Nolands Ferry +Nolans +Nolberry +Nolcrest +Nolden +Nolen +Nolet +Nolfield +Nolheight +Nolin +Noll +Nollet +Nolpark +Nolte +Nolting +Noltland Castle +Nolton +Nomad +Nomahegan +Nome +Nomini +Nomis +Nommsen +Nona +Nonantum +Nondorf +Nonesuch +Nonie +Nonington +Nonnie +Nonquit +Nonquitt +Nonset +Nonsuch Court +Nooal +Nook +Noolinga +Noon +Noon Hill +Noonan +Noonan Ranch +Noonans +Noor +Noora +Noorang +Nootka +Nora +Norah +Norair +Noranda +Norba +Norbar +Norbay +Norbeck +Norbeck Square +Norbert +Norbiton +Norbiton Common +Norbreck +Norbridge +Norbrik +Norbroke +Norbrook +Norburn +Norburt +Norbury +Norbury Court +Norbury Hollow +Norcia +Norcliff +Norcot +Norcott +Norcott Farm +Norcrest +Norcroft +Norcross +Norcutt +Nord +Nord Cir +Nordale +Nordek +Nordell +Norden +Nordens +Nordham +Nordhoff +Nordic +Nordic Hill +Nordica +Nordland +Nordlie +Nordling +Nordstrom +Nordyke +Nore +Noreen +Norelius +Norelle +Noren +Nores +Noreuil +Norex +Norfeld +Norfen +Norfield +Norflex +Norfolf +Norfolk +Norfolk Farm +Norfolk House +Norfolk Pine +Norfork +Norgate +Norge +Norgren +Norgrove +Norham +Norhead +Norhyrst +Noria +Norias +Noric +Norich +Noriega +Noriker +Norine +Norlan +Norland +Norlands +Norlee +Norley +Norlinda +Norlington +Norlyn +Norma +Normac +Normal +Normal Hill +Normal School +Normalee +Norman +Norman Center +Norman May +Norman Ridge +Norman Rockwell +Norman Smith +Norman Todd +Normanby +Normand +Normandale +Normandale Highlands +Normandale Lake +Normandie +Normandie Farm +Normandy +Normandy Common +Normandy Crossing +Normandy Heights +Normandy Hill +Normandy Square +Normandy Woods +Normanhurst +Normans +Normansfield +Normanshire +Normanshurst +Normanstead +Normanstone +Normanton +Normantown +Normington +Normon +Normoor +Normurra +Noroton +Norpak +Norrback +Norrbom +Norrels +Norreys +Norridge +Norrie +Norrington +Norris +Norris Canyon +Norris Hill +Norristhorpe +Norroway +Norroy +Norrys +Norse +Norseman +Norsey +Norsey View +Norsham +Norshon +Norsid +Norside +Norstad +Norstead +Norte +Nortech +North +North Abbott +North Abel +North Aberdeen +North Access +North Adams +North Addison +North Airport +North Airway +North Akron +North Alamo +North Albany +North Alder +North Almaden +North Almenar +North Almond +North Alta +North Alvin +North Amelia +North Ames +North Amphlett +North Anderson +North Andover +North Antelope +North Arbour +North Argonne +North Arlington +North Arm +North Ascot +North Ash +North Ashland +North Ashley +North Aspen +North Auburn +North Audley +North Augusta +North Autumn +North Avalon +North Avondale +North B +North Bank +North Barnaby +North Bascom +North Bassett +North Batavia +North Bay +North Bayard +North Bayfield +North Baylor +North Bayou +North Bayshore +North Bayview +North Baywood +North Beacon +North Beeches +North Belcher +North Belfort +North Belgian +North Bella Monte +North Belmont +North Bend +North Benfleet Hall +North Bennet +North Benton +North Bernardo +North Betty +North Beulah +North Big Tree +North Big Trees Park +North Bigelow +North Billerica +North Birkbeck +North Blackfield +North Blaney +North Border +North Boundary +North Bow +North Bowditch +North Bowmanville +North Bragg +North Branch +North Branciforte +North Brandon +North Breach +North Bridge View +North Brigham Hill +North Britton +North Broadgate Town +North Broadway +North Bronte +North Brook +North Brooks +North Bruce +North Brunswick +North Buckingham +North Burgher +North Burke Bradley +North Burling +North Butte +North Butts +North Byron +North C +North California +North Cambridge +North Camden +North Cameron +North Canal +North Cannon +North Canyon +North Capitol +North Carol +North Carolan +North Carolina +North Carpenter +North Carriage +North Cary +North Castle +North Castro +North Cathy +North Cedar +North Center +North Central +North Chanterella +North Chappell +North Chatsworth +North Cheam Priory +North Chesterbrook +North Chestnut +North Chicago +North Circle +North Circular +North Civic +North Claremont +North Clark +North Cleveland +North Clifden +North Clifdon +North Clifton +North Clinton +North Clover +North Cluff +North College +North Columbine +North Columbus +North Comfort +North Common +North Commonwealth +North Conduit +North Coral +North Corporate +North Cottage +North Cottonwood +North Countess +North Country +North Court +North Courtland +North Cove +North Cragmont +North Craig +North Cray +North Creek +North Crescent +North Crest +North Cross +North Croydon +North Crystal Springs +North Cumberland +North Cypress +North D +North Dakota +North Dale +North Dam +North Damen +North Daniels +North Danvers +North Davis Farms +North Dearborn +North Deer +North Delaware +North Desplaines +North Diameter +North Dike +North Dinwiddie +North Dogwood +North Douglas +North Downs +North Dublin Ranch +North Duke +North Dundalk +North Dunton +North Dutton +North Dwyer +North East +North East River +North Eastling +North Eastview +North Echo Lake +North Edge +North Edison +North El Dorado +North El Monte +North Ela +North Eldorado +North Ellsworth +North Elm +North Elmhurst +North Elmwood +North Emerald +North Emerson +North Emory +North End +North Escape +North Estates +North Esther +North Evergreen +North F +North F Bennett +North Fabian +North Fair +North Fair Oaks +North Fairfax Park +North Fairmont +North Falkland +North Falls +North Farm +North Federal +North Ferndale +North Field +North Filbert +North Fillmore +North Fine +North Fish Hatchery +North Fitch Mountain +North Flood +North Folly +North Foothill +North Forcum +North Forest +North Forest Edge +North Fork +North Fork Bennett +North Fort Myer +North Fosket +North Frances +North Frankford +North Franklin +North Freeway +North Fremont +North Front +North Frontage +North Fuel Break +North Funston +North Furry +North G +North Gadsden +North Gail +North Gannon +North Garfield +North Gary +North Gate +North Gates +North Geneva +North Genevieve +North George +North Gertrude +North Gilchrist +North Glebe +North Glenway +North Gogna +North Gold Ridge +North Golden Gate +North Golf Club +North Golfview +North Gower +North Graham +North Granada +North Grand +North Grange +North Granite Hills +North Grant +North Grantham +North Gratton +North Great +North Green +North Greenville +North Greenwood +North Grimes +North Grove +North Grove Hill +North Guard +North Guild +North Haddow +North Hall +North Halls +North Halsted +North Hamilton +North Hamlin +North Hammonds Ferry +North Hancock +North Hangar +North Harbor +North Harbour +North Harriette +North Harrison +North Harry S Truman +North Hart +North Hartley +North Harvard +North Hathaway +North Haven +North Head Scenic +North Heath +North Henry +North Hewitt +North Hickory +North Hicks +North High +North High Rock +North Highbrook +North Highland +North Hilary +North Hildebrand +North Hill +North Hills +North Hillside +North Hillview +North Hinkley +North Hobson +North Holden +North Holt +North Hooper +North Hope +North Hospital +North Hudson +North Hughes +North Humboldt +North Hump +North Hunter +North Huron +North Hutchins +North Hyde +North I +North Idaho +North Ijams +North Indian Boundary +North Inland +North Ione +North Irving +North Island +North Ithaca +North Jack Tone +North Jackson +North Jade +North Jean +North Jefferson +North Jersey +North John +North Johnson +North Jonathan +North K +North Keeble +North Kelly +North Kenmore +North Kennebeck +North Kennedy +North Kennefick +North Kennicott +North Kennison +North Kensico +North Kent +North Kern +North Kiefer +North Kind +North King +North Kingston +North Kirk +North Kitson +North Knoll +North Knollwood +North Knox +North Kolmar +North Krattley +North L +North LaSalle +North Laguna +North Lake +North Lake Shore +North Lakeview +North Lamb +North Lancaster +North Lansdale +North Larrabee +North Larwin +North Lassen +North Laughlin +North Laura Anne +North Laurel +North Leach +North Lear +North Lee +North Leigh +North Lemon +North Lenora +North Leonard +North Lewis Park +North Lexington +North Leyden +North Liberty +North Lillian +North Lincoln +North Linden +North Lingwell +North Linn +North Lively +North Livermore +North Liverpool +North Llewellyn +North Lloyd +North Lockewood +North Locust +North Locust Tree +North Lodge +North Logging +North Loma +North Lonsdale +North Loop +North Los Angeles +North Lucille +North Lycett +North Lydia +North Lynda +North Lynn +North M +North Mac Arthur +North Macarthur +North Mackville +North Mada +North Madeline +North Madison +North Maffei +North Magnolia +North Main +North Malden +North Mallard +North Manchester +North Manley +North Mannheim +North Manor +North Maple +North Marcia +North Margaret +North Margin +North Marine +North Marion +North Market +North Marlton +North Marston +North Marta +North Martingale +North Marwood +North Mary +North Mary Frances +North Mather +North Mathilda +North May +North Mayfair +North Mc Intire +North McCarthy +North McCracken +North McDonnell +North McDowell +North McKinley +North Meacham +North Mead +North Meadow +North Meadows +North Meath +North Merger +North Meridian +North Michael +North Michelle +North Michigan +North Micke Grove +North Miday +North Midland +North Midway +North Military +North Mill +North Mill Creek +North Mills +North Milpitas +North Milton +North Milwaukee +North Mines +North Minnesota +North Mitchell Canyon +North Mittel +North Monarch +North Monroe +North Montello +North Montgomery +North Moore +North Moray +North Morgan +North Morrison +North Mounds +North Mountain +North Mozart +North Munstead +North Murray +North Murrieta +North Myran +North N +North Napa +North Nassano +North Neeley +North New +North New Hope +North Newport +North Nichols +North Nolan +North Norfolk +North North Ripon +North O +North Oak +North Oak Knoll +North Oaks +North Oakwood +North Ocean +North Old Dominion +North Old Hicks +North Olive +North Olympic +North Opal +North Orange +North Orbital +North Orchard +North Oregon +North Orenda +North Orleans +North Oro +North Oxford +North P +North Pacific +North Pacific Av Fron +North Palm +North Palmer +North Parish +North Park +North Park Victoria +North Parkside +North Parkview +North Pastoria +North Patrick +North Patterson +North Patton +North Patuxent +North Payne +North Peak +North Peak Access +North Peardale +North Pearl +North Pearson +North Peatland +North Perimeter +North Perley +North Perryman +North Pershing +North Peter +North Pickett +North Pilgrim +North Pinasco +North Pine +North Pine Grove +North Pine Mountain +North Pinetree +North Pioneer +North Pippin +North Plaza +North Plum Grove +North Plymouth +North Podesta +North Point +North Point Creek +North Pole +North Polo +North Pond +North Pondside +North Pony +North Portal +North Portland +North Potato +North Providence +North Putnam +North Pythian +North Quebec +North Quentin +North Quincy +North Quinn +North Quinsigamond +North Railroad +North Rancho +North Rand +North Randall +North Randolph +North Ravenswood +North Ravine +North Ray +North Rebeiro +North Redwood +North Regatta +North Regent +North Rengstorff +North Rexhame +North Richmond +North Richmond Beach +North Richwood +North Ridge +North Ridge Vista +North Ridgeview +North Ridgewood +North Rio Blanco +North Rio Verde +North Ripley +North Ripon +North Ritz +North River +North Riverside +North Rixey +North Roberta +North Rochester +North Rockridge +North Rocks +North Rodeo Gulch +North Rohlwing +North Rond +North Roper +North Rose +North Rosemore +North Row +North Roy +North Ruff +North Russell +North Ryde +North S +North Sacramento +North Sage +North Salado +North Sally +North San Carlos +North San Joaquin +North San Jose +North San Mateo +North San Pedro +North San Rafael +North San Raymundo +North Sanguinetti +North Santa Cruz +North Scenic +North Schiller +North Schmale +North School +North Schubert +North Sedgwick +North Seminary +North Sequoia +North Serven +North Service +North Shannon +North Shasta +North Shaw +North Sheridan +North Sherman +North Sherwood +North Shetland +North Shoebury +North Shore +North Shoreline +North Sibley +North Side +North Sierra +North Sierra Madre +North Sierra Nevada +North Signal Hill +North Silver Chase +North Silverado +North Sinclair +North Slope +North Snyder +North Somerset +North South +North Sowles +North Spooner +North Spring Creek +North Springer +North Springfield +North Spruce +North Summit +North Sun +North Sunbury +North Sundown +North Sunnyside +North Sunnyvale +North Sunset +North Suttenfield +North Sutter +North Sycamore +North Sycamore Slough +North Taaffe +North Tantau +North Taylor +North Taylor Ranch +North Tazewell +North Temple +North Tenter +North Teria +North Tessier +North Texas +North Thatcher +North Thompson +North Thornton +North Tilden +North Tolman +North Totten +North Tower +North Town +North Tranquility +North Tretheway +North Truro +North Tulip +North Tully +North Tulsa +North Tuxedo +North Union +North Upland +North Upton +North Utah +North Vail +North Vale +North Valensin +North Valley +North Van Buren +North Van Dorn +North Van Horn +North Vancina +North Vasco +North Veach +North Ventura +North Vernal +North Vernon +North View +North Vignolo +North Village +North Vine +North Viola +North Virginia +North Visalia +North Wabash +North Wacker +North Wagner +North Wakefield +North Walker +North Wall +North Wallace +North Walnut +North Walnut Branch +North Walnut Grove +North Ward +North Warren +North Washington +North Water +North Watford +North Watkinson +North Watts +North Waukegan +North Webster +North Wells +North West +North West Arm +North West Hills +North West Main +North Westchester +North Western +North Westside +North Wharf +North Whisman +North White +North White Pine +North Wiget +North Wild Grape +North Wilke +North Willard +North William +North Williams +North Williamson +North Willow +North Wilma +North Wilton +North Winchester +North Windemere +North Windsor +North Winnifred +North Winston +North Winthrop +North Wisconsin +North Wolcott +North Wolf +North Wolfe +North Wood +North Wood Dale +North Woodford +North Woodrow +North Woods +North Woodstock +North Woolwich +North Worcester +North Wright +North York +North de Anza +North del Puerto +North el Camino +North el Circulo +North el Dorado +North el Macero +North la Cresenda +NorthField +Northall +Northallerton +Northam +Northampton +Northanger +Northanna +Northaven +Northbank +Northbay +Northboro +Northborough +Northbourne +Northbrae +Northbriar +Northbridge +Northbrook +Northbrook Court +Northbrooke +Northburgh +Northbury +Northchurch +Northcliff +Northcliffe +Northcoast +Northcoate +Northcombe +Northcote +Northcott +Northcourt +Northcreek +Northcrest +Northcroft +Northcross +Northdale +Northdene +Northdown +Northdowns +Northeast +Northeast Albertson +Northeast Alder +Northeast Alder Crest +Northeast Alderwood +Northeast Ambleside +Northeast Ames Lake +Northeast Anderson +Northeast Apple Cove +Northeast Arcade +Northeast Arness +Northeast Arrowhead +Northeast Avalon +Northeast Baker Hill +Northeast Beach Crest +Northeast Beachwood +Northeast Beadonhall +Northeast Beck +Northeast Belle Hill +Northeast Berry +Northeast Big Rock +Northeast Bill Point +Northeast Birch +Northeast Bird +Northeast Blackster +Northeast Blakeley +Northeast Boat +Northeast Brackenwood +Northeast Brooklyn +Northeast Brownell +Northeast Burns +Northeast Byron +Northeast California +Northeast Campus +Northeast Carpenter +Northeast Carriage +Northeast Casey +Northeast Cherry +Northeast Clare +Northeast Comegys +Northeast Coral +Northeast County Park +Northeast Coyote +Northeast Crescent +Northeast D +Northeast Daphne +Northeast Darby +Northeast Darden +Northeast Day +Northeast Delaney +Northeast Dingley +Northeast Discovery +Northeast Dogwood +Northeast Dorothy +Northeast Douglas +Northeast Eaton +Northeast Endicott +Northeast Erin +Northeast Evergreen +Northeast Ewing +Northeast Federal +Northeast Felicity +Northeast Fenton +Northeast Fir +Northeast Georgia +Northeast Gilman +Northeast Gisle +Northeast Glavin +Northeast Goodfellow +Northeast Gordon +Northeast Grizdale +Northeast Halls Hill +Northeast Hansen +Northeast Harris +Northeast Harrison +Northeast Hawthorne +Northeast Hidden Cove +Northeast High +Northeast High School +Northeast Hillside +Northeast Hilltop +Northeast Hollyhills +Northeast Huckleberry +Northeast Husky +Northeast Iris +Northeast Iverson +Northeast Jade +Northeast Jewell +Northeast John +Northeast Johnson +Northeast Jonquil +Northeast Joshua Tree +Northeast Juanita +Northeast Julep +Northeast Juniper +Northeast Karmenn +Northeast Katsura +Northeast Kelsey +Northeast Kenilworth +Northeast Kennedy +Northeast Kenwood +Northeast Keswick +Northeast Killian +Northeast Kitsap +Northeast Kiwi +Northeast Klabo +Northeast Knight +Northeast Koura +Northeast Lacey +Northeast Lafayette +Northeast Lake Joy +Northeast Larchmount +Northeast Laurel Wood +Northeast Laurelcrest +Northeast Leprechaun +Northeast Lofgren +Northeast Logan +Northeast Loughrey +Northeast Lovgren +Northeast Mabrey +Northeast Magnolia +Northeast Main +Northeast Maine +Northeast Manor +Northeast Maple +Northeast Marine View +Northeast Marion +Northeast Marketplace +Northeast Mary Lou +Northeast McRedmond +Northeast Meadowmeer +Northeast Meigs +Northeast Meyers +Northeast Michelle +Northeast Midway +Northeast Miller +Northeast Monroe +Northeast Monsaas +Northeast Morgan +Northeast Morning +Northeast Moses +Northeast Mulberry +Northeast Munson +Northeast Murden Cove +Northeast NOAA +Northeast Noble +Northeast Northstar +Northeast Norton +Northeast Ocean +Northeast Oddfellows +Northeast Ohio +Northeast Olive +Northeast Oregon +Northeast Pacific +Northeast Park +Northeast Paulanna +Northeast Penrith +Northeast Phillip +Northeast Pine +Northeast Point View +Northeast Points +Northeast Preston +Northeast Puget +Northeast Puget Bluff +Northeast Quail Creek +Northeast Raccoon +Northeast Radford +Northeast Rasperry +Northeast Ravenna +Northeast Redmond +Northeast Reny +Northeast Richardson +Northeast Ring +Northeast Roberts +Northeast Roney +Northeast Rotsten +Northeast Rupard +Northeast Sasquatch +Northeast Seaborn +Northeast Seaview +Northeast Shore +Northeast South Beach +Northeast South Villa +Northeast Sprayfalls +Northeast Springwood +Northeast Spruce +Northeast Sunrose +Northeast Sunset +Northeast Tani Creek +Northeast Theresa +Northeast Tolt Hill +Northeast Torvanger +Northeast Tulin +Northeast Union Hill +Northeast Valley +Northeast Victorian +Northeast Viewcrest +Northeast Virginia +Northeast Warabi +Northeast Wardwell +Northeast Watch Hill +Northeast White Horse +Northeast Wiggins +Northeast Windermere +Northeast Wing Point +Northeast Winthers +Northeast Woldmere +Northeast Wolmere +Northeast Woodinville +Northeast Wyant +Northeast Yaquina +Northeastern +Northedge +Northend +Northenden +Northentry +Northerly +Northern +Northern Dancer +Northern Fences +Northern Lakes +Northern Lights +Northern Neck +Northern Perimeter +Northern Rivers +Northern Service +Northern Spruce +Northern Spy +Northern Woods +Northey +Northfalls +Northfield +Northfleet +Northfleet Green +Northforde +Northfront +Northgate +Northgate Ducks Hill +Northglen +Northgrove +Northhampton +Northholt +Northhome +Northhurst +Northiam +Northill +Northington +Northlake +Northland +Northlands +Northlawn +Northlea +Northleigh +Northmark +Northmead +Northminster +Northmont +Northmoor +Northoak +Northolm +Northolme +Northolt +Northolt Islip Manor +Northolt Ruislip +Northome +Northover Shroffold +Northplain +Northpoint +Northport +Northridge +Northrop +Northrup +Northshire +Northshore +Northside +Northstar +Northstead +Northstream +Northtown +Northumberland +Northumbria +Northup +Northurst +Northvale +Northview +Northview Park +Northville +Northward +Northway +Northweald +Northwell +Northwest +Northwest Blue Ridge +Northwest Boulder Way +Northwest Bright +Northwest Canal +Northwest Culbertson +Northwest Datewood +Northwest Dogwood +Northwest Elford +Northwest Esplanade +Northwest Everwood +Northwest Far Country +Northwest Firwood +Northwest Gilman +Northwest Golden +Northwest Holly +Northwest Inneswood +Northwest James Bush +Northwest Juniper +Northwest Locust +Northwest Mall +Northwest Maple +Northwest Market +Northwest Montreux +Northwest North Beach +Northwest Northwood +Northwest Pacific Elm +Northwest Pebble +Northwest Point +Northwest Puget +Northwest Richwood +Northwest Ridgefield +Northwest Sammamish +Northwest Spring Fork +Northwest Talus +Northwestern +Northwich +Northwick +Northwick Park +Northwind +Northwinds +Northwing +Northwold +Northwood +Northwood Estates +Northwoods +Northwyn +Nortoft +Norton +Norton Creek +Norton Glen +Norton Green +Norton Heath +Nortonia +Nortons +Nortonville +Norumbega +Norval +Norvale +Norvegia +Norvell +Norvella +Norvic +Norview +Norwalk +Norway +Norway Pine +Norwell +Norwest +Norwich +Norwood +Norwood Green +Norwood High +Norwood Hill +Norwood Park +Norwood Square +Norwoods Pond +Nosband +Nosecchi +Nosenzo Pond +Nostaw +Noster +Nostrand +Nostrands +Notabene +Notary +Notch +Notch Brook +Notch Hill +Notch Park +Notchcroft +Notchwood +Note +Notely +Notes +Noteware +Nothing +Notley +Notown +Notre Dame +Notson +Nott +Nottage +Nottaway +Notthumberland +Nottidge +Notting Barn +Notting Hill +Nottingdale +Nottingham +Nottinghill +Nottoway +Nottoway River +Notts +Nottwood +Notus +Nouds +Noumea +Nounsley +Nourse +Nova +Nova Scotia +Novak +Novar +Novara +Novato +Novelda +Novell +Novello +November +Novo +Now +Nowak +Nowell +Nowell Farme +Nower +Nowers +Nowill +Nowland +Nowra +Nowranie +Noyana +Noye +Noyes +Noyna +Noyo +Nsp +Nuala +Nuber +Nubian +Nuclear +Nuestra +Nueva +Nuevo +Nuffield +Nugent +Nugget +Nugget Canyon +Nulang +Nulgarra +Null +Nulla +Nulla Nulla +Nullaburra +Nullawarra +Nulty +Numa +Numantia +Number One First +Numes +Nunan +Nunatak +Nunda +Nundah +Nundle +Nuneaton +Nuneham +Nunes +Nunes Fire +Nungeroo +Nunhead +Nunhide +Nunington +Nunn +Nunnery +Nunnink +Nunroyd +Nunroyd Dale +Nuns +Nuns Canyon +Nunsbury +Nunsfield +Nunthorpe +Nup End +Nupton +Nuptown +Nureyev +Nurge +Nurla +Nurmi +Nurney +Nurragi +Nurran +Nurse Slough +Nurseries +Nursery +Nursery Hill +Nursery Mount +Nurserymans +Nurses +Nurstead +Nurstead Church +Nut +Nut Island +Nut Plains +Nut Tree +Nutberry +Nutbourne +Nutbrook +Nutcombe +Nutcraker +Nutcroft +Nutfield +Nutfield Marsh +Nutgrove +Nutham +Nuthatch +Nuthatcher +Nuthurst +Nutley +Nutmeg +Nutria +Nutshell +Nutswamp +Nutt +Nuttall +Nutter +Nutting +Nuttings +Nuttman +Nutty +Nutty Hill +Nutwell +Nutwell Sudley +Nutwold +Nutwood +Nuvern +Nuwarra +Nuxley +Ny +Nyac +Nyack +Nyan +Nyanga +Nyanza +Nyara +Nydam +Nydeggar +Nye +Nyes +Nyetimber +Nygaard +Nyinya +Nyla +Nylan +Nyland +Nylands +Nyletta +Nymagee +Nymboida +Nymph +Nynehead +Nyngan +Nyora +Nyra +Nyrang +Nystrom +O Brien +O Brine +O Connel +O Connell +O Connor +O Connors +O Day +O Dell +O Donnell +O Fernwood +O Gorman +O Hanneson +O Hara +O Hare +O Harte +O Hatch +O Keefe +O Leary +O Loughlin +O Malley +O Moore +O Neil +O Niell +O Rourke +O Shaughnessy +O View +Oad +Oadby +Oahu +Oak +Oak Arbor +Oak Bank +Oak Bay +Oak Beach +Oak Bend +Oak Bluff +Oak Branch +Oak Bridge +Oak Brook +Oak Brook Club +Oak Brook Hills +Oak Brook Mall +Oak Bucket +Oak Canyon +Oak Center +Oak Chase +Oak Cliff +Oak Cluster +Oak Creek +Oak Crest +Oak Dale +Oak End +Oak Estates +Oak Farm +Oak Farms +Oak Flat +Oak Forest +Oak Front +Oak Gate +Oak Glen +Oak Glenn +Oak Grange +Oak Grove +Oak Hall +Oak Harbour +Oak Haven +Oak Heights +Oak Hill +Oak Hills +Oak Hollow +Oak Island +Oak Ivy +Oak Knoll +Oak Lake +Oak Lakes +Oak Lea +Oak Leaf +Oak Leather +Oak Ledge +Oak Lodge +Oak Manor +Oak Manor Fire +Oak Marr +Oak Meadow +Oak Meadows +Oak Mesa +Oak Mill +Oak Mount +Oak Mountain +Oak Neck +Oak Neck Beach +Oak Park +Oak Park Village +Oak Plaza +Oak Point +Oak Pond +Oak Rail +Oak Ridge +Oak Rim +Oak Rock +Oak Run +Oak Savannah +Oak Shade +Oak Shades +Oak Shadow +Oak Shadows +Oak Shore +Oak Shores +Oak Spring +Oak Springs +Oak Square +Oak Terrace +Oak Trail +Oak Trails +Oak Tree +Oak Tree Farm +Oak Vale +Oak Valley +Oak View +Oak Villa +Oak Vista +Oak Vue +Oak Werth +Oak Wood +OakVille +Oakapple +Oakbank +Oakborne +Oakborough +Oakbridge +Oakbrook +Oakbrook Estates +Oakbrooke +Oakcliffe +Oakcreek +Oakcrest +Oakcroft +Oakdale +Oakdale Estates +Oakdale Farm +Oakdale Ranch +Oakdell +Oakden +Oakdene +Oaken +Oaken Bank +Oakenbottom +Oakenclough +Oakencroft +Oakenden +Oakengrange +Oakengrove +Oakenshaw +Oakenshield +Oaker +Oakes +Oakes Field Service +Oakey +Oakfern +Oakfield +Oakfield Court +Oakfield park +Oakfields +Oakfold +Oakford +Oakglen +Oakgreen +Oakgrove +Oakhall +Oakham +Oakhampton +Oakhanger +Oakhaven +Oakhill +Oakhollow +Oakhouse +Oakhurst +Oakington +Oakington Manor +Oakknoll +Oakland +Oakland Bay +Oakland Beach +Oakland Hills +Oakland Mills +Oakland Park +Oakland School +Oakland Terrace +Oaklands +Oaklands Park +Oaklandvale +Oaklane +Oaklawn +Oaklea +Oakleaf +Oakledge +Oakleigh +Oakleigh Park +Oakley +Oakley Green +Oakley SquarePlender +Oakline +Oaklyn +Oakman +Oakmead +Oakmead Village +Oakmeade +Oakmede +Oakmere +Oakmill +Oakmont +Oakmont Plaza +Oakmoor +Oakmore +Oakover +Oakpointe +Oakport +Oakraider +Oakrest +Oakridge +Oakroyal +Oakroyd +Oaks +Oaks Hunt +Oaksbury +Oaksford +Oakshade +Oakshaw +Oakshire +Oakshore +Oakside +Oakstone +Oakstwain +Oakthorpe +Oakton +Oakton Glen +Oakton Hills +Oakton Knoll +Oakton Mill +Oakton Plantation +Oakton Terrace +Oaktree +Oakura +Oakvale +Oakview +Oakview Gardens +Oakville +Oakville Grade +Oakville Ridge +Oakvue +Oakway +Oakways +Oakwel +Oakwell +Oakwild +Oakwilde +Oakwood +Oakwood Grange +Oakwood Hollow +Oakwood Knoll +Oakwood Manor +Oakwood Park +Oakworth +Oar +Oare +Oarfield +Oasis +Oast +Oast House +Oasthouse +Oat +Oat Chase +Oat Hill +Oat Hill Fire +Oates +Oatfield +Oathall +Oatland +Oatlands +Oatley +Oatley Park +Oatwind +Obal +Obama +Oban +Obbs +Obed +Obeline +Ober +Oberlin +Oberlon +Obermueller +Oberon +Oberstein +Obert +Obertz +Oberweis +Obery +Obispo +Obrad +Obrecht +Obrien +Obry +Observation +Observatory +Observer +Obsidian +Ocala +Ocatillo +Occam +Occident +Occidental +Occidintal +Occoquan +Occoquan Club +Occoquan Forest +Occoquan Oaks +Occupation +Ocean +Ocean Crest +Ocean Front +Ocean Grove +Ocean Harbor +Ocean Hill +Ocean Pier +Ocean Pines +Ocean Point +Ocean Shore +Ocean View +Oceana +Oceania +Oceanic +Oceanlea +Oceanside +Oceanus +Oceanview +Ocelot +Oceola +Ocho Milpas +Ocho Rios +Ochre +Ochs +Ochse +Ockelford +Ockenden +Ockendon +Ockford +Ockham +Ockley +Ockway +Ockwells +Oconnell +Oconnor +Oconto +Octagon +Octagonal +Octavia +Octavius +October +October Hill +Odalming +Odanah +Odard +Oday +Odd Fellows Park +Oddesey +Oddfellow +Oddstad +Oddy +Ode +Odea +Odell +Odell Morten +Oden +Odencroft +Odensos +Odenton +Odeon Shaftesbury +Oder +Odessa +Odette +Odger +Odie +Odiham +Odiham High +Odin +Odlum +Odney +Odom +Odonnell +Odriks +Odysseus +Odyssey +Oehme +Oelke +Oelsner +Oelvig +Oerter +Oeste +Ofallon +Ofarrell +Off Boundry +Off Central +Off Cherry +Off Dean +Off Ella +Off Groton School +Off Grove +Off Harrington +Off Indian Pond +Off Lake +Off Musterfield +Off Peters +Off Pond +Off Second Brook +Off Snow +Off Summer +Off Tarkiln +Off Upper Manor +Off Westford +Offa +Offaly +Offas +Offenbach +Offenham +Offens +Offerton +Offham +Office +Office Park +Officers +Officers Club +Official +Offley +Offner +Offord +Offut +Offutt +Ofria +Ogallah +Ogallala +Ogallala Warpath +Ogard +Ogburn +Ogden +Ogden Falls +Ogden Sannazor +Ogier +Ogilby +Ogilvie +Ogilvy +Ogla +Oglander +Ogle +Oglesby +Oglethorpe +Ogleton +Ogwen +Ohaire +Ohanneson +Ohara +Ohare +Oharron +Ohde +Ohio +Ohio River +Ohlfsen +Ohlone +Ohlones +Ohlson +Ohm +Ohms +Oil Company +Oil Mill +Oitmann +Ojibway +Ojibway Park +Oka +Okala +Okanogan +Okeburn +Okeefe +Okeford +Okehurst +Okemo Ridge +Okeover +Oketo +Okinawa +Okla +Oklahoma +Okley +Okst +Olaf +Oland +Olando +Olanyian +Olaughlin +Olchasky +Olcott +Old +Old Acre +Old Acres +Old Adobe +Old Albany Post +Old Alexandria Ferry +Old Allentown +Old Almaden +Old Altos +Old Amboy +Old Amersham +Old Amory +Old Andover +Old Annapolis +Old Annapolis Neck +Old Antelope +Old Archer +Old Ardmore +Old Army +Old Arrington +Old Ash +Old Ashford +Old Auburn +Old Audubon +Old Ayer +Old Bacon Race +Old Badgins +Old Baltimore +Old Bank +Old Bare Hill +Old Barn +Old Barnaby +Old Barns +Old Barrenjoey +Old Barrington +Old Bartlett +Old Barton +Old Bass Lake +Old Bath +Old Bathurst +Old Battery +Old Battle +Old Bavaria +Old Bay +Old Bay Flat +Old Bay Ridge +Old Bay Shore +Old Bayberry +Old Bayside +Old Beach +Old Beach Glen +Old Beaconsfield +Old Bear Creek +Old Beaver Brook +Old Bedford +Old Beecroft +Old Bell +Old Benfield +Old Bennett Ridge +Old Bergen +Old Bernal +Old Berowra +Old Berry +Old Bethnal Green +Old Bethpage +Old Big Basin +Old Big Trees +Old Billerica +Old Birch +Old Birdsville +Old Birley +Old Bisley +Old Bix +Old Blackhawk +Old Blacksmith +Old Blackstone +Old Blacktop +Old Bloomfield +Old Blossom Hill +Old Bluff +Old Bolton +Old Bond +Old Bond Mill +Old Bonifant +Old Boonton +Old Boston +Old Boston Post +Old Bracknell +Old Branch +Old Brandy Hill +Old Brandywine +Old Breakneck Hill +Old Bren +Old Brentford +Old Brewery +Old Briar +Old Brick +Old Brick Yard +Old Brickfield +Old Bridge +Old Bridge Matawan +Old Britton +Old Brompton +Old Brook +Old Brooks +Old Browns +Old Browns Valley +Old Bucklodge +Old Buffalo Grove +Old Burke Lake +Old Burley +Old Burlington +Old Bury Lodge +Old Bush +Old Cabin +Old Calaveras +Old Calvert +Old Calvine +Old Camp +Old Camp Meade +Old Campbell +Old Campus +Old Canal +Old Cannon +Old Canterbury +Old Canyon +Old Cape Saint Claire +Old Capell Valley +Old Carriage +Old Carroll +Old Cart +Old Cart Path +Old Castle +Old Castle Hill +Old Causeway +Old Cazadero +Old Cañada +Old Cedar +Old Cedar Lake +Old Cedar Swamp +Old Cemetery +Old Center +Old Central +Old Centre +Old Centreville +Old Chain Bridge +Old Changebridge +Old Channel +Old Chantry +Old Chapel +Old Charlton +Old Charter +Old Chatham +Old Checker +Old Cheesequake +Old Cherry +Old Cherry Hill +Old Chertsey +Old Chester +Old Chesterbrook +Old Chestnut +Old Chestnut Ridge +Old Chicago +Old Childrens Home +Old Chimney +Old Chinatown +Old Chittenden +Old Church +Old Cistern +Old City +Old Claygate +Old Clifton +Old Clinton +Old Clough +Old Club +Old Clubhouse +Old Coach +Old Coaling +Old Coast +Old Colchester +Old College +Old Collington +Old Colonial +Old Colony +Old Colony Cove +Old Columbia +Old Commack +Old Common +Old Compton +Old Conant +Old Concord +Old Contemptibles +Old Corona +Old Cote +Old Country +Old County +Old Court +Old Court House +Old Courthouse +Old Cove +Old Cow Pasture +Old Crabtree +Old Crain +Old Crawley +Old Creek +Old Crescent +Old Cross +Old Crossing +Old Crow Canyon +Old Crown +Old Cumberland +Old Cutter Mill +Old Dairy +Old Dairy Farm +Old Dartford +Old Davidsonville +Old Davis +Old Davis Ford +Old Deale +Old Dean +Old Dee +Old Deer Field +Old Deerfield +Old Delaney +Old Denville +Old Derby +Old Devonshire +Old Diamond +Old Diamond Hill +Old Diehl +Old Dobbin +Old Dock +Old Doctors +Old Dominion +Old Donaldson +Old Dorsey +Old Dorsey Run +Old Dory +Old Douglas +Old Dover +Old Dublin +Old Duff +Old Duncan Grade +Old Dundee +Old Dunstable +Old Dutch +Old Eagle Rock +Old Earleigh Heights +Old East +Old East Neck +Old Eaton +Old Edge +Old El Pueblo +Old Electric +Old Elland +Old Elm +Old Elmdale +Old Elstead +Old England +Old English +Old Enterprise +Old Eola +Old Epping Forest +Old Epsom +Old Esher +Old Essex +Old Estate +Old Evans +Old Excelsior +Old Faceful +Old Fairview +Old Faith +Old Falls +Old Farleigh +Old Farm +Old Farm Bridge +Old Farmers +Old Farmingdale +Old Farms +Old Farnham +Old Fence +Old Ferry +Old Ferry Slip +Old Field +Old Field Point +Old Fisher +Old Fishery +Old Flanders +Old Fleet +Old Fletchertown +Old Fold +Old Foothill +Old Ford +Old Forest +Old Forestville +Old Forge +Old Forge Hill +Old Fort +Old Fort Hills +Old Fort Smallwood +Old Foss Valley +Old Foundry +Old Framingham +Old Franconia +Old Frank Tippett +Old Franklin +Old Franklin Lake +Old Frederick +Old Freeman +Old French Horn +Old Frensham +Old Fulton +Old Furnace Colony +Old Gallows +Old Game Preserve +Old Garden +Old Garrison +Old Gary +Old Gate +Old Georges +Old Georgetown +Old German +Old Gibbons +Old Gilroy +Old Glen +Old Glenfield +Old Glenhaven +Old Glenn Dale +Old Glenview +Old Glory +Old Gloucester +Old Gold Mine +Old Goodenow +Old Gormely +Old Grafton +Old Graham Hill +Old Grand +Old Great +Old Great North +Old Green +Old Green Bay +Old Green Valley +Old Greendale +Old Greenland Beach +Old Greenville +Old Greenwich +Old Greenwood +Old Groton +Old Grove +Old Guildford +Old Gunpowder +Old Hadlow +Old Half Day +Old Hall +Old Hall Mill +Old Ham +Old Hammonds Ferry +Old Harbor +Old Harpenden +Old Hart +Old Harter +Old Harvard +Old Haslemere +Old Haswell Park +Old Haul +Old Hauppauge +Old Hawkesbury +Old Hawthorne +Old Hazel Dell +Old Heath +Old Heights +Old Herald Harbor +Old Herns +Old Hertford +Old Hey Beck +Old Heyes +Old Hickory +Old Hicks +Old Higgins +Old High +Old High Plain +Old Highbridge +Old Highgate +Old Hill +Old Hillary +Old Hills +Old Hillside +Old Hobart +Old Hoboken +Old Hockley +Old Hollow +Old Holly +Old Home +Old Homesdale +Old Homestead +Old Hommocks +Old Hook +Old Hoop Pole +Old Hopkington Spring +Old Hopkins +Old Horner +Old Horns +Old Horsham +Old House +Old Howletts +Old Hudson +Old Hull +Old Hundred +Old Hunt +Old Hunt Club +Old Ice House +Old Illawarra +Old Indian +Old Indian Head +Old Indianhead +Old Institute +Old Ironsides +Old Ively +Old Jackson +Old Jacksonville +Old Jamaica +Old Jamaicia +Old James +Old Japanese +Old Jericho Park +Old Jerome +Old Jerusalem +Old Jessup +Old Jonas Hill +Old Jones +Old Jones Gulch +Old Kahns +Old Keene Mill +Old Kellogg +Old Kennels +Old Kensico +Old Kent +Old Kenton +Old Kenville +Old Ketchum +Old Killam Hill +Old Kiln +Old Kinderhook +Old King +Old Kings +Old Kingsbridge +Old Kingston +Old Kirk +Old Kirker Pass +Old Knebworth +Old Knollwood +Old Kurrajong +Old Lafox +Old Lake +Old Lake End +Old Lake Herman +Old Lakes +Old Lakeville +Old Lancaster +Old Landing +Old Landover +Old Lansdowne +Old Lantern +Old Largo +Old Las Palmas +Old Laurel +Old Lawley Toll +Old Leary +Old Lee +Old Leigh +Old Lemont +Old Lenham +Old Leominister +Old Leonardtown +Old Leumeah +Old Lexington +Old Liberty +Old Library +Old Lincoln +Old Line +Old Linslade +Old Litenfield +Old Litten +Old Littleton +Old Liverpool +Old Livorna +Old Locust +Old Lodge +Old Log +Old Logging +Old London +Old Long Lake +Old Lottsford +Old Lowell +Old Lunenburg +Old Lyme +Old Mac Donald +Old Macdonald +Old Madrone +Old Magothy Bridge +Old Maidstone +Old Main +Old Malden +Old Maldon +Old Mamaroneck +Old Manchester +Old Manor +Old Mansion +Old Maple +Old Marbury +Old Market +Old Marlboro +Old Marsh +Old Marsh Hill +Old Marshall Hall +Old Maryland +Old Massachusetts +Old Matawan +Old Mayo +Old Mazda Brook +Old McHenry +Old McLean Village +Old Mead +Old Meadow +Old Medway +Old Meeting House +Old Meetinghouse +Old Mendon +Old Merlins +Old Merrimac +Old Merrow +Old Middlesex +Old Middletown +Old Mill +Old Mill Bottom +Old Mill Grove +Old Mill Pond +Old Mill Swamp +Old Millbury +Old Millstone +Old Millville +Old Mine +Old Mitchellville +Old Moat +Old Montague +Old Monte Rio +Old Monterey +Old Montgomery +Old Moor +Old Mori +Old Morton +Old Moss +Old Mount +Old Mount Skirgo +Old Mount Vernon +Old Mountain +Old Mountain View +Old Mouth +Old Mud +Old Muddy Creek +Old Muirkirk +Old Musket +Old Mystic +Old Nahant +Old Nans +Old Napa +Old Naperville +Old Nasonville +Old Nazeing +Old Neck +Old Nepperhan +Old New +Old New Bridge +Old New Brunswick +Old New Utrecht +Old Newbridge +Old Newland +Old Nichol +Old Nike Missle Site +Old North +Old North Church +Old North Main +Old Northern +Old Northfield +Old Northport +Old Nourse +Old Nutley +Old Oak +Old Oak Common +Old Oak Creek +Old Oaken Bucket +Old Oaks +Old Ocean +Old Odenton +Old Odiham +Old Orangeburg +Old Orchard +Old Otford +Old Otter Lake +Old Out +Old Ox +Old Oxbow +Old Oxford +Old Pacheco Pass +Old Page +Old Page Mill +Old Palace +Old Palatine +Old Palisade +Old Palmer +Old Paradise +Old Paris +Old Parish +Old Park +Old Parkbury +Old Parker +Old Parrin +Old Parsippany +Old Parvis +Old Pascack +Old Pasture +Old Pattens +Old Patterson Pass +Old Pear Tree +Old Pearson +Old Peartree +Old Pelhem +Old Pennington +Old Penzance +Old Perry +Old Petaluma Hill +Old Pewterspear +Old Philadelphia +Old Pickard +Old Piedmont +Old Pilkington +Old Pillings Pond +Old Pine +Old Piscataway +Old Pitt Town +Old Pittwater +Old Placerville +Old Plain +Old Plains +Old Plank +Old Planters +Old Pleasant +Old Plum Grove +Old Plum Point +Old Plymouth +Old Point +Old Pole +Old Pond +Old Porter +Old Portland +Old Portsmouth +Old Post +Old Post Office +Old Potbridge +Old Pottery +Old Pound +Old Powerhouse +Old Pratt +Old Princehanes +Old Princeton +Old Priory +Old Prospect +Old Prospect Hill +Old Providence +Old Public +Old Pye +Old Quarry +Old Quarterfield +Old Quebec +Old Queen +Old Quincy +Old Railroad Grade +Old Railroad Grade Fr +Old Ranch +Old Ranch Estates +Old Rancheria +Old Rand +Old Randolph +Old Rangeway +Old Raritan +Old Razorback +Old Reading +Old Rectory +Old Redmond +Old Redstone +Old Redwood +Old Regent +Old Reigate +Old Renwick +Old Reserve +Old Reservoir +Old Reston +Old Richards +Old Richardson +Old Ridge +Old Ridge Path +Old Rifle Camp +Old Right +Old Ritchie +Old Riva +Old River +Old Riverside +Old Riverview +Old Roberts +Old Rock Meadow +Old Rockaway +Old Rockbridge +Old Rockford +Old Rockland +Old Rockport +Old Rogers +Old Rolling +Old Rondo +Old Roxbury +Old Rubbly +Old Ruislip +Old Ruland +Old Run +Old Rutherford +Old Ryan +Old Saint Charles +Old Salem +Old Salisbury +Old Samuel +Old San Francisco +Old San Jose Turnpike +Old San Pablo Dam +Old Sand +Old Sand Creek +Old Sandy Pond +Old Sandy Spring +Old Sanford +Old Santa Rita +Old Saw Mill +Old Saw Mill River +Old Sawmill +Old Sax +Old Sayles Hill +Old Scaggsville +Old Schaumburg +Old School +Old School House +Old Schoolhouse +Old Seacoal +Old Searingtown +Old Settlers +Old Seven Locks +Old Shade +Old Shady Oak +Old Shawsheen +Old Shelter Rock +Old Shepard +Old Shipyard +Old Shire +Old Shirley +Old Shore +Old Short Hills +Old Siler Logging +Old Silver Hill +Old Skaggs Springs +Old Skokie Valley +Old Slade +Old Sleepy Hollow +Old Sleigh Hill +Old Smalleytown +Old Smith +Old Smithfield +Old Smiths +Old Smithy +Old Snakey +Old Sneech Pond +Old Soar +Old Soda Springs +Old Solomons Island +Old Somerset +Old Sonoma +Old Soper +Old South +Old South Head +Old South Highland +Old South Lambeth +Old South Main +Old South River +Old Southend +Old Spanish +Old Sprain +Old Spring +Old Springfield +Old Spye +Old Sudbury +Old Sudley +Old Sugar +Old Suisun +Old Suisun Knoxville +Old Sulphur Spring +Old Summer +Old Summit +Old Surey +Old Surrenden Manor +Old Sutton +Old Sydney +Old Tamarack +Old Tappan +Old Taren Point +Old Tarrytown +Old Taunton +Old Tavern +Old Telegraph +Old Temple Hills +Old Terrace +Old Tester +Old Thieves +Old Timber +Old Timbers +Old Tobey Garden +Old Toll Bridge +Old Tolson Mill +Old Topsfield +Old Tote +Old Tovil +Old Tower +Old Town +Old Towne +Old Townline +Old Trace +Old Track +Old Trail +Old Tree +Old Triangle +Old Trull +Old Tully +Old Tunnel +Old Turkey Point +Old Turnpike +Old Tye +Old Tyler +Old Tyngsboro +Old Up Yonder +Old Upton +Old Uxbridge +Old Vallecitos +Old Valley +Old Vee Fire +Old Vic Theatre +Old Vicarage +Old Village +Old Vine +Old Vineyard +Old Waddling +Old Wagon +Old Walker Mill +Old Wallgrove +Old Wallum Lake +Old Walnut +Old Walt Whitman +Old Wapping +Old Ward +Old Warm Springs +Old Warrington +Old Washington +Old Water Oak Point +Old Waterford +Old Waterloo +Old Watford +Old Watling +Old Waugh Chapel +Old Webster +Old Weiland +Old Well +Old Wellington +Old West +Old West Center +Old West Central +Old West Elm +Old West Julian +Old West Main +Old West Mt Pleasant +Old West Wrentham +Old Westboro +Old Westbury +Old Western +Old Westford +Old Weston +Old Wheatley +Old Whetsted +Old Whinchester +Old White Bear +Old White Plains +Old White Rock +Old Whitins +Old Whitley Wood +Old Wickford +Old Wickham +Old Wickhurst +Old Wildwood +Old Willard +Old Willis +Old Willow +Old Willows +Old Wilmot +Old Winchester +Old Winchester Hill +Old Windsor +Old Winery +Old Winkle Point +Old Winter +Old Woking +Old Wokingham +Old Wolf +Old Wolomolopoag +Old Womans Creek +Old Wood +Old Woods +Old Woodstock +Old Wool +Old Woolwich +Old Woosehill +Old Worcester +Old Yates Ford +Old Yerba Buena +Old York +Old del Monte +Old llandilo +OldField +Oldaker +Oldarker +Oldberry +Oldborough +Oldbridge +Oldbury +Oldcastle +Oldchurch +Olddale +Olde +Olde Ballardvale +Olde Carriage +Olde Coach +Olde Colony +Olde Crafts +Olde English +Olde Farm +Olde Gatehouse +Olde Greenhouse +Olde Half Day +Olde Hickory +Olde Ivey +Olde Kent +Olde Lantern +Olde Lyme +Olde Meeting House +Olde Mill +Olde Pasture +Olde Port +Olde Salem +Olde Surrey +Olde Towne +Olde Village +Olde Woods +Olden +Older Creek +Oldershaw +Oldert +Oldewood +Oldfield +Oldfields +Oldham +Oldhill +Oldhouse +Oldis +Oldknow +Oldlands +Oldmill +Oldmoor +Oldridge +Olds +Olds Park +Oldsandy Hollow +Oldstead +Oldtown +Oldway +Oldwood +Oldwoods +Ole Dirt +Ole Farm +Ole Tree +Olea +Olean +Oleander +Olearia +Oleary +Olema +Olema Bolinas +Olen +Olentangy +Olesen +Olf Fold +Olga +Olima +Olin +Olinda +Olinger +Olinville +Oliphant +Oliva +Olivant +Olivas +Olive +Olive Branch +Olive Canyon +Olive Grove +Olive Hill +Olive Lee +Olive Ranch +Olive School +Olive Shapley +Olive Spring +Olive Tree +Olivebranch +Olivegate +Oliveleaf +Oliver +Oliver Cromwell +Oliver Swain +Oliver Wentworth +Olivera +Olivers +Olivers Shop +Oliveswood +Olivet +Olivetree +Olivette +Oliveview +Olivewood +Olivia +Olivian +Olivier +Olivine +Oll la Honda +Olleberie +Ollerbarrow +Ollersett +Ollershaw +Ollerton +Olley +Ollier +Ollies Turn +Olliffe +Ollin +Olm +Olma +Olmar +Olmi Landrith +Olmo +Olmo Fire +Olmstead +Olmsted +Olney +Olney Keech +Olney Laytonsville +Olney Mill +Olney Sandy Spring +Olo +Olofson +Olola +Olphert +Olsen +Olson +Olson Farm +Olson Frontage +Olson Highway Service +Olson Hwy Service +Oltmann +Olvega +Olven +Olvera +Olyffe +Olympia +Olympia Fields +Olympic +Olympic Oaks +Olympic View +Olympus +Olyphant +Omaban +Omaha +Omaha Beach +Omak +Oman +Omar +Omara +Omaroo +Omaru +Omati +Omdurman +Omeara +Omec Park +Omega +Omeo +Omer +Omira +Omisol +Ommel +Omni +Omnibus +On Orbit +On The +Ona +Onamog +Onandaga +Onarga +Onchan +Onderdonk +Ondina +Ondine +One Beacon +One Bridge +One End +One Eversholt +One Executive +One Hundred +One Marina Park +One Mill +One Oak +One Palace +One Paradise +One Penny +One Pin +One Spring +One Tree +One Tree Hill +One Western +Oneata +Onedia +Oneel +Onehtah +Oneida +Oneil +Oneill +Oneonta +Oneto +Ongar +Ongley +Onieda +Onion Hill +Onion Patch +Onique +Onley +Onondaga +Onondago +Onorato +Onra +Onset +Onslow +Onsrud +Ontario +Ontario Bay +Ontarioville +Onward +Onwentsia +Onyx +Oolah +Oolooteka +Oorana +Oorin +Oozewood +Opah +Opal +Opal Cliff +Opala +Opalo +Opalocka +Opatrny +Opel +Open +Open Hearth +Open Meadow +Open Run +Open View +Opengate +Openshaw +Openshaw Fold +Openwood +Operations +Operators +Opey +Ophelia +Ophir +Oping +Opitz +Oppenheim +Opperman +Oppidans +Opportunity +Optimist +Optimo +Opus +Ora +Ora Glen +Ora Lea +Orache +Oracle +Oradell +Orallo +Oram +Orama +Oran +Oran Park +Orana +Orange +Orange Blossom +Orange Brace +Orange Grove +Orange Heights +Orange Hill +Orange Hunt +Orange Plank +Orange Tree +Orange View +Orangeburg +Orangeburgh +Orangery +Orangetree +Orangevale +Orangeville +Orangewood +Oransay +Orara +Oratam +Oratava +Oraton +Orawaupum +Orazio +Orazmi +Orb +Orbach +Orbain +Orbel +Orbell +Orbison +Orbit +Orcam +Orchad +Orchads +Orchard +Orchard Acres +Orchard Beach +Orchard Blossom +Orchard Brook +Orchard Canyon +Orchard City +Orchard Club +Orchard Creek +Orchard End +Orchard Estates +Orchard Farm +Orchard Gate +Orchard Gateway +Orchard Grove +Orchard Heights +Orchard Hill +Orchard Hill Park +Orchard Hills +Orchard House +Orchard Lake +Orchard Loop +Orchard Meadow +Orchard Meadows +Orchard Park +Orchard Point +Orchard Pointe +Orchard Ridge +Orchard Run +Orchard Spring +Orchard Springs +Orchard Valley +Orchard View +Orchardfield +Orchardhill +Orchardleigh +Orchehill +Orchid +Orchill +Orchird +Orchis +Ord +Ordak +Orde Hall +Ordell +Ordinal +Ordinance +Ordnance +Ordsall +Ordway +Ore +Oread +Oreana +Orebaugh +Oregano +Oregon +Orehr +Orem +Orence +Orestan +Oreste +Orestimba +Orestimba Creek +Oreston +Oreta +Orford +Organ +Organ Hall +Organ Park +Orgill +Ori +Orian +Oriana +Oric +Orick +Oriel +Orielton +Orient +Orient Fishtail +Orienta +Oriental +Oriente +Oriley +Orin +Orinda +Orinda View +Orinda Vista +Orindawoods +Orinoco +Oriol +Oriole +Orion +Orion Club +Oriskany +Orison +Orissa +Oritan +Orizaba +Orkla +Orkney +Orlan +Orlan Brook +Orland +Orland Square +Orland Woods +Orlanda +Orlando +Orleans +Orleston +Orley Farm +Orlick +Orlo +Orloff +Orlop +Orly +Orman +Ormand +Ormandy +Ormanton +Ormart +Ormbrek +Orme +Ormeley +Ormerod +Ormesby +Ormiston +Ormond +Ormond Park +Ormonde +Ormont +Ormpington +Ormrod +Ormsay +Ormsbee +Ormsby +Ormsgill +Ormside +Ormskirk +Ormston +Ornan +Ornatus +Orne +Ornella +Ornellas +Oro +Orogrande +Oronga +Orono +Orono Oaks +Oronoco +Orosz +Oroville +Orphanage +Orpheus +Orpin +Orpington +Orpington Bypass +Orpington High +Orr +Orr Ranch +Orral +Orrel +Orrell +Orren +Orrin +Orrin White +Orrington +Orris +Orrishmere +Orrison +Orrmo +Orsett +Orsett Heath +Orsetti +Orsini +Orsman +Orson +Orston +Ortalon +Ortega +Orth +Ortins +Orto +Orton +Ortona +Orts +Orval +Orvietto +Orville +Orvis +Orwell +Orwood +Osage +Osbert +Osberton +Osborn +Osborne +Osbourne +Osburn Park +Oscar +Oscecla +Osceola +Osea +Oser +Osgathorpe +Osgood +Osidge +Osier +Osiers +Osio +Ositos +Oskaloosa +Oslac +Oslo +Osloer +Osman +Osmer +Osmium +Osmond +Osmondthorpe +Osmund +Osmundsen +Osnaburgh +Osney +Oso +Osprey +Osprey Point +Ospringe +Osroy +Ossage +Ossamequin +Ossary +Osseo +Ossian Hall +Ossie +Ossipee +Ossippee +Ossory +Ossulston +Ossulton +Ostade +Ostego +Ostenberg +Ostend +Oster +Osterberg +Osterley +Osterley Park +Osterly +Osterly Park View +Osterman +Osterport +Ostlers +Ostrander +Ostrich +Ostrowski +Oswald +Osward +Oswego +Oswego Plains +Oswell +Oswin +Oswyth +Otago +Otay +Otero +Otford +Otham +Othello +Othen +Other Day +Othman +Otis +Otis Bowen +Otis Hill +Otisco +Otisfield +Otley +Otley Burras +Otley Old +Otlinge +Otoole +Otsego +Otsigo +Ott +Otta +Ottawa +Ottawa Bend +Ottaway +Otter +Otter Creek +Otter Lake +Otter Pond +Otter Ridge +Otter Rock +Otter Run +Otterbourne +Otterburn +Otterden +Otterham Quay +Otterhole +Otteridge +Ottermead +Otterson +Otterspool +Ottey +Ottilia +Ottley +Otto +Otto Hummer +Ottowa +Ottumwa +Ottways +Otway +Ouchthorpe +Oudle +Oughtonhead +Oughtrington +Ouilmette +Oulder Hill +Oulton +Oundle +Our +Our Hill +Our Peak +Ourimbah +Ourisman +Oursler +Oursler Park +Ourtime +Ousden +Ouseley +Ousley +Oust +Outcalt +Outer +Outer Loop +Outer Ring +Outer Zayante +Outerbridge +Outfield +Outgang +Outgate +Outhaul +Outing +Outings +Outlet +Outlook +Outlook Heights +Outlook Hill +Outpost +Outram +Outrigger +Outward Common +Outwater +Outwich +Outwood +Outwood Church Moxon +Outwood Common +Outwood Farm +Ouzlewell Green Green +Oval +Ovalstone +Ovaltine +Ovejas +Oven Hill +Ovenden +Ovenhouse +Ovens +Over +Over Brook +Over Hill +Over Ridge +Over Rock +Over Town +Overacker +Overbeck +Overbridge +Overbrook +Overbury +Overby +Overchase +Overcliff +Overcoat +Overcrest +Overdale +Overdene +Overdown +Overend +Overend Green +Overens +Overett +Overfield +Overford +Overgate +Overheart +Overheiser +Overhill +Overhiser +Overing +Overion +Overkamp +Overlake +Overland +Overland Park +Overlea +Overleaf +Overledge +Overleigh +Overlinks +Overlock +Overlook +Overlook Ridge +Overly +Overmead +Overmont +Overmoor +Overmount +Overpass +Overpeck +Overrun +Overshores +Overstone +Overton +Overview +Overwood +Overy +Ovesdon +Oving +Ovington +Owaisa +Owaissa +Owasco +Owasso +Owasso Heights +Owasso Hgts +Owasso Hills +Owasso Hts +Owatonna +Owen +Owen Brown +Owen Sound +Owencroft +Owenite +Oweno +Owens +Owens Farm +Owens Glen +Owens Lake +Owens Valley +Owensville +Owensville Sudley +Owings +Owings Beach +Owl +Owl Creek +Owl Harbor Levee +Owl Hill +Owl Ridge +Owl Swamp +Owl Tree +Owlcotes +Owler +Owlerbottom +Owles +Owley Wood +Owls Cove +Owls Head Bluff +Owls Nest +Owlsmoor +Owlswood +Owlwood +Owna +Owning +Owsley +Ox +Ox Bow +Ox Cart +Ox Hey +Ox Hill +Ox Hunt +Ox Meadow +Ox Pasture +Ox Ridge +Ox Team +Oxberry +Oxborough +Oxbow +Oxbow Creek +Oxbow Marina +Oxbridge +Oxburough +Oxbury +Oxen +Oxen Hill +Oxenbourne +Oxenbridge +Oxendale +Oxenden +Oxenden Wood +Oxendon +Oxenford +Oxenhoath +Oxenhouse +Oxenpark +Oxestalls +Oxford +Oxford Alcove +Oxford Bay +Oxford Circus Vere +Oxford Falls +Oxford Mill +Oxford Square +Oxford Wells +Oxfordshire +Oxform +Oxgate +Oxhey +Oxholm +Oxlease +Oxley +Oxley Farm +Oxley Shaw +Oxley Square +Oxleys +Oxleyshaw +Oxlow +Oxman +Oxnard +Oxney +Oxon +Oxon Hill +Oxon Hill Farm +Oxon Park +Oxon Run +Oxonian +Oxshott +Oxted +Oxton +Oxwell +Oxwood +Oyama +Oyster +Oyster Bay +Oyster Creek +Oyster Point +Oyster Pond +Oz +Ozanam +Ozark +Ozier +Ozkan +Ozone +Ozonia +P Fernwood +P Prairie +P Tree +PAH Fourth +PIA +PLeasance +Paarl +Pabis +Pabje +Pablo +Pablo Vista +Pac +Paca +Pace +Pacella +Pacella Park +Pacer +Pacey +Pachateau +Pacheco +Pacheco Creek +Pacheco Ridge +Pacific +Pacific Commons +Pacific Heights +Pacific Rim +Pacific Shore +Pacific View +Pacifica +Pacifico +Pacifiv View +Pacina +Pacini +Packanack Lake +Packard +Packards +Packcard +Packenham +Packer +Packet Boat +Packet Landing +Packetboat +Packham +Packhorse +Packing House +Packington +Packman +Packmore +Packmores +Packsaddle +Paco +Padan School +Padbury +Padcroft +Paddack +Padden +Paddenswick +Paddick +Paddington +Paddison +Paddle +Paddle Boat +Paddle Wheel +Paddlesworth +Paddlewheel +Paddock +Paddock Hill +Paddock House +Paddockhall +Paddockhurst +Paddocks +Paddockview +Paddon +Paddy +Paddy Creek +Paddy Miller +Padelford +Pademelon +Paderewski +Padero +Padfield +Padfield Main +Padgate +Padgett +Padons +Padova +Padre +Padre Island +Padres +Padsole +Padstow +Padua +Paducah +Padula +Padwell +Padwick +Padworth +Pafel +Paff +Paganini +Pagano +Pagden +Page +Page Brook +Page Farm +Page Green +Page Heath +Page Hill +Page Mill +Pageant +Pagebrook +Pagehurst +Pagel +Pageland +Pagenkopf +Pages +Paget +Pagham +Pagitt +Paglesham +Pagnell +Pagni +Pagoda +Pagonica +Pagum +Pahl +Paice +Paidge +Paige +Paige Glen +Paignton +Pailet +Paine +Paines +Paines Brook +Painesfield +Pains +Painsthorpe +Painswick +Paint +Paint Branch +Paintbrush +Painted Daisy +Painted Feather +Painted Leaf +Painted Pony +Painted Post +Painted Rock +Painted Turtle +Painted Wagon +Painters +Painters Ash +Painters Creek +Paintridge +Paints +Paisley +Paiute +Pajaro +Pajaro Hills +Pakachoag +Pakan +Pake +Pakeman +Pakenham +Pal +Pala +Palace +Palace Gardens +Palace Gates +Palace Green +Palace View +Palacio +Paladena +Paladin +Paladini +Paladino +Palamar +Palamino +Palamos +Palatine +Palatino +Palatka +Palawan +Palazzo +Pale +Pale Morning Dun +Paleologos +Palermo +Palesgate +Palewell Common +Paley +Palfrey +Palgrave +Paliamentary +Palin +Paling +Palinwood +Palisade +Palisades +Palisades Center +Palisades Interstate +Palisadium +Palisadse +Palissy +Palladay +Palladian +Palladio +Pallant +Pallas +Palleschi +Pallingham +Palliser +Pallister +Palm +Palm Beach +Palm Canyon +Palm Circle +Palm Grove +Palm Haven +Palm Meadow +Palm Mesa +Palm Ridge +Palm Spring +Palm Springs +Palm View +Palma +Palmar +Palmarsh +Palmaya +Palmcrest +Palmdale +Palmeira +Palmer +Palmer Creek +Palmer Hill +Palmer House +Palmer Mill +Palmer Park +Palmer Ranch +Palmer School +Palmera +Palmers +Palmers Green +Palmers Hill +Palmersfield +Palmerson +Palmerston +Palmerstone +Palmetta +Palmetto +Palmetto Dunes +Palmgren +Palmgrove +Palmia +Palmieri +Palmira +Palmito +Palmquist +Palms +Palmtag +Palmtree +Palmview +Palmwood +Palmyra +Palo +Palo Alto +Palo Amarillo +Palo Hills +Palo Santo +Palo Verde +Palo Vista +Palom +Paloma +Palomar +Palomares +Palomino +Palona +Paloro +Palos +Palos Springs +Palos Verdes +Palos West +Palou +Paloverde +Palsa +Palsted +Palwaukee +Pam +Pam Ann +Pam Anne +Pamala +Pamarco +Pamarella +Pamber +Pambula +Pamela +Pamella +Pamequa +Pamlar +Pamlico +Pampano +Pampas +Pamper +Pampisford +Pamplona +Pamrapo +Pan +Pan Am +Pan Toll +Panabaker +Panama +Panania +Pancake +Pancake Hollow +Pancras +Panda +Pandola +Pandolfi +Pandora +Pandorea +Panetta +Panfield +Pangbourne +Pangburn +Pangee +Panitz +Panjon +Pank +Pankhurst +Pankle +Pankridge +Panmuir +Panmure +Pannell +Pannonia +Panoche +Panola +Panorama +Panorama Heights +Panoramic +Panoz +Pansey +Panshanger +Pansmith +Pansy +Pantalis +Pantano +Panteny +Pantera +Panther +Panther Ridge +Panthers Ridge +Pantile +Pantlings +Panton +Pantooset +Pantry +Panxworth +Panzano +Paola +Paoli Loop +Paolo +Paomet +Paon +Paone +Papa +Papago +Papaw +Papaya +Pape +Papeete +Paper +Paper Birch +Paper Mill +Paper Mill Creek +Papera +Paperbark +Papercourt +Papermill +Papillion +Papillon +Papineau +Papoose +Papoose Lake +Papp +Pappani +Pappas +Pappenburg +Pappy +Paprocki +Paprota +Papsco +Papworth +Paquin +Par +Par Four +Par Three +Parada +Parade +Paradice +Paradis +Paradise +Paradise Beach +Paradise Grove +Paradise Lake +Paradise Spring +Paradise Valley +Paradise View +Paradiso +Parador +Paradox +Paragon +Paraiso +Parakeet +Parallel +Paramatta +Paramel +Paramount +Paramus +Parapet +Parbold +Parbrook +Parbury +Parc +Parc Aux Vaches +Parc Guell +Parcel +Parcel E Mayfair +Parcher +Parchmore +Parcot +Pardalote +Pardee +Pardey +Pardillo +Pardis +Pardoe +Pardon +Pardoner +Pardun +Pare +Parent +Parente +Parer +Paret +Parfait +Parfett +Parfrey +Pargat +Parham +Paringa +Paringdon +Paris +Paris Farm +Paris Oaks +Parish +Parish Gate +Parish Glebe +Park +Park Access +Park Arcadia +Park Barn +Park Barrington +Park Bridge +Park Center +Park Central +Park Circle +Park City +Park Cliff +Park Commons +Park Corner +Park Creek +Park Crescent +Park Crest +Park Cross +Park Dene +Park East +Park Ellen +Park End +Park Entrance +Park Estates +Park Fair +Park Farm +Park Forest +Park Front +Park Garden +Park Gardens +Park Gate +Park Gates +Park Glen +Park Glenn +Park Grove +Park HIll +Park Hall +Park Headquarters +Park Heights +Park Highlands +Park Hill +Park Hills +Park House +Park Hqtrs +Park Island +Park Knoll +Park Lake +Park Lawn +Park Maintenance +Park Manor +Park Meadow +Park Meadows +Park Mill +Park Mills +Park Mount +Park Nicollet +Park Overlook +Park Pacifica +Park Place +Park Plaine +Park Plaza +Park Point +Park Presidio +Park Prewett +Park Ramp +Park Ridge +Park River +Park Royal +Park Run +Park Sharon +Park Side +Park Siding +Park Sierra +Park South +Park Terrace +Park Tower +Park Trail +Park Tree +Park Vale +Park Valley +Park View +Park Village +Park Vista +Park Waldorf +Park West +Park Wilshire +Park Wood +Park Woods +Park Works +Parkanaur +Parkcenter +Parkchester +Parkcliff +Parkcroft +Parkdale +Parke +Parke West +Parkedge +Parkend +Parker +Parker Chase +Parker Creek +Parker Hill +Parker Point +Parker Ranch +Parkerhouse +Parkers +Parkers Creek +Parkers Farm +Parkers Grove +Parkers Lake +Parkers Ridge +Parkerson +Parkerville +Parkes +Parkey +Parkfast Essex +Parkfield +Parkfields +Parkford Manor +Parkgate +Parkgreen +Parkgrove +Parkhall +Parkham +Parkhaven +Parkhill +Parkhills +Parkholme +Parkhouse +Parkhurst +Parkin +Parking Lot +Parkington +Parkinson +Parkis +Parklake +Parkland +Parkland Farms +Parkland Hills +Parklands +Parklands Close Lynn +Parklane +Parklawn +Parklea +Parkleigh +Parklin +Parkman +Parkmead +Parkmeadow +Parkmont +Parkmoor +Parkmount +Parkoaks +Parkpale +Parkridge +Parkrose +Parkrow +Parks +Parkshore +Parkside +Parkside Dollis Hill +Parkside Crown +Parkson +Parkstead +Parkston +Parkstone +Parksway +Parkthorne +Parkton +Parktrail +Parkurst +Parkvale +Parkview +Parkville +Parkway +Parkway Cannon Hill +Parkway Homes +Parkway Ponds +Parkway Subdivision +Parkway Terrace +Parkways +Parkwest +Parkwind +Parkwood +Parkwood Ridge +Parkwoods +Parlaunt +Parlee +Parley +Parley Lake +Parliament +Parliment +Parlin +Parlington +Parma +Parmaker +Parmal +Parmalee +Parmelee +Parmenter +Parmer +Parmiter +Parmley +Parmly +Parmoor +Parnaby +Parnassus +Parndon +Parndon Mill +Parnel +Parnell +Parnham +Parnoo +Parole +Parolles +Paroma +Paroo +Paros +Paroubek +Parque +Parquet +Parr +Parramatta +Parramore +Parran +Parraween +Parraweena +Parrenthorn +Parrett +Parrin +Parrish +Parrish Farm +Parrish View +Parritt +Parriwi +Parrock +Parrot +Parrott +Parrott Mill +Parrow +Parrs +Parrs Ridge +Parrs Wood +Parry +Parsells +Parsifal +Parsippany +Parsley +Parsloe +Parsloes +Parslow +Parson +Parson Hill +Parsonage +Parsonage Hill +Parsons +Parsons Hill +Parsons Landing +Parsons Pond +Parston +Part +Partanna +Partello +Partenwood +Parthena +Parthenia +Parthey +Partidge Pond +Parting Rock +Partington +Partition +Partlow +Partnership +Parton +Partrick +Partridge +Partridge Berry +Partridge Hill +Partridge Run +Partridge Wood +Partridges +Party +Paru +Parvet +Parvin +Parys +Pasa Felix +Pasa Robles +Pasa Tiempo +Pasack +Pasada +Pasadena +Pasas +Pasatiempo +Pascack +Pascal +Paschal +Pasco +Pascoe +Pascomb +Pasedena +Paseo +Paseo Estera +Paseo Flores +Paseo Grand +Paseo Nuevo +Paseo Padre +Paseo Pueblo +Paseo Robles +Paseo de Palomas +Paseo del Mar +Pasetta +Pashley +Pasho +Paskin +Pasley +Paso Corto +Paso Nogal +Paso Norte +Paso Robles +Pasquale +Pasquier +Pasquinelli +Pass +Passaconaway +Passaconway +Passage +Passage Creek +Passages +Passaic +Passaic Valley +Passaie +Passalaqua +Passalis +Passefield +Passel +Passfield +Passingham +Passini +Passmore +Passy +Pastatiempo +Pastel +Pastens +Pasteur +Paston +Pastor +Pastoral +Pastori +Pasture +Pasture Brook +Pasture Gate +Pasture Hill +Pasture View +Pasture Way Pasture +Pasturegate +Pasturewood +Pat +Pat Butler +Pat Capone +Pat Geary +Patanga +Patapsco +Patapsco Hill +Patch +Patch Meadow +Patch Reservoir +Patchen +Patches Pond +Patchett +Patching Hall +Pate +Patemore +Paten +Patent Parish +Pater +Paternal Gift +Paternoster +Paterson +Paterson Plank +Pates +Pates Manor +Patey +Path +Pathfield +Pathfinder +Pathway +Pathways +Pathwood +Patience +Patiky +Patio +Patio Greens +Patleigh +Patlen +Patlena +Patley +Patmon +Patmor +Patmore +Patmore Link +Patmos +Patnoe +Pato +Patocchi +Paton +Patony +Patowmack +Patoxent +Patra +Patrica +Patrice +Patricia +Patrician +Patrick +Patrick Clark +Patrick Henry +Patricks Copse +Patridge Wood +Patriot +Patriot Square +Patriots +Patrixbourne +Patrol +Patrol Bridge +Patrolman Ray Woods +Pats +Patsco +Patshull +Patsy +Patt +Pattee +Patten +Patten Ash +Pattenden +Pattens +Patterdale +Patterma +Patterman +Pattern +Patternbond +Patterson +Patterson Park +Patterson Pass +Patterson Ranch +Patteson +Patti +Patti Jo +Pattie +Patties +Pattison +Patton +Patty +Patty Lee +Patuxent +Patuxent Manor +Patuxent Overlook +Patuxent Range +Patuxent Riding +Patuxent River +Patuxent Woods +Patwin +Pau Hana +Paugus +Paul +Paul Birch +Paul Burch +Paul Dunbar +Paul Gore +Paul Hance +Paul Kirkwold +Paul Marr +Paul Martin +Paul Minnie +Paul Poole +Paul R. McDade +Paul Revere +Paul Scarlet +Paul Springs +Paul Sweet +Paul Wilkke +Paul X Tivnan +Paula +Paula Beth +Paula Lynn +Paulden +Paulding +Paulen +Paulene +Paulet +Paulette +Pauley +Paulhan +Paulin +Paulina +Pauline +Pauling +Paulison +Paulk Hall +Paull +Paullus +Paulonia +Pauls +Paulsell +Paulsen +Paulson +Paultons +Paulus +Pauly +Pauly Farm +Paulyn +Paumanack Village +Paumanake +Paumonek +Pauntley +Pautz +Pauw +Pavan +Paveley +Pavelka +Pavement +Pavesi +Pavia +Pavich +Pavilion +Pavilions +Pavillion +Pavn +Pavo +Pavonia +Paw Pan +Paw Print +Pawlet +Pawlik +Pawnee +Pawsey +Pawson +Pawtucket +Paxford +Paxman +Paxos +Paxson +Paxton +Payan +Paycocke +Payden +Payen +Payette +Payle +Payley +Payne +Paynes +Paynes Church +Paynes Endeavor +Paynesfield +Payot +Payran +Payson +Payten +Payton +Pazinick +Pazzi +Pea +Peabody +Peace +Peace Memorial +Peace Valley +Peaceable +Peacedale +Peaceful +Peaceful Glen +Peaceful Pond +Peaceful Ridge +Peaceful Valley +Peacevale +Peach +Peach Blossom +Peach Crest +Peach Grove +Peach Hill +Peach Leaf +Peach Orchard +Peach Tree +Peach Tree Hill +Peach Walker +Peacham +Peachey +Peachgate +Peachland +Peachstone +Peachtree +Peachum +Peachwillow +Peachwood +Peacock +Peacock Creek +Peacock Farm +Peacock Gap +Peacock Hill +Peacock Pond +Peak +Peak Hill +Peak View +Peakdale +Peake +Peake New +Peaker +Peakes +Peakham +Peaks Mill +Peaksmill +Peakview +Peale +Peanut Brittle +Peanut Mill +Peapond +Pear +Pear Creek +Pear Tree +Pear Tree Point +Pearblossom +Pearce +Pearce Landing +Pearce Memorial +Pearcroft +Peardon +Pearfield +Pearl +Pearl Bay +Pearl Brook +Pearl Harbor +Pearl Hill +Pearlbush +Pearle +Pearles +Pearlgrass +Pearlman +Pearlroth +Pearltone +Pearly +Pearmain +Pearman +Pearn +Pears +Pearsall +Pearse +Pearson +Pearson Valley +Pearsons +Pearsons Green +Peart +Peartree +Pearwood +Peary +Peascod +Peascroft +Pease +Peaslake +Peasley +Peat +Peat Bog +Peatfield +Peatmore +Peavey +Pebble +Pebble Beach +Pebble Branch +Pebble Brook +Pebble Canyon +Pebble Creek +Pebble Glen +Pebble Hill +Pebble Run +Pebblebrook +Pebblebrooke +Pebblecreek +Pebbleford +Pebblefork +Pebblehill +Pebbles +Pebblestone +Pebbleway +Pebblewood +Pebler +Pebmarsh +Pebworth +Pecan +Pecan Grove +Pecan Leaf +Pecanwood +Peccary +Peck +Peckford +Peckham +Peckham High +Peckham Hill +Peckham Hurst +Peckham Park +Peckman +Peckmantown +Peckover +Pecks +Pecks Woods +Pecksland +Pecksuot +Peckwater +Peco +Peconic +Pecos +Pecunit +Peddars +Pedder +Peddlers +Peddock +Peden +Pedersen +Pederson +Pederzini +Pedley +Pedra +Pedrick +Pedro +Pedro View +Pedroncelli +Pedroni +Peebles +Peebles Whitehall +Peed +Peek +Peekay +Peeks Brook +Peekskill +Peel +Peel Green +Peel Hall +Peel Moat +Peelgate +Peels +Peelwood +Peens +Peer +Peerless +Peers +Peerswood +Peeskill +Peet +Peets +Peffer +Peg +Pegamoid +Pegan +Pegasus +Pegg +Peggotty +Peggotty Beach +Peggs +Peggy +Pegholme +Pegler +Pegmire +Pegord +Pegrum +Pegs +Pegwell +Pegwood +Pehle +Peiking +Peine +Peirce +Peirson +Peitz +Pekara +Pekin +Peladeau +Pelandale +Pelden +Peldon +Pelfrey +Pelham +Pelham Crossover +Pelham Island +Pelham Manor +Pelham Shore +Pelhamdale +Pelhamside +Pelhamwood +Pelican +Pelican Garth +Pelican Point +Pelican Ridge +Pelier +Pelinore +Pell +Pell Farm +Pellack +Pellandini +Pellant +Pelleas +Pellegrini +Pellerin +Pelletie +Pelletier +Pellier +Pelling +Pellings +Pellington +Pellipar +Pellisier +Pellitt +Pellowe +Pells +Pelly +Pelorus +Pelozar +Pelsart +Pelter +Peltier +Peltier Lake +Pelton +Pemaco +Pemba +Pembar +Pember +Pemberlei +Pemberly +Pemberton +Pemberwick +Pembina +Pembridge +Pembroke +Pembroke Village +Pembroke on Duxbury +Pembrook +Pembrooke +Pembrooke View +Pembsly +Pembury +Pembury Hall +Pemdevon +Pemell +Pemerton +Pen +Pen Bryn +Pen Mor +Pena +Pena Adobe +Penacook +Penamint +Penang +Penaranda +Penarth +Penasquitas +Penataquit +Penatiquit +Penberth +Penbridge +Penbroke +Penbrooke +Penbury +Pence +Pencroft +Pend Oreille +Penda +Pendale +Pendall +Pendant +Pendarves +Pendas +Pendas Way Barwick +Pendas Way Kelmscott +Pendas Way Manston +Pendegast +Pendell +Pendennis +Pender +Penderbrook +Penderbrooke +Penderel +Pendergast +Penderlea +Penderview +Penderwood +Pendexter +Pendey +Pendle +Pendlebury +Pendlecroft +Pendlestone +Pendleton +Pendock +Pendola +Pendolino +Pendragon +Pendred +Pendrell +Pendrill +Pendro +Pendroy +Pendrys +Pendulum +Penefield +Penelope +Penelope Lucas +Penenden +Penenden Heath +Penenden Heath Boxley +Penerley +Penerly +Penfield +Penfold +Penford +Pengarth +Pengel +Pengilly +Penguin +Penhall +Penhallow +Penhill +Penhorn +Penhryn +Penhurst +Penifather +Penine +Peninnsula +Peninsula +Peninsula Farm +Peninsula Point +Peninsular +Peniston +Penistone +Penisula +Penitencia +Penitencia Creek +Penitentiary Service +Peniwill +Penketh +Penkivil +Penlan Hall +Penland +Penleach +Penley +Penlow +Penman +Penmere +Penmon +Penn +Penn Belt +Penn Creek +Penn Crossing +Penn Manor +Pennack +Pennacook +Pennant +Pennant Hills +Pennard +Penncross +Penndale +Pennell +Penner +Pennerview +Pennethorne +Penney +Pennfathers +Pennfield +Penngrove +Penni +Pennial +Pennicook +Pennies +Penniman +Pennine +Pennings +Pennington +Pennington Green +Penningtons +Penninsula +Penninsular +Pennisula Point +Pennith +Pennland +Pennock +Pennoyer +Penns +Penns Hill +Pennsboro +Pennsbury +Pennswood +Pennsy +Pennsylvania +Pennsylvania Railroad +Pennview +Pennwood +Penny +Penny Brook +Penny Cress +Penny Hill +Penny Meadow +Penny Oak +Penny Royal +Pennyblack +Pennybridge +Pennybrook +Pennycress +Pennydog +Pennyfather +Pennyfathers +Pennyfield +Pennyfield Lock +Pennyhill +Pennymead +Pennymeadow +Pennymoor +Pennypacker +Pennypleck +Pennyroyal +Pennys +Pennywise +Pennywood +Penobscot +Penpool +Penprase +Penquin +Penraevon +Penrhos +Penrhyn +Penrith +Penroath +Penrod +Penrose +Penroy +Penry +Penryn +Penryth +Pensa +Pensacola +Pensarn +Pensbury +Pensfold +Pensford +Penshurst +Pensive +Pensons +Penstemon +Penstock +Penswick +Pentagon +Pentagon Access +Pentecost +Pentenville +Penthorpe +Pentire +Pentland +Pentlow +Pentney +Pento +Penton +Penton Hall +Penton Hook +Penton Rise Cumming +Pentonville +Pentreath +Pentrich +Pentridge +Pentstemon +Pentucket +Pentwater +Pentyre +Penway +Penwerris +Penwick +Penwith +Penwood +Penyston +Penywern +Penzance +Peony +Peony Place +Peoria +Peotone Beecher +Peover +Pepco +Pepe +Peper Harrow +Peperham +Peperharow +Pepin +Pepito +Pepler +Peploe +Peppard +Peppe +Pepper +Pepper Creek +Pepper Hill +Pepper Mill +Pepper Oaks +Pepper Ridge +Pepper Tree +Pepper Valley +Pepper Wood +Pepperbox +Peppercorn +Pepperday +Pepperdine +Pepperell +Pepperhill +Pepperidge +Pepperidge Tree +Peppermill +Peppermint +Peppermint Hill +Pepperridge +Peppertree +Pepperwood +Pepperwood Knoll +Pepperwood Ranch +Pepple +Pepples +Pepsal End +Pepys +Pequannock +Peque +Pequit +Pequossette +Pequot +Pera +Peracca +Perada +Perak +Peralta +Perceval +Perch +Perch Lake +Percheron +Percil +Percival +Percivals +Percy +Percy Bryant +Percy Simms +Percypenny +Perda +Perder +Perdetta +Pere Marquette +Peregoy +Peregrin +Peregrine +Peregrine White +Pereira +Perennial +Perera +Perez +Perfection +Performance +Pergate +Pergola +Perham +Peri +Pericles +Peridot +Perie +Periera +Perigene +Perigo +Perimeade +Perimeter +Perimetr +Perine +Perino +Peripheral +Perisher +Perita +Periton +Perivale +Periwinkle +Perkal +Perkeley +Perkins +Perkinsville +Perkiomen +Perks +Perktel +Perley +Perley Evans +Perleybrooke +Perlich +Perlman +Permanent +Permanente +Permar +Permian +Perna +Pernham +Peronne +Perot +Perouse +Perowne +Perpetual Park +Perpins +Perran +Perraud +Perrault +Perreault +Perreira +Perrell +Perrelli +Perren +Perrers +Perrett +Perri +Perrich +Perrie +Perrin +Perrin Springs +Perrine +Perrineville +Perring +Perrior +Perro Creek +Perrone +Perrot +Perry +Perry Hall +Perry Henderson +Perry Hill +Perry Penney +Perry Vale Windrush +Perry Vale Woolstone +Perry William +Perryfield +Perrygate +Perryhill +Perryland +Perrymans +Perrymans Farm +Perrymead +Perrymont +Perrymount +Perryn +Perryridge +Perrys +Perrys Island +Perrysfield +Perrywinkle +Perrywood +Persant +Perserverance +Perseus +Perseverance +Persfield +Pershing +Pershore +Persia +Persian +Persic +Persimmon +Persimmon Tree +Persimmonn +Persistence +Personette +Pertch +Perth +Perthshire +Pertwee +Peru +Perullo +Perwal +Perwell +Pescadero +Pescadero Creek +Pesce +Pescot +Peshine +Peshtigo +Pestana +Pested +Pested Bars +Pesticide +Pesz +Petain +Petal +Petaluma +Petaluma Hill +Petar +Pete +Pete Dye +Pete Higgins +Pete Miller +Pete Weirs +Peteler +Peter +Peter A McCuen +Peter Behr +Peter Bont +Peter Brock +Peter Bulkeley +Peter Cooper +Peter Coutts +Peter Finch +Peter Hans +Peter Hobart +Peter Island +Peter J Shields +Peter Jefferson +Peter Martin +Peter Meadows +Peter Pan +Peter Parley +Peter Paul +Peter Tufts +Peter V Blazonis +Peter Wilson +Peterborg +Peterborough +Peterhoff +Peterhouse +Peterick +Peterlee +Peterley +Peterman +Peters +Peters Dam Fire +Peters Ranch +Peters Spring +Petersborough +Petersburg +Petersdorf +Petersen +Petersfield +Petersham +Petersilge +Peterson +Petersons +Petersville +Petery +Petes Farm +Petherton +Petit +Petite +Petite Creek +Petith +Petlands +Petley +Petra +Petrarca +Petray +Petrel +Petrell +Petri +Petridge +Petrie +Petrified Forest +Petrig +Petrillo +Petroleum +Petrolia +Petrosyan +Petrus +Petry +Pett +Pettee +Pettees Pond +Petteridge +Petters +Petterson +Pettfield Hill +Pettibone +Pettibush +Petticoat +Pettigrew +Pettingell +Pettis +Pettit +Pettits +Petts +Pettsgrove +Petty +Petunia +Petworth +Petzold +Peugeot +Pevensey +Peverel +Peverell +Peveril +Peverill +Pevey +Pevril +Pevwell +Pewter +Pewterers +Pewterspear +Pewterspear Green +Pexa +Pexhill +Peyla +Peyton +Peyton Randolph +Peytonia +Pezzi +Pezzini +Pfaff +Pfeffer +Pfeiffer +Pfeiffer Ranch +Pfeifle +Pfieffer +Pfingsten +Pfister +Pfitzer +Pfund +Phaeton +Phaeton Rock +Phaiban +Phalanx +Phalen +Phaneuf +Phanor +Phantom +Phar Lap +Pharlap +Pharmer +Pharoahs +Pheasant +Pheasant Brook +Pheasant Chase +Pheasant Creek +Pheasant Fields +Pheasant Hill +Pheasant Hills +Pheasant Hollow +Pheasant Hunt +Pheasant Lake +Pheasant Landing +Pheasant Ridge +Pheasant Run +Pheasant Trail +Pheasant Walk +Pheasant Wood +Pheasant Woods +Pheasants +Pheasantwoods +Phebe +Pheby +Phegley Ridge +Phelan +Phelips +Phelp +Phelps +Phene +Pheonix +Phesant +Phethean +Phil +Phil Mar +Philadelphia +Philamena +Philanthropic +Philben +Philbrick +Philbrook +Philchurch +Philemon +Philemon Whale +Philip +Philip Darch +Philip Digges +Philip Howard +Philip Lee +Philip Sydney +Philipp +Philipps +Philips +Philips Mill +Phillida +Phillimore +Phillip +Phillip Brooks +Phillip Farm +Phillip Powers +Phillipa +Phillipi +Phillipi Creek +Phillipp +Phillippi Creek +Phillips +Phillips Beach +Phillips Brook +Phillips Farm +Phillips Manor +Phillips Oak +Phillips Park +Phillips Pond +Phillips Ranch +Phillipse +Phillis +Philmead +Philmont +Philmore +Philo +Philpot +Philpot End +Philpott +Phineas +Phineas Pett +Phinney +Phipp +Phipps +Phipps Bridge +Phipps Hatch +Phirne +Phleger +Phlox +Phoebe +Phoebeth +Phoenix +Phoenix Center +Phoenix Lake +Phoneline +Photinia +Photo +Phroane +Phylcis +Phyldan +Phyllis +Phyllis Court +Phyllis Wheatley +Phylliss +Phylmor +Physicians +Physics +Physics Ellipse +Phythian +Piacenti +Piaget +Piano +Piave +Piazza +Pibac +Pibrock +Picadilly +Picard +Picardy +Picasso +Piccadilly +Piccadilly Circus +Piccard +Piccoli +Piccotts End +Picha +Pichette +Pichie +Picholine +Pichowicz +Pick +Pickard +Pickaxe +Picken +Pickens +Picker +Pickeral +Pickerel +Pickering +Pickersgill +Picket +Picket Oaks +Pickets +Pickets Lock +Pickets Post +Pickett +Picketts +Picketts Lock +Pickfair +Pickford +Pickhill +Pickhurst +Pickman +Pickmere +Pickmoss +Pickpocket +Picksley +Pickstone +Pickwell +Pickwick +Pickwick Hill +Pickwood +Pickworth +Picnic +Picnic Access +Picnic Island +Picnic Point +Pico +Picone +Picosin +Picot +Picton +Pictor +Picts +Pictun +Picture +Pidding +Piddington +Piddock +Pidgeon Hill +Pidgeon Meadow +Pidham +Pied Piper +Piedmont +Piedmont Trail +Piedra +Piehl +Pield Heath +Pielet +Piemonte +Pier +Pier Approach +Pier Point +Pierce +Pierce Farm +Pierce Hill +Pierce Mill +Pierce Point +Pierce Ranch +Piercefield +Pierces +Piercy +Pierini +Pierino +Piermont +Pierpoint +Pierpont +Pierport +Pierre +Pierre Curie +Pierrefondes +Pierrepoint +Pierrepont +Pierron +Pierrpont +Piers +Piersoll +Pierson +Pierson Lake +Pierson Miller +Pierview +Piesley +Piester +Pietro +Piety Corner +Piezzi +Pig +Pig Rock +Pigbush +Pigdown +Pigeon +Pigeon Cote +Pigeon Farm +Pigeon Fork +Pigeon Hill +Pigeon Hollow +Pigeon Point +Pigeonhouse +Piggotshill +Piggott +Piggotts +Pigment +Pigott +Pigs Eye Lake +Pigstye Green +Pihl +Pika +Pike +Pike Branch +Pike End +Pike Lake +Pike Ridge +Pike School +Pikefish +Pikes +Pikes Hill +Pikes Peak +Pikeview +Pikey +Pikkney +Piland +Pilar Ridge +Pilarcitos +Pilarcitos Creek +Pilarcitos Quarry +Pilch +Pilcher +Pilcher Park +Pilchuk +Pilcot +Pilden +Pildra +Pile +Pilgram +Pilgrim +Pilgrim Hill +Pilgrimage +Pilgrims +Pilgrims Inn +Pilkington +Pill Hill +Pillar +Pillar Box +Pilling +Pillings +Pillings Pond +Pillmoss +Pillon +Pillory +Pillow +Pillow Lace +Pillowlace +Pillsbury +Pilning +Pilot +Pilot Knob +Pilot Rock +Pilothouse +Pilsbury +Pilsen +Pilsworth +Piltdown +Pilvinis +Pima +Pimaston +Pimblett +Pimento +Pimhole +Pimienta +Pimlico +Pimlott +Pimmit +Pimmit Run +Pimpernel +Pin Cherry +Pin Cushion +Pin Oak +Pina +Pinard +Pincents +Pincey +Pinch Brook +Pinchbeck +Pincherry +Pinchin +Pinchot +Pinchpools +Pinckney +Pincott +Pindar +Pindari +Pindell +Pindell School +Pinder +Pindle +Pine +Pine Acre +Pine Acres +Pine Aire +Pine Arden +Pine Bluff +Pine Breeze +Pine Brook +Pine Cliff +Pine Cone +Pine Cove +Pine Creek +Pine Crest +Pine Croft +Pine Flat +Pine Forest +Pine Garden +Pine Glen +Pine Grove +Pine Haven +Pine Hill +Pine Hill Cemetery +Pine Hills +Pine Hollow +Pine Hurst +Pine Island +Pine Knoll +Pine Knot +Pine Lake +Pine Lodge +Pine Manor +Pine Meadow +Pine Meadows +Pine Mountain +Pine Mountain Fire +Pine Needle +Pine Needles +Pine Oak +Pine Orchard +Pine Park +Pine Plain +Pine Point +Pine Ridge +Pine Shadow +Pine Spring +Pine Swamp +Pine Top +Pine Trail +Pine Tree +Pine Tree Brook +Pine Trees +Pine Vale +Pine Valley +Pine View +Pine Way +Pine Whiff +Pine Wild +Pine Wood +Pine Woods +Pineacre +Pineapple +Pineapple Grove +Pinebluff +Pinebrae +Pinebrook +Pinecastle +Pinecliff +Pinecone +Pinecote +Pinecreek +Pinecrest +Pinecrest Heights +Pinecrest Office Park +Pinecrest Vista +Pinecroft +Pinedale +Pinefield +Pineglen +Pinegrove +Pinehaven +Pinehill +Pinehurst +Pineknob +Pineknoll +Pineknot +Pinelake +Pineland +Pinelands +Pinelawn +Pineleigh +Pinell +Pinelynn +Pinemont +Pinemount +Pineneck +Pineneedle +Pineo +Piner +Piner Creek +Pinercrest +Pineridge +Pines +Pines Lake +Pinesfield +Pinetop +Pinetown +Pinetree +Pinetum +Pinevale +Pineview +Pineville +Pineway +Pinewold +Pinewood +Pinewoods +Piney +Piney Branch +Piney Church +Piney Glade +Piney Glen +Piney Grove +Piney Knoll +Piney Lodge +Piney Meetinghouse +Piney Point +Piney Pond +Piney Ridge +Piney Spring +Pinfod +Pinfold +Ping +Ping On +Pingate +Pingot +Pingree +Pingree Farm +Pingry +Pinho +Pini +Pinions +Pink +Pink Barn +Pink Woods +Pinkert +Pinkerton +Pinkham +Pinkle Hill +Pinkney +Pinkneys +Pinkspire +Pinkwell +Pinnacle +Pinnacle Ridge +Pinnacles +Pinneberg +Pinner +Pinner Love +Pinner Hill +Pinner Park +Pinney +Pinnington +Pinnock +Pinntage +Pinoak +Pinole +Pinole Shores +Pinole Valley +Pinon +Pinorie +Pinot +Pinot Noir +Pinrail +Pinrock +Pinson +Pinta +Pintail +Pintard +Pinter +Pinto +Pinto Lake +Pinto Trail +Pinview +Pinyaro +Pinyon +Pio Pica +Pioche +Pioneer +Pioneer Creek +Pioneer Hills +Pioneer Varni +Pioxi +Pipchin +Pipeline +Pipeline Fire +Pipeline Service +Piper +Piper Ridge +Piperhill +Pipers +Pipers Glen +Pipestone +Pipewell +Pipewood +Piping Rock +Pipit +Pippa +Pippen +Pippin +Pippins +Pippins Green +Pippit +Pippitta +Pippo +Piquet +Piquets +Pirate +Pirbright +Pirie +Pirrama +Pirrone +Pirton +Piscataway +Piscataway Landing +Piscataway Run +Pisces +Pisgah +Pisgah Marbury +Pishiobury +Pissaro +Pissarro +Pista +Pistache +Pistachio +Pistacia +Pit +Pit Farm +Pitcairn +Pitchcombe +Pitcher +Pitchford +Pitchfront +Pitcroft +Pitfall +Pitfield +Pitfold +Pither +Pitkin +Pitland +Pitlochry +Pitman +Pitner +Pitney +Pits Farm +Pitscottie +Pitsea +Pitsea Hall +Pitsford +Pitsham +Pitshanger +Pitsmoor +Pitstock +Pitt +Pitt Clarke +Pitt School +Pitt Town +Pittbrook +Pittis +Pittland +Pittman +Pittoni +Pitts +Pittsburg +Pittsburg Waterfront +Pittsburgh +Pittsfield +Pittsmead +Pittson +Pittsville +Pittwater +Pitz +Pius +Pivetta +Pivington +Pix +Pix Farm +Pixham +Pixie +Pixies Hill +Pixley +Pixmore +Pizarro +Pizien Well +Pizzorni +Place +Place Farm +Placehouse +Placenza +Placer +Placer Creek +Placer Mine +Placer Oaks +Placer Ridge +Placerville +Placerville Payen +Places +Placid +Placitas +Plafsky +Plaid +Plain +Plainedge +Plainfield +Plainfield Naperville +Plains +Plaintain +Plainview +Plainville +Plainwood +Plaister +Plaistow +Plaistow Green +Plaistow Park +Plam +Plamondon +Plan +Planada +Planchet +Planders +Plandome +Plane +Plane Tree +Planet +Planetree +Plank +Planky +Plant +Plant Hill +Plantagenet +Plantain +Plantation +Plante +Planten +Planters +Planters Field +Planthurst +Planting Field +Planting Fields +Plasecki +Plash +Plashes +Plashet +Plashet Grove Green +Plaskett +Plaskett Forest +Plass +Plassey +Plassy +Plastics +Plasto +Plata +Plate +Plate Mill +Plateau +Plater +Platform +Platform Bridge +Platina +Platinum +Plato +Platt +Platt Fold +Platt Hill +Platt House +Platt Ridge +Platte +Platten +Platting +Plattner +Platts +Plattsburg +Plattsdale +Plattville +Plattwood +Platwood +Platzer +Plauderville +Plawhatch +Plawsfield +Plaxdale Green +Plaxtol +Play Bowl +Playa +Playa Del Sol +Playa del Rey +Playden +Player +Players Pond +Playfair +Playfield +Playford +Playground +Playhatch +Playland Access +Playstead +Playstool +PlazA +Plaza +Plaza America +Plaza Service +Pleasance +Pleasant +Pleasant Acre +Pleasant Acres +Pleasant Chase +Pleasant Colony +Pleasant Crest +Pleasant Echo +Pleasant Garden +Pleasant Gate +Pleasant Glen +Pleasant Grove +Pleasant Grove School +Pleasant Heights +Pleasant Hill +Pleasant Hollow +Pleasant Knoll +Pleasant Lake +Pleasant Meadow +Pleasant Meadows +Pleasant Oaks +Pleasant Park +Pleasant Plains +Pleasant Ridge +Pleasant Run +Pleasant Spring +Pleasant Springs +Pleasant Valley +Pleasant View +Pleasant Vista +Pleasant Wood +Pleasant Woods +Pleasantdale +Pleasanton +Pleasanton Sunol +Pleasants Valley +Pleasantview +Pleasantville +Pleasent +Pleasington +Pleasure +Pleasure Creek +Pleasure House +Pleasure Island +Pleasure Pit +Pleasure Point +Pleasure View +Pleck +Pledger +Pleides +Pleitner +Plender +Plenge +Plenty +Plentywood +Plesant +Pleshey +Pletcher +Plevna +Pleydell +Plimpton +Plimsoll +Plinston +Pliny +Plitt +Ploch +Plodder +Plog +Plomer +Plomer Green +Plomosa +Plotner Farm +Plough +Plough Inn +Plough Wents +Ploughbank +Ploughley +Plover +Plover Hill +Plow +Plowden +Plowgate +Plowman +Pluckley +Plucksbridge +Pluff +Plug +Plum +Plum Beach Point +Plum Blossom +Plum Creek +Plum Dale +Plum Grove +Plum Hill +Plum Hollow +Plum Island +Plum Orchard +Plum Point +Plum Ranch +Plum Tree +Plum Valley +Plumage +Plumas +Plumas Lake +Plumberow +Plumberow Mount +Plumberrow +Plumbers Pasture +Plumbley +Plumbridge +Plume +Plumer +Plumeria +Plumfield +Plumford +Plumleigh +Plumley +Plumley Moor +Plummer +Plummerden +Plummers +Plummers Promise +Plumosa +Plumpointe +Plumpton +Plumptre +Plumrose +Plums +Plumstead +Plumstead Common +Plumstead High +Plumstone +Plumtree +Plumtree Cross +Plumwood +Plumy Feather +Plunge +Plunkett +Plurenden +Pluskota +Pluth +Pluto +Plyers Mill +Plymbridge +Plymoth Farms +Plymouth +Plymouth River +Plymouth Rock +Plympton +Plymton +Po +Po River +Poa Annua +Poag +Poar +Poate +Pobgreen +Pocahontas +Pocantico +Pocasset +Pocasset on Asbury +Pocatello +Pochard +Pochet +Pochin +Pock +Pocket +Pocket Nook +Pocketsdell +Pockford +Pockley +Pocklington +Poco +Pocock +Pococks +Pocol +Pocomoke +Pocono +Pocumtuck +Podbury +Podesta +Podesto +Podium +Podlin +Podmore +Podnor +Pods +Pods Brook +Podsmead +Podva +Poe +Poehlman +Poet +Poetry +Poets +Poett +Pogany +Poggi +Pogson +Pohick +Pohick Bay +Pohick Crest +Pohick River +Pohono +Poillon +Poinciana +Poindexter +Poinier +Poinsetta +Poinsettia +Point +Point Alabama +Point Allerton +Point Breeze +Point Creek +Point Dechene +Point East +Point Field +Point Gallinas +Point Group Camp +Point Hollow +Point Lobos +Point No Point +Point O Woods +Point Oak +Point Piper +Point Pleasant +Point Reyes Petaluma +Point Rider +Point Ridge +Point San Bruno +Point San Pedro +Point Somerset +Point View +Point of Timber +Point of Woods +Pointcross +Pointe +Pointe Claire +Pointe Pacific +Pointe Vista +Pointer +Pointer Ridge +Pointers +Pointview +Pointwell +Poirier +Poise Brook +Poisson +Poitras +Pokagon +Pokanoket +Poker +Poker Flat +Poko +Pokolbin +Pokonoket +Poland +Polar +Polar Bear +Polari +Polaris +Polding +Pole +Pole Hill +Pole Line +Pole Moor New Hey +Pole Mountain +Pole Plain +Poleacre +Polebrook +Polecat +Polecroft +Polefield +Polefield Hall +Polegate +Polehanger +Polen +Poles +Polesden +Polestub +Polesworth +Poley +Polhemus +Polhill +Poli +Polianski +Police +Polidoris +Polifly +Polillio +Poling +Polito +Politzer +Polk +Polk Saint Croix +Pollack +Pollard +Pollardrow +Pollards +Pollards Oak +Pollards Wood +Polled Hereford +Pollen +Polletts +Polley +Pollifrone +Pollin +Polling House +Pollis +Pollitt +Pollock +Polly +Polly Anna +Polly Park +Pollywick +Pollywog +Polo +Polo Club +Polo Crosse +Polo Field +Polo Pointe +Polo Pony +Polonia +Polonius +Polonsky +Polruan +Polson +Polsted +Poltimore +Polvadero +Polwarth +Polworth +Polygon +Polynesia +Polynesian +Polytechnic +Pomace +Pomander +Pomar Vista +Pombo +Pombo Square +Pombridge +Pomciticut +Pome +Pomegranate +Pomelo +Pomerado +Pomerol +Pomeroon +Pomeroy +Pomeworth +Pomfret +Pommander Walk +Pommel +Pommer +Pommeroy +Pomo +Pomoja +Pomoken +Pomona +Pompano +Pompei +Pompeii +Pomper +Pompey +Pomponi +Pomponio +Pompositticut +Pompton +Pomroy +Ponca +Ponce +Ponce de Leon +Poncetta +Poncia +Pond +Pond Brook +Pond Copse +Pond Cottage +Pond Crest +Pond Derosa +Pond Edge +Pond End +Pond End School +Pond Farm +Pond Field +Pond Head +Pond Hill +Pond Home +Pond House +Pond Meadow +Pond Moor +Pond Park +Pond Plain +Pond Point +Pond Ridge +Pond Run +Pond Spice +Pond View +Pond Wood +Pondbrook +Pondcrest +Pondcroft +Ponder +Pondera +Ponderay +Ponderlay +Ponderosa +Ponderrosa +Pondfield +Pondhaven +Pondholton +Ponds +Ponds Edge +Ponds Wood +Pondside +Pondtail +Pondview +Pondville Hospital +Pondwick +Pondwicks +Pondwood +Ponefract +Ponhill +Ponikin +Ponikin Bridge +Poningo +Ponkapoag +Ponler +Ponnell +Ponsard +Ponselle +Ponsford +Ponsi +Ponsonby +Pont +Pontefract +Ponteverde +Ponti +Pontiac +Pontigo Glen +Ponto +Ponton +Pontos +Ponus +Pony +Pony Brown +Pony Express +Pony Tracks Fire +Pony Trail +Ponyara +Ponytail +Ponza +Pook +Pook Reed +Pookbourne +Pooks Hill +Pool +Pool Bank +Pool Bank New +Pool End +Pool Harrogate +Pool Hollow +Pool House +Pool Ridge +Poole +Poole Court +Pooles +Pooley +Pooley Green +Pooleys +Poolman +Poolmans +Poolsford +Poolton +Poona +Poonah +Poor +Poor Farm +Poor Meadow +Poorhouse +Poors +Poot +Pootings +Pop Becker +Pope +Pope Canyon +Pope Hill +Pope House +Pope Valley +Pope Valley Cross +Popeley +Popes +Popes Head +Popes Head View +Popes Hill +Popham +Popjack +Popkins +Popkins Farm +Popland +Poplar +Poplar Bath +Poplar Branch +Poplar Bridge +Poplar Creek +Poplar Glen +Poplar Grove +Poplar High +Poplar Hill +Poplar Lake +Poplar Leaf +Poplar Ridge +Poplar Tree +Poplar View +Poplarhollow +Poplars +Pople +Poplicans +Popomora +Popondetta +Popov +Popowski +Poppenhusen +Popperwell +Poppinghole +Poppitz +Poppler +Poppleton +Popplewell +Poppy +Poppy Glen +Poppy Hill +Poppy Hills +Poppy House +Poppy Ridge +Poppy Seed +Poppyfield +Poppyhills +Poppyseed +Poppythorn +Popular +Populatic +Poquanticut +Poquita +Porach +Porazzo +Porcaro +Porchester +Porchlight +Porchuck +Porden +Pordon +Porete +Poricy +Porlock +Porpoise +Porrende +Porritt +Porsche +Porsche Preserve +Port +Port Barrington +Port Capital +Port Carteret +Port Center +Port Clinton +Port Cove +Port Echo +Port Hacking +Port Haven +Port Hill +Port Hope Point +Port Imperial +Port Jersey +Port Macquarie +Port Monmouth +Port Norfolk +Port Rae +Port Reading +Port Richmond +Port Rowan +Port Royal +Port Sailwood +Port Sunlight +Port Terminal +Port Tidewood +Port Victoria +Port View +Port Washington +Portadown +Portage +Portage Mountain +Portal +Portcullis Lodge +Porte de Leau +Portelet +Porten +Porteous +Porter +Porter Creek +Porter Gulch +Porter Hill +Porter Plain +Porter Ridge +Porter School +Porter Service +Porterfield +Porters +Porters Cove +Porters Hall +Porters Hill +Porters Park +Portesbery +Portesbury +Portesbury Hill +Porteus +Porthcave +Porthkerry +Porthole +Portia +Portico +Portifino +Portillo +Portina +Portinscale +Portland +Portledge +Portley +Portley Wood +Portlock +Portloe +Portmadoc +Portman +Portmill +Portmore +Portmore Park +Portnall +Portnellan +Portner +Porto +Porto Bello +Porto Marino +Porto Rico +Porto Rosa +Portobago +Portobello +Portobelo +Portofino +Portola +Portola Heights +Portola Meadows +Portola Redwood +Portos +Portpool +Portree +Portrero +Portrush +Portsdown +Portsea +Portshire +Portside +Portsmith +Portsmouth +Portsoken +Portugal +Portview +Portville +Portway +Portwine +Portwood +Porz +Posadera +Posco +Poseidon +Posen +Posey +Poshard +Positano +Positas +Poskus +Posnett +Poss +Possehl +Possum +Possum Hollow +Possum Point +Possum Run +Possumtown +Post +Post Barn +Post Forest +Post Gate +Post Horn +Post House +Post Island +Post Mills +Post Oak +Post Office +Post Office Delce +Post Office Spen +Post Ranch +Post Wood +Postal +Postal Service +Postern +Postley +Postmill +Postoak +Poston +Postscript +Posturpedic +Postwood +Pot Kiln +Potash +Potassium +Potato +Potato Hill +Potawatami +Potawatomi +Potawatomie +Potbelly Beach +Potbridge +Potee +Poteet +Pothier +Potier +Potley Hill +Potomac +Potomac Branch +Potomac Club +Potomac Creek +Potomac Crest +Potomac Falls +Potomac Forest +Potomac Greens +Potomac Heights +Potomac Hills +Potomac Knolls +Potomac Manors +Potomac Meadow +Potomac Mills +Potomac Oak +Potomac Oaks +Potomac Overlook +Potomac Palisades +Potomac Path +Potomac Ridge +Potomac Riding +Potomac River +Potomac School +Potomac Valley +Potomac View +Potomac Vista +Potomac Woods +Potomack +Potomic Tennis +Potomska +Potoroo +Potosi +Potovens +Potrero +Potrero Hills +Potsdam +Pott +Pottawatomie +Pottawattami +Pottens Mill +Potter +Potter Hill +Potteries +Potternewton +Potters +Potters Crouch +Pottersheath +Potterton +Pottery +Potteton +Pottinger +Pottingfield +Pottle +Pottok +Potton +Potts +Potts Point +Pouchen End +Poughkeepsie +Poulet +Poulett +Pouley +Poulin +Pouliot +Poulos +Poulson +Poulter +Poultney +Poulton +Poultry +Pound +Pound Farm +Pound Hollow +Pound Ridge +Poundfield +Poundhurst +Pounds +Pountney +Pountsmonth +Pourier +Poust +Pout +Pout Rock +Poverest +Povershon +Poverty +Poverty Flat +Povey +Povey Cross +Powder +Powder Hill +Powder Horn +Powder House +Powder Mill +Powder Mill Fire +Powder Point +Powderbrook +Powderhorn +Powderhouse +Powdermill +Powderworks +Powdrell +Powdrill +Powell +Powell Cove +Powells +Powells Cove +Powells Creek +Powellton +Power +Power County +Power House +Power Inn +Power Lines +Power Plant +Power Ridge +Powerline +Powers +Powerville +Powhatan +Powhatan Beach +Powhattan +Powicke +Powis +Powissett +Powlett +Pownal +Pownall +Powney +Powster +Powys +Poydras +Poyer +Poyle +Poynder +Poynders +Poynes +Poynings +Poyntell +Poynter +Poynters +Poynton +Poyntz +Poyser +Poyton +Pozieres +Pozza +Pozzan +Prada +Prade +Pradel +Pradera +Pradera Mesa +Prado +Prado Secoya +Prado Vista +Praed +Pragel +Pragnell +Prague +Prah +Prahran +Prahser +Praire +Praire Dunes +Praire Island +Praire Lawn +Prairie +Prairie Center +Prairie City +Prairie Clover +Prairie Creek +Prairie Crossing +Prairie Dog +Prairie Estates +Prairie Falcon +Prairie Farm +Prairie Field +Prairie Flower +Prairie Grass +Prairie Grove +Prairie Hill +Prairie Knoll +Prairie Lakes +Prairie Landing +Prairie Meadow +Prairie Meadows +Prairie Moon +Prairie Oak +Prairie Path +Prairie Point +Prairie Pointe +Prairie Ridge +Prairie Rose +Prairie Sage +Prairie Schooner +Prairie Spring +Prairie Trail +Prairie Vale +Prairie Valley +Prairie View +Prairie Wind +Prairieland +Prairieside +Prairieview +Prairiewood +Prairiewoods +Praise +Prall +Pram +Prancing +Prancing Deer +Pranker +Prarie +Prarie Vale +Prarievale +Prater +Prather +Prathertown +Pratling +Pratolina +Pratt +Pratt Hill +Pratten +Pratton +Pratts +Pratts Farm +Pratts Mill +Pratum +Pray +Prc +Preacher +Preakness +Prebend +Prebendal +Preble +Preble Gardens +Preciado +Precious +Precissi +Precita +Preda +Preddys +Predella +Predmore +Preesall +Preinkert +Prell +Prelude +Premier +Premier Park +Premisy Hill +Premium Outlets +Premium Point +Premium River +Prendergast +Prenkert +Prentice +Prentice Hall +Prentis +Prentiss +Prenton +Presall +Presburg +Presco +Prescot +Prescott +Presdales +Presentation +Preservation +Preserve +Preserverance +President +President Point +Presidental +Presidente +Presidential +Presidents +Presidents Park +Presideo +Presidio +Presland +Presley +Press +Pressley +Pressmont +Pressprich +Presswick +Prestage +Prestancia +Prestbury +Prested +Prestfield +Prestige +Presto +Prestolee +Prestolite +Preston +Preston Beach +Preston White +Prestonfield +Prestons +Prests Mill +Prestwich +Prestwick +Prestwood +Preswick +Preswicke +Pretoria +Prettygate +Prettymans +Preuss +Prevost +Prewett +Prewett Ranch +Prey Heath +Priam +Price +Prices +Prichard +Priddis +Priddle +Priddy +Pride +Pride Crossing +Pride of Baltimore +Prideaux +Prideham +Prideland +Pridemark +Prides +Pridham +Pridmore +Pridmouth +Priebe +Prieboy +Priesing +Priest +Priest Bridge +Priest Park +Priester +Priesters Pond +Priestfield +Priesthorpe +Priestlands Park +Priestley +Priestly +Priestnall +Priests +Priestwood +Prigmore +Prima +Primary +Primasing +Primavera +Prime +Primero +Primett +Primevera +Primitive +Primley +Primley Park +Primm +Primrose +Primrose Hill +Primula +Prince +Prince Albert +Prince Andrew +Prince Arthur +Prince Caspian +Prince Charles +Prince Charlie +Prince Chigo +Prince Consort +Prince Crossing +Prince David +Prince Edward +Prince Edward Park +Prince Edwards +Prince Frederick +Prince George +Prince Georges +Prince Henry +Prince Imperial +Prince James +Prince John +Prince Lake +Prince Philip +Prince Phillip +Prince Regent +Prince Royal +Prince Rupert +Prince William +Prince Willow +Prince of Wales +Princedale +Princedom +Princeleigh +Princes +Princes Park +Princes Riverside +Princesfield +Princess +Princess Ann +Princess Anne +Princess Diana +Princess Eve +Princess Margaret +Princess Marina +Princess Mary +Princess May +Princess Pine +Princethorpe +Princeton +Princeton Park +Princevalle +Princeville +Princewood +Prince’s +Principal +Princton +Prindiville +Prindle +Pringle +Prinknash +Printempo +Printemps +Printer +Printers +Printice +Printing House +Printon +Printworks +Printy +Prinys +Priolo +Prion +Prior +Prior Bolton +Prior Farm +Prioress +Priors +Priors Hatch +Priors Wood +Priorsfield +Priorsford +Priory +Priory Farm +Priory Field +Priory Park +Priory Park Lee +Priory Park Middle +Priory View +Priorywood +Prioulx +Priscilla +Priscilla Alden +Prism +Prison +Pritchard +Pritchards +Priter +Prittlewell +Privado +Private +Private Anthony Rezza +Privateer +Privet +Privett +Privilege +Privit +Pro +Probate +Probert +Probst +Probyn +Procop +Procopio +Procter +Proctor +Proctors +Prodehl +Produce +Producers +Production +Professional +Professional Center +Professional Hill +Proffit +Profitt +Profumo +Program +Progress +Progressive +Progresso +Prom +Promenade +Promentory +Promintory +Promise +Promontory +Promontory Point +Pronto +Properity +Prophet +Proposed +Propp +Props Hall +Prose +Prospect +Prospect Hill +Prospect Knolls +Prospect Park +Prospect Point +Prospector +Prosper +Prosperi +Prosperity +Prospero +Prosser +Protano +Protectocoat +Prothero +Proud +Prout +Prout Farm +Prouty +Provance +Provencal +Provence +Provender +Provenzano +Providence +Providence Forest +Providence Forge +Providence Village +Provident +Province +Provincetown +Provincial +Provis +Proviso +Provo +Provost +Prowse +Proyart +Pru +Prudence +Prudential +Pruetts +Pruitt +Prune +Prune Acres +Prune Blossom +Prune Tree +Prunedale +Prunedale North +Pruneridge +Prunetree +Prunier +Prusakowski +Pruxne +Prybyl Pond +Pryde +Pryer +Pryer Manor +Pryite +Prykes +Pryme +Pryor +Pryors +Pryton +Pryzbylko +Pt Chase +Ptarmigan +Pubins +Public +Public Highway Long +Public Safety +Public Works +Puccini +Puchala +Puck +Puddephats +Pudding +Pudding Brook +Pudding Cake +Pudding Hill +Pudding Mill +Puddingcake +Puddingstone +Puddington +Puddledock +Puddlewharf +Puddon +Pudsey +Pudsey Hall +Pueblo +Pueblo Vista +Puers +Puerto +Puerto Rico +Puerto Vallarta +Puff +Puffer +Puffin +Pug +Puget +Pugh +Puha +Pukwans +Pulaski +Pulaski Hill +Pulawski +Pulborough +Pulens +Pulford +Pulgas +Pulham +Pulido +Pulis +Pullard +Pullborough +Pullen +Pullens +Puller +Pulley +Pulleyns +Pulleys +Pullman +Pulpit +Pulpit Rock +Pulross +Pulsar +Pulsifer +Pulteney +Pulver +Puma +Pumice +Pump +Pump House +Pumphouse +Pumphrey +Pumphrey Farm +Pumpkin +Pumpkin Brook +Pumpkin Hill +Pumpkin Pine +Punch +Punch Bowl +Punch Copse +Punchard +Punchbowl +Punt +Puntey Park +Pupek +Pupkis +Pupple +Purbeck +Purbrook +Purce +Purcell +Purchase +Purchese +Purdey +Purdham +Purdie +Purdom +Purdon +Purdue +Purdun +Purdy +Purdy Point +Purdy Ranch +Purfield +Purfleet +Purgatory +Purify +Purington +Purinton +Purisima +Purisima Creek +Purissima +Puritan +Puritan Mall Service +Purity +Purity Springs +Purkis +Purkiss +Purland +Purleigh +Purley +Purley Bury +Purley Downs +Purley Oaks +Purley Park +Purlings +Purlwell +Purnell +Purneys +Purple Beech +Purple Glen +Purple Hills +Purple Leaf +Purple Martin +Purple Sage +Purpleleaf +Purri +Purrington +Purse +Pursell +Pursers +Pursley +Purson +Purton +Purves +Purvine +Purvis +Purwell +Purwell Hall +Pusan +Pussy Willow +Putah Creek +Putah Creek Lodge +Putarri +Putcie +Putland +Putman +Putnam +Putnam Hill +Putnams +Putney +Putney Bridge +Putney Heath +Putney High +Putney Park +Putnum +Putt +Puttenden +Puttenham +Puttenham Heath +Putter +Putteridge +Putting +Puttnam +Puttney +Puves +Puzone +Pyalla +Pyburn +Pye +Pye Brook +Pyegrove +Pyenest +Pyenot Hall +Pylbrook +Pyle +Pyles +Pym +Pymble +Pymgate +Pymmes +Pymmes Green +Pymms Brook +Pymont +Pyms +Pynders +Pyne +Pynest Green +Pynnings Farm +Pyott +Pyrah +Pyramid +Pyrcroft +Pyrenees +Pyrford +Pyrford Common +Pyrite +Pyrite Mine +Pyrl +Pyrland +Pyrles +Pyrmont +Pyrmont Bridge +Pyro +Pyrola +Pyrossia +Pytchley +Pytha Fold +Pythian +Pyxie +Q Fernwood +Qantas +Qaurnby +Quaas +Quabeck +Quaboag +Quackenbush +Quaddick +Quaddick Mountain +Quaddick Town Farm +Quade +Quadra +Quadrangle +Quadrant +Quadrille +Quadros +Quaid +Quail +Quail Bluff +Quail Canyon +Quail Cove +Quail Creek +Quail Crest +Quail Estates +Quail Haven +Quail Hill +Quail Hollow +Quail Lakes +Quail Meadow +Quail Meadows +Quail Pointe +Quail Ridge +Quail Roost +Quail Run +Quail Valley +Quail Vista +Quail Walk +Quail Woods +Quailbrook +Quailhill +Quails Roost +Quailwood +Quailwood Manor +Quaint +Quaint Acres +Quainton +Quake +Quaker +Quaker Hill +Quaker Hollow +Quaker Knoll +Quaker Meeting House +Quaker Ridge +Quakers +Quakers Hall +Quakers Hill +Quaking +Quaking Aspen +Quale +Quality +Qualls +Quam +Quamba +Quamme +Quance +Quandam +Quander +Quanders Promise +Quandong +Quandt +Quane +Quann +Quannacut +Quannapowitt +Quantas +Quantico +Quantock +Quantrell +Quantrelle +Quantuck +Quantum +Quantum Leap +Quarantine +Quarles +Quarles Park +Quarley +Quarlton +Quarr +Quarrendon +Quarropas +Quarry +Quarry Arm +Quarry Bank +Quarry Bend +Quarry Hill +Quarry Lakes +Quarry Master +Quarry Mount +Quarry Park +Quarry Pond +Quarry Ridge +Quarry Wood +Quarter +Quarter Charge +Quarter Horse +Quarter Landing +Quarter Mile +Quarter Sessions +Quarterbrass Farm +Quarterdeck +Quarterfield +Quarterfield Farms +Quarterfield Park +Quarterhorse +Quartermain +Quartermaine +Quartermass +Quartermaster +Quartermaster Canyon +Quartermile +Quarterstaff +Quartet +Quartette +Quartz +Quaspec +Quassey +Quate +Quater Sessions +Quattro +Quaves +Quay +Quayle +Que +Queander +Quebec +Queen +Queen Adelaide +Queen Alexandra +Queen Ann +Queen Anne +Queen Anne Bridge +Queen Annes +Queen Caroline +Queen Catherine +Queen Chapel +Queen Charlotte +Queen Eleanor +Queen Eleanors +Queen Elizabeth +Queen Elizabeths +Queen Hoo +Queen Mary +Queen Marys +Queen Victoria +Queenair +Queenbeyan +Queenborough +Queendown +Queenhill +Queenhythe +Queens +Queens Brigade +Queens Brook +Queens Chapel +Queens Cross +Queens Crossing +Queens Farm +Queens Gate +Queens Grove +Queens Mead +Queens Park +Queens Row +Queens View +Queens Well +Queens Wood +Queensberry +Queensborough +Queensbridge +Queensbrook +Queensburg +Queensbury +Queenscliff +Queenscroft +Queensdale +Queensdown +Queensferry +Queensgate +Queensguard +Queenshill +Queenside +Queensland +Queensmead +Queensmill +Queensport +Queensthorpe +Queenston +Queenstone +Queenstone Fire +Queenstown +Queenstowne +Queensville +Queensway +Queensway Shaw +Queensway Tennyson +Queenswood +Queenwood +Queen’s +Queirolo +Quell +Quelm +Quelway +Quema +Quemerford +Quemoy +Quenby +Quencer +Quendon +Quentin +Quentin Roosevelt +Quercus +Quernmore +Querques +Query +Query Mill +Quesada +Quest +Questwood +Quetta +Quetzal +Quiamong +Quibble +Quick +Quick Edge +Quick Fox +Quickbourne +Quickedge +Quickley +Quickmoor +Quickrells +Quicksilver +Quickstep +Quidnic +Quien Sabe +Quien Sabe Ranch +Quiescence +Quiet +Quiet Brook +Quiet Cedar +Quiet Harbor +Quiet Knolls +Quiet Meadow +Quiet Oak +Quiet Owl +Quiet Place +Quiet Spring +Quiet Tree +Quiet Valley +Quiet View +Quiet Waters Farm +Quiet Woods +Quietfields +Quietwater +Quietwater Ridge +Quietwood +Quigg +Quiggle +Quigley +Quilberry +Quill +Quill Point +Quillback +Quilp +Quilpie +Quilt Patch +Quilter +Quilters +Quilting +Quimby +Quimby Point +Quinan +Quinapoxet +Quinby +Quince +Quince Mill +Quince Orchard +Quince Ridge +Quince Tree +Quince Valley +Quince View +Quincefield +Quincey +Quincy +Quincy Adams +Quincy Bridge +Quincy Marr +Quincy Shore +Quindel +Quine +Quinlan +Quinlisk +Quinn +Quinn Canyon +Quinnell +Quinnhill +Quinnterra +Quinobequin +Quinque +Quinsenberry +Quinsey +Quinshapaug +Quinsigamond +Quint +Quintal +Quintana +Quintara +Quintard +Quintas +Quinten +Quintette +Quintin +Quintinia +Quinton +Quinton Oaks +Quintree +Quinturn +Quintus +Quinwood +Quiram +Quire +Quirk +Quirkes +Quirnia +Quiros +Quisenberry +Quisenbury +Quisisana +Quisset +Quisset Brook +Quissett +Quist +Quitman +Quito +Quiver +Quiver Ridge +Quixley +Qume +Quo +Quoitings +Quonset +Quorn +Quota +R B Brown +R F Higgins +R Fernwood +R Shore +R. Belanger +R. T. Jones +R.Belanger +REavenswood +Raab +Raabe +Raans +Raap +Rabans +Rabaul +Rabbett +Rabbit +Rabbit Chase +Rabbit Hill +Rabbit Run +Rabbits +Rabbits Run +Rabbitt +Rabies Heath +Rabkin +Rabley Heath +Raboli +Raboth +Rabournmead +Rabro +Rabun +Raby +Raccoon +Race +Race Course +Race Horse +Race Track +Racecourse +Racefield +Racetrack +Rachael +Rachael Manor +Rachael Whitney +Rachel +Rachel Hill +Rachell +Rachelle +Racine +Racing Horse +Rack +Rack Close +Rackham +Rackhouse +Rackstraw +Racoon +Racquet +Racquet Club +Racton +Rad +Radar +Radatz +Raday +Radbourne +Radburn +Radcliff +Radcliffe +Radcliffe Moor +Radcliffe Park +Radclive +Radclyffe +Radcot +Raddant +Raddel +Raddin +Raddin Grove +Raddington +Radfield +Radford +Radha +Radial +Radian +Radiant +Radiata +Radigan +Radio +Radison +Radisson +Radisson Woods +Radium +Radius +Radlet +Radlett +Radlett Park +Radley +Radley Green +Radleys +Radlix +Radmere +Radmore +Radnage Common +Radner +Radnor +Radnormere +Rado +Radoff +Radonich +Radstock +Radtke +Radwick +Radwinter +Rae +Rae Ann +Rae Anne +Raeanne +Raeben +Raeburn +Raechel +Raemore +Raemot +Raes Creek +Rafael +Rafaela +Raff +Raffaele +Raffen +Rafferty +Raffin Green +Raffman +Raffo +Rafkind +Raflo +Rafman +Raftelis +Rafter Ridge +Rafton +Raftree +Rag Hill +Rag Rock +Ragatz +Ragazzi +Ragged Hall +Ragged Hill +Raggio +Raging Brook +Raglan +Ragland +Ragle +Ragle Ranch +Ragmans +Rago +Ragonese +Rags +Ragsdale +Ragstone +Rahara +Rahatyn +Rahlves +Rahn +Rahncliff +Rahul +Rahway +Rahway River +Raich +Raider +Raiders +Raiff +Raikes +Raikes Wood +Rail +Railey +Railroad +Railroad Grade +Railroad Grade Fire +Railroad Seekonk +Railshead +Railside +Railton +Railway +Raimond +Raimonde +Rain +Rain Cloud +Rain Meadow +Rain Tree +Raina +Rainbow +Rainbow Bay +Rainbow Bridge +Rainbow Ranch +Rainbow Ridge +Rainbow View +Raincliffe +Raindance +Raindrop +Raine +Rainer +Raineri +Raines +Rainey +Rainflower +Rainford +Rainforth +Rainham +Rainier +Rainow +Rainsboro +Rainsborough +Rainsborowe +Rainsford +Rainshaw +Rainsong +Rainsville +Rainswood +Raintree +Rainview +Rainville +Rainwell +Rainwood +Rainy Spring +Raisig +Raith +Rak +Rake +Rakehill +Rakewood +Rakstad +Ralco +Raldne +Rale +Raleana +Raleigh +Raleigh Farm +Raleigh Hill +Raleigh Tavern +Raley +Ralliwood +Ralls +Rally +Ralmar +Ralmark +Ralph +Ralph Crossen +Ralph G Hamlin Jr +Ralph Jackson +Ralph Lee +Ralph Mann +Ralph Talbot +Ralph Young +Ralphs +Ralsey +Ralston +Ralston Ranch +Ralstone +Ralwood +Ram +Ram Ridge +Rama +Ramada +Ramal +Ramalho +Ramapo +Ramapo Brae +Ramapo Hills +Ramapo Mountain +Ramapo Valley +Ramble +Ramble Creek +Rambledown +Rambler +Rambler Rose +Ramblers +Ramblewood +Ramblin Rose +Rambling +Rambling Brook +Rambling Ridge +Rambling Rose +Rambling Woods +Rambow +Rambush +Ramby +Ramella +Ramen +Ramer +Ramey +Ramgren +Ramie +Ramillies +Ramish +Ramkay +Ramleh +Ramm +Rammer +Ramney +Ramon +Ramona +Ramondo +Ramone +Ramos +Ramoso +Rampart +Rampayne +Ramptons +Ramridge +Ramrod +Rams +Ramsay +Ramsbottom +Ramsbury +Ramscote +Ramsdale +Ramsdean +Ramsdell +Ramsden +Ramsden Park +Ramsell +Ramsey +Ramsey Main +Ramsgate +Ramshaw +Ramshead +Ramshorn +Ramslye +Ramstad +Ramstead +Ramstree +Ramulis +Ramuz +Ramview +Ran +Ranburn +Ranby +Rance +Rances +Ranch +Ranch River +Ranch View +Rancheria +Ranchero +Ranchette +Ranchita +Ranchito +Ranchland +Rancho +Rancho Adobe +Rancho Arroyo +Rancho Bernardo +Rancho Brazil +Rancho Caballo +Rancho Cabeza +Rancho Calabasas +Rancho Corralitos +Rancho Deep Cliff +Rancho Diablo +Rancho Higuera +Rancho Hills +Rancho Juan Inez +Rancho Laguna +Rancho Lindo +Rancho Madre +Rancho Manuella +Rancho McCormick +Rancho Palomares +Rancho Plaza +Rancho Prieta +Rancho Ramon +Rancho Rea +Rancho Rio +Rancho S Luado +Rancho Silva +Rancho Solano +Rancho Soquel +Rancho Todos Santos +Rancho Ventura +Rancho View +Rancho Vista +Rancho del Lago +Rancho la Baca +Ranchview +Ranchwood +Rancliffe +Rancom +Rand +Randal +Randale +Randall +Randall Farm +Randall Hill +Randall Island +Randall Ridge +Randalls Park +Rande +Randell +Randells +Randell’s +Randerson +Randi +Randle +Randlesham +Randlett +Rando +Randol +Randol Creek +Randolph +Randolph Macon +Random +Random Hills +Random Run +Randonstone +Randou +Rands +Rands Clough +Randville +Randwick +Randwood +Randy +Randys +Ranelagh +Ranelegh +Raneleigh +Raneys +Ranford +Ranfre +Ranfurley +Ranfurly +Range +Range Heights +Rangel +Rangeley +Rangely +Rangely Ridge +Rangemoor +Rangemore +Ranger +Rangers +Rangers Retreat +Rangeview +Rangeway +Rangewood +Rangley +Rangoon +Ranicar +Ranick +Ranier +Rankin +Rankine +Ranks Green +Ranleagh +Ranleigh +Ranleigh Manor +Ranlett +Ranley +Ranmere +Ranmore +Ranmore Common +Rannal +Ranney +Rannoch +Rannock +Ranport +Ransdell +Ransell +Ransfield +Ransley +Ransom +Ranson +Ranspot +Ranston +Ranters +Rantoul +Rantoule +Ranulf +Ranworth +Rapelye +Raper +Raphael +Raphaels +Rapid +Rapidan +Rapids +Rapley +Rapley Preserve +Rapley Ranch +Rapley Ridge +Raposa +Rapp +Rappahannock +Rappahanock +Rappahanook +Rappax +Rappleyea +Rapsley +Raptor +Raquel +Raritan +Raritan Reach +Rasbottom +Rascher +Rashawn +Rashida Muhammad +Rashke +Raskin +Raskulinecz +Rasmussen +Rason +Raspberry +Raspberry Hill +Raspberry Plain +Rasper +Rassani +Rassbottom +Rassignini +Rastell +Rasweiler +Rat +Ratchford +Ratcliff +Ratcliffe +Ratcliffe Cross +Ratcliffe Manor +Ratekin +Raters +Rath +Rathan +Rathane +Rathbone +Rathbourne +Rathbun +Rathburn +Rathcoole +Rathen +Rathfern +Rathgar +Rathlin +Rathmann +Rathmel +Rathmell +Rathmore +Rathwell +Ratlin +Ratner +Rattle Snake Hill +Rattlesnake +Rattlesnake Hill +Ratto +Rattray +Rattwick +Ratzer +Rau +Raub +Raul +Raupach +Raupp +Rausch +Ravatt +Rave +Ravel +Raveley +Ravelston +Raven +Raven Brook +Raven Hill +Raven Rock +Ravena +Ravenbank +Ravendale +Ravenel +Ravenet +Ravenfield +Ravenglass +Ravenhill +Ravenhurst +Ravenna +Ravenoak +Ravenoak Park +Ravenor Park +Ravenrock +Ravens +Ravens Cove +Ravens Crest +Ravens Head +Ravensbourne +Ravensbourne Park +Ravensbury +Ravenscliffe +Ravenscourt +Ravenscraig +Ravenscroft +Ravensdale +Ravensdon +Ravenshaw +Ravenshurst +Ravenslea +Ravensmead +Ravenstone +Ravenswood +Ravensworth +Ravenue +Ravenwood +Ravina +Ravine +Ravine Forest +Ravine Park +Ravine View +Ravine Woods +Ravinia +Ravinia Park +Ravinoaks +Ravizza +Ravnescroft +Ravona +Ravoux +Raw +Rawcliffe +Rawding +Rawdon +Rawhide +Rawhiti +Rawleigh +Rawles +Rawley Springs +Rawling +Rawlings +Rawlins +Rawlinson +Rawls +Rawlyn +Rawnsley +Rawreth +Rawson +Rawson Bridge +Rawson Hill +Rawsthorne +Rawston +Rawstorn +Rawstorne +Rawstron +Ray +Ray Harvey +Ray Hill +Ray Lea +Ray Leonard +Ray Lodge +Ray May +Ray Mead +Ray Moses +Ray Park +Ray Wise +Rayanna +Raybarn +Raybel +Rayben +Raybor +Rayborn Creek +Raybrook +Rayburn +Raycroft +Raydale +Raydean +Raydol +Raydon +Raydons +Raye +Rayfield +Rayford +Rayjohn +Rayland +Raylands +Raylands Way Cranmore +Rayleigh +Rayleigh Downs +Raylen +Rayley +Raylow +Raym +Raymar +Rayme +Raymead +Rayment +Raymer +Raymond +Raymond Hall +Raymonds +Raymoor +Raymound +Raymundo +Raymus +Raynahm +Rayne +Raynel +Raynel Mount Raynel +Rayner +Rayners +Raynes +Raynham +Raynold +Raynor +Raynsford +Raynton +Raynville +Rays +Rayshire +Rayson +Raywood +Razo +Rea +Reabrook +Reach +Read +Read Head +Readbourne +Reade +Reader +Readers +Reades +Reading +Reading Arch +Reading Hill +Readon +Reads +Reads Rest +Readscroft +Readville +Ready +Readys +Reagan +Reagent +Reaghs Farm +Real +Reality +Realm +Realton +Ream +Reamer +Reamwood +Reamy +Reaney +Reaper +Rear Abbey +Rear Main +Rear Perkins +Rear Wildwood +Rear of Marsh +Rearden +Reardon +Reares +Reason +Reaston +Reaves +Reavis +Reb +Reb Yank +Reba +Rebboli +Rebeau +Rebecca +Rebecca Park +Rebeiro +Rebekah +Rebel +Rebel Run +Rebel Walk +Rebelo +Rebels +Reber +Recard +Recht +Recino +Recker +Reckinger +Reckitt +Reconcilliation +Record +Recovery +Recreation +Recreation Ground +Recreation Park +Rector +Rectory +Rectory Park +Reculver +Recycle +Recycling +Red +Red Oak +Red Acre +Red Admiral +Red Alder +Red Apple +Red Ash +Red Bank +Red Bark +Red Barn +Red Barracks +Red Berry +Red Birch +Red Bird +Red Branch +Red Brick +Red Brick Farm +Red Bridge +Red Bud +Red Cedar +Red Cedar Point +Red Cedars +Red Cherry +Red Circle +Red Clay +Red Cloud +Red Clover +Red Coach +Red Coat +Red Cottage +Red Cow +Red Creek +Red Cross +Red Cypress +Red Deer +Red Dog Creek +Red Eagle +Red Elk +Red Fall +Red Farm +Red Fern +Red Forest +Red Fox +Red Frank +Red Gate +Red Grave +Red Ground +Red Hall +Red Harvest +Red Haven +Red Haw +Red Hawk +Red Hawk Canyon +Red Hill +Red Hills +Red Hook +Red Horse Tavern +Red House +Red Jacket +Red Jade +Red Leaf +Red Lion +Red Lion Lower +Red Maple +Red Miles +Red Mill +Red Mine +Red Mountain +Red Oad +Red Oak +Red Oak Service +Red Patch +Red Peak +Red Pheasant +Red Pine +Red Ribbons +Red Ridge +Red River +Red Robin +Red Rock +Red Rocks +Red Rome +Red Roof +Red Rose +Red Rum +Red Sherry +Red Sky +Red Spring +Red Spruce +Red Tail +Red Top +Red Willow +Red Winery +Red Wing +Red Wood +Redacre +Redan +Redar +Redbank +Redberry +Redbird +Redbourn +Redbournbury +Redbourne +Redbournebury +Redbrdge +Redbridge +Redbrook +Redbud +Redburn +Redcar +Redcastle +Redchurch +Redcliff +Redcliffe +Redclyffe +Redco +Redcoach +Redcoat +Redcot +Redcote +Redcourt +Redcroft +Redd +Reddall +Reddan +Redden +Redden Court +Reddfield +Reddick +Redding +Redding Park +Redding Ridge +Reddings +Reddington +Reddington Ridge +Reddins +Reddish +Reddish Vale +Reddisher +Reddown +Reddy +Rede Court +Rede Wood +Redehall +Redeker +Reden +Reder +Redesmere +Redfearn +Redfern +Redfield +Redford +Redgap +Redgate +Redgrave +Redgrove +Redgum +Redhall +Redhatch +Redhaven +Redhawk +Redhead +Redhill +Redhills +Redhook +Redhouse +Reding +Redington +Redins +Redisher +Redlac +Redlake +Redland +Redlands +Redleaf +Redleaves +Redman +Redmans +Redmayne +Redmead +Redmen +Redmere +Redmiles +Redmire +Redmond +Redmont +Redmoor +Redmore +Redmount +Redmyre +Rednal +Redneck +Redner +Redoak +Redoaks +Redondo +Redondo Beach +Redoubt +Redpine +Redpol +Redpoll +Redricks +Redriff +Redriffe +Redrock +Redrose +Redruth +Redshank +Redshaw +Redskin +Redskin Park +Redskins +Redstart +Redstock +Redston +Redstone +Redstone Hill +Redtail +Redthorn +Redvales +Redvers +Redvers Buller +Redview +Redwall +Redwell +Redwing +Redwings +Redwood +Redwood Canyon +Redwood Gulch +Redwood Heights +Redwood Hill +Redwood Hwy Frntg +Redwood Lodge +Redwood Oak +Redwood Retreat +Redwood Shores +Redwood Terrace +Redwood Tree +Reebenacker +Reece +Reece Heights +Reecemar +Reed +Reed Crescent Bryony +Reed Hall +Reed Hill +Reed Knoll +Reed Ranch +Reedbird +Reede +Reeder +Reedgate +Reedham +Reedham Park +Reedhurst +Reedie +Reedling +Reeds +Reeds Mill +Reedsdale +Reedsfield +Reedshaw +Reedswood +Reedworth +Reedy +Reedy Brook +Reedy Meadow +Reef +Reef Point +Reely +Reem +Reenglass +Rees +Reese +Reetey +Reeve +Reeves +Reevey +Refinement +Refinery +Reflection +Reflections +Reform +Refugio +Refugio Valley +Refy +Regal +Regal Lily +Regal Oak +Regal West +Regal Wood +Regalia +Regan +Regan Hall +Reganti +Regarder +Regarth +Regas +Regatta +Regency +Regency Crest +Regency Forest +Regency Grove +Regency Knoll +Regency Manor +Regency Oaks +Regency Park +Regency Ridge +Regency Woods +Regeneration +Regent +Regent Park +Regents +Regents Park +Regents Tower +Regentville +Regentwood +Reger +Regimental +Regina +Reginald +Regio +Region +Regional +Regional Center +Regis +Regnart +Regnart Canyon +Regnid +Regor +Regrave +Regulos +Regulus +Regwill +Rehbaum +Rehling +Rehn +Rehrmann +Reiby +Reich +Reichelt +Reicher +Reichert +Reichling +Reichman +Reid +Reid Pond +Reidel +Reidhaven +Reidmond +Reids Hill +Reids Roost +Reidsville +Reifel +Reiffel +Reigate +Reiger +Reighton +Reigl +Reign +Reihl +Reiker +Reiland +Reiley +Reiling +Reille +Reilleys +Reilly +Reiman +Reimche +Reimer +Reimers +Reims +Rein +Reina +Reina del Mar +Reindeer +Reinekers +Reinelt +Reiner +Reiners +Reinert +Reingold +Reinhard +Reinhardt +Reinhart +Reinhold +Reinickendorf +Reinking +Reinman +Reinmann +Reino +Reins Lee +Reinwood +Reis +Reisewitz +Reising +Reisling +Reisner +Reiss +Reiten +Reiter +Reith +Reitveldt +Reitz Lake +Relander +Relay +Reld +Relda +Reldyes +Relentless +Relf +Reliance +Reliant +Reliez Highland +Reliez Valley +Relihan +Relkin +Rellim +Relocation +Relyea +Rem +Rembrandt +Rembrant +Remco +Rememberance +Remembrance +Remenham +Remenham Church +Remer +Remi +Remick +Remigio +Remillard +Remin +Remington +Remital +Remly +Remmel +Remmey +Remmos +Remnant +Remo +Remora +Remsen +Remsens +Remson +Remuda +Remuera +Remus +Ren +Rena +Renaissance +Renaldo +Renard +Renate +Renaud +Renault +Renaux +Renchler +Rendall +Rendlesham +Rendon +Rene +Renee +Renee Ann +Renforth +Renfrew +Renfro +Renhult +Reni +Renida +Renie +Renison +Renita +Renke +Renken +Renker +Renmar +Renmark +Renmin +Renmuir +Renn +Rennee +Rennell +Renner +Rennes +Rennet +Rennie +Rennie Smith +Renninger +Renny +Reno +Renoir +Renoir Port +Renolds +Renouf +Renoux +Renova +Renown +Renshaw +Rensselaer +Rensslear +Rental Car +Renters +Renton +Renton Maple Valley +Rentoul +Renway +Renwick +Renwick Park +Renwood +Renz +Renzo +Reo +Reock +Reon +Repetti +Repetto +Replingham +Report +Reporton +Reposa +Repository +Reposo +Reppan +Reppy +Representative +Reprise +Repton +Repton Manor +Republic +Republican +Requa +Reque +Resaca +Rescigno +Rescue +Research +Research Park +Reseau +Reseca +Reseda +Reservation +Reserve +Reservior +Reservoir +Reservoir Access +Reservoir Heights +Reservoir Hill +Resevoir +Residence +Residency +Resident +Reskin +Resnik +Resolution +Resota +Response +Ressa +Rest +Rest Point +Restarick +Restful +Restharrow +Resthaven +Reston +Restormel +Restwell +Restwood +Resty +Reta +Retford +Retirement +Retiro +Retner +Retrato +Retreat +Retriever +Retrop +Retta +Rettendon +Rettew +Rettig +Rettman +Return +Retz +Reuben +Reubens +Reunion +Reuss +Reuten +Reuter +Rev Henry +Rev JJ Evans +Rev Thomas Hooker +Reva +Reva Ridge +Revel +Revell +Revell Downs +Revelon +Revels +Revelstok +Revelstoke +Revenge +Revenna +Revensbourne +Revensey +Reventlow +Rever +Revere +Revere Beach +Revere House +Reverend Burns +Reverend Davis +Reverend R A Burke +Reverend Walton +Reverse +Revey +Revie +Review +Reville +Revillo +Revingstone +Revock +Revoir +Revolution +Revolutionary +Revolutionary Ridge +Revonah +Revonna +Rewe +Rewell +Rewley +Rex +Rexburg +Rexford +Rexhame +Rexland +Rexleigh +Rexmore +Rey +Reyam +Reycraft +Reycroft +Reydon +Reyem +Reyer +Reyes +Reymont +Reymouth +Reyna +Reynal +Reynaldo +Reynard +Reynards +Reynardson +Reynaud +Reynell +Reyner +Reynold +Reynolds +Reynolds Mill +Reynosa +Reyome +Reywood +Rfd Checker +Rfd Coach +Rfd Country Club +Rfd Lexington +Rfd Lincoln +Rfd Old Hicks +Rfd Popp +Rfd Shenandoah +Rfd Shiloh +Rhame +Rhapsody +Rhea +Rheam +Rheem +Rhen +Rhett +Rhianna +Rhine +Rhinecliff +Rhinehart +Rhinelander +Rhinesmith +Rhinestone +Rhinette +Rhita +Rhiwlas +Rhoades +Rhoda +Rhode +Rhode Hall +Rhode Harbor +Rhode Island +Rhodell +Rhodenda +Rhodes +Rhodesia +Rhodeswell +Rhodeswood +Rhodewell +Rhodin +Rhododendron +Rhodora +Rhodrons +Rhody +Rhonda +Rhonda Rheault +Rhondda +Rhone +Rhos +Rhosleigh +Rhoy +Rhubena +Rhude +Rhuland +Rhus +Rhus Ridge +Rhyan +Rhyl +Rhynas +Rhys +Ria +Riach +Rialto +Riano +Rib +Ribble +Ribblesdale +Ribbon +Ribbs +Ribchester +Ribeiro +Ribera +Ribero +Ribier +Ribston +Ribstone +Ric +Rica +Ricard +Ricardo +Ricca Farm +Riccardo +Riccards +Riccat +Ricci +Ricciuti +Rice +Rice City +Rice Creek +Rice Lake +Rice Mill +Rice Point +Rice Spring +Ricefield +Riceman +Rich +Rich Acres +Rich Branch +Rich Hill +Rich Meadow +Rich Valley +Richal +Richard +Richard Allen +Richard Burch +Richard House +Richard J Brown +Richard Lawrence +Richard Manor +Richard Meyjes +Richard Montgomery +Richard Simpson +Richard Tongue +Richardi +Richards +Richardshaw +Richardson +Richardson Nursery +Richbell +Richborough +Richbourne +Richdale +Riche +Richelieu +Richenbacher +Richert +Riches +Richfield +Richford +Richgar +Richgrain +Richie +Richion +Richland +Richland Grove +Richland Valley +Richlands +Richlee +Richman +Richmere +Richmond +Richmond George +Richmond Beach +Richmond George +Richmond Hill +Richmond Meech +Richmond Park +Richmond Valley +Richmondfield +Richmount +Richnee +Richter +Richter Farm +Richton +Richton Square +Richview +Richwood +Rick +Rickabear +Rickard +Rickards +Rickbern +Rickenbacker +Ricker +Rickerhill +Rickerman +Rickert +Rickett +Ricketts +Ricketts Hill +Ricketty +Rickey +Rickland +Rickling +Rickling Green +Rickman +Rickmans +Rickmansworth +Rickover +Ricks +Ricksons +Rickstones +Rickthorne +Ricky +Ricky Dick +Rico +Ricoli +Ricord +Ricroft +Riddell +Ridder Park +Riddiford +Ridding +Riddings +Riddio +Riddle +Riddles +Riddlesdale +Riddlesdown +Riddons +Riddy +Riden +Rideout +Rider +Rider Ridge +Riders +Riderwood +Ridg Gate +Ridgdale +Ridge +Ridge Bluff +Ridge Brook +Ridge Camp +Ridge Chapel +Ridge Cliff +Ridge Cove +Ridge Creek +Ridge Croft +Ridge Crossing +Ridge Farm +Ridge Fire +Ridge Ford +Ridge Haven +Ridge Heights +Ridge Hill +Ridge Hill Farm +Ridge Knoll +Ridge Moor +Ridge Oak +Ridge Park +Ridge Point +Ridge Pond +Ridge Ponds +Ridge Retreat +Ridge River +Ridge Rock +Ridge Top +Ridge View +Ridge Wood +Ridgebrook +Ridgecreek +Ridgecrest +Ridgecroft +Ridgecrop +Ridgedale +Ridgedell +Ridgefarm +Ridgefield +Ridgefield Village +Ridgegate +Ridgegreen +Ridgehill +Ridgehurst +Ridgeland +Ridgeland Manor +Ridgelands +Ridgelawn +Ridgelee +Ridgeley +Ridgeline +Ridgely +Ridgemark +Ridgemead +Ridgemist +Ridgemont +Ridgemoor +Ridgemore +Ridgemount +Ridgepoint +Ridgerock +Ridgeside +Ridgestone +Ridgetop +Ridgevale +Ridgeview +Ridgeville +Ridgewald +Ridgewater +Ridgeway +Ridgewell +Ridgewick +Ridgewind +Ridgewood +Ridgewood Fire +Ridgley +Ridgmont +Ridgmount +Ridgway +Ridgway Hill +Ridgwell +Ridham +Riding +Riding Center +Riding Club +Riding Court +Riding Fields +Riding Fold +Riding Hood +Riding House +Riding Loop +Riding Ridge +Riding Trail +Ridings +Ridlands +Ridler +Ridley +Ridling +Ridlon +Ridout +Ridpath +Ridsdale +Riebli +Riedel +Riedell +Rieder +Riedesel +Riedy +Riegel +Riegelmann +Rieke +Rieman +Rienzi +Riesco +Riesgraf +Riesling +Rieter +Riethel +Rieti +Riffa +Riffams +Riffel +Riffhams +Riffle +Riffle Ford +Riffles +Rifhams +Rifle +Rifle Range +Rifle Ridge +Riford +Rifton +Riga +Rigault +Rigby +Rigdale +Rigden +Rigdon +Rigel +Rigeley +Rigelsford +Rigene +Rigent +Rigery +Rigg +Rigger +Riggindale +Riggs +Riggs Hill +Riggs Manor +Right of Way +Righter +Righters Mill +Rigi +Rigler +Rignall +Rignals +Rigney +Rignold +Rigoletto +Rigoli +Rigor +Rigsby +Rigshill +Rigton +Riis Park +Riivendell +Riker +Riker Hill +Riley +Riley Lake +Riley Ridge +Rileyford +Rileys Lock +Rill +Rillbank +Rillo +Rilma +Rim +Rim Rock +Rim of the Redwoods +Rimbach +Rimbley +Rimby +Rimer +Rimfire +Rimington +Rimini +Rimkus +Rimlet +Rimmer +Rimmington +Rimrock +Rimsdale +Rimswell Holt Redcar +Rimu +Rimwood +Rimworth +Rinaldo +Rinard +Rincon +Rincon Fire +Rinconada +Rinda +Rindge +Rindle +Rindo Park +Rindone +Rinear +Riner +Ring +Ring Bolt +Ring Dove +Ring Hey +Ring Neck +Ring Valley +Ringcroft +Ringden +Ringe +Ringefield +Ringel +Ringenback +Ringer +Ringers +Ringfield +Ringford +Ringgold +Ringland +Ringler +Ringlestone +Ringlet +Ringley +Ringley Park +Ringling +Ringlow +Ringlow Park +Ringmer +Ringmoor +Ringmore +Ringneck +Ringo +Ringold +Rings End +Ringshall +Ringshaw +Ringslade +Ringstead +Ringway +Ringwood +Rini +Rink +Rinnock +Rintin +Rinwood +Rinzee +Rio +Rio Altos +Rio Blanco +Rio Bonito +Rio Bravo +Rio Chico +Rio Dixon +Rio Grande +Rio Hondo +Rio Linda +Rio Lindo +Rio Lobo +Rio Loma +Rio Mondego +Rio Nido +Rio Oso +Rio Poco +Rio Robles +Rio Serena +Rio Tierra +Rio Tinto +Rio Verde +Rio Vida +Rio Vista +Rio de Molinos +Rio del Mar +Rio del Ora +Riordan +Riparian +Ripe Apple +Ripley +Ripley Hill +Ripley Park +Ripleys Field +Ripon +Ripon Hall +Ripona +Rippburger +Rippenden +Rippersley +Rippingham +Ripple +Ripple Brook +Ripplemead +Ripplerock +Rippleview +Ripplewater +Ripplewood +Rippling +Rippling Branch +Rippling Brook +Rippling Pond +Rippling Ridge +Rippolson +Rippon +Rippon Lodge +Ripponden +Ripponden Nursery +Ripponden Old +Rippowam +Rips +Ripston +Risa +Risborough +Risch +Riscioni +Risden +Risdon +Rise +Rise Park +Risebridge +Risedale +Riseden +Risel +Riseldine +Riseley +Riser +Risha +Rishell +Rishton +Rishworth +Rishworth New +Rising +Rising Creek +Rising Dawn +Rising Glen +Rising Ridge +Rising Sun +Risinghill +Risingholme +Risk +Riske +Riskin +Risley +Rison +Risorta +Rispin +Rissington +Ristaino +Rita +Ritch +Ritchard +Ritchboro +Ritches +Ritchfield +Ritchie +Ritchie Marlboro +Ritchie Spur +Ritchings +Ritcroft +Riteway +Ritherdon +Ritie +Ritson +Rittenhouse +Ritter +Ritters +Rittner +Riva +Riva Ridge +Rival +Rival Moor +Rivanna +Rivanna River +Rivara +Rivard +Rivas +Rive +Rivelly +Riven Wood +Rivendell +Rivenoak +River +River Access +River Acres +River Airport +River Bank +River Bay +River Beach +River Bend +River Birch +River Bluff +River Club +River Clyde +River College +River Creek +River Crescent +River Crest +River Crossing +River Dell +River Edge +River Estates +River Falls +River Farm +River Farms +River Forest +River Front +River Gate +River Glen +River Grange +River Grove +River Heights +River Hill +River Hills +River Inn +River Island +River Landing +River Lawn +River Look +River Meadow +River Meadows +River Mill +River Mist +River Oak +River Oaks +River Park +River Plaza +River Point +River Pointe +River Ranch +River Rapids +River Ridge +River Rock +River Run +River Shore +River Swan +River Terrace +River Trail +River Tweed +River Valley +River View +River View Park +River View Quarry +River Village +River Walk +River Watch +River Wood +River Woods +RiverPark +Rivera +Riverark +Riverband +Riverbank +Riverbend +Riverbirch +Riverbluff +Riverboat +Riverboat Center +Riverbrook +Riverby +Rivercliff +Rivercourt +Rivercreek +Rivercrest +Riverdale +Riverdene +Riveredge +Riverfield +Rivergate +Riverhead +Riverhill +Riverholme +Riverhurst +Riverina +Riverlake +Riverland +Riverlands +Riverlane +Riverlawn +Riverlin +Rivermark +Rivermead +Rivermeads +Rivermist +Rivermont +Rivermoor +Rivermouth +Riverneck +Riverpark +Riverpoint +Riverrun +Rivers +Rivers Bend +Rivers Bluff +Rivers Edge +Rivers Reach +Rivers View +Riverscape +Riversdale +Riversdown +Riversend +Rivershill +Rivershire +Rivershore +Riverside +Riverside Park +Riverside Railroad +Riverside Run +Riverside Ter +Riverside View +Riverstone +Riversview +Riversville +Riverton +Rivertown +Rivertowne +Rivervale +Riverview +Riverview Acres +Riverview Rest +Riverwalk +Riverway +Riverwood +Riverwood Terrace +Riverwoods +Rivett +Riviera +Riviera Point +Riviera Sun +Rivington +Rivoir +Rivoli +Rivulet +Rix +Rixey +Rixford +Rixlew +Rixon +Rixsen +Rixson +Rixton +Rixtonleys +Riza +Rizal +Rizdon +Rizzo +Rizzolo +Roach +Roache +Road To the Ranches +Roading +Roading Brook +Roadrunner +Roads End +Roakes +Roald +Roamer +Roan +Roane +Roanne +Roanoke +Roaring Brook +Roaring Camp +Roaring Creek +Roaring Gate +Roark +Roarty +Roasalie +Roath +Rob +Rob Roy +Robak +Robander +Robandy +Robard +Robb +Robb Farm +Robbart +Robben +Robbern +Robbery Bottom +Robbia +Robbie +Robbin +Robbins +Robbins Farm +Robblee +Robby +Robbyn +Robecq +Roberge +Roberson +Robert +Robert Adam +Robert Arey +Robert Best +Robert Bigelow +Robert Bonazzoli +Robert Bowie +Robert Carter +Robert Dollar +Robert E Jason +Robert Evans +Robert F Toner +Robert Ford +Robert Frost +Robert Fulton +Robert Gabriel +Robert Grant +Robert H Harp +Robert Hall +Robert J Mathews +Robert Kirk +Robert L Smith +Robert L. Curbeam Jr. +Robert Lenox +Robert Lewis +Robert Louis +Robert M Bond +Robert Mays +Robert Memorial +Robert Miller +Robert Owen +Robert Parker Coffin +Robert Post +Robert Small +Robert Sproul +Robert T Palmer +Robert Treat Paine +Robert W Topham Jr +Robert York +Roberta +Roberto +Roberton +Roberts +Roberts Common +Roberts Cove +Roberts Lake +Roberts Orchard +Roberts Prospect +Roberts Ranch +Roberts Wood +Robertshaw +Robertson +Robertson Park +Roberttown +Robeson +Robey +Robeys Meadow +Robideaux +Robie +Robie Manor +Robilliard +Robin +Robin Ann +Robin Crest +Robin Dell +Robin Glen +Robin Hill +Robin Hood +Robin Meadow +Robin Oak +Robin Ridge +Robin Wood +Robina +Robincrest +Robindale +Robinette +Robinhood +Robinia +Robinridge +Robins +Robins Island +Robins Nest +Robinsbay +Robinsbridge +Robinsdale +Robinson +Robinson Creek +Robinson Jefferson +Robinson Landing +Robinsons Bay +Robinswood +Robinwood +Robison +Robjohns +Robken +Roblar +Roble +Roble Alto +Roble Ladera +Roble Ridge +Roble Veneno +Robleda +Robledo +Roblee +Robles +Robles Grandes +Robles Ranch +Robley +Roblyn +Roblynn +Robnel +Robovic +Robroy +Robs +Robsart +Robscott +Robshaw +Robsheal +Robshire Manor +Robson +Roburta +Robway +Roby +Robyn +Roc +Roc Fall +Roca +Rocart +Rocastle +Rocaton +Rocbaar +Rocca +Rocco +Rocfort +Roch +Rochambeau +Rochdale +Rochdale Old +Rochdate +Roche +Rochefort +Rochell +Rochelle +Rocher +Rochester +Rochester Way Reief +Rochester Way Relief +Rochester way Relief +Rochford +Rocina +Rock +Rock A Bye +Rock Anna +Rock Brook +Rock Canyon +Rock Cap +Rock Chapel +Rock Cliff +Rock Coast +Rock Cove +Rock Creek +Rock Creek Park +Rock Crystal +Rock Farm +Rock Fish +Rock Garden +Rock Glen +Rock Hall +Rock Harbor +Rock Hill +Rock Hollow +Rock House +Rock Island +Rock Lawn +Rock Ledge +Rock Lily +Rock Lodge +Rock Maple +Rock Meadow +Rock O Dundee +Rock Oak +Rock Point +Rock Ranch +Rock Ridge +Rock River +Rock Rose +Rock Run +Rock Spring +Rock Springs +Rock Valley +Rock Villa +Rock Wren +Rockanna +Rockaway +Rockaway Beach +Rockaway Breezy +Rockaway Point +Rockaway Valley +Rockbourne +Rockbridge +Rockburn +Rockburn Branch Park +Rockburn Hill +Rockburn Woods +Rockcliff +Rockcreek +Rockcrest +Rockcroft +Rockdale +Rockdale Plaza +Rockdove +Rockefeller +Rockenbach +Rockett +Rockfeller +Rockfield +Rockford +Rockford Service +Rockgate +Rockglen +Rockhall +Rockhampton +Rockhaven +Rockhill +Rockhold +Rockhold Creek +Rockhold Creek Shore +Rockhurst +Rockie +Rocking Horse +Rocking Spring +Rockingchair +Rockingham +Rockinghorse +Rockingstone +Rockins +Rockland +Rockland House +Rockland Park +Rocklands +Rocklawn +Rockledge +Rockleigh +Rockley +Rockliffe +Rocklin +Rocklyn +Rockmart +Rockmead +Rockmeadow +Rockmere +Rockmont +Rockmount +Rockne +Rockpile +Rockpoint +Rockpointe +Rockport +Rockridge +Rockrose +Rocks +Rocks Park +Rocksborough +Rocksbury +Rockshaw +Rockshire +Rockspray +Rockstone +Rockstrech +Rockton +Rockvale +Rockview +Rockville +Rockware +Rockway +Rockwell +Rockwin +Rockwood +Rockwood Heights +Rockwood Ranch +Rocky +Rocky Beach Farm +Rocky Bend +Rocky Branch +Rocky Brook +Rocky Creek +Rocky Crest +Rocky Dundee +Rocky Gap +Rocky Glen +Rocky Heights +Rocky Hill +Rocky Hills +Rocky Hollow +Rocky Knoll +Rocky Ledge +Rocky Meadow +Rocky Mount +Rocky Mountain +Rocky Nook +Rocky Point +Rocky Pond +Rocky Ravine +Rocky Ridge +Rocky Run +Rocky Shore +Rocky Spring +Rocky Springs +Rocky Top +Rocky Valley +Rocky Woods +Rockyledge +Rockywater +Rocliffe +Rocque +Rocsam Park +Rocton +Rod +Rod Beudry +Rod Laver +Rod Mill +Roda +Rodao +Rodborough +Rodbridge +Rodby +Rodd +Rodda +Rodeck +Roden +Rodenburg +Rodenhurst +Rodens +Rodeo +Rodeo Ridge +Roder +Roderick +Rodes +Rodgers +Rodgers Gravel Pit +Rodiman +Roding +Rodings +Rodley +Rodling +Rodman +Rodmarton +Rodmell +Rodmere +Rodmill +Rodney +Rodnick +Rodoani +Rodona +Rodondo +Rodonovan +Rodrigues +Rodriguez +Rodriques +Rodsall +Rodway +Rodwell +Roe +Roe Cross +Roe Downs +Roe Green +Roeacre +Roebling +Roebuck +Roeburne +Roeckel +Roedean +Roeder +Roediger +Roehampton +Roehampton High +Roehmer +Roehrs +Roel +Roeller +Roemer +Roentgen +Roesler +Roesner +Roessler +Roessner +Roestock +Rofant +Rofay +Rofe +Roff +Roff Point +Roffen +Roffes +Roffey +Rofford +Rogan +Rogart +Rogell +Roger +Roger Bacon +Roger Canoe Hollow +Roger Dimmick +Roger Goodwin +Roger Williams +Rogerio +Rogers +Rogers Cockrell +Rogers Farm +Rogers Heights +Rogers Park +Rogers Rough +Rogers Wood +Rogge +Roggel +Rogina +Rogowski +Rogue River +Rohan +Rohatyn +Rohavic +Rohde +Rohe +Rohini +Rohl +Rohlffs +Rohlwing +Rohn +Rohrer +Rohrman +Rohrsen +Rohrssen +Roine +Rojewski +Rojina +Roke +Roke Lodge +Rokeby +Roker +Roker Park +Rokers +Rokesby +Rokesly +Rokeva +Rokewood +Rokosz +Rolan +Roland +Roland Baxter +Rolander +Rolando +Rolee +Roleen +Rolerson +Rolestone +Roley +Rolf +Rolfe +Rolison +Roliver +Roll +Roll Shop +Rollesby +Rolleston +Rollie +Rollie Shepherd +Rollin +Rollin Acres +Rolling +Rolling Acres +Rolling Brook +Rolling Field +Rolling Forest +Rolling Fork +Rolling Glen +Rolling Green +Rolling Hill +Rolling Hills +Rolling Hlls +Rolling Holly +Rolling House +Rolling Knolls +Rolling Meadow +Rolling Meadows +Rolling Oak +Rolling Oaks +Rolling Plains +Rolling Ridge +Rolling River +Rolling Rock +Rolling Tree +Rolling View +Rolling Views +Rolling Wood +Rollingdale +Rollingdell +Rollingridge +Rollingside +Rollingstone +Rollingtop +Rollingwood +Rollingwoods +Rollinmead +Rollins +Rollins Ford +Rollinson +Rollo +Rolls +Rolls Park +Rollscourt +Rollstone +Rollswood +Rollwind +Rolly +Rollyn L Anderson +Rolph +Rolt +Rolton +Rolvenden +Rolyn Hills +Roma +Romack +Romagnolo +Romain +Romaine +Roman +Roman Farm +Roman Villa +Romana +Romanelli +Romanes +Romanfield +Romanhurst +Romani +Romanko +Romano +Romanowski +Romany +Romar +Romayne +Rombalds +Romberg +Rombouts +Romden +Rome +Romeo +Romeoville +Romer +Romero +Romey +Romeyn +Romford +Romier +Romig +Romiga +Romiley +Romilly +Romily +Romines +Romke +Romley +Romlon +Rommany +Rommel +Romney +Romney Lock +Romney Marsh +Romola +Romona +Romondt +Romp +Romscho +Romsey +Romsley +Romulus +Ron Cowan +Ron Lee +Ron Mace +Rona +Ronada +Ronaele +Ronald +Ronald Beall +Ronald P. Safer +Ronald Park +Ronalds +Ronaldstone +Ronan +Ronarm +Ronart +Ronbru +Ronco +Ronda +Ronde +Rondeau +Rondee +Rondel +Rondelay +Rondell +Rondin +Rondini +Rondorey +Rondu +Roneck +Ronek +Ronelean +Roney +Ronfearn +Ronhill +Ronian +Ronkonkoma +Ronni +Ronnie +Ronny +Rons +Ronson +Ronsu +Ronver +Ronwood +Rony +Ronzheimer +Rood +Roodlands +Roof +Rook +Rook End +Rookcross +Rooke +Rookery +Rookesley +Rookfield +Rooks +Rookstone +Rookwood +Rooley +Rooley Moor +Roome +Rooms +Rooney +Roop +Roos +Roosa +Roosevel +Roosevelt +Rooster +Root +Rootes +Roothill +Roots +Roots Hall +Rope +Ropeknot +Ropemaker +Roper +Ropers +Ropery +Ropes +Ropes Creek +Ropes Crossing +Ropley +Roppolo +Roque Moraes +Roquena +Roquette +Rorano +Rorke +Rorty +Ros Emily +Rosa +Rosa Blanca +Rosa Morada +Rosa Moss +Rosa Parks +Rosa Vista +Rosabel +Rosabell +Rosada +Rosado +Rosal +Rosalia +Rosalie +Rosalind +Rosalinda +Rosaline +Rosalita +Rosalla +Rosamond +Rosamun +Rosamund +Rosanna +Rosanne +Rosano +Rosaria +Rosarie +Rosario +Rosary +Rosaryville +Rosas +Rosaville +Rosbach +Roscoe +Roscoe Maverick +Roscoe Rowe +Roscommon +Roscow +Roscrea +Rose +Rose Acres +Rose Ann +Rose Anna +Rose Anne +Rose Arbor +Rose Bank +Rose Bates +Rose Bay +Rose Blossom +Rose Bush +Rose Cottage +Rose Creek +Rose Crest +Rose Ellen +Rose Farm +Rose Forest +Rose Garden +Rose Glen +Rose Hall +Rose Hatch +Rose Haven +Rose Hey +Rose Hill +Rose Kennedy +Rose Kiln +Rose Marie +Rose Mary +Rose Park +Rose Payten +Rose Point +Rose Ranch +Rose Ridge +Rose View +Rose Vine +Rose Wood +Rosea +Roseacre +Roseann +Roseanna Park +Roseanne +Rosebank +Rosebay +Roseberry +Roseberry Farm +Rosebery +Rosebine +Rosebloom +Rosebowl +Rosebriar +Rosebridge +Rosebrrok +Rosebud +Rosebury +Rosebush +Roseby +Roseclair +Rosecliff +Rosecourt +Rosecraft +Rosecran +Rosecrest +Rosecroft +Rosecroft Village +Roseda +Rosedale +Rosedene +Rosedew +Rosedown +Roseen +Rosefarm +Rosefinch +Roseford +Rosegarden +Rosegarth +Rosegate +Roseglen +Rosegold +Rosegum +Rosehall +Rosehaven +Rosehay +Roseheath +Rosehill +Roselake +Roseland +Roselands +Roselare +Roselawn +Roselea +Roseleaf +Roseleigh +Roselin +Rosell +Rosella +Roselle +Roselli +Roselynn +Rosemar +Rosemarie +Rosemary +Rosemead +Rosemeade +Rosemear +Rosemeath +Rosemere +Rosemill +Rosemily +Rosemont +Rosemont Hills +Rosemoor +Rosemore +Rosemount +Rosen +Rosenau +Rosenbaum +Rosenbrook +Rosenburger +Rosencrantz +Rosendale +Roseneath +Rosenfeld +Rosenfield +Rosengren +Rosenkranz +Rosensteel +Rosenstock +Rosenthal +Rosenthorpe +Rosenwinkle +Roseridge +Roserton +Roses +Rosethorn +Rosetta +Rosette +Rosevale +Rosevear +Roseveare +Rosevelt +Roseview +Roseville +Rosevine +Rosewalk +Rosewall +Rosewater +Roseway +Rosewind +Rosewood +Rosewood Manor +Rosey Bill +Rosford +Rosgill +Rosherville +Rosie Lee +Rosier +Rosiers Branch +Rosieville +Rosilian +Rosilie +Rosin +Rosina +Rosincress +Rosinweed +Rosita +Roskell +Roskelley +Roskin +Roslin +Roslindale +Roslyn +Roslyndale +Rosmead +Rosner +Roso +Rosol +Rosoman +Ross +Ross Arnold +Ross Branch +Ross Forry +Ross Hall +Ross Landing +Ross Lave +Ross Park +Ross Ridge +Ross Smith +Ross Valley +Rossal +Rossall +Rossback +Rossborough +Rossdale +Rosse +Rossefield +Rosselerin +Rossen +Rossenclough +Rossendale +Rosser +Rosseter +Rossett +Rossetti +Rossfold +Rossford +Rossi +Rossindel +Rossington +Rossini +Rossiter +Rosskelly +Rosslare +Rosslee +Rosslyn +Rosslyn Hill Pond +Rossmere +Rossmill +Rossmoor +Rossmore +Rossmoyne +Rossotto +Rossvale +Rossville +Rossway +Rosswood +Rosta +Rostella +Rostherne +Roston +Rostrevor +Rostron +Rostrov +Roswell +Rosy +Rosyman +Roszanski +Rota +Rotary +Rotcher +Rotella +Roth +Rothay +Rothbard +Rothbrook +Rothbury +Rothe +Rothenburg +Rother +Rotheram +Rotherbank Farm +Rotherbridge +Rotherby +Rothercombe +Rotherfield +Rotherham +Rotherhead +Rotherhill +Rotherhithe New +Rotherhithe Old +Rotherithe New +Rotherwick +Rotherwood +Rothery +Rothes +Rothesay +Rothgeb +Rothiemay +Rothley +Rothmans +Rothrack +Rothsay +Rothschild +Rothwell +Rothwell Churchfield +Rothwell Commercial +Roton +Rotorua +Rotterdam +Rottingdene +Rottkamp +Rottnest +Rotuma +Rotunda +Roualt +Roubound +Rouciano +Roudsby +Rouel +Rouen +Rouge +Rougemont +Rough +Rough Heys +Rough Rider +Roughan +Roughdown +Roughetts +Roughlea +Roughtley +Roughtown +Roughway +Roughwood +Rouillard +Rounce +Round +Round A Bend +Round Barn +Round Bay +Round Bush +Round Coppice +Round Hill +Round Hill Club +Round Ings +Round Lake +Round Lick +Round Oak +Round Pebble +Round Spring +Round Swamp +Round Table +Round Thorn +Round Top +Round Tree +Roundabout +Roundals +Roundaway +Roundbush +Roundel +Roundelay +Roundfield +Roundhay +Roundhead +Roundhill +Roundhouse +Roundmead +Roundmoor +Rounds +Roundshead +Roundstone +Roundtable +Roundthorn +Roundtop +Roundtree +Roundview +Roundwood +Roundy +Rounsevell +Rounthorn +Rountree +Roupell +Rourke +Rouse +Rouse Hill +Rouse Mill +Rousebarn +Rousham +Rousillon +Rousseau +Roussell +Roustein +Routh +Routier +Rovato +Roveout +Rover +Rovina +Roving Hills +Roving Wood +Row +Rowallan +Rowalt +Rowan +Rowan Field +Rowan Tree +Rowanberry +Rowanhurst +Rowans +Rowanside +Rowanswood +Rowantree +Rowanwood +Rowardennan +Rowarth +Rowayton +Rowayton Woods +Rowberry +Rowbotham +Rowcross +Rowdell +Rowden +Rowditch +Rowdon +Rowdown +Rowdowns +Rowe +Rowe Hill +Rowe Ranch +Rowell +Rowen +Rowena +Rowendale +Rowfant +Rowhill +Rowhook +Rowhurst +Rowland +Rowland Hill +Rowland Park +Rowlands +Rowlatt +Rowlett +Rowley +Rowley Bank +Rowley Bridge +Rowley Hill +Rowleys +Rowleys Point +Rowliff +Rowling +Rowlls +Rowly +Rowner +Rowney +Rowntree +Rowood +Rowplatt +Rowser +Rowsley +Rowson +Rowton +Rowton Grange +Rowzill +Roxalina +Roxana +Roxann +Roxanna +Roxanne +Roxas +Roxborough +Roxborough Park +Roxburg +Roxburgh +Roxbury +Roxbury Mills +Roxen +Roxeth Green +Roxeth Hill London +Roxholme +Roxie +Roxley +Roxton +Roxwell +Roxy +Roy +Roy Croft +Roy Frerichs +Roy Patrick +Royal +Royal Ann +Royal Anne +Royal Arch +Royal Beach +Royal Birkdale +Royal Burgandy +Royal Burkedale +Royal Carriage +Royal Coach +Royal Coachman +Royal Connaught +Royal County Down +Royal Court +Royal Creek +Royal Crest +Royal Crown +Royal Dane +Royal Docks +Royal Dominion +Royal Doulton +Royal Dublin +Royal Engineers +Royal Estates +Royal Exchange +Royal Forest +Royal Fox +Royal Foxhunt +Royal Garden +Royal George +Royal Georgian +Royal Glen +Royal Green +Royal Heights +Royal Hill Roan +Royal Hills +Royal Hospital +Royal Lake +Royal Lytham +Royal Meadow +Royal Melbourne +Royal Mint +Royal Oak +Royal Oaks +Royal Palm +Royal Park +Royal Patents +Royal Pier +Royal Plaza +Royal Porthcawl +Royal Portrush +Royal Quay +Royal Ridge +Royal Robin +Royal Saint George +Royal Sovereign +Royal Swan +Royal Tern +Royal Trees +Royal Troon +Royal Vale +Royal View +Royal West Kent +Royal Woods +Royal Worchester +Royal Worlington +Royalblue +Royalcrest +Royale +Royale Glen +Royale Park +Royall +Royalston +Royalthorn +Royalthorne +Royalton +Royalwood +Royat +Roycar +Royce +Roycraft +Roycroft +Royd +Royd Moor +Royden +Roydene +Roydon +Roydon Hall +Royds +Royds Farm +Royds Hall +Royle +Royle Green +Royley +Roylston +Roynton +Royon +Roys +Roys Hill +Royson +Royston +Royston Park +Royton +RoyzElle +Royzelle +Rozalyn +Rozanne +Rozella +Rozelle +Ruabon +Ruane +Ruann +Ruatan +Rub of Green +Rubar +Rubastic +Rubble +Rubbly +Rubens +Rubenstein +Rubicon +Rubicon Farm +Rubidoux +Rubie +Rubin +Rubina +Rubino +Rubion +Rubis +Rubish Tip +Ruble +Rublee +Rubus +Ruby +Ruby Hill +Rubye +Ruck +Rucker +Ruckholt +Ruckinge +Rucklers +Ruckman +Ruckmans +Ruckner +Rucks Farm +Rucliff +Rudd +Rudden +Rudder +Ruddock +Ruddpark +Ruddy +Ruddy Duck +Rudgear +Rudgwick +Rudheath +Rudley Green +Rudnick +Rudolf +Rudolph +Rudon +Rudsdale +Rudston +Rudy +Rudyard +Rudyard Kipling +Rueben +Ruel +Rueley Dell +Rues +Ruess +Rueth +Ruff +Ruffed Grouse +Ruffin +Ruffing +Ruffled Feather +Ruffled Feathers +Ruffner +Rufford +Rufo +Rufus +Rufus Isaacs +Rugani +Rugby +Rugdale +Ruge +Rugeley +Rugen +Ruger +Rugg +Ruggles +Ruggles Pond +Rugosa +Rugwood +Ruhe +Ruhl +Ruhlman +Ruins +Ruins Barn +Ruins Creek +Ruisdael +Ruislip +Ruisseau Francais +Ruit Farm +Rulana +Ruland +Rule +Rullman +Rulofson +Rum Point +Rum River +Rumana +Rumballs +Rumbles +Rumbolds +Rumbrook +Rumbullion +Rumford +Rumford Park +Rumney +Rumonoski +Rumple +Rumrill +Rumsay +Rumsey +Rumsford +Rumson +Rumstead +Rumworth +Run Common +Runabout +Runaldue +Runaway +Runbold +Runckel +Runcorn +Rundelac +Rundle +Runfold +Runford +Runge +Runger +Runham +Runiak +Runic +Runkenhage +Runley +Runnacles +Runner +Runneymede +Running Bear +Running Brook +Running Cedar +Running Creek +Running Deer +Running Farm +Running Foxes +Running Hill +Running Hills +Running Iron +Running Mare +Running Pump +Running Ridge +Running River +Running Springs +Runnymead +Runnymeade +Runnymede +Runsell +Runswick +Runtley Wood +Runway +Runwell +Runwick +Runyan +Runyon +Runyons +Rupack +Rupert +Rupertswood +Ruping +Rupp +Ruppert +Rural +Rural Estates +Ruritan +Rusch +Ruschin +Ruschli +Rusciano +Rusco +Ruscoe +Ruscombe +Rusden +Ruse +Rusfield +Rush +Rush Creek +Rush Green +Rush Hill +Rush Landing +Rush Meadow +Rush River +Rush River Park +Rushall +Rusham Park +Rushams +Rushbottom +Rushbrook +Rushbrooke +Rushbury +Rushcroft +Rushdean +Rushden +Rushdene +Rushen +Rushenden +Rusher +Rushes +Rushett +Rushetts +Rushey +Rushfield +Rushford +Rushgrove +Rushing Creek +Rushington +Rushingwater +Rushlake +Rushleigh +Rushley +Rushmead +Rushmere +Rushmoor +Rushmore +Rusholme +Rushout +Rushside +Rushton +Rushway +Rushwick +Rushwood +Rushworth +Rushy Meadow +Ruskin +Ruskindale +Ruskington +Ruskoi +Rusland +Rusland Park +Rusper +Russ +Russek +Russel +Russel Hill +Russel Snow +Russel Thomas +Russell +Russell Aldrich +Russell Branch +Russell Calvin +Russell Hill +Russell Park +Russell Thomas +Russell Woods +Russell Zepp +Russellcroft +Russells +Russells Pond +Russelmann Park +Russen +Russet +Russet Hill +Russet Wood +Russett +Russetts +Russi +Russia +Russia Branch View +Russia Dock +Russian +Russian River +Russington +Russler +Russo +Rust +Rust Craft +Rustad +Rusten +Rusthall +Rusthall High +Rustic +Rustic Gate +Rustic Hill +Rustic Hills +Rustic Rail +Rustic Ridge +Rustic View +Rustic Way +Rustic Wood +Rusticwood +Rusting +Rustle +Rustlewood +Rustling Leaves +Rustling Oak +Rustling Oaks +Ruston +Ruston Bridge +Rusty +Ruta +Rutan +Rutford +Rutgers +Ruth +Ruth Ann +Ruth B Swann +Ruth Davis +Ruth Ellen +Ruth Fitzgerald +Ruthellen +Ruthelma +Ruthen +Ruthenbeck +Rutherdale +Rutherford +Rutherford Hill +Rutherglen +Rutherland +Rutherwyk +Ruthie +Ruthin +Ruthland +Ruthven +Rutland +Rutland Round +Rutland View +Rutledge +Rutler +Rutley +Rutlish +Rutson +Ruttenberry +Rutter du Bois +Rutton Hill +Rutz +Rutz Lake +Ruus +Ruxbury +Ruxley +Ruxshire +Ruxton +Ruzac +Ryan +Ryan Ranch +Ryan Ronald +Ryanlynn +Ryarsh +Ryawa +Rybeck +Ryberg +Rybrook +Ryburn +Ryce +Rycon +Rycote +Rycroft +Rydal +Rydale +Rydall +Ryde +Ryde Vale +Rydeen +Rydell +Ryden +Rydens +Ryder +Ryder Hill +Ryderbrow +Ryders +Rydes +Rydes Hill +Rydge +Rydin +Rydley +Rydon +Rydons +Rye +Rye Bank +Rye Beach +Rye Brook +Rye Hill +Rye Lake +Rye Mill +Rye Ridge +Ryebank +Ryeburne +Ryecroft +Ryedale +Ryefield +Ryefields +Ryegate +Ryehill +Ryehurst +Ryeish +Ryeland +Ryelaw +Ryemead +Ryer +Ryer Island +Ryers +Ryersh +Ryerson +Ryes +Ryeside +Ryestone +Ryewood Farm +Ryfold +Rygate +Ryhiner +Ryhope +Rykmansford +Rylance +Ryland +Ryland Park +Rylands +Ryle +Ryle Park +Rylett +Ryleys +Rylston +Rylstone +Rymar +Rymer +Rymill +Rymney +Rynan +Rynda +Rynex +Ryon +Ryree +Ryrie +Rysbrack +Rystwood +Rythe +Ryton +Ryton Ridge +Ryvers +Ryves +Rywick +S Abbey Hill +S Abbott +S Aberdeen +S Abingdon +S Access +S Acorn Ridge +S Ada +S Adams +S Addison +S Adelaide +S Admiral +S Adsit +S Aero +S Ahrens +S Ahwahnee +S Airlite +S Albany +S Albert +S Aldine +S Alfred +S Alice +S Alleghany +S Allen +S Allport +S Alpine +S Amboy +S Amherst +S Anderson +S Andrew +S Ann +S Anna +S Anna Marie +S Annandale +S Anthony +S Anvil +S Apple +S Aqueduct +S Arbeiter +S Arbogast +S Arbor +S Arboretum +S Arbory +S Arch +S Archer +S Ardmore +S Arlington +S Arlington Heights +S Arlington Mill +S Arlington Ridge +S Arnell +S Arran +S Artesian +S Arthur +S Ash +S Ashbury +S Ashby +S Ashland +S Astor +S Atlantic +S Auburn +S Aurora +S Austin +S Avalon +S Avon +S Azar +S B +S Babcock +S Baker +S Baldwin +S Ball +S Balmiere +S Balmoral +S Balmoral Woods +S Barkley +S Barnaby +S Barrington +S Barry +S Barten +S Bartlett +S Barton +S Basham +S Basswood +S Batavia +S Battle Creek +S Bay +S Bayles +S Beach +S Bedford +S Beech Tree +S Beechcroft +S Beers +S Belair +S Belgrade +S Bell +S Belle +S Bellows +S Belmont +S Beloit +S Belt Circle +S Bend +S Bender +S Bennett +S Bensley +S Benson +S Bentley +S Benton +S Bereman +S Bergman +S Berkeley +S Berkshire +S Berteau +S Beulah Vista +S Beverly +S Beverwyck +S Bianco +S Big Run +S Biltmore +S Birchdale +S Birchwood +S Birkhoff +S Biscayne +S Bishop +S Bismark +S Black Forest +S Blackberry +S Blackhawk +S Blackstone +S Blaisdell +S Blake +S Blanchard +S Blanding Woods +S Bleeker +S Bloomingdale +S Blossom +S Blue Island +S Blue Water +S Bobby +S Bode +S Bodin +S Bonaparte +S Bond +S Bonfield +S Book +S Boston +S Bothwell +S Boulder +S Boundary +S Bourndale +S Bowdoin +S Boyd +S Bradford +S Bragg +S Brainard +S Braintree +S Bramble Hill +S Branch +S Brandon +S Branford +S Braymore +S Brennan +S Brentwood +S Brewster +S Briar +S Briarwood +S Bridge +S Bridle Creek +S Bridle Path +S Briggs +S Bright +S Brightway +S Bristol +S Brittany +S Broad +S Broadway +S Brockway +S Brook +S Brookdale +S Brookshore +S Brookside +S Brookwood +S Broome +S Brown +S Browning +S Bruner +S Brush +S Buchanan +S Buckhout +S Buesching +S Buffalo +S Buffalo Grove +S Burley +S Burnett +S Burnham +S Burno +S Burnside +S Burr +S Bush +S Business Park +S Butehorn +S Butler +S Butterfield +S Cabin +S Cabot +S Calhoun +S California +S Calumet +S Calumet River +S Canal +S Canal Bank +S Canalport +S Canterbury +S Cantigny +S Canton +S Canyon +S Cardinal +S Carillon +S Carlin Springs +S Carlinda +S Carll +S Carlton +S Carnot +S Caroline +S Carolyn +S Carondolet +S Carpenter +S Carrie +S Caryl +S Casey +S Cass +S Castlewood +S Catawba +S Cathedral +S Catherine +S Cathy +S Caton +S Cedar +S Cedar Lake +S Cedarbend +S Cedarcrest +S Center +S Central +S Central Park +S Centre +S Centre Island +S Centurion +S Century +S Champlain +S Channing +S Chapel +S Chappel +S Charles +S Charlotte +S Charlton +S Charter +S Chase +S Chatham +S Chatsworth +S Chelsea +S Chennault +S Cherokee +S Cherry +S Cherry Grove +S Cherry Valley +S Chester +S Chesterfield +S Chestnut +S Chevy Chase +S Cheyenne +S Chicago +S Chicago Beach +S Chicot +S Chippendale +S Chippewa +S Chowen +S Christiana +S Church +S Churchill +S Cicero +S Circle +S Claire +S Claremont +S Clarence +S Clarendon +S Clark +S Clay +S Cleburne +S Cleveland +S Clifton +S Clifton Park +S Cline +S Clinton +S Clyde +S Coach +S Cobblestone +S Codo +S Coghill +S Colborne +S Coles +S Colfax +S Colonial +S Colorado +S Columbia +S Columbine +S Columbus +S Comanche +S Commercial +S Commons +S Commonwealth +S Compass +S Connecticut +S Constitution +S Consumers +S Conway Farm +S Cook +S Coolidge +S Copper Beach +S Corabelle +S Corbett +S Corcoran +S Corliss +S Cornell +S Corona +S Cottage +S Cottage Grove +S Cottage Hill +S Cottenet +S Country +S Country Club +S Country Squire +S Countryside +S County Farm +S County Line +S Court House +S Coventry +S Covert +S Cowley +S Craft +S Cranberry +S Crandall +S Crawford +S Cree +S Creek +S Cregier +S Creighton +S Creme +S Crescent +S Crest +S Cretex +S Cretin +S Croissant +S Crowell +S Crystal +S Culpeper +S Cumberland +S Cuyler +S Cypress +S Dairy +S Dale +S Dallas +S Damen +S Daniel +S Daniels +S Dansher +S Dante +S Dartmoor +S Dauphin +S Davol +S Day +S Deal +S Dean +S Dearborn +S Dearman +S Decatur +S Dedlow +S Dee +S Deep Lake +S Deer Park +S Deere Park +S Deerpath +S Deerwood +S Delaplaine +S Delaware +S Delphia +S Demarest +S Dennis +S Denver +S Denvir +S Depot +S Derby +S Derby Glen +S Derbyshire +S Des Plaines +S Desplaines +S Detroit +S Devoe +S Dewey +S Diagonal +S Diamond Lake +S Dickerson +S Dinwiddie +S Division +S Dobson +S Dodd +S Dogwood +S Dominion +S Donald +S Donegal +S Donna +S Doolittle +S Doral +S Dorchester +S Doty +S Douglas +S Dove +S Dover +S Dow +S Dublin +S Duffy +S Duke +S Duluth +S Dunbar +S Dundee +S Dunlap +S Dunmoor +S Dupage +S Durst +S Dutcher +S Dymond +S Dyre +S E Frontage +S Eads +S Eagle +S Early +S East +S East End +S Eastcliff +S Eastern +S Eastgate +S Eastwood +S Eberhardt +S Eberhart +S Echo +S Eckar +S Edbrooke +S Eden +S Edgelawn +S Edgewater +S Edgewood +S Edinburgh +S Edison +S Edson +S Edward +S Edwin +S Eggleston +S Egret +S Ela +S Elaine +S Elder +S Eleanor +S Elevator +S Elgin +S Elizabeth +S Elk +S Elliott +S Ellis +S Ellsworth +S Ellyn +S Elm +S Elmer +S Elmhurst +S Elmwood +S Elodie +S Elroy +S Elsdon +S Elsie +S Elsner +S Emerald +S Emerson +S Eola +S Erie +S Erwing +S Escanaba +S Esmond +S Essex +S Euclid +S Eva +S Evans +S Evanslawn +S Evanston +S Everett +S Evergreen +S Ewing +S Exchange +S Exmoor +S Fairfax +S Fairfield +S Fairview +S Falls +S Farm +S Farm View +S Farmhill +S Farmingdale +S Farmington +S Farnsworth +S Farragut +S Farrell +S Farview +S Faxon +S Federal +S Feltus +S Fenwick +S Fern +S Fernwood +S Ferris +S Ferry +S Fielding +S Fillmore +S Finley +S Finn +S Fish Lake +S Flambeau +S Fletcher +S Florida +S Florida Grove +S Floyd +S Ford +S Fordham +S Forest +S Forestview +S Fork +S Forrest +S Forrestville +S Fort Scott +S Four Mile Run +S Fox +S Fox Wood +S Foxfire +S Francis +S Francisco +S Franklin +S Franzen +S Frederick +S Freeman +S Freemont +S Freeway +S Fremont +S French +S Front +S Frontage +S Frontenac +S Fryer +S Fullerton +S Fulton +S Gables +S Gail +S Galahad +S Gannon +S Garden +S Garfield +S Gary +S Gate +S Gates +S Gawain +S Gaylore +S Genoa +S George +S George Mason +S Georgia +S Gerald +S Gibbons +S Gibson +S Gifford +S Gilbert +S Giles +S Gladstone +S Glasgow +S Glebe +S Glen +S Glen Eagle +S Glendale +S Glenroy +S Glenview +S Glenwood +S Glover +S Golden Oak +S Golf +S Golfview +S Goodwin +S Gordon +S Gorman +S Gougar +S Grace +S Graceland +S Granada +S Grand +S Grand Monde +S Grand Prairie +S Grant +S Gratten +S Great Neck +S Greeley +S Green +S Green Bay +S Green Heron +S Green Meadow +S Green Meadows +S Greenbriar +S Greenbrier +S Greenbush +S Greene +S Greenfield +S Greenmount +S Greenview +S Greenway +S Greenwood +S Griffith +S Griggs +S Grotto +S Grove +S Gullikson +S Gunderson +S Haddow +S Hadfield +S Hager +S Hale +S Hall +S Halsted +S Ham Lake +S Haman +S Hamilton +S Hamlet +S Hamlin +S Hamline +S Hampton +S Hancock +S Hanover +S Hansen +S Harbor +S Harding +S Harlem +S Harold +S Harper +S Harriet +S Harrison +S Harry J Rogowski +S Hart +S Hartmann +S Hartshorne +S Hartwell +S Harvard +S Harvest +S Harvest Hills +S Harvey +S Haven +S Haverhill +S Hawthorne +S Hayes +S Hayne +S Hazel +S Hazel Hill +S Hazelton +S Healy +S Heath +S Heathcote +S Heather +S Heatherwood +S Hebbard +S Heights +S Helene +S Helmar +S Hemlock +S Henry +S Herbert +S Heritage +S Herman +S Hermitage +S Hermosa +S Herricks +S Hi Lusi +S Hickory +S High +S Highland +S Highlawn +S Highview +S Highway +S Highwood +S Hill +S Hillcrest +S Hillock +S Hills +S Hillsdale +S Hillside +S Hilton +S Hinkley +S Hobart +S Hobble Bush +S Hoey +S Holcomb +S Holcombe +S Holiday +S Holland +S Hollins Ferry +S Holly +S Holmdel +S Holyoke +S Homan +S Home +S Homer +S Homewood +S Honore +S Horners +S Hough +S Houston +S Howard +S Howell +S Hoxie +S Hoyne +S Hoyt +S Hubbard +S Hudson +S Humboldt +S Humphrey +S Hunter +S Huntington +S Hyde Park +S I Oka +S Illinois +S Ilwaco +S Independence +S Indian Trail +S Indiana +S Indianapolis +S Inge +S Ingleside +S Ingram +S Inman +S Iowa +S Iris +S Iron +S Iroquois +S Irving +S Ivanhoe +S Ives +S Ivy +S Jackson +S James +S Jamestown +S Jane +S Jasmine +S Jasper +S Jefferson +S Jeffery +S Jenkins +S Jennings +S Jensen +S Jerome +S Jessica +S Joalyce +S Joan +S John +S Johnson +S Joliet +S Jonquil +S Jordan +S Joseph +S Joyce +S Julia +S Julian +S June +S Juneau +S Justen +S Justine +S Kainer +S Kankakee +S Karlov +S Kaspar +S Kathey +S Kavanaugh +S Kean +S Keating +S Kedvale +S Kedzie +S Keefe +S Keeler +S Keeley +S Kemper +S Kendall +S Kenfig +S Kenilworth +S Kenmore +S Kennedy +S Kenneth +S Kensico +S Kensington +S Kent +S Kenton +S Kenwood +S Kerfoot +S Kerry +S Ketay +S Ketcham +S Kevin +S Kilbourn +S Kildare +S Kilkenny +S Kilpatrick +S Kimbark +S Kimberly +S Kinderkamack +S King +S Kings +S Kingston +S Kipling +S Kirkland +S Klemme +S Knight +S Knoll +S Knollway +S Knollwood +S Knox +S Knyghtwood +S Kolin +S Kolmar +S Komensky +S Kostner +S Kreiter +S Kroll +S Krueger +S Kuersten +S La Fox +S La Grange +S Lady Bar +S Lafayette +S Laflin +S Lageshulte +S Laird +S Lake +S Lake Ioseo +S Lake Park +S Lake Shore +S Lakeview +S Lakewood +S Lambert +S Lamon +S Lancaster +S Lang +S Langley +S Lanza +S Laporte +S Larrimore +S Lasalle +S Latrobe +S Laurel +S Lavergne +S Lawler +S Lawn +S Lawndale +S Lawnside +S Lawrence +S Lawton +S Leach +S Leamington +S Leavitt +S Leclaire +S Lee +S Leech +S Lehigh +S Leisure World +S Leitch +S Lemington +S Lenhome +S Lerisa +S Leslie +S Leswing +S Lewis +S Lewood +S Lexington +S Lexow +S Leyden +S Liberty +S Lill +S Lillian +S Lily Lake +S Lincoln +S Lincolnway +S Linda +S Lindberg +S Linden +S Linder +S Lindsey +S Linn White +S Little +S Lituanica +S Liverpool +S Livingston +S Lloyd +S Loantaka +S Lock +S Lockwood +S Locust +S Lodge +S Lombard +S London +S Long +S Long Beach +S Longcross +S Longview +S Longwood +S Loomis +S Loop +S Lorang +S Lord +S Lore +S Lorel +S Lorraine +S Lorton +S Lothair +S Lotus +S Louck +S Loucks +S Louis +S Lourdes +S Loveland +S Lowe +S Lowell +S Lucas +S Luella +S Lumber +S Luna +S Lund +S Lyle +S Lyman +S Lynn +S Lynne +S Lyon +S Lytle +S Macalester +S Mackinaw +S Macrae +S Madison +S Magnolia +S Magoun +S Maid Marion +S Main +S Major +S Malibu +S Mallard +S Mallory +S Malta +S Manassas +S Manchester +S Manistee +S Mann +S Manomin +S Manor +S Mansfield +S Mansion +S Maple +S Maplewood +S Marathon +S Marilyn +S Marion +S Market +S Marquette +S Marshall +S Marshfield +S Martha +S Martin +S Martine +S Mary +S Mary Therese +S Maryland +S Mason +S Massasoit +S Matteson +S Maxon +S May +S Mayfield +S Mayflower +S Maywood +S Mc Vicker +S McCarron +S McCarthy +S McCorkle +S McDaniel +S McDowell +S McKinley +S McKinley Woods +S McKnight +S Meacham +S Meade +S Meader +S Meadow +S Meadow Fence +S Medina +S Medinah +S Meister +S Melody +S Melrose +S Melvina +S Menominee +S Meridian +S Merion +S Merle +S Merrick +S Merrill +S Merrimac +S Merrion +S Mesa +S Metron +S Michael +S Michaels +S Michigan +S Micvicker +S Middle Neck +S Middle Point +S Middlesex +S Middleton +S Middletown +S Midfield +S Midland +S Midlothian +S Mill +S Millard +S Miller +S Millpage +S Millwood +S Milton +S Milwaukee +S Mineral Springs +S Minerva +S Minnesota +S Minnisink +S Mississippi +S Mississippi River +S Misty Harbour +S Mitchell +S Mobile +S Moetz +S Monaghan +S Monitor +S Monroe +S Montague +S Montana +S Montclair +S Monterey +S Montgomery +S Moody +S Moore +S Moorman +S Morel +S Morgan +S Mormann +S Morris Hill +S Mortimer +S Mount Curve +S Mount Prospect +S Mountain +S Mozart +S Muir +S Muirfield +S Mulligan +S Municipal +S Munn +S Murphy +S Murray +S Muskegon +S Myrtle +S Na Wa Ta +S Nacke +S Nagle +S Nancy +S Naper +S Narragansett +S Nash +S Nashville +S Nassau +S Natchez +S Natoma +S Navajo +S Neenah +S Nelson +S Neltnor +S Neva +S New +S New England +S New Hampshire +S Newberry +S Newcastle +S Newland +S Newman +S Nichols +S Niemann +S Nolton +S Norbury +S Nordica +S Normal +S Normandy +S Northampton +S Northern Illinois +S Northwoods +S Norwood +S Nottingham +S Noyes +S O S +S Oak +S Oak Creek +S Oak Glenn +S Oak Knoll +S Oak Park +S Oak Ridge +S Oak River +S Oak Shore +S Oakcrest +S Oakdale +S Oakenwald +S Oakhurst +S Oakland +S Oakleaf +S Oakley +S Oakridge +S Oaks +S Oakwood +S Ocean +S Oconto +S Octavia +S Ode +S Ohio +S Oketo +S Old Creek +S Old Glebe +S Old Hickory +S Old Mill +S Old Plum Grove +S Old Post +S Old Rand +S Olive +S Oltendorf +S Olympia +S Olympic +S Ontario +S Orange +S Orchard +S Oregon +S Orleans +S Orme +S Osborne +S Osceola +S Ott +S Ottawa +S Owen +S Oxford +S Oyster Bay +S Packers +S Page +S Palm +S Palos +S Parente +S Park +S Park Place +S Parke +S Parker +S Parker Ridge +S Parkside +S Parnell +S Pascal +S Passaic +S Patrick +S Patterson +S Paula +S Paulina +S Paxton +S Payne +S Peach +S Peach Tree +S Pearl +S Pebble Creek +S Pecan +S Peck +S Pembroke +S Penataquit +S Pennington +S Pennsylvania +S Peoria +S Perkins +S Perry +S Pershing +S Petersburg +S Pettibone +S Peyton +S Pfingsten +S Phelps +S Phillip +S Phillips +S Pickens +S Pickett +S Pierce +S Piermont +S Pine +S Pine Grove +S Pine Hill +S Pine Valley +S Pinecrest +S Pinehurst +S Pinewood +S Pipeline +S Pitt +S Plantation +S Plaza +S Pleasant +S Pleasant Hill +S Plum Grove +S Plymouth +S Plympton +S Poe +S Point +S Point Douglas Ser +S Pointe +S Polk +S Pollard +S Polling House +S Ponderosa +S Pool +S Poplar +S Porter +S Powder Mill +S Prairie +S Prairie View +S Prater +S Preakness +S Preller +S Prescott +S President +S Princeton +S Prindle +S Prior +S Prospect +S Provencal +S Pueblo +S Pulaski +S Putnam +S Quaker +S Quassey +S Quebec +S Queen +S Quentin +S Quincy +S Quinn +S Racine +S Raddant +S Railroad +S Rammer +S Rand +S Randall +S Randolph +S Randolphville +S Rankin +S Rathje +S Raven +S Ravinia +S Ravisloe +S Rawson Bridge +S Raymond +S Rea +S Rebecca +S Red Barn +S Red Coat +S Redwood +S Regan +S Regent +S Regents +S Regina +S Reid +S Reilly +S Remington +S Rensselaer +S Rexford +S Reynolds +S Rhodes +S Richard +S Richards +S Richmond +S Ridge +S Ridgedale +S Ridgeland +S Ridgeway +S Riegel Farm +S River +S River Clubhouse +S River Landing +S Rivercrest +S Riverdale +S Riverside +S Riverview +S Riviera +S Robert +S Robert Damm +S Robert Emmett +S Roberta +S Roberts +S Robin +S Robin Hill +S Robincrest +S Robinson +S Rockwell +S Rodenburg +S Rohallion +S Rolfe +S Roma +S Ronald +S Roosevelt +S Root +S Rose +S Rosedale +S Roselle +S Rosemary +S Rosewell +S Rosewood +S Ross +S Rowell +S Roxanna +S Roy +S Royal Crest +S Royal Oak +S Royal Oaks +S Ruble +S Ruby +S Rush +S Russell +S Rutherford +S Ryan +S Sacramento +S Saddlebrook +S Saddlecreek +S Sagamore +S Sage +S Saint Asaph +S Saint Marys +S Salem +S San Fernando +S San Francisco +S Sandpiper +S Sangamon +S Sarah +S Saratoga +S Sawyer +S Saxon +S Sayer +S Sayre +S Schmidt +S School +S Schoolhouse +S Schultz +S Sciota +S Scott +S Scottsdale +S Scoville +S Seamans Neck +S Sears +S Seebert +S Seeley +S Seminary +S Seminole +S Seneca +S Senour +S Serenity +S Service +S Seymour +S Shaddle +S Shannon +S Shelby +S Shelley +S Sheridan +S Sherman +S Sherwood +S Shields +S Shirley +S Shirlington +S Shore +S Short +S Shoshoni +S Silver Fox +S Sir Galahad +S Skidmore +S Skokie +S Skye +S Skyline +S Sleight +S Smith +S Snelling +S South +S South Chicago +S South Elgin +S South Shore +S Southgate +S Southmeadow +S Southport +S Southwood +S Spalding School +S Spaulding +S Spencer +S Spring +S Spring Garden +S Spring Meadows +S Springfield +S Springwood +S Spruce +S Suffolk +S Sullivan +S Summit +S Sumner +S Sunnyside +S Sunridge +S Sunrise +S Sunset +S Susan +S Sutton +S Sutton Lake +S Sycamore +S Sylvan +S Syndicate +S Tabler +S Taft +S Talman +S Tara +S Tarn +S Taylor +S Teal +S Tehle +S Terhune +S Terminal +S Terrace +S Testa +S Thistle +S Thomas +S Thomas Dillon +S Thompson +S Thorn Creek +S Throop +S Thurlow +S Tilden +S Timber +S Timberlane +S Tippecanoe +S Tonka +S Torrence +S Tower +S Town Center +S Trails End +S Travers +S Travis +S Tripp +S Trivett +S Troy +S Trumbull +S Truro +S Tryon +S Turf Hill +S Twin Creek +S Tyler +S Tyson +S Uhle +S Union +S University +S Upton +S Urban +S Utah +S Utica +S Valley +S Van Beveren +S Van Brunt +S Van Buren +S Van Dien +S Van Dorn +S Van Nortwick +S Van Vlissingen +S Vanderbilt +S Vanderburg +S Vanderpoel +S Varner +S Vaupell +S Veitch +S Ventura +S Vermillion +S Vermont +S Vernon +S Vetter +S Victoria +S Vienna +S View +S Vigo +S Viking +S Villa +S Village +S Vincennes +S Vincent +S Vine +S Violet +S Virginia +S Vista +S Vivyen +S Volbrecht +S Wa Pella +S Wabash +S Wabasso +S Wagonwheel +S Waiola +S Wakefield +S Waldinger +S Walker +S Walkup +S Wallace +S Waller +S Wallingford +S Walnut +S Walsh +S Walter Reed +S Walton +S Ward +S Warner Bridge +S Warren +S Warrington +S Warwick +S Waseca +S Washington +S Washtenaw +S Wasson +S Water +S Waterford +S Waterloo +S Waterman +S Waters Edge +S Waterview +S Watkins +S Waukegan +S Waverly +S Wayman +S Wayne +S Wayzata +S Wear +S Webster +S Wedgewood +S Weed +S Weiler +S Wellers +S Wells +S Wellwood +S Wenonah +S Wentworth +S Wesley +S Wespark +S West +S Westchester +S Western +S Westgate +S Westland +S Westlawn +S Westmore Meyers +S Weston +S Westview +S Westwood +S Wheaton +S Wheeler +S Wheeling +S Whipple +S Whispering Hills +S White +S White Oak +S Whiting +S Whitt +S Whittier +S Wickom +S Wiesbrook +S Wilber +S Wilder +S Will Center +S Willard +S Wille +S William +S Williams +S Williamsburg +S Williston +S Willow +S Willow Creek +S Willow Springs +S Willow Walk +S Wilmette +S Wilshire +S Wilson +S Winchester +S Windcrest +S Windham +S Windhill +S Windmill +S Windsor +S Winfield +S Winslow +S Winston +S Winter +S Winthrop +S Wisconsin +S Wise +S Wolcott +S Wolf +S Wolf Lake +S Wood +S Wood Dale +S Woodbine +S Woodbriar +S Woodbury +S Woodcrest +S Woodfield +S Woodland +S Woodlawn +S Woodley +S Woodrow +S Woods +S Woodside +S Woodstock +S Wool +S Wright +S Wulff +S Wynstone +S Wynstone Park +S Yale +S Yates +S York +S Youngs +S Zoranne +S du Bois +S la Crosse +S la Londe +S. Boston Bypass +S. Hamlin +S. King +SE Brighton +SE Circle +SE Dague +SE Davison +SE Delaware +SE Eastwood +SE Erie +SE Frontage +SE Garfield +SE Ontario +SE Park +SE River +SW Centennial +SW Circle +SW Frontage +SW Garfield +SW Pershing +SW Village +Saari +Saba +Sabal +Sabastian +Sabden +Saber +Sabercat +Sabeys Beach +Sabin +Sabina +Sabine +Sabine Farm +Sabines +Sabino Farm +Sable +Sable Oaks +Sable Ridge +Sabo +Sabre +Sabrina +Sacarrappa +Sach +Sachem +Sachem Rock +Sachfield +Sachs +Sacia +Sack +Sackerman +Sackett +Sackman +Sackrett +Sackvile +Sackville +Saco +Sacomano +Sacombe +Sacombs Ash +Sacoya +Sacramento +Sacred +Sacred Heart +Sacred Palm +Sacremento +Sacretariat +Saddington +Saddle +Saddle Back +Saddle Brook +Saddle Club +Saddle Creek +Saddle Crest +Saddle Hill +Saddle Horn +Saddle Mountain +Saddle Oaks +Saddle Rack +Saddle Ranch +Saddle Ridge +Saddle River +Saddle Rock +Saddle Tree +Saddle Wood +Saddleback +Saddleback Hill +Saddleback Ridge +Saddlebred +Saddlebrook +Saddlemount +Saddler +Saddlerock +Saddleview +Saddlewood +Saddleworth +Sade +Sadi +Sadie Hutt +Sadies +Sadleir +Sadler +Sadlers +Sadlers Wells +Sadlier +Sadme +Sadore +Sadowa +Sadowski +Sadro +Saenz +Safa +Safari +Safffron +Safford +Safforo +Saffron +Saford +Safran +Saga +Sagamore +Sagamore Farm +Sagamore Hill +Sagamore Spring +Saganashkee +Sagar +Sagars +Sage +Sage Brush +Sage Canyon +Sage Grouse +Sage Hill +Sage Sparrow +Sagebrush +Sageland +Sageman +Sagemont +Sager +Sages +Sageview +Sagewood +Saggart Field +Saggers +Saginaw +Sagittarius +Saguaro +Sahara +Sahler +Sahlin Farm +Sahlin Pvt +Saiala +Saic +Saidel +Saigon +Sail +Sailboat +Sailer +Sailfish +Sailor +Sailors +Sailors Bay +Sailpointe +Sailsbury +Sailstone +Sailview +Sailway +Sain Clements +Saindon +Saines +Sainfoin +Saini +Sainsbury +Sainsburys Fifth +Saint Agatha +Saint Agnells +Saint Agnes +Saint Alban +Saint Albans +Saint Albert +Saint Alphonsus +Saint Ambrose +Saint Andre +Saint Andrew +Saint Andrews +Saint Ann +Saint Anne +Saint Anns +Saint Anthony +Saint Anthonys +Saint Anton +Saint Asaph +Saint Augustin +Saint Augustine +Saint Augustines +Saint Barbara +Saint Barnabas +Saint Bartholomew +Saint Bartholomews +Saint Bede +Saint Benedicts +Saint Bernard +Saint Bernards +Saint Boniface +Saint Botolph +Saint Brelades +Saint Brendan +Saint Bride +Saint Camille +Saint Casimir +Saint Catherine +Saint Catherines +Saint Cecelia +Saint Cecilia +Saint Chads +Saint Charles +Saint Christopher +Saint Clair +Saint Claire +Saint Clar +Saint Clare +Saint Clements +Saint Cloud +Saint Croix +Saint Cross +Saint David +Saint Davids +Saint Denis +Saint Deyns +Saint Dominics +Saint Dorothy +Saint Edmunds Center +Saint Edward +Saint Edwards +Saint Elizabeth +Saint Elmo +Saint Etheldore +Saint Eva +Saint Felix +Saint Florence +Saint Florian +Saint Francis +Saint George +Saint George Barber +Saint George Ranch +Saint Georges +Saint Germain +Saint Gertrudes +Saint Giles +Saint Gregory +Saint Gregorys +Saint Helena +Saint Hildas +Saint Hill +Saint Hillaire +Saint Huberts +Saint Isabel +Saint Ives +Saint James +Saint Jean +Saint Jerome +Saint Joan +Saint John +Saint Johns +Saint John’s +Saint Joseph +Saint Josephs +Saint Jude +Saint Julie +Saint Katherine +Saint Kevin +Saint Kilda +Saint Kitts +Saint Lawrence +Saint Leonards +Saint Lo +Saint Louis +Saint Lukes +Saint Lynn +Saint Marcel +Saint Margaret +Saint Margarets +Saint Mark +Saint Marks +Saint Martin +Saint Martins +Saint Mary +Saint Marys +Saint Mary’s +Saint Mathews +Saint Matthew +Saint Maur +Saint Mayeul +Saint Michael +Saint Michaels +Saint Mihiel +Saint Moritz +Saint Nicholas +Saint Nicolas +Saint Norbert +Saint Oswald’s +Saint Patricks +Saint Paul +Saint Pauls +Saint Paul’s +Saint Peter +Saint Peters +Saint Peter’s +Saint Philips +Saint Phillips +Saint Pinnock +Saint Raphael +Saint Raymonds +Saint Regis +Saint Richard +Saint Richards +Saint Rose +Saint Saviour Warwick +Saint Saviours +Saint Swithans +Saint Theresa +Saint Thomas +Saint Thomas Church +Saint Thomas More +Saint Tropez +Saint Ursula +Saint Victor +Saint Vincent +Saint Vincents +Saint Winifreds +Sainton +Saints +Saintsbridge +Saintsbury +Saipan +Sais +Saisbury +Sajak +Sak +Sakas +Sakata +Sakenda +Saklan +Saklan Indian +Saks Fifth +Sakura +Sal +Salada +Saladine +Salado +Salado Creek +Salamanca +Salamander +Salamander Canyon +Salamaua +Salas +Salazar +Salberg +Salbrook +Salceda +Salcombe +Salcote +Salcott +Saldane +Sale +Saleford +Salem +Salem Church +Salem End +Salem Lake +Salem Pond +Salem Ridge +Salem Water Works +Salemtown +Salerno +Sales +Salesian +Salford +Salgado +Salibury +Salida +Salima +Salina +Salinas +Salisbury +Salisbury Downs +Salisbury Hall +Salisbury Hill +Salisbury Park +Salishan +Salix +Salk +Salkeld +Sallaway +Sallie Mae +Sallie O +Sally +Sally Ann +Sally Ride +Salma +Salmaan +Salmar +Salmi +Salmon +Salmon Creek +Salmon Falls +Salmon River +Salmond +Salmons +Salomons +Salon +Salonga Woods +Salop +Salrit +Salt +Salt Box +Salt Creek +Salt Hill +Salt Lake +Salt Meadow +Salt Spray +Salt Wall +Saltaire +Saltash +Saltbrook +Saltcoats +Saltcreek +Salter +Salterford +Salterns +Salters +Salterton +Salteye +Salthill +Saltings +Saltlick Fire +Saltmarsh +Saltmeadow +Salton Sea +Saltonstall +Saltoun +Saltpan +Saltram +Saltrush +Salts +Saltwater +Saltwell +Saltwind +Saltwood +Saltzman +Saluatation +Salusbury +Salutation +Salva +Salvador +Salvatierra +Salvatore +Salvi +Salvia +Salvin +Salvington +Salvio +Salway +Salzberg +Sam +Sam Cava +Sam Fonzo +Sam Hill +Sam McDonald +Sam Neel +Sam Owings +Sam Riggs +Sam Ryder +Sam Smith +Sam Swire +Samaga +Samantha +Samantha Riley +Samar +Samarai +Samaria +Samaritan +Samedra +Samford +Sammet +Sammett +Sammie +Sammis +Sammut +Samnatha +Samo +Samoa +Samora +Samos +Samoset +Samosett +Sampford +Sample +Sampleoak +Sampshill +Sampson +Sampton +Samrose +Sams +Samson +Samuel +Samuel Adams +Samuel Foster +Samuel Fuller +Samuel Gamwell +Samuel Harrington +Samuel Marsden +Samuel Morse +Samuel Ogden +Samuel Parlin +Samuel Prescott +Samuel Robert +Samuel Terry +Samuel Trexler +Samuel Wallis +Samuel Woodworth +Samuels +Samuels Pine +Samuelson +Samworth +Samy +San Aleso +San Andreas +San Andreas Fire +San Andres +San Angelo +San Anselmo +San Antonio +San Antonio Valley +San Ardo +San Benito +San Bernadino +San Blas +San Bruno +San Carlos +San Carlos Fire +San Clemente +San Cristobal +San Diego +San Dimas +San Domar +San Domingo +San Felice +San Felipe +San Fernando +San Francis +San Franciscan +San Francisco +San Gabrial +San Gabriel +San Geronimo Ridge +San Geronimo Valley +San Gorgonio +San Gregorio +San Ignacio +San Jacinto +San Jaun Canyon +San Joaquin +San Jose +San Juan +San Juan Canyon +San Juan Capistrano +San Juan Grade +San Juan Hollister +San Juan Pass +San Jude +San Junipero +San Justo +San Lazaro +San Leandro +San Lorenzo +San Lucas +San Luis +San Luis Obispo +San Luis Rey +San Luppe +San Marco +San Marcos +San Marcus +San Mardo +San Marin +San Marin Fire +San Marino +San Martin +San Mateo +San Michele +San Michelle +San Miguel +San Miguel Canyon +San Minete +San Nichols +San Nicolas +San Pablo +San Pablo Dam +San Patricio +San Paulo +San Pedro +San Pedro Mountain +San Pedro Terrace +San Petronio +San Rafael +San Ramon +San Ramon Valley +San Raymundo +San Remo +San Rey +San Rivas +San Rocco +San Saba +San Sabana +San Salvador +San Sebastian +San Simeon +San Sonita +San Tomas +San Tomas Aquino +San Tropez +San Vicente +San Vincente +San Vito +San Ysidro +Sanananda +Sanatorium +Sanberg +Sanborn +Sanborn Hill +Sanburnol +Sanby +Sanches +Sanchez +Sancho +Sancroft +Sanctuary +Sanctuary Point +Sand +Sand Bar +Sand Beach +Sand Blossom +Sand Cherry +Sand Creek +Sand Dam +Sand Dollar +Sand Dunes Forest +Sand Harbor +Sand Harbour +Sand Hill +Sand Hole +Sand Park +Sand Pine +Sand Piper +Sand Point +Sand Pointe +Sand Prairie +Sand Ridge +Sand Rock +Sand Spring +Sand Trap +Sand de Sac +Sandaba +Sandage +Sandakan +Sandal +Sandal Wood +Sandalfoot +Sandalwood +Sandalyn +Sanday +Sandbach +Sandbed +Sandberg +Sandbloom +Sandborn +Sandbourne +Sandbrook +Sandburg +Sandby +Sandcastle +Sandchain +Sandcherry +Sandcliff +Sandcroft +Sandcross +Sandeen +Sandelin +Sandell +Sandelwood +Sandemara +Sander +Sandera +Sandering +Sanderling +Sanders +Sanders Ranch +Sandersfield +Sanderson +Sandersons +Sanderstead +Sanderstead Court +Sandfield +Sandfold +Sandford +Sandford Mill +Sandgap +Sandgate +Sandhage +Sandham +Sandheath +Sandhill +Sandhills +Sandholdt +Sandhole +Sandholm +Sandhurst +Sandhutton +Sandi +Sandia +Sandifer +Sandiford +Sandilands +Sandileigh +Sandingham +Sandini +Sandison +Sandisplatt +Sandiway +Sandland +Sandle +Sandleigh +Sandler +Sandlewood +Sandling +Sandmark +Sandmere +Sandmoor +Sandmound +Sandon +Sandown +Sandpebble +Sandpike +Sandpiper +Sandpiper Cove +Sandpiper Key +Sandpit +Sandpit Hall +Sandpits +Sandpoint +Sandra +Sandra Pond +Sandraya Heights +Sandretto +Sandri +Sandrick +Sandridge +Sandridgebury +Sandringham +Sandrock +Sandrock Hill +Sands +Sands Light +Sands Point +Sandsbury +Sandsend +Sandspur +Sandstock +Sandstone +Sandtoft +Sandusky +Sandwald +Sandway +Sandwel +Sandwell +Sandwich +Sandwood +Sandy +Sandy Bank +Sandy Bar +Sandy Bay +Sandy Beach +Sandy Bridges +Sandy Brook +Sandy Cove +Sandy Creek +Sandy Cross +Sandy Farm +Sandy Glen +Sandy Hill +Sandy Hollow +Sandy Hook +Sandy Knoll +Sandy Landing +Sandy Lewis +Sandy Lodge +Sandy Manor +Sandy Plains +Sandy Point +Sandy Pond +Sandy Ridge +Sandy Rock +Sandy Spring +Sandy Valley +Sandyacres +Sandybrook +Sandycove +Sandycroft +Sandyford +Sandyhill +Sandyhurst +Sandylands +Sandymount +Sandys +Sandywood +Sanel +Sanfoin +Sanford +Sangamon +Sangamore +Sangay +Sanger +Sangers +Sangley +Sangmeister +Sangora +Sangrado +Sangria +Sanial +Sanibel +Sanibel Captiva +Sanilac +Saning +Sanitarium +Sanjer +Sankey +Sanko +Sanlin +Sanner +Sanns +Sano +Sanoni +Sans +Sans Souci +Sansbury +Sansom +Sansome +Sansone +Sanspareil +Sant Johns +Santa Alicia +Santa Ana +Santa Anita +Santa Anna +Santa Barbara +Santa Catalina +Santa Clara +Santa Croce +Santa Cruz +Santa Domingo +Santa Elena +Santa Fe +Santa Helena +Santa Inez +Santa Juanita +Santa Lucia +Santa Margarita +Santa Marguarita +Santa Maria +Santa Marina +Santa Mesa +Santa Monica +Santa Paula +Santa Ray +Santa Rita +Santa Rosa +Santa Rosa Creek +Santa Rose +Santa Serra +Santa Susana +Santa Teresa +Santa Theresa +Santa Trinita +Santa Vera +Santa Ynez +Santa Ysabel +Santana +Santander +Santapogue +Santarosa +Santas Village +Santayana +Santee +Santeetlah +Santell +Santers +Santiago +Santilli +Santini +Santley +Santolina +Santon +Santoni +Santorina +Santorini +Santos +Santos Ranch +Santour +Santry +Santuck +Santuit +Sanway +Sanwood +Sanzoverino +Saphire +Sapienza +Sapling +Sapling Ridge +Sapone +Sapphire +Sapphire Ridge +Sappington +Sara +Sara Ann +Sara Jane +Sarabande +Saracen +Saradale +Saraglen +Sarah +Sarah Anne +Sarah Constant +Sarah Doublet +Sarah Durack +Sarah Holland +Sarah Jane +Sarah Landing +Sarahills +Sarahs Grove +Sarakal +Saralynn +Saran +Sarana +Saranac +Saranap +Saranell +Sarasota +Saratoga +Saratoga Creek +Saratoga Heights +Saratoga Hills +Saratoga Park +Saratoga Sunnyvale +Saratoga Toll +Saratoga Vista +Saravanos +Saraview +Sarayah +Sarazen +Sarazin +Sard +Sardam +Sardinia +Sardonyx +Sardyga +Sargeant +Sargeants +Sargent +Sargent Roode +Sargo +Saric +Sarina +Sark +Sarkesian +Sarkis +Sarner +Sarnesfield +Sarno +Saro +Saron +Saroni +Sarratt +Sarre +Sarrinen +Sarsby +Sarsen +Sarsfeld +Sarsfield +Sartell +Sartelle +Sartor +Sartori +Sartwell +Sarum +Sarver +Sasher +Saskatchewan +Sassafras +Sassamon +Sassel +Satanita +Satara +Satelberg +Satellite +Sater +Sather +Satin +Satinash +Satinwood +Satis +Satow +Satterfield +Satterlee +Satterley +Satterthwaite +Sattler +Satuckett +Satuit Meadow +Saturday Evening +Saturn +Saucelands +Saucer +Saucier +Sauders Bay +Sauerbacker +Sauganash +Saugatuck +Saugus +Sauk +Sauk Pointe +Saul +Saull +Sauls +Saultell +Saulty +Saumur +Sauna +Sauna Row +Sauncey +Sauncey Wood +Saunder +Saunders +Saunders Ness +Saunders Point +Saunderton +Saunton +Sauquoit +Saurine +Sausal +Sausalito +Sautter +Sauzer +Savacentre Approach +Savage +Savage Guilford +Savaker +Savana +Savanna +Savanna Lakes +Savanna Oaks +Savannah +Savannah River +Savant +Savay +Saverien +Savernake +Savery +Saverys +Savick +Savile +Savill +Saville +Savin +Savin Hill +Savine +Savio +Savo +Savoie +Savona +Savory +Savoury +Savoy +Saw Mill +Saw Mill Pond +Saw Mill River +Saw Tooth Canyon +Sawbridgeworth +Sawdust +Sawell +Sawgrass +Sawhorse +Sawin +Sawkins +Sawleaf +Sawley +Sawmill +Sawmill Brook +Sawmill Creek +Sawmill Pond +Sawpit +Sawtell +Sawtelle +Sawtooth +Sawyer +Sawyer Hill +Sawyer Park +Sawyers +Sax +Saxby +Saxbys +Saxham +Saxlingham +Saxon +Saxon Flowers +Saxon Wood +Saxon Woods +Saxon Woods Park +Saxonbury +Saxonholme +Saxonia +Saxons +Saxonvale +Saxony +Saxton +Saxville +Saxwood +Saybrook +Saybrooke +Saybrooke Oaks +Saybrooke View +Sayer +Sayers +Sayes Court +Sayes Court Farm +Sayesbury +Saylers Creek +Sayles +Sayles Hill +Saylor +Sayner +Sayonara +Sayre +Sayreville +Sayville +Sayward +Saywell +Saywer +Scabharbour +Scaddan +Scadding +Scafell +Scaggs +Scaggsville +Scagia +Scagliotti +Scahill +Scala +Scalera +Scales +Scalletta +Scallows +Scally +Scaltrito +Scalza +Scammell +Scammonden +Scandia +Scandinavia +Scandrett +Scaneateles +Scanello +Scanlan +Scanland +Scanlon +Scannell +Scar Hill +Scarab +Scaraway +Scarboro +Scarborough +Scarborough Commons +Scarbrook +Scarcliffe +Scarcroft +Scardenia +Scarfe +Scarff +Scarfield +Scarisbrick +Scarlata +Scarlatti +Scarle +Scarlet +Scarlet Mist +Scarlet Oak +Scarlet Sage +Scarlett +Scarlett Oak +Scarletts +Scarr +Scarr End +Scarsdale +Scarsdale Farm +Scarth +Scatcherd +Scatcherd Park +Scatterdells +Scatteree +Scaup +Scawen +Scawfell +Scenery +Scenic +Scenic Byway +Scenic Heights +Scenic Hts +Scenic Meadow +Scenic Overlook +Scenic Ranch +Scenic Ridge +Scenic View +Scenic Vista +Scenic Woods +Scenicview +Scenicwood +Scenna +Scepter +Sceptre +Scettrini +Scettrini Fire +Schaaf +Schachtner +Schadeck +Schadt +Schaefer +Schaefer Ranch +Schaeffer +Schafer +Schaffer +Schaffhausen +Schalk +Schall +Schallenberger +Schaller +Schanck +Schank +Schaper +Scharber +Scharer +Scharff +Scharmann +Schaumburg +Scheel +Scheele +Scheer +Scheerer +Scheffelin +Scheibel +Scheid +Scheidecker +Scheinfein +Scheldrup +Schelhorn +Schellbach +Schellville +Schelly +Schelter +Schember +Schembri +Schenck +Schendel Lake +Schenectady +Schenk +Schenley +Schepis +Scherell +Scherer +Scherland +Schermerhorn +Scherrer +Scherwood Greens +Scheuneman +Scheurer +Schey +Schiappino +Schick +Schiedler +Schieffelin +Schiele +Schifsky +Schillaci +Schiller +Schilling +Schillinger +Schillingsburg +Schillton +Schimmel +Schindel +Schindler +Schinkel +Schiphol +Schirra +Schlagel +Schlager +Schlapp +Schleicher +Schleifer +Schleigel +Schleiger +Schlenker +Schletty +Schley +Schlictman +Schlitz +Schlobohm Gardens +Schlomann +Schlomka +Schlosser +Schlottfeld +Schmahl +Schmeidt +Schmeiser +Schmidt +Schmidt Lake +Schmidts +Schmitt +Schmuckley +Schmule +Schnecks +Schneider +Schober +Schobert +Schock +Schoder +Schoeffel +Schoeffler +Schoen +Schoenbeck +Schoener +Schoenfield +Schoenherr +Schofield +Schofields +Schofields Farm +Schoger +Schoharie +Scholar +Scholar Green +Scholars +Scholars Green +Scholebrook +Scholefield +Scholer +Scholerbrook +Scholes +Scholes Rakehill +Scholey +Scholl +Scholtze +Scholz +Schomer +Schommer +School +School Craft +School District +School Gate +School Green +School Hill +School House +School Mill +School View +Schoolcraft +Schooldale +Schooley +Schoolgate +Schoolhouse +Schoolhouse Cove +Schoolmaster +Schools +Schoolside +Schoon +Schooner +Schooner Bay +Schooner Ridge +Schoonmaker +Schoonover +Schoosett +Schor +Schorie +Schorne +Schortmann +Schott +Schraalenburgh +Schrader +Schrage +Schramm +Schramms +Schramsberg +Schreiber +Schreiner +Schriber +Schrider +Schrieffer +Schriever +Schroder +Schroeder +Schroers Farm +Schroth +Schrum +Schubert +Schuerle +Schuett +Schuh +Schulamar +Schuldt +Schuler +Schuler Ranch +Schulmeister +Schulte +Schulten +Schulties +Schultz +Schulz +Schulze +Schum +Schumacher +Schumack +Schumaker +Schuman +Schurman +Schurtz +Schurz +Schussler +Schuster +Schutte +Schutte Farm +Schuyler +Schuylkill +Schwab +Schwan Lake +Schwartz +Schwartze +Schwebel +Schwerin +Schwerman +Schwinn +Schyler +Sciarappa +Scibilia +Science +Science Center +Science Ctr +Scientia +Scimitar +Sciota +Scioto +Sciots +Scipio +Scituate +Scobbie +Scobell +Scobie +Scocles +Scofield +Scoles +Sconset +Scooter +Scoralick +Scords +Score +Scoresby +Scorpio +Scorpion +Scorton +Scossa +Scot +Scot Ladd +Scotby +Scotch +Scotch Common Argyle +Scotch Dam +Scotch Hall +Scotch Haven +Scotch Hill +Scotch Pine +Scotch Plains +Scotchman +Scotchy +Scotdale +Scotia +Scotland +Scotland Bridge +Scotland Farm +Scotland Hall +Scotland Hill +Scotland Hill Park +Scotland Mill +Scotlands +Scotney +Scots +Scotsdale +Scotsford +Scotsglen +Scotshall +Scotswood +Scott +Scott Creek +Scott Farm +Scott Foresman +Scott Hall +Scott Hill +Scott Key +Scott Robin +Scott Town +Scotteswood +Scottfield +Scotti +Scottish +Scottish Autumn +Scottish Hunt +Scottish Rite +Scottlynne +Scottons +Scotts +Scotts Cove +Scotts Crossing +Scotts Farm +Scotts Grove +Scotts Hall +Scotts Landing +Scotts Manor +Scotts Mill +Scotts Run +Scotts Valley +Scottsboro +Scottsbridge +Scottsbury +Scottsdale +Scottsfield +Scottsvale +Scottswood +Scottwell +Scotty +Scotty Hollow +Scoulding +Scouler +Scouller +Scours +Scout +Scout Hill +Scout Ridge +Scouts +Scouts Camp +Scovell +Scoville +Scowcroft +Scown +Scragged Oak +Scraley +Scranton +Scrapsgate +Scratcherd +Scratchers +Scratchings +Scratton +Screech Owl Creek +Screvin +Scriba +Scriber Lake +Scribner +Scrimgeour +Scripps +Scripps Haven +Scripture +Scritchfield +Scrivani +Scriven +Scriveners +Scrivens +Scriver +Scrivner +Scroggins +Scrooby +Scropton +Scroxton +Scrub +Scrub Oak +Scrubbitts Park +Scrubbs +Scrubs +Scrutton +Scudamore +Scudder +Scudders +Sculley +Scully +Sculptor +Sculpture Point +Scures +Scurvy Hall +Scutley +Scylla +Sea +Sea Beach +Sea Bird +Sea Biscuit +Sea Breeze +Sea Bright +Sea Chase +Sea Cliff +Sea Cloud +Sea Cove +Sea Foam +Sea Forest +Sea Gate +Sea Gull +Sea Horse +Sea Island +Sea Isle +Sea Light +Sea Meadow +Sea Mist +Sea Otter +Sea Pines +Sea Point +Sea Ranch +Sea Ridge +Sea Shell +Sea Shore +Sea Side +Sea Spray +Sea View +Sea Vista +Sea Walk +Sea Wall +Seabeach +Seabird +Seabiscuit +Seaboard +Seaborn +Seaborne +Seaborough +Seabreeze +Seabridge +Seabright +Seabring +Seabro +Seabrook +Seabury +Seabury Point +Seacape +Seacliff +Seacloud +Seacombe +Seacord +Seacourt +Seacrest +Seadrift +Seafarer +Seafield +Seafirth +Seaflower +Seafoam +Seaford +Seaforth +Seagate +Seager +Seager Farm +Seagirt +Seagrave +Seagraves +Seagreen +Seagrove +Seagry +Seagull +Seaham +Seahaven +Seahawk +Seahawks +Seahorn +Seahorse +Seal +Seal Cove +Seal High +Seal Hollow +Seal Pointe +Seal Rock +Sealand +Seale +Sealey +Sealight +Sealock +Sealtest +Sealth +Sealund +Sealy +Seaman +Seaman Neck +Seamans +Seamans Neck +Seamas +Seamer +Seamist +Seamon +Seamons +Seamont +Seamore +Seamount +Sean +Seapearl +Seaport +Sear Ranch +Searbrook +Searby +Search +Searches +Searchlight +Searchwood +Searcy +Seareel +Searing +Searingtown +Searl +Searle +Searles +Sears +Sears Island +Sears Landing +Sears Point +Sears Ranch +Searsville +Seascale +Seascape +Seascape Ridge +Seashell +Seashore +Seaside +Seasongood +Seasons +Seasons Ridge +Seaspray +Seastorm +Seat Pleasant +Seathwaite +Seaton +Seatroller +Seattle +Seaver +Seaverns +Seavey +Seaview +Seaview Ranch +Seavy +Seawall +Seawane +Seawanhaka +Seaward +Seaway +Seawell +Seawind +Seawood +Seay +Seba +Sebago +Sebastan +Sebastapol +Sebastian +Sebastian Bore +Sebastiani +Sebastion +Sebastopol +Seberger +Sebert +Sebon +Sebrell +Sebright +Sebring +Secant +Secatoag +Secatogue +Secaucus +Seckel +Secker +Secluded +Secluded Oaks +Second +Second Brook +Second Cross +Second Neptune +Second Roosevelt +Second Time +Seconset +Secor +Secoya +Secret Bay +Secret Garden +Secret Hollow +Secret Meadows +Secret Place +Secret River +Secretan +Secretariat +Section +Security +Security Park +Sedalia +Sedan +Sedcote +Sedding +Seddley +Seddon +Seddon Hill +Sedge +Sedge Meadow +Sedge Wood +Sedgebrook +Sedgecombe +Sedgefield +Sedgeford +Sedgehill +Sedgehurst +Sedgeman +Sedgemeadow +Sedgemere +Sedgemoor +Sedgemoore +Sedger +Sedgewell +Sedgewick +Sedgewick Village +Sedgewicke +Sedgley +Sedgley Park +Sedgman +Sedgmoor +Sedgwick +Sedleigh +Sedlescombe +Sedona +Sedore +Sedrup +Sedum +Sedwick +See +Seeanar +Seed +Seed Farm +Seedfield +Seedley +Seedley View +Seedling +Seedly Park +Seegers +Seek +Seekford +Seekonk +Seel +Seeley +Seeleys +Seelig +Seely +Seelye +Seeman +Seemas +Seemore +Seena +Seeno +Seer Green +Seers +Seery +Seeser +Seething +Sefton +Segel +Segelken +Segenhoe +Seger +Segers +Sego +Segovia +Segrove +Seguine +Seguridad +Sehring +Seibel +Seiburg +Seidel +Seidler +Seidman +Seifert +Seigel +Seiko +Seil +Seiler +Seine +Seitler +Seitz +Seiver +Sekforde +Sekonnet +SelWyn +Selah +Selassie +Selbie +Selborne +Selbourne +Selby +Selby Heights +Selby Ranch +Selcroft +Selden +Seldin +Seldon +Sele +Seley +Self +Self Esteem +Selford +Selfox +Selfridge +Selger +Selham +Selhurst +Selhurst New +Selig +Selim +Selina +Selinda +Selkirk +Sell +Selleck +Sellers +Sellincourt +Sellman +Sellner +Sellons +Sells +Sellstrom +Sellwood +Selma +Selmac +Selman +Selmart +Selmarten +Selmon +Selnick +Selo +Selover +Selsby +Selsdon +Selsdon Park +Selsey +Selsfield +Selso +Selstead +Selston +Seltzer +Selva +Selvage +Selvante +Selvyn +Selway +Selwood +Selworth +Selworthy +Selwyn +Sem +Semaan +Semaphore +Semel +Semeria +Semicircular +Semiconductor +Semillon +Seminary +Seminary Cove +Seminole +Semley +Semmens +Semmler +Semon +Semont +Semper +Semphill +Sempill +Semple +Semple Village +Sempstead +Semton +Senaca +Senacre +Senate +Senator +Senatorial +Send +Send Barns +Senda Ladera +Sendero +Sendick +Sends Barn +Seneca +Seneca Ayr +Seneca Chase Park +Seneca Crossing +Seneca Farm +Seneca Knoll +Seneca Park +Seneca Ridge +Senecal +Seney +Senga +Senhorinha +Senhouse +Senic +Senior +Senlac +Senn +Senna +Sennar +Senne +Sennen +Seno +Senon +Senpek +Senrab +Senseney +Senta +Senter +Sentinel +Sentry +Sentry Ridge +Sephar +Sephton +Seppala +Seppelt +Seppi +September +Septimus +Sepulveda +Sequams +Sequdia +Sequeira +Sequoia +Sequoia Creek +Sequoia Flat +Sequoia Glen +Sequoia Hill +Sequoia Pacific +Sequoia Ridge +Sequoia Valley +Sequola +Sequoya +Sequoyah +Sera +Serafine +Serafix +Seramonte +Seranade +Serbian +Serena +Serenade +Serendipity +Serene +Serenidad +Serenite +Serenity +Serenity Hills +Serenity Point +Serenity Valley +Serenity View +Sereno +Serenoa +Serge +Serge Hill +Sergeant +Sergeant Hartz +Sergeant John V Young +Sergeants +Sergeants Green +Sergi +Sergison +Serina +Serinne +Serle +Sermon +Sero Estates +Sero Pine +Serpa +Serpentine +Serpilio +Serra +Serramar +Serramonte +Serrano +Serravista +Serrell +Serres +Servern +Servia +Servia Hill Servia +Service +Services +Serviden +Serviss +Sesame +Sessions +Sestri +Set +Seta +Setauket +Setchell +Setford +Seth +Seth Hamilton +Sethlow +Seton +Seton Creek +Seton Hall +Seton Hill +Setrok +Sette +Setter +Setterland Farm +Setterquist +Setting Sun +Settington +Settle +Settlement +Settlers +Settlers Grove +Settlers Pond +Settlers Ridge +Settles +Settrington +Settstones +SetzLer +Seurat +Sevan +Sevarden +Sevely +Seven Acres +Seven Arches +Seven Bridge +Seven Bridges +Seven Crest +Seven Gables +Seven Hill +Seven Hills +Seven Hills Ranch +Seven Mile +Seven Oaks +Seven Pine +Seven Pines +Seven Sisters +Seven Springs +Seven Thorns +Seven Trails +Seven Trees +Seven Woods +Sevenacre +Sevenoake +Sevenoaks +Sevenside +Seventeenth +Seventh +Sever +Severalls +Severals +Severance +Severini +Severinsen +Severn +Severn Chapel +Severn Forest +Severn Grove +Severn Hills +Severn River +Severn Side Farm +Severna +Severncrest +Severncroft +Severndale +Severnside +Severnview +Severus +Severyns +Sevier +Sevilla +Seville +Sevington +Sevinor +Sevland +Sevor +Sewall +Sewall Woods +Sewan +Sewanee +Sewanois +Seward +Seward Park +Sewardstone +Sewaren +Sewdley +Sewell +Sewells Orchard +Sewickley +Sexa +Sexauer +Sexburga +Sextant +Sexton +Sexton Farm +Sexton View +Sextons +Sextus +Seybrooke +Seymer +Seymor +Seymore +Seymour +Seymour Court +Seymour Park +Seyon +Seyssel +Sgt Beers +Shabbona +Shabona +Shackamaxon +Shackel +Shackelford +Shackelton +Shackford +Shacklands +Shackleford +Shacklegate +Shackleton +Shacklewell +Shackliffe +Shackstead +Shad +Shad Creek +Shadbolt +Shadbush +Shaddick +Shaddock +Shaddox +Shade +Shade Tree +Shaded Leaf +Shadeland +Shadelands +Shadetree +Shadewell +Shadewood +Shadforth +Shadi +Shadle +Shadlow +Shadow +Shadow Bend +Shadow Brook +Shadow Creek +Shadow Crk +Shadow Dance +Shadow Falls +Shadow Hawk +Shadow Hill +Shadow Lake +Shadow Lawn +Shadow Leaf +Shadow Moss +Shadow Mountain +Shadow Oak +Shadow Park +Shadow Point +Shadow Pond +Shadow Ridge +Shadow Run +Shadow Tree +Shadow Valley +Shadow Wood +Shadowbrook +Shadowcreek +Shadowfax +Shadowglen +Shadowhill +Shadowood +Shadowport +Shadowridge +Shadowrock +Shadows +Shadowtree +Shadoxhurst +Shadwell +Shady +Shady Acres +Shady Arbor +Shady Beach +Shady Brook +Shady Cove +Shady Creek +Shady Dale +Shady Elm +Shady Glen +Shady Glenn +Shady Grove +Shady Hill +Shady Hills +Shady Hollow +Shady Island +Shady Knoll +Shady Mill +Shady Nook +Shady Oak +Shady Oaks +Shady Palm +Shady Path +Shady Pine +Shady Point +Shady Rest +Shady Ridge +Shady Rose +Shady Side +Shady Slope +Shady Spring +Shady Tree +Shady View +Shady Way +Shady Willow +Shady Wood +Shadybrook +Shadyglade +Shadygrove +Shadylane +Shadylawn +Shadyrest +Shadyside +Shadyslope +Shadyspring +Shadyview +Shadyway +Shadywood +Shaefer +Shafer +Shaffer +Shaffi +Shaffner +Shaft +Shafter +Shaftesbury +Shafto +Shafton +Shaftsbury +Shag Bark +Shagbark +Shaggy Calf +Shago +Shaheed +Shailer +Shainsky +Shainy +Shake Mill +Shake Tree +Shaker +Shaker Ridge +Shakerley +Shakespeare +Shakespeare Farm +Shakleton +Shakopee +Shalcomb +Shalcross +Shalcross Mill +Shalden +Shaldon +Shale +Shale Peak +Shale Quarry Back +Shaler +Shales +Shalesbrook +Shalestone +Shalfleet +Shalford +Shalimar +Shall +Shallcross +Shallons +Shalloo +Shallow Bank +Shallow Brook +Shallow Cove +Shallow Creek +Shallow Ford +Shalstone +Shaman +Shambliss +Shambrook +Shameran +Shames +Shamley +Shamrock +Shamrock Glen +Shamrock Glenn +Shamrock Ridge +Shana +Shanahan +Shanandale +Shand +Shande +Shandel +Shandon +Shandwick +Shandy +Shane +Shane Gould +Shane Park +Shane Thomas +Shaner +Shangani +Shangri +Shangri la +Shangrila +Shanklin +Shanklyn +Shanley +Shanna +Shannan +Shannock +Shannon +Shannon Heights +Shannon Hill +Shannon Oak +Shannondale +Shanti +Shantock +Shanuk +Shap +Shapley +Shapling Ridge +Shardcroft +Shardeloes +Shardlow +Sharen +Sharewood +Shari +Shari Ann +Sharian +Sharilyn +Shark River +Sharkey +Sharkon +Sharland +Sharlee +Sharlene +Sharma +Sharman +Sharmon Palms +Sharn +Sharnal +Sharney +Sharola +Sharon +Sharon Bee +Sharon Chapel +Sharon Oaks +Sharon Park +Sharondale +Sharonwood +Sharot +Sharp +Sharp House +Sharp Park +Sharpe +Sharpenhoe +Sharpersville +Sharpes +Sharples +Sharples Hall +Sharpleshall +Sharpley +Sharpners Pond +Sharps +Sharps Point +Sharpsburg +Sharpstead +Sharratt +Sharretts +Sharrington +Sharrock +Sharron +Sharrott +Sharrotts +Sharstead +Sharsted +Sharston +Sharvel +Shary +Shasta +Shasta Lily +Shatel +Shattack Track +Shatters +Shattuck +Shattuck Park +Shaughnessy +Shaun +Shauna +Shaundale +Shaver Grade +Shaver Lake +Shavers Lake +Shaves Wood +Shaw +Shaw Cross Chidswell +Shaw Farm +Shaw Fields +Shaw Hall Bank +Shaw Head +Shaw Moor +Shaw William +Shawbrook +Shawbrooke +Shawbury +Shawclough +Shawcroft +Shawcross +Shawden +Shawe +Shawe Hall +Shawfield +Shawford +Shawger +Shawhall +Shawhan +Shawlea +Shawmont +Shawmut +Shawn +Shawn Leigh +Shawna +Shawnee +Shawnee Woods +Shawnlee +Shawno +Shaws +Shawsheen +Shawstead +Shay +Shayfield +Shaylor +Shaylynn +Shea +Shea Center +Shea Memorial +Sheader +Sheaf +Sheafe +Sheahan +Shealy +Shean +Shear Creek +Sheard +Sheardhall +Sheardley +Shearer +Shearing +Shearman +Shears +Shearson +Shearton +Shearwater +Sheas +Sheath +Sheather +Sheathers +Sheckells +Shed +Shedd +Shedworth +Sheehan +Sheehy +Sheeley +Sheen +Sheen Common +Sheep +Sheep Farm +Sheep Hill +Sheep House +Sheep Pasture +Sheep Rock +Sheepbarn +Sheepcoates +Sheepcot +Sheepcote +Sheepcote Dell +Sheepcote Green +Sheepcotes +Sheepdown +Sheepen +Sheepfold +Sheepfoot +Sheepgate +Sheephatch +Sheephill +Sheephouse +Sheephurst +Sheeplands +Sheepridge +Sheepsetting +Sheepshead Bay +Sheepstreet +Sheepwalk +Sheering +Sheering Hall +Sheering Lower +Sheering Mill +Sheerlands +Sheerness +Sheerwater +Sheet +Sheet Glass +Sheet Mill +Sheethanger +Sheets Farm +Sheets Heath +Sheffield +Sheffield Mill +Sheffler +Shefield +Sheila +Sheiling +Shelard +Shelart +Shelborne +Shelbourne +Shelburne +Shelbury +Shelby +Shelby Creek +Shelby Dale +Shelby Hills +Shelcote +Shelden +Sheldon +Sheldon Creek +Sheldon Hill +Sheldon Lake +Sheldon Oaks +Sheldons +Sheldonville +Sheldrake +Shelduck +Shelerud +Shelfield +Shelford +Shelgate +Shelia +Shell +Shell Cove +Shell Flower +Shell Gate +Shell Hospital Bridge +Shell Lake +Shell Valley +Shellbank +Shellbanks +Shellbark +Shellbourne +Shellcote +Shellcove +Shelldrake +Shelley +Shelleys +Shellford +Shellgrove +Shellhorn +Shellingham +Shellmound +Shellness +Shellow +Shellton +Shellwood +Shellwoods +Shelly +Shellye +Shelsey +Shelter +Shelter Bay +Shelter Cove +Shelter Creek +Shelter Hill +Shelter Lagoon +Shelter Rock +Shelters +Shelterview +Shelterwood +Shelton +Shely +Shemer +Shenandoah +Shenfield +Shenley +Shenley Hill +Shenleybury +Shennamere +Shennen +Shenorock +Shenstone +Shenton +Shenton Park +Shentonfield +Shenwood +Shepard +Shepard Memorial +Shepards +Shepardson +Shepardville +Sheperd +Shephall +Shephard +Shepherd +Shepherd Canyon +Shepherd Cross +Shepherd Hills +Shepherders Spring +Shepherds +Shepherds Bush +Shepherds Gate +Shepherds Grove +Shephers +Shepiston +Sheple +Shepley +Sheppard +Shepperton +Shepperton Court +Sheppey +Shepton +Shera +Sheraden +Sherando +Sherard +Sherars +Sheraton +Sheraton Tysons +Sherbon +Sherborn +Sherborne +Sherboro +Sherbourne +Sherbrook +Sherbrooke +Sherburn +Sherburne +Sherburne Hills +Sherdley +Shere +Sherebrooke Woods +Sheredan +Sheredes +Sherenden +Sherfield +Sherford +Sheri +Sheridan +Sheridan Hills +Sheridan Spur +Sheridans +Sheridonna +Sheriff +Sheriffs +Sherill +Shering +Sheringham +Sherington +Sherland +Sherlies +Sherlin +Sherlock +Sherman +Sherman Bridge +Sherman Farm +Sherman Island +Sherman Island Levee +Sherman Lake +Sherman Oaks +Shermead +Shermer +Shernbroke +Shernden +Sherrard +Sherrardspark +Sherree +Sherrick +Sherrick Green +Sherrie +Sherriff +Sherrill +Sherrin +Sherringham +Sherrow +Sherry +Sherry Hill +Sherry Lee +Sherway +Sherwell +Sherwick +Sherwin +Sherwine +Sherwood +Sherwood Forest +Sherwood Hall +Sherwood Hill +Sherwood Hills +Sherwood Lake +Sherwood Park +Sherwoods +Sheryl +Shesley +Shesue +Shetcliffe +Shetland +Shetland Green +Shetlands +Shetler +Shevchenko +Sheve Hill +Sheveland +Shevelin +Shevlin +Shewens +Shewtan +Shibley +Shiel +Shield +Shieldborn +Shieldhall +Shields +Shiele +Shienfield +Shienfield Aborfield +Shienfield Church +Shiers +Shifnall +Shiley +Shillaber +Shilling +Shillingford +Shillington +Shiloh +Shiloh Church +Shilton +Shimizu +Shimmer River +Shimmin +Shin +Shindale +Shinfield +Shingle Creek +Shingle Crk +Shingle Mill +Shingle Oak +Shingle Valley +Shinglebarn +Shinglewell +Shining Water +Shinkle +Shinn +Shinnecock +Shinnick +Ship +Ship Rock +Ship Ways +Shipbourne +Shipbrook +Shipe +Shipham +Shipherd +Shipland +Shiplett +Shipley +Shipley Bridge +Shipley Farm +Shipley Hills +Shipman +Shippan +Shippee +Shippen +Shipper Bottom +Shippers +Ships +Ships Curve +Ships Knee +Ships Point +Shipston +Shipsview +Shipton +Shipwatch +Shipway +Shipwheel +Shipwright +Shipwrights +Shipyard +Shira +Shirburn +Shirbutt +Shire +Shire Oak +Shirebrook +Shireburn +Shiredale +Shiregreen +Shirehall +Shireoak +Shires +Shiretown +Shirewood +Shirill +Shirland +Shirlawn +Shirlee +Shirleen +Shirley +Shirley Church +Shirley Groton +Shirley Hills +Shirley House +Shirley Murphy +Shirley Oaks +Shirley Park +Shirley Vista +Shirley Way Bridle +Shirlington +Shirlock +Shirlow +Shirra +Shiva +Shiver +Shltr Rock +Shoal +Shoal Creek +Shoal Point +Shoal Water +Shoalhaven +Shoals +Shobar +Shobden +Shockey +Shockey Farms +Shodham +Shoe +Shoe Factory +Shoebury +Shoebury Common +Shoecroft +Shoemake +Shoemaker +Shoemaker Farm +Shoesmith +Shogmoor +Shogoro +Sholebroke +Sholem +Sholer +Sholton +Sholver +Shon +Shone +Shonks Mill +Shonnard +Shook +Shoonover +Shoop +Shooters +Shooters Hill +Shootersway +Shootingstar +Shop +Shopland +Shoplands +Shopman +Shoppe +Shoppenhangers +Shoppers World +Shoppes +Shopping Center +Shopping Heights +Shopton +Shoptysons +Shoquist +Shore +Shore Acres +Shore Breeze +Shore Club +Shore Edge +Shore End +Shore Garden +Shore Harbour +Shore Park +Shore View +Shore Walk +Shorebird +Shoreclift +Shoreclub +Shoredale +Shoreditch High +Shorefield +Shorefront +Shoregate +Shoreham +Shoreham Beach +Shorehame Club +Shorehaven +Shorehill +Shorelake +Shoreland +Shoreline +Shorely +Shorer +Shores +Shores Edge +Shores Green +Shoreside +Shoreview +Shoreview Park +Shorewalk +Shoreward +Shoreway +Shorewood +Shorewood Oaks +Shorey +Shorland +Shorn +Shorncliffe +Shorne Ifield +Shornecliffe +Shorrold +Short +Short Curve +Short Cut +Short Hill +Short Hills +Short Line +Short Ridge +Shortborough +Shortcroft +Shortcrofts +Shortcross +Shortcut +Shortdale +Shorter +Shortheath +Shorthill +Shorthills +Shorthorn +Shortland +Shortlands +Shortline +Shortmead +Shortmeadow +Shortridge +Shorts +Shortt +Shortway +Shortwood +Shoshana +Shoshone +Shot Town +Shotfield +Shotgun +Shotgun Fire +Shotkoski +Shotkowski +Shotover +Shott +Shottendane +Shottenden +Shottermill +Shotters +Shottfield +Shotwell +Shouldham +Shoults +Shouse +Shove +Shovelers +Shoveller +Shovelstrode +Showers +Showfields +Showground +Showlow +Shrader +Shrapnel +Shratton +Shremor +Shresbury +Shreve +Shrewsbury +Shrewton +Shrimpton +Shrine +Shriners +Shrive +Shriver +Shroffold +Shropshire +Shroton +Shrub +Shrub End +Shrub Hollow +Shrubbs +Shrubbs Hill +Shrubland +Shrubs +Shrubsole +Shu Swamp +Shuart +Shubert +Shuck +Shudehill +Shuey +Shufelt +Shuler +Shults +Shultz +Shuman +Shumard Oak +Shumway +Shunpike +Shupe +Shupin +Shurdington +Shure +Shurlach +Shurland +Shurlock +Shurmer +Shurtleff +Shurwin +Shut +Shute +Shutley +Shutt +Shutter +Shuttle +Shuttle Hillock +Shutts +Shuyler +Shye +Si Mall +Siandra +Sias +Sibbald +Sibbick +Sibelius +Sibella +Sibert +Sibley +Sibley Hills +Sibley Park +Sibson +Sibthorpe +Sibton +Sicard +Siccut +Sicilian +Sicily +Sickle +Sickle Bar +Sicklehatch +Sickles +Sickletown +Siclen +Sicomac +Sicora +Sidbrook +Sidbury +Sidcup +Siddall +Siddeley +Siddens +Siddington +Siddon +Siddons +Side +Side End +Side Saddle +Sidebotham +Sidebottom +Sideburn +Sidehill +Siden +Sideview +Sideways +Sidlaw +Sidlaws +Sidlaws Hills +Sidler +Sidley +Sidmouth +Sidmouth Grange +Sidney +Sidney Jones +Sidney Lanier +Sidwell +Sidworth +Siebel +Sieben +Siebert +Sieberts Ridge +Siedler +Siegel +Siegert +Siegle +Siegmond +Siek +Sielaff +Siemens +Siemer +Siems +Siena +Sienna +Sienna Park +Sierks +Sierra +Sierra Azul +Sierra College +Sierra Creek +Sierra Crest +Sierra Glen +Sierra Gold +Sierra Highlands +Sierra Madre +Sierra Mar +Sierra Meadow +Sierra Mesa +Sierra Mills +Sierra Morena +Sierra Oaks +Sierra Oaks Vista +Sierra Park +Sierra Pass +Sierra Point +Sierra Ridge +Sierra River +Sierra Spring +Sierra Sunset +Sierra Ventura +Sierra View +Sierra Vista +Sierra Wood +Sierra Woods +Sierraville +Sierrawood +Siesta +Siesta Key +Siesta Vista +Sievers +Sievert +Siewert +Sigberth Ridge +Sigdon +Sigel +Sigerson +Sigfrid +Siglingen +Sigma +Sigmona +Sigmond +Sigmund +Signal +Signal Bell +Signal Hill +Signal Tree +Signal View +Signature +Signe +Signet +Signs +Sigourney +Sigsbee +Sigtim +Sigwalt +Siino +Sikkema +Sikorsky +Silacci +Silace +Silala +Silam +Silas Hutchinson +Silber +Silberhorn +Silberman +Silbury +Silchester +Silco +Silcoates +Silecroft +Silence +Silent Brook +Silent Creek +Silent Dell +Silent Hills +Silent Lake +Silent Valley +Silent Wolf +Silentree +Silentwood +Siler +Silerton +Silex +Silica +Silicon +Silicon Valley +Silk +Silk MIll +Silk Mill +Silk Mill Way Iveson +Silk Oak +Silk Tree +Silk Wood +Silkfield +Silkham +Silkmore +Silkstone +Silkstream +Silktree +Silkwood +Silkworth +Sill +Silleck +Sillery Bay +Silliman +Silloway +Silo +Silo Inn +Silopanna +Silsbee +Silsby +Silsden +Silsoe +Silton +Silva +Silva Dale +Silva Ranch +Silva Valley +Silvaire +Silvan Glen +Silvana +Silvano +Silveira +Silver +Silver Beach +Silver Beech +Silver Bell +Silver Belt +Silver Berry +Silver Birch +Silver Brook +Silver Brush +Silver Canyon +Silver Charm +Silver Cliff +Silver Creek +Silver Creek Valley +Silver Crest +Silver Dollar +Silver Eagle +Silver Fern +Silver Fir +Silver Fox +Silver Hill +Silver Hills +Silver Hollow +Silver King +Silver Knoll +Silver Lake +Silver Lake Park +Silver Lake Service +Silver Lakes +Silver Leaf +Silver Legend +Silver Linden +Silver Lode +Silver Maple +Silver Meadow +Silver Moon +Silver Mountain +Silver Oak +Silver Park +Silver Peak +Silver Pine +Silver Plume +Silver Point +Silver Poplar +Silver Reef +Silver Ridge +Silver Rock +Silver Royd +Silver Run +Silver Shadow +Silver Shoon Ranch +Silver Side +Silver Spring +Silver Springs +Silver Spruce +Silver Spur +Silver Trail +Silver Trumpet +Silver View +Silver Wings +Silvera +Silverado +Silverbell +Silverbend +Silverberry +Silverbirch +Silverbrook +Silvercove +Silvercrest +Silverdale +Silverdate +Silverdell +Silverfield +Silvergate +Silverhey +Silverhill +Silverhollow +Silverhurst +Silverlake +Silverland +Silverlea +Silverleaf +Silverline +Silverlock +Silverlocke +Silvermere +Silvermine +Silverod +Silverpine +Silverside +Silversmith +Silverspot +Silversted +Silverstone +Silverthorn +Silverthorne +Silvertide +Silverton +Silvertown +Silvertrail +Silvertree +Silvertrees +Silverview +Silvervine +Silverwater +Silverwell +Silverwillow +Silverwood +Silvester +Silveyville +Silvia +Silvio +Silwood +Silzer +Sim +Simarano +Simard +Simas +Simberlan +Simbroco +Simcoe +Simek +Simeon +Simeone +Simister +Simkins +Simko Ranch +Simla +Simmat +Simmerhorn +Simmondley +Simmondley New +Simmonds +Simmone +Simmons +Simmonstone +Simms +Simms Landing +Simnel +Simo +Simon +Simon Hapgood +Simon Hill +Simon Lake +Simon Pearce +Simon Ranch +Simon Willard +Simond +Simonds +Simonds Farm +Simone +Simone Weil +Simoni +Simoni Ranch +Simons +Simonsen +Simonson +Simonton +Simotes +Simpkin +Simpkins +Simpkins Farm +Simplemarsh +Simplex +Simplicity +Simpson +Simpson Hill +Simpson Ranch +Simpsons +Sims +Simsbury +Simson +Sinai +Sinaloa +Sinatra +Sinawoy +Sincero +Sinclair +Sinclair Martin +Sinclair Mill +Sincots +Sindel +Sinderland +Sindle +Sindlesham +Sindsley +Sine +Sines +Singapore +Singer +Singers +Singers Glen +Singing Hill +Singing Hills +Singing Pines +Singing Wood +Singingwood +Single +Single Bird +Single Foot +Single Leaf +Singleborough +Singles Ridge +Singletary +Singleton +Singletree +Singlets +Singlewell +Singley +Singworth +Sinhurst +Sinnen +Sinnet +Sinnott +Sinon +Sinvalco +Sion +Sioux +Sip +Sipes +Sipp +Sippel +Sipson +Sir Alexander +Sir Antony +Sir Bernard Paget +Sir Douglas +Sir Evelyn +Sir Francis +Sir Galahad +Sir Gawaine +Sir George Martin +Sir Henry Brackenbury +Sir John Fogge +Sir Joseph Banks +Sir Lancelot +Sir Reginald Ansett +Sir Reynard +Sir Richard +Sir Richard Fairey +Sir Thomas +Sir Thomas Mitchell +Sir Viceroy +Sir Walter +Sir Walter Raleigh +Sir Warwick Fairfax +Sir William +Siracusa +Sirard +Sirdar +Sirder +Siren +Siri +Siri Rock Quarry +Sirius +Sirius Cove +Sirois +Siron +Sirus +Sisalbed +Sisco +Sise +Sish +Sisk +Siske +Siskin +Siskiyou +Sisley +Sissinghurst +Sisson +Sissons +Sister Cities +Sisters +Sistova +Sitgreaves +Sitka +Sitter +Sittingbourne +Siusun Valley +Sivert +Sivic +Siwanoy +Siward +Six Box +Six Corners +Six Mile Creek +Six Penny +Six Towers +Sixteen Twenty +Sixteenth +Sixth +Sixth Mile +Sixty Acres +Sizemore +Skaggs Island +Skaggs Springs +Skagit +Skahan +Skaife +Skamania +Skander +Skardu +Skarratt +Skate +Skater +Skating Pond +Skeels +Skeet Hill +Skeffington +Skeggs +Skegness +Skegsbury +Skehan +Skeleton +Skelgill +Skelley +Skellinger +Skellington +Skellorn Green +Skellow +Skelton +Skelton Grange +Skeltons +Skelwith +Skene +Skenes +Skerne +Skerry +Skerton +Sketty +Skeyne +Skeynes +Ski +Ski Hill +Ski Lodge +Skiba +Skibbereen +Skibbs +Skibo +Skid +Skidaw +Skidmore +Skidmores +Skiers +Skiff +Skiles +Skillcorn +Skillings +Skillman +Skilton +Skimmer +Skimped Hill +Skimpot +Skinner +Skinners +Skinners Turn +Skinney +Skip +Skip Jack +Skipjack +Skipper +Skippers +Skippets +Skipsey +Skipton +Skipwith +Skipworth +Skokie +Skokie Ridge +Skokie Valley +Skoshi +Skove +Skube +Skunks Misery +Skurla +Sky +Sky Blue +Sky Country +Sky Creek +Sky Crest +Sky Croft +Sky Farm +Sky Hawk +Sky Hill +Sky Hy +Sky Lake +Sky Meadow +Sky Meadows +Sky Oaks +Sky Peals +Sky Ranch +Sky Top +Sky Valley +Sky View +Skyarla +Skybrook +Skycrest +Skye +Skyewood +Skyfarm +Skyfield +Skyglade +Skyharbour +Skyhawk +Skyhigh +Skyhill +Skyland +Skylane +Skylar +Skylark +Skylawn +Skyler +Skyline +Skyline Curve +Skyline Lakes +Skyline Quarry +Skyline Ranch +Skylonda +Skymont +Skypark +Skyport +Skyranch +Skyridge +Skyswood +Skytop +Skytrain +Skyview +Skyvilla +Skyvue +Skywalker +Skywalker Ranch +Skyward +Skywater +Skyway +Skywest +Skywood +Slab Haul +Slabey +Slack +Slack Fold +Slack Gate +Slackcote +Slacks +Slad +Sladden +Slade +Slade Green +Slade Oak +Slade Run +Slade School +Slade green +Sladedale +Sladen +Slag +Slager +Slagle +Slaidburn +Slaight +Slaithwaite +Slaithwaite Radcliffe +Slalom +Slaney +Slapp +Slapton +Slate +Slate Creek +Slate Run +Slateacre +Slater +Slaters +Slatesford +Slatin +Slattery +Slattocks Link +Slaugham +Slaughter Dam +Slaughterhouse +Slavin +Slayback Ranch +Slayton +Sleaford +Sleapshyde +Slecroft +Sledding Hill +Sledmere +Sledmoor +Sleeper +Sleepers Farm +Sleeping Bear +Sleeping Dog +Sleepy +Sleepy Creek +Sleepy Hollow +Sleepy Hollow Dairy +Sleepy Horse +Sleepy Lake +Sleepy Ridge +Sleepy Valley +Sleepy View +Sleets +Sleigh +Sleight +Slender +Slessor +Slewins +Slice +Slidell +Sligar +Sligo +Sligo Creek +Sligo Mill +Slim +Slimbridge +Slimmons +Slines New +Slines Oak +Slingerland +Slip +Slip Mill +Slipe +Slippery Creek +Slippery Rock +Slipshoe +Slipway +Sloan +Sloane +Sloane Square Sloane +Sloanes Beach +Sloat +Slobe +Slocom +Slocum +Slocum Lake +Slocumb +Slone +Sloop +Slope +Slopecrest +Sloping Hill +Slosson +Slough +Slough Farm +Slougham +Sloughgreen +Sloughhouse +Sloway Coast +Slugwash +Sluice +Sluman +Slumberland +Sly +Sly Fox +Slyvan +Slyvaner +Smail +Smaland +Smalewell +Small +Small Brook +Small Grove +Small Hythe +Small Island +Small Lees +Small Reward +Smallberry +Smallbridge +Smallbrook +Smalldean +Smalley +Smallfield +Smallford +Smallgains +Smalls +Smalls Hill +Smallshaw +Smallshill +Smallwood +Smallwood Church +Smalzel +Smarden +Smart +Smarts +Smarts Heath +Smarts Mill +Smawthorne +Smc +Smeathers +Smeaton +Smeaton Approach Spur +Smeaton Grange +Smedley +Smee +Smeed +Smeeton +Smetana +Smethurst +Smethurst Hall +Smethwick +Smewins +Smidmore +Smidt +Smilax +Smiley +Smink +Smitana +Smith +Smith Brother +Smith Field +Smith Fold +Smith Hill +Smith Manor +Smith Mills +Smith Point +Smith Ridge Fire +Smith Switch +Smith Valley +Smith Village +Smitham Bottom +Smithers +Smithers Hill +Smithfield +Smithhart +Smithies +Smithies Moor +Smithills +Smithills Dean +Smithlee +Smiths +Smithson +Smithtown +Smithurst +Smithville +Smithway +Smithwick +Smithwood +Smithwood Common +Smithwoods +Smithy +Smithy Clough +Smithy Fold +Smithybridge +Smitty +Smittys +Smoke +Smoke Bellow +Smoke Rise +Smoke Tree +Smokehouse +Smokerise +Smoketown +Smoketree +Smokewood +Smokey Hill +Smokey Mountain +Smokey Mtns +Smokey Ridge +Smoky +Smoky Quartz +Smoot +Smoothleaf +Smug Oak +Smugglers +Smugglers Cove +Smull +Smullen +Smyrna +Smyth +Smythe +Smythes +Snail Lake +Snailing +Snailswell +Snake +Snake Brook +Snake Den +Snake Hill +Snakey +Snapdragon +Snape +Snapper +Snapper Cove +Snapping Turtle +Snaresbrook +Snargate +Snark +Snarsgate +Snatts +Snead +Sneath +Snedecor +Snedeker +Sneden +Snediker +Sneech Pond +Sneed +Sneider +Sneling +Snell +Snell Valley +Snelling +Snelling Av Service +Snelling Lake +Snellings +Snelson +Sneyd +Snicker +Snider +Snipe +Snipes +Snively +Snoad +Snoden +Snodgrass +Snodhurst +Snodland +Snohomish +Snohomish Woodinville +Snoll Hatch +Snoozin Tree +Snoqualmie +Snoqualmie River +Snouffers School +Snow +Snow Acres +Snow Bird +Snow Creek +Snow Crest +Snow Egret +Snow Goose +Snow Hill +Snow Lily +Snow Meadow +Snow Owl +Snow Point +Snow Valley +Snowball +Snowbell +Snowberry +Snowbird +Snowbury +Snowcap +Snowcrest +Snowden +Snowden Pond +Snowden River +Snowden Square +Snowden Woods +Snowdenham +Snowdenham Links +Snowdon +Snowdown +Snowdrift +Snowdrop +Snowerhill +Snowfall +Snowflake +Snowflower +Snowgoose +Snowhill +Snowhill Estates +Snowling +Snows Hill +Snowshill +Snowshoe +Snowsill +Snowy +Snowy Egret +Snowy Owl +Snug Cove +Snug Harbor +Snug Haven +Snug Hill +Snughorne +Snure +Snydale +Snyder +Soalwood +Soames +Soane +Soap +Soaphill +Soapstone +Soare +Soares +Soaring Hill +Soaring Oaks +Soave +Sobey +Sobieski +Sobo +Sobrante +Sobraon +Sobrato +Sobro +Soccer +Social +Society +Society Hill +Socorro +Soda Canyon +Soda Pop +Soda Springs +Sodaro +Sodbury +Soden +Soder +Sofa +Sofala +Soffel +Soffron +Sofia +Sofield +Soft Wind +Softwater +Softwind +Softwood +Soham +Sohap +Sohier +Sohl +Soho +Soifer +Soil Conservation +Sojourn +Soke +Sol +Sola +Solana +Solander +Solano +Solano College +Solar +Solar Hills +Solari +Solari Ranch +Solaridge +Solaris +Solartron +Solberg +Solbys +Soldate +Soldier +Soldier Hill +Soldiers +Soldiers Field +Sole Farm +Solebay +Soledad +Solent +Soleoak +Solera +Soleri +Soley +Solferino +Solfisburg +Soliano +Solid +Solidarity +Solis +Solitaire +Solitary +Solito +Solitude +Sollers Point +Solley +Sollport +Solmar +Solna +Solness +Solo +Soloff +Soloman +Solomon +Solomon Pond +Solomon Pond Mall +Solomons +Solomons Island +Soloms Court +Solon +Solono +Solook +Solow +Solstice +Soltes +Solvay +Solveig +Solway +Soma +Somali +Somer +Somerby +Somercote +Somerdale +Somerden +Somerfield +Somerford +Somerglen +Somerhill +Someries +Somerleyton +Somers +Somers Peterson +Somersbury +Somerset +Somersham +Somersville +Somersworth +Somerton +Somertrees +Somervelle +Somerville +Somme +Sommer +Sommerfeld +Sommers +Sommers Landing +Sommerville +Somner +Somnes +Somoa +Somonauk +Sonar +Sonata +Sondberg +Sonderburg +Sondergaard +Sondes +Sondes Place +Song Sparrow +Songbird +Songer +Songwood +Sonia +Soniver +Sonja +Sonn +Sonne +Sonneborne +Sonnet +Sonning +Sonning Common +Sonning High +Sonny +Sonoma +Sonoma Creek +Sonoma Mountain +Sonoma Ridge +Sonoma Valley +Sonora +Sonora Pass +Sonrel +Sonter +Sonuca +Sony +Soo +Soo Line +Soothill +Soper +Sophia +Sophie +Sophies +Sophist +Sophistry +Sophocles +Sophurst +Sopwith +Soquel +Soquel Creek +Soquel San Jose +Soquel Turnpike +Soquel Wharf +Sora +Sorbello +Sorbonne +Sorci +Sorel +Sorell +Soren +Soreng +Sorensen +Sorenson +Sorenstam +Sorento +Sorich +Sorlie +Sornoway +Sorowoc +Sorrel +Sorrel Hill +Sorrel Ridge +Sorrell +Sorrelwood +Sorreno +Sorrentino +Sorrento +Sorrie +Sorting +Sortmill +Sorton +Soscol +Soscol Creek +Soscol Ferry +Sosnowitz +Soss Moss +Sotano +Sotelo +Soterion +Sotherington +Sotheron +Sothoron +Sotnip +Soto +Sotoyome +Sotterly +Sotweed +Souberie +Soudan +Soueid +Sought For +Souh Park +Soulard +Souldern +Soule +Soult +Sound +Sound Bay +Sound Beach +Sound Shore +Sound View +Soundcrest +Sounding Shore +Soundside +Soundview +Sour Gum +Sourwood +Sousa +Souster +Sout Batavia +Soutborough +Souter +South +South A +South Abbott +South Abel +South Aberdeen +South Access +South Accommodation +South Acre +South Acres +South Acton +South Adams +South Airmont +South Airport +South Akron +South Alana +South Alaska +South Albert +South Alder +South Alfaya +South Allen +South Almaden +South Almond +South Alta +South Americus +South Amos +South Amphlett +South Amundsen +South Andover +South Angeline +South Angelo +South Apple +South Ash +South Ashland +South Ashton +South Atlantic +South Audley +South Augusta +South Austin +South Autumn +South Avalon +South Avon +South Avondale +South B +South Bacon Island +South Bailey +South Bangor +South Bank +South Bar +South Barn +South Barrington +South Barton +South Bascom +South Batavia +South Bateman +South Bay +South Bayard +South Baybrook +South Bayfield +South Bayshore +South Bayview +South Baywood +South Beach +South Bear Ridge +South Bedford +South Bella Monte +South Bellflower +South Bend +South Benefit +South Bennett +South Benton +South Bernardo +South Betty +South Beverly +South Birch +South Birkbeck +South Black Lion +South Blaney +South Blue Island +South Boas +South Bolingbrook +South Bolton +South Bond +South Border +South Boundary +South Bow +South Bow Lake +South Bowdoin +South Boylston +South Bozeman +South Bradford +South Branch +South Branciforte +South Brandon +South Bremen +South Bridge +South Bridgepointe +South Bristol +South Britton +South Broadway +South Brockway +South Brook +South Brooks +South Bruce +South Brush +South Buckingham +South Buena Vista +South Buffum +South Bulfinch +South Burns +South Bush +South Busse +South Byron +South California +South Cambridge +South Cameron +South Camp Meade +South Canal +South Canton +South Capitol +South Carboy +South Cargo +South Carlback +South Carol +South Carolina +South Carpenter +South Carr +South Carriage +South Carriage Way +South Carver +South Castro +South Cedar +South Cedar Glen +South Cemetry +South Center +South Central +South Chappell +South Charles +South Charlestown +South Chelmsford +South Cherrywood +South Chesterfield +South Chestnut +South Chicago +South Circle +South Circular +South Claremont +South Clark +South Clearbrook +South Cleveland +South Clinton +South Clover +South Clovercrest +South Cloverdale +South Club +South Clubhouse +South Cluff +South Coast +South Cody +South College +South Columbus +South Commercial +South Common +South Concord +South Conduit +South Conrad +South Conway +South Coombs +South Cooper +South Coral +South Corgiat +South Corporate +South Cottage +South Cotton +South Country Line +South County Line +South Court +South Cove +South Cragmont +South Creek +South Creekside +South Crescent +South Crest +South Creston +South Crestwood +South Cross +South Croston +South Croxted +South Crystal +South Culpeper +South Cypress +South D +South Dakota +South Danvers +South Davis +South Dawson +South Day +South Dean +South Dearborn +South Deborah +South Dedham +South Deer +South Deer Run +South Delancey +South Delaware +South Della +South Diameter +South Dickenson +South Dike +South Director +South Division +South Dogwood +South Dole +South Donovan +South Dorchester +South Doris +South Douglas +South Dowling +South Down +South Downs +South Dublin Ranch +South Dundalk +South Dunton +South Dwyer +South E +South Eads +South Eagle Nest +South East Main +South Eastern +South Eastwood +South Eddy +South Eden +South Edgewood +South Edison +South Edlin +South Edmunds +South El Monte +South Ela +South Eldorado +South Elise +South Eliseo +South Elizabeth +South Ellsworth +South Elm +South Elmgrove +South Elmhurst +South Elmwood +South Embers +South Emerald Oak +South Emerson +South End +South Entrance +South Erin +South Escanaba +South Esk +South Estates +South Estelle +South Euclid +South Evergreen +South Ewing +South Exchange +South Exit +South F +South Fairbanks +South Fairmont +South Fairview +South Falmore +South Farm +South Farrar +South Federal +South Ferdinand +South Fern +South Fernandez +South Ferry +South Fidalgo +South Field +South Filbert +South Fillmore +South Findlay +South Fine +South Fitch Mountain +South Flagg +South Fletcher +South Foothill +South Forest +South Forest Edge +South Fork +South Fountain +South Fox +South Frances +South Franklin +South Freda +South Frederick +South Free +South Fremont +South French Camp +South Fresno +South Frick +South Front +South Frontage +South Frontenac +South Fuel Break +South Fuller +South Fulton +South Furness +South G +South Garden +South Garden Loop +South Garfield +South Garrard +South Gate +South Gazelle +South Genesee +South Genessee +South Genevieve +South Genoa +South Gertrude +South Gilbert +South Gillis +South Glacier +South Glendale +South Glengarry +South Goebbert +South Goff +South Gold Ridge +South Grafton +South Graham +South Grand +South Grant +South Great +South Green +South Green Springs +South Greenleaf +South Greenthorn +South Greenwich +South Greenwood +South Grimmer +South Grove +South Grove Hill +South Grovetree +South Guild +South H +South Hall +South Halsted +South Ham +South Hampton +South Hancock +South Hanford +South Hanningfield +South Harbor +South Harbor View +South Hardy +South Harlan +South Harlem +South Harney +South Harriette +South Harris +South Harrison +South Hart +South Hartley +South Hartson +South Harvard +South Harvey +South Hatlen +South Haven +South Havenwood +South Hays +South Hazel +South Helena +South Henry +South Hess +South Hewitt +South Hickory +South Hicks +South High +South Highland +South Hill +South Hills +South Hillside +South Hinds +South Hinkley +South Hobart +South Hoga +South Holden +South Holgate +South Hollenbeck +South Hollins Ferry +South Hollow +South Holly +South Holmes +South Holt +South Homer +South Horton +South Hospital +South Houston +South Howard +South Howe +South Howland +South Hudson +South Hughes +South Humboldt +South Hummingbird +South Hunter +South Huntington +South Huron +South Hutchins +South Hyde +South I +South I Oka +South Idaho +South Illinois +South Industrial +South Inland +South Inner Circle +South Ironwood +South Irving +South J +South Jack Tone +South Jackson +South Janet +South Jefferson +South John +South Johnson +South Judkins +South Juneau +South Juniper +South K +South Kaiser +South Kaspar +South Kasson +South Keeble +South Kelly +South Kennbeck +South Kennebeck +South Kennedy +South Kennicott +South Kenny +South Kensico +South Kent Des Moines +South Kenyon +South Keppler +South Kersica +South Kerwood +South King +South Kingston +South Klein +South Knickerbocker +South Knoll +South Knollwood +South Koster +South Krista +South L +South La Grange +South LaSalle +South Lake +South Lake Dell +South Lake Sarah +South Lakes +South Lakeview +South Lambeth +South Lammers +South Lancaster +South Land Park +South Lander +South Langston +South Langworthy +South Larwin +South Laurel +South Lavergne +South Lear +South Lee +South Lehman +South Leigh +South Leisure +South Lenox +South Leo +South Leonard +South Leslie +South Lewis Park +South Lexington +South Liberty +South Lilac +South Lillian +South Lincoln +South Linden +South Linneman +South Livermore +South Liverpool +South Lockhart +South Locust +South Lodge +South Loma +South Lonsdale +South Loomis +South Loop +South Loring +South Lorna +South Los Angeles +South Louis +South Lowe +South Ludlow +South Lycett +South M +South Mac Arthur +South Macarthur +South Mackinaw +South Madera +South Madison +South Magnolia +South Maharaja +South Mahwah +South Main +South Mallard +South Manistee +South Manley +South Manor +South Manteca +South Manthey +South Maple +South Marble +South Marina +South Marine +South Market +South Marquette +South Marwood +South Mary +South Mary Frances +South Mary Francis +South Mason +South Massachusetts +South Mathewson +South May +South Mayfair +South Mayflower +South Mc Clellan +South Mc Donell +South Mc Kinley +South McClellan +South McCracken +South McDonnell +South McDowell +South McGlincey +South McKinley +South Meacham +South Mead +South Meadow +South Meier +South Mellon +South Merced +South Meridian +South Mesnefield +South Meyers +South Michael +South Michigan +South Middletown +South Midland +South Milbrook +South Mill +South Mill Creek +South Miller +South Mills +South Milpitas +South Milton +South Minahen +South Mitchell +South Modesto +South Moffett +South Molton +South Monroe +South Monsey +South Montgomery +South Moore +South Moorings +South Moray +South Morgan +South Morning Sun +South Morrison +South Morrissey +South Mount Baker +South Mountain +South Murphy +South Muskegon +South Myrtle +South N +South Naperville +South Natali +South Nauraushaun +South Navarra +South Naylor +South Nebraska +South Nelson +South Netherlands +South Netherton +South Nevada +South New Wilke +South Newport +South Nightingale +South Nordic +South Norfolk +South Normal +South Norman +South Normandy +South O +South Oak +South Oakwood +South Ocean +South Ohio +South Old Annapolis +South Oleander +South Olive +South Oliver +South Ophir +South Orange +South Oraton +South Orcas +South Orchard +South Ordnance +South Oro +South Orr +South Othello +South Overlook +South Oxford +South P +South Pacific +South Palisades +South Palmer +South Palomar +South Pamela +South Parallel +South Park +South Park Place +South Park Plaza +South Park Victoria +South Parkview +South Pascack +South Pastoria +South Patrick +South Patton +South Paula +South Peak +South Pearl +South Pebble Beach +South Peck +South Pembroke +South Peoria +South Perimeter +South Perry +South Pershing +South Peter +South Phelps +South Pilgrim +South Pine +South Pine Mountain +South Pinebrook +South Pinehurst +South Pippin +South Platti +South Pleasant +South Plum +South Plum Grove +South Plummer +South Point +South Polo +South Pond +South Ponderosa +South Pondside +South Port +South Portal +South Porter +South Portland +South Powers +South Prairie +South Prentice +South Prescott +South Priest +South Princeton +South Puget +South Pump +South Q +South Quebec +South Queen +South Quinsigamond +South R +South Racine +South Radford +South Railroad +South Rainbow +South Ranch +South Rancho +South Randall +South Rapetta +South Ravine +South Raymond +South Reach +South Redwing +South Redwood +South Reeve +South Regatta +South Regent +South Reid +South Reina del Mar +South Rengstorff +South Reuter +South Rhoda +South Richard +South Richwood +South Ridge +South Ridge Vista +South Ridgeland +South Ridgemark +South Ridgewood +South River +South Riverside +South Robert +South Roberts +South Robinson +South Rockaway +South Rockridge +South Rodeo Gulch +South Rohlwing +South Rolling +South Roosevelt +South Rosal +South Rose +South Rosewood +South Row +South Roxbury +South Roxie +South Royd +South Ruble +South Ruggles +South Run Oaks +South Russell +South Rustic +South Ryan +South S +South Sacramento +South Saint Ceclia +South Salado +South Salem +South San Antonio +South San Francisco +South San Jose +South San Luis +South San Mateo +South San Pedro +South Sangamon +South Santa Cruz +South Schmale +South Schmidt +South School +South Sea +South Sequoia +South Serven +South Service +South Seward Park +South Shaker +South Sharp +South Shasta +South Shell +South Shelton +South Sherman +South Sherwood +South Shingle +South Shore +South Shoreline +South Sibley +South Side +South Side Three +South Sierra Nevada +South Silver Springs +South Sinclair +South Smith +South Snoqualmie +South Solano +South Somerset +South Southern +South Spencer +South Spokane +South Spooner +South Springer +South Springinsguth +South Springs +South Spruce +South Sprucewood +South Sullivan +South Summit +South Sunnycrest +South Sunnyvale +South Sunset +South Surrey +South Surrey Ridge +South Susan +South Sutter +South Sydney +South Taaffe +South Taft +South Tall Grass +South Tamarack +South Tantau +South Tea Garden +South Temple +South Tenter +South Terrace +South Tessier +South Thayer +South Thelma +South Thistle +South Three Oaks +South Tillicum +South Tinnin +South Tobin +South Todd +South Tolman +South Tonne +South Town +South Tracy +South Treehouse +South Trenton +South Tulsa +South Turnpike E Fire +South Tuxedo +South Tweed +South Union +South University +South Upland +South Vail +South Vale +South Valley +South Van Buren +South Van Dorn +South Van Dyke +South Van Horn +South Van Ness +South Vasco +South Veach +South Ventura +South Vermont +South Victor +South View +South Vincennes +South Virginia +South Voelker +South Wabash +South Wachusett +South Wacker +South Wagner +South Waite +South Walker +South Wallace +South Walnut +South Walpole +South Walter +South Walton +South Ward +South Warehouse +South Warren +South Wash +South Washington +South Water +South Watt +South Waverly +South Weald +South Webster +South Weller +South Wells +South Welty +South West +South West Hills +South Westmore Meyers +South Wharf +South Whipple +South Whippoorwill +South Whiskey Slough +South Whisman +South White +South White Rock +South Whitehall +South Whitney +South Wilder +South Wildwood +South Wilhoit +South Wilke +South Wilkie +South Willard +South William +South Williams +South Williamson +South Willow +South Willow Creek +South Willow Glen +South Wilma +South Winchester +South Windemere +South Windsor +South Winfield +South Wing Levee +South Winston +South Winthrop +South Witham +South Wolf +South Wolfe +South Wolfinger +South Wood +South Woodsbro +South Woodside +South Woodward +South Worple +South Wright +South Yale +South York +South de Anza +South del Puerto +South el Circulo +South el Macero +SouthCottage +Southall +Southall King +Southall Brent +Southall King +Southam +Southampton +Southard +Southards +Southaven +Southbank +Southbay +Southbend +Southboro +Southbound Frontage +Southbourne +Southbreeze +Southbridge +Southbrook +Southbury +Southby +Southcenter +Southchurch +Southcliff +Southcliffe +Southcombe +Southcote +Southcote Farm +Southcourt +Southcreek +Southcrest +Southcroft +Southcross +Southdale +Southdene +Southdown +Southeast +Southeast Allen +Southeast Andrews +Southeast Bain +Southeast Bassett +Southeast Bean +Southeast Berry +Southeast Bush +Southeast Cambridge +Southeast Carr +Southeast Cedar Ridge +Southeast Cherry +Southeast Cisco +Southeast Clark +Southeast Colvos +Southeast Cornell +Southeast Croston +Southeast Culver +Southeast Curtis +Southeast Darst +Southeast Diablo View +Southeast Donnelly +Southeast Douglas +Southeast Eastgate +Southeast Evans +Southeast Fairwood +Southeast Flint +Southeast Fragaria +Southeast Fraser +Southeast Glendale +Southeast Grandview +Southeast Harper Hill +Southeast Highland +Southeast John +Southeast Jones +Southeast Kinsey +Southeast Klahanie +Southeast Lake +Southeast Lake Young +Southeast Lake Youngs +Southeast Lewis +Southeast May Valley +Southeast McBreen +Southeast McCollough +Southeast Mirrormont +Southeast Muir +Southeast Olympiad +Southeast Oneil +Southeast Overra +Southeast Perimeter +Southeast Petroviski +Southeast Petrovitsky +Southeast Pratt +Southeast Ridge +Southeast Scatterwood +Southeast Scott +Southeast Sebring +Southeast Sedgwick +Southeast Southworth +Southeast Summerhill +Southeast Sycamore +Southeast Tola +Southeast View Park +Southeast Washington +Southeast Wax +Southeast Willock +Southeast Wilson +Southeast Windsor +Southeast Yeshua +Southeastern +Southend +Souther +Souther Cross +Southerland +Southerly +Southern +Southern Access +Southern Businss Park +Southern Connector +Southern Cross +Southern Heights +Southern Hills +Southern Marin Line +Southern Maryland +Southern Md +Southern Night +Southern Oak +Southern Oaks +Southern Pacific +Southern Perimeter +Southern Planter +Southern Slope +Southernden +Southerns +Southerton +Southey +Southfalls +Southfield +Southfields +Southfleet +Southfork +Southfront +Southgarth +Southgate +Southgate Farm +Southglen +Southgrove +Southhampton +Southhead +Southhill +Southholm +Southill +Southington +Southlake +Southlakes +Southland +Southlands +Southlane +Southlawn +Southlea +Southlees +Southleigh +Southmead +Southmere +Southmill +Southminster +Southmont +Southmoor +Southmore +Southold +Southpine +Southpoint +Southpointe +Southport +Southridge +Southrun +Southsea +Southshore +Southside +Southtown +Southvale +Southview +Southville +Southwark +Southwark Park +Southwater Point +Southway +Southwell +Southwell Grove +Southwell Park +Southwest +Southwest Adams +Southwest Alaska +Southwest Andover +Southwest Angeline +Southwest Atlantic +Southwest Austin +Southwest Bank +Southwest Barton +Southwest Bayview +Southwest Bradford +Southwest Bruce +Southwest Burton +Southwest Cambridge +Southwest Canada +Southwest Carroll +Southwest Caster +Southwest Cedarhurst +Southwest Cemetery +Southwest Channon +Southwest Charlestown +Southwest City View +Southwest Clark +Southwest Cloverdale +Southwest Colewood +Southwest Concord +Southwest Cove +Southwest Cove Point +Southwest Cowan +Southwest Crescent +Southwest Dakota +Southwest Dawson +Southwest Dilworth +Southwest Director +Southwest Donald +Southwest Donovan +Southwest Eastbrook +Southwest Eddy +Southwest Edmunds +Southwest Elisha +Southwest Ellerwood +Southwest Ellisport +Southwest Elmgrove +Southwest Englewood +Southwest Fernwood +Southwest Findlay +Southwest Fletcher +Southwest Florida +Southwest Fontanelle +Southwest Forest +Southwest Forney +Southwest Francis +Southwest Front +Southwest Frontenac +Southwest Gibson +Southwest Gorsuch +Southwest Governers +Southwest Graham +Southwest Grayson +Southwest Hanford +Southwest Harbor +Southwest Hawthorne +Southwest Henderson +Southwest Heper +Southwest Hill +Southwest Hillcrest +Southwest Hinds +Southwest Holden +Southwest Holgate +Southwest Holly +Southwest Horton +Southwest Hudson +Southwest Ida +Southwest Idaho +Southwest Jacobsen +Southwest Juneau +Southwest Kenyon +Southwest Klahanie +Southwest Klickitat +Southwest Lander +Southwest Langston +Southwest Lisabuela +Southwest Luana +Southwest Luana Beach +Southwest Madrona +Southwest Main +Southwest Manning +Southwest Maury Park +Southwest Michigan +Southwest Mills +Southwest Monroe +Southwest Morgan +Southwest Mount Cedar +Southwest Nevada +Southwest Normandy +Southwest Ober Beach +Southwest Ocean View +Southwest Olga +Southwest Orchard +Southwest Oregon +Southwest Orleans +Southwest Othello +Southwest Prince +Southwest Pritchard +Southwest Raymond +Southwest Rose +Southwest Roxbury +Southwest Seattle +Southwest Seola +Southwest Shawnee +Southwest Shoremont +Southwest Shoreview +Southwest Snoqualmie +Southwest Soper +Southwest Spokane +Southwest Sullivan +Southwest Sunset +Southwest Thistle +Southwest Tillicum +Southwest Tillman +Southwest Trenton +Southwest Van Olinda +Southwest Virginia +Southwest Waite +Southwest Walker +Southwest Warsaw +Southwest Webster +Southwest Willow +Southwest Winthrop +Southwest Yancy +Southwestern +Southwick +Southwicke +Southwind +Southwinds +Southwold +Southwood +Southwood Lawn +Southwood Smith +Southwoods +Southworth +Southwynde +Souza +Sova +Sovereign +Sovereign Fold +Sovereign Heights +Soward +Soward Ranch +Sowards +Sowego +Sowerby +Sowles +Sowood +Sowrey +Spa +Spaans +Space Park +Spadafore +Spade +Spady +Spafford +Spafield +Spagnoli +Spahn Ranch +Spaich +Spain +Spains Hall +Spalding +Spaletta +Span +Spanby +Spangle +Spangler +Spaniards +Spaniel +Spanish +Spanish Bay +Spanish Cove +Spanish Flat Loop +Spanish Flat Resort +Spanish Grant +Spanish Oak +Spanish Oaks +Spanish Ranch +Spanish River +Spanish Trail +Spanker +Spanos +Spar +Spardley +Spare +Sparepenny +Sparger +Spargur +Sparhawk +Spark +Sparkbridge +Sparkel +Sparkes +Sparkeswood +Sparkill +Sparkle +Sparks +Sparks Ranch +Sparlin +Sparling +Sparr Spring +Sparrow +Sparrow Farm +Sparrow Hawk +Sparrow House +Sparrow Valley +Sparrowbush +Sparrowhawk +Sparrows +Sparrows Point +Sparsholt +Sparta +Spartan +Spartan Arrow +Sparth +Sparth Bottoms +Sparthfield +Spartina +Sparton +Spartons +Sparvell +Spates +Spates Hill +Spath +Spatham +Spathis +Spats +Spatz +Spaulding +Spaview +Spaw +Speak +Speaker +Speakers +Spear +Spearhead +Spearing +Spearman +Spearmint +Spears +Speart +Specht +Spechter +Speckel +Speckled Wood +Spectacle +Spectacle Hill +Spectacle Pond +Spector +Spectrum +Speed +Speedway +Speedwell +Speen +Speer +Speer Ranch +Speers +Speicher +Speidel +Speir +Speke +Spekes +Speldhurst +Spell +Spella +Spellbrook +Spellman +Spelman +Spen +Spen Vale +Spenard +Spence +Spencer +Spencer Brook +Spencer Hill +Spencer Place Cowper +Spencer Place Leopold +Spencer Sweet Pea +Spencers +Spencerville +Spender +Spengler +Spenleach +Spenlow +Spenney +Spennithorne +Spenny +Speno +Spenser +Speranza +Sperber +Sperl +Sperling +Sperring +Sperry +Spert +Spetti +Spey +Spezia +Spg Hill +Sphinx +Spibey +Spice +Spice Bush +Spice Hill +Spice Run +Spiceberry +Spicebush +Spicer +Spicewood +Spiegelhagen +Spielman +Spier +Spiers +Spignet +Spikehorn +Spiker +Spikes +Spikes Bridge +Spiller +Spillers +Spillway +Spilman +Spinaker +Spinale +Spindle +Spindletree +Spindrift +Spindrifter +Spine +Spinfield +Spingfield +Spinks +Spinks Ferry +Spinmaker +Spinnaker +Spinnaker Point +Spinnells +Spinner +Spinners +Spinney +Spinney Hill +Spinning Wheel +Spinosa +Spinoza +Spiraea +Spiral +Spire +Spirea +Spirit +Spirit Hills +Spirit Knob +Spiro +Spirou +Spit +Spital +Spitfire +Spithurst +Spittal +Spittler +Spittlesea +Spitz +Spitzer +Spiva +Split Creek +Split Oak +Split Rail +Split Rock +Split Tree +Splitrail +Splitrock +Splude +Spock Ridge +Spodden +Spode +Spode Green +Spodegreen +Spofford +Spofforth +Spoganetz +Spoil +Spokane +Spoke +Spoleto +Spolini +Sponden +Spondon +Spongs +Sponson +Spool +Spoon +Spoon Hill +Spoonbil +Spoonbill +Spooner +Spooners +Spoonger +Sporehams +Sporing +Sporst Center +Sports +Sports Park +Sportsbank +Sportside +Sportsman +Sportsmans +Spot +Spot Club +Spoto +Spotswood +Spotswood Gravel Hill +Spotsylvania +Spotted Gum +Spotted Horse +Spotted Owl +Spout +Spout Brook +Spout Run +Sprague +Sprain +Sprain Brook +Sprain Valley +Spraque +Spratley +Spratt +Spratt Hall +Spratts +Sprauer +Spray +Sprayer +Spreadbury +Spreading Oak +Spreckels +Spreckels Lake +Spreckles +Spreen +Spreighton +Spriering +Sprig +Spriggs +Spring +Spring Acres +Spring Bank +Spring Bay +Spring Bottom +Spring Branch +Spring Brook +Spring Close +Spring Clough +Spring Coppice +Spring Court +Spring Cove +Spring Creek +Spring Cress +Spring Crest +Spring Elms +Spring Farm +Spring Field +Spring Flower +Spring Gaden +Spring Garden +Spring Gardens +Spring Glen +Spring Green +Spring Grove +Spring Hall +Spring Haven +Spring Head +Spring Hill +Spring Hill Ring +Spring Hill School +Spring Hills +Spring Hollow +Spring House +Spring Knoll +Spring Lake +Spring Lakes +Spring Lawn +Spring Mall +Spring Manor +Spring Marsh +Spring Meadow +Spring Meadows +Spring Mill +Spring Mountain +Spring Oaks +Spring Park +Spring Plow +Spring Point +Spring Pond +Spring Pools +Spring Ridge +Spring Saw +Spring Splendor +Spring Summit +Spring Time +Spring Tree +Spring Vale +Spring Valley +Spring View +Spring Villa +Spring Village +Spring Water +Spring Wood +Spring bridge +Springarden +Springbank +Springbloom +Springbluff +Springbriar +Springbridge +Springbrook +Springclose +Springcreek +Springcrest +Springdale +Springdale Estates +Springer +Springfarm +Springfield +Springfield Center +Springfield Oaks +Springfield Park +Springfield Ranch +Springfield Village +Springfields +Springflower +Springhall +Springham +Springhaven +Springhead +Springhill +Springhollow +Springholly +Springholm +Springhouse +Springhurst +Springhurst Park +Springlake +Springlawn +Springle +Springleaf +Springline +Springmaid +Springman +Springmead +Springmeadow +Springmill +Springmont +Springpark +Springpath +Springpoint +Springrice +Springridge +Springrun +Springs +Springsguth +Springside +Springsong +Springsteen +Springstone +Springtide +Springtime +Springtree +Springvale +Springvalley +Springview +Springville +Springwater +Springwell +Springwod +Springwood +Springwood Hall +Springwood Meadow +Springwoods +Sprinklewood +Spriteview +Spritz +Sproat +Spronketts +Sproul +Sproule +Spruance +Spruce +Spruce Hill +Spruce Hills +Spruce Hollow +Spruce Meadows +Spruce Mill +Spruce Ridge +Spruce Rock +Spruce Tree +Spruce Wood +Sprucecreek +Sprucedale +Sprucetree +Sprucewood +Spruell +Spruill +Sprundel +Spruson +Spuhler +Spuley +Spumante +Spur +Spur Hill +Spur Oak +Spur Rock +Spur Wheel +Spuraway +Spurgeon +Spurgin +Spurgrove +Spurlands End +Spurling +Spurn +Spurr +Spurrell +Spurrier +Spurstowe +Spurt +Spurway +Spurwood +Spy +Spy Glass Hill +Spy Glass Ridge +Spy Pond +Spyglass +Spyglass Cove +Spyglass Hill +Spyglass Hills +Spyri +Spyros +Spywood +Squab +Squam +Squam Hill +Squannacook +Squanto +Squantum +Square +Square Barn +Squareshire +Squarey +Squash Creek +Squaw Brook +Squaw Hill +Squaw Valley +Squeri +Squibb +Squibnocket +Squids Gate +Squire +Squire Hill +Squirecreek +Squiredell +Squirehill +Squires +Squires Bridge +Squires Hill +Squires Mill +Squires Wodd +Squirrel +Squirrel Creek +Squirrel Hall +Squirrel Hill +Squirrel Hollow +Squirrel Run +Squirrels Heath +Squirrelwood +Sreia +St Michaels +St Agathas +St Agnells +St Agnes +St Aidans +St Alban +St Albans +St Albans Bay +St Albans Hollow +St Albans Mill +St Alfege +St Alphege +St Andrew +St Andrew Bethune +St Andrews +St Andrews Trace +St Ann +St Anna +St Anne +St Annes +St Anns +St Anselms +St Anthony +St Anthonys +St Armand +St Asaphs +St Aubin +St Augustine +St Augustines +St Austall +St Austell +St Austells +St Barnabas +St Barnabe +St Barthelemy +St Bartholomews +St Bees +St Benedict +St Benedicts +St Bernard +St Bernards +St Birinus +St Boniface +St Botolph +St Botolphs +St Brannocks +St Brelades +St Brendans +St Brigids +St Camillus +St Catherine +St Catherines +St Cecile +St Celcilia +St Chads +St Charles +St Christophers +St Clair +St Claire +St Clairs +St Clare +St Clement +St Clements +St Clere Hill +St Cloud +St Colette +St Croix +St Croix River +St Cross +St Cuthberts +St Davids +St Denis +St Dennis +St Dionis +St Domingo +St Dunstan +St Dunstans +St Dunston +St Ediths +St Edmunds +St Edwards +St Eleanoras +St Elmo +St Elmos +St Ervans +St Ethelbert +St Eva +St Fidelis +St Francis +St George +St Georges +St George’s +St Giles +St Giles High +St Gothard +St Guiberts +St Heather +St Helena +St Helens +St Helens Park +St Helier +St Helier Furness +St Heliers +St Hildas +St Hilliers +St Hughes +St Ignatius +St Ives +St Ivians +St James +St Jane +St John +St John Fisher +St Johnland +St Johns +St Johnsbury +St Joseph +St Joseph S +St Josephs +St Joseph’s +St Jude +St Judes +St Julian +St Julians +St Katherines +St Keverne +St Kilda +St Kildas +St Laurence +St Laurent +St Lawrence +St Leon +St Leonards +St Lo +St Louis +St Lucia +St Luke +St Lukes +St Malo +St Marcel +St Margaret +St Margarets +St Marie +St Mark +St Marks +St Marrys +St Martin +St Martins +St Mary +St Mary S +St Marychurch +St Marys +St Marys Church +St Marys Hall +St Matthew +St Matthews +St Matthias +St Michael +St Michaels +St Micheals +St Michel +St Mihiel +St Mildreds +St Monicas +St Moritz +St Nazaire +St Neots +St Nicholas +St Norbert +St Olives +St Omer +St Oswalds +St Ouen +St Patrick +St Patricks +St Paul +St Paul Park +St Pauls +St Pauls Church Bath +St Pauls Cray +St Peg +St Peter +St Peter Elgin +St Peters +St Peters Church +St Philips +St Phillips +St Quentin +St Quintin +St Regis +St Richards +St Rocco +St Rochs +St Roman +St Sampson +St Saviours +St Simon +St Swithins +St Swithuns +St Teresas +St Thomas +St Timothys +St Tropez +St Victor +St Vincent +St Vincents +St Volodymyr +St Wilfrids +St William +St Williams +St Winifreds +St catherines +St katherines +St. Agnes +St. Albans +St. Andrews +St. Annes +St. Anns +St. Audrey +St. Augustines +St. Austell +St. Barnabas +St. Benedict +St. Blaise +St. Botolph +St. Bride +St. Catherine +St. Catherines +St. Chads +St. Christopher +St. Clair +St. Claire +St. Clare +St. Cleres +St. Cyprians +St. Davids +St. Dionis +St. Dunstans +St. Ediths +St. Erkenwald +St. Francis +St. George +St. Georges +St. Giles +St. Helena +St. Helens +St. Helier +St. Ives +St. James +St. James on the +St. John +St. Johns +St. Julian +St. Katherine +St. Laurence +St. Leonards +St. Loo +St. Louis +St. Margaret +St. Margarets +St. Marks +St. Martins +St. Mary +St. Marys +St. Matthew +St. Matthews +St. Mervyns +St. Michaels +St. Modwen +St. Nazaire +St. Nicholas +St. Nicolas +St. Olafs +St. Oswulf +St. Paul +St. Pauls +St. Peters +St. Philip +St. Piers +St. Quintin +St. Rule +St. Saviours +St. Thomas +St. Vincent +St. Wilfrids +St.Albans +St.Gothard +St.Helier Love +St.Helier Central +St.James +St.Lukes +St.Marys +St.Norbert +St.Olaves +St.Peters +St.Thomas +Staaf +Staal +Stabean +Stable +Stable Yard +Stablebridge +Stableford +Stablegate +Stablehouse +Stabler +Stableview +Stablewood +Stacey +Stacey Hills +Stacey M +Staceys +Stachan +Staci +Stacia +Stack +Stacker +Stackfield +Stackhouse +Stackinghay +Stackler +Stackpole +Stacy +Staden +Stadhampton +Stadium +Stadler +Staedler +Staff +Staffa +Staffelot +Staffhurst Wood +Staffmark +Stafford +Stafford Hill +Staffordshire +Stafney +Stag +Stag Hill +Stag Oak +Stag Pasture +Stagbury +Stage +Stage Coach +Stage Gulch +Stage Harbor +Stage Hill +Stagecoach +Stagecoach Canyon +Stagehand +Stageline +Stager +Stagg +Staggers +Staghead +Staghorn +Stagi +Stags Run +Stags View +Stahl +Stahley +Stahls +Stahls Point +Stahlway +Stainbank +Stainbeck +Stainbume +Stainburn +Stainby +Staincliffe +Staincliffe Hall +Stainer +Staines +Stainforth +Staining +Stainland +Stainmore +Stainsbury +Staint Augustine +Stainton +Stair +Stair Foot +Stairbridge +Stairfoot +Stairley +Stairs +Stairway +Staithe +Staithes +Stake +Stakeford +Stakehill +Stakers +Stakes +Stakes Corner +Staleford +Stalevicz +Staley +Staley Hall +Staley Manor +Staleybridge +Staleys +Stalham +Stalisfield +Stalker +Stall +Stall Brook +Stallings +Stallion +Stalmine +Stalsburg +Stalwart +Stalybridge +Stalyhill +Stamas +Stambaugh +Stambridge +Stamford +Stamford Brook +Stamford Green +Stamford New +Stamford Park +Stamm +Stammergate +Stamp +Stampstone +Stan +Stan Fey +Stan Haven +Stanage +Stanam +Stanbank +Stanbaugh +Stanborough +Stanbourne +Stanbridge +Stanbro +Stanbrook +Stanbury +Stance +Stanchion +Stanchuk +Stanco +Stancomb Broad +Stancombe +Stancross +Standale +Standard +Standedge +Standen +Stander +Standfield +Standfill +Standford +Standford Hill +Standhill +Standiford +Standinghall +Standish +Standley +Standon +Standpipe +Standrich +Standridge +Stane +Stanes +Stanfield +Stanford +Stanford Farm +Stanford Oak +Stanford Rivers +Stangate +Stangland +Stangrove +Stangus +Stanham +Stanhome +Stanhope +Stanhope Park +Stanhorne +Stanich +Stanie Brae +Stanier +Staniford +Staniland +Stanislaus +Stanjoy +Stanks +Stanlake +Stanlen +Stanley +Stanley Dollar +Stanley Gardens +Stanley Hall +Stanley Hill +Stanley Park +Stanmer +Stanmoor +Stanmore +Stanmount +Stannage +Stannard +Stannary +Stanneylands +Stanningley +Stannybrook +Stansbury +Stansbury Lake +Stansell +Stansfield +Stansgate +Stanshawe +Stansmore +Stanson +Stanstead +Stansted +Stanton +Stanton Crossing +Stanton Hill +Stantonville +Stanway +Stanwell +Stanwell Moor +Stanwell New +Stanwich +Stanwick +Stanwix +Stanwood +Stanworth +Stanwyck +Stanyan +Stanycliffe +Stanyforth +Stapelton +Stapenhill +Staple +Staplefield +Stapleford +Stapleford Hall +Staplehurst +Staples +Staples Ranch +Staples Ridge +Stapleton +Stapleton Hall +Stapley +Stapp +Star +Star Bush +Star Farm +Star Flower +Star Grass +Star Hill +Star House +Star Lilly +Star Mill +Star Pine +Star Point +Star Post +Star Tulip +Star View +Starbird +Starboard +Starboard Tack +Starbright +Starbrook +Starbuck +Starbucks Main +Starburst +Starbush +Starch House +Starcliffe +Starcrest +Starcross +Stardrift +Stardusk +Stardust +Starfield +Starfighter +Starfire +Starfish +Starflower +Starhill +Starin +Stark +Starke +Starkey +Starkie +Starkin +Starlight +Starling +Starling Valley +Starling View +Starlings +Starlit +Starlit Ponds +Starlite +Starmead +Starmond +Starmont +Starmoor +Starodub +Starr +Starr Creek +Starr Jordan +Starr View +Starratt +Starrett Hill +Starring +Starrock +Starsplit +Starswept +Start +Starters +Starting Gate +Startins +Starts Hill +Starveacre +Starvecrow +Starview +Starward +Starwood +Stasia +Stassen +State +State Farm +State Forest +State Hospital Farm +State Line +State Park +Statecrest +Stately +Stately Oak +Stately Oaks +Staten +States +Stateside +Statesman +Stateview +Statford +Statham +Stathos +Station +Station Approach +Station Estate +Station House +Station Valley +Statler +Staton +Statrlight +Stattel +Statter +Statton +Statute +Staubitz +Staudtmauer +Stauffer +Staunton +Stave Yard +Staveley +Stavendish +Staverton +Stavola +Stavordale +Stavors +Stavros +Staycoff +Stayley +Stayner +Stayton +Stead +Steadfast +Steading +Steadman +Steam +Steam Farm +Steam Pump +Steamboat +Steamboat Cove +Steamboat Landing +Steamer +Steamview +Stearman +Stearns +Stearns Hill +Stearton +Stebbing +Stebbins +Stebondale +Stech +Stecher +Stedhall +Stedham +Stedman +Stedwick +Steed +Steed Hill +Steedman +Steedman Point +Steeds +Steel +Steel Creek +Steel Hill +Steel Mill +Steele +Steele Canyon +Steele Hill +Steele Oak +Steele Ranch +Steele Resort +Steele Ridge +Steeler +Steeles +Steelhead +Steelox +Steens Hill +Steenwick +Steep Hill +Steephollow +Steeple +Steeple Chase +Steeple Hill +Steeple Hills +Steeple Run +Steeple View +Steeplechase +Steeples +Steepleside +Steepletop +Steepridge +Steepwood +Steer +Steer Ridge +Steere +Steere Farm +Steerforth +Steers +Stefan +Stefani +Stefanic +Stefano +Steffan +Stege +Stegen +Steger +Steger Monee +Stegman +Stehle +Stehlik +Stehlin +Steiber +Steidel +Steiger Hill +Steiger Lake +Steilen +Stein +Steinbeck +Steinberg +Steiner +Steinhardt +Steinhauser +Steinly +Steinmaier +Steinton +Steinway +Steity +Stelfox +Steli +Stell +Stella +Stellar +Stelle +Stelling +Stellman +Stelton +Stem +Stem Brook +Stembridge +Stemer +Stemler +Stemmer +Stemmler +Stemp +Stencar +Stender +Stendhal +Steneman +Stengel +Stenhammer +Stenhouse +Stenman +Stenner +Stenning +Stenson +Step +Stephalee +Stephan +Stephan Marc +Stephanie +Stephanie Marie +Stephanville +Stephen +Stephen Marshall +Stephen Reid +Stephen Rennie +Stephendale +Stephenie +Stephens +Stephens Lake +Stephenson +Stephensons +Stephenville +Stepney +Stepney High +Stepneyford +Stepneys +Steppey +Stepps +Steps Hill +Stercho +Sterland +Sterling +Sterling Gate +Sterling Grove +Sterling Heights +Sterling Hill +Sterling Lake +Sterling Montague +Sterling Oak +Sterling Oaks +Sterling Ranch +Sterling View +Stern +Stern Ranch +Sterndale +Sterne +Sterner +Sternhall +Sternhold +Sterns +Sterry +Stetcher +Stetchworth +Stetson +Stetson Heights +Stetson Shrine +Stetzer +Steuart +Steubel +Steuben +Steve +Steve Biko +Stevebrook +Stevedore +Steven +Steven Martin +Steven Ray +Steven Smith +Stevenage +Stevens +Stevens Battle +Stevens Canyon +Stevens Creek +Stevens Forest +Stevens Glen +Stevenson +Stevenson Bridge +Stevenson Service +Steventon +Stever +Steves +Steves Farm +Stevick +Stevin +Stew +Stew Leonard +Steward +Stewards Green +Stewart +Stewarton +Stewartown +Stewarts +Stewartville +Stewkley +Steyning +Steynton +Stice +Stich +Stich Mi +Stickball +Stickens +Stickens Lock +Stickfast +Stickland +Stickle +Stickley +Stickling Green +Stickman +Stickney +Stieg +Stiemly +Stierlin +Stiff +Stifford +Stifford Clays +Stile +Stilebridge +Stiles +Stiles Pond +Still +Still Creek +Still Forest +Still Meadow +Still Meadows +Still Pond +Still River +Still River Depot +Still Water +Stillbreeze +Stillbrook +Stillbrook Farm +Stillbrooke +Stillford +Stilling +Stillingfleet +Stillings +Stillington +Stillman +Stillmeadow +Stillmeadows +Stillness +Stillo +Stillson +Stillspring +Stillview +Stillwater +Stillwell +Stillwell Acres +Stillwind +Stilson +Stilt +Stiltner +Stilwell +Stima +Stimel +Stimis +Stimson +Stinchcomb +Stinchfield +Stingray +Stinnett +Stinson +Stinson Service +Stipa +Stipp +Stipularis +Stires +Stirgess +Stirling +Stirling Bridge +Stirling Court +Stirling Park +Stirrup +Stirrup Cup +Stirrup Iron +Stites Hill +Stiups +Stivaletta +Stivers +Stoakley +Stobart +Stobbs +Stobe +Stock +Stock Farm +Stock Orchard +Stock Ranch +Stockade +Stockberry +Stockbreach +Stockbridge +Stockburn +Stockbury +Stockcroft +Stockdale +Stockdales +Stocker +Stockerhead +Stockers +Stockett +Stocketts +Stocketts Run +Stockfield +Stockford +Stockheld +Stockhill +Stockhoff +Stockholm +Stockhouse +Stocking +Stockings +Stockingstone +Stockingswater +Stockland +Stockland Green +Stockley +Stockman +Stockport +Stocks +Stocks Green +Stocks Park +Stocksfield +Stockton +Stockton Tees +Stockwell +Stockwell Farm +Stockwell Park +Stockwood +Stockyards +Stoconga +Stocton +Stodart +Stoddard +Stoddard Park +Stoddards +Stoddart +Stoddert +Stodham +Stodola +Stoecker +Stoetz +Stoffa +Stoke +Stoke Common +Stoke Court +Stoke Newington +Stoke Newington High +Stoke Poges +Stoke Row +Stokely +Stokenchurch +Stokes +Stokes Farm +Stokesay +Stokesby +Stokesheath +Stokesley +Stokoe +Stoll +Stolle +Stollwood +Stomp +Stompits +Stompond +Stonaker +Stonard +Stondon +Stone +Stone Arch +Stone Barn +Stone Breaks +Stone Bridge +Stone Brig +Stone Brook +Stone Cabin +Stone Canyon +Stone Castle +Stone Circle +Stone Cleave +Stone Cliff +Stone Court +Stone Creek +Stone Crop +Stone Cross +Stone End +Stone Fence +Stone Gate +Stone Hall +Stone Harbor +Stone Harbour +Stone Haven +Stone Heather +Stone Hedge +Stone Hill +Stone Hollow +Stone House +Stone Jug +Stone Lake +Stone Ledge +Stone Marsh +Stone Meadow +Stone Meadow Farm +Stone Mill +Stone Oak +Stone Oaks +Stone Path +Stone Pier +Stone Pillar +Stone Pine +Stone Pit +Stone Post +Stone Quarry +Stone Range +Stone Ridge +Stone Root +Stone School +Stone Spring +Stone Springs +Stone Tower +Stone Trail +Stone Vale +Stone Valley +Stone Village +Stone Wall +Stoneacre +Stonebarger +Stonebarn +Stonebriar +Stonebridge +Stonebridge Green +Stonebridge View +Stonebrook +Stonebrooke +Stoneburner Mill +Stonecastle +Stonechat +Stonecleave +Stonecleve +Stonecliff +Stonecliffe +Stoneclough +Stonecot Hill Tudor +Stonecreek +Stonecress +Stonecrest +Stonecroft +Stonecrop +Stonecross +Stonecutter +Stonecutters +Stonedale +Stonedge +Stonedrop +Stonefence +Stonefield +Stonefoot +Stoneford +Stonegarden +Stonegate +Stonehall +Stoneham +Stonehand +Stonehart +Stonehaven +Stonehead +Stonehearth +Stoneheather +Stonehedge +Stonehenge +Stoneheyes +Stonehill +Stoneholm +Stonehorse +Stonehouse +Stonehouse Hill +Stonehurst +Stoneings +Stonelake Club +Stoneland +Stonelea +Stoneleat +Stoneleigh +Stoneleigh Manor +Stoneleigh Park +Stoneman +Stonemason +Stonemead +Stonemeadow +Stonemere +Stonemill +Stonemill Farms +Stoneness +Stonenest +Stonepail +Stonepine +Stoner +Stoner Hill +Stoneridge +Stoneridge Mall +Stones +Stones Bank +Stones Corner +Stones End +Stones Manor +Stones Throw +Stonesboro +Stonesheep +Stonesteads +Stonestile +Stonestile Farm +Stonestreet +Stoneswood +Stonetown +Stoneview +Stonewall +Stonewall Farm +Stonewall Jackson +Stonewall Park +Stonewater +Stonewell +Stonewheel +Stonewood +Stonewyck +Stoney +Stoney Bottom +Stoney Brae +Stoney Bridge +Stoney Brook +Stoney Brooke +Stoney Castle +Stoney Common +Stoney Creek +Stoney Hill +Stoney Island +Stoney Lea +Stoney Meadows +Stoney Point +Stoney Ridge +Stoney Rock +Stoney Run +Stoney View +Stoney Weir +Stoneyard +Stoneybrae +Stoneybrook +Stoneybrooke +Stoneycreek +Stoneycrest +Stoneycroft +Stoneydown +Stoneyfield +Stoneyfold +Stoneyford +Stoneygate +Stoneyhill +Stoneyhurst +Stoneyland +Stoneylands +Stoneyside +Stonhouse +Stonie Heyes +Stonington +Stonley +Stonny Batter +Stonor +Stonum +Stony +Stony Beach +Stony Brae +Stony Brook +Stony Cove +Stony Creek +Stony Field +Stony Gorge +Stony Hill +Stony Hollow +Stony Island +Stony Path +Stony Point +Stony Ridge +Stony Run +Stony Wylde +Stonybrook +Stonycrest +Stonycroft +Stonyford +Stonyhurst +Stonyridge +Stonytown +Stoos +Stoothoff +Stop River +Stopes +Stopford +Storage +Storch +Storch Turn +Storch Woods +Store +Store Hill +Store House +Storehouse +Storer +Stores +Storetti +Storey +Stories +Storig +Stork +Storksmead +Storland +Storm +Stormount +Storms +Stormwood +Stormy +Stornaway +Stornoway +Storrie +Storrington +Storrow +Storrs +Stort +Stortford +Stortford Hall +Storth Meadow +Story +Story Acres +Story Book +Story Hill +Storybook +Storz +Stotfold +Stothard +Stothoff +Stott +Stotts +Stoughton +Stour +Stourcliffe +Stourton +Stout +Stovall +Stovell +Stover +Stow +Stow Lake +Stowaway +Stowe +Stowecroft +Stowel +Stowell +Stowers +Stowring +Stowting +Strabane +Stracey +Strachan +Stradbroke +Stradella +Strader +Stradford +Strafello +Strafford +Straford +Straford Garden +Strahan +Straight +Strain +Strait +Straits +Straits View +Strakers +Straloch +Strand +Strand Approach +Strande +Stranden +Strander +Strang +Strange +Stranger +Strangford +Strangman +Stranraer +Stranton +Strasbourg +Strasburg +Strassberger +Strassburg +Strasser +Strata +Stratfield +Stratfield Saye +Stratford +Stratford Bay +Stratford House +Strath Erin +Strath Haven +Strathalbyn +Strathallen +Stratham +Strathaven +Strathblaine +Strathbrook +Strathcarron +Strathcona +Strathdon +Strathearn +Stratheden +Strathfield +Strathgordon +Strathleven +Strathlora +Strathmeade +Strathmere +Strathmoor +Strathmore +Strathnairn +Strathspey +Strathville +Strathyre +Straton +Stratos +Strattford +Stratton +Stratton Chase +Stratton Hill +Stratton Pond +Stratton Ranch +Stratus +Stratwood +Straub +Straugh +Straughn +Straus +Strausberg +Strauss +Stravinsky +Straw +Straw Bale +Straw Hollow +Strawberry +Strawberry Bank +Strawberry Canyon +Strawberry Hill +Strawberry Knoll +Strawberry Park +Strawberry Patch +Strawbridge +Strawbridge Square +Strawflower +Strawtown +Stray +Strayer +Strayfield +Strayhorn +Streakes Field +Stream +Stream Pit +Stream Pond +Stream Valley +Stream View +Stream Wood +Streamside +Streamview +Streamwood +Streatfeild +Streatfield +Streatham +Streatham High +Streatham HillTelford +Streathbourne +Streatley +Strebel +Streblow +Strebor +Strech +Streels +Street +Street Bridge +Street End +Street Hill +Streeter +Streeters +Streetfield +Streethaven +Streethouse +Streeton +Strehler +Streiff +Streimer +Streitz +Strek +Streng +Strenger +Strentzel +Strese +Stretchworth +Stretford +Stretton +Strickland +Strickroth +Stride +Strieff +Striker +Striley +Strine +Strines +String +Stringer +Stringer Dam +Stringers +Stringfellow +Stringtown +Stringybark +Striped Bass +Strivens +Strobel +Strobridge +Strobus +Strode +Stroh +Strohn +Stroker +Strolling +Strom +Stroman +Strome +Stromlo +Stromness +Stromquist +Strone +Strong +Strongbow +Stronghurst +Strongs +Strongstry +Stronsa +Strood +Stroud +Stroud Farm +Stroud Green +Stroude +Stroudley +Stroup +Strout +Strouts +Stroven +Strover +Strowbridge +Struan +Struble +Struckman +Struen Marie +Strully +Strunks +Strutfield +Struthers +Struttmann +Struttons +Struve +Struyk +Stryker +Strype +Strzlecki +Stuart +Stuart Kaplan +Stuart Mill +Stuart Ridge +Stuart Robeson +Stuart on Oxford +Stuarton +Stuarts +Stub +Stub Toe +Stubb +Stubbers +Stubbin +Stubbins +Stubbins Hall +Stubble +Stubbs +Stubbs Moor +Stubby +Stuber +Stubley +Stubley Mill +Stubpond +Stubtoe +Stuckey +Stuckler +Stucley +Studarus +Studd +Studding Sail +Studdridge +Studebaker +Student +Student Center +Students +Studham +Studholme +Studio +Studios +Studland +Studley +Studley Grange +Studridge +Studt +Stuenkel +Stuhr +Stukeley +Stukely +Stults +Stulz +Stumble +Stump +Stump Neck +Stumptown +Sturbridge +Sturdee +Sturdivant +Sturdy +Sturge +Sturgeon +Sturgeon Lake +Sturges +Sturgess +Sturgis +Sturgus +Sturl +Sturla +Sturm +Sturnbridge +Sturney +Sturno +Sturr +Sturry +Sturt +Sturtevant +Sturtons +Stutfield +Stutt +Stutton +Stutz +Stuyvesant +Styal +Stychens +Styebank +Styertown +Styhead +Style +Stylecroft +Styler +Styles +Stylon +Suakin +Sub +Subagai +Subec +Subiaco +Sublett +Substation +Subtle +Suburban +Suburbia +Subway +Success +Succetti +Such +Sucher +Sucinto +Sucker Lake +Sudan +Sudberry +Sudborne +Sudbourne +Sudbrook +Sudbrooke +Sudbury +Sudbury Court +Sudbury Heights +Sudden +Sudden Pond +Sudeley +Sudell +Sudley +Sudley Manor +Sudlow +Sudsbury +Sue +Sue Ann +Sueirro +Suel +Sueno +Suez +Suffern +Suffield +Suffolk +Suffolk Park +Suffork +Sufi +Sufonet +Sugar +Sugar Babe +Sugar Barge +Sugar Bear +Sugar Beet +Sugar Bush +Sugar Cane +Sugar Creek +Sugar Hill +Sugar House +Sugar Loaf +Sugar Maple +Sugar Meadow +Sugar Mill +Sugar Pine +Sugar Pit +Sugar Toms +Sugar Valley +Sugar View +Sugar Well +Sugarberry +Sugarbush +Sugarcane +Sugarland +Sugarland Meadow +Sugarland Run +Sugarland Valley +Sugarloaf +Sugarloaf Mountain +Sugarloaf View +Sugarpine +Sugarplum +Sugartree +Sugarwood +Sugden +Suggs +Sugiyama +Suheil +Suisse +Suisun +Suisun Valley +Suit +Suiter +Suitland +Suitt +Sulby +Sulfrian +Sulgrave +Sulgrove +Sulhamstead +Sulina +Sulivan +Sulky +Sulley +Sulliman +Sullivan +Sullivans +Sully +Sully Lake +Sully Park +Sulmam +Sulmone +Sulphur +Sulphur Spa +Sulphur Spring +Sulphur Springs +Sultan +Sulyma +Sumac +Sumacs +Sumatra +Sumbray +Sumburgh +Summa +Summer +Summer Blossom +Summer Blossum +Summer Breeze +Summer Day +Summer Duck +Summer Gate +Summer Glen +Summer Grove +Summer Heights +Summer Hill +Summer Hollow +Summer Home +Summer House +Summer House Hill +Summer Isle +Summer Leaf +Summer Leave +Summer Meadow +Summer Moon +Summer Oak +Summer Oaks +Summer Park +Summer Pointe +Summer Pond +Summer Rain +Summer Ridge +Summer Rose +Summer Shade +Summer Sky +Summer Sunrise +Summer Sunset +Summer Village +Summer Walk +Summer Wheat +Summer Wind +Summerall +Summerbell +Summerbreeze +Summerbridge +Summerbrook +Summercourt +Summercreek +Summercrest +Summerdale +Summerday +Summerfield +Summergate +Summergrove +Summerheights +Summerhill +Summerhill Burnham +Summerhome Park +Summerhouse +Summerland +Summerlands +Summerleaf +Summerleaze +Summerlee +Summerley +Summerleys +Summerlin +Summerly +Summerplace +Summerrain +Summerridge +Summers +Summers Grove +Summersbury +Summersby +Summerseat +Summerset +Summershade +Summershades +Summerside +Summersong +Summersweet +Summerswood +Summertime +Summerton +Summertree +Summervale +Summerview +Summerville +Summerwind +Summerwood +Summit +Summit A +Summit B +Summit Canyon +Summit Corner +Summit Creek +Summit Fr +Summit Hall +Summit Hills +Summit Lake +Summit Manor +Summit Oaks +Summit Park +Summit Point +Summit Ranch +Summit Ridge +Summit School +Summit Shores +Summit Springs +Summit View +Summit View Ranch +Summit Wood +Summit Woods +Sumner +Sumner Brown +Sumner Grove +Sumner Lake +Sumner Perry +Sumner South +Sumpter +Sumpwams +Sumter +Sumutka +Sun +Sun Blossom +Sun Brook +Sun Center +Sun City +Sun Cliff +Sun Court +Sun Glen +Sun Glory +Sun Glow +Sun Gold +Sun Haven +Sun Hill +Sun Meadow +Sun Mor +Sun Mountain +Sun Oak +Sun Orchard +Sun Park +Sun Point +Sun Ranch +Sun Ray +Sun River +Sun Run +Sun Shadow +Sun Tree +Sun Valley +Sun West +Sunamber +Sunapee +Sunbank +Sunbeam +Sunberry +Sunbird +Sunbonnet +Sunborough +Sunbow +Sunbower +Sunbreeze +Sunbridge +Sunbright +Sunbrook +Sunburst +Sunbury +Sunbury Court +Sunby +Suncast +Suncatcher +Suncliff +Sunco +Suncook +Suncote +Suncountry +Suncrest +Suncrest Hill +Suncroft +Sund +Sundale +Sundance +Sunday +Sundberg +Sunderland +Sunderleigh +Sunderlin +Sunderton +Sundew +Sundial +Sundin +Sundon +Sundon Park +Sundown +Sundowner +Sundridge +Sundrift +Sundringham +Sundrop +Sunfaire +Sunfield +Sunfish +Sunfish Lake +Sunflower +Sungarden +Sungate +Sunglow +Sunhaven +Sunhill +Sunhills +Sunken +Sunken Meadow +Sunken Orchard +Sunkist +Sunland +Sunland Vista +Sunlaws +Sunlea +Sunleaf +Sunleigh +Sunlight +Sunlit +Sunlit Ann +Sunlite +Sunmead +Sunmeadow +Sunmill +Sunmore +Sunning +Sunning Hill +Sunningdale +Sunningfields +Sunninghill +Sunnings +Sunny +Sunny Acres +Sunny Bank +Sunny Bower +Sunny Brae +Sunny Brook +Sunny Brooke +Sunny Brow +Sunny Chapel +Sunny Cove +Sunny Creek +Sunny Dell +Sunny Gardens +Sunny Glen +Sunny Hill +Sunny Hills +Sunny Knoll +Sunny Meadow +Sunny Meadows +Sunny Oaks +Sunny Orchard +Sunny Plain +Sunny Ridge +Sunny Side +Sunny Slope +Sunny View +Sunny Vista +Sunnyacres +Sunnybank +Sunnybrae +Sunnybrook +Sunnycrest +Sunnycroft +Sunnydale +Sunnydays +Sunnydell +Sunnydene +Sunnyfield +Sunnyfields +Sunnygate +Sunnyglen +Sunnyhaven +Sunnyhill +Sunnyhills +Sunnyholt +Sunnylea +Sunnymead +Sunnymede +Sunnymere +Sunnymount +Sunnyridge +Sunnyrock +Sunnyside +Sunnyslope +Sunnyslope Farm +Sunnyslopes +Sunnyvale +Sunnyview +Sunnywood +Sunnywoods +Sunol +Sunol Valley +Sunpace +Sunpark +Sunpeak +Sunray +Sunridge +Sunrise +Sunrise Beach +Sunrise Farm +Sunrise Greens +Sunrise Hill +Sunrise Hills +Sunrise Hwy N Service +Sunrise Mall +Sunrise Meadows +Sunrise Mountain +Sunrise Park +Sunrise Pines +Sunrise Ridge +Sunrise South +Sunrise Terrace +Sunrise Valley +Sunrise View +Sunrise Vista +Sunrock +Sunrose +Sunseason +Sunset +Sunset Glen +Sunset Hill +Sunset Hills +Sunset Knoll +Sunset Lake +Sunset Lakes +Sunset Maple +Sunset Meadows +Sunset Mobiles +Sunset Park +Sunset Place +Sunset Ridge +Sunset Rock +Sunset View +Sunshadow +Sunshine +Sunshine Cottage +Sunshine Valley +Sunshire +Sunsilver +Sunspark +Sunspring +Sunsprite +Sunstar +Sunstone +Sunstream +Sunsweet +Sunswyck +Suntaug +Sunte +Suntone +Suntree +Sunvale +Sunvalley +Sunvaught +Sunview +Sunway +Sunwest +Sunwich +Sunwisper +Sunwood +Sunwood Valley +Suomi +Suosso +Superba +Superfortress +Superior +Supor +Supornick +Supplee +Supply +Supreme +Supreme Ct +Sur Mer +Surada +Surat +Surber +Surbiton +Surbiton Hill +Surele +Surf +Surf View +Surface +Surfperch +Surfside +Surfview +Surig +Surita +Surmont +Surperior +Surplus +Surprise +Surr +Surratts +Surratts Manor +Surratts Village +Surrenden +Surrey +Surrey Circle +Surrey Heath +Surrey Heights +Surrey Hill +Surrey Hts +Surrey Ridge +Surrey Service +Surrey Square +Surrey Water +Surrey Woods +Surreywood +Surro +Surry +Surrydale +Surryhill +Surryse +Surtess +Survey +Surveyor +Surveyor Abbot +Surveyors Creek +Susan +Susan Leslie +Susan Oak +Susan Rosemary +Susana +Susanah +Susanna +Susannah +Susanne +Susans +Susi +Susie +Susini +Susquehanna +Susquehannock +Susses +Sussex +Sussex Corner +Sussex Creek +Sussman +Susy +Sutch +Sutcliff +Sutcliffe +Suteki +Suter +Suthard +Sutherland +Suthurin +Sutlej +Sutler +Sutphen +Sutphin +Sutro +Sutro Heights +Sutter +Sutter Creek +Sutter Gate +Sutter Hill +Sutter Island +Sutter Slough Bridge +Sutters +Sutters Gold +Sutterton +Sutterville +Sutterwind +Suttie +Suttle +Sutton +Sutton Baron +Sutton Common +Sutton Court +Sutton Dale +Sutton Green +Sutton Hall +Sutton Hill +Sutton Manor +Sutton Oaks +Sutton Park +Sutton Wick +Sutton Wood +Sutton Woods +Suttondale +Suttons +Suttons Park +Suttonwood +Suttor +Suview +Suwanee +Suwarrow +Suydam +Suzanne +Suzette +Suzie +Suzie Q +Suzzane +Svea +Svenson +Sverge +Swabey +Swaby +Swagman +Swailes +Swaim +Swain +Swaine +Swainland +Swains +Swains Lock +Swains Pond +Swainson +Swainson Hawk +Swainsons Hawk +Swainsthorpe +Swainstone +Swainwood +Swaisland +Swakeleys +Swale +Swalecliff +Swaledale +Swales +Swallow +Swallow House +Swallow Point +Swallow Rock +Swallow Tail +Swallowdale +Swallowfield +Swallows +Swallows Nest +Swallowtail +Swalls +Swalm +Swamp +Swamp Circle +Swamp Fox +Swamphen +Swampscott +Swampy +Swan +Swan Creek +Swan Harbour +Swan Lake +Swan Oak +Swan Point +Swan Pond +Swanage +Swanberg +Swanbourne +Swanbridge +Swandale +Swane +Swanee +Swanell +Swaner +Swanfield +Swank +Swanland +Swanley +Swanley Bar +Swanley Village +Swann +Swannekin +Swanns +Swans Creek +Swans Mill +Swanscoe +Swanscomb +Swanscombe +Swansea +Swansfield +Swanson +Swanson Creek +Swansona +Swanston +Swanstree +Swanton +Swanton View +Swanworth +Swanzy +Swanzy Dam +Swaps +Swarbrick +Swarcliffe +Sward +Swardale +Swarthmore +Swarts +Swartz +Swartzel +Swasedale +Swasey +Swaton +Swattenden +Swayfield +Swaylands +Swayne +Swaynes +Swaynesland +Swayze +Sweat Briar +Swede Lake +Sweden +Sweden Point +Swedish Mission +Sweeley +Sweeney +Sweeneydale +Sweeny +Sweet +Sweet Andrea +Sweet Autumn +Sweet Bay +Sweet Birch +Sweet Briar +Sweet Cherry +Sweet Clover +Sweet Grass +Sweet Gum +Sweet Hill +Sweet Hollow +Sweet Maggie +Sweet Meadow +Sweet Oak +Sweet Pea +Sweet Pecan +Sweet Pine +Sweet Water +Sweet William +Sweetbay +Sweetbirch +Sweetbriar +Sweetbrier +Sweetbrook +Sweetflower +Sweetgrass +Sweetgum +Sweethaven +Sweetings +Sweetland +Sweetland Farm +Sweetlands +Sweetleaf +Sweetloves +Sweetman +Sweetmans +Sweetmeadow +Sweetnam +Sweetridge +Sweets +Sweetser +Sweetspring +Sweetwater +Sweetwater Springs +Sweetwood +Sweezy +Sweigert +Sweitzer +Swenson +Swete +Swett +Swett Hill +Swettenham +Sweyne +Swickard +Swider +Swift +Swift Arrow +Swift Creek +Swift River +Swift Run +Swift Run Trails +Swifts +Swifts Green +Swiftsure +Swiftwater +Swillers +Swillington +Swinborne +Swinbourne +Swinbrook +Swinburn +Swinburne +Swindells +Swinderby +Swindon +Swinebourne +Swineyard +Swinfield +Swinford +Swing +Swing Swang +Swingate +Swingingdale +Swingle +Swinks Mill +Swinley +Swinnerton +Swinnow +Swinside +Swinson +Swinstead +Swinton +Swirl +Swiss +Switch Grass +Switchback +Switchboard +Switchglass +Switchgrass +Swithemby +Swithens +Swithin +Swithland +Switzer +Swoffer +Swoop Hill +Swope +Sword +Swordale +Swordfish +Swordsmans +Swordstone +Sworford +Swridgedale +Swrobinwood Beach +Swyncombe +Syar +Sybaris +Sybert +Sybil +Sybilla +Sybourn +Sycamore +Sycamore Canyon +Sycamore Glen +Sycamore Hill +Sycamore Landing +Sycamore Leaf +Sycamore Ridge +Sycamore Springs +Sycamore Valley +Sychem +Sycolin +Sydall +Syddal +Syddall +Sydell +Sydenham +Sydenham Park +Sydenstricker +Sydervelt +Sydner +Sydney +Sydney Joseph +Sydney Park +Sydnor +Syers +Syke +Sykes +Sykesville +Sykora +Syl Dor +Syldeo +Sylhowe +Sylla +Sylmar +Sylva +Sylvain +Sylvamdur +Sylvan +Sylvan Dell +Sylvan Glade +Sylvan Glen +Sylvan Heights +Sylvan Knoll +Sylvan Lake +Sylvan Meadow +Sylvan Moor +Sylvan Woods +Sylvandale +Sylvaner +Sylvania +Sylvanleigh +Sylvanus +Sylvanus Wood +Sylvar +Sylverdale +Sylvester +Sylvestri +Sylvestris Fire +Sylvia +Sylviawood +Sym +Symblist +Syme +Symes +Symington +Symmes +Symmonds +Symnes +Symond +Symonds +Symonds Green +Symons +Symor +Symphony +Symphony Meadow +Symphony Woods +Syndall +Syndicate +Synge +Syon +Syosset +Syosset Woodbury +Syracuse +Syrd +Syril +Syrup Mill +Systems +Systron +Systrum +Syvestrus Fire +Szymanski +T Alexander +Taaffe +Tab +Tabalum +Tabard +Taber +Taber Hill +Tabernacle +Tabiona +Table +Table Mountain Fire +Tableer +Tabler +Tabley +Tabley Hill +Tabooba +Tabor +Tabor Hill +Tabor House +Tabora +Tabors +Tabourie +Tabrett +Tabscott +Tabway +Tacana +Tacaro +Tachbrook +Tache +Tachevah +Tack +Tack Factory Pond +Tackbrooke +Tackett +Tacketts Mill +Tackroom +Tacks +Taco +Tacoma +Tacoma Narrows +Tacomic +Taconic +Tad +Tadcaster +Taddington Wood +Tadema +Tadin +Tadman +Tadmor +Tadmore +Tadmuck +Tadorne +Tadpole +Tadstone +Tadworth +Taeping +Taff +Taffrail +Taffs +Taffy +Tafoya +Taft +Tafts +Tag +Tagart +Taggart +Taggarts +Taglio +Tahalla +Tahama +Tahan +Tahanto +Tahattawan +Tahiti +Tahja +Tahlee +Tahlulah +Tahoe +Tahoe Circle +Tahola +Tahona +Tahos +Tahualami +Tai Tung +Tail Feathers +Tailings +Tailor +Tailrace +Tailwind +Tain +Tainan +Tainter +Tainter Hill +Tainters +Taintor +Taipei +Taisley +Tait +Taiyul +Taj +Taji +Tajlea +Takeley +Takolusa +Takoma +Tal +Talacre +Talaga +Talahi +Talala +Talamore +Talandis +Talara +Talavera +Talbart +Talbert +Talbot +Talbot Farm +Talbots +Talbott +Talbragar +Talbryn +Talburn +Talc +Talcot +Talcott +Taleeban +Talent +Taleworth +Talford +Talfourd +Talgai +Talgarth +Talia +Taliaferro +Taliesin +Talinga +Talisa +Talisman +Talismon +Talkin +Talking Rock +Tall Cedars +Tall Forest +Tall Grass +Tall Oak +Tall Oaks +Tall Pine +Tall Pines +Tall River +Tall Shadows +Tall Ships +Tall Timber +Tall Timbers +Tall Tree +Tall Trees +Tall Tulip +Tallac +Tallack +Tallagandra +Tallahassee +Tallahatchey +Tallard +Tallawalla +Tallawanda +Tallawarra +Tallawong +Tallayast +Talle +Tallen +Tallent +Taller +Talley +Tallgrass +Tallgums +Tallies +Tallis +Tallmadge +Tallman +Tallon +Tallong +Tallow +Tallow Tree +Tallow Wood +Tallowood +Tallowwood +Tallwood +Tally +Tally Ho +Tallyho +Talma +Talmadge +Talman +Talmiro +Talmont +Taloma +Talon +Taloombu +Talulah +Talus +Talwarra +Talwin +Tam O Shanter +Tam Oshanter +Tamahawk +Tamal +Tamal Vista +Tamalpais +Tamalpais View +Tamani +Tamar +Tamara +Tamara Jean +Tamarac +Tamarack +Tamaralk +Tamarama +Tamarama Marine +Tamarind +Tamarindo +Tamarindo Bay +Tamarisk +Tamarix +Tamaro +Tamaron +Tamarou +Tamayo +Tamboer +Tamboon +Tamborine +Tamboura +Tambourine Bay +Tamboy +Tambu +Tambua +Tamburlaine +Tame +Tameling +Tamer +Tamera +Tamerton +Tami +Tami Lee +Tamiami +Tamie +Taminga +Tammanny +Tammer +Tammie +Tammie Hill +Tamms +Tammy +Tammys +Tamori +Tampa +Tampico +Tamplen +Tamplin +Tamworth +Tamworth Hill +Tamys +Tan Bark +Tan House +Tan Oak +Tan Vat +Tana +Tanadoona +Tanager +Tanagers +Tanaka +Tanbark +Tancin +Tancred +Tancreti +Tandang Sora +Tandara +Tandem +Tandera +Tanderagee +Tanderra +Tandle Hill +Tandom +Tandridge +Tandridge Hill +Tandy +Tanen +Taney +Tanfield +Tanforan +Tangarra +Tangeman +Tangen +Tanger +Tangerine +Tangier +Tangle +Tangle Wood +Tanglevale +Tanglewood +Tanglewood Hollow +Tanglewood Park +Tanglewood Trails +Tanglewylde +Tangley +Tangley Park +Tanglyn +Tangmere +Tango +Tangshutts +Tanhill +Tanhouse +Tanhurst +Tania +Tank +Tank Hill +Tank House +Tankerdale +Tankerton +Tankerville +Tankit +Tanklage +Tankridge +Tanland +Tanleaf +Tanley +Tannahill +Tannehill +Tanner +Tanner Heights +Tanners +Tanners End +Tanners Park +Tanners Pond +Tanners Wood +Tannery +Tannery Creek +Tannery Ridge +Tanney +Tannock +Tannsfeld +Tano +Tanoak +Tanridge +Tansey +Tansley +Tanswell +Tansy +Tant +Tantallon +Tantangara +Tantani +Tantolen +Tanton +Tanuda +Tanunda +Tanwood +Tanworth +Tanya +Tanyard +Tanyard Cove +Tanyard Hill +Tanyard Spring +Tanza +Tanzanite +Tanzio +Taormino +Taos +Tapadera +Taper +Tapered +Tapestry +Tapia +Tapio +Tapiola +Taplan +Tapley +Taplin +Taplins Farm +Taplow +Tapners +Tapok +Tapp +Tappan +Tappan Landing +Tappanwood +Tappen +Tappentown +Tapper +Tappesfield +Tapping +Tappingo +Tapscott +Tapsells +Tapster +Tapwood +Tar Cove +Tar Point +Tar Tank +Tara +Tara Ann +Tara Hill +Tara Hills +Tara Lin +Tara View +Tarabrook +Tarada +Taradale +Tarakan +Taralga +Tarantino +Taranto +Tarara +Taras +Taraval +Tarban +Tarbat +Tarbay +Tarbell +Tarbell Spring +Tarbell Springs +Tarbert +Tarbet +Tarboro +Tarbox +Tarca +Tardival +Tardy +Tarecroft Green +Taree +Tarence +Tareyton +Tarfside +Targee +Target +Target Rock +Target Service +Target Svc +Target on Whittier +Targo +Targowski +Tariff +Tarilli +Taringa +Tarjan +Tarkan +Tarkiln +Tarkin Hill +Tarkington +Tarklin +Tarklin Pond +Tarklyn +Tarks +Tarland +Tarleton +Tarleton Corner +Tarling +Tarlton +Tarman +Tarmigan +Tarn +Tarn Hill +Tarn View +Tarnapoll +Tarnside +Tarnworth +Taro +Taronga +Tarook +Taroona +Tarpan +Tarpey +Tarplee +Tarpley +Tarpon +Tarporley +Tarquin +Tarra +Tarrabundi +Tarragon +Tarragona +Tarragundi +Tarrant +Tarrants +Tarraville Creek +Tarring +Tarrington +Tarrogana +Tarrs +Tarry +Tarryhill +Tarrymore +Tarrytown +Tarshes +Tart Lake +Tartan +Tartan Hills +Tartan Lakes +Tartan Ridge +Tartan Trail +Tartan View +Tartan Vista +Tartans +Tartar +Tartarian +Tarton +Tarver +Tarvin +Tarwater +Tarwin +Taryn +Tascan +Tasha +Tashmoo +Tasker +Tasman +Tassajara +Tassajara Ranch +Tassasara +Tassi +Tassia +Tasso +Taswell +Tatani +Tatchbury +Tatchell +Tate +Tate Naylor +Tateley +Tatham +Tathra +Tatlers +Tatman +Tatmorehills +Tatnell +Tatra +Tatro +Tatsfield +Tattan Farm +Tattenham +Tattenham Corner +Tattersall +Tattersalls +Tattershall +Tatterson +Tattlebury +Tatton +Tatton Mere +Tatum +Taub +Tauber +Taubert +Taubman +Taunton +Taurasi +Taurus +Taussig +Taustin +Tauxemont +Tavan Estates +Tavenner +Tavern +Tavern Court +Taverners +Taverney +Tavernor +Tavernor Trail +Tavestock +Tavi +Tavisock +Tavistock +Taviton +Tawa +Tawney +Tawneys +Tawny +Tawny Port +Taworri +Tawton +Taxal Moor +Taxi +Taxiera +Taxter +Tay +Tay Creek +Tay River +Tayben +Taybridge +Tayfield +Tayla +Tayles Hill +Tayloe +Taylor +Taylor Acres +Taylor Glen +Taylor Hill +Taylor Manor +Taylor Park +Taylor Point +Taylor View +Taylors +Taylors End +Taylorsport +Taylorstown +Taylortown +Taylorville +Taylro Caldwell +Tayman +Tayman Farm +Taymil +Taynish +Taynton +Tayntor +Tayside +Taywood +Tchapitoulas +Tea +Tea Garden +Tea Gardens +Tea Rock +Tea Rose +Tea Table +Tea Tree +Teaberry +Teabury +Teaderman +Teagarden +Teague +Teak +Teakettle +Teakle +Teakwood +Teal +Teal Island +Tealby +Teale +Tealing +Tealwood +Teamster +Teaneck +Teapot +Teasdale +Teasel +Tebaco +Tebbs +Tebbutt +Tebroc +Tebworth +Tec +Tec Air +Tech +Tech Center +Techni +Technical Park +Technology +Technology Center +Technology Park +Techny +Teck +Teckla +Tecklenberg +Teckler +Tecoma +Tecumseh +Ted +Ted Bowling +Tedbury +Tedd +Tedder +Teddington +Teddington Elmfield +Teddington Gloucester +Teddo +Teddy +Tedesco +Tedford +Tedrich +Teds +Tedwin +Tee +Tee Time +Teebrook +Teed +Teehan +Teel +Teela +Teele +Teemer +Teepee +Teer +Tees +Teesdale +Teets +Teeup +Teevan +Teeway +Tefft +Tegan +Tegea +Tegel +Teggs +Tehama +Teibel +Teibrook +Teichert +Teigland +Teignmouth +Teiland +Teilh +Teilland +Teixeira +Tejas +Tejon +Tek +Tekels +Tekening +Tekman +Teldeschi +Tele +Telegram +Telegraph +Telegraph Corner +Telegraph Hill +Telemark +Telephone +Teleport +Telescope +Telese +Telfer +Telferscot +Telford +Telford Way Brunel +Tell +Teller +Tellers +Telles +Tellis +Tellson +Telluride +Telopea +Telsa +Telscombe +Telser +Telston +Telwong +Temaraire +Temblor +Tembrook +Temelec +Temeraire +Temescal +Temi +Temora +Temora Manor +Tempcopy +Tempe +Tempelhof +Temperance +Temperate +Temperley +Tempest +Templar +Templars +Temple +Temple Bar +Temple Creek +Temple Hall +Temple Hill +Temple Mills +Temple Newsam +Temple Park +Temple Sheen +Temple Shen +Temple View +Temple Wood +Templecombe +Templedene +Templegate +Templeman +Templenewsam +Templer +Templeton +Templewood +Tempo +Temporary +Tempsford +Temptin +Tempus +Ten Acre +Ten Acres +Ten Eyck +Ten Gate +Ten Hills +Ten Mills +Ten Oaks +Ten Penny +Tenafly +Tenakill +Tenax +Tenaya +Tenbrink +Tenbroeck +Tenbrook +Tenbury +Tenby +Tench +Tenda +Tender +Tenderfoot +Tendring +Tenean +Tenella +Teneriffe +Tenety +Teneyck +Tenham +Tenilba +Tenley +Tennalinde +Tennant +Tennaqua +Tennement +Tennent +Tennessee +Tennessee Valley +Tenney +Tennis +Tennis Club +Tennis Court +Tennis Plaza +Tennison +Tenniswood +Tennnyson +Tennyson +Tenor +Tensing +Tenson +Tent +Tent Peg +Tentelow +Tenterden +Tenterfield +Tenterhill +Tenth +Tenzing +Teonia Woods +Tepee +Tepper +Teppers +Tequesta +Teracina +Teragram +Teralba +Terama +Terance Butler +Tercentennial +Teredo +Terence +Terence Webster +Teresa +Teresa Rose +Teresi +Teresita +Terfidia +Terhune +Teri +Teri Lynn +Teria +Terilyn +Terkuile +Terl +Terman +Termeil +Terminal +Termine +Terminous +Terminus +Tern +Ternay +Terne +Terners +Terneuzen +Terney +Terni +Ternwing +Terra +Terra Alta +Terra Bella +Terra California +Terra Cotta +Terra Firma +Terra Granada +Terra Grande +Terra Holland +Terra Linda +Terra Loma +Terra Mar +Terra Nova +Terra Park +Terra Ridge +Terra Rossa +Terra Valley +Terra Verde +Terra Villa +Terra Vista +Terra Vita +Terra Woods +Terrace +Terrace Beach +Terrace Grove +Terrace Hall +Terrace Lake +Terrace View +Terraceview +Terracewood +Terracina +Terraco +Terradillo +Terraine +Terramere +Terramore +Terrance +Terrance Ferry +Terrane +Terranova +Terrapin +Terrapin Hills +Terrazzo +Terrebonne +Terrehans +Terrel +Terrell +Terrence +Terrene +Terreno +Terreno de Flores +Terrett +Terrey Pine +Terri +Terrianne +Terrick +Terrie +Terrier +Terrigal +Terrill +Terrimay +Territorial +Terront +Terry +Terry Francois +Terrybrook +Terryellen +Terryfield +Terryll +Tersha +Terwick +Tesco Access +Tesco Entry +Tesimond +Tesla +Tesoro +Tess +Tessa +Tessier +Tessman +Tessman Farm +Tessmer +Testa +Testard +Tester +Teston +Testway +Testwood +Tetbury +Tetcott +Tether +Tethys +Tetley +Tetley Bye +Tetlow +Teton +Teton Meadow +Tetreault +Tetterton +Teversham +Teverton +Teviot +Tevis +Tevlin +Tewberry +Tewin +Tewinga +Tewkes +Tewkesbury +Tewksbury +Tewlawne +Tewson +Texa Tonka +Texas +Textile +Textilose +Tey +Teynham +Thacher +Thackara +Thacker +Thackeray +Thackery +Thackhams +Thaddeus +Thaddeus Mason +Thaden +Thadford +Thais +Thalia +Thame +Thame Park +Thames +Thames Haven +Thames River +Thames Valley Park +Thameshill +Thamesmead Bentham +Thamesmeade +Thamesmere +Thane +Thanet +Thankerton +Thanksgiving +Thanlet +Tharp +Thatch +Thatch Barn +Thatch Leach +Thatcher +Thatchers +Thatford +Thave +Thaxmead +Thaxted +Thaxter +Thaxton +Thayer +Thayer Heights +Thayer Memorial +Thayers Farm +The +The American +The Ark +The Carriage +The Center +The Charter +The Coach +The Comenarra +The Crescent +The Dalles +The Fairway Hall +The Gallery in Cork +The Gate Brickfield +The Glade Keston +The Glen +The Globe in Morning +The Grange +The Great +The Green Courtwood +The Green Elm +The Green Money +The Green Hunsworth +The Green Man Marsh +The Green Town +The Grove Broadhurst +The Grove Danson +The Hall on Virginia +The High +The Highway Court +The Holme +The Horsley +The Kings +The Kraal +The Ladder +The Lakes +The Lammas +The Lawns +The Ledges +The Lido Green Man +The Limes +The Long +The Luton +The Manor +The Mansion On O +The Mansion on O +The Market on the +The Martins +The Masters +The Meads +The Mount +The Mount Grove +The Mount Whitehorn +The Mountain +The Nook +The Northern +The Old +The Old Coach +The Old Northern +The Old Oaks +The Old School +The Outlook +The Pastures Service +The Pines +The Plain +The Plains +The Plaza +The Plough Kenton +The Point +The Ponds +The Queens +The River +The Rocks +The Service +The Siger +The Silk +The Sraight +The Sunny +The Tideway Maidstone +The Tower +The Trees +The Valley +The Village +The Villages +The Villages Fairway +The Warren +The Water +The White Hart High +The Whitethorn +The Woodman Joel +The Woods +Thea +Theaker +Theale +Theall +Theater +Theatre +Thebes +Theda +Theed +Theilen +Theim +Theis +Theisan +Thele +Thelma +Thelton +Thelwall +Thelwall New +Themes +Themews +Thenius +Theo +Theo Wirth +Theobald +Theobalds +Theobalds Park +Theobold +Theodor +Theodora +Theodore +Theodore Conrad +Theodore Fremd +Theodore Green +Theodore Parker +Theodore Roosevelt +Therapia +Theresa +Theresa Anne +Therese +Therfield +Thermal +Therriault +Therry +Thersea +Thesda +Thesen +Thesigar +Thessaly +Thestland +Theta +Thetford +Theydon +Theydon Park +Thibeault +Thibet +Thicket +Thicketford +Thickthorne +Thiel +Thiele +Thielen +Thier +Thieriot +Thierry +Thiers +Thiery +Thieves +Thilow +Thimble +Thimbleberry +Thimblehall +Thimsen +Thin Edge +Thingvalla +Third +Third Cross +Thirleby +Thirlemere +Thirlmere +Thirlmont +Thirlstone +Thirlwater +Thirsfield +Thirsk +Thirslet +Thirteenth +Thirtyninth +Thirtysecond +Thirza +Thissell +Thisselt +Thistle +Thistle Glen +Thistle Hill +Thistlebridge +Thistlecroft +Thistledale +Thistledene +Thistledown +Thistlethorn +Thistlewaite +Thistlewood +Thistley +Thistly +Thixton +Thoby +Thoits +Tholen +Thollen +Tholverton +Thom +Thoma +Thomas +Thomas Atkinson +Thomas Baines +Thomas Bata +Thomas Baxter +Thomas Bell +Thomas Branch +Thomas Brigade +Thomas Center +Thomas Clapp +Thomas Clarke +Thomas Clewes +Thomas Ctr +Thomas Dehaven +Thomas Dinwiddy +Thomas Doyle +Thomas Edison +Thomas Farm +Thomas Gangemi +Thomas Gantt +Thomas Grant +Thomas Hickey +Thomas Hill +Thomas Holt +Thomas J Thorsen +Thomas Jefferson +Thomas Lake +Thomas Lake Harris +Thomas Lake Pointe +Thomas Leighton +Thomas McGovern +Thomas Mitchell +Thomas Moore +Thomas More +Thomas Nevitt +Thomas Newton +Thomas Paine +Thomas Park +Thomas Patton +Thomas Point +Thomas Powell +Thomas Prospect +Thomas Rice +Thomas Rose +Thomas S. Boyland +Thomas View +Thomas Wlkinson +Thomas Young +Thomasin +Thomasina +Thomasson +Thomasson Crossing +Thomasville +Thomes +Thomlar +Thomond +Thompkins +Thompson +Thompson Access +Thompson Hill +Thompson Springs +Thompsons +Thoms +Thomsen +Thomson +Thone +Thong +Thong Pan +Thonrdyke +Thonus +Thopkins +Thor +Thora +Thorburn +Thorby +Thoreau +Thorens +Thores +Thoresby +Thoresway +Thoria +Thorington +Thorkhill +Thorley +Thorley Park +Thorman +Thorn +Thorn Apple +Thorn Bush +Thorn Creek +Thorn Hill +Thorn Royd +Thorn Tree +Thorn View +Thornage +Thornal +Thornall +Thornally +Thornapple +Thornapple Tree +Thornash +Thornaway +Thornbank +Thornbark +Thornbeck +Thornbera +Thornberry +Thornborough +Thornbriar +Thornbridge +Thornbrook +Thornburg +Thornburgh +Thornbury +Thornbush +Thornby +Thorncliff +Thorncliffe +Thorncombe +Thorncrest +Thorncroft +Thorndale +Thornden +Thorndene +Thorndike +Thorndon +Thorndon Park +Thorndon Ridge +Thorndown +Thorndyke +Thorne +Thorne Grove +Thornedike +Thornell +Thorner +Thornet Wood +Thornewood +Thorney +Thorney Bay +Thorney Hedge +Thorney Mill +Thorneycroft +Thornfield +Thornflat +Thorngate +Thorngrove +Thornham +Thornham Old +Thornhaugh +Thornhill +Thornhill Farm +Thornholme +Thornhurst +Thorning +Thornknoll +Thornlaw +Thornlea +Thornleigh +Thornley +Thornly +Thornmeadow +Thorns +Thornsbeach +Thornsberry +Thornsett +Thornsgreen +Thornton +Thornton Beach +Thornton Blue Island +Thorntons Farm +Thorntree +Thornvalley +Thornville +Thornwall +Thornwood +Thorny Lea +Thornycroft +Thornydyke +Thornyhurst +Thorobred +Thorold +Thoroughbred +Thoroughgood +Thorp +Thorparch +Thorpe +Thorpe Hall +Thorpe Hill +Thorpe Lea +Thorpebank +Thorpebrook +Thorpedale +Thorpedene +Thorpewood +Thorpland +Thors Bay +Thorsby +Thorsen +Thorton +Thorup +Thorverton +Thotland +Thousand Oaks +Thowler +Thoydon +Thrales End +Thrasher +Thrave +Thread Needle +Threadmill +Threadneadle +Threadneedle +Threaphurst +Thredbo +Three Acres +Three Bridges +Three Cherry Trees +Three Colt +Three Colts +Three Counties +Three Countries +Three Crowns +Three Doctors +Three Elm +Three Elms +Three Farms +Three Forks +Three Gables +Three Gates +Three Horse Shoes +Three Horseshoes +Three Houses +Three Hurdles +Three Kings +Three Lake Bellevue +Three Lakes +Three Mill +Three Oak +Three Oaks +Three Pears +Three Penny +Three Point +Three Points +Three Ponds +Three Ring +Three Rivers +Three Sisters +Three Springs +Threepence +Threestile +Threlfall +Threlkeld +Thremhall +Thresa +Thresher +Threshers +Threshfield +Thrift +Thrift Farm +Thrigby +Thrimley +Throcking +Throckmorten +Throckmorton +Throgmorton +Throgs Neck +Throne +Thronhill +Throop +Throsby +Throstle +Throstle Bank +Throughbred +Throwley +Thrumont +Thrun +Thrupp +Thrupps +Thrush +Thrush Ridge +Thrushwing +Thrushwood +Thuddungra +Thuman +Thunder +Thunder Bay +Thunder Chase +Thunder Hill +Thunder Mountain +Thunderbird +Thunderbolt +Thunderer +Thunderhead +Thundersley Church +Thundersley Park +Thune +Thurbans +Thurbarn +Thurber +Thurbon +Thurby +Thurcaston +Thurgood +Thurland +Thurlby +Thurleigh +Thurleston +Thurlestone +Thurlgona +Thurloe +Thurlow +Thurlow Park +Thurlston +Thurlstone +Thurlton +Thurlwood +Thurm +Thurman +Thurmont +Thurnau +Thurnby +Thurneyholme +Thurnham +Thurns +Thursby +Thursfield +Thursland +Thursley +Thurso +Thurstable +Thurstan +Thurstane +Thurston +Thurston Clough +Thurtle +Thurwachter +Thurwood +Thwaite +Thwing +Thyme +Thynne +Thyra +Thyssel +Tiada +Tiana +Tianderah +Tiara +Tiarri +Tib +Tibatts +Tibbett +Tibbetts +Tibbits +Tibbitt +Tibbs Hill +Tibbys +Tiber +Tiber River +Tiberias +Tiberius +Tiberon +Tibooburra +Tibouchina +Tiburon +Tice +Tice Creek +Tice Valley +Ticehurst +Tices +Ticetown +Tichborne +Tichenor +Tichenors +Ticino +Tick Neck +Tick Tock +Tickenhall +Tickenor +Ticker +Tickham +Tickner +Tickners +Ticknor +Tickseed +Tico +Ticonderoga +Tidal Basin +Tidd +Tiddymotts +Tide +Tides +Tideswell +Tidewater +Tideway +Tidewind +Tidey +Tidford +Tidmarch +Tidmarsh +Tidmore +Tidswell +Tidworth +Tidys +Tie Gulch +Tiebout +Tiedeman +Tiedemann +Tieman +Tiemann +Tienda +Tienne +Tiensch +Tiepigs +Tier +Tieri +Tiernan +Tiernans +Tierney +Tierneys Woods +Tierra +Tierra Alta +Tierra Buena +Tierra Creek +Tierra Gardens +Tierra Lago +Tierra Oaks +Tierra de Dios +Tierras +Tietjen +Tiffaney +Tiffany +Tiffen +Tiffin +Tiffin School London +Tiffiny +Tifft +Tiflis +Tifters +Tifton +Tig Fold +Tiger +Tiger Lily +Tigerwoods +Tigris +Tigua +Tihonet +Tiki +Tilba +Tilberg +Tilbrook +Tilburg +Tilburstow Hill +Tilbury +Tilche +Tildean +Tilden +Tilden Gill +Tilden Park +Tildenwood +Tildsley +Tile +Tile Farm +Tile House +Tile Kiln +Tile Line +Tile Lodge +Tilebarn +Tilehouse +Tilehurst +Tilesboro +Tileston +Tiley +Tileyard +Tilford +Tilghams +Tilghman +Tilia +Tilipi +Tilkey +Till +Till Rock +Tillamook +Tillard +Tillary +Tiller +Tillery +Tillets +Tilley +Tillgate +Tillhey +Tillie +Tillie Lewis +Tillingbourne +Tillingdown +Tillingham +Tillinghast +Tillman +Tilloch +Tillock +Tillotson +Tillou +Tillson +Tilman +Tilmore +Tilney +Tilrose +Tilsden +Tilsen +Tilsmore +Tilson +Tilston +Tilstone +Tilsworth +Tilt +Tilthams Corner +Tilting Rock +Tilton +Tilton Valley +Tiltwood +Timahoe +Timarand +Timari +Timarron Cove +Timaru +Timbalier +Timbarra +Timber +Timber Acres +Timber Branch +Timber Brook +Timber Cove +Timber Creek +Timber Crest +Timber Edge +Timber Forest +Timber Glen +Timber Hill +Timber Hollow +Timber Lake +Timber Ledge +Timber Line +Timber Lodge +Timber Loop +Timber Mill +Timber Oak +Timber Oaks +Timber Point +Timber Pond +Timber Ridge +Timber Rock +Timber Springs +Timber Trail +Timber Trails +Timber Trl +Timber View +Timber Woods +Timberbrook +Timbercove +Timbercreek +Timbercrest +Timbercrest Farm +Timbercroft +Timberdale +Timberdene +Timberedge +Timbergate +Timberglade +Timberhead +Timberhill +Timberidge +Timberlake +Timberlake Farm +Timberland +Timberlane +Timberlea +Timberlee +Timberline +Timberline Ridge +Timberlog +Timberly +Timberneck +Timberock +Timberpine +Timbers Edge +Timbers Pointe +Timbershore +Timberslip +Timbertop +Timbertrails +Timberview +Timberwharf +Timberwood +Timble +Timbrell +Timbrol +Time +Timeless Trail +Timer +Times +Timesweep +Timi +Timke +Timko +Timlott +Timm +Timmies +Timmons +Timms +Timmus +Timmy +Timon +Timor +Timoteo +Timothy +Timothy Branch +Timothy Field +Timperley +Timpson +Timrick +Timrod +Timson +Timsons +Tin Barn +Tin Barn Farm +Tin Can Ranch +Tin Mill +Tina +Tina Lake +Tinakill +Tinana +Tincombe +Tindal +Tindal Spring +Tindal Springs +Tindale +Tindall +Tindall Mews +Tindall Ranch +Tinder +Tindlay +Tindon End +Tine +Tinern +Tingara +Tingdale +Tingha +Tingley +Tingrith +Tingue +Tinker +Tinker Pot +Tinkers +Tinkers Branch +Tinkers Creek +Tinkers Wood +Tinkham +Tinley +Tinley Park +Tinner Hill +Tinnerella +Tinners Hill +Tinnocks +Tinshill +Tinshill Silk Mill +Tinsley +Tinsmith +Tinson +Tinta +Tintagel +Tintagle +Tintells +Tintern +Tintle +Tinto +Tinton +Tinworth +Tiny +Tioga +Tiogawoods +Tiona +Tionesta +Tiot +Tip Pond +Tip Top +Tipi +Tippecanoe +Tippendel +Tippendell +Tipper +Tipperary +Tippesasy +Tippett +Tippin +Tippings +Tipple Hill +Tippling Rock +Tipps Cross +Tippy Cart +Tiptoe +Tipton +Tiptop +Tiptree +Tiptree Hall +Tiptrees +Tire Swing +Tiree +Tiros +Tirrell +Tirso +Tirza +Tisane +Tisbury +Tischer +Tisdale +Tisserand +Titan +Titania +Titchfield +Titchwell +Tite +Tithe +Tithe Barn +Tithe Farm +Tithebarn +Tithebarns +Tithelands +Tithepit Shaw +Titian +Titmus +Titmuss +Titonka +Titsey +Titterington +Titus +Tived +Tiverton +Tivoli +Tiziano +To Upper Park +Toad +Toad Island +Toastmaster +Toat +Tobacco +Tobacco Leaf +Tobacco Ridge +Tobacco Trail +Tobago +Tobermory +Tobey +Tobey Garden +Tobi +Tobiano +Tobias +Tobie +Tobin +Tobin Clark +Tobruck +Tobruk +Toby +Tobys +Tobytown +Tocca +Tocci +Tochini +Tocia +Tockholes +Tocoloma +Tod +Tod William +Todd +Todd Farm +Todd Point +Todd Pond +Toddington +Toddsbury +Toddy +Todman +Todt Hill +Tofflemire +Toft +Tofte +Tofts +Toftshaw +Toftshaw New +Tog +Toggenburg +Togil +Togninali +Togo +Toils End +Toilsome Brook +Toiyabe +Tojon +Tokara +Tokay +Token Forest +Token Valley +Tokeneke +Tokeneke Beach +Tokeneke Ridge +Tokers Green +Tokola +Tokyngton +Tola Ranch +Tolak +Tolamac +Toland +Tolar +Tolas +Tolbert +Tolblin Hill +Tolcarne +Toldi +Toldish Hall +Toledo +Tolenas +Toler +Toley +Tolgate +Tolhurst +Tolkien +Tolkigate +Toll +Toll Bar +Toll Gate +Toll House +Toll House Gulch +Tolland +Tollcross +Tollemache +Toller +Tollers +Tollesbury +Tolleshunt Darcy +Tollet +Tollgate +Tollington +Tollison +Tolliver +Tollund +Tollview +Tollwood +Tolman +Tolmer +Tolmers +Tolpits +Tolpuddle +Tolsford +Tolson +Tolstoy +Tolt +Tolt Hill +Tolteca +Toluca +Tolverne +Tolworth +Tolworth Park +Tom +Tom Davis +Tom Day +Tom Fowler +Tom Fox +Tom Hunter +Tom Jenkinson +Tom Lee +Tom Paine +Tom Point Apts +Tom Shepley +Tom Thumb +Tom Tit +Tom Tits +Toma +Tomac +Tomah +Tomahawk +Tomales +Tomales Petaluma +Tomalyn Hill +Tomaselli +Tomasetti +Tomasezwski +Tomasini Canyon +Tomaso +Tomato Patch +Tomawadee +Tomblin Hill +Tomcat +Tomcroft +Tomes +Tomi Lea +Tomislav +Tomki +Tomkins +Tomkyns +Tomlee +Tomlin +Tomlins +Tomlinson +Tomlyn +Tommar +Tommaso +Tommuck +Tommy +Tommy Middleton +Tommydon +Tommye +Tomney +Tompion +Tompkins +Tompkins Point +Tompson +Tomrick +Toms +Toms Hill +Toms Lake +Toms Point +Toms Trail +Tomswood +Ton +Tonacliff +Tonalea +Tonawanda +Tonbridge +Tondan +Tone +Tonelee +Tonella +Toner +Toney +Tong +Tong Head +Tonga +Tonge +Tonge Fold +Tonge Moor +Tonge Old +Tonge Park +Tongham +Tongres +Tongswood +Tongue +Toni +Toni Marie +Tonia +Tonica +Tonino +Tonitto +Tonka +Tonka Bay +Tonka Downs +Tonka View +Tonkaha +Tonkawa +Tonkaway +Tonkawood +Tonkin +Tonking +Tonman +Tonme +Tonne +Tonnelle +Tono +Tonopah +Tonquil +Tonquin +Tonset +Tonsley +Tonsor +Tonstall +Tontaquon +Tonti +Tontine +Tontoquon +Tonwell Bypass +Tony +Tonya +Toocooya +Toohey +Took +Tooker +Toolan +Toolang +Toole +Tooley +Toomes +Toomevara +Toomey +Toongabbie +Toongarah +Toorack +Toorah +Toorak +Tooronga +Toot Hill +Tootal +Tooth +Toothill +Tooting Bec +Tooting High +Top +Top Dartford +Top Gallant +Top Hill +Top O Hill +Top O the Ridge +Top Ridge +Top Sergeant +Top of the Hill +Topaint +Topalian +Topanga +Topar +Topawa +Topaz +Topbranch +Topcastle +Topcliffe +Topeg +Topeka +Topfield +Topham +Tophet +Topic +Topinera +Topland +Toplands +Topley +Topliff +Toplocks Glade +Topnot +Topor +Topp +Toppan +Topper +Toppesfield +Topping +Topping Fold +Topping Hill +Toppy +Topsail +Topsfield +Topsham +Topton +Topview +Tor +Tor Bryan +Torac +Torah +Torbay +Torberry +Torbert +Torbush +Torch +Torchlight +Torchwood +Torcross +Toreador +Torello +Tori +Tories +Torington +Torino +Torkington +Torlai +Torland +Tormead +Tormey +Tormount +Tornaros +Torne Mountain +Tornell +Torney +Tornillo +Toro +Torokina +Toronita +Toronto +Torpie +Torquay +Torque +Torquil +Torr +Torr Top +Torrance +Torrano +Torre +Torre Ramel +Torrence +Torrens +Torrent +Torrenzia +Torreon +Torres +Torrey +Torrey Pine +Torrey Pines +Torrey Side +Torreya +Torreys +Torri +Torriano +Torrice +Torrid +Torridon +Torrington +Torro +Torrs +Torrvale +Torry +Torry Hill +Tortoise +Tortola +Tortorice +Tortuga +Torumba +Torver +Torwood +Torworth +Tory +Tory Fort +Tory Hill +Tory Hole +Tory Treasure +Tosca +Toscano +Tosch +Toste +Tot +Tot Hill +Totem +Totem Pole +Totford +Totfs +Tothill +Totman +Totnes +Totowa +Totten +Totten Pond +Tottenham +Tottenham Court +Totterdell +Totterdown +Totteridge +Totters +Tottington +Totton +Totts +Touch +Touchard +Touhy +Touissant +Toulay Creek +Toulmin +Toulon +Toulone +Toulouse +Toulson +Toupi +Touquet +Touraine +Touraine Parc +Touriga +Tourmaline +Tournament +Tournay +Tourne +Tourney +Touro +Tourraine +Tours +Toussie +Toussin +Toutley +Tovah +Tovar +Tove +Tovey +Tovil +Tovil Green +Tovito +Tow Path +Towanda +Towaway +Towcester +Towceter +Tower +Tower Bank +Tower Bridge +Tower Brook +Tower Center +Tower Court +Tower Farm +Tower Gardens +Tower Hamlets +Tower Heights +Tower Hill +Tower Manor +Tower Mill +Tower Oak +Tower Oaks +Tower Park +Tower Point +Tower Pond +Tower View +Tower Woods +Towerbridge +Towerfield +Towerhill +Toweridge +Towerridge +Towers +Towers Crescent +Towersey +Towerview +Towfield +Towhee +Towl Gate +Towle +Towler +Towlerton +Towlston +Town +Town Acres +Town Barn +Town Center +Town Centre +Town Club +Town Cocks +Town Crest +Town Dock +Town Dump +Town End +Town Farm +Town Field +Town Forest +Town Gate +Town Gate Church +Town Green +Town Hall +Town Hall Approach +Town Hill +Town House +Town Lake +Town Line +Town Littleworth +Town Lyne +Town Mead +Town Meeting +Town Neck +Town Path +Town Pier +Town Point +Town Square +Town Tree +Town Wells +Towncenter +Towncourt +Towncroft +Towndale +Towne +Towne Centre +Towne Commons +Towne Crest +Towne Fire +Townehome +Towner +Townes +Townfield +Towngate Chapel +Towngate Woodhall +Townhall +Townhouse +Townley +Townline +Townly +Townmead +Towns +Towns Edge +Townscliffe +Townsend +Townsend Farm +Townsend Harbor +Townsend Hill +Townsfield +Townshend +Township +Townside +Townsley +Townson +Townsquare +Townsvalley +Townsville +Townview +Townwood +Towpath +Towradgi +Towse +Towsen +Towsend +Towton +Towyn +Toxteth +Toy +Toyama +Toye +Toyer +Toynbee +Toyon +Toyon Fire +Toyonita +Toysome +Tozer +Tozier +Trabing +Trabjo +Trace +Tracel +Tracer +Tracey +Tracey Jean +Traceys Landing +Traci +Tracie +Track +Traction +Tracton +Tractor +Tracy +Tracy Ann +Tracy Lyn +Tracy Schar +Tracy Wood +Tracywood +Tradan +Trade +Trade Center +Trade West +Trade Wind +Trade Zone +Trader +Traders +Tradescant +Tradewind +Tradewinds +Trading +Trading Post +Tradition +Traditions +Traeger +Trafalgar +Trafalger +Traffic +Trafford +Trafford Bank +Trafford Park +Trafford Wharf +Traford +Trafton +Tragan +Trager +Tragia +Trahan +Trahern +Trahlee +Trail +Trail Edge +Trail Haven +Trail Ride +Trail Ridge +Trail Run +Trail View +Trail West +Trailing Ivy +Trailing Ridge +Traill +Trailridge +Trails +Trails Edge +Trails End +Trailsend +Trailside +Trailway +Trailwood +Train +Traina +Trainer +Training Field +Trainor +Trajan +Trajanowski +Tralee +Tralfalgar +Tram +Tramanto +Trammel +Trammell +Tramore +Tramway +Trancas +Tranfaglia +Tranford +Tranmere +Tranquil +Tranquility +Trans Am Plaza +Trans Old Bridge +Trans World +Transept +Transfesa +Transhire +Transit +Transmere +Transmitter Access +Transom +Transport +Transporter +Transue +Transvaal +Transverse +Transway +Transworld +Tranter +Tranton +Trap +Trapelo +Trapet +Trapfield +Traphagen +Trapham +Trapp +Trapper +Trappers +Trappers Fire +Trapps +Traprock +Traps +Trapstyle +Trask +Tratman +Traube +Traud +Traughber +Travao +Travelaire +Traveler +Travelers Run +Traveller +Travellers +Travelo +Travers +Traverse +Traverso +Travertine +Travic +Travilah +Travis +Travois +Trawalla +Trawden +Trawl +Trawler +Traxler +Trayer +Trayes +Traymore +Traynor +Treacle +Treacy +Treadaway +Treadcroft +Treadgold +Treadway +Treadwell +Treanor +Treasure +Treasure Island +Treat +Treatment Plant +Treatro +Treatt +Treatts +Treaty +Treaty Elm +Trebartha +Trebble +Trebeck +Trebellan +Trebing +Treble Cove +Trebleclef +Treblers +Trebol +Trebor +Trebovir +Treby +Treck +Tredcroft +Tredegar +Trederwen +Tredgold +Tredown +Tredway +Tredwell +Tree +Tree Estate Mead +Tree Farm +Tree Frog +Tree Hollow +Tree House +Tree Land +Tree Lawn +Tree Line +Tree Side +Tree Top +Tree Tops +Tree View +Treebark +Treebine +Treebrooke +Treebys +Treecot +Treecrest +Treedale +Treedust +Treeflower +Treehaven +Treehouse +Treelands +Treemans +Treen +Trees +Treeside +Treesmill +Treetop +Treetop Hill +Treetops +Treeview +Treewood +Trefgarne +Trefoil +Trefrey +Trefry +Trefton +Treg +Tregaron +Tregarvon +Tregaskis +Tregelles +Tregenna +Trego +Tregony +Tregothnan +Tregunter +Trehearn +Trehern +Trehurst +Treichel +Trelany +Trelawn +Trelawney +Trelawny +Trelleck +Trellis +Treloar +Tremain +Tremaine +Tremari +Tremayne +Trembath +Tremblay +Trembley +Trembling +Tremere +Tremezzo +Tremlett +Tremley Point +Tremont +Tremwood +Trenant +Trench +Trenchard +Trenches +Trenchold +Trend +Trenders +Trenery +Trenham +Trenholm +Trenholme +Trenic +Treno +Trenor +Trenouth +Trensch +Trent +Trentbridge +Trentdale +Trentham +Trentino +Trento +Trenton +Trentt +Treport +Treptow +Trequassin +Tres Palmas +Tres Pinos +Tres Ranchos +Tresalam +Tresch +Tresco +Trescoe +Trescony +Trescott +Tresham +Treshfield +Tresilian +Tresler +Treslow Glen +Tress +Tressel Pass +Tresser +Tressider +Trestle +Trestle Glen +Treswell +Tretbaugh +Trethaway +Treton Woods +Trettle +Trevale +Trevalley +Trevanion +Trevanna +Treve +Trevellyan +Trevelyan +Trevena +Trevenar +Treveris +Trevethan +Trevett +Trevigne +Treviit +Treville +Trevilyan +Trevino +Treviso +Trevithick +Trevone +Trevor +Trevor House +Trevor Toms +Trevore +Trevorton +Trevose +Trewarden +Trewenna +Trewilga +Trewint +Treworthy +Trewsbury +Trewyn +Trexler +Trey +Treyburn +Treywood +Tri +Triabunna +Triad +Triadelphia +Triadelphia Lake +Triadelphia Mill +Triangle +Triathlon +Tribonian +Triborough +Tribou +Tribunal +Tribune +Tributary +Tributary Point +Tribute +Tricia +Trickett +Tricorne +Tricross +Trident +Trieste +Trifiro +Trifone +Trig +Trigder +Trigg +Trigger +Triggs +Triglone +Trigon +Triland +Trilane +Trilby +Triller +Trilliam Run +Trillium +Trillium House +Trilliun +Trillo +Trillum +Trim +Trimble +Trimbleford +Trimfield +Trimingham +Trimley +Trimngham +Trimount +Trimountain +Trin +Trina +Trinculo +Trinder +Trindles +Tring +Trinidad +Trinity +Trinity Church +Trinity Gate +Trinity Hills +Trinity Park +Trinity River +Trinity University +Trinkling Creek +Trio +Triolo +Trip +Triphammer +Triple C Ranch +Triple Crown +Triple Feather +Triple Oak +Triple Oaks Farm +Triple Ridge +Tripleseven +Triplett +Tripod +Tripoli +Tripp +Trippier +Tripplet +Tripton +Trish +Trista +Tristan +Tristania +Tristian +Tristram +Triten +Triton +Triton Beach +Tritton +Triumph +Triumvera +Trivet +Trivetts +Trixie +Troast +Trocha +Trodds +Trofin +Troilus +Trojack +Trojan +Troll +Trolley Line +Trombas +Trombetta +Trombley +Trommel +Tromp +Troon +Troopers +Troost +Tropaz +Trophy +Tropical +Troscher +Troseth +Trosley +Trossach +Trossack +Trost +Trothy +Trotsworth +Trott +Trotta +Trotter +Trotter Farm N +Trotters +Trotters Glen +Trotters Ridge +Trottier +Trotting +Trotting Course +Trotting Horse +Trotting Park +Trotton +Trotts +Troubador +Trouble +Troudy +Troughback +Troughton +Troughwell +Troupe +Trousdale +Trout +Trout Brook +Trout Farm +Trout Gulch +Trout Park +Trout Pond +Trout Valley +Trout Wine +Troutbeck +Trouthall +Troutlilly +Troutman +Trouton +Troutville +Trouve +Trouville +Trovillion +Trowbridge +Trowes +Trowley Hill +Trowlock +Trowridge +Trowtree +Trowville +Troxel +Troy +Troy Creek +Troy Glen +Troy Hill +Troy Hills +Troy Marquette +Troy Meadow +Troydale +Troyer +Trubador +Trubody +Trubridge +Truchan +Truck +Truck House +Truckee +Truckee River +Trucklemans +Trude +Trudeau +Trudel +Trudy +True +Trueloves +Truelson +Trueman +Trueman Point +Truemans +Trues +Truesdale +Truett +Truffle +Truitt +Truitt Farm +Trull +Trull Brook +Trulock +Truman +Truman Manor +Trumble +Trumbull +Trumfield +Trump +Trumper +Trumpet +Trumpeter +Trumpeter Swan +Trumpets Hill +Trumpington +Trumps Green +Trumps Hill +Trumps Mill +Trundle +Trundleys +Trunfio +Trunk +Trunley Heath +Trunnel +Truro +Truro Parish +Truscott +Truslove +Truss Hill +Trusses +Trussley +Trust +Truxel +Truxton +Truxton Park +Truxtun +Tryall +Trycewell +Trym +Tryna +Tryner +Tryon +Trysting +Tschiffely Mill +Tschiffely Sq +Tschiffely Square +Tsirelas +Tsushima +Tuabilli +Tualco +Tualco Loop +Tuam +Tuart Park +Tubac +Tubbenden +Tubbs +Tubby +Tubeway +Tubwell +Tubwreck +Tucabia +Tucana +Tuck +Tuckahoe +Tuckaway +Tucker +Tucker Farm +Tuckerman +Tuckerman Heights +Tuckerman Hill +Tuckerton +Tucks +Tucks Point +Tuckwell +Tucson +Tudar +Tuddington +Tudeley +Tudor +Tudor Hall +Tudway +Tudwick +Tuella +Tuemmler +Tuenge +Tuer +Tuers +Tuesley +Tuey +Tuffley +Tuffy +Tufnail +Tuft +Tufter +Tufton +Tufts +Tugboat +Tugela +Tuggerah +Tuggies +Tuggle +Tuggles +Tugwell +Tukara +Tukwila +Tukwila International +Tula +Tulagi +Tulane +Tularcitos +Tulare +Tulare Hill +Tule +Tule Goose +Tule Lake +Tule Tree +Tulich +Tulip +Tulip Grove +Tulip Poplar +Tulip Tree +Tulip West +Tulipan +Tuliptree +Tulipwood +Tull +Tullamore +Tullamore Estates +Tullaroan +Tuller +Tullet +Tullett +Tulley +Tullibee +Tullimbar +Tulloch +Tulloh +Tulloona +Tulls +Tully +Tullymore +Tulocay +Tulong +Tulsa +Tulsemere +Tulworth +Tuma +Tumber +Tumble Weed +Tumblefield +Tumbler +Tumblers +Tumbleweed +Tumblewood +Tumbling Brook +Tumburra +Tumelty +Tumut +Tumwater +Tunbridge +Tunbridge Wells +Tunbury +Tuncoee +Tuncombe +Tuncurry +Tunfield +Tungarra +Tungston +Tunic +Tunis +Tunisia +Tunison +Tunitas +Tunitas Creek +Tunitas Ranch +Tunks +Tunlaw +Tunley +Tunmarsh +Tunnel +Tunnel Entrance +Tunnel Exit +Tunnell +Tunner +Tunnicliffe +Tuns +Tunshill +Tunstall +Tunstead +Tunworth +Tunzi +Tuohy +Tuolumne +Tupa +Tupelo +Tupia +Tupolo +Tupper +Tupperware +Tuppy +Tupwood +Turban +Turbary +Turberville +Turbine +Turbo +Turbott +Turbridge +Turell +Turella +Tures +Turf +Turf Hill +Turf Lea +Turf Park +Turf Pit +Turf Valley +Turfhill +Turfhouse +Turfland +Turfmeadow +Turfton +Turfway +Turgis +Turgoen +Turicum +Turimetta +Turin +Turing +Turino +Turk +Turk Hollow +Turk Murphy +Turkey +Turkey Cock +Turkey Farm +Turkey Foot +Turkey Hill +Turkey Point +Turkey Ridge +Turkey Run +Turkey Shore +Turkey Track +Turks +Turks Cap Lily +Turks Head +Turle +Turley +Turlington +Turlock +Turmaine +Turn +Turn Left +Turn Loop +Turn Moss +Turn Pike +Turnabout +Turnagain +Turnage +Turnberry +Turnbridge +Turnbrook +Turnbuckle +Turnbull +Turnbury +Turncrest +Turncroft +Turnden +Turner +Turner Bridge +Turner Farm +Turner Gulch +Turner Hill +Turner Joy +Turner Ridge +Turners +Turners Green +Turners Hill +Turners Lake +Turners Mill +Turnesa +Turneur +Turneville +Turney +Turnfield +Turnfurlong +Turnham +Turnhouse +Turning Leaf +Turning Mill +Turnip Hill +Turnlee +Turnley +Turnmill +Turnoak +Turnock +Turnpike +Turnpike Service +Turnpin +Turnstone +Turnsworth +Turnure +Turnwood +Turold +Turon +Tuross +Turp +Turpentine +Turpin +Turpington +Turquand +Turquoise +Turra +Turramurra +Turrell +Turrella +Turret +Turret Hall +Turrett +Turriell Bay +Turriell Point +Turrin +Turrini +Turstan +Turstin +Turtle +Turtle Cove +Turtle Creek +Turtle Dove +Turtle Lake +Turtle Pond +Turtle Rock +Turtle Valley +Turtlecreek +Turtledove +Turtlerock +Turton +Turuga +Turvan +Turves +Turvey +Turville +Turvin +Tuscala +Tuscaloosa +Tuscan +Tuscan View +Tuscano +Tuscany +Tuscarawas +Tuscarora +Tuscola +Tusculum +Tushmore +Tusk +Tuskar +Tuskeegee +Tusket River +Tusmore +Tussel +Tussell +Tussock Brook +Tustin +Tutbury +Tuthill +Tutt +Tuttle +Tutus +Tuve +Tuxedo +Tuxford +Tuxhorn +Twain +Twain Harte +Twaits +Tweed +Tweed Mouth +Tweedale +Tweeddale +Tweedle Hill +Tweedmouth +Tweedy +Twelfth +Twelth +Twelve Acres +Twelve Hills +Twelve Oak Hill +Twelve Oaks +Twelve Oaks Center +Twelve Oaks Ctr +Twelve Yards +Twentieth +Twentyeighth +Twentyninth +Twentysecond +Twentyseventh +Twentythird +Tweseldown +Twickenham +Twickenham Arragon +Twickenham King +Twickenham King +Twig +Twiggy +Twigworth +Twilight +Twilley +Twin +Twin Beach +Twin Bluff +Twin Branches +Twin Bridge +Twin Bridges +Twin Brook +Twin Brooks +Twin Buttes +Twin Cedar +Twin Circle +Twin Cities +Twin Creek +Twin Creeks +Twin Dolphin +Twin Elms +Twin Falls +Twin Fawn +Twin Field +Twin Forks +Twin Gardens +Twin Harbor +Twin Haven +Twin Hills +Twin Holly +Twin House Ranch +Twin Knolls +Twin Lake +Twin Lakes +Twin Lawns +Twin Light +Twin Maple +Twin Meadow +Twin Mill +Twin Oak +Twin Oaks +Twin Palms +Twin Park +Twin Peaks +Twin Pine +Twin Pines +Twin Pond +Twin Ponds +Twin Rail +Twin Ridge +Twin Rivers +Twin Silos +Twin Sisters +Twin Spring +Twin Springs +Twin Valley +Twin View +Twinboro +Twinbrook +Twinbrook Run +Twinches +Twine +Twineham +Twingleton +Twining +Twining Brook +Twinlake +Twinlakes +Twinn +Twinnies +Twinview +Twirl Hill +Twisden +Twiss +Twiss Green +Twisse +Twist +Twisted Oak +Twisting +Twisting Tree +Twitchell +Twitchells +Twitten +Twitton +Two Bar +Two Bays +Two Bridges +Two Brooks +Two Brothers +Two Dells +Two Farm +Two Harbors +Two Mile Ash +Two Mills +Two North LaSalle +Two Oaks +Two Paths +Two Penny +Two Rivers +Two Rock +Two Rod +Two Sisters +Two Trees +Two Waters +Twombly +Twsh +Twycross +Twydall +Twyford +Twyford Abbey +Twyford Bury +Twyla +Twyman +Twynam +Twynersh +Twynham +Twyzel +Ty +Tyacke +Tyagarah +Tyalgum +Tyalla +Tyas +Tybalt +Tybenham +Tyberry +Tyburn +Tycannah +Tychbourne +Tyco +Tydcombe +Tydden +Tydeman +Tydesley +Tydings +Tye Common +Tye Green +Tye River +Tyee +Tyers +Tyersal +Tygart +Tygert +Tygh +Tyke +Tykeswater +Tyland +Tyldesley +Tyldesley Old +Tylecroft +Tylee +Tylehurst +Tyler +Tyler Creek +Tyler Island +Tyler Island Bridge +Tyler Point +Tyler Prentice +Tylers +Tylers Green +Tylers Hill +Tylney +Tylneys +Tymm +Tynan +Tyndale +Tyndales +Tyndall +Tyndrum +Tyne +Tynebourne +Tynedale +Tyneham +Tynemouth +Tyner +Tyneside +Tynewick +Tyng +Tyngsboro +Tyngsborough +Tynis +Tynsdale +Tynwald +Tyosa +Typhoon +Tyr +Tyram +Tyrconnel +Tyre +Tyrell +Tyrella +Tyrellan +Tyrells +Tyrnbury +Tyrol +Tyroler +Tyron +Tyrone +Tyrrel +Tyrrell +Tyrwhitt +Tysea +Tysen +Tysens +Tyska +Tysoe +Tyson +Tysons +Tyspring +Tyssen +Tythe +Tytherington +Tytherington Park +Tytherton +Tyzack +Tzabaco Creek +Tzoumar +U Fernwood +UMBC +US Geological Survey +USS Amesbury +Uamvar +Uckfield +Udalia +Udall +Udayakavi +Udell +Udimore +Udine +Udney Park +Ueda +Ueland +Uffington +Ufford +Ufton +Uganda +Ugland +Ugo +Uhden +Uhland +Uhlman +Uhrig +Uhuru +Uki +Ukiah +Ukraine +Ulatis +Ulcombe +Uldale +Ulderic +Uline +Ulladulla +Ullard Hall +Ullathorne +Ulleswater +Ulley +Ullian +Ullman +Ulloa +Ullswater +Ulm +Ulmara +Ulmer +Ulmers Farm +Ulmurra +Ulolo +Ulonga +Ulster +Ultimate +Ultimo +Ulting +Ulting Hall +Ulundi +Ulundri +Ulva +Ulverscroft +Ulverston +Ulverstone +Ulwyn +Ulysses +Umbagog +Umbarger +Umbdenstock +Umberston +Umberto +Umberton +Umbria +Umfreville +Umland +Un +Un Pr +Una +Unadilla +Unami +Unara +Unarland +Uncas +Uncas Pond +Uncatena +Uncouth +Undajon +Under +Under Pin Hill +Undercliff +Undercliffe +Underclift +Underdale +Underdown +Underhill +Underhill Park +Underhills +Underlyn +Underne +Underriver House +Undershaw +Underwood +Undestad +Undine +Ungarra +Unicorn +Unicumes +Uniform +Union +Union Bridge +Union Camp +Union Church +Union City +Union Farm +Union Hall +Union Hill +Union Landing +Union Mill +Union Mine +Union Oil Company +Union Park +Union Point +Union Ridge +Union Springs +Union Ter +Union Terrace +Union Valley +Union Village +Uniondale +Unionport +Unionstone +Unique +United +Unity +Unity Park +Unity Pointe +UnivAlhambra +Universal +Universal Plaza +Universe +University +University Av Ser +University Park +University Plaza +University Service +University Svc +Unknown Soldier +Unnamed +Unqua +Unquity +Unstead +Unsworth +Unwick +Unwin +Unwins +Unwins Bridge +Uop North Service +Uop South Service +Upa +Upavon +Upcast +Upcerne +Upchat +Upcrest +Upcroft +Updale +Upenuf +Upfield +Upfold +Uphall +Upham +Upham Park +Uphill +Upland +Upland Court +Upland Farm +Upland Fields +Upland Gardens +Upland Woods +Uplands +Uplands Park +Uplees +Uplook +Upminster +Upney +Upnor +Upp +Upper +Upper Abbey +Upper Accommodation +Upper Afton +Upper Almora +Upper Ames +Upper Anstey +Upper Ardmore +Upper Ashlyns +Upper Attunga +Upper Austin Lodge +Upper Autumn +Upper Bank +Upper Basinghall +Upper Batley +Upper Batley Low +Upper Beach +Upper Belgrave +Upper Berkeley +Upper Bolney +Upper Bourne +Upper Brand Lake +Upper Brandon +Upper Bray +Upper Brentwood +Upper Briar +Upper Bridge +Upper Brighton +Upper Broadmoor +Upper Brockley +Upper Brook +Upper Buford +Upper Bush +Upper Canyon Three +Upper Carr +Upper Carriage +Upper Cavendish +Upper Chapel +Upper Charles +Upper Chestnut +Upper Chobham +Upper Chorlton +Upper Church +Upper Circle +Upper Clapton +Upper Cliff +Upper Clifford +Upper Clubhouse +Upper Colonial +Upper Conran +Upper Court +Upper Cove +Upper Crackney +Upper Croft +Upper Cross +Upper Crown +Upper Cub Run +Upper Culver +Upper Cyrus +Upper Dagnall +Upper Dearborn Park +Upper Denmark +Upper Depew +Upper Dock +Upper Dogwood +Upper Dunstan +Upper East +Upper Edgeborough +Upper Ellen +Upper Elmers End +Upper Elms +Upper Express +Upper Fairfax +Upper Fairfield +Upper Fans +Upper Fant +Upper Farm +Upper Fenn +Upper Ferry +Upper Field +Upper Fig +Upper Fort +Upper Fremont +Upper Gates +Upper George +Upper Gilber +Upper Gladstone +Upper Gordon +Upper Gore +Upper Green +Upper Greenwoods +Upper Greycliffe +Upper Grosvenor +Upper Grotto +Upper Grove +Upper Guildown +Upper Haig +Upper Hale +Upper Halliford +Upper Ham +Upper Hammer +Upper Happy Valley +Upper Haysden +Upper Heath +Upper Helena +Upper Hibernia +Upper High +Upper High Crest +Upper Highland +Upper Hill +Upper Holly Hill +Upper Holt +Upper House +Upper Joclyn +Upper John +Upper Kent +Upper Kirby +Upper Lake +Upper Lakeview +Upper Lattimore +Upper Lea +Upper Lees +Upper Lloyd +Upper Lock +Upper Lodge +Upper Luton +Upper Magazine +Upper Main +Upper Manor +Upper Marlborough +Upper Marsh +Upper Meadow +Upper Medlock +Upper Memory +Upper Minimbah +Upper Monsall +Upper Montagu +Upper Monterey +Upper Moss +Upper Mount +Upper Mount Glen Lake +Upper Mountain +Upper Mulgrave +Upper Neatham +Upper North +Upper North Row +Upper Oak +Upper Oak Flat +Upper Old Park +Upper Overlook +Upper Paddock +Upper Park +Upper Peters Dam +Upper Pindell +Upper Pine +Upper Pitt +Upper Pond +Upper Prospect +Upper Queen +Upper Rainham +Upper Range +Upper Redlands +Upper Redwood +Upper Richmond +Upper Ridge +Upper Ridgeway +Upper Ritie +Upper River +Upper Rodmersham +Upper Roman +Upper Saddle River +Upper Salem Pond +Upper San Antonio +Upper San Vicente +Upper Scenic +Upper School +Upper Service +Upper Sherborne +Upper Sheridan +Upper Shirley +Upper Soldridge +Upper Spit +Upper Spring +Upper Sudden Pond +Upper Sunbury +Upper Tachbrook +Upper Teddington +Upper Terrace +Upper Thames +Upper Tilehouse +Upper Tin Can Ranch +Upper Tooting +Upper Town +Upper Toyon +Upper Trail +Upper Trinity +Upper Union +Upper Vann +Upper Vernon +Upper Verran +Upper Vicarage +Upper Village +Upper Walthamstow +Upper Warren +Upper Washington +Upper West +Upper Weybourne +Upper Wickham +Upper Wield +Upper Wilton +Upper Wimpole +Upper Wortley +Upper Zayante +Upper grove +Upperfield +Upperhill +Uppermill +Uppermont +Upperridge +Upperton +Uppingham +Upplanda +Ups +Upsala +Upsdell +Upshaw +Upshire +Upshot +Upshur +Upson +Upstall +Upton +Upton Court +Upton Hills +Upton Park +Upton Park Arragon +Upton Pyne +Upward +Upwell +Upwey +Upwood +Upwoods +Upwye +Ural +Uralba +Uralla +Urana +Uranium +Uranus +Urban +Urban Club +Urbana +Urbane +Urbanik +Urbanna +Urbano +Urbanowitz +Urby +Urchin +Uren +Uriahs +Uridge +Uridias Ranch +Urlwin +Urma +Urmond +Urmson +Urmston +Urn +Urna +Urquhart +Urrico +Ursa +Ursiline +Ursina +Ursla +Ursula +Ursuline +Urswick +Urunga +Urzi +Usange +Useadoor +Usg +Usher +Usk +Usona +Uss Arizona +Uss Missouri +Uss North Carolina +Uss Tennessee +Utah +Ute +Uteg +Uther +Utica +Utilities +Utility +Utley +Utopia +Utter +Utterby +Uttley +Uttons +Utuardo +Utz +Utzon +Uunet +Uvas +Uvas Park +Uvedale +Uxbridge +Uxbridge Belmont +Uxmore +Uyeda +V Fernwood +VFW +Vaagen +Vaal +Vaca +Vaca Creek +Vaca Valley +Vacation +Vacation Beach +Vacca +Vaccaro +Vachel +Vachel Lindsay +Vaden +Vadnais +Vadnais Center +Vadnais Lake +Vagabond +Vai +Vail +Vail Ridge +Vaile +Vailetti +Vaillancourt +Vaillant +Vaille +Vaillencourt +Vailwood +Val +Val Aosta +Val Gardena +Val Lee +Val McKilmer +Val Page +Val Park +Val Varaita +Val Verde +Val Vista +Valaire +Valais +Valance +Valarie +Valbusa +Valcartier +Valcour +Valda +Valdale +Valdalia +Valdeflores +Valdemar +Valdene +Valders +Valdes +Valdez +Valdora +Valdosta +Vale +Vale Crest +Vale Farm +Vale House +Vale Park +Vale Spring +Vale Top +Vale View +Vale Wood +Valebridge +Valebrook +Valediction +Valemont +Valence +Valence Wood +Valencia +Valencia School +Valenciennes +Valensin +Valensin Ranch +Valente +Valentia +Valentina +Valentine +Valentine Creek +Valentine Crest +Valentines +Valentino +Valento +Valenza +Valeowen +Valera +Valerga +Valeria +Valerian +Valeriana +Valerie +Valero +Valery +Vales +Valeswood +Valetta +Valette +Valeview +Valevue +Valewood +Valhalla +Valiant +Valimar +Valinda +Valis +Valita +Valko +Valkyrie +Valla +Valla Vista +Vallacher +Vallance +Vallar +Vallaro +Vallco +Valle +Valle Ducale +Valle Pacifico +Valle Verde +Valle Vista +Vallecito +Vallecitos +Vallejo +Vallemar +Vallentin +Vallerand +Vallery +Valles +Valleton +Valletts +Valley +Valley Beach +Valley Bend +Valley Brook +Valley Center +Valley Circle +Valley Country +Valley Creek +Valley Cresent Rodger +Valley Cresent Valley +Valley Crest +Valley Curve +Valley End +Valley Fair +Valley Ford +Valley Ford Estero +Valley Forge +Valley Glen +Valley Green +Valley Greene +Valley Greens +Valley Heights +Valley Hi +Valley High +Valley Hill +Valley House +Valley Lake +Valley Lakes +Valley Lark +Valley Lo +Valley New +Valley Oak +Valley Oaks +Valley Park +Valley Pines +Valley Point +Valley Quail +Valley Ridge +Valley Run +Valley Spring +Valley Square +Valley Trails +Valley Tree +Valley Vale +Valley View +Valley View Tram +Valley Vista +Valley West +Valley Wood +Valley of the Moon +Valleybrook +Valleycrest +Valleyfield +Valleyhill +Valleyoak +Valleyscent +Valleyside +Valleystone +Valleystream +Valleytrail +Valleyview +Valleyvista +Valleywood +Valliere +Valliers Wood +Valline +Vallingbe +Valliria +Valma +Valmar +Valmay +Valmere +Valmont +Valmonte +Valmor +Valmora +Valmy +Valnay +Valognes +Valomen +Valon +Valonia +Valor +Valorie +Valory +Valota +Valparaiso +Valpey Park +Valpico +Valpy +Valroy +Vals +Valverde +Valyana +Valyn +Vambery +Van +Van Acker +Van Allen +Van Alstine +Van Arsdale +Van Auken +Van Beal +Van Beuren +Van Binsberger +Van Blarcom +Van Blarcoms +Van Blitz +Van Brackle +Van Brady +Van Breeman +Van Brunt +Van Buren +Van Buskirk +Van Bussum +Van Cedar +Van Cleaf +Van Cleave +Van Cleef +Van Cleep +Van Cleve +Van Cliff +Van Cortlandt +Van Cortlandt Park +Van Cott +Van Dam +Van Damin +Van Damme +Van De Graff +Van Delft +Van Der Meulen +Van Dervin +Van Dieman +Van Dine +Van Doren +Van Dorn +Van Duren +Van Dusen +Van Duyne +Van Duzer +Van Dyck +Van Dyke +Van Emburgh +Van Emmon +Van Etten +Van Exel +Van Fleet +Van Gemert +Van Gogh +Van Greenby +Van Guilder +Van Halen +Van Hee +Van Hoesen +Van Horn +Van Horne +Van Hounten +Van Houten +Van Hoven +Van Keuran +Van Keuren +Van Kirk +Van Kleeck +Van Liew +Van Loan +Van Loon +Van Maren +Van Meter +Van Moore +Van Mourik +Van Mulen +Van Name +Van Ness +Van Nest +Van Norden +Van Nostrand +Van Olst +Van Orden +Van Over +Van Owen +Van Parker +Van Patten +Van Pelt +Van Reipen +Van Rensselaer +Van Reypen +Van Riper +Van Ripper +Van Roo +Van Roosen +Van Ruiten +Van Sansul +Van Saun +Van Schaik +Van Schoick +Van Sciver +Van Sickle +Van Sicklen +Van Siclen +Van Sinderen +Van Sloun +Van Slyke +Van Syckel +Van Tassel +Van Thompson +Van Tines +Van Tuyl +Van Ufford +Van Valkenburgh +Van Vechten +Van Vleck +Van Vooren +Van Vorst +Van Wagenen +Van Wagner +Van Wagoner +Van Wart +Van White +Van White Memorial +Van Wickle +Van Wicklen +Van Winkle +Van Wormer +Van Wyck +Van Wyk +Van Zandt +Van de Mark +Vana +Vanad +Vanasse +Vanbrugh +Vanburen +Vance +Vancott +Vancouver +Vancroft +Vanda +Vandalia +Vandall +Vandam +Vandan +Vandegrift +Vandelft +Vandelinda +Vandell +Vanden +Vandenberg +Vander Wall +Vanderbeck +Vanderbelt +Vanderbergh +Vanderbie +Vanderbilt +Vanderbilt Motor +Vanderbuilt +Vanderburg +Vanderburgh +Vandercastel +Vanderelinde +Vanderhoof +Vanderhurst +Vanderlyn +Vanderpool +Vanderslice +Vanderveer +Vanderventer +Vandervoot +Vandervork +Vanderwalker +Vanderwater +Vandette +Vandever +Vandewater +Vandien +Vandine +Vandon +Vandor +Vandustrial +Vandy +Vandyke +Vane +Vanech +Vaneck +Vanessa +Vanethel +Vanetta +Vanette +Vange Hill +Vange Park +Vangeli +Vanguard +Vanhorn +Vanilla Grass +Vanity +Vanity Fair +Vankalker +Vankleeck +Vann +Vann Farm +Vann Lake +Vanna +Vannan +Vanness +Vanni +Vannier +Vannoy +Vannucci +Vanoni +Vanore +Vanous +Vanpatten +Vanport +Vans +Vanschoick +Vansittart +Vant +Vant Sant +Vantage +Vantage Hill +Vantage Point +Vantomme +Vantorts +Vantroba +Vanwall +Vanzell +Vapery +Vaquero +Vaqueros +Vara +Varady +Varcoe +Varda +Varda Landing +Varden +Vardens +Vardon +Vardys +Varela +Varennes +Varet +Varey +Varga +Vargas +Varian +Varick +Varick Hill +Varidel +Vark +Varkens Hook +Varley +Varna +Varndell +Varner +Varnes +Varney +Varni +Varnum +Varsity +Vasa +Vasco +Vasco Da Gama +Vasconcellos +Vashi +Vashon +Vasona +Vasona Oaks +Vasona Park +Vasques +Vasquez +Vassal +Vassall +Vassar +Vasser +Vast Rose +Vastern +Vatem +Vatsa +Vattman +Vauban +Vaucluse +Vaudan +Vaudrey +Vaugham +Vaughan +Vaughn +Vaughn Hill +Vaugn +Vault +Vaulx +Vaupell +Vause +Vautrinot +Vaux +Vaux Hall +Vauxhall +Vauxhall Bridge +Vauze +Vavasour +Veale +Veasy +Veazy +Vecchio +Vecino +Vectis +Ved Mandir +Veda +Vedder +Vee +Veeder +Veering +Veery +Vega +Vega del Rio +Vegas +Vehicle +Veirs +Veirs Mill +Veitch +Velado +Velander +Velarde +Velasco +Velasquez +Veldran +Veles +Velilla +Velizy +Vellex +Vellum +Vellutini +Velma +Velmead +Velmere +Velo +Velock +Veltman +Veltri +Velvet +Velvetlake +Velvetleaf +Vena +Venable +Venables +Venada +Venadito +Venado +Venango +Venard +Vendale +Venditto +Vendola +Vendome +Vendora +Venedia +Veneman +Veness +Venetia +Venetian +Venetion +Veneto +Venezia +Venice +Venison +Venmore +Venn +Venna +Venndale +Vennecia +Venner +Vennie +Venns +Vennum +Veno +Venson +Ventana +Venter +Ventnor +Venton +Ventry +Ventura +Ventura Club +Venture +Venturella +Venue +Venus +Venuti +Venwood +Veprek +Ver +Vera +Vera Cruz +Vera Schultz +Veracruz +Veralee +Veranda +Verano +Verba +Verbalee +Verbena +Verbend +Verbickas +Vercelli +Verchild +Verda +Verdala +Verdant +Verdayne +Verde +Verde Mesa +Verde Valle +Verde Vista +Verdemar +Verderers +Verderosa +Verdi +Verdi Vista +Verdict +Verdin +Verdis +Verdite +Verdmont +Verdon +Verdosa +Verdoso +Verducci +Verdugo +Verdun +Verdunn +Verdure +Vere +Verein +Vereker +Verena +Verey +Vergie +Vergil +Vergus +Verhaeghe +Veridan +Verigan +Verissimo +Veritas +Verity +Verjane +Verjuniel +Verkade +Verla +Verletta +Verley +Verleye +Verlie +Vermark +Vermeer +Vermette +Vermillion +Vermilye +Vermilyea +Vermont +Vermulen +Vern +Verna +Verna Hall +Verna Mae +Vernaccia +Vernal +Vernalis +Vernam +Vernazza +Verndale +Verne +Vernel +Verner +Verney +Vernham +Vernice +Vernick +Vernier +Vernon +Vernon Berry +Vernon Hills +Vernon Ridge +Vernon Square +Vernon Valley +Vernon View +Vernon Young +Vernons +Vernoy Hills +Vero +Veroan +Veron +Verona +Verona Ridge +Veronda +Veronica +Verplank +Verplast +Verrada +Verran +Verrazano +Verrell +Verrill +Verry +Versailes +Versailles +Vershire +Vert +Verterans +Vertin +Verulam +Vervain +Vervais +Vervalen +Verveille +Vervoort +Verwood +Vescey +Vesey +Vespa +Vespan +Vesper +Vespucci +Vessey +Vessing +Vest +Vesta +Vestal +Vestals Gap +Vestrella +Vestris +Vestry +Vesuvius +Vetel +Veteran +Veterans +Veterans Foreign War +Veterans Memorial +Veterans Park +Veterinary Medicine +Vetrone +Vets +Vets Mem +Vetta +Vevers +Vevey +Vezina +Via +Via Arline +Via Arriba +Via Baja +Via Cabrera +Via Camino +Via Cima +Via Cordova +Via Dora +Via Escuela +Via Grande +Via Guiseppe +Via Horqueta +Via Madero +Via Madronas +Via Monte +Via Nicolo +Via Palagio +Via Palazzo +Via Paviso +Via Pinada +Via Primavera +Via Puerta +Via Ranchero +Via Real +Via Roma +Via Sereno +Via Tanques +Via de Palmas +Via de Robles +Via del Cerrito +Via del Robles +Via del Sol +Via el Dorado +Via la Luna +Viables +Viader +Viaduct +Vialoux +Vian +Viburnum +Vic Rugh +Vicanna +Vicar +Vicar Park +Vicarage +Vicars +Vicars Hall +Vicci +Vicente +Vicenze +Viceroy +Vichy +Vicino +Vick +Vickerman +Vickers +Vickery +Vickery Park +Vickey +Vicki +Vicki Lynn +Vickrey +Vicksburg +Vicky +Vicliffe +Vicorage +Victor +Victor Beamish +Victor Hugo +Victor Mann +Victor Park +Victoria +Victoria Bridge +Victoria Dock +Victoria Farms +Victoria Grange +Victoria Greens +Victoria Heights +Victoria Hill +Victoria Lakes +Victoria Park +Victoria Service +Victoria Smith +Victorian +Victorian Park +Victorian Woods +Victorine +Victorious Song +Victory +Victory Farms +Victory Memorial +Victory Park +Victrola +Vida +Vidal +Videll +Viden +Videtta +Vidgeon +Vidilini +Vidovich +Vieau +Viebrock +Vieira +Viele +Vienna +Viento +Viera +Vierling +Vierra +Vierra Canyon +Vierra Knolls +Viers +Vietor +View +View Acre +View Haven +View Park +View Point +View Pointe +View Ridge +View South +Viewcrest +Viewfield +Viewhill +Viewing +Viewland +Viewlands +Viewmont +Viewoak +Viewpoint +Viewpointe +Viewridge +Viewside +Viga +Vigalant +Viggory +Vignes +Vignoles +Vigo +Viking +Viking Gardens +Vila +Vila Do Porto +Vilas +Vildmark +Viles +Villa +Villa Carol +Villa Chantecleer +Villa Circle +Villa Glen +Villa Gomez +Villa Manucha +Villa Maria +Villa Nova +Villa Nueva +Villa Oak +Villa Oaks +Villa Park +Villa Ridge +Villa Robleda +Villa Roma +Villa Serena +Villa Verde +Villa Vista +Villa de Anza +Villa del Sol +Villaburne +Villacourt +Villadest +Village +Village Center +Village Circle +Village Creek +Village Crest +Village Crossing +Village East +Village Elm +Village Fountain +Village Gate +Village Green +Village Grove +Village Hall +Village High +Village Hill +Village Lake +Village Line +Village Lower +Village Mart +Village Mews +Village Oak +Village Oaks +Village Park +Village Quarter +Village Run +Village Shops +Village Side +Village Spring +Village Square +Village Tree +Village View +Village Wood +Village Woods +Villagefield +Villagetree +Villamay +Villanova +Villard +Villareal +Villaridge +Villarita +Villars +Villas +Villaume +Villaverde +Villaview +Villawood +Villdale +Villeneuve +Villers +Villier +Villiers +Villus +Vilmar +Vilnius +Vimiera +Vimy +Vimy Ridge +Vin Rose +Vina +Vina Rose +Vinal +Vinald +Vinan +Vinca +Vincam +Vince +Vincennes +Vincent +Vincente +Vincentia +Vincents +Vinci +Vindara +Vindel +Vine +Vine Brook +Vine Cottage +Vine Court +Vine Grove +Vine Haven +Vine Hill +Vine Hill School +Vine Rock +Vinebrook +Vinecrest +Vinedale +Vinedo +Vinegar +Vinegar Hill +Vinehill +Vineland +Vinemaple +Vineridge +Vinery +Vines +Vinesse +Vinewood +Viney +Vineyard +Vineyard Estates +Vineyard Haven +Vineyard Hill +Vineyard Park +Vineyard View +Vineyards +Vining +Vining Point +Vinings +Vinita +Vinlake +Vinnells +Vinnin +Vinson +Vint Hill +Vintage +Vintage Crest +Vintage Farm +Vintage Glen +Vintage Hill +Vintage Knoll +Vintage Oak +Vintage Oaks +Vintage Park +Vintage Valley +Vinters +Vinton +Vinton Pond +Vinyard +Vinyards +Viola +Violante +Violet +Violet Tail +Violete +Violets +Violetta +Violettes Lock +Violetti +Viona +Vipers +Vir Mar +Virdelle +Virden +Vireo +Viret +Virgate +Virgil +Virgilia +Virgin Rock +Virginia +Virginia Center +Virginia Chase +Virginia Denise +Virginia Farm +Virginia Hill +Virginia Hills +Virginia Infantry +Virginia Mallory +Virginia Manor +Virginia Meadows +Virginia Pine +Virginia Randolph +Virginia Ridge +Virginia Willow +Virginius +Virgo +Virgo Spur +Virlona +Virmar +Virtue +Virtue Arcade +Viscaino +Visco +Viscoloid +Viscount +Vision +Visitacion +Visitation +Vismanco +Vispy +Vista +Vista Access +Vista Bella +Vista Brook +Vista Brooke +Vista Clara +Vista Creek +Vista Forest +Vista Gardens +Vista Grand +Vista Grande +Vista Heights +Vista Hill +Vista Knoll +Vista Linda +Vista Mar +Vista Mobile +Vista Montaña +Vista Monte +Vista Nuevo +Vista Oak +Vista Oaks +Vista Point +Vista Pointe +Vista Ridge +Vista Robles +Vista Sierra +Vista Tiburon +Vista Verde +Vista Via +Vista View +Vista del Lago +Vista del Mar +Vista del Monte +Vista del Pajaro +Vista del Plaza +Vista del Rio +Vistaglen +Vistamont +Vistapark +Vistas +Vistaview +Viste +Vistosa +Vistula +Vita +Vital +Vitale +Viva +Vivaldi +Vivan +Vivian +Vivian Adams +Vivien +Vivienda +Vivienne +Viviney +Vivyen +Vixen +Vizcano +Vlaardingen +Vlatko +Vliet +Vm Smith +Voce +Voegeli +Voelker +Vogan +Vogay +Vogel +Vogelsang +Vogt +Vogue +Voice +Voit +Voke +Vokoun +Volans +Volante +Volbrecht +Volendam +Voleyn +Volger +Volid +Volintine Farm +Volk +Volker +Volkers +Volkert +Volkerts +Volkmar +Volkswagon +Vollbecht +Voller +Volley +Vollmer +Vollmerhausen +Volmer +Volney +Volpi +Volt +Volta +Voltaire +Volti +Voltz +Volunteer +Volunteer Park +Volusia +Volver +Volvo +Volwycke +Volz +Vomac +Vomel +Von Esch +Von Brandt +Von Braun +Von Eigen +Von Elm +Von Falconer +Von Glahn +Von Hillern +Von Hoff +Von Huenfeld +Von Karman +Von Sosten +Von Vetchen +Vonda +Vonder +Vonderworth +Vondran +Vondrash +Vonhoff +Vonn +Voorhees +Voorhies +Voorhis +Vorden +Vore +Vorley +Vorlich +Vos +Vosburg +Vose +Vose Hill +Voses +Voshage +Voss +Voss Park +Vought +Voula +Vouvray +Vowels +Vowler +Voyager +Voyageur +Vredenburgh +Vreeland +Vroom +Vrtis +Vue Finchley +Vue de Mar +Vulcan +Vulgilbar +Vultee +Vulture Vista +Vuono +Vyne +Vyner +Vyse +Vytina +W Abbey +W Abingdon +W Access +W Acker +W Acme +W Acorn +W Adams +W Adelaide +W Adobe +W Agatite +W Ainslie +W Airport +W Albany +W Albert +W Albion +W Alden +W Alder +W Aldine +W Alexander +W Alexandria +W Algonquin +W Alhambra +W Alleghany +W Allen +W Allendale +W Allison +W Almond +W Almondbury +W Alpine +W Altgeld +W Amelia +W Amherst +W Amsterdam +W Amy +W Anchor +W Ancona +W Anderson +W Andover +W Andrew +W Ann +W Annandale +W Anne K +W Apache +W Apple Orchard +W Apple Tree +W Appleby +W Appletree +W Aptakisic +W Arbor +W Arch +W Archer +W Arden +W Ardmore +W Argyle +W Arlington +W Arlyd +W Armitage +W Armstrong +W Army Trail +W Arquilla +W Arran +W Arrowhead +W Arsenal +W Arthington +W Arundel +W Ash +W Ashland +W Aspen +W Attrill +W Atwater +W Auburn +W Augusta +W Austin +W Autullo +W Autumn +W Avon +W Ayres +W Bailey +W Baker +W Bald Eagle +W Baldwin +W Balmoral +W Baltimore +W Bancroft +W Banfil +W Barbara +W Barclay +W Barr +W Barry +W Bartlett +W Bauer +W Bay +W Bay Front +W Bay Ninth +W Bay Shore +W Bay View +W Bayard +W Bayberry +W Bayer +W Bayview +W Beach +W Beam +W Beaver Lake +W Beech +W Beech Tree +W Beechcroft +W Beecher +W Belden +W Bell +W Belle +W Belle Plaine +W Belleau +W Bellefonte +W Belleterre +W Belleview +W Belmont +W Belvidere +W Benck +W Bend +W Benfield +W Bennett +W Benson +W Benton +W Berenice +W Berkeley +W Berkley +W Berkshire +W Bernhard +W Berteau +W Berwick +W Berwyn +W Betty +W Bexhill +W Big Horn +W Big Sand +W Bigelow +W Birch +W Birchdale +W Birchwood +W Bittersweet +W Black +W Black Dog +W Blackburn +W Blackhawk +W Blackthorn +W Blair +W Blancke +W Bliss +W Blodgett +W Bloners +W Bloomingdale +W Bluff +W Boeger +W Bogey +W Bond Mill +W Bonner +W Bonnie Brae +W Booker +W Boschome +W Bosi +W Boston Post +W Boundary +W Bourne +W Bowen +W Bowler +W Boyington +W Braddock +W Bradford +W Bradley +W Bradwell +W Braemar +W Braeside +W Brampton +W Branch +W Brantwood +W Brayton +W Breda +W Breen +W Brentwood +W Brewster +W Briarcliff +W Briarwood +W Bridge +W Brighton +W Brightway +W Brittany +W Broad +W Broadland +W Broadview +W Broadway +W Brockman +W Brompton +W Brook +W Brookfield +W Brooks +W Brookside +W Brookwood +W Bross +W Brother +W Brown +W Bruce +W Bruns +W Buell +W Buena +W Buffalo Grove +W Buford +W Bull Ridge +W Burke +W Burlington +W Burnett +W Burning Tree +W Burr Oak +W Burville +W Bush Lake +W Business Center +W Busse +W Butterfield +W Butternut +W Byrne +W Byron +W Cabot +W Cabrini +W Calendar +W California +W Calumet Sag +W Cambridge +W Camden +W Cameron +W Camp McDonald +W Campbell Park +W Campus +W Canterbury +W Carefree +W Carl +W Carmen +W Carol +W Carolyn +W Carondelet +W Carriage +W Carroll +W Carter +W Carvel +W Carver +W Cascade +W Case +W Castle Island +W Catalpa +W Catawba +W Catherine +W Cathy +W Caton +W Cattail +W Cedar +W Cedar Lake +W Cedarview +W Centennial +W Center +W Central +W Centurion +W Century +W Chalk Point +W Chamberlin +W Champion +W Chanay +W Chancellor +W Channon +W Chapin +W Chapman +W Charles +W Charleston +W Charlotte +W Charmaine +W Chartwell +W Chase +W Chatfield +W Chatham +W Checker +W Cherry +W Cherry Blossom +W Cheryl +W Chesapeake Beach +W Chester +W Chestnut +W Chestnut Ridge +W Chicago +W Chilcombe +W Chipwood +W Choctaw +W Christiana +W Christopher +W Church +W Churchill +W Circle +W Circuit +W Clara +W Clarence +W Clarendon +W Clark +W Clearwater +W Cleven +W Cliff +W Cliffside +W Clifton +W Clinton +W Clover +W Coach +W Coady +W Cole +W Coleman +W Colerain +W Colfax +W College +W Colonial +W Colorado +W Columbia +W Columbus +W Colville +W Comfort +W Commercial +W Commonwealth +W Como +W Concord +W Congress +W Connacht +W Connell +W Conrad +W Constance +W Cook +W Cope +W Cornelia +W Cornell +W Cortez +W Cortland +W Cossitt +W Cotswald +W Cottage +W Country +W Country Club +W Country Estates +W Country Valley +W Countryside +W County Line +W Course +W Court +W Courte +W Courtland +W Coventry +W Coyle +W Crainmont +W Crandall +W Creek +W Creek Farms +W Creekside +W Crescent +W Cressett +W Crestline +W Crestview +W Crockett +W Crooked Willow +W Crystal +W Crystal Lake +W Cuba +W Cullerton +W Cullom +W Culver +W Cunningham +W Curtice +W Curtis +W Custer +W Custis +W Cuttriss +W Cuyler +W Dahlgren +W Dakin +W Dallas +W Dalton +W Danbury +W Daniels +W Dante +W Danube +W Dartmoor +W Davis +W Dayton +W Dean +W Dee +W Deer Creek +W Deer Park +W Deerpath +W Deerwood +W Delaney +W Delano +W Delos +W Demont +W Dempster +W Dennis +W Denton +W Des Moines +W Devon +W Devonia +W Dexter +W Diamond +W Diamond Lake +W Dickens +W Diehl +W Diversey +W Division +W Doede +W Dolph +W Domagalla +W Dominion +W Donegal +W Doral +W Dorchester +W Dorothy +W Dosoris +W Doswell +W Douglas +W Dove +W Dover +W Dovington +W Doyle +W Dublin +W Dudley +W Dundee +W Durham +W Durkee +W Eagle Lake +W Eames +W Early +W Eastman +W Easton +W Eastwood +W Easy +W Eaton +W Ebinger +W Echo +W Eddy +W Edgemont +W Edgewater +W Edgewood +W Edmaire +W Edmund +W Edmunds +W Edsall +W Edward +W Eggerding +W Elder +W Eleanor +W Elizabeth +W Elk Grove +W Ellen +W Ellice +W Ellis +W Elm +W Elm Grove +W Elmgrove +W Elms Court +W Elmwood +W Emerson +W End +W Enger +W Engle +W Englewood +W Erhart +W Essex +W Estes +W Ethel +W Euclid +W Eugenia +W Eureka +W Eva +W Evans +W Evelyn +W Everell +W Everett +W Evergreen +W Exchange +W Exeter +W F Kings +W Fabish +W Fairmount +W Fairview +W Fargo +W Farm +W Farmdale +W Farmhill +W Farms +W Farragut +W Farwell +W Fenimore +W Fenview +W Ferdinand +W Fernwood +W Ferris +W Fey +W Fillmore +W Fingerboard +W Firestone +W Firth +W Fischer Farm +W Fish Lake +W Fitch +W Flagler +W Fletcher +W Florence +W Flournoy +W Flynn Creek +W Foch +W Forbes +W Ford Brook +W Ford City +W Forest +W Forest Lawn +W Forest View +W Foresthill +W Forestview +W Fork +W Forster +W Fort Lee +W Fortlee +W Foss +W Foster +W Fox +W Fox Hill +W Fox River +W Foxdale +W Francis +W Franciscan +W Frankfort +W Franklin +W Freeway +W Fremont +W French Lake +W Friends +W Friendship +W Front +W Frontage +W Frontenac +W Frontier +W Frost +W Fry +W Fuller +W Fullerton +W Fulton +W Furnace Branch +W Gabreski +W Gale +W Galena +W Galeview +W Galley +W Garden +W Gardner +W Garfield +W Garrett +W Gartner +W Gaslight Square +W Gate +W Gate Fire +W Gates +W Gateway +W Gaylore +W Geneva +W George +W George Mason +W Geranium +W Gerri +W Gettysburg +W Gibbons +W Giddings +W Gilbert +W Glade +W Gladys +W Glebe +W Glen +W Glen Hill +W Glen Park +W Glenbarr +W Glencoe +W Glendale +W Glengate +W Glenlake +W Glenshire +W Glenwood +W Go Wanda +W Goebel +W Goethe +W Golden Lake +W Goldsborough +W Golf +W Golfview +W Goodenow +W Goodhue +W Goodman +W Goodrich +W Gouverneur +W Government +W Grace +W Gracy +W Graham +W Granada +W Grand +W Grand Lake +W Grand Monde +W Grandview +W Grant +W Grantley +W Granville +W Green +W Green Meadows +W Greenbrook +W Greenfield +W Greenleaf +W Greenway +W Greenwich +W Greenwood +W Gregory +W Grenshaw +W Greystone +W Grochowiak +W Grove +W Grover +W Grovewood +W Gude +W Guinevere +W Gunnison +W Hackberry +W Haddon +W Hadley +W Hafenrichter +W Hafer +W Haft +W Haines +W Halbert +W Haledon +W Haley +W Half Day +W Hamburg +W Hamilton +W Hamline Service +W Hampden +W Hampshire +W Hampton +W Hanover +W Hansel +W Hansen +W Happfield +W Harbor +W Harding +W Harold +W Harriet +W Harris +W Harrison +W Hartford +W Harts +W Hartsburg +W Hartsdale +W Harwood +W Hastings +W Hatch +W Hattendorf +W Haven +W Hawley +W Hawthorne +W Hayes +W Hayford +W Haystack +W Hazel +W Hazelcrest +W Hazelwood +W Heather Glen +W Heatherlea +W Heathwood +W Hedge Apple +W Hegel +W Helen +W Helmar +W Hemphill +W Henderson +W Hendon +W Hendricks +W Henrietta +W Henry +W Heritage Oaks +W Hermione +W Hiawatha +W Hickory +W Hickory Creek +W Hidden Valley +W Higbie +W Higgins +W High +W High Point +W High Ridge +W Highland +W Highridge +W Hill +W Hillcrest +W Hills +W Hillside +W Hilltop +W Hinsdale +W Hintz +W Hircsh +W Hirsch +W Hitchcock +W Hobart +W Hobart Gap +W Hobbie +W Hoff +W Hoffman +W Holbrook +W Holly +W Hollywood +W Holtz +W Homestead +W Honeysuckle +W Hood +W Horn +W Horseshoe +W Hortense +W Howard +W Howdy +W Howell +W Howland +W Hoyt +W Hubbard +W Hudson +W Hummingbird +W Hundley +W Hunt +W Hunter +W Hunters +W Huntington +W Huntington Commons +W Huntley +W Hurlbut +W Huron +W Hutchinson +W Hyacinth +W Hydraulic +W Ibsen +W Idaho +W Illinois +W Imlay +W Imperial +W Indian Trail +W Indiana +W Industrial +W Inman +W Interstate +W Inverness +W Iowa +W Ironstone +W Iroquois +W Irvine +W Irving +W Irving Park +W Isabel +W Isabella +W Isham +W Island +W Islip +W Itasca +W Ivanhoe +W Ivy +W J L Smith +W Jack +W Jackson +W Jacquie +W Jamaica +W James +W Jarlath +W Jarvis +W Jason +W Jasper +W Jean +W Jefferson +W Jeffery +W Jeffrey +W Jefryn +W Jerome +W Jersey +W Jessamine +W Jessup +W Jobev +W Joe Orr +W Joffre +W Johanna +W John +W Johnson +W Joliet +W Jonathon +W Jones +W Joyce +W Julian +W Juliet +W Juneau +W Junior +W Juno +W Kamerling +W Kammes +W Karen +W Karl +W Kathleen +W Kathryn +W Kay +W Kazimour +W Kellogg +W Kelly +W Kelly Ann +W Kenilworth +W Kennedy +W Kennicott +W Kensington +W Kentwood +W Kenwood +W Kilkenny +W Kimber +W King +W King George +W Kingsbridge +W Kingsbury +W Kingsley +W Kingston +W Kinney +W Kinzie +W Kipp +W Kirke +W Kissimee +W Knollwood +W Kohl +W Kraft +W Kruckenburg +W Kurt +W Kuse +W Ladd +W Lady Bar +W Lafayette +W Lafayette Frontage +W Lafond +W Lahon +W Lake +W Lake Cook +W Lake Fairfield +W Lake Harriet +W Lake Manor +W Lake Park +W Lake Sarah +W Lake Shore +W Lakeland +W Lakepoint +W Lakeshore +W Lakeside +W Lakeview +W Lakeway +W Lakewood +W Lambs +W Lancaster +W Lancelot +W Landau +W Langley +W Lanham +W Laquinta +W Laraway +W Larchmont +W Lasalle +W Lauffer +W Laurel +W Lauren +W Laurie +W Lawn +W Lawndale +W Lawrence +W Lawson +W Le Moyne +W Lee +W Leland +W Lenox +W Leon +W Leonora +W Leslie +W Lester +W Lexington +W Liberty +W Lill +W Lincoln +W Linda +W Lindbergh +W Linden +W Line +W Linecrest +W Linwood +W Little Creek +W Little Pond +W Livingston +W Lloyd +W Lockport +W Lockwood +W Locust +W Lode +W Logan +W Lois +W Lone Tree +W Long Grove +W Longfield +W Lookout +W Loop +W Lori +W Lorraine +W Lothair +W Lotta +W Louis +W Louise +W Loves +W Loy +W Loyola +W Lucas +W Lumber +W Lunt +W Luray +W Luther +W Lydia +W Lyndale +W Lynfield +W Lynnhurst +W Lynnwood +W Lyon Farm +W Madison +W Magnolia +W Magoun +W Mahan +W Mahogany +W Main +W Major +W Mallard +W Manchester +W Manhattan +W Manitoba +W Manor +W Mansard +W Maple +W Marathon +W Margaret +W Marie +W Marigold +W Marine +W Marion +W Market +W Marlton +W Marquardt +W Marquette +W Marshall +W Martha +W Martin +W Marwood +W Mary +W Marydale +W Marylou +W Marywood +W Mason +W Masonic View +W Mathews +W Matson +W Matthews +W Maude +W Maxwell +W May +W Mayland Villa +W Maynard +W Maypole +W Mc Boal +W Mc Connell +W Mc Lean +W McCarthy +W McClellan +W McCowan +W McDonald +W McGowanwoods +W McKendree +W McKenzie +W McKinley +W McLean +W McMillin +W Meadow +W Meadow Lake +W Meadowland +W Meadowlark +W Meath +W Medicine Lake +W Medill +W Melody +W Melrose +W Memory +W Menna +W Menomonee +W Merchants +W Meredith +W Merle +W Merrick +W Merrion +W Mertz +W Messner +W Metropole +W Meyer +W Miami +W Michael +W Michigan +W Middle +W Middleton +W Midland +W Midway +W Milburn +W Milestone +W Milford +W Mill +W Miller +W Millers +W Millpage +W Millport +W Millsdale +W Milton +W Mineola +W Miner +W Mineral Pond +W Minerva +W Minnehaha +W Minnesota +W Minooka +W Mississippi +W Moffat +W Mohawk +W Monitor +W Monroe +W Montana +W Monterey +W Montgomery +W Monticello +W Montpelier +W Montreal +W Montrose +W Montvale +W Monument +W Moorefield +W Mooseheart +W Moreland +W Morgan +W Morris +W Morse +W Morthland +W Mound +W Moundsview +W Mount +W Mount Harmony +W Mount Ida +W Mount Pleasant +W Mulberry +W Mulford +W Mulloy +W Mulraney +W Mundhank +W Munsell +W Munster +W Myrick +W Myrtle +W N E Shore +W N Frontage +W Nap +W Naperville +W Natalie +W National +W Natoma +W Navajo +W Nebraska +W Neck +W Nelson +W Neptune +W Nettle Creek +W Nevada +W New +W New Britton +W New Monee +W New York +W Newell +W Newport +W Niagara +W Nicholai +W Nichols +W Niles +W Noel +W Nolcrest +W Norfolk +W Normal +W Norman +W Normandy +W North +W North Boo +W North Peotone +W North Pond +W North Shore +W Northcrest +W Northeast Shore +W Northfield +W Northshore +W Norwalk +W Norwich +W Norwood +W Nut Swamp +W Nyack +W Oak +W Oak Glenn +W Oak Hill +W Oak Spring +W Oakdale +W Oakhill +W Oakleaf +W Oakmont +W Oakridge +W Oakton +W Oakwood +W Oasis Service +W Oceanside +W Official +W Offner +W Offutt +W Ogden +W Ohio +W Old Barrington +W Old Country +W Old Elm +W Old Hideway +W Old Mill +W Old Monee +W Old Rand +W Old Ridge +W Old Shakopee +W Oldis +W Olendorf +W Olive +W Omaha +W Oneida +W Onekema +W Ontario +W Onwentsia +W Orange +W Orchard +W Ordnance +W Orlando +W Orme +W Osceola +W Otto +W Overlook +W Owasso +W Owen +W Ox +W Oxford +W Paddock +W Page +W Palace +W Palatine +W Palisade +W Palisades +W Palmer +W Palos +W Pantigo +W Parallel +W Park +W Park Cir +W Park Hills +W Park Place +W Parker +W Parkside +W Parkview +W Partridge +W Pasadena +W Pasadera +W Pasatiempo +W Passaic +W Patapsco +W Patterson +W Patton +W Pauline +W Pawnee +W Peak +W Pearson +W Pebble +W Peddie +W Peiffer +W Pellinore +W Penfield +W Penn +W Pennsylvania +W Penny +W Pennywood +W Pensacola +W Peotone +W Pepper +W Pershing +W Peterson +W Petronella +W Pheasant Trail +W Phillip +W Phillips +W Pier +W Pierce +W Pierrepont +W Pin Oak +W Pine +W Pine Cone +W Pine Hill +W Pinehurst +W Pinewood +W Pioneer Grove +W Pippin +W Pittner +W Plainfield +W Plattner +W Playfield +W Pleasant +W Pleasant View +W Pleasantview +W Plum +W Plymouth +W Point +W Polk +W Polo Trail +W Pond +W Pope +W Poplar +W Porter +W Portland +W Post +W Potomac +W Potter +W Prairie +W Pratt +W Prescott +W Preserve +W Price +W Pricilla +W Primrose +W Princeton +W Prindiville +W Proesel +W Prospect +W Pryor +W Pulaski +W Pullman +W Putnam +W Quackenbush +W Quail +W Quail Hollow +W Quarry +W Quincy +W R Tracy +W Race +W Railroad +W Railway +W Ramapo +W Rampart +W Rand +W Randolph +W Ranick +W Rascher +W Raven +W Ravine +W Rawson Bridge +W Raymond +W Reader +W Red Cloud +W Red Coat +W Red Oak +W Redcliffe +W Reed +W Regan +W Reiter +W Remington +W Renwick +W Research Center +W Revere +W Rfd Checker +W Rice +W Rich +W Richard +W Richmond +W Richton +W Rickard +W Ridge +W Ridgewood +W River +W River Hills +W River Oaks +W Riverbend +W Riverside +W Riverview +W Riviera +W Roanoke +W Rob +W Roberts +W Roberts Ridge +W Robertson +W Robie +W Robin +W Robinson +W Roblyn +W Rockburn Hill +W Rockland +W Rockview +W Rockwood +W Rome +W Ronald +W Rondeau Lake +W Roosevelt +W Root +W Rosalie +W Roscoe +W Rose +W Rosedale +W Rosehill +W Roselawn +W Roselle +W Rosemary +W Rosemont +W Roseview +W Roslyn Park +W Roxbury +W Royal Oak +W Royal Oaks +W Ruby +W Rumsey +W Running Brook +W Runyon +W Russell +W Ryan +W S Boo +W S Owasso +W Saddle +W Saddle Ridge +W Saddle River +W Saint Charles +W Saint Georges +W Saint Joseph +W Salem +W Salisbury +W Saltaire +W Sanders +W Sandpiper +W Sandstone +W Santa Barbara +W Sapphire +W Sargent +W Savannah +W Schaumburg +W Scheffer +W Schick +W Schiller +W School +W Schorsch +W Schreiber +W Schroeder +W Schubert +W Schultz +W Schweitzer +W Schweizer +W Schwerman +W Scott +W Scranton +W Scudder +W Seacrest +W Seaman +W Seamans Neck +W Seil +W Seipp +W Seminary +W Seminole +W Service +W Severn Ridge +W Shadow Lake +W Shady +W Shady Side +W Shakespeare +W Shannon +W Sharp +W Sheffield +W Shelley +W Shepley +W Sheridan +W Sherman +W Sherren +W Sherrill +W Sherwin +W Shiawassie +W Shirley +W Shore +W Shoreline +W Short +W Shryer +W Sibley +W Side +W Sidney +W Silo +W Silver Lake +W Sioux +W Sioux Vista +W Slade +W Slippery Rock +W Slocum Lake +W Smith +W Snelling +W Snelling Service +W Soffel +W Somerset +W South +W South Orange +W Southmeadow +W Spangler +W Spencer +W Spring +W Spring Lake +W Spring Ridge +W Springhill +W Spruce +W Sprucewood +W Suffield +W Sullivan +W Summer +W Summerdale +W Summerset +W Summerview +W Summit +W Sumner +W Sunnyside +W Sunnyslope +W Sunset +W Superior +W Surrey +W Surrey Park +W Susan +W Sussex +W Swain +W Swann +W Sweetwater +W Sycamore +W Sylvan +W Taft +W Tahoe +W Talcott +W Tam O Shanter +W Tamarack +W Tanglewood +W Tantallon +W Taos +W Tartan +W Taylor +W Techny +W Termunde +W Terrace +W Territorial +W Thacker +W Thayer +W Thomas +W Thome +W Thorn +W Thorndale +W Thornridge +W Thornwood +W Three Oaks +W Thure +W Tilden +W Timber +W Timbercreek +W Timberlake +W Timberlea +W Touhy +W Tow Path +W Tower +W Townline +W Trail +W Traube +W Tremont +W Trinity +W Tryon +W Tulip +W Turner +W Turtle +W Tuscarora +W Twin +W Tyler +W Tyson +W Uhler +W Union +W University +W Upland +W Ute +W Vadnais +W Valentine +W Vallette +W Valley +W Van Buren +W Van Emmon +W Van Ness +W Vermont +W Verret +W Veterans +W Victoria +W View +W Viking +W Villa +W Village +W Vine +W Von +W Wabansia +W Wagner +W Wakefield +W Walker +W Wallen +W Walnut +W Walsh +W Walter +W Walton +W Wapella +W Warburton +W Ward +W Warner +W Warren +W Washburne +W Washington +W Water +W Watkins Mill +W Watling +W Watson +W Wauconda +W Waukena +W Waveland +W Waverly +W Wayman +W Wayzata +W Webster +W Weed +W Wellesley +W Wellington +W Wend +W Wendell +W Werberry +W Wesley +W West +W West End +W Western +W Westlake +W Westminster +W Westmoreland +W Westport +W Westward Ho +W Westwood +W Wheatley +W Wheatstone +W Wheeler +W Whispering Hill +W White +W White Pine +W Whitegate +W Whitehall +W Whiting +W Wiesbrook +W Wilcox +W Wildwood +W Wilhelm +W Willard +W Wille +W William +W Williams +W Willow +W Willow Glen +W Wilshire +W Wilson +W Windhill +W Windmill +W Windsor +W Wing +W Wingedfoot +W Winifred +W Winnemac +W Winnetka +W Winnipeg +W Winona +W Wintergreen +W Wirth +W Wisconsin +W Wishing Well +W Witchwood +W Wolfram +W Wood +W Woodbine +W Woodbridge +W Woodcrest +W Woodland +W Woodlawn +W Woodman +W Woodridge +W Woodriver +W Woods +W Woodside +W Woodstock +W Woodvale +W Wordsworth +W Wrentham +W Wright +W Wrightwood +W Wyandot +W Wyngate +W Wyoming +W York +W Yorkshire +W Youngman +W Zarley +W Zoller +W Zoranne +W de Koven +W de Saible +W del Ray +W la Porte +W. Frontage +W. Main +W. Market +WIld +WIlford +WIllow Ridge +WIngadee +Waackaack +Waalwyk +Waarden +Waarem +Waban +Waban Hill +Wabana +Wabansia +Wabash +Wabasha +Wabasso +Wabba +Wabena +Wabeno +Wabler +Waborne +Wachter +Wachtler +Wachusett +Wachusett View +Wachusetts +Wacker +Wackett +Waco +Wacomor +Waconah +Wacota +Wacouta +Wadaga +Wadbrook +Waddell +Wadding +Waddington +Waddling +Waddon +Waddon Alton +Waddon Court +Waddon New +Waddon Park +Wadds +Wade +Wade Hill +Wadebridge +Wadena +Wades +Wadesmill +Wadeson +Wadeville +Wadham +Wadhams +Wadhurst +Wadkins +Wadlands +Wadlands Brook +Wadleigh +Wadleigh Park +Wadley +Wadsworth +Wadsworth Farm +Waelchli +Waesche +Wafer +Wagamon +Wagann +Wagaraw +Wagda +Wagele +Wagenheim +Wagg +Wagga Wagga +Waggaman +Waggon +Waggoners Wells +Waghorn +Wagman +Wagner +Wagner Farm +Wagner Heights +Wagnon +Wagon +Wagon Trail +Wagon Wheel +Wagoner +Wagontire +Wagonwheel +Wagschall +Wagstaff +Wagstaffe +Wagtail +Wah +Wahkiakum +Wahl +Wahler +Wahlstrom +Wahly +Wahneta +Wahnita +Wahoo +Wahroonga +Waiana +Waibel +Waikiki +Waiku +Wailing +Waima +Waimea +Waincliffe +Waine +Wainewright +Wainfleet +Waingels +Wainman +Wainscot +Wainscott +Wainsford +Wainwright +Waiola +Waiport +Wairoa +Wait +Waitaki +Waitara +Waite +Waite Davies +Waithlands +Waithman +Waitkus +Waitovu +Waitt +Waitville +Waiwera +Wake +Wake Field +Wake Forest +Wake Island +Wake Robin +Wakeby +Wakefield +Wakefield Chapel +Wakefield Park +Wakefield Pond +Wakeford +Wakeham +Wakehams Green +Wakehurst +Wakeland +Wakelee +Wakeley +Wakelin +Wakeling +Wakely +Wakeman +Wakemans Hill +Wakemen +Wakemore +Wakering +Wakerobin +Wakes +Wakestone +Wakeview +Wakley +Wakonade +Wakooka +Wakullah +Walace +Walada +Walavista +Walbern +Walberswick +Walbridge +Walbrook +Walbrooke +Walburgh +Walburton +Walbury +Walbutton +Walcorde +Walcot +Walcott +Wald +Waldeberg +Waldeck +Waldemar +Walden +Walden Clubhouse +Walden Farms +Walden Hill +Walden House +Walden Pond +Walden Shores +Walden Square +Waldenhurst +Waldens +Waldens Park +Waldenshaw +Waldenstrom +Walder +Walderslade +Walderton +Waldheim +Walding Field +Waldingfield +Waldman +Waldo +Waldoln +Waldon +Waldor +Waldorf +Waldorf Forest +Waldorn +Waldran +Waldren +Waldrew Heights +Waldroff Farm +Waldrohe +Waldron +Waldstock +Waldwick +Waleco +Walenore +Walerand +Walerga +Wales +Waley +Walford +Walford Park +Walfrid +Walgrave +Walgrove +Walhaven +Walhonding +Waling +Walizer +Walk +Walk Hill +Walk Mill +Walkabout +Walkden +Walkdens +Walke +Walker +Walker Choice +Walker Farm +Walker Fold +Walker Hill +Walker House +Walker Mill +Walker Ranch +Walker Valley +Walker Woods +Walkern +Walkers +Walkers Brook +Walkers Choice +Walkerton +Walkerville +Walkfield +Walkhill +Walkhurst +Walking +Walking Ridge +Walkingfern +Walkley +Walkom +Walkup +Wall +Wall End +Wall Hall +Wall Hill +Wall Park +Wall Pt. +Walla Walla +Wallabout +Wallace +Wallace Creek +Wallace Cross +Wallace Hill +Wallace Manor +Wallacks +Wallaga +Wallage +Wallami +Wallan +Walland +Wallangra +Wallaringa +Wallaroy +Wallasey +Wallbank +Wallberg +Wallbridge +Wallcote +Walldown +Wallea +Wallen +Wallendbeen +Wallenger +Wallens +Waller +Waller Clough +Wallers +Walley +Walleye +Wallflower +Wallgrave +Wallgrove +Wallhead +Wallhouse +Wallice +Wallin +Walling +Wallingford +Wallington +Wallis +Wallis Ann +Wallis Close Holgate +Wallis Oak +Wallmark +Wallmark Lake +Wallner +Wallness +Walloon +Wallowa +Wallpole +Walls +Wallshaw +Wallum Beach +Wallum Lake +Wallum Pond +Wallumatta +Wallwood +Wallwork +Wally +Walman +Walman Buckley +Walmea +Walmer +Walmers +Walmersley +Walmersley Old +Walmesley +Walmgate +Walmort +Walmsley +Walney +Walney Park +Walnut +Walnut Acres +Walnut Bayou +Walnut Blossom +Walnut Branch +Walnut Creek +Walnut Grove +Walnut Haven +Walnut Heights +Walnut Hill +Walnut Hollow +Walnut Knoll +Walnut Meadows +Walnut Oaks +Walnut Park +Walnut Place +Walnut Pointe +Walnut Ridge +Walnut Tree +Walnut Woods +Walnutgrove +Walnuts +Walnutwood +Walona +Walper +Walpert +Walpole +Walport +Walraven +Walray +Walredon +Walrond +Walsall +Walsby +Walsden +Walsh +Walsham +Walshaw +Walshes +Walsingham +Walsworth +Walt +Walt Whitman +Walter +Walter Adamic +Walter Bowie +Walter Breton +Walter Burke +Walter Faunce +Walter Hagen +Walter Hays +Walter Johnson +Walter Morse +Walter Reed +Walter Scott +Walter Thompson +Walter Wheeler +Walter Zimny +Waltermire +Walters +Walters Green +Walters Port +Walters Woods +Walterton +Waltham +Waltham Cross +Waltham Park +Walther +Walthery +Walti +Waltoffer +Walton +Walton Av +Walton Bridge +Walton Hall +Walton Hall Farm +Walton Heath +Walton New +Walton Oaks +Walton Park +Waltons Hall +Waltonway +Waltrip +Waltrous +Waltuma +Waltz +Waltzer +Walworth +Walwyn +Walz +Wamasquid +Wambold +Wambool +Wamburg +Wamesit +Wamesite +Waminda +Wampanaw +Wampanoag +Wampatuck +Wampum +Wampus +Wamsutta +Wanamaker +Wanaque +Wanari +Wanawong +Wanborough +Wanbourne +Wand +Wanda +Wandabury +Wandana +Wandarri +Wandeen +Wandel +Wandell +Wandella +Wanden +Wander +Wanderer +Wandering +Wandering Creek +Wandering Trail +Wanders +Wandle +Wandobah +Wandon +Wandoo +Wandsworth +Wandsworth Ram +Wanegarden +Waner +Waneta +Wangalla +Wanganella +Wanganui +Wangara +Wangee +Wanger +Wangi +Waninga +Wanlass +Wanless +Wanley +Wanlip +Wannalancit +Wannamaker +Wannas +Wanniti +Wannyl +Wano +Wanoosnoc +Wansbeck +Wanser +Wansers +Wansey +Wanskuck +Wansor +Wanstead +Wansunt +Want +Wantage +Wantagh +Wantagh Park +Wanto Shipyard +Wantz +Wanzer +Wanzia +Wapakoneta +Wapella +Wapello +Wapiti +Waple +Waples Mill +Wapoo +Wapoo Hill +Wappanoca +Wappanocca +Wapping +Wapping Dock +Wappo +Wapseys +Wapshott +War Admiral +War Coppice +War Office +War Wagon +Warabin +Waragal +Warana +Waratah +Warawee +Warbank +Warbeck +Warberry +Warbick +Warbler +Warbler Springs +Warbleton +Warborough +Warboys +Warbreck +Warbrook +Warburton +Warburton Bridge +Warburton Oaks +Warbury +Warby +Warcock +Warcoo +Ward +Ward Park +Ward Witty +Wardang +Warde +Wardell +Warden +Wardia +Wardle +Wardlebrook +Wardley +Wardlow +Wardman +Wardour +Wardrobes +Wardrop +Wards +Wards Chapel +Wards Hill +Wards Hill Minster +Wards Point +Wardsbrook +Wardsworth +Wardwell +Ware +Ware Park +Ware Woods +Wareemba +Wareham +Warehams +Warehill +Warehorne +Warehouse +Warehouse Creek +Warehouse Hill +Warehouse Landing +Wareing +Warejee +Warekila +Wareland +Waremead +Warenne +Warepoint +Wares +Warescot +Warewoods +Warf +Warfield +Warford +Wargrave +Wargrove +Warham +Wari +Warialda +Warilda +Warili +Warin +Warinanco Park +Waring +Warington +Warish Hall +Wark +Warkworth +Warlencourt +Warley +Warley Hall +Warlingham +Warlock +Warlow +Warltersville +Warm +Warm Granite +Warm Springs +Warman +Warmbrook +Warmington +Warminster +Warminster Way Clay +Warmke +Warmlake +Warmley +Warmscombe +Warmsley +Warmsprings +Warmstone +Warmwell +Warmwood +Warndon +Warne +Warneford +Warner +Warner Range +Warner Trail +Warners +Warners End +Warnford +Warnham +Warnham Court +Warninglid +Warnke +Warnock +Warooga +Waroon +Warra +Warraba +Warrabina +Warragal +Warrah +Warramill +Warramunga +Warrana +Warrane +Warrangarree +Warrangi +Warrant Officer Bauer +Warraroon +Warraroong +Warratah +Warrawee +Warrawidgee +Warrawong +Warrego +Warrels +Warren +Warren Ball +Warren Bruce +Warren Farm +Warren Gibson +Warren Hagstrom +Warren House +Warren Lodge +Warren Park +Warren Row +Warren Wood +Warrendene +Warrender +Warrener +Warreners +Warrengate +Warrenne +Warrens +Warrens Shawe +Warrensgreen +Warrenton +Warrenville +Warrick +Warriewood +Warrigal +Warrigo +Warrimoo +Warrina +Warriner +Warring +Warringa +Warringah +Warrington +Warrior +Warrior Brook +Warrior Square +Warriston +Warrumbungle +Warrung +Warsaw +Warslow +Wartburg +Warth +Warth Fold +Warthen +Warton +Waruda +Warumbui +Warumbul +Warung +Warwich +Warwick +Warwick House +Warwick Wold +Warwicks Bench +Warwickshire +Warwilla +Warwillah +Wasatch +Wasche +Wasco +Wascussee +Wasdale +Wasdale Head +Waseca +Waselchuk +Wasena +Wash +Wash Brook +Wash Hollow +Washall +Washburn +Washer +Washford +Washford Farm +Washington +Washington Brice +Washington Grove +Washington Park +Washington Rock +Washington Spring +Washington Square +Washington Valley +Washington Woods +Washingtonian +Washingtonn +Washitay +Washneys +Washo +Washoe +Washta Bay +Washtenaw +Washway +Wasilla +Waskow +Wasno +Wason +Wasp +Wasp Green +Wasp Mill +Wass +Wassall +Wassell +Wasson +Wastdale +Waste +Wastwater +Wasylenko +Watburn +Watch +Watch Hill +Watch Tower +Watchbell +Watchers +Watchet +Watchetts +Watchfield +Watchhouse +Watchmoor +Watchogue +Watchouse +Watchtower +Watchung +Watchung Crest +Watchung Heights +Watchwood +Watcombe +Water +Water Brook +Water Dog Lake +Water Edge +Water Elm +Water End +Water Fall +Water Grant +Water Grove +Water Hall +Water Lily +Water Locust +Water Mill +Water Oak +Water Oak Point +Water Pointe +Water Reserve +Water Ridge +Water Row +Water Tank +Water Tower +Water View +Water Works +Waterbank +Waterbeach +Waterberry +Waterbrook +Waterbury +Waterbury Heights +Watercourse +Watercress +Watercroft +Watercure +Waterdale +Waterdell +Waterden +Waterditch +Waterdock +Waterdown +Wateredge +Wateree +Waterend +Waterfall +Waterfall Glen +Waterfield +Waterflower +Waterfold +Waterfoot +Waterford +Waterfowl +Waterfront +Watergate +Watergate Embleton +Watergum +Waterhall +Waterham +Waterhaven +Waterhill +Waterhouse +Wateridge +Wateringbury +Waterlands +Waterlily +Waterline +Waterloo +Waterlot +Waterlow +Waterman +Watermans +Watermead +Watermeadow +Watermeetings +Watermill +Waterous +Waterpark +Waterperry +Waters +Waters Creek +Waters Discovery +Waters Edge +Waters Edge Landing +Waters Hollow +Waters Landing +Waters Meeting +Waters Nook +Waters Park +Waters Point +Watersedge +Watershed +Watersheddings +Waterside +Waterslea +Watersleigh +Watersmead +Waterson +Watersong +Watersplash +Waterston +Waterswallows +Waterton +Watertower +Watertown +Watertrough +Watervale +Waterview +Waterville +Watervliet +Waterway +Waterwheel +Waterwillow +Waterwitch +Waterwood +Waterworks +Waterworld +Waterworth +Watery +Watford +Watford Bridge +Watford High +Wathen +Watkin +Watkins +Watkins Meadow +Watkins Mill +Watkins Park +Watkins Pond +Watkins View +Watkinson +Watkiss +Watling +Watlington +Watmore +Watney +Watnong +Watoquadoc +Watrous +Watsam +Watseka +Watsessing +Watsford +Watson +Watson Farm +Watsonia +Watsonville +Watt +Wattamolla +Wattendon +Watters +Watterson +Watting +Wattle +Wattle Creek +Wattle Grove +Wattles +Wattleton +Wattling +Watton +Watts +Watts Branch +Watts Mine +Watts Palace +Waubansee +Waubansie +Wauboksee +Waubonsee +Waubonsee Circle +Waubonsie +Waucantuck +Wauchope +Wauconda +Waudman +Waugh +Waugh Chapel +Waughaw +Waugoola +Waukeena +Waukegan +Waukena +Waukesha +Waukon +Wauluds Bank +Waumbeck +Wauponsee +Wausau +Waushacum +Waushakum +Wavaney +Wave +Wave Crest +Wavecrest +Wavehill +Waveland +Wavell +Wavemey +Wavendene +Wavendon +Waveney +Waverleigh +Waverley +Waverley Oaks +Waverly +Waverly Crossing +Waverly Park +Waverton +Wavertree +Wavy +Wawapek +Wawecus +Wawela +Wawona +Waxberg +Waxen +Waxon +Waxpool +Waxwell +Waxwing +Way +Way Lene +Way Points +Wayaawi +Waybridge +Wayburn +Waybury +Waycott +Waycross +Waydale +Waydell +Waye +Wayella +Wayfair +Wayfarer +Wayfarers +Wayfaring +Wayfield +Wayford +Waygrove +Wayjack +Wayland +Wayland Hills +Waylen +Wayles +Wayletts +Waylon +Waylor +Wayman +Waymond +Wayne +Wayne Gibson +Wayne Oaks +Wayneflete Tower +Waynelete +Wayneridge +Waynesburg +Waynesford +Wayneswood +Waynewood +Waynflete +Waypark +Wayre +Wayridge +Wayside +Wayside Inn +Wayson +Wayte +Waytemore +Wayvern +Wayville +Wayward +Waywood +Wayword +WayzAta +Wayzata +Wazir +Wd Prop. Off Pleasant +Weagle Farm +Weald +Weald Bridge +Weald Hall +Weald View +Wealden +Wealdstone +Wealdview +Weale +Wealtheasy +Weambie +Weant +Wear +Weardale +Wearden +Weardley +Weare +Wearimus +Wearish +Wearne +Wearside +Weart +Weasel +Weaste +Weather Hill +Weather Service +Weather Vane +Weatherbee +Weatherby +Weatherhill +Weatherington +Weatherley +Weatherly +Weathers +Weathersfield +Weatherstone +Weathervane +Weatherwood +Weaver +Weaver Lake +Weaver Lk +Weaverham +Weaverhead +Weavering +Weaverly +Weavers +Weavers Rock +Weaverthorpe +Weaving +Web +Webb +Webb Brook +Webb Canyon +Webb Hill +Webbacowitt +Webber +Webber Hills +Webbs +Webbscroft +Webcowet +Webdale +Weber +Weberfield +Webford +Webley +Webro +Webster +Webster Creek +Webster Valley +Websters +Weddell +Wedderburn +Weddle +Wedel +Wedeman +Wedemeyer +Weden +Wedge +Wedge Pond +Wedge Wood +Wedgedale +Wedgefield +Wedgemere +Wedgeport +Wedgewood +Wedgwood +Wedhurst +Wedmore +Wednesbury +Wedo +Wedow +Wee +Wee Burn +Weech +Weed +Weedington +Weedon +Weeds Wood +Weehawken +Weeks +Weel +Weelsby Park +Weemala +Weemalah +Weems +Weeney +Weep Birch +Weeping Cherry +Weeping Willow +Weepinggate +Weequahic +Weequahic Park +Weerona +Weeroona +Weetamoe +Weetawa +Weetawaa +Weeth +Weetman +Weeton +Weetucket +Weetwood +Weetwood Mill +Weetwood Park +Wegat +Wegg +Wegman +Wegworth +Wehlow +Wehner +Wehrheim +Wehrli +Wehrman +Weibel +Weible +Weich +Weichert +Weide +Weiden +Weider +Weidner +Weigands +Weigel +Weighhouse +Weighton +Weigum +Weikert +Weil +Weiland +Weill +Weimar +Weimer +Weinhold +Weinmann +Weinmanns +Weinschel +Weir +Weir Farm +Weir Hall +Weir Hill +Weir Pond +Weir River +Weirberly +Weirdale +Weirfield +Weirich +Weirs +Weirupp +Weirwood +Weis +Weisch +Weise +Weisiger +Weisman +Weiss +Weitz +Wekiva +Welaka +Welbeck +Welborn +Welbourne Woods +Welburn +Welbury +Welby +Welch +Welch Creek +Welch Hill +Welches +Welclose +Welcomb +Welcome +Welcome Home +Welcomes +Welcomeway +Welcroft +Weld +Weld Gilder +Weld Hill +Weldale +Welden +Welder +Welders +Weldin +Welding +Weldon +Weldwood +Welesley +Welfare +Welfield +Welfleet +Welford +Welgate +Welham +Welham Green +Welhouse +Well +Well Bank +Well End +Well Hall +Well Head +Well Hill +Well House +Well Penn +Well Place +Well Spring +Well hall +Wella +Wellacre +Welland +Wellbank +Wellbeck +Wellbrock +Wellbrook +Wellclose +Wellcome +Wellcroft +Welle +Weller +Wellerburn +Welles +Wellesbourne +Wellesey +Wellesley +Welley +Wellfield +Wellfit +Wellfleet +Wellford +Wellgarth +Wellgate +Wellham +Wellhouse +Welling +Welling High +Welling Way Sherwood +Wellingford +Wellingham +Wellings +Wellington +Wellington Branch +Wellington Bridge +Wellington Commons +Wellington Hill +Wellington Park +Wellington Ranch +Wellington Town +Wellington Woods +Wellingtonia +Wellman +Wellmeade +Wellmeadow +Wellner +Wells +Wells Fargo +Wells House +Wellsboro +Wellsey +Wellsley +Wellsmere +Wellstead +Wellstone +Wellswood +Wellumba +Wellwinch +Wellwood +Wellworth +Wellyhole +Wellyn +Welney +Welsford +Welsh +Welshire +Welshmans +Welshpool +Welsley +Welter +Weltham +Weltje +Weltmore +Welton +Welty +Welwyn +Welwyn By Pass +Welzel +Wembley +Wembley High +Wembley Hill +Wembley Park +Wembly +Wemborough +Wembrough +Wembury +Wemple +Wemyss +Wenberg +Wenborough +Wenc +Wendal +Wendall +Wendell +Wendell Holmes +Wendell Howard +Wendeller +Wenden +Wendhurst +Wendley +Wendling +Wendon +Wendover +Wendover Hills +Wendt +Wendy +Wendy Hope +Wendy Ridge +Wengate +Wengeo +Wenham +Wenholz +Wenk +Wenlock +Wenlocks +Wenlow +Wenman +Wenmore +Wenmoth +Wennamacher +Wennerberg +Wennergreen +Wennington +Wenona +Wenonah +Wensley +Wensleydale +Wensum +Wentbridge +Wente +Wenthorpe +Wentick +Wentland +Wentlock +Wenton +Wentwood +Wentworh +Wentworth +Wentworth Park +Wentz +Wentzell +Wenvoe +Wenwood +Wenz +Wenzel +Wenzell +Weona +Weonga +Werbe +Werch +Werden +Werimus +Werimus Brook +Weringa +Werline +Wermes +Wernbrook +Werndee +Werner +Werneth +Werneth Hall +Werneth Low +Werombi +Werona +Werrington +Wert +Werter +Werth +Wertz +Wesby +Wesch +Wesche +Wescoat +Wescoe Hill +Wescot +Wescott +Wescroft +Wesemann +Weser +Wesgate +Wesglen +Weshaven +Weslake +Wesleigh +Wesley +Wesley Commons +Wesley School +Wesley Tyler +Wesley White +Wesleyan +Wesmacott +Wesmere +Wesmere Lakes +Wesmond +Wesmur +Wespark +Wessagusett +Wessco +Wessen +Wessenden Head +Wessex +Wessington +Wesskum Wood +Wessling +Wesson +West +West A +West Access +West Acre +West Acres +West Acton +West Adams +West Agua Caliente +West Ahwanee +West Airmount +West Alameda +West Albert +West Aldea +West Alden +West Aldridge +West Algonquin +West Allendale +West Alley +West Alma +West Aloha +West American Canyon +West Anderson +West Angela +West Ann +West Anza +West Arbor +West Arbour +West Area +West Argand +West Arm +West Armour +West Arthington +West Ascot +West Ash +West Ashland +West Atherton +West Atlantic +West Augusta +West Avalon +West Avondale +West B +West Bacon +West Bagwell +West Balsam +West Baltimore +West Banbury +West Bank +West Bare Hill +West Barham +West Barn +West Barnes +West Barrett +West Barry +West Baxter +West Bay +West Beach +West Beacon +West Beamer +West Beech +West Beeches +West Bel Mar +West Belcher +West Belle Plaine +West Bellevue +West Bellflower +West Benjamin Holt +West Berlin +West Berry +West Berteau +West Bertona +West Birch +West Bird +West Bissell +West Blackhawk +West Blaine +West Blithedale +West Blue Lake +West Boardwalk +West Bolivar +West Bolton +West Bond +West Bonita +West Border +West Bostian +West Boston +West Botany +West Bothwell +West Boundary +West Bowers +West Boyd +West Boylston +West Bradstreet +West Branch +West Brannan Island +West Bridgewater +West Briggsmore +West Brighton +West Broad +West Broadmoor +West Broadway +West Brodview +West Brokaw +West Brook +West Brooke +West Brookline +West Brookwood +West Bruns +West Brush Hill +West Brygger +West Buchanan +West Burnham +West Burns Valley +West Burnside +West Busk +West Byron +West C +West C Meyer +West Cabrini +West Calaveras +West California +West Camden +West Camino +West Camino Diablo +West Campbell +West Campus +West Canton +West Canyon +West Capitol +West Carboy +West Cardinal +West Carey +West Caroline +West Carolyn +West Carr +West Carriage +West Carroll +West Casa Linda +West Castlewood +West Caswell +West Catino +West Cavendish +West Cavour +West Cedar +West Center +West Central +West Channel +West Chanslor +West Chapel +West Chardon +West Charleston +West Charlotte +West Cherry +West Chester +West Chestnut +West Chevin +West Chicago +West Chiles +West Chiltington +West Church +West Cintura +West Clark +West Clay +West Cliff +West Cloudy +West Clover +West Colfax +West Colony +West Comfort +West Commercial +West Common +West Comstock +West Concord +West Congress +West Cornelia +West Cortez +West Cotati +West Cottage +West Country Club +West Court +West Cove +West Covell +West Cramer +West Creek +West Cremona +West Crescent +West Crockett +West Cromwell +West Crook +West Crooked Hill +West Cross +West Cullom +West Curtis +West Cutting +West Cypress +West D +West Dalton +West Dam +West Dana +West Danbury +West Dane +West Dares Beach +West Day +West Dayton +West Dean +West Dedham +West Deerhaven +West Delano +West Dempster +West Dene +West Denver +West Deodara +West Derby +West Diamond +West Diane +West Diehl +West Dike +West Division +West Don Pedro +West Douglas +West Dover +West Downs +West Duane +West Dunaweal +West Dundee +West Dunne +West Dupont +West E +West Eagle +West Eagle Lake +West Eaglewood +West Earleigh Heights +West Eaton +West Eden +West Edith +West Edmonston +West Edmundson +West Eight Mile +West Eighth +West Eleventh +West Elkhorn +West Ella +West Elliot +West Elm +West Elmore +West Elverta +West Emerson +West End +West End Farm +West Englewood +West Entwistle +West Essex +West Estates +West Estudillo +West Etruria +West Euclid +West Eugenie +West Evelyn +West Evergreen +West Ewing +West F +West Fabyan +West Fairview +West Falkland +West Fargo +West Farm +West Farms +West Federal +West Fedora +West Ferdinand +West Ferndale +West Ferry +West Field +West Fifth +West First +West Flexford +West Flora +West Florentia +West Fordham +West Forest +West Forest Lake +West Forrest +West Fort +West Foster +West Fountain +West Fourth +West Foxwood +West Frances +West Franklin +West Frederick +West Fremont +West Front +West Fulkerth +West Fullerton +West Fulton +West Fyffe +West G +West Gaffery +West Galer +West Garfield +West Gate +West Geary +West Geneva +West George +West Gertrude +West Gibson +West Gilardy +West Gilbert +West Gish +West Glen +West Glencannon +West Glenmont +West Go Wanda +West Golf +West Golfview +West Gowe +West Grace +West Grand +West Grange +West Grant +West Grant Line +West Grantline +West Grayson +West Green +West Greenbriar +West Greenthorn +West Groton +West Grove +West Grover +West Gun Hill +West H +West Hacienda +West Halkin +West Halleck +West Ham +West Hamilton +West Hammer +West Hampton +West Hancock +West Hangar +West Hanningfield +West Harbor +West Harder +West Harding +West Harley +West Harney +West Harris +West Harrison +West Harting +West Harvard +West Hatch +West Haven +West Hawley +West Hawthorne +West Hayden Lake +West Hayes +West Hays +West Hazelton +West Head +West Health Sciences +West Hearn +West Heath +West Hedding +West Hendy +West Hensley +West Hidden Hills +West Higgins +West High +West Highland +West Hilderbrand +West Hill +West Hill Beaumont +West Hill Beaumont +West Hill Dam +West Hillgrove +West Hills +West Hillsdale +West Hillside +West Hilltop +West Hilton +West Hirsch +West Hoathly +West Holly +West Home +West Homestead +West Hookston +West Hornet +West Hospital +West House +West Houston +West Howard +West Howe +West Howell +West Hubbard +West Humboldt +West Hunter +West Hurd +West Hutchinson +West Hyde +West I +West Ike Crow +West Imola +West India +West India Dock +West Ingram +West Inman +West Interurban +West Iowa +West Iris +West Irving Park +West Island +West Ivy +West J +West Jack London +West Jackson +West Jacobs +West Jahant +West Jamaica +West James +West Jameson +West Jamestown +West Jasper +West Java +West Jefferson +West Jenness +West Jennifer +West Jersey +West Joan +West Joaquin +West John +West Joliet +West Juana +West Julian +West Juniper +West Kavanagh +West Keating +West Kelly +West Kelso +West Kendal +West Kendall +West Kenner +West Kenneth +West Kent +West Kentucky +West Kersey +West Keslinger +West Kettleman +West Keyes +West Keystone +West Kim +West Kingdon +West Kingsbridge +West Kingston School +West Kinzie +West Kirchhoff +West Klein +West Knickerbocker +West Knoll +West Kohler +West L +West LaSalle +West Lafayette +West Lagoon +West Lake +West Lake Kayak +West Lakeshore +West Lanark +West Lancaster County +West Land Park +West Lanram +West Larch +West Las Animas +West Las Palmas +West Las Positas +West Latimer +West Lauffer +West Laurel +West Lawn +West Lawrence +West Lawton +West Le Moyne +West Lea +West Leach +West Lehman +West Leland +West Leonard +West Leslie +West Lewis +West Liberty +West Lincoln +West Linden +West Linden Church +West Lindsay +West Link +West Linne +West Live Oak +West Livingston +West Livorna +West Lockeford +West Lockport +West Locust +West Lodge +West Lodi +West Logan +West Lomond +West London +West Longview +West Lonnquist +West Loop +West Lorenzen +West Loretta +West Los Felis +West Lost Lake +West Louise +West Lowell +West Lower Jones +West Lucas +West Lucerne +West Lupton +West Lynch +West Lynda +West Lynn +West Mac Donald +West MacArthur +West Macarthur +West Madill +West Madison +West Magnolia +West Main +West Mall +West Mallory +West Manchester +West Manor +West Mansell +West Maple +West March +West Mare +West Mariposa +West Maritime +West Market +West Marshall +West Martha +West Mather Field +West Matheson +West Mathews +West Maude +West Mayes +West Mayfair +West Mc Donald +West Mc Graw +West Mc Kenzie +West Mc Laren +West McKinley +West Meadow +West Meadows +West Medill +West Meeker +West Mel +West Melrose +West Mendocino +West Mercer +West Michigan +West Middle +West Middle School +West Middlefield +West Milgeo +West Mill +West Millbury +West Milton +West Miner +West Miramonte +West Mission +West Modoc +West Moffett Park +West Mohelumne +West Moltke +West Monee Manhattan +West Monroe +West Montara +West Monte Vista +West Monterey +West Montesanto +West Montgomery +West Monticello +West Montrose +West Moreland +West Morrison +West Morton +West Mosley +West Mount Diablo +West Mountain +West Mozart +West Muller +West Myrtle +West N +West Napa +West Naughton +West Nauraushaun +West Neal +West Nelson +West Neptune +West Nettle Tree +West Neugerbauer +West Nevin +West Newell +West Newlands +West Newport +West Newton +West Nickerson +West Ninth +West Noble +West North +West Norwalk +West Norwich +West Noyes +West Nursery +West Oak +West Oak Knoll +West Oakdale +West Oakland +West Oaks +West Oakton +West Oakwood +West Oberlin +West Ogden +West Ohio +West Olive +West Olivet +West Ontario +West Orange +West Orangeburg +West Orchard +West Oriskany +West Ott +West Ox +West Pacific +West Palatine +West Palmer +West Panorama +West Pardee +West Parish +West Park +West Parker +West Parr +West Partridge +West Passaic +West Patapsco +West Patrol +West Patterson +West Patterson Pass +West Pauling +West Payran +West Pearl +West Peder +West Peltier +West Penn +West Pensacola +West Peregrine +West Perimeter +West Pescadero +West Pickering +West Pickwick +West Pine +West Pine Haven +West Plain +West Platti +West Plumeria +West Plymouth +West Point +West Pointe +West Polk +West Pond +West Poplar +West Portola +West Poultry +West Prahser +West Prospect +West Prosper +West Pueblo +West Q +West Quay +West Quincy +West Railroad +West Raleigh +West Ramapo +West Ranch +West Rand +West Randolph +West Ravensbury +West Raye +West Red Line +West Redwood +West Reed +West Remington +West Renee +West Republican +West Revere +West Rianda +West Richmond +West Ridge +West Ridge View +West Rincon +West Rindge +West Ripon +West River +West River Grove +West Riverside +West Riverview +West Riviera +West Robbie +West Robert +West Robinhood +West Robles +West Rockport +West Rockwell +West Rode +West Roosevelt +West Rose +West Rosemary +West Rosseter +West Roxbury +West Roy +West Royd +West Ruby +West Ruby Hill +West Ruffner +West Rumble +West Running Brook +West Rusty +West Rutherford +West Saddle River +West Saint Andrews +West Saint Charles +West Saint James +West Saint John +West Salt Creek +West Sam +West San Carlos +West San Marco +West San Martin +West San Salvador +West San Tomas Aquino +West Sanches +West Sandralee +West Santa Clara +West Santa Fe +West Santa Inez +West Sargent +West Sausal +West Savona +West Scenic +West Schaumburg +West School +West Schulte +West Seaview +West Second +West Seegers +West Selby +West Selden +West Semple +West Service +West Seventh +West Sexton +West Shadowgraph +West Shell +West Sheridan +West Shore +West Shoreline +West Shoreview +West Shorewood +West Shure +West Side +West Sierra +West Sigourney +West Sigwalt +West Siino +West Silver Eagle +West Sixth +West Slaithwaite +West Smith +West Sneed +West Soda Rock +West Soffel +West Sonoma +West Sonora +West Sorrento +West South +West Southwood +West Spain +West Spring +West Springfield +West Spruce +West Squantum +West Sst +West Sugar +West Summit +West Sunnyoaks +West Sunnyside +West Sunset +West Surf +West Sutter +West Sutton +West Swain +West Tapley +West Taron +West Tasman +West Taylor +West Telegraph +West Temperence +West Temple +West Tennys +West Tennyson +West Tenter +West Tenth +West Terminous +West Terra Cotta +West Texas +West Thames +West Third +West Thomas +West Thomson +West Thorndale +West Thurman +West Ticonderoga +West Tilden +West Tokay +West Toleri +West Tower +West Tregallas +West Tremlett +West Tremont +West Trident +West Trimble +West Trinity +West Tulare +West Turner +West Twitchell Island +West U +West Undine +West Union +West University +West Upsala +West Vale +West Valley +West Van Buren +West Vanston +West Vein +West Verde +West Victoria +West View +West Vine Hill +West Virginia +West Vomac +West Wacker +West Wahington +West Walbrook +West Walker Landing +West Walnut +West Walnut Grove +West Warren +West Washington +West Water +West Watmaugh +West Waveland +West Weber +West Weddell +West Wellington +West Wendell +West West +West West la Frontage +West Wetmore +West Wheeler +West White Oak +West Whitmore +West Whittier +West Wilchard +West Wilderness Lakes +West William +West Willow +West Willow Creek +West Wilson +West Wimbolton +West Wind +West Winds +West Winesap +West Wing +West Winton +West Wise +West Wood +West Woodbridge +West Woods +West Worth +West Wright +West Wyandotte +West Wycombe +West Wycombe Hill +West Wyoming +West Yoke +West Yokuts +West Yorkshire +West Younger +West Zayante +West Zeering +West el Camino +West el Campo +West el Dorado +West el Rose +West la Chiquita +West la Loma +West la Mesa +Westacott +Westacre +Westacres +Westage +Westaire +Westall +Westamerica +Westanley +Westar +Westaway +Westbank +Westbard +Westbay +Westbeech +Westbend +Westbere +Westberg +Westberry +Westborder +Westboro +Westboro Hospital +Westborough +Westbourne +Westbourne Park +Westbourne Terrace +Westbrae +Westbranch +Westbreeze +Westbridge +Westbrook +Westbrook Mill +Westbrooke +Westbury +Westbury Hicksville +Westcamp +Westcar +Westchester +Westchester Park +Westchester View +Westcliff +Westcliff Park +Westcliffe +Westcombe +Westcombe Park +Westcote +Westcott +Westcourt +Westcroft +Westdale +Westdean +Westdel +Wested +Westedge +Westell +Westend +Westentry +Wester +Wester Hill +Westerbeke Ranch +Westerdale +Westerfield +Westergate +Westerham +Westerhill +Westerhoff +Westerholt +Westerland +Westerleigh +Westerly +Western +Western Elms +Western Farms Ranch +Western Gailes +Western Hills +Western Link +Western Mine +Western Oak +Western Park +Western Perimeter +Western Perimiter +Western Shore +Western View +Westers +Westerton +Westervelt +Westfarm +Westfax +Westferry +Westfield +Westfield Park +Westfield Sole +Westfields +Westford +Westgate +Westgate Hill +Westgate Valley +Westglen +Westglow +Westgrove +Westhall +Westhampton +Westhatch +Westhaven +Westhead +Westhelp +Westhill +Westhills +Westholme +Westhorpe +Westhoughton +Westhulme +Westhumble +Westhurst +Westin +Westinghouse +Westings +Westknoll +Westlake +Westland +Westland Farm +Westland Ranch +Westlands +Westlawn +Westlea +Westleigh +Westley +Westline +Westlock +Westlund +Westly Garden +Westmacott +Westmaher +Westman +Westmead +Westmeadow +Westmeath +Westmere +Westmill +Westminister +Westminster +Westminster Marsham +Westminster Bridge +Westminster Hill +Westmont +Westmoor +Westmoorland +Westmora +Westmore +Westmore Grove +Westmoreland +Westmorland +Westmount +Westnedge +Westoe +Weston +Weston Bay +Weston Green +Weston Hill +Weston Hills +Weston Ridge +Westonbirt +Westoning +Westons Mill +Westospect +Westover +Westow +Westpark +Westphalia +Westphall +Westpointe +Westpole +Westport +Westporter +Westray +Westree +Westridge +Westringa +Westringia +Westrow +Westshire +Westshore +Westside +Westside Park +Weststar +Westthorpe +Westup +Westvale +Westvalley +Westview +Westview Forest +Westville +Westward +Westwater Point +Westway +Westwell +Westwich +Westwind +Westwood +Westwood Center +Westwood Forest +Westwood Glen +Westwood Hills +Westwood Park +Westwoods +Westy +Wet Gate +Wetheral +Wetherall +Wetherbee +Wetherbees +Wetherburn +Wetherby +Wetherden +Wethered +Wetherell +Wetherfield +Wetherill +Wetherole +Wethersfield +Wethington +Wethral +Wetlands +Wetmore +Wetumpka +Wetzel +Wewak +Wewanna +Wewers +Wexford +Wexford Heights +Wexford Hts +Wexhall +Wexham +Wexham Park +Wey +Wey Gates +Weyand +Weyanoke +Weyant +Weybosset +Weybossett +Weybourne +Weybridge +Weybrook +Weyburn +Weycombe +Weydon +Weydon Farm +Weydon Hill +Weydown +Weyerhaeuser +Weyham +Weyhill +Weyland +Weylea +Weyman +Weymanor +Weymisset +Weymoth +Weymouth +Weymouth Hill +Weynton +Weyrauch +Weyraugh +Weyside +Weystone +Weythorne +Weywood +Whack House +Whadcoat +Whaddon +Whalans +Whale +Whale Cove +Whaleboat +Whalebone +Whalebone Gulch +Whalen +Whaleneck +Whaler +Whalers Cove +Whales +Whaleship +Whalewood +Whaley +Whaling +Whalley +Whalom +Whalon +Wham +Wham Bar +Whann +Wharf +Wharfdale +Wharfe +Wharfedale +Wharff +Wharfside +Wharncliffe +Wharton +Whatcom +Whateley +Whately +Whatley +Whatlington +Whatman +Whatmore +Whays +Wheat +Wheat Fall +Wheatash +Wheatberry +Wheatfield +Wheatgrain +Wheathampstead +Wheathelds +Wheathill +Wheatland +Wheatland Farms +Wheatlands +Wheatleigh +Wheatley +Wheatley Terrace +Wheaton +Wheaton Hills +Wheaton Oaks +Wheatridge +Wheatsheaf +Wheatstone +Wheatwheel +Whedbee +Wheedon +Wheel Farm +Wheel House +Wheelbarrow +Wheeldon +Wheeler +Wheeler Hills +Wheeler Knoll +Wheeler Peak +Wheeler Point +Wheelhouse +Wheeling +Wheelock +Wheelock Ridge +Wheelon +Wheelwright +Wheelwright Park +Wheelwrights +Whelan +Whelden +Wheldon +Wheler +Wheller +Whellock +Whempstead +Whenman +Whernside +Wherry +Wherwell +Whetmorhurst +Whetsted +Whetstone +Whetstone Hill +Whewell +Wheystone +Whibley +Whichcote +Whichita +Whidborne +Whidden +Whielden +Whiffle Tree +Whiffletree +Whig +Whigam +Whilaway +Whiley +Whiltshire +Whimberry +Whimbrel +Whimsey +Whinberry +Whinbush +Whincover +Whinfell +Whingate +Whingate Tong +Whingate Wortley +Whingate near Wortley +Whinneys +Whins +Whinslee +Whinyates +Whip +Whip Hill +Whip Owill +Whipoorwill +Whippany +Whippendell +Whippet +Whipple +Whipples +Whippletree +Whippoorwill +Whipporwill +Whipporwill Valley +Whipps Cross +Whipps Cross Wood +Whipsnade +Whirlaway +Whirley +Whiskey +Whiskey Bottom +Whiskey Creek +Whiskey Flat +Whiskey Hill +Whiskey Run +Whiskey Slough +Whiskin +Whisman Park +Whisper +Whisper Creek +Whisper Glen +Whisper Hill +Whisper Oaks +Whisper Willow +Whispering +Whispering Bay +Whispering Brook +Whispering Creek +Whispering Fields +Whispering Hill +Whispering Hills +Whispering Lake +Whispering Leaves +Whispering Oak +Whispering Oaks +Whispering Palms +Whispering Pine +Whispering Pines +Whispering River +Whispering Trails +Whispering Tree +Whispering Willow +Whispering Willows +Whispering Wind +Whispering Winds +Whispering Wood +Whispering Woods +Whisperwillow +Whisperwood +Whisperwood Glen +Whist +Whisterfield +Whistlepost +Whistler +Whistlerhill +Whistlers +Whistley Mill +Whistling Duck +Whistling Pine +Whistling Valley +Whiston +Whit +Whitacre +Whitaker +Whitaker Bluff +Whitall +Whitbarrow +Whitbourne +Whitbread +Whitbreads Farm +Whitburn +Whitby +Whitchurch +Whitclem +Whitcomb +White +White Acre +White Acres +White Ash +White Bagley +White Bank +White Barn +White Barns +White Beach +White Bear +White Beech +White Beeches +White Birch +White Bread +White Bridge +White Butts +White Carr +White Cedar +White Chapel +White Chappel +White Chimney +White Chimneys +White Church +White City +White Cliffs +White Cloud +White Conduit +White Cornus +White Cottage +White Creek +White Deer +White Dove +White Duck +White Eagle +White Elm +White Feather +White Fence +White Ferry +White Fir +White Flint +White Forge +White Fox +White Gate +White Gates +White Granite +White Ground +White Hall +White Hart +White Hart Greenford +White Haven +White Hawk +White Heart +White Heron +White Hill +White Hill Fire +White Holme +White Horn +White Horse +White House +White House Canyon +White Ibis +White Island +White Kennett +White Knights +White Knowle +White Laith +White Laithe +White Lee +White Leghorn Farm +White Lion +White Lyons +White Marsh Park +White Moss +White Mountain +White Oak +White Oak Ridge +White Oak Tree +White Oaks +White Owl +White Pine +White Pine Knoll +White Pines +White Plains +White Pond +White Post +White Ridge +White Rock +White Rock Spring +White Rose +White Rose Access +White Saddle +White Sands +White Space +White Spots +White Sulphur Spring +White Surf +White Swan +White Tail +White Tailed +White Thorn +White Water +White Willow +White Wing +Whiteacre +Whitebank +Whitebark +Whitebarn +Whitebarns +Whitebeam +Whitebick +Whitebirch +Whitebridge +Whitebrook +Whitebroom +Whitecap +Whitecarr +Whitechapel +Whitechapel High +Whitecliff +Whitecliffe +Whitecombe +Whitecote +Whitecroft +Whitecroft Heath +Whitecross +Whited +Whitedown +Whitefence +Whitefield +Whitefields +Whitefir +Whiteford +Whitefriars +Whitefur +Whitegate +Whitegates +Whitehall +Whitehall Beach +Whitehall Farm +Whitehall Park +Whitehall Plains +Whitehave +Whitehaven +Whitehead +Whiteheads +Whiteheath +Whitehill +Whitehills +Whiteholm +Whiteholme +Whitehorse +Whitehough Head +Whitehouse +Whitehurst +Whitekirk +Whiteknights +Whitelake +Whiteland +Whitelands +Whitelaw +Whitelawn +Whitelea +Whiteleaf +Whitelegg +Whitelegge +Whiteley +Whiteley Croft +Whitelock +Whitelow +Whitely +Whiteman +Whitemarsh +Whitemore +Whitenack +Whiteoak +Whiteoaks +Whitepine +Whitepit +Whitepost +Whitepost Wood +Whiterim +Whiteriver +Whiterock +Whiterose +Whites +Whites Cove +Whites Creek +Whites Ferry +Whites Landing +Whites Pond +Whites Ridge +Whitesail +Whitesand +Whitesands +Whitesell +Whiteside +Whitesides +Whitesmead +Whitesmith +Whitespruce +Whitestile +Whitestone +Whitesurf +Whitetail +Whitethorn +Whitethorne +Whitetire +Whitewall +Whitewater +Whiteway +Whitewaybottom +Whitewebbs +Whitewell +Whitewillow +Whitewood +Whitfeld +Whitfield +Whitfield Chapel +Whitford +Whitgift +Whitham +Whithouse +Whitin +Whiting +Whiting Beach +Whitingham +Whitings +Whitington +Whitins +Whitkirk +Whitla +Whitlam +Whitland +Whitlars +Whitlatch +Whitlers Creek +Whitley +Whitley Park +Whitley Wood +Whitling +Whitlock +Whitlowe +Whitman +Whitman Ridge +Whitmarsh +Whitmer +Whitmoor +Whitmoor Vale +Whitmor +Whitmore +Whitmore Brook +Whitmore Vale +Whitnall +Whitnell +Whitney +Whitney Pond +Whitney Tavern +Whitneys Landing +Whiton +Whitridge +Whits +Whits End +Whitsbury +Whitsell +Whitsett +Whitson +Whitstable +Whitstone +Whitta +Whittaker +Whittall +Whitteck +Whittell +Whittemore +Whitten +Whittham +Whittier +Whitting +Whittingham +Whittingstall +Whittington +Whittle +Whittles +Whittlesey +Whittman +Whittney +Whittock +Whitton +Whitton Dene Whitton +Whitton Dene Whitton +Whitton Gladstone +Whitton Lincoln +Whitton Manor +Whittredge +Whitwell +Whitwood +Whitwood Common +Whitworth +Whiznan +WhizzGo Tariff +Whli +Wholfords +Whomerley +Whomsoever +Whoolden +Whopshott +Whorlong +Whorlton +Whortleberry +Whowell +Why Worry +Whyman +Whynstones +Whyse +Whyte +Whyte Park +Whytecliff +Whyteladyes +Whyteleaf +Whyteleafe +Whyteville +Whytingham +Wiak +Wianamatta +Wianno +Wibird +Wiblen +Wicasse +Wichard +Wichbrook +Wichern +Wichett +Wichita +Wichitaw +Wichkam +Wichman +Wick +Wick Beech +Wick Farm +Wick Hill +Wicke +Wickell +Wicken +Wickenby +Wickenden +Wickens +Wickentree +Wicker +Wicker Park +Wickersham +Wickersley +Wicket +Wickett +Wickford +Wickham +Wickham Bishops +Wickhurst +Wicklands +Wickley +Wickliffe +Wicklow +Wicklund +Wicks +Wickshire +Wickson +Wickstead +Wickwood +Wicomico +Wicomoco +Widberg +Widbrook +Widcombe +Widden +Widdenham +Widdicombe +Widdin +Widdington +Widdop +Wide +Widebranch +Widecroft +Widegate +Widemere +Wideview +Widewater +Widford +Widgeon +Widger +Widget +Widgiewa +Widicombe +Widley +Widmer +Widmere +Widmore +Widmore Lodge +Widnell +Widnes +Widows Mite +Wieboldt +Wiebusch +Wieczorkowski +Wiedemann +Wiedner +Wiegman +Wiehle +Wieland +Wield +Wierimus +Wiers +Wierton +Wiesbrock +Wiesbrook +Wiese +Wieuca +Wigan +Wigans +Wigborough +Wigens +Wigeon +Wiget +Wiggenhall +Wiggie +Wiggin +Wiggington +Wiggins +Wigginton +Wiggles +Wigglesworth +Wiggs +Wight +Wight Farm +Wightman +Wigle +Wigley +Wigley Bush +Wigmore +Wigram +Wigsby +Wigsey +Wigshaw +Wigston +Wigton +Wigwam +Wigwam Hill +Wihtred +Wike +Wike Ridge +Wikiup +Wikiup Meadows +Wilandra +Wilaneta +Wilart +Wilbanks +Wilbeam +Wilber +Wilberforce +Wilbert +Wilberta +Wilbr +Wilbraham +Wilbrandt +Wilbung +Wilbur +Wilburdale +Wilburn +Wilburne +Wilbury +Wilbury Hills +Wilby +Wilcarra +Wilco +Wilcock +Wilcot +Wilcott +Wilcox +Wilcoxen +Wilcoxson +Wilcutt +Wild +Wild Acre +Wild Acres +Wild Ash +Wild Bees +Wild Briar +Wild Canyon +Wild Cherry +Wild Cranberry +Wild Creek +Wild Duck +Wild Fire +Wild Flower +Wild Flower Park +Wild Forest +Wild Game +Wild Ginger +Wild Goose +Wild Hedge +Wild Holly +Wild Horse +Wild Horse Valley +Wild Hunt +Wild Indigo +Wild Iris +Wild Ivy +Wild Lilac +Wild Meadow +Wild Meadows +Wild Oak +Wild Olive +Wild Plum +Wild Prairie +Wild River +Wild Rose +Wild Spruce +Wild Timothy +Wild Turkey +Wilda +Wildara +Wildberry +Wildbriar +Wildbrook +Wildcat +Wildcat Canyon +Wildcliff +Wildcrest +Wildcroft +Wilde +Wilde Willow +Wilden +Wilden Park +Wilder +Wilder Point +Wilderfield +Wilderhold +Wildermuth +Wilderness +Wilderness Run +Wilderness Walk +Wildernesse +Wilderswood +Wilderton +Wilderwick +Wilderwood +Wildes +Wildewood +Wildey +Wildfell +Wildfire +Wildflower +Wildgoose +Wildhawk +Wildhawk West +Wildhedge +Wildhill +Wildhorse +Wildhouse +Wildhurst +Wilding +Wildish +Wildley +Wildlife +Wildlife Loop +Wildman +Wildmeadow +Wildmere +Wildmoor +Wildoak +Wildomar +Wildon +Wildpark +Wildpines +Wildridge +Wildridings +Wildrose +Wildrose Springs +Wilds +Wildspring +Wildthorn +Wildview +Wildwing +Wildwood +Wildwood Bay +Wildwood Beach +Wildwood Mountain +Wileden +Wilelinor +Wiles +Wiles Farm +Wiley +Wileys +Wilfield +Wilford +Wilfred +Wilga +Wilgarth +Wilgate Green +Wilgus +Wilhaggin +Wilhaggin Park +Wilhelm +Wilhelmi +Wilhelmina +Wilhemina +Wilhern +Wilk +Wilke +Wilken +Wilkening +Wilkens +Wilker +Wilkerson +Wilkes +Wilkes Barre +Wilkesboro +Wilkie +Wilkin +Wilkins +Wilkins Glen +Wilkinson +Wilks +Wilksch +Wilkshire +Will +Will Cook +Will Merry +Will Rogers +Will Sawyer +Will Scarlet +Will Scarlett +Will Wool +Willa +Willaburra +Willada +Willamette +Willan +Willand +Willandale +Willandra +Willans +Willara +Willarch +Willard +Willard Dunham +Willard Grant +Willard Point +Willarong +Willaroo +Willawa +Willben +Willborough +Willbutts +Willcott +Willcrest +Wille +Willee +Willement +Willems +Willen +Willen Field +Willenhall +Willens +Willerby +Willeroo +Willers +Willersley +Willerval +Willes +Willesden +Willester +Willet +Willets +Willets Point +Willett +Willett Pond +Willetts +Willetts Crossing +Willever +Willey +Willey Broom +Willeys +Willfox +William +William Allen +William B Long Jr +William B Terry +William Beanes +William Berry +William Bird +William Booth +William Campbell +William Carr +William Chambers Jr +William Cunningham +William D Bliss +William Day +William Delameter +William Downes +William Edgar +William Edward +William Evans +William Fairfield +William Foster +William G +William Gooding +William Harrington +William Henry +William Howell +William IV +William Joseph +William Kelley +William Kirk +William Lake Shore +William Mahoney +William Mannix +William May Park +William Mosby +William Moss +William Penn +William Pishner Jr +William Reed +William Rigby +William Shakespeare +William T Morrissey +William Tanner +William Tell +William Terry +William Wade +William Ward +William Wood +Williamo +Williams +Williams Port +Williams Wood +Williams Woods +Williamsberg +Williamsborough +Williamsbridge +Williamsburg +Williamsburgh +Williamson +Williamson Ranch +Williamsport +Williamstown +Willian +Willian Church +Williar +Williard +Willick +Willie +Willie B Kennedy +Willie Johnson +Willie Johnsone +Williford +Willig +Willigan +Willingale +Willingdon +Willington +Willis +Willis Holden +Willis Lake +Willis Miller +Willison +Williston +Williton +Willits +Willius +Willmar +Willmohr +Willmonton +Willmot +Willmott +Willo Mar +Willobrook +Willoby +Willock +Willora +Willotta +Willougby +Willoughby +Willoughby Newton +Willoughby Park +Willoughby Point +Willow +Willow Bank +Willow Bay +Willow Bend +Willow Bottom +Willow Bridge +Willow Brook +Willow Camp Fire +Willow Circle +Willow Creek +Willow Crescent +Willow Cresent +Willow Crest +Willow Dale +Willow Edge +Willow Falls +Willow Farm +Willow Forge +Willow Gate +Willow Glade +Willow Glen +Willow Grove +Willow Hill +Willow Hills +Willow Knoll +Willow Lake +Willow Lakes +Willow Leaf +Willow Oak +Willow Oaks +Willow Oaks Corporate +Willow Park +Willow Pass +Willow Point +Willow Pond +Willow Ridge +Willow River +Willow Run +Willow Shore +Willow Spring +Willow Springs +Willow Springs School +Willow Switch +Willow Terrace +Willow Tree +Willow Valley +Willow View +Willow Way Long +Willow Well +Willow West +Willow Wood +Willow Woods +Willowan +Willoway +Willowbank +Willowbend +Willowbrae +Willowbridge +Willowbrook +Willowcreek +Willowcrest +Willowcroft +Willowdale +Willowdean +Willowdene +Willowfield +Willowgate +Willowgrove +Willowhaven +Willowhayne +Willowhill +Willowhurst +Willowick +Willowie +Willowleaf +Willowmead +Willowmeade +Willowmere +Willowmere Woods +Willowmont +Willowood +Willowpark +Willowpond +Willowridge +Willows +Willows Edge +Willowside +Willowside Ranch +Willowthree +Willowtree +Willowview +Willowwick +Willowwood +Willrush +Willry +Wills +Willshaw +Willshire +Willson +Willston +Willunga +Willvail +Willy +Willyama +Willys +Wilma +Wilmac +Wilman +Wilmar +Wilmarth +Wilmcote +Wilmer +Wilmerding +Wilmerhatch +Wilmett +Wilmette +Wilmington +Wilmington Court +Wilmont +Wilmor +Wilmore +Wilmot +Wilmoth +Wilmott +Wilmount +Wilms +Wilmslow +Wilmslow Old +Wilmur +Wilogreen +Wilona +Wiloughby +Wilpshire +Wilrose +Wilroy +Wilryan +Wilscot +Wilsey +Wilsham +Wilshaw +Wilshere +Wilshire +Wilsman +Wilsmere +Wilsom +Wilson +Wilson Bridge +Wilson Farm +Wilson Fold +Wilson Hall +Wilson Hill +Wilson Park +Wilson Pond +Wilson Ridge +Wilson Valley +Wilson Wood +Wilson Woods Park +Wilsondale +Wilsons +Wilsons Creek +Wilsons Grove +Wilsonville +Wilstone +Wilstrode +Wilt +Wilton +Wilton Croft +Wilton Oaks +Wilton South +Wiltonshire +Wiltsey +Wiltshire +Wilwade +Wilward +Wilwick +Wilwood +Wilzette +Wiman +Wimbart +Wimberry Hill +Wimbledon +Wimbledon Park +Wimblehurst +Wimbleton +Wimbley +Wimblington +Wimborne +Wimbourne +Wimland +Wimlands +Wimmer +Wimple +Wimpole +Wimpory +Wims +Wimsatt +Wimslow +Win Haven +Winafred +Winamac +Winans +Winant +Winberie +Winbolt +Winborne +Winborough +Winbourne +Winburn +Winburndale +Wincanton +Winch +Winch Park +Wincham +Winchat +Winchbottom +Winchcombe +Winchell +Winchelsea +Winchendon +Winchester +Winchester Beach +Winchfield +Winchgrove +Winchmore +Winchmore Hill +Wincliff +Winco +Wincoat +Wincoma +Wincombe +Winconsin +Wincott +Wincrest +Wincroft +Wincrofts +Wind +Wind Creek +Wind Crest +Wind Flower +Wind Hill +Wind Meadow +Wind Mill +Wind Ridge +Wind River +Wind Sock +Wind Song +Windabout +Windamere +Windarra +Windbeam +Windblown +Windborough +Windbreak +Windbridge +Windbrook +Windbrooke +Windchime +Windcliff +Windcloud +Windcrest +Windeler +Windell +Windemere +Winder +Windermere +Winders +Windett +Windett Ridge +Windette +Windeyer +Windfall +Windfeldt +Windfield +Windflower +Windgate +Windham +Windham Cove +Windhaven +Windhill +Windhill Old +Windhorn +Windimer +Winding +Winding Bluff +Winding Branch +Winding Brook +Winding Brooke +Winding Canyon +Winding Creek +Winding Farm +Winding Glenn +Winding Hill +Winding Hills +Winding Lakes +Winding Meadow +Winding Oak +Winding Ridge +Winding River +Winding Rose +Winding Run +Winding Trail +Winding Way +Winding Waye +Winding Wood +Winding Woods +Windjammer +Windkist Farm +Windlass +Windle +Windleaf +Windlehurst +Windlesham +Windley +Windmeadows +Windmere +Windmill +Windmill Canyon +Windmill Cove +Windmill Farms +Windmill Field +Windmill Hill +Windmill Park +Windmill Quay +Windolf +Windom +Windong Wood +Windorra +Windouree +Windover +Windplay +Windrew +Windridge +Windrift +Windrock +Windrose +Windrow +Windrunner +Windrush +Windrush Farm +Windsail +Windscale +Windshire +Windsmere Hill +Windsock +Windsong +Windsong South +Windsor +Windsor Bridge Brocas +Windsor Brook +Windsor Court +Windsor Farm +Windsor Gate +Windsor Hill +Windsor Hills +Windsor Knoll +Windsor Lake +Windsor Manor +Windsor Palms +Windsor Park +Windsor Ridge +Windsor River +Windsor View +Windsor Village +Windspoint +Windspun +Windstar +Windstone +Windstream +Windswept +Windtree +Windus +Windward +Windward Key +Windwhisper +Windwood +Windwood Farms +Windy +Windy Bank +Windy Cove +Windy Creek +Windy Field +Windy Harbour +Windy Hill +Windy Hollow +Windy Knoll +Windy Knolls +Windy Oak +Windy Oaks +Windy Pine +Windy Point +Windy Prairie +Windy Ridge +Windy River +Windy Springs +Windy Valley +Windybush +Windyhill +Wine +Wine Barrel +Wine Country +Wine Creek +Wine Garden +Wine Master +Wineberry +Winedale +Wineham +Winer +Winery +Wines +Winesap +Winewood +Winexburg Manor +Winfal +Winfell +Winfield +Winfield Scott +Winfields +Winfisky +Winford +Winforton +Winfred +Winfrith +Wing +Wing Park +Wing Pointe +Wingara +Wingard +Wingate +Wingates +Winged Cove +Winged Foot +Wingello +Winger +Wingfield +Wingflash +Wingfoot +Wingford +Wingham +Wingle Tye +Wingletye +Wingmore +Wingpointe +Wingra +Wingrave +Wingrove +Wings +Wingsong +Wingstem +Winham +Winiebago +Winifred +Winje +Winkel +Winkelman +Winkers +Winkfield +Winkin +Winkle +Winkle Point +Winklebleck +Winkler +Winkley +Winkurra +Winkworth +Winlock +Winmarith +Winmeade +Winmeyer +Winmill +Winmoor +Winn +Winn Common +Winn Moor +Winn Valley +Winnaleah +Winne +Winnebago +Winnecomac +Winneconnett +Winnegance +Winnemac +Winnemay +Winnemere +Winnepeg +Winnepog +Winnepurkit +Winners +Winnetaska +Winnetka +Winnetka Heights +Winnetka Hts +Winnetou +Winnett +Winnetuxett +Winnie +Winnifred +Winning +Winnington +Winnington Old +Winnipeg +Winnisemette +Winnisimmet +Winnmere +Winnock +Winnow Down +Winnpenny +Winns +Winnsboro +Winnunga +Winoka +Winona +Winonah +Winpark +Winrock +Winrose +Winsby +Winscar +Winscombe +Winsdale +Winsdon +Winser +Winsfield +Winsford +Winshaw +Winship +Winside +Winskill +Winsland +Winslea +Winsley +Winslow +Winslow Cemetery +Winslow Farm +Winslowe +Winsmoor +Winsom +Winsome +Winsor +Winspear +Winstanley +Winstead +Winstead Manor +Winsted +Winsten +Winster +Winston +Winston Forest +Winstone Scott +Winstre +Winstree +Winta +Winten +Winter +Winter Brook +Winter Corn +Winter Creek +Winter Crest +Winter Garden +Winter Haven +Winter Hey +Winter Hill +Winter Hunt +Winter Island +Winter Laurel +Winter Park +Winter Sun +Winter Thicket +Winter View +Winter Walk +Winter Willow +Winterberry +Winterborne +Winterbottom +Winterbourne +Winterbrook +Wintercorn +Wintercress +Winterdown +Winterfield +Winterford +Wintergate +Wintergreen +Wintergrove +Wintergull +Winterhaven +Wintermans +Winterpit +Winterrun +Winters +Winterscroft +Wintersells +Winterset +Wintershutt +Winterslow +Winterson +Winterspoon +Winterstein +Winterstoke +Winterswyk +Winterthur +Winterton +Winterway +Winterwell +Winterwind +Winterwood +Winthorpe +Winthrop +Winthrop New +Winthrop Shore +Winthrope +Wintney +Winton +Wintree +Wintun +Winward +Winwick Link +Winwood +Winyah +Wiobata +Wire +Wire Mill +Wirega +Wireless +Wireton +Wirksmoor +Wirling +Wirrabara +Wirralee +Wirralie +Wirraway +Wirreanda +Wirrinda +Wirruna +Wirt +Wirth +Wirthman +Wirthmore +Wirtz +Wisbeach +Wisbech +Wisbeck +Wisborough +Wiscasset +Wisconsin +Wisden +Wisdom +Wise +Wisely Sq +Wiseman +Wiser +Wises +Wiseton +Wish +Wishanger +Wishart +Wishbone +Wishing +Wishing Rock +Wishing Well +Wishkah +Wishmoor +Wishon +Wisley +Wisner +Wisnev +Wisnom +Wisp +Wispering Hollow +Wiss +Wissahican +Wisse +Wisseman +Wissenden +Wisser +Wissing +Wissioming +Wissman +Wistar +Wistaria +Wisteria +Wiston +Wistow +Wiswall +Witan +Witanhurst +Witby +Witch +Witch Hill +Witchcraft +Witcher +Witches +Witcom +Witek +Witham +Withan +Withenfield +Withens +Witherall +Witherbee +Witherenden +Witheridge +Witherington +Witherly +Withers +Withers Harbor +Withersed +Witherspoon +Witherwin +Withey +Withey Heights +Witheygate +Withies +Withington +Withinlee +Withins +Withins Hall +Withnell +Withorn +Withy +Withyfold +Withyham +Withypool +Witley +Witmer +Witney +Wits End +Witt +Wittama +Witte +Wittem +Wittenberg +Wittenbury +Wittenham +Witter +Wittersham +Wittes +Witthill +Witthoff +Wittington +Wittmead +Witton +Witty +Wituwamat +Wium +Wivelrod +Wivelsfield +Wivenhoe +Wiverton +Wix +Wixon +Wizard +Wm Clifford +Wo Udall +Wobbly +Woburn +Woburn Abbey +Wodecroft +Wodehouse +Woden +Woehrle +Woelfe +Woerd +Wofford +Wogshead +Wohler +Wohseepee +Woids +Woild Goose +Wokindon +Woking +Wokingham +Wokomis +Wolbach +Wolcott +Wolcutt +Woldham +Woldhuis +Woldingham +Woldingham School +Woldzienski +Wolesey +Wolf +Wolf Creek +Wolf Crossing +Wolf Den +Wolf Hill +Wolf Pond +Wolf Ridge +Wolf River +Wolf Rock +Wolf Run +Wolf Run Hills +Wolf Run Shoals +Wolf Valley +Wolfberry +Wolfe +Wolfe Canyon +Wolfe Hill +Wolfeboro +Wolfenden +Wolff +Wolfhill +Wolfington +Wolfle +Wolford +Wolfs +Wolfskill +Wolfson +Wolftrap +Wolftrap Run +Wolftree +Wolger +Wolkoff +Wolkow +Wollam +Wollaston +Wolley +Wolli +Wolli Creek +Wollitzer +Wollmington +Wollombi +Wollondilly +Wollongbar +Wollongong +Wollun +Wollybutt +Wolombi +Wolomolopoag +Wolpers +Wolseley +Wolsey +Wolsfeld +Wolski +Wolsten +Wolstenholme +Wolters +Wolton +Wolumba +Wolvens +Wolver Hollow +Wolvercote +Wolverine +Wolverns +Wolverton +Wolves +Womack +Womantam +Womantum +Wombat +Wombeyan +Wombidgee +Womboyne +Womerah +Womersley +Wompanoag +Wompatuck +Wonder +Wonderama +Wondercolor +Wonderland +Wong +Wonga +Wonga Wonga +Wongala +Wongalee +Wonham +Woniora +Wonston +Wontford +Wontner +Woobly +Wooburn Common +Wood +Wood Acers +Wood Acres +Wood Bridge +Wood Brook +Wood Court +Wood Creek +Wood Duck +Wood Ember +Wood End +Wood End Green +Wood Farm +Wood Glade +Wood Glen +Wood Green +Wood Hampton +Wood Haven +Wood Hill +Wood Hollow +Wood Home +Wood House +Wood Island +Wood Knoll +Wood Lake +Wood Lark +Wood Lily +Wood Lodge +Wood Lot Trail +Wood Mar +Wood Mist +Wood Oak +Wood Park +Wood Pointe +Wood Ranch +Wood Ridge +Wood Rock +Wood Sage +Wood Side +Wood Sorrel +Wood Sorrels +Wood Spice +Wood Thrush +Wood Top +Wood Valley +Wood View +Woodacre +Woodacres +Woodale +Woodall +Woodands +Woodard +Woodbank +Woodbanke +Woodbastwick +Woodbent +Woodberry +Woodbine +Woodbole +Woodboro +Woodborough +Woodbourne +Woodbrae +Woodbray +Woodbriar +Woodbridge +Woodbridge Centre +Woodbrier +Woodbrook +Woodbrooke +Woodbrrok +Woodburn +Woodburn Village +Woodbury +Woodbury Farms +Woodbury Lakes +Woodbury Park +Woodby +Woodchase +Woodchester +Woodchuck +Woodchuck Hill +Woodchuck Hollow +Woodcleft +Woodcliff +Woodcliff Lake +Woodcliffe +Woodclyffe +Woodcock +Woodcock Dell +Woodcote +Woodcote Green +Woodcote Grove +Woodcote Park +Woodcourt +Woodcox +Woodcreek +Woodcrest +Woodcroft +Woodcut +Woodcutter +Woodcutters +Wooddale +Woodduck +Wooded +Wooded Branch +Wooded Brook +Wooded Creek +Wooded Glen +Wooded Hills +Wooded Lake +Wooded Path +Wooded Ridge +Wooded Run +Wooded Trace +Wooded View +Woodedge +Woodelf +Wooden +Wooden Bridge +Wooden Hawk +Wooden Path +Wooden Spoke +Wooden Valley +Wooden Valley Cross +Woodend +Woodewind +Woodfair +Woodfall +Woodfarm +Woodfern +Woodfield +Woodfield Estates +Woodfield Park +Woodfield School +Woodfold +Woodford +Woodford New +Woodforest +Woodgarth +Woodgate +Woodgate Hill +Woodger +Woodglade +Woodglen +Woodglenn +Woodgrange +Woodgreen +Woodgrove +Woodhail +Woodhall +Woodhall Park +Woodhalt +Woodham +Woodham Park +Woodhams +Woodhatch +Woodhaven +Woodhayes +Woodhead +Woodhey +Woodheys +Woodhill +Woodhill Common +Woodhollow +Woodholm +Woodhouse +Woodhouse Hill +Woodhue +Woodhull +Woodhurst +Wooding +Woodington +Woodinville +Woodiris +Woodkirk +Woodknoll +Woodlake +Woodlake Hills +Woodland +Woodland Beach +Woodland Crossing +Woodland Estates +Woodland Falls +Woodland Forest +Woodland Heights +Woodland Hills +Woodland Lake +Woodland Meadow +Woodland Park +Woodland Pond +Woodland Run +Woodland Valley +Woodland Way Abbey +Woodlands +Woodlands Hill +Woodlands Park +Woodlane +Woodlark +Woodlawn +Woodlawn East +Woodlawn Gable +Woodlawn Green +Woodlawn West +Woodlawnd +Woodlea +Woodlea Mill +Woodleaf +Woodledge +Woodlee +Woodleigh +Woodlet +Woodley +Woodley Woods +Woodliffe +Woodloch +Woodlock +Woodloo +Woodlore +Woodlot +Woodlow +Woodlyn +Woodlynn +Woodman +Woodmanhurst +Woodmans +Woodmansterne +Woodmar +Woodmark +Woodmeadow +Woodmere +Woodmill +Woodminister +Woodminster +Woodmire +Woodmont +Woodmoor +Woodmore +Woodmore Oaks +Woodnook +Woodnote +Woodoak +Woodoaks +Woodpark +Woodpath +Woodpecker +Woodpecker Ridge +Woodpiece +Woodplace +Woodpoint +Woodpond +Woodrail +Woodranch +Woodredon Farm +Woodreeve +Woodrest +Woodridge +Woodridings +Woodriff +Woodriffe +Woodring +Woodrock +Woodroe +Woodrolfe +Woodrolfe Farm +Woodrose +Woodrow +Woodrow Wilson +Woodroyd +Woodruff +Woodrush +Woods +Woods Center +Woods Chapel +Woods Cove +Woods Creek +Woods Edge +Woods End +Woods Hill +Woods Hole +Woods Landing +Woods Moor +Woods On Mass. +Woods Pond +Woods Wharf +Woods of Arden +Woodsboro +Woodsbury +Woodscape +Woodsdale +Woodseats +Woodseer +Woodsend +Woodsend Crescent +Woodshire +Woodshole +Woodside +Woodside Court +Woodside Grange +Woodside Meadows +Woodside Park +Woodside Tavern Low +Woodside View +Woodsley +Woodsman +Woodsmoor +Woodsome +Woodson +Woodsong +Woodstock +Woodston +Woodstone +Woodstown +Woodstream +Woodsum +Woodsview +Woodsworth +Woodthorpe +Woodthrush +Woodtree +Woodvale +Woodvale Pond +Woodvalley +Woodview +Woodview Terrace +Woodvill +Woodville +Woodward +Woodwarde +Woodwardia +Woodwards +Woodway +Woodway Park +Woodwaye +Woodwell +Woodwild +Woodwillow +Woodwind +Woodwinds +Woodwise +Woodworth +Woodwren +Woody +Woody Creek +Woody Island +Woody Wolfe +Woodyard +Woodycrest +Wool +Wool Creek +Woolacombe +Woolaroc +Woolbeding +Woolborough +Woolbrook +Woolcott +Wooldeys +Wooldridge +Wooldrige +Wooler +Wooley +Wooleys +Wooleytown +Woolf +Woolfenden +Woolfield +Woolford +Woolgen Park +Woolgoolga +Woolgrove +Woolifers +Woolington +Woollands +Woollard +Woollaston +Woollett +Woolley +Woolley Bridge +Woolley Mill +Woollin +Woolman +Woolmead +Woolmer +Woolmer Hill +Woolmers +Woolmongers +Woolmore +Woolneigh +Woolner +Woolpack +Woolpert +Woolreeds +Woolsey +Woolson +Woolsthorpe +Woolston +Woolstone +Woolsy +Woolwash +Woolwich +Woolwich Burrage +Woolwich Hare +Woolwich Church +Woolwich New +Woolworth +Woomera +Woongarra +Woonsocket Hill +Woonsockett +Woorail +Woorang +Woorarra +Woosehill +Woosley +Wooster +Wooten +Wooton +Wootten +Woottens +Wootton +Woowich +Worbeck +Worbler +Worcester +Worcester County Jail +Worcester Park +Worcester Providence +Worcesters +Worchester +Worden +Wordoo +Wordsworth +Wordswotrh +Wordworth +Worfield +Workesleigh +Workhouse +Workman +Works +Worland +World +World Trade Center +Worldgate +Worlds End +Worley +Worleys +Worlidge +Worlingham +Wormald +Worman +Wormdale +Worminghall +Wormley +Wormstead +Wormwood +Worn Springs Fire +Wornington +Woronoco +Woronora +Woronora Dam +Woronzow +Woropieff +Worple +Worplesdon +Worral +Worrall +Worrel +Worrell +Worrin +Worrobil +Worsefold +Worsel +Worsester +Worsham +Worship +Worslade +Worsley +Worsley Bridge +Worsopp +Worsted +Worster +Worston +Wortendyke +Worth +Worth Park +Wortham +Worthen +Worthern +Worthing +Worthington +Worthley +Worthmor +Worting +Wortley +Wortley Moor +Wortman +Worton +Worts Hill +Wortylko +Worwood +Wostbrock +Wote +Wotton +Wotton Green Sandway +Wouldham +Wounded Knee +Woverley +Wragby +Wragg Canyon +Wraight +Wrangell +Wrangleden +Wrangler +Wrangling +Wrangthorn +Wrath Fold +Wray +Wray Common +Wray Field +Wray Park +Wrayfield +Wraylands +Wraysbury +Wrecclesham +Wreden +Wrekin +Wren +Wren Hollow +Wren Nest +Wrenbeck +Wrenbrook +Wrenbury +Wrench +Wrendale +Wrenfield +Wrenn +Wrenn House +Wrens +Wrenshot +Wrentham +Wrenthorpe +Wrentmore +Wrenwood +Wrexhall +Wrexham +Wricklemarsh +Wride +Wrigglesworth +Wright +Wright Brothers +Wrighton +Wrights +Wrights Endeavor +Wrights Hollow +Wrights Meadow +Wrightsbridge +Wrightson +Wrightwood +Wrigley +Wrin +Writtle +Wrotham +Wrotham Hill +Wrotham Water +Wrottesley +Wroughton +Wroxeter +Wroxham +Wroxton +Wrythe +Wssc Treatment Plant +Wudgong +Wuester +Wulff +Wulfstan +Wunaquit +Wunda +Wunderlich +Wunulla +Wurley +Wurr +Wuthering Heights +Wyaconda +Wyadra +Wyagara +Wyagdon +Wyalong +Wyanbah +Wyandanch +Wyandemere +Wyandot +Wyandotte +Wyanet +Wyanga +Wyanoke +Wyargine +Wyatt +Wyatt Park +Wyatts +Wyatts Green +Wyatts Ridge +Wyatville +Wybalena +Wybeck Valley +Wyberlye +Wybersley +Wybournes +Wyburn +Wych +Wych Elm +Wych Hill +Wychbury +Wychelm +Wychewood +Wychford +Wychperry +Wychview +Wychwood +Wyck +Wycke +Wyckland +Wyckoff +Wyckwood +Wyclif +Wycliff +Wycliffe +Wycoff +Wycomb +Wycombe +Wycombe Park +Wyddial +Wydehurst +Wydeville Manor +Wydown +Wye +Wye Oak +Wyee +Wyena +Wyeth +Wyfold +Wygal +Wykagyl +Wyke +Wykebeck Valley +Wykeham +Wykehurst +Wykoff +Wylands +Wyld +Wyld Green +Wylde +Wyldewood +Wylds +Wyldwood +Wyles +Wyleu +Wylie +Wylie Hill +Wyllie +Wyllis +Wyllyotts +Wylmar +Wylo +Wylvale +Wyman +Wymans Beach +Wymar +Wymering +Wymond +Wymondley +Wymston +Wynan +Wynbrook +Wynbrooke +Wynbury +Wyncham +Wynches Farm +Wynchgate +Wyncrest +Wyndale +Wyndam +Wyndbrook +Wyndcliff +Wyndcliffe +Wyndcrest +Wyndehurst +Wyndemere +Wyndgate +Wyndham +Wyndham Cove +Wyndham Hill +Wyndham Oak +Wyndhill +Wyndhurst +Wyndmere +Wyndmoor +Wyndmuir +Wyndora +Wyndover +Wyndover Woods +Wyndstone +Wyndwood +Wyneham +Wynell +Wyness +Wynford +Wyngaard +Wyngate +Wynhurst +Wynkoop +Wynmore +Wynn +Wynndale +Wynne +Wynnewood +Wynnfield +Wynnleigh +Wynns +Wynnstay +Wynnstay Access +Wynnswick +Wynnwood +Wynot +Wynridge +Wynstone +Wynsum +Wynter +Wynwood +Wynyard +Wynyatt +Wyola +Wyoma +Wyomee +Wyoming +Wyona +Wyong +Wyphurst +Wyralla +Wyre +Wyreema +Wyres +Wyresdale +Wyrick +Wysteria +Wythal +Wythburn +Wythburne +Wythe +Wythens +Wythenshawe +Wyther +Wyther Park +Wythes +Wythfield +Wyton +Wyuna +Wyvern +Wyvil +Wyvile +Wyvill +Wyville +Wyvis +Wyx +Xanadu +Xandria +Xanthippe +Xanthus +Xaveria +Xavier +Xaviers +Xavis +Xebec +Xene +Xenia +Xenium +Xenwood +Xeon +Xerxes +Ximines +Xkimo +Xylon +Y Creek +Y D +YMCA +Yabsley +Yacenda +Yacht +Yacht Club +Yacht Harbor +Yachthaven +Yachtsman +Yachtview +Yackley +Yaffe +Yaffle +Yagar +Yager +Yagoona +Yahara +Yajome +Yakima +Yala +Yaldara +Yalding +Yale +Yalkin +Yallambee +Yallara +Yallaroi +Yalleroi +Yalta +Yamada +Yamane +Yamato +Yamba +Yamburg +Yamma +Yampa +Yampi +Yancey +Yanco +Yancy +Yandarlo +Yanderra +Yangalla +Yangang +Yangoora +Yanilla +Yankee +Yankee Division +Yankee Doodle +Yankee Harbor +Yankee Ridge +Yanko +Yankton +Yankton College +Yannina +Yantacaw Brook +Yantecaw +Yantlet +Yantz +Yapole +Yara +Yaraan +Yarabah +Yaralla +Yarberry +Yarbon +Yarborough +Yarburgh +Yard +Yardarm +Yardley +Yardley Hall +Yardley Manor +Yardley Park +Yare +Yargo +Yaringa +Yarland +Yarm Court +Yarmouth +Yarn +Yarnall +Yarnell +Yarnick +Yarnton Way Norman +Yarra +Yarra Burn +Yarra Burra +Yarrabee +Yarrabin +Yarrabung +Yarralumla +Yarram +Yarraman +Yarramundi +Yarran +Yarranbee +Yarrandale +Yarrangobilly +Yarrara +Yarrawa +Yarren +Yarrennan +Yarrow +Yarrowee +Yarrunga +Yarwood +Yasmar +Yatala +Yatama +Yate +Yateley +Yately +Yates +Yates Ford +Yattendon +Yaugher +Yaverland +Yawl +Yawpo +Yawung +Yeading +Yeadon +Yeadon Harper +Yeadon High +Yeadon Moor +Yeager +Yealand +Yeaman +Yeamans +Yeandle +Yeardon +Yeardsley +Yearling +Yearling Crossing +Yeasted +Yeate +Yeates +Yeatman +Yeaton +Yeats +Yednak +Yeend +Yeldall Manor Service +Yeldham +Yeldman +Yell +Yellambie +Yellow Bank +Yellow Bank Farm +Yellow Bell +Yellow Birch +Yellow Brick +Yellow Brook +Yellow Cab Access +Yellow Circle +Yellow Cote +Yellow Flower +Yellow Jacket Ranch +Yellow Lodge +Yellow Pine +Yellow Poplar +Yellow Rock +Yellow Rose +Yellow Tavern +Yellow Twig +Yellowbrick +Yellowcross +Yellowhammer +Yellowknife +Yellowood +Yellowpine +Yellowstar +Yellowstone +Yellowwood +Yelsted +Yelverton +Yenda +Yender +Yennicock +Yennora +Yeo +Yeoford +Yeomalt +Yeoman +Yeomans +Yeomans Acre Fore +Yeonas +Yeovil +Yeramba +Yeran +Yerba Buena +Yerba Santa +Yerbury +Yerby +Yereance +Yerger +Yerona +Yerong +Yerrick +Yerroulbin +Yerxa +Yeshiva +Yester +Yetholme +Yethonga +Yetman +Yetminster +Yetta +Yettner +Yew +Yew Tree +Yew Tree Bottom +Yew Tree Green +Yew Tree Park +Yewbarrow +Yewdale +Yewdall +Yewfield +Yewlands +Yews +Yewtree +Ygnacio +Ygnacio Valley +Yield Hall +Yillowra +Yimbala +Yindela +Yirak +Yirgella +Yirra +Yoakes +Yoakim +Yoakim Bridge +Yoakley +Yoakum +Yodalla +Yoder +Yoerg +Yoho +Yoke +Yokuts +Yola +Yolanda +Yolande +Yolane +Yolano +Yolano Mills +Yolo +Yolo Creek +Yon +Yona Vista +Yonkers +Yorba +York +York Gardens Lombard +York Mill +York Mills +York River +Yorkdale +Yorke +Yorkfield +Yorkie +Yorknolls +Yorks +Yorkshire +Yorkshire Woods +Yorkton +Yorkton Ridge +Yorktonw +Yorktown +Yorktown Mall +Yorktowne +Yorkview +Yorkville +Yorman +Yorton +Yosefa +Yosemite +Yosemite Park +Yoshida +Yosko +Yosocomico +Yost +Youd +Youens +Youghal +Youlden +Youle +Young +Young Bar +Youngberg +Youngblood +Younger +Younger Creek +Youngfield +Youngheart +Younglove +Youngs +Youngs Branch +Youngs Cliff +Youngs Farm +Youngs Hill +Youngs Valley +Youngsbury +Youngsdale +Youngsters +Youngstown +Youngstroat +Youngwood +Yount +Yountville Cross +Youse +Youth Center +Yovonovitz +Yowie +Yoxley +Ypres +Yreka +Yribarren +Ysabel +Yuba +Yuba Canal +Yucatan +Yucca +Yuhas +Yukka +Yukon +Yulan +Yule +Yule Tree +Yulong +Yuloni +Yulupa +Yuma +Yunga +Yunga Burra +Yurgel +Yurick +Yuro +Yuroka +Yurong +Yuruga +Yurunga +Yutan +Yvette +Yvonne +Yy +Z Line +ZAchary +ZAnzIbar +ZEnith +ZIegler +ZInnia +ZIon +ZOo +Zabelle +Zabriskie +Zabrosky +Zaca +Zacate +Zaccheus Mead +Zacharias +Zachary +Zachery +Zachman +Zack +Zadig +Zafra +Zaft +Zagora +Zahel +Zaininger +Zaleski +Zalman +Zambesi +Zambezie +Zambory +Zambrano +Zamia +Zammit +Zamora +Zampa +Zampatti +Zanco +Zand +Zander +Zane +Zange +Zangwill +Zanibar +Zanker +Zanni +Zanoni +Zanthus +Zanzibar +Zapata +Zapotec +Zara +Zaragosa +Zaragoza +Zardo +Zareh +Zarick +Zarita +Zarlee +Zartop +Zato +Zaton +Zatopeck +Zaunerowicz +Zauratsky +Zausa +Zavatt +Zayante +Zayante Lakes +Zayante School +Zaydee +Zazzetti +Zealand +Zealander +Zeally +Zebedee +Zebra +Zebulon Pike +Zeckendorf +Zeek +Zeeland +Zehnder +Zeigert +Zeigler +Zeim +Zeka +Zekan +Zekiah +Zela +Zelah +Zelda +Zelham +Zeliff +Zelinda +Zelkova +Zeller +Zellerbach +Zelma +Zeman +Zemble +Zemek +Zena +Zenas +Zendzian +Zengele +Zenia +Zenith +Zenith Ridge +Zenner +Zennia +Zennor +Zeno +Zenoria +Zephyr +Zephyr Ranch +Zeppelen +Zeppelin +Zeppi +Zerega +Zerman +Zermat +Zermatt +Zero +Zeta +Zetland +Zetta +Zetts +Zeus +Zieber +Ziegler +Ziele Creek +Zig Zag +Ziggy +Zileman +Zillah +Zils +Zimborski +Zimbro +Zimmer +Zimmerman +Zimpher +Zina +Zindaus +Zinder +Zinfandel +Zinfindel +Zinn +Zinnia +Zinran +Zinzan +Zion +Zion Chapel +Zions +Zipf +Zircon +Zirkel +Zisch +Ziska +Zita +Zito +Zoar +Zodiac +Zoe +Zoeller +Zoffany +Zola +Zoll +Zoller +Zompetti +Zona +Zoo +Zook +Zorah +Zoranne +Zoria Farms +Zorka +Zorrane +Zotti +Zottoli +Zouave +Zouch +Zoumar +Zuelke +Zug +Zulette +Zulmida +Zulu +Zumbra +Zumbro +Zumstein +Zumwalt +Zuni +Zunic +Zurich +Zuttion +Zutton +Zweber +Zwicky +Zygmunt +Zygouras +Zylonite \ No newline at end of file diff --git a/splunk_eventgen/samples/streetSuffixes.sample b/splunk_eventgen/samples/streetSuffixes.sample new file mode 100644 index 00000000..7520a47c --- /dev/null +++ b/splunk_eventgen/samples/streetSuffixes.sample @@ -0,0 +1,24 @@ +Blvd. +Blvd. +St. +St. +St. +St. +St. +St. +Pkwy. +Pkwy. +Pkwy. +Ln. +Ln. +Ln. +Dr. +Dr. +Dr. +Dr. +Way +Way +Ave. +Ave. +Ave. +Hwy. \ No newline at end of file diff --git a/splunk_eventgen/samples/streets b/splunk_eventgen/samples/streets new file mode 100644 index 00000000..d25bf1ad --- /dev/null +++ b/splunk_eventgen/samples/streets @@ -0,0 +1,168 @@ +Acres +Amber +Anchor +Apple +Arbor +Autumn +Avenue +Bank +Barn +Beacon +Bear +Bend +Berry +Blossom +Blue +Bluff +Branch +Bright +Broad +Brook +Burning +Butterfly +Canyon +Chase +Cider +Cinder +Circle +Clear +Cloud +Colonial +Corner +Cotton +Court +Cove +Cozy +Creek +Crest +Crystal +Dale +Dale +Deer +Dell +Dewy +Dusty +Easy +Edge +Elk +Embers +Emerald +Estates +Fallen +Falls +Farms +Fawn +Foggy +Forest +Fox +Gardens +Gate +Gate +Gentle +Glade +Glen +Golden +Goose +Grand +Green +Grove +Grove +Harvest +Hazy +Heather +Hickory +Hidden +High +Highlands +Hills +Hollow +Honey +Horse +Indian +Iron +Island +Isle +Jagged +Jetty +Knoll +Lagoon +Lake +Landing +Lane +Lazy +Leaf +Ledge +Little +Log +Lost +Manor +Meadow +Merry +Mews +Middle +Misty +Mountain +Nectar +Noble +Nook +Oak +Old +Orchard +Panda +Park +Path +Pike +Pine +Pioneer +Place +Pleasant +Point +Pond +Pony +Prairie +Promenade +Quail +Quaking +Quiet +Rabbit +Red +Ridge +Rise +River +Robin +Rocky +Round +Round +Run +Rustic +Shadow +Shady +Silent +Silver +Sky +Sleepy +Spring +Stead +Stony +Sunny +Swale +Tawny +Terrace +Thunder +Timber +Trace +Trail +Treasure +Umber +Vale +Valley +Velvet +View +View +Vista +Wagon +Way +Willow +Wishing +Woods +Zephyr \ No newline at end of file diff --git a/splunk_eventgen/samples/trackIDs.sample b/splunk_eventgen/samples/trackIDs.sample new file mode 100644 index 00000000..a8f20f78 --- /dev/null +++ b/splunk_eventgen/samples/trackIDs.sample @@ -0,0 +1,23 @@ +01011207201000005652000000000021 +01011207201000005652000000000047 +01011207201000005652000000000068 +01011207201000005652000000000018 +01011207201000005652000000000031 +01011207201000005652000000000007 +01011207201000005652000000000013 +01011207201000005652000000000041 +01011207201000005652000000000053 +01011207201000005652000000000023 +01011207201000005652000000000029 +01011207201000005652000000000037 +01011207201000005652000000000011 +01011207201000005652000000000003 +01011207201000005652000000000083 +01011207201000005652000000000017 +01011207201000005652000000000071 +01011207201000005652000000000026 +01011207201000005652000000000055 +01011207201000005652000000000084 +01011207201000005652000000000014 +01011207201000005652000000000025 +01011207201000005652000000000049 \ No newline at end of file diff --git a/splunk_eventgen/samples/transType.sample b/splunk_eventgen/samples/transType.sample new file mode 100644 index 00000000..61c7b11d --- /dev/null +++ b/splunk_eventgen/samples/transType.sample @@ -0,0 +1,6 @@ +New +New +Change +Change +Change +Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/uris.sample b/splunk_eventgen/samples/uris.sample new file mode 100644 index 00000000..27d17be4 --- /dev/null +++ b/splunk_eventgen/samples/uris.sample @@ -0,0 +1,5 @@ +GET /browse/search +GET /browse/tracks +POST /sync/createplaylist +POST /playhistory/uploadhistory +POST /auth \ No newline at end of file diff --git a/splunk_eventgen/samples/userHostIp.sample b/splunk_eventgen/samples/userHostIp.sample new file mode 100644 index 00000000..f33cf601 --- /dev/null +++ b/splunk_eventgen/samples/userHostIp.sample @@ -0,0 +1,1000 @@ +TAYLOR_DYE,TAYLOR_DYE-MPBR16,10.0.0.0 +ARMAND_ARAIZA,ARMAND_ARAIZA-MPBR16,10.0.0.1 +BENJAMIN_VANDEUSEN,BENJAMIN_VANDEUSEN-MPBR16,10.0.0.2 +SHANNON_BERNARDI,SHANNON_BERNARDI-MPBR16,10.0.0.3 +VIRGIL_FOUQUETTE,VIRGIL_FOUQUETTE-MPBR16,10.0.0.4 +LEANN_CHISUM,LEANN_CHISUM-MPBR16,10.0.0.5 +MEGHAN_BIONDI,MEGHAN_BIONDI-MPBR16,10.0.0.6 +JAKE_SPELL,JAKE_SPELL-MPBR16,10.0.0.7 +MIRTHA_SILVESTRI,MIRTHA_SILVESTRI-MPBR16,10.0.0.8 +ORPHA_BLANKS,ORPHA_BLANKS-MPBR16,10.0.0.9 +TOMMY_HENNEY,TOMMY_HENNEY-MPBR16,10.0.0.10 +HORACE_WELSCH,HORACE_WELSCH-MPBR16,10.0.0.11 +JAMAAL_BOEPPLE,JAMAAL_BOEPPLE-MPBR16,10.0.0.12 +JULIE_BLOXHAM,JULIE_BLOXHAM-MPBR16,10.0.0.13 +FREDERICA_SLAYDEN,FREDERICA_SLAYDEN-MPBR16,10.0.0.14 +SEAN_TARLOW,SEAN_TARLOW-MPBR16,10.0.0.15 +ELIZABETH_GAUKEL,ELIZABETH_GAUKEL-MPBR16,10.0.0.16 +HASSAN_SPERIER,HASSAN_SPERIER-MPBR16,10.0.0.17 +MARISELA_COLSTON,MARISELA_COLSTON-MPBR16,10.0.0.18 +LOWELL_SOLBERG,LOWELL_SOLBERG-MPBR16,10.0.0.19 +PAMALA_MUMPER,PAMALA_MUMPER-MPBR16,10.0.0.20 +BREANNE_STEFANIAK,BREANNE_STEFANIAK-MPBR16,10.0.0.21 +WINNIFRED_HARTS,WINNIFRED_HARTS-MPBR16,10.0.0.22 +CASIE_GEMME,CASIE_GEMME-MPBR16,10.0.0.23 +JUSTINE_TAPP,JUSTINE_TAPP-MPBR16,10.0.0.24 +SIDNEY_DRAPKIN,SIDNEY_DRAPKIN-MPBR16,10.0.0.25 +RAY_ETHRIDGE,RAY_ETHRIDGE-MPBR16,10.0.0.26 +GARFIELD_LOSECCO,GARFIELD_LOSECCO-MPBR16,10.0.0.27 +IRVING_HAVARD,IRVING_HAVARD-MPBR16,10.0.0.28 +GRETCHEN_BRIES,GRETCHEN_BRIES-MPBR16,10.0.0.29 +CLETUS_DAY,CLETUS_DAY-MPBR16,10.0.0.30 +SONNY_PAGLINAWAN,SONNY_PAGLINAWAN-MPBR16,10.0.0.31 +BREANNA_EMMER,BREANNA_EMMER-MPBR16,10.0.0.32 +GENARO_EVERSOLE,GENARO_EVERSOLE-MPBR16,10.0.0.33 +HILDA_POLLARO,HILDA_POLLARO-MPBR16,10.0.0.34 +DAMION_VESPIA,DAMION_VESPIA-MPBR16,10.0.0.35 +GROVER_REMALEY,GROVER_REMALEY-MPBR16,10.0.0.36 +EVERETT_SPRIGG,EVERETT_SPRIGG-MPBR16,10.0.0.37 +OLLIE_BEDNARCZYK,OLLIE_BEDNARCZYK-MPBR16,10.0.0.38 +LUPE_GUE,LUPE_GUE-MPBR16,10.0.0.39 +JANN_PITHAN,JANN_PITHAN-MPBR16,10.0.0.40 +TIARA_CEPEDA,TIARA_CEPEDA-MPBR16,10.0.0.41 +ZINA_HOLOM,ZINA_HOLOM-MPBR16,10.0.0.42 +LOUISE_CARLILE,LOUISE_CARLILE-MPBR16,10.0.0.43 +MADGE_EFAW,MADGE_EFAW-MPBR16,10.0.0.44 +OUIDA_RUGGIERI,OUIDA_RUGGIERI-MPBR16,10.0.0.45 +PANDORA_CONNIFF,PANDORA_CONNIFF-MPBR16,10.0.0.46 +CRAIG_BULLERS,CRAIG_BULLERS-MPBR16,10.0.0.47 +RYAN_FRASCA,RYAN_FRASCA-MPBR16,10.0.0.48 +NOVELLA_KASTEL,NOVELLA_KASTEL-MPBR16,10.0.0.49 +AURORE_AHLMAN,AURORE_AHLMAN-MPBR16,10.0.0.50 +CARLTON_KURAMOTO,CARLTON_KURAMOTO-MPBR16,10.0.0.51 +GARY_STINEHELFER,GARY_STINEHELFER-MPBR16,10.0.0.52 +NICHOL_FALKER,NICHOL_FALKER-MPBR16,10.0.0.53 +EVELYN_SCHIER,EVELYN_SCHIER-MPBR16,10.0.0.54 +JARRETT_HUXHOLD,JARRETT_HUXHOLD-MPBR16,10.0.0.55 +JONAS_HEITLAND,JONAS_HEITLAND-MPBR16,10.0.0.56 +ANTONIO_WOLSKI,ANTONIO_WOLSKI-MPBR16,10.0.0.57 +BILLY_PEDLAR,BILLY_PEDLAR-MPBR16,10.0.0.58 +GLADYS_SINNING,GLADYS_SINNING-MPBR16,10.0.0.59 +PAUL_LEHNER,PAUL_LEHNER-MPBR16,10.0.0.60 +MARTHA_KEENEY,MARTHA_KEENEY-MPBR16,10.0.0.61 +JUAN_CURBEAM,JUAN_CURBEAM-MPBR16,10.0.0.62 +ROSITA_DEBELLIS,ROSITA_DEBELLIS-MPBR16,10.0.0.63 +WILFRED_DRAKE,WILFRED_DRAKE-MPBR16,10.0.0.64 +ISIAH_HANAWAY,ISIAH_HANAWAY-MPBR16,10.0.0.65 +INEZ_GREENLER,INEZ_GREENLER-MPBR16,10.0.0.66 +CHARISSA_CAPEZZUTO,CHARISSA_CAPEZZUTO-MPBR16,10.0.0.67 +ARMANDO_MCGRAY,ARMANDO_MCGRAY-MPBR16,10.0.0.68 +JUNIOR_LAFLAMME,JUNIOR_LAFLAMME-MPBR16,10.0.0.69 +RENE_HOUGE,RENE_HOUGE-MPBR16,10.0.0.70 +CARY_RODAL,CARY_RODAL-MPBR16,10.0.0.71 +ERIC_MORITZ,ERIC_MORITZ-MPBR16,10.0.0.72 +TOBY_LAFRANCE,TOBY_LAFRANCE-MPBR16,10.0.0.73 +LUANNE_ESKRIDGE,LUANNE_ESKRIDGE-MPBR16,10.0.0.74 +FREDERICK_PONTORIERO,FREDERICK_PONTORIERO-MPBR16,10.0.0.75 +NIGEL_NEACE,NIGEL_NEACE-MPBR16,10.0.0.76 +ADAM_BUEHRING,ADAM_BUEHRING-MPBR16,10.0.0.77 +IVORY_BONIER,IVORY_BONIER-MPBR16,10.0.0.78 +ISIDRO_ALBANESE,ISIDRO_ALBANESE-MPBR16,10.0.0.79 +ARLENE_SHEEDY,ARLENE_SHEEDY-MPBR16,10.0.0.80 +JAKE_BRADY,JAKE_BRADY-MPBR16,10.0.0.81 +CRYSTAL_CURZ,CRYSTAL_CURZ-MPBR16,10.0.0.82 +ANTOINE_BOWYER,ANTOINE_BOWYER-MPBR16,10.0.0.83 +FANNY_MAULTSBY,FANNY_MAULTSBY-MPBR16,10.0.0.84 +ERIK_KOSS,ERIK_KOSS-MPBR16,10.0.0.85 +DION_GILLOTTI,DION_GILLOTTI-MPBR16,10.0.0.86 +NILDA_SORATOS,NILDA_SORATOS-MPBR16,10.0.0.87 +AMY_WHINERY,AMY_WHINERY-MPBR16,10.0.0.88 +MYLES_RAIL,MYLES_RAIL-MPBR16,10.0.0.89 +JEREMY_PEMBER,JEREMY_PEMBER-MPBR16,10.0.0.90 +CHRISTIN_MINZEL,CHRISTIN_MINZEL-MPBR16,10.0.0.91 +NINA_OKUDA,NINA_OKUDA-MPBR16,10.0.0.92 +LACEY_IANNUCCI,LACEY_IANNUCCI-MPBR16,10.0.0.93 +KIMBERLI_CASALMAN,KIMBERLI_CASALMAN-MPBR16,10.0.0.94 +KIZZY_SOLGOVIC,KIZZY_SOLGOVIC-MPBR16,10.0.0.95 +ROGELIO_KOTERA,ROGELIO_KOTERA-MPBR16,10.0.0.96 +IN_SODHI,IN_SODHI-MPBR16,10.0.0.97 +ZENAIDA_KNIGHTER,ZENAIDA_KNIGHTER-MPBR16,10.0.0.98 +SERINA_WOODELL,SERINA_WOODELL-MPBR16,10.0.0.99 +KRISTEN_LUNEAU,KRISTEN_LUNEAU-MPBR16,10.0.0.100 +JEFFREY_ALVARENGA,JEFFREY_ALVARENGA-MPBR16,10.0.0.101 +CARIDAD_DOUGHTIE,CARIDAD_DOUGHTIE-MPBR16,10.0.0.102 +ISAURA_LUDGOOD,ISAURA_LUDGOOD-MPBR16,10.0.0.103 +ARLENA_FREUDENBURG,ARLENA_FREUDENBURG-MPBR16,10.0.0.104 +MATTHEW_FERRE,MATTHEW_FERRE-MPBR16,10.0.0.105 +WM_RUSH,WM_RUSH-MPBR16,10.0.0.106 +BOBBY_MOON,BOBBY_MOON-MPBR16,10.0.0.107 +KATY_HIPPERT,KATY_HIPPERT-MPBR16,10.0.0.108 +BRENDAN_WAREING,BRENDAN_WAREING-MPBR16,10.0.0.109 +RUSSELL_LEDDON,RUSSELL_LEDDON-MPBR16,10.0.0.110 +DONOVAN_MAHER,DONOVAN_MAHER-MPBR16,10.0.0.111 +MONICA_FRANCESE,MONICA_FRANCESE-MPBR16,10.0.0.112 +CATALINA_DURON,CATALINA_DURON-MPBR16,10.0.0.113 +NIDA_ROMAR,NIDA_ROMAR-MPBR16,10.0.0.114 +LYLE_MIECZKOWSKI,LYLE_MIECZKOWSKI-MPBR16,10.0.0.115 +ARON_HIPP,ARON_HIPP-MPBR16,10.0.0.116 +ORVILLE_NIELAND,ORVILLE_NIELAND-MPBR16,10.0.0.117 +BLYTHE_SHOUN,BLYTHE_SHOUN-MPBR16,10.0.0.118 +JOSEPH_SPADY,JOSEPH_SPADY-MPBR16,10.0.0.119 +JAMEY_STONEBRAKER,JAMEY_STONEBRAKER-MPBR16,10.0.0.120 +JIMMY_LISONBEE,JIMMY_LISONBEE-MPBR16,10.0.0.121 +BELINDA_MISKO,BELINDA_MISKO-MPBR16,10.0.0.122 +IRMA_ROSE,IRMA_ROSE-MPBR16,10.0.0.123 +TAWANNA_FRANZONI,TAWANNA_FRANZONI-MPBR16,10.0.0.124 +HALLIE_DINKIN,HALLIE_DINKIN-MPBR16,10.0.0.125 +SIDNEY_BRUN,SIDNEY_BRUN-MPBR16,10.0.0.126 +NIKI_CHAPIN,NIKI_CHAPIN-MPBR16,10.0.0.127 +TERESA_MORAIS,TERESA_MORAIS-MPBR16,10.0.0.128 +SIMON_SABO,SIMON_SABO-MPBR16,10.0.0.129 +REGINALD_LACHERMEIER,REGINALD_LACHERMEIER-MPBR16,10.0.0.130 +SIMONE_SCHAEFER,SIMONE_SCHAEFER-MPBR16,10.0.0.131 +COREY_SCHAMP,COREY_SCHAMP-MPBR16,10.0.0.132 +CLAYTON_MESZAROS,CLAYTON_MESZAROS-MPBR16,10.0.0.133 +CARLOS_DALLMEYER,CARLOS_DALLMEYER-MPBR16,10.0.0.134 +HUGO_LOUIE,HUGO_LOUIE-MPBR16,10.0.0.135 +FRAN_FANN,FRAN_FANN-MPBR16,10.0.0.136 +DUANE_BENINCASE,DUANE_BENINCASE-MPBR16,10.0.0.137 +ARNOLD_DONAHOE,ARNOLD_DONAHOE-MPBR16,10.0.0.138 +WILLIAM_SHERLEY,WILLIAM_SHERLEY-MPBR16,10.0.0.139 +MALIA_GFELLER,MALIA_GFELLER-MPBR16,10.0.0.140 +LOVIE_TOMERLIN,LOVIE_TOMERLIN-MPBR16,10.0.0.141 +LILLIA_SIMMONEAU,LILLIA_SIMMONEAU-MPBR16,10.0.0.142 +HAILEY_ABDUR,HAILEY_ABDUR-MPBR16,10.0.0.143 +JACOB_ROBICHAUD,JACOB_ROBICHAUD-MPBR16,10.0.0.144 +TAMAR_BALLADARES,TAMAR_BALLADARES-MPBR16,10.0.0.145 +LEEANN_STEMM,LEEANN_STEMM-MPBR16,10.0.0.146 +WINIFRED_STELLMACHER,WINIFRED_STELLMACHER-MPBR16,10.0.0.147 +FELIPE_HAMSHER,FELIPE_HAMSHER-MPBR16,10.0.0.148 +MALORIE_PAULUS,MALORIE_PAULUS-MPBR16,10.0.0.149 +LOUANN_MARESCO,LOUANN_MARESCO-MPBR16,10.0.0.150 +ANTWAN_MOWERS,ANTWAN_MOWERS-MPBR16,10.0.0.151 +WM_IRELAND,WM_IRELAND-MPBR16,10.0.0.152 +JOE_HEYER,JOE_HEYER-MPBR16,10.0.0.153 +KENNETH_BUNDREN,KENNETH_BUNDREN-MPBR16,10.0.0.154 +ANGEL_KILMARTIN,ANGEL_KILMARTIN-MPBR16,10.0.0.155 +HAYDEN_BROADNAX,HAYDEN_BROADNAX-MPBR16,10.0.0.156 +HYON_BOREN,HYON_BOREN-MPBR16,10.0.0.157 +FRANKIE_METCALF,FRANKIE_METCALF-MPBR16,10.0.0.158 +JONATHAN_NETHERLAND,JONATHAN_NETHERLAND-MPBR16,10.0.0.159 +ODILIA_ONEIL,ODILIA_ONEIL-MPBR16,10.0.0.160 +RONNI_DOROUGH,RONNI_DOROUGH-MPBR16,10.0.0.161 +DEIDRA_MANZO,DEIDRA_MANZO-MPBR16,10.0.0.162 +KARL_ALSBROOK,KARL_ALSBROOK-MPBR16,10.0.0.163 +MOHAMED_MCMANAMY,MOHAMED_MCMANAMY-MPBR16,10.0.0.164 +AGATHA_TOLEDO,AGATHA_TOLEDO-MPBR16,10.0.0.165 +CARMEN_FATCHETT,CARMEN_FATCHETT-MPBR16,10.0.0.166 +ANITA_PICKRELL,ANITA_PICKRELL-MPBR16,10.0.0.167 +GLENDA_YEATS,GLENDA_YEATS-MPBR16,10.0.0.168 +ALFREDO_EK,ALFREDO_EK-MPBR16,10.0.0.169 +MARLON_GIRST,MARLON_GIRST-MPBR16,10.0.0.170 +ALISON_GRUNDER,ALISON_GRUNDER-MPBR16,10.0.0.171 +BERT_DEFRANCESCO,BERT_DEFRANCESCO-MPBR16,10.0.0.172 +LAWANDA_VOGELGESANG,LAWANDA_VOGELGESANG-MPBR16,10.0.0.173 +HA_SILBERBERG,HA_SILBERBERG-MPBR16,10.0.0.174 +SANDI_DIMICCO,SANDI_DIMICCO-MPBR16,10.0.0.175 +VINCE_STANDING,VINCE_STANDING-MPBR16,10.0.0.176 +ROBERT_MONTAS,ROBERT_MONTAS-MPBR16,10.0.0.177 +ADOLFO_CHUONG,ADOLFO_CHUONG-MPBR16,10.0.0.178 +LORE_LINGG,LORE_LINGG-MPBR16,10.0.0.179 +KRYSTLE_PENNYPACKER,KRYSTLE_PENNYPACKER-MPBR16,10.0.0.180 +RACHELLE_SCHANER,RACHELLE_SCHANER-MPBR16,10.0.0.181 +VIOLETA_PRATCHER,VIOLETA_PRATCHER-MPBR16,10.0.0.182 +KARI_SHOVER,KARI_SHOVER-MPBR16,10.0.0.183 +DUNG_ENTRIKEN,DUNG_ENTRIKEN-MPBR16,10.0.0.184 +JAQUELINE_VILLALVAZO,JAQUELINE_VILLALVAZO-MPBR16,10.0.0.185 +RUDOLPH_PINELO,RUDOLPH_PINELO-MPBR16,10.0.0.186 +BRET_KURDZIEL,BRET_KURDZIEL-MPBR16,10.0.0.187 +JESSE_WAUCH,JESSE_WAUCH-MPBR16,10.0.0.188 +CINDA_CANUPP,CINDA_CANUPP-MPBR16,10.0.0.189 +JOEL_MCALARNEY,JOEL_MCALARNEY-MPBR16,10.0.0.190 +STEVEN_SVENNUNGSEN,STEVEN_SVENNUNGSEN-MPBR16,10.0.0.191 +FRED_ROZEK,FRED_ROZEK-MPBR16,10.0.0.192 +TERA_ANDRUSS,TERA_ANDRUSS-MPBR16,10.0.0.193 +ESTA_WILHIDE,ESTA_WILHIDE-MPBR16,10.0.0.194 +JEREMY_OLIVERES,JEREMY_OLIVERES-MPBR16,10.0.0.195 +GAIL_HARRELSON,GAIL_HARRELSON-MPBR16,10.0.0.196 +JEWELL_CARNAHAN,JEWELL_CARNAHAN-MPBR16,10.0.0.197 +TYRON_REAVIS,TYRON_REAVIS-MPBR16,10.0.0.198 +JAMAR_SANJOSE,JAMAR_SANJOSE-MPBR16,10.0.0.199 +PENELOPE_ANNIS,PENELOPE_ANNIS-MPBR16,10.0.0.200 +TONY_CASTANON,TONY_CASTANON-MPBR16,10.0.0.201 +RHONDA_HANNAFORD,RHONDA_HANNAFORD-MPBR16,10.0.0.202 +DARYL_BOGUE,DARYL_BOGUE-MPBR16,10.0.0.203 +MARLON_RENOLLET,MARLON_RENOLLET-MPBR16,10.0.0.204 +MARITA_KEYTON,MARITA_KEYTON-MPBR16,10.0.0.205 +DEWEY_WERTHEIMER,DEWEY_WERTHEIMER-MPBR16,10.0.0.206 +CAROLE_SCHIEFFER,CAROLE_SCHIEFFER-MPBR16,10.0.0.207 +RHONDA_SCHAMS,RHONDA_SCHAMS-MPBR16,10.0.0.208 +LENA_MOLTZ,LENA_MOLTZ-MPBR16,10.0.0.209 +LARUE_GENS,LARUE_GENS-MPBR16,10.0.0.210 +DANITA_TEJADA,DANITA_TEJADA-MPBR16,10.0.0.211 +SHERMAN_BEUS,SHERMAN_BEUS-MPBR16,10.0.0.212 +LOURA_BLANCHE,LOURA_BLANCHE-MPBR16,10.0.0.213 +STEVE_TREMBLEY,STEVE_TREMBLEY-MPBR16,10.0.0.214 +KIM_MONTIE,KIM_MONTIE-MPBR16,10.0.0.215 +JULIAN_DEKLE,JULIAN_DEKLE-MPBR16,10.0.0.216 +LONNY_CIRAOLO,LONNY_CIRAOLO-MPBR16,10.0.0.217 +RUSSEL_BOHMER,RUSSEL_BOHMER-MPBR16,10.0.0.218 +LINDSAY_NASCA,LINDSAY_NASCA-MPBR16,10.0.0.219 +CHASITY_FONGER,CHASITY_FONGER-MPBR16,10.0.0.220 +STEPHAINE_HITTMAN,STEPHAINE_HITTMAN-MPBR16,10.0.0.221 +FELICE_DEROSIA,FELICE_DEROSIA-MPBR16,10.0.0.222 +REX_VAINE,REX_VAINE-MPBR16,10.0.0.223 +MERRILEE_OSTERGREN,MERRILEE_OSTERGREN-MPBR16,10.0.0.224 +MAXIMINA_KOLASA,MAXIMINA_KOLASA-MPBR16,10.0.0.225 +RANDA_REMSEN,RANDA_REMSEN-MPBR16,10.0.0.226 +ALEX_MOLOCK,ALEX_MOLOCK-MPBR16,10.0.0.227 +KELLI_LEANOS,KELLI_LEANOS-MPBR16,10.0.0.228 +BOB_GERACE,BOB_GERACE-MPBR16,10.0.0.229 +ALVARO_MONT,ALVARO_MONT-MPBR16,10.0.0.230 +SON_HEDQUIST,SON_HEDQUIST-MPBR16,10.0.0.231 +WELDON_ROSS,WELDON_ROSS-MPBR16,10.0.0.232 +JACKIE_REINBOLD,JACKIE_REINBOLD-MPBR16,10.0.0.233 +DEVIN_BEAUMONTE,DEVIN_BEAUMONTE-MPBR16,10.0.0.234 +MICHELLE_WILLIBRAND,MICHELLE_WILLIBRAND-MPBR16,10.0.0.235 +BERNIE_HYMAS,BERNIE_HYMAS-MPBR16,10.0.0.236 +ADAM_PINGLETON,ADAM_PINGLETON-MPBR16,10.0.0.237 +BETTE_MADRIZ,BETTE_MADRIZ-MPBR16,10.0.0.238 +BRUNO_HARRIOTT,BRUNO_HARRIOTT-MPBR16,10.0.0.239 +ROCKY_SHUTTER,ROCKY_SHUTTER-MPBR16,10.0.0.240 +FAUSTINO_HERSCHELMAN,FAUSTINO_HERSCHELMAN-MPBR16,10.0.0.241 +LENORA_HALLMARK,LENORA_HALLMARK-MPBR16,10.0.0.242 +ALVA_LANDRETH,ALVA_LANDRETH-MPBR16,10.0.0.243 +HIROKO_LANDRIGAN,HIROKO_LANDRIGAN-MPBR16,10.0.0.244 +ROSETTA_PROVINE,ROSETTA_PROVINE-MPBR16,10.0.0.245 +MARLON_DOUBET,MARLON_DOUBET-MPBR16,10.0.0.246 +ROB_WILLINSKY,ROB_WILLINSKY-MPBR16,10.0.0.247 +CESAR_LOCUST,CESAR_LOCUST-MPBR16,10.0.0.248 +ELENORA_GUESS,ELENORA_GUESS-MPBR16,10.0.0.249 +DEVON_HERBOLD,DEVON_HERBOLD-MPBR16,10.0.0.250 +ALTON_BENBOW,ALTON_BENBOW-MPBR16,10.0.0.251 +CARMEN_MILNE,CARMEN_MILNE-MPBR16,10.0.0.252 +OLIN_MAVITY,OLIN_MAVITY-MPBR16,10.0.0.253 +LORENA_WELFORD,LORENA_WELFORD-MPBR16,10.0.0.254 +HUNTER_MARSCH,HUNTER_MARSCH-MPBR16,10.0.0.255 +AUBREY_JANOSIK,AUBREY_JANOSIK-MPBR16,10.0.1.0 +ALLINE_WAGG,ALLINE_WAGG-MPBR16,10.0.1.1 +BRIDGETT_BADDER,BRIDGETT_BADDER-MPBR16,10.0.1.2 +JOSEPH_MARTI,JOSEPH_MARTI-MPBR16,10.0.1.3 +VEDA_COTTEW,VEDA_COTTEW-MPBR16,10.0.1.4 +HOLLEY_FLOREZ,HOLLEY_FLOREZ-MPBR16,10.0.1.5 +CHARLIE_HOLLOMON,CHARLIE_HOLLOMON-MPBR16,10.0.1.6 +DANNY_PITTMAN,DANNY_PITTMAN-MPBR16,10.0.1.7 +ELANOR_DAGG,ELANOR_DAGG-MPBR16,10.0.1.8 +MARGART_TOURIGNY,MARGART_TOURIGNY-MPBR16,10.0.1.9 +MOHAMMAD_PEDROTTI,MOHAMMAD_PEDROTTI-MPBR16,10.0.1.10 +CHRISTIN_VENEMAN,CHRISTIN_VENEMAN-MPBR16,10.0.1.11 +JUSTIN_KER,JUSTIN_KER-MPBR16,10.0.1.12 +LOUIE_VERBECK,LOUIE_VERBECK-MPBR16,10.0.1.13 +BARRETT_CARLOCK,BARRETT_CARLOCK-MPBR16,10.0.1.14 +YVETTE_DEMARS,YVETTE_DEMARS-MPBR16,10.0.1.15 +JAYNA_SYBOUNHEUAN,JAYNA_SYBOUNHEUAN-MPBR16,10.0.1.16 +LYLE_GILYARD,LYLE_GILYARD-MPBR16,10.0.1.17 +ALAYNA_DAVITO,ALAYNA_DAVITO-MPBR16,10.0.1.18 +SIMONNE_ALLBRITTON,SIMONNE_ALLBRITTON-MPBR16,10.0.1.19 +CLINT_SANTACRUZ,CLINT_SANTACRUZ-MPBR16,10.0.1.20 +CHERYLE_FENNELL,CHERYLE_FENNELL-MPBR16,10.0.1.21 +SHARLA_WINDHAM,SHARLA_WINDHAM-MPBR16,10.0.1.22 +EFRAIN_MONTEVERDE,EFRAIN_MONTEVERDE-MPBR16,10.0.1.23 +DAYNA_SOBEY,DAYNA_SOBEY-MPBR16,10.0.1.24 +THEODORE_FARINO,THEODORE_FARINO-MPBR16,10.0.1.25 +FELISA_MERRIFIELD,FELISA_MERRIFIELD-MPBR16,10.0.1.26 +HILMA_DEMENT,HILMA_DEMENT-MPBR16,10.0.1.27 +TRENTON_OSMAN,TRENTON_OSMAN-MPBR16,10.0.1.28 +VINA_PARRENT,VINA_PARRENT-MPBR16,10.0.1.29 +ABDUL_OKUN,ABDUL_OKUN-MPBR16,10.0.1.30 +BOBBY_CERNY,BOBBY_CERNY-MPBR16,10.0.1.31 +JODEE_MAGARELLI,JODEE_MAGARELLI-MPBR16,10.0.1.32 +NADA_TREFF,NADA_TREFF-MPBR16,10.0.1.33 +TYESHA_MATSKO,TYESHA_MATSKO-MPBR16,10.0.1.34 +MOLLY_KOZAR,MOLLY_KOZAR-MPBR16,10.0.1.35 +MELODEE_TRIPPI,MELODEE_TRIPPI-MPBR16,10.0.1.36 +CLARK_BATEY,CLARK_BATEY-MPBR16,10.0.1.37 +KATIE_SMUIN,KATIE_SMUIN-MPBR16,10.0.1.38 +DELPHINE_MATAS,DELPHINE_MATAS-MPBR16,10.0.1.39 +ALVIN_BYRN,ALVIN_BYRN-MPBR16,10.0.1.40 +ALENE_YAWN,ALENE_YAWN-MPBR16,10.0.1.41 +BECKY_KOSAKOWSKI,BECKY_KOSAKOWSKI-MPBR16,10.0.1.42 +JUNG_KVAM,JUNG_KVAM-MPBR16,10.0.1.43 +TAWNY_PALOS,TAWNY_PALOS-MPBR16,10.0.1.44 +JERILYN_SKATTEBO,JERILYN_SKATTEBO-MPBR16,10.0.1.45 +RIGOBERTO_MANJARREZ,RIGOBERTO_MANJARREZ-MPBR16,10.0.1.46 +SONYA_PIERRE,SONYA_PIERRE-MPBR16,10.0.1.47 +KITTY_FANNINGS,KITTY_FANNINGS-MPBR16,10.0.1.48 +MARLIN_FLINT,MARLIN_FLINT-MPBR16,10.0.1.49 +RICHELLE_CARLEW,RICHELLE_CARLEW-MPBR16,10.0.1.50 +MELISSA_PIFER,MELISSA_PIFER-MPBR16,10.0.1.51 +ISRAEL_MASSO,ISRAEL_MASSO-MPBR16,10.0.1.52 +CARLOTTA_ENCISO,CARLOTTA_ENCISO-MPBR16,10.0.1.53 +KACIE_MARSHA,KACIE_MARSHA-MPBR16,10.0.1.54 +NANETTE_CISNEROS,NANETTE_CISNEROS-MPBR16,10.0.1.55 +LILY_MENCER,LILY_MENCER-MPBR16,10.0.1.56 +ANDREW_LABRADA,ANDREW_LABRADA-MPBR16,10.0.1.57 +ALEXIS_PORCH,ALEXIS_PORCH-MPBR16,10.0.1.58 +JOEL_MCKITRICK,JOEL_MCKITRICK-MPBR16,10.0.1.59 +FERN_PETTWAY,FERN_PETTWAY-MPBR16,10.0.1.60 +REID_FEEMSTER,REID_FEEMSTER-MPBR16,10.0.1.61 +MARIA_ARNS,MARIA_ARNS-MPBR16,10.0.1.62 +ALBA_GUMMO,ALBA_GUMMO-MPBR16,10.0.1.63 +JEFFREY_HEIT,JEFFREY_HEIT-MPBR16,10.0.1.64 +JERMAINE_CRESPI,JERMAINE_CRESPI-MPBR16,10.0.1.65 +ODIS_PINCOCK,ODIS_PINCOCK-MPBR16,10.0.1.66 +OLIN_HANKEY,OLIN_HANKEY-MPBR16,10.0.1.67 +EMMANUEL_TAUER,EMMANUEL_TAUER-MPBR16,10.0.1.68 +DETRA_VIVIANI,DETRA_VIVIANI-MPBR16,10.0.1.69 +GORDON_BANCROFT,GORDON_BANCROFT-MPBR16,10.0.1.70 +JENA_ALLOWAY,JENA_ALLOWAY-MPBR16,10.0.1.71 +BRUCE_KARCICH,BRUCE_KARCICH-MPBR16,10.0.1.72 +TITUS_HINCHMAN,TITUS_HINCHMAN-MPBR16,10.0.1.73 +BART_FORDHAM,BART_FORDHAM-MPBR16,10.0.1.74 +ROSIE_GILDERSLEEVE,ROSIE_GILDERSLEEVE-MPBR16,10.0.1.75 +CORAZON_MATKOVIC,CORAZON_MATKOVIC-MPBR16,10.0.1.76 +EDWIN_FADLEY,EDWIN_FADLEY-MPBR16,10.0.1.77 +FRED_HUDDLESTON,FRED_HUDDLESTON-MPBR16,10.0.1.78 +STEWART_MACKYNEN,STEWART_MACKYNEN-MPBR16,10.0.1.79 +OUIDA_HEUNG,OUIDA_HEUNG-MPBR16,10.0.1.80 +FLOYD_DYCE,FLOYD_DYCE-MPBR16,10.0.1.81 +GLEN_JEFFERDS,GLEN_JEFFERDS-MPBR16,10.0.1.82 +BROCK_COGBURN,BROCK_COGBURN-MPBR16,10.0.1.83 +LEONOR_WILKS,LEONOR_WILKS-MPBR16,10.0.1.84 +LAURICE_BELLINGHAM,LAURICE_BELLINGHAM-MPBR16,10.0.1.85 +PENELOPE_PLATH,PENELOPE_PLATH-MPBR16,10.0.1.86 +MARYLOU_KANGAS,MARYLOU_KANGAS-MPBR16,10.0.1.87 +APRIL_KROTZ,APRIL_KROTZ-MPBR16,10.0.1.88 +CARLOTTA_MATTERS,CARLOTTA_MATTERS-MPBR16,10.0.1.89 +KIRA_MCCONNEY,KIRA_MCCONNEY-MPBR16,10.0.1.90 +CARLEY_NERO,CARLEY_NERO-MPBR16,10.0.1.91 +GILBERTO_DESHA,GILBERTO_DESHA-MPBR16,10.0.1.92 +GRISELDA_RAGER,GRISELDA_RAGER-MPBR16,10.0.1.93 +ALLEEN_KANE,ALLEEN_KANE-MPBR16,10.0.1.94 +KATHARINE_NISHIO,KATHARINE_NISHIO-MPBR16,10.0.1.95 +TABATHA_TOMASINO,TABATHA_TOMASINO-MPBR16,10.0.1.96 +ROXANA_POLOSKY,ROXANA_POLOSKY-MPBR16,10.0.1.97 +CODY_SHABAZZ,CODY_SHABAZZ-MPBR16,10.0.1.98 +CHANTELL_HITZEMAN,CHANTELL_HITZEMAN-MPBR16,10.0.1.99 +ALEXANDER_RUTT,ALEXANDER_RUTT-MPBR16,10.0.1.100 +MAYRA_JERNSTROM,MAYRA_JERNSTROM-MPBR16,10.0.1.101 +AMBER_SAUCEDA,AMBER_SAUCEDA-MPBR16,10.0.1.102 +LOUIS_DENLEY,LOUIS_DENLEY-MPBR16,10.0.1.103 +CANDY_ROSER,CANDY_ROSER-MPBR16,10.0.1.104 +WILFORD_TINKLENBERG,WILFORD_TINKLENBERG-MPBR16,10.0.1.105 +ARRON_BOOKWALTER,ARRON_BOOKWALTER-MPBR16,10.0.1.106 +ERNEST_HOUTS,ERNEST_HOUTS-MPBR16,10.0.1.107 +MARIO_KOSIN,MARIO_KOSIN-MPBR16,10.0.1.108 +BESSIE_GILCREST,BESSIE_GILCREST-MPBR16,10.0.1.109 +CHARLES_SCHROEPFER,CHARLES_SCHROEPFER-MPBR16,10.0.1.110 +VIVIENNE_LIERMAN,VIVIENNE_LIERMAN-MPBR16,10.0.1.111 +TAMMIE_GUSCIORA,TAMMIE_GUSCIORA-MPBR16,10.0.1.112 +BERNARDO_BALDER,BERNARDO_BALDER-MPBR16,10.0.1.113 +HANG_BACKMON,HANG_BACKMON-MPBR16,10.0.1.114 +JESSE_ARGUETA,JESSE_ARGUETA-MPBR16,10.0.1.115 +KENNY_TEST,KENNY_TEST-MPBR16,10.0.1.116 +PATTY_FANTON,PATTY_FANTON-MPBR16,10.0.1.117 +DRUSILLA_WINCHENBACH,DRUSILLA_WINCHENBACH-MPBR16,10.0.1.118 +FORREST_DEBARDELABEN,FORREST_DEBARDELABEN-MPBR16,10.0.1.119 +VINCE_MENTO,VINCE_MENTO-MPBR16,10.0.1.120 +KARIE_COUTCHER,KARIE_COUTCHER-MPBR16,10.0.1.121 +NED_SCHULDER,NED_SCHULDER-MPBR16,10.0.1.122 +NIKOLE_TELEP,NIKOLE_TELEP-MPBR16,10.0.1.123 +JUSTINA_NAES,JUSTINA_NAES-MPBR16,10.0.1.124 +MAGDALENA_TONG,MAGDALENA_TONG-MPBR16,10.0.1.125 +FLOYD_SWOPE,FLOYD_SWOPE-MPBR16,10.0.1.126 +SHASTA_MICHITSCH,SHASTA_MICHITSCH-MPBR16,10.0.1.127 +ASHLYN_KNEIP,ASHLYN_KNEIP-MPBR16,10.0.1.128 +OLIMPIA_MANDERS,OLIMPIA_MANDERS-MPBR16,10.0.1.129 +ANTHONY_STANSBERRY,ANTHONY_STANSBERRY-MPBR16,10.0.1.130 +GILBERT_KLEIFGEN,GILBERT_KLEIFGEN-MPBR16,10.0.1.131 +KELLY_APPLEGARTH,KELLY_APPLEGARTH-MPBR16,10.0.1.132 +ANDREA_RATHROCK,ANDREA_RATHROCK-MPBR16,10.0.1.133 +KEN_WEIST,KEN_WEIST-MPBR16,10.0.1.134 +ALLIE_LIND,ALLIE_LIND-MPBR16,10.0.1.135 +BERNIE_GALLISHAW,BERNIE_GALLISHAW-MPBR16,10.0.1.136 +RUBEN_CHAUHAN,RUBEN_CHAUHAN-MPBR16,10.0.1.137 +TIMMY_SHRAMEK,TIMMY_SHRAMEK-MPBR16,10.0.1.138 +DIEDRA_NEUMAYER,DIEDRA_NEUMAYER-MPBR16,10.0.1.139 +SHERMAN_MALIS,SHERMAN_MALIS-MPBR16,10.0.1.140 +LORIE_DELASBOUR,LORIE_DELASBOUR-MPBR16,10.0.1.141 +NEVA_LAMPHIER,NEVA_LAMPHIER-MPBR16,10.0.1.142 +CARMEL_RUHNKE,CARMEL_RUHNKE-MPBR16,10.0.1.143 +CHIN_SACHE,CHIN_SACHE-MPBR16,10.0.1.144 +MINNIE_BURNSWORTH,MINNIE_BURNSWORTH-MPBR16,10.0.1.145 +CORINNE_DANA,CORINNE_DANA-MPBR16,10.0.1.146 +ROSINA_MARANDER,ROSINA_MARANDER-MPBR16,10.0.1.147 +ELINOR_RUDASILL,ELINOR_RUDASILL-MPBR16,10.0.1.148 +JACKIE_SEMPLE,JACKIE_SEMPLE-MPBR16,10.0.1.149 +ADELLA_READNOUR,ADELLA_READNOUR-MPBR16,10.0.1.150 +MARLON_GARNETTE,MARLON_GARNETTE-MPBR16,10.0.1.151 +DOROTHEA_ZENG,DOROTHEA_ZENG-MPBR16,10.0.1.152 +EMILY_MCCLINE,EMILY_MCCLINE-MPBR16,10.0.1.153 +RUBEN_BUSUTTIL,RUBEN_BUSUTTIL-MPBR16,10.0.1.154 +NISHA_BUIST,NISHA_BUIST-MPBR16,10.0.1.155 +ASA_HUTTEN,ASA_HUTTEN-MPBR16,10.0.1.156 +STEPHAN_CASTILO,STEPHAN_CASTILO-MPBR16,10.0.1.157 +SYLVIA_ZAUSCH,SYLVIA_ZAUSCH-MPBR16,10.0.1.158 +JOE_GRAHAM,JOE_GRAHAM-MPBR16,10.0.1.159 +CARRI_DETOMMASO,CARRI_DETOMMASO-MPBR16,10.0.1.160 +FRANCISCO_COLGROVE,FRANCISCO_COLGROVE-MPBR16,10.0.1.161 +CESAR_KOURI,CESAR_KOURI-MPBR16,10.0.1.162 +ALFONSO_BROSEY,ALFONSO_BROSEY-MPBR16,10.0.1.163 +MALCOLM_SWEITZER,MALCOLM_SWEITZER-MPBR16,10.0.1.164 +CLYDE_GIGANTE,CLYDE_GIGANTE-MPBR16,10.0.1.165 +JOYCELYN_ROMANSKI,JOYCELYN_ROMANSKI-MPBR16,10.0.1.166 +CAITLYN_WEST,CAITLYN_WEST-MPBR16,10.0.1.167 +WILLIAM_ENGELKEMIER,WILLIAM_ENGELKEMIER-MPBR16,10.0.1.168 +VIVIANA_INGERSON,VIVIANA_INGERSON-MPBR16,10.0.1.169 +MANUELA_NEISLER,MANUELA_NEISLER-MPBR16,10.0.1.170 +QUENTIN_GOELDNER,QUENTIN_GOELDNER-MPBR16,10.0.1.171 +ALISHA_LATSON,ALISHA_LATSON-MPBR16,10.0.1.172 +NATHAN_LORENZANA,NATHAN_LORENZANA-MPBR16,10.0.1.173 +EDMUND_GIZA,EDMUND_GIZA-MPBR16,10.0.1.174 +KENDRICK_TURRENTINE,KENDRICK_TURRENTINE-MPBR16,10.0.1.175 +BUDDY_CRATCH,BUDDY_CRATCH-MPBR16,10.0.1.176 +ALIA_LITCHFORD,ALIA_LITCHFORD-MPBR16,10.0.1.177 +IESHA_MEDEZ,IESHA_MEDEZ-MPBR16,10.0.1.178 +GABRIELLA_GRINDSTAFF,GABRIELLA_GRINDSTAFF-MPBR16,10.0.1.179 +MARGARITE_BESSARD,MARGARITE_BESSARD-MPBR16,10.0.1.180 +MILTON_WNUK,MILTON_WNUK-MPBR16,10.0.1.181 +CASEY_BARTONE,CASEY_BARTONE-MPBR16,10.0.1.182 +PEGGY_SORUM,PEGGY_SORUM-MPBR16,10.0.1.183 +MARCIA_PECKINPAUGH,MARCIA_PECKINPAUGH-MPBR16,10.0.1.184 +WILLA_BLASETTI,WILLA_BLASETTI-MPBR16,10.0.1.185 +JAVIER_DURALL,JAVIER_DURALL-MPBR16,10.0.1.186 +GAIL_SCHOBER,GAIL_SCHOBER-MPBR16,10.0.1.187 +TRACEY_HEARL,TRACEY_HEARL-MPBR16,10.0.1.188 +TORRIE_LABER,TORRIE_LABER-MPBR16,10.0.1.189 +DEVIN_BALINT,DEVIN_BALINT-MPBR16,10.0.1.190 +ANNALISA_RUF,ANNALISA_RUF-MPBR16,10.0.1.191 +LON_DEJOHN,LON_DEJOHN-MPBR16,10.0.1.192 +SANG_MCDUFFIE,SANG_MCDUFFIE-MPBR16,10.0.1.193 +TONY_AMAYA,TONY_AMAYA-MPBR16,10.0.1.194 +SERGIO_SADOWSKY,SERGIO_SADOWSKY-MPBR16,10.0.1.195 +THOMAS_DUBREUIL,THOMAS_DUBREUIL-MPBR16,10.0.1.196 +NICOLAS_SEIDL,NICOLAS_SEIDL-MPBR16,10.0.1.197 +IRA_JEFFRESS,IRA_JEFFRESS-MPBR16,10.0.1.198 +MELVIN_VILLEDA,MELVIN_VILLEDA-MPBR16,10.0.1.199 +DOMINICK_CAUTHON,DOMINICK_CAUTHON-MPBR16,10.0.1.200 +CLEORA_OGUIN,CLEORA_OGUIN-MPBR16,10.0.1.201 +ANNETTA_SAINTLOUIS,ANNETTA_SAINTLOUIS-MPBR16,10.0.1.202 +KARIE_ALCALDE,KARIE_ALCALDE-MPBR16,10.0.1.203 +EDMUND_FAIRLESS,EDMUND_FAIRLESS-MPBR16,10.0.1.204 +GARTH_TRAMBLE,GARTH_TRAMBLE-MPBR16,10.0.1.205 +PAOLA_SUAREZ,PAOLA_SUAREZ-MPBR16,10.0.1.206 +AUSTIN_LUPTON,AUSTIN_LUPTON-MPBR16,10.0.1.207 +MIGUEL_FANG,MIGUEL_FANG-MPBR16,10.0.1.208 +MELIDA_HEROD,MELIDA_HEROD-MPBR16,10.0.1.209 +NOAH_GALIK,NOAH_GALIK-MPBR16,10.0.1.210 +DENNA_ROLFE,DENNA_ROLFE-MPBR16,10.0.1.211 +MERI_HODA,MERI_HODA-MPBR16,10.0.1.212 +HARLAN_ODONALD,HARLAN_ODONALD-MPBR16,10.0.1.213 +ALLYSON_HENION,ALLYSON_HENION-MPBR16,10.0.1.214 +GARY_LARCH,GARY_LARCH-MPBR16,10.0.1.215 +PRINCE_PEARY,PRINCE_PEARY-MPBR16,10.0.1.216 +LURA_BARINGER,LURA_BARINGER-MPBR16,10.0.1.217 +DARNELL_TABER,DARNELL_TABER-MPBR16,10.0.1.218 +NORBERT_COCUZZA,NORBERT_COCUZZA-MPBR16,10.0.1.219 +DEVIN_GAYLORD,DEVIN_GAYLORD-MPBR16,10.0.1.220 +MAMIE_MACKEN,MAMIE_MACKEN-MPBR16,10.0.1.221 +ARLINE_HODGE,ARLINE_HODGE-MPBR16,10.0.1.222 +LESLIE_URBANO,LESLIE_URBANO-MPBR16,10.0.1.223 +KARISSA_OBERT,KARISSA_OBERT-MPBR16,10.0.1.224 +FREDERICK_ARBALLO,FREDERICK_ARBALLO-MPBR16,10.0.1.225 +STEWART_NOBLIN,STEWART_NOBLIN-MPBR16,10.0.1.226 +DEIRDRE_MIJARES,DEIRDRE_MIJARES-MPBR16,10.0.1.227 +GISELA_WESTBERG,GISELA_WESTBERG-MPBR16,10.0.1.228 +HAL_FRANCES,HAL_FRANCES-MPBR16,10.0.1.229 +JEAN_ZAYAC,JEAN_ZAYAC-MPBR16,10.0.1.230 +TODD_LATTRELL,TODD_LATTRELL-MPBR16,10.0.1.231 +AMPARO_SIRES,AMPARO_SIRES-MPBR16,10.0.1.232 +ROLAND_SHEROD,ROLAND_SHEROD-MPBR16,10.0.1.233 +LOUISE_ELSHANT,LOUISE_ELSHANT-MPBR16,10.0.1.234 +DOREEN_KAUTZ,DOREEN_KAUTZ-MPBR16,10.0.1.235 +ROGELIO_CHIULLI,ROGELIO_CHIULLI-MPBR16,10.0.1.236 +DARIO_GLIDEWELL,DARIO_GLIDEWELL-MPBR16,10.0.1.237 +LESLIE_VANSCOY,LESLIE_VANSCOY-MPBR16,10.0.1.238 +LEE_NIEVES,LEE_NIEVES-MPBR16,10.0.1.239 +LANDON_WIECK,LANDON_WIECK-MPBR16,10.0.1.240 +SIMONE_JUUL,SIMONE_JUUL-MPBR16,10.0.1.241 +REDA_DIETRICK,REDA_DIETRICK-MPBR16,10.0.1.242 +AKILAH_MAIETTA,AKILAH_MAIETTA-MPBR16,10.0.1.243 +RAYE_KINMAN,RAYE_KINMAN-MPBR16,10.0.1.244 +DELFINA_MIKKELSON,DELFINA_MIKKELSON-MPBR16,10.0.1.245 +ORVILLE_SETZLER,ORVILLE_SETZLER-MPBR16,10.0.1.246 +RHODA_MOLDAN,RHODA_MOLDAN-MPBR16,10.0.1.247 +TRISH_SCHILLINGER,TRISH_SCHILLINGER-MPBR16,10.0.1.248 +RODRIGO_SCROGGIN,RODRIGO_SCROGGIN-MPBR16,10.0.1.249 +STERLING_SHRINER,STERLING_SHRINER-MPBR16,10.0.1.250 +HARVEY_TAUBER,HARVEY_TAUBER-MPBR16,10.0.1.251 +CLIFF_MONTOUR,CLIFF_MONTOUR-MPBR16,10.0.1.252 +KURTIS_YARK,KURTIS_YARK-MPBR16,10.0.1.253 +COLLEEN_SLATE,COLLEEN_SLATE-MPBR16,10.0.1.254 +TEQUILA_GROSKREUTZ,TEQUILA_GROSKREUTZ-MPBR16,10.0.1.255 +RUBEN_ALGARIN,RUBEN_ALGARIN-MPBR16,10.0.2.0 +KENNETH_INNOCENTI,KENNETH_INNOCENTI-MPBR16,10.0.2.1 +CHARMAINE_ALTERMATT,CHARMAINE_ALTERMATT-MPBR16,10.0.2.2 +JOHN_MOJICA,JOHN_MOJICA-MPBR16,10.0.2.3 +FREDDY_DELORE,FREDDY_DELORE-MPBR16,10.0.2.4 +FLORENTINO_BLAY,FLORENTINO_BLAY-MPBR16,10.0.2.5 +LANE_ALEXNDER,LANE_ALEXNDER-MPBR16,10.0.2.6 +CAROLINA_FINICAL,CAROLINA_FINICAL-MPBR16,10.0.2.7 +COY_CASHION,COY_CASHION-MPBR16,10.0.2.8 +LISA_ERB,LISA_ERB-MPBR16,10.0.2.9 +NORENE_HODNETT,NORENE_HODNETT-MPBR16,10.0.2.10 +RENE_EDINGER,RENE_EDINGER-MPBR16,10.0.2.11 +LINCOLN_LUCIER,LINCOLN_LUCIER-MPBR16,10.0.2.12 +COLETTE_SLOVER,COLETTE_SLOVER-MPBR16,10.0.2.13 +WILBUR_DEDECKER,WILBUR_DEDECKER-MPBR16,10.0.2.14 +MARTHA_CHESSER,MARTHA_CHESSER-MPBR16,10.0.2.15 +FRANCOISE_LAVINE,FRANCOISE_LAVINE-MPBR16,10.0.2.16 +MARLEN_PAULSHOCK,MARLEN_PAULSHOCK-MPBR16,10.0.2.17 +JULENE_MOUSLEY,JULENE_MOUSLEY-MPBR16,10.0.2.18 +RUFUS_TREZZA,RUFUS_TREZZA-MPBR16,10.0.2.19 +SONNY_DEHNERT,SONNY_DEHNERT-MPBR16,10.0.2.20 +JON_PARVIN,JON_PARVIN-MPBR16,10.0.2.21 +TRINIDAD_SEEVERS,TRINIDAD_SEEVERS-MPBR16,10.0.2.22 +MYRON_WINFREY,MYRON_WINFREY-MPBR16,10.0.2.23 +TASHIA_KNOLTON,TASHIA_KNOLTON-MPBR16,10.0.2.24 +VERNON_CRIVELLO,VERNON_CRIVELLO-MPBR16,10.0.2.25 +CHANA_FRINK,CHANA_FRINK-MPBR16,10.0.2.26 +CHARLIE_REETZ,CHARLIE_REETZ-MPBR16,10.0.2.27 +OSVALDO_GANDY,OSVALDO_GANDY-MPBR16,10.0.2.28 +HONG_SEYMORE,HONG_SEYMORE-MPBR16,10.0.2.29 +CAROLA_RATTRAY,CAROLA_RATTRAY-MPBR16,10.0.2.30 +LANNY_VANDENBERGHE,LANNY_VANDENBERGHE-MPBR16,10.0.2.31 +LAVERN_LONGBOTHAM,LAVERN_LONGBOTHAM-MPBR16,10.0.2.32 +PATRICK_PELT,PATRICK_PELT-MPBR16,10.0.2.33 +MEREDITH_VANLUVEN,MEREDITH_VANLUVEN-MPBR16,10.0.2.34 +WILBUR_PALADINO,WILBUR_PALADINO-MPBR16,10.0.2.35 +CHESTER_STANKO,CHESTER_STANKO-MPBR16,10.0.2.36 +NANNIE_MONTS,NANNIE_MONTS-MPBR16,10.0.2.37 +SCOT_ROOD,SCOT_ROOD-MPBR16,10.0.2.38 +LILLY_WANK,LILLY_WANK-MPBR16,10.0.2.39 +ANTONIO_FATE,ANTONIO_FATE-MPBR16,10.0.2.40 +CARMINA_RIBAUDO,CARMINA_RIBAUDO-MPBR16,10.0.2.41 +DIAMOND_STAUCH,DIAMOND_STAUCH-MPBR16,10.0.2.42 +BRAD_LANDAVERDE,BRAD_LANDAVERDE-MPBR16,10.0.2.43 +FRANK_MICKLES,FRANK_MICKLES-MPBR16,10.0.2.44 +NELLIE_KAMIMURA,NELLIE_KAMIMURA-MPBR16,10.0.2.45 +TAWNY_KURIGER,TAWNY_KURIGER-MPBR16,10.0.2.46 +LAWRENCE_THORELL,LAWRENCE_THORELL-MPBR16,10.0.2.47 +TYLER_FONDOW,TYLER_FONDOW-MPBR16,10.0.2.48 +RUTH_ARMS,RUTH_ARMS-MPBR16,10.0.2.49 +ROMELIA_WIXTED,ROMELIA_WIXTED-MPBR16,10.0.2.50 +ROSALINDA_MINNIEFIELD,ROSALINDA_MINNIEFIELD-MPBR16,10.0.2.51 +HAL_GREAVER,HAL_GREAVER-MPBR16,10.0.2.52 +LARHONDA_GWALTNEY,LARHONDA_GWALTNEY-MPBR16,10.0.2.53 +DARLENE_REIAL,DARLENE_REIAL-MPBR16,10.0.2.54 +CLAUDE_ALLWARDT,CLAUDE_ALLWARDT-MPBR16,10.0.2.55 +FREDDY_PLITT,FREDDY_PLITT-MPBR16,10.0.2.56 +HORACIO_TRISKA,HORACIO_TRISKA-MPBR16,10.0.2.57 +JEFFREY_PETRILLA,JEFFREY_PETRILLA-MPBR16,10.0.2.58 +ROSEMARIE_PEAY,ROSEMARIE_PEAY-MPBR16,10.0.2.59 +EDDIE_MCCANTS,EDDIE_MCCANTS-MPBR16,10.0.2.60 +RON_JACKIEWICZ,RON_JACKIEWICZ-MPBR16,10.0.2.61 +DEE_GENZ,DEE_GENZ-MPBR16,10.0.2.62 +CHARLIE_CRONKHITE,CHARLIE_CRONKHITE-MPBR16,10.0.2.63 +ARDELL_NINKE,ARDELL_NINKE-MPBR16,10.0.2.64 +SHAWN_ASCENCIO,SHAWN_ASCENCIO-MPBR16,10.0.2.65 +MEGAN_REIGH,MEGAN_REIGH-MPBR16,10.0.2.66 +MIRA_NORRELL,MIRA_NORRELL-MPBR16,10.0.2.67 +JAKE_GALLAGHER,JAKE_GALLAGHER-MPBR16,10.0.2.68 +CAROLINA_MCDALE,CAROLINA_MCDALE-MPBR16,10.0.2.69 +BERRY_PHILLPS,BERRY_PHILLPS-MPBR16,10.0.2.70 +ROSEMARIE_FOUTCH,ROSEMARIE_FOUTCH-MPBR16,10.0.2.71 +ERNEST_RIDDER,ERNEST_RIDDER-MPBR16,10.0.2.72 +SIMON_DRAHEIM,SIMON_DRAHEIM-MPBR16,10.0.2.73 +ELMER_DAGNAN,ELMER_DAGNAN-MPBR16,10.0.2.74 +KYLE_ESAW,KYLE_ESAW-MPBR16,10.0.2.75 +KIRA_MADAGAN,KIRA_MADAGAN-MPBR16,10.0.2.76 +HANS_WIBBENS,HANS_WIBBENS-MPBR16,10.0.2.77 +RAY_CAVALIER,RAY_CAVALIER-MPBR16,10.0.2.78 +BEATRICE_CULBERT,BEATRICE_CULBERT-MPBR16,10.0.2.79 +KENNY_LEINONEN,KENNY_LEINONEN-MPBR16,10.0.2.80 +ESTER_CARRIER,ESTER_CARRIER-MPBR16,10.0.2.81 +BRIGETTE_HICIANO,BRIGETTE_HICIANO-MPBR16,10.0.2.82 +DOMINICK_GIRONDA,DOMINICK_GIRONDA-MPBR16,10.0.2.83 +DANA_KUHL,DANA_KUHL-MPBR16,10.0.2.84 +MARVEL_RYKERT,MARVEL_RYKERT-MPBR16,10.0.2.85 +TERRELL_SLY,TERRELL_SLY-MPBR16,10.0.2.86 +ANGELINA_DESROSIERS,ANGELINA_DESROSIERS-MPBR16,10.0.2.87 +MICHELLE_SEELIGER,MICHELLE_SEELIGER-MPBR16,10.0.2.88 +SCOTTY_SIGLIN,SCOTTY_SIGLIN-MPBR16,10.0.2.89 +ISAIAH_PANITZ,ISAIAH_PANITZ-MPBR16,10.0.2.90 +MATILDA_VASCONCELLOS,MATILDA_VASCONCELLOS-MPBR16,10.0.2.91 +VANDA_GILBERTSON,VANDA_GILBERTSON-MPBR16,10.0.2.92 +LARUE_ORTEGO,LARUE_ORTEGO-MPBR16,10.0.2.93 +JOYE_MICHELLI,JOYE_MICHELLI-MPBR16,10.0.2.94 +RICARDO_GOWERS,RICARDO_GOWERS-MPBR16,10.0.2.95 +STAR_SWEENY,STAR_SWEENY-MPBR16,10.0.2.96 +LOVIE_CONNOLLY,LOVIE_CONNOLLY-MPBR16,10.0.2.97 +SON_SCHRADER,SON_SCHRADER-MPBR16,10.0.2.98 +NICK_BONKOWSKI,NICK_BONKOWSKI-MPBR16,10.0.2.99 +SHANTAY_DEGRAVE,SHANTAY_DEGRAVE-MPBR16,10.0.2.100 +MICHELLE_MCCRACKER,MICHELLE_MCCRACKER-MPBR16,10.0.2.101 +MICHEAL_FINLAY,MICHEAL_FINLAY-MPBR16,10.0.2.102 +NELL_LOCKEN,NELL_LOCKEN-MPBR16,10.0.2.103 +REBECKA_AMSDELL,REBECKA_AMSDELL-MPBR16,10.0.2.104 +RUBIN_GREENLY,RUBIN_GREENLY-MPBR16,10.0.2.105 +ARCELIA_VILLANEUVA,ARCELIA_VILLANEUVA-MPBR16,10.0.2.106 +DANIKA_VANWAGNER,DANIKA_VANWAGNER-MPBR16,10.0.2.107 +BONNIE_TESTA,BONNIE_TESTA-MPBR16,10.0.2.108 +AUBREY_LAUTT,AUBREY_LAUTT-MPBR16,10.0.2.109 +JAY_STRATTON,JAY_STRATTON-MPBR16,10.0.2.110 +EDWIN_KAUPHUSMAN,EDWIN_KAUPHUSMAN-MPBR16,10.0.2.111 +IRA_GODLESKI,IRA_GODLESKI-MPBR16,10.0.2.112 +MIKE_TADLOCK,MIKE_TADLOCK-MPBR16,10.0.2.113 +MINNIE_MACHO,MINNIE_MACHO-MPBR16,10.0.2.114 +MARCOS_AMENT,MARCOS_AMENT-MPBR16,10.0.2.115 +ALETA_RODERICK,ALETA_RODERICK-MPBR16,10.0.2.116 +LOUIE_SCUDDER,LOUIE_SCUDDER-MPBR16,10.0.2.117 +ANTOINETTE_GIL,ANTOINETTE_GIL-MPBR16,10.0.2.118 +MAE_VICARS,MAE_VICARS-MPBR16,10.0.2.119 +TODD_ARMAS,TODD_ARMAS-MPBR16,10.0.2.120 +ASHLIE_FLING,ASHLIE_FLING-MPBR16,10.0.2.121 +JAKE_ALEKNA,JAKE_ALEKNA-MPBR16,10.0.2.122 +MICHELLE_HAROLDSON,MICHELLE_HAROLDSON-MPBR16,10.0.2.123 +JON_COLELLO,JON_COLELLO-MPBR16,10.0.2.124 +GILBERTO_SEK,GILBERTO_SEK-MPBR16,10.0.2.125 +HELLEN_BALESTRIERI,HELLEN_BALESTRIERI-MPBR16,10.0.2.126 +PERCY_SANTORE,PERCY_SANTORE-MPBR16,10.0.2.127 +NAOMI_OVERHULSER,NAOMI_OVERHULSER-MPBR16,10.0.2.128 +GERTUDE_RICHARDS,GERTUDE_RICHARDS-MPBR16,10.0.2.129 +GRETA_LASKEY,GRETA_LASKEY-MPBR16,10.0.2.130 +JOHNATHAN_MOBLEY,JOHNATHAN_MOBLEY-MPBR16,10.0.2.131 +LYNETTE_SCHAUMAN,LYNETTE_SCHAUMAN-MPBR16,10.0.2.132 +ROMA_TAMBLYN,ROMA_TAMBLYN-MPBR16,10.0.2.133 +EUGENIO_MANNELLA,EUGENIO_MANNELLA-MPBR16,10.0.2.134 +LANCE_SLOTEMAKER,LANCE_SLOTEMAKER-MPBR16,10.0.2.135 +JANELLE_PERRYMAN,JANELLE_PERRYMAN-MPBR16,10.0.2.136 +LAKESHA_KUYPER,LAKESHA_KUYPER-MPBR16,10.0.2.137 +MICKEY_BALLENSKY,MICKEY_BALLENSKY-MPBR16,10.0.2.138 +REYNALDO_FEDE,REYNALDO_FEDE-MPBR16,10.0.2.139 +KELLY_WEDLOCK,KELLY_WEDLOCK-MPBR16,10.0.2.140 +MOSES_TAPLEY,MOSES_TAPLEY-MPBR16,10.0.2.141 +BIANCA_GANGADYAL,BIANCA_GANGADYAL-MPBR16,10.0.2.142 +MILTON_DARGIN,MILTON_DARGIN-MPBR16,10.0.2.143 +IMOGENE_STENERSON,IMOGENE_STENERSON-MPBR16,10.0.2.144 +ARTIE_BADE,ARTIE_BADE-MPBR16,10.0.2.145 +WILFRED_DEGAETANO,WILFRED_DEGAETANO-MPBR16,10.0.2.146 +ANDRES_PEDROTTI,ANDRES_PEDROTTI-MPBR16,10.0.2.147 +TORY_PESTANO,TORY_PESTANO-MPBR16,10.0.2.148 +FRED_ZANGARA,FRED_ZANGARA-MPBR16,10.0.2.149 +IRA_BLILER,IRA_BLILER-MPBR16,10.0.2.150 +ALLAN_KYTE,ALLAN_KYTE-MPBR16,10.0.2.151 +LAVERNE_CALLICOAT,LAVERNE_CALLICOAT-MPBR16,10.0.2.152 +ARTURO_KILMARTIN,ARTURO_KILMARTIN-MPBR16,10.0.2.153 +TYLER_DERRICK,TYLER_DERRICK-MPBR16,10.0.2.154 +CARMELA_GRITSCH,CARMELA_GRITSCH-MPBR16,10.0.2.155 +CHRISTIAN_DARTER,CHRISTIAN_DARTER-MPBR16,10.0.2.156 +TESSIE_GOLDSBY,TESSIE_GOLDSBY-MPBR16,10.0.2.157 +ALLEGRA_MARAGNO,ALLEGRA_MARAGNO-MPBR16,10.0.2.158 +JEFFERSON_SIEWERS,JEFFERSON_SIEWERS-MPBR16,10.0.2.159 +LEO_HOOGLAND,LEO_HOOGLAND-MPBR16,10.0.2.160 +NANA_BEBEAU,NANA_BEBEAU-MPBR16,10.0.2.161 +ROBYN_HOLROYD,ROBYN_HOLROYD-MPBR16,10.0.2.162 +BETTE_UMBERGER,BETTE_UMBERGER-MPBR16,10.0.2.163 +RACHELL_LAYMON,RACHELL_LAYMON-MPBR16,10.0.2.164 +JERMAINE_DECOSTA,JERMAINE_DECOSTA-MPBR16,10.0.2.165 +DARRYL_THORESEN,DARRYL_THORESEN-MPBR16,10.0.2.166 +FRIEDA_MARANGONI,FRIEDA_MARANGONI-MPBR16,10.0.2.167 +CHONG_GIVENS,CHONG_GIVENS-MPBR16,10.0.2.168 +VERN_STEINER,VERN_STEINER-MPBR16,10.0.2.169 +JOSEPH_KINGTON,JOSEPH_KINGTON-MPBR16,10.0.2.170 +ANDRES_BJORNBERG,ANDRES_BJORNBERG-MPBR16,10.0.2.171 +DOYLE_EVERSMEYER,DOYLE_EVERSMEYER-MPBR16,10.0.2.172 +JAVIER_RACETTE,JAVIER_RACETTE-MPBR16,10.0.2.173 +DARRELL_MIHOR,DARRELL_MIHOR-MPBR16,10.0.2.174 +MYLES_TEDDER,MYLES_TEDDER-MPBR16,10.0.2.175 +RALPH_SKULTETY,RALPH_SKULTETY-MPBR16,10.0.2.176 +ART_GOLDFARB,ART_GOLDFARB-MPBR16,10.0.2.177 +BRYCE_AUGUSTIN,BRYCE_AUGUSTIN-MPBR16,10.0.2.178 +TRACY_OLSEN,TRACY_OLSEN-MPBR16,10.0.2.179 +JODEE_ZIRBEL,JODEE_ZIRBEL-MPBR16,10.0.2.180 +KIRSTEN_SMILER,KIRSTEN_SMILER-MPBR16,10.0.2.181 +CARYN_COMSTOCK,CARYN_COMSTOCK-MPBR16,10.0.2.182 +NANCY_ABERLE,NANCY_ABERLE-MPBR16,10.0.2.183 +DELENA_TATTERSHALL,DELENA_TATTERSHALL-MPBR16,10.0.2.184 +TRACEY_ATCHESON,TRACEY_ATCHESON-MPBR16,10.0.2.185 +KAYLEIGH_COURTEMANCHE,KAYLEIGH_COURTEMANCHE-MPBR16,10.0.2.186 +DONA_DADLANI,DONA_DADLANI-MPBR16,10.0.2.187 +MARCO_MAHA,MARCO_MAHA-MPBR16,10.0.2.188 +MALINDA_VALLIN,MALINDA_VALLIN-MPBR16,10.0.2.189 +ALLIE_MCENTYRE,ALLIE_MCENTYRE-MPBR16,10.0.2.190 +JASPER_GOLDSTON,JASPER_GOLDSTON-MPBR16,10.0.2.191 +BRYNN_GIST,BRYNN_GIST-MPBR16,10.0.2.192 +KIRBY_WICKEY,KIRBY_WICKEY-MPBR16,10.0.2.193 +RACHEL_WENTZ,RACHEL_WENTZ-MPBR16,10.0.2.194 +KIMIKO_ROOD,KIMIKO_ROOD-MPBR16,10.0.2.195 +LEISA_ESPOSTO,LEISA_ESPOSTO-MPBR16,10.0.2.196 +CHERI_BRINKMANN,CHERI_BRINKMANN-MPBR16,10.0.2.197 +VITO_PACHERO,VITO_PACHERO-MPBR16,10.0.2.198 +KRYSTYNA_TANNEHILL,KRYSTYNA_TANNEHILL-MPBR16,10.0.2.199 +TAYLOR_ESSARY,TAYLOR_ESSARY-MPBR16,10.0.2.200 +JOSEFINA_CRALL,JOSEFINA_CRALL-MPBR16,10.0.2.201 +THOMAS_PANNING,THOMAS_PANNING-MPBR16,10.0.2.202 +GRANT_MORREALE,GRANT_MORREALE-MPBR16,10.0.2.203 +EDWIN_VORWERK,EDWIN_VORWERK-MPBR16,10.0.2.204 +RANDALL_NIEHAUS,RANDALL_NIEHAUS-MPBR16,10.0.2.205 +MARTY_PORCHE,MARTY_PORCHE-MPBR16,10.0.2.206 +NERISSA_BEAUCAGE,NERISSA_BEAUCAGE-MPBR16,10.0.2.207 +ALTAGRACIA_SEDBERRY,ALTAGRACIA_SEDBERRY-MPBR16,10.0.2.208 +SERGIO_RAYSON,SERGIO_RAYSON-MPBR16,10.0.2.209 +TRACY_SNELLING,TRACY_SNELLING-MPBR16,10.0.2.210 +SANJUANA_TRINGALI,SANJUANA_TRINGALI-MPBR16,10.0.2.211 +LUTHER_THRAN,LUTHER_THRAN-MPBR16,10.0.2.212 +DANITA_BLOSS,DANITA_BLOSS-MPBR16,10.0.2.213 +RUFUS_WESLEY,RUFUS_WESLEY-MPBR16,10.0.2.214 +CAROLINE_LIVERMORE,CAROLINE_LIVERMORE-MPBR16,10.0.2.215 +LIZZIE_HERSH,LIZZIE_HERSH-MPBR16,10.0.2.216 +SHIRLEY_SANCE,SHIRLEY_SANCE-MPBR16,10.0.2.217 +ARON_PIGNATELLO,ARON_PIGNATELLO-MPBR16,10.0.2.218 +MICHEAL_CASKEY,MICHEAL_CASKEY-MPBR16,10.0.2.219 +NOEL_MELLOTT,NOEL_MELLOTT-MPBR16,10.0.2.220 +MARINA_MATO,MARINA_MATO-MPBR16,10.0.2.221 +ISIDRO_FANNING,ISIDRO_FANNING-MPBR16,10.0.2.222 +JOVITA_BEACHY,JOVITA_BEACHY-MPBR16,10.0.2.223 +KAREEM_SAYLER,KAREEM_SAYLER-MPBR16,10.0.2.224 +VINNIE_GILLUND,VINNIE_GILLUND-MPBR16,10.0.2.225 +KELSEY_SILVERHORN,KELSEY_SILVERHORN-MPBR16,10.0.2.226 +JERROLD_BOGUE,JERROLD_BOGUE-MPBR16,10.0.2.227 +ALECIA_WASOWSKI,ALECIA_WASOWSKI-MPBR16,10.0.2.228 +CLAUDE_SAGGESE,CLAUDE_SAGGESE-MPBR16,10.0.2.229 +KEELY_SMOLINSKY,KEELY_SMOLINSKY-MPBR16,10.0.2.230 +ALVIN_FINNELL,ALVIN_FINNELL-MPBR16,10.0.2.231 +FELIX_MAZZARIELLO,FELIX_MAZZARIELLO-MPBR16,10.0.2.232 +ARLA_KOTTERNA,ARLA_KOTTERNA-MPBR16,10.0.2.233 +EDMUND_LIVINGSTON,EDMUND_LIVINGSTON-MPBR16,10.0.2.234 +MAXWELL_CALCAGNO,MAXWELL_CALCAGNO-MPBR16,10.0.2.235 +CLAIR_HULCY,CLAIR_HULCY-MPBR16,10.0.2.236 +JOHN_SEVIGNY,JOHN_SEVIGNY-MPBR16,10.0.2.237 +KATELYN_SHAPPELL,KATELYN_SHAPPELL-MPBR16,10.0.2.238 +JOYE_NAVARETTE,JOYE_NAVARETTE-MPBR16,10.0.2.239 +IVA_KAPLAN,IVA_KAPLAN-MPBR16,10.0.2.240 +RONALD_SERVISS,RONALD_SERVISS-MPBR16,10.0.2.241 +FORREST_VALDES,FORREST_VALDES-MPBR16,10.0.2.242 +WARREN_GOLLNICK,WARREN_GOLLNICK-MPBR16,10.0.2.243 +VIOLA_BEDDOME,VIOLA_BEDDOME-MPBR16,10.0.2.244 +MARLANA_SAMMER,MARLANA_SAMMER-MPBR16,10.0.2.245 +ODESSA_CORLEW,ODESSA_CORLEW-MPBR16,10.0.2.246 +ORVILLE_PERINO,ORVILLE_PERINO-MPBR16,10.0.2.247 +JEFFRY_WHIPPS,JEFFRY_WHIPPS-MPBR16,10.0.2.248 +DARREN_CAMBRIDGE,DARREN_CAMBRIDGE-MPBR16,10.0.2.249 +KERRIE_MILAND,KERRIE_MILAND-MPBR16,10.0.2.250 +JOHNIE_EASTERDAY,JOHNIE_EASTERDAY-MPBR16,10.0.2.251 +DAN_DESPER,DAN_DESPER-MPBR16,10.0.2.252 +CARMEN_BEDSOLE,CARMEN_BEDSOLE-MPBR16,10.0.2.253 +RUTHIE_EICHNER,RUTHIE_EICHNER-MPBR16,10.0.2.254 +HOWARD_BERSON,HOWARD_BERSON-MPBR16,10.0.2.255 +SON_COSTALES,SON_COSTALES-MPBR16,10.0.3.0 +FANNIE_SCHARFF,FANNIE_SCHARFF-MPBR16,10.0.3.1 +ANDRE_MCKINNIS,ANDRE_MCKINNIS-MPBR16,10.0.3.2 +BARBRA_STAUDE,BARBRA_STAUDE-MPBR16,10.0.3.3 +CARROLL_MCMAKIN,CARROLL_MCMAKIN-MPBR16,10.0.3.4 +ANN_AUMEND,ANN_AUMEND-MPBR16,10.0.3.5 +PATRICK_FACEMIRE,PATRICK_FACEMIRE-MPBR16,10.0.3.6 +CAROLINE_HAKKILA,CAROLINE_HAKKILA-MPBR16,10.0.3.7 +JAMAR_HATKE,JAMAR_HATKE-MPBR16,10.0.3.8 +HUGH_HOVE,HUGH_HOVE-MPBR16,10.0.3.9 +SOPHIA_PAVLOV,SOPHIA_PAVLOV-MPBR16,10.0.3.10 +ANTON_VERMILLION,ANTON_VERMILLION-MPBR16,10.0.3.11 +KYRA_TWEED,KYRA_TWEED-MPBR16,10.0.3.12 +ELLIOT_GIBBON,ELLIOT_GIBBON-MPBR16,10.0.3.13 +DEIDRE_ANDROLEWICZ,DEIDRE_ANDROLEWICZ-MPBR16,10.0.3.14 +NORMAN_GERRITY,NORMAN_GERRITY-MPBR16,10.0.3.15 +JUNITA_TRUEHEART,JUNITA_TRUEHEART-MPBR16,10.0.3.16 +OFELIA_LOCKET,OFELIA_LOCKET-MPBR16,10.0.3.17 +SHIRLENE_VANDEHEY,SHIRLENE_VANDEHEY-MPBR16,10.0.3.18 +KATRICE_THIBEAULT,KATRICE_THIBEAULT-MPBR16,10.0.3.19 +EMORY_FIATO,EMORY_FIATO-MPBR16,10.0.3.20 +KRISTY_BACKLUND,KRISTY_BACKLUND-MPBR16,10.0.3.21 +ALEXANDRIA_LESSLEY,ALEXANDRIA_LESSLEY-MPBR16,10.0.3.22 +MICAELA_BRENES,MICAELA_BRENES-MPBR16,10.0.3.23 +ELFRIEDE_SCHMELZER,ELFRIEDE_SCHMELZER-MPBR16,10.0.3.24 +MAXWELL_TOBIN,MAXWELL_TOBIN-MPBR16,10.0.3.25 +LARISA_RANSFORD,LARISA_RANSFORD-MPBR16,10.0.3.26 +GUY_BALDINI,GUY_BALDINI-MPBR16,10.0.3.27 +JACQUELINE_BROOMFIELD,JACQUELINE_BROOMFIELD-MPBR16,10.0.3.28 +JENAE_NYHUS,JENAE_NYHUS-MPBR16,10.0.3.29 +CASSANDRA_GONSER,CASSANDRA_GONSER-MPBR16,10.0.3.30 +LAMONT_DAIRE,LAMONT_DAIRE-MPBR16,10.0.3.31 +WILLETTE_COOLBAUGH,WILLETTE_COOLBAUGH-MPBR16,10.0.3.32 +EULA_EICHHORST,EULA_EICHHORST-MPBR16,10.0.3.33 +CAROLYN_SCHERPING,CAROLYN_SCHERPING-MPBR16,10.0.3.34 +RICK_FLOYD,RICK_FLOYD-MPBR16,10.0.3.35 +ALANA_HINCHLIFFE,ALANA_HINCHLIFFE-MPBR16,10.0.3.36 +GONZALO_WIRTANEN,GONZALO_WIRTANEN-MPBR16,10.0.3.37 +UTE_PUEBLA,UTE_PUEBLA-MPBR16,10.0.3.38 +SUSIE_SILGUERO,SUSIE_SILGUERO-MPBR16,10.0.3.39 +AARON_BRAMAN,AARON_BRAMAN-MPBR16,10.0.3.40 +TENA_HARTLEN,TENA_HARTLEN-MPBR16,10.0.3.41 +ISSAC_SZWEJBKA,ISSAC_SZWEJBKA-MPBR16,10.0.3.42 +LEVI_ROTERMUND,LEVI_ROTERMUND-MPBR16,10.0.3.43 +MAUDIE_UNTERSEHER,MAUDIE_UNTERSEHER-MPBR16,10.0.3.44 +VELLA_POINTER,VELLA_POINTER-MPBR16,10.0.3.45 +MOLLY_GIESSLER,MOLLY_GIESSLER-MPBR16,10.0.3.46 +SCARLETT_BRINK,SCARLETT_BRINK-MPBR16,10.0.3.47 +BRENDAN_WONDER,BRENDAN_WONDER-MPBR16,10.0.3.48 +JUSTIN_CIRA,JUSTIN_CIRA-MPBR16,10.0.3.49 +NISHA_DYCHES,NISHA_DYCHES-MPBR16,10.0.3.50 +LESTER_MONAHAN,LESTER_MONAHAN-MPBR16,10.0.3.51 +DENIS_TAJ,DENIS_TAJ-MPBR16,10.0.3.52 +DAISEY_GOVIN,DAISEY_GOVIN-MPBR16,10.0.3.53 +TIMMY_DUL,TIMMY_DUL-MPBR16,10.0.3.54 +LEANDRO_KOBACK,LEANDRO_KOBACK-MPBR16,10.0.3.55 +FRED_BASSIL,FRED_BASSIL-MPBR16,10.0.3.56 +JANIE_LAMOREAUX,JANIE_LAMOREAUX-MPBR16,10.0.3.57 +ALLAN_GRANDSTAFF,ALLAN_GRANDSTAFF-MPBR16,10.0.3.58 +NOLAN_REMPE,NOLAN_REMPE-MPBR16,10.0.3.59 +LOREEN_FORRESTER,LOREEN_FORRESTER-MPBR16,10.0.3.60 +LINCOLN_COLLAZO,LINCOLN_COLLAZO-MPBR16,10.0.3.61 +LEVI_ECKLER,LEVI_ECKLER-MPBR16,10.0.3.62 +DARRIN_HAMMERLE,DARRIN_HAMMERLE-MPBR16,10.0.3.63 +TOSHA_EAGLE,TOSHA_EAGLE-MPBR16,10.0.3.64 +GARY_CISCO,GARY_CISCO-MPBR16,10.0.3.65 +TOBY_ROSKE,TOBY_ROSKE-MPBR16,10.0.3.66 +ROXANA_HOBGOOD,ROXANA_HOBGOOD-MPBR16,10.0.3.67 +NANNIE_BALDERSON,NANNIE_BALDERSON-MPBR16,10.0.3.68 +CARMA_KRACKER,CARMA_KRACKER-MPBR16,10.0.3.69 +ARRON_DENISTON,ARRON_DENISTON-MPBR16,10.0.3.70 +NORINE_BRADDOCK,NORINE_BRADDOCK-MPBR16,10.0.3.71 +RENE_LYDIA,RENE_LYDIA-MPBR16,10.0.3.72 +JERALD_SNELLEN,JERALD_SNELLEN-MPBR16,10.0.3.73 +KATRINA_BACOTE,KATRINA_BACOTE-MPBR16,10.0.3.74 +MACK_STEINKUEHLER,MACK_STEINKUEHLER-MPBR16,10.0.3.75 +AJA_WITRY,AJA_WITRY-MPBR16,10.0.3.76 +ALEC_ROBLEDO,ALEC_ROBLEDO-MPBR16,10.0.3.77 +TEQUILA_EBBIGHAUSEN,TEQUILA_EBBIGHAUSEN-MPBR16,10.0.3.78 +KENNETH_LANGILLE,KENNETH_LANGILLE-MPBR16,10.0.3.79 +MABLE_HUBBARD,MABLE_HUBBARD-MPBR16,10.0.3.80 +HIRAM_KELLERHOUSE,HIRAM_KELLERHOUSE-MPBR16,10.0.3.81 +MARLENE_NOLLORA,MARLENE_NOLLORA-MPBR16,10.0.3.82 +LOWELL_CRADDOCK,LOWELL_CRADDOCK-MPBR16,10.0.3.83 +FLOSSIE_ADORNO,FLOSSIE_ADORNO-MPBR16,10.0.3.84 +CARMEL_STEGEMANN,CARMEL_STEGEMANN-MPBR16,10.0.3.85 +VANITA_FOLKERS,VANITA_FOLKERS-MPBR16,10.0.3.86 +ANGELIKA_AHLF,ANGELIKA_AHLF-MPBR16,10.0.3.87 +DELORES_MALPHURS,DELORES_MALPHURS-MPBR16,10.0.3.88 +JAMIE_SIEG,JAMIE_SIEG-MPBR16,10.0.3.89 +JONATHAN_SUMBERA,JONATHAN_SUMBERA-MPBR16,10.0.3.90 +WONDA_WOLAVER,WONDA_WOLAVER-MPBR16,10.0.3.91 +CATHERINE_HUGGINS,CATHERINE_HUGGINS-MPBR16,10.0.3.92 +TAJUANA_GODFREY,TAJUANA_GODFREY-MPBR16,10.0.3.93 +ROSALIA_MCCLURE,ROSALIA_MCCLURE-MPBR16,10.0.3.94 +OTTO_MCCULLAH,OTTO_MCCULLAH-MPBR16,10.0.3.95 +DORTHA_WILDHABER,DORTHA_WILDHABER-MPBR16,10.0.3.96 +MARTHA_RICHARDT,MARTHA_RICHARDT-MPBR16,10.0.3.97 +EILEEN_BOEHMAN,EILEEN_BOEHMAN-MPBR16,10.0.3.98 +KATHRINE_SPAKE,KATHRINE_SPAKE-MPBR16,10.0.3.99 +HANNA_LAPLAUNT,HANNA_LAPLAUNT-MPBR16,10.0.3.100 +BILL_DALES,BILL_DALES-MPBR16,10.0.3.101 +EMILIE_CHONG,EMILIE_CHONG-MPBR16,10.0.3.102 +DENNIS_BARRETTE,DENNIS_BARRETTE-MPBR16,10.0.3.103 +ELISE_DONA,ELISE_DONA-MPBR16,10.0.3.104 +ORVILLE_MILITANO,ORVILLE_MILITANO-MPBR16,10.0.3.105 +FREDERICKA_SUH,FREDERICKA_SUH-MPBR16,10.0.3.106 +GARRY_DEZENZO,GARRY_DEZENZO-MPBR16,10.0.3.107 +LAVONDA_LEBLOND,LAVONDA_LEBLOND-MPBR16,10.0.3.108 +DARWIN_CAHEE,DARWIN_CAHEE-MPBR16,10.0.3.109 +LESLIE_SCHADE,LESLIE_SCHADE-MPBR16,10.0.3.110 +JENNY_FRAIZER,JENNY_FRAIZER-MPBR16,10.0.3.111 +LUCINA_GENIS,LUCINA_GENIS-MPBR16,10.0.3.112 +DANE_FENNELL,DANE_FENNELL-MPBR16,10.0.3.113 +STEFAN_SPEYRER,STEFAN_SPEYRER-MPBR16,10.0.3.114 +JUSTIN_GROMER,JUSTIN_GROMER-MPBR16,10.0.3.115 +JAE_MATTIX,JAE_MATTIX-MPBR16,10.0.3.116 +SAMUEL_KENEBREW,SAMUEL_KENEBREW-MPBR16,10.0.3.117 +ELVA_ARLINGHAUS,ELVA_ARLINGHAUS-MPBR16,10.0.3.118 +OSCAR_KEARSLEY,OSCAR_KEARSLEY-MPBR16,10.0.3.119 +LINETTE_ROHLING,LINETTE_ROHLING-MPBR16,10.0.3.120 +SHELA_SEGOUIA,SHELA_SEGOUIA-MPBR16,10.0.3.121 +PABLO_LINEWEAVER,PABLO_LINEWEAVER-MPBR16,10.0.3.122 +LAURENCE_GROSCLAUDE,LAURENCE_GROSCLAUDE-MPBR16,10.0.3.123 +DAVIS_COOLIDGE,DAVIS_COOLIDGE-MPBR16,10.0.3.124 +NIKKI_INGRASSIA,NIKKI_INGRASSIA-MPBR16,10.0.3.125 +JUDITH_DULIN,JUDITH_DULIN-MPBR16,10.0.3.126 +LANITA_REINEKE,LANITA_REINEKE-MPBR16,10.0.3.127 +NAOMA_LY,NAOMA_LY-MPBR16,10.0.3.128 +SHERRY_NEHER,SHERRY_NEHER-MPBR16,10.0.3.129 +WILSON_MANHART,WILSON_MANHART-MPBR16,10.0.3.130 +BRYCE_JEE,BRYCE_JEE-MPBR16,10.0.3.131 +HUNTER_HOLLIDAY,HUNTER_HOLLIDAY-MPBR16,10.0.3.132 +GARRY_MLENAR,GARRY_MLENAR-MPBR16,10.0.3.133 +DANE_DAVIS,DANE_DAVIS-MPBR16,10.0.3.134 +KIRBY_LOUDEN,KIRBY_LOUDEN-MPBR16,10.0.3.135 +LUZ_JIGGETTS,LUZ_JIGGETTS-MPBR16,10.0.3.136 +RICHARD_HAWKE,RICHARD_HAWKE-MPBR16,10.0.3.137 +THADDEUS_FOLLANSBEE,THADDEUS_FOLLANSBEE-MPBR16,10.0.3.138 +KARI_NESHEIM,KARI_NESHEIM-MPBR16,10.0.3.139 +YADIRA_BRASFIELD,YADIRA_BRASFIELD-MPBR16,10.0.3.140 +DEWAYNE_EREDIA,DEWAYNE_EREDIA-MPBR16,10.0.3.141 +CARMEL_WILL,CARMEL_WILL-MPBR16,10.0.3.142 +TRACIE_WILKERS,TRACIE_WILKERS-MPBR16,10.0.3.143 +DELANA_BEEDLE,DELANA_BEEDLE-MPBR16,10.0.3.144 +SAMMY_GRIPPI,SAMMY_GRIPPI-MPBR16,10.0.3.145 +ELOY_ATES,ELOY_ATES-MPBR16,10.0.3.146 +SANTOS_BLANKENSHIP,SANTOS_BLANKENSHIP-MPBR16,10.0.3.147 +ANNEMARIE_MURRI,ANNEMARIE_MURRI-MPBR16,10.0.3.148 +SALVADOR_LEATH,SALVADOR_LEATH-MPBR16,10.0.3.149 +KESHA_JARDIN,KESHA_JARDIN-MPBR16,10.0.3.150 +JANELL_HILLYARD,JANELL_HILLYARD-MPBR16,10.0.3.151 +DEIRDRE_DERANEY,DEIRDRE_DERANEY-MPBR16,10.0.3.152 +ELLIOTT_TRILL,ELLIOTT_TRILL-MPBR16,10.0.3.153 +EUGENIO_FEINSTEIN,EUGENIO_FEINSTEIN-MPBR16,10.0.3.154 +PAMALA_RONE,PAMALA_RONE-MPBR16,10.0.3.155 +TIMOTHY_NIEMCZYK,TIMOTHY_NIEMCZYK-MPBR16,10.0.3.156 +TERRENCE_AVANCE,TERRENCE_AVANCE-MPBR16,10.0.3.157 +ANNIE_BARRE,ANNIE_BARRE-MPBR16,10.0.3.158 +WADE_GROUNDS,WADE_GROUNDS-MPBR16,10.0.3.159 +SALVATORE_GOLDY,SALVATORE_GOLDY-MPBR16,10.0.3.160 +KENDAL_TACKITT,KENDAL_TACKITT-MPBR16,10.0.3.161 +CONSUELO_BUNN,CONSUELO_BUNN-MPBR16,10.0.3.162 +GILBERTO_METROKA,GILBERTO_METROKA-MPBR16,10.0.3.163 +KELVIN_JACQUIER,KELVIN_JACQUIER-MPBR16,10.0.3.164 +TORRIE_DAVI,TORRIE_DAVI-MPBR16,10.0.3.165 +MARCO_PECKA,MARCO_PECKA-MPBR16,10.0.3.166 +RICARDO_WILLIE,RICARDO_WILLIE-MPBR16,10.0.3.167 +CARMA_WILLIAMSEN,CARMA_WILLIAMSEN-MPBR16,10.0.3.168 +DORIS_SUCHECKI,DORIS_SUCHECKI-MPBR16,10.0.3.169 +DAVE_LEAN,DAVE_LEAN-MPBR16,10.0.3.170 +IAN_QUINTELA,IAN_QUINTELA-MPBR16,10.0.3.171 +SOLOMON_SIMCOE,SOLOMON_SIMCOE-MPBR16,10.0.3.172 +MERLE_ROKER,MERLE_ROKER-MPBR16,10.0.3.173 +DANIEL_ORELLANO,DANIEL_ORELLANO-MPBR16,10.0.3.174 +LORINDA_LYALLS,LORINDA_LYALLS-MPBR16,10.0.3.175 +GENA_KIRCHER,GENA_KIRCHER-MPBR16,10.0.3.176 +MOISES_TSUKAMOTO,MOISES_TSUKAMOTO-MPBR16,10.0.3.177 +CHAD_CUESTAS,CHAD_CUESTAS-MPBR16,10.0.3.178 +TIMMY_GEACH,TIMMY_GEACH-MPBR16,10.0.3.179 +ADRIENE_BRANDNER,ADRIENE_BRANDNER-MPBR16,10.0.3.180 +ZOFIA_HALLAHAN,ZOFIA_HALLAHAN-MPBR16,10.0.3.181 +EVANGELINE_NEAVE,EVANGELINE_NEAVE-MPBR16,10.0.3.182 +DWAIN_MADARIAGA,DWAIN_MADARIAGA-MPBR16,10.0.3.183 +CHRIS_FLEWELLEN,CHRIS_FLEWELLEN-MPBR16,10.0.3.184 +VICTOR_MUNKBERG,VICTOR_MUNKBERG-MPBR16,10.0.3.185 +ELDORA_MANFREDONIA,ELDORA_MANFREDONIA-MPBR16,10.0.3.186 +LEONARDO_WEILER,LEONARDO_WEILER-MPBR16,10.0.3.187 +CELIA_MALONE,CELIA_MALONE-MPBR16,10.0.3.188 +BROCK_ECKERT,BROCK_ECKERT-MPBR16,10.0.3.189 +ARDITH_JUNIUS,ARDITH_JUNIUS-MPBR16,10.0.3.190 +LEONEL_LEAVELL,LEONEL_LEAVELL-MPBR16,10.0.3.191 +LAVINIA_MEINERS,LAVINIA_MEINERS-MPBR16,10.0.3.192 +KERRIE_WITTKE,KERRIE_WITTKE-MPBR16,10.0.3.193 +META_COZZONE,META_COZZONE-MPBR16,10.0.3.194 +LINDSAY_HENK,LINDSAY_HENK-MPBR16,10.0.3.195 +DAPHNE_TAI,DAPHNE_TAI-MPBR16,10.0.3.196 +ABBEY_MORREN,ABBEY_MORREN-MPBR16,10.0.3.197 +BONITA_NJOKU,BONITA_NJOKU-MPBR16,10.0.3.198 +HERSCHEL_LABORDE,HERSCHEL_LABORDE-MPBR16,10.0.3.199 +DUSTIN_SCAGGS,DUSTIN_SCAGGS-MPBR16,10.0.3.200 +BETHANN_COYER,BETHANN_COYER-MPBR16,10.0.3.201 +LLOYD_LEDSOME,LLOYD_LEDSOME-MPBR16,10.0.3.202 +CHET_TERZO,CHET_TERZO-MPBR16,10.0.3.203 +KYLE_PICARELLO,KYLE_PICARELLO-MPBR16,10.0.3.204 +DARIN_CORKRAN,DARIN_CORKRAN-MPBR16,10.0.3.205 +PETE_STOKE,PETE_STOKE-MPBR16,10.0.3.206 +ROSELLA_MORRISROE,ROSELLA_MORRISROE-MPBR16,10.0.3.207 +LEONARDO_KOGAN,LEONARDO_KOGAN-MPBR16,10.0.3.208 +JAYSON_STUNKARD,JAYSON_STUNKARD-MPBR16,10.0.3.209 +CECIL_BURGHER,CECIL_BURGHER-MPBR16,10.0.3.210 +HORTENCIA_KISH,HORTENCIA_KISH-MPBR16,10.0.3.211 +KINDRA_PUNG,KINDRA_PUNG-MPBR16,10.0.3.212 +JOSHUA_KYM,JOSHUA_KYM-MPBR16,10.0.3.213 +BILLY_ZAHN,BILLY_ZAHN-MPBR16,10.0.3.214 +ADRIAN_SCHELLMAN,ADRIAN_SCHELLMAN-MPBR16,10.0.3.215 +OLA_LENOCH,OLA_LENOCH-MPBR16,10.0.3.216 +EARNEST_PALERMO,EARNEST_PALERMO-MPBR16,10.0.3.217 +SUZIE_HUCKABAY,SUZIE_HUCKABAY-MPBR16,10.0.3.218 +QUINN_STUBBLEFIELD,QUINN_STUBBLEFIELD-MPBR16,10.0.3.219 +LUE_MAROHL,LUE_MAROHL-MPBR16,10.0.3.220 +CECIL_FRAPPIER,CECIL_FRAPPIER-MPBR16,10.0.3.221 +JERALD_DIKEMAN,JERALD_DIKEMAN-MPBR16,10.0.3.222 +DEANNA_DECARLO,DEANNA_DECARLO-MPBR16,10.0.3.223 +NICKOLAS_ALBERTO,NICKOLAS_ALBERTO-MPBR16,10.0.3.224 +BENITA_GORENFLO,BENITA_GORENFLO-MPBR16,10.0.3.225 +EUGENIA_VERIATO,EUGENIA_VERIATO-MPBR16,10.0.3.226 +DARIUS_PORTZ,DARIUS_PORTZ-MPBR16,10.0.3.227 +JULES_FANE,JULES_FANE-MPBR16,10.0.3.228 +CLIFFORD_ROBY,CLIFFORD_ROBY-MPBR16,10.0.3.229 +KARLA_RIEL,KARLA_RIEL-MPBR16,10.0.3.230 +ELAINE_RUCKER,ELAINE_RUCKER-MPBR16,10.0.3.231 diff --git a/splunk_eventgen/samples/userName.sample b/splunk_eventgen/samples/userName.sample new file mode 100644 index 00000000..73f1b6a7 --- /dev/null +++ b/splunk_eventgen/samples/userName.sample @@ -0,0 +1,1000 @@ +birodivulga162 +nildajcbonanno +ivettaadelima +pckomono +Looreeto +JooPedro1591 +claaarecurlingg +acciokcavote +JungD +InaraAllves +Haroldmcaol +xNessaa +stylesdofunk +meltemmeltemm +emapujig +cellphones4deal +amisisuvi +MegSeecharran95 +MargueritaYociu +MarcioBFasano +LeonoreKamelame +xecuwace +digufenob +celal1231 +TWOKeyyy +RolandeOkoye2 +Harriettapuum +oieps +mozzaSclavino +loverebeldesxd +livjeffries +keisanm +jaemchaney +ewequfu +alixscottx +Nathanssexyhats +JimmieElbahtity +ItsEmeline +Harrietsdeyj +AndreeOcheltree +AlizeRylieo +AiLuCanch +mandinfortson +erichforever +edukusisot +cuibefuz76 +WorldSophiaA +SharronSuyama54 +SadieTWx +SYKESorSTYLES +RachalLevering4 +McnicolNan3613 +MargariteGreide +LlewlynSa5ai629 +JustSoIssi +ItsGeovana +FatimahFlore472 +DoraAke7703 +Clorindarozne +BradieBeee +BeckieAnfinson5 +tanbasil +saubluchid75 +ribathfunk70 +onderaytac +never7112 +naathaanTW +mylovelyletter +mariaTW20041 +imjosev +georgiabethox +finleyfancy +elafufu +duhamor85 +chlosian +chloeh5595 +chaylamoro +ashlitleatherma +angelmunguia4 +aldawar14fb +aannadavidsson +oGuedes +LegallyBlonde +WilliamsTda +ValeskaAcevedo +TheTeaPartyRat +StevenAbdelaziz +SophieElise13 +SamiiHoran +RicardaSulejman +RetaThoeny3197 +NatoshaSherio +NaimaRandyy3 +FernandaHoran1D +Dannawpyrt +Daniellzeiro +Collenevbunk +CMSulistyo +BridgettVanslan +AlienConsulate +yofranzo +xGlitzMissMia +vivienxqrobison +vidaja87 +shania1D +ruemunnett81 +reactcore +rachelcurryTW +pedrod3001 +nathansykesluv +mariekxjwz +marbellagolden +malyon5a6er +malikmymonkey +keskinozlem +karolynfprbodna +jestrella04 +jessgoodisonx +iloveAMOJ +habkingtram73 +gobarep87 +ferryfbrndk +fapadoranonimo +ceturuxup +cathyorangeTW +ayunarolita +akumezopi +abiefebyan +franlindinhax +BrunoVinicius +Zoe98TW +TomsGoodgirl +ThatWhiteHoe +TasminChloee +TWAreMyStrength +SophiePeppinTW +Sofizamoloo +SharonKatner +Santosyzkir +SambaLivre +Rosemariegfbis +RichelleHirschy +Renitaikjzq +PortiaDiclaudio +PlanetaDoBieber +PhlyAhhSlim +NickieWillibran +NathanMyBF +MonikaByrdieu +MarenDobine9208 +MARIECAEN +LydaWarnack3486 +LuaTodaMinha +LeandroBoyligan +KonevelDaniele8 +KazukoGodfray69 +GoftonSi0bhan45 +GearldineMazurk +GaynellHannai +FlaviaKordas383 +FCOLuanRafael +EllieSykes2012 +DjDabPhlyte +DeneenGraciana5 +Deadraxfuam +Cyndyidorr +Contessasosdx +Colleenanaqe +CodyMartinn +Cinthiafanbx +Chayawkjpg +CasimiraSaam253 +BellinMa5hta461 +AyooCandyy +AlenKarabegovic +xoxoDIANEEExoxo +wizardQi +wh0thehellishe +vilmaramb88 +vestefi86 +thatsjoesmile +sungsik1 +smileinmyworld +sksduf8shf +semakrglu +saelkanderi +roonixr +roetracgil88 +rionm9 +rebeccass3 +realplanetkway +pokannews +piasihu82 +optima20004 +onehysoc +nisehorrrrn +mishatar +mindy135 +megaanbennett +mayu1128 +mahra1998 +ludulcete +liraro85 +kagaminbot +jessPmartinez +javiarduengo +inroebhuv76 +iGOTthatASS +iAmRoc +hrkztiharu +heframi84 +harrysbrilliant +givemethismile +favstar50es +fantasylakegolf +fablede72 +estriquilinawq +ericaholtwhite +currieeeee +clevpunto81 +clairedakin +cierraj2k11 +chelseaTWparker +captainmari +btobdi6 +brendamachado9 +bracuaskey74 +birodivulga163 +betaniacastillo +beautboutique +aziz7217 +asagrou84 +annacdr +angusbcfc +angletz +anecimiq +alzain247 +alyssaTW +aiz3319 +loveDrea +Soiceybaby +KellesahhBOSS +ItsTaeMina +YvonneSykesTW +YoungTaffer7377 +WazzupChile +TudoPelaMel +ThisISMama +Templos90 +TaynaPinkowski8 +SykesTWLover +Stevie0205TW +Stephanygfs +SheeiLaHdeez +SertorisJustina +RubiGautsch1987 +RociolovesJB +ReynaGotay9918 +Rapiika +PetraCredell667 +PerlaaSulvaran +NathanSexyBody +Naeex3 +MyLiifeDiegoM +MrBvlgari +MissMollyTW +MirianVittone30 +MexicoTrafico +MegaLestary +Mcveigh5ickie11 +Mansun4eva +MAUROAMAYA7 +Luv3liiSwagg +Lorieln5 +LizyFigueiredo +LittleMBR +LightfordTien86 +Lesleezouk2526 +LeenaLocatelli8 +LaurenTW1D +LauraBechara07 +LarisaMarcil334 +LICKonSAM +KoloN0na3020 +KidoChild22 +JungHosterman48 +JuliaJayTW +JerilynCuddihee +JaythanLarry +JasmineTWsykes +JacqueseAnn +JDBiebsNavy +Iwanthisblueyes +IrmgardOvington +HermineAbajian5 +HazzasNo1Girl +HardHouseDj +GrlzCalMeSwavey +Glennqxz +Geniocatil +GNJP +FredCuper +FernandoMoehrin +FeltA5line7388 +FatimaQuiroz +FCLoveyouHarry +EmelyMedina +Dinahvxq +DennyHEART +Daniellskkqv +DGAFLiveLife +CruzStrotman959 +CruddyKidd +Credunut +CourtnieQ +Clydexkvqv +ClaudiaSGerpe +Clarawbsbt +Claaricortazar +Christenawyzp +CherSwag +CharXTheWantedX +CatrinaCudmore6 +Carlyvazfb +CakesBieberTW +CCCStunnaRico +Brittenybji +BrianaAmisano69 +AshleighWinterh +ArdeliaWilridge +Annabellew5 +AngelsOfBiebs +AndreaRamos0621 +Aljannah1433H +AleenSavely +ALiaALanziQ8 +693yk +3faryBieber +1DMegC +zainelmohra +yqerexyno +xxlouiseexx +xreplacemyheart +xkuwaitya +xXlautjuuhhhXx +xJvdw +xFillizzx +xDelilaah +xBieberUSmile +winatawira98 +whojaaaxD +wendelpereira +vomafym +viiccttoorriia +vawanitix +vanessaLUVShg +uralekb +uptownworld +unerib75 +transformers89 +tonicruzgon +toafferan83 +tertibi83 +temordia +taigaca83 +taanisefossatti +supcaca77 +sukaeRTe +straatratx +stilcica72 +stelladsouz +stefou1 +spirovin82 +soulmate22 +slaykatart +sigbanan89 +shorouk93 +serotoninetkisi +samaradusj +saarahmartinez +saadromeh +rourkestudio +replaythepast +rbknews +raphaelandria +profhelder +privanun73 +phobubbfoun74 +parasemprebeld +pamellatainara +oupah +otacran89 +orawokuzu +oqree +onoxozo +omarneto12 +okytixabo +odDeneikerM +nohaduc83 +nanashiisapii +mnaay +misskleintjemoi +mishellear +mildmildmild +michsydis86 +melaniemelu +mdfernando +maysasantos17 +matorlo72 +maryannibrahim +marlonbukoski +magranefan90210 +mabalue +luzaliram +loveyoulikeido +lolabatista91 +litlversli77 +lisboami +lelegagaliam +leees0601 +lauprowac76 +lastapk +laristump +larissagoretti +laianerafaela +laahfactum +kurdispba79 +koltl17 +kinqsuperman +kinkindno82 +karolNjc +kakusei +justinAce +juniorfluzaoooo +jooydiz +joassis3 +joannaonthelake +jinkiey +jevysworld +jayshockad +jaquesk8 +j3nni3j +iugossip +itymagibus +itsvinilopes +itsMAM +imThugginThoo +ikhouvanjexp +iiAmDomo +iamDayshaLee +iadoreparade +itoninho +iTeamRebelde +iImagineJB +iHoop4Polo +iCarlaLecaro +hucohika +hospyoura75 +hlooy17 +himajin5589 +hercai87 +hellyeahsykes +head0rheart +hassanalghalia +haerica +habredealcanzar +gyufolra78 +grecolucas +geovanad +gemmaleighTW +gdf10 +gabiewn +gabeAlfassy +foreverwithchay +flexardum89 +ferryfebrian2 +fernandGiancarl +favstar100celeb +fatihbarin +fanningh5 +evengx1 +eternalloveJB +epucahiniw +emilybudgeTW +ellebTW +elizabethwise +edemewe +drumstick155 +drisoouzaa +dlo3a501 +dimspirit +dangerm0use +daddydoo +da7awii +countrygurl1112 +checkupmv +camilasst +businesskent +bubysq +britishsick +blakebritton +bigu +bethsinden +beribi83 +barberaalexpro +banaam1 +axoxynuc +awlule70 +apysesil +anjinha7 +andrypinheiro +anaismr132 +amorXputaria +amandagamer +amandiota +alunes71 +alexogugu +abreulemos +abosalah14 +abbahmakama +abapiwa +a7bk28 +sarahlynnX +robertoT +nacamadademi +mesnina +kimchee +iRoCkHolliSteR +dOUBLeDeeeez +flyGuuy +LoveHer +JellyyBeann +YvdW +YourDreams +SUPERMIKEx +PUREBlondiee +LucasButtowski +JacobsGirl +GuinhoTerrivel +DntGive2FUCKS +Buttabby +BabyJayy +AnaLorenzoniES +1234569 +Yulyuha1983 +Yulemerlodt9 +Yowsa777 +YouDamnDummy +YesungBread +Yassinekx4 +YHateJamarcus +XxRosanneeee +Wuichan +WorldOfMattL +VeroRivas +VannityBolwerk +VaniEscuDiosa +TyishaWeidower4 +Twittyfooty +TurQu +Trungx +TroolATK +TriiciiaBV +ToshikoP +Tishox6 +TheIconicBoyz +TheWanted4Life +TheBeowulf +ThatYouBeMe +ThatNiggJSwagg +TeddyMinnie1104 +TeamBoogGIFI +TeamPhlytePromo +TashaTheTurtle +TalkinToU +TWAbbieL +TW1DGMD3 +THCSports +SyriaFnn +SybilHalbrooks2 +Swannounnet +SwaggRick +StashYourWeed +SrtaPera +SpankyHanky123 +SpainbiebsBTR1D +SoyLoQeQuieres +Sosanxx +SophiaMarieify +Smileforstyles +SincerelyCashe +SinPasadoSV +SimonFurne5290 +SimonFudd +Shirleeyre +ShebaDavtyan362 +ShannonTWanted +ShannanTheard82 +ShaneEstelae +SexyBiebsBitch +SegurosBH +SamellaDetzel36 +SamanaLeanne +SabrinaMimii +SELFMADESKAT +Rosemaryhclnf +Roselynvgskn +RochiCalderini +RoAlvarenga +RideOfMyLife +RetweetsKWT +RekliSpor +ReganTW +RaffoTaffo +RachelBiipolar +QDSmilesPretty +PringleMe5ilyn2 +PhyliciaBaisa +Philomenafdqci +PeteMcVries +Paulaortjim +PatriciaDreamer +ParkersLaugh +Orlanee3 +Ok202o +OdeioFalsidades +ObsessWithZayn +Nohemiiy977 +Nm6 +Nikolasol +Nessagoregous +Naysilva +NaturalliBad +MszKeysha +MrDCsports +MooreTHEWANTED +MikaFreakazoid +MiguelFreitas +MigDT +MeuGuu +MeluchiMendez +Melissa13x +MelanieFUruguay +MeganeWerner +Mcanelly50MCWfq +MayaCeee +Maudiekgr +MattGotTheJuice +Mathioluiz +Mathbelliin +MarianaaNuunes +MariSaysSWAG +Marcelavms +MadlyOdd +MERTOS +LydiaHumess +LuablancofansFC +LuaMeuPeDeMulek +LoveMyTweeets +LoveKiidrauhl +LookAtTheStarss +Liluprieto +Lidipitoko +Leo4ss +LeiLeiyolo +LatinGirlSWAAG +Latias619bot +LadyTripz1 +LOEMPIAk +LKJPhotography +KulkeLashanda76 +KittenCh5ista66 +KimburleyD +KaysTWSykes +KatrineAasland +KarlyPraes +KaiserGDL +JuuhPiano +JuanJo7V +Jorgiit0oRG +JinCourt +JessicaaSykesTW +JazzBEENPretty +JayyBasilio +JaylenneIvanna +JRNoCricket +ItsSara1D +ItbieberOrDiie +IssacBEENRICH +Israhelldid911 +IsiahDearruda33 +ImWhoUWant +Ilovethose5boys +IwearTIArAs +IIrraaMcFly +Hulkanator +HollyWolff201 +HisAddiktion +HeroesRestart +HernettKaylene3 +Hedygicfp +HeCrazyOverTAM +HayleighGMD3x +HausOfMrYessCer +HassanAliQuresh +HPPatrono +GwenaaelleR +GuttaBtchLea +GuiiApolinario +GleudeCe0la8549 +GlennieBby +GiovannaPiccini +Ginaloveyou1 +GhadaMN +Gertietzi +GeritaMija3s +GabiReberte +GAMEX0VER +FreakyyB +FrasesGirlStar +Flykidjames +FloorrAlvarez +Flavio58 +FinleyJaedai +FcFamiliaGL +FarahBlackwater +FansDonJediondo +FLBieberTeam +FCchaysexyS2 +FCLuAr +EuQuisVcRestart +EstherWAYNE +EsAmorBelieber +Erickasxm +Epihk +EminemxKim +ElenaTwiterok +EleaseRulon3998 +DupontRene123 +DritJames +DoooshiiiI +DontCallMeBrah +DominiqueTineo2 +DizBruno +DivulgaKeizy2 +DiscoPanda +DieEnormous +Diamondsda +Deedraznjqn +DearOldBitter +DanielaCuellarr +DaisyyTheWanted +DaantjeKaspers +DaaniKM +CurlsRunDaworld +CreuDaRestart +Coriegjubp +ContessaCleven6 +ConcettaVannorm +CodyXBurguer +CienoBlanche491 +ChocoolaThii +CheutinVella421 +CheneePretty +CharlotteTW +ChantelHorsman4 +CeCeDaaatsMe +Catheyaaeml +Caseykidrauhl +CarolineFerra14 +CarleyTW +CaitGibbonsX +CachinhosDaMel +Bu2FulMASSACRE +BrigidaHoffmann +BriennaLee +BrendaGalea +BobbieStier6590 +BlessYaSoul +BlancESTdopant +BingoPlayersFan +BiinAjeel +BigDudechi +BiancaRaasch +BeylessMa5celen +Bethndwwg +Beforemylife +BeceneLaticia82 +BarbzloveNicki +BadGiiirl +BONECOINFRAVEL +BClementine +BBMQ8 +ArnitaLeys5788 +ArielDemo1 +ApoioOABR2 +AnnikenBrox +AndreaGlasche +Anastasia1905GS +Anais2610 +AmorAubrey +AmieeShaffner48 +AmandaZnz +Alansari42 +Airnais +AirAgenciesLtd +Adorethickems +AMOSORTILEGIO +A7maD25 +25SaRo0n45 +1literofvodka +1Girlciumenta +1Directionarry +1Darethesexxx +19abz +zyLvixD +zumbisemteta +zulu149er +zulfikarADNANI +zoeGmackay +zatchbell555 +yuko125s +youngnay113 +yosem7 +yeyo105 +yesikaMANZANO +yddubhaey +yassofsaad +xxLotjaa +xtyrzagioya +xrudoxod89 +xoxoCLO +xochloxo +xoNayyxo +xfleurtjeeeee +xcamilleloveyou +xbukeet +xLivingVintage +xXWHTNYXx +xTLMN +xSuzann01 +xShannaS +xSSEDDA +xRyaaannnnnn +xPaullaa +xNora +xJSV +xGivanoArnhem +xElevateGrande +xBrokenFake +x3CoOki3zx3 +x0xoMelanie +wzyrenato +wowitskidrauhl +worldrankin +wldkw +wikwikdy +wicovanO +whatsnextdaddy +welove1Dthemost +wcntv +watansport +wardah2020 +walkinthelena +waikhamon71 +voldemortbot +viihmedeirosED +viihkr +vicustarna +victoriaaarose +vemkTeeh +varavale +vanmathiias +v0iceoftreason +utesre81 +upovote +unmikerosas +unicornskingdom +undrgroundking +umsalman12 +umiushi1102 +ultimatezhanee +ulrhinoc82 +udonmarunomi +tweetinyamouth +tryfelynn +trueloka +trueShtOnly +triperim74 +tremyn +tradticha87 +tracitla81 +tororo72 +titdemon84 +timmacy +tigerhzthun +tiffanyvaleria1 +tiffanyhomie +thmovturin83 +thinkerlik +theycallmetara +thecomeUP +thekauaigirl +thatsbeth +thatgirlpinkey +thatMODELtype +thasonvez +thamiigomes +tfi1233 +termpapersonlin +taylorjamieson +talitaestudante +takerui +tahDeetz +tacbadec89 +tablope71 +swarsuschild85 +swaglikebiebs69 +suzanefurst +sunskysun +sunshinekissess +sualilit +stobypinz +stefanyilv +stefaniskil +staystrrrong +staystrongnsn +statweestics +startriotinme +srtabrunaevans +squaidslikewoe +sponhana89 +spicYtRoll +sophmayo +sophieeeeeeex +sonwarnings +smrivieri +smiledrauhl +slemanQ8 +sleekamna87 +skylar0158 +skotic +skittzylicious +sincerelyshella +simplyyjerrika +shyKassie1076 +shogal3yon +servantblessing +senann +seenCHRISnaked +seduKtiveKharm +sealine01 +sdewilde7 +schomwilo81 +scholexef80 +sayyykayleee +savaburry +sarittaa +sarahchancer +saraa31 +sanchezjuanelo +sanjack2001 +samwoote70 +sammi098 +sammiamm +samelahaheuil +samcostello1 +samarkandya +sadybamfx3 +sabrinagoularts +sshauna +ruanmt +roscentno87 +rorroAsdf +rooaguiar +ronnocharas +romerluc +rojonikanta +roisiningle +rissyrisss +rirakkunaX +rienoonpa81 +richieboyswag +riasleekit83 +reutersMarketN +renverbto71 +rentacoderuk +reinventellie +reikazannge +reginexybeer +raymondoesit +rarityguide +raganmckenzi +rafatoda +rafaela1352 +radheam +rachiebabyxo +rabialex +queissorapaiz +purrttykitty \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents.sample b/splunk_eventgen/samples/useragents.sample new file mode 100644 index 00000000..5f021476 --- /dev/null +++ b/splunk_eventgen/samples/useragents.sample @@ -0,0 +1,84 @@ +Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 +BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ +Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 +Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] +BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 +Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents_desktop.sample b/splunk_eventgen/samples/useragents_desktop.sample new file mode 100644 index 00000000..46d79f71 --- /dev/null +++ b/splunk_eventgen/samples/useragents_desktop.sample @@ -0,0 +1,75 @@ +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) +Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9) AppleWebKit/537.71 (KHTML, like Gecko) Version/7.0 Safari/537.71 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 +Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 diff --git a/splunk_eventgen/samples/useragents_mobile.sample b/splunk_eventgen/samples/useragents_mobile.sample new file mode 100644 index 00000000..5f021476 --- /dev/null +++ b/splunk_eventgen/samples/useragents_mobile.sample @@ -0,0 +1,84 @@ +Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 +BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ +Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 +Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] +BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 +Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv new file mode 100644 index 00000000..383a15ae --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv @@ -0,0 +1,847 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"2490.000000","40.695000","2490.000000","40.695000","2490.000000","40.695000","852.000000","0.000000",,,,,,,,,,,,"0.000000","334.500000","669.000000","15.000000","334.500000","334.500000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073320.000000","0.000000","2092704.000000","129468.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","100.000000","103.000000","115.000000","115.000000","115.000000","0.000000","0.000000","0.000000","95.000000","97.000000","97.000000","113.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","738083.000000",,,,, +"2638.000000","41.390000","2638.000000","41.390000","2638.000000","41.390000","1101.000000","0.000000",,,,,,,,,,,,"7.000000","480.000000","952.000000","10.000000","480.000000","480.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073100.000000","0.000000","2092704.000000","129468.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","101.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","96.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738103.000000",,,,, +"2310.000000","39.850000","2310.000000","39.850000","2310.000000","39.850000","766.000000","0.000000",,,,,,,,,,,,"0.000000","476.000000","950.000000","19.000000","476.000000","476.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073000.000000","0.000000","2092704.000000","129468.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","98.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","98.000000","93.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738123.000000",,,,, +"976.000000","30.580000","976.000000","30.580000","976.000000","30.580000","473.000000","0.000000",,,,,,,,,,,,"0.000000","257.000000","514.000000","6526.000000","257.000000","257.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2073184.000000","0.000000","2092704.000000","129468.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","81.000000","99.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","76.000000","93.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738143.000000",,,,, +"1399.000000","32.570000","1399.000000","32.570000","1399.000000","32.570000","611.000000","0.000000",,,,,,,,,,,,"27.000000","331.500000","636.000000","4477.000000","331.500000","331.500000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072828.000000","0.000000","2092704.000000","129468.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","65.000000","94.000000","115.000000","103.000000","109.000000","0.000000","0.000000","0.000000","96.000000","58.000000","88.000000","113.000000","95.000000","106.000000","160.000000","6000.000000","0.000000","738163.000000",,,,, +"2530.000000","37.880000","2530.000000","37.880000","2530.000000","37.880000","602.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","913.000000","460.000000","458.000000","458.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","67.000000","95.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","97.000000","60.000000","89.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738183.000000",,,,, +"1764.000000","32.285000","1764.000000","32.285000","1764.000000","32.285000","662.000000","0.000000",,,,,,,,,,,,"53.000000","11367.000000","22679.000000","167.000000","11367.000000","11367.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","79.000000","93.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","96.000000","71.000000","88.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738203.000000",,,,, +"2557.000000","36.010000","2557.000000","36.010000","2557.000000","36.010000","526.000000","0.000000",,,,,,,,,,,,"9.000000","1922.500000","3828.000000","17.000000","1922.500000","1922.500000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2073048.000000","0.000000","2092704.000000","129468.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","104.000000","92.000000","93.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","87.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738223.000000",,,,, +"1743.000000","32.185000","1743.000000","32.185000","1743.000000","32.185000","581.000000","0.000000",,,,,,,,,,,,"828.000000","5305.000000","9768.000000","22.000000","5305.000000","5305.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072736.000000","0.000000","2092704.000000","129468.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","104.000000","81.000000","91.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","76.000000","85.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738243.000000",,,,, +"2762.000000","36.475000","2762.000000","36.475000","2762.000000","36.475000","703.000000","0.000000",,,,,,,,,,,,"0.000000","620.500000","1241.000000","7.000000","620.500000","620.500000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072552.000000","0.000000","2092704.000000","129468.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","91.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738263.000000",,,,, +"2488.000000","35.190000","2488.000000","35.190000","2488.000000","35.190000","760.000000","0.000000",,,,,,,,,,,,"319.000000","486.000000","653.000000","13.000000","486.000000","486.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072232.000000","0.000000","2092704.000000","129468.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","87.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738283.000000",,,,, +"2542.000000","35.440000","2542.000000","35.440000","2542.000000","35.440000","739.000000","0.000000",,,,,,,,,,,,"1443.000000","1058.000000","673.000000","7.000000","1058.000000","1058.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2071664.000000","0.000000","2092704.000000","129468.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","103.000000","90.000000","114.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","97.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738303.000000",,,,, +"2921.000000","39.720000","2921.000000","39.720000","2921.000000","39.720000","439.000000","0.000000",,,,,,,,,,,,"822.000000","1148.000000","1473.000000","18.000000","1148.000000","1148.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071668.000000","0.000000","2092704.000000","129468.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","104.000000","91.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","98.000000","86.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738323.000000",,,,, +"1933.000000","35.075000","1933.000000","35.075000","1933.000000","35.075000","630.000000","0.000000",,,,,,,,,,,,"3822.000000","2383.000000","944.000000","3.000000","2383.000000","2383.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","92.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738343.000000",,,,, +"2517.000000","37.820000","2517.000000","37.820000","2517.000000","37.820000","498.000000","0.000000",,,,,,,,,,,,"1862.000000","1160.000000","458.000000","1.000000","1160.000000","1160.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","93.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738363.000000",,,,, +"2278.000000","42.200000","2278.000000","42.200000","2278.000000","42.200000","640.000000","0.000000",,,,,,,,,,,,"1684.000000","1041.000000","398.000000","4.000000","1041.000000","1041.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070756.000000","0.000000","2092704.000000","129468.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","94.000000","90.000000","115.000000","108.000000","109.000000","0.000000","0.000000","0.000000","96.000000","85.000000","83.000000","113.000000","97.000000","107.000000","160.000000","6000.000000","0.000000","738383.000000",,,,, +"1994.000000","40.870000","1994.000000","40.870000","1994.000000","40.870000","1052.000000","0.000000",,,,,,,,,,,,"1308.000000","831.000000","354.000000","3.000000","831.000000","831.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070720.000000","0.000000","2092704.000000","129468.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","88.000000","115.000000","108.000000","107.000000","0.000000","0.000000","0.000000","96.000000","85.000000","82.000000","113.000000","97.000000","104.000000","160.000000","6000.000000","0.000000","738403.000000",,,,, +"2356.000000","42.570000","2356.000000","42.570000","2356.000000","42.570000","785.000000","0.000000",,,,,,,,,,,,"87.000000","111.500000","135.000000","8.000000","111.500000","111.500000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070256.000000","0.000000","2092704.000000","129468.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","96.000000","83.000000","82.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738423.000000",,,,, +"1843.000000","45.155000","1843.000000","45.155000","1843.000000","45.155000","1227.000000","0.000000",,,,,,,,,,,,"506.000000","711.500000","914.000000","2.000000","711.500000","711.500000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069912.000000","0.000000","2092704.000000","129468.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","104.000000","88.000000","91.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","78.000000","84.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738443.000000",,,,, +"2522.000000","48.350000","2522.000000","48.350000","2522.000000","48.350000","753.000000","0.000000",,,,,,,,,,,,"0.000000","126.000000","251.000000","10.000000","126.000000","126.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069700.000000","0.000000","2092704.000000","129468.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","94.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","84.000000","87.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738463.000000",,,,, +"3579.000000","53.315000","3579.000000","53.315000","3579.000000","53.315000","729.000000","0.000000",,,,,,,,,,,,"190.000000","751.000000","1306.000000","4.000000","751.000000","751.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069508.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","105.000000","103.000000","96.000000","115.000000","204.000000","108.000000","0.000000","0.000000","0.000000","96.000000","95.000000","89.000000","114.000000","204.000000","107.000000","160.000000","6000.000000","0.000000","738483.000000",,,,, +"4342.000000","48.900000","4342.000000","48.900000","4342.000000","48.900000","1260.000000","0.000000",,,,,,,,,,,,"206.000000","859.000000","1510.000000","6.000000","859.000000","859.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070624.000000","0.000000","2092704.000000","129468.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","132.000000","102.000000","120.000000","204.000000","116.000000","0.000000","0.000000","0.000000","97.000000","123.000000","94.000000","116.000000","204.000000","116.000000","160.000000","6000.000000","0.000000","738503.000000",,,,, +"4402.000000","49.180000","4402.000000","49.180000","4402.000000","49.180000","920.000000","0.000000",,,,,,,,,,,,"3.000000","579.500000","1155.000000","20.000000","579.500000","579.500000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","108.000000","164.000000","109.000000","162.000000","204.000000","178.000000","0.000000","0.000000","0.000000","99.000000","154.000000","100.000000","145.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","738523.000000",,,,, +"3748.000000","46.110000","3748.000000","46.110000","3748.000000","46.110000","593.000000","0.000000",,,,,,,,,,,,"0.000000","577.000000","1153.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070820.000000","0.000000","2092704.000000","129468.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","109.000000","174.000000","115.000000","170.000000","201.000000","178.000000","0.000000","0.000000","0.000000","100.000000","157.000000","105.000000","148.000000","191.000000","159.000000","160.000000","6000.000000","0.000000","738542.000000",,,,, +"4747.000000","49.800000","4747.000000","49.800000","4747.000000","49.800000","853.000000","0.000000",,,,,,,,,,,,"121.000000","1635.000000","3148.000000","17.000000","1635.000000","1635.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","179.000000","120.000000","171.000000","201.000000","187.000000","0.000000","0.000000","0.000000","101.000000","162.000000","109.000000","155.000000","191.000000","179.000000","160.000000","6000.000000","0.000000","738563.000000",,,,, +"4843.000000","50.255000","4843.000000","50.255000","4843.000000","50.255000","776.000000","0.000000",,,,,,,,,,,,"124.000000","588.000000","1051.000000","8.000000","588.000000","588.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071272.000000","0.000000","2092704.000000","129468.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","184.000000","127.000000","176.000000","206.000000","196.000000","0.000000","0.000000","0.000000","102.000000","167.000000","116.000000","158.000000","193.000000","187.000000","160.000000","6000.000000","0.000000","738583.000000",,,,, +"4740.000000","49.770000","4740.000000","49.770000","4740.000000","49.770000","880.000000","0.000000",,,,,,,,,,,,"202.000000","2118.000000","4033.000000","25.000000","2118.000000","2118.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","111.000000","191.000000","132.000000","179.000000","206.000000","197.000000","0.000000","0.000000","0.000000","103.000000","178.000000","121.000000","166.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738603.000000",,,,, +"4778.000000","49.445000","4778.000000","49.445000","4778.000000","49.445000","880.000000","0.000000",,,,,,,,,,,,"1.000000","513.000000","1023.000000","21.000000","513.000000","513.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070612.000000","0.000000","2092704.000000","129468.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","189.000000","137.000000","184.000000","206.000000","197.000000","0.000000","0.000000","0.000000","105.000000","177.000000","125.000000","170.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738623.000000",,,,, +"5030.000000","50.635000","5030.000000","50.635000","5030.000000","50.635000","967.000000","0.000000",,,,,,,,,,,,"1.000000","732.000000","1462.000000","19.000000","732.000000","732.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070224.000000","0.000000","2092704.000000","129468.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","193.000000","146.000000","188.000000","211.000000","201.000000","0.000000","0.000000","0.000000","105.000000","181.000000","134.000000","171.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738643.000000",,,,, +"4714.000000","49.150000","4714.000000","49.150000","4714.000000","49.150000","725.000000","0.000000",,,,,,,,,,,,"0.000000","450.500000","900.000000","29.000000","450.500000","450.500000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070060.000000","0.000000","2092704.000000","129468.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","195.000000","152.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","107.000000","182.000000","139.000000","173.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738663.000000",,,,, +"4943.000000","49.725000","4943.000000","49.725000","4943.000000","49.725000","955.000000","0.000000",,,,,,,,,,,,"0.000000","678.500000","1356.000000","61.000000","678.500000","678.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2070072.000000","0.000000","2092704.000000","129468.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","198.000000","157.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","109.000000","185.000000","145.000000","179.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738683.000000",,,,, +"4142.000000","45.960000","4142.000000","45.960000","4142.000000","45.960000","960.000000","0.000000",,,,,,,,,,,,"0.000000","579.500000","1159.000000","18.000000","579.500000","579.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069740.000000","0.000000","2092704.000000","129468.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","190.000000","165.000000","195.000000","202.000000","202.000000","0.000000","0.000000","0.000000","110.000000","173.000000","152.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738703.000000",,,,, +"3651.000000","43.655000","3651.000000","43.655000","3651.000000","43.655000","1227.000000","0.000000",,,,,,,,,,,,"1.000000","385.000000","769.000000","16.000000","385.000000","385.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069296.000000","0.000000","2092704.000000","129468.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","185.000000","170.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","111.000000","161.000000","155.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738723.000000",,,,, +"3442.000000","42.670000","3442.000000","42.670000","3442.000000","42.670000","1396.000000","0.000000",,,,,,,,,,,,"0.000000","377.500000","755.000000","11.000000","377.500000","377.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2069040.000000","0.000000","2092704.000000","129468.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","122.000000","181.000000","176.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","144.000000","158.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738743.000000",,,,, +"4002.000000","45.300000","4002.000000","45.300000","4002.000000","45.300000","1442.000000","0.000000",,,,,,,,,,,,"1.000000","822.000000","1643.000000","36.000000","822.000000","822.000000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068752.000000","0.000000","2092704.000000","129468.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","182.000000","183.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","139.000000","163.000000","182.000000","187.000000","199.000000","160.000000","6000.000000","0.000000","738763.000000",,,,, +"4596.000000","48.095000","4596.000000","48.095000","4596.000000","48.095000","2221.000000","0.000000",,,,,,,,,,,,"0.000000","525.500000","1050.000000","32.000000","525.500000","525.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068660.000000","0.000000","2092704.000000","129468.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","126.000000","184.000000","186.000000","196.000000","197.000000","202.000000","0.000000","0.000000","0.000000","114.000000","147.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738783.000000",,,,, +"4316.000000","50.275000","4316.000000","50.275000","4316.000000","50.275000","1720.000000","0.000000",,,,,,,,,,,,"8.000000","437.000000","866.000000","24.000000","437.000000","437.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","189.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","116.000000","159.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738803.000000",,,,, +"3743.000000","47.585000","3743.000000","47.585000","3743.000000","47.585000","1112.000000","0.000000",,,,,,,,,,,,"4.000000","485.500000","965.000000","18.000000","485.500000","485.500000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072720.000000","0.000000","2092704.000000","129468.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","186.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","117.000000","158.000000","164.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738823.000000",,,,, +"4026.000000","48.915000","4026.000000","48.915000","4026.000000","48.915000","927.000000","0.000000",,,,,,,,,,,,"4.000000","578.000000","1152.000000","24.000000","578.000000","578.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","185.000000","188.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","118.000000","152.000000","164.000000","185.000000","177.000000","194.000000","160.000000","6000.000000","0.000000","738843.000000",,,,, +"4860.000000","50.835000","4860.000000","50.835000","4860.000000","50.835000","711.000000","0.000000",,,,,,,,,,,,"2.000000","565.000000","1127.000000","24.000000","565.000000","565.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072452.000000","0.000000","2092704.000000","129468.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","133.000000","184.000000","188.000000","198.000000","205.000000","204.000000","0.000000","0.000000","0.000000","119.000000","155.000000","164.000000","186.000000","191.000000","194.000000","160.000000","6000.000000","0.000000","738863.000000",,,,, +"4618.000000","49.695000","4618.000000","49.695000","4618.000000","49.695000","808.000000","0.000000",,,,,,,,,,,,"2.000000","548.000000","1094.000000","20.000000","548.000000","548.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072380.000000","0.000000","2092704.000000","129468.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","135.000000","193.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","122.000000","168.000000","164.000000","187.000000","204.000000","199.000000","160.000000","6000.000000","0.000000","738883.000000",,,,, +"5095.000000","51.940000","5095.000000","51.940000","5095.000000","51.940000","866.000000","0.000000",,,,,,,,,,,,"2.000000","501.000000","999.000000","20.000000","501.000000","501.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","137.000000","196.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","124.000000","181.000000","164.000000","188.000000","204.000000","197.000000","160.000000","6000.000000","0.000000","738902.000000",,,,, +"5609.000000","54.355000","5609.000000","54.355000","5609.000000","54.355000","587.000000","0.000000",,,,,,,,,,,,"2.000000","688.500000","1373.000000","24.000000","688.500000","688.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072300.000000","0.000000","2092704.000000","129468.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","201.000000","191.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","126.000000","192.000000","167.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738923.000000",,,,, +"4313.000000","48.265000","4313.000000","48.265000","4313.000000","48.265000","1361.000000","0.000000",,,,,,,,,,,,"3.000000","540.500000","1077.000000","47.000000","540.500000","540.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072344.000000","0.000000","2092704.000000","129468.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","197.000000","190.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","128.000000","188.000000","165.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738943.000000",,,,, +"4995.000000","51.465000","4995.000000","51.465000","4995.000000","51.465000","578.000000","0.000000",,,,,,,,,,,,"2.000000","520.000000","1038.000000","18.000000","520.000000","520.000000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","144.000000","198.000000","190.000000","202.000000","215.000000","207.000000","0.000000","0.000000","0.000000","129.000000","186.000000","165.000000","192.000000","215.000000","206.000000","160.000000","6000.000000","0.000000","738963.000000",,,,, +"4719.000000","48.675000","4719.000000","48.675000","4719.000000","48.675000","836.000000","0.000000",,,,,,,,,,,,"4.000000","669.500000","1334.000000","19.000000","669.500000","669.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072384.000000","0.000000","2092704.000000","129468.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","146.000000","192.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","131.000000","177.000000","165.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","738983.000000",,,,, +"4315.000000","46.770000","4315.000000","46.770000","4315.000000","46.770000","1524.000000","0.000000",,,,,,,,,,,,"2.000000","536.000000","1070.000000","19.000000","536.000000","536.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072120.000000","0.000000","2092704.000000","129468.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","190.000000","189.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","133.000000","175.000000","166.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739003.000000",,,,, +"4192.000000","46.195000","4192.000000","46.195000","4192.000000","46.195000","1229.000000","0.000000",,,,,,,,,,,,"5.000000","837.500000","1670.000000","26.000000","837.500000","837.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","149.000000","186.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","134.000000","167.000000","167.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739023.000000",,,,, +"4681.000000","47.000000","4681.000000","47.000000","4681.000000","47.000000","779.000000","0.000000",,,,,,,,,,,,"14.000000","595.000000","1174.000000","27.000000","595.000000","595.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072064.000000","0.000000","2092704.000000","129468.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","186.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","137.000000","168.000000","170.000000","194.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739043.000000",,,,, +"4614.000000","46.685000","4614.000000","46.685000","4614.000000","46.685000","779.000000","0.000000",,,,,,,,,,,,"6.000000","520.500000","1033.000000","20.000000","520.500000","520.500000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","188.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","140.000000","169.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739062.000000",,,,, +"4836.000000","47.725000","4836.000000","47.725000","4836.000000","47.725000","1031.000000","0.000000",,,,,,,,,,,,"6.000000","748.000000","1490.000000","32.000000","748.000000","748.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072592.000000","0.000000","2092704.000000","129468.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","190.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","142.000000","176.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739082.000000",,,,, +"5162.000000","49.750000","5162.000000","49.750000","5162.000000","49.750000","1246.000000","0.000000",,,,,,,,,,,,"7.000000","1318.500000","2630.000000","25.000000","1318.500000","1318.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072488.000000","0.000000","2092704.000000","129468.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","194.000000","191.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","145.000000","179.000000","174.000000","198.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739103.000000",,,,, +"4937.000000","48.695000","4937.000000","48.695000","4937.000000","48.695000","973.000000","0.000000",,,,,,,,,,,,"32.000000","5722.000000","11411.000000","58.000000","5722.000000","5722.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072740.000000","0.000000","2092704.000000","129468.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","197.000000","193.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","147.000000","186.000000","177.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739122.000000",,,,, +"5218.000000","53.515000","5218.000000","53.515000","5218.000000","53.515000","1141.000000","0.000000",,,,,,,,,,,,"7.000000","624.000000","1241.000000","29.000000","624.000000","624.000000",,,,,,,,,,,"1090516.000000","1216348.000000","0.000000","0.000000","2073024.000000","0.000000","2092704.000000","129468.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","201.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","150.000000","192.000000","180.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739143.000000",,,,, +"4709.000000","56.125000","4709.000000","56.125000","4709.000000","56.125000","1074.000000","0.000000",,,,,,,,,,,,"60.000000","902.000000","1742.000000","25.000000","902.000000","902.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","197.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","151.000000","186.000000","181.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739162.000000",,,,, +"4164.000000","53.560000","4164.000000","53.560000","4164.000000","53.560000","1224.000000","0.000000",,,,,,,,,,,,"4712.000000","13172.500000","21633.000000","54.000000","13172.500000","13172.500000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072948.000000","0.000000","2092704.000000","129468.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","188.000000","192.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","153.000000","176.000000","179.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739182.000000",,,,, +"4805.000000","56.575000","4805.000000","56.575000","4805.000000","56.575000","1034.000000","0.000000",,,,,,,,,,,,"17.000000","488.000000","958.000000","11.000000","488.000000","488.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072904.000000","0.000000","2092704.000000","129468.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","184.000000","192.000000","205.000000","201.000000","209.000000","0.000000","0.000000","0.000000","155.000000","170.000000","178.000000","199.000000","197.000000","208.000000","160.000000","6000.000000","0.000000","739202.000000",,,,, +"4420.000000","54.765000","4420.000000","54.765000","4420.000000","54.765000","697.000000","0.000000",,,,,,,,,,,,"5.000000","381.000000","756.000000","8.000000","381.000000","381.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","188.000000","191.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","156.000000","171.000000","176.000000","199.000000","204.000000","204.000000","160.000000","6000.000000","0.000000","739222.000000",,,,, +"4214.000000","59.300000","4214.000000","59.300000","4214.000000","59.300000","778.000000","0.000000",,,,,,,,,,,,"2.000000","560.000000","1118.000000","12.000000","560.000000","560.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072744.000000","0.000000","2092704.000000","129468.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","189.000000","190.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","158.000000","169.000000","175.000000","200.000000","204.000000","201.000000","160.000000","6000.000000","0.000000","739242.000000",,,,, +"4482.000000","60.555000","4482.000000","60.555000","4482.000000","60.555000","682.000000","0.000000",,,,,,,,,,,,"2.000000","398.000000","794.000000","16.000000","398.000000","398.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072660.000000","0.000000","2092704.000000","129468.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","187.000000","190.000000","205.000000","209.000000","205.000000","0.000000","0.000000","0.000000","159.000000","163.000000","174.000000","200.000000","204.000000","200.000000","160.000000","6000.000000","0.000000","739262.000000",,,,, +"4657.000000","61.880000","4657.000000","61.880000","4657.000000","61.880000","1073.000000","0.000000",,,,,,,,,,,,"13.000000","292.000000","570.000000","15.000000","292.000000","292.000000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","184.000000","190.000000","205.000000","208.000000","205.000000","0.000000","0.000000","0.000000","161.000000","162.000000","173.000000","200.000000","200.000000","199.000000","160.000000","6000.000000","0.000000","739282.000000",,,,, +"4548.000000","61.370000","4548.000000","61.370000","4548.000000","61.370000","770.000000","0.000000",,,,,,,,,,,,"18.000000","561.500000","1105.000000","18.000000","561.500000","561.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","181.000000","187.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","164.000000","170.000000","174.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739302.000000",,,,, +"4457.000000","60.940000","4457.000000","60.940000","4457.000000","60.940000","923.000000","0.000000",,,,,,,,,,,,"915.000000","2446.500000","3976.000000","20.000000","2446.500000","2446.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072728.000000","0.000000","2092704.000000","129468.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","189.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","165.000000","172.000000","175.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739322.000000",,,,, +"4602.000000","61.625000","4602.000000","61.625000","4602.000000","61.625000","1564.000000","0.000000",,,,,,,,,,,,"2.000000","644.500000","1287.000000","20.000000","644.500000","644.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","168.000000","173.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739342.000000",,,,, +"4478.000000","61.040000","4478.000000","61.040000","4478.000000","61.040000","1824.000000","0.000000",,,,,,,,,,,,"8.000000","378.000000","748.000000","14.000000","378.000000","378.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","170.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739362.000000",,,,, +"4201.000000","59.735000","4201.000000","59.735000","4201.000000","59.735000","1506.000000","0.000000",,,,,,,,,,,,"2.000000","451.000000","899.000000","17.000000","451.000000","451.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","184.000000","189.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","167.000000","173.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739382.000000",,,,, +"4286.000000","60.140000","4286.000000","60.140000","4286.000000","60.140000","943.000000","0.000000",,,,,,,,,,,,"30.000000","1213.000000","2395.000000","19.000000","1213.000000","1213.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072376.000000","0.000000","2092704.000000","129468.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","180.000000","188.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","170.000000","161.000000","171.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739402.000000",,,,, +"3519.000000","56.530000","3519.000000","56.530000","3519.000000","56.530000","897.000000","0.000000",,,,,,,,,,,,"6.000000","351.500000","697.000000","10.000000","351.500000","351.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072308.000000","0.000000","2092704.000000","129468.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","175.000000","186.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","169.000000","150.000000","167.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739422.000000",,,,, +"5069.000000","63.815000","5069.000000","63.815000","5069.000000","63.815000","981.000000","0.000000",,,,,,,,,,,,"4.000000","703.000000","1402.000000","27.000000","703.000000","703.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","182.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","159.000000","166.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739443.000000",,,,, +"4774.000000","62.430000","4774.000000","62.430000","4774.000000","62.430000","889.000000","0.000000",,,,,,,,,,,,"2185.000000","2329.000000","2471.000000","20.000000","2329.000000","2329.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072348.000000","0.000000","2092704.000000","129468.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","186.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","167.000000","167.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739463.000000",,,,, +"3333.000000","50.655000","3333.000000","50.655000","3333.000000","50.655000","1163.000000","0.000000",,,,,,,,,,,,"6579.000000","6708.500000","6837.000000","34.000000","6708.500000","6708.500000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","183.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","169.000000","165.000000","165.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739482.000000",,,,, +"3565.000000","51.750000","3565.000000","51.750000","3565.000000","51.750000","650.000000","0.000000",,,,,,,,,,,,"388.000000","2851.000000","5313.000000","22.000000","2851.000000","2851.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072860.000000","0.000000","2092704.000000","129468.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","170.000000","182.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","168.000000","150.000000","162.000000","199.000000","195.000000","199.000000","160.000000","6000.000000","0.000000","739502.000000",,,,, +"4392.000000","55.635000","4392.000000","55.635000","4392.000000","55.635000","905.000000","0.000000",,,,,,,,,,,,"4897.000000","9654.000000","14409.000000","107.000000","9654.000000","9654.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","164.000000","181.000000","207.000000","184.000000","202.000000","0.000000","0.000000","0.000000","168.000000","141.000000","161.000000","199.000000","171.000000","196.000000","160.000000","6000.000000","0.000000","739522.000000",,,,, +"4429.000000","60.810000","4429.000000","60.810000","4429.000000","60.810000","932.000000","0.000000",,,,,,,,,,,,"628.000000","4518.500000","8407.000000","62.000000","4518.500000","4518.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","181.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","154.000000","162.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739542.000000",,,,, +"3683.000000","57.300000","3683.000000","57.300000","3683.000000","57.300000","873.000000","0.000000",,,,,,,,,,,,"5406.000000","9346.000000","13285.000000","20.000000","9346.000000","9346.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072584.000000","0.000000","2092704.000000","129468.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","186.000000","173.000000","179.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","159.000000","161.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739562.000000",,,,, +"2890.000000","53.575000","2890.000000","53.575000","2890.000000","53.575000","983.000000","0.000000",,,,,,,,,,,,"14981.000000","9604.000000","4227.000000","22.000000","9604.000000","9604.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072684.000000","0.000000","2092704.000000","129468.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","153.000000","174.000000","205.000000","201.000000","201.000000","0.000000","0.000000","0.000000","165.000000","141.000000","157.000000","199.000000","191.000000","191.000000","160.000000","6000.000000","0.000000","739582.000000",,,,, +"2773.000000","54.030000","2773.000000","54.030000","2773.000000","54.030000","962.000000","0.000000",,,,,,,,,,,,"13438.000000","10948.500000","8458.000000","9.000000","10948.500000","10948.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072724.000000","0.000000","2092704.000000","129468.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","127.000000","169.000000","205.000000","181.000000","201.000000","0.000000","0.000000","0.000000","164.000000","117.000000","151.000000","199.000000","180.000000","191.000000","160.000000","6000.000000","0.000000","739602.000000",,,,, +"2556.000000","53.005000","2556.000000","53.005000","2556.000000","53.005000","1566.000000","0.000000",,,,,,,,,,,,"9579.000000","7310.000000","5040.000000","19.000000","7310.000000","7310.000000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072676.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","119.000000","165.000000","205.000000","147.000000","201.000000","0.000000","0.000000","0.000000","163.000000","98.000000","147.000000","199.000000","135.000000","191.000000","160.000000","6000.000000","0.000000","739622.000000",,,,, +"3540.000000","57.630000","3540.000000","57.630000","3540.000000","57.630000","657.000000","0.000000",,,,,,,,,,,,"56.000000","6209.500000","12363.000000","45.000000","6209.500000","6209.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","138.000000","164.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","163.000000","109.000000","144.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739642.000000",,,,, +"3557.000000","57.715000","3557.000000","57.715000","3557.000000","57.715000","792.000000","0.000000",,,,,,,,,,,,"259.000000","2335.000000","4408.000000","61.000000","2335.000000","2335.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","181.000000","160.000000","163.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","162.000000","120.000000","141.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739662.000000",,,,, +"3087.000000","55.505000","3087.000000","55.505000","3087.000000","55.505000","1388.000000","0.000000",,,,,,,,,,,,"265.000000","2670.000000","5073.000000","23.000000","2670.000000","2670.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","180.000000","164.000000","161.000000","205.000000","190.000000","196.000000","0.000000","0.000000","0.000000","161.000000","127.000000","138.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739682.000000",,,,, +"3099.000000","55.560000","3099.000000","55.560000","3099.000000","55.560000","1464.000000","0.000000",,,,,,,,,,,,"217.000000","2940.500000","5662.000000","50.000000","2940.500000","2940.500000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","180.000000","163.000000","161.000000","205.000000","186.000000","196.000000","0.000000","0.000000","0.000000","160.000000","122.000000","136.000000","199.000000","153.000000","183.000000","160.000000","6000.000000","0.000000","739702.000000",,,,, +"3109.000000","56.105000","3109.000000","56.105000","3109.000000","56.105000","587.000000","0.000000",,,,,,,,,,,,"385.000000","8774.500000","17162.000000","33.000000","8774.500000","8774.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071980.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","179.000000","156.000000","159.000000","205.000000","176.000000","196.000000","0.000000","0.000000","0.000000","160.000000","116.000000","135.000000","199.000000","133.000000","183.000000","160.000000","6000.000000","0.000000","739722.000000",,,,, +"3324.000000","57.115000","3324.000000","57.115000","3324.000000","57.115000","694.000000","0.000000",,,,,,,,,,,,"445.000000","9452.000000","18459.000000","34.000000","9452.000000","9452.000000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","158.000000","157.000000","205.000000","176.000000","188.000000","0.000000","0.000000","0.000000","159.000000","119.000000","131.000000","199.000000","136.000000","178.000000","160.000000","6000.000000","0.000000","739742.000000",,,,, +"3383.000000","57.395000","3383.000000","57.395000","3383.000000","57.395000","705.000000","0.000000",,,,,,,,,,,,"1364.000000","5928.500000","10493.000000","53.000000","5928.500000","5928.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071804.000000","0.000000","2092704.000000","129468.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","154.000000","154.000000","205.000000","178.000000","184.000000","0.000000","0.000000","0.000000","158.000000","123.000000","127.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739762.000000",,,,, +"2190.000000","48.785000","2190.000000","48.785000","2190.000000","48.785000","770.000000","0.000000",,,,,,,,,,,,"11461.000000","10816.500000","10171.000000","21.000000","10816.500000","10816.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","152.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","156.000000","111.000000","124.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739782.000000",,,,, +"2287.000000","49.245000","2287.000000","49.245000","2287.000000","49.245000","809.000000","0.000000",,,,,,,,,,,,"15130.000000","8328.500000","1527.000000","3.000000","8328.500000","8328.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","131.000000","149.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","154.000000","102.000000","121.000000","199.000000","134.000000","163.000000","160.000000","6000.000000","0.000000","739802.000000",,,,, +"2401.000000","49.780000","2401.000000","49.780000","2401.000000","49.780000","667.000000","0.000000",,,,,,,,,,,,"13564.000000","11656.500000","9748.000000","33.000000","11656.500000","11656.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","122.000000","146.000000","202.000000","169.000000","181.000000","0.000000","0.000000","0.000000","151.000000","88.000000","117.000000","197.000000","125.000000","160.000000","160.000000","6000.000000","0.000000","739822.000000",,,,, +"3429.000000","56.110000","3429.000000","56.110000","3429.000000","56.110000","680.000000","0.000000",,,,,,,,,,,,"1129.000000","1602.000000","2075.000000","27.000000","1602.000000","1602.000000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071756.000000","0.000000","2092704.000000","129468.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","141.000000","145.000000","202.000000","194.000000","178.000000","0.000000","0.000000","0.000000","150.000000","101.000000","113.000000","197.000000","159.000000","152.000000","160.000000","6000.000000","0.000000","739842.000000",,,,, +"3383.000000","55.895000","3383.000000","55.895000","3383.000000","55.895000","606.000000","0.000000",,,,,,,,,,,,"290.000000","457.500000","625.000000","16.000000","457.500000","457.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071692.000000","0.000000","2092704.000000","129468.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","146.000000","201.000000","194.000000","182.000000","0.000000","0.000000","0.000000","149.000000","112.000000","112.000000","196.000000","159.000000","135.000000","160.000000","6000.000000","0.000000","739862.000000",,,,, +"3713.000000","57.445000","3713.000000","57.445000","3713.000000","57.445000","1088.000000","0.000000",,,,,,,,,,,,"10342.000000","5557.500000","772.000000","4.000000","5557.500000","5557.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","171.000000","150.000000","201.000000","194.000000","183.000000","0.000000","0.000000","0.000000","148.000000","131.000000","115.000000","196.000000","177.000000","147.000000","160.000000","6000.000000","0.000000","739882.000000",,,,, +"3452.000000","54.220000","3452.000000","54.220000","3452.000000","54.220000","713.000000","0.000000",,,,,,,,,,,,"22184.000000","11377.500000","569.000000","3.000000","11377.500000","11377.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071620.000000","0.000000","2092704.000000","129468.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","158.000000","151.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","147.000000","132.000000","116.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739902.000000",,,,, +"2954.000000","51.880000","2954.000000","51.880000","2954.000000","51.880000","1777.000000","0.000000",,,,,,,,,,,,"17443.000000","13003.000000","8563.000000","24.000000","13003.000000","13003.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","142.000000","150.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","146.000000","128.000000","118.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739922.000000",,,,, +"3519.000000","54.535000","3519.000000","54.535000","3519.000000","54.535000","1406.000000","0.000000",,,,,,,,,,,,"9508.000000","8017.500000","6527.000000","31.000000","8017.500000","8017.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","135.000000","149.000000","201.000000","188.000000","183.000000","0.000000","0.000000","0.000000","145.000000","119.000000","117.000000","195.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739942.000000",,,,, +"4168.000000","59.080000","4168.000000","59.080000","4168.000000","59.080000","1057.000000","0.000000",,,,,,,,,,,,"5.000000","276.000000","547.000000","11.000000","276.000000","276.000000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071184.000000","0.000000","2092704.000000","129468.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","157.000000","150.000000","201.000000","201.000000","188.000000","0.000000","0.000000","0.000000","145.000000","132.000000","118.000000","192.000000","178.000000","164.000000","160.000000","6000.000000","0.000000","739962.000000",,,,, +"4947.000000","62.745000","4947.000000","62.745000","4947.000000","62.745000","1030.000000","0.000000",,,,,,,,,,,,"8.000000","335.500000","663.000000","15.000000","335.500000","335.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","178.000000","153.000000","201.000000","210.000000","194.000000","0.000000","0.000000","0.000000","145.000000","153.000000","123.000000","195.000000","210.000000","175.000000","160.000000","6000.000000","0.000000","739982.000000",,,,, +"4595.000000","61.085000","4595.000000","61.085000","4595.000000","61.085000","957.000000","0.000000",,,,,,,,,,,,"27.000000","484.500000","942.000000","16.000000","484.500000","484.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071028.000000","0.000000","2092704.000000","129468.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","193.000000","155.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","144.000000","171.000000","127.000000","192.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740002.000000",,,,, +"3356.000000","53.765000","3356.000000","53.765000","3356.000000","53.765000","1270.000000","0.000000",,,,,,,,,,,,"6.000000","574.500000","1142.000000","23.000000","574.500000","574.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070932.000000","0.000000","2092704.000000","129468.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","184.000000","156.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","143.000000","162.000000","128.000000","191.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740022.000000",,,,, +"3894.000000","56.290000","3894.000000","56.290000","3894.000000","56.290000","1136.000000","0.000000",,,,,,,,,,,,"15.000000","375.500000","735.000000","17.000000","375.500000","375.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070852.000000","0.000000","2092704.000000","129468.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","177.000000","157.000000","200.000000","206.000000","197.000000","0.000000","0.000000","0.000000","142.000000","150.000000","129.000000","185.000000","199.000000","177.000000","160.000000","6000.000000","0.000000","740042.000000",,,,, +"3034.000000","52.255000","3034.000000","52.255000","3034.000000","52.255000","1177.000000","0.000000",,,,,,,,,,,,"14545.000000","7711.000000","876.000000","4.000000","7711.000000","7711.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070908.000000","0.000000","2092704.000000","129468.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","162.000000","157.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","141.000000","137.000000","129.000000","183.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740062.000000",,,,, +"1211.000000","43.685000","1211.000000","43.685000","1211.000000","43.685000","630.000000","0.000000",,,,,,,,,,,,"20303.000000","10183.000000","62.000000","2.000000","10183.000000","10183.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071384.000000","0.000000","2092704.000000","129468.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","115.000000","151.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","138.000000","102.000000","126.000000","182.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740082.000000",,,,, +"1365.000000","44.410000","1365.000000","44.410000","1365.000000","44.410000","698.000000","0.000000",,,,,,,,,,,,"18097.000000","14246.000000","10395.000000","29.000000","14246.000000","14246.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","159.000000","79.000000","147.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","136.000000","73.000000","123.000000","181.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740102.000000",,,,, +"991.000000","42.655000","991.000000","42.655000","991.000000","42.655000","838.000000","0.000000",,,,,,,,,,,,"7845.000000","6704.000000","5533.000000","25.000000","6704.000000","6704.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071476.000000","0.000000","2092704.000000","129468.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"0.000000","30.000000",,,,,,,,,,,"0.000000","156.000000","48.000000","142.000000","196.000000","75.000000","197.000000","0.000000","0.000000","0.000000","133.000000","44.000000","121.000000","180.000000","72.000000","178.000000","160.000000","6000.000000","0.000000","740122.000000",,,,, +"662.000000","43.605000","662.000000","43.605000","662.000000","43.605000","538.000000","0.000000",,,,,,,,,,,,"25832.000000","24908.000000","23974.000000","11.000000","24908.000000","24908.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"0.000000","10.000000",,,,,,,,,,,"0.000000","152.000000","40.000000","131.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","129.000000","37.000000","113.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740142.000000",,,,, +"720.000000","43.880000","720.000000","43.880000","720.000000","43.880000","820.000000","0.000000",,,,,,,,,,,,"23145.000000","25480.000000","27787.000000","15.000000","25480.000000","25480.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","149.000000","32.000000","122.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","127.000000","30.000000","107.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740162.000000",,,,, +"554.000000","43.100000","554.000000","43.100000","554.000000","43.100000","586.000000","0.000000",,,,,,,,,,,,"1665.000000","1037.000000","408.000000","3.000000","1037.000000","1037.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071848.000000","0.000000","2092704.000000","129468.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","146.000000","26.000000","113.000000","196.000000","32.000000","197.000000","0.000000","0.000000","0.000000","124.000000","24.000000","99.000000","178.000000","28.000000","178.000000","160.000000","6000.000000","0.000000","740182.000000",,,,, +"531.000000","41.990000","531.000000","41.990000","531.000000","41.990000","857.000000","0.000000",,,,,,,,,,,,"121.000000","221.000000","282.000000","4.000000","221.000000","221.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","0.000000","0.000000",,,,,,"27.000000","11.000000",,,,,,,,,,,"0.000000","141.000000","24.000000","104.000000","195.000000","34.000000","197.000000","0.000000","0.000000","0.000000","119.000000","22.000000","91.000000","178.000000","30.000000","175.000000","160.000000","6000.000000","0.000000","740202.000000",,,,, +"1094.000000","44.635000","1094.000000","44.635000","1094.000000","44.635000","937.000000","0.000000",,,,,,,,,,,,"72.000000","6377.000000","10677.000000","33.000000","6377.000000","6377.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","0.000000","0.000000",,,,,,"1986.000000","19.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","99.000000","195.000000","57.000000","197.000000","0.000000","0.000000","0.000000","117.000000","28.000000","87.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740222.000000",,,,, +"561.000000","42.130000","561.000000","42.130000","561.000000","42.130000","644.000000","0.000000",,,,,,,,,,,,"41.000000","292.000000","541.000000","6.000000","292.000000","292.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","135.000000","30.000000","92.000000","194.000000","57.000000","197.000000","0.000000","0.000000","0.000000","114.000000","28.000000","81.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740242.000000",,,,, +"812.000000","42.310000","812.000000","42.310000","812.000000","42.310000","678.000000","0.000000",,,,,,,,,,,,"18.000000","182.000000","346.000000","4.000000","182.000000","182.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071420.000000","0.000000","2092704.000000","129468.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","32.000000","79.000000","193.000000","57.000000","195.000000","0.000000","0.000000","0.000000","110.000000","30.000000","71.000000","177.000000","55.000000","174.000000","160.000000","6000.000000","0.000000","740262.000000",,,,, +"441.000000","40.570000","441.000000","40.570000","441.000000","40.570000","677.000000","0.000000",,,,,,,,,,,,"6.000000","96.000000","186.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071312.000000","0.000000","2092704.000000","129468.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","23.000000","68.000000","193.000000","51.000000","186.000000","0.000000","0.000000","0.000000","107.000000","22.000000","61.000000","175.000000","49.000000","170.000000","160.000000","6000.000000","0.000000","740282.000000",,,,, +"244.000000","39.640000","244.000000","39.640000","244.000000","39.640000","564.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071400.000000","0.000000","2092704.000000","129468.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","19.000000","57.000000","191.000000","39.000000","177.000000","0.000000","0.000000","0.000000","104.000000","18.000000","50.000000","175.000000","39.000000","146.000000","160.000000","6000.000000","0.000000","740302.000000",,,,, +"274.000000","41.285000","274.000000","41.285000","274.000000","41.285000","414.000000","0.000000",,,,,,,,,,,,"0.000000","59.000000","117.000000","1.000000","59.000000","59.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2071132.000000","0.000000","2092704.000000","129468.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","12.000000","45.000000","191.000000","31.000000","158.000000","0.000000","0.000000","0.000000","101.000000","12.000000","41.000000","175.000000","31.000000","134.000000","160.000000","6000.000000","0.000000","740322.000000",,,,, +"244.000000","41.145000","244.000000","41.145000","244.000000","41.145000","386.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","23.000000","27.500000","27.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","9.000000","35.000000","190.000000","13.000000","57.000000","0.000000","0.000000","0.000000","97.000000","9.000000","33.000000","173.000000","13.000000","55.000000","160.000000","6000.000000","0.000000","740342.000000",,,,, +"240.000000","41.125000","240.000000","41.125000","240.000000","41.125000","453.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","48.000000","153.000000","24.500000","24.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070304.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","112.000000","9.000000","26.000000","188.000000","13.000000","55.000000","0.000000","0.000000","0.000000","94.000000","9.000000","25.000000","166.000000","13.000000","53.000000","160.000000","6000.000000","0.000000","740362.000000",,,,, +"288.000000","41.845000","288.000000","41.845000","288.000000","41.845000","406.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","1.000000","48.500000","48.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","109.000000","9.000000","24.000000","188.000000","13.000000","54.000000","0.000000","0.000000","0.000000","91.000000","9.000000","22.000000","166.000000","13.000000","51.000000","160.000000","6000.000000","0.000000","740382.000000",,,,, +"243.000000","41.640000","243.000000","41.640000","243.000000","41.640000","506.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069776.000000","0.000000","2092704.000000","129468.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","21.000000","188.000000","13.000000","46.000000","0.000000","0.000000","0.000000","88.000000","9.000000","20.000000","166.000000","13.000000","45.000000","160.000000","6000.000000","0.000000","740402.000000",,,,, +"237.000000","41.610000","237.000000","41.610000","237.000000","41.610000","472.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","0.000000","23.000000","23.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069544.000000","0.000000","2092704.000000","129468.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","9.000000","19.000000","188.000000","13.000000","34.000000","0.000000","0.000000","0.000000","85.000000","9.000000","18.000000","166.000000","13.000000","31.000000","160.000000","6000.000000","0.000000","740422.000000",,,,, +"358.000000","34.675000","358.000000","34.675000","358.000000","34.675000","448.000000","0.000000",,,,,,,,,,,,"0.000000","122.000000","243.000000","1.000000","122.000000","122.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069432.000000","0.000000","2092704.000000","129468.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","98.000000","10.000000","18.000000","186.000000","14.000000","34.000000","0.000000","0.000000","0.000000","81.000000","10.000000","17.000000","160.000000","14.000000","31.000000","160.000000","6000.000000","0.000000","740442.000000",,,,, +"711.000000","36.340000","711.000000","36.340000","711.000000","36.340000","688.000000","0.000000",,,,,,,,,,,,"44.000000","237.500000","425.000000","2.000000","237.500000","237.500000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069264.000000","0.000000","2092704.000000","129468.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","95.000000","16.000000","18.000000","186.000000","50.000000","39.000000","0.000000","0.000000","0.000000","78.000000","15.000000","17.000000","159.000000","49.000000","39.000000","160.000000","6000.000000","0.000000","740463.000000",,,,, +"1026.000000","37.815000","1026.000000","37.815000","1026.000000","37.815000","724.000000","0.000000",,,,,,,,,,,,"39.000000","466.000000","848.000000","5.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"30.000000","15.000000",,,,,,,,,,,"0.000000","94.000000","27.000000","19.000000","186.000000","58.000000","50.000000","0.000000","0.000000","0.000000","77.000000","25.000000","18.000000","159.000000","57.000000","49.000000","160.000000","6000.000000","0.000000","740482.000000",,,,, +"976.000000","32.580000","976.000000","32.580000","976.000000","32.580000","495.000000","0.000000",,,,,,,,,,,,"1.000000","4386.000000","8755.000000","39.000000","4386.000000","4386.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071468.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"10.000000","5.000000",,,,,,,,,,,"0.000000","92.000000","37.000000","20.000000","186.000000","68.000000","56.000000","0.000000","0.000000","0.000000","75.000000","34.000000","19.000000","159.000000","68.000000","49.000000","160.000000","6000.000000","0.000000","740502.000000",,,,, +"722.000000","31.390000","722.000000","31.390000","722.000000","31.390000","1146.000000","0.000000",,,,,,,,,,,,"2.000000","293.000000","583.000000","5.000000","293.000000","293.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071820.000000","0.000000","2092704.000000","129468.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","90.000000","37.000000","19.000000","186.000000","68.000000","50.000000","0.000000","0.000000","0.000000","74.000000","34.000000","18.000000","159.000000","68.000000","41.000000","160.000000","6000.000000","0.000000","740522.000000",,,,, +"455.000000","30.135000","455.000000","30.135000","455.000000","30.135000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","120.500000","241.000000","7.000000","120.500000","120.500000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071380.000000","0.000000","2092704.000000","129468.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","87.000000","29.000000","19.000000","185.000000","68.000000","43.000000","0.000000","0.000000","0.000000","72.000000","27.000000","18.000000","154.000000","68.000000","40.000000","160.000000","6000.000000","0.000000","740542.000000",,,,, +"612.000000","27.370000","612.000000","27.370000","612.000000","27.370000","853.000000","0.000000",,,,,,,,,,,,"0.000000","134.500000","269.000000","2.000000","134.500000","134.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070860.000000","0.000000","2092704.000000","129468.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","83.000000","24.000000","19.000000","183.000000","43.000000","43.000000","0.000000","0.000000","0.000000","69.000000","22.000000","17.000000","154.000000","40.000000","40.000000","160.000000","6000.000000","0.000000","740562.000000",,,,, +"243.000000","25.640000","243.000000","25.640000","243.000000","25.640000","695.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","4.000000","61.500000","61.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070356.000000","0.000000","2092704.000000","129468.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","19.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","67.000000","17.000000","17.000000","154.000000","35.000000","40.000000","160.000000","6000.000000","0.000000","740582.000000",,,,, +"247.000000","25.655000","247.000000","25.655000","247.000000","25.655000","709.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","1.000000","22.000000","22.000000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2069884.000000","0.000000","2092704.000000","129468.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","15.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","65.000000","13.000000","17.000000","154.000000","30.000000","40.000000","160.000000","6000.000000","0.000000","740602.000000",,,,, +"261.000000","22.220000","261.000000","22.220000","261.000000","22.220000","641.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2069480.000000","0.000000","2092704.000000","129468.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","62.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740622.000000",,,,, +"236.000000","22.105000","236.000000","22.105000","236.000000","22.105000","449.000000","0.000000",,,,,,,,,,,,"0.000000","18.500000","37.000000","2.000000","18.500000","18.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068928.000000","0.000000","2092704.000000","129468.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","70.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","59.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740643.000000",,,,, +"222.000000","22.040000","222.000000","22.040000","222.000000","22.040000","765.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068240.000000","0.000000","2092704.000000","129468.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","57.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740662.000000",,,,, +"258.000000","20.210000","258.000000","20.210000","258.000000","20.210000","475.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","2.000000","55.500000","55.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067808.000000","0.000000","2092704.000000","129468.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","55.000000","9.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740682.000000",,,,, +"219.000000","20.025000","219.000000","20.025000","219.000000","20.025000","527.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","0.000000","11.000000","11.000000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067324.000000","0.000000","2092704.000000","129468.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","62.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","53.000000","8.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740702.000000",,,,, +"220.000000","20.030000","220.000000","20.030000","220.000000","20.030000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","1.000000","20.500000","20.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2066748.000000","0.000000","2092704.000000","129468.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","59.000000","8.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","52.000000","8.000000","16.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740722.000000",,,,, +"268.000000","16.755000","268.000000","16.755000","268.000000","16.755000","529.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","3.000000","65.000000","65.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066584.000000","0.000000","2092704.000000","129468.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","55.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","49.000000","8.000000","16.000000","149.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740742.000000",,,,, +"587.000000","18.255000","587.000000","18.255000","587.000000","18.255000","447.000000","0.000000",,,,,,,,,,,,"1.000000","233.000000","458.000000","2.000000","233.000000","233.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066568.000000","0.000000","2092704.000000","129468.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","52.000000","12.000000","17.000000","182.000000","23.000000","42.000000","0.000000","0.000000","0.000000","46.000000","11.000000","16.000000","149.000000","20.000000","37.000000","160.000000","6000.000000","0.000000","740762.000000",,,,, +"625.000000","18.435000","625.000000","18.435000","625.000000","18.435000","596.000000","0.000000",,,,,,,,,,,,"141.000000","188.500000","236.000000","1.000000","188.500000","188.500000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066452.000000","0.000000","2092704.000000","129468.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","49.000000","19.000000","16.000000","177.000000","48.000000","42.000000","0.000000","0.000000","0.000000","44.000000","18.000000","15.000000","146.000000","46.000000","37.000000","160.000000","6000.000000","0.000000","740782.000000",,,,, +"395.000000","15.850000","395.000000","15.850000","395.000000","15.850000","914.000000","0.000000",,,,,,,,,,,,"33.000000","104.500000","175.000000","4.000000","104.500000","104.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2065992.000000","0.000000","2092704.000000","129468.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","46.000000","21.000000","14.000000","175.000000","48.000000","36.000000","0.000000","0.000000","0.000000","41.000000","19.000000","13.000000","145.000000","46.000000","32.000000","160.000000","6000.000000","0.000000","740802.000000",,,,, +"515.000000","16.415000","515.000000","16.415000","515.000000","16.415000","481.000000","0.000000",,,,,,,,,,,,"13.000000","174.000000","333.000000","4.000000","174.000000","174.000000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066112.000000","0.000000","2092704.000000","129468.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","44.000000","22.000000","14.000000","175.000000","48.000000","34.000000","0.000000","0.000000","0.000000","39.000000","21.000000","13.000000","137.000000","46.000000","29.000000","160.000000","6000.000000","0.000000","740822.000000",,,,, +"455.000000","16.130000","455.000000","16.130000","455.000000","16.130000","626.000000","0.000000",,,,,,,,,,,,"0.000000","74.500000","149.000000","2.000000","74.500000","74.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066080.000000","0.000000","2092704.000000","129468.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","14.000000","173.000000","26.000000","26.000000","0.000000","0.000000","0.000000","37.000000","16.000000","13.000000","134.000000","23.000000","23.000000","160.000000","6000.000000","0.000000","740842.000000",,,,, +"226.000000","13.565000","226.000000","13.565000","226.000000","13.565000","568.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","2.000000","52.500000","52.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065568.000000","0.000000","2092704.000000","129468.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","16.000000","13.000000","140.000000","25.000000","23.000000","0.000000","0.000000","0.000000","33.000000","15.000000","12.000000","112.000000","23.000000","21.000000","160.000000","6000.000000","0.000000","740862.000000",,,,, +"244.000000","13.645000","244.000000","13.645000","244.000000","13.645000","630.000000","0.000000",,,,,,,,,,,,"42.000000","46.500000","50.000000","1.000000","46.500000","46.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065016.000000","0.000000","2092704.000000","129468.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","12.000000","13.000000","68.000000","23.000000","23.000000","0.000000","0.000000","0.000000","30.000000","11.000000","12.000000","68.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","740882.000000",,,,, +"277.000000","13.805000","277.000000","13.805000","277.000000","13.805000","660.000000","0.000000",,,,,,,,,,,,"635.000000","365.000000","93.000000","2.000000","365.000000","365.000000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2064928.000000","0.000000","2092704.000000","129468.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","29.000000","10.000000","13.000000","56.000000","16.000000","23.000000","0.000000","0.000000","0.000000","26.000000","10.000000","12.000000","54.000000","16.000000","21.000000","160.000000","6000.000000","0.000000","740902.000000",,,,, +"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","567.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064284.000000","0.000000","2092704.000000","129468.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","13.000000","54.000000","15.000000","23.000000","0.000000","0.000000","0.000000","23.000000","9.000000","12.000000","49.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740922.000000",,,,, +"224.000000","11.550000","224.000000","11.550000","224.000000","11.550000","426.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064100.000000","0.000000","2092704.000000","129468.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","13.000000","50.000000","15.000000","23.000000","0.000000","0.000000","0.000000","20.000000","9.000000","12.000000","45.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740942.000000",,,,, +"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","458.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2063432.000000","0.000000","2092704.000000","129468.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","43.000000","10.000000","23.000000","0.000000","0.000000","0.000000","18.000000","8.000000","12.000000","40.000000","9.000000","21.000000","160.000000","6000.000000","0.000000","740962.000000",,,,, +"233.000000","11.590000","233.000000","11.590000","233.000000","11.590000","444.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2062148.000000","0.000000","2092704.000000","129468.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","42.000000","10.000000","23.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","39.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","740982.000000",,,,, +"241.000000","11.625000","241.000000","11.625000","241.000000","11.625000","410.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2061624.000000","0.000000","2092704.000000","129468.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","13.000000","39.000000","10.000000","23.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","35.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741002.000000",,,,, +"228.000000","11.570000","228.000000","11.570000","228.000000","11.570000","500.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2060900.000000","0.000000","2092704.000000","129468.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","13.000000","36.000000","10.000000","23.000000","0.000000","0.000000","0.000000","15.000000","8.000000","12.000000","31.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741022.000000",,,,, +"438.000000","11.555000","438.000000","11.555000","438.000000","11.555000","509.000000","0.000000",,,,,,,,,,,,"7.000000","179.000000","346.000000","9.000000","179.000000","179.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060984.000000","0.000000","2092704.000000","129468.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","11.000000","13.000000","36.000000","24.000000","24.000000","0.000000","0.000000","0.000000","15.000000","11.000000","12.000000","31.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","741042.000000",,,,, +"649.000000","12.545000","649.000000","12.545000","649.000000","12.545000","578.000000","0.000000",,,,,,,,,,,,"5.000000","168.500000","329.000000","59.000000","168.500000","168.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061052.000000","0.000000","2092704.000000","129468.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","16.000000","14.000000","38.000000","39.000000","26.000000","0.000000","0.000000","0.000000","15.000000","16.000000","13.000000","32.000000","38.000000","23.000000","160.000000","6000.000000","0.000000","741062.000000",,,,, +"896.000000","13.705000","896.000000","13.705000","896.000000","13.705000","471.000000","0.000000",,,,,,,,,,,,"0.000000","407.500000","792.000000","17.000000","407.500000","407.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061072.000000","0.000000","2092704.000000","129468.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"13.000000","9.000000",,,,,,,,,,,"0.000000","16.000000","27.000000","14.000000","39.000000","66.000000","26.000000","0.000000","0.000000","0.000000","15.000000","24.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741082.000000",,,,, +"282.000000","9.820000","282.000000","9.820000","282.000000","9.820000","555.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","95.000000","7.000000","54.000000","54.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060564.000000","0.000000","2092704.000000","129468.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","0.000000","0.000000",,,,,,"9.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","25.000000","14.000000","39.000000","66.000000","25.000000","0.000000","0.000000","0.000000","15.000000","22.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741102.000000",,,,, +"262.000000","9.725000","262.000000","9.725000","262.000000","9.725000","957.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","8.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060444.000000","0.000000","2092704.000000","129468.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","0.000000","0.000000",,,,,,"10.000000","4.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","13.000000","38.000000","66.000000","24.000000","0.000000","0.000000","0.000000","14.000000","18.000000","12.000000","32.000000","50.000000","20.000000","160.000000","6000.000000","0.000000","741122.000000",,,,, +"916.000000","12.800000","916.000000","12.800000","916.000000","12.800000","756.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4782.000000","33.000000","2918.000000","2918.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","0.000000","0.000000",,,,,,"1035.000000","13.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","15.000000","39.000000","57.000000","39.000000","0.000000","0.000000","0.000000","15.000000","18.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741142.000000",,,,, +"493.000000","13.815000","493.000000","13.815000","493.000000","13.815000","991.000000","0.000000",,,,,,,,,,,,"6.000000","173.000000","338.000000","2.000000","173.000000","173.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062296.000000","0.000000","2092704.000000","129468.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","20.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741162.000000",,,,, +"270.000000","12.765000","270.000000","12.765000","270.000000","12.765000","730.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","1.000000","39.500000","39.500000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062556.000000","0.000000","2092704.000000","129468.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","21.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741182.000000",,,,, +"283.000000","12.825000","283.000000","12.825000","283.000000","12.825000","640.000000","0.000000",,,,,,,,,,,,"994.000000","532.000000","65.000000","3.000000","532.000000","532.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062660.000000","0.000000","2092704.000000","129468.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","15.000000","13.000000","15.000000","38.000000","36.000000","39.000000","0.000000","0.000000","0.000000","14.000000","13.000000","14.000000","35.000000","35.000000","38.000000","160.000000","6000.000000","0.000000","741202.000000",,,,, +"654.000000","13.070000","654.000000","13.070000","654.000000","13.070000","591.000000","0.000000",,,,,,,,,,,,"1550.000000","845.500000","140.000000","1.000000","845.500000","845.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2062344.000000","0.000000","2092704.000000","129468.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","15.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741222.000000",,,,, +"228.000000","11.065000","228.000000","11.065000","228.000000","11.065000","473.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061836.000000","0.000000","2092704.000000","129468.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","14.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741242.000000",,,,, +"221.000000","11.035000","221.000000","11.035000","221.000000","11.035000","462.000000","0.000000",,,,,,,,,,,,"0.000000","49.000000","98.000000","5.000000","49.000000","49.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061248.000000","0.000000","2092704.000000","129468.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","13.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741262.000000",,,,, +"266.000000","11.745000","266.000000","11.745000","266.000000","11.745000","499.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","1.000000","61.500000","61.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061208.000000","0.000000","2092704.000000","129468.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741282.000000",,,,, +"219.000000","11.525000","219.000000","11.525000","219.000000","11.525000","454.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","21.000000","37.500000","37.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2060644.000000","0.000000","2092704.000000","129468.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741302.000000",,,,, +"217.000000","11.515000","217.000000","11.515000","217.000000","11.515000","434.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061188.000000","0.000000","2092704.000000","129468.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741322.000000",,,,, +"275.000000","12.790000","275.000000","12.790000","275.000000","12.790000","505.000000","0.000000",,,,,,,,,,,,"0.000000","73.000000","146.000000","1.000000","73.000000","73.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061252.000000","0.000000","2092704.000000","129468.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741342.000000",,,,, +"640.000000","14.505000","640.000000","14.505000","640.000000","14.505000","586.000000","0.000000",,,,,,,,,,,,"18.000000","322.500000","614.000000","1.000000","322.500000","322.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061020.000000","0.000000","2092704.000000","129468.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"6.000000","7.000000",,,,,,,,,,,"0.000000","15.000000","14.000000","16.000000","38.000000","45.000000","43.000000","0.000000","0.000000","0.000000","14.000000","13.000000","15.000000","35.000000","36.000000","37.000000","160.000000","6000.000000","0.000000","741362.000000",,,,, +"595.000000","14.290000","595.000000","14.290000","595.000000","14.290000","522.000000","0.000000",,,,,,,,,,,,"4.000000","194.500000","382.000000","2.000000","194.500000","194.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061120.000000","0.000000","2092704.000000","129468.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","15.000000","36.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","35.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741382.000000",,,,, +"267.000000","12.750000","267.000000","12.750000","267.000000","12.750000","483.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","3.000000","40.500000","40.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2060612.000000","0.000000","2092704.000000","129468.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","20.000000","15.000000","34.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","30.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741402.000000",,,,, +"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","614.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2060332.000000","0.000000","2092704.000000","129468.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","15.000000","15.000000","31.000000","54.000000","37.000000","0.000000","0.000000","0.000000","13.000000","14.000000","14.000000","29.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741422.000000",,,,, +"234.000000","13.095000","234.000000","13.095000","234.000000","13.095000","378.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","15.000000","33.000000","33.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059608.000000","0.000000","2092704.000000","129468.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","13.000000","27.000000","13.000000","31.000000","0.000000","0.000000","0.000000","13.000000","9.000000","12.000000","26.000000","12.000000","29.000000","160.000000","6000.000000","0.000000","741442.000000",,,,, +"472.000000","14.210000","472.000000","14.210000","472.000000","14.210000","501.000000","0.000000",,,,,,,,,,,,"423.000000","296.000000","167.000000","1.000000","296.000000","296.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059276.000000","0.000000","2092704.000000","129468.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741462.000000",,,,, +"218.000000","10.520000","218.000000","10.520000","218.000000","10.520000","899.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","4.000000","31.000000","31.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2059400.000000","0.000000","2092704.000000","129468.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741482.000000",,,,, +"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","761.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058808.000000","0.000000","2092704.000000","129468.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","12.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741502.000000",,,,, +"270.000000","10.760000","270.000000","10.760000","270.000000","10.760000","640.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","5.000000","61.000000","61.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058228.000000","0.000000","2092704.000000","129468.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741522.000000",,,,, +"210.000000","9.485000","210.000000","9.485000","210.000000","9.485000","523.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056560.000000","0.000000","2092704.000000","129468.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741542.000000",,,,, +"227.000000","9.560000","227.000000","9.560000","227.000000","9.560000","498.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","2.000000","33.500000","33.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056100.000000","0.000000","2092704.000000","129468.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741562.000000",,,,, +"594.000000","11.285000","594.000000","11.285000","594.000000","11.285000","606.000000","0.000000",,,,,,,,,,,,"2.000000","159.500000","317.000000","2.000000","159.500000","159.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057572.000000","0.000000","2092704.000000","129468.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","13.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","12.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741582.000000",,,,, +"318.000000","9.990000","318.000000","9.990000","318.000000","9.990000","554.000000","0.000000",,,,,,,,,,,,"0.000000","77.000000","154.000000","1.000000","77.000000","77.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057164.000000","0.000000","2092704.000000","129468.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741602.000000",,,,, +"239.000000","9.615000","239.000000","9.615000","239.000000","9.615000","495.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","7.000000","40.500000","40.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056424.000000","0.000000","2092704.000000","129468.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741622.000000",,,,, +"276.000000","9.790000","276.000000","9.790000","276.000000","9.790000","484.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","0.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056620.000000","0.000000","2092704.000000","129468.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","10.000000","12.000000","27.000000","18.000000","18.000000","0.000000","0.000000","0.000000","13.000000","10.000000","12.000000","26.000000","18.000000","18.000000","160.000000","6000.000000","0.000000","741642.000000",,,,, +"227.000000","8.560000","227.000000","8.560000","227.000000","8.560000","622.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","2.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056112.000000","0.000000","2092704.000000","129468.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","27.000000","13.000000","18.000000","0.000000","0.000000","0.000000","13.000000","9.000000","11.000000","26.000000","13.000000","18.000000","160.000000","6000.000000","0.000000","741662.000000",,,,, +"233.000000","8.590000","233.000000","8.590000","233.000000","8.590000","458.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","14.000000","27.500000","27.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2055144.000000","0.000000","2092704.000000","129468.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741682.000000",,,,, +"268.000000","8.750000","268.000000","8.750000","268.000000","8.750000","518.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","31.000000","61.000000","61.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2053592.000000","0.000000","2092704.000000","129468.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741702.000000",,,,, +"222.000000","8.540000","222.000000","8.540000","222.000000","8.540000","758.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","2.000000","27.500000","27.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2053108.000000","0.000000","2092704.000000","129468.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","23.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741722.000000",,,,, +"213.000000","8.495000","213.000000","8.495000","213.000000","8.495000","1046.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","3.000000","15.000000","15.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2052256.000000","0.000000","2092704.000000","129468.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741742.000000",,,,, +"271.000000","8.770000","271.000000","8.770000","271.000000","8.770000","1246.000000","0.000000",,,,,,,,,,,,"9.000000","73.500000","137.000000","22.000000","73.500000","73.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2051816.000000","0.000000","2092704.000000","129468.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741762.000000",,,,, +"414.000000","8.440000","414.000000","8.440000","414.000000","8.440000","1385.000000","0.000000",,,,,,,,,,,,"0.000000","83.000000","165.000000","3.000000","83.000000","83.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050752.000000","0.000000","2092704.000000","129468.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741782.000000",,,,, +"481.000000","8.755000","481.000000","8.755000","481.000000","8.755000","1153.000000","0.000000",,,,,,,,,,,,"5.000000","178.500000","352.000000","2.000000","178.500000","178.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051660.000000","0.000000","2092704.000000","129468.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741802.000000",,,,, +"261.000000","7.720000","261.000000","7.720000","261.000000","7.720000","748.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","51.000000","39.500000","39.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051240.000000","0.000000","2092704.000000","129468.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741822.000000",,,,, +"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","602.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2050668.000000","0.000000","2092704.000000","129468.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741842.000000",,,,, +"244.000000","7.640000","244.000000","7.640000","244.000000","7.640000","513.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","70.000000","4.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048652.000000","0.000000","2092704.000000","129468.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","24.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741862.000000",,,,, +"288.000000","7.850000","288.000000","7.850000","288.000000","7.850000","497.000000","0.000000",,,,,,,,,,,,"1.000000","70.000000","138.000000","6.000000","70.000000","70.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048272.000000","0.000000","2092704.000000","129468.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741882.000000",,,,, +"214.000000","7.000000","214.000000","7.000000","214.000000","7.000000","683.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","1.000000","21.500000","21.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2047596.000000","0.000000","2092704.000000","129468.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741902.000000",,,,, +"225.000000","7.050000","225.000000","7.050000","225.000000","7.050000","484.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","1.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2045296.000000","0.000000","2092704.000000","129468.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741922.000000",,,,, +"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","814.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2044360.000000","0.000000","2092704.000000","129468.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741942.000000",,,,, +"223.000000","6.040000","223.000000","6.040000","223.000000","6.040000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","1.000000","12.000000","12.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2043788.000000","0.000000","2092704.000000","129468.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","17.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741962.000000",,,,, +"225.000000","6.050000","225.000000","6.050000","225.000000","6.050000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","1.000000","33.000000","33.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044092.000000","0.000000","2092704.000000","129468.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741982.000000",,,,, +"683.000000","8.205000","683.000000","8.205000","683.000000","8.205000","2058.000000","0.000000",,,,,,,,,,,,"6.000000","191.000000","375.000000","1.000000","191.000000","191.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044916.000000","0.000000","2092704.000000","129468.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","17.000000","47.000000","14.000000","160.000000","6000.000000","0.000000","742002.000000",,,,, +"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","1697.000000","0.000000",,,,,,,,,,,,"0.000000","139.500000","278.000000","2.000000","139.500000","139.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044504.000000","0.000000","2092704.000000","129468.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","12.000000","18.000000","48.000000","18.000000","0.000000","0.000000","0.000000","12.000000","17.000000","11.000000","18.000000","47.000000","17.000000","160.000000","6000.000000","0.000000","742022.000000",,,,, +"585.000000","7.745000","585.000000","7.745000","585.000000","7.745000","938.000000","0.000000",,,,,,,,,,,,"0.000000","142.000000","284.000000","3.000000","142.000000","142.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2042156.000000","0.000000","2092704.000000","129468.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","13.000000","18.000000","51.000000","24.000000","0.000000","0.000000","0.000000","11.000000","21.000000","12.000000","17.000000","47.000000","19.000000","160.000000","6000.000000","0.000000","742042.000000",,,,, +"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","967.000000","0.000000",,,,,,,,,,,,"0.000000","121.500000","242.000000","2.000000","121.500000","121.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2040940.000000","0.000000","2092704.000000","129468.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","13.000000","18.000000","51.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","13.000000","17.000000","43.000000","32.000000","160.000000","6000.000000","0.000000","742062.000000",,,,, +"609.000000","7.355000","609.000000","7.355000","609.000000","7.355000","1601.000000","0.000000",,,,,,,,,,,,"3.000000","158.500000","314.000000","2.000000","158.500000","158.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040444.000000","0.000000","2092704.000000","129468.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","21.000000","14.000000","18.000000","51.000000","34.000000","0.000000","0.000000","0.000000","12.000000","20.000000","13.000000","18.000000","44.000000","33.000000","160.000000","6000.000000","0.000000","742082.000000",,,,, +"290.000000","5.860000","290.000000","5.860000","290.000000","5.860000","1237.000000","0.000000",,,,,,,,,,,,"1.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040508.000000","0.000000","2092704.000000","129468.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","18.000000","45.000000","32.000000","0.000000","0.000000","0.000000","12.000000","17.000000","13.000000","18.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742102.000000",,,,, +"268.000000","5.755000","268.000000","5.755000","268.000000","5.755000","873.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2039968.000000","0.000000","2092704.000000","129468.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","13.000000","16.000000","45.000000","32.000000","0.000000","0.000000","0.000000","11.000000","14.000000","13.000000","16.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742122.000000",,,,, +"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","1069.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2037416.000000","0.000000","2092704.000000","129468.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","13.000000","16.000000","16.000000","32.000000","0.000000","0.000000","0.000000","11.000000","10.000000","13.000000","16.000000","16.000000","32.000000","160.000000","6000.000000","0.000000","742142.000000",,,,, +"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","944.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038888.000000","0.000000","2092704.000000","129468.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","14.000000","32.000000","160.000000","6000.000000","0.000000","742162.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","883.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","3.000000","55.000000","55.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038200.000000","0.000000","2092704.000000","129468.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742182.000000",,,,, +"212.000000","6.990000","212.000000","6.990000","212.000000","6.990000","644.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2037592.000000","0.000000","2092704.000000","129468.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742202.000000",,,,, +"228.000000","7.065000","228.000000","7.065000","228.000000","7.065000","584.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","1.000000","39.000000","39.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036008.000000","0.000000","2092704.000000","129468.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742222.000000",,,,, +"263.000000","7.230000","263.000000","7.230000","263.000000","7.230000","1013.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","1.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036300.000000","0.000000","2092704.000000","129468.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742242.000000",,,,, +"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035644.000000","0.000000","2092704.000000","129468.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","15.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742262.000000",,,,, +"224.000000","7.050000","224.000000","7.050000","224.000000","7.050000","1058.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","0.000000","46.000000","46.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035856.000000","0.000000","2092704.000000","129468.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","14.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742282.000000",,,,, +"249.000000","7.165000","249.000000","7.165000","249.000000","7.165000","1616.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","1.000000","64.500000","64.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035188.000000","0.000000","2092704.000000","129468.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","14.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","742302.000000",,,,, +"248.000000","7.160000","248.000000","7.160000","248.000000","7.160000","785.000000","0.000000",,,,,,,,,,,,"1.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035064.000000","0.000000","2092704.000000","129468.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742322.000000",,,,, +"220.000000","7.025000","220.000000","7.025000","220.000000","7.025000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","3.000000","28.500000","28.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034460.000000","0.000000","2092704.000000","129468.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742342.000000",,,,, +"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","2190.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","1.000000","53.000000","53.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034168.000000","0.000000","2092704.000000","129468.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","742362.000000",,,,, +"207.000000","8.465000","207.000000","8.465000","207.000000","8.465000","2339.000000","0.000000",,,,,,,,,,,,"0.000000","30.500000","61.000000","3.000000","30.500000","30.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2033568.000000","0.000000","2092704.000000","129468.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742382.000000",,,,, +"200.000000","8.435000","200.000000","8.435000","200.000000","8.435000","2176.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2035532.000000","0.000000","2092704.000000","129468.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742402.000000",,,,, +"268.000000","8.755000","268.000000","8.755000","268.000000","8.755000","1217.000000","0.000000",,,,,,,,,,,,"0.000000","46.500000","93.000000","6.000000","46.500000","46.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2032736.000000","0.000000","2092704.000000","129468.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742422.000000",,,,, +"234.000000","7.095000","234.000000","7.095000","234.000000","7.095000","699.000000","0.000000",,,,,,,,,,,,"0.000000","36.000000","72.000000","1.000000","36.000000","36.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2032156.000000","0.000000","2092704.000000","129468.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742442.000000",,,,, +"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","916.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","1.000000","13.500000","13.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2033892.000000","0.000000","2092704.000000","129468.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742462.000000",,,,, +"270.000000","7.265000","270.000000","7.265000","270.000000","7.265000","582.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2031628.000000","0.000000","2092704.000000","129468.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742482.000000",,,,, +"278.000000","6.300000","278.000000","6.300000","278.000000","6.300000","668.000000","0.000000",,,,,,,,,,,,"0.000000","100.500000","201.000000","1.000000","100.500000","100.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2031172.000000","0.000000","2092704.000000","129468.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742502.000000",,,,, +"682.000000","9.700000","682.000000","9.700000","682.000000","9.700000","936.000000","0.000000",,,,,,,,,,,,"7.000000","204.500000","401.000000","1.000000","204.500000","204.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2032424.000000","0.000000","2092704.000000","129468.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","14.000000","57.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742522.000000",,,,, +"275.000000","8.290000","275.000000","8.290000","275.000000","8.290000","746.000000","0.000000",,,,,,,,,,,,"0.000000","81.500000","163.000000","2.000000","81.500000","81.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2031088.000000","0.000000","2092704.000000","129468.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742542.000000",,,,, +"208.000000","7.970000","208.000000","7.970000","208.000000","7.970000","751.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","5.000000","17.500000","17.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030528.000000","0.000000","2092704.000000","129468.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742562.000000",,,,, +"228.000000","8.065000","228.000000","8.065000","228.000000","8.065000","733.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028792.000000","0.000000","2092704.000000","129468.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","18.000000","14.000000","160.000000","6000.000000","0.000000","742582.000000",,,,, +"258.000000","8.205000","258.000000","8.205000","258.000000","8.205000","1172.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030492.000000","0.000000","2092704.000000","129468.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742602.000000",,,,, +"215.000000","7.505000","215.000000","7.505000","215.000000","7.505000","1008.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","1.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030260.000000","0.000000","2092704.000000","129468.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742622.000000",,,,, +"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","826.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","7.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030992.000000","0.000000","2092704.000000","129468.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742642.000000",,,,, +"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","900.000000","0.000000",,,,,,,,,,,,"0.000000","56.000000","112.000000","1.000000","56.000000","56.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742662.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","3.000000","20.500000","20.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2027308.000000","0.000000","2092704.000000","129468.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742682.000000",,,,, +"228.000000","7.070000","228.000000","7.070000","228.000000","7.070000","528.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","1.000000","29.000000","29.000000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2028028.000000","0.000000","2092704.000000","129468.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742702.000000",,,,, +"344.000000","7.610000","344.000000","7.610000","344.000000","7.610000","863.000000","0.000000",,,,,,,,,,,,"0.000000","147.500000","295.000000","1.000000","147.500000","147.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2029432.000000","0.000000","2092704.000000","129468.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","18.000000","15.000000","160.000000","6000.000000","0.000000","742722.000000",,,,, +"866.000000","16.065000","866.000000","16.065000","866.000000","16.065000","1393.000000","0.000000",,,,,,,,,,,,"13526.000000","13915.500000","14303.000000","18.000000","13915.500000","13915.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047976.000000","0.000000","2092704.000000","129468.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","11.000000","18.000000","12.000000","16.000000","53.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","52.000000","18.000000","160.000000","6000.000000","0.000000","742742.000000",,,,, +"827.000000","15.880000","827.000000","15.880000","827.000000","15.880000","1622.000000","0.000000",,,,,,,,,,,,"1407.000000","1192.000000","722.000000","8.000000","1192.000000","1192.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047880.000000","0.000000","2092704.000000","129468.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"7.000000","246.000000",,,,,,,,,,,"0.000000","12.000000","28.000000","14.000000","18.000000","53.000000","31.000000","0.000000","0.000000","0.000000","11.000000","24.000000","13.000000","18.000000","52.000000","29.000000","160.000000","6000.000000","0.000000","742762.000000",,,,, +"704.000000","15.300000","704.000000","15.300000","704.000000","15.300000","1779.000000","0.000000",,,,,,,,,,,,"817.000000","2030.500000","573.000000","3.000000","2030.500000","2030.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2050152.000000","0.000000","2092704.000000","129468.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","0.000000","0.000000",,,,,,"2632.000000","38.000000",,,,,,,,,,,"0.000000","13.000000","35.000000","16.000000","24.000000","55.000000","44.000000","0.000000","0.000000","0.000000","12.000000","30.000000","14.000000","20.000000","52.000000","35.000000","160.000000","6000.000000","0.000000","742782.000000",,,,, +"1369.000000","30.430000","1369.000000","30.430000","1369.000000","30.430000","2678.000000","0.000000",,,,,,,,,,,,"0.000000","21091.500000","21618.000000","65.000000","21091.500000","21091.500000",,,,,,,,,,,"713028.000000","1006632.000000","0.000000","0.000000","2057144.000000","0.000000","2092704.000000","129468.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"20487.000000","78.000000",,,,,,,,,,,"0.000000","14.000000","44.000000","19.000000","30.000000","72.000000","53.000000","0.000000","0.000000","0.000000","13.000000","35.000000","17.000000","24.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742802.000000",,,,, +"1160.000000","29.445000","1160.000000","29.445000","1160.000000","29.445000","4176.000000","0.000000",,,,,,,,,,,,"0.000000","19993.000000","30537.000000","43.000000","19993.000000","19993.000000",,,,,,,,,,,"817888.000000","1006632.000000","0.000000","0.000000","2071676.000000","0.000000","2092704.000000","129468.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","0.000000","0.000000",,,,,,"9414.000000","34.000000",,,,,,,,,,,"0.000000","15.000000","49.000000","21.000000","34.000000","72.000000","55.000000","0.000000","0.000000","0.000000","13.000000","39.000000","18.000000","33.000000","54.000000","48.000000","160.000000","6000.000000","0.000000","742822.000000",,,,, +"1118.000000","32.245000","1118.000000","32.245000","1118.000000","32.245000","2371.000000","0.000000",,,,,,,,,,,,"17.000000","19813.500000","26206.000000","39.000000","19813.500000","19813.500000",,,,,,,,,,,"1090516.000000","1132460.000000","0.000000","0.000000","2071432.000000","0.000000","2092704.000000","129468.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"13348.000000","54.000000",,,,,,,,,,,"0.000000","16.000000","58.000000","24.000000","45.000000","72.000000","59.000000","0.000000","0.000000","0.000000","14.000000","45.000000","20.000000","38.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742842.000000",,,,, +"1385.000000","43.500000","1385.000000","43.500000","1385.000000","43.500000","2499.000000","0.000000",,,,,,,,,,,,"5046.000000","14525.000000","20558.000000","16.000000","14525.000000","14525.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","0.000000","0.000000",,,,,,"3430.000000","16.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","27.000000","47.000000","90.000000","68.000000","0.000000","0.000000","0.000000","15.000000","45.000000","23.000000","40.000000","76.000000","49.000000","160.000000","6000.000000","0.000000","742862.000000",,,,, +"2107.000000","46.895000","2107.000000","46.895000","2107.000000","46.895000","1998.000000","0.000000",,,,,,,,,,,,"627.000000","1466.500000","2305.000000","13.000000","1466.500000","1466.500000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","63.000000","31.000000","51.000000","105.000000","71.000000","0.000000","0.000000","0.000000","16.000000","52.000000","26.000000","43.000000","91.000000","54.000000","160.000000","6000.000000","0.000000","742882.000000",,,,, +"1880.000000","45.830000","1880.000000","45.830000","1880.000000","45.830000","3078.000000","0.000000",,,,,,,,,,,,"118.000000","172.000000","226.000000","4.000000","172.000000","172.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072508.000000","0.000000","2092704.000000","129468.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","78.000000","38.000000","55.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","67.000000","32.000000","48.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742902.000000",,,,, +"1607.000000","50.045000","1607.000000","50.045000","1607.000000","50.045000","2461.000000","0.000000",,,,,,,,,,,,"123.000000","492.500000","857.000000","3.000000","492.500000","492.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072304.000000","0.000000","2092704.000000","129468.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","21.000000","81.000000","41.000000","62.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","69.000000","35.000000","50.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742922.000000",,,,, +"1827.000000","51.080000","1827.000000","51.080000","1827.000000","51.080000","2217.000000","0.000000",,,,,,,,,,,,"0.000000","110.500000","221.000000","4.000000","110.500000","110.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072076.000000","0.000000","2092704.000000","129468.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","87.000000","47.000000","68.000000","107.000000","96.000000","0.000000","0.000000","0.000000","19.000000","70.000000","39.000000","54.000000","99.000000","76.000000","160.000000","6000.000000","0.000000","742942.000000",,,,, +"2392.000000","53.735000","2392.000000","53.735000","2392.000000","53.735000","2052.000000","0.000000",,,,,,,,,,,,"100.000000","422.000000","739.000000","5.000000","422.000000","422.000000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2071840.000000","0.000000","2092704.000000","129468.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","85.000000","52.000000","72.000000","106.000000","96.000000","0.000000","0.000000","0.000000","21.000000","68.000000","43.000000","59.000000","80.000000","78.000000","160.000000","6000.000000","0.000000","742962.000000",,,,, +"3168.000000","58.380000","3168.000000","58.380000","3168.000000","58.380000","2186.000000","0.000000",,,,,,,,,,,,"86.000000","753.500000","1417.000000","4.000000","753.500000","753.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","120.000000","64.000000","82.000000","166.000000","107.000000","0.000000","0.000000","0.000000","23.000000","91.000000","51.000000","64.000000","125.000000","99.000000","160.000000","6000.000000","0.000000","742982.000000",,,,, +"3690.000000","60.835000","3690.000000","60.835000","3690.000000","60.835000","2161.000000","0.000000",,,,,,,,,,,,"0.000000","506.000000","1011.000000","18.000000","506.000000","506.000000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071160.000000","0.000000","2092704.000000","129468.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","31.000000","142.000000","74.000000","90.000000","181.000000","163.000000","0.000000","0.000000","0.000000","26.000000","109.000000","59.000000","76.000000","167.000000","115.000000","160.000000","6000.000000","0.000000","743002.000000",,,,, +"3225.000000","58.650000","3225.000000","58.650000","3225.000000","58.650000","2356.000000","0.000000",,,,,,,,,,,,"3.000000","412.500000","821.000000","16.000000","412.500000","412.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","169.000000","86.000000","105.000000","184.000000","169.000000","0.000000","0.000000","0.000000","29.000000","126.000000","68.000000","79.000000","167.000000","120.000000","160.000000","6000.000000","0.000000","743022.000000",,,,, +"3561.000000","54.730000","3561.000000","54.730000","3561.000000","54.730000","2718.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","965.000000","28.000000","483.000000","483.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070704.000000","0.000000","2092704.000000","129468.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","38.000000","171.000000","94.000000","107.000000","194.000000","173.000000","0.000000","0.000000","0.000000","31.000000","131.000000","74.000000","99.000000","167.000000","125.000000","160.000000","6000.000000","0.000000","743042.000000",,,,, +"4761.000000","60.365000","4761.000000","60.365000","4761.000000","60.365000","2452.000000","0.000000",,,,,,,,,,,,"214.000000","1401.000000","2587.000000","21.000000","1401.000000","1401.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070636.000000","0.000000","2092704.000000","129468.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","176.000000","103.000000","153.000000","207.000000","181.000000","0.000000","0.000000","0.000000","35.000000","145.000000","83.000000","113.000000","204.000000","152.000000","160.000000","6000.000000","0.000000","743062.000000",,,,, +"4219.000000","57.820000","4219.000000","57.820000","4219.000000","57.820000","2166.000000","0.000000",,,,,,,,,,,,"2.000000","467.500000","932.000000","17.000000","467.500000","467.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","45.000000","180.000000","113.000000","163.000000","207.000000","184.000000","0.000000","0.000000","0.000000","38.000000","153.000000","91.000000","117.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","743082.000000",,,,, +"4549.000000","59.370000","4549.000000","59.370000","4549.000000","59.370000","1426.000000","0.000000",,,,,,,,,,,,"18.000000","1601.000000","3183.000000","58.000000","1601.000000","1601.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","187.000000","123.000000","168.000000","213.000000","194.000000","0.000000","0.000000","0.000000","42.000000","169.000000","101.000000","125.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743102.000000",,,,, +"3758.000000","55.655000","3758.000000","55.655000","3758.000000","55.655000","1738.000000","0.000000",,,,,,,,,,,,"0.000000","496.500000","992.000000","33.000000","496.500000","496.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071968.000000","0.000000","2092704.000000","129468.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","182.000000","130.000000","173.000000","213.000000","194.000000","0.000000","0.000000","0.000000","45.000000","158.000000","107.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743122.000000",,,,, +"3842.000000","56.050000","3842.000000","56.050000","3842.000000","56.050000","1464.000000","0.000000",,,,,,,,,,,,"1.000000","895.500000","1788.000000","53.000000","895.500000","895.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","178.000000","137.000000","174.000000","213.000000","194.000000","0.000000","0.000000","0.000000","47.000000","151.000000","112.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743142.000000",,,,, +"3334.000000","46.665000","3334.000000","46.665000","3334.000000","46.665000","1707.000000","0.000000",,,,,,,,,,,,"122.000000","526.000000","929.000000","17.000000","526.000000","526.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071960.000000","0.000000","2092704.000000","129468.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","174.000000","147.000000","179.000000","194.000000","194.000000","0.000000","0.000000","0.000000","51.000000","137.000000","119.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743162.000000",,,,, +"3524.000000","47.555000","3524.000000","47.555000","3524.000000","47.555000","2030.000000","0.000000",,,,,,,,,,,,"0.000000","422.500000","845.000000","24.000000","422.500000","422.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","169.000000","151.000000","180.000000","194.000000","194.000000","0.000000","0.000000","0.000000","53.000000","132.000000","123.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743182.000000",,,,, +"4222.000000","50.835000","4222.000000","50.835000","4222.000000","50.835000","2990.000000","0.000000",,,,,,,,,,,,"0.000000","517.000000","1032.000000","20.000000","517.000000","517.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2072036.000000","0.000000","2092704.000000","129468.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","176.000000","157.000000","180.000000","208.000000","200.000000","0.000000","0.000000","0.000000","56.000000","141.000000","128.000000","150.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743202.000000",,,,, +"3176.000000","45.920000","3176.000000","45.920000","3176.000000","45.920000","2618.000000","0.000000",,,,,,,,,,,,"0.000000","379.500000","759.000000","12.000000","379.500000","379.500000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071952.000000","0.000000","2092704.000000","129468.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","72.000000","175.000000","165.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","59.000000","137.000000","133.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743222.000000",,,,, +"2639.000000","43.395000","2639.000000","43.395000","2639.000000","43.395000","3957.000000","0.000000",,,,,,,,,,,,"0.000000","384.000000","768.000000","26.000000","384.000000","384.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071768.000000","0.000000","2092704.000000","129468.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","75.000000","171.000000","168.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","61.000000","129.000000","135.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743242.000000",,,,, +"3197.000000","46.020000","3197.000000","46.020000","3197.000000","46.020000","4861.000000","0.000000",,,,,,,,,,,,"0.000000","444.000000","888.000000","17.000000","444.000000","444.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","78.000000","165.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","63.000000","113.000000","137.000000","150.000000","140.000000","170.000000","160.000000","6000.000000","0.000000","743262.000000",,,,, +"2422.000000","42.380000","2422.000000","42.380000","2422.000000","42.380000","8036.000000","0.000000",,,,,,,,,,,,"0.000000","320.000000","640.000000","15.000000","320.000000","320.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","82.000000","157.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","65.000000","103.000000","135.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743282.000000",,,,, +"2919.000000","44.210000","2919.000000","44.210000","2919.000000","44.210000","11295.000000","0.000000",,,,,,,,,,,,"0.000000","311.000000","622.000000","17.000000","311.000000","311.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071516.000000","0.000000","2092704.000000","129468.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","68.000000","106.000000","134.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743302.000000",,,,, +"2960.000000","44.405000","2960.000000","44.405000","2960.000000","44.405000","10479.000000","0.000000",,,,,,,,,,,,"1.000000","260.000000","519.000000","22.000000","260.000000","260.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","69.000000","107.000000","133.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743322.000000",,,,, +"2669.000000","43.040000","2669.000000","43.040000","2669.000000","43.040000","5276.000000","0.000000",,,,,,,,,,,,"0.000000","202.000000","403.000000","5.000000","202.000000","202.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","169.000000","172.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","72.000000","105.000000","130.000000","150.000000","137.000000","170.000000","160.000000","6000.000000","0.000000","743342.000000",,,,, +"2449.000000","40.005000","2449.000000","40.005000","2449.000000","40.005000","11881.000000","0.000000",,,,,,,,,,,,"1.000000","623.000000","1245.000000","39.000000","623.000000","623.000000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","171.000000","172.000000","184.000000","199.000000","194.000000","0.000000","0.000000","0.000000","74.000000","100.000000","125.000000","150.000000","121.000000","167.000000","160.000000","6000.000000","0.000000","743362.000000",,,,, +"3373.000000","44.350000","3373.000000","44.350000","3373.000000","44.350000","8398.000000","0.000000",,,,,,,,,,,,"0.000000","392.500000","785.000000","25.000000","392.500000","392.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071464.000000","0.000000","2092704.000000","129468.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","100.000000","174.000000","172.000000","186.000000","199.000000","194.000000","0.000000","0.000000","0.000000","76.000000","105.000000","123.000000","151.000000","156.000000","167.000000","160.000000","6000.000000","0.000000","743382.000000",,,,, +"3609.000000","45.455000","3609.000000","45.455000","3609.000000","45.455000","8569.000000","0.000000",,,,,,,,,,,,"0.000000","176.500000","352.000000","12.000000","176.500000","176.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071688.000000","0.000000","2092704.000000","129468.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","184.000000","172.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","79.000000","119.000000","120.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743402.000000",,,,, +"2393.000000","40.240000","2393.000000","40.240000","2393.000000","40.240000","12932.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","916.000000","50.000000","458.000000","458.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","173.000000","170.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","81.000000","118.000000","117.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743422.000000",,,,, +"3004.000000","43.115000","3004.000000","43.115000","3004.000000","43.115000","11131.000000","0.000000",,,,,,,,,,,,"0.000000","283.000000","565.000000","8.000000","283.000000","283.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071780.000000","0.000000","2092704.000000","129468.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","110.000000","165.000000","170.000000","186.000000","201.000000","190.000000","0.000000","0.000000","0.000000","83.000000","115.000000","116.000000","152.000000","152.000000","152.000000","160.000000","6000.000000","0.000000","743442.000000",,,,, +"3259.000000","44.310000","3259.000000","44.310000","3259.000000","44.310000","8248.000000","0.000000",,,,,,,,,,,,"0.000000","398.000000","796.000000","23.000000","398.000000","398.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071748.000000","0.000000","2092704.000000","129468.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","166.000000","170.000000","189.000000","200.000000","192.000000","0.000000","0.000000","0.000000","86.000000","109.000000","115.000000","152.000000","137.000000","147.000000","160.000000","6000.000000","0.000000","743462.000000",,,,, +"3703.000000","47.895000","3703.000000","47.895000","3703.000000","47.895000","6019.000000","0.000000",,,,,,,,,,,,"0.000000","401.000000","802.000000","20.000000","401.000000","401.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","118.000000","176.000000","172.000000","190.000000","200.000000","193.000000","0.000000","0.000000","0.000000","88.000000","121.000000","115.000000","152.000000","172.000000","152.000000","160.000000","6000.000000","0.000000","743482.000000",,,,, +"2590.000000","42.665000","2590.000000","42.665000","2590.000000","42.665000","8615.000000","0.000000",,,,,,,,,,,,"0.000000","288.000000","575.000000","11.000000","288.000000","288.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","175.000000","169.000000","190.000000","200.000000","192.000000","0.000000","0.000000","0.000000","90.000000","116.000000","111.000000","152.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743502.000000",,,,, +"3504.000000","46.960000","3504.000000","46.960000","3504.000000","46.960000","2617.000000","0.000000",,,,,,,,,,,,"1.000000","415.000000","826.000000","26.000000","415.000000","415.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","125.000000","170.000000","169.000000","190.000000","193.000000","192.000000","0.000000","0.000000","0.000000","93.000000","120.000000","111.000000","153.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743522.000000",,,,, +"2636.000000","41.380000","2636.000000","41.380000","2636.000000","41.380000","5320.000000","0.000000",,,,,,,,,,,,"0.000000","452.500000","905.000000","19.000000","452.500000","452.500000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","163.000000","170.000000","190.000000","186.000000","189.000000","0.000000","0.000000","0.000000","95.000000","112.000000","112.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743542.000000",,,,, +"2957.000000","42.890000","2957.000000","42.890000","2957.000000","42.890000","5685.000000","0.000000",,,,,,,,,,,,"0.000000","387.000000","774.000000","92.000000","387.000000","387.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","132.000000","168.000000","170.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","97.000000","113.000000","111.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743562.000000",,,,, +"3797.000000","46.840000","3797.000000","46.840000","3797.000000","46.840000","3520.000000","0.000000",,,,,,,,,,,,"1.000000","515.000000","1029.000000","20.000000","515.000000","515.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071064.000000","0.000000","2092704.000000","129468.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","172.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","100.000000","117.000000","114.000000","154.000000","158.000000","153.000000","160.000000","6000.000000","0.000000","743582.000000",,,,, +"3881.000000","47.235000","3881.000000","47.235000","3881.000000","47.235000","2934.000000","0.000000",,,,,,,,,,,,"0.000000","466.000000","932.000000","17.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071136.000000","0.000000","2092704.000000","129468.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","178.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","103.000000","127.000000","116.000000","156.000000","158.000000","154.000000","160.000000","6000.000000","0.000000","743602.000000",,,,, +"4735.000000","51.245000","4735.000000","51.245000","4735.000000","51.245000","1357.000000","0.000000",,,,,,,,,,,,"0.000000","471.000000","941.000000","19.000000","471.000000","471.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070972.000000","0.000000","2092704.000000","129468.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","143.000000","186.000000","174.000000","194.000000","202.000000","198.000000","0.000000","0.000000","0.000000","106.000000","148.000000","119.000000","158.000000","178.000000","158.000000","160.000000","6000.000000","0.000000","743622.000000",,,,, +"4628.000000","50.740000","4628.000000","50.740000","4628.000000","50.740000","1563.000000","0.000000",,,,,,,,,,,,"0.000000","594.000000","1187.000000","37.000000","594.000000","594.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070884.000000","0.000000","2092704.000000","129468.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","192.000000","177.000000","195.000000","210.000000","199.000000","0.000000","0.000000","0.000000","110.000000","164.000000","126.000000","162.000000","205.000000","172.000000","160.000000","6000.000000","0.000000","743642.000000",,,,, +"4789.000000","51.500000","4789.000000","51.500000","4789.000000","51.500000","1711.000000","0.000000",,,,,,,,,,,,"0.000000","442.500000","885.000000","37.000000","442.500000","442.500000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070896.000000","0.000000","2092704.000000","129468.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","151.000000","197.000000","177.000000","198.000000","210.000000","201.000000","0.000000","0.000000","0.000000","113.000000","177.000000","131.000000","167.000000","205.000000","178.000000","160.000000","6000.000000","0.000000","743662.000000",,,,, +"4795.000000","51.030000","4795.000000","51.030000","4795.000000","51.030000","1946.000000","0.000000",,,,,,,,,,,,"0.000000","555.500000","1109.000000","46.000000","555.500000","555.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","199.000000","179.000000","199.000000","210.000000","202.000000","0.000000","0.000000","0.000000","116.000000","183.000000","135.000000","172.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","743682.000000",,,,, +"3338.000000","44.180000","3338.000000","44.180000","3338.000000","44.180000","959.000000","0.000000",,,,,,,,,,,,"1.000000","364.000000","726.000000","22.000000","364.000000","364.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070596.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","192.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","119.000000","164.000000","135.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743702.000000",,,,, +"3159.000000","43.340000","3159.000000","43.340000","3159.000000","43.340000","866.000000","0.000000",,,,,,,,,,,,"0.000000","559.000000","1118.000000","19.000000","559.000000","559.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070460.000000","0.000000","2092704.000000","129468.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","177.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","120.000000","145.000000","136.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743722.000000",,,,, +"3239.000000","43.220000","3239.000000","43.220000","3239.000000","43.220000","1889.000000","0.000000",,,,,,,,,,,,"0.000000","285.500000","570.000000","20.000000","285.500000","285.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070392.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","164.000000","179.000000","199.000000","190.000000","202.000000","0.000000","0.000000","0.000000","121.000000","121.000000","136.000000","172.000000","147.000000","184.000000","160.000000","6000.000000","0.000000","743742.000000",,,,, +"3103.000000","42.575000","3103.000000","42.575000","3103.000000","42.575000","1391.000000","0.000000",,,,,,,,,,,,"1.000000","380.000000","758.000000","12.000000","380.000000","380.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070324.000000","0.000000","2092704.000000","129468.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","158.000000","177.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","124.000000","119.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743762.000000",,,,, +"3145.000000","42.775000","3145.000000","42.775000","3145.000000","42.775000","1284.000000","0.000000",,,,,,,,,,,,"15.000000","5220.000000","10424.000000","46.000000","5220.000000","5220.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","163.000000","176.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","125.000000","118.000000","136.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743782.000000",,,,, +"3305.000000","43.525000","3305.000000","43.525000","3305.000000","43.525000","1718.000000","0.000000",,,,,,,,,,,,"3.000000","376.500000","750.000000","19.000000","376.500000","376.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2070124.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","168.000000","177.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","125.000000","122.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743802.000000",,,,, +"3116.000000","42.635000","3116.000000","42.635000","3116.000000","42.635000","1617.000000","0.000000",,,,,,,,,,,,"16.000000","10448.500000","20881.000000","46.000000","10448.500000","10448.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","166.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","127.000000","120.000000","137.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743822.000000",,,,, +"3783.000000","45.775000","3783.000000","45.775000","3783.000000","45.775000","2242.000000","0.000000",,,,,,,,,,,,"38.000000","2202.500000","4365.000000","46.000000","2202.500000","2202.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2072004.000000","0.000000","2092704.000000","129468.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","167.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","128.000000","124.000000","138.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743842.000000",,,,, +"3152.000000","47.305000","3152.000000","47.305000","3152.000000","47.305000","2052.000000","0.000000",,,,,,,,,,,,"44.000000","951.500000","1858.000000","42.000000","951.500000","951.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","161.000000","176.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","127.000000","140.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743862.000000",,,,, +"3057.000000","46.865000","3057.000000","46.865000","3057.000000","46.865000","1879.000000","0.000000",,,,,,,,,,,,"3.000000","580.500000","1157.000000","28.000000","580.500000","580.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072204.000000","0.000000","2092704.000000","129468.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","124.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743882.000000",,,,, +"3577.000000","49.305000","3577.000000","49.305000","3577.000000","49.305000","1444.000000","0.000000",,,,,,,,,,,,"0.000000","479.000000","958.000000","19.000000","479.000000","479.000000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","126.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743902.000000",,,,, +"3555.000000","52.205000","3555.000000","52.205000","3555.000000","52.205000","1706.000000","0.000000",,,,,,,,,,,,"1.000000","677.500000","1353.000000","29.000000","677.500000","677.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072100.000000","0.000000","2092704.000000","129468.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","163.000000","171.000000","199.000000","181.000000","200.000000","0.000000","0.000000","0.000000","129.000000","124.000000","135.000000","172.000000","141.000000","184.000000","160.000000","6000.000000","0.000000","743922.000000",,,,, +"3403.000000","51.485000","3403.000000","51.485000","3403.000000","51.485000","1428.000000","0.000000",,,,,,,,,,,,"92.000000","2309.500000","4525.000000","39.000000","2309.500000","2309.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072028.000000","0.000000","2092704.000000","129468.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","175.000000","170.000000","200.000000","202.000000","200.000000","0.000000","0.000000","0.000000","129.000000","132.000000","132.000000","172.000000","147.000000","177.000000","160.000000","6000.000000","0.000000","743942.000000",,,,, +"3741.000000","53.075000","3741.000000","53.075000","3741.000000","53.075000","1499.000000","0.000000",,,,,,,,,,,,"2268.000000","1792.500000","1316.000000","17.000000","1792.500000","1792.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2071728.000000","0.000000","2092704.000000","129468.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","173.000000","173.000000","168.000000","198.000000","202.000000","196.000000","0.000000","0.000000","0.000000","128.000000","133.000000","129.000000","169.000000","162.000000","152.000000","160.000000","6000.000000","0.000000","743962.000000",,,,, +"4139.000000","54.950000","4139.000000","54.950000","4139.000000","54.950000","2321.000000","0.000000",,,,,,,,,,,,"3816.000000","4616.000000","5415.000000","13.000000","4616.000000","4616.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072108.000000","0.000000","2092704.000000","129468.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","202.000000","187.000000","0.000000","0.000000","0.000000","128.000000","141.000000","127.000000","170.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","743982.000000",,,,, +"3588.000000","52.355000","3588.000000","52.355000","3588.000000","52.355000","1315.000000","0.000000",,,,,,,,,,,,"101.000000","2767.000000","5432.000000","20.000000","2767.000000","2767.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072320.000000","0.000000","2092704.000000","129468.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","196.000000","188.000000","0.000000","0.000000","0.000000","127.000000","142.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744002.000000",,,,, +"3026.000000","49.715000","3026.000000","49.715000","3026.000000","49.715000","1891.000000","0.000000",,,,,,,,,,,,"16.000000","390.000000","764.000000","31.000000","390.000000","390.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072416.000000","0.000000","2092704.000000","129468.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","175.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","135.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744022.000000",,,,, +"3614.000000","53.975000","3614.000000","53.975000","3614.000000","53.975000","1116.000000","0.000000",,,,,,,,,,,,"2.000000","408.000000","814.000000","53.000000","408.000000","408.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","172.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","128.000000","167.000000","149.000000","150.000000","160.000000","6000.000000","0.000000","744042.000000",,,,, +"3623.000000","54.020000","3623.000000","54.020000","3623.000000","54.020000","1252.000000","0.000000",,,,,,,,,,,,"2.000000","373.000000","744.000000","18.000000","373.000000","373.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072352.000000","0.000000","2092704.000000","129468.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","171.000000","169.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","129.000000","162.000000","151.000000","151.000000","160.000000","6000.000000","0.000000","744062.000000",,,,, +"3791.000000","54.810000","3791.000000","54.810000","3791.000000","54.810000","1636.000000","0.000000",,,,,,,,,,,,"6.000000","461.500000","917.000000","23.000000","461.500000","461.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072604.000000","0.000000","2092704.000000","129468.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","166.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744082.000000",,,,, +"3988.000000","58.235000","3988.000000","58.235000","3988.000000","58.235000","1852.000000","0.000000",,,,,,,,,,,,"2.000000","317.500000","632.000000","37.000000","317.500000","317.500000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","178.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","162.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744102.000000",,,,, +"3827.000000","57.480000","3827.000000","57.480000","3827.000000","57.480000","1512.000000","0.000000",,,,,,,,,,,,"21.000000","431.000000","840.000000","22.000000","431.000000","431.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","183.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","127.000000","147.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744122.000000",,,,, +"3622.000000","56.515000","3622.000000","56.515000","3622.000000","56.515000","2034.000000","0.000000",,,,,,,,,,,,"4.000000","1117.000000","2229.000000","51.000000","1117.000000","1117.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","183.000000","173.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","143.000000","135.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744142.000000",,,,, +"3255.000000","55.795000","3255.000000","55.795000","3255.000000","55.795000","1931.000000","0.000000",,,,,,,,,,,,"1243.000000","1317.000000","1391.000000","47.000000","1317.000000","1317.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072752.000000","0.000000","2092704.000000","129468.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","184.000000","174.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","129.000000","142.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744162.000000",,,,, +"2560.000000","52.525000","2560.000000","52.525000","2560.000000","52.525000","1557.000000","0.000000",,,,,,,,,,,,"9365.000000","5795.000000","2225.000000","13.000000","5795.000000","5795.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072916.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","159.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","118.000000","133.000000","166.000000","160.000000","162.000000","160.000000","6000.000000","0.000000","744182.000000",,,,, +"3235.000000","55.695000","3235.000000","55.695000","3235.000000","55.695000","1845.000000","0.000000",,,,,,,,,,,,"3843.000000","7886.500000","11930.000000","21.000000","7886.500000","7886.500000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","145.000000","170.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","109.000000","132.000000","166.000000","128.000000","162.000000","160.000000","6000.000000","0.000000","744202.000000",,,,, +"3267.000000","55.850000","3267.000000","55.850000","3267.000000","55.850000","1706.000000","0.000000",,,,,,,,,,,,"2244.000000","3148.500000","4052.000000","20.000000","3148.500000","3148.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073196.000000","0.000000","2092704.000000","129468.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","140.000000","170.000000","198.000000","181.000000","196.000000","0.000000","0.000000","0.000000","129.000000","114.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744222.000000",,,,, +"3604.000000","57.430000","3604.000000","57.430000","3604.000000","57.430000","1729.000000","0.000000",,,,,,,,,,,,"57.000000","5524.000000","10990.000000","30.000000","5524.000000","5524.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073156.000000","0.000000","2092704.000000","129468.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","169.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","126.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744242.000000",,,,, +"2759.000000","53.460000","2759.000000","53.460000","2759.000000","53.460000","1574.000000","0.000000",,,,,,,,,,,,"480.000000","2911.500000","5339.000000","64.000000","2911.500000","2911.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073368.000000","0.000000","2092704.000000","129468.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","171.000000","156.000000","166.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","123.000000","130.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744262.000000",,,,, +"3597.000000","57.395000","3597.000000","57.395000","3597.000000","57.395000","1187.000000","0.000000",,,,,,,,,,,,"251.000000","3973.500000","7694.000000","55.000000","3973.500000","3973.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073188.000000","0.000000","2092704.000000","129468.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","170.000000","155.000000","166.000000","198.000000","190.000000","195.000000","0.000000","0.000000","0.000000","130.000000","122.000000","128.000000","166.000000","150.000000","160.000000","160.000000","6000.000000","0.000000","744282.000000",,,,, +"3072.000000","54.930000","3072.000000","54.930000","3072.000000","54.930000","1074.000000","0.000000",,,,,,,,,,,,"272.000000","8873.500000","17474.000000","33.000000","8873.500000","8873.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073312.000000","0.000000","2092704.000000","129468.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","169.000000","148.000000","164.000000","198.000000","174.000000","194.000000","0.000000","0.000000","0.000000","130.000000","118.000000","127.000000","166.000000","137.000000","160.000000","160.000000","6000.000000","0.000000","744302.000000",,,,, +"3450.000000","56.710000","3450.000000","56.710000","3450.000000","56.710000","1837.000000","0.000000",,,,,,,,,,,,"140.000000","7954.000000","15767.000000","36.000000","7954.000000","7954.000000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073116.000000","0.000000","2092704.000000","129468.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","162.000000","164.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","131.000000","126.000000","128.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744322.000000",,,,, +"2592.000000","52.680000","2592.000000","52.680000","2592.000000","52.680000","2072.000000","0.000000",,,,,,,,,,,,"8645.000000","11137.000000","13629.000000","46.000000","11137.000000","11137.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073080.000000","0.000000","2092704.000000","129468.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","153.000000","162.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","117.000000","126.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744342.000000",,,,, +"3015.000000","54.665000","3015.000000","54.665000","3015.000000","54.665000","1312.000000","0.000000",,,,,,,,,,,,"1516.000000","11797.000000","22076.000000","51.000000","11797.000000","11797.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","151.000000","160.000000","197.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","114.000000","125.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744362.000000",,,,, +"3096.000000","55.040000","3096.000000","55.040000","3096.000000","55.040000","1794.000000","0.000000",,,,,,,,,,,,"333.000000","7155.500000","13978.000000","33.000000","7155.500000","7155.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072792.000000","0.000000","2092704.000000","129468.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","141.000000","157.000000","197.000000","169.000000","188.000000","0.000000","0.000000","0.000000","130.000000","109.000000","122.000000","164.000000","133.000000","155.000000","160.000000","6000.000000","0.000000","744382.000000",,,,, +"3331.000000","56.150000","3331.000000","56.150000","3331.000000","56.150000","1820.000000","0.000000",,,,,,,,,,,,"1799.000000","3938.000000","6077.000000","18.000000","3938.000000","3938.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072512.000000","0.000000","2092704.000000","129468.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","150.000000","156.000000","197.000000","176.000000","188.000000","0.000000","0.000000","0.000000","130.000000","113.000000","121.000000","164.000000","133.000000","150.000000","160.000000","6000.000000","0.000000","744402.000000",,,,, +"2534.000000","52.400000","2534.000000","52.400000","2534.000000","52.400000","1408.000000","0.000000",,,,,,,,,,,,"7824.000000","10464.000000","13103.000000","84.000000","10464.000000","10464.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072464.000000","0.000000","2092704.000000","129468.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","139.000000","151.000000","197.000000","176.000000","183.000000","0.000000","0.000000","0.000000","130.000000","113.000000","118.000000","164.000000","144.000000","145.000000","160.000000","6000.000000","0.000000","744422.000000",,,,, +"1798.000000","48.945000","1798.000000","48.945000","1798.000000","48.945000","1310.000000","0.000000",,,,,,,,,,,,"10924.000000","8664.000000","6403.000000","64.000000","8664.000000","8664.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072468.000000","0.000000","2092704.000000","129468.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","122.000000","145.000000","197.000000","176.000000","181.000000","0.000000","0.000000","0.000000","129.000000","100.000000","114.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744442.000000",,,,, +"1359.000000","45.380000","1359.000000","45.380000","1359.000000","45.380000","1413.000000","0.000000",,,,,,,,,,,,"14270.000000","12067.500000","9865.000000","8.000000","12067.500000","12067.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072824.000000","0.000000","2092704.000000","129468.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","93.000000","138.000000","196.000000","152.000000","180.000000","0.000000","0.000000","0.000000","128.000000","81.000000","109.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744462.000000",,,,, +"1710.000000","47.030000","1710.000000","47.030000","1710.000000","47.030000","1541.000000","0.000000",,,,,,,,,,,,"12476.000000","9800.500000","7124.000000","9.000000","9800.500000","9800.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","69.000000","133.000000","196.000000","105.000000","180.000000","0.000000","0.000000","0.000000","126.000000","58.000000","106.000000","164.000000","80.000000","138.000000","160.000000","6000.000000","0.000000","744482.000000",,,,, +"1551.000000","46.285000","1551.000000","46.285000","1551.000000","46.285000","2795.000000","0.000000",,,,,,,,,,,,"20492.000000","13573.000000","6652.000000","53.000000","13573.000000","13573.000000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2073168.000000","0.000000","2092704.000000","129468.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","157.000000","67.000000","130.000000","196.000000","129.000000","180.000000","0.000000","0.000000","0.000000","124.000000","56.000000","103.000000","164.000000","107.000000","138.000000","160.000000","6000.000000","0.000000","744502.000000",,,,, +"2678.000000","51.580000","2678.000000","51.580000","2678.000000","51.580000","1434.000000","0.000000",,,,,,,,,,,,"9138.000000","10579.000000","12020.000000","49.000000","10579.000000","10579.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073400.000000","0.000000","2092704.000000","129468.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","82.000000","126.000000","196.000000","129.000000","174.000000","0.000000","0.000000","0.000000","122.000000","66.000000","100.000000","162.000000","107.000000","137.000000","160.000000","6000.000000","0.000000","744522.000000",,,,, +"2799.000000","52.145000","2799.000000","52.145000","2799.000000","52.145000","1383.000000","0.000000",,,,,,,,,,,,"5576.000000","3555.500000","1535.000000","7.000000","3555.500000","3555.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073292.000000","0.000000","2092704.000000","129468.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","124.000000","126.000000","194.000000","189.000000","174.000000","0.000000","0.000000","0.000000","121.000000","88.000000","98.000000","156.000000","125.000000","135.000000","160.000000","6000.000000","0.000000","744542.000000",,,,, +"3318.000000","54.590000","3318.000000","54.590000","3318.000000","54.590000","883.000000","0.000000",,,,,,,,,,,,"197.000000","2913.000000","5629.000000","38.000000","2913.000000","2913.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2072920.000000","0.000000","2092704.000000","129468.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","153.000000","129.000000","190.000000","198.000000","176.000000","0.000000","0.000000","0.000000","119.000000","105.000000","99.000000","151.000000","134.000000","135.000000","160.000000","6000.000000","0.000000","744562.000000",,,,, +"3036.000000","54.260000","3036.000000","54.260000","3036.000000","54.260000","1511.000000","0.000000",,,,,,,,,,,,"9290.000000","4985.500000","680.000000","18.000000","4985.500000","4985.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072836.000000","0.000000","2092704.000000","129468.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","163.000000","128.000000","188.000000","198.000000","176.000000","0.000000","0.000000","0.000000","118.000000","116.000000","99.000000","150.000000","134.000000","133.000000","160.000000","6000.000000","0.000000","744582.000000",,,,, +"3164.000000","54.865000","3164.000000","54.865000","3164.000000","54.865000","1816.000000","0.000000",,,,,,,,,,,,"3971.000000","6502.500000","9033.000000","57.000000","6502.500000","6502.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","153.000000","127.000000","188.000000","198.000000","178.000000","0.000000","0.000000","0.000000","118.000000","119.000000","98.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744602.000000",,,,, +"2829.000000","53.290000","2829.000000","53.290000","2829.000000","53.290000","1530.000000","0.000000",,,,,,,,,,,,"839.000000","784.500000","729.000000","20.000000","784.500000","784.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072716.000000","0.000000","2092704.000000","129468.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","146.000000","126.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","118.000000","117.000000","97.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744622.000000",,,,, +"1050.000000","44.930000","1050.000000","44.930000","1050.000000","44.930000","1220.000000","0.000000",,,,,,,,,,,,"13517.000000","7970.000000","2423.000000","5.000000","7970.000000","7970.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072784.000000","0.000000","2092704.000000","129468.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","116.000000","121.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","116.000000","94.000000","94.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744642.000000",,,,, +"1107.000000","45.195000","1107.000000","45.195000","1107.000000","45.195000","1564.000000","0.000000",,,,,,,,,,,,"5707.000000","7605.000000","9501.000000","12.000000","7605.000000","7605.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072760.000000","0.000000","2092704.000000","129468.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","147.000000","79.000000","113.000000","188.000000","180.000000","178.000000","0.000000","0.000000","0.000000","114.000000","64.000000","88.000000","149.000000","134.000000","134.000000","160.000000","6000.000000","0.000000","744662.000000",,,,, +"726.000000","43.405000","726.000000","43.405000","726.000000","43.405000","1211.000000","0.000000",,,,,,,,,,,,"12789.000000","17614.500000","22400.000000","11.000000","17614.500000","17614.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072868.000000","0.000000","2092704.000000","129468.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","39.000000",,,,,,,,,,,"0.000000","144.000000","44.000000","106.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","112.000000","38.000000","83.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744682.000000",,,,, +"723.000000","43.895000","723.000000","43.895000","723.000000","43.895000","1861.000000","0.000000",,,,,,,,,,,,"9391.000000","10150.500000","10882.000000","9.000000","10150.500000","10150.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073436.000000","0.000000","2092704.000000","129468.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","142.000000","41.000000","99.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","110.000000","34.000000","78.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744702.000000",,,,, +"542.000000","43.045000","542.000000","43.045000","542.000000","43.045000","1364.000000","0.000000",,,,,,,,,,,,"375.000000","388.500000","380.000000","2.000000","388.500000","388.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073412.000000","0.000000","2092704.000000","129468.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","0.000000","0.000000",,,,,,"14.000000","7.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","91.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","108.000000","25.000000","71.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744722.000000",,,,, +"376.000000","42.265000","376.000000","42.265000","376.000000","42.265000","1429.000000","0.000000",,,,,,,,,,,,"1047.000000","616.000000","157.000000","3.000000","616.000000","616.000000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073520.000000","0.000000","2092704.000000","129468.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","0.000000","0.000000",,,,,,"21.000000","7.000000",,,,,,,,,,,"0.000000","135.000000","24.000000","87.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","105.000000","20.000000","67.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744742.000000",,,,, +"1111.000000","45.215000","1111.000000","45.215000","1111.000000","45.215000","1513.000000","0.000000",,,,,,,,,,,,"765.000000","4216.500000","7663.000000","20.000000","4216.500000","4216.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073572.000000","0.000000","2092704.000000","129468.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","133.000000","28.000000","86.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","103.000000","24.000000","67.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744762.000000",,,,, +"655.000000","43.070000","655.000000","43.070000","655.000000","43.070000","1890.000000","0.000000",,,,,,,,,,,,"51.000000","385.000000","717.000000","8.000000","385.000000","385.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073452.000000","0.000000","2092704.000000","129468.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","129.000000","30.000000","83.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","101.000000","27.000000","65.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744782.000000",,,,, +"599.000000","42.810000","599.000000","42.810000","599.000000","42.810000","1702.000000","0.000000",,,,,,,,,,,,"993.000000","608.000000","219.000000","7.000000","608.000000","608.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073216.000000","0.000000","2092704.000000","129468.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","126.000000","32.000000","80.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","99.000000","28.000000","62.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744802.000000",,,,, +"875.000000","42.605000","875.000000","42.605000","875.000000","42.605000","1457.000000","0.000000",,,,,,,,,,,,"1709.000000","990.000000","266.000000","3.000000","990.000000","990.000000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2073180.000000","0.000000","2092704.000000","129468.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","124.000000","27.000000","75.000000","188.000000","39.000000","178.000000","0.000000","0.000000","0.000000","97.000000","24.000000","58.000000","149.000000","38.000000","128.000000","160.000000","6000.000000","0.000000","744822.000000",,,,, +"242.000000","39.630000","242.000000","39.630000","242.000000","39.630000","1087.000000","0.000000",,,,,,,,,,,,"0.000000","99.500000","199.000000","5.000000","99.500000","99.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072944.000000","0.000000","2092704.000000","129468.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","23.000000","63.000000","187.000000","50.000000","162.000000","0.000000","0.000000","0.000000","94.000000","21.000000","51.000000","149.000000","48.000000","128.000000","160.000000","6000.000000","0.000000","744842.000000",,,,, +"210.000000","39.480000","210.000000","39.480000","210.000000","39.480000","921.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","94.000000","5.000000","47.500000","47.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072480.000000","0.000000","2092704.000000","129468.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","19.000000","53.000000","187.000000","50.000000","135.000000","0.000000","0.000000","0.000000","91.000000","18.000000","44.000000","146.000000","48.000000","115.000000","160.000000","6000.000000","0.000000","744862.000000",,,,, +"260.000000","42.720000","260.000000","42.720000","260.000000","42.720000","941.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","2.000000","66.500000","66.500000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071900.000000","0.000000","2092704.000000","129468.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","13.000000","45.000000","187.000000","50.000000","133.000000","0.000000","0.000000","0.000000","88.000000","13.000000","38.000000","144.000000","48.000000","109.000000","160.000000","6000.000000","0.000000","744882.000000",,,,, +"229.000000","42.570000","229.000000","42.570000","229.000000","42.570000","723.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071624.000000","0.000000","2092704.000000","129468.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","108.000000","9.000000","34.000000","183.000000","13.000000","69.000000","0.000000","0.000000","0.000000","85.000000","8.000000","29.000000","138.000000","12.000000","48.000000","160.000000","6000.000000","0.000000","744902.000000",,,,, +"257.000000","42.700000","257.000000","42.700000","257.000000","42.700000","1004.000000","0.000000",,,,,,,,,,,,"13.000000","44.000000","75.000000","3.000000","44.000000","44.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071472.000000","0.000000","2092704.000000","129468.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","26.000000","182.000000","13.000000","52.000000","0.000000","0.000000","0.000000","83.000000","8.000000","23.000000","138.000000","12.000000","46.000000","160.000000","6000.000000","0.000000","744922.000000",,,,, +"635.000000","44.480000","635.000000","44.480000","635.000000","44.480000","1254.000000","0.000000",,,,,,,,,,,,"10.000000","181.000000","344.000000","1.000000","181.000000","181.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071336.000000","0.000000","2092704.000000","129468.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","102.000000","15.000000","25.000000","182.000000","47.000000","50.000000","0.000000","0.000000","0.000000","81.000000","14.000000","22.000000","138.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","744942.000000",,,,, +"1112.000000","38.225000","1112.000000","38.225000","1112.000000","38.225000","1594.000000","0.000000",,,,,,,,,,,,"72.000000","551.000000","1011.000000","2.000000","551.000000","551.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071628.000000","0.000000","2092704.000000","129468.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"10.000000","8.000000",,,,,,,,,,,"0.000000","99.000000","27.000000","24.000000","181.000000","67.000000","50.000000","0.000000","0.000000","0.000000","78.000000","24.000000","21.000000","137.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744962.000000",,,,, +"296.000000","34.390000","296.000000","34.390000","296.000000","34.390000","804.000000","0.000000",,,,,,,,,,,,"0.000000","59.500000","101.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071512.000000","0.000000","2092704.000000","129468.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"13.000000","4.000000",,,,,,,,,,,"0.000000","95.000000","27.000000","22.000000","180.000000","67.000000","50.000000","0.000000","0.000000","0.000000","75.000000","25.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744982.000000",,,,, +"940.000000","37.410000","940.000000","37.410000","940.000000","37.410000","1805.000000","0.000000",,,,,,,,,,,,"0.000000","3811.000000","7594.000000","30.000000","3811.000000","3811.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"18.000000","8.000000",,,,,,,,,,,"0.000000","92.000000","27.000000","22.000000","178.000000","67.000000","50.000000","0.000000","0.000000","0.000000","73.000000","24.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","745002.000000",,,,, +"747.000000","31.505000","747.000000","31.505000","747.000000","31.505000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","313.500000","627.000000","5.000000","313.500000","313.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072080.000000","0.000000","2092704.000000","129468.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","88.000000","27.000000","23.000000","176.000000","58.000000","57.000000","0.000000","0.000000","0.000000","70.000000","25.000000","21.000000","133.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745022.000000",,,,, +"340.000000","29.590000","340.000000","29.590000","340.000000","29.590000","1721.000000","0.000000",,,,,,,,,,,,"0.000000","112.500000","224.000000","1.000000","112.500000","112.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","85.000000","28.000000","23.000000","172.000000","58.000000","57.000000","0.000000","0.000000","0.000000","67.000000","24.000000","21.000000","132.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745042.000000",,,,, +"779.000000","31.655000","779.000000","31.655000","779.000000","31.655000","1498.000000","0.000000",,,,,,,,,,,,"565.000000","474.000000","382.000000","2.000000","474.000000","474.000000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","82.000000","29.000000","22.000000","169.000000","58.000000","50.000000","0.000000","0.000000","0.000000","65.000000","27.000000","20.000000","132.000000","53.000000","47.000000","160.000000","6000.000000","0.000000","745062.000000",,,,, +"480.000000","25.750000","480.000000","25.750000","480.000000","25.750000","1454.000000","0.000000",,,,,,,,,,,,"14.000000","96.000000","178.000000","5.000000","96.000000","96.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","79.000000","22.000000","22.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","63.000000","20.000000","20.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745082.000000",,,,, +"215.000000","24.505000","215.000000","24.505000","215.000000","24.505000","1360.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070776.000000","0.000000","2092704.000000","129468.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","21.000000","21.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","61.000000","19.000000","19.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745102.000000",,,,, +"220.000000","24.525000","220.000000","24.525000","220.000000","24.525000","1333.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","74.000000","13.000000","19.000000","167.000000","35.000000","50.000000","0.000000","0.000000","0.000000","59.000000","12.000000","18.000000","131.000000","34.000000","47.000000","160.000000","6000.000000","0.000000","745122.000000",,,,, +"253.000000","22.185000","253.000000","22.185000","253.000000","22.185000","1374.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2070240.000000","0.000000","2092704.000000","129468.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","69.000000","9.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","55.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745142.000000",,,,, +"211.000000","21.990000","211.000000","21.990000","211.000000","21.990000","1237.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2069512.000000","0.000000","2092704.000000","129468.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","8.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","54.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745162.000000",,,,, +"210.000000","21.980000","210.000000","21.980000","210.000000","21.980000","1417.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","3.000000","10.000000","10.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2068924.000000","0.000000","2092704.000000","129468.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","8.000000","18.000000","164.000000","13.000000","48.000000","0.000000","0.000000","0.000000","51.000000","8.000000","17.000000","123.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745182.000000",,,,, +"242.000000","20.135000","242.000000","20.135000","242.000000","20.135000","1204.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","5.000000","33.000000","33.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068524.000000","0.000000","2092704.000000","129468.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","60.000000","8.000000","19.000000","162.000000","12.000000","48.000000","0.000000","0.000000","0.000000","48.000000","8.000000","17.000000","118.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745202.000000",,,,, +"221.000000","20.035000","221.000000","20.035000","221.000000","20.035000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","3.000000","8.500000","8.500000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068260.000000","0.000000","2092704.000000","129468.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","8.000000","18.000000","155.000000","12.000000","48.000000","0.000000","0.000000","0.000000","46.000000","8.000000","17.000000","115.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745222.000000",,,,, +"221.000000","20.030000","221.000000","20.030000","221.000000","20.030000","1249.000000","0.000000",,,,,,,,,,,,"1.000000","24.000000","47.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068640.000000","0.000000","2092704.000000","129468.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","8.000000","17.000000","154.000000","12.000000","48.000000","0.000000","0.000000","0.000000","44.000000","8.000000","16.000000","114.000000","11.000000","38.000000","160.000000","6000.000000","0.000000","745242.000000",,,,, +"353.000000","17.150000","353.000000","17.150000","353.000000","17.150000","1486.000000","0.000000",,,,,,,,,,,,"15.000000","96.000000","175.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2068132.000000","0.000000","2092704.000000","129468.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","51.000000","10.000000","15.000000","150.000000","17.000000","35.000000","0.000000","0.000000","0.000000","41.000000","9.000000","14.000000","113.000000","17.000000","34.000000","160.000000","6000.000000","0.000000","745262.000000",,,,, +"575.000000","18.195000","575.000000","18.195000","575.000000","18.195000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","160.000000","313.000000","1.000000","160.000000","160.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067844.000000","0.000000","2092704.000000","129468.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","48.000000","15.000000","16.000000","143.000000","54.000000","47.000000","0.000000","0.000000","0.000000","39.000000","14.000000","15.000000","112.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745282.000000",,,,, +"637.000000","18.490000","637.000000","18.490000","637.000000","18.490000","1866.000000","0.000000",,,,,,,,,,,,"0.000000","186.500000","371.000000","3.000000","186.500000","186.500000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067620.000000","0.000000","2092704.000000","129468.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","46.000000","20.000000","16.000000","135.000000","54.000000","40.000000","0.000000","0.000000","0.000000","37.000000","18.000000","15.000000","109.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745302.000000",,,,, +"539.000000","16.025000","539.000000","16.025000","539.000000","16.025000","1200.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067912.000000","0.000000","2092704.000000","129468.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","43.000000","22.000000","14.000000","129.000000","54.000000","35.000000","0.000000","0.000000","0.000000","35.000000","21.000000","13.000000","104.000000","48.000000","34.000000","160.000000","6000.000000","0.000000","745322.000000",,,,, +"499.000000","15.840000","499.000000","15.840000","499.000000","15.840000","1748.000000","0.000000",,,,,,,,,,,,"15.000000","133.500000","251.000000","4.000000","133.500000","133.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067972.000000","0.000000","2092704.000000","129468.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","42.000000","22.000000","15.000000","129.000000","40.000000","35.000000","0.000000","0.000000","0.000000","34.000000","20.000000","14.000000","104.000000","40.000000","34.000000","160.000000","6000.000000","0.000000","745342.000000",,,,, +"272.000000","14.775000","272.000000","14.775000","272.000000","14.775000","1982.000000","0.000000",,,,,,,,,,,,"9.000000","38.500000","67.000000","2.000000","38.500000","38.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067184.000000","0.000000","2092704.000000","129468.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","13.000000","129.000000","40.000000","34.000000","0.000000","0.000000","0.000000","33.000000","17.000000","13.000000","104.000000","39.000000","30.000000","160.000000","6000.000000","0.000000","745362.000000",,,,, +"226.000000","13.055000","226.000000","13.055000","226.000000","13.055000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","130.000000","2.000000","65.500000","65.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066756.000000","0.000000","2092704.000000","129468.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","14.000000","13.000000","129.000000","34.000000","32.000000","0.000000","0.000000","0.000000","32.000000","13.000000","12.000000","104.000000","30.000000","28.000000","160.000000","6000.000000","0.000000","745382.000000",,,,, +"211.000000","12.985000","211.000000","12.985000","211.000000","12.985000","1784.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","5.000000","13.500000","13.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066684.000000","0.000000","2092704.000000","129468.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","13.000000","129.000000","16.000000","32.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","101.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","745402.000000",,,,, +"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","946.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","33.000000","2.000000","17.000000","17.000000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066324.000000","0.000000","2092704.000000","129468.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","13.000000","129.000000","10.000000","32.000000","0.000000","0.000000","0.000000","29.000000","8.000000","12.000000","101.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745422.000000",,,,, +"219.000000","12.025000","219.000000","12.025000","219.000000","12.025000","767.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","5.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065884.000000","0.000000","2092704.000000","129468.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","8.000000","13.000000","69.000000","10.000000","32.000000","0.000000","0.000000","0.000000","27.000000","8.000000","12.000000","66.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745442.000000",,,,, +"239.000000","12.120000","239.000000","12.120000","239.000000","12.120000","602.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","14.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065068.000000","0.000000","2092704.000000","129468.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","13.000000","57.000000","10.000000","32.000000","0.000000","0.000000","0.000000","24.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745462.000000",,,,, +"225.000000","12.050000","225.000000","12.050000","225.000000","12.050000","560.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","2.000000","19.000000","19.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2064604.000000","0.000000","2092704.000000","129468.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","13.000000","54.000000","10.000000","32.000000","0.000000","0.000000","0.000000","22.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745482.000000",,,,, +"234.000000","12.090000","234.000000","12.090000","234.000000","12.090000","538.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","4.000000","19.000000","19.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063468.000000","0.000000","2092704.000000","129468.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","13.000000","50.000000","9.000000","32.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","43.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745502.000000",,,,, +"217.000000","12.015000","217.000000","12.015000","217.000000","12.015000","564.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","3.000000","14.000000","14.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063212.000000","0.000000","2092704.000000","129468.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","40.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745522.000000",,,,, +"288.000000","12.350000","288.000000","12.350000","288.000000","12.350000","699.000000","0.000000",,,,,,,,,,,,"8.000000","39.500000","70.000000","3.000000","39.500000","39.500000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063196.000000","0.000000","2092704.000000","129468.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745542.000000",,,,, +"598.000000","12.805000","598.000000","12.805000","598.000000","12.805000","928.000000","0.000000",,,,,,,,,,,,"0.000000","181.500000","356.000000","1.000000","181.500000","181.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2063188.000000","0.000000","2092704.000000","129468.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","17.000000","15.000000","14.000000","40.000000","55.000000","34.000000","0.000000","0.000000","0.000000","16.000000","13.000000","13.000000","37.000000","45.000000","30.000000","160.000000","6000.000000","0.000000","745562.000000",,,,, +"1052.000000","14.940000","1052.000000","14.940000","1052.000000","14.940000","1200.000000","0.000000",,,,,,,,,,,,"5.000000","493.000000","965.000000","1.000000","493.000000","493.000000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062944.000000","0.000000","2092704.000000","129468.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","0.000000","0.000000",,,,,,"8.000000","7.000000",,,,,,,,,,,"0.000000","18.000000","24.000000","14.000000","47.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","21.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745582.000000",,,,, +"219.000000","11.025000","219.000000","11.025000","219.000000","11.025000","1114.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","26.000000","1.000000","14.500000","14.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062500.000000","0.000000","2092704.000000","129468.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","27.000000","14.000000","40.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745602.000000",,,,, +"229.000000","10.070000","229.000000","10.070000","229.000000","10.070000","886.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","92.000000","4.000000","47.500000","47.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2062048.000000","0.000000","2092704.000000","129468.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","21.000000","13.000000","40.000000","65.000000","32.000000","0.000000","0.000000","0.000000","15.000000","18.000000","12.000000","38.000000","59.000000","28.000000","160.000000","6000.000000","0.000000","745622.000000",,,,, +"228.000000","10.065000","228.000000","10.065000","228.000000","10.065000","668.000000","0.000000",,,,,,,,,,,,"0.000000","7.500000","11.000000","0.000000","7.500000","7.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2061444.000000","0.000000","2092704.000000","129468.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","11.000000","12.000000","40.000000","36.000000","25.000000","0.000000","0.000000","0.000000","15.000000","10.000000","11.000000","38.000000","35.000000","19.000000","160.000000","6000.000000","0.000000","745642.000000",,,,, +"245.000000","10.150000","245.000000","10.150000","245.000000","10.150000","732.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","10.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2060896.000000","0.000000","2092704.000000","129468.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","12.000000","38.000000","10.000000","25.000000","0.000000","0.000000","0.000000","15.000000","8.000000","11.000000","36.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745662.000000",,,,, +"226.000000","10.560000","226.000000","10.560000","226.000000","10.560000","783.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060284.000000","0.000000","2092704.000000","129468.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745682.000000",,,,, +"215.000000","10.505000","215.000000","10.505000","215.000000","10.505000","742.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","5.000000","5.500000","5.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060172.000000","0.000000","2092704.000000","129468.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745702.000000",,,,, +"226.000000","10.555000","226.000000","10.555000","226.000000","10.555000","619.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","9.000000","0.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059312.000000","0.000000","2092704.000000","129468.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","35.000000","9.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745722.000000",,,,, +"241.000000","12.125000","241.000000","12.125000","241.000000","12.125000","544.000000","0.000000",,,,,,,,,,,,"0.000000","9.000000","12.000000","1.000000","9.000000","9.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058812.000000","0.000000","2092704.000000","129468.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"4.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","8.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745742.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","498.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058316.000000","0.000000","2092704.000000","129468.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745762.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","596.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","2.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2057376.000000","0.000000","2092704.000000","129468.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745782.000000",,,,, +"220.000000","9.530000","220.000000","9.530000","220.000000","9.530000","657.000000","0.000000",,,,,,,,,,,,"0.000000","6.500000","10.000000","1.000000","6.500000","6.500000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2056920.000000","0.000000","2092704.000000","129468.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745802.000000",,,,, +"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","625.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","3.000000","6.000000","6.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057116.000000","0.000000","2092704.000000","129468.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745822.000000",,,,, +"227.000000","9.565000","227.000000","9.565000","227.000000","9.565000","575.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","12.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057084.000000","0.000000","2092704.000000","129468.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","34.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","31.000000","8.000000","19.000000","160.000000","6000.000000","0.000000","745842.000000",,,,, +"840.000000","10.940000","840.000000","10.940000","840.000000","10.940000","695.000000","0.000000",,,,,,,,,,,,"944.000000","2276.000000","3596.000000","21.000000","2276.000000","2276.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2059604.000000","0.000000","2092704.000000","129468.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","0.000000","0.000000",,,,,,"6.000000","4.000000",,,,,,,,,,,"0.000000","14.000000","17.000000","13.000000","34.000000","62.000000","31.000000","0.000000","0.000000","0.000000","13.000000","15.000000","12.000000","28.000000","60.000000","24.000000","160.000000","6000.000000","0.000000","745862.000000",,,,, +"509.000000","9.385000","509.000000","9.385000","509.000000","9.385000","495.000000","0.000000",,,,,,,,,,,,"7.000000","170.000000","331.000000","9.000000","170.000000","170.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2060928.000000","0.000000","2092704.000000","129468.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","21.000000","12.000000","34.000000","62.000000","16.000000","0.000000","0.000000","0.000000","13.000000","19.000000","11.000000","30.000000","60.000000","16.000000","160.000000","6000.000000","0.000000","745882.000000",,,,, +"264.000000","8.235000","264.000000","8.235000","264.000000","8.235000","974.000000","0.000000",,,,,,,,,,,,"0.000000","64.000000","128.000000","2.000000","64.000000","64.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","22.000000","11.000000","34.000000","62.000000","15.000000","0.000000","0.000000","0.000000","13.000000","20.000000","10.000000","28.000000","60.000000","15.000000","160.000000","6000.000000","0.000000","745902.000000",,,,, +"218.000000","8.520000","218.000000","8.520000","218.000000","8.520000","449.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","9.000000","48.500000","48.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2061608.000000","0.000000","2092704.000000","129468.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","11.000000","31.000000","37.000000","15.000000","0.000000","0.000000","0.000000","12.000000","13.000000","10.000000","24.000000","35.000000","15.000000","160.000000","6000.000000","0.000000","745922.000000",,,,, +"232.000000","8.585000","232.000000","8.585000","232.000000","8.585000","837.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","79.000000","1.000000","40.000000","40.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060576.000000","0.000000","2092704.000000","129468.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","31.000000","12.000000","15.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","24.000000","12.000000","15.000000","160.000000","6000.000000","0.000000","745942.000000",,,,, +"261.000000","8.720000","261.000000","8.720000","261.000000","8.720000","1135.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","3.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060168.000000","0.000000","2092704.000000","129468.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","25.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","19.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745962.000000",,,,, +"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","1093.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","3.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059716.000000","0.000000","2092704.000000","129468.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745982.000000",,,,, +"223.000000","10.540000","223.000000","10.540000","223.000000","10.540000","981.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","5.000000","27.500000","27.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058392.000000","0.000000","2092704.000000","129468.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746002.000000",,,,, +"247.000000","10.655000","247.000000","10.655000","247.000000","10.655000","508.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","4.000000","44.000000","44.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058020.000000","0.000000","2092704.000000","129468.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746022.000000",,,,, +"220.000000","8.530000","220.000000","8.530000","220.000000","8.530000","624.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","6.000000","10.000000","10.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2057600.000000","0.000000","2092704.000000","129468.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746042.000000",,,,, +"240.000000","8.620000","240.000000","8.620000","240.000000","8.620000","494.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","6.000000","38.000000","38.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056600.000000","0.000000","2092704.000000","129468.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746062.000000",,,,, +"480.000000","9.750000","480.000000","9.750000","480.000000","9.750000","537.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","339.000000","5.000000","172.500000","172.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2058168.000000","0.000000","2092704.000000","129468.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746082.000000",,,,, +"691.000000","10.740000","691.000000","10.740000","691.000000","10.740000","837.000000","0.000000",,,,,,,,,,,,"17.000000","243.500000","459.000000","3.000000","243.500000","243.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057872.000000","0.000000","2092704.000000","129468.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","0.000000","0.000000",,,,,,"4.000000","5.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746102.000000",,,,, +"284.000000","8.830000","284.000000","8.830000","284.000000","8.830000","449.000000","0.000000",,,,,,,,,,,,"3.000000","91.500000","180.000000","2.000000","91.500000","91.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057300.000000","0.000000","2092704.000000","129468.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","18.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746122.000000",,,,, +"234.000000","8.595000","234.000000","8.595000","234.000000","8.595000","502.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057252.000000","0.000000","2092704.000000","129468.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746142.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","524.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","7.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056832.000000","0.000000","2092704.000000","129468.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","31.000000","17.000000","17.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","24.000000","16.000000","16.000000","160.000000","6000.000000","0.000000","746162.000000",,,,, +"245.000000","8.645000","245.000000","8.645000","245.000000","8.645000","371.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","29.000000","2.000000","14.500000","14.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056416.000000","0.000000","2092704.000000","129468.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","26.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","22.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746182.000000",,,,, +"212.000000","8.490000","212.000000","8.490000","212.000000","8.490000","713.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2055744.000000","0.000000","2092704.000000","129468.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746202.000000",,,,, +"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","807.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","6.000000","37.000000","37.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2055244.000000","0.000000","2092704.000000","129468.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746222.000000",,,,, +"237.000000","7.110000","237.000000","7.110000","237.000000","7.110000","490.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2054168.000000","0.000000","2092704.000000","129468.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746242.000000",,,,, +"219.000000","7.020000","219.000000","7.020000","219.000000","7.020000","653.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","4.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2052588.000000","0.000000","2092704.000000","129468.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746262.000000",,,,, +"272.000000","8.775000","272.000000","8.775000","272.000000","8.775000","556.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","4.000000","36.500000","36.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2052180.000000","0.000000","2092704.000000","129468.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746282.000000",,,,, +"547.000000","10.065000","547.000000","10.065000","547.000000","10.065000","521.000000","0.000000",,,,,,,,,,,,"2.000000","59.500000","116.000000","3.000000","59.500000","59.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2051480.000000","0.000000","2092704.000000","129468.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","11.000000","16.000000","21.000000","17.000000","0.000000","0.000000","0.000000","11.000000","10.000000","11.000000","15.000000","18.000000","16.000000","160.000000","6000.000000","0.000000","746302.000000",,,,, +"292.000000","8.865000","292.000000","8.865000","292.000000","8.865000","666.000000","0.000000",,,,,,,,,,,,"0.000000","92.500000","185.000000","7.000000","92.500000","92.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746322.000000",,,,, +"264.000000","7.735000","264.000000","7.735000","264.000000","7.735000","389.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","3.000000","71.000000","71.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050140.000000","0.000000","2092704.000000","129468.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746342.000000",,,,, +"227.000000","7.565000","227.000000","7.565000","227.000000","7.565000","483.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","1.000000","26.500000","26.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050032.000000","0.000000","2092704.000000","129468.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","13.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","12.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746362.000000",,,,, +"240.000000","7.625000","240.000000","7.625000","240.000000","7.625000","469.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049260.000000","0.000000","2092704.000000","129468.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","12.000000","16.000000","14.000000","21.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","18.000000","160.000000","6000.000000","0.000000","746382.000000",,,,, +"259.000000","9.710000","259.000000","9.710000","259.000000","9.710000","465.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048696.000000","0.000000","2092704.000000","129468.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","746402.000000",,,,, +"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","315.000000","0.000000",,,,,,,,,,,,"0.000000","15.500000","31.000000","4.000000","15.500000","15.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048224.000000","0.000000","2092704.000000","129468.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746422.000000",,,,, +"223.000000","9.545000","223.000000","9.545000","223.000000","9.545000","439.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049652.000000","0.000000","2092704.000000","129468.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746442.000000",,,,, +"265.000000","7.740000","265.000000","7.740000","265.000000","7.740000","371.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","7.000000","29.000000","29.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049236.000000","0.000000","2092704.000000","129468.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746462.000000",,,,, +"224.000000","7.550000","224.000000","7.550000","224.000000","7.550000","414.000000","0.000000",,,,,,,,,,,,"0.000000","16.500000","33.000000","12.000000","16.500000","16.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2047088.000000","0.000000","2092704.000000","129468.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746482.000000",,,,, +"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","725.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","13.000000","47.500000","47.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2045500.000000","0.000000","2092704.000000","129468.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746502.000000",,,,, +"584.000000","8.740000","584.000000","8.740000","584.000000","8.740000","693.000000","0.000000",,,,,,,,,,,,"6.000000","106.000000","206.000000","9.000000","106.000000","106.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045596.000000","0.000000","2092704.000000","129468.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746522.000000",,,,, +"230.000000","7.075000","230.000000","7.075000","230.000000","7.075000","739.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","6.000000","65.000000","65.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045888.000000","0.000000","2092704.000000","129468.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746542.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","667.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2046312.000000","0.000000","2092704.000000","129468.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746562.000000",,,,, +"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","886.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045872.000000","0.000000","2092704.000000","129468.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","13.000000","16.000000","160.000000","6000.000000","0.000000","746582.000000",,,,, +"246.000000","8.650000","246.000000","8.650000","246.000000","8.650000","564.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044336.000000","0.000000","2092704.000000","129468.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","746602.000000",,,,, +"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","766.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2043240.000000","0.000000","2092704.000000","129468.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746622.000000",,,,, +"275.000000","7.785000","275.000000","7.785000","275.000000","7.785000","620.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042700.000000","0.000000","2092704.000000","129468.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746642.000000",,,,, +"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","680.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042560.000000","0.000000","2092704.000000","129468.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746662.000000",,,,, +"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","754.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","5.000000","13.000000","13.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042448.000000","0.000000","2092704.000000","129468.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746682.000000",,,,, +"276.000000","7.290000","276.000000","7.290000","276.000000","7.290000","506.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","4.000000","43.000000","43.000000",,,,,,,,,,,"167772.000000","251656.000000","0.000000","0.000000","2042020.000000","0.000000","2092704.000000","129468.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746702.000000",,,,, +"587.000000","9.255000","587.000000","9.255000","587.000000","9.255000","843.000000","0.000000",,,,,,,,,,,,"32.000000","84.500000","137.000000","5.000000","84.500000","84.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2042600.000000","0.000000","2092704.000000","129468.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","11.000000","16.000000","65.000000","14.000000","0.000000","0.000000","0.000000","11.000000","13.000000","10.000000","16.000000","42.000000","13.000000","160.000000","6000.000000","0.000000","746722.000000",,,,, +"470.000000","9.205000","470.000000","9.205000","470.000000","9.205000","564.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","4.000000","154.500000","154.500000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2041640.000000","0.000000","2092704.000000","129468.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","19.000000","12.000000","16.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","16.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746742.000000",,,,, +"260.000000","8.220000","260.000000","8.220000","260.000000","8.220000","463.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","5.000000","42.000000","42.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041228.000000","0.000000","2092704.000000","129468.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","15.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","15.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746762.000000",,,,, +"276.000000","8.295000","276.000000","8.295000","276.000000","8.295000","436.000000","0.000000",,,,,,,,,,,,"0.000000","100.000000","200.000000","4.000000","100.000000","100.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039672.000000","0.000000","2092704.000000","129468.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","12.000000","13.000000","34.000000","16.000000","0.000000","0.000000","0.000000","10.000000","12.000000","11.000000","13.000000","34.000000","16.000000","160.000000","6000.000000","0.000000","746782.000000",,,,, +"593.000000","9.785000","593.000000","9.785000","593.000000","9.785000","908.000000","0.000000",,,,,,,,,,,,"0.000000","129.000000","258.000000","6.000000","129.000000","129.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2037544.000000","0.000000","2092704.000000","129468.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","14.000000","29.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","14.000000","28.000000","25.000000","160.000000","6000.000000","0.000000","746802.000000",,,,, +"411.000000","7.430000","411.000000","7.430000","411.000000","7.430000","859.000000","0.000000",,,,,,,,,,,,"0.000000","54.500000","108.000000","6.000000","54.500000","54.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2036936.000000","0.000000","2092704.000000","129468.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","17.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746822.000000",,,,, +"246.000000","6.650000","246.000000","6.650000","246.000000","6.650000","437.000000","0.000000",,,,,,,,,,,,"0.000000","85.000000","170.000000","6.000000","85.000000","85.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034024.000000","0.000000","2092704.000000","129468.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","16.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746842.000000",,,,, +"567.000000","8.160000","567.000000","8.160000","567.000000","8.160000","577.000000","0.000000",,,,,,,,,,,,"2.000000","52.500000","102.000000","4.000000","52.500000","52.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033620.000000","0.000000","2092704.000000","129468.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","17.000000","25.000000","25.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","16.000000","22.000000","22.000000","160.000000","6000.000000","0.000000","746862.000000",,,,, +"304.000000","6.925000","304.000000","6.925000","304.000000","6.925000","606.000000","0.000000",,,,,,,,,,,,"1.000000","116.500000","232.000000","8.000000","116.500000","116.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033232.000000","0.000000","2092704.000000","129468.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","14.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746882.000000",,,,, +"224.000000","6.550000","224.000000","6.550000","224.000000","6.550000","464.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2032932.000000","0.000000","2092704.000000","129468.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746902.000000",,,,, +"267.000000","6.750000","267.000000","6.750000","267.000000","6.750000","476.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034120.000000","0.000000","2092704.000000","129468.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","12.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","11.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746922.000000",,,,, +"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","481.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033572.000000","0.000000","2092704.000000","129468.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746942.000000",,,,, +"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","602.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033528.000000","0.000000","2092704.000000","129468.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746962.000000",,,,, +"258.000000","10.705000","258.000000","10.705000","258.000000","10.705000","430.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","4.000000","17.000000","17.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2031944.000000","0.000000","2092704.000000","129468.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746982.000000",,,,, +"247.000000","9.155000","247.000000","9.155000","247.000000","9.155000","424.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","5.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2031416.000000","0.000000","2092704.000000","129468.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","13.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","160.000000","6000.000000","0.000000","747002.000000",,,,, +"225.000000","9.050000","225.000000","9.050000","225.000000","9.050000","519.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2029764.000000","0.000000","2092704.000000","129468.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","0.000000","0.000000","0.000000","10.000000","9.000000","12.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747022.000000",,,,, +"277.000000","9.295000","277.000000","9.295000","277.000000","9.295000","378.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2027712.000000","0.000000","2092704.000000","129468.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747042.000000",,,,, +"252.000000","7.180000","252.000000","7.180000","252.000000","7.180000","427.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2027092.000000","0.000000","2092704.000000","129468.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747062.000000",,,,, +"222.000000","7.035000","222.000000","7.035000","222.000000","7.035000","397.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","3.000000","42.000000","42.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2029612.000000","0.000000","2092704.000000","129468.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747082.000000",,,,, +"283.000000","7.325000","283.000000","7.325000","283.000000","7.325000","562.000000","0.000000",,,,,,,,,,,,"1.000000","40.500000","80.000000","2.000000","40.500000","40.500000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2031248.000000","0.000000","2092704.000000","129468.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","747102.000000",,,,, +"207.000000","6.465000","207.000000","6.465000","207.000000","6.465000","985.000000","0.000000",,,,,,,,,,,,"0.000000","34.500000","69.000000","3.000000","34.500000","34.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2031080.000000","0.000000","2092704.000000","129468.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747122.000000",,,,, +"257.000000","6.700000","257.000000","6.700000","257.000000","6.700000","418.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","3.000000","33.000000","33.000000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030692.000000","0.000000","2092704.000000","129468.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747142.000000",,,,, +"269.000000","6.760000","269.000000","6.760000","269.000000","6.760000","461.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","3.000000","31.500000","31.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030252.000000","0.000000","2092704.000000","129468.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747162.000000",,,,, +"221.000000","6.035000","221.000000","6.035000","221.000000","6.035000","576.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","5.000000","38.000000","38.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029488.000000","0.000000","2092704.000000","129468.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747182.000000",,,,, +"215.000000","6.005000","215.000000","6.005000","215.000000","6.005000","535.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747202.000000",,,,, +"263.000000","6.230000","263.000000","6.230000","263.000000","6.230000","540.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029996.000000","0.000000","2092704.000000","129468.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747222.000000",,,,, +"216.000000","8.010000","216.000000","8.010000","216.000000","8.010000","449.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029456.000000","0.000000","2092704.000000","129468.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747242.000000",,,,, +"222.000000","8.040000","222.000000","8.040000","222.000000","8.040000","504.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","38.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2031016.000000","0.000000","2092704.000000","129468.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747262.000000",,,,, +"325.000000","8.525000","325.000000","8.525000","325.000000","8.525000","383.000000","0.000000",,,,,,,,,,,,"0.000000","67.000000","134.000000","2.000000","67.000000","67.000000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029904.000000","0.000000","2092704.000000","129468.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747282.000000",,,,, +"656.000000","8.580000","656.000000","8.580000","656.000000","8.580000","509.000000","0.000000",,,,,,,,,,,,"6.000000","160.500000","314.000000","3.000000","160.500000","160.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2029988.000000","0.000000","2092704.000000","129468.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747302.000000",,,,, +"222.000000","6.540000","222.000000","6.540000","222.000000","6.540000","427.000000","0.000000",,,,,,,,,,,,"1.000000","57.500000","113.000000","2.000000","57.500000","57.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2030240.000000","0.000000","2092704.000000","129468.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747322.000000",,,,, +"205.000000","6.455000","205.000000","6.455000","205.000000","6.455000","570.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2031584.000000","0.000000","2092704.000000","129468.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747342.000000",,,,, +"275.000000","7.290000","275.000000","7.290000","275.000000","7.290000","410.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","35.000000","54.000000","54.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2031500.000000","0.000000","2092704.000000","129468.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747362.000000",,,,, +"224.000000","7.045000","224.000000","7.045000","224.000000","7.045000","422.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2030172.000000","0.000000","2092704.000000","129468.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747382.000000",,,,, +"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","392.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","12.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747402.000000",,,,, +"277.000000","7.295000","277.000000","7.295000","277.000000","7.295000","694.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","4.000000","42.000000","42.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2028208.000000","0.000000","2092704.000000","129468.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747422.000000",,,,, +"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","423.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","5.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2024908.000000","0.000000","2092704.000000","129468.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747442.000000",,,,, +"231.000000","7.080000","231.000000","7.080000","231.000000","7.080000","503.000000","0.000000",,,,,,,,,,,,"0.000000","11.500000","23.000000","2.000000","11.500000","11.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2021248.000000","0.000000","2092704.000000","129468.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747462.000000",,,,, +"290.000000","6.355000","290.000000","6.355000","290.000000","6.355000","563.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2020788.000000","0.000000","2092704.000000","129468.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747482.000000",,,,, +"309.000000","6.445000","309.000000","6.445000","309.000000","6.445000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2019568.000000","0.000000","2092704.000000","129468.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","15.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","19.000000","15.000000","160.000000","6000.000000","0.000000","747502.000000",,,,, +"887.000000","18.665000","887.000000","18.665000","887.000000","18.665000","1100.000000","0.000000",,,,,,,,,,,,"11704.000000","12116.000000","12338.000000","32.000000","12116.000000","12116.000000",,,,,,,,,,,"461372.000000","608172.000000","0.000000","0.000000","2043504.000000","0.000000","2092704.000000","129468.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","0.000000","0.000000",,,,,,"1.000000","188.000000",,,,,,,,,,,"0.000000","11.000000","20.000000","12.000000","17.000000","64.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","17.000000","46.000000","19.000000","160.000000","6000.000000","0.000000","747522.000000",,,,, +"1057.000000","24.460000","1057.000000","24.460000","1057.000000","24.460000","858.000000","0.000000",,,,,,,,,,,,"332.000000","11614.000000","10071.000000","49.000000","11614.000000","11614.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2049828.000000","0.000000","2092704.000000","129468.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"12759.000000","65.000000",,,,,,,,,,,"0.000000","12.000000","33.000000","15.000000","21.000000","64.000000","38.000000","0.000000","0.000000","0.000000","11.000000","27.000000","13.000000","20.000000","51.000000","32.000000","160.000000","6000.000000","0.000000","747542.000000",,,,, +"1284.000000","25.525000","1284.000000","25.525000","1284.000000","25.525000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","20819.000000","21350.000000","52.000000","20819.000000","20819.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2054784.000000","0.000000","2092704.000000","129468.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"20208.000000","80.000000",,,,,,,,,,,"0.000000","13.000000","50.000000","18.000000","25.000000","75.000000","62.000000","0.000000","0.000000","0.000000","12.000000","38.000000","16.000000","22.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747562.000000",,,,, +"1222.000000","31.740000","1222.000000","31.740000","1222.000000","31.740000","1331.000000","0.000000",,,,,,,,,,,,"0.000000","20673.500000","32382.000000","52.000000","20673.500000","20673.500000",,,,,,,,,,,"1048576.000000","1090516.000000","0.000000","0.000000","2069584.000000","0.000000","2092704.000000","129468.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"8932.000000","31.000000",,,,,,,,,,,"0.000000","15.000000","56.000000","22.000000","29.000000","75.000000","64.000000","0.000000","0.000000","0.000000","13.000000","42.000000","18.000000","28.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747582.000000",,,,, +"1072.000000","42.030000","1072.000000","42.030000","1072.000000","42.030000","887.000000","0.000000",,,,,,,,,,,,"24.000000","20193.500000","25790.000000","22.000000","20193.500000","20193.500000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069968.000000","0.000000","2092704.000000","129468.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"14509.000000","63.000000",,,,,,,,,,,"0.000000","16.000000","59.000000","24.000000","49.000000","75.000000","64.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","39.000000","50.000000","46.000000","160.000000","6000.000000","0.000000","747602.000000",,,,, +"1121.000000","42.260000","1121.000000","42.260000","1121.000000","42.260000","703.000000","0.000000",,,,,,,,,,,,"1468.000000","2351.000000","3222.000000","5.000000","2351.000000","2351.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069712.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","16.000000","52.000000","26.000000","49.000000","79.000000","64.000000","0.000000","0.000000","0.000000","14.000000","42.000000","21.000000","39.000000","65.000000","46.000000","160.000000","6000.000000","0.000000","747622.000000",,,,, +"1808.000000","45.490000","1808.000000","45.490000","1808.000000","45.490000","820.000000","0.000000",,,,,,,,,,,,"845.000000","1243.000000","1626.000000","12.000000","1243.000000","1243.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069368.000000","0.000000","2092704.000000","129468.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","30.000000","51.000000","90.000000","70.000000","0.000000","0.000000","0.000000","15.000000","47.000000","25.000000","42.000000","77.000000","50.000000","160.000000","6000.000000","0.000000","747642.000000",,,,, +"2368.000000","52.620000","2368.000000","52.620000","2368.000000","52.620000","757.000000","0.000000",,,,,,,,,,,,"109.000000","519.000000","920.000000","4.000000","519.000000","519.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069384.000000","0.000000","2092704.000000","129468.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","19.000000","71.000000","36.000000","56.000000","104.000000","79.000000","0.000000","0.000000","0.000000","17.000000","65.000000","31.000000","46.000000","100.000000","71.000000","160.000000","6000.000000","0.000000","747662.000000",,,,, +"2429.000000","52.910000","2429.000000","52.910000","2429.000000","52.910000","696.000000","0.000000",,,,,,,,,,,,"49.000000","756.500000","1458.000000","9.000000","756.500000","756.500000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069288.000000","0.000000","2092704.000000","129468.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","21.000000","85.000000","41.000000","64.000000","108.000000","84.000000","0.000000","0.000000","0.000000","19.000000","81.000000","36.000000","49.000000","107.000000","81.000000","160.000000","6000.000000","0.000000","747682.000000",,,,, +"2529.000000","53.380000","2529.000000","53.380000","2529.000000","53.380000","815.000000","0.000000",,,,,,,,,,,,"6.000000","346.000000","682.000000","5.000000","346.000000","346.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069036.000000","0.000000","2092704.000000","129468.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","93.000000","47.000000","70.000000","108.000000","99.000000","0.000000","0.000000","0.000000","20.000000","90.000000","41.000000","51.000000","107.000000","92.000000","160.000000","6000.000000","0.000000","747702.000000",,,,, +"2291.000000","52.260000","2291.000000","52.260000","2291.000000","52.260000","1569.000000","0.000000",,,,,,,,,,,,"179.000000","558.000000","926.000000","13.000000","558.000000","558.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2068880.000000","0.000000","2092704.000000","129468.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","24.000000","93.000000","53.000000","78.000000","108.000000","102.000000","0.000000","0.000000","0.000000","22.000000","89.000000","47.000000","71.000000","107.000000","94.000000","160.000000","6000.000000","0.000000","747722.000000",,,,, +"2266.000000","52.645000","2266.000000","52.645000","2266.000000","52.645000","1448.000000","0.000000",,,,,,,,,,,,"0.000000","238.500000","469.000000","6.000000","238.500000","238.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068904.000000","0.000000","2092704.000000","129468.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","26.000000","94.000000","58.000000","84.000000","105.000000","102.000000","0.000000","0.000000","0.000000","24.000000","89.000000","52.000000","77.000000","103.000000","94.000000","160.000000","6000.000000","0.000000","747742.000000",,,,, +"2699.000000","54.680000","2699.000000","54.680000","2699.000000","54.680000","759.000000","0.000000",,,,,,,,,,,,"21.000000","348.500000","667.000000","8.000000","348.500000","348.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068692.000000","0.000000","2092704.000000","129468.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","28.000000","96.000000","64.000000","89.000000","108.000000","104.000000","0.000000","0.000000","0.000000","25.000000","91.000000","57.000000","85.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","747762.000000",,,,, +"2345.000000","53.015000","2345.000000","53.015000","2345.000000","53.015000","1128.000000","0.000000",,,,,,,,,,,,"1028.000000","5992.500000","10947.000000","29.000000","5992.500000","5992.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","30.000000","98.000000","71.000000","93.000000","113.000000","105.000000","0.000000","0.000000","0.000000","27.000000","92.000000","64.000000","87.000000","111.000000","103.000000","160.000000","6000.000000","0.000000","747782.000000",,,,, +"2726.000000","53.805000","2726.000000","53.805000","2726.000000","53.805000","875.000000","0.000000",,,,,,,,,,,,"267.000000","1066.000000","1858.000000","12.000000","1066.000000","1066.000000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070348.000000","0.000000","2092704.000000","129468.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","32.000000","102.000000","77.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","29.000000","96.000000","69.000000","87.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747802.000000",,,,, +"2414.000000","52.335000","2414.000000","52.335000","2414.000000","52.335000","850.000000","0.000000",,,,,,,,,,,,"0.000000","485.500000","970.000000","8.000000","485.500000","485.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","99.000000","80.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","31.000000","93.000000","72.000000","89.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747822.000000",,,,, +"2425.000000","52.390000","2425.000000","52.390000","2425.000000","52.390000","749.000000","0.000000",,,,,,,,,,,,"21.000000","587.500000","1147.000000","12.000000","587.500000","587.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2069908.000000","0.000000","2092704.000000","129468.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","36.000000","99.000000","84.000000","97.000000","120.000000","108.000000","0.000000","0.000000","0.000000","33.000000","95.000000","77.000000","92.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747842.000000",,,,, +"2267.000000","38.650000","2267.000000","38.650000","2267.000000","38.650000","924.000000","0.000000",,,,,,,,,,,,"0.000000","835.000000","1667.000000","10.000000","835.000000","835.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2069348.000000","0.000000","2092704.000000","129468.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","38.000000","94.000000","85.000000","97.000000","107.000000","108.000000","0.000000","0.000000","0.000000","35.000000","90.000000","79.000000","92.000000","106.000000","107.000000","160.000000","6000.000000","0.000000","747862.000000",,,,, +"2604.000000","40.230000","2604.000000","40.230000","2604.000000","40.230000","543.000000","0.000000",,,,,,,,,,,,"0.000000","486.500000","971.000000","7.000000","486.500000","486.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068932.000000","0.000000","2092704.000000","129468.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","39.000000","93.000000","87.000000","97.000000","104.000000","108.000000","0.000000","0.000000","0.000000","36.000000","89.000000","82.000000","93.000000","104.000000","107.000000","160.000000","6000.000000","0.000000","747882.000000",,,,, +"2655.000000","40.475000","2655.000000","40.475000","2655.000000","40.475000","919.000000","0.000000",,,,,,,,,,,,"0.000000","1322.000000","2643.000000","36.000000","1322.000000","1322.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068800.000000","0.000000","2092704.000000","129468.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","95.000000","91.000000","102.000000","113.000000","112.000000","0.000000","0.000000","0.000000","39.000000","93.000000","87.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747902.000000",,,,, +"2639.000000","37.895000","2639.000000","37.895000","2639.000000","37.895000","449.000000","0.000000",,,,,,,,,,,,"1.000000","498.000000","993.000000","7.000000","498.000000","498.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068512.000000","0.000000","2092704.000000","129468.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","44.000000","99.000000","95.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","40.000000","97.000000","90.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747922.000000",,,,, +"2473.000000","37.115000","2473.000000","37.115000","2473.000000","37.115000","940.000000","0.000000",,,,,,,,,,,,"186.000000","5576.000000","10947.000000","30.000000","5576.000000","5576.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068608.000000","0.000000","2092704.000000","129468.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","45.000000","100.000000","96.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","42.000000","98.000000","92.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747942.000000",,,,, +"2583.000000","37.635000","2583.000000","37.635000","2583.000000","37.635000","556.000000","0.000000",,,,,,,,,,,,"1.000000","255.000000","497.000000","3.000000","255.000000","255.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068496.000000","0.000000","2092704.000000","129468.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","48.000000","99.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","45.000000","97.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747962.000000",,,,, +"2270.000000","36.165000","2270.000000","36.165000","2270.000000","36.165000","770.000000","0.000000",,,,,,,,,,,,"61.000000","415.500000","763.000000","7.000000","415.500000","415.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067892.000000","0.000000","2092704.000000","129468.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","49.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","46.000000","93.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747982.000000",,,,, +"2497.000000","37.230000","2497.000000","37.230000","2497.000000","37.230000","1118.000000","0.000000",,,,,,,,,,,,"32.000000","198.500000","360.000000","5.000000","198.500000","198.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067420.000000","0.000000","2092704.000000","129468.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","51.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","48.000000","93.000000","93.000000","102.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","748002.000000",,,,, +"2008.000000","34.930000","2008.000000","34.930000","2008.000000","34.930000","1895.000000","0.000000",,,,,,,,,,,,"16.000000","136.000000","240.000000","3.000000","136.000000","136.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067244.000000","0.000000","2092704.000000","129468.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","53.000000","92.000000","97.000000","105.000000","109.000000","112.000000","0.000000","0.000000","0.000000","50.000000","85.000000","92.000000","102.000000","102.000000","110.000000","160.000000","6000.000000","0.000000","748022.000000",,,,, +"2417.000000","34.355000","2417.000000","34.355000","2417.000000","34.355000","971.000000","0.000000",,,,,,,,,,,,"582.000000","2388.000000","4178.000000","19.000000","2388.000000","2388.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2067144.000000","0.000000","2092704.000000","129468.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","55.000000","94.000000","97.000000","106.000000","115.000000","112.000000","0.000000","0.000000","0.000000","51.000000","86.000000","92.000000","103.000000","105.000000","110.000000","160.000000","6000.000000","0.000000","748042.000000",,,,, +"5654.000000","49.570000","5654.000000","49.570000","5654.000000","49.570000","879.000000","0.000000",,,,,,,,,,,,"12.000000","413.000000","805.000000","7.000000","413.000000","413.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2072016.000000","0.000000","2092704.000000","129468.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","58.000000","117.000000","101.000000","106.000000","339.000000","113.000000","0.000000","0.000000","0.000000","54.000000","105.000000","96.000000","104.000000","291.000000","111.000000","160.000000","6000.000000","0.000000","748062.000000",,,,, +"2422.000000","34.875000","2422.000000","34.875000","2422.000000","34.875000","1433.000000","0.000000",,,,,,,,,,,,"8.000000","714.000000","1416.000000","13.000000","714.000000","714.000000",,,,,,,,,,,"943716.000000","985660.000000","0.000000","0.000000","2071892.000000","0.000000","2092704.000000","129468.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","63.000000","150.000000","107.000000","107.000000","400.000000","113.000000","0.000000","0.000000","0.000000","58.000000","130.000000","100.000000","105.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748082.000000",,,,, +"2617.000000","45.290000","2617.000000","45.290000","2617.000000","45.290000","985.000000","0.000000",,,,,,,,,,,,"720.000000","2480.000000","4166.000000","17.000000","2480.000000","2480.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2072116.000000","0.000000","2092704.000000","129468.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","0.000000","0.000000",,,,,,"2.000000","72.000000",,,,,,,,,,,"0.000000","65.000000","152.000000","107.000000","108.000000","400.000000","112.000000","0.000000","0.000000","0.000000","60.000000","133.000000","100.000000","105.000000","309.000000","110.000000","160.000000","6000.000000","0.000000","748102.000000",,,,, +"4310.000000","53.250000","4310.000000","53.250000","4310.000000","53.250000","1219.000000","0.000000",,,,,,,,,,,,"324.000000","3148.500000","5945.000000","12.000000","3148.500000","3148.500000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071856.000000","0.000000","2092704.000000","129468.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","0.000000","0.000000",,,,,,"0.000000","26.000000",,,,,,,,,,,"0.000000","68.000000","154.000000","112.000000","108.000000","400.000000","113.000000","0.000000","0.000000","0.000000","62.000000","132.000000","103.000000","106.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748122.000000",,,,, +"3058.000000","47.365000","3058.000000","47.365000","3058.000000","47.365000","710.000000","0.000000",,,,,,,,,,,,"280.000000","2332.000000","4356.000000","10.000000","2332.000000","2332.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","72.000000","156.000000","118.000000","109.000000","378.000000","179.000000","0.000000","0.000000","0.000000","65.000000","124.000000","106.000000","107.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748142.000000",,,,, +"2509.000000","44.785000","2509.000000","44.785000","2509.000000","44.785000","891.000000","0.000000",,,,,,,,,,,,"180.000000","1414.500000","2644.000000","15.000000","1414.500000","1414.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","75.000000","157.000000","120.000000","111.000000","378.000000","179.000000","0.000000","0.000000","0.000000","67.000000","124.000000","107.000000","108.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748162.000000",,,,, +"2849.000000","46.385000","2849.000000","46.385000","2849.000000","46.385000","603.000000","0.000000",,,,,,,,,,,,"0.000000","88.000000","176.000000","10.000000","88.000000","88.000000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","135.000000","121.000000","111.000000","328.000000","179.000000","0.000000","0.000000","0.000000","69.000000","108.000000","107.000000","109.000000","166.000000","149.000000","160.000000","6000.000000","0.000000","748182.000000",,,,, +"2471.000000","44.605000","2471.000000","44.605000","2471.000000","44.605000","613.000000","0.000000",,,,,,,,,,,,"371.000000","2221.500000","4028.000000","14.000000","2221.500000","2221.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071524.000000","0.000000","2092704.000000","129468.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","44.000000",,,,,,,,,,,"0.000000","79.000000","106.000000","121.000000","111.000000","115.000000","179.000000","0.000000","0.000000","0.000000","71.000000","99.000000","107.000000","109.000000","115.000000","149.000000","160.000000","6000.000000","0.000000","748202.000000",,,,, +"2306.000000","39.330000","2306.000000","39.330000","2306.000000","39.330000","813.000000","0.000000",,,,,,,,,,,,"19.000000","576.000000","1120.000000","15.000000","576.000000","576.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","80.000000","99.000000","120.000000","111.000000","112.000000","179.000000","0.000000","0.000000","0.000000","73.000000","94.000000","106.000000","109.000000","111.000000","149.000000","160.000000","6000.000000","0.000000","748222.000000",,,,, +"2854.000000","41.905000","2854.000000","41.905000","2854.000000","41.905000","866.000000","0.000000",,,,,,,,,,,,"489.000000","1535.000000","2563.000000","10.000000","1535.000000","1535.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","17.000000",,,,,,,,,,,"0.000000","82.000000","93.000000","119.000000","111.000000","111.000000","179.000000","0.000000","0.000000","0.000000","74.000000","88.000000","105.000000","109.000000","108.000000","149.000000","160.000000","6000.000000","0.000000","748242.000000",,,,, +"2556.000000","40.505000","2556.000000","40.505000","2556.000000","40.505000","581.000000","0.000000",,,,,,,,,,,,"42.000000","1013.000000","1968.000000","12.000000","1013.000000","1013.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071200.000000","0.000000","2092704.000000","129468.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","15.000000",,,,,,,,,,,"0.000000","85.000000","102.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","77.000000","95.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748262.000000",,,,, +"2257.000000","45.105000","2257.000000","45.105000","2257.000000","45.105000","823.000000","0.000000",,,,,,,,,,,,"269.000000","1074.500000","1867.000000","19.000000","1074.500000","1074.500000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071196.000000","0.000000","2092704.000000","129468.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","87.000000","104.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","78.000000","97.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748282.000000",,,,, +"1956.000000","43.690000","1956.000000","43.690000","1956.000000","43.690000","909.000000","0.000000",,,,,,,,,,,,"40.000000","400.000000","727.000000","5.000000","400.000000","400.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071176.000000","0.000000","2092704.000000","129468.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","0.000000","0.000000",,,,,,"0.000000","31.000000",,,,,,,,,,,"0.000000","88.000000","103.000000","120.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","80.000000","95.000000","106.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748302.000000",,,,, +"2576.000000","46.600000","2576.000000","46.600000","2576.000000","46.600000","791.000000","0.000000",,,,,,,,,,,,"604.000000","2436.000000","4261.000000","30.000000","2436.000000","2436.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","90.000000","94.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","82.000000","86.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748322.000000",,,,, +"2453.000000","47.025000","2453.000000","47.025000","2453.000000","47.025000","808.000000","0.000000",,,,,,,,,,,,"10.000000","549.500000","1087.000000","5.000000","549.500000","549.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071364.000000","0.000000","2092704.000000","129468.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","92.000000","93.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","84.000000","84.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748342.000000",,,,, +"2445.000000","46.985000","2445.000000","46.985000","2445.000000","46.985000","1018.000000","0.000000",,,,,,,,,,,,"0.000000","505.500000","1010.000000","23.000000","505.500000","505.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071232.000000","0.000000","2092704.000000","129468.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","94.000000","96.000000","116.000000","112.000000","115.000000","179.000000","0.000000","0.000000","0.000000","85.000000","90.000000","103.000000","110.000000","112.000000","149.000000","160.000000","6000.000000","0.000000","748362.000000",,,,, +"2560.000000","47.525000","2560.000000","47.525000","2560.000000","47.525000","866.000000","0.000000",,,,,,,,,,,,"0.000000","492.500000","984.000000","19.000000","492.500000","492.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071168.000000","0.000000","2092704.000000","129468.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","96.000000","99.000000","111.000000","112.000000","112.000000","115.000000","0.000000","0.000000","0.000000","88.000000","93.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748382.000000",,,,, +"2655.000000","42.975000","2655.000000","42.975000","2655.000000","42.975000","977.000000","0.000000",,,,,,,,,,,,"995.000000","850.500000","701.000000","44.000000","850.500000","850.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071416.000000","0.000000","2092704.000000","129468.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","98.000000","102.000000","111.000000","112.000000","117.000000","117.000000","0.000000","0.000000","0.000000","89.000000","96.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748402.000000",,,,, +"3104.000000","45.085000","3104.000000","45.085000","3104.000000","45.085000","700.000000","0.000000",,,,,,,,,,,,"1551.000000","1248.500000","943.000000","3.000000","1248.500000","1248.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071496.000000","0.000000","2092704.000000","129468.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","100.000000","111.000000","108.000000","113.000000","155.000000","117.000000","0.000000","0.000000","0.000000","91.000000","105.000000","97.000000","111.000000","155.000000","115.000000","160.000000","6000.000000","0.000000","748422.000000",,,,, +"2998.000000","44.585000","2998.000000","44.585000","2998.000000","44.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","465.000000","929.000000","46.000000","465.000000","465.000000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","114.000000","103.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","93.000000","108.000000","96.000000","112.000000","155.000000","114.000000","160.000000","6000.000000","0.000000","748442.000000",,,,, +"2463.000000","41.070000","2463.000000","41.070000","2463.000000","41.070000","661.000000","0.000000",,,,,,,,,,,,"0.000000","530.500000","1059.000000","28.000000","530.500000","530.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071488.000000","0.000000","2092704.000000","129468.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","112.000000","102.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","94.000000","108.000000","96.000000","112.000000","155.000000","113.000000","160.000000","6000.000000","0.000000","748462.000000",,,,, +"2685.000000","42.110000","2685.000000","42.110000","2685.000000","42.110000","779.000000","0.000000",,,,,,,,,,,,"2.000000","341.500000","680.000000","17.000000","341.500000","341.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071904.000000","0.000000","2092704.000000","129468.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","105.000000","102.000000","114.000000","116.000000","115.000000","0.000000","0.000000","0.000000","95.000000","99.000000","96.000000","112.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","748482.000000",,,,, +"2621.000000","41.815000","2621.000000","41.815000","2621.000000","41.815000","751.000000","0.000000",,,,,,,,,,,,"6.000000","568.500000","1130.000000","26.000000","568.500000","568.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071792.000000","0.000000","2092704.000000","129468.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","102.000000","102.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","97.000000","98.000000","96.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748502.000000",,,,, +"2537.000000","39.420000","2537.000000","39.420000","2537.000000","39.420000","705.000000","0.000000",,,,,,,,,,,,"1.000000","738.000000","1474.000000","30.000000","738.000000","738.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071424.000000","0.000000","2092704.000000","129468.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","104.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","99.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748522.000000",,,,, +"2528.000000","39.375000","2528.000000","39.375000","2528.000000","39.375000","649.000000","0.000000",,,,,,,,,,,,"0.000000","503.500000","1006.000000","41.000000","503.500000","503.500000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","106.000000","102.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","96.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748542.000000",,,,, +"2579.000000","39.615000","2579.000000","39.615000","2579.000000","39.615000","639.000000","0.000000",,,,,,,,,,,,"25.000000","577.000000","1127.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748562.000000",,,,, +"2581.000000","37.625000","2581.000000","37.625000","2581.000000","37.625000","810.000000","0.000000",,,,,,,,,,,,"29.000000","7316.000000","14600.000000","63.000000","7316.000000","7316.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071388.000000","0.000000","2092704.000000","129468.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748582.000000",,,,, +"2340.000000","36.490000","2340.000000","36.490000","2340.000000","36.490000","912.000000","0.000000",,,,,,,,,,,,"725.000000","6886.000000","13027.000000","12.000000","6886.000000","6886.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","97.000000","98.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748602.000000",,,,, +"2801.000000","38.655000","2801.000000","38.655000","2801.000000","38.655000","668.000000","0.000000",,,,,,,,,,,,"129.000000","712.500000","1295.000000","10.000000","712.500000","712.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","96.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748622.000000",,,,, +"2475.000000","41.125000","2475.000000","41.125000","2475.000000","41.125000","456.000000","0.000000",,,,,,,,,,,,"941.000000","678.000000","414.000000","18.000000","678.000000","678.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070480.000000","0.000000","2092704.000000","129468.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","100.000000","104.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","94.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748642.000000",,,,, +"2359.000000","40.580000","2359.000000","40.580000","2359.000000","40.580000","1076.000000","0.000000",,,,,,,,,,,,"1582.000000","1147.000000","711.000000","7.000000","1147.000000","1147.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070120.000000","0.000000","2092704.000000","129468.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","104.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","99.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748662.000000",,,,, +"2142.000000","39.560000","2142.000000","39.560000","2142.000000","39.560000","1022.000000","0.000000",,,,,,,,,,,,"1611.000000","1347.000000","1083.000000","38.000000","1347.000000","1347.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","103.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","88.000000","97.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748682.000000",,,,, +"2311.000000","39.355000","2311.000000","39.355000","2311.000000","39.355000","1645.000000","0.000000",,,,,,,,,,,,"1601.000000","1340.000000","1079.000000","29.000000","1340.000000","1340.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069472.000000","0.000000","2092704.000000","129468.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","97.000000","103.000000","114.000000","116.000000","114.000000","0.000000","0.000000","0.000000","98.000000","85.000000","96.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748702.000000",,,,, +"1921.000000","37.520000","1921.000000","37.520000","1921.000000","37.520000","724.000000","0.000000",,,,,,,,,,,,"2948.000000","1837.000000","726.000000","9.000000","1837.000000","1837.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069256.000000","0.000000","2092704.000000","129468.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","90.000000","100.000000","114.000000","109.000000","113.000000","0.000000","0.000000","0.000000","98.000000","77.000000","93.000000","112.000000","99.000000","112.000000","160.000000","6000.000000","0.000000","748722.000000",,,,, +"2511.000000","40.295000","2511.000000","40.295000","2511.000000","40.295000","529.000000","0.000000",,,,,,,,,,,,"1831.000000","1130.500000","429.000000","16.000000","1130.500000","1130.500000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2068820.000000","0.000000","2092704.000000","129468.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","84.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748742.000000",,,,, +"2422.000000","42.880000","2422.000000","42.880000","2422.000000","42.880000","521.000000","0.000000",,,,,,,,,,,,"1787.000000","1115.500000","444.000000","51.000000","1115.500000","1115.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","108.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748762.000000",,,,, +"2283.000000","42.225000","2283.000000","42.225000","2283.000000","42.225000","760.000000","0.000000",,,,,,,,,,,,"576.000000","352.500000","128.000000","3.000000","352.500000","352.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068948.000000","0.000000","2092704.000000","129468.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","98.000000","98.000000","114.000000","105.000000","110.000000","0.000000","0.000000","0.000000","98.000000","89.000000","91.000000","112.000000","100.000000","106.000000","160.000000","6000.000000","0.000000","748782.000000",,,,, +"2151.000000","41.605000","2151.000000","41.605000","2151.000000","41.605000","719.000000","0.000000",,,,,,,,,,,,"236.000000","248.500000","261.000000","2.000000","248.500000","248.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068892.000000","0.000000","2092704.000000","129468.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","98.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","90.000000","112.000000","100.000000","105.000000","160.000000","6000.000000","0.000000","748802.000000",,,,, +"2417.000000","46.355000","2417.000000","46.355000","2417.000000","46.355000","523.000000","0.000000",,,,,,,,,,,,"382.000000","620.500000","854.000000","8.000000","620.500000","620.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068688.000000","0.000000","2092704.000000","129468.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","106.000000","91.000000","97.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","97.000000","84.000000","89.000000","112.000000","107.000000","105.000000","160.000000","6000.000000","0.000000","748822.000000",,,,, +"2886.000000","48.560000","2886.000000","48.560000","2886.000000","48.560000","848.000000","0.000000",,,,,,,,,,,,"134.000000","508.500000","878.000000","5.000000","508.500000","508.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068400.000000","0.000000","2092704.000000","129468.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","97.000000","114.000000","111.000000","110.000000","0.000000","0.000000","0.000000","97.000000","90.000000","90.000000","112.000000","108.000000","107.000000","160.000000","6000.000000","0.000000","748842.000000",,,,, +"4560.000000","56.425000","4560.000000","56.425000","4560.000000","56.425000","998.000000","0.000000",,,,,,,,,,,,"245.000000","853.500000","1459.000000","4.000000","853.500000","853.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068544.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","109.000000","130.000000","103.000000","115.000000","197.000000","116.000000","0.000000","0.000000","0.000000","99.000000","120.000000","95.000000","113.000000","189.000000","112.000000","160.000000","6000.000000","0.000000","748862.000000",,,,, +"4207.000000","47.765000","4207.000000","47.765000","4207.000000","47.765000","984.000000","0.000000",,,,,,,,,,,,"0.000000","675.000000","1349.000000","17.000000","675.000000","675.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068684.000000","0.000000","2092704.000000","129468.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","157.000000","108.000000","117.000000","200.000000","172.000000","0.000000","0.000000","0.000000","101.000000","143.000000","99.000000","115.000000","189.000000","154.000000","160.000000","6000.000000","0.000000","748882.000000",,,,, +"4612.000000","49.670000","4612.000000","49.670000","4612.000000","49.670000","2901.000000","0.000000",,,,,,,,,,,,"6.000000","650.000000","1292.000000","10.000000","650.000000","650.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068336.000000","0.000000","2092704.000000","129468.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","112.000000","183.000000","114.000000","163.000000","203.000000","186.000000","0.000000","0.000000","0.000000","102.000000","167.000000","104.000000","149.000000","196.000000","175.000000","160.000000","6000.000000","0.000000","748902.000000",,,,, +"4527.000000","49.265000","4527.000000","49.265000","4527.000000","49.265000","908.000000","0.000000",,,,,,,,,,,,"9.000000","573.000000","1135.000000","19.000000","573.000000","573.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068024.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","183.000000","120.000000","179.000000","203.000000","189.000000","0.000000","0.000000","0.000000","105.000000","166.000000","109.000000","155.000000","196.000000","178.000000","160.000000","6000.000000","0.000000","748922.000000",,,,, +"4990.000000","50.945000","4990.000000","50.945000","4990.000000","50.945000","767.000000","0.000000",,,,,,,,,,,,"236.000000","1692.500000","3147.000000","16.000000","1692.500000","1692.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068476.000000","0.000000","2092704.000000","129468.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","125.000000","180.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","175.000000","115.000000","166.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748942.000000",,,,, +"4418.000000","48.260000","4418.000000","48.260000","4418.000000","48.260000","910.000000","0.000000",,,,,,,,,,,,"61.000000","1808.000000","3555.000000","44.000000","1808.000000","1808.000000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","186.000000","130.000000","185.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","173.000000","119.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748962.000000",,,,, +"4310.000000","47.750000","4310.000000","47.750000","4310.000000","47.750000","1200.000000","0.000000",,,,,,,,,,,,"162.000000","666.500000","1170.000000","29.000000","666.500000","666.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","138.000000","186.000000","211.000000","195.000000","0.000000","0.000000","0.000000","107.000000","172.000000","126.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748982.000000",,,,, +"4985.000000","53.420000","4985.000000","53.420000","4985.000000","53.420000","916.000000","0.000000",,,,,,,,,,,,"0.000000","590.000000","1178.000000","18.000000","590.000000","590.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2068068.000000","0.000000","2092704.000000","129468.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","119.000000","188.000000","144.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","171.000000","132.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749002.000000",,,,, +"4211.000000","49.785000","4211.000000","49.785000","4211.000000","49.785000","2143.000000","0.000000",,,,,,,,,,,,"0.000000","490.000000","980.000000","27.000000","490.000000","490.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067656.000000","0.000000","2092704.000000","129468.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","189.000000","150.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","170.000000","138.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749022.000000",,,,, +"4596.000000","51.590000","4596.000000","51.590000","4596.000000","51.590000","1290.000000","0.000000",,,,,,,,,,,,"1.000000","616.500000","1231.000000","19.000000","616.500000","616.500000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067452.000000","0.000000","2092704.000000","129468.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","187.000000","156.000000","187.000000","209.000000","200.000000","0.000000","0.000000","0.000000","111.000000","174.000000","144.000000","175.000000","205.000000","190.000000","160.000000","6000.000000","0.000000","749042.000000",,,,, +"4377.000000","48.065000","4377.000000","48.065000","4377.000000","48.065000","962.000000","0.000000",,,,,,,,,,,,"0.000000","644.500000","1288.000000","25.000000","644.500000","644.500000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2067056.000000","0.000000","2092704.000000","129468.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","181.000000","161.000000","189.000000","202.000000","200.000000","0.000000","0.000000","0.000000","112.000000","165.000000","148.000000","175.000000","201.000000","190.000000","160.000000","6000.000000","0.000000","749062.000000",,,,, +"5237.000000","52.105000","5237.000000","52.105000","5237.000000","52.105000","943.000000","0.000000",,,,,,,,,,,,"2.000000","615.000000","1227.000000","21.000000","615.000000","615.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066912.000000","0.000000","2092704.000000","129468.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","123.000000","185.000000","167.000000","191.000000","213.000000","202.000000","0.000000","0.000000","0.000000","114.000000","171.000000","154.000000","177.000000","213.000000","196.000000","160.000000","6000.000000","0.000000","749082.000000",,,,, +"5077.000000","51.355000","5077.000000","51.355000","5077.000000","51.355000","786.000000","0.000000",,,,,,,,,,,,"1.000000","651.000000","1301.000000","21.000000","651.000000","651.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066876.000000","0.000000","2092704.000000","129468.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","194.000000","176.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","116.000000","183.000000","163.000000","184.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749102.000000",,,,, +"4878.000000","53.920000","4878.000000","53.920000","4878.000000","53.920000","558.000000","0.000000",,,,,,,,,,,,"1.000000","665.000000","1328.000000","23.000000","665.000000","665.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2067136.000000","0.000000","2092704.000000","129468.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","127.000000","198.000000","182.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","118.000000","190.000000","169.000000","187.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749122.000000",,,,, +"5149.000000","55.190000","5149.000000","55.190000","5149.000000","55.190000","679.000000","0.000000",,,,,,,,,,,,"6.000000","495.500000","985.000000","19.000000","495.500000","495.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069248.000000","0.000000","2092704.000000","129468.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","196.000000","188.000000","196.000000","208.000000","204.000000","0.000000","0.000000","0.000000","120.000000","189.000000","174.000000","188.000000","205.000000","203.000000","160.000000","6000.000000","0.000000","749142.000000",,,,, +"4683.000000","53.005000","4683.000000","53.005000","4683.000000","53.005000","881.000000","0.000000",,,,,,,,,,,,"5.000000","754.500000","1504.000000","66.000000","754.500000","754.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069080.000000","0.000000","2092704.000000","129468.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","193.000000","189.000000","198.000000","208.000000","208.000000","0.000000","0.000000","0.000000","122.000000","183.000000","175.000000","188.000000","200.000000","203.000000","160.000000","6000.000000","0.000000","749162.000000",,,,, +"5484.000000","59.765000","5484.000000","59.765000","5484.000000","59.765000","1039.000000","0.000000",,,,,,,,,,,,"5.000000","543.000000","1081.000000","17.000000","543.000000","543.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068884.000000","0.000000","2092704.000000","129468.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","134.000000","198.000000","191.000000","200.000000","213.000000","208.000000","0.000000","0.000000","0.000000","124.000000","190.000000","178.000000","190.000000","213.000000","205.000000","160.000000","6000.000000","0.000000","749182.000000",,,,, +"4817.000000","56.635000","4817.000000","56.635000","4817.000000","56.635000","898.000000","0.000000",,,,,,,,,,,,"2.000000","877.500000","1753.000000","31.000000","877.500000","877.500000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","201.000000","191.000000","200.000000","218.000000","209.000000","0.000000","0.000000","0.000000","127.000000","192.000000","179.000000","192.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749202.000000",,,,, +"4453.000000","54.920000","4453.000000","54.920000","4453.000000","54.920000","1616.000000","0.000000",,,,,,,,,,,,"1.000000","576.000000","1151.000000","26.000000","576.000000","576.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","138.000000","198.000000","192.000000","202.000000","218.000000","209.000000","0.000000","0.000000","0.000000","129.000000","184.000000","179.000000","193.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749222.000000",,,,, +"4907.000000","52.055000","4907.000000","52.055000","4907.000000","52.055000","1009.000000","0.000000",,,,,,,,,,,,"2.000000","632.000000","1262.000000","27.000000","632.000000","632.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068460.000000","0.000000","2092704.000000","129468.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","194.000000","192.000000","202.000000","218.000000","208.000000","0.000000","0.000000","0.000000","131.000000","178.000000","179.000000","193.000000","218.000000","205.000000","160.000000","6000.000000","0.000000","749242.000000",,,,, +"5263.000000","53.730000","5263.000000","53.730000","5263.000000","53.730000","434.000000","0.000000",,,,,,,,,,,,"2.000000","468.000000","934.000000","48.000000","468.000000","468.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068312.000000","0.000000","2092704.000000","129468.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","193.000000","193.000000","202.000000","205.000000","208.000000","0.000000","0.000000","0.000000","133.000000","178.000000","180.000000","193.000000","200.000000","205.000000","160.000000","6000.000000","0.000000","749262.000000",,,,, +"4974.000000","52.370000","4974.000000","52.370000","4974.000000","52.370000","940.000000","0.000000",,,,,,,,,,,,"4.000000","607.000000","1209.000000","22.000000","607.000000","607.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068216.000000","0.000000","2092704.000000","129468.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","145.000000","199.000000","194.000000","203.000000","216.000000","209.000000","0.000000","0.000000","0.000000","135.000000","190.000000","183.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749282.000000",,,,, +"4725.000000","52.200000","4725.000000","52.200000","4725.000000","52.200000","1142.000000","0.000000",,,,,,,,,,,,"2.000000","549.000000","1095.000000","21.000000","549.000000","549.000000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067956.000000","0.000000","2092704.000000","129468.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","147.000000","196.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","188.000000","182.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749302.000000",,,,, +"4487.000000","51.080000","4487.000000","51.080000","4487.000000","51.080000","1028.000000","0.000000",,,,,,,,,,,,"4.000000","504.500000","1004.000000","18.000000","504.500000","504.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067856.000000","0.000000","2092704.000000","129468.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","191.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","177.000000","181.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749322.000000",,,,, +"4644.000000","51.820000","4644.000000","51.820000","4644.000000","51.820000","1226.000000","0.000000",,,,,,,,,,,,"3.000000","668.500000","1334.000000","27.000000","668.500000","668.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067876.000000","0.000000","2092704.000000","129468.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","191.000000","195.000000","204.000000","210.000000","210.000000","0.000000","0.000000","0.000000","139.000000","173.000000","183.000000","200.000000","207.000000","207.000000","160.000000","6000.000000","0.000000","749342.000000",,,,, +"5158.000000","52.735000","5158.000000","52.735000","5158.000000","52.735000","972.000000","0.000000",,,,,,,,,,,,"10.000000","671.000000","1331.000000","22.000000","671.000000","671.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067952.000000","0.000000","2092704.000000","129468.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","198.000000","197.000000","205.000000","212.000000","212.000000","0.000000","0.000000","0.000000","141.000000","178.000000","185.000000","201.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","749362.000000",,,,, +"5152.000000","52.705000","5152.000000","52.705000","5152.000000","52.705000","1007.000000","0.000000",,,,,,,,,,,,"15.000000","600.000000","1184.000000","20.000000","600.000000","600.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","203.000000","197.000000","205.000000","212.000000","210.000000","0.000000","0.000000","0.000000","143.000000","188.000000","185.000000","201.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","749382.000000",,,,, +"4716.000000","50.660000","4716.000000","50.660000","4716.000000","50.660000","1169.000000","0.000000",,,,,,,,,,,,"7.000000","576.500000","1145.000000","23.000000","576.500000","576.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2068060.000000","0.000000","2092704.000000","129468.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","197.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","145.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749402.000000",,,,, +"5008.000000","51.530000","5008.000000","51.530000","5008.000000","51.530000","1149.000000","0.000000",,,,,,,,,,,,"5.000000","551.500000","1097.000000","14.000000","551.500000","551.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071144.000000","0.000000","2092704.000000","129468.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","196.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","147.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749422.000000",,,,, +"4624.000000","49.725000","4624.000000","49.725000","4624.000000","49.725000","1052.000000","0.000000",,,,,,,,,,,,"21.000000","2230.500000","4439.000000","44.000000","2230.500000","2230.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071148.000000","0.000000","2092704.000000","129468.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","193.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","149.000000","182.000000","183.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749442.000000",,,,, +"4676.000000","50.470000","4676.000000","50.470000","4676.000000","50.470000","743.000000","0.000000",,,,,,,,,,,,"20.000000","4493.000000","8964.000000","76.000000","4493.000000","4493.000000",,,,,,,,,,,"1132460.000000","1195376.000000","0.000000","0.000000","2071048.000000","0.000000","2092704.000000","129468.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","190.000000","195.000000","206.000000","219.000000","213.000000","0.000000","0.000000","0.000000","151.000000","178.000000","183.000000","203.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749462.000000",,,,, +"5090.000000","58.915000","5090.000000","58.915000","5090.000000","58.915000","1147.000000","0.000000",,,,,,,,,,,,"45.000000","651.500000","1257.000000","26.000000","651.500000","651.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","191.000000","195.000000","208.000000","219.000000","213.000000","0.000000","0.000000","0.000000","153.000000","179.000000","182.000000","205.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749482.000000",,,,, +"4654.000000","56.865000","4654.000000","56.865000","4654.000000","56.865000","1000.000000","0.000000",,,,,,,,,,,,"1523.000000","1798.500000","2072.000000","18.000000","1798.500000","1798.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","191.000000","194.000000","208.000000","219.000000","212.000000","0.000000","0.000000","0.000000","155.000000","182.000000","181.000000","205.000000","219.000000","208.000000","160.000000","6000.000000","0.000000","749502.000000",,,,, +"3573.000000","51.785000","3573.000000","51.785000","3573.000000","51.785000","1791.000000","0.000000",,,,,,,,,,,,"2660.000000","15507.000000","28354.000000","37.000000","15507.000000","15507.000000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","184.000000","192.000000","208.000000","217.000000","212.000000","0.000000","0.000000","0.000000","156.000000","168.000000","179.000000","205.000000","217.000000","208.000000","160.000000","6000.000000","0.000000","749522.000000",,,,, +"4112.000000","58.820000","4112.000000","58.820000","4112.000000","58.820000","914.000000","0.000000",,,,,,,,,,,,"15.000000","465.000000","915.000000","31.000000","465.000000","465.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","177.000000","191.000000","208.000000","205.000000","212.000000","0.000000","0.000000","0.000000","157.000000","157.000000","178.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749542.000000",,,,, +"3809.000000","57.395000","3809.000000","57.395000","3809.000000","57.395000","1231.000000","0.000000",,,,,,,,,,,,"10.000000","397.500000","784.000000","11.000000","397.500000","397.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","174.000000","190.000000","208.000000","204.000000","212.000000","0.000000","0.000000","0.000000","158.000000","144.000000","175.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749562.000000",,,,, +"4371.000000","60.040000","4371.000000","60.040000","4371.000000","60.040000","1233.000000","0.000000",,,,,,,,,,,,"3.000000","650.000000","1297.000000","38.000000","650.000000","650.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","184.000000","189.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","160.000000","154.000000","172.000000","205.000000","200.000000","207.000000","160.000000","6000.000000","0.000000","749582.000000",,,,, +"3595.000000","56.390000","3595.000000","56.390000","3595.000000","56.390000","817.000000","0.000000",,,,,,,,,,,,"5.000000","303.500000","601.000000","19.000000","303.500000","303.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071396.000000","0.000000","2092704.000000","129468.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","179.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","161.000000","146.000000","170.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749602.000000",,,,, +"4116.000000","62.840000","4116.000000","62.840000","4116.000000","62.840000","589.000000","0.000000",,,,,,,,,,,,"2.000000","356.500000","710.000000","17.000000","356.500000","356.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071356.000000","0.000000","2092704.000000","129468.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","180.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","163.000000","150.000000","169.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749622.000000",,,,, +"3382.000000","59.385000","3382.000000","59.385000","3382.000000","59.385000","655.000000","0.000000",,,,,,,,,,,,"5.000000","309.500000","614.000000","32.000000","309.500000","309.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","171.000000","185.000000","208.000000","191.000000","209.000000","0.000000","0.000000","0.000000","164.000000","138.000000","165.000000","205.000000","162.000000","205.000000","160.000000","6000.000000","0.000000","749642.000000",,,,, +"3543.000000","60.145000","3543.000000","60.145000","3543.000000","60.145000","605.000000","0.000000",,,,,,,,,,,,"7.000000","539.500000","1072.000000","27.000000","539.500000","539.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","174.000000","183.000000","208.000000","192.000000","206.000000","0.000000","0.000000","0.000000","165.000000","139.000000","162.000000","205.000000","162.000000","200.000000","160.000000","6000.000000","0.000000","749662.000000",,,,, +"3628.000000","59.045000","3628.000000","59.045000","3628.000000","59.045000","509.000000","0.000000",,,,,,,,,,,,"925.000000","2231.500000","3537.000000","36.000000","2231.500000","2231.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071276.000000","0.000000","2092704.000000","129468.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","182.000000","208.000000","202.000000","206.000000","0.000000","0.000000","0.000000","166.000000","133.000000","158.000000","205.000000","151.000000","200.000000","160.000000","6000.000000","0.000000","749682.000000",,,,, +"3429.000000","58.110000","3429.000000","58.110000","3429.000000","58.110000","657.000000","0.000000",,,,,,,,,,,,"54.000000","511.000000","967.000000","17.000000","511.000000","511.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071500.000000","0.000000","2092704.000000","129468.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","180.000000","182.000000","208.000000","202.000000","205.000000","0.000000","0.000000","0.000000","167.000000","132.000000","154.000000","205.000000","152.000000","196.000000","160.000000","6000.000000","0.000000","749702.000000",,,,, +"3430.000000","58.110000","3430.000000","58.110000","3430.000000","58.110000","626.000000","0.000000",,,,,,,,,,,,"2.000000","397.000000","792.000000","17.000000","397.000000","397.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","177.000000","180.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","131.000000","151.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749722.000000",,,,, +"3539.000000","58.625000","3539.000000","58.625000","3539.000000","58.625000","716.000000","0.000000",,,,,,,,,,,,"5.000000","305.500000","606.000000","12.000000","305.500000","305.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","174.000000","178.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","128.000000","147.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749742.000000",,,,, +"4637.000000","63.785000","4637.000000","63.785000","4637.000000","63.785000","1277.000000","0.000000",,,,,,,,,,,,"6.000000","545.000000","1084.000000","31.000000","545.000000","545.000000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","176.000000","179.000000","208.000000","212.000000","204.000000","0.000000","0.000000","0.000000","169.000000","144.000000","147.000000","205.000000","199.000000","195.000000","160.000000","6000.000000","0.000000","749762.000000",,,,, +"5071.000000","65.825000","5071.000000","65.825000","5071.000000","65.825000","848.000000","0.000000",,,,,,,,,,,,"30.000000","1264.500000","2498.000000","42.000000","1264.500000","1264.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","186.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","162.000000","147.000000","205.000000","210.000000","195.000000","160.000000","6000.000000","0.000000","749782.000000",,,,, +"4446.000000","57.890000","4446.000000","57.890000","4446.000000","57.890000","2008.000000","0.000000",,,,,,,,,,,,"5.000000","449.500000","894.000000","21.000000","449.500000","449.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2071172.000000","0.000000","2092704.000000","129468.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","177.000000","146.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749802.000000",,,,, +"4419.000000","57.760000","4419.000000","57.760000","4419.000000","57.760000","646.000000","0.000000",,,,,,,,,,,,"3.000000","730.500000","1457.000000","30.000000","730.500000","730.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070804.000000","0.000000","2092704.000000","129468.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","181.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","173.000000","148.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749822.000000",,,,, +"4423.000000","57.780000","4423.000000","57.780000","4423.000000","57.780000","1051.000000","0.000000",,,,,,,,,,,,"5983.000000","4288.500000","2592.000000","11.000000","4288.500000","4288.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070584.000000","0.000000","2092704.000000","129468.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","191.000000","181.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","169.000000","171.000000","150.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749842.000000",,,,, +"4272.000000","56.575000","4272.000000","56.575000","4272.000000","56.575000","1508.000000","0.000000",,,,,,,,,,,,"3918.000000","4704.500000","5490.000000","12.000000","4704.500000","4704.500000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","182.000000","180.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","168.000000","165.000000","151.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749862.000000",,,,, +"4565.000000","57.945000","4565.000000","57.945000","4565.000000","57.945000","753.000000","0.000000",,,,,,,,,,,,"1649.000000","5228.000000","8806.000000","36.000000","5228.000000","5228.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071056.000000","0.000000","2092704.000000","129468.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","179.000000","180.000000","208.000000","206.000000","202.000000","0.000000","0.000000","0.000000","169.000000","166.000000","151.000000","205.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","749882.000000",,,,, +"3685.000000","53.810000","3685.000000","53.810000","3685.000000","53.810000","1607.000000","0.000000",,,,,,,,,,,,"4372.000000","7706.000000","11040.000000","23.000000","7706.000000","7706.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2070864.000000","0.000000","2092704.000000","129468.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","181.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","168.000000","155.000000","151.000000","205.000000","179.000000","184.000000","160.000000","6000.000000","0.000000","749902.000000",,,,, +"3936.000000","55.995000","3936.000000","55.995000","3936.000000","55.995000","1110.000000","0.000000",,,,,,,,,,,,"631.000000","3126.500000","5621.000000","30.000000","3126.500000","3126.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070924.000000","0.000000","2092704.000000","129468.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","180.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","167.000000","152.000000","151.000000","205.000000","175.000000","184.000000","160.000000","6000.000000","0.000000","749922.000000",,,,, +"4106.000000","56.795000","4106.000000","56.795000","4106.000000","56.795000","731.000000","0.000000",,,,,,,,,,,,"6712.000000","10478.500000","14244.000000","22.000000","10478.500000","10478.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070904.000000","0.000000","2092704.000000","129468.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","187.000000","171.000000","180.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","167.000000","149.000000","153.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749942.000000",,,,, +"3257.000000","52.805000","3257.000000","52.805000","3257.000000","52.805000","599.000000","0.000000",,,,,,,,,,,,"12746.000000","8306.500000","3866.000000","14.000000","8306.500000","8306.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","150.000000","176.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","166.000000","139.000000","151.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749962.000000",,,,, +"2970.000000","52.955000","2970.000000","52.955000","2970.000000","52.955000","819.000000","0.000000",,,,,,,,,,,,"12855.000000","10446.500000","8037.000000","17.000000","10446.500000","10446.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","184.000000","142.000000","174.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","165.000000","133.000000","151.000000","203.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749982.000000",,,,, +"3689.000000","56.330000","3689.000000","56.330000","3689.000000","56.330000","875.000000","0.000000",,,,,,,,,,,,"10992.000000","9034.000000","7076.000000","17.000000","9034.000000","9034.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","134.000000","171.000000","206.000000","177.000000","202.000000","0.000000","0.000000","0.000000","163.000000","122.000000","151.000000","201.000000","162.000000","187.000000","160.000000","6000.000000","0.000000","750002.000000",,,,, +"4569.000000","60.465000","4569.000000","60.465000","4569.000000","60.465000","1130.000000","0.000000",,,,,,,,,,,,"44.000000","7173.500000","14302.000000","30.000000","7173.500000","7173.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","183.000000","156.000000","172.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","163.000000","140.000000","153.000000","201.000000","173.000000","187.000000","160.000000","6000.000000","0.000000","750022.000000",,,,, +"4555.000000","61.900000","4555.000000","61.900000","4555.000000","61.900000","1350.000000","0.000000",,,,,,,,,,,,"493.000000","2970.500000","5444.000000","20.000000","2970.500000","2970.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070700.000000","0.000000","2092704.000000","129468.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","173.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","162.000000","154.000000","156.000000","201.000000","174.000000","187.000000","160.000000","6000.000000","0.000000","750042.000000",,,,, +"4588.000000","62.055000","4588.000000","62.055000","4588.000000","62.055000","1390.000000","0.000000",,,,,,,,,,,,"545.000000","7811.000000","15075.000000","23.000000","7811.000000","7811.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070744.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","173.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","171.000000","156.000000","201.000000","184.000000","184.000000","160.000000","6000.000000","0.000000","750062.000000",,,,, +"4749.000000","62.815000","4749.000000","62.815000","4749.000000","62.815000","1013.000000","0.000000",,,,,,,,,,,,"486.000000","14987.500000","29488.000000","36.000000","14987.500000","14987.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071120.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","172.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","173.000000","155.000000","200.000000","184.000000","182.000000","160.000000","6000.000000","0.000000","750082.000000",,,,, +"4548.000000","61.870000","4548.000000","61.870000","4548.000000","61.870000","949.000000","0.000000",,,,,,,,,,,,"2061.000000","8930.000000","15797.000000","37.000000","8930.000000","8930.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070816.000000","0.000000","2092704.000000","129468.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","171.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","161.000000","176.000000","156.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750102.000000",,,,, +"3011.000000","54.645000","3011.000000","54.645000","3011.000000","54.645000","1760.000000","0.000000",,,,,,,,,,,,"20331.000000","10637.500000","942.000000","5.000000","10637.500000","10637.500000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070796.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","168.000000","167.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","160.000000","155.000000","153.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750122.000000",,,,, +"3525.000000","57.060000","3525.000000","57.060000","3525.000000","57.060000","1146.000000","0.000000",,,,,,,,,,,,"10774.000000","8118.000000","5461.000000","17.000000","8118.000000","8118.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2071236.000000","0.000000","2092704.000000","129468.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","151.000000","164.000000","206.000000","209.000000","196.000000","0.000000","0.000000","0.000000","159.000000","141.000000","149.000000","200.000000","207.000000","181.000000","160.000000","6000.000000","0.000000","750142.000000",,,,, +"3642.000000","55.610000","3642.000000","55.610000","3642.000000","55.610000","1129.000000","0.000000",,,,,,,,,,,,"10114.000000","8836.500000","7559.000000","23.000000","8836.500000","8836.500000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071088.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","138.000000","163.000000","206.000000","173.000000","196.000000","0.000000","0.000000","0.000000","158.000000","126.000000","148.000000","199.000000","151.000000","181.000000","160.000000","6000.000000","0.000000","750162.000000",,,,, +"3089.000000","53.010000","3089.000000","53.010000","3089.000000","53.010000","822.000000","0.000000",,,,,,,,,,,,"15789.000000","8326.000000","862.000000","3.000000","8326.000000","8326.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2070824.000000","0.000000","2092704.000000","129468.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","160.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","156.000000","128.000000","145.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750182.000000",,,,, +"3215.000000","53.605000","3215.000000","53.605000","3215.000000","53.605000","1415.000000","0.000000",,,,,,,,,,,,"17195.000000","8894.000000","592.000000","3.000000","8894.000000","8894.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071004.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","141.000000","157.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","155.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750202.000000",,,,, +"3409.000000","54.515000","3409.000000","54.515000","3409.000000","54.515000","1688.000000","0.000000",,,,,,,,,,,,"16558.000000","12636.500000","8715.000000","20.000000","12636.500000","12636.500000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070992.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","140.000000","155.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","154.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750222.000000",,,,, +"4152.000000","58.005000","4152.000000","58.005000","4152.000000","58.005000","900.000000","0.000000",,,,,,,,,,,,"9129.000000","7963.000000","6797.000000","11.000000","7963.000000","7963.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","146.000000","155.000000","204.000000","173.000000","194.000000","0.000000","0.000000","0.000000","153.000000","133.000000","142.000000","194.000000","166.000000","179.000000","160.000000","6000.000000","0.000000","750242.000000",,,,, +"5214.000000","63.000000","5214.000000","63.000000","5214.000000","63.000000","1238.000000","0.000000",,,,,,,,,,,,"14.000000","440.000000","865.000000","6.000000","440.000000","440.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070748.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","165.000000","160.000000","204.000000","211.000000","196.000000","0.000000","0.000000","0.000000","153.000000","155.000000","147.000000","194.000000","209.000000","182.000000","160.000000","6000.000000","0.000000","750262.000000",,,,, +"5252.000000","66.675000","5252.000000","66.675000","5252.000000","66.675000","1677.000000","0.000000",,,,,,,,,,,,"5.000000","335.500000","666.000000","19.000000","335.500000","335.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070828.000000","0.000000","2092704.000000","129468.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","185.000000","164.000000","204.000000","212.000000","205.000000","0.000000","0.000000","0.000000","154.000000","178.000000","152.000000","196.000000","210.000000","198.000000","160.000000","6000.000000","0.000000","750282.000000",,,,, +"5041.000000","65.685000","5041.000000","65.685000","5041.000000","65.685000","1004.000000","0.000000",,,,,,,,,,,,"17.000000","427.500000","838.000000","13.000000","427.500000","427.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","202.000000","168.000000","204.000000","212.000000","206.000000","0.000000","0.000000","0.000000","154.000000","194.000000","156.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750302.000000",,,,, +"4679.000000","63.985000","4679.000000","63.985000","4679.000000","63.985000","1045.000000","0.000000",,,,,,,,,,,,"8.000000","561.000000","1113.000000","23.000000","561.000000","561.000000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070712.000000","0.000000","2092704.000000","129468.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","199.000000","168.000000","204.000000","212.000000","207.000000","0.000000","0.000000","0.000000","154.000000","191.000000","157.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750322.000000",,,,, +"5233.000000","63.585000","5233.000000","63.585000","5233.000000","63.585000","929.000000","0.000000",,,,,,,,,,,,"27.000000","565.500000","1103.000000","15.000000","565.500000","565.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","197.000000","169.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","154.000000","186.000000","158.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750342.000000",,,,, +"1309.000000","45.145000","1309.000000","45.145000","1309.000000","45.145000","615.000000","0.000000",,,,,,,,,,,,"19203.000000","9812.000000","420.000000","3.000000","9812.000000","9812.000000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","151.000000","161.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","151.000000","142.000000","150.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750362.000000",,,,, +"1164.000000","44.465000","1164.000000","44.465000","1164.000000","44.465000","628.000000","0.000000",,,,,,,,,,,,"14997.000000","8677.500000","2358.000000","5.000000","8677.500000","8677.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070600.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","108.000000","153.000000","204.000000","214.000000","207.000000","0.000000","0.000000","0.000000","148.000000","101.000000","143.000000","196.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750382.000000",,,,, +"1236.000000","46.805000","1236.000000","46.805000","1236.000000","46.805000","1178.000000","0.000000",,,,,,,,,,,,"17245.000000","13168.500000","9091.000000","17.000000","13168.500000","13168.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","62.000000","144.000000","204.000000","201.000000","207.000000","0.000000","0.000000","0.000000","146.000000","58.000000","135.000000","196.000000","198.000000","206.000000","160.000000","6000.000000","0.000000","750402.000000",,,,, +"933.000000","45.380000","933.000000","45.380000","933.000000","45.380000","641.000000","0.000000",,,,,,,,,,,,"7575.000000","6296.500000","4979.000000","10.000000","6296.500000","6296.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070876.000000","0.000000","2092704.000000","129468.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","38.000000",,,,,,,,,,,"0.000000","162.000000","46.000000","137.000000","204.000000","68.000000","207.000000","0.000000","0.000000","0.000000","143.000000","42.000000","128.000000","196.000000","67.000000","206.000000","160.000000","6000.000000","0.000000","750422.000000",,,,, +"591.000000","43.770000","591.000000","43.770000","591.000000","43.770000","599.000000","0.000000",,,,,,,,,,,,"23649.000000","22438.500000","21225.000000","13.000000","22438.500000","22438.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070980.000000","0.000000","2092704.000000","129468.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","159.000000","39.000000","130.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","140.000000","36.000000","122.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750442.000000",,,,, +"588.000000","43.255000","588.000000","43.255000","588.000000","43.255000","688.000000","0.000000",,,,,,,,,,,,"19488.000000","20747.000000","22006.000000","16.000000","20747.000000","20747.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071128.000000","0.000000","2092704.000000","129468.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","32.000000","123.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","138.000000","29.000000","115.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750462.000000",,,,, +"648.000000","43.540000","648.000000","43.540000","648.000000","43.540000","706.000000","0.000000",,,,,,,,,,,,"6846.000000","7643.000000","8411.000000","18.000000","7643.000000","7643.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","151.000000","24.000000","114.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","134.000000","23.000000","107.000000","191.000000","30.000000","206.000000","160.000000","6000.000000","0.000000","750482.000000",,,,, +"665.000000","43.620000","665.000000","43.620000","665.000000","43.620000","1234.000000","0.000000",,,,,,,,,,,,"467.000000","440.000000","367.000000","2.000000","440.000000","440.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071224.000000","0.000000","2092704.000000","129468.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"32.000000","14.000000",,,,,,,,,,,"0.000000","148.000000","24.000000","107.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","132.000000","23.000000","101.000000","191.000000","31.000000","206.000000","160.000000","6000.000000","0.000000","750502.000000",,,,, +"1108.000000","45.700000","1108.000000","45.700000","1108.000000","45.700000","589.000000","0.000000",,,,,,,,,,,,"94.000000","6456.000000","10816.000000","39.000000","6456.000000","6456.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","0.000000","0.000000",,,,,,"1982.000000","18.000000",,,,,,,,,,,"0.000000","146.000000","34.000000","102.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","130.000000","31.000000","96.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750522.000000",,,,, +"802.000000","44.265000","802.000000","44.265000","802.000000","44.265000","355.000000","0.000000",,,,,,,,,,,,"41.000000","319.000000","594.000000","3.000000","319.000000","319.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071320.000000","0.000000","2092704.000000","129468.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","142.000000","34.000000","91.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","127.000000","32.000000","87.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750542.000000",,,,, +"564.000000","43.145000","564.000000","43.145000","564.000000","43.145000","348.000000","0.000000",,,,,,,,,,,,"18.000000","146.500000","275.000000","2.000000","146.500000","146.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071080.000000","0.000000","2092704.000000","129468.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","34.000000","81.000000","202.000000","77.000000","206.000000","0.000000","0.000000","0.000000","125.000000","32.000000","76.000000","191.000000","71.000000","198.000000","160.000000","6000.000000","0.000000","750562.000000",,,,, +"429.000000","43.010000","429.000000","43.010000","429.000000","43.010000","433.000000","0.000000",,,,,,,,,,,,"5.000000","98.000000","190.000000","2.000000","98.000000","98.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2071152.000000","0.000000","2092704.000000","129468.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","22.000000","69.000000","202.000000","49.000000","201.000000","0.000000","0.000000","0.000000","123.000000","22.000000","65.000000","191.000000","49.000000","197.000000","160.000000","6000.000000","0.000000","750582.000000",,,,, +"238.000000","42.110000","238.000000","42.110000","238.000000","42.110000","329.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070976.000000","0.000000","2092704.000000","129468.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","15.000000","54.000000","201.000000","32.000000","190.000000","0.000000","0.000000","0.000000","119.000000","15.000000","51.000000","191.000000","32.000000","173.000000","160.000000","6000.000000","0.000000","750602.000000",,,,, +"223.000000","42.045000","223.000000","42.045000","223.000000","42.045000","458.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","3.000000","23.500000","23.500000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070412.000000","0.000000","2092704.000000","129468.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","11.000000","43.000000","201.000000","26.000000","84.000000","0.000000","0.000000","0.000000","117.000000","11.000000","40.000000","191.000000","25.000000","82.000000","160.000000","6000.000000","0.000000","750622.000000",,,,, +"284.000000","43.330000","284.000000","43.330000","284.000000","43.330000","436.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","3.000000","53.000000","53.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2070144.000000","0.000000","2092704.000000","129468.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","9.000000","32.000000","201.000000","13.000000","53.000000","0.000000","0.000000","0.000000","115.000000","9.000000","30.000000","191.000000","13.000000","52.000000","160.000000","6000.000000","0.000000","750642.000000",,,,, +"222.000000","43.040000","222.000000","43.040000","222.000000","43.040000","369.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069736.000000","0.000000","2092704.000000","129468.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","9.000000","26.000000","201.000000","13.000000","51.000000","0.000000","0.000000","0.000000","110.000000","9.000000","24.000000","188.000000","13.000000","49.000000","160.000000","6000.000000","0.000000","750662.000000",,,,, +"277.000000","43.295000","277.000000","43.295000","277.000000","43.295000","746.000000","0.000000",,,,,,,,,,,,"0.000000","53.500000","107.000000","8.000000","53.500000","53.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069708.000000","0.000000","2092704.000000","129468.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","10.000000","24.000000","199.000000","13.000000","49.000000","0.000000","0.000000","0.000000","107.000000","9.000000","22.000000","187.000000","13.000000","46.000000","160.000000","6000.000000","0.000000","750682.000000",,,,, +"595.000000","39.790000","595.000000","39.790000","595.000000","39.790000","1514.000000","0.000000",,,,,,,,,,,,"10.000000","205.000000","394.000000","1.000000","205.000000","205.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069492.000000","0.000000","2092704.000000","129468.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","113.000000","14.000000","22.000000","199.000000","53.000000","49.000000","0.000000","0.000000","0.000000","104.000000","13.000000","21.000000","187.000000","51.000000","40.000000","160.000000","6000.000000","0.000000","750702.000000",,,,, +"969.000000","41.550000","969.000000","41.550000","969.000000","41.550000","1975.000000","0.000000",,,,,,,,,,,,"72.000000","500.000000","918.000000","3.000000","500.000000","500.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069996.000000","0.000000","2092704.000000","129468.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"5.000000","5.000000",,,,,,,,,,,"0.000000","109.000000","25.000000","21.000000","199.000000","67.000000","49.000000","0.000000","0.000000","0.000000","100.000000","22.000000","20.000000","187.000000","58.000000","40.000000","160.000000","6000.000000","0.000000","750722.000000",,,,, +"1237.000000","42.805000","1237.000000","42.805000","1237.000000","42.805000","2987.000000","0.000000",,,,,,,,,,,,"3.000000","4383.500000","8711.000000","26.000000","4383.500000","4383.500000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"36.000000","16.000000",,,,,,,,,,,"0.000000","106.000000","38.000000","23.000000","198.000000","67.000000","53.000000","0.000000","0.000000","0.000000","97.000000","32.000000","21.000000","182.000000","63.000000","49.000000","160.000000","6000.000000","0.000000","750742.000000",,,,, +"672.000000","33.650000","672.000000","33.650000","672.000000","33.650000","1739.000000","0.000000",,,,,,,,,,,,"2.000000","350.500000","699.000000","7.000000","350.500000","350.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","41.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","95.000000","35.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750762.000000",,,,, +"519.000000","32.935000","519.000000","32.935000","519.000000","32.935000","1160.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","220.000000","3.000000","111.000000","111.000000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","99.000000","35.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","91.000000","31.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750782.000000",,,,, +"600.000000","33.315000","600.000000","33.315000","600.000000","33.315000","1210.000000","0.000000",,,,,,,,,,,,"0.000000","135.500000","271.000000","5.000000","135.500000","135.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070648.000000","0.000000","2092704.000000","129468.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","23.000000","23.000000","198.000000","65.000000","61.000000","0.000000","0.000000","0.000000","89.000000","22.000000","21.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750802.000000",,,,, +"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","884.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2070216.000000","0.000000","2092704.000000","129468.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","18.000000","21.000000","198.000000","36.000000","53.000000","0.000000","0.000000","0.000000","86.000000","17.000000","19.000000","182.000000","36.000000","49.000000","160.000000","6000.000000","0.000000","750822.000000",,,,, +"261.000000","27.725000","261.000000","27.725000","261.000000","27.725000","598.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","4.000000","61.000000","61.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069852.000000","0.000000","2092704.000000","129468.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","14.000000","20.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","82.000000","13.000000","18.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750842.000000",,,,, +"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","548.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","2.000000","24.500000","24.500000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069396.000000","0.000000","2092704.000000","129468.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","11.000000","19.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","80.000000","11.000000","17.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750862.000000",,,,, +"259.000000","24.210000","259.000000","24.210000","259.000000","24.210000","524.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068572.000000","0.000000","2092704.000000","129468.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","84.000000","9.000000","18.000000","196.000000","13.000000","53.000000","0.000000","0.000000","0.000000","78.000000","9.000000","17.000000","181.000000","13.000000","36.000000","160.000000","6000.000000","0.000000","750882.000000",,,,, +"207.000000","23.965000","207.000000","23.965000","207.000000","23.965000","587.000000","0.000000",,,,,,,,,,,,"0.000000","25.500000","51.000000","2.000000","25.500000","25.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","9.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","75.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750902.000000",,,,, +"215.000000","24.005000","215.000000","24.005000","215.000000","24.005000","730.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","8.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","71.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750922.000000",,,,, +"248.000000","22.160000","248.000000","22.160000","248.000000","22.160000","859.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","1.000000","46.000000","46.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","8.000000","18.000000","194.000000","13.000000","53.000000","0.000000","0.000000","0.000000","68.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750942.000000",,,,, +"232.000000","22.085000","232.000000","22.085000","232.000000","22.085000","530.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","1.000000","12.500000","12.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067284.000000","0.000000","2092704.000000","129468.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","9.000000","18.000000","192.000000","13.000000","53.000000","0.000000","0.000000","0.000000","64.000000","8.000000","16.000000","179.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750962.000000",,,,, +"225.000000","22.050000","225.000000","22.050000","225.000000","22.050000","1024.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2066820.000000","0.000000","2092704.000000","129468.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","65.000000","9.000000","18.000000","190.000000","13.000000","53.000000","0.000000","0.000000","0.000000","60.000000","8.000000","16.000000","173.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750982.000000",,,,, +"361.000000","19.690000","361.000000","19.690000","361.000000","19.690000","716.000000","0.000000",,,,,,,,,,,,"0.000000","152.000000","302.000000","3.000000","152.000000","152.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2066352.000000","0.000000","2092704.000000","129468.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","10.000000","17.000000","187.000000","17.000000","40.000000","0.000000","0.000000","0.000000","57.000000","9.000000","16.000000","168.000000","16.000000","36.000000","160.000000","6000.000000","0.000000","751002.000000",,,,, +"653.000000","21.065000","653.000000","21.065000","653.000000","21.065000","1031.000000","0.000000",,,,,,,,,,,,"0.000000","168.500000","332.000000","1.000000","168.500000","168.500000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065944.000000","0.000000","2092704.000000","129468.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","58.000000","16.000000","16.000000","187.000000","50.000000","40.000000","0.000000","0.000000","0.000000","54.000000","14.000000","15.000000","168.000000","37.000000","36.000000","160.000000","6000.000000","0.000000","751022.000000",,,,, +"492.000000","20.305000","492.000000","20.305000","492.000000","20.305000","758.000000","0.000000",,,,,,,,,,,,"2.000000","156.000000","308.000000","4.000000","156.000000","156.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065588.000000","0.000000","2092704.000000","129468.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","56.000000","21.000000","14.000000","187.000000","50.000000","34.000000","0.000000","0.000000","0.000000","52.000000","18.000000","14.000000","168.000000","41.000000","34.000000","160.000000","6000.000000","0.000000","751042.000000",,,,, +"641.000000","18.005000","641.000000","18.005000","641.000000","18.005000","837.000000","0.000000",,,,,,,,,,,,"13.000000","135.500000","258.000000","8.000000","135.500000","135.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2065076.000000","0.000000","2092704.000000","129468.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","22.000000","13.000000","187.000000","50.000000","31.000000","0.000000","0.000000","0.000000","50.000000","20.000000","13.000000","168.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","751062.000000",,,,, +"396.000000","16.855000","396.000000","16.855000","396.000000","16.855000","745.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","4.000000","76.500000","76.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064648.000000","0.000000","2092704.000000","129468.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","20.000000","14.000000","187.000000","42.000000","29.000000","0.000000","0.000000","0.000000","47.000000","19.000000","13.000000","168.000000","41.000000","29.000000","160.000000","6000.000000","0.000000","751082.000000",,,,, +"280.000000","16.310000","280.000000","16.310000","280.000000","16.310000","723.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","2.000000","46.000000","46.000000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064008.000000","0.000000","2092704.000000","129468.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","48.000000","17.000000","13.000000","187.000000","35.000000","29.000000","0.000000","0.000000","0.000000","45.000000","16.000000","12.000000","168.000000","35.000000","29.000000","160.000000","6000.000000","0.000000","751102.000000",,,,, +"224.000000","15.045000","224.000000","15.045000","224.000000","15.045000","570.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","3.000000","35.500000","35.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2064004.000000","0.000000","2092704.000000","129468.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","45.000000","13.000000","13.000000","187.000000","29.000000","29.000000","0.000000","0.000000","0.000000","42.000000","13.000000","12.000000","168.000000","29.000000","28.000000","160.000000","6000.000000","0.000000","751122.000000",,,,, +"211.000000","14.990000","211.000000","14.990000","211.000000","14.990000","622.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","2.000000","19.500000","19.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2063532.000000","0.000000","2092704.000000","129468.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","9.000000","12.000000","187.000000","16.000000","29.000000","0.000000","0.000000","0.000000","39.000000","8.000000","12.000000","168.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","751142.000000",,,,, +"226.000000","15.055000","226.000000","15.055000","226.000000","15.055000","462.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","1.000000","27.500000","27.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2062560.000000","0.000000","2092704.000000","129468.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","12.000000","84.000000","9.000000","29.000000","0.000000","0.000000","0.000000","35.000000","8.000000","12.000000","82.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751162.000000",,,,, +"224.000000","14.045000","224.000000","14.045000","224.000000","14.045000","595.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","0.000000","21.000000","21.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061992.000000","0.000000","2092704.000000","129468.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","8.000000","12.000000","67.000000","9.000000","29.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","63.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751182.000000",,,,, +"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","475.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061744.000000","0.000000","2092704.000000","129468.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","12.000000","53.000000","9.000000","29.000000","0.000000","0.000000","0.000000","26.000000","8.000000","12.000000","51.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751202.000000",,,,, +"213.000000","13.995000","213.000000","13.995000","213.000000","13.995000","636.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","4.000000","22.500000","22.500000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061344.000000","0.000000","2092704.000000","129468.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","12.000000","51.000000","9.000000","29.000000","0.000000","0.000000","0.000000","23.000000","8.000000","12.000000","46.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751222.000000",,,,, +"232.000000","12.085000","232.000000","12.085000","232.000000","12.085000","496.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2060732.000000","0.000000","2092704.000000","129468.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","8.000000","12.000000","49.000000","9.000000","29.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751242.000000",,,,, +"234.000000","12.095000","234.000000","12.095000","234.000000","12.095000","432.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","1.000000","15.000000","15.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2059256.000000","0.000000","2092704.000000","129468.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","12.000000","45.000000","9.000000","29.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751262.000000",,,,, +"320.000000","12.500000","320.000000","12.500000","320.000000","12.500000","784.000000","0.000000",,,,,,,,,,,,"7.000000","105.500000","203.000000","2.000000","105.500000","105.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2058700.000000","0.000000","2092704.000000","129468.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","9.000000","12.000000","44.000000","17.000000","29.000000","0.000000","0.000000","0.000000","17.000000","9.000000","12.000000","37.000000","16.000000","28.000000","160.000000","6000.000000","0.000000","751282.000000",,,,, +"528.000000","12.475000","528.000000","12.475000","528.000000","12.475000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","169.000000","333.000000","3.000000","169.000000","169.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058192.000000","0.000000","2092704.000000","129468.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","14.000000","13.000000","40.000000","33.000000","29.000000","0.000000","0.000000","0.000000","16.000000","13.000000","12.000000","36.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","751302.000000",,,,, +"1131.000000","15.310000","1131.000000","15.310000","1131.000000","15.310000","1405.000000","0.000000",,,,,,,,,,,,"5.000000","527.000000","1013.000000","4.000000","527.000000","527.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058484.000000","0.000000","2092704.000000","129468.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","0.000000","0.000000",,,,,,"23.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","26.000000","14.000000","38.000000","73.000000","35.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","36.000000","63.000000","32.000000","160.000000","6000.000000","0.000000","751322.000000",,,,, +"942.000000","14.420000","942.000000","14.420000","942.000000","14.420000","1286.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4767.000000","56.000000","2918.000000","2918.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2060328.000000","0.000000","2092704.000000","129468.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","0.000000","0.000000",,,,,,"1046.000000","16.000000",,,,,,,,,,,"0.000000","18.000000","37.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","17.000000","33.000000","15.000000","37.000000","73.000000","35.000000","160.000000","6000.000000","0.000000","751342.000000",,,,, +"471.000000","12.210000","471.000000","12.210000","471.000000","12.210000","1366.000000","0.000000",,,,,,,,,,,,"5.000000","182.500000","358.000000","4.000000","182.500000","182.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060600.000000","0.000000","2092704.000000","129468.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","36.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","31.000000","15.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751362.000000",,,,, +"262.000000","11.230000","262.000000","11.230000","262.000000","11.230000","578.000000","0.000000",,,,,,,,,,,,"0.000000","41.500000","83.000000","6.000000","41.500000","41.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060760.000000","0.000000","2092704.000000","129468.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","24.000000","15.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","21.000000","14.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751382.000000",,,,, +"224.000000","11.045000","224.000000","11.045000","224.000000","11.045000","870.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","2.000000","39.000000","39.000000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060868.000000","0.000000","2092704.000000","129468.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","15.000000","40.000000","30.000000","35.000000","0.000000","0.000000","0.000000","16.000000","12.000000","14.000000","37.000000","29.000000","32.000000","160.000000","6000.000000","0.000000","751402.000000",,,,, +"254.000000","10.690000","254.000000","10.690000","254.000000","10.690000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","56.500000","113.000000","1.000000","56.500000","56.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2060280.000000","0.000000","2092704.000000","129468.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","10.000000","15.000000","36.000000","13.000000","35.000000","0.000000","0.000000","0.000000","15.000000","9.000000","14.000000","35.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751422.000000",,,,, +"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","2.000000","33.000000","33.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059824.000000","0.000000","2092704.000000","129468.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751442.000000",,,,, +"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","747.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","7.000000","11.000000","11.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059988.000000","0.000000","2092704.000000","129468.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751462.000000",,,,, +"266.000000","13.750000","266.000000","13.750000","266.000000","13.750000","484.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059428.000000","0.000000","2092704.000000","129468.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751482.000000",,,,, +"222.000000","13.545000","222.000000","13.545000","222.000000","13.545000","715.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","5.000000","24.000000","24.000000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059264.000000","0.000000","2092704.000000","129468.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751502.000000",,,,, +"218.000000","13.525000","218.000000","13.525000","218.000000","13.525000","891.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","4.000000","26.500000","26.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059588.000000","0.000000","2092704.000000","129468.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751522.000000",,,,, +"260.000000","11.715000","260.000000","11.715000","260.000000","11.715000","891.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059012.000000","0.000000","2092704.000000","129468.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751542.000000",,,,, +"587.000000","13.255000","587.000000","13.255000","587.000000","13.255000","1003.000000","0.000000",,,,,,,,,,,,"18.000000","310.000000","590.000000","1.000000","310.000000","310.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2058464.000000","0.000000","2092704.000000","129468.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","0.000000","0.000000",,,,,,"5.000000","6.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","35.000000","40.000000","40.000000","0.000000","0.000000","0.000000","14.000000","12.000000","15.000000","32.000000","32.000000","32.000000","160.000000","6000.000000","0.000000","751562.000000",,,,, +"600.000000","13.315000","600.000000","13.315000","600.000000","13.315000","679.000000","0.000000",,,,,,,,,,,,"146.000000","253.000000","356.000000","3.000000","253.000000","253.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059204.000000","0.000000","2092704.000000","129468.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","18.000000","36.000000","61.000000","43.000000","0.000000","0.000000","0.000000","15.000000","18.000000","16.000000","34.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751582.000000",,,,, +"253.000000","9.680000","253.000000","9.680000","253.000000","9.680000","957.000000","0.000000",,,,,,,,,,,,"32.000000","81.000000","130.000000","2.000000","81.000000","81.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058552.000000","0.000000","2092704.000000","129468.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","17.000000","35.000000","61.000000","43.000000","0.000000","0.000000","0.000000","14.000000","18.000000","15.000000","32.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751602.000000",,,,, +"209.000000","9.475000","209.000000","9.475000","209.000000","9.475000","1053.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","17.000000","31.500000","31.500000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058992.000000","0.000000","2092704.000000","129468.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","15.000000","14.000000","35.000000","61.000000","30.000000","0.000000","0.000000","0.000000","14.000000","13.000000","13.000000","32.000000","50.000000","29.000000","160.000000","6000.000000","0.000000","751622.000000",,,,, +"223.000000","9.540000","223.000000","9.540000","223.000000","9.540000","668.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2059140.000000","0.000000","2092704.000000","129468.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","31.000000","14.000000","18.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","29.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","751642.000000",,,,, +"253.000000","9.685000","253.000000","9.685000","253.000000","9.685000","926.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","3.000000","54.000000","54.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058528.000000","0.000000","2092704.000000","129468.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","29.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751662.000000",,,,, +"212.000000","9.990000","212.000000","9.990000","212.000000","9.990000","784.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058204.000000","0.000000","2092704.000000","129468.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751682.000000",,,,, +"269.000000","10.260000","269.000000","10.260000","269.000000","10.260000","1187.000000","0.000000",,,,,,,,,,,,"673.000000","369.000000","62.000000","5.000000","369.000000","369.000000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058060.000000","0.000000","2092704.000000","129468.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","28.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751702.000000",,,,, +"252.000000","10.180000","252.000000","10.180000","252.000000","10.180000","1539.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","3.000000","76.500000","76.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2057700.000000","0.000000","2092704.000000","129468.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751722.000000",,,,, +"230.000000","10.575000","230.000000","10.575000","230.000000","10.575000","737.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","3.000000","13.500000","13.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059248.000000","0.000000","2092704.000000","129468.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751742.000000",,,,, +"240.000000","10.620000","240.000000","10.620000","240.000000","10.620000","878.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059584.000000","0.000000","2092704.000000","129468.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751762.000000",,,,, +"571.000000","12.175000","571.000000","12.175000","571.000000","12.175000","1123.000000","0.000000",,,,,,,,,,,,"2.000000","147.000000","291.000000","2.000000","147.000000","147.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059724.000000","0.000000","2092704.000000","129468.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","15.000000","160.000000","6000.000000","0.000000","751782.000000",,,,, +"295.000000","9.380000","295.000000","9.380000","295.000000","9.380000","944.000000","0.000000",,,,,,,,,,,,"0.000000","96.000000","192.000000","4.000000","96.000000","96.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2058560.000000","0.000000","2092704.000000","129468.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751802.000000",,,,, +"232.000000","9.085000","232.000000","9.085000","232.000000","9.085000","817.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","3.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2057276.000000","0.000000","2092704.000000","129468.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751822.000000",,,,, +"260.000000","9.215000","260.000000","9.215000","260.000000","9.215000","1306.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","1.000000","40.500000","40.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2056828.000000","0.000000","2092704.000000","129468.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","29.000000","18.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","28.000000","17.000000","17.000000","160.000000","6000.000000","0.000000","751842.000000",,,,, +"219.000000","9.020000","219.000000","9.020000","219.000000","9.020000","1055.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056272.000000","0.000000","2092704.000000","129468.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751862.000000",,,,, +"279.000000","9.305000","279.000000","9.305000","279.000000","9.305000","665.000000","0.000000",,,,,,,,,,,,"0.000000","48.000000","96.000000","4.000000","48.000000","48.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056972.000000","0.000000","2092704.000000","129468.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751883.000000",,,,, +"188.000000","8.880000","188.000000","8.880000","188.000000","8.880000","1030.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","3.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056552.000000","0.000000","2092704.000000","129468.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751902.000000",,,,, +"227.000000","10.060000","227.000000","10.060000","227.000000","10.060000","850.000000","0.000000",,,,,,,,,,,,"1.000000","38.000000","74.000000","1.000000","38.000000","38.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2053924.000000","0.000000","2092704.000000","129468.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","22.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751922.000000",,,,, +"213.000000","9.995000","213.000000","9.995000","213.000000","9.995000","880.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2052348.000000","0.000000","2092704.000000","129468.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","22.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","18.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751942.000000",,,,, +"275.000000","10.285000","275.000000","10.285000","275.000000","10.285000","573.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","1.000000","58.000000","58.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2051868.000000","0.000000","2092704.000000","129468.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","17.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751962.000000",,,,, +"286.000000","9.340000","286.000000","9.340000","286.000000","9.340000","609.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","2.000000","71.000000","71.000000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2048948.000000","0.000000","2092704.000000","129468.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","17.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","751982.000000",,,,, +"631.000000","10.960000","631.000000","10.960000","631.000000","10.960000","834.000000","0.000000",,,,,,,,,,,,"1002.000000","688.500000","369.000000","2.000000","688.500000","688.500000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2049356.000000","0.000000","2092704.000000","129468.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","46.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","17.000000","44.000000","14.000000","160.000000","6000.000000","0.000000","752002.000000",,,,, +"675.000000","11.665000","675.000000","11.665000","675.000000","11.665000","771.000000","0.000000",,,,,,,,,,,,"1553.000000","819.000000","83.000000","1.000000","819.000000","819.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049884.000000","0.000000","2092704.000000","129468.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","20.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752022.000000",,,,, +"226.000000","11.560000","226.000000","11.560000","226.000000","11.560000","679.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","3.000000","71.500000","71.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2051604.000000","0.000000","2092704.000000","129468.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752042.000000",,,,, +"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","570.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","1.000000","31.000000","31.000000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2049544.000000","0.000000","2092704.000000","129468.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","22.000000","38.000000","21.000000","0.000000","0.000000","0.000000","12.000000","14.000000","12.000000","21.000000","37.000000","21.000000","160.000000","6000.000000","0.000000","752062.000000",,,,, +"271.000000","11.770000","271.000000","11.770000","271.000000","11.770000","574.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","3.000000","64.500000","64.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2048892.000000","0.000000","2092704.000000","129468.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","17.000000","160.000000","6000.000000","0.000000","752082.000000",,,,, +"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","517.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752102.000000",,,,, +"240.000000","11.625000","240.000000","11.625000","240.000000","11.625000","646.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2047320.000000","0.000000","2092704.000000","129468.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752122.000000",,,,, +"287.000000","11.840000","287.000000","11.840000","287.000000","11.840000","607.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","3.000000","66.500000","66.500000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046732.000000","0.000000","2092704.000000","129468.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752142.000000",,,,, +"227.000000","10.560000","227.000000","10.560000","227.000000","10.560000","611.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","2.000000","12.500000","12.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2045920.000000","0.000000","2092704.000000","129468.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752162.000000",,,,, +"246.000000","10.650000","246.000000","10.650000","246.000000","10.650000","505.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2043404.000000","0.000000","2092704.000000","129468.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752182.000000",,,,, +"411.000000","11.425000","411.000000","11.425000","411.000000","11.425000","786.000000","0.000000",,,,,,,,,,,,"6.000000","129.500000","253.000000","2.000000","129.500000","129.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2042844.000000","0.000000","2092704.000000","129468.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","11.000000","18.000000","15.000000","15.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","17.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752202.000000",,,,, +"720.000000","13.375000","720.000000","13.375000","720.000000","13.375000","583.000000","0.000000",,,,,,,,,,,,"0.000000","161.500000","323.000000","4.000000","161.500000","161.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2043112.000000","0.000000","2092704.000000","129468.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","13.000000","18.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","16.000000","12.000000","17.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752222.000000",,,,, +"280.000000","11.310000","280.000000","11.310000","280.000000","11.310000","466.000000","0.000000",,,,,,,,,,,,"0.000000","91.500000","182.000000","4.000000","91.500000","91.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2042328.000000","0.000000","2092704.000000","129468.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","17.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","17.000000","13.000000","15.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752242.000000",,,,, +"794.000000","13.725000","794.000000","13.725000","794.000000","13.725000","1116.000000","0.000000",,,,,,,,,,,,"425.000000","432.000000","438.000000","2.000000","432.000000","432.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2041820.000000","0.000000","2092704.000000","129468.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","14.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","22.000000","14.000000","16.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752262.000000",,,,, +"426.000000","10.000000","426.000000","10.000000","426.000000","10.000000","656.000000","0.000000",,,,,,,,,,,,"0.000000","87.000000","173.000000","5.000000","87.000000","87.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2041608.000000","0.000000","2092704.000000","129468.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","15.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","14.000000","17.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752282.000000",,,,, +"593.000000","10.785000","593.000000","10.785000","593.000000","10.785000","657.000000","0.000000",,,,,,,,,,,,"3.000000","174.500000","345.000000","2.000000","174.500000","174.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042416.000000","0.000000","2092704.000000","129468.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","24.000000","15.000000","19.000000","64.000000","32.000000","0.000000","0.000000","0.000000","12.000000","22.000000","14.000000","18.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752302.000000",,,,, +"299.000000","9.400000","299.000000","9.400000","299.000000","9.400000","804.000000","0.000000",,,,,,,,,,,,"1.000000","98.000000","195.000000","33.000000","98.000000","98.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042184.000000","0.000000","2092704.000000","129468.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","16.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752322.000000",,,,, +"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","1173.000000","0.000000",,,,,,,,,,,,"0.000000","47.000000","94.000000","7.000000","47.000000","47.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044708.000000","0.000000","2092704.000000","129468.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","14.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752342.000000",,,,, +"209.000000","8.475000","209.000000","8.475000","209.000000","8.475000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","4.000000","22.000000","22.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2046268.000000","0.000000","2092704.000000","129468.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","14.000000","19.000000","16.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752362.000000",,,,, +"250.000000","8.670000","250.000000","8.670000","250.000000","8.670000","1249.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","7.000000","58.000000","58.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045732.000000","0.000000","2092704.000000","129468.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752382.000000",,,,, +"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","1036.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","4.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2043984.000000","0.000000","2092704.000000","129468.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752402.000000",,,,, +"216.000000","8.510000","216.000000","8.510000","216.000000","8.510000","732.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041524.000000","0.000000","2092704.000000","129468.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752422.000000",,,,, +"263.000000","8.730000","263.000000","8.730000","263.000000","8.730000","1040.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","3.000000","61.500000","61.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041052.000000","0.000000","2092704.000000","129468.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752442.000000",,,,, +"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","744.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","1.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040036.000000","0.000000","2092704.000000","129468.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","18.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","17.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752462.000000",,,,, +"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","763.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040792.000000","0.000000","2092704.000000","129468.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","14.000000","16.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752482.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","1153.000000","0.000000",,,,,,,,,,,,"0.000000","75.500000","151.000000","2.000000","75.500000","75.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040232.000000","0.000000","2092704.000000","129468.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","15.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752502.000000",,,,, +"201.000000","7.940000","201.000000","7.940000","201.000000","7.940000","1652.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2040180.000000","0.000000","2092704.000000","129468.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","12.000000","16.000000","15.000000","17.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","16.000000","160.000000","6000.000000","0.000000","752522.000000",,,,, +"221.000000","8.030000","221.000000","8.030000","221.000000","8.030000","1098.000000","0.000000",,,,,,,,,,,,"1.000000","43.500000","86.000000","3.000000","43.500000","43.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041620.000000","0.000000","2092704.000000","129468.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","15.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752542.000000",,,,, +"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","1440.000000","0.000000",,,,,,,,,,,,"9.000000","59.500000","109.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041056.000000","0.000000","2092704.000000","129468.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752562.000000",,,,, +"236.000000","8.100000","236.000000","8.100000","236.000000","8.100000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039892.000000","0.000000","2092704.000000","129468.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752582.000000",,,,, +"215.000000","8.005000","215.000000","8.005000","215.000000","8.005000","1457.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","1.000000","33.500000","33.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038840.000000","0.000000","2092704.000000","129468.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","752602.000000",,,,, +"246.000000","8.150000","246.000000","8.150000","246.000000","8.150000","1579.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","1.000000","43.000000","43.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038300.000000","0.000000","2092704.000000","129468.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","752622.000000",,,,, +"236.000000","7.605000","236.000000","7.605000","236.000000","7.605000","698.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037436.000000","0.000000","2092704.000000","129468.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752642.000000",,,,, +"213.000000","7.495000","213.000000","7.495000","213.000000","7.495000","780.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","0.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037276.000000","0.000000","2092704.000000","129468.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752662.000000",,,,, +"268.000000","7.755000","268.000000","7.755000","268.000000","7.755000","638.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2036856.000000","0.000000","2092704.000000","129468.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752682.000000",,,,, +"223.000000","6.545000","223.000000","6.545000","223.000000","6.545000","599.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2035764.000000","0.000000","2092704.000000","129468.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752702.000000",,,,, +"583.000000","8.235000","583.000000","8.235000","583.000000","8.235000","1262.000000","0.000000",,,,,,,,,,,,"5.000000","125.000000","245.000000","2.000000","125.000000","125.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2038484.000000","0.000000","2092704.000000","129468.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","8.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","752722.000000",,,,, +"337.000000","7.080000","337.000000","7.080000","337.000000","7.080000","1013.000000","0.000000",,,,,,,,,,,,"1.000000","214.500000","426.000000","4.000000","214.500000","214.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034456.000000","0.000000","2092704.000000","129468.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752742.000000",,,,, +"260.000000","8.215000","260.000000","8.215000","260.000000","8.215000","1219.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","2.000000","45.000000","45.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2034216.000000","0.000000","2092704.000000","129468.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752762.000000",,,,, +"207.000000","7.970000","207.000000","7.970000","207.000000","7.970000","1035.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","4.000000","25.000000","25.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032580.000000","0.000000","2092704.000000","129468.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752782.000000",,,,, +"265.000000","8.240000","265.000000","8.240000","265.000000","8.240000","1161.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","1.000000","61.000000","61.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032272.000000","0.000000","2092704.000000","129468.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752802.000000",,,,, +"206.000000","9.465000","206.000000","9.465000","206.000000","9.465000","1395.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","2.000000","35.500000","35.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031756.000000","0.000000","2092704.000000","129468.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752822.000000",,,,, +"195.000000","9.410000","195.000000","9.410000","195.000000","9.410000","1131.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031192.000000","0.000000","2092704.000000","129468.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752842.000000",,,,, +"258.000000","9.705000","258.000000","9.705000","258.000000","9.705000","1164.000000","0.000000",,,,,,,,,,,,"0.000000","60.500000","121.000000","1.000000","60.500000","60.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031332.000000","0.000000","2092704.000000","129468.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752862.000000",,,,, +"197.000000","7.420000","197.000000","7.420000","197.000000","7.420000","1772.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","3.000000","30.000000","30.000000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2030748.000000","0.000000","2092704.000000","129468.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752882.000000",,,,, +"200.000000","7.435000","200.000000","7.435000","200.000000","7.435000","1621.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","0.000000","8.500000","8.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2029136.000000","0.000000","2092704.000000","129468.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752902.000000",,,,, +"255.000000","7.695000","255.000000","7.695000","255.000000","7.695000","1707.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","2.000000","71.500000","71.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2028672.000000","0.000000","2092704.000000","129468.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752922.000000",,,,, +"382.000000","8.290000","382.000000","8.290000","382.000000","8.290000","1483.000000","0.000000",,,,,,,,,,,,"1393.000000","1458.500000","1522.000000","4.000000","1458.500000","1458.500000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2026888.000000","0.000000","2092704.000000","129468.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","14.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","17.000000","14.000000","160.000000","6000.000000","0.000000","752942.000000",,,,, +"801.000000","17.260000","801.000000","17.260000","801.000000","17.260000","1638.000000","0.000000",,,,,,,,,,,,"12530.000000","12847.500000","13163.000000","16.000000","12847.500000","12847.500000",,,,,,,,,,,"356512.000000","566228.000000","0.000000","0.000000","2042860.000000","0.000000","2092704.000000","129468.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","17.000000","59.000000","18.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","53.000000","17.000000","160.000000","6000.000000","0.000000","752962.000000",,,,, +"665.000000","18.120000","665.000000","18.120000","665.000000","18.120000","1883.000000","0.000000",,,,,,,,,,,,"1055.000000","887.500000","465.000000","3.000000","887.500000","887.500000",,,,,,,,,,,"419428.000000","629144.000000","0.000000","0.000000","2043312.000000","0.000000","2092704.000000","129468.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"7.000000","248.000000",,,,,,,,,,,"0.000000","12.000000","25.000000","13.000000","18.000000","59.000000","25.000000","0.000000","0.000000","0.000000","11.000000","22.000000","12.000000","17.000000","53.000000","21.000000","160.000000","6000.000000","0.000000","752982.000000",,,,, +"594.000000","21.285000","594.000000","21.285000","594.000000","21.285000","1239.000000","0.000000",,,,,,,,,,,,"709.000000","1585.000000","902.000000","5.000000","1585.000000","1585.000000",,,,,,,,,,,"440400.000000","775944.000000","0.000000","0.000000","2044032.000000","0.000000","2092704.000000","129468.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"1515.000000","43.000000",,,,,,,,,,,"0.000000","12.000000","30.000000","14.000000","20.000000","59.000000","31.000000","0.000000","0.000000","0.000000","11.000000","25.000000","13.000000","18.000000","53.000000","28.000000","160.000000","6000.000000","0.000000","753002.000000",,,,, +"1248.000000","24.360000","1248.000000","24.360000","1248.000000","24.360000","2625.000000","0.000000",,,,,,,,,,,,"0.000000","20814.000000","21156.000000","78.000000","20814.000000","20814.000000",,,,,,,,,,,"650116.000000","775944.000000","0.000000","0.000000","2053436.000000","0.000000","2092704.000000","129468.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"20399.000000","72.000000",,,,,,,,,,,"0.000000","13.000000","41.000000","18.000000","25.000000","75.000000","54.000000","0.000000","0.000000","0.000000","12.000000","30.000000","15.000000","21.000000","51.000000","43.000000","160.000000","6000.000000","0.000000","753022.000000",,,,, +"1164.000000","30.965000","1164.000000","30.965000","1164.000000","30.965000","2201.000000","0.000000",,,,,,,,,,,,"0.000000","19665.500000","23179.000000","66.000000","19665.500000","19665.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067944.000000","0.000000","2092704.000000","129468.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"16094.000000","58.000000",,,,,,,,,,,"0.000000","15.000000","52.000000","20.000000","31.000000","75.000000","68.000000","0.000000","0.000000","0.000000","13.000000","35.000000","16.000000","28.000000","51.000000","44.000000","160.000000","6000.000000","0.000000","753042.000000",,,,, +"1131.000000","41.810000","1131.000000","41.810000","1131.000000","41.810000","1844.000000","0.000000",,,,,,,,,,,,"7.000000","24063.500000","38208.000000","35.000000","24063.500000","24063.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2071392.000000","0.000000","2092704.000000","129468.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"9871.000000","41.000000",,,,,,,,,,,"0.000000","16.000000","66.000000","25.000000","45.000000","75.000000","69.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","32.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","753062.000000",,,,, +"682.000000","39.700000","682.000000","39.700000","682.000000","39.700000","1590.000000","0.000000",,,,,,,,,,,,"681.000000","8960.500000","8687.000000","15.000000","8960.500000","8960.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072044.000000","0.000000","2092704.000000","129468.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"8517.000000","36.000000",,,,,,,,,,,"0.000000","16.000000","54.000000","26.000000","45.000000","70.000000","69.000000","0.000000","0.000000","0.000000","14.000000","38.000000","20.000000","35.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","753082.000000",,,,, +"1467.000000","43.390000","1467.000000","43.390000","1467.000000","43.390000","2267.000000","0.000000",,,,,,,,,,,,"123.000000","17364.500000","26118.000000","65.000000","17364.500000","17364.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072184.000000","0.000000","2092704.000000","129468.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","0.000000","0.000000",,,,,,"8454.000000","34.000000",,,,,,,,,,,"0.000000","17.000000","50.000000","29.000000","53.000000","70.000000","69.000000","0.000000","0.000000","0.000000","15.000000","39.000000","22.000000","40.000000","59.000000","47.000000","160.000000","6000.000000","0.000000","753102.000000",,,,, +"966.000000","46.035000","966.000000","46.035000","966.000000","46.035000","1909.000000","0.000000",,,,,,,,,,,,"6.000000","3669.000000","7329.000000","17.000000","3669.000000","3669.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","46.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","39.000000","25.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753122.000000",,,,, +"403.000000","43.385000","403.000000","43.385000","403.000000","43.385000","2033.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","4.000000","66.000000","66.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071580.000000","0.000000","2092704.000000","129468.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","41.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","35.000000","26.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753142.000000",,,,, +"266.000000","42.745000","266.000000","42.745000","266.000000","42.745000","2295.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","0.000000","31.500000","31.500000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","28.000000","33.000000","54.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","25.000000","26.000000","40.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753162.000000",,,,, +"449.000000","44.105000","449.000000","44.105000","449.000000","44.105000","2345.000000","0.000000",,,,,,,,,,,,"0.000000","72.500000","145.000000","4.000000","72.500000","72.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2071108.000000","0.000000","2092704.000000","129468.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","15.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","13.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753182.000000",,,,, +"223.000000","43.040000","223.000000","43.040000","223.000000","43.040000","2358.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070724.000000","0.000000","2092704.000000","129468.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753202.000000",,,,, +"231.000000","43.080000","231.000000","43.080000","231.000000","43.080000","2191.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","4.000000","33.500000","33.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070296.000000","0.000000","2092704.000000","129468.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753222.000000",,,,, +"229.000000","43.570000","229.000000","43.570000","229.000000","43.570000","1664.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069796.000000","0.000000","2092704.000000","129468.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","33.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","26.000000","40.000000","9.000000","52.000000","160.000000","6000.000000","0.000000","753242.000000",,,,, +"248.000000","43.660000","248.000000","43.660000","248.000000","43.660000","948.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","2.000000","31.500000","31.500000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069308.000000","0.000000","2092704.000000","129468.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","31.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","25.000000","40.000000","9.000000","51.000000","160.000000","6000.000000","0.000000","753262.000000",,,,, +"535.000000","45.010000","535.000000","45.010000","535.000000","45.010000","1478.000000","0.000000",,,,,,,,,,,,"0.000000","95.000000","190.000000","3.000000","95.000000","95.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2068920.000000","0.000000","2092704.000000","129468.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","31.000000","54.000000","42.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","24.000000","40.000000","30.000000","51.000000","160.000000","6000.000000","0.000000","753282.000000",,,,, +"766.000000","38.595000","766.000000","38.595000","766.000000","38.595000","1335.000000","0.000000",,,,,,,,,,,,"4.000000","198.000000","392.000000","3.000000","198.000000","198.000000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","21.000000","31.000000","54.000000","48.000000","70.000000","0.000000","0.000000","0.000000","15.000000","19.000000","25.000000","40.000000","43.000000","51.000000","160.000000","6000.000000","0.000000","753302.000000",,,,, +"882.000000","39.140000","882.000000","39.140000","882.000000","39.140000","1178.000000","0.000000",,,,,,,,,,,,"46.000000","258.500000","471.000000","7.000000","258.500000","258.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068796.000000","0.000000","2092704.000000","129468.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","29.000000","29.000000","59.000000","60.000000","68.000000","0.000000","0.000000","0.000000","16.000000","24.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753322.000000",,,,, +"676.000000","38.175000","676.000000","38.175000","676.000000","38.175000","1302.000000","0.000000",,,,,,,,,,,,"0.000000","87.500000","174.000000","5.000000","87.500000","87.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068128.000000","0.000000","2092704.000000","129468.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","32.000000","27.000000","59.000000","60.000000","64.000000","0.000000","0.000000","0.000000","16.000000","28.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753342.000000",,,,, +"876.000000","29.120000","876.000000","29.120000","876.000000","29.120000","1505.000000","0.000000",,,,,,,,,,,,"2163.000000","1493.000000","772.000000","3.000000","1493.000000","1493.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067748.000000","0.000000","2092704.000000","129468.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","0.000000","0.000000",,,,,,"35.000000","15.000000",,,,,,,,,,,"0.000000","20.000000","34.000000","25.000000","59.000000","60.000000","60.000000","0.000000","0.000000","0.000000","17.000000","30.000000","22.000000","43.000000","48.000000","48.000000","160.000000","6000.000000","0.000000","753362.000000",,,,, +"1000.000000","29.700000","1000.000000","29.700000","1000.000000","29.700000","1341.000000","0.000000",,,,,,,,,,,,"7.000000","4211.000000","8409.000000","26.000000","4211.000000","4211.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067396.000000","0.000000","2092704.000000","129468.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","20.000000","37.000000","26.000000","60.000000","67.000000","64.000000","0.000000","0.000000","0.000000","17.000000","34.000000","22.000000","43.000000","53.000000","52.000000","160.000000","6000.000000","0.000000","753382.000000",,,,, +"760.000000","28.570000","760.000000","28.570000","760.000000","28.570000","1798.000000","0.000000",,,,,,,,,,,,"3.000000","432.000000","859.000000","4.000000","432.000000","432.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067096.000000","0.000000","2092704.000000","129468.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","21.000000","39.000000","24.000000","60.000000","73.000000","60.000000","0.000000","0.000000","0.000000","18.000000","34.000000","22.000000","44.000000","65.000000","51.000000","160.000000","6000.000000","0.000000","753402.000000",,,,, +"532.000000","24.495000","532.000000","24.495000","532.000000","24.495000","1234.000000","0.000000",,,,,,,,,,,,"0.000000","118.000000","236.000000","5.000000","118.000000","118.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066516.000000","0.000000","2092704.000000","129468.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","31.000000","22.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","18.000000","28.000000","20.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753422.000000",,,,, +"740.000000","25.475000","740.000000","25.475000","740.000000","25.475000","1076.000000","0.000000",,,,,,,,,,,,"0.000000","146.000000","291.000000","2.000000","146.000000","146.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066052.000000","0.000000","2092704.000000","129468.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","28.000000","23.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","19.000000","26.000000","21.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753442.000000",,,,, +"235.000000","23.095000","235.000000","23.095000","235.000000","23.095000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","70.500000","140.000000","3.000000","70.500000","70.500000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2065436.000000","0.000000","2092704.000000","129468.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","20.000000","23.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","19.000000","19.000000","21.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753462.000000",,,,, +"216.000000","20.510000","216.000000","20.510000","216.000000","20.510000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","80.000000","2.000000","40.000000","40.000000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064708.000000","0.000000","2092704.000000","129468.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","16.000000","22.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","18.000000","15.000000","20.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753482.000000",,,,, +"231.000000","20.580000","231.000000","20.580000","231.000000","20.580000","1179.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064316.000000","0.000000","2092704.000000","129468.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","19.000000","8.000000","20.000000","44.000000","10.000000","43.000000","160.000000","6000.000000","0.000000","753502.000000",,,,, +"219.000000","20.520000","219.000000","20.520000","219.000000","20.520000","1510.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2063692.000000","0.000000","2092704.000000","129468.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753522.000000",,,,, +"214.000000","19.500000","214.000000","19.500000","214.000000","19.500000","1223.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","3.000000","42.500000","42.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062896.000000","0.000000","2092704.000000","129468.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753542.000000",,,,, +"541.000000","21.035000","541.000000","21.035000","541.000000","21.035000","949.000000","0.000000",,,,,,,,,,,,"6.000000","209.500000","407.000000","1.000000","209.500000","209.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062588.000000","0.000000","2092704.000000","129468.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","11.000000","23.000000","60.000000","26.000000","48.000000","0.000000","0.000000","0.000000","19.000000","10.000000","20.000000","44.000000","19.000000","43.000000","160.000000","6000.000000","0.000000","753562.000000",,,,, +"674.000000","21.665000","674.000000","21.665000","674.000000","21.665000","1381.000000","0.000000",,,,,,,,,,,,"1.000000","138.000000","275.000000","2.000000","138.000000","138.000000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2061872.000000","0.000000","2092704.000000","129468.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","17.000000","23.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","16.000000","21.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753582.000000",,,,, +"499.000000","19.840000","499.000000","19.840000","499.000000","19.840000","1229.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","344.000000","4.000000","172.500000","172.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060988.000000","0.000000","2092704.000000","129468.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","22.000000","22.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","20.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753602.000000",,,,, +"535.000000","20.010000","535.000000","20.010000","535.000000","20.010000","1016.000000","0.000000",,,,,,,,,,,,"0.000000","108.000000","216.000000","12.000000","108.000000","108.000000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060288.000000","0.000000","2092704.000000","129468.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","23.000000","22.000000","60.000000","40.000000","44.000000","0.000000","0.000000","0.000000","19.000000","21.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753622.000000",,,,, +"641.000000","20.505000","641.000000","20.505000","641.000000","20.505000","1413.000000","0.000000",,,,,,,,,,,,"0.000000","277.500000","549.000000","3.000000","277.500000","277.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2059488.000000","0.000000","2092704.000000","129468.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","23.000000","21.000000","21.000000","60.000000","47.000000","47.000000","0.000000","0.000000","0.000000","19.000000","19.000000","19.000000","44.000000","45.000000","45.000000","160.000000","6000.000000","0.000000","753642.000000",,,,, +"727.000000","18.915000","727.000000","18.915000","727.000000","18.915000","1570.000000","0.000000",,,,,,,,,,,,"0.000000","150.000000","288.000000","6.000000","150.000000","150.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2058680.000000","0.000000","2092704.000000","129468.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","0.000000","0.000000",,,,,,"10.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","26.000000","21.000000","60.000000","52.000000","47.000000","0.000000","0.000000","0.000000","20.000000","24.000000","19.000000","45.000000","46.000000","45.000000","160.000000","6000.000000","0.000000","753662.000000",,,,, +"445.000000","17.585000","445.000000","17.585000","445.000000","17.585000","1082.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","2.000000","154.500000","154.500000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2057680.000000","0.000000","2092704.000000","129468.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","24.000000","19.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","39.000000","160.000000","6000.000000","0.000000","753682.000000",,,,, +"570.000000","18.175000","570.000000","18.175000","570.000000","18.175000","1796.000000","0.000000",,,,,,,,,,,,"0.000000","125.000000","250.000000","7.000000","125.000000","125.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2056988.000000","0.000000","2092704.000000","129468.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","24.000000","18.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","38.000000","160.000000","6000.000000","0.000000","753702.000000",,,,, +"493.000000","15.810000","493.000000","15.810000","493.000000","15.810000","1821.000000","0.000000",,,,,,,,,,,,"0.000000","104.000000","207.000000","5.000000","104.000000","104.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2056080.000000","0.000000","2092704.000000","129468.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","20.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","17.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753722.000000",,,,, +"225.000000","14.550000","225.000000","14.550000","225.000000","14.550000","1426.000000","0.000000",,,,,,,,,,,,"0.000000","63.500000","126.000000","24.000000","63.500000","63.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2054420.000000","0.000000","2092704.000000","129468.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","19.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753742.000000",,,,, +"204.000000","14.450000","204.000000","14.450000","204.000000","14.450000","1647.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2053676.000000","0.000000","2092704.000000","129468.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","15.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","13.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753762.000000",,,,, +"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2052716.000000","0.000000","2092704.000000","129468.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","10.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753782.000000",,,,, +"223.000000","14.040000","223.000000","14.040000","223.000000","14.040000","966.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","0.000000","25.000000","25.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051720.000000","0.000000","2092704.000000","129468.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","9.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753802.000000",,,,, +"487.000000","15.285000","487.000000","15.285000","487.000000","15.285000","1001.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","222.000000","1.000000","111.000000","111.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051056.000000","0.000000","2092704.000000","129468.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","9.000000","17.000000","60.000000","15.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","15.000000","38.000000","160.000000","6000.000000","0.000000","753822.000000",,,,, +"544.000000","14.055000","544.000000","14.055000","544.000000","14.055000","1339.000000","0.000000",,,,,,,,,,,,"0.000000","195.000000","384.000000","2.000000","195.000000","195.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","25.000000","16.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","15.000000","17.000000","45.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","753842.000000",,,,, +"586.000000","14.250000","586.000000","14.250000","586.000000","14.250000","716.000000","0.000000",,,,,,,,,,,,"0.000000","136.000000","270.000000","1.000000","136.000000","136.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2049504.000000","0.000000","2092704.000000","129468.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","24.000000","21.000000","19.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","20.000000","18.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753862.000000",,,,, +"444.000000","13.585000","444.000000","13.585000","444.000000","13.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","85.500000","171.000000","5.000000","85.500000","85.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2048680.000000","0.000000","2092704.000000","129468.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","23.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","22.000000","17.000000","45.000000","45.000000","38.000000","160.000000","6000.000000","0.000000","753882.000000",,,,, +"709.000000","12.825000","709.000000","12.825000","709.000000","12.825000","432.000000","0.000000",,,,,,,,,,,,"0.000000","113.500000","227.000000","1.000000","113.500000","113.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2047468.000000","0.000000","2092704.000000","129468.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","22.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","21.000000","17.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753902.000000",,,,, +"253.000000","10.685000","253.000000","10.685000","253.000000","10.685000","510.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","6.000000","45.000000","45.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","17.000000","18.000000","52.000000","39.000000","40.000000","0.000000","0.000000","0.000000","20.000000","17.000000","17.000000","45.000000","39.000000","39.000000","160.000000","6000.000000","0.000000","753922.000000",,,,, +"221.000000","10.535000","221.000000","10.535000","221.000000","10.535000","491.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046084.000000","0.000000","2092704.000000","129468.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","15.000000","17.000000","48.000000","39.000000","40.000000","0.000000","0.000000","0.000000","19.000000","14.000000","16.000000","43.000000","39.000000","38.000000","160.000000","6000.000000","0.000000","753942.000000",,,,, +"224.000000","9.045000","224.000000","9.045000","224.000000","9.045000","441.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","1.000000","31.500000","31.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2045520.000000","0.000000","2092704.000000","129468.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","9.000000","37.000000","160.000000","6000.000000","0.000000","753962.000000",,,,, +"422.000000","9.980000","422.000000","9.980000","422.000000","9.980000","479.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","3.000000","52.500000","52.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2044384.000000","0.000000","2092704.000000","129468.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","10.000000","37.000000","160.000000","6000.000000","0.000000","753982.000000",,,,, +"534.000000","10.505000","534.000000","10.505000","534.000000","10.505000","765.000000","0.000000",,,,,,,,,,,,"0.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2043532.000000","0.000000","2092704.000000","129468.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","14.000000","15.000000","42.000000","39.000000","39.000000","0.000000","0.000000","0.000000","18.000000","13.000000","14.000000","39.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754002.000000",,,,, +"533.000000","10.000000","533.000000","10.000000","533.000000","10.000000","909.000000","0.000000",,,,,,,,,,,,"0.000000","215.500000","425.000000","1.000000","215.500000","215.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2041684.000000","0.000000","2092704.000000","129468.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","19.000000","15.000000","40.000000","39.000000","38.000000","0.000000","0.000000","0.000000","17.000000","17.000000","14.000000","38.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754022.000000",,,,, +"821.000000","11.355000","821.000000","11.355000","821.000000","11.355000","619.000000","0.000000",,,,,,,,,,,,"7.000000","388.500000","764.000000","3.000000","388.500000","388.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2039608.000000","0.000000","2092704.000000","129468.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","19.000000","26.000000","16.000000","42.000000","59.000000","39.000000","0.000000","0.000000","0.000000","17.000000","23.000000","15.000000","39.000000","50.000000","38.000000","160.000000","6000.000000","0.000000","754042.000000",,,,, +"1321.000000","13.700000","1321.000000","13.700000","1321.000000","13.700000","746.000000","0.000000",,,,,,,,,,,,"0.000000","208.500000","416.000000","4.000000","208.500000","208.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040120.000000","0.000000","2092704.000000","129468.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","19.000000","30.000000","18.000000","42.000000","69.000000","40.000000","0.000000","0.000000","0.000000","18.000000","28.000000","17.000000","39.000000","68.000000","39.000000","160.000000","6000.000000","0.000000","754062.000000",,,,, +"3092.000000","24.025000","3092.000000","24.025000","3092.000000","24.025000","901.000000","0.000000",,,,,,,,,,,,"0.000000","739.000000","1477.000000","3.000000","739.000000","739.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2042144.000000","0.000000","2092704.000000","129468.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","22.000000","73.000000","28.000000","46.000000","182.000000","69.000000","0.000000","0.000000","0.000000","20.000000","65.000000","25.000000","43.000000","165.000000","68.000000","160.000000","6000.000000","0.000000","754082.000000",,,,, +"2229.000000","19.970000","2229.000000","19.970000","2229.000000","19.970000","1079.000000","0.000000",,,,,,,,,,,,"0.000000","825.000000","1647.000000","0.000000","825.000000","825.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2040344.000000","0.000000","2092704.000000","129468.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","89.000000","32.000000","48.000000","182.000000","87.000000","0.000000","0.000000","0.000000","22.000000","80.000000","30.000000","45.000000","165.000000","84.000000","160.000000","6000.000000","0.000000","754102.000000",,,,, +"2212.000000","19.890000","2212.000000","19.890000","2212.000000","19.890000","978.000000","0.000000",,,,,,,,,,,,"0.000000","864.500000","1727.000000","1.000000","864.500000","864.500000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2039468.000000","0.000000","2092704.000000","129468.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","25.000000","104.000000","37.000000","59.000000","182.000000","94.000000","0.000000","0.000000","0.000000","23.000000","94.000000","34.000000","50.000000","165.000000","90.000000","160.000000","6000.000000","0.000000","754122.000000",,,,, +"1829.000000","16.590000","1829.000000","16.590000","1829.000000","16.590000","816.000000","0.000000",,,,,,,,,,,,"0.000000","636.500000","1271.000000","1.000000","636.500000","636.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038572.000000","0.000000","2092704.000000","129468.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","27.000000","83.000000","41.000000","69.000000","107.000000","101.000000","0.000000","0.000000","0.000000","25.000000","79.000000","38.000000","65.000000","106.000000","92.000000","160.000000","6000.000000","0.000000","754142.000000",,,,, +"1233.000000","13.790000","1233.000000","13.790000","1233.000000","13.790000","557.000000","0.000000",,,,,,,,,,,,"0.000000","112.000000","216.000000","4.000000","112.000000","112.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038256.000000","0.000000","2092704.000000","129468.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","0.000000","0.000000",,,,,,"1.000000","7.000000",,,,,,,,,,,"0.000000","28.000000","73.000000","43.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","70.000000","40.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754162.000000",,,,, +"237.000000","9.110000","237.000000","9.110000","237.000000","9.110000","551.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","4.000000","71.500000","71.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2037468.000000","0.000000","2092704.000000","129468.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","48.000000","42.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","47.000000","39.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754182.000000",,,,, +"221.000000","9.035000","221.000000","9.035000","221.000000","9.035000","525.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2036852.000000","0.000000","2092704.000000","129468.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","21.000000","41.000000","73.000000","101.000000","101.000000","0.000000","0.000000","0.000000","25.000000","21.000000","38.000000","68.000000","101.000000","93.000000","160.000000","6000.000000","0.000000","754202.000000",,,,, +"221.000000","8.530000","221.000000","8.530000","221.000000","8.530000","456.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","2.000000","20.500000","20.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035836.000000","0.000000","2092704.000000","129468.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","8.000000","41.000000","73.000000","10.000000","101.000000","0.000000","0.000000","0.000000","25.000000","8.000000","38.000000","68.000000","10.000000","93.000000","160.000000","6000.000000","0.000000","754222.000000",,,,, +"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","407.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","39.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035008.000000","0.000000","2092704.000000","129468.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","26.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754242.000000",,,,, +"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","513.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2034208.000000","0.000000","2092704.000000","129468.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754262.000000",,,,, +"573.000000","10.685000","573.000000","10.685000","573.000000","10.685000","621.000000","0.000000",,,,,,,,,,,,"0.000000","163.000000","325.000000","1.000000","163.000000","163.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2033288.000000","0.000000","2092704.000000","129468.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","41.000000","73.000000","17.000000","101.000000","0.000000","0.000000","0.000000","23.000000","9.000000","38.000000","68.000000","17.000000","93.000000","160.000000","6000.000000","0.000000","754282.000000",,,,, +"2602.000000","20.220000","2602.000000","20.220000","2602.000000","20.220000","2202.000000","0.000000",,,,,,,,,,,,"0.000000","946.500000","1890.000000","4.000000","946.500000","946.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2032872.000000","0.000000","2092704.000000","129468.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","26.000000","38.000000","46.000000","87.000000","105.000000","104.000000","0.000000","0.000000","0.000000","24.000000","35.000000","42.000000","81.000000","100.000000","100.000000","160.000000","6000.000000","0.000000","754302.000000",,,,, +"2372.000000","19.145000","2372.000000","19.145000","2372.000000","19.145000","1973.000000","0.000000",,,,,,,,,,,,"0.000000","918.000000","1833.000000","3.000000","918.000000","918.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2031076.000000","0.000000","2092704.000000","129468.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","74.000000","52.000000","91.000000","110.000000","105.000000","0.000000","0.000000","0.000000","26.000000","68.000000","48.000000","85.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754322.000000",,,,, +"2467.000000","20.590000","2467.000000","20.590000","2467.000000","20.590000","680.000000","0.000000",,,,,,,,,,,,"0.000000","740.500000","1479.000000","4.000000","740.500000","740.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031324.000000","0.000000","2092704.000000","129468.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","30.000000","99.000000","56.000000","94.000000","110.000000","105.000000","0.000000","0.000000","0.000000","28.000000","92.000000","52.000000","90.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754342.000000",,,,, +"2474.000000","20.620000","2474.000000","20.620000","2474.000000","20.620000","681.000000","0.000000",,,,,,,,,,,,"0.000000","489.500000","979.000000","3.000000","489.500000","489.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2030624.000000","0.000000","2092704.000000","129468.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","96.000000","59.000000","98.000000","110.000000","105.000000","0.000000","0.000000","0.000000","29.000000","91.000000","55.000000","91.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754362.000000",,,,, +"2462.000000","20.565000","2462.000000","20.565000","2462.000000","20.565000","632.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","966.000000","1.000000","483.000000","483.000000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031092.000000","0.000000","2092704.000000","129468.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","95.000000","56.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","92.000000","54.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754382.000000",,,,, +"601.000000","9.820000","601.000000","9.820000","601.000000","9.820000","649.000000","0.000000",,,,,,,,,,,,"0.000000","248.500000","486.000000","1.000000","248.500000","248.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2029480.000000","0.000000","2092704.000000","129468.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","0.000000","0.000000",,,,,,"6.000000","5.000000",,,,,,,,,,,"0.000000","34.000000","77.000000","53.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","73.000000","50.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754402.000000",,,,, +"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","519.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","62.000000","1.000000","35.500000","35.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028640.000000","0.000000","2092704.000000","129468.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","0.000000","0.000000",,,,,,"7.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","51.000000","48.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","48.000000","46.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754422.000000",,,,, +"241.000000","8.130000","241.000000","8.130000","241.000000","8.130000","376.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","26.000000","5.500000","5.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028088.000000","0.000000","2092704.000000","129468.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","16.000000","43.000000","98.000000","43.000000","103.000000","0.000000","0.000000","0.000000","32.000000","15.000000","41.000000","92.000000","43.000000","100.000000","160.000000","6000.000000","0.000000","754442.000000",,,,, +"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","449.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","9.000000","1.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2025096.000000","0.000000","2092704.000000","129468.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","0.000000","0.000000",,,,,,"5.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","13.000000","103.000000","0.000000","0.000000","0.000000","32.000000","9.000000","38.000000","92.000000","13.000000","97.000000","160.000000","6000.000000","0.000000","754462.000000",,,,, +"238.000000","7.115000","238.000000","7.115000","238.000000","7.115000","462.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","13.000000","0.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024296.000000","0.000000","2092704.000000","129468.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754482.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","557.000000","0.000000",,,,,,,,,,,,"0.000000","5.000000","7.000000","0.000000","5.000000","5.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024544.000000","0.000000","2092704.000000","129468.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","33.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754502.000000",,,,, +"999.000000","12.190000","999.000000","12.190000","999.000000","12.190000","821.000000","0.000000",,,,,,,,,,,,"0.000000","4304.000000","8588.000000","19.000000","4304.000000","4304.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","0.000000","0.000000",,,,,,"13.000000","6.000000",,,,,,,,,,,"0.000000","34.000000","21.000000","43.000000","98.000000","68.000000","103.000000","0.000000","0.000000","0.000000","32.000000","18.000000","40.000000","92.000000","68.000000","97.000000","160.000000","6000.000000","0.000000","754522.000000",,,,, +"2004.000000","21.415000","2004.000000","21.415000","2004.000000","21.415000","1226.000000","0.000000",,,,,,,,,,,,"0.000000","421.000000","842.000000","10.000000","421.000000","421.000000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2029164.000000","0.000000","2092704.000000","129468.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","36.000000","46.000000","98.000000","149.000000","104.000000","0.000000","0.000000","0.000000","32.000000","29.000000","43.000000","92.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","754542.000000",,,,, +"1618.000000","19.600000","1618.000000","19.600000","1618.000000","19.600000","838.000000","0.000000",,,,,,,,,,,,"0.000000","648.500000","1296.000000","4.000000","648.500000","648.500000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2028456.000000","0.000000","2092704.000000","129468.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","36.000000","74.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","33.000000","57.000000","48.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754562.000000",,,,, +"721.000000","18.380000","721.000000","18.380000","721.000000","18.380000","541.000000","0.000000",,,,,,,,,,,,"0.000000","115.500000","231.000000","6.000000","115.500000","115.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2029660.000000","0.000000","2092704.000000","129468.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","67.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","34.000000","53.000000","49.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754582.000000",,,,, +"245.000000","16.145000","245.000000","16.145000","245.000000","16.145000","486.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","3.000000","66.000000","66.000000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2028740.000000","0.000000","2092704.000000","129468.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","53.000000","49.000000","100.000000","234.000000","104.000000","0.000000","0.000000","0.000000","34.000000","42.000000","44.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754602.000000",,,,, +"233.000000","16.090000","233.000000","16.090000","233.000000","16.090000","586.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","17.000000","24.500000","24.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2026664.000000","0.000000","2092704.000000","129468.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","15.000000","42.000000","100.000000","46.000000","100.000000","0.000000","0.000000","0.000000","33.000000","15.000000","37.000000","95.000000","41.000000","100.000000","160.000000","6000.000000","0.000000","754622.000000",,,,, +"219.000000","15.525000","219.000000","15.525000","219.000000","15.525000","467.000000","0.000000",,,,,,,,,,,,"0.000000","32.500000","65.000000","1.000000","32.500000","32.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2027632.000000","0.000000","2092704.000000","129468.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","10.000000","37.000000","100.000000","20.000000","98.000000","0.000000","0.000000","0.000000","33.000000","9.000000","32.000000","95.000000","20.000000","97.000000","160.000000","6000.000000","0.000000","754642.000000",,,,, +"222.000000","15.540000","222.000000","15.540000","222.000000","15.540000","679.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","2.000000","22.500000","22.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026620.000000","0.000000","2092704.000000","129468.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","31.000000","100.000000","9.000000","98.000000","0.000000","0.000000","0.000000","33.000000","8.000000","27.000000","95.000000","9.000000","97.000000","160.000000","6000.000000","0.000000","754662.000000",,,,, +"223.000000","15.540000","223.000000","15.540000","223.000000","15.540000","736.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","0.000000","13.000000","13.000000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026760.000000","0.000000","2092704.000000","129468.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","24.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","21.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754682.000000",,,,, +"226.000000","18.555000","226.000000","18.555000","226.000000","18.555000","594.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","46.000000","23.000000","23.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2026204.000000","0.000000","2092704.000000","129468.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","8.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754702.000000",,,,, +"218.000000","18.520000","218.000000","18.520000","218.000000","18.520000","663.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","19.000000","20.500000","20.500000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2025288.000000","0.000000","2092704.000000","129468.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754722.000000",,,,, +"229.000000","18.570000","229.000000","18.570000","229.000000","18.570000","519.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","41.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754742.000000",,,,, +"236.000000","18.105000","236.000000","18.105000","236.000000","18.105000","438.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","1.000000","36.500000","36.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2024276.000000","0.000000","2092704.000000","129468.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","32.000000","8.000000","19.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754762.000000",,,,, +"412.000000","18.930000","412.000000","18.930000","412.000000","18.930000","574.000000","0.000000",,,,,,,,,,,,"0.000000","143.000000","284.000000","0.000000","143.000000","143.000000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2023432.000000","0.000000","2092704.000000","129468.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","35.000000","10.000000","23.000000","100.000000","25.000000","66.000000","0.000000","0.000000","0.000000","32.000000","10.000000","20.000000","95.000000","24.000000","43.000000","160.000000","6000.000000","0.000000","754782.000000",,,,, +"886.000000","21.160000","886.000000","21.160000","886.000000","21.160000","671.000000","0.000000",,,,,,,,,,,,"0.000000","226.500000","448.000000","2.000000","226.500000","226.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2022828.000000","0.000000","2092704.000000","129468.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","35.000000","19.000000","25.000000","100.000000","47.000000","66.000000","0.000000","0.000000","0.000000","32.000000","18.000000","21.000000","95.000000","44.000000","44.000000","160.000000","6000.000000","0.000000","754802.000000",,,,, +"2615.000000","26.285000","2615.000000","26.285000","2615.000000","26.285000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","518.500000","1036.000000","8.000000","518.500000","518.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026560.000000","0.000000","2092704.000000","129468.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","60.000000","31.000000","101.000000","264.000000","123.000000","0.000000","0.000000","0.000000","34.000000","49.000000","25.000000","97.000000","185.000000","108.000000","160.000000","6000.000000","0.000000","754822.000000",,,,, +"617.000000","16.895000","617.000000","16.895000","617.000000","16.895000","641.000000","0.000000",,,,,,,,,,,,"0.000000","286.500000","573.000000","94.000000","286.500000","286.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026092.000000","0.000000","2092704.000000","129468.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","62.000000","28.000000","101.000000","264.000000","47.000000","0.000000","0.000000","0.000000","35.000000","50.000000","24.000000","97.000000","185.000000","44.000000","160.000000","6000.000000","0.000000","754842.000000",,,,, +"634.000000","16.975000","634.000000","16.975000","634.000000","16.975000","533.000000","0.000000",,,,,,,,,,,,"0.000000","119.500000","239.000000","1.000000","119.500000","119.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026132.000000","0.000000","2092704.000000","129468.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","60.000000","22.000000","101.000000","264.000000","46.000000","0.000000","0.000000","0.000000","35.000000","49.000000","19.000000","97.000000","185.000000","41.000000","160.000000","6000.000000","0.000000","754862.000000",,,,, +"249.000000","12.665000","249.000000","12.665000","249.000000","12.665000","434.000000","0.000000",,,,,,,,,,,,"0.000000","73.500000","147.000000","35.000000","73.500000","73.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2026272.000000","0.000000","2092704.000000","129468.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","19.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","18.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754882.000000",,,,, +"222.000000","12.535000","222.000000","12.535000","222.000000","12.535000","830.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","13.000000","30.000000","30.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2025336.000000","0.000000","2092704.000000","129468.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","15.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","15.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754902.000000",,,,, +"230.000000","12.575000","230.000000","12.575000","230.000000","12.575000","549.000000","0.000000",,,,,,,,,,,,"0.000000","43.500000","87.000000","2.000000","43.500000","43.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","21.000000","101.000000","9.000000","41.000000","0.000000","0.000000","0.000000","35.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754922.000000",,,,, +"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","545.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","3.000000","29.000000","29.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2025392.000000","0.000000","2092704.000000","129468.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754942.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","911.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2024356.000000","0.000000","2092704.000000","129468.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754962.000000",,,,, +"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","632.000000","0.000000",,,,,,,,,,,,"0.000000","38.500000","77.000000","3.000000","38.500000","38.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2023372.000000","0.000000","2092704.000000","129468.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","8.000000","21.000000","98.000000","10.000000","41.000000","0.000000","0.000000","0.000000","31.000000","8.000000","18.000000","95.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754982.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv new file mode 100644 index 00000000..95854863 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv @@ -0,0 +1,847 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"621.250000",,"621.250000",,"621.250000",,"213.000000","0.000000",,,,,,,,,"4.250000","4675.000000","14395.250000","0.000000",,"250.875000",,,,"1.600000","0.000000","2.333333","10.333333","3.000000","0.000000","33.800000","0.000000","0.400000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.500000",,"658.500000",,"658.500000",,"275.250000","0.000000",,,,,,,,,"7.500000","4953.250000","14349.750000","2.625000",,"356.875000",,,,"4.800000","0.000000","0.333333","5.000000","8.500000","0.000000","96.600000","0.000000","1.600000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"576.500000",,"576.500000",,"576.500000",,"191.250000","0.000000",,,,,,,,,"6.250000","4338.750000","14378.250000","0.000000",,"356.125000",,,,"3.000000","0.000000","6.333333","7.000000","5.500000","0.000000","62.600000","0.000000","0.800000","61.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"243.000000",,"243.000000",,"243.000000",,"118.250000","0.000000",,,,,,,,,"4.750000","1830.000000","17188.750000","0.000000",,"192.750000",,,,"1.600000","0.000000","4.666667","3078.000000","2.875000","0.000000","34.400000","0.000000","0.200000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"348.750000",,"348.750000",,"348.750000",,"153.000000","0.000000",,,,,,,,,"5.750000","2627.000000","16510.250000","10.125000",,"238.375000",,,,"1.600000","0.375000","852.333333","1623.000000","2.125000","0.000000","33.200000","0.000000","7.800000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"79.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"631.000000",,"631.000000",,"631.000000",,"150.250000","0.000000",,,,,,,,,"4.750000","4749.250000","14454.500000","0.000000",,"342.375000",,,,"1.800000","0.000000","3.333333","304.000000","3.375000","0.000000","38.600000","0.000000","0.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"317.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"439.750000",,"439.750000",,"439.750000",,"165.750000","0.000000",,,,,,,,,"112.250000","3312.250000","15687.500000","19.875000",,"8504.625000",,,,"30.000000","0.750000","61.666667","94.000000","55.125000","0.000000","601.400000","0.000000","10.000000","591.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"131.500000","0.000000",,,,,,,,,"25.250000","4801.750000","14476.500000","3.375000",,"1435.375000",,,,"13.400000","0.000000","3.666667","9.666667","24.750000","0.000000","268.400000","0.000000","3.800000","264.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"73.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"434.500000",,"434.500000",,"434.500000",,"145.000000","0.000000",,,,,,,,,"103.000000","3271.500000","16027.500000","310.500000",,"3663.000000",,,,"56.600000","13.500000","4.333333","14.333333","92.250000","0.000000","1134.200000","0.000000","147.600000","986.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"92.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"689.000000",,"689.000000",,"689.000000",,"176.000000","0.000000",,,,,,,,,"8.750000","5185.750000","14445.000000","0.000000",,"465.375000",,,,"7.600000","0.000000","0.000000","3.000000","14.125000","0.000000","152.600000","0.000000","0.000000","152.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"620.750000",,"620.750000",,"620.750000",,"189.750000","0.000000",,,,,,,,,"7.750000","4672.250000","14427.500000","118.875000",,"244.750000",,,,"1.800000","1.500000","1.333333","10.333333","1.500000","0.000000","39.200000","0.000000","19.400000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"634.250000",,"634.250000",,"634.250000",,"184.750000","0.000000",,,,,,,,,"24.500000","4772.250000","14526.000000","538.500000",,"252.375000",,,,"3.600000","6.000000","2.000000","7.000000","0.750000","0.000000","75.000000","0.000000","65.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"728.750000",,"728.750000",,"728.750000",,"110.000000","0.000000",,,,,,,,,"21.500000","5484.000000","14597.500000","311.500000",,"552.375000",,,,"4.800000","3.000000","2.000000","6.000000","6.000000","0.000000","98.800000","0.000000","33.200000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"482.000000",,"482.000000",,"482.000000",,"157.250000","0.000000",,,,,,,,,"73.750000","3628.750000","15599.000000","1432.750000",,"354.000000",,,,"23.200000","41.625000","1.333333","7.000000","1.875000","0.000000","465.800000","0.000000","445.600000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"628.000000",,"628.000000",,"628.000000",,"124.500000","0.000000",,,,,,,,,"46.000000","4725.500000","14656.500000","698.000000",,"171.625000",,,,"10.400000","16.875000","0.333333","2.666667","2.250000","0.000000","208.200000","0.000000","180.800000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"568.250000",,"568.250000",,"568.250000",,"160.000000","0.000000",,,,,,,,,"33.500000","4275.750000","14718.000000","630.375000",,"149.250000",,,,"9.800000","16.125000","1.000000","3.000000","2.250000","0.000000","199.600000","0.000000","173.400000","26.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"497.250000",,"497.250000",,"497.250000",,"263.000000","0.000000",,,,,,,,,"38.250000","3743.750000","14730.750000","492.125000",,"132.625000",,,,"15.200000","25.500000","1.000000","2.333333","2.500000","0.000000","304.800000","0.000000","275.200000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"588.000000",,"588.000000",,"588.000000",,"196.500000","0.000000",,,,,,,,,"11.500000","4423.500000","14710.500000","32.625000",,"50.625000",,,,"5.400000","4.875000","1.333333","4.666667","4.875000","0.000000","110.800000","0.000000","55.400000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"459.500000",,"459.500000",,"459.500000",,"306.750000","0.000000",,,,,,,,,"39.750000","3458.750000","15256.750000","190.000000",,"342.750000",,,,"30.200000","45.750000","0.333333","2.666667","10.875000","0.000000","606.800000","0.000000","489.000000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"63.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"629.500000",,"629.500000",,"629.500000",,"188.000000","0.000000",,,,,,,,,"6.750000","4737.500000","14473.000000","0.000000",,"94.125000",,,,"4.400000","0.000000","0.000000","3.666667","8.250000","0.000000","90.000000","0.000000","0.200000","89.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"893.750000",,"893.750000",,"893.750000",,"182.750000","0.000000",,,,,,,,,"18.250000","6722.750000","12448.750000","71.250000",,"489.750000",,,,"14.600000","5.625000","1.000000","1.666667","21.375000","0.000000","293.200000","0.000000","63.200000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"84.000000","97.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1084.500000",,"1084.500000",,"1084.500000",,"314.500000","0.000000",,,,,,,,,"22.000000","8157.250000","9744.250000","77.250000",,"566.125000",,,,"12.800000","7.500000","1.000000","3.666667","16.500000","0.000000","259.200000","0.000000","80.200000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"56.000000","62.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1099.500000",,"1099.500000",,"1099.500000",,"230.000000","0.000000",,,,,,,,,"6.500000","8271.000000","9508.750000","1.125000",,"433.125000",,,,"2.200000","0.000000","5.333333","7.000000","4.125000","0.000000","46.200000","0.000000","1.200000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"82.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"936.250000",,"936.250000",,"936.250000",,"148.500000","0.000000",,,,,,,,,"7.750000","7041.500000","9505.750000","0.000000",,"432.375000",,,,"2.600000","0.000000","0.000000","6.000000","4.875000","0.000000","54.200000","0.000000","0.600000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"85.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1185.250000",,"1185.250000",,"1185.250000",,"212.750000","0.000000",,,,,,,,,"27.000000","8916.500000","9777.250000","42.125000",,"1180.375000",,,,"9.600000","5.000000","2.333333","12.333333","12.750000","0.000000","195.400000","0.000000","56.400000","139.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1209.750000",,"1209.750000",,"1209.750000",,"194.500000","0.000000",,,,,,,,,"13.750000","9099.000000","9606.500000","49.750000",,"394.125000",,,,"4.800000","4.500000","0.333333","5.666667","4.500000","0.000000","96.200000","0.000000","48.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1184.000000",,"1184.000000",,"1184.000000",,"220.000000","0.000000",,,,,,,,,"35.000000","8904.250000","9743.000000","75.750000",,"1512.250000",,,,"14.800000","7.500000","2.666667","19.333333","20.125000","0.000000","299.600000","0.000000","81.000000","218.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1193.250000",,"1193.250000",,"1193.250000",,"220.000000","0.000000",,,,,,,,,"7.250000","8977.000000","9522.750000","0.375000",,"383.625000",,,,"1.600000","0.000000","0.000000","11.666667","3.000000","0.000000","35.400000","0.000000","0.800000","34.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1256.750000",,"1256.750000",,"1256.750000",,"241.500000","0.000000",,,,,,,,,"8.500000","9451.250000","9538.000000","0.375000",,"548.250000",,,,"4.800000","0.000000","0.666667","11.666667","9.000000","0.000000","99.600000","0.000000","1.000000","98.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1177.500000",,"1177.500000",,"1177.500000",,"181.500000","0.000000",,,,,,,,,"2.750000","8856.500000","9524.000000","0.000000",,"337.375000",,,,"1.600000","0.000000","4.000000","18.666667","2.875000","0.000000","33.200000","0.000000","0.400000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1234.750000",,"1234.750000",,"1234.750000",,"238.500000","0.000000",,,,,,,,,"5.750000","9288.000000","9527.500000","0.000000",,"508.375000",,,,"2.400000","0.000000","0.000000","27.333333","4.500000","0.000000","51.200000","0.000000","0.000000","51.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1034.500000",,"1034.500000",,"1034.500000",,"240.000000","0.000000",,,,,,,,,"4.750000","7780.750000","9435.250000","0.000000",,"434.625000",,,,"3.000000","0.000000","0.000000","11.000000","5.625000","0.000000","61.200000","0.000000","0.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"911.750000",,"911.750000",,"911.750000",,"307.000000","0.000000",,,,,,,,,"6.000000","6859.000000","9366.000000","0.375000",,"288.250000",,,,"1.200000","0.000000","2.666667","11.000000","2.125000","0.000000","26.000000","0.000000","1.200000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"859.250000",,"859.250000",,"859.250000",,"348.750000","0.000000",,,,,,,,,"4.500000","6465.000000","9312.500000","0.000000",,"283.000000",,,,"2.000000","0.000000","6.666667","7.333333","3.750000","0.000000","43.200000","0.000000","0.400000","42.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"999.250000",,"999.250000",,"999.250000",,"360.750000","0.000000",,,,,,,,,"7.250000","7518.750000","9253.750000","0.125000",,"616.125000",,,,"2.800000","0.000000","1.333333","22.000000","5.250000","0.000000","59.800000","0.000000","0.600000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1148.000000",,"1148.000000",,"1148.000000",,"554.750000","0.000000",,,,,,,,,"6.250000","8635.750000","9197.000000","0.000000",,"393.625000",,,,"3.000000","0.000000","0.000000","21.000000","5.500000","0.000000","60.400000","0.000000","0.000000","60.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.750000",,"1077.750000",,"1077.750000",,"430.250000","0.000000",,,,,,,,,"4.250000","8109.250000","9216.750000","3.000000",,"324.750000",,,,"2.200000","0.000000","1.333333","13.666667","3.750000","0.000000","45.000000","0.000000","2.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"935.000000",,"935.000000",,"935.000000",,"278.250000","0.000000",,,,,,,,,"4.250000","7031.750000","9361.750000","1.500000",,"361.875000",,,,"2.200000","0.000000","1.000000","8.666667","4.000000","0.000000","47.200000","0.000000","2.600000","44.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"71.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1005.750000",,"1005.750000",,"1005.750000",,"231.750000","0.000000",,,,,,,,,"4.500000","7564.750000","9449.750000","1.500000",,"431.875000",,,,"2.600000","0.000000","5.666667","14.666667","4.750000","0.000000","55.400000","0.000000","1.400000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1214.000000",,"1214.000000",,"1214.000000",,"177.500000","0.000000",,,,,,,,,"4.000000","9132.500000","9522.000000","0.750000",,"422.500000",,,,"1.000000","0.000000","1.666667","16.666667","1.750000","0.000000","22.200000","0.000000","1.200000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"69.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1153.500000",,"1153.500000",,"1153.500000",,"202.000000","0.000000",,,,,,,,,"5.250000","8677.500000","9519.750000","0.750000",,"410.125000",,,,"2.200000","0.000000","6.000000","11.666667","4.000000","0.000000","47.200000","0.000000","1.200000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1273.000000",,"1273.000000",,"1273.000000",,"216.750000","0.000000",,,,,,,,,"4.500000","9574.500000","9517.750000","0.750000",,"337.000000",,,,"1.400000","0.000000","1.000000","14.000000","2.000000","0.000000","30.200000","0.000000","1.400000","28.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1401.000000",,"1401.000000",,"1401.000000",,"146.500000","0.000000",,,,,,,,,"9.000000","10537.750000","9641.750000","0.750000",,"552.375000",,,,"3.200000","0.000000","2.666667","12.666667","6.375000","0.000000","67.800000","0.000000","1.400000","66.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.250000",,"1077.250000",,"1077.250000",,"340.250000","0.000000",,,,,,,,,"6.250000","8103.250000","9389.500000","1.125000",,"403.875000",,,,"1.200000","0.000000","1.666667","28.333333","2.250000","0.000000","27.600000","0.000000","1.200000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1247.500000",,"1247.500000",,"1247.500000",,"144.500000","0.000000",,,,,,,,,"4.500000","9384.500000","9593.750000","0.750000",,"389.250000",,,,"1.600000","0.000000","2.333333","10.333333","2.875000","0.000000","34.000000","0.000000","0.800000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1179.000000",,"1179.000000",,"1179.000000",,"209.000000","0.000000",,,,,,,,,"4.500000","8866.750000","9529.500000","1.500000",,"500.250000",,,,"3.200000","0.000000","2.000000","10.000000","5.875000","0.000000","66.200000","0.000000","1.200000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"68.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.500000",,"1077.500000",,"1077.500000",,"381.500000","0.000000",,,,,,,,,"4.500000","8105.750000","9426.750000","0.750000",,"401.125000",,,,"1.600000","0.000000","2.666667","13.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1047.000000",,"1047.000000",,"1047.000000",,"306.750000","0.000000",,,,,,,,,"9.500000","7875.000000","9445.250000","1.875000",,"626.125000",,,,"2.800000","0.000000","15.333333","15.333333","5.250000","0.000000","59.200000","0.000000","2.200000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1169.500000",,"1169.500000",,"1169.500000",,"194.750000","0.000000",,,,,,,,,"7.000000","8796.000000","9571.000000","5.250000",,"440.250000",,,,"1.800000","0.375000","2.000000","16.000000","3.000000","0.000000","37.600000","0.000000","5.000000","32.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1152.000000",,"1152.000000",,"1152.000000",,"194.750000","0.000000",,,,,,,,,"6.500000","8668.250000","9542.500000","2.250000",,"387.375000",,,,"2.200000","0.250000","3.000000","14.000000","3.375000","0.000000","44.000000","0.000000","4.200000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"90.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1208.000000",,"1208.000000",,"1208.000000",,"258.000000","0.000000",,,,,,,,,"7.250000","9085.250000","9518.250000","2.125000",,"558.625000",,,,"2.200000","0.375000","3.666667","22.666667","3.625000","0.000000","46.200000","0.000000","5.200000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1289.500000",,"1289.500000",,"1289.500000",,"311.250000","0.000000",,,,,,,,,"14.000000","9698.250000","9481.750000","2.625000",,"954.250000",,,,"4.800000","0.375000","2.333333","15.333333","8.625000","0.000000","98.600000","0.000000","5.200000","93.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1233.000000",,"1233.000000",,"1233.000000",,"243.500000","0.000000",,,,,,,,,"50.000000","9275.500000","9567.250000","12.000000",,"4311.000000",,,,"16.200000","0.750000","1.333333","29.666667","29.375000","0.000000","326.400000","0.000000","11.000000","315.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1303.250000",,"1303.250000",,"1303.250000",,"285.000000","0.000000",,,,,,,,,"4.750000","9803.500000","9431.000000","2.625000",,"465.250000",,,,"1.600000","0.000000","2.000000","18.333333","3.000000","0.000000","35.000000","0.000000","1.400000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1176.250000",,"1176.250000",,"1176.250000",,"268.750000","0.000000",,,,,,,,,"21.500000","8848.500000","9592.250000","22.500000",,"653.250000",,,,"5.400000","2.250000","3.333333","17.666667","7.750000","0.000000","109.200000","0.000000","24.800000","84.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1040.000000",,"1040.000000",,"1040.000000",,"306.000000","0.000000",,,,,,,,,"164.750000","7822.750000","11172.250000","1767.000000",,"8112.375000",,,,"41.200000","31.875000","4.000000","28.000000","44.875000","0.000000","825.600000","0.000000","342.800000","482.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1200.250000",,"1200.250000",,"1200.250000",,"258.500000","0.000000",,,,,,,,,"8.750000","9026.750000","9451.500000","6.375000",,"359.250000",,,,"5.400000","0.375000","1.000000","5.000000","9.625000","0.000000","110.600000","0.000000","5.800000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.750000",,"1103.750000",,"1103.750000",,"174.000000","0.000000",,,,,,,,,"4.250000","8303.250000","9487.750000","1.875000",,"283.500000",,,,"3.000000","0.000000","0.333333","3.000000","5.625000","0.000000","63.800000","0.000000","2.800000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1052.500000",,"1052.500000",,"1052.500000",,"194.500000","0.000000",,,,,,,,,"6.000000","7917.500000","9537.000000","0.750000",,"419.250000",,,,"3.600000","0.000000","1.000000","6.333333","6.750000","0.000000","74.400000","0.000000","1.400000","73.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1119.250000",,"1119.250000",,"1119.250000",,"170.500000","0.000000",,,,,,,,,"4.250000","8421.500000","9519.750000","0.750000",,"297.625000",,,,"2.000000","0.000000","1.000000","5.666667","3.375000","0.000000","41.000000","0.000000","1.400000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1163.000000",,"1163.000000",,"1163.000000",,"268.250000","0.000000",,,,,,,,,"4.000000","8750.000000","9688.500000","4.875000",,"213.750000",,,,"2.000000","0.375000","1.000000","6.000000","3.000000","0.000000","42.200000","0.000000","6.800000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1135.750000",,"1135.750000",,"1135.750000",,"192.500000","0.000000",,,,,,,,,"5.250000","8544.250000","9544.250000","6.750000",,"414.250000",,,,"2.000000","0.375000","1.000000","7.000000","3.000000","0.000000","40.200000","0.000000","5.800000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1113.000000",,"1113.000000",,"1113.000000",,"230.750000","0.000000",,,,,,,,,"30.000000","8372.750000","9744.000000","343.125000",,"1490.875000",,,,"13.600000","11.875000","2.333333","14.666667","13.500000","0.000000","275.000000","0.000000","129.800000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1149.500000",,"1149.500000",,"1149.500000",,"391.000000","0.000000",,,,,,,,,"7.750000","8647.500000","9332.000000","0.750000",,"482.500000",,,,"2.600000","0.000000","1.000000","10.666667","4.875000","0.000000","55.000000","0.000000","0.800000","54.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1118.500000",,"1118.500000",,"1118.500000",,"456.250000","0.000000",,,,,,,,,"3.750000","8413.750000","9287.000000","3.000000",,"280.500000",,,,"1.600000","0.000000","0.666667","5.333333","2.625000","0.000000","33.000000","0.000000","3.800000","29.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1049.250000",,"1049.250000",,"1049.250000",,"376.500000","0.000000",,,,,,,,,"4.750000","7892.000000","9375.000000","0.750000",,"337.000000",,,,"1.600000","0.000000","0.666667","11.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1070.500000",,"1070.500000",,"1070.500000",,"235.750000","0.000000",,,,,,,,,"13.000000","8053.000000","9540.750000","11.250000",,"898.125000",,,,"6.200000","1.125000","1.000000","13.000000","10.125000","0.000000","126.600000","0.000000","14.800000","111.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"879.000000",,"879.000000",,"879.000000",,"224.250000","0.000000",,,,,,,,,"3.250000","6611.250000","9439.250000","2.250000",,"261.375000",,,,"1.400000","0.000000","0.666667","3.666667","2.625000","0.000000","30.800000","0.000000","1.400000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1266.000000",,"1266.000000",,"1266.000000",,"245.250000","0.000000",,,,,,,,,"5.750000","9523.000000","9497.500000","1.500000",,"525.625000",,,,"2.800000","0.000000","1.000000","17.000000","5.250000","0.000000","58.400000","0.000000","1.600000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1192.250000",,"1192.250000",,"1192.250000",,"222.000000","0.000000",,,,,,,,,"39.500000","8970.000000","10132.750000","800.000000",,"926.500000",,,,"12.200000","17.125000","3.000000","24.333333","5.125000","0.000000","246.600000","0.000000","190.400000","56.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.250000",,"832.250000",,"832.250000",,"290.750000","0.000000",,,,,,,,,"138.750000","6261.000000","11618.250000","2486.375000",,"2502.125000",,,,"48.400000","63.125000","4.333333","17.000000","27.250000","0.000000","969.400000","0.000000","670.000000","299.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"890.250000",,"890.250000",,"890.250000",,"162.750000","0.000000",,,,,,,,,"37.500000","6698.000000","9728.250000","145.500000",,"2053.875000",,,,"13.200000","4.750000","2.666667","16.666667","20.500000","0.000000","267.200000","0.000000","52.000000","215.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1097.000000",,"1097.000000",,"1097.000000",,"226.000000","0.000000",,,,,,,,,"132.250000","8252.000000","10489.000000","1836.375000",,"5403.375000",,,,"32.000000","28.875000","4.000000","54.333333","30.625000","0.000000","641.600000","0.000000","310.400000","331.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1106.000000",,"1106.000000",,"1106.000000",,"233.250000","0.000000",,,,,,,,,"59.750000","8320.750000","9779.500000","235.375000",,"3152.500000",,,,"14.800000","6.000000","7.333333","26.000000","21.750000","0.000000","298.000000","0.000000","65.400000","232.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"919.500000",,"919.500000",,"919.500000",,"218.000000","0.000000",,,,,,,,,"132.750000","6918.250000","11311.000000","2017.875000",,"4981.875000",,,,"52.800000","42.500000","3.333333","14.333333","56.250000","0.000000","1058.800000","0.000000","456.400000","602.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"721.500000",,"721.500000",,"721.500000",,"245.750000","0.000000",,,,,,,,,"199.250000","5428.500000","13670.500000","5626.000000",,"1585.000000",,,,"75.600000","124.000000","3.000000","14.666667","17.500000","0.000000","1513.400000","0.000000","1324.800000","188.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"692.500000",,"692.500000",,"692.500000",,"240.750000","0.000000",,,,,,,,,"185.250000","5208.500000","13591.750000","5036.625000",,"3171.750000",,,,"67.800000","103.875000","2.333333","40.000000","22.875000","0.000000","1356.600000","0.000000","1111.000000","245.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"391.250000","0.000000",,,,,,,,,"118.000000","4800.750000","11860.500000","3595.750000",,"1887.250000",,,,"57.200000","83.125000","3.333333","18.666667","23.750000","0.000000","1145.600000","0.000000","887.800000","257.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.250000",,"884.250000",,"884.250000",,"164.500000","0.000000",,,,,,,,,"60.500000","6650.750000","9566.000000","20.875000",,"4638.875000",,,,"19.600000","2.250000","4.000000","23.333333","34.375000","0.000000","394.400000","0.000000","26.600000","367.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"888.500000",,"888.500000",,"888.500000",,"198.000000","0.000000",,,,,,,,,"29.750000","6684.250000","9823.250000","97.125000",,"1653.000000",,,,"11.600000","8.125000","3.000000","26.333333","13.125000","0.000000","233.400000","0.000000","90.000000","143.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"49.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"770.750000",,"770.750000",,"770.750000",,"347.000000","0.000000",,,,,,,,,"35.500000","5800.750000","9857.250000","99.250000",,"1902.375000",,,,"20.200000","11.500000","3.333333","14.333333","26.250000","0.000000","406.600000","0.000000","124.000000","282.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"773.750000",,"773.750000",,"773.750000",,"366.000000","0.000000",,,,,,,,,"36.250000","5821.250000","9557.250000","81.375000",,"2123.125000",,,,"9.800000","6.625000","3.666667","21.666667","11.625000","0.000000","198.200000","0.000000","72.000000","126.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"776.000000",,"776.000000",,"776.000000",,"146.500000","0.000000",,,,,,,,,"97.500000","5839.500000","9938.250000","144.375000",,"6435.750000",,,,"43.800000","7.750000","2.666667","16.666667","74.125000","0.000000","878.400000","0.000000","84.800000","793.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"830.000000",,"830.000000",,"830.000000",,"173.500000","0.000000",,,,,,,,,"96.000000","6245.000000","9766.500000","166.625000",,"6922.000000",,,,"37.000000","5.500000","3.333333","14.333333","63.625000","0.000000","740.600000","0.000000","60.600000","680.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"845.000000",,"845.000000",,"845.000000",,"176.250000","0.000000",,,,,,,,,"61.500000","6355.500000","9618.000000","511.500000",,"3904.125000",,,,"21.800000","15.000000","2.333333","30.666667","25.125000","0.000000","436.000000","0.000000","161.200000","274.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"546.500000",,"546.500000",,"546.500000",,"192.750000","0.000000",,,,,,,,,"152.000000","4113.250000","13040.250000","4297.875000",,"3844.875000",,,,"65.600000","83.250000","1.666667","19.666667","39.750000","0.000000","1312.800000","0.000000","891.000000","421.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"571.000000",,"571.000000",,"571.000000",,"202.000000","0.000000",,,,,,,,,"153.500000","4297.250000","12469.250000","5664.375000",,"572.500000",,,,"77.400000","137.750000","1.666667","10.666667","6.375000","0.000000","1549.400000","0.000000","1478.000000","71.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"16.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"599.000000",,"599.000000",,"599.000000",,"167.000000","0.000000",,,,,,,,,"170.000000","4509.000000","12168.500000","5083.000000",,"3655.375000",,,,"65.000000","99.500000","2.000000","61.000000","22.000000","0.000000","1300.800000","0.000000","1061.200000","239.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.500000",,"856.500000",,"856.500000",,"170.000000","0.000000",,,,,,,,,"34.250000","6444.250000","9763.500000","436.000000",,"778.125000",,,,"16.600000","20.875000","1.333333","19.666667","10.375000","0.000000","335.600000","0.000000","221.400000","114.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"844.750000",,"844.750000",,"844.750000",,"151.250000","0.000000",,,,,,,,,"9.000000","6356.000000","9453.000000","108.625000",,"234.375000",,,,"3.400000","1.875000","2.333333","6.666667","4.375000","0.000000","70.600000","0.000000","22.600000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"927.250000",,"927.250000",,"927.250000",,"272.000000","0.000000",,,,,,,,,"92.500000","6976.000000","10669.250000","3851.000000",,"289.375000",,,,"32.800000","59.000000","1.666667","8.666667","2.125000","0.000000","658.600000","0.000000","634.600000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"92.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"862.250000",,"862.250000",,"862.250000",,"178.500000","0.000000",,,,,,,,,"233.000000","6485.750000","13051.000000","8340.375000",,"213.375000",,,,"90.000000","164.250000","1.666667","3.000000","4.125000","0.000000","1800.600000","0.000000","1754.200000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"152.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"738.000000",,"738.000000",,"738.000000",,"443.750000","0.000000",,,,,,,,,"192.500000","5551.000000","11826.750000","6543.750000",,"3211.125000",,,,"77.200000","128.625000","1.666667","26.666667","16.125000","0.000000","1545.600000","0.000000","1369.800000","175.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"879.000000",,"879.000000",,"879.000000",,"351.750000","0.000000",,,,,,,,,"123.000000","6611.750000","10663.500000","3568.500000",,"2447.625000",,,,"51.600000","73.875000","2.333333","14.000000","22.500000","0.000000","1033.800000","0.000000","790.600000","243.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1041.250000",,"1041.250000",,"1041.250000",,"264.000000","0.000000",,,,,,,,,"2.000000","7831.500000","9382.250000","1.875000",,"205.125000",,,,"2.000000","0.000000","0.333333","4.666667","3.375000","0.000000","41.200000","0.000000","2.800000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1236.000000",,"1236.000000",,"1236.000000",,"258.000000","0.000000",,,,,,,,,"4.000000","9296.000000","9467.250000","3.000000",,"248.500000",,,,"1.000000","0.375000","1.000000","6.333333","1.375000","0.000000","21.600000","0.000000","4.400000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1147.500000",,"1147.500000",,"1147.500000",,"239.250000","0.000000",,,,,,,,,"9.000000","8632.750000","9486.000000","10.125000",,"353.250000",,,,"3.400000","1.125000","2.666667","7.000000","4.875000","0.000000","70.600000","0.000000","15.200000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"838.000000",,"838.000000",,"838.000000",,"317.500000","0.000000",,,,,,,,,"7.000000","6305.750000","9348.750000","2.250000",,"428.250000",,,,"2.400000","0.250000","3.333333","12.000000","4.000000","0.000000","49.200000","0.000000","4.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"972.250000",,"972.250000",,"972.250000",,"284.000000","0.000000",,,,,,,,,"5.250000","7314.250000","9480.000000","5.375000",,"275.625000",,,,"1.800000","0.750000","3.000000","8.000000","2.500000","0.000000","39.600000","0.000000","11.600000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"757.500000",,"757.500000",,"757.500000",,"294.250000","0.000000",,,,,,,,,"128.250000","5700.250000","13223.750000","5434.500000",,"328.500000",,,,"54.800000","99.375000","1.666667","9.333333","2.250000","0.000000","1096.200000","0.000000","1068.600000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"301.750000",,"301.750000",,"301.750000",,"157.250000","0.000000",,,,,,,,,"201.000000","2272.500000","17358.750000","7626.250000",,"23.250000",,,,"83.200000","153.750000","1.666667","0.666667","2.250000","0.000000","1665.400000","0.000000","1638.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"340.250000",,"340.250000",,"340.250000",,"174.500000","0.000000",,,,,,,,,"219.000000","2562.250000","16424.250000","6782.375000",,"3898.125000",,,,"74.000000","122.500000","1.666667","47.666667","15.750000","0.000000","1482.400000","0.000000","1311.000000","171.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"246.750000",,"246.750000",,"246.750000",,"209.750000","0.000000",,,,,,,,,"137.750000","1859.500000","16981.500000","2947.875000",,"2074.875000",,,,"73.800000","120.125000","2.666667","15.333333","17.625000","0.000000","1479.800000","0.000000","1288.400000","191.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","30.000000",,,,,,,,,"145.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"164.250000",,"164.250000",,"164.250000",,"134.000000","0.000000",,,,,,,,,"336.000000","1238.500000","18437.250000","9678.250000",,"8990.250000",,,,"137.200000","222.500000","3.000000","23.000000","34.750000","0.000000","2746.400000","0.000000","2372.200000","374.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","10.000000",,,,,,,,,"64.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.250000",,"179.250000",,"179.250000",,"205.250000","0.000000",,,,,,,,,"318.750000","1351.000000","17913.500000","8686.125000",,"10420.000000",,,,"127.600000","208.750000","1.666667","34.000000","30.375000","0.000000","2552.400000","0.000000","2226.400000","326.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"114.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"137.750000",,"137.750000",,"137.750000",,"147.000000","0.000000",,,,,,,,,"38.250000","1037.750000","18180.000000","631.625000",,"152.750000",,,,"23.200000","31.250000","2.000000","1.666667","11.875000","0.000000","465.600000","0.000000","334.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"89.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"131.750000",,"131.750000",,"131.750000",,"214.000000","0.000000",,,,,,,,,"18.750000","994.250000","17890.000000","45.250000",,"106.000000",,,,"6.400000","3.375000","1.333333","1.666667","8.625000","0.000000","131.800000","0.000000","37.600000","94.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","11.000000",,,,,,,,,"2409.000000","2501.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"272.750000",,"272.750000",,"272.750000",,"234.000000","0.000000",,,,,,,,,"77.250000","2053.250000","16793.000000","27.000000",,"4003.875000",,,,"23.800000","1.500000","7.666667","23.000000","43.000000","0.000000","479.400000","0.000000","18.600000","460.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1986.000000","19.000000",,,,,,,,,"27730.000000","3613.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"139.000000",,"139.000000",,"139.000000",,"160.750000","0.000000",,,,,,,,,"6.250000","1049.000000","18475.000000","15.375000",,"202.750000",,,,"4.000000","0.750000","3.333333","2.666667","6.250000","0.000000","80.000000","0.000000","10.400000","69.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"202.000000",,"202.000000",,"202.000000",,"169.750000","0.000000",,,,,,,,,"4.750000","1521.250000","17906.250000","6.750000",,"129.750000",,,,"5.400000","0.000000","3.333333","1.666667","9.750000","0.000000","109.800000","0.000000","2.200000","107.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"109.250000",,"109.250000",,"109.250000",,"169.500000","0.000000",,,,,,,,,"4.250000","825.500000","18638.750000","2.250000",,"69.750000",,,,"2.200000","0.000000","1.333333","1.333333","4.125000","0.000000","46.800000","0.000000","0.400000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"140.750000","0.000000",,,,,,,,,"1.250000","453.500000","19198.500000","0.000000",,"42.625000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"103.500000","0.000000",,,,,,,,,"1.750000","510.750000","19209.750000","0.000000",,"43.875000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.600000","0.000000","0.400000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"96.500000","0.000000",,,,,,,,,"1.250000","453.750000","19397.250000","0.000000",,"20.625000",,,,"0.800000","0.000000","0.000000","13.666667","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"113.250000","0.000000",,,,,,,,,"1.000000","445.750000","19323.000000","0.000000",,"18.000000",,,,"0.800000","0.000000","0.000000","87.333333","1.500000","0.000000","19.800000","0.000000","0.200000","19.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.750000",,"70.750000",,"70.750000",,"101.500000","0.000000",,,,,,,,,"1.250000","536.750000","19283.250000","0.000000",,"36.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"126.500000","0.000000",,,,,,,,,"0.750000","452.750000","19248.250000","0.000000",,"27.625000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"118.250000","0.000000",,,,,,,,,"0.750000","441.750000","19263.250000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","0.000000","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"88.250000",,"88.250000",,"88.250000",,"112.000000","0.000000",,,,,,,,,"3.250000","667.500000","19030.000000","0.000000",,"88.125000",,,,"3.800000","0.000000","0.000000","0.333333","7.125000","0.000000","79.800000","0.000000","0.200000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"106.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"177.000000",,"177.000000",,"177.000000",,"171.750000","0.000000",,,,,,,,,"10.500000","1333.750000","17748.750000","16.500000",,"162.250000",,,,"7.400000","1.375000","2.333333","1.333333","12.250000","0.000000","148.000000","0.000000","16.400000","131.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"455.000000","544.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"255.250000",,"255.250000",,"255.250000",,"181.250000","0.000000",,,,,,,,,"19.750000","1923.000000","16834.000000","14.500000",,"317.875000",,,,"9.000000","0.625000","1.333333","3.000000","16.000000","0.000000","181.800000","0.000000","8.200000","173.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","15.000000",,,,,,,,,"2880.000000","3071.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"242.500000",,"242.500000",,"242.500000",,"123.750000","0.000000",,,,,,,,,"42.750000","1827.250000","17293.500000","0.250000",,"3283.000000",,,,"15.600000","0.000000","2.666667","19.000000","28.875000","0.000000","313.000000","0.000000","1.200000","311.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","5.000000",,,,,,,,,"1035.000000","1113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.250000",,"179.250000",,"179.250000",,"286.500000","0.000000",,,,,,,,,"3.750000","1353.000000","17748.250000","0.625000",,"218.625000",,,,"4.000000","0.000000","4.333333","2.333333","7.375000","0.000000","82.200000","0.000000","2.000000","80.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"108.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"112.750000",,"112.750000",,"112.750000",,"301.000000","0.000000",,,,,,,,,"2.500000","850.750000","18167.250000","0.000000",,"90.375000",,,,"3.800000","0.000000","0.333333","4.333333","7.000000","0.000000","77.800000","0.000000","0.200000","77.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"151.750000",,"151.750000",,"151.750000",,"213.500000","0.000000",,,,,,,,,"2.500000","1145.750000","17743.750000","0.000000",,"100.875000",,,,"3.600000","0.000000","0.000000","1.000000","6.625000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"173.500000","0.000000",,,,,,,,,"1.500000","452.500000","19107.750000","0.000000",,"46.125000",,,,"2.000000","0.000000","0.000000","3.000000","3.625000","0.000000","42.600000","0.000000","0.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"177.250000","0.000000",,,,,,,,,"0.500000","460.000000","19198.000000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"160.250000","0.000000",,,,,,,,,"1.250000","486.250000","19026.000000","0.000000",,"37.500000",,,,"1.400000","0.000000","0.000000","0.333333","2.625000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"112.250000","0.000000",,,,,,,,,"0.750000","438.000000","19373.000000","0.000000",,"13.875000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"191.250000","0.000000",,,,,,,,,"0.500000","412.750000","18993.500000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"118.750000","0.000000",,,,,,,,,"2.000000","480.000000","19166.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.000000","2.875000","0.000000","35.200000","0.000000","0.200000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"132.000000","0.000000",,,,,,,,,"0.250000","404.000000","19248.000000","0.000000",,"8.125000",,,,"0.200000","0.000000","0.000000","0.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"157.000000","0.000000",,,,,,,,,"0.750000","408.500000","19278.250000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"132.250000","0.000000",,,,,,,,,"2.000000","497.750000","19234.000000","0.000000",,"48.750000",,,,"2.000000","0.000000","0.000000","1.333333","3.750000","0.000000","42.200000","0.000000","0.000000","42.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"111.750000","0.000000",,,,,,,,,"7.750000","1097.750000","18184.750000","0.250000",,"156.625000",,,,"7.000000","0.000000","6.000000","1.333333","12.000000","0.000000","142.000000","0.000000","1.400000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"488.000000","586.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"154.750000",,"154.750000",,"154.750000",,"149.250000","0.000000",,,,,,,,,"6.000000","1169.500000","17919.750000","52.875000",,"103.375000",,,,"5.400000","3.000000","0.333333","1.000000","7.625000","0.000000","110.200000","0.000000","35.800000","74.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"97.500000",,"97.500000",,"97.500000",,"228.250000","0.000000",,,,,,,,,"2.000000","735.750000","18442.500000","12.375000",,"65.625000",,,,"2.600000","0.375000","1.666667","2.333333","4.125000","0.000000","54.200000","0.000000","7.600000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"127.500000",,"127.500000",,"127.500000",,"120.250000","0.000000",,,,,,,,,"6.500000","963.000000","18459.500000","4.875000",,"124.750000",,,,"5.600000","0.000000","4.666667","2.000000","10.375000","0.000000","112.800000","0.000000","0.800000","112.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"64.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"112.500000",,"112.500000",,"112.500000",,"156.750000","0.000000",,,,,,,,,"3.250000","850.250000","18498.250000","0.000000",,"55.875000",,,,"1.800000","0.000000","0.000000","1.000000","3.375000","0.000000","39.000000","0.000000","0.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","419.500000","19175.750000","0.000000",,"39.375000",,,,"2.000000","0.000000","1.333333","1.333333","3.750000","0.000000","42.800000","0.000000","0.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"157.500000","0.000000",,,,,,,,,"1.250000","452.750000","19200.500000","12.625000",,"18.750000",,,,"1.600000","1.000000","2.000000","1.000000","1.375000","0.000000","34.800000","0.000000","15.800000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"164.500000","0.000000",,,,,,,,,"13.250000","516.500000","19016.500000","241.000000",,"34.875000",,,,"6.600000","10.625000","1.666667","0.333333","1.375000","0.000000","133.000000","0.000000","114.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"246.000000","302.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","422.000000","19207.750000","0.000000",,"33.375000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","38.400000","0.000000","0.000000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"106.500000","0.000000",,,,,,,,,"0.750000","416.750000","19279.250000","0.000000",,"13.500000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.400000","0.000000","0.000000","10.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"114.250000","0.000000",,,,,,,,,"2.000000","427.000000","19296.000000","0.000000",,"19.500000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"111.000000","0.000000",,,,,,,,,"4.000000","433.000000","19307.500000","0.000000",,"16.125000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.600000","0.000000","0.000000","11.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"102.750000","0.000000",,,,,,,,,"1.750000","447.750000","19294.000000","0.000000",,"16.000000",,,,"0.800000","0.000000","2.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.200000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"125.250000","0.000000",,,,,,,,,"0.750000","423.500000","19229.250000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"108.250000",,"108.250000",,"108.250000",,"127.000000","0.000000",,,,,,,,,"7.500000","817.750000","18757.500000","2.625000",,"126.000000",,,,"5.600000","0.000000","6.000000","6.333333","9.875000","0.000000","112.400000","0.000000","0.800000","111.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"405.000000","480.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"160.750000",,"160.750000",,"160.750000",,"144.500000","0.000000",,,,,,,,,"4.750000","1212.750000","17988.000000","1.875000",,"127.125000",,,,"5.000000","0.000000","0.666667","22.333333","9.500000","0.000000","103.600000","0.000000","2.000000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"245.000000","290.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"222.750000",,"222.750000",,"222.750000",,"117.750000","0.000000",,,,,,,,,"15.750000","1680.250000","17308.250000","0.000000",,"297.000000",,,,"8.200000","0.000000","1.000000","7.666667","15.250000","0.000000","165.000000","0.000000","0.400000","164.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","9.000000",,,,,,,,,"1570.000000","1763.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.750000",,"68.750000",,"68.750000",,"138.750000","0.000000",,,,,,,,,"5.000000","523.000000","19175.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","3.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.000000","3.000000",,,,,,,,,"732.000000","729.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.500000",,"64.500000",,"64.500000",,"239.250000","0.000000",,,,,,,,,"4.000000","487.250000","18849.250000","0.000000",,"3.000000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","4.000000",,,,,,,,,"842.000000","842.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"228.000000",,"228.000000",,"228.000000",,"189.500000","0.000000",,,,,,,,,"35.000000","1717.250000","17721.000000","1.875000",,"1793.250000",,,,"10.200000","0.000000","2.666667","21.000000","18.750000","0.000000","206.600000","0.000000","3.600000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1035.000000","13.000000",,,,,,,,,"14803.000000","2489.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"122.250000",,"122.250000",,"122.250000",,"247.500000","0.000000",,,,,,,,,"5.250000","922.750000","18285.250000","2.250000",,"126.750000",,,,"5.800000","0.000000","0.666667","1.666667","10.750000","0.000000","119.600000","0.000000","1.800000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"158.000000","188.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"182.500000","0.000000",,,,,,,,,"0.750000","501.750000","19063.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.800000","0.000000","0.000000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.750000",,"69.750000",,"69.750000",,"160.000000","0.000000",,,,,,,,,"11.500000","527.250000","19121.250000","372.750000",,"24.375000",,,,"4.400000","6.000000","2.333333","1.000000","2.250000","0.000000","91.400000","0.000000","66.200000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"386.000000","433.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.500000",,"162.500000",,"162.500000",,"147.500000","0.000000",,,,,,,,,"28.250000","1224.000000","18232.250000","581.125000",,"52.375000",,,,"25.600000","44.500000","0.666667","1.000000","3.250000","0.000000","512.800000","0.000000","476.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"160.000000","175.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"118.250000","0.000000",,,,,,,,,"1.000000","422.250000","19271.500000","0.000000",,"28.000000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"115.500000","0.000000",,,,,,,,,"0.500000","410.500000","19302.000000","0.000000",,"36.625000",,,,"0.600000","0.000000","0.000000","1.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"124.750000","0.000000",,,,,,,,,"2.250000","495.000000","19173.250000","0.000000",,"46.000000",,,,"1.600000","0.000000","0.000000","0.333333","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"113.500000","0.000000",,,,,,,,,"0.750000","405.250000","19295.750000","0.000000",,"28.000000",,,,"1.200000","0.000000","0.000000","11.333333","2.125000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"108.750000","0.000000",,,,,,,,,"0.500000","402.750000","19357.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.666667","0.625000","0.000000","9.200000","0.000000","0.000000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"126.250000","0.000000",,,,,,,,,"1.500000","511.000000","19204.500000","0.000000",,"54.750000",,,,"2.200000","0.000000","1.333333","0.666667","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"146.500000","0.000000",,,,,,,,,"15.750000","1197.000000","18123.250000","6.750000",,"230.125000",,,,"10.200000","0.375000","0.333333","0.333333","18.375000","0.000000","206.400000","0.000000","7.400000","199.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","7.000000",,,,,,,,,"929.000000","1171.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"130.500000","0.000000",,,,,,,,,"5.750000","1113.250000","18286.500000","1.500000",,"143.125000",,,,"5.400000","0.000000","2.666667","1.000000","10.000000","0.000000","109.800000","0.000000","0.400000","109.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"212.000000","244.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"120.750000","0.000000",,,,,,,,,"1.000000","497.000000","19167.000000","0.000000",,"30.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"153.500000","0.000000",,,,,,,,,"1.000000","406.500000","19257.500000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"94.250000","0.000000",,,,,,,,,"1.000000","434.250000","19351.750000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","5.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.500000",,"116.500000",,"116.500000",,"125.250000","0.000000",,,,,,,,,"14.250000","881.000000","18691.500000","158.625000",,"62.625000",,,,"9.800000","15.000000","0.333333","0.666667","2.875000","0.000000","197.000000","0.000000","163.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"224.500000","0.000000",,,,,,,,,"1.000000","405.500000","19090.750000","0.000000",,"23.250000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"190.500000","0.000000",,,,,,,,,"0.500000","413.750000","19097.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","2.666667","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"160.500000","0.000000",,,,,,,,,"1.000000","500.000000","19105.000000","0.000000",,"45.750000",,,,"1.800000","0.000000","0.000000","3.000000","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"130.250000","0.000000",,,,,,,,,"0.500000","389.750000","19273.750000","0.000000",,"10.375000",,,,"0.200000","0.000000","0.000000","6.666667","0.375000","0.000000","7.400000","0.000000","0.000000","7.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"124.500000","0.000000",,,,,,,,,"1.000000","420.500000","19223.500000","0.000000",,"25.000000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.200000","0.000000","0.000000","24.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.000000",,"147.000000",,"147.000000",,"151.500000","0.000000",,,,,,,,,"6.250000","1111.500000","18403.250000","0.750000",,"118.750000",,,,"5.000000","0.000000","1.666667","1.000000","9.250000","0.000000","100.800000","0.000000","0.600000","100.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"78.250000",,"78.250000",,"78.250000",,"139.000000","0.000000",,,,,,,,,"2.500000","591.250000","19009.500000","0.000000",,"57.750000",,,,"1.800000","0.000000","0.000000","0.666667","3.250000","0.000000","36.800000","0.000000","0.000000","36.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.500000",,"58.500000",,"58.500000",,"123.250000","0.000000",,,,,,,,,"1.000000","443.500000","19295.500000","0.000000",,"30.375000",,,,"1.200000","0.000000","0.000000","3.666667","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"121.000000","0.000000",,,,,,,,,"1.000000","512.500000","19125.250000","0.000000",,"33.000000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"155.500000","0.000000",,,,,,,,,"3.250000","421.250000","19143.000000","0.000000",,"23.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"114.500000","0.000000",,,,,,,,,"0.500000","431.000000","19341.000000","0.000000",,"20.625000",,,,"0.600000","0.000000","0.000000","5.000000","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"129.500000","0.000000",,,,,,,,,"2.000000","497.000000","19211.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","12.333333","2.500000","0.000000","29.400000","0.000000","0.000000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"189.500000","0.000000",,,,,,,,,"5.000000","412.250000","19131.250000","0.000000",,"20.625000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.400000","0.000000","0.000000","23.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"261.750000","0.000000",,,,,,,,,"1.250000","394.250000","19025.000000","0.000000",,"11.125000",,,,"0.200000","0.000000","0.000000","1.333333","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.750000",,"66.750000",,"66.750000",,"311.750000","0.000000",,,,,,,,,"1.750000","506.000000","18766.000000","3.375000",,"51.375000",,,,"2.200000","0.375000","0.666667","9.000000","3.750000","0.000000","45.800000","0.000000","4.400000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"102.250000",,"102.250000",,"102.250000",,"346.000000","0.000000",,,,,,,,,"3.250000","772.750000","18513.500000","0.000000",,"61.875000",,,,"3.000000","0.000000","1.000000","1.333333","5.625000","0.000000","63.000000","0.000000","0.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"288.000000","0.000000",,,,,,,,,"5.250000","897.500000","18532.750000","1.875000",,"131.875000",,,,"4.400000","0.000000","2.000000","1.333333","8.250000","0.000000","91.000000","0.000000","0.600000","90.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"187.250000","0.000000",,,,,,,,,"1.250000","486.500000","19063.500000","0.000000",,"29.625000",,,,"1.000000","0.000000","0.000000","18.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"150.500000","0.000000",,,,,,,,,"0.500000","413.000000","19210.000000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.500000",,"59.500000",,"59.500000",,"128.250000","0.000000",,,,,,,,,"2.000000","452.250000","19229.000000","0.000000",,"26.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.000000",,"71.000000",,"71.000000",,"124.250000","0.000000",,,,,,,,,"2.250000","535.750000","19193.250000","0.375000",,"51.750000",,,,"2.000000","0.000000","2.666667","3.666667","3.750000","0.000000","40.800000","0.000000","0.200000","40.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.250000",,"52.250000",,"52.250000",,"171.000000","0.000000",,,,,,,,,"1.250000","396.250000","19177.500000","0.000000",,"16.000000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","16.200000","0.000000","0.000000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"120.500000","0.000000",,,,,,,,,"0.250000","415.500000","19324.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","14.000000","0.000000","0.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"203.500000","0.000000",,,,,,,,,"1.750000","504.750000","19065.000000","0.000000",,"45.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","34.200000","0.000000","0.000000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"387.000000","0.000000",,,,,,,,,"0.500000","413.750000","18961.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.200000","0.000000","0.000000","5.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"285.000000","0.000000",,,,,,,,,"0.750000","417.750000","19037.250000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"514.750000","0.000000",,,,,,,,,"6.500000","1279.000000","17760.500000","2.125000",,"140.625000",,,,"4.800000","0.000000","8.333333","0.666667","8.875000","0.000000","98.400000","0.000000","1.600000","96.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"115.250000",,"115.250000",,"115.250000",,"424.500000","0.000000",,,,,,,,,"3.000000","871.250000","18358.250000","0.000000",,"104.250000",,,,"4.200000","0.000000","0.000000","1.333333","7.875000","0.000000","86.200000","0.000000","0.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.000000",,"145.000000",,"145.000000",,"234.000000","0.000000",,,,,,,,,"5.000000","1094.750000","18246.250000","0.000000",,"106.500000",,,,"4.400000","0.000000","0.000000","1.666667","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"115.500000",,"115.500000",,"115.500000",,"241.750000","0.000000",,,,,,,,,"2.250000","871.750000","18636.250000","0.000000",,"90.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","55.400000","0.000000","0.000000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"140.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"151.000000",,"151.000000",,"151.000000",,"400.500000","0.000000",,,,,,,,,"4.250000","1139.750000","17702.000000","1.125000",,"117.750000",,,,"4.600000","0.000000","0.666667","1.333333","8.500000","0.000000","94.000000","0.000000","1.400000","92.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.750000",,"71.750000",,"71.750000",,"309.250000","0.000000",,,,,,,,,"1.750000","540.000000","18743.000000","0.375000",,"73.875000",,,,"2.200000","0.000000","2.000000","1.000000","4.000000","0.000000","45.000000","0.000000","0.200000","44.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"218.000000","0.000000",,,,,,,,,"1.750000","499.250000","19000.500000","0.000000",,"49.000000",,,,"2.200000","0.000000","0.000000","2.000000","4.000000","0.000000","45.000000","0.000000","0.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"267.250000","0.000000",,,,,,,,,"0.500000","411.750000","19043.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"236.000000","0.000000",,,,,,,,,"0.500000","413.500000","19090.750000","0.000000",,"27.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"221.000000","0.000000",,,,,,,,,"3.000000","492.250000","18910.000000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","35.400000","0.000000","0.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"160.500000","0.000000",,,,,,,,,"0.250000","393.250000","19235.250000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"146.250000","0.000000",,,,,,,,,"1.000000","421.750000","19215.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"253.000000","0.000000",,,,,,,,,"0.750000","490.000000","18851.750000","0.000000",,"33.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"285.250000","0.000000",,,,,,,,,"0.500000","401.250000","19002.750000","0.000000",,"15.625000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","15.600000","0.000000","0.000000","15.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"265.000000","0.000000",,,,,,,,,"1.500000","416.000000","19001.750000","0.000000",,"34.500000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.500000",,"61.500000",,"61.500000",,"403.500000","0.000000",,,,,,,,,"1.250000","464.250000","18667.500000","0.000000",,"48.250000",,,,"2.200000","0.000000","0.000000","0.666667","4.000000","0.000000","45.200000","0.000000","0.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"196.500000","0.000000",,,,,,,,,"1.250000","460.500000","19128.000000","0.375000",,"25.875000",,,,"1.000000","0.000000","2.333333","1.000000","1.750000","0.000000","21.800000","0.000000","0.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"414.250000","0.000000",,,,,,,,,"0.500000","407.750000","18876.250000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"547.750000","0.000000",,,,,,,,,"1.250000","478.250000","18546.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","34.400000","0.000000","0.000000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"584.750000","0.000000",,,,,,,,,"0.750000","385.250000","18552.500000","0.000000",,"22.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"49.000000",,"49.000000",,"49.000000",,"543.750000","0.000000",,,,,,,,,"0.500000","370.750000","18663.250000","0.000000",,"16.000000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"304.250000","0.000000",,,,,,,,,"1.750000","498.250000","18846.500000","0.000000",,"34.875000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"174.750000","0.000000",,,,,,,,,"2.250000","433.750000","19198.000000","0.000000",,"26.875000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","28.200000","0.000000","0.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"229.250000","0.000000",,,,,,,,,"0.500000","401.500000","19091.000000","0.000000",,"10.125000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"145.500000","0.000000",,,,,,,,,"1.250000","502.750000","19121.000000","0.000000",,"42.750000",,,,"1.800000","0.000000","0.000000","1.333333","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"166.750000","0.000000",,,,,,,,,"2.500000","516.500000","19013.500000","0.000000",,"75.250000",,,,"4.200000","0.000000","0.000000","0.666667","7.750000","0.000000","87.200000","0.000000","0.000000","87.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"234.000000","0.000000",,,,,,,,,"5.000000","1277.250000","18109.250000","2.625000",,"150.375000",,,,"4.800000","0.000000","0.333333","0.666667","8.875000","0.000000","99.400000","0.000000","3.200000","96.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"41.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"186.500000","0.000000",,,,,,,,,"2.000000","512.250000","19046.000000","0.000000",,"61.125000",,,,"2.600000","0.000000","0.000000","1.333333","4.750000","0.000000","53.400000","0.000000","0.000000","53.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"187.750000","0.000000",,,,,,,,,"0.500000","384.750000","19146.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","2.000000","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"183.250000","0.000000",,,,,,,,,"0.750000","423.000000","19142.750000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"293.000000","0.000000",,,,,,,,,"1.000000","479.750000","18797.250000","0.000000",,"37.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"252.000000","0.000000",,,,,,,,,"1.250000","399.250000","19075.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"206.500000","0.000000",,,,,,,,,"1.000000","413.000000","19127.250000","0.000000",,"18.000000",,,,"0.400000","0.000000","0.000000","2.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"225.000000","0.000000",,,,,,,,,"1.000000","497.500000","18920.250000","0.000000",,"42.000000",,,,"1.800000","0.000000","0.000000","0.666667","3.375000","0.000000","37.600000","0.000000","0.000000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"157.250000","0.000000",,,,,,,,,"0.750000","405.250000","19162.750000","0.000000",,"15.375000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"132.250000","0.000000",,,,,,,,,"0.750000","424.000000","19264.000000","0.000000",,"21.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"85.000000",,"85.000000",,"85.000000",,"215.750000","0.000000",,,,,,,,,"4.000000","641.250000","18636.500000","0.000000",,"110.500000",,,,"5.600000","0.000000","0.000000","0.666667","10.500000","0.000000","115.600000","0.000000","0.000000","115.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"215.500000",,"215.500000",,"215.500000",,"348.250000","0.000000",,,,,,,,,"224.000000","1623.500000","17417.500000","5071.500000",,"5363.625000",,,,"66.000000","100.625000","1.666667","23.000000","22.500000","0.000000","1321.400000","0.000000","1077.600000","243.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"69.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"205.750000",,"205.750000",,"205.750000",,"405.750000","0.000000",,,,,,,,,"108.750000","1549.000000","17077.250000","527.625000",,"270.750000",,,,"70.000000","121.000000","1.000000","18.666667","9.625000","0.000000","1400.000000","0.000000","1293.600000","106.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","246.000000",,,,,,,,,"2313.000000","4488.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"175.000000",,"175.000000",,"175.000000",,"444.250000","0.000000",,,,,,,,,"102.000000","1318.250000","17540.000000","306.875000",,"214.875000",,,,"40.200000","73.625000","2.000000","2.666667","1.500000","0.000000","805.400000","0.000000","786.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2632.000000","38.000000",,,,,,,,,"36123.000000","4025.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"341.250000",,"341.250000",,"341.250000",,"669.500000","0.000000",,,,,,,,,"285.250000","2569.500000","15648.250000","0.000000",,"8106.750000",,,,"18.800000","0.000000","0.000000","25.666667","35.125000","0.000000","377.800000","0.000000","0.000000","377.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20487.000000","78.000000",,,,,,,,,"277561.000000","24215.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"289.000000",,"289.000000",,"289.000000",,"1043.750000","0.000000",,,,,,,,,"238.750000","2176.750000","15862.000000","0.000000",,"11451.375000",,,,"36.800000","0.000000","4.000000","21.000000","68.875000","0.000000","737.200000","0.000000","0.600000","736.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9414.000000","34.000000",,,,,,,,,"127566.000000","10574.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"278.500000",,"278.500000",,"278.500000",,"593.000000","0.000000",,,,,,,,,"265.750000","2097.500000","16540.750000","6.375000",,"9827.250000",,,,"41.200000","1.125000","2.666667","15.333333","76.125000","0.000000","827.600000","0.000000","12.800000","814.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13348.000000","54.000000",,,,,,,,,"180882.000000","16401.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"345.000000",,"345.000000",,"345.000000",,"625.000000","0.000000",,,,,,,,,"224.250000","2598.500000","16045.000000","1891.875000",,"7637.500000",,,,"80.000000","63.875000","1.333333","10.666667","85.375000","0.000000","1600.000000","0.000000","684.000000","916.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3430.000000","16.000000",,,,,,,,,"46545.000000","4395.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"525.500000",,"525.500000",,"525.500000",,"499.250000","0.000000",,,,,,,,,"36.250000","3956.250000","14345.500000","235.375000",,"936.125000",,,,"15.600000","10.500000","0.666667","8.000000","18.750000","0.000000","312.400000","0.000000","112.800000","199.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"469.000000",,"469.000000",,"469.000000",,"769.750000","0.000000",,,,,,,,,"18.000000","3529.750000","14101.500000","44.250000",,"84.625000",,,,"8.200000","7.500000","1.000000","3.333333","7.500000","0.000000","165.400000","0.000000","82.800000","82.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"400.500000",,"400.500000",,"400.500000",,"615.250000","0.000000",,,,,,,,,"14.750000","3016.750000","13997.750000","46.125000",,"321.375000",,,,"10.000000","10.125000","0.333333","2.333333","8.250000","0.000000","200.600000","0.000000","110.000000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"93.000000","74.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"455.750000",,"455.750000",,"455.750000",,"554.250000","0.000000",,,,,,,,,"3.500000","3430.750000","13868.250000","0.000000",,"82.875000",,,,"4.000000","0.000000","0.000000","1.333333","7.500000","0.000000","81.400000","0.000000","0.000000","81.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"102.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"596.750000",,"596.750000",,"596.750000",,"513.000000","0.000000",,,,,,,,,"8.250000","4491.250000","12623.500000","37.500000",,"277.125000",,,,"6.800000","3.000000","0.666667","2.666667","9.750000","0.000000","139.000000","0.000000","34.200000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"66.000000","78.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"791.000000",,"791.000000",,"791.000000",,"546.250000","0.000000",,,,,,,,,"15.500000","5951.500000","9203.000000","32.250000",,"531.375000",,,,"14.000000","2.250000","1.333333","2.333333","23.625000","0.000000","281.200000","0.000000","25.400000","255.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"76.000000","77.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"921.500000",,"921.500000",,"921.500000",,"540.500000","0.000000",,,,,,,,,"4.750000","6932.500000","9118.500000","0.000000",,"379.125000",,,,"2.800000","0.000000","0.000000","10.333333","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"46.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"805.500000",,"805.500000",,"805.500000",,"589.000000","0.000000",,,,,,,,,"3.250000","6059.250000","9056.500000","1.125000",,"307.750000",,,,"2.000000","0.000000","0.000000","10.333333","3.625000","0.000000","43.600000","0.000000","1.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"889.250000",,"889.250000",,"889.250000",,"679.250000","0.000000",,,,,,,,,"3.000000","6690.250000","9006.000000","0.000000",,"361.750000",,,,"2.000000","0.000000","0.000000","15.333333","3.625000","0.000000","42.400000","0.000000","0.400000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1189.250000",,"1189.250000",,"1189.250000",,"613.000000","0.000000",,,,,,,,,"22.500000","8945.250000","9404.750000","80.250000",,"970.000000",,,,"7.200000","8.625000","0.333333","26.333333","4.750000","0.000000","145.800000","0.000000","92.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1053.500000",,"1053.500000",,"1053.500000",,"541.500000","0.000000",,,,,,,,,"8.500000","7924.750000","9234.250000","0.750000",,"349.375000",,,,"3.000000","0.000000","0.666667","10.000000","5.500000","0.000000","63.800000","0.000000","2.200000","61.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1136.250000",,"1136.250000",,"1136.250000",,"356.500000","0.000000",,,,,,,,,"12.750000","8547.250000","9346.500000","6.750000",,"1193.625000",,,,"4.000000","0.375000","0.666667","28.666667","6.625000","0.000000","80.200000","0.000000","7.800000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"938.500000",,"938.500000",,"938.500000",,"435.000000","0.000000",,,,,,,,,"3.750000","7061.000000","9166.250000","0.000000",,"371.875000",,,,"1.800000","0.000000","2.666667","17.000000","3.250000","0.000000","39.400000","0.000000","0.200000","39.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"959.500000",,"959.500000",,"959.500000",,"365.750000","0.000000",,,,,,,,,"6.750000","7218.500000","9310.250000","0.375000",,"670.500000",,,,"1.600000","0.000000","4.000000","32.666667","3.000000","0.000000","35.400000","0.000000","1.400000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.750000",,"832.750000",,"832.750000",,"426.500000","0.000000",,,,,,,,,"5.750000","6264.750000","9285.750000","45.750000",,"348.375000",,,,"4.800000","4.125000","0.333333","9.333333","4.500000","0.000000","99.400000","0.000000","47.800000","51.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"880.000000",,"880.000000",,"880.000000",,"507.750000","0.000000",,,,,,,,,"2.750000","6621.250000","9099.750000","0.000000",,"316.750000",,,,"1.800000","0.000000","6.000000","14.333333","3.250000","0.000000","36.800000","0.000000","0.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1054.250000",,"1054.250000",,"1054.250000",,"747.500000","0.000000",,,,,,,,,"5.250000","7931.000000","9011.000000","0.000000",,"387.000000",,,,"2.000000","0.000000","1.000000","10.000000","3.750000","0.000000","43.200000","0.000000","0.800000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"793.250000",,"793.250000",,"793.250000",,"654.500000","0.000000",,,,,,,,,"5.000000","5966.750000","9039.000000","0.000000",,"284.500000",,,,"2.200000","0.000000","2.333333","7.333333","4.000000","0.000000","46.400000","0.000000","0.200000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"659.000000",,"659.000000",,"659.000000",,"989.000000","0.000000",,,,,,,,,"3.250000","4957.750000","8746.750000","0.000000",,"288.000000",,,,"1.200000","0.000000","10.333333","13.666667","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"798.250000",,"798.250000",,"798.250000",,"1215.500000","0.000000",,,,,,,,,"4.750000","6007.000000","8648.500000","0.000000",,"333.000000",,,,"1.600000","0.000000","0.666667","9.666667","3.000000","0.000000","35.400000","0.000000","0.200000","35.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.750000",,"604.750000",,"604.750000",,"2008.500000","0.000000",,,,,,,,,"2.750000","4550.000000","8218.750000","0.000000",,"239.875000",,,,"0.800000","0.000000","1.666667","9.666667","1.375000","0.000000","17.400000","0.000000","0.400000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"728.750000",,"728.750000",,"728.750000",,"2824.250000","0.000000",,,,,,,,,"3.000000","5483.500000","7714.250000","0.000000",,"233.250000",,,,"1.200000","0.000000","0.000000","10.333333","2.250000","0.000000","27.200000","0.000000","0.000000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"739.250000",,"739.250000",,"739.250000",,"2619.750000","0.000000",,,,,,,,,"3.250000","5560.750000","7874.750000","0.375000",,"194.500000",,,,"0.800000","0.000000","0.666667","14.000000","1.125000","0.000000","16.600000","0.000000","0.800000","15.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"666.500000",,"666.500000",,"666.500000",,"1319.000000","0.000000",,,,,,,,,"2.500000","5014.250000","8548.500000","0.000000",,"151.125000",,,,"1.200000","0.000000","1.000000","3.333333","2.250000","0.000000","24.800000","0.000000","0.400000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"611.500000",,"611.500000",,"611.500000",,"2970.000000","0.000000",,,,,,,,,"5.750000","4600.250000","7585.000000","0.250000",,"466.875000",,,,"1.800000","0.000000","3.000000","19.333333","3.250000","0.000000","38.400000","0.000000","0.600000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"842.000000",,"842.000000",,"842.000000",,"2099.500000","0.000000",,,,,,,,,"2.750000","6337.000000","8152.500000","0.000000",,"294.375000",,,,"0.800000","0.000000","3.000000","17.000000","1.500000","0.000000","17.400000","0.000000","0.200000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"901.000000",,"901.000000",,"901.000000",,"2142.250000","0.000000",,,,,,,,,"2.750000","6780.000000","8180.250000","0.000000",,"132.000000",,,,"1.200000","0.000000","0.000000","7.333333","2.250000","0.000000","27.200000","0.000000","0.200000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"597.000000",,"597.000000",,"597.000000",,"3233.000000","0.000000",,,,,,,,,"2.750000","4494.250000","7318.500000","0.000000",,"343.375000",,,,"1.000000","0.000000","3.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"11.000000","8.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"750.250000",,"750.250000",,"750.250000",,"2783.000000","0.000000",,,,,,,,,"2.500000","5644.250000","7714.500000","0.000000",,"211.750000",,,,"1.200000","0.000000","2.000000","5.000000","2.250000","0.000000","24.600000","0.000000","0.200000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"814.000000",,"814.000000",,"814.000000",,"2062.250000","0.000000",,,,,,,,,"6.000000","6124.250000","8049.500000","0.000000",,"298.375000",,,,"0.800000","0.000000","0.000000","14.666667","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"924.750000",,"924.750000",,"924.750000",,"1504.500000","0.000000",,,,,,,,,"4.750000","6956.000000","8562.750000","0.000000",,"300.750000",,,,"1.200000","0.000000","0.000000","11.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"646.750000",,"646.750000",,"646.750000",,"2153.750000","0.000000",,,,,,,,,"4.250000","4866.250000","8053.750000","0.000000",,"215.625000",,,,"1.200000","0.000000","4.666667","6.333333","2.250000","0.000000","27.800000","0.000000","0.600000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"875.000000",,"875.000000",,"875.000000",,"653.750000","0.000000",,,,,,,,,"3.000000","6582.750000","9037.250000","0.375000",,"309.625000",,,,"0.800000","0.000000","1.666667","15.000000","1.375000","0.000000","18.200000","0.000000","0.400000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"152.000000","143.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.000000",,"658.000000",,"658.000000",,"1330.500000","0.000000",,,,,,,,,"3.250000","4951.750000","8637.000000","0.000000",,"339.375000",,,,"1.800000","0.000000","0.000000","9.666667","3.250000","0.000000","36.400000","0.000000","0.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"738.250000",,"738.250000",,"738.250000",,"1421.250000","0.000000",,,,,,,,,"7.250000","5555.000000","8678.750000","0.000000",,"290.125000",,,,"0.800000","0.000000","5.333333","35.666667","1.375000","0.000000","16.600000","0.000000","0.400000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"948.250000",,"948.250000",,"948.250000",,"880.000000","0.000000",,,,,,,,,"4.250000","7134.000000","8969.500000","0.375000",,"385.750000",,,,"1.600000","0.000000","0.666667","11.333333","3.000000","0.000000","35.000000","0.000000","0.600000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"969.500000",,"969.500000",,"969.500000",,"733.500000","0.000000",,,,,,,,,"10.500000","7292.750000","9084.000000","0.000000",,"349.375000",,,,"1.600000","0.000000","6.666667","11.000000","2.875000","0.000000","33.600000","0.000000","0.400000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1182.750000",,"1182.750000",,"1182.750000",,"339.250000","0.000000",,,,,,,,,"4.750000","8896.000000","9404.000000","0.000000",,"352.875000",,,,"1.600000","0.000000","0.000000","11.333333","2.875000","0.000000","32.600000","0.000000","0.200000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1155.750000",,"1155.750000",,"1155.750000",,"390.500000","0.000000",,,,,,,,,"6.500000","8694.000000","9356.750000","0.000000",,"445.000000",,,,"1.800000","0.000000","10.000000","23.666667","3.375000","0.000000","38.000000","0.000000","0.400000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1196.250000",,"1196.250000",,"1196.250000",,"427.750000","0.000000",,,,,,,,,"4.750000","8998.500000","9282.000000","0.000000",,"331.875000",,,,"1.000000","0.000000","23.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1197.750000",,"1197.750000",,"1197.750000",,"486.250000","0.000000",,,,,,,,,"4.000000","9009.750000","9251.500000","0.000000",,"415.875000",,,,"1.800000","0.000000","1.000000","26.333333","3.000000","0.000000","36.000000","0.000000","0.400000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"833.750000",,"833.750000",,"833.750000",,"240.000000","0.000000",,,,,,,,,"2.750000","6271.000000","9370.500000","0.250000",,"272.250000",,,,"1.400000","0.000000","3.333333","12.666667","2.250000","0.000000","28.800000","0.000000","1.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"789.000000",,"789.000000",,"789.000000",,"216.500000","0.000000",,,,,,,,,"5.750000","5935.500000","9442.000000","0.000000",,"419.125000",,,,"1.600000","0.000000","2.333333","11.666667","2.875000","0.000000","32.400000","0.000000","0.200000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"809.000000",,"809.000000",,"809.000000",,"472.250000","0.000000",,,,,,,,,"2.000000","6086.250000","9185.250000","0.000000",,"213.750000",,,,"0.600000","0.000000","3.000000","11.333333","1.000000","0.000000","15.200000","0.000000","0.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"774.750000",,"774.750000",,"774.750000",,"348.250000","0.000000",,,,,,,,,"3.250000","5829.250000","9281.500000","0.250000",,"284.250000",,,,"1.400000","0.000000","7.666667","8.333333","2.500000","0.000000","29.200000","0.000000","1.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"785.250000",,"785.250000",,"785.250000",,"320.500000","0.000000",,,,,,,,,"47.750000","5908.750000","9309.750000","5.500000",,"3908.875000",,,,"14.800000","0.750000","6.666667","24.000000","26.625000","0.000000","296.800000","0.000000","11.800000","285.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"825.000000",,"825.000000",,"825.000000",,"429.750000","0.000000",,,,,,,,,"2.500000","6209.500000","9160.000000","1.125000",,"281.250000",,,,"0.600000","0.000000","2.666667","11.666667","1.125000","0.000000","15.400000","0.000000","1.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"778.000000",,"778.000000",,"778.000000",,"404.000000","0.000000",,,,,,,,,"83.750000","5853.250000","9461.750000","5.750000",,"7830.250000",,,,"30.400000","0.750000","6.000000","16.333333","55.875000","0.000000","610.200000","0.000000","11.400000","598.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"945.000000",,"945.000000",,"945.000000",,"560.750000","0.000000",,,,,,,,,"19.500000","7109.000000","9162.250000","14.500000",,"1636.750000",,,,"7.400000","1.375000","2.666667","29.000000","12.250000","0.000000","149.600000","0.000000","15.600000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"787.250000",,"787.250000",,"787.250000",,"513.000000","0.000000",,,,,,,,,"11.250000","5921.750000","9364.250000","16.500000",,"696.750000",,,,"5.000000","1.500000","6.000000","26.666667","7.375000","0.000000","100.400000","0.000000","18.000000","82.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"763.750000",,"763.750000",,"763.750000",,"470.000000","0.000000",,,,,,,,,"5.000000","5745.500000","9151.500000","1.125000",,"433.875000",,,,"1.400000","0.000000","2.666667","12.000000","2.625000","0.000000","31.800000","0.000000","1.400000","30.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"893.250000",,"893.250000",,"893.250000",,"360.500000","0.000000",,,,,,,,,"3.750000","6720.250000","9274.000000","0.000000",,"359.125000",,,,"1.600000","0.000000","0.000000","8.666667","3.000000","0.000000","35.800000","0.000000","0.000000","35.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"888.000000",,"888.000000",,"888.000000",,"426.750000","0.000000",,,,,,,,,"5.250000","6680.250000","9217.750000","0.375000",,"507.375000",,,,"1.600000","0.000000","6.000000","13.333333","2.625000","0.000000","32.800000","0.000000","1.600000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"850.000000",,"850.000000",,"850.000000",,"356.750000","0.000000",,,,,,,,,"25.500000","6393.500000","9354.000000","34.500000",,"1696.875000",,,,"8.200000","3.375000","2.333333","27.333333","11.875000","0.000000","165.600000","0.000000","36.800000","128.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"934.500000",,"934.500000",,"934.500000",,"374.500000","0.000000",,,,,,,,,"32.250000","7029.250000","9829.000000","843.500000",,"493.500000",,,,"13.000000","18.750000","2.333333","14.000000","5.250000","0.000000","263.600000","0.000000","205.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1034.000000",,"1034.000000",,"1034.000000",,"580.750000","0.000000",,,,,,,,,"86.250000","7778.000000","9981.500000","1437.750000",,"2006.250000",,,,"28.800000","37.000000","1.333333","18.666667","16.375000","0.000000","579.400000","0.000000","394.600000","184.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"895.750000",,"895.750000",,"895.750000",,"328.750000","0.000000",,,,,,,,,"36.000000","6740.500000","9422.250000","37.875000",,"2061.625000",,,,"16.600000","3.000000","6.333333","12.666667","28.500000","0.000000","332.800000","0.000000","34.600000","298.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"755.500000",,"755.500000",,"755.500000",,"472.500000","0.000000",,,,,,,,,"4.750000","5684.500000","9128.750000","6.000000",,"286.500000",,,,"1.000000","0.375000","0.666667","13.000000","1.125000","0.000000","22.400000","0.000000","7.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"902.750000",,"902.750000",,"902.750000",,"279.250000","0.000000",,,,,,,,,"3.750000","6789.500000","9328.250000","0.750000",,"305.125000",,,,"1.400000","0.000000","0.666667","21.666667","2.500000","0.000000","31.200000","0.000000","1.200000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"905.000000",,"905.000000",,"905.000000",,"312.750000","0.000000",,,,,,,,,"6.000000","6807.500000","9281.000000","0.750000",,"279.000000",,,,"1.400000","0.000000","0.666667","8.333333","2.250000","0.000000","28.400000","0.000000","0.800000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"946.750000",,"946.750000",,"946.750000",,"409.250000","0.000000",,,,,,,,,"2.750000","7123.250000","9284.000000","2.250000",,"343.750000",,,,"1.000000","0.000000","1.000000","12.000000","1.500000","0.000000","22.600000","0.000000","2.800000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"996.000000",,"996.000000",,"996.000000",,"462.750000","0.000000",,,,,,,,,"2.000000","7493.250000","9215.000000","0.750000",,"236.875000",,,,"1.000000","0.000000","2.666667","13.666667","1.500000","0.000000","21.000000","0.000000","2.400000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"955.750000",,"955.750000",,"955.750000",,"377.750000","0.000000",,,,,,,,,"6.000000","7191.000000","9389.750000","7.875000",,"315.000000",,,,"1.400000","0.750000","5.000000","10.333333","1.375000","0.000000","28.000000","0.000000","9.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"904.500000",,"904.500000",,"904.500000",,"508.750000","0.000000",,,,,,,,,"9.250000","6805.000000","9144.250000","1.500000",,"835.750000",,,,"4.200000","0.000000","1.000000","33.000000","7.875000","0.000000","87.800000","0.000000","1.600000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"812.750000",,"812.750000",,"812.750000",,"483.000000","0.000000",,,,,,,,,"13.000000","6115.750000","9536.250000","462.125000",,"521.625000",,,,"6.600000","8.250000","5.000000","36.666667","3.750000","0.000000","133.800000","0.000000","90.200000","43.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"639.250000",,"639.250000",,"639.250000",,"389.250000","0.000000",,,,,,,,,"116.750000","4808.000000","12682.750000","3511.875000",,"834.250000",,,,"49.400000","81.625000","3.000000","15.666667","10.500000","0.000000","990.000000","0.000000","874.200000","115.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"807.750000",,"807.750000",,"807.750000",,"461.000000","0.000000",,,,,,,,,"109.500000","6076.750000","10908.000000","1444.625000",,"4473.625000",,,,"45.800000","33.375000","4.333333","12.000000","52.125000","0.000000","916.000000","0.000000","358.400000","557.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"80.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"815.750000",,"815.750000",,"815.750000",,"426.500000","0.000000",,,,,,,,,"46.500000","6137.750000","10134.750000","841.375000",,"1519.500000",,,,"20.600000","19.000000","2.333333","17.666667","19.125000","0.000000","412.000000","0.000000","205.600000","206.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"135.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"900.000000",,"900.000000",,"900.000000",,"432.500000","0.000000",,,,,,,,,"64.250000","6770.500000","9303.000000","21.125000",,"4121.125000",,,,"26.000000","3.250000","1.666667","15.333333","45.375000","0.000000","521.400000","0.000000","36.400000","485.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"60.000000","59.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"689.000000",,"689.000000",,"689.000000",,"393.500000","0.000000",,,,,,,,,"44.500000","5183.500000","10051.500000","179.875000",,"2002.125000",,,,"14.400000","14.500000","3.000000","39.666667","12.000000","0.000000","289.600000","0.000000","158.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"73.000000","79.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"898.250000",,"898.250000",,"898.250000",,"296.750000","0.000000",,,,,,,,,"48.750000","6756.750000","10050.500000","94.125000",,"2885.125000",,,,"16.600000","6.375000","4.000000","30.333333","24.375000","0.000000","335.200000","0.000000","71.600000","263.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"62.000000","72.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"767.000000",,"767.000000",,"767.000000",,"268.500000","0.000000",,,,,,,,,"102.500000","5770.750000","9989.750000","101.875000",,"6552.750000",,,,"39.400000","5.625000","13.333333","21.666667","67.875000","0.000000","788.800000","0.000000","62.400000","726.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"861.750000",,"861.750000",,"861.750000",,"459.000000","0.000000",,,,,,,,,"89.750000","6482.500000","9393.500000","52.375000",,"5912.500000",,,,"33.000000","3.250000","2.333333","21.666667","58.125000","0.000000","662.600000","0.000000","39.000000","623.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"647.250000",,"647.250000",,"647.250000",,"518.000000","0.000000",,,,,,,,,"138.750000","4870.250000","11437.500000","3230.750000",,"5110.750000",,,,"54.200000","64.500000","3.333333","21.666667","36.750000","0.000000","1086.600000","0.000000","691.800000","394.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"752.750000",,"752.750000",,"752.750000",,"328.250000","0.000000",,,,,,,,,"130.750000","5664.250000","10341.500000","579.500000",,"8278.500000",,,,"40.800000","15.875000","2.666667","31.000000","60.375000","0.000000","816.400000","0.000000","170.200000","646.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"773.250000",,"773.250000",,"773.250000",,"448.250000","0.000000",,,,,,,,,"72.000000","5816.250000","9486.750000","118.750000",,"5241.750000",,,,"29.400000","8.000000","2.000000","13.333333","46.875000","0.000000","590.800000","0.000000","88.200000","502.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.000000",,"832.000000",,"832.000000",,"455.250000","0.000000",,,,,,,,,"46.500000","6258.750000","9854.750000","680.625000",,"2278.750000",,,,"20.800000","17.625000","3.333333","16.000000","21.250000","0.000000","419.400000","0.000000","189.400000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"632.500000",,"632.500000",,"632.500000",,"352.000000","0.000000",,,,,,,,,"148.000000","4759.000000","12859.000000","2922.750000",,"4913.500000",,,,"48.000000","53.625000","4.666667","51.000000","36.000000","0.000000","963.800000","0.000000","576.200000","387.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"448.500000",,"448.500000",,"448.500000",,"327.500000","0.000000",,,,,,,,,"142.500000","3376.000000","14242.000000","4097.875000",,"2401.125000",,,,"56.800000","90.625000","2.000000","30.333333","15.375000","0.000000","1137.000000","0.000000","971.000000","166.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"339.000000",,"339.000000",,"339.000000",,"353.250000","0.000000",,,,,,,,,"182.750000","2551.500000","15131.250000","5350.750000",,"3699.375000",,,,"88.200000","130.625000","2.666667","9.666667","34.500000","0.000000","1764.000000","0.000000","1395.400000","368.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"426.500000",,"426.500000",,"426.500000",,"385.250000","0.000000",,,,,,,,,"148.000000","3211.500000","14538.750000","4682.125000",,"2671.375000",,,,"66.000000","95.750000","3.000000","11.000000","27.625000","0.000000","1320.400000","0.000000","1024.000000","296.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"386.500000",,"386.500000",,"386.500000",,"698.750000","0.000000",,,,,,,,,"230.250000","2911.750000","14820.750000","7682.000000",,"2494.500000",,,,"98.200000","169.000000","1.666667","26.666667","14.875000","0.000000","1964.200000","0.000000","1803.800000","160.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"260.000000","305.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"668.500000",,"668.500000",,"668.500000",,"358.250000","0.000000",,,,,,,,,"150.250000","5030.500000","11157.250000","3435.750000",,"4507.375000",,,,"65.000000","94.125000","1.666667","18.333333","27.375000","0.000000","1301.000000","0.000000","1006.400000","294.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"698.750000",,"698.750000",,"698.750000",,"345.750000","0.000000",,,,,,,,,"60.250000","5257.250000","10241.000000","2090.875000",,"575.625000",,,,"30.000000","43.000000","2.000000","8.333333","13.125000","0.000000","600.600000","0.000000","460.000000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"828.750000",,"828.750000",,"828.750000",,"220.750000","0.000000",,,,,,,,,"40.000000","6234.500000","9744.250000","73.875000",,"2110.875000",,,,"13.600000","7.750000","3.666667","15.666667","17.500000","0.000000","272.600000","0.000000","84.400000","188.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"757.750000",,"757.750000",,"757.750000",,"378.000000","0.000000",,,,,,,,,"88.000000","5701.750000","10899.250000","3475.500000",,"255.000000",,,,"41.200000","75.000000","3.666667","13.666667","1.875000","0.000000","827.200000","0.000000","805.600000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"790.250000",,"790.250000",,"790.250000",,"454.000000","0.000000",,,,,,,,,"94.250000","5944.250000","10262.750000","1497.625000",,"3387.375000",,,,"34.000000","40.625000","2.333333","22.666667","22.875000","0.000000","680.000000","0.000000","433.400000","246.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"706.500000",,"706.500000",,"706.500000",,"382.250000","0.000000",,,,,,,,,"15.750000","5315.000000","11143.000000","305.625000",,"273.250000",,,,"5.400000","6.625000","1.000000","11.000000","2.875000","0.000000","111.800000","0.000000","78.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"261.500000",,"261.500000",,"261.500000",,"305.000000","0.000000",,,,,,,,,"131.250000","1969.500000","16286.500000","5075.000000",,"907.500000",,,,"55.400000","94.750000","2.000000","9.000000","9.375000","0.000000","1111.600000","0.000000","1008.400000","103.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"275.750000",,"275.750000",,"275.750000",,"391.250000","0.000000",,,,,,,,,"121.000000","2077.250000","15922.250000","2141.875000",,"3563.875000",,,,"55.200000","71.125000","2.666667","11.666667","32.250000","0.000000","1107.000000","0.000000","760.600000","346.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.250000",,"180.250000",,"180.250000",,"302.750000","0.000000",,,,,,,,,"240.000000","1360.500000","17389.250000","4779.375000",,"8399.875000",,,,"123.600000","177.000000","2.000000","13.666667","54.375000","0.000000","2474.400000","0.000000","1892.200000","582.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","39.000000",,,,,,,,,"180.000000","195.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.000000",,"180.000000",,"180.000000",,"465.250000","0.000000",,,,,,,,,"156.250000","1356.750000","17227.000000","3538.750000",,"4080.750000",,,,"81.400000","122.750000","2.666667","13.000000","29.625000","0.000000","1628.600000","0.000000","1309.400000","319.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"126.000000","138.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"134.500000",,"134.500000",,"134.500000",,"341.000000","0.000000",,,,,,,,,"28.500000","1014.500000","17791.750000","140.625000",,"142.500000",,,,"12.000000","11.875000","1.666667","0.666667","10.375000","0.000000","242.200000","0.000000","128.200000","114.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.000000","7.000000",,,,,,,,,"1397.000000","1510.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"93.000000",,"93.000000",,"93.000000",,"357.000000","0.000000",,,,,,,,,"13.500000","703.750000","18228.750000","359.750000",,"58.875000",,,,"5.200000","3.500000","2.333333","2.000000","5.625000","0.000000","105.600000","0.000000","42.200000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","7.000000",,,,,,,,,"1645.000000","1659.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.750000",,"276.750000",,"276.750000",,"378.500000","0.000000",,,,,,,,,"54.250000","2084.500000","16409.500000","319.625000",,"2873.625000",,,,"21.800000","5.375000","2.333333","14.666667","35.250000","0.000000","437.600000","0.000000","57.800000","379.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"438.000000","512.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.750000",,"162.750000",,"162.750000",,"472.250000","0.000000",,,,,,,,,"12.750000","1227.250000","17394.250000","19.000000",,"268.875000",,,,"9.400000","1.125000","23.000000","5.333333","16.125000","0.000000","188.600000","0.000000","15.400000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"146.000000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.500000",,"148.500000",,"148.500000",,"425.750000","0.000000",,,,,,,,,"14.000000","1121.750000","17488.750000","372.375000",,"82.125000",,,,"6.600000","7.375000","4.000000","2.666667","4.750000","0.000000","134.000000","0.000000","80.400000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"191.000000","224.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"217.500000",,"217.500000",,"217.500000",,"364.500000","0.000000",,,,,,,,,"36.500000","1640.500000","17236.500000","640.875000",,"99.750000",,,,"28.000000","46.500000","1.000000","12.666667","5.875000","0.000000","562.600000","0.000000","497.000000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"382.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"271.500000","0.000000",,,,,,,,,"6.250000","449.750000","18923.000000","0.000000",,"74.500000",,,,"3.200000","0.000000","0.000000","2.666667","6.000000","0.000000","66.000000","0.000000","0.000000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"230.000000","0.000000",,,,,,,,,"0.500000","389.750000","19017.250000","0.000000",,"35.250000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","14.200000","0.000000","0.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.000000",,"64.000000",,"64.000000",,"235.250000","0.000000",,,,,,,,,"3.250000","485.750000","18865.500000","0.000000",,"49.875000",,,,"2.200000","0.000000","0.000000","1.000000","4.125000","0.000000","46.600000","0.000000","0.000000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"181.000000","0.000000",,,,,,,,,"0.750000","424.000000","19168.000000","0.000000",,"19.500000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"250.750000","0.000000",,,,,,,,,"1.000000","477.250000","18872.500000","4.875000",,"28.125000",,,,"1.400000","0.000000","2.000000","1.333333","2.125000","0.000000","29.000000","0.000000","3.200000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"157.750000",,"157.750000",,"157.750000",,"313.750000","0.000000",,,,,,,,,"10.000000","1189.000000","18168.000000","3.750000",,"129.000000",,,,"5.200000","0.000000","0.666667","0.666667","9.250000","0.000000","105.200000","0.000000","2.800000","102.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"512.000000","609.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.750000",,"276.750000",,"276.750000",,"398.500000","0.000000",,,,,,,,,"27.500000","2086.000000","16548.750000","27.000000",,"379.125000",,,,"12.800000","1.750000","3.666667","1.000000","22.000000","0.000000","257.400000","0.000000","21.400000","236.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","8.000000",,,,,,,,,"1409.000000","1609.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"73.000000",,"73.000000",,"73.000000",,"201.000000","0.000000",,,,,,,,,"5.500000","551.500000","18948.750000","0.000000",,"37.750000",,,,"1.600000","0.000000","0.000000","2.333333","2.875000","0.000000","32.400000","0.000000","0.000000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","4.000000",,,,,,,,,"1000.000000","990.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"233.750000",,"233.750000",,"233.750000",,"451.000000","0.000000",,,,,,,,,"41.750000","1762.000000","16370.250000","0.000000",,"2847.750000",,,,"16.800000","0.000000","1.000000","19.333333","31.375000","0.000000","338.800000","0.000000","0.400000","338.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","8.000000",,,,,,,,,"1676.000000","1746.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"185.750000",,"185.750000",,"185.750000",,"401.750000","0.000000",,,,,,,,,"4.750000","1399.250000","17040.250000","0.000000",,"235.000000",,,,"8.200000","0.000000","0.000000","2.333333","15.250000","0.000000","165.600000","0.000000","0.000000","165.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"84.000000",,"84.000000",,"84.000000",,"430.000000","0.000000",,,,,,,,,"2.000000","634.750000","18358.750000","0.000000",,"84.000000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","49.800000","0.000000","0.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"102.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"193.750000",,"193.750000",,"193.750000",,"374.750000","0.000000",,,,,,,,,"24.000000","1459.500000","16929.500000","211.875000",,"143.125000",,,,"15.200000","17.875000","1.333333","1.666667","10.375000","0.000000","305.200000","0.000000","193.000000","112.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"65.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"363.250000","0.000000",,,,,,,,,"1.750000","897.750000","18335.500000","5.250000",,"66.625000",,,,"1.800000","0.375000","4.666667","1.666667","3.000000","0.000000","38.800000","0.000000","5.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"340.000000","0.000000",,,,,,,,,"1.250000","398.750000","18840.750000","0.000000",,"41.125000",,,,"2.200000","0.000000","0.000000","2.666667","4.000000","0.000000","44.600000","0.000000","0.200000","44.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"333.500000","0.000000",,,,,,,,,"1.250000","407.750000","18953.250000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.333333","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"343.250000","0.000000",,,,,,,,,"0.500000","471.000000","18825.250000","0.000000",,"22.125000",,,,"0.600000","0.000000","0.000000","1.000000","1.000000","0.000000","14.200000","0.000000","0.000000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"309.250000","0.000000",,,,,,,,,"3.750000","392.000000","18945.750000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.250000",,"51.250000",,"51.250000",,"354.500000","0.000000",,,,,,,,,"0.750000","388.750000","18913.750000","0.000000",,"7.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.600000","0.000000","0.000000","4.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.250000",,"59.250000",,"59.250000",,"301.000000","0.000000",,,,,,,,,"0.500000","450.750000","18876.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"301.000000","0.000000",,,,,,,,,"0.500000","409.750000","19065.250000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","3.200000","0.000000","0.000000","3.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"312.500000","0.000000",,,,,,,,,"0.750000","410.000000","19038.750000","0.250000",,"17.500000",,,,"0.800000","0.000000","1.000000","2.000000","1.375000","0.000000","18.000000","0.000000","1.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"86.750000",,"86.750000",,"86.750000",,"371.250000","0.000000",,,,,,,,,"1.750000","658.000000","18475.000000","5.625000",,"65.625000",,,,"2.600000","0.375000","3.666667","1.333333","4.125000","0.000000","53.800000","0.000000","6.400000","47.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"101.000000","113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"142.500000",,"142.500000",,"142.500000",,"325.500000","0.000000",,,,,,,,,"5.000000","1076.250000","17891.000000","0.000000",,"117.375000",,,,"4.800000","0.000000","0.666667","1.000000","8.875000","0.000000","99.200000","0.000000","0.800000","98.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"465.000000","542.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.000000",,"158.000000",,"158.000000",,"466.500000","0.000000",,,,,,,,,"3.250000","1193.750000","17703.500000","0.000000",,"139.000000",,,,"4.800000","0.000000","0.000000","2.000000","8.875000","0.000000","98.200000","0.000000","0.200000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"125.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"133.750000",,"133.750000",,"133.750000",,"299.750000","0.000000",,,,,,,,,"1.500000","1008.250000","18117.000000","0.000000",,"42.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.400000","0.000000","0.200000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"123.750000",,"123.750000",,"123.750000",,"437.000000","0.000000",,,,,,,,,"2.750000","933.750000","17881.500000","5.625000",,"94.125000",,,,"3.800000","0.000000","2.666667","2.000000","7.125000","0.000000","77.600000","0.000000","1.000000","76.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.000000",,"67.000000",,"67.000000",,"495.750000","0.000000",,,,,,,,,"1.000000","507.750000","18506.500000","3.375000",,"25.125000",,,,"0.800000","0.375000","2.333333","2.000000","1.000000","0.000000","19.800000","0.000000","4.600000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"386.750000","0.000000",,,,,,,,,"1.750000","419.500000","18887.250000","0.000000",,"48.750000",,,,"2.200000","0.000000","0.000000","1.666667","4.125000","0.000000","45.800000","0.000000","0.200000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"445.750000","0.000000",,,,,,,,,"0.500000","392.250000","18772.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","10.600000","0.000000","0.000000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"236.500000","0.000000",,,,,,,,,"0.750000","407.750000","19047.500000","0.000000",,"12.250000",,,,"0.400000","0.000000","0.000000","1.333333","0.625000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"191.500000","0.000000",,,,,,,,,"3.250000","407.250000","19174.250000","0.000000",,"14.875000",,,,"0.600000","0.000000","0.000000","2.000000","1.000000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"150.750000","0.000000",,,,,,,,,"0.250000","443.500000","19314.500000","0.000000",,"5.125000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"140.000000","0.000000",,,,,,,,,"1.000000","415.000000","19258.000000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"135.000000","0.000000",,,,,,,,,"0.500000","432.750000","19234.000000","0.000000",,"14.250000",,,,"0.400000","0.000000","0.000000","1.666667","0.625000","0.000000","9.600000","0.000000","0.000000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","403.000000","19230.750000","0.000000",,"10.500000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.750000",,"70.750000",,"70.750000",,"174.750000","0.000000",,,,,,,,,"0.750000","536.750000","19004.500000","3.000000",,"26.250000",,,,"1.000000","0.000000","4.000000","1.666667","1.375000","0.000000","20.200000","0.000000","0.800000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.500000",,"148.500000",,"148.500000",,"231.750000","0.000000",,,,,,,,,"6.500000","1118.500000","17781.500000","0.000000",,"133.500000",,,,"5.400000","0.000000","0.333333","0.666667","10.125000","0.000000","109.200000","0.000000","0.200000","109.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"516.000000","607.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"262.000000",,"262.000000",,"262.000000",,"300.250000","0.000000",,,,,,,,,"15.750000","1974.000000","16448.750000","1.875000",,"360.000000",,,,"12.000000","0.000000","1.333333","1.000000","21.875000","0.000000","240.200000","0.000000","3.400000","236.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8.000000","7.000000",,,,,,,,,"1200.000000","1406.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"278.750000","0.000000",,,,,,,,,"1.500000","405.750000","18963.750000","0.000000",,"11.375000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"223.000000","226.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"221.000000","0.000000",,,,,,,,,"1.750000","425.500000","19112.750000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","2.333333","2.500000","0.000000","29.600000","0.000000","0.000000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","185.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"167.250000","0.000000",,,,,,,,,"1.500000","423.250000","19179.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"233.000000","234.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"183.000000","0.000000",,,,,,,,,"3.500000","454.750000","19156.000000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"249.000000","240.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"195.750000","0.000000",,,,,,,,,"3.250000","420.000000","19151.500000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"185.250000","0.000000",,,,,,,,,"0.750000","398.750000","19145.500000","0.000000",,"3.375000",,,,"0.200000","0.000000","1.333333","2.000000","0.000000","0.000000","4.000000","0.000000","0.200000","3.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"154.750000","0.000000",,,,,,,,,"1.000000","418.750000","19232.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"136.250000","0.000000",,,,,,,,,"2.500000","446.500000","19214.750000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.600000","0.000000","0.000000","3.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","1.000000",,,,,,,,,"356.000000","338.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"124.250000","0.000000",,,,,,,,,"1.250000","429.000000","19292.000000","0.000000",,"4.125000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"207.000000","193.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"148.750000","0.000000",,,,,,,,,"2.000000","426.500000","19267.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"227.000000","207.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"164.750000","0.000000",,,,,,,,,"0.750000","408.250000","19164.750000","0.000000",,"3.750000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"215.000000","202.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"156.000000","0.000000",,,,,,,,,"0.750000","417.250000","19142.750000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.200000","0.000000","0.000000","2.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"151.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"144.000000","0.000000",,,,,,,,,"1.250000","422.000000","19188.000000","0.000000",,"4.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"167.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"208.750000",,"208.750000",,"208.750000",,"173.500000","0.000000",,,,,,,,,"33.500000","1573.500000","17366.500000","354.000000",,"1348.375000",,,,"13.000000","3.250000","1.333333","7.666667","20.875000","0.000000","262.000000","0.000000","37.400000","224.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","4.000000",,,,,,,,,"759.000000","863.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"126.000000",,"126.000000",,"126.000000",,"123.750000","0.000000",,,,,,,,,"9.750000","951.000000","18806.500000","2.625000",,"124.125000",,,,"5.000000","0.000000","8.333333","4.000000","9.250000","0.000000","103.200000","0.000000","2.000000","101.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"169.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"244.000000","0.000000",,,,,,,,,"1.000000","490.750000","18937.250000","0.000000",,"47.875000",,,,"1.400000","0.000000","0.000000","1.333333","2.500000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"112.000000","0.000000",,,,,,,,,"2.750000","403.500000","19249.750000","0.000000",,"36.250000",,,,"2.000000","0.000000","0.000000","5.333333","3.625000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"209.250000","0.000000",,,,,,,,,"1.250000","430.500000","19159.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","1.333333","0.666667","1.875000","0.000000","22.800000","0.000000","0.600000","22.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.000000",,"64.000000",,"64.000000",,"283.500000","0.000000",,,,,,,,,"0.750000","484.250000","18995.000000","0.000000",,"23.125000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"273.500000","0.000000",,,,,,,,,"0.750000","401.000000","19017.250000","0.000000",,"14.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"245.250000","0.000000",,,,,,,,,"1.750000","413.500000","18978.500000","0.000000",,"20.500000",,,,"0.600000","0.000000","0.000000","2.333333","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"127.000000","0.000000",,,,,,,,,"1.000000","460.000000","19111.000000","0.000000",,"32.875000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"155.750000","0.000000",,,,,,,,,"2.500000","406.750000","19224.250000","0.000000",,"7.375000",,,,"0.200000","0.000000","0.000000","2.000000","0.250000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.500000",,"58.500000",,"58.500000",,"123.500000","0.000000",,,,,,,,,"1.750000","445.000000","19215.250000","0.000000",,"28.500000",,,,"1.200000","0.000000","0.000000","3.333333","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"134.500000","0.000000",,,,,,,,,"7.250000","895.250000","18545.750000","0.000000",,"127.000000",,,,"6.000000","0.000000","0.000000","2.000000","11.250000","0.000000","123.600000","0.000000","0.000000","123.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"461.000000","545.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"171.500000",,"171.500000",,"171.500000",,"209.000000","0.000000",,,,,,,,,"13.750000","1293.000000","17640.500000","6.375000",,"172.125000",,,,"6.600000","0.750000","5.666667","1.333333","11.625000","0.000000","135.600000","0.000000","8.200000","127.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","5.000000",,,,,,,,,"715.000000","915.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.500000",,"69.500000",,"69.500000",,"112.250000","0.000000",,,,,,,,,"2.500000","527.000000","19159.250000","1.125000",,"67.375000",,,,"3.000000","0.000000","3.000000","1.333333","5.500000","0.000000","62.200000","0.000000","1.400000","60.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"125.500000","0.000000",,,,,,,,,"1.000000","434.500000","19269.250000","0.000000",,"25.375000",,,,"0.600000","0.000000","0.000000","1.333333","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"131.500000","0.000000",,,,,,,,,"1.250000","489.750000","19147.750000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","3.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"92.750000","0.000000",,,,,,,,,"0.500000","454.750000","19351.750000","0.000000",,"10.875000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.250000",,"51.250000",,"51.250000",,"177.750000","0.000000",,,,,,,,,"0.750000","391.250000","19218.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","2.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"202.000000","0.000000",,,,,,,,,"1.000000","477.000000","19027.500000","0.000000",,"27.625000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.000000",,"58.000000",,"58.000000",,"122.500000","0.000000",,,,,,,,,"0.750000","439.750000","19317.250000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"163.000000","0.000000",,,,,,,,,"1.000000","406.000000","19183.750000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.000000",,"67.000000",,"67.000000",,"139.250000","0.000000",,,,,,,,,"0.500000","507.000000","19199.000000","0.000000",,"27.375000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"135.250000",,"135.250000",,"135.250000",,"130.250000","0.000000",,,,,,,,,"1.500000","1022.250000","18306.750000","0.750000",,"43.500000",,,,"1.200000","0.000000","1.333333","1.333333","2.250000","0.000000","27.800000","0.000000","1.200000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.500000",,"71.500000",,"71.500000",,"166.500000","0.000000",,,,,,,,,"1.750000","543.000000","18887.000000","0.000000",,"69.375000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","35.600000","0.000000","0.000000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"97.000000","0.000000",,,,,,,,,"4.250000","490.500000","19262.750000","0.000000",,"53.250000",,,,"2.400000","0.000000","0.000000","1.666667","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"120.750000","0.000000",,,,,,,,,"1.000000","422.000000","19276.750000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"117.250000","0.000000",,,,,,,,,"0.750000","446.000000","19261.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"116.500000","0.000000",,,,,,,,,"0.750000","480.250000","19228.250000","0.000000",,"21.000000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"78.750000","0.000000",,,,,,,,,"1.000000","418.500000","19397.250000","0.000000",,"11.625000",,,,"0.600000","0.000000","0.000000","2.000000","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"109.500000","0.000000",,,,,,,,,"1.250000","413.500000","19277.250000","0.000000",,"29.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"92.750000","0.000000",,,,,,,,,"0.750000","492.000000","19323.500000","0.000000",,"21.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"103.750000","0.000000",,,,,,,,,"0.500000","415.500000","19306.250000","0.000000",,"12.375000",,,,"0.600000","0.000000","0.000000","4.000000","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"181.250000","0.000000",,,,,,,,,"1.000000","495.000000","19124.250000","0.000000",,"35.500000",,,,"1.000000","0.000000","0.000000","5.000000","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.000000",,"145.000000",,"145.000000",,"173.250000","0.000000",,,,,,,,,"1.750000","1092.750000","18288.250000","2.250000",,"77.250000",,,,"2.000000","0.000000","10.666667","4.000000","3.625000","0.000000","43.800000","0.000000","1.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"184.750000","0.000000",,,,,,,,,"1.500000","425.250000","19109.500000","0.000000",,"48.750000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","30.000000","0.000000","0.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"166.750000","0.000000",,,,,,,,,"1.250000","407.750000","19259.250000","0.000000",,"28.125000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"221.500000","0.000000",,,,,,,,,"1.500000","494.000000","19014.750000","0.000000",,"41.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"140.750000","0.000000",,,,,,,,,"0.750000","455.750000","19282.250000","0.000000",,"17.500000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"191.750000","0.000000",,,,,,,,,"0.750000","402.000000","19154.750000","0.000000",,"13.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"154.750000","0.000000",,,,,,,,,"0.750000","512.000000","19213.000000","0.000000",,"28.000000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"170.000000","0.000000",,,,,,,,,"0.500000","401.500000","19127.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","18.000000","0.000000","0.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"188.500000","0.000000",,,,,,,,,"0.500000","400.750000","19228.500000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","2.666667","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"126.750000","0.000000",,,,,,,,,"0.750000","511.750000","19195.250000","0.000000",,"32.125000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.750000",,"145.750000",,"145.750000",,"210.250000","0.000000",,,,,,,,,"2.250000","1097.500000","17905.750000","12.000000",,"51.375000",,,,"1.400000","0.375000","2.333333","2.000000","2.125000","0.000000","30.400000","0.000000","5.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.250000",,"116.250000",,"116.250000",,"141.500000","0.000000",,,,,,,,,"3.000000","878.000000","18597.250000","0.000000",,"115.125000",,,,"4.000000","0.000000","1.666667","2.000000","7.375000","0.000000","81.000000","0.000000","0.200000","80.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"115.500000","0.000000",,,,,,,,,"0.750000","482.250000","19267.750000","0.000000",,"31.375000",,,,"1.000000","0.000000","0.000000","2.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"109.250000","0.000000",,,,,,,,,"3.000000","512.250000","19157.500000","0.000000",,"75.000000",,,,"3.000000","0.000000","0.000000","2.666667","5.500000","0.000000","62.200000","0.000000","0.000000","62.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.000000",,"147.000000",,"147.000000",,"227.000000","0.000000",,,,,,,,,"2.000000","1110.500000","17759.750000","0.000000",,"96.750000",,,,"3.400000","0.000000","0.000000","3.333333","6.375000","0.000000","70.800000","0.000000","0.000000","70.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"214.500000","0.000000",,,,,,,,,"1.250000","766.750000","18571.250000","0.000000",,"40.375000",,,,"1.000000","0.000000","2.000000","2.666667","1.875000","0.000000","21.000000","0.000000","0.200000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"149.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"109.500000","0.000000",,,,,,,,,"2.750000","456.250000","19301.500000","0.000000",,"63.625000",,,,"2.600000","0.000000","0.000000","3.333333","4.750000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"140.500000",,"140.500000",,"140.500000",,"144.000000","0.000000",,,,,,,,,"1.000000","1060.000000","18089.750000","0.750000",,"38.250000",,,,"1.000000","0.000000","1.666667","2.000000","1.750000","0.000000","22.000000","0.000000","1.400000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"75.000000",,"75.000000",,"75.000000",,"151.750000","0.000000",,,,,,,,,"2.500000","565.000000","19028.000000","0.375000",,"86.875000",,,,"3.400000","0.000000","2.333333","4.333333","6.250000","0.000000","68.400000","0.000000","0.200000","68.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"115.750000","0.000000",,,,,,,,,"1.250000","416.000000","19305.750000","0.000000",,"31.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"119.250000","0.000000",,,,,,,,,"1.250000","496.250000","19229.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","30.600000","0.000000","0.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"120.000000","0.000000",,,,,,,,,"0.500000","425.500000","19252.500000","0.000000",,"22.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","11.200000","0.000000","0.000000","11.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"150.750000","0.000000",,,,,,,,,"1.250000","426.000000","19223.500000","0.000000",,"21.375000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.000000",,"63.000000",,"63.000000",,"107.500000","0.000000",,,,,,,,,"0.500000","478.000000","19149.000000","0.000000",,"12.625000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.250000",,"60.250000",,"60.250000",,"106.000000","0.000000",,,,,,,,,"0.750000","456.750000","19356.500000","0.000000",,"33.000000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"129.750000","0.000000",,,,,,,,,"1.000000","417.250000","19185.250000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"94.500000","0.000000",,,,,,,,,"0.750000","513.750000","19315.250000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.750000",,"61.750000",,"61.750000",,"106.500000","0.000000",,,,,,,,,"1.000000","467.250000","19338.250000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"99.250000","0.000000",,,,,,,,,"0.750000","411.500000","19256.000000","0.000000",,"31.500000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.500000",,"69.500000",,"69.500000",,"140.500000","0.000000",,,,,,,,,"0.750000","526.750000","19188.500000","0.375000",,"29.875000",,,,"1.200000","0.000000","2.666667","1.333333","2.250000","0.000000","27.800000","0.000000","0.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"246.250000","0.000000",,,,,,,,,"1.000000","384.750000","19001.500000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","26.600000","0.000000","0.000000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"104.750000","0.000000",,,,,,,,,"0.750000","477.000000","19339.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"115.250000","0.000000",,,,,,,,,"1.000000","500.750000","19152.250000","0.000000",,"23.500000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"144.000000","0.000000",,,,,,,,,"1.000000","410.750000","19272.000000","0.000000",,"28.375000",,,,"0.800000","0.000000","2.666667","2.000000","1.375000","0.000000","17.600000","0.000000","0.200000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"133.500000","0.000000",,,,,,,,,"1.000000","400.000000","19236.750000","0.000000",,"15.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"135.000000","0.000000",,,,,,,,,"0.750000","487.250000","19095.250000","0.000000",,"29.625000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"112.250000","0.000000",,,,,,,,,"1.250000","398.500000","19310.000000","0.000000",,"33.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"126.500000","0.000000",,,,,,,,,"0.750000","411.750000","19243.750000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"137.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"80.000000",,"80.000000",,"80.000000",,"95.750000","0.000000",,,,,,,,,"1.250000","604.000000","19050.000000","0.000000",,"50.125000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","32.200000","0.000000","0.000000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.750000",,"162.750000",,"162.750000",,"127.000000","0.000000",,,,,,,,,"4.250000","1227.250000","18244.500000","2.250000",,"117.625000",,,,"3.800000","0.250000","2.666667","1.666667","6.750000","0.000000","78.600000","0.000000","4.000000","74.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"106.750000","0.000000",,,,,,,,,"3.000000","411.250000","19277.500000","0.375000",,"42.375000",,,,"1.200000","0.000000","0.333333","1.333333","1.875000","0.000000","24.000000","0.000000","0.200000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.000000",,"50.000000",,"50.000000",,"142.500000","0.000000",,,,,,,,,"0.500000","379.500000","19221.750000","0.000000",,"22.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"102.500000","0.000000",,,,,,,,,"1.000000","512.000000","19201.750000","0.000000",,"36.625000",,,,"1.200000","0.000000","0.000000","22.000000","2.000000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"105.250000","0.000000",,,,,,,,,"0.750000","412.750000","19358.000000","0.000000",,"25.875000",,,,"1.000000","0.000000","0.000000","1.333333","2.125000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"98.250000","0.000000",,,,,,,,,"0.000000","419.250000","19382.500000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.000000",,"68.000000",,"68.000000",,"173.500000","0.000000",,,,,,,,,"1.000000","514.250000","19135.250000","0.000000",,"31.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"105.750000","0.000000",,,,,,,,,"0.750000","420.750000","19295.750000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.666667","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"125.500000","0.000000",,,,,,,,,"0.750000","429.750000","19313.500000","0.000000",,"8.625000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.250000",,"71.250000",,"71.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","539.000000","19101.750000","0.000000",,"35.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"76.000000",,"76.000000",,"76.000000",,"159.000000","0.000000",,,,,,,,,"1.000000","574.750000","19064.750000","0.000000",,"25.000000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.800000","0.000000","0.000000","11.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"220.500000",,"220.500000",,"220.500000",,"275.000000","0.000000",,,,,,,,,"197.750000","1661.500000","16991.000000","4387.875000",,"4626.625000",,,,"82.000000","120.500000","2.333333","28.000000","32.500000","0.000000","1640.400000","0.000000","1291.800000","348.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","188.000000",,,,,,,,,"379.000000","514.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"263.000000",,"263.000000",,"263.000000",,"214.500000","0.000000",,,,,,,,,"159.000000","1980.000000","16686.750000","125.500000",,"3776.625000",,,,"21.400000","28.375000","1.666667","47.666667","11.875000","0.000000","431.600000","0.000000","302.400000","129.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12759.000000","65.000000",,,,,,,,,"173238.000000","17013.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"319.750000",,"319.750000",,"319.750000",,"325.250000","0.000000",,,,,,,,,"228.000000","2408.000000","15818.000000","0.000000",,"8006.125000",,,,"20.200000","0.000000","5.000000","18.666667","37.750000","0.000000","405.800000","0.000000","0.200000","405.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20208.000000","80.000000",,,,,,,,,"273864.000000","24810.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"304.750000",,"304.750000",,"304.750000",,"333.000000","0.000000",,,,,,,,,"217.750000","2293.500000","16005.750000","0.000000",,"12143.250000",,,,"32.400000","0.000000","8.666667","17.666667","60.750000","0.000000","649.200000","0.000000","0.800000","648.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8932.000000","31.000000",,,,,,,,,"121054.000000","9597.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"267.250000",,"267.250000",,"267.250000",,"221.750000","0.000000",,,,,,,,,"272.000000","2010.500000","16706.500000","9.000000",,"9623.625000",,,,"64.800000","1.375000","3.666667","8.333333","119.750000","0.000000","1296.600000","0.000000","16.000000","1280.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14509.000000","63.000000",,,,,,,,,"196715.000000","18309.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"279.000000",,"279.000000",,"279.000000",,"175.750000","0.000000",,,,,,,,,"80.500000","2102.500000","16644.000000","550.375000",,"1256.000000",,,,"44.400000","71.625000","1.000000","10.333333","11.625000","0.000000","891.800000","0.000000","766.200000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"104.000000","127.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"451.000000",,"451.000000",,"451.000000",,"205.000000","0.000000",,,,,,,,,"19.750000","3393.000000","14934.000000","316.875000",,"609.625000",,,,"11.600000","7.875000","0.666667","7.666667","13.875000","0.000000","234.600000","0.000000","86.000000","148.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","13.000000",,,,,,,,,"97.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"590.750000",,"590.750000",,"590.750000",,"189.000000","0.000000",,,,,,,,,"19.500000","4446.250000","14343.750000","40.875000",,"344.875000",,,,"7.800000","3.250000","0.666667","2.000000","11.125000","0.000000","156.800000","0.000000","35.800000","121.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"82.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"606.250000",,"606.250000",,"606.250000",,"174.250000","0.000000",,,,,,,,,"11.000000","4561.750000","14862.000000","18.375000",,"546.625000",,,,"7.400000","0.375000","0.666667","4.333333","13.125000","0.000000","148.200000","0.000000","5.800000","142.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"63.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"631.250000",,"631.250000",,"631.250000",,"203.500000","0.000000",,,,,,,,,"3.750000","4748.500000","14850.250000","2.250000",,"255.625000",,,,"3.000000","0.000000","1.333333","3.000000","5.125000","0.000000","61.000000","0.000000","2.400000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"57.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"572.000000",,"572.000000",,"572.000000",,"392.500000","0.000000",,,,,,,,,"8.250000","4302.000000","13463.250000","67.125000",,"347.250000",,,,"5.000000","0.750000","0.666667","5.333333","8.500000","0.000000","103.600000","0.000000","11.600000","92.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"83.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"565.500000",,"565.500000",,"565.500000",,"361.750000","0.000000",,,,,,,,,"4.250000","4256.000000","14062.000000","0.000000",,"175.875000",,,,"3.800000","0.000000","0.000000","3.000000","7.125000","0.000000","79.000000","0.000000","0.200000","78.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"98.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"673.500000",,"673.500000",,"673.500000",,"190.000000","0.000000",,,,,,,,,"4.250000","5068.000000","14375.250000","7.875000",,"250.125000",,,,"3.400000","0.000000","1.333333","3.000000","6.375000","0.000000","70.000000","0.000000","1.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"75.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"585.250000",,"585.250000",,"585.250000",,"282.000000","0.000000",,,,,,,,,"71.000000","4405.000000","14286.250000","385.500000",,"4105.125000",,,,"24.400000","4.125000","1.000000","10.666667","41.625000","0.000000","491.200000","0.000000","46.600000","444.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"85.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"680.500000",,"680.500000",,"680.500000",,"218.750000","0.000000",,,,,,,,,"12.750000","5120.500000","13514.750000","100.000000",,"696.750000",,,,"7.600000","3.000000","1.333333","5.333333","10.875000","0.000000","154.400000","0.000000","35.000000","119.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"602.500000",,"602.500000",,"602.500000",,"212.500000","0.000000",,,,,,,,,"6.500000","4532.500000","14356.750000","0.000000",,"363.750000",,,,"8.600000","0.000000","0.000000","3.000000","16.125000","0.000000","174.400000","0.000000","0.000000","174.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"605.250000",,"605.250000",,"605.250000",,"187.000000","0.000000",,,,,,,,,"8.750000","4554.000000","14375.750000","7.875000",,"430.000000",,,,"4.000000","1.500000","0.333333","5.333333","5.625000","0.000000","82.000000","0.000000","19.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"565.250000",,"565.250000",,"565.250000",,"231.000000","0.000000",,,,,,,,,"10.250000","4254.750000","14320.250000","0.000000",,"625.125000",,,,"7.000000","0.000000","0.666667","3.666667","13.125000","0.000000","142.000000","0.000000","0.800000","141.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"73.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"649.500000",,"649.500000",,"649.500000",,"136.000000","0.000000",,,,,,,,,"7.000000","4888.500000","14453.750000","0.000000",,"364.125000",,,,"4.200000","0.000000","0.666667","2.666667","7.875000","0.000000","87.400000","0.000000","0.400000","87.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"662.750000",,"662.750000",,"662.750000",,"229.500000","0.000000",,,,,,,,,"10.500000","4986.750000","14373.000000","0.000000",,"991.125000",,,,"3.600000","0.000000","0.000000","12.000000","6.750000","0.000000","72.600000","0.000000","0.000000","72.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.500000",,"658.500000",,"658.500000",,"112.250000","0.000000",,,,,,,,,"7.750000","4955.250000","14495.000000","0.375000",,"372.375000",,,,"5.000000","0.000000","2.000000","6.000000","9.375000","0.000000","103.200000","0.000000","1.600000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","60.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"617.000000",,"617.000000",,"617.000000",,"235.000000","0.000000",,,,,,,,,"55.500000","4642.750000","14210.250000","69.750000",,"4105.000000",,,,"20.800000","0.750000","0.666667","12.333333","38.250000","0.000000","419.600000","0.000000","8.000000","411.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"107.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"644.750000",,"644.750000",,"644.750000",,"139.250000","0.000000",,,,,,,,,"5.500000","4851.000000","14433.500000","0.375000",,"186.375000",,,,"5.800000","0.000000","0.000000","1.333333","10.875000","0.000000","119.800000","0.000000","0.800000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"112.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"566.500000",,"566.500000",,"566.500000",,"192.250000","0.000000",,,,,,,,,"5.250000","4261.750000","14338.250000","22.875000",,"286.125000",,,,"3.600000","1.875000","0.333333","3.000000","4.875000","0.000000","75.800000","0.000000","22.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"82.000000","103.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"622.750000",,"622.750000",,"622.750000",,"279.750000","0.000000",,,,,,,,,"3.750000","4687.250000","14300.000000","12.000000",,"134.875000",,,,"3.400000","0.375000","0.333333","2.333333","5.625000","0.000000","68.200000","0.000000","7.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"77.000000","91.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"500.750000",,"500.750000",,"500.750000",,"473.500000","0.000000",,,,,,,,,"4.500000","3769.750000","13729.250000","6.000000",,"90.000000",,,,"3.000000","0.375000","0.333333","1.333333","5.250000","0.000000","63.600000","0.000000","6.800000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"120.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"603.250000",,"603.250000",,"603.250000",,"243.000000","0.000000",,,,,,,,,"34.000000","4538.000000","13894.750000","218.250000",,"1566.750000",,,,"11.800000","2.625000","0.666667","11.000000","19.000000","0.000000","237.000000","0.000000","29.600000","207.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"108.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1413.000000",,"1413.000000",,"1413.000000",,"219.750000","0.000000",,,,,,,,,"10.500000","10625.250000","6999.000000","4.500000",,"301.750000",,,,"10.600000","0.375000","1.000000","4.666667","19.000000","0.000000","212.400000","0.000000","7.200000","205.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"76.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.750000",,"604.750000",,"604.750000",,"357.750000","0.000000",,,,,,,,,"9.750000","4549.750000","12845.750000","3.000000",,"530.875000",,,,"4.600000","0.375000","3.333333","7.333333","7.875000","0.000000","94.200000","0.000000","7.600000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"65.000000","80.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"653.250000",,"653.250000",,"653.250000",,"246.750000","0.000000",,,,,,,,,"37.250000","4914.250000","14143.250000","269.625000",,"1562.125000",,,,"15.800000","13.000000","1.333333","9.666667","16.000000","0.000000","316.200000","0.000000","143.000000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","72.000000",,,,,,,,,"480.000000","555.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1076.500000",,"1076.500000",,"1076.500000",,"304.500000","0.000000",,,,,,,,,"52.500000","8097.250000","7812.250000","121.750000",,"2161.625000",,,,"34.200000","3.250000","3.666667","7.000000","59.625000","0.000000","684.600000","0.000000","37.400000","647.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","26.000000",,,,,,,,,"177.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"763.500000",,"763.500000",,"763.500000",,"177.500000","0.000000",,,,,,,,,"38.500000","5743.500000","12866.250000","105.000000",,"1701.125000",,,,"24.400000","2.250000","1.333333","4.333333","43.875000","0.000000","488.400000","0.000000","25.600000","462.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"167.000000","176.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"626.000000",,"626.000000",,"626.000000",,"222.750000","0.000000",,,,,,,,,"21.000000","4710.250000","14315.750000","67.375000",,"991.500000",,,,"9.600000","1.000000","2.000000","10.000000","16.500000","0.000000","192.000000","0.000000","12.400000","179.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"47.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"711.250000",,"711.250000",,"711.250000",,"151.000000","0.000000",,,,,,,,,"1.750000","5350.000000","14462.250000","0.000000",,"65.875000",,,,"0.000000","0.000000","0.000000","3.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"616.500000",,"616.500000",,"616.500000",,"153.250000","0.000000",,,,,,,,,"32.000000","4640.250000","14400.250000","137.375000",,"1510.500000",,,,"15.000000","3.000000","0.666667","6.666667","24.625000","0.000000","303.000000","0.000000","35.800000","267.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","44.000000",,,,,,,,,"182.000000","196.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"575.250000",,"575.250000",,"575.250000",,"203.250000","0.000000",,,,,,,,,"6.750000","4329.750000","14509.500000","8.875000",,"419.875000",,,,"3.400000","0.000000","0.333333","9.666667","6.000000","0.000000","68.400000","0.000000","1.000000","67.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"77.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"712.250000",,"712.250000",,"712.250000",,"216.500000","0.000000",,,,,,,,,"29.750000","5360.250000","12809.750000","183.375000",,"961.125000",,,,"15.200000","4.125000","2.666667","6.000000","24.375000","0.000000","307.200000","0.000000","45.000000","262.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","17.000000",,,,,,,,,"113.000000","141.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"145.000000","0.000000",,,,,,,,,"18.750000","4800.500000","14352.000000","15.750000",,"680.875000",,,,"11.400000","1.125000","1.666667","5.666667","19.875000","0.000000","231.600000","0.000000","15.600000","216.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","15.000000",,,,,,,,,"106.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"563.250000",,"563.250000",,"563.250000",,"205.750000","0.000000",,,,,,,,,"26.750000","4239.250000","14578.000000","101.000000",,"757.125000",,,,"11.000000","1.250000","1.666667","9.000000","19.250000","0.000000","220.200000","0.000000","15.800000","204.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"103.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"488.000000",,"488.000000",,"488.000000",,"227.250000","0.000000",,,,,,,,,"8.250000","3672.750000","14196.250000","15.000000",,"272.625000",,,,"7.200000","0.375000","0.666667","3.333333","13.000000","0.000000","147.200000","0.000000","6.800000","140.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","31.000000",,,,,,,,,"153.000000","173.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"643.000000",,"643.000000",,"643.000000",,"198.000000","0.000000",,,,,,,,,"31.500000","4838.250000","13767.500000","226.625000",,"1597.750000",,,,"11.400000","4.000000","3.000000","14.333333","17.250000","0.000000","230.400000","0.000000","45.200000","185.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"612.500000",,"612.500000",,"612.500000",,"201.750000","0.000000",,,,,,,,,"10.750000","4608.000000","14363.500000","3.750000",,"407.625000",,,,"7.400000","0.375000","0.666667","3.666667","13.375000","0.000000","151.400000","0.000000","5.800000","145.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"610.000000",,"610.000000",,"610.000000",,"254.750000","0.000000",,,,,,,,,"3.500000","4591.500000","14285.000000","0.000000",,"378.625000",,,,"1.000000","0.000000","0.000000","8.666667","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.750000",,"638.750000",,"638.750000",,"216.250000","0.000000",,,,,,,,,"3.750000","4808.000000","14369.500000","0.000000",,"369.000000",,,,"1.600000","0.000000","0.000000","8.666667","2.875000","0.000000","33.000000","0.000000","0.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"662.750000",,"662.750000",,"662.750000",,"244.500000","0.000000",,,,,,,,,"14.500000","4986.500000","14234.500000","373.125000",,"262.875000",,,,"4.200000","6.250000","2.000000","50.000000","1.375000","0.000000","84.600000","0.000000","68.000000","16.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"364.000000","389.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"775.000000",,"775.000000",,"775.000000",,"174.750000","0.000000",,,,,,,,,"38.250000","5831.000000","13690.750000","581.500000",,"353.625000",,,,"25.200000","44.250000","1.000000","10.000000","2.625000","0.000000","505.600000","0.000000","475.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"249.000000","250.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"748.250000",,"748.250000",,"748.250000",,"132.500000","0.000000",,,,,,,,,"9.750000","5630.750000","14530.750000","0.000000",,"348.375000",,,,"1.600000","0.000000","3.000000","19.000000","3.000000","0.000000","34.600000","0.000000","0.400000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"614.250000",,"614.250000",,"614.250000",,"165.500000","0.000000",,,,,,,,,"4.250000","4623.750000","14368.750000","0.000000",,"397.125000",,,,"1.200000","0.000000","0.000000","12.333333","2.125000","0.000000","24.800000","0.000000","0.800000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"670.250000",,"670.250000",,"670.250000",,"194.750000","0.000000",,,,,,,,,"2.750000","5041.750000","14411.750000","0.750000",,"254.875000",,,,"1.200000","0.000000","2.333333","7.000000","2.125000","0.000000","25.400000","0.000000","0.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"65.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"654.000000",,"654.000000",,"654.000000",,"187.500000","0.000000",,,,,,,,,"5.250000","4921.000000","14423.500000","2.250000",,"423.625000",,,,"1.600000","0.000000","1.666667","11.000000","2.500000","0.000000","32.200000","0.000000","1.600000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"70.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"633.250000",,"633.250000",,"633.250000",,"176.500000","0.000000",,,,,,,,,"7.250000","4766.250000","14431.250000","0.375000",,"552.750000",,,,"1.600000","0.000000","1.666667","13.000000","2.625000","0.000000","32.000000","0.000000","1.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"630.500000",,"630.500000",,"630.500000",,"162.250000","0.000000",,,,,,,,,"3.250000","4746.750000","14410.000000","0.000000",,"377.250000",,,,"1.200000","0.000000","0.000000","15.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"63.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"643.500000",,"643.500000",,"643.500000",,"159.750000","0.000000",,,,,,,,,"5.000000","4843.750000","14467.250000","9.375000",,"353.625000",,,,"2.000000","0.000000","0.666667","6.000000","3.125000","0.000000","40.600000","0.000000","2.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"61.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"644.250000",,"644.250000",,"644.250000",,"202.500000","0.000000",,,,,,,,,"82.750000","4846.500000","14300.000000","10.750000",,"5538.875000",,,,"19.200000","0.375000","4.000000","22.666667","35.250000","0.000000","384.400000","0.000000","6.400000","378.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"59.000000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"584.000000",,"584.000000",,"584.000000",,"228.000000","0.000000",,,,,,,,,"113.750000","4393.500000","15089.500000","268.125000",,"4890.250000",,,,"67.000000","15.375000","4.666667","8.000000","110.250000","0.000000","1343.600000","0.000000","166.600000","1177.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"113.000000","129.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"698.750000",,"698.750000",,"698.750000",,"167.000000","0.000000",,,,,,,,,"12.750000","5258.500000","14454.250000","52.125000",,"480.000000",,,,"8.400000","0.750000","1.000000","4.333333","14.500000","0.000000","169.200000","0.000000","11.200000","158.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"617.500000",,"617.500000",,"617.500000",,"114.000000","0.000000",,,,,,,,,"20.750000","4647.250000","14828.250000","352.875000",,"161.000000",,,,"9.400000","16.875000","1.333333","7.000000","0.375000","0.000000","188.400000","0.000000","182.200000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"588.500000",,"588.500000",,"588.500000",,"269.000000","0.000000",,,,,,,,,"30.250000","4429.500000","13849.750000","593.250000",,"266.625000",,,,"14.400000","22.500000","1.000000","4.000000","4.000000","0.000000","288.600000","0.000000","243.600000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"75.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"534.250000",,"534.250000",,"534.250000",,"255.250000","0.000000",,,,,,,,,"23.000000","4021.250000","14328.250000","604.125000",,"406.125000",,,,"4.000000","6.000000","1.000000","14.333333","1.000000","0.000000","80.200000","0.000000","66.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"577.000000",,"577.000000",,"577.000000",,"411.500000","0.000000",,,,,,,,,"21.250000","4340.750000","14195.750000","596.625000",,"404.625000",,,,"4.200000","5.375000","0.666667","10.666667","2.125000","0.000000","85.600000","0.000000","60.400000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"82.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"479.250000",,"479.250000",,"479.250000",,"180.500000","0.000000",,,,,,,,,"72.250000","3605.500000","15726.500000","1109.125000",,"272.250000",,,,"26.400000","47.500000","1.000000","13.000000","1.500000","0.000000","528.400000","0.000000","508.600000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"60.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"626.250000",,"626.250000",,"626.250000",,"132.750000","0.000000",,,,,,,,,"41.250000","4713.250000","14864.000000","686.625000",,"160.875000",,,,"9.400000","16.875000","1.000000","7.000000","0.625000","0.000000","190.000000","0.000000","180.800000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"72.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.250000",,"604.250000",,"604.250000",,"129.750000","0.000000",,,,,,,,,"37.750000","4547.500000","14743.500000","670.125000",,"166.500000",,,,"9.600000","16.875000","0.333333","17.666667","0.625000","0.000000","192.000000","0.000000","182.400000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"569.750000",,"569.750000",,"569.750000",,"190.500000","0.000000",,,,,,,,,"25.000000","4287.500000","14658.500000","216.000000",,"47.875000",,,,"10.000000","18.000000","0.333333","1.666667","0.750000","0.000000","203.600000","0.000000","192.600000","11.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"181.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"536.750000",,"536.750000",,"536.750000",,"179.500000","0.000000",,,,,,,,,"25.250000","4038.500000","15069.500000","88.000000",,"97.875000",,,,"14.200000","18.000000","2.000000","1.333333","8.250000","0.000000","286.800000","0.000000","195.600000","91.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"603.000000",,"603.000000",,"603.000000",,"131.000000","0.000000",,,,,,,,,"28.250000","4537.750000","15078.500000","143.625000",,"320.250000",,,,"23.600000","34.875000","1.666667","5.666667","9.375000","0.000000","475.000000","0.000000","372.200000","102.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"103.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"720.500000",,"720.500000",,"720.500000",,"211.750000","0.000000",,,,,,,,,"12.000000","5420.000000","13650.500000","50.250000",,"329.250000",,,,"10.600000","4.125000","0.666667","3.333333","15.625000","0.000000","214.000000","0.000000","44.200000","169.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"107.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1139.000000",,"1139.000000",,"1139.000000",,"249.500000","0.000000",,,,,,,,,"32.250000","8567.000000","9664.500000","91.875000",,"547.000000",,,,"17.200000","8.625000","0.333333","2.333333","23.125000","0.000000","344.200000","0.000000","95.600000","248.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"60.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1050.500000",,"1050.500000",,"1050.500000",,"246.250000","0.000000",,,,,,,,,"9.500000","7903.500000","9529.750000","0.000000",,"505.875000",,,,"2.600000","0.000000","2.333333","7.333333","4.500000","0.000000","52.000000","0.000000","0.200000","51.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"49.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1152.000000",,"1152.000000",,"1152.000000",,"725.000000","0.000000",,,,,,,,,"8.500000","8664.250000","9172.250000","2.250000",,"484.500000",,,,"6.400000","0.000000","0.000000","4.333333","11.500000","0.000000","129.000000","0.000000","2.400000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"88.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1130.250000",,"1130.250000",,"1130.250000",,"227.000000","0.000000",,,,,,,,,"6.500000","8503.250000","9482.750000","3.375000",,"425.625000",,,,"2.000000","0.000000","0.333333","8.000000","3.750000","0.000000","43.200000","0.000000","3.000000","40.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1246.500000",,"1246.500000",,"1246.500000",,"192.000000","0.000000",,,,,,,,,"33.000000","9376.250000","9891.500000","88.500000",,"1180.125000",,,,"12.200000","9.375000","0.666667","16.000000","13.375000","0.000000","246.600000","0.000000","101.400000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.500000",,"1103.500000",,"1103.500000",,"227.250000","0.000000",,,,,,,,,"22.000000","8301.750000","9499.250000","22.750000",,"1333.125000",,,,"5.400000","1.875000","3.000000","16.333333","7.875000","0.000000","108.800000","0.000000","23.800000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1076.500000",,"1076.500000",,"1076.500000",,"300.250000","0.000000",,,,,,,,,"12.250000","8098.750000","9617.000000","60.750000",,"438.750000",,,,"4.800000","5.625000","5.333333","15.666667","2.875000","0.000000","96.600000","0.000000","63.800000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1244.750000",,"1244.750000",,"1244.750000",,"228.500000","0.000000",,,,,,,,,"6.500000","9366.000000","9500.250000","0.000000",,"441.750000",,,,"2.600000","0.000000","0.666667","7.333333","4.750000","0.000000","52.600000","0.000000","0.600000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1051.750000",,"1051.750000",,"1051.750000",,"536.000000","0.000000",,,,,,,,,"3.000000","7911.750000","9218.000000","0.000000",,"367.500000",,,,"1.200000","0.000000","1.333333","11.333333","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1147.750000",,"1147.750000",,"1147.750000",,"322.500000","0.000000",,,,,,,,,"9.250000","8635.000000","9436.500000","0.375000",,"461.625000",,,,"2.200000","0.000000","8.333333","10.000000","4.125000","0.000000","47.000000","0.000000","1.600000","45.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"15.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1093.250000",,"1093.250000",,"1093.250000",,"240.500000","0.000000",,,,,,,,,"5.250000","8224.250000","9486.750000","0.000000",,"482.875000",,,,"1.800000","0.000000","7.333333","16.666667","3.375000","0.000000","39.600000","0.000000","0.200000","39.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1307.750000",,"1307.750000",,"1307.750000",,"236.000000","0.000000",,,,,,,,,"5.500000","9838.000000","9526.750000","0.625000",,"460.125000",,,,"3.400000","0.000000","2.333333","12.666667","6.000000","0.000000","68.800000","0.000000","1.800000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1268.000000",,"1268.000000",,"1268.000000",,"196.500000","0.000000",,,,,,,,,"6.000000","9537.000000","9543.250000","0.250000",,"487.750000",,,,"2.800000","0.000000","2.000000","13.333333","5.125000","0.000000","57.400000","0.000000","1.000000","56.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1218.500000",,"1218.500000",,"1218.500000",,"139.250000","0.000000",,,,,,,,,"4.500000","9166.250000","9578.250000","0.375000",,"497.875000",,,,"2.600000","0.000000","1.333333","14.333333","4.875000","0.000000","55.600000","0.000000","0.600000","55.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1285.750000",,"1285.750000",,"1285.750000",,"170.000000","0.000000",,,,,,,,,"5.250000","9671.250000","9619.750000","2.250000",,"369.250000",,,,"2.200000","0.000000","2.000000","11.000000","4.000000","0.000000","46.200000","0.000000","0.600000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1169.500000",,"1169.500000",,"1169.500000",,"220.250000","0.000000",,,,,,,,,"6.750000","8797.750000","9545.500000","1.875000",,"563.875000",,,,"1.400000","0.000000","1.333333","38.000000","2.250000","0.000000","30.600000","0.000000","3.400000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1369.500000",,"1369.500000",,"1369.500000",,"259.750000","0.000000",,,,,,,,,"4.750000","10302.500000","9550.500000","1.875000",,"405.375000",,,,"2.600000","0.000000","2.666667","11.000000","4.375000","0.000000","53.400000","0.000000","2.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1203.250000",,"1203.250000",,"1203.250000",,"224.250000","0.000000",,,,,,,,,"7.250000","9049.750000","9516.000000","0.750000",,"657.250000",,,,"3.200000","0.000000","1.333333","20.333333","6.000000","0.000000","65.600000","0.000000","1.000000","64.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1112.250000",,"1112.250000",,"1112.250000",,"404.250000","0.000000",,,,,,,,,"6.500000","8367.750000","9385.000000","0.375000",,"431.625000",,,,"1.600000","0.000000","3.000000","15.333333","3.000000","0.000000","34.800000","0.000000","1.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1225.500000",,"1225.500000",,"1225.500000",,"252.000000","0.000000",,,,,,,,,"4.750000","9219.500000","9517.750000","0.750000",,"473.250000",,,,"1.800000","0.000000","2.666667","17.333333","3.000000","0.000000","36.400000","0.000000","1.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1314.750000",,"1314.750000",,"1314.750000",,"108.500000","0.000000",,,,,,,,,"6.250000","9888.500000","9642.000000","0.750000",,"350.125000",,,,"1.000000","0.000000","1.666667","30.000000","1.375000","0.000000","20.000000","0.000000","1.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1242.500000",,"1242.500000",,"1242.500000",,"235.250000","0.000000",,,,,,,,,"6.750000","9344.250000","9527.000000","1.375000",,"453.375000",,,,"2.400000","0.000000","2.333333","14.000000","4.125000","0.000000","48.200000","0.000000","1.800000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1180.000000",,"1180.000000",,"1180.000000",,"285.250000","0.000000",,,,,,,,,"6.250000","8876.250000","9440.000000","0.750000",,"410.625000",,,,"2.400000","0.000000","0.666667","14.333333","4.125000","0.000000","49.200000","0.000000","1.600000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1120.750000",,"1120.750000",,"1120.750000",,"257.000000","0.000000",,,,,,,,,"7.000000","8429.500000","9474.250000","1.500000",,"376.375000",,,,"2.400000","0.000000","1.333333","12.000000","4.500000","0.000000","50.000000","0.000000","1.200000","48.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1160.000000",,"1160.000000",,"1160.000000",,"306.500000","0.000000",,,,,,,,,"5.000000","8725.750000","9412.500000","1.125000",,"500.250000",,,,"1.800000","0.000000","1.333333","17.333333","3.250000","0.000000","37.400000","0.000000","1.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1288.500000",,"1288.500000",,"1288.500000",,"243.000000","0.000000",,,,,,,,,"7.500000","9691.750000","9507.000000","3.625000",,"499.000000",,,,"2.400000","0.000000","5.000000","12.333333","4.375000","0.000000","51.200000","0.000000","3.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1286.500000",,"1286.500000",,"1286.500000",,"251.750000","0.000000",,,,,,,,,"9.750000","9676.750000","9559.250000","5.500000",,"444.000000",,,,"2.800000","0.375000","3.000000","11.333333","4.375000","0.000000","56.800000","0.000000","7.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1178.250000",,"1178.250000",,"1178.250000",,"292.250000","0.000000",,,,,,,,,"6.000000","8862.000000","9494.750000","2.500000",,"429.250000",,,,"1.800000","0.375000","2.333333","13.333333","2.875000","0.000000","39.000000","0.000000","5.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1250.750000",,"1250.750000",,"1250.750000",,"287.500000","0.000000",,,,,,,,,"5.000000","9409.250000","9473.500000","1.750000",,"411.250000",,,,"2.400000","0.000000","2.666667","9.333333","4.125000","0.000000","49.800000","0.000000","3.800000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1154.750000",,"1154.750000",,"1154.750000",,"262.500000","0.000000",,,,,,,,,"24.500000","8688.000000","9617.750000","7.875000",,"1664.625000",,,,"6.400000","0.625000","10.000000","24.333333","11.125000","0.000000","128.400000","0.000000","8.000000","120.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1167.750000",,"1167.750000",,"1167.750000",,"186.000000","0.000000",,,,,,,,,"52.000000","8786.000000","9567.250000","7.500000",,"3361.500000",,,,"10.800000","0.375000","3.000000","43.000000","19.500000","0.000000","217.200000","0.000000","7.400000","209.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1271.500000",,"1271.500000",,"1271.500000",,"287.000000","0.000000",,,,,,,,,"7.500000","9563.750000","9609.750000","16.875000",,"471.375000",,,,"4.600000","1.375000","4.000000","19.000000","7.000000","0.000000","94.200000","0.000000","18.200000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1162.250000",,"1162.250000",,"1162.250000",,"250.000000","0.000000",,,,,,,,,"27.000000","8742.750000","9915.000000","544.750000",,"777.000000",,,,"10.400000","12.125000","3.333333","25.333333","7.000000","0.000000","210.000000","0.000000","134.000000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"892.250000",,"892.250000",,"892.250000",,"447.500000","0.000000",,,,,,,,,"176.250000","6713.250000","10175.500000","1023.750000",,"10632.750000",,,,"49.400000","15.875000","3.333333","18.000000","76.750000","0.000000","989.400000","0.000000","168.800000","820.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1027.250000",,"1027.250000",,"1027.250000",,"228.750000","0.000000",,,,,,,,,"5.500000","7726.750000","9456.250000","5.625000",,"343.125000",,,,"1.000000","0.375000","0.666667","13.666667","1.375000","0.000000","22.400000","0.000000","4.400000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"951.000000",,"951.000000",,"951.000000",,"307.500000","0.000000",,,,,,,,,"4.500000","7156.000000","9368.500000","3.750000",,"293.875000",,,,"2.800000","0.375000","0.666667","4.333333","4.500000","0.000000","56.800000","0.000000","5.800000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1092.000000",,"1092.000000",,"1092.000000",,"308.500000","0.000000",,,,,,,,,"4.250000","8213.500000","9404.250000","1.125000",,"486.375000",,,,"1.000000","0.000000","0.666667","14.000000","1.750000","0.000000","22.800000","0.000000","1.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"898.000000",,"898.000000",,"898.000000",,"204.250000","0.000000",,,,,,,,,"2.250000","6754.250000","9402.000000","1.875000",,"225.375000",,,,"0.800000","0.000000","0.333333","8.666667","1.500000","0.000000","18.800000","0.000000","2.400000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1028.250000",,"1028.250000",,"1028.250000",,"147.250000","0.000000",,,,,,,,,"3.250000","7733.250000","9503.500000","0.750000",,"266.250000",,,,"0.800000","0.000000","0.666667","6.333333","1.125000","0.000000","17.000000","0.000000","2.800000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"844.500000",,"844.500000",,"844.500000",,"163.750000","0.000000",,,,,,,,,"6.500000","6353.750000","9458.250000","1.875000",,"230.250000",,,,"1.800000","0.000000","0.333333","13.333333","3.250000","0.000000","38.400000","0.000000","2.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.500000",,"884.500000",,"884.500000",,"151.250000","0.000000",,,,,,,,,"4.500000","6656.250000","9499.000000","2.625000",,"401.875000",,,,"1.000000","0.000000","1.333333","10.333333","1.750000","0.000000","23.800000","0.000000","2.600000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"906.000000",,"906.000000",,"906.000000",,"127.250000","0.000000",,,,,,,,,"25.250000","6816.750000","9766.750000","346.875000",,"1326.375000",,,,"8.600000","5.875000","4.000000","20.666667","10.000000","0.000000","174.200000","0.000000","64.400000","109.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.250000",,"856.250000",,"856.250000",,"164.000000","0.000000",,,,,,,,,"9.000000","6442.250000","9504.250000","20.250000",,"362.625000",,,,"3.400000","2.125000","2.333333","7.000000","4.000000","0.000000","69.200000","0.000000","24.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.250000",,"856.250000",,"856.250000",,"156.500000","0.000000",,,,,,,,,"3.750000","6442.250000","9418.000000","0.625000",,"297.000000",,,,"1.000000","0.000000","3.000000","8.000000","1.750000","0.000000","22.400000","0.000000","0.800000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.000000",,"884.000000",,"884.000000",,"179.000000","0.000000",,,,,,,,,"3.500000","6648.750000","9448.000000","1.875000",,"227.250000",,,,"1.600000","0.000000","0.666667","6.666667","2.500000","0.000000","32.200000","0.000000","2.600000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1158.250000",,"1158.250000",,"1158.250000",,"319.250000","0.000000",,,,,,,,,"3.250000","8712.250000","9407.000000","2.125000",,"406.375000",,,,"1.000000","0.000000","3.333333","12.000000","1.750000","0.000000","23.600000","0.000000","2.600000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1266.500000",,"1266.500000",,"1266.500000",,"212.250000","0.000000",,,,,,,,,"16.750000","9526.750000","9583.250000","11.250000",,"936.625000",,,,"3.800000","1.000000","3.000000","33.333333","5.625000","0.000000","76.000000","0.000000","14.600000","61.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1110.500000",,"1110.500000",,"1110.500000",,"501.500000","0.000000",,,,,,,,,"2.750000","8354.000000","9211.250000","1.875000",,"335.125000",,,,"0.800000","0.000000","0.333333","7.666667","1.375000","0.000000","18.200000","0.000000","0.600000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.500000",,"1103.500000",,"1103.500000",,"162.000000","0.000000",,,,,,,,,"9.000000","8302.750000","9535.500000","1.125000",,"546.375000",,,,"2.000000","0.000000","2.666667","11.000000","3.375000","0.000000","40.600000","0.000000","1.000000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1104.500000",,"1104.500000",,"1104.500000",,"262.500000","0.000000",,,,,,,,,"79.250000","8309.500000","10911.000000","2243.625000",,"972.000000",,,,"32.600000","54.375000","1.666667","14.000000","6.375000","0.000000","654.000000","0.000000","583.800000","70.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1067.000000",,"1067.000000",,"1067.000000",,"377.000000","0.000000",,,,,,,,,"87.500000","8026.500000","10848.000000","1455.250000",,"2058.750000",,,,"28.800000","33.125000","3.333333","18.666667","20.125000","0.000000","576.800000","0.000000","358.400000","218.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1140.000000",,"1140.000000",,"1140.000000",,"188.500000","0.000000",,,,,,,,,"78.750000","8576.250000","9930.250000","632.375000",,"3302.250000",,,,"20.200000","13.500000","3.000000","14.333333","24.375000","0.000000","406.600000","0.000000","144.200000","262.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"920.000000",,"920.000000",,"920.000000",,"401.500000","0.000000",,,,,,,,,"94.250000","6922.000000","10113.500000","1639.500000",,"4139.875000",,,,"25.000000","20.250000","2.333333","16.333333","26.250000","0.000000","500.600000","0.000000","219.800000","280.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"983.000000",,"983.000000",,"983.000000",,"277.500000","0.000000",,,,,,,,,"33.250000","7394.250000","9668.250000","236.625000",,"2107.750000",,,,"15.200000","6.625000","3.666667","11.333333","21.750000","0.000000","307.600000","0.000000","72.400000","235.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1025.500000",,"1025.500000",,"1025.500000",,"183.000000","0.000000",,,,,,,,,"157.750000","7713.750000","11370.750000","2502.875000",,"5341.375000",,,,"47.400000","48.750000","2.333333","12.666667","39.625000","0.000000","949.400000","0.000000","525.000000","424.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"813.000000",,"813.000000",,"813.000000",,"149.750000","0.000000",,,,,,,,,"180.500000","6116.500000","13406.250000","4792.625000",,"1449.750000",,,,"60.400000","101.500000","2.666667","17.333333","11.500000","0.000000","1208.200000","0.000000","1083.400000","124.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"741.500000",,"741.500000",,"741.500000",,"204.750000","0.000000",,,,,,,,,"188.750000","5577.750000","13380.250000","4820.250000",,"3013.875000",,,,"63.800000","104.875000","2.666667","36.333333","14.500000","0.000000","1277.200000","0.000000","1120.000000","157.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"921.250000",,"921.250000",,"921.250000",,"218.500000","0.000000",,,,,,,,,"153.000000","6930.500000","11504.250000","4123.375000",,"2653.250000",,,,"56.400000","86.000000","1.666667","13.666667","19.500000","0.000000","1129.000000","0.000000","918.800000","210.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1141.250000",,"1141.250000",,"1141.250000",,"282.500000","0.000000",,,,,,,,,"81.500000","8584.750000","9455.000000","16.375000",,"5363.125000",,,,"24.400000","2.625000","2.333333","14.000000","43.000000","0.000000","491.800000","0.000000","31.600000","460.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1137.250000",,"1137.250000",,"1137.250000",,"337.250000","0.000000",,,,,,,,,"59.500000","8555.500000","10272.500000","182.875000",,"2041.375000",,,,"24.000000","17.500000","2.000000","19.333333","27.375000","0.000000","483.000000","0.000000","189.200000","293.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"64.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1145.750000",,"1145.750000",,"1145.750000",,"347.750000","0.000000",,,,,,,,,"98.750000","8619.250000","9979.250000","206.375000",,"5645.625000",,,,"41.400000","12.000000","2.666667","18.000000","65.250000","0.000000","830.200000","0.000000","130.800000","699.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1186.250000",,"1186.250000",,"1186.250000",,"253.500000","0.000000",,,,,,,,,"187.000000","8922.750000","9698.000000","182.125000",,"11065.375000",,,,"48.600000","7.875000","2.666667","24.666667","83.000000","0.000000","974.400000","0.000000","87.000000","887.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1136.250000",,"1136.250000",,"1136.250000",,"237.250000","0.000000",,,,,,,,,"124.000000","8544.500000","10460.750000","772.875000",,"5834.375000",,,,"39.200000","24.375000","2.333333","23.000000","47.750000","0.000000","784.600000","0.000000","261.200000","523.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"751.750000",,"751.750000",,"751.750000",,"440.250000","0.000000",,,,,,,,,"225.500000","5655.500000","13179.250000","7608.500000",,"442.750000",,,,"77.000000","136.500000","2.000000","12.666667","8.250000","0.000000","1543.400000","0.000000","1463.800000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"168.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"880.250000",,"880.250000",,"880.250000",,"286.250000","0.000000",,,,,,,,,"172.500000","6622.000000","12222.250000","4045.500000",,"2047.750000",,,,"59.200000","102.375000","2.666667","41.666667","8.250000","0.000000","1184.000000","0.000000","1093.400000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"909.500000",,"909.500000",,"909.500000",,"282.000000","0.000000",,,,,,,,,"160.000000","6842.000000","11520.750000","3802.875000",,"2834.625000",,,,"58.600000","83.000000","1.666667","16.333333","26.625000","0.000000","1172.000000","0.000000","886.000000","286.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"771.250000",,"771.250000",,"771.250000",,"205.500000","0.000000",,,,,,,,,"147.500000","5802.500000","12124.000000","5920.875000",,"323.250000",,,,"57.400000","104.625000","2.000000","8.000000","3.000000","0.000000","1150.000000","0.000000","1116.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"802.750000",,"802.750000",,"802.750000",,"354.000000","0.000000",,,,,,,,,"197.500000","6040.000000","12625.000000","6441.750000",,"222.000000",,,,"83.000000","152.625000","2.000000","4.000000","2.625000","0.000000","1663.600000","0.000000","1631.800000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"851.250000",,"851.250000",,"851.250000",,"422.000000","0.000000",,,,,,,,,"229.000000","6403.000000","12501.000000","6186.750000",,"3268.000000",,,,"72.400000","115.000000","2.333333","33.333333","19.875000","0.000000","1448.600000","0.000000","1233.600000","215.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1036.750000",,"1036.750000",,"1036.750000",,"224.750000","0.000000",,,,,,,,,"148.500000","7798.750000","11141.250000","3452.125000",,"2548.750000",,,,"55.400000","72.250000","1.333333","10.000000","31.875000","0.000000","1109.800000","0.000000","767.800000","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1302.500000",,"1302.500000",,"1302.500000",,"310.000000","0.000000",,,,,,,,,"5.000000","9796.500000","9418.250000","5.250000",,"324.250000",,,,"2.200000","0.375000","0.333333","3.666667","3.375000","0.000000","47.600000","0.000000","7.800000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1312.000000",,"1312.000000",,"1312.000000",,"418.750000","0.000000",,,,,,,,,"4.750000","9868.000000","9420.500000","1.875000",,"249.750000",,,,"2.600000","0.250000","2.666667","11.000000","4.500000","0.000000","54.200000","0.000000","4.200000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1259.000000",,"1259.000000",,"1259.000000",,"251.000000","0.000000",,,,,,,,,"7.250000","9471.500000","9510.250000","6.250000",,"314.125000",,,,"2.200000","0.375000","2.000000","5.666667","3.250000","0.000000","46.400000","0.000000","7.800000","38.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1168.750000",,"1168.750000",,"1168.750000",,"261.500000","0.000000",,,,,,,,,"4.250000","8791.500000","9463.250000","3.000000",,"417.375000",,,,"1.400000","0.375000","2.666667","12.333333","1.875000","0.000000","29.400000","0.000000","5.600000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1307.000000",,"1307.000000",,"1307.000000",,"232.250000","0.000000",,,,,,,,,"9.250000","9831.000000","9566.750000","10.000000",,"413.625000",,,,"3.600000","1.125000","4.333333","8.333333","5.125000","0.000000","72.000000","0.000000","14.600000","57.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"326.000000",,"326.000000",,"326.000000",,"153.500000","0.000000",,,,,,,,,"168.750000","2455.250000","16998.250000","7192.125000",,"157.500000",,,,"66.800000","123.750000","2.000000","11.333333","1.125000","0.000000","1337.400000","0.000000","1324.200000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"290.000000",,"290.000000",,"290.000000",,"157.000000","0.000000",,,,,,,,,"151.750000","2184.500000","16750.000000","5627.125000",,"884.125000",,,,"69.400000","122.750000","2.000000","10.666667","7.125000","0.000000","1391.400000","0.000000","1311.600000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"307.750000",,"307.750000",,"307.750000",,"294.500000","0.000000",,,,,,,,,"209.500000","2319.250000","16349.750000","6461.875000",,"3409.125000",,,,"81.000000","120.250000","2.000000","10.666667","31.125000","0.000000","1622.400000","0.000000","1286.600000","335.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"232.000000",,"232.000000",,"232.000000",,"160.500000","0.000000",,,,,,,,,"124.500000","1749.750000","17097.500000","2848.750000",,"1853.375000",,,,"74.600000","122.500000","2.333333","15.666667","16.375000","0.000000","1492.600000","0.000000","1311.000000","181.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","38.000000",,,,,,,,,"183.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"146.500000",,"146.500000",,"146.500000",,"149.500000","0.000000",,,,,,,,,"293.500000","1106.000000","18391.000000","8867.250000",,"7972.875000",,,,"123.800000","203.125000","3.666667","28.000000","29.375000","0.000000","2479.600000","0.000000","2168.000000","311.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.750000",,"145.750000",,"145.750000",,"172.250000","0.000000",,,,,,,,,"289.500000","1100.250000","18472.000000","7309.625000",,"8228.875000",,,,"101.800000","170.250000","2.666667","37.666667","20.500000","0.000000","2038.800000","0.000000","1817.200000","221.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"161.000000",,"161.000000",,"161.000000",,"176.250000","0.000000",,,,,,,,,"127.000000","1215.750000","18137.000000","2569.375000",,"3177.625000",,,,"56.800000","87.625000","2.333333","26.333333","19.000000","0.000000","1139.800000","0.000000","936.000000","203.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"135.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"165.000000",,"165.000000",,"165.000000",,"308.500000","0.000000",,,,,,,,,"33.500000","1246.000000","17550.250000","175.000000",,"137.625000",,,,"13.200000","13.500000","3.000000","0.666667","10.875000","0.000000","265.000000","0.000000","146.800000","118.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","14.000000",,,,,,,,,"2795.000000","2920.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.000000",,"276.000000",,"276.000000",,"147.250000","0.000000",,,,,,,,,"82.750000","2078.250000","17108.500000","35.250000",,"4056.000000",,,,"31.200000","2.875000","4.333333","20.333333","55.125000","0.000000","625.200000","0.000000","34.000000","591.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1982.000000","18.000000",,,,,,,,,"27405.000000","3560.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"199.500000",,"199.500000",,"199.500000",,"88.750000","0.000000",,,,,,,,,"8.000000","1502.250000","18195.000000","15.250000",,"222.750000",,,,"5.000000","0.750000","3.333333","1.666667","8.250000","0.000000","100.600000","0.000000","9.800000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"139.000000","171.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"139.750000",,"139.750000",,"139.750000",,"87.000000","0.000000",,,,,,,,,"3.250000","1055.000000","18501.000000","6.625000",,"103.000000",,,,"4.600000","0.000000","5.333333","1.333333","8.250000","0.000000","93.000000","0.000000","2.200000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"106.000000",,"106.000000",,"106.000000",,"108.250000","0.000000",,,,,,,,,"2.500000","800.500000","18757.750000","1.875000",,"71.250000",,,,"3.000000","0.000000","5.000000","1.000000","5.250000","0.000000","60.000000","0.000000","0.200000","59.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.000000",,"58.000000",,"58.000000",,"82.250000","0.000000",,,,,,,,,"1.250000","440.000000","19448.750000","0.000000",,"24.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.625000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"114.750000","0.000000",,,,,,,,,"1.000000","413.500000","19216.750000","0.000000",,"21.125000",,,,"0.800000","0.000000","0.000000","1.666667","2.000000","0.000000","19.400000","0.000000","0.200000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.000000",,"70.000000",,"70.000000",,"109.000000","0.000000",,,,,,,,,"1.250000","528.250000","19195.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","33.400000","0.000000","0.000000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"92.250000","0.000000",,,,,,,,,"0.750000","412.500000","19283.500000","0.000000",,"21.000000",,,,"1.000000","0.000000","0.000000","2.000000","1.875000","0.000000","23.600000","0.000000","0.000000","23.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"186.250000","0.000000",,,,,,,,,"1.250000","516.750000","19108.750000","0.000000",,"40.125000",,,,"1.800000","0.000000","0.000000","4.666667","3.250000","0.000000","37.000000","0.000000","0.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"378.750000","0.000000",,,,,,,,,"7.000000","1114.000000","17781.000000","3.750000",,"147.625000",,,,"6.200000","0.000000","1.000000","0.666667","11.250000","0.000000","125.400000","0.000000","2.600000","122.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"479.000000","566.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"241.500000",,"241.500000",,"241.500000",,"493.750000","0.000000",,,,,,,,,"18.250000","1818.000000","16396.000000","27.000000",,"343.875000",,,,"9.400000","1.875000","2.333333","1.666667","15.250000","0.000000","189.800000","0.000000","22.800000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","5.000000",,,,,,,,,"781.000000","914.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"308.250000",,"308.250000",,"308.250000",,"746.500000","0.000000",,,,,,,,,"51.500000","2320.750000","15488.750000","1.125000",,"3266.875000",,,,"22.800000","0.000000","0.666667","9.333333","42.250000","0.000000","456.200000","0.000000","3.000000","453.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","16.000000",,,,,,,,,"3224.000000","3381.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.000000",,"167.000000",,"167.000000",,"435.000000","0.000000",,,,,,,,,"5.250000","1258.250000","17547.000000","0.625000",,"259.500000",,,,"8.400000","0.000000","4.000000","2.666667","15.375000","0.000000","169.200000","0.000000","2.000000","167.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"128.750000",,"128.750000",,"128.750000",,"289.750000","0.000000",,,,,,,,,"3.250000","971.000000","18250.250000","0.000000",,"85.125000",,,,"2.600000","0.000000","0.000000","1.666667","4.875000","0.000000","53.000000","0.000000","0.200000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"149.000000",,"149.000000",,"149.000000",,"302.750000","0.000000",,,,,,,,,"4.500000","1123.250000","17899.250000","0.000000",,"101.500000",,,,"4.400000","0.000000","0.000000","2.333333","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"220.750000","0.000000",,,,,,,,,"0.750000","444.000000","19068.250000","0.000000",,"25.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"149.750000","0.000000",,,,,,,,,"2.000000","485.750000","19164.000000","0.000000",,"45.625000",,,,"2.200000","0.000000","0.000000","2.000000","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"136.750000","0.000000",,,,,,,,,"2.250000","444.500000","19193.250000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"131.000000","0.000000",,,,,,,,,"1.250000","480.250000","19231.500000","0.000000",,"31.750000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"147.000000","0.000000",,,,,,,,,"0.750000","382.250000","19094.750000","0.000000",,"19.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"182.500000","0.000000",,,,,,,,,"0.500000","398.500000","19155.750000","0.000000",,"15.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","9.400000","0.000000","0.000000","9.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"214.500000","0.000000",,,,,,,,,"1.250000","461.500000","18973.250000","0.000000",,"34.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.400000","0.000000","0.200000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.750000",,"56.750000",,"56.750000",,"132.750000","0.000000",,,,,,,,,"0.250000","429.250000","19274.750000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","6.000000","0.000000","0.000000","6.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"255.750000","0.000000",,,,,,,,,"0.750000","416.500000","18995.500000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.800000","0.000000","0.000000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"89.250000",,"89.250000",,"89.250000",,"179.250000","0.000000",,,,,,,,,"4.250000","673.500000","18695.000000","0.000000",,"113.125000",,,,"5.200000","0.000000","5.666667","1.666667","9.625000","0.000000","105.000000","0.000000","0.800000","104.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.250000",,"162.250000",,"162.250000",,"257.500000","0.000000",,,,,,,,,"7.500000","1223.250000","17510.750000","0.000000",,"124.375000",,,,"4.800000","0.000000","0.000000","1.000000","9.000000","0.000000","99.200000","0.000000","0.200000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"434.000000","499.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"121.500000",,"121.500000",,"121.500000",,"189.500000","0.000000",,,,,,,,,"3.750000","918.000000","18342.750000","0.750000",,"115.500000",,,,"5.000000","0.000000","3.333333","2.333333","9.000000","0.000000","100.200000","0.000000","2.400000","97.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"116.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"209.250000","0.000000",,,,,,,,,"2.750000","1198.000000","18132.500000","4.875000",,"96.750000",,,,"3.400000","0.000000","7.333333","3.333333","6.250000","0.000000","69.600000","0.000000","0.600000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"97.750000",,"97.750000",,"97.750000",,"186.500000","0.000000",,,,,,,,,"3.250000","740.250000","18561.750000","0.000000",,"57.375000",,,,"2.600000","0.000000","0.333333","2.666667","4.750000","0.000000","52.400000","0.000000","0.200000","52.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.000000",,"69.000000",,"69.000000",,"180.750000","0.000000",,,,,,,,,"1.250000","521.500000","19070.000000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"142.500000","0.000000",,,,,,,,,"1.000000","413.250000","19252.500000","0.000000",,"26.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"155.500000","0.000000",,,,,,,,,"0.750000","392.000000","19174.250000","0.000000",,"14.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"115.250000","0.000000",,,,,,,,,"0.750000","417.000000","19361.500000","0.000000",,"20.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"149.000000","0.000000",,,,,,,,,"1.000000","415.000000","19183.750000","0.000000",,"15.750000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","16.200000","0.000000","0.200000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"118.750000","0.000000",,,,,,,,,"0.250000","398.250000","19309.250000","0.000000",,"8.875000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.200000","0.000000","0.000000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"159.000000","0.000000",,,,,,,,,"0.500000","394.750000","19145.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"124.000000","0.000000",,,,,,,,,"0.750000","430.500000","19269.000000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"108.000000","0.000000",,,,,,,,,"1.250000","433.500000","19325.750000","0.000000",,"11.250000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"78.750000",,"78.750000",,"78.750000",,"196.000000","0.000000",,,,,,,,,"4.000000","595.500000","18793.750000","2.625000",,"76.125000",,,,"3.200000","0.000000","3.000000","1.333333","6.000000","0.000000","66.600000","0.000000","0.600000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","96.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"130.750000",,"130.750000",,"130.750000",,"387.250000","0.000000",,,,,,,,,"5.500000","988.000000","17671.000000","0.000000",,"124.750000",,,,"5.800000","0.000000","0.000000","1.666667","10.750000","0.000000","118.200000","0.000000","0.200000","118.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"426.000000","505.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"281.750000",,"281.750000",,"281.750000",,"351.000000","0.000000",,,,,,,,,"24.500000","2121.250000","16324.750000","1.875000",,"379.750000",,,,"12.200000","0.000000","6.333333","1.666667","22.875000","0.000000","247.800000","0.000000","2.800000","245.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","13.000000",,,,,,,,,"2376.000000","2596.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"234.250000",,"234.250000",,"234.250000",,"321.500000","0.000000",,,,,,,,,"37.250000","1765.500000","17281.500000","1.875000",,"1787.625000",,,,"10.800000","0.000000","2.000000","32.666667","19.750000","0.000000","218.400000","0.000000","3.800000","214.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1046.000000","16.000000",,,,,,,,,"15655.000000","3207.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.500000",,"116.500000",,"116.500000",,"341.250000","0.000000",,,,,,,,,"6.250000","880.750000","18048.500000","1.875000",,"134.125000",,,,"6.200000","0.000000","4.000000","1.666667","11.625000","0.000000","127.000000","0.000000","1.400000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"162.000000","187.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"144.750000","0.000000",,,,,,,,,"1.000000","488.750000","19086.000000","0.000000",,"31.125000",,,,"1.000000","0.000000","0.000000","2.333333","1.875000","0.000000","22.200000","0.000000","0.200000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"217.250000","0.000000",,,,,,,,,"1.250000","414.750000","19086.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"275.000000","0.000000",,,,,,,,,"1.250000","472.250000","18870.750000","0.000000",,"42.250000",,,,"1.600000","0.000000","0.000000","0.666667","2.875000","0.000000","32.000000","0.000000","0.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"158.750000","0.000000",,,,,,,,,"1.000000","401.000000","19134.500000","0.000000",,"24.750000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"186.750000","0.000000",,,,,,,,,"0.250000","411.000000","19139.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","2.333333","0.375000","0.000000","6.600000","0.000000","0.000000","6.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"121.250000","0.000000",,,,,,,,,"1.750000","495.500000","19232.250000","0.000000",,"49.125000",,,,"2.200000","0.000000","1.333333","1.666667","4.000000","0.000000","44.200000","0.000000","0.200000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"178.750000","0.000000",,,,,,,,,"0.750000","411.250000","19221.500000","0.000000",,"17.875000",,,,"0.800000","0.000000","0.000000","2.333333","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"222.750000","0.000000",,,,,,,,,"0.750000","405.000000","19148.000000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"222.750000","0.000000",,,,,,,,,"1.500000","482.250000","19057.500000","0.000000",,"45.625000",,,,"2.000000","0.000000","0.000000","1.000000","3.625000","0.000000","42.600000","0.000000","0.000000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"250.750000","0.000000",,,,,,,,,"13.750000","1097.750000","17822.250000","6.625000",,"218.750000",,,,"9.600000","0.625000","1.666667","0.333333","16.750000","0.000000","192.000000","0.000000","8.400000","183.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","6.000000",,,,,,,,,"826.000000","1039.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.750000",,"148.750000",,"148.750000",,"169.500000","0.000000",,,,,,,,,"7.500000","1122.000000","17912.500000","54.625000",,"136.250000",,,,"7.600000","3.375000","1.333333","1.333333","11.000000","0.000000","154.000000","0.000000","36.200000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"299.000000","366.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.750000",,"61.750000",,"61.750000",,"239.250000","0.000000",,,,,,,,,"1.500000","468.250000","19080.000000","12.000000",,"48.750000",,,,"1.800000","0.375000","1.666667","0.666667","2.625000","0.000000","37.200000","0.000000","7.000000","30.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.750000",,"50.750000",,"50.750000",,"263.500000","0.000000",,,,,,,,,"0.750000","386.750000","19093.750000","0.000000",,"23.500000",,,,"1.000000","0.000000","0.000000","8.666667","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"166.750000","0.000000",,,,,,,,,"0.500000","413.500000","19170.500000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.000000",,"62.000000",,"62.000000",,"231.750000","0.000000",,,,,,,,,"1.500000","470.500000","18971.250000","0.000000",,"40.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"196.000000","0.000000",,,,,,,,,"0.750000","392.250000","19102.500000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"296.500000","0.000000",,,,,,,,,"18.000000","500.000000","18913.750000","252.375000",,"23.250000",,,,"6.800000","12.000000","1.333333","22.666667","0.750000","0.000000","139.400000","0.000000","129.800000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"258.000000","301.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"385.000000","0.000000",,,,,,,,,"1.750000","469.250000","18764.000000","0.000000",,"57.375000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"184.250000","0.000000",,,,,,,,,"0.750000","426.750000","19292.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"219.500000","0.000000",,,,,,,,,"0.750000","445.000000","19045.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.500000",,"141.500000",,"141.500000",,"280.750000","0.000000",,,,,,,,,"3.000000","1067.500000","18014.500000","0.750000",,"109.125000",,,,"4.000000","0.000000","1.666667","0.666667","7.125000","0.000000","80.800000","0.000000","1.000000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"72.500000",,"72.500000",,"72.500000",,"236.000000","0.000000",,,,,,,,,"2.250000","547.750000","18784.250000","0.000000",,"71.875000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.800000","0.000000","0.000000","63.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.750000",,"56.750000",,"56.750000",,"204.000000","0.000000",,,,,,,,,"1.250000","431.750000","19150.250000","0.000000",,"27.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"326.500000","0.000000",,,,,,,,,"1.250000","482.000000","18921.750000","0.000000",,"30.375000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"264.250000","0.000000",,,,,,,,,"0.750000","405.750000","19030.250000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.500000",,"68.500000",,"68.500000",,"165.750000","0.000000",,,,,,,,,"1.500000","518.500000","20362.250000","0.000000",,"36.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"46.000000",,"46.000000",,"46.000000",,"257.500000","0.000000",,,,,,,,,"0.500000","349.000000","17803.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.500000","0.000000","18.600000","0.000000","0.000000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"212.500000","0.000000",,,,,,,,,"0.750000","420.000000","19057.750000","0.375000",,"27.750000",,,,"1.000000","0.000000","1.666667","0.333333","1.750000","0.000000","21.800000","0.000000","1.200000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"220.250000","0.000000",,,,,,,,,"0.750000","395.500000","19072.000000","0.000000",,"14.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"143.500000","0.000000",,,,,,,,,"1.250000","510.750000","19216.500000","0.000000",,"43.375000",,,,"1.800000","0.000000","0.000000","0.333333","3.375000","0.000000","37.200000","0.000000","0.000000","37.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.750000","532.250000","19072.000000","0.000000",,"53.125000",,,,"2.600000","0.000000","0.000000","0.666667","4.750000","0.000000","52.800000","0.000000","0.000000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"156.750000",,"156.750000",,"156.750000",,"208.250000","0.000000",,,,,,,,,"15.000000","1182.250000","17896.500000","375.750000",,"138.375000",,,,"8.200000","6.250000","1.666667","1.000000","8.875000","0.000000","167.600000","0.000000","70.000000","97.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"372.000000","428.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.250000",,"167.250000",,"167.250000",,"192.750000","0.000000",,,,,,,,,"25.500000","1263.500000","18166.500000","582.250000",,"31.125000",,,,"24.800000","44.250000","0.666667","0.333333","1.875000","0.000000","497.000000","0.000000","475.800000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"184.000000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"170.000000","0.000000",,,,,,,,,"1.750000","417.750000","19208.250000","0.000000",,"53.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.800000","0.000000","0.000000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"142.250000","0.000000",,,,,,,,,"0.750000","422.500000","19228.750000","0.000000",,"23.250000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","19.000000","0.000000","0.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"143.500000","0.000000",,,,,,,,,"1.500000","503.250000","19154.250000","0.000000",,"48.250000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","37.800000","0.000000","0.000000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"129.500000","0.000000",,,,,,,,,"0.500000","424.500000","19341.750000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"161.250000","0.000000",,,,,,,,,"0.500000","444.500000","19246.750000","0.000000",,"18.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.250000","533.500000","19221.750000","0.000000",,"49.875000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"152.500000","0.000000",,,,,,,,,"0.500000","419.250000","19240.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"126.500000","0.000000",,,,,,,,,"1.000000","455.750000","19299.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"196.500000","0.000000",,,,,,,,,"3.500000","765.750000","18777.250000","2.125000",,"94.875000",,,,"4.400000","0.000000","4.000000","1.000000","7.750000","0.000000","88.200000","0.000000","2.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"178.500000",,"178.500000",,"178.500000",,"145.500000","0.000000",,,,,,,,,"3.250000","1347.000000","18115.750000","0.000000",,"121.000000",,,,"4.000000","0.000000","0.000000","1.666667","7.375000","0.000000","80.600000","0.000000","0.000000","80.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.500000",,"68.500000",,"68.500000",,"116.750000","0.000000",,,,,,,,,"2.750000","519.250000","19257.500000","0.000000",,"68.125000",,,,"2.200000","0.000000","0.000000","1.333333","4.125000","0.000000","47.600000","0.000000","0.000000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"197.250000",,"197.250000",,"197.250000",,"279.000000","0.000000",,,,,,,,,"22.250000","1487.000000","17346.000000","159.250000",,"164.125000",,,,"14.400000","15.250000","2.333333","1.666667","11.625000","0.000000","291.200000","0.000000","164.400000","126.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"63.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"105.250000",,"105.250000",,"105.250000",,"163.750000","0.000000",,,,,,,,,"4.750000","796.500000","18592.500000","0.000000",,"64.875000",,,,"3.000000","0.000000","0.000000","2.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"193.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.250000",,"147.250000",,"147.250000",,"164.250000","0.000000",,,,,,,,,"5.500000","1109.500000","18225.250000","1.125000",,"129.375000",,,,"4.200000","0.000000","1.333333","0.666667","7.750000","0.000000","87.000000","0.000000","1.800000","85.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"153.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"73.250000",,"73.250000",,"73.250000",,"201.250000","0.000000",,,,,,,,,"2.250000","556.000000","18887.250000","0.375000",,"73.125000",,,,"3.200000","0.000000","3.000000","20.333333","6.000000","0.000000","67.800000","0.000000","0.200000","67.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.000000",,"65.000000",,"65.000000",,"293.250000","0.000000",,,,,,,,,"1.250000","493.500000","18930.000000","0.000000",,"35.250000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.000000",,"51.000000",,"51.000000",,"324.750000","0.000000",,,,,,,,,"0.500000","387.750000","18960.500000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.500000",,"61.500000",,"61.500000",,"312.000000","0.000000",,,,,,,,,"1.500000","466.000000","18739.000000","0.000000",,"43.375000",,,,"1.600000","0.000000","0.000000","2.666667","2.875000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"259.000000","0.000000",,,,,,,,,"0.500000","400.000000","18935.750000","0.000000",,"18.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"183.000000","0.000000",,,,,,,,,"0.750000","401.250000","19144.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"260.000000","0.000000",,,,,,,,,"1.750000","490.000000","18922.250000","0.000000",,"46.000000",,,,"2.000000","0.000000","0.000000","1.666667","3.625000","0.000000","42.000000","0.000000","0.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"185.750000","0.000000",,,,,,,,,"0.500000","400.500000","19128.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.250000",,"52.250000",,"52.250000",,"191.000000","0.000000",,,,,,,,,"0.500000","397.750000","19199.500000","0.000000",,"10.500000",,,,"0.000000","0.000000","0.000000","3.666667","0.000000","0.000000","3.400000","0.000000","0.000000","3.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.000000",,"65.000000",,"65.000000",,"288.250000","0.000000",,,,,,,,,"2.250000","492.500000","18967.000000","0.000000",,"56.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"49.250000",,"49.250000",,"49.250000",,"413.250000","0.000000",,,,,,,,,"0.250000","372.000000","18771.750000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"274.250000","0.000000",,,,,,,,,"1.000000","410.500000","18897.000000","0.375000",,"32.250000",,,,"1.400000","0.000000","2.666667","1.333333","2.625000","0.000000","31.800000","0.000000","0.200000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.000000",,"63.000000",,"63.000000",,"360.250000","0.000000",,,,,,,,,"1.500000","476.500000","18722.250000","3.375000",,"40.875000",,,,"1.800000","0.375000","1.000000","2.333333","2.875000","0.000000","36.600000","0.000000","4.400000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"274.750000","0.000000",,,,,,,,,"0.750000","437.000000","19069.250000","0.000000",,"22.125000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"364.250000","0.000000",,,,,,,,,"0.750000","399.250000","18990.750000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.800000","0.000000","0.000000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.250000",,"60.250000",,"60.250000",,"394.750000","0.000000",,,,,,,,,"0.750000","456.250000","18710.000000","0.000000",,"32.250000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","25.800000","0.000000","0.000000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"70.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"174.500000","0.000000",,,,,,,,,"1.000000","438.500000","19223.000000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"248.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"195.000000","0.000000",,,,,,,,,"0.500000","395.500000","19119.000000","0.000000",,"18.250000",,,,"0.600000","0.000000","0.000000","0.000000","1.000000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"108.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"159.500000","0.000000",,,,,,,,,"1.750000","498.250000","19073.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"149.500000","0.000000",,,,,,,,,"0.750000","413.500000","19206.500000","0.000000",,"14.625000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","10.800000","0.000000","0.000000","10.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"144.500000",,"144.500000",,"144.500000",,"315.750000","0.000000",,,,,,,,,"2.750000","1090.250000","18005.000000","1.875000",,"91.750000",,,,"4.400000","0.000000","2.666667","1.000000","7.750000","0.000000","89.400000","0.000000","2.800000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"83.250000",,"83.250000",,"83.250000",,"253.250000","0.000000",,,,,,,,,"4.500000","629.250000","18626.250000","0.375000",,"159.625000",,,,"6.400000","0.000000","2.666667","1.666667","11.875000","0.000000","129.400000","0.000000","1.000000","128.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"304.500000","0.000000",,,,,,,,,"1.000000","481.750000","18891.250000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.250000",,"50.250000",,"50.250000",,"259.000000","0.000000",,,,,,,,,"0.500000","383.000000","19155.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"290.250000","0.000000",,,,,,,,,"1.000000","494.250000","18933.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.250000",,"50.250000",,"50.250000",,"348.500000","0.000000",,,,,,,,,"0.750000","383.250000","18885.000000","0.000000",,"26.625000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"47.500000",,"47.500000",,"47.500000",,"283.000000","0.000000",,,,,,,,,"0.250000","362.250000","18954.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"291.000000","0.000000",,,,,,,,,"1.250000","478.750000","18789.750000","0.000000",,"45.250000",,,,"2.000000","0.000000","0.000000","0.666667","3.625000","0.000000","40.000000","0.000000","0.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"48.250000",,"48.250000",,"48.250000",,"442.750000","0.000000",,,,,,,,,"0.750000","364.250000","18750.750000","0.000000",,"22.375000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"48.750000",,"48.750000",,"48.750000",,"405.250000","0.000000",,,,,,,,,"0.250000","370.500000","18868.000000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"426.750000","0.000000",,,,,,,,,"1.250000","475.500000","18686.250000","0.000000",,"53.625000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"94.250000",,"94.250000",,"94.250000",,"370.500000","0.000000",,,,,,,,,"23.000000","712.750000","18413.000000","479.000000",,"570.750000",,,,"16.200000","16.375000","2.000000","2.666667","13.500000","0.000000","326.600000","0.000000","180.200000","146.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"52.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"199.000000",,"199.000000",,"199.000000",,"410.000000","0.000000",,,,,,,,,"207.250000","1499.750000","16897.250000","4741.250000",,"4936.125000",,,,"82.800000","119.750000","1.666667","15.000000","35.625000","0.000000","1659.400000","0.000000","1276.600000","382.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"165.000000",,"165.000000",,"165.000000",,"470.500000","0.000000",,,,,,,,,"80.250000","1245.250000","17120.500000","396.125000",,"174.250000",,,,"51.200000","94.500000","2.000000","3.000000","1.125000","0.000000","1024.200000","0.000000","1009.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","248.000000",,,,,,,,,"2093.000000","4453.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"309.750000","0.000000",,,,,,,,,"80.500000","1111.750000","17801.250000","266.000000",,"338.250000",,,,"37.400000","63.000000","2.666667","6.666667","6.750000","0.000000","750.400000","0.000000","675.200000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1515.000000","43.000000",,,,,,,,,"21066.000000","2702.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"311.000000",,"311.000000",,"311.000000",,"656.500000","0.000000",,,,,,,,,"238.500000","2340.750000","14923.750000","0.000000",,"7933.375000",,,,"19.200000","0.000000","3.666667","32.333333","35.875000","0.000000","384.800000","0.000000","0.400000","384.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20399.000000","72.000000",,,,,,,,,"276338.000000","22547.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"290.000000",,"290.000000",,"290.000000",,"550.000000","0.000000",,,,,,,,,"166.000000","2185.500000","15213.250000","0.000000",,"8692.125000",,,,"20.200000","0.000000","0.000000","22.000000","37.875000","0.000000","404.800000","0.000000","0.000000","404.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16094.000000","58.000000",,,,,,,,,"218025.000000","18044.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"281.750000",,"281.750000",,"281.750000",,"461.250000","0.000000",,,,,,,,,"229.250000","2122.500000","15662.750000","2.625000",,"14321.625000",,,,"67.400000","0.000000","5.666667","12.333333","125.750000","0.000000","1348.800000","0.000000","3.200000","1345.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9871.000000","41.000000",,,,,,,,,"133843.000000","11478.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"397.250000","0.000000",,,,,,,,,"151.000000","1279.000000","17194.500000","254.625000",,"3263.500000",,,,"50.400000","53.625000","2.000000","9.666667","40.750000","0.000000","1011.600000","0.000000","576.200000","435.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8517.000000","36.000000",,,,,,,,,"115454.000000","10844.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"366.250000",,"366.250000",,"366.250000",,"566.500000","0.000000",,,,,,,,,"174.250000","2755.250000","14565.750000","46.875000",,"9737.000000",,,,"37.600000","7.375000","2.333333","49.333333","62.875000","0.000000","755.800000","0.000000","79.800000","676.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8454.000000","34.000000",,,,,,,,,"114129.000000","10578.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"240.250000",,"240.250000",,"240.250000",,"477.500000","0.000000",,,,,,,,,"46.000000","1811.500000","16916.000000","2.250000",,"2805.500000",,,,"32.600000","0.000000","10.333333","10.333333","61.250000","0.000000","652.000000","0.000000","3.400000","648.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"99.500000",,"99.500000",,"99.500000",,"508.250000","0.000000",,,,,,,,,"1.250000","752.250000","18093.500000","0.000000",,"49.500000",,,,"2.400000","0.000000","0.000000","2.000000","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"573.500000","0.000000",,,,,,,,,"1.250000","497.000000","18496.250000","0.000000",,"23.625000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"111.750000",,"111.750000",,"111.750000",,"586.500000","0.000000",,,,,,,,,"1.250000","842.000000","17692.000000","0.000000",,"54.375000",,,,"2.200000","0.000000","0.000000","2.333333","4.000000","0.000000","44.000000","0.000000","0.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"589.750000","0.000000",,,,,,,,,"0.750000","414.750000","18523.250000","0.000000",,"22.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"547.500000","0.000000",,,,,,,,,"0.500000","429.750000","18665.500000","0.000000",,"25.000000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"416.250000","0.000000",,,,,,,,,"0.500000","425.250000","18690.500000","0.000000",,"17.250000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.000000",,"61.000000",,"61.000000",,"236.750000","0.000000",,,,,,,,,"0.750000","461.250000","19024.000000","0.000000",,"23.625000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.500000",,"132.500000",,"132.500000",,"369.500000","0.000000",,,,,,,,,"2.750000","999.500000","17743.250000","0.000000",,"71.250000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.600000","0.000000","0.000000","63.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"190.250000",,"190.250000",,"190.250000",,"333.750000","0.000000",,,,,,,,,"3.750000","1433.250000","17368.750000","1.375000",,"147.000000",,,,"4.400000","0.000000","1.000000","2.333333","7.750000","0.000000","88.400000","0.000000","3.400000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"219.500000",,"219.500000",,"219.500000",,"294.500000","0.000000",,,,,,,,,"4.500000","1653.750000","17064.000000","17.250000",,"175.750000",,,,"4.800000","1.125000","0.666667","3.000000","7.500000","0.000000","96.800000","0.000000","13.400000","83.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"168.000000",,"168.000000",,"168.000000",,"325.750000","0.000000",,,,,,,,,"3.500000","1265.750000","17719.500000","0.000000",,"66.125000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","41.000000","0.000000","0.200000","40.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"218.000000",,"218.000000",,"218.000000",,"376.000000","0.000000",,,,,,,,,"40.250000","1642.250000","16982.500000","811.000000",,"262.625000",,,,"14.400000","11.875000","2.000000","1.333333","14.625000","0.000000","291.400000","0.000000","129.800000","161.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","15.000000",,,,,,,,,"3037.000000","3153.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"248.750000",,"248.750000",,"248.750000",,"335.500000","0.000000",,,,,,,,,"56.000000","1874.000000","16884.250000","2.625000",,"3180.375000",,,,"20.600000","0.375000","0.666667","9.333333","38.125000","0.000000","413.000000","0.000000","6.000000","407.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"385.000000","451.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"188.750000",,"188.750000",,"188.750000",,"449.500000","0.000000",,,,,,,,,"8.000000","1424.000000","17720.500000","1.000000",,"322.000000",,,,"11.000000","0.000000","2.000000","2.333333","20.125000","0.000000","221.400000","0.000000","3.200000","218.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"143.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"131.750000",,"131.750000",,"131.750000",,"308.250000","0.000000",,,,,,,,,"2.250000","995.000000","18026.500000","0.000000",,"88.500000",,,,"3.800000","0.000000","0.000000","2.333333","7.125000","0.000000","79.600000","0.000000","0.000000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"184.000000",,"184.000000",,"184.000000",,"269.250000","0.000000",,,,,,,,,"2.250000","1386.750000","17620.500000","0.000000",,"109.000000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.500000",,"57.500000",,"57.500000",,"324.750000","0.000000",,,,,,,,,"1.750000","436.250000","18815.500000","0.000000",,"52.500000",,,,"2.600000","0.000000","0.000000","1.666667","4.750000","0.000000","53.600000","0.000000","0.000000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"401.250000","0.000000",,,,,,,,,"1.250000","401.000000","18790.750000","0.000000",,"30.000000",,,,"1.400000","0.000000","0.000000","1.000000","2.500000","0.000000","31.000000","0.000000","0.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"294.750000","0.000000",,,,,,,,,"0.500000","428.500000","18954.750000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"377.750000","0.000000",,,,,,,,,"1.250000","405.750000","18870.750000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"305.500000","0.000000",,,,,,,,,"0.750000","396.000000","18975.500000","0.000000",,"31.875000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","36.600000","0.000000","0.000000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"134.250000",,"134.250000",,"134.250000",,"237.500000","0.000000",,,,,,,,,"7.750000","1011.750000","18019.250000","2.250000",,"152.500000",,,,"7.800000","0.000000","0.666667","0.666667","14.125000","0.000000","156.200000","0.000000","1.400000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"483.000000","573.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.250000",,"167.250000",,"167.250000",,"345.000000","0.000000",,,,,,,,,"2.500000","1262.750000","17313.250000","0.375000",,"103.000000",,,,"2.800000","0.000000","2.000000","1.000000","5.250000","0.000000","57.400000","0.000000","0.400000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"123.500000",,"123.500000",,"123.500000",,"307.500000","0.000000",,,,,,,,,"4.750000","933.500000","18124.250000","0.000000",,"129.000000",,,,"5.400000","0.000000","0.000000","2.333333","10.000000","0.000000","109.600000","0.000000","0.000000","109.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"145.000000","152.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.750000",,"132.750000",,"132.750000",,"253.750000","0.000000",,,,,,,,,"2.500000","1000.750000","17994.000000","0.000000",,"81.000000",,,,"2.400000","0.000000","0.000000","6.333333","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"353.500000","0.000000",,,,,,,,,"8.750000","1199.250000","17422.000000","0.000000",,"205.750000",,,,"9.000000","0.000000","0.000000","1.333333","16.750000","0.000000","180.000000","0.000000","0.000000","180.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"480.000000","570.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.750000",,"180.750000",,"180.750000",,"392.000000","0.000000",,,,,,,,,"4.500000","1362.500000","17111.250000","0.000000",,"107.875000",,,,"3.000000","0.000000","0.000000","3.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","1.000000",,,,,,,,,"557.000000","445.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"110.000000",,"110.000000",,"110.000000",,"271.000000","0.000000",,,,,,,,,"3.500000","831.000000","18357.250000","0.000000",,"115.125000",,,,"5.200000","0.000000","0.000000","1.333333","9.750000","0.000000","105.000000","0.000000","0.000000","105.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"130.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.500000",,"141.500000",,"141.500000",,"449.000000","0.000000",,,,,,,,,"2.750000","1066.750000","17684.250000","0.000000",,"93.625000",,,,"3.600000","0.000000","0.000000","3.000000","6.750000","0.000000","75.200000","0.000000","0.000000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"122.250000",,"122.250000",,"122.250000",,"455.250000","0.000000",,,,,,,,,"1.500000","922.750000","17728.000000","0.000000",,"77.625000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","43.000000","0.000000","0.400000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"356.250000","0.000000",,,,,,,,,"1.500000","417.500000","18876.500000","0.000000",,"47.125000",,,,"2.400000","0.000000","0.000000","10.000000","4.375000","0.000000","48.600000","0.000000","0.000000","48.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.000000",,"50.000000",,"50.000000",,"412.000000","0.000000",,,,,,,,,"0.500000","379.000000","18798.500000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"414.250000","0.000000",,,,,,,,,"1.250000","399.250000","18874.250000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"241.750000","0.000000",,,,,,,,,"1.000000","412.750000","19130.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"120.500000",,"120.500000",,"120.500000",,"249.750000","0.000000",,,,,,,,,"2.500000","910.750000","18273.500000","0.000000",,"83.250000",,,,"3.600000","0.000000","0.000000","0.333333","6.750000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"135.000000",,"135.000000",,"135.000000",,"335.250000","0.000000",,,,,,,,,"6.250000","1018.250000","17851.000000","0.000000",,"144.000000",,,,"6.200000","0.000000","0.000000","1.333333","11.625000","0.000000","126.600000","0.000000","0.000000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"473.000000","567.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"179.000000","0.000000",,,,,,,,,"3.750000","1096.250000","18212.000000","0.000000",,"101.125000",,,,"3.200000","0.000000","0.000000","0.666667","6.000000","0.000000","65.800000","0.000000","0.000000","65.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","168.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"109.750000",,"109.750000",,"109.750000",,"132.750000","0.000000",,,,,,,,,"1.500000","829.000000","18719.250000","0.000000",,"64.000000",,,,"2.800000","0.000000","0.000000","3.333333","5.250000","0.000000","58.600000","0.000000","0.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"176.250000",,"176.250000",,"176.250000",,"107.750000","0.000000",,,,,,,,,"2.500000","1326.750000","18077.750000","0.000000",,"85.125000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.800000","0.000000","0.200000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.000000",,"62.000000",,"62.000000",,"127.250000","0.000000",,,,,,,,,"1.500000","469.500000","19226.500000","0.000000",,"33.750000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","34.800000","0.000000","0.000000","34.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"123.000000","0.000000",,,,,,,,,"0.500000","410.250000","19295.250000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"110.000000","0.000000",,,,,,,,,"1.250000","414.250000","19291.250000","0.000000",,"23.500000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"104.000000",,"104.000000",,"104.000000",,"119.750000","0.000000",,,,,,,,,"2.000000","787.000000","18949.000000","0.000000",,"39.375000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.000000","0.000000","0.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.250000",,"132.250000",,"132.250000",,"191.250000","0.000000",,,,,,,,,"3.500000","998.750000","18252.750000","0.000000",,"73.875000",,,,"2.400000","0.000000","0.000000","0.666667","4.375000","0.000000","48.400000","0.000000","0.000000","48.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"86.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.000000",,"132.000000",,"132.000000",,"227.500000","0.000000",,,,,,,,,"7.250000","996.250000","18291.000000","0.000000",,"159.375000",,,,"7.600000","0.000000","0.000000","0.666667","14.125000","0.000000","154.800000","0.000000","0.000000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"490.000000","583.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"204.500000",,"204.500000",,"204.500000",,"154.500000","0.000000",,,,,,,,,"9.500000","1538.750000","17675.000000","2.625000",,"284.750000",,,,"6.400000","0.000000","1.000000","1.333333","11.875000","0.000000","131.400000","0.000000","1.400000","130.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"496.000000","585.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"328.750000",,"328.750000",,"328.750000",,"186.250000","0.000000",,,,,,,,,"4.750000","2477.250000","16665.000000","0.000000",,"157.750000",,,,"5.800000","0.000000","0.000000","2.333333","10.875000","0.000000","117.600000","0.000000","0.000000","117.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"118.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"771.750000",,"771.750000",,"771.750000",,"225.500000","0.000000",,,,,,,,,"19.500000","5806.500000","12497.250000","0.000000",,"553.750000",,,,"23.000000","0.000000","0.000000","1.666667","43.125000","0.000000","462.400000","0.000000","0.000000","462.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"51.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"556.000000",,"556.000000",,"556.000000",,"270.000000","0.000000",,,,,,,,,"35.500000","4185.000000","14859.750000","0.000000",,"617.625000",,,,"29.800000","0.000000","0.000000","0.000000","55.875000","0.000000","597.600000","0.000000","0.000000","597.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"99.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"551.750000",,"551.750000",,"551.750000",,"244.250000","0.000000",,,,,,,,,"31.250000","4153.000000","14291.500000","0.000000",,"646.750000",,,,"26.400000","0.000000","0.000000","0.333333","49.375000","0.000000","531.000000","0.000000","0.000000","531.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"86.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"455.750000",,"455.750000",,"455.750000",,"204.250000","0.000000",,,,,,,,,"21.500000","3431.000000","15639.000000","0.000000",,"477.375000",,,,"17.200000","0.000000","0.000000","0.333333","32.250000","0.000000","344.000000","0.000000","0.000000","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"66.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"307.000000",,"307.000000",,"307.000000",,"139.000000","0.000000",,,,,,,,,"3.750000","2311.750000","17139.500000","0.000000",,"81.000000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","7.000000",,,,,,,,,"228.000000","425.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"138.000000","0.000000",,,,,,,,,"0.750000","439.500000","19215.500000","0.000000",,"53.625000",,,,"1.000000","0.000000","0.000000","1.666667","1.750000","0.000000","21.600000","0.000000","0.000000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"130.750000","0.000000",,,,,,,,,"1.000000","409.000000","19322.500000","0.000000",,"17.500000",,,,"1.000000","0.000000","0.000000","3.333333","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"114.750000","0.000000",,,,,,,,,"1.500000","408.250000","19292.250000","0.000000",,"15.375000",,,,"0.400000","0.000000","4.000000","0.666667","0.750000","0.000000","10.800000","0.000000","0.200000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"101.250000","0.000000",,,,,,,,,"0.750000","412.250000","19373.500000","0.000000",,"14.625000",,,,"0.600000","0.000000","2.000000","0.666667","1.000000","0.000000","15.200000","0.000000","0.200000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"128.500000","0.000000",,,,,,,,,"0.500000","413.750000","19201.000000","0.000000",,"9.375000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.200000","0.000000","0.000000","10.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.750000",,"141.750000",,"141.750000",,"155.000000","0.000000",,,,,,,,,"4.750000","1070.750000","18063.500000","0.000000",,"119.125000",,,,"4.800000","0.000000","0.000000","0.333333","8.875000","0.000000","98.000000","0.000000","0.000000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"649.250000",,"649.250000",,"649.250000",,"550.750000","0.000000",,,,,,,,,"25.250000","4884.500000","13552.750000","0.000000",,"708.250000",,,,"29.200000","0.000000","0.000000","2.000000","54.500000","0.000000","584.200000","0.000000","0.000000","584.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"107.000000","159.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"592.000000",,"592.000000",,"592.000000",,"493.250000","0.000000",,,,,,,,,"26.500000","4454.250000","13974.250000","0.000000",,"690.250000",,,,"30.000000","0.000000","0.000000","1.666667","56.500000","0.000000","603.600000","0.000000","0.000000","603.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"105.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"615.500000",,"615.500000",,"615.500000",,"170.000000","0.000000",,,,,,,,,"28.250000","4631.250000","14865.250000","0.000000",,"554.625000",,,,"25.800000","0.000000","0.000000","2.000000","48.375000","0.000000","517.800000","0.000000","0.000000","517.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"76.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"616.750000",,"616.750000",,"616.750000",,"170.000000","0.000000",,,,,,,,,"13.500000","4642.250000","14448.000000","0.000000",,"367.125000",,,,"11.200000","0.000000","0.000000","1.000000","21.000000","0.000000","224.800000","0.000000","0.000000","224.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"614.000000",,"614.000000",,"614.000000",,"158.250000","0.000000",,,,,,,,,"12.500000","4619.000000","14511.750000","0.000000",,"362.250000",,,,"12.000000","0.000000","0.000000","0.333333","22.375000","0.000000","240.400000","0.000000","0.000000","240.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"149.250000",,"149.250000",,"149.250000",,"162.250000","0.000000",,,,,,,,,"13.250000","1125.750000","17969.750000","0.000000",,"182.250000",,,,"8.200000","0.000000","0.000000","0.333333","15.250000","0.000000","164.200000","0.000000","0.000000","164.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","5.000000",,,,,,,,,"837.000000","949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"129.500000","0.000000",,,,,,,,,"3.500000","476.500000","19109.000000","0.000000",,"23.125000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","33.800000","0.000000","0.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","2.000000",,,,,,,,,"532.000000","525.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"94.250000","0.000000",,,,,,,,,"1.250000","445.750000","19366.250000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","8.666667","0.000000","0.000000","2.400000","0.000000","0.000000","2.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"172.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"112.000000","0.000000",,,,,,,,,"2.500000","503.250000","19235.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","2.000000",,,,,,,,,"408.000000","406.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"115.500000","0.000000",,,,,,,,,"1.250000","441.750000","19286.250000","0.000000",,"4.875000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"221.000000","218.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"139.250000","0.000000",,,,,,,,,"0.750000","406.500000","19147.500000","0.000000",,"2.625000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"175.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"248.500000",,"248.500000",,"248.500000",,"205.500000","0.000000",,,,,,,,,"49.750000","1871.000000","17059.250000","0.000000",,"3220.500000",,,,"23.800000","0.000000","3.000000","7.333333","44.625000","0.000000","476.600000","0.000000","0.200000","476.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","6.000000",,,,,,,,,"1222.000000","1295.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"499.750000",,"499.750000",,"499.750000",,"306.250000","0.000000",,,,,,,,,"4.000000","3761.750000","13128.750000","0.000000",,"315.750000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","54.000000","0.000000","0.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"403.250000",,"403.250000",,"403.250000",,"209.750000","0.000000",,,,,,,,,"12.000000","3035.500000","15031.000000","0.000000",,"486.000000",,,,"12.200000","0.000000","0.000000","2.000000","22.750000","0.000000","246.200000","0.000000","0.000000","246.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"91.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.000000",,"179.000000",,"179.000000",,"135.000000","0.000000",,,,,,,,,"2.500000","1349.250000","18012.500000","0.000000",,"86.500000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"121.500000","0.000000",,,,,,,,,"1.750000","454.500000","19139.000000","0.000000",,"49.375000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"146.750000","0.000000",,,,,,,,,"1.000000","434.250000","19224.750000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","8.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"116.750000","0.000000",,,,,,,,,"1.000000","407.250000","19252.000000","0.000000",,"24.375000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"169.500000","0.000000",,,,,,,,,"1.000000","413.000000","19130.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"184.250000","0.000000",,,,,,,,,"0.500000","412.500000","19168.000000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","5.000000","0.000000","0.000000","5.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"148.500000","0.000000",,,,,,,,,"0.750000","419.250000","19254.500000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","15.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"165.500000","0.000000",,,,,,,,,"1.000000","405.250000","19159.500000","0.000000",,"15.375000",,,,"0.400000","0.000000","0.000000","6.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"129.750000","0.000000",,,,,,,,,"1.750000","424.000000","19202.000000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"129.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.500000",,"57.500000",,"57.500000",,"109.500000","0.000000",,,,,,,,,"1.000000","435.500000","19307.250000","0.000000",,"27.375000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"143.750000","0.000000",,,,,,,,,"4.000000","767.750000","18547.750000","0.000000",,"106.500000",,,,"4.800000","0.000000","0.000000","0.000000","8.875000","0.000000","96.400000","0.000000","0.000000","96.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"171.000000","205.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"220.000000",,"220.000000",,"220.000000",,"167.500000","0.000000",,,,,,,,,"7.250000","1659.750000","17234.500000","0.000000",,"168.000000",,,,"7.000000","0.000000","0.000000","1.000000","13.125000","0.000000","143.600000","0.000000","0.000000","143.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"350.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"652.750000",,"652.750000",,"652.750000",,"386.750000","0.000000",,,,,,,,,"6.500000","4910.250000","11891.750000","0.000000",,"388.375000",,,,"4.400000","0.000000","0.000000","3.000000","8.125000","0.000000","88.400000","0.000000","0.000000","88.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"153.250000",,"153.250000",,"153.250000",,"160.250000","0.000000",,,,,,,,,"5.500000","1155.000000","17940.500000","0.000000",,"214.875000",,,,"4.400000","0.000000","0.000000","35.000000","8.250000","0.000000","91.800000","0.000000","0.000000","91.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"157.250000",,"157.250000",,"157.250000",,"133.500000","0.000000",,,,,,,,,"2.500000","1185.750000","18387.750000","0.000000",,"89.625000",,,,"2.800000","0.000000","0.000000","0.333333","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.000000",,"61.000000",,"61.000000",,"108.500000","0.000000",,,,,,,,,"2.000000","462.500000","19305.500000","0.000000",,"55.000000",,,,"2.400000","0.000000","0.000000","18.333333","4.500000","0.000000","51.400000","0.000000","0.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"207.000000","0.000000",,,,,,,,,"1.000000","411.750000","19046.750000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","4.333333","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"138.000000","0.000000",,,,,,,,,"1.250000","424.250000","19253.250000","0.000000",,"32.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"135.750000","0.000000",,,,,,,,,"0.750000","426.250000","19260.750000","0.000000",,"21.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"228.000000","0.000000",,,,,,,,,"1.250000","428.500000","19079.000000","0.000000",,"18.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"157.750000","0.000000",,,,,,,,,"0.750000","425.250000","19201.750000","0.000000",,"28.875000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.600000","0.000000","0.000000","28.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest.csv b/splunk_eventgen/samples/vmware-actuals-guest.csv new file mode 100644 index 00000000..f00a6563 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest.csv @@ -0,0 +1,2 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"25.671795","0.662692","25.671795","0.662692","25.671795","0.662692","64.307692","0.000000",,,,,,,,,"0.653846","117.378205","19747.538462","0.051282","8.423077","11.162393","8.423077","8.423077","1.358974","0.606838","0.000000","0.179487","0.705128","1.092308","0.000000","15.145299","0.000000","0.051282","15.094017","54848.102564","87111.692308","0.000000","0.000000","3331793.846154","0.000000","12296292.000000","257584.000000","178164.000000","9886095.076923","0.000000","24.000000","0.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,"2.217949","1.012821","0.000000","2.000000","2.102564","2.000000","4.000000","5.897436","4.666667","0.000000","0.000000","0.000000","2.000000","2.051282","2.000000","3.538462","5.333333","4.153846","160.000000","6000.000000","0.000000","848369.846154",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv new file mode 100644 index 00000000..c9c1a8d1 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv @@ -0,0 +1,860 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"14663.000000","57.145000","14663.000000","57.145000","14663.000000","57.145000",,,,,,,,,,,,,,"147.000000","5737.500000","5417.000000","15.000000","5737.500000","5737.500000",,,,,,,,,,,"5619536.000000","7171660.000000","478908.000000","0.000000","68805268.000000","0.000000","89467956.000000",,"3778240.000000","24606548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000",,,,,,,,"135.000000","5775.000000",,,,,,,,,,,"4025.000000","574.000000","584.000000","603.000000","720.000000","690.000000","732.000000","0.000000","0.000000","0.000000","505.000000","516.000000","538.000000","612.000000","572.000000","652.000000","160.000000","6000.000000",,"8959154.000000",,,,, +"14351.000000","56.650000","14351.000000","56.650000","14351.000000","56.650000",,,,,,,,,,,,,,"58.000000","4990.000000","4848.000000","9.000000","4990.000000","4990.000000",,,,,,,,,,,"5325952.000000","7003900.000000","478908.000000","0.000000","68792720.000000","0.000000","89467972.000000",,"3778240.000000","24679496.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000",,,,,,,,"174.000000","4899.000000",,,,,,,,,,,"4093.000000","574.000000","582.000000","599.000000","716.000000","690.000000","732.000000","0.000000","0.000000","0.000000","506.000000","515.000000","532.000000","612.000000","587.000000","617.000000","160.000000","6000.000000",,"8959174.000000",,,,, +"14265.000000","56.510000","14265.000000","56.510000","14265.000000","56.510000",,,,,,,,,,,,,,"50.000000","4583.000000","4322.000000","1502.000000","4583.000000","4583.000000",,,,,,,,,,,"5389088.000000","7311632.000000","478908.000000","0.000000","68779064.000000","0.000000","89467972.000000",,"3778240.000000","24692344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000",,,,,,,,"107.000000","4687.000000",,,,,,,,,,,"4122.000000","576.000000","586.000000","590.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","509.000000","516.000000","525.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959194.000000",,,,, +"10021.000000","49.860000","10021.000000","49.860000","10021.000000","49.860000",,,,,,,,,,,,,,"325.000000","1687.500000","1518.000000","3513.000000","1687.500000","1687.500000",,,,,,,,,,,"5493948.000000","7353568.000000","478908.000000","0.000000","68774340.000000","0.000000","89467972.000000",,"3778240.000000","24746656.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000",,,,,,,,"81.000000","1450.000000",,,,,,,,,,,"3802.000000","574.000000","527.000000","579.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","508.000000","471.000000","514.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959214.000000",,,,, +"13086.000000","54.655000","13086.000000","54.655000","13086.000000","54.655000",,,,,,,,,,,,,,"79.000000","5175.000000","4788.000000","1670.000000","5175.000000","5175.000000",,,,,,,,,,,"5242292.000000","7143856.000000","478908.000000","0.000000","68773128.000000","0.000000","89467972.000000",,"3778240.000000","24733028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000",,,,,,,,"369.000000","5114.000000",,,,,,,,,,,"3825.000000","573.000000","495.000000","563.000000","720.000000","819.000000","716.000000","0.000000","0.000000","0.000000","507.000000","436.000000","500.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959234.000000",,,,, +"13340.000000","55.065000","13340.000000","55.065000","13340.000000","55.065000",,,,,,,,,,,,,,"43.000000","1858.000000","1722.000000","447.000000","1858.000000","1858.000000",,,,,,,,,,,"5340312.000000","7039224.000000","478908.000000","0.000000","68783896.000000","0.000000","89467972.000000",,"3778240.000000","24718808.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000",,,,,,,,"90.000000","1860.000000",,,,,,,,,,,"3946.000000","571.000000","479.000000","552.000000","720.000000","585.000000","675.000000","0.000000","0.000000","0.000000","506.000000","422.000000","493.000000","613.000000","528.000000","574.000000","160.000000","6000.000000",,"8959254.000000",,,,, +"11080.000000","51.515000","11080.000000","51.515000","11080.000000","51.515000",,,,,,,,,,,,,,"91.000000","23524.000000","23875.000000","487.000000","23524.000000","23524.000000",,,,,,,,,,,"5004764.000000","6598824.000000","478908.000000","0.000000","68767452.000000","0.000000","89467972.000000",,"3778240.000000","24730784.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000",,,,,,,,"282.000000","22800.000000",,,,,,,,,,,"3824.000000","569.000000","489.000000","538.000000","720.000000","585.000000","664.000000","0.000000","0.000000","0.000000","505.000000","433.000000","481.000000","613.000000","528.000000","570.000000","160.000000","6000.000000",,"8959274.000000",,,,, +"12052.000000","53.030000","12052.000000","53.030000","12052.000000","53.030000",,,,,,,,,,,,,,"54.000000","8894.500000","6927.000000","22.000000","8894.500000","8894.500000",,,,,,,,,,,"5151352.000000","6703472.000000","478908.000000","0.000000","68753228.000000","0.000000","89467768.000000",,"3778240.000000","24718316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000",,,,,,,,"611.000000","10196.000000",,,,,,,,,,,"3835.000000","564.000000","470.000000","524.000000","715.000000","583.000000","644.000000","0.000000","0.000000","0.000000","501.000000","425.000000","469.000000","613.000000","528.000000","560.000000","160.000000","6000.000000",,"8959294.000000",,,,, +"11178.000000","51.660000","11178.000000","51.660000","11178.000000","51.660000",,,,,,,,,,,,,,"871.000000","15082.000000","13390.000000","58.000000","15082.000000","15082.000000",,,,,,,,,,,"5410076.000000","7080036.000000","478908.000000","0.000000","68749612.000000","0.000000","89467768.000000",,"3778240.000000","24723388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000",,,,,,,,"1067.000000","14836.000000",,,,,,,,,,,"3801.000000","563.000000","439.000000","518.000000","715.000000","511.000000","644.000000","0.000000","0.000000","0.000000","500.000000","399.000000","464.000000","613.000000","455.000000","560.000000","160.000000","6000.000000",,"8959314.000000",,,,, +"14207.000000","56.400000","14207.000000","56.400000","14207.000000","56.400000",,,,,,,,,,,,,,"58.000000","7853.500000","7654.000000","42.000000","7853.500000","7853.500000",,,,,,,,,,,"5578600.000000","7101756.000000","478908.000000","0.000000","68741120.000000","0.000000","89468516.000000",,"3778240.000000","24765000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000",,,,,,,,"201.000000","7793.000000",,,,,,,,,,,"4006.000000","563.000000","462.000000","522.000000","715.000000","536.000000","644.000000","0.000000","0.000000","0.000000","501.000000","429.000000","468.000000","613.000000","529.000000","560.000000","160.000000","6000.000000",,"8959334.000000",,,,, +"13810.000000","55.770000","13810.000000","55.770000","13810.000000","55.770000",,,,,,,,,,,,,,"359.000000","7443.000000","6731.000000","11.000000","7443.000000","7443.000000",,,,,,,,,,,"5431060.000000","6744500.000000","478908.000000","0.000000","68725116.000000","0.000000","89467768.000000",,"3778240.000000","24786688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000",,,,,,,,"482.000000","7312.000000",,,,,,,,,,,"3912.000000","564.000000","494.000000","521.000000","715.000000","562.000000","644.000000","0.000000","0.000000","0.000000","502.000000","463.000000","468.000000","613.000000","529.000000","559.000000","160.000000","6000.000000",,"8959354.000000",,,,, +"13305.000000","54.970000","13305.000000","54.970000","13305.000000","54.970000",,,,,,,,,,,,,,"1552.000000","6984.000000","5645.000000","7.000000","6984.000000","6984.000000",,,,,,,,,,,"5158240.000000","6639448.000000","478908.000000","0.000000","68709108.000000","0.000000","89467804.000000",,"3778240.000000","24801052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000",,,,,,,,"1236.000000","5534.000000",,,,,,,,,,,"3912.000000","566.000000","532.000000","519.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","504.000000","490.000000","466.000000","613.000000","529.000000","555.000000","160.000000","6000.000000",,"8959374.000000",,,,, +"12125.000000","53.130000","12125.000000","53.130000","12125.000000","53.130000",,,,,,,,,,,,,,"863.000000","6061.000000","4935.000000","14.000000","6061.000000","6061.000000",,,,,,,,,,,"5116300.000000","6954020.000000","478908.000000","0.000000","68724184.000000","0.000000","89467804.000000",,"3778240.000000","24702340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000",,,,,,,,"1344.000000","4980.000000",,,,,,,,,,,"3931.000000","564.000000","506.000000","513.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","503.000000","466.000000","463.000000","613.000000","521.000000","555.000000","160.000000","6000.000000",,"8959394.000000",,,,, +"12008.000000","52.950000","12008.000000","52.950000","12008.000000","52.950000",,,,,,,,,,,,,,"3867.000000","9876.500000","5735.000000","3.000000","9876.500000","9876.500000",,,,,,,,,,,"5053508.000000","6954148.000000","478908.000000","0.000000","68724000.000000","0.000000","89467924.000000",,"3778240.000000","24701416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000",,,,,,,,"3944.000000","6207.000000",,,,,,,,,,,"3916.000000","563.000000","481.000000","504.000000","715.000000","586.000000","604.000000","0.000000","0.000000","0.000000","502.000000","442.000000","456.000000","613.000000","487.000000","529.000000","160.000000","6000.000000",,"8959414.000000",,,,, +"12855.000000","54.270000","12855.000000","54.270000","12855.000000","54.270000",,,,,,,,,,,,,,"2180.000000","7716.000000","5536.000000","5.000000","7716.000000","7716.000000",,,,,,,,,,,"4703832.000000","6570524.000000","478908.000000","0.000000","68714564.000000","0.000000","89467924.000000",,"3778240.000000","24709328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000",,,,,,,,"2319.000000",,,,,,,,,,,,"3782.000000","564.000000","463.000000","500.000000","715.000000","539.000000","604.000000","0.000000","0.000000","0.000000","503.000000","435.000000","452.000000","613.000000","484.000000","528.000000","160.000000","6000.000000",,"8959434.000000",,,,, +"11780.000000","52.575000","11780.000000","52.575000","11780.000000","52.575000",,,,,,,,,,,,,,"1771.000000","6804.000000","4776.000000","7.000000","6804.000000","6804.000000",,,,,,,,,,,"4598972.000000","7052864.000000","478904.000000","0.000000","68700380.000000","0.000000","89467928.000000",,"3778240.000000","24738968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000",,,,,,,,"1849.000000","5210.000000",,,,,,,,,,,"3894.000000","563.000000","478.000000","492.000000","715.000000","607.000000","586.000000","0.000000","0.000000","0.000000","502.000000","437.000000","447.000000","613.000000","530.000000","528.000000","160.000000","6000.000000",,"8959454.000000",,,,, +"14169.000000","56.315000","14169.000000","56.315000","14169.000000","56.315000",,,,,,,,,,,,,,"1345.000000","8281.500000","6850.000000","13.000000","8281.500000","8281.500000",,,,,,,,,,,"4515084.000000","6801204.000000","478904.000000","0.000000","68687572.000000","0.000000","89467928.000000",,"3778240.000000","24776804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000",,,,,,,,"1530.000000","6836.000000",,,,,,,,,,,"3946.000000","561.000000","516.000000","491.000000","708.000000","736.000000","585.000000","0.000000","0.000000","0.000000","502.000000","460.000000","445.000000","612.000000","574.000000","528.000000","160.000000","6000.000000",,"8959474.000000",,,,, +"14237.000000","56.415000","14237.000000","56.415000","14237.000000","56.415000",,,,,,,,,,,,,,"137.000000","6098.500000","4883.000000","5.000000","6098.500000","6098.500000",,,,,,,,,,,"4682856.000000","6801204.000000","478904.000000","0.000000","68682800.000000","0.000000","89467928.000000",,"3778240.000000","24780992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000",,,,,,,,"359.000000","6816.000000",,,,,,,,,,,"4160.000000","564.000000","551.000000","493.000000","715.000000","736.000000","585.000000","0.000000","0.000000","0.000000","504.000000","482.000000","445.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959494.000000",,,,, +"14008.000000","56.060000","14008.000000","56.060000","14008.000000","56.060000",,,,,,,,,,,,,,"546.000000","4951.500000","3658.000000","15.000000","4951.500000","4951.500000",,,,,,,,,,,"4787716.000000","6801204.000000","478904.000000","0.000000","68692708.000000","0.000000","89467928.000000",,"3778240.000000","24768280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000",,,,,,,,"726.000000","4973.000000",,,,,,,,,,,"3906.000000","564.000000","578.000000","503.000000","716.000000","736.000000","586.000000","0.000000","0.000000","0.000000","502.000000","489.000000","451.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959514.000000",,,,, +"14367.000000","56.620000","14367.000000","56.620000","14367.000000","56.620000",,,,,,,,,,,,,,"56.000000","6582.500000","6323.000000","29.000000","6582.500000","6582.500000",,,,,,,,,,,"4871408.000000","7031692.000000","478904.000000","0.000000","68682312.000000","0.000000","89467732.000000",,"3778240.000000","24712780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000",,,,,,,,"163.000000","6621.000000",,,,,,,,,,,"4001.000000","562.000000","587.000000","510.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","502.000000","500.000000","458.000000","612.000000","602.000000","530.000000","160.000000","6000.000000",,"8959534.000000",,,,, +"14250.000000","56.430000","14250.000000","56.430000","14250.000000","56.430000",,,,,,,,,,,,,,"453.000000","5567.000000","4911.000000","6.000000","5567.000000","5567.000000",,,,,,,,,,,"5256664.000000","7485776.000000","478904.000000","0.000000","68671868.000000","0.000000","89467984.000000",,"3778240.000000","24721716.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000",,,,,,,,"774.000000","4995.000000",,,,,,,,,,,"3955.000000","561.000000","573.000000","512.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","501.000000","493.000000","460.000000","603.000000","585.000000","558.000000","160.000000","6000.000000",,"8959554.000000",,,,, +"17611.000000","61.705000","17611.000000","61.705000","17611.000000","61.705000",,,,,,,,,,,,,,"255.000000","8405.500000","7976.000000","6.000000","8405.500000","8405.500000",,,,,,,,,,,"5277632.000000","7338980.000000","478904.000000","0.000000","68683340.000000","0.000000","89467984.000000",,"3778240.000000","24828548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000",,,,,,,,"441.000000","8138.000000",,,,,,,,,,,"4085.000000","564.000000","623.000000","529.000000","720.000000","816.000000","720.000000","0.000000","0.000000","0.000000","504.000000","540.000000","472.000000","612.000000","668.000000","574.000000","160.000000","6000.000000",,"8959574.000000",,,,, +"16265.000000","59.585000","16265.000000","59.585000","16265.000000","59.585000",,,,,,,,,,,,,,"51.000000","7048.000000","6907.000000","29.000000","7048.000000","7048.000000",,,,,,,,,,,"4774316.000000","6814696.000000","478904.000000","0.000000","68666968.000000","0.000000","89467984.000000",,"3778240.000000","24799284.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000",,,,,,,,"164.000000","6973.000000",,,,,,,,,,,"4165.000000","568.000000","659.000000","547.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","506.000000","568.000000","487.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959594.000000",,,,, +"13889.000000","55.865000","13889.000000","55.865000","13889.000000","55.865000",,,,,,,,,,,,,,"49.000000","5748.000000","5580.000000","17.000000","5748.000000","5748.000000",,,,,,,,,,,"4655100.000000","6500824.000000","478904.000000","0.000000","68664244.000000","0.000000","89467984.000000",,"3778240.000000","24800524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000",,,,,,,,"148.000000","5719.000000",,,,,,,,,,,"3877.000000","568.000000","662.000000","556.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","507.000000","566.000000","493.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959614.000000",,,,, +"16137.000000","59.380000","16137.000000","59.380000","16137.000000","59.380000",,,,,,,,,,,,,,"160.000000","7943.000000","8628.000000","17.000000","7943.000000","7943.000000",,,,,,,,,,,"4634132.000000","6437904.000000","478904.000000","0.000000","68657148.000000","0.000000","89467984.000000",,"3778240.000000","24851140.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000",,,,,,,,"231.000000","6866.000000",,,,,,,,,,,"3970.000000","570.000000","635.000000","564.000000","722.000000","767.000000","731.000000","0.000000","0.000000","0.000000","508.000000","560.000000","499.000000","615.000000","654.000000","602.000000","160.000000","6000.000000",,"8959634.000000",,,,, +"15709.000000","58.705000","15709.000000","58.705000","15709.000000","58.705000",,,,,,,,,,,,,,"183.000000","7354.500000","5850.000000","9.000000","7354.500000","7354.500000",,,,,,,,,,,"4675808.000000","6458596.000000","478904.000000","0.000000","68643296.000000","0.000000","89467712.000000",,"3778240.000000","24878444.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000",,,,,,,,"363.000000","8311.000000",,,,,,,,,,,"4089.000000","567.000000","604.000000","569.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","509.000000","548.000000","504.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959654.000000",,,,, +"14640.000000","57.020000","14640.000000","57.020000","14640.000000","57.020000",,,,,,,,,,,,,,"240.000000","8711.500000","8581.000000","22.000000","8711.500000","8711.500000",,,,,,,,,,,"4592248.000000","6458924.000000","478904.000000","0.000000","68626592.000000","0.000000","89468040.000000",,"3778240.000000","24894356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000",,,,,,,,"345.000000","8257.000000",,,,,,,,,,,"4184.000000","567.000000","606.000000","571.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","508.000000","556.000000","506.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959674.000000",,,,, +"15295.000000","58.040000","15295.000000","58.040000","15295.000000","58.040000",,,,,,,,,,,,,,"35.000000","5974.500000","5657.000000","18.000000","5974.500000","5974.500000",,,,,,,,,,,"4969404.000000","6290824.000000","478904.000000","0.000000","68610916.000000","0.000000","89467712.000000",,"3778240.000000","24903780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000",,,,,,,,"131.000000","6124.000000",,,,,,,,,,,"4105.000000","567.000000","584.000000","580.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","508.000000","533.000000","512.000000","615.000000","621.000000","610.000000","160.000000","6000.000000",,"8959694.000000",,,,, +"14994.000000","57.560000","14994.000000","57.560000","14994.000000","57.560000",,,,,,,,,,,,,,"117.000000","5964.000000","5259.000000","16.000000","5964.000000","5964.000000",,,,,,,,,,,"5325912.000000","6752200.000000","478904.000000","0.000000","68595508.000000","0.000000","89467712.000000",,"3778240.000000","24917672.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000",,,,,,,,"200.000000","6350.000000",,,,,,,,,,,"4227.000000","565.000000","584.000000","590.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","507.000000","533.000000","522.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959714.000000",,,,, +"13940.000000","55.910000","13940.000000","55.910000","13940.000000","55.910000",,,,,,,,,,,,,,"330.000000","6138.500000","4442.000000","24.000000","6138.500000","6138.500000",,,,,,,,,,,"5542948.000000","6983364.000000","478904.000000","0.000000","68594600.000000","0.000000","89467964.000000",,"3778240.000000","24916736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000",,,,,,,,"563.000000","6941.000000",,,,,,,,,,,"4079.000000","565.000000","586.000000","595.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","506.000000","532.000000","526.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959734.000000",,,,, +"15783.000000","58.790000","15783.000000","58.790000","15783.000000","58.790000",,,,,,,,,,,,,,"38.000000","7028.500000","6947.000000","47.000000","7028.500000","7028.500000",,,,,,,,,,,"5501004.000000","7193080.000000","478904.000000","0.000000","68591984.000000","0.000000","89467964.000000",,"3778240.000000","24854896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000",,,,,,,,"158.000000","6914.000000",,,,,,,,,,,"4056.000000","566.000000","591.000000","602.000000","720.000000","689.000000","731.000000","0.000000","0.000000","0.000000","506.000000","541.000000","533.000000","610.000000","632.000000","621.000000","160.000000","6000.000000",,"8959754.000000",,,,, +"13966.000000","55.945000","13966.000000","55.945000","13966.000000","55.945000",,,,,,,,,,,,,,"55.000000","5918.500000","5732.000000","16.000000","5918.500000","5918.500000",,,,,,,,,,,"5102228.000000","6752360.000000","478904.000000","0.000000","68586904.000000","0.000000","89467648.000000",,"3778240.000000","24838792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000",,,,,,,,"162.000000","5888.000000",,,,,,,,,,,"4002.000000","564.000000","582.000000","603.000000","720.000000","689.000000","729.000000","0.000000","0.000000","0.000000","504.000000","523.000000","534.000000","605.000000","605.000000","621.000000","160.000000","6000.000000",,"8959774.000000",,,,, +"17060.000000","60.805000","17060.000000","60.805000","17060.000000","60.805000",,,,,,,,,,,,,,"48.000000","6689.000000","6519.000000","60.000000","6689.000000","6689.000000",,,,,,,,,,,"4787428.000000","6436188.000000","478904.000000","0.000000","68614968.000000","0.000000","89467648.000000",,"3778240.000000","24821848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000",,,,,,,,"144.000000","6666.000000",,,,,,,,,,,"4076.000000","570.000000","707.000000","626.000000","720.000000","1537.000000","767.000000","0.000000","0.000000","0.000000","503.000000","548.000000","539.000000","603.000000","755.000000","632.000000","160.000000","6000.000000",,"8959794.000000",,,,, +"20076.000000","65.525000","20076.000000","65.525000","20076.000000","65.525000",,,,,,,,,,,,,,"55.000000","8553.000000","8189.000000","16.000000","8553.000000","8553.000000",,,,,,,,,,,"5249028.000000","6974828.000000","478904.000000","0.000000","68605460.000000","0.000000","89467648.000000",,"3778240.000000","24809764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000",,,,,,,,"170.000000","8690.000000",,,,,,,,,,,"4151.000000","577.000000","815.000000","650.000000","729.000000","1537.000000","821.000000","0.000000","0.000000","0.000000","506.000000","596.000000","554.000000","615.000000","755.000000","661.000000","160.000000","6000.000000",,"8959814.000000",,,,, +"24384.000000","72.295000","24384.000000","72.295000","24384.000000","72.295000",,,,,,,,,,,,,,"40.000000","5887.500000","5842.000000","31.000000","5887.500000","5887.500000",,,,,,,,,,,"5577992.000000","6996280.000000","478904.000000","0.000000","68646004.000000","0.000000","89467900.000000",,"3778240.000000","24759156.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000",,,,,,,,"116.000000","5776.000000",,,,,,,,,,,"4448.000000","592.000000","1094.000000","705.000000","736.000000","1537.000000","1081.000000","0.000000","0.000000","0.000000","513.000000","739.000000","582.000000","621.000000","1058.000000","755.000000","160.000000","6000.000000",,"8959834.000000",,,,, +"23928.000000","71.600000","23928.000000","71.600000","23928.000000","71.600000",,,,,,,,,,,,,,"63.000000","11244.500000","10490.000000","31.000000","11244.500000","11244.500000",,,,,,,,,,,"5787708.000000","7331824.000000","478904.000000","0.000000","68689856.000000","0.000000","89467900.000000",,"3778240.000000","24718336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000",,,,,,,,"573.000000","11363.000000",,,,,,,,,,,"4474.000000","606.000000","1219.000000","756.000000","771.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","519.000000","818.000000","604.000000","654.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959854.000000",,,,, +"20882.000000","66.825000","20882.000000","66.825000","20882.000000","66.825000",,,,,,,,,,,,,,"182.000000","7143.500000","5949.000000","34.000000","7143.500000","7143.500000",,,,,,,,,,,"5787708.000000","7331820.000000","478904.000000","0.000000","68678300.000000","0.000000","89467900.000000",,"3778240.000000","24696696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000",,,,,,,,"309.000000","7847.000000",,,,,,,,,,,"4378.000000","615.000000","1263.000000","778.000000","821.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","522.000000","838.000000","614.000000","706.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959874.000000",,,,, +"18709.000000","63.415000","18709.000000","63.415000","18709.000000","63.415000",,,,,,,,,,,,,,"69.000000","8820.000000","7475.000000","12.000000","8820.000000","8820.000000",,,,,,,,,,,"6647244.000000","8233300.000000","478904.000000","0.000000","68667484.000000","0.000000","89467608.000000",,"3778240.000000","24707256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000",,,,,,,,"273.000000","9822.000000",,,,,,,,,,,"4178.000000","624.000000","1139.000000","801.000000","958.000000","1508.000000","1330.000000","0.000000","0.000000","0.000000","526.000000","766.000000","622.000000","709.000000","917.000000","810.000000","160.000000","6000.000000",,"8959894.000000",,,,, +"16786.000000","60.395000","16786.000000","60.395000","16786.000000","60.395000",,,,,,,,,,,,,,"45.000000","7295.500000","6077.000000","41.000000","7295.500000","7295.500000",,,,,,,,,,,"6437816.000000","8013960.000000","478904.000000","0.000000","68651952.000000","0.000000","89467892.000000",,"3778240.000000","24784152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000",,,,,,,,"242.000000","8227.000000",,,,,,,,,,,"4102.000000","629.000000","942.000000","812.000000","958.000000","1207.000000","1330.000000","0.000000","0.000000","0.000000","528.000000","689.000000","629.000000","709.000000","798.000000","810.000000","160.000000","6000.000000",,"8959914.000000",,,,, +"16822.000000","60.455000","16822.000000","60.455000","16822.000000","60.455000",,,,,,,,,,,,,,"50.000000","8288.000000","7052.000000","64.000000","8288.000000","8288.000000",,,,,,,,,,,"6409780.000000","8020800.000000","478904.000000","0.000000","68653440.000000","0.000000","89467892.000000",,"3778240.000000","24773352.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000",,,,,,,,"288.000000","9185.000000",,,,,,,,,,,"4171.000000","633.000000","816.000000","814.000000","958.000000","1093.000000","1330.000000","0.000000","0.000000","0.000000","532.000000","634.000000","628.000000","709.000000","760.000000","810.000000","160.000000","6000.000000",,"8959934.000000",,,,, +"15420.000000","58.255000","15420.000000","58.255000","15420.000000","58.255000",,,,,,,,,,,,,,"43.000000","7885.500000","6645.000000","18.000000","7885.500000","7885.500000",,,,,,,,,,,"6493668.000000","8230520.000000","478904.000000","0.000000","68648060.000000","0.000000","89467892.000000",,"3778240.000000","24750700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000",,,,,,,,"255.000000","8827.000000",,,,,,,,,,,"4273.000000","635.000000","677.000000","815.000000","958.000000","840.000000","1330.000000","0.000000","0.000000","0.000000","534.000000","584.000000","629.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959954.000000",,,,, +"16162.000000","59.415000","16162.000000","59.415000","16162.000000","59.415000",,,,,,,,,,,,,,"41.000000","7883.500000","6353.000000","20.000000","7883.500000","7883.500000",,,,,,,,,,,"6524548.000000","8303344.000000","478904.000000","0.000000","68645200.000000","0.000000","89467892.000000",,"3778240.000000","24752372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000",,,,,,,,"258.000000","9114.000000",,,,,,,,,,,"4238.000000","636.000000","641.000000","819.000000","958.000000","730.000000","1330.000000","0.000000","0.000000","0.000000","535.000000","579.000000","633.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959974.000000",,,,, +"16507.000000","59.950000","16507.000000","59.950000","16507.000000","59.950000",,,,,,,,,,,,,,"54.000000","8160.500000","6703.000000","15.000000","8160.500000","8160.500000",,,,,,,,,,,"6664728.000000","8485472.000000","478904.000000","0.000000","68634596.000000","0.000000","89467892.000000",,"3778240.000000","24784888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000",,,,,,,,"256.000000","9307.000000",,,,,,,,,,,"4369.000000","638.000000","625.000000","822.000000","958.000000","694.000000","1330.000000","0.000000","0.000000","0.000000","538.000000","587.000000","639.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8959994.000000",,,,, +"16438.000000","59.845000","16438.000000","59.845000","16438.000000","59.845000",,,,,,,,,,,,,,"104.000000","7906.500000","6751.000000","39.000000","7906.500000","7906.500000",,,,,,,,,,,"6853344.000000","8443400.000000","478904.000000","0.000000","68632984.000000","0.000000","89467764.000000",,"3778240.000000","24782868.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000",,,,,,,,"246.000000","8710.000000",,,,,,,,,,,"4047.000000","640.000000","637.000000","826.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","539.000000","588.000000","640.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8960014.000000",,,,, +"15969.000000","59.105000","15969.000000","59.105000","15969.000000","59.105000",,,,,,,,,,,,,,"336.000000","9609.500000","8002.000000","31.000000","9609.500000","9609.500000",,,,,,,,,,,"6937228.000000","8569232.000000","478904.000000","0.000000","68623876.000000","0.000000","89467764.000000",,"3778240.000000","24788348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000",,,,,,,,"544.000000","10336.000000",,,,,,,,,,,"4038.000000","641.000000","629.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","540.000000","579.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960034.000000",,,,, +"15475.000000","58.315000","15475.000000","58.315000","15475.000000","58.315000",,,,,,,,,,,,,,"60.000000","7516.000000","6095.000000","12.000000","7516.000000","7516.000000",,,,,,,,,,,"7049156.000000","8800140.000000","478904.000000","0.000000","68602580.000000","0.000000","89467764.000000",,"3778240.000000","24828580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000",,,,,,,,"290.000000","8586.000000",,,,,,,,,,,"4134.000000","641.000000","619.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","541.000000","562.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960054.000000",,,,, +"16529.000000","59.965000","16529.000000","59.965000","16529.000000","59.965000",,,,,,,,,,,,,,"47.000000","6099.000000","6051.000000","26.000000","6099.000000","6099.000000",,,,,,,,,,,"6440976.000000","8653340.000000","478904.000000","0.000000","68598164.000000","0.000000","89467764.000000",,"3778240.000000","24801760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000",,,,,,,,"232.000000",,,,,,,,,,,,"4185.000000","643.000000","626.000000","834.000000","958.000000","735.000000","1330.000000","0.000000","0.000000","0.000000","543.000000","570.000000","649.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960074.000000",,,,, +"20894.000000","66.845000","20894.000000","66.845000","20894.000000","66.845000",,,,,,,,,,,,,,"76.000000","10636.000000","9384.000000","24.000000","10636.000000","10636.000000",,,,,,,,,,,"6598836.000000","8957992.000000","478904.000000","0.000000","68674136.000000","0.000000","89467764.000000",,"3778240.000000","24738076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000",,,,,,,,"312.000000","11500.000000",,,,,,,,,,,"4340.000000","653.000000","773.000000","841.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","548.000000","631.000000","659.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960094.000000",,,,, +"14945.000000","57.520000","14945.000000","57.520000","14945.000000","57.520000",,,,,,,,,,,,,,"60.000000","5605.500000","4219.000000","33.000000","5605.500000","5605.500000",,,,,,,,,,,"6532872.000000","9080144.000000","478904.000000","0.000000","68669820.000000","0.000000","89457204.000000",,"3778240.000000","24784848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000",,,,,,,,"251.000000","6679.000000",,,,,,,,,,,"4308.000000","658.000000","782.000000","821.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","552.000000","637.000000","651.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960114.000000",,,,, +"15027.000000","57.650000","15027.000000","57.650000","15027.000000","57.650000",,,,,,,,,,,,,,"45.000000","9811.000000","6327.000000","68.000000","9811.000000","9811.000000",,,,,,,,,,,"6197312.000000","8451080.000000","478904.000000","0.000000","68666100.000000","0.000000","89457096.000000",,"3778240.000000","24757968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000",,,,,,,,"4460.000000","8789.000000",,,,,,,,,,,"3875.000000","660.000000","749.000000","766.000000","1015.000000","1444.000000","1207.000000","0.000000","0.000000","0.000000","554.000000","607.000000","623.000000","732.000000","857.000000","779.000000","160.000000","6000.000000",,"8960134.000000",,,,, +"16680.000000","60.235000","16680.000000","60.235000","16680.000000","60.235000",,,,,,,,,,,,,,"132.000000","7142.000000","6448.000000","29.000000","7142.000000","7142.000000",,,,,,,,,,,"6071484.000000","8094568.000000","478904.000000","0.000000","68670848.000000","0.000000","89457096.000000",,"3778240.000000","24753944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000",,,,,,,,"621.000000","7081.000000",,,,,,,,,,,"3956.000000","663.000000","618.000000","721.000000","1015.000000","813.000000","1041.000000","0.000000","0.000000","0.000000","556.000000","551.000000","606.000000","732.000000","719.000000","748.000000","160.000000","6000.000000",,"8960154.000000",,,,, +"19314.000000","64.365000","19314.000000","64.365000","19314.000000","64.365000",,,,,,,,,,,,,,"72.000000","13982.000000","12695.000000","29.000000","13982.000000","13982.000000",,,,,,,,,,,"6316004.000000","7870744.000000","478904.000000","0.000000","68667796.000000","0.000000","89457096.000000",,"3778240.000000","24742076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000",,,,,,,,"309.000000","14886.000000",,,,,,,,,,,"4330.000000","669.000000","659.000000","700.000000","1015.000000","813.000000","915.000000","0.000000","0.000000","0.000000","562.000000","580.000000","600.000000","732.000000","719.000000","697.000000","160.000000","6000.000000",,"8960174.000000",,,,, +"18384.000000","62.900000","18384.000000","62.900000","18384.000000","62.900000",,,,,,,,,,,,,,"92.000000","21775.500000","19425.000000","57.000000","21775.500000","21775.500000",,,,,,,,,,,"6798540.000000","7996764.000000","478892.000000","0.000000","68659660.000000","0.000000","89457300.000000",,"3778240.000000","24783560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000",,,,,,,,"379.000000","23655.000000",,,,,,,,,,,"4372.000000","678.000000","737.000000","685.000000","1015.000000","930.000000","831.000000","0.000000","0.000000","0.000000","569.000000","644.000000","599.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960194.000000",,,,, +"19239.000000","64.230000","19239.000000","64.230000","19239.000000","64.230000",,,,,,,,,,,,,,"52.000000","20982.000000","20357.000000","61.000000","20982.000000","20982.000000",,,,,,,,,,,"7332736.000000","8635824.000000","478892.000000","0.000000","68641356.000000","0.000000","89457300.000000",,"3778240.000000","24796780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000",,,,,,,,"360.000000","21195.000000",,,,,,,,,,,"4432.000000","684.000000","764.000000","685.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","575.000000","677.000000","603.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960214.000000",,,,, +"16759.000000","60.340000","16759.000000","60.340000","16759.000000","60.340000",,,,,,,,,,,,,,"100.000000","28408.000000","26724.000000","75.000000","28408.000000","28408.000000",,,,,,,,,,,"7521936.000000","9013764.000000","478892.000000","0.000000","68626408.000000","0.000000","89457756.000000",,"3778240.000000","24839200.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000",,,,,,,,"420.000000","29571.000000",,,,,,,,,,,"4219.000000","689.000000","755.000000","688.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","578.000000","667.000000","606.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960234.000000",,,,, +"16894.000000","60.545000","16894.000000","60.545000","16894.000000","60.545000",,,,,,,,,,,,,,"4761.000000","50778.500000","43503.000000","82.000000","50778.500000","50778.500000",,,,,,,,,,,"7521396.000000","8964324.000000","478892.000000","0.000000","68611328.000000","0.000000","89457216.000000",,"3778240.000000","24870036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000",,,,,,,,"5268.000000","48025.000000",,,,,,,,,,,"4173.000000","692.000000","708.000000","691.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","580.000000","632.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960254.000000",,,,, +"17063.000000","60.805000","17063.000000","60.805000","17063.000000","60.805000",,,,,,,,,,,,,,"67.000000","27770.000000","26749.000000","67.000000","27770.000000","27770.000000",,,,,,,,,,,"7071084.000000","8534980.000000","478892.000000","0.000000","68597192.000000","0.000000","89457216.000000",,"3778240.000000","24883368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000",,,,,,,,"405.000000","28317.000000",,,,,,,,,,,"4295.000000","695.000000","685.000000","694.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","582.000000","601.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960274.000000",,,,, +"15804.000000","58.830000","15804.000000","58.830000","15804.000000","58.830000",,,,,,,,,,,,,,"50.000000","26687.000000","25170.000000","77.000000","26687.000000","26687.000000",,,,,,,,,,,"7071224.000000","8535120.000000","478892.000000","0.000000","68594824.000000","0.000000","89457356.000000",,"3778240.000000","24784184.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000",,,,,,,,"393.000000","27760.000000",,,,,,,,,,,"4412.000000","700.000000","673.000000","697.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","586.000000","595.000000","608.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960294.000000",,,,, +"15400.000000","58.190000","15400.000000","58.190000","15400.000000","58.190000",,,,,,,,,,,,,,"101.000000","24373.000000","24271.000000","84.000000","24373.000000","24373.000000",,,,,,,,,,,"6868556.000000","8346380.000000","478892.000000","0.000000","68586776.000000","0.000000","89457356.000000",,"3778240.000000","24871204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000",,,,,,,,"337.000000",,,,,,,,,,,,"4079.000000","705.000000","671.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","589.000000","578.000000","606.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960314.000000",,,,, +"15174.000000","57.840000","15174.000000","57.840000","15174.000000","57.840000",,,,,,,,,,,,,,"329.000000","11168.500000","8524.000000","65.000000","11168.500000","11168.500000",,,,,,,,,,,"6826612.000000","8209496.000000","478892.000000","0.000000","68587124.000000","0.000000","89457356.000000",,"3778240.000000","24871236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000",,,,,,,,"595.000000","12889.000000",,,,,,,,,,,"4050.000000","707.000000","649.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","591.000000","560.000000","604.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960334.000000",,,,, +"15305.000000","58.040000","15305.000000","58.040000","15305.000000","58.040000",,,,,,,,,,,,,,"68.000000","6133.000000","5533.000000","15.000000","6133.000000","6133.000000",,,,,,,,,,,"6910500.000000","8545040.000000","478892.000000","0.000000","68577276.000000","0.000000","89457356.000000",,"3778240.000000","24897356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000",,,,,,,,"215.000000","6448.000000",,,,,,,,,,,"4066.000000","709.000000","622.000000","698.000000","1015.000000","738.000000","813.000000","0.000000","0.000000","0.000000","593.000000","541.000000","604.000000","732.000000","588.000000","721.000000","160.000000","6000.000000",,"8960354.000000",,,,, +"17607.000000","61.635000","17607.000000","61.635000","17607.000000","61.635000",,,,,,,,,,,,,,"66.000000","7071.000000","6945.000000","19.000000","7071.000000","7071.000000",,,,,,,,,,,"6225380.000000","7838940.000000","478892.000000","0.000000","68562364.000000","0.000000","89457148.000000",,"3778240.000000","24909928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000",,,,,,,,"163.000000","6966.000000",,,,,,,,,,,"4236.000000","713.000000","645.000000","702.000000","1015.000000","783.000000","813.000000","0.000000","0.000000","0.000000","597.000000","572.000000","607.000000","732.000000","676.000000","721.000000","160.000000","6000.000000",,"8960374.000000",,,,, +"17649.000000","61.695000","17649.000000","61.695000","17649.000000","61.695000",,,,,,,,,,,,,,"967.000000","18309.000000","17423.000000","31.000000","18309.000000","18309.000000",,,,,,,,,,,"6120520.000000","7682228.000000","478892.000000","0.000000","68551056.000000","0.000000","89457148.000000",,"3778240.000000","24922212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000",,,,,,,,"1136.000000","17090.000000",,,,,,,,,,,"4243.000000","716.000000","685.000000","680.000000","1015.000000","838.000000","786.000000","0.000000","0.000000","0.000000","599.000000","605.000000","599.000000","737.000000","759.000000","719.000000","160.000000","6000.000000",,"8960394.000000",,,,, +"20086.000000","65.515000","20086.000000","65.515000","20086.000000","65.515000",,,,,,,,,,,,,,"55.000000","7514.000000","6844.000000","20.000000","7514.000000","7514.000000",,,,,,,,,,,"5952748.000000","7577372.000000","478892.000000","0.000000","68562052.000000","0.000000","89457148.000000",,"3778240.000000","24851796.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000",,,,,,,,"157.000000","7972.000000",,,,,,,,,,,"4380.000000","721.000000","757.000000","693.000000","1036.000000","1038.000000","804.000000","0.000000","0.000000","0.000000","604.000000","652.000000","607.000000","748.000000","759.000000","725.000000","160.000000","6000.000000",,"8960414.000000",,,,, +"19803.000000","65.080000","19803.000000","65.080000","19803.000000","65.080000",,,,,,,,,,,,,,"70.000000","5896.500000","5785.000000","16.000000","5896.500000","5896.500000",,,,,,,,,,,"5743124.000000","7451636.000000","478892.000000","0.000000","68562628.000000","0.000000","89457148.000000",,"3778240.000000","24828344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000",,,,,,,,"162.000000","5776.000000",,,,,,,,,,,"4279.000000","730.000000","832.000000","719.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","610.000000","693.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960434.000000",,,,, +"16291.000000","59.580000","16291.000000","59.580000","16291.000000","59.580000",,,,,,,,,,,,,,"56.000000","4438.500000","3935.000000","15.000000","4438.500000","4438.500000",,,,,,,,,,,"5596328.000000","7357844.000000","478892.000000","0.000000","68563360.000000","0.000000","89457148.000000",,"3778240.000000","24827460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000",,,,,,,,"428.000000","4457.000000",,,,,,,,,,,"4134.000000","733.000000","828.000000","722.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","611.000000","673.000000","623.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960454.000000",,,,, +"18171.000000","62.520000","18171.000000","62.520000","18171.000000","62.520000",,,,,,,,,,,,,,"132.000000","10073.500000","9786.000000","18.000000","10073.500000","10073.500000",,,,,,,,,,,"5595020.000000","7335344.000000","478892.000000","0.000000","68557660.000000","0.000000","89449972.000000",,"3778240.000000","24830260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000",,,,,,,,"306.000000","9923.000000",,,,,,,,,,,"4135.000000","735.000000","830.000000","727.000000","1038.000000","1080.000000","897.000000","0.000000","0.000000","0.000000","612.000000","664.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960474.000000",,,,, +"17053.000000","60.765000","17053.000000","60.765000","17053.000000","60.765000",,,,,,,,,,,,,,"62.000000","6870.500000","6611.000000","17.000000","6870.500000","6870.500000",,,,,,,,,,,"6538548.000000","8222832.000000","478892.000000","0.000000","68561300.000000","0.000000","89449772.000000",,"3778240.000000","24882940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000",,,,,,,,"170.000000","6896.000000",,,,,,,,,,,"4189.000000","736.000000","761.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","613.000000","613.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960494.000000",,,,, +"19157.000000","64.060000","19157.000000","64.060000","19157.000000","64.060000",,,,,,,,,,,,,,"70.000000","17513.500000","17493.000000","23.000000","17513.500000","17513.500000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68553188.000000","0.000000","89449772.000000",,"3778240.000000","24889580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000",,,,,,,,"319.000000","17145.000000",,,,,,,,,,,"4284.000000","740.000000","774.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","616.000000","643.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960514.000000",,,,, +"17289.000000","61.125000","17289.000000","61.125000","17289.000000","61.125000",,,,,,,,,,,,,,"2198.000000","18126.000000","15512.000000","13.000000","18126.000000","18126.000000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68538632.000000","0.000000","89449772.000000",,"3778240.000000","24888848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000",,,,,,,,"1856.000000","16685.000000",,,,,,,,,,,"4373.000000","741.000000","731.000000","723.000000","1038.000000","839.000000","874.000000","0.000000","0.000000","0.000000","617.000000","632.000000","617.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960534.000000",,,,, +"15447.000000","58.235000","15447.000000","58.235000","15447.000000","58.235000",,,,,,,,,,,,,,"7103.000000","27817.000000","19069.000000","28.000000","27817.000000","27817.000000",,,,,,,,,,,"5972840.000000","7457316.000000","478892.000000","0.000000","68531808.000000","0.000000","89449984.000000",,"3778240.000000","24897304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000",,,,,,,,"8204.000000","21257.000000",,,,,,,,,,,"4177.000000","743.000000","697.000000","721.000000","1038.000000","806.000000","874.000000","0.000000","0.000000","0.000000","617.000000","621.000000","615.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960554.000000",,,,, +"15526.000000","58.355000","15526.000000","58.355000","15526.000000","58.355000",,,,,,,,,,,,,,"429.000000","18144.500000","17434.000000","22.000000","18144.500000","18144.500000",,,,,,,,,,,"6182556.000000","7646064.000000","478892.000000","0.000000","68518620.000000","0.000000","89449984.000000",,"3778240.000000","24929948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000",,,,,,,,"638.000000","17788.000000",,,,,,,,,,,"4046.000000","744.000000","667.000000","721.000000","1038.000000","762.000000","874.000000","0.000000","0.000000","0.000000","618.000000","583.000000","613.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960574.000000",,,,, +"16614.000000","60.050000","16614.000000","60.050000","16614.000000","60.050000",,,,,,,,,,,,,,"4952.000000","26766.500000","21092.000000","60.000000","26766.500000","26766.500000",,,,,,,,,,,"6138972.000000","7718032.000000","478892.000000","0.000000","68494956.000000","0.000000","89440852.000000",,"3778240.000000","24946840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000",,,,,,,,"5278.000000","22210.000000",,,,,,,,,,,"4110.000000","746.000000","656.000000","719.000000","1038.000000","724.000000","874.000000","0.000000","0.000000","0.000000","620.000000","571.000000","612.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960594.000000",,,,, +"16589.000000","60.000000","16589.000000","60.000000","16589.000000","60.000000",,,,,,,,,,,,,,"700.000000","19892.000000","18922.000000","43.000000","19892.000000","19892.000000",,,,,,,,,,,"6096872.000000","7550104.000000","478892.000000","0.000000","68479028.000000","0.000000","89440636.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000",,,,,,,,"927.000000","19234.000000",,,,,,,,,,,"4021.000000","748.000000","671.000000","721.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","580.000000","616.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960614.000000",,,,, +"14492.000000","56.710000","14492.000000","56.710000","14492.000000","56.710000",,,,,,,,,,,,,,"5777.000000","22797.000000","17019.000000","14.000000","22797.000000","22797.000000",,,,,,,,,,,"5739672.000000","7297612.000000","478892.000000","0.000000","68463460.000000","0.000000","89436844.000000",,"3778240.000000","25006840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"4204.000000","750.000000","663.000000","723.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","582.000000","617.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960634.000000",,,,, +"15202.000000","57.820000","15202.000000","57.820000","15202.000000","57.820000",,,,,,,,,,,,,,"15052.000000","25747.500000","10061.000000","9.000000","25747.500000","25747.500000",,,,,,,,,,,"5759376.000000","7379916.000000","478892.000000","0.000000","68463492.000000","0.000000","89429148.000000",,"3778240.000000","24993404.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000",,,,,,,,"16217.000000","10164.000000",,,,,,,,,,,"3967.000000","749.000000","638.000000","722.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","558.000000","615.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960654.000000",,,,, +"14965.000000","57.445000","14965.000000","57.445000","14965.000000","57.445000",,,,,,,,,,,,,,"13476.000000","30102.000000","16574.000000","86.000000","30102.000000","30102.000000",,,,,,,,,,,"5641160.000000","7156840.000000","478892.000000","0.000000","68459400.000000","0.000000","89429148.000000",,"3778240.000000","24999384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000",,,,,,,,"13341.000000","16813.000000",,,,,,,,,,,"4065.000000","751.000000","621.000000","716.000000","1038.000000","936.000000","897.000000","0.000000","0.000000","0.000000","621.000000","534.000000","608.000000","755.000000","626.000000","727.000000","160.000000","6000.000000",,"8960674.000000",,,,, +"16429.000000","59.750000","16429.000000","59.750000","16429.000000","59.750000",,,,,,,,,,,,,,"9661.000000","23058.000000","12989.000000","12.000000","23058.000000","23058.000000",,,,,,,,,,,"6269364.000000","7555300.000000","478892.000000","0.000000","68475632.000000","0.000000","89429148.000000",,"3778240.000000","24983112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000",,,,,,,,"10389.000000","13077.000000",,,,,,,,,,,"4071.000000","748.000000","679.000000","722.000000","1038.000000","1042.000000","921.000000","0.000000","0.000000","0.000000","621.000000","541.000000","604.000000","749.000000","636.000000","725.000000","160.000000","6000.000000",,"8960694.000000",,,,, +"14782.000000","57.170000","14782.000000","57.170000","14782.000000","57.170000",,,,,,,,,,,,,,"118.000000","16021.500000","15706.000000","40.000000","16021.500000","16021.500000",,,,,,,,,,,"6269364.000000","7603920.000000","478888.000000","0.000000","68478092.000000","0.000000","89429152.000000",,"3778240.000000","24993176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000",,,,,,,,"269.000000","15949.000000",,,,,,,,,,,"4215.000000","741.000000","689.000000","709.000000","1038.000000","1042.000000","897.000000","0.000000","0.000000","0.000000","618.000000","551.000000","595.000000","749.000000","636.000000","696.000000","160.000000","6000.000000",,"8960714.000000",,,,, +"15591.000000","58.435000","15591.000000","58.435000","15591.000000","58.435000",,,,,,,,,,,,,,"312.000000","8063.500000","7271.000000","31.000000","8063.500000","8063.500000",,,,,,,,,,,"6122444.000000","7680076.000000","478888.000000","0.000000","68472940.000000","0.000000","89429032.000000",,"3778240.000000","24969712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000",,,,,,,,"415.000000","8129.000000",,,,,,,,,,,"4090.000000","724.000000","682.000000","686.000000","930.000000","1042.000000","839.000000","0.000000","0.000000","0.000000","609.000000","552.000000","580.000000","728.000000","636.000000","686.000000","160.000000","6000.000000",,"8960734.000000",,,,, +"17832.000000","61.955000","17832.000000","61.955000","17832.000000","61.955000",,,,,,,,,,,,,,"319.000000","13451.500000","12792.000000","15.000000","13451.500000","13451.500000",,,,,,,,,,,"5891760.000000","7281616.000000","478888.000000","0.000000","68492216.000000","0.000000","89429032.000000",,"3778240.000000","24954112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000",,,,,,,,"828.000000","12962.000000",,,,,,,,,,,"4229.000000","713.000000","691.000000","695.000000","905.000000","905.000000","874.000000","0.000000","0.000000","0.000000","604.000000","566.000000","583.000000","721.000000","643.000000","686.000000","160.000000","6000.000000",,"8960754.000000",,,,, +"15395.000000","58.130000","15395.000000","58.130000","15395.000000","58.130000",,,,,,,,,,,,,,"269.000000","11304.000000","10468.000000","31.000000","11304.000000","11304.000000",,,,,,,,,,,"5912732.000000","7281616.000000","478888.000000","0.000000","68477144.000000","0.000000","89429032.000000",,"3778240.000000","24925236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000",,,,,,,,"460.000000","11410.000000",,,,,,,,,,,"4022.000000","705.000000","716.000000","686.000000","861.000000","905.000000","843.000000","0.000000","0.000000","0.000000","600.000000","572.000000","577.000000","711.000000","664.000000","674.000000","160.000000","6000.000000",,"8960774.000000",,,,, +"12823.000000","54.090000","12823.000000","54.090000","12823.000000","54.090000",,,,,,,,,,,,,,"491.000000","21369.000000","19724.000000","22.000000","21369.000000","21369.000000",,,,,,,,,,,"6353136.000000","7736316.000000","478888.000000","0.000000","68460708.000000","0.000000","89429032.000000",,"3778240.000000","24812360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000",,,,,,,,"724.000000","21798.000000",,,,,,,,,,,"3977.000000","693.000000","683.000000","671.000000","840.000000","905.000000","843.000000","0.000000","8.000000","0.000000","594.000000","545.000000","566.000000","706.000000","664.000000","674.000000","160.000000","6000.000000",,"8960794.000000",,,,, +"13588.000000","55.290000","13588.000000","55.290000","13588.000000","55.290000",,,,,,,,,,,,,,"2272.000000","25670.000000","23398.000000","30.000000","25670.000000","25670.000000",,,,,,,,,,,"6080504.000000","7736312.000000","478888.000000","0.000000","68455040.000000","0.000000","89429032.000000",,"3778240.000000","24818960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000",,,,,,,,,"26055.000000",,,,,,,,,,,"3941.000000","689.000000","594.000000","659.000000","839.000000","843.000000","843.000000","0.000000","8.000000","0.000000","592.000000","506.000000","556.000000","706.000000","664.000000","643.000000","160.000000","6000.000000",,"8960814.000000",,,,, +"13844.000000","55.700000","13844.000000","55.700000","13844.000000","55.700000",,,,,,,,,,,,,,"3818.000000","20290.500000","15160.000000","29.000000","20290.500000","20290.500000",,,,,,,,,,,"6038484.000000","7694292.000000","478888.000000","0.000000","68474060.000000","0.000000","89428956.000000",,"3778240.000000","24878240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000",,,,,,,,"4066.000000","17537.000000",,,,,,,,,,,"4028.000000","686.000000","546.000000","649.000000","839.000000","673.000000","843.000000","0.000000","8.000000","0.000000","590.000000","480.000000","546.000000","706.000000","575.000000","640.000000","160.000000","6000.000000",,"8960834.000000",,,,, +"11139.000000","51.465000","11139.000000","51.465000","11139.000000","51.465000",,,,,,,,,,,,,,"13943.000000","28985.000000","13748.000000","10.000000","28985.000000","28985.000000",,,,,,,,,,,"6373040.000000","8259532.000000","478888.000000","0.000000","68487440.000000","0.000000","89428912.000000",,"3778240.000000","24935712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000",,,,,,,,"13487.000000","16791.000000",,,,,,,,,,,"3863.000000","683.000000","519.000000","635.000000","839.000000","620.000000","843.000000","0.000000","0.000000","0.000000","586.000000","454.000000","533.000000","706.000000","565.000000","636.000000","160.000000","6000.000000",,"8960854.000000",,,,, +"13031.000000","54.430000","13031.000000","54.430000","13031.000000","54.430000",,,,,,,,,,,,,,"17739.000000","26951.500000","7538.000000","6.000000","26951.500000","26951.500000",,,,,,,,,,,"6918296.000000","8678964.000000","478888.000000","0.000000","68491668.000000","0.000000","89428912.000000",,"3778240.000000","24929944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000",,,,,,,,"18210.000000","10415.000000",,,,,,,,,,,"3806.000000","681.000000","517.000000","629.000000","839.000000","580.000000","843.000000","0.000000","0.000000","0.000000","583.000000","449.000000","529.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960874.000000",,,,, +"11749.000000","52.420000","11749.000000","52.420000","11749.000000","52.420000",,,,,,,,,,,,,,"14342.000000","28587.000000","13389.000000","25.000000","28587.000000","28587.000000",,,,,,,,,,,"7002180.000000","8657992.000000","478888.000000","0.000000","68472972.000000","0.000000","89428912.000000",,"3778240.000000","24985000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000",,,,,,,,"14543.000000","14900.000000",,,,,,,,,,,"3841.000000","679.000000","508.000000","619.000000","839.000000","569.000000","843.000000","0.000000","0.000000","0.000000","579.000000","430.000000","518.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960894.000000",,,,, +"14026.000000","55.975000","14026.000000","55.975000","14026.000000","55.975000",,,,,,,,,,,,,,"1244.000000","8996.500000","7161.000000","22.000000","8996.500000","8996.500000",,,,,,,,,,,"6806016.000000","8195876.000000","478888.000000","0.000000","68459076.000000","0.000000","89429112.000000",,"3778240.000000","25016252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000",,,,,,,,"2169.000000","7418.000000",,,,,,,,,,,"4052.000000","676.000000","541.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","577.000000","459.000000","509.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960914.000000",,,,, +"13959.000000","55.865000","13959.000000","55.865000","13959.000000","55.865000",,,,,,,,,,,,,,"622.000000","7405.500000","6595.000000","6.000000","7405.500000","7405.500000",,,,,,,,,,,"6281736.000000","7566728.000000","478888.000000","0.000000","68445972.000000","0.000000","89429112.000000",,"3778240.000000","25029196.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000",,,,,,,,"713.000000","6880.000000",,,,,,,,,,,"4040.000000","677.000000","563.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","576.000000","470.000000","506.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960934.000000",,,,, +"15191.000000","57.795000","15191.000000","57.795000","15191.000000","57.795000",,,,,,,,,,,,,,"10423.000000","15823.000000","5399.000000","3.000000","15823.000000","15823.000000",,,,,,,,,,,"6344652.000000","7650616.000000","478888.000000","0.000000","68448712.000000","0.000000","89429112.000000",,"3778240.000000","24990228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000",,,,,,,,"9095.000000",,,,,,,,,,,,"4015.000000","676.000000","585.000000","609.000000","839.000000","714.000000","843.000000","0.000000","0.000000","0.000000","575.000000","503.000000","507.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960954.000000",,,,, +"14373.000000","56.510000","14373.000000","56.510000","14373.000000","56.510000",,,,,,,,,,,,,,"22245.000000","29379.000000","6197.000000","14.000000","29379.000000","29379.000000",,,,,,,,,,,"5947144.000000","7420868.000000","478888.000000","0.000000","68438172.000000","0.000000","89429112.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000",,,,,,,,"23902.000000","6413.000000",,,,,,,,,,,"3935.000000","674.000000","587.000000","602.000000","839.000000","714.000000","799.000000","0.000000","0.000000","0.000000","573.000000","517.000000","505.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960974.000000",,,,, +"20617.000000","66.290000","20617.000000","66.290000","20617.000000","66.290000",,,,,,,,,,,,,,"17519.000000","33595.500000","16012.000000","18.000000","33595.500000","33595.500000",,,,,,,,,,,"6072972.000000","7693504.000000","478888.000000","0.000000","68433336.000000","0.000000","89429112.000000",,"3778240.000000","25020440.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000",,,,,,,,"17284.000000","16375.000000",,,,,,,,,,,"4433.000000","677.000000","771.000000","627.000000","843.000000","1649.000000","855.000000","0.000000","0.000000","0.000000","573.000000","594.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8960994.000000",,,,, +"15667.000000","58.545000","15667.000000","58.545000","15667.000000","58.545000",,,,,,,,,,,,,,"9565.000000","25514.500000","10927.000000","14.000000","25514.500000","25514.500000",,,,,,,,,,,"6156816.000000","7630552.000000","478888.000000","0.000000","68454000.000000","0.000000","89429076.000000",,"3778240.000000","24995436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000",,,,,,,,"10692.000000","19844.000000",,,,,,,,,,,"4021.000000","679.000000","825.000000","636.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","573.000000","605.000000","518.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961014.000000",,,,, +"15146.000000","57.725000","15146.000000","57.725000","15146.000000","57.725000",,,,,,,,,,,,,,"49.000000","6901.000000","4425.000000","26.000000","6901.000000","6901.000000",,,,,,,,,,,"6408468.000000","8024628.000000","478888.000000","0.000000","68445000.000000","0.000000","89429076.000000",,"3778240.000000","25004856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000",,,,,,,,"234.000000","9093.000000",,,,,,,,,,,"3965.000000","681.000000","859.000000","638.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","574.000000","611.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961034.000000",,,,, +"17198.000000","60.955000","17198.000000","60.955000","17198.000000","60.955000",,,,,,,,,,,,,,"74.000000","6900.000000","6677.000000","10.000000","6900.000000","6900.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68473348.000000","0.000000","89429076.000000",,"3778240.000000","24980628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000",,,,,,,,"540.000000","6509.000000",,,,,,,,,,,"4144.000000","682.000000","697.000000","628.000000","855.000000","1052.000000","852.000000","0.000000","0.000000","0.000000","574.000000","563.000000","516.000000","701.000000","699.000000","664.000000","160.000000","6000.000000",,"8961054.000000",,,,, +"16364.000000","59.640000","16364.000000","59.640000","16364.000000","59.640000",,,,,,,,,,,,,,"144.000000","5734.000000","5444.000000","7.000000","5734.000000","5734.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68461532.000000","0.000000","89429076.000000",,"3778240.000000","24984448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000",,,,,,,,"228.000000","5651.000000",,,,,,,,,,,"4364.000000","680.000000","672.000000","627.000000","855.000000","852.000000","852.000000","0.000000","0.000000","0.000000","573.000000","573.000000","518.000000","701.000000","699.000000","662.000000","160.000000","6000.000000",,"8961074.000000",,,,, +"17080.000000","60.760000","17080.000000","60.760000","17080.000000","60.760000",,,,,,,,,,,,,,"60.000000","6209.000000","5738.000000","38.000000","6209.000000","6209.000000",,,,,,,,,,,"6616308.000000","8477436.000000","478888.000000","0.000000","68461100.000000","0.000000","89429076.000000",,"3778240.000000","24922628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000",,,,,,,,"180.000000","6438.000000",,,,,,,,,,,"4089.000000","680.000000","718.000000","645.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","571.000000","602.000000","529.000000","696.000000","699.000000","662.000000","160.000000","6000.000000",,"8961094.000000",,,,, +"14338.000000","56.460000","14338.000000","56.460000","14338.000000","56.460000",,,,,,,,,,,,,,"127.000000","4596.000000","4499.000000","11.000000","4596.000000","4596.000000",,,,,,,,,,,"6275972.000000","8143776.000000","478888.000000","0.000000","68447552.000000","0.000000","89429076.000000",,"3778240.000000","24934904.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000",,,,,,,,"154.000000","4412.000000",,,,,,,,,,,"4080.000000","677.000000","686.000000","647.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","567.000000","568.000000","529.000000","686.000000","647.000000","662.000000","160.000000","6000.000000",,"8961114.000000",,,,, +"13650.000000","55.375000","13650.000000","55.375000","13650.000000","55.375000",,,,,,,,,,,,,,"14569.000000","19336.000000","5250.000000","8.000000","19336.000000","19336.000000",,,,,,,,,,,"6275972.000000","8174660.000000","478888.000000","0.000000","68434736.000000","0.000000","89429076.000000",,"3778240.000000","24963428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000",,,,,,,,"13084.000000","5767.000000",,,,,,,,,,,"4088.000000","675.000000","671.000000","652.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","565.000000","557.000000","534.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961134.000000",,,,, +"11267.000000","51.630000","11267.000000","51.630000","11267.000000","51.630000",,,,,,,,,,,,,,"20366.000000","25325.000000","4206.000000","4.000000","25325.000000","25325.000000",,,,,,,,,,,"6569572.000000","8636032.000000","478888.000000","0.000000","68420732.000000","0.000000","89429076.000000",,"3778240.000000","24879836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000",,,,,,,,"22015.000000","4061.000000",,,,,,,,,,,"3795.000000","669.000000","540.000000","649.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","560.000000","464.000000","531.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961154.000000",,,,, +"10200.000000","49.965000","10200.000000","49.965000","10200.000000","49.965000",,,,,,,,,,,,,,"18164.000000","32954.000000","14689.000000","9.000000","32954.000000","32954.000000",,,,,,,,,,,"6234024.000000","8233192.000000","478888.000000","0.000000","68422364.000000","0.000000","89429076.000000",,"3778240.000000","24878364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000",,,,,,,,"17585.000000","15469.000000",,,,,,,,,,,"3866.000000","664.000000","496.000000","642.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","555.000000","425.000000","524.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961174.000000",,,,, +"10460.000000","50.375000","10460.000000","50.375000","10460.000000","50.375000",,,,,,,,,,,,,,"7903.000000","17929.000000","9799.000000","30.000000","17929.000000","17929.000000",,,,,,,,,,,"6192088.000000","8212228.000000","478888.000000","0.000000","68425120.000000","0.000000","89429084.000000",,"3778240.000000","24963024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000",,,,,,,,"8776.000000","9379.000000",,,,,,,,,,,"3813.000000","658.000000","420.000000","634.000000","855.000000","644.000000","892.000000","0.000000","0.000000","0.000000","550.000000","356.000000","519.000000","684.000000","474.000000","682.000000","160.000000","6000.000000",,"8961194.000000",,,,, +"9221.000000","48.415000","9221.000000","48.415000","9221.000000","48.415000",,,,,,,,,,,,,,"25855.000000","54017.000000","27985.000000","21.000000","54017.000000","54017.000000",,,,,,,,,,,"6737136.000000","8547568.000000","478888.000000","0.000000","68400916.000000","0.000000","89428880.000000",,"3778240.000000","24949236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000",,,,,,,,"26318.000000","27874.000000",,,,,,,,,,,"3682.000000","651.000000","405.000000","622.000000","855.000000","509.000000","892.000000","0.000000","0.000000","0.000000","544.000000","347.000000","508.000000","684.000000","429.000000","682.000000","160.000000","6000.000000",,"8961214.000000",,,,, +"10276.000000","50.085000","10276.000000","50.085000","10276.000000","50.085000",,,,,,,,,,,,,,"23510.000000","56052.000000","32542.000000","46.000000","56052.000000","56052.000000",,,,,,,,,,,"6903972.000000","8993712.000000","478888.000000","0.000000","68424412.000000","0.000000","89428880.000000",,"3778240.000000","24925668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000",,,,,,,,,"33520.000000",,,,,,,,,,,"3733.000000","648.000000","410.000000","612.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","541.000000","344.000000","499.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961234.000000",,,,, +"9437.000000","48.760000","9437.000000","48.760000","9437.000000","48.760000",,,,,,,,,,,,,,"1718.000000","7001.000000","4025.000000","11.000000","7001.000000","7001.000000",,,,,,,,,,,"6924944.000000","8890000.000000","478888.000000","0.000000","68410544.000000","0.000000","89428880.000000",,"3778240.000000","25015960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000",,,,,,,,"2423.000000","5836.000000",,,,,,,,,,,"3637.000000","643.000000","409.000000","599.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","536.000000","342.000000","487.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961254.000000",,,,, +"12247.000000","53.165000","12247.000000","53.165000","12247.000000","53.165000",,,,,,,,,,,,,,"227.000000","8992.000000","7595.000000","8.000000","8992.000000","8992.000000",,,,,,,,,,,"6883180.000000","8848228.000000","478888.000000","0.000000","68401376.000000","0.000000","89429052.000000",,"3778240.000000","24982300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000",,,,,,,,"656.000000","9505.000000",,,,,,,,,,,"3771.000000","639.000000","471.000000","599.000000","855.000000","793.000000","892.000000","0.000000","0.000000","0.000000","531.000000","373.000000","479.000000","684.000000","573.000000","682.000000","160.000000","6000.000000",,"8961274.000000",,,,, +"11975.000000","52.735000","11975.000000","52.735000","11975.000000","52.735000",,,,,,,,,,,,,,"143.000000","17900.500000","16196.000000","52.000000","17900.500000","17900.500000",,,,,,,,,,,"6799292.000000","8324876.000000","478888.000000","0.000000","68391708.000000","0.000000","89429052.000000",,"3778240.000000","24993660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000",,,,,,,,"2303.000000","17158.000000",,,,,,,,,,,"3840.000000","635.000000","485.000000","555.000000","855.000000","793.000000","793.000000","0.000000","0.000000","0.000000","527.000000","398.000000","460.000000","682.000000","573.000000","644.000000","160.000000","6000.000000",,"8961294.000000",,,,, +"12465.000000","53.500000","12465.000000","53.500000","12465.000000","53.500000",,,,,,,,,,,,,,"87.000000","5461.500000","5426.000000","46.000000","5461.500000","5461.500000",,,,,,,,,,,"6911708.000000","8437288.000000","478888.000000","0.000000","68392648.000000","0.000000","89436608.000000",,"3778240.000000","24998892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000",,,,,,,,"178.000000","5231.000000",,,,,,,,,,,"3843.000000","627.000000","510.000000","536.000000","852.000000","793.000000","774.000000","0.000000","7.000000","0.000000","521.000000","421.000000","450.000000","674.000000","573.000000","635.000000","160.000000","6000.000000",,"8961314.000000",,,,, +"13378.000000","54.930000","13378.000000","54.930000","13378.000000","54.930000",,,,,,,,,,,,,,"77.000000","3794.500000","3453.000000","33.000000","3794.500000","3794.500000",,,,,,,,,,,"6618012.000000","8143596.000000","478888.000000","0.000000","68396768.000000","0.000000","89436516.000000",,"3778240.000000","25043612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000",,,,,,,,"133.000000","3925.000000",,,,,,,,,,,"3915.000000","617.000000","500.000000","527.000000","806.000000","600.000000","774.000000","0.000000","7.000000","0.000000","514.000000","438.000000","445.000000","656.000000","506.000000","635.000000","160.000000","6000.000000",,"8961334.000000",,,,, +"14055.000000","55.990000","14055.000000","55.990000","14055.000000","55.990000",,,,,,,,,,,,,,"108.000000","8475.000000","8030.000000","15.000000","8475.000000","8475.000000",,,,,,,,,,,"6219556.000000","7710812.000000","478888.000000","0.000000","68395340.000000","0.000000","89436516.000000",,"3778240.000000","25050556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000",,,,,,,,"582.000000","8229.000000",,,,,,,,,,,"3988.000000","615.000000","525.000000","520.000000","806.000000","633.000000","765.000000","0.000000","7.000000","0.000000","512.000000","456.000000","438.000000","656.000000","538.000000","630.000000","160.000000","6000.000000",,"8961354.000000",,,,, +"12909.000000","54.195000","12909.000000","54.195000","12909.000000","54.195000",,,,,,,,,,,,,,"76.000000","5306.500000","5227.000000","9.000000","5306.500000","5306.500000",,,,,,,,,,,"6155520.000000","7708552.000000","478888.000000","0.000000","68396572.000000","0.000000","89436548.000000",,"3778240.000000","25053348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000",,,,,,,,"209.000000","5100.000000",,,,,,,,,,,"3812.000000","607.000000","531.000000","508.000000","793.000000","633.000000","765.000000","0.000000","0.000000","0.000000","508.000000","466.000000","429.000000","647.000000","538.000000","583.000000","160.000000","6000.000000",,"8961374.000000",,,,, +"11021.000000","51.230000","11021.000000","51.230000","11021.000000","51.230000",,,,,,,,,,,,,,"44.000000","4459.000000","4415.000000","6.000000","4459.000000","4459.000000",,,,,,,,,,,"5673192.000000","7813436.000000","478888.000000","0.000000","68382116.000000","0.000000","89436568.000000",,"3778240.000000","25058984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000",,,,,,,,"121.000000",,,,,,,,,,,,"3772.000000","599.000000","495.000000","482.000000","793.000000","633.000000","644.000000","0.000000","0.000000","0.000000","503.000000","443.000000","413.000000","644.000000","538.000000","525.000000","160.000000","6000.000000",,"8961394.000000",,,,, +"11680.000000","52.265000","11680.000000","52.265000","11680.000000","52.265000",,,,,,,,,,,,,,"56.000000","5561.500000","5537.000000","65.000000","5561.500000","5561.500000",,,,,,,,,,,"5783788.000000","8175688.000000","478888.000000","0.000000","68390656.000000","0.000000","89436568.000000",,"3778240.000000","25105408.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000",,,,,,,,"171.000000","5358.000000",,,,,,,,,,,"4008.000000","593.000000","452.000000","473.000000","774.000000","579.000000","644.000000","0.000000","0.000000","0.000000","498.000000","419.000000","408.000000","640.000000","487.000000","515.000000","160.000000","6000.000000",,"8961414.000000",,,,, +"12237.000000","53.140000","12237.000000","53.140000","12237.000000","53.140000",,,,,,,,,,,,,,"123.000000","6875.500000","6623.000000","129.000000","6875.500000","6875.500000",,,,,,,,,,,"5868772.000000","8260672.000000","478888.000000","0.000000","68385152.000000","0.000000","89437664.000000",,"3778240.000000","25061400.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000",,,,,,,,"187.000000","6816.000000",,,,,,,,,,,"3945.000000","588.000000","441.000000","462.000000","774.000000","579.000000","623.000000","0.000000","0.000000","0.000000","493.000000","412.000000","400.000000","636.000000","487.000000","505.000000","160.000000","6000.000000",,"8961434.000000",,,,, +"10626.000000","50.605000","10626.000000","50.605000","10626.000000","50.605000",,,,,,,,,,,,,,"46.000000","4849.000000","4530.000000","68.000000","4849.000000","4849.000000",,,,,,,,,,,"6007060.000000","8000504.000000","478888.000000","0.000000","68362384.000000","0.000000","89429152.000000",,"3778240.000000","24903168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000",,,,,,,,"127.000000","4994.000000",,,,,,,,,,,"4004.000000","581.000000","427.000000","460.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","488.000000","403.000000","401.000000","635.000000","464.000000","505.000000","160.000000","6000.000000",,"8961454.000000",,,,, +"11575.000000","52.080000","11575.000000","52.080000","11575.000000","52.080000",,,,,,,,,,,,,,"48.000000","6997.000000","6565.000000","35.000000","6997.000000","6997.000000",,,,,,,,,,,"6078528.000000","8106304.000000","478888.000000","0.000000","68349660.000000","0.000000","89429152.000000",,"3778240.000000","24913816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000",,,,,,,,"205.000000","7174.000000",,,,,,,,,,,"3919.000000","577.000000","420.000000","458.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","485.000000","399.000000","403.000000","635.000000","458.000000","505.000000","160.000000","6000.000000",,"8961474.000000",,,,, +"10217.000000","49.950000","10217.000000","49.950000","10217.000000","49.950000",,,,,,,,,,,,,,"56.000000","6941.500000","5946.000000","121.000000","6941.500000","6941.500000",,,,,,,,,,,"6119324.000000","8115064.000000","478888.000000","0.000000","68337052.000000","0.000000","89429152.000000",,"3778240.000000","24968836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000",,,,,,,,"239.000000","7640.000000",,,,,,,,,,,"3777.000000","571.000000","406.000000","459.000000","774.000000","486.000000","600.000000","0.000000","0.000000","0.000000","481.000000","385.000000","405.000000","635.000000","450.000000","505.000000","160.000000","6000.000000",,"8961494.000000",,,,, +"10785.000000","50.835000","10785.000000","50.835000","10785.000000","50.835000",,,,,,,,,,,,,,"57.000000","6043.500000","5484.000000","34.000000","6043.500000","6043.500000",,,,,,,,,,,"5699896.000000","7464944.000000","478888.000000","0.000000","68323340.000000","0.000000","89429152.000000",,"3778240.000000","25102636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000",,,,,,,,"175.000000","6369.000000",,,,,,,,,,,"3876.000000","563.000000","402.000000","459.000000","774.000000","453.000000","600.000000","0.000000","0.000000","0.000000","475.000000","382.000000","408.000000","633.000000","419.000000","505.000000","160.000000","6000.000000",,"8961514.000000",,,,, +"10851.000000","50.930000","10851.000000","50.930000","10851.000000","50.930000",,,,,,,,,,,,,,"411.000000","6938.000000","5950.000000","27.000000","6938.000000","6938.000000",,,,,,,,,,,"5518772.000000","7178964.000000","478888.000000","0.000000","68311168.000000","0.000000","89429152.000000",,"3778240.000000","25113336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000",,,,,,,,"561.000000","6953.000000",,,,,,,,,,,"3791.000000","560.000000","413.000000","459.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","472.000000","378.000000","410.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961534.000000",,,,, +"10770.000000","50.810000","10770.000000","50.810000","10770.000000","50.810000",,,,,,,,,,,,,,"91.000000","6921.000000","5576.000000","24.000000","6921.000000","6921.000000",,,,,,,,,,,"5404996.000000","7128108.000000","478888.000000","0.000000","68329580.000000","0.000000","89429000.000000",,"3778240.000000","25150188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000",,,,,,,,"347.000000","7827.000000",,,,,,,,,,,"3772.000000","556.000000","418.000000","461.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","469.000000","378.000000","413.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961554.000000",,,,, +"10438.000000","50.290000","10438.000000","50.290000","10438.000000","50.290000",,,,,,,,,,,,,,"142.000000","13981.500000","13246.000000","29.000000","13981.500000","13981.500000",,,,,,,,,,,"5300084.000000","6960284.000000","478888.000000","0.000000","68323544.000000","0.000000","89428952.000000",,"3778240.000000","25139824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000",,,,,,,,"268.000000","14307.000000",,,,,,,,,,,"3754.000000","549.000000","412.000000","447.000000","768.000000","565.000000","573.000000","0.000000","0.000000","0.000000","464.000000","374.000000","408.000000","633.000000","458.000000","487.000000","160.000000","6000.000000",,"8961574.000000",,,,, +"17217.000000","60.910000","17217.000000","60.910000","17217.000000","60.910000",,,,,,,,,,,,,,"94.000000","10711.000000","10449.000000","34.000000","10711.000000","10711.000000",,,,,,,,,,,"5272440.000000","6988876.000000","478888.000000","0.000000","68328384.000000","0.000000","89428952.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000",,,,,,,,"219.000000","10659.000000",,,,,,,,,,,"4126.000000","549.000000","509.000000","464.000000","774.000000","977.000000","600.000000","0.000000","0.000000","0.000000","465.000000","443.000000","419.000000","635.000000","766.000000","506.000000","160.000000","6000.000000",,"8961594.000000",,,,, +"15256.000000","57.830000","15256.000000","57.830000","15256.000000","57.830000",,,,,,,,,,,,,,"79.000000","10194.500000","9698.000000","42.000000","10194.500000","10194.500000",,,,,,,,,,,"5261380.000000","6957992.000000","478888.000000","0.000000","68320268.000000","0.000000","89428952.000000",,"3778240.000000","25156764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000",,,,,,,,"206.000000","10404.000000",,,,,,,,,,,"3996.000000","551.000000","612.000000","482.000000","793.000000","977.000000","686.000000","0.000000","0.000000","0.000000","465.000000","497.000000","428.000000","635.000000","766.000000","534.000000","160.000000","6000.000000",,"8961614.000000",,,,, +"14354.000000","56.415000","14354.000000","56.415000","14354.000000","56.415000",,,,,,,,,,,,,,"43.000000","5034.000000","5085.000000","8.000000","5034.000000","5034.000000",,,,,,,,,,,"4723744.000000","6391760.000000","478888.000000","0.000000","68308516.000000","0.000000","89429896.000000",,"3778240.000000","25161856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000",,,,,,,,"139.000000","4801.000000",,,,,,,,,,,"3963.000000","552.000000","719.000000","491.000000","793.000000","977.000000","694.000000","0.000000","0.000000","0.000000","464.000000","555.000000","431.000000","635.000000","766.000000","538.000000","160.000000","6000.000000",,"8961634.000000",,,,, +"14148.000000","56.085000","14148.000000","56.085000","14148.000000","56.085000",,,,,,,,,,,,,,"72.000000","6442.500000","6059.000000","5.000000","6442.500000","6442.500000",,,,,,,,,,,"4806892.000000","6286164.000000","478888.000000","0.000000","68297484.000000","0.000000","89429164.000000",,"3778240.000000","25164884.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000",,,,,,,,"514.000000","6239.000000",,,,,,,,,,,"3911.000000","546.000000","655.000000","490.000000","765.000000","881.000000","694.000000","0.000000","0.000000","0.000000","462.000000","514.000000","431.000000","617.000000","617.000000","534.000000","160.000000","6000.000000",,"8961654.000000",,,,, +"16438.000000","59.680000","16438.000000","59.680000","16438.000000","59.680000",,,,,,,,,,,,,,"47.000000","6811.000000","6410.000000","6.000000","6811.000000","6811.000000",,,,,,,,,,,"4745128.000000","6224396.000000","478888.000000","0.000000","68310372.000000","0.000000","89429164.000000",,"3778240.000000","25105640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000",,,,,,,,"151.000000","7014.000000",,,,,,,,,,,"4181.000000","547.000000","648.000000","505.000000","753.000000","753.000000","731.000000","0.000000","0.000000","0.000000","463.000000","532.000000","441.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961674.000000",,,,, +"13816.000000","55.565000","13816.000000","55.565000","13816.000000","55.565000",,,,,,,,,,,,,,"60.000000","6851.000000","6758.000000","6.000000","6851.000000","6851.000000",,,,,,,,,,,"4891856.000000","6350156.000000","478888.000000","0.000000","68297076.000000","0.000000","89429092.000000",,"3778240.000000","25031504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000",,,,,,,,"156.000000","6727.000000",,,,,,,,,,,"4054.000000","549.000000","634.000000","519.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","463.000000","524.000000","447.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961694.000000",,,,, +"12163.000000","52.970000","12163.000000","52.970000","12163.000000","52.970000",,,,,,,,,,,,,,"58.000000","6849.000000","6388.000000","14.000000","6849.000000","6849.000000",,,,,,,,,,,"5394232.000000","6768644.000000","478888.000000","0.000000","68283044.000000","0.000000","89429092.000000",,"3778240.000000","25044752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000",,,,,,,,"175.000000","7075.000000",,,,,,,,,,,"3795.000000","548.000000","622.000000","524.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","462.000000","507.000000","448.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961714.000000",,,,, +"11954.000000","52.650000","11954.000000","52.650000","11954.000000","52.650000",,,,,,,,,,,,,,"101.000000","6733.000000","5921.000000","16.000000","6733.000000","6733.000000",,,,,,,,,,,"5813580.000000","7136136.000000","478888.000000","0.000000","68292920.000000","0.000000","89429008.000000",,"3778240.000000","25104392.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000",,,,,,,,"261.000000","7181.000000",,,,,,,,,,,"3759.000000","547.000000","550.000000","527.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","460.000000","446.000000","448.000000","616.000000","591.000000","613.000000","160.000000","6000.000000",,"8961734.000000",,,,, +"11429.000000","51.820000","11429.000000","51.820000","11429.000000","51.820000",,,,,,,,,,,,,,"78.000000","4938.000000","4154.000000","28.000000","4938.000000","4938.000000",,,,,,,,,,,"5540952.000000","7157104.000000","478888.000000","0.000000","68286288.000000","0.000000","89429008.000000",,"3778240.000000","25086900.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000",,,,,,,,"230.000000","5414.000000",,,,,,,,,,,"3807.000000","547.000000","494.000000","532.000000","765.000000","590.000000","753.000000","0.000000","0.000000","0.000000","461.000000","418.000000","450.000000","616.000000","469.000000","613.000000","160.000000","6000.000000",,"8961754.000000",,,,, +"12151.000000","52.955000","12151.000000","52.955000","12151.000000","52.955000",,,,,,,,,,,,,,"52.000000","5558.500000","5175.000000","95.000000","5558.500000","5558.500000",,,,,,,,,,,"5422744.000000","6990276.000000","478888.000000","0.000000","68292980.000000","0.000000","89429008.000000",,"3778240.000000","25078592.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000",,,,,,,,"157.000000","5733.000000",,,,,,,,,,,"3864.000000","546.000000","490.000000","538.000000","765.000000","576.000000","753.000000","0.000000","0.000000","0.000000","460.000000","421.000000","453.000000","616.000000","495.000000","613.000000","160.000000","6000.000000",,"8961774.000000",,,,, +"13717.000000","55.400000","13717.000000","55.400000","13717.000000","55.400000",,,,,,,,,,,,,,"70.000000","5832.000000","5776.000000","13.000000","5832.000000","5832.000000",,,,,,,,,,,"5348764.000000","7032220.000000","478888.000000","0.000000","68277392.000000","0.000000","89429008.000000",,"3778240.000000","25069720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000",,,,,,,,"178.000000","5640.000000",,,,,,,,,,,"3894.000000","547.000000","514.000000","548.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","439.000000","459.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961794.000000",,,,, +"13393.000000","54.890000","13393.000000","54.890000","13393.000000","54.890000",,,,,,,,,,,,,,"59.000000","6284.500000","5915.000000","20.000000","6284.500000","6284.500000",,,,,,,,,,,"5222788.000000","6927216.000000","478888.000000","0.000000","68269568.000000","0.000000","89428860.000000",,"3778240.000000","25108152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000",,,,,,,,"168.000000","6426.000000",,,,,,,,,,,"4074.000000","547.000000","541.000000","560.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","465.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961814.000000",,,,, +"11555.000000","52.005000","11555.000000","52.005000","11555.000000","52.005000",,,,,,,,,,,,,,"328.000000","4211.500000","3861.000000","30.000000","4211.500000","4211.500000",,,,,,,,,,,"4921708.000000","6821556.000000","478888.000000","0.000000","68255140.000000","0.000000","89429000.000000",,"3778240.000000","25122004.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000",,,,,,,,"118.000000","4115.000000",,,,,,,,,,,"4096.000000","543.000000","518.000000","559.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","458.000000","448.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961835.000000",,,,, +"10549.000000","50.430000","10549.000000","50.430000","10549.000000","50.430000",,,,,,,,,,,,,,"203.000000","4260.500000","3723.000000","4.000000","4260.500000","4260.500000",,,,,,,,,,,"4911800.000000","6821556.000000","478888.000000","0.000000","68250944.000000","0.000000","89429000.000000",,"3778240.000000","25139316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000",,,,,,,,"466.000000","4128.000000",,,,,,,,,,,"3718.000000","541.000000","496.000000","564.000000","768.000000","606.000000","784.000000","0.000000","0.000000","0.000000","456.000000","432.000000","469.000000","613.000000","542.000000","613.000000","160.000000","6000.000000",,"8961854.000000",,,,, +"15120.000000","57.585000","15120.000000","57.585000","15120.000000","57.585000",,,,,,,,,,,,,,"91.000000","8647.500000","8528.000000","8.000000","8647.500000","8647.500000",,,,,,,,,,,"5247348.000000","6947388.000000","478888.000000","0.000000","68242072.000000","0.000000","89429000.000000",,"3778240.000000","25170684.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000",,,,,,,,"285.000000","8390.000000",,,,,,,,,,,"3908.000000","544.000000","541.000000","586.000000","784.000000","824.000000","795.000000","0.000000","0.000000","0.000000","456.000000","442.000000","481.000000","616.000000","637.000000","616.000000","160.000000","6000.000000",,"8961874.000000",,,,, +"11168.000000","51.395000","11168.000000","51.395000","11168.000000","51.395000",,,,,,,,,,,,,,"135.000000","8788.000000","8418.000000","22.000000","8788.000000","8788.000000",,,,,,,,,,,"5115780.000000","6466920.000000","478888.000000","0.000000","68249708.000000","0.000000","89429000.000000",,"3778240.000000","25163700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000",,,,,,,,"169.000000","8853.000000",,,,,,,,,,,"3877.000000","528.000000","538.000000","564.000000","765.000000","824.000000","784.000000","0.000000","0.000000","0.000000","449.000000","447.000000","467.000000","603.000000","637.000000","606.000000","160.000000","6000.000000",,"8961894.000000",,,,, +"13341.000000","54.800000","13341.000000","54.800000","13341.000000","54.800000",,,,,,,,,,,,,,"111.000000","5116.500000","5070.000000","26.000000","5116.500000","5116.500000",,,,,,,,,,,"5073836.000000","6445948.000000","478888.000000","0.000000","68256536.000000","0.000000","89429000.000000",,"3778240.000000","25091876.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000",,,,,,,,"165.000000","4886.000000",,,,,,,,,,,"3801.000000","523.000000","546.000000","551.000000","753.000000","824.000000","753.000000","0.000000","0.000000","0.000000","446.000000","453.000000","460.000000","597.000000","637.000000","591.000000","160.000000","6000.000000",,"8961914.000000",,,,, +"12151.000000","52.935000","12151.000000","52.935000","12151.000000","52.935000",,,,,,,,,,,,,,"44.000000","5187.000000","4969.000000","30.000000","5187.000000","5187.000000",,,,,,,,,,,"4969224.000000","6194536.000000","478888.000000","0.000000","68251412.000000","0.000000","89429248.000000",,"3778240.000000","25131724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000",,,,,,,,"124.000000","5235.000000",,,,,,,,,,,"3852.000000","519.000000","485.000000","539.000000","731.000000","601.000000","753.000000","0.000000","0.000000","0.000000","444.000000","424.000000","455.000000","591.000000","500.000000","591.000000","160.000000","6000.000000",,"8961934.000000",,,,, +"13564.000000","55.150000","13564.000000","55.150000","13564.000000","55.150000",,,,,,,,,,,,,,"89.000000","7838.000000","7097.000000","12.000000","7838.000000","7838.000000",,,,,,,,,,,"5396032.000000","6495520.000000","478888.000000","0.000000","68256308.000000","0.000000","89429012.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000",,,,,,,,"487.000000","8002.000000",,,,,,,,,,,"3791.000000","516.000000","518.000000","537.000000","723.000000","601.000000","753.000000","0.000000","0.000000","0.000000","441.000000","446.000000","454.000000","583.000000","498.000000","591.000000","160.000000","6000.000000",,"8961954.000000",,,,, +"12987.000000","54.240000","12987.000000","54.240000","12987.000000","54.240000",,,,,,,,,,,,,,"698.000000","9536.500000","7676.000000","5.000000","9536.500000","9536.500000",,,,,,,,,,,"5521864.000000","6800184.000000","478888.000000","0.000000","68243504.000000","0.000000","89429012.000000",,"3778240.000000","25088872.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000",,,,,,,,"1071.000000","9626.000000",,,,,,,,,,,"3847.000000","514.000000","535.000000","528.000000","723.000000","607.000000","607.000000","0.000000","0.000000","0.000000","438.000000","459.000000","446.000000","554.000000","505.000000","516.000000","160.000000","6000.000000",,"8961974.000000",,,,, +"12345.000000","53.245000","12345.000000","53.245000","12345.000000","53.245000",,,,,,,,,,,,,,"62.000000","5982.500000","5751.000000","6.000000","5982.500000","5982.500000",,,,,,,,,,,"4913836.000000","6443808.000000","478888.000000","0.000000","68262384.000000","0.000000","89429152.000000",,"3778240.000000","25080504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000",,,,,,,,"187.000000","5964.000000",,,,,,,,,,,"3760.000000","507.000000","532.000000","519.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","434.000000","453.000000","440.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8961994.000000",,,,, +"11180.000000","51.420000","11180.000000","51.420000","11180.000000","51.420000",,,,,,,,,,,,,,"49.000000","5273.500000","4930.000000","2.000000","5273.500000","5273.500000",,,,,,,,,,,"4667872.000000","6316988.000000","478888.000000","0.000000","68266012.000000","0.000000","89429104.000000",,"3778240.000000","25075136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000",,,,,,,,"112.000000","5455.000000",,,,,,,,,,,"3944.000000","503.000000","503.000000","513.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","432.000000","430.000000","438.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8962014.000000",,,,, +"12072.000000","52.815000","12072.000000","52.815000","12072.000000","52.815000",,,,,,,,,,,,,,"38.000000","6997.000000","5571.000000","3.000000","6997.000000","6997.000000",,,,,,,,,,,"4604960.000000","6137004.000000","478888.000000","0.000000","68254152.000000","0.000000","89429104.000000",,"3778240.000000","25011436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000",,,,,,,,"2804.000000","5580.000000",,,,,,,,,,,"3845.000000","501.000000","481.000000","514.000000","667.000000","563.000000","606.000000","0.000000","0.000000","0.000000","429.000000","417.000000","440.000000","518.000000","487.000000","505.000000","160.000000","6000.000000",,"8962034.000000",,,,, +"12359.000000","53.260000","12359.000000","53.260000","12359.000000","53.260000",,,,,,,,,,,,,,"181.000000","7008.000000","6826.000000","3.000000","7008.000000","7008.000000",,,,,,,,,,,"5003232.000000","6493336.000000","478888.000000","0.000000","68242252.000000","0.000000","89428920.000000",,"3778240.000000","25008832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000",,,,,,,,"5560.000000",,,,,,,,,,,,"3929.000000","502.000000","476.000000","515.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","418.000000","441.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962054.000000",,,,, +"10899.000000","50.985000","10899.000000","50.985000","10899.000000","50.985000",,,,,,,,,,,,,,"51.000000","6882.000000","5312.000000","53.000000","6882.000000","6882.000000",,,,,,,,,,,"5191912.000000","6619108.000000","478888.000000","0.000000","68272596.000000","0.000000","89428860.000000",,"3778240.000000","25001632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000",,,,,,,,"2783.000000","5616.000000",,,,,,,,,,,"3784.000000","502.000000","473.000000","510.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","417.000000","438.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962074.000000",,,,, +"12069.000000","52.820000","12069.000000","52.820000","12069.000000","52.820000",,,,,,,,,,,,,,"49.000000","6256.000000","6022.000000","11.000000","6256.000000","6256.000000",,,,,,,,,,,"5094924.000000","6578568.000000","478888.000000","0.000000","68277556.000000","0.000000","89429112.000000",,"3778240.000000","24998320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000",,,,,,,,"161.000000","6278.000000",,,,,,,,,,,"3888.000000","505.000000","478.000000","507.000000","667.000000","603.000000","603.000000","0.000000","0.000000","0.000000","434.000000","423.000000","437.000000","518.000000","507.000000","506.000000","160.000000","6000.000000",,"8962094.000000",,,,, +"10785.000000","50.805000","10785.000000","50.805000","10785.000000","50.805000",,,,,,,,,,,,,,"82.000000","8109.000000","7963.000000","190.000000","8109.000000","8109.000000",,,,,,,,,,,"5073952.000000","6725364.000000","478888.000000","0.000000","68266380.000000","0.000000","89429112.000000",,"3778240.000000","25106736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000",,,,,,,,"200.000000","7971.000000",,,,,,,,,,,"3923.000000","505.000000","441.000000","495.000000","667.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","397.000000","427.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962114.000000",,,,, +"10809.000000","50.845000","10809.000000","50.845000","10809.000000","50.845000",,,,,,,,,,,,,,"55.000000","5568.500000","5230.000000","34.000000","5568.500000","5568.500000",,,,,,,,,,,"4739348.000000","6411932.000000","478888.000000","0.000000","68277576.000000","0.000000","89434064.000000",,"3778240.000000","25097432.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000",,,,,,,,"169.000000","5682.000000",,,,,,,,,,,"3797.000000","504.000000","439.000000","494.000000","656.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","391.000000","426.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962134.000000",,,,, +"10246.000000","49.965000","10246.000000","49.965000","10246.000000","49.965000",,,,,,,,,,,,,,"343.000000","4539.500000","4272.000000","64.000000","4539.500000","4539.500000",,,,,,,,,,,"4669760.000000","6360144.000000","478888.000000","0.000000","68277524.000000","0.000000","89443808.000000",,"3778240.000000","25111424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000",,,,,,,,"406.000000","4057.000000",,,,,,,,,,,"3688.000000","504.000000","399.000000","488.000000","656.000000","515.000000","601.000000","0.000000","0.000000","0.000000","435.000000","361.000000","422.000000","518.000000","449.000000","505.000000","160.000000","6000.000000",,"8962154.000000",,,,, +"14508.000000","56.640000","14508.000000","56.640000","14508.000000","56.640000",,,,,,,,,,,,,,"65.000000","7258.000000","6842.000000","30.000000","7258.000000","7258.000000",,,,,,,,,,,"4522960.000000","5919744.000000","478888.000000","0.000000","68276188.000000","0.000000","89443808.000000",,"3778240.000000","25110068.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000",,,,,,,,"181.000000","7428.000000",,,,,,,,,,,"3889.000000","505.000000","475.000000","482.000000","656.000000","863.000000","599.000000","0.000000","0.000000","0.000000","437.000000","418.000000","422.000000","518.000000","688.000000","500.000000","160.000000","6000.000000",,"8962174.000000",,,,, +"16375.000000","59.565000","16375.000000","59.565000","16375.000000","59.565000",,,,,,,,,,,,,,"55.000000","7927.000000","7812.000000","7.000000","7927.000000","7927.000000",,,,,,,,,,,"4440360.000000","6110168.000000","478888.000000","0.000000","68274216.000000","0.000000","89451504.000000",,"3778240.000000","25204356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000",,,,,,,,"179.000000","7806.000000",,,,,,,,,,,"4104.000000","512.000000","608.000000","508.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","440.000000","487.000000","434.000000","538.000000","709.000000","507.000000","160.000000","6000.000000",,"8962194.000000",,,,, +"13316.000000","54.785000","13316.000000","54.785000","13316.000000","54.785000",,,,,,,,,,,,,,"261.000000","8756.500000","6792.000000","31.000000","8756.500000","8756.500000",,,,,,,,,,,"4866944.000000","6475120.000000","478888.000000","0.000000","68300212.000000","0.000000","89488184.000000",,"3778240.000000","25207012.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000",,,,,,,,"1493.000000","8965.000000",,,,,,,,,,,"3982.000000","514.000000","653.000000","509.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","442.000000","527.000000","437.000000","538.000000","709.000000","524.000000","160.000000","6000.000000",,"8962214.000000",,,,, +"14104.000000","56.015000","14104.000000","56.015000","14104.000000","56.015000",,,,,,,,,,,,,,"114.000000","6854.500000","6093.000000","3.000000","6854.500000","6854.500000",,,,,,,,,,,"5307348.000000","6831644.000000","478888.000000","0.000000","68292320.000000","0.000000","89488184.000000",,"3778240.000000","25213964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000",,,,,,,,"219.000000","7283.000000",,,,,,,,,,,"3985.000000","515.000000","657.000000","516.000000","703.000000","1124.000000","633.000000","0.000000","0.000000","0.000000","442.000000","516.000000","441.000000","542.000000","709.000000","525.000000","160.000000","6000.000000",,"8962234.000000",,,,, +"14397.000000","56.470000","14397.000000","56.470000","14397.000000","56.470000",,,,,,,,,,,,,,"51.000000","7541.500000","7204.000000","5.000000","7541.500000","7541.500000",,,,,,,,,,,"5139572.000000","6873588.000000","478888.000000","0.000000","68284004.000000","0.000000","89488184.000000",,"3778240.000000","25217692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000",,,,,,,,"508.000000","7319.000000",,,,,,,,,,,"3845.000000","515.000000","563.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","442.000000","485.000000","442.000000","542.000000","556.000000","536.000000","160.000000","6000.000000",,"8962254.000000",,,,, +"14179.000000","56.135000","14179.000000","56.135000","14179.000000","56.135000",,,,,,,,,,,,,,"1047.000000","6638.000000","5384.000000","4.000000","6638.000000","6638.000000",,,,,,,,,,,"5062308.000000","7020940.000000","478888.000000","0.000000","68293804.000000","0.000000","89488184.000000",,"3778240.000000","25235524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000",,,,,,,,"1188.000000","5655.000000",,,,,,,,,,,"4074.000000","517.000000","576.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","444.000000","496.000000","445.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962274.000000",,,,, +"12487.000000","53.485000","12487.000000","53.485000","12487.000000","53.485000",,,,,,,,,,,,,,"1601.000000","8434.000000","6682.000000","4.000000","8434.000000","8434.000000",,,,,,,,,,,"4936476.000000","7083848.000000","478888.000000","0.000000","68295888.000000","0.000000","89488184.000000",,"3778240.000000","25211388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000",,,,,,,,"1725.000000","6859.000000",,,,,,,,,,,"3940.000000","519.000000","548.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","445.000000","482.000000","446.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962294.000000",,,,, +"10970.000000","51.105000","10970.000000","51.105000","10970.000000","51.105000",,,,,,,,,,,,,,"56.000000","6236.500000","6020.000000","4.000000","6236.500000","6236.500000",,,,,,,,,,,"4978376.000000","6853120.000000","478888.000000","0.000000","68299296.000000","0.000000","89488136.000000",,"3778240.000000","25206076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000",,,,,,,,"170.000000","6227.000000",,,,,,,,,,,"3736.000000","519.000000","512.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","444.000000","455.000000","447.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962314.000000",,,,, +"10166.000000","49.840000","10166.000000","49.840000","10166.000000","49.840000",,,,,,,,,,,,,,"51.000000","5111.500000","4886.000000","6.000000","5111.500000","5111.500000",,,,,,,,,,,"4747472.000000","6299812.000000","478888.000000","0.000000","68282376.000000","0.000000","89484636.000000",,"3778240.000000","25177120.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000",,,,,,,,"147.000000","5139.000000",,,,,,,,,,,"3775.000000","518.000000","464.000000","514.000000","703.000000","601.000000","633.000000","0.000000","0.000000","0.000000","443.000000","401.000000","442.000000","549.000000","516.000000","549.000000","160.000000","6000.000000",,"8962334.000000",,,,, +"10004.000000","49.590000","10004.000000","49.590000","10004.000000","49.590000",,,,,,,,,,,,,,"36.000000","4308.000000","4090.000000","2.000000","4308.000000","4308.000000",,,,,,,,,,,"4369984.000000","5796488.000000","478888.000000","0.000000","68284036.000000","0.000000","89484636.000000",,"3778240.000000","25084596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000",,,,,,,,"125.000000","4363.000000",,,,,,,,,,,"3740.000000","519.000000","422.000000","509.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","442.000000","363.000000","435.000000","549.000000","437.000000","549.000000","160.000000","6000.000000",,"8962354.000000",,,,, +"9902.000000","49.410000","9902.000000","49.410000","9902.000000","49.410000",,,,,,,,,,,,,,"47.000000","3860.000000","3645.000000","43.000000","3860.000000","3860.000000",,,,,,,,,,,"4489756.000000","5915436.000000","478888.000000","0.000000","68243272.000000","0.000000","89456948.000000",,"3778240.000000","25096880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000",,,,,,,,"137.000000","3890.000000",,,,,,,,,,,"3799.000000","518.000000","410.000000","506.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","441.000000","350.000000","433.000000","549.000000","432.000000","549.000000","160.000000","6000.000000",,"8962374.000000",,,,, +"11067.000000","51.225000","11067.000000","51.225000","11067.000000","51.225000",,,,,,,,,,,,,,"129.000000","4789.000000","4641.000000","3.000000","4789.000000","4789.000000",,,,,,,,,,,"4944268.000000","6369948.000000","478888.000000","0.000000","68229968.000000","0.000000","89456948.000000",,"3778240.000000","25185764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000",,,,,,,,"124.000000","4684.000000",,,,,,,,,,,"3944.000000","519.000000","413.000000","501.000000","703.000000","511.000000","633.000000","0.000000","0.000000","0.000000","442.000000","365.000000","430.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962394.000000",,,,, +"10953.000000","51.040000","10953.000000","51.040000","10953.000000","51.040000",,,,,,,,,,,,,,"53.000000","5608.000000","5405.000000","16.000000","5608.000000","5608.000000",,,,,,,,,,,"5049124.000000","6475092.000000","478888.000000","0.000000","68214524.000000","0.000000","89456948.000000",,"3778240.000000","25269452.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000",,,,,,,,"140.000000","5618.000000",,,,,,,,,,,"3898.000000","519.000000","413.000000","503.000000","703.000000","510.000000","633.000000","0.000000","0.000000","0.000000","442.000000","374.000000","431.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962414.000000",,,,, +"11092.000000","51.255000","11092.000000","51.255000","11092.000000","51.255000",,,,,,,,,,,,,,"65.000000","7863.000000","6799.000000","3.000000","7863.000000","7863.000000",,,,,,,,,,,"5216848.000000","6831552.000000","478888.000000","0.000000","68200444.000000","0.000000","89456900.000000",,"3778240.000000","25282944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000",,,,,,,,"277.000000","8585.000000",,,,,,,,,,,"3854.000000","519.000000","429.000000","505.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","432.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962434.000000",,,,, +"10776.000000","50.760000","10776.000000","50.760000","10776.000000","50.760000",,,,,,,,,,,,,,"334.000000","6444.000000","5325.000000","3.000000","6444.000000","6444.000000",,,,,,,,,,,"5119532.000000","6468856.000000","478888.000000","0.000000","68201584.000000","0.000000","89457196.000000",,"3778240.000000","25265084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000",,,,,,,,"531.000000","6696.000000",,,,,,,,,,,"3727.000000","519.000000","423.000000","506.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","441.000000","374.000000","433.000000","549.000000","460.000000","549.000000","160.000000","6000.000000",,"8962454.000000",,,,, +"11008.000000","51.115000","11008.000000","51.115000","11008.000000","51.115000",,,,,,,,,,,,,,"46.000000","6576.000000","6386.000000","26.000000","6576.000000","6576.000000",,,,,,,,,,,"4972740.000000","6447596.000000","478888.000000","0.000000","68196704.000000","0.000000","89457196.000000",,"3778240.000000","25269348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000",,,,,,,,"143.000000","6576.000000",,,,,,,,,,,"3850.000000","521.000000","433.000000","495.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","424.000000","549.000000","459.000000","545.000000","160.000000","6000.000000",,"8962474.000000",,,,, +"13935.000000","55.715000","13935.000000","55.715000","13935.000000","55.715000",,,,,,,,,,,,,,"60.000000","7997.000000","7783.000000","14.000000","7997.000000","7997.000000",,,,,,,,,,,"4658168.000000","5839424.000000","478884.000000","0.000000","68211040.000000","0.000000","89457200.000000",,"3778240.000000","25274372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000",,,,,,,,"192.000000","7958.000000",,,,,,,,,,,"4051.000000","517.000000","480.000000","479.000000","694.000000","707.000000","633.000000","0.000000","0.000000","0.000000","440.000000","423.000000","419.000000","549.000000","573.000000","545.000000","160.000000","6000.000000",,"8962494.000000",,,,, +"12109.000000","52.840000","12109.000000","52.840000","12109.000000","52.840000",,,,,,,,,,,,,,"98.000000","3494.000000","3308.000000","20.000000","3494.000000","3494.000000",,,,,,,,,,,"4539204.000000","5866872.000000","478884.000000","0.000000","68199608.000000","0.000000","89457200.000000",,"3778240.000000","25302000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000",,,,,,,,"101.000000","3481.000000",,,,,,,,,,,"3842.000000","511.000000","489.000000","473.000000","635.000000","707.000000","633.000000","0.000000","0.000000","0.000000","437.000000","434.000000","414.000000","545.000000","573.000000","545.000000","160.000000","6000.000000",,"8962514.000000",,,,, +"12449.000000","53.430000","12449.000000","53.430000","12449.000000","53.430000",,,,,,,,,,,,,,"559.000000","13424.000000","8656.000000","9.000000","13424.000000","13424.000000",,,,,,,,,,,"4392396.000000","5615220.000000","478884.000000","0.000000","68302196.000000","0.000000","89503924.000000",,"3778240.000000","25302756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000",,,,,,,,"8688.000000","8945.000000",,,,,,,,,,,"3955.000000","507.000000","507.000000","465.000000","633.000000","707.000000","603.000000","0.000000","0.000000","0.000000","435.000000","446.000000","410.000000","542.000000","573.000000","536.000000","160.000000","6000.000000",,"8962534.000000",,,,, +"14909.000000","57.460000","14909.000000","57.460000","14909.000000","57.460000",,,,,,,,,,,,,,"138.000000","33119.000000","24738.000000","15.000000","33119.000000","33119.000000",,,,,,,,,,,"4790608.000000","5887600.000000","478884.000000","0.000000","68658380.000000","0.000000","89846920.000000",,"3778240.000000","25268652.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000",,,,,,,,"14753.000000","26608.000000",,,,,,,,,,,"3994.000000","509.000000","525.000000","471.000000","635.000000","748.000000","633.000000","0.000000","0.000000","0.000000","436.000000","448.000000","412.000000","542.000000","538.000000","538.000000","160.000000","6000.000000",,"8962554.000000",,,,, +"14170.000000","56.495000","14170.000000","56.495000","14170.000000","56.495000",,,,,,,,,,,,,,"194.000000","28579.000000","22406.000000","11.000000","28579.000000","28579.000000",,,,,,,,,,,"4902716.000000","6538100.000000","478884.000000","0.000000","69051420.000000","0.000000","90245440.000000",,"3778240.000000","25269236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000",,,,,,,,"9650.000000","24907.000000",,,,,,,,,,,"3850.000000","507.000000","587.000000","475.000000","633.000000","748.000000","635.000000","0.000000","0.000000","0.000000","433.000000","473.000000","409.000000","532.000000","538.000000","516.000000","160.000000","6000.000000",,"8962574.000000",,,,, +"13556.000000","55.755000","13556.000000","55.755000","13556.000000","55.755000",,,,,,,,,,,,,,"199.000000","31499.000000","31300.000000","13.000000","31499.000000","31499.000000",,,,,,,,,,,"5049516.000000","6757728.000000","478884.000000","0.000000","69488452.000000","0.000000","90628368.000000",,"3778240.000000","25275660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"3910.000000","507.000000","643.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","433.000000","499.000000","413.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962594.000000",,,,, +"10707.000000","51.425000","10707.000000","51.425000","10707.000000","51.425000",,,,,,,,,,,,,,"738.000000","27646.000000","22778.000000","11.000000","27646.000000","27646.000000",,,,,,,,,,,"5447976.000000","7093272.000000","478884.000000","0.000000","69761852.000000","0.000000","90958392.000000",,"3778240.000000","25270492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000",,,,,,,,"6531.000000","25243.000000",,,,,,,,,,,"3896.000000","505.000000","575.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","452.000000","411.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962614.000000",,,,, +"11213.000000","52.240000","11213.000000","52.240000","11213.000000","52.240000",,,,,,,,,,,,,,"95.000000","7160.000000","5816.000000","6.000000","7160.000000","7160.000000",,,,,,,,,,,"5734860.000000","7072444.000000","478884.000000","0.000000","69801216.000000","0.000000","90986888.000000",,"3778240.000000","25182836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000",,,,,,,,"310.000000","8099.000000",,,,,,,,,,,"3864.000000","505.000000","530.000000","488.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","431.000000","415.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962634.000000",,,,, +"12522.000000","54.290000","12522.000000","54.290000","12522.000000","54.290000",,,,,,,,,,,,,,"156.000000","7968.000000","6599.000000","6.000000","7968.000000","7968.000000",,,,,,,,,,,"6139996.000000","7240032.000000","478884.000000","0.000000","69807392.000000","0.000000","90994512.000000",,"3778240.000000","25207528.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000",,,,,,,,"351.000000","8828.000000",,,,,,,,,,,"4028.000000","506.000000","477.000000","494.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","403.000000","422.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962654.000000",,,,, +"11854.000000","53.260000","11854.000000","53.260000","11854.000000","53.260000",,,,,,,,,,,,,,"522.000000","7978.500000","6225.000000","10.000000","7978.500000","7978.500000",,,,,,,,,,,"6119060.000000","7386872.000000","478884.000000","0.000000","69845284.000000","0.000000","91029560.000000",,"3778240.000000","25202932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000",,,,,,,,"732.000000","8477.000000",,,,,,,,,,,"3762.000000","505.000000","488.000000","499.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","418.000000","425.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962674.000000",,,,, +"11154.000000","52.185000","11154.000000","52.185000","11154.000000","52.185000",,,,,,,,,,,,,,"301.000000","5348.500000","3896.000000","5.000000","5348.500000","5348.500000",,,,,,,,,,,"6817596.000000","8211240.000000","478884.000000","0.000000","69885108.000000","0.000000","91062444.000000",,"3778240.000000","25258076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000",,,,,,,,"414.000000","6085.000000",,,,,,,,,,,"3767.000000","502.000000","463.000000","498.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","430.000000","401.000000","423.000000","532.000000","554.000000","538.000000","160.000000","6000.000000",,"8962694.000000",,,,, +"10492.000000","51.160000","10492.000000","51.160000","10492.000000","51.160000",,,,,,,,,,,,,,"101.000000","5746.500000","4326.000000","7.000000","5746.500000","5746.500000",,,,,,,,,,,"6943708.000000","8568040.000000","478884.000000","0.000000","69909564.000000","0.000000","91105336.000000",,"3778240.000000","25231320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000",,,,,,,,"305.000000","6760.000000",,,,,,,,,,,"3827.000000","499.000000","441.000000","500.000000","633.000000","562.000000","656.000000","0.000000","0.000000","0.000000","428.000000","390.000000","425.000000","525.000000","481.000000","538.000000","160.000000","6000.000000",,"8962714.000000",,,,, +"11630.000000","52.935000","11630.000000","52.935000","11630.000000","52.935000",,,,,,,,,,,,,,"53.000000","7473.500000","6060.000000","12.000000","7473.500000","7473.500000",,,,,,,,,,,"6587196.000000","8316384.000000","478884.000000","0.000000","69895068.000000","0.000000","91105336.000000",,"3778240.000000","25244940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000",,,,,,,,"276.000000","8558.000000",,,,,,,,,,,"3753.000000","501.000000","447.000000","503.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","428.000000","391.000000","426.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962734.000000",,,,, +"12829.000000","54.820000","12829.000000","54.820000","12829.000000","54.820000",,,,,,,,,,,,,,"365.000000","7064.000000","5370.000000","10.000000","7064.000000","7064.000000",,,,,,,,,,,"6608552.000000","8355664.000000","478884.000000","0.000000","69902524.000000","0.000000","91105336.000000",,"3778240.000000","25228984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000",,,,,,,,"575.000000","7816.000000",,,,,,,,,,,"3928.000000","501.000000","473.000000","508.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","429.000000","417.000000","431.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962754.000000",,,,, +"12219.000000","53.865000","12219.000000","53.865000","12219.000000","53.865000",,,,,,,,,,,,,,"133.000000","6128.500000","4791.000000","27.000000","6128.500000","6128.500000",,,,,,,,,,,"6838956.000000","8607320.000000","478884.000000","0.000000","69906088.000000","0.000000","91107608.000000",,"3778240.000000","25188740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000",,,,,,,,"308.000000","7023.000000",,,,,,,,,,,"3971.000000","496.000000","486.000000","511.000000","623.000000","620.000000","656.000000","0.000000","0.000000","0.000000","427.000000","431.000000","434.000000","524.000000","523.000000","538.000000","160.000000","6000.000000",,"8962774.000000",,,,, +"17055.000000","61.435000","17055.000000","61.435000","17055.000000","61.435000",,,,,,,,,,,,,,"90.000000","12522.000000","11192.000000","46.000000","12522.000000","12522.000000",,,,,,,,,,,"7111536.000000","8754072.000000","478884.000000","0.000000","69894992.000000","0.000000","91107560.000000",,"3778240.000000","25200044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000",,,,,,,,"304.000000","13457.000000",,,,,,,,,,,"4105.000000","503.000000","575.000000","522.000000","633.000000","847.000000","715.000000","0.000000","0.000000","0.000000","431.000000","493.000000","440.000000","532.000000","683.000000","538.000000","160.000000","6000.000000",,"8962794.000000",,,,, +"16891.000000","61.175000","16891.000000","61.175000","16891.000000","61.175000",,,,,,,,,,,,,,"54.000000","11334.500000","10187.000000","47.000000","11334.500000","11334.500000",,,,,,,,,,,"6922464.000000","8491404.000000","478884.000000","0.000000","69895848.000000","0.000000","91110464.000000",,"3778240.000000","25226936.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000",,,,,,,,"308.000000","12119.000000",,,,,,,,,,,"4254.000000","507.000000","639.000000","538.000000","656.000000","847.000000","748.000000","0.000000","0.000000","0.000000","434.000000","533.000000","451.000000","538.000000","683.000000","573.000000","160.000000","6000.000000",,"8962814.000000",,,,, +"18270.000000","63.335000","18270.000000","63.335000","18270.000000","63.335000",,,,,,,,,,,,,,"161.000000","7375.000000","6204.000000","18.000000","7375.000000","7375.000000",,,,,,,,,,,"6649836.000000","8113636.000000","478884.000000","0.000000","69893040.000000","0.000000","91110464.000000",,"3778240.000000","25230328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000",,,,,,,,"301.000000","8083.000000",,,,,,,,,,,"4233.000000","515.000000","777.000000","565.000000","709.000000","934.000000","804.000000","0.000000","0.000000","0.000000","440.000000","620.000000","469.000000","556.000000","683.000000","641.000000","160.000000","6000.000000",,"8962834.000000",,,,, +"16695.000000","60.885000","16695.000000","60.885000","16695.000000","60.885000",,,,,,,,,,,,,,"125.000000","21957.000000","15282.000000","25.000000","21957.000000","21957.000000",,,,,,,,,,,"6922464.000000","8281408.000000","478884.000000","0.000000","69926028.000000","0.000000","91110464.000000",,"3778240.000000","25232844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000",,,,,,,,"10886.000000","17619.000000",,,,,,,,,,,"4171.000000","519.000000","750.000000","567.000000","715.000000","934.000000","804.000000","0.000000","0.000000","0.000000","442.000000","611.000000","473.000000","571.000000","681.000000","645.000000","160.000000","6000.000000",,"8962854.000000",,,,, +"16947.000000","61.360000","16947.000000","61.360000","16947.000000","61.360000",,,,,,,,,,,,,,"89.000000","34448.500000","29353.000000","83.000000","34448.500000","34448.500000",,,,,,,,,,,"6956768.000000","8322584.000000","478884.000000","0.000000","70083000.000000","0.000000","91185084.000000",,"3778240.000000","25150104.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000",,,,,,,,"7313.000000","32141.000000",,,,,,,,,,,"4213.000000","522.000000","762.000000","573.000000","728.000000","934.000000","804.000000","0.000000","0.000000","0.000000","445.000000","625.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962874.000000",,,,, +"14205.000000","57.140000","14205.000000","57.140000","14205.000000","57.140000",,,,,,,,,,,,,,"240.000000","29860.500000","28067.000000","259.000000","29860.500000","29860.500000",,,,,,,,,,,"6726080.000000","8154808.000000","478884.000000","0.000000","70233964.000000","0.000000","91313728.000000",,"3778240.000000","25035048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000",,,,,,,,"624.000000","30790.000000",,,,,,,,,,,"3947.000000","525.000000","676.000000","571.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","447.000000","564.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962894.000000",,,,, +"12501.000000","54.545000","12501.000000","54.545000","12501.000000","54.545000",,,,,,,,,,,,,,"212.000000","14022.000000","12148.000000","126.000000","14022.000000","14022.000000",,,,,,,,,,,"6747048.000000","8133832.000000","478884.000000","0.000000","70386032.000000","0.000000","91471928.000000",,"3778240.000000","25030632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000",,,,,,,,"931.000000","14752.000000",,,,,,,,,,,"3850.000000","526.000000","616.000000","575.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","448.000000","519.000000","486.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962914.000000",,,,, +"12721.000000","54.920000","12721.000000","54.920000","12721.000000","54.920000",,,,,,,,,,,,,,"102.000000","4926.000000","3563.000000","53.000000","4926.000000","4926.000000",,,,,,,,,,,"6160620.000000","7889808.000000","478884.000000","0.000000","70444560.000000","0.000000","91522104.000000",,"3778240.000000","25042348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000",,,,,,,,"248.000000","5937.000000",,,,,,,,,,,"3903.000000","526.000000","548.000000","577.000000","728.000000","665.000000","804.000000","0.000000","0.000000","0.000000","448.000000","465.000000","488.000000","573.000000","557.000000","667.000000","160.000000","6000.000000",,"8962934.000000",,,,, +"12852.000000","55.135000","12852.000000","55.135000","12852.000000","55.135000",,,,,,,,,,,,,,"55.000000","5003.000000","3805.000000","15.000000","5003.000000","5003.000000",,,,,,,,,,,"6663992.000000","8015704.000000","478884.000000","0.000000","70468960.000000","0.000000","91559512.000000",,"3778240.000000","24985180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000",,,,,,,,"194.000000","5951.000000",,,,,,,,,,,"3977.000000","527.000000","514.000000","579.000000","728.000000","585.000000","804.000000","0.000000","0.000000","0.000000","449.000000","449.000000","491.000000","573.000000","512.000000","667.000000","160.000000","6000.000000",,"8962954.000000",,,,, +"13105.000000","55.525000","13105.000000","55.525000","13105.000000","55.525000",,,,,,,,,,,,,,"66.000000","2945.000000","2879.000000","18.000000","2945.000000","2945.000000",,,,,,,,,,,"6716108.000000","8099892.000000","478884.000000","0.000000","70463412.000000","0.000000","91560776.000000",,"3778240.000000","24991108.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000",,,,,,,,"171.000000",,,,,,,,,,,,"3890.000000","530.000000","531.000000","584.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","459.000000","495.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962974.000000",,,,, +"12787.000000","55.040000","12787.000000","55.040000","12787.000000","55.040000",,,,,,,,,,,,,,"90.000000","5076.500000","4567.000000","21.000000","5076.500000","5076.500000",,,,,,,,,,,"7806840.000000","9218208.000000","478884.000000","0.000000","70479640.000000","0.000000","91561824.000000",,"3778240.000000","24998264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000",,,,,,,,"204.000000","5290.000000",,,,,,,,,,,"4013.000000","529.000000","525.000000","589.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","461.000000","500.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962994.000000",,,,, +"15735.000000","59.700000","15735.000000","59.700000","15735.000000","59.700000",,,,,,,,,,,,,,"109.000000","7774.500000","6573.000000","54.000000","7774.500000","7774.500000",,,,,,,,,,,"7513236.000000","8987520.000000","478884.000000","0.000000","70565956.000000","0.000000","91641952.000000",,"3778240.000000","25023052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000",,,,,,,,"232.000000","8633.000000",,,,,,,,,,,"3884.000000","535.000000","563.000000","603.000000","748.000000","793.000000","804.000000","0.000000","0.000000","0.000000","456.000000","494.000000","512.000000","581.000000","700.000000","681.000000","160.000000","6000.000000",,"8963014.000000",,,,, +"19420.000000","65.480000","19420.000000","65.480000","19420.000000","65.480000",,,,,,,,,,,,,,"312.000000","10633.000000","9107.000000","37.000000","10633.000000","10633.000000",,,,,,,,,,,"7429304.000000","8840672.000000","478884.000000","0.000000","70576332.000000","0.000000","91642416.000000",,"3778240.000000","25010532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000",,,,,,,,"562.000000","11284.000000",,,,,,,,,,,"4402.000000","544.000000","654.000000","625.000000","783.000000","909.000000","816.000000","0.000000","0.000000","0.000000","462.000000","562.000000","529.000000","609.000000","750.000000","683.000000","160.000000","6000.000000",,"8963034.000000",,,,, +"19856.000000","66.195000","19856.000000","66.195000","19856.000000","66.195000",,,,,,,,,,,,,,"341.000000","11153.500000","9602.000000","92.000000","11153.500000","11153.500000",,,,,,,,,,,"7135708.000000","8652240.000000","478884.000000","0.000000","70648244.000000","0.000000","91643440.000000",,"3778240.000000","25027172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000",,,,,,,,"584.000000","11778.000000",,,,,,,,,,,"4300.000000","556.000000","799.000000","655.000000","793.000000","1141.000000","905.000000","0.000000","0.000000","0.000000","469.000000","637.000000","544.000000","641.000000","759.000000","698.000000","160.000000","6000.000000",,"8963054.000000",,,,, +"21610.000000","68.950000","21610.000000","68.950000","21610.000000","68.950000",,,,,,,,,,,,,,"101.000000","14058.500000","13429.000000","12.000000","14058.500000","14058.500000",,,,,,,,,,,"6632396.000000","8295720.000000","478884.000000","0.000000","70662368.000000","0.000000","91643440.000000",,"3778240.000000","25018700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000",,,,,,,,"298.000000","14289.000000",,,,,,,,,,,"4482.000000","571.000000","1007.000000","707.000000","804.000000","1402.000000","1028.000000","0.000000","0.000000","0.000000","477.000000","736.000000","573.000000","667.000000","904.000000","750.000000","160.000000","6000.000000",,"8963074.000000",,,,, +"20061.000000","66.520000","20061.000000","66.520000","20061.000000","66.520000",,,,,,,,,,,,,,"46.000000","10445.000000","10186.000000","13.000000","10445.000000","10445.000000",,,,,,,,,,,"6716336.000000","8400636.000000","478884.000000","0.000000","70646660.000000","0.000000","91645016.000000",,"3778240.000000","25034532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000",,,,,,,,"176.000000","10481.000000",,,,,,,,,,,"4333.000000","575.000000","1073.000000","725.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","749.000000","580.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963094.000000",,,,, +"14279.000000","57.505000","14279.000000","57.505000","14279.000000","57.505000",,,,,,,,,,,,,,"113.000000","19248.500000","18693.000000","23.000000","19248.500000","19248.500000",,,,,,,,,,,"7055748.000000","8463552.000000","478884.000000","0.000000","70737636.000000","0.000000","91749072.000000",,"3778240.000000","25028972.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000",,,,,,,,"344.000000","19345.000000",,,,,,,,,,,"4016.000000","576.000000","956.000000","718.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","690.000000","576.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963114.000000",,,,, +"16080.000000","60.320000","16080.000000","60.320000","16080.000000","60.320000",,,,,,,,,,,,,,"122.000000","8354.500000","8023.000000","11.000000","8354.500000","8354.500000",,,,,,,,,,,"7076716.000000","8442576.000000","478884.000000","0.000000","70727172.000000","0.000000","91754600.000000",,"3778240.000000","25093300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000",,,,,,,,"239.000000","8324.000000",,,,,,,,,,,"4042.000000","578.000000","767.000000","705.000000","814.000000","1239.000000","1125.000000","0.000000","0.000000","0.000000","483.000000","599.000000","569.000000","681.000000","825.000000","759.000000","160.000000","6000.000000",,"8963134.000000",,,,, +"16797.000000","61.440000","16797.000000","61.440000","16797.000000","61.440000",,,,,,,,,,,,,,"109.000000","9881.500000","9511.000000","63.000000","9881.500000","9881.500000",,,,,,,,,,,"7013656.000000","8337568.000000","478884.000000","0.000000","70717152.000000","0.000000","91754452.000000",,"3778240.000000","25102092.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000",,,,,,,,"287.000000","9856.000000",,,,,,,,,,,"4094.000000","582.000000","659.000000","707.000000","816.000000","818.000000","1125.000000","0.000000","0.000000","0.000000","485.000000","556.000000","569.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963154.000000",,,,, +"16334.000000","60.710000","16334.000000","60.710000","16334.000000","60.710000",,,,,,,,,,,,,,"56.000000","10935.000000","10493.000000","5.000000","10935.000000","10935.000000",,,,,,,,,,,"7114176.000000","8749024.000000","478884.000000","0.000000","70712572.000000","0.000000","91756136.000000",,"3778240.000000","25055968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000",,,,,,,,"498.000000","10822.000000",,,,,,,,,,,"3979.000000","585.000000","713.000000","708.000000","818.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","486.000000","579.000000","566.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963174.000000",,,,, +"15386.000000","59.230000","15386.000000","59.230000","15386.000000","59.230000",,,,,,,,,,,,,,"40.000000","8124.500000","7884.000000","16.000000","8124.500000","8124.500000",,,,,,,,,,,"7554692.000000","9546056.000000","478884.000000","0.000000","70720116.000000","0.000000","91762900.000000",,"3778240.000000","25061316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000",,,,,,,,"151.000000","8173.000000",,,,,,,,,,,"3919.000000","591.000000","733.000000","717.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","489.000000","575.000000","571.000000","681.000000","639.000000","759.000000","160.000000","6000.000000",,"8963194.000000",,,,, +"15692.000000","59.715000","15692.000000","59.715000","15692.000000","59.715000",,,,,,,,,,,,,,"60.000000","10242.500000","10020.000000","9.000000","10242.500000","10242.500000",,,,,,,,,,,"7638576.000000","9650916.000000","478884.000000","0.000000","70731944.000000","0.000000","91794132.000000",,"3778240.000000","25011360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000",,,,,,,,"196.000000","10209.000000",,,,,,,,,,,"3927.000000","597.000000","745.000000","732.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","492.000000","564.000000","578.000000","681.000000","632.000000","759.000000","160.000000","6000.000000",,"8963214.000000",,,,, +"15214.000000","58.965000","15214.000000","58.965000","15214.000000","58.965000",,,,,,,,,,,,,,"53.000000","10876.500000","9266.000000","11.000000","10876.500000","10876.500000",,,,,,,,,,,"7261700.000000","9162608.000000","478884.000000","0.000000","70730840.000000","0.000000","91794132.000000",,"3778240.000000","24972668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000",,,,,,,,"2876.000000","9558.000000",,,,,,,,,,,"4191.000000","602.000000","714.000000","741.000000","820.000000","851.000000","1125.000000","0.000000","0.000000","0.000000","497.000000","565.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963234.000000",,,,, +"13902.000000","56.905000","13902.000000","56.905000","13902.000000","56.905000",,,,,,,,,,,,,,"72.000000","12629.000000","9636.000000","12.000000","12629.000000","12629.000000",,,,,,,,,,,"6821300.000000","8554432.000000","478884.000000","0.000000","70721112.000000","0.000000","91794132.000000",,"3778240.000000","25008160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000",,,,,,,,"5564.000000","9985.000000",,,,,,,,,,,"3906.000000","606.000000","659.000000","746.000000","820.000000","813.000000","1125.000000","0.000000","0.000000","0.000000","500.000000","536.000000","588.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963254.000000",,,,, +"12489.000000","54.715000","12489.000000","54.715000","12489.000000","54.715000",,,,,,,,,,,,,,"120.000000","15124.500000","13418.000000","17.000000","15124.500000","15124.500000",,,,,,,,,,,"6884444.000000","8575636.000000","478884.000000","0.000000","70775488.000000","0.000000","91853628.000000",,"3778240.000000","25018924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000",,,,,,,,"2953.000000","13757.000000",,,,,,,,,,,"3882.000000","609.000000","585.000000","743.000000","820.000000","743.000000","1125.000000","0.000000","0.000000","0.000000","502.000000","501.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963274.000000",,,,, +"13219.000000","55.905000","13219.000000","55.905000","13219.000000","55.905000",,,,,,,,,,,,,,"47.000000","9561.000000","9244.000000","25.000000","9561.000000","9561.000000",,,,,,,,,,,"6993132.000000","8736172.000000","478884.000000","0.000000","70859532.000000","0.000000","91953320.000000",,"3778240.000000","25061516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000",,,,,,,,"174.000000","9656.000000",,,,,,,,,,,"3774.000000","610.000000","537.000000","744.000000","820.000000","650.000000","1125.000000","0.000000","0.000000","0.000000","503.000000","455.000000","585.000000","681.000000","565.000000","759.000000","160.000000","6000.000000",,"8963294.000000",,,,, +"16321.000000","60.800000","16321.000000","60.800000","16321.000000","60.800000",,,,,,,,,,,,,,"144.000000","12688.000000","11503.000000","4.000000","12688.000000","12688.000000",,,,,,,,,,,"6636616.000000","8568400.000000","478884.000000","0.000000","70929072.000000","0.000000","92035680.000000",,"3778240.000000","25078016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000",,,,,,,,"358.000000","13370.000000",,,,,,,,,,,"4037.000000","621.000000","637.000000","760.000000","847.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","508.000000","497.000000","589.000000","681.000000","628.000000","759.000000","160.000000","6000.000000",,"8963314.000000",,,,, +"14767.000000","58.360000","14767.000000","58.360000","14767.000000","58.360000",,,,,,,,,,,,,,"54.000000","11711.000000","10897.000000","18.000000","11711.000000","11711.000000",,,,,,,,,,,"6699536.000000","8610340.000000","478884.000000","0.000000","70925852.000000","0.000000","92035680.000000",,"3778240.000000","25078700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000",,,,,,,,"294.000000","12176.000000",,,,,,,,,,,"3991.000000","627.000000","701.000000","753.000000","851.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","512.000000","530.000000","580.000000","681.000000","653.000000","759.000000","160.000000","6000.000000",,"8963334.000000",,,,, +"14464.000000","57.885000","14464.000000","57.885000","14464.000000","57.885000",,,,,,,,,,,,,,"379.000000","13414.500000","12782.000000","3.000000","13414.500000","13414.500000",,,,,,,,,,,"6483668.000000","8447476.000000","478884.000000","0.000000","70923980.000000","0.000000","92036412.000000",,"3778240.000000","25045744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000",,,,,,,,"582.000000","13085.000000",,,,,,,,,,,"3850.000000","631.000000","726.000000","729.000000","851.000000","972.000000","1028.000000","0.000000","0.000000","0.000000","514.000000","546.000000","567.000000","681.000000","653.000000","723.000000","160.000000","6000.000000",,"8963354.000000",,,,, +"20036.000000","66.610000","20036.000000","66.610000","20036.000000","66.610000",,,,,,,,,,,,,,"33.000000","10495.500000","10286.000000","27.000000","10495.500000","10495.500000",,,,,,,,,,,"6399328.000000","7754972.000000","478884.000000","0.000000","70909332.000000","0.000000","92035680.000000",,"3778240.000000","25034008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000",,,,,,,,"166.000000","10504.000000",,,,,,,,,,,"4083.000000","651.000000","885.000000","736.000000","905.000000","1713.000000","972.000000","0.000000","0.000000","0.000000","522.000000","593.000000","560.000000","683.000000","837.000000","676.000000","160.000000","6000.000000",,"8963374.000000",,,,, +"14116.000000","57.330000","14116.000000","57.330000","14116.000000","57.330000",,,,,,,,,,,,,,"82.000000","9328.000000","9246.000000","7.000000","9328.000000","9328.000000",,,,,,,,,,,"6231708.000000","7650264.000000","478884.000000","0.000000","70903772.000000","0.000000","92035832.000000",,"3778240.000000","25040488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000",,,,,,,,"207.000000",,,,,,,,,,,,"3915.000000","651.000000","838.000000","706.000000","905.000000","1713.000000","860.000000","0.000000","0.000000","0.000000","522.000000","583.000000","547.000000","683.000000","837.000000","653.000000","160.000000","6000.000000",,"8963394.000000",,,,, +"19335.000000","65.510000","19335.000000","65.510000","19335.000000","65.510000",,,,,,,,,,,,,,"35.000000","7945.500000","7728.000000","16.000000","7945.500000","7945.500000",,,,,,,,,,,"6105880.000000","7524436.000000","478884.000000","0.000000","70912960.000000","0.000000","92035832.000000",,"3778240.000000","25115360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000",,,,,,,,"166.000000","7961.000000",,,,,,,,,,,"4159.000000","660.000000","936.000000","725.000000","934.000000","1713.000000","959.000000","0.000000","0.000000","0.000000","527.000000","622.000000","553.000000","687.000000","837.000000","667.000000","160.000000","6000.000000",,"8963414.000000",,,,, +"21196.000000","68.420000","21196.000000","68.420000","21196.000000","68.420000",,,,,,,,,,,,,,"125.000000","7995.000000","7737.000000","4.000000","7995.000000","7995.000000",,,,,,,,,,,"5986960.000000","7909116.000000","478884.000000","0.000000","70902656.000000","0.000000","92035832.000000",,"3778240.000000","25073920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000",,,,,,,,"231.000000","7896.000000",,,,,,,,,,,"4312.000000","682.000000","966.000000","776.000000","988.000000","1559.000000","1243.000000","0.000000","0.000000","0.000000","536.000000","654.000000","571.000000","702.000000","858.000000","725.000000","160.000000","6000.000000",,"8963434.000000",,,,, +"21659.000000","69.145000","21659.000000","69.145000","21659.000000","69.145000",,,,,,,,,,,,,,"41.000000","5788.000000","5588.000000","6.000000","5788.000000","5788.000000",,,,,,,,,,,"6070848.000000","8195528.000000","478884.000000","0.000000","70906016.000000","0.000000","92035832.000000",,"3778240.000000","25068612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000",,,,,,,,"137.000000","5809.000000",,,,,,,,,,,"4505.000000","693.000000","1158.000000","806.000000","1102.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","542.000000","739.000000","583.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963454.000000",,,,, +"19037.000000","65.035000","19037.000000","65.035000","19037.000000","65.035000",,,,,,,,,,,,,,"100.000000","10284.500000","9876.000000","33.000000","10284.500000","10284.500000",,,,,,,,,,,"6315304.000000","8335136.000000","478884.000000","0.000000","70891916.000000","0.000000","92035832.000000",,"3778240.000000","25007892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000",,,,,,,,"529.000000","10062.000000",,,,,,,,,,,"4122.000000","703.000000","1224.000000","827.000000","1135.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","546.000000","761.000000","590.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963474.000000",,,,, +"17504.000000","62.615000","17504.000000","62.615000","17504.000000","62.615000",,,,,,,,,,,,,,"41.000000","7695.000000","7423.000000","14.000000","7695.000000","7695.000000",,,,,,,,,,,"5797908.000000","7859392.000000","478884.000000","0.000000","70866880.000000","0.000000","92035832.000000",,"3778240.000000","25171964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000",,,,,,,,"167.000000","7757.000000",,,,,,,,,,,"4114.000000","708.000000","1033.000000","836.000000","1135.000000","1259.000000","1259.000000","0.000000","0.000000","0.000000","549.000000","698.000000","596.000000","725.000000","815.000000","807.000000","160.000000","6000.000000",,"8963494.000000",,,,, +"14229.000000","57.485000","14229.000000","57.485000","14229.000000","57.485000",,,,,,,,,,,,,,"41.000000","5376.000000","5241.000000","45.000000","5376.000000","5376.000000",,,,,,,,,,,"5797704.000000","7922104.000000","478884.000000","0.000000","70850888.000000","0.000000","92035632.000000",,"3778240.000000","25186488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000",,,,,,,,"131.000000","5337.000000",,,,,,,,,,,"3919.000000","711.000000","846.000000","826.000000","1135.000000","1216.000000","1259.000000","0.000000","0.000000","0.000000","552.000000","610.000000","593.000000","725.000000","721.000000","807.000000","160.000000","6000.000000",,"8963514.000000",,,,, +"14547.000000","57.980000","14547.000000","57.980000","14547.000000","57.980000",,,,,,,,,,,,,,"40.000000","8692.500000","8326.000000","7.000000","8692.500000","8692.500000",,,,,,,,,,,"5734792.000000","7901132.000000","478884.000000","0.000000","70856632.000000","0.000000","92035632.000000",,"3778240.000000","25235760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000",,,,,,,,"328.000000","8690.000000",,,,,,,,,,,"3881.000000","713.000000","680.000000","821.000000","1135.000000","888.000000","1259.000000","0.000000","0.000000","0.000000","554.000000","554.000000","588.000000","725.000000","668.000000","807.000000","160.000000","6000.000000",,"8963534.000000",,,,, +"13098.000000","55.705000","13098.000000","55.705000","13098.000000","55.705000",,,,,,,,,,,,,,"38.000000","9513.500000","9122.000000","19.000000","9513.500000","9513.500000",,,,,,,,,,,"5916388.000000","7978176.000000","478884.000000","0.000000","70838960.000000","0.000000","92035680.000000",,"3778240.000000","25215464.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000",,,,,,,,"400.000000","9467.000000",,,,,,,,,,,"3935.000000","714.000000","571.000000","819.000000","1135.000000","635.000000","1259.000000","0.000000","0.000000","0.000000","556.000000","497.000000","588.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963554.000000",,,,, +"13222.000000","55.895000","13222.000000","55.895000","13222.000000","55.895000",,,,,,,,,,,,,,"39.000000","8136.000000","7299.000000","28.000000","8136.000000","8136.000000",,,,,,,,,,,"5832504.000000","7768456.000000","478884.000000","0.000000","70835528.000000","0.000000","92035680.000000",,"3778240.000000","25217776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000",,,,,,,,"224.000000","8710.000000",,,,,,,,,,,"3887.000000","716.000000","559.000000","820.000000","1135.000000","630.000000","1259.000000","0.000000","0.000000","0.000000","557.000000","489.000000","590.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963574.000000",,,,, +"14124.000000","57.310000","14124.000000","57.310000","14124.000000","57.310000",,,,,,,,,,,,,,"48.000000","7765.000000","6725.000000","25.000000","7765.000000","7765.000000",,,,,,,,,,,"6189016.000000","7999140.000000","478884.000000","0.000000","70833580.000000","0.000000","92035680.000000",,"3778240.000000","25239908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000",,,,,,,,"273.000000","8483.000000",,,,,,,,,,,"4018.000000","720.000000","564.000000","826.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","560.000000","483.000000","593.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963594.000000",,,,, +"12669.000000","55.025000","12669.000000","55.025000","12669.000000","55.025000",,,,,,,,,,,,,,"40.000000","6177.000000","5955.000000","4.000000","6177.000000","6177.000000",,,,,,,,,,,"6140188.000000","8208864.000000","478884.000000","0.000000","70826080.000000","0.000000","92035680.000000",,"3778240.000000","25245584.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000",,,,,,,,"143.000000","6215.000000",,,,,,,,,,,"3813.000000","723.000000","570.000000","805.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","561.000000","475.000000","583.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963614.000000",,,,, +"13176.000000","55.815000","13176.000000","55.815000","13176.000000","55.815000",,,,,,,,,,,,,,"99.000000","9337.500000","9126.000000","23.000000","9337.500000","9337.500000",,,,,,,,,,,"6119224.000000","8145960.000000","478884.000000","0.000000","70813256.000000","0.000000","92035688.000000",,"3778240.000000","25258224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000",,,,,,,,"173.000000","9277.000000",,,,,,,,,,,"3855.000000","724.000000","570.000000","794.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","562.000000","471.000000","578.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963634.000000",,,,, +"14110.000000","57.270000","14110.000000","57.270000","14110.000000","57.270000",,,,,,,,,,,,,,"368.000000","14582.000000","13897.000000","10.000000","14582.000000","14582.000000",,,,,,,,,,,"5846600.000000","7873336.000000","478884.000000","0.000000","70806552.000000","0.000000","92035688.000000",,"3778240.000000","25262116.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000",,,,,,,,"570.000000","14328.000000",,,,,,,,,,,"3924.000000","726.000000","566.000000","794.000000","1135.000000","725.000000","1259.000000","0.000000","0.000000","0.000000","563.000000","475.000000","579.000000","725.000000","528.000000","807.000000","160.000000","6000.000000",,"8963654.000000",,,,, +"15180.000000","58.945000","15180.000000","58.945000","15180.000000","58.945000",,,,,,,,,,,,,,"119.000000","14077.000000","13670.000000","12.000000","14077.000000","14077.000000",,,,,,,,,,,"6063200.000000","7726220.000000","478884.000000","0.000000","70790912.000000","0.000000","92035688.000000",,"3778240.000000","25314268.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000",,,,,,,,"298.000000","14066.000000",,,,,,,,,,,"3999.000000","732.000000","618.000000","752.000000","1135.000000","825.000000","1243.000000","0.000000","0.000000","0.000000","566.000000","506.000000","566.000000","725.000000","618.000000","777.000000","160.000000","6000.000000",,"8963674.000000",,,,, +"17514.000000","62.615000","17514.000000","62.615000","17514.000000","62.615000",,,,,,,,,,,,,,"308.000000","10700.500000","10145.000000","25.000000","10700.500000","10700.500000",,,,,,,,,,,"6335832.000000","8292448.000000","478884.000000","0.000000","70822340.000000","0.000000","92036712.000000",,"3778240.000000","25238188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000",,,,,,,,"450.000000","10497.000000",,,,,,,,,,,"3909.000000","734.000000","718.000000","770.000000","1135.000000","1108.000000","1243.000000","0.000000","0.000000","0.000000","567.000000","556.000000","573.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963694.000000",,,,, +"14837.000000","58.445000","14837.000000","58.445000","14837.000000","58.445000",,,,,,,,,,,,,,"238.000000","14732.500000","14303.000000","41.000000","14732.500000","14732.500000",,,,,,,,,,,"6148216.000000","8105116.000000","478884.000000","0.000000","70867608.000000","0.000000","92037840.000000",,"3778240.000000","25232836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000",,,,,,,,"368.000000","14556.000000",,,,,,,,,,,"4171.000000","734.000000","762.000000","759.000000","1135.000000","1108.000000","1216.000000","0.000000","0.000000","0.000000","566.000000","572.000000","569.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963714.000000",,,,, +"14620.000000","58.110000","14620.000000","58.110000","14620.000000","58.110000",,,,,,,,,,,,,,"119.000000","9540.500000","9142.000000","31.000000","9540.500000","9540.500000",,,,,,,,,,,"6454456.000000","8250784.000000","478884.000000","0.000000","70884844.000000","0.000000","92036704.000000",,"3778240.000000","25222252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000",,,,,,,,"293.000000","9526.000000",,,,,,,,,,,"3909.000000","729.000000","731.000000","705.000000","1135.000000","1108.000000","1135.000000","0.000000","0.000000","0.000000","562.000000","556.000000","546.000000","725.000000","705.000000","716.000000","160.000000","6000.000000",,"8963734.000000",,,,, +"13115.000000","55.760000","13115.000000","55.760000","13115.000000","55.760000",,,,,,,,,,,,,,"55.000000","9905.000000","9411.000000","30.000000","9905.000000","9905.000000",,,,,,,,,,,"6397208.000000","8102568.000000","478884.000000","0.000000","70901164.000000","0.000000","92031908.000000",,"3778240.000000","25155008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000",,,,,,,,"556.000000","9788.000000",,,,,,,,,,,"3892.000000","726.000000","635.000000","665.000000","1135.000000","952.000000","952.000000","0.000000","0.000000","0.000000","560.000000","505.000000","526.000000","725.000000","617.000000","668.000000","160.000000","6000.000000",,"8963754.000000",,,,, +"13643.000000","56.595000","13643.000000","56.595000","13643.000000","56.595000",,,,,,,,,,,,,,"117.000000","9112.000000","8777.000000","49.000000","9112.000000","9112.000000",,,,,,,,,,,"5893892.000000","7473424.000000","478884.000000","0.000000","70908124.000000","0.000000","92031908.000000",,"3778240.000000","25155616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000",,,,,,,,"260.000000","9068.000000",,,,,,,,,,,"3843.000000","722.000000","575.000000","629.000000","1135.000000","653.000000","872.000000","0.000000","0.000000","0.000000","556.000000","474.000000","512.000000","725.000000","537.000000","644.000000","160.000000","6000.000000",,"8963774.000000",,,,, +"13715.000000","56.715000","13715.000000","56.715000","13715.000000","56.715000",,,,,,,,,,,,,,"46.000000","7845.000000","7588.000000","177.000000","7845.000000","7845.000000",,,,,,,,,,,"5873064.000000","7410656.000000","478884.000000","0.000000","70935908.000000","0.000000","92032052.000000",,"3778240.000000","25130180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000",,,,,,,,"176.000000","7879.000000",,,,,,,,,,,"3947.000000","722.000000","579.000000","614.000000","1135.000000","692.000000","825.000000","0.000000","0.000000","0.000000","556.000000","474.000000","502.000000","725.000000","520.000000","617.000000","160.000000","6000.000000",,"8963794.000000",,,,, +"14262.000000","57.585000","14262.000000","57.585000","14262.000000","57.585000",,,,,,,,,,,,,,"13654.000000","37151.000000","23496.000000","20.000000","37151.000000","37151.000000",,,,,,,,,,,"6319860.000000","7955020.000000","478884.000000","0.000000","70950068.000000","0.000000","92032056.000000",,"3778240.000000","25117712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000",,,,,,,,"13939.000000",,,,,,,,,,,,"3991.000000","725.000000","598.000000","616.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","557.000000","484.000000","501.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963814.000000",,,,, +"13501.000000","56.390000","13501.000000","56.390000","13501.000000","56.390000",,,,,,,,,,,,,,"1486.000000","20323.000000","17417.000000","13.000000","20323.000000","20323.000000",,,,,,,,,,,"6277896.000000","8185684.000000","478884.000000","0.000000","70940056.000000","0.000000","92032036.000000",,"3778240.000000","25166424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000",,,,,,,,"1897.000000","19846.000000",,,,,,,,,,,"3840.000000","726.000000","616.000000","617.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","558.000000","492.000000","499.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963834.000000",,,,, +"15948.000000","60.215000","15948.000000","60.215000","15948.000000","60.215000",,,,,,,,,,,,,,"921.000000","17901.500000","14732.000000","49.000000","17901.500000","17901.500000",,,,,,,,,,,"6340812.000000","8584140.000000","478884.000000","0.000000","70929596.000000","0.000000","92032036.000000",,"3778240.000000","25139064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000",,,,,,,,"3897.000000","16251.000000",,,,,,,,,,,"3906.000000","732.000000","667.000000","633.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","561.000000","519.000000","506.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963854.000000",,,,, +"14827.000000","58.455000","14827.000000","58.455000","14827.000000","58.455000",,,,,,,,,,,,,,"123.000000","40355.000000","29535.000000","60.000000","40355.000000","40355.000000",,,,,,,,,,,"6725944.000000","9147400.000000","478884.000000","0.000000","70927596.000000","0.000000","92031936.000000",,"3778240.000000","25141984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000",,,,,,,,"20816.000000","30235.000000",,,,,,,,,,,"4002.000000","734.000000","676.000000","639.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","562.000000","528.000000","509.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963874.000000",,,,, +"17543.000000","62.715000","17543.000000","62.715000","17543.000000","62.715000",,,,,,,,,,,,,,"66.000000","44525.000000","39332.000000","44.000000","44525.000000","44525.000000",,,,,,,,,,,"7103436.000000","9336144.000000","478884.000000","0.000000","70933556.000000","0.000000","92031936.000000",,"3778240.000000","25134460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000",,,,,,,,"9775.000000","39875.000000",,,,,,,,,,,"4138.000000","741.000000","746.000000","653.000000","1135.000000","879.000000","877.000000","0.000000","0.000000","0.000000","565.000000","574.000000","518.000000","725.000000","688.000000","621.000000","160.000000","6000.000000",,"8963894.000000",,,,, +"16932.000000","61.760000","16932.000000","61.760000","16932.000000","61.760000",,,,,,,,,,,,,,"121.000000","41506.000000","34277.000000","47.000000","41506.000000","41506.000000",,,,,,,,,,,"7816464.000000","9734600.000000","478884.000000","0.000000","70937756.000000","0.000000","92031936.000000",,"3778240.000000","25113644.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000",,,,,,,,"13748.000000","34865.000000",,,,,,,,,,,"4017.000000","744.000000","738.000000","667.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","567.000000","588.000000","529.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963914.000000",,,,, +"17260.000000","62.270000","17260.000000","62.270000","17260.000000","62.270000",,,,,,,,,,,,,,"5112.000000","34096.000000","27104.000000","15.000000","34096.000000","34096.000000",,,,,,,,,,,"8445160.000000","10768600.000000","478884.000000","0.000000","70930596.000000","0.000000","92031936.000000",,"3778240.000000","25121492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000",,,,,,,,"8814.000000","27160.000000",,,,,,,,,,,"4354.000000","742.000000","763.000000","678.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","565.000000","614.000000","537.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963934.000000",,,,, +"16146.000000","60.525000","16146.000000","60.525000","16146.000000","60.525000",,,,,,,,,,,,,,"1077.000000","13145.500000","11650.000000","11.000000","13145.500000","13145.500000",,,,,,,,,,,"7795040.000000","10097512.000000","478884.000000","0.000000","70928112.000000","0.000000","92031936.000000",,"3778240.000000","25009480.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000",,,,,,,,"1188.000000","12376.000000",,,,,,,,,,,"4030.000000","738.000000","751.000000","690.000000","1125.000000","968.000000","901.000000","0.000000","0.000000","0.000000","563.000000","606.000000","544.000000","723.000000","725.000000","666.000000","160.000000","6000.000000",,"8963954.000000",,,,, +"19704.000000","66.095000","19704.000000","66.095000","19704.000000","66.095000",,,,,,,,,,,,,,"183.000000","13959.000000","13550.000000","24.000000","13959.000000","13959.000000",,,,,,,,,,,"7585324.000000","9887512.000000","478884.000000","0.000000","70925516.000000","0.000000","92031936.000000",,"3778240.000000","25002896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000",,,,,,,,"338.000000","13846.000000",,,,,,,,,,,"4160.000000","735.000000","865.000000","716.000000","1135.000000","1344.000000","963.000000","0.000000","0.000000","0.000000","561.000000","640.000000","556.000000","721.000000","776.000000","696.000000","160.000000","6000.000000",,"8963974.000000",,,,, +"19188.000000","65.280000","19188.000000","65.280000","19188.000000","65.280000",,,,,,,,,,,,,,"243.000000","13792.500000","13334.000000","32.000000","13792.500000","13792.500000",,,,,,,,,,,"7446388.000000","9825624.000000","478884.000000","0.000000","70915720.000000","0.000000","92032060.000000",,"3778240.000000","25011560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000",,,,,,,,"404.000000","13604.000000",,,,,,,,,,,"4178.000000","734.000000","959.000000","726.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","560.000000","663.000000","559.000000","717.000000","776.000000","717.000000","160.000000","6000.000000",,"8963994.000000",,,,, +"18836.000000","64.725000","18836.000000","64.725000","18836.000000","64.725000",,,,,,,,,,,,,,"94.000000","6398.000000","6303.000000","17.000000","6398.000000","6398.000000",,,,,,,,,,,"7656100.000000","9993400.000000","478884.000000","0.000000","70902764.000000","0.000000","92032060.000000",,"3778240.000000","24972208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000",,,,,,,,"199.000000",,,,,,,,,,,,"4105.000000","740.000000","996.000000","737.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","563.000000","687.000000","567.000000","721.000000","776.000000","725.000000","160.000000","6000.000000",,"8964014.000000",,,,, +"22218.000000","70.015000","22218.000000","70.015000","22218.000000","70.015000",,,,,,,,,,,,,,"144.000000","7090.500000","6813.000000","14.000000","7090.500000","7090.500000",,,,,,,,,,,"7781932.000000","10077288.000000","478884.000000","0.000000","70893544.000000","0.000000","92032060.000000",,"3778240.000000","25030524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000",,,,,,,,"240.000000","6983.000000",,,,,,,,,,,"4464.000000","751.000000","1011.000000","772.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","569.000000","725.000000","589.000000","725.000000","867.000000","764.000000","160.000000","6000.000000",,"8964034.000000",,,,, +"20862.000000","67.895000","20862.000000","67.895000","20862.000000","67.895000",,,,,,,,,,,,,,"141.000000","10370.500000","9803.000000","21.000000","10370.500000","10370.500000",,,,,,,,,,,"7838008.000000","9958748.000000","478884.000000","0.000000","70895844.000000","0.000000","92032060.000000",,"3778240.000000","25025008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000",,,,,,,,"636.000000","10159.000000",,,,,,,,,,,"4256.000000","758.000000","1024.000000","804.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","572.000000","742.000000","606.000000","733.000000","867.000000","776.000000","160.000000","6000.000000",,"8964054.000000",,,,, +"21777.000000","69.325000","21777.000000","69.325000","21777.000000","69.325000",,,,,,,,,,,,,,"43.000000","9099.500000","8565.000000","13.000000","9099.500000","9099.500000",,,,,,,,,,,"8089668.000000","10231372.000000","478884.000000","0.000000","70891416.000000","0.000000","92032060.000000",,"3778240.000000","25096832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000",,,,,,,,"212.000000","9378.000000",,,,,,,,,,,"4405.000000","768.000000","1121.000000","846.000000","1203.000000","1473.000000","1216.000000","0.000000","0.000000","0.000000","576.000000","772.000000","626.000000","754.000000","873.000000","790.000000","160.000000","6000.000000",,"8964074.000000",,,,, +"19644.000000","65.985000","19644.000000","65.985000","19644.000000","65.985000",,,,,,,,,,,,,,"52.000000","8491.000000","7533.000000","16.000000","8491.000000","8491.000000",,,,,,,,,,,"8120428.000000","10419992.000000","478884.000000","0.000000","70892932.000000","0.000000","92031940.000000",,"3778240.000000","25209924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000",,,,,,,,"265.000000","9131.000000",,,,,,,,,,,"4217.000000","781.000000","1184.000000","893.000000","1216.000000","1569.000000","1301.000000","0.000000","0.000000","0.000000","581.000000","750.000000","645.000000","764.000000","873.000000","790.000000","160.000000","6000.000000",,"8964094.000000",,,,, +"20739.000000","67.695000","20739.000000","67.695000","20739.000000","67.695000",,,,,,,,,,,,,,"115.000000","10309.500000","9713.000000","18.000000","10309.500000","10309.500000",,,,,,,,,,,"7952664.000000","10126400.000000","478884.000000","0.000000","70886184.000000","0.000000","92031948.000000",,"3778240.000000","25213944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000",,,,,,,,"229.000000","10561.000000",,,,,,,,,,,"4169.000000","794.000000","1285.000000","941.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","585.000000","757.000000","661.000000","776.000000","873.000000","806.000000","160.000000","6000.000000",,"8964114.000000",,,,, +"20059.000000","66.630000","20059.000000","66.630000","20059.000000","66.630000",,,,,,,,,,,,,,"261.000000","5702.000000","5267.000000","54.000000","5702.000000","5702.000000",,,,,,,,,,,"8021972.000000","10279592.000000","478884.000000","0.000000","70883292.000000","0.000000","92031948.000000",,"3778240.000000","25194920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000",,,,,,,,"347.000000","5528.000000",,,,,,,,,,,"4395.000000","799.000000","1183.000000","960.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","588.000000","739.000000","676.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964134.000000",,,,, +"18410.000000","64.040000","18410.000000","64.040000","18410.000000","64.040000",,,,,,,,,,,,,,"90.000000","4670.000000","4434.000000","13.000000","4670.000000","4670.000000",,,,,,,,,,,"8063916.000000","10237648.000000","478884.000000","0.000000","70866136.000000","0.000000","92031948.000000",,"3778240.000000","25120348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000",,,,,,,,"167.000000","4648.000000",,,,,,,,,,,"4008.000000","804.000000","1046.000000","965.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","590.000000","710.000000","682.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964154.000000",,,,, +"21531.000000","68.925000","21531.000000","68.925000","21531.000000","68.925000",,,,,,,,,,,,,,"90.000000","10544.000000","10264.000000","58.000000","10544.000000","10544.000000",,,,,,,,,,,"7980168.000000","9797384.000000","478880.000000","0.000000","70859644.000000","0.000000","92032092.000000",,"3778240.000000","25129472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000",,,,,,,,"221.000000","10512.000000",,,,,,,,,,,"4563.000000","818.000000","940.000000","994.000000","1243.000000","1149.000000","1344.000000","0.000000","0.000000","0.000000","600.000000","727.000000","701.000000","780.000000","897.000000","829.000000","160.000000","6000.000000",,"8964174.000000",,,,, +"20467.000000","67.250000","20467.000000","67.250000","20467.000000","67.250000",,,,,,,,,,,,,,"80.000000","8175.000000","7963.000000","21.000000","8175.000000","8175.000000",,,,,,,,,,,"8154780.000000","10048588.000000","478876.000000","0.000000","70844920.000000","0.000000","92032096.000000",,"3778240.000000","25209396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000",,,,,,,,"169.000000","8137.000000",,,,,,,,,,,"4307.000000","830.000000","1011.000000","1013.000000","1243.000000","1183.000000","1344.000000","0.000000","0.000000","0.000000","606.000000","736.000000","708.000000","790.000000","897.000000","840.000000","160.000000","6000.000000",,"8964194.000000",,,,, +"19949.000000","66.435000","19949.000000","66.435000","19949.000000","66.435000",,,,,,,,,,,,,,"62.000000","8879.000000","8616.000000","50.000000","8879.000000","8879.000000",,,,,,,,,,,"8354584.000000","10069564.000000","478872.000000","0.000000","70833168.000000","0.000000","92032100.000000",,"3778240.000000","25096136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000",,,,,,,,"173.000000","8906.000000",,,,,,,,,,,"4254.000000","840.000000","1127.000000","1048.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","610.000000","752.000000","717.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964214.000000",,,,, +"19000.000000","64.940000","19000.000000","64.940000","19000.000000","64.940000",,,,,,,,,,,,,,"241.000000","6321.000000","5988.000000","17.000000","6321.000000","6321.000000",,,,,,,,,,,"7914032.000000","9608040.000000","478872.000000","0.000000","70822068.000000","0.000000","92031948.000000",,"3778240.000000","25106076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000",,,,,,,,"321.000000","6092.000000",,,,,,,,,,,"4500.000000","844.000000","1088.000000","1059.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","613.000000","720.000000","722.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964234.000000",,,,, +"21752.000000","69.245000","21752.000000","69.245000","21752.000000","69.245000",,,,,,,,,,,,,,"389.000000","8987.000000","8411.000000","18.000000","8987.000000","8987.000000",,,,,,,,,,,"7858408.000000","9322184.000000","478872.000000","0.000000","70808924.000000","0.000000","92031948.000000",,"3778240.000000","25257144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000",,,,,,,,"461.000000","8712.000000",,,,,,,,,,,"4439.000000","859.000000","1154.000000","1093.000000","1301.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","619.000000","736.000000","734.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964254.000000",,,,, +"22130.000000","69.860000","22130.000000","69.860000","22130.000000","69.860000",,,,,,,,,,,,,,"158.000000","8859.500000","8578.000000","12.000000","8859.500000","8859.500000",,,,,,,,,,,"7648828.000000","9122516.000000","478872.000000","0.000000","70853280.000000","0.000000","92032084.000000",,"3778240.000000","25172468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000",,,,,,,,"276.000000","8707.000000",,,,,,,,,,,"4485.000000","855.000000","1199.000000","1108.000000","1259.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","620.000000","774.000000","742.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964274.000000",,,,, +"21468.000000","68.840000","21468.000000","68.840000","21468.000000","68.840000",,,,,,,,,,,,,,"152.000000","8904.000000","8624.000000","11.000000","8904.000000","8904.000000",,,,,,,,,,,"7921452.000000","9520972.000000","478868.000000","0.000000","70888072.000000","0.000000","92032088.000000",,"3778240.000000","25150448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000",,,,,,,,"253.000000","8778.000000",,,,,,,,,,,"4365.000000","884.000000","1437.000000","1155.000000","1333.000000","2103.000000","1569.000000","0.000000","0.000000","0.000000","627.000000","794.000000","748.000000","816.000000","876.000000","867.000000","160.000000","6000.000000",,"8964294.000000",,,,, +"21192.000000","68.420000","21192.000000","68.420000","21192.000000","68.420000",,,,,,,,,,,,,,"77.000000","8814.500000","8525.000000","21.000000","8814.500000","8814.500000",,,,,,,,,,,"8131168.000000","9646800.000000","478868.000000","0.000000","70913076.000000","0.000000","92032088.000000",,"3778240.000000","25131212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000",,,,,,,,"219.000000","8807.000000",,,,,,,,,,,"4506.000000","898.000000","1522.000000","1198.000000","1343.000000","2103.000000","1720.000000","0.000000","0.000000","0.000000","630.000000","789.000000","754.000000","817.000000","877.000000","873.000000","160.000000","6000.000000",,"8964314.000000",,,,, +"20942.000000","68.030000","20942.000000","68.030000","20942.000000","68.030000",,,,,,,,,,,,,,"166.000000","7981.000000","7624.000000","17.000000","7981.000000","7981.000000",,,,,,,,,,,"7801768.000000","9339076.000000","478868.000000","0.000000","70910056.000000","0.000000","92032088.000000",,"3778240.000000","25137272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000",,,,,,,,"218.000000","7954.000000",,,,,,,,,,,"4288.000000","908.000000","1713.000000","1246.000000","1410.000000","2103.000000","1971.000000","0.000000","0.000000","0.000000","629.000000","770.000000","751.000000","815.000000","877.000000","873.000000","160.000000","6000.000000",,"8964334.000000",,,,, +"18637.000000","64.405000","18637.000000","64.405000","18637.000000","64.405000",,,,,,,,,,,,,,"57.000000","9389.500000","8234.000000","67.000000","9389.500000","9389.500000",,,,,,,,,,,"7675964.000000","9213268.000000","478868.000000","0.000000","70879884.000000","0.000000","92032108.000000",,"3778240.000000","25145844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000",,,,,,,,"279.000000","10209.000000",,,,,,,,,,,"4161.000000","910.000000","1551.000000","1260.000000","1418.000000","2076.000000","1971.000000","0.000000","0.000000","0.000000","626.000000","732.000000","746.000000","806.000000","877.000000","873.000000","160.000000","6000.000000",,"8964354.000000",,,,, +"20313.000000","67.030000","20313.000000","67.030000","20313.000000","67.030000",,,,,,,,,,,,,,"123.000000","10104.000000","9114.000000","15.000000","10104.000000","10104.000000",,,,,,,,,,,"7990532.000000","9569780.000000","478868.000000","0.000000","70882516.000000","0.000000","92032108.000000",,"3778240.000000","25124596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000",,,,,,,,"652.000000","10318.000000",,,,,,,,,,,"4299.000000","912.000000","1433.000000","1261.000000","1434.000000","2013.000000","1971.000000","0.000000","0.000000","0.000000","627.000000","716.000000","743.000000","806.000000","793.000000","864.000000","160.000000","6000.000000",,"8964374.000000",,,,, +"21050.000000","68.190000","21050.000000","68.190000","21050.000000","68.190000",,,,,,,,,,,,,,"57.000000","8725.000000","8437.000000","34.000000","8725.000000","8725.000000",,,,,,,,,,,"8019488.000000","9857972.000000","478868.000000","0.000000","70889300.000000","0.000000","92032108.000000",,"3778240.000000","25188756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000",,,,,,,,"169.000000","8785.000000",,,,,,,,,,,"4361.000000","921.000000","1296.000000","1263.000000","1458.000000","1823.000000","1971.000000","0.000000","6.000000","0.000000","629.000000","721.000000","743.000000","806.000000","795.000000","864.000000","160.000000","6000.000000",,"8964394.000000",,,,, +"20051.000000","66.605000","20051.000000","66.605000","20051.000000","66.605000",,,,,,,,,,,,,,"313.000000","11101.500000","10773.000000","33.000000","11101.500000","11101.500000",,,,,,,,,,,"8355028.000000","9825936.000000","478868.000000","0.000000","70860328.000000","0.000000","92032108.000000",,"3778240.000000","25201640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000",,,,,,,,"364.000000","10752.000000",,,,,,,,,,,"4205.000000","943.000000","1340.000000","1271.000000","1474.000000","1613.000000","1971.000000","0.000000","6.000000","0.000000","634.000000","734.000000","741.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964414.000000",,,,, +"20459.000000","67.240000","20459.000000","67.240000","20459.000000","67.240000",,,,,,,,,,,,,,"77.000000","10129.000000","9866.000000","29.000000","10129.000000","10129.000000",,,,,,,,,,,"8480856.000000","9909828.000000","478868.000000","0.000000","70854752.000000","0.000000","92032108.000000",,"3778240.000000","25112980.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000",,,,,,,,"195.000000","10118.000000",,,,,,,,,,,"4338.000000","960.000000","1396.000000","1303.000000","1485.000000","1817.000000","1971.000000","0.000000","6.000000","0.000000","640.000000","743.000000","744.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964434.000000",,,,, +"19677.000000","66.020000","19677.000000","66.020000","19677.000000","66.020000",,,,,,,,,,,,,,"129.000000","7633.500000","7320.000000","25.000000","7633.500000","7633.500000",,,,,,,,,,,"8767452.000000","10126384.000000","478868.000000","0.000000","70860344.000000","0.000000","92032108.000000",,"3778240.000000","25069888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000",,,,,,,,"244.000000","7573.000000",,,,,,,,,,,"4221.000000","970.000000","1318.000000","1318.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","643.000000","725.000000","746.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964454.000000",,,,, +"22365.000000","70.230000","22365.000000","70.230000","22365.000000","70.230000",,,,,,,,,,,,,,"117.000000","9774.500000","9438.000000","12.000000","9774.500000","9774.500000",,,,,,,,,,,"9018908.000000","10524640.000000","478864.000000","0.000000","70848632.000000","0.000000","92031908.000000",,"3778240.000000","25080800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000",,,,,,,,"260.000000","9733.000000",,,,,,,,,,,"4517.000000","988.000000","1245.000000","1332.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","653.000000","761.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964474.000000",,,,, +"19796.000000","66.210000","19796.000000","66.210000","19796.000000","66.210000",,,,,,,,,,,,,,"66.000000","9739.500000","8481.000000","36.000000","9739.500000","9739.500000",,,,,,,,,,,"8955972.000000","10335872.000000","478860.000000","0.000000","70857604.000000","0.000000","92031888.000000",,"3778240.000000","25146856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000",,,,,,,,"302.000000","10630.000000",,,,,,,,,,,"4469.000000","1002.000000","1204.000000","1342.000000","1485.000000","1411.000000","1971.000000","0.000000","0.000000","0.000000","658.000000","757.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964494.000000",,,,, +"20903.000000","67.945000","20903.000000","67.945000","20903.000000","67.945000",,,,,,,,,,,,,,"127.000000","8302.000000","8174.000000","35.000000","8302.000000","8302.000000",,,,,,,,,,,"9270292.000000","10660380.000000","478856.000000","0.000000","70876908.000000","0.000000","92031916.000000",,"3778240.000000","25156168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000",,,,,,,,"333.000000",,,,,,,,,,,,"4319.000000","1019.000000","1219.000000","1343.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","665.000000","764.000000","750.000000","819.000000","848.000000","844.000000","160.000000","6000.000000",,"8964514.000000",,,,, +"19932.000000","66.420000","19932.000000","66.420000","19932.000000","66.420000",,,,,,,,,,,,,,"130.000000","7484.000000","7096.000000","22.000000","7484.000000","7484.000000",,,,,,,,,,,"9123604.000000","10904408.000000","478856.000000","0.000000","70862832.000000","0.000000","92032028.000000",,"3778240.000000","25169640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000",,,,,,,,"248.000000","7493.000000",,,,,,,,,,,"4278.000000","1030.000000","1199.000000","1354.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","670.000000","730.000000","750.000000","819.000000","844.000000","844.000000","160.000000","6000.000000",,"8964534.000000",,,,, +"22066.000000","69.760000","22066.000000","69.760000","22066.000000","69.760000",,,,,,,,,,,,,,"453.000000","10033.000000","9377.000000","15.000000","10033.000000","10033.000000",,,,,,,,,,,"9312344.000000","11051204.000000","478856.000000","0.000000","70851192.000000","0.000000","92032028.000000",,"3778240.000000","25177256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000",,,,,,,,"572.000000","9663.000000",,,,,,,,,,,"4662.000000","1044.000000","1189.000000","1349.000000","1549.000000","1620.000000","1971.000000","0.000000","0.000000","0.000000","676.000000","751.000000","751.000000","820.000000","930.000000","838.000000","160.000000","6000.000000",,"8964554.000000",,,,, +"22543.000000","70.500000","22543.000000","70.500000","22543.000000","70.500000",,,,,,,,,,,,,,"122.000000","8789.000000","8680.000000","49.000000","8789.000000","8789.000000",,,,,,,,,,,"9459144.000000","11104208.000000","478852.000000","0.000000","70841592.000000","0.000000","92032032.000000",,"3778240.000000","25179692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000",,,,,,,,"155.000000","8621.000000",,,,,,,,,,,"4537.000000","1066.000000","1373.000000","1391.000000","1554.000000","2227.000000","2023.000000","0.000000","0.000000","0.000000","680.000000","763.000000","752.000000","829.000000","930.000000","844.000000","160.000000","6000.000000",,"8964574.000000",,,,, +"23159.000000","71.470000","23159.000000","71.470000","23159.000000","71.470000",,,,,,,,,,,,,,"113.000000","9016.000000","8681.000000","32.000000","9016.000000","9016.000000",,,,,,,,,,,"9633748.000000","11167116.000000","478844.000000","0.000000","70849524.000000","0.000000","92032032.000000",,"3778240.000000","25174856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000",,,,,,,,"241.000000","8996.000000",,,,,,,,,,,"4491.000000","1092.000000","1646.000000","1396.000000","1620.000000","2227.000000","2013.000000","0.000000","0.000000","0.000000","688.000000","830.000000","758.000000","844.000000","932.000000","877.000000","160.000000","6000.000000",,"8964594.000000",,,,, +"21085.000000","68.230000","21085.000000","68.230000","21085.000000","68.230000",,,,,,,,,,,,,,"698.000000","9397.000000","8698.000000","115.000000","9397.000000","9397.000000",,,,,,,,,,,"9696664.000000","11188092.000000","478844.000000","0.000000","70870196.000000","0.000000","92032032.000000",,"3778240.000000","25168848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000",,,,,,,,"1357.000000",,,,,,,,,,,,"4520.000000","1111.000000","1761.000000","1397.000000","1720.000000","2227.000000","1971.000000","0.000000","0.000000","0.000000","693.000000","824.000000","758.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964614.000000",,,,, +"19118.000000","65.180000","19118.000000","65.180000","19118.000000","65.180000",,,,,,,,,,,,,,"568.000000","73948.000000","11791.000000","98.000000","73948.000000","73948.000000",,,,,,,,,,,"9738656.000000","11796032.000000","478844.000000","0.000000","70936452.000000","0.000000","92032084.000000",,"3778240.000000","25054504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000",,,,,,,,"4279.000000","131256.000000",,,,,,,,,,,"4160.000000","1125.000000","1469.000000","1356.000000","1720.000000","2039.000000","1923.000000","0.000000","0.000000","0.000000","698.000000","761.000000","752.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964634.000000",,,,, +"20650.000000","67.655000","20650.000000","67.655000","20650.000000","67.655000",,,,,,,,,,,,,,"524.000000","28227.000000","27702.000000","114.000000","28227.000000","28227.000000",,,,,,,,,,,"9466480.000000","11607744.000000","478844.000000","0.000000","71087800.000000","0.000000","92032084.000000",,"3778240.000000","24956988.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000",,,,,,,,"6370.000000",,,,,,,,,,,,"4477.000000","1136.000000","1287.000000","1343.000000","1720.000000","1923.000000","1923.000000","0.000000","0.000000","0.000000","703.000000","729.000000","757.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964654.000000",,,,, +"17769.000000","61.215000","17769.000000","61.215000","17769.000000","61.215000",,,,,,,,,,,,,,"306.000000","56962.500000","30038.000000","75.000000","56962.500000","56962.500000",,,,,,,,,,,"7243500.000000","9426704.000000","478844.000000","0.000000","67206604.000000","0.000000","87856740.000000",,"3623976.000000","24587332.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000",,,,,,,,"6320.000000","77260.000000",,,,,,,,,,,"4097.000000","1141.000000","1032.000000","1316.000000","1720.000000","1228.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","676.000000","750.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964674.000000",,,,, +"17412.000000","60.710000","17412.000000","60.710000","17412.000000","60.710000",,,,,,,,,,,,,,"43.000000","34630.500000","31058.000000","241.000000","34630.500000","34630.500000",,,,,,,,,,,"9130940.000000","11020540.000000","478844.000000","0.000000","67313532.000000","0.000000","87856740.000000",,"3623976.000000","24420768.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000",,,,,,,,"5671.000000","32488.000000",,,,,,,,,,,"4240.000000","1143.000000","907.000000","1280.000000","1720.000000","1160.000000","1923.000000","0.000000","0.000000","0.000000","709.000000","666.000000","742.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964694.000000",,,,, +"17492.000000","60.880000","17492.000000","60.880000","17492.000000","60.880000",,,,,,,,,,,,,,"49.000000","35413.500000","31294.000000","156.000000","35413.500000","35413.500000",,,,,,,,,,,"9101004.000000","10940512.000000","478844.000000","0.000000","67397008.000000","0.000000","87824020.000000",,"3623976.000000","24337056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000",,,,,,,,"7359.000000","32124.000000",,,,,,,,,,,"4298.000000","1146.000000","748.000000","1225.000000","1720.000000","885.000000","1923.000000","0.000000","0.000000","0.000000","712.000000","624.000000","735.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964714.000000",,,,, +"15765.000000","58.170000","15765.000000","58.170000","15765.000000","58.170000",,,,,,,,,,,,,,"45.000000","37097.000000","37051.000000","76.000000","37097.000000","37097.000000",,,,,,,,,,,"9381348.000000","11260768.000000","478844.000000","0.000000","67390668.000000","0.000000","87773120.000000",,"3623976.000000","24288384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000",,,,,,,,,,,,,,,,,,,,"4280.000000","1146.000000","695.000000","1176.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","607.000000","723.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964734.000000",,,,, +"16328.000000","59.055000","16328.000000","59.055000","16328.000000","59.055000",,,,,,,,,,,,,,"42.000000","30677.500000","23599.000000","39.000000","30677.500000","30677.500000",,,,,,,,,,,"10304092.000000","12048064.000000","478844.000000","0.000000","67399392.000000","0.000000","87773120.000000",,"3623976.000000","24296164.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000",,,,,,,,"13462.000000","24250.000000",,,,,,,,,,,"4406.000000","1145.000000","676.000000","1151.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","716.000000","610.000000","719.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964754.000000",,,,, +"13490.000000","54.630000","13490.000000","54.630000","13490.000000","54.630000",,,,,,,,,,,,,,"52.000000","31231.000000","28061.000000","22.000000","31231.000000","31231.000000",,,,,,,,,,,"10241176.000000","11775432.000000","478840.000000","0.000000","67436152.000000","0.000000","87773124.000000",,"3623976.000000","24261260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000",,,,,,,,"5631.000000","28717.000000",,,,,,,,,,,"3994.000000","1142.000000","622.000000","1101.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","553.000000","693.000000","845.000000","652.000000","887.000000","160.000000","6000.000000",,"8964774.000000",,,,, +"13003.000000","53.855000","13003.000000","53.855000","13003.000000","53.855000",,,,,,,,,,,,,,"37.000000","7612.500000","7456.000000","17.000000","7612.500000","7612.500000",,,,,,,,,,,"9802376.000000","11588052.000000","478840.000000","0.000000","67418396.000000","0.000000","87767220.000000",,"3623976.000000","24295180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000",,,,,,,,"122.000000","7610.000000",,,,,,,,,,,"4038.000000","1136.000000","592.000000","1054.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","711.000000","521.000000","676.000000","845.000000","633.000000","887.000000","160.000000","6000.000000",,"8964794.000000",,,,, +"14951.000000","56.915000","14951.000000","56.915000","14951.000000","56.915000",,,,,,,,,,,,,,"118.000000","5147.500000","4942.000000","16.000000","5147.500000","5147.500000",,,,,,,,,,,"10347632.000000","12100984.000000","478840.000000","0.000000","67428312.000000","0.000000","87767216.000000",,"3623976.000000","24263912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000",,,,,,,,"162.000000","5072.000000",,,,,,,,,,,"4029.000000","1135.000000","582.000000","1017.000000","1720.000000","763.000000","1923.000000","0.000000","0.000000","0.000000","710.000000","490.000000","662.000000","845.000000","578.000000","887.000000","160.000000","6000.000000",,"8964814.000000",,,,, +"15562.000000","57.855000","15562.000000","57.855000","15562.000000","57.855000",,,,,,,,,,,,,,"52.000000","7253.000000","7123.000000","13.000000","7253.000000","7253.000000",,,,,,,,,,,"10364188.000000","12116796.000000","478840.000000","0.000000","67399400.000000","0.000000","87748424.000000",,"3623976.000000","24275880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000",,,,,,,,"152.000000","7179.000000",,,,,,,,,,,"4157.000000","1133.000000","618.000000","984.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","514.000000","650.000000","845.000000","614.000000","887.000000","160.000000","6000.000000",,"8964834.000000",,,,, +"14436.000000","56.090000","14436.000000","56.090000","14436.000000","56.090000",,,,,,,,,,,,,,"439.000000","15222.500000","14492.000000","45.000000","15222.500000","15222.500000",,,,,,,,,,,"10131436.000000","11800156.000000","478840.000000","0.000000","67396496.000000","0.000000","87748424.000000",,"3623976.000000","24302552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000",,,,,,,,"586.000000","14927.000000",,,,,,,,,,,"4018.000000","1129.000000","649.000000","946.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","705.000000","526.000000","631.000000","845.000000","614.000000","845.000000","160.000000","6000.000000",,"8964854.000000",,,,, +"18777.000000","62.895000","18777.000000","62.895000","18777.000000","62.895000",,,,,,,,,,,,,,"494.000000","10767.500000","9618.000000","31.000000","10767.500000","10767.500000",,,,,,,,,,,"10466980.000000","11832196.000000","478840.000000","0.000000","67407620.000000","0.000000","87748424.000000",,"3623976.000000","24306748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000",,,,,,,,"698.000000","10723.000000",,,,,,,,,,,"4155.000000","1130.000000","749.000000","892.000000","1720.000000","1123.000000","1684.000000","0.000000","0.000000","0.000000","706.000000","578.000000","625.000000","845.000000","720.000000","793.000000","160.000000","6000.000000",,"8964874.000000",,,,, +"20174.000000","65.090000","20174.000000","65.090000","20174.000000","65.090000",,,,,,,,,,,,,,"1631.000000","31377.000000","28593.000000","46.000000","31377.000000","31377.000000",,,,,,,,,,,"10634892.000000","11874276.000000","478840.000000","0.000000","67418980.000000","0.000000","87748564.000000",,"3623976.000000","24295560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000",,,,,,,,"1993.000000","30537.000000",,,,,,,,,,,"4378.000000","1134.000000","978.000000","851.000000","1725.000000","1725.000000","1329.000000","0.000000","0.000000","0.000000","706.000000","643.000000","613.000000","845.000000","793.000000","782.000000","160.000000","6000.000000",,"8964894.000000",,,,, +"23433.000000","70.190000","23433.000000","70.190000","23433.000000","70.190000",,,,,,,,,,,,,,"81.000000","13906.500000","13331.000000","36.000000","13906.500000","13906.500000",,,,,,,,,,,"10491788.000000","11563400.000000","478840.000000","0.000000","67409532.000000","0.000000","87748564.000000",,"3623976.000000","24275560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000",,,,,,,,"269.000000","14131.000000",,,,,,,,,,,"4498.000000","1146.000000","1252.000000","844.000000","1725.000000","1725.000000","1421.000000","0.000000","0.000000","0.000000","708.000000","727.000000","612.000000","848.000000","861.000000","781.000000","160.000000","6000.000000",,"8964914.000000",,,,, +"22995.000000","69.505000","22995.000000","69.505000","22995.000000","69.505000",,,,,,,,,,,,,,"144.000000","11218.500000","10950.000000","41.000000","11218.500000","11218.500000",,,,,,,,,,,"10596648.000000","12055652.000000","478840.000000","0.000000","67411316.000000","0.000000","87748564.000000",,"3623976.000000","24277072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000",,,,,,,,"251.000000","11092.000000",,,,,,,,,,,"4808.000000","1153.000000","1398.000000","862.000000","1725.000000","1725.000000","1462.000000","0.000000","0.000000","0.000000","710.000000","800.000000","629.000000","854.000000","1011.000000","793.000000","160.000000","6000.000000",,"8964934.000000",,,,, +"22729.000000","69.080000","22729.000000","69.080000","22729.000000","69.080000",,,,,,,,,,,,,,"54.000000","12000.000000","11462.000000","23.000000","12000.000000","12000.000000",,,,,,,,,,,"10554548.000000","12076468.000000","478840.000000","0.000000","67402148.000000","0.000000","87748408.000000",,"3623976.000000","24286996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000",,,,,,,,"561.000000","11923.000000",,,,,,,,,,,"4521.000000","1166.000000","1505.000000","894.000000","1725.000000","1612.000000","1539.000000","0.000000","0.000000","0.000000","712.000000","829.000000","633.000000","861.000000","1011.000000","842.000000","160.000000","6000.000000",,"8964954.000000",,,,, +"22134.000000","68.145000","22134.000000","68.145000","22134.000000","68.145000",,,,,,,,,,,,,,"44.000000","9592.500000","9349.000000","16.000000","9592.500000","9592.500000",,,,,,,,,,,"10601900.000000","12305536.000000","478840.000000","0.000000","67393644.000000","0.000000","87744176.000000",,"3623976.000000","24297204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000",,,,,,,,"176.000000","9615.000000",,,,,,,,,,,"4423.000000","1172.000000","1501.000000","938.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","836.000000","644.000000","854.000000","1011.000000","852.000000","160.000000","6000.000000",,"8964974.000000",,,,, +"22793.000000","69.190000","22793.000000","69.190000","22793.000000","69.190000",,,,,,,,,,,,,,"117.000000","11742.500000","11529.000000","25.000000","11742.500000","11742.500000",,,,,,,,,,,"10307292.000000","12062776.000000","478840.000000","0.000000","67411228.000000","0.000000","87744316.000000",,"3623976.000000","24286000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000",,,,,,,,"222.000000","11616.000000",,,,,,,,,,,"4459.000000","1170.000000","1428.000000","966.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","795.000000","654.000000","861.000000","896.000000","861.000000","160.000000","6000.000000",,"8964994.000000",,,,, +"21547.000000","67.230000","21547.000000","67.230000","21547.000000","67.230000",,,,,,,,,,,,,,"156.000000","15739.500000","15346.000000","32.000000","15739.500000","15739.500000",,,,,,,,,,,"10244376.000000","12209576.000000","478840.000000","0.000000","67395176.000000","0.000000","87744316.000000",,"3623976.000000","24298520.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000",,,,,,,,"347.000000","15630.000000",,,,,,,,,,,"4706.000000","1165.000000","1263.000000","997.000000","1720.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","808.000000","670.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965014.000000",,,,, +"19386.000000","63.845000","19386.000000","63.845000","19386.000000","63.845000",,,,,,,,,,,,,,"2291.000000","12822.000000","10530.000000","10.000000","12822.000000","12822.000000",,,,,,,,,,,"8502588.000000","10515444.000000","478840.000000","0.000000","67399884.000000","0.000000","87745056.000000",,"3623976.000000","24296168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000",,,,,,,,"2307.000000",,,,,,,,,,,,"4290.000000","1166.000000","1107.000000","1020.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","779.000000","678.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965034.000000",,,,, +"20361.000000","65.380000","20361.000000","65.380000","20361.000000","65.380000",,,,,,,,,,,,,,"3888.000000","21597.000000","17326.000000","12.000000","21597.000000","21597.000000",,,,,,,,,,,"8417964.000000","10735480.000000","478840.000000","0.000000","67406404.000000","0.000000","87744316.000000",,"3623976.000000","24313248.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000",,,,,,,,"4286.000000","17693.000000",,,,,,,,,,,"4463.000000","1170.000000","1050.000000","1041.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","717.000000","760.000000","685.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965054.000000",,,,, +"18921.000000","63.110000","18921.000000","63.110000","18921.000000","63.110000",,,,,,,,,,,,,,"140.000000","22579.500000","22135.000000","27.000000","22579.500000","22579.500000",,,,,,,,,,,"8277608.000000","10484556.000000","478840.000000","0.000000","67394392.000000","0.000000","87745048.000000",,"3623976.000000","24325688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000",,,,,,,,"357.000000","22525.000000",,,,,,,,,,,"4327.000000","1165.000000","948.000000","1063.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","715.000000","702.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965074.000000",,,,, +"17829.000000","61.400000","17829.000000","61.400000","17829.000000","61.400000",,,,,,,,,,,,,,"66.000000","9963.000000","9682.000000","16.000000","9963.000000","9963.000000",,,,,,,,,,,"8844996.000000","10912760.000000","478840.000000","0.000000","67389520.000000","0.000000","87744316.000000",,"3623976.000000","24263572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000",,,,,,,,"208.000000","9969.000000",,,,,,,,,,,"4100.000000","1164.000000","977.000000","1097.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","695.000000","713.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965094.000000",,,,, +"19716.000000","64.355000","19716.000000","64.355000","19716.000000","64.355000",,,,,,,,,,,,,,"53.000000","11291.000000","10996.000000","32.000000","11291.000000","11291.000000",,,,,,,,,,,"8804016.000000","10473328.000000","478840.000000","0.000000","67381248.000000","0.000000","87744132.000000",,"3623976.000000","24313468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000",,,,,,,,"192.000000","11340.000000",,,,,,,,,,,"4287.000000","1163.000000","962.000000","1117.000000","1720.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","688.000000","724.000000","854.000000","839.000000","874.000000","160.000000","6000.000000",,"8965114.000000",,,,, +"19884.000000","64.610000","19884.000000","64.610000","19884.000000","64.610000",,,,,,,,,,,,,,"76.000000","12530.500000","11835.000000","12.000000","12530.500000","12530.500000",,,,,,,,,,,"8846148.000000","10725164.000000","478840.000000","0.000000","67364968.000000","0.000000","87744316.000000",,"3623976.000000","24327372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000",,,,,,,,"296.000000","12853.000000",,,,,,,,,,,"4321.000000","1161.000000","1025.000000","1144.000000","1704.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","686.000000","736.000000","852.000000","839.000000","874.000000","160.000000","6000.000000",,"8965134.000000",,,,, +"18343.000000","62.190000","18343.000000","62.190000","18343.000000","62.190000",,,,,,,,,,,,,,"393.000000","12405.000000","10930.000000","16.000000","12405.000000","12405.000000",,,,,,,,,,,"8821356.000000","10509732.000000","478840.000000","0.000000","67358224.000000","0.000000","87744316.000000",,"3623976.000000","24343916.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000",,,,,,,,"621.000000","12864.000000",,,,,,,,,,,"4289.000000","1152.000000","974.000000","1162.000000","1704.000000","1181.000000","1602.000000","0.000000","0.000000","0.000000","710.000000","700.000000","748.000000","845.000000","839.000000","874.000000","160.000000","6000.000000",,"8965154.000000",,,,, +"21580.000000","67.270000","21580.000000","67.270000","21580.000000","67.270000",,,,,,,,,,,,,,"54.000000","15714.000000","15232.000000","25.000000","15714.000000","15714.000000",,,,,,,,,,,"8674556.000000","10288956.000000","478840.000000","0.000000","67371276.000000","0.000000","87744316.000000",,"3623976.000000","24331708.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000",,,,,,,,"249.000000","15892.000000",,,,,,,,,,,"4329.000000","1156.000000","1091.000000","1186.000000","1704.000000","1645.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","705.000000","750.000000","845.000000","845.000000","874.000000","160.000000","6000.000000",,"8965174.000000",,,,, +"22989.000000","69.475000","22989.000000","69.475000","22989.000000","69.475000",,,,,,,,,,,,,,"72.000000","14572.500000","14316.000000","58.000000","14572.500000","14572.500000",,,,,,,,,,,"8422764.000000","9869396.000000","478840.000000","0.000000","67365784.000000","0.000000","87744184.000000",,"3623976.000000","24334948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000",,,,,,,,"218.000000","14537.000000",,,,,,,,,,,"4660.000000","1149.000000","1256.000000","1200.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","711.000000","769.000000","762.000000","861.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965194.000000",,,,, +"20178.000000","65.075000","20178.000000","65.075000","20178.000000","65.075000",,,,,,,,,,,,,,"56.000000","9925.000000","9680.000000","47.000000","9925.000000","9925.000000",,,,,,,,,,,"8632480.000000","9995220.000000","478840.000000","0.000000","67376492.000000","0.000000","87744184.000000",,"3623976.000000","24310516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000",,,,,,,,"191.000000","9921.000000",,,,,,,,,,,"4349.000000","1139.000000","1330.000000","1178.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","779.000000","758.000000","852.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965214.000000",,,,, +"22779.000000","69.145000","22779.000000","69.145000","22779.000000","69.145000",,,,,,,,,,,,,,"1318.000000","13088.000000","11585.000000","36.000000","13088.000000","13088.000000",,,,,,,,,,,"8678240.000000","10226676.000000","478840.000000","0.000000","67364876.000000","0.000000","87744184.000000",,"3623976.000000","24331416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000",,,,,,,,"1426.000000","11845.000000",,,,,,,,,,,"4427.000000","1137.000000","1425.000000","1191.000000","1684.000000","1970.000000","1686.000000","0.000000","0.000000","0.000000","711.000000","805.000000","751.000000","852.000000","1015.000000","884.000000","160.000000","6000.000000",,"8965234.000000",,,,, +"23124.000000","69.675000","23124.000000","69.675000","23124.000000","69.675000",,,,,,,,,,,,,,"9409.000000","23507.500000","13633.000000","9.000000","23507.500000","23507.500000",,,,,,,,,,,"8741152.000000","10289592.000000","478840.000000","0.000000","67347184.000000","0.000000","87744184.000000",,"3623976.000000","24345676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000",,,,,,,,"9979.000000","13992.000000",,,,,,,,,,,"4539.000000","1134.000000","1326.000000","1164.000000","1684.000000","1904.000000","1696.000000","0.000000","0.000000","0.000000","715.000000","798.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965254.000000",,,,, +"22362.000000","68.480000","22362.000000","68.480000","22362.000000","68.480000",,,,,,,,,,,,,,"3888.000000","27573.500000","23244.000000","32.000000","27573.500000","27573.500000",,,,,,,,,,,"8322880.000000","9955464.000000","478840.000000","0.000000","67334616.000000","0.000000","87749440.000000",,"3623976.000000","24389676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000",,,,,,,,"4271.000000","23742.000000",,,,,,,,,,,"4404.000000","1133.000000","1335.000000","1145.000000","1684.000000","1904.000000","1686.000000","0.000000","0.000000","0.000000","716.000000","822.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965274.000000",,,,, +"22521.000000","68.710000","22521.000000","68.710000","22521.000000","68.710000",,,,,,,,,,,,,,"2300.000000","17586.000000","15000.000000","20.000000","17586.000000","17586.000000",,,,,,,,,,,"8155104.000000","9753136.000000","478840.000000","0.000000","67306308.000000","0.000000","87749440.000000",,"3623976.000000","24364304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000",,,,,,,,"2508.000000","15363.000000",,,,,,,,,,,"4629.000000","1133.000000","1240.000000","1154.000000","1684.000000","1696.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","836.000000","759.000000","874.000000","956.000000","896.000000","160.000000","6000.000000",,"8965294.000000",,,,, +"21424.000000","66.990000","21424.000000","66.990000","21424.000000","66.990000",,,,,,,,,,,,,,"96.000000","22483.000000","22387.000000","51.000000","22483.000000","22483.000000",,,,,,,,,,,"7966224.000000","9794948.000000","478840.000000","0.000000","67294236.000000","0.000000","87749300.000000",,"3623976.000000","24378484.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000",,,,,,,,"313.000000",,,,,,,,,,,,"4353.000000","1125.000000","1204.000000","1152.000000","1684.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","720.000000","805.000000","755.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965314.000000",,,,, +"19240.000000","63.565000","19240.000000","63.565000","19240.000000","63.565000",,,,,,,,,,,,,,"524.000000","18280.000000","17320.000000","29.000000","18280.000000","18280.000000",,,,,,,,,,,"7631132.000000","9501804.000000","478840.000000","0.000000","67291652.000000","0.000000","87749756.000000",,"3623976.000000","24378604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000",,,,,,,,"1103.000000","17611.000000",,,,,,,,,,,"4192.000000","1118.000000","1179.000000","1159.000000","1645.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","776.000000","754.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965334.000000",,,,, +"22323.000000","68.390000","22323.000000","68.390000","22323.000000","68.390000",,,,,,,,,,,,,,"296.000000","18261.500000","17642.000000","39.000000","18261.500000","18261.500000",,,,,,,,,,,"7928092.000000","9597336.000000","478840.000000","0.000000","67291440.000000","0.000000","87749452.000000",,"3623976.000000","24413636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000",,,,,,,,"503.000000","18082.000000",,,,,,,,,,,"4619.000000","1119.000000","1109.000000","1166.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","721.000000","758.000000","758.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965354.000000",,,,, +"19720.000000","64.320000","19720.000000","64.320000","19720.000000","64.320000",,,,,,,,,,,,,,"321.000000","28277.500000","27665.000000","32.000000","28277.500000","28277.500000",,,,,,,,,,,"8200724.000000","9765100.000000","478840.000000","0.000000","67294692.000000","0.000000","87749452.000000",,"3623976.000000","24410136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000",,,,,,,,"591.000000","27977.000000",,,,,,,,,,,"4365.000000","1113.000000","1062.000000","1175.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","744.000000","761.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965374.000000",,,,, +"20325.000000","65.265000","20325.000000","65.265000","20325.000000","65.265000",,,,,,,,,,,,,,"191.000000","24800.000000","24248.000000","29.000000","24800.000000","24800.000000",,,,,,,,,,,"8200724.000000","9828012.000000","478840.000000","0.000000","67296340.000000","0.000000","87749452.000000",,"3623976.000000","24375032.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000",,,,,,,,"431.000000","24729.000000",,,,,,,,,,,"4367.000000","1107.000000","1033.000000","1170.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","759.000000","767.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965394.000000",,,,, +"20975.000000","66.285000","20975.000000","66.285000","20975.000000","66.285000",,,,,,,,,,,,,,"8745.000000","32989.000000","24039.000000","18.000000","32989.000000","32989.000000",,,,,,,,,,,"7541168.000000","9389708.000000","478840.000000","0.000000","67297880.000000","0.000000","87749452.000000",,"3623976.000000","24388360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000",,,,,,,,"8811.000000","24382.000000",,,,,,,,,,,"4194.000000","1105.000000","1035.000000","1180.000000","1645.000000","1231.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","740.000000","769.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965414.000000",,,,, +"20127.000000","64.945000","20127.000000","64.945000","20127.000000","64.945000",,,,,,,,,,,,,,"1583.000000","34497.000000","31214.000000","40.000000","34497.000000","34497.000000",,,,,,,,,,,"7447336.000000","9139156.000000","478840.000000","0.000000","67282040.000000","0.000000","87749416.000000",,"3623976.000000","24402028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000",,,,,,,,"2204.000000","33992.000000",,,,,,,,,,,"4462.000000","1103.000000","1060.000000","1182.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","737.000000","771.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965434.000000",,,,, +"20122.000000","64.935000","20122.000000","64.935000","20122.000000","64.935000",,,,,,,,,,,,,,"667.000000","25513.000000","24331.000000","32.000000","25513.000000","25513.000000",,,,,,,,,,,"7447388.000000","9118236.000000","478840.000000","0.000000","67269820.000000","0.000000","87749468.000000",,"3623976.000000","24433940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000",,,,,,,,"807.000000","25220.000000",,,,,,,,,,,"4429.000000","1101.000000","1096.000000","1195.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","735.000000","774.000000","874.000000","772.000000","896.000000","160.000000","6000.000000",,"8965454.000000",,,,, +"21932.000000","67.765000","21932.000000","67.765000","21932.000000","67.765000",,,,,,,,,,,,,,"1844.000000","16545.500000","14418.000000","19.000000","16545.500000","16545.500000",,,,,,,,,,,"7342528.000000","8866576.000000","478828.000000","0.000000","67263556.000000","0.000000","87749480.000000",,"3623976.000000","24414912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000",,,,,,,,"2126.000000","14702.000000",,,,,,,,,,,"4554.000000","1093.000000","1201.000000","1202.000000","1612.000000","2000.000000","1696.000000","0.000000","0.000000","0.000000","717.000000","746.000000","777.000000","874.000000","860.000000","896.000000","160.000000","6000.000000",,"8965474.000000",,,,, +"18947.000000","63.095000","18947.000000","63.095000","18947.000000","63.095000",,,,,,,,,,,,,,"7864.000000","36961.000000","29096.000000","69.000000","36961.000000","36961.000000",,,,,,,,,,,"7209360.000000","8908996.000000","478828.000000","0.000000","67269840.000000","0.000000","87749480.000000",,"3623976.000000","24407688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000",,,,,,,,"8155.000000",,,,,,,,,,,,"4361.000000","1073.000000","1193.000000","1169.000000","1589.000000","2000.000000","1686.000000","0.000000","0.000000","0.000000","714.000000","748.000000","767.000000","860.000000","861.000000","860.000000","160.000000","6000.000000",,"8965494.000000",,,,, +"19902.000000","64.590000","19902.000000","64.590000","19902.000000","64.590000",,,,,,,,,,,,,,"11021.000000","28991.000000","16694.000000","12.000000","28991.000000","28991.000000",,,,,,,,,,,"7587760.000000","9245604.000000","478828.000000","0.000000","67269988.000000","0.000000","87753140.000000",,"3623976.000000","24383920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000",,,,,,,,"11216.000000","19050.000000",,,,,,,,,,,"4373.000000","1059.000000","1129.000000","1154.000000","1543.000000","2000.000000","1589.000000","0.000000","0.000000","0.000000","712.000000","737.000000","766.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965514.000000",,,,, +"18103.000000","61.770000","18103.000000","61.770000","18103.000000","61.770000",,,,,,,,,,,,,,"14319.000000","35316.000000","19667.000000","8.000000","35316.000000","35316.000000",,,,,,,,,,,"7818448.000000","9350460.000000","478828.000000","0.000000","67266780.000000","0.000000","87753140.000000",,"3623976.000000","24442396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000",,,,,,,,"14677.000000","21968.000000",,,,,,,,,,,"4324.000000","1052.000000","929.000000","1103.000000","1543.000000","1553.000000","1337.000000","0.000000","0.000000","0.000000","712.000000","698.000000","756.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965534.000000",,,,, +"20337.000000","65.270000","20337.000000","65.270000","20337.000000","65.270000",,,,,,,,,,,,,,"12592.000000","36000.500000","21888.000000","38.000000","36000.500000","36000.500000",,,,,,,,,,,"8069964.000000","9952684.000000","478828.000000","0.000000","67267976.000000","0.000000","87752992.000000",,"3623976.000000","24440064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000",,,,,,,,"13151.000000","24369.000000",,,,,,,,,,,"4241.000000","1048.000000","914.000000","1087.000000","1543.000000","1239.000000","1300.000000","0.000000","0.000000","0.000000","711.000000","688.000000","745.000000","856.000000","776.000000","860.000000","160.000000","6000.000000",,"8965554.000000",,,,, +"20978.000000","66.290000","20978.000000","66.290000","20978.000000","66.290000",,,,,,,,,,,,,,"20547.000000","43035.000000","20864.000000","21.000000","43035.000000","43035.000000",,,,,,,,,,,"8028020.000000","9826852.000000","478828.000000","0.000000","67299084.000000","0.000000","87752992.000000",,"3623976.000000","24393256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000",,,,,,,,"21418.000000","23240.000000",,,,,,,,,,,"4436.000000","1054.000000","967.000000","1081.000000","1543.000000","1338.000000","1337.000000","0.000000","0.000000","0.000000","714.000000","710.000000","743.000000","856.000000","849.000000","860.000000","160.000000","6000.000000",,"8965574.000000",,,,, +"22341.000000","68.415000","22341.000000","68.415000","22341.000000","68.415000",,,,,,,,,,,,,,"9217.000000","37180.000000","26319.000000","41.000000","37180.000000","37180.000000",,,,,,,,,,,"8300792.000000","10183792.000000","478828.000000","0.000000","67278240.000000","0.000000","87753132.000000",,"3623976.000000","24429280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000",,,,,,,,"9845.000000","28979.000000",,,,,,,,,,,"4534.000000","1060.000000","1019.000000","1059.000000","1543.000000","1338.000000","1300.000000","0.000000","0.000000","0.000000","717.000000","745.000000","738.000000","857.000000","857.000000","849.000000","160.000000","6000.000000",,"8965594.000000",,,,, +"19414.000000","63.820000","19414.000000","63.820000","19414.000000","63.820000",,,,,,,,,,,,,,"5640.000000","22766.000000","17125.000000","50.000000","22766.000000","22766.000000",,,,,,,,,,,"8088832.000000","9815668.000000","478828.000000","0.000000","67258108.000000","0.000000","87753132.000000",,"3623976.000000","24445160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000",,,,,,,,,"19276.000000",,,,,,,,,,,"4281.000000","1069.000000","1057.000000","1057.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","720.000000","761.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965614.000000",,,,, +"19932.000000","64.615000","19932.000000","64.615000","19932.000000","64.615000",,,,,,,,,,,,,,"239.000000","19682.000000","18430.000000","34.000000","19682.000000","19682.000000",,,,,,,,,,,"8319532.000000","9878592.000000","478828.000000","0.000000","67224652.000000","0.000000","87753140.000000",,"3623976.000000","24459664.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000",,,,,,,,"530.000000","20164.000000",,,,,,,,,,,"4375.000000","1075.000000","998.000000","1045.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","723.000000","737.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965634.000000",,,,, +"19438.000000","63.840000","19438.000000","63.840000","19438.000000","63.840000",,,,,,,,,,,,,,"9334.000000","28557.500000","17807.000000","24.000000","28557.500000","28557.500000",,,,,,,,,,,"8151756.000000","9605676.000000","478828.000000","0.000000","67231212.000000","0.000000","87753140.000000",,"3623976.000000","24454028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000",,,,,,,,"9611.000000","20363.000000",,,,,,,,,,,"4342.000000","1079.000000","961.000000","1029.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","725.000000","723.000000","731.000000","860.000000","860.000000","849.000000","160.000000","6000.000000",,"8965654.000000",,,,, +"19749.000000","64.325000","19749.000000","64.325000","19749.000000","64.325000",,,,,,,,,,,,,,"4090.000000","25298.500000","19650.000000","20.000000","25298.500000","25298.500000",,,,,,,,,,,"7764768.000000","9223948.000000","478828.000000","0.000000","67218852.000000","0.000000","87753000.000000",,"3623976.000000","24465744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000",,,,,,,,"4462.000000","22394.000000",,,,,,,,,,,"4342.000000","1092.000000","968.000000","1039.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","731.000000","716.000000","730.000000","860.000000","841.000000","849.000000","160.000000","6000.000000",,"8965674.000000",,,,, +"19231.000000","63.510000","19231.000000","63.510000","19231.000000","63.510000",,,,,,,,,,,,,,"904.000000","12927.000000","10993.000000","6.000000","12927.000000","12927.000000",,,,,,,,,,,"7701852.000000","9161036.000000","478828.000000","0.000000","67208468.000000","0.000000","87753000.000000",,"3623976.000000","24420752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000",,,,,,,,"738.000000","13219.000000",,,,,,,,,,,"4193.000000","1102.000000","1000.000000","1038.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","736.000000","715.000000","727.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965694.000000",,,,, +"16486.000000","59.210000","16486.000000","59.210000","16486.000000","59.210000",,,,,,,,,,,,,,"13563.000000","27741.000000","14178.000000","7.000000","27741.000000","27741.000000",,,,,,,,,,,"7827820.000000","9307980.000000","478828.000000","0.000000","67207568.000000","0.000000","87753140.000000",,"3623976.000000","24430696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000",,,,,,,,"14339.000000",,,,,,,,,,,,"4120.000000","1104.000000","957.000000","1013.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","737.000000","679.000000","718.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965714.000000",,,,, +"16789.000000","59.680000","16789.000000","59.680000","16789.000000","59.680000",,,,,,,,,,,,,,"5747.000000","27894.500000","20817.000000","12.000000","27894.500000","27894.500000",,,,,,,,,,,"8376640.000000","9992532.000000","478828.000000","0.000000","67198968.000000","0.000000","87753140.000000",,"3623976.000000","24435160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000",,,,,,,,"6162.000000","23062.000000",,,,,,,,,,,"4093.000000","1108.000000","853.000000","997.000000","1543.000000","1152.000000","1337.000000","0.000000","0.000000","0.000000","738.000000","628.000000","708.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965734.000000",,,,, +"17978.000000","61.540000","17978.000000","61.540000","17978.000000","61.540000",,,,,,,,,,,,,,"13126.000000","48753.500000","34300.000000","11.000000","48753.500000","48753.500000",,,,,,,,,,,"8376640.000000","10076416.000000","478828.000000","0.000000","67197628.000000","0.000000","87753140.000000",,"3623976.000000","24513368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000",,,,,,,,"13317.000000","36764.000000",,,,,,,,,,,"4184.000000","1111.000000","789.000000","977.000000","1543.000000","951.000000","1337.000000","0.000000","0.000000","0.000000","742.000000","623.000000","704.000000","860.000000","744.000000","849.000000","160.000000","6000.000000",,"8965754.000000",,,,, +"18273.000000","62.000000","18273.000000","62.000000","18273.000000","62.000000",,,,,,,,,,,,,,"9442.000000","32568.500000","21357.000000","10.000000","32568.500000","32568.500000",,,,,,,,,,,"8166924.000000","9929896.000000","478828.000000","0.000000","67192796.000000","0.000000","87753140.000000",,"3623976.000000","24477508.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000",,,,,,,,"10268.000000","24070.000000",,,,,,,,,,,"4049.000000","1109.000000","831.000000","939.000000","1543.000000","1036.000000","1207.000000","0.000000","0.000000","0.000000","741.000000","633.000000","696.000000","860.000000","744.000000","841.000000","160.000000","6000.000000",,"8965774.000000",,,,, +"19087.000000","63.270000","19087.000000","63.270000","19087.000000","63.270000",,,,,,,,,,,,,,"427.000000","13213.000000","11570.000000","14.000000","13213.000000","13213.000000",,,,,,,,,,,"7615856.000000","9515720.000000","478828.000000","0.000000","67186984.000000","0.000000","87753132.000000",,"3623976.000000","24483860.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000",,,,,,,,"677.000000","13751.000000",,,,,,,,,,,"4217.000000","1103.000000","901.000000","939.000000","1539.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","740.000000","666.000000","692.000000","860.000000","803.000000","821.000000","160.000000","6000.000000",,"8965794.000000",,,,, +"18360.000000","62.135000","18360.000000","62.135000","18360.000000","62.135000",,,,,,,,,,,,,,"1070.000000","12349.000000","10504.000000","5.000000","12349.000000","12349.000000",,,,,,,,,,,"7616464.000000","9516460.000000","478828.000000","0.000000","67187404.000000","0.000000","87756348.000000",,"3623976.000000","24526056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000",,,,,,,,"476.000000","12646.000000",,,,,,,,,,,"4165.000000","1091.000000","946.000000","940.000000","1498.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","738.000000","664.000000","690.000000","857.000000","803.000000","821.000000","160.000000","6000.000000",,"8965814.000000",,,,, +"17084.000000","60.130000","17084.000000","60.130000","17084.000000","60.130000",,,,,,,,,,,,,,"848.000000","19231.500000","16740.000000","20.000000","19231.500000","19231.500000",,,,,,,,,,,"7660192.000000","9623476.000000","478828.000000","0.000000","67178056.000000","0.000000","87765724.000000",,"3623976.000000","24561800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000",,,,,,,,"1975.000000","18898.000000",,,,,,,,,,,"4014.000000","1077.000000","923.000000","938.000000","1453.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","731.000000","654.000000","687.000000","852.000000","803.000000","821.000000","160.000000","6000.000000",,"8965834.000000",,,,, +"18532.000000","62.410000","18532.000000","62.410000","18532.000000","62.410000",,,,,,,,,,,,,,"93.000000","12235.500000","10749.000000","8.000000","12235.500000","12235.500000",,,,,,,,,,,"7516576.000000","9816076.000000","478828.000000","0.000000","67194228.000000","0.000000","87782500.000000",,"3623976.000000","24562008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000",,,,,,,,"686.000000","12941.000000",,,,,,,,,,,"4207.000000","1062.000000","901.000000","936.000000","1362.000000","1027.000000","1206.000000","0.000000","0.000000","0.000000","727.000000","640.000000","682.000000","850.000000","712.000000","821.000000","160.000000","6000.000000",,"8965854.000000",,,,, +"18686.000000","62.650000","18686.000000","62.650000","18686.000000","62.650000",,,,,,,,,,,,,,"1057.000000","15062.500000","12796.000000","23.000000","15062.500000","15062.500000",,,,,,,,,,,"7426592.000000","9726092.000000","478828.000000","0.000000","67195620.000000","0.000000","87782500.000000",,"3623976.000000","24534556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000",,,,,,,,"1318.000000","14953.000000",,,,,,,,,,,"4232.000000","1049.000000","868.000000","920.000000","1338.000000","1027.000000","1152.000000","0.000000","0.000000","0.000000","725.000000","642.000000","676.000000","849.000000","768.000000","803.000000","160.000000","6000.000000",,"8965874.000000",,,,, +"17972.000000","61.540000","17972.000000","61.540000","17972.000000","61.540000",,,,,,,,,,,,,,"1762.000000","14729.500000","11631.000000","37.000000","14729.500000","14729.500000",,,,,,,,,,,"7195900.000000","9662892.000000","478828.000000","0.000000","67217092.000000","0.000000","87782500.000000",,"3623976.000000","24505728.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000",,,,,,,,"2057.000000","14008.000000",,,,,,,,,,,"4098.000000","1043.000000","910.000000","916.000000","1338.000000","1129.000000","1152.000000","0.000000","0.000000","0.000000","722.000000","662.000000","670.000000","849.000000","768.000000","790.000000","160.000000","6000.000000",,"8965894.000000",,,,, +"16521.000000","59.265000","16521.000000","59.265000","16521.000000","59.265000",,,,,,,,,,,,,,"57.000000","12663.000000","11479.000000","17.000000","12663.000000","12663.000000",,,,,,,,,,,"6629540.000000","8760996.000000","478828.000000","0.000000","67206032.000000","0.000000","87782376.000000",,"3623976.000000","24511648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000",,,,,,,,"289.000000","13500.000000",,,,,,,,,,,"4069.000000","1035.000000","849.000000","895.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","716.000000","639.000000","658.000000","845.000000","768.000000","775.000000","160.000000","6000.000000",,"8965914.000000",,,,, +"16782.000000","59.670000","16782.000000","59.670000","16782.000000","59.670000",,,,,,,,,,,,,,"124.000000","12825.000000","11718.000000","5.000000","12825.000000","12825.000000",,,,,,,,,,,"6683684.000000","8836108.000000","478828.000000","0.000000","67207664.000000","0.000000","87782376.000000",,"3623976.000000","24508272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000",,,,,,,,"343.000000","13464.000000",,,,,,,,,,,"4200.000000","1031.000000","840.000000","889.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","715.000000","626.000000","654.000000","845.000000","701.000000","768.000000","160.000000","6000.000000",,"8965934.000000",,,,, +"16178.000000","58.720000","16178.000000","58.720000","16178.000000","58.720000",,,,,,,,,,,,,,"68.000000","12629.500000","11572.000000","3.000000","12629.500000","12629.500000",,,,,,,,,,,"6641744.000000","8919988.000000","478828.000000","0.000000","67196920.000000","0.000000","87782376.000000",,"3623976.000000","24488052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000",,,,,,,,"308.000000","13310.000000",,,,,,,,,,,"3896.000000","1024.000000","758.000000","876.000000","1337.000000","1006.000000","1121.000000","0.000000","0.000000","0.000000","711.000000","589.000000","643.000000","845.000000","701.000000","744.000000","160.000000","6000.000000",,"8965954.000000",,,,, +"16237.000000","58.815000","16237.000000","58.815000","16237.000000","58.815000",,,,,,,,,,,,,,"45.000000","9012.000000","8917.000000","25.000000","9012.000000","9012.000000",,,,,,,,,,,"6793836.000000","8978184.000000","478828.000000","0.000000","67198656.000000","0.000000","87808824.000000",,"3623976.000000","24511548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000",,,,,,,,"157.000000","8905.000000",,,,,,,,,,,"4133.000000","1020.000000","730.000000","847.000000","1337.000000","1006.000000","1027.000000","0.000000","0.000000","0.000000","708.000000","596.000000","634.000000","845.000000","701.000000","712.000000","160.000000","6000.000000",,"8965974.000000",,,,, +"15510.000000","57.675000","15510.000000","57.675000","15510.000000","57.675000",,,,,,,,,,,,,,"84.000000","12597.000000","12513.000000","28.000000","12597.000000","12597.000000",,,,,,,,,,,"6745672.000000","8881716.000000","478828.000000","0.000000","67200340.000000","0.000000","87808964.000000",,"3623976.000000","24419016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000",,,,,,,,"228.000000",,,,,,,,,,,,"4083.000000","1012.000000","699.000000","829.000000","1337.000000","819.000000","1019.000000","0.000000","0.000000","0.000000","706.000000","571.000000","625.000000","845.000000","659.000000","706.000000","160.000000","6000.000000",,"8965994.000000",,,,, +"17348.000000","60.550000","17348.000000","60.550000","17348.000000","60.550000",,,,,,,,,,,,,,"59.000000","8706.000000","8435.000000","7.000000","8706.000000","8706.000000",,,,,,,,,,,"6473040.000000","8734920.000000","478828.000000","0.000000","67187924.000000","0.000000","87808964.000000",,"3623976.000000","24406024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000",,,,,,,,"175.000000","8742.000000",,,,,,,,,,,"4137.000000","1009.000000","748.000000","834.000000","1337.000000","942.000000","1019.000000","0.000000","0.000000","0.000000","705.000000","601.000000","628.000000","845.000000","688.000000","706.000000","160.000000","6000.000000",,"8966014.000000",,,,, +"18837.000000","62.870000","18837.000000","62.870000","18837.000000","62.870000",,,,,,,,,,,,,,"116.000000","12471.000000","12118.000000","10.000000","12471.000000","12471.000000",,,,,,,,,,,"6336152.000000","8441324.000000","478828.000000","0.000000","67165792.000000","0.000000","87808968.000000",,"3623976.000000","24418764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000",,,,,,,,"280.000000","12427.000000",,,,,,,,,,,"4211.000000","1005.000000","798.000000","836.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","704.000000","622.000000","633.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966034.000000",,,,, +"17218.000000","60.330000","17218.000000","60.330000","17218.000000","60.330000",,,,,,,,,,,,,,"338.000000","10804.500000","10251.000000","3.000000","10804.500000","10804.500000",,,,,,,,,,,"6384456.000000","8537932.000000","478828.000000","0.000000","67153424.000000","0.000000","87808968.000000",,"3623976.000000","24609348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000",,,,,,,,"498.000000","10521.000000",,,,,,,,,,,"4270.000000","1002.000000","818.000000","834.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","702.000000","639.000000","628.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966054.000000",,,,, +"18803.000000","62.820000","18803.000000","62.820000","18803.000000","62.820000",,,,,,,,,,,,,,"174.000000","20841.500000","20313.000000","30.000000","20841.500000","20841.500000",,,,,,,,,,,"6531252.000000","8579876.000000","478828.000000","0.000000","67171696.000000","0.000000","87808968.000000",,"3623976.000000","24546732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000",,,,,,,,"452.000000","20742.000000",,,,,,,,,,,"4130.000000","993.000000","854.000000","839.000000","1279.000000","1064.000000","1019.000000","0.000000","0.000000","0.000000","701.000000","652.000000","632.000000","844.000000","783.000000","712.000000","160.000000","6000.000000",,"8966074.000000",,,,, +"17791.000000","61.235000","17791.000000","61.235000","17791.000000","61.235000",,,,,,,,,,,,,,"57.000000","12250.000000","10956.000000","6.000000","12250.000000","12250.000000",,,,,,,,,,,"6416484.000000","8056740.000000","478828.000000","0.000000","67170744.000000","0.000000","87808968.000000",,"3623976.000000","24545932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000",,,,,,,,"313.000000","13172.000000",,,,,,,,,,,"4098.000000","979.000000","860.000000","828.000000","1254.000000","1064.000000","1015.000000","0.000000","0.000000","0.000000","696.000000","645.000000","629.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966094.000000",,,,, +"19099.000000","63.285000","19099.000000","63.285000","19099.000000","63.285000",,,,,,,,,,,,,,"52.000000","14912.500000","13795.000000","12.000000","14912.500000","14912.500000",,,,,,,,,,,"6416484.000000","8224512.000000","478828.000000","0.000000","67182688.000000","0.000000","87808968.000000",,"3623976.000000","24523828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000",,,,,,,,"353.000000","15624.000000",,,,,,,,,,,"4133.000000","978.000000","973.000000","840.000000","1254.000000","1276.000000","1027.000000","0.000000","0.000000","0.000000","694.000000","661.000000","628.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966114.000000",,,,, +"19800.000000","64.380000","19800.000000","64.380000","19800.000000","64.380000",,,,,,,,,,,,,,"623.000000","13260.000000","11401.000000","11.000000","13260.000000","13260.000000",,,,,,,,,,,"6018032.000000","7826056.000000","478828.000000","0.000000","67172760.000000","0.000000","87808968.000000",,"3623976.000000","24534228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000",,,,,,,,"879.000000","13617.000000",,,,,,,,,,,"4224.000000","964.000000","976.000000","849.000000","1239.000000","1276.000000","1053.000000","0.000000","0.000000","0.000000","693.000000","678.000000","636.000000","824.000000","757.000000","729.000000","160.000000","6000.000000",,"8966134.000000",,,,, +"18784.000000","62.790000","18784.000000","62.790000","18784.000000","62.790000",,,,,,,,,,,,,,"61.000000","14703.500000","13503.000000","12.000000","14703.500000","14703.500000",,,,,,,,,,,"6363320.000000","8213280.000000","478828.000000","0.000000","67167084.000000","0.000000","87808804.000000",,"3623976.000000","24573620.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000",,,,,,,,"665.000000","15176.000000",,,,,,,,,,,"4135.000000","959.000000","1027.000000","853.000000","1236.000000","1276.000000","1118.000000","0.000000","0.000000","0.000000","688.000000","689.000000","638.000000","811.000000","757.000000","733.000000","160.000000","6000.000000",,"8966154.000000",,,,, +"19696.000000","64.220000","19696.000000","64.220000","19696.000000","64.220000",,,,,,,,,,,,,,"204.000000","9854.500000","9594.000000","29.000000","9854.500000","9854.500000",,,,,,,,,,,"6508376.000000","8358336.000000","478828.000000","0.000000","67181368.000000","0.000000","87808944.000000",,"3623976.000000","24597340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000",,,,,,,,"215.000000","9694.000000",,,,,,,,,,,"4272.000000","955.000000","983.000000","863.000000","1231.000000","1236.000000","1118.000000","0.000000","0.000000","0.000000","687.000000","706.000000","641.000000","803.000000","757.000000","733.000000","160.000000","6000.000000",,"8966174.000000",,,,, +"18028.000000","61.605000","18028.000000","61.605000","18028.000000","61.605000",,,,,,,,,,,,,,"54.000000","11208.500000","10939.000000","15.000000","11208.500000","11208.500000",,,,,,,,,,,"7305292.000000","9071364.000000","478828.000000","0.000000","67168224.000000","0.000000","87808944.000000",,"3623976.000000","24581896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000",,,,,,,,"203.000000","11221.000000",,,,,,,,,,,"4155.000000","943.000000","933.000000","854.000000","1216.000000","1236.000000","1064.000000","0.000000","0.000000","0.000000","682.000000","678.000000","640.000000","790.000000","752.000000","733.000000","160.000000","6000.000000",,"8966194.000000",,,,, +"19914.000000","64.560000","19914.000000","64.560000","19914.000000","64.560000",,,,,,,,,,,,,,"42.000000","12820.000000","12512.000000","10.000000","12820.000000","12820.000000",,,,,,,,,,,"6822952.000000","8661848.000000","478828.000000","0.000000","67168700.000000","0.000000","87808944.000000",,"3623976.000000","24579016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000",,,,,,,,"210.000000","12876.000000",,,,,,,,,,,"4169.000000","941.000000","935.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","681.000000","690.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966214.000000",,,,, +"17008.000000","60.000000","17008.000000","60.000000","17008.000000","60.000000",,,,,,,,,,,,,,"69.000000","12710.000000","12412.000000","20.000000","12710.000000","12710.000000",,,,,,,,,,,"6869320.000000","8707892.000000","478828.000000","0.000000","67162580.000000","0.000000","87800868.000000",,"3623976.000000","24572792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000",,,,,,,,"236.000000","12702.000000",,,,,,,,,,,"4100.000000","934.000000","877.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","679.000000","660.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966234.000000",,,,, +"18335.000000","62.085000","18335.000000","62.085000","18335.000000","62.085000",,,,,,,,,,,,,,"47.000000","12348.000000","12172.000000","5.000000","12348.000000","12348.000000",,,,,,,,,,,"6659604.000000","8498464.000000","478828.000000","0.000000","67164636.000000","0.000000","87800868.000000",,"3623976.000000","24570836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000",,,,,,,,"222.000000","12255.000000",,,,,,,,,,,"3983.000000","929.000000","906.000000","883.000000","1202.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","676.000000","662.000000","654.000000","783.000000","780.000000","752.000000","160.000000","6000.000000",,"8966254.000000",,,,, +"18978.000000","63.085000","18978.000000","63.085000","18978.000000","63.085000",,,,,,,,,,,,,,"64.000000","10024.500000","9787.000000","16.000000","10024.500000","10024.500000",,,,,,,,,,,"6869180.000000","8928824.000000","478828.000000","0.000000","67158472.000000","0.000000","87800732.000000",,"3623976.000000","24597924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000",,,,,,,,"200.000000","9996.000000",,,,,,,,,,,"4126.000000","931.000000","913.000000","906.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","675.000000","656.000000","660.000000","783.000000","811.000000","757.000000","160.000000","6000.000000",,"8966274.000000",,,,, +"17816.000000","61.260000","17816.000000","61.260000","17816.000000","61.260000",,,,,,,,,,,,,,"49.000000","12400.000000","12047.000000","13.000000","12400.000000","12400.000000",,,,,,,,,,,"6556732.000000","8771588.000000","478828.000000","0.000000","67150976.000000","0.000000","87800732.000000",,"3623976.000000","24603176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000",,,,,,,,"226.000000","12477.000000",,,,,,,,,,,"4274.000000","927.000000","922.000000","915.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","673.000000","670.000000","667.000000","783.000000","811.000000","759.000000","160.000000","6000.000000",,"8966294.000000",,,,, +"19215.000000","63.450000","19215.000000","63.450000","19215.000000","63.450000",,,,,,,,,,,,,,"42.000000","12655.500000","12428.000000","7.000000","12655.500000","12655.500000",,,,,,,,,,,"6221188.000000","8373128.000000","478828.000000","0.000000","67138336.000000","0.000000","87800732.000000",,"3623976.000000","24595940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000",,,,,,,,"213.000000","12626.000000",,,,,,,,,,,"4283.000000","921.000000","914.000000","917.000000","1164.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","672.000000","686.000000","671.000000","789.000000","811.000000","780.000000","160.000000","6000.000000",,"8966314.000000",,,,, +"18354.000000","62.095000","18354.000000","62.095000","18354.000000","62.095000",,,,,,,,,,,,,,"70.000000","12529.000000","12458.000000","3.000000","12529.000000","12529.000000",,,,,,,,,,,"6032444.000000","8037584.000000","478828.000000","0.000000","67126084.000000","0.000000","87800732.000000",,"3623976.000000","24658084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000",,,,,,,,"234.000000",,,,,,,,,,,,"4241.000000","922.000000","924.000000","931.000000","1164.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","671.000000","674.000000","671.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966334.000000",,,,, +"17603.000000","60.905000","17603.000000","60.905000","17603.000000","60.905000",,,,,,,,,,,,,,"399.000000","12465.500000","11711.000000","3.000000","12465.500000","12465.500000",,,,,,,,,,,"5900400.000000","7821656.000000","478828.000000","0.000000","67113004.000000","0.000000","87800800.000000",,"3623976.000000","24661360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000",,,,,,,,"527.000000","12293.000000",,,,,,,,,,,"4080.000000","916.000000","926.000000","936.000000","1152.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","668.000000","663.000000","672.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966354.000000",,,,, +"22167.000000","68.055000","22167.000000","68.055000","22167.000000","68.055000",,,,,,,,,,,,,,"62.000000","14109.500000","12913.000000","32.000000","14109.500000","14109.500000",,,,,,,,,,,"5858460.000000","7821372.000000","478828.000000","0.000000","67104204.000000","0.000000","87800800.000000",,"3623976.000000","24669016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000",,,,,,,,"325.000000","14919.000000",,,,,,,,,,,"4491.000000","916.000000","1112.000000","968.000000","1152.000000","1881.000000","1202.000000","0.000000","0.000000","0.000000","669.000000","697.000000","680.000000","789.000000","973.000000","788.000000","160.000000","6000.000000",,"8966374.000000",,,,, +"17990.000000","61.510000","17990.000000","61.510000","17990.000000","61.510000",,,,,,,,,,,,,,"53.000000","18263.000000","17512.000000","25.000000","18263.000000","18263.000000",,,,,,,,,,,"6005120.000000","7758312.000000","478828.000000","0.000000","67096036.000000","0.000000","87800660.000000",,"3623976.000000","24657300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000",,,,,,,,"289.000000","18671.000000",,,,,,,,,,,"4283.000000","914.000000","1086.000000","977.000000","1152.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","696.000000","681.000000","783.000000","973.000000","788.000000","160.000000","6000.000000",,"8966394.000000",,,,, +"20122.000000","64.845000","20122.000000","64.845000","20122.000000","64.845000",,,,,,,,,,,,,,"108.000000","10569.000000","10231.000000","14.000000","10569.000000","10569.000000",,,,,,,,,,,"6508440.000000","8219688.000000","478828.000000","0.000000","67085876.000000","0.000000","87800660.000000",,"3623976.000000","24655052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000",,,,,,,,"244.000000","10555.000000",,,,,,,,,,,"4174.000000","921.000000","1203.000000","982.000000","1202.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","720.000000","684.000000","788.000000","973.000000","791.000000","160.000000","6000.000000",,"8966414.000000",,,,, +"19566.000000","63.980000","19566.000000","63.980000","19566.000000","63.980000",,,,,,,,,,,,,,"184.000000","9621.000000","9421.000000","12.000000","9621.000000","9621.000000",,,,,,,,,,,"6676348.000000","8219828.000000","478828.000000","0.000000","67096052.000000","0.000000","87800800.000000",,"3623976.000000","24674172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000",,,,,,,,"254.000000","9382.000000",,,,,,,,,,,"4251.000000","935.000000","1221.000000","1017.000000","1207.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","695.000000","684.000000","788.000000","791.000000","791.000000","160.000000","6000.000000",,"8966434.000000",,,,, +"20937.000000","66.125000","20937.000000","66.125000","20937.000000","66.125000",,,,,,,,,,,,,,"52.000000","11039.500000","10714.000000","9.000000","11039.500000","11039.500000",,,,,,,,,,,"6068172.000000","7527772.000000","478828.000000","0.000000","67098604.000000","0.000000","87800800.000000",,"3623976.000000","24670888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000",,,,,,,,"193.000000","11119.000000",,,,,,,,,,,"4336.000000","941.000000","1309.000000","1033.000000","1217.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","670.000000","728.000000","689.000000","789.000000","837.000000","796.000000","160.000000","6000.000000",,"8966454.000000",,,,, +"20516.000000","65.480000","20516.000000","65.480000","20516.000000","65.480000",,,,,,,,,,,,,,"70.000000","13105.500000","12617.000000","7.000000","13105.500000","13105.500000",,,,,,,,,,,"6319828.000000","7779428.000000","478828.000000","0.000000","67128664.000000","0.000000","87800800.000000",,"3623976.000000","24615536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000",,,,,,,,"614.000000","12910.000000",,,,,,,,,,,"4295.000000","945.000000","1332.000000","1052.000000","1223.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","742.000000","691.000000","783.000000","837.000000","796.000000","160.000000","6000.000000",,"8966474.000000",,,,, +"16190.000000","58.700000","16190.000000","58.700000","16190.000000","58.700000",,,,,,,,,,,,,,"280.000000","16458.000000","15573.000000","18.000000","16458.000000","16458.000000",,,,,,,,,,,"6101708.000000","7937924.000000","478828.000000","0.000000","67119672.000000","0.000000","87800800.000000",,"3623976.000000","24628648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000",,,,,,,,"455.000000","16608.000000",,,,,,,,,,,"4135.000000","942.000000","1120.000000","1055.000000","1223.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","666.000000","702.000000","688.000000","781.000000","837.000000","796.000000","160.000000","6000.000000",,"8966494.000000",,,,, +"14336.000000","55.790000","14336.000000","55.790000","14336.000000","55.790000",,,,,,,,,,,,,,"131.000000","8518.500000","8122.000000","35.000000","8518.500000","8518.500000",,,,,,,,,,,"6111480.000000","7979724.000000","478828.000000","0.000000","67105136.000000","0.000000","87800660.000000",,"3623976.000000","24640880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000",,,,,,,,"247.000000","8536.000000",,,,,,,,,,,"4059.000000","929.000000","887.000000","1024.000000","1217.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","660.000000","616.000000","674.000000","775.000000","781.000000","796.000000","160.000000","6000.000000",,"8966514.000000",,,,, +"14371.000000","55.840000","14371.000000","55.840000","14371.000000","55.840000",,,,,,,,,,,,,,"55.000000","5995.500000","5914.000000","13.000000","5995.500000","5995.500000",,,,,,,,,,,"6573748.000000","8525876.000000","478828.000000","0.000000","67093524.000000","0.000000","87801552.000000",,"3623976.000000","24638812.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000",,,,,,,,"143.000000","5879.000000",,,,,,,,,,,"4073.000000","922.000000","657.000000","1008.000000","1217.000000","1155.000000","1472.000000","0.000000","0.000000","0.000000","656.000000","540.000000","667.000000","768.000000","727.000000","796.000000","160.000000","6000.000000",,"8966534.000000",,,,, +"11980.000000","52.090000","11980.000000","52.090000","11980.000000","52.090000",,,,,,,,,,,,,,"57.000000","4134.500000","3988.000000","9.000000","4134.500000","4134.500000",,,,,,,,,,,"7598472.000000","9814544.000000","478828.000000","0.000000","67084104.000000","0.000000","87800800.000000",,"3623976.000000","24650892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000",,,,,,,,"134.000000","4088.000000",,,,,,,,,,,"3977.000000","915.000000","556.000000","985.000000","1217.000000","644.000000","1472.000000","0.000000","0.000000","0.000000","651.000000","493.000000","655.000000","762.000000","570.000000","796.000000","160.000000","6000.000000",,"8966554.000000",,,,, +"12678.000000","53.175000","12678.000000","53.175000","12678.000000","53.175000",,,,,,,,,,,,,,"56.000000","6150.500000","5695.000000","4.000000","6150.500000","6150.500000",,,,,,,,,,,"7347964.000000","9647928.000000","478828.000000","0.000000","67071532.000000","0.000000","87800800.000000",,"3623976.000000","24689820.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000",,,,,,,,"141.000000","6407.000000",,,,,,,,,,,"3963.000000","900.000000","530.000000","947.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","644.000000","466.000000","636.000000","759.000000","560.000000","791.000000","160.000000","6000.000000",,"8966574.000000",,,,, +"13298.000000","54.145000","13298.000000","54.145000","13298.000000","54.145000",,,,,,,,,,,,,,"52.000000","5455.500000","5361.000000","25.000000","5455.500000","5455.500000",,,,,,,,,,,"7012424.000000","9312388.000000","478828.000000","0.000000","67065940.000000","0.000000","87800800.000000",,"3623976.000000","24717072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000",,,,,,,,"136.000000","5361.000000",,,,,,,,,,,"4035.000000","891.000000","538.000000","931.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","639.000000","460.000000","625.000000","759.000000","560.000000","788.000000","160.000000","6000.000000",,"8966594.000000",,,,, +"12596.000000","53.045000","12596.000000","53.045000","12596.000000","53.045000",,,,,,,,,,,,,,"116.000000","5522.500000","5005.000000","3.000000","5522.500000","5522.500000",,,,,,,,,,,"6800576.000000","8774908.000000","478828.000000","0.000000","67070000.000000","0.000000","87800800.000000",,"3623976.000000","24702996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000",,,,,,,,"205.000000","5718.000000",,,,,,,,,,,"3976.000000","886.000000","521.000000","906.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","636.000000","451.000000","608.000000","759.000000","560.000000","781.000000","160.000000","6000.000000",,"8966614.000000",,,,, +"12446.000000","52.810000","12446.000000","52.810000","12446.000000","52.810000",,,,,,,,,,,,,,"61.000000","5831.500000","4780.000000","3.000000","5831.500000","5831.500000",,,,,,,,,,,"6590812.000000","8669996.000000","478828.000000","0.000000","67069088.000000","0.000000","87800752.000000",,"3623976.000000","24704368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000",,,,,,,,"266.000000","6556.000000",,,,,,,,,,,"3746.000000","879.000000","541.000000","871.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","632.000000","449.000000","591.000000","759.000000","547.000000","781.000000","160.000000","6000.000000",,"8966634.000000",,,,, +"16241.000000","58.760000","16241.000000","58.760000","16241.000000","58.760000",,,,,,,,,,,,,,"350.000000","13565.000000","12752.000000","24.000000","13565.000000","13565.000000",,,,,,,,,,,"6506924.000000","8753876.000000","478828.000000","0.000000","67079968.000000","0.000000","87800752.000000",,"3623976.000000","24696264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000",,,,,,,,"538.000000","13488.000000",,,,,,,,,,,"4022.000000","878.000000","585.000000","863.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","630.000000","483.000000","589.000000","759.000000","658.000000","781.000000","160.000000","6000.000000",,"8966654.000000",,,,, +"17283.000000","60.395000","17283.000000","60.395000","17283.000000","60.395000",,,,,,,,,,,,,,"37.000000","8774.500000","8567.000000","23.000000","8774.500000","8774.500000",,,,,,,,,,,"5980608.000000","8290476.000000","478828.000000","0.000000","67083712.000000","0.000000","87800752.000000",,"3623976.000000","24697060.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000",,,,,,,,"144.000000","8800.000000",,,,,,,,,,,"4032.000000","875.000000","678.000000","819.000000","1217.000000","998.000000","1417.000000","0.000000","0.000000","0.000000","629.000000","530.000000","574.000000","759.000000","663.000000","759.000000","160.000000","6000.000000",,"8966674.000000",,,,, +"15454.000000","57.525000","15454.000000","57.525000","15454.000000","57.525000",,,,,,,,,,,,,,"88.000000","27832.500000","27853.000000","84.000000","27832.500000","27832.500000",,,,,,,,,,,"6064496.000000","8069704.000000","478828.000000","0.000000","67075088.000000","0.000000","87800752.000000",,"3623976.000000","24704364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000",,,,,,,,"314.000000","27409.000000",,,,,,,,,,,"4259.000000","870.000000","761.000000","806.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","627.000000","593.000000","570.000000","759.000000","767.000000","762.000000","160.000000","6000.000000",,"8966694.000000",,,,, +"13294.000000","54.135000","13294.000000","54.135000","13294.000000","54.135000",,,,,,,,,,,,,,"184.000000","22602.000000","22418.000000","87.000000","22602.000000","22602.000000",,,,,,,,,,,"6274260.000000","8363352.000000","478828.000000","0.000000","67061364.000000","0.000000","87800800.000000",,"3623976.000000","24690628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000",,,,,,,,"363.000000",,,,,,,,,,,,"3889.000000","863.000000","721.000000","767.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","623.000000","556.000000","556.000000","759.000000","767.000000","759.000000","160.000000","6000.000000",,"8966714.000000",,,,, +"14892.000000","56.670000","14892.000000","56.670000","14892.000000","56.670000",,,,,,,,,,,,,,"134.000000","25709.000000","24519.000000","128.000000","25709.000000","25709.000000",,,,,,,,,,,"6718816.000000","8499620.000000","478828.000000","0.000000","67127268.000000","0.000000","87800800.000000",,"3623976.000000","24666476.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000",,,,,,,,"359.000000","26404.000000",,,,,,,,,,,"3958.000000","859.000000","679.000000","711.000000","1206.000000","1206.000000","1206.000000","0.000000","0.000000","0.000000","621.000000","542.000000","544.000000","759.000000","767.000000","750.000000","160.000000","6000.000000",,"8966734.000000",,,,, +"15418.000000","57.515000","15418.000000","57.515000","15418.000000","57.515000",,,,,,,,,,,,,,"65.000000","29759.000000","29387.000000","121.000000","29759.000000","29759.000000",,,,,,,,,,,"7391540.000000","8984740.000000","478828.000000","0.000000","67169992.000000","0.000000","87802432.000000",,"3623976.000000","24590604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000",,,,,,,,"320.000000","29746.000000",,,,,,,,,,,"4076.000000","851.000000","620.000000","668.000000","1206.000000","765.000000","1145.000000","0.000000","0.000000","0.000000","618.000000","512.000000","527.000000","759.000000","610.000000","727.000000","160.000000","6000.000000",,"8966754.000000",,,,, +"13208.000000","54.035000","13208.000000","54.035000","13208.000000","54.035000",,,,,,,,,,,,,,"135.000000","27167.000000","26509.000000","132.000000","27167.000000","27167.000000",,,,,,,,,,,"7641428.000000","9234628.000000","478828.000000","0.000000","67134148.000000","0.000000","87800660.000000",,"3623976.000000","24617396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000",,,,,,,,"720.000000","26968.000000",,,,,,,,,,,"3952.000000","846.000000","615.000000","623.000000","1206.000000","765.000000","791.000000","0.000000","0.000000","0.000000","614.000000","511.000000","510.000000","757.000000","610.000000","610.000000","160.000000","6000.000000",,"8966774.000000",,,,, +"13471.000000","54.430000","13471.000000","54.430000","13471.000000","54.430000",,,,,,,,,,,,,,"72.000000","27039.500000","26584.000000","116.000000","27039.500000","27039.500000",,,,,,,,,,,"7318608.000000","8886680.000000","478828.000000","0.000000","67098324.000000","0.000000","87800824.000000",,"3623976.000000","24608296.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000",,,,,,,,"316.000000","27106.000000",,,,,,,,,,,"3857.000000","838.000000","594.000000","606.000000","1206.000000","765.000000","765.000000","0.000000","0.000000","0.000000","610.000000","487.000000","501.000000","757.000000","610.000000","597.000000","160.000000","6000.000000",,"8966794.000000",,,,, +"11434.000000","51.225000","11434.000000","51.225000","11434.000000","51.225000",,,,,,,,,,,,,,"47.000000","26897.500000","26555.000000","124.000000","26897.500000","26897.500000",,,,,,,,,,,"7957744.000000","10050104.000000","478828.000000","0.000000","67068380.000000","0.000000","87800904.000000",,"3623976.000000","24637396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000",,,,,,,,"261.000000","26931.000000",,,,,,,,,,,"4097.000000","830.000000","527.000000","596.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","606.000000","450.000000","494.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966814.000000",,,,, +"12475.000000","52.840000","12475.000000","52.840000","12475.000000","52.840000",,,,,,,,,,,,,,"120.000000","25088.500000","25189.000000","126.000000","25088.500000","25088.500000",,,,,,,,,,,"7874608.000000","10134740.000000","478828.000000","0.000000","67036204.000000","0.000000","87801656.000000",,"3623976.000000","24674964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000",,,,,,,,"294.000000","24574.000000",,,,,,,,,,,"3991.000000","823.000000","495.000000","591.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","601.000000","436.000000","489.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966834.000000",,,,, +"13222.000000","53.990000","13222.000000","53.990000","13222.000000","53.990000",,,,,,,,,,,,,,"67.000000","34680.500000","33595.000000","67.000000","34680.500000","34680.500000",,,,,,,,,,,"7456556.000000","9513252.000000","478828.000000","0.000000","67000704.000000","0.000000","87800904.000000",,"3623976.000000","24681648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000",,,,,,,,"347.000000","35352.000000",,,,,,,,,,,"4014.000000","821.000000","500.000000","594.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","600.000000","451.000000","492.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966854.000000",,,,, +"12451.000000","52.765000","12451.000000","52.765000","12451.000000","52.765000",,,,,,,,,,,,,,"62.000000","22429.000000","22367.000000","71.000000","22429.000000","22429.000000",,,,,,,,,,,"7917932.000000","9817912.000000","478824.000000","0.000000","66969888.000000","0.000000","87800908.000000",,"3623976.000000","24712128.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000",,,,,,,,"342.000000",,,,,,,,,,,,"3884.000000","815.000000","511.000000","592.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","596.000000","452.000000","491.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966874.000000",,,,, +"11363.000000","51.050000","11363.000000","51.050000","11363.000000","51.050000",,,,,,,,,,,,,,"70.000000","24537.000000","23454.000000","106.000000","24537.000000","24537.000000",,,,,,,,,,,"7959820.000000","9733972.000000","478820.000000","0.000000","66932996.000000","0.000000","87800856.000000",,"3623976.000000","24735804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000",,,,,,,,"364.000000","25185.000000",,,,,,,,,,,"3848.000000","811.000000","522.000000","587.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","593.000000","447.000000","487.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966894.000000",,,,, +"10900.000000","50.305000","10900.000000","50.305000","10900.000000","50.305000",,,,,,,,,,,,,,"70.000000","15666.000000","15687.000000","29.000000","15666.000000","15666.000000",,,,,,,,,,,"7854964.000000","9698316.000000","478820.000000","0.000000","66901428.000000","0.000000","87800856.000000",,"3623976.000000","24789348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000",,,,,,,,"209.000000","15366.000000",,,,,,,,,,,"3727.000000","804.000000","491.000000","588.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","588.000000","410.000000","484.000000","757.000000","504.000000","597.000000","160.000000","6000.000000",,"8966914.000000",,,,, +"11735.000000","51.605000","11735.000000","51.605000","11735.000000","51.605000",,,,,,,,,,,,,,"1016.000000","20944.500000","19346.000000","62.000000","20944.500000","20944.500000",,,,,,,,,,,"7729128.000000","9509580.000000","478820.000000","0.000000","66886012.000000","0.000000","87800856.000000",,"3623976.000000","24806176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000",,,,,,,,"1212.000000","20314.000000",,,,,,,,,,,"3865.000000","795.000000","493.000000","582.000000","1206.000000","611.000000","740.000000","0.000000","0.000000","0.000000","581.000000","402.000000","482.000000","752.000000","482.000000","597.000000","160.000000","6000.000000",,"8966934.000000",,,,, +"12085.000000","52.140000","12085.000000","52.140000","12085.000000","52.140000",,,,,,,,,,,,,,"338.000000","9518.500000","9041.000000","43.000000","9518.500000","9518.500000",,,,,,,,,,,"7645060.000000","9425512.000000","478820.000000","0.000000","66853052.000000","0.000000","87800672.000000",,"3623976.000000","24785492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000",,,,,,,,"454.000000","9204.000000",,,,,,,,,,,"3934.000000","789.000000","490.000000","569.000000","1206.000000","611.000000","652.000000","0.000000","0.000000","0.000000","577.000000","407.000000","471.000000","752.000000","482.000000","565.000000","160.000000","6000.000000",,"8966954.000000",,,,, +"15193.000000","57.000000","15193.000000","57.000000","15193.000000","57.000000",,,,,,,,,,,,,,"49.000000","7103.000000","6951.000000","12.000000","7103.000000","7103.000000",,,,,,,,,,,"7375308.000000","9092848.000000","478820.000000","0.000000","66839480.000000","0.000000","87800856.000000",,"3623976.000000","24752628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000",,,,,,,,"170.000000","7036.000000",,,,,,,,,,,"3991.000000","783.000000","538.000000","560.000000","1206.000000","900.000000","652.000000","0.000000","7.000000","0.000000","573.000000","434.000000","465.000000","750.000000","575.000000","565.000000","160.000000","6000.000000",,"8966974.000000",,,,, +"12048.000000","52.055000","12048.000000","52.055000","12048.000000","52.055000",,,,,,,,,,,,,,"74.000000","7662.000000","7312.000000","16.000000","7662.000000","7662.000000",,,,,,,,,,,"6987868.000000","8831228.000000","478820.000000","0.000000","66808224.000000","0.000000","87800808.000000",,"3623976.000000","24782224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000",,,,,,,,"195.000000","7743.000000",,,,,,,,,,,"3973.000000","775.000000","564.000000","543.000000","1206.000000","900.000000","629.000000","0.000000","7.000000","0.000000","569.000000","467.000000","456.000000","750.000000","712.000000","556.000000","160.000000","6000.000000",,"8966994.000000",,,,, +"14991.000000","56.655000","14991.000000","56.655000","14991.000000","56.655000",,,,,,,,,,,,,,"36.000000","2766.500000","2629.000000","33.000000","2766.500000","2766.500000",,,,,,,,,,,"7384152.000000","9420408.000000","478820.000000","0.000000","66784116.000000","0.000000","87800760.000000",,"3623976.000000","24866504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000",,,,,,,,"97.000000","2769.000000",,,,,,,,,,,"3940.000000","764.000000","599.000000","544.000000","1202.000000","900.000000","633.000000","0.000000","7.000000","0.000000","566.000000","492.000000","459.000000","750.000000","712.000000","565.000000","160.000000","6000.000000",,"8967014.000000",,,,, +"18747.000000","62.530000","18747.000000","62.530000","18747.000000","62.530000",,,,,,,,,,,,,,"68.000000","5449.000000","5294.000000","3.000000","5449.000000","5449.000000",,,,,,,,,,,"7215812.000000","9300572.000000","478820.000000","0.000000","66766724.000000","0.000000","87800760.000000",,"3623976.000000","24919992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000",,,,,,,,"225.000000","5310.000000",,,,,,,,,,,"4100.000000","762.000000","670.000000","559.000000","1202.000000","954.000000","837.000000","0.000000","0.000000","0.000000","564.000000","544.000000","465.000000","741.000000","730.000000","610.000000","160.000000","6000.000000",,"8967034.000000",,,,, +"16493.000000","58.985000","16493.000000","58.985000","16493.000000","58.985000",,,,,,,,,,,,,,"104.000000","8463.500000","8111.000000","3.000000","8463.500000","8463.500000",,,,,,,,,,,"6397920.000000","8272972.000000","478820.000000","0.000000","66738320.000000","0.000000","87800760.000000",,"3623976.000000","24953428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000",,,,,,,,"459.000000","8253.000000",,,,,,,,,,,"4178.000000","758.000000","775.000000","574.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","563.000000","588.000000","472.000000","741.000000","730.000000","660.000000","160.000000","6000.000000",,"8967054.000000",,,,, +"15192.000000","56.940000","15192.000000","56.940000","15192.000000","56.940000",,,,,,,,,,,,,,"92.000000","6764.000000","6479.000000","6.000000","6764.000000","6764.000000",,,,,,,,,,,"6314080.000000","7937476.000000","478820.000000","0.000000","66726904.000000","0.000000","87800808.000000",,"3623976.000000","24909208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000",,,,,,,,"192.000000","6765.000000",,,,,,,,,,,"3815.000000","754.000000","827.000000","587.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","559.000000","597.000000","476.000000","734.000000","730.000000","660.000000","160.000000","6000.000000",,"8967074.000000",,,,, +"10965.000000","50.310000","10965.000000","50.310000","10965.000000","50.310000",,,,,,,,,,,,,,"49.000000","2677.000000","2469.000000","5.000000","2677.000000","2677.000000",,,,,,,,,,,"6425216.000000","7903664.000000","478820.000000","0.000000","66701176.000000","0.000000","87800808.000000",,"3623976.000000","24937724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000",,,,,,,,"86.000000","2748.000000",,,,,,,,,,,"3946.000000","749.000000","730.000000","586.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","555.000000","541.000000","476.000000","734.000000","729.000000","660.000000","160.000000","6000.000000",,"8967094.000000",,,,, +"10826.000000","50.085000","10826.000000","50.085000","10826.000000","50.085000",,,,,,,,,,,,,,"1642.000000","8049.500000","6264.000000","10.000000","8049.500000","8049.500000",,,,,,,,,,,"6173560.000000","7505212.000000","478820.000000","0.000000","66689824.000000","0.000000","87800808.000000",,"3623976.000000","24948272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000",,,,,,,,"1754.000000","6439.000000",,,,,,,,,,,"3770.000000","733.000000","558.000000","580.000000","1155.000000","832.000000","873.000000","0.000000","0.000000","0.000000","546.000000","443.000000","470.000000","730.000000","583.000000","660.000000","160.000000","6000.000000",,"8967114.000000",,,,, +"10385.000000","49.380000","10385.000000","49.380000","10385.000000","49.380000",,,,,,,,,,,,,,"44.000000","6349.500000","5817.000000","5.000000","6349.500000","6349.500000",,,,,,,,,,,"6005648.000000","7505072.000000","478820.000000","0.000000","66668940.000000","0.000000","87800668.000000",,"3623976.000000","24922572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000",,,,,,,,"194.000000","6643.000000",,,,,,,,,,,"3755.000000","725.000000","449.000000","577.000000","1155.000000","731.000000","873.000000","0.000000","0.000000","0.000000","541.000000","387.000000","466.000000","730.000000","566.000000","660.000000","160.000000","6000.000000",,"8967134.000000",,,,, +"10301.000000","49.255000","10301.000000","49.255000","10301.000000","49.255000",,,,,,,,,,,,,,"50.000000","6442.000000","5522.000000","13.000000","6442.000000","6442.000000",,,,,,,,,,,"6211112.000000","7662300.000000","478820.000000","0.000000","66673412.000000","0.000000","87800668.000000",,"3623976.000000","24938412.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000",,,,,,,,"264.000000","7048.000000",,,,,,,,,,,"3854.000000","716.000000","416.000000","569.000000","1155.000000","521.000000","873.000000","0.000000","0.000000","0.000000","535.000000","363.000000","458.000000","730.000000","442.000000","660.000000","160.000000","6000.000000",,"8967154.000000",,,,, +"12649.000000","52.920000","12649.000000","52.920000","12649.000000","52.920000",,,,,,,,,,,,,,"79.000000","11152.000000","10820.000000","35.000000","11152.000000","11152.000000",,,,,,,,,,,"5917652.000000","7243008.000000","478820.000000","0.000000","66652912.000000","0.000000","87800808.000000",,"3623976.000000","24958816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000",,,,,,,,"219.000000","11184.000000",,,,,,,,,,,"3851.000000","703.000000","456.000000","569.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","528.000000","391.000000","458.000000","730.000000","521.000000","660.000000","160.000000","6000.000000",,"8967174.000000",,,,, +"9726.000000","48.330000","9726.000000","48.330000","9726.000000","48.330000",,,,,,,,,,,,,,"51.000000","7134.000000","6917.000000","17.000000","7134.000000","7134.000000",,,,,,,,,,,"6022508.000000","7536608.000000","478820.000000","0.000000","66621496.000000","0.000000","87800840.000000",,"3623976.000000","24982788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000",,,,,,,,"151.000000","7149.000000",,,,,,,,,,,"3883.000000","693.000000","440.000000","561.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","522.000000","384.000000","453.000000","729.000000","521.000000","660.000000","160.000000","6000.000000",,"8967194.000000",,,,, +"11940.000000","51.780000","11940.000000","51.780000","11940.000000","51.780000",,,,,,,,,,,,,,"47.000000","8478.000000","8222.000000","19.000000","8478.000000","8478.000000",,,,,,,,,,,"6085420.000000","7708544.000000","478820.000000","0.000000","66596196.000000","0.000000","87800840.000000",,"3623976.000000","25134896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000",,,,,,,,"177.000000","8510.000000",,,,,,,,,,,"3950.000000","687.000000","475.000000","566.000000","1155.000000","609.000000","873.000000","0.000000","0.000000","0.000000","517.000000","407.000000","458.000000","720.000000","521.000000","660.000000","160.000000","6000.000000",,"8967214.000000",,,,, +"11641.000000","51.330000","11641.000000","51.330000","11641.000000","51.330000",,,,,,,,,,,,,,"67.000000","9655.000000","9443.000000","16.000000","9655.000000","9655.000000",,,,,,,,,,,"5771460.000000","7421116.000000","478820.000000","0.000000","66627168.000000","0.000000","87870452.000000",,"3623976.000000","25171740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000",,,,,,,,"171.000000","9628.000000",,,,,,,,,,,"3817.000000","671.000000","454.000000","561.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","510.000000","390.000000","456.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967234.000000",,,,, +"8580.000000","46.515000","8580.000000","46.515000","8580.000000","46.515000",,,,,,,,,,,,,,"391.000000","2757.000000","2393.000000","3.000000","2757.000000","2757.000000",,,,,,,,,,,"5645628.000000","7001684.000000","478820.000000","0.000000","66588096.000000","0.000000","87870452.000000",,"3623976.000000","25245616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000",,,,,,,,"374.000000","2355.000000",,,,,,,,,,,"3843.000000","661.000000","448.000000","552.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","503.000000","387.000000","449.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967254.000000",,,,, +"12589.000000","52.785000","12589.000000","52.785000","12589.000000","52.785000",,,,,,,,,,,,,,"56.000000","10555.500000","10279.000000","26.000000","10555.500000","10555.500000",,,,,,,,,,,"5093468.000000","6396556.000000","478820.000000","0.000000","66566464.000000","0.000000","87870452.000000",,"3623976.000000","25281304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000",,,,,,,,"179.000000","10597.000000",,,,,,,,,,,"3898.000000","641.000000","423.000000","543.000000","1096.000000","634.000000","869.000000","0.000000","0.000000","0.000000","495.000000","372.000000","445.000000","712.000000","502.000000","660.000000","160.000000","6000.000000",,"8967274.000000",,,,, +"12696.000000","52.955000","12696.000000","52.955000","12696.000000","52.955000",,,,,,,,,,,,,,"53.000000","5177.000000","4927.000000","9.000000","5177.000000","5177.000000",,,,,,,,,,,"5369800.000000","6630948.000000","478820.000000","0.000000","66571348.000000","0.000000","87874160.000000",,"3623976.000000","25299696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000",,,,,,,,"138.000000","5235.000000",,,,,,,,,,,"3888.000000","630.000000","461.000000","541.000000","1021.000000","672.000000","837.000000","0.000000","0.000000","0.000000","490.000000","401.000000","443.000000","710.000000","549.000000","631.000000","160.000000","6000.000000",,"8967294.000000",,,,, +"11692.000000","51.355000","11692.000000","51.355000","11692.000000","51.355000",,,,,,,,,,,,,,"105.000000","5473.000000","5203.000000","14.000000","5473.000000","5473.000000",,,,,,,,,,,"5282204.000000","6606264.000000","478820.000000","0.000000","66517724.000000","0.000000","87870452.000000",,"3623976.000000","25321244.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000",,,,,,,,"159.000000","5479.000000",,,,,,,,,,,"3877.000000","613.000000","485.000000","530.000000","990.000000","672.000000","832.000000","0.000000","0.000000","0.000000","483.000000","419.000000","435.000000","676.000000","549.000000","583.000000","160.000000","6000.000000",,"8967314.000000",,,,, +"12428.000000","52.500000","12428.000000","52.500000","12428.000000","52.500000",,,,,,,,,,,,,,"62.000000","5729.000000","5666.000000","5.000000","5729.000000","5729.000000",,,,,,,,,,,"5296196.000000","6578312.000000","478820.000000","0.000000","66501136.000000","0.000000","87870452.000000",,"3623976.000000","25290932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000",,,,,,,,"182.000000",,,,,,,,,,,,"3901.000000","594.000000","518.000000","513.000000","873.000000","672.000000","731.000000","0.000000","0.000000","0.000000","478.000000","438.000000","424.000000","660.000000","549.000000","549.000000","160.000000","6000.000000",,"8967334.000000",,,,, +"13638.000000","54.380000","13638.000000","54.380000","13638.000000","54.380000",,,,,,,,,,,,,,"48.000000","8280.500000","7889.000000","10.000000","8280.500000","8280.500000",,,,,,,,,,,"4709000.000000","5897312.000000","478820.000000","0.000000","66476892.000000","0.000000","87870452.000000",,"3623976.000000","25314276.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000",,,,,,,,"521.000000","8102.000000",,,,,,,,,,,"3904.000000","576.000000","497.000000","485.000000","816.000000","614.000000","672.000000","0.000000","0.000000","0.000000","470.000000","434.000000","412.000000","597.000000","538.000000","538.000000","160.000000","6000.000000",,"8967354.000000",,,,, +"11664.000000","51.260000","11664.000000","51.260000","11664.000000","51.260000",,,,,,,,,,,,,,"37.000000","4794.000000","3887.000000","7.000000","4794.000000","4794.000000",,,,,,,,,,,"4621092.000000","5850508.000000","478820.000000","0.000000","66414684.000000","0.000000","87853432.000000",,"3623976.000000","25366512.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000",,,,,,,,"210.000000","5453.000000",,,,,,,,,,,"3913.000000","559.000000","511.000000","466.000000","765.000000","614.000000","609.000000","0.000000","0.000000","0.000000","463.000000","440.000000","404.000000","576.000000","538.000000","521.000000","160.000000","6000.000000",,"8967374.000000",,,,, +"10981.000000","50.180000","10981.000000","50.180000","10981.000000","50.180000",,,,,,,,,,,,,,"49.000000","6164.000000","5595.000000","8.000000","6164.000000","6164.000000",,,,,,,,,,,"4523840.000000","5648404.000000","478820.000000","0.000000","66395240.000000","0.000000","87853684.000000",,"3623976.000000","25358732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000",,,,,,,,"197.000000","6485.000000",,,,,,,,,,,"3741.000000","552.000000","498.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","460.000000","431.000000","402.000000","570.000000","538.000000","504.000000","160.000000","6000.000000",,"8967394.000000",,,,, +"10288.000000","49.080000","10288.000000","49.080000","10288.000000","49.080000",,,,,,,,,,,,,,"54.000000","5498.000000","5400.000000","3.000000","5498.000000","5498.000000",,,,,,,,,,,"4607728.000000","5837148.000000","478820.000000","0.000000","66363524.000000","0.000000","87853684.000000",,"3623976.000000","25392204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000",,,,,,,,"136.000000","5405.000000",,,,,,,,,,,"3855.000000","546.000000","444.000000","463.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","455.000000","384.000000","400.000000","566.000000","466.000000","504.000000","160.000000","6000.000000",,"8967414.000000",,,,, +"10870.000000","49.975000","10870.000000","49.975000","10870.000000","49.975000",,,,,,,,,,,,,,"36.000000","7411.500000","7242.000000","15.000000","7411.500000","7411.500000",,,,,,,,,,,"4524600.000000","6173448.000000","478820.000000","0.000000","66331604.000000","0.000000","87854440.000000",,"3623976.000000","25493928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000",,,,,,,,"151.000000","7393.000000",,,,,,,,,,,"3810.000000","544.000000","444.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","453.000000","381.000000","402.000000","566.000000","464.000000","504.000000","160.000000","6000.000000",,"8967434.000000",,,,, +"10712.000000","49.710000","10712.000000","49.710000","10712.000000","49.710000",,,,,,,,,,,,,,"52.000000","6503.000000","6188.000000","8.000000","6503.000000","6503.000000",,,,,,,,,,,"4544820.000000","6207828.000000","478820.000000","0.000000","66293944.000000","0.000000","87853688.000000",,"3623976.000000","25440836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000",,,,,,,,"152.000000","6613.000000",,,,,,,,,,,"3690.000000","543.000000","418.000000","466.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","451.000000","368.000000","403.000000","566.000000","405.000000","504.000000","160.000000","6000.000000",,"8967454.000000",,,,, +"10792.000000","49.820000","10792.000000","49.820000","10792.000000","49.820000",,,,,,,,,,,,,,"32.000000","6038.500000","4909.000000","30.000000","6038.500000","6038.500000",,,,,,,,,,,"4963464.000000","6804012.000000","478820.000000","0.000000","66262272.000000","0.000000","87849984.000000",,"3623976.000000","25467536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000",,,,,,,,"229.000000","6907.000000",,,,,,,,,,,"3843.000000","539.000000","430.000000","457.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","449.000000","378.000000","397.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967474.000000",,,,, +"9334.000000","47.525000","9334.000000","47.525000","9334.000000","47.525000",,,,,,,,,,,,,,"100.000000","4140.000000","3488.000000","80.000000","4140.000000","4140.000000",,,,,,,,,,,"4994228.000000","6699040.000000","478820.000000","0.000000","66239128.000000","0.000000","87849868.000000",,"3623976.000000","25373720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000",,,,,,,,"152.000000","4540.000000",,,,,,,,,,,"3774.000000","535.000000","391.000000","456.000000","740.000000","472.000000","608.000000","0.000000","0.000000","0.000000","446.000000","355.000000","396.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967494.000000",,,,, +"7998.000000","45.425000","7998.000000","45.425000","7998.000000","45.425000",,,,,,,,,,,,,,"48.000000","3174.000000","2973.000000","40.000000","3174.000000","3174.000000",,,,,,,,,,,"4945516.000000","6650324.000000","478820.000000","0.000000","66231912.000000","0.000000","87849868.000000",,"3623976.000000","25435964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000",,,,,,,,"124.000000","3202.000000",,,,,,,,,,,"3731.000000","533.000000","367.000000","445.000000","740.000000","445.000000","605.000000","0.000000","0.000000","0.000000","444.000000","337.000000","389.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967514.000000",,,,, +"11281.000000","50.560000","11281.000000","50.560000","11281.000000","50.560000",,,,,,,,,,,,,,"36.000000","6385.000000","6333.000000","12.000000","6385.000000","6385.000000",,,,,,,,,,,"4358316.000000","5979240.000000","478820.000000","0.000000","66211888.000000","0.000000","87849868.000000",,"3623976.000000","25452824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000",,,,,,,,"136.000000","6264.000000",,,,,,,,,,,"3771.000000","528.000000","369.000000","440.000000","731.000000","495.000000","599.000000","0.000000","0.000000","0.000000","441.000000","337.000000","387.000000","566.000000","448.000000","495.000000","160.000000","6000.000000",,"8967534.000000",,,,, +"8572.000000","46.305000","8572.000000","46.305000","8572.000000","46.305000",,,,,,,,,,,,,,"318.000000","3452.500000","3031.000000","14.000000","3452.500000","3452.500000",,,,,,,,,,,"3917920.000000","5790500.000000","478820.000000","0.000000","66192312.000000","0.000000","87849868.000000",,"3623976.000000","25614016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000",,,,,,,,"376.000000","3178.000000",,,,,,,,,,,"3733.000000","520.000000","362.000000","439.000000","711.000000","495.000000","599.000000","0.000000","0.000000","0.000000","435.000000","326.000000","384.000000","559.000000","448.000000","495.000000","160.000000","6000.000000",,"8967554.000000",,,,, +"14927.000000","56.315000","14927.000000","56.315000","14927.000000","56.315000",,,,,,,,,,,,,,"48.000000","9044.500000","8952.000000","15.000000","9044.500000","9044.500000",,,,,,,,,,,"4274780.000000","5895708.000000","478820.000000","0.000000","66307388.000000","0.000000","87850216.000000",,"3623976.000000","25514036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000",,,,,,,,"176.000000","8912.000000",,,,,,,,,,,"4017.000000","518.000000","447.000000","450.000000","707.000000","686.000000","608.000000","0.000000","0.000000","0.000000","434.000000","387.000000","392.000000","558.000000","558.000000","528.000000","160.000000","6000.000000",,"8967574.000000",,,,, +"13174.000000","53.565000","13174.000000","53.565000","13174.000000","53.565000",,,,,,,,,,,,,,"48.000000","12146.500000","11717.000000","26.000000","12146.500000","12146.500000",,,,,,,,,,,"4270640.000000","6576852.000000","478820.000000","0.000000","66290108.000000","0.000000","87849868.000000",,"3623976.000000","25530144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000",,,,,,,,"186.000000","12341.000000",,,,,,,,,,,"4042.000000","510.000000","494.000000","447.000000","690.000000","686.000000","587.000000","0.000000","0.000000","0.000000","430.000000","429.000000","392.000000","549.000000","558.000000","504.000000","160.000000","6000.000000",,"8967594.000000",,,,, +"15060.000000","56.510000","15060.000000","56.510000","15060.000000","56.510000",,,,,,,,,,,,,,"48.000000","7737.500000","7021.000000","17.000000","7737.500000","7737.500000",,,,,,,,,,,"4354524.000000","6607732.000000","478820.000000","0.000000","66271380.000000","0.000000","87849868.000000",,"3623976.000000","25570712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000",,,,,,,,"222.000000","8182.000000",,,,,,,,,,,"4029.000000","511.000000","593.000000","460.000000","704.000000","716.000000","614.000000","0.000000","0.000000","0.000000","432.000000","508.000000","402.000000","555.000000","564.000000","538.000000","160.000000","6000.000000",,"8967614.000000",,,,, +"15684.000000","57.475000","15684.000000","57.475000","15684.000000","57.475000",,,,,,,,,,,,,,"51.000000","5488.500000","4655.000000","9.000000","5488.500000","5488.500000",,,,,,,,,,,"4249664.000000","6523844.000000","478820.000000","0.000000","66249104.000000","0.000000","87849868.000000",,"3623976.000000","25571044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000",,,,,,,,"210.000000","6060.000000",,,,,,,,,,,"3898.000000","512.000000","592.000000","464.000000","704.000000","716.000000","641.000000","0.000000","0.000000","0.000000","432.000000","511.000000","407.000000","554.000000","564.000000","549.000000","160.000000","6000.000000",,"8967634.000000",,,,, +"15315.000000","56.900000","15315.000000","56.900000","15315.000000","56.900000",,,,,,,,,,,,,,"35.000000","8737.500000","8573.000000","6.000000","8737.500000","8737.500000",,,,,,,,,,,"3607628.000000","5532068.000000","478820.000000","0.000000","66248520.000000","0.000000","87849868.000000",,"3623976.000000","25575264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000",,,,,,,,"513.000000","8352.000000",,,,,,,,,,,"4115.000000","512.000000","644.000000","476.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","432.000000","540.000000","414.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967654.000000",,,,, +"14183.000000","55.105000","14183.000000","55.105000","14183.000000","55.105000",,,,,,,,,,,,,,"95.000000","6812.500000","6489.000000","19.000000","6812.500000","6812.500000",,,,,,,,,,,"3775404.000000","5217496.000000","478820.000000","0.000000","66210468.000000","0.000000","87849868.000000",,"3623976.000000","25592028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000",,,,,,,,"128.000000","6912.000000",,,,,,,,,,,"4031.000000","512.000000","622.000000","483.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","433.000000","526.000000","419.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967674.000000",,,,, +"13099.000000","53.405000","13099.000000","53.405000","13099.000000","53.405000",,,,,,,,,,,,,,"55.000000","6356.500000","6076.000000","17.000000","6356.500000","6356.500000",,,,,,,,,,,"3901232.000000","5301664.000000","478820.000000","0.000000","66203544.000000","0.000000","87849868.000000",,"3623976.000000","25616976.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000",,,,,,,,"167.000000","6414.000000",,,,,,,,,,,"3994.000000","514.000000","622.000000","489.000000","704.000000","775.000000","670.000000","0.000000","0.000000","0.000000","434.000000","523.000000","425.000000","555.000000","597.000000","555.000000","160.000000","6000.000000",,"8967694.000000",,,,, +"13518.000000","54.055000","13518.000000","54.055000","13518.000000","54.055000",,,,,,,,,,,,,,"38.000000","11105.500000","10855.000000","28.000000","11105.500000","11105.500000",,,,,,,,,,,"4945520.000000","6182468.000000","478820.000000","0.000000","66190404.000000","0.000000","87849868.000000",,"3623976.000000","25628252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000",,,,,,,,"169.000000","11147.000000",,,,,,,,,,,"3968.000000","515.000000","568.000000","501.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","435.000000","490.000000","435.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967714.000000",,,,, +"12668.000000","52.705000","12668.000000","52.705000","12668.000000","52.705000",,,,,,,,,,,,,,"34.000000","5754.500000","5531.000000","5.000000","5754.500000","5754.500000",,,,,,,,,,,"4882464.000000","6182324.000000","478820.000000","0.000000","66164976.000000","0.000000","87849728.000000",,"3623976.000000","25665984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000",,,,,,,,"160.000000","5783.000000",,,,,,,,,,,"4008.000000","516.000000","559.000000","505.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","436.000000","479.000000","439.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967734.000000",,,,, +"12957.000000","53.160000","12957.000000","53.160000","12957.000000","53.160000",,,,,,,,,,,,,,"54.000000","6243.000000","5878.000000","8.000000","6243.000000","6243.000000",,,,,,,,,,,"4903436.000000","6098440.000000","478820.000000","0.000000","66162728.000000","0.000000","87849728.000000",,"3623976.000000","25638800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000",,,,,,,,"177.000000","6377.000000",,,,,,,,,,,"3799.000000","515.000000","519.000000","509.000000","704.000000","569.000000","670.000000","0.000000","0.000000","0.000000","434.000000","450.000000","441.000000","554.000000","514.000000","555.000000","160.000000","6000.000000",,"8967754.000000",,,,, +"11634.000000","51.085000","11634.000000","51.085000","11634.000000","51.085000",,,,,,,,,,,,,,"36.000000","3772.000000","3561.000000","28.000000","3772.000000","3772.000000",,,,,,,,,,,"4641876.000000","6021324.000000","478820.000000","0.000000","66147680.000000","0.000000","87849728.000000",,"3623976.000000","25652628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000",,,,,,,,"108.000000","3838.000000",,,,,,,,,,,"3964.000000","514.000000","506.000000","516.000000","704.000000","611.000000","670.000000","0.000000","0.000000","0.000000","434.000000","438.000000","447.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967774.000000",,,,, +"13363.000000","53.775000","13363.000000","53.775000","13363.000000","53.775000",,,,,,,,,,,,,,"86.000000","6921.000000","6622.000000","9.000000","6921.000000","6921.000000",,,,,,,,,,,"4600072.000000","5937580.000000","478820.000000","0.000000","66120256.000000","0.000000","87849868.000000",,"3623976.000000","25687888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000",,,,,,,,"186.000000","6947.000000",,,,,,,,,,,"4022.000000","516.000000","524.000000","532.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","449.000000","458.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967794.000000",,,,, +"11976.000000","51.590000","11976.000000","51.590000","11976.000000","51.590000",,,,,,,,,,,,,,"36.000000","5718.000000","5575.000000","14.000000","5718.000000","5718.000000",,,,,,,,,,,"4516184.000000","5916612.000000","478820.000000","0.000000","66093600.000000","0.000000","87849868.000000",,"3623976.000000","25714908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000",,,,,,,,"115.000000","5709.000000",,,,,,,,,,,"3946.000000","517.000000","520.000000","540.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","437.000000","451.000000","464.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967814.000000",,,,, +"10442.000000","49.175000","10442.000000","49.175000","10442.000000","49.175000",,,,,,,,,,,,,,"51.000000","11694.500000","11114.000000","62.000000","11694.500000","11694.500000",,,,,,,,,,,"4274432.000000","5811756.000000","478820.000000","0.000000","66075464.000000","0.000000","87849868.000000",,"3623976.000000","25732240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000",,,,,,,,"202.000000","12021.000000",,,,,,,,,,,"3913.000000","514.000000","495.000000","541.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","431.000000","466.000000","554.000000","545.000000","555.000000","160.000000","6000.000000",,"8967834.000000",,,,, +"8853.000000","46.670000","8853.000000","46.670000","8853.000000","46.670000",,,,,,,,,,,,,,"319.000000","4361.500000","3101.000000","5.000000","4361.500000","4361.500000",,,,,,,,,,,"4169532.000000","5664912.000000","478820.000000","0.000000","66044904.000000","0.000000","87849824.000000",,"3623976.000000","25773748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000",,,,,,,,"486.000000","4816.000000",,,,,,,,,,,"3778.000000","511.000000","414.000000","542.000000","704.000000","542.000000","685.000000","0.000000","0.000000","0.000000","433.000000","369.000000","466.000000","554.000000","462.000000","555.000000","160.000000","6000.000000",,"8967854.000000",,,,, +"13358.000000","53.730000","13358.000000","53.730000","13358.000000","53.730000",,,,,,,,,,,,,,"103.000000","6442.500000","6322.000000","6.000000","6442.500000","6442.500000",,,,,,,,,,,"4085648.000000","5664628.000000","478820.000000","0.000000","66037096.000000","0.000000","87849824.000000",,"3623976.000000","25797256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000",,,,,,,,"162.000000","6297.000000",,,,,,,,,,,"3727.000000","509.000000","423.000000","535.000000","690.000000","632.000000","664.000000","0.000000","0.000000","0.000000","432.000000","361.000000","459.000000","554.000000","462.000000","554.000000","160.000000","6000.000000",,"8967874.000000",,,,, +"13508.000000","53.945000","13508.000000","53.945000","13508.000000","53.945000",,,,,,,,,,,,,,"199.000000","8706.000000","8249.000000","18.000000","8706.000000","8706.000000",,,,,,,,,,,"4224960.000000","5656268.000000","478820.000000","0.000000","65999752.000000","0.000000","87828216.000000",,"3623976.000000","25814048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000",,,,,,,,"335.000000","8628.000000",,,,,,,,,,,"3876.000000","512.000000","529.000000","548.000000","704.000000","986.000000","690.000000","0.000000","0.000000","0.000000","433.000000","417.000000","463.000000","554.000000","677.000000","555.000000","160.000000","6000.000000",,"8967894.000000",,,,, +"11892.000000","51.395000","11892.000000","51.395000","11892.000000","51.395000",,,,,,,,,,,,,,"90.000000","3874.500000","3762.000000","15.000000","3874.500000","3874.500000",,,,,,,,,,,"4644392.000000","6243468.000000","478820.000000","0.000000","65971960.000000","0.000000","87828216.000000",,"3623976.000000","25835552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000",,,,,,,,"97.000000","3798.000000",,,,,,,,,,,"3936.000000","508.000000","557.000000","535.000000","690.000000","986.000000","685.000000","0.000000","0.000000","0.000000","430.000000","448.000000","454.000000","550.000000","677.000000","554.000000","160.000000","6000.000000",,"8967914.000000",,,,, +"12535.000000","52.400000","12535.000000","52.400000","12535.000000","52.400000",,,,,,,,,,,,,,"49.000000","5684.000000","5565.000000","8.000000","5684.000000","5684.000000",,,,,,,,,,,"4728280.000000","6285412.000000","478816.000000","0.000000","65964764.000000","0.000000","87828220.000000",,"3623976.000000","25810316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000",,,,,,,,"134.000000","5619.000000",,,,,,,,,,,"3861.000000","502.000000","560.000000","529.000000","685.000000","986.000000","685.000000","0.000000","0.000000","0.000000","427.000000","468.000000","450.000000","549.000000","677.000000","550.000000","160.000000","6000.000000",,"8967934.000000",,,,, +"13866.000000","54.475000","13866.000000","54.475000","13866.000000","54.475000",,,,,,,,,,,,,,"43.000000","9066.000000","8537.000000","8.000000","9066.000000","9066.000000",,,,,,,,,,,"4503648.000000","6055844.000000","478816.000000","0.000000","65935488.000000","0.000000","87819552.000000",,"3623976.000000","25831692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000",,,,,,,,"537.000000","9015.000000",,,,,,,,,,,"3901.000000","494.000000","503.000000","520.000000","660.000000","636.000000","660.000000","0.000000","0.000000","0.000000","423.000000","442.000000","444.000000","544.000000","531.000000","537.000000","160.000000","6000.000000",,"8967954.000000",,,,, +"11118.000000","50.145000","11118.000000","50.145000","11118.000000","50.145000",,,,,,,,,,,,,,"36.000000","2657.000000","2657.000000","10.000000","2657.000000","2657.000000",,,,,,,,,,,"3892684.000000","5276376.000000","478816.000000","0.000000","65885172.000000","0.000000","87804884.000000",,"3623976.000000","25767356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000",,,,,,,,"79.000000","2542.000000",,,,,,,,,,,"3873.000000","487.000000","504.000000","512.000000","636.000000","636.000000","660.000000","0.000000","0.000000","0.000000","420.000000","437.000000","437.000000","538.000000","531.000000","531.000000","160.000000","6000.000000",,"8967974.000000",,,,, +"10956.000000","49.870000","10956.000000","49.870000","10956.000000","49.870000",,,,,,,,,,,,,,"49.000000","5939.500000","5600.000000","18.000000","5939.500000","5939.500000",,,,,,,,,,,"3955596.000000","5318604.000000","478816.000000","0.000000","65854352.000000","0.000000","87804884.000000",,"3623976.000000","25845340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000",,,,,,,,"162.000000","6066.000000",,,,,,,,,,,"3923.000000","486.000000","488.000000","502.000000","636.000000","636.000000","636.000000","0.000000","0.000000","0.000000","419.000000","425.000000","431.000000","537.000000","531.000000","518.000000","160.000000","6000.000000",,"8967994.000000",,,,, +"10419.000000","49.020000","10419.000000","49.020000","10419.000000","49.020000",,,,,,,,,,,,,,"35.000000","6299.000000","6263.000000","5.000000","6299.000000","6299.000000",,,,,,,,,,,"3974568.000000","5192772.000000","478816.000000","0.000000","65825412.000000","0.000000","87804884.000000",,"3623976.000000","25872800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000",,,,,,,,"141.000000",,,,,,,,,,,,"3687.000000","485.000000","433.000000","493.000000","636.000000","548.000000","636.000000","0.000000","0.000000","0.000000","419.000000","383.000000","422.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968014.000000",,,,, +"11342.000000","50.465000","11342.000000","50.465000","11342.000000","50.465000",,,,,,,,,,,,,,"37.000000","7009.000000","6667.000000","3.000000","7009.000000","7009.000000",,,,,,,,,,,"3996292.000000","5487124.000000","478816.000000","0.000000","65833848.000000","0.000000","87805636.000000",,"3623976.000000","25921028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000",,,,,,,,"184.000000","7129.000000",,,,,,,,,,,"3720.000000","487.000000","445.000000","489.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","420.000000","389.000000","419.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968034.000000",,,,, +"10118.000000","48.555000","10118.000000","48.555000","10118.000000","48.555000",,,,,,,,,,,,,,"51.000000","5584.000000","5459.000000","8.000000","5584.000000","5584.000000",,,,,,,,,,,"4184284.000000","5612200.000000","478816.000000","0.000000","65846336.000000","0.000000","87804884.000000",,"3623976.000000","25931788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000",,,,,,,,"169.000000","5488.000000",,,,,,,,,,,"3817.000000","486.000000","419.000000","482.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","419.000000","365.000000","414.000000","537.000000","491.000000","518.000000","160.000000","6000.000000",,"8968054.000000",,,,, +"9994.000000","48.350000","9994.000000","48.350000","9994.000000","48.350000",,,,,,,,,,,,,,"100.000000","4551.500000","4384.000000","4.000000","4551.500000","4551.500000",,,,,,,,,,,"3954452.000000","5525584.000000","478816.000000","0.000000","65824024.000000","0.000000","87804884.000000",,"3623976.000000","25951828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000",,,,,,,,"119.000000","4500.000000",,,,,,,,,,,"3889.000000","483.000000","416.000000","475.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","417.000000","366.000000","408.000000","537.000000","491.000000","515.000000","160.000000","6000.000000",,"8968074.000000",,,,, +"9813.000000","48.055000","9813.000000","48.055000","9813.000000","48.055000",,,,,,,,,,,,,,"38.000000","6231.500000","5114.000000","3.000000","6231.500000","6231.500000",,,,,,,,,,,"3996368.000000","5399728.000000","478804.000000","0.000000","65801584.000000","0.000000","87804868.000000",,"3623976.000000","25977636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000",,,,,,,,"225.000000","7086.000000",,,,,,,,,,,"3735.000000","484.000000","402.000000","465.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","418.000000","356.000000","400.000000","537.000000","438.000000","500.000000","160.000000","6000.000000",,"8968094.000000",,,,, +"10511.000000","49.145000","10511.000000","49.145000","10511.000000","49.145000",,,,,,,,,,,,,,"33.000000","5589.500000","5302.000000","6.000000","5589.500000","5589.500000",,,,,,,,,,,"4059280.000000","5357500.000000","478804.000000","0.000000","65787580.000000","0.000000","87804868.000000",,"3623976.000000","26014472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000",,,,,,,,"164.000000","5679.000000",,,,,,,,,,,"3880.000000","481.000000","408.000000","459.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","417.000000","365.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968114.000000",,,,, +"10858.000000","49.675000","10858.000000","49.675000","10858.000000","49.675000",,,,,,,,,,,,,,"40.000000","5510.000000","5280.000000","3.000000","5510.000000","5510.000000",,,,,,,,,,,"3815092.000000","5284672.000000","478804.000000","0.000000","65766724.000000","0.000000","87804868.000000",,"3623976.000000","26034348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000",,,,,,,,"137.000000","5563.000000",,,,,,,,,,,"3869.000000","480.000000","408.000000","458.000000","636.000000","508.000000","632.000000","0.000000","0.000000","0.000000","416.000000","367.000000","395.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968134.000000",,,,, +"9614.000000","47.720000","9614.000000","47.720000","9614.000000","47.720000",,,,,,,,,,,,,,"316.000000","5480.500000","5092.000000","7.000000","5480.500000","5480.500000",,,,,,,,,,,"3479684.000000","4928296.000000","478804.000000","0.000000","65749604.000000","0.000000","87805008.000000",,"3623976.000000","26010844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000",,,,,,,,"397.000000","5155.000000",,,,,,,,,,,"3746.000000","480.000000","390.000000","460.000000","636.000000","497.000000","632.000000","0.000000","0.000000","0.000000","416.000000","355.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968154.000000",,,,, +"11861.000000","51.370000","11861.000000","51.370000","11861.000000","51.370000",,,,,,,,,,,,,,"33.000000","4718.000000","4410.000000","10.000000","4718.000000","4718.000000",,,,,,,,,,,"3647456.000000","5075100.000000","478804.000000","0.000000","66006064.000000","0.000000","87805008.000000",,"3623976.000000","25781772.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000",,,,,,,,"133.000000","4858.000000",,,,,,,,,,,"3994.000000","480.000000","407.000000","456.000000","636.000000","497.000000","585.000000","0.000000","0.000000","0.000000","416.000000","366.000000","398.000000","537.000000","454.000000","500.000000","160.000000","6000.000000",,"8968174.000000",,,,, +"18266.000000","61.410000","18266.000000","61.410000","18266.000000","61.410000",,,,,,,,,,,,,,"51.000000","8352.000000","8224.000000","3.000000","8352.000000","8352.000000",,,,,,,,,,,"4583268.000000","5695828.000000","478804.000000","0.000000","66029144.000000","0.000000","87779372.000000",,"3623976.000000","25696700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000",,,,,,,,"176.000000","8252.000000",,,,,,,,,,,"4111.000000","489.000000","595.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","472.000000","406.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968194.000000",,,,, +"11136.000000","50.235000","11136.000000","50.235000","11136.000000","50.235000",,,,,,,,,,,,,,"51.000000","3388.500000","3212.000000","5.000000","3388.500000","3388.500000",,,,,,,,,,,"4646048.000000","5706752.000000","478800.000000","0.000000","66017400.000000","0.000000","87779236.000000",,"3623976.000000","25739568.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000",,,,,,,,"101.000000","3412.000000",,,,,,,,,,,"3779.000000","489.000000","615.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","490.000000","405.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968214.000000",,,,, +"10831.000000","49.755000","10831.000000","49.755000","10831.000000","49.755000",,,,,,,,,,,,,,"94.000000","1560.000000","1350.000000","7.000000","1560.000000","1560.000000",,,,,,,,,,,"4646048.000000","5748976.000000","478796.000000","0.000000","66006616.000000","0.000000","87779240.000000",,"3623976.000000","25747880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000",,,,,,,,"114.000000","1561.000000",,,,,,,,,,,"3903.000000","486.000000","604.000000","465.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","419.000000","482.000000","400.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968234.000000",,,,, +"13443.000000","53.835000","13443.000000","53.835000","13443.000000","53.835000",,,,,,,,,,,,,,"40.000000","8005.500000","7738.000000","24.000000","8005.500000","8005.500000",,,,,,,,,,,"5116848.000000","6327928.000000","478796.000000","0.000000","65987492.000000","0.000000","87779300.000000",,"3623976.000000","25746776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000",,,,,,,,"501.000000","7730.000000",,,,,,,,,,,"3871.000000","486.000000","459.000000","462.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","419.000000","410.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968254.000000",,,,, +"11103.000000","50.160000","11103.000000","50.160000","11103.000000","50.160000",,,,,,,,,,,,,,"37.000000","4755.000000","4317.000000","2.000000","4755.000000","4755.000000",,,,,,,,,,,"4991032.000000","6212024.000000","478796.000000","0.000000","65967172.000000","0.000000","87779312.000000",,"3623976.000000","25780384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000",,,,,,,,"124.000000","5031.000000",,,,,,,,,,,"3911.000000","486.000000","464.000000","463.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","406.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968274.000000",,,,, +"10948.000000","49.915000","10948.000000","49.915000","10948.000000","49.915000",,,,,,,,,,,,,,"44.000000","7369.000000","6145.000000","3.000000","7369.000000","7369.000000",,,,,,,,,,,"4991020.000000","6211724.000000","478796.000000","0.000000","65962192.000000","0.000000","87779300.000000",,"3623976.000000","25802416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000",,,,,,,,"255.000000","8294.000000",,,,,,,,,,,"3754.000000","485.000000","480.000000","464.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","411.000000","398.000000","544.000000","507.000000","501.000000","160.000000","6000.000000",,"8968294.000000",,,,, +"9892.000000","48.250000","9892.000000","48.250000","9892.000000","48.250000",,,,,,,,,,,,,,"38.000000","6923.500000","5440.000000","23.000000","6923.500000","6923.500000",,,,,,,,,,,"4748196.000000","5986584.000000","478796.000000","0.000000","65938664.000000","0.000000","87779300.000000",,"3623976.000000","25823152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000",,,,,,,,"231.000000","8138.000000",,,,,,,,,,,"3699.000000","486.000000","438.000000","463.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","418.000000","371.000000","397.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968314.000000",,,,, +"10013.000000","48.425000","10013.000000","48.425000","10013.000000","48.425000",,,,,,,,,,,,,,"37.000000","6928.000000","5541.000000","8.000000","6928.000000","6928.000000",,,,,,,,,,,"4685248.000000","5955668.000000","478796.000000","0.000000","65905692.000000","0.000000","87779272.000000",,"3623976.000000","25861316.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000",,,,,,,,"222.000000","8055.000000",,,,,,,,,,,"3803.000000","485.000000","428.000000","460.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","417.000000","366.000000","395.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968334.000000",,,,, +"9216.000000","47.155000","9216.000000","47.155000","9216.000000","47.155000",,,,,,,,,,,,,,"37.000000","3885.000000","2578.000000","24.000000","3885.000000","3885.000000",,,,,,,,,,,"4685248.000000","5986832.000000","478796.000000","0.000000","65873052.000000","0.000000","87779272.000000",,"3623976.000000","25868948.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000",,,,,,,,"199.000000","4955.000000",,,,,,,,,,,"3784.000000","483.000000","392.000000","458.000000","641.000000","492.000000","589.000000","0.000000","0.000000","0.000000","416.000000","345.000000","394.000000","544.000000","390.000000","501.000000","160.000000","6000.000000",,"8968354.000000",,,,, +"10887.000000","49.770000","10887.000000","49.770000","10887.000000","49.770000",,,,,,,,,,,,,,"41.000000","7413.500000","6096.000000","3.000000","7413.500000","7413.500000",,,,,,,,,,,"4496504.000000","5714200.000000","478796.000000","0.000000","65860044.000000","0.000000","87779272.000000",,"3623976.000000","25881684.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000",,,,,,,,"228.000000","8461.000000",,,,,,,,,,,"3797.000000","483.000000","393.000000","459.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","353.000000","394.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968374.000000",,,,, +"8372.000000","45.815000","8372.000000","45.815000","8372.000000","45.815000",,,,,,,,,,,,,,"36.000000","3980.500000","2952.000000","3.000000","3980.500000","3980.500000",,,,,,,,,,,"4412616.000000","5735172.000000","478796.000000","0.000000","65841604.000000","0.000000","87779272.000000",,"3623976.000000","25739328.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000",,,,,,,,"189.000000","4784.000000",,,,,,,,,,,"3659.000000","483.000000","363.000000","452.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968394.000000",,,,, +"9974.000000","48.325000","9974.000000","48.325000","9974.000000","48.325000",,,,,,,,,,,,,,"101.000000","6768.000000","5480.000000","21.000000","6768.000000","6768.000000",,,,,,,,,,,"4517476.000000","5944604.000000","478796.000000","0.000000","65826148.000000","0.000000","87779272.000000",,"3623976.000000","25774492.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000",,,,,,,,"259.000000","7695.000000",,,,,,,,,,,"3696.000000","485.000000","393.000000","455.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","341.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968414.000000",,,,, +"10347.000000","48.895000","10347.000000","48.895000","10347.000000","48.895000",,,,,,,,,,,,,,"34.000000","6960.000000","5696.000000","27.000000","6960.000000","6960.000000",,,,,,,,,,,"4259752.000000","5651000.000000","478796.000000","0.000000","65810924.000000","0.000000","87779272.000000",,"3623976.000000","25788980.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000",,,,,,,,"232.000000","7957.000000",,,,,,,,,,,"3741.000000","484.000000","385.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","387.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968434.000000",,,,, +"10656.000000","49.370000","10656.000000","49.370000","10656.000000","49.370000",,,,,,,,,,,,,,"318.000000","5996.500000","4448.000000","2.000000","5996.500000","5996.500000",,,,,,,,,,,"4175728.000000","5650860.000000","478796.000000","0.000000","65787132.000000","0.000000","87779132.000000",,"3623976.000000","25821488.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000",,,,,,,,"490.000000","6737.000000",,,,,,,,,,,"3829.000000","485.000000","401.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","352.000000","389.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968454.000000",,,,, +"10049.000000","48.410000","10049.000000","48.410000","10049.000000","48.410000",,,,,,,,,,,,,,"35.000000","5981.000000","4496.000000","4.000000","5981.000000","5981.000000",,,,,,,,,,,"4259612.000000","5755716.000000","478796.000000","0.000000","65770904.000000","0.000000","87779132.000000",,"3623976.000000","25970604.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000",,,,,,,,"242.000000","7187.000000",,,,,,,,,,,"3844.000000","481.000000","394.000000","453.000000","636.000000","500.000000","589.000000","0.000000","0.000000","0.000000","415.000000","363.000000","388.000000","533.000000","461.000000","501.000000","160.000000","6000.000000",,"8968474.000000",,,,, +"13333.000000","53.545000","13333.000000","53.545000","13333.000000","53.545000",,,,,,,,,,,,,,"41.000000","9188.500000","7961.000000","9.000000","9188.500000","9188.500000",,,,,,,,,,,"4211600.000000","5267308.000000","478796.000000","0.000000","65744812.000000","0.000000","87779132.000000",,"3623976.000000","25995508.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000",,,,,,,,"279.000000","10095.000000",,,,,,,,,,,"3974.000000","481.000000","437.000000","422.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","414.000000","403.000000","373.000000","537.000000","589.000000","461.000000","160.000000","6000.000000",,"8968494.000000",,,,, +"9926.000000","48.195000","9926.000000","48.195000","9926.000000","48.195000",,,,,,,,,,,,,,"40.000000","4515.500000","3166.000000","11.000000","4515.500000","4515.500000",,,,,,,,,,,"3792172.000000","5183424.000000","478792.000000","0.000000","65725256.000000","0.000000","87779136.000000",,"3623976.000000","26031632.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000",,,,,,,,"197.000000","5627.000000",,,,,,,,,,,"3796.000000","475.000000","439.000000","419.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","410.000000","401.000000","371.000000","531.000000","589.000000","461.000000","160.000000","6000.000000",,"8968514.000000",,,,, +"12976.000000","52.960000","12976.000000","52.960000","12976.000000","52.960000",,,,,,,,,,,,,,"93.000000","6296.000000","4949.000000","13.000000","6296.000000","6296.000000",,,,,,,,,,,"3771372.000000","5225536.000000","478788.000000","0.000000","65701384.000000","0.000000","87779308.000000",,"3623976.000000","26024872.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000",,,,,,,,"220.000000","7330.000000",,,,,,,,,,,"3812.000000","472.000000","448.000000","422.000000","632.000000","714.000000","530.000000","0.000000","0.000000","0.000000","408.000000","399.000000","372.000000","518.000000","589.000000","477.000000","160.000000","6000.000000",,"8968534.000000",,,,, +"13921.000000","54.430000","13921.000000","54.430000","13921.000000","54.430000",,,,,,,,,,,,,,"29.000000","10092.500000","8599.000000","24.000000","10092.500000","10092.500000",,,,,,,,,,,"3798416.000000","5267484.000000","478788.000000","0.000000","65680220.000000","0.000000","87779308.000000",,"3623976.000000","26045584.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000",,,,,,,,"615.000000","10941.000000",,,,,,,,,,,"3977.000000","469.000000","478.000000","426.000000","593.000000","606.000000","559.000000","0.000000","0.000000","0.000000","407.000000","425.000000","376.000000","514.000000","535.000000","493.000000","160.000000","6000.000000",,"8968554.000000",,,,, +"12973.000000","52.935000","12973.000000","52.935000","12973.000000","52.935000",,,,,,,,,,,,,,"38.000000","6355.000000","5332.000000","2.000000","6355.000000","6355.000000",,,,,,,,,,,"3756304.000000","4993540.000000","478788.000000","0.000000","65654328.000000","0.000000","87779140.000000",,"3623976.000000","26100836.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000",,,,,,,,"207.000000","7132.000000",,,,,,,,,,,"3936.000000","468.000000","510.000000","428.000000","589.000000","606.000000","559.000000","0.000000","0.000000","0.000000","405.000000","451.000000","380.000000","507.000000","535.000000","493.000000","160.000000","6000.000000",,"8968574.000000",,,,, +"10408.000000","48.925000","10408.000000","48.925000","10408.000000","48.925000",,,,,,,,,,,,,,"11817.000000","29523.000000","17376.000000","11.000000","29523.000000","29523.000000",,,,,,,,,,,"4008124.000000","5266336.000000","478788.000000","0.000000","65673344.000000","0.000000","87779304.000000",,"3623976.000000","26102704.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000",,,,,,,,"12036.000000","17815.000000",,,,,,,,,,,"3726.000000","465.000000","524.000000","430.000000","589.000000","606.000000","560.000000","0.000000","0.000000","0.000000","403.000000","455.000000","381.000000","501.000000","535.000000","493.000000","160.000000","6000.000000",,"8968594.000000",,,,, +"11125.000000","50.045000","11125.000000","50.045000","11125.000000","50.045000",,,,,,,,,,,,,,"367.000000","23800.000000","16267.000000","42.000000","23800.000000","23800.000000",,,,,,,,,,,"4502684.000000","6246520.000000","478788.000000","0.000000","65667436.000000","0.000000","87779384.000000",,"3623976.000000","26110896.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000",,,,,,,,"13402.000000","17564.000000",,,,,,,,,,,"3799.000000","464.000000","481.000000","435.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","401.000000","402.000000","383.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968614.000000",,,,, +"10437.000000","48.965000","10437.000000","48.965000","10437.000000","48.965000",,,,,,,,,,,,,,"37.000000","26318.000000","26281.000000","50.000000","26318.000000","26318.000000",,,,,,,,,,,"4785220.000000","6895488.000000","478788.000000","0.000000","65655288.000000","0.000000","87779384.000000",,"3623976.000000","26076004.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000",,,,,,,,,,,,,,,,,,,,"3705.000000","462.000000","467.000000","436.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","398.000000","377.000000","382.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968634.000000",,,,, +"10978.000000","49.810000","10978.000000","49.810000","10978.000000","49.810000",,,,,,,,,,,,,,"40.000000","43050.000000","38221.000000","53.000000","43050.000000","43050.000000",,,,,,,,,,,"5204652.000000","7252004.000000","478788.000000","0.000000","65657664.000000","0.000000","87779384.000000",,"3623976.000000","26015120.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000",,,,,,,,"9253.000000","38585.000000",,,,,,,,,,,"3664.000000","461.000000","453.000000","443.000000","589.000000","549.000000","560.000000","0.000000","0.000000","0.000000","397.000000","366.000000","385.000000","501.000000","428.000000","493.000000","160.000000","6000.000000",,"8968654.000000",,,,, +"9512.000000","47.510000","9512.000000","47.510000","9512.000000","47.510000",,,,,,,,,,,,,,"59.000000","36825.500000","29936.000000","23.000000","36825.500000","36825.500000",,,,,,,,,,,"5216780.000000","7252012.000000","478788.000000","0.000000","65649204.000000","0.000000","87779384.000000",,"3623976.000000","26024644.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000",,,,,,,,"14770.000000","28884.000000",,,,,,,,,,,"3639.000000","459.000000","440.000000","444.000000","585.000000","558.000000","560.000000","0.000000","0.000000","0.000000","395.000000","358.000000","384.000000","500.000000","462.000000","493.000000","160.000000","6000.000000",,"8968674.000000",,,,, +"11179.000000","50.110000","11179.000000","50.110000","11179.000000","50.110000",,,,,,,,,,,,,,"1510.000000","12407.000000","9826.000000","16.000000","12407.000000","12407.000000",,,,,,,,,,,"5110644.000000","7092868.000000","478788.000000","0.000000","65628896.000000","0.000000","87779252.000000",,"3623976.000000","25998596.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000",,,,,,,,"1671.000000","11807.000000",,,,,,,,,,,"3615.000000","457.000000","452.000000","454.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","394.000000","376.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968694.000000",,,,, +"10792.000000","49.495000","10792.000000","49.495000","10792.000000","49.495000",,,,,,,,,,,,,,"881.000000","6898.500000","5824.000000","7.000000","6898.500000","6898.500000",,,,,,,,,,,"5152624.000000","6799304.000000","478788.000000","0.000000","65607692.000000","0.000000","87779288.000000",,"3623976.000000","25986144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000",,,,,,,,"968.000000","6123.000000",,,,,,,,,,,"3678.000000","455.000000","433.000000","451.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","392.000000","372.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968714.000000",,,,, +"12843.000000","52.695000","12843.000000","52.695000","12843.000000","52.695000",,,,,,,,,,,,,,"185.000000","7695.500000","7323.000000","4.000000","7695.500000","7695.500000",,,,,,,,,,,"5431316.000000","7029992.000000","478788.000000","0.000000","65590484.000000","0.000000","87779288.000000",,"3623976.000000","26003420.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000",,,,,,,,"297.000000","7586.000000",,,,,,,,,,,"4037.000000","457.000000","462.000000","460.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","394.000000","411.000000","400.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968734.000000",,,,, +"12393.000000","51.985000","12393.000000","51.985000","12393.000000","51.985000",,,,,,,,,,,,,,"587.000000","6962.500000","6365.000000","8.000000","6962.500000","6962.500000",,,,,,,,,,,"5431316.000000","7052116.000000","478788.000000","0.000000","65577620.000000","0.000000","87779288.000000",,"3623976.000000","25929092.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000",,,,,,,,"633.000000","6339.000000",,,,,,,,,,,"3920.000000","460.000000","460.000000","466.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","397.000000","417.000000","404.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968754.000000",,,,, +"14332.000000","55.025000","14332.000000","55.025000","14332.000000","55.025000",,,,,,,,,,,,,,"50.000000","5887.500000","5636.000000","12.000000","5887.500000","5887.500000",,,,,,,,,,,"5368400.000000","7198916.000000","478788.000000","0.000000","65578952.000000","0.000000","87779288.000000",,"3623976.000000","25978516.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000",,,,,,,,"149.000000","5940.000000",,,,,,,,,,,"4073.000000","460.000000","493.000000","470.000000","566.000000","562.000000","562.000000","0.000000","0.000000","0.000000","398.000000","453.000000","409.000000","500.000000","528.000000","501.000000","160.000000","6000.000000",,"8968774.000000",,,,, +"17878.000000","60.600000","17878.000000","60.600000","17878.000000","60.600000",,,,,,,,,,,,,,"214.000000","16476.500000","16119.000000","25.000000","16476.500000","16476.500000",,,,,,,,,,,"5702172.000000","7343720.000000","478788.000000","0.000000","65618164.000000","0.000000","87772580.000000",,"3623976.000000","25951940.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000",,,,,,,,"382.000000","16237.000000",,,,,,,,,,,"4520.000000","465.000000","653.000000","503.000000","569.000000","1274.000000","569.000000","0.000000","0.000000","0.000000","401.000000","528.000000","425.000000","501.000000","741.000000","528.000000","160.000000","6000.000000",,"8968794.000000",,,,, +"16141.000000","57.850000","16141.000000","57.850000","16141.000000","57.850000",,,,,,,,,,,,,,"32.000000","3779.500000","3455.000000","10.000000","3779.500000","3779.500000",,,,,,,,,,,"5531040.000000","7119944.000000","478788.000000","0.000000","65566880.000000","0.000000","87745912.000000",,"3623976.000000","25984272.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000",,,,,,,,"121.000000","3950.000000",,,,,,,,,,,"4203.000000","471.000000","724.000000","523.000000","589.000000","1274.000000","671.000000","0.000000","0.000000","0.000000","405.000000","574.000000","439.000000","507.000000","741.000000","572.000000","160.000000","6000.000000",,"8968814.000000",,,,, +"16985.000000","59.180000","16985.000000","59.180000","16985.000000","59.180000",,,,,,,,,,,,,,"257.000000","3152.000000","2823.000000","16.000000","3152.000000","3152.000000",,,,,,,,,,,"5426180.000000","7036060.000000","478788.000000","0.000000","65576756.000000","0.000000","87745912.000000",,"3623976.000000","25961336.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000",,,,,,,,"307.000000","2917.000000",,,,,,,,,,,"4196.000000","475.000000","784.000000","537.000000","616.000000","1274.000000","750.000000","0.000000","0.000000","0.000000","408.000000","617.000000","453.000000","528.000000","741.000000","638.000000","160.000000","6000.000000",,"8968834.000000",,,,, +"15333.000000","56.585000","15333.000000","56.585000","15333.000000","56.585000",,,,,,,,,,,,,,"1109.000000","18599.500000","16281.000000","29.000000","18599.500000","18599.500000",,,,,,,,,,,"5593948.000000","7098980.000000","478788.000000","0.000000","65562916.000000","0.000000","87745912.000000",,"3623976.000000","25976144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000",,,,,,,,"1744.000000","18064.000000",,,,,,,,,,,"3936.000000","477.000000","679.000000","543.000000","608.000000","832.000000","775.000000","0.000000","0.000000","0.000000","410.000000","572.000000","454.000000","529.000000","688.000000","638.000000","160.000000","6000.000000",,"8968854.000000",,,,, +"15359.000000","56.615000","15359.000000","56.615000","15359.000000","56.615000",,,,,,,,,,,,,,"315.000000","7614.500000","6116.000000","13.000000","7614.500000","7614.500000",,,,,,,,,,,"5815296.000000","7178740.000000","478788.000000","0.000000","65540260.000000","0.000000","87740472.000000",,"3623976.000000","26120752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000",,,,,,,,"523.000000","8273.000000",,,,,,,,,,,"4053.000000","482.000000","667.000000","554.000000","616.000000","786.000000","786.000000","0.000000","0.000000","0.000000","414.000000","563.000000","461.000000","535.000000","688.000000","649.000000","160.000000","6000.000000",,"8968874.000000",,,,, +"15233.000000","56.405000","15233.000000","56.405000","15233.000000","56.405000",,,,,,,,,,,,,,"37.000000","8353.500000","7297.000000","43.000000","8353.500000","8353.500000",,,,,,,,,,,"5941176.000000","7325592.000000","478788.000000","0.000000","65518472.000000","0.000000","87740520.000000",,"3623976.000000","26118284.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000",,,,,,,,"239.000000","9134.000000",,,,,,,,,,,"4115.000000","486.000000","652.000000","563.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","416.000000","539.000000","469.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968894.000000",,,,, +"13682.000000","53.965000","13682.000000","53.965000","13682.000000","53.965000",,,,,,,,,,,,,,"61.000000","7190.500000","6962.000000","28.000000","7190.500000","7190.500000",,,,,,,,,,,"6150892.000000","7661136.000000","478788.000000","0.000000","65501680.000000","0.000000","87740520.000000",,"3623976.000000","26135752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000",,,,,,,,"172.000000","7186.000000",,,,,,,,,,,"4055.000000","490.000000","628.000000","572.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","420.000000","531.000000","480.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968914.000000",,,,, +"13589.000000","53.810000","13589.000000","53.810000","13589.000000","53.810000",,,,,,,,,,,,,,"100.000000","7215.000000","7111.000000","13.000000","7215.000000","7215.000000",,,,,,,,,,,"5184572.000000","6727144.000000","478788.000000","0.000000","65482156.000000","0.000000","87740928.000000",,"3623976.000000","26085772.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000",,,,,,,,"149.000000","7070.000000",,,,,,,,,,,"3969.000000","492.000000","598.000000","580.000000","671.000000","735.000000","786.000000","0.000000","0.000000","0.000000","421.000000","508.000000","487.000000","570.000000","570.000000","649.000000","160.000000","6000.000000",,"8968934.000000",,,,, +"12989.000000","52.870000","12989.000000","52.870000","12989.000000","52.870000",,,,,,,,,,,,,,"38.000000","5182.000000","4994.000000","8.000000","5182.000000","5182.000000",,,,,,,,,,,"5205088.000000","6999316.000000","478788.000000","0.000000","65476916.000000","0.000000","87740472.000000",,"3623976.000000","26044352.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000",,,,,,,,"131.000000","5199.000000",,,,,,,,,,,"3989.000000","496.000000","569.000000","586.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","424.000000","484.000000","493.000000","570.000000","537.000000","649.000000","160.000000","6000.000000",,"8968954.000000",,,,, +"14491.000000","55.220000","14491.000000","55.220000","14491.000000","55.220000",,,,,,,,,,,,,,"36.000000","7694.000000","7446.000000","36.000000","7694.000000","7694.000000",,,,,,,,,,,"5121252.000000","6810624.000000","478788.000000","0.000000","65463160.000000","0.000000","87740520.000000",,"3623976.000000","26056460.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000",,,,,,,,"139.000000","7765.000000",,,,,,,,,,,"4100.000000","500.000000","567.000000","598.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","428.000000","484.000000","505.000000","570.000000","553.000000","649.000000","160.000000","6000.000000",,"8968974.000000",,,,, +"12772.000000","52.515000","12772.000000","52.515000","12772.000000","52.515000",,,,,,,,,,,,,,"36.000000","4411.000000","4226.000000","8.000000","4411.000000","4411.000000",,,,,,,,,,,"5548400.000000","6949844.000000","478788.000000","0.000000","65445396.000000","0.000000","87740520.000000",,"3623976.000000","26195756.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000",,,,,,,,"98.000000","4462.000000",,,,,,,,,,,"4112.000000","502.000000","553.000000","600.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","430.000000","479.000000","508.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8968994.000000",,,,, +"13759.000000","54.055000","13759.000000","54.055000","13759.000000","54.055000",,,,,,,,,,,,,,"231.000000","16475.000000","15985.000000","30.000000","16475.000000","16475.000000",,,,,,,,,,,"5716172.000000","6865960.000000","478788.000000","0.000000","65441184.000000","0.000000","87740520.000000",,"3623976.000000","26271160.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000",,,,,,,,"406.000000","16326.000000",,,,,,,,,,,"4116.000000","507.000000","572.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","433.000000","497.000000","518.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969014.000000",,,,, +"12684.000000","52.370000","12684.000000","52.370000","12684.000000","52.370000",,,,,,,,,,,,,,"36.000000","3341.000000","3165.000000","31.000000","3341.000000","3341.000000",,,,,,,,,,,"5443536.000000","6656232.000000","478788.000000","0.000000","65422392.000000","0.000000","87740528.000000",,"3623976.000000","26289096.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000",,,,,,,,"118.000000","3361.000000",,,,,,,,,,,"3954.000000","509.000000","543.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","434.000000","469.000000","517.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969034.000000",,,,, +"13410.000000","53.490000","13410.000000","53.490000","13410.000000","53.490000",,,,,,,,,,,,,,"380.000000","6805.000000","6424.000000","6.000000","6805.000000","6805.000000",,,,,,,,,,,"4911396.000000","6385664.000000","478788.000000","0.000000","65401792.000000","0.000000","87740388.000000",,"3623976.000000","26264364.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000",,,,,,,,"476.000000",,,,,,,,,,,,"4030.000000","514.000000","571.000000","623.000000","677.000000","680.000000","786.000000","0.000000","0.000000","0.000000","438.000000","478.000000","520.000000","570.000000","527.000000","649.000000","160.000000","6000.000000",,"8969054.000000",,,,, +"15908.000000","57.405000","15908.000000","57.405000","15908.000000","57.405000",,,,,,,,,,,,,,"76.000000","7782.500000","7497.000000","29.000000","7782.500000","7782.500000",,,,,,,,,,,"4974452.000000","6155116.000000","478788.000000","0.000000","65410668.000000","0.000000","87740532.000000",,"3623976.000000","26165064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000",,,,,,,,"210.000000","7782.000000",,,,,,,,,,,"4063.000000","518.000000","582.000000","632.000000","680.000000","719.000000","786.000000","0.000000","0.000000","0.000000","441.000000","488.000000","525.000000","572.000000","605.000000","649.000000","160.000000","6000.000000",,"8969074.000000",,,,, +"17121.000000","59.305000","17121.000000","59.305000","17121.000000","59.305000",,,,,,,,,,,,,,"66.000000","8342.000000","7418.000000","4.000000","8342.000000","8342.000000",,,,,,,,,,,"5393884.000000","6763292.000000","478788.000000","0.000000","65406344.000000","0.000000","87740532.000000",,"3623976.000000","26170980.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000",,,,,,,,"258.000000","8941.000000",,,,,,,,,,,"4139.000000","517.000000","711.000000","626.000000","680.000000","1093.000000","775.000000","0.000000","0.000000","0.000000","440.000000","553.000000","522.000000","570.000000","656.000000","640.000000","160.000000","6000.000000",,"8969094.000000",,,,, +"14695.000000","55.490000","14695.000000","55.490000","14695.000000","55.490000",,,,,,,,,,,,,,"683.000000","11612.000000","10604.000000","21.000000","11612.000000","11612.000000",,,,,,,,,,,"6289980.000000","7848136.000000","478788.000000","0.000000","65379984.000000","0.000000","87740532.000000",,"3623976.000000","26254736.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000",,,,,,,,"798.000000","11138.000000",,,,,,,,,,,"3935.000000","522.000000","727.000000","623.000000","687.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","443.000000","571.000000","520.000000","572.000000","656.000000","605.000000","160.000000","6000.000000",,"8969114.000000",,,,, +"16199.000000","57.865000","16199.000000","57.865000","16199.000000","57.865000",,,,,,,,,,,,,,"51.000000","6903.000000","6532.000000","58.000000","6903.000000","6903.000000",,,,,,,,,,,"6373868.000000","8078816.000000","478788.000000","0.000000","65404484.000000","0.000000","87740532.000000",,"3623976.000000","26205084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000",,,,,,,,"147.000000","7074.000000",,,,,,,,,,,"4050.000000","525.000000","705.000000","616.000000","714.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","446.000000","559.000000","513.000000","572.000000","662.000000","605.000000","160.000000","6000.000000",,"8969134.000000",,,,, +"15656.000000","57.005000","15656.000000","57.005000","15656.000000","57.005000",,,,,,,,,,,,,,"97.000000","8521.000000","8060.000000","16.000000","8521.000000","8521.000000",,,,,,,,,,,"6164148.000000","7701332.000000","478788.000000","0.000000","65389700.000000","0.000000","87740532.000000",,"3623976.000000","26217412.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000",,,,,,,,"523.000000","8362.000000",,,,,,,,,,,"4153.000000","531.000000","667.000000","623.000000","735.000000","860.000000","764.000000","0.000000","0.000000","0.000000","449.000000","549.000000","517.000000","579.000000","691.000000","640.000000","160.000000","6000.000000",,"8969154.000000",,,,, +"15203.000000","56.290000","15203.000000","56.290000","15203.000000","56.290000",,,,,,,,,,,,,,"764.000000","12567.000000","11626.000000","16.000000","12567.000000","12567.000000",,,,,,,,,,,"6137452.000000","7952648.000000","478788.000000","0.000000","65390028.000000","0.000000","87740484.000000",,"3623976.000000","26215156.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000",,,,,,,,"902.000000","11841.000000",,,,,,,,,,,"4240.000000","534.000000","653.000000","620.000000","735.000000","860.000000","759.000000","0.000000","0.000000","0.000000","453.000000","548.000000","517.000000","589.000000","691.000000","605.000000","160.000000","6000.000000",,"8969174.000000",,,,, +"15683.000000","57.045000","15683.000000","57.045000","15683.000000","57.045000",,,,,,,,,,,,,,"366.000000","11045.500000","10536.000000","11.000000","11045.500000","11045.500000",,,,,,,,,,,"6054092.000000","7470832.000000","478788.000000","0.000000","65382616.000000","0.000000","87741008.000000",,"3623976.000000","26188616.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000",,,,,,,,"511.000000","10677.000000",,,,,,,,,,,"4236.000000","538.000000","673.000000","620.000000","741.000000","860.000000","764.000000","0.000000","0.000000","0.000000","456.000000","560.000000","517.000000","589.000000","691.000000","640.000000","160.000000","6000.000000",,"8969194.000000",,,,, +"11447.000000","50.400000","11447.000000","50.400000","11447.000000","50.400000",,,,,,,,,,,,,,"320.000000","8308.500000","7564.000000","9.000000","8308.500000","8308.500000",,,,,,,,,,,"5927884.000000","7470452.000000","478788.000000","0.000000","65365216.000000","0.000000","87740628.000000",,"3623976.000000","26204320.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000",,,,,,,,"436.000000","8296.000000",,,,,,,,,,,"3966.000000","541.000000","595.000000","617.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","458.000000","507.000000","512.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969214.000000",,,,, +"12885.000000","52.645000","12885.000000","52.645000","12885.000000","52.645000",,,,,,,,,,,,,,"219.000000","8899.500000","8505.000000","15.000000","8899.500000","8899.500000",,,,,,,,,,,"5382624.000000","7276324.000000","478788.000000","0.000000","65345136.000000","0.000000","87740628.000000",,"3623976.000000","26224096.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000",,,,,,,,"352.000000","8722.000000",,,,,,,,,,,"4055.000000","543.000000","556.000000","612.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","460.000000","480.000000","511.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969234.000000",,,,, +"12788.000000","52.480000","12788.000000","52.480000","12788.000000","52.480000",,,,,,,,,,,,,,"42.000000","4631.000000","4476.000000","6.000000","4631.000000","4631.000000",,,,,,,,,,,"5634212.000000","7695684.000000","478788.000000","0.000000","65325620.000000","0.000000","87740560.000000",,"3623976.000000","26346572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000",,,,,,,,"125.000000","4619.000000",,,,,,,,,,,"4057.000000","545.000000","507.000000","607.000000","750.000000","842.000000","791.000000","0.000000","6.000000","0.000000","463.000000","448.000000","510.000000","589.000000","566.000000","640.000000","160.000000","6000.000000",,"8969254.000000",,,,, +"11884.000000","51.055000","11884.000000","51.055000","11884.000000","51.055000",,,,,,,,,,,,,,"404.000000","9759.000000","9134.000000","13.000000","9759.000000","9759.000000",,,,,,,,,,,"5529348.000000","7695684.000000","478788.000000","0.000000","65304048.000000","0.000000","87740560.000000",,"3623976.000000","26366792.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000",,,,,,,,"491.000000","9488.000000",,,,,,,,,,,"4109.000000","547.000000","481.000000","600.000000","750.000000","541.000000","791.000000","0.000000","0.000000","0.000000","465.000000","449.000000","505.000000","589.000000","505.000000","640.000000","160.000000","6000.000000",,"8969274.000000",,,,, +"12568.000000","52.115000","12568.000000","52.115000","12568.000000","52.115000",,,,,,,,,,,,,,"126.000000","6899.500000","6764.000000","26.000000","6899.500000","6899.500000",,,,,,,,,,,"5361504.000000","7165648.000000","478788.000000","0.000000","65286120.000000","0.000000","87740484.000000",,"3623976.000000","26441124.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000",,,,,,,,"191.000000","6718.000000",,,,,,,,,,,"3947.000000","551.000000","484.000000","598.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","468.000000","444.000000","504.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969294.000000",,,,, +"12970.000000","52.750000","12970.000000","52.750000","12970.000000","52.750000",,,,,,,,,,,,,,"535.000000","9316.500000","8071.000000","10.000000","9316.500000","9316.500000",,,,,,,,,,,"5361504.000000","7249536.000000","478788.000000","0.000000","65297344.000000","0.000000","87740484.000000",,"3623976.000000","26249812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000",,,,,,,,"735.000000","9291.000000",,,,,,,,,,,"3800.000000","552.000000","485.000000","590.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","469.000000","438.000000","498.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969314.000000",,,,, +"11064.000000","49.755000","11064.000000","49.755000","11064.000000","49.755000",,,,,,,,,,,,,,"80.000000","5113.500000","4468.000000","12.000000","5113.500000","5113.500000",,,,,,,,,,,"5382528.000000","7291528.000000","478788.000000","0.000000","65279968.000000","0.000000","87740532.000000",,"3623976.000000","26267080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000",,,,,,,,"244.000000","5435.000000",,,,,,,,,,,"3883.000000","554.000000","481.000000","587.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","471.000000","429.000000","497.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969334.000000",,,,, +"12420.000000","51.870000","12420.000000","51.870000","12420.000000","51.870000",,,,,,,,,,,,,,"596.000000","8222.000000","7213.000000","11.000000","8222.000000","8222.000000",,,,,,,,,,,"5434084.000000","6997624.000000","478788.000000","0.000000","65261096.000000","0.000000","87740532.000000",,"3623976.000000","26247292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000",,,,,,,,"721.000000","7912.000000",,,,,,,,,,,"3952.000000","556.000000","476.000000","579.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","473.000000","432.000000","495.000000","589.000000","525.000000","640.000000","160.000000","6000.000000",,"8969354.000000",,,,, +"14927.000000","55.795000","14927.000000","55.795000","14927.000000","55.795000",,,,,,,,,,,,,,"76.000000","7352.500000","7271.000000","7.000000","7352.500000","7352.500000",,,,,,,,,,,"5014656.000000","6494308.000000","478788.000000","0.000000","65259260.000000","0.000000","87740532.000000",,"3623976.000000","26343444.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000",,,,,,,,"186.000000","7170.000000",,,,,,,,,,,"4023.000000","560.000000","516.000000","577.000000","755.000000","791.000000","791.000000","0.000000","0.000000","0.000000","476.000000","463.000000","494.000000","598.000000","647.000000","647.000000","160.000000","6000.000000",,"8969374.000000",,,,, +"14943.000000","55.820000","14943.000000","55.820000","14943.000000","55.820000",,,,,,,,,,,,,,"659.000000","9461.500000","8494.000000","23.000000","9461.500000","9461.500000",,,,,,,,,,,"4721060.000000","6053912.000000","478788.000000","0.000000","65251168.000000","0.000000","87740532.000000",,"3623976.000000","26351060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000",,,,,,,,"792.000000","8976.000000",,,,,,,,,,,"4045.000000","562.000000","565.000000","558.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","478.000000","503.000000","487.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969394.000000",,,,, +"14640.000000","55.335000","14640.000000","55.335000","14640.000000","55.335000",,,,,,,,,,,,,,"48.000000","7387.000000","7127.000000","33.000000","7387.000000","7387.000000",,,,,,,,,,,"4709708.000000","6288540.000000","478788.000000","0.000000","65235112.000000","0.000000","87740532.000000",,"3623976.000000","26426572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000",,,,,,,,"148.000000","7450.000000",,,,,,,,,,,"4025.000000","566.000000","589.000000","552.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","481.000000","520.000000","485.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969414.000000",,,,, +"14933.000000","55.790000","14933.000000","55.790000","14933.000000","55.790000",,,,,,,,,,,,,,"44.000000","5617.500000","5537.000000","21.000000","5617.500000","5617.500000",,,,,,,,,,,"4646792.000000","6204652.000000","478788.000000","0.000000","65223732.000000","0.000000","87740532.000000",,"3623976.000000","26362656.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000",,,,,,,,"128.000000","5525.000000",,,,,,,,,,,"3922.000000","568.000000","575.000000","551.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","483.000000","512.000000","484.000000","605.000000","661.000000","598.000000","160.000000","6000.000000",,"8969434.000000",,,,, +"14779.000000","55.540000","14779.000000","55.540000","14779.000000","55.540000",,,,,,,,,,,,,,"103.000000","7467.000000","7029.000000","17.000000","7467.000000","7467.000000",,,,,,,,,,,"4772616.000000","6309508.000000","478788.000000","0.000000","65210220.000000","0.000000","87740532.000000",,"3623976.000000","26377084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000",,,,,,,,"499.000000","7303.000000",,,,,,,,,,,"4235.000000","570.000000","589.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","484.000000","522.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969454.000000",,,,, +"15799.000000","57.135000","15799.000000","57.135000","15799.000000","57.135000",,,,,,,,,,,,,,"1032.000000","8544.500000","7347.000000","18.000000","8544.500000","8544.500000",,,,,,,,,,,"4652464.000000","5979640.000000","478788.000000","0.000000","65191580.000000","0.000000","87740532.000000",,"3623976.000000","26417140.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000",,,,,,,,"1152.000000","7557.000000",,,,,,,,,,,"3999.000000","572.000000","606.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","487.000000","535.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969474.000000",,,,, +"14882.000000","55.695000","14882.000000","55.695000","14882.000000","55.695000",,,,,,,,,,,,,,"1593.000000","7873.500000","6128.000000","33.000000","7873.500000","7873.500000",,,,,,,,,,,"4568580.000000","5917012.000000","478788.000000","0.000000","65193768.000000","0.000000","87740532.000000",,"3623976.000000","26468820.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000",,,,,,,,"1727.000000","6297.000000",,,,,,,,,,,"4170.000000","574.000000","614.000000","540.000000","759.000000","712.000000","707.000000","0.000000","0.000000","0.000000","490.000000","552.000000","483.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969494.000000",,,,, +"13838.000000","54.050000","13838.000000","54.050000","13838.000000","54.050000",,,,,,,,,,,,,,"43.000000","6360.000000","6134.000000","42.000000","6360.000000","6360.000000",,,,,,,,,,,"4229944.000000","5473088.000000","478788.000000","0.000000","65174068.000000","0.000000","87726476.000000",,"3623976.000000","26473636.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000",,,,,,,,"161.000000","6381.000000",,,,,,,,,,,"4032.000000","575.000000","569.000000","537.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","493.000000","525.000000","486.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969514.000000",,,,, +"11811.000000","50.865000","11811.000000","50.865000","11811.000000","50.865000",,,,,,,,,,,,,,"42.000000","6139.000000","4893.000000","22.000000","6139.000000","6139.000000",,,,,,,,,,,"3961532.000000","5084388.000000","478784.000000","0.000000","65157356.000000","0.000000","87726340.000000",,"3623976.000000","26452296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000",,,,,,,,"253.000000","7090.000000",,,,,,,,,,,"4040.000000","576.000000","525.000000","536.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","494.000000","491.000000","484.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969534.000000",,,,, +"12947.000000","52.640000","12947.000000","52.640000","12947.000000","52.640000",,,,,,,,,,,,,,"41.000000","5582.500000","5339.000000","12.000000","5582.500000","5582.500000",,,,,,,,,,,"4213192.000000","5167984.000000","478784.000000","0.000000","65148768.000000","0.000000","87726340.000000",,"3623976.000000","26465932.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000",,,,,,,,"170.000000","5615.000000",,,,,,,,,,,"3961.000000","577.000000","500.000000","538.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","496.000000","462.000000","485.000000","620.000000","539.000000","616.000000","160.000000","6000.000000",,"8969554.000000",,,,, +"13037.000000","52.775000","13037.000000","52.775000","13037.000000","52.775000",,,,,,,,,,,,,,"47.000000","6647.000000","6350.000000","23.000000","6647.000000","6647.000000",,,,,,,,,,,"4129304.000000","5105068.000000","478784.000000","0.000000","65134304.000000","0.000000","87726340.000000",,"3623976.000000","26479816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000",,,,,,,,"160.000000","6737.000000",,,,,,,,,,,"4045.000000","579.000000","490.000000","539.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","454.000000","487.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969574.000000",,,,, +"12325.000000","51.650000","12325.000000","51.650000","12325.000000","51.650000",,,,,,,,,,,,,,"130.000000","5808.500000","5766.000000","28.000000","5808.500000","5808.500000",,,,,,,,,,,"4440692.000000","5616280.000000","478784.000000","0.000000","65115576.000000","0.000000","87726340.000000",,"3623976.000000","26575832.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000",,,,,,,,"134.000000","5586.000000",,,,,,,,,,,"3951.000000","578.000000","487.000000","536.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","450.000000","486.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969594.000000",,,,, +"11768.000000","50.770000","11768.000000","50.770000","11768.000000","50.770000",,,,,,,,,,,,,,"42.000000","5073.500000","4916.000000","37.000000","5073.500000","5073.500000",,,,,,,,,,,"4440976.000000","5532680.000000","478784.000000","0.000000","65099724.000000","0.000000","87726624.000000",,"3623976.000000","26578200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000",,,,,,,,"113.000000","5075.000000",,,,,,,,,,,"3760.000000","580.000000","471.000000","535.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","433.000000","485.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969614.000000",,,,, +"12344.000000","51.665000","12344.000000","51.665000","12344.000000","51.665000",,,,,,,,,,,,,,"73.000000","5855.000000","5781.000000","16.000000","5855.000000","5855.000000",,,,,,,,,,,"4713608.000000","5784344.000000","478784.000000","0.000000","65081780.000000","0.000000","87726624.000000",,"3623976.000000","26595112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000",,,,,,,,"155.000000",,,,,,,,,,,,"3966.000000","579.000000","470.000000","536.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","430.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969634.000000",,,,, +"13161.000000","52.935000","13161.000000","52.935000","13161.000000","52.935000",,,,,,,,,,,,,,"354.000000","20761.000000","19979.000000","52.000000","20761.000000","20761.000000",,,,,,,,,,,"4402768.000000","5625824.000000","478784.000000","0.000000","65066032.000000","0.000000","87727172.000000",,"3623976.000000","26623612.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000",,,,,,,,"543.000000","20645.000000",,,,,,,,,,,"3901.000000","580.000000","484.000000","538.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","501.000000","441.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969654.000000",,,,, +"14237.000000","54.620000","14237.000000","54.620000","14237.000000","54.620000",,,,,,,,,,,,,,"763.000000","18125.500000","17265.000000","11.000000","18125.500000","18125.500000",,,,,,,,,,,"4234992.000000","5709708.000000","478784.000000","0.000000","65067712.000000","0.000000","87727172.000000",,"3623976.000000","26565356.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000",,,,,,,,"944.000000","17278.000000",,,,,,,,,,,"4007.000000","582.000000","521.000000","536.000000","764.000000","924.000000","666.000000","0.000000","0.000000","0.000000","501.000000","470.000000","486.000000","622.000000","713.000000","616.000000","160.000000","6000.000000",,"8969674.000000",,,,, +"14018.000000","54.275000","14018.000000","54.275000","14018.000000","54.275000",,,,,,,,,,,,,,"175.000000","7571.500000","7171.000000","25.000000","7571.500000","7571.500000",,,,,,,,,,,"4088444.000000","5416356.000000","478784.000000","0.000000","65060080.000000","0.000000","87727424.000000",,"3623976.000000","26572884.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000",,,,,,,,"308.000000","7488.000000",,,,,,,,,,,"4135.000000","572.000000","544.000000","532.000000","750.000000","924.000000","665.000000","0.000000","0.000000","0.000000","498.000000","491.000000","484.000000","605.000000","713.000000","572.000000","160.000000","6000.000000",,"8969694.000000",,,,, +"12631.000000","52.095000","12631.000000","52.095000","12631.000000","52.095000",,,,,,,,,,,,,,"978.000000","3491.000000","2267.000000","5.000000","3491.000000","3491.000000",,,,,,,,,,,"4135924.000000","5296064.000000","478784.000000","0.000000","65045084.000000","0.000000","87727424.000000",,"3623976.000000","26621704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000",,,,,,,,"1030.000000","2706.000000",,,,,,,,,,,"4027.000000","567.000000","532.000000","527.000000","741.000000","924.000000","632.000000","0.000000","0.000000","0.000000","495.000000","482.000000","480.000000","605.000000","713.000000","564.000000","160.000000","6000.000000",,"8969714.000000",,,,, +"13065.000000","52.785000","13065.000000","52.785000","13065.000000","52.785000",,,,,,,,,,,,,,"1628.000000","5913.000000","3475.000000","9.000000","5913.000000","5913.000000",,,,,,,,,,,"4303696.000000","5631612.000000","478784.000000","0.000000","65064576.000000","0.000000","87727424.000000",,"3623976.000000","26598104.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000",,,,,,,,"1848.000000","4874.000000",,,,,,,,,,,"3918.000000","564.000000","514.000000","524.000000","735.000000","564.000000","632.000000","0.000000","0.000000","0.000000","492.000000","469.000000","477.000000","589.000000","518.000000","564.000000","160.000000","6000.000000",,"8969734.000000",,,,, +"14033.000000","54.290000","14033.000000","54.290000","14033.000000","54.290000",,,,,,,,,,,,,,"1653.000000","10614.000000","8516.000000","13.000000","10614.000000","10614.000000",,,,,,,,,,,"4031068.000000","5463836.000000","478784.000000","0.000000","65049572.000000","0.000000","87727424.000000",,"3623976.000000","26608804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000",,,,,,,,"1836.000000","9223.000000",,,,,,,,,,,"3777.000000","562.000000","533.000000","521.000000","719.000000","638.000000","625.000000","0.000000","0.000000","0.000000","491.000000","464.000000","473.000000","579.000000","531.000000","548.000000","160.000000","6000.000000",,"8969754.000000",,,,, +"14722.000000","55.375000","14722.000000","55.375000","14722.000000","55.375000",,,,,,,,,,,,,,"1703.000000","9723.500000","7724.000000","7.000000","9723.500000","9723.500000",,,,,,,,,,,"4172564.000000","5373472.000000","478784.000000","0.000000","65050652.000000","0.000000","87726480.000000",,"3623976.000000","26588280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000",,,,,,,,"2051.000000","7967.000000",,,,,,,,,,,"3963.000000","561.000000","579.000000","521.000000","712.000000","684.000000","638.000000","0.000000","0.000000","0.000000","490.000000","489.000000","471.000000","572.000000","572.000000","539.000000","160.000000","6000.000000",,"8969774.000000",,,,, +"14538.000000","55.080000","14538.000000","55.080000","14538.000000","55.080000",,,,,,,,,,,,,,"2997.000000","10109.500000","6883.000000","4.000000","10109.500000","10109.500000",,,,,,,,,,,"4256448.000000","5625132.000000","478784.000000","0.000000","65040440.000000","0.000000","87726480.000000",,"3623976.000000","26621172.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000",,,,,,,,"3157.000000","7180.000000",,,,,,,,,,,"4002.000000","560.000000","595.000000","520.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","489.000000","504.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969794.000000",,,,, +"12527.000000","51.925000","12527.000000","51.925000","12527.000000","51.925000",,,,,,,,,,,,,,"1870.000000","6917.000000","4936.000000","53.000000","6917.000000","6917.000000",,,,,,,,,,,"4780736.000000","6380108.000000","478784.000000","0.000000","65038320.000000","0.000000","87726480.000000",,"3623976.000000","26622748.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000",,,,,,,,"1950.000000","5077.000000",,,,,,,,,,,"4021.000000","558.000000","560.000000","519.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","488.000000","495.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969814.000000",,,,, +"12079.000000","51.220000","12079.000000","51.220000","12079.000000","51.220000",,,,,,,,,,,,,,"1829.000000","6554.000000","4549.000000","12.000000","6554.000000","6554.000000",,,,,,,,,,,"4860260.000000","6695860.000000","478784.000000","0.000000","65020712.000000","0.000000","87726480.000000",,"3623976.000000","26642900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000",,,,,,,,"1965.000000","4765.000000",,,,,,,,,,,"3869.000000","555.000000","511.000000","518.000000","707.000000","621.000000","621.000000","0.000000","0.000000","0.000000","487.000000","464.000000","465.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969834.000000",,,,, +"11593.000000","50.455000","11593.000000","50.455000","11593.000000","50.455000",,,,,,,,,,,,,,"627.000000","5474.000000","4631.000000","5.000000","5474.000000","5474.000000",,,,,,,,,,,"5111920.000000","7115288.000000","478784.000000","0.000000","65017516.000000","0.000000","87726480.000000",,"3623976.000000","26657296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000",,,,,,,,"781.000000","4907.000000",,,,,,,,,,,"3935.000000","555.000000","494.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","487.000000","445.000000","464.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969854.000000",,,,, +"13167.000000","52.920000","13167.000000","52.920000","13167.000000","52.920000",,,,,,,,,,,,,,"308.000000","6196.500000","5716.000000","9.000000","6196.500000","6196.500000",,,,,,,,,,,"5174828.000000","7073344.000000","478784.000000","0.000000","65010484.000000","0.000000","87726480.000000",,"3623976.000000","26663032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000",,,,,,,,"403.000000","5965.000000",,,,,,,,,,,"3936.000000","552.000000","488.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","436.000000","463.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969874.000000",,,,, +"12314.000000","51.575000","12314.000000","51.575000","12314.000000","51.575000",,,,,,,,,,,,,,"488.000000","5682.000000","4937.000000","4.000000","5682.000000","5682.000000",,,,,,,,,,,"5359308.000000","7278788.000000","478784.000000","0.000000","64994012.000000","0.000000","87726572.000000",,"3623976.000000","26666292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000",,,,,,,,"558.000000","5379.000000",,,,,,,,,,,"3957.000000","551.000000","494.000000","520.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","442.000000","464.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969894.000000",,,,, +"13428.000000","53.325000","13428.000000","53.325000","13428.000000","53.325000",,,,,,,,,,,,,,"180.000000","6272.500000","6094.000000","4.000000","6272.500000","6272.500000",,,,,,,,,,,"5023764.000000","6985188.000000","478780.000000","0.000000","64999472.000000","0.000000","87726576.000000",,"3623976.000000","26630496.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000",,,,,,,,"299.000000","5971.000000",,,,,,,,,,,"3970.000000","549.000000","484.000000","522.000000","707.000000","557.000000","629.000000","0.000000","0.000000","0.000000","483.000000","448.000000","467.000000","572.000000","516.000000","531.000000","160.000000","6000.000000",,"8969914.000000",,,,, +"14210.000000","54.540000","14210.000000","54.540000","14210.000000","54.540000",,,,,,,,,,,,,,"296.000000","6461.000000","5850.000000","6.000000","6461.000000","6461.000000",,,,,,,,,,,"5149596.000000","6985188.000000","478780.000000","0.000000","64980680.000000","0.000000","87726576.000000",,"3623976.000000","26648040.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000",,,,,,,,"399.000000","6377.000000",,,,,,,,,,,"4162.000000","551.000000","521.000000","529.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","485.000000","475.000000","472.000000","572.000000","553.000000","532.000000","160.000000","6000.000000",,"8969934.000000",,,,, +"14066.000000","54.305000","14066.000000","54.305000","14066.000000","54.305000",,,,,,,,,,,,,,"324.000000","7525.000000","6472.000000","16.000000","7525.000000","7525.000000",,,,,,,,,,,"5007148.000000","6764400.000000","478780.000000","0.000000","64963712.000000","0.000000","87726576.000000",,"3623976.000000","26633152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000",,,,,,,,"513.000000","7740.000000",,,,,,,,,,,"4054.000000","550.000000","544.000000","532.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","486.000000","493.000000","474.000000","572.000000","553.000000","533.000000","160.000000","6000.000000",,"8969954.000000",,,,, +"17093.000000","59.250000","17093.000000","59.250000","17093.000000","59.250000",,,,,,,,,,,,,,"241.000000","5989.000000","5165.000000","8.000000","5989.000000","5989.000000",,,,,,,,,,,"5552316.000000","7435400.000000","478780.000000","0.000000","65380004.000000","0.000000","87726484.000000",,"3623976.000000","26323072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000",,,,,,,,"388.000000","6182.000000",,,,,,,,,,,"4172.000000","550.000000","598.000000","537.000000","707.000000","785.000000","644.000000","0.000000","0.000000","0.000000","486.000000","531.000000","479.000000","572.000000","646.000000","553.000000","160.000000","6000.000000",,"8969974.000000",,,,, +"19788.000000","63.465000","19788.000000","63.465000","19788.000000","63.465000",,,,,,,,,,,,,,"52.000000","12885.500000","12637.000000","148.000000","12885.500000","12885.500000",,,,,,,,,,,"6181464.000000","8190376.000000","478780.000000","0.000000","65366212.000000","0.000000","87726484.000000",,"3623976.000000","26338720.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000",,,,,,,,"190.000000","12890.000000",,,,,,,,,,,"4547.000000","550.000000","692.000000","559.000000","707.000000","900.000000","684.000000","0.000000","0.000000","0.000000","489.000000","608.000000","496.000000","598.000000","856.000000","604.000000","160.000000","6000.000000",,"8969994.000000",,,,, +"18474.000000","61.400000","18474.000000","61.400000","18474.000000","61.400000",,,,,,,,,,,,,,"286.000000","9984.000000","9432.000000","32.000000","9984.000000","9984.000000",,,,,,,,,,,"5761016.000000","7512724.000000","478780.000000","0.000000","65352800.000000","0.000000","87726636.000000",,"3623976.000000","26368640.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000",,,,,,,,"382.000000","9868.000000",,,,,,,,,,,"4379.000000","551.000000","744.000000","574.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","491.000000","659.000000","509.000000","620.000000","856.000000","647.000000","160.000000","6000.000000",,"8970014.000000",,,,, +"17232.000000","59.450000","17232.000000","59.450000","17232.000000","59.450000",,,,,,,,,,,,,,"180.000000","6142.000000","5937.000000","29.000000","6142.000000","6142.000000",,,,,,,,,,,"5762368.000000","7556016.000000","478776.000000","0.000000","65347860.000000","0.000000","87727992.000000",,"3623976.000000","26344060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000",,,,,,,,"195.000000","5971.000000",,,,,,,,,,,"4209.000000","553.000000","749.000000","584.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","494.000000","672.000000","520.000000","622.000000","856.000000","656.000000","160.000000","6000.000000",,"8970034.000000",,,,, +"17680.000000","60.150000","17680.000000","60.150000","17680.000000","60.150000",,,,,,,,,,,,,,"263.000000","8234.500000","7612.000000","12.000000","8234.500000","8234.500000",,,,,,,,,,,"5089856.000000","6694756.000000","478776.000000","0.000000","65338812.000000","0.000000","87726568.000000",,"3623976.000000","26351480.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000",,,,,,,,"685.000000","7909.000000",,,,,,,,,,,"4155.000000","553.000000","719.000000","596.000000","712.000000","810.000000","785.000000","0.000000","0.000000","0.000000","495.000000","634.000000","530.000000","640.000000","684.000000","662.000000","160.000000","6000.000000",,"8970054.000000",,,,, +"20499.000000","64.560000","20499.000000","64.560000","20499.000000","64.560000",,,,,,,,,,,,,,"53.000000","7673.500000","7506.000000","25.000000","7673.500000","7673.500000",,,,,,,,,,,"5446368.000000","7066716.000000","478776.000000","0.000000","65321752.000000","0.000000","87726568.000000",,"3623976.000000","26324468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000",,,,,,,,"165.000000","7622.000000",,,,,,,,,,,"4453.000000","557.000000","746.000000","607.000000","752.000000","877.000000","788.000000","0.000000","0.000000","0.000000","499.000000","657.000000","543.000000","647.000000","780.000000","717.000000","160.000000","6000.000000",,"8970074.000000",,,,, +"18402.000000","61.375000","18402.000000","61.375000","18402.000000","61.375000",,,,,,,,,,,,,,"4789.000000","12107.000000","7137.000000","24.000000","12107.000000","12107.000000",,,,,,,,,,,"5278596.000000","6961856.000000","478776.000000","0.000000","65529668.000000","0.000000","87726568.000000",,"3623976.000000","26101588.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000",,,,,,,,"4970.000000","7317.000000",,,,,,,,,,,"4285.000000","560.000000","778.000000","621.000000","778.000000","877.000000","823.000000","0.000000","0.000000","0.000000","501.000000","673.000000","554.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970094.000000",,,,, +"16313.000000","58.150000","16313.000000","58.150000","16313.000000","58.150000",,,,,,,,,,,,,,"93.000000","7041.000000","6408.000000","18.000000","7041.000000","7041.000000",,,,,,,,,,,"5991628.000000","7465176.000000","478776.000000","0.000000","65625120.000000","0.000000","87726568.000000",,"3623976.000000","26005564.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000",,,,,,,,"218.000000","7362.000000",,,,,,,,,,,"4125.000000","564.000000","757.000000","635.000000","752.000000","877.000000","823.000000","0.000000","0.000000","0.000000","506.000000","668.000000","564.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970114.000000",,,,, +"15224.000000","56.430000","15224.000000","56.430000","15224.000000","56.430000",,,,,,,,,,,,,,"43.000000","6387.000000","5188.000000","25.000000","6387.000000","6387.000000",,,,,,,,,,,"6075364.000000","7402116.000000","478776.000000","0.000000","65601996.000000","0.000000","87726420.000000",,"3623976.000000","25981532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000",,,,,,,,"222.000000","7319.000000",,,,,,,,,,,"3932.000000","566.000000","696.000000","645.000000","752.000000","848.000000","823.000000","0.000000","0.000000","0.000000","507.000000","600.000000","570.000000","647.000000","758.000000","726.000000","160.000000","6000.000000",,"8970134.000000",,,,, +"16372.000000","58.220000","16372.000000","58.220000","16372.000000","58.220000",,,,,,,,,,,,,,"43.000000","5389.500000","5050.000000","17.000000","5389.500000","5389.500000",,,,,,,,,,,"6159316.000000","7606360.000000","478776.000000","0.000000","65580336.000000","0.000000","87726488.000000",,"3623976.000000","26104452.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000",,,,,,,,"125.000000","5560.000000",,,,,,,,,,,"4204.000000","570.000000","652.000000","652.000000","752.000000","733.000000","823.000000","0.000000","0.000000","0.000000","510.000000","577.000000","580.000000","647.000000","626.000000","726.000000","160.000000","6000.000000",,"8970154.000000",,,,, +"17393.000000","59.810000","17393.000000","59.810000","17393.000000","59.810000",,,,,,,,,,,,,,"51.000000","6649.500000","6222.000000","19.000000","6649.500000","6649.500000",,,,,,,,,,,"6369032.000000","7920932.000000","478776.000000","0.000000","65560140.000000","0.000000","87726488.000000",,"3623976.000000","26123692.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000",,,,,,,,"171.000000","6854.000000",,,,,,,,,,,"4360.000000","575.000000","645.000000","667.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","515.000000","584.000000","594.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970174.000000",,,,, +"15954.000000","57.550000","15954.000000","57.550000","15954.000000","57.550000",,,,,,,,,,,,,,"47.000000","6627.000000","5604.000000","21.000000","6627.000000","6627.000000",,,,,,,,,,,"6159320.000000","7846956.000000","478776.000000","0.000000","65547728.000000","0.000000","87726488.000000",,"3623976.000000","26161860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000",,,,,,,,"251.000000","7350.000000",,,,,,,,,,,"4182.000000","577.000000","648.000000","675.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","517.000000","599.000000","602.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970194.000000",,,,, +"16716.000000","58.750000","16716.000000","58.750000","16716.000000","58.750000",,,,,,,,,,,,,,"52.000000","4941.000000","4888.000000","15.000000","4941.000000","4941.000000",,,,,,,,,,,"6564492.000000","8394572.000000","478776.000000","0.000000","65557180.000000","0.000000","87726488.000000",,"3623976.000000","26149540.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000",,,,,,,,"166.000000",,,,,,,,,,,,"4419.000000","581.000000","649.000000","685.000000","752.000000","710.000000","823.000000","0.000000","0.000000","0.000000","521.000000","605.000000","611.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970214.000000",,,,, +"15563.000000","56.935000","15563.000000","56.935000","15563.000000","56.935000",,,,,,,,,,,,,,"119.000000","5666.000000","5567.000000","51.000000","5666.000000","5666.000000",,,,,,,,,,,"6249784.000000","7975004.000000","478776.000000","0.000000","65536392.000000","0.000000","87726348.000000",,"3623976.000000","26168072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000",,,,,,,,"139.000000","5507.000000",,,,,,,,,,,"4089.000000","585.000000","636.000000","690.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","525.000000","579.000000","615.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970234.000000",,,,, +"16319.000000","58.105000","16319.000000","58.105000","16319.000000","58.105000",,,,,,,,,,,,,,"329.000000","4742.000000","4228.000000","34.000000","4742.000000","4742.000000",,,,,,,,,,,"6375700.000000","7997216.000000","478776.000000","0.000000","65513436.000000","0.000000","87726440.000000",,"3623976.000000","26184808.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000",,,,,,,,"411.000000","4515.000000",,,,,,,,,,,"4377.000000","588.000000","634.000000","693.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","527.000000","589.000000","621.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970254.000000",,,,, +"13003.000000","52.905000","13003.000000","52.905000","13003.000000","52.905000",,,,,,,,,,,,,,"46.000000","8229.500000","8077.000000","54.000000","8229.500000","8229.500000",,,,,,,,,,,"6339300.000000","7876924.000000","478776.000000","0.000000","65507988.000000","0.000000","87726440.000000",,"3623976.000000","26193752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000",,,,,,,,"145.000000","8191.000000",,,,,,,,,,,"4150.000000","585.000000","584.000000","682.000000","743.000000","725.000000","823.000000","0.000000","0.000000","0.000000","526.000000","545.000000","614.000000","650.000000","625.000000","726.000000","160.000000","6000.000000",,"8970274.000000",,,,, +"18547.000000","61.590000","18547.000000","61.590000","18547.000000","61.590000",,,,,,,,,,,,,,"81.000000","7082.500000","6889.000000","22.000000","7082.500000","7082.500000",,,,,,,,,,,"6297352.000000","7751092.000000","478776.000000","0.000000","65503120.000000","0.000000","87726440.000000",,"3623976.000000","26213864.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000",,,,,,,,"176.000000","7018.000000",,,,,,,,,,,"4233.000000","590.000000","638.000000","679.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","529.000000","575.000000","608.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970294.000000",,,,, +"15410.000000","56.670000","15410.000000","56.670000","15410.000000","56.670000",,,,,,,,,,,,,,"68.000000","6507.000000","6237.000000","25.000000","6507.000000","6507.000000",,,,,,,,,,,"6108612.000000","7593232.000000","478776.000000","0.000000","65492420.000000","0.000000","87726440.000000",,"3623976.000000","26202020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000",,,,,,,,"150.000000","6558.000000",,,,,,,,,,,"4244.000000","591.000000","637.000000","672.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","563.000000","602.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970314.000000",,,,, +"14745.000000","55.620000","14745.000000","55.620000","14745.000000","55.620000",,,,,,,,,,,,,,"53.000000","2073.000000","1918.000000","43.000000","2073.000000","2073.000000",,,,,,,,,,,"6318376.000000","7614252.000000","478776.000000","0.000000","65473556.000000","0.000000","87726488.000000",,"3623976.000000","26221604.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000",,,,,,,,"99.000000","2075.000000",,,,,,,,,,,"4191.000000","590.000000","654.000000","663.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","571.000000","594.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970334.000000",,,,, +"15791.000000","57.250000","15791.000000","57.250000","15791.000000","57.250000",,,,,,,,,,,,,,"57.000000","5451.500000","5099.000000","20.000000","5451.500000","5451.500000",,,,,,,,,,,"5815056.000000","7099876.000000","478776.000000","0.000000","65454560.000000","0.000000","87726488.000000",,"3623976.000000","26204668.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000",,,,,,,,"492.000000","5254.000000",,,,,,,,,,,"4222.000000","591.000000","597.000000","655.000000","743.000000","673.000000","782.000000","0.000000","0.000000","0.000000","531.000000","544.000000","590.000000","650.000000","629.000000","717.000000","160.000000","6000.000000",,"8970354.000000",,,,, +"16613.000000","58.530000","16613.000000","58.530000","16613.000000","58.530000",,,,,,,,,,,,,,"51.000000","6115.000000","6005.000000","21.000000","6115.000000","6115.000000",,,,,,,,,,,"5951444.000000","7100624.000000","478776.000000","0.000000","65444068.000000","0.000000","87728584.000000",,"3623976.000000","26226408.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000",,,,,,,,"138.000000","6035.000000",,,,,,,,,,,"4069.000000","591.000000","610.000000","645.000000","743.000000","696.000000","733.000000","0.000000","0.000000","0.000000","531.000000","550.000000","580.000000","650.000000","637.000000","650.000000","160.000000","6000.000000",,"8970374.000000",,,,, +"14821.000000","55.725000","14821.000000","55.725000","14821.000000","55.725000",,,,,,,,,,,,,,"51.000000","5686.500000","4605.000000","18.000000","5686.500000","5686.500000",,,,,,,,,,,"5621576.000000","6986040.000000","478776.000000","0.000000","65444408.000000","0.000000","87728784.000000",,"3623976.000000","26225264.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000",,,,,,,,"261.000000","6456.000000",,,,,,,,,,,"3965.000000","592.000000","636.000000","635.000000","743.000000","696.000000","711.000000","0.000000","0.000000","0.000000","531.000000","558.000000","571.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970394.000000",,,,, +"14756.000000","55.630000","14756.000000","55.630000","14756.000000","55.630000",,,,,,,,,,,,,,"51.000000","6384.500000","5990.000000","25.000000","6384.500000","6384.500000",,,,,,,,,,,"6177880.000000","7712540.000000","478776.000000","0.000000","65460764.000000","0.000000","87764408.000000",,"3623976.000000","26249284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000",,,,,,,,"161.000000","6565.000000",,,,,,,,,,,"4132.000000","594.000000","625.000000","628.000000","743.000000","696.000000","702.000000","0.000000","0.000000","0.000000","532.000000","548.000000","566.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970414.000000",,,,, +"14613.000000","55.400000","14613.000000","55.400000","14613.000000","55.400000",,,,,,,,,,,,,,"63.000000","5010.000000","4911.000000","19.000000","5010.000000","5010.000000",,,,,,,,,,,"6198864.000000","7817412.000000","478776.000000","0.000000","65443124.000000","0.000000","87764420.000000",,"3623976.000000","26286804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000",,,,,,,,"133.000000","4912.000000",,,,,,,,,,,"4179.000000","596.000000","592.000000","624.000000","743.000000","695.000000","702.000000","0.000000","0.000000","0.000000","533.000000","523.000000","565.000000","650.000000","591.000000","646.000000","160.000000","6000.000000",,"8970434.000000",,,,, +"16089.000000","57.705000","16089.000000","57.705000","16089.000000","57.705000",,,,,,,,,,,,,,"152.000000","7417.500000","7087.000000","17.000000","7417.500000","7417.500000",,,,,,,,,,,"5863848.000000","7386684.000000","478776.000000","0.000000","65438364.000000","0.000000","87764420.000000",,"3623976.000000","26289516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000",,,,,,,,"176.000000","7419.000000",,,,,,,,,,,"4367.000000","598.000000","597.000000","624.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","536.000000","547.000000","565.000000","656.000000","683.000000","649.000000","160.000000","6000.000000",,"8970454.000000",,,,, +"14933.000000","55.890000","14933.000000","55.890000","14933.000000","55.890000",,,,,,,,,,,,,,"60.000000","6719.500000","6644.000000","17.000000","6719.500000","6719.500000",,,,,,,,,,,"5234704.000000","6946284.000000","478776.000000","0.000000","65425044.000000","0.000000","87764420.000000",,"3623976.000000","26311328.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000",,,,,,,,"170.000000","6564.000000",,,,,,,,,,,"4047.000000","601.000000","589.000000","617.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","538.000000","546.000000","558.000000","656.000000","683.000000","646.000000","160.000000","6000.000000",,"8970474.000000",,,,, +"15058.000000","56.080000","15058.000000","56.080000","15058.000000","56.080000",,,,,,,,,,,,,,"39.000000","6464.500000","6211.000000","32.000000","6464.500000","6464.500000",,,,,,,,,,,"5046956.000000","6832512.000000","478776.000000","0.000000","65413676.000000","0.000000","87764268.000000",,"3623976.000000","26321180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000",,,,,,,,"137.000000","6541.000000",,,,,,,,,,,"4155.000000","603.000000","601.000000","615.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","541.000000","562.000000","557.000000","656.000000","683.000000","639.000000","160.000000","6000.000000",,"8970494.000000",,,,, +"14597.000000","55.350000","14597.000000","55.350000","14597.000000","55.350000",,,,,,,,,,,,,,"73.000000","9394.500000","9084.000000","40.000000","9394.500000","9394.500000",,,,,,,,,,,"5178760.000000","7026940.000000","478776.000000","0.000000","65394196.000000","0.000000","87764324.000000",,"3623976.000000","26340208.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000",,,,,,,,"203.000000","9429.000000",,,,,,,,,,,"4137.000000","606.000000","584.000000","611.000000","743.000000","631.000000","696.000000","0.000000","0.000000","0.000000","543.000000","536.000000","552.000000","656.000000","605.000000","629.000000","160.000000","6000.000000",,"8970514.000000",,,,, +"14061.000000","54.505000","14061.000000","54.505000","14061.000000","54.505000",,,,,,,,,,,,,,"77.000000","14021.500000","13801.000000","63.000000","14021.500000","14021.500000",,,,,,,,,,,"5220700.000000","6880148.000000","478776.000000","0.000000","65390696.000000","0.000000","87764324.000000",,"3623976.000000","26337004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000",,,,,,,,"217.000000","13947.000000",,,,,,,,,,,"4047.000000","609.000000","588.000000","607.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","545.000000","524.000000","547.000000","656.000000","595.000000","629.000000","160.000000","6000.000000",,"8970534.000000",,,,, +"15058.000000","56.060000","15058.000000","56.060000","15058.000000","56.060000",,,,,,,,,,,,,,"382.000000","5720.000000","5320.000000","22.000000","5720.000000","5720.000000",,,,,,,,,,,"5430416.000000","7151624.000000","478776.000000","0.000000","65372456.000000","0.000000","87764324.000000",,"3623976.000000","26376740.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000",,,,,,,,"438.000000","5299.000000",,,,,,,,,,,"4118.000000","609.000000","574.000000","603.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","514.000000","542.000000","656.000000","550.000000","629.000000","160.000000","6000.000000",,"8970554.000000",,,,, +"13477.000000","53.580000","13477.000000","53.580000","13477.000000","53.580000",,,,,,,,,,,,,,"1543.000000","7325.000000","5991.000000","25.000000","7325.000000","7325.000000",,,,,,,,,,,"5155096.000000","6630556.000000","478776.000000","0.000000","65365580.000000","0.000000","87764324.000000",,"3623976.000000","26382484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000",,,,,,,,"677.000000","6437.000000",,,,,,,,,,,"4118.000000","609.000000","564.000000","607.000000","733.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","517.000000","546.000000","650.000000","630.000000","630.000000","160.000000","6000.000000",,"8970574.000000",,,,, +"18520.000000","61.475000","18520.000000","61.475000","18520.000000","61.475000",,,,,,,,,,,,,,"2740.000000","38507.000000","34859.000000","35.000000","38507.000000","38507.000000",,,,,,,,,,,"5343840.000000","6630552.000000","478776.000000","0.000000","65355420.000000","0.000000","87764324.000000",,"3623976.000000","26373872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000",,,,,,,,"4072.000000","35341.000000",,,,,,,,,,,"4119.000000","616.000000","647.000000","609.000000","778.000000","1092.000000","696.000000","0.000000","0.000000","0.000000","550.000000","564.000000","545.000000","659.000000","768.000000","634.000000","160.000000","6000.000000",,"8970594.000000",,,,, +"18741.000000","61.810000","18741.000000","61.810000","18741.000000","61.810000",,,,,,,,,,,,,,"60.000000","6559.000000","5378.000000","22.000000","6559.000000","6559.000000",,,,,,,,,,,"5520340.000000","6871116.000000","478760.000000","0.000000","65333124.000000","0.000000","87764304.000000",,"3623976.000000","26368488.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000",,,,,,,,"250.000000","7430.000000",,,,,,,,,,,"4178.000000","622.000000","729.000000","621.000000","785.000000","1092.000000","797.000000","0.000000","0.000000","0.000000","554.000000","610.000000","551.000000","662.000000","779.000000","637.000000","160.000000","6000.000000",,"8970614.000000",,,,, +"21977.000000","66.870000","21977.000000","66.870000","21977.000000","66.870000",,,,,,,,,,,,,,"51.000000","3018.500000","2744.000000","6.000000","3018.500000","3018.500000",,,,,,,,,,,"5520160.000000","7185792.000000","478760.000000","0.000000","65321152.000000","0.000000","87764120.000000",,"3623976.000000","26379716.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000",,,,,,,,"128.000000","3114.000000",,,,,,,,,,,"4355.000000","633.000000","883.000000","653.000000","797.000000","1247.000000","900.000000","0.000000","0.000000","0.000000","560.000000","678.000000","567.000000","672.000000","868.000000","713.000000","160.000000","6000.000000",,"8970634.000000",,,,, +"21223.000000","65.685000","21223.000000","65.685000","21223.000000","65.685000",,,,,,,,,,,,,,"60.000000","7292.000000","6874.000000","30.000000","7292.000000","7292.000000",,,,,,,,,,,"5142856.000000","7269864.000000","478760.000000","0.000000","65305336.000000","0.000000","87764304.000000",,"3623976.000000","26308196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000",,,,,,,,"546.000000","7104.000000",,,,,,,,,,,"4468.000000","647.000000","1003.000000","691.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","568.000000","742.000000","585.000000","717.000000","868.000000","765.000000","160.000000","6000.000000",,"8970654.000000",,,,, +"19746.000000","63.375000","19746.000000","63.375000","19746.000000","63.375000",,,,,,,,,,,,,,"54.000000","7183.000000","6997.000000","14.000000","7183.000000","7183.000000",,,,,,,,,,,"5092148.000000","7156244.000000","478760.000000","0.000000","65313480.000000","0.000000","87764304.000000",,"3623976.000000","26273372.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000",,,,,,,,"153.000000","7161.000000",,,,,,,,,,,"4291.000000","652.000000","1019.000000","703.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","572.000000","756.000000","593.000000","726.000000","868.000000","768.000000","160.000000","6000.000000",,"8970674.000000",,,,, +"17637.000000","60.060000","17637.000000","60.060000","17637.000000","60.060000",,,,,,,,,,,,,,"121.000000","5487.500000","5324.000000","12.000000","5487.500000","5487.500000",,,,,,,,,,,"5059368.000000","6808616.000000","478760.000000","0.000000","65296348.000000","0.000000","87764332.000000",,"3623976.000000","26288184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000",,,,,,,,"137.000000","5391.000000",,,,,,,,,,,"4412.000000","656.000000","932.000000","712.000000","857.000000","1184.000000","1092.000000","0.000000","0.000000","0.000000","575.000000","730.000000","602.000000","727.000000","852.000000","776.000000","160.000000","6000.000000",,"8970694.000000",,,,, +"13666.000000","53.840000","13666.000000","53.840000","13666.000000","53.840000",,,,,,,,,,,,,,"581.000000","7151.000000","6472.000000","17.000000","7151.000000","7151.000000",,,,,,,,,,,"5122280.000000","6577928.000000","478760.000000","0.000000","65297512.000000","0.000000","87764332.000000",,"3623976.000000","26253144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000",,,,,,,,"672.000000","6577.000000",,,,,,,,,,,"3981.000000","657.000000","710.000000","707.000000","857.000000","913.000000","1092.000000","0.000000","0.000000","0.000000","576.000000","611.000000","597.000000","727.000000","830.000000","776.000000","160.000000","6000.000000",,"8970714.000000",,,,, +"13301.000000","53.260000","13301.000000","53.260000","13301.000000","53.260000",,,,,,,,,,,,,,"60.000000","4931.500000","4850.000000","22.000000","4931.500000","4931.500000",,,,,,,,,,,"5206920.000000","6725480.000000","478760.000000","0.000000","65278336.000000","0.000000","87765084.000000",,"3623976.000000","26422524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000",,,,,,,,"137.000000","4815.000000",,,,,,,,,,,"4140.000000","659.000000","612.000000","707.000000","857.000000","857.000000","1092.000000","0.000000","0.000000","0.000000","577.000000","536.000000","595.000000","727.000000","776.000000","776.000000","160.000000","6000.000000",,"8970734.000000",,,,, +"13782.000000","54.010000","13782.000000","54.010000","13782.000000","54.010000",,,,,,,,,,,,,,"968.000000","11337.000000","10137.000000","26.000000","11337.000000","11337.000000",,,,,,,,,,,"5433632.000000","6862384.000000","478760.000000","0.000000","65269480.000000","0.000000","87764332.000000",,"3623976.000000","26429364.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000",,,,,,,,"1138.000000","10429.000000",,,,,,,,,,,"4033.000000","660.000000","550.000000","703.000000","857.000000","594.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","479.000000","588.000000","727.000000","511.000000","776.000000","160.000000","6000.000000",,"8970754.000000",,,,, +"12716.000000","52.330000","12716.000000","52.330000","12716.000000","52.330000",,,,,,,,,,,,,,"104.000000","4438.500000","4074.000000","8.000000","4438.500000","4438.500000",,,,,,,,,,,"5119060.000000","6505864.000000","478760.000000","0.000000","65260124.000000","0.000000","87764332.000000",,"3623976.000000","26476576.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000",,,,,,,,"188.000000","4510.000000",,,,,,,,,,,"3995.000000","661.000000","554.000000","700.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","475.000000","583.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970774.000000",,,,, +"13041.000000","52.835000","13041.000000","52.835000","13041.000000","52.835000",,,,,,,,,,,,,,"53.000000","5975.000000","5921.000000","16.000000","5975.000000","5975.000000",,,,,,,,,,,"5202980.000000","6526868.000000","478760.000000","0.000000","65242600.000000","0.000000","87764364.000000",,"3623976.000000","26486088.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000",,,,,,,,"205.000000",,,,,,,,,,,,"3888.000000","663.000000","557.000000","698.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","478.000000","579.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970794.000000",,,,, +"12890.000000","52.595000","12890.000000","52.595000","12890.000000","52.595000",,,,,,,,,,,,,,"56.000000","6023.000000","4717.000000","9.000000","6023.000000","6023.000000",,,,,,,,,,,"5514332.000000","6821240.000000","478760.000000","0.000000","65236200.000000","0.000000","87764364.000000",,"3623976.000000","26490704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000",,,,,,,,"246.000000","7026.000000",,,,,,,,,,,"3860.000000","663.000000","534.000000","693.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","455.000000","572.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970814.000000",,,,, +"15270.000000","56.315000","15270.000000","56.315000","15270.000000","56.315000",,,,,,,,,,,,,,"65.000000","8485.500000","7069.000000","25.000000","8485.500000","8485.500000",,,,,,,,,,,"5556280.000000","6936012.000000","478760.000000","0.000000","65214124.000000","0.000000","87764364.000000",,"3623976.000000","26522796.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000",,,,,,,,"261.000000","9576.000000",,,,,,,,,,,"4105.000000","664.000000","556.000000","694.000000","857.000000","621.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","488.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970834.000000",,,,, +"14576.000000","55.220000","14576.000000","55.220000","14576.000000","55.220000",,,,,,,,,,,,,,"358.000000","8269.500000","6616.000000","39.000000","8269.500000","8269.500000",,,,,,,,,,,"5577076.000000","7082640.000000","478760.000000","0.000000","65203628.000000","0.000000","87764192.000000",,"3623976.000000","26530856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000",,,,,,,,"536.000000","9029.000000",,,,,,,,,,,"4064.000000","664.000000","561.000000","696.000000","857.000000","681.000000","1092.000000","0.000000","0.000000","0.000000","580.000000","501.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970854.000000",,,,, +"15993.000000","57.430000","15993.000000","57.430000","15993.000000","57.430000",,,,,,,,,,,,,,"55.000000","7285.000000","5957.000000","18.000000","7285.000000","7285.000000",,,,,,,,,,,"5349748.000000","7013948.000000","478760.000000","0.000000","65190440.000000","0.000000","87764388.000000",,"3623976.000000","26546468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000",,,,,,,,"241.000000","8315.000000",,,,,,,,,,,"4227.000000","663.000000","598.000000","699.000000","857.000000","737.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","540.000000","576.000000","727.000000","621.000000","776.000000","160.000000","6000.000000",,"8970874.000000",,,,, +"17219.000000","59.345000","17219.000000","59.345000","17219.000000","59.345000",,,,,,,,,,,,,,"49.000000","10588.000000","9133.000000","22.000000","10588.000000","10588.000000",,,,,,,,,,,"5790148.000000","7475324.000000","478760.000000","0.000000","65172840.000000","0.000000","87764388.000000",,"3623976.000000","26535876.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000",,,,,,,,"271.000000","11722.000000",,,,,,,,,,,"4145.000000","661.000000","649.000000","694.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","577.000000","572.000000","578.000000","726.000000","726.000000","776.000000","160.000000","6000.000000",,"8970894.000000",,,,, +"14678.000000","55.360000","14678.000000","55.360000","14678.000000","55.360000",,,,,,,,,,,,,,"6058.000000","11017.500000","3886.000000","8.000000","11017.500000","11017.500000",,,,,,,,,,,"5790148.000000","7412412.000000","478760.000000","0.000000","65164092.000000","0.000000","87764388.000000",,"3623976.000000","26462568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000",,,,,,,,"5805.000000","6284.000000",,,,,,,,,,,"4194.000000","658.000000","658.000000","681.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","574.000000","580.000000","570.000000","726.000000","726.000000","765.000000","160.000000","6000.000000",,"8970914.000000",,,,, +"16621.000000","58.405000","16621.000000","58.405000","16621.000000","58.405000",,,,,,,,,,,,,,"4001.000000","15921.500000","10755.000000","20.000000","15921.500000","15921.500000",,,,,,,,,,,"5828872.000000","7298412.000000","478760.000000","0.000000","65169132.000000","0.000000","87764388.000000",,"3623976.000000","26384032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000",,,,,,,,"3877.000000","13209.000000",,,,,,,,,,,"4032.000000","657.000000","664.000000","656.000000","848.000000","806.000000","910.000000","0.000000","0.000000","0.000000","573.000000","584.000000","558.000000","726.000000","726.000000","762.000000","160.000000","6000.000000",,"8970934.000000",,,,, +"14528.000000","55.115000","14528.000000","55.115000","14528.000000","55.115000",,,,,,,,,,,,,,"1750.000000","12482.500000","10221.000000","23.000000","12482.500000","12482.500000",,,,,,,,,,,"5535824.000000","6858564.000000","478760.000000","0.000000","65149108.000000","0.000000","87764944.000000",,"3623976.000000","26402544.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000",,,,,,,,"2738.000000","10256.000000",,,,,,,,,,,"4113.000000","654.000000","611.000000","616.000000","848.000000","727.000000","818.000000","0.000000","0.000000","0.000000","571.000000","540.000000","537.000000","726.000000","659.000000","659.000000","160.000000","6000.000000",,"8970954.000000",,,,, +"16287.000000","57.880000","16287.000000","57.880000","16287.000000","57.880000",,,,,,,,,,,,,,"4429.000000","25275.000000","18213.000000","23.000000","25275.000000","25275.000000",,,,,,,,,,,"5430364.000000","6984940.000000","478760.000000","0.000000","65166916.000000","0.000000","87764340.000000",,"3623976.000000","26388880.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000",,,,,,,,"5109.000000","22799.000000",,,,,,,,,,,"4076.000000","652.000000","654.000000","608.000000","839.000000","780.000000","780.000000","0.000000","0.000000","0.000000","568.000000","555.000000","530.000000","683.000000","659.000000","657.000000","160.000000","6000.000000",,"8970974.000000",,,,, +"15332.000000","56.390000","15332.000000","56.390000","15332.000000","56.390000",,,,,,,,,,,,,,"701.000000","12795.000000","10710.000000","24.000000","12795.000000","12795.000000",,,,,,,,,,,"5256672.000000","6958056.000000","478760.000000","0.000000","65172744.000000","0.000000","87764340.000000",,"3623976.000000","26398520.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000",,,,,,,,"925.000000","13254.000000",,,,,,,,,,,"3974.000000","649.000000","648.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","564.000000","545.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8970994.000000",,,,, +"13337.000000","53.255000","13337.000000","53.255000","13337.000000","53.255000",,,,,,,,,,,,,,"6718.000000","25426.000000","17751.000000","16.000000","25426.000000","25426.000000",,,,,,,,,,,"5318156.000000","7061216.000000","478760.000000","0.000000","65152752.000000","0.000000","87757936.000000",,"3623976.000000","26452556.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000",,,,,,,,"6273.000000","20108.000000",,,,,,,,,,,"4185.000000","645.000000","625.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","561.000000","531.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8971014.000000",,,,, +"13002.000000","52.720000","13002.000000","52.720000","13002.000000","52.720000",,,,,,,,,,,,,,"12831.000000","23631.500000","8879.000000","31.000000","23631.500000","23631.500000",,,,,,,,,,,"5423016.000000","6850352.000000","478760.000000","0.000000","65137676.000000","0.000000","87757936.000000",,"3623976.000000","26483464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000",,,,,,,,"13889.000000","11664.000000",,,,,,,,,,,"3989.000000","642.000000","551.000000","596.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","560.000000","490.000000","521.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971034.000000",,,,, +"13260.000000","53.115000","13260.000000","53.115000","13260.000000","53.115000",,,,,,,,,,,,,,"12906.000000","27727.500000","13426.000000","19.000000","27727.500000","27727.500000",,,,,,,,,,,"5527816.000000","7206800.000000","478760.000000","0.000000","65119288.000000","0.000000","87757876.000000",,"3623976.000000","26498764.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000",,,,,,,,"13005.000000","16118.000000",,,,,,,,,,,"4107.000000","640.000000","519.000000","593.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","558.000000","477.000000","520.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971054.000000",,,,, +"13493.000000","53.475000","13493.000000","53.475000","13493.000000","53.475000",,,,,,,,,,,,,,"11038.000000","22479.000000","11440.000000","86.000000","22479.000000","22479.000000",,,,,,,,,,,"5360044.000000","7329212.000000","478760.000000","0.000000","65101964.000000","0.000000","87757876.000000",,"3623976.000000","26521312.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000",,,,,,,,,"12374.000000",,,,,,,,,,,"3954.000000","636.000000","508.000000","590.000000","837.000000","571.000000","737.000000","0.000000","0.000000","0.000000","554.000000","471.000000","520.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971074.000000",,,,, +"14068.000000","54.370000","14068.000000","54.370000","14068.000000","54.370000",,,,,,,,,,,,,,"100.000000","19217.500000","18033.000000","28.000000","19217.500000","19217.500000",,,,,,,,,,,"5255248.000000","7245388.000000","478760.000000","0.000000","65093328.000000","0.000000","87757936.000000",,"3623976.000000","26560116.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000",,,,,,,,"327.000000","19975.000000",,,,,,,,,,,"4032.000000","635.000000","535.000000","592.000000","837.000000","605.000000","737.000000","0.000000","0.000000","0.000000","553.000000","485.000000","522.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971094.000000",,,,, +"14613.000000","55.220000","14613.000000","55.220000","14613.000000","55.220000",,,,,,,,,,,,,,"539.000000","11285.000000","9409.000000","17.000000","11285.000000","11285.000000",,,,,,,,,,,"5510324.000000","7033248.000000","478760.000000","0.000000","65085004.000000","0.000000","87757936.000000",,"3623976.000000","26594856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000",,,,,,,,"809.000000","11813.000000",,,,,,,,,,,"4170.000000","633.000000","547.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","551.000000","496.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971114.000000",,,,, +"15480.000000","56.575000","15480.000000","56.575000","15480.000000","56.575000",,,,,,,,,,,,,,"597.000000","21656.500000","21138.000000","23.000000","21656.500000","21656.500000",,,,,,,,,,,"5678092.000000","7096160.000000","478760.000000","0.000000","65074268.000000","0.000000","87757936.000000",,"3623976.000000","26605000.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000",,,,,,,,"818.000000","20760.000000",,,,,,,,,,,"4105.000000","632.000000","573.000000","593.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","550.000000","525.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971134.000000",,,,, +"14994.000000","55.800000","14994.000000","55.800000","14994.000000","55.800000",,,,,,,,,,,,,,"874.000000","35984.000000","35110.000000","33.000000","35984.000000","35984.000000",,,,,,,,,,,"5573144.000000","7223044.000000","478760.000000","0.000000","65054976.000000","0.000000","87757844.000000",,"3623976.000000","26657388.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000",,,,,,,,"1100.000000",,,,,,,,,,,,"4104.000000","631.000000","577.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","549.000000","536.000000","529.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971154.000000",,,,, +"14603.000000","55.185000","14603.000000","55.185000","14603.000000","55.185000",,,,,,,,,,,,,,"2100.000000","21709.500000","20628.000000","44.000000","21709.500000","21709.500000",,,,,,,,,,,"5162988.000000","7274264.000000","478760.000000","0.000000","65048320.000000","0.000000","87757844.000000",,"3623976.000000","26705580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000",,,,,,,,"2339.000000","18351.000000",,,,,,,,,,,"4247.000000","633.000000","585.000000","593.000000","837.000000","620.000000","733.000000","0.000000","0.000000","0.000000","551.000000","548.000000","530.000000","674.000000","592.000000","637.000000","160.000000","6000.000000",,"8971174.000000",,,,, +"17388.000000","59.540000","17388.000000","59.540000","17388.000000","59.540000",,,,,,,,,,,,,,"20396.000000","32420.500000","10753.000000","15.000000","32420.500000","32420.500000",,,,,,,,,,,"5142020.000000","7379120.000000","478760.000000","0.000000","65030248.000000","0.000000","87757844.000000",,"3623976.000000","26723340.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000",,,,,,,,"19967.000000","13724.000000",,,,,,,,,,,"4248.000000","631.000000","628.000000","589.000000","837.000000","995.000000","709.000000","0.000000","0.000000","0.000000","550.000000","563.000000","526.000000","674.000000","787.000000","628.000000","160.000000","6000.000000",,"8971194.000000",,,,, +"17613.000000","59.890000","17613.000000","59.890000","17613.000000","59.890000",,,,,,,,,,,,,,"10834.000000","26108.500000","14996.000000","42.000000","26108.500000","26108.500000",,,,,,,,,,,"4974108.000000","6896640.000000","478760.000000","0.000000","65027824.000000","0.000000","87757704.000000",,"3623976.000000","26731200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000",,,,,,,,"11059.000000","15327.000000",,,,,,,,,,,"4379.000000","634.000000","674.000000","598.000000","837.000000","995.000000","733.000000","0.000000","0.000000","0.000000","551.000000","587.000000","531.000000","683.000000","787.000000","628.000000","160.000000","6000.000000",,"8971214.000000",,,,, +"20111.000000","63.795000","20111.000000","63.795000","20111.000000","63.795000",,,,,,,,,,,,,,"10192.000000","24541.000000","13620.000000","11.000000","24541.000000","24541.000000",,,,,,,,,,,"4806292.000000","6561048.000000","478760.000000","0.000000","65011788.000000","0.000000","87757660.000000",,"3623976.000000","26745872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000",,,,,,,,"11264.000000","14004.000000",,,,,,,,,,,"4321.000000","639.000000","739.000000","608.000000","839.000000","995.000000","780.000000","0.000000","0.000000","0.000000","555.000000","629.000000","539.000000","687.000000","787.000000","662.000000","160.000000","6000.000000",,"8971234.000000",,,,, +"15542.000000","56.635000","15542.000000","56.635000","15542.000000","56.635000",,,,,,,,,,,,,,"15852.000000","19185.000000","3382.000000","8.000000","19185.000000","19185.000000",,,,,,,,,,,"5088372.000000","6753404.000000","478760.000000","0.000000","65006264.000000","0.000000","87757844.000000",,"3623976.000000","26730732.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000",,,,,,,,"15348.000000","3787.000000",,,,,,,,,,,"4220.000000","641.000000","749.000000","617.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","555.000000","632.000000","544.000000","713.000000","770.000000","667.000000","160.000000","6000.000000",,"8971254.000000",,,,, +"17628.000000","59.890000","17628.000000","59.890000","17628.000000","59.890000",,,,,,,,,,,,,,"17248.000000","26331.000000","8457.000000","11.000000","26331.000000","26331.000000",,,,,,,,,,,"4962544.000000","6616512.000000","478760.000000","0.000000","64986884.000000","0.000000","87757844.000000",,"3623976.000000","26772816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000",,,,,,,,"18405.000000","8551.000000",,,,,,,,,,,"4129.000000","643.000000","755.000000","618.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","556.000000","630.000000","546.000000","713.000000","770.000000","674.000000","160.000000","6000.000000",,"8971274.000000",,,,, +"17862.000000","60.270000","17862.000000","60.270000","17862.000000","60.270000",,,,,,,,,,,,,,"16570.000000","32625.500000","15950.000000","35.000000","32625.500000","32625.500000",,,,,,,,,,,"4857684.000000","6616512.000000","478760.000000","0.000000","65005972.000000","0.000000","87757844.000000",,"3623976.000000","26754284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000",,,,,,,,"16307.000000","16423.000000",,,,,,,,,,,"4302.000000","645.000000","734.000000","625.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","558.000000","614.000000","553.000000","713.000000","725.000000","680.000000","160.000000","6000.000000",,"8971294.000000",,,,, +"16952.000000","58.830000","16952.000000","58.830000","16952.000000","58.830000",,,,,,,,,,,,,,"9218.000000","22607.500000","12733.000000","15.000000","22607.500000","22607.500000",,,,,,,,,,,"4995216.000000","6391676.000000","478760.000000","0.000000","64978860.000000","0.000000","87757844.000000",,"3623976.000000","26742524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000",,,,,,,,"10318.000000","12945.000000",,,,,,,,,,,"4314.000000","647.000000","718.000000","635.000000","848.000000","793.000000","794.000000","0.000000","0.000000","0.000000","560.000000","623.000000","563.000000","713.000000","697.000000","687.000000","160.000000","6000.000000",,"8971314.000000",,,,, +"18299.000000","60.940000","18299.000000","60.940000","18299.000000","60.940000",,,,,,,,,,,,,,"82.000000","7079.000000","6028.000000","25.000000","7079.000000","7079.000000",,,,,,,,,,,"5183916.000000","6570464.000000","478760.000000","0.000000","64971260.000000","0.000000","87757796.000000",,"3623976.000000","26736064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000",,,,,,,,"282.000000","7765.000000",,,,,,,,,,,"4252.000000","651.000000","701.000000","648.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","563.000000","631.000000","574.000000","713.000000","713.000000","697.000000","160.000000","6000.000000",,"8971334.000000",,,,, +"17053.000000","58.980000","17053.000000","58.980000","17053.000000","58.980000",,,,,,,,,,,,,,"762.000000","5353.500000","4206.000000","14.000000","5353.500000","5353.500000",,,,,,,,,,,"5519460.000000","6864064.000000","478760.000000","0.000000","64962188.000000","0.000000","87757796.000000",,"3623976.000000","26753628.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000",,,,,,,,"895.000000","4843.000000",,,,,,,,,,,"4411.000000","650.000000","675.000000","656.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","564.000000","629.000000","583.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971354.000000",,,,, +"17376.000000","59.475000","17376.000000","59.475000","17376.000000","59.475000",,,,,,,,,,,,,,"85.000000","6413.500000","6214.000000","7.000000","6413.500000","6413.500000",,,,,,,,,,,"5399480.000000","6801148.000000","478760.000000","0.000000","64943472.000000","0.000000","87757796.000000",,"3623976.000000","26770580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000",,,,,,,,"172.000000","6355.000000",,,,,,,,,,,"4342.000000","653.000000","677.000000","669.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","566.000000","636.000000","596.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971374.000000",,,,, +"16612.000000","58.275000","16612.000000","58.275000","16612.000000","58.275000",,,,,,,,,,,,,,"71.000000","6436.500000","6078.000000","17.000000","6436.500000","6436.500000",,,,,,,,,,,"5273648.000000","6465600.000000","478760.000000","0.000000","64934948.000000","0.000000","87757796.000000",,"3623976.000000","26770528.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000",,,,,,,,"148.000000","6575.000000",,,,,,,,,,,"4241.000000","656.000000","677.000000","677.000000","848.000000","789.000000","794.000000","0.000000","0.000000","0.000000","568.000000","632.000000","603.000000","713.000000","706.000000","706.000000","160.000000","6000.000000",,"8971394.000000",,,,, +"17535.000000","59.710000","17535.000000","59.710000","17535.000000","59.710000",,,,,,,,,,,,,,"131.000000","6562.000000","6366.000000","15.000000","6562.000000","6562.000000",,,,,,,,,,,"5105924.000000","6276904.000000","478760.000000","0.000000","64918120.000000","0.000000","87757844.000000",,"3623976.000000","26784464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000",,,,,,,,"158.000000","6468.000000",,,,,,,,,,,"4300.000000","658.000000","696.000000","686.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","570.000000","630.000000","610.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971414.000000",,,,, +"11303.000000","49.950000","11303.000000","49.950000","11303.000000","49.950000",,,,,,,,,,,,,,"19260.000000","29763.500000","10184.000000","81.000000","29763.500000","29763.500000",,,,,,,,,,,"5531204.000000","6759244.000000","478760.000000","0.000000","64917712.000000","0.000000","87757844.000000",,"3623976.000000","26820548.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000",,,,,,,,"19472.000000","10609.000000",,,,,,,,,,,"4006.000000","655.000000","612.000000","677.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","568.000000","545.000000","600.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971434.000000",,,,, +"9802.000000","47.595000","9802.000000","47.595000","9802.000000","47.595000",,,,,,,,,,,,,,"15321.000000","22219.500000","5840.000000","5.000000","22219.500000","22219.500000",,,,,,,,,,,"5363292.000000","6591332.000000","478760.000000","0.000000","64899916.000000","0.000000","87757704.000000",,"3623976.000000","26848292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000",,,,,,,,"15194.000000","8082.000000",,,,,,,,,,,"3744.000000","652.000000","524.000000","666.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","565.000000","463.000000","589.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971454.000000",,,,, +"13594.000000","53.540000","13594.000000","53.540000","13594.000000","53.540000",,,,,,,,,,,,,,"17289.000000","34131.500000","16242.000000","16.000000","34131.500000","34131.500000",,,,,,,,,,,"5426208.000000","6591336.000000","478760.000000","0.000000","64909528.000000","0.000000","87757704.000000",,"3623976.000000","26790416.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000",,,,,,,,"17579.000000","17152.000000",,,,,,,,,,,"3885.000000","654.000000","507.000000","670.000000","857.000000","970.000000","842.000000","0.000000","0.000000","0.000000","564.000000","420.000000","585.000000","713.000000","576.000000","713.000000","160.000000","6000.000000",,"8971474.000000",,,,, +"11184.000000","49.750000","11184.000000","49.750000","11184.000000","49.750000",,,,,,,,,,,,,,"7651.000000","16161.500000","8158.000000","8.000000","16161.500000","16161.500000",,,,,,,,,,,"5282828.000000","6501600.000000","478760.000000","0.000000","64893416.000000","0.000000","87757704.000000",,"3623976.000000","26805776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000",,,,,,,,"8256.000000","8258.000000",,,,,,,,,,,"3766.000000","645.000000","496.000000","651.000000","842.000000","970.000000","811.000000","0.000000","0.000000","0.000000","557.000000","408.000000","569.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971494.000000",,,,, +"10649.000000","48.910000","10649.000000","48.910000","10649.000000","48.910000",,,,,,,,,,,,,,"23708.000000","48739.000000","25031.000000","14.000000","48739.000000","48739.000000",,,,,,,,,,,"5178112.000000","6480772.000000","478760.000000","0.000000","64882768.000000","0.000000","87757844.000000",,"3623976.000000","26854460.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000",,,,,,,,"23616.000000",,,,,,,,,,,,"3835.000000","638.000000","510.000000","634.000000","839.000000","970.000000","811.000000","0.000000","0.000000","0.000000","552.000000","414.000000","554.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971514.000000",,,,, +"13349.000000","53.135000","13349.000000","53.135000","13349.000000","53.135000",,,,,,,,,,,,,,"19552.000000","47865.000000","28313.000000","28.000000","47865.000000","47865.000000",,,,,,,,,,,"5309792.000000","6543684.000000","478760.000000","0.000000","64875588.000000","0.000000","87757844.000000",,"3623976.000000","26864184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000",,,,,,,,,"28811.000000",,,,,,,,,,,"3796.000000","627.000000","479.000000","618.000000","811.000000","632.000000","789.000000","0.000000","0.000000","0.000000","546.000000","407.000000","540.000000","687.000000","522.000000","697.000000","160.000000","6000.000000",,"8971534.000000",,,,, +"11005.000000","49.465000","11005.000000","49.465000","11005.000000","49.465000",,,,,,,,,,,,,,"6901.000000","22293.500000","13851.000000","26.000000","22293.500000","22293.500000",,,,,,,,,,,"5609240.000000","6723156.000000","478760.000000","0.000000","64876956.000000","0.000000","87757844.000000",,"3623976.000000","26865196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000",,,,,,,,"12680.000000","11154.000000",,,,,,,,,,,"3819.000000","610.000000","480.000000","597.000000","789.000000","632.000000","781.000000","0.000000","0.000000","0.000000","535.000000","401.000000","523.000000","672.000000","522.000000","680.000000","160.000000","6000.000000",,"8971554.000000",,,,, +"12967.000000","52.580000","12967.000000","52.580000","12967.000000","52.580000",,,,,,,,,,,,,,"514.000000","28766.000000","19256.000000","130.000000","28766.000000","28766.000000",,,,,,,,,,,"5525212.000000","6723016.000000","478760.000000","0.000000","64959840.000000","0.000000","87757704.000000",,"3623976.000000","26710532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000",,,,,,,,"13335.000000","24426.000000",,,,,,,,,,,"3921.000000","604.000000","515.000000","585.000000","780.000000","632.000000","748.000000","0.000000","0.000000","0.000000","530.000000","429.000000","514.000000","671.000000","552.000000","680.000000","160.000000","6000.000000",,"8971574.000000",,,,, +"10679.000000","49.000000","10679.000000","49.000000","10679.000000","49.000000",,,,,,,,,,,,,,"159.000000","32484.500000","30560.000000","303.000000","32484.500000","32484.500000",,,,,,,,,,,"5966044.000000","7121900.000000","478756.000000","0.000000","64977548.000000","0.000000","87757848.000000",,"3623976.000000","26680572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000",,,,,,,,"2380.000000","31869.000000",,,,,,,,,,,"3815.000000","598.000000","487.000000","569.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","524.000000","405.000000","498.000000","662.000000","552.000000","672.000000","160.000000","6000.000000",,"8971594.000000",,,,, +"8712.000000","45.920000","8712.000000","45.920000","8712.000000","45.920000",,,,,,,,,,,,,,"107.000000","8184.500000","7322.000000","148.000000","8184.500000","8184.500000",,,,,,,,,,,"6019688.000000","7280404.000000","478756.000000","0.000000","64973904.000000","0.000000","87757848.000000",,"3623976.000000","26686860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000",,,,,,,,"648.000000","8291.000000",,,,,,,,,,,"3829.000000","592.000000","447.000000","542.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","519.000000","379.000000","474.000000","662.000000","552.000000","671.000000","160.000000","6000.000000",,"8971614.000000",,,,, +"8069.000000","44.915000","8069.000000","44.915000","8069.000000","44.915000",,,,,,,,,,,,,,"69.000000","6469.500000","6259.000000","137.000000","6469.500000","6469.500000",,,,,,,,,,,"6188200.000000","7239196.000000","478756.000000","0.000000","64972556.000000","0.000000","87758588.000000",,"3623976.000000","26760348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000",,,,,,,,"134.000000","6476.000000",,,,,,,,,,,"3797.000000","587.000000","361.000000","517.000000","764.000000","499.000000","694.000000","0.000000","0.000000","0.000000","516.000000","321.000000","452.000000","662.000000","403.000000","649.000000","160.000000","6000.000000",,"8971634.000000",,,,, +"9367.000000","46.955000","9367.000000","46.955000","9367.000000","46.955000",,,,,,,,,,,,,,"133.000000","3991.500000","3728.000000","46.000000","3991.500000","3991.500000",,,,,,,,,,,"6061344.000000","7154288.000000","478756.000000","0.000000","64997144.000000","0.000000","87757848.000000",,"3623976.000000","26713708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000",,,,,,,,"151.000000","3970.000000",,,,,,,,,,,"3737.000000","583.000000","339.000000","502.000000","764.000000","421.000000","693.000000","0.000000","0.000000","0.000000","513.000000","309.000000","435.000000","662.000000","367.000000","646.000000","160.000000","6000.000000",,"8971654.000000",,,,, +"7508.000000","44.040000","7508.000000","44.040000","7508.000000","44.040000",,,,,,,,,,,,,,"303.000000","1322.500000","999.000000","17.000000","1322.500000","1322.500000",,,,,,,,,,,"5809684.000000","6725584.000000","478756.000000","0.000000","64980220.000000","0.000000","87757848.000000",,"3623976.000000","26728568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000",,,,,,,,"324.000000","1018.000000",,,,,,,,,,,"3769.000000","576.000000","309.000000","469.000000","764.000000","421.000000","683.000000","0.000000","0.000000","0.000000","507.000000","288.000000","404.000000","662.000000","367.000000","576.000000","160.000000","6000.000000",,"8971674.000000",,,,, +"10016.000000","47.950000","10016.000000","47.950000","10016.000000","47.950000",,,,,,,,,,,,,,"46.000000","3684.000000","3622.000000","45.000000","3684.000000","3684.000000",,,,,,,,,,,"6275176.000000","7652448.000000","478756.000000","0.000000","64948772.000000","0.000000","87761964.000000",,"3623976.000000","26777940.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000",,,,,,,,"105.000000","3594.000000",,,,,,,,,,,"3690.000000","573.000000","336.000000","449.000000","764.000000","490.000000","624.000000","0.000000","0.000000","0.000000","504.000000","308.000000","387.000000","662.000000","442.000000","543.000000","160.000000","6000.000000",,"8971694.000000",,,,, +"10143.000000","48.135000","10143.000000","48.135000","10143.000000","48.135000",,,,,,,,,,,,,,"65.000000","4999.000000","4721.000000","29.000000","4999.000000","4999.000000",,,,,,,,,,,"6292128.000000","7711332.000000","478756.000000","0.000000","64921524.000000","0.000000","87757940.000000",,"3623976.000000","26802704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000",,,,,,,,"162.000000","5050.000000",,,,,,,,,,,"3834.000000","571.000000","344.000000","431.000000","764.000000","490.000000","550.000000","0.000000","0.000000","0.000000","503.000000","317.000000","372.000000","662.000000","442.000000","473.000000","160.000000","6000.000000",,"8971714.000000",,,,, +"8798.000000","46.025000","8798.000000","46.025000","8798.000000","46.025000",,,,,,,,,,,,,,"52.000000","4172.500000","3973.000000","26.000000","4172.500000","4172.500000",,,,,,,,,,,"6292128.000000","7962996.000000","478756.000000","0.000000","64912340.000000","0.000000","87757940.000000",,"3623976.000000","26841952.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000",,,,,,,,"122.000000","4197.000000",,,,,,,,,,,"3748.000000","564.000000","373.000000","421.000000","764.000000","490.000000","545.000000","0.000000","0.000000","0.000000","497.000000","339.000000","363.000000","662.000000","442.000000","451.000000","160.000000","6000.000000",,"8971734.000000",,,,, +"12195.000000","51.335000","12195.000000","51.335000","12195.000000","51.335000",,,,,,,,,,,,,,"341.000000","5383.000000","5044.000000","13.000000","5383.000000","5383.000000",,,,,,,,,,,"7193900.000000","8969632.000000","478756.000000","0.000000","64896984.000000","0.000000","87757940.000000",,"3623976.000000","26844128.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000",,,,,,,,"423.000000","4958.000000",,,,,,,,,,,"3882.000000","562.000000","404.000000","425.000000","764.000000","750.000000","560.000000","0.000000","0.000000","0.000000","495.000000","363.000000","367.000000","662.000000","626.000000","473.000000","160.000000","6000.000000",,"8971754.000000",,,,, +"18145.000000","60.860000","18145.000000","60.860000","18145.000000","60.860000",,,,,,,,,,,,,,"56.000000","9620.000000","9369.000000","8.000000","9620.000000","9620.000000",,,,,,,,,,,"7403932.000000","9620068.000000","478756.000000","0.000000","65305996.000000","0.000000","87757972.000000",,"3623976.000000","26434160.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000",,,,,,,,"187.000000","9627.000000",,,,,,,,,,,"3919.000000","566.000000","523.000000","435.000000","765.000000","1179.000000","620.000000","0.000000","0.000000","0.000000","496.000000","428.000000","373.000000","667.000000","751.000000","522.000000","160.000000","6000.000000",,"8971774.000000",,,,, +"21634.000000","66.350000","21634.000000","66.350000","21634.000000","66.350000",,,,,,,,,,,,,,"129.000000","10191.000000","9453.000000","9.000000","10191.000000","10191.000000",,,,,,,,,,,"7652172.000000","9616648.000000","478756.000000","0.000000","65352164.000000","0.000000","87757972.000000",,"3623976.000000","26377672.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000",,,,,,,,"314.000000","10485.000000",,,,,,,,,,,"4373.000000","581.000000","903.000000","502.000000","781.000000","1333.000000","1179.000000","0.000000","0.000000","0.000000","500.000000","617.000000","405.000000","674.000000","802.000000","751.000000","160.000000","6000.000000",,"8971794.000000",,,,, +"19601.000000","63.680000","19601.000000","63.680000","19601.000000","63.680000",,,,,,,,,,,,,,"449.000000","45245.000000","16714.000000","23.000000","45245.000000","45245.000000",,,,,,,,,,,"8323788.000000","10036600.000000","478756.000000","0.000000","66395552.000000","0.000000","90460164.000000",,"3761520.000000","27975252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000",,,,,,,,"54746.000000","18580.000000",,,,,,,,,,,"4202.000000","593.000000","1120.000000","547.000000","794.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","503.000000","695.000000","423.000000","680.000000","802.000000","751.000000","160.000000","6000.000000",,"8971814.000000",,,,, +"23008.000000","69.020000","23008.000000","69.020000","23008.000000","69.020000",,,,,,,,,,,,,,"92.000000","6666.500000","5294.000000","22.000000","6666.500000","6666.500000",,,,,,,,,,,"8050176.000000","9993676.000000","478756.000000","0.000000","66397860.000000","0.000000","90471840.000000",,"3754376.000000","27987776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000",,,,,,,,"2210.000000","5737.000000",,,,,,,,,,,"4371.000000","601.000000","1196.000000","578.000000","891.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","507.000000","752.000000","442.000000","706.000000","806.000000","782.000000","160.000000","6000.000000",,"8971834.000000",,,,, +"20170.000000","64.575000","20170.000000","64.575000","20170.000000","64.575000",,,,,,,,,,,,,,"79.000000","6557.500000","6400.000000","34.000000","6557.500000","6557.500000",,,,,,,,,,,"7981676.000000","9739852.000000","478756.000000","0.000000","66392424.000000","0.000000","90472108.000000",,"3754376.000000","27997428.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000",,,,,,,,"253.000000","6383.000000",,,,,,,,,,,"4668.000000","609.000000","1043.000000","615.000000","950.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","514.000000","749.000000","474.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971854.000000",,,,, +"19393.000000","63.340000","19393.000000","63.340000","19393.000000","63.340000",,,,,,,,,,,,,,"42.000000","12075.000000","11818.000000","29.000000","12075.000000","12075.000000",,,,,,,,,,,"7981556.000000","9655848.000000","478756.000000","0.000000","66360932.000000","0.000000","90471988.000000",,"3754376.000000","28077572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000",,,,,,,,"474.000000","11815.000000",,,,,,,,,,,"4319.000000","610.000000","917.000000","628.000000","950.000000","1170.000000","1257.000000","0.000000","0.000000","0.000000","516.000000","755.000000","488.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971874.000000",,,,, +"17637.000000","60.580000","17637.000000","60.580000","17637.000000","60.580000",,,,,,,,,,,,,,"70.000000","8997.000000","8619.000000","8.000000","8997.000000","8997.000000",,,,,,,,,,,"7834760.000000","9403328.000000","478756.000000","0.000000","66339184.000000","0.000000","90471988.000000",,"3754376.000000","28099768.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000",,,,,,,,"198.000000","9106.000000",,,,,,,,,,,"4308.000000","613.000000","821.000000","645.000000","950.000000","1068.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","717.000000","505.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971894.000000",,,,, +"14425.000000","55.545000","14425.000000","55.545000","14425.000000","55.545000",,,,,,,,,,,,,,"60.000000","9182.000000","9122.000000","13.000000","9182.000000","9182.000000",,,,,,,,,,,"7676256.000000","9202888.000000","478756.000000","0.000000","66335416.000000","0.000000","90471988.000000",,"3753872.000000","28141152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000",,,,,,,,"229.000000",,,,,,,,,,,,"4071.000000","614.000000","701.000000","666.000000","950.000000","809.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","617.000000","522.000000","713.000000","710.000000","789.000000","160.000000","6000.000000",,"8971914.000000",,,,, +"13205.000000","53.625000","13205.000000","53.625000","13205.000000","53.625000",,,,,,,,,,,,,,"49.000000","6798.500000","6574.000000","12.000000","6798.500000","6798.500000",,,,,,,,,,,"7550428.000000","9119000.000000","478756.000000","0.000000","66313700.000000","0.000000","90471988.000000",,"3753872.000000","28171516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000",,,,,,,,"158.000000","6815.000000",,,,,,,,,,,"3967.000000","615.000000","623.000000","680.000000","950.000000","780.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","544.000000","533.000000","713.000000","668.000000","789.000000","160.000000","6000.000000",,"8971934.000000",,,,, +"13497.000000","54.075000","13497.000000","54.075000","13497.000000","54.075000",,,,,,,,,,,,,,"62.000000","8339.500000","8095.000000","21.000000","8339.500000","8339.500000",,,,,,,,,,,"6585632.000000","8301004.000000","478756.000000","0.000000","66299188.000000","0.000000","90471884.000000",,"3753872.000000","28175572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000",,,,,,,,"192.000000","8329.000000",,,,,,,,,,,"4055.000000","616.000000","569.000000","691.000000","950.000000","662.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","492.000000","541.000000","713.000000","551.000000","789.000000","160.000000","6000.000000",,"8971954.000000",,,,, +"12618.000000","52.695000","12618.000000","52.695000","12618.000000","52.695000",,,,,,,,,,,,,,"62.000000","8976.500000","8771.000000","5.000000","8976.500000","8976.500000",,,,,,,,,,,"6839724.000000","8539964.000000","478756.000000","0.000000","66287820.000000","0.000000","90471884.000000",,"3753872.000000","28184708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000",,,,,,,,"194.000000","8924.000000",,,,,,,,,,,"3922.000000","616.000000","538.000000","712.000000","950.000000","613.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","465.000000","557.000000","713.000000","534.000000","789.000000","160.000000","6000.000000",,"8971974.000000",,,,, +"14653.000000","55.865000","14653.000000","55.865000","14653.000000","55.865000",,,,,,,,,,,,,,"61.000000","10934.000000","10622.000000","10.000000","10934.000000","10934.000000",,,,,,,,,,,"6986524.000000","8581912.000000","478752.000000","0.000000","66265948.000000","0.000000","90471888.000000",,"3753872.000000","28230196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000",,,,,,,,"213.000000","10971.000000",,,,,,,,,,,"3924.000000","617.000000","566.000000","726.000000","950.000000","626.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","486.000000","568.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8971994.000000",,,,, +"14644.000000","55.850000","14644.000000","55.850000","14644.000000","55.850000",,,,,,,,,,,,,,"116.000000","9671.500000","9517.000000","5.000000","9671.500000","9671.500000",,,,,,,,,,,"6713892.000000","8226264.000000","478752.000000","0.000000","66256400.000000","0.000000","90471888.000000",,"3753872.000000","28234912.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000",,,,,,,,"214.000000","9496.000000",,,,,,,,,,,"3975.000000","618.000000","567.000000","735.000000","950.000000","685.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","485.000000","575.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8972014.000000",,,,, +"14249.000000","55.225000","14249.000000","55.225000","14249.000000","55.225000",,,,,,,,,,,,,,"54.000000","10680.500000","10298.000000","3.000000","10680.500000","10680.500000",,,,,,,,,,,"6444680.000000","7804408.000000","478752.000000","0.000000","66241444.000000","0.000000","90471888.000000",,"3753872.000000","28257536.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000",,,,,,,,"220.000000","10787.000000",,,,,,,,,,,"4027.000000","618.000000","604.000000","758.000000","950.000000","792.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","521.000000","594.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972034.000000",,,,, +"15867.000000","57.750000","15867.000000","57.750000","15867.000000","57.750000",,,,,,,,,,,,,,"417.000000","13164.500000","11655.000000","7.000000","13164.500000","13164.500000",,,,,,,,,,,"6360796.000000","7930236.000000","478752.000000","0.000000","66221700.000000","0.000000","90471888.000000",,"3753872.000000","28145132.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000",,,,,,,,"686.000000","13570.000000",,,,,,,,,,,"4132.000000","622.000000","642.000000","774.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","536.000000","603.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972054.000000",,,,, +"13950.000000","54.735000","13950.000000","54.735000","13950.000000","54.735000",,,,,,,,,,,,,,"51.000000","8931.000000","8585.000000","32.000000","8931.000000","8931.000000",,,,,,,,,,,"5878312.000000","7049292.000000","478752.000000","0.000000","66205932.000000","0.000000","90471748.000000",,"3753872.000000","28138180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000",,,,,,,,"188.000000","9036.000000",,,,,,,,,,,"4034.000000","622.000000","650.000000","761.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","518.000000","540.000000","597.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972074.000000",,,,, +"16979.000000","59.500000","16979.000000","59.500000","16979.000000","59.500000",,,,,,,,,,,,,,"47.000000","11209.000000","10939.000000","17.000000","11209.000000","11209.000000",,,,,,,,,,,"5717700.000000","6966352.000000","478752.000000","0.000000","66240804.000000","0.000000","90453616.000000",,"3753872.000000","28097964.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000",,,,,,,,"238.000000","11193.000000",,,,,,,,,,,"4099.000000","622.000000","676.000000","712.000000","947.000000","810.000000","1068.000000","0.000000","0.000000","0.000000","518.000000","558.000000","582.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972094.000000",,,,, +"14851.000000","56.165000","14851.000000","56.165000","14851.000000","56.165000",,,,,,,,,,,,,,"36.000000","8421.000000","8276.000000","39.000000","8421.000000","8421.000000",,,,,,,,,,,"5597912.000000","7035184.000000","478752.000000","0.000000","66246240.000000","0.000000","90455156.000000",,"3753872.000000","28091960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000",,,,,,,,"152.000000","8376.000000",,,,,,,,,,,"4005.000000","619.000000","631.000000","676.000000","947.000000","747.000000","947.000000","0.000000","6.000000","0.000000","517.000000","541.000000","572.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972114.000000",,,,, +"15796.000000","57.635000","15796.000000","57.635000","15796.000000","57.635000",,,,,,,,,,,,,,"63.000000","6358.500000","5923.000000","8.000000","6358.500000","6358.500000",,,,,,,,,,,"5221280.000000","6762544.000000","478752.000000","0.000000","66226364.000000","0.000000","90456012.000000",,"3753872.000000","28177664.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000",,,,,,,,"169.000000","6562.000000",,,,,,,,,,,"4127.000000","616.000000","648.000000","651.000000","947.000000","747.000000","795.000000","0.000000","6.000000","0.000000","514.000000","561.000000","559.000000","710.000000","707.000000","706.000000","160.000000","6000.000000",,"8972134.000000",,,,, +"15349.000000","56.925000","15349.000000","56.925000","15349.000000","56.925000",,,,,,,,,,,,,,"54.000000","5258.000000","4971.000000","46.000000","5258.000000","5258.000000",,,,,,,,,,,"4952064.000000","6767424.000000","478752.000000","0.000000","66206544.000000","0.000000","90455280.000000",,"3753872.000000","28195080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000",,,,,,,,"431.000000","5059.000000",,,,,,,,,,,"3902.000000","613.000000","624.000000","629.000000","842.000000","680.000000","780.000000","0.000000","6.000000","0.000000","512.000000","537.000000","539.000000","707.000000","591.000000","669.000000","160.000000","6000.000000",,"8972154.000000",,,,, +"17742.000000","60.670000","17742.000000","60.670000","17742.000000","60.670000",,,,,,,,,,,,,,"36.000000","9572.000000","9401.000000","10.000000","9572.000000","9572.000000",,,,,,,,,,,"5191512.000000","6857780.000000","478752.000000","0.000000","66190668.000000","0.000000","90455280.000000",,"3753872.000000","28242004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000",,,,,,,,"222.000000","9483.000000",,,,,,,,,,,"4196.000000","613.000000","667.000000","626.000000","842.000000","752.000000","752.000000","0.000000","0.000000","0.000000","513.000000","574.000000","536.000000","707.000000","674.000000","658.000000","160.000000","6000.000000",,"8972174.000000",,,,, +"14762.000000","56.000000","14762.000000","56.000000","14762.000000","56.000000",,,,,,,,,,,,,,"59.000000","8688.000000","8430.000000","5.000000","8688.000000","8688.000000",,,,,,,,,,,"5107432.000000","6647584.000000","478752.000000","0.000000","66191936.000000","0.000000","90455084.000000",,"3753872.000000","28288960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000",,,,,,,,"200.000000","8687.000000",,,,,,,,,,,"4020.000000","611.000000","657.000000","618.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","510.000000","560.000000","528.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972194.000000",,,,, +"12815.000000","52.945000","12815.000000","52.945000","12815.000000","52.945000",,,,,,,,,,,,,,"35.000000","6029.000000","5774.000000","23.000000","6029.000000","6029.000000",,,,,,,,,,,"5048956.000000","6509368.000000","478752.000000","0.000000","66171044.000000","0.000000","90455376.000000",,"3753872.000000","28309064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000",,,,,,,,"128.000000","6121.000000",,,,,,,,,,,"3967.000000","608.000000","633.000000","615.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","507.000000","541.000000","524.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972214.000000",,,,, +"13579.000000","54.130000","13579.000000","54.130000","13579.000000","54.130000",,,,,,,,,,,,,,"118.000000","6824.000000","6658.000000","3.000000","6824.000000","6824.000000",,,,,,,,,,,"5048956.000000","6614228.000000","478752.000000","0.000000","66149272.000000","0.000000","90455376.000000",,"3753872.000000","28271812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000",,,,,,,,"129.000000","6742.000000",,,,,,,,,,,"4068.000000","605.000000","575.000000","616.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","504.000000","495.000000","526.000000","706.000000","623.000000","623.000000","160.000000","6000.000000",,"8972234.000000",,,,, +"14379.000000","55.370000","14379.000000","55.370000","14379.000000","55.370000",,,,,,,,,,,,,,"46.000000","7641.500000","7470.000000","14.000000","7641.500000","7641.500000",,,,,,,,,,,"5030356.000000","6670748.000000","478752.000000","0.000000","66118936.000000","0.000000","90447836.000000",,"3753872.000000","28291676.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000",,,,,,,,"182.000000","7584.000000",,,,,,,,,,,"4070.000000","603.000000","567.000000","618.000000","842.000000","656.000000","752.000000","0.000000","0.000000","0.000000","501.000000","493.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972254.000000",,,,, +"12669.000000","52.685000","12669.000000","52.685000","12669.000000","52.685000",,,,,,,,,,,,,,"33.000000","6826.500000","6397.000000","5.000000","6826.500000","6826.500000",,,,,,,,,,,"5115704.000000","6986784.000000","478752.000000","0.000000","66112516.000000","0.000000","90447836.000000",,"3753872.000000","28355180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000",,,,,,,,"163.000000","7058.000000",,,,,,,,,,,"3990.000000","599.000000","554.000000","618.000000","842.000000","651.000000","752.000000","0.000000","0.000000","0.000000","497.000000","485.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972274.000000",,,,, +"14323.000000","55.275000","14323.000000","55.275000","14323.000000","55.275000",,,,,,,,,,,,,,"59.000000","7843.000000","6803.000000","5.000000","7843.000000","7843.000000",,,,,,,,,,,"5031820.000000","6860956.000000","478752.000000","0.000000","66106996.000000","0.000000","90447836.000000",,"3753872.000000","28223888.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000",,,,,,,,"293.000000","8530.000000",,,,,,,,,,,"3985.000000","597.000000","567.000000","616.000000","842.000000","635.000000","752.000000","0.000000","0.000000","0.000000","494.000000","483.000000","526.000000","706.000000","568.000000","623.000000","160.000000","6000.000000",,"8972294.000000",,,,, +"13389.000000","53.800000","13389.000000","53.800000","13389.000000","53.800000",,,,,,,,,,,,,,"37.000000","7181.000000","6756.000000","9.000000","7181.000000","7181.000000",,,,,,,,,,,"4739164.000000","6516452.000000","478752.000000","0.000000","66086596.000000","0.000000","90447636.000000",,"3753872.000000","28242784.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000",,,,,,,,"138.000000","7430.000000",,,,,,,,,,,"3913.000000","594.000000","563.000000","617.000000","810.000000","655.000000","752.000000","0.000000","0.000000","0.000000","491.000000","483.000000","527.000000","698.000000","570.000000","623.000000","160.000000","6000.000000",,"8972314.000000",,,,, +"13211.000000","53.510000","13211.000000","53.510000","13211.000000","53.510000",,,,,,,,,,,,,,"106.000000","4929.000000","4723.000000","49.000000","4929.000000","4929.000000",,,,,,,,,,,"4361824.000000","6076196.000000","478752.000000","0.000000","66065084.000000","0.000000","90447784.000000",,"3753872.000000","28423972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000",,,,,,,,"178.000000","4850.000000",,,,,,,,,,,"4109.000000","595.000000","548.000000","607.000000","810.000000","655.000000","747.000000","0.000000","0.000000","0.000000","493.000000","484.000000","521.000000","698.000000","579.000000","615.000000","160.000000","6000.000000",,"8972334.000000",,,,, +"14361.000000","55.305000","14361.000000","55.305000","14361.000000","55.305000",,,,,,,,,,,,,,"324.000000","8214.500000","7803.000000","11.000000","8214.500000","8214.500000",,,,,,,,,,,"4641524.000000","6546108.000000","478752.000000","0.000000","66055168.000000","0.000000","90447784.000000",,"3753872.000000","28432112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000",,,,,,,,"439.000000","7861.000000",,,,,,,,,,,"4091.000000","599.000000","553.000000","599.000000","810.000000","737.000000","737.000000","0.000000","0.000000","0.000000","496.000000","491.000000","517.000000","698.000000","611.000000","615.000000","160.000000","6000.000000",,"8972354.000000",,,,, +"18615.000000","61.985000","18615.000000","61.985000","18615.000000","61.985000",,,,,,,,,,,,,,"43.000000","14905.000000","14564.000000","22.000000","14905.000000","14905.000000",,,,,,,,,,,"5070872.000000","6815292.000000","478752.000000","0.000000","66083500.000000","0.000000","90447784.000000",,"3753872.000000","28405712.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000",,,,,,,,"227.000000","14975.000000",,,,,,,,,,,"4393.000000","608.000000","707.000000","628.000000","904.000000","1469.000000","752.000000","0.000000","0.000000","0.000000","500.000000","546.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972374.000000",,,,, +"16728.000000","59.020000","16728.000000","59.020000","16728.000000","59.020000",,,,,,,,,,,,,,"54.000000","11334.000000","10943.000000","49.000000","11334.000000","11334.000000",,,,,,,,,,,"5385444.000000","7486380.000000","478752.000000","0.000000","66063456.000000","0.000000","90447784.000000",,"3753872.000000","28343968.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000",,,,,,,,"196.000000","11474.000000",,,,,,,,,,,"4159.000000","615.000000","796.000000","631.000000","904.000000","1469.000000","755.000000","0.000000","0.000000","0.000000","505.000000","596.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972394.000000",,,,, +"17482.000000","60.200000","17482.000000","60.200000","17482.000000","60.200000",,,,,,,,,,,,,,"127.000000","18573.000000","18445.000000","58.000000","18573.000000","18573.000000",,,,,,,,,,,"5025988.000000","7173016.000000","478752.000000","0.000000","66060348.000000","0.000000","90447776.000000",,"3753872.000000","28305704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000",,,,,,,,"1384.000000",,,,,,,,,,,,"4176.000000","621.000000","840.000000","640.000000","904.000000","1469.000000","812.000000","0.000000","0.000000","0.000000","510.000000","629.000000","535.000000","707.000000","786.000000","656.000000","160.000000","6000.000000",,"8972414.000000",,,,, +"18219.000000","61.350000","18219.000000","61.350000","18219.000000","61.350000",,,,,,,,,,,,,,"132.000000","11357.500000","10894.000000","33.000000","11357.500000","11357.500000",,,,,,,,,,,"4828348.000000","6809904.000000","478752.000000","0.000000","66050692.000000","0.000000","90447648.000000",,"3753872.000000","28316516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000",,,,,,,,"257.000000","11431.000000",,,,,,,,,,,"4185.000000","628.000000","783.000000","655.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","513.000000","610.000000","539.000000","707.000000","680.000000","666.000000","160.000000","6000.000000",,"8972434.000000",,,,, +"14622.000000","55.705000","14622.000000","55.705000","14622.000000","55.705000",,,,,,,,,,,,,,"43.000000","9004.000000","8769.000000","9.000000","9004.000000","9004.000000",,,,,,,,,,,"4996128.000000","6977676.000000","478752.000000","0.000000","66039188.000000","0.000000","90447648.000000",,"3753872.000000","28326648.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000",,,,,,,,"281.000000","8913.000000",,,,,,,,,,,"4221.000000","634.000000","764.000000","659.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","518.000000","596.000000","540.000000","707.000000","680.000000","674.000000","160.000000","6000.000000",,"8972454.000000",,,,, +"17658.000000","60.455000","17658.000000","60.455000","17658.000000","60.455000",,,,,,,,,,,,,,"94.000000","13642.000000","13235.000000","24.000000","13642.000000","13642.000000",,,,,,,,,,,"5007584.000000","6894028.000000","478752.000000","0.000000","66022028.000000","0.000000","90447884.000000",,"3753872.000000","28359468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000",,,,,,,,"503.000000","13451.000000",,,,,,,,,,,"4449.000000","637.000000","752.000000","657.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","521.000000","595.000000","539.000000","707.000000","695.000000","677.000000","160.000000","6000.000000",,"8972474.000000",,,,, +"16511.000000","58.650000","16511.000000","58.650000","16511.000000","58.650000",,,,,,,,,,,,,,"55.000000","11579.000000","11162.000000","40.000000","11579.000000","11579.000000",,,,,,,,,,,"4954344.000000","6422504.000000","478752.000000","0.000000","66000728.000000","0.000000","90447648.000000",,"3753872.000000","28378028.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000",,,,,,,,"214.000000","11727.000000",,,,,,,,,,,"4202.000000","644.000000","723.000000","669.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","526.000000","595.000000","545.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972494.000000",,,,, +"16258.000000","58.240000","16258.000000","58.240000","16258.000000","58.240000",,,,,,,,,,,,,,"52.000000","12724.500000","12528.000000","5.000000","12724.500000","12724.500000",,,,,,,,,,,"4534968.000000","5982160.000000","478752.000000","0.000000","65984352.000000","0.000000","90447708.000000",,"3753872.000000","28440972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000",,,,,,,,"214.000000","12654.000000",,,,,,,,,,,"4061.000000","652.000000","717.000000","676.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","533.000000","600.000000","552.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972514.000000",,,,, +"17030.000000","59.445000","17030.000000","59.445000","17030.000000","59.445000",,,,,,,,,,,,,,"51.000000","15008.000000","14646.000000","17.000000","15008.000000","15008.000000",,,,,,,,,,,"4389632.000000","5931928.000000","478752.000000","0.000000","65967392.000000","0.000000","90447708.000000",,"3753872.000000","28445280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000",,,,,,,,"259.000000","15059.000000",,,,,,,,,,,"4199.000000","662.000000","733.000000","689.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","540.000000","604.000000","561.000000","707.000000","687.000000","680.000000","160.000000","6000.000000",,"8972534.000000",,,,, +"15785.000000","57.500000","15785.000000","57.500000","15785.000000","57.500000",,,,,,,,,,,,,,"34.000000","10462.000000","9310.000000","4.000000","10462.000000","10462.000000",,,,,,,,,,,"5228480.000000","7201264.000000","478752.000000","0.000000","65976820.000000","0.000000","90447692.000000",,"3753872.000000","28434552.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000",,,,,,,,"306.000000","11273.000000",,,,,,,,,,,"4283.000000","666.000000","673.000000","690.000000","956.000000","797.000000","898.000000","0.000000","0.000000","0.000000","544.000000","579.000000","563.000000","707.000000","652.000000","680.000000","160.000000","6000.000000",,"8972554.000000",,,,, +"16106.000000","57.995000","16106.000000","57.995000","16106.000000","57.995000",,,,,,,,,,,,,,"33.000000","7149.000000","6707.000000","11.000000","7149.000000","7149.000000",,,,,,,,,,,"5270428.000000","7033496.000000","478752.000000","0.000000","65957912.000000","0.000000","90447692.000000",,"3753872.000000","28529136.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000",,,,,,,,"173.000000","7384.000000",,,,,,,,,,,"4179.000000","678.000000","693.000000","704.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","553.000000","584.000000","572.000000","710.000000","720.000000","687.000000","160.000000","6000.000000",,"8972574.000000",,,,, +"17438.000000","60.070000","17438.000000","60.070000","17438.000000","60.070000",,,,,,,,,,,,,,"35.000000","9487.000000","9122.000000","13.000000","9487.000000","9487.000000",,,,,,,,,,,"5442532.000000","7430676.000000","478752.000000","0.000000","65939884.000000","0.000000","90447876.000000",,"3753872.000000","28517432.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000",,,,,,,,"190.000000","9625.000000",,,,,,,,,,,"4423.000000","685.000000","681.000000","712.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","559.000000","587.000000","581.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972594.000000",,,,, +"17112.000000","59.550000","17112.000000","59.550000","17112.000000","59.550000",,,,,,,,,,,,,,"44.000000","9235.500000","8992.000000","10.000000","9235.500000","9235.500000",,,,,,,,,,,"4929304.000000","6927360.000000","478752.000000","0.000000","65921796.000000","0.000000","90447876.000000",,"3753872.000000","28534200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000",,,,,,,,"178.000000","9257.000000",,,,,,,,,,,"4176.000000","691.000000","721.000000","721.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","563.000000","611.000000","588.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972614.000000",,,,, +"15796.000000","57.490000","15796.000000","57.490000","15796.000000","57.490000",,,,,,,,,,,,,,"52.000000","9463.500000","9557.000000","116.000000","9463.500000","9463.500000",,,,,,,,,,,"4908328.000000","6780552.000000","478752.000000","0.000000","65929732.000000","0.000000","90447876.000000",,"3753872.000000","28551012.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000",,,,,,,,"179.000000","9138.000000",,,,,,,,,,,"4155.000000","699.000000","695.000000","733.000000","956.000000","756.000000","904.000000","0.000000","0.000000","0.000000","570.000000","602.000000","596.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972634.000000",,,,, +"15193.000000","56.535000","15193.000000","56.535000","15193.000000","56.535000",,,,,,,,,,,,,,"462.000000","9366.500000","8608.000000","49.000000","9366.500000","9366.500000",,,,,,,,,,,"4971240.000000","6649116.000000","478752.000000","0.000000","65912664.000000","0.000000","90447876.000000",,"3753872.000000","28436192.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000",,,,,,,,"512.000000","9150.000000",,,,,,,,,,,"4027.000000","702.000000","668.000000","735.000000","956.000000","770.000000","904.000000","0.000000","0.000000","0.000000","573.000000","579.000000","599.000000","717.000000","666.000000","695.000000","160.000000","6000.000000",,"8972654.000000",,,,, +"17678.000000","60.425000","17678.000000","60.425000","17678.000000","60.425000",,,,,,,,,,,,,,"69.000000","8593.500000","8301.000000","5.000000","8593.500000","8593.500000",,,,,,,,,,,"5075768.000000","6397124.000000","478752.000000","0.000000","65895904.000000","0.000000","90447544.000000",,"3753872.000000","28451368.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000",,,,,,,,"256.000000","8559.000000",,,,,,,,,,,"4365.000000","703.000000","701.000000","720.000000","956.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","574.000000","585.000000","596.000000","717.000000","774.000000","687.000000","160.000000","6000.000000",,"8972674.000000",,,,, +"18225.000000","61.280000","18225.000000","61.280000","18225.000000","61.280000",,,,,,,,,,,,,,"47.000000","9509.500000","9255.000000","16.000000","9509.500000","9509.500000",,,,,,,,,,,"5159904.000000","6544180.000000","478752.000000","0.000000","65897940.000000","0.000000","90447796.000000",,"3753872.000000","28518020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000",,,,,,,,"179.000000","9538.000000",,,,,,,,,,,"4120.000000","690.000000","769.000000","728.000000","898.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","570.000000","614.000000","599.000000","698.000000","774.000000","688.000000","160.000000","6000.000000",,"8972694.000000",,,,, +"15501.000000","57.005000","15501.000000","57.005000","15501.000000","57.005000",,,,,,,,,,,,,,"108.000000","6539.000000","6491.000000","3.000000","6539.000000","6539.000000",,,,,,,,,,,"5001888.000000","6433708.000000","478752.000000","0.000000","65879072.000000","0.000000","90447796.000000",,"3753872.000000","28512484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000",,,,,,,,"141.000000","6337.000000",,,,,,,,,,,"4051.000000","678.000000","761.000000","719.000000","868.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","567.000000","610.000000","595.000000","695.000000","774.000000","688.000000","160.000000","6000.000000",,"8972714.000000",,,,, +"17242.000000","59.730000","17242.000000","59.730000","17242.000000","59.730000",,,,,,,,,,,,,,"47.000000","9239.500000","8932.000000","11.000000","9239.500000","9239.500000",,,,,,,,,,,"4918004.000000","6203020.000000","478752.000000","0.000000","65880960.000000","0.000000","90447796.000000",,"3753872.000000","28511228.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000",,,,,,,,"344.000000","9155.000000",,,,,,,,,,,"4136.000000","672.000000","725.000000","709.000000","836.000000","856.000000","868.000000","0.000000","0.000000","0.000000","564.000000","600.000000","594.000000","680.000000","688.000000","688.000000","160.000000","6000.000000",,"8972734.000000",,,,, +"15715.000000","57.335000","15715.000000","57.335000","15715.000000","57.335000",,,,,,,,,,,,,,"32.000000","8178.000000","7836.000000","8.000000","8178.000000","8178.000000",,,,,,,,,,,"4897032.000000","6328848.000000","478752.000000","0.000000","65869852.000000","0.000000","90447796.000000",,"3753872.000000","28391468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000",,,,,,,,"361.000000","8127.000000",,,,,,,,,,,"4059.000000","665.000000","670.000000","709.000000","812.000000","791.000000","856.000000","0.000000","0.000000","0.000000","558.000000","573.000000","595.000000","674.000000","635.000000","688.000000","160.000000","6000.000000",,"8972754.000000",,,,, +"18136.000000","61.135000","18136.000000","61.135000","18136.000000","61.135000",,,,,,,,,,,,,,"710.000000","9008.500000","8002.000000","13.000000","9008.500000","9008.500000",,,,,,,,,,,"4765588.000000","6412728.000000","478752.000000","0.000000","65877196.000000","0.000000","90447788.000000",,"3753872.000000","28555024.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000",,,,,,,,"855.000000","8449.000000",,,,,,,,,,,"4124.000000","666.000000","729.000000","714.000000","830.000000","848.000000","856.000000","0.000000","0.000000","0.000000","558.000000","610.000000","598.000000","672.000000","691.000000","688.000000","160.000000","6000.000000",,"8972774.000000",,,,, +"18445.000000","61.605000","18445.000000","61.605000","18445.000000","61.605000",,,,,,,,,,,,,,"42.000000","8819.000000","8777.000000","10.000000","8819.000000","8819.000000",,,,,,,,,,,"4933328.000000","6717360.000000","478752.000000","0.000000","65863516.000000","0.000000","90447756.000000",,"3753872.000000","28566300.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000",,,,,,,,"282.000000",,,,,,,,,,,,"4123.000000","668.000000","765.000000","717.000000","848.000000","1001.000000","856.000000","0.000000","0.000000","0.000000","557.000000","619.000000","599.000000","674.000000","709.000000","691.000000","160.000000","6000.000000",,"8972794.000000",,,,, +"16642.000000","58.780000","16642.000000","58.780000","16642.000000","58.780000",,,,,,,,,,,,,,"35.000000","6596.000000","6028.000000","4.000000","6596.000000","6596.000000",,,,,,,,,,,"5164060.000000","7157812.000000","478752.000000","0.000000","65858796.000000","0.000000","90447804.000000",,"3753872.000000","28631296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000",,,,,,,,"179.000000","6950.000000",,,,,,,,,,,"4350.000000","670.000000","766.000000","718.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","560.000000","638.000000","602.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972814.000000",,,,, +"16346.000000","58.310000","16346.000000","58.310000","16346.000000","58.310000",,,,,,,,,,,,,,"36.000000","7877.000000","7840.000000","5.000000","7877.000000","7877.000000",,,,,,,,,,,"5446440.000000","7482140.000000","478752.000000","0.000000","65840880.000000","0.000000","90447804.000000",,"3753872.000000","28599424.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000",,,,,,,,"235.000000",,,,,,,,,,,,"4033.000000","673.000000","732.000000","714.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","562.000000","609.000000","599.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972834.000000",,,,, +"16909.000000","59.180000","16909.000000","59.180000","16909.000000","59.180000",,,,,,,,,,,,,,"55.000000","9226.500000","8649.000000","5.000000","9226.500000","9226.500000",,,,,,,,,,,"5278668.000000","7398256.000000","478752.000000","0.000000","65824056.000000","0.000000","90447804.000000",,"3753872.000000","28615900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000",,,,,,,,"198.000000","9550.000000",,,,,,,,,,,"4111.000000","676.000000","694.000000","721.000000","851.000000","860.000000","860.000000","0.000000","2.000000","0.000000","564.000000","595.000000","602.000000","678.000000","697.000000","697.000000","160.000000","6000.000000",,"8972854.000000",,,,, +"16342.000000","58.310000","16342.000000","58.310000","16342.000000","58.310000",,,,,,,,,,,,,,"39.000000","7346.000000","6921.000000","5.000000","7346.000000","7346.000000",,,,,,,,,,,"5299512.000000","7188416.000000","478752.000000","0.000000","65845904.000000","0.000000","90447676.000000",,"3753872.000000","28638112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000",,,,,,,,"162.000000","7569.000000",,,,,,,,,,,"4097.000000","682.000000","724.000000","725.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","568.000000","595.000000","604.000000","683.000000","768.000000","697.000000","160.000000","6000.000000",,"8972874.000000",,,,, +"17150.000000","59.565000","17150.000000","59.565000","17150.000000","59.565000",,,,,,,,,,,,,,"56.000000","8032.500000","7807.000000","5.000000","8032.500000","8032.500000",,,,,,,,,,,"5305120.000000","7062584.000000","478752.000000","0.000000","65833792.000000","0.000000","90447676.000000",,"3753872.000000","28633400.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000",,,,,,,,"164.000000","8038.000000",,,,,,,,,,,"4440.000000","685.000000","742.000000","726.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","571.000000","619.000000","605.000000","687.000000","768.000000","691.000000","160.000000","6000.000000",,"8972894.000000",,,,, +"17486.000000","60.090000","17486.000000","60.090000","17486.000000","60.090000",,,,,,,,,,,,,,"56.000000","9345.000000","9129.000000","3.000000","9345.000000","9345.000000",,,,,,,,,,,"5388960.000000","7398084.000000","478752.000000","0.000000","65831196.000000","0.000000","90447632.000000",,"3753872.000000","28634752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000",,,,,,,,"221.000000","9283.000000",,,,,,,,,,,"4097.000000","688.000000","751.000000","727.000000","868.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","617.000000","603.000000","688.000000","768.000000","697.000000","160.000000","6000.000000",,"8972914.000000",,,,, +"16600.000000","58.700000","16600.000000","58.700000","16600.000000","58.700000",,,,,,,,,,,,,,"98.000000","21054.500000","20849.000000","9.000000","21054.500000","21054.500000",,,,,,,,,,,"4996108.000000","7595360.000000","478752.000000","0.000000","65826140.000000","0.000000","90447632.000000",,"3753872.000000","28663516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000",,,,,,,,"245.000000","20915.000000",,,,,,,,,,,"4251.000000","692.000000","745.000000","735.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","575.000000","616.000000","607.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972934.000000",,,,, +"14611.000000","55.575000","14611.000000","55.575000","14611.000000","55.575000",,,,,,,,,,,,,,"352.000000","5812.000000","5105.000000","9.000000","5812.000000","5812.000000",,,,,,,,,,,"5029968.000000","7332844.000000","478752.000000","0.000000","65805868.000000","0.000000","90447840.000000",,"3753872.000000","28673360.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000",,,,,,,,"426.000000","5739.000000",,,,,,,,,,,"4362.000000","688.000000","691.000000","731.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","565.000000","603.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972955.000000",,,,, +"16890.000000","59.140000","16890.000000","59.140000","16890.000000","59.140000",,,,,,,,,,,,,,"49.000000","4328.500000","4173.000000","65.000000","4328.500000","4328.500000",,,,,,,,,,,"5365512.000000","7500616.000000","478752.000000","0.000000","65798940.000000","0.000000","90447840.000000",,"3753872.000000","28678348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000",,,,,,,,"105.000000","4330.000000",,,,,,,,,,,"4021.000000","694.000000","732.000000","733.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","576.000000","585.000000","603.000000","689.000000","789.000000","697.000000","160.000000","6000.000000",,"8972974.000000",,,,, +"15547.000000","57.040000","15547.000000","57.040000","15547.000000","57.040000",,,,,,,,,,,,,,"36.000000","5892.000000","5707.000000","46.000000","5892.000000","5892.000000",,,,,,,,,,,"5659116.000000","7542556.000000","478752.000000","0.000000","65806068.000000","0.000000","90447840.000000",,"3753872.000000","28650632.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000",,,,,,,,"129.000000","5910.000000",,,,,,,,,,,"4117.000000","694.000000","713.000000","724.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","575.000000","565.000000","598.000000","688.000000","789.000000","697.000000","160.000000","6000.000000",,"8972994.000000",,,,, +"15283.000000","56.630000","15283.000000","56.630000","15283.000000","56.630000",,,,,,,,,,,,,,"45.000000","4952.000000","4666.000000","40.000000","4952.000000","4952.000000",,,,,,,,,,,"5990520.000000","7736912.000000","478752.000000","0.000000","65806224.000000","0.000000","90447840.000000",,"3753872.000000","28688252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000",,,,,,,,"122.000000","5069.000000",,,,,,,,,,,"3990.000000","696.000000","753.000000","729.000000","887.000000","1190.000000","916.000000","0.000000","0.000000","0.000000","576.000000","582.000000","597.000000","689.000000","789.000000","709.000000","160.000000","6000.000000",,"8973014.000000",,,,, +"15936.000000","57.640000","15936.000000","57.640000","15936.000000","57.640000",,,,,,,,,,,,,,"90.000000","2566.000000","2463.000000","24.000000","2566.000000","2566.000000",,,,,,,,,,,"5696624.000000","7631752.000000","478752.000000","0.000000","65787688.000000","0.000000","90447540.000000",,"3753872.000000","28706060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000",,,,,,,,"87.000000","2491.000000",,,,,,,,,,,"4084.000000","695.000000","659.000000","720.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","544.000000","592.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973034.000000",,,,, +"13998.000000","54.595000","13998.000000","54.595000","13998.000000","54.595000",,,,,,,,,,,,,,"41.000000","3205.000000","2019.000000","80.000000","3205.000000","3205.000000",,,,,,,,,,,"5487080.000000","7296384.000000","478752.000000","0.000000","65772584.000000","0.000000","90447712.000000",,"3753872.000000","28674144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000",,,,,,,,"550.000000","3800.000000",,,,,,,,,,,"4074.000000","695.000000","635.000000","717.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","532.000000","589.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973054.000000",,,,, +"16054.000000","57.815000","16054.000000","57.815000","16054.000000","57.815000",,,,,,,,,,,,,,"1051.000000","5513.500000","4035.000000","58.000000","5513.500000","5513.500000",,,,,,,,,,,"5656312.000000","7722892.000000","478740.000000","0.000000","65771880.000000","0.000000","90447728.000000",,"3753872.000000","28727588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000",,,,,,,,"1173.000000","4767.000000",,,,,,,,,,,"4026.000000","694.000000","627.000000","709.000000","887.000000","854.000000","916.000000","0.000000","0.000000","0.000000","573.000000","542.000000","583.000000","689.000000","654.000000","709.000000","160.000000","6000.000000",,"8973074.000000",,,,, +"15845.000000","57.495000","15845.000000","57.495000","15845.000000","57.495000",,,,,,,,,,,,,,"1617.000000","5345.000000","3631.000000","68.000000","5345.000000","5345.000000",,,,,,,,,,,"5677624.000000","7429636.000000","478740.000000","0.000000","65778860.000000","0.000000","90448072.000000",,"3753872.000000","28721708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000",,,,,,,,"1715.000000","3726.000000",,,,,,,,,,,"4107.000000","694.000000","643.000000","696.000000","887.000000","854.000000","891.000000","0.000000","0.000000","0.000000","574.000000","544.000000","577.000000","689.000000","654.000000","697.000000","160.000000","6000.000000",,"8973094.000000",,,,, +"15233.000000","56.525000","15233.000000","56.525000","15233.000000","56.525000",,,,,,,,,,,,,,"45.000000","6494.000000","6225.000000","17.000000","6494.000000","6494.000000",,,,,,,,,,,"5928940.000000","7534148.000000","478736.000000","0.000000","65758964.000000","0.000000","90447728.000000",,"3753872.000000","28732644.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000",,,,,,,,"132.000000","6586.000000",,,,,,,,,,,"4362.000000","696.000000","654.000000","694.000000","887.000000","782.000000","891.000000","0.000000","0.000000","0.000000","576.000000","559.000000","573.000000","689.000000","654.000000","690.000000","160.000000","6000.000000",,"8973114.000000",,,,, +"14075.000000","54.700000","14075.000000","54.700000","14075.000000","54.700000",,,,,,,,,,,,,,"48.000000","3546.000000","3577.000000","52.000000","3546.000000","3546.000000",,,,,,,,,,,"5930408.000000","7552436.000000","478736.000000","0.000000","65735472.000000","0.000000","90447732.000000",,"3753872.000000","28714692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000",,,,,,,,"94.000000","3372.000000",,,,,,,,,,,"4121.000000","696.000000","607.000000","684.000000","887.000000","757.000000","891.000000","0.000000","0.000000","0.000000","576.000000","530.000000","568.000000","689.000000","646.000000","690.000000","160.000000","6000.000000",,"8973134.000000",,,,, +"14789.000000","55.820000","14789.000000","55.820000","14789.000000","55.820000",,,,,,,,,,,,,,"72.000000","9800.000000","8690.000000","23.000000","9800.000000","9800.000000",,,,,,,,,,,"5825476.000000","7657220.000000","478736.000000","0.000000","65734344.000000","0.000000","90447660.000000",,"3753872.000000","28716284.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000",,,,,,,,"218.000000","10620.000000",,,,,,,,,,,"4237.000000","697.000000","613.000000","680.000000","887.000000","814.000000","891.000000","0.000000","0.000000","0.000000","577.000000","540.000000","566.000000","689.000000","667.000000","690.000000","160.000000","6000.000000",,"8973154.000000",,,,, +"13144.000000","53.320000","13144.000000","53.320000","13144.000000","53.320000",,,,,,,,,,,,,,"60.000000","24042.500000","20791.000000","136.000000","24042.500000","24042.500000",,,,,,,,,,,"5951304.000000","7720140.000000","478736.000000","0.000000","65893572.000000","0.000000","90447660.000000",,"3753872.000000","28591396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000",,,,,,,,"6002.000000","21231.000000",,,,,,,,,,,"4264.000000","696.000000","554.000000","660.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","577.000000","498.000000","554.000000","689.000000","667.000000","687.000000","160.000000","6000.000000",,"8973174.000000",,,,, +"12966.000000","53.115000","12966.000000","53.115000","12966.000000","53.115000",,,,,,,,,,,,,,"65.000000","35014.500000","31958.000000","206.000000","35014.500000","35014.500000",,,,,,,,,,,"5774996.000000","7212432.000000","478736.000000","0.000000","66044460.000000","0.000000","90447660.000000",,"3753872.000000","28310752.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000",,,,,,,,"5949.000000","32056.000000",,,,,,,,,,,"4015.000000","695.000000","548.000000","645.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","576.000000","490.000000","542.000000","689.000000","667.000000","667.000000","160.000000","6000.000000",,"8973194.000000",,,,, +"15546.000000","57.210000","15546.000000","57.210000","15546.000000","57.210000",,,,,,,,,,,,,,"48.000000","35013.000000","31799.000000","113.000000","35013.000000","35013.000000",,,,,,,,,,,"5816944.000000","7191460.000000","478736.000000","0.000000","66152636.000000","0.000000","90447660.000000",,"3753872.000000","28223132.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000",,,,,,,,"5731.000000","32446.000000",,,,,,,,,,,"4332.000000","695.000000","538.000000","637.000000","887.000000","663.000000","814.000000","0.000000","0.000000","0.000000","577.000000","488.000000","540.000000","689.000000","582.000000","654.000000","160.000000","6000.000000",,"8973214.000000",,,,, +"13412.000000","53.875000","13412.000000","53.875000","13412.000000","53.875000",,,,,,,,,,,,,,"34.000000","32461.000000","32426.000000","102.000000","32461.000000","32461.000000",,,,,,,,,,,"7169096.000000","8646884.000000","478736.000000","0.000000","66176764.000000","0.000000","90408232.000000",,"3753872.000000","28036916.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000",,,,,,,,"5672.000000",,,,,,,,,,,,"4219.000000","697.000000","555.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","496.000000","530.000000","689.000000","582.000000","649.000000","160.000000","6000.000000",,"8973234.000000",,,,, +"14934.000000","56.265000","14934.000000","56.265000","14934.000000","56.265000",,,,,,,,,,,,,,"46.000000","38786.000000","31375.000000","30.000000","38786.000000","38786.000000",,,,,,,,,,,"7074448.000000","8513252.000000","478736.000000","0.000000","66167008.000000","0.000000","90362948.000000",,"3753872.000000","28018276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000",,,,,,,,"13836.000000","32314.000000",,,,,,,,,,,"4239.000000","696.000000","573.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","522.000000","533.000000","689.000000","590.000000","649.000000","160.000000","6000.000000",,"8973254.000000",,,,, +"17815.000000","60.790000","17815.000000","60.790000","17815.000000","60.790000",,,,,,,,,,,,,,"321.000000","36929.500000","29046.000000","45.000000","36929.500000","36929.500000",,,,,,,,,,,"7074384.000000","8387360.000000","478736.000000","0.000000","66201532.000000","0.000000","90362884.000000",,"3753872.000000","27990628.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000",,,,,,,,"15207.000000","29284.000000",,,,,,,,,,,"4319.000000","686.000000","570.000000","605.000000","868.000000","663.000000","757.000000","0.000000","0.000000","0.000000","576.000000","522.000000","527.000000","687.000000","620.000000","646.000000","160.000000","6000.000000",,"8973274.000000",,,,, +"16975.000000","59.485000","16975.000000","59.485000","16975.000000","59.485000",,,,,,,,,,,,,,"36.000000","31944.000000","27573.000000","102.000000","31944.000000","31944.000000",,,,,,,,,,,"8710160.000000","10169940.000000","478736.000000","0.000000","66220808.000000","0.000000","90362884.000000",,"3753872.000000","28013292.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000",,,,,,,,"4502.000000","31777.000000",,,,,,,,,,,"4669.000000","686.000000","640.000000","608.000000","874.000000","935.000000","782.000000","0.000000","0.000000","0.000000","577.000000","594.000000","536.000000","688.000000","835.000000","649.000000","160.000000","6000.000000",,"8973294.000000",,,,, +"17195.000000","59.825000","17195.000000","59.825000","17195.000000","59.825000",,,,,,,,,,,,,,"52.000000","8784.500000","8407.000000","34.000000","8784.500000","8784.500000",,,,,,,,,,,"8449160.000000","9862240.000000","478736.000000","0.000000","66209712.000000","0.000000","90363068.000000",,"3753872.000000","28054512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000",,,,,,,,"595.000000","8513.000000",,,,,,,,,,,"4481.000000","684.000000","664.000000","604.000000","874.000000","935.000000","757.000000","0.000000","0.000000","0.000000","577.000000","615.000000","540.000000","688.000000","835.000000","646.000000","160.000000","6000.000000",,"8973314.000000",,,,, +"18531.000000","61.905000","18531.000000","61.905000","18531.000000","61.905000",,,,,,,,,,,,,,"459.000000","6856.500000","6109.000000","10.000000","6856.500000","6856.500000",,,,,,,,,,,"8449160.000000","9872152.000000","478736.000000","0.000000","66190820.000000","0.000000","90363068.000000",,"3753872.000000","28067152.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000",,,,,,,,"545.000000","6599.000000",,,,,,,,,,,"4389.000000","682.000000","720.000000","617.000000","868.000000","972.000000","782.000000","0.000000","0.000000","0.000000","578.000000","642.000000","547.000000","689.000000","835.000000","649.000000","160.000000","6000.000000",,"8973334.000000",,,,, +"18176.000000","61.345000","18176.000000","61.345000","18176.000000","61.345000",,,,,,,,,,,,,,"114.000000","4934.000000","4650.000000","8.000000","4934.000000","4934.000000",,,,,,,,,,,"8113616.000000","9515636.000000","478736.000000","0.000000","66183572.000000","0.000000","90363068.000000",,"3753872.000000","28126660.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000",,,,,,,,"514.000000","4590.000000",,,,,,,,,,,"4433.000000","683.000000","716.000000","624.000000","860.000000","972.000000","782.000000","0.000000","0.000000","0.000000","580.000000","637.000000","557.000000","691.000000","724.000000","667.000000","160.000000","6000.000000",,"8973354.000000",,,,, +"13581.000000","54.155000","13581.000000","54.155000","13581.000000","54.155000",,,,,,,,,,,,,,"175.000000","2228.500000","1874.000000","3.000000","2228.500000","2228.500000",,,,,,,,,,,"8108856.000000","9406016.000000","478736.000000","0.000000","66202488.000000","0.000000","90363068.000000",,"3753872.000000","28145632.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000",,,,,,,,"218.000000","2189.000000",,,,,,,,,,,"4315.000000","680.000000","688.000000","616.000000","860.000000","972.000000","757.000000","0.000000","0.000000","0.000000","577.000000","598.000000","551.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973374.000000",,,,, +"16798.000000","59.195000","16798.000000","59.195000","16798.000000","59.195000",,,,,,,,,,,,,,"41.000000","5921.000000","6003.000000","35.000000","5921.000000","5921.000000",,,,,,,,,,,"8381220.000000","9658560.000000","478736.000000","0.000000","66190772.000000","0.000000","90362804.000000",,"3753872.000000","28157588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000",,,,,,,,"127.000000","5669.000000",,,,,,,,,,,"4016.000000","678.000000","667.000000","622.000000","854.000000","798.000000","788.000000","0.000000","0.000000","0.000000","577.000000","579.000000","554.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973394.000000",,,,, +"20990.000000","65.765000","20990.000000","65.765000","20990.000000","65.765000",,,,,,,,,,,,,,"36.000000","8922.500000","8650.000000","16.000000","8922.500000","8922.500000",,,,,,,,,,,"8276612.000000","9491328.000000","478736.000000","0.000000","66199684.000000","0.000000","90363056.000000",,"3753872.000000","28177756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000",,,,,,,,"166.000000","8992.000000",,,,,,,,,,,"4233.000000","687.000000","781.000000","649.000000","860.000000","1253.000000","814.000000","0.000000","0.000000","0.000000","581.000000","612.000000","567.000000","695.000000","902.000000","711.000000","160.000000","6000.000000",,"8973414.000000",,,,, +"19347.000000","63.205000","19347.000000","63.205000","19347.000000","63.205000",,,,,,,,,,,,,,"72.000000","9185.000000","8795.000000","5.000000","9185.000000","9185.000000",,,,,,,,,,,"8206288.000000","9549412.000000","478736.000000","0.000000","66228592.000000","0.000000","90427636.000000",,"3753872.000000","28196900.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000",,,,,,,,"201.000000","9302.000000",,,,,,,,,,,"4258.000000","693.000000","935.000000","682.000000","891.000000","1281.000000","972.000000","0.000000","0.000000","0.000000","583.000000","682.000000","581.000000","709.000000","902.000000","724.000000","160.000000","6000.000000",,"8973434.000000",,,,, +"21485.000000","66.570000","21485.000000","66.570000","21485.000000","66.570000",,,,,,,,,,,,,,"37.000000","8755.500000","7743.000000","6.000000","8755.500000","8755.500000",,,,,,,,,,,"8101436.000000","9967976.000000","478736.000000","0.000000","66267148.000000","0.000000","90427636.000000",,"3753872.000000","28156520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000",,,,,,,,"238.000000","9492.000000",,,,,,,,,,,"4352.000000","703.000000","1046.000000","708.000000","916.000000","1281.000000","1124.000000","0.000000","0.000000","0.000000","587.000000","738.000000","594.000000","711.000000","902.000000","784.000000","160.000000","6000.000000",,"8973454.000000",,,,, +"17868.000000","60.905000","17868.000000","60.905000","17868.000000","60.905000",,,,,,,,,,,,,,"39.000000","10935.500000","9541.000000","10.000000","10935.500000","10935.500000",,,,,,,,,,,"8080464.000000","10219632.000000","478736.000000","0.000000","66257584.000000","0.000000","90427636.000000",,"3753872.000000","28196460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000",,,,,,,,"294.000000","11995.000000",,,,,,,,,,,"4162.000000","709.000000","1015.000000","742.000000","935.000000","1281.000000","1155.000000","0.000000","0.000000","0.000000","590.000000","715.000000","611.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973474.000000",,,,, +"14848.000000","56.160000","14848.000000","56.160000","14848.000000","56.160000",,,,,,,,,,,,,,"50.000000","9321.500000","8080.000000","11.000000","9321.500000","9321.500000",,,,,,,,,,,"8710924.000000","10613996.000000","478736.000000","0.000000","66244960.000000","0.000000","90427636.000000",,"3753872.000000","28199912.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000",,,,,,,,"274.000000","10238.000000",,,,,,,,,,,"4119.000000","707.000000","880.000000","748.000000","935.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","587.000000","660.000000","615.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973494.000000",,,,, +"17721.000000","60.660000","17721.000000","60.660000","17721.000000","60.660000",,,,,,,,,,,,,,"39.000000","11777.500000","10219.000000","17.000000","11777.500000","11777.500000",,,,,,,,,,,"8857460.000000","10487336.000000","478736.000000","0.000000","66227668.000000","0.000000","90427372.000000",,"3753872.000000","28215488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000",,,,,,,,"298.000000","12997.000000",,,,,,,,,,,"4127.000000","709.000000","807.000000","762.000000","943.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","621.000000","620.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973514.000000",,,,, +"15358.000000","56.945000","15358.000000","56.945000","15358.000000","56.945000",,,,,,,,,,,,,,"36.000000","7929.000000","6550.000000","60.000000","7929.000000","7929.000000",,,,,,,,,,,"9046204.000000","10466368.000000","478736.000000","0.000000","66216328.000000","0.000000","90427372.000000",,"3753872.000000","28169536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000",,,,,,,,"258.000000","9013.000000",,,,,,,,,,,"3975.000000","709.000000","705.000000","771.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","573.000000","626.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973534.000000",,,,, +"15860.000000","57.720000","15860.000000","57.720000","15860.000000","57.720000",,,,,,,,,,,,,,"41.000000","11415.500000","10096.000000","11.000000","11415.500000","11415.500000",,,,,,,,,,,"7934056.000000","9548368.000000","478736.000000","0.000000","66196544.000000","0.000000","90427372.000000",,"3753872.000000","28182244.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000",,,,,,,,"276.000000","12416.000000",,,,,,,,,,,"4044.000000","710.000000","725.000000","778.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","589.000000","629.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973554.000000",,,,, +"20011.000000","64.360000","20011.000000","64.360000","20011.000000","64.360000",,,,,,,,,,,,,,"395.000000","11714.000000","11318.000000","68.000000","11714.000000","11714.000000",,,,,,,,,,,"8668056.000000","10115748.000000","478736.000000","0.000000","66467460.000000","0.000000","90427372.000000",,"3753872.000000","27926784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000",,,,,,,,"544.000000",,,,,,,,,,,,"4432.000000","713.000000","773.000000","803.000000","943.000000","1454.000000","1173.000000","0.000000","0.000000","0.000000","589.000000","600.000000","636.000000","711.000000","817.000000","812.000000","160.000000","6000.000000",,"8973574.000000",,,,, +"19556.000000","63.750000","19556.000000","63.750000","19556.000000","63.750000",,,,,,,,,,,,,,"148.000000","13750.500000","12543.000000","26.000000","13750.500000","13750.500000",,,,,,,,,,,"8771464.000000","10197932.000000","478736.000000","0.000000","66672260.000000","0.000000","90421136.000000",,"3753872.000000","27730564.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000",,,,,,,,"371.000000","14438.000000",,,,,,,,,,,"4259.000000","727.000000","1028.000000","849.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","591.000000","668.000000","641.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973594.000000",,,,, +"19346.000000","63.415000","19346.000000","63.415000","19346.000000","63.415000",,,,,,,,,,,,,,"42.000000","11603.000000","10380.000000","20.000000","11603.000000","11603.000000",,,,,,,,,,,"8352036.000000","9799472.000000","478736.000000","0.000000","66654820.000000","0.000000","90421136.000000",,"3753872.000000","27779876.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000",,,,,,,,"258.000000","12525.000000",,,,,,,,,,,"4178.000000","731.000000","1073.000000","860.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","594.000000","696.000000","645.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973614.000000",,,,, +"20337.000000","64.960000","20337.000000","64.960000","20337.000000","64.960000",,,,,,,,,,,,,,"117.000000","7854.500000","6572.000000","40.000000","7854.500000","7854.500000",,,,,,,,,,,"8178760.000000","9647448.000000","478736.000000","0.000000","66649380.000000","0.000000","90421092.000000",,"3753872.000000","27787696.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000",,,,,,,,"263.000000","8756.000000",,,,,,,,,,,"4380.000000","739.000000","1113.000000","881.000000","1006.000000","1743.000000","1281.000000","0.000000","0.000000","0.000000","597.000000","725.000000","653.000000","736.000000","795.000000","795.000000","160.000000","6000.000000",,"8973634.000000",,,,, +"19869.000000","64.215000","19869.000000","64.215000","19869.000000","64.215000",,,,,,,,,,,,,,"37.000000","10468.500000","8944.000000","20.000000","10468.500000","10468.500000",,,,,,,,,,,"8157956.000000","9710468.000000","478736.000000","0.000000","66626104.000000","0.000000","90420148.000000",,"3753872.000000","27816068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000",,,,,,,,"599.000000","11355.000000",,,,,,,,,,,"4381.000000","743.000000","915.000000","889.000000","1006.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","600.000000","709.000000","655.000000","742.000000","792.000000","795.000000","160.000000","6000.000000",,"8973654.000000",,,,, +"19594.000000","63.770000","19594.000000","63.770000","19594.000000","63.770000",,,,,,,,,,,,,,"36.000000","9981.000000","8797.000000","65.000000","9981.000000","9981.000000",,,,,,,,,,,"7924184.000000","9643936.000000","478736.000000","0.000000","66598840.000000","0.000000","90406268.000000",,"3753872.000000","27779068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000",,,,,,,,"245.000000","10883.000000",,,,,,,,,,,"4289.000000","745.000000","935.000000","910.000000","1035.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","720.000000","669.000000","754.000000","792.000000","795.000000","160.000000","6000.000000",,"8973674.000000",,,,, +"18152.000000","61.510000","18152.000000","61.510000","18152.000000","61.510000",,,,,,,,,,,,,,"38.000000","8409.500000","7119.000000","59.000000","8409.500000","8409.500000",,,,,,,,,,,"7399616.000000","9327924.000000","478736.000000","0.000000","66580244.000000","0.000000","90406268.000000",,"3753872.000000","27798788.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000",,,,,,,,"244.000000","9416.000000",,,,,,,,,,,"4184.000000","748.000000","891.000000","926.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","602.000000","689.000000","675.000000","754.000000","758.000000","795.000000","160.000000","6000.000000",,"8973694.000000",,,,, +"15823.000000","57.855000","15823.000000","57.855000","15823.000000","57.855000",,,,,,,,,,,,,,"41.000000","8512.000000","7007.000000","47.000000","8512.000000","8512.000000",,,,,,,,,,,"7125864.000000","8928124.000000","478736.000000","0.000000","66573612.000000","0.000000","90400660.000000",,"3753872.000000","27829844.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000",,,,,,,,"262.000000","9714.000000",,,,,,,,,,,"4078.000000","747.000000","832.000000","899.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","642.000000","661.000000","754.000000","758.000000","792.000000","160.000000","6000.000000",,"8973714.000000",,,,, +"15444.000000","57.250000","15444.000000","57.250000","15444.000000","57.250000",,,,,,,,,,,,,,"45.000000","6705.000000","5485.000000","52.000000","6705.000000","6705.000000",,,,,,,,,,,"7084376.000000","8634976.000000","478736.000000","0.000000","66557184.000000","0.000000","90401116.000000",,"3753872.000000","27844976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000",,,,,,,,"210.000000","7668.000000",,,,,,,,,,,"4082.000000","747.000000","764.000000","876.000000","1061.000000","1116.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","595.000000","652.000000","754.000000","693.000000","784.000000","160.000000","6000.000000",,"8973734.000000",,,,, +"15909.000000","57.970000","15909.000000","57.970000","15909.000000","57.970000",,,,,,,,,,,,,,"41.000000","6989.500000","5938.000000","45.000000","6989.500000","6989.500000",,,,,,,,,,,"6554424.000000","8069380.000000","478736.000000","0.000000","66534020.000000","0.000000","90400596.000000",,"3753872.000000","27866756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000",,,,,,,,"212.000000","7787.000000",,,,,,,,,,,"3977.000000","746.000000","667.000000","850.000000","1061.000000","742.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","562.000000","639.000000","754.000000","635.000000","764.000000","160.000000","6000.000000",,"8973754.000000",,,,, +"17603.000000","60.615000","17603.000000","60.615000","17603.000000","60.615000",,,,,,,,,,,,,,"37.000000","8031.000000","7193.000000","40.000000","8031.000000","8031.000000",,,,,,,,,,,"6785296.000000","8384128.000000","478736.000000","0.000000","66514552.000000","0.000000","90400780.000000",,"3753872.000000","27906332.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000",,,,,,,,"224.000000","8607.000000",,,,,,,,,,,"4201.000000","746.000000","695.000000","835.000000","1061.000000","826.000000","1135.000000","0.000000","0.000000","0.000000","600.000000","586.000000","636.000000","742.000000","731.000000","764.000000","160.000000","6000.000000",,"8973774.000000",,,,, +"19648.000000","63.805000","19648.000000","63.805000","19648.000000","63.805000",,,,,,,,,,,,,,"43.000000","9555.500000","9254.000000","14.000000","9555.500000","9555.500000",,,,,,,,,,,"7036952.000000","8656760.000000","478736.000000","0.000000","66498300.000000","0.000000","90400780.000000",,"3753872.000000","27917764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000",,,,,,,,"169.000000","9645.000000",,,,,,,,,,,"4113.000000","749.000000","767.000000","853.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","601.000000","638.000000","647.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973794.000000",,,,, +"17387.000000","60.270000","17387.000000","60.270000","17387.000000","60.270000",,,,,,,,,,,,,,"42.000000","9569.000000","9510.000000","85.000000","9569.000000","9569.000000",,,,,,,,,,,"7382776.000000","8887160.000000","478736.000000","0.000000","66501864.000000","0.000000","90400780.000000",,"3753872.000000","27929560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000",,,,,,,,"190.000000","9396.000000",,,,,,,,,,,"4216.000000","748.000000","787.000000","846.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","602.000000","648.000000","645.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973814.000000",,,,, +"19858.000000","64.130000","19858.000000","64.130000","19858.000000","64.130000",,,,,,,,,,,,,,"100.000000","10929.500000","10646.000000","9.000000","10929.500000","10929.500000",,,,,,,,,,,"7382776.000000","8803276.000000","478736.000000","0.000000","66488180.000000","0.000000","90400780.000000",,"3753872.000000","27942036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000",,,,,,,,"222.000000","10891.000000",,,,,,,,,,,"4344.000000","753.000000","861.000000","866.000000","1061.000000","996.000000","1135.000000","0.000000","0.000000","0.000000","605.000000","688.000000","658.000000","758.000000","795.000000","784.000000","160.000000","6000.000000",,"8973834.000000",,,,, +"19171.000000","63.045000","19171.000000","63.045000","19171.000000","63.045000",,,,,,,,,,,,,,"47.000000","10929.000000","9672.000000","20.000000","10929.000000","10929.000000",,,,,,,,,,,"7089868.000000","8657172.000000","478736.000000","0.000000","66461556.000000","0.000000","90401472.000000",,"3753872.000000","27922104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000",,,,,,,,"292.000000","11846.000000",,,,,,,,,,,"4361.000000","758.000000","832.000000","874.000000","1061.000000","1011.000000","1135.000000","0.000000","0.000000","0.000000","609.000000","685.000000","666.000000","759.000000","824.000000","792.000000","160.000000","6000.000000",,"8973854.000000",,,,, +"18785.000000","62.430000","18785.000000","62.430000","18785.000000","62.430000",,,,,,,,,,,,,,"323.000000","14527.000000","13857.000000","28.000000","14527.000000","14527.000000",,,,,,,,,,,"6276576.000000","7938048.000000","478736.000000","0.000000","66443380.000000","0.000000","90400516.000000",,"3753872.000000","27992316.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000",,,,,,,,"521.000000","14352.000000",,,,,,,,,,,"4239.000000","758.000000","881.000000","868.000000","1035.000000","1011.000000","1116.000000","0.000000","0.000000","0.000000","610.000000","704.000000","666.000000","758.000000","824.000000","784.000000","160.000000","6000.000000",,"8973874.000000",,,,, +"19888.000000","64.150000","19888.000000","64.150000","19888.000000","64.150000",,,,,,,,,,,,,,"40.000000","12011.500000","11763.000000","8.000000","12011.500000","12011.500000",,,,,,,,,,,"6129772.000000","7822132.000000","478736.000000","0.000000","66434964.000000","0.000000","90400516.000000",,"3753872.000000","27999556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000",,,,,,,,"215.000000","12005.000000",,,,,,,,,,,"4461.000000","763.000000","854.000000","832.000000","1035.000000","1011.000000","1018.000000","0.000000","0.000000","0.000000","614.000000","699.000000","665.000000","763.000000","824.000000","774.000000","160.000000","6000.000000",,"8973894.000000",,,,, +"21815.000000","67.160000","21815.000000","67.160000","21815.000000","67.160000",,,,,,,,,,,,,,"36.000000","10039.500000","9719.000000","11.000000","10039.500000","10039.500000",,,,,,,,,,,"5962008.000000","7486596.000000","478736.000000","0.000000","66413840.000000","0.000000","90400524.000000",,"3753872.000000","28019336.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000",,,,,,,,"172.000000","10151.000000",,,,,,,,,,,"4634.000000","770.000000","933.000000","846.000000","1069.000000","1123.000000","1069.000000","0.000000","0.000000","0.000000","619.000000","721.000000","672.000000","769.000000","823.000000","792.000000","160.000000","6000.000000",,"8973914.000000",,,,, +"21180.000000","66.155000","21180.000000","66.155000","21180.000000","66.155000",,,,,,,,,,,,,,"43.000000","10062.500000","9899.000000","6.000000","10062.500000","10062.500000",,,,,,,,,,,"5642296.000000","7250756.000000","478736.000000","0.000000","66395192.000000","0.000000","90400516.000000",,"3753872.000000","28001924.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000",,,,,,,,"172.000000","10011.000000",,,,,,,,,,,"4587.000000","778.000000","960.000000","837.000000","1069.000000","1123.000000","1045.000000","0.000000","0.000000","0.000000","624.000000","762.000000","673.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973934.000000",,,,, +"20150.000000","64.535000","20150.000000","64.535000","20150.000000","64.535000",,,,,,,,,,,,,,"41.000000","12700.500000","12448.000000","32.000000","12700.500000","12700.500000",,,,,,,,,,,"5873232.000000","7586552.000000","478736.000000","0.000000","66384188.000000","0.000000","90400768.000000",,"3753872.000000","28012104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000",,,,,,,,"556.000000","12354.000000",,,,,,,,,,,"4095.000000","789.000000","1022.000000","853.000000","1084.000000","1221.000000","1045.000000","0.000000","0.000000","0.000000","629.000000","757.000000","674.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973954.000000",,,,, +"21027.000000","65.905000","21027.000000","65.905000","21027.000000","65.905000",,,,,,,,,,,,,,"127.000000","11650.000000","11007.000000","4.000000","11650.000000","11650.000000",,,,,,,,,,,"5726432.000000","7565576.000000","478736.000000","0.000000","66377820.000000","0.000000","90400768.000000",,"3753872.000000","28017196.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000",,,,,,,,"296.000000","11869.000000",,,,,,,,,,,"4228.000000","797.000000","1024.000000","864.000000","1123.000000","1221.000000","1116.000000","0.000000","0.000000","0.000000","633.000000","751.000000","678.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973974.000000",,,,, +"19201.000000","63.045000","19201.000000","63.045000","19201.000000","63.045000",,,,,,,,,,,,,,"44.000000","11861.000000","11817.000000","47.000000","11861.000000","11861.000000",,,,,,,,,,,"6055828.000000","7727204.000000","478736.000000","0.000000","66373492.000000","0.000000","90400596.000000",,"3753872.000000","28021692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000",,,,,,,,"222.000000",,,,,,,,,,,,"4343.000000","805.000000","1046.000000","868.000000","1124.000000","1221.000000","1123.000000","0.000000","0.000000","0.000000","637.000000","728.000000","681.000000","784.000000","794.000000","803.000000","160.000000","6000.000000",,"8973994.000000",,,,, +"20270.000000","64.715000","20270.000000","64.715000","20270.000000","64.715000",,,,,,,,,,,,,,"1394.000000","14765.500000","14284.000000","10.000000","14765.500000","14765.500000",,,,,,,,,,,"6139968.000000","7685520.000000","478736.000000","0.000000","66358664.000000","0.000000","90400848.000000",,"3753872.000000","28045232.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000",,,,,,,,"369.000000","13483.000000",,,,,,,,,,,"4326.000000","814.000000","1034.000000","893.000000","1124.000000","1178.000000","1123.000000","0.000000","0.000000","0.000000","640.000000","730.000000","692.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974014.000000",,,,, +"19160.000000","62.970000","19160.000000","62.970000","19160.000000","62.970000",,,,,,,,,,,,,,"12606.000000","38870.500000","24791.000000","12.000000","38870.500000","38870.500000",,,,,,,,,,,"6098024.000000","8000088.000000","478736.000000","0.000000","66354808.000000","0.000000","90400848.000000",,"3753872.000000","28075248.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000",,,,,,,,"14163.000000","26179.000000",,,,,,,,,,,"4257.000000","820.000000","956.000000","903.000000","1124.000000","1138.000000","1123.000000","0.000000","0.000000","0.000000","644.000000","701.000000","699.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974034.000000",,,,, +"18168.000000","61.415000","18168.000000","61.415000","18168.000000","61.415000",,,,,,,,,,,,,,"1158.000000","14030.000000","12237.000000","3.000000","14030.000000","14030.000000",,,,,,,,,,,"5972568.000000","7843752.000000","478736.000000","0.000000","66340876.000000","0.000000","90400800.000000",,"3753872.000000","28023964.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000",,,,,,,,"1368.000000","13295.000000",,,,,,,,,,,"4168.000000","826.000000","925.000000","920.000000","1124.000000","1075.000000","1123.000000","0.000000","0.000000","0.000000","646.000000","687.000000","706.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974054.000000",,,,, +"18140.000000","61.365000","18140.000000","61.365000","18140.000000","61.365000",,,,,,,,,,,,,,"755.000000","13540.000000","11884.000000","5.000000","13540.000000","13540.000000",,,,,,,,,,,"5804796.000000","7800652.000000","478736.000000","0.000000","66337688.000000","0.000000","90400800.000000",,"3753872.000000","28027636.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000",,,,,,,,"2511.000000","11929.000000",,,,,,,,,,,"4278.000000","835.000000","865.000000","927.000000","1124.000000","1060.000000","1123.000000","0.000000","0.000000","0.000000","652.000000","668.000000","708.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974074.000000",,,,, +"18893.000000","62.545000","18893.000000","62.545000","18893.000000","62.545000",,,,,,,,,,,,,,"34.000000","44033.500000","33021.000000","74.000000","44033.500000","44033.500000",,,,,,,,,,,"5993540.000000","7653852.000000","478736.000000","0.000000","66330992.000000","0.000000","90400800.000000",,"3753872.000000","28050320.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000",,,,,,,,"20719.000000","34292.000000",,,,,,,,,,,"4087.000000","844.000000","913.000000","932.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","656.000000","675.000000","706.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974094.000000",,,,, +"18231.000000","61.500000","18231.000000","61.500000","18231.000000","61.500000",,,,,,,,,,,,,,"39.000000","42689.500000","33547.000000","66.000000","42689.500000","42689.500000",,,,,,,,,,,"6491116.000000","7947268.000000","478736.000000","0.000000","66326492.000000","0.000000","90400616.000000",,"3753872.000000","28045376.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000",,,,,,,,"16475.000000","35318.000000",,,,,,,,,,,"4286.000000","848.000000","860.000000","934.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","658.000000","656.000000","707.000000","792.000000","733.000000","803.000000","160.000000","6000.000000",,"8974114.000000",,,,, +"19226.000000","63.065000","19226.000000","63.065000","19226.000000","63.065000",,,,,,,,,,,,,,"47.000000","53591.500000","49114.000000","35.000000","53591.500000","53591.500000",,,,,,,,,,,"7099456.000000","8681440.000000","478736.000000","0.000000","66328416.000000","0.000000","90400788.000000",,"3753872.000000","28022012.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000",,,,,,,,"10296.000000","47725.000000",,,,,,,,,,,"4371.000000","858.000000","904.000000","936.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","664.000000","679.000000","707.000000","794.000000","821.000000","805.000000","160.000000","6000.000000",,"8974134.000000",,,,, +"18973.000000","62.660000","18973.000000","62.660000","18973.000000","62.660000",,,,,,,,,,,,,,"726.000000","27290.000000","20867.000000","14.000000","27290.000000","27290.000000",,,,,,,,,,,"6826828.000000","8366868.000000","478736.000000","0.000000","66313964.000000","0.000000","90400788.000000",,"3753872.000000","27954716.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000",,,,,,,,"9430.000000","23556.000000",,,,,,,,,,,"4329.000000","863.000000","861.000000","938.000000","1135.000000","1118.000000","1138.000000","0.000000","0.000000","0.000000","667.000000","681.000000","706.000000","794.000000","821.000000","803.000000","160.000000","6000.000000",,"8974154.000000",,,,, +"21758.000000","67.020000","21758.000000","67.020000","21758.000000","67.020000",,,,,,,,,,,,,,"442.000000","38118.000000","37676.000000","55.000000","38118.000000","38118.000000",,,,,,,,,,,"6675316.000000","8110860.000000","478736.000000","0.000000","66311236.000000","0.000000","90400800.000000",,"3753872.000000","28006372.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000",,,,,,,,"9281.000000",,,,,,,,,,,,"4365.000000","874.000000","964.000000","951.000000","1138.000000","1353.000000","1152.000000","0.000000","0.000000","0.000000","671.000000","719.000000","710.000000","795.000000","861.000000","805.000000","160.000000","6000.000000",,"8974174.000000",,,,, +"21069.000000","65.935000","21069.000000","65.935000","21069.000000","65.935000",,,,,,,,,,,,,,"48.000000","20954.000000","19654.000000","14.000000","20954.000000","20954.000000",,,,,,,,,,,"6906000.000000","8173768.000000","478736.000000","0.000000","66300124.000000","0.000000","90400788.000000",,"3753872.000000","28015492.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000",,,,,,,,"296.000000","21908.000000",,,,,,,,,,,"4547.000000","884.000000","1031.000000","971.000000","1152.000000","1434.000000","1178.000000","0.000000","0.000000","0.000000","674.000000","750.000000","717.000000","795.000000","923.000000","823.000000","160.000000","6000.000000",,"8974194.000000",,,,, +"19536.000000","63.525000","19536.000000","63.525000","19536.000000","63.525000",,,,,,,,,,,,,,"95.000000","10344.500000","10132.000000","16.000000","10344.500000","10344.500000",,,,,,,,,,,"6654340.000000","8006000.000000","478736.000000","0.000000","66284512.000000","0.000000","90400788.000000",,"3753872.000000","28128024.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000",,,,,,,,"179.000000","10282.000000",,,,,,,,,,,"4211.000000","894.000000","1116.000000","974.000000","1173.000000","1434.000000","1221.000000","0.000000","0.000000","0.000000","676.000000","745.000000","711.000000","795.000000","923.000000","821.000000","160.000000","6000.000000",,"8974214.000000",,,,, +"22583.000000","68.295000","22583.000000","68.295000","22583.000000","68.295000",,,,,,,,,,,,,,"93.000000","11792.500000","11442.000000","2.000000","11792.500000","11792.500000",,,,,,,,,,,"6868988.000000","8163660.000000","478736.000000","0.000000","66268764.000000","0.000000","90400584.000000",,"3753872.000000","28096188.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000",,,,,,,,"252.000000","11797.000000",,,,,,,,,,,"4399.000000","907.000000","1218.000000","1003.000000","1220.000000","1510.000000","1353.000000","0.000000","0.000000","0.000000","679.000000","763.000000","711.000000","796.000000","923.000000","821.000000","160.000000","6000.000000",,"8974234.000000",,,,, +"21071.000000","65.925000","21071.000000","65.925000","21071.000000","65.925000",,,,,,,,,,,,,,"121.000000","12970.000000","12580.000000","4.000000","12970.000000","12970.000000",,,,,,,,,,,"6952452.000000","8456844.000000","478736.000000","0.000000","66268872.000000","0.000000","90400584.000000",,"3753872.000000","28094164.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000",,,,,,,,"483.000000","12755.000000",,,,,,,,,,,"4456.000000","929.000000","1389.000000","1045.000000","1281.000000","1694.000000","1496.000000","0.000000","0.000000","0.000000","682.000000","759.000000","717.000000","812.000000","919.000000","828.000000","160.000000","6000.000000",,"8974254.000000",,,,, +"21323.000000","66.320000","21323.000000","66.320000","21323.000000","66.320000",,,,,,,,,,,,,,"36.000000","10835.000000","10555.000000","4.000000","10835.000000","10835.000000",,,,,,,,,,,"7036336.000000","8876276.000000","478736.000000","0.000000","66277172.000000","0.000000","90400584.000000",,"3753872.000000","28061908.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000",,,,,,,,"274.000000","10804.000000",,,,,,,,,,,"4292.000000","947.000000","1489.000000","1067.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","688.000000","789.000000","718.000000","817.000000","919.000000","828.000000","160.000000","6000.000000",,"8974274.000000",,,,, +"24477.000000","71.250000","24477.000000","71.250000","24477.000000","71.250000",,,,,,,,,,,,,,"43.000000","12026.500000","11522.000000","14.000000","12026.500000","12026.500000",,,,,,,,,,,"7057308.000000","8917068.000000","478736.000000","0.000000","66251640.000000","0.000000","90400584.000000",,"3753872.000000","28057168.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000",,,,,,,,"216.000000","12270.000000",,,,,,,,,,,"4807.000000","958.000000","1432.000000","1080.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","694.000000","813.000000","728.000000","820.000000","980.000000","861.000000","160.000000","6000.000000",,"8974294.000000",,,,, +"20439.000000","64.915000","20439.000000","64.915000","20439.000000","64.915000",,,,,,,,,,,,,,"44.000000","12644.500000","11522.000000","7.000000","12644.500000","12644.500000",,,,,,,,,,,"6832316.000000","8733596.000000","478736.000000","0.000000","66233040.000000","0.000000","90400720.000000",,"3753872.000000","28074708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000",,,,,,,,"300.000000","13423.000000",,,,,,,,,,,"4121.000000","966.000000","1335.000000","1105.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","695.000000","802.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974314.000000",,,,, +"18532.000000","61.930000","18532.000000","61.930000","18532.000000","61.930000",,,,,,,,,,,,,,"39.000000","13940.000000","13021.000000","15.000000","13940.000000","13940.000000",,,,,,,,,,,"6350720.000000","7979368.000000","478736.000000","0.000000","66229136.000000","0.000000","90401464.000000",,"3753872.000000","28056656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000",,,,,,,,"630.000000","14188.000000",,,,,,,,,,,"4375.000000","961.000000","1142.000000","1104.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","694.000000","771.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974334.000000",,,,, +"19674.000000","63.710000","19674.000000","63.710000","19674.000000","63.710000",,,,,,,,,,,,,,"37.000000","14132.000000","14020.000000","7.000000","14132.000000","14132.000000",,,,,,,,,,,"6224024.000000","7800816.000000","478736.000000","0.000000","66220316.000000","0.000000","90400596.000000",,"3753872.000000","28067036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000",,,,,,,,"269.000000","13937.000000",,,,,,,,,,,"4319.000000","957.000000","1026.000000","1100.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","692.000000","706.000000","731.000000","817.000000","795.000000","861.000000","160.000000","6000.000000",,"8974354.000000",,,,, +"19194.000000","62.955000","19194.000000","62.955000","19194.000000","62.955000",,,,,,,,,,,,,,"44.000000","13790.500000","12837.000000","3.000000","13790.500000","13790.500000",,,,,,,,,,,"5783624.000000","7350140.000000","478736.000000","0.000000","66215984.000000","0.000000","90400596.000000",,"3753872.000000","28121452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000",,,,,,,,"299.000000","14399.000000",,,,,,,,,,,"4291.000000","959.000000","906.000000","1113.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","693.000000","689.000000","736.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974374.000000",,,,, +"17271.000000","59.940000","17271.000000","59.940000","17271.000000","59.940000",,,,,,,,,,,,,,"90.000000","12372.500000","11466.000000","8.000000","12372.500000","12372.500000",,,,,,,,,,,"6244996.000000","7790544.000000","478736.000000","0.000000","66199796.000000","0.000000","90400596.000000",,"3753872.000000","28098984.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000",,,,,,,,"328.000000","12860.000000",,,,,,,,,,,"4092.000000","962.000000","900.000000","1102.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","678.000000","733.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974394.000000",,,,, +"19407.000000","63.275000","19407.000000","63.275000","19407.000000","63.275000",,,,,,,,,,,,,,"63.000000","13680.500000","13328.000000","44.000000","13680.500000","13680.500000",,,,,,,,,,,"6454756.000000","7927484.000000","478736.000000","0.000000","66186112.000000","0.000000","90400644.000000",,"3753872.000000","28114512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000",,,,,,,,"234.000000","13735.000000",,,,,,,,,,,"4268.000000","964.000000","919.000000","1112.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","683.000000","737.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974414.000000",,,,, +"18209.000000","61.395000","18209.000000","61.395000","18209.000000","61.395000",,,,,,,,,,,,,,"2207.000000","13459.000000","12029.000000","4.000000","13459.000000","13459.000000",,,,,,,,,,,"6260032.000000","7827344.000000","478736.000000","0.000000","66182724.000000","0.000000","90400644.000000",,"3753872.000000","28116556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000",,,,,,,,"611.000000","12071.000000",,,,,,,,,,,"4250.000000","969.000000","861.000000","1105.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","699.000000","663.000000","732.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974434.000000",,,,, +"17456.000000","60.210000","17456.000000","60.210000","17456.000000","60.210000",,,,,,,,,,,,,,"47.000000","19418.000000","19371.000000","26.000000","19418.000000","19418.000000",,,,,,,,,,,"5861576.000000","7312960.000000","478736.000000","0.000000","66163652.000000","0.000000","90400644.000000",,"3753872.000000","28155648.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000",,,,,,,,"2105.000000",,,,,,,,,,,,"4367.000000","971.000000","855.000000","1100.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","701.000000","665.000000","730.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974454.000000",,,,, +"22443.000000","68.020000","22443.000000","68.020000","22443.000000","68.020000",,,,,,,,,,,,,,"329.000000","15043.500000","14413.000000","5.000000","15043.500000","15043.500000",,,,,,,,,,,"5693752.000000","7208052.000000","478736.000000","0.000000","66165924.000000","0.000000","90400592.000000",,"3753872.000000","28161480.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000",,,,,,,,"539.000000","14806.000000",,,,,,,,,,,"4441.000000","973.000000","914.000000","1102.000000","1353.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","703.000000","695.000000","732.000000","819.000000","873.000000","866.000000","160.000000","6000.000000",,"8974474.000000",,,,, +"19048.000000","62.695000","19048.000000","62.695000","19048.000000","62.695000",,,,,,,,,,,,,,"103.000000","12770.000000","12457.000000","6.000000","12770.000000","12770.000000",,,,,,,,,,,"5589020.000000","7438856.000000","478736.000000","0.000000","66149564.000000","0.000000","90400712.000000",,"3753872.000000","28134092.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000",,,,,,,,"207.000000","12771.000000",,,,,,,,,,,"4291.000000","966.000000","982.000000","1095.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","714.000000","725.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974494.000000",,,,, +"18933.000000","62.510000","18933.000000","62.510000","18933.000000","62.510000",,,,,,,,,,,,,,"52.000000","11522.500000","11427.000000","3.000000","11522.500000","11522.500000",,,,,,,,,,,"5924564.000000","7711488.000000","478736.000000","0.000000","66141936.000000","0.000000","90400712.000000",,"3753872.000000","28109444.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000",,,,,,,,"203.000000","11363.000000",,,,,,,,,,,"4357.000000","966.000000","1001.000000","1077.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","719.000000","724.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974514.000000",,,,, +"20299.000000","64.650000","20299.000000","64.650000","20299.000000","64.650000",,,,,,,,,,,,,,"43.000000","14504.000000","14141.000000","7.000000","14504.000000","14504.000000",,,,,,,,,,,"6323020.000000","8068004.000000","478736.000000","0.000000","66139132.000000","0.000000","90400760.000000",,"3753872.000000","28111000.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000",,,,,,,,"228.000000","14595.000000",,,,,,,,,,,"4392.000000","961.000000","932.000000","1044.000000","1330.000000","1274.000000","1496.000000","0.000000","0.000000","0.000000","701.000000","701.000000","720.000000","819.000000","797.000000","828.000000","160.000000","6000.000000",,"8974534.000000",,,,, +"22465.000000","68.040000","22465.000000","68.040000","22465.000000","68.040000",,,,,,,,,,,,,,"42.000000","15298.500000","14752.000000","8.000000","15298.500000","15298.500000",,,,,,,,,,,"6406900.000000","7984124.000000","478736.000000","0.000000","66135552.000000","0.000000","90400760.000000",,"3753872.000000","28264520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000",,,,,,,,"634.000000","15168.000000",,,,,,,,,,,"4372.000000","969.000000","958.000000","1009.000000","1330.000000","1129.000000","1330.000000","0.000000","0.000000","0.000000","704.000000","738.000000","721.000000","821.000000","833.000000","828.000000","160.000000","6000.000000",,"8974554.000000",,,,, +"18826.000000","62.335000","18826.000000","62.335000","18826.000000","62.335000",,,,,,,,,,,,,,"36.000000","12201.500000","12084.000000","6.000000","12201.500000","12201.500000",,,,,,,,,,,"6454400.000000","8052592.000000","478736.000000","0.000000","66118764.000000","0.000000","90400760.000000",,"3753872.000000","28290404.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000",,,,,,,,"215.000000","12067.000000",,,,,,,,,,,"4193.000000","968.000000","960.000000","972.000000","1330.000000","1129.000000","1274.000000","0.000000","0.000000","0.000000","704.000000","743.000000","715.000000","821.000000","833.000000","823.000000","160.000000","6000.000000",,"8974574.000000",,,,, +"20902.000000","65.575000","20902.000000","65.575000","20902.000000","65.575000",,,,,,,,,,,,,,"52.000000","12493.500000","12005.000000","36.000000","12493.500000","12493.500000",,,,,,,,,,,"6328460.000000","7926648.000000","478736.000000","0.000000","66103288.000000","0.000000","90400648.000000",,"3753872.000000","28303364.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000",,,,,,,,"219.000000","12709.000000",,,,,,,,,,,"4300.000000","969.000000","999.000000","958.000000","1330.000000","1154.000000","1235.000000","0.000000","0.000000","0.000000","705.000000","753.000000","708.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974594.000000",,,,, +"19178.000000","62.875000","19178.000000","62.875000","19178.000000","62.875000",,,,,,,,,,,,,,"40.000000","12376.000000","12156.000000","8.000000","12376.000000","12376.000000",,,,,,,,,,,"5972092.000000","7958820.000000","478736.000000","0.000000","66099072.000000","0.000000","90400788.000000",,"3753872.000000","28314460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000",,,,,,,,"233.000000","12322.000000",,,,,,,,,,,"4369.000000","977.000000","950.000000","931.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","709.000000","707.000000","702.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974614.000000",,,,, +"16589.000000","58.825000","16589.000000","58.825000","16589.000000","58.825000",,,,,,,,,,,,,,"52.000000","12705.500000","12285.000000","2.000000","12705.500000","12705.500000",,,,,,,,,,,"5569372.000000","7566380.000000","478732.000000","0.000000","66114772.000000","0.000000","90401256.000000",,"3753872.000000","28329764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000",,,,,,,,"242.000000","12831.000000",,,,,,,,,,,"4177.000000","977.000000","904.000000","924.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","710.000000","681.000000","697.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974634.000000",,,,, +"20327.000000","64.675000","20327.000000","64.675000","20327.000000","64.675000",,,,,,,,,,,,,,"41.000000","13142.500000","12219.000000","28.000000","13142.500000","13142.500000",,,,,,,,,,,"5652792.000000","7691744.000000","478732.000000","0.000000","66105824.000000","0.000000","90400792.000000",,"3753872.000000","28338252.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000",,,,,,,,"299.000000","13726.000000",,,,,,,,,,,"4398.000000","983.000000","889.000000","930.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","712.000000","667.000000","700.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974654.000000",,,,, +"18482.000000","61.780000","18482.000000","61.780000","18482.000000","61.780000",,,,,,,,,,,,,,"48.000000","11704.500000","11120.000000","3.000000","11704.500000","11704.500000",,,,,,,,,,,"5338208.000000","7596784.000000","478732.000000","0.000000","66088376.000000","0.000000","90400784.000000",,"3753872.000000","28357712.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000",,,,,,,,"229.000000","12012.000000",,,,,,,,,,,"4296.000000","989.000000","886.000000","927.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","670.000000","698.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974674.000000",,,,, +"16048.000000","57.955000","16048.000000","57.955000","16048.000000","57.955000",,,,,,,,,,,,,,"40.000000","10826.000000","10635.000000","11.000000","10826.000000","10826.000000",,,,,,,,,,,"5426816.000000","7622476.000000","478732.000000","0.000000","66072740.000000","0.000000","90400784.000000",,"3753872.000000","28324028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000",,,,,,,,"195.000000","10781.000000",,,,,,,,,,,"4103.000000","985.000000","887.000000","921.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","711.000000","667.000000","695.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974694.000000",,,,, +"20692.000000","65.225000","20692.000000","65.225000","20692.000000","65.225000",,,,,,,,,,,,,,"47.000000","11596.500000","11291.000000","4.000000","11596.500000","11596.500000",,,,,,,,,,,"5258892.000000","7580384.000000","478732.000000","0.000000","66061664.000000","0.000000","90400632.000000",,"3753872.000000","28387452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000",,,,,,,,"222.000000","11631.000000",,,,,,,,,,,"4323.000000","991.000000","895.000000","926.000000","1330.000000","1150.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","679.000000","699.000000","823.000000","880.000000","823.000000","160.000000","6000.000000",,"8974714.000000",,,,, +"20784.000000","65.370000","20784.000000","65.370000","20784.000000","65.370000",,,,,,,,,,,,,,"106.000000","12928.500000","12807.000000","10.000000","12928.500000","12928.500000",,,,,,,,,,,"4839464.000000","7077072.000000","478732.000000","0.000000","66063360.000000","0.000000","90400632.000000",,"3753872.000000","28361852.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000",,,,,,,,"261.000000","12682.000000",,,,,,,,,,,"4315.000000","993.000000","915.000000","938.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","715.000000","695.000000","705.000000","824.000000","880.000000","833.000000","160.000000","6000.000000",,"8974734.000000",,,,, +"17543.000000","60.285000","17543.000000","60.285000","17543.000000","60.285000",,,,,,,,,,,,,,"48.000000","11144.500000","10757.000000","4.000000","11144.500000","11144.500000",,,,,,,,,,,"4761136.000000","7244848.000000","478732.000000","0.000000","66038548.000000","0.000000","90400632.000000",,"3753872.000000","28385508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000",,,,,,,,"201.000000","11282.000000",,,,,,,,,,,"4143.000000","993.000000","950.000000","940.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","714.000000","715.000000","705.000000","823.000000","880.000000","833.000000","160.000000","6000.000000",,"8974754.000000",,,,, +"20011.000000","64.145000","20011.000000","64.145000","20011.000000","64.145000",,,,,,,,,,,,,,"333.000000","15312.000000","14979.000000","14.000000","15312.000000","15312.000000",,,,,,,,,,,"5138692.000000","7391716.000000","478732.000000","0.000000","66026244.000000","0.000000","90400700.000000",,"3753872.000000","28397936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000",,,,,,,,"524.000000",,,,,,,,,,,,"4051.000000","996.000000","956.000000","934.000000","1330.000000","1214.000000","1154.000000","0.000000","0.000000","0.000000","714.000000","703.000000","700.000000","823.000000","854.000000","823.000000","160.000000","6000.000000",,"8974774.000000",,,,, +"19742.000000","63.725000","19742.000000","63.725000","19742.000000","63.725000",,,,,,,,,,,,,,"47.000000","14213.500000","13658.000000","122.000000","14213.500000","14213.500000",,,,,,,,,,,"5285496.000000","7056168.000000","478732.000000","0.000000","66026388.000000","0.000000","90400700.000000",,"3753872.000000","28370516.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000",,,,,,,,"213.000000","14507.000000",,,,,,,,,,,"4264.000000","1010.000000","1105.000000","963.000000","1353.000000","1726.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","695.000000","701.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974794.000000",,,,, +"20689.000000","65.195000","20689.000000","65.195000","20689.000000","65.195000",,,,,,,,,,,,,,"217.000000","12624.500000","11847.000000","23.000000","12624.500000","12624.500000",,,,,,,,,,,"5426744.000000","6977836.000000","478732.000000","0.000000","66012668.000000","0.000000","90400700.000000",,"3753872.000000","28382724.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000",,,,,,,,"336.000000","12848.000000",,,,,,,,,,,"4316.000000","1010.000000","1197.000000","980.000000","1353.000000","1726.000000","1232.000000","0.000000","0.000000","0.000000","713.000000","718.000000","705.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974814.000000",,,,, +"20624.000000","65.095000","20624.000000","65.095000","20624.000000","65.095000",,,,,,,,,,,,,,"45.000000","9517.500000","9619.000000","8.000000","9517.500000","9517.500000",,,,,,,,,,,"5300936.000000","6956884.000000","478732.000000","0.000000","66012964.000000","0.000000","90400724.000000",,"3753872.000000","28385580.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000",,,,,,,,"159.000000","9212.000000",,,,,,,,,,,"4282.000000","1014.000000","1240.000000","996.000000","1353.000000","1726.000000","1233.000000","0.000000","0.000000","0.000000","712.000000","730.000000","706.000000","821.000000","788.000000","823.000000","160.000000","6000.000000",,"8974834.000000",,,,, +"22552.000000","68.120000","22552.000000","68.120000","22552.000000","68.120000",,,,,,,,,,,,,,"42.000000","13303.000000","12556.000000","8.000000","13303.000000","13303.000000",,,,,,,,,,,"5384816.000000","7187568.000000","478732.000000","0.000000","66023192.000000","0.000000","90400724.000000",,"3753872.000000","28376192.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000",,,,,,,,"572.000000","13436.000000",,,,,,,,,,,"4360.000000","1021.000000","1190.000000","1009.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","715.000000","768.000000","707.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974854.000000",,,,, +"18429.000000","61.655000","18429.000000","61.655000","18429.000000","61.655000",,,,,,,,,,,,,,"48.000000","7702.000000","7618.000000","14.000000","7702.000000","7702.000000",,,,,,,,,,,"5243568.000000","7119520.000000","478732.000000","0.000000","66007376.000000","0.000000","90400724.000000",,"3753872.000000","28392452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000",,,,,,,,"153.000000","7584.000000",,,,,,,,,,,"4185.000000","1016.000000","1103.000000","1008.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","713.000000","746.000000","706.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974874.000000",,,,, +"16889.000000","59.245000","16889.000000","59.245000","16889.000000","59.245000",,,,,,,,,,,,,,"71.000000","16661.000000","15814.000000","13.000000","16661.000000","16661.000000",,,,,,,,,,,"5243568.000000","7329236.000000","478732.000000","0.000000","66007952.000000","0.000000","90400724.000000",,"3753872.000000","28398952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000",,,,,,,,"278.000000","17158.000000",,,,,,,,,,,"4142.000000","1010.000000","988.000000","994.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","711.000000","713.000000","698.000000","825.000000","855.000000","815.000000","160.000000","6000.000000",,"8974894.000000",,,,, +"16040.000000","57.920000","16040.000000","57.920000","16040.000000","57.920000",,,,,,,,,,,,,,"273.000000","9545.000000","7982.000000","19.000000","9545.000000","9545.000000",,,,,,,,,,,"5348424.000000","7245356.000000","478732.000000","0.000000","66019916.000000","0.000000","90400724.000000",,"3753872.000000","28384328.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000",,,,,,,,"562.000000","10273.000000",,,,,,,,,,,"4119.000000","1003.000000","775.000000","974.000000","1353.000000","977.000000","1260.000000","0.000000","0.000000","0.000000","707.000000","613.000000","688.000000","825.000000","734.000000","815.000000","160.000000","6000.000000",,"8974914.000000",,,,, +"14565.000000","55.600000","14565.000000","55.600000","14565.000000","55.600000",,,,,,,,,,,,,,"47.000000","6716.000000","6478.000000","17.000000","6716.000000","6716.000000",,,,,,,,,,,"5961316.000000","8293512.000000","478732.000000","0.000000","66002992.000000","0.000000","90400724.000000",,"3753872.000000","28335236.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000",,,,,,,,"159.000000","6747.000000",,,,,,,,,,,"4055.000000","999.000000","712.000000","970.000000","1353.000000","803.000000","1260.000000","0.000000","0.000000","0.000000","704.000000","570.000000","683.000000","825.000000","646.000000","815.000000","160.000000","6000.000000",,"8974934.000000",,,,, +"15675.000000","57.335000","15675.000000","57.335000","15675.000000","57.335000",,,,,,,,,,,,,,"113.000000","6189.500000","5940.000000","5.000000","6189.500000","6189.500000",,,,,,,,,,,"5961244.000000","8314416.000000","478732.000000","0.000000","65986496.000000","0.000000","90400652.000000",,"3753872.000000","28349048.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000",,,,,,,,"141.000000","6185.000000",,,,,,,,,,,"4313.000000","992.000000","651.000000","946.000000","1353.000000","788.000000","1260.000000","0.000000","0.000000","0.000000","702.000000","547.000000","674.000000","825.000000","599.000000","815.000000","160.000000","6000.000000",,"8974954.000000",,,,, +"14210.000000","55.025000","14210.000000","55.025000","14210.000000","55.025000",,,,,,,,,,,,,,"46.000000","4683.000000","4573.000000","4.000000","4683.000000","4683.000000",,,,,,,,,,,"5793476.000000","8000128.000000","478732.000000","0.000000","65975356.000000","0.000000","90400652.000000",,"3753872.000000","28441832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000",,,,,,,,"129.000000","4616.000000",,,,,,,,,,,"4010.000000","986.000000","598.000000","917.000000","1353.000000","711.000000","1260.000000","0.000000","0.000000","0.000000","698.000000","529.000000","660.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974974.000000",,,,, +"14296.000000","55.160000","14296.000000","55.160000","14296.000000","55.160000",,,,,,,,,,,,,,"53.000000","4920.000000","4712.000000","6.000000","4920.000000","4920.000000",,,,,,,,,,,"5977504.000000","7790836.000000","478732.000000","0.000000","65957492.000000","0.000000","90400652.000000",,"3753872.000000","28492036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000",,,,,,,,"124.000000","4950.000000",,,,,,,,,,,"4252.000000","978.000000","589.000000","910.000000","1353.000000","655.000000","1260.000000","0.000000","0.000000","0.000000","695.000000","530.000000","656.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974994.000000",,,,, +"14639.000000","55.685000","14639.000000","55.685000","14639.000000","55.685000",,,,,,,,,,,,,,"60.000000","6342.000000","6140.000000","5.000000","6342.000000","6342.000000",,,,,,,,,,,"6061392.000000","7811804.000000","478732.000000","0.000000","65941184.000000","0.000000","90400652.000000",,"3753872.000000","28507688.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000",,,,,,,,"146.000000","6338.000000",,,,,,,,,,,"4245.000000","975.000000","598.000000","886.000000","1353.000000","685.000000","1260.000000","0.000000","0.000000","0.000000","693.000000","526.000000","644.000000","825.000000","578.000000","810.000000","160.000000","6000.000000",,"8975014.000000",,,,, +"16389.000000","58.415000","16389.000000","58.415000","16389.000000","58.415000",,,,,,,,,,,,,,"43.000000","6495.000000","6498.000000","4.000000","6495.000000","6495.000000",,,,,,,,,,,"5935712.000000","7455440.000000","478732.000000","0.000000","65924356.000000","0.000000","90400800.000000",,"3753872.000000","28483148.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000",,,,,,,,"145.000000","6303.000000",,,,,,,,,,,"4102.000000","966.000000","610.000000","856.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","689.000000","541.000000","629.000000","825.000000","684.000000","809.000000","160.000000","6000.000000",,"8975034.000000",,,,, +"14824.000000","55.960000","14824.000000","55.960000","14824.000000","55.960000",,,,,,,,,,,,,,"47.000000","4612.000000","4747.000000","10.000000","4612.000000","4612.000000",,,,,,,,,,,"4745892.000000","6328524.000000","478732.000000","0.000000","65908200.000000","0.000000","90400800.000000",,"3753872.000000","28544812.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000",,,,,,,,"126.000000","4304.000000",,,,,,,,,,,"4268.000000","960.000000","595.000000","839.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","685.000000","534.000000","620.000000","825.000000","684.000000","788.000000","160.000000","6000.000000",,"8975054.000000",,,,, +"14754.000000","55.840000","14754.000000","55.840000","14754.000000","55.840000",,,,,,,,,,,,,,"332.000000","11483.500000","10425.000000","19.000000","11483.500000","11483.500000",,,,,,,,,,,"4703800.000000","6265468.000000","478732.000000","0.000000","65891432.000000","0.000000","90400652.000000",,"3753872.000000","28552504.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000",,,,,,,,"481.000000","11727.000000",,,,,,,,,,,"4228.000000","951.000000","603.000000","816.000000","1352.000000","733.000000","1260.000000","0.000000","0.000000","0.000000","681.000000","544.000000","612.000000","823.000000","684.000000","762.000000","160.000000","6000.000000",,"8975074.000000",,,,, +"17904.000000","60.780000","17904.000000","60.780000","17904.000000","60.780000",,,,,,,,,,,,,,"47.000000","7723.500000","7459.000000","7.000000","7723.500000","7723.500000",,,,,,,,,,,"5301280.000000","6731984.000000","478732.000000","0.000000","65899992.000000","0.000000","90400652.000000",,"3753872.000000","28494560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000",,,,,,,,"199.000000","7741.000000",,,,,,,,,,,"4287.000000","940.000000","645.000000","764.000000","1339.000000","939.000000","1233.000000","0.000000","0.000000","0.000000","677.000000","569.000000","604.000000","819.000000","716.000000","762.000000","160.000000","6000.000000",,"8975094.000000",,,,, +"13576.000000","53.995000","13576.000000","53.995000","13576.000000","53.995000",,,,,,,,,,,,,,"55.000000","4659.000000","4336.000000","5.000000","4659.000000","4659.000000",,,,,,,,,,,"5730976.000000","7439456.000000","478732.000000","0.000000","65886948.000000","0.000000","90400652.000000",,"3753872.000000","28542784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000",,,,,,,,"147.000000","4779.000000",,,,,,,,,,,"4052.000000","928.000000","642.000000","728.000000","1330.000000","939.000000","1200.000000","0.000000","0.000000","0.000000","673.000000","568.000000","590.000000","819.000000","716.000000","759.000000","160.000000","6000.000000",,"8975114.000000",,,,, +"15570.000000","57.115000","15570.000000","57.115000","15570.000000","57.115000",,,,,,,,,,,,,,"43.000000","4601.000000","3597.000000","4.000000","4601.000000","4601.000000",,,,,,,,,,,"5647276.000000","7418384.000000","478732.000000","0.000000","65876308.000000","0.000000","90400840.000000",,"3753872.000000","28554340.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000",,,,,,,,"217.000000","5344.000000",,,,,,,,,,,"4133.000000","910.000000","607.000000","689.000000","1280.000000","939.000000","977.000000","0.000000","0.000000","0.000000","667.000000","540.000000","574.000000","815.000000","716.000000","734.000000","160.000000","6000.000000",,"8975134.000000",,,,, +"18470.000000","61.650000","18470.000000","61.650000","18470.000000","61.650000",,,,,,,,,,,,,,"51.000000","9233.500000","8781.000000","23.000000","9233.500000","9233.500000",,,,,,,,,,,"5437560.000000","7250608.000000","478732.000000","0.000000","65874136.000000","0.000000","90400840.000000",,"3753872.000000","28477776.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000",,,,,,,,"551.000000","9083.000000",,,,,,,,,,,"4406.000000","889.000000","623.000000","650.000000","1246.000000","825.000000","803.000000","0.000000","0.000000","0.000000","664.000000","560.000000","563.000000","809.000000","741.000000","684.000000","160.000000","6000.000000",,"8975154.000000",,,,, +"16946.000000","59.260000","16946.000000","59.260000","16946.000000","59.260000",,,,,,,,,,,,,,"258.000000","7689.000000","7210.000000","3.000000","7689.000000","7689.000000",,,,,,,,,,,"4546812.000000","6103060.000000","478732.000000","0.000000","65863444.000000","0.000000","90401168.000000",,"3753872.000000","28402112.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000",,,,,,,,"327.000000","7581.000000",,,,,,,,,,,"4149.000000","874.000000","676.000000","643.000000","1233.000000","825.000000","795.000000","0.000000","0.000000","0.000000","660.000000","595.000000","559.000000","806.000000","741.000000","683.000000","160.000000","6000.000000",,"8975174.000000",,,,, +"14698.000000","55.735000","14698.000000","55.735000","14698.000000","55.735000",,,,,,,,,,,,,,"58.000000","6530.500000","6377.000000","6.000000","6530.500000","6530.500000",,,,,,,,,,,"4693152.000000","6291620.000000","478732.000000","0.000000","65854812.000000","0.000000","90400704.000000",,"3753872.000000","28409512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000",,,,,,,,"158.000000","6467.000000",,,,,,,,,,,"4190.000000","861.000000","698.000000","631.000000","1224.000000","825.000000","788.000000","0.000000","0.000000","0.000000","653.000000","612.000000","554.000000","795.000000","741.000000","683.000000","160.000000","6000.000000",,"8975194.000000",,,,, +"14571.000000","55.530000","14571.000000","55.530000","14571.000000","55.530000",,,,,,,,,,,,,,"49.000000","6825.500000","6772.000000","3.000000","6825.500000","6825.500000",,,,,,,,,,,"4546416.000000","6207796.000000","478732.000000","0.000000","65839916.000000","0.000000","90400764.000000",,"3753872.000000","28272768.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000",,,,,,,,"146.000000","6683.000000",,,,,,,,,,,"4257.000000","842.000000","624.000000","620.000000","1200.000000","804.000000","748.000000","0.000000","0.000000","0.000000","647.000000","550.000000","550.000000","788.000000","658.000000","683.000000","160.000000","6000.000000",,"8975214.000000",,,,, +"13856.000000","54.405000","13856.000000","54.405000","13856.000000","54.405000",,,,,,,,,,,,,,"49.000000","5170.000000","4826.000000","3.000000","5170.000000","5170.000000",,,,,,,,,,,"4263512.000000","5956140.000000","478728.000000","0.000000","65832732.000000","0.000000","90400768.000000",,"3753872.000000","28365620.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000",,,,,,,,"149.000000","5315.000000",,,,,,,,,,,"4211.000000","836.000000","572.000000","615.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","643.000000","515.000000","548.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975234.000000",,,,, +"12379.000000","52.090000","12379.000000","52.090000","12379.000000","52.090000",,,,,,,,,,,,,,"40.000000","5059.500000","4740.000000","4.000000","5059.500000","5059.500000",,,,,,,,,,,"4305452.000000","5956144.000000","478728.000000","0.000000","65828844.000000","0.000000","90400768.000000",,"3753872.000000","28367832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000",,,,,,,,"147.000000","5191.000000",,,,,,,,,,,"4136.000000","830.000000","555.000000","612.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","639.000000","496.000000","544.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975254.000000",,,,, +"13295.000000","53.520000","13295.000000","53.520000","13295.000000","53.520000",,,,,,,,,,,,,,"52.000000","6168.500000","6151.000000","8.000000","6168.500000","6168.500000",,,,,,,,,,,"4357304.000000","5913056.000000","478728.000000","0.000000","65821468.000000","0.000000","90400768.000000",,"3753872.000000","28589508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000",,,,,,,,"164.000000","5969.000000",,,,,,,,,,,"4011.000000","816.000000","523.000000","605.000000","1180.000000","675.000000","748.000000","0.000000","0.000000","0.000000","632.000000","469.000000","538.000000","787.000000","615.000000","683.000000","160.000000","6000.000000",,"8975274.000000",,,,, +"12982.000000","53.025000","12982.000000","53.025000","12982.000000","53.025000",,,,,,,,,,,,,,"53.000000","5785.500000","5557.000000","3.000000","5785.500000","5785.500000",,,,,,,,,,,"4309388.000000","5865136.000000","478728.000000","0.000000","65804804.000000","0.000000","90400768.000000",,"3753872.000000","28617396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000",,,,,,,,"146.000000","5815.000000",,,,,,,,,,,"4021.000000","810.000000","509.000000","599.000000","1180.000000","631.000000","748.000000","0.000000","0.000000","0.000000","628.000000","456.000000","533.000000","787.000000","540.000000","683.000000","160.000000","6000.000000",,"8975294.000000",,,,, +"12599.000000","52.420000","12599.000000","52.420000","12599.000000","52.420000",,,,,,,,,,,,,,"34.000000","5371.500000","5080.000000","2.000000","5371.500000","5371.500000",,,,,,,,,,,"4330308.000000","5864796.000000","478728.000000","0.000000","65796504.000000","0.000000","90400720.000000",,"3753872.000000","28628452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000",,,,,,,,"118.000000","5510.000000",,,,,,,,,,,"4233.000000","801.000000","492.000000","591.000000","1180.000000","587.000000","748.000000","0.000000","0.000000","0.000000","624.000000","449.000000","528.000000","787.000000","526.000000","683.000000","160.000000","6000.000000",,"8975314.000000",,,,, +"12073.000000","51.585000","12073.000000","51.585000","12073.000000","51.585000",,,,,,,,,,,,,,"52.000000","6416.000000","5738.000000","3.000000","6416.000000","6416.000000",,,,,,,,,,,"4383312.000000","5991772.000000","478728.000000","0.000000","65780080.000000","0.000000","90400720.000000",,"3753872.000000","28640968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000",,,,,,,,"201.000000","6841.000000",,,,,,,,,,,"4004.000000","792.000000","500.000000","583.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","618.000000","446.000000","519.000000","787.000000","511.000000","658.000000","160.000000","6000.000000",,"8975334.000000",,,,, +"12674.000000","52.525000","12674.000000","52.525000","12674.000000","52.525000",,,,,,,,,,,,,,"35.000000","5496.000000","5461.000000","2.000000","5496.000000","5496.000000",,,,,,,,,,,"4100816.000000","5515404.000000","478728.000000","0.000000","65781260.000000","0.000000","90400720.000000",,"3753872.000000","28662936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000",,,,,,,,"234.000000",,,,,,,,,,,,"3923.000000","787.000000","507.000000","581.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","614.000000","446.000000","516.000000","787.000000","493.000000","658.000000","160.000000","6000.000000",,"8975354.000000",,,,, +"20842.000000","65.480000","20842.000000","65.480000","20842.000000","65.480000",,,,,,,,,,,,,,"394.000000","7050.000000","6614.000000","4.000000","7050.000000","7050.000000",,,,,,,,,,,"4466336.000000","5812684.000000","478728.000000","0.000000","66106536.000000","0.000000","90394628.000000",,"3753872.000000","28317656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000",,,,,,,,"432.000000","6659.000000",,,,,,,,,,,"4394.000000","781.000000","610.000000","592.000000","1154.000000","1073.000000","804.000000","0.000000","0.000000","0.000000","611.000000","513.000000","522.000000","784.000000","920.000000","658.000000","160.000000","6000.000000",,"8975374.000000",,,,, +"19176.000000","62.935000","19176.000000","62.935000","19176.000000","62.935000",,,,,,,,,,,,,,"53.000000","9572.500000","9151.000000","35.000000","9572.500000","9572.500000",,,,,,,,,,,"4881476.000000","6210432.000000","478728.000000","0.000000","66235640.000000","0.000000","90331680.000000",,"3753872.000000","28088488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000",,,,,,,,"212.000000","9729.000000",,,,,,,,,,,"4522.000000","777.000000","750.000000","604.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","612.000000","632.000000","531.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975394.000000",,,,, +"15809.000000","57.660000","15809.000000","57.660000","15809.000000","57.660000",,,,,,,,,,,,,,"53.000000","2673.500000","2426.000000","5.000000","2673.500000","2673.500000",,,,,,,,,,,"5095648.000000","6277784.000000","478728.000000","0.000000","66219360.000000","0.000000","90331680.000000",,"3753872.000000","28113976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000",,,,,,,,"108.000000","2759.000000",,,,,,,,,,,"4307.000000","772.000000","769.000000","607.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","610.000000","664.000000","535.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975414.000000",,,,, +"14859.000000","56.160000","14859.000000","56.160000","14859.000000","56.160000",,,,,,,,,,,,,,"45.000000","1882.000000","1672.000000","38.000000","1882.000000","1882.000000",,,,,,,,,,,"5053652.000000","6361616.000000","478728.000000","0.000000","66207164.000000","0.000000","90331628.000000",,"3753872.000000","28125804.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000",,,,,,,,"98.000000","1948.000000",,,,,,,,,,,"4149.000000","765.000000","698.000000","611.000000","1150.000000","1057.000000","825.000000","0.000000","0.000000","0.000000","606.000000","616.000000","537.000000","787.000000","874.000000","730.000000","160.000000","6000.000000",,"8975434.000000",,,,, +"15093.000000","56.525000","15093.000000","56.525000","15093.000000","56.525000",,,,,,,,,,,,,,"49.000000","3138.500000","2819.000000","4.000000","3138.500000","3138.500000",,,,,,,,,,,"5010764.000000","6381568.000000","478728.000000","0.000000","66199440.000000","0.000000","90327692.000000",,"3753872.000000","28120808.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000",,,,,,,,"477.000000","2931.000000",,,,,,,,,,,"4255.000000","752.000000","590.000000","597.000000","1150.000000","633.000000","808.000000","0.000000","0.000000","0.000000","599.000000","535.000000","526.000000","762.000000","621.000000","658.000000","160.000000","6000.000000",,"8975454.000000",,,,, +"15613.000000","57.330000","15613.000000","57.330000","15613.000000","57.330000",,,,,,,,,,,,,,"45.000000","7734.500000","7541.000000","6.000000","7734.500000","7734.500000",,,,,,,,,,,"5241444.000000","6696148.000000","478728.000000","0.000000","66179740.000000","0.000000","90327692.000000",,"3753872.000000","28117624.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000",,,,,,,,"156.000000","7727.000000",,,,,,,,,,,"4226.000000","748.000000","604.000000","592.000000","1150.000000","641.000000","808.000000","0.000000","0.000000","0.000000","596.000000","540.000000","524.000000","762.000000","586.000000","621.000000","160.000000","6000.000000",,"8975474.000000",,,,, +"12397.000000","52.285000","12397.000000","52.285000","12397.000000","52.285000",,,,,,,,,,,,,,"45.000000","6719.000000","6597.000000","25.000000","6719.000000","6719.000000",,,,,,,,,,,"5204088.000000","6692988.000000","478728.000000","0.000000","66166040.000000","0.000000","90327868.000000",,"3753872.000000","28132280.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000",,,,,,,,"148.000000","6648.000000",,,,,,,,,,,"3977.000000","738.000000","587.000000","588.000000","1146.000000","641.000000","808.000000","0.000000","0.000000","0.000000","590.000000","520.000000","519.000000","761.000000","586.000000","621.000000","160.000000","6000.000000",,"8975494.000000",,,,, +"12513.000000","52.455000","12513.000000","52.455000","12513.000000","52.455000",,,,,,,,,,,,,,"50.000000","5044.000000","4815.000000","26.000000","5044.000000","5044.000000",,,,,,,,,,,"5057288.000000","6263644.000000","478728.000000","0.000000","66146408.000000","0.000000","90327868.000000",,"3753872.000000","28186536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000",,,,,,,,"132.000000","5089.000000",,,,,,,,,,,"4083.000000","725.000000","543.000000","581.000000","1117.000000","641.000000","808.000000","0.000000","0.000000","0.000000","584.000000","483.000000","513.000000","761.000000","582.000000","621.000000","160.000000","6000.000000",,"8975514.000000",,,,, +"13977.000000","54.750000","13977.000000","54.750000","13977.000000","54.750000",,,,,,,,,,,,,,"44.000000","6543.500000","6484.000000","4.000000","6543.500000","6543.500000",,,,,,,,,,,"4826604.000000","5928096.000000","478724.000000","0.000000","66137988.000000","0.000000","90327872.000000",,"3753872.000000","28153368.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000",,,,,,,,"183.000000","6375.000000",,,,,,,,,,,"4160.000000","722.000000","515.000000","581.000000","1117.000000","559.000000","808.000000","0.000000","0.000000","0.000000","581.000000","457.000000","512.000000","761.000000","511.000000","621.000000","160.000000","6000.000000",,"8975534.000000",,,,, +"12436.000000","52.325000","12436.000000","52.325000","12436.000000","52.325000",,,,,,,,,,,,,,"40.000000","6087.500000","5252.000000","5.000000","6087.500000","6087.500000",,,,,,,,,,,"4910076.000000","5876924.000000","478724.000000","0.000000","66119612.000000","0.000000","90327460.000000",,"3753872.000000","28171036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000",,,,,,,,"192.000000","6691.000000",,,,,,,,,,,"4040.000000","713.000000","513.000000","580.000000","1114.000000","562.000000","808.000000","0.000000","0.000000","0.000000","577.000000","465.000000","512.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975554.000000",,,,, +"12567.000000","52.525000","12567.000000","52.525000","12567.000000","52.525000",,,,,,,,,,,,,,"51.000000","6029.500000","5213.000000","4.000000","6029.500000","6029.500000",,,,,,,,,,,"5078248.000000","6013064.000000","478724.000000","0.000000","66113852.000000","0.000000","90327860.000000",,"3753872.000000","28145464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000",,,,,,,,"213.000000","6582.000000",,,,,,,,,,,"3992.000000","700.000000","514.000000","579.000000","1087.000000","585.000000","808.000000","0.000000","0.000000","0.000000","570.000000","458.000000","511.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975574.000000",,,,, +"14336.000000","55.290000","14336.000000","55.290000","14336.000000","55.290000",,,,,,,,,,,,,,"110.000000","14842.500000","14514.000000","19.000000","14842.500000","14842.500000",,,,,,,,,,,"4973388.000000","5845296.000000","478724.000000","0.000000","66100572.000000","0.000000","90327860.000000",,"3753872.000000","28240156.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000",,,,,,,,"243.000000","14817.000000",,,,,,,,,,,"4123.000000","698.000000","523.000000","584.000000","1087.000000","649.000000","808.000000","0.000000","0.000000","0.000000","568.000000","468.000000","515.000000","759.000000","584.000000","621.000000","160.000000","6000.000000",,"8975594.000000",,,,, +"13198.000000","53.510000","13198.000000","53.510000","13198.000000","53.510000",,,,,,,,,,,,,,"57.000000","5434.500000","5290.000000","10.000000","5434.500000","5434.500000",,,,,,,,,,,"5196328.000000","6026292.000000","478724.000000","0.000000","66101272.000000","0.000000","90327860.000000",,"3753872.000000","28239424.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000",,,,,,,,"137.000000","5383.000000",,,,,,,,,,,"4073.000000","688.000000","522.000000","586.000000","1073.000000","678.000000","808.000000","0.000000","0.000000","0.000000","562.000000","455.000000","514.000000","752.000000","584.000000","621.000000","160.000000","6000.000000",,"8975614.000000",,,,, +"13950.000000","54.680000","13950.000000","54.680000","13950.000000","54.680000",,,,,,,,,,,,,,"49.000000","6232.500000","6044.000000","12.000000","6232.500000","6232.500000",,,,,,,,,,,"5259240.000000","6047268.000000","478724.000000","0.000000","66093716.000000","0.000000","90327860.000000",,"3753872.000000","28252172.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000",,,,,,,,"173.000000","6197.000000",,,,,,,,,,,"4112.000000","677.000000","571.000000","594.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","556.000000","493.000000","520.000000","741.000000","620.000000","621.000000","160.000000","6000.000000",,"8975634.000000",,,,, +"12855.000000","52.960000","12855.000000","52.960000","12855.000000","52.960000",,,,,,,,,,,,,,"35.000000","6091.500000","5948.000000","23.000000","6091.500000","6091.500000",,,,,,,,,,,"5133416.000000","6026292.000000","478724.000000","0.000000","66083820.000000","0.000000","90327860.000000",,"3753872.000000","28249708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000",,,,,,,,"124.000000","6076.000000",,,,,,,,,,,"4195.000000","671.000000","553.000000","593.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","552.000000","474.000000","521.000000","734.000000","620.000000","621.000000","160.000000","6000.000000",,"8975654.000000",,,,, +"12159.000000","51.865000","12159.000000","51.865000","12159.000000","51.865000",,,,,,,,,,,,,,"336.000000","5644.500000","5157.000000","3.000000","5644.500000","5644.500000",,,,,,,,,,,"4817524.000000","5836232.000000","478724.000000","0.000000","66068668.000000","0.000000","90327612.000000",,"3753872.000000","28263960.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000",,,,,,,,"425.000000","5370.000000",,,,,,,,,,,"3922.000000","661.000000","556.000000","575.000000","977.000000","805.000000","678.000000","0.000000","0.000000","0.000000","547.000000","481.000000","507.000000","730.000000","620.000000","620.000000","160.000000","6000.000000",,"8975674.000000",,,,, +"14553.000000","55.600000","14553.000000","55.600000","14553.000000","55.600000",,,,,,,,,,,,,,"47.000000","9475.500000","8321.000000","16.000000","9475.500000","9475.500000",,,,,,,,,,,"4649752.000000","5637576.000000","478724.000000","0.000000","66045288.000000","0.000000","90327612.000000",,"3753872.000000","28300572.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000",,,,,,,,"256.000000","10326.000000",,,,,,,,,,,"3969.000000","640.000000","550.000000","554.000000","903.000000","757.000000","647.000000","0.000000","0.000000","0.000000","541.000000","468.000000","488.000000","716.000000","601.000000","584.000000","160.000000","6000.000000",,"8975694.000000",,,,, +"11104.000000","50.195000","11104.000000","50.195000","11104.000000","50.195000",,,,,,,,,,,,,,"55.000000","3076.000000","2376.000000","36.000000","3076.000000","3076.000000",,,,,,,,,,,"4356152.000000","5490780.000000","478724.000000","0.000000","66030236.000000","0.000000","90327612.000000",,"3753872.000000","28263972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000",,,,,,,,"163.000000","3558.000000",,,,,,,,,,,"3891.000000","627.000000","530.000000","545.000000","825.000000","757.000000","647.000000","0.000000","0.000000","0.000000","534.000000","449.000000","478.000000","684.000000","601.000000","582.000000","160.000000","6000.000000",,"8975714.000000",,,,, +"15315.000000","56.785000","15315.000000","56.785000","15315.000000","56.785000",,,,,,,,,,,,,,"47.000000","6384.000000","6212.000000","4.000000","6384.000000","6384.000000",,,,,,,,,,,"4368308.000000","5587100.000000","478724.000000","0.000000","66020992.000000","0.000000","90327612.000000",,"3753872.000000","28272500.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000",,,,,,,,"146.000000","6363.000000",,,,,,,,,,,"3981.000000","616.000000","560.000000","548.000000","804.000000","757.000000","674.000000","0.000000","0.000000","0.000000","529.000000","465.000000","477.000000","668.000000","601.000000","582.000000","160.000000","6000.000000",,"8975734.000000",,,,, +"16056.000000","57.940000","16056.000000","57.940000","16056.000000","57.940000",,,,,,,,,,,,,,"56.000000","7235.500000","6740.000000","34.000000","7235.500000","7235.500000",,,,,,,,,,,"4683920.000000","6091448.000000","478724.000000","0.000000","66007688.000000","0.000000","90328648.000000",,"3753872.000000","28333088.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000",,,,,,,,"547.000000","7128.000000",,,,,,,,,,,"4199.000000","600.000000","585.000000","553.000000","788.000000","714.000000","689.000000","0.000000","0.000000","0.000000","523.000000","497.000000","480.000000","636.000000","630.000000","582.000000","160.000000","6000.000000",,"8975754.000000",,,,, +"16684.000000","58.915000","16684.000000","58.915000","16684.000000","58.915000",,,,,,,,,,,,,,"51.000000","8111.500000","7884.000000","46.000000","8111.500000","8111.500000",,,,,,,,,,,"4734948.000000","6141332.000000","478724.000000","0.000000","65989984.000000","0.000000","90327824.000000",,"3753872.000000","28340276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000",,,,,,,,"188.000000","8099.000000",,,,,,,,,,,"4209.000000","596.000000","648.000000","554.000000","771.000000","721.000000","690.000000","0.000000","0.000000","0.000000","521.000000","555.000000","481.000000","630.000000","672.000000","601.000000","160.000000","6000.000000",,"8975774.000000",,,,, +"13417.000000","53.790000","13417.000000","53.790000","13417.000000","53.790000",,,,,,,,,,,,,,"52.000000","7777.500000","6720.000000","246.000000","7777.500000","7777.500000",,,,,,,,,,,"4944620.000000","6254676.000000","478724.000000","0.000000","65985284.000000","0.000000","90327780.000000",,"3753872.000000","28350264.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000",,,,,,,,"292.000000","8490.000000",,,,,,,,,,,"4059.000000","592.000000","634.000000","557.000000","733.000000","721.000000","690.000000","0.000000","0.000000","0.000000","519.000000","553.000000","484.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975794.000000",,,,, +"12031.000000","51.620000","12031.000000","51.620000","12031.000000","51.620000",,,,,,,,,,,,,,"53.000000","6347.500000","5765.000000","35.000000","6347.500000","6347.500000",,,,,,,,,,,"4598020.000000","6200536.000000","478724.000000","0.000000","65982208.000000","0.000000","90327788.000000",,"3753872.000000","28379396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000",,,,,,,,"214.000000","6663.000000",,,,,,,,,,,"3878.000000","587.000000","580.000000","560.000000","721.000000","721.000000","690.000000","0.000000","1.000000","0.000000","515.000000","499.000000","483.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975814.000000",,,,, +"13415.000000","53.785000","13415.000000","53.785000","13415.000000","53.785000",,,,,,,,,,,,,,"97.000000","6025.000000","5859.000000","19.000000","6025.000000","6025.000000",,,,,,,,,,,"4368068.000000","6033500.000000","478724.000000","0.000000","65973668.000000","0.000000","90328528.000000",,"3753872.000000","28370840.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000",,,,,,,,"132.000000","5961.000000",,,,,,,,,,,"4039.000000","585.000000","540.000000","559.000000","721.000000","660.000000","690.000000","0.000000","1.000000","0.000000","514.000000","465.000000","482.000000","627.000000","585.000000","601.000000","160.000000","6000.000000",,"8975834.000000",,,,, +"12897.000000","52.965000","12897.000000","52.965000","12897.000000","52.965000",,,,,,,,,,,,,,"59.000000","8169.000000","7981.000000","38.000000","8169.000000","8169.000000",,,,,,,,,,,"4456668.000000","5831840.000000","478724.000000","0.000000","65959600.000000","0.000000","90327768.000000",,"3753872.000000","28384312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000",,,,,,,,"160.000000","8138.000000",,,,,,,,,,,"4065.000000","584.000000","528.000000","560.000000","721.000000","562.000000","690.000000","0.000000","1.000000","0.000000","513.000000","456.000000","482.000000","627.000000","504.000000","601.000000","160.000000","6000.000000",,"8975854.000000",,,,, +"13402.000000","53.745000","13402.000000","53.745000","13402.000000","53.745000",,,,,,,,,,,,,,"52.000000","6454.500000","6276.000000","32.000000","6454.500000","6454.500000",,,,,,,,,,,"4059692.000000","5320092.000000","478724.000000","0.000000","65943304.000000","0.000000","90328096.000000",,"3753872.000000","28363360.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000",,,,,,,,"156.000000","6424.000000",,,,,,,,,,,"4120.000000","583.000000","530.000000","563.000000","721.000000","562.000000","690.000000","0.000000","0.000000","0.000000","511.000000","466.000000","485.000000","627.000000","505.000000","601.000000","160.000000","6000.000000",,"8975874.000000",,,,, +"14524.000000","55.505000","14524.000000","55.505000","14524.000000","55.505000",,,,,,,,,,,,,,"43.000000","6854.500000","6631.000000","7.000000","6854.500000","6854.500000",,,,,,,,,,,"3681880.000000","5151996.000000","478724.000000","0.000000","65942040.000000","0.000000","90327768.000000",,"3753872.000000","28393976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000",,,,,,,,"176.000000","6859.000000",,,,,,,,,,,"3981.000000","584.000000","571.000000","568.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","512.000000","490.000000","487.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975894.000000",,,,, +"12588.000000","52.465000","12588.000000","52.465000","12588.000000","52.465000",,,,,,,,,,,,,,"50.000000","5718.000000","5531.000000","16.000000","5718.000000","5718.000000",,,,,,,,,,,"3387004.000000","5134160.000000","478724.000000","0.000000","65926568.000000","0.000000","90327564.000000",,"3753872.000000","28408136.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000",,,,,,,,"142.000000","5713.000000",,,,,,,,,,,"3892.000000","582.000000","569.000000","569.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","510.000000","483.000000","488.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975914.000000",,,,, +"13448.000000","53.805000","13448.000000","53.805000","13448.000000","53.805000",,,,,,,,,,,,,,"57.000000","5242.000000","5013.000000","5.000000","5242.000000","5242.000000",,,,,,,,,,,"3815192.000000","5499436.000000","478724.000000","0.000000","65910024.000000","0.000000","90327564.000000",,"3753872.000000","28390540.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000",,,,,,,,"163.000000","5250.000000",,,,,,,,,,,"4137.000000","579.000000","563.000000","562.000000","733.000000","852.000000","690.000000","0.000000","0.000000","0.000000","507.000000","484.000000","483.000000","627.000000","676.000000","601.000000","160.000000","6000.000000",,"8975934.000000",,,,, +"12917.000000","52.965000","12917.000000","52.965000","12917.000000","52.965000",,,,,,,,,,,,,,"56.000000","5233.000000","5054.000000","21.000000","5233.000000","5233.000000",,,,,,,,,,,"3668536.000000","5226956.000000","478724.000000","0.000000","65900664.000000","0.000000","90327712.000000",,"3753872.000000","28319972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000",,,,,,,,"138.000000","5217.000000",,,,,,,,,,,"4089.000000","578.000000","514.000000","561.000000","733.000000","640.000000","690.000000","0.000000","0.000000","0.000000","506.000000","456.000000","483.000000","627.000000","539.000000","601.000000","160.000000","6000.000000",,"8975954.000000",,,,, +"15504.000000","57.020000","15504.000000","57.020000","15504.000000","57.020000",,,,,,,,,,,,,,"317.000000","7192.500000","6726.000000","11.000000","7192.500000","7192.500000",,,,,,,,,,,"3932356.000000","5306432.000000","478720.000000","0.000000","65898268.000000","0.000000","90327716.000000",,"3753872.000000","28319968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000",,,,,,,,"420.000000","6921.000000",,,,,,,,,,,"4034.000000","578.000000","545.000000","567.000000","733.000000","884.000000","714.000000","0.000000","0.000000","0.000000","505.000000","467.000000","485.000000","621.000000","577.000000","601.000000","160.000000","6000.000000",,"8975974.000000",,,,, +"16076.000000","57.910000","16076.000000","57.910000","16076.000000","57.910000",,,,,,,,,,,,,,"56.000000","14948.000000","14891.000000","30.000000","14948.000000","14948.000000",,,,,,,,,,,"3649816.000000","4772236.000000","478720.000000","0.000000","65889080.000000","0.000000","90327716.000000",,"3753872.000000","28333308.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000",,,,,,,,"241.000000",,,,,,,,,,,,"4303.000000","581.000000","667.000000","585.000000","733.000000","1361.000000","714.000000","0.000000","0.000000","0.000000","505.000000","532.000000","496.000000","620.000000","792.000000","617.000000","160.000000","6000.000000",,"8975994.000000",,,,, +"18156.000000","61.165000","18156.000000","61.165000","18156.000000","61.165000",,,,,,,,,,,,,,"58.000000","5549.500000","5380.000000","11.000000","5549.500000","5549.500000",,,,,,,,,,,"3780056.000000","4948828.000000","478716.000000","0.000000","65875864.000000","0.000000","90327720.000000",,"3753872.000000","28336428.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000",,,,,,,,"135.000000","5525.000000",,,,,,,,,,,"4342.000000","584.000000","721.000000","599.000000","748.000000","1361.000000","721.000000","0.000000","0.000000","0.000000","507.000000","583.000000","510.000000","621.000000","792.000000","630.000000","160.000000","6000.000000",,"8976014.000000",,,,, +"17872.000000","60.710000","17872.000000","60.710000","17872.000000","60.710000",,,,,,,,,,,,,,"104.000000","6486.500000","5622.000000","8.000000","6486.500000","6486.500000",,,,,,,,,,,"3784316.000000","5151216.000000","478716.000000","0.000000","65861956.000000","0.000000","90327572.000000",,"3753872.000000","28349116.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000",,,,,,,,"228.000000","7018.000000",,,,,,,,,,,"4529.000000","590.000000","778.000000","611.000000","795.000000","1361.000000","852.000000","0.000000","0.000000","0.000000","512.000000","642.000000","520.000000","643.000000","792.000000","676.000000","160.000000","6000.000000",,"8976034.000000",,,,, +"16428.000000","58.435000","16428.000000","58.435000","16428.000000","58.435000",,,,,,,,,,,,,,"54.000000","5499.000000","4860.000000","11.000000","5499.000000","5499.000000",,,,,,,,,,,"3932268.000000","5195452.000000","478716.000000","0.000000","65843528.000000","0.000000","90327572.000000",,"3753872.000000","28393076.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000",,,,,,,,"332.000000","5751.000000",,,,,,,,,,,"4133.000000","587.000000","717.000000","611.000000","748.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","520.000000","627.000000","791.000000","676.000000","160.000000","6000.000000",,"8976054.000000",,,,, +"17381.000000","59.930000","17381.000000","59.930000","17381.000000","59.930000",,,,,,,,,,,,,,"59.000000","8578.000000","8140.000000","12.000000","8578.000000","8578.000000",,,,,,,,,,,"3953240.000000","5300308.000000","478716.000000","0.000000","65836776.000000","0.000000","90327572.000000",,"3753872.000000","28400124.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000",,,,,,,,"436.000000","8520.000000",,,,,,,,,,,"4333.000000","588.000000","749.000000","619.000000","757.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","523.000000","621.000000","734.000000","676.000000","160.000000","6000.000000",,"8976074.000000",,,,, +"15687.000000","57.270000","15687.000000","57.270000","15687.000000","57.270000",,,,,,,,,,,,,,"460.000000","8076.000000","7461.000000","13.000000","8076.000000","8076.000000",,,,,,,,,,,"4360516.000000","5820964.000000","478712.000000","0.000000","65833308.000000","0.000000","90327576.000000",,"3753872.000000","28405352.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000",,,,,,,,"576.000000","7655.000000",,,,,,,,,,,"4196.000000","590.000000","695.000000","623.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","587.000000","527.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976094.000000",,,,, +"14398.000000","55.250000","14398.000000","55.250000","14398.000000","55.250000",,,,,,,,,,,,,,"66.000000","4858.000000","4662.000000","5.000000","4858.000000","4858.000000",,,,,,,,,,,"4612176.000000","6387196.000000","478712.000000","0.000000","65817948.000000","0.000000","90327576.000000",,"3753872.000000","28436140.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000",,,,,,,,"143.000000","4844.000000",,,,,,,,,,,"4023.000000","590.000000","668.000000","629.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","568.000000","534.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976114.000000",,,,, +"13780.000000","54.270000","13780.000000","54.270000","13780.000000","54.270000",,,,,,,,,,,,,,"48.000000","5593.000000","5408.000000","15.000000","5593.000000","5593.000000",,,,,,,,,,,"4780092.000000","6429288.000000","478712.000000","0.000000","65802764.000000","0.000000","90327724.000000",,"3753872.000000","28460456.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000",,,,,,,,"130.000000","5599.000000",,,,,,,,,,,"3994.000000","591.000000","613.000000","634.000000","757.000000","687.000000","852.000000","0.000000","0.000000","0.000000","510.000000","526.000000","535.000000","621.000000","605.000000","676.000000","160.000000","6000.000000",,"8976133.000000",,,,, +"16853.000000","59.090000","16853.000000","59.090000","16853.000000","59.090000",,,,,,,,,,,,,,"54.000000","6214.000000","6022.000000","6.000000","6214.000000","6214.000000",,,,,,,,,,,"4142032.000000","5689428.000000","478712.000000","0.000000","65805508.000000","0.000000","90327624.000000",,"3753872.000000","28462996.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000",,,,,,,,"148.000000","6203.000000",,,,,,,,,,,"4250.000000","595.000000","644.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","513.000000","542.000000","544.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976154.000000",,,,, +"14298.000000","55.085000","14298.000000","55.085000","14298.000000","55.085000",,,,,,,,,,,,,,"50.000000","4735.500000","4507.000000","6.000000","4735.500000","4735.500000",,,,,,,,,,,"4299160.000000","5910628.000000","478712.000000","0.000000","65804908.000000","0.000000","90328052.000000",,"3753872.000000","28522296.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000",,,,,,,,"161.000000","4752.000000",,,,,,,,,,,"3978.000000","597.000000","629.000000","649.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","514.000000","536.000000","548.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976173.000000",,,,, +"15093.000000","56.325000","15093.000000","56.325000","15093.000000","56.325000",,,,,,,,,,,,,,"41.000000","6169.000000","5983.000000","4.000000","6169.000000","6169.000000",,,,,,,,,,,"4466508.000000","6015056.000000","478712.000000","0.000000","65795524.000000","0.000000","90327624.000000",,"3753872.000000","28542888.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000",,,,,,,,"144.000000","6169.000000",,,,,,,,,,,"4194.000000","600.000000","635.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","516.000000","552.000000","547.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976194.000000",,,,, +"14034.000000","54.655000","14034.000000","54.655000","14034.000000","54.655000",,,,,,,,,,,,,,"56.000000","5221.500000","5049.000000","6.000000","5221.500000","5221.500000",,,,,,,,,,,"4723728.000000","6448860.000000","478712.000000","0.000000","65779708.000000","0.000000","90327708.000000",,"3753872.000000","28557680.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000",,,,,,,,"146.000000","5190.000000",,,,,,,,,,,"3967.000000","601.000000","582.000000","649.000000","784.000000","698.000000","872.000000","0.000000","0.000000","0.000000","517.000000","510.000000","550.000000","630.000000","566.000000","678.000000","160.000000","6000.000000",,"8976213.000000",,,,, +"14513.000000","55.395000","14513.000000","55.395000","14513.000000","55.395000",,,,,,,,,,,,,,"52.000000","11713.000000","11430.000000","47.000000","11713.000000","11713.000000",,,,,,,,,,,"4891500.000000","6563636.000000","478712.000000","0.000000","65762076.000000","0.000000","90327708.000000",,"3753872.000000","28580028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000",,,,,,,,"207.000000","11735.000000",,,,,,,,,,,"4167.000000","604.000000","604.000000","657.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","519.000000","520.000000","555.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976234.000000",,,,, +"13197.000000","53.335000","13197.000000","53.335000","13197.000000","53.335000",,,,,,,,,,,,,,"121.000000","6919.000000","5809.000000","8.000000","6919.000000","6919.000000",,,,,,,,,,,"4828584.000000","6374896.000000","478712.000000","0.000000","65763272.000000","0.000000","90327708.000000",,"3753872.000000","28573952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000",,,,,,,,"308.000000","7598.000000",,,,,,,,,,,"4157.000000","604.000000","572.000000","658.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","520.000000","501.000000","556.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976253.000000",,,,, +"14599.000000","55.530000","14599.000000","55.530000","14599.000000","55.530000",,,,,,,,,,,,,,"392.000000","8179.000000","6641.000000","5.000000","8179.000000","8179.000000",,,,,,,,,,,"4801996.000000","6260304.000000","478708.000000","0.000000","65754900.000000","0.000000","90327572.000000",,"3753872.000000","28582464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000",,,,,,,,"557.000000","8768.000000",,,,,,,,,,,"4075.000000","599.000000","572.000000","654.000000","729.000000","652.000000","837.000000","0.000000","0.000000","0.000000","516.000000","502.000000","557.000000","621.000000","584.000000","678.000000","160.000000","6000.000000",,"8976274.000000",,,,, +"16687.000000","58.805000","16687.000000","58.805000","16687.000000","58.805000",,,,,,,,,,,,,,"75.000000","9394.500000","8011.000000","27.000000","9394.500000","9394.500000",,,,,,,,,,,"4603344.000000","6113500.000000","478708.000000","0.000000","65757556.000000","0.000000","90327572.000000",,"3753872.000000","28571312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000",,,,,,,,"273.000000","10429.000000",,,,,,,,,,,"4183.000000","596.000000","629.000000","649.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","513.000000","528.000000","554.000000","617.000000","752.000000","678.000000","160.000000","6000.000000",,"8976294.000000",,,,, +"13518.000000","53.830000","13518.000000","53.830000","13518.000000","53.830000",,,,,,,,,,,,,,"109.000000","4267.000000","3029.000000","16.000000","4267.000000","4267.000000",,,,,,,,,,,"4582624.000000","6218608.000000","478708.000000","0.000000","65742504.000000","0.000000","90327824.000000",,"3753872.000000","28440044.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000",,,,,,,,"205.000000","5191.000000",,,,,,,,,,,"4062.000000","595.000000","638.000000","641.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","511.000000","527.000000","545.000000","610.000000","752.000000","667.000000","160.000000","6000.000000",,"8976313.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-instance.csv b/splunk_eventgen/samples/vmware-actuals-host-instance.csv new file mode 100644 index 00000000..1ac2f32d --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host-instance.csv @@ -0,0 +1,852 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +,"22.964583",,"22.964583",,"22.964583",,,,,,,"3837.916667",,,,,"4593.916667",,"11.311111",,"372.177778",,,,"29.600000","1.422222","1.177778","1.400000","31.422222","0.000000","344.925926","0.000000","13.444444","328.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","721.625000",,,,,"0.000000","0.000000",,,"2147.375000","2729.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.476250",,"22.476250",,"22.476250",,,,,,,"4239.833333",,,,,"4496.125000",,"4.200000",,"330.977778",,,,"24.714286","0.866667","0.488889","1.533333","26.977778","0.000000","300.037037","0.000000","8.888889","289.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","612.125000",,,,,"0.000000","0.000000",,,"1756.500000","2189.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.342917",,"22.342917",,"22.342917",,,,,,,"4169.291667",,,,,"4469.250000",,"3.488889",,"292.155556",,,,"18.857143","0.977778","2.733333","127.733333","19.977778","0.000000","221.296296","0.074074","9.592593","210.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","585.625000",,,,,"0.000000","0.000000",,,"1627.625000","2008.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.693333",,"15.693333",,"15.693333",,,,,,,"5570.625000",,,,,"3139.666667",,"19.466667",,"102.533333",,,,"2117.485714","1.177778","56.377778","636.888889","6.533333","0.000000","86.777778","0.259259","14.481481","70.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","181.125000",,,,,"0.000000","0.000000",,,"695.625000","761.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.493333",,"20.493333",,"20.493333",,,,,,,"4138.666667",,,,,"4099.791667",,"4.377778",,"328.400000",,,,"2540.085714","0.888889","9.888889","329.422222","28.222222","0.000000","307.851852","0.111111","10.333333","296.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","638.875000",,,,,"0.000000","0.000000",,,"1909.000000","2327.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.892917",,"20.892917",,"20.892917",,,,,,,"4545.208333",,,,,"4179.416667",,"3.111111",,"117.088889",,,,"2007.628571","0.800000","0.711111","45.266667","5.800000","0.000000","72.592593","0.000000","8.481481","62.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.000000","232.250000",,,,,"0.000000","0.000000",,,"910.375000","983.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.351667",,"17.351667",,"17.351667",,,,,,,"5112.958333",,,,,"3471.541667",,"6.200000",,"1594.355556",,,,"1545.714286","1.000000","3.444444","41.822222","20.733333","0.000000","210.851852","0.000000","10.000000","199.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","2849.875000",,,,,"0.000000","0.000000",,,"5832.375000","8092.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.875417",,"18.875417",,"18.875417",,,,,,,"5122.458333",,,,,"3776.083333",,"3.822222",,"465.133333",,,,"852.114286","0.977778","0.333333","3.400000","16.111111","0.000000","178.925926","0.000000","9.925926","167.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.250000","1274.375000",,,,,"0.000000","0.000000",,,"6969.625000","7389.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.506667",,"17.506667",,"17.506667",,,,,,,"5386.166667",,,,,"3502.125000",,"58.266667",,"900.933333",,,,"42.371429","3.377778","0.600000","8.222222","44.355556","0.000000","502.333333","0.000000","36.481481","464.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"132.875000","1854.250000",,,,,"0.000000","0.000000",,,"6107.625000","7459.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.251667",,"22.251667",,"22.251667",,,,,,,"4570.833333",,,,,"4451.208333",,"4.400000",,"525.377778",,,,"45.314286","1.177778","0.444444","2.377778","49.311111","0.000000","521.592593","0.000000","11.148148","508.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","974.000000",,,,,"0.000000","0.000000",,,"2777.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.629583",,"21.629583",,"21.629583",,,,,,,"4419.291667",,,,,"4326.625000",,"24.133333",,"461.222222",,,,"38.057143","1.155556","0.266667","1.733333","41.555556","0.000000","445.777778","0.000000","11.555556","433.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.000000","913.750000",,,,,"0.000000","0.000000",,,"2767.000000","3537.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.837917",,"20.837917",,"20.837917",,,,,,,"4725.791667",,,,,"4168.458333",,"105.177778",,"389.488889",,,,"33.942857","2.733333","0.288889","2.066667","35.044444","0.000000","392.518519","0.000000","26.777778","363.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"154.125000","691.500000",,,,,"0.000000","0.000000",,,"2393.375000","2793.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.988750",,"18.988750",,"18.988750",,,,,,,"5670.541667",,,,,"3798.583333",,"57.800000",,"337.444444",,,,"23.685714","1.333333","0.400000","1.555556","25.111111","0.000000","277.222222","0.000000","14.555556","261.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"167.750000","622.250000",,,,,"0.000000","0.000000",,,"2163.125000","2381.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.806250",,"18.806250",,"18.806250",,,,,,,"5040.250000",,,,,"3762.166667",,"257.888889",,"394.177778",,,,"37.542857","8.200000","0.355556","1.400000","33.911111","0.000000","438.925926","0.000000","89.851852","347.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"492.750000","775.625000",,,,,"0.000000","0.000000",,,"3455.500000","3576.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.132917",,"20.132917",,"20.132917",,,,,,,"4924.583333",,,,,"4027.625000",,"145.488889",,"387.755556",,,,"40.114286","4.911111","0.177778","1.088889","39.111111","0.000000","450.333333","0.000000","54.666667","391.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"289.625000","8.285714",,,,,"0.000000","0.000000",,,"2861.250000","3031.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.448750",,"18.448750",,"18.448750",,,,,,,"5074.125000",,,,,"3690.750000",,"118.133333",,"331.933333",,,,"32.285714","4.022222","0.644444","1.400000","31.911111","0.000000","370.703704","0.000000","43.703704","325.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.875000","651.000000",,,,,"0.000000","0.000000",,,"2537.000000","2851.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.191667",,"22.191667",,"22.191667",,,,,,,"3835.208333",,,,,"4439.166667",,"89.844444",,"472.755556",,,,"41.514286","5.422222","0.266667","1.755556","40.755556","0.000000","473.000000","0.000000","59.148148","412.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"191.000000","854.375000",,,,,"0.000000","0.000000",,,"2865.250000","3436.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.297917",,"22.297917",,"22.297917",,,,,,,"4117.208333",,,,,"4460.500000",,"9.377778",,"338.533333",,,,"30.800000","1.844444","0.333333","1.377778","32.222222","0.000000","349.407407","0.000000","19.666667","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","851.875000",,,,,"0.000000","0.000000",,,"5608.125000","6200.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.939167",,"21.939167",,"21.939167",,,,,,,"3914.291667",,,,,"4388.708333",,"36.644444",,"251.800000",,,,"2011.342857","9.066667","0.333333","1.977778","20.200000","0.000000","308.185185","0.000000","99.666667","207.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.625000","621.375000",,,,,"0.000000","0.000000",,,"4747.250000","5122.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.502083",,"22.502083",,"22.502083",,,,,,,"4223.416667",,,,,"4501.333333",,"3.977778",,"436.200000",,,,"2518.285714","0.955556","0.555556","2.533333","28.400000","0.000000","300.444444","0.000000","9.296296","289.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","827.375000",,,,,"0.000000","0.000000",,,"2245.250000","2863.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.317500",,"22.317500",,"22.317500",,,,,,,"4361.833333",,,,,"4464.500000",,"31.844444",,"334.466667",,,,"1829.628571","2.755556","1.822222","1.733333","19.377778","0.000000","233.296296","0.000000","28.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"96.625000","624.250000",,,,,"0.000000","0.000000",,,"2522.000000","2492.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.582500",,"27.582500",,"27.582500",,,,,,,"2615.625000",,,,,"5517.666667",,"17.266667",,"553.600000",,,,"1514.142857","2.177778","0.377778","1.422222","49.777778","0.000000","524.222222","0.000000","23.370370","499.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.000000","1017.125000",,,,,"0.000000","0.000000",,,"3092.125000","3738.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.474167",,"25.474167",,"25.474167",,,,,,,"3153.583333",,,,,"5095.666667",,"3.600000",,"479.800000",,,,"1274.600000","0.977778","1.022222","3.155556","43.333333","0.000000","443.851852","0.000000","9.703704","432.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","871.500000",,,,,"0.000000","0.000000",,,"2500.625000","3097.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.752083",,"21.752083",,"21.752083",,,,,,,"4219.750000",,,,,"4351.375000",,"3.488889",,"386.511111",,,,"32.400000","1.022222","0.133333","2.222222","34.600000","0.000000","358.481481","0.000000","9.851852","347.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","714.750000",,,,,"0.000000","0.000000",,,"2142.625000","2569.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.273750",,"25.273750",,"25.273750",,,,,,,"3686.666667",,,,,"5055.708333",,"11.066667",,"594.377778",,,,"41.942857","1.844444","0.266667","1.733333","44.244444","0.000000","462.000000","0.000000","19.555556","440.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","858.125000",,,,,"0.000000","0.000000",,,"2565.250000","3305.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.602917",,"24.602917",,"24.602917",,,,,,,"3892.000000",,,,,"4921.583333",,"12.266667",,"406.244444",,,,"34.800000","1.577778","0.200000","1.777778","36.666667","0.000000","385.222222","0.000000","17.222222","366.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","1038.625000",,,,,"0.000000","0.000000",,,"2794.000000","3562.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.929583",,"22.929583",,"22.929583",,,,,,,"4382.750000",,,,,"4586.875000",,"16.155556",,"587.400000",,,,"35.485714","2.266667","0.266667","3.800000","37.000000","0.000000","398.222222","0.000000","23.666667","373.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1032.000000",,,,,"0.000000","0.000000",,,"2702.250000","3407.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.956250",,"23.956250",,"23.956250",,,,,,,"4120.625000",,,,,"4792.125000",,"2.577778",,"394.711111",,,,"36.142857","0.888889","0.177778","1.244444","38.755556","0.000000","394.629630","0.000000","8.444444","384.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","765.375000",,,,,"0.000000","0.000000",,,"2260.875000","2818.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.483750",,"23.483750",,"23.483750",,,,,,,"4405.833333",,,,,"4697.625000",,"9.466667",,"365.266667",,,,"27.057143","1.488889","0.777778","2.555556","27.977778","0.000000","297.333333","0.000000","14.222222","280.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","793.625000",,,,,"0.000000","0.000000",,,"4382.875000","4854.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.832083",,"21.832083",,"21.832083",,,,,,,"4539.750000",,,,,"4367.541667",,"22.111111",,"306.777778",,,,"26.828571","1.911111","0.244444","1.866667","27.377778","0.000000","302.925926","0.000000","21.333333","277.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.125000","867.375000",,,,,"0.000000","0.000000",,,"5982.750000","6615.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.718750",,"24.718750",,"24.718750",,,,,,,"4033.958333",,,,,"4944.666667",,"2.711111",,"482.800000",,,,"40.400000","0.933333","0.133333","2.511111","43.555556","0.000000","444.185185","0.000000","8.666667","434.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","864.125000",,,,,"0.000000","0.000000",,,"2486.125000","3033.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.872917",,"21.872917",,"21.872917",,,,,,,"3919.375000",,,,,"4375.583333",,"3.888889",,"396.533333",,,,"32.342857","0.955556","0.133333","2.022222","34.666667","0.000000","358.703704","0.000000","9.518519","347.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","735.625000",,,,,"0.000000","0.000000",,,"2147.625000","2750.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.719583",,"26.719583",,"26.719583",,,,,,,"2485.583333",,,,,"5344.791667",,"3.444444",,"443.533333",,,,"23.828571","1.044444","0.422222","4.200000","25.266667","0.000000","268.629630","0.000000","9.629630","257.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","833.000000",,,,,"0.000000","0.000000",,,"2137.500000","2744.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.444167",,"31.444167",,"31.444167",,,,,,,"1250.958333",,,,,"6289.916667",,"3.866667",,"561.933333",,,,"1557.628571","0.866667","0.622222","1.488889","40.866667","0.000000","425.666667","0.000000","8.444444","416.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","1086.250000",,,,,"0.000000","0.000000",,,"2836.000000","3618.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"38.192917",,"38.192917",,"38.192917",,,,,,,"665.458333",,,,,"7639.458333",,"2.822222",,"401.244444",,,,"2194.857143","0.844444","0.622222","2.066667","26.155556","0.000000","275.074074","0.000000","8.444444","265.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","721.750000",,,,,"0.000000","0.000000",,,"1910.750000","2503.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"37.478333",,"37.478333",,"37.478333",,,,,,,"430.583333",,,,,"7496.791667",,"4.422222",,"711.511111",,,,"1416.285714","0.955556","2.266667","3.088889","39.177778","0.000000","411.592593","0.000000","9.814815","400.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.375000","1420.000000",,,,,"0.000000","0.000000",,,"4759.250000","5401.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.707500",,"32.707500",,"32.707500",,,,,,,"1046.333333",,,,,"6542.458333",,"13.688889",,"412.977778",,,,"1384.228571","1.533333","1.222222","3.488889","29.733333","0.000000","318.407407","0.000000","14.148148","301.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","980.625000",,,,,"0.000000","0.000000",,,"5406.750000","6490.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.303333",,"29.303333",,"29.303333",,,,,,,"1384.750000",,,,,"5861.583333",,"4.755556",,"514.822222",,,,"1464.542857","1.000000","0.577778","1.955556","42.911111","0.000000","449.296296","0.000000","10.296296","437.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1227.625000",,,,,"0.000000","0.000000",,,"5596.750000","6783.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.291667",,"26.291667",,"26.291667",,,,,,,"2767.208333",,,,,"5259.166667",,"3.200000",,"420.111111",,,,"1171.257143","0.933333","0.355556","3.088889","37.155556","0.000000","387.259259","0.000000","9.407407","376.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1028.125000",,,,,"0.000000","0.000000",,,"5272.375000","6411.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.346250",,"26.346250",,"26.346250",,,,,,,"3580.500000",,,,,"5270.208333",,"3.533333",,"486.088889",,,,"39.600000","0.955556","0.355556","4.333333","42.866667","0.000000","446.740741","0.000000","9.703704","435.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.750000","1147.875000",,,,,"0.000000","0.000000",,,"6006.625000","7280.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.151667",,"24.151667",,"24.151667",,,,,,,"3947.916667",,,,,"4831.208333",,"3.066667",,"457.511111",,,,"37.971429","0.800000","0.666667","2.533333","41.266667","0.000000","431.259259","0.000000","8.629630","421.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1103.250000",,,,,"0.000000","0.000000",,,"5842.500000","7036.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.313333",,"25.313333",,"25.313333",,,,,,,"3857.875000",,,,,"5063.500000",,"2.977778",,"436.466667",,,,"30.857143","0.933333","0.288889","2.288889","33.377778","0.000000","353.370370","0.000000","8.851852","343.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1139.000000",,,,,"0.000000","0.000000",,,"5929.000000","7105.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.853750",,"25.853750",,"25.853750",,,,,,,"4312.583333",,,,,"5171.833333",,"3.822222",,"458.933333",,,,"35.800000","0.955556","0.311111","1.777778","38.622222","0.000000","403.074074","0.000000","9.629630","392.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1163.250000",,,,,"0.000000","0.000000",,,"6204.500000","7375.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.745417",,"25.745417",,"25.745417",,,,,,,"3276.208333",,,,,"5150.083333",,"8.555556",,"465.933333",,,,"38.228571","1.466667","0.222222","2.444444","40.755556","0.000000","433.444444","0.000000","13.555556","417.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","1088.625000",,,,,"0.000000","0.000000",,,"5674.125000","6719.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.011250",,"25.011250",,"25.011250",,,,,,,"4086.708333",,,,,"5003.083333",,"22.644444",,"548.977778",,,,"39.171429","2.111111","0.244444","2.533333","40.955556","0.000000","440.296296","0.000000","23.148148","413.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.875000","1291.750000",,,,,"0.000000","0.000000",,,"6326.500000","7610.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.236667",,"24.236667",,"24.236667",,,,,,,"3924.333333",,,,,"4848.250000",,"4.200000",,"419.888889",,,,"34.828571","0.955556","0.311111","1.466667","37.533333","0.000000","392.185185","0.000000","9.296296","381.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1073.125000",,,,,"0.000000","0.000000",,,"5831.125000","7042.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.887500",,"25.887500",,"25.887500",,,,,,,"3637.375000",,,,,"5178.583333",,"3.333333",,"416.911111",,,,"33.400000","0.933333","0.755556","2.200000","36.088889","0.000000","377.370370","0.000000","8.888889","367.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","312.000000",,,,,"0.000000","0.000000",,,"5630.625000","6643.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.725833",,"32.725833",,"32.725833",,,,,,,"1537.458333",,,,,"6546.083333",,"5.333333",,"643.022222",,,,"44.342857","1.044444","1.177778","2.000000","48.111111","0.000000","501.777778","0.000000","10.740741","489.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.625000","1437.375000",,,,,"0.000000","0.000000",,,"6435.500000","7798.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.407083",,"23.407083",,"23.407083",,,,,,,"4021.708333",,,,,"4682.291667",,"4.133333",,"288.022222",,,,"1927.628571","0.844444","0.333333","2.222222","18.355556","0.000000","198.333333","0.000000","8.666667","188.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","834.625000",,,,,"0.000000","0.000000",,,"5070.500000","6029.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.535833",,"23.535833",,"23.535833",,,,,,,"3934.625000",,,,,"4708.000000",,"3.222222",,"424.888889",,,,"2305.514286","1.000000","0.244444","4.422222","10.288889","0.000000","114.259259","0.000000","9.296296","103.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.125000","1098.500000",,,,,"0.000000","0.000000",,,"12402.375000","7026.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.125833",,"26.125833",,"26.125833",,,,,,,"3436.583333",,,,,"5225.708333",,"10.533333",,"439.733333",,,,"1775.428571","1.911111","0.400000","3.355556","26.066667","0.000000","286.111111","0.000000","18.074074","264.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.375000","885.000000",,,,,"0.000000","0.000000",,,"6061.375000","6468.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.251250",,"30.251250",,"30.251250",,,,,,,"2742.750000",,,,,"6051.208333",,"5.555556",,"869.511111",,,,"1563.600000","2.244444","0.466667","2.733333","50.377778","0.000000","525.148148","0.000000","20.407407","499.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.500000","1860.625000",,,,,"0.000000","0.000000",,,"7328.750000","9043.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.794167",,"28.794167",,"28.794167",,,,,,,"2946.666667",,,,,"5759.958333",,"6.311111",,"1305.400000",,,,"1410.028571","1.044444","0.666667","6.377778","37.111111","0.000000","380.555556","0.000000","10.703704","368.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.000000","2956.750000",,,,,"0.000000","0.000000",,,"8895.000000","11428.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.132500",,"30.132500",,"30.132500",,,,,,,"2985.083333",,,,,"6027.416667",,"3.733333",,"1372.088889",,,,"185.800000","0.955556","0.311111","3.933333","46.666667","0.000000","473.296296","0.000000","9.518519","462.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","2649.125000",,,,,"0.000000","0.000000",,,"8579.250000","10945.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.247917",,"26.247917",,"26.247917",,,,,,,"3586.083333",,,,,"5250.541667",,"6.822222",,"1792.822222",,,,"35.971429","1.333333","0.377778","6.400000","37.555556","0.000000","372.888889","0.000000","13.148148","358.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.250000","3696.250000",,,,,"0.000000","0.000000",,,"9983.625000","13190.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.460833",,"26.460833",,"26.460833",,,,,,,"3610.125000",,,,,"5293.166667",,"317.622222",,"2913.555556",,,,"52.485714","6.688889","1.822222","7.688889","50.155556","0.000000","544.481481","0.000000","71.888889","471.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"658.125000","6003.000000",,,,,"0.000000","0.000000",,,"15490.125000","19691.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.725833",,"26.725833",,"26.725833",,,,,,,"3503.375000",,,,,"5345.958333",,"4.688889",,"1796.844444",,,,"34.428571","1.111111","0.733333","4.933333","35.866667","0.000000","353.259259","0.000000","11.000000","340.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","3539.375000",,,,,"0.000000","0.000000",,,"9893.250000","12720.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.754167",,"24.754167",,"24.754167",,,,,,,"3637.333333",,,,,"4951.666667",,"3.466667",,"1687.288889",,,,"33.714286","0.933333","0.311111","4.622222","35.488889","0.000000","349.666667","0.000000","9.000000","339.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.875000","3469.750000",,,,,"0.000000","0.000000",,,"9989.125000","12468.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.119583",,"24.119583",,"24.119583",,,,,,,"3458.333333",,,,,"4824.625000",,"8.288889",,"1632.711111",,,,"34.657143","1.466667","0.333333","4.688889","35.844444","0.000000","359.592593","0.000000","13.407407","343.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","223.285714",,,,,"0.000000","0.000000",,,"8630.125000","10818.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.765833",,"23.765833",,"23.765833",,,,,,,"3944.208333",,,,,"4754.208333",,"22.155556",,"582.155556",,,,"38.714286","2.044444","0.177778","3.133333","40.577778","0.000000","436.888889","0.000000","22.111111","410.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.000000","1610.875000",,,,,"0.000000","0.000000",,,"7299.500000","8270.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.970833",,"23.970833",,"23.970833",,,,,,,"3990.666667",,,,,"4795.333333",,"4.777778",,"385.822222",,,,"35.142857","1.133333","0.266667","1.777778","37.533333","0.000000","388.370370","0.000000","11.185185","375.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","805.875000",,,,,"0.000000","0.000000",,,"3684.125000","4286.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.576250",,"27.576250",,"27.576250",,,,,,,"3005.833333",,,,,"5516.291667",,"4.622222",,"478.844444",,,,"36.142857","1.022222","0.222222","2.622222","38.911111","0.000000","403.814815","0.000000","10.000000","392.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","870.500000",,,,,"0.000000","0.000000",,,"2351.750000","3019.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.643333",,"27.643333",,"27.643333",,,,,,,"3044.541667",,,,,"5529.541667",,"64.644444",,"1175.955556",,,,"37.742857","3.133333","0.488889","4.355556","38.111111","0.000000","406.444444","0.000000","33.037037","371.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.750000","2135.875000",,,,,"0.000000","0.000000",,,"4715.250000","6257.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.459167",,"31.459167",,"31.459167",,,,,,,"1749.458333",,,,,"6293.083333",,"3.844444",,"469.777778",,,,"1581.542857","0.866667","0.422222","2.288889","34.444444","0.000000","358.666667","0.000000","8.703704","348.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","996.250000",,,,,"0.000000","0.000000",,,"2569.875000","3386.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.017500",,"31.017500",,"31.017500",,,,,,,"1735.458333",,,,,"6204.125000",,"4.866667",,"399.711111",,,,"2372.742857","1.088889","0.222222","2.222222","33.177778","0.000000","346.444444","0.000000","10.703704","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","721.625000",,,,,"0.000000","0.000000",,,"2048.250000","2611.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.515417",,"25.515417",,"25.515417",,,,,,,"2905.333333",,,,,"5104.291667",,"3.955556",,"269.333333",,,,"1807.171429","0.955556","0.466667","1.888889","18.200000","0.000000","197.629630","0.000000","9.666667","186.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.250000","557.000000",,,,,"0.000000","0.000000",,,"2262.625000","2340.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.461250",,"28.461250",,"28.461250",,,,,,,"2376.708333",,,,,"5693.041667",,"10.377778",,"666.755556",,,,"1566.885714","1.711111","1.888889","2.488889","41.088889","0.000000","438.000000","0.000000","16.333333","418.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1240.000000",,,,,"0.000000","0.000000",,,"3354.000000","4094.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.708750",,"26.708750",,"26.708750",,,,,,,"2640.333333",,,,,"5342.791667",,"4.511111",,"455.866667",,,,"1565.000000","0.977778","0.133333","2.266667","32.866667","0.000000","337.370370","0.000000","9.481481","326.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","862.000000",,,,,"0.000000","0.000000",,,"2340.500000","3036.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.004167",,"30.004167",,"30.004167",,,,,,,"2952.875000",,,,,"6001.833333",,"4.822222",,"1185.377778",,,,"347.628571","0.911111","0.777778","2.822222","116.111111","0.000000","1251.925926","0.000000","9.185185","1241.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.625000","2143.000000",,,,,"0.000000","0.000000",,,"5799.125000","7420.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.079167",,"27.079167",,"27.079167",,,,,,,"3543.291667",,,,,"5416.833333",,"146.888889",,"1047.355556",,,,"102.657143","3.933333","0.355556","2.644444","113.800000","0.000000","1274.148148","0.000000","42.481481","1230.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"231.875000","2085.500000",,,,,"0.000000","0.000000",,,"7827.500000","9313.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.192083",,"24.192083",,"24.192083",,,,,,,"3570.375000",,,,,"4839.541667",,"473.533333",,"1289.311111",,,,"109.228571","14.022222","0.466667","2.911111","110.777778","0.000000","1342.148148","0.000000","153.777778","1186.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1025.250000","2656.875000",,,,,"0.000000","0.000000",,,"12709.125000","13609.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.317917",,"24.317917",,"24.317917",,,,,,,"3180.750000",,,,,"4864.416667",,"28.755556",,"1176.911111",,,,"92.971429","1.822222","0.333333","2.000000","104.222222","0.000000","1132.703704","0.000000","18.222222","1113.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.500000","2223.250000",,,,,"0.000000","0.000000",,,"6840.875000","8657.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.021667",,"26.021667",,"26.021667",,,,,,,"3431.416667",,,,,"5205.208333",,"330.777778",,"1422.577778",,,,"59.485714","6.133333","0.422222","5.488889","60.200000","0.000000","680.148148","0.000000","65.851852","612.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"659.500000","2776.000000",,,,,"0.000000","0.000000",,,"7590.000000","9186.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.982917",,"25.982917",,"25.982917",,,,,,,"3354.541667",,,,,"5197.375000",,"46.866667",,"1277.155556",,,,"79.514286","2.155556","0.444444","3.533333","87.755556","0.000000","948.629630","0.000000","22.555556","924.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.625000","2404.125000",,,,,"0.000000","0.000000",,,"5945.500000","7793.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.697083",,"22.697083",,"22.697083",,,,,,,"3838.000000",,,,,"4540.291667",,"386.800000",,"1148.755556",,,,"44.628571","10.266667","0.444444","2.177778","38.866667","0.000000","505.000000","0.000000","111.185185","388.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.500000","27.285714",,,,,"0.000000","0.000000",,,"6327.500000","7327.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.809167",,"23.809167",,"23.809167",,,,,,,"3817.083333",,,,,"4762.708333",,"1003.533333",,"689.311111",,,,"58.600000","23.200000","0.444444","2.155556","42.400000","0.000000","678.925926","0.000000","254.814815","422.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2026.875000","1270.375000",,,,,"0.000000","0.000000",,,"8425.750000","7120.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.437500",,"23.437500",,"23.437500",,,,,,,"3851.333333",,,,,"4688.625000",,"898.688889",,"1114.688889",,,,"44.114286","19.466667","0.644444","5.266667","29.755556","0.000000","507.259259","0.000000","214.148148","291.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1667.250000","2101.500000",,,,,"0.000000","0.000000",,,"8415.000000","8224.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.730833",,"25.730833",,"25.730833",,,,,,,"2614.333333",,,,,"5147.291667",,"644.177778",,"882.088889",,,,"58.171429","15.888889","0.711111","3.533333","49.422222","0.000000","682.296296","0.000000","174.296296","506.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1298.375000","1634.375000",,,,,"0.000000","0.000000",,,"7154.750000","7115.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.152083",,"23.152083",,"23.152083",,,,,,,"3951.166667",,,,,"4631.208333",,"7.977778",,"1052.466667",,,,"2694.857143","1.311111","0.711111","4.355556","22.222222","0.000000","234.444444","0.000000","13.666667","219.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.250000","1993.500000",,,,,"0.000000","0.000000",,,"3985.250000","5608.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.417917",,"24.417917",,"24.417917",,,,,,,"3591.208333",,,,,"4884.708333",,"21.022222",,"495.022222",,,,"2548.657143","2.511111","0.488889","3.888889","23.444444","0.000000","261.370370","0.000000","26.592593","233.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","1015.875000",,,,,"0.000000","0.000000",,,"2540.000000","3241.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.929583",,"27.929583",,"27.929583",,,,,,,"2147.083333",,,,,"5586.708333",,"21.533333",,"868.666667",,,,"1876.285714","3.022222","0.533333","1.977778","47.066667","0.000000","515.185185","0.000000","32.481481","481.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"103.375000","1620.125000",,,,,"0.000000","0.000000",,,"4532.250000","5284.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.112500",,"24.112500",,"24.112500",,,,,,,"3121.958333",,,,,"4823.291667",,"18.111111",,"709.733333",,,,"1661.142857","2.066667","0.333333","3.177778","35.377778","0.000000","380.666667","0.000000","21.851852","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1426.000000",,,,,"0.000000","0.000000",,,"4878.250000","5970.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.082500",,"20.082500",,"20.082500",,,,,,,"4590.208333",,,,,"4017.583333",,"34.311111",,"1322.733333",,,,"363.428571","2.977778","0.266667","2.422222","32.333333","0.000000","358.444444","0.000000","30.111111","325.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.250000","2724.625000",,,,,"0.000000","0.000000",,,"9158.750000","11000.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.281667",,"21.281667",,"21.281667",,,,,,,"4209.166667",,,,,"4257.250000",,"151.733333",,"1575.933333",,,,"47.514286","3.622222","1.111111","3.377778","48.733333","0.000000","524.037037","0.000000","38.740741","483.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.142857","3256.750000",,,,,"0.000000","0.000000",,,"7761.250000","12288.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.682083",,"21.682083",,"21.682083",,,,,,,"4104.000000",,,,,"4337.208333",,"254.688889",,"1027.733333",,,,"42.685714","5.488889","0.911111","3.111111","41.422222","0.000000","467.592593","0.000000","60.518519","405.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.000000","2192.000000",,,,,"0.000000","0.000000",,,"5907.750000","10556.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.445417",,"17.445417",,"17.445417",,,,,,,"4937.250000",,,,,"3489.875000",,"929.755556",,"924.733333",,,,"43.942857","17.711111","0.822222","2.600000","31.600000","0.000000","515.814815","0.000000","195.185185","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1685.625000","2098.750000",,,,,"0.000000","0.000000",,,"8524.875000","11662.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.408750",,"20.408750",,"20.408750",,,,,,,"4209.791667",,,,,"4082.750000",,"1182.800000",,"520.133333",,,,"63.685714","27.777778","6.955556","1.377778","43.911111","0.000000","753.740741","0.000000","306.111111","446.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2276.000000","1301.625000",,,,,"0.000000","0.000000",,,"9281.250000","11322.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.401250",,"18.401250",,"18.401250",,,,,,,"4867.000000",,,,,"3681.041667",,"956.844444",,"901.733333",,,,"44.428571","19.400000","1.000000","6.666667","30.333333","0.000000","517.407407","0.000000","212.814815","303.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1817.500000","1862.375000",,,,,"0.000000","0.000000",,,"8540.375000","9110.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.967500",,"21.967500",,"21.967500",,,,,,,"4266.583333",,,,,"4394.375000",,"82.644444",,"495.577778",,,,"39.457143","4.644444","0.377778","2.933333","38.800000","0.000000","440.000000","0.000000","51.370370","387.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"270.875000","927.125000",,,,,"0.000000","0.000000",,,"3152.625000","3856.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.862917",,"21.862917",,"21.862917",,,,,,,"4124.875000",,,,,"4373.541667",,"41.488889",,"458.800000",,,,"42.200000","2.222222","0.244444","1.377778","44.266667","0.000000","471.703704","0.000000","24.888889","443.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"88.875000","859.875000",,,,,"0.000000","0.000000",,,"2630.250000","3163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.792500",,"23.792500",,"23.792500",,,,,,,"3762.458333",,,,,"4759.291667",,"697.288889",,"374.155556",,,,"41.314286","12.177778","0.222222","1.244444","33.800000","0.000000","479.962963","0.000000","131.185185","345.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1136.500000","27.571429",,,,,"0.000000","0.000000",,,"4971.625000","4275.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.510417",,"22.510417",,"22.510417",,,,,,,"4407.416667",,,,,"4503.166667",,"1482.488889",,"425.577778",,,,"58.971429","30.177778","0.622222","1.600000","36.844444","0.000000","716.111111","0.000000","332.148148","382.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2987.625000","801.375000",,,,,"0.000000","0.000000",,,"10085.375000","7308.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.292083",,"32.292083",,"32.292083",,,,,,,"1454.958333",,,,,"6459.333333",,"1168.111111",,"1076.311111",,,,"56.114286","23.911111","0.222222","4.200000","39.400000","0.000000","668.740741","0.000000","263.259259","404.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2160.125000","2046.750000",,,,,"0.000000","0.000000",,,"9864.500000","8941.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.538333",,"24.538333",,"24.538333",,,,,,,"2955.875000",,,,,"4908.625000",,"637.911111",,"737.133333",,,,"1997.085714","14.244444","0.911111","3.111111","32.355556","0.000000","490.259259","0.000000","156.814815","331.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1336.375000","2480.375000",,,,,"0.000000","0.000000",,,"12365.875000","21627.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.722083",,"23.722083",,"23.722083",,,,,,,"3415.291667",,,,,"4745.166667",,"3.488889",,"300.644444",,,,"2256.542857","0.888889","0.200000","3.355556","21.711111","0.000000","238.074074","0.000000","9.111111","227.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","1136.375000",,,,,"0.000000","0.000000",,,"5967.875000","10321.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.935833",,"26.935833",,"26.935833",,,,,,,"3320.791667",,,,,"5388.166667",,"5.200000",,"453.044444",,,,"1802.257143","1.022222","0.244444","1.622222","32.755556","0.000000","355.851852","0.000000","10.148148","344.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.125000","813.375000",,,,,"0.000000","0.000000",,,"2965.875000","3033.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.629583",,"25.629583",,"25.629583",,,,,,,"3299.666667",,,,,"5127.083333",,"9.888889",,"370.622222",,,,"1583.600000","1.355556","0.444444","1.022222","32.711111","0.000000","359.407407","0.000000","13.925926","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","706.125000",,,,,"0.000000","0.000000",,,"2131.625000","2673.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.751250",,"26.751250",,"26.751250",,,,,,,"2614.166667",,,,,"5351.125000",,"4.155556",,"388.822222",,,,"1465.571429","0.844444","0.288889","3.111111","31.644444","0.000000","345.333333","0.000000","8.851852","335.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.375000","804.625000",,,,,"0.000000","0.000000",,,"2357.000000","2940.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.454583",,"22.454583",,"22.454583",,,,,,,"3617.291667",,,,,"4491.958333",,"9.977778",,"308.288889",,,,"59.342857","1.911111","0.444444","1.555556","26.200000","0.000000","293.851852","0.000000","17.555556","273.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","551.375000",,,,,"0.000000","0.000000",,,"1697.500000","2222.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.379583",,"21.379583",,"21.379583",,,,,,,"4372.916667",,,,,"4276.791667",,"972.311111",,"356.955556",,,,"42.457143","18.755556","0.222222","1.666667","29.533333","0.000000","520.000000","0.000000","205.703704","312.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1635.250000","720.875000",,,,,"0.000000","0.000000",,,"6365.000000","5111.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.645417",,"17.645417",,"17.645417",,,,,,,"5236.208333",,,,,"3529.750000",,"1357.600000",,"286.355556",,,,"48.714286","28.511111","0.466667","0.933333","27.044444","0.000000","602.037037","0.000000","313.296296","287.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2751.500000","507.625000",,,,,"0.000000","0.000000",,,"8790.125000","6191.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.974167",,"15.974167",,"15.974167",,,,,,,"5382.916667",,,,,"3195.750000",,"1210.733333",,"989.000000",,,,"52.285714","22.844444","0.288889","3.933333","35.866667","0.000000","613.037037","0.000000","251.370370","360.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.875000","1933.500000",,,,,"0.000000","0.000000",,,"9652.000000","8786.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.382083",,"16.382083",,"16.382083",,,,,,,"5057.666667",,,,,"3277.291667",,"527.066667",,"662.311111",,,,"50.885714","22.377778","0.288889","3.688889","35.088889","0.000000","609.777778","0.000000","247.777778","360.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1096.750000","1172.250000",,,,,"0.000000","0.000000",,,"5754.000000","5650.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.439167",,"14.439167",,"14.439167",,,,,,,"5829.458333",,,,,"2888.916667",,"1724.355556",,"1871.288889",,,,"67.457143","40.777778","0.400000","4.866667","35.244444","0.000000","795.148148","0.000000","448.555556","345.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3289.500000","3484.125000",,,,,"0.000000","0.000000",,,"15080.375000","14269.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.093750",,"16.093750",,"16.093750",,,,,,,"4969.333333",,,,,"3219.666667",,"1567.200000",,"2178.755556",,,,"73.171429","39.355556","0.511111","6.577778","42.311111","0.000000","847.259259","0.000000","434.851852","408.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.142857","4189.750000",,,,,"0.000000","0.000000",,,"15556.875000","15637.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.780000",,"14.780000",,"14.780000",,,,,,,"5772.666667",,,,,"2956.708333",,"114.488889",,"275.200000",,,,"30.285714","6.488889","1.400000","1.822222","27.644444","0.000000","362.777778","0.000000","70.777778","290.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"302.625000","729.250000",,,,,"0.000000","0.000000",,,"4848.000000","5096.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.180417",,"19.180417",,"19.180417",,,,,,,"4019.833333",,,,,"3837.166667",,"16.777778",,"518.066667",,,,"45.600000","2.111111","0.266667","1.422222","49.044444","0.000000","540.333333","0.000000","20.777778","516.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.750000","1187.875000",,,,,"0.000000","0.000000",,,"6836.375000","7633.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.755000",,"18.755000",,"18.755000",,,,,,,"4642.625000",,,,,"3751.958333",,"9.977778",,"1090.666667",,,,"40.857143","1.177778","0.622222","6.844444","44.200000","0.000000","468.592593","0.000000","12.629630","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"287.500000","2144.625000",,,,,"0.000000","0.000000",,,"8776.250000","7374.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.521250",,"19.521250",,"19.521250",,,,,,,"4656.666667",,,,,"3905.416667",,"5.933333",,"369.044444",,,,"2215.828571","1.000000","0.288889","3.511111","33.466667","0.000000","367.592593","0.000000","10.296296","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","653.750000",,,,,"0.000000","0.000000",,,"2033.375000","2523.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.953333",,"20.953333",,"20.953333",,,,,,,"4080.000000",,,,,"4191.500000",,"5.244444",,"234.822222",,,,"2557.285714","0.977778","0.777778","3.822222","21.400000","0.000000","239.222222","0.000000","9.370370","228.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","490.500000",,,,,"0.000000","0.000000",,,"1515.250000","1820.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.012917",,"22.012917",,"22.012917",,,,,,,"3810.583333",,,,,"4403.375000",,"7.355556",,"544.022222",,,,"1976.657143","1.022222","0.755556","1.822222","43.800000","0.000000","476.592593","0.000000","10.222222","464.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1028.375000",,,,,"0.000000","0.000000",,,"3528.625000","3749.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.217500",,"20.217500",,"20.217500",,,,,,,"4423.333333",,,,,"4044.416667",,"5.333333",,"357.711111",,,,"1749.857143","0.977778","0.311111","1.133333","35.933333","0.000000","388.259259","0.000000","10.185185","376.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","637.375000",,,,,"0.000000","0.000000",,,"2064.000000","2502.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.260417",,"17.260417",,"17.260417",,,,,,,"5597.166667",,,,,"3452.958333",,"3.177778",,"301.333333",,,,"639.971429","0.933333","0.133333","0.866667","31.088889","0.000000","338.888889","0.000000","8.740741","328.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","22.571429",,,,,"0.000000","0.000000",,,"1906.625000","2458.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.290417",,"18.290417",,"18.290417",,,,,,,"5549.000000",,,,,"3659.250000",,"3.888889",,"379.377778",,,,"36.028571","0.955556","0.088889","7.022222","39.555556","0.000000","425.370370","0.000000","9.148148","414.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","669.625000",,,,,"0.000000","0.000000",,,"2161.250000","2645.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.166250",,"19.166250",,"19.166250",,,,,,,"5151.791667",,,,,"3834.000000",,"9.888889",,"458.266667",,,,"44.428571","1.666667","0.355556","9.600000","47.800000","0.000000","514.296296","0.000000","14.962963","496.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","851.875000",,,,,"0.000000","0.000000",,,"2580.000000","3283.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.640000",,"16.640000",,"16.640000",,,,,,,"5680.958333",,,,,"3329.291667",,"3.244444",,"311.733333",,,,"30.085714","0.844444","0.177778","6.111111","32.533333","0.000000","345.703704","0.000000","8.222222","336.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","624.000000",,,,,"0.000000","0.000000",,,"1951.000000","2508.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.127500",,"18.127500",,"18.127500",,,,,,,"5104.958333",,,,,"3626.458333",,"3.466667",,"452.044444",,,,"45.028571","0.844444","0.088889","2.577778","49.466667","0.000000","523.148148","0.000000","8.444444","513.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","896.625000",,,,,"0.000000","0.000000",,,"3703.875000","4271.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.001667",,"16.001667",,"16.001667",,,,,,,"5675.250000",,,,,"3201.166667",,"4.022222",,"409.888889",,,,"27.142857","1.044444","0.133333","8.688889","29.133333","0.000000","313.000000","0.000000","9.777778","301.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","954.875000",,,,,"0.000000","0.000000",,,"5902.750000","6507.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.890833",,"16.890833",,"16.890833",,,,,,,"5484.541667",,,,,"3379.166667",,"3.911111",,"376.466667",,,,"36.257143","0.777778","7.444444","2.688889","39.755556","0.000000","424.296296","0.000000","8.111111","414.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","796.000000",,,,,"0.000000","0.000000",,,"3694.250000","4214.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.994583",,"16.994583",,"16.994583",,,,,,,"5031.416667",,,,,"3399.791667",,"27.622222",,"409.288889",,,,"42.971429","2.800000","0.200000","1.911111","44.911111","0.000000","502.555556","0.000000","31.111111","467.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.875000","869.000000",,,,,"0.000000","0.000000",,,"3538.250000","4143.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.867083",,"16.867083",,"16.867083",,,,,,,"5025.000000",,,,,"3374.333333",,"6.311111",,"379.844444",,,,"33.371429","1.022222","0.244444","2.400000","36.488889","0.000000","396.333333","0.000000","10.259259","384.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","978.125000",,,,,"0.000000","0.000000",,,"6206.000000","7067.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.347500",,"16.347500",,"16.347500",,,,,,,"5591.750000",,,,,"3270.458333",,"11.444444",,"892.644444",,,,"38.171429","2.755556","0.466667","3.666667","38.866667","0.000000","428.518519","0.000000","24.814815","397.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.125000","1788.250000",,,,,"0.000000","0.000000",,,"6107.750000","7474.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.967083",,"26.967083",,"26.967083",,,,,,,"2652.458333",,,,,"5394.250000",,"6.622222",,"704.444444",,,,"29.885714","1.133333","0.488889","4.311111","32.133333","0.000000","346.111111","0.000000","11.111111","333.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.125000","1332.125000",,,,,"0.000000","0.000000",,,"3085.000000","4097.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.894583",,"23.894583",,"23.894583",,,,,,,"2993.291667",,,,,"4779.791667",,"5.511111",,"656.777778",,,,"2058.657143","0.955556","0.333333","2.622222","33.977778","0.000000","361.000000","0.000000","9.703704","349.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","1300.500000",,,,,"0.000000","0.000000",,,"3112.250000","4170.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.480833",,"22.480833",,"22.480833",,,,,,,"3264.125000",,,,,"4497.041667",,"3.111111",,"351.533333",,,,"2416.285714","0.844444","0.088889","1.044444","31.511111","0.000000","331.851852","0.000000","8.370370","322.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","600.125000",,,,,"0.000000","0.000000",,,"1822.250000","2352.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.159583",,"22.159583",,"22.159583",,,,,,,"3800.250000",,,,,"4432.708333",,"5.066667",,"412.044444",,,,"1905.314286","1.044444","0.577778","1.066667","28.177778","0.000000","303.962963","0.000000","10.444444","292.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","779.750000",,,,,"0.000000","0.000000",,,"2819.500000","2903.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.746667",,"25.746667",,"25.746667",,,,,,,"3184.875000",,,,,"5150.166667",,"3.377778",,"443.311111",,,,"1794.971429","0.933333","0.555556","1.222222","43.888889","0.000000","459.407407","0.000000","8.777778","449.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","876.500000",,,,,"0.000000","0.000000",,,"2633.625000","3233.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.638333",,"21.638333",,"21.638333",,,,,,,"3609.583333",,,,,"4328.708333",,"4.244444",,"466.200000",,,,"980.828571","1.044444","0.622222","0.933333","44.688889","0.000000","468.555556","0.000000","10.037037","457.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","840.750000",,,,,"0.000000","0.000000",,,"2431.250000","2968.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.048333",,"19.048333",,"19.048333",,,,,,,"4727.583333",,,,,"3810.583333",,"4.044444",,"438.711111",,,,"36.514286","0.866667","0.377778","1.200000","39.644444","0.000000","417.481481","0.000000","8.592593","407.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","884.125000",,,,,"0.000000","0.000000",,,"2901.625000","3521.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.721250",,"18.721250",,"18.721250",,,,,,,"4237.916667",,,,,"3745.208333",,"8.377778",,"410.244444",,,,"34.142857","1.555556","0.244444","1.000000","36.111111","0.000000","384.629630","0.000000","14.074074","367.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","897.625000",,,,,"0.000000","0.000000",,,"5899.375000","6469.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.900000",,"17.900000",,"17.900000",,,,,,,"5318.458333",,,,,"3580.958333",,"5.422222",,"285.444444",,,,"24.600000","0.866667","0.311111","3.133333","26.466667","0.000000","284.407407","0.000000","9.444444","273.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","676.500000",,,,,"0.000000","0.000000",,,"3943.375000","4411.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.029167",,"19.029167",,"19.029167",,,,,,,"4767.000000",,,,,"3806.958333",,"3.600000",,"359.444444",,,,"35.914286","0.933333","0.333333","7.622222","38.844444","0.000000","404.666667","0.000000","9.407407","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","716.500000",,,,,"0.000000","0.000000",,,"2229.000000","2659.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.484167",,"21.484167",,"21.484167",,,,,,,"4425.125000",,,,,"4297.625000",,"4.911111",,"400.600000",,,,"39.285714","1.044444","0.266667","1.288889","42.533333","0.000000","444.777778","0.000000","10.000000","433.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","704.875000",,,,,"0.000000","0.000000",,,"2210.000000","2776.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.976250",,"20.976250",,"20.976250",,,,,,,"4695.791667",,,,,"4196.041667",,"4.222222",,"407.800000",,,,"39.171429","0.955556","0.088889","1.422222","42.800000","0.000000","454.518519","0.000000","9.851852","443.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","803.000000",,,,,"0.000000","0.000000",,,"2422.375000","3400.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.095833",,"18.095833",,"18.095833",,,,,,,"5400.208333",,,,,"3620.250000",,"22.000000",,"265.066667",,,,"25.542857","1.822222","0.466667","2.066667","26.311111","0.000000","298.555556","0.000000","21.037037","273.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","514.375000",,,,,"0.000000","0.000000",,,"1679.125000","2027.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.520000",,"16.520000",,"16.520000",,,,,,,"4888.833333",,,,,"3305.041667",,"13.711111",,"256.822222",,,,"25.371429","1.533333","0.311111","0.800000","26.666667","0.000000","295.111111","0.000000","16.074074","277.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"58.125000","516.000000",,,,,"0.000000","0.000000",,,"1783.750000","2113.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.681250",,"23.681250",,"23.681250",,,,,,,"3077.416667",,,,,"4736.958333",,"6.288889",,"584.177778",,,,"44.371429","1.044444","0.355556","1.244444","48.466667","0.000000","510.296296","0.000000","10.555556","498.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.250000","1048.500000",,,,,"0.000000","0.000000",,,"2854.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.489583",,"17.489583",,"17.489583",,,,,,,"5439.500000",,,,,"3499.291667",,"10.533333",,"568.933333",,,,"26.514286","1.600000","0.311111","2.266667","27.822222","0.000000","305.407407","0.000000","14.518519","288.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1106.375000",,,,,"0.000000","0.000000",,,"2615.000000","3403.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.895417",,"20.895417",,"20.895417",,,,,,,"4113.708333",,,,,"4179.791667",,"5.377778",,"346.377778",,,,"2389.600000","0.888889","0.133333","3.466667","29.533333","0.000000","325.074074","0.000000","11.444444","312.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","610.375000",,,,,"0.000000","0.000000",,,"1899.625000","2370.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.029583",,"19.029583",,"19.029583",,,,,,,"4612.375000",,,,,"3807.041667",,"3.111111",,"339.755556",,,,"2454.742857","0.844444","0.311111","2.155556","33.933333","0.000000","368.740741","0.000000","8.185185","359.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","654.250000",,,,,"0.000000","0.000000",,,"2012.250000","2376.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.242917",,"21.242917",,"21.242917",,,,,,,"4067.625000",,,,,"4249.458333",,"6.177778",,"486.333333",,,,"1955.485714","1.088889","0.355556","1.755556","45.911111","0.000000","498.666667","0.000000","11.037037","486.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","1000.250000",,,,,"0.000000","0.000000",,,"4929.500000","5223.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.339583",,"20.339583",,"20.339583",,,,,,,"4154.458333",,,,,"4069.041667",,"46.688889",,"520.844444",,,,"1620.628571","2.933333","0.222222","1.088889","43.244444","0.000000","490.962963","0.000000","31.555556","457.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"133.625000","1203.125000",,,,,"0.000000","0.000000",,,"7230.250000","7737.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.332917",,"19.332917",,"19.332917",,,,,,,"4467.208333",,,,,"3867.666667",,"4.266667",,"391.688889",,,,"743.857143","0.955556","1.288889","1.133333","39.533333","0.000000","429.592593","0.000000","9.296296","418.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","745.375000",,,,,"0.000000","0.000000",,,"2823.875000","3396.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.508333",,"17.508333",,"17.508333",,,,,,,"4986.541667",,,,,"3502.750000",,"3.422222",,"337.711111",,,,"29.885714","0.755556","0.333333","0.733333","32.711111","0.000000","351.259259","0.000000","8.074074","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","681.750000",,,,,"0.000000","0.000000",,,"1968.500000","2470.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.907083",,"18.907083",,"18.907083",,,,,,,"4721.833333",,,,,"3782.250000",,"2.733333",,"380.422222",,,,"35.771429","0.933333","0.733333","0.933333","39.311111","0.000000","424.074074","0.000000","9.074074","413.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"350.125000","697.250000",,,,,"0.000000","0.000000",,,"6989.625000","2715.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.355417",,"19.355417",,"19.355417",,,,,,,"4653.541667",,,,,"3872.125000",,"13.777778",,"469.200000",,,,"43.400000","1.577778","1.377778","0.800000","46.800000","0.000000","504.259259","0.000000","14.629630","486.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"694.750000","9.285714",,,,,"0.000000","0.000000",,,"12139.875000","3149.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.069167",,"17.069167",,"17.069167",,,,,,,"5198.500000",,,,,"3414.666667",,"3.600000",,"362.666667",,,,"30.771429","0.955556","0.266667","4.000000","33.644444","0.000000","367.814815","0.000000","9.481481","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"347.500000","701.875000",,,,,"0.000000","0.000000",,,"6761.750000","2765.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.901667",,"18.901667",,"18.901667",,,,,,,"4823.291667",,,,,"3781.250000",,"3.466667",,"410.711111",,,,"34.285714","0.933333","0.955556","1.733333","37.577778","0.000000","405.518519","0.000000","8.888889","395.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","784.625000",,,,,"0.000000","0.000000",,,"2300.500000","2782.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.889583",,"16.889583",,"16.889583",,,,,,,"5516.916667",,,,,"3379.000000",,"5.577778",,"539.577778",,,,"36.485714","0.955556","0.622222","8.933333","40.066667","0.000000","433.740741","0.000000","9.555556","422.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","996.375000",,,,,"0.000000","0.000000",,,"2664.750000","3528.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.927083",,"16.927083",,"16.927083",,,,,,,"5165.500000",,,,,"3386.416667",,"3.911111",,"354.755556",,,,"31.942857","0.866667","0.155556","3.977778","35.266667","0.000000","389.777778","0.000000","8.740741","379.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","710.000000",,,,,"0.000000","0.000000",,,"2202.625000","2630.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.045833",,"16.045833",,"16.045833",,,,,,,"5484.125000",,,,,"3210.041667",,"23.311111",,"292.377778",,,,"28.571429","2.244444","0.377778","3.800000","29.422222","0.000000","337.592593","0.000000","24.333333","308.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","507.000000",,,,,"0.000000","0.000000",,,"1902.125000","2261.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.724167",,"22.724167",,"22.724167",,,,,,,"3898.916667",,,,,"4545.625000",,"4.555556",,"471.066667",,,,"40.714286","0.911111","1.644444","4.733333","44.377778","0.000000","469.333333","0.000000","9.555556","458.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","928.375000",,,,,"0.000000","0.000000",,,"2699.750000","3358.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.647500",,"25.647500",,"25.647500",,,,,,,"2344.416667",,,,,"5130.250000",,"3.755556",,"531.911111",,,,"39.600000","0.955556","1.666667","1.133333","43.577778","0.000000","470.000000","0.000000","9.555556","458.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.250000","975.750000",,,,,"0.000000","0.000000",,,"2741.000000","3469.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.855417",,"20.855417",,"20.855417",,,,,,,"4416.916667",,,,,"4172.166667",,"17.688889",,"457.200000",,,,"2304.742857","2.066667","0.244444","2.511111","15.711111","0.000000","182.333333","0.000000","21.222222","159.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"186.375000","1120.375000",,,,,"0.000000","0.000000",,,"7955.250000","7187.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.089167",,"22.089167",,"22.089167",,,,,,,"3299.625000",,,,,"4418.833333",,"9.200000",,"418.466667",,,,"2290.428571","1.577778","0.133333","1.000000","38.888889","0.000000","425.333333","0.000000","14.629630","407.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","910.125000",,,,,"0.000000","0.000000",,,"4879.000000","5460.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.548333",,"22.548333",,"22.548333",,,,,,,"3683.750000",,,,,"4510.500000",,"3.688889",,"489.133333",,,,"2029.371429","0.844444","0.266667","1.022222","35.955556","0.000000","391.851852","0.000000","8.666667","381.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.125000","914.750000",,,,,"0.000000","0.000000",,,"3228.750000","3400.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.208333",,"22.208333",,"22.208333",,,,,,,"3911.958333",,,,,"4442.541667",,"70.066667",,"366.866667",,,,"1816.542857","2.066667","0.866667","0.755556","37.066667","0.000000","415.555556","0.000000","21.592593","392.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","706.750000",,,,,"0.000000","0.000000",,,"2609.750000","3049.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.555417",,"19.555417",,"19.555417",,,,,,,"4517.833333",,,,,"3912.333333",,"107.000000",,"457.866667",,,,"714.342857","8.977778","0.711111","0.866667","44.866667","0.000000","568.407407","0.000000","98.000000","468.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.500000","857.375000",,,,,"0.000000","0.000000",,,"3131.625000","3656.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.178750",,"17.178750",,"17.178750",,,,,,,"5252.416667",,,,,"3436.833333",,"3.933333",,"414.755556",,,,"38.942857","0.955556","1.022222","1.177778","42.400000","0.000000","448.370370","0.000000","9.555556","437.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","778.125000",,,,,"0.000000","0.000000",,,"2386.375000","2984.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.921667",,"15.921667",,"15.921667",,,,,,,"5532.750000",,,,,"3185.000000",,"3.622222",,"335.955556",,,,"31.514286","0.933333","0.133333","1.088889","34.244444","0.000000","368.222222","0.000000","9.333333","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","642.125000",,,,,"0.000000","0.000000",,,"1990.250000","2511.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.666667",,"15.666667",,"15.666667",,,,,,,"5535.166667",,,,,"3134.166667",,"2.688889",,"279.644444",,,,"27.028571","1.022222","0.088889","0.555556","29.400000","0.000000","321.629630","0.000000","9.296296","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","545.125000",,,,,"0.000000","0.000000",,,"1776.375000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.507917",,"15.507917",,"15.507917",,,,,,,"5821.500000",,,,,"3102.666667",,"3.266667",,"251.311111",,,,"25.257143","0.755556","0.088889","3.600000","27.288889","0.000000","293.962963","0.000000","7.777778","284.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","486.125000",,,,,"0.000000","0.000000",,,"1646.125000","2064.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.332500",,"17.332500",,"17.332500",,,,,,,"5562.416667",,,,,"3467.375000",,"10.600000",,"320.911111",,,,"30.685714","1.555556","0.222222","1.000000","32.466667","0.000000","353.148148","0.000000","13.962963","336.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","585.375000",,,,,"0.000000","0.000000",,,"1896.250000","2292.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.153750",,"17.153750",,"17.153750",,,,,,,"5376.625000",,,,,"3431.750000",,"3.777778",,"371.244444",,,,"34.542857","0.977778","0.266667","1.600000","37.644444","0.000000","404.555556","0.000000","10.074074","392.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","702.125000",,,,,"0.000000","0.000000",,,"2215.500000","2736.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.369583",,"17.369583",,"17.369583",,,,,,,"5201.416667",,,,,"3474.875000",,"4.466667",,"465.800000",,,,"36.257143","1.044444","0.333333","0.888889","39.711111","0.000000","427.481481","0.000000","10.185185","415.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1073.000000",,,,,"0.000000","0.000000",,,"6210.000000","6879.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.876250",,"16.876250",,"16.876250",,,,,,,"5399.541667",,,,,"3376.208333",,"22.444444",,"363.066667",,,,"34.714286","1.911111","0.600000","0.533333","36.777778","0.000000","415.703704","0.000000","21.703704","390.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.250000","836.875000",,,,,"0.000000","0.000000",,,"5151.500000","5560.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.239167",,"17.239167",,"17.239167",,,,,,,"5334.416667",,,,,"3448.791667",,"3.222222",,"437.244444",,,,"39.114286","0.844444","0.466667","1.866667","43.244444","0.000000","464.222222","0.000000","8.407407","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","821.750000",,,,,"0.000000","0.000000",,,"2449.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.825417",,"21.825417",,"21.825417",,,,,,,"3945.958333",,,,,"4366.041667",,"4.244444",,"528.711111",,,,"40.028571","0.955556","0.133333","1.222222","44.133333","0.000000","473.888889","0.000000","9.111111","463.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","994.625000",,,,,"0.000000","0.000000",,,"2731.875000","3423.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.965417",,"18.965417",,"18.965417",,,,,,,"5115.083333",,,,,"3793.958333",,"4.444444",,"226.977778",,,,"2657.028571","0.911111","0.244444","3.000000","21.155556","0.000000","234.962963","0.000000","11.666667","221.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","435.000000",,,,,"0.000000","0.000000",,,"1420.125000","1769.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.496250",,"19.496250",,"19.496250",,,,,,,"4834.833333",,,,,"3900.208333",,"37.488889",,"584.266667",,,,"2533.228571","3.844444","0.844444","1.266667","24.288889","0.000000","292.814815","0.000000","42.629630","248.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1085.750000","1117.875000",,,,,"0.000000","0.000000",,,"16312.750000","4906.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.350833",,"23.350833",,"23.350833",,,,,,,"3144.541667",,,,,"4671.000000",,"10.911111",,"1665.377778",,,,"1814.400000","1.533333","0.733333","2.533333","53.355556","0.000000","558.703704","0.000000","14.888889","540.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1843.875000","3325.750000",,,,,"0.000000","0.000000",,,"33192.875000","13694.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.192083",,"22.192083",,"22.192083",,,,,,,"3385.708333",,,,,"4439.375000",,"13.177778",,"1502.222222",,,,"1583.057143","1.533333","1.044444","2.555556","44.333333","0.000000","469.444444","0.000000","16.333333","451.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1206.000000","3113.250000",,,,,"0.000000","0.000000",,,"24731.750000","13626.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.230833",,"21.230833",,"21.230833",,,,,,,"4000.000000",,,,,"4247.125000",,"13.422222",,"2097.800000",,,,"595.542857","1.466667","0.977778","1.711111","63.977778","0.000000","669.333333","0.000000","15.592593","651.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.625000","327.428571",,,,,"0.000000","0.000000",,,"18969.000000","15797.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.767500",,"16.767500",,"16.767500",,,,,,,"5232.125000",,,,,"3354.750000",,"49.422222",,"1525.511111",,,,"40.257143","3.333333","1.000000","1.866667","41.377778","0.000000","458.555556","0.000000","35.703704","421.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"816.125000","3155.250000",,,,,"0.000000","0.000000",,,"18560.250000","12837.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.559583",,"17.559583",,"17.559583",,,,,,,"4945.166667",,,,,"3513.000000",,"6.400000",,"398.177778",,,,"30.828571","1.288889","0.666667","1.044444","33.044444","0.000000","355.296296","0.000000","13.370370","340.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1012.125000",,,,,"0.000000","0.000000",,,"5606.500000","6623.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.611667",,"19.611667",,"19.611667",,,,,,,"4356.458333",,,,,"3923.291667",,"10.666667",,"454.755556",,,,"43.142857","1.400000","0.622222","0.933333","46.688889","0.000000","496.148148","0.000000","14.518519","480.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.750000","1103.250000",,,,,"0.000000","0.000000",,,"5888.750000","6988.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.563333",,"18.563333",,"18.563333",,,,,,,"4752.666667",,,,,"3713.791667",,"35.044444",,"433.244444",,,,"37.800000","2.111111","0.688889","1.200000","39.288889","0.000000","413.148148","0.000000","22.037037","389.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.250000","1059.500000",,,,,"0.000000","0.000000",,,"5820.000000","6828.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.468333",,"17.468333",,"17.468333",,,,,,,"5227.083333",,,,,"3494.583333",,"21.733333",,"272.200000",,,,"24.657143","2.200000","0.488889","1.066667","24.755556","0.000000","274.851852","0.000000","21.259259","250.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","760.375000",,,,,"0.000000","0.000000",,,"5123.000000","5947.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.432500",,"16.432500",,"16.432500",,,,,,,"5336.291667",,,,,"3287.291667",,"6.933333",,"297.555556",,,,"25.171429","1.133333","0.288889","0.977778","26.844444","0.000000","289.518519","0.000000","11.666667","276.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","844.875000",,,,,"0.000000","0.000000",,,"5391.000000","6423.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.214167",,"18.214167",,"18.214167",,,,,,,"4625.041667",,,,,"3643.708333",,"3.733333",,"418.977778",,,,"36.971429","0.911111","0.755556","1.622222","40.000000","0.000000","415.888889","0.000000","8.962963","405.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1069.625000",,,,,"0.000000","0.000000",,,"5982.625000","7132.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.092500",,"20.092500",,"20.092500",,,,,,,"4672.916667",,,,,"4019.333333",,"24.533333",,"373.000000",,,,"37.314286","2.244444","0.333333","1.155556","38.733333","0.000000","421.629630","0.000000","24.407407","393.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.625000","977.000000",,,,,"0.000000","0.000000",,,"5869.750000","6938.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.136667",,"19.136667",,"19.136667",,,,,,,"4772.791667",,,,,"3828.083333",,"9.088889",,"331.577778",,,,"30.314286","1.288889","1.000000","2.644444","32.244444","0.000000","343.111111","0.000000","13.296296","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","877.750000",,,,,"0.000000","0.000000",,,"5381.125000","6228.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.710417",,"26.710417",,"26.710417",,,,,,,"2685.250000",,,,,"5343.375000",,"6.066667",,"757.888889",,,,"31.114286","0.911111","0.311111","3.200000","33.266667","0.000000","345.518519","0.000000","9.888889","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","1682.000000",,,,,"0.000000","0.000000",,,"6559.375000","8033.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.454583",,"26.454583",,"26.454583",,,,,,,"2795.541667",,,,,"5292.000000",,"3.755556",,"696.866667",,,,"1970.914286","0.844444","0.555556","3.911111","41.444444","0.000000","421.222222","0.000000","8.666667","411.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1514.750000",,,,,"0.000000","0.000000",,,"6970.250000","7983.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.613750",,"28.613750",,"28.613750",,,,,,,"2077.041667",,,,,"5723.750000",,"7.933333",,"432.022222",,,,"2310.028571","1.311111","0.377778","3.733333","39.222222","0.000000","412.333333","0.000000","17.000000","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1010.250000",,,,,"0.000000","0.000000",,,"5913.750000","6604.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.148750",,"26.148750",,"26.148750",,,,,,,"2855.958333",,,,,"5230.625000",,"9.888889",,"1033.800000",,,,"1823.200000","1.511111","0.644444","3.400000","38.933333","0.000000","406.259259","0.000000","14.888889","388.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1360.625000","2202.250000",,,,,"0.000000","0.000000",,,"25491.625000","10754.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.542500",,"26.542500",,"26.542500",,,,,,,"2980.583333",,,,,"5309.708333",,"6.266667",,"1967.400000",,,,"1694.885714","1.177778","8.711111","9.844444","45.777778","0.000000","470.555556","0.000000","12.518519","452.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"913.875000","4017.500000",,,,,"0.000000","0.000000",,,"22199.250000","14736.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.247500",,"22.247500",,"22.247500",,,,,,,"3643.000000",,,,,"4450.500000",,"16.177778",,"1875.044444",,,,"1410.428571","1.622222","6.777778","33.177778","72.866667","0.000000","797.407407","0.000000","17.814815","772.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.750000","3848.625000",,,,,"0.000000","0.000000",,,"10782.000000","13969.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.577500",,"19.577500",,"19.577500",,,,,,,"4489.583333",,,,,"3916.541667",,"14.311111",,"818.177778",,,,"48.942857","1.533333","2.822222","11.666667","53.800000","0.000000","589.740741","0.000000","16.000000","571.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"116.125000","1843.875000",,,,,"0.000000","0.000000",,,"8022.375000","9154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.922500",,"19.922500",,"19.922500",,,,,,,"4614.791667",,,,,"3985.625000",,"6.977778",,"239.977778",,,,"14.057143","1.200000","1.200000","8.422222","14.444444","0.000000","171.481481","0.000000","11.962963","156.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.750000","742.000000",,,,,"0.000000","0.000000",,,"4685.125000","5707.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.128333",,"20.128333",,"20.128333",,,,,,,"4614.708333",,,,,"4026.750000",,"3.866667",,"253.533333",,,,"7.914286","0.977778","1.933333","2.733333","7.644444","0.000000","92.962963","0.000000","9.888889","81.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","743.750000",,,,,"0.000000","0.000000",,,"4617.750000","5487.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.524167",,"20.524167",,"20.524167",,,,,,,"4101.541667",,,,,"4105.916667",,"4.644444",,"193.555556",,,,"8.657143","1.044444","0.644444","2.377778","8.355556","0.000000","100.740741","0.000000","10.814815","88.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","161.714286",,,,,"0.000000","0.000000",,,"2633.125000","3333.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.025833",,"20.025833",,"20.025833",,,,,,,"4754.666667",,,,,"4006.333333",,"6.200000",,"314.088889",,,,"22.857143","1.111111","0.488889","2.288889","23.955556","0.000000","256.481481","0.000000","11.481481","243.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","661.000000",,,,,"0.000000","0.000000",,,"2745.500000","3257.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.644583",,"24.644583",,"24.644583",,,,,,,"3385.083333",,,,,"4929.791667",,"9.000000",,"455.888889",,,,"32.742857","1.866667","1.711111","4.066667","33.533333","0.000000","353.333333","0.000000","16.888889","332.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1079.000000",,,,,"0.000000","0.000000",,,"5806.500000","6764.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.417500",,"30.417500",,"30.417500",,,,,,,"1968.125000",,,,,"6084.416667",,"20.977778",,"620.866667",,,,"39.228571","1.377778","0.755556","3.777778","42.177778","0.000000","446.481481","0.000000","13.592593","431.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1410.375000",,,,,"0.000000","0.000000",,,"6647.000000","7766.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.099583",,"31.099583",,"31.099583",,,,,,,"1622.750000",,,,,"6220.833333",,"22.844444",,"641.511111",,,,"21.457143","1.933333","0.466667","4.711111","21.844444","0.000000","258.333333","0.000000","21.962963","232.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.750000","1472.000000",,,,,"0.000000","0.000000",,,"7079.125000","8198.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.846667",,"33.846667",,"33.846667",,,,,,,"1231.583333",,,,,"6770.291667",,"6.911111",,"910.488889",,,,"55.028571","1.177778","0.977778","2.266667","60.666667","0.000000","644.222222","0.000000","11.629630","631.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.875000","1786.000000",,,,,"0.000000","0.000000",,,"5228.000000","6764.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.419167",,"31.419167",,"31.419167",,,,,,,"1479.583333",,,,,"6285.000000",,"3.311111",,"692.777778",,,,"48.771429","1.022222","0.622222","1.933333","53.666667","0.000000","571.740741","0.000000","10.037037","560.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1310.125000",,,,,"0.000000","0.000000",,,"3380.000000","4489.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.363750",,"22.363750",,"22.363750",,,,,,,"3868.875000",,,,,"4473.625000",,"7.711111",,"1251.933333",,,,"2186.285714","1.155556","0.555556","3.066667","50.711111","0.000000","551.333333","0.000000","11.740741","538.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","2418.000000",,,,,"0.000000","0.000000",,,"5303.000000","7458.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.183750",,"25.183750",,"25.183750",,,,,,,"3059.625000",,,,,"5037.708333",,"8.288889",,"543.155556",,,,"2521.771429","1.266667","0.666667","1.577778","46.088889","0.000000","505.666667","0.000000","12.370370","491.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1040.375000",,,,,"0.000000","0.000000",,,"2897.000000","3725.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.307917",,"26.307917",,"26.307917",,,,,,,"2410.375000",,,,,"5262.416667",,"8.777778",,"649.511111",,,,"1824.571429","1.577778","0.888889","4.066667","52.444444","0.000000","566.407407","0.000000","14.555556","549.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.625000","1231.750000",,,,,"0.000000","0.000000",,,"3575.000000","4529.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.582083",,"25.582083",,"25.582083",,,,,,,"2500.291667",,,,,"5117.583333",,"4.022222",,"706.711111",,,,"1493.371429","0.866667","0.333333","1.400000","50.177778","0.000000","552.111111","0.000000","8.962963","541.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1352.625000",,,,,"0.000000","0.000000",,,"4100.500000","4841.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.095833",,"24.095833",,"24.095833",,,,,,,"2980.208333",,,,,"4820.375000",,"2.844444",,"529.311111",,,,"1179.485714","0.888889","3.466667","1.600000","41.222222","0.000000","458.629630","0.000000","9.037037","448.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","1021.375000",,,,,"0.000000","0.000000",,,"2753.625000","3604.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.577500",,"24.577500",,"24.577500",,,,,,,"2553.458333",,,,,"4916.333333",,"4.266667",,"679.088889",,,,"53.571429","1.000000","0.311111","1.511111","59.755556","0.000000","646.814815","0.000000","9.629630","635.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1276.000000",,,,,"0.000000","0.000000",,,"3411.625000","4392.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.827083",,"23.827083",,"23.827083",,,,,,,"3250.500000",,,,,"4766.500000",,"3.711111",,"628.044444",,,,"50.114286","1.000000","0.733333","1.644444","55.955556","0.000000","609.222222","0.000000","9.703704","598.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"359.250000","1194.500000",,,,,"0.000000","0.000000",,,"8165.375000","4259.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.772500",,"21.772500",,"21.772500",,,,,,,"3418.916667",,,,,"4355.541667",,"4.977778",,"654.266667",,,,"50.228571","1.022222","0.200000","1.733333","55.688889","0.000000","597.222222","0.000000","9.777778","586.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"695.250000","1248.000000",,,,,"0.000000","0.000000",,,"12918.500000","4447.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.560417",,"19.560417",,"19.560417",,,,,,,"4301.541667",,,,,"3912.750000",,"8.288889",,"904.622222",,,,"53.485714","1.355556","0.488889","2.555556","59.177778","0.000000","645.592593","0.000000","13.888889","630.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"368.875000","1719.375000",,,,,"0.000000","0.000000",,,"8976.375000","5812.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.701667",,"20.701667",,"20.701667",,,,,,,"4155.500000",,,,,"4141.458333",,"3.355556",,"618.866667",,,,"37.000000","0.955556","0.600000","2.111111","41.355556","0.000000","460.555556","0.000000","9.037037","450.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1206.875000",,,,,"0.000000","0.000000",,,"3358.250000","4272.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.562917",,"25.562917",,"25.562917",,,,,,,"2528.791667",,,,,"5113.500000",,"11.066667",,"779.911111",,,,"56.657143","1.644444","0.266667","1.044444","62.333333","0.000000","682.370370","0.000000","16.000000","663.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.500000","1671.125000",,,,,"0.000000","0.000000",,,"7806.375000","8922.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.128750",,"23.128750",,"23.128750",,,,,,,"3025.750000",,,,,"4626.625000",,"3.866667",,"741.066667",,,,"58.942857","1.044444","0.622222","1.911111","65.577778","0.000000","704.148148","0.000000","9.777778","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1521.875000",,,,,"0.000000","0.000000",,,"5949.750000","7233.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.652917",,"22.652917",,"22.652917",,,,,,,"3202.041667",,,,,"4531.750000",,"25.377778",,"866.800000",,,,"69.342857","2.200000","0.488889","0.866667","76.133333","0.000000","836.851852","0.000000","24.555556","808.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1635.500000",,,,,"0.000000","0.000000",,,"4478.000000","5761.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.381250",,"31.381250",,"31.381250",,,,,,,"864.000000",,,,,"6277.458333",,"2.422222",,"693.111111",,,,"43.571429","0.844444","0.311111","2.000000","48.622222","0.000000","528.111111","0.000000","7.777778","519.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","1312.875000",,,,,"0.000000","0.000000",,,"3301.250000","4305.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.107917",,"22.107917",,"22.107917",,,,,,,"3755.541667",,,,,"4422.291667",,"5.711111",,"629.600000",,,,"49.114286","1.177778","0.355556","1.244444","54.066667","0.000000","581.296296","0.000000","11.518519","568.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","18.285714",,,,,"0.000000","0.000000",,,"3203.375000","4236.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.283333",,"30.283333",,"30.283333",,,,,,,"1823.416667",,,,,"6057.583333",,"2.444444",,"527.488889",,,,"1741.428571","0.844444","0.088889","1.622222","44.733333","0.000000","479.296296","0.000000","8.222222","469.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","994.875000",,,,,"0.000000","0.000000",,,"2765.875000","3521.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.199583",,"33.199583",,"33.199583",,,,,,,"646.166667",,,,,"6640.875000",,"8.555556",,"529.400000",,,,"1804.371429","1.044444","0.200000","1.088889","42.288889","0.000000","451.037037","0.000000","10.370370","439.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","986.875000",,,,,"0.000000","0.000000",,,"2669.625000","3409.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.924583",,"33.924583",,"33.924583",,,,,,,"729.041667",,,,,"6785.625000",,"2.911111",,"379.888889",,,,"1513.685714","0.933333","0.377778","1.200000","31.533333","0.000000","345.592593","0.000000","9.111111","335.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","726.000000",,,,,"0.000000","0.000000",,,"2076.875000","2626.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.816250",,"29.816250",,"29.816250",,,,,,,"1044.666667",,,,,"5964.166667",,"8.311111",,"673.066667",,,,"1393.685714","1.511111","0.200000","3.200000","48.888889","0.000000","529.555556","0.000000","13.925926","512.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","1257.500000",,,,,"0.000000","0.000000",,,"3963.000000","4588.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.416250",,"27.416250",,"27.416250",,,,,,,"2214.708333",,,,,"5484.083333",,"2.888889",,"507.088889",,,,"1647.171429","0.933333","0.088889","2.200000","45.111111","0.000000","482.962963","0.000000","8.592593","473.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","969.500000",,,,,"0.000000","0.000000",,,"2697.500000","3520.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.286250",,"22.286250",,"22.286250",,,,,,,"3742.500000",,,,,"4458.041667",,"3.000000",,"352.377778",,,,"1107.057143","1.022222","1.066667","2.577778","27.955556","0.000000","315.925926","0.000000","9.629630","304.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","667.000000",,,,,"0.000000","0.000000",,,"1935.500000","2416.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.783750",,"22.783750",,"22.783750",,,,,,,"3420.125000",,,,,"4557.583333",,"2.933333",,"566.088889",,,,"47.000000","1.022222","0.333333","1.111111","51.955556","0.000000","560.814815","0.000000","9.629630","549.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.875000","1085.875000",,,,,"0.000000","0.000000",,,"3340.625000","4170.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.514167",,"20.514167",,"20.514167",,,,,,,"4038.958333",,,,,"4103.625000",,"2.777778",,"615.511111",,,,"41.657143","0.933333","0.244444","2.333333","46.333333","0.000000","505.111111","0.000000","8.555556","495.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.875000","1183.125000",,,,,"0.000000","0.000000",,,"3507.375000","4086.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.709167",,"20.709167",,"20.709167",,,,,,,"4036.000000",,,,,"4142.750000",,"2.755556",,"495.666667",,,,"39.428571","0.844444","1.533333","1.911111","43.711111","0.000000","473.851852","0.000000","8.444444","464.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.750000","1088.375000",,,,,"0.000000","0.000000",,,"5306.375000","6071.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.121250",,"22.121250",,"22.121250",,,,,,,"3625.458333",,,,,"4425.041667",,"3.444444",,"457.955556",,,,"36.742857","0.977778","0.755556","2.622222","40.488889","0.000000","439.148148","0.000000","9.259259","428.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1060.250000",,,,,"0.000000","0.000000",,,"6181.750000","6834.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.841667",,"19.841667",,"19.841667",,,,,,,"4161.083333",,,,,"3969.250000",,"2.933333",,"406.800000",,,,"33.800000","0.933333","0.266667","1.311111","36.977778","0.000000","398.851852","0.000000","9.222222","388.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","776.750000",,,,,"0.000000","0.000000",,,"2275.875000","2937.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.635000",,"20.635000",,"20.635000",,,,,,,"3833.291667",,,,,"4128.208333",,"8.200000",,"617.644444",,,,"53.342857","1.466667","0.533333","2.244444","59.200000","0.000000","653.962963","0.000000","13.222222","638.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","1159.375000",,,,,"0.000000","0.000000",,,"3220.000000","4121.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.099583",,"22.099583",,"22.099583",,,,,,,"3646.958333",,,,,"4420.666667",,"24.688889",,"938.511111",,,,"68.200000","2.155556","0.444444","1.355556","75.333333","0.000000","837.888889","0.000000","23.777778","809.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.000000","1791.000000",,,,,"0.000000","0.000000",,,"4781.625000","6406.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.775833",,"23.775833",,"23.775833",,,,,,,"2577.041667",,,,,"4756.041667",,"8.133333",,"919.377778",,,,"54.714286","1.222222","1.400000","1.955556","60.933333","0.000000","665.222222","0.000000","12.555556","651.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1758.125000",,,,,"0.000000","0.000000",,,"4222.875000","5750.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.430417",,"27.430417",,"27.430417",,,,,,,"2251.708333",,,,,"5487.166667",,"20.644444",,"679.755556",,,,"44.257143","1.377778","1.822222","3.044444","49.222222","0.000000","553.555556","0.000000","15.037037","537.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.875000","1312.000000",,,,,"0.000000","0.000000",,,"3398.500000","4433.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.236667",,"23.236667",,"23.236667",,,,,,,"3140.750000",,,,,"4648.458333",,"13.777778",,"966.288889",,,,"2062.971429","1.600000","1.844444","3.644444","71.533333","0.000000","778.851852","0.000000","19.037037","758.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.750000","1819.375000",,,,,"0.000000","0.000000",,,"4505.000000","6075.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.897917",,"22.897917",,"22.897917",,,,,,,"3251.375000",,,,,"4580.416667",,"8.111111",,"617.911111",,,,"2478.342857","1.222222","0.600000","2.533333","51.177778","0.000000","562.407407","0.000000","12.851852","548.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1190.500000",,,,,"0.000000","0.000000",,,"3268.500000","4282.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.540000",,"20.540000",,"20.540000",,,,,,,"3960.583333",,,,,"4109.000000",,"3.844444",,"629.777778",,,,"1955.257143","0.800000","0.688889","3.333333","44.333333","0.000000","497.000000","0.000000","8.777778","486.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.125000","1223.375000",,,,,"0.000000","0.000000",,,"3866.750000","4379.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.366250",,"21.366250",,"21.366250",,,,,,,"4388.791667",,,,,"4274.291667",,"7.955556",,"587.577778",,,,"1843.771429","1.133333","0.911111","3.933333","44.600000","0.000000","503.777778","0.000000","11.777778","490.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.125000","1133.250000",,,,,"0.000000","0.000000",,,"3004.625000","3850.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.480000",,"21.480000",,"21.480000",,,,,,,"3391.333333",,,,,"4296.875000",,"3.266667",,"507.666667",,,,"879.400000","0.933333","1.755556","7.688889","47.400000","0.000000","533.518519","0.000000","9.296296","522.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","984.625000",,,,,"0.000000","0.000000",,,"2846.625000","3636.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.337917",,"22.337917",,"22.337917",,,,,,,"3325.125000",,,,,"4468.458333",,"911.911111",,"1579.977778",,,,"62.971429","19.622222","4.311111","5.577778","50.933333","0.000000","736.444444","0.000000","214.518519","519.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1742.125000","22.142857",,,,,"0.000000","0.000000",,,"10691.750000","11008.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.145417",,"21.145417",,"21.145417",,,,,,,"3489.166667",,,,,"4229.958333",,"99.066667",,"1169.822222",,,,"101.000000","22.533333","2.800000","3.044444","93.622222","0.000000","1266.851852","0.000000","249.814815","1015.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"236.750000","2480.625000",,,,,"0.000000","0.000000",,,"10582.250000","12976.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.977083",,"24.977083",,"24.977083",,,,,,,"2530.041667",,,,,"4996.458333",,"61.511111",,"997.266667",,,,"88.028571","14.111111","0.666667","3.000000","86.311111","0.000000","1077.629630","0.000000","156.296296","919.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"486.875000","2031.250000",,,,,"0.000000","0.000000",,,"12616.500000","10272.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.223750",,"23.223750",,"23.223750",,,,,,,"3329.250000",,,,,"4645.500000",,"8.266667",,"1975.133333",,,,"42.314286","1.155556","1.222222","7.111111","45.555556","0.000000","472.555556","0.000000","12.296296","458.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2601.750000","3779.250000",,,,,"0.000000","0.000000",,,"41947.875000","13184.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.477083",,"27.477083",,"27.477083",,,,,,,"2298.875000",,,,,"5496.250000",,"4.555556",,"2633.977778",,,,"58.371429","1.022222","4.044444","6.177778","63.466667","0.000000","646.962963","0.000000","10.000000","635.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1221.625000","4984.125000",,,,,"0.000000","0.000000",,,"25319.625000","14496.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.519583",,"26.519583",,"26.519583",,,,,,,"2772.916667",,,,,"5304.916667",,"8.222222",,"2293.466667",,,,"57.542857","1.355556","1.400000","5.155556","62.800000","0.000000","658.888889","0.000000","13.814815","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1718.125000","4357.875000",,,,,"0.000000","0.000000",,,"31134.375000","13854.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.034167",,"27.034167",,"27.034167",,,,,,,"2525.416667",,,,,"5407.625000",,"340.911111",,"1819.200000",,,,"59.142857","12.288889","1.311111","3.244444","53.844444","0.000000","686.037037","0.000000","136.074074","548.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.500000","3394.875000",,,,,"0.000000","0.000000",,,"14205.500000","10987.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.288333",,"25.288333",,"25.288333",,,,,,,"2882.833333",,,,,"5058.708333",,"73.222222",,"786.288889",,,,"49.971429","4.644444","0.488889","1.977778","51.044444","0.000000","590.037037","0.000000","50.740741","533.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","1546.750000",,,,,"0.000000","0.000000",,,"4060.500000","5173.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.862500",,"30.862500",,"30.862500",,,,,,,"1119.000000",,,,,"6173.333333",,"12.488889",,"910.422222",,,,"37.914286","2.466667","1.577778","3.022222","40.177778","0.000000","450.703704","0.000000","25.814815","423.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.000000","1730.500000",,,,,"0.000000","0.000000",,,"3889.000000","5331.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.054583",,"30.054583",,"30.054583",,,,,,,"1365.833333",,,,,"6011.708333",,"16.377778",,"904.244444",,,,"48.200000","2.955556","0.688889","3.200000","50.822222","0.000000","554.962963","0.000000","32.185185","521.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.375000","1700.250000",,,,,"0.000000","0.000000",,,"4050.625000","5338.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.501667",,"29.501667",,"29.501667",,,,,,,"1614.500000",,,,,"5901.416667",,"6.511111",,"426.422222",,,,"1887.628571","1.000000","0.733333","2.488889","30.622222","0.000000","333.703704","0.000000","10.518519","321.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","26.000000",,,,,"0.000000","0.000000",,,"2306.500000","3044.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.798750",,"34.798750",,"34.798750",,,,,,,"1268.666667",,,,,"6960.875000",,"9.733333",,"462.111111",,,,"2528.771429","1.400000","0.600000","1.844444","29.022222","0.000000","319.370370","0.000000","14.925926","303.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","872.750000",,,,,"0.000000","0.000000",,,"2287.500000","2917.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.674583",,"32.674583",,"32.674583",,,,,,,"886.250000",,,,,"6536.083333",,"9.622222",,"669.466667",,,,"1606.342857","1.377778","0.977778","2.444444","45.200000","0.000000","474.111111","0.000000","14.111111","458.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1269.750000",,,,,"0.000000","0.000000",,,"3955.750000","4441.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.110000",,"34.110000",,"34.110000",,,,,,,"630.333333",,,,,"6822.875000",,"3.111111",,"585.355556",,,,"1182.571429","0.844444","0.444444","3.044444","40.022222","0.000000","418.185185","0.000000","8.518519","407.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1172.000000",,,,,"0.000000","0.000000",,,"4308.375000","5161.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.767917",,"30.767917",,"30.767917",,,,,,,"872.875000",,,,,"6154.458333",,"3.644444",,"513.133333",,,,"1160.657143","0.955556","0.755556","2.644444","30.911111","0.000000","324.370370","0.000000","9.666667","313.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.875000","1141.375000",,,,,"0.000000","0.000000",,,"5756.625000","6475.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.483750",,"32.483750",,"32.483750",,,,,,,"497.583333",,,,,"6497.625000",,"9.266667",,"666.266667",,,,"825.085714","1.488889","1.666667","2.577778","42.288889","0.000000","443.000000","0.000000","14.074074","426.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1320.000000",,,,,"0.000000","0.000000",,,"4641.125000","5600.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.417500",,"31.417500",,"31.417500",,,,,,,"2240.541667",,,,,"6284.250000",,"17.577778",,"353.911111",,,,"13.285714","2.422222","0.600000","5.022222","12.088889","0.000000","152.259259","0.000000","25.962963","124.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.125000","690.875000",,,,,"0.000000","0.000000",,,"1791.750000","2369.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.835000",,"28.835000",,"28.835000",,,,,,,"2035.291667",,,,,"5768.041667",,"6.155556",,"302.155556",,,,"18.857143","0.977778","2.511111","1.577778","19.777778","0.000000","212.888889","0.000000","9.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","580.875000",,,,,"0.000000","0.000000",,,"1622.250000","2139.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.724167",,"33.724167",,"33.724167",,,,,,,"1191.250000",,,,,"6745.875000",,"6.155556",,"700.222222",,,,"37.028571","1.155556","0.688889","4.355556","39.511111","0.000000","409.185185","0.000000","12.259259","395.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1313.750000",,,,,"0.000000","0.000000",,,"3159.125000","4151.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.057500",,"32.057500",,"32.057500",,,,,,,"1108.583333",,,,,"6412.250000",,"5.888889",,"545.311111",,,,"33.685714","1.022222","0.311111","1.955556","36.111111","0.000000","374.259259","0.000000","9.814815","363.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1017.000000",,,,,"0.000000","0.000000",,,"2623.625000","3456.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.245417",,"31.245417",,"31.245417",,,,,,,"1439.041667",,,,,"6250.208333",,"4.266667",,"589.777778",,,,"39.057143","1.022222","2.511111","3.377778","42.133333","0.000000","437.222222","0.000000","10.777778","424.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1113.125000",,,,,"0.000000","0.000000",,,"2812.750000","3640.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.758750",,"29.758750",,"29.758750",,,,,,,"2148.500000",,,,,"5952.583333",,"16.222222",,"408.466667",,,,"25.914286","2.000000","1.333333","2.444444","26.711111","0.000000","294.629630","0.000000","21.000000","272.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.875000","761.375000",,,,,"0.000000","0.000000",,,"2076.000000","2635.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.070000",,"34.070000",,"34.070000",,,,,,,"768.208333",,,,,"6814.958333",,"27.422222",,"577.822222",,,,"41.057143","2.533333","0.622222","2.222222","42.222222","0.000000","456.407407","0.000000","26.629630","424.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.375000","1088.875000",,,,,"0.000000","0.000000",,,"2943.500000","3833.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.662917",,"34.662917",,"34.662917",,,,,,,"958.041667",,,,,"6933.291667",,"10.800000",,"580.333333",,,,"29.742857","1.422222","0.711111","1.933333","31.644444","0.000000","345.851852","0.000000","14.962963","328.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.125000","1088.125000",,,,,"0.000000","0.000000",,,"2698.750000","3447.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.625417",,"33.625417",,"33.625417",,,,,,,"418.875000",,,,,"6726.000000",,"10.355556",,"582.133333",,,,"29.228571","1.400000","0.777778","1.888889","31.266667","0.000000","340.888889","0.000000","14.037037","325.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","1097.125000",,,,,"0.000000","0.000000",,,"2659.625000","3453.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.192917",,"33.192917",,"33.192917",,,,,,,"472.000000",,,,,"6639.541667",,"5.266667",,"582.622222",,,,"1468.085714","0.977778","1.844444","1.911111","38.822222","0.000000","403.407407","0.000000","9.888889","391.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1100.750000",,,,,"0.000000","0.000000",,,"2841.125000","3732.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.800417",,"32.800417",,"32.800417",,,,,,,"491.083333",,,,,"6561.125000",,"8.933333",,"513.466667",,,,"1923.257143","1.244444","1.022222","3.533333","22.066667","0.000000","246.481481","0.000000","15.222222","229.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","994.125000",,,,,"0.000000","0.000000",,,"2639.500000","3461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.190417",,"29.190417",,"29.190417",,,,,,,"622.666667",,,,,"5839.000000",,"3.933333",,"552.111111",,,,"1284.800000","0.955556","1.466667","6.955556","15.422222","0.000000","170.518519","0.000000","9.777778","159.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.500000","1276.000000",,,,,"0.000000","0.000000",,,"6158.125000","7177.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.815000",,"31.815000",,"31.815000",,,,,,,"717.375000",,,,,"6364.083333",,"8.444444",,"614.000000",,,,"1324.971429","1.222222","0.577778","1.644444","27.688889","0.000000","304.629630","0.000000","12.814815","290.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.250000","1289.625000",,,,,"0.000000","0.000000",,,"5829.000000","6304.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.971667",,"32.971667",,"32.971667",,,,,,,"511.125000",,,,,"6594.916667",,"3.955556",,"572.488889",,,,"1196.600000","0.777778","1.622222","2.844444","36.488889","0.000000","388.629630","0.000000","8.592593","378.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1098.000000",,,,,"0.000000","0.000000",,,"2750.625000","3606.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.404583",,"31.404583",,"31.404583",,,,,,,"535.041667",,,,,"6281.791667",,"22.533333",,"729.488889",,,,"1016.600000","2.711111","0.600000","2.466667","37.600000","0.000000","418.444444","0.000000","27.592593","387.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.250000","1343.875000",,,,,"0.000000","0.000000",,,"3156.000000","4089.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.044583",,"32.044583",,"32.044583",,,,,,,"442.541667",,,,,"6410.125000",,"5.422222",,"669.044444",,,,"926.114286","1.111111","0.955556","2.888889","40.200000","0.000000","430.703704","0.000000","11.222222","417.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1264.750000",,,,,"0.000000","0.000000",,,"3095.000000","4031.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.820000",,"30.820000",,"30.820000",,,,,,,"1355.458333",,,,,"6164.833333",,"8.755556",,"493.400000",,,,"81.114286","1.355556","1.200000","2.133333","30.888889","0.000000","336.407407","0.000000","13.666667","321.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","946.375000",,,,,"0.000000","0.000000",,,"2457.250000","3165.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.031667",,"35.031667",,"35.031667",,,,,,,"1027.208333",,,,,"7007.000000",,"8.000000",,"642.822222",,,,"37.685714","1.133333","0.466667","1.777778","40.644444","0.000000","427.592593","0.000000","11.777778","414.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1216.375000",,,,,"0.000000","0.000000",,,"3062.750000","4018.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.005833",,"31.005833",,"31.005833",,,,,,,"678.958333",,,,,"6202.250000",,"4.577778",,"571.111111",,,,"28.028571","0.933333","1.111111","2.533333","30.466667","0.000000","331.074074","0.000000","9.555556","319.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.625000","1328.375000",,,,,"0.000000","0.000000",,,"6042.250000","7186.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.740000",,"32.740000",,"32.740000",,,,,,,"779.791667",,,,,"6549.000000",,"8.666667",,"554.266667",,,,"34.828571","1.355556","1.533333","1.266667","37.555556","0.000000","405.740741","0.000000","13.666667","390.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","10.500000",,,,,"0.000000","0.000000",,,"6098.250000","7130.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.219167",,"31.219167",,"31.219167",,,,,,,"1296.125000",,,,,"6244.666667",,"8.822222",,"479.933333",,,,"28.542857","1.000000","0.688889","2.133333","30.955556","0.000000","335.666667","0.000000","9.592593","324.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","936.500000",,,,,"0.000000","0.000000",,,"2687.750000","3473.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.560000",,"34.560000",,"34.560000",,,,,,,"1094.375000",,,,,"6913.041667",,"30.444444",,"635.133333",,,,"35.514286","2.577778","0.955556","2.600000","36.555556","0.000000","410.592593","0.000000","28.888889","377.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1207.750000",,,,,"0.000000","0.000000",,,"3148.375000","3969.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.308750",,"35.308750",,"35.308750",,,,,,,"286.541667",,,,,"7062.750000",,"9.711111",,"585.800000",,,,"26.828571","1.533333","0.688889","4.644444","28.311111","0.000000","314.888889","0.000000","14.000000","298.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","1077.375000",,,,,"0.000000","0.000000",,,"2533.625000","3336.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.273750",,"36.273750",,"36.273750",,,,,,,"468.208333",,,,,"7255.875000",,"7.644444",,"583.200000",,,,"29.257143","1.111111","3.088889","5.088889","31.911111","0.000000","353.518519","0.000000","11.740741","340.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","1124.250000",,,,,"0.000000","0.000000",,,"2907.500000","3695.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.025417",,"33.025417",,"33.025417",,,,,,,"503.625000",,,,,"6605.916667",,"46.888889",,"585.000000",,,,"1134.428571","41.022222","0.711111","9.844444","37.288889","0.000000","855.148148","0.000000","453.666667","398.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"169.375000","1496.714286",,,,,"0.000000","0.000000",,,"21587.750000","119410.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.943750",,"29.943750",,"29.943750",,,,,,,"938.333333",,,,,"5989.833333",,"39.422222",,"793.400000",,,,"1912.828571","60.311111","1.666667","9.177778","44.111111","0.000000","1139.444444","0.000000","667.037037","469.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"534.625000","16406.750000",,,,,"0.000000","0.000000",,,"41495.875000","208729.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.342917",,"32.342917",,"32.342917",,,,,,,"1141.291667",,,,,"6469.666667",,"35.088889",,"1849.866667",,,,"1755.685714","57.977778","0.800000","11.511111","37.200000","0.000000","1018.814815","0.000000","643.592593","373.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"796.000000","4216.571429",,,,,"0.000000","0.000000",,,"51769.375000","217458.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.830000",,"27.830000",,"27.830000",,,,,,,"2595.166667",,,,,"5566.875000",,"22.000000",,"2006.288889",,,,"1664.285714","28.355556","0.711111","9.888889","28.666667","0.000000","590.814815","0.000000","312.666667","274.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"789.625000","9657.250000",,,,,"0.000000","0.000000",,,"34359.000000","92411.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.271250",,"27.271250",,"27.271250",,,,,,,"3392.541667",,,,,"5455.208333",,"3.133333",,"2074.133333",,,,"1521.685714","0.888889","1.133333","25.577778","15.844444","0.000000","139.333333","0.000000","8.962963","128.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.625000","4060.750000",,,,,"0.000000","0.000000",,,"16335.500000","11084.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.397083",,"27.397083",,"27.397083",,,,,,,"3225.625000",,,,,"5480.208333",,"3.422222",,"2088.333333",,,,"1331.371429","0.866667","1.688889","19.622222","21.933333","0.000000","206.333333","0.000000","8.888889","196.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"919.750000","4015.375000",,,,,"0.000000","0.000000",,,"19097.750000","10986.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.691667",,"24.691667",,"24.691667",,,,,,,"4195.958333",,,,,"4939.250000",,"3.222222",,"2475.555556",,,,"37.114286","0.844444","10.177778","12.422222","39.466667","0.000000","392.148148","0.000000","8.407407","382.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.857143","24.000000",,,,,"0.000000","0.000000",,,"27660.500000","13296.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.572917",,"25.572917",,"25.572917",,,,,,,"4134.333333",,,,,"5115.500000",,"2.977778",,"1577.377778",,,,"23.114286","0.911111","0.577778","4.688889","23.911111","0.000000","238.851852","0.000000","8.888889","228.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1682.500000","3031.000000",,,,,"0.000000","0.000000",,,"27958.875000","9299.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.127917",,"21.127917",,"21.127917",,,,,,,"4327.416667",,,,,"4226.583333",,"3.733333",,"1874.422222",,,,"31.685714","0.955556","0.444444","3.377778","33.755556","0.000000","346.851852","0.000000","9.259259","336.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"703.625000","3589.500000",,,,,"0.000000","0.000000",,,"15764.000000","10077.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.364167",,"20.364167",,"20.364167",,,,,,,"4632.125000",,,,,"4073.708333",,"2.666667",,"501.533333",,,,"20.428571","0.888889","0.844444","2.911111","21.755556","0.000000","236.370370","0.000000","8.518519","226.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","951.125000",,,,,"0.000000","0.000000",,,"2175.500000","2894.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.416250",,"23.416250",,"23.416250",,,,,,,"3664.958333",,,,,"4684.041667",,"9.311111",,"337.177778",,,,"18.142857","1.600000","0.466667","1.600000","18.133333","0.000000","203.333333","0.000000","14.888889","185.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","633.875000",,,,,"0.000000","0.000000",,,"1813.000000","2229.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.372917",,"24.372917",,"24.372917",,,,,,,"3211.208333",,,,,"4875.625000",,"3.755556",,"486.555556",,,,"29.457143","0.933333","0.422222","2.311111","31.844444","0.000000","338.666667","0.000000","8.851852","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","897.125000",,,,,"0.000000","0.000000",,,"2431.250000","2974.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.609583",,"22.609583",,"22.609583",,,,,,,"3603.500000",,,,,"4523.041667",,"29.288889",,"974.377778",,,,"29.857143","2.355556","1.066667","3.644444","30.311111","0.000000","335.037037","0.000000","26.222222","305.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.000000","1865.750000",,,,,"0.000000","0.000000",,,"4163.875000","5610.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.408750",,"29.408750",,"29.408750",,,,,,,"1839.291667",,,,,"5882.750000",,"33.066667",,"651.866667",,,,"45.142857","1.488889","2.333333","1.800000","49.400000","0.000000","539.518519","0.000000","15.703704","522.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"87.000000","1340.250000",,,,,"0.000000","0.000000",,,"5396.250000","6344.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.597500",,"31.597500",,"31.597500",,,,,,,"975.541667",,,,,"6320.541667",,"108.933333",,"1912.866667",,,,"54.114286","4.422222","3.488889","3.866667","56.355556","0.000000","636.370370","0.000000","47.851852","586.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"248.875000","3817.000000",,,,,"0.000000","0.000000",,,"11269.625000","13672.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.703333",,"36.703333",,"36.703333",,,,,,,"771.583333",,,,,"7341.625000",,"5.644444",,"898.755556",,,,"2214.857143","1.266667","1.177778","2.466667","51.488889","0.000000","556.148148","0.000000","12.444444","542.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.500000","1766.125000",,,,,"0.000000","0.000000",,,"4972.375000","6286.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.016250",,"36.016250",,"36.016250",,,,,,,"467.416667",,,,,"7204.291667",,"7.466667",,"738.288889",,,,"1993.428571","1.400000","1.822222","4.266667","48.955556","0.000000","539.777778","0.000000","16.000000","522.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1386.375000",,,,,"0.000000","0.000000",,,"3427.875000","4618.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.599583",,"35.599583",,"35.599583",,,,,,,"437.125000",,,,,"7120.875000",,"3.755556",,"773.266667",,,,"1612.000000","0.977778","0.422222","1.688889","46.933333","0.000000","508.111111","0.000000","9.444444","497.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.750000","1490.125000",,,,,"0.000000","0.000000",,,"4225.250000","5007.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.667917",,"34.667917",,"34.667917",,,,,,,"423.250000",,,,,"6934.416667",,"3.200000",,"629.533333",,,,"1201.200000","0.933333","0.288889","1.488889","44.844444","0.000000","490.074074","0.000000","8.703704","479.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1201.625000",,,,,"0.000000","0.000000",,,"3088.125000","4113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.700000",,"35.700000",,"35.700000",,,,,,,"617.666667",,,,,"7141.041667",,"9.266667",,"781.288889",,,,"1195.428571","1.577778","0.466667","1.977778","57.955556","0.000000","631.851852","0.000000","14.740741","614.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1451.750000",,,,,"0.000000","0.000000",,,"3704.875000","4850.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.749167",,"33.749167",,"33.749167",,,,,,,"1212.541667",,,,,"6750.666667",,"10.733333",,"1030.800000",,,,"1051.200000","1.644444","0.644444","3.777778","59.444444","0.000000","656.592593","0.000000","16.629630","638.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","1953.500000",,,,,"0.000000","0.000000",,,"4607.625000","6157.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.363750",,"30.363750",,"30.363750",,,,,,,"1798.083333",,,,,"6073.791667",,"153.066667",,"708.622222",,,,"50.714286","4.288889","0.400000","2.311111","53.555556","0.000000","623.814815","0.000000","46.481481","575.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"288.000000","15.571429",,,,,"0.000000","0.000000",,,"4208.500000","4986.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.891667",,"31.891667",,"31.891667",,,,,,,"2290.625000",,,,,"6379.208333",,"259.244444",,"1167.977778",,,,"67.885714","7.533333","0.311111","2.355556","69.822222","0.000000","827.222222","0.000000","82.296296","743.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"535.375000","2211.375000",,,,,"0.000000","0.000000",,,"6375.500000","7729.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.634583",,"29.634583",,"29.634583",,,,,,,"2263.416667",,,,,"5927.708333",,"9.622222",,"1564.866667",,,,"54.000000","1.422222","0.444444","4.933333","59.577778","0.000000","645.666667","0.000000","15.259259","629.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.375000","2815.375000",,,,,"0.000000","0.000000",,,"5985.500000","8082.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.924583",,"27.924583",,"27.924583",,,,,,,"1249.875000",,,,,"5585.916667",,"4.622222",,"652.488889",,,,"43.942857","0.911111","0.444444","1.600000","48.977778","0.000000","538.555556","0.000000","9.777778","527.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.750000","1246.000000",,,,,"0.000000","0.000000",,,"3252.750000","4279.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.880000",,"30.880000",,"30.880000",,,,,,,"1665.875000",,,,,"6176.958333",,"3.755556",,"737.533333",,,,"48.142857","1.044444","0.688889","2.088889","54.000000","0.000000","599.185185","0.000000","10.111111","587.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1417.375000",,,,,"0.000000","0.000000",,,"3551.250000","4709.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.144167",,"31.144167",,"31.144167",,,,,,,"1336.041667",,,,,"6229.875000",,"5.266667",,"799.000000",,,,"56.657143","1.288889","0.444444","1.488889","63.177778","0.000000","692.740741","0.000000","13.629630","677.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1606.500000",,,,,"0.000000","0.000000",,,"5676.750000","6903.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.730000",,"28.730000",,"28.730000",,,,,,,"2083.208333",,,,,"5747.000000",,"27.622222",,"738.333333",,,,"52.914286","2.622222","0.577778","1.755556","57.311111","0.000000","649.666667","0.000000","27.148148","617.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.500000","1608.000000",,,,,"0.000000","0.000000",,,"7864.000000","9061.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.800000",,"33.800000",,"33.800000",,,,,,,"959.208333",,,,,"6761.000000",,"3.844444",,"1029.200000",,,,"49.542857","0.866667","0.466667","2.422222","54.666667","0.000000","580.111111","0.000000","8.962963","569.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","1986.250000",,,,,"0.000000","0.000000",,,"4975.125000","6502.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.007500",,"36.007500",,"36.007500",,,,,,,"991.666667",,,,,"7202.291667",,"5.000000",,"960.444444",,,,"37.142857","1.022222","0.600000","3.622222","40.666667","0.000000","440.111111","0.000000","10.666667","428.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1816.875000",,,,,"0.000000","0.000000",,,"3914.250000","5339.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.603333",,"31.603333",,"31.603333",,,,,,,"1405.750000",,,,,"6321.875000",,"3.866667",,"649.955556",,,,"1535.485714","0.955556","0.600000","3.022222","35.444444","0.000000","392.666667","0.000000","9.259259","382.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1239.875000",,,,,"0.000000","0.000000",,,"3018.375000","3938.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.679167",,"35.679167",,"35.679167",,,,,,,"346.125000",,,,,"7136.666667",,"88.022222",,"784.888889",,,,"1911.114286","2.533333","1.866667","4.155556","54.155556","0.000000","596.518519","0.000000","26.592593","568.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"178.125000","1480.500000",,,,,"0.000000","0.000000",,,"4033.500000","5036.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.220000",,"36.220000",,"36.220000",,,,,,,"1105.541667",,,,,"7244.791667",,"627.555556",,"914.400000",,,,"1882.714286","15.622222","1.777778","2.822222","52.311111","0.000000","736.407407","0.000000","171.074074","564.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1247.125000","1749.000000",,,,,"0.000000","0.000000",,,"7899.000000","7413.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.024583",,"35.024583",,"35.024583",,,,,,,"696.375000",,,,,"7005.916667",,"259.222222",,"1560.311111",,,,"1443.457143","6.844444","0.622222","4.311111","71.244444","0.000000","828.555556","0.000000","74.518519","752.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"533.500000","2967.625000",,,,,"0.000000","0.000000",,,"7694.750000","9411.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.274583",,"35.274583",,"35.274583",,,,,,,"885.208333",,,,,"7055.958333",,"153.511111",,"1012.444444",,,,"1364.200000","4.400000","0.577778","3.133333","61.022222","0.000000","689.666667","0.000000","47.037037","641.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.250000","1920.375000",,,,,"0.000000","0.000000",,,"5219.125000","6458.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.555000",,"33.555000",,"33.555000",,,,,,,"1087.666667",,,,,"6712.083333",,"6.622222",,"1507.111111",,,,"1179.942857","1.444444","0.333333","4.155556","66.333333","0.000000","703.444444","0.000000","15.148148","687.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","13.000000",,,,,"0.000000","0.000000",,,"6080.750000","8271.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.135417",,"30.135417",,"30.135417",,,,,,,"1023.625000",,,,,"6028.041667",,"35.177778",,"1164.044444",,,,"54.428571","3.533333","0.600000","4.222222","57.888889","0.000000","648.444444","0.000000","38.296296","608.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.750000","2201.250000",,,,,"0.000000","0.000000",,,"5785.875000","7110.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.964167",,"34.964167",,"34.964167",,,,,,,"1404.250000",,,,,"6993.875000",,"19.911111",,"1187.444444",,,,"55.571429","1.955556","0.666667","3.755556","60.911111","0.000000","661.333333","0.000000","20.888889","639.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","2260.000000",,,,,"0.000000","0.000000",,,"5160.000000","6909.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.886667",,"30.886667",,"30.886667",,,,,,,"1519.750000",,,,,"6178.083333",,"21.622222",,"1854.577778",,,,"64.714286","1.977778","1.422222","3.777778","70.866667","0.000000","761.518519","0.000000","20.888889","739.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.500000","3496.875000",,,,,"0.000000","0.000000",,,"7184.000000","9790.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.833333",,"31.833333",,"31.833333",,,,,,,"1585.916667",,,,,"6367.833333",,"12.866667",,"1622.800000",,,,"53.257143","1.577778","0.822222","3.044444","58.644444","0.000000","635.370370","0.000000","16.074074","617.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.625000","3091.000000",,,,,"0.000000","0.000000",,,"6370.000000","8596.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.854167",,"32.854167",,"32.854167",,,,,,,"1132.125000",,,,,"6571.458333",,"584.577778",,"1616.622222",,,,"69.171429","13.111111","0.644444","4.177778","64.355556","0.000000","804.666667","0.000000","141.592593","660.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.000000","3047.625000",,,,,"0.000000","0.000000",,,"10069.625000","11215.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.522917",,"31.522917",,"31.522917",,,,,,,"1468.916667",,,,,"6305.625000",,"105.800000",,"2088.644444",,,,"58.657143","3.733333","2.155556","4.200000","62.200000","0.000000","687.666667","0.000000","40.592593","645.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.250000","4248.750000",,,,,"0.000000","0.000000",,,"12468.375000","15294.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.516667",,"31.516667",,"31.516667",,,,,,,"1139.000000",,,,,"6304.375000",,"44.511111",,"1635.355556",,,,"63.914286","3.400000","0.977778","3.111111","67.933333","0.000000","741.888889","0.000000","37.888889","700.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.625000","3152.375000",,,,,"0.000000","0.000000",,,"7792.250000","10154.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.352500",,"34.352500",,"34.352500",,,,,,,"948.791667",,,,,"6871.375000",,"123.066667",,"968.577778",,,,"41.771429","4.000000","1.066667","3.222222","43.044444","0.000000","494.777778","0.000000","43.333333","450.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"265.500000","1837.750000",,,,,"0.000000","0.000000",,,"4645.250000","5821.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.675833",,"29.675833",,"29.675833",,,,,,,"1876.125000",,,,,"5936.291667",,"524.466667",,"1955.977778",,,,"75.571429","10.444444","1.177778","8.644444","74.466667","0.000000","882.925926","0.000000","114.592593","767.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1019.125000","12.428571",,,,,"0.000000","0.000000",,,"10030.500000","11806.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.172083",,"31.172083",,"31.172083",,,,,,,"1666.333333",,,,,"6235.291667",,"735.333333",,"1117.066667",,,,"1968.914286","17.222222","0.888889","3.644444","53.555556","0.000000","759.481481","0.000000","188.629630","569.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1401.875000","2380.875000",,,,,"0.000000","0.000000",,,"10245.500000","10741.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.352917",,"28.352917",,"28.352917",,,,,,,"2065.125000",,,,,"5671.666667",,"954.444444",,"1317.800000",,,,"2448.571429","24.266667","0.466667","2.622222","59.555556","0.000000","903.296296","0.000000","266.777778","635.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1834.375000","2745.875000",,,,,"0.000000","0.000000",,,"13139.625000","13652.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.853750",,"31.853750",,"31.853750",,,,,,,"1553.083333",,,,,"6371.541667",,"837.422222",,"1468.377778",,,,"1856.342857","18.155556","1.155556","4.733333","61.866667","0.000000","853.703704","0.000000","201.703704","650.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1643.750000","3046.000000",,,,,"0.000000","0.000000",,,"13156.625000","13992.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.857083",,"32.857083",,"32.857083",,,,,,,"1128.458333",,,,,"6572.333333",,"1369.844444",,"1407.422222",,,,"1433.857143","31.266667","7.355556","3.955556","68.711111","0.000000","1054.740741","0.000000","343.518519","709.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2677.000000","2904.875000",,,,,"0.000000","0.000000",,,"16369.250000","15606.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.992917",,"34.992917",,"34.992917",,,,,,,"1188.875000",,,,,"6999.500000",,"614.488889",,"1761.888889",,,,"1348.171429","17.733333","1.133333","4.577778","58.000000","0.000000","800.333333","0.000000","195.148148","603.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1230.375000","3622.250000",,,,,"0.000000","0.000000",,,"13131.875000","15031.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.407083",,"30.407083",,"30.407083",,,,,,,"1482.875000",,,,,"6082.250000",,"376.422222",,"1158.777778",,,,"357.714286","8.755556","0.822222","4.888889","63.777778","0.000000","752.370370","0.000000","94.925926","655.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.857143","2409.375000",,,,,"0.000000","0.000000",,,"9898.500000","11360.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.220000",,"31.220000",,"31.220000",,,,,,,"1798.541667",,,,,"6244.833333",,"16.088889",,"1239.755556",,,,"52.114286","2.244444","1.066667","5.844444","56.800000","0.000000","626.370370","0.000000","23.666667","601.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","2520.375000",,,,,"0.000000","0.000000",,,"8286.625000","10444.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.444583",,"30.444583",,"30.444583",,,,,,,"1555.375000",,,,,"6090.041667",,"622.377778",,"1201.488889",,,,"74.542857","14.488889","0.511111","2.644444","69.422222","0.000000","875.074074","0.000000","157.851852","715.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1201.000000","2545.125000",,,,,"0.000000","0.000000",,,"11376.875000","12334.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.931667",,"30.931667",,"30.931667",,,,,,,"1552.166667",,,,,"6187.208333",,"274.266667",,"1325.177778",,,,"57.200000","8.644444","0.266667","3.844444","55.288889","0.000000","665.407407","0.000000","93.629630","569.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.500000","2799.125000",,,,,"0.000000","0.000000",,,"9916.375000","11715.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.120417",,"30.120417",,"30.120417",,,,,,,"1712.250000",,,,,"6025.125000",,"60.644444",,"746.111111",,,,"53.314286","2.177778","0.822222","1.600000","58.200000","0.000000","640.259259","0.000000","23.296296","615.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.875000","1652.125000",,,,,"0.000000","0.000000",,,"7027.375000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.821667",,"25.821667",,"25.821667",,,,,,,"2845.666667",,,,,"5165.083333",,"904.177778",,"960.977778",,,,"76.828571","17.733333","1.355556","2.111111","69.666667","0.000000","930.333333","0.000000","194.259259","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1792.125000","293.857143",,,,,"0.000000","0.000000",,,"12381.000000","12246.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.296250",,"26.296250",,"26.296250",,,,,,,"2050.083333",,,,,"5260.166667",,"383.355556",,"1398.911111",,,,"74.457143","13.622222","1.022222","2.377778","71.088889","0.000000","902.925926","0.000000","149.666667","751.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"769.875000","2882.625000",,,,,"0.000000","0.000000",,,"10859.375000","12460.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.159167",,"28.159167",,"28.159167",,,,,,,"2489.583333",,,,,"5632.791667",,"875.577778",,"2303.733333",,,,"105.000000","33.622222","0.422222","3.177778","85.022222","0.000000","1252.111111","0.000000","372.111111","876.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1664.375000","4595.375000",,,,,"0.000000","0.000000",,,"16504.750000","18804.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.620000",,"28.620000",,"28.620000",,,,,,,"1938.916667",,,,,"5724.875000",,"629.133333",,"1436.488889",,,,"74.657143","22.622222","0.666667","3.222222","62.022222","0.000000","897.185185","0.000000","250.148148","645.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1283.000000","3008.625000",,,,,"0.000000","0.000000",,,"12472.125000","13888.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.895000",,"29.895000",,"29.895000",,,,,,,"1525.625000",,,,,"5979.958333",,"28.755556",,"782.911111",,,,"53.942857","2.977778","0.222222","1.444444","58.066667","0.000000","650.037037","0.000000","32.185185","616.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","1718.625000",,,,,"0.000000","0.000000",,,"7075.750000","8657.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.756250",,"28.756250",,"28.756250",,,,,,,"1323.833333",,,,,"5752.500000",,"72.155556",,"713.422222",,,,"1721.371429","1.644444","0.288889","1.022222","59.222222","0.000000","647.000000","0.000000","17.222222","628.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","1580.500000",,,,,"0.000000","0.000000",,,"6754.750000","8203.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.757500",,"26.757500",,"26.757500",,,,,,,"2210.708333",,,,,"5352.250000",,"56.266667",,"1120.977778",,,,"2291.028571","1.888889","0.400000","2.400000","55.711111","0.000000","623.888889","0.000000","20.111111","602.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"246.625000","2362.125000",,,,,"0.000000","0.000000",,,"8426.375000","10123.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.025833",,"29.025833",,"29.025833",,,,,,,"1341.833333",,,,,"5806.208333",,"6.400000",,"729.288889",,,,"1639.228571","1.177778","0.733333","1.733333","60.733333","0.000000","656.518519","0.000000","11.481481","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.625000","1617.375000",,,,,"0.000000","0.000000",,,"7303.125000","8401.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.267917",,"29.267917",,"29.267917",,,,,,,"1709.500000",,,,,"5854.416667",,"70.600000",,"865.711111",,,,"1516.800000","2.466667","0.577778","2.200000","64.422222","0.000000","711.629630","0.000000","25.555556","684.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"164.625000","1868.875000",,,,,"0.000000","0.000000",,,"7501.375000","9091.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.148333",,"28.148333",,"28.148333",,,,,,,"1930.750000",,,,,"5630.625000",,"117.666667",,"789.600000",,,,"1491.000000","9.222222","1.044444","3.333333","66.111111","0.000000","800.592593","0.000000","100.814815","698.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.750000","1750.875000",,,,,"0.000000","0.000000",,,"7688.625000","9246.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.875417",,"25.875417",,"25.875417",,,,,,,"2405.125000",,,,,"5176.041667",,"3.977778",,"780.355556",,,,"670.200000","0.955556","0.911111","1.755556","64.333333","0.000000","689.444444","0.000000","9.666667","678.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1687.250000",,,,,"0.000000","0.000000",,,"6771.250000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.283333",,"26.283333",,"26.283333",,,,,,,"2668.833333",,,,,"5257.708333",,"9.933333",,"797.644444",,,,"60.171429","1.600000","0.933333","1.400000","66.088889","0.000000","716.000000","0.000000","14.925926","698.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","1682.875000",,,,,"0.000000","0.000000",,,"7456.125000","8730.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.337917",,"25.337917",,"25.337917",,,,,,,"2538.083333",,,,,"5068.500000",,"4.600000",,"789.133333",,,,"59.085714","0.688889","0.466667","1.177778","65.800000","0.000000","695.666667","0.000000","7.703704","686.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1663.750000",,,,,"0.000000","0.000000",,,"6800.500000","8101.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.430417",,"25.430417",,"25.430417",,,,,,,"3079.166667",,,,,"5087.250000",,"3.200000",,"599.977778",,,,"42.714286","0.933333","0.755556","1.622222","47.911111","0.000000","529.740741","0.000000","9.222222","519.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","1112.875000",,,,,"0.000000","0.000000",,,"2870.750000","3700.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.291250",,"24.291250",,"24.291250",,,,,,,"2798.416667",,,,,"4859.125000",,"6.155556",,"850.755556",,,,"66.371429","0.911111","0.422222","1.644444","74.088889","0.000000","791.111111","0.000000","9.703704","780.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","15.428571",,,,,"0.000000","0.000000",,,"4078.500000","5420.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.172500",,"27.172500",,"27.172500",,,,,,,"2495.000000",,,,,"5435.375000",,"4.200000",,"567.177778",,,,"36.971429","0.911111","0.400000","1.444444","41.111111","0.000000","457.666667","0.000000","9.666667","446.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","1092.500000",,,,,"0.000000","0.000000",,,"2884.125000","3807.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.502917",,"29.502917",,"29.502917",,,,,,,"2226.375000",,,,,"5901.583333",,"7.911111",,"821.911111",,,,"61.228571","1.200000","0.422222","1.333333","68.066667","0.000000","729.666667","0.000000","12.037037","716.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1553.250000",,,,,"0.000000","0.000000",,,"4097.875000","5404.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.967500",,"26.967500",,"26.967500",,,,,,,"2845.916667",,,,,"5394.500000",,"22.688889",,"687.955556",,,,"53.514286","2.000000","0.111111","1.111111","59.022222","0.000000","672.370370","0.000000","22.740741","645.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1315.000000",,,,,"0.000000","0.000000",,,"3882.125000","4865.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.450417",,"29.450417",,"29.450417",,,,,,,"1569.583333",,,,,"5890.833333",,"11.777778",,"1370.555556",,,,"68.057143","1.022222","0.511111","3.044444","75.711111","0.000000","803.296296","0.000000","10.185185","791.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.250000","2592.625000",,,,,"0.000000","0.000000",,,"6762.375000","8755.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.865417",,"27.865417",,"27.865417",,,,,,,"1758.708333",,,,,"5574.125000",,"3.955556",,"742.088889",,,,"53.000000","0.600000","0.333333","1.533333","59.466667","0.000000","639.444444","0.000000","6.888889","631.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.750000","1646.500000",,,,,"0.000000","0.000000",,,"7368.375000","8525.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.913333",,"29.913333",,"29.913333",,,,,,,"1079.791667",,,,,"5983.708333",,"3.688889",,"941.133333",,,,"1652.200000","0.866667","0.400000","1.177778","78.377778","0.000000","834.555556","0.000000","8.555556","824.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.875000","1952.875000",,,,,"0.000000","0.000000",,,"7825.250000","9406.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.011667",,"31.011667",,"31.011667",,,,,,,"1406.250000",,,,,"6203.416667",,"41.800000",,"766.666667",,,,"2286.228571","4.177778","0.533333","1.533333","62.555556","0.000000","723.148148","0.000000","45.148148","676.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"109.500000","1702.000000",,,,,"0.000000","0.000000",,,"7427.000000","8866.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.420833",,"29.420833",,"29.420833",,,,,,,"1792.250000",,,,,"5885.000000",,"4.311111",,"916.444444",,,,"1761.742857","1.000000","0.644444","1.755556","69.711111","0.000000","747.111111","0.000000","9.592593","736.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"82.875000","1896.875000",,,,,"0.000000","0.000000",,,"7386.250000","8546.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.850417",,"30.850417",,"30.850417",,,,,,,"1424.041667",,,,,"6170.958333",,"13.000000",,"645.088889",,,,"1473.971429","1.777778","0.711111","3.000000","52.266667","0.000000","593.629630","0.000000","19.111111","571.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1211.625000",,,,,"0.000000","0.000000",,,"3209.125000","4171.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.236667",,"28.236667",,"28.236667",,,,,,,"1981.416667",,,,,"5648.291667",,"3.777778",,"741.266667",,,,"1476.057143","0.866667","0.288889","1.466667","61.822222","0.000000","668.222222","0.000000","8.333333","658.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1402.250000",,,,,"0.000000","0.000000",,,"3729.125000","4964.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.190417",,"31.190417",,"31.190417",,,,,,,"1629.625000",,,,,"6238.958333",,"2.977778",,"848.466667",,,,"695.314286","0.755556","0.133333","1.177778","72.400000","0.000000","779.333333","0.000000","7.629630","770.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1609.250000",,,,,"0.000000","0.000000",,,"4168.750000","5444.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.638333",,"26.638333",,"26.638333",,,,,,,"2278.416667",,,,,"5328.833333",,"4.777778",,"842.044444",,,,"61.857143","0.955556","0.977778","1.844444","69.266667","0.000000","747.703704","0.000000","9.666667","736.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1587.750000",,,,,"0.000000","0.000000",,,"4070.375000","5358.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.717500",,"28.717500",,"28.717500",,,,,,,"1467.125000",,,,,"5744.416667",,"3.377778",,"827.644444",,,,"61.685714","1.111111","0.088889","0.911111","68.600000","0.000000","733.370370","0.000000","10.074074","721.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1531.625000",,,,,"0.000000","0.000000",,,"3996.750000","5177.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.725417",,"29.725417",,"29.725417",,,,,,,"1802.791667",,,,,"5946.000000",,"4.511111",,"664.022222",,,,"48.771429","0.866667","0.200000","2.066667","54.511111","0.000000","591.111111","0.000000","8.703704","581.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1249.375000",,,,,"0.000000","0.000000",,,"3295.000000","4284.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.903333",,"27.903333",,"27.903333",,,,,,,"2625.375000",,,,,"5581.708333",,"3.488889",,"816.800000",,,,"62.771429","0.844444","0.355556","1.244444","70.333333","0.000000","758.592593","0.000000","8.518519","748.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","1559.500000",,,,,"0.000000","0.000000",,,"4141.625000","5265.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.096250",,"30.096250",,"30.096250",,,,,,,"1892.916667",,,,,"6019.958333",,"3.066667",,"843.755556",,,,"63.600000","0.800000","0.311111","1.222222","71.200000","0.000000","764.222222","0.000000","8.444444","754.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1578.125000",,,,,"0.000000","0.000000",,,"4053.375000","5346.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.745833",,"28.745833",,"28.745833",,,,,,,"1493.041667",,,,,"5750.333333",,"4.822222",,"845.755556",,,,"61.857143","0.955556","0.377778","0.933333","69.000000","0.000000","739.074074","0.000000","9.629630","728.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","13.285714",,,,,"0.000000","0.000000",,,"4043.375000","5334.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.570000",,"27.570000",,"27.570000",,,,,,,"2028.208333",,,,,"5514.958333",,"28.066667",,"797.933333",,,,"62.685714","2.644444","0.244444","1.088889","67.711111","0.000000","745.703704","0.000000","27.666667","712.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.500000","1536.375000",,,,,"0.000000","0.000000",,,"4516.125000","5835.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.720000",,"34.720000",,"34.720000",,,,,,,"602.458333",,,,,"6944.791667",,"4.333333",,"874.600000",,,,"47.028571","0.777778","0.311111","3.111111","52.155556","0.000000","554.888889","0.000000","8.000000","545.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.375000","1864.750000",,,,,"0.000000","0.000000",,,"7968.500000","9324.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.176667",,"28.176667",,"28.176667",,,,,,,"2246.916667",,,,,"5636.208333",,"3.755556",,"1181.733333",,,,"51.685714","0.866667","0.266667","1.844444","57.266667","0.000000","609.629630","0.000000","8.851852","599.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","2333.875000",,,,,"0.000000","0.000000",,,"6837.000000","8522.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.516667",,"31.516667",,"31.516667",,,,,,,"796.541667",,,,,"6304.208333",,"7.400000",,"693.000000",,,,"1657.171429","0.844444","0.977778","1.600000","50.377778","0.000000","541.518519","0.000000","8.962963","531.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1319.125000",,,,,"0.000000","0.000000",,,"3373.625000","4335.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.645833",,"30.645833",,"30.645833",,,,,,,"696.375000",,,,,"6130.041667",,"9.466667",,"641.688889",,,,"2068.171429","1.444444","0.755556","2.155556","49.422222","0.000000","533.888889","0.000000","18.148148","514.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1172.625000",,,,,"0.000000","0.000000",,,"3114.500000","4007.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.793333",,"32.793333",,"32.793333",,,,,,,"792.666667",,,,,"6559.458333",,"3.644444",,"725.200000",,,,"1829.257143","0.933333","0.600000","1.400000","55.977778","0.000000","602.111111","0.000000","8.888889","591.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1389.625000",,,,,"0.000000","0.000000",,,"3540.000000","4582.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.132917",,"32.132917",,"32.132917",,,,,,,"679.750000",,,,,"6427.541667",,"4.844444",,"857.800000",,,,"1348.200000","0.955556","0.288889","1.511111","62.444444","0.000000","659.407407","0.000000","9.370370","648.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1613.625000",,,,,"0.000000","0.000000",,,"4757.000000","5548.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.356250",,"25.356250",,"25.356250",,,,,,,"2976.458333",,,,,"5072.375000",,"18.755556",,"1047.822222",,,,"1543.771429","2.200000","0.444444","2.622222","39.622222","0.000000","426.740741","0.000000","24.000000","401.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","2075.875000",,,,,"0.000000","0.000000",,,"4736.750000","7634.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.453333",,"22.453333",,"22.453333",,,,,,,"3901.791667",,,,,"4491.583333",,"8.977778",,"563.377778",,,,"823.085714","1.088889","0.444444","5.555556","49.733333","0.000000","506.814815","0.000000","11.592593","493.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.625000","1066.750000",,,,,"0.000000","0.000000",,,"2944.875000","3669.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.507500",,"22.507500",,"22.507500",,,,,,,"4598.458333",,,,,"4502.375000",,"3.866667",,"413.866667",,,,"36.971429","1.044444","0.133333","1.444444","39.288889","0.000000","397.962963","0.000000","9.851852","386.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","734.750000",,,,,"0.000000","0.000000",,,"2163.250000","2677.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.762917",,"18.762917",,"18.762917",,,,,,,"5041.916667",,,,,"3753.500000",,"4.000000",,"277.777778",,,,"22.571429","0.866667","0.333333","1.444444","23.822222","0.000000","248.000000","0.000000","8.814815","238.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","510.875000",,,,,"0.000000","0.000000",,,"1678.625000","2422.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.855833",,"19.855833",,"19.855833",,,,,,,"4403.791667",,,,,"3972.041667",,"3.911111",,"393.088889",,,,"31.285714","0.777778","0.355556","1.044444","33.600000","0.000000","348.444444","0.000000","8.111111","339.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","800.750000",,,,,"0.000000","0.000000",,,"2230.000000","2697.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.825833",,"20.825833",,"20.825833",,,,,,,"4391.000000",,,,,"4166.500000",,"3.711111",,"374.133333",,,,"35.314286","0.800000","0.133333","1.422222","38.066667","0.000000","390.851852","0.000000","8.444444","381.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","670.000000",,,,,"0.000000","0.000000",,,"2038.375000","2416.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.725833",,"19.725833",,"19.725833",,,,,,,"4732.208333",,,,,"3946.166667",,"9.355556",,"352.511111",,,,"34.257143","1.466667","0.466667","0.755556","35.777778","0.000000","372.481481","0.000000","13.925926","355.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.250000","714.500000",,,,,"0.000000","0.000000",,,"3640.875000","4009.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.491250",,"19.491250",,"19.491250",,,,,,,"4325.250000",,,,,"3899.333333",,"4.244444",,"333.977778",,,,"30.742857","0.955556","0.155556","0.844444","32.733333","0.000000","337.296296","0.000000","9.481481","326.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.000000","819.250000",,,,,"0.000000","0.000000",,,"5880.625000","6300.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.437083",,"25.437083",,"25.437083",,,,,,,"2994.083333",,,,,"5088.375000",,"23.533333",,"869.000000",,,,"44.971429","2.044444","0.222222","1.511111","46.955556","0.000000","494.777778","0.000000","23.370370","467.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1685.750000",,,,,"0.000000","0.000000",,,"4987.000000","6139.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.069583",,"27.069583",,"27.069583",,,,,,,"2464.333333",,,,,"5414.708333",,"2.733333",,"583.755556",,,,"29.057143","0.933333","0.288889","1.555556","30.866667","0.000000","317.666667","0.000000","8.962963","307.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1100.000000",,,,,"0.000000","0.000000",,,"2665.250000","3452.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.204167",,"24.204167",,"24.204167",,,,,,,"3602.166667",,,,,"4841.916667",,"6.377778",,"1882.222222",,,,"50.428571","1.133333","0.644444","5.622222","53.288889","0.000000","520.777778","0.000000","11.333333","507.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.875000","3425.875000",,,,,"0.000000","0.000000",,,"6800.625000","9337.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.820417",,"20.820417",,"20.820417",,,,,,,"4006.500000",,,,,"4165.125000",,"12.533333",,"1496.600000",,,,"1957.285714","1.200000","1.200000","4.977778","21.800000","0.000000","222.222222","0.000000","12.037037","208.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","14.142857",,,,,"0.000000","0.000000",,,"5365.875000","7516.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.324583",,"23.324583",,"23.324583",,,,,,,"4029.791667",,,,,"4665.625000",,"9.133333",,"1642.688889",,,,"2325.628571","1.000000","0.888889","6.377778","24.088889","0.000000","235.592593","0.000000","9.777778","224.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","3300.375000",,,,,"0.000000","0.000000",,,"6345.500000","9176.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.148333",,"24.148333",,"24.148333",,,,,,,"3176.833333",,,,,"4830.375000",,"4.488889",,"1973.688889",,,,"1902.400000","0.977778","0.444444","5.666667","49.955556","0.000000","495.407407","0.000000","9.481481","484.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.750000","3718.000000",,,,,"0.000000","0.000000",,,"7273.625000","9946.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.685833",,"20.685833",,"20.685833",,,,,,,"4068.708333",,,,,"4138.000000",,"9.244444",,"1780.177778",,,,"1603.600000","1.955556","0.600000","5.711111","36.155556","0.000000","362.481481","0.000000","20.296296","340.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"89.750000","3370.875000",,,,,"0.000000","0.000000",,,"7153.500000","9290.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.097500",,"21.097500",,"21.097500",,,,,,,"4415.166667",,,,,"4220.416667",,"4.977778",,"1786.333333",,,,"1362.028571","0.866667","0.133333","5.733333","37.777778","0.000000","366.777778","0.000000","8.925926","356.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.250000","3388.000000",,,,,"0.000000","0.000000",,,"6533.375000","9043.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.907083",,"17.907083",,"17.907083",,,,,,,"5216.166667",,,,,"3582.416667",,"3.333333",,"1780.533333",,,,"32.142857","0.933333","0.733333","5.777778","33.666667","0.000000","328.555556","0.000000","9.111111","317.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","3366.250000",,,,,"0.000000","0.000000",,,"6341.500000","8849.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.537083",,"19.537083",,"19.537083",,,,,,,"5090.291667",,,,,"3908.375000",,"9.577778",,"1692.911111",,,,"33.485714","1.511111","0.288889","8.777778","34.111111","0.000000","336.777778","0.000000","14.259259","319.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","3071.500000",,,,,"0.000000","0.000000",,,"5974.250000","8371.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.708750",,"20.708750",,"20.708750",,,,,,,"4542.625000",,,,,"4142.666667",,"4.800000",,"2252.711111",,,,"37.800000","1.044444","0.444444","4.488889","39.377778","0.000000","378.666667","0.000000","9.851852","367.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.000000","4418.750000",,,,,"0.000000","0.000000",,,"8257.750000","11664.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.500417",,"19.500417",,"19.500417",,,,,,,"4522.833333",,,,,"3900.791667",,"4.377778",,"1501.422222",,,,"26.514286","0.955556","0.200000","4.600000","27.200000","0.000000","262.851852","0.000000","9.518519","252.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.375000","220.285714",,,,,"0.000000","0.000000",,,"8831.875000","10903.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.796667",,"17.796667",,"17.796667",,,,,,,"4638.500000",,,,,"3560.208333",,"4.933333",,"1582.933333",,,,"41.800000","1.000000","0.200000","5.155556","44.044444","0.000000","428.370370","0.000000","9.925926","417.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.375000","3148.000000",,,,,"0.000000","0.000000",,,"8976.625000","11168.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.070417",,"17.070417",,"17.070417",,,,,,,"4887.166667",,,,,"3415.166667",,"4.911111",,"1053.400000",,,,"25.600000","1.044444","0.666667","3.022222","26.755556","0.000000","273.370370","0.000000","10.222222","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","1920.625000",,,,,"0.000000","0.000000",,,"3970.875000","5474.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.378750",,"18.378750",,"18.378750",,,,,,,"4504.291667",,,,,"3676.583333",,"67.933333",,"1308.200000",,,,"42.485714","1.600000","0.511111","3.555556","44.711111","0.000000","452.740741","0.000000","16.481481","434.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"151.375000","2539.000000",,,,,"0.000000","0.000000",,,"5534.375000","7250.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.925833",,"18.925833",,"18.925833",,,,,,,"5157.375000",,,,,"3786.333333",,"22.666667",,"621.133333",,,,"37.285714","2.022222","0.866667","2.111111","38.444444","0.000000","404.370370","0.000000","22.481481","377.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","1150.250000",,,,,"0.000000","0.000000",,,"2972.500000","3829.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.795417",,"23.795417",,"23.795417",,,,,,,"3119.083333",,,,,"4760.166667",,"3.422222",,"479.488889",,,,"37.371429","0.844444","0.177778","1.244444","40.600000","0.000000","421.777778","0.000000","8.333333","412.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","879.375000",,,,,"0.000000","0.000000",,,"2511.750000","3093.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.869167",,"18.869167",,"18.869167",,,,,,,"4801.083333",,,,,"3774.666667",,"5.244444",,"505.333333",,,,"38.342857","1.044444","0.133333","1.622222","41.400000","0.000000","431.888889","0.000000","10.407407","420.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","967.625000",,,,,"0.000000","0.000000",,,"2655.125000","3409.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.479583",,"23.479583",,"23.479583",,,,,,,"3359.625000",,,,,"4696.875000",,"2.644444",,"180.400000",,,,"2023.171429","0.933333","0.177778","2.488889","15.044444","0.000000","167.814815","0.000000","8.518519","158.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","346.000000",,,,,"0.000000","0.000000",,,"1189.875000","1432.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.362917",,"29.362917",,"29.362917",,,,,,,"2060.750000",,,,,"5873.458333",,"4.733333",,"373.044444",,,,"2292.142857","0.955556","0.133333","1.022222","34.422222","0.000000","348.000000","0.000000","9.814815","336.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.000000","663.625000",,,,,"0.000000","0.000000",,,"2108.125000","2482.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.831667",,"25.831667",,"25.831667",,,,,,,"2430.083333",,,,,"5167.375000",,"8.333333",,"565.866667",,,,"1721.857143","1.377778","0.133333","1.066667","47.355556","0.000000","483.555556","0.000000","12.592593","468.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1031.250000",,,,,"0.000000","0.000000",,,"3312.625000","3701.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.794167",,"23.794167",,"23.794167",,,,,,,"2934.041667",,,,,"4759.750000",,"6.377778",,"456.866667",,,,"1600.514286","0.933333","0.088889","1.066667","45.733333","0.000000","461.000000","0.000000","9.037037","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","845.375000",,,,,"0.000000","0.000000",,,"2517.125000","3221.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.172083",,"17.172083",,"17.172083",,,,,,,"5485.541667",,,,,"3435.208333",,"3.466667",,"170.666667",,,,"1497.057143","0.933333","0.088889","1.022222","13.266667","0.000000","145.370370","0.000000","9.333333","134.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","343.375000",,,,,"0.000000","0.000000",,,"1130.375000","1451.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.955417",,"16.955417",,"16.955417",,,,,,,"5183.666667",,,,,"3392.125000",,"109.666667",,"433.955556",,,,"40.257143","3.977778","0.466667","1.266667","40.711111","0.000000","457.074074","0.000000","43.296296","412.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"219.000000","804.750000",,,,,"0.000000","0.000000",,,"2838.750000","3191.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.264167",,"16.264167",,"16.264167",,,,,,,"5416.708333",,,,,"3253.541667",,"3.200000",,"405.111111",,,,"37.828571","0.888889","0.088889","0.822222","40.822222","0.000000","419.555556","0.000000","8.407407","409.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","830.250000",,,,,"0.000000","0.000000",,,"4113.250000","4674.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.130833",,"16.130833",,"16.130833",,,,,,,"5390.416667",,,,,"3227.208333",,"3.511111",,"384.822222",,,,"36.742857","0.933333","0.133333","1.200000","39.600000","0.000000","408.740741","0.000000","9.296296","398.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.750000","880.750000",,,,,"0.000000","0.000000",,,"5049.250000","5846.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.808750",,"19.808750",,"19.808750",,,,,,,"4472.583333",,,,,"3963.041667",,"5.422222",,"736.666667",,,,"40.800000","1.088889","0.311111","3.466667","43.955556","0.000000","457.111111","0.000000","11.037037","444.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1397.750000",,,,,"0.000000","0.000000",,,"3463.375000","4536.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.232083",,"15.232083",,"15.232083",,,,,,,"5952.375000",,,,,"3047.250000",,"3.644444",,"472.555556",,,,"29.028571","0.955556","0.400000","1.377778","31.088889","0.000000","325.629630","0.000000","8.962963","315.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","893.500000",,,,,"0.000000","0.000000",,,"2303.125000","3007.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.699167",,"18.699167",,"18.699167",,,,,,,"4859.291667",,,,,"3740.958333",,"3.311111",,"566.822222",,,,"40.428571","0.933333","0.133333","1.488889","43.600000","0.000000","445.407407","0.000000","8.703704","435.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1063.375000",,,,,"0.000000","0.000000",,,"2806.125000","3550.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.230417",,"18.230417",,"18.230417",,,,,,,"4888.166667",,,,,"3647.083333",,"4.688889",,"642.311111",,,,"32.542857","1.000000","0.133333","1.311111","34.866667","0.000000","359.814815","0.000000","9.740741","348.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","1203.375000",,,,,"0.000000","0.000000",,,"2880.875000","3761.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.436667",,"13.436667",,"13.436667",,,,,,,"6628.500000",,,,,"2688.291667",,"27.600000",,"166.422222",,,,"16.685714","2.533333","0.133333","0.911111","15.377778","0.000000","191.962963","0.000000","26.888889","159.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.375000","294.250000",,,,,"0.000000","0.000000",,,"1199.750000","1329.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.715833",,"19.715833",,"19.715833",,,,,,,"4473.083333",,,,,"3944.083333",,"4.066667",,"698.333333",,,,"35.685714","0.933333","0.177778","2.111111","38.688889","0.000000","405.037037","0.000000","9.148148","394.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1324.375000",,,,,"0.000000","0.000000",,,"3139.125000","4367.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.884167",,"19.884167",,"19.884167",,,,,,,"4239.083333",,,,,"3977.791667",,"3.755556",,"335.533333",,,,"24.085714","0.844444","1.111111","1.333333","26.088889","0.000000","283.370370","0.000000","8.740741","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","654.250000",,,,,"0.000000","0.000000",,,"1885.125000","2607.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.310417",,"18.310417",,"18.310417",,,,,,,"5189.416667",,,,,"3663.000000",,"4.933333",,"358.466667",,,,"2420.400000","1.111111","0.311111","1.822222","32.800000","0.000000","352.925926","0.000000","13.037037","338.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","684.750000",,,,,"0.000000","0.000000",,,"2000.875000","2632.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.465000",,"19.465000",,"19.465000",,,,,,,"4358.958333",,,,,"3893.833333",,"4.333333",,"393.911111",,,,"2362.314286","0.777778","0.177778","1.200000","38.000000","0.000000","394.629630","0.000000","8.370370","384.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","16.428571",,,,,"0.000000","0.000000",,,"2190.000000","2697.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.359583",,"21.359583",,"21.359583",,,,,,,"4336.250000",,,,,"4272.750000",,"3.422222",,"541.200000",,,,"2060.228571","0.933333","0.133333","1.777778","43.777778","0.000000","459.148148","0.000000","9.333333","448.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1012.500000",,,,,"0.000000","0.000000",,,"3425.625000","3691.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.265833",,"18.265833",,"18.265833",,,,,,,"5036.083333",,,,,"3654.333333",,"2.666667",,"269.133333",,,,"1648.057143","0.844444","0.200000","0.977778","26.288889","0.000000","277.333333","0.000000","8.185185","267.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","681.500000",,,,,"0.000000","0.000000",,,"5373.250000","5685.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.197083",,"17.197083",,"17.197083",,,,,,,"4896.041667",,,,,"3440.416667",,"3.422222",,"386.355556",,,,"663.171429","0.844444","0.266667","1.355556","38.800000","0.000000","407.740741","0.000000","8.740741","397.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","810.625000",,,,,"0.000000","0.000000",,,"3328.375000","3915.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.111667",,"16.111667",,"16.111667",,,,,,,"5782.125000",,,,,"3223.458333",,"3.800000",,"374.088889",,,,"34.771429","0.866667","0.133333","1.022222","37.555556","0.000000","391.518519","0.000000","8.555556","381.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","675.250000",,,,,"0.000000","0.000000",,,"2003.125000","2493.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.023750",,"17.023750",,"17.023750",,,,,,,"5190.541667",,,,,"3405.791667",,"2.600000",,"503.044444",,,,"43.371429","0.933333","0.088889","1.511111","46.822222","0.000000","477.296296","0.000000","8.925926","466.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","923.875000",,,,,"0.000000","0.000000",,,"2566.500000","3336.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.775417",,"16.775417",,"16.775417",,,,,,,"5300.708333",,,,,"3356.000000",,"3.666667",,"434.644444",,,,"43.600000","0.933333","0.133333","1.333333","46.866667","0.000000","473.592593","0.000000","9.185185","463.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","826.375000",,,,,"0.000000","0.000000",,,"2465.375000","3035.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.901667",,"16.901667",,"16.901667",,,,,,,"5474.875000",,,,,"3381.458333",,"2.422222",,"343.911111",,,,"32.742857","0.955556","0.155556","1.844444","34.888889","0.000000","355.962963","0.000000","9.074074","345.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","863.125000",,,,,"0.000000","0.000000",,,"5283.375000","6053.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.617500",,"14.617500",,"14.617500",,,,,,,"6402.583333",,,,,"2924.500000",,"8.377778",,"246.955556",,,,"25.257143","1.466667","0.133333","6.466667","25.955556","0.000000","273.111111","0.000000","13.333333","257.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","567.125000",,,,,"0.000000","0.000000",,,"3326.000000","3883.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"12.524583",,"12.524583",,"12.524583",,,,,,,"6376.166667",,,,,"2505.833333",,"3.466667",,"208.688889",,,,"20.228571","0.933333","0.533333","2.200000","21.088889","0.000000","219.370370","0.000000","8.740741","209.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","400.000000",,,,,"0.000000","0.000000",,,"1370.375000","1596.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.667917",,"17.667917",,"17.667917",,,,,,,"5635.708333",,,,,"3534.458333",,"2.622222",,"445.577778",,,,"42.200000","0.933333","0.155556","1.533333","45.311111","0.000000","456.333333","0.000000","8.481481","446.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","782.750000",,,,,"0.000000","0.000000",,,"2283.250000","2742.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.422917",,"13.422917",,"13.422917",,,,,,,"6330.041667",,,,,"2685.500000",,"21.400000",,"210.844444",,,,"20.285714","2.000000","0.111111","1.555556","20.066667","0.000000","228.740741","0.000000","22.111111","202.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.625000","397.250000",,,,,"0.000000","0.000000",,,"1391.750000","1606.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.380417",,"23.380417",,"23.380417",,,,,,,"3806.125000",,,,,"4676.708333",,"3.400000",,"617.177778",,,,"40.771429","0.933333","0.088889","2.377778","43.888889","0.000000","445.370370","0.000000","8.740741","435.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1113.875000",,,,,"0.000000","0.000000",,,"2844.125000","3666.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.631250",,"20.631250",,"20.631250",,,,,,,"4556.416667",,,,,"4127.375000",,"3.400000",,"792.688889",,,,"31.514286","0.933333","1.133333","2.688889","33.800000","0.000000","349.740741","0.000000","8.888889","339.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1542.375000",,,,,"0.000000","0.000000",,,"3396.500000","4612.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.587917",,"23.587917",,"23.587917",,,,,,,"3373.375000",,,,,"4718.166667",,"3.400000",,"481.755556",,,,"1997.800000","0.844444","0.133333","1.377778","41.155556","0.000000","433.370370","0.000000","8.259259","423.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1022.625000",,,,,"0.000000","0.000000",,,"4399.750000","5086.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.564583",,"24.564583",,"24.564583",,,,,,,"3519.416667",,,,,"4914.041667",,"3.688889",,"320.777778",,,,"2565.085714","0.933333","0.133333","1.311111","27.955556","0.000000","298.259259","0.000000","9.333333","287.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","757.375000",,,,,"0.000000","0.000000",,,"4743.500000","5232.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.986667",,"23.986667",,"23.986667",,,,,,,"3394.833333",,,,,"4798.291667",,"2.533333",,"586.377778",,,,"1801.600000","0.933333","0.133333","1.200000","46.400000","0.000000","487.888889","0.000000","8.666667","477.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.875000","1043.875000",,,,,"0.000000","0.000000",,,"3518.250000","3739.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.213750",,"22.213750",,"22.213750",,,,,,,"4269.083333",,,,,"4443.416667",,"7.844444",,"450.377778",,,,"1599.828571","1.466667","0.244444","1.600000","37.266667","0.000000","393.777778","0.000000","13.222222","377.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","863.875000",,,,,"0.000000","0.000000",,,"2342.500000","2918.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.515417",,"20.515417",,"20.515417",,,,,,,"4089.000000",,,,,"4104.250000",,"4.111111",,"420.466667",,,,"1199.285714","1.022222","0.088889","1.444444","37.066667","0.000000","386.555556","0.000000","9.592593","375.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","801.500000",,,,,"0.000000","0.000000",,,"2276.125000","3109.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.172917",,"21.172917",,"21.172917",,,,,,,"4421.125000",,,,,"4235.250000",,"2.755556",,"739.733333",,,,"42.800000","1.022222","0.088889","1.866667","46.222222","0.000000","476.555556","0.000000","9.518519","465.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1393.125000",,,,,"0.000000","0.000000",,,"3344.625000","4535.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.840417",,"19.840417",,"19.840417",,,,,,,"4291.666667",,,,,"3968.791667",,"2.511111",,"385.177778",,,,"32.885714","0.844444","0.088889","0.866667","35.488889","0.000000","366.407407","0.000000","8.037037","356.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","722.750000",,,,,"0.000000","0.000000",,,"2183.125000","3037.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.291667",,"20.291667",,"20.291667",,,,,,,"4614.333333",,,,,"4059.541667",,"3.755556",,"411.244444",,,,"35.628571","0.933333","0.311111","1.155556","38.266667","0.000000","396.074074","0.000000","9.518519","385.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","796.875000",,,,,"0.000000","0.000000",,,"2363.375000","3096.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.220833",,"18.220833",,"18.220833",,,,,,,"5276.166667",,,,,"3645.041667",,"2.644444",,"249.022222",,,,"21.485714","0.888889","0.088889","3.133333","22.688889","0.000000","239.111111","0.000000","8.333333","229.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.250000","479.500000",,,,,"0.000000","0.000000",,,"1498.500000","1986.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.927917",,"20.927917",,"20.927917",,,,,,,"4277.875000",,,,,"4186.791667",,"6.355556",,"462.155556",,,,"38.742857","1.088889","0.355556","1.266667","41.666667","0.000000","430.740741","0.000000","10.148148","419.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","868.125000",,,,,"0.000000","0.000000",,,"2488.375000","3269.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.755417",,"18.755417",,"18.755417",,,,,,,"4936.833333",,,,,"3752.083333",,"2.622222",,"389.022222",,,,"30.171429","0.933333","0.200000","1.644444","32.200000","0.000000","334.037037","0.000000","9.000000","323.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","713.375000",,,,,"0.000000","0.000000",,,"2006.250000","2515.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.352917",,"16.352917",,"16.352917",,,,,,,"5814.666667",,,,,"3271.625000",,"3.711111",,"752.666667",,,,"32.628571","0.933333","0.088889","2.711111","34.755556","0.000000","355.222222","0.000000","9.333333","344.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1502.375000",,,,,"0.000000","0.000000",,,"4342.125000","5370.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.863333",,"13.863333",,"13.863333",,,,,,,"6080.000000",,,,,"2773.791667",,"21.444444",,"215.333333",,,,"21.714286","2.000000","0.133333","0.977778","21.688889","0.000000","248.333333","0.000000","21.962963","222.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","601.750000",,,,,"0.000000","0.000000",,,"5200.875000","5453.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.919167",,"20.919167",,"20.919167",,,,,,,"3703.416667",,,,,"4185.000000",,"8.555556",,"442.866667",,,,"38.428571","1.644444","0.088889","1.311111","40.533333","0.000000","424.888889","0.000000","14.481481","407.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","787.000000",,,,,"0.000000","0.000000",,,"2339.000000","2837.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.155417",,"21.155417",,"21.155417",,,,,,,"4054.458333",,,,,"4232.041667",,"13.577778",,"567.955556",,,,"40.971429","1.400000","0.222222","2.155556","44.111111","0.000000","465.592593","0.000000","13.481481","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.625000","1078.375000",,,,,"0.000000","0.000000",,,"2940.250000","3752.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.623750",,"18.623750",,"18.623750",,,,,,,"5099.750000",,,,,"3725.791667",,"3.844444",,"262.911111",,,,"2491.600000","1.044444","0.222222","2.644444","23.955556","0.000000","259.962963","0.000000","12.444444","245.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.750000","474.500000",,,,,"0.000000","0.000000",,,"1468.250000","1861.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.632083",,"19.632083",,"19.632083",,,,,,,"4507.583333",,,,,"3927.250000",,"3.355556",,"388.755556",,,,"2334.228571","0.777778","0.288889","1.355556","35.022222","0.000000","362.296296","0.000000","7.851852","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","702.125000",,,,,"0.000000","0.000000",,,"2038.000000","2476.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.717500",,"21.717500",,"21.717500",,,,,,,"4268.333333",,,,,"4344.250000",,"3.066667",,"587.377778",,,,"1993.600000","0.933333","0.355556","1.444444","46.733333","0.000000","487.407407","0.000000","8.629630","477.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1126.625000",,,,,"0.000000","0.000000",,,"3664.000000","4042.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.412083",,"17.412083",,"17.412083",,,,,,,"5486.708333",,,,,"3483.375000",,"2.688889",,"184.688889",,,,"1771.457143","0.933333","0.133333","1.288889","17.755556","0.000000","195.185185","0.000000","8.481481","185.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.625000","317.625000",,,,,"0.000000","0.000000",,,"1094.625000","1296.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.158750",,"17.158750",,"17.158750",,,,,,,"5362.958333",,,,,"3432.541667",,"3.422222",,"386.377778",,,,"546.400000","0.844444","0.133333","1.177778","37.866667","0.000000","401.259259","0.000000","8.259259","391.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","758.125000",,,,,"0.000000","0.000000",,,"2327.750000","2918.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.318333",,"16.318333",,"16.318333",,,,,,,"5400.041667",,,,,"3264.291667",,"2.600000",,"435.333333",,,,"38.657143","0.933333","0.088889","1.000000","42.044444","0.000000","438.851852","0.000000","8.444444","429.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","18.000000",,,,,"0.000000","0.000000",,,"2272.375000","2846.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.762917",,"17.762917",,"17.762917",,,,,,,"5038.375000",,,,,"3553.416667",,"2.711111",,"460.022222",,,,"36.942857","0.933333","0.088889","1.000000","40.244444","0.000000","424.407407","0.000000","8.888889","414.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.750000","891.000000",,,,,"0.000000","0.000000",,,"2885.375000","3305.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.845000",,"15.845000",,"15.845000",,,,,,,"5632.000000",,,,,"3169.958333",,"3.688889",,"377.311111",,,,"34.485714","0.844444","0.133333","1.000000","37.488889","0.000000","396.296296","0.000000","8.703704","386.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","685.875000",,,,,"0.000000","0.000000",,,"2427.750000","2545.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.650833",,"15.650833",,"15.650833",,,,,,,"5921.583333",,,,,"3131.333333",,"8.333333",,"306.066667",,,,"28.171429","1.555556","0.088889","0.822222","29.511111","0.000000","319.740741","0.000000","14.000000","302.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.500000","562.250000",,,,,"0.000000","0.000000",,,"2005.875000","2331.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.367917",,"15.367917",,"15.367917",,,,,,,"5492.416667",,,,,"3074.583333",,"2.711111",,"354.377778",,,,"32.885714","0.955556","0.133333","0.822222","35.577778","0.000000","376.222222","0.000000","9.444444","365.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","885.500000",,,,,"0.000000","0.000000",,,"5734.125000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.462500",,"16.462500",,"16.462500",,,,,,,"5792.791667",,,,,"3293.291667",,"2.422222",,"365.822222",,,,"34.285714","0.800000","0.088889","0.977778","37.666667","0.000000","402.444444","0.000000","7.518519","393.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","709.625000",,,,,"0.000000","0.000000",,,"3024.375000","3443.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.004583",,"17.004583",,"17.004583",,,,,,,"5650.916667",,,,,"3401.791667",,"2.822222",,"367.355556",,,,"33.714286","0.844444","0.177778","1.044444","36.666667","0.000000","384.629630","0.000000","8.037037","375.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","695.000000",,,,,"0.000000","0.000000",,,"2123.375000","2659.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.058333",,"15.058333",,"15.058333",,,,,,,"5794.625000",,,,,"3012.291667",,"21.222222",,"351.400000",,,,"32.457143","1.911111","0.088889","1.000000","34.133333","0.000000","380.407407","0.000000","21.000000","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.375000","644.125000",,,,,"0.000000","0.000000",,,"2016.500000","2425.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.575417",,"18.575417",,"18.575417",,,,,,,"4860.833333",,,,,"3716.083333",,"2.466667",,"305.688889",,,,"28.000000","0.888889","0.422222","1.377778","30.155556","0.000000","321.629630","0.000000","8.851852","311.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","607.125000",,,,,"0.000000","0.000000",,,"1918.250000","2419.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.607917",,"28.607917",,"28.607917",,,,,,,"1975.791667",,,,,"5722.500000",,"3.555556",,"559.844444",,,,"38.742857","0.866667","0.444444","1.022222","42.666667","0.000000","458.851852","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1031.375000",,,,,"0.000000","0.000000",,,"2735.375000","3532.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.440417",,"17.440417",,"17.440417",,,,,,,"5369.708333",,,,,"3489.166667",,"3.600000",,"220.911111",,,,"2510.228571","1.066667","1.822222","1.111111","16.377778","0.000000","181.444444","0.000000","10.148148","169.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","426.375000",,,,,"0.000000","0.000000",,,"1293.625000","1583.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.963750",,"16.963750",,"16.963750",,,,,,,"5512.583333",,,,,"3393.458333",,"7.755556",,"95.866667",,,,"2484.657143","1.377778","0.088889","1.266667","9.600000","0.000000","114.444444","0.000000","12.703704","99.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","195.000000",,,,,"0.000000","0.000000",,,"893.000000","1139.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.052500",,"21.052500",,"21.052500",,,,,,,"4310.166667",,,,,"4211.666667",,"3.066667",,"531.488889",,,,"1968.885714","1.022222","0.911111","2.444444","41.044444","0.000000","437.370370","0.000000","9.222222","426.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.375000","966.125000",,,,,"0.000000","0.000000",,,"3288.000000","3481.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.387083",,"17.387083",,"17.387083",,,,,,,"4945.458333",,,,,"3478.541667",,"2.733333",,"299.400000",,,,"1527.000000","1.022222","0.222222","0.555556","29.777778","0.000000","317.592593","0.000000","9.518519","306.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.125000","628.625000",,,,,"0.000000","0.000000",,,"2489.125000","2953.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.143750",,"17.143750",,"17.143750",,,,,,,"5214.708333",,,,,"3429.875000",,"3.133333",,"422.422222",,,,"626.114286","0.933333","0.133333","0.711111","41.000000","0.000000","437.555556","0.000000","9.074074","427.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1036.625000",,,,,"0.000000","0.000000",,,"5725.875000","6731.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.491667",,"15.491667",,"15.491667",,,,,,,"5783.000000",,,,,"3099.166667",,"2.777778",,"375.088889",,,,"29.542857","1.111111","0.088889","2.066667","31.688889","0.000000","335.185185","0.000000","9.851852","323.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1017.125000",,,,,"0.000000","0.000000",,,"5505.750000","6864.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.681250",,"15.681250",,"15.681250",,,,,,,"5588.458333",,,,,"3137.000000",,"2.666667",,"384.377778",,,,"34.971429","1.022222","0.777778","1.022222","37.733333","0.000000","395.518519","0.000000","9.555556","384.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1006.750000",,,,,"0.000000","0.000000",,,"5475.125000","6928.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.431667",,"14.431667",,"14.431667",,,,,,,"6280.291667",,,,,"2887.666667",,"2.688889",,"180.755556",,,,"17.571429","1.022222","0.133333","1.311111","18.177778","0.000000","193.296296","0.000000","9.370370","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","619.125000",,,,,"0.000000","0.000000",,,"4520.375000","5739.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.050417",,"17.050417",,"17.050417",,,,,,,"5428.875000",,,,,"3411.000000",,"2.955556",,"427.400000",,,,"39.400000","0.911111","0.244444","0.844444","42.488889","0.000000","433.666667","0.000000","8.777778","423.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1057.375000",,,,,"0.000000","0.000000",,,"5564.125000","6850.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.108750",,"13.108750",,"13.108750",,,,,,,"6305.708333",,,,,"2622.916667",,"2.555556",,"205.844444",,,,"18.514286","0.844444","0.111111","0.866667","19.311111","0.000000","205.370370","0.000000","8.407407","195.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","597.875000",,,,,"0.000000","0.000000",,,"4809.375000","5457.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.620000",,"15.620000",,"15.620000",,,,,,,"5381.750000",,,,,"3125.041667",,"8.377778",,"387.577778",,,,"37.371429","1.644444","0.155556","1.155556","39.155556","0.000000","405.481481","0.000000","14.333333","388.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","961.750000",,,,,"0.000000","0.000000",,,"5608.875000","6570.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.203750",,"16.203750",,"16.203750",,,,,,,"5696.291667",,,,,"3241.875000",,"2.555556",,"398.711111",,,,"36.714286","0.844444","0.088889","2.444444","39.466667","0.000000","403.296296","0.000000","7.925926","394.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","994.500000",,,,,"0.000000","0.000000",,,"5465.625000","6645.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.687500",,"16.687500",,"16.687500",,,,,,,"5753.208333",,,,,"3338.583333",,"21.377778",,"309.777778",,,,"31.571429","2.000000","0.088889","0.644444","32.577778","0.000000","357.851852","0.000000","22.074074","331.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.875000","842.000000",,,,,"0.000000","0.000000",,,"5259.375000","6447.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.737083",,"15.737083",,"15.737083",,,,,,,"6035.666667",,,,,"3148.250000",,"2.600000",,"315.600000",,,,"29.857143","0.933333","0.088889","0.777778","31.888889","0.000000","328.444444","0.000000","8.518519","318.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","898.250000",,,,,"0.000000","0.000000",,,"5282.875000","6509.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.880417",,"20.880417",,"20.880417",,,,,,,"4238.750000",,,,,"4177.250000",,"2.911111",,"552.444444",,,,"47.200000","0.933333","0.177778","1.111111","51.377778","0.000000","529.444444","0.000000","8.666667","519.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","1261.750000",,,,,"0.000000","0.000000",,,"6176.625000","7568.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.545833",,"15.545833",,"15.545833",,,,,,,"5818.916667",,,,,"3109.750000",,"2.888889",,"221.844444",,,,"2243.600000","0.933333","0.177778","1.222222","20.200000","0.000000","214.148148","0.000000","9.148148","203.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","703.250000",,,,,"0.000000","0.000000",,,"4779.125000","5535.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.322083",,"20.322083",,"20.322083",,,,,,,"4711.833333",,,,,"4065.416667",,"4.111111",,"346.800000",,,,"2537.142857","1.111111","0.288889","1.622222","33.177778","0.000000","346.592593","0.000000","12.555556","332.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","916.000000",,,,,"0.000000","0.000000",,,"5456.250000","6426.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.803750",,"21.803750",,"21.803750",,,,,,,"4158.708333",,,,,"4361.416667",,"2.066667",,"594.377778",,,,"2051.657143","0.688889","0.155556","1.977778","49.333333","0.000000","502.629630","0.000000","6.888889","494.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1367.375000",,,,,"0.000000","0.000000",,,"7055.500000","7801.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.318333",,"20.318333",,"20.318333",,,,,,,"4452.500000",,,,,"4064.500000",,"2.800000",,"374.711111",,,,"1718.685714","0.933333","0.088889","0.600000","36.888889","0.000000","377.111111","0.000000","9.037037","366.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","891.375000",,,,,"0.000000","0.000000",,,"5062.125000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.300417",,"16.300417",,"16.300417",,,,,,,"4973.041667",,,,,"3261.083333",,"789.822222",,"1180.177778",,,,"628.085714","23.911111","0.244444","2.933333","43.177778","0.000000","684.629630","0.000000","259.666667","419.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1504.375000","2226.750000",,,,,"0.000000","0.000000",,,"8786.500000","8950.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.422917",,"17.422917",,"17.422917",,,,,,,"4840.875000",,,,,"3485.458333",,"24.644444",,"1105.666667",,,,"47.714286","5.800000","0.333333","7.177778","46.444444","0.000000","516.000000","0.000000","63.555556","451.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1675.000000","2195.250000",,,,,"0.000000","0.000000",,,"27946.625000","10134.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.345417",,"16.345417",,"16.345417",,,,,,,"5041.166667",,,,,"3270.125000",,"2.733333",,"1768.200000",,,,"40.771429","0.933333","0.511111","3.888889","43.022222","0.000000","420.666667","0.000000","9.037037","410.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.000000","238.000000",,,,,"0.000000","0.000000",,,"43937.375000","15437.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.193750",,"17.193750",,"17.193750",,,,,,,"4734.041667",,,,,"3439.500000",,"2.866667",,"2564.222222",,,,"46.057143","1.022222","0.888889","5.466667","48.533333","0.000000","467.814815","0.000000","9.555556","456.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1156.500000","4823.000000",,,,,"0.000000","0.000000",,,"24010.750000","13897.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.897500",,"14.897500",,"14.897500",,,,,,,"5484.708333",,,,,"2980.375000",,"4.222222",,"2010.866667",,,,"50.114286","1.200000","0.466667","2.555556","53.955556","0.000000","549.000000","0.000000","11.481481","536.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1846.000000","3610.375000",,,,,"0.000000","0.000000",,,"31614.125000","12006.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.507500",,"17.507500",,"17.507500",,,,,,,"4920.958333",,,,,"3502.416667",,"100.888889",,"678.422222",,,,"56.114286","13.711111","0.622222","2.577778","48.511111","0.000000","632.111111","0.000000","151.074074","479.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"208.750000","1475.625000",,,,,"0.000000","0.000000",,,"4179.000000","5150.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.901250",,"16.901250",,"16.901250",,,,,,,"5194.208333",,,,,"3381.208333",,"59.000000",,"402.600000",,,,"30.514286","2.244444","0.200000","1.155556","31.466667","0.000000","342.296296","0.000000","23.888889","317.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"120.875000","765.125000",,,,,"0.000000","0.000000",,,"2402.875000","2836.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.112083",,"20.112083",,"20.112083",,,,,,,"4601.166667",,,,,"4023.583333",,"12.600000",,"510.444444",,,,"45.685714","2.111111","0.155556","0.844444","48.155556","0.000000","501.925926","0.000000","22.296296","478.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","948.125000",,,,,"0.000000","0.000000",,,"2719.875000","3382.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.409583",,"19.409583",,"19.409583",,,,,,,"5240.000000",,,,,"3882.875000",,"40.488889",,"442.333333",,,,"36.428571","2.933333","0.422222","1.111111","36.511111","0.000000","400.666667","0.000000","30.740741","364.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.000000","792.250000",,,,,"0.000000","0.000000",,,"2400.125000","3078.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.445833",,"22.445833",,"22.445833",,,,,,,"4604.875000",,,,,"4490.166667",,"3.688889",,"394.222222",,,,"34.057143","0.977778","0.266667","1.511111","36.311111","0.000000","371.444444","0.000000","9.333333","360.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","742.375000",,,,,"0.000000","0.000000",,,"2211.625000","2644.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.001667",,"28.001667",,"28.001667",,,,,,,"2361.875000",,,,,"5601.291667",,"14.488889",,"1090.866667",,,,"42.771429","1.111111","0.533333","2.577778","46.000000","0.000000","470.555556","0.000000","10.703704","458.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.250000","2029.500000",,,,,"0.000000","0.000000",,,"4422.875000","5966.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.278750",,"25.278750",,"25.278750",,,,,,,"2888.458333",,,,,"5056.958333",,"2.422222",,"237.044444",,,,"2097.857143","0.888889","0.088889","1.377778","15.511111","0.000000","170.740741","0.000000","8.777778","160.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","493.625000",,,,,"0.000000","0.000000",,,"1526.250000","1966.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.602083",,"26.602083",,"26.602083",,,,,,,"3488.958333",,,,,"5321.250000",,"17.377778",,"194.244444",,,,"2865.685714","2.088889","0.511111","1.733333","12.222222","0.000000","149.888889","0.000000","21.740741","126.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.000000","364.375000",,,,,"0.000000","0.000000",,,"1261.875000","1533.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.015833",,"24.015833",,"24.015833",,,,,,,"3501.000000",,,,,"4804.041667",,"74.111111",,"1094.555556",,,,"1873.057143","1.888889","0.488889","3.000000","34.088889","0.000000","365.518519","0.000000","19.592593","344.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"217.750000","2257.875000",,,,,"0.000000","0.000000",,,"8083.750000","9344.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.054583",,"24.054583",,"24.054583",,,,,,,"3640.375000",,,,,"4812.250000",,"21.222222",,"419.911111",,,,"1652.714286","1.600000","0.822222","1.755556","29.200000","0.000000","311.851852","0.000000","16.259259","294.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1034.000000",,,,,"0.000000","0.000000",,,"6098.750000","6925.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.857083",,"23.857083",,"23.857083",,,,,,,"3570.666667",,,,,"4772.291667",,"2.644444",,"507.066667",,,,"628.314286","0.844444","0.133333","2.266667","44.622222","0.000000","455.037037","0.000000","8.148148","445.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1141.625000",,,,,"0.000000","0.000000",,,"6010.625000","6730.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.429583",,"21.429583",,"21.429583",,,,,,,"4309.666667",,,,,"4286.666667",,"4.288889",,"482.644444",,,,"35.771429","1.333333","0.177778","2.311111","37.800000","0.000000","389.518519","0.000000","13.148148","374.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","898.000000",,,,,"0.000000","0.000000",,,"2436.375000","3083.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.282500",,"21.282500",,"21.282500",,,,,,,"4127.250000",,,,,"4257.583333",,"8.222222",,"492.355556",,,,"34.000000","1.466667","0.266667","1.644444","35.555556","0.000000","370.259259","0.000000","13.814815","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","883.625000",,,,,"0.000000","0.000000",,,"2379.875000","3081.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.342500",,"20.342500",,"20.342500",,,,,,,"4774.916667",,,,,"4069.458333",,"2.666667",,"347.800000",,,,"28.257143","0.844444","0.133333","1.533333","30.177778","0.000000","311.148148","0.000000","8.000000","301.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","649.750000",,,,,"0.000000","0.000000",,,"1917.875000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.695833",,"22.695833",,"22.695833",,,,,,,"4217.333333",,,,,"4540.250000",,"2.622222",,"512.644444",,,,"31.657143","0.933333","0.133333","2.377778","33.666667","0.000000","343.851852","0.000000","9.037037","333.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","970.375000",,,,,"0.000000","0.000000",,,"2499.625000","3209.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.001667",,"20.001667",,"20.001667",,,,,,,"4967.208333",,,,,"4001.250000",,"2.622222",,"291.577778",,,,"22.457143","0.844444","0.177778","1.111111","23.955556","0.000000","252.703704","0.000000","8.259259","243.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","557.500000",,,,,"0.000000","0.000000",,,"1609.500000","1970.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.548750",,"21.548750",,"21.548750",,,,,,,"4231.958333",,,,,"4310.625000",,"15.666667",,"1081.222222",,,,"39.485714","1.066667","0.333333","2.733333","42.244444","0.000000","432.222222","0.000000","10.370370","420.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.625000","2040.625000",,,,,"0.000000","0.000000",,,"4484.625000","5878.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.865833",,"19.865833",,"19.865833",,,,,,,"4847.375000",,,,,"3974.041667",,"2.600000",,"219.888889",,,,"18.800000","0.844444","0.133333","2.977778","19.822222","0.000000","209.370370","0.000000","8.222222","199.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.625000","420.000000",,,,,"0.000000","0.000000",,,"1358.250000","1717.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.002917",,"21.002917",,"21.002917",,,,,,,"4095.375000",,,,,"4201.458333",,"25.488889",,"446.800000",,,,"39.600000","2.355556","0.133333","1.222222","41.000000","0.000000","439.629630","0.000000","25.888889","409.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","13.000000",,,,,"0.000000","0.000000",,,"2438.375000","2934.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.914167",,"24.914167",,"24.914167",,,,,,,"3470.000000",,,,,"4984.000000",,"5.311111",,"523.800000",,,,"46.371429","1.044444","7.488889","1.755556","49.800000","0.000000","505.962963","0.000000","10.518519","494.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.000000","972.500000",,,,,"0.000000","0.000000",,,"2792.375000","3615.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.814583",,"26.814583",,"26.814583",,,,,,,"2215.000000",,,,,"5363.791667",,"4.644444",,"510.155556",,,,"36.114286","1.222222","1.955556","1.311111","38.822222","0.000000","406.555556","0.000000","11.555556","393.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1117.500000",,,,,"0.000000","0.000000",,,"5327.125000","6162.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.013333",,"23.013333",,"23.013333",,,,,,,"3520.833333",,,,,"4603.916667",,"47.044444",,"723.644444",,,,"2166.971429","2.044444","0.400000","2.355556","35.311111","0.000000","375.925926","0.000000","19.814815","353.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"99.375000","1392.125000",,,,,"0.000000","0.000000",,,"5113.125000","6090.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.370833",,"25.370833",,"25.370833",,,,,,,"3870.541667",,,,,"5075.208333",,"3.777778",,"443.511111",,,,"2219.714286","0.955556","0.200000","2.666667","20.288889","0.000000","215.666667","0.000000","9.518519","204.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","884.125000",,,,,"0.000000","0.000000",,,"2080.625000","2711.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.520000",,"24.520000",,"24.520000",,,,,,,"2946.083333",,,,,"4905.083333",,"4.288889",,"559.688889",,,,"1835.571429","1.133333","0.244444","2.355556","48.377778","0.000000","499.740741","0.000000","12.925926","485.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1045.125000",,,,,"0.000000","0.000000",,,"3576.625000","3894.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.810417",,"23.810417",,"23.810417",,,,,,,"3926.291667",,,,,"4762.875000",,"51.200000",,"794.244444",,,,"1706.714286","3.311111","0.222222","2.777778","46.044444","0.000000","496.222222","0.000000","35.740741","459.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"112.500000","1479.875000",,,,,"0.000000","0.000000",,,"3789.125000","4876.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.562083",,"24.562083",,"24.562083",,,,,,,"3507.500000",,,,,"4913.416667",,"24.577778",,"722.066667",,,,"1244.571429","1.533333","0.533333","1.622222","45.444444","0.000000","480.148148","0.000000","16.185185","462.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.625000","1334.375000",,,,,"0.000000","0.000000",,,"3403.125000","4346.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.928333",,"17.928333",,"17.928333",,,,,,,"5468.125000",,,,,"3586.458333",,"21.555556",,"511.911111",,,,"28.342857","1.244444","0.466667","1.777778","30.000000","0.000000","320.629630","0.000000","13.000000","306.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1036.750000",,,,,"0.000000","0.000000",,,"2689.625000","3525.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.181667",,"20.181667",,"20.181667",,,,,,,"4778.958333",,,,,"4037.125000",,"14.888889",,"585.133333",,,,"40.800000","1.222222","0.377778","1.711111","43.822222","0.000000","451.666667","0.000000","11.444444","438.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.625000","1090.125000",,,,,"0.000000","0.000000",,,"2918.000000","3766.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.027083",,"20.027083",,"20.027083",,,,,,,"5287.833333",,,,,"4006.458333",,"3.044444",,"313.311111",,,,"28.714286","0.933333","0.133333","0.955556","30.422222","0.000000","314.740741","0.000000","9.185185","304.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","577.375000",,,,,"0.000000","0.000000",,,"1805.375000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.611250",,"18.611250",,"18.611250",,,,,,,"5161.208333",,,,,"3723.250000",,"26.977778",,"624.600000",,,,"37.171429","1.244444","0.311111","1.555556","39.844444","0.000000","415.370370","0.000000","12.925926","401.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","1185.875000",,,,,"0.000000","0.000000",,,"3044.875000","3880.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.683750",,"19.683750",,"19.683750",,,,,,,"4790.583333",,,,,"3937.666667",,"10.044444",,"470.111111",,,,"38.485714","1.488889","0.200000","1.977778","40.711111","0.000000","425.333333","0.000000","13.888889","408.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","839.625000",,,,,"0.000000","0.000000",,,"2389.000000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.312917",,"20.312917",,"20.312917",,,,,,,"4590.666667",,,,,"4063.416667",,"35.800000",,"556.355556",,,,"39.685714","1.577778","0.444444","1.533333","42.200000","0.000000","440.888889","0.000000","16.814815","422.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.625000","1161.250000",,,,,"0.000000","0.000000",,,"5508.625000","6181.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.327083",,"17.327083",,"17.327083",,,,,,,"5647.041667",,,,,"3466.250000",,"5.533333",,"307.466667",,,,"20.600000","1.177778","0.422222","1.600000","21.422222","0.000000","230.222222","0.000000","11.518519","217.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","679.125000",,,,,"0.000000","0.000000",,,"3901.500000","4401.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.451667",,"19.451667",,"19.451667",,,,,,,"4898.166667",,,,,"3891.333333",,"39.933333",,"499.666667",,,,"42.200000","2.244444","0.222222","1.577778","43.933333","0.000000","468.851852","0.000000","25.407407","439.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.000000","988.875000",,,,,"0.000000","0.000000",,,"2928.125000","3617.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.379583",,"23.379583",,"23.379583",,,,,,,"3589.416667",,,,,"4676.833333",,"5.266667",,"504.844444",,,,"38.685714","0.933333","0.311111","1.288889","41.822222","0.000000","431.111111","0.000000","9.296296","420.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.875000","896.125000",,,,,"0.000000","0.000000",,,"2474.750000","3144.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.403750",,"23.403750",,"23.403750",,,,,,,"3931.666667",,,,,"4681.666667",,"44.177778",,"575.222222",,,,"26.628571","1.688889","0.355556","2.555556","27.755556","0.000000","301.888889","0.000000","17.481481","282.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"98.875000","1121.750000",,,,,"0.000000","0.000000",,,"2903.625000","3741.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.928750",,"22.928750",,"22.928750",,,,,,,"3864.666667",,,,,"4586.750000",,"3.355556",,"496.977778",,,,"1953.200000","1.000000","0.222222","3.244444","45.600000","0.000000","464.666667","0.000000","9.592593","453.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","931.125000",,,,,"0.000000","0.000000",,,"2628.875000","3230.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.387917",,"23.387917",,"23.387917",,,,,,,"3819.583333",,,,,"4678.583333",,"3.200000",,"384.622222",,,,"2469.571429","0.933333","0.133333","1.888889","32.044444","0.000000","331.037037","0.000000","8.888889","320.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","690.375000",,,,,"0.000000","0.000000",,,"1968.250000","2558.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.147083",,"23.147083",,"23.147083",,,,,,,"4048.125000",,,,,"4630.333333",,"8.511111",,"486.000000",,,,"1986.257143","1.511111","0.133333","1.511111","33.222222","0.000000","349.111111","0.000000","14.481481","331.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.125000","912.750000",,,,,"0.000000","0.000000",,,"3127.125000","3271.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.745000",,"24.745000",,"24.745000",,,,,,,"3739.000000",,,,,"4949.916667",,"68.977778",,"513.822222",,,,"1688.514286","2.088889","0.422222","10.333333","48.333333","0.000000","499.777778","0.000000","21.074074","477.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"143.750000","944.500000",,,,,"0.000000","0.000000",,,"3030.125000","3541.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.308333",,"23.308333",,"23.308333",,,,,,,"4263.875000",,,,,"4662.708333",,"106.377778",,"426.022222",,,,"1081.914286","8.866667","0.333333","4.155556","37.088889","0.000000","466.888889","0.000000","97.074074","368.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.625000","787.000000",,,,,"0.000000","0.000000",,,"2832.875000","3240.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.671250",,"21.671250",,"21.671250",,,,,,,"5130.041667",,,,,"4335.333333",,"3.044444",,"426.688889",,,,"34.228571","0.933333","1.200000","4.666667","36.600000","0.000000","373.148148","0.000000","9.037037","362.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","797.375000",,,,,"0.000000","0.000000",,,"2765.000000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.496667",,"18.496667",,"18.496667",,,,,,,"5174.750000",,,,,"3700.500000",,"2.977778",,"338.577778",,,,"26.485714","0.755556","0.244444","2.622222","28.244444","0.000000","291.777778","0.000000","8.000000","282.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","886.250000",,,,,"0.000000","0.000000",,,"5908.625000","6575.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.277083",,"20.277083",,"20.277083",,,,,,,"5021.291667",,,,,"4056.291667",,"2.933333",,"373.111111",,,,"33.942857","0.844444","0.288889","1.244444","36.288889","0.000000","369.296296","0.000000","8.444444","359.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","701.750000",,,,,"0.000000","0.000000",,,"2372.500000","2867.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.418750",,"20.418750",,"20.418750",,,,,,,"4930.708333",,,,,"4084.750000",,"3.311111",,"442.777778",,,,"39.057143","0.955556","0.377778","1.977778","41.844444","0.000000","423.555556","0.000000","9.111111","413.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","842.000000",,,,,"0.000000","0.000000",,,"2423.250000","3121.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.302917",,"19.302917",,"19.302917",,,,,,,"5050.833333",,,,,"3861.500000",,"10.622222",,"403.133333",,,,"32.914286","1.577778","0.266667","2.355556","34.088889","0.000000","352.370370","0.000000","14.333333","335.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","698.000000",,,,,"0.000000","0.000000",,,"1987.000000","2465.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.429583",,"18.429583",,"18.429583",,,,,,,"5284.041667",,,,,"3687.000000",,"3.111111",,"343.066667",,,,"27.657143","0.844444","0.177778","1.822222","29.422222","0.000000","299.037037","0.000000","7.888889","289.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","634.250000",,,,,"0.000000","0.000000",,,"1873.375000","2320.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.332917",,"19.332917",,"19.332917",,,,,,,"5159.375000",,,,,"3867.416667",,"5.088889",,"403.977778",,,,"33.685714","0.977778","0.155556","1.355556","35.933333","0.000000","368.666667","0.000000","9.851852","357.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","16.571429",,,,,"0.000000","0.000000",,,"2105.500000","2652.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.611250",,"20.611250",,"20.611250",,,,,,,"4681.875000",,,,,"4123.458333",,"23.733333",,"1348.466667",,,,"47.028571","2.066667","0.355556","3.866667","49.111111","0.000000","506.925926","0.000000","23.037037","479.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.500000","2580.375000",,,,,"0.000000","0.000000",,,"5369.375000","7326.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.296667",,"22.296667",,"22.296667",,,,,,,"4524.791667",,,,,"4460.291667",,"51.088889",,"1164.355556",,,,"47.028571","3.600000","0.600000","2.111111","48.911111","0.000000","539.925926","0.000000","38.777778","499.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"117.875000","2159.625000",,,,,"0.000000","0.000000",,,"4862.250000","6444.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.955000",,"21.955000",,"21.955000",,,,,,,"4732.000000",,,,,"4391.916667",,"11.955556",,"491.666667",,,,"37.257143","1.200000","0.333333","2.711111","40.222222","0.000000","427.037037","0.000000","11.777778","413.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","935.625000",,,,,"0.000000","0.000000",,,"2645.500000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.781250",,"19.781250",,"19.781250",,,,,,,"4926.541667",,,,,"3957.250000",,"65.400000",,"155.577778",,,,"2099.600000","3.866667","0.333333","1.533333","10.355556","0.000000","150.925926","0.000000","41.555556","108.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"128.625000","338.250000",,,,,"0.000000","0.000000",,,"1353.375000","1542.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.461250",,"20.461250",,"20.461250",,,,,,,"4190.166667",,,,,"4093.083333",,"108.755556",,"237.866667",,,,"2259.885714","4.933333","1.111111","1.311111","16.088889","0.000000","223.444444","0.000000","53.888889","168.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.625000","609.125000",,,,,"0.000000","0.000000",,,"5263.875000","5494.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.978750",,"21.978750",,"21.978750",,,,,,,"3665.166667",,,,,"4396.541667",,"110.444444",,"582.111111",,,,"1797.857143","2.111111","0.266667","2.288889","38.155556","0.000000","418.333333","0.000000","21.666667","395.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"229.250000","1152.625000",,,,,"0.000000","0.000000",,,"4748.625000","5321.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.058333",,"23.058333",,"23.058333",,,,,,,"3673.916667",,,,,"4612.583333",,"115.222222",,"529.311111",,,,"1644.285714","2.644444","0.377778","1.688889","36.955556","0.000000","408.074074","0.000000","25.666667","379.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.125000","995.750000",,,,,"0.000000","0.000000",,,"3815.625000","3853.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.770000",,"22.770000",,"22.770000",,,,,,,"4052.916667",,,,,"4554.750000",,"199.977778",,"475.488889",,,,"1337.200000","9.244444","0.288889","1.600000","44.111111","0.000000","554.851852","0.000000","102.148148","451.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"394.250000","897.375000",,,,,"0.000000","0.000000",,,"3574.125000","3955.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.617500",,"19.617500",,"19.617500",,,,,,,"5295.583333",,,,,"3924.750000",,"124.866667",,"341.777778",,,,"32.371429","3.800000","0.222222","3.177778","32.333333","0.000000","374.296296","0.000000","41.074074","332.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"243.625000","634.625000",,,,,"0.000000","0.000000",,,"2470.375000","2752.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.918750",,"18.918750",,"18.918750",,,,,,,"5183.291667",,,,,"3784.458333",,"122.177778",,"313.577778",,,,"29.971429","3.977778","0.177778","2.222222","29.466667","0.000000","347.592593","0.000000","43.000000","303.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"245.500000","595.250000",,,,,"0.000000","0.000000",,,"2370.750000","2631.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.155417",,"18.155417",,"18.155417",,,,,,,"5161.291667",,,,,"3631.958333",,"42.066667",,"321.600000",,,,"33.314286","4.133333","0.155556","1.177778","32.844444","0.000000","382.259259","0.000000","45.037037","335.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"97.250000","613.125000",,,,,"0.000000","0.000000",,,"2246.625000","2691.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.621667",,"20.621667",,"20.621667",,,,,,,"4642.333333",,,,,"4125.375000",,"20.844444",,"396.044444",,,,"41.742857","5.666667","0.666667","1.022222","40.844444","0.000000","482.962963","0.000000","60.555556","420.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.250000","745.500000",,,,,"0.000000","0.000000",,,"2427.375000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.285000",,"19.285000",,"19.285000",,,,,,,"5316.500000",,,,,"3858.083333",,"34.133333",,"341.177778",,,,"35.028571","7.755556","0.155556","1.111111","31.288889","0.000000","409.185185","0.000000","83.222222","323.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.500000","672.375000",,,,,"0.000000","0.000000",,,"2312.125000","2894.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.031667",,"21.031667",,"21.031667",,,,,,,"4721.416667",,,,,"4207.083333",,"12.177778",,"419.200000",,,,"36.314286","1.666667","0.200000","0.800000","38.933333","0.000000","422.074074","0.000000","17.111111","403.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","746.250000",,,,,"0.000000","0.000000",,,"2353.875000","2799.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.256250",,"22.256250",,"22.256250",,,,,,,"4469.041667",,,,,"4452.208333",,"19.933333",,"401.955556",,,,"33.971429","2.511111","0.200000","0.933333","35.222222","0.000000","391.259259","0.000000","27.000000","362.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.625000","797.000000",,,,,"0.000000","0.000000",,,"2391.125000","3007.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.030000",,"22.030000",,"22.030000",,,,,,,"4128.125000",,,,,"4407.000000",,"21.711111",,"445.400000",,,,"37.228571","2.000000","0.266667","1.133333","39.000000","0.000000","426.333333","0.000000","22.333333","399.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.750000","967.375000",,,,,"0.000000","0.000000",,,"5382.875000","5977.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.772083",,"26.772083",,"26.772083",,,,,,,"3155.500000",,,,,"5355.333333",,"16.333333",,"355.155556",,,,"25.342857","1.666667","0.933333","1.666667","26.466667","0.000000","292.333333","0.000000","17.666667","273.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.375000","772.625000",,,,,"0.000000","0.000000",,,"3880.625000","4363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.993750",,"30.993750",,"30.993750",,,,,,,"2489.625000",,,,,"6199.458333",,"3.600000",,"853.111111",,,,"32.457143","0.977778","0.266667","9.711111","34.955556","0.000000","367.740741","0.000000","9.555556","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1611.000000",,,,,"0.000000","0.000000",,,"3485.875000","4789.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.934167",,"28.934167",,"28.934167",,,,,,,"2990.500000",,,,,"5787.833333",,"19.288889",,"635.600000",,,,"1886.085714","2.555556","0.466667","3.222222","23.000000","0.000000","262.629630","0.000000","27.370370","233.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.375000","1233.250000",,,,,"0.000000","0.000000",,,"2735.000000","3695.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.990417",,"26.990417",,"26.990417",,,,,,,"2782.541667",,,,,"5398.750000",,"9.200000",,"400.511111",,,,"2459.628571","1.444444","0.422222","4.533333","15.088889","0.000000","175.444444","0.000000","18.703704","155.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","746.375000",,,,,"0.000000","0.000000",,,"1820.250000","2331.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.690000",,"27.690000",,"27.690000",,,,,,,"2734.083333",,,,,"5539.041667",,"19.111111",,"519.577778",,,,"1731.657143","2.444444","0.311111","2.711111","30.400000","0.000000","338.777778","0.000000","25.111111","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.375000","988.375000",,,,,"0.000000","0.000000",,,"3288.625000","3676.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.105833",,"32.105833",,"32.105833",,,,,,,"2585.583333",,,,,"6422.250000",,"3.866667",,"516.022222",,,,"1737.000000","0.866667","0.044444","1.955556","39.266667","0.000000","411.703704","0.000000","8.666667","401.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","952.500000",,,,,"0.000000","0.000000",,,"2538.250000","3243.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.821667",,"28.821667",,"28.821667",,,,,,,"2430.958333",,,,,"5765.458333",,"319.444444",,"489.933333",,,,"1317.257143","7.844444","2.088889","2.866667","35.977778","0.000000","449.259259","0.000000","81.814815","365.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"621.125000","914.625000",,,,,"0.000000","0.000000",,,"4071.000000","4154.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.548333",,"25.548333",,"25.548333",,,,,,,"3626.416667",,,,,"5110.625000",,"6.400000",,"440.111111",,,,"30.857143","1.044444","1.244444","1.777778","33.177778","0.000000","348.666667","0.000000","10.333333","337.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","920.125000",,,,,"0.000000","0.000000",,,"3585.375000","4280.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.844583",,"23.844583",,"23.844583",,,,,,,"3946.166667",,,,,"4769.958333",,"3.111111",,"355.755556",,,,"25.000000","0.933333","0.866667","2.511111","26.666667","0.000000","283.592593","0.000000","9.333333","272.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","914.750000",,,,,"0.000000","0.000000",,,"5480.500000","6309.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.641667",,"25.641667",,"25.641667",,,,,,,"3980.291667",,,,,"5129.416667",,"3.133333",,"345.644444",,,,"25.742857","1.022222","0.444444","1.800000","27.555556","0.000000","296.148148","0.000000","9.851852","284.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","694.875000",,,,,"0.000000","0.000000",,,"2156.000000","2752.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.242500",,"27.242500",,"27.242500",,,,,,,"3602.958333",,,,,"5449.250000",,"3.600000",,"426.177778",,,,"31.685714","0.955556","0.288889","1.577778","34.355556","0.000000","365.296296","0.000000","9.629630","354.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","856.625000",,,,,"0.000000","0.000000",,,"3376.125000","4004.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.987917",,"24.987917",,"24.987917",,,,,,,"3892.250000",,,,,"4998.375000",,"3.266667",,"384.622222",,,,"28.800000","0.688889","0.977778","1.777778","31.155556","0.000000","327.333333","0.000000","7.407407","318.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","918.625000",,,,,"0.000000","0.000000",,,"5638.625000","6171.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.180833",,"26.180833",,"26.180833",,,,,,,"3954.333333",,,,,"5237.250000",,"3.666667",,"336.822222",,,,"26.628571","0.933333","0.355556","1.755556","28.400000","0.000000","299.518519","0.000000","9.407407","288.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","17.571429",,,,,"0.000000","0.000000",,,"1933.875000","2362.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.375417",,"24.375417",,"24.375417",,,,,,,"3811.041667",,,,,"4875.875000",,"9.488889",,"384.800000",,,,"27.657143","1.600000","0.222222","4.333333","28.488889","0.000000","303.888889","0.000000","14.925926","286.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","688.125000",,,,,"0.000000","0.000000",,,"1897.375000","2363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.558333",,"25.558333",,"25.558333",,,,,,,"4546.125000",,,,,"5112.875000",,"22.066667",,"290.377778",,,,"19.800000","1.911111","0.644444","3.000000","19.400000","0.000000","221.777778","0.000000","21.740741","196.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.125000","564.125000",,,,,"0.000000","0.000000",,,"1678.125000","2137.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.363333",,"20.363333",,"20.363333",,,,,,,"5021.291667",,,,,"4073.833333",,"3.266667",,"544.933333",,,,"17.828571","0.777778","0.488889","4.511111","18.577778","0.000000","195.962963","0.000000","8.037037","186.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1023.625000",,,,,"0.000000","0.000000",,,"2298.125000","3142.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.050417",,"29.050417",,"29.050417",,,,,,,"2981.791667",,,,,"5810.958333",,"5.600000",,"471.577778",,,,"31.600000","1.022222","0.422222","2.488889","34.177778","0.000000","362.259259","0.000000","9.814815","351.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","876.875000",,,,,"0.000000","0.000000",,,"2333.750000","3005.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.135833",,"24.135833",,"24.135833",,,,,,,"4103.583333",,,,,"4827.875000",,"4.800000",,"427.222222",,,,"1936.885714","0.955556","0.444444","5.266667","31.044444","0.000000","330.555556","0.000000","9.629630","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","819.500000",,,,,"0.000000","0.000000",,,"2187.250000","2764.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.093333",,"23.093333",,"23.093333",,,,,,,"4516.666667",,,,,"4619.666667",,"3.733333",,"131.222222",,,,"2343.942857","0.800000","0.755556","4.933333","6.511111","0.000000","77.370370","0.000000","8.370370","67.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","259.125000",,,,,"0.000000","0.000000",,,"854.625000","1107.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.731667",,"24.731667",,"24.731667",,,,,,,"3873.416667",,,,,"4947.375000",,"4.311111",,"345.377778",,,,"1820.628571","0.977778","0.311111","2.266667","17.577778","0.000000","194.111111","0.000000","10.148148","181.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","656.500000",,,,,"0.000000","0.000000",,,"2409.625000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.020000",,"26.020000",,"26.020000",,,,,,,"3419.833333",,,,,"5204.916667",,"3.511111",,"409.622222",,,,"1622.628571","0.777778","0.155556","2.022222","31.466667","0.000000","339.296296","0.000000","8.148148","329.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","754.000000",,,,,"0.000000","0.000000",,,"2048.375000","2616.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.212083",,"23.212083",,"23.212083",,,,,,,"3907.083333",,,,,"4643.416667",,"3.577778",,"316.200000",,,,"1369.000000","0.866667","0.555556","1.733333","25.355556","0.000000","271.481481","0.000000","8.481481","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","807.000000",,,,,"0.000000","0.000000",,,"5782.500000","6142.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.110417",,"23.110417",,"23.110417",,,,,,,"4242.791667",,,,,"4623.250000",,"3.577778",,"409.088889",,,,"29.571429","0.866667","0.266667","1.933333","32.111111","0.000000","342.148148","0.000000","8.444444","332.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","820.500000",,,,,"0.000000","0.000000",,,"2967.375000","3440.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.886667",,"22.886667",,"22.886667",,,,,,,"4692.750000",,,,,"4578.291667",,"4.422222",,"338.311111",,,,"24.485714","0.977778","0.444444","1.377778","26.000000","0.000000","276.222222","0.000000","10.074074","264.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","613.750000",,,,,"0.000000","0.000000",,,"1764.500000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.199167",,"25.199167",,"25.199167",,,,,,,"4138.750000",,,,,"5040.583333",,"12.288889",,"486.866667",,,,"41.514286","3.266667","0.711111","1.733333","41.977778","0.000000","465.148148","0.000000","29.185185","428.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","927.375000",,,,,"0.000000","0.000000",,,"2607.250000","3191.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.387917",,"23.387917",,"23.387917",,,,,,,"4200.000000",,,,,"4678.791667",,"4.355556",,"459.266667",,,,"35.485714","1.133333","0.200000","1.488889","38.200000","0.000000","400.925926","0.000000","10.629630","388.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","820.375000",,,,,"0.000000","0.000000",,,"2342.250000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.585000",,"23.585000",,"23.585000",,,,,,,"4408.333333",,,,,"4717.833333",,"2.844444",,"427.600000",,,,"33.800000","0.977778","0.333333","2.377778","36.688889","0.000000","386.814815","0.000000","9.037037","376.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","817.500000",,,,,"0.000000","0.000000",,,"2398.875000","2851.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.860833",,"22.860833",,"22.860833",,,,,,,"4273.875000",,,,,"4573.208333",,"5.000000",,"617.400000",,,,"32.800000","0.977778","0.755556","2.800000","35.311111","0.000000","369.111111","0.000000","9.814815","358.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1178.375000",,,,,"0.000000","0.000000",,,"2931.375000","3814.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.021250",,"22.021250",,"22.021250",,,,,,,"4434.583333",,,,,"4405.208333",,"5.355556",,"931.066667",,,,"34.314286","1.066667","0.311111","4.022222","37.000000","0.000000","390.333333","0.000000","10.962963","377.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1743.125000",,,,,"0.000000","0.000000",,,"3817.250000","5044.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.584583",,"23.584583",,"23.584583",,,,,,,"4611.833333",,,,,"4717.833333",,"25.622222",,"365.155556",,,,"29.542857","2.311111","0.711111","1.888889","30.177778","0.000000","340.407407","0.000000","25.555556","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.500000","662.125000",,,,,"0.000000","0.000000",,,"2009.875000","2430.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.106250",,"21.106250",,"21.106250",,,,,,,"4887.875000",,,,,"4222.250000",,"103.400000",,"408.311111",,,,"27.400000","2.977778","0.422222","3.000000","27.511111","0.000000","319.222222","0.000000","32.370370","285.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","804.625000",,,,,"0.000000","0.000000",,,"2537.375000","2837.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.006667",,"29.006667",,"29.006667",,,,,,,"2160.541667",,,,,"5802.166667",,"182.555556",,"2337.155556",,,,"50.028571","3.911111","0.422222","3.888889","51.355556","0.000000","553.962963","0.000000","41.444444","511.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.750000","4417.375000",,,,,"0.000000","0.000000",,,"10063.375000","12718.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.353333",,"29.353333",,"29.353333",,,,,,,"2219.166667",,,,,"5871.708333",,"4.311111",,"367.688889",,,,"1833.342857","1.088889","0.266667","1.777778","24.555556","0.000000","264.111111","0.000000","10.111111","252.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","928.500000",,,,,"0.000000","0.000000",,,"5671.625000","6342.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.422083",,"34.422083",,"34.422083",,,,,,,"1030.708333",,,,,"6885.250000",,"3.488889",,"189.155556",,,,"2206.657143","0.844444","0.266667","1.288889","12.288889","0.000000","135.740741","0.000000","8.481481","126.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","389.125000",,,,,"0.000000","0.000000",,,"1684.000000","1917.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.240833",,"33.240833",,"33.240833",,,,,,,"1358.458333",,,,,"6649.250000",,"4.177778",,"470.688889",,,,"1726.771429","0.955556","0.222222","1.888889","38.022222","0.000000","404.814815","0.000000","9.296296","394.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","887.875000",,,,,"0.000000","0.000000",,,"3387.125000","3392.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.927500",,"30.927500",,"30.927500",,,,,,,"2188.666667",,,,,"6186.416667",,"3.777778",,"477.244444",,,,"1989.428571","0.911111","0.111111","1.622222","34.533333","0.000000","368.148148","0.000000","9.000000","357.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","894.875000",,,,,"0.000000","0.000000",,,"2517.500000","2988.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.624583",,"27.624583",,"27.624583",,,,,,,"3653.875000",,,,,"5525.583333",,"9.755556",,"369.333333",,,,"1366.742857","1.777778","0.222222","1.511111","34.488889","0.000000","370.000000","0.000000","16.777778","349.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","673.750000",,,,,"0.000000","0.000000",,,"2012.500000","2480.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.403750",,"21.403750",,"21.403750",,,,,,,"4175.625000",,,,,"4281.791667",,"39.111111",,"447.355556",,,,"38.914286","1.200000","2.577778","1.844444","41.933333","0.000000","442.592593","0.000000","11.481481","429.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"83.625000","822.000000",,,,,"0.000000","0.000000",,,"2578.375000","3057.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.831250",,"20.831250",,"20.831250",,,,,,,"4506.458333",,,,,"4167.416667",,"4.177778",,"332.466667",,,,"24.942857","0.888889","0.266667","1.466667","26.666667","0.000000","283.703704","0.000000","9.074074","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","601.625000",,,,,"0.000000","0.000000",,,"1725.000000","2297.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.585833",,"21.585833",,"21.585833",,,,,,,"4385.916667",,,,,"4317.916667",,"64.755556",,"690.622222",,,,"40.771429","1.955556","0.688889","2.977778","43.200000","0.000000","460.111111","0.000000","20.518519","438.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.875000","1303.500000",,,,,"0.000000","0.000000",,,"3527.625000","4381.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.914583",,"19.914583",,"19.914583",,,,,,,"4630.958333",,,,,"3984.125000",,"7.133333",,"279.466667",,,,"22.000000","1.333333","0.244444","1.088889","22.844444","0.000000","249.851852","0.000000","13.740741","234.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","563.625000",,,,,"0.000000","0.000000",,,"1700.250000","2185.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.425417",,"20.425417",,"20.425417",,,,,,,"4162.375000",,,,,"4085.833333",,"3.777778",,"408.511111",,,,"34.771429","0.977778","0.222222","1.422222","37.466667","0.000000","391.740741","0.000000","9.592593","380.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","216.714286",,,,,"0.000000","0.000000",,,"4464.375000","5315.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.187917",,"20.187917",,"20.187917",,,,,,,"4513.583333",,,,,"4038.583333",,"3.888889",,"325.111111",,,,"28.485714","0.800000","0.244444","1.022222","30.755556","0.000000","324.074074","0.000000","8.333333","314.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","878.000000",,,,,"0.000000","0.000000",,,"5278.500000","6432.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.915833",,"23.915833",,"23.915833",,,,,,,"4044.875000",,,,,"4784.166667",,"4.511111",,"484.955556",,,,"38.000000","0.977778","0.400000","2.200000","41.288889","0.000000","434.481481","0.000000","9.666667","423.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1196.875000",,,,,"0.000000","0.000000",,,"5820.000000","7306.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.827917",,"22.827917",,"22.827917",,,,,,,"4715.666667",,,,,"4566.708333",,"24.000000",,"452.733333",,,,"30.628571","2.244444","0.222222","2.577778","31.377778","0.000000","347.259259","0.000000","24.592593","318.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.625000","1128.500000",,,,,"0.000000","0.000000",,,"5632.000000","7114.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.049583",,"25.049583",,"25.049583",,,,,,,"3711.625000",,,,,"5010.541667",,"3.844444",,"411.133333",,,,"31.314286","0.688889","0.155556","1.555556","33.933333","0.000000","351.481481","0.000000","7.333333","343.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1039.375000",,,,,"0.000000","0.000000",,,"5402.000000","6802.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.970000",,"26.970000",,"26.970000",,,,,,,"3415.541667",,,,,"5394.833333",,"3.488889",,"627.511111",,,,"46.371429","1.022222","0.288889","1.600000","50.333333","0.000000","522.222222","0.000000","10.185185","510.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.750000","1465.125000",,,,,"0.000000","0.000000",,,"6322.000000","7983.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.988333",,"22.988333",,"22.988333",,,,,,,"4584.083333",,,,,"4598.666667",,"404.111111",,"262.288889",,,,"1861.200000","10.800000","0.377778","2.600000","9.666667","0.000000","218.888889","0.000000","118.518519","98.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"725.375000","785.250000",,,,,"0.000000","0.000000",,,"6485.750000","7040.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.033333",,"26.033333",,"26.033333",,,,,,,"3534.041667",,,,,"5207.458333",,"268.933333",,"734.266667",,,,"2347.085714","8.244444","0.555556","4.000000","43.244444","0.000000","523.185185","0.000000","86.111111","432.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"484.250000","1650.875000",,,,,"0.000000","0.000000",,,"7747.875000","9121.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.753333",,"22.753333",,"22.753333",,,,,,,"4215.791667",,,,,"4551.625000",,"116.533333",,"686.733333",,,,"1781.085714","3.422222","0.533333","3.088889","14.111111","0.000000","175.666667","0.000000","36.518519","137.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"342.000000","1281.750000",,,,,"0.000000","0.000000",,,"6225.625000","7415.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.508750",,"25.508750",,"25.508750",,,,,,,"3113.041667",,,,,"5102.541667",,"295.533333",,"1229.333333",,,,"1659.000000","4.711111","0.622222","2.800000","45.266667","0.000000","504.481481","0.000000","50.518519","452.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"638.500000","2849.750000",,,,,"0.000000","0.000000",,,"10561.875000","12131.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.012917",,"24.012917",,"24.012917",,,,,,,"3588.500000",,,,,"4803.500000",,"46.933333",,"726.111111",,,,"1502.542857","2.200000","0.533333","2.088889","38.222222","0.000000","412.814815","0.000000","22.777778","388.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.375000","1656.625000",,,,,"0.000000","0.000000",,,"6671.875000","8329.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.888750",,"20.888750",,"20.888750",,,,,,,"4954.666667",,,,,"4178.583333",,"449.111111",,"1191.933333",,,,"36.714286","9.555556","0.577778","2.644444","31.200000","0.000000","416.518519","0.000000","104.777778","310.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"784.000000","2513.250000",,,,,"0.000000","0.000000",,,"9665.500000","11292.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.364583",,"20.364583",,"20.364583",,,,,,,"5137.708333",,,,,"4073.708333",,"854.622222",,"604.288889",,,,"47.000000","19.133333","0.355556","3.844444","33.533333","0.000000","549.444444","0.000000","210.296296","337.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1735.875000","1457.875000",,,,,"0.000000","0.000000",,,"10736.375000","10653.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.767917",,"20.767917",,"20.767917",,,,,,,"4757.625000",,,,,"4154.500000",,"860.577778",,"908.533333",,,,"53.685714","19.555556","0.622222","4.244444","40.577778","0.000000","623.925926","0.000000","215.370370","407.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1625.375000","2014.500000",,,,,"0.000000","0.000000",,,"11235.875000","11732.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.132500",,"21.132500",,"21.132500",,,,,,,"4617.833333",,,,,"4227.541667",,"736.066667",,"774.977778",,,,"45.657143","16.355556","0.377778","4.422222","34.755556","0.000000","529.518519","0.000000","178.814815","349.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.285714","1546.625000",,,,,"0.000000","0.000000",,,"10344.000000","9835.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.032500",,"22.032500",,"22.032500",,,,,,,"4439.125000",,,,,"4407.500000",,"6.955556",,"1212.955556",,,,"33.200000","1.444444","0.266667","2.533333","35.044444","0.000000","367.185185","0.000000","14.888889","350.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.625000","2496.750000",,,,,"0.000000","0.000000",,,"6941.375000","8642.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.887083",,"22.887083",,"22.887083",,,,,,,"4623.125000",,,,,"4578.166667",,"36.111111",,"639.933333",,,,"33.885714","4.066667","0.288889","2.244444","33.533333","0.000000","384.777778","0.000000","44.148148","339.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.875000","1476.375000",,,,,"0.000000","0.000000",,,"7324.875000","8542.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.245000",,"24.245000",,"24.245000",,,,,,,"4126.791667",,,,,"4850.000000",,"40.022222",,"1423.977778",,,,"53.914286","3.088889","0.511111","2.844444","56.822222","0.000000","613.888889","0.000000","33.629630","578.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"102.000000","2594.875000",,,,,"0.000000","0.000000",,,"5679.000000","7386.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.482917",,"23.482917",,"23.482917",,,,,,,"4209.791667",,,,,"4697.541667",,"59.688889",,"2362.977778",,,,"59.542857","3.977778","0.422222","2.933333","60.444444","0.000000","631.888889","0.000000","42.629630","584.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.250000","11.571429",,,,,"0.000000","0.000000",,,"8825.000000","11966.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.870833",,"22.870833",,"22.870833",,,,,,,"4536.250000",,,,,"4575.208333",,"140.377778",,"1395.600000",,,,"47.342857","5.200000","0.400000","4.711111","46.800000","0.000000","513.518519","0.000000","56.444444","455.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"292.250000","2293.625000",,,,,"0.000000","0.000000",,,"5536.625000","6930.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.235000",,"27.235000",,"27.235000",,,,,,,"3163.125000",,,,,"5447.750000",,"1359.911111",,"734.088889",,,,"55.457143","25.533333","1.000000","1.911111","36.444444","0.000000","641.185185","0.000000","280.333333","359.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2495.500000","1715.250000",,,,,"0.000000","0.000000",,,"10135.250000","8688.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.585417",,"27.585417",,"27.585417",,,,,,,"3161.750000",,,,,"5518.000000",,"722.422222",,"1016.733333",,,,"2006.200000","19.288889","0.422222","5.555556","35.800000","0.000000","560.555556","0.000000","211.629630","347.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1381.875000","1915.750000",,,,,"0.000000","0.000000",,,"7565.500000","7570.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.499167",,"31.499167",,"31.499167",,,,,,,"1918.166667",,,,,"6300.625000",,"679.711111",,"926.866667",,,,"2397.942857","15.866667","0.377778","2.800000","45.822222","0.000000","626.740741","0.000000","173.740741","451.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1407.875000","1750.500000",,,,,"0.000000","0.000000",,,"7460.375000","7272.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.340833",,"24.340833",,"24.340833",,,,,,,"3643.541667",,,,,"4869.291667",,"1056.933333",,"231.400000",,,,"2063.371429","19.688889","0.333333","1.488889","13.733333","0.000000","357.777778","0.000000","215.925926","140.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1918.250000","473.250000",,,,,"0.000000","0.000000",,,"6299.750000","4447.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.610417",,"27.610417",,"27.610417",,,,,,,"2806.791667",,,,,"5523.000000",,"1150.311111",,"584.244444",,,,"1536.857143","28.400000","0.311111","1.466667","43.444444","0.000000","745.814815","0.000000","312.185185","432.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2300.125000","1068.750000",,,,,"0.000000","0.000000",,,"9381.375000","7172.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.976667",,"27.976667",,"27.976667",,,,,,,"2958.166667",,,,,"5596.125000",,"1105.111111",,"1086.511111",,,,"1245.657143","21.488889","0.400000","4.555556","48.955556","0.000000","716.444444","0.000000","236.592593","478.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2038.250000","2052.750000",,,,,"0.000000","0.000000",,,"9701.125000","8926.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.550000",,"26.550000",,"26.550000",,,,,,,"3721.500000",,,,,"5310.958333",,"614.377778",,"868.866667",,,,"54.228571","13.822222","0.222222","2.333333","46.288889","0.000000","609.629630","0.000000","151.851852","456.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1289.500000","1618.125000",,,,,"0.000000","0.000000",,,"7066.375000","6734.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.659583",,"28.659583",,"28.659583",,,,,,,"3554.125000",,,,,"5733.166667",,"5.666667",,"418.644444",,,,"34.000000","1.066667","0.244444","1.800000","36.266667","0.000000","373.740741","0.000000","11.296296","361.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.125000","970.375000",,,,,"0.000000","0.000000",,,"5646.625000","6314.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.708333",,"26.708333",,"26.708333",,,,,,,"4164.916667",,,,,"5342.708333",,"51.022222",,"291.755556",,,,"24.428571","1.844444","1.800000","1.288889","24.955556","0.000000","269.703704","0.000000","19.333333","249.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"111.625000","605.125000",,,,,"0.000000","0.000000",,,"3260.125000","3502.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.214583",,"27.214583",,"27.214583",,,,,,,"3649.208333",,,,,"5443.875000",,"5.866667",,"431.933333",,,,"35.114286","1.066667","0.266667","0.955556","37.444444","0.000000","384.111111","0.000000","11.222222","371.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","794.125000",,,,,"0.000000","0.000000",,,"2245.375000","2754.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.018333",,"26.018333",,"26.018333",,,,,,,"3707.875000",,,,,"5204.541667",,"5.355556",,"423.355556",,,,"34.085714","1.022222","0.200000","1.422222","36.111111","0.000000","364.629630","0.000000","9.814815","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","821.750000",,,,,"0.000000","0.000000",,,"2301.375000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.464167",,"27.464167",,"27.464167",,,,,,,"3884.833333",,,,,"5493.750000",,"10.155556",,"442.866667",,,,"34.485714","1.622222","0.355556","1.622222","35.777778","0.000000","368.407407","0.000000","15.222222","350.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","808.250000",,,,,"0.000000","0.000000",,,"2240.000000","2816.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.701250",,"17.701250",,"17.701250",,,,,,,"5011.291667",,,,,"3541.208333",,"1284.777778",,"695.266667",,,,"53.142857","23.266667","0.355556","3.688889","36.022222","0.000000","611.407407","0.000000","255.370370","354.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2433.625000","1326.125000",,,,,"0.000000","0.000000",,,"9949.000000","8372.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.350417",,"15.350417",,"15.350417",,,,,,,"5382.250000",,,,,"3071.000000",,"1021.622222",,"401.822222",,,,"47.142857","24.044444","0.311111","1.733333","28.466667","0.000000","552.148148","0.000000","265.185185","283.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1899.125000","1010.125000",,,,,"0.000000","0.000000",,,"10457.625000","9363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.290833",,"21.290833",,"21.290833",,,,,,,"3619.541667",,,,,"4259.166667",,"1152.755556",,"1107.355556",,,,"66.057143","22.422222","0.288889","2.755556","51.244444","0.000000","752.481481","0.000000","246.555556","504.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.000000","2143.750000",,,,,"0.000000","0.000000",,,"11082.375000","10263.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.514583",,"17.514583",,"17.514583",,,,,,,"5009.291667",,,,,"3503.916667",,"509.822222",,"551.244444",,,,"39.342857","22.688889","0.466667","2.733333","21.822222","0.000000","474.296296","0.000000","251.000000","222.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1031.750000","1032.000000",,,,,"0.000000","0.000000",,,"5165.250000","5015.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.677083",,"16.677083",,"16.677083",,,,,,,"4875.791667",,,,,"3336.375000",,"1580.733333",,"1680.155556",,,,"2085.142857","37.311111","0.688889","4.422222","31.422222","0.000000","706.518519","0.000000","410.666667","294.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2951.750000","14.000000",,,,,"0.000000","0.000000",,,"13374.875000","12946.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.907917",,"20.907917",,"20.907917",,,,,,,"3977.750000",,,,,"4182.583333",,"1303.755556",,"1908.777778",,,,"2471.485714","31.622222","1.066667","7.533333","51.777778","0.000000","838.925926","0.000000","347.185185","490.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.714286","3601.125000",,,,,"0.000000","0.000000",,,"13378.000000","13419.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.235000",,"17.235000",,"17.235000",,,,,,,"5147.250000",,,,,"3447.916667",,"460.266667",,"927.022222",,,,"1903.028571","16.422222","0.466667","4.577778","14.866667","0.000000","325.148148","0.000000","180.962963","143.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1584.750000","1394.000000",,,,,"0.000000","0.000000",,,"14222.625000","6818.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.307083",,"20.307083",,"20.307083",,,,,,,"3968.958333",,,,,"4062.708333",,"34.555556",,"1291.622222",,,,"1599.142857","3.355556","1.266667","14.333333","28.288889","0.000000","316.296296","0.000000","36.407407","278.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1666.625000","3053.125000",,,,,"0.000000","0.000000",,,"30891.750000","13841.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.724167",,"16.724167",,"16.724167",,,,,,,"5358.458333",,,,,"3345.833333",,"10.844444",,"2037.777778",,,,"1145.828571","1.466667","6.844444","39.977778","22.822222","0.000000","233.962963","0.000000","16.037037","215.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"297.250000","3983.375000",,,,,"0.000000","0.000000",,,"11017.000000","11143.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.643750",,"13.643750",,"13.643750",,,,,,,"6606.375000",,,,,"2729.666667",,"7.400000",,"491.866667",,,,"17.371429","1.177778","1.022222","19.600000","17.777778","0.000000","197.666667","0.000000","11.962963","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"80.750000","1036.250000",,,,,"0.000000","0.000000",,,"3139.000000","3352.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"12.636667",,"12.636667",,"12.636667",,,,,,,"6646.916667",,,,,"2528.291667",,"4.911111",,"421.444444",,,,"18.114286","1.044444","0.733333","15.133333","19.000000","0.000000","209.444444","0.000000","10.148148","197.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","809.375000",,,,,"0.000000","0.000000",,,"1915.125000","2591.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.670000",,"14.670000",,"14.670000",,,,,,,"6072.541667",,,,,"2934.791667",,"10.488889",,"254.955556",,,,"17.685714","1.533333","1.000000","4.444444","17.533333","0.000000","197.592593","0.000000","14.518519","180.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","496.125000",,,,,"0.000000","0.000000",,,"1451.375000","1772.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"11.757083",,"11.757083",,"11.757083",,,,,,,"7023.958333",,,,,"2352.333333",,"20.555556",,"68.733333",,,,"5.800000","1.222222","1.866667","3.222222","5.088889","0.000000","69.037037","0.000000","11.962963","55.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.250000","127.000000",,,,,"0.000000","0.000000",,,"654.750000","682.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.686667",,"15.686667",,"15.686667",,,,,,,"5678.291667",,,,,"3138.208333",,"3.288889",,"249.177778",,,,"19.171429","0.844444","0.088889","3.266667","20.266667","0.000000","216.296296","0.000000","8.296296","206.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","449.250000",,,,,"0.000000","0.000000",,,"1368.250000","1697.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.884167",,"15.884167",,"15.884167",,,,,,,"5630.000000",,,,,"3177.666667",,"4.577778",,"322.666667",,,,"23.400000","1.044444","0.244444","2.533333","24.955556","0.000000","269.629630","0.000000","10.333333","257.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","631.000000",,,,,"0.000000","0.000000",,,"1798.125000","2281.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.777083",,"13.777083",,"13.777083",,,,,,,"6263.291667",,,,,"2756.500000",,"3.622222",,"273.755556",,,,"24.514286","0.777778","0.200000","1.844444","26.466667","0.000000","281.518519","0.000000","7.888889","272.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","524.375000",,,,,"0.000000","0.000000",,,"1628.125000","1966.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.099583",,"19.099583",,"19.099583",,,,,,,"4743.125000",,,,,"3820.875000",,"22.844444",,"342.533333",,,,"24.914286","2.000000","0.244444","2.400000","25.577778","0.000000","294.444444","0.000000","22.111111","268.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.625000","619.500000",,,,,"0.000000","0.000000",,,"1884.375000","2355.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.419583",,"28.419583",,"28.419583",,,,,,,"2169.083333",,,,,"5684.875000",,"3.866667",,"646.266667",,,,"43.714286","0.866667","0.244444","1.511111","48.311111","0.000000","517.074074","0.000000","9.148148","506.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1203.250000",,,,,"0.000000","0.000000",,,"3161.125000","4220.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.884167",,"33.884167",,"33.884167",,,,,,,"793.750000",,,,,"6777.958333",,"8.777778",,"642.777778",,,,"41.171429","1.133333","0.311111","1.755556","45.088889","0.000000","485.407407","0.000000","12.185185","472.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","1310.375000",,,,,"0.000000","0.000000",,,"5276.625000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.700417",,"30.700417",,"30.700417",,,,,,,"936.666667",,,,,"6141.000000",,"34.133333",,"1127.155556",,,,"1465.457143","30.133333","0.333333","4.622222","57.044444","0.000000","840.851852","0.000000","255.481481","580.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6842.875000","2322.125000",,,,,"0.000000","0.000000",,,"100165.250000","24503.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.037083",,"36.037083",,"36.037083",,,,,,,"1285.083333",,,,,"7208.291667",,"6.844444",,"357.155556",,,,"2660.600000","4.355556","0.488889","2.800000","24.822222","0.000000","307.777778","0.000000","38.370370","266.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.875000","716.875000",,,,,"0.000000","0.000000",,,"5619.750000","3289.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.591667",,"31.591667",,"31.591667",,,,,,,"2267.666667",,,,,"6319.208333",,"5.622222",,"432.044444",,,,"2012.942857","1.288889","0.622222","2.577778","34.755556","0.000000","385.925926","0.000000","12.296296","372.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","797.750000",,,,,"0.000000","0.000000",,,"2391.000000","2918.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.374167",,"30.374167",,"30.374167",,,,,,,"2500.583333",,,,,"6075.875000",,"3.000000",,"800.622222",,,,"1996.600000","0.800000","0.244444","2.311111","65.066667","0.000000","696.111111","0.000000","8.148148","686.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.000000","1476.750000",,,,,"0.000000","0.000000",,,"4373.250000","5211.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.625000",,"27.625000",,"27.625000",,,,,,,"2838.000000",,,,,"5525.750000",,"4.866667",,"582.488889",,,,"1094.257143","0.955556","0.844444","1.311111","49.822222","0.000000","544.370370","0.000000","9.814815","533.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.500000","1138.000000",,,,,"0.000000","0.000000",,,"3051.875000","3931.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.592917",,"22.592917",,"22.592917",,,,,,,"4276.833333",,,,,"4519.416667",,"4.111111",,"618.711111",,,,"50.828571","0.688889","0.088889","1.533333","56.888889","0.000000","611.925926","0.000000","7.592593","603.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","16.428571",,,,,"0.000000","0.000000",,,"3246.625000","4274.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.680417",,"20.680417",,"20.680417",,,,,,,"4539.083333",,,,,"4137.166667",,"3.555556",,"443.822222",,,,"33.485714","1.022222","0.088889","1.733333","37.000000","0.000000","408.629630","0.000000","9.481481","397.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","851.750000",,,,,"0.000000","0.000000",,,"2333.375000","3082.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.137917",,"21.137917",,"21.137917",,,,,,,"4639.083333",,,,,"4228.583333",,"4.333333",,"548.533333",,,,"46.228571","0.911111","0.244444","2.377778","51.600000","0.000000","560.703704","0.000000","8.851852","550.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1040.875000",,,,,"0.000000","0.000000",,,"2947.625000","3860.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.762083",,"19.762083",,"19.762083",,,,,,,"4567.791667",,,,,"3953.291667",,"4.400000",,"592.800000",,,,"52.542857","0.955556","0.733333","1.066667","58.977778","0.000000","646.222222","0.000000","9.074074","635.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","1115.500000",,,,,"0.000000","0.000000",,,"3134.750000","4069.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.950417",,"22.950417",,"22.950417",,,,,,,"3818.916667",,,,,"4590.958333",,"4.222222",,"721.133333",,,,"62.342857","0.955556","0.622222","1.155556","69.733333","0.000000","749.629630","0.000000","9.222222","738.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1371.125000",,,,,"0.000000","0.000000",,,"3664.750000","4854.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.935000",,"22.935000",,"22.935000",,,,,,,"3686.208333",,,,,"4588.125000",,"9.288889",,"644.888889",,,,"54.342857","1.577778","0.133333","1.066667","59.955556","0.000000","658.296296","0.000000","14.703704","640.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1186.750000",,,,,"0.000000","0.000000",,,"3322.000000","4221.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.317500",,"22.317500",,"22.317500",,,,,,,"4577.541667",,,,,"4464.333333",,"3.977778",,"697.644444",,,,"58.885714","0.844444","0.133333","0.911111","66.133333","0.000000","717.814815","0.000000","8.629630","707.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1348.000000",,,,,"0.000000","0.000000",,,"4048.625000","5124.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.851250",,"24.851250",,"24.851250",,,,,,,"2913.458333",,,,,"4971.041667",,"28.022222",,"791.111111",,,,"67.771429","2.555556","0.466667","1.333333","73.977778","0.000000","815.259259","0.000000","27.814815","783.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.500000","1696.125000",,,,,"0.000000","0.000000",,,"7658.250000","8914.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.849167",,"21.849167",,"21.849167",,,,,,,"3987.916667",,,,,"4370.666667",,"3.600000",,"575.622222",,,,"37.514286","0.955556","0.444444","3.311111","42.044444","0.000000","469.851852","0.000000","9.148148","459.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","1129.250000",,,,,"0.000000","0.000000",,,"3691.625000","4527.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.592500",,"26.592500",,"26.592500",,,,,,,"2948.541667",,,,,"5319.500000",,"3.333333",,"741.222222",,,,"60.942857","0.844444","0.088889","1.977778","68.688889","0.000000","744.370370","0.000000","8.074074","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.375000","1399.125000",,,,,"0.000000","0.000000",,,"3833.875000","5015.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.259583",,"23.259583",,"23.259583",,,,,,,"3991.458333",,,,,"4652.958333",,"2.577778",,"560.288889",,,,"2218.914286","0.844444","0.266667","2.666667","46.711111","0.000000","510.814815","0.000000","8.222222","501.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.750000","1046.875000",,,,,"0.000000","0.000000",,,"2781.750000","3624.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.740833",,"24.740833",,"24.740833",,,,,,,"3841.958333",,,,,"4948.833333",,"4.466667",,"399.466667",,,,"2771.942857","0.933333","0.688889","1.844444","33.444444","0.000000","374.666667","0.000000","9.037037","364.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","820.125000",,,,,"0.000000","0.000000",,,"2336.500000","3055.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.040000",,"24.040000",,"24.040000",,,,,,,"3610.625000",,,,,"4808.833333",,"3.800000",,"336.311111",,,,"2002.485714","0.777778","0.244444","2.755556","27.955556","0.000000","312.222222","0.000000","8.222222","302.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.750000","632.250000",,,,,"0.000000","0.000000",,,"2360.500000","2502.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.786250",,"27.786250",,"27.786250",,,,,,,"3126.375000",,,,,"5558.375000",,"2.622222",,"636.155556",,,,"1834.285714","0.933333","0.177778","1.288889","48.844444","0.000000","529.444444","0.000000","8.518519","519.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1185.375000",,,,,"0.000000","0.000000",,,"3201.125000","3944.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.118750",,"23.118750",,"23.118750",,,,,,,"4047.208333",,,,,"4624.875000",,"4.155556",,"575.622222",,,,"348.000000","0.955556","0.577778","1.066667","51.466667","0.000000","548.111111","0.000000","9.444444","537.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","1085.750000",,,,,"0.000000","0.000000",,,"2990.000000","3775.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.070000",,"20.070000",,"20.070000",,,,,,,"4379.375000",,,,,"4015.125000",,"2.511111",,"394.911111",,,,"32.657143","0.933333","0.088889","2.288889","35.666667","0.000000","382.518519","0.000000","8.444444","372.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","764.875000",,,,,"0.000000","0.000000",,,"2210.875000","2806.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.266667",,"21.266667",,"21.266667",,,,,,,"4952.750000",,,,,"4254.208333",,"9.755556",,"455.800000",,,,"39.028571","1.955556","0.088889","1.022222","41.488889","0.000000","458.370370","0.000000","17.925926","436.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","842.500000",,,,,"0.000000","0.000000",,,"2332.500000","3041.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.521250",,"22.521250",,"22.521250",,,,,,,"3924.583333",,,,,"4505.041667",,"3.155556",,"508.266667",,,,"38.942857","0.688889","0.177778","1.666667","43.111111","0.000000","462.259259","0.000000","7.259259","453.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","947.750000",,,,,"0.000000","0.000000",,,"2600.125000","3304.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.841667",,"19.841667",,"19.841667",,,,,,,"4871.375000",,,,,"3969.250000",,"2.422222",,"438.422222",,,,"35.085714","0.755556","0.133333","1.133333","38.400000","0.000000","406.370370","0.000000","7.444444","397.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","882.250000",,,,,"0.000000","0.000000",,,"2997.250000","3664.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.432500",,"22.432500",,"22.432500",,,,,,,"3864.625000",,,,,"4487.416667",,"4.111111",,"463.488889",,,,"36.971429","0.955556","0.177778","1.266667","40.644444","0.000000","436.444444","0.000000","9.185185","425.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1066.125000",,,,,"0.000000","0.000000",,,"6484.625000","7204.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.970417",,"20.970417",,"20.970417",,,,,,,"4753.125000",,,,,"4194.791667",,"2.688889",,"459.222222",,,,"34.342857","0.933333","0.088889","1.622222","37.666667","0.000000","406.037037","0.000000","8.888889","395.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","928.625000",,,,,"0.000000","0.000000",,,"2739.125000","3488.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.691250",,"20.691250",,"20.691250",,,,,,,"5296.250000",,,,,"4139.166667",,"7.311111",,"322.377778",,,,"24.971429","1.711111","0.288889","3.511111","26.222222","0.000000","294.777778","0.000000","18.296296","275.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","606.000000",,,,,"0.000000","0.000000",,,"1736.375000","2189.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.491250",,"22.491250",,"22.491250",,,,,,,"3847.916667",,,,,"4499.541667",,"21.822222",,"531.533333",,,,"43.971429","2.000000","0.644444","1.977778","47.311111","0.000000","523.925926","0.000000","21.629630","498.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.625000","982.500000",,,,,"0.000000","0.000000",,,"2818.875000","3579.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.157083",,"29.157083",,"29.157083",,,,,,,"1794.333333",,,,,"5832.166667",,"3.000000",,"983.066667",,,,"43.771429","0.666667","0.311111","2.822222","48.266667","0.000000","506.740741","0.000000","7.296296","498.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1871.625000",,,,,"0.000000","0.000000",,,"4207.875000","5711.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.200417",,"26.200417",,"26.200417",,,,,,,"2723.375000",,,,,"5240.833333",,"3.844444",,"740.444444",,,,"32.028571","0.888889","0.288889","4.933333","35.022222","0.000000","375.370370","0.000000","8.888889","365.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1434.000000",,,,,"0.000000","0.000000",,,"3506.250000","4709.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.379167",,"27.379167",,"27.379167",,,,,,,"2607.666667",,,,,"5477.125000",,"8.666667",,"1239.644444",,,,"2014.057143","1.111111","0.822222","5.688889","58.355556","0.000000","625.740741","0.000000","11.629630","611.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"172.750000","42.857143",,,,,"0.000000","0.000000",,,"7086.875000","7615.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.535833",,"28.535833",,"28.535833",,,,,,,"1791.083333",,,,,"5708.250000",,"6.666667",,"738.977778",,,,"2322.228571","0.888889","1.022222","3.377778","70.377778","0.000000","760.740741","0.000000","11.629630","747.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1428.625000",,,,,"0.000000","0.000000",,,"3970.250000","5284.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.900000",,"22.900000",,"22.900000",,,,,,,"3955.416667",,,,,"4581.000000",,"2.977778",,"589.822222",,,,"2179.457143","0.711111","0.177778","1.466667","60.066667","0.000000","667.111111","0.000000","7.481481","658.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1113.875000",,,,,"0.000000","0.000000",,,"3451.500000","4167.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.657083",,"27.657083",,"27.657083",,,,,,,"3029.833333",,,,,"5532.208333",,"7.755556",,"894.844444",,,,"1867.257143","1.555556","0.088889","1.555556","73.177778","0.000000","799.037037","0.000000","13.629630","782.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","1681.125000",,,,,"0.000000","0.000000",,,"4914.125000","5990.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.860417",,"25.860417",,"25.860417",,,,,,,"2995.125000",,,,,"5172.875000",,"4.044444",,"757.755556",,,,"897.942857","0.933333","0.155556","1.888889","65.511111","0.000000","703.370370","0.000000","9.111111","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1465.625000",,,,,"0.000000","0.000000",,,"3812.375000","5269.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.463750",,"25.463750",,"25.463750",,,,,,,"3348.583333",,,,,"5093.958333",,"3.644444",,"852.466667",,,,"70.685714","0.844444","0.088889","1.022222","79.111111","0.000000","842.777778","0.000000","8.370370","833.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1581.500000",,,,,"0.000000","0.000000",,,"4110.375000","5472.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.671667",,"26.671667",,"26.671667",,,,,,,"3050.958333",,,,,"5335.500000",,"3.600000",,"994.933333",,,,"83.571429","0.933333","0.088889","1.666667","93.733333","0.000000","1001.851852","0.000000","9.000000","991.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1882.250000",,,,,"0.000000","0.000000",,,"4988.500000","6539.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.721250",,"24.721250",,"24.721250",,,,,,,"4267.291667",,,,,"4945.291667",,"2.444444",,"629.577778",,,,"52.057143","0.844444","0.177778","1.044444","58.377778","0.000000","634.296296","0.000000","7.925926","625.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1409.000000",,,,,"0.000000","0.000000",,,"7282.500000","8152.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.225000",,"25.225000",,"25.225000",,,,,,,"3514.500000",,,,,"5046.083333",,"2.422222",,"457.977778",,,,"37.514286","0.755556","0.088889","1.377778","41.244444","0.000000","439.259259","0.000000","7.370370","430.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","922.875000",,,,,"0.000000","0.000000",,,"3304.125000","4008.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.312500",,"27.312500",,"27.312500",,,,,,,"3346.750000",,,,,"5463.375000",,"2.600000",,"626.200000",,,,"53.828571","1.022222","0.088889","1.555556","59.200000","0.000000","619.814815","0.000000","9.074074","609.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","1202.875000",,,,,"0.000000","0.000000",,,"3281.125000","4236.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.802083",,"26.802083",,"26.802083",,,,,,,"3114.541667",,,,,"5361.166667",,"3.155556",,"613.600000",,,,"48.285714","0.755556","0.200000","1.288889","53.488889","0.000000","564.481481","0.000000","7.851852","555.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1157.000000",,,,,"0.000000","0.000000",,,"3078.625000","3986.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.740000",,"24.740000",,"24.740000",,,,,,,"3631.708333",,,,,"4948.916667",,"3.644444",,"642.755556",,,,"32.400000","0.977778","0.333333","5.088889","35.644444","0.000000","387.629630","0.000000","9.296296","377.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1142.250000",,,,,"0.000000","0.000000",,,"2838.250000","3666.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.794583",,"23.794583",,"23.794583",,,,,,,"4113.250000",,,,,"4759.916667",,"30.955556",,"587.666667",,,,"45.800000","2.511111","0.288889","2.044444","48.311111","0.000000","529.222222","0.000000","28.111111","497.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.500000","1143.500000",,,,,"0.000000","0.000000",,,"3186.125000","3999.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.688333",,"27.688333",,"27.688333",,,,,,,"2641.000000",,,,,"5538.375000",,"4.777778",,"559.355556",,,,"34.942857","0.777778","0.311111","1.155556","38.844444","0.000000","424.037037","0.000000","8.222222","414.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1069.750000",,,,,"0.000000","0.000000",,,"2778.125000","3568.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.544583",,"28.544583",,"28.544583",,,,,,,"2194.875000",,,,,"5710.000000",,"3.244444",,"639.377778",,,,"51.971429","0.844444","0.244444","1.888889","56.777778","0.000000","585.777778","0.000000","8.259259","576.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.125000","1192.125000",,,,,"0.000000","0.000000",,,"3251.625000","4120.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.278333",,"24.278333",,"24.278333",,,,,,,"3850.500000",,,,,"4856.416667",,"8.888889",,"445.688889",,,,"2322.685714","1.555556","0.177778","0.933333","37.911111","0.000000","413.814815","0.000000","13.777778","397.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","792.000000",,,,,"0.000000","0.000000",,,"2225.625000","2836.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.004583",,"27.004583",,"27.004583",,,,,,,"2876.166667",,,,,"5401.791667",,"3.311111",,"612.866667",,,,"2405.428571","0.844444","0.244444","1.000000","55.577778","0.000000","581.629630","0.000000","8.481481","571.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1144.250000",,,,,"0.000000","0.000000",,,"3469.250000","4078.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.611250",,"24.611250",,"24.611250",,,,,,,"3367.208333",,,,,"4923.291667",,"2.333333",,"531.511111",,,,"1936.628571","0.755556","0.088889","1.311111","37.666667","0.000000","403.703704","0.000000","7.222222","395.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.875000","1015.625000",,,,,"0.000000","0.000000",,,"3026.375000","3505.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.404583",,"28.404583",,"28.404583",,,,,,,"2404.625000",,,,,"5682.166667",,"47.577778",,"550.155556",,,,"1658.428571","3.066667","0.177778","1.711111","50.022222","0.000000","549.259259","0.000000","33.074074","514.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"106.625000","1055.875000",,,,,"0.000000","0.000000",,,"3570.000000","4385.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.889167",,"28.889167",,"28.889167",,,,,,,"2060.666667",,,,,"5778.708333",,"2.933333",,"602.466667",,,,"877.057143","0.800000","0.088889","1.333333","49.155556","0.000000","510.925926","0.000000","7.962963","501.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","1294.000000",,,,,"0.000000","0.000000",,,"7080.500000","7990.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.065000",,"26.065000",,"26.065000",,,,,,,"3938.458333",,,,,"5214.000000",,"2.533333",,"414.844444",,,,"30.657143","0.933333","0.266667","1.066667","32.911111","0.000000","341.962963","0.000000","8.407407","332.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","868.500000",,,,,"0.000000","0.000000",,,"3374.375000","4006.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.601667",,"25.601667",,"25.601667",,,,,,,"3118.291667",,,,,"5121.125000",,"2.622222",,"541.133333",,,,"41.685714","1.022222","0.266667","0.955556","45.088889","0.000000","465.333333","0.000000","9.370370","454.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","297.714286",,,,,"0.000000","0.000000",,,"5959.250000","7060.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.481667",,"26.481667",,"26.481667",,,,,,,"3014.833333",,,,,"5297.541667",,"3.888889",,"595.222222",,,,"46.685714","0.866667","0.733333","0.955556","50.866667","0.000000","525.370370","0.000000","8.703704","515.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","1193.625000",,,,,"0.000000","0.000000",,,"3891.250000","4759.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.595833",,"25.595833",,"25.595833",,,,,,,"3289.916667",,,,,"5119.958333",,"2.822222",,"476.755556",,,,"36.800000","0.844444","0.266667","1.066667","39.866667","0.000000","413.888889","0.000000","8.037037","404.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","946.000000",,,,,"0.000000","0.000000",,,"2643.625000","3394.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.859583",,"26.859583",,"26.859583",,,,,,,"3504.875000",,,,,"5373.041667",,"3.933333",,"537.200000",,,,"42.714286","0.955556","0.355556","0.933333","46.466667","0.000000","482.962963","0.000000","9.037037","472.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","1004.625000",,,,,"0.000000","0.000000",,,"2698.875000","3407.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.387083",,"27.387083",,"27.387083",,,,,,,"2532.375000",,,,,"5478.375000",,"3.888889",,"630.800000",,,,"47.828571","0.866667","0.333333","0.977778","51.822222","0.000000","530.000000","0.000000","8.814815","519.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1160.250000",,,,,"0.000000","0.000000",,,"3123.750000","4036.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.999583",,"25.999583",,"25.999583",,,,,,,"2951.708333",,,,,"5201.041667",,"8.133333",,"1532.377778",,,,"41.085714","1.288889","0.355556","2.222222","43.222222","0.000000","434.000000","0.000000","12.222222","419.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","2614.250000",,,,,"0.000000","0.000000",,,"5101.625000","7566.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.884167",,"22.884167",,"22.884167",,,,,,,"4429.625000",,,,,"4577.791667",,"23.888889",,"347.333333",,,,"24.228571","2.355556","0.533333","1.933333","24.044444","0.000000","276.518519","0.000000","25.444444","246.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.000000","717.125000",,,,,"0.000000","0.000000",,,"2099.125000","2604.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.453750",,"26.453750",,"26.453750",,,,,,,"2846.916667",,,,,"5291.500000",,"3.422222",,"292.266667",,,,"17.400000","0.844444","1.911111","8.400000","18.244444","0.000000","197.444444","0.000000","8.703704","187.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","541.000000",,,,,"0.000000","0.000000",,,"1433.625000","1861.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.348333",,"24.348333",,"24.348333",,,,,,,"3485.041667",,,,,"4871.000000",,"2.688889",,"390.422222",,,,"26.057143","0.933333","1.244444","5.644444","27.888889","0.000000","293.962963","0.000000","8.703704","283.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","738.625000",,,,,"0.000000","0.000000",,,"2005.875000","2539.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.935000",,"23.935000",,"23.935000",,,,,,,"3494.500000",,,,,"4787.875000",,"3.288889",,"323.422222",,,,"1929.114286","0.888889","0.200000","4.177778","26.866667","0.000000","283.000000","0.000000","9.037037","272.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","633.500000",,,,,"0.000000","0.000000",,,"1818.625000","2331.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.958750",,"24.958750",,"24.958750",,,,,,,"4265.208333",,,,,"4992.625000",,"3.866667",,"165.533333",,,,"2919.914286","1.022222","0.155556","4.533333","9.977778","0.000000","121.370370","0.000000","12.074074","107.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","311.250000",,,,,"0.000000","0.000000",,,"981.250000","1250.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.922500",,"21.922500",,"21.922500",,,,,,,"4518.375000",,,,,"4385.708333",,"2.844444",,"136.933333",,,,"2077.485714","0.844444","0.155556","8.111111","7.488889","0.000000","89.592593","0.000000","8.111111","80.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","474.750000",,,,,"0.000000","0.000000",,,"5130.125000","4933.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.143333",,"25.143333",,"25.143333",,,,,,,"3648.875000",,,,,"5029.708333",,"70.333333",,"270.688889",,,,"1713.971429","2.200000","0.822222","5.111111","13.800000","0.000000","173.111111","0.000000","22.444444","149.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"146.375000","595.625000",,,,,"0.000000","0.000000",,,"3168.250000","3487.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.817917",,"24.817917",,"24.817917",,,,,,,"3659.250000",,,,,"4964.333333",,"107.955556",,"244.666667",,,,"423.114286","8.777778","0.466667","4.666667","12.177778","0.000000","225.962963","0.000000","96.814815","127.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"214.250000","465.625000",,,,,"0.000000","0.000000",,,"1908.875000","2119.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.857917",,"23.857917",,"23.857917",,,,,,,"3939.541667",,,,,"4772.416667",,"3.400000",,"429.488889",,,,"34.542857","1.000000","0.088889","1.822222","37.022222","0.000000","383.148148","0.000000","9.111111","372.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","823.000000",,,,,"0.000000","0.000000",,,"2292.750000","2906.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.044583",,"22.044583",,"22.044583",,,,,,,"4753.916667",,,,,"4410.041667",,"3.400000",,"244.088889",,,,"15.114286","0.933333","0.177778","4.977778","15.711111","0.000000","172.629630","0.000000","8.851852","162.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.625000","421.375000",,,,,"0.000000","0.000000",,,"1198.500000","1610.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.162500",,"23.162500",,"23.162500",,,,,,,"4451.041667",,,,,"4633.375000",,"6.200000",,"594.333333",,,,"38.828571","1.311111","0.133333","1.955556","41.444444","0.000000","430.925926","0.000000","11.962963","416.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1327.375000",,,,,"0.000000","0.000000",,,"3326.125000","5989.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.587083",,"20.587083",,"20.587083",,,,,,,"5333.083333",,,,,"4118.250000",,"4.444444",,"1394.266667",,,,"19.342857","0.955556","0.644444","16.111111","19.466667","0.000000","192.074074","0.000000","9.000000","181.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"750.000000","2653.500000",,,,,"0.000000","0.000000",,,"14715.375000","7716.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.306250",,"20.306250",,"20.306250",,,,,,,"4969.416667",,,,,"4062.375000",,"4.933333",,"2136.555556",,,,"20.771429","0.933333","5.466667","24.244444","20.488889","0.000000","186.666667","0.000000","8.925926","176.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"743.375000","4007.000000",,,,,"0.000000","0.000000",,,"16784.875000","10950.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.348333",,"24.348333",,"24.348333",,,,,,,"4729.041667",,,,,"4870.791667",,"3.466667",,"2132.400000",,,,"33.742857","1.022222","1.044444","7.466667","34.644444","0.000000","326.296296","0.000000","9.925926","314.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"716.250000","4055.625000",,,,,"0.000000","0.000000",,,"16677.875000","11120.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.004583",,"21.004583",,"21.004583",,,,,,,"4808.916667",,,,,"4201.958333",,"2.511111",,"2160.288889",,,,"15.000000","0.844444","0.466667","9.866667","14.111111","0.000000","120.814815","0.000000","8.296296","111.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.750000","16.142857",,,,,"0.000000","0.000000",,,"16379.375000","10856.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.390833",,"23.390833",,"23.390833",,,,,,,"5002.750000",,,,,"4679.000000",,"3.311111",,"2092.666667",,,,"28.285714","0.888889","2.600000","5.688889","29.844444","0.000000","304.000000","0.000000","9.000000","293.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1729.125000","4039.000000",,,,,"0.000000","0.000000",,,"30124.500000","11668.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.902500",,"27.902500",,"27.902500",,,,,,,"3641.875000",,,,,"5581.333333",,"21.422222",,"1938.888889",,,,"30.142857","1.800000","0.555556","7.466667","30.733333","0.000000","326.370370","0.000000","20.555556","302.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1900.750000","3660.250000",,,,,"0.000000","0.000000",,,"33411.250000","13702.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.585833",,"26.585833",,"26.585833",,,,,,,"4063.625000",,,,,"5318.250000",,"2.577778",,"1843.733333",,,,"27.257143","0.844444","0.955556","17.355556","28.488889","0.000000","282.444444","0.000000","8.444444","272.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"562.500000","3971.875000",,,,,"0.000000","0.000000",,,"16900.375000","13646.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.931250",,"26.931250",,"26.931250",,,,,,,"4304.833333",,,,,"5387.041667",,"3.755556",,"571.666667",,,,"2511.285714","1.022222","0.422222","3.955556","29.977778","0.000000","317.370370","0.000000","9.925926","305.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.125000","1064.000000",,,,,"0.000000","0.000000",,,"3233.750000","3417.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.023750",,"29.023750",,"29.023750",,,,,,,"2811.541667",,,,,"5805.791667",,"30.777778",,"414.911111",,,,"2518.314286","3.488889","0.422222","1.800000","29.777778","0.000000","352.777778","0.000000","37.851852","313.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","824.625000",,,,,"0.000000","0.000000",,,"2297.750000","2933.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.469583",,"28.469583",,"28.469583",,,,,,,"3577.375000",,,,,"5694.666667",,"9.111111",,"314.155556",,,,"2078.828571","1.488889","1.000000","2.222222","12.800000","0.000000","150.851852","0.000000","13.962963","134.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","573.500000",,,,,"0.000000","0.000000",,,"2394.250000","2328.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.269583",,"21.269583",,"21.269583",,,,,,,"4297.791667",,,,,"4255.000000",,"11.844444",,"126.333333",,,,"1667.885714","1.133333","0.533333","0.977778","7.533333","0.000000","94.703704","0.000000","12.111111","81.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","273.500000",,,,,"0.000000","0.000000",,,"945.750000","1102.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.310417",,"26.310417",,"26.310417",,,,,,,"3404.041667",,,,,"5262.833333",,"3.200000",,"407.244444",,,,"324.714286","0.888889","0.288889","2.755556","38.200000","0.000000","421.296296","0.000000","8.555556","411.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","708.625000",,,,,"0.000000","0.000000",,,"2145.875000","2728.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.875000",,"32.875000",,"32.875000",,,,,,,"1576.583333",,,,,"6576.083333",,"2.577778",,"590.266667",,,,"47.742857","0.888889","0.177778","2.044444","52.688889","0.000000","559.925926","0.000000","8.814815","549.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","1123.875000",,,,,"0.000000","0.000000",,,"3096.000000","4114.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.302083",,"30.302083",,"30.302083",,,,,,,"1547.208333",,,,,"6061.291667",,"5.022222",,"596.666667",,,,"45.800000","0.955556","0.622222","1.288889","50.733333","0.000000","548.000000","0.000000","9.925926","536.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1162.500000",,,,,"0.000000","0.000000",,,"3087.875000","4237.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.652500",,"33.652500",,"33.652500",,,,,,,"1314.916667",,,,,"6731.416667",,"2.666667",,"522.355556",,,,"36.200000","0.933333","0.088889","1.333333","40.044444","0.000000","439.000000","0.000000","8.592593","428.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1186.375000",,,,,"0.000000","0.000000",,,"5157.250000","6392.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.986250",,"27.986250",,"27.986250",,,,,,,"2059.291667",,,,,"5597.875000",,"2.755556",,"643.422222",,,,"48.800000","0.844444","1.311111","1.422222","54.911111","0.000000","602.185185","0.000000","7.962963","593.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1499.375000",,,,,"0.000000","0.000000",,,"6739.750000","8336.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.255000",,"23.255000",,"23.255000",,,,,,,"3861.416667",,,,,"4651.916667",,"3.466667",,"542.466667",,,,"42.742857","0.777778","0.844444","1.333333","48.155556","0.000000","535.296296","0.000000","8.111111","525.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1279.500000",,,,,"0.000000","0.000000",,,"6223.875000","7580.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.756250",,"27.756250",,"27.756250",,,,,,,"2520.875000",,,,,"5552.208333",,"2.822222",,"696.777778",,,,"52.971429","0.933333","0.844444","1.644444","58.755556","0.000000","623.407407","0.000000","8.777778","613.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1624.500000",,,,,"0.000000","0.000000",,,"6874.375000","8664.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.053333",,"24.053333",,"24.053333",,,,,,,"3446.083333",,,,,"4811.708333",,"2.555556",,"441.844444",,,,"29.828571","0.844444","0.133333","3.488889","32.911111","0.000000","362.814815","0.000000","7.962963","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1126.375000",,,,,"0.000000","0.000000",,,"5723.750000","7076.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.840000",,"24.840000",,"24.840000",,,,,,,"3417.333333",,,,,"4968.916667",,"2.933333",,"687.888889",,,,"56.800000","0.933333","0.511111","1.800000","63.022222","0.000000","671.925926","0.000000","9.185185","661.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1551.750000",,,,,"0.000000","0.000000",,,"6780.375000","8581.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.343333",,"31.343333",,"31.343333",,,,,,,"1672.708333",,,,,"6269.416667",,"28.088889",,"759.377778",,,,"34.171429","2.711111","0.422222","5.533333","35.333333","0.000000","412.296296","0.000000","28.037037","378.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.625000","313.857143",,,,,"0.000000","0.000000",,,"6845.250000","8412.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.628750",,"30.628750",,"30.628750",,,,,,,"909.833333",,,,,"6126.750000",,"10.177778",,"846.466667",,,,"36.685714","1.400000","0.066667","2.311111","39.644444","0.000000","425.518519","0.000000","13.814815","410.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.125000","1804.500000",,,,,"0.000000","0.000000",,,"6479.250000","8253.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.300417",,"30.300417",,"30.300417",,,,,,,"1946.500000",,,,,"6061.041667",,"3.022222",,"704.822222",,,,"2137.514286","0.844444","0.444444","2.155556","53.133333","0.000000","569.333333","0.000000","8.407407","559.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1565.375000",,,,,"0.000000","0.000000",,,"6322.000000","8005.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.853750",,"31.853750",,"31.853750",,,,,,,"1271.791667",,,,,"6371.666667",,"5.000000",,"442.288889",,,,"1980.057143","1.244444","1.066667","3.733333","30.200000","0.000000","343.666667","0.000000","15.222222","326.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.625000","1094.500000",,,,,"0.000000","0.000000",,,"5333.000000","6509.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.118750",,"31.118750",,"31.118750",,,,,,,"2255.250000",,,,,"6225.000000",,"2.666667",,"602.222222",,,,"2159.114286","0.844444","3.955556","2.755556","35.622222","0.000000","389.814815","0.000000","8.074074","380.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.625000","1419.250000",,,,,"0.000000","0.000000",,,"6795.500000","7806.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.689583",,"30.689583",,"30.689583",,,,,,,"1582.458333",,,,,"6138.916667",,"2.577778",,"595.733333",,,,"1548.228571","0.800000","0.200000","4.200000","46.600000","0.000000","501.592593","0.000000","8.296296","492.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1360.250000",,,,,"0.000000","0.000000",,,"6043.125000","7440.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.430417",,"28.430417",,"28.430417",,,,,,,"1871.833333",,,,,"5686.916667",,"2.755556",,"483.822222",,,,"1253.857143","0.933333","0.400000","4.688889","34.177778","0.000000","366.037037","0.000000","8.629630","355.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","1176.875000",,,,,"0.000000","0.000000",,,"5504.375000","6791.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.781250",,"24.781250",,"24.781250",,,,,,,"3682.041667",,,,,"4957.416667",,"2.955556",,"472.377778",,,,"122.171429","0.844444","0.177778","3.600000","35.155556","0.000000","382.740741","0.000000","8.222222","373.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1214.000000",,,,,"0.000000","0.000000",,,"6057.250000","7318.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.189167",,"24.189167",,"24.189167",,,,,,,"3443.708333",,,,,"4838.500000",,"3.222222",,"368.133333",,,,"21.971429","0.933333","0.288889","4.311111","23.977778","0.000000","270.074074","0.000000","9.111111","259.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","958.125000",,,,,"0.000000","0.000000",,,"5098.875000","6192.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.917500",,"24.917500",,"24.917500",,,,,,,"3779.083333",,,,,"4984.458333",,"2.977778",,"399.733333",,,,"26.742857","0.933333","0.288889","3.155556","29.355556","0.000000","327.148148","0.000000","8.814815","316.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","973.375000",,,,,"0.000000","0.000000",,,"5188.500000","6061.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.570000",,"27.570000",,"27.570000",,,,,,,"3142.833333",,,,,"5515.083333",,"2.666667",,"485.644444",,,,"33.485714","0.844444","0.133333","3.688889","37.155556","0.000000","407.518519","0.000000","8.407407","397.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","1075.750000",,,,,"0.000000","0.000000",,,"5554.375000","6317.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.775000",,"30.775000",,"30.775000",,,,,,,"1832.166667",,,,,"6155.708333",,"3.022222",,"629.888889",,,,"46.571429","0.888889","0.400000","1.800000","51.466667","0.000000","546.111111","0.000000","8.592593","536.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1205.375000",,,,,"0.000000","0.000000",,,"3166.625000","4096.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.232500",,"27.232500",,"27.232500",,,,,,,"2628.166667",,,,,"5447.333333",,"3.088889",,"642.577778",,,,"46.600000","1.111111","0.355556","3.866667","51.600000","0.000000","561.592593","0.000000","10.518519","549.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1174.125000",,,,,"0.000000","0.000000",,,"3067.000000","3923.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.102500",,"31.102500",,"31.102500",,,,,,,"1794.916667",,,,,"6221.250000",,"8.355556",,"725.177778",,,,"53.571429","1.600000","0.244444","1.577778","58.377778","0.000000","629.111111","0.000000","14.370370","611.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1361.250000",,,,,"0.000000","0.000000",,,"3959.500000","5059.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.027083",,"30.027083",,"30.027083",,,,,,,"2266.791667",,,,,"6006.333333",,"3.377778",,"655.355556",,,,"47.257143","0.933333","0.133333","1.755556","52.444444","0.000000","566.518519","0.000000","9.407407","555.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1480.625000",,,,,"0.000000","0.000000",,,"7369.500000","8343.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.421250",,"29.421250",,"29.421250",,,,,,,"2396.833333",,,,,"5885.333333",,"21.733333",,"934.222222",,,,"50.685714","2.088889","0.088889","2.666667","54.622222","0.000000","600.888889","0.000000","23.037037","573.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1793.750000",,,,,"0.000000","0.000000",,,"4624.500000","6034.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.149583",,"31.149583",,"31.149583",,,,,,,"1854.791667",,,,,"6231.000000",,"2.888889",,"800.600000",,,,"58.514286","0.933333","0.133333","1.155556","65.111111","0.000000","691.407407","0.000000","8.629630","681.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1500.375000",,,,,"0.000000","0.000000",,,"3942.875000","5165.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.168333",,"34.168333",,"34.168333",,,,,,,"1540.291667",,,,,"6834.458333",,"2.577778",,"657.644444",,,,"1816.714286","0.844444","0.133333","1.311111","52.755556","0.000000","575.777778","0.000000","8.370370","566.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1268.750000",,,,,"0.000000","0.000000",,,"3332.500000","4276.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.174167",,"33.174167",,"33.174167",,,,,,,"1695.416667",,,,,"6635.791667",,"3.088889",,"667.644444",,,,"2403.057143","1.022222","0.177778","1.022222","53.400000","0.000000","588.148148","0.000000","9.703704","576.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1251.250000",,,,,"0.000000","0.000000",,,"3253.250000","4200.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.559583",,"31.559583",,"31.559583",,,,,,,"953.291667",,,,,"6312.833333",,"2.955556",,"845.622222",,,,"1480.371429","0.755556","0.244444","2.333333","61.888889","0.000000","657.518519","0.000000","7.666667","648.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.250000","1544.125000",,,,,"0.000000","0.000000",,,"4676.250000","5461.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.934167",,"32.934167",,"32.934167",,,,,,,"1100.458333",,,,,"6587.875000",,"8.666667",,"745.733333",,,,"1498.400000","1.933333","1.088889","1.044444","66.422222","0.000000","729.777778","0.000000","19.740741","708.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1483.375000",,,,,"0.000000","0.000000",,,"4103.625000","5163.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.075000",,"30.075000",,"30.075000",,,,,,,"1260.750000",,,,,"6015.833333",,"3.155556",,"802.888889",,,,"1296.457143","0.933333","0.088889","2.400000","69.555556","0.000000","745.592593","0.000000","9.148148","734.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","10.428571",,,,,"0.000000","0.000000",,,"3867.250000","5102.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.748333",,"31.748333",,"31.748333",,,,,,,"1287.333333",,,,,"6350.500000",,"93.888889",,"968.666667",,,,"837.028571","3.911111","0.444444","1.533333","77.088889","0.000000","855.555556","0.000000","41.740741","812.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","1685.125000",,,,,"0.000000","0.000000",,,"4430.000000","5954.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.010000",,"30.010000",,"30.010000",,,,,,,"2276.333333",,,,,"6002.916667",,"839.888889",,"1663.400000",,,,"87.314286","22.066667","0.311111","3.177778","77.355556","0.000000","1063.222222","0.000000","244.148148","817.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1770.250000","3272.250000",,,,,"0.000000","0.000000",,,"11430.625000","12084.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.455000",,"28.455000",,"28.455000",,,,,,,"1816.750000",,,,,"5692.083333",,"78.844444",,"831.177778",,,,"76.171429","18.288889","0.266667","1.155556","68.244444","0.000000","927.518519","0.000000","200.555556","724.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"170.750000","1661.750000",,,,,"0.000000","0.000000",,,"5195.125000","6927.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.411667",,"28.411667",,"28.411667",,,,,,,"2500.041667",,,,,"5683.083333",,"50.577778",,"801.755556",,,,"68.457143","12.266667","0.511111","1.266667","66.155556","0.000000","848.370370","0.000000","134.370370","712.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.500000","1490.875000",,,,,"0.000000","0.000000",,,"6999.375000","5901.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.591667",,"29.591667",,"29.591667",,,,,,,"1833.708333",,,,,"5919.166667",,"2.466667",,"2215.866667",,,,"73.771429","0.977778","0.577778","5.333333","81.600000","0.000000","849.333333","0.000000","9.185185","838.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2589.875000","4286.500000",,,,,"0.000000","0.000000",,,"44002.375000","15611.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.555000",,"28.555000",,"28.555000",,,,,,,"2332.750000",,,,,"5711.708333",,"2.777778",,"2244.644444",,,,"62.971429","0.933333","0.155556","6.666667","69.755556","0.000000","732.185185","0.000000","8.703704","722.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2059.250000","4414.500000",,,,,"0.000000","0.000000",,,"39366.625000","17783.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.111667",,"30.111667",,"30.111667",,,,,,,"1826.958333",,,,,"6023.500000",,"3.377778",,"3284.600000",,,,"80.600000","0.977778","0.666667","3.733333","89.466667","0.000000","937.814815","0.000000","9.444444","927.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1286.625000","5965.500000",,,,,"0.000000","0.000000",,,"28162.750000","17576.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.715833",,"29.715833",,"29.715833",,,,,,,"2492.666667",,,,,"5944.250000",,"48.688889",,"1402.777778",,,,"82.942857","10.511111","0.711111","2.355556","83.888889","0.000000","1009.074074","0.000000","115.814815","891.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1178.500000","2944.375000",,,,,"0.000000","0.000000",,,"21345.875000","10680.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.078333",,"34.078333",,"34.078333",,,,,,,"1127.125000",,,,,"6816.583333",,"29.533333",,"2529.266667",,,,"71.628571","3.244444","0.911111","5.200000","76.266667","0.000000","815.148148","0.000000","36.000000","775.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1159.750000","21.714286",,,,,"0.000000","0.000000",,,"23473.500000","14184.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.000000",,"33.000000",,"33.000000",,,,,,,"1680.916667",,,,,"6601.000000",,"3.333333",,"1331.155556",,,,"68.171429","0.888889","0.600000","2.044444","75.911111","0.000000","804.592593","0.000000","9.148148","794.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","2738.375000",,,,,"0.000000","0.000000",,,"6028.250000","8233.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.597083",,"30.597083",,"30.597083",,,,,,,"1134.916667",,,,,"6120.583333",,"4.311111",,"686.288889",,,,"1505.257143","1.111111","1.266667","2.311111","54.644444","0.000000","596.703704","0.000000","12.481481","582.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1285.000000",,,,,"0.000000","0.000000",,,"3351.500000","4390.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.371667",,"35.371667",,"35.371667",,,,,,,"385.416667",,,,,"7075.250000",,"6.355556",,"774.644444",,,,"1871.942857","0.977778","0.133333","0.844444","62.755556","0.000000","677.037037","0.000000","9.407407","666.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1474.375000",,,,,"0.000000","0.000000",,,"3813.875000","5180.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.002500",,"33.002500",,"33.002500",,,,,,,"318.750000",,,,,"6601.625000",,"10.088889",,"855.600000",,,,"1426.600000","2.355556","0.244444","1.222222","66.644444","0.000000","727.185185","0.000000","20.925926","701.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.250000","1594.250000",,,,,"0.000000","0.000000",,,"4575.000000","5659.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.398333",,"33.398333",,"33.398333",,,,,,,"471.291667",,,,,"6680.541667",,"2.622222",,"706.777778",,,,"1365.942857","0.888889","0.133333","1.000000","49.955556","0.000000","553.740741","0.000000","8.296296","543.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.000000","1350.375000",,,,,"0.000000","0.000000",,,"3569.875000","4521.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"38.337917",,"38.337917",,"38.337917",,,,,,,"748.541667",,,,,"7668.541667",,"3.111111",,"780.555556",,,,"1466.657143","0.933333","0.088889","1.400000","66.644444","0.000000","718.407407","0.000000","8.962963","708.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1533.625000",,,,,"0.000000","0.000000",,,"4392.250000","5788.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.012917",,"32.012917",,"32.012917",,,,,,,"940.041667",,,,,"6403.625000",,"3.133333",,"780.711111",,,,"1211.857143","0.933333","0.177778","1.155556","64.688889","0.000000","695.962963","0.000000","9.148148","685.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1677.625000",,,,,"0.000000","0.000000",,,"6891.375000","8580.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.025833",,"29.025833",,"29.025833",,,,,,,"2310.000000",,,,,"5806.208333",,"2.844444",,"878.422222",,,,"532.285714","0.844444","0.133333","1.466667","71.866667","0.000000","778.777778","0.000000","8.111111","769.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"78.375000","1773.375000",,,,,"0.000000","0.000000",,,"6653.250000","7744.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.813750",,"30.813750",,"30.813750",,,,,,,"1670.041667",,,,,"6163.750000",,"2.711111",,"955.288889",,,,"76.857143","0.844444","0.088889","1.111111","86.000000","0.000000","910.777778","0.000000","8.000000","901.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.375000","1742.000000",,,,,"0.000000","0.000000",,,"4622.250000","6201.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.061667",,"30.061667",,"30.061667",,,,,,,"1918.333333",,,,,"6013.333333",,"3.133333",,"871.444444",,,,"69.228571","0.888889","1.000000","0.955556","77.555556","0.000000","829.555556","0.000000","8.666667","819.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1799.625000",,,,,"0.000000","0.000000",,,"6847.875000","8292.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.050833",,"27.050833",,"27.050833",,,,,,,"2461.041667",,,,,"5411.291667",,"6.288889",,"778.355556",,,,"63.342857","1.244444","0.244444","1.133333","70.511111","0.000000","761.074074","0.000000","12.222222","747.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","1607.250000",,,,,"0.000000","0.000000",,,"6460.500000","7611.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.396667",,"30.396667",,"30.396667",,,,,,,"1823.208333",,,,,"6080.291667",,"4.755556",,"911.222222",,,,"72.657143","1.200000","0.333333","3.555556","80.266667","0.000000","845.296296","0.000000","11.185185","832.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1716.750000",,,,,"0.000000","0.000000",,,"4594.625000","5944.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.520000",,"28.520000",,"28.520000",,,,,,,"2259.125000",,,,,"5705.000000",,"147.288889",,"816.822222",,,,"67.228571","3.088889","0.333333","1.111111","73.200000","0.000000","809.851852","0.000000","32.666667","775.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.000000","1508.750000",,,,,"0.000000","0.000000",,,"4714.875000","5707.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.341250",,"27.341250",,"27.341250",,,,,,,"2862.458333",,,,,"5469.250000",,"3.266667",,"1302.022222",,,,"67.571429","0.933333","0.222222","2.200000","75.866667","0.000000","817.407407","0.000000","9.037037","807.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"262.875000","11.571429",,,,,"0.000000","0.000000",,,"6388.375000","7902.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.151667",,"35.151667",,"35.151667",,,,,,,"1238.083333",,,,,"7031.416667",,"22.022222",,"986.511111",,,,"74.800000","2.044444","0.222222","1.288889","81.355556","0.000000","862.925926","0.000000","22.518519","836.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.000000","1850.500000",,,,,"0.000000","0.000000",,,"4897.375000","6423.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.833750",,"29.833750",,"29.833750",,,,,,,"1607.583333",,,,,"5967.625000",,"8.444444",,"850.800000",,,,"63.285714","1.555556","0.311111","1.266667","69.377778","0.000000","739.074074","0.000000","13.888889","722.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","1596.250000",,,,,"0.000000","0.000000",,,"4254.500000","5428.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.653750",,"29.653750",,"29.653750",,,,,,,"2351.625000",,,,,"5931.791667",,"3.688889",,"772.488889",,,,"2176.542857","0.755556","0.133333","1.066667","67.577778","0.000000","734.370370","0.000000","7.925926","725.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1420.250000",,,,,"0.000000","0.000000",,,"3947.000000","4949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.793750",,"31.793750",,"31.793750",,,,,,,"1689.333333",,,,,"6359.625000",,"3.022222",,"956.711111",,,,"2378.857143","0.844444","0.155556","1.155556","72.822222","0.000000","782.703704","0.000000","8.222222","773.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1824.250000",,,,,"0.000000","0.000000",,,"4660.000000","6084.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.185833",,"35.185833",,"35.185833",,,,,,,"1006.750000",,,,,"7038.291667",,"2.977778",,"1001.800000",,,,"1682.428571","0.933333","0.377778","1.400000","79.644444","0.000000","846.037037","0.000000","8.740741","835.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1895.875000",,,,,"0.000000","0.000000",,,"5729.500000","6730.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.486250",,"29.486250",,"29.486250",,,,,,,"2281.541667",,,,,"5898.166667",,"2.600000",,"817.244444",,,,"1808.971429","0.800000","0.177778","1.155556","77.244444","0.000000","839.000000","0.000000","8.037037","829.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1508.125000",,,,,"0.000000","0.000000",,,"4106.625000","5500.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.737917",,"32.737917",,"32.737917",,,,,,,"1318.458333",,,,,"6548.500000",,"3.666667",,"814.288889",,,,"1264.942857","0.955556","0.222222","1.733333","66.133333","0.000000","711.111111","0.000000","9.629630","700.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","1588.375000",,,,,"0.000000","0.000000",,,"4145.250000","5561.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.037500",,"30.037500",,"30.037500",,,,,,,"1938.291667",,,,,"6008.625000",,"2.911111",,"826.888889",,,,"66.771429","0.844444","0.133333","1.155556","74.644444","0.000000","795.629630","0.000000","8.185185","786.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1540.125000",,,,,"0.000000","0.000000",,,"4343.500000","5458.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.982500",,"25.982500",,"25.982500",,,,,,,"3138.875000",,,,,"5197.500000",,"3.688889",,"834.333333",,,,"69.742857","0.777778","0.200000","0.688889","78.288889","0.000000","839.629630","0.000000","8.037037","830.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1603.750000",,,,,"0.000000","0.000000",,,"4754.000000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.836250",,"31.836250",,"31.836250",,,,,,,"1522.583333",,,,,"6368.333333",,"2.888889",,"827.800000",,,,"56.885714","0.844444","0.288889","2.266667","63.533333","0.000000","679.962963","0.000000","8.111111","670.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1715.625000",,,,,"0.000000","0.000000",,,"7846.625000","9012.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.947917",,"28.947917",,"28.947917",,,,,,,"2074.791667",,,,,"5790.333333",,"3.400000",,"750.400000",,,,"57.542857","1.044444","0.600000","0.933333","64.377778","0.000000","703.000000","0.000000","10.407407","691.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.500000","1501.250000",,,,,"0.000000","0.000000",,,"4575.250000","5826.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.134583",,"25.134583",,"25.134583",,,,,,,"3087.250000",,,,,"5028.083333",,"2.911111",,"728.800000",,,,"60.885714","0.844444","0.088889","1.111111","67.555556","0.000000","710.000000","0.000000","8.000000","700.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1347.375000",,,,,"0.000000","0.000000",,,"3774.875000","4760.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.408750",,"32.408750",,"32.408750",,,,,,,"1631.333333",,,,,"6482.791667",,"3.377778",,"763.666667",,,,"55.342857","0.844444","0.177778","1.133333","61.844444","0.000000","667.703704","0.000000","8.666667","657.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1453.625000",,,,,"0.000000","0.000000",,,"4052.625000","5108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.552917",,"32.552917",,"32.552917",,,,,,,"1410.416667",,,,,"6511.541667",,"8.555556",,"873.955556",,,,"67.257143","1.466667","0.266667","1.266667","74.177778","0.000000","792.407407","0.000000","13.407407","776.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.500000","1585.000000",,,,,"0.000000","0.000000",,,"4488.750000","5543.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.477917",,"27.477917",,"27.477917",,,,,,,"2718.041667",,,,,"5496.375000",,"3.511111",,"728.333333",,,,"56.600000","1.022222","0.155556","0.977778","63.222222","0.000000","686.703704","0.000000","9.888889","675.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1410.125000",,,,,"0.000000","0.000000",,,"3838.000000","4916.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.341250",,"31.341250",,"31.341250",,,,,,,"1204.708333",,,,,"6269.291667",,"22.244444",,"1012.444444",,,,"57.114286","1.911111","0.844444","1.577778","61.866667","0.000000","669.222222","0.000000","21.592593","643.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.250000","27.571429",,,,,"0.000000","0.000000",,,"4484.750000","6083.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.920417",,"30.920417",,"30.920417",,,,,,,"775.583333",,,,,"6185.208333",,"3.355556",,"926.422222",,,,"44.971429","0.955556","0.844444","4.911111","49.222222","0.000000","512.333333","0.000000","8.962963","502.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1813.250000",,,,,"0.000000","0.000000",,,"4092.875000","5454.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.404167",,"32.404167",,"32.404167",,,,,,,"1014.166667",,,,,"6481.875000",,"12.311111",,"804.377778",,,,"1658.571429","1.444444","0.622222","3.111111","63.444444","0.000000","684.296296","0.000000","17.222222","665.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","1605.875000",,,,,"0.000000","0.000000",,,"4137.875000","5451.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.302083",,"32.302083",,"32.302083",,,,,,,"575.833333",,,,,"6461.333333",,"3.133333",,"651.155556",,,,"1839.942857","0.933333","0.777778","1.155556","50.666667","0.000000","549.444444","0.000000","8.777778","539.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","1151.250000",,,,,"0.000000","0.000000",,,"3005.125000","3937.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.322083",,"35.322083",,"35.322083",,,,,,,"549.625000",,,,,"7065.625000",,"2.955556",,"853.377778",,,,"1553.742857","0.844444","1.200000","1.288889","63.688889","0.000000","673.777778","0.000000","8.296296","664.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1679.250000",,,,,"0.000000","0.000000",,,"4901.375000","5783.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.864167",,"28.864167",,"28.864167",,,,,,,"2372.125000",,,,,"5773.750000",,"3.422222",,"525.822222",,,,"1845.142857","0.800000","0.733333","1.533333","40.155556","0.000000","408.296296","0.000000","8.148148","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","947.875000",,,,,"0.000000","0.000000",,,"2498.500000","3216.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.451250",,"26.451250",,"26.451250",,,,,,,"2704.958333",,,,,"5291.250000",,"4.933333",,"1069.311111",,,,"1604.457143","1.311111","0.311111","1.577778","53.644444","0.000000","561.222222","0.000000","13.962963","546.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","2144.500000",,,,,"0.000000","0.000000",,,"6584.500000","8275.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.121250",,"25.121250",,"25.121250",,,,,,,"2822.208333",,,,,"5025.291667",,"18.400000",,"552.822222",,,,"777.714286","1.888889","0.288889","1.666667","47.177778","0.000000","490.407407","0.000000","19.370370","469.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1283.875000",,,,,"0.000000","0.000000",,,"6367.125000","8245.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.812083",,"22.812083",,"22.812083",,,,,,,"4040.666667",,,,,"4563.166667",,"3.444444",,"448.888889",,,,"36.600000","1.022222","0.133333","1.200000","39.155556","0.000000","402.518519","0.000000","9.740741","391.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","843.125000",,,,,"0.000000","0.000000",,,"2391.625000","3147.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.550833",,"24.550833",,"24.550833",,,,,,,"4018.583333",,,,,"4911.041667",,"9.333333",,"417.822222",,,,"40.514286","2.000000","0.133333","0.933333","42.044444","0.000000","440.185185","0.000000","18.074074","418.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","773.000000",,,,,"0.000000","0.000000",,,"2304.500000","2846.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.255417",,"22.255417",,"22.255417",,,,,,,"4698.041667",,,,,"4451.916667",,"3.311111",,"316.044444",,,,"28.600000","0.844444","0.177778","1.044444","30.866667","0.000000","324.074074","0.000000","8.037037","314.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","576.750000",,,,,"0.000000","0.000000",,,"1798.375000","2150.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.390833",,"22.390833",,"22.390833",,,,,,,"4463.041667",,,,,"4478.916667",,"4.111111",,"328.444444",,,,"32.142857","0.933333","0.088889","0.888889","34.555556","0.000000","357.333333","0.000000","8.592593","347.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","618.500000",,,,,"0.000000","0.000000",,,"1935.500000","2339.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.926250",,"22.926250",,"22.926250",,,,,,,"4142.458333",,,,,"4586.541667",,"4.400000",,"429.888889",,,,"40.885714","1.000000","0.222222","0.822222","43.755556","0.000000","444.740741","0.000000","9.740741","433.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","792.125000",,,,,"0.000000","0.000000",,,"2370.250000","2891.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.670000",,"25.670000",,"25.670000",,,,,,,"4274.166667",,,,,"5134.666667",,"3.066667",,"454.711111",,,,"44.428571","0.844444","0.333333","0.800000","48.022222","0.000000","488.407407","0.000000","8.259259","478.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","787.625000",,,,,"0.000000","0.000000",,,"2393.250000","3008.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.218750",,"23.218750",,"23.218750",,,,,,,"4665.208333",,,,,"4644.583333",,"3.377778",,"330.466667",,,,"27.400000","0.933333","0.133333","1.177778","29.177778","0.000000","303.481481","0.000000","8.814815","293.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","537.625000",,,,,"0.000000","0.000000",,,"1730.375000","2085.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.106667",,"23.106667",,"23.106667",,,,,,,"4031.125000",,,,,"4622.208333",,"22.311111",,"711.066667",,,,"38.771429","2.022222","0.088889","1.622222","40.177778","0.000000","425.444444","0.000000","22.555556","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.750000","1465.750000",,,,,"0.000000","0.000000",,,"3581.875000","4638.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.040417",,"28.040417",,"28.040417",,,,,,,"3055.708333",,,,,"5609.416667",,"3.377778",,"522.133333",,,,"45.285714","1.111111","0.177778","1.022222","48.711111","0.000000","495.962963","0.000000","10.148148","484.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","967.500000",,,,,"0.000000","0.000000",,,"2865.750000","3621.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.262083",,"21.262083",,"21.262083",,,,,,,"4511.083333",,,,,"4253.416667",,"3.911111",,"299.377778",,,,"1994.485714","0.866667","0.244444","0.933333","23.000000","0.000000","242.666667","0.000000","8.555556","232.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","597.125000",,,,,"0.000000","0.000000",,,"2550.875000","3009.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.385000",,"24.385000",,"24.385000",,,,,,,"4324.958333",,,,,"4878.041667",,"3.088889",,"252.022222",,,,"2961.371429","0.844444","0.200000","1.088889","24.088889","0.000000","252.592593","0.000000","8.296296","242.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","668.000000",,,,,"0.000000","0.000000",,,"5413.000000","5703.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.927917",,"28.927917",,"28.927917",,,,,,,"3277.666667",,,,,"5786.458333",,"3.622222",,"601.200000",,,,"2216.371429","0.866667","0.177778","1.711111","47.177778","0.000000","494.629630","0.000000","8.851852","484.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","1135.250000",,,,,"0.000000","0.000000",,,"3768.250000","4117.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.540833",,"26.540833",,"26.540833",,,,,,,"3469.208333",,,,,"5309.125000",,"18.688889",,"499.777778",,,,"1735.285714","1.977778","0.222222","0.777778","49.866667","0.000000","532.370370","0.000000","19.555556","510.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","947.500000",,,,,"0.000000","0.000000",,,"2813.375000","3731.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.020417",,"23.020417",,"23.020417",,,,,,,"4317.541667",,,,,"4605.041667",,"4.155556",,"439.266667",,,,"251.200000","0.955556","0.133333","0.933333","40.111111","0.000000","426.370370","0.000000","9.296296","415.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","808.125000",,,,,"0.000000","0.000000",,,"2370.625000","2977.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.820417",,"22.820417",,"22.820417",,,,,,,"4684.416667",,,,,"4565.083333",,"3.511111",,"468.577778",,,,"41.457143","1.022222","0.133333","0.755556","44.955556","0.000000","470.592593","0.000000","9.629630","459.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","835.250000",,,,,"0.000000","0.000000",,,"2458.000000","3103.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.700417",,"21.700417",,"21.700417",,,,,,,"4974.625000",,,,,"4341.000000",,"3.444444",,"334.955556",,,,"31.085714","0.933333","0.088889","0.911111","33.444444","0.000000","349.222222","0.000000","8.740741","339.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","664.250000",,,,,"0.000000","0.000000",,,"2103.250000","2671.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.388333",,"19.388333",,"19.388333",,,,,,,"5157.041667",,,,,"3878.416667",,"2.866667",,"331.111111",,,,"31.257143","0.888889","0.088889","0.911111","33.466667","0.000000","347.777778","0.000000","8.851852","337.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","648.625000",,,,,"0.000000","0.000000",,,"2018.375000","2517.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.821250",,"20.821250",,"20.821250",,,,,,,"4882.625000",,,,,"4165.541667",,"3.755556",,"428.866667",,,,"39.628571","0.955556","0.177778","1.066667","42.733333","0.000000","441.222222","0.000000","9.407407","430.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","745.875000",,,,,"0.000000","0.000000",,,"2245.125000","2736.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.332500",,"20.332500",,"20.332500",,,,,,,"5124.375000",,,,,"4067.250000",,"3.777778",,"389.533333",,,,"37.771429","0.866667","0.422222","0.666667","40.644444","0.000000","417.148148","0.000000","8.703704","406.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","726.625000",,,,,"0.000000","0.000000",,,"2221.375000","2682.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.732500",,"19.732500",,"19.732500",,,,,,,"5277.000000",,,,,"3947.375000",,"2.444444",,"356.533333",,,,"33.542857","0.933333","0.222222","0.577778","36.022222","0.000000","371.629630","0.000000","8.407407","361.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","688.500000",,,,,"0.000000","0.000000",,,"2068.250000","2572.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.907083",,"18.907083",,"18.907083",,,,,,,"5005.208333",,,,,"3782.541667",,"3.688889",,"399.088889",,,,"36.742857","0.955556","0.355556","0.955556","39.777778","0.000000","412.074074","0.000000","8.925926","401.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","855.000000",,,,,"0.000000","0.000000",,,"4384.125000","4844.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.850417",,"19.850417",,"19.850417",,,,,,,"4846.750000",,,,,"3970.708333",,"2.600000",,"382.266667",,,,"36.428571","0.933333","0.088889","0.888889","39.222222","0.000000","402.518519","0.000000","8.444444","392.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.750000","184.857143",,,,,"0.000000","0.000000",,,"4871.000000","5392.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.644167",,"32.644167",,"32.644167",,,,,,,"2276.541667",,,,,"6529.958333",,"27.666667",,"453.911111",,,,"34.828571","2.377778","0.111111","1.155556","36.222222","0.000000","408.518519","0.000000","25.259259","378.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.875000","832.375000",,,,,"0.000000","0.000000",,,"2430.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.033333",,"30.033333",,"30.033333",,,,,,,"2902.500000",,,,,"6007.666667",,"3.888889",,"627.688889",,,,"45.828571","1.022222","0.133333","2.266667","50.288889","0.000000","534.814815","0.000000","10.074074","523.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1216.000000",,,,,"0.000000","0.000000",,,"3295.125000","4802.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.760833",,"24.760833",,"24.760833",,,,,,,"4648.333333",,,,,"4953.083333",,"3.711111",,"163.200000",,,,"2598.342857","0.933333","0.133333","1.311111","14.466667","0.000000","169.074074","0.000000","9.296296","158.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","344.750000",,,,,"0.000000","0.000000",,,"1145.500000","1842.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.272083",,"23.272083",,"23.272083",,,,,,,"4352.625000",,,,,"4655.333333",,"3.111111",,"112.888889",,,,"2558.228571","0.844444","0.088889","3.711111","7.977778","0.000000","96.740741","0.000000","8.407407","86.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","243.250000",,,,,"0.000000","0.000000",,,"859.000000","1164.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.639167",,"23.639167",,"23.639167",,,,,,,"4382.666667",,,,,"4728.583333",,"3.466667",,"191.755556",,,,"2051.714286","0.755556","0.155556","0.800000","12.711111","0.000000","145.000000","0.000000","8.037037","135.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.250000","366.125000",,,,,"0.000000","0.000000",,,"1871.000000","1665.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.453333",,"24.453333",,"24.453333",,,,,,,"4011.000000",,,,,"4891.625000",,"3.200000",,"520.244444",,,,"1856.257143","0.933333","0.377778","1.177778","46.555556","0.000000","483.259259","0.000000","8.740741","473.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","965.750000",,,,,"0.000000","0.000000",,,"2767.500000","3457.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.415833",,"19.415833",,"19.415833",,,,,,,"4672.458333",,,,,"3884.083333",,"3.288889",,"457.355556",,,,"42.314286","0.933333","0.577778","1.488889","46.133333","0.000000","482.185185","0.000000","9.000000","471.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","830.875000",,,,,"0.000000","0.000000",,,"2505.125000","3053.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.596667",,"19.596667",,"19.596667",,,,,,,"5570.583333",,,,,"3920.291667",,"3.600000",,"333.911111",,,,"31.342857","0.933333","0.177778","1.666667","33.777778","0.000000","353.925926","0.000000","9.000000","343.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","636.000000",,,,,"0.000000","0.000000",,,"1952.625000","2377.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.889167",,"21.889167",,"21.889167",,,,,,,"4982.875000",,,,,"4379.041667",,"3.088889",,"453.888889",,,,"45.285714","0.844444","0.177778","0.711111","49.066667","0.000000","498.777778","0.000000","8.370370","489.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.625000","796.625000",,,,,"0.000000","0.000000",,,"2519.250000","3130.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.477083",,"19.477083",,"19.477083",,,,,,,"5169.333333",,,,,"3896.375000",,"2.888889",,"365.555556",,,,"34.171429","0.888889","0.133333","0.955556","36.777778","0.000000","380.185185","0.000000","8.407407","370.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.875000","836.125000",,,,,"0.000000","0.000000",,,"4260.000000","4784.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.681667",,"19.681667",,"19.681667",,,,,,,"4811.208333",,,,,"3937.416667",,"3.577778",,"365.933333",,,,"36.828571","0.933333","0.088889","0.866667","39.466667","0.000000","401.444444","0.000000","8.888889","391.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","822.625000",,,,,"0.000000","0.000000",,,"4842.000000","5380.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.451667",,"22.451667",,"22.451667",,,,,,,"4657.416667",,,,,"4491.416667",,"8.933333",,"989.200000",,,,"48.942857","1.466667","0.400000","2.000000","52.311111","0.000000","539.666667","0.000000","13.370370","523.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","1852.000000",,,,,"0.000000","0.000000",,,"4468.250000","5832.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.670417",,"20.670417",,"20.670417",,,,,,,"4318.000000",,,,,"4135.083333",,"4.222222",,"365.200000",,,,"29.057143","0.955556","0.088889","1.422222","31.222222","0.000000","329.777778","0.000000","8.962963","319.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","672.625000",,,,,"0.000000","0.000000",,,"1964.250000","2379.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.848333",,"21.848333",,"21.848333",,,,,,,"4754.458333",,,,,"4370.666667",,"3.488889",,"416.133333",,,,"33.628571","0.755556","0.088889","1.311111","36.577778","0.000000","385.370370","0.000000","7.888889","376.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","774.500000",,,,,"0.000000","0.000000",,,"2277.875000","2721.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.132500",,"20.132500",,"20.132500",,,,,,,"4891.333333",,,,,"4027.625000",,"2.511111",,"414.666667",,,,"37.742857","0.844444","0.088889","2.288889","40.933333","0.000000","423.481481","0.000000","7.888889","414.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","759.375000",,,,,"0.000000","0.000000",,,"2231.375000","2711.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.042500",,"19.042500",,"19.042500",,,,,,,"5084.208333",,,,,"3809.416667",,"22.577778",,"357.044444",,,,"34.028571","1.933333","0.088889","0.866667","35.422222","0.000000","386.259259","0.000000","21.592593","360.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.875000","671.125000",,,,,"0.000000","0.000000",,,"2145.500000","2604.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.792500",,"22.792500",,"22.792500",,,,,,,"3789.166667",,,,,"4559.541667",,"3.333333",,"574.711111",,,,"48.800000","0.844444","0.555556","2.177778","53.400000","0.000000","557.148148","0.000000","8.296296","547.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1290.500000",,,,,"0.000000","0.000000",,,"6051.125000","7196.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.390417",,"17.390417",,"17.390417",,,,,,,"5659.458333",,,,,"3478.958333",,"3.844444",,"162.977778",,,,"2511.142857","0.955556","0.088889","2.533333","8.644444","0.000000","100.518519","0.000000","8.888889","90.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","444.625000",,,,,"0.000000","0.000000",,,"2839.625000","3327.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.985833",,"23.985833",,"23.985833",,,,,,,"3771.666667",,,,,"4798.208333",,"3.333333",,"433.133333",,,,"2620.000000","0.844444","0.177778","0.955556","44.466667","0.000000","458.925926","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","795.250000",,,,,"0.000000","0.000000",,,"2395.375000","2897.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.147500",,"25.147500",,"25.147500",,,,,,,"3449.375000",,,,,"5030.291667",,"4.000000",,"474.977778",,,,"2032.428571","0.955556","0.133333","1.822222","48.311111","0.000000","488.185185","0.000000","9.074074","477.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.125000","890.750000",,,,,"0.000000","0.000000",,,"3437.375000","3818.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.130417",,"26.130417",,"26.130417",,,,,,,"3912.291667",,,,,"5227.291667",,"3.555556",,"546.422222",,,,"1902.000000","0.755556","0.088889","2.533333","47.333333","0.000000","480.481481","0.000000","7.814815","471.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","1012.250000",,,,,"0.000000","0.000000",,,"2820.625000","3614.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.012917",,"21.012917",,"21.012917",,,,,,,"4422.583333",,,,,"4203.416667",,"3.666667",,"468.777778",,,,"105.428571","0.933333","0.133333","6.933333","48.444444","0.000000","498.925926","0.000000","9.370370","488.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1061.125000",,,,,"0.000000","0.000000",,,"6045.125000","6859.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.842083",,"18.842083",,"18.842083",,,,,,,"4652.875000",,,,,"3769.333333",,"3.733333",,"403.377778",,,,"38.285714","0.933333","0.088889","4.244444","41.244444","0.000000","424.000000","0.000000","9.333333","413.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","832.625000",,,,,"0.000000","0.000000",,,"3866.500000","4384.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.010417",,"21.010417",,"21.010417",,,,,,,"5120.166667",,,,,"4203.166667",,"8.111111",,"407.933333",,,,"39.428571","1.555556","0.088889","1.622222","42.111111","0.000000","447.000000","0.000000","13.518519","430.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","744.875000",,,,,"0.000000","0.000000",,,"2250.125000","2797.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.200000",,"20.200000",,"20.200000",,,,,,,"4722.708333",,,,,"4040.875000",,"4.288889",,"549.155556",,,,"40.542857","1.133333","0.133333","2.711111","44.022222","0.000000","465.629630","0.000000","10.666667","453.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","1017.125000",,,,,"0.000000","0.000000",,,"2748.875000","3460.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.990417",,"20.990417",,"20.990417",,,,,,,"4582.750000",,,,,"4198.666667",,"3.577778",,"437.977778",,,,"42.342857","0.844444","0.133333","2.844444","45.844444","0.000000","470.592593","0.000000","8.407407","460.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","802.750000",,,,,"0.000000","0.000000",,,"2460.250000","3028.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.747500",,"22.747500",,"22.747500",,,,,,,"4071.875000",,,,,"4550.541667",,"3.088889",,"464.311111",,,,"41.142857","0.844444","0.088889","1.066667","44.066667","0.000000","440.111111","0.000000","8.185185","430.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","857.250000",,,,,"0.000000","0.000000",,,"2492.250000","3075.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.713750",,"19.713750",,"19.713750",,,,,,,"4839.208333",,,,,"3943.750000",,"3.622222",,"389.844444",,,,"36.685714","0.977778","0.133333","1.466667","38.888889","0.000000","390.111111","0.000000","9.333333","379.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","714.000000",,,,,"0.000000","0.000000",,,"2135.750000","2635.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.062500",,"21.062500",,"21.062500",,,,,,,"5098.583333",,,,,"4213.583333",,"4.000000",,"353.933333",,,,"34.314286","0.955556","0.133333","0.844444","36.400000","0.000000","367.740741","0.000000","9.518519","356.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","656.000000",,,,,"0.000000","0.000000",,,"2067.750000","2605.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.229167",,"20.229167",,"20.229167",,,,,,,"5227.708333",,,,,"4046.708333",,"4.111111",,"355.111111",,,,"33.714286","1.111111","0.088889","1.355556","35.800000","0.000000","367.333333","0.000000","10.370370","355.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","651.750000",,,,,"0.000000","0.000000",,,"1999.375000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.282500",,"24.282500",,"24.282500",,,,,,,"3031.916667",,,,,"4857.416667",,"21.266667",,"473.577778",,,,"43.342857","1.911111","0.200000","1.266667","45.111111","0.000000","465.555556","0.000000","20.962963","440.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.125000","865.000000",,,,,"0.000000","0.000000",,,"2582.875000","3175.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.178750",,"25.178750",,"25.178750",,,,,,,"3900.000000",,,,,"5036.666667",,"3.977778",,"1013.777778",,,,"41.400000","0.955556","0.088889","4.066667","44.177778","0.000000","440.222222","0.000000","9.518519","429.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","15.714286",,,,,"0.000000","0.000000",,,"4154.375000","5611.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.437083",,"28.437083",,"28.437083",,,,,,,"3638.250000",,,,,"5688.375000",,"4.111111",,"373.711111",,,,"2527.771429","0.955556","0.088889","1.377778","30.044444","0.000000","311.259259","0.000000","9.629630","300.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","690.375000",,,,,"0.000000","0.000000",,,"1967.625000","2452.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.992500",,"27.992500",,"27.992500",,,,,,,"2436.458333",,,,,"5599.416667",,"8.577778",,"393.066667",,,,"2317.057143","1.466667","0.133333","1.022222","36.933333","0.000000","386.592593","0.000000","13.629630","370.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","876.875000",,,,,"0.000000","0.000000",,,"5075.125000","5665.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.729583",,"25.729583",,"25.729583",,,,,,,"3772.458333",,,,,"5146.875000",,"3.866667",,"338.377778",,,,"2118.114286","0.777778","0.088889","1.066667","30.777778","0.000000","316.740741","0.000000","8.074074","307.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","718.750000",,,,,"0.000000","0.000000",,,"4018.750000","4291.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.221667",,"27.221667",,"27.221667",,,,,,,"3001.833333",,,,,"5445.416667",,"4.311111",,"559.244444",,,,"1728.000000","0.955556","0.088889","1.155556","39.400000","0.000000","408.851852","0.000000","9.296296","398.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1064.875000",,,,,"0.000000","0.000000",,,"3247.625000","3960.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.568333",,"24.568333",,"24.568333",,,,,,,"3822.875000",,,,,"4914.708333",,"30.800000",,"519.644444",,,,"470.400000","2.155556","0.577778","1.333333","47.133333","0.000000","495.666667","0.000000","22.629630","471.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.750000","956.500000",,,,,"0.000000","0.000000",,,"2842.250000","3512.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.550417",,"22.550417",,"22.550417",,,,,,,"4712.500000",,,,,"4511.041667",,"4.688889",,"322.711111",,,,"29.285714","0.955556","0.111111","0.977778","31.288889","0.000000","328.888889","0.000000","9.851852","317.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","605.375000",,,,,"0.000000","0.000000",,,"1876.125000","2323.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.582917",,"21.582917",,"21.582917",,,,,,,"4338.750000",,,,,"4317.333333",,"3.400000",,"379.088889",,,,"36.371429","1.022222","0.133333","1.266667","38.933333","0.000000","398.740741","0.000000","9.740741","387.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","699.750000",,,,,"0.000000","0.000000",,,"2141.375000","2700.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.396250",,"26.396250",,"26.396250",,,,,,,"3317.000000",,,,,"5280.041667",,"3.800000",,"417.822222",,,,"35.114286","0.955556","0.088889","1.088889","37.622222","0.000000","385.555556","0.000000","9.185185","374.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","775.250000",,,,,"0.000000","0.000000",,,"2226.125000","2770.625000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host.csv b/splunk_eventgen/samples/vmware-actuals-host.csv new file mode 100644 index 00000000..905a7128 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host.csv @@ -0,0 +1,2 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"18541.239130","32.019766","18541.239130","32.019766","18541.239130","32.019766",,,,,,,"2242.192935",,,,,"5808.996377",,"6.022360","2932.263736","62.349689","2932.263736","2932.263736","23.152174","355.736183","3.348771","0.904537","3.174543","5.590737","0.000000","121.281804","0.000000","43.718196","75.482287","2907027.826087","4960558.086957","1689211.739130","0.000000","77973470.260870","0.000000","135369925.826087",,"6709144.695652","62702811.217391","0.000000","6249914.173913","0.000000","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783",,,,,,,,"433.638350","655.997585",,,,,"0.000000","0.000000",,,"11695.883152","6019.548913","4219.326087","908.260870","907.608696","904.739130","987.565217","981.000000","983.130435","0.000000","0.847826","0.000000","684.347826","676.326087","677.608696","786.978261","775.304348","777.804348","160.000000","6000.000000",,"8894531.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-fields.csv b/splunk_eventgen/samples/vmware-fields.csv new file mode 100644 index 00000000..45b52ed8 --- /dev/null +++ b/splunk_eventgen/samples/vmware-fields.csv @@ -0,0 +1,136 @@ +perftype,instance,fieldssplit +cpu,no,"AvgUsg_mhz" +cpu,no,"AvgUsg_pct" +cpu,no,"MaxUsg_mhz" +cpu,no,"MaxUsg_pct" +cpu,no,"MinUsg_mhz" +cpu,no,"MinUsg_pct" +cpu,no,"SumRdy_ms" +cpu,no,"SumSwpWait_ms" +cpu,no,"AvgDemand_MHz" +cpu,no,"AvgLat_pct" +cpu,no,"Entitle_MHz" +cpu,no,"SumCostop_ms" +cpu,no,"SumIdle_ms" +cpu,no,"SumMaxLtd_ms" +cpu,no,"SumOverlap_ms" +cpu,no,"SumRun_ms" +cpu,yes,"SumSys_ms" +cpu,yes,"SumUsd_ms" +cpu,yes,"SumWait_ms" +disk,no,"AvgRd_KBps" +disk,no,"AvgUsg_KBps" +disk,no,"AvgWr_KBps" +disk,no,"MaxUsg_KBps" +disk,no,"MinUsg_KBps" +disk,no,"MaxTotLat_ms" +disk,yes,AvgCmds +disk,yes,AvgRd +disk,yes,"AvgTotRdLat_ms" +disk,yes,"AvgTotWrLat_ms" +disk,yes,AvgWr +disk,yes,SumBusResets +disk,yes,SumCmds +disk,yes,SumCmdsAbort +disk,yes,SumRd +disk,yes,SumWr +mem,no,"AvgActWr_KB" +mem,no,"AvgAct_KB" +mem,no,"AvgCmpd_KB" +mem,no,"AvgCmpnRate_KBps" +mem,no,"AvgConsum_KB" +mem,no,"AvgDecmpnRate_KBps" +mem,no,"AvgGrtd_KB" +mem,no,"AvgOvrhdMax_KB" +mem,no,"AvgOvrhd_KB" +mem,no,"AvgShrd_KB" +mem,no,"AvgSwpIRate_KBps" +mem,no,"AvgSwpIn_KB" +mem,no,"AvgSwpORate_KBps" +mem,no,"AvgSwpOut_KB" +mem,no,"AvgSwpTarg_KB" +mem,no,"AvgSwpd_KB" +mem,no,"AvgUsg_pct" +mem,no,"AvgVmctlTarg_KB" +mem,no,"AvgVmctl_KB" +mem,no,"AvgZero_KB" +mem,no,"MaxAct_KB" +mem,no,"MaxConsum_KB" +mem,no,"MaxGrtd_KB" +mem,no,"MaxOvrhd_KB" +mem,no,"MaxShrd_KB" +mem,no,"MaxSwpIn_KB" +mem,no,"MaxSwpOut_KB" +mem,no,"MaxSwpTarg_KB" +mem,no,"MaxSwpd_KB" +mem,no,"MaxUsg_pct" +mem,no,"MaxVmctlTarg_KB" +mem,no,"MaxVmctl_KB" +mem,no,"MaxZero_KB" +mem,no,"MinAct_KB" +mem,no,"MinConsum_KB" +mem,no,"MinGrtd_KB" +mem,no,"MinOvrhd_KB" +mem,no,"MinShrd_KB" +mem,no,"MinSwpIn_KB" +mem,no,"MinSwpOut_KB" +mem,no,"MinSwpTarg_KB" +mem,no,"MinSwpd_KB" +mem,no,"MinUsg_pct" +mem,no,"MinVmctlTarg_KB" +mem,no,"MinVmctl_KB" +mem,no,"MinZero_KB" +mem,no,"ZipSaved_KB" +mem,no,"Zipped_KB" +mem,no,"AvgEntitle_KB" +mem,no,"AvgLat_pct" +mem,no,"AvgLlSwapUsd_KB" +mem,no,"AvgLlSwpIRate_KBps" +mem,no,"AvgLlSwpORate_KBps" +mem,no,"AvgOvrhdTouch_KB" +net,no,"AvgRvcd_KBps" +net,no,"AvgUsg_KBps" +net,no,"AvgXmit_KBps" +net,no,"MaxUsg_KBps" +net,no,"MinUsg_KBps" +net,no,"AvgBRx_KBps" +net,no,"AvgBTx_KBps" +net,no,SumBroadcastRx +net,no,SumBroadcastTx +net,no,SumDropRx +net,no,SumDropTx +net,no,SumMulticastRx +net,no,SumMulticastTx +net,yes,SumPktsRx +net,yes,SumPktsTx +power,no,"SumEnergy_j" +resCpu,no,"ActAvg15m_pct" +resCpu,no,"ActAvg1m_pct" +resCpu,no,"ActAvg5m_pct" +resCpu,no,"ActPk15m_pct" +resCpu,no,"ActPk1m_pct" +resCpu,no,"ActPk5m_pct" +resCpu,no,"MaxLtd15_pct" +resCpu,no,"MaxLtd1_pct" +resCpu,no,"MaxLtd5_pct" +resCpu,no,"RunAvg15m_pct" +resCpu,no,"RunAvg1m_pct" +resCpu,no,"RunAvg5m_pct" +resCpu,no,"RunPk15m_pct" +resCpu,no,"RunPk1m_pct" +resCpu,no,"RunPk5m_pct" +resCpu,no,SmplCnt +resCpu,no,"SmplPrd_ms" +sys,no,SumHeartbeat +sys,no,"Uptime_sec" +sys,no,"OsUptime_sec" +vDisk,yes,AvgRd +vDisk,yes,"AvgRd_KBps" +vDisk,yes,"AvgTotRdLat_ms" +vDisk,yes,"AvgTotWrLat_ms" +vDisk,yes,AvgWr +vDisk,yes,"AvgWr_KBps" +vDisk,yes,RdLoadMetric +vDisk,yes,RdOIO +vDisk,yes,WrLoadMetric +vDisk,yes,WrOIO diff --git a/splunk_eventgen/samples/vmware-hierarchy.csv b/splunk_eventgen/samples/vmware-hierarchy.csv new file mode 100644 index 00000000..40e68dac --- /dev/null +++ b/splunk_eventgen/samples/vmware-hierarchy.csv @@ -0,0 +1,9 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 03:30:26 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ross-datagens/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"" instanceUuid=""5012c4f6-e0b3-9daf-62a0-a1b47e67265e"" uuid=""4212c080-295c-e11e-0eba-a1b41060ae79"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ross-datagens/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ross-datagens/"" moid=""vm-2179"" type=""VirtualMachine"" name=""ross-datagen0044"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435026 +"2012-05-31 03:30:02 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"" instanceUuid=""501200a4-4da4-bfaa-f6d0-d5ce6fa6a913"" uuid=""42124cd4-7654-72f6-a95a-dbbb19b76626"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/QA/"" moid=""vm-1447"" type=""VirtualMachine"" name=""qasvwin7x64-HK1"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435002 +"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"" instanceUuid=""50127041-04d4-7c04-b381-7daa333399b9"" uuid=""4212c9c0-4b5e-d434-7498-3b17b0605b4e"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-1647"" type=""VirtualMachine"" name=""ANTIVIR01"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 +"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host10.foobar.com"" physicalhost=""host10.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-18"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"" instanceUuid=""5277badb-1342-e933-7dda-3d982779747d"" uuid=""564dc31d-0089-1fbb-57cd-a5373ac9c1db"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-16"" type=""VirtualMachine"" name=""vCenter41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 +"2012-05-31 03:29:45 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"" uuid=""44454c4c-5800-1052-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-20"" type=""HostSystem"" name=""host2.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434985 +"2012-05-31 03:29:44 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-19"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"" uuid=""44454c4c-5800-1051-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-19"" type=""HostSystem"" name=""host6.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434984 +"2012-05-31 03:29:40 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"" instanceUuid=""593E6A61-A674-478C-82C2-8EDB92A22906"" typeduipath=""/"" uipath=""/"" moid=""group-d1"" type=""VirtualCenter"" name=""VCENTER41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434980 +"2012-05-31 03:15:55 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/Solutions/VMware/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"" instanceUuid=""5012c9a3-1157-774d-6d43-7620a2a399de"" uuid=""4212765e-9013-6bca-547d-4b57f7add71f"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:Solutions/ResourcePool:VMware/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Solutions/VMware/QA/"" moid=""vm-744"" type=""VirtualMachine"" name=""io-qa-splunk"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434155 diff --git a/splunk_eventgen/samples/vmware-inventory.csv b/splunk_eventgen/samples/vmware-inventory.csv new file mode 100644 index 00000000..94492c00 --- /dev/null +++ b/splunk_eventgen/samples/vmware-inventory.csv @@ -0,0 +1 @@ +_raw,index,host,source,sourcetype "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=yellow, time=2012-05-31T03:53:31Z,subpath=triggeredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2029, overallStatus=yellow, time=2012-05-31T03:50:39Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1105, overallStatus=yellow, time=2012-05-31T03:44:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-141, overallStatus=yellow, time=2012-05-31T03:50:19Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-5.host-19, overallStatus=green, time=2012-04-27T22:57:23Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-4.host-19, overallStatus=green, time=2012-05-12T02:11:41Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-38.host-19, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-37.host-19, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-36.host-19, overallStatus=green, time=2011-12-01T19:48:26Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-35.host-19, overallStatus=green, time=2011-03-30T23:04:48Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-32.host-19, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-31.host-19, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-3.host-19, overallStatus=green, time=2012-05-14T01:06:22Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-29.host-19, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-27.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-26.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-24.host-19, overallStatus=gray, time=2012-05-29T16:00:41Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-23.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-22.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-21.host-19, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-20.host-19, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-19.host-19, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-18.host-19, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-17.host-19, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-16.host-19, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-15.host-19, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-14.host-19, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-13.host-19, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-12.host-19, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-1.host-19, overallStatus=green, time=2012-04-27T22:56:31Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=red, time=2012-05-31T03:20:51Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=yellow, time=2012-05-31T03:23:38Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2090, overallStatus=yellow, time=2012-05-31T03:26:21Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338242306, pnicDevice=vmnic4, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338241606, pnicDevice=vmnic0, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338297110, pnicDevice=vmnic5, uplinkPortKey=264, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338296399, pnicDevice=vmnic1, uplinkPortKey=263, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914974341, pnicDevice=vmnic6, uplinkPortKey=140, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914972820, pnicDevice=vmnic2, uplinkPortKey=138, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4103-35b23908, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",faultToleranceEnabled=True, name=host6.foobar.com, port=443, sslThumbprint=25:53:43:4A:E9:D8:2A:56:10:4A:6D:35:90:BB:82:8D:FC:F3:6E:F4, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",hz=2659999620, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4103, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=234, distributedMemoryFairness=291, overallCpuUsage=12881, overallMemoryUsage=65416, uptime=8915576,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=138, distributedMemoryFairness=380, overallCpuUsage=15011, overallMemoryUsage=46562, uptime=8911411,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=134, distributedMemoryFairness=379, overallCpuUsage=12645, overallMemoryUsage=46582, uptime=8910871,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=162, distributedMemoryFairness=286, overallCpuUsage=12131, overallMemoryUsage=68594, uptime=8914976,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=126, distributedMemoryFairness=288, overallCpuUsage=20193, overallMemoryUsage=68599, uptime=8913956,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=153, distributedMemoryFairness=382, overallCpuUsage=21654, overallMemoryUsage=46582, uptime=8909791,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf55e8-44794690-b3e8-842b2b76f183,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lunNumber=0, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"", device=[key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:73:10:77], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:7d:3e:c4], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=233, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[263:dvUplink1;264:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=235, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[137:dvUplink1;138:dvUplink2;139:dvUplink3;140:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=234, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.500000e116f4aa60, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa604d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-1664;vm-2022;vm-744;vm-1667;vm-385;vm-1836;vm-1001;vm-687;vm-1647;vm-480;vm-874;vm-281;vm-885;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1715;vm-1493;vm-1447;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;SC-WIN7-CLEAN;sc-centos-pciContRT-Current;io-qa-splunk;sushant_sandbox_centos2;perfy22;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;soln-am-centos-pm;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;soln_vmware_centos_5.6;qasvwin8r2x64-1;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;perfy67;jyun_test_empty;qasvwin7x64-HK1;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host6.foobar.com, overallStatus=green,vms=""vm-237;vm-1528;vm-1079;vm-1678;vm-1400;vm-975;vm-2502;vm-2556;vm-1522;vm-1375;vm-1187;vm-2498;vm-1934;vm-408;vm-2307;vm-1953;vm-1760;vm-1731;vm-1823;vm-824;vm-358;vm-1971;vm-1478;vm-2303;vm-1960;vm-1309;vm-1492;vm-1931;vm-985;vm-1970"",vmnames=""SOLN-W2008R2-5;beer.sv.splunk.com;soln-essNightly-BieberLR;tlee-rh5;soln-es2.0.0-4.3;VMware HealthAnalyzer;Centos6.2-64Sh01;testad;ivanhook-centos;bamboo-24;rhel6-64bit-p;Centos6.2-64Idx01;gen-win2008r2x64-CN-Trad;perfy39;se-vcenter;iv-wintest;qatwwin3rx64-3;ADH-W2k8R2-TPL;gen-fbsd81x86;soln-am-centos-dev2;perfy03;jason-ubuntu-2;btan_clone_nightly2n2b_FA;splunk_for_vmware_forwarder_appliance_ga-1.0-120502aLEAVE;splunk_for_vmware_forwarder_appliance_beta2-1.0-120403a;qa-vcent42x86;jtsai_fa_1;gen-win7x32-ultimate;soln-btsay-sandbox;jason-ubuntu-1"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-2022;vm-1664;vm-744;vm-1667;vm-385;vm-687;vm-1836;vm-1001;vm-1647;vm-480;vm-874;vm-885;vm-281;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1493;vm-1447;vm-1715;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;sc-centos-pciContRT-Current;SC-WIN7-CLEAN;io-qa-splunk;sushant_sandbox_centos2;perfy22;soln-am-centos-pm;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;qasvwin8r2x64-1;soln_vmware_centos_5.6;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;jyun_test_empty;qasvwin7x64-HK1;perfy67;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",model=PowerEdge R710, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt/net-lbt.5224,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman/openwsmand.5425,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp/slpd.5338,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa/vpxa.5453,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/nssquery.5463,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/hostd.5202,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/esxcfg-rescan.5626,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5486,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5444,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5415,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vprobed.5319,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5309,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vobd.5292,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5282,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/storageRM.5270,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5260,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sensord.5248,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5238,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5214,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5192,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/ntpd.5168,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5115,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4103-STD, type=VMFS, uuid=4daf55e8-44794690-b3e8-842b2b76f183, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:91:2e:9d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:91:2e:9c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:91:2e:99, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:91:2e:98, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:f1:85, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:f1:83, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:f1:81, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:f1:7f, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=22:131094:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=6:106:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=60:131132:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=636:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.500000e116f4aa60, deviceName=/vmfs/devices/disks/naa.500000e116f4aa60, devicePath=/vmfs/devices/disks/naa.500000e116f4aa60, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa60)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa604d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.500000e116f4aa60, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;96;80;0;0;-31;22;-12;-86;98;80;0;0;-31;22;-12;-86;99;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;67;75;81;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;49;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;65;81;75;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;51;54;54;51;55;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;54;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;97], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;98], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[68;53;65;52;80;66;49;48;49;49;56;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=summary/config/product",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2448, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=655, hostMemoryUsage=6043, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4904, sharedMemory=3287, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=115605,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=691, distributedMemoryEntitlement=1747, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=983, hostMemoryUsage=3980, overallCpuDemand=930, overallCpuUsage=664, privateMemory=3789, sharedMemory=307, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=41069,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=500, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=122, hostMemoryUsage=1192, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1074, sharedMemory=966, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=123280,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=657, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=436766,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=114, distributedCpuEntitlement=2712, distributedMemoryEntitlement=3842, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=1802, hostMemoryUsage=8101, overallCpuDemand=3775, overallCpuUsage=2978, privateMemory=7821, sharedMemory=370, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2514768,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=491, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=163, hostMemoryUsage=1185, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1076, sharedMemory=964, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=122620,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2560, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=409, hostMemoryUsage=6135, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4912, sharedMemory=3279, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=114585,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=239, distributedMemoryEntitlement=1642, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=573, hostMemoryUsage=4002, overallCpuDemand=239, overallCpuUsage=212, privateMemory=3827, sharedMemory=269, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=40109,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=678, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435986,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=112, distributedCpuEntitlement=3031, distributedMemoryEntitlement=4199, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2867, hostMemoryUsage=8118, overallCpuDemand=3084, overallCpuUsage=2206, privateMemory=7827, sharedMemory=364, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513988,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=677, overallCpuDemand=79, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435686,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=2579, distributedMemoryEntitlement=3882, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2621, hostMemoryUsage=8123, overallCpuDemand=2579, overallCpuUsage=2206, privateMemory=7828, sharedMemory=363, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513688,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=514, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=81, hostMemoryUsage=1194, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1078, sharedMemory=962, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=121660,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2446, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=327, hostMemoryUsage=6139, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4923, sharedMemory=3268, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=113625,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=638, distributedMemoryEntitlement=1760, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=614, hostMemoryUsage=4009, overallCpuDemand=824, overallCpuUsage=664, privateMemory=3872, sharedMemory=224, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=39149,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-migration.csv b/splunk_eventgen/samples/vmware-migration.csv new file mode 100644 index 00000000..240b52ef --- /dev/null +++ b/splunk_eventgen/samples/vmware-migration.csv @@ -0,0 +1 @@ +host6.foobar.com,host-16 host2.foobar.com,host-20 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv new file mode 100644 index 00000000..bef02f21 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv @@ -0,0 +1,29 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-guest-instance.csv b/splunk_eventgen/samples/vmware-perf-guest-instance.csv new file mode 100644 index 00000000..da3f27a7 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-guest-instance.csv @@ -0,0 +1,34 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv new file mode 100644 index 00000000..5e7651b3 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv @@ -0,0 +1,15 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf-host-instance.csv b/splunk_eventgen/samples/vmware-perf-host-instance.csv new file mode 100644 index 00000000..bca11490 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-host-instance.csv @@ -0,0 +1,211 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf.csv b/splunk_eventgen/samples/vmware-perf.csv new file mode 100644 index 00000000..56022b24 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf.csv @@ -0,0 +1,286 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/webhosts.sample b/splunk_eventgen/samples/webhosts.sample new file mode 100644 index 00000000..66e7e32b --- /dev/null +++ b/splunk_eventgen/samples/webhosts.sample @@ -0,0 +1,3 @@ +10.2.1.33 +10.2.1.34 +10.2.1.35 \ No newline at end of file diff --git a/splunk_eventgen/samples/windbag b/splunk_eventgen/samples/windbag new file mode 100644 index 00000000..c9b52d7d --- /dev/null +++ b/splunk_eventgen/samples/windbag @@ -0,0 +1,5 @@ +2014-01-04 20:54:34 WINDBAG Event 1 of 5 +2014-01-04 20:54:35 WINDBAG Event 2 of 5 +2014-01-04 20:54:36 WINDBAG Event 3 of 5 +2014-01-04 20:54:37 WINDBAG Event 4 of 5 +2014-01-04 20:54:38 WINDBAG Event 5 of 5 \ No newline at end of file From b99ed518f4230218a6b40153983f125f7d86bac8 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:59:47 +0800 Subject: [PATCH 55/68] restore unit test file --- tests/unit/conftest.py | 17 ++ tests/unit/test_eventgenconfig.py | 277 ++++++++++++++++++++++++++++++ tests/unit/test_timeparser.py | 105 +++++++++++ 3 files changed, 399 insertions(+) create mode 100644 tests/unit/conftest.py create mode 100644 tests/unit/test_eventgenconfig.py create mode 100644 tests/unit/test_timeparser.py diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py new file mode 100644 index 00000000..528209ef --- /dev/null +++ b/tests/unit/conftest.py @@ -0,0 +1,17 @@ +from os import path as op + +import pytest + +from splunk_eventgen.lib.eventgenconfig import Config + + +@pytest.fixture +def eventgen_config(): + """Returns a function to create config instance based on config file""" + + def _make_eventgen_config_instance(configfile=None): + if configfile is not None: + configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) + return Config(configfile=configfile) + + return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py new file mode 100644 index 00000000..b0391ef6 --- /dev/null +++ b/tests/unit/test_eventgenconfig.py @@ -0,0 +1,277 @@ +import json +import os +from ConfigParser import ConfigParser + +import pytest + +from splunk_eventgen.lib.eventgensamples import Sample + + +def test_makeSplunkEmbedded(eventgen_config): + """Test makeSplunkEmbedded works""" + config_instance = eventgen_config() + session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' + config_instance.makeSplunkEmbedded(session_key) + assert config_instance.splunkEmbedded + # reset splunkEmbedded since all instances share the attribute + config_instance.splunkEmbedded = False + + +def test_buildConfDict(eventgen_config): + """Test buildConfDict returns the same as reading directly from file""" + config_instance = eventgen_config() + config_instance._buildConfDict() + configparser = ConfigParser() + splunk_eventgen_folder = os.path.join( + os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') + configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) + configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) + + for key, value in config_instance._confDict['global'].items(): + assert value == configparser.get('global', key) + + +def test_validate_setting_count(eventgen_config): + """Test count config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'count', '0')) == int + assert config_instance._validateSetting('sample', 'count', '0') == 0 + + +def test_validate_setting_delay(eventgen_config): + """Test delay config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'delay', '10')) == int + assert config_instance._validateSetting('sample', 'delay', '10') == 10 + + +def test_validate_setting_interval(eventgen_config): + """Test interval config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'interval', '3')) == int + assert config_instance._validateSetting('sample', 'interval', '3') == 3 + + +def test_validate_setting_perdayvolume(eventgen_config): + """Test perdayvolume config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float + assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 + + +def test_validate_setting_randomizeCount(eventgen_config): + """Test randomizeCount config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float + assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 + + +def test_validate_setting_timeMultiple(eventgen_config): + """Test timeMultiple config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float + assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 + + +def test_validate_setting_disabled(eventgen_config): + """Test disabled config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'disabled', 'false')) == bool + assert config_instance._validateSetting('sample', 'disabled', 'false') is False + + +def test_validate_setting_profiler(eventgen_config): + """Test profiler config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool + assert config_instance._validateSetting('sample', 'profiler', 'false') is False + + +def test_validate_setting_useOutputQueue(eventgen_config): + """Test useOutputQueue config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool + assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False + + +def test_validate_setting_bundlelines(eventgen_config): + """Test bundlelines config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool + assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False + + +def test_validate_setting_httpeventWaitResponse(eventgen_config): + """Test httpeventWaitResponse config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool + assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False + + +def test_validate_setting_sequentialTimestamp(eventgen_config): + """Test sequentialTimestamp config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False + + +def test_validate_setting_autotimestamp(eventgen_config): + """Test autotimestamp config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False + + +def test_validate_setting_randomizeEvents(eventgen_config): + """Test randomizeEvents config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool + assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False + + +def test_validate_setting_outputCounter(eventgen_config): + """Test outputCounter config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool + assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False + + +def test_validate_setting_minuteOfHourRate(eventgen_config): + """Test minuteOfHourRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ + ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ + ' "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1,' \ + ' "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1,' \ + ' "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1,' \ + ' "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1,' \ + ' "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 }' + assert type(config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate)) == dict + result = json.loads(minuteOfHourRate) + assert config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate) == result + + +def test_validate_setting_hourOfDayRate(eventgen_config): + """Test hourOfDayRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ + ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ + ' "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70,' \ + ' "22": 0.60, "23": 0.45 }' + assert type(config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate)) == dict + result = json.loads(hourOfDayRate) + assert config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate) == result + + +def test_validate_setting_dayOfWeekRate(eventgen_config): + """Test dayOfWeekRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' + assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict + result = json.loads(dayOfWeekRate) + assert config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate) == result + + +def test_validate_setting_dayOfMonthRate(eventgen_config): + """Test dayOfMonthRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ + ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ + ' "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1,' \ + ' "31": 1 }' + assert type(config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate)) == dict + result = json.loads(dayOfMonthRate) + assert config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate) == result + + +def test_validate_setting_monthOfYearRate(eventgen_config): + """Test monthOfYearRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ + ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' + assert type(config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate)) == dict + result = json.loads(monthOfYearRate) + assert config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate) == result + + +def test_validate_setting_httpeventServers(eventgen_config): + """Test httpeventServers config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ + ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' + assert type(config_instance._validateSetting('sample', 'httpeventServers', httpeventServers)) == dict + result = json.loads(httpeventServers) + assert config_instance._validateSetting('sample', 'httpeventServers', httpeventServers) == result + + +def test_validate_setting_autotimestamps(eventgen_config): + """Test autotimestamps config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ + r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ' \ + r'["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ' \ + r'["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ' \ + r'["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ' \ + r'["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ' \ + r'",%m/%d/%Y %I:%M:%S %p,"], ' \ + r'["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ' \ + r'["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ' \ + r'["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"],' \ + r'["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ' \ + r'["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ' \ + r'["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", ' \ + r'"%Y-%m-%dT%H:%M:%S"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]]' + assert type(config_instance._validateSetting('sample', 'autotimestamps', autotimestamps)) == list + result = json.loads(autotimestamps) + assert config_instance._validateSetting('sample', 'autotimestamps', autotimestamps) == result + + +def test_getPlugin(eventgen_config): + """Test getPlugin method without loading any plugins""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + with pytest.raises(KeyError): + config_instance.getPlugin('output.awss3') + + +def test_getSplunkUrl(eventgen_config): + """Test getSplunkUrl with provided sample object""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + sample = Sample('test') + sample.splunkHost = 'localhost' + sample.splunkMethod = 'https' + sample.splunkPort = '8088' + + assert ('https://localhost:8088', 'https', 'localhost', '8088') == config_instance.getSplunkUrl(sample) + + +def test_validateTimeZone(eventgen_config): + """Test _validateTimeZone method""" + pass + + +def test_validateSeed(eventgen_config): + """Test _validateSeed method""" + pass + + +def test_punct(eventgen_config): + """Test _punct method with given string""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert '--:\n$^' == config_instance._punct('this-is-a: test \ntest $^') + + +def test_parse(eventgen_config): + """Test parse method with given evengen config""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + config_instance.parse() + assert len(config_instance.samples) == 1 diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py new file mode 100644 index 00000000..4dc7d13d --- /dev/null +++ b/tests/unit/test_timeparser.py @@ -0,0 +1,105 @@ +import datetime + +import pytest + +from splunk_eventgen.lib import timeparser + +time_delta_test_params = [(datetime.timedelta(days=1), 86400), + (datetime.timedelta(days=1, hours=3, minutes=15, seconds=32), 98132), + (datetime.timedelta(hours=1, minutes=10), 4200), (datetime.timedelta(hours=-1), -3600), + (None, 0)] + + +@pytest.mark.parametrize('delta,expect', time_delta_test_params) +def test_time_delta_2_second(delta, expect): + ''' Test timeDelta2secs function, convert time delta object to seconds + Normal cases: + case 1: time delta is 1 day, expect is 86400 + case 2: time delta is 1 day 3 hour 15 minutes 32 seconds, expect is 98132 + case 3: time delta is less than 1 day, only 1 hour 10 minutes, expect is 4200 + case 4: time delta is 1 hour ago, expect is -3600 + + Corner cases: + case 1: delta object is None -- invalid input, expect is + ''' + assert timeparser.timeDelta2secs(delta) == expect + + +def check_datetime_equal(d1, d2): + assert d1.year == d2.year + assert d1.month == d2.month + assert d1.day == d2.day + assert d1.hour == d2.hour + assert d1.minute == d2.minute + assert d1.second == d2.second + + +parse_time_math_params = [('+', '100', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 12, 0)), + ('-', '20', 'm', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2017, 7, 8, 4, 10, 20)), + ('', '3', 'w', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 29, 4, 10, 20)), + ('', '0', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20)), + ('', '123', '', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20))] + + +@pytest.mark.parametrize('plusminus,num,unit,ret,expect', parse_time_math_params) +def test_time_parser_time_math(plusminus, num, unit, ret, expect): + ''' + test timeParserTimeMath function, parse the time modifier + Normal Case: + Case 1: input "+100s" -- the parser should translate it as 100 seconds later. + Case 2: input "-20m" -- the parser should handle the month larger than 12 and translate as 20 months ago + Case 3: input '3w' -- the parser should translate as 21 days later. + + Corner Cases: + Case 1: input "0s" -- the time parser should return now + Case 2: input "123" -- unit is the empty string, behavior + ''' + check_datetime_equal(timeparser.timeParserTimeMath(plusminus, num, unichr, ret), expect) + + +def mock_now(): + return datetime.datetime(2019, 3, 10, 13, 20, 15) + + +def mock_utc_now(): + return datetime.datetime(2019, 3, 10, 5, 20, 15) + + +timeparser_params = [ + ('now', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), + ('now', datetime.timedelta(days=0), datetime.datetime(2019, 3, 10, 5, 20, 15)), + ('now', datetime.timedelta(hours=2), datetime.datetime(2019, 3, 10, 7, 20, 15)), + ('now', datetime.timedelta(hours=-3), datetime.datetime(2019, 3, 10, 2, 20, 15)), + ('-7d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 3, 13, 20, 15)), + ('-0mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 3, 1, 0, 0, 0)), + ('-1mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 2, 1, 0, 0, 0)), + ('-3d@d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 7, 0, 0, 0)), + ('+5d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 15, 13, 20, 15)), + ('', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), ] + + +@pytest.mark.parametrize('ts,tz,expect', timeparser_params) +def test_timeparser(ts, tz, expect): + ''' + test timeParser function, parse splunk time modifier + Normal Cases: + Case 1: get now timestamp + Case 2: get utc now timestamp + Case 3: get utc+2 timezone timestamp + Case 4: get utc-2 timezone timestamp + Case 5: get the 7 days ago timestamp + Case 5: get the beginning of this month. check the snap to month + Case 6: get the beginning of last month. check the snap to last month + Case 7: get 3 days ago, snap to day + Case 8: get 5 days later + + Corner Cases: + Case 1: empty string as input. behavior + ''' + r = timeparser.timeParser(ts, tz, mock_now, mock_utc_now) + check_datetime_equal(r, expect) From f8a59e9d6039a667383c23adda6ac299030cb57f Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Fri, 17 May 2019 11:24:49 +0800 Subject: [PATCH 56/68] add metric_httpevent plugin --- .../lib/plugins/output/metric_httpevent.py | 295 ++++++++++++++++++ 1 file changed, 295 insertions(+) create mode 100644 splunk_eventgen/lib/plugins/output/metric_httpevent.py diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py new file mode 100644 index 00000000..d5c45f83 --- /dev/null +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -0,0 +1,295 @@ +from __future__ import division + +import logging +import random +import urllib + +from outputplugin import OutputPlugin + +try: + import requests + from requests import Session + from requests_futures.sessions import FuturesSession + from concurrent.futures import ThreadPoolExecutor +except ImportError: + pass +try: + import ujson as json +except: + import json + + +class NoServers(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class BadConnection(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class MetricHTTPEventOutputPlugin(OutputPlugin): + ''' + HTTPEvent output will enable events that are generated to be sent directly + to splunk through the HTTP event input. In order to use this output plugin, + you will need to supply an attribute 'httpeventServers' as a valid json object. + this json object should look like the following: + + {servers:[{ protocol:http/https, address:127.0.0.1, port:8088, key:12345-12345-123123123123123123}]} + + ''' + name = 'metric_httpevent' + MAXQUEUELENGTH = 1000 + useOutputQueue = False + validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + jsonSettings = ['httpeventServers'] + + def __init__(self, sample, output_counter=None): + OutputPlugin.__init__(self, sample, output_counter) + + # TODO: make workers a param that can be set in eventgen.conf + def _setup_REST_workers(self, session=None, workers=10): + # disable any "requests" warnings + requests.packages.urllib3.disable_warnings() + # Bind passed in samples to the outputter. + self.lastsourcetype = None + if not session: + session = Session() + self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) + self.active_sessions = [] + + @staticmethod + def _urlencode(value): + ''' + Takes a value and make sure everything int he string is URL safe. + :param value: string + :return: urlencoded string + ''' + return urllib.quote(value) + + @staticmethod + def _bg_convert_json(sess, resp): + ''' + Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the + session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) + :param sess: futures session object. Automatically called on a background_callback as aruguments. + :param resp: futures resp object. Automatically called on a background_callback as aruguments. + :return: + ''' + if resp.status_code == 200: + if getattr(resp, "json", None): + resp.data = resp.json() + else: + if type(resp.data) == str: + resp.data = json.loads(resp.data) + + def updateConfig(self, config): + OutputPlugin.updateConfig(self, config) + try: + if hasattr(self.config, 'httpeventServers') is False: + if hasattr(self._sample, 'httpeventServers'): + self.config.httpeventServers = self._sample.httpeventServers + else: + self.logger.error( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + raise NoServers( + 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + # set default output mode to round robin + if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: + self.httpeventoutputmode = config.httpeventOutputMode + else: + if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: + self.httpeventoutputmode = self._sample.httpeventOutputMode + else: + self.httpeventoutputmode = 'roundrobin' + if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: + self.httpeventmaxsize = self.config.httpeventMaxPayloadSize + else: + if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: + self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize + else: + self.httpeventmaxsize = 10000 + self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) + if isinstance(config.httpeventServers, str): + self.httpeventServers = json.loads(config.httpeventServers) + else: + self.httpeventServers = config.httpeventServers + self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) + self.createConnections() + self.logger.debug("Pool created.") + self.logger.debug("Finished init of metric_httpevent plugin.") + except Exception as e: + self.logger.exception(str(e)) + + def createConnections(self): + self.serverPool = [] + if self.httpeventServers: + for server in self.httpeventServers.get('servers'): + if not server.get('address'): + self.logger.error( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + raise ValueError( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + if not server.get('port'): + self.logger.error( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + if not server.get('key'): + self.logger.error( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): + self.logger.error( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + raise ValueError( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + self.logger.debug( + "Validation Passed, Creating a requests object for server: %s" % server.get('address')) + + setserver = {} + setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), + server.get('port')) + setserver['header'] = "Splunk %s" % server.get('key') + self.logger.debug("Adding server set to pool, server: %s" % setserver) + self.serverPool.append(setserver) + else: + raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + + def _sendHTTPEvents(self, payload): + currentreadsize = 0 + stringpayload = "" + totalbytesexpected = 0 + totalbytessent = 0 + numberevents = len(payload) + self.logger.debug("Sending %s events to splunk" % numberevents) + for line in payload: + self.logger.debug("line: %s " % line) + targetline = json.dumps(line) + self.logger.debug("targetline: %s " % targetline) + targetlinesize = len(targetline) + totalbytesexpected += targetlinesize + if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): + stringpayload = stringpayload + targetline + currentreadsize = currentreadsize + targetlinesize + self.logger.debug("stringpayload: %s " % stringpayload) + else: + self.logger.debug("Max size for payload hit, sending to splunk then continuing.") + try: + self._transmitEvents(stringpayload) + totalbytessent += len(stringpayload) + currentreadsize = 0 + stringpayload = targetline + except Exception as e: + self.logger.exception(str(e)) + raise e + else: + try: + totalbytessent += len(stringpayload) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) + self._transmitEvents(stringpayload) + except Exception as e: + self.logger.exception(str(e)) + raise e + + def _transmitEvents(self, payloadstring): + targetServer = [] + self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) + if self.httpeventoutputmode == "mirror": + targetServer = self.serverPool + else: + targetServer.append(random.choice(self.serverPool)) + for server in targetServer: + self.logger.debug("Selected targetServer object: %s" % targetServer) + url = server['url'] + headers = {} + headers['Authorization'] = server['header'] + headers['content-type'] = 'application/json' + try: + payloadsize = len(payloadstring) + # response = requests.post(url, data=payloadstring, headers=headers, verify=False) + self.active_sessions.append( + self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + except Exception as e: + self.logger.error("Failed for exception: %s" % e) + self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % + (url, self.lastsourcetype, payloadsize)) + self.logger.debug( + "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) + raise e + + def flush(self, q): + self.logger.debug("Flush called on httpevent plugin") + self._setup_REST_workers() + if len(q) > 0: + try: + payload = [] + for event in q: + self.logger.debug("HTTPEvent proccessing event: %s" % event) + payloadFragment = {} + if event.get('_raw') is None or event['_raw'] == "\n": + self.logger.error('failure outputting event, does not contain _raw') + else: + self.logger.debug("Event contains _raw, attempting to process...") + self.logger.debug(event['_raw']) + fields = json.loads(event['_raw'])['fields'] + payloadFragment['fields'] = fields + payloadFragment['event'] = "metric" + if event.get('source'): + self.logger.debug("Event contains source, adding to httpevent event") + payloadFragment['source'] = event['source'] + if event.get('sourcetype'): + self.logger.debug("Event contains sourcetype, adding to httpevent event") + payloadFragment['sourcetype'] = event['sourcetype'] + self.lastsourcetype = event['sourcetype'] + if event.get('host'): + self.logger.debug("Event contains host, adding to httpevent event") + payloadFragment['host'] = event['host'] + if event.get('_time'): + # make sure _time can be an epoch timestamp + try: + float(event.get("_time")) + self.logger.debug("Event contains _time, adding to httpevent event") + payloadFragment['time'] = event['_time'] + except: + self.logger.error("Timestamp not in epoch format, ignoring event: {0}".format(event)) + if event.get('index'): + self.logger.debug("Event contains index, adding to httpevent event") + payloadFragment['index'] = event['index'] + + self.logger.debug("Full payloadFragment: {}".format(payloadFragment)) + # self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) + payload.append(payloadFragment) + self.logger.debug("Metric Finished processing events, sending all to splunk") + self._sendHTTPEvents(payload) + if self.config.httpeventWaitResponse: + for session in self.active_sessions: + response = session.result() + if not response.raise_for_status(): + self.logger.debug("Payload successfully sent to httpevent server.") + else: + self.logger.error("Server returned an error while trying to send, response code: %s" % + response.status_code) + raise BadConnection( + "Server returned an error while sending, response code: %s" % response.status_code) + else: + self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") + except Exception as e: + self.logger.error('failed indexing events, reason: %s ' % e) + + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_httpeventout') + + +def load(): + """Returns an instance of the plugin""" + return MetricHTTPEventOutputPlugin From 4e076de6ce4440ba7bd10e8e884f3676c23c07be Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 21 May 2019 17:47:15 +0800 Subject: [PATCH 57/68] update log content in metric_httpevent --- .../lib/plugins/output/metric_httpevent.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py index d5c45f83..f315b2fd 100644 --- a/splunk_eventgen/lib/plugins/output/metric_httpevent.py +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -31,8 +31,8 @@ def __init__(self, *args, **kwargs): class MetricHTTPEventOutputPlugin(OutputPlugin): ''' - HTTPEvent output will enable events that are generated to be sent directly - to splunk through the HTTP event input. In order to use this output plugin, + MetricHTTPEvent output will enable events that are generated to be sent directly + to splunk metrics indexes through the HTTP event input. In order to use this output plugin, you will need to supply an attribute 'httpeventServers' as a valid json object. this json object should look like the following: @@ -93,9 +93,9 @@ def updateConfig(self, config): self.config.httpeventServers = self._sample.httpeventServers else: self.logger.error( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) raise NoServers( - 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) # set default output mode to round robin if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: self.httpeventoutputmode = config.httpeventOutputMode @@ -161,7 +161,7 @@ def createConnections(self): self.logger.debug("Adding server set to pool, server: %s" % setserver) self.serverPool.append(setserver) else: - raise NoServers('outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) + raise NoServers('outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) def _sendHTTPEvents(self, payload): currentreadsize = 0 @@ -228,7 +228,7 @@ def _transmitEvents(self, payloadstring): raise e def flush(self, q): - self.logger.debug("Flush called on httpevent plugin") + self.logger.debug("Flush called on metric_httpevent plugin") self._setup_REST_workers() if len(q) > 0: try: @@ -241,7 +241,7 @@ def flush(self, q): else: self.logger.debug("Event contains _raw, attempting to process...") self.logger.debug(event['_raw']) - fields = json.loads(event['_raw'])['fields'] + fields = json.loads(event['_raw'])['fields'] payloadFragment['fields'] = fields payloadFragment['event'] = "metric" if event.get('source'): @@ -269,7 +269,7 @@ def flush(self, q): self.logger.debug("Full payloadFragment: {}".format(payloadFragment)) # self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) payload.append(payloadFragment) - self.logger.debug("Metric Finished processing events, sending all to splunk") + self.logger.debug("Metric_httpevent Finished processing events, sending all to splunk") self._sendHTTPEvents(payload) if self.config.httpeventWaitResponse: for session in self.active_sessions: @@ -282,7 +282,7 @@ def flush(self, q): raise BadConnection( "Server returned an error while sending, response code: %s" % response.status_code) else: - self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") + self.logger.debug("Ignoring response from HTTP server, leaving metric_httpevent outputter") except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) From dc3e0e5823f33dac595800fc1f630ace756052f7 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 21 May 2019 17:55:32 +0800 Subject: [PATCH 58/68] add doc for metric_httpevent --- docs/REFERENCE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 0f089c84..17fafd3e 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -114,7 +114,7 @@ outputWorkers = * Generally if using TCP based outputs like splunkstream, more could be required * Defaults to 1 -outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout +outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout | metric_httpevent * Specifies how to output log data. Modinput is default. * If setting spool, should set spoolDir * If setting file, should set fileName @@ -123,6 +123,7 @@ outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | h * If setting s2s, should set splunkHost and splunkPort * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort * If setting httpevent, should set httpeventServers + * If setting metric_httpevent, should set httpeventServers and make sure your index is a splunk metric index syslogDestinationHost = * Defaults to 127.0.0.1 From 7584c792a245cc840f1133a72c5227dad32a6759 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:47:19 +0800 Subject: [PATCH 59/68] define httpevent_core and add fix eventgen-httpeventout log handler --- splunk_eventgen/eventgen_core.py | 12 + .../lib/plugins/output/httpevent.py | 18 +- .../lib/plugins/output/httpevent_core.py | 228 + .../lib/plugins/output/metric_httpevent.py | 196 +- .../samples/anomalous.hostname.sample | 1 - .../samples/anomalous.ip_address.sample | 1 - .../samples/anomalous.mac_address.sample | 1 - splunk_eventgen/samples/artIDs.sample | 21 - splunk_eventgen/samples/artists.sample | 0 splunk_eventgen/samples/city.state.zipcode | 29470 ----- splunk_eventgen/samples/dist.all.last | 88799 --------------- splunk_eventgen/samples/dist.female.first | 4275 - splunk_eventgen/samples/dist.male.first | 1219 - splunk_eventgen/samples/external_ips.sample | 150 - splunk_eventgen/samples/firstNames.sample | 2000 - splunk_eventgen/samples/hostname.sample | 50 - splunk_eventgen/samples/iana_domains.sample | 316 - splunk_eventgen/samples/internal_ips.sample | 951 - splunk_eventgen/samples/ip_address.sample | 50 - splunk_eventgen/samples/lastNames.sample | 1002 - splunk_eventgen/samples/linux_arch.sample | 25 - splunk_eventgen/samples/mac_address.sample | 50 - .../samples/malicious_domains.sample | 5 - splunk_eventgen/samples/markets.sample | 1 - splunk_eventgen/samples/mdn.sample | 815 - .../samples/networkProvider.sample | 39 - .../samples/oracle11.action.sample | 20 - .../samples/oracleUserNames.sample | 24 - splunk_eventgen/samples/orderType.sample | 6 - .../samples/orig.sample.mobilemusic.csv | 1 - splunk_eventgen/samples/phones.sample | 69 - splunk_eventgen/samples/plans.sample | 24 - splunk_eventgen/samples/radPIDs.sample | 3 - splunk_eventgen/samples/radhosts.sample | 3 - splunk_eventgen/samples/random_domains.sample | 73 - splunk_eventgen/samples/sample.businessevent | 1 - splunk_eventgen/samples/sample.mobilemusic | 3 - .../samples/sample.mobilemusic.csv | 6 - splunk_eventgen/samples/sample.tutorial1 | 2020 - splunk_eventgen/samples/sample.tutorial2 | 274 - splunk_eventgen/samples/sample.tutorial3 | 1 - splunk_eventgen/samples/sample.tutorial4 | 4 - splunk_eventgen/samples/searchArtists.sample | 21 - splunk_eventgen/samples/sha1_checksums.sample | 1000 - splunk_eventgen/samples/states | 50 - splunk_eventgen/samples/states.abbrev | 59 - splunk_eventgen/samples/street.types | 59 - splunk_eventgen/samples/streetNames.sample | 91670 ---------------- splunk_eventgen/samples/streetSuffixes.sample | 24 - splunk_eventgen/samples/streets | 168 - splunk_eventgen/samples/trackIDs.sample | 23 - splunk_eventgen/samples/transType.sample | 6 - splunk_eventgen/samples/uris.sample | 5 - splunk_eventgen/samples/userHostIp.sample | 1000 - splunk_eventgen/samples/userName.sample | 1000 - splunk_eventgen/samples/useragents.sample | 84 - .../samples/useragents_desktop.sample | 75 - .../samples/useragents_mobile.sample | 84 - .../vmware-actuals-guest-aggregate.csv | 847 - .../samples/vmware-actuals-guest-instance.csv | 847 - .../samples/vmware-actuals-guest.csv | 2 - .../samples/vmware-actuals-host-aggregate.csv | 860 - .../samples/vmware-actuals-host-instance.csv | 852 - .../samples/vmware-actuals-host.csv | 2 - splunk_eventgen/samples/vmware-fields.csv | 136 - splunk_eventgen/samples/vmware-hierarchy.csv | 9 - splunk_eventgen/samples/vmware-inventory.csv | 1 - splunk_eventgen/samples/vmware-migration.csv | 1 - .../samples/vmware-perf-guest-aggregate.csv | 29 - .../samples/vmware-perf-guest-instance.csv | 34 - .../samples/vmware-perf-host-aggregate.csv | 15 - .../samples/vmware-perf-host-instance.csv | 211 - splunk_eventgen/samples/vmware-perf.csv | 286 - splunk_eventgen/samples/webhosts.sample | 3 - splunk_eventgen/samples/windbag | 5 - tests/unit/conftest.py | 17 - tests/unit/test_eventgenconfig.py | 277 - tests/unit/test_timeparser.py | 105 - 78 files changed, 246 insertions(+), 231848 deletions(-) create mode 100644 splunk_eventgen/lib/plugins/output/httpevent_core.py delete mode 100644 splunk_eventgen/samples/anomalous.hostname.sample delete mode 100644 splunk_eventgen/samples/anomalous.ip_address.sample delete mode 100644 splunk_eventgen/samples/anomalous.mac_address.sample delete mode 100644 splunk_eventgen/samples/artIDs.sample delete mode 100644 splunk_eventgen/samples/artists.sample delete mode 100644 splunk_eventgen/samples/city.state.zipcode delete mode 100644 splunk_eventgen/samples/dist.all.last delete mode 100644 splunk_eventgen/samples/dist.female.first delete mode 100644 splunk_eventgen/samples/dist.male.first delete mode 100644 splunk_eventgen/samples/external_ips.sample delete mode 100644 splunk_eventgen/samples/firstNames.sample delete mode 100644 splunk_eventgen/samples/hostname.sample delete mode 100644 splunk_eventgen/samples/iana_domains.sample delete mode 100644 splunk_eventgen/samples/internal_ips.sample delete mode 100644 splunk_eventgen/samples/ip_address.sample delete mode 100644 splunk_eventgen/samples/lastNames.sample delete mode 100644 splunk_eventgen/samples/linux_arch.sample delete mode 100644 splunk_eventgen/samples/mac_address.sample delete mode 100644 splunk_eventgen/samples/malicious_domains.sample delete mode 100644 splunk_eventgen/samples/markets.sample delete mode 100644 splunk_eventgen/samples/mdn.sample delete mode 100644 splunk_eventgen/samples/networkProvider.sample delete mode 100644 splunk_eventgen/samples/oracle11.action.sample delete mode 100644 splunk_eventgen/samples/oracleUserNames.sample delete mode 100644 splunk_eventgen/samples/orderType.sample delete mode 100644 splunk_eventgen/samples/orig.sample.mobilemusic.csv delete mode 100644 splunk_eventgen/samples/phones.sample delete mode 100644 splunk_eventgen/samples/plans.sample delete mode 100644 splunk_eventgen/samples/radPIDs.sample delete mode 100644 splunk_eventgen/samples/radhosts.sample delete mode 100644 splunk_eventgen/samples/random_domains.sample delete mode 100644 splunk_eventgen/samples/sample.businessevent delete mode 100644 splunk_eventgen/samples/sample.mobilemusic delete mode 100644 splunk_eventgen/samples/sample.mobilemusic.csv delete mode 100644 splunk_eventgen/samples/sample.tutorial1 delete mode 100644 splunk_eventgen/samples/sample.tutorial2 delete mode 100644 splunk_eventgen/samples/sample.tutorial3 delete mode 100644 splunk_eventgen/samples/sample.tutorial4 delete mode 100644 splunk_eventgen/samples/searchArtists.sample delete mode 100644 splunk_eventgen/samples/sha1_checksums.sample delete mode 100644 splunk_eventgen/samples/states delete mode 100644 splunk_eventgen/samples/states.abbrev delete mode 100644 splunk_eventgen/samples/street.types delete mode 100644 splunk_eventgen/samples/streetNames.sample delete mode 100644 splunk_eventgen/samples/streetSuffixes.sample delete mode 100644 splunk_eventgen/samples/streets delete mode 100644 splunk_eventgen/samples/trackIDs.sample delete mode 100644 splunk_eventgen/samples/transType.sample delete mode 100644 splunk_eventgen/samples/uris.sample delete mode 100644 splunk_eventgen/samples/userHostIp.sample delete mode 100644 splunk_eventgen/samples/userName.sample delete mode 100644 splunk_eventgen/samples/useragents.sample delete mode 100644 splunk_eventgen/samples/useragents_desktop.sample delete mode 100644 splunk_eventgen/samples/useragents_mobile.sample delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-guest.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-actuals-host.csv delete mode 100644 splunk_eventgen/samples/vmware-fields.csv delete mode 100644 splunk_eventgen/samples/vmware-hierarchy.csv delete mode 100644 splunk_eventgen/samples/vmware-inventory.csv delete mode 100644 splunk_eventgen/samples/vmware-migration.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-guest-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-guest-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-host-aggregate.csv delete mode 100644 splunk_eventgen/samples/vmware-perf-host-instance.csv delete mode 100644 splunk_eventgen/samples/vmware-perf.csv delete mode 100644 splunk_eventgen/samples/webhosts.sample delete mode 100644 splunk_eventgen/samples/windbag delete mode 100644 tests/unit/conftest.py delete mode 100644 tests/unit/test_eventgenconfig.py delete mode 100644 tests/unit/test_timeparser.py diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index a4944cca..56530da8 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -265,6 +265,7 @@ def _setup_loggers(self, args=None, config=None): eventgen_metrics_logger_path = os.path.join(log_path, 'eventgen-metrics.log') eventgen_error_logger_path = os.path.join(log_path, 'eventgen-errors.log') eventgen_server_logger_path = os.path.join(log_path, 'eventgen-server.log') + eventgen_httpevent_logger_path = os.path.join(log_path, 'eventgen-httpevent.log') if not config: log_format = '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s' date_format = '%Y-%m-%d %H:%M:%S' @@ -303,6 +304,11 @@ def _setup_loggers(self, args=None, config=None): server_file_handler.setFormatter(json_formatter) server_file_handler.setLevel(logging.INFO) + httpevent_file_handler = logging.handlers.RotatingFileHandler(eventgen_httpevent_logger_path, maxBytes=2500000, + backupCount=10) + httpevent_file_handler.setFormatter(detailed_formatter) + httpevent_file_handler.setLevel(logging.INFO) + # Configure eventgen logger logger = logging.getLogger('eventgen') logger.setLevel(self.args.verbosity or logging.ERROR) @@ -336,6 +342,12 @@ def _setup_loggers(self, args=None, config=None): logger.handlers = [] logger.addHandler(server_file_handler) logger.addHandler(console_handler) + + logger = logging.getLogger('eventgen_httpeventout') + logger.setLevel(logging.INFO) + logger.propagate = False + logger.handlers = [] + logger.addHandler(httpevent_file_handler) else: self.logger_config = config logging.config.dictConfig(self.logger_config) diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index 1d2488f6..9d33a803 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -1,10 +1,6 @@ from __future__ import division -import logging -import random -import urllib - -from outputplugin import OutputPlugin +from httpevent_core import HTTPCoreOutputPlugin try: import requests @@ -29,7 +25,7 @@ def __init__(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) -class HTTPEventOutputPlugin(OutputPlugin): +class HTTPEventOutputPlugin(HTTPCoreOutputPlugin): ''' HTTPEvent output will enable events that are generated to be sent directly to splunk through the HTTP event input. In order to use this output plugin, @@ -40,13 +36,8 @@ class HTTPEventOutputPlugin(OutputPlugin): ''' name = 'httpevent' - MAXQUEUELENGTH = 1000 - useOutputQueue = False - validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - jsonSettings = ['httpeventServers'] - def __init__(self, sample, output_counter=None): + super(HTTPEventOutputPlugin,self).__init__(sample,output_counter) OutputPlugin.__init__(self, sample, output_counter) # TODO: make workers a param that can be set in eventgen.conf @@ -282,9 +273,6 @@ def flush(self, q): except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - def load(): """Returns an instance of the plugin""" diff --git a/splunk_eventgen/lib/plugins/output/httpevent_core.py b/splunk_eventgen/lib/plugins/output/httpevent_core.py new file mode 100644 index 00000000..35284dd3 --- /dev/null +++ b/splunk_eventgen/lib/plugins/output/httpevent_core.py @@ -0,0 +1,228 @@ +from __future__ import division + +import logging +import random +import urllib + +from outputplugin import OutputPlugin + +try: + import requests + from requests import Session + from requests_futures.sessions import FuturesSession + from concurrent.futures import ThreadPoolExecutor +except ImportError: + pass +try: + import ujson as json +except: + import json + + +class NoServers(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class BadConnection(Exception): + def __init__(self, *args, **kwargs): + Exception.__init__(self, *args, **kwargs) + + +class HTTPCoreOutputPlugin(OutputPlugin): + name = 'httpcore' + MAXQUEUELENGTH = 1000 + useOutputQueue = False + validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + jsonSettings = ['httpeventServers'] + + def __init__(self, sample, output_counter=None): + OutputPlugin.__init__(self, sample, output_counter) + + # TODO: make workers a param that can be set in eventgen.conf + def _setup_REST_workers(self, session=None, workers=10): + # disable any "requests" warnings + requests.packages.urllib3.disable_warnings() + # Bind passed in samples to the outputter. + self.lastsourcetype = None + if not session: + session = Session() + self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) + self.active_sessions = [] + + @staticmethod + def _urlencode(value): + ''' + Takes a value and make sure everything int he string is URL safe. + :param value: string + :return: urlencoded string + ''' + return urllib.quote(value) + + @staticmethod + def _bg_convert_json(sess, resp): + ''' + Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the + session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) + :param sess: futures session object. Automatically called on a background_callback as aruguments. + :param resp: futures resp object. Automatically called on a background_callback as aruguments. + :return: + ''' + if resp.status_code == 200: + if getattr(resp, "json", None): + resp.data = resp.json() + else: + if type(resp.data) == str: + resp.data = json.loads(resp.data) + + def updateConfig(self, config): + OutputPlugin.updateConfig(self, config) + try: + if hasattr(self.config, 'httpeventServers') is False: + if hasattr(self._sample, 'httpeventServers'): + self.config.httpeventServers = self._sample.httpeventServers + else: + self.logger.error( + 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) + raise NoServers( + 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) + # set default output mode to round robin + if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: + self.httpeventoutputmode = config.httpeventOutputMode + else: + if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: + self.httpeventoutputmode = self._sample.httpeventOutputMode + else: + self.httpeventoutputmode = 'roundrobin' + if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: + self.httpeventmaxsize = self.config.httpeventMaxPayloadSize + else: + if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: + self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize + else: + self.httpeventmaxsize = 10000 + self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) + if isinstance(config.httpeventServers, str): + self.httpeventServers = json.loads(config.httpeventServers) + else: + self.httpeventServers = config.httpeventServers + self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) + self.createConnections() + self.logger.debug("Pool created.") + self.logger.debug("Finished init of %s plugin." % self.name) + except Exception as e: + self.logger.exception(str(e)) + + def createConnections(self): + self.serverPool = [] + if self.httpeventServers: + for server in self.httpeventServers.get('servers'): + if not server.get('address'): + self.logger.error( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + raise ValueError( + 'requested a connection to a httpevent server, but no address specified for sample %s' % + self._sample.name) + if not server.get('port'): + self.logger.error( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no port specified for server %s' % server) + if not server.get('key'): + self.logger.error( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + raise ValueError( + 'requested a connection to a httpevent server, but no key specified for server %s' % server) + if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): + self.logger.error( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + raise ValueError( + 'requested a connection to a httpevent server, but no protocol specified for server %s' % + server) + self.logger.debug( + "Validation Passed, Creating a requests object for server: %s" % server.get('address')) + + setserver = {} + setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), + server.get('port')) + setserver['header'] = "Splunk %s" % server.get('key') + self.logger.debug("Adding server set to pool, server: %s" % setserver) + self.serverPool.append(setserver) + else: + raise NoServers('outputMode %s but httpeventServers not specified for sample %s' %(self.name, self._sample.name)) + + def _sendHTTPEvents(self, payload): + currentreadsize = 0 + stringpayload = "" + totalbytesexpected = 0 + totalbytessent = 0 + numberevents = len(payload) + self.logger.debug("Sending %s events to splunk" % numberevents) + for line in payload: + self.logger.debug("line: %s " % line) + targetline = json.dumps(line) + self.logger.debug("targetline: %s " % targetline) + targetlinesize = len(targetline) + totalbytesexpected += targetlinesize + if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): + stringpayload = stringpayload + targetline + currentreadsize = currentreadsize + targetlinesize + self.logger.debug("stringpayload: %s " % stringpayload) + else: + self.logger.debug("Max size for payload hit, sending to splunk then continuing.") + try: + self._transmitEvents(stringpayload) + totalbytessent += len(stringpayload) + currentreadsize = 0 + stringpayload = targetline + except Exception as e: + self.logger.exception(str(e)) + raise e + else: + try: + totalbytessent += len(stringpayload) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) + self._transmitEvents(stringpayload) + except Exception as e: + self.logger.exception(str(e)) + raise e + + def _transmitEvents(self, payloadstring): + targetServer = [] + self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) + if self.httpeventoutputmode == "mirror": + targetServer = self.serverPool + else: + targetServer.append(random.choice(self.serverPool)) + for server in targetServer: + self.logger.debug("Selected targetServer object: %s" % targetServer) + url = server['url'] + headers = {} + headers['Authorization'] = server['header'] + headers['content-type'] = 'application/json' + try: + payloadsize = len(payloadstring) + # response = requests.post(url, data=payloadstring, headers=headers, verify=False) + self.active_sessions.append( + self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + except Exception as e: + self.logger.error("Failed for exception: %s" % e) + self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % + (url, self.lastsourcetype, payloadsize)) + self.logger.debug( + "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) + raise e + + + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_httpeventout') + + +def load(): + """Returns an instance of the plugin""" + return HTTPCoreOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py index f315b2fd..161b1420 100644 --- a/splunk_eventgen/lib/plugins/output/metric_httpevent.py +++ b/splunk_eventgen/lib/plugins/output/metric_httpevent.py @@ -1,10 +1,6 @@ from __future__ import division -import logging -import random -import urllib - -from outputplugin import OutputPlugin +from httpevent_core import HTTPCoreOutputPlugin try: import requests @@ -29,7 +25,7 @@ def __init__(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) -class MetricHTTPEventOutputPlugin(OutputPlugin): +class MetricHTTPEventOutputPlugin(HTTPCoreOutputPlugin): ''' MetricHTTPEvent output will enable events that are generated to be sent directly to splunk metrics indexes through the HTTP event input. In order to use this output plugin, @@ -40,192 +36,9 @@ class MetricHTTPEventOutputPlugin(OutputPlugin): ''' name = 'metric_httpevent' - MAXQUEUELENGTH = 1000 - useOutputQueue = False - validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - jsonSettings = ['httpeventServers'] def __init__(self, sample, output_counter=None): - OutputPlugin.__init__(self, sample, output_counter) - - # TODO: make workers a param that can be set in eventgen.conf - def _setup_REST_workers(self, session=None, workers=10): - # disable any "requests" warnings - requests.packages.urllib3.disable_warnings() - # Bind passed in samples to the outputter. - self.lastsourcetype = None - if not session: - session = Session() - self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) - self.active_sessions = [] - - @staticmethod - def _urlencode(value): - ''' - Takes a value and make sure everything int he string is URL safe. - :param value: string - :return: urlencoded string - ''' - return urllib.quote(value) - - @staticmethod - def _bg_convert_json(sess, resp): - ''' - Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the - session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) - :param sess: futures session object. Automatically called on a background_callback as aruguments. - :param resp: futures resp object. Automatically called on a background_callback as aruguments. - :return: - ''' - if resp.status_code == 200: - if getattr(resp, "json", None): - resp.data = resp.json() - else: - if type(resp.data) == str: - resp.data = json.loads(resp.data) - - def updateConfig(self, config): - OutputPlugin.updateConfig(self, config) - try: - if hasattr(self.config, 'httpeventServers') is False: - if hasattr(self._sample, 'httpeventServers'): - self.config.httpeventServers = self._sample.httpeventServers - else: - self.logger.error( - 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - raise NoServers( - 'outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - # set default output mode to round robin - if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: - self.httpeventoutputmode = config.httpeventOutputMode - else: - if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: - self.httpeventoutputmode = self._sample.httpeventOutputMode - else: - self.httpeventoutputmode = 'roundrobin' - if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: - self.httpeventmaxsize = self.config.httpeventMaxPayloadSize - else: - if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: - self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize - else: - self.httpeventmaxsize = 10000 - self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) - if isinstance(config.httpeventServers, str): - self.httpeventServers = json.loads(config.httpeventServers) - else: - self.httpeventServers = config.httpeventServers - self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) - self.createConnections() - self.logger.debug("Pool created.") - self.logger.debug("Finished init of metric_httpevent plugin.") - except Exception as e: - self.logger.exception(str(e)) - - def createConnections(self): - self.serverPool = [] - if self.httpeventServers: - for server in self.httpeventServers.get('servers'): - if not server.get('address'): - self.logger.error( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - raise ValueError( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - if not server.get('port'): - self.logger.error( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - if not server.get('key'): - self.logger.error( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - raise ValueError( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - self.logger.debug( - "Validation Passed, Creating a requests object for server: %s" % server.get('address')) - - setserver = {} - setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), - server.get('port')) - setserver['header'] = "Splunk %s" % server.get('key') - self.logger.debug("Adding server set to pool, server: %s" % setserver) - self.serverPool.append(setserver) - else: - raise NoServers('outputMode metric_httpevent but httpeventServers not specified for sample %s' % self._sample.name) - - def _sendHTTPEvents(self, payload): - currentreadsize = 0 - stringpayload = "" - totalbytesexpected = 0 - totalbytessent = 0 - numberevents = len(payload) - self.logger.debug("Sending %s events to splunk" % numberevents) - for line in payload: - self.logger.debug("line: %s " % line) - targetline = json.dumps(line) - self.logger.debug("targetline: %s " % targetline) - targetlinesize = len(targetline) - totalbytesexpected += targetlinesize - if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): - stringpayload = stringpayload + targetline - currentreadsize = currentreadsize + targetlinesize - self.logger.debug("stringpayload: %s " % stringpayload) - else: - self.logger.debug("Max size for payload hit, sending to splunk then continuing.") - try: - self._transmitEvents(stringpayload) - totalbytessent += len(stringpayload) - currentreadsize = 0 - stringpayload = targetline - except Exception as e: - self.logger.exception(str(e)) - raise e - else: - try: - totalbytessent += len(stringpayload) - self.logger.debug( - "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % - (totalbytessent, totalbytesexpected)) - self._transmitEvents(stringpayload) - except Exception as e: - self.logger.exception(str(e)) - raise e - - def _transmitEvents(self, payloadstring): - targetServer = [] - self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) - if self.httpeventoutputmode == "mirror": - targetServer = self.serverPool - else: - targetServer.append(random.choice(self.serverPool)) - for server in targetServer: - self.logger.debug("Selected targetServer object: %s" % targetServer) - url = server['url'] - headers = {} - headers['Authorization'] = server['header'] - headers['content-type'] = 'application/json' - try: - payloadsize = len(payloadstring) - # response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append( - self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) - except Exception as e: - self.logger.error("Failed for exception: %s" % e) - self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % - (url, self.lastsourcetype, payloadsize)) - self.logger.debug( - "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) - raise e + super(MetricHTTPEventOutputPlugin, self).__init__(sample, output_counter) def flush(self, q): self.logger.debug("Flush called on metric_httpevent plugin") @@ -286,9 +99,6 @@ def flush(self, q): except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - def load(): """Returns an instance of the plugin""" diff --git a/splunk_eventgen/samples/anomalous.hostname.sample b/splunk_eventgen/samples/anomalous.hostname.sample deleted file mode 100644 index be935ae0..00000000 --- a/splunk_eventgen/samples/anomalous.hostname.sample +++ /dev/null @@ -1 +0,0 @@ -HOST-001 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.ip_address.sample b/splunk_eventgen/samples/anomalous.ip_address.sample deleted file mode 100644 index 5c34a96d..00000000 --- a/splunk_eventgen/samples/anomalous.ip_address.sample +++ /dev/null @@ -1 +0,0 @@ -10.11.36.20 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.mac_address.sample b/splunk_eventgen/samples/anomalous.mac_address.sample deleted file mode 100644 index 4750e3b7..00000000 --- a/splunk_eventgen/samples/anomalous.mac_address.sample +++ /dev/null @@ -1 +0,0 @@ -19:61:3c:3e:20:84 \ No newline at end of file diff --git a/splunk_eventgen/samples/artIDs.sample b/splunk_eventgen/samples/artIDs.sample deleted file mode 100644 index 73029f91..00000000 --- a/splunk_eventgen/samples/artIDs.sample +++ /dev/null @@ -1,21 +0,0 @@ -0019 -0018 -0014 -006 -0026 -0017 -0016 -0015 -0027 -007 -0021 -0011 -0012 -0013 -0020 -005 -0044 -001 -0032 -008 -0022 \ No newline at end of file diff --git a/splunk_eventgen/samples/artists.sample b/splunk_eventgen/samples/artists.sample deleted file mode 100644 index e69de29b..00000000 diff --git a/splunk_eventgen/samples/city.state.zipcode b/splunk_eventgen/samples/city.state.zipcode deleted file mode 100644 index 100bb1dd..00000000 --- a/splunk_eventgen/samples/city.state.zipcode +++ /dev/null @@ -1,29470 +0,0 @@ -Acmar,AL,35004 -Adamsville,AL,35005 -Adger,AL,35006 -Keystone,AL,35007 -New Site,AL,35010 -Alpine,AL,35014 -Arab,AL,35016 -Baileyton,AL,35019 -Bessemer,AL,35020 -Hueytown,AL,35023 -Blountsville,AL,35031 -Bremen,AL,35033 -Brent,AL,35034 -Brierfield,AL,35035 -Calera,AL,35040 -Centreville,AL,35042 -Chelsea,AL,35043 -Coosa Pines,AL,35044 -Clanton,AL,35045 -Cleveland,AL,35049 -Columbiana,AL,35051 -Crane Hill,AL,35053 -Cropwell,AL,35054 -Cullman,AL,35055 -Dolomite,AL,35061 -Dora,AL,35062 -Empire,AL,35063 -Fairfield,AL,35064 -Coalburg,AL,35068 -Gardendale,AL,35071 -Goodwater,AL,35072 -Alden,AL,35073 -Hanceville,AL,35077 -Harpersville,AL,35078 -Hayden,AL,35079 -Helena,AL,35080 -Holly Pond,AL,35083 -Jemison,AL,35085 -Joppa,AL,35087 -Kellyton,AL,35089 -Kimberly,AL,35091 -Leeds,AL,35094 -Lincoln,AL,35096 -Logan,AL,35098 -Mc Calla,AL,35111 -Maylene,AL,35114 -Montevallo,AL,35115 -Morris,AL,35116 -Mount Olive,AL,35117 -Sylvan Springs,AL,35118 -Odenville,AL,35120 -Oneonta,AL,35121 -Indian Springs,AL,35124 -Pell City,AL,35125 -Dixiana,AL,35126 -Pleasant Grove,AL,35127 -Quinton,AL,35130 -Ragland,AL,35131 -Remlap,AL,35133 -Riverside,AL,35135 -Rockford,AL,35136 -Shelby,AL,35143 -Springville,AL,35146 -Sterrett,AL,35147 -Sumiton,AL,35148 -Sylacauga,AL,35150 -Talladega,AL,35160 -Thorsby,AL,35171 -Trafford,AL,35172 -Trussville,AL,35173 -Union Grove,AL,35175 -Vandiver,AL,35176 -Vincent,AL,35178 -Vinemont,AL,35179 -Warrior,AL,35180 -Weogufka,AL,35183 -West Blocton,AL,35184 -Wilsonville,AL,35186 -Woodstock,AL,35188 -Birmingham,AL,35203 -Birmingham,AL,35204 -Birmingham,AL,35205 -Birmingham,AL,35206 -Birmingham,AL,35207 -Birmingham,AL,35208 -Homewood,AL,35209 -Irondale,AL,35210 -Birmingham,AL,35211 -Birmingham,AL,35212 -Crestline Height,AL,35213 -Birmingham,AL,35214 -Center Point,AL,35215 -Vestavia Hills,AL,35216 -Birmingham,AL,35217 -Birmingham,AL,35218 -Birmingham,AL,35221 -Birmingham,AL,35222 -Mountain Brook,AL,35223 -Birmingham,AL,35224 -Bluff Park,AL,35226 -Midfield,AL,35228 -Birmingham,AL,35233 -Birmingham,AL,35234 -Center Point,AL,35235 -Shoal Creek,AL,35242 -Cahaba Heights,AL,35243 -Hoover,AL,35244 -Tuscaloosa,AL,35401 -Holt,AL,35404 -Tuscaloosa,AL,35405 -Tuscaloosa,AL,35406 -Stewart,AL,35441 -Aliceville,AL,35442 -Boligee,AL,35443 -Brookwood,AL,35444 -Buhl,AL,35446 -Carrollton,AL,35447 -Coker,AL,35452 -Cottondale,AL,35453 -Duncanville,AL,35456 -Echola,AL,35457 -Elrod,AL,35458 -Emelle,AL,35459 -Epes,AL,35460 -Ethelsville,AL,35461 -Eutaw,AL,35462 -Fosters,AL,35463 -Gainesville,AL,35464 -Gordo,AL,35466 -Knoxville,AL,35469 -Coatopa,AL,35470 -Cypress,AL,35474 -Northport,AL,35476 -Ralph,AL,35480 -Reform,AL,35481 -Vance,AL,35490 -Jasper,AL,35501 -Addison,AL,35540 -Arley,AL,35541 -Bankston,AL,35542 -Bear Creek,AL,35543 -Beaverton,AL,35544 -Berry,AL,35546 -Brilliant,AL,35548 -Carbon Hill,AL,35549 -Cordova,AL,35550 -Detroit,AL,35552 -Double Springs,AL,35553 -Eldridge,AL,35554 -Fayette,AL,35555 -Guin,AL,35563 -Hackleburg,AL,35564 -Haleyville,AL,35565 -Hamilton,AL,35570 -Hodges,AL,35571 -Houston,AL,35572 -Kennedy,AL,35574 -Lynn,AL,35575 -Millport,AL,35576 -Nauvoo,AL,35578 -Oakman,AL,35579 -Parrish,AL,35580 -Phil Campbell,AL,35581 -Red Bay,AL,35582 -Spruce Pine,AL,35585 -Sulligent,AL,35586 -Townley,AL,35587 -Vernon,AL,35592 -Vina,AL,35593 -Winfield,AL,35594 -Decatur,AL,35601 -Decatur,AL,35603 -Anderson,AL,35610 -Athens,AL,35611 -Cherokee,AL,35616 -Courtland,AL,35618 -Danville,AL,35619 -Elkmont,AL,35620 -Eva,AL,35621 -Falkville,AL,35622 -Florence,AL,35630 -Florence,AL,35633 -Hartselle,AL,35640 -Hillsboro,AL,35643 -Killen,AL,35645 -Leighton,AL,35646 -Lester,AL,35647 -Lexington,AL,35648 -Moulton,AL,35650 -Mount Hope,AL,35651 -Rogersville,AL,35652 -Russellville,AL,35653 -Sheffield,AL,35660 -Muscle Shoals,AL,35661 -Somerville,AL,35670 -Tanner,AL,35671 -Town Creek,AL,35672 -Trinity,AL,35673 -Tuscumbia,AL,35674 -Waterloo,AL,35677 -Ardmore,AL,35739 -Bridgeport,AL,35740 -Brownsboro,AL,35741 -Dutton,AL,35744 -Estillfork,AL,35745 -Fackler,AL,35746 -Grant,AL,35747 -Gurley,AL,35748 -Harvest,AL,35749 -Hazel Green,AL,35750 -Hollytree,AL,35751 -Hollywood,AL,35752 -Laceys Spring,AL,35754 -Langston,AL,35755 -Triana,AL,35758 -Meridianville,AL,35759 -New Hope,AL,35760 -New Market,AL,35761 -Big Cove,AL,35763 -Paint Rock,AL,35764 -Pisgah,AL,35765 -Princeton,AL,35766 -Hytop,AL,35768 -Section,AL,35771 -Stevenson,AL,35772 -Toney,AL,35773 -Trenton,AL,35774 -Valhermoso Sprin,AL,35775 -Woodville,AL,35776 -Huntsville,AL,35801 -Huntsville,AL,35802 -Huntsville,AL,35803 -Huntsville,AL,35805 -Huntsville,AL,35806 -Huntsville,AL,35808 -Huntsville,AL,35810 -Huntsville,AL,35811 -Huntsville,AL,35816 -Huntsville,AL,35824 -Southside,AL,35901 -Hokes Bluff,AL,35903 -Gadsden,AL,35904 -Glencoe,AL,35905 -Albertville,AL,35950 -Snead,AL,35952 -Ashville,AL,35953 -Attalla,AL,35954 -Boaz,AL,35957 -Bryant,AL,35958 -Cedar Bluff,AL,35959 -Centre,AL,35960 -Collinsville,AL,35961 -Crossville,AL,35962 -Dawson,AL,35963 -Flat Rock,AL,35966 -Fort Payne,AL,35967 -Fyffe,AL,35971 -Gallant,AL,35972 -Gaylesville,AL,35973 -Geraldine,AL,35974 -Groveoak,AL,35975 -Guntersville,AL,35976 -Henagar,AL,35978 -Higdon,AL,35979 -Horton,AL,35980 -Ider,AL,35981 -Leesburg,AL,35983 -Mentone,AL,35984 -Rainsville,AL,35986 -Steele,AL,35987 -Sylvania,AL,35988 -Valley Head,AL,35989 -Autaugaville,AL,36003 -Eufaula,AL,36004 -Banks,AL,36005 -Billingsley,AL,36006 -Brantley,AL,36009 -Brundidge,AL,36010 -Cecil,AL,36013 -Clayton,AL,36016 -Clio,AL,36017 -Deatsville,AL,36022 -Eclectic,AL,36024 -Elmore,AL,36025 -Equality,AL,36026 -Eufaula,AL,36027 -Dozier,AL,36028 -Fitzpatrick,AL,36029 -Forest Home,AL,36030 -Fort Davis,AL,36031 -Fort Deposit,AL,36032 -Georgiana,AL,36033 -Glenwood,AL,36034 -Goshen,AL,36035 -Grady,AL,36036 -Greenville,AL,36037 -Gantt,AL,36038 -Hardaway,AL,36039 -Hayneville,AL,36040 -Highland Home,AL,36041 -Honoraville,AL,36042 -Hope Hull,AL,36043 -Lapine,AL,36046 -Letohatchee,AL,36047 -Louisville,AL,36048 -Luverne,AL,36049 -Marbury,AL,36051 -Mathews,AL,36052 -Midway,AL,36053 -Millbrook,AL,36054 -Perote,AL,36061 -Pike Road,AL,36064 -Prattville,AL,36066 -Prattville,AL,36067 -Ramer,AL,36069 -Rutledge,AL,36071 -Shorter,AL,36075 -Tallassee,AL,36078 -Titus,AL,36080 -Troy,AL,36081 -Tuskegee,AL,36083 -Tuskegee Institu,AL,36088 -Union Springs,AL,36089 -Verbena,AL,36091 -Wetumpka,AL,36092 -Montgomery,AL,36104 -Montgomery,AL,36105 -Montgomery,AL,36106 -Montgomery,AL,36107 -Montgomery,AL,36108 -Montgomery,AL,36109 -Montgomery,AL,36110 -Montgomery,AL,36111 -Maxwell A F B,AL,36113 -Gunter Afs,AL,36115 -Montgomery,AL,36116 -Montgomery,AL,36117 -Anniston,AL,36201 -Oxford,AL,36203 -Fort Mc Clellan,AL,36205 -Anniston,AL,36206 -Alexandria,AL,36250 -Ashland,AL,36251 -Cragford,AL,36255 -Daviston,AL,36256 -Delta,AL,36258 -Eastaboga,AL,36260 -Fruithurst,AL,36262 -Graham,AL,36263 -Heflin,AL,36264 -Jacksonville,AL,36265 -Lineville,AL,36266 -Millerville,AL,36267 -Munford,AL,36268 -Muscadine,AL,36269 -Newell,AL,36270 -Ohatchee,AL,36271 -Piedmont,AL,36272 -Ranburne,AL,36273 -Rock Mills,AL,36274 -Wadley,AL,36276 -Weaver,AL,36277 -Wedowee,AL,36278 -Wellington,AL,36279 -Woodland,AL,36280 -Taylor,AL,36301 -Napier Field,AL,36303 -Abbeville,AL,36310 -Ariton,AL,36311 -Ashford,AL,36312 -Black,AL,36314 -Chancellor,AL,36316 -Clopton,AL,36317 -Coffee Springs,AL,36318 -Columbia,AL,36319 -Cottonwood,AL,36320 -Daleville,AL,36322 -Elba,AL,36323 -Enterprise,AL,36330 -Geneva,AL,36340 -Gordon,AL,36343 -Hartford,AL,36344 -Headland,AL,36345 -Jack,AL,36346 -Malvern,AL,36349 -Midland City,AL,36350 -New Brockton,AL,36351 -Newton,AL,36352 -Newville,AL,36353 -Ozark,AL,36360 -Fort Rucker,AL,36362 -Pansey,AL,36370 -Shorterville,AL,36373 -Skipperville,AL,36374 -Slocomb,AL,36375 -Webb,AL,36376 -Evergreen,AL,36401 -Allen,AL,36419 -Andalusia,AL,36420 -Beatrice,AL,36425 -East Brewton,AL,36426 -Castleberry,AL,36432 -Coy,AL,36435 -Dickinson,AL,36436 -Flomaton,AL,36441 -Florala,AL,36442 -Franklin,AL,36444 -Frisco City,AL,36445 -Fulton,AL,36446 -Grove Hill,AL,36451 -Kinston,AL,36453 -Lenox,AL,36454 -Mc Kenzie,AL,36456 -Monroeville,AL,36460 -Opp,AL,36467 -Peterman,AL,36471 -Range,AL,36473 -Red Level,AL,36474 -Repton,AL,36475 -Samson,AL,36477 -Uriah,AL,36480 -Vredenburgh,AL,36481 -Whatley,AL,36482 -Wing,AL,36483 -Atmore,AL,36502 -Axis,AL,36505 -Bay Minette,AL,36507 -Bayou La Batre,AL,36509 -Bigbee,AL,36510 -Bon Secour,AL,36511 -Carlton,AL,36515 -Chatom,AL,36518 -Chunchula,AL,36521 -Citronelle,AL,36522 -Coden,AL,36523 -Coffeeville,AL,36524 -Creola,AL,36525 -Daphne,AL,36526 -Spanish Fort,AL,36527 -Dauphin Island,AL,36528 -Deer Park,AL,36529 -Elberta,AL,36530 -Fairhope,AL,36532 -Foley,AL,36535 -Frankville,AL,36538 -Fruitdale,AL,36539 -Gainestown,AL,36540 -Grand Bay,AL,36541 -Fort Morgan,AL,36542 -Irvington,AL,36544 -Jackson,AL,36545 -Leroy,AL,36548 -Lillian,AL,36549 -Little River,AL,36550 -Loxley,AL,36551 -Mc Intosh,AL,36553 -Magnolia Springs,AL,36555 -Millry,AL,36558 -Mount Vernon,AL,36560 -Orange Beach,AL,36561 -Perdido,AL,36562 -Robertsdale,AL,36567 -Saint Stephens,AL,36569 -Salitpa,AL,36570 -Saraland,AL,36571 -Satsuma,AL,36572 -Seminole,AL,36574 -Semmes,AL,36575 -Silverhill,AL,36576 -Stockton,AL,36579 -Summerdale,AL,36580 -Theodore,AL,36582 -Tibbie,AL,36583 -Vinegar Bend,AL,36584 -Wagarville,AL,36585 -Walker Springs,AL,36586 -Wilmer,AL,36587 -Mobile,AL,36602 -Mobile,AL,36603 -Mobile,AL,36604 -Mobile,AL,36605 -Mobile,AL,36606 -Mobile,AL,36607 -Mobile,AL,36608 -Mobile,AL,36609 -Prichard,AL,36610 -Chickasaw,AL,36611 -Mobile,AL,36612 -Eight Mile,AL,36613 -Brookley Field,AL,36615 -Mobile,AL,36617 -Mobile,AL,36618 -Mobile,AL,36619 -Mobile,AL,36693 -Mobile,AL,36695 -Selma,AL,36701 -Selma,AL,36703 -Alberta,AL,36720 -Arlington,AL,36722 -Camden,AL,36726 -Campbell,AL,36727 -Catherine,AL,36728 -Demopolis,AL,36732 -Dixons Mills,AL,36736 -Faunsdale,AL,36738 -Forkland,AL,36740 -Gallion,AL,36742 -Greensboro,AL,36744 -Linden,AL,36748 -Jones,AL,36749 -Maplesville,AL,36750 -Lower Peach Tree,AL,36751 -Burkville,AL,36752 -Magnolia,AL,36754 -Marion,AL,36756 -Plantersville,AL,36758 -Marion Junction,AL,36759 -Boys Ranch,AL,36761 -Morvin,AL,36762 -Newbern,AL,36765 -Orrville,AL,36767 -Pine Apple,AL,36768 -Pine Hill,AL,36769 -Prairie,AL,36771 -Safford,AL,36773 -Sardis,AL,36775 -Sawyerville,AL,36776 -Sprott,AL,36779 -Sweet Water,AL,36782 -Thomaston,AL,36783 -Thomasville,AL,36784 -Benton,AL,36785 -Uniontown,AL,36786 -Stanton,AL,36790 -Randolph,AL,36792 -Lawley,AL,36793 -Opelika,AL,36801 -Auburn,AL,36830 -Camp Hill,AL,36850 -Cusseta,AL,36852 -Dadeville,AL,36853 -Valley,AL,36854 -Five Points,AL,36855 -Hatchechubbee,AL,36858 -Hurtsboro,AL,36860 -Jacksons Gap,AL,36861 -Lafayette,AL,36862 -Lanett,AL,36863 -Notasulga,AL,36866 -Phenix City,AL,36867 -Phenix City,AL,36869 -Pittsview,AL,36871 -Salem,AL,36874 -Seale,AL,36875 -Smiths,AL,36877 -Waverly,AL,36879 -Butler,AL,36904 -Cuba,AL,36907 -Gilbertown,AL,36908 -Jachin,AL,36910 -Lisman,AL,36912 -Needham,AL,36915 -Pennington,AL,36916 -Silas,AL,36919 -Toxey,AL,36921 -Ward,AL,36922 -York,AL,36925 -98791,AK,98791 -Anchorage,AK,99501 -Anchorage,AK,99502 -Anchorage,AK,99503 -Anchorage,AK,99504 -Fort Richardson,AK,99505 -Elmendorf Afb,AK,99506 -Anchorage,AK,99507 -Anchorage,AK,99508 -Anchorage,AK,99515 -Anchorage,AK,99516 -Anchorage,AK,99517 -Anchorage,AK,99518 -Port Heiden,AK,99549 -Akiachak,AK,99551 -Akiak,AK,99552 -Akutan,AK,99553 -Alakanuk,AK,99554 -Aleknagik,AK,99555 -Nikolaevsk,AK,99556 -Chuathbaluk,AK,99557 -Anvik,AK,99558 -Atmautluak,AK,99559 -Chefornak,AK,99561 -Chevak,AK,99563 -Chignik,AK,99564 -Chignik Lagoon,AK,99565 -Chugiak,AK,99567 -Clam Gulch,AK,99568 -Clarks Point,AK,99569 -Nelson Lagoon,AK,99571 -Cooper Landing,AK,99572 -Copper Center,AK,99573 -Chenega Bay,AK,99574 -Crooked Creek,AK,99575 -Koliganek,AK,99576 -Eagle River,AK,99577 -Eek,AK,99578 -Egegik,AK,99579 -Ekwok,AK,99580 -Emmonak,AK,99581 -False Pass,AK,99583 -Marshall,AK,99585 -Slana,AK,99586 -Glennallen,AK,99588 -Goodnews Bay,AK,99589 -Grayling,AK,99590 -Saint George Isl,AK,99591 -Holy Cross,AK,99602 -Port Graham,AK,99603 -Hooper Bay,AK,99604 -Kokhanok,AK,99606 -Kalskag,AK,99607 -Kasilof,AK,99610 -Kenai,AK,99611 -King Cove,AK,99612 -Igiugig,AK,99613 -Kipnuk,AK,99614 -Akhiok,AK,99615 -Kotlik,AK,99620 -Kwethluk,AK,99621 -Kwigillingok,AK,99622 -Levelock,AK,99625 -Lower Kalskag,AK,99626 -Mc Grath,AK,99627 -Manokotak,AK,99628 -Mekoryuk,AK,99630 -Moose Pass,AK,99631 -Mountain Village,AK,99632 -Naknek,AK,99633 -Napakiak,AK,99634 -New Stuyahok,AK,99636 -Nikolski,AK,99638 -Ninilchik,AK,99639 -Nondalton,AK,99640 -Butte,AK,99645 -Pedro Bay,AK,99647 -Perryville,AK,99648 -Pilot Point,AK,99649 -Pilot Station,AK,99650 -Platinum,AK,99651 -Port Alsworth,AK,99653 -Wasilla,AK,99654 -Quinhagak,AK,99655 -Red Devil,AK,99656 -Russian Mission,AK,99657 -Saint Marys,AK,99658 -Saint Michael,AK,99659 -Saint Paul Islan,AK,99660 -Sand Point,AK,99661 -Scammon Bay,AK,99662 -Seward,AK,99664 -Shageluk,AK,99665 -Sleetmute,AK,99668 -Soldotna,AK,99669 -South Naknek,AK,99670 -Stebbins,AK,99671 -Sterling,AK,99672 -Talkeetna,AK,99676 -Tuluksak,AK,99679 -Tununak,AK,99681 -Tyonek,AK,99682 -Trapper Creek,AK,99683 -Unalakleet,AK,99684 -Unalaska,AK,99685 -Valdez,AK,99686 -Wasilla,AK,99687 -Willow,AK,99688 -Yakutat,AK,99689 -Nikolai,AK,99691 -Dutch Harbor,AK,99692 -Coldfoot,AK,99701 -Eielson Afb,AK,99702 -Fort Wainwright,AK,99703 -Clear,AK,99704 -North Pole,AK,99705 -Fairbanks,AK,99709 -Fairbanks,AK,99712 -Salcha,AK,99714 -Allakaket,AK,99720 -Anaktuvuk Pass,AK,99721 -Arctic Village,AK,99722 -Barrow,AK,99723 -Beaver,AK,99724 -Bettles Field,AK,99726 -Buckland,AK,99727 -Cantwell,AK,99729 -Central,AK,99730 -Circle,AK,99733 -Prudhoe Bay,AK,99734 -Deering,AK,99736 -Dot Lake,AK,99737 -Elim,AK,99739 -Fort Yukon,AK,99740 -Galena,AK,99741 -Gambell,AK,99742 -Healy,AK,99743 -Anderson,AK,99744 -Hughes,AK,99745 -Huslia,AK,99746 -Kaktovik,AK,99747 -Kaltag,AK,99748 -Kiana,AK,99749 -Kivalina,AK,99750 -Kobuk,AK,99751 -Kotzebue,AK,99752 -Koyuk,AK,99753 -Denali National,AK,99755 -Manley Hot Sprin,AK,99756 -Lake Minchumina,AK,99757 -Minto,AK,99758 -Point Lay,AK,99759 -Nenana,AK,99760 -Noatak,AK,99761 -Golovin,AK,99762 -Noorvik,AK,99763 -Nulato,AK,99765 -Point Hope,AK,99766 -Rampart,AK,99767 -Ruby,AK,99768 -Savoonga,AK,99769 -Selawik,AK,99770 -Shaktoolik,AK,99771 -Shishmaref,AK,99772 -Shungnak,AK,99773 -Stevens Village,AK,99774 -Tanana,AK,99777 -Teller,AK,99778 -Border,AK,99780 -Venetie,AK,99781 -Wainwright,AK,99782 -Wales,AK,99783 -White Mountain,AK,99784 -Brevig Mission,AK,99785 -Ambler,AK,99786 -Chalkyitsik,AK,99788 -Nuiqsut,AK,99789 -Juneau,AK,99801 -Angoon,AK,99820 -Douglas,AK,99824 -Gustavus,AK,99826 -Haines,AK,99827 -Hoonah,AK,99829 -Petersburg,AK,99833 -Sitka,AK,99835 -Skagway,AK,99840 -Ketchikan,AK,99901 -Thorne Bay,AK,99919 -Craig,AK,99921 -Hydaburg,AK,99922 -Hyder,AK,99923 -Klawock,AK,99925 -Metlakatla,AK,99926 -Point Baker,AK,99927 -Wrangell,AK,99929 -Ketchikan,AK,99950 -Phoenix,AZ,85003 -Phoenix,AZ,85004 -Phoenix,AZ,85006 -Phoenix,AZ,85007 -Phoenix,AZ,85008 -Phoenix,AZ,85009 -Phoenix,AZ,85012 -Phoenix,AZ,85013 -Phoenix,AZ,85014 -Phoenix,AZ,85015 -Phoenix,AZ,85016 -Phoenix,AZ,85017 -Phoenix,AZ,85018 -Phoenix,AZ,85019 -Phoenix,AZ,85020 -Phoenix,AZ,85021 -Phoenix,AZ,85022 -Phoenix,AZ,85023 -Phoenix,AZ,85024 -New River Stage,AZ,85027 -Phoenix,AZ,85028 -Phoenix,AZ,85029 -Phoenix,AZ,85031 -Phoenix,AZ,85032 -Phoenix,AZ,85033 -Phoenix,AZ,85034 -Phoenix,AZ,85035 -Phoenix,AZ,85037 -Phoenix,AZ,85039 -Phoenix,AZ,85040 -Phoenix,AZ,85041 -Phoenix,AZ,85043 -Phoenix,AZ,85044 -Phoenix,AZ,85051 -Mesa,AZ,85201 -Mesa,AZ,85202 -Mesa,AZ,85203 -Mesa,AZ,85204 -Mesa,AZ,85205 -Mesa,AZ,85206 -Mesa,AZ,85207 -Mesa,AZ,85208 -Mesa,AZ,85210 -Mesa,AZ,85213 -Gold Canyon,AZ,85219 -Apache Junction,AZ,85220 -Eleven Mile Corn,AZ,85222 -Chandler,AZ,85224 -Chandler,AZ,85225 -Chandler,AZ,85226 -Coolidge,AZ,85228 -Eloy,AZ,85231 -Florence,AZ,85232 -Gilbert,AZ,85234 -Higley,AZ,85236 -Kearny,AZ,85237 -Mobile,AZ,85239 -Williams Afb,AZ,85240 -Arizona Boys Ran,AZ,85242 -Sacaton,AZ,85247 -Sun Lakes,AZ,85248 -Chandler,AZ,85249 -Scottsdale,AZ,85250 -Scottsdale,AZ,85251 -Paradise Valley,AZ,85253 -Scottsdale,AZ,85254 -Scottsdale,AZ,85255 -Scottsdale,AZ,85256 -Scottsdale,AZ,85257 -Scottsdale,AZ,85258 -Scottsdale,AZ,85259 -Scottsdale,AZ,85260 -Scottsdale,AZ,85262 -Fort Mcdowell,AZ,85264 -Fountain Hills,AZ,85268 -Stanfield,AZ,85272 -Superior,AZ,85273 -Tempe,AZ,85281 -Tempe,AZ,85282 -Tempe,AZ,85283 -Tempe,AZ,85284 -Winkelman,AZ,85292 -Glendale,AZ,85301 -Glendale,AZ,85302 -Glendale,AZ,85303 -Glendale,AZ,85304 -Glendale,AZ,85305 -Glendale,AZ,85306 -Luke Afb,AZ,85307 -Glendale,AZ,85308 -Luke Afb,AZ,85309 -Glendale,AZ,85310 -Why,AZ,85321 -Arlington,AZ,85322 -Avondale,AZ,85323 -Rock Springs,AZ,85324 -Buckeye,AZ,85326 -Cibola,AZ,85328 -Cave Creek,AZ,85331 -Congress,AZ,85332 -Dateland,AZ,85333 -El Mirage,AZ,85335 -Gila Bend,AZ,85337 -Goodyear,AZ,85338 -Laveen,AZ,85339 -Litchfield Park,AZ,85340 -Morristown,AZ,85342 -Palo Verde,AZ,85343 -Empire Landing,AZ,85344 -Peoria,AZ,85345 -Roll,AZ,85347 -Salome,AZ,85348 -Somerton,AZ,85350 -Sun City,AZ,85351 -Tolleson,AZ,85353 -Tonopah,AZ,85354 -Waddell,AZ,85355 -Wellton,AZ,85356 -Wittmann,AZ,85361 -Yarnell,AZ,85362 -Youngtown,AZ,85363 -Yuma,AZ,85364 -Yuma Proving Gro,AZ,85365 -Sun City,AZ,85373 -Surprise,AZ,85374 -Sun City West,AZ,85375 -Peoria,AZ,85381 -Peoria,AZ,85382 -Wickenburg,AZ,85390 -Globe,AZ,85501 -Bylas,AZ,85530 -Clifton,AZ,85533 -Franklin,AZ,85534 -Eden,AZ,85535 -Miami,AZ,85539 -Morenci,AZ,85540 -Payson,AZ,85541 -Peridot,AZ,85542 -Pima,AZ,85543 -Strawberry,AZ,85544 -Roosevelt,AZ,85545 -Safford,AZ,85546 -San Carlos,AZ,85550 -Thatcher,AZ,85552 -Benson,AZ,85602 -Bisbee,AZ,85603 -Cochise,AZ,85606 -Douglas,AZ,85607 -Elfrida,AZ,85610 -Elgin,AZ,85611 -Fort Huachuca,AZ,85613 -Green Valley,AZ,85614 -Hereford,AZ,85615 -Huachuca City,AZ,85616 -Mc Neal,AZ,85617 -Mammoth,AZ,85618 -Nogales,AZ,85621 -Oracle,AZ,85623 -Patagonia,AZ,85624 -Pearce,AZ,85625 -Sahuarita,AZ,85629 -Saint David,AZ,85630 -San Manuel,AZ,85631 -Portal,AZ,85632 -Pisinemo,AZ,85634 -Sierra Vista,AZ,85635 -Sonoita,AZ,85637 -Tombstone,AZ,85638 -Amado,AZ,85640 -Vail,AZ,85641 -Willcox,AZ,85643 -Amado,AZ,85645 -Marana,AZ,85653 -Tucson,AZ,85701 -Casas Adobes,AZ,85704 -Tucson,AZ,85705 -Tucson,AZ,85706 -Tucson,AZ,85708 -Tucson,AZ,85710 -Tucson,AZ,85711 -Tucson,AZ,85712 -Tucson,AZ,85713 -Tucson,AZ,85714 -Tucson,AZ,85715 -Tucson,AZ,85716 -Tucson,AZ,85718 -Tucson,AZ,85719 -Tucson,AZ,85730 -Tucson,AZ,85735 -Tucson,AZ,85736 -Oro Valley,AZ,85737 -Tucson,AZ,85741 -Tucson,AZ,85743 -Tucson,AZ,85745 -Tucson,AZ,85746 -Tucson,AZ,85747 -Tucson,AZ,85748 -Tucson,AZ,85749 -Show Low,AZ,85901 -Alpine,AZ,85920 -Blue,AZ,85922 -Concho,AZ,85924 -Eagar,AZ,85925 -Heber,AZ,85928 -Lakeside,AZ,85929 -Pinetop,AZ,85935 -Saint Johns,AZ,85936 -Snowflake,AZ,85937 -Springerville,AZ,85938 -Flagstaff,AZ,86001 -Flagstaff,AZ,86004 -Colorado City,AZ,86021 -Fredonia,AZ,86022 -Holbrook,AZ,86025 -Hotevilla,AZ,86030 -Kayenta,AZ,86033 -Keams Canyon,AZ,86034 -Leupp,AZ,86035 -Marble Canyon,AZ,86036 -Mormon Lake,AZ,86038 -Kykotsmovi Villa,AZ,86039 -Greenehaven,AZ,86040 -Polacca,AZ,86042 -Second Mesa,AZ,86043 -Tonalea,AZ,86044 -Tuba City,AZ,86045 -Williams,AZ,86046 -Winslow,AZ,86047 -Kaibito,AZ,86053 -Shonto,AZ,86054 -Prescott,AZ,86301 -Groom Creek,AZ,86303 -Prescott Valley,AZ,86314 -Ash Fork,AZ,86320 -Bagdad,AZ,86321 -Camp Verde,AZ,86322 -Chino Valley,AZ,86323 -Clarkdale,AZ,86324 -Cornville,AZ,86325 -Cottonwood,AZ,86326 -Dewey,AZ,86327 -Kirkland,AZ,86332 -Mayer,AZ,86333 -Paulden,AZ,86334 -Rimrock,AZ,86335 -Sedona,AZ,86336 -Seligman,AZ,86337 -Crown King,AZ,86343 -Kingman,AZ,86401 -Desert Hills,AZ,86403 -Hualapai,AZ,86412 -Bullhead City,AZ,86430 -Littlefield,AZ,86432 -Peach Springs,AZ,86434 -Supai,AZ,86435 -Topock,AZ,86436 -Mohave Valley,AZ,86440 -Dolan Springs,AZ,86441 -Bullhead City,AZ,86442 -Meadview,AZ,86444 -Chambers,AZ,86502 -Chinle,AZ,86503 -Ganado,AZ,86505 -Lukachukai,AZ,86507 -Navajo,AZ,86509 -Pinon,AZ,86510 -Teec Nos Pos,AZ,86514 -Dennehotso,AZ,86535 -Many Farms,AZ,86538 -Tsaile,AZ,86556 -North Cedar,AR,71601 -Dollarway,AR,71602 -Pine Bluff,AR,71603 -Arkansas City,AR,71630 -Banks,AR,71631 -North,AR,71635 -Dermott,AR,71638 -Dumas,AR,71639 -Eudora,AR,71640 -Fountain Hill,AR,71642 -Gould,AR,71643 -Tamo,AR,71644 -Hamburg,AR,71646 -Ingalls,AR,71647 -Jersey,AR,71651 -Kingsland,AR,71652 -Lake Village,AR,71653 -Mc Gehee,AR,71654 -Monticello,AR,71655 -Montrose,AR,71658 -New Edinburg,AR,71660 -Parkdale,AR,71661 -Pickens,AR,71662 -Portland,AR,71663 -Rison,AR,71665 -Rohwer,AR,71666 -Star City,AR,71667 -Reed,AR,71670 -Warren,AR,71671 -Watson,AR,71674 -Wilmar,AR,71675 -Wilmot,AR,71676 -Winchester,AR,71677 -Yorktown,AR,71678 -East Camden,AR,71701 -Bearden,AR,71720 -Bluff City,AR,71722 -Carthage,AR,71725 -Reader,AR,71726 -El Dorado,AR,71730 -Emerson,AR,71740 -Fordyce,AR,71742 -Gurdon,AR,71743 -Hampton,AR,71744 -Harrell,AR,71745 -Huttig,AR,71747 -Ivan,AR,71748 -Junction City,AR,71749 -Louann,AR,71751 -Mc Neil,AR,71752 -Magnolia,AR,71753 -Mount Holly,AR,71758 -Norphlet,AR,71759 -Smackover,AR,71762 -Manning,AR,71763 -Stephens,AR,71764 -Strong,AR,71765 -Thornton,AR,71766 -Tinsman,AR,71767 -Village,AR,71769 -Waldo,AR,71770 -Perrytown,AR,71801 -Ashdown,AR,71822 -Blevins,AR,71825 -Bradley,AR,71826 -Buckner,AR,71827 -Cale,AR,71828 -Columbus,AR,71831 -De Queen,AR,71832 -Dierks,AR,71833 -Doddridge,AR,71834 -Emmet,AR,71835 -Foreman,AR,71836 -Fouke,AR,71837 -Fulton,AR,71838 -Garland City,AR,71839 -Gillham,AR,71841 -Horatio,AR,71842 -Lewisville,AR,71845 -Lockesburg,AR,71846 -Mc Caskill,AR,71847 -Mineral Springs,AR,71851 -Nashville,AR,71852 -Ogden,AR,71853 -Ozan,AR,71855 -Prescott,AR,71857 -Rosston,AR,71858 -Saratoga,AR,71859 -Stamps,AR,71860 -Taylor,AR,71861 -Washington,AR,71862 -Willisville,AR,71864 -Wilton,AR,71865 -Winthrop,AR,71866 -Lake Catherine,AR,71901 -Hot Springs Vill,AR,71909 -Lake Hamilton,AR,71913 -Amity,AR,71921 -Antoine,AR,71922 -Arkadelphia,AR,71923 -Bismarck,AR,71929 -Blakely,AR,71931 -Bonnerdale,AR,71933 -Caddo Gap,AR,71935 -Cove,AR,71937 -Delight,AR,71940 -Donaldson,AR,71941 -Friendship,AR,71942 -Glenwood,AR,71943 -Grannis,AR,71944 -Hatfield,AR,71945 -Jessieville,AR,71949 -Kirby,AR,71950 -Langley,AR,71952 -Mena,AR,71953 -Buckville,AR,71956 -Mount Ida,AR,71957 -Murfreesboro,AR,71958 -Newhope,AR,71959 -Norman,AR,71960 -Oden,AR,71961 -Okolona,AR,71962 -Pearcy,AR,71964 -Pencil Bluff,AR,71965 -Royal,AR,71968 -Sims,AR,71969 -Story,AR,71970 -Umpire,AR,71971 -Vandervoort,AR,71972 -Wickes,AR,71973 -Adona,AR,72001 -Alexander,AR,72002 -Almyra,AR,72003 -Altheimer,AR,72004 -Amagon,AR,72005 -Augusta,AR,72006 -Austin,AR,72007 -Bald Knob,AR,72010 -Bauxite,AR,72011 -Beebe,AR,72012 -Bee Branch,AR,72013 -Beedeville,AR,72014 -Benton,AR,72015 -Bigelow,AR,72016 -Biscoe,AR,72017 -Bradford,AR,72020 -Brinkley,AR,72021 -Bryant,AR,72022 -Cabot,AR,72023 -Carlisle,AR,72024 -Casa,AR,72025 -Casscoe,AR,72026 -Center Ridge,AR,72027 -Choctaw,AR,72028 -Clarendon,AR,72029 -Cleveland,AR,72030 -Clinton,AR,72031 -Conway,AR,72032 -Cotton Plant,AR,72036 -Crocketts Bluff,AR,72038 -Twin Groves,AR,72039 -Des Arc,AR,72040 -De Valls Bluff,AR,72041 -De Witt,AR,72042 -Edgemont,AR,72044 -El Paso,AR,72045 -England,AR,72046 -Enola,AR,72047 -Ethel,AR,72048 -Fox,AR,72051 -Garner,AR,72052 -Gillett,AR,72055 -Grapevine,AR,72057 -Greenbrier,AR,72058 -Griffithville,AR,72060 -Guy,AR,72061 -Hattieville,AR,72063 -Hazen,AR,72064 -Hensley,AR,72065 -Hickory Plains,AR,72066 -Greers Ferry,AR,72067 -Higginson,AR,72068 -Holly Grove,AR,72069 -Houston,AR,72070 -Humnoke,AR,72072 -Humphrey,AR,72073 -Gravel Ridge,AR,72076 -Jefferson,AR,72079 -Jerusalem,AR,72080 -Judsonia,AR,72081 -Kensett,AR,72082 -Keo,AR,72083 -Leola,AR,72084 -Lonoke,AR,72086 -Lonsdale,AR,72087 -Mc Crory,AR,72101 -Mc Rae,AR,72102 -Shannon Hills,AR,72103 -Malvern,AR,72104 -Jones Mills,AR,72105 -Mayflower,AR,72106 -Morrilton,AR,72110 -Mount Vernon,AR,72111 -Newport,AR,72112 -Maumelle,AR,72113 -North Little Roc,AR,72114 -Sherwood,AR,72116 -North Little Roc,AR,72117 -Camp Joseph T Ro,AR,72118 -North Little Roc,AR,72120 -Pangburn,AR,72121 -Paron,AR,72122 -Perry,AR,72125 -Perryville,AR,72126 -Plumerville,AR,72127 -Poyen,AR,72128 -Prattsville,AR,72129 -Prim,AR,72130 -Quitman,AR,72131 -Redfield,AR,72132 -Reydell,AR,72133 -Roe,AR,72134 -Roland,AR,72135 -Romance,AR,72136 -Rose Bud,AR,72137 -Saint Charles,AR,72140 -Scotland,AR,72141 -Scott,AR,72142 -Georgetown,AR,72143 -Sheridan,AR,72150 -Sherrill,AR,72152 -Shirley,AR,72153 -Solgohachia,AR,72156 -Springfield,AR,72157 -Stuttgart,AR,72160 -Thida,AR,72165 -Tichnor,AR,72166 -Traskwood,AR,72167 -Tucker,AR,72168 -Ulm,AR,72170 -Vilonia,AR,72173 -Wabbaseka,AR,72175 -Ward,AR,72176 -Wilburn,AR,72179 -Wooster,AR,72181 -Wright,AR,72182 -Little Rock,AR,72201 -Little Rock,AR,72202 -Little Rock,AR,72204 -Little Rock,AR,72205 -Little Rock,AR,72206 -Little Rock,AR,72207 -Ferndale,AR,72208 -Little Rock,AR,72209 -Little Rock,AR,72210 -Little Rock,AR,72211 -Little Rock,AR,72212 -West Memphis,AR,72301 -Armorel,AR,72310 -Aubrey,AR,72311 -Bassett,AR,72313 -Birdeye,AR,72314 -Blytheville A F,AR,72315 -Brickeys,AR,72320 -Burdette,AR,72321 -Cherry Valley,AR,72324 -Colt,AR,72326 -Crawfordsville,AR,72327 -Crumrod,AR,72328 -Driver,AR,72329 -Dyess,AR,72330 -Earle,AR,72331 -Edmondson,AR,72332 -Elaine,AR,72333 -Forrest City,AR,72335 -Frenchmans Bayou,AR,72338 -Gilmore,AR,72339 -Goodwin,AR,72340 -Haynes,AR,72341 -Helena,AR,72342 -Heth,AR,72346 -Hickory Ridge,AR,72347 -Hughes,AR,72348 -Joiner,AR,72350 -Keiser,AR,72351 -Lepanto,AR,72354 -Lexa,AR,72355 -Luxora,AR,72358 -Marianna,AR,72360 -Marion,AR,72364 -Marked Tree,AR,72365 -Marvell,AR,72366 -Mellwood,AR,72367 -Moro,AR,72368 -Oneida,AR,72369 -Osceola,AR,72370 -Palestine,AR,72372 -Parkin,AR,72373 -Poplar Grove,AR,72374 -Proctor,AR,72376 -Snow Lake,AR,72379 -Tomato,AR,72381 -Turrell,AR,72384 -Tyronza,AR,72386 -West Helena,AR,72390 -Wheatley,AR,72392 -Widener,AR,72394 -Wilson,AR,72395 -Wynne,AR,72396 -Fair Oaks,AR,72397 -Jonesboro,AR,72401 -Alicia,AR,72410 -Bay,AR,72411 -Beech Grove,AR,72412 -Biggers,AR,72413 -Black Oak,AR,72414 -Black Rock,AR,72415 -Bono,AR,72416 -Brookland,AR,72417 -Caraway,AR,72419 -Cash,AR,72421 -Corning,AR,72422 -Datto,AR,72424 -Delaplaine,AR,72425 -Dell,AR,72426 -Etowah,AR,72428 -Fisher,AR,72429 -Greenway,AR,72430 -Harrisburg,AR,72432 -Hoxie,AR,72433 -Imboden,AR,72434 -Knobel,AR,72435 -Lafe,AR,72436 -Lake City,AR,72437 -Leachville,AR,72438 -Lynn,AR,72440 -Mc Dougal,AR,72441 -Roseland,AR,72442 -Marmaduke,AR,72443 -Maynard,AR,72444 -Minturn,AR,72445 -Monette,AR,72447 -O Kean,AR,72449 -Paragould,AR,72450 -Peach Orchard,AR,72453 -Piggott,AR,72454 -Pocahontas,AR,72455 -Pollard,AR,72456 -Portia,AR,72457 -Powhatan,AR,72458 -Ravenden,AR,72459 -Ravenden Springs,AR,72460 -Rector,AR,72461 -Saint Francis,AR,72464 -Sedgwick,AR,72465 -Smithville,AR,72466 -State University,AR,72467 -Calamine,AR,72469 -Success,AR,72470 -Swifton,AR,72471 -Payneway,AR,72472 -Tuckerman,AR,72473 -College City,AR,72476 -Warm Springs,AR,72478 -Weiner,AR,72479 -Williford,AR,72482 -Batesville,AR,72501 -Horseshoe Bend,AR,72512 -Agnos,AR,72513 -Bexar,AR,72515 -Boswell,AR,72516 -Brockwell,AR,72517 -Jordan,AR,72519 -Camp,AR,72520 -Cave City,AR,72521 -Charlotte,AR,72522 -Concord,AR,72523 -Cord,AR,72524 -Cushman,AR,72526 -Desha,AR,72527 -Dolph,AR,72528 -Cherokee Village,AR,72529 -Drasco,AR,72530 -Elizabeth,AR,72531 -Evening Shade,AR,72532 -Fifty Six,AR,72533 -Floral,AR,72534 -Franklin,AR,72536 -Gamaliel,AR,72537 -Gepp,AR,72538 -Glencoe,AR,72539 -Guion,AR,72540 -Hardy,AR,72542 -Heber Springs,AR,72543 -Henderson,AR,72544 -Ida,AR,72546 -Locust Grove,AR,72550 -Magness,AR,72553 -Mammoth Spring,AR,72554 -Marcella,AR,72555 -Zion,AR,72556 -Moko,AR,72557 -Hanover,AR,72560 -Mount Pleasant,AR,72561 -Newark,AR,72562 -Oil Trough,AR,72564 -Oxford,AR,72565 -Pineville,AR,72566 -Pleasant Grove,AR,72567 -Pleasant Plains,AR,72568 -Poughkeepsie,AR,72569 -Rosie,AR,72571 -Saffell,AR,72572 -Sage,AR,72573 -Salado,AR,72575 -Byron,AR,72576 -Sidney,AR,72577 -Sturkie,AR,72578 -Sulphur Rock,AR,72579 -Tumbling Shoals,AR,72581 -Viola,AR,72583 -Violet Hill,AR,72584 -Wideman,AR,72585 -Wiseman,AR,72587 -Harrison,AR,72601 -Alco,AR,72610 -Alpena,AR,72611 -Bass,AR,72612 -Berryville,AR,72616 -Big Flat,AR,72617 -Bruno,AR,72618 -Bull Shoals,AR,72619 -Clarkridge,AR,72623 -Compton,AR,72624 -Cotter,AR,72626 -Deer,AR,72628 -Dennard,AR,72629 -Eureka Springs,AR,72632 -Everton,AR,72633 -Flippin,AR,72634 -Gassville,AR,72635 -Green Forest,AR,72638 -Harriet,AR,72639 -Hasty,AR,72640 -Jasper,AR,72641 -Lakeview,AR,72642 -Lead Hill,AR,72644 -Leslie,AR,72645 -Dogpatch,AR,72648 -Marshall,AR,72650 -Midway,AR,72651 -Mountain Home,AR,72653 -Mount Judea,AR,72655 -Timbo,AR,72657 -Norfork,AR,72658 -Oak Grove,AR,72660 -Oakland,AR,72661 -Omaha,AR,72662 -Onia,AR,72663 -Parthenon,AR,72666 -Peel,AR,72668 -Pindall,AR,72669 -Ponca,AR,72670 -Saint Joe,AR,72675 -Tilly,AR,72679 -Newnata,AR,72680 -Valley Springs,AR,72682 -Vendor,AR,72683 -Western Grove,AR,72685 -Witts Springs,AR,72686 -Yellville,AR,72687 -Fayetteville,AR,72701 -Fayetteville,AR,72703 -Bentonville,AR,72712 -Bella Vista,AR,72714 -Wal-Mart Inc,AR,72716 -Canehill,AR,72717 -Cave Springs,AR,72718 -Centerton,AR,72719 -Combs,AR,72721 -Decatur,AR,72722 -Elkins,AR,72727 -Evansville,AR,72729 -Farmington,AR,72730 -Garfield,AR,72732 -Gateway,AR,72733 -Gentry,AR,72734 -Goshen,AR,72735 -Gravette,AR,72736 -Hindsville,AR,72738 -Hiwasse,AR,72739 -Huntsville,AR,72740 -Kingston,AR,72742 -Lincoln,AR,72744 -Lowell,AR,72745 -Maysville,AR,72747 -Morrow,AR,72749 -Pea Ridge,AR,72751 -Pettigrew,AR,72752 -Prairie Grove,AR,72753 -Rogers,AR,72756 -Saint Paul,AR,72760 -Siloam Springs,AR,72761 -Springdale,AR,72762 -Bethel Heights,AR,72764 -Sulphur Springs,AR,72768 -Summers,AR,72769 -Wesley,AR,72773 -West Fork,AR,72774 -Witter,AR,72776 -Russellville,AR,72801 -Alix,AR,72820 -Altus,AR,72821 -Atkins,AR,72823 -Belleville,AR,72824 -Blue Mountain,AR,72826 -Bluffton,AR,72827 -Briggsville,AR,72828 -Clarksville,AR,72830 -Coal Hill,AR,72832 -Danville,AR,72833 -Dardanelle,AR,72834 -Delaware,AR,72835 -Dover,AR,72837 -Gravelly,AR,72838 -Hagarville,AR,72839 -Hartman,AR,72840 -Harvey,AR,72841 -Waveland,AR,72842 -Hector,AR,72843 -Knoxville,AR,72845 -Lamar,AR,72846 -London,AR,72847 -New Blaine,AR,72851 -Oark,AR,72852 -Ola,AR,72853 -Ozone,AR,72854 -Paris,AR,72855 -Pelsor,AR,72856 -Plainview,AR,72857 -Pottsville,AR,72858 -Rover,AR,72860 -Scranton,AR,72863 -Subiaco,AR,72865 -Fort Smith,AR,72901 -Fort Smith,AR,72903 -Fort Smith,AR,72904 -Fort Chaffee,AR,72905 -Fort Smith,AR,72916 -Alma,AR,72921 -Barling,AR,72923 -Bates,AR,72924 -Boles,AR,72926 -Booneville,AR,72927 -Branch,AR,72928 -Cecil,AR,72930 -Cedarville,AR,72932 -Charleston,AR,72933 -Chester,AR,72934 -Greenwood,AR,72936 -Hackett,AR,72937 -Hartford,AR,72938 -Huntington,AR,72940 -Central City,AR,72941 -Magazine,AR,72943 -Mansfield,AR,72944 -Mountainburg,AR,72946 -Mulberry,AR,72947 -Natural Dam,AR,72948 -Ozark,AR,72949 -Parks,AR,72950 -Ratcliff,AR,72951 -Rudy,AR,72952 -Uniontown,AR,72955 -Van Buren,AR,72956 -Waldron,AR,72958 -Winslow,AR,72959 -Texarkana,AR,75502 -Los Angeles,CA,90001 -Los Angeles,CA,90002 -Los Angeles,CA,90003 -Los Angeles,CA,90004 -Los Angeles,CA,90005 -Los Angeles,CA,90006 -Los Angeles,CA,90007 -Los Angeles,CA,90008 -Los Angeles,CA,90010 -Los Angeles,CA,90011 -Los Angeles,CA,90012 -Los Angeles,CA,90013 -Los Angeles,CA,90014 -Los Angeles,CA,90015 -Los Angeles,CA,90016 -Los Angeles,CA,90017 -Los Angeles,CA,90018 -Los Angeles,CA,90019 -Los Angeles,CA,90020 -Los Angeles,CA,90021 -East Los Angeles,CA,90022 -Los Angeles,CA,90023 -Los Angeles,CA,90024 -Los Angeles,CA,90025 -Los Angeles,CA,90026 -Los Angeles,CA,90027 -Los Angeles,CA,90028 -Los Angeles,CA,90029 -Los Angeles,CA,90031 -Los Angeles,CA,90032 -Los Angeles,CA,90033 -Los Angeles,CA,90034 -Los Angeles,CA,90035 -Los Angeles,CA,90036 -Los Angeles,CA,90037 -Los Angeles,CA,90038 -Los Angeles,CA,90039 -City Of Commerce,CA,90040 -Los Angeles,CA,90041 -Los Angeles,CA,90042 -Los Angeles,CA,90043 -Los Angeles,CA,90044 -Los Angeles,CA,90045 -Cole,CA,90046 -Los Angeles,CA,90047 -Los Angeles,CA,90048 -Los Angeles,CA,90049 -Los Angeles,CA,90056 -Los Angeles,CA,90057 -Vernon,CA,90058 -Los Angeles,CA,90059 -Los Angeles,CA,90061 -Los Angeles,CA,90062 -Hazard,CA,90063 -Los Angeles,CA,90064 -Los Angeles,CA,90065 -Los Angeles,CA,90066 -Los Angeles,CA,90067 -Los Angeles,CA,90068 -West Hollywood,CA,90069 -Los Angeles,CA,90071 -Los Angeles,CA,90077 -Bell Gardens,CA,90201 -Beverly Hills,CA,90210 -Beverly Hills,CA,90211 -Beverly Hills,CA,90212 -Rancho Dominguez,CA,90220 -East Rancho Domi,CA,90221 -Rosewood,CA,90222 -Culver City,CA,90230 -Culver City,CA,90232 -Downey,CA,90240 -Downey,CA,90241 -Downey,CA,90242 -El Segundo,CA,90245 -Gardena,CA,90247 -Gardena,CA,90248 -Gardena,CA,90249 -Holly Park,CA,90250 -Hermosa Beach,CA,90254 -Huntington Park,CA,90255 -Lawndale,CA,90260 -Lynwood,CA,90262 -Malibu,CA,90265 -Manhattan Beach,CA,90266 -Maywood,CA,90270 -Pacific Palisade,CA,90272 -Palos Verdes Est,CA,90274 -Redondo Beach,CA,90277 -Redondo Beach,CA,90278 -South Gate,CA,90280 -Topanga,CA,90290 -Venice,CA,90291 -Marina Del Rey,CA,90292 -Playa Del Rey,CA,90293 -Inglewood,CA,90301 -Inglewood,CA,90302 -Inglewood,CA,90303 -Lennox,CA,90304 -Inglewood,CA,90305 -Santa Monica,CA,90401 -Santa Monica,CA,90402 -Santa Monica,CA,90403 -Santa Monica,CA,90404 -Santa Monica,CA,90405 -Torrance,CA,90501 -Torrance,CA,90502 -Torrance,CA,90503 -Torrance,CA,90504 -Torrance,CA,90505 -Torrance,CA,90506 -Whittier,CA,90601 -Whittier,CA,90602 -Whittier,CA,90603 -Whittier,CA,90604 -Whittier,CA,90605 -Los Nietos,CA,90606 -Buena Park,CA,90620 -Buena Park,CA,90621 -Cerritos,CA,90623 -Cypress,CA,90630 -La Habra Heights,CA,90631 -La Mirada,CA,90638 -Montebello,CA,90640 -Norwalk,CA,90650 -Pico Rivera,CA,90660 -Santa Fe Springs,CA,90670 -Stanton,CA,90680 -Cerritos,CA,90701 -Avalon,CA,90704 -Bellflower,CA,90706 -Harbor City,CA,90710 -Lakewood,CA,90712 -Lakewood,CA,90713 -Lakewood,CA,90715 -Hawaiian Gardens,CA,90716 -Rancho Palos Ver,CA,90717 -Rossmoor,CA,90720 -Paramount,CA,90723 -San Pedro,CA,90731 -Rancho Palos Ver,CA,90732 -Seal Beach,CA,90740 -Wilmington,CA,90744 -Carson,CA,90745 -Carson,CA,90746 -Long Beach,CA,90802 -Long Beach,CA,90803 -Signal Hill,CA,90804 -Long Beach,CA,90805 -Signal Hill,CA,90806 -Signal Hill,CA,90807 -Long Beach,CA,90808 -Carson,CA,90810 -Long Beach,CA,90813 -Long Beach,CA,90814 -Long Beach,CA,90815 -Long Beach,CA,90822 -Altadena,CA,91001 -Arcadia,CA,91006 -Arcadia,CA,91007 -Bradbury,CA,91010 -Flintridge,CA,91011 -Monrovia,CA,91016 -Montrose,CA,91020 -Sierra Madre,CA,91024 -South Pasadena,CA,91030 -Shadow Hills,CA,91040 -Tujunga,CA,91042 -Pasadena,CA,91101 -Pasadena,CA,91103 -Pasadena,CA,91104 -Pasadena,CA,91105 -Pasadena,CA,91106 -Pasadena,CA,91107 -San Marino,CA,91108 -Glendale,CA,91201 -Glendale,CA,91202 -Glendale,CA,91203 -Glendale,CA,91204 -Glendale,CA,91205 -Glendale,CA,91206 -Glendale,CA,91207 -Glendale,CA,91208 -La Crescenta,CA,91214 -Oak Park,CA,91301 -Calabasas,CA,91302 -Canoga Park,CA,91303 -Canoga Park,CA,91304 -Winnetka,CA,91306 -West Hills,CA,91307 -Chatsworth,CA,91311 -Encino,CA,91316 -Newbury Park,CA,91320 -Newhall,CA,91321 -Northridge,CA,91324 -Northridge,CA,91325 -Porter Ranch,CA,91326 -California State,CA,91330 -Arleta,CA,91331 -Reseda,CA,91335 -San Fernando,CA,91340 -Sylmar,CA,91342 -North Hills,CA,91343 -Granada Hills,CA,91344 -Mission Hills,CA,91345 -Agua Dulce,CA,91350 -Canyon Country,CA,91351 -Sun Valley,CA,91352 -Valencia,CA,91354 -Valencia,CA,91355 -Tarzana,CA,91356 -Thousand Oaks,CA,91360 -Westlake Village,CA,91361 -Westlake Village,CA,91362 -Woodland Hills,CA,91364 -Woodland Hills,CA,91367 -Newhall,CA,91381 -Castaic,CA,91384 -Van Nuys,CA,91401 -Panorama City,CA,91402 -Sherman Oaks,CA,91403 -Van Nuys,CA,91405 -Van Nuys,CA,91406 -Van Nuys,CA,91411 -Sherman Oaks,CA,91423 -Encino,CA,91436 -Burbank,CA,91501 -Burbank,CA,91502 -Burbank,CA,91504 -Burbank,CA,91505 -Burbank,CA,91506 -North Hollywood,CA,91601 -Toluca Lake,CA,91602 -Studio City,CA,91604 -North Hollywood,CA,91605 -North Hollywood,CA,91606 -Valley Village,CA,91607 -Alta Loma,CA,91701 -Azusa,CA,91702 -Irwindale,CA,91706 -Chino Hills,CA,91709 -Chino,CA,91710 -Claremont,CA,91711 -Corona,CA,91719 -Corona,CA,91720 -Covina,CA,91722 -Covina,CA,91723 -Covina,CA,91724 -Rancho Cucamonga,CA,91730 -El Monte,CA,91731 -El Monte,CA,91732 -South El Monte,CA,91733 -Alta Loma,CA,91737 -Etiwanda,CA,91739 -Glendora,CA,91740 -Industry,CA,91744 -Hacienda Heights,CA,91745 -Bassett,CA,91746 -Rowland Heights,CA,91748 -La Verne,CA,91750 -Mira Loma,CA,91752 -Monterey Park,CA,91754 -Mt Baldy,CA,91759 -Norco,CA,91760 -Ontario,CA,91761 -Ontario,CA,91762 -Montclair,CA,91763 -Ontario,CA,91764 -Diamond Bar,CA,91765 -Phillips Ranch,CA,91766 -Pomona,CA,91767 -Pomona,CA,91768 -Rosemead,CA,91770 -San Dimas,CA,91773 -San Gabriel,CA,91775 -San Gabriel,CA,91776 -Temple City,CA,91780 -Upland,CA,91786 -Diamond Bar,CA,91789 -West Covina,CA,91790 -West Covina,CA,91791 -West Covina,CA,91792 -Alhambra,CA,91801 -Alhambra,CA,91803 -Alpine,CA,91901 -Bonita,CA,91902 -Boulevard,CA,91905 -Campo,CA,91906 -Chula Vista,CA,91910 -Chula Vista,CA,91911 -Chula Vista,CA,91913 -Chula Vista,CA,91914 -Chula Vista,CA,91915 -Descanso,CA,91916 -Dulzura,CA,91917 -Imperial Beach,CA,91932 -Jacumba,CA,91934 -Jamul,CA,91935 -La Mesa,CA,91941 -La Mesa,CA,91942 -Lemon Grove,CA,91945 -National City,CA,91950 -Pine Valley,CA,91962 -Potrero,CA,91963 -Spring Valley,CA,91977 -Spring Valley,CA,91978 -Tecate,CA,91980 -Bonsall,CA,92003 -Borrego Springs,CA,92004 -Cardiff By The S,CA,92007 -Carlsbad,CA,92008 -Carlsbad,CA,92009 -Del Mar,CA,92014 -El Cajon,CA,92019 -El Cajon,CA,92020 -El Cajon,CA,92021 -Encinitas,CA,92024 -Escondido,CA,92025 -Escondido,CA,92026 -Escondido,CA,92027 -Fallbrook,CA,92028 -Escondido,CA,92029 -Julian,CA,92036 -La Jolla,CA,92037 -Lakeside,CA,92040 -Oceanside,CA,92054 -Marine Corp Base,CA,92055 -Oceanside,CA,92056 -Oceanside,CA,92057 -Pala,CA,92059 -Pauma Valley,CA,92061 -Poway,CA,92064 -Ramona,CA,92065 -Ranchita,CA,92066 -San Luis Rey,CA,92068 -San Marcos,CA,92069 -Santa Ysabel,CA,92070 -Santee,CA,92071 -Solana Beach,CA,92075 -Valley Center,CA,92082 -Vista,CA,92083 -Vista,CA,92084 -Warner Springs,CA,92086 -San Diego,CA,92101 -San Diego,CA,92102 -San Diego,CA,92103 -San Diego,CA,92104 -San Diego,CA,92105 -San Diego,CA,92106 -San Diego,CA,92107 -San Diego,CA,92108 -San Diego,CA,92109 -San Diego,CA,92110 -San Diego,CA,92111 -San Diego,CA,92113 -San Diego,CA,92114 -San Diego,CA,92115 -San Diego,CA,92116 -San Diego,CA,92117 -Coronado,CA,92118 -San Diego,CA,92119 -San Diego,CA,92120 -San Diego,CA,92121 -San Diego,CA,92122 -San Diego,CA,92123 -San Diego,CA,92124 -San Diego,CA,92126 -San Diego,CA,92127 -San Diego,CA,92128 -San Diego,CA,92129 -San Diego,CA,92130 -San Diego,CA,92131 -San Diego,CA,92135 -San Diego,CA,92136 -San Diego,CA,92139 -San Diego,CA,92145 -San Diego,CA,92154 -San Diego,CA,92155 -San Ysidro,CA,92173 -Chiriaco Summit,CA,92201 -Indian Wells,CA,92210 -Banning,CA,92220 -Beaumont,CA,92223 -Lost Lake,CA,92225 -Brawley,CA,92227 -Cabazon,CA,92230 -Calexico,CA,92231 -Calipatria,CA,92233 -Cathedral City,CA,92234 -Coachella,CA,92236 -Eagle Mountain,CA,92239 -Desert Hot Sprin,CA,92240 -Big River,CA,92242 -El Centro,CA,92243 -Heber,CA,92249 -Holtville,CA,92250 -Imperial,CA,92251 -Joshua Tree,CA,92252 -La Quinta,CA,92253 -Morongo Valley,CA,92256 -Niland,CA,92257 -Palm City,CA,92260 -Palm Springs,CA,92262 -Palm Springs,CA,92264 -Parker Dam,CA,92267 -Rancho Mirage,CA,92270 -Blythe,CA,92272 -Salton City,CA,92274 -Thousand Palms,CA,92276 -Twentynine Palms,CA,92277 -Twentynine Palms,CA,92278 -Vidal,CA,92280 -Westmorland,CA,92281 -White Water,CA,92282 -Felicity,CA,92283 -Yucca Valley,CA,92284 -Adelanto,CA,92301 -Amboy,CA,92304 -Angelus Oaks,CA,92305 -Apple Valley,CA,92307 -Apple Valley,CA,92308 -Baker,CA,92309 -Fort Irwin,CA,92310 -Barstow,CA,92311 -Big Bear City,CA,92314 -Bloomington,CA,92316 -Calimesa,CA,92320 -Grand Terrace,CA,92324 -Daggett,CA,92327 -Death Valley,CA,92328 -Essex,CA,92332 -Fontana,CA,92335 -Fontana,CA,92336 -Ludlow,CA,92338 -Forest Falls,CA,92339 -Helendale,CA,92342 -Hesperia,CA,92345 -East Highland,CA,92346 -Hinkley,CA,92347 -Kelso,CA,92351 -Loma Linda,CA,92354 -Lucerne Valley,CA,92356 -Lytle Creek,CA,92358 -Mentone,CA,92359 -Needles,CA,92363 -Nipton,CA,92364 -Newberry Springs,CA,92365 -Oro Grande,CA,92368 -Phelan,CA,92371 -Pinon Hills,CA,92372 -Redlands,CA,92373 -Redlands,CA,92374 -Rialto,CA,92376 -Shoshone,CA,92384 -Tecopa,CA,92389 -Spring Valley La,CA,92392 -George Afb,CA,92394 -Wrightwood,CA,92397 -Yucaipa,CA,92399 -San Bernardino,CA,92401 -San Bernardino,CA,92404 -Muscoy,CA,92405 -San Bernardino,CA,92407 -San Bernardino,CA,92408 -San Bernardino,CA,92409 -San Bernardino,CA,92410 -San Bernardino,CA,92411 -Riverside,CA,92501 -Riverside,CA,92503 -Riverside,CA,92504 -Riverside,CA,92505 -Riverside,CA,92506 -Riverside,CA,92507 -Riverside,CA,92508 -Rubidoux,CA,92509 -Lake Elsinore,CA,92530 -Lake Elsinore,CA,92532 -Aguanga,CA,92536 -Anza,CA,92539 -Hemet,CA,92543 -Hemet,CA,92544 -Hemet,CA,92545 -Homeland,CA,92548 -Idyllwild,CA,92549 -Moreno Valley,CA,92553 -Moreno Valley,CA,92555 -Moreno Valley,CA,92557 -Mountain Center,CA,92561 -Murrieta,CA,92562 -Murrieta,CA,92563 -Lakeview,CA,92567 -Mead Valley,CA,92570 -Perris,CA,92571 -San Jacinto,CA,92582 -Gilman Hot Sprin,CA,92583 -Menifee,CA,92584 -Romoland,CA,92585 -Sun City,CA,92586 -Canyon Lake,CA,92587 -Temecula,CA,92590 -Temecula,CA,92591 -Temecula,CA,92592 -Wildomar,CA,92595 -Winchester,CA,92596 -Foothill Ranch,CA,92610 -Brea,CA,92621 -Capistrano Beach,CA,92624 -Corona Del Mar,CA,92625 -Costa Mesa,CA,92626 -Costa Mesa,CA,92627 -Monarch Bay,CA,92629 -Lake Forest,CA,92630 -Fullerton,CA,92631 -Fullerton,CA,92632 -Fullerton,CA,92633 -Fullerton,CA,92635 -Garden Grove,CA,92640 -Garden Grove,CA,92641 -Garden Grove,CA,92643 -Garden Grove,CA,92644 -Garden Grove,CA,92645 -Huntington Beach,CA,92646 -Huntington Beach,CA,92647 -Huntington Beach,CA,92648 -Huntington Beach,CA,92649 -Laguna Niguel,CA,92651 -Laguna Hills,CA,92653 -Midway City,CA,92655 -Aliso Viejo,CA,92656 -Newport Beach,CA,92657 -Newport Beach,CA,92660 -Newport Beach,CA,92661 -Newport Beach,CA,92662 -Newport Beach,CA,92663 -Orange,CA,92665 -Orange,CA,92666 -Villa Park,CA,92667 -Orange,CA,92668 -Orange,CA,92669 -Placentia,CA,92670 -San Clemente,CA,92672 -Mission Viejo,CA,92675 -Laguna Niguel,CA,92677 -Coto De Caza,CA,92679 -Tustin,CA,92680 -Westminster,CA,92683 -Yorba Linda,CA,92686 -Yorba Linda,CA,92687 -Rancho Santa Mar,CA,92688 -Mission Viejo,CA,92691 -Mission Viejo,CA,92692 -Santa Ana,CA,92701 -Santa Ana,CA,92703 -Santa Ana,CA,92704 -Cowan Heights,CA,92705 -Santa Ana,CA,92706 -Santa Ana Height,CA,92707 -Fountain Valley,CA,92708 -El Toro Marine C,CA,92709 -Irvine,CA,92714 -Irvine,CA,92715 -Irvine,CA,92718 -Irvine,CA,92720 -Anaheim,CA,92801 -Anaheim,CA,92802 -Anaheim,CA,92804 -Anaheim,CA,92805 -Anaheim,CA,92806 -Anaheim,CA,92807 -Anaheim,CA,92808 -San Buenaventura,CA,93001 -San Buenaventura,CA,93003 -San Buenaventura,CA,93004 -Camarillo,CA,93010 -Camarillo,CA,93012 -Carpinteria,CA,93013 -Bardsdale,CA,93015 -Moorpark,CA,93021 -Oak View,CA,93022 -Ojai,CA,93023 -Oxnard,CA,93030 -Oxnard,CA,93033 -Oxnard,CA,93035 -Port Hueneme,CA,93041 -Point Mugu Nawc,CA,93042 -Port Hueneme Cbc,CA,93043 -Santa Paula,CA,93060 -Santa Susana,CA,93063 -Simi Valley,CA,93065 -Somis,CA,93066 -Summerland,CA,93067 -Santa Barbara,CA,93101 -Santa Barbara,CA,93103 -Santa Barbara,CA,93105 -Montecito,CA,93108 -Santa Barbara,CA,93109 -Santa Barbara,CA,93110 -Santa Barbara,CA,93111 -Goleta,CA,93117 -Armona,CA,93202 -Arvin,CA,93203 -Avenal,CA,93204 -Bodfish,CA,93205 -Buttonwillow,CA,93206 -California Hot S,CA,93207 -Coalinga,CA,93210 -Corcoran,CA,93212 -Cuyama,CA,93214 -Delano,CA,93215 -Di Giorgio,CA,93217 -Earlimart,CA,93219 -Exeter,CA,93221 -Farmersville,CA,93223 -Fellows,CA,93224 -Frazier Park,CA,93225 -Glennville,CA,93226 -Hanford,CA,93230 -Huron,CA,93234 -Ivanhoe,CA,93235 -Kernville,CA,93238 -Kettleman City,CA,93239 -Mountain Mesa,CA,93240 -Lamont,CA,93241 -Laton,CA,93242 -Gorman,CA,93243 -Lemoncove,CA,93244 -Lemoore Naval Ai,CA,93245 -Lindsay,CA,93247 -Lost Hills,CA,93249 -Mc Farland,CA,93250 -Mc Kittrick,CA,93251 -Maricopa,CA,93252 -New Cuyama,CA,93254 -Onyx,CA,93255 -Pixley,CA,93256 -Porterville,CA,93257 -Posey,CA,93260 -Giant Forest,CA,93262 -Shafter,CA,93263 -Springville,CA,93265 -Stratford,CA,93266 -Strathmore,CA,93267 -Taft,CA,93268 -Terra Bella,CA,93270 -Three Rivers,CA,93271 -Tipton,CA,93272 -Tulare,CA,93274 -Tupman,CA,93276 -Visalia,CA,93277 -Pond,CA,93280 -Weldon,CA,93283 -Wofford Heights,CA,93285 -Woodlake,CA,93286 -Woody,CA,93287 -Visalia,CA,93291 -Bakersfield,CA,93301 -Bakersfield,CA,93304 -College Heights,CA,93305 -Bakersfield,CA,93306 -Bakersfield,CA,93307 -Bakersfield,CA,93308 -Bakersfield,CA,93309 -Bakersfield,CA,93311 -Greenacres,CA,93312 -Bakersfield,CA,93313 -San Luis Obispo,CA,93401 -Los Osos,CA,93402 -San Luis Obispo,CA,93405 -Halcyon,CA,93420 -Atascadero,CA,93422 -Bradley,CA,93426 -Buellton,CA,93427 -Cambria,CA,93428 -Cayucos,CA,93430 -Cholame,CA,93431 -Creston,CA,93432 -Grover Beach,CA,93433 -Guadalupe,CA,93434 -Lompoc,CA,93436 -Lompoc,CA,93437 -Morro Bay,CA,93442 -Nipomo,CA,93444 -Oceano,CA,93445 -Adelaide,CA,93446 -Shell Beach,CA,93449 -San Ardo,CA,93450 -Parkfield,CA,93451 -San Simeon,CA,93452 -California Valle,CA,93453 -Santa Maria,CA,93454 -Orcutt,CA,93455 -Santa Ynez,CA,93460 -Shandon,CA,93461 -Ballard,CA,93463 -Templeton,CA,93465 -Mojave,CA,93501 -California City,CA,93505 -Acton,CA,93510 -Benton,CA,93512 -Big Pine,CA,93513 -Toms Place,CA,93514 -Boron,CA,93516 -Bridgeport,CA,93517 -Havilah,CA,93518 -Cantil,CA,93519 -North Edwards,CA,93523 -Independence,CA,93526 -Pearsonville,CA,93527 -Johannesburg,CA,93528 -June Lake,CA,93529 -Keene,CA,93531 -Elizabeth Lake,CA,93532 -Lancaster,CA,93534 -Hi Vista,CA,93535 -Quartz Hill,CA,93536 -Lee Vining,CA,93541 -Juniper Hills,CA,93543 -Crystalaire,CA,93544 -Lone Pine,CA,93545 -Crowley Lake,CA,93546 -Lake Los Angeles,CA,93550 -Leona Valley,CA,93551 -Juniper Hills,CA,93553 -Randsburg,CA,93554 -China Lake Nwc,CA,93555 -Willow Springs,CA,93560 -Bear Valley Spri,CA,93561 -Argus,CA,93562 -Valyermo,CA,93563 -Ahwahnee,CA,93601 -Auberry,CA,93602 -Bass Lake,CA,93604 -Cantua Creek,CA,93608 -Caruthers,CA,93609 -Chowchilla,CA,93610 -Clovis,CA,93612 -Coarsegold,CA,93614 -Cutler,CA,93615 -Del Rey,CA,93616 -Dinuba,CA,93618 -Dos Palos,CA,93620 -Dunlap,CA,93621 -Firebaugh,CA,93622 -Fish Camp,CA,93623 -Fowler,CA,93625 -Friant,CA,93626 -Helm,CA,93627 -Kerman,CA,93630 -Kingsburg,CA,93631 -Kings Canyon Nat,CA,93633 -Los Banos,CA,93635 -Madera,CA,93637 -Madera,CA,93638 -Mendota,CA,93640 -Miramonte,CA,93641 -North Fork,CA,93643 -Oakhurst,CA,93644 -O Neals,CA,93645 -Orange Cove,CA,93646 -Orosi,CA,93647 -Parlier,CA,93648 -Pinedale,CA,93650 -Prather,CA,93651 -Raisin,CA,93652 -Raymond,CA,93653 -Reedley,CA,93654 -Riverdale,CA,93656 -Sanger,CA,93657 -San Joaquin,CA,93660 -Selma,CA,93662 -Shaver Lake,CA,93664 -Tollhouse,CA,93667 -Tranquillity,CA,93668 -Wishon,CA,93669 -Squaw Valley,CA,93675 -Fresno,CA,93701 -Fresno,CA,93702 -Fresno,CA,93703 -Fig Garden Villa,CA,93704 -Fresno,CA,93705 -Easton,CA,93706 -Fresno,CA,93710 -Fresno,CA,93711 -Fresno,CA,93720 -Fresno,CA,93721 -Fresno,CA,93722 -Calwa,CA,93725 -Fresno,CA,93726 -Fresno,CA,93727 -Fresno,CA,93728 -Salinas,CA,93901 -Salinas,CA,93905 -Salinas,CA,93906 -Prunedale,CA,93907 -Salinas,CA,93908 -Big Sur,CA,93920 -Carmel,CA,93923 -Carmel Valley,CA,93924 -Chualar,CA,93925 -Gonzales,CA,93926 -Greenfield,CA,93927 -King City,CA,93930 -Lockwood,CA,93932 -Marina,CA,93933 -Del Rey Oaks,CA,93940 -Fort Ord,CA,93941 -Pacific Grove,CA,93950 -Pebble Beach,CA,93953 -Sand City,CA,93955 -Soledad,CA,93960 -Belmont,CA,94002 -Brisbane,CA,94005 -Hillsborough,CA,94010 -Colma,CA,94014 -Daly City,CA,94015 -Half Moon Bay,CA,94019 -La Honda,CA,94020 -Loma Mar,CA,94021 -Los Altos,CA,94022 -Los Altos,CA,94024 -West Menlo Park,CA,94025 -Atherton,CA,94027 -Ladera,CA,94028 -Millbrae,CA,94030 -Moffett Field,CA,94035 -Moss Beach,CA,94038 -Mountain View,CA,94040 -Mountain View,CA,94041 -Mountain View,CA,94043 -Pacifica,CA,94044 -Pescadero,CA,94060 -Redwood City,CA,94061 -Woodside,CA,94062 -Redwood City,CA,94063 -Redwood City,CA,94065 -San Bruno,CA,94066 -San Carlos,CA,94070 -San Gregorio,CA,94074 -South San Franci,CA,94080 -Sunnyvale,CA,94086 -Sunnyvale,CA,94087 -Sunnyvale,CA,94089 -San Francisco,CA,94102 -San Francisco,CA,94103 -San Francisco,CA,94104 -San Francisco,CA,94105 -San Francisco,CA,94107 -San Francisco,CA,94108 -San Francisco,CA,94109 -San Francisco,CA,94110 -San Francisco,CA,94111 -San Francisco,CA,94112 -San Francisco,CA,94114 -San Francisco,CA,94115 -San Francisco,CA,94116 -San Francisco,CA,94117 -San Francisco,CA,94118 -San Francisco,CA,94121 -San Francisco,CA,94122 -San Francisco,CA,94123 -San Francisco,CA,94124 -San Francisco,CA,94127 -San Francisco,CA,94129 -San Francisco,CA,94130 -San Francisco,CA,94131 -San Francisco,CA,94132 -San Francisco,CA,94133 -San Francisco,CA,94134 -Palo Alto,CA,94301 -East Palo Alto,CA,94303 -Palo Alto,CA,94304 -Stanford,CA,94305 -Palo Alto,CA,94306 -Russian River,CA,94401 -San Mateo,CA,94402 -San Mateo,CA,94403 -Foster City,CA,94404 -Coast Guard Isla,CA,94501 -Alamo,CA,94507 -Angwin,CA,94508 -Antioch,CA,94509 -Benicia,CA,94510 -Birds Landing,CA,94512 -Brentwood,CA,94513 -Byron,CA,94514 -Calistoga,CA,94515 -Clayton,CA,94517 -Concord,CA,94518 -Concord,CA,94519 -Concord,CA,94520 -Concord,CA,94521 -Pleasant Hill,CA,94523 -Crockett,CA,94525 -Danville,CA,94526 -Diablo,CA,94528 -El Cerrito,CA,94530 -Fairfield,CA,94533 -Travis Afb,CA,94535 -Fremont,CA,94536 -Fremont,CA,94538 -Fremont,CA,94539 -Hayward,CA,94541 -Hayward,CA,94542 -Hayward,CA,94544 -Hayward,CA,94545 -Castro Valley,CA,94546 -Hercules,CA,94547 -Knightsen,CA,94548 -Lafayette,CA,94549 -Livermore,CA,94550 -Castro Valley,CA,94552 -Pacheco,CA,94553 -Fremont,CA,94555 -Moraga,CA,94556 -Spanish Flat,CA,94558 -Napa,CA,94559 -Newark,CA,94560 -Oakley,CA,94561 -Orinda,CA,94563 -Pinole,CA,94564 -Shore Acres,CA,94565 -Pleasanton,CA,94566 -Pope Valley,CA,94567 -Dublin,CA,94568 -Port Costa,CA,94569 -Rio Vista,CA,94571 -Rodeo,CA,94572 -Saint Helena,CA,94574 -San Leandro,CA,94577 -San Leandro,CA,94578 -San Leandro,CA,94579 -San Lorenzo,CA,94580 -San Ramon,CA,94583 -Suisun City,CA,94585 -Sunol,CA,94586 -Union City,CA,94587 -Pleasanton,CA,94588 -American Canyon,CA,94589 -Vallejo,CA,94590 -Vallejo,CA,94591 -Mare Island,CA,94592 -Walnut Creek,CA,94595 -Walnut Creek,CA,94596 -Walnut Creek,CA,94598 -Yountville,CA,94599 -Oakland,CA,94601 -Oakland,CA,94602 -Oakland,CA,94603 -Oakland,CA,94605 -Oakland,CA,94606 -Oakland,CA,94607 -Emeryville,CA,94608 -Oakland,CA,94609 -Oakland,CA,94610 -Piedmont,CA,94611 -Oakland,CA,94612 -Oakland,CA,94613 -Piedmont,CA,94618 -Oakland,CA,94619 -Oakland,CA,94621 -Berkeley,CA,94702 -Berkeley,CA,94703 -Berkeley,CA,94704 -Berkeley,CA,94705 -Albany,CA,94706 -Kensington,CA,94707 -Kensington,CA,94708 -Berkeley,CA,94709 -Berkeley,CA,94710 -Richmond,CA,94801 -El Sobrante,CA,94803 -Richmond,CA,94804 -Richmond,CA,94805 -San Pablo,CA,94806 -San Rafael,CA,94901 -Civic Center,CA,94903 -Kentfield,CA,94904 -Belvedere,CA,94920 -Bodega,CA,94922 -Bodega Bay,CA,94923 -Bolinas,CA,94924 -Corte Madera,CA,94925 -Rohnert Park,CA,94928 -Fairfax,CA,94930 -Cotati,CA,94931 -Forest Knolls,CA,94933 -Inverness,CA,94937 -Lagunitas,CA,94938 -Larkspur,CA,94939 -Marshall,CA,94940 -Mill Valley,CA,94941 -Novato,CA,94945 -Nicasio,CA,94946 -Novato,CA,94947 -Novato,CA,94949 -Penngrove,CA,94951 -Petaluma,CA,94952 -Petaluma,CA,94954 -Point Reyes Stat,CA,94956 -San Anselmo,CA,94960 -San Geronimo,CA,94963 -Sausalito,CA,94965 -Stinson Beach,CA,94970 -Valley Ford,CA,94972 -Woodacre,CA,94973 -Alviso,CA,95002 -Aptos,CA,95003 -Aromas,CA,95004 -Ben Lomond,CA,95005 -Boulder Creek,CA,95006 -Campbell,CA,95008 -Capitola,CA,95010 -Castroville,CA,95012 -Coyote,CA,95013 -Monte Vista,CA,95014 -Davenport,CA,95017 -Felton,CA,95018 -Freedom,CA,95019 -Gilroy,CA,95020 -Hollister,CA,95023 -Monte Sereno,CA,95030 -Los Gatos,CA,95032 -Milpitas,CA,95035 -Morgan Hill,CA,95037 -Paicines,CA,95043 -San Juan Bautist,CA,95045 -San Martin,CA,95046 -Santa Clara,CA,95050 -Santa Clara,CA,95051 -Santa Clara,CA,95054 -Scotts Valley,CA,95060 -Santa Cruz,CA,95062 -Santa Cruz,CA,95064 -Santa Cruz,CA,95065 -Scotts Valley,CA,95066 -Saratoga,CA,95070 -Soquel,CA,95073 -La Selva Beach,CA,95076 -San Jose,CA,95110 -San Jose,CA,95111 -San Jose,CA,95112 -San Jose,CA,95113 -San Jose,CA,95116 -San Jose,CA,95117 -San Jose,CA,95118 -San Jose,CA,95119 -San Jose,CA,95120 -San Jose,CA,95121 -San Jose,CA,95122 -San Jose,CA,95123 -San Jose,CA,95124 -San Jose,CA,95125 -San Jose,CA,95126 -San Jose,CA,95127 -San Jose,CA,95128 -San Jose,CA,95129 -San Jose,CA,95130 -San Jose,CA,95131 -San Jose,CA,95132 -San Jose,CA,95133 -San Jose,CA,95134 -San Jose,CA,95135 -San Jose,CA,95136 -San Jose,CA,95138 -San Jose,CA,95139 -Mount Hamilton,CA,95140 -San Jose,CA,95141 -San Jose,CA,95148 -Stockton,CA,95202 -Stockton,CA,95203 -Stockton,CA,95204 -Stockton,CA,95205 -Stockton,CA,95206 -Stockton,CA,95207 -Stockton,CA,95209 -Stockton,CA,95210 -Univ Of The Paci,CA,95211 -Stockton,CA,95212 -Stockton,CA,95215 -Stockton,CA,95219 -Acampo,CA,95220 -Angels Camp,CA,95222 -Bear Valley,CA,95223 -Copperopolis,CA,95228 -Farmington,CA,95230 -French Camp,CA,95231 -Glencoe,CA,95232 -Linden,CA,95236 -Lockeford,CA,95237 -Lodi,CA,95240 -Lodi,CA,95242 -Mokelumne Hill,CA,95245 -Mountain Ranch,CA,95246 -Murphys,CA,95247 -San Andreas,CA,95249 -Vallecito,CA,95251 -Valley Springs,CA,95252 -West Point,CA,95255 -Wilseyville,CA,95257 -Woodbridge,CA,95258 -Atwater,CA,95301 -Ballico,CA,95303 -Catheys Valley,CA,95306 -Ceres,CA,95307 -Chinese Camp,CA,95309 -Columbia,CA,95310 -Coulterville,CA,95311 -Crows Landing,CA,95313 -Delhi,CA,95315 -Denair,CA,95316 -El Nido,CA,95317 -Escalon,CA,95320 -Groveland,CA,95321 -Gustine,CA,95322 -Hickman,CA,95323 -Hilmar,CA,95324 -Hornitos,CA,95325 -Hughson,CA,95326 -Jamestown,CA,95327 -La Grange,CA,95329 -Lathrop,CA,95330 -Le Grand,CA,95333 -Livingston,CA,95334 -Cold Springs,CA,95335 -Manteca,CA,95336 -Mariposa,CA,95338 -Red Top,CA,95340 -Midpines,CA,95345 -Mi Wuk Village,CA,95346 -Merced,CA,95348 -Modesto,CA,95350 -Modesto,CA,95351 -Modesto,CA,95354 -Modesto,CA,95355 -Modesto,CA,95356 -Newman,CA,95360 -Knights Ferry,CA,95361 -Patterson,CA,95363 -Pinecrest,CA,95364 -Ripon,CA,95366 -Riverbank,CA,95367 -Salida,CA,95368 -Snelling,CA,95369 -Sonora,CA,95370 -Soulsbyville,CA,95372 -Stevinson,CA,95374 -Tracy,CA,95376 -Tuolumne,CA,95379 -Turlock,CA,95380 -Twain Harte,CA,95383 -Waterford,CA,95386 -Winton,CA,95388 -Santa Rosa,CA,95401 -Santa Rosa,CA,95403 -Santa Rosa,CA,95404 -Santa Rosa,CA,95405 -Santa Rosa,CA,95407 -Santa Rosa,CA,95409 -Albion,CA,95410 -95411,CA,95411 -Annapolis,CA,95412 -95414,CA,95414 -Boonville,CA,95415 -Branscomb,CA,95417 -Caspar,CA,95420 -Cazadero,CA,95421 -Clearlake,CA,95422 -Clearlake Oaks,CA,95423 -Cloverdale,CA,95425 -Comptche,CA,95427 -Covelo,CA,95428 -Dos Rios,CA,95429 -Elk,CA,95432 -Forestville,CA,95436 -Fort Bragg,CA,95437 -Fulton,CA,95439 -95440,CA,95440 -Geyserville,CA,95441 -Glen Ellen,CA,95442 -Glenhaven,CA,95443 -Graton,CA,95444 -Gualala,CA,95445 -Guerneville,CA,95446 -Healdsburg,CA,95448 -Hopland,CA,95449 -Jenner,CA,95450 -Kelseyville,CA,95451 -Kenwood,CA,95452 -Lakeport,CA,95453 -Laytonville,CA,95454 -95455,CA,95455 -Littleriver,CA,95456 -Lower Lake,CA,95457 -Lucerne,CA,95458 -Manchester,CA,95459 -Mendocino,CA,95460 -Middletown,CA,95461 -Russian River Md,CA,95462 -Nice,CA,95464 -Occidental,CA,95465 -Philo,CA,95466 -95467,CA,95467 -Point Arena,CA,95468 -Potter Valley,CA,95469 -Redwood Valley,CA,95470 -Freestone,CA,95472 -Sonoma,CA,95476 -Ukiah,CA,95482 -Upper Lake,CA,95485 -Westport,CA,95488 -95489,CA,95489 -Willits,CA,95490 -Windsor,CA,95492 -Witter Springs,CA,95493 -Yorkville,CA,95494 -95495,CA,95495 -The Sea Ranch,CA,95497 -Eureka,CA,95501 -Mc Kinleyville,CA,95521 -Bayside,CA,95524 -Blue Lake,CA,95525 -Ruth,CA,95526 -Burnt Ranch,CA,95527 -Carlotta,CA,95528 -Crescent City,CA,95531 -Ferndale,CA,95536 -Fortuna,CA,95540 -Gasquet,CA,95543 -Hoopa,CA,95546 -Hydesville,CA,95547 -Klamath,CA,95548 -Kneeland,CA,95549 -Korbel,CA,95550 -Loleta,CA,95551 -Mad River,CA,95552 -Myers Flat,CA,95554 -Orick,CA,95555 -Orleans,CA,95556 -Petrolia,CA,95558 -Redway,CA,95560 -Rio Dell,CA,95562 -Salyer,CA,95563 -Samoa,CA,95564 -Scotia,CA,95565 -Smith River,CA,95567 -Somes Bar,CA,95568 -Redcrest,CA,95569 -Westhaven,CA,95570 -Willow Creek,CA,95573 -Auburn,CA,95603 -Bryte,CA,95605 -Brooks,CA,95606 -Capay,CA,95607 -Carmichael,CA,95608 -Citrus Heights,CA,95610 -Clarksburg,CA,95612 -Cool,CA,95614 -Courtland,CA,95615 -Davis,CA,95616 -El Macero,CA,95618 -Diamond Springs,CA,95619 -Liberty Farms,CA,95620 -Citrus Heights,CA,95621 -Elk Grove,CA,95624 -Elverta,CA,95626 -Esparto,CA,95627 -Fair Oaks,CA,95628 -Fiddletown,CA,95629 -El Dorado Hills,CA,95630 -Foresthill,CA,95631 -Galt,CA,95632 -Garden Valley,CA,95633 -Georgetown,CA,95634 -Greenwood,CA,95635 -Grizzly Flats,CA,95636 -Guinda,CA,95637 -Herald,CA,95638 -Ione,CA,95640 -Isleton,CA,95641 -Jackson,CA,95642 -Kelsey,CA,95643 -Knights Landing,CA,95645 -Lincoln,CA,95648 -Loomis,CA,95650 -Lotus,CA,95651 -Mcclellan Afb,CA,95652 -Madison,CA,95653 -Mather Afb,CA,95655 -Newcastle,CA,95658 -Trowbridge,CA,95659 -North Highlands,CA,95660 -Roseville,CA,95661 -Orangevale,CA,95662 -Penryn,CA,95663 -Pilot Hill,CA,95664 -Pine Grove,CA,95665 -Pioneer,CA,95666 -Placerville,CA,95667 -Pleasant Grove,CA,95668 -Plymouth,CA,95669 -Gold River,CA,95670 -Rescue,CA,95672 -Rio Linda,CA,95673 -Rio Oso,CA,95674 -Rocklin,CA,95677 -Roseville,CA,95678 -Rumsey,CA,95679 -Sheridan,CA,95681 -Cameron Park,CA,95682 -Rancho Murieta,CA,95683 -Somerset,CA,95684 -Sutter Creek,CA,95685 -Vacaville,CA,95687 -Vacaville,CA,95688 -Volcano,CA,95689 -Walnut Grove,CA,95690 -West Sacramento,CA,95691 -Wheatland,CA,95692 -Wilton,CA,95693 -Winters,CA,95694 -Woodland,CA,95695 -Zamora,CA,95698 -Alta,CA,95701 -Applegate,CA,95703 -Camino,CA,95709 -Iowa Hill,CA,95713 -Dutch Flat,CA,95714 -Emigrant Gap,CA,95715 -Gold Run,CA,95717 -Kyburz,CA,95720 -Echo Lake,CA,95721 -Meadow Vista,CA,95722 -Norden,CA,95724 -Pacific House,CA,95726 -Soda Springs,CA,95728 -Twin Bridges,CA,95735 -Rancho Cordova,CA,95742 -Elk Grove,CA,95758 -Sacramento,CA,95814 -Sacramento,CA,95815 -Sacramento,CA,95816 -Sacramento,CA,95817 -Sacramento,CA,95818 -Sacramento,CA,95819 -Sacramento,CA,95820 -Sacramento,CA,95821 -Sacramento,CA,95822 -Sacramento,CA,95823 -Sacramento,CA,95824 -Sacramento,CA,95825 -Sacramento,CA,95826 -Sacramento,CA,95827 -Sacramento,CA,95828 -Sacramento,CA,95829 -Sacramento,CA,95830 -Sacramento,CA,95831 -Sacramento,CA,95832 -Sacramento,CA,95833 -Sacramento,CA,95834 -Sacramento,CA,95835 -Sacramento,CA,95836 -Sacramento,CA,95837 -Sacramento,CA,95838 -Sacramento,CA,95841 -Sacramento,CA,95842 -Sacramento,CA,95864 -Marysville,CA,95901 -Alleghany,CA,95910 -Arbuckle,CA,95912 -Bangor,CA,95914 -Belden,CA,95915 -Berry Creek,CA,95916 -Biggs,CA,95917 -Browns Valley,CA,95918 -Brownsville,CA,95919 -Butte City,CA,95920 -Camptonville,CA,95922 -Canyondam,CA,95923 -Cohasset,CA,95926 -Chico,CA,95928 -Colusa,CA,95932 -Crescent Mills,CA,95934 -Dobbins,CA,95935 -Downieville,CA,95936 -Dunnigan,CA,95937 -Durham,CA,95938 -Elk Creek,CA,95939 -Forbestown,CA,95941 -Butte Meadows,CA,95942 -Glenn,CA,95943 -Goodyears Bar,CA,95944 -Grass Valley,CA,95945 -Penn Valley,CA,95946 -Greenville,CA,95947 -Gridley,CA,95948 -Grass Valley,CA,95949 -Live Oak,CA,95953 -Magalia,CA,95954 -Maxwell,CA,95955 -Meadow Valley,CA,95956 -Meridian,CA,95957 -Nevada City,CA,95959 -North San Juan,CA,95960 -Olivehurst,CA,95961 -Oregon House,CA,95962 -Orland,CA,95963 -Pulga,CA,95965 -Oroville,CA,95966 -Palermo,CA,95968 -Paradise,CA,95969 -Princeton,CA,95970 -Quincy,CA,95971 -Rackerby,CA,95972 -Rough And Ready,CA,95975 -Smartville,CA,95977 -Stonyford,CA,95979 -La Porte,CA,95981 -Sutter,CA,95982 -Taylorsville,CA,95983 -Twain,CA,95984 -Williams,CA,95987 -Willows,CA,95988 -Yuba City,CA,95991 -Yuba City,CA,95993 -Redding,CA,96001 -Redding,CA,96002 -Redding,CA,96003 -Adin,CA,96006 -Anderson,CA,96007 -Bella Vista,CA,96008 -Big Bar,CA,96010 -Burney,CA,96013 -Callahan,CA,96014 -Canby,CA,96015 -Cassel,CA,96016 -Shasta Lake,CA,96019 -Chester,CA,96020 -Corning,CA,96021 -Cottonwood,CA,96022 -Douglas City,CA,96024 -Dunsmuir,CA,96025 -Sawyers Bar,CA,96027 -Fall River Mills,CA,96028 -Forks Of Salmon,CA,96031 -Fort Jones,CA,96032 -French Gulch,CA,96033 -Gazelle,CA,96034 -Gerber,CA,96035 -Grenada,CA,96038 -Happy Camp,CA,96039 -Hat Creek,CA,96040 -Hayfork,CA,96041 -Hornbrook,CA,96044 -Horse Creek,CA,96045 -Igo,CA,96047 -Helena,CA,96048 -Klamath River,CA,96050 -Lakehead,CA,96051 -Lewiston,CA,96052 -Los Molinos,CA,96055 -Mcarthur,CA,96056 -Mccloud,CA,96057 -Macdoel,CA,96058 -Manton,CA,96059 -Millville,CA,96062 -Mineral,CA,96063 -Montague,CA,96064 -Montgomery Creek,CA,96065 -Mount Shasta,CA,96067 -Oak Run,CA,96069 -Old Station,CA,96071 -Palo Cedro,CA,96073 -Paynes Creek,CA,96075 -Wildwood,CA,96076 -Red Bluff,CA,96080 -Scott Bar,CA,96085 -Seiad Valley,CA,96086 -Shasta,CA,96087 -Shingletown,CA,96088 -Trinity Center,CA,96091 -Weaverville,CA,96093 -Edgewood,CA,96094 -Whitmore,CA,96096 -Yreka,CA,96097 -Alturas,CA,96101 -Cromberg,CA,96103 -Cedarville,CA,96104 -Chilcoot,CA,96105 -Clio,CA,96106 -Coleville,CA,96107 -Davis Creek,CA,96108 -Doyle,CA,96109 -Floriston,CA,96111 -Fort Bidwell,CA,96112 -Herlong,CA,96113 -Janesville,CA,96114 -Lake City,CA,96115 -Litchfield,CA,96117 -Loyalton,CA,96118 -Hope Valley,CA,96120 -Milford,CA,96121 -Portola,CA,96122 -Ravendale,CA,96123 -Calpine,CA,96124 -Sierra City,CA,96125 -Sierraville,CA,96126 -Standish,CA,96128 -Susanville,CA,96130 -Termo,CA,96132 -Topaz,CA,96133 -Tulelake,CA,96134 -Vinton,CA,96135 -Wendel,CA,96136 -Peninsula Villag,CA,96137 -Carnelian Bay,CA,96140 -Homewood,CA,96141 -Tahoma,CA,96142 -Kings Beach,CA,96143 -Tahoe City,CA,96145 -Tahoe Vista,CA,96148 -South Lake Tahoe,CA,96150 -Truckee,CA,96161 -Truckee,CA,96162 -Arvada,CO,80002 -Arvada,CO,80003 -Arvada,CO,80004 -Arvada,CO,80005 -Aurora,CO,80010 -Aurora,CO,80011 -Aurora,CO,80012 -Aurora,CO,80013 -Aurora,CO,80014 -Aurora,CO,80015 -Aurora,CO,80016 -Aurora,CO,80017 -Aurora,CO,80018 -Aurora,CO,80019 -Broomfield,CO,80020 -Westminster,CO,80021 -Commerce City,CO,80022 -Lafayette,CO,80026 -Louisville,CO,80027 -Westminster,CO,80030 -Wheat Ridge,CO,80033 -Aurora,CO,80045 -Agate,CO,80101 -Bennett,CO,80102 -Byers,CO,80103 -Castle Rock,CO,80104 -Deer Trail,CO,80105 -Elbert,CO,80106 -Elizabeth,CO,80107 -Cherry Hills Vil,CO,80110 -Cherry Hills Vil,CO,80111 -Englewood,CO,80112 -Franktown,CO,80116 -Kiowa,CO,80117 -Larkspur,CO,80118 -Littleton,CO,80120 -Greenwood Villag,CO,80121 -Littleton,CO,80122 -Bow Mar,CO,80123 -Littleton,CO,80124 -Littleton,CO,80125 -Highlands Ranch,CO,80126 -Littleton,CO,80127 -Monument,CO,80132 -Palmer Lake,CO,80133 -Parker,CO,80134 -Deckers,CO,80135 -Strasburg,CO,80136 -Watkins,CO,80137 -Denver,CO,80202 -Denver,CO,80203 -Denver,CO,80204 -Denver,CO,80205 -Denver,CO,80206 -Denver,CO,80207 -Denver,CO,80209 -Denver,CO,80210 -Denver,CO,80211 -Mountain View,CO,80212 -Edgewater,CO,80214 -Lakewood,CO,80215 -Denver,CO,80216 -Denver,CO,80218 -Denver,CO,80219 -Denver,CO,80220 -Federal Heights,CO,80221 -Glendale,CO,80222 -Denver,CO,80223 -Denver,CO,80224 -Lakewood,CO,80226 -Denver,CO,80227 -Lakewood,CO,80228 -Thornton,CO,80229 -Denver,CO,80231 -Lakewood,CO,80232 -Northglenn,CO,80233 -Northglenn,CO,80234 -Denver,CO,80235 -Denver,CO,80236 -Denver,CO,80237 -Denver,CO,80239 -Northglenn,CO,80241 -Denver,CO,80249 -Boulder,CO,80301 -Boulder,CO,80302 -Boulder,CO,80303 -Boulder,CO,80304 -Golden,CO,80401 -Golden,CO,80403 -Bailey,CO,80421 -Black Hawk,CO,80422 -Bond,CO,80423 -Clark,CO,80428 -Climax,CO,80429 -Coalmont,CO,80430 -Conifer,CO,80433 -Keystone,CO,80435 -Evergreen,CO,80439 -Fairplay,CO,80440 -Foxton,CO,80441 -Granby,CO,80446 -Grand Lake,CO,80447 -Idaho Springs,CO,80452 -Jamestown,CO,80455 -Jefferson,CO,80456 -Kremmling,CO,80459 -Leadville,CO,80461 -Mc Coy,CO,80463 -Morrison,CO,80465 -Nederland,CO,80466 -Oak Creek,CO,80467 -Parshall,CO,80468 -Pine,CO,80470 -Pinecliffe,CO,80471 -Rollinsville,CO,80474 -Toponas,CO,80479 -Walden,CO,80480 -Ward,CO,80481 -Steamboat Spring,CO,80487 -Longmont,CO,80501 -Longmont,CO,80503 -Longmont,CO,80504 -Allenspark,CO,80510 -Bellvue,CO,80512 -Berthoud,CO,80513 -Dacono,CO,80514 -Drake,CO,80515 -Erie,CO,80516 -Estes Park,CO,80517 -Fort Collins,CO,80521 -Fort Collins,CO,80524 -Fort Collins,CO,80525 -Fort Collins,CO,80526 -Johnstown,CO,80534 -Laporte,CO,80535 -Virginia Dale,CO,80536 -Loveland,CO,80537 -Loveland,CO,80538 -Lyons,CO,80540 -Milliken,CO,80543 -Red Feather Lake,CO,80545 -Wellington,CO,80549 -Windsor,CO,80550 -Lochbui,CO,80601 -Ault,CO,80610 -Briggsdale,CO,80611 -Carr,CO,80612 -Eaton,CO,80615 -Evans,CO,80620 -Wattenburg,CO,80621 -Galeton,CO,80622 -Gill,CO,80624 -Garden City,CO,80631 -Greeley,CO,80634 -Henderson,CO,80640 -Hudson,CO,80642 -Keenesburg,CO,80643 -Kersey,CO,80644 -La Salle,CO,80645 -Nunn,CO,80648 -Orchard,CO,80649 -Pierce,CO,80650 -Platteville,CO,80651 -Roggen,CO,80652 -Weldona,CO,80653 -Hoyt,CO,80654 -Fort Morgan,CO,80701 -Akron,CO,80720 -Amherst,CO,80721 -Atwood,CO,80722 -Brush,CO,80723 -Crook,CO,80726 -Eckley,CO,80727 -Fleming,CO,80728 -Grover,CO,80729 -Haxtun,CO,80731 -Hillrose,CO,80733 -Holyoke,CO,80734 -Hale,CO,80735 -Iliff,CO,80736 -Julesburg,CO,80737 -Lindon,CO,80740 -Willard,CO,80741 -New Raymer,CO,80742 -Otis,CO,80743 -Ovid,CO,80744 -Padroni,CO,80745 -Peetz,CO,80747 -Sedgwick,CO,80749 -Snyder,CO,80750 -Sterling,CO,80751 -Stoneham,CO,80754 -Vernon,CO,80755 -Last Chance,CO,80757 -Laird,CO,80758 -Yuma,CO,80759 -Anton,CO,80801 -Arapahoe,CO,80802 -Arriba,CO,80804 -Bethune,CO,80805 -Burlington,CO,80807 -Calhan,CO,80808 -North Pole,CO,80809 -Cheyenne Wells,CO,80810 -Cope,CO,80812 -Divide,CO,80814 -Flagler,CO,80815 -Florissant,CO,80816 -Fountain,CO,80817 -Genoa,CO,80818 -Guffey,CO,80820 -Hugo,CO,80821 -Joes,CO,80822 -Karval,CO,80823 -Kirk,CO,80824 -Kit Carson,CO,80825 -Lake George,CO,80827 -Limon,CO,80828 -Manitou Springs,CO,80829 -Matheson,CO,80830 -Peyton,CO,80831 -Ramah,CO,80832 -Rush,CO,80833 -Seibert,CO,80834 -Simla,CO,80835 -Stratton,CO,80836 -United States Ai,CO,80840 -Vona,CO,80861 -Woodland Park,CO,80863 -Yoder,CO,80864 -Colorado Springs,CO,80903 -Colorado Springs,CO,80904 -Colorado Springs,CO,80905 -Colorado Springs,CO,80906 -Colorado Springs,CO,80907 -Colorado Springs,CO,80908 -Colorado Springs,CO,80909 -Colorado Springs,CO,80910 -Colorado Springs,CO,80911 -Fort Carson,CO,80913 -Cheyenne Mtn Afb,CO,80914 -Colorado Springs,CO,80915 -Colorado Springs,CO,80916 -Colorado Springs,CO,80917 -Colorado Springs,CO,80918 -Colorado Springs,CO,80919 -Colorado Springs,CO,80920 -Colorado Springs,CO,80921 -Colorado Springs,CO,80922 -Colorado Springs,CO,80925 -Colorado Springs,CO,80926 -Colorado Springs,CO,80928 -Colorado Springs,CO,80929 -Colorado Springs,CO,80930 -Pueblo,CO,81001 -Pueblo,CO,81003 -Pueblo,CO,81004 -Pueblo,CO,81005 -Pueblo,CO,81006 -Pueblo West,CO,81007 -Pueblo,CO,81008 -Aguilar,CO,81020 -Arlington,CO,81021 -North Avondale,CO,81022 -Beulah,CO,81023 -Boone,CO,81025 -Brandon,CO,81026 -Branson,CO,81027 -Bristol,CO,81028 -Campo,CO,81029 -Chivington,CO,81036 -Fowler,CO,81039 -Farisita,CO,81040 -Granada,CO,81041 -Hartman,CO,81043 -Caddoa,CO,81044 -Haswell,CO,81045 -Holly,CO,81047 -Villegreen,CO,81049 -Timpas,CO,81050 -Lamar,CO,81052 -Deora,CO,81054 -Cuchara,CO,81055 -Mc Clave,CO,81057 -Manzanola,CO,81058 -Delhi,CO,81059 -Olney Springs,CO,81062 -Ordway,CO,81063 -Utleyville,CO,81064 -Rocky Ford,CO,81067 -Rye,CO,81069 -Towner,CO,81071 -Springfield,CO,81073 -Sugar City,CO,81076 -81080,CO,81080 -Trinchera,CO,81081 -Jansen,CO,81082 -Lycan,CO,81084 -Vilas,CO,81087 -Farista,CO,81089 -Walsh,CO,81090 -Weston,CO,81091 -Wiley,CO,81092 -Alamosa,CO,81101 -Antonito,CO,81120 -Arboles,CO,81121 -Bayfield,CO,81122 -Blanca,CO,81123 -Center,CO,81125 -Creede,CO,81130 -La Garita,CO,81132 -Fort Garland,CO,81133 -Hooper,CO,81136 -Ignacio,CO,81137 -La Jara,CO,81140 -Moffat,CO,81143 -Monte Vista,CO,81144 -Mosca,CO,81146 -Pagosa Springs,CO,81147 -Saguache,CO,81149 -San Acacio,CO,81150 -Sanford,CO,81151 -Mesita,CO,81152 -San Pablo,CO,81153 -South Fork,CO,81154 -Villa Grove,CO,81155 -Salida,CO,81201 -Almont,CO,81210 -Buena Vista,CO,81211 -Canon City,CO,81212 -Cimarron,CO,81220 -Crested Butte,CO,81224 -Florence,CO,81226 -Granite,CO,81228 -Gunnison,CO,81230 -Howard,CO,81233 -Lake City,CO,81235 -Nathrop,CO,81236 -Parlin,CO,81239 -Penrose,CO,81240 -Pitkin,CO,81241 -Powderhorn,CO,81243 -81250,CO,81250 -Twin Lakes,CO,81251 -Westcliffe,CO,81252 -Wetmore,CO,81253 -Durango,CO,81301 -Cahone,CO,81320 -Cortez,CO,81321 -Dolores,CO,81323 -Dove Creek,CO,81324 -Egnar,CO,81325 -Hesperus,CO,81326 -Lewis,CO,81327 -Mancos,CO,81328 -Pleasant View,CO,81331 -Towaoc,CO,81334 -Yellow Jacket,CO,81335 -Montrose,CO,81401 -Austin,CO,81410 -Bedrock,CO,81411 -Cedaredge,CO,81413 -Crawford,CO,81415 -Delta,CO,81416 -Eckert,CO,81418 -Hotchkiss,CO,81419 -Naturita,CO,81422 -Norwood,CO,81423 -Nucla,CO,81424 -Olathe,CO,81425 -Ophir,CO,81426 -Ouray,CO,81427 -Paonia,CO,81428 -Placerville,CO,81430 -Redvale,CO,81431 -Ridgway,CO,81432 -Silverton,CO,81433 -Somerset,CO,81434 -Telluride,CO,81435 -Grand Junction,CO,81501 -Grand Junction,CO,81503 -Fruitvale,CO,81504 -Grand Junction,CO,81505 -Grand Junction,CO,81506 -Clifton,CO,81520 -Fruita,CO,81521 -Gateway,CO,81522 -Loma,CO,81524 -Mack,CO,81525 -Palisade,CO,81526 -Whitewater,CO,81527 -Glenwood Springs,CO,81601 -Dinosaur,CO,81610 -Aspen,CO,81611 -Basalt,CO,81621 -Marble,CO,81623 -Collbran,CO,81624 -Craig,CO,81625 -De Beque,CO,81630 -Eagle,CO,81631 -Elk Springs,CO,81633 -Battlement Mesa,CO,81635 -Gypsum,CO,81637 -Hamilton,CO,81638 -Hayden,CO,81639 -Maybell,CO,81640 -Meeker,CO,81641 -Meredith,CO,81642 -Mesa,CO,81643 -New Castle,CO,81647 -Rangely,CO,81648 -Rifle,CO,81650 -Silt,CO,81652 -Slater,CO,81653 -Snowmass,CO,81654 -Vail,CO,81657 -Avon,CT,6001 -Bloomfield,CT,6002 -Bristol,CT,6010 -Burlington,CT,6013 -Windsorville,CT,6016 -Canaan,CT,6018 -Canton,CT,6019 -Canton Center,CT,6020 -Colebrook,CT,6021 -Collinsville,CT,6022 -East Berlin,CT,6023 -East Canaan,CT,6024 -East Granby,CT,6026 -East Hartland,CT,6027 -Ellington,CT,6029 -Falls Village,CT,6031 -Farmington,CT,6032 -Glastonbury,CT,6033 -Granby,CT,6035 -Berlin,CT,6037 -Lakeville,CT,6039 -Manchester,CT,6040 -Bolton,CT,6043 -New Britain,CT,6051 -New Britain,CT,6052 -New Britain,CT,6053 -New Hartford,CT,6057 -Norfolk,CT,6058 -North Canton,CT,6059 -North Granby,CT,6060 -Plainville,CT,6062 -Pleasant Valley,CT,6063 -Riverton,CT,6065 -Vernon Rockville,CT,6066 -Rocky Hill,CT,6067 -Salisbury,CT,6068 -Sharon,CT,6069 -Simsbury,CT,6070 -Somers,CT,6071 -South Glastonbur,CT,6073 -South Windsor,CT,6074 -Stafford Springs,CT,6076 -Suffield,CT,6078 -Tariffville,CT,6081 -Enfield,CT,6082 -Tolland,CT,6084 -Unionville,CT,6085 -East Windsor,CT,6088 -Weatogue,CT,6089 -West Granby,CT,6090 -West Simsbury,CT,6092 -West Suffield,CT,6093 -Windsor,CT,6095 -Windsor Locks,CT,6096 -Winsted,CT,6098 -Hartford,CT,6103 -Hartford,CT,6105 -Hartford,CT,6106 -W Hartford,CT,6107 -East Hartford,CT,6108 -Wethersfield,CT,6109 -W Hartford,CT,6110 -Maple Hill,CT,6111 -Hartford,CT,6112 -Hartford,CT,6114 -W Hartford,CT,6117 -East Hartford,CT,6118 -W Hartford,CT,6119 -Hartford,CT,6120 -Willimantic,CT,6226 -Amston,CT,6231 -Andover,CT,6232 -Brooklyn,CT,6234 -Chaplin,CT,6235 -Columbia,CT,6237 -Coventry,CT,6238 -Danielson,CT,6239 -Dayville,CT,6241 -Eastford,CT,6242 -East Killingly,CT,6243 -Hampton,CT,6247 -Hebron,CT,6248 -Lebanon,CT,6249 -Mansfield Center,CT,6250 -North Franklin,CT,6254 -North Grosvenord,CT,6255 -North Windham,CT,6256 -Pomfret Center,CT,6259 -Putnam,CT,6260 -Quinebaug,CT,6262 -Scotland,CT,6264 -South Windham,CT,6266 -Storrs Mansfield,CT,6268 -Thompson,CT,6277 -Warrenville,CT,6278 -West Willington,CT,6279 -Windham,CT,6280 -Woodstock,CT,6281 -Woodstock Valley,CT,6282 -New London,CT,6320 -Baltic,CT,6330 -Canterbury,CT,6331 -East Lyme,CT,6333 -Bozrah,CT,6334 -Gales Ferry,CT,6335 -Gilman,CT,6336 -Ledyard,CT,6339 -Groton,CT,6340 -Groton,CT,6349 -Jewett City,CT,6351 -Montville,CT,6353 -Moosup,CT,6354 -Mystic,CT,6355 -Niantic,CT,6357 -North Stonington,CT,6359 -Norwich,CT,6360 -Preston,CT,6365 -Oakdale,CT,6370 -Old Lyme,CT,6371 -Plainfield,CT,6374 -Quaker Hill,CT,6375 -Sterling,CT,6377 -Stonington,CT,6378 -Pawcatuck,CT,6379 -Taftville,CT,6380 -Uncasville,CT,6382 -Voluntown,CT,6384 -Waterford,CT,6385 -Ansonia,CT,6401 -Beacon Falls,CT,6403 -Branford,CT,6405 -Centerbrook,CT,6409 -Cheshire,CT,6410 -Chester,CT,6412 -Clinton,CT,6413 -Colchester,CT,6415 -Cromwell,CT,6416 -Deep River,CT,6417 -Derby,CT,6418 -Killingworth,CT,6419 -Salem,CT,6420 -Durham,CT,6422 -East Haddam,CT,6423 -East Hampton,CT,6424 -Essex,CT,6426 -Fairfield,CT,6430 -Fairfield,CT,6432 -Guilford,CT,6437 -Haddam,CT,6438 -Higganum,CT,6441 -Ivoryton,CT,6442 -Madison,CT,6443 -Marlborough,CT,6447 -Meriden,CT,6450 -Middlefield,CT,6455 -Middletown,CT,6457 -Milford,CT,6460 -Monroe,CT,6468 -Moodus,CT,6469 -Newtown,CT,6470 -North Branford,CT,6471 -Northford,CT,6472 -North Haven,CT,6473 -Old Saybrook,CT,6475 -Orange,CT,6477 -Oxford,CT,6478 -Plantsville,CT,6479 -Portland,CT,6480 -Rockfall,CT,6481 -Sandy Hook,CT,6482 -Seymour,CT,6483 -Shelton,CT,6484 -Southbury,CT,6488 -Southington,CT,6489 -Southport,CT,6490 -Wallingford,CT,6492 -Stratford,CT,6497 -Westbrook,CT,6498 -New Haven,CT,6510 -New Haven,CT,6511 -East Haven,CT,6512 -East Haven,CT,6513 -Hamden,CT,6514 -New Haven,CT,6515 -West Haven,CT,6516 -Hamden,CT,6517 -Hamden,CT,6518 -New Haven,CT,6519 -Bethany,CT,6524 -Woodbridge,CT,6525 -Bridgeport,CT,6604 -Bridgeport,CT,6605 -Bridgeport,CT,6606 -Bridgeport,CT,6607 -Bridgeport,CT,6608 -Bridgeport,CT,6610 -Trumbull,CT,6611 -Easton,CT,6612 -Waterbury,CT,6702 -Waterbury,CT,6704 -Waterbury,CT,6705 -Waterbury,CT,6706 -Waterbury,CT,6708 -Waterbury,CT,6710 -Prospect,CT,6712 -Wolcott,CT,6716 -Bantam,CT,6750 -Bethlehem,CT,6751 -Bridgewater,CT,6752 -Warren,CT,6754 -Gaylordsville,CT,6755 -Goshen,CT,6756 -Kent,CT,6757 -Lakeside,CT,6758 -Litchfield,CT,6759 -Middlebury,CT,6762 -Morris,CT,6763 -Naugatuck,CT,6770 -New Milford,CT,6776 -New Preston Marb,CT,6777 -Northfield,CT,6778 -Oakville,CT,6779 -Plymouth,CT,6782 -Roxbury,CT,6783 -Sherman,CT,6784 -South Kent,CT,6785 -Terryville,CT,6786 -Thomaston,CT,6787 -Torrington,CT,6790 -Harwinton,CT,6791 -Washington Depot,CT,6793 -Washington Depot,CT,6794 -Watertown,CT,6795 -West Cornwall,CT,6796 -Woodbury,CT,6798 -Bethel,CT,6801 -Brookfield,CT,6804 -Cos Cob,CT,6807 -Danbury,CT,6810 -Danbury,CT,6811 -New Fairfield,CT,6812 -Darien,CT,6820 -Byram,CT,6830 -Greenwich,CT,6831 -New Canaan,CT,6840 -Norwalk,CT,6850 -Norwalk,CT,6851 -Norwalk,CT,6853 -Norwalk,CT,6854 -Norwalk,CT,6855 -Old Greenwich,CT,6870 -Ridgefield,CT,6877 -Riverside,CT,6878 -Westport,CT,6880 -Weston,CT,6883 -West Redding,CT,6896 -Wilton,CT,6897 -Stamford,CT,6901 -Stamford,CT,6902 -Stamford,CT,6903 -Ridgeway,CT,6905 -Stamford,CT,6906 -Stamford,CT,6907 -Bear,DE,19701 -Newark,DE,19702 -Claymont,DE,19703 -Hockessin,DE,19707 -Middletown,DE,19709 -Newark,DE,19711 -Newark,DE,19713 -Manor,DE,19720 -Townsend,DE,19734 -Wilmington,DE,19801 -Wilmington,DE,19802 -Talleyville,DE,19803 -Newport,DE,19804 -Wilmington,DE,19805 -Wilmington,DE,19806 -Greenville,DE,19807 -Marshallton,DE,19808 -Edgemoor,DE,19809 -Edgemoor,DE,19810 -Dover,DE,19901 -Dover Afb,DE,19902 -Bethany Beach,DE,19930 -Bethel,DE,19931 -Bridgeville,DE,19933 -Camden Wyoming,DE,19934 -Clayton,DE,19938 -Dagsboro,DE,19939 -Delmar,DE,19940 -Ellendale,DE,19941 -Felton,DE,19943 -Frankford,DE,19945 -Frederica,DE,19946 -Georgetown,DE,19947 -Greenwood,DE,19950 -Harbeson,DE,19951 -Harrington,DE,19952 -Hartly,DE,19953 -Houston,DE,19954 -Laurel,DE,19956 -Lewes,DE,19958 -Lincoln,DE,19960 -Magnolia,DE,19962 -Milford,DE,19963 -Marydel,DE,19964 -Long Neck,DE,19966 -Millville,DE,19967 -Milton,DE,19968 -Millville,DE,19970 -Dewey Beach,DE,19971 -Seaford,DE,19973 -Selbyville,DE,19975 -Smyrna,DE,19977 -Viola,DE,19979 -Washington,DC,20001 -Washington,DC,20002 -Washington,DC,20003 -Washington,DC,20004 -Washington,DC,20005 -Washington,DC,20006 -Washington,DC,20007 -Washington,DC,20008 -Washington,DC,20009 -Washington,DC,20010 -Washington,DC,20011 -Washington,DC,20012 -Washington,DC,20015 -Washington,DC,20016 -Washington,DC,20017 -Washington,DC,20018 -Washington,DC,20019 -Washington,DC,20020 -Washington,DC,20024 -Washington,DC,20032 -Washington,DC,20036 -Washington,DC,20037 -Pentagon,DC,20301 -Washington,DC,20336 -Branford,FL,32008 -Bryceville,FL,32009 -Callahan,FL,32011 -Day,FL,32013 -Elkton,FL,32033 -Amelia Island,FL,32034 -Fort White,FL,32038 -Glen Saint Mary,FL,32040 -Green Cove Sprin,FL,32043 -Hampton,FL,32044 -Hilliard,FL,32046 -Jasper,FL,32052 -Jennings,FL,32053 -Lake Butler,FL,32054 -Lake City,FL,32055 -Lawtey,FL,32058 -Lee,FL,32059 -Boys Ranch,FL,32060 -Lulu,FL,32061 -Mc Alpin,FL,32062 -Macclenny,FL,32063 -Orange Park,FL,32065 -Mayo,FL,32066 -Middleburg,FL,32068 -O Brien,FL,32071 -Orange Park,FL,32073 -Ponte Vedra Beac,FL,32082 -Raiford,FL,32083 -Saint Augustine,FL,32084 -Saint Augustine,FL,32086 -Sanderson,FL,32087 -Starke,FL,32091 -Saint Augustine,FL,32092 -Wellborn,FL,32094 -Saint Augustine,FL,32095 -White Springs,FL,32096 -Yulee,FL,32097 -Astor,FL,32102 -Bunnell,FL,32110 -Crescent City,FL,32112 -Citra,FL,32113 -Daytona Beach,FL,32114 -Holly Hill,FL,32117 -Daytona Beach,FL,32118 -Dunlawton,FL,32119 -Port Orange,FL,32124 -Port Orange,FL,32127 -De Leon Springs,FL,32130 -East Palatka,FL,32131 -Edgewater,FL,32132 -Salt Springs,FL,32134 -Flagler Beach,FL,32136 -Palm Coast,FL,32137 -Georgetown,FL,32139 -Florahome,FL,32140 -Edgewater,FL,32141 -Hastings,FL,32145 -Interlachen,FL,32148 -Lady Lake,FL,32159 -New Smyrna Beach,FL,32168 -New Smyrna Beach,FL,32169 -Ormond Beach,FL,32174 -Ormond Beach,FL,32176 -Palatka,FL,32177 -Ocklawaha,FL,32179 -Pierson,FL,32180 -Pomona Park,FL,32181 -San Mateo,FL,32187 -Satsuma,FL,32189 -Seville,FL,32190 -Weirsdale,FL,32195 -Jacksonville,FL,32202 -Jacksonville,FL,32204 -Jacksonville,FL,32205 -Jacksonville,FL,32206 -Jacksonville,FL,32207 -Jacksonville,FL,32208 -Jacksonville,FL,32209 -Jacksonville,FL,32210 -Jacksonville,FL,32211 -Jacksonville N A,FL,32212 -Cecil Field Nas,FL,32215 -Jacksonville,FL,32216 -Jacksonville,FL,32217 -Jacksonville,FL,32218 -Jacksonville,FL,32219 -Jacksonville,FL,32220 -Jacksonville,FL,32221 -Jacksonville,FL,32222 -Jacksonville,FL,32223 -Jacksonville,FL,32224 -Jacksonville,FL,32225 -Jacksonville,FL,32226 -Jacksonville Bea,FL,32227 -Atlantic Beach,FL,32233 -Baldwin,FL,32234 -Jacksonville,FL,32244 -Jacksonville Bea,FL,32250 -Jacksonville,FL,32256 -Jacksonville,FL,32257 -Jacksonville,FL,32258 -Jacksonville,FL,32259 -Neptune Beach,FL,32266 -Tallahassee,FL,32301 -Tallahassee,FL,32303 -Tallahassee,FL,32304 -Tallahassee,FL,32306 -Tallahassee,FL,32308 -Tallahassee,FL,32310 -Tallahassee,FL,32311 -Tallahassee,FL,32312 -Apalachicola,FL,32320 -Bristol,FL,32321 -Carrabelle,FL,32322 -Chattahoochee,FL,32324 -Crawfordville,FL,32327 -Saint George Isl,FL,32328 -Greenville,FL,32331 -Havana,FL,32333 -Hosford,FL,32334 -Lamont,FL,32336 -Madison,FL,32340 -Monticello,FL,32344 -Panacea,FL,32346 -Perry,FL,32347 -Pinetta,FL,32350 -Quincy,FL,32351 -Salem,FL,32356 -Sopchoppy,FL,32358 -Steinhatchee,FL,32359 -Panama City,FL,32401 -Panama City,FL,32403 -Panama City,FL,32404 -Panama City,FL,32405 -Panama City Beac,FL,32407 -Panama City Beac,FL,32408 -Southport,FL,32409 -Panama City Beac,FL,32413 -Alford,FL,32420 -Altha,FL,32421 -Bascom,FL,32423 -Blountstown,FL,32424 -Bonifay,FL,32425 -Campbellton,FL,32426 -Caryville,FL,32427 -Chipley,FL,32428 -Clarksville,FL,32430 -Cottondale,FL,32431 -De Funiak Spring,FL,32433 -Ebro,FL,32437 -Fountain,FL,32438 -Freeport,FL,32439 -Graceville,FL,32440 -Grand Ridge,FL,32442 -Greenwood,FL,32443 -Lynn Haven,FL,32444 -Malone,FL,32445 -Marianna,FL,32446 -Kinard,FL,32449 -Ponce De Leon,FL,32455 -Port Saint Joe,FL,32456 -Santa Rosa Beach,FL,32459 -Sneads,FL,32460 -Vernon,FL,32462 -Westville,FL,32464 -Wewahitchka,FL,32465 -Youngstown,FL,32466 -Pensacola,FL,32501 -Pensacola,FL,32503 -Pensacola,FL,32504 -Pensacola,FL,32505 -Pensacola,FL,32506 -Pensacola,FL,32507 -Pensacola,FL,32508 -Pensacola,FL,32514 -Pensacola,FL,32526 -Baker,FL,32531 -Cantonment,FL,32533 -Pensacola,FL,32534 -Century,FL,32535 -Crestview,FL,32536 -Sandestin,FL,32541 -Eglin A F B,FL,32542 -Fort Walton Beac,FL,32547 -Fort Walton Beac,FL,32548 -Gulf Breeze,FL,32561 -Holt,FL,32564 -Jay,FL,32565 -Navarre,FL,32566 -Laurel Hill,FL,32567 -Walnut Hill,FL,32568 -Mary Esther,FL,32569 -Milton,FL,32570 -Pace,FL,32571 -Niceville,FL,32578 -Shalimar,FL,32579 -Valparaiso,FL,32580 -Milton,FL,32583 -Gainesville,FL,32601 -Gainesville,FL,32603 -Gainesville,FL,32605 -Gainesville,FL,32606 -Gainesville,FL,32607 -Gainesville,FL,32608 -Gainesville,FL,32609 -Gainesville,FL,32611 -Santa Fe,FL,32615 -Anthony,FL,32617 -Archer,FL,32618 -Bell,FL,32619 -32620,FL,32620 -Bronson,FL,32621 -Brooker,FL,32622 -Cedar Key,FL,32625 -Chiefland,FL,32626 -32629,FL,32629 -32630,FL,32630 -Earleton,FL,32631 -32636,FL,32636 -Hawthorne,FL,32640 -32642,FL,32642 -High Springs,FL,32643 -32646,FL,32646 -Horseshoe Beach,FL,32648 -32649,FL,32649 -32650,FL,32650 -32652,FL,32652 -Keystone Heights,FL,32656 -32661,FL,32661 -32665,FL,32665 -Melrose,FL,32666 -Micanopy,FL,32667 -Morriston,FL,32668 -Newberry,FL,32669 -32670,FL,32670 -32671,FL,32671 -32672,FL,32672 -32673,FL,32673 -32674,FL,32674 -32675,FL,32675 -32676,FL,32676 -Old Town,FL,32680 -32684,FL,32684 -Reddick,FL,32686 -32688,FL,32688 -32691,FL,32691 -Trenton,FL,32693 -Waldo,FL,32694 -Williston,FL,32696 -32698,FL,32698 -Altamonte Spring,FL,32701 -Altoona,FL,32702 -Hunt Club,FL,32703 -Casselberry,FL,32707 -Winter Springs,FL,32708 -Christmas,FL,32709 -Apopka,FL,32712 -Debary,FL,32713 -Forest City,FL,32714 -Deland,FL,32720 -Deland,FL,32724 -Deltona,FL,32725 -Eustis,FL,32726 -Fern Park,FL,32730 -Geneva,FL,32732 -Grand Island,FL,32735 -Deltona,FL,32738 -Lake Helen,FL,32744 -Heathrow,FL,32746 -Longwood,FL,32750 -Eatonville,FL,32751 -Mims,FL,32754 -Mount Dora,FL,32757 -Oak Hill,FL,32759 -Orange City,FL,32763 -Osteen,FL,32764 -Oviedo,FL,32765 -Chuluota,FL,32766 -Paisley,FL,32767 -Sanford,FL,32771 -Sanford,FL,32773 -Sorrento,FL,32776 -Tavares,FL,32778 -Springs Plaza,FL,32779 -Titusville,FL,32780 -Dona Vista,FL,32784 -Winter Park,FL,32789 -Aloma,FL,32792 -Titusville,FL,32796 -Zellwood,FL,32798 -Orlando,FL,32801 -Orlando,FL,32803 -Fairvilla,FL,32804 -Orlando,FL,32805 -Orlando,FL,32806 -Azalea Park,FL,32807 -Pine Hills,FL,32808 -Pine Castle,FL,32809 -Lockhart,FL,32810 -Orlo Vista,FL,32811 -Orlando,FL,32812 -Naval Training C,FL,32813 -Kennedy Space Ce,FL,32815 -Union Park,FL,32817 -Orlando,FL,32818 -Sand Lake,FL,32819 -Union Park,FL,32820 -Orlando,FL,32821 -Ventura,FL,32822 -Orlando,FL,32824 -Orlando,FL,32825 -Orlando,FL,32826 -Orlando,FL,32827 -Orlando,FL,32828 -Orlando,FL,32829 -Lake Buena Vista,FL,32830 -Orlando,FL,32831 -Orlando,FL,32832 -Union Park,FL,32833 -Orlando,FL,32835 -Orlando,FL,32836 -Orlando,FL,32837 -Orlando,FL,32839 -Melbourne,FL,32901 -Indialantic,FL,32903 -Melbourne Villag,FL,32904 -Palm Bay,FL,32905 -Palm Bay,FL,32907 -Palm Bay,FL,32908 -Palm Bay,FL,32909 -Cape Canaveral,FL,32920 -Cocoa,FL,32922 -Patrick A F B,FL,32925 -Cocoa,FL,32926 -Port Saint John,FL,32927 -Cocoa Beach,FL,32931 -Eau Gallie,FL,32934 -Melbourne,FL,32935 -Indian Harbor Be,FL,32937 -Melbourne,FL,32940 -Fellsmere,FL,32948 -Melbourne Beach,FL,32951 -Merritt Island,FL,32952 -Merritt Island,FL,32953 -Rockledge,FL,32955 -Sebastian,FL,32958 -Vero Beach,FL,32960 -Vero Beach,FL,32962 -Indian River Sho,FL,32963 -Vero Beach,FL,32966 -Vero Beach,FL,32967 -Vero Beach,FL,32968 -Barefoot Bay,FL,32976 -Dania,FL,33004 -Hallandale,FL,33009 -Hialeah,FL,33010 -Hialeah,FL,33012 -Hialeah,FL,33013 -Hialeah,FL,33014 -Hialeah,FL,33015 -Hialeah,FL,33016 -Hollywood,FL,33019 -Hollywood,FL,33020 -Hollywood,FL,33021 -Miramar,FL,33023 -Pembroke Pines,FL,33024 -Hollywood,FL,33025 -Hollywood,FL,33026 -Hollywood,FL,33027 -Hollywood,FL,33028 -Pembroke Pines,FL,33029 -Homestead,FL,33030 -Homestead,FL,33031 -Princeton,FL,33032 -Homestead,FL,33033 -Florida City,FL,33034 -Homestead,FL,33035 -Islamorada,FL,33036 -Ocean Reef,FL,33037 -Homestead Air Fo,FL,33039 -Naval Air Statio,FL,33040 -Summerland Key,FL,33042 -Big Pine Key,FL,33043 -Marathon,FL,33050 -Opa Locka,FL,33054 -Carol City,FL,33055 -Carol City,FL,33056 -Pompano Beach,FL,33060 -Pompano Beach,FL,33062 -Margate,FL,33063 -Lighthouse Point,FL,33064 -Coral Springs,FL,33065 -Margate,FL,33066 -North Coral Spri,FL,33067 -Pompano Beach,FL,33068 -Pompano Beach,FL,33069 -Tavernier,FL,33070 -Pompano Beach,FL,33071 -Pompano Beach,FL,33073 -Pompano Beach,FL,33076 -Miami,FL,33122 -Miami,FL,33125 -Miami,FL,33126 -Miami,FL,33127 -Miami,FL,33128 -Miami,FL,33129 -Miami,FL,33130 -Miami,FL,33131 -Miami,FL,33132 -Coral Gables,FL,33133 -Coral Gables,FL,33134 -Miami,FL,33135 -Miami,FL,33136 -Miami,FL,33137 -Miami Shores,FL,33138 -Carl Fisher,FL,33139 -Miami,FL,33140 -North Bay Villag,FL,33141 -Miami,FL,33142 -South Miami,FL,33143 -Miami,FL,33144 -Coral Gables,FL,33145 -Coral Gables,FL,33146 -Miami,FL,33147 -Key Biscayne,FL,33149 -Miami,FL,33150 -Bal Harbour,FL,33154 -Miami,FL,33155 -Kendall,FL,33156 -Perrine,FL,33157 -Miami,FL,33158 -North Miami Beac,FL,33160 -North Miami,FL,33161 -North Miami Beac,FL,33162 -Olympia Heights,FL,33165 -Miami Springs,FL,33166 -Miami,FL,33167 -Miami,FL,33168 -Miami,FL,33169 -Quail Heights,FL,33170 -Miami,FL,33172 -Miami,FL,33173 -Miami,FL,33174 -Olympia Heights,FL,33175 -Miami,FL,33176 -Quail Heights,FL,33177 -Miami,FL,33178 -Miami,FL,33179 -Ojus,FL,33180 -North Miami Beac,FL,33181 -Miami,FL,33182 -Miami,FL,33183 -Miami,FL,33184 -Olympia Heights,FL,33185 -Miami,FL,33186 -Quail Heights,FL,33187 -Quail Heights,FL,33189 -Quail Heights,FL,33190 -Miami,FL,33193 -Miami,FL,33196 -Fort Lauderdale,FL,33301 -Oakland Park,FL,33304 -Oakland Park,FL,33305 -Oakland Park,FL,33306 -Oakland Park,FL,33308 -Fort Lauderdale,FL,33309 -Fort Lauderdale,FL,33311 -Fort Lauderdale,FL,33312 -City Of Sunrise,FL,33313 -Davie,FL,33314 -Fort Lauderdale,FL,33315 -Fort Lauderdale,FL,33316 -Plantation,FL,33317 -Tamarac,FL,33319 -Tamarac,FL,33321 -Sunrise,FL,33322 -Sunrise,FL,33323 -Plantation,FL,33324 -Davie,FL,33325 -Davie,FL,33326 -Fort Lauderdale,FL,33327 -Davie,FL,33328 -Davie,FL,33330 -Davie,FL,33331 -Davie,FL,33332 -Oakland Park,FL,33334 -Tamarac,FL,33351 -Fort Lauderdale,FL,33388 -West Palm Beach,FL,33401 -Lake Park,FL,33403 -Riviera Beach,FL,33404 -West Palm Beach,FL,33405 -Glen Ridge,FL,33406 -West Palm Beach,FL,33407 -North Palm Beach,FL,33408 -Haverhill,FL,33409 -Palm Beach Garde,FL,33410 -Royal Palm Beach,FL,33411 -West Palm Beach,FL,33412 -West Palm Beach,FL,33413 -West Palm Beach,FL,33414 -Haverhill,FL,33415 -Haverhill,FL,33417 -Palm Beach Garde,FL,33418 -Boynton Beach,FL,33426 -Boca Raton,FL,33428 -Belle Glade,FL,33430 -Boca Raton,FL,33431 -Boca Raton,FL,33432 -Boca Raton,FL,33433 -Boca Raton,FL,33434 -Briny Breezes,FL,33435 -Village Of Golf,FL,33436 -Boynton Beach,FL,33437 -Canal Point,FL,33438 -Clewiston,FL,33440 -Deerfield Beach,FL,33441 -Deerfield Beach,FL,33442 -Delray Beach,FL,33444 -Delray Beach,FL,33445 -Delray Beach,FL,33446 -Hobe Sound,FL,33455 -Jupiter,FL,33458 -Lake Worth,FL,33460 -Lake Worth,FL,33461 -Lantana,FL,33462 -Greenacres,FL,33463 -Lake Worth,FL,33467 -Tequesta,FL,33469 -Loxahatchee,FL,33470 -Moore Haven,FL,33471 -Pahokee,FL,33476 -Jupiter,FL,33477 -Jupiter,FL,33478 -Palm Beach,FL,33480 -Delray Beach,FL,33483 -Delray Beach,FL,33484 -Boca Raton,FL,33486 -Highland Beach,FL,33487 -South Bay,FL,33493 -Boca Raton,FL,33496 -Boca Raton,FL,33498 -Brandon,FL,33510 -Brandon,FL,33511 -Bushnell,FL,33513 -Center Hill,FL,33514 -Ridge Manor,FL,33525 -Dover,FL,33527 -Gibsonton,FL,33534 -Lake Panasoffkee,FL,33538 -Zephyrhills,FL,33540 -Zephyrhills,FL,33541 -Wesley Chapel,FL,33543 -Zephyrhills,FL,33544 -Lithia,FL,33547 -Lutz,FL,33549 -Odessa,FL,33556 -Plant City,FL,33565 -Plant City,FL,33566 -Plant City,FL,33567 -Riverview,FL,33569 -Ruskin,FL,33570 -Apollo Beach,FL,33572 -Sun City Center,FL,33573 -San Antonio,FL,33576 -Seffner,FL,33584 -Thonotosassa,FL,33592 -Valrico,FL,33594 -Ridge Manor Esta,FL,33597 -Wimauma,FL,33598 -Tampa,FL,33602 -Tampa,FL,33603 -Tampa,FL,33604 -Tampa,FL,33605 -Tampa,FL,33606 -Tampa,FL,33607 -Tampa,FL,33608 -Tampa,FL,33609 -Tampa,FL,33610 -Tampa,FL,33611 -Tampa,FL,33612 -Tampa,FL,33613 -Tampa,FL,33614 -Tampa,FL,33615 -Tampa,FL,33616 -Tampa,FL,33617 -Carrollwood,FL,33618 -Tampa,FL,33619 -Tampa,FL,33620 -Carrollwood,FL,33624 -Tampa,FL,33625 -Tampa,FL,33626 -Tampa,FL,33629 -Tampa,FL,33634 -Tampa,FL,33635 -Tampa,FL,33637 -Tampa,FL,33647 -Saint Petersburg,FL,33701 -Saint Petersburg,FL,33702 -Saint Petersburg,FL,33703 -Saint Petersburg,FL,33704 -Saint Petersburg,FL,33705 -Saint Petersburg,FL,33706 -Saint Petersburg,FL,33707 -Madeira Beach,FL,33708 -Kenneth City,FL,33709 -Saint Petersburg,FL,33710 -Saint Petersburg,FL,33711 -Saint Petersburg,FL,33712 -Saint Petersburg,FL,33713 -Saint Petersburg,FL,33714 -Tierra Verde,FL,33715 -Saint Petersburg,FL,33716 -Lakeland,FL,33801 -Lakeland,FL,33803 -Lakeland,FL,33805 -Lakeland,FL,33809 -Southside,FL,33811 -Southside,FL,33813 -Arcadia,FL,33821 -Auburndale,FL,33823 -Avon Park,FL,33825 -Babson Park,FL,33827 -Bartow,FL,33830 -Duette,FL,33834 -Davenport,FL,33837 -Dundee,FL,33838 -Eagle Lake,FL,33839 -Fort Meade,FL,33841 -Frostproof,FL,33843 -Grenelefe,FL,33844 -Kathleen,FL,33849 -Lake Alfred,FL,33850 -Lake Placid,FL,33852 -Lake Wales,FL,33853 -Lorida,FL,33857 -Mulberry,FL,33860 -Ona,FL,33865 -Polk City,FL,33868 -Sebring,FL,33870 -Sebring,FL,33872 -Wauchula,FL,33873 -Eloise,FL,33880 -Winter Haven,FL,33881 -Cypress Gardens,FL,33884 -Zolfo Springs,FL,33890 -Fort Myers,FL,33901 -Fort Myers,FL,33903 -Cape Coral Centr,FL,33904 -Tice,FL,33905 -Fort Myers,FL,33907 -Fort Myers,FL,33908 -Cape Coral Centr,FL,33909 -Fort Myers,FL,33912 -Fort Myers,FL,33913 -Cape Coral Centr,FL,33914 -Fort Myers,FL,33916 -Fort Myers,FL,33917 -College Parkway,FL,33919 -Alva,FL,33920 -Bokeelia,FL,33922 -Bonita Springs,FL,33923 -Captiva,FL,33924 -El Jobean,FL,33927 -Estero,FL,33928 -Fort Myers Beach,FL,33931 -Immokalee,FL,33934 -Labelle,FL,33935 -Lehigh Acres,FL,33936 -Marco Island,FL,33937 -Naples,FL,33940 -Naples,FL,33942 -Ochopee,FL,33943 -Placida,FL,33946 -Placida,FL,33947 -Port Charlotte,FL,33948 -Punta Gorda,FL,33950 -Port Charlotte,FL,33952 -Port Charlotte,FL,33953 -Port Charlotte,FL,33954 -Punta Gorda,FL,33955 -Saint James City,FL,33956 -Sanibel,FL,33957 -Venus,FL,33960 -Naples,FL,33961 -Naples,FL,33962 -Naples,FL,33963 -Naples,FL,33964 -Lehigh Acres,FL,33971 -Port Charlotte,FL,33980 -Port Charlotte,FL,33981 -Punta Gorda,FL,33982 -Punta Gorda,FL,33983 -Cape Coral Centr,FL,33990 -Cape Coral Centr,FL,33991 -Naples,FL,33999 -Braden River,FL,34202 -Braden River,FL,34203 -Westgate,FL,34205 -College Plaza,FL,34207 -Braden River,FL,34208 -Palma Sola,FL,34209 -Bradenton,FL,34210 -Cortez,FL,34215 -Bradenton Beach,FL,34217 -Parrish,FL,34219 -Palmetto,FL,34221 -Ellenton,FL,34222 -Englewood,FL,34223 -Grove City,FL,34224 -Whitney Beach,FL,34228 -Osprey,FL,34229 -South Trail,FL,34231 -Forest Lakes,FL,34232 -Sarasota,FL,34233 -Meadows Village,FL,34234 -Sarasota,FL,34235 -Sarasota,FL,34236 -Sarasota,FL,34237 -Sarasota Square,FL,34238 -Sarasota,FL,34239 -Sarasota,FL,34240 -Sarasota,FL,34241 -Crescent Beach,FL,34242 -Sarasota,FL,34243 -Myakka City,FL,34251 -Nokomis,FL,34275 -Venice,FL,34285 -North Port,FL,34287 -Mid Venice,FL,34292 -South Venice,FL,34293 -Brooksville,FL,34601 -Ridge Manor West,FL,34602 -Spring Hill,FL,34606 -Spring Hill,FL,34607 -Spring Hill,FL,34608 -Spring Hill,FL,34609 -Shady Hills,FL,34610 -Brooksville,FL,34613 -Brooksville,FL,34614 -Clearwater,FL,34615 -Clearwater,FL,34616 -Clearwater,FL,34619 -Clearwater,FL,34620 -Clearwater,FL,34621 -Airport,FL,34622 -Clearwater,FL,34623 -Clearwater,FL,34624 -Clearwater,FL,34625 -Clearwater,FL,34630 -Belleair Beach,FL,34635 -Land O Lakes,FL,34639 -Belleair Bluffs,FL,34640 -Largo,FL,34641 -Seminole,FL,34642 -Largo,FL,34643 -Largo,FL,34644 -Largo,FL,34646 -Largo,FL,34647 -Largo,FL,34648 -New Port Richey,FL,34652 -New Port Richey,FL,34653 -New Port Richey,FL,34654 -New Port Richey,FL,34655 -Pinellas Park,FL,34665 -Pinellas Park,FL,34666 -Hudson,FL,34667 -Port Richey,FL,34668 -Hudson,FL,34669 -Oldsmar,FL,34677 -Palm Harbor,FL,34683 -Lake Tarpon,FL,34684 -Palm Harbor,FL,34685 -Tarpon Springs,FL,34689 -Holiday,FL,34690 -Holiday,FL,34691 -Safety Harbor,FL,34695 -Dunedin,FL,34698 -Astatula,FL,34705 -Clermont,FL,34711 -Fruitland Park,FL,34731 -Groveland,FL,34736 -Howey In The Hil,FL,34737 -Kenansville,FL,34739 -Kissimmee,FL,34741 -Buena Ventura La,FL,34743 -Kissimmee,FL,34744 -Kissimmee,FL,34746 -Leesburg,FL,34748 -Montverde,FL,34756 -Kissimmee,FL,34758 -Poinciana,FL,34759 -Ocoee,FL,34761 -Okahumpka,FL,34762 -Saint Cloud,FL,34769 -Saint Cloud,FL,34771 -Saint Cloud,FL,34772 -Saint Cloud,FL,34773 -Wildwood,FL,34785 -Windermere,FL,34786 -Winter Garden,FL,34787 -Haines Creek,FL,34788 -Yalaha,FL,34797 -Fort Pierce,FL,34945 -Fort Pierce,FL,34946 -Fort Pierce,FL,34947 -Fort Pierce,FL,34949 -Fort Pierce,FL,34950 -Fort Pierce,FL,34951 -Port Saint Lucie,FL,34952 -Port Saint Lucie,FL,34953 -Indiantown,FL,34956 -Jensen Beach,FL,34957 -Basinger,FL,34972 -Okeechobee,FL,34974 -Fort Pierce,FL,34981 -Fort Pierce,FL,34982 -Port Saint Lucie,FL,34983 -Port Saint Lucie,FL,34984 -Port Saint Lucie,FL,34986 -Port Saint Lucie,FL,34987 -Port Saint Lucie,FL,34988 -Palm City,FL,34990 -Stuart,FL,34994 -Stuart,FL,34996 -Stuart,FL,34997 -Austell,GA,30001 -Avondale Estates,GA,30002 -Clarkston,GA,30021 -Conley,GA,30027 -Decatur,GA,30030 -Decatur,GA,30032 -Decatur,GA,30033 -Decatur,GA,30034 -Decatur,GA,30035 -Lithonia,GA,30038 -Ellenwood,GA,30049 -Forest Park,GA,30050 -Lithia Springs,GA,30057 -Centerville Gwin,GA,30058 -Mableton,GA,30059 -Marietta,GA,30060 -Marietta,GA,30062 -Marietta,GA,30064 -Marietta,GA,30066 -Marietta,GA,30067 -Marietta,GA,30068 -Norcross,GA,30071 -Powder Springs,GA,30073 -Roswell,GA,30075 -Roswell,GA,30076 -Scottdale,GA,30079 -Smyrna,GA,30080 -Smyrna,GA,30082 -Stone Mountain,GA,30083 -Tucker,GA,30084 -Stone Mountain,GA,30087 -Stone Mountain,GA,30088 -Norcross,GA,30092 -Norcross,GA,30093 -Acworth,GA,30101 -Adairsville,GA,30103 -Aragon,GA,30104 -Armuchee,GA,30105 -Ball Ground,GA,30107 -Bowdon,GA,30108 -Bremen,GA,30110 -Buchanan,GA,30113 -Canton,GA,30114 -Carrollton,GA,30117 -Cartersville,GA,30120 -Cave Spring,GA,30124 -Cedartown,GA,30125 -Cumming,GA,30130 -Dallas,GA,30132 -Douglasville,GA,30134 -Douglasville,GA,30135 -Duluth,GA,30136 -Emerson,GA,30137 -Fairmount,GA,30139 -Felton,GA,30140 -Hiram,GA,30141 -Jasper,GA,30143 -Kennesaw,GA,30144 -Kingston,GA,30145 -Lindale,GA,30147 -Marble Hill,GA,30148 -Rockmart,GA,30153 -Rome,GA,30161 -Rome,GA,30165 -Roopville,GA,30170 -Pine Log,GA,30171 -Silver Creek,GA,30173 -Suwanee,GA,30174 -Talking Rock,GA,30175 -Tallapoosa,GA,30176 -Tate,GA,30177 -Taylorsville,GA,30178 -Temple,GA,30179 -Villa Rica,GA,30180 -Waco,GA,30182 -Waleska,GA,30183 -White,GA,30184 -Whitesburg,GA,30185 -Winston,GA,30187 -Woodstock,GA,30188 -Alpharetta,GA,30201 -Alpharetta,GA,30202 -Auburn,GA,30203 -Barnesville,GA,30204 -Brooks,GA,30205 -Concord,GA,30206 -Conyers,GA,30207 -Conyers,GA,30208 -Starrsville,GA,30209 -Dacula,GA,30211 -Fairburn,GA,30213 -Woolsey,GA,30214 -Flovilla,GA,30216 -Glenn,GA,30217 -Alvaton,GA,30218 -Grantville,GA,30220 -Grayson,GA,30221 -Stovall,GA,30222 -Griffin,GA,30223 -Hampton,GA,30228 -Hogansville,GA,30230 -Jackson,GA,30233 -Jenkinsburg,GA,30234 -Jonesboro,GA,30236 -La Grange,GA,30240 -Lawrenceville,GA,30243 -Lawrenceville,GA,30244 -Lawrenceville,GA,30245 -Lilburn,GA,30247 -Locust Grove,GA,30248 -Loganville,GA,30249 -Luthersville,GA,30251 -Mc Donough,GA,30253 -Mansfield,GA,30255 -Meansville,GA,30256 -Milner,GA,30257 -Molena,GA,30258 -Moreland,GA,30259 -Morrow,GA,30260 -Newborn,GA,30262 -Raymond,GA,30263 -Newnan,GA,30265 -Oxford,GA,30267 -Palmetto,GA,30268 -Peachtree City,GA,30269 -Rex,GA,30273 -Riverdale,GA,30274 -Senoia,GA,30276 -Sharpsburg,GA,30277 -Snellville,GA,30278 -Social Circle,GA,30279 -Stockbridge,GA,30281 -The Rock,GA,30285 -Thomaston,GA,30286 -Tyrone,GA,30290 -Union City,GA,30291 -Williamson,GA,30292 -Woodbury,GA,30293 -Zebulon,GA,30295 -Riverdale,GA,30296 -Atlanta,GA,30303 -Atlanta,GA,30305 -Atlanta,GA,30306 -Atlanta,GA,30307 -Atlanta,GA,30308 -Atlanta,GA,30309 -Atlanta,GA,30310 -Atlanta,GA,30311 -Atlanta,GA,30312 -Atlanta,GA,30313 -Atlanta,GA,30314 -Atlanta,GA,30315 -Atlanta,GA,30316 -Atlanta,GA,30317 -Atlanta,GA,30318 -Atlanta,GA,30319 -Atlanta,GA,30324 -Atlanta,GA,30326 -Atlanta,GA,30327 -Sandy Springs,GA,30328 -Atlanta,GA,30329 -Atlanta,GA,30330 -Atlanta,GA,30331 -Atlanta,GA,30334 -Atlanta,GA,30336 -College Park,GA,30337 -Dunwoody,GA,30338 -Atlanta,GA,30339 -Doraville,GA,30340 -Chamblee,GA,30341 -Atlanta,GA,30342 -East Point,GA,30344 -Atlanta,GA,30345 -Atlanta,GA,30346 -Atlanta,GA,30349 -Atlanta,GA,30350 -Hapeville,GA,30354 -Atlanta,GA,30360 -Oak Park,GA,30401 -Ailey,GA,30410 -Alamo,GA,30411 -Bartow,GA,30413 -Brooklet,GA,30415 -Claxton,GA,30417 -Cobbtown,GA,30420 -Collins,GA,30421 -Garfield,GA,30425 -Girard,GA,30426 -Glennville,GA,30427 -Glenwood,GA,30428 -Louisville,GA,30434 -Lyons,GA,30436 -Manassas,GA,30438 -Metter,GA,30439 -Midville,GA,30441 -Millen,GA,30442 -Mount Vernon,GA,30445 -Newington,GA,30446 -Portal,GA,30450 -Register,GA,30452 -Reidsville,GA,30453 -Rockledge,GA,30454 -Rocky Ford,GA,30455 -Sardis,GA,30456 -Soperton,GA,30457 -Statesboro,GA,30458 -Hiltonia,GA,30467 -Tarrytown,GA,30470 -Twin City,GA,30471 -Uvalda,GA,30473 -Vidalia,GA,30474 -Wadley,GA,30477 -Gainesville,GA,30501 -Gainesville,GA,30504 -Gainesville,GA,30506 -Gainesville,GA,30507 -Alto,GA,30510 -Baldwin,GA,30511 -Blairsville,GA,30512 -Blue Ridge,GA,30513 -Bowersville,GA,30516 -Braselton,GA,30517 -Buford,GA,30518 -Canon,GA,30520 -Carnesville,GA,30521 -Cherrylog,GA,30522 -Clarkesville,GA,30523 -Clayton,GA,30525 -Clermont,GA,30527 -Cleveland,GA,30528 -Commerce,GA,30529 -Cornelia,GA,30531 -Dahlonega,GA,30533 -Juno,GA,30534 -Demorest,GA,30535 -Sky Valley,GA,30537 -Eastanollee,GA,30538 -East Ellijay,GA,30539 -Ellijay,GA,30540 -Epworth,GA,30541 -Flowery Branch,GA,30542 -Gillsville,GA,30543 -Helen,GA,30545 -Hiawassee,GA,30546 -Homer,GA,30547 -Hoschton,GA,30548 -Jefferson,GA,30549 -Lakemont,GA,30552 -Lavonia,GA,30553 -Lula,GA,30554 -Mc Caysville,GA,30555 -Martin,GA,30557 -Maysville,GA,30558 -Mineral Bluff,GA,30559 -Morganton,GA,30560 -Mount Airy,GA,30563 -Murrayville,GA,30564 -Nicholson,GA,30565 -Oakwood,GA,30566 -Pendergrass,GA,30567 -Rabun Gap,GA,30568 -Sautee Nacoochee,GA,30571 -Suches,GA,30572 -Talmo,GA,30575 -Tiger,GA,30576 -Toccoa,GA,30577 -Young Harris,GA,30582 -Athens,GA,30601 -Athens,GA,30605 -Athens,GA,30606 -Athens,GA,30607 -Arnoldsville,GA,30619 -Bethlehem,GA,30620 -Bishop,GA,30621 -Bogart,GA,30622 -Bowman,GA,30624 -Buckhead,GA,30625 -Carlton,GA,30627 -Colbert,GA,30628 -Comer,GA,30629 -Crawford,GA,30630 -Crawfordville,GA,30631 -Danielsville,GA,30633 -Dewy Rose,GA,30634 -Elberton,GA,30635 -Good Hope,GA,30641 -Greensboro,GA,30642 -Hartwell,GA,30643 -Hull,GA,30646 -Lexington,GA,30648 -Madison,GA,30650 -Monroe,GA,30655 -Philomath,GA,30660 -Royston,GA,30662 -Rutledge,GA,30663 -Statham,GA,30666 -Stephens,GA,30667 -Danburg,GA,30668 -Union Point,GA,30669 -Washington,GA,30673 -Watkinsville,GA,30677 -White Plains,GA,30678 -Winder,GA,30680 -Winterville,GA,30683 -Calhoun,GA,30701 -Chatsworth,GA,30705 -Chickamauga,GA,30707 -Cisco,GA,30708 -Cohutta,GA,30710 -Crandall,GA,30711 -Dalton,GA,30720 -Dalton,GA,30721 -Flintstone,GA,30725 -La Fayette,GA,30728 -Lyerly,GA,30730 -Cloudland,GA,30731 -Plainville,GA,30733 -Ranger,GA,30734 -Hill City,GA,30735 -Ringgold,GA,30736 -Rising Fawn,GA,30738 -Rock Spring,GA,30739 -Rocky Face,GA,30740 -Rossville,GA,30741 -Fort Oglethorpe,GA,30742 -Sugar Valley,GA,30746 -Summerville,GA,30747 -Lookout Mountain,GA,30750 -Trenton,GA,30752 -Trion,GA,30753 -Tunnel Hill,GA,30755 -Wildwood,GA,30757 -Appling,GA,30802 -Avera,GA,30803 -Blythe,GA,30805 -Dearing,GA,30808 -Evans,GA,30809 -Gibson,GA,30810 -Grovetown,GA,30813 -Harlem,GA,30814 -Hephzibah,GA,30815 -Keysville,GA,30816 -Lincolnton,GA,30817 -Matthews,GA,30818 -Mitchell,GA,30820 -Norwood,GA,30821 -Perkins,GA,30822 -Stapleton,GA,30823 -Thomson,GA,30824 -Warrenton,GA,30828 -Waynesboro,GA,30830 -Wrens,GA,30833 -Augusta,GA,30901 -Augusta,GA,30904 -Fort Gordon,GA,30905 -Peach Orchard,GA,30906 -Martinez,GA,30907 -Forest Hills,GA,30909 -Abbeville,GA,31001 -Adrian,GA,31002 -Allentown,GA,31003 -Bonaire,GA,31005 -Butler,GA,31006 -Byromville,GA,31007 -Powersville,GA,31008 -Cadwell,GA,31009 -Chauncey,GA,31011 -Chester,GA,31012 -Cochran,GA,31014 -Cordele,GA,31015 -Culloden,GA,31016 -Danville,GA,31017 -Davisboro,GA,31018 -Dexter,GA,31019 -Dry Branch,GA,31020 -East Dublin,GA,31021 -Dudley,GA,31022 -Eastman,GA,31023 -Eatonton,GA,31024 -Elko,GA,31025 -Centerville,GA,31028 -Forsyth,GA,31029 -Fort Valley,GA,31030 -Stevens Pottery,GA,31031 -Gray,GA,31032 -Haddock,GA,31033 -Harrison,GA,31035 -Hawkinsville,GA,31036 -Helena,GA,31037 -Round Oak,GA,31038 -Ideal,GA,31041 -Irwinton,GA,31042 -Jeffersonville,GA,31044 -Jewell,GA,31045 -Juliette,GA,31046 -Kathleen,GA,31047 -Kite,GA,31049 -Knoxville,GA,31050 -Lizella,GA,31052 -Mc Intyre,GA,31054 -Mc Rae,GA,31055 -Marshallville,GA,31057 -Mauk,GA,31058 -Milan,GA,31060 -Milledgeville,GA,31061 -Montezuma,GA,31063 -Monticello,GA,31064 -Montrose,GA,31065 -Musella,GA,31066 -Oglethorpe,GA,31068 -Perry,GA,31069 -Pinehurst,GA,31070 -Pineview,GA,31071 -Pitts,GA,31072 -Rentz,GA,31075 -Reynolds,GA,31076 -Rhine,GA,31077 -Roberta,GA,31078 -Rochelle,GA,31079 -Rupert,GA,31081 -Deepstep,GA,31082 -Shady Dale,GA,31085 -Devereux,GA,31087 -Warner Robins,GA,31088 -Tennille,GA,31089 -Toomsboro,GA,31090 -Unadilla,GA,31091 -Vienna,GA,31092 -Warner Robins,GA,31093 -Warthen,GA,31094 -Wrightsville,GA,31096 -Yatesville,GA,31097 -Robins A F B,GA,31098 -Huber,GA,31201 -Macon,GA,31204 -Wilson Airport,GA,31206 -Macon,GA,31210 -Macon,GA,31211 -Allenhurst,GA,31301 -Bloomingdale,GA,31302 -Clyo,GA,31303 -Crescent,GA,31304 -Darien,GA,31305 -Ellabell,GA,31308 -Fleming,GA,31309 -Guyton,GA,31312 -Hinesville,GA,31313 -Fort Stewart,GA,31314 -Ludowici,GA,31316 -Meridian,GA,31319 -Midway,GA,31320 -Pembroke,GA,31321 -Pooler,GA,31322 -Riceboro,GA,31323 -Richmond Hill,GA,31324 -Rincon,GA,31326 -Sapelo Island,GA,31327 -Tybee Island,GA,31328 -Stillwell,GA,31329 -Townsend,GA,31331 -Savannah,GA,31401 -State College,GA,31404 -Savannah,GA,31405 -Savannah,GA,31406 -Port Wentworth,GA,31407 -Garden City,GA,31408 -Savannah,GA,31409 -Savannah,GA,31410 -Savannah,GA,31411 -M M,GA,31419 -Okefenokee,GA,31501 -Alma,GA,31510 -Ambrose,GA,31512 -Baxley,GA,31513 -Blackshear,GA,31516 -Bristol,GA,31518 -Broxton,GA,31519 -Glynco,GA,31520 -Saint Simons Isl,GA,31522 -Brunswick,GA,31525 -Jekyll Island,GA,31527 -Denton,GA,31532 -Douglas,GA,31533 -Folkston,GA,31537 -Hazlehurst,GA,31539 -Hoboken,GA,31542 -Hortense,GA,31543 -Jacksonville,GA,31544 -Jesup,GA,31545 -Kingsland,GA,31548 -Lumber City,GA,31549 -Manor,GA,31550 -Mershon,GA,31551 -Millwood,GA,31552 -Nahunta,GA,31553 -Nicholls,GA,31554 -Odum,GA,31555 -Patterson,GA,31557 -Saint Marys,GA,31558 -Screven,GA,31560 -Surrency,GA,31563 -Waverly,GA,31565 -Waynesville,GA,31566 -West Green,GA,31567 -White Oak,GA,31568 -Woodbine,GA,31569 -Clyattville,GA,31601 -Bemiss,GA,31602 -Adel,GA,31620 -Alapaha,GA,31622 -Axson,GA,31624 -Barney,GA,31625 -Boston,GA,31626 -Dixie,GA,31629 -Du Pont,GA,31630 -Fargo,GA,31631 -Hahira,GA,31632 -Cogdell,GA,31634 -Lakeland,GA,31635 -Lake Park,GA,31636 -Lenox,GA,31637 -Morven,GA,31638 -Nashville,GA,31639 -Naylor,GA,31641 -Pearson,GA,31642 -Quitman,GA,31643 -Ray City,GA,31645 -Saint George,GA,31646 -Sparks,GA,31647 -Statenville,GA,31648 -Stockton,GA,31649 -Willacoochee,GA,31650 -Albany,GA,31701 -Marine Corps Log,GA,31704 -Bridgeboro,GA,31705 -Albany,GA,31707 -Georgia Southwes,GA,31709 -Andersonville,GA,31711 -Arabi,GA,31712 -Arlington,GA,31713 -Ashburn,GA,31714 -Attapulgus,GA,31715 -Baconton,GA,31716 -Bainbridge,GA,31717 -Blakely,GA,31723 -Bluffton,GA,31724 -Brinson,GA,31725 -Bronwood,GA,31726 -Cairo,GA,31728 -Calvary,GA,31729 -Camilla,GA,31730 -Chula,GA,31733 -Climax,GA,31734 -Cobb,GA,31735 -Coleman,GA,31736 -Colquitt,GA,31737 -Coolidge,GA,31738 -Cuthbert,GA,31740 -Damascus,GA,31741 -Graves,GA,31742 -De Soto,GA,31743 -Doerun,GA,31744 -Donalsonville,GA,31745 -Edison,GA,31746 -Enigma,GA,31749 -Fitzgerald,GA,31750 -Fort Gaines,GA,31751 -Georgetown,GA,31754 -Hartsfield,GA,31756 -Iron City,GA,31759 -Irwinville,GA,31760 -Jakin,GA,31761 -Leary,GA,31762 -Leesburg,GA,31763 -Leslie,GA,31764 -Meigs,GA,31765 -Morgan,GA,31766 -Springvale,GA,31767 -Moultrie,GA,31768 -Newton,GA,31770 -Norman Park,GA,31771 -Oakfield,GA,31772 -Ochlocknee,GA,31773 -Ocilla,GA,31774 -Omega,GA,31775 -Parrott,GA,31777 -Pavo,GA,31778 -Pelham,GA,31779 -Plains,GA,31780 -Poulan,GA,31781 -Rebecca,GA,31783 -Sale City,GA,31784 -Shellman,GA,31786 -Smithville,GA,31787 -Sumner,GA,31789 -Sycamore,GA,31790 -Sylvester,GA,31791 -Thomasville,GA,31792 -Abac,GA,31794 -Ty Ty,GA,31795 -Warwick,GA,31796 -Whigham,GA,31797 -Wray,GA,31798 -Juniper,GA,31801 -Tazewell,GA,31803 -Cataula,GA,31804 -Cusseta,GA,31805 -Ellaville,GA,31806 -Ellerslie,GA,31807 -Fortson,GA,31808 -Hamilton,GA,31811 -Junction City,GA,31812 -Lumpkin,GA,31815 -Manchester,GA,31816 -Midland,GA,31820 -Omaha,GA,31821 -Pine Mountain,GA,31822 -Pine Mountain Va,GA,31823 -Preston,GA,31824 -Richland,GA,31825 -Shiloh,GA,31826 -Talbotton,GA,31827 -Upatoi,GA,31829 -Warm Springs,GA,31830 -Waverly Hall,GA,31831 -Weston,GA,31832 -West Point,GA,31833 -Woodland,GA,31836 -Columbus,GA,31901 -Columbus,GA,31903 -Columbus,GA,31904 -Custer Terrace,GA,31905 -Columbus,GA,31906 -Columbus,GA,31907 -Columbus,GA,31909 -Pinetta,GA,32350 -Aiea,HI,96701 -Captain Cook,HI,96704 -Eleele,HI,96705 -Ewa Beach,HI,96706 -Kapolei,HI,96707 -Haiku,HI,96708 -Hakalau,HI,96710 -Haleiwa,HI,96712 -Hana,HI,96713 -Hanapepe,HI,96716 -Hauula,HI,96717 -Hawaii National,HI,96718 -Hawi,HI,96719 -Hilo,HI,96720 -Princeville,HI,96722 -Holualoa,HI,96725 -Honaunau,HI,96726 -Honokaa,HI,96727 -Honomu,HI,96728 -Hoolehua,HI,96729 -Kaaawa,HI,96730 -Kahului,HI,96732 -Kailua,HI,96734 -Kailua Kona,HI,96740 -Kalaupapa,HI,96742 -Kamuela,HI,96743 -Kaneohe,HI,96744 -Kapaa,HI,96746 -Kaumakani,HI,96747 -Kaunakakai,HI,96748 -Keaau,HI,96749 -Kealakekua,HI,96750 -Kekaha,HI,96752 -Kihei,HI,96753 -Kapaau,HI,96755 -Koloa,HI,96756 -Kualapuu,HI,96757 -Kurtistown,HI,96760 -Lahaina,HI,96761 -Laie,HI,96762 -Lanai City,HI,96763 -Laupahoehoe,HI,96764 -Lihue,HI,96766 -Makawao,HI,96768 -Makaweli,HI,96769 -Maunaloa,HI,96770 -Mountain View,HI,96771 -Naalehu,HI,96772 -Ninole,HI,96773 -Ookala,HI,96774 -Paauhau,HI,96775 -Paauilo,HI,96776 -Pahala,HI,96777 -Pahoa,HI,96778 -Paia,HI,96779 -Papaaloa,HI,96780 -Papaikou,HI,96781 -Pearl City,HI,96782 -Pepeekeo,HI,96783 -Volcano,HI,96785 -Wahiawa,HI,96786 -Mililani,HI,96789 -Kula,HI,96790 -Waialua,HI,96791 -Waianae,HI,96792 -Wailuku,HI,96793 -Waimanalo,HI,96795 -Waimea,HI,96796 -Waipahu,HI,96797 -Honolulu,HI,96813 -Honolulu,HI,96814 -Honolulu,HI,96815 -Honolulu,HI,96816 -Honolulu,HI,96817 -Honolulu,HI,96818 -Honolulu,HI,96819 -Honolulu,HI,96821 -Honolulu,HI,96822 -Honolulu,HI,96825 -Honolulu,HI,96826 -Pocatello,ID,83201 -Chubbuck,ID,83202 -Fort Hall,ID,83203 -Pocatello,ID,83204 -Sterling,ID,83210 -American Falls,ID,83211 -Arbon,ID,83212 -Arco,ID,83213 -Arimo,ID,83214 -Bancroft,ID,83217 -Bern,ID,83220 -Blackfoot,ID,83221 -Challis,ID,83226 -Clayton,ID,83227 -Clifton,ID,83228 -Conda,ID,83230 -Darlington,ID,83231 -Dayton,ID,83232 -Downey,ID,83234 -Ellis,ID,83235 -Firth,ID,83236 -Franklin,ID,83237 -Geneva,ID,83238 -Grace,ID,83241 -Holbrook,ID,83243 -Inkom,ID,83245 -Lava Hot Springs,ID,83246 -Mc Cammon,ID,83250 -Mackay,ID,83251 -Malad City,ID,83252 -Patterson,ID,83253 -Montpelier,ID,83254 -Moore,ID,83255 -Ovid,ID,83260 -Paris,ID,83261 -Pingree,ID,83262 -Preston,ID,83263 -Rockland,ID,83271 -Saint Charles,ID,83272 -Shelley,ID,83274 -Soda Springs,ID,83276 -Stanley,ID,83278 -Stone,ID,83280 -Thatcher,ID,83283 -Wayan,ID,83285 -Weston,ID,83286 -Fish Haven,ID,83287 -Twin Falls,ID,83301 -Rogerson,ID,83302 -Bellevue,ID,83313 -Bliss,ID,83314 -Buhl,ID,83316 -Burley,ID,83318 -Carey,ID,83320 -Castleford,ID,83321 -Corral,ID,83322 -Declo,ID,83323 -Dietrich,ID,83324 -Eden,ID,83325 -Elba,ID,83326 -Fairfield,ID,83327 -Filer,ID,83328 -Gooding,ID,83330 -Hagerman,ID,83332 -Hailey,ID,83333 -Hansen,ID,83334 -Hazelton,ID,83335 -Heyburn,ID,83336 -Jerome,ID,83338 -Obsidian,ID,83340 -Kimberly,ID,83341 -Naf,ID,83342 -Minidoka,ID,83343 -Murtaugh,ID,83344 -Oakley,ID,83346 -Paul,ID,83347 -Picabo,ID,83348 -Richfield,ID,83349 -Acequia,ID,83350 -Shoshone,ID,83352 -Wendell,ID,83355 -Ammon,ID,83401 -Idaho Falls,ID,83402 -Idaho Falls,ID,83404 -Idaho Falls,ID,83406 -Ashton,ID,83420 -Driggs,ID,83422 -Dubois,ID,83423 -Felt,ID,83424 -Hamer,ID,83425 -Iona,ID,83427 -Island Park,ID,83429 -Lewisville,ID,83431 -Menan,ID,83434 -Monteview,ID,83435 -Newdale,ID,83436 -Rexburg,ID,83440 -Rigby,ID,83442 -Ririe,ID,83443 -Roberts,ID,83444 -Saint Anthony,ID,83445 -Spencer,ID,83446 -Sugar City,ID,83448 -Swan Valley,ID,83449 -Terreton,ID,83450 -Teton,ID,83451 -Tetonia,ID,83452 -Victor,ID,83455 -Carmen,ID,83462 -Gibbonsville,ID,83463 -Leadore,ID,83464 -North Fork,ID,83466 -Salmon,ID,83467 -Shoup,ID,83469 -South Gate Plaza,ID,83501 -Ahsahka,ID,83520 -Cottonwood,ID,83522 -Craigmont,ID,83523 -Culdesac,ID,83524 -Dixie,ID,83525 -Ferdinand,ID,83526 -Grangeville,ID,83530 -Greencreek,ID,83533 -Juliaetta,ID,83535 -Kamiah,ID,83536 -Kendrick,ID,83537 -Keuterville,ID,83538 -Clearwater,ID,83539 -Lapwai,ID,83540 -Lenore,ID,83541 -Lucile,ID,83542 -Nezperce,ID,83543 -Orofino,ID,83544 -Peck,ID,83545 -Pierce,ID,83546 -Pollock,ID,83547 -Reubens,ID,83548 -Riggins,ID,83549 -Weippe,ID,83553 -White Bird,ID,83554 -Winchester,ID,83555 -Atlanta,ID,83601 -Banks,ID,83602 -Grasmere,ID,83604 -Caldwell,ID,83605 -Cambridge,ID,83610 -West Mountain,ID,83611 -Council,ID,83612 -Donnelly,ID,83615 -Eagle,ID,83616 -Montour,ID,83617 -Fruitland,ID,83619 -Garden Valley,ID,83622 -Glenns Ferry,ID,83623 -Grand View,ID,83624 -Hammett,ID,83627 -Homedale,ID,83628 -Horseshoe Bend,ID,83629 -Idaho City,ID,83631 -Indian Valley,ID,83632 -King Hill,ID,83633 -Kuna,ID,83634 -Letha,ID,83636 -Lowman,ID,83637 -Mc Call,ID,83638 -Marsing,ID,83639 -Melba,ID,83641 -Meridian,ID,83642 -Mesa,ID,83643 -Middleton,ID,83644 -Midvale,ID,83645 -Mountain Home,ID,83647 -Mountain Home A,ID,83648 -Oreana,ID,83650 -Nampa,ID,83651 -New Meadows,ID,83654 -New Plymouth,ID,83655 -Ola,ID,83657 -Parma,ID,83660 -Payette,ID,83661 -Star,ID,83669 -Sweet,ID,83670 -Weiser,ID,83672 -Wilder,ID,83676 -Yellow Pine,ID,83677 -Nampa,ID,83686 -Nampa,ID,83687 -Boise,ID,83702 -Boise,ID,83703 -Boise,ID,83704 -Boise,ID,83705 -Boise,ID,83706 -Boise,ID,83709 -Boise,ID,83712 -Garden City,ID,83714 -Athol,ID,83801 -Avery,ID,83802 -Bayview,ID,83803 -Blanchard,ID,83804 -Bonners Ferry,ID,83805 -Calder,ID,83808 -Careywood,ID,83809 -Cataldo,ID,83810 -Clark Fork,ID,83811 -Clarkia,ID,83812 -Cocolalla,ID,83813 -Coeur D Alene,ID,83814 -Coolin,ID,83821 -Old Town,ID,83822 -Deary,ID,83823 -Desmet,ID,83824 -Elk River,ID,83827 -Fernwood,ID,83830 -Genesee,ID,83832 -Harrison,ID,83833 -Harvard,ID,83834 -Hayden Lake,ID,83835 -Hope,ID,83836 -Kellogg,ID,83837 -Kingston,ID,83839 -Medimont,ID,83842 -Moscow,ID,83843 -Moyie Springs,ID,83845 -Mullan,ID,83846 -Naples,ID,83847 -Nordman,ID,83848 -Pinehurst,ID,83850 -Plummer,ID,83851 -Porthill,ID,83853 -Post Falls,ID,83854 -Potlatch,ID,83855 -Priest River,ID,83856 -Princeton,ID,83857 -Rathdrum,ID,83858 -Sagle,ID,83860 -Saint Maries,ID,83861 -Sandpoint,ID,83864 -Smelterville,ID,83868 -Spirit Lake,ID,83869 -Tensed,ID,83870 -Troy,ID,83871 -Viola,ID,83872 -Wallace,ID,83873 -Worley,ID,83876 -Antioch,IL,60002 -Arlington Height,IL,60004 -Arlington Height,IL,60005 -Elk Grove Villag,IL,60007 -Rolling Meadows,IL,60008 -Barrington,IL,60010 -Crystal Lake,IL,60012 -Cary,IL,60013 -Crystal Lake,IL,60014 -Deerfield,IL,60015 -Des Plaines,IL,60016 -Rosemont,IL,60018 -Fox Lake,IL,60020 -Fox River Grove,IL,60021 -Glencoe,IL,60022 -Glenview,IL,60025 -Glenview Nas,IL,60026 -Gages Lake,IL,60030 -Gurnee,IL,60031 -Harvard,IL,60033 -Hebron,IL,60034 -Highland Park,IL,60035 -Fort Sheridan,IL,60037 -Highwood,IL,60040 -Ingleside,IL,60041 -Island Lake,IL,60042 -Kenilworth,IL,60043 -Lake Bluff,IL,60044 -Lake Forest,IL,60045 -Lindenhurst,IL,60046 -Long Grove,IL,60047 -Libertyville,IL,60048 -Mc Henry,IL,60050 -Morton Grove,IL,60053 -Mount Prospect,IL,60056 -Mundelein,IL,60060 -Vernon Hills,IL,60061 -Northbrook,IL,60062 -Abbott Park,IL,60064 -Palatine,IL,60067 -Park Ridge,IL,60068 -Prairie View,IL,60069 -Prospect Heights,IL,60070 -Richmond,IL,60071 -Ringwood,IL,60072 -Round Lake,IL,60073 -Palatine,IL,60074 -Skokie,IL,60076 -Skokie,IL,60077 -Spring Grove,IL,60081 -Techny,IL,60082 -Wadsworth,IL,60083 -Wauconda,IL,60084 -Mc Gaw Park,IL,60085 -Waukegan,IL,60087 -Great Lakes,IL,60088 -Buffalo Grove,IL,60089 -Wheeling,IL,60090 -Wilmette,IL,60091 -Northfield,IL,60093 -Winthrop Harbor,IL,60096 -Wonder Lake,IL,60097 -Woodstock,IL,60098 -Zion,IL,60099 -Addison,IL,60101 -Lake In The Hill,IL,60102 -Hanover Park,IL,60103 -Bellwood,IL,60104 -Bensenville,IL,60106 -Streamwood,IL,60107 -Bloomingdale,IL,60108 -Carpentersville,IL,60110 -Clare,IL,60111 -De Kalb,IL,60115 -Dundee,IL,60118 -Elburn,IL,60119 -Elgin,IL,60120 -Elgin,IL,60123 -Elmhurst,IL,60126 -Esmond,IL,60129 -Forest Park,IL,60130 -Franklin Park,IL,60131 -Geneva,IL,60134 -Genoa,IL,60135 -Gilberts,IL,60136 -Glen Ellyn,IL,60137 -Glendale Heights,IL,60139 -Hampshire,IL,60140 -Hines,IL,60141 -Huntley,IL,60142 -Itasca,IL,60143 -Kingston,IL,60145 -Kirkland,IL,60146 -Lombard,IL,60148 -Malta,IL,60150 -Maple Park,IL,60151 -Marengo,IL,60152 -Broadview,IL,60153 -Westchester,IL,60154 -Medinah,IL,60157 -Melrose Park,IL,60160 -Hillside,IL,60162 -Hillside,IL,60163 -Northlake,IL,60164 -Stone Park,IL,60165 -River Grove,IL,60171 -Roselle,IL,60172 -Schaumburg,IL,60173 -Saint Charles,IL,60174 -Saint Charles,IL,60175 -Schiller Park,IL,60176 -South Elgin,IL,60177 -Sycamore,IL,60178 -Union,IL,60180 -Villa Park,IL,60181 -West Chicago,IL,60185 -Wheaton,IL,60187 -Carol Stream,IL,60188 -Winfield,IL,60190 -Wood Dale,IL,60191 -Schaumburg,IL,60193 -Hoffman Estates,IL,60194 -Hoffman Estates,IL,60195 -Evanston,IL,60201 -Evanston,IL,60202 -Evanston,IL,60203 -Oak Park,IL,60301 -Oak Park,IL,60302 -Oak Park,IL,60304 -River Forest,IL,60305 -Beecher,IL,60401 -Stickney,IL,60402 -Blue Island,IL,60406 -Braceville,IL,60407 -Braidwood,IL,60408 -Calumet City,IL,60409 -Channahon,IL,60410 -Sauk Village,IL,60411 -Chicago Ridge,IL,60415 -Coal City,IL,60416 -Crete,IL,60417 -Dolton,IL,60419 -Dwight,IL,60420 -Elwood,IL,60421 -Flossmoor,IL,60422 -Frankfort,IL,60423 -Gardner,IL,60424 -Glenwood,IL,60425 -Markham,IL,60426 -Hazel Crest,IL,60429 -Homewood,IL,60430 -Joliet,IL,60431 -Joliet,IL,60432 -Joliet,IL,60433 -Shorewood,IL,60435 -Rockdale,IL,60436 -Kinsman,IL,60437 -Lansing,IL,60438 -Argonne,IL,60439 -Bolingbrook,IL,60440 -Romeoville,IL,60441 -Manhattan,IL,60442 -Matteson,IL,60443 -Mazon,IL,60444 -Crestwood,IL,60445 -Minooka,IL,60447 -Mokena,IL,60448 -Monee,IL,60449 -Morris,IL,60450 -New Lenox,IL,60451 -Oak Forest,IL,60452 -Oak Lawn,IL,60453 -Bridgeview,IL,60455 -Hometown,IL,60456 -Hickory Hills,IL,60457 -Justice,IL,60458 -Burbank,IL,60459 -Odell,IL,60460 -Olympia Fields,IL,60461 -Orland Park,IL,60462 -Palos Heights,IL,60463 -Palos Park,IL,60464 -Palos Hills,IL,60465 -University Park,IL,60466 -Peotone,IL,60468 -Posen,IL,60469 -Ransom,IL,60470 -Richton Park,IL,60471 -Robbins,IL,60472 -South Holland,IL,60473 -Steger,IL,60475 -Thornton,IL,60476 -Tinley Park,IL,60477 -Country Club Hil,IL,60478 -Verona,IL,60479 -Willow Springs,IL,60480 -Custer Park,IL,60481 -Worth,IL,60482 -Argo,IL,60501 -Aurora,IL,60504 -Aurora,IL,60505 -Aurora,IL,60506 -Batavia,IL,60510 -Big Rock,IL,60511 -Bristol,IL,60512 -Brookfield,IL,60513 -Clarendon Hills,IL,60514 -Downers Grove,IL,60515 -Downers Grove,IL,60516 -Woodridge,IL,60517 -Earlville,IL,60518 -Hinckley,IL,60520 -Oak Brook,IL,60521 -Hodgkins,IL,60525 -Lee,IL,60530 -Leland,IL,60531 -Lisle,IL,60532 -Lyons,IL,60534 -Montgomery,IL,60538 -Mooseheart,IL,60539 -Naperville,IL,60540 -Newark,IL,60541 -North Aurora,IL,60542 -Oswego,IL,60543 -Plainfield,IL,60544 -Plano,IL,60545 -North Riverside,IL,60546 -Sandwich,IL,60548 -Serena,IL,60549 -Shabbona,IL,60550 -Sheridan,IL,60551 -Somonauk,IL,60552 -Steward,IL,60553 -Sugar Grove,IL,60554 -Warrenville,IL,60555 -Waterman,IL,60556 -Western Springs,IL,60558 -Westmont,IL,60559 -Yorkville,IL,60560 -Naperville,IL,60563 -Naperville,IL,60564 -Naperville,IL,60565 -Chicago,IL,60601 -Chicago,IL,60602 -Chicago,IL,60603 -Chicago,IL,60604 -Chicago,IL,60605 -Chicago,IL,60606 -Chicago,IL,60607 -Chicago,IL,60608 -Chicago,IL,60609 -Chicago,IL,60610 -Chicago,IL,60611 -Chicago,IL,60612 -Chicago,IL,60613 -Chicago,IL,60614 -Chicago,IL,60615 -Chicago,IL,60616 -Chicago,IL,60617 -Chicago,IL,60618 -Chicago,IL,60619 -Chicago,IL,60620 -Chicago,IL,60621 -Chicago,IL,60622 -Chicago,IL,60623 -Chicago,IL,60624 -Chicago,IL,60625 -Chicago,IL,60626 -Riverdale,IL,60627 -Chicago,IL,60628 -Chicago,IL,60629 -Chicago,IL,60630 -Chicago,IL,60631 -Chicago,IL,60632 -Burnham,IL,60633 -Norridge,IL,60634 -Elmwood Park,IL,60635 -Chicago,IL,60636 -Chicago,IL,60637 -Bedford Park,IL,60638 -Chicago,IL,60639 -Chicago,IL,60640 -Chicago,IL,60641 -Evergreen Park,IL,60642 -Calumet Park,IL,60643 -Chicago,IL,60644 -Lincolnwood,IL,60645 -Lincolnwood,IL,60646 -Chicago,IL,60647 -Chicago,IL,60648 -Chicago,IL,60649 -Cicero,IL,60650 -Chicago,IL,60651 -Chicago,IL,60652 -Chicago,IL,60653 -Chicago,IL,60654 -Merrionette Park,IL,60655 -Harwood Heights,IL,60656 -Chicago,IL,60657 -Alsip,IL,60658 -Lincolnwood,IL,60659 -Chicago,IL,60660 -Chicago,IL,60661 -Amf Ohare,IL,60666 -Kankakee,IL,60901 -Aroma Park,IL,60910 -Ashkum,IL,60911 -Beaverville,IL,60912 -Bonfield,IL,60913 -Bourbonnais,IL,60914 -Bradley,IL,60915 -Buckingham,IL,60917 -Buckley,IL,60918 -Cabery,IL,60919 -Chatsworth,IL,60921 -Chebanse,IL,60922 -Cissna Park,IL,60924 -Clifton,IL,60927 -Crescent City,IL,60928 -Cullom,IL,60929 -Danforth,IL,60930 -Donovan,IL,60931 -Emington,IL,60934 -Essex,IL,60935 -Gibson City,IL,60936 -Gilman,IL,60938 -Grant Park,IL,60940 -Herscher,IL,60941 -Hoopeston,IL,60942 -Kempton,IL,60946 -Loda,IL,60948 -Ludlow,IL,60949 -Manteno,IL,60950 -Martinton,IL,60951 -Melvin,IL,60952 -Milford,IL,60953 -Momence,IL,60954 -Onarga,IL,60955 -Paxton,IL,60957 -Piper City,IL,60959 -Rankin,IL,60960 -Reddick,IL,60961 -Roberts,IL,60962 -Rossville,IL,60963 -Saint Anne,IL,60964 -Sheldon,IL,60966 -Thawville,IL,60968 -Watseka,IL,60970 -Wellington,IL,60973 -Apple River,IL,61001 -Ashton,IL,61006 -Baileyville,IL,61007 -Belvidere,IL,61008 -Byron,IL,61010 -Caledonia,IL,61011 -Capron,IL,61012 -Chadwick,IL,61014 -Chana,IL,61015 -Cherry Valley,IL,61016 -Dakota,IL,61018 -Davis,IL,61019 -Davis Junction,IL,61020 -Dixon,IL,61021 -Durand,IL,61024 -East Dubuque,IL,61025 -Elizabeth,IL,61028 -Forreston,IL,61030 -Franklin Grove,IL,61031 -Freeport,IL,61032 -Galena,IL,61036 -Garden Prairie,IL,61038 -German Valley,IL,61039 -Hanover,IL,61041 -Harmon,IL,61042 -Kent,IL,61044 -Kings,IL,61045 -Lanark,IL,61046 -Egan,IL,61047 -Lena,IL,61048 -Lindenwood,IL,61049 -Mc Connell,IL,61050 -Milledgeville,IL,61051 -Monroe Center,IL,61052 -Mount Carroll,IL,61053 -Mount Morris,IL,61054 -Orangeville,IL,61060 -Oregon,IL,61061 -Pearl City,IL,61062 -Pecatonica,IL,61063 -Polo,IL,61064 -Poplar Grove,IL,61065 -Ridott,IL,61067 -Rochelle,IL,61068 -Rock City,IL,61070 -Rock Falls,IL,61071 -Rockton,IL,61072 -Roscoe,IL,61073 -Savanna,IL,61074 -Scales Mound,IL,61075 -Shannon,IL,61078 -South Beloit,IL,61080 -Sterling,IL,61081 -Stillman Valley,IL,61084 -Stockton,IL,61085 -Warren,IL,61087 -Winnebago,IL,61088 -Winslow,IL,61089 -Rockford,IL,61101 -Rockford,IL,61102 -Rockford,IL,61103 -Rockford,IL,61104 -Rockford,IL,61107 -Rockford,IL,61108 -Rockford,IL,61109 -Loves Park,IL,61111 -Rockford,IL,61112 -Rock Island,IL,61201 -Albany,IL,61230 -Aledo,IL,61231 -Andalusia,IL,61232 -Annawan,IL,61234 -Atkinson,IL,61235 -Cambridge,IL,61238 -Coal Valley,IL,61240 -Green Rock,IL,61241 -Cordova,IL,61242 -Deer Grove,IL,61243 -East Moline,IL,61244 -Erie,IL,61250 -Fenton,IL,61251 -Fulton,IL,61252 -Geneseo,IL,61254 -Hampton,IL,61256 -Hillsdale,IL,61257 -Illinois City,IL,61259 -Joy,IL,61260 -Lyndon,IL,61261 -Lynn Center,IL,61262 -Matherville,IL,61263 -Milan,IL,61264 -Moline,IL,61265 -Morrison,IL,61270 -New Boston,IL,61272 -Orion,IL,61273 -Osco,IL,61274 -Port Byron,IL,61275 -Prophetstown,IL,61277 -Reynolds,IL,61279 -Sherrard,IL,61281 -Silvis,IL,61282 -Tampico,IL,61283 -Taylor Ridge,IL,61284 -Thomson,IL,61285 -La Salle,IL,61301 -Amboy,IL,61310 -Ancona,IL,61311 -Arlington,IL,61312 -Blackstone,IL,61313 -Buda,IL,61314 -Compton,IL,61318 -Manville,IL,61319 -Dalzell,IL,61320 -Dana,IL,61321 -Grand Ridge,IL,61325 -Granville,IL,61326 -Hennepin,IL,61327 -La Moille,IL,61330 -Leonore,IL,61332 -Long Point,IL,61333 -Lostant,IL,61334 -Mc Nabb,IL,61335 -Magnolia,IL,61336 -Malden,IL,61337 -Marseilles,IL,61341 -Mendota,IL,61342 -Mineral,IL,61344 -Neponset,IL,61345 -New Bedford,IL,61346 -Oglesby,IL,61348 -Ohio,IL,61349 -Ottawa,IL,61350 -Paw Paw,IL,61353 -Peru,IL,61354 -Princeton,IL,61356 -Rutland,IL,61358 -Seneca,IL,61360 -Sheffield,IL,61361 -Spring Valley,IL,61362 -Streator,IL,61364 -Sublette,IL,61367 -Tiskilwa,IL,61368 -Toluca,IL,61369 -Tonica,IL,61370 -Utica,IL,61373 -Varna,IL,61375 -Normandy,IL,61376 -Wenona,IL,61377 -West Brooklyn,IL,61378 -Wyanet,IL,61379 -Galesburg,IL,61401 -Abingdon,IL,61410 -Adair,IL,61411 -Alexis,IL,61412 -Alpha,IL,61413 -Altona,IL,61414 -Avon,IL,61415 -Bardolph,IL,61416 -Berwick,IL,61417 -Biggsville,IL,61418 -Blandinsville,IL,61420 -Bradford,IL,61421 -Bushnell,IL,61422 -Cameron,IL,61423 -Carman,IL,61425 -Cuba,IL,61427 -Dahinda,IL,61428 -Ellisville,IL,61431 -Fairview,IL,61432 -Fiatt,IL,61433 -Galva,IL,61434 -Gerlaw,IL,61435 -Gilson,IL,61436 -Gladstone,IL,61437 -Good Hope,IL,61438 -Industry,IL,61440 -Ipava,IL,61441 -Keithsburg,IL,61442 -Kewanee,IL,61443 -Kirkwood,IL,61447 -Knoxville,IL,61448 -La Fayette,IL,61449 -La Harpe,IL,61450 -Laura,IL,61451 -Littleton,IL,61452 -Little York,IL,61453 -Lomax,IL,61454 -Macomb,IL,61455 -Maquon,IL,61458 -Marietta,IL,61459 -Media,IL,61460 -Monmouth,IL,61462 -New Windsor,IL,61465 -North Henderson,IL,61466 -Oneida,IL,61467 -Oquawka,IL,61469 -Prairie City,IL,61470 -Raritan,IL,61471 -Rio,IL,61472 -Roseville,IL,61473 -Saint Augustine,IL,61474 -Sciota,IL,61475 -Seaton,IL,61476 -Smithfield,IL,61477 -Smithshire,IL,61478 -Speer,IL,61479 -Stronghurst,IL,61480 -Table Grove,IL,61482 -Toulon,IL,61483 -Vermont,IL,61484 -Victoria,IL,61485 -Viola,IL,61486 -Wataga,IL,61488 -Williamsfield,IL,61489 -Woodhull,IL,61490 -Wyoming,IL,61491 -Astoria,IL,61501 -Benson,IL,61516 -Brimfield,IL,61517 -Oak Hill,IL,61518 -Bryant,IL,61519 -Canton,IL,61520 -Chillicothe,IL,61523 -Dunfermline,IL,61524 -Dunlap,IL,61525 -Edelstein,IL,61526 -Edwards,IL,61528 -Elmwood,IL,61529 -Eureka,IL,61530 -Middlegrove,IL,61531 -Forest City,IL,61532 -Glasford,IL,61533 -Green Valley,IL,61534 -Hanna City,IL,61536 -Henry,IL,61537 -Kingston Mines,IL,61539 -Lacon,IL,61540 -Lewistown,IL,61542 -Liverpool,IL,61543 -London Mills,IL,61544 -Cazenovia,IL,61545 -Manito,IL,61546 -Mapleton,IL,61547 -Metamora,IL,61548 -Morton,IL,61550 -Pekin,IL,61554 -Princeville,IL,61559 -Putnam,IL,61560 -Roanoke,IL,61561 -Saint David,IL,61563 -Sparland,IL,61565 -Topeka,IL,61567 -Tremont,IL,61568 -Trivoli,IL,61569 -Washburn,IL,61570 -Sunnyland,IL,61571 -Yates City,IL,61572 -Peoria,IL,61602 -Peoria Heights,IL,61603 -Peoria,IL,61604 -Peoria,IL,61605 -Peoria,IL,61606 -Bartonville,IL,61607 -East Peoria,IL,61611 -Peoria Heights,IL,61614 -Peoria,IL,61615 -Bloomington,IL,61701 -Bloomington,IL,61704 -Anchor,IL,61720 -Armington,IL,61721 -Arrowsmith,IL,61722 -Atlanta,IL,61723 -Bellflower,IL,61724 -Carlock,IL,61725 -Chenoa,IL,61726 -Clinton,IL,61727 -Colfax,IL,61728 -Congerville,IL,61729 -Cooksville,IL,61730 -Cropsey,IL,61731 -Danvers,IL,61732 -Deer Creek,IL,61733 -Delavan,IL,61734 -Dewitt,IL,61735 -Holder,IL,61736 -Ellsworth,IL,61737 -El Paso,IL,61738 -Fairbury,IL,61739 -Flanagan,IL,61740 -Forrest,IL,61741 -Graymont,IL,61743 -Gridley,IL,61744 -Heyworth,IL,61745 -Hopedale,IL,61747 -Hudson,IL,61748 -Kenney,IL,61749 -Le Roy,IL,61752 -Lexington,IL,61753 -Mc Lean,IL,61754 -Mackinaw,IL,61755 -Maroa,IL,61756 -Minier,IL,61759 -Minonk,IL,61760 -Normal,IL,61761 -Pontiac,IL,61764 -Saunemin,IL,61769 -Saybrook,IL,61770 -Secor,IL,61771 -Shirley,IL,61772 -Sibley,IL,61773 -Stanford,IL,61774 -Strawn,IL,61775 -Towanda,IL,61776 -Wapella,IL,61777 -Waynesville,IL,61778 -Urbana,IL,61801 -Allerton,IL,61810 -Alvin,IL,61811 -Armstrong,IL,61812 -Bement,IL,61813 -Bismarck,IL,61814 -Broadlands,IL,61816 -Catlin,IL,61817 -Cerro Gordo,IL,61818 -Champaign,IL,61820 -Champaign,IL,61821 -Cisco,IL,61830 -Collison,IL,61831 -Danville,IL,61832 -Tilton,IL,61833 -De Land,IL,61839 -Dewey,IL,61840 -Fairmount,IL,61841 -Farmer City,IL,61842 -Fisher,IL,61843 -Fithian,IL,61844 -Foosland,IL,61845 -Georgetown,IL,61846 -Gifford,IL,61847 -Homer,IL,61849 -Indianola,IL,61850 -Ivesdale,IL,61851 -Longview,IL,61852 -Mahomet,IL,61853 -Mansfield,IL,61854 -Milmine,IL,61855 -Monticello,IL,61856 -Oakwood,IL,61858 -Ogden,IL,61859 -Penfield,IL,61862 -Pesotum,IL,61863 -Philo,IL,61864 -Potomac,IL,61865 -Rantoul,IL,61866 -Rantoul,IL,61868 -Ridge Farm,IL,61870 -Sadorus,IL,61872 -Saint Joseph,IL,61873 -Savoy,IL,61874 -Seymour,IL,61875 -Sidell,IL,61876 -Sidney,IL,61877 -Thomasboro,IL,61878 -Tolono,IL,61880 -Weldon,IL,61882 -Westville,IL,61883 -White Heath,IL,61884 -Arcola,IL,61910 -Arthur,IL,61911 -Ashmore,IL,61912 -Atwood,IL,61913 -Bethany,IL,61914 -Brocton,IL,61917 -Camargo,IL,61919 -Charleston,IL,61920 -Chrisman,IL,61924 -Dalton City,IL,61925 -Gays,IL,61928 -Hammond,IL,61929 -Hindsboro,IL,61930 -Humboldt,IL,61931 -Hume,IL,61932 -Kansas,IL,61933 -Lovington,IL,61937 -Mattoon,IL,61938 -Metcalf,IL,61940 -Newman,IL,61942 -Oakland,IL,61943 -Paris,IL,61944 -Sullivan,IL,61951 -Tuscola,IL,61953 -Villa Grove,IL,61956 -Windsor,IL,61957 -Alhambra,IL,62001 -Alton,IL,62002 -Batchtown,IL,62006 -Benld,IL,62009 -Bethalto,IL,62010 -Bingham,IL,62011 -Brighton,IL,62012 -Meppen,IL,62013 -Bunker Hill,IL,62014 -Butler,IL,62015 -Carrollton,IL,62016 -Coffeen,IL,62017 -Cottage Hills,IL,62018 -Donnellson,IL,62019 -62020,IL,62020 -Dorsey,IL,62021 -Dow,IL,62022 -East Alton,IL,62024 -Edwardsville,IL,62025 -Eldred,IL,62027 -Elsah,IL,62028 -Fidelity,IL,62030 -Fieldon,IL,62031 -Fillmore,IL,62032 -Dorchester,IL,62033 -Glen Carbon,IL,62034 -Godfrey,IL,62035 -Golden Eagle,IL,62036 -Grafton,IL,62037 -Mitchell,IL,62040 -Greenfield,IL,62044 -Hamburg,IL,62045 -Hamel,IL,62046 -Hardin,IL,62047 -Hartford,IL,62048 -Hillsboro,IL,62049 -Hillview,IL,62050 -Irving,IL,62051 -Jerseyville,IL,62052 -Kampsville,IL,62053 -Kane,IL,62054 -Litchfield,IL,62056 -Madison,IL,62060 -Marine,IL,62061 -Medora,IL,62063 -62064,IL,62064 -Michael,IL,62065 -Moro,IL,62067 -Mount Olive,IL,62069 -Mozier,IL,62070 -New Douglas,IL,62074 -Nokomis,IL,62075 -Piasa,IL,62079 -Ramsey,IL,62080 -Rockbridge,IL,62081 -Roodhouse,IL,62082 -Rosamond,IL,62083 -Roxana,IL,62084 -Sorento,IL,62086 -Staunton,IL,62088 -Venice,IL,62090 -Walshville,IL,62091 -White Hall,IL,62092 -Witt,IL,62094 -Wood River,IL,62095 -Worden,IL,62097 -Sauget,IL,62201 -East Saint Louis,IL,62203 -Washington Park,IL,62204 -East Saint Louis,IL,62205 -Cahokia,IL,62206 -Alorton,IL,62207 -Fairview Heights,IL,62208 -Venedy,IL,62214 -Albers,IL,62215 -Baldwin,IL,62217 -Bartelso,IL,62218 -Belleville,IL,62220 -Belleville,IL,62221 -Belleville,IL,62223 -Scott A F B,IL,62225 -Breese,IL,62230 -Carlyle,IL,62231 -Caseyville,IL,62232 -Chester,IL,62233 -Collinsville,IL,62234 -Columbia,IL,62236 -Swanwick,IL,62237 -Cutler,IL,62238 -Dupo,IL,62239 -East Carondelet,IL,62240 -Ellis Grove,IL,62241 -Evansville,IL,62242 -Freeburg,IL,62243 -Fults,IL,62244 -Germantown,IL,62245 -Greenville,IL,62246 -Hecker,IL,62248 -Highland,IL,62249 -Keyesport,IL,62253 -Lebanon,IL,62254 -Lenzburg,IL,62255 -Maeystown,IL,62256 -Marissa,IL,62257 -Mascoutah,IL,62258 -Millstadt,IL,62260 -Modoc,IL,62261 -Mulberry Grove,IL,62262 -Nashville,IL,62263 -New Athens,IL,62264 -New Baden,IL,62265 -Oakdale,IL,62268 -Shiloh,IL,62269 -Okawville,IL,62271 -Percy,IL,62272 -Pinckneyville,IL,62274 -Pocahontas,IL,62275 -Prairie Du Roche,IL,62277 -Red Bud,IL,62278 -Renault,IL,62279 -Rockwood,IL,62280 -Saint Jacob,IL,62281 -Shattuc,IL,62283 -Smithboro,IL,62284 -Smithton,IL,62285 -Sparta,IL,62286 -Steeleville,IL,62288 -Trenton,IL,62293 -Troy,IL,62294 -Valmeyer,IL,62295 -62296,IL,62296 -Walsh,IL,62297 -Waterloo,IL,62298 -Quincy,IL,62301 -Augusta,IL,62311 -Barry,IL,62312 -Basco,IL,62313 -Baylis,IL,62314 -Bowen,IL,62316 -Burnside,IL,62318 -Camden,IL,62319 -Camp Point,IL,62320 -Carthage,IL,62321 -Chambersburg,IL,62323 -Clayton,IL,62324 -Coatsburg,IL,62325 -Colchester,IL,62326 -Pontoosuc,IL,62330 -Detroit,IL,62332 -Elvaston,IL,62334 -Fowler,IL,62338 -Golden,IL,62339 -Griggsville,IL,62340 -Hamilton,IL,62341 -Hull,IL,62343 -Huntsville,IL,62344 -Kinderhook,IL,62345 -La Prairie,IL,62346 -Liberty,IL,62347 -Lima,IL,62348 -Loraine,IL,62349 -Mendon,IL,62351 -Milton,IL,62352 -Mount Sterling,IL,62353 -Nebo,IL,62355 -New Canton,IL,62356 -New Salem,IL,62357 -Niota,IL,62358 -Paloma,IL,62359 -Payson,IL,62360 -Pearl,IL,62361 -Perry,IL,62362 -Pittsfield,IL,62363 -Plainville,IL,62365 -Pleasant Hill,IL,62366 -Colmar,IL,62367 -Rockport,IL,62370 -Sutter,IL,62373 -Tennessee,IL,62374 -Timewell,IL,62375 -Ursa,IL,62376 -Versailles,IL,62378 -Warsaw,IL,62379 -West Point,IL,62380 -Effingham,IL,62401 -Allendale,IL,62410 -Altamont,IL,62411 -Annapolis,IL,62413 -Beecher City,IL,62414 -Birds,IL,62415 -Bridgeport,IL,62417 -Brownstown,IL,62418 -Calhoun,IL,62419 -Casey,IL,62420 -Claremont,IL,62421 -Cowden,IL,62422 -Dennison,IL,62423 -Dieterich,IL,62424 -Dundas,IL,62425 -Laclede,IL,62426 -Flat Rock,IL,62427 -Hazel Dell,IL,62428 -Herrick,IL,62431 -Hidalgo,IL,62432 -Hutsonville,IL,62433 -Ingraham,IL,62434 -Jewett,IL,62436 -Lakewood,IL,62438 -Lawrenceville,IL,62439 -Lerna,IL,62440 -Marshall,IL,62441 -Martinsville,IL,62442 -Mason,IL,62443 -Montrose,IL,62445 -Mount Erie,IL,62446 -Neoga,IL,62447 -Newton,IL,62448 -Oblong,IL,62449 -Olney,IL,62450 -Palestine,IL,62451 -Parkersburg,IL,62452 -Robinson,IL,62454 -Saint Elmo,IL,62458 -Saint Francisvil,IL,62460 -Shumway,IL,62461 -Sigel,IL,62462 -Stewardson,IL,62463 -Strasburg,IL,62465 -Sumner,IL,62466 -Teutopolis,IL,62467 -Toledo,IL,62468 -Trilla,IL,62469 -Vandalia,IL,62471 -Watson,IL,62473 -Westfield,IL,62474 -West Liberty,IL,62475 -West Salem,IL,62476 -West Union,IL,62477 -West York,IL,62478 -Wheeler,IL,62479 -Willow Hill,IL,62480 -Yale,IL,62481 -Newburg,IL,62501 -Assumption,IL,62510 -Atwater,IL,62511 -Beason,IL,62512 -Blue Mound,IL,62513 -Boody,IL,62514 -Buffalo Hart,IL,62515 -Chestnut,IL,62518 -Dawson,IL,62520 -Decatur,IL,62521 -Decatur,IL,62522 -Decatur,IL,62523 -Bearsdale,IL,62526 -Cimic,IL,62530 -Edinburg,IL,62531 -Thomasville,IL,62533 -Brunswick,IL,62534 -Glenarm,IL,62536 -Harvel,IL,62538 -Illiopolis,IL,62539 -Latham,IL,62543 -Macon,IL,62544 -Bolivia,IL,62545 -Morrisonville,IL,62546 -Mount Auburn,IL,62547 -Mount Pulaski,IL,62548 -Hervey City,IL,62549 -Radford,IL,62550 -Niantic,IL,62551 -Casner,IL,62552 -Oconee,IL,62553 -Oreana,IL,62554 -Owaneco,IL,62555 -Clarksdale,IL,62556 -Dunkel,IL,62557 -Sicily,IL,62558 -Raymond,IL,62560 -Spaulding,IL,62561 -Berry,IL,62563 -Clarksburg,IL,62565 -Stonington,IL,62567 -Hewittsville,IL,62568 -Dollville,IL,62571 -Waggoner,IL,62572 -Heman,IL,62573 -Orleans,IL,62601 -Arenzville,IL,62611 -Newmansville,IL,62612 -Fancy Prairie,IL,62613 -Auburn,IL,62615 -Lynchburg,IL,62617 -Beardstown,IL,62618 -Exeter,IL,62621 -Bader,IL,62624 -Cantrall,IL,62625 -Comer,IL,62626 -Panther Creek,IL,62627 -Chapin,IL,62628 -Chatham,IL,62629 -Hagaman,IL,62630 -Concord,IL,62631 -Biggs,IL,62633 -Broadwell,IL,62634 -Emden,IL,62635 -Clements,IL,62638 -Frederick,IL,62639 -Mcvey,IL,62640 -Hubly,IL,62642 -Hartsburg,IL,62643 -Eckard,IL,62644 -Hettick,IL,62649 -Arcadia,IL,62650 -Kilbourne,IL,62655 -Lincoln,IL,62656 -Loami,IL,62661 -Luther,IL,62664 -Naples,IL,62665 -Middletown,IL,62666 -Modesto,IL,62667 -Nortonville,IL,62668 -Bates,IL,62670 -New Holland,IL,62671 -Nilwood,IL,62672 -Oakford,IL,62673 -Barr,IL,62674 -Atterbury,IL,62675 -Plainview,IL,62676 -Farmingdale,IL,62677 -Layton,IL,62681 -Allen,IL,62682 -Scottville,IL,62683 -Barclay,IL,62684 -Royal Lakes,IL,62685 -Tallula,IL,62688 -Virden,IL,62690 -Little Indian,IL,62691 -Waverly,IL,62692 -Williamsville,IL,62693 -Glasgow,IL,62694 -Springfield,IL,62701 -Grandview,IL,62702 -Southern View,IL,62703 -Jerome,IL,62704 -Andrew,IL,62707 -Centralia,IL,62801 -Hoyleton,IL,62803 -Albion,IL,62806 -Alma,IL,62807 -Ashley,IL,62808 -Barnhill,IL,62809 -Belle Rive,IL,62810 -Benton,IL,62812 -Bluford,IL,62814 -Bone Gap,IL,62815 -Bonnie,IL,62816 -Broughton,IL,62817 -Browns,IL,62818 -Buckner,IL,62819 -Burnt Prairie,IL,62820 -Carmi,IL,62821 -Christopher,IL,62822 -Cisne,IL,62823 -Clay City,IL,62824 -Crossville,IL,62827 -Dahlgren,IL,62828 -Dale,IL,62829 -Dix,IL,62830 -Du Bois,IL,62831 -Du Quoin,IL,62832 -Ellery,IL,62833 -Enfield,IL,62835 -Ewing,IL,62836 -Fairfield,IL,62837 -Farina,IL,62838 -Flora,IL,62839 -Frankfort Height,IL,62840 -Geff,IL,62842 -Golden Gate,IL,62843 -Grayville,IL,62844 -Herald,IL,62845 -Ina,IL,62846 -Iuka,IL,62849 -Johnsonville,IL,62850 -Keenes,IL,62851 -Kell,IL,62853 -Kinmundy,IL,62854 -Lancaster,IL,62855 -Bible Grove,IL,62858 -Mc Leansboro,IL,62859 -Macedonia,IL,62860 -Mill Shoals,IL,62862 -Mount Carmel,IL,62863 -Mount Vernon,IL,62864 -Mulkeytown,IL,62865 -Nason,IL,62866 -New Haven,IL,62867 -Noble,IL,62868 -Norris City,IL,62869 -Odin,IL,62870 -Omaha,IL,62871 -Opdyke,IL,62872 -Patoka,IL,62875 -Richview,IL,62877 -Rinard,IL,62878 -Saint Peter,IL,62880 -Salem,IL,62881 -Sandoval,IL,62882 -Scheller,IL,62883 -Sesser,IL,62884 -Shobonier,IL,62885 -Sims,IL,62886 -Springerton,IL,62887 -Tamaroa,IL,62888 -Texico,IL,62889 -Thompsonville,IL,62890 -Vernon,IL,62892 -Walnut Hill,IL,62893 -Waltonville,IL,62894 -Wayne City,IL,62895 -West Frankfort,IL,62896 -Whittington,IL,62897 -Woodlawn,IL,62898 -Xenia,IL,62899 -Carbondale,IL,62901 -Alto Pass,IL,62905 -Anna,IL,62906 -Ava,IL,62907 -Belknap,IL,62908 -New Liberty,IL,62910 -Buncombe,IL,62912 -Cache,IL,62913 -Cairo,IL,62914 -Campbell Hill,IL,62916 -Carrier Mills,IL,62917 -Carterville,IL,62918 -Cave In Rock,IL,62919 -Cobden,IL,62920 -Creal Springs,IL,62922 -Cypress,IL,62923 -De Soto,IL,62924 -Dongola,IL,62926 -Eddyville,IL,62928 -Eldorado,IL,62930 -Elizabethtown,IL,62931 -Elkville,IL,62932 -Equality,IL,62934 -Galatia,IL,62935 -Brownfield,IL,62938 -Goreville,IL,62939 -Gorham,IL,62940 -Grand Chain,IL,62941 -Grand Tower,IL,62942 -Grantsburg,IL,62943 -Harrisburg,IL,62946 -Herod,IL,62947 -Herrin,IL,62948 -Jacob,IL,62950 -Johnston City,IL,62951 -Jonesboro,IL,62952 -Joppa,IL,62953 -Junction,IL,62954 -Karbers Ridge,IL,62955 -Karnak,IL,62956 -Mc Clure,IL,62957 -Makanda,IL,62958 -Marion,IL,62959 -Metropolis,IL,62960 -Millcreek,IL,62961 -Miller City,IL,62962 -Mound City,IL,62963 -Mounds,IL,62964 -Murphysboro,IL,62966 -New Burnside,IL,62967 -Olmsted,IL,62970 -Ozark,IL,62972 -Pittsburg,IL,62974 -Pomona,IL,62975 -Pulaski,IL,62976 -Raleigh,IL,62977 -Ridgway,IL,62979 -Rosiclare,IL,62982 -Royalton,IL,62983 -Shawneetown,IL,62984 -Robbs,IL,62985 -Stonefort,IL,62987 -Tamms,IL,62988 -Gale,IL,62990 -Tunnel Hill,IL,62991 -Ullin,IL,62992 -Vergennes,IL,62994 -Vienna,IL,62995 -Villa Ridge,IL,62996 -Willisville,IL,62997 -Wolf Lake,IL,62998 -Zeigler,IL,62999 -Saint Mary,IL,63673 -Alexandria,IN,46001 -Anderson,IN,46011 -Anderson,IN,46012 -Anderson,IN,46013 -Anderson,IN,46016 -Chesterfield,IN,46017 -Arcadia,IN,46030 -Atlanta,IN,46031 -Carmel,IN,46032 -Cicero,IN,46034 -Colfax,IN,46035 -Elwood,IN,46036 -Fishers,IN,46038 -Forest,IN,46039 -Fortville,IN,46040 -Hillisburg,IN,46041 -Frankton,IN,46044 -Ingalls,IN,46048 -Kempton,IN,46049 -Kirklin,IN,46050 -Lapel,IN,46051 -Lebanon,IN,46052 -Mc Cordsville,IN,46055 -Markleville,IN,46056 -Michigantown,IN,46057 -Mulberry,IN,46058 -Noblesville,IN,46060 -Pendleton,IN,46064 -Rossville,IN,46065 -Sharpsville,IN,46068 -Sheridan,IN,46069 -Summitville,IN,46070 -Thorntown,IN,46071 -Tipton,IN,46072 -Westfield,IN,46074 -Whitestown,IN,46075 -Windfall,IN,46076 -Zionsville,IN,46077 -Arlington,IN,46104 -Bainbridge,IN,46105 -Bargersville,IN,46106 -Beech Grove,IN,46107 -Boggstown,IN,46110 -Brownsburg,IN,46112 -Camby,IN,46113 -Carthage,IN,46115 -Charlottesville,IN,46117 -Clayton,IN,46118 -Cloverdale,IN,46120 -Coatesville,IN,46121 -Danville,IN,46122 -Edinburgh,IN,46124 -Fairland,IN,46126 -Falmouth,IN,46127 -Fillmore,IN,46128 -Fountaintown,IN,46130 -Franklin,IN,46131 -Glenwood,IN,46133 -Greencastle,IN,46135 -Greenfield,IN,46140 -Greenwood,IN,46142 -Greenwood,IN,46143 -Jamestown,IN,46147 -Knightstown,IN,46148 -Lizton,IN,46149 -Manilla,IN,46150 -Centerton,IN,46151 -Milroy,IN,46156 -Monrovia,IN,46157 -Mooresville,IN,46158 -Morgantown,IN,46160 -Morristown,IN,46161 -Needham,IN,46162 -New Palestine,IN,46163 -Nineveh,IN,46164 -North Salem,IN,46165 -Paragon,IN,46166 -Pittsboro,IN,46167 -Avon,IN,46168 -Reelsville,IN,46171 -Roachdale,IN,46172 -Rushville,IN,46173 -Russellville,IN,46175 -Shelbyville,IN,46176 -Stilesville,IN,46180 -Trafalgar,IN,46181 -Waldron,IN,46182 -New Whiteland,IN,46184 -Wilkinson,IN,46186 -Indianapolis,IN,46201 -Indianapolis,IN,46202 -Indianapolis,IN,46203 -Indianapolis,IN,46204 -Indianapolis,IN,46205 -Indianapolis,IN,46208 -Eagle Creek,IN,46214 -Fort Benjamin Ha,IN,46216 -Southport,IN,46217 -Indianapolis,IN,46218 -Indianapolis,IN,46219 -Indianapolis,IN,46220 -Indianapolis,IN,46221 -Indianapolis,IN,46222 -Speedway,IN,46224 -Indianapolis,IN,46225 -Lawrence,IN,46226 -Southport,IN,46227 -Cumberland,IN,46229 -Bridgeport,IN,46231 -Clermont,IN,46234 -Oaklandon,IN,46236 -Southport,IN,46237 -Wanamaker,IN,46239 -Nora,IN,46240 -Park Fletcher,IN,46241 -Castleton,IN,46250 -Eagle Creek,IN,46254 -Castleton,IN,46256 -Acton,IN,46259 -Nora,IN,46260 -New Augusta,IN,46268 -New Augusta,IN,46278 -Nora,IN,46280 -Nora,IN,46290 -East Cedar Lake,IN,46303 -Porter,IN,46304 -Crown Point,IN,46307 -Demotte,IN,46310 -Dyer,IN,46311 -East Chicago,IN,46312 -Griffith,IN,46319 -Hammond,IN,46320 -Munster,IN,46321 -Highland,IN,46322 -Hammond,IN,46323 -Hammond,IN,46324 -Hammond,IN,46327 -Hanna,IN,46340 -Hebron,IN,46341 -Hobart,IN,46342 -Kouts,IN,46347 -La Crosse,IN,46348 -Lake Village,IN,46349 -La Porte,IN,46350 -Lowell,IN,46356 -Michigan City,IN,46360 -Mill Creek,IN,46365 -North Judson,IN,46366 -Portage,IN,46368 -Rolling Prairie,IN,46371 -Saint John,IN,46373 -San Pierre,IN,46374 -Schererville,IN,46375 -Union Mills,IN,46382 -Valparaiso,IN,46383 -Wanatah,IN,46390 -Westville,IN,46391 -Wheatfield,IN,46392 -Whiting,IN,46394 -Gary,IN,46402 -Gary,IN,46403 -Gary,IN,46404 -Lake Station,IN,46405 -Gary,IN,46406 -Gary,IN,46407 -Gary,IN,46408 -Gary,IN,46409 -Merrillville,IN,46410 -Argos,IN,46501 -Bourbon,IN,46504 -Bremen,IN,46506 -Bristol,IN,46507 -Claypool,IN,46510 -Culver Military,IN,46511 -Elkhart,IN,46514 -Elkhart,IN,46516 -Elkhart,IN,46517 -Etna Green,IN,46524 -Foraker,IN,46526 -Granger,IN,46530 -Grovertown,IN,46531 -Hamlet,IN,46532 -Ober,IN,46534 -Lakeville,IN,46536 -Leesburg,IN,46538 -Mentone,IN,46539 -Middlebury,IN,46540 -Milford,IN,46542 -Millersburg,IN,46543 -Mishawaka,IN,46544 -Mishawaka,IN,46545 -Nappanee,IN,46550 -New Carlisle,IN,46552 -New Paris,IN,46553 -North Liberty,IN,46554 -North Webster,IN,46555 -Saint Marys,IN,46556 -Osceola,IN,46561 -Pierceton,IN,46562 -Inwood,IN,46563 -Shipshewana,IN,46565 -Syracuse,IN,46567 -Tippecanoe,IN,46570 -Topeka,IN,46571 -Wakarusa,IN,46573 -Walkerton,IN,46574 -Warsaw,IN,46580 -Winona Lake,IN,46590 -South Bend,IN,46601 -South Bend,IN,46613 -South Bend,IN,46614 -South Bend,IN,46615 -South Bend,IN,46616 -South Bend,IN,46617 -South Bend,IN,46619 -South Bend,IN,46628 -South Bend,IN,46635 -South Bend,IN,46637 -Albion,IN,46701 -Andrews,IN,46702 -Angola,IN,46703 -Ashley,IN,46705 -Auburn,IN,46706 -Avilla,IN,46710 -Linn Grove,IN,46711 -Bluffton,IN,46714 -Butler,IN,46721 -Churubusco,IN,46723 -Columbia City,IN,46725 -Corunna,IN,46730 -Craigville,IN,46731 -Cromwell,IN,46732 -Decatur,IN,46733 -Fremont,IN,46737 -Garrett,IN,46738 -Geneva,IN,46740 -Grabill,IN,46741 -Hamilton,IN,46742 -Harlan,IN,46743 -Hoagland,IN,46745 -Howe,IN,46746 -Helmer,IN,46747 -Huntertown,IN,46748 -Huntington,IN,46750 -Kendallville,IN,46755 -Keystone,IN,46759 -Kimmell,IN,46760 -Lagrange,IN,46761 -Laotto,IN,46763 -Larwill,IN,46764 -Leo,IN,46765 -Liberty Center,IN,46766 -Ligonier,IN,46767 -Markle,IN,46770 -Monroe,IN,46772 -Monroeville,IN,46773 -New Haven,IN,46774 -Orland,IN,46776 -Ossian,IN,46777 -Pleasant Lake,IN,46779 -Poneto,IN,46781 -Roanoke,IN,46783 -Rome City,IN,46784 -Saint Joe,IN,46785 -South Whitley,IN,46787 -Spencerville,IN,46788 -Uniondale,IN,46791 -Warren,IN,46792 -Waterloo,IN,46793 -Wawaka,IN,46794 -Wolcottville,IN,46795 -Woodburn,IN,46797 -Yoder,IN,46798 -Fort Wayne,IN,46802 -Fort Wayne,IN,46803 -Fort Wayne,IN,46804 -Fort Wayne,IN,46805 -Fort Wayne,IN,46806 -Fort Wayne,IN,46807 -Fort Wayne,IN,46808 -Fort Wayne,IN,46809 -Fort Wayne,IN,46815 -Fort Wayne,IN,46816 -Fort Wayne,IN,46818 -Fort Wayne,IN,46819 -Fort Wayne,IN,46825 -Fort Wayne,IN,46835 -Fort Wayne,IN,46845 -Kokomo,IN,46901 -Kokomo,IN,46902 -Akron,IN,46910 -Amboy,IN,46911 -Bringhurst,IN,46913 -Bunker Hill,IN,46914 -Camden,IN,46917 -Converse,IN,46919 -Cutler,IN,46920 -Delphi,IN,46923 -Chili,IN,46926 -Fairmount,IN,46928 -Flora,IN,46929 -Galveston,IN,46932 -Gas City,IN,46933 -Greentown,IN,46936 -Jonesboro,IN,46938 -Kewanna,IN,46939 -La Fontaine,IN,46940 -Lagro,IN,46941 -Logansport,IN,46947 -Lucerne,IN,46950 -Macy,IN,46951 -Marion,IN,46952 -Marion,IN,46953 -Monterey,IN,46960 -North Manchester,IN,46962 -Peru,IN,46970 -Grissom Air Forc,IN,46971 -Roann,IN,46974 -Rochester,IN,46975 -Royal Center,IN,46978 -Russiaville,IN,46979 -Silver Lake,IN,46982 -Star City,IN,46985 -Swayzee,IN,46986 -Twelve Mile,IN,46988 -Upland,IN,46989 -Urbana,IN,46990 -Landess,IN,46991 -Wabash,IN,46992 -Walton,IN,46994 -Winamac,IN,46996 -Aurora,IN,47001 -Batesville,IN,47006 -Bath,IN,47010 -Bennington,IN,47011 -Brookville,IN,47012 -Cedar Grove,IN,47016 -Cross Plains,IN,47017 -Dillsboro,IN,47018 -Florence,IN,47020 -Friendship,IN,47021 -Guilford,IN,47022 -Holton,IN,47023 -Laurel,IN,47024 -Lawrenceburg,IN,47025 -Metamora,IN,47030 -Milan,IN,47031 -Moores Hill,IN,47032 -Oldenburg,IN,47036 -Osgood,IN,47037 -Patriot,IN,47038 -Rising Sun,IN,47040 -Sunman,IN,47041 -Versailles,IN,47042 -Vevay,IN,47043 -W Harrison,IN,47060 -Austin,IN,47102 -Borden,IN,47106 -Campbellsburg,IN,47108 -Central,IN,47110 -Charlestown,IN,47111 -Corydon,IN,47112 -Crandall,IN,47114 -Depauw,IN,47115 -Eckerty,IN,47116 -Elizabeth,IN,47117 -English,IN,47118 -Floyds Knobs,IN,47119 -Fredericksburg,IN,47120 -Georgetown,IN,47122 -Grantsburg,IN,47123 -Greenville,IN,47124 -Hardinsburg,IN,47125 -Henryville,IN,47126 -Clarksville,IN,47129 -Jeffersonville,IN,47130 -Laconia,IN,47135 -Lanesville,IN,47136 -Leavenworth,IN,47137 -Lexington,IN,47138 -Marengo,IN,47140 -Marysville,IN,47141 -Mauckport,IN,47142 -Memphis,IN,47143 -Milltown,IN,47145 -Nabb,IN,47147 -New Albany,IN,47150 -New Middletown,IN,47160 -New Salisbury,IN,47161 -New Washington,IN,47162 -Otisco,IN,47163 -Palmyra,IN,47164 -Pekin,IN,47165 -Ramsey,IN,47166 -Salem,IN,47167 -Scottsburg,IN,47170 -Speed,IN,47172 -Sulphur,IN,47174 -Taswell,IN,47175 -Underwood,IN,47177 -Columbus,IN,47201 -Columbus,IN,47203 -Brownstown,IN,47220 -Butlerville,IN,47223 -Canaan,IN,47224 -Commiskey,IN,47227 -Cortland,IN,47228 -Crothersville,IN,47229 -Deputy,IN,47230 -Dupont,IN,47231 -Elizabethtown,IN,47232 -Flat Rock,IN,47234 -Freetown,IN,47235 -Grammer,IN,47236 -Adams,IN,47240 -Hanover,IN,47243 -Hartsville,IN,47244 -Hope,IN,47246 -Madison,IN,47250 -Medora,IN,47260 -Norman,IN,47264 -North Vernon,IN,47265 -Paris Crossing,IN,47270 -Saint Paul,IN,47272 -Scipio,IN,47273 -Seymour,IN,47274 -Vallonia,IN,47281 -Vernon,IN,47282 -Westport,IN,47283 -Muncie,IN,47302 -Muncie,IN,47303 -Muncie,IN,47304 -Muncie,IN,47305 -Ball State Unive,IN,47306 -Albany,IN,47320 -Brownsville,IN,47325 -Bryant,IN,47326 -Cambridge City,IN,47327 -Centerville,IN,47330 -Connersville,IN,47331 -Daleville,IN,47334 -Dunkirk,IN,47336 -Eaton,IN,47338 -Economy,IN,47339 -Farmland,IN,47340 -Fountain City,IN,47341 -Gaston,IN,47342 -Greens Fork,IN,47345 -Hagerstown,IN,47346 -Hartford City,IN,47348 -Lewisville,IN,47352 -Liberty,IN,47353 -Losantville,IN,47354 -Lynn,IN,47355 -Middletown,IN,47356 -Milton,IN,47357 -Modoc,IN,47358 -Montpelier,IN,47359 -Mooreland,IN,47360 -New Castle,IN,47362 -Parker City,IN,47368 -Pennville,IN,47369 -Portland,IN,47371 -Redkey,IN,47373 -Richmond,IN,47374 -Ridgeville,IN,47380 -Salamonia,IN,47381 -Saratoga,IN,47382 -Selma,IN,47383 -Shirley,IN,47384 -Spiceland,IN,47385 -Springport,IN,47386 -Straughn,IN,47387 -Sulphur Springs,IN,47388 -Union City,IN,47390 -Webster,IN,47392 -Williamsburg,IN,47393 -Winchester,IN,47394 -Yorktown,IN,47396 -Bloomington,IN,47401 -Bloomington,IN,47403 -Bloomington,IN,47404 -Woodbridge,IN,47408 -Bedford,IN,47421 -Bloomfield,IN,47424 -Coal City,IN,47427 -Ellettsville,IN,47429 -Freedom,IN,47431 -French Lick,IN,47432 -Gosport,IN,47433 -Heltonville,IN,47436 -Jasonville,IN,47438 -Linton,IN,47441 -Lyons,IN,47443 -Mitchell,IN,47446 -Nashville,IN,47448 -Newberry,IN,47449 -Oolitic,IN,47451 -Orleans,IN,47452 -Owensburg,IN,47453 -Paoli,IN,47454 -Quincy,IN,47456 -Solsberry,IN,47459 -Spencer,IN,47460 -Springville,IN,47462 -Switz City,IN,47465 -Unionville,IN,47468 -West Baden Sprin,IN,47469 -Williams,IN,47470 -Worthington,IN,47471 -Washington,IN,47501 -Bicknell,IN,47512 -Birdseye,IN,47513 -Branchville,IN,47514 -Siberia,IN,47515 -Bruceville,IN,47516 -Cannelburg,IN,47519 -Mount Pleasant,IN,47520 -Celestine,IN,47521 -Crane Naval Depo,IN,47522 -Dale,IN,47523 -Decker,IN,47524 -Derby,IN,47525 -Dubois,IN,47527 -Edwardsport,IN,47528 -Elnora,IN,47529 -Evanston,IN,47531 -Ferdinand,IN,47532 -Gentryville,IN,47537 -Holland,IN,47541 -Huntingburg,IN,47542 -Haysville,IN,47546 -Buffaloville,IN,47550 -Leopold,IN,47551 -Lincoln City,IN,47552 -Loogootee,IN,47553 -Magnet,IN,47555 -Mariah Hill,IN,47556 -Monroe City,IN,47557 -Montgomery,IN,47558 -47559,IN,47559 -Oaktown,IN,47561 -Odon,IN,47562 -Otwell,IN,47564 -Petersburg,IN,47567 -Plainville,IN,47568 -Rome,IN,47574 -Kyana,IN,47575 -Saint Croix,IN,47576 -Saint Meinrad,IN,47577 -Sandborn,IN,47578 -Santa Claus,IN,47579 -Schnellville,IN,47580 -Shoals,IN,47581 -Stendal,IN,47585 -Tell City,IN,47586 -Tobinsport,IN,47587 -Troy,IN,47588 -Velpen,IN,47590 -Vincennes,IN,47591 -Wheatland,IN,47597 -Winslow,IN,47598 -Boonville,IN,47601 -Chandler,IN,47610 -Chrisney,IN,47611 -Cynthiana,IN,47612 -Elberfeld,IN,47613 -Grandview,IN,47615 -Griffin,IN,47616 -Lynnville,IN,47619 -Mount Vernon,IN,47620 -Newburgh,IN,47630 -New Harmony,IN,47631 -Poseyville,IN,47633 -Richland,IN,47634 -Rockport,IN,47635 -Tennyson,IN,47637 -Wadesville,IN,47638 -Haubstadt,IN,47639 -Hazleton,IN,47640 -Buckskin,IN,47647 -Fort Branch,IN,47648 -Francisco,IN,47649 -Oakland City,IN,47660 -Owensville,IN,47665 -Patoka,IN,47666 -Princeton,IN,47670 -Evansville,IN,47708 -Evansville,IN,47710 -Evansville,IN,47711 -Evansville,IN,47712 -Evansville,IN,47713 -Evansville,IN,47714 -Evansville,IN,47715 -Evansville,IN,47720 -Terre Haute,IN,47802 -Terre Haute,IN,47803 -Terre Haute,IN,47804 -North Terre Haut,IN,47805 -Terre Haute,IN,47807 -Bloomingdale,IN,47832 -Bowling Green,IN,47833 -Brazil,IN,47834 -Bridgeton,IN,47836 -Carbon,IN,47837 -Carlisle,IN,47838 -Centerpoint,IN,47840 -Clay City,IN,47841 -Clinton,IN,47842 -Cory,IN,47846 -Dana,IN,47847 -Dugger,IN,47848 -Fairbanks,IN,47849 -Farmersburg,IN,47850 -Hillsdale,IN,47854 -Lewis,IN,47858 -Marshall,IN,47859 -Merom,IN,47861 -Montezuma,IN,47862 -Pimento,IN,47866 -Poland,IN,47868 -Rockville,IN,47872 -Rosedale,IN,47874 -Shelburn,IN,47879 -Sullivan,IN,47882 -Sandford,IN,47885 -Lafayette,IN,47901 -Lafayette,IN,47904 -Lafayette,IN,47905 -West Lafayette,IN,47906 -Ambia,IN,47917 -Attica,IN,47918 -Battle Ground,IN,47920 -Boswell,IN,47921 -Brook,IN,47922 -Brookston,IN,47923 -Burnettsville,IN,47926 -Cayuga,IN,47928 -Chalmers,IN,47929 -Clarks Hill,IN,47930 -Covington,IN,47932 -Crawfordsville,IN,47933 -Darlington,IN,47940 -Earl Park,IN,47942 -Fair Oaks,IN,47943 -Fowler,IN,47944 -Francesville,IN,47946 -Goodland,IN,47948 -Hillsboro,IN,47949 -Idaville,IN,47950 -Kentland,IN,47951 -Cates,IN,47952 -Ladoga,IN,47954 -Linden,IN,47955 -Medaryville,IN,47957 -Monon,IN,47959 -Monticello,IN,47960 -Morocco,IN,47963 -New Richmond,IN,47967 -New Ross,IN,47968 -Otterbein,IN,47970 -Oxford,IN,47971 -Perrysville,IN,47974 -Pine Village,IN,47975 -Remington,IN,47977 -Collegeville,IN,47978 -Reynolds,IN,47980 -Romney,IN,47981 -Tangier,IN,47985 -Veedersburg,IN,47987 -Waveland,IN,47989 -Waynetown,IN,47990 -West Lebanon,IN,47991 -Westpoint,IN,47992 -Marshfield,IN,47993 -Wingate,IN,47994 -Wolcott,IN,47995 -Ackworth,IA,50001 -Adair,IA,50002 -Adel,IA,50003 -Albion,IA,50005 -Alden,IA,50006 -Alleman,IA,50007 -Allerton,IA,50008 -Altoona,IA,50009 -Ames,IA,50010 -Anita,IA,50020 -Ankeny,IA,50021 -Atlantic,IA,50022 -Audubon,IA,50025 -Bagley,IA,50026 -Barnes City,IA,50027 -Baxter,IA,50028 -Bayard,IA,50029 -Beaconsfield,IA,50030 -Beaver,IA,50031 -Bevington,IA,50033 -Blairsburg,IA,50034 -Bondurant,IA,50035 -Boone,IA,50036 -Booneville,IA,50038 -Bouton,IA,50039 -Boxholm,IA,50040 -Bradford,IA,50041 -Brayton,IA,50042 -Bussey,IA,50044 -Cambridge,IA,50046 -Carlisle,IA,50047 -Casey,IA,50048 -Chariton,IA,50049 -Churdan,IA,50050 -Clemons,IA,50051 -Clio,IA,50052 -Colfax,IA,50054 -Collins,IA,50055 -Colo,IA,50056 -Columbia,IA,50057 -Coon Rapids,IA,50058 -Cooper,IA,50059 -Sewal,IA,50060 -Cumming,IA,50061 -Dallas,IA,50062 -Dallas Center,IA,50063 -Dana,IA,50064 -Pleasanton,IA,50065 -Dawson,IA,50066 -Decatur,IA,50067 -Derby,IA,50068 -De Soto,IA,50069 -Dexter,IA,50070 -Dows,IA,50071 -Earlham,IA,50072 -Elkhart,IA,50073 -Ellston,IA,50074 -Ellsworth,IA,50075 -Exira,IA,50076 -Galt,IA,50101 -Garden City,IA,50102 -Garden Grove,IA,50103 -Gibson,IA,50104 -Gilman,IA,50106 -Grand Junction,IA,50107 -Grand River,IA,50108 -Granger,IA,50109 -Gray,IA,50110 -Grimes,IA,50111 -Grinnell,IA,50112 -Guthrie Center,IA,50115 -Hamilton,IA,50116 -Hamlin,IA,50117 -Hartford,IA,50118 -Harvey,IA,50119 -Haverhill,IA,50120 -Hubbard,IA,50122 -Humeston,IA,50123 -Huxley,IA,50124 -Spring Hill,IA,50125 -Iowa Falls,IA,50126 -Ira,IA,50127 -Jamaica,IA,50128 -Jefferson,IA,50129 -Jewell,IA,50130 -Johnston,IA,50131 -Kamrar,IA,50132 -Kellerton,IA,50133 -Kelley,IA,50134 -Kellogg,IA,50135 -Keswick,IA,50136 -Knoxville,IA,50138 -Lacona,IA,50139 -Lamoni,IA,50140 -Laurel,IA,50141 -Leighton,IA,50143 -Leon,IA,50144 -Liberty Center,IA,50145 -Linden,IA,50146 -Lineville,IA,50147 -Liscomb,IA,50148 -Lorimor,IA,50149 -Lovilia,IA,50150 -Lucas,IA,50151 -Luther,IA,50152 -Lynnville,IA,50153 -Mc Callsburg,IA,50154 -Macksburg,IA,50155 -Madrid,IA,50156 -Malcom,IA,50157 -Marshalltown,IA,50158 -Maxwell,IA,50161 -Melbourne,IA,50162 -Melcher-Dallas,IA,50163 -Menlo,IA,50164 -Millerton,IA,50165 -Milo,IA,50166 -Minburn,IA,50167 -Mingo,IA,50168 -Mitchellville,IA,50169 -Monroe,IA,50170 -Montezuma,IA,50171 -Guernsey,IA,50172 -Montour,IA,50173 -Murray,IA,50174 -Nevada,IA,50201 -New Providence,IA,50206 -New Sharon,IA,50207 -Newton,IA,50208 -New Virginia,IA,50210 -Norwalk,IA,50211 -Ogden,IA,50212 -Osceola,IA,50213 -Otley,IA,50214 -Panora,IA,50216 -Paton,IA,50217 -Patterson,IA,50218 -Pella,IA,50219 -Perry,IA,50220 -Peru,IA,50222 -Pilot Mound,IA,50223 -Pleasantville,IA,50225 -Polk City,IA,50226 -Popejoy,IA,50227 -Prairie City,IA,50228 -Prole,IA,50229 -Radcliffe,IA,50230 -Randall,IA,50231 -Reasnor,IA,50232 -Redfield,IA,50233 -Rhodes,IA,50234 -Rippey,IA,50235 -Roland,IA,50236 -Runnells,IA,50237 -Russell,IA,50238 -Saint Anthony,IA,50239 -Saint Charles,IA,50240 -Saint Marys,IA,50241 -Searsboro,IA,50242 -Slater,IA,50244 -Stanhope,IA,50246 -State Center,IA,50247 -Story City,IA,50248 -Stratford,IA,50249 -Stuart,IA,50250 -Sully,IA,50251 -Swan,IA,50252 -Thayer,IA,50254 -Tracy,IA,50256 -Truro,IA,50257 -Union,IA,50258 -Van Meter,IA,50261 -Van Wert,IA,50262 -Waukee,IA,50263 -Weldon,IA,50264 -West Des Moines,IA,50265 -What Cheer,IA,50268 -Williams,IA,50271 -Williamson,IA,50272 -Winterset,IA,50273 -Wiota,IA,50274 -Woodburn,IA,50275 -Woodward,IA,50276 -Yale,IA,50277 -Zearing,IA,50278 -Des Moines,IA,50309 -Des Moines,IA,50310 -Windsor Heights,IA,50311 -Des Moines,IA,50312 -Des Moines,IA,50313 -Des Moines,IA,50314 -Des Moines,IA,50315 -Des Moines,IA,50316 -Pleasant Hill,IA,50317 -Des Moines,IA,50320 -Des Moines,IA,50321 -Urbandale,IA,50322 -Clive,IA,50325 -Mason City,IA,50401 -Alexander,IA,50420 -Belmond,IA,50421 -Britt,IA,50423 -Buffalo Center,IA,50424 -Clear Lake,IA,50428 -Corwith,IA,50430 -Crystal Lake,IA,50432 -Dougherty,IA,50433 -Fertile,IA,50434 -Floyd,IA,50435 -Forest City,IA,50436 -Garner,IA,50438 -Goodell,IA,50439 -Grafton,IA,50440 -Hampton,IA,50441 -Hanlontown,IA,50444 -Joice,IA,50446 -Kanawha,IA,50447 -Kensett,IA,50448 -Klemme,IA,50449 -Lake Mills,IA,50450 -Lakota,IA,50451 -Latimer,IA,50452 -Leland,IA,50453 -Little Cedar,IA,50454 -Mc Intire,IA,50455 -Manly,IA,50456 -Meservey,IA,50457 -Nora Springs,IA,50458 -Northwood,IA,50459 -Orchard,IA,50460 -Osage,IA,50461 -Plymouth,IA,50464 -Rake,IA,50465 -Riceville,IA,50466 -Rock Falls,IA,50467 -Rockford,IA,50468 -Rockwell,IA,50469 -Rowan,IA,50470 -Rudd,IA,50471 -Saint Ansgar,IA,50472 -Scarville,IA,50473 -Sheffield,IA,50475 -Stacyville,IA,50476 -Swaledale,IA,50477 -Thompson,IA,50478 -Thornton,IA,50479 -Titonka,IA,50480 -Ventura,IA,50482 -Wesley,IA,50483 -Woden,IA,50484 -Fort Dodge,IA,50501 -Albert City,IA,50510 -Algona,IA,50511 -Armstrong,IA,50514 -Ayrshire,IA,50515 -Badger,IA,50516 -Bancroft,IA,50517 -Barnum,IA,50518 -Bode,IA,50519 -Bradgate,IA,50520 -Burnside,IA,50521 -Burt,IA,50522 -Callender,IA,50523 -Clare,IA,50524 -Clarion,IA,50525 -Curlew,IA,50527 -Cylinder,IA,50528 -Dayton,IA,50530 -Dolliver,IA,50531 -Duncombe,IA,50532 -Eagle Grove,IA,50533 -Early,IA,50535 -Emmetsburg,IA,50536 -Farnhamville,IA,50538 -Fenton,IA,50539 -Fonda,IA,50540 -Gilmore City,IA,50541 -Goldfield,IA,50542 -Gowrie,IA,50543 -Harcourt,IA,50544 -Hardy,IA,50545 -Havelock,IA,50546 -Humboldt,IA,50548 -Jolley,IA,50551 -Knierim,IA,50552 -Knoke,IA,50553 -Laurens,IA,50554 -Ledyard,IA,50556 -Lehigh,IA,50557 -Livermore,IA,50558 -Lone Rock,IA,50559 -Lu Verne,IA,50560 -Lytton,IA,50561 -Mallard,IA,50562 -Manson,IA,50563 -Marathon,IA,50565 -Moorland,IA,50566 -Nemaha,IA,50567 -Newell,IA,50568 -Otho,IA,50569 -Ottosen,IA,50570 -Palmer,IA,50571 -Plover,IA,50573 -Pocahontas,IA,50574 -Pomeroy,IA,50575 -Rembrandt,IA,50576 -Renwick,IA,50577 -Ringsted,IA,50578 -Rockwell City,IA,50579 -Rodman,IA,50580 -Rolfe,IA,50581 -Rutland,IA,50582 -Sac City,IA,50583 -Sioux Rapids,IA,50585 -Somers,IA,50586 -Storm Lake,IA,50588 -Swea City,IA,50590 -Thor,IA,50591 -Vincent,IA,50594 -Webster City,IA,50595 -West Bend,IA,50597 -Whittemore,IA,50598 -Woolstock,IA,50599 -Ackley,IA,50601 -Allison,IA,50602 -Alta Vista,IA,50603 -Aplington,IA,50604 -Aredale,IA,50605 -Arlington,IA,50606 -Aurora,IA,50607 -Austinville,IA,50608 -Beaman,IA,50609 -Bristow,IA,50611 -Buckingham,IA,50612 -Cedar Falls,IA,50613 -Charles City,IA,50616 -Clarksville,IA,50619 -Conrad,IA,50621 -Denver,IA,50622 -Dike,IA,50624 -Dumont,IA,50625 -Dunkerton,IA,50626 -Eldora,IA,50627 -Elma,IA,50628 -Fairbank,IA,50629 -Fredericksburg,IA,50630 -Garwin,IA,50632 -Geneva,IA,50633 -Gladbrook,IA,50635 -Greene,IA,50636 -Grundy Center,IA,50638 -Hansell,IA,50640 -Hazleton,IA,50641 -Holland,IA,50642 -Hudson,IA,50643 -Independence,IA,50644 -Ionia,IA,50645 -Janesville,IA,50647 -Jesup,IA,50648 -Kesley,IA,50649 -Lamont,IA,50650 -La Porte City,IA,50651 -Lincoln,IA,50652 -Marble Rock,IA,50653 -Masonville,IA,50654 -Maynard,IA,50655 -Nashua,IA,50658 -New Hampton,IA,50659 -New Hartford,IA,50660 -Oelwein,IA,50662 -Parkersburg,IA,50665 -Plainfield,IA,50666 -Raymond,IA,50667 -Readlyn,IA,50668 -Reinbeck,IA,50669 -Shell Rock,IA,50670 -Stanley,IA,50671 -Steamboat Rock,IA,50672 -Sumner,IA,50674 -Traer,IA,50675 -Tripoli,IA,50676 -Bremer,IA,50677 -Wellsburg,IA,50680 -Westgate,IA,50681 -Winthrop,IA,50682 -Waterloo,IA,50701 -Waterloo,IA,50702 -Waterloo,IA,50703 -Washburn,IA,50706 -Evansdale,IA,50707 -Nevinville,IA,50801 -Afton,IA,50830 -Bedford,IA,50833 -Benton,IA,50835 -Blockton,IA,50836 -Bridgewater,IA,50837 -Clearfield,IA,50840 -Corning,IA,50841 -Cumberland,IA,50843 -Delphos,IA,50844 -Diagonal,IA,50845 -Fontanelle,IA,50846 -Grant,IA,50847 -Gravity,IA,50848 -Greenfield,IA,50849 -Kent,IA,50850 -Lenox,IA,50851 -Maloy,IA,50852 -Massena,IA,50853 -Mount Ayr,IA,50854 -50855,IA,50855 -Nodaway,IA,50857 -Orient,IA,50858 -Prescott,IA,50859 -Redding,IA,50860 -Shannon City,IA,50861 -Sharpsburg,IA,50862 -Tingley,IA,50863 -Villisca,IA,50864 -Akron,IA,51001 -Alta,IA,51002 -Alton,IA,51003 -Anthon,IA,51004 -Aurelia,IA,51005 -Battle Creek,IA,51006 -Bronson,IA,51007 -Calumet,IA,51009 -Castana,IA,51010 -Cherokee,IA,51012 -Cleghorn,IA,51014 -Correctionville,IA,51016 -Cushing,IA,51018 -Danbury,IA,51019 -Galva,IA,51020 -Granville,IA,51022 -Hawarden,IA,51023 -Hinton,IA,51024 -Holstein,IA,51025 -Hornick,IA,51026 -Ireton,IA,51027 -Kingsley,IA,51028 -Larrabee,IA,51029 -Lawton,IA,51030 -Le Mars,IA,51031 -Linn Grove,IA,51033 -Mapleton,IA,51034 -Marcus,IA,51035 -Maurice,IA,51036 -Meriden,IA,51037 -Merrill,IA,51038 -Moville,IA,51039 -Onawa,IA,51040 -Orange City,IA,51041 -Oto,IA,51044 -Paullina,IA,51046 -Peterson,IA,51047 -Pierson,IA,51048 -Quimby,IA,51049 -Remsen,IA,51050 -Rodney,IA,51051 -Salix,IA,51052 -Schaller,IA,51053 -Sergeant Bluff,IA,51054 -Sloan,IA,51055 -Smithland,IA,51056 -Sutherland,IA,51058 -Turin,IA,51059 -Ute,IA,51060 -Washta,IA,51061 -Westfield,IA,51062 -Whiting,IA,51063 -Sioux City,IA,51101 -Sioux City,IA,51103 -Sioux City,IA,51104 -Sioux City,IA,51105 -Sioux City,IA,51106 -Sioux City,IA,51107 -Sioux City,IA,51108 -Sioux City,IA,51109 -Sioux City,IA,51110 -Sioux City,IA,51111 -Sheldon,IA,51201 -Alvord,IA,51230 -Archer,IA,51231 -Ashton,IA,51232 -Boyden,IA,51234 -Doon,IA,51235 -George,IA,51237 -Hospers,IA,51238 -Hull,IA,51239 -Inwood,IA,51240 -Larchwood,IA,51241 -Little Rock,IA,51243 -Primghar,IA,51245 -Rock Rapids,IA,51246 -Rock Valley,IA,51247 -Sanborn,IA,51248 -Sibley,IA,51249 -Sioux Center,IA,51250 -Spencer,IA,51301 -Arnolds Park,IA,51331 -Dickens,IA,51333 -Estherville,IA,51334 -Everly,IA,51338 -Fostoria,IA,51340 -Graettinger,IA,51342 -Greenville,IA,51343 -Harris,IA,51345 -Hartley,IA,51346 -Lake Park,IA,51347 -Melvin,IA,51350 -Milford,IA,51351 -Ocheyedan,IA,51354 -Okoboji,IA,51355 -Royal,IA,51357 -Ruthven,IA,51358 -Spirit Lake,IA,51360 -Superior,IA,51363 -Terril,IA,51364 -Wallingford,IA,51365 -Webb,IA,51366 -Carroll,IA,51401 -Arcadia,IA,51430 -Arthur,IA,51431 -Aspinwall,IA,51432 -Yetter,IA,51433 -Breda,IA,51436 -Charter Oak,IA,51439 -Dedham,IA,51440 -Deloit,IA,51441 -Denison,IA,51442 -Glidden,IA,51443 -Halbur,IA,51444 -Ida Grove,IA,51445 -Irwin,IA,51446 -Kirkman,IA,51447 -Kiron,IA,51448 -Lake City,IA,51449 -Lake View,IA,51450 -Lanesboro,IA,51451 -Lidderdale,IA,51452 -Lohrville,IA,51453 -Manilla,IA,51454 -Manning,IA,51455 -Odebolt,IA,51458 -Ralston,IA,51459 -Ricketts,IA,51460 -Schleswig,IA,51461 -Scranton,IA,51462 -Templeton,IA,51463 -Vail,IA,51465 -Wall Lake,IA,51466 -Westside,IA,51467 -Manawa,IA,51501 -Council Bluffs,IA,51503 -Carter Lake,IA,51510 -Arion,IA,51520 -Avoca,IA,51521 -Blencoe,IA,51523 -Carson,IA,51525 -Crescent,IA,51526 -Earling,IA,51527 -Dow City,IA,51528 -Earling,IA,51529 -Earling,IA,51530 -Elk Horn,IA,51531 -Elliott,IA,51532 -Emerson,IA,51533 -Glenwood,IA,51534 -Griswold,IA,51535 -Hancock,IA,51536 -Harlan,IA,51537 -Hastings,IA,51540 -Henderson,IA,51541 -Honey Creek,IA,51542 -Kimballton,IA,51543 -Lewis,IA,51544 -Little Sioux,IA,51545 -Logan,IA,51546 -Mc Clelland,IA,51548 -Macedonia,IA,51549 -Magnolia,IA,51550 -Malvern,IA,51551 -Marne,IA,51552 -Minden,IA,51553 -Mineola,IA,51554 -Missouri Valley,IA,51555 -Modale,IA,51556 -Mondamin,IA,51557 -Moorhead,IA,51558 -Neola,IA,51559 -Oakland,IA,51560 -Pacific Junction,IA,51561 -Panama,IA,51562 -Persia,IA,51563 -Pisgah,IA,51564 -Portsmouth,IA,51565 -Red Oak,IA,51566 -Shelby,IA,51570 -Silver City,IA,51571 -Soldier,IA,51572 -Stanton,IA,51573 -Treynor,IA,51575 -Underwood,IA,51576 -Walnut,IA,51577 -Westphalia,IA,51578 -Woodbine,IA,51579 -Shenandoah,IA,51601 -Blanchard,IA,51630 -Braddyville,IA,51631 -Clarinda,IA,51632 -Coin,IA,51636 -College Springs,IA,51637 -Essex,IA,51638 -Farragut,IA,51639 -Hamburg,IA,51640 -Imogene,IA,51645 -New Market,IA,51646 -Northboro,IA,51647 -Percival,IA,51648 -Randolph,IA,51649 -Riverton,IA,51650 -Shambaugh,IA,51651 -Sidney,IA,51652 -Tabor,IA,51653 -Thurman,IA,51654 -Yorktown,IA,51656 -Dubuque,IA,52001 -Dubuque,IA,52002 -Dubuque,IA,52003 -Andrew,IA,52030 -Bellevue,IA,52031 -Bernard,IA,52032 -Cascade,IA,52033 -Colesburg,IA,52035 -Delaware,IA,52036 -Delmar,IA,52037 -Dundee,IA,52038 -Durango,IA,52039 -Dyersville,IA,52040 -Earlville,IA,52041 -Edgewood,IA,52042 -Elkader,IA,52043 -Elkport,IA,52044 -Epworth,IA,52045 -Farley,IA,52046 -Farmersburg,IA,52047 -Garber,IA,52048 -Garnavillo,IA,52049 -Greeley,IA,52050 -Guttenberg,IA,52052 -Holy Cross,IA,52053 -La Motte,IA,52054 -Manchester,IA,52057 -Maquoketa,IA,52060 -Miles,IA,52064 -New Vienna,IA,52065 -North Buena Vist,IA,52066 -Peosta,IA,52068 -Preston,IA,52069 -Sabula,IA,52070 -Saint Donatus,IA,52071 -Saint Olaf,IA,52072 -Sherrill,IA,52073 -Spragueville,IA,52074 -Springbrook,IA,52075 -Strawberry Point,IA,52076 -Volga,IA,52077 -Worthington,IA,52078 -Zwingle,IA,52079 -Decorah,IA,52101 -Burr Oak,IA,52131 -Calmar,IA,52132 -Castalia,IA,52133 -Chester,IA,52134 -Clermont,IA,52135 -Cresco,IA,52136 -Dorchester,IA,52140 -Elgin,IA,52141 -Fayette,IA,52142 -Fort Atkinson,IA,52144 -Harpers Ferry,IA,52146 -Hawkeye,IA,52147 -Jackson Junction,IA,52150 -Lansing,IA,52151 -Lawler,IA,52154 -Lime Springs,IA,52155 -Luana,IA,52156 -Mc Gregor,IA,52157 -Marquette,IA,52158 -Monona,IA,52159 -New Albin,IA,52160 -Ossian,IA,52161 -Postville,IA,52162 -Randalia,IA,52164 -Ridgeway,IA,52165 -Saint Lucas,IA,52166 -Wadena,IA,52169 -Waterville,IA,52170 -Waucoma,IA,52171 -Waukon,IA,52172 -Eldorado,IA,52175 -Ainsworth,IA,52201 -Alburnett,IA,52202 -Amana,IA,52203 -Anamosa,IA,52205 -Atkins,IA,52206 -Baldwin,IA,52207 -Belle Plaine,IA,52208 -Blairstown,IA,52209 -Brandon,IA,52210 -Brooklyn,IA,52211 -Center Junction,IA,52212 -Center Point,IA,52213 -Central City,IA,52214 -Chelsea,IA,52215 -Clarence,IA,52216 -Clutier,IA,52217 -Coggon,IA,52218 -Conroy,IA,52220 -Deep River,IA,52222 -Delhi,IA,52223 -Dysart,IA,52224 -Elberon,IA,52225 -Elwood,IA,52226 -Ely,IA,52227 -Fairfax,IA,52228 -Garrison,IA,52229 -Harper,IA,52231 -Hartwick,IA,52232 -Hiawatha,IA,52233 -Homestead,IA,52236 -Hopkinton,IA,52237 -Iowa City,IA,52240 -Coralville,IA,52241 -Iowa City,IA,52245 -Iowa City,IA,52246 -Kalona,IA,52247 -Keota,IA,52248 -Keystone,IA,52249 -Kinross,IA,52250 -Ladora,IA,52251 -Lisbon,IA,52253 -Lost Nation,IA,52254 -Lowden,IA,52255 -Luzerne,IA,52257 -Marengo,IA,52301 -Marion,IA,52302 -Martelle,IA,52305 -Mechanicsville,IA,52306 -Middle Amana,IA,52307 -Millersburg,IA,52308 -Monmouth,IA,52309 -Monticello,IA,52310 -Mount Auburn,IA,52313 -Mount Vernon,IA,52314 -Newhall,IA,52315 -North English,IA,52316 -North Liberty,IA,52317 -Norway,IA,52318 -Olin,IA,52320 -Onslow,IA,52321 -Oxford,IA,52322 -Oxford Junction,IA,52323 -Palo,IA,52324 -Parnell,IA,52325 -Quasqueton,IA,52326 -Riverside,IA,52327 -Robins,IA,52328 -Rowley,IA,52329 -Ryan,IA,52330 -Scotch Grove,IA,52331 -Shellsburg,IA,52332 -Solon,IA,52333 -South Amana,IA,52334 -South English,IA,52335 -Springville,IA,52336 -Stanwood,IA,52337 -Swisher,IA,52338 -Tama,IA,52339 -Toddville,IA,52341 -Toledo,IA,52342 -Toronto,IA,52343 -Van Horne,IA,52346 -Victor,IA,52347 -Vining,IA,52348 -Vinton,IA,52349 -Walker,IA,52352 -Washington,IA,52353 -Watkins,IA,52354 -Webster,IA,52355 -Wellman,IA,52356 -West Amana,IA,52357 -West Branch,IA,52358 -West Chester,IA,52359 -Williamsburg,IA,52361 -Wyoming,IA,52362 -Cedar Rapids,IA,52401 -Cedar Rapids,IA,52402 -Cedar Rapids,IA,52403 -Cedar Rapids,IA,52404 -Cedar Rapids,IA,52405 -Highland Center,IA,52501 -Agency,IA,52530 -Albia,IA,52531 -Batavia,IA,52533 -Beacon,IA,52534 -Birmingham,IA,52535 -Blakesburg,IA,52536 -Bloomfield,IA,52537 -West Grove,IA,52538 -Brighton,IA,52540 -Cantril,IA,52542 -Cedar,IA,52543 -Centerville,IA,52544 -Chillicothe,IA,52548 -Cincinnati,IA,52549 -Delta,IA,52550 -Douds,IA,52551 -Drakesville,IA,52552 -Eddyville,IA,52553 -Eldon,IA,52554 -Exline,IA,52555 -Fairfield,IA,52556 -Floris,IA,52560 -Fremont,IA,52561 -Hedrick,IA,52563 -Keosauqua,IA,52565 -Kirkville,IA,52566 -Libertyville,IA,52567 -Melrose,IA,52569 -Milton,IA,52570 -Moravia,IA,52571 -Moulton,IA,52572 -Mount Sterling,IA,52573 -Mystic,IA,52574 -Numa,IA,52575 -Ollie,IA,52576 -Oskaloosa,IA,52577 -Packwood,IA,52580 -Plano,IA,52581 -Promise City,IA,52583 -Pulaski,IA,52584 -Richland,IA,52585 -Rose Hill,IA,52586 -Selma,IA,52588 -Seymour,IA,52590 -Sigourney,IA,52591 -Udell,IA,52593 -Unionville,IA,52594 -Burlington,IA,52601 -Argyle,IA,52619 -Bonaparte,IA,52620 -Crawfordsville,IA,52621 -Danville,IA,52623 -Denmark,IA,52624 -Donnellson,IA,52625 -Farmington,IA,52626 -Fort Madison,IA,52627 -Hillsboro,IA,52630 -Houghton,IA,52631 -Keokuk,IA,52632 -Lockridge,IA,52635 -Mediapolis,IA,52637 -Middletown,IA,52638 -Montrose,IA,52639 -Morning Sun,IA,52640 -Mount Pleasant,IA,52641 -Mount Union,IA,52644 -New London,IA,52645 -Oakville,IA,52646 -Olds,IA,52647 -Salem,IA,52649 -Sperry,IA,52650 -Stockport,IA,52651 -Wapello,IA,52653 -Wayland,IA,52654 -West Burlington,IA,52655 -West Point,IA,52656 -Saint Paul,IA,52657 -Wever,IA,52658 -Winfield,IA,52659 -Yarmouth,IA,52660 -Andover,IA,52701 -Atalissa,IA,52720 -Bennett,IA,52721 -Bettendorf,IA,52722 -Blue Grass,IA,52726 -Bryant,IA,52727 -Calamus,IA,52729 -Camanche,IA,52730 -Charlotte,IA,52731 -Clinton,IA,52732 -Columbus Junctio,IA,52738 -Conesville,IA,52739 -De Witt,IA,52742 -Big Rock,IA,52745 -Donahue,IA,52746 -Durant,IA,52747 -Eldridge,IA,52748 -Goose Lake,IA,52750 -Grand Mound,IA,52751 -Le Claire,IA,52753 -Letts,IA,52754 -Lone Tree,IA,52755 -Long Grove,IA,52756 -Moscow,IA,52760 -Muscatine,IA,52761 -New Liberty,IA,52765 -Nichols,IA,52766 -Princeton,IA,52768 -Stockton,IA,52769 -Tipton,IA,52772 -Walcott,IA,52773 -Welton,IA,52774 -West Liberty,IA,52776 -Wheatland,IA,52777 -Wilton,IA,52778 -Davenport,IA,52802 -Davenport,IA,52803 -Davenport,IA,52804 -Davenport,IA,52806 -Davenport,IA,52807 -Atchison,KS,66002 -Baldwin City,KS,66006 -Basehor,KS,66007 -Bendena,KS,66008 -Blue Mound,KS,66010 -Lake Of The Fore,KS,66012 -Bucyrus,KS,66013 -Centerville,KS,66014 -Colony,KS,66015 -Cummings,KS,66016 -Denton,KS,66017 -De Soto,KS,66018 -Easton,KS,66020 -Edgerton,KS,66021 -Effingham,KS,66023 -Eudora,KS,66025 -Fontana,KS,66026 -Fort Leavenworth,KS,66027 -Gardner,KS,66030 -Industrial Airpo,KS,66031 -Garnett,KS,66032 -Greeley,KS,66033 -Highland,KS,66035 -Hillsdale,KS,66036 -Mildred,KS,66039 -La Cygne,KS,66040 -Huron,KS,66041 -Lane,KS,66042 -Lansing,KS,66043 -Lawrence,KS,66044 -Lawrence,KS,66046 -Lawrence,KS,66047 -Leavenworth,KS,66048 -Lawrence,KS,66049 -Lecompton,KS,66050 -Linwood,KS,66052 -Louisburg,KS,66053 -Mc Louth,KS,66054 -Mound City,KS,66056 -Muscotah,KS,66058 -Nortonville,KS,66060 -Olathe,KS,66061 -Olathe,KS,66062 -Osawatomie,KS,66064 -Oskaloosa,KS,66066 -Ottawa,KS,66067 -Ozawkie,KS,66070 -Paola,KS,66071 -Parker,KS,66072 -Perry,KS,66073 -Pleasanton,KS,66075 -Pomona,KS,66076 -Princeton,KS,66078 -Rantoul,KS,66079 -Richmond,KS,66080 -66081,KS,66081 -Spring Hill,KS,66083 -Stilwell,KS,66085 -Tonganoxie,KS,66086 -Severance,KS,66087 -Valley Falls,KS,66088 -Wathena,KS,66090 -Welda,KS,66091 -Wellsville,KS,66092 -Westphalia,KS,66093 -White Cloud,KS,66094 -Williamsburg,KS,66095 -Winchester,KS,66097 -Kansas City,KS,66101 -Kansas City,KS,66102 -Rosedale,KS,66103 -Kansas City,KS,66104 -Kansas City,KS,66105 -Lake Quivira,KS,66106 -Kansas City,KS,66109 -Kansas City,KS,66111 -Kansas City,KS,66112 -Kansas City,KS,66115 -Kansas City,KS,66118 -Countryside,KS,66202 -Shawnee,KS,66203 -Overland Park,KS,66204 -Mission,KS,66205 -Leawood,KS,66206 -Shawnee Mission,KS,66207 -Prairie Village,KS,66208 -Leawood,KS,66209 -Lenexa,KS,66210 -Leawood,KS,66211 -Overland Park,KS,66212 -Overland Park,KS,66213 -Lenexa,KS,66214 -Lenexa,KS,66215 -Shawnee,KS,66216 -Shawnee,KS,66217 -Shawnee,KS,66218 -Lenexa,KS,66219 -Lenexa,KS,66220 -Stanley,KS,66221 -Stanley,KS,66223 -Stanley,KS,66224 -Shawnee,KS,66226 -Lenexa,KS,66227 -Alma,KS,66401 -Auburn,KS,66402 -Axtell,KS,66403 -Baileyville,KS,66404 -Beattie,KS,66406 -Belvue,KS,66407 -Bern,KS,66408 -Berryton,KS,66409 -Blue Rapids,KS,66411 -Bremen,KS,66412 -Burlingame,KS,66413 -Carbondale,KS,66414 -Centralia,KS,66415 -Circleville,KS,66416 -Corning,KS,66417 -Delia,KS,66418 -Denison,KS,66419 -Dover,KS,66420 -Emmett,KS,66422 -Eskridge,KS,66423 -Everest,KS,66424 -Fairview,KS,66425 -Winifred,KS,66427 -Goff,KS,66428 -Grantville,KS,66429 -Harveyville,KS,66431 -Havensville,KS,66432 -Herkimer,KS,66433 -Reserve,KS,66434 -Holton,KS,66436 -Home,KS,66438 -Horton,KS,66439 -Hoyt,KS,66440 -Junction City,KS,66441 -Fort Riley,KS,66442 -Leonardville,KS,66449 -Louisville,KS,66450 -Lyndon,KS,66451 -Manhattan,KS,66502 -Maple Hill,KS,66507 -Marysville,KS,66508 -Mayetta,KS,66509 -Melvern,KS,66510 -Meriden,KS,66512 -Milford,KS,66514 -Morrill,KS,66515 -Netawaka,KS,66516 -Ogden,KS,66517 -Oketo,KS,66518 -Olsburg,KS,66520 -Duluth,KS,66521 -Oneida,KS,66522 -Osage City,KS,66523 -Overbrook,KS,66524 -Paxico,KS,66526 -Powhattan,KS,66527 -Quenemo,KS,66528 -Riley,KS,66531 -Leona,KS,66532 -Rossville,KS,66533 -Sabetha,KS,66534 -Saint George,KS,66535 -Saint Marys,KS,66536 -Scranton,KS,66537 -Kelly,KS,66538 -Silver Lake,KS,66539 -Soldier,KS,66540 -Summerfield,KS,66541 -Tecumseh,KS,66542 -Vassar,KS,66543 -Vliets,KS,66544 -66545,KS,66545 -Wakarusa,KS,66546 -Wamego,KS,66547 -Waterville,KS,66548 -Blaine,KS,66549 -Wetmore,KS,66550 -Onaga,KS,66551 -Whiting,KS,66552 -Randolph,KS,66554 -Topeka,KS,66603 -Topeka,KS,66604 -Topeka,KS,66605 -Topeka,KS,66606 -Topeka,KS,66607 -Topeka,KS,66608 -Topeka,KS,66609 -Topeka,KS,66610 -Topeka,KS,66611 -Topeka,KS,66612 -Topeka,KS,66614 -Topeka,KS,66615 -Topeka,KS,66616 -Topeka,KS,66617 -Topeka,KS,66618 -Pauline,KS,66619 -Hiattville,KS,66701 -Altoona,KS,66710 -Arcadia,KS,66711 -Baxter Springs,KS,66713 -Benedict,KS,66714 -Bronson,KS,66716 -Buffalo,KS,66717 -Chanute,KS,66720 -Cherokee,KS,66724 -Hallowell,KS,66725 -Coyville,KS,66727 -Crestline,KS,66728 -Elsmore,KS,66732 -Erie,KS,66733 -Farlington,KS,66734 -Lafontaine,KS,66736 -Fulton,KS,66738 -Galena,KS,66739 -Galesburg,KS,66740 -Garland,KS,66741 -Girard,KS,66743 -Hepler,KS,66746 -Humboldt,KS,66748 -Carlyle,KS,66749 -La Harpe,KS,66751 -Mc Cune,KS,66753 -Mapleton,KS,66754 -Moran,KS,66755 -Mulberry,KS,66756 -Neodesha,KS,66757 -Neosho Falls,KS,66758 -New Albany,KS,66759 -Piqua,KS,66761 -Radley,KS,66762 -Prescott,KS,66767 -Redfield,KS,66769 -Riverton,KS,66770 -Saint Paul,KS,66771 -Savonburg,KS,66772 -Carona,KS,66773 -Stark,KS,66775 -Thayer,KS,66776 -Toronto,KS,66777 -Treece,KS,66778 -Uniontown,KS,66779 -Walnut,KS,66780 -Lawton,KS,66781 -Yates Center,KS,66783 -Emporia,KS,66801 -Admire,KS,66830 -Bushong,KS,66833 -Alta Vista,KS,66834 -Americus,KS,66835 -Burdick,KS,66838 -Strawn,KS,66839 -Burns,KS,66840 -Cassoday,KS,66842 -Clements,KS,66843 -Cottonwood Falls,KS,66845 -Dunlap,KS,66846 -66847,KS,66847 -Dwight,KS,66849 -Elmdale,KS,66850 -Florence,KS,66851 -Gridley,KS,66852 -Hamilton,KS,66853 -Hartford,KS,66854 -Lebo,KS,66856 -Le Roy,KS,66857 -Antelope,KS,66858 -Lost Springs,KS,66859 -Madison,KS,66860 -Marion,KS,66861 -Matfield Green,KS,66862 -Neosho Rapids,KS,66864 -Olpe,KS,66865 -Peabody,KS,66866 -Reading,KS,66868 -Strong City,KS,66869 -Virgil,KS,66870 -Waverly,KS,66871 -White City,KS,66872 -Wilsey,KS,66873 -Rice,KS,66901 -Agenda,KS,66930 -Ames,KS,66931 -Athol,KS,66932 -Barnes,KS,66933 -Belleville,KS,66935 -Burr Oak,KS,66936 -Clifton,KS,66937 -Clyde,KS,66938 -Courtland,KS,66939 -Cuba,KS,66940 -Esbon,KS,66941 -Formoso,KS,66942 -Greenleaf,KS,66943 -Haddam,KS,66944 -Hanover,KS,66945 -Hollenberg,KS,66946 -Jamestown,KS,66948 -Ionia,KS,66949 -Kensington,KS,66951 -Bellaire,KS,66952 -Linn,KS,66953 -Mahaska,KS,66955 -Mankato,KS,66956 -Morrowville,KS,66958 -Munden,KS,66959 -Narka,KS,66960 -Norway,KS,66961 -Palmer,KS,66962 -Randall,KS,66963 -Republic,KS,66964 -Scandia,KS,66966 -Smith Center,KS,66967 -Washington,KS,66968 -Webber,KS,66970 -Andale,KS,67001 -Andover,KS,67002 -Anthony,KS,67003 -Argonia,KS,67004 -Arkansas City,KS,67005 -Atlanta,KS,67008 -Attica,KS,67009 -Augusta,KS,67010 -Beaumont,KS,67012 -Belle Plaine,KS,67013 -67014,KS,67014 -Bentley,KS,67016 -Benton,KS,67017 -Bluff City,KS,67018 -Burden,KS,67019 -Burrton,KS,67020 -Byers,KS,67021 -Caldwell,KS,67022 -Cambridge,KS,67023 -Cedar Vale,KS,67024 -Cheney,KS,67025 -Clearwater,KS,67026 -Coats,KS,67028 -Coldwater,KS,67029 -Colwich,KS,67030 -Conway Springs,KS,67031 -Corbin,KS,67032 -Penalosa,KS,67035 -Danville,KS,67036 -Derby,KS,67037 -Dexter,KS,67038 -Douglass,KS,67039 -Elbing,KS,67041 -El Dorado,KS,67042 -Eureka,KS,67045 -Fall River,KS,67047 -Freeport,KS,67049 -Garden Plain,KS,67050 -Geuda Springs,KS,67051 -Goddard,KS,67052 -Goessel,KS,67053 -Greensburg,KS,67054 -Halstead,KS,67056 -Hardtner,KS,67057 -Harper,KS,67058 -Haviland,KS,67059 -Haysville,KS,67060 -Hazelton,KS,67061 -Hesston,KS,67062 -Hillsboro,KS,67063 -Isabel,KS,67065 -Iuka,KS,67066 -Belmont,KS,67068 -Kiowa,KS,67070 -Lake City,KS,67071 -Latham,KS,67072 -Lehigh,KS,67073 -Leon,KS,67074 -Maize,KS,67101 -Maple City,KS,67102 -Mayfield,KS,67103 -Medicine Lodge,KS,67104 -Milan,KS,67105 -Milton,KS,67106 -Moundridge,KS,67107 -Mount Hope,KS,67108 -Mullinville,KS,67109 -Mulvane,KS,67110 -Murdock,KS,67111 -Nashville,KS,67112 -Newton,KS,67114 -North Newton,KS,67117 -Norwich,KS,67118 -Oxford,KS,67119 -Peck,KS,67120 -Piedmont,KS,67122 -Potwin,KS,67123 -Pratt,KS,67124 -Protection,KS,67127 -Rago,KS,67128 -Rock,KS,67131 -Rosalia,KS,67132 -Rose Hill,KS,67133 -Sawyer,KS,67134 -Sedgwick,KS,67135 -Climax,KS,67137 -Sharon,KS,67138 -South Haven,KS,67140 -Spivey,KS,67142 -Sun City,KS,67143 -Towanda,KS,67144 -Udall,KS,67146 -Valley Center,KS,67147 -Viola,KS,67149 -Waldron,KS,67150 -Walton,KS,67151 -Wellington,KS,67152 -Whitewater,KS,67154 -Wilmore,KS,67155 -Winfield,KS,67156 -Zenda,KS,67159 -Wichita,KS,67202 -Wichita,KS,67203 -Wichita,KS,67204 -Wichita,KS,67205 -Eastborough,KS,67206 -Eastborough,KS,67207 -Wichita,KS,67208 -Wichita,KS,67209 -Wichita,KS,67210 -Wichita,KS,67211 -Wichita,KS,67212 -Wichita,KS,67213 -Wichita,KS,67214 -Wichita,KS,67215 -Wichita,KS,67216 -Wichita,KS,67217 -Wichita,KS,67218 -Park City,KS,67219 -Bel Aire,KS,67220 -Mc Connell A F B,KS,67221 -Wichita,KS,67223 -Wichita,KS,67226 -Wichita,KS,67227 -Wichita,KS,67228 -Wichita,KS,67230 -Wichita,KS,67231 -Wichita,KS,67232 -Wichita,KS,67233 -Wichita,KS,67235 -Wichita,KS,67236 -Independence,KS,67301 -Altamont,KS,67330 -Bartlett,KS,67332 -Caney,KS,67333 -Cherryvale,KS,67335 -Chetopa,KS,67336 -Coffeyville,KS,67337 -Dennis,KS,67341 -Edna,KS,67342 -Elk City,KS,67344 -Elk Falls,KS,67345 -Grenola,KS,67346 -Havana,KS,67347 -Howard,KS,67349 -Liberty,KS,67351 -Longton,KS,67352 -Moline,KS,67353 -Mound Valley,KS,67354 -Niotaze,KS,67355 -Oswego,KS,67356 -Parsons,KS,67357 -Peru,KS,67360 -Sedan,KS,67361 -Bavaria,KS,67401 -Abilene,KS,67410 -Ada,KS,67414 -Assaria,KS,67416 -Aurora,KS,67417 -Barnard,KS,67418 -Scottsville,KS,67420 -Bennington,KS,67422 -Beverly,KS,67423 -Brookville,KS,67425 -Bushton,KS,67427 -Canton,KS,67428 -Carlton,KS,67429 -Cawker City,KS,67430 -Chapman,KS,67431 -Clay Center,KS,67432 -Delphos,KS,67436 -Downs,KS,67437 -Durham,KS,67438 -Ellsworth,KS,67439 -Enterprise,KS,67441 -Falun,KS,67442 -Galva,KS,67443 -Geneseo,KS,67444 -Glasco,KS,67445 -Glen Elder,KS,67446 -Green,KS,67447 -Gypsum,KS,67448 -Delavan,KS,67449 -Holyrood,KS,67450 -Hope,KS,67451 -Hunter,KS,67452 -Kanopolis,KS,67454 -Westfall,KS,67455 -Lindsborg,KS,67456 -Little River,KS,67457 -Longford,KS,67458 -Lorraine,KS,67459 -Conway,KS,67460 -Manchester,KS,67463 -Marquette,KS,67464 -Mentor,KS,67465 -Miltonvale,KS,67466 -Minneapolis,KS,67467 -Morganville,KS,67468 -Navarre,KS,67469 -New Cambria,KS,67470 -Oakhill,KS,67472 -Osborne,KS,67473 -Portis,KS,67474 -Ramona,KS,67475 -Roxbury,KS,67476 -Simpson,KS,67478 -Smolan,KS,67479 -Solomon,KS,67480 -Sylvan Grove,KS,67481 -Talmage,KS,67482 -Tampa,KS,67483 -Culver,KS,67484 -Tipton,KS,67485 -Wakefield,KS,67487 -Wells,KS,67488 -Wilson,KS,67490 -Windom,KS,67491 -Woodbine,KS,67492 -Hutchinson,KS,67501 -Medora,KS,67502 -South Hutchinson,KS,67505 -Abbyville,KS,67510 -Albert,KS,67511 -Alden,KS,67512 -Alexander,KS,67513 -Arlington,KS,67514 -Arnold,KS,67515 -Bazine,KS,67516 -Beaver,KS,67517 -Beeler,KS,67518 -Belpre,KS,67519 -Bison,KS,67520 -Brownell,KS,67521 -Buhler,KS,67522 -Burdett,KS,67523 -Chase,KS,67524 -Claflin,KS,67525 -Ellinwood,KS,67526 -Garfield,KS,67529 -Heizer,KS,67530 -Haven,KS,67543 -Susank,KS,67544 -Hudson,KS,67545 -Inman,KS,67546 -Kinsley,KS,67547 -La Crosse,KS,67548 -67549,KS,67549 -Radium,KS,67550 -Lewis,KS,67552 -Liebenthal,KS,67553 -Lyons,KS,67554 -Mc Cracken,KS,67556 -Macksville,KS,67557 -Nekoma,KS,67559 -Ness City,KS,67560 -Nickerson,KS,67561 -Odin,KS,67562 -Offerle,KS,67563 -Galatia,KS,67564 -Galatia,KS,67565 -Partridge,KS,67566 -Pawnee Rock,KS,67567 -Plevna,KS,67568 -Pretty Prairie,KS,67570 -Ransom,KS,67572 -Raymond,KS,67573 -Rozel,KS,67574 -Rush Center,KS,67575 -Saint John,KS,67576 -Seward,KS,67577 -Stafford,KS,67578 -Sterling,KS,67579 -67580,KS,67580 -Sylvia,KS,67581 -Timken,KS,67582 -Langdon,KS,67583 -Utica,KS,67584 -Antonino,KS,67601 -Agra,KS,67621 -Almena,KS,67622 -Alton,KS,67623 -Bogue,KS,67625 -Bunker Hill,KS,67626 -Catharine,KS,67627 -Cedar,KS,67628 -Clayton,KS,67629 -Codell,KS,67630 -Collyer,KS,67631 -Damar,KS,67632 -67633,KS,67633 -Dorrance,KS,67634 -Dresden,KS,67635 -Edmond,KS,67636 -Ellis,KS,67637 -Gaylord,KS,67638 -Glade,KS,67639 -Gorham,KS,67640 -Harlan,KS,67641 -Hill City,KS,67642 -Jennings,KS,67643 -Kirwin,KS,67644 -Densmore,KS,67645 -Logan,KS,67646 -Long Island,KS,67647 -Lucas,KS,67648 -Luray,KS,67649 -Morland,KS,67650 -Natoma,KS,67651 -New Almelo,KS,67652 -Norcatur,KS,67653 -Norton,KS,67654 -Ogallah,KS,67656 -Palco,KS,67657 -Paradise,KS,67658 -Penokee,KS,67659 -Pfeifer,KS,67660 -Phillipsburg,KS,67661 -Plainville,KS,67663 -Prairie View,KS,67664 -Russell,KS,67665 -Schoenchen,KS,67667 -Stockton,KS,67669 -Victoria,KS,67671 -Wa Keeney,KS,67672 -Waldo,KS,67673 -Woodston,KS,67675 -Zurich,KS,67676 -Colby,KS,67701 -Atwood,KS,67730 -Bird City,KS,67731 -Brewster,KS,67732 -Edson,KS,67733 -Gem,KS,67734 -Goodland,KS,67735 -Gove,KS,67736 -Grainfield,KS,67737 -Grinnell,KS,67738 -Herndon,KS,67739 -Hoxie,KS,67740 -Kanorado,KS,67741 -Levant,KS,67743 -Ludell,KS,67744 -Mc Donald,KS,67745 -67746,KS,67746 -Monument,KS,67747 -Oakley,KS,67748 -Oberlin,KS,67749 -Park,KS,67751 -Quinter,KS,67752 -Menlo,KS,67753 -Russell Springs,KS,67755 -Wheeler,KS,67756 -Selden,KS,67757 -Sharon Springs,KS,67758 -Studley,KS,67759 -Wallace,KS,67761 -Weskan,KS,67762 -Winona,KS,67764 -Dodge City,KS,67801 -67830,KS,67830 -Ashland,KS,67831 -67833,KS,67833 -Bucklin,KS,67834 -Cimarron,KS,67835 -Copeland,KS,67837 -Deerfield,KS,67838 -Alamota,KS,67839 -Englewood,KS,67840 -Ensign,KS,67841 -Ford,KS,67842 -Fort Dodge,KS,67843 -Fowler,KS,67844 -Garden City,KS,67846 -Hanston,KS,67849 -Healy,KS,67850 -Holcomb,KS,67851 -Ingalls,KS,67853 -Jetmore,KS,67854 -Johnson,KS,67855 -Kalvesta,KS,67856 -Kendall,KS,67857 -Kingsdown,KS,67858 -Kismet,KS,67859 -Lakin,KS,67860 -Leoti,KS,67861 -Manter,KS,67862 -Modoc,KS,67863 -Meade,KS,67864 -Bloom,KS,67865 -67866,KS,67866 -Montezuma,KS,67867 -Pierceville,KS,67868 -Plains,KS,67869 -Satanta,KS,67870 -Friend,KS,67871 -Shields,KS,67874 -Spearville,KS,67876 -Sublette,KS,67877 -Syracuse,KS,67878 -Tribune,KS,67879 -Ulysses,KS,67880 -Wright,KS,67882 -Liberal,KS,67901 -Elkhart,KS,67950 -Hugoton,KS,67951 -Moscow,KS,67952 -Richfield,KS,67953 -Rolla,KS,67954 -Bagdad,KY,40003 -Bardstown,KY,40004 -Bedford,KY,40006 -Bethlehem,KY,40007 -Bloomfield,KY,40008 -Bradfordsville,KY,40009 -Buckner,KY,40010 -Campbellsburg,KY,40011 -Chaplin,KY,40012 -Deatsville,KY,40013 -Crestwood,KY,40014 -Eminence,KY,40019 -Finchville,KY,40022 -Fisherville,KY,40023 -Goshen,KY,40026 -Howardstown,KY,40028 -La Grange,KY,40031 -Lebanon,KY,40033 -Lockport,KY,40036 -Loretto,KY,40037 -Mackville,KY,40040 -Milton,KY,40045 -Mount Eden,KY,40046 -Mount Washington,KY,40047 -New Castle,KY,40050 -Trappist,KY,40051 -Pendleton,KY,40055 -Pewee Valley,KY,40056 -Cropper,KY,40057 -Prospect,KY,40059 -Raywick,KY,40060 -Saint Catharine,KY,40061 -Saint Francis,KY,40062 -Shelbyville,KY,40065 -Simpsonville,KY,40067 -Smithfield,KY,40068 -Maud,KY,40069 -Sulphur,KY,40070 -Taylorsville,KY,40071 -Turners Station,KY,40075 -Waddy,KY,40076 -Westport,KY,40077 -Willisburg,KY,40078 -40103,KY,40103 -Battletown,KY,40104 -Big Spring,KY,40106 -Boston,KY,40107 -Brandenburg,KY,40108 -Brooks,KY,40109 -Cloverport,KY,40111 -Constantine,KY,40114 -Custer,KY,40115 -Ekron,KY,40117 -Fairdale,KY,40118 -Glen Dean,KY,40119 -Fort Knox,KY,40121 -Garfield,KY,40140 -40141,KY,40141 -Guston,KY,40142 -Mooleyville,KY,40143 -Locust Hill,KY,40144 -Hudson,KY,40145 -Irvington,KY,40146 -Lebanon Junction,KY,40150 -Mc Daniels,KY,40152 -Payneville,KY,40157 -Radcliff,KY,40160 -Rhodelia,KY,40161 -Rineyville,KY,40162 -40163,KY,40163 -Se Ree,KY,40164 -Shepherdsville,KY,40165 -Stephensport,KY,40170 -Union Star,KY,40171 -Vine Grove,KY,40175 -Webster,KY,40176 -West Point,KY,40177 -Westview,KY,40178 -Louisville,KY,40202 -Louisville,KY,40203 -Louisville,KY,40204 -Louisville,KY,40205 -Saint Matthews,KY,40206 -Saint Matthews,KY,40207 -Louisville,KY,40208 -Louisville,KY,40209 -Louisville,KY,40210 -Louisville,KY,40211 -Louisville,KY,40212 -Louisville,KY,40213 -Louisville,KY,40214 -Louisville,KY,40215 -Shively,KY,40216 -Louisville,KY,40217 -Buechel,KY,40218 -Okolona,KY,40219 -Louisville,KY,40220 -Lyndon,KY,40222 -Anchorage,KY,40223 -Buechel,KY,40228 -Okolona,KY,40229 -Lyndon,KY,40241 -Lyndon,KY,40242 -Middletown,KY,40243 -Louisville,KY,40245 -Pleasure Ridge P,KY,40258 -Valley Station,KY,40272 -Fern Creek,KY,40291 -Jeffersontown,KY,40299 -Carlisle,KY,40311 -Westbend,KY,40312 -Clearfield,KY,40313 -Denniston,KY,40316 -Scranton,KY,40322 -Georgetown,KY,40324 -Gratz,KY,40327 -Gravel Switch,KY,40328 -Cornishville,KY,40330 -Jinks,KY,40336 -Jeffersonville,KY,40337 -Keene,KY,40339 -Lamero,KY,40341 -Lawrenceburg,KY,40342 -Mariba,KY,40345 -Means,KY,40346 -Midway,KY,40347 -Moorefield,KY,40350 -Morehead,KY,40351 -Mount Sterling,KY,40353 -New Liberty,KY,40355 -Nicholasville,KY,40356 -Olympia,KY,40358 -Owenton,KY,40359 -Owingsville,KY,40360 -Paris,KY,40361 -Pomeroyton,KY,40365 -Sadieville,KY,40370 -Salt Lick,KY,40371 -Bondville,KY,40372 -Sharpsburg,KY,40374 -Slade,KY,40376 -Stamping Ground,KY,40379 -Patsey,KY,40380 -Versailles,KY,40383 -Bybee,KY,40385 -Korea,KY,40387 -High Bridge,KY,40390 -Winchester,KY,40391 -Moores Creek,KY,40402 -Berea,KY,40403 -Brodhead,KY,40409 -Cobhill,KY,40415 -Conway,KY,40417 -Crab Orchard,KY,40419 -Danville,KY,40422 -Dreyfus,KY,40426 -Hustonville,KY,40437 -Junction City,KY,40440 -Kings Mountain,KY,40442 -Lancaster,KY,40444 -Livingston,KY,40445 -Clover Bottom,KY,40447 -Climax,KY,40456 -Orlando,KY,40460 -Paint Lick,KY,40461 -Parksville,KY,40464 -Perryville,KY,40468 -Pryse,KY,40471 -Ravenna,KY,40472 -Richmond,KY,40475 -Sandgap,KY,40481 -Stanford,KY,40484 -Elias,KY,40486 -Waynesburg,KY,40489 -Lexington,KY,40502 -Lexington,KY,40503 -Lexington,KY,40504 -Lexington,KY,40505 -Lexington,KY,40507 -Lexington,KY,40508 -Lexington,KY,40509 -Lexington,KY,40510 -Lexington,KY,40511 -Lexington,KY,40513 -Lexington,KY,40514 -Lexington,KY,40515 -Lexington,KY,40516 -Lexington,KY,40517 -Hatton,KY,40601 -Corbin,KY,40701 -Bush,KY,40724 -Symbol,KY,40729 -Gray,KY,40734 -Keavy,KY,40737 -Lily,KY,40740 -Sasser,KY,40741 -Nevisdale,KY,40754 -Rockholds,KY,40759 -Siler,KY,40763 -Pleasant View,KY,40769 -Woodbine,KY,40771 -Ages Brookside,KY,40801 -Baxter,KY,40806 -Benham,KY,40807 -Big Laurel,KY,40808 -Lewis Creek,KY,40810 -Calvin,KY,40813 -Crummies,KY,40815 -40817,KY,40817 -Coalgood,KY,40818 -Coldiron,KY,40819 -Cranks,KY,40820 -Cumberland,KY,40823 -Dayhoit,KY,40824 -Dizney,KY,40825 -Eolia,KY,40826 -Louellen,KY,40828 -Grays Knob,KY,40829 -Gulston,KY,40830 -Chevrolet,KY,40831 -Holmes Mill,KY,40843 -Hulen,KY,40845 -Keith,KY,40846 -Kenvir,KY,40847 -Lejunior,KY,40849 -Lynch,KY,40855 -Mozelle,KY,40858 -Oven Fork,KY,40861 -Partridge,KY,40862 -Pathfork,KY,40863 -Putney,KY,40865 -Smith,KY,40867 -Stinnett,KY,40868 -Totz,KY,40870 -Wallins Creek,KY,40873 -Arjay,KY,40902 -Artemus,KY,40903 -40905,KY,40905 -Bailey Switch,KY,40906 -Beverly,KY,40913 -Big Creek,KY,40914 -Bimble,KY,40915 -Bryants Store,KY,40921 -Cannon,KY,40923 -Closplint,KY,40927 -Dewitt,KY,40930 -Salt Gum,KY,40935 -Fonde,KY,40940 -Girdler,KY,40943 -Green Road,KY,40946 -Heidrick,KY,40949 -Hinkle,KY,40953 -Kettle Island,KY,40958 -Bright Shade,KY,40962 -Mary Alice,KY,40964 -Middlesboro,KY,40965 -Mills,KY,40970 -Oneida,KY,40972 -Callaway,KY,40977 -Roark,KY,40979 -40980,KY,40980 -Scalf,KY,40982 -Sextons Creek,KY,40983 -Stoney Fork,KY,40988 -Trosper,KY,40995 -Walker,KY,40997 -Woollum,KY,40999 -Alexandria,KY,41001 -Augusta,KY,41002 -Berry,KY,41003 -Brooksville,KY,41004 -Rabbit Hash,KY,41005 -Butler,KY,41006 -California,KY,41007 -Carrollton,KY,41008 -Corinth,KY,41010 -Covington,KY,41011 -Rouse,KY,41014 -Latonia,KY,41015 -Ludlow,KY,41016 -Dixie,KY,41017 -Erlanger,KY,41018 -Crittenden,KY,41030 -Cynthiana,KY,41031 -Demossville,KY,41033 -Dover,KY,41034 -Dry Ridge,KY,41035 -Ewing,KY,41039 -Falmouth,KY,41040 -Flemingsburg,KY,41041 -Florence,KY,41042 -Foster,KY,41043 -Germantown,KY,41044 -Ghent,KY,41045 -Glencoe,KY,41046 -Hebron,KY,41048 -Hillsboro,KY,41049 -Independence,KY,41051 -Jonesville,KY,41052 -Mays Lick,KY,41055 -Limestone Sq,KY,41056 -Melbourne,KY,41059 -Morning View,KY,41063 -Mount Olivet,KY,41064 -Southgate,KY,41071 -Bellevue,KY,41073 -Dayton,KY,41074 -Fort Thomas,KY,41075 -Newport,KY,41076 -Petersburg,KY,41080 -Sanders,KY,41083 -Silver Grove,KY,41085 -Sparta,KY,41086 -Union,KY,41091 -Verona,KY,41092 -Wallingford,KY,41093 -Walton,KY,41094 -Warsaw,KY,41095 -Williamstown,KY,41097 -Worthville,KY,41098 -Westwood,KY,41101 -Ashland,KY,41102 -Argillite,KY,41121 -Blaine,KY,41124 -Camp Dix,KY,41127 -Catlettsburg,KY,41129 -Denton,KY,41132 -Head Of Grassy,KY,41135 -Firebrick,KY,41137 -Flatwoods,KY,41139 -Garrison,KY,41141 -Fultz,KY,41143 -Lynn,KY,41144 -Hitchins,KY,41146 -Isonville,KY,41149 -Martha,KY,41159 -Oldtown,KY,41163 -Lawton,KY,41164 -Quincy,KY,41166 -Rush,KY,41168 -Raceland,KY,41169 -Saint Paul,KY,41170 -Burke,KY,41171 -South Portsmouth,KY,41174 -Maloneton,KY,41175 -Stephens,KY,41177 -41178,KY,41178 -Trinity,KY,41179 -Webbville,KY,41180 -Worthington,KY,41183 -Tollesboro,KY,41189 -Adams,KY,41201 -Boons Camp,KY,41204 -Davella,KY,41214 -Denver,KY,41215 -East Point,KY,41216 -Elna,KY,41219 -Fuget,KY,41220 -Hagerhill,KY,41222 -Job,KY,41224 -41225,KY,41225 -Keaton,KY,41226 -Leander,KY,41228 -Clifford,KY,41230 -Lovely,KY,41231 -Meally,KY,41234 -Offutt,KY,41237 -Manila,KY,41238 -Nippa,KY,41240 -Laura,KY,41250 -River,KY,41254 -Sitka,KY,41255 -Barnetts Creek,KY,41256 -Stambaugh,KY,41257 -Riceville,KY,41258 -Thelma,KY,41260 -Davisport,KY,41262 -Tutor Key,KY,41263 -Van Lear,KY,41265 -Fuget,KY,41266 -Hode,KY,41267 -Whitehouse,KY,41269 -Williamsport,KY,41271 -Wittensville,KY,41274 -Flat,KY,41301 -Altro,KY,41306 -Vada,KY,41311 -Morris Fork,KY,41314 -Burkhart,KY,41315 -41316,KY,41316 -Clayhole,KY,41317 -Decoy,KY,41321 -Gillmore,KY,41327 -Green Hall,KY,41328 -Haddix,KY,41331 -Grassy Creek,KY,41332 -Island City,KY,41338 -Canoe,KY,41339 -Lambric,KY,41340 -Lee City,KY,41342 -Leeco,KY,41343 -Little,KY,41346 -Hardshell,KY,41348 -Mistletoe,KY,41351 -Noctor,KY,41357 -Old Landing,KY,41358 -41359,KY,41359 -Pine Ridge,KY,41360 -Quicksand,KY,41363 -Ricetown,KY,41364 -Rogers,KY,41365 -Rousseau,KY,41366 -Rowdy,KY,41367 -Saldee,KY,41369 -41370,KY,41370 -Talbert,KY,41377 -Vancleve,KY,41385 -Vincent,KY,41386 -Whick,KY,41390 -41393,KY,41393 -Zachariah,KY,41396 -Zoe,KY,41397 -41401,KY,41401 -Caney,KY,41407 -Carver,KY,41409 -Cottle,KY,41412 -Edna,KY,41419 -Elkfork,KY,41421 -Elsie,KY,41422 -Ezel,KY,41425 -41429,KY,41429 -41431,KY,41431 -Hendricks,KY,41441 -Lenox,KY,41447 -Royalton,KY,41464 -Bethanna,KY,41465 -Seitz,KY,41466 -Blairs Mill,KY,41472 -White Oak,KY,41474 -Broad Bottom,KY,41501 -South Williamson,KY,41503 -Ashcamp,KY,41512 -Belcher,KY,41513 -Belfry,KY,41514 -Canada,KY,41519 -Senterville,KY,41522 -Biggs,KY,41524 -Forest Hills,KY,41527 -Freeburn,KY,41528 -Aflex,KY,41529 -Hardy,KY,41531 -Huddy,KY,41535 -Jamboree,KY,41536 -Payne Gap,KY,41537 -Kimper,KY,41539 -Lick Creek,KY,41540 -Mc Andrews,KY,41543 -Mc Carr,KY,41544 -Mc Combs,KY,41545 -Mc Veigh,KY,41546 -Mouthcard,KY,41548 -Paw Paw,KY,41551 -Phelps,KY,41553 -Phyllis,KY,41554 -Pinsonfork,KY,41555 -Fishtrap,KY,41557 -Regina,KY,41559 -Robinson Creek,KY,41560 -Shelbiana,KY,41562 -Shelby Gap,KY,41563 -Sidney,KY,41564 -Speight,KY,41565 -Steele,KY,41566 -Stone,KY,41567 -Argo,KY,41568 -Turkey Creek,KY,41570 -Varney,KY,41571 -Etty,KY,41572 -Allen,KY,41601 -Auxier,KY,41602 -Banner,KY,41603 -Ligon,KY,41604 -Betsy Layne,KY,41605 -Bevinsville,KY,41606 -Blue River,KY,41607 -Craynor,KY,41614 -Dana,KY,41615 -David,KY,41616 -Eastern,KY,41622 -Endicott,KY,41626 -Estill,KY,41627 -Galveston,KY,41629 -Garrett,KY,41630 -Grethel,KY,41631 -Waldo,KY,41632 -Halo,KY,41633 -Harold,KY,41635 -Buckingham,KY,41636 -Pyrmid,KY,41637 -Honaker,KY,41639 -Elmrock,KY,41640 -Ivel,KY,41642 -Lackey,KY,41643 -Langley,KY,41645 -East Mc Dowell,KY,41647 -41648,KY,41648 -Hite,KY,41649 -Emma,KY,41653 -Printer,KY,41655 -Stanville,KY,41659 -Teaberry,KY,41660 -Wayland,KY,41666 -Darfork,KY,41701 -Ary,KY,41712 -Bear Branch,KY,41714 -Blue Diamond,KY,41719 -Buckhorn,KY,41721 -Tribbey,KY,41722 -Busy,KY,41723 -Carrie,KY,41725 -Chavies,KY,41727 -Cinda,KY,41728 -Combs,KY,41729 -Confluence,KY,41730 -Ulvah,KY,41731 -Cutshin,KY,41732 -Daisy,KY,41733 -Delphia,KY,41735 -Dice,KY,41736 -Bearville,KY,41740 -Fisty,KY,41743 -Gays Creek,KY,41745 -Happy,KY,41746 -Dryhill,KY,41749 -Napfor,KY,41754 -Leatherwood,KY,41756 -Anco,KY,41759 -Scuddy,KY,41760 -Slemp,KY,41763 -Smilax,KY,41764 -Talcum,KY,41765 -Vest,KY,41772 -Vicco,KY,41773 -Farler,KY,41774 -Wendover,KY,41775 -Frew,KY,41776 -Big Rock,KY,41777 -Amburgey,KY,41801 -Carcassonne,KY,41804 -Brinkley,KY,41805 -Crown,KY,41811 -Deane,KY,41812 -Ermine,KY,41815 -Larkslane,KY,41817 -Gilly,KY,41819 -Skyline,KY,41821 -Hindman,KY,41822 -Hollybush,KY,41823 -Isom,KY,41824 -Jackhorn,KY,41825 -Jeremiah,KY,41826 -Puncheon,KY,41828 -Kona,KY,41829 -Soft Shell,KY,41831 -Letcher,KY,41832 -Linefork,KY,41833 -Littcarr,KY,41834 -Mallie,KY,41836 -Millstone,KY,41838 -Mousie,KY,41839 -Fleming Neon,KY,41840 -Omaha,KY,41843 -Raven,KY,41844 -Premium,KY,41845 -Redfox,KY,41847 -Roxana,KY,41848 -Seco,KY,41849 -Thornton,KY,41855 -Day Rural,KY,41858 -Dema,KY,41859 -Raven,KY,41861 -Dry Creek,KY,41862 -Paducah,KY,42001 -Paducah,KY,42003 -Almo,KY,42020 -Arlington,KY,42021 -Bardwell,KY,42023 -Barlow,KY,42024 -Benton,KY,42025 -Boaz,KY,42027 -Burna,KY,42028 -Calvert City,KY,42029 -Clinton,KY,42031 -Columbus,KY,42032 -Cunningham,KY,42035 -Dexter,KY,42036 -Eddyville,KY,42038 -Fancy Farm,KY,42039 -Farmington,KY,42040 -Crutchfield,KY,42041 -Gilbertsville,KY,42044 -Iuka,KY,42045 -Hampton,KY,42047 -Hardin,KY,42048 -Hazel,KY,42049 -Hickman,KY,42050 -Hickory,KY,42051 -Kevil,KY,42053 -Kirksey,KY,42054 -Kuttawa,KY,42055 -La Center,KY,42056 -Ledbetter,KY,42058 -Marion,KY,42064 -Mayfield,KY,42066 -Melber,KY,42069 -Murray,KY,42071 -New Concord,KY,42076 -Salem,KY,42078 -Sedalia,KY,42079 -Carrsville,KY,42081 -Symsonia,KY,42082 -Tiline,KY,42083 -Water Valley,KY,42085 -West Paducah,KY,42086 -Wickliffe,KY,42087 -Wingo,KY,42088 -Plum Springs,KY,42101 -Bowling Green,KY,42103 -Bowling Green,KY,42104 -Adolphus,KY,42120 -Alvaton,KY,42122 -Austin,KY,42123 -Beaumont,KY,42124 -Cave City,KY,42127 -Subtle,KY,42129 -Eighty Eight,KY,42130 -Etoile,KY,42131 -Fountain Run,KY,42133 -Franklin,KY,42134 -Gamaliel,KY,42140 -Glasgow,KY,42141 -Hestand,KY,42151 -Holland,KY,42153 -Knob Lick,KY,42154 -Lamb,KY,42155 -Lucas,KY,42156 -Mount Herman,KY,42157 -Oakland,KY,42159 -Park City,KY,42160 -Rocky Hill,KY,42163 -Scottsville,KY,42164 -Summer Shade,KY,42166 -T Ville,KY,42167 -Willow Shade,KY,42169 -Woodburn,KY,42170 -Smiths Grove,KY,42171 -Adairville,KY,42202 -Allensville,KY,42204 -Auburn,KY,42206 -Bee Spring,KY,42207 -Reedyville,KY,42210 -Golden Pond,KY,42211 -Center,KY,42214 -Cerulean,KY,42215 -Crofton,KY,42217 -Elkton,KY,42220 -Fort Campbell,KY,42223 -Gracey,KY,42232 -Tiny Town,KY,42234 -Herndon,KY,42236 -Hopkinsville,KY,42240 -Huff,KY,42250 -Jetson,KY,42252 -La Fayette,KY,42254 -Lewisburg,KY,42256 -Lindseyville,KY,42257 -Mammoth Cave Nat,KY,42259 -Logansport,KY,42261 -Oak Grove,KY,42262 -Olmstead,KY,42265 -Pembroke,KY,42266 -Quality,KY,42268 -Rochester,KY,42273 -Browning,KY,42274 -Roundhill,KY,42275 -Daysville,KY,42276 -Sharon Grove,KY,42280 -Sunfish,KY,42284 -Kyrock,KY,42285 -Trenton,KY,42286 -Welchs Creek,KY,42287 -Owensboro,KY,42301 -Owensboro,KY,42303 -Beaver Dam,KY,42320 -Beech Creek,KY,42321 -Beechmont,KY,42323 -Belton,KY,42324 -Bremen,KY,42325 -Browder,KY,42326 -Calhoun,KY,42327 -Centertown,KY,42328 -Central City,KY,42330 -Cromwell,KY,42333 -Drakesboro,KY,42337 -Dundee,KY,42338 -Dunmor,KY,42339 -42340,KY,42340 -Fordsville,KY,42343 -Graham,KY,42344 -Greenville,KY,42345 -Hartford,KY,42347 -Hawesville,KY,42348 -Horse Branch,KY,42349 -Island,KY,42350 -Lewisport,KY,42351 -Livermore,KY,42352 -Maceo,KY,42355 -Narrows,KY,42358 -Olaton,KY,42361 -Penrod,KY,42365 -Philpot,KY,42366 -Reynolds Station,KY,42368 -Rockport,KY,42369 -Rumsey,KY,42371 -Sacramento,KY,42372 -Utica,KY,42376 -Whitesville,KY,42378 -Clay,KY,42404 -Corydon,KY,42406 -Dawson Springs,KY,42408 -Dixon,KY,42409 -Earlington,KY,42410 -Fredonia,KY,42411 -Hanson,KY,42413 -Henderson,KY,42420 -Madisonville,KY,42431 -Manitou,KY,42436 -Henshaw,KY,42437 -Nebo,KY,42441 -Nortonville,KY,42442 -Princeton,KY,42445 -Providence,KY,42450 -Reed,KY,42451 -Robards,KY,42452 -Saint Charles,KY,42453 -Sebree,KY,42455 -Slaughters,KY,42456 -Spottsville,KY,42458 -Sturgis,KY,42459 -Uniontown,KY,42461 -Waverly,KY,42462 -White Plains,KY,42464 -Alcalde,KY,42501 -Bethelridge,KY,42516 -Bronston,KY,42518 -Sloans Valley,KY,42519 -Dunnville,KY,42528 -Jabez,KY,42532 -Liberty,KY,42539 -Middleburg,KY,42541 -Pointer,KY,42544 -Science Hill,KY,42553 -Shopville,KY,42554 -Sloans Valley,KY,42555 -Tateville,KY,42558 -Yosemite,KY,42566 -Pulaski,KY,42567 -Aaron,KY,42601 -Albany,KY,42602 -Alpha,KY,42603 -Coopersville,KY,42611 -Delta,KY,42613 -Jamestown,KY,42629 -Pueblo,KY,42633 -Parkers Lake,KY,42634 -Hollyhill,KY,42635 -Revelo,KY,42638 -Rockybranch,KY,42640 -Webbs Cross Road,KY,42642 -Sawyer,KY,42643 -Stearns,KY,42647 -Strunk,KY,42649 -Wiborg,KY,42653 -Windy,KY,42655 -E Town,KY,42701 -Bakerton,KY,42711 -Big Clifty,KY,42712 -Bonnieville,KY,42713 -Bow,KY,42714 -Breeding,KY,42715 -Buffalo,KY,42716 -Burkesville,KY,42717 -Campbellsville,KY,42718 -Caneyville,KY,42721 -Canmer,KY,42722 -Casey Creek,KY,42723 -Stephensburg,KY,42724 -Wax,KY,42726 -Montpelier,KY,42728 -Cub Run,KY,42729 -Cundiff,KY,42730 -Dubre,KY,42731 -E View,KY,42732 -Elk Horn,KY,42733 -Fairplay,KY,42735 -Finley,KY,42736 -Glendale,KY,42740 -Glens Fork,KY,42741 -Gradyville,KY,42742 -Greensburg,KY,42743 -Hardyville,KY,42746 -Hodgenville,KY,42748 -Horse Cave,KY,42749 -Kettle,KY,42752 -Knifley,KY,42753 -Sadler,KY,42754 -Magnolia,KY,42757 -Milltown,KY,42761 -Millwood,KY,42762 -Mount Sherman,KY,42764 -Munfordville,KY,42765 -Peytonsburg,KY,42768 -Sonora,KY,42776 -Summersville,KY,42782 -Upton,KY,42784 -White Mills,KY,42788 -Metairie,LA,70001 -Metairie,LA,70002 -Metairie,LA,70003 -Metairie,LA,70005 -Metairie,LA,70006 -Des Allemands,LA,70030 -Ama,LA,70031 -Arabi,LA,70032 -Barataria,LA,70036 -Belle Chasse,LA,70037 -Boutte,LA,70039 -Braithwaite,LA,70040 -Buras,LA,70041 -Chalmette,LA,70043 -New Sarpy,LA,70047 -Edgard,LA,70049 -Garyville,LA,70051 -Gramercy,LA,70052 -Gretna,LA,70053 -Terrytown,LA,70056 -Hahnville,LA,70057 -Harvey,LA,70058 -Kenner,LA,70062 -Kenner,LA,70065 -Lafitte,LA,70067 -La Place,LA,70068 -Luling,LA,70070 -Lutcher,LA,70071 -Marrero,LA,70072 -Meraux,LA,70075 -Norco,LA,70079 -Paradis,LA,70080 -Port Sulphur,LA,70083 -Reserve,LA,70084 -Saint Bernard,LA,70085 -Saint James,LA,70086 -Saint Rose,LA,70087 -Vacherie,LA,70090 -Venice,LA,70091 -Violet,LA,70092 -Bridge City,LA,70094 -New Orleans,LA,70112 -New Orleans,LA,70113 -New Orleans,LA,70114 -New Orleans,LA,70115 -New Orleans,LA,70116 -New Orleans,LA,70117 -New Orleans,LA,70118 -New Orleans,LA,70119 -Jefferson,LA,70121 -New Orleans,LA,70122 -Harahan,LA,70123 -New Orleans,LA,70124 -New Orleans,LA,70125 -New Orleans,LA,70126 -New Orleans,LA,70127 -New Orleans,LA,70128 -New Orleans,LA,70129 -New Orleans,LA,70130 -New Orleans,LA,70131 -Thibodaux,LA,70301 -Pierre Part,LA,70339 -Amelia,LA,70340 -Belle Rose,LA,70341 -Berwick,LA,70342 -Bourg,LA,70343 -Chauvin,LA,70344 -Cut Off,LA,70345 -Donaldsonville,LA,70346 -Dulac,LA,70353 -Galliano,LA,70354 -Gheens,LA,70355 -Gibson,LA,70356 -Golden Meadow,LA,70357 -Grand Isle,LA,70358 -Gray,LA,70359 -Houma,LA,70360 -Houma,LA,70363 -Houma,LA,70364 -Labadieville,LA,70372 -Lockport,LA,70374 -Mathews,LA,70375 -Montegut,LA,70377 -Morgan City,LA,70380 -Napoleonville,LA,70390 -Patterson,LA,70392 -Raceland,LA,70394 -Schriever,LA,70395 -Theriot,LA,70397 -Hammond,LA,70401 -Hammond,LA,70403 -Abita Springs,LA,70420 -Amite,LA,70422 -Angie,LA,70426 -Bogalusa,LA,70427 -Bush,LA,70431 -Covington,LA,70433 -Fluker,LA,70436 -Folsom,LA,70437 -Franklinton,LA,70438 -Greensburg,LA,70441 -Independence,LA,70443 -Kentwood,LA,70444 -Lacombe,LA,70445 -Loranger,LA,70446 -Madisonville,LA,70447 -Mandeville,LA,70448 -Maurepas,LA,70449 -Mount Hermon,LA,70450 -Pearl River,LA,70452 -Pine Grove,LA,70453 -Ponchatoula,LA,70454 -Robert,LA,70455 -Roseland,LA,70456 -Slidell,LA,70458 -Slidell,LA,70460 -Slidell,LA,70461 -Springfield,LA,70462 -Tickfaw,LA,70466 -Varnado,LA,70467 -Lafayette,LA,70501 -Lafayette,LA,70503 -Lafayette,LA,70506 -Lafayette,LA,70507 -Lafayette,LA,70508 -Forked Island,LA,70510 -Arnaudville,LA,70512 -Baldwin,LA,70514 -Basile,LA,70515 -Branch,LA,70516 -Henderson,LA,70517 -Broussard,LA,70518 -Carencro,LA,70520 -Church Point,LA,70525 -Crowley,LA,70526 -Delcambre,LA,70528 -Duson,LA,70529 -Egan,LA,70531 -Elton,LA,70532 -Erath,LA,70533 -Eunice,LA,70535 -Evangeline,LA,70537 -Franklin,LA,70538 -Gueydan,LA,70542 -Iota,LA,70543 -Jeanerette,LA,70544 -Jennings,LA,70546 -Kaplan,LA,70548 -Lake Arthur,LA,70549 -Loreauville,LA,70552 -Mamou,LA,70554 -Maurice,LA,70555 -Midland,LA,70559 -New Iberia,LA,70560 -Opelousas,LA,70570 -Port Barre,LA,70577 -Rayne,LA,70578 -Roanoke,LA,70581 -Saint Martinvill,LA,70582 -Scott,LA,70583 -Cankton,LA,70584 -Ville Platte,LA,70586 -Washington,LA,70589 -Welsh,LA,70591 -Youngsville,LA,70592 -Lake Charles,LA,70601 -Lake Charles,LA,70605 -Lake Charles,LA,70611 -Bell City,LA,70630 -Cameron,LA,70631 -Creole,LA,70632 -Dequincy,LA,70633 -Deridder,LA,70634 -Dry Creek,LA,70637 -Evans,LA,70639 -Grand Chenier,LA,70643 -Hackberry,LA,70645 -Iowa,LA,70647 -Kinder,LA,70648 -Lacassine,LA,70650 -Longville,LA,70652 -Fields,LA,70653 -Mittie,LA,70654 -Oberlin,LA,70655 -Pitkin,LA,70656 -Ragley,LA,70657 -Reeves,LA,70658 -Singer,LA,70660 -Starks,LA,70661 -Sugartown,LA,70662 -Sulphur,LA,70663 -Vinton,LA,70668 -Westlake,LA,70669 -Addis,LA,70710 -Albany,LA,70711 -Angola,LA,70712 -Baker,LA,70714 -Batchelor,LA,70715 -Blanks,LA,70717 -Brusly,LA,70719 -Bueche,LA,70720 -Point Clair,LA,70721 -Clinton,LA,70722 -Convent,LA,70723 -Darrow,LA,70725 -Port Vincent,LA,70726 -Erwinville,LA,70729 -Ethel,LA,70730 -Fordoche,LA,70732 -French Settlemen,LA,70733 -Geismar,LA,70734 -Glynn,LA,70736 -Gonzales,LA,70737 -Greenwell Spring,LA,70739 -Grosse Tete,LA,70740 -Holden,LA,70744 -The Bluffs,LA,70748 -Jarreau,LA,70749 -Krotz Springs,LA,70750 -Lakeland,LA,70752 -Lettsworth,LA,70753 -Livingston,LA,70754 -Livonia,LA,70755 -Lottie,LA,70756 -Ramah,LA,70757 -Morganza,LA,70759 -New Roads,LA,70760 -Norwood,LA,70761 -Oscar,LA,70762 -Paulina,LA,70763 -Plaquemine,LA,70764 -Port Allen,LA,70767 -Galvez,LA,70769 -Pride,LA,70770 -Rosedale,LA,70772 -Rougon,LA,70773 -Saint Amant,LA,70774 -Bains,LA,70775 -Iberville,LA,70776 -Slaughter,LA,70777 -Sorrento,LA,70778 -Sunshine,LA,70780 -Torbert,LA,70781 -Ventress,LA,70783 -Walker,LA,70785 -White Castle,LA,70788 -Wilson,LA,70789 -Zachary,LA,70791 -Uncle Sam,LA,70792 -Baton Rouge,LA,70801 -Baton Rouge,LA,70802 -Baton Rouge,LA,70805 -Baton Rouge,LA,70806 -Scotlandville,LA,70807 -Baton Rouge,LA,70808 -Baton Rouge,LA,70809 -Baton Rouge,LA,70810 -Greenwood,LA,70811 -Baton Rouge,LA,70812 -Baton Rouge,LA,70814 -Baton Rouge,LA,70815 -Baton Rouge,LA,70816 -Baton Rouge,LA,70817 -Baton Rouge,LA,70818 -Baton Rouge,LA,70819 -Baton Rouge,LA,70820 -Arcadia,LA,71001 -Athens,LA,71003 -Belcher,LA,71004 -Benton,LA,71006 -Bethany,LA,71007 -Bienville,LA,71008 -Castor,LA,71016 -Cotton Valley,LA,71018 -Hanna,LA,71019 -Doyline,LA,71023 -Dubberly,LA,71024 -Frierson,LA,71027 -Gibsland,LA,71028 -Gilliam,LA,71029 -Gloster,LA,71030 -Goldonna,LA,71031 -Grand Cane,LA,71032 -Greenwood,LA,71033 -Hall Summit,LA,71034 -Haughton,LA,71037 -Haynesville,LA,71038 -Heflin,LA,71039 -Homer,LA,71040 -Hosston,LA,71043 -Ida,LA,71044 -Jamestown,LA,71045 -Keatchie,LA,71046 -Keithville,LA,71047 -Lisbon,LA,71048 -Logansport,LA,71049 -Elm Grove,LA,71051 -Mansfield,LA,71052 -Minden,LA,71055 -Mira,LA,71059 -Mooringsport,LA,71060 -Oil City,LA,71061 -Pelican,LA,71063 -Plain Dealing,LA,71064 -Pleasant Hill,LA,71065 -Princeton,LA,71067 -Ringgold,LA,71068 -Rodessa,LA,71069 -Chestnut,LA,71070 -Sarepta,LA,71071 -Shongaloo,LA,71072 -Sibley,LA,71073 -Springhill,LA,71075 -Stonewall,LA,71078 -Summerfield,LA,71079 -Trees,LA,71082 -Shreveport,LA,71101 -Shreveport,LA,71103 -Shreveport,LA,71104 -Shreveport,LA,71105 -Forbing,LA,71106 -Dixie,LA,71107 -Shreveport,LA,71108 -Shreveport,LA,71109 -Barksdale A F B,LA,71110 -Bossier City,LA,71111 -Bossier City,LA,71112 -Caspiana,LA,71115 -Shreveport,LA,71118 -Shreveport,LA,71119 -Shreveport,LA,71129 -Monroe,LA,71201 -Richwood,LA,71202 -Monroe,LA,71203 -Baskin,LA,71219 -Bastrop,LA,71220 -Bernice,LA,71222 -Bonita,LA,71223 -Calhoun,LA,71225 -Chatham,LA,71226 -Choudrant,LA,71227 -Collinston,LA,71229 -Warden,LA,71232 -Downsville,LA,71234 -Dubach,LA,71235 -Epps,LA,71237 -Eros,LA,71238 -Extension,LA,71239 -Farmerville,LA,71241 -Fort Necessity,LA,71243 -Grambling,LA,71245 -Jones,LA,71250 -Jonesboro,LA,71251 -Lake Providence,LA,71254 -Lillie,LA,71256 -Mangham,LA,71259 -Linville,LA,71260 -Mer Rouge,LA,71261 -Terry,LA,71263 -Oak Ridge,LA,71264 -Pioneer,LA,71266 -Quitman,LA,71268 -Alto,LA,71269 -Ruston,LA,71270 -Simsboro,LA,71275 -Sondheimer,LA,71276 -Spearsville,LA,71277 -Spencer,LA,71280 -Mound,LA,71282 -Transylvania,LA,71286 -West Monroe,LA,71291 -West Monroe,LA,71292 -Winnsboro,LA,71295 -Alexandria,LA,71301 -Alexandria,LA,71302 -Alexandria,LA,71303 -Acme,LA,71316 -Big Bend,LA,71318 -Eola,LA,71322 -Center Point,LA,71323 -Cheneyville,LA,71325 -Clayton,LA,71326 -Cottonport,LA,71327 -Buckeye,LA,71328 -Vick,LA,71331 -Goudeau,LA,71333 -Frogmore,LA,71334 -Gilbert,LA,71336 -Hamburg,LA,71339 -Harrisonburg,LA,71340 -Hessmer,LA,71341 -Jena,LA,71342 -Larto,LA,71343 -71344,LA,71344 -Lecompte,LA,71346 -Mansura,LA,71350 -Marksville,LA,71351 -Melville,LA,71353 -Monterey,LA,71354 -Moreauville,LA,71355 -Le Moyen,LA,71356 -Newellton,LA,71357 -Palmetto,LA,71358 -Kolin,LA,71360 -Plaucheville,LA,71362 -Saint Joseph,LA,71366 -Saint Landry,LA,71367 -Sicily Island,LA,71368 -Simmesport,LA,71369 -Trout,LA,71371 -71372,LA,71372 -Vidalia,LA,71373 -Waterproof,LA,71375 -Wisner,LA,71378 -Aimwell,LA,71401 -Anacoco,LA,71403 -Atlanta,LA,71404 -Belmont,LA,71406 -Bentley,LA,71407 -Boyce,LA,71409 -Campti,LA,71411 -Chopin,LA,71412 -Derry,LA,71416 -Colfax,LA,71417 -Hebert,LA,71418 -Mitchell,LA,71419 -71421,LA,71421 -Dodson,LA,71422 -Dry Prong,LA,71423 -Elmer,LA,71424 -Enterprise,LA,71425 -Fisher,LA,71426 -Flatwoods,LA,71427 -Florien,LA,71429 -Forest Hill,LA,71430 -Georgetown,LA,71432 -Calcasieu,LA,71433 -Grayson,LA,71435 -71436,LA,71436 -Leander,LA,71438 -Hornbeck,LA,71439 -Kelly,LA,71441 -Lacamp,LA,71444 -71445,LA,71445 -Hicks,LA,71446 -Chopin,LA,71447 -Many,LA,71449 -Marthaville,LA,71450 -Melder,LA,71451 -Montgomery,LA,71454 -Clifton,LA,71455 -Natchez,LA,71456 -Natchitoches,LA,71457 -Fort Polk,LA,71459 -Newllano,LA,71461 -Noble,LA,71462 -Oakdale,LA,71463 -Olla,LA,71465 -Otis,LA,71466 -Pollock,LA,71467 -Provencal,LA,71468 -Robeline,LA,71469 -Sieper,LA,71472 -Sikes,LA,71473 -Tioga,LA,71477 -Tullos,LA,71479 -Winnfield,LA,71483 -Woodworth,LA,71485 -Zwolle,LA,71486 -Berwick,ME,3901 -Cape Neddick,ME,3902 -Eliot,ME,3903 -Kittery,ME,3904 -Kittery Point,ME,3905 -North Berwick,ME,3906 -Ogunquit,ME,3907 -South Berwick,ME,3908 -York,ME,3909 -Acton,ME,4001 -Alfred,ME,4002 -Bailey Island,ME,4003 -Arundel,ME,4005 -Biddeford Pool,ME,4006 -Bowdoinham,ME,4008 -Bridgton,ME,4009 -Brownfield,ME,4010 -Birch Island,ME,4011 -Bustins Island,ME,4013 -Casco,ME,4015 -Center Lovell,ME,4016 -Chebeague Island,ME,4017 -Cliff Island,ME,4019 -Cornish,ME,4020 -Cumberland Cente,ME,4021 -Denmark,ME,4022 -East Baldwin,ME,4024 -West Lebanon,ME,4027 -North Sebago,ME,4029 -East Waterboro,ME,4030 -Freeport,ME,4032 -Fryeburg,ME,4037 -Gorham,ME,4038 -Gray,ME,4039 -Harrison,ME,4040 -Hiram,ME,4041 -Hollis Center,ME,4042 -Kennebunk,ME,4043 -Kennebunkport,ME,4046 -Kezar Falls,ME,4047 -Limerick,ME,4048 -Limington,ME,4049 -Long Island,ME,4050 -Lovell,ME,4051 -Merepoint,ME,4053 -Naples,ME,4055 -North Fryeburg,ME,4058 -North Shapleigh,ME,4060 -North Waterboro,ME,4061 -Windham,ME,4062 -Old Orchard Beac,ME,4064 -Orrs Island,ME,4066 -Porter,ME,4068 -Pownal,ME,4069 -Raymond,ME,4071 -Saco,ME,4072 -Sanford,ME,4073 -Scarborough,ME,4074 -Sebago Lake,ME,4075 -Shapleigh,ME,4076 -South Casco,ME,4077 -South Harpswell,ME,4079 -South Waterford,ME,4081 -Springvale,ME,4083 -Standish,ME,4084 -Steep Falls,ME,4085 -Pejepscot,ME,4086 -Waterboro,ME,4087 -Wells,ME,4090 -West Baldwin,ME,4091 -Westbrook,ME,4092 -West Buxton,ME,4093 -Maplewood,ME,4095 -Yarmouth,ME,4096 -Portland,ME,4101 -Portland,ME,4102 -Portland,ME,4103 -Falmouth,ME,4105 -South Portland,ME,4106 -Cape Elizabeth,ME,4107 -Peaks Island,ME,4108 -Cushing Island,ME,4109 -Cumberland Fores,ME,4110 -Auburn,ME,4210 -Andover,ME,4216 -Bethel,ME,4217 -Bryant Pond,ME,4219 -Buckfield,ME,4220 -Canton,ME,4221 -Danville,ME,4223 -Dixfield,ME,4224 -Dryden,ME,4225 -East Andover,ME,4226 -East Livermore,ME,4228 -East Stoneham,ME,4231 -Frye,ME,4235 -Greene,ME,4236 -Hanover,ME,4237 -Hebron,ME,4238 -Jay,ME,4239 -Lewiston,ME,4240 -Lisbon,ME,4250 -Lisbon Falls,ME,4252 -Livermore Falls,ME,4254 -Mechanic Falls,ME,4256 -Mexico,ME,4257 -Monmouth,ME,4259 -New Gloucester,ME,4260 -Newry,ME,4261 -Leeds,ME,4263 -North Monmouth,ME,4265 -North Turner,ME,4266 -North Waterford,ME,4267 -Norway,ME,4268 -Oxford,ME,4270 -Poland,ME,4273 -Poland Spring,ME,4274 -Roxbury,ME,4275 -Rumford,ME,4276 -Rumford Center,ME,4278 -Rumford Point,ME,4279 -Sabattus,ME,4280 -South Paris,ME,4281 -Turner,ME,4282 -Wayne,ME,4284 -Weld,ME,4285 -West Paris,ME,4289 -Peru,ME,4290 -West Poland,ME,4291 -West Sumner,ME,4292 -Wilton,ME,4294 -Augusta,ME,4330 -Coopers Mills,ME,4341 -Dresden,ME,4342 -Farmingdale,ME,4344 -Gardiner,ME,4345 -Randolph,ME,4346 -Hallowell,ME,4347 -Jefferson,ME,4348 -Kents Hill,ME,4349 -Litchfield,ME,4350 -Manchester,ME,4351 -Mount Vernon,ME,4352 -North Whitefield,ME,4353 -Palermo,ME,4354 -Readfield,ME,4355 -Richmond,ME,4357 -South China,ME,4358 -Weeks Mills,ME,4361 -Windsor,ME,4363 -Winthrop,ME,4364 -Bangor,ME,4401 -Abbot Village,ME,4406 -Aurora,ME,4408 -Bradford,ME,4410 -Bradley,ME,4411 -Brewer,ME,4412 -Brookton,ME,4413 -Brownville,ME,4414 -Bucksport,ME,4416 -Burlington,ME,4417 -Cardville,ME,4418 -Carmel,ME,4419 -Charleston,ME,4422 -Costigan,ME,4423 -Danforth,ME,4424 -Dover Foxcroft,ME,4426 -East Corinth,ME,4427 -East Eddington,ME,4428 -East Holden,ME,4429 -East Millinocket,ME,4430 -East Orland,ME,4431 -Enfield,ME,4433 -Etna,ME,4434 -Exeter,ME,4435 -Frankfort,ME,4438 -Greenville,ME,4441 -Greenville Junct,ME,4442 -Guilford,ME,4443 -Hampden,ME,4444 -Haynesville,ME,4446 -Seboeis,ME,4448 -Hudson,ME,4449 -Kenduskeag,ME,4450 -Kingman,ME,4451 -Lagrange,ME,4453 -Lee,ME,4455 -Levant,ME,4456 -Lincoln,ME,4457 -Lincoln Center,ME,4458 -Mattawamkeag,ME,4459 -Medway,ME,4460 -Milford,ME,4461 -Millinocket,ME,4462 -Derby,ME,4463 -Monson,ME,4464 -4465,ME,4465 -Old Town,ME,4468 -North Amity,ME,4471 -Orland,ME,4472 -Orono,ME,4473 -Orrington,ME,4474 -Passadumkeag,ME,4475 -Penobscot,ME,4476 -Rockwood,ME,4478 -Sangerville,ME,4479 -Springfield,ME,4487 -Stetson,ME,4488 -Topsfield,ME,4490 -Vanceboro,ME,4491 -Waite,ME,4492 -Winn,ME,4495 -Winterport,ME,4496 -Wytopitlock,ME,4497 -Bath,ME,4530 -Boothbay,ME,4537 -Capitol Island,ME,4538 -Bristol,ME,4539 -Chamberlain,ME,4541 -Damariscotta,ME,4543 -East Boothbay,ME,4544 -Friendship,ME,4547 -Mac Mahan,ME,4548 -Medomak,ME,4551 -Newcastle,ME,4553 -New Harbor,ME,4554 -Nobleboro,ME,4555 -Edgecomb,ME,4556 -Pemaquid,ME,4558 -Phippsburg,ME,4562 -Cushing,ME,4563 -Round Pond,ME,4564 -Sebasco Estates,ME,4565 -Small Point,ME,4567 -South Bristol,ME,4568 -Squirrel Island,ME,4570 -Trevett,ME,4571 -Waldoboro,ME,4572 -Walpole,ME,4573 -Washington,ME,4574 -West Southport,ME,4576 -Wiscasset,ME,4578 -Woolwich,ME,4579 -Ellsworth,ME,4605 -Addison,ME,4606 -Gouldsboro,ME,4607 -Bar Harbor,ME,4609 -Beals,ME,4611 -Bernard,ME,4612 -Birch Harbor,ME,4613 -Blue Hill,ME,4614 -Blue Hill Falls,ME,4615 -Brooklin,ME,4616 -Brooksville,ME,4617 -Bucks Harbor,ME,4618 -Calais,ME,4619 -Cherryfield,ME,4622 -Columbia Falls,ME,4623 -Corea,ME,4624 -Cutler,ME,4626 -Deer Isle,ME,4627 -Dennysville,ME,4628 -East Machias,ME,4630 -Eastport,ME,4631 -Franklin,ME,4634 -Hancock,ME,4640 -Harborside,ME,4642 -Harrington,ME,4643 -Isle Au Haut,ME,4645 -Jonesboro,ME,4648 -Jonesport,ME,4649 -Little Deer Isle,ME,4650 -Lubec,ME,4652 -Bass Harbor,ME,4653 -Machias,ME,4654 -Machiasport,ME,4655 -Manset,ME,4656 -Meddybemps,ME,4657 -Milbridge,ME,4658 -Mount Desert,ME,4660 -North Brooklin,ME,4661 -Pembroke,ME,4666 -Perry,ME,4667 -Princeton,ME,4668 -Prospect Harbor,ME,4669 -Robbinston,ME,4671 -Sargentville,ME,4673 -Sedgwick,ME,4676 -Sorrento,ME,4677 -South Gouldsboro,ME,4678 -Southwest Harbor,ME,4679 -Steuben,ME,4680 -Stonington,ME,4681 -Sunset,ME,4683 -Surry,ME,4684 -4689,ME,4689 -West Tremont,ME,4690 -Winter Harbor,ME,4693 -Woodland,ME,4694 -Houlton,ME,4730 -Ashland,ME,4732 -Benedicta,ME,4733 -Bridgewater,ME,4735 -Caribou,ME,4736 -Clayton Lake,ME,4737 -Easton,ME,4740 -Fort Fairfield,ME,4742 -Fort Kent,ME,4743 -Grand Isle,ME,4746 -Island Falls,ME,4747 -Lille,ME,4749 -Limestone,ME,4750 -Loring Afb,ME,4751 -Madawaska,ME,4756 -Mapleton,ME,4757 -Mars Hill,ME,4758 -Monticello,ME,4760 -New Sweden,ME,4762 -Oakfield,ME,4763 -Oxbow,ME,4764 -Patten,ME,4765 -Portage,ME,4768 -Presque Isle,ME,4769 -Saint Agatha,ME,4772 -Saint David,ME,4773 -Saint Francis,ME,4774 -Sherman Mills,ME,4776 -Sherman Station,ME,4777 -Sinclair,ME,4779 -Smyrna Mills,ME,4780 -Soldier Pond,ME,4781 -Stockholm,ME,4783 -Van Buren,ME,4785 -Washburn,ME,4786 -Westfield,ME,4787 -Rockland,ME,4841 -Camden,ME,4843 -Hope,ME,4847 -Islesboro,ME,4848 -Lincolnville,ME,4849 -Monhegan,ME,4852 -North Haven,ME,4853 -Owls Head,ME,4854 -Rockport,ME,4856 -Saint George,ME,4857 -South Thomaston,ME,4858 -Spruce Head,ME,4859 -Tenants Harbor,ME,4860 -Thomaston,ME,4861 -Union,ME,4862 -Vinalhaven,ME,4863 -Warren,ME,4864 -West Rockport,ME,4865 -Winslow,ME,4901 -Albion,ME,4910 -Anson,ME,4911 -Athens,ME,4912 -Belfast,ME,4915 -Belgrade,ME,4917 -Belgrade Lakes,ME,4918 -Bingham,ME,4920 -Brooks,ME,4921 -Burnham,ME,4922 -Cambridge,ME,4923 -Canaan,ME,4924 -Caratunk,ME,4925 -Clinton,ME,4927 -Corinna,ME,4928 -Detroit,ME,4929 -Dexter,ME,4930 -Dixmont,ME,4932 -Eustis,ME,4936 -Benton Station,ME,4937 -Farmington,ME,4938 -Freedom,ME,4941 -Wellington,ME,4942 -Hartland,ME,4943 -Jackman,ME,4945 -Kingfield,ME,4947 -Liberty,ME,4949 -Madison,ME,4950 -Monroe,ME,4951 -Morrill,ME,4952 -Newport,ME,4953 -New Portland,ME,4954 -New Sharon,ME,4955 -New Vineyard,ME,4956 -Norridgewock,ME,4957 -North Anson,ME,4958 -North New Portla,ME,4961 -North Vassalboro,ME,4962 -Oakland,ME,4963 -Palmyra,ME,4965 -Phillips,ME,4966 -Pittsfield,ME,4967 -Plymouth,ME,4969 -Rangeley,ME,4970 -Saint Albans,ME,4971 -Searsmont,ME,4973 -Searsport,ME,4974 -Skowhegan,ME,4976 -Smithfield,ME,4978 -Solon,ME,4979 -Stockton Springs,ME,4981 -Stratton,ME,4982 -Strong,ME,4983 -Temple,ME,4984 -West Forks,ME,4985 -Thorndike,ME,4986 -Troy,ME,4987 -Unity,ME,4988 -Vassalboro,ME,4989 -Andrews Afb,MD,20331 -Waldorf,MD,20601 -Saint Charles,MD,20602 -Saint Charles,MD,20603 -Abell,MD,20606 -Accokeek,MD,20607 -Aquasco,MD,20608 -Avenue,MD,20609 -Bel Alton,MD,20611 -Brandywine,MD,20613 -Broomes Island,MD,20615 -Bryans Road,MD,20616 -Bryantown,MD,20617 -Bushwood,MD,20618 -California,MD,20619 -Callaway,MD,20620 -Maddox,MD,20621 -Charlotte Hall,MD,20622 -Cheltenham,MD,20623 -Clements,MD,20624 -Coltons Point,MD,20626 -Dameron,MD,20628 -Drayden,MD,20630 -Faulkner,MD,20632 -Great Mills,MD,20634 -Hollywood,MD,20636 -Hughesville,MD,20637 -Huntingtown,MD,20639 -Pisgah,MD,20640 -Issue,MD,20645 -La Plata,MD,20646 -Leonardtown,MD,20650 -Lexington Park,MD,20653 -Loveville,MD,20656 -Lusby,MD,20657 -Rison,MD,20658 -Mechanicsville,MD,20659 -Nanjemoy,MD,20662 -Newburg,MD,20664 -Park Hall,MD,20667 -Patuxent River,MD,20670 -Piney Point,MD,20674 -Pomfret,MD,20675 -Port Republic,MD,20676 -Port Tobacco,MD,20677 -Prince Frederick,MD,20678 -Ridge,MD,20680 -Saint Inigoes,MD,20684 -Saint Leonard,MD,20685 -Scotland,MD,20687 -Solomons,MD,20688 -Sunderland,MD,20689 -Tall Timbers,MD,20690 -Valley Lee,MD,20692 -Welcome,MD,20693 -White Plains,MD,20695 -Annapolis Juncti,MD,20701 -Beltsville,MD,20705 -Lanham,MD,20706 -Laurel,MD,20707 -Montpelier,MD,20708 -Bladensburg,MD,20710 -Lothian,MD,20711 -Mount Rainier,MD,20712 -North Beach,MD,20714 -Bowie,MD,20715 -Mitchellville,MD,20716 -Bowie,MD,20720 -Mitchellville,MD,20721 -Brentwood,MD,20722 -Laurel,MD,20723 -Laurel,MD,20724 -Chesapeake Beach,MD,20732 -Churchton,MD,20733 -Clinton,MD,20735 -Owings,MD,20736 -Riverdale,MD,20737 -College Park,MD,20740 -Capital Heights,MD,20743 -Fort Washington,MD,20744 -Oxon Hill,MD,20745 -Suitland,MD,20746 -District Heights,MD,20747 -Temple Hills,MD,20748 -Deale,MD,20751 -Dunkirk,MD,20754 -Fort George G Me,MD,20755 -Friendship,MD,20758 -Fulton,MD,20759 -Savage,MD,20763 -Shady Side,MD,20764 -Glenn Dale,MD,20769 -Greenbelt,MD,20770 -Upper Marlboro,MD,20772 -Harwood,MD,20776 -Highland,MD,20777 -West River,MD,20778 -Tracys Landing,MD,20779 -Hyattsville,MD,20781 -West Hyattsville,MD,20782 -Adelphi,MD,20783 -Landover Hills,MD,20784 -Landover,MD,20785 -Jessup,MD,20794 -Glen Echo,MD,20812 -Bethesda,MD,20814 -Chevy Chase,MD,20815 -Bethesda,MD,20816 -West Bethesda,MD,20817 -Cabin John,MD,20818 -Olney,MD,20832 -Brookeville,MD,20833 -Poolesville,MD,20837 -Barnesville,MD,20838 -Beallsville,MD,20839 -Boyds,MD,20841 -Dickerson,MD,20842 -Rockville,MD,20850 -Rockville,MD,20851 -Rockville,MD,20852 -Rockville,MD,20853 -Potomac,MD,20854 -Derwood,MD,20855 -Sandy Spring,MD,20860 -Ashton,MD,20861 -Brinklow,MD,20862 -Burtonsville,MD,20866 -Spencerville,MD,20868 -Clarksburg,MD,20871 -Damascus,MD,20872 -Darnestown,MD,20874 -Germantown,MD,20876 -Gaithersburg,MD,20877 -Darnestown,MD,20878 -Laytonsville,MD,20879 -Laytonsville,MD,20882 -Kensington,MD,20895 -Silver Spring,MD,20901 -Wheaton,MD,20902 -Silver Spring,MD,20903 -Colesville,MD,20904 -Colesville,MD,20905 -Aspen Hill,MD,20906 -Silver Spring,MD,20910 -Takoma Park,MD,20912 -Aberdeen,MD,21001 -Aberdeen Proving,MD,21005 -Abingdon,MD,21009 -Gunpowder,MD,21010 -Arnold,MD,21012 -Baldwin,MD,21013 -Bel Air,MD,21014 -Bel Air,MD,21015 -Belcamp,MD,21017 -Bradshaw,MD,21021 -Churchville,MD,21028 -Clarksville,MD,21029 -Cockeysville Hun,MD,21030 -Cockeysville Hun,MD,21031 -Crownsville,MD,21032 -Darlington,MD,21034 -Davidsonville,MD,21035 -Dayton,MD,21036 -Edgewater Beach,MD,21037 -Edgewood,MD,21040 -Ellicott City,MD,21042 -Daniels,MD,21043 -Columbia,MD,21044 -Columbia,MD,21045 -Columbia,MD,21046 -Fallston,MD,21047 -Patapsco,MD,21048 -Forest Hill,MD,21050 -Fork,MD,21051 -Freeland,MD,21053 -Gambrills,MD,21054 -Gibson Island,MD,21056 -Glen Arm,MD,21057 -Glen Burnie,MD,21061 -Glyndon,MD,21071 -Greenmount,MD,21074 -Hanover,MD,21076 -Havre De Grace,MD,21078 -Hydes,MD,21082 -Jarrettsville,MD,21084 -Joppa,MD,21085 -Kingsville,MD,21087 -Lineboro,MD,21088 -Linthicum Height,MD,21090 -Lutherville,MD,21093 -Manchester,MD,21102 -Marriottsville,MD,21104 -Millers,MD,21107 -Millersville,MD,21108 -Hereford,MD,21111 -Odenton,MD,21113 -Crofton,MD,21114 -Owings Mills,MD,21117 -Bentley Springs,MD,21120 -Riviera Beach,MD,21122 -Perry Hall,MD,21128 -Jacksonville,MD,21131 -Pylesville,MD,21132 -Randallstown,MD,21133 -Reisterstown,MD,21136 -Riva,MD,21140 -Severn,MD,21144 -Severna Park,MD,21146 -Glencoe,MD,21152 -Rocks,MD,21154 -Fowbelsburg,MD,21155 -Upper Falls,MD,21156 -Carrollton,MD,21157 -Uniontown,MD,21158 -Whiteford,MD,21160 -White Hall,MD,21161 -White Marsh,MD,21162 -Granite,MD,21163 -Baltimore,MD,21201 -Baltimore,MD,21202 -Eudowood,MD,21204 -Baltimore,MD,21205 -Baltimore,MD,21206 -Gwynn Oak,MD,21207 -Pikesville,MD,21208 -Baltimore,MD,21209 -Baltimore,MD,21210 -Baltimore,MD,21211 -Baltimore,MD,21212 -Baltimore,MD,21213 -Baltimore,MD,21214 -Baltimore,MD,21215 -Baltimore,MD,21216 -Baltimore,MD,21217 -Baltimore,MD,21218 -Dundalk Sparrows,MD,21219 -Middle River,MD,21220 -Essex,MD,21221 -Dundalk Sparrows,MD,21222 -Baltimore,MD,21223 -Baltimore,MD,21224 -Brooklyn Curtis,MD,21225 -Brooklyn Curtis,MD,21226 -Halethorpe,MD,21227 -Catonsville,MD,21228 -Baltimore,MD,21229 -Baltimore,MD,21230 -Baltimore,MD,21231 -Parkville,MD,21234 -Nottingham,MD,21236 -Rosedale,MD,21237 -Baltimore,MD,21239 -Baltimore,MD,21240 -Cape Saint Clair,MD,21401 -Naval Academy,MD,21402 -Annapolis,MD,21403 -Cresaptown,MD,21502 -Accident,MD,21520 -Barton,MD,21521 -Bittinger,MD,21522 -Bloomington,MD,21523 -Flintstone,MD,21530 -Friendsville,MD,21531 -Frostburg,MD,21532 -Jennings,MD,21536 -Shallmar,MD,21538 -Lonaconing,MD,21539 -Luke,MD,21540 -Sang Run,MD,21541 -Mount Savage,MD,21545 -Deer Park,MD,21550 -Oldtown,MD,21555 -Rawlings,MD,21557 -Swanton,MD,21561 -Mccoole,MD,21562 -Easton,MD,21601 -Barclay,MD,21607 -Betterton,MD,21610 -Bozman,MD,21612 -Cambridge,MD,21613 -Centreville,MD,21617 -Chester,MD,21619 -Chestertown,MD,21620 -Church Creek,MD,21622 -Church Hill,MD,21623 -Cordova,MD,21625 -Crapo,MD,21626 -Crumpton,MD,21628 -Denton,MD,21629 -East New Market,MD,21631 -Federalsburg,MD,21632 -Fishing Creek,MD,21634 -Galena,MD,21635 -Goldsboro,MD,21636 -Golts,MD,21637 -Grasonville,MD,21638 -Greensboro,MD,21639 -Henderson,MD,21640 -Williamsburg,MD,21643 -Ingleside,MD,21644 -Kennedyville,MD,21645 -Mcdaniel,MD,21647 -Marydel,MD,21649 -Massey,MD,21650 -Millington,MD,21651 -Oxford,MD,21654 -Preston,MD,21655 -Queen Anne,MD,21657 -Queenstown,MD,21658 -Rhodesdale,MD,21659 -Ridgely,MD,21660 -Rock Hall,MD,21661 -Royal Oak,MD,21662 -Saint Michaels,MD,21663 -Sherwood,MD,21665 -Stevensville,MD,21666 -Still Pond,MD,21667 -Sudlersville,MD,21668 -Taylors Island,MD,21669 -Tilghman,MD,21671 -Toddville,MD,21672 -Trappe,MD,21673 -Wingate,MD,21675 -Wittman,MD,21676 -Woolford,MD,21677 -Worton,MD,21678 -Wye Mills,MD,21679 -Lewistown,MD,21701 -Fort Detrick,MD,21702 -Doubs,MD,21710 -Big Pool,MD,21711 -Fahrney Keedy Me,MD,21713 -Brunswick,MD,21716 -Burkittsville,MD,21718 -Fort Ritchie,MD,21719 -Big Spring,MD,21722 -Cooksville,MD,21723 -Detour,MD,21725 -Emmitsburg,MD,21727 -Fair Play,MD,21733 -Glenelg,MD,21737 -Glenwood,MD,21738 -Hagerstown,MD,21740 -Hagerstown,MD,21742 -Hancock,MD,21750 -Ijamsville,MD,21754 -Jefferson,MD,21755 -Keedysville,MD,21756 -Keymar,MD,21757 -Knoxville,MD,21758 -Linwood,MD,21764 -Little Orleans,MD,21766 -Maugansville,MD,21767 -Middletown,MD,21769 -Monrovia,MD,21770 -Mount Airy,MD,21771 -Myersville,MD,21773 -New Windsor,MD,21776 -Point Of Rocks,MD,21777 -Rocky Ridge,MD,21778 -Rohrersville,MD,21779 -Sabillasville,MD,21780 -Sharpsburg,MD,21782 -Smithsburg,MD,21783 -Carrolltowne,MD,21784 -Taneytown,MD,21787 -Graceham,MD,21788 -Tuscarora,MD,21790 -Unionville,MD,21791 -Walkersville,MD,21793 -West Friendship,MD,21794 -Williamsport,MD,21795 -Woodbine,MD,21797 -Woodsboro,MD,21798 -Salisbury,MD,21801 -Berlin,MD,21811 -Bishopville,MD,21813 -Bivalve,MD,21814 -Chance,MD,21816 -Crisfield,MD,21817 -Dames Quarter,MD,21820 -Deal Island,MD,21821 -Eden,MD,21822 -Ewell,MD,21824 -Fruitland,MD,21826 -Girdletree,MD,21829 -Hebron,MD,21830 -Linkwood,MD,21835 -Mardela Springs,MD,21837 -Marion Station,MD,21838 -Nanticoke,MD,21840 -Newark,MD,21841 -Ocean City,MD,21842 -Parsonsburg,MD,21849 -Pittsville,MD,21850 -Pocomoke City,MD,21851 -Princess Anne,MD,21853 -Quantico,MD,21856 -21858,MD,21858 -Snow Hill,MD,21863 -Stockton,MD,21864 -Tyaskin,MD,21865 -Tylerton,MD,21866 -Vienna,MD,21869 -Wenona,MD,21870 -Westover,MD,21871 -Whaleysville,MD,21872 -Willards,MD,21874 -Delmar,MD,21875 -North East,MD,21901 -Perryville,MD,21903 -Bainbridge,MD,21904 -Rising Sun,MD,21911 -Warwick,MD,21912 -Cecilton,MD,21913 -Charlestown,MD,21914 -Chesapeake City,MD,21915 -Colora,MD,21917 -Conowingo,MD,21918 -Earleville,MD,21919 -Elkton,MD,21921 -Agawam,MA,1001 -Cushman,MA,1002 -Barre,MA,1005 -Belchertown,MA,1007 -Blandford,MA,1008 -Brimfield,MA,1010 -Chester,MA,1011 -Chesterfield,MA,1012 -Chicopee,MA,1013 -Chicopee,MA,1020 -Westover Afb,MA,1022 -Cummington,MA,1026 -Mount Tom,MA,1027 -East Longmeadow,MA,1028 -Feeding Hills,MA,1030 -Gilbertville,MA,1031 -Goshen,MA,1032 -Granby,MA,1033 -Tolland,MA,1034 -Hadley,MA,1035 -Hampden,MA,1036 -Hatfield,MA,1038 -Haydenville,MA,1039 -Holyoke,MA,1040 -Huntington,MA,1050 -Leeds,MA,1053 -Leverett,MA,1054 -Ludlow,MA,1056 -Monson,MA,1057 -Florence,MA,1060 -Oakham,MA,1068 -Palmer,MA,1069 -Plainfield,MA,1070 -Russell,MA,1071 -Shutesbury,MA,1072 -Southampton,MA,1073 -South Hadley,MA,1075 -Southwick,MA,1077 -Three Rivers,MA,1080 -Wales,MA,1081 -Ware,MA,1082 -Montgomery,MA,1085 -West Springfield,MA,1089 -West Warren,MA,1092 -Wilbraham,MA,1095 -Williamsburg,MA,1096 -Worthington,MA,1098 -Springfield,MA,1103 -Springfield,MA,1104 -Springfield,MA,1105 -Longmeadow,MA,1106 -Springfield,MA,1107 -Springfield,MA,1108 -Springfield,MA,1109 -Springfield,MA,1118 -Springfield,MA,1119 -Springfield,MA,1128 -Springfield,MA,1129 -Indian Orchard,MA,1151 -Pittsfield,MA,1201 -Adams,MA,1220 -Ashley Falls,MA,1222 -Becket,MA,1223 -Cheshire,MA,1225 -Dalton,MA,1226 -Great Barrington,MA,1230 -Peru,MA,1235 -Housatonic,MA,1236 -Hancock,MA,1237 -Lee,MA,1238 -Lenox,MA,1240 -Middlefield,MA,1243 -West Otis,MA,1245 -Clarksburg,MA,1247 -Otis,MA,1253 -Richmond,MA,1254 -Sandisfield,MA,1255 -Savoy,MA,1256 -Sheffield,MA,1257 -South Egremont,MA,1258 -Southfield,MA,1259 -Stockbridge,MA,1262 -West Stockbridge,MA,1266 -Williamstown,MA,1267 -Windsor,MA,1270 -Leyden,MA,1301 -Ashfield,MA,1330 -New Salem,MA,1331 -Leyden,MA,1337 -Buckland,MA,1338 -Hawley,MA,1339 -Colrain,MA,1340 -Conway,MA,1341 -Deerfield,MA,1342 -Erving,MA,1344 -Heath,MA,1346 -Millers Falls,MA,1349 -Monroe,MA,1350 -Montague,MA,1351 -New Salem,MA,1355 -Northfield,MA,1360 -New Salem,MA,1364 -Petersham,MA,1366 -Rowe,MA,1367 -Shelburne Falls,MA,1370 -South Deerfield,MA,1373 -Sunderland,MA,1375 -Turners Falls,MA,1376 -Wendell,MA,1379 -Fitchburg,MA,1420 -Ashburnham,MA,1430 -Ashby,MA,1431 -Ayer,MA,1432 -Ft Devens,MA,1433 -Baldwinville,MA,1436 -Gardner,MA,1440 -Groton,MA,1450 -Harvard,MA,1451 -Hubbardston,MA,1452 -Leominster,MA,1453 -Littleton,MA,1460 -Lunenburg,MA,1462 -Pepperell,MA,1463 -Shirley Center,MA,1464 -Templeton,MA,1468 -Townsend,MA,1469 -Westminster,MA,1473 -W Townsend,MA,1474 -Winchendon,MA,1475 -Auburn,MA,1501 -Berlin,MA,1503 -Blackstone,MA,1504 -Boylston,MA,1505 -Brookfield,MA,1506 -Charlton,MA,1507 -Clinton,MA,1510 -East Brookfield,MA,1515 -East Douglas,MA,1516 -Fiskdale,MA,1518 -Grafton,MA,1519 -Holden,MA,1520 -Holland,MA,1521 -Jefferson,MA,1522 -Lancaster,MA,1523 -Leicester,MA,1524 -Millbury,MA,1527 -Millville,MA,1529 -New Braintree,MA,1531 -Northborough,MA,1532 -Northbridge,MA,1534 -North Brookfield,MA,1535 -North Grafton,MA,1536 -North Oxford,MA,1537 -Oxford,MA,1540 -Princeton,MA,1541 -Rochdale,MA,1542 -Rutland,MA,1543 -Shrewsbury,MA,1545 -Southbridge,MA,1550 -South Grafton,MA,1560 -Spencer,MA,1562 -Sterling,MA,1564 -Sturbridge,MA,1566 -West Upton,MA,1568 -Uxbridge,MA,1569 -Dudley Hill,MA,1570 -Dudley,MA,1571 -Westborough,MA,1581 -West Boylston,MA,1583 -West Brookfield,MA,1585 -Whitinsville,MA,1588 -Wilkinsonville,MA,1590 -Worcester,MA,1602 -Worcester,MA,1603 -Worcester,MA,1604 -Worcester,MA,1605 -Worcester,MA,1606 -Worcester,MA,1607 -Worcester,MA,1608 -Worcester,MA,1609 -Worcester,MA,1610 -Cherry Valley,MA,1611 -Paxton,MA,1612 -Framingham,MA,1701 -Village Of Nagog,MA,1718 -Boxboro,MA,1719 -Acton,MA,1720 -Ashland,MA,1721 -Bedford,MA,1730 -Bolton,MA,1740 -Carlisle,MA,1741 -Concord,MA,1742 -Southborough,MA,1745 -Holliston,MA,1746 -Hopedale,MA,1747 -Hopkinton,MA,1748 -Hudson,MA,1749 -Marlborough,MA,1752 -Maynard,MA,1754 -Mendon,MA,1756 -Milford,MA,1757 -Natick,MA,1760 -Sherborn,MA,1770 -Southborough,MA,1772 -Lincoln,MA,1773 -Stow,MA,1775 -Sudbury,MA,1776 -Wayland,MA,1778 -Woburn,MA,1801 -Burlington,MA,1803 -Andover,MA,1810 -Billerica,MA,1821 -South Chelmsford,MA,1824 -Dracut,MA,1826 -Dunstable,MA,1827 -Haverhill,MA,1830 -Haverhill,MA,1832 -Georgetown,MA,1833 -Groveland,MA,1834 -Bradford,MA,1835 -Lawrence,MA,1840 -Lawrence,MA,1841 -Lawrence,MA,1843 -Methuen,MA,1844 -North Andover,MA,1845 -Lowell,MA,1850 -Lowell,MA,1851 -Lowell,MA,1852 -Lowell,MA,1854 -Merrimac,MA,1860 -North Billerica,MA,1862 -North Chelmsford,MA,1863 -North Reading,MA,1864 -Reading,MA,1867 -Tewksbury,MA,1876 -Tyngsboro,MA,1879 -Wakefield,MA,1880 -Graniteville,MA,1886 -Wilmington,MA,1887 -Winchester,MA,1890 -Lynn,MA,1901 -Lynn,MA,1902 -East Lynn,MA,1904 -West Lynn,MA,1905 -Saugus,MA,1906 -Swampscott,MA,1907 -Nahant,MA,1908 -Amesbury,MA,1913 -Beverly,MA,1915 -Boxford,MA,1921 -Byfield,MA,1922 -Danvers,MA,1923 -Essex,MA,1929 -Gloucester,MA,1930 -Ipswich,MA,1938 -Lynnfield,MA,1940 -Manchester,MA,1944 -Marblehead,MA,1945 -Middleton,MA,1949 -Newburyport,MA,1950 -Newbury,MA,1951 -Salisbury,MA,1952 -Peabody,MA,1960 -Rockport,MA,1966 -Rowley,MA,1969 -Salem,MA,1970 -South Hamilton,MA,1982 -Topsfield,MA,1983 -Wenham,MA,1984 -West Newbury,MA,1985 -Bellingham,MA,2019 -Canton,MA,2021 -Cohasset,MA,2025 -Dedham,MA,2026 -Dover,MA,2030 -East Walpole,MA,2032 -Foxboro,MA,2035 -Franklin,MA,2038 -Hingham,MA,2043 -Hull,MA,2045 -Mansfield,MA,2048 -Marshfield,MA,2050 -Medfield,MA,2052 -Medway,MA,2053 -Millis,MA,2054 -Norfolk,MA,2056 -Norwell,MA,2061 -Norwood,MA,2062 -Scituate,MA,2066 -Sharon,MA,2067 -South Walpole,MA,2071 -Stoughton,MA,2072 -Walpole,MA,2081 -Westwood,MA,2090 -Wrentham,MA,2093 -Boston,MA,2108 -Boston,MA,2109 -Boston,MA,2110 -Boston,MA,2111 -Boston,MA,2113 -Boston,MA,2114 -Boston,MA,2115 -Boston,MA,2116 -Roxbury,MA,2118 -Roxbury,MA,2119 -Roxbury,MA,2120 -Dorchester,MA,2121 -Dorchester,MA,2122 -Dorchester,MA,2124 -Dorchester,MA,2125 -Mattapan,MA,2126 -South Boston,MA,2127 -East Boston,MA,2128 -Charlestown,MA,2129 -Jamaica Plain,MA,2130 -Roslindale,MA,2131 -West Roxbury,MA,2132 -Allston,MA,2134 -Brighton,MA,2135 -Hyde Park,MA,2136 -Cambridge,MA,2138 -Cambridge,MA,2139 -North Cambridge,MA,2140 -East Cambridge,MA,2141 -Cambridge,MA,2142 -Somerville,MA,2143 -Somerville,MA,2144 -Somerville,MA,2145 -Brookline,MA,2146 -Malden,MA,2148 -Everett,MA,2149 -Chelsea,MA,2150 -Revere,MA,2151 -Winthrop,MA,2152 -North Waltham,MA,2154 -Medford,MA,2155 -Newtonville,MA,2158 -Newton Center,MA,2159 -Newtonville,MA,2160 -Newton Highlands,MA,2161 -Newtonville,MA,2162 -Cambridge,MA,2163 -Newton Upper Fal,MA,2164 -Newtonville,MA,2165 -Auburndale,MA,2166 -Boston College,MA,2167 -Waban,MA,2168 -Quincy,MA,2169 -Quincy,MA,2170 -Quincy,MA,2171 -East Watertown,MA,2172 -Lexington,MA,2173 -Arlington,MA,2174 -Melrose,MA,2176 -Belmont,MA,2178 -Stoneham,MA,2180 -Wellesley,MA,2181 -Braintree,MA,2184 -Milton,MA,2186 -Weymouth,MA,2188 -Weymouth,MA,2189 -Weymouth,MA,2190 -Weymouth,MA,2191 -Needham,MA,2192 -Weston,MA,2193 -Needham,MA,2194 -Boston,MA,2199 -Boston,MA,2210 -Boston,MA,2215 -Avon,MA,2322 -Bridgewater,MA,2324 -Carver,MA,2330 -Duxbury,MA,2332 -East Bridgewater,MA,2333 -Halifax,MA,2338 -Hanover,MA,2339 -Hanson,MA,2341 -Holbrook,MA,2343 -Middleboro,MA,2346 -Lakeville,MA,2347 -Abington,MA,2351 -North Easton,MA,2356 -Pembroke,MA,2359 -Plymouth,MA,2360 -Kingston,MA,2364 -Plympton,MA,2367 -Randolph,MA,2368 -Rockland,MA,2370 -South Easton,MA,2375 -West Bridgewater,MA,2379 -Whitman,MA,2382 -Brockton,MA,2401 -Brockton,MA,2402 -Onset,MA,2532 -Chilmark,MA,2535 -Teaticket,MA,2536 -East Sandwich,MA,2537 -East Wareham,MA,2538 -Edgartown,MA,2539 -Falmouth,MA,2540 -Otis A F B,MA,2542 -Woods Hole,MA,2543 -Nantucket,MA,2554 -North Falmouth,MA,2556 -Pocasset,MA,2559 -Sandwich,MA,2563 -Vineyard Haven,MA,2568 -Wareham,MA,2571 -West Tisbury,MA,2575 -West Wareham,MA,2576 -West Yarmouth,MA,2601 -Barnstable,MA,2630 -Brewster,MA,2631 -Centerville,MA,2632 -South Chatham,MA,2633 -Cotuit,MA,2635 -Dennis,MA,2638 -Dennis Port,MA,2639 -Eastham,MA,2642 -Forestdale,MA,2644 -Harwich,MA,2645 -Harwich Port,MA,2646 -Marstons Mills,MA,2648 -Mashpee,MA,2649 -North Chatham,MA,2650 -North Truro,MA,2652 -Orleans,MA,2653 -Osterville,MA,2655 -Provincetown,MA,2657 -South Chatham,MA,2659 -South Dennis,MA,2660 -Bass River,MA,2664 -Truro,MA,2666 -Wellfleet,MA,2667 -West Barnstable,MA,2668 -West Dennis,MA,2670 -West Harwich,MA,2671 -West Yarmouth,MA,2673 -Yarmouth Port,MA,2675 -Assonet,MA,2702 -Attleboro,MA,2703 -Cuttyhunk,MA,2713 -Dighton,MA,2715 -East Freetown,MA,2717 -East Taunton,MA,2718 -Fairhaven,MA,2719 -Fall River,MA,2720 -Fall River,MA,2721 -Fall River,MA,2723 -Fall River,MA,2724 -Somerset,MA,2725 -Somerset,MA,2726 -Marion,MA,2738 -Mattapoisett,MA,2739 -New Bedford,MA,2740 -Acushnet,MA,2743 -New Bedford,MA,2744 -New Bedford,MA,2745 -New Bedford,MA,2746 -North Dartmouth,MA,2747 -Padanaram Villag,MA,2748 -North Attleboro,MA,2760 -Plainville,MA,2762 -North Attleboro,MA,2763 -North Dighton,MA,2764 -Norton,MA,2766 -Raynham,MA,2767 -Rehoboth,MA,2769 -Rochester,MA,2770 -Seekonk,MA,2771 -Swansea,MA,2777 -Berkley,MA,2779 -Taunton,MA,2780 -Westport,MA,2790 -Pearl Beach,MI,48001 -Berlin,MI,48002 -Almont,MI,48003 -Anchorville,MI,48004 -Armada,MI,48005 -Greenwood,MI,48006 -Birmingham,MI,48009 -Mussey,MI,48014 -Center Line,MI,48015 -Clawson,MI,48017 -Eastpointe,MI,48021 -Emmett,MI,48022 -Ira,MI,48023 -Franklin,MI,48025 -Fraser,MI,48026 -Wales,MI,48027 -Harsens Island,MI,48028 -Hazel Park,MI,48030 -Grant Township,MI,48032 -Southfield,MI,48034 -Cottrellville,MI,48039 -Marysville,MI,48040 -Riley,MI,48041 -Mount Clemens,MI,48043 -Macomb,MI,48044 -Selfridge A N G,MI,48045 -Chesterfield,MI,48047 -Lenox,MI,48048 -Ruby,MI,48049 -Port Huron,MI,48060 -Richmond,MI,48062 -Bruce,MI,48065 -Roseville,MI,48066 -Royal Oak,MI,48067 -Pleasant Ridge,MI,48069 -Huntington Woods,MI,48070 -Madison Heights,MI,48071 -Berkley,MI,48072 -Royal Oak,MI,48073 -Kimball,MI,48074 -Southfield,MI,48075 -Lathrup Village,MI,48076 -Saint Clair,MI,48079 -Saint Clair Shor,MI,48080 -Saint Clair Shor,MI,48081 -Saint Clair Shor,MI,48082 -Troy,MI,48083 -Troy,MI,48084 -Warren,MI,48089 -Warren,MI,48091 -Warren,MI,48092 -Warren,MI,48093 -Washington,MI,48094 -Brockway,MI,48097 -Troy,MI,48098 -Allen Park,MI,48101 -Ann Arbor,MI,48103 -Ann Arbor,MI,48104 -Ann Arbor,MI,48105 -Ann Arbor,MI,48108 -Ann Arbor,MI,48109 -Belleville,MI,48111 -Brighton,MI,48116 -Carleton,MI,48117 -Chelsea,MI,48118 -Dearborn,MI,48120 -Melvindale,MI,48122 -Dearborn,MI,48124 -Dearborn Heights,MI,48125 -Dearborn,MI,48126 -Dearborn Heights,MI,48127 -Dearborn,MI,48128 -Dexter,MI,48130 -Dundee,MI,48131 -Erie,MI,48133 -Flat Rock,MI,48134 -Garden City,MI,48135 -Gregory,MI,48137 -Grosse Ile,MI,48138 -Ida,MI,48140 -Inkster,MI,48141 -Lambertville,MI,48144 -La Salle,MI,48145 -Lincoln Park,MI,48146 -Livonia,MI,48150 -Livonia,MI,48152 -Livonia,MI,48154 -Luna Pier,MI,48157 -Manchester,MI,48158 -Maybee,MI,48159 -Milan,MI,48160 -Detroit Beach,MI,48161 -New Boston,MI,48164 -New Hudson,MI,48165 -Newport,MI,48166 -Northville,MI,48167 -Pinckney,MI,48169 -Plymouth,MI,48170 -Gibraltar,MI,48173 -Romulus,MI,48174 -Saline,MI,48176 -South Lyon,MI,48178 -South Rockwood,MI,48179 -Taylor,MI,48180 -Temperance,MI,48182 -Woodhaven,MI,48183 -Wayne,MI,48184 -Westland,MI,48185 -Canton,MI,48187 -Canton,MI,48188 -Whitmore Lake,MI,48189 -Willis,MI,48191 -Riverview,MI,48192 -Southgate,MI,48195 -Ypsilanti,MI,48197 -Ypsilanti,MI,48198 -Detroit,MI,48201 -Detroit,MI,48202 -Highland Park,MI,48203 -Detroit,MI,48204 -Detroit,MI,48205 -Detroit,MI,48206 -Detroit,MI,48207 -Detroit,MI,48208 -Detroit,MI,48209 -Detroit,MI,48210 -Detroit,MI,48211 -Hamtramck,MI,48212 -Detroit,MI,48213 -Detroit,MI,48214 -Detroit,MI,48215 -Detroit,MI,48216 -Detroit,MI,48217 -River Rouge,MI,48218 -Detroit,MI,48219 -Ferndale,MI,48220 -Detroit,MI,48221 -Detroit,MI,48223 -Detroit,MI,48224 -Harper Woods,MI,48225 -Detroit,MI,48226 -Detroit,MI,48227 -Detroit,MI,48228 -Ecorse,MI,48229 -Grosse Pointe,MI,48230 -Detroit,MI,48234 -Detroit,MI,48235 -Grosse Pointe,MI,48236 -Oak Park,MI,48237 -Detroit,MI,48238 -Redford,MI,48239 -Redford,MI,48240 -Detroit,MI,48242 -Bloomfield Towns,MI,48301 -Bloomfield Towns,MI,48302 -Bloomfield Towns,MI,48304 -Rochester Hills,MI,48306 -Rochester Hills,MI,48307 -Rochester Hills,MI,48309 -Sterling Heights,MI,48310 -Sterling Heights,MI,48312 -Sterling Heights,MI,48313 -Sterling Heights,MI,48314 -Shelby Township,MI,48315 -Shelby Township,MI,48316 -Shelby Township,MI,48317 -Sylvan Lake,MI,48320 -West Bloomfield,MI,48322 -Orchard Lake,MI,48323 -Orchard Lake,MI,48324 -Auburn Hills,MI,48326 -Waterford,MI,48327 -Waterford,MI,48328 -Waterford,MI,48329 -Farmington Hills,MI,48331 -Farmington Hills,MI,48334 -Farmington Hills,MI,48335 -Farmington Hills,MI,48336 -Pontiac,MI,48340 -Pontiac,MI,48341 -Pontiac,MI,48342 -Independence,MI,48346 -Independence,MI,48348 -Springfield,MI,48350 -Hartland,MI,48353 -Highland,MI,48356 -Highland,MI,48357 -Orion,MI,48359 -Orion,MI,48360 -Orion,MI,48362 -Oakland,MI,48363 -Addison Township,MI,48367 -Oxford,MI,48370 -Oxford,MI,48371 -Novi,MI,48374 -Novi,MI,48375 -Novi,MI,48377 -Milford,MI,48380 -Milford,MI,48381 -Commerce Townshi,MI,48382 -White Lake,MI,48383 -White Lake,MI,48386 -Wolverine Lake,MI,48390 -Wixom,MI,48393 -Applegate,MI,48401 -Attica,MI,48412 -Bad Axe,MI,48413 -Bancroft,MI,48414 -Birch Run,MI,48415 -Brown City,MI,48416 -Burt,MI,48417 -Byron,MI,48418 -Carsonville,MI,48419 -Clio,MI,48420 -Columbiaville,MI,48421 -Croswell,MI,48422 -Davison,MI,48423 -Decker,MI,48426 -Deckerville,MI,48427 -Dryden,MI,48428 -Durand,MI,48429 -Fenton,MI,48430 -Filion,MI,48432 -Flushing,MI,48433 -Fostoria,MI,48435 -Gaines,MI,48436 -Goodrich,MI,48438 -Grand Blanc,MI,48439 -Harbor Beach,MI,48441 -Holly,MI,48442 -Imlay City,MI,48444 -Kinde,MI,48445 -Lapeer,MI,48446 -Lennon,MI,48449 -Lexington,MI,48450 -Linden,MI,48451 -Marlette,MI,48453 -Melvin,MI,48454 -Metamora,MI,48455 -Minden City,MI,48456 -Montrose,MI,48457 -Mount Morris,MI,48458 -New Lothrop,MI,48460 -North Branch,MI,48461 -Ortonville,MI,48462 -Otisville,MI,48463 -Otter Lake,MI,48464 -Palms,MI,48465 -Peck,MI,48466 -Port Austin,MI,48467 -Port Hope,MI,48468 -Port Sanilac,MI,48469 -Ruth,MI,48470 -Sandusky,MI,48471 -Snover,MI,48472 -Swartz Creek,MI,48473 -Ubly,MI,48475 -Flint,MI,48502 -Flint,MI,48503 -Northwest,MI,48504 -Flint,MI,48505 -Northeast,MI,48506 -Flint,MI,48507 -Northeast,MI,48509 -Southeast,MI,48519 -Southeast,MI,48529 -Northwest,MI,48532 -Saginaw,MI,48601 -Saginaw,MI,48602 -Saginaw,MI,48603 -Saginaw,MI,48604 -Saginaw,MI,48607 -Alger,MI,48610 -Auburn,MI,48611 -Beaverton,MI,48612 -Bentley,MI,48613 -Brant,MI,48614 -Breckenridge,MI,48615 -Chesaning,MI,48616 -Clare,MI,48617 -Coleman,MI,48618 -Comins,MI,48619 -Edenville,MI,48620 -Fairview,MI,48621 -Farwell,MI,48622 -Freeland,MI,48623 -Gladwin,MI,48624 -Harrison,MI,48625 -Hemlock,MI,48626 -Hope,MI,48628 -Houghton Lake,MI,48629 -Kawkawlin,MI,48631 -Lake,MI,48632 -Linwood,MI,48634 -Lupton,MI,48635 -Luzerne,MI,48636 -Merrill,MI,48637 -Midland,MI,48640 -Midland,MI,48642 -Mio,MI,48647 -Oakley,MI,48649 -Pinconning,MI,48650 -Prudenville,MI,48651 -Rhodes,MI,48652 -Roscommon,MI,48653 -Rose City,MI,48654 -Saint Charles,MI,48655 -Saint Helen,MI,48656 -Sanford,MI,48657 -Standish,MI,48658 -Sterling,MI,48659 -West Branch,MI,48661 -Wheeler,MI,48662 -Akron,MI,48701 -Au Gres,MI,48703 -Barton City,MI,48705 -University Cente,MI,48706 -Bay City,MI,48708 -Bay Port,MI,48720 -Black River,MI,48721 -Bridgeport,MI,48722 -Caro,MI,48723 -Caseville,MI,48725 -Cass City,MI,48726 -Clifford,MI,48727 -Curran,MI,48728 -Deford,MI,48729 -East Tawas,MI,48730 -Elkton,MI,48731 -Essexville,MI,48732 -Fairgrove,MI,48733 -Frankenmuth,MI,48734 -Gagetown,MI,48735 -Glennie,MI,48737 -Greenbush,MI,48738 -Hale,MI,48739 -Harrisville,MI,48740 -Kingston,MI,48741 -Lincoln,MI,48742 -Long Lake,MI,48743 -Mayville,MI,48744 -Mikado,MI,48745 -Millington,MI,48746 -Munger,MI,48747 -National City,MI,48748 -Omer,MI,48749 -Oscoda,MI,48750 -Owendale,MI,48754 -Pigeon,MI,48755 -Prescott,MI,48756 -Reese,MI,48757 -Sebewaing,MI,48759 -Silverwood,MI,48760 -South Branch,MI,48761 -Spruce,MI,48762 -Tawas City,MI,48763 -Turner,MI,48765 -Twining,MI,48766 -Unionville,MI,48767 -Vassar,MI,48768 -Whittemore,MI,48770 -Alma,MI,48801 -Ashley,MI,48806 -Bannister,MI,48807 -Bath,MI,48808 -Belding,MI,48809 -Carson City,MI,48811 -Charlotte,MI,48813 -Clarksville,MI,48815 -Corunna,MI,48817 -Crystal,MI,48818 -Dansville,MI,48819 -Dewitt,MI,48820 -Dimondale,MI,48821 -Eagle,MI,48822 -East Lansing,MI,48823 -Eaton Rapids,MI,48827 -Edmore,MI,48829 -Carland,MI,48831 -Elwell,MI,48832 -Fenwick,MI,48834 -Fowler,MI,48835 -Fowlerville,MI,48836 -Grand Ledge,MI,48837 -Greenville,MI,48838 -Haslett,MI,48840 -Henderson,MI,48841 -Holt,MI,48842 -Howell,MI,48843 -Hubbardston,MI,48845 -Ionia,MI,48846 -Ithaca,MI,48847 -Laingsburg,MI,48848 -Lake Odessa,MI,48849 -Lakeview,MI,48850 -Lyons,MI,48851 -Mason,MI,48854 -Middleton,MI,48856 -Morrice,MI,48857 -Mount Pleasant,MI,48858 -Muir,MI,48860 -Mulliken,MI,48861 -Okemos,MI,48864 -Orleans,MI,48865 -Ovid,MI,48866 -Owosso,MI,48867 -Perrinton,MI,48871 -Perry,MI,48872 -Pewamo,MI,48873 -Portland,MI,48875 -Potterville,MI,48876 -Riverdale,MI,48877 -Rosebush,MI,48878 -Saint Johns,MI,48879 -Saint Louis,MI,48880 -Saranac,MI,48881 -Shepherd,MI,48883 -Sheridan,MI,48884 -Sidney,MI,48885 -Six Lakes,MI,48886 -Stanton,MI,48888 -Sumner,MI,48889 -Sunfield,MI,48890 -Vestaburg,MI,48891 -Webberville,MI,48892 -Weidman,MI,48893 -Westphalia,MI,48894 -Williamston,MI,48895 -Woodland,MI,48897 -Lansing,MI,48906 -Lansing,MI,48910 -Lansing,MI,48911 -Lansing,MI,48912 -Lansing,MI,48915 -Lansing,MI,48917 -Lansing,MI,48933 -Kalamazoo,MI,49001 -Kalamazoo,MI,49002 -Parchment,MI,49004 -Kalamazoo,MI,49007 -Kalamazoo,MI,49008 -Kalamazoo,MI,49009 -Allegan,MI,49010 -Athens,MI,49011 -Augusta,MI,49012 -Bangor,MI,49013 -Battle Creek,MI,49015 -Battle Creek,MI,49017 -Bellevue,MI,49021 -Benton Harbor,MI,49022 -Bloomingdale,MI,49026 -Bronson,MI,49028 -Burlington,MI,49029 -Burr Oak,MI,49030 -Cassopolis,MI,49031 -Centreville,MI,49032 -Ceresco,MI,49033 -Climax,MI,49034 -Coldwater,MI,49036 -Coloma,MI,49038 -Colon,MI,49040 -Constantine,MI,49042 -Covert,MI,49043 -Decatur,MI,49045 -Delton,MI,49046 -Dowagiac,MI,49047 -Dowling,MI,49050 -East Leroy,MI,49051 -Fulton,MI,49052 -Galesburg,MI,49053 -Gobles,MI,49055 -Grand Junction,MI,49056 -Hartford,MI,49057 -Hastings,MI,49058 -Hickory Corners,MI,49060 -Jones,MI,49061 -Lawrence,MI,49064 -Lawton,MI,49065 -Leonidas,MI,49066 -Marcellus,MI,49067 -Marshall,MI,49068 -Martin,MI,49070 -Mattawan,MI,49071 -Mendon,MI,49072 -Nashville,MI,49073 -Olivet,MI,49076 -Otsego,MI,49078 -Paw Paw,MI,49079 -Plainwell,MI,49080 -Quincy,MI,49082 -Richland,MI,49083 -Saint Joseph,MI,49085 -Schoolcraft,MI,49087 -Scotts,MI,49088 -Sherwood,MI,49089 -South Haven,MI,49090 -Sturgis,MI,49091 -Tekonsha,MI,49092 -Three Rivers,MI,49093 -Union City,MI,49094 -Vandalia,MI,49095 -Vermontville,MI,49096 -Vicksburg,MI,49097 -Watervliet,MI,49098 -White Pigeon,MI,49099 -Baroda,MI,49101 -Berrien Center,MI,49102 -Berrien Springs,MI,49103 -Bridgman,MI,49106 -Buchanan,MI,49107 -Eau Claire,MI,49111 -Edwardsburg,MI,49112 -Galien,MI,49113 -Lakeside,MI,49116 -Grand Beach,MI,49117 -Niles,MI,49120 -Sawyer,MI,49125 -Sodus,MI,49126 -Stevensville,MI,49127 -Three Oaks,MI,49128 -Union Pier,MI,49129 -Union,MI,49130 -Jackson,MI,49201 -Jackson,MI,49202 -Jackson,MI,49203 -Addison,MI,49220 -Adrian,MI,49221 -Albion,MI,49224 -Allen,MI,49227 -Blissfield,MI,49228 -Britton,MI,49229 -Brooklyn,MI,49230 -Camden,MI,49232 -Cement City,MI,49233 -Clarklake,MI,49234 -Clayton,MI,49235 -Clinton,MI,49236 -Concord,MI,49237 -Deerfield,MI,49238 -Grass Lake,MI,49240 -Hanover,MI,49241 -Hillsdale,MI,49242 -Homer,MI,49245 -Horton,MI,49246 -Hudson,MI,49247 -Jasper,MI,49248 -Jerome,MI,49249 -Jonesville,MI,49250 -Leslie,MI,49251 -Litchfield,MI,49252 -Manitou Beach,MI,49253 -Michigan Center,MI,49254 -Montgomery,MI,49255 -Morenci,MI,49256 -Munith,MI,49259 -North Adams,MI,49262 -Onondaga,MI,49264 -Onsted,MI,49265 -Osseo,MI,49266 -Ottawa Lake,MI,49267 -Palmyra,MI,49268 -Parma,MI,49269 -Petersburg,MI,49270 -Pittsford,MI,49271 -Pleasant Lake,MI,49272 -Reading,MI,49274 -Ridgeway,MI,49275 -Riga,MI,49276 -Rives Junction,MI,49277 -Sand Creek,MI,49279 -Somerset,MI,49281 -Spring Arbor,MI,49283 -Springport,MI,49284 -Stockbridge,MI,49285 -Tecumseh,MI,49286 -Tipton,MI,49287 -Waldron,MI,49288 -Ada,MI,49301 -Alto,MI,49302 -Bailey,MI,49303 -Baldwin,MI,49304 -Barryton,MI,49305 -Belmont,MI,49306 -Big Rapids,MI,49307 -Bitely,MI,49309 -Blanchard,MI,49310 -Byron Center,MI,49315 -Dutton,MI,49316 -Casnovia,MI,49318 -Cedar Springs,MI,49319 -Comstock Park,MI,49321 -Coral,MI,49322 -Dorr,MI,49323 -Freeport,MI,49325 -Gowen,MI,49326 -Grant,MI,49327 -Hopkins,MI,49328 -Howard City,MI,49329 -Kent City,MI,49330 -Lowell,MI,49331 -Mecosta,MI,49332 -Middleville,MI,49333 -Morley,MI,49336 -Newaygo,MI,49337 -Paris,MI,49338 -Pierson,MI,49339 -Remus,MI,49340 -Rockford,MI,49341 -Rodney,MI,49342 -Sand Lake,MI,49343 -Shelbyville,MI,49344 -Sparta,MI,49345 -Stanwood,MI,49346 -Trufant,MI,49347 -Wayland,MI,49348 -White Cloud,MI,49349 -Allendale,MI,49401 -Branch,MI,49402 -Conklin,MI,49403 -Coopersville,MI,49404 -Custer,MI,49405 -Fennville,MI,49408 -Fountain,MI,49410 -Free Soil,MI,49411 -Fremont,MI,49412 -Fruitport,MI,49415 -Grand Haven,MI,49417 -Grandville,MI,49418 -Hamilton,MI,49419 -Hart,MI,49420 -Hesperia,MI,49421 -Holland,MI,49423 -Holland,MI,49424 -Holton,MI,49425 -Hudsonville,MI,49426 -Jenison,MI,49428 -Ludington,MI,49431 -Marne,MI,49435 -Mears,MI,49436 -Montague,MI,49437 -Muskegon,MI,49440 -Muskegon,MI,49441 -Muskegon,MI,49442 -Muskegon Heights,MI,49444 -North Muskegon,MI,49445 -New Era,MI,49446 -New Richmond,MI,49447 -Nunica,MI,49448 -Pentwater,MI,49449 -Pullman,MI,49450 -Ravenna,MI,49451 -Rothbury,MI,49452 -Saugatuck,MI,49453 -Scottville,MI,49454 -Shelby,MI,49455 -Spring Lake,MI,49456 -Twin Lake,MI,49457 -Walkerville,MI,49459 -West Olive,MI,49460 -Whitehall,MI,49461 -Zeeland,MI,49464 -Grand Rapids,MI,49503 -Walker,MI,49504 -Grand Rapids,MI,49505 -Grand Rapids,MI,49506 -Grand Rapids,MI,49507 -Kentwood,MI,49508 -Wyoming,MI,49509 -Kentwood,MI,49512 -Grand Rapids,MI,49546 -Kentwood,MI,49548 -Cadillac,MI,49601 -Alden,MI,49612 -Arcadia,MI,49613 -Bear Lake,MI,49614 -Bellaire,MI,49615 -Benzonia,MI,49616 -Beulah,MI,49617 -Boon,MI,49618 -Brethren,MI,49619 -Buckley,MI,49620 -Cedar,MI,49621 -Central Lake,MI,49622 -Chase,MI,49623 -Copemish,MI,49625 -Elk Rapids,MI,49629 -Empire,MI,49630 -Evart,MI,49631 -Falmouth,MI,49632 -Fife Lake,MI,49633 -Frankfort,MI,49635 -Glen Arbor,MI,49636 -Grawn,MI,49637 -Harrietta,MI,49638 -Hersey,MI,49639 -Honor,MI,49640 -Idlewild,MI,49642 -Interlochen,MI,49643 -Irons,MI,49644 -Kaleva,MI,49645 -Kalkaska,MI,49646 -Karlin,MI,49647 -Kewadin,MI,49648 -Kingsley,MI,49649 -Lake Ann,MI,49650 -Moorestown,MI,49651 -Lake Leelanau,MI,49653 -Leland,MI,49654 -Leroy,MI,49655 -Luther,MI,49656 -Mc Bain,MI,49657 -Mancelona,MI,49659 -Stronach,MI,49660 -Manton,MI,49663 -Maple City,MI,49664 -Marion,MI,49665 -Merritt,MI,49667 -Mesick,MI,49668 -Northport,MI,49670 -Onekama,MI,49675 -Rapid City,MI,49676 -Reed City,MI,49677 -Sears,MI,49679 -South Boardman,MI,49680 -Suttons Bay,MI,49682 -Thompsonville,MI,49683 -Traverse City,MI,49684 -Tustin,MI,49688 -Wellston,MI,49689 -Williamsburg,MI,49690 -Afton,MI,49705 -Alanson,MI,49706 -Alpena,MI,49707 -Atlanta,MI,49709 -Barbeau,MI,49710 -Boyne City,MI,49712 -Boyne Falls,MI,49713 -Raco,MI,49715 -Brutus,MI,49716 -Carp Lake,MI,49718 -Cedarville,MI,49719 -Charlevoix,MI,49720 -Cheboygan,MI,49721 -Dafter,MI,49724 -De Tour Village,MI,49725 -Drummond Island,MI,49726 -East Jordan,MI,49727 -Eckerman,MI,49728 -Ellsworth,MI,49729 -Elmira,MI,49730 -Frederic,MI,49733 -Gaylord,MI,49735 -Goetzville,MI,49736 -Grayling,MI,49738 -Harbor Point,MI,49740 -Hawks,MI,49743 -Herron,MI,49744 -Hillman,MI,49746 -Hubbard Lake,MI,49747 -Indian River,MI,49749 -Johannesburg,MI,49751 -Kinross,MI,49752 -Lachine,MI,49753 -Levering,MI,49755 -Lewiston,MI,49756 -Mackinac Island,MI,49757 -Millersburg,MI,49759 -Moran,MI,49760 -Naubinway,MI,49762 -Onaway,MI,49765 -Ossineke,MI,49766 -Paradise,MI,49768 -Pellston,MI,49769 -Bay View,MI,49770 -Pickford,MI,49774 -Pointe Aux Pins,MI,49775 -Posen,MI,49776 -Rogers City,MI,49779 -Fibre,MI,49780 -Saint Ignace,MI,49781 -Saint James,MI,49782 -Sault Sainte Mar,MI,49783 -Kincheloe,MI,49788 -Stalwart,MI,49789 -Tower,MI,49792 -Vanderbilt,MI,49795 -Wolverine,MI,49799 -Iron Mountain,MI,49801 -Au Train,MI,49806 -Hardwood,MI,49807 -Carney,MI,49812 -Cedar River,MI,49813 -Champion,MI,49814 -Channing,MI,49815 -Limestone,MI,49816 -Cooks,MI,49817 -Cornell,MI,49818 -Curtis,MI,49820 -Daggett,MI,49821 -Deerton,MI,49822 -Eben Junction,MI,49825 -Rumely,MI,49826 -Engadine,MI,49827 -Escanaba,MI,49829 -Little Lake,MI,49833 -Foster City,MI,49834 -Garden,MI,49835 -Germfask,MI,49836 -Brampton,MI,49837 -Gould City,MI,49838 -Grand Marais,MI,49839 -Gulliver,MI,49840 -Princeton,MI,49841 -K I Sawyer A F B,MI,49843 -Hermansville,MI,49847 -Ingalls,MI,49848 -North Lake,MI,49849 -Mc Millan,MI,49853 -Thompson,MI,49854 -Beaver Grove,MI,49855 -Menominee,MI,49858 -Michigamme,MI,49861 -Christmas,MI,49862 -Negaunee,MI,49866 -Newberry,MI,49868 -Norway,MI,49870 -Perronville,MI,49873 -Powers,MI,49874 -Quinnesec,MI,49876 -Rapid River,MI,49878 -Republic,MI,49879 -Rock,MI,49880 -Sagola,MI,49881 -Seney,MI,49883 -Shingleton,MI,49884 -Skandia,MI,49885 -Spalding,MI,49886 -Stephenson,MI,49887 -Traunik,MI,49890 -Trenary,MI,49891 -Vulcan,MI,49892 -Wallace,MI,49893 -Wells,MI,49894 -Wetmore,MI,49895 -Wilson,MI,49896 -Atlantic Mine,MI,49905 -Keweenaw Bay,MI,49908 -Bergland,MI,49910 -Bessemer,MI,49911 -Bruce Crossing,MI,49912 -Laurium,MI,49913 -Chassell,MI,49916 -Covington,MI,49919 -Crystal Falls,MI,49920 -Dodgeville,MI,49921 -Ewen,MI,49925 -Gaastra,MI,49927 -Hancock,MI,49930 -Houghton,MI,49931 -Iron River,MI,49935 -Ironwood,MI,49938 -Kenton,MI,49943 -Gay,MI,49945 -Lanse,MI,49946 -Marenisco,MI,49947 -Mass City,MI,49948 -Eagle Harbor,MI,49950 -Nisula,MI,49952 -Ontonagon,MI,49953 -Pelkie,MI,49958 -Skanee,MI,49962 -Toivola,MI,49965 -Trout Creek,MI,49967 -Wakefield,MI,49968 -Watersmeet,MI,49969 -Watton,MI,49970 -Afton,MN,55001 -Bayport,MN,55003 -East Bethel,MN,55005 -Braham,MN,55006 -Quamba,MN,55007 -Cambridge,MN,55008 -Cannon Falls,MN,55009 -Castle Rock,MN,55010 -Cedar East Bethe,MN,55011 -Chisago City,MN,55013 -Circle Pines,MN,55014 -Cottage Grove,MN,55016 -Dalbo,MN,55017 -Stanton,MN,55018 -Dundas,MN,55019 -Elko,MN,55020 -Faribault,MN,55021 -Farmington,MN,55024 -Forest Lake,MN,55025 -Frontenac,MN,55026 -Goodhue,MN,55027 -Grasston,MN,55030 -Hampton,MN,55031 -Harris,MN,55032 -Welch,MN,55033 -Hinckley,MN,55037 -Centerville,MN,55038 -Isanti,MN,55040 -Lake City,MN,55041 -Lake Elmo,MN,55042 -Lakeland,MN,55043 -Lakeville,MN,55044 -Lindstrom,MN,55045 -Veseli,MN,55046 -Marine On Saint,MN,55047 -55048,MN,55048 -Medford,MN,55049 -Mora,MN,55051 -Morristown,MN,55052 -Nerstrand,MN,55053 -Newport,MN,55055 -North Branch,MN,55056 -Northfield,MN,55057 -Owatonna,MN,55060 -Beroun,MN,55063 -Randolph,MN,55065 -Red Wing,MN,55066 -Rock Creek,MN,55067 -Rosemount,MN,55068 -Rush City,MN,55069 -Saint Francis,MN,55070 -Saint Paul Park,MN,55071 -Markville,MN,55072 -Scandia,MN,55073 -Shafer,MN,55074 -South Saint Paul,MN,55075 -Inver Grove Heig,MN,55076 -Inver Grove Heig,MN,55077 -Stacy,MN,55079 -Stanchfield,MN,55080 -Oak Park Heights,MN,55082 -Taylors Falls,MN,55084 -Warsaw,MN,55087 -Webster,MN,55088 -Welch,MN,55089 -East Bethel,MN,55092 -Saint Paul,MN,55101 -Saint Paul,MN,55102 -Saint Paul,MN,55103 -Saint Paul,MN,55104 -Saint Paul,MN,55105 -Saint Paul,MN,55106 -West Saint Paul,MN,55107 -Lauderdale,MN,55108 -North Saint Paul,MN,55109 -White Bear Lake,MN,55110 -Fort Snelling,MN,55111 -New Brighton,MN,55112 -Roseville,MN,55113 -Saint Paul,MN,55114 -White Bear Lake,MN,55115 -Saint Paul,MN,55116 -Little Canada,MN,55117 -West Saint Paul,MN,55118 -Maplewood,MN,55119 -Eagan,MN,55120 -Eagan,MN,55121 -Eagan,MN,55122 -Eagan,MN,55123 -Apple Valley,MN,55124 -Woodbury,MN,55125 -Shoreview,MN,55126 -Vadnais Heights,MN,55127 -Oakdale,MN,55128 -Mendota,MN,55150 -Albertville,MN,55301 -Annandale,MN,55302 -Ramsey,MN,55303 -Ham Lake,MN,55304 -Arlington,MN,55307 -Becker,MN,55308 -Big Lake,MN,55309 -Bird Island,MN,55310 -Brownton,MN,55312 -Buffalo,MN,55313 -Buffalo Lake,MN,55314 -Carver,MN,55315 -Champlin,MN,55316 -Chanhassen,MN,55317 -Chaska,MN,55318 -Clear Lake,MN,55319 -Clearwater,MN,55320 -Cokato,MN,55321 -Cologne,MN,55322 -Darwin,MN,55324 -Dassel,MN,55325 -Dayton,MN,55327 -Delano,MN,55328 -Eden Valley,MN,55329 -Elk River,MN,55330 -Excelsior,MN,55331 -Fairfax,MN,55332 -Franklin,MN,55333 -Gaylord,MN,55334 -Gibbon,MN,55335 -Glencoe,MN,55336 -Burnsville,MN,55337 -Green Isle,MN,55338 -Hamburg,MN,55339 -Hamel,MN,55340 -Hector,MN,55342 -Eden Prairie,MN,55343 -Eden Prairie,MN,55344 -Minnetonka,MN,55345 -Eden Prairie,MN,55346 -Eden Prairie,MN,55347 -Howard Lake,MN,55349 -Hutchinson,MN,55350 -Jordan,MN,55352 -Kimball,MN,55353 -Lester Prairie,MN,55354 -Litchfield,MN,55355 -Long Lake,MN,55356 -Loretto,MN,55357 -Maple Lake,MN,55358 -Maple Plain,MN,55359 -Mayer,MN,55360 -Monticello,MN,55362 -Montrose,MN,55363 -Mound,MN,55364 -New Auburn,MN,55366 -New Germany,MN,55367 -Norwood,MN,55368 -Maple Grove,MN,55369 -Plato,MN,55370 -Princeton,MN,55371 -Prior Lake,MN,55372 -Rockford,MN,55373 -Rogers,MN,55374 -Saint Michael,MN,55376 -Savage,MN,55378 -Shakopee,MN,55379 -Silver Creek,MN,55380 -Silver Lake,MN,55381 -South Haven,MN,55382 -Spring Park,MN,55384 -Stewart,MN,55385 -Victoria,MN,55386 -Waconia,MN,55387 -Watertown,MN,55388 -Watkins,MN,55389 -Waverly,MN,55390 -Wayzata,MN,55391 -Winsted,MN,55395 -Winthrop,MN,55396 -Young America,MN,55397 -Zimmerman,MN,55398 -Minneapolis,MN,55401 -Minneapolis,MN,55402 -Minneapolis,MN,55403 -Minneapolis,MN,55404 -Minneapolis,MN,55405 -Minneapolis,MN,55406 -Minneapolis,MN,55407 -Minneapolis,MN,55408 -Minneapolis,MN,55409 -Edina,MN,55410 -Minneapolis,MN,55411 -Minneapolis,MN,55412 -Minneapolis,MN,55413 -Minneapolis,MN,55414 -Minneapolis,MN,55415 -Saint Louis Park,MN,55416 -Minneapolis,MN,55417 -Minneapolis,MN,55418 -Minneapolis,MN,55419 -Bloomington,MN,55420 -Columbia Heights,MN,55421 -Robbinsdale,MN,55422 -Richfield,MN,55423 -Edina,MN,55424 -Bloomington,MN,55425 -Saint Louis Park,MN,55426 -Golden Valley,MN,55427 -Crystal,MN,55428 -Brooklyn Center,MN,55429 -Brooklyn Center,MN,55430 -Bloomington,MN,55431 -Fridley,MN,55432 -Coon Rapids,MN,55433 -Blaine,MN,55434 -Edina,MN,55435 -Edina,MN,55436 -Bloomington,MN,55437 -Bloomington,MN,55438 -Edina,MN,55439 -Plymouth,MN,55441 -Plymouth,MN,55442 -Brooklyn Center,MN,55443 -Brooklyn Center,MN,55444 -Brooklyn Park,MN,55445 -Plymouth,MN,55446 -Plymouth,MN,55447 -Coon Rapids,MN,55448 -Minneapolis,MN,55450 -Minneapolis,MN,55454 -Minneapolis,MN,55455 -Loretto,MN,55599 -Brimson,MN,55602 -Finland,MN,55603 -Grand Marais,MN,55604 -Grand Portage,MN,55605 -Hovland,MN,55606 -Isabella,MN,55607 -Lutsen,MN,55612 -Schroeder,MN,55613 -Little Marais,MN,55614 -Tofte,MN,55615 -Two Harbors,MN,55616 -Alborn,MN,55702 -Angora,MN,55703 -Askov,MN,55704 -Aurora,MN,55705 -Babbitt,MN,55706 -Barnum,MN,55707 -Bovey,MN,55709 -Britt,MN,55710 -Brookston,MN,55711 -Bruno,MN,55712 -Canyon,MN,55717 -Carlton,MN,55718 -Chisholm,MN,55719 -Cloquet,MN,55720 -Cohasset,MN,55721 -Cook,MN,55723 -Kelsey,MN,55724 -Crane Lake,MN,55725 -Cromwell,MN,55726 -Culver,MN,55727 -Ely,MN,55731 -Embarrass,MN,55732 -Esko,MN,55733 -Eveleth,MN,55734 -Finlayson,MN,55735 -Floodwood,MN,55736 -Gheen,MN,55740 -Gilbert,MN,55741 -Goodland,MN,55742 -La Prairie,MN,55744 -Hibbing,MN,55746 -Hill City,MN,55748 -Holyoke,MN,55749 -Hoyt Lakes,MN,55750 -Iron,MN,55751 -Jacobson,MN,55752 -55755,MN,55755 -Kerrick,MN,55756 -Kettle River,MN,55757 -Mc Gregor,MN,55760 -Mahtowa,MN,55762 -Makinen,MN,55763 -Meadowlands,MN,55765 -Melrude,MN,55766 -Moose Lake,MN,55767 -Mountain Iron,MN,55768 -Nashwauk,MN,55769 -Buyck,MN,55771 -Parkville,MN,55773 -Pengilly,MN,55775 -Saginaw,MN,55779 -Sawyer,MN,55780 -Sturgeon Lake,MN,55783 -Swan River,MN,55784 -Swatara,MN,55785 -Tamarack,MN,55787 -Togo,MN,55788 -Tower,MN,55790 -Virginia,MN,55792 -Warba,MN,55793 -Willow River,MN,55795 -Wrenshall,MN,55797 -Wright,MN,55798 -Zim,MN,55799 -Duluth,MN,55801 -Duluth,MN,55802 -Duluth,MN,55803 -Duluth,MN,55804 -Duluth,MN,55805 -Duluth,MN,55806 -Duluth,MN,55807 -Duluth,MN,55808 -Proctor,MN,55810 -Hermantown,MN,55811 -Duluth,MN,55812 -Rochester,MN,55901 -Rochester,MN,55902 -Rochester,MN,55904 -Rochester,MN,55906 -Adams,MN,55909 -Altura,MN,55910 -Austin,MN,55912 -Blooming Prairie,MN,55917 -Brownsdale,MN,55918 -Brownsville,MN,55919 -Byron,MN,55920 -Caledonia,MN,55921 -Canton,MN,55922 -Chatfield,MN,55923 -Claremont,MN,55924 -Dakota,MN,55925 -Dexter,MN,55926 -Dodge Center,MN,55927 -Dover,MN,55929 -Elgin,MN,55932 -Elkton,MN,55933 -Viola,MN,55934 -Fountain,MN,55935 -Grand Meadow,MN,55936 -Granger,MN,55937 -Harmony,MN,55939 -Hayfield,MN,55940 -Hokah,MN,55941 -Houston,MN,55943 -Kasson,MN,55944 -Theilman,MN,55945 -Kenyon,MN,55946 -La Crescent,MN,55947 -Lanesboro,MN,55949 -Le Roy,MN,55951 -Lewiston,MN,55952 -Lyle,MN,55953 -Mabel,MN,55954 -Mantorville,MN,55955 -Mazeppa,MN,55956 -Millville,MN,55957 -Minnesota City,MN,55959 -Oronoco,MN,55960 -Ostrander,MN,55961 -Peterson,MN,55962 -Pine Island,MN,55963 -Plainview,MN,55964 -Preston,MN,55965 -Racine,MN,55967 -Rollingstone,MN,55969 -Rose Creek,MN,55970 -Rushford,MN,55971 -Saint Charles,MN,55972 -Sargeant,MN,55973 -Spring Grove,MN,55974 -Spring Valley,MN,55975 -Stewartville,MN,55976 -Taopi,MN,55977 -Theilman,MN,55978 -Utica,MN,55979 -Wabasha,MN,55981 -Waltham,MN,55982 -Wanamingo,MN,55983 -West Concord,MN,55985 -Whalan,MN,55986 -Goodview,MN,55987 -Wykoff,MN,55990 -Hammond,MN,55991 -Zumbrota,MN,55992 -Mankato,MN,56001 -North Mankato,MN,56003 -Albert Lea,MN,56007 -Alden,MN,56009 -Amboy,MN,56010 -Belle Plaine,MN,56011 -Blue Earth,MN,56013 -Bricelyn,MN,56014 -Clarks Grove,MN,56016 -Cleveland,MN,56017 -Comfrey,MN,56019 -Conger,MN,56020 -Courtland,MN,56021 -Darfur,MN,56022 -Delavan,MN,56023 -Eagle Lake,MN,56024 -Easton,MN,56025 -Ellendale,MN,56026 -Elmore,MN,56027 -Elysian,MN,56028 -Emmons,MN,56029 -Essig,MN,56030 -Fairmont,MN,56031 -Freeborn,MN,56032 -Frost,MN,56033 -Garden City,MN,56034 -Geneva,MN,56035 -Glenville,MN,56036 -Good Thunder,MN,56037 -Granada,MN,56039 -Hanska,MN,56041 -Hartland,MN,56042 -Hayward,MN,56043 -Henderson,MN,56044 -Hollandale,MN,56045 -Hope,MN,56046 -Huntley,MN,56047 -Janesville,MN,56048 -Kasota,MN,56050 -Kiester,MN,56051 -Kilkenny,MN,56052 -Lafayette,MN,56054 -Lake Crystal,MN,56055 -Le Center,MN,56057 -Le Sueur,MN,56058 -Lewisville,MN,56060 -London,MN,56061 -Madelia,MN,56062 -Madison Lake,MN,56063 -Manchester,MN,56064 -Mapleton,MN,56065 -Meriden,MN,56067 -Minnesota Lake,MN,56068 -Montgomery,MN,56069 -New Prague,MN,56071 -New Richland,MN,56072 -New Ulm,MN,56073 -Nicollet,MN,56074 -Northrop,MN,56075 -Oakland,MN,56076 -Otisco,MN,56077 -Pemberton,MN,56078 -Saint Clair,MN,56080 -Saint James,MN,56081 -Saint Peter,MN,56082 -Sanborn,MN,56083 -Sleepy Eye,MN,56085 -Springfield,MN,56087 -Truman,MN,56088 -Twin Lakes,MN,56089 -Vernon Center,MN,56090 -Waldorf,MN,56091 -Walters,MN,56092 -Waseca,MN,56093 -Waterville,MN,56096 -Wells,MN,56097 -Winnebago,MN,56098 -Wilder,MN,56101 -Adrian,MN,56110 -Alpha,MN,56111 -Amiret,MN,56112 -Arco,MN,56113 -Avoca,MN,56114 -Balaton,MN,56115 -Beaver Creek,MN,56116 -Bigelow,MN,56117 -Bingham Lake,MN,56118 -Brewster,MN,56119 -Butterfield,MN,56120 -Ceylon,MN,56121 -Chandler,MN,56122 -Currie,MN,56123 -Delft,MN,56124 -Dovray,MN,56125 -Dundee,MN,56126 -Dunnell,MN,56127 -Edgerton,MN,56128 -Ellsworth,MN,56129 -56130,MN,56130 -Fulda,MN,56131 -Garvin,MN,56132 -Hadley,MN,56133 -Hardwick,MN,56134 -56135,MN,56135 -Hendricks,MN,56136 -Heron Lake,MN,56137 -Hills,MN,56138 -Holland,MN,56139 -Iona,MN,56141 -Ivanhoe,MN,56142 -Jackson,MN,56143 -Jasper,MN,56144 -Jeffers,MN,56145 -Kanaranzi,MN,56146 -Kenneth,MN,56147 -Lake Benton,MN,56149 -Lakefield,MN,56150 -Lake Wilson,MN,56151 -Lamberton,MN,56152 -Leota,MN,56153 -Lismore,MN,56155 -Luverne,MN,56156 -Lynd,MN,56157 -Magnolia,MN,56158 -Mountain Lake,MN,56159 -Odin,MN,56160 -Okabena,MN,56161 -Ormsby,MN,56162 -Hatfield,MN,56164 -Reading,MN,56165 -Revere,MN,56166 -Round Lake,MN,56167 -Rushmore,MN,56168 -Russell,MN,56169 -Florence,MN,56170 -Sherburn,MN,56171 -Slayton,MN,56172 -Steen,MN,56173 -Storden,MN,56174 -Tracy,MN,56175 -Trimont,MN,56176 -Tyler,MN,56178 -Verdi,MN,56179 -Walnut Grove,MN,56180 -Welcome,MN,56181 -Westbrook,MN,56183 -Wilmont,MN,56185 -Woodstock,MN,56186 -Worthington,MN,56187 -Willmar,MN,56201 -Alberta,MN,56207 -Appleton,MN,56208 -Atwater,MN,56209 -Barry,MN,56210 -Beardsley,MN,56211 -Bellingham,MN,56212 -Belview,MN,56214 -Benson,MN,56215 -Svea,MN,56216 -Boyd,MN,56218 -Browns Valley,MN,56219 -Canby,MN,56220 -Chokio,MN,56221 -Clara City,MN,56222 -Clarkfield,MN,56223 -Clements,MN,56224 -Clinton,MN,56225 -Clontarf,MN,56226 -Correll,MN,56227 -Cosmos,MN,56228 -Cottonwood,MN,56229 -Danube,MN,56230 -Danvers,MN,56231 -Dawson,MN,56232 -De Graff,MN,56233 -Donnelly,MN,56235 -Dumont,MN,56236 -Echo,MN,56237 -Evan,MN,56238 -Ghent,MN,56239 -Graceville,MN,56240 -Granite Falls,MN,56241 -Grove City,MN,56243 -Hancock,MN,56244 -Hanley Falls,MN,56245 -Hawick,MN,56246 -Hazel Run,MN,56247 -Herman,MN,56248 -Holloway,MN,56249 -Johnson,MN,56250 -Kandiyohi,MN,56251 -Kerkhoven,MN,56252 -Lake Lillian,MN,56253 -Louisburg,MN,56254 -Lucan,MN,56255 -Madison,MN,56256 -Marietta,MN,56257 -Marshall,MN,56258 -Maynard,MN,56260 -Milan,MN,56262 -Milroy,MN,56263 -Minneota,MN,56264 -Montevideo,MN,56265 -Morgan,MN,56266 -Morris,MN,56267 -Morton,MN,56270 -Murdock,MN,56271 -Nassau,MN,56272 -New London,MN,56273 -Norcross,MN,56274 -Odessa,MN,56276 -Olivia,MN,56277 -Ortonville,MN,56278 -Pennock,MN,56279 -Porter,MN,56280 -Prinsburg,MN,56281 -Raymond,MN,56282 -Delhi,MN,56283 -Renville,MN,56284 -Sacred Heart,MN,56285 -Saint Leo,MN,56286 -Seaforth,MN,56287 -Spicer,MN,56288 -Sunburg,MN,56289 -56290,MN,56290 -Taunton,MN,56291 -Vesta,MN,56292 -Wabasso,MN,56293 -Wanda,MN,56294 -Watson,MN,56295 -Wheaton,MN,56296 -Wood Lake,MN,56297 -Saint Cloud,MN,56301 -Saint Cloud,MN,56303 -Saint Cloud,MN,56304 -Albany,MN,56307 -Alexandria,MN,56308 -Ashby,MN,56309 -Avon,MN,56310 -Barrett,MN,56311 -Belgrade,MN,56312 -Bock,MN,56313 -Bowlus,MN,56314 -Brandon,MN,56315 -Brooten,MN,56316 -Burtrum,MN,56318 -Carlos,MN,56319 -Cold Spring,MN,56320 -Cyrus,MN,56323 -Dalton,MN,56324 -Evansville,MN,56326 -Farwell,MN,56327 -Flensburg,MN,56328 -Foley,MN,56329 -Foreston,MN,56330 -Freeport,MN,56331 -Garfield,MN,56332 -Gilman,MN,56333 -Glenwood,MN,56334 -Grey Eagle,MN,56336 -Hillman,MN,56338 -Hoffman,MN,56339 -Holdingford,MN,56340 -Holmes City,MN,56341 -Isle,MN,56342 -Kensington,MN,56343 -Little Falls,MN,56345 -Little Sauk,MN,56347 -Lowry,MN,56349 -Mc Grath,MN,56350 -Melrose,MN,56352 -Milaca,MN,56353 -Miltona,MN,56354 -Nelson,MN,56355 -Oak Park,MN,56357 -Ogilvie,MN,56358 -Onamia,MN,56359 -Osakis,MN,56360 -Parkers Prairie,MN,56361 -Paynesville,MN,56362 -Pease,MN,56363 -Pierz,MN,56364 -Rice,MN,56367 -Richmond,MN,56368 -Royalton,MN,56373 -Saint Joseph,MN,56374 -Saint Stephen,MN,56375 -Sartell,MN,56377 -Sauk Centre,MN,56378 -Sauk Rapids,MN,56379 -Sedan,MN,56380 -Starbuck,MN,56381 -Swanville,MN,56382 -Upsala,MN,56384 -Villard,MN,56385 -Wahkon,MN,56386 -Waite Park,MN,56387 -West Union,MN,56389 -East Gull Lake,MN,56401 -Aitkin,MN,56431 -Akeley,MN,56433 -Aldrich,MN,56434 -Backus,MN,56435 -Bertha,MN,56437 -Browerville,MN,56438 -Clarissa,MN,56440 -Crosby,MN,56441 -Crosslake,MN,56442 -Cushing,MN,56443 -Deerwood,MN,56444 -Eagle Bend,MN,56446 -Emily,MN,56447 -Fifty Lakes,MN,56448 -Fort Ripley,MN,56449 -Garrison,MN,56450 -Hackensack,MN,56452 -Hewitt,MN,56453 -Ironton,MN,56455 -Jenkins,MN,56456 -Lake George,MN,56458 -Lake Itasca,MN,56460 -Laporte,MN,56461 -Manhattan Beach,MN,56463 -Menahga,MN,56464 -Merrifield,MN,56465 -Leader,MN,56466 -Nevis,MN,56467 -Lake Shore,MN,56468 -Palisade,MN,56469 -Park Rapids,MN,56470 -Pequot Lakes,MN,56472 -Pillager,MN,56473 -Pine River,MN,56474 -Randall,MN,56475 -Sebeka,MN,56477 -Staples,MN,56479 -Verndale,MN,56481 -Wadena,MN,56482 -Walker,MN,56484 -Whipholt,MN,56485 -Detroit Lakes,MN,56501 -Lockhart,MN,56510 -Audubon,MN,56511 -Baker,MN,56513 -Downer,MN,56514 -Battle Lake,MN,56515 -Bejou,MN,56516 -Beltrami,MN,56517 -Bluffton,MN,56518 -Borup,MN,56519 -Breckenridge,MN,56520 -Callaway,MN,56521 -Doran,MN,56522 -Eldred,MN,56523 -Clitherall,MN,56524 -Comstock,MN,56525 -Deer Creek,MN,56527 -Dent,MN,56528 -Dilworth,MN,56529 -Elbow Lake,MN,56531 -Elizabeth,MN,56533 -Erhard,MN,56534 -Erskine,MN,56535 -Felton,MN,56536 -Carlisle,MN,56537 -Fertile,MN,56540 -Fosston,MN,56542 -Foxhome,MN,56543 -Frazee,MN,56544 -Gary,MN,56545 -Georgetown,MN,56546 -Glyndon,MN,56547 -Halstad,MN,56548 -Rollag,MN,56549 -Hendrum,MN,56550 -Henning,MN,56551 -Hitterdal,MN,56552 -Kent,MN,56553 -Lake Park,MN,56554 -Mcintosh,MN,56556 -Mahnomen,MN,56557 -Moorhead,MN,56560 -Nashua,MN,56565 -Naytahwaush,MN,56566 -New York Mills,MN,56567 -Nielsville,MN,56568 -Ogema,MN,56569 -Osage,MN,56570 -Ottertail,MN,56571 -Pelican Rapids,MN,56572 -Perham,MN,56573 -Perley,MN,56574 -Ponsford,MN,56575 -Richville,MN,56576 -Richwood,MN,56577 -Rochert,MN,56578 -Rothsay,MN,56579 -Sabin,MN,56580 -Shelly,MN,56581 -Tenney,MN,56583 -Twin Valley,MN,56584 -Ulen,MN,56585 -Underwood,MN,56586 -Vergas,MN,56587 -Vining,MN,56588 -Waubun,MN,56589 -Wendell,MN,56590 -Winger,MN,56592 -Wolf Lake,MN,56593 -Wolverton,MN,56594 -Bemidji,MN,56601 -Bagley,MN,56621 -Baudette,MN,56623 -56625,MN,56625 -Bena,MN,56626 -Big Falls,MN,56627 -Bigfork,MN,56628 -Birchdale,MN,56629 -Blackduck,MN,56630 -Boy River,MN,56632 -Cass Lake,MN,56633 -Clearbrook,MN,56634 -Deer River,MN,56636 -Talmoon,MN,56637 -Effie,MN,56639 -Federal Dam,MN,56641 -Gonvick,MN,56644 -Gully,MN,56646 -Hines,MN,56647 -International Fa,MN,56649 -Kelliher,MN,56650 -Lengby,MN,56651 -Leonard,MN,56652 -Littlefork,MN,56653 -Loman,MN,56654 -Longville,MN,56655 -Marcell,MN,56657 -Max,MN,56659 -Mizpah,MN,56660 -Northome,MN,56661 -Outing,MN,56662 -Pennington,MN,56663 -Pitt,MN,56665 -Ponemah,MN,56666 -Puposky,MN,56667 -Ranier,MN,56668 -Ray,MN,56669 -Redby,MN,56670 -Redlake,MN,56671 -Remer,MN,56672 -Roosevelt,MN,56673 -Saum,MN,56674 -Shevlin,MN,56676 -Solway,MN,56678 -Spring Lake,MN,56680 -Squaw Lake,MN,56681 -Swift,MN,56682 -Tenstrike,MN,56683 -Trail,MN,56684 -Waskish,MN,56685 -Williams,MN,56686 -Wilton,MN,56687 -Wirt,MN,56688 -Thief River Fall,MN,56701 -Alvarado,MN,56710 -Angle Inlet,MN,56711 -Angus,MN,56712 -Argyle,MN,56713 -Badger,MN,56714 -Brooks,MN,56715 -Crookston,MN,56716 -Donaldson,MN,56720 -East Grand Forks,MN,56721 -Euclid,MN,56722 -Fisher,MN,56723 -Gatzke,MN,56724 -Goodridge,MN,56725 -Greenbush,MN,56726 -Grygla,MN,56727 -Hallock,MN,56728 -Halma,MN,56729 -Karlstad,MN,56732 -Kennedy,MN,56733 -Lake Bronson,MN,56734 -Orleans,MN,56735 -Mentor,MN,56736 -Middle River,MN,56737 -Newfolden,MN,56738 -Noyes,MN,56740 -Oak Island,MN,56741 -Oklee,MN,56742 -Oslo,MN,56744 -Plummer,MN,56748 -Red Lake Falls,MN,56750 -Pencer,MN,56751 -Saint Hilaire,MN,56754 -Saint Vincent,MN,56755 -Salol,MN,56756 -Stephen,MN,56757 -Strandquist,MN,56758 -Strathcona,MN,56759 -Viking,MN,56760 -Wannaska,MN,56761 -Radium,MN,56762 -Warroad,MN,56763 -Abbeville,MS,38601 -Cannon,MS,38603 -Batesville,MS,38606 -Blue Mountain,MS,38610 -Byhalia,MS,38611 -Stovall,MS,38614 -Coahoma,MS,38617 -Coldwater,MS,38618 -Como,MS,38619 -Courtland,MS,38620 -Askew,MS,38621 -Dumas,MS,38625 -Dundee,MS,38626 -Etta,MS,38627 -Falkner,MS,38629 -Hernando,MS,38632 -Hickory Flat,MS,38633 -Holly Springs,MS,38635 -Horn Lake,MS,38637 -Lake Cormorant,MS,38641 -Lamar,MS,38642 -Lambert,MS,38643 -Lyon,MS,38645 -Marks,MS,38646 -Michigan City,MS,38647 -Myrtle,MS,38650 -Nesbit,MS,38651 -New Albany,MS,38652 -Olive Branch,MS,38654 -Lafayette,MS,38655 -Pleasant Grove,MS,38657 -Pope,MS,38658 -Potts Camp,MS,38659 -Red Banks,MS,38661 -Ripley,MS,38663 -Robinsonville,MS,38664 -Savage,MS,38665 -Sardis,MS,38666 -Senatobia,MS,38668 -Sledge,MS,38670 -Southaven,MS,38671 -Taylor,MS,38673 -Tiplersville,MS,38674 -Tunica,MS,38676 -University,MS,38677 -Walls,MS,38680 -Walnut,MS,38683 -Waterford,MS,38685 -Greenville,MS,38701 -Greenville,MS,38703 -Alligator,MS,38720 -Anguilla,MS,38721 -Benoit,MS,38725 -Beulah,MS,38726 -Boyle,MS,38730 -Cleveland,MS,38732 -Doddsville,MS,38736 -Drew,MS,38737 -Duncan,MS,38740 -Glen Allan,MS,38744 -Gunnison,MS,38746 -Percy,MS,38748 -Baird,MS,38751 -Inverness,MS,38753 -Isola,MS,38754 -Elizabeth,MS,38756 -Merigold,MS,38759 -Moorhead,MS,38761 -Mound Bayou,MS,38762 -Rosedale,MS,38769 -Ruleville,MS,38771 -Shaw,MS,38773 -Shelby,MS,38774 -Sunflower,MS,38778 -Wayside,MS,38780 -Tupelo,MS,38801 -Amory,MS,38821 -Baldwyn,MS,38824 -Belden,MS,38826 -Belmont,MS,38827 -Blue Springs,MS,38828 -Booneville,MS,38829 -Burnsville,MS,38833 -Kossuth,MS,38834 -Dennis,MS,38838 -Ecru,MS,38841 -Fulton,MS,38843 -Gattman,MS,38844 -Glen,MS,38846 -Golden,MS,38847 -Greenwood Spring,MS,38848 -Guntown,MS,38849 -Houlka,MS,38850 -Houston,MS,38851 -Iuka,MS,38852 -Mantachie,MS,38855 -Marietta,MS,38856 -Mooreville,MS,38857 -Nettleton,MS,38858 -New Site,MS,38859 -Egypt,MS,38860 -Plantersville,MS,38862 -Pontotoc,MS,38863 -Sarepta,MS,38864 -Rienzi,MS,38865 -Saltillo,MS,38866 -Shannon,MS,38868 -Smithville,MS,38870 -Thaxton,MS,38871 -Tishomingo,MS,38873 -Tremont,MS,38876 -Vardaman,MS,38878 -Grenada,MS,38901 -Avalon,MS,38912 -Banner,MS,38913 -Big Creek,MS,38914 -Bruce,MS,38915 -Calhoun City,MS,38916 -Carrollton,MS,38917 -Cascilla,MS,38920 -Charleston,MS,38921 -Coffeeville,MS,38922 -Coila,MS,38923 -Cruger,MS,38924 -Duck Hill,MS,38925 -Enid,MS,38927 -Gore Springs,MS,38929 -Greenwood,MS,38930 -Holcomb,MS,38940 -Itta Bena,MS,38941 -Mc Carley,MS,38943 -Minter City,MS,38944 -Oakland,MS,38948 -Water Valley,MS,38949 -Philipp,MS,38950 -Pittsboro,MS,38951 -Schlater,MS,38952 -Scobey,MS,38953 -Sidon,MS,38954 -Tillatoba,MS,38961 -Tutwiler,MS,38963 -Vance,MS,38964 -Water Valley,MS,38965 -Winona,MS,38967 -Belzoni,MS,39038 -Benton,MS,39039 -Bentonia,MS,39040 -Bolton,MS,39041 -Brandon,MS,39042 -Braxton,MS,39044 -Camden,MS,39045 -Canton,MS,39046 -Carlisle,MS,39049 -Edinburg,MS,39051 -Church Hill,MS,39055 -Clinton,MS,39056 -Conehatta,MS,39057 -Crystal Springs,MS,39059 -Durant,MS,39063 -Edwards,MS,39066 -Ethel,MS,39067 -Fayette,MS,39069 -Flora,MS,39071 -Florence,MS,39073 -Forest,MS,39074 -Georgetown,MS,39078 -Goodman,MS,39079 -Harrisville,MS,39082 -Hazlehurst,MS,39083 -Hermanville,MS,39086 -Holly Bluff,MS,39088 -Kosciusko,MS,39090 -Lake,MS,39092 -Lena,MS,39094 -Lexington,MS,39095 -Lorman,MS,39096 -Louise,MS,39097 -Mc Cool,MS,39108 -Madden,MS,39109 -Madison,MS,39110 -Magee,MS,39111 -Mayersville,MS,39113 -Mendenhall,MS,39114 -Mize,MS,39116 -Morton,MS,39117 -Mount Olive,MS,39119 -Natchez,MS,39120 -Newhebron,MS,39140 -Pattison,MS,39144 -Pelahatchie,MS,39145 -Pickens,MS,39146 -Pinola,MS,39149 -Port Gibson,MS,39150 -Pulaski,MS,39152 -Raleigh,MS,39153 -Learned,MS,39154 -Redwood,MS,39156 -Ridgeland,MS,39157 -Rolling Fork,MS,39159 -Sallis,MS,39160 -Satartia,MS,39162 -Silver City,MS,39166 -Taylorsville,MS,39168 -Tchula,MS,39169 -Terry,MS,39170 -Utica,MS,39175 -Vaiden,MS,39176 -Valley Park,MS,39177 -Pickens,MS,39179 -Vicksburg,MS,39180 -Walnut Grove,MS,39189 -Wesson,MS,39191 -West,MS,39192 -Yazoo City,MS,39194 -Jackson,MS,39201 -Jackson,MS,39202 -Jackson,MS,39203 -Jackson,MS,39204 -Jackson,MS,39206 -Pearl,MS,39208 -Jackson,MS,39209 -Jackson,MS,39211 -Jackson,MS,39212 -Jackson,MS,39213 -Jackson,MS,39216 -Richland,MS,39218 -Jackson,MS,39269 -Meridian,MS,39301 -Meridian,MS,39305 -Meridian,MS,39307 -Bailey,MS,39320 -Buckatunna,MS,39322 -Chunky,MS,39323 -Collinsville,MS,39325 -Daleville,MS,39326 -Decatur,MS,39327 -De Kalb,MS,39328 -Enterprise,MS,39330 -Hickory,MS,39332 -Lauderdale,MS,39335 -Lawrence,MS,39336 -Little Rock,MS,39337 -Louin,MS,39338 -Louisville,MS,39339 -Macon,MS,39341 -Newton,MS,39345 -Noxapater,MS,39346 -Pachuta,MS,39347 -Paulding,MS,39348 -Philadelphia,MS,39350 -Porterville,MS,39352 -Preston,MS,39354 -Quitman,MS,39355 -Rose Hill,MS,39356 -Scooba,MS,39358 -Matherville,MS,39360 -Shuqualak,MS,39361 -State Line,MS,39362 -Stonewall,MS,39363 -Toomsuba,MS,39364 -Union,MS,39365 -Vossburg,MS,39366 -Waynesboro,MS,39367 -Hattiesburg,MS,39401 -Hattiesburg,MS,39402 -Bassfield,MS,39421 -Bay Springs,MS,39422 -Beaumont,MS,39423 -Brooklyn,MS,39425 -Carriere,MS,39426 -Carson,MS,39427 -Collins,MS,39428 -Columbia,MS,39429 -Ellisville,MS,39437 -Heidelberg,MS,39439 -Laurel,MS,39440 -Leakesville,MS,39451 -Agricola,MS,39452 -Lumberton,MS,39455 -Leaf,MS,39456 -Moselle,MS,39459 -Neely,MS,39461 -New Augusta,MS,39462 -Ovett,MS,39464 -Petal,MS,39465 -Picayune,MS,39466 -Poplarville,MS,39470 -Prentiss,MS,39474 -Purvis,MS,39475 -Richton,MS,39476 -Sandy Hook,MS,39478 -Seminary,MS,39479 -Soso,MS,39480 -Stringer,MS,39481 -Sumrall,MS,39482 -Foxworth,MS,39483 -Gulfport,MS,39501 -Gulfport,MS,39503 -Gulfport,MS,39507 -Diamondhead,MS,39520 -Biloxi,MS,39530 -Biloxi,MS,39531 -North Bay,MS,39532 -Gautier,MS,39553 -Long Beach,MS,39560 -Mc Henry,MS,39561 -Kreole,MS,39563 -Ocean Springs,MS,39564 -Pascagoula,MS,39567 -Pass Christian,MS,39571 -Perkinston,MS,39573 -Saucier,MS,39574 -Waveland,MS,39576 -Wiggins,MS,39577 -Pascagoula,MS,39581 -Brookhaven,MS,39601 -Bogue Chitto,MS,39629 -Centreville,MS,39631 -Crosby,MS,39633 -Gloster,MS,39638 -Jayess,MS,39641 -Kokomo,MS,39643 -Liberty,MS,39645 -Mc Call Creek,MS,39647 -Mc Comb,MS,39648 -Magnolia,MS,39652 -Meadville,MS,39653 -Monticello,MS,39654 -Oak Vale,MS,39656 -Osyka,MS,39657 -Roxie,MS,39661 -Ruth,MS,39662 -Silver Creek,MS,39663 -Smithdale,MS,39664 -Sontag,MS,39665 -Summit,MS,39666 -Tylertown,MS,39667 -Union Church,MS,39668 -Woodville,MS,39669 -Columbus,MS,39701 -Columbus,MS,39702 -Aberdeen,MS,39730 -Ackerman,MS,39735 -Brooksville,MS,39739 -Caledonia,MS,39740 -Cedarbluff,MS,39741 -Crawford,MS,39743 -Tomnolen,MS,39744 -French Camp,MS,39745 -Hamilton,MS,39746 -Kilmichael,MS,39747 -Maben,MS,39750 -Mantee,MS,39751 -Mathiston,MS,39752 -Pheba,MS,39755 -Prairie,MS,39756 -Sessums,MS,39759 -Steens,MS,39766 -Stewart,MS,39767 -Sturgis,MS,39769 -Weir,MS,39772 -West Point,MS,39773 -Woodland,MS,39776 -Chesterfield,MO,63005 -Arnold,MO,63010 -Manchester,MO,63011 -Barnhart,MO,63012 -Beaufort,MO,63013 -Berger,MO,63014 -Catawissa,MO,63015 -Cedar Hill,MO,63016 -Town And Country,MO,63017 -Crystal City,MO,63019 -De Soto,MO,63020 -Ballwin,MO,63021 -Dittmer,MO,63023 -Crescent,MO,63025 -Fenton,MO,63026 -Festus,MO,63028 -Fletcher,MO,63030 -Florissant,MO,63031 -Florissant,MO,63033 -Florissant,MO,63034 -French Village,MO,63036 -Gerald,MO,63037 -Glencoe,MO,63038 -Gray Summit,MO,63039 -Grover,MO,63040 -Hazelwood,MO,63042 -Maryland Heights,MO,63043 -Bridgeton,MO,63044 -Bridgeton,MO,63045 -Herculaneum,MO,63048 -High Ridge,MO,63049 -Hillsboro,MO,63050 -House Springs,MO,63051 -Antonia,MO,63052 -Labadie,MO,63055 -Leslie,MO,63056 -Lonedell,MO,63060 -Luebbering,MO,63061 -New Haven,MO,63068 -Pacific,MO,63069 -Pevely,MO,63070 -Richwoods,MO,63071 -Robertsville,MO,63072 -Saint Ann,MO,63074 -Saint Clair,MO,63077 -Sullivan,MO,63080 -Union,MO,63084 -Valley Park,MO,63088 -Villa Ridge,MO,63089 -Washington,MO,63090 -Rosebud,MO,63091 -Saint Louis,MO,63101 -Saint Louis,MO,63102 -Saint Louis,MO,63103 -Saint Louis,MO,63104 -Clayton,MO,63105 -Saint Louis,MO,63106 -Saint Louis,MO,63107 -Saint Louis,MO,63108 -Saint Louis,MO,63109 -Saint Louis,MO,63110 -Saint Louis,MO,63111 -Saint Louis,MO,63112 -Saint Louis,MO,63113 -Overland,MO,63114 -Saint Louis,MO,63115 -Saint Louis,MO,63116 -Richmond Heights,MO,63117 -Saint Louis,MO,63118 -Webster Groves,MO,63119 -Saint Louis,MO,63120 -Normandy,MO,63121 -Kirkwood,MO,63122 -Affton,MO,63123 -Ladue,MO,63124 -Lemay,MO,63125 -Sappington,MO,63126 -Sappington,MO,63127 -Sappington,MO,63128 -South County,MO,63129 -University City,MO,63130 -Des Peres,MO,63131 -Olivette,MO,63132 -Saint Louis,MO,63133 -Berkeley,MO,63134 -Ferguson,MO,63135 -Jennings,MO,63136 -North County,MO,63137 -North County,MO,63138 -Saint Louis,MO,63139 -Berkeley,MO,63140 -Creve Coeur,MO,63141 -Maplewood,MO,63143 -Brentwood,MO,63144 -West County,MO,63146 -Saint Louis,MO,63147 -Saint Charles,MO,63301 -Saint Charles,MO,63303 -Saint Charles,MO,63304 -Annada,MO,63330 -Augusta,MO,63332 -Bellflower,MO,63333 -Bowling Green,MO,63334 -Clarksville,MO,63336 -Curryville,MO,63339 -Defiance,MO,63341 -Elsberry,MO,63343 -Eolia,MO,63344 -Farber,MO,63345 -Foley,MO,63347 -Foristell,MO,63348 -Hawk Point,MO,63349 -High Hill,MO,63350 -Jonesburg,MO,63351 -Laddonia,MO,63352 -Louisiana,MO,63353 -Lake Sherwood,MO,63357 -Middletown,MO,63359 -Montgomery City,MO,63361 -Moscow Mills,MO,63362 -New Florence,MO,63363 -New Hartford,MO,63364 -Saint Paul,MO,63366 -Lake Saint Louis,MO,63367 -Old Monroe,MO,63369 -Olney,MO,63370 -Paynesville,MO,63371 -Portage Des Siou,MO,63373 -Saint Peters,MO,63376 -Silex,MO,63377 -Troy,MO,63379 -Truxton,MO,63381 -Vandalia,MO,63382 -Warrenton,MO,63383 -Wellsville,MO,63384 -Wentzville,MO,63385 -West Alton,MO,63386 -Williamsburg,MO,63388 -Winfield,MO,63389 -Wright City,MO,63390 -Hannibal,MO,63401 -Alexandria,MO,63430 -Anabel,MO,63431 -Arbela,MO,63432 -Ashburn,MO,63433 -Bethel,MO,63434 -Canton,MO,63435 -Center,MO,63436 -Clarence,MO,63437 -Durham,MO,63438 -Emden,MO,63439 -Ewing,MO,63440 -Frankford,MO,63441 -Hunnewell,MO,63443 -Kahoka,MO,63445 -Knox City,MO,63446 -La Belle,MO,63447 -La Grange,MO,63448 -Lentner,MO,63450 -Leonard,MO,63451 -Lewistown,MO,63452 -Luray,MO,63453 -Maywood,MO,63454 -Monroe City,MO,63456 -Monticello,MO,63457 -Newark,MO,63458 -New London,MO,63459 -Novelty,MO,63460 -Palmyra,MO,63461 -Perry,MO,63462 -Philadelphia,MO,63463 -Plevna,MO,63464 -Saint Patrick,MO,63466 -Shelbina,MO,63468 -Shelbyville,MO,63469 -Steffenville,MO,63470 -Taylor,MO,63471 -Wayland,MO,63472 -Williamstown,MO,63473 -Wyaconda,MO,63474 -Kirksville,MO,63501 -Atlanta,MO,63530 -Baring,MO,63531 -Bevier,MO,63532 -Brashear,MO,63533 -Callao,MO,63534 -Coatsville,MO,63535 -Downing,MO,63536 -Edina,MO,63537 -Elmer,MO,63538 -Ethel,MO,63539 -Gibbs,MO,63540 -Glenwood,MO,63541 -Gorin,MO,63543 -Green Castle,MO,63544 -Green City,MO,63545 -Greentop,MO,63546 -Hurdland,MO,63547 -Lancaster,MO,63548 -La Plata,MO,63549 -Livonia,MO,63551 -Macon,MO,63552 -Memphis,MO,63555 -Milan,MO,63556 -New Boston,MO,63557 -New Cambria,MO,63558 -Novinger,MO,63559 -Pollock,MO,63560 -Queen City,MO,63561 -Rutledge,MO,63563 -Unionville,MO,63565 -Winigan,MO,63566 -Worthington,MO,63567 -Desloge,MO,63601 -Annapolis,MO,63620 -Arcadia,MO,63621 -Belgrade,MO,63622 -Belleview,MO,63623 -Desloge,MO,63624 -Black,MO,63625 -Blackwell,MO,63626 -Bloomsdale,MO,63627 -Bonne Terre,MO,63628 -Bunker,MO,63629 -Cadet,MO,63630 -Caledonia,MO,63631 -Centerville,MO,63633 -Des Arc,MO,63636 -Doe Run,MO,63637 -Ellington,MO,63638 -Farmington,MO,63640 -Millcreek,MO,63645 -Irondale,MO,63648 -Iron Mountain,MO,63650 -Leadwood,MO,63653 -Lesterville,MO,63654 -Marquand,MO,63655 -Middle Brook,MO,63656 -Mineral Point,MO,63660 -Patton,MO,63662 -Potosi,MO,63664 -Redford,MO,63665 -Lake Forest Esta,MO,63670 -Saint Mary,MO,63673 -Vulcan,MO,63675 -Cape Girardeau,MO,63701 -Advance,MO,63730 -New Wells,MO,63732 -Arab,MO,63733 -Bell City,MO,63735 -Benton,MO,63736 -Burfordville,MO,63739 -Chaffee,MO,63740 -Daisy,MO,63743 -Delta,MO,63744 -Friedheim,MO,63747 -Frohna,MO,63748 -Gipsy,MO,63750 -Glenallen,MO,63751 -Grassy,MO,63753 -Jackson,MO,63755 -Leopold,MO,63760 -Mc Gee,MO,63763 -Scopus,MO,63764 -Millersville,MO,63766 -63768,MO,63768 -Oak Ridge,MO,63769 -Old Appleton,MO,63770 -Oran,MO,63771 -Perryville,MO,63775 -Scott City,MO,63780 -Sedgewickville,MO,63781 -Sturdivant,MO,63782 -Uniontown,MO,63783 -Whitewater,MO,63785 -Wittenberg,MO,63786 -Zalma,MO,63787 -Sikeston,MO,63801 -Arbyrd,MO,63821 -Bernie,MO,63822 -Bertrand,MO,63823 -Bloomfield,MO,63825 -Bragg City,MO,63827 -Cardwell,MO,63829 -Caruthersville,MO,63830 -Catron,MO,63833 -Charleston,MO,63834 -Clarkton,MO,63837 -Dexter,MO,63841 -East Prairie,MO,63845 -Essex,MO,63846 -Gideon,MO,63848 -Gobler,MO,63849 -Hayti Heights,MO,63851 -Holcomb,MO,63852 -Hornersville,MO,63855 -Kennett,MO,63857 -Lilbourn,MO,63862 -Malden,MO,63863 -Marston,MO,63866 -Matthews,MO,63867 -Morehouse,MO,63868 -New Madrid,MO,63869 -Parma,MO,63870 -Portageville,MO,63873 -Senath,MO,63876 -Steele,MO,63877 -Homestown,MO,63879 -Poplar Bluff,MO,63901 -Briar,MO,63931 -Broseley,MO,63932 -Campbell,MO,63933 -Clubb,MO,63934 -Poynor,MO,63935 -Dudley,MO,63936 -Ellsinore,MO,63937 -Fairdealing,MO,63939 -Fisk,MO,63940 -Fremont,MO,63941 -Gatewood,MO,63942 -Grandin,MO,63943 -Greenville,MO,63944 -Harviell,MO,63945 -Hiram,MO,63947 -Lodi,MO,63950 -Lowndes,MO,63951 -Mill Spring,MO,63952 -Naylor,MO,63953 -Neelyville,MO,63954 -Oxly,MO,63955 -Patterson,MO,63956 -Piedmont,MO,63957 -63959,MO,63959 -Puxico,MO,63960 -Qulin,MO,63961 -Shook,MO,63963 -Silva,MO,63964 -Van Buren,MO,63965 -Wappapello,MO,63966 -Williamsville,MO,63967 -Alma,MO,64001 -Bates City,MO,64011 -Belton,MO,64012 -Blue Springs,MO,64014 -Lake Tapawingo,MO,64015 -Buckner,MO,64016 -Camden,MO,64017 -Camden Point,MO,64018 -Centerview,MO,64019 -Concordia,MO,64020 -Corder,MO,64021 -Dover,MO,64022 -Excelsior Spring,MO,64024 -Grain Valley,MO,64029 -Grandview,MO,64030 -Lake Winnebago,MO,64034 -Hardin,MO,64035 -Henrietta,MO,64036 -Higginsville,MO,64037 -Holden,MO,64040 -Holt,MO,64048 -Independence,MO,64050 -Independence,MO,64052 -Independence,MO,64053 -Sugar Creek,MO,64054 -Independence,MO,64055 -Independence,MO,64056 -Independence,MO,64057 -Independence,MO,64058 -Kearney,MO,64060 -Kingsville,MO,64061 -Lawson,MO,64062 -Lake Lotawana,MO,64063 -Lees Summit,MO,64064 -Lexington,MO,64067 -Pleasant Valley,MO,64068 -Lone Jack,MO,64070 -Mayview,MO,64071 -Napoleon,MO,64074 -Oak Grove,MO,64075 -Odessa,MO,64076 -Orrick,MO,64077 -Peculiar,MO,64078 -Platte City,MO,64079 -Pleasant Hill,MO,64080 -Lees Summit,MO,64081 -Lees Summit,MO,64082 -Raymore,MO,64083 -Rayville,MO,64084 -Richmond,MO,64085 -Sibley,MO,64088 -Smithville,MO,64089 -Warrensburg,MO,64093 -Waverly,MO,64096 -Wellington,MO,64097 -Weston,MO,64098 -Kansas City,MO,64101 -Kansas City,MO,64102 -Kansas City,MO,64105 -Kansas City,MO,64106 -Kansas City,MO,64108 -Kansas City,MO,64109 -Kansas City,MO,64110 -Kansas City,MO,64111 -Kansas City,MO,64112 -Kansas City,MO,64113 -Kansas City,MO,64114 -North Kansas Cit,MO,64116 -Randolph,MO,64117 -Gladstone,MO,64118 -Kansas City,MO,64119 -Kansas City,MO,64120 -Kansas City,MO,64123 -Kansas City,MO,64124 -Kansas City,MO,64125 -Kansas City,MO,64126 -Kansas City,MO,64127 -Kansas City,MO,64128 -Kansas City,MO,64129 -Kansas City,MO,64130 -Kansas City,MO,64131 -Kansas City,MO,64132 -Raytown,MO,64133 -Kansas City,MO,64134 -Kansas City,MO,64136 -Kansas City,MO,64137 -Raytown,MO,64138 -Kansas City,MO,64139 -Kansas City,MO,64145 -Kansas City,MO,64146 -Martin City,MO,64147 -Kansas City,MO,64149 -Kansas City,MO,64150 -Lake Waukomis,MO,64151 -Parkville,MO,64152 -Kansas City,MO,64153 -Kansas City,MO,64154 -Kansas City,MO,64155 -Kansas City,MO,64156 -Kansas City,MO,64157 -Kansas City,MO,64158 -Randolph,MO,64161 -Ferrelview,MO,64163 -Kansas City,MO,64164 -Kansas City,MO,64165 -Kansas City,MO,64166 -Kansas City,MO,64167 -Agency,MO,64401 -Albany,MO,64402 -Amazonia,MO,64421 -Amity,MO,64422 -Barnard,MO,64423 -Bethany,MO,64424 -64425,MO,64425 -Blythedale,MO,64426 -Bolckow,MO,64427 -Burlington Junct,MO,64428 -Cameron,MO,64429 -Clarksdale,MO,64430 -Clearmont,MO,64431 -Clyde,MO,64432 -Conception,MO,64433 -Conception Junct,MO,64434 -Corning,MO,64435 -Cosby,MO,64436 -Bigelow,MO,64437 -Darlington,MO,64438 -Dearborn,MO,64439 -De Kalb,MO,64440 -Denver,MO,64441 -Eagleville,MO,64442 -Easton,MO,64443 -Edgerton,MO,64444 -Elmo,MO,64445 -Fairfax,MO,64446 -Faucett,MO,64448 -Fillmore,MO,64449 -Forest City,MO,64451 -Fortescue,MO,64452 -Gentry,MO,64453 -Gower,MO,64454 -Graham,MO,64455 -Grant City,MO,64456 -Guilford,MO,64457 -Hatfield,MO,64458 -Helena,MO,64459 -Hopkins,MO,64461 -King City,MO,64463 -Lathrop,MO,64465 -Maitland,MO,64466 -Martinsville,MO,64467 -Maryville,MO,64468 -Maysville,MO,64469 -Mound City,MO,64470 -New Hampton,MO,64471 -Oregon,MO,64473 -Osborn,MO,64474 -Parnell,MO,64475 -Pickering,MO,64476 -Plattsburg,MO,64477 -Quitman,MO,64478 -Ravenwood,MO,64479 -Rea,MO,64480 -Ridgeway,MO,64481 -Rock Port,MO,64482 -Rosendale,MO,64483 -Rushville,MO,64484 -Savannah,MO,64485 -Sheridan,MO,64486 -Skidmore,MO,64487 -Stanberry,MO,64489 -Hemple,MO,64490 -Tarkio,MO,64491 -Trimble,MO,64492 -Turney,MO,64493 -Union Star,MO,64494 -Watson,MO,64496 -Weatherby,MO,64497 -Westboro,MO,64498 -Worth,MO,64499 -Saint Joseph,MO,64501 -Saint Joseph,MO,64503 -Saint Joseph,MO,64504 -Saint Joseph,MO,64505 -Saint Joseph,MO,64506 -Saint Joseph,MO,64507 -Chillicothe,MO,64601 -Altamont,MO,64620 -Avalon,MO,64621 -Bogard,MO,64622 -Bosworth,MO,64623 -Braymer,MO,64624 -Breckenridge,MO,64625 -Brookfield,MO,64628 -Browning,MO,64630 -Bucklin,MO,64631 -Cainsville,MO,64632 -Carrollton,MO,64633 -Chula,MO,64635 -Coffey,MO,64636 -Cowgill,MO,64637 -Dawn,MO,64638 -De Witt,MO,64639 -Gallatin,MO,64640 -Galt,MO,64641 -Gilman City,MO,64642 -Hale,MO,64643 -Hamilton,MO,64644 -Harris,MO,64645 -Humphreys,MO,64646 -Jameson,MO,64647 -Jamesport,MO,64648 -Kidder,MO,64649 -Kingston,MO,64650 -Laclede,MO,64651 -Laredo,MO,64652 -Linneus,MO,64653 -Lock Springs,MO,64654 -Lucerne,MO,64655 -Ludlow,MO,64656 -Mc Fall,MO,64657 -Marceline,MO,64658 -Meadville,MO,64659 -Mendon,MO,64660 -Mercer,MO,64661 -Mooresville,MO,64664 -Mount Moriah,MO,64665 -Newtown,MO,64667 -Norborne,MO,64668 -Pattonsburg,MO,64670 -Polo,MO,64671 -Powersville,MO,64672 -Princeton,MO,64673 -Purdin,MO,64674 -Rothville,MO,64676 -Saint Catharine,MO,64677 -Spickard,MO,64679 -Sumner,MO,64681 -Tina,MO,64682 -Trenton,MO,64683 -Utica,MO,64686 -Wheeling,MO,64688 -Winston,MO,64689 -Harrisonville,MO,64701 -Adrian,MO,64720 -Amoret,MO,64722 -Amsterdam,MO,64723 -Appleton City,MO,64724 -Archie,MO,64725 -Blairstown,MO,64726 -Bronaugh,MO,64728 -Butler,MO,64730 -Chilhowee,MO,64733 -Cleveland,MO,64734 -Tightwad,MO,64735 -Collins,MO,64738 -Creighton,MO,64739 -Deepwater,MO,64740 -Deerfield,MO,64741 -Drexel,MO,64742 -El Dorado Spring,MO,64744 -Foster,MO,64745 -Freeman,MO,64746 -Garden City,MO,64747 -Golden City,MO,64748 -Harwood,MO,64750 -Horton,MO,64751 -Stotesbury,MO,64752 -Jasper,MO,64755 -Jerico Springs,MO,64756 -Iantha,MO,64759 -Latour,MO,64760 -Leeton,MO,64761 -Liberal,MO,64762 -Lowry City,MO,64763 -Milo,MO,64767 -Mindenmines,MO,64769 -Montrose,MO,64770 -Moundville,MO,64771 -Nevada,MO,64772 -Osceola,MO,64776 -Richards,MO,64778 -Rich Hill,MO,64779 -Rockville,MO,64780 -Schell City,MO,64783 -Sheldon,MO,64784 -Urich,MO,64788 -Walker,MO,64790 -Joplin,MO,64801 -Joplin,MO,64804 -Anderson,MO,64831 -Asbury,MO,64832 -Avilla,MO,64833 -Carl Junction,MO,64834 -Carterville,MO,64835 -Carthage,MO,64836 -Diamond,MO,64840 -Fairview,MO,64842 -Goodman,MO,64843 -Granby,MO,64844 -Lanagan,MO,64847 -La Russell,MO,64848 -Neosho,MO,64850 -Noel,MO,64854 -Oronogo,MO,64855 -Jane,MO,64856 -Reeds,MO,64859 -Rocky Comfort,MO,64861 -Sarcoxie,MO,64862 -South West City,MO,64863 -Seneca,MO,64865 -Stark City,MO,64866 -Stella,MO,64867 -Tiff City,MO,64868 -Webb City,MO,64870 -Wentworth,MO,64873 -Wheaton,MO,64874 -Argyle,MO,65001 -Ashland,MO,65010 -Barnett,MO,65011 -Belle,MO,65013 -Bland,MO,65014 -Bonnots Mill,MO,65016 -Brumley,MO,65017 -California,MO,65018 -Camdenton,MO,65020 -Centertown,MO,65023 -Chamois,MO,65024 -Clarksburg,MO,65025 -Eldon,MO,65026 -Eugene,MO,65032 -Fortuna,MO,65034 -Freeburg,MO,65035 -Gravois Mills,MO,65037 -Hartsburg,MO,65039 -Henley,MO,65040 -Bay,MO,65041 -High Point,MO,65042 -Holts Summit,MO,65043 -Jamestown,MO,65046 -Kaiser,MO,65047 -Koeltztown,MO,65048 -Four Seasons,MO,65049 -Latham,MO,65050 -Linn,MO,65051 -Linn Creek,MO,65052 -Lohman,MO,65053 -Loose Creek,MO,65054 -Meta,MO,65058 -Mokane,MO,65059 -Morrison,MO,65061 -Mount Sterling,MO,65062 -New Bloomfield,MO,65063 -Olean,MO,65064 -Osage Beach,MO,65065 -Owensville,MO,65066 -Portland,MO,65067 -Prairie Home,MO,65068 -Rhineland,MO,65069 -Rocky Mount,MO,65072 -Russellville,MO,65074 -Saint Elizabeth,MO,65075 -Saint Thomas,MO,65076 -Steedman,MO,65077 -Stover,MO,65078 -Sunrise Beach,MO,65079 -Tebbetts,MO,65080 -Tipton,MO,65081 -Tuscumbia,MO,65082 -Ulman,MO,65083 -Versailles,MO,65084 -Westphalia,MO,65085 -Jefferson City,MO,65101 -Jefferson City,MO,65109 -Columbia,MO,65201 -Columbia,MO,65202 -Columbia,MO,65203 -Armstrong,MO,65230 -Auxvasse,MO,65231 -Benton City,MO,65232 -Boonville,MO,65233 -Brunswick,MO,65236 -Bunceton,MO,65237 -Cairo,MO,65239 -Centralia,MO,65240 -Clark,MO,65243 -Clifton Hill,MO,65244 -Dalton,MO,65246 -Excello,MO,65247 -Fayette,MO,65248 -Franklin,MO,65250 -Fulton,MO,65251 -Glasgow,MO,65254 -Hallsville,MO,65255 -Harrisburg,MO,65256 -Higbee,MO,65257 -Holliday,MO,65258 -Huntsville,MO,65259 -Jacksonville,MO,65260 -Keytesville,MO,65261 -Kingdom City,MO,65262 -Madison,MO,65263 -Martinsburg,MO,65264 -Mexico,MO,65265 -Moberly,MO,65270 -New Franklin,MO,65274 -Paris,MO,65275 -Pilot Grove,MO,65276 -Rocheport,MO,65279 -Rush Hill,MO,65280 -Salisbury,MO,65281 -Santa Fe,MO,65282 -Stoutsville,MO,65283 -Sturgeon,MO,65284 -Thompson,MO,65285 -Triplett,MO,65286 -Wooldridge,MO,65287 -Sedalia,MO,65301 -Whiteman Afb,MO,65305 -Blackburn,MO,65321 -Blackwater,MO,65322 -Calhoun,MO,65323 -Climax Springs,MO,65324 -Cole Camp,MO,65325 -Edwards,MO,65326 -Florence,MO,65329 -Gilliam,MO,65330 -Green Ridge,MO,65332 -Houstonia,MO,65333 -Hughesville,MO,65334 -Ionia,MO,65335 -Knob Noster,MO,65336 -La Monte,MO,65337 -Lincoln,MO,65338 -Grand Pass,MO,65339 -Napton,MO,65340 -Miami,MO,65344 -Mora,MO,65345 -Nelson,MO,65347 -Otterville,MO,65348 -Slater,MO,65349 -Smithton,MO,65350 -Sweet Springs,MO,65351 -Syracuse,MO,65354 -Warsaw,MO,65355 -Windsor,MO,65360 -Rolla,MO,65401 -Bendavis,MO,65433 -Beulah,MO,65436 -Birch Tree,MO,65438 -Bixby,MO,65439 -Boss,MO,65440 -Bourbon,MO,65441 -Brinktown,MO,65443 -Bucyrus,MO,65444 -Cherryville,MO,65446 -Cook Station,MO,65449 -65451,MO,65451 -Crocker,MO,65452 -Cuba,MO,65453 -Davisville,MO,65456 -Devils Elbow,MO,65457 -Dixon,MO,65459 -Duke,MO,65461 -Edgar Springs,MO,65462 -Eldridge,MO,65463 -Elk Creek,MO,65464 -Eminence,MO,65466 -Eunice,MO,65468 -Falcon,MO,65470 -Fort Leonard Woo,MO,65473 -Hartshorn,MO,65479 -Houston,MO,65483 -Huggins,MO,65484 -Iberia,MO,65486 -Jadwin,MO,65501 -Jerome,MO,65529 -Laquey,MO,65534 -Leasburg,MO,65535 -Lebanon,MO,65536 -Anutt,MO,65540 -Lenox,MO,65541 -Licking,MO,65542 -Lynchburg,MO,65543 -Mountain View,MO,65548 -Newburg,MO,65550 -Plato,MO,65552 -Raymondville,MO,65555 -Richland,MO,65556 -Roby,MO,65557 -Saint James,MO,65559 -Salem,MO,65560 -Solo,MO,65564 -Berryman,MO,65565 -Viburnum,MO,65566 -Stoutland,MO,65567 -Success,MO,65570 -Summersville,MO,65571 -Teresita,MO,65573 -Vichy,MO,65580 -Vienna,MO,65582 -Saint Robert,MO,65583 -Wesco,MO,65586 -Winona,MO,65588 -Yukon,MO,65589 -Long Lane,MO,65590 -Montreal,MO,65591 -Aldrich,MO,65601 -Arcola,MO,65603 -Ash Grove,MO,65604 -Jenkins,MO,65605 -Riverton,MO,65606 -Ava,MO,65608 -Bakersfield,MO,65609 -Billings,MO,65610 -Blue Eye,MO,65611 -Bois D Arc,MO,65612 -Bolivar,MO,65613 -Bradleyville,MO,65614 -Marvel Cave Park,MO,65616 -Brighton,MO,65617 -Brixey,MO,65618 -Brookline Statio,MO,65619 -Bruner,MO,65620 -Buffalo,MO,65622 -Butterfield,MO,65623 -Cape Fair,MO,65624 -Cassville,MO,65625 -Caulfield,MO,65626 -Cedarcreek,MO,65627 -Chadwick,MO,65629 -Chestnutridge,MO,65630 -Clever,MO,65631 -Conway,MO,65632 -Crane,MO,65633 -Cross Timbers,MO,65634 -Dadeville,MO,65635 -Dora,MO,65637 -Drury,MO,65638 -Dunnegan,MO,65640 -Eagle Rock,MO,65641 -Elkland,MO,65644 -Everton,MO,65646 -Exeter,MO,65647 -Fair Grove,MO,65648 -Fair Play,MO,65649 -Flemington,MO,65650 -Fordland,MO,65652 -Forsyth,MO,65653 -Freistatt,MO,65654 -Gainesville,MO,65655 -Galena,MO,65656 -Garrison,MO,65657 -Golden,MO,65658 -Goodson,MO,65659 -Graff,MO,65660 -Greenfield,MO,65661 -Grovespring,MO,65662 -Half Way,MO,65663 -Hardenville,MO,65666 -Hartville,MO,65667 -Hermitage,MO,65668 -Highlandville,MO,65669 -Hollister,MO,65672 -Humansville,MO,65674 -Hurley,MO,65675 -Isabella,MO,65676 -Kirbyville,MO,65679 -Kissee Mills,MO,65680 -Lampe,MO,65681 -Lockwood,MO,65682 -Louisburg,MO,65685 -Kimberling City,MO,65686 -Brandsville,MO,65688 -Cabool,MO,65689 -Couch,MO,65690 -Koshkonong,MO,65692 -Mc Clurg,MO,65701 -Macomb,MO,65702 -Mansfield,MO,65704 -Marionville,MO,65705 -Marshfield,MO,65706 -Miller,MO,65707 -Monett,MO,65708 -Morrisville,MO,65710 -Mountain Grove,MO,65711 -Mount Vernon,MO,65712 -Niangua,MO,65713 -Nixa,MO,65714 -Noble,MO,65715 -Norwood,MO,65717 -Oldfield,MO,65720 -Ozark,MO,65721 -Phillipsburg,MO,65722 -Pierce City,MO,65723 -Pittsburg,MO,65724 -Pleasant Hope,MO,65725 -Polk,MO,65727 -Ponce De Leon,MO,65728 -Pontiac,MO,65729 -Powell,MO,65730 -Powersite,MO,65731 -Preston,MO,65732 -Protem,MO,65733 -Purdy,MO,65734 -Quincy,MO,65735 -Branson West,MO,65737 -Republic,MO,65738 -Ridgedale,MO,65739 -Rockaway Beach,MO,65740 -Rogersville,MO,65742 -Rueter,MO,65744 -Seligman,MO,65745 -Seymour,MO,65746 -Shell Knob,MO,65747 -65751,MO,65751 -South Greenfield,MO,65752 -Sparta,MO,65753 -Spokane,MO,65754 -Squires,MO,65755 -Stotts City,MO,65756 -Strafford,MO,65757 -Sycamore,MO,65758 -Taneyville,MO,65759 -Tecumseh,MO,65760 -Dugginsville,MO,65761 -Nottinghill,MO,65762 -Tunas,MO,65764 -Udall,MO,65766 -Urbana,MO,65767 -Vanzant,MO,65768 -Verona,MO,65769 -Walnut Grove,MO,65770 -Walnut Shade,MO,65771 -Washburn,MO,65772 -Souder,MO,65773 -Weaubleau,MO,65774 -West Plains,MO,65775 -South Fork,MO,65776 -Moody,MO,65777 -Myrtle,MO,65778 -Wheatland,MO,65779 -Willard,MO,65781 -Windyville,MO,65783 -Zanoni,MO,65784 -Stockton,MO,65785 -Macks Creek,MO,65786 -Roach,MO,65787 -Peace Valley,MO,65788 -Pomona,MO,65789 -Pottersville,MO,65790 -Thayer,MO,65791 -Willow Springs,MO,65793 -Springfield,MO,65802 -Springfield,MO,65803 -Springfield,MO,65804 -Springfield,MO,65806 -Springfield,MO,65807 -Springfield,MO,65809 -Springfield,MO,65810 -Absarokee,MT,59001 -Acton,MT,59002 -Ashland,MT,59003 -Ballantine,MT,59006 -Bearcreek,MT,59007 -Belfry,MT,59008 -Bighorn,MT,59010 -Big Timber,MT,59011 -Birney,MT,59012 -Bridger,MT,59014 -Broadview,MT,59015 -Busby,MT,59016 -Cat Creek,MT,59017 -Columbus,MT,59019 -Crow Agency,MT,59022 -Custer,MT,59024 -Decker,MT,59025 -Emigrant,MT,59027 -Fishtail,MT,59028 -Fromberg,MT,59029 -Gardiner,MT,59030 -Garryowen,MT,59031 -Grass Range,MT,59032 -Greycliff,MT,59033 -Hardin,MT,59034 -Huntley,MT,59037 -Hysham,MT,59038 -Ingomar,MT,59039 -Silesia,MT,59041 -Lame Deer,MT,59043 -Laurel,MT,59044 -Lavina,MT,59046 -Livingston,MT,59047 -Lodge Grass,MT,59050 -Luther,MT,59051 -Mc Leod,MT,59052 -Martinsdale,MT,59053 -Melville,MT,59055 -Molt,MT,59057 -Mosby,MT,59058 -Musselshell,MT,59059 -Nye,MT,59061 -Otter,MT,59062 -Park City,MT,59063 -Pompeys Pillar,MT,59064 -Pray,MT,59065 -Rapelje,MT,59067 -Red Lodge,MT,59068 -Reedpoint,MT,59069 -Roberts,MT,59070 -Roscoe,MT,59071 -Roundup,MT,59072 -Ryegate,MT,59074 -Saint Xavier,MT,59075 -Sand Springs,MT,59077 -Shawmut,MT,59078 -Shepherd,MT,59079 -59080,MT,59080 -Twodot,MT,59085 -Wilsall,MT,59086 -Winnett,MT,59087 -Worden,MT,59088 -Wyola,MT,59089 -Billings,MT,59101 -Billings,MT,59102 -Billings Heights,MT,59105 -Billings,MT,59106 -Wolf Point,MT,59201 -Antelope,MT,59211 -Bainville,MT,59212 -Brockton,MT,59213 -Brockway,MT,59214 -Circle,MT,59215 -Culbertson,MT,59218 -Dagmar,MT,59219 -Fairview,MT,59221 -Flaxville,MT,59222 -Fort Peck,MT,59223 -Lustre,MT,59225 -Froid,MT,59226 -Glasgow,MT,59230 -Hinsdale,MT,59241 -Homestead,MT,59242 -Lambert,MT,59243 -Larslan,MT,59244 -Medicine Lake,MT,59247 -Nashua,MT,59248 -Opheim,MT,59250 -Outlook,MT,59252 -Peerless,MT,59253 -Plentywood,MT,59254 -Poplar,MT,59255 -Raymond,MT,59256 -Redstone,MT,59257 -Reserve,MT,59258 -Richey,MT,59259 -Richland,MT,59260 -Saco,MT,59261 -Savage,MT,59262 -Scobey,MT,59263 -Sidney,MT,59270 -Vida,MT,59274 -Westby,MT,59275 -Whitetail,MT,59276 -Miles City,MT,59301 -Alzada,MT,59311 -Angela,MT,59312 -Baker,MT,59313 -Biddle,MT,59314 -Bloomfield,MT,59315 -Boyes,MT,59316 -Belle Creek,MT,59317 -Brusett,MT,59318 -Capitol,MT,59319 -Cohagen,MT,59322 -Ekalaka,MT,59324 -Fallon,MT,59326 -Forsyth,MT,59327 -Glendive,MT,59330 -Hammond,MT,59332 -Ismay,MT,59336 -Jordan,MT,59337 -Kinsey,MT,59338 -Lindsay,MT,59339 -Mildred,MT,59341 -Olive,MT,59343 -Plevna,MT,59344 -Powderville,MT,59345 -Rosebud,MT,59347 -Terry,MT,59349 -Volborg,MT,59351 -Wibaux,MT,59353 -Willard,MT,59354 -Great Falls,MT,59401 -Great Falls,MT,59404 -Great Falls,MT,59405 -Augusta,MT,59410 -Babb,MT,59411 -Belt,MT,59412 -Black Eagle,MT,59414 -Brady,MT,59416 -Saint Mary,MT,59417 -Buffalo,MT,59418 -Bynum,MT,59419 -Carter,MT,59420 -Cascade,MT,59421 -Choteau,MT,59422 -Coffee Creek,MT,59424 -Conrad,MT,59425 -Cut Bank,MT,59427 -Denton,MT,59430 -Dutton,MT,59433 -East Glacier Par,MT,59434 -Fairfield,MT,59436 -Floweree,MT,59440 -Forestgrove,MT,59441 -Fort Benton,MT,59442 -Fort Shaw,MT,59443 -Galata,MT,59444 -Geraldine,MT,59446 -Geyser,MT,59447 -Heart Butte,MT,59448 -Highwood,MT,59450 -Hilger,MT,59451 -Utica,MT,59452 -Judith Gap,MT,59453 -Kevin,MT,59454 -Ledger,MT,59456 -Lewistown,MT,59457 -Loma,MT,59460 -Moccasin,MT,59462 -Monarch,MT,59463 -Moore,MT,59464 -Neihart,MT,59465 -Pendroy,MT,59467 -Power,MT,59468 -Raynesford,MT,59469 -Roy,MT,59471 -Sand Coulee,MT,59472 -Shelby,MT,59474 -Stanford,MT,59479 -Stockett,MT,59480 -Sunburst,MT,59482 -Sun River,MT,59483 -Sweetgrass,MT,59484 -Valier,MT,59486 -Vaughn,MT,59487 -Winifred,MT,59489 -Havre,MT,59501 -Big Sandy,MT,59520 -Box Elder,MT,59521 -Chester,MT,59522 -Chinook,MT,59523 -Dodson,MT,59524 -Gildford,MT,59525 -Harlem,MT,59526 -Hays,MT,59527 -Hingham,MT,59528 -Hogeland,MT,59529 -Inverness,MT,59530 -Joplin,MT,59531 -Kremlin,MT,59532 -Lloyd,MT,59535 -Loring,MT,59537 -Malta,MT,59538 -Rudyard,MT,59540 -Turner,MT,59542 -Whitewater,MT,59544 -Whitlash,MT,59545 -Zortman,MT,59546 -Helena,MT,59601 -Boulder,MT,59632 -Canyon Creek,MT,59633 -Montana City,MT,59634 -East Helena,MT,59635 -Lincoln,MT,59639 -Radersburg,MT,59641 -Ringling,MT,59642 -Toston,MT,59643 -Townsend,MT,59644 -White Sulphur Sp,MT,59645 -Winston,MT,59647 -Wolf Creek,MT,59648 -Walkerville,MT,59701 -Anaconda,MT,59711 -Belgrade,MT,59714 -Bozeman,MT,59715 -Cameron,MT,59720 -Cardwell,MT,59721 -Deer Lodge,MT,59722 -Dell,MT,59724 -Dillon,MT,59725 -Divide,MT,59727 -Ennis,MT,59729 -Gallatin Gateway,MT,59730 -Garrison,MT,59731 -Gold Creek,MT,59733 -Harrison,MT,59735 -Jackson,MT,59736 -Lima,MT,59739 -Manhattan,MT,59741 -Norris,MT,59745 -Pony,MT,59747 -Ramsay,MT,59748 -Sheridan,MT,59749 -Butte,MT,59750 -Silver Star,MT,59751 -Three Forks,MT,59752 -Twin Bridges,MT,59754 -Virginia City,MT,59755 -Warmsprings,MT,59756 -West Yellowstone,MT,59758 -Whitehall,MT,59759 -Wisdom,MT,59761 -Wise River,MT,59762 -Missoula,MT,59801 -Missoula,MT,59802 -Missoula,MT,59803 -Alberton,MT,59820 -Arlee,MT,59821 -Bonner,MT,59823 -Moiese,MT,59824 -Clinton,MT,59825 -Condon,MT,59826 -Conner,MT,59827 -Corvallis,MT,59828 -Darby,MT,59829 -Dixon,MT,59831 -Drummond,MT,59832 -Florence,MT,59833 -Frenchtown,MT,59834 -Greenough,MT,59836 -Hall,MT,59837 -Hamilton,MT,59840 -Helmville,MT,59843 -Heron,MT,59844 -Hot Springs,MT,59845 -Huson,MT,59846 -Lolo,MT,59847 -Lonepine,MT,59848 -Niarada,MT,59852 -Noxon,MT,59853 -Ovando,MT,59854 -Philipsburg,MT,59858 -Plains,MT,59859 -Polson,MT,59860 -Ronan,MT,59864 -Saint Ignatius,MT,59865 -Saint Regis,MT,59866 -Seeley Lake,MT,59868 -Stevensville,MT,59870 -Sula,MT,59871 -Superior,MT,59872 -Thompson Falls,MT,59873 -Trout Creek,MT,59874 -Victor,MT,59875 -Evergreen,MT,59901 -Big Arm,MT,59910 -Swan Lake,MT,59911 -Columbia Falls,MT,59912 -Dayton,MT,59914 -Elmo,MT,59915 -Essex,MT,59916 -Eureka,MT,59917 -Kila,MT,59920 -Lakeside,MT,59922 -Libby,MT,59923 -Marion,MT,59925 -Polebridge,MT,59928 -Proctor,MT,59929 -Rexford,MT,59930 -Rollins,MT,59931 -Somers,MT,59932 -Troy,MT,59935 -Whitefish,MT,59937 -Abie,NE,68001 -Arlington,NE,68002 -Ashland,NE,68003 -Bancroft,NE,68004 -Bellevue,NE,68005 -Bennington,NE,68007 -Blair,NE,68008 -Bruno,NE,68014 -Cedar Bluffs,NE,68015 -Ceresco,NE,68017 -Colon,NE,68018 -Craig,NE,68019 -Decatur,NE,68020 -Elkhorn,NE,68022 -Fort Calhoun,NE,68023 -Fremont,NE,68025 -Gretna,NE,68028 -Herman,NE,68029 -Hooper,NE,68031 -Ithaca,NE,68033 -Kennard,NE,68034 -Leshara,NE,68035 -Linwood,NE,68036 -Louisville,NE,68037 -Lyons,NE,68038 -Macy,NE,68039 -Malmo,NE,68040 -Mead,NE,68041 -Nickerson,NE,68044 -Oakland,NE,68045 -Papillion,NE,68046 -Pender,NE,68047 -Plattsmouth,NE,68048 -Prague,NE,68050 -Richfield,NE,68054 -Rosalie,NE,68055 -Scribner,NE,68057 -Springfield,NE,68059 -Tekamah,NE,68061 -Thurston,NE,68062 -Valley,NE,68064 -Valparaiso,NE,68065 -Wahoo,NE,68066 -Walthill,NE,68067 -Waterloo,NE,68069 -Weston,NE,68070 -Winnebago,NE,68071 -Yutan,NE,68073 -Omaha,NE,68102 -Omaha,NE,68104 -Omaha,NE,68105 -Omaha,NE,68106 -Omaha,NE,68107 -Omaha,NE,68108 -Omaha,NE,68110 -Omaha,NE,68111 -Omaha,NE,68112 -Offutt A F B,NE,68113 -Omaha,NE,68114 -Omaha,NE,68116 -Omaha,NE,68117 -Omaha,NE,68118 -Omaha,NE,68122 -Omaha,NE,68123 -Omaha,NE,68124 -Ralston,NE,68127 -Papillion,NE,68128 -Omaha,NE,68130 -Omaha,NE,68131 -Omaha,NE,68132 -Papillion,NE,68133 -Omaha,NE,68134 -Omaha,NE,68135 -Omaha,NE,68136 -Millard,NE,68137 -Papillion,NE,68138 -Omaha,NE,68142 -Millard,NE,68144 -Omaha,NE,68147 -Omaha,NE,68152 -Omaha,NE,68154 -Papillion,NE,68157 -Omaha,NE,68164 -Adams,NE,68301 -Alexandria,NE,68303 -Alvo,NE,68304 -Auburn,NE,68305 -Avoca,NE,68307 -Beatrice,NE,68310 -Beaver Crossing,NE,68313 -Bee,NE,68314 -Belvidere,NE,68315 -Benedict,NE,68316 -Bennet,NE,68317 -Blue Springs,NE,68318 -Bradshaw,NE,68319 -Brock,NE,68320 -Brownville,NE,68321 -Bruning,NE,68322 -Burchard,NE,68323 -Burr,NE,68324 -Byron,NE,68325 -Carleton,NE,68326 -Chester,NE,68327 -Clatonia,NE,68328 -Cook,NE,68329 -Cordova,NE,68330 -Cortland,NE,68331 -Crab Orchard,NE,68332 -Crete,NE,68333 -Davenport,NE,68335 -Davey,NE,68336 -Dawson,NE,68337 -Daykin,NE,68338 -Denton,NE,68339 -Deshler,NE,68340 -De Witt,NE,68341 -Diller,NE,68342 -Dorchester,NE,68343 -Douglas,NE,68344 -Du Bois,NE,68345 -Dunbar,NE,68346 -Eagle,NE,68347 -Elk Creek,NE,68348 -Elmwood,NE,68349 -Endicott,NE,68350 -Exeter,NE,68351 -Fairbury,NE,68352 -Fairmont,NE,68354 -Falls City,NE,68355 -Filley,NE,68357 -Firth,NE,68358 -Friend,NE,68359 -Garland,NE,68360 -Geneva,NE,68361 -Gilead,NE,68362 -Goehner,NE,68364 -Grafton,NE,68365 -Greenwood,NE,68366 -Gresham,NE,68367 -Hallam,NE,68368 -Hebron,NE,68370 -Henderson,NE,68371 -Holland,NE,68372 -Holmesville,NE,68374 -Hubbell,NE,68375 -Humboldt,NE,68376 -Jansen,NE,68377 -Johnson,NE,68378 -Julian,NE,68379 -Lewiston,NE,68380 -Liberty,NE,68381 -Mc Cool Junction,NE,68401 -Malcolm,NE,68402 -Martell,NE,68404 -Milford,NE,68405 -Milligan,NE,68406 -Murdock,NE,68407 -Murray,NE,68409 -Nebraska City,NE,68410 -Nehawka,NE,68413 -Nemaha,NE,68414 -Odell,NE,68415 -Ohiowa,NE,68416 -Otoe,NE,68417 -Palmyra,NE,68418 -Pawnee City,NE,68420 -Peru,NE,68421 -Pickrell,NE,68422 -Pleasant Dale,NE,68423 -Plymouth,NE,68424 -Agnew,NE,68428 -Reynolds,NE,68429 -Roca,NE,68430 -Rulo,NE,68431 -Saint Mary,NE,68432 -Salem,NE,68433 -Seward,NE,68434 -Shickley,NE,68436 -Shubert,NE,68437 -Staplehurst,NE,68439 -Steele City,NE,68440 -Steinauer,NE,68441 -Stella,NE,68442 -Sterling,NE,68443 -Strang,NE,68444 -Swanton,NE,68445 -Syracuse,NE,68446 -Table Rock,NE,68447 -Talmage,NE,68448 -Tecumseh,NE,68450 -Ong,NE,68452 -Tobias,NE,68453 -Unadilla,NE,68454 -Union,NE,68455 -Utica,NE,68456 -Verdon,NE,68457 -Virginia,NE,68458 -Waco,NE,68460 -Walton,NE,68461 -Waverly,NE,68462 -Weeping Water,NE,68463 -Western,NE,68464 -Wilber,NE,68465 -Wymore,NE,68466 -York,NE,68467 -Lincoln,NE,68502 -Lincoln,NE,68503 -Lincoln,NE,68504 -Lincoln,NE,68505 -Lincoln,NE,68506 -Lincoln,NE,68507 -Lincoln,NE,68508 -Lincoln,NE,68510 -Lincoln,NE,68512 -Lincoln,NE,68514 -Lincoln,NE,68516 -Lincoln,NE,68517 -Lincoln,NE,68520 -Lincoln,NE,68521 -Lincoln,NE,68522 -Lincoln,NE,68523 -Lincoln,NE,68524 -Lincoln,NE,68526 -Lincoln,NE,68527 -Lincoln,NE,68528 -Lincoln,NE,68531 -Lincoln,NE,68532 -Richland,NE,68601 -Albion,NE,68620 -Ames,NE,68621 -Bartlett,NE,68622 -Belgrade,NE,68623 -Bellwood,NE,68624 -Brainard,NE,68626 -Cedar Rapids,NE,68627 -Clarks,NE,68628 -Clarkson,NE,68629 -Creston,NE,68631 -Garrison,NE,68632 -Dodge,NE,68633 -Dwight,NE,68635 -Elgin,NE,68636 -Ericson,NE,68637 -Fullerton,NE,68638 -Genoa,NE,68640 -Howells,NE,68641 -Humphrey,NE,68642 -Leigh,NE,68643 -Lindsay,NE,68644 -Monroe,NE,68647 -Morse Bluff,NE,68648 -North Bend,NE,68649 -Octavia,NE,68650 -Osceola,NE,68651 -Petersburg,NE,68652 -Platte Center,NE,68653 -Polk,NE,68654 -Primrose,NE,68655 -Rising City,NE,68658 -Rogers,NE,68659 -Saint Edward,NE,68660 -Schuyler,NE,68661 -Shelby,NE,68662 -Silver Creek,NE,68663 -Spalding,NE,68665 -Stromsburg,NE,68666 -Ulysses,NE,68667 -Ulysses,NE,68669 -Norfolk,NE,68701 -Allen,NE,68710 -Amelia,NE,68711 -Atkinson,NE,68713 -Bassett,NE,68714 -Battle Creek,NE,68715 -Beemer,NE,68716 -Belden,NE,68717 -Bloomfield,NE,68718 -Bristow,NE,68719 -Brunswick,NE,68720 -Butte,NE,68722 -Carroll,NE,68723 -Center,NE,68724 -Chambers,NE,68725 -Clearwater,NE,68726 -Coleridge,NE,68727 -Concord,NE,68728 -Creighton,NE,68729 -Crofton,NE,68730 -Dakota City,NE,68731 -Dixon,NE,68732 -Emerson,NE,68733 -Emmet,NE,68734 -Ewing,NE,68735 -Fordyce,NE,68736 -Foster,NE,68737 -Hartington,NE,68739 -Hoskins,NE,68740 -Hubbard,NE,68741 -Inman,NE,68742 -Jackson,NE,68743 -Laurel,NE,68745 -Lynch,NE,68746 -Mclean,NE,68747 -Madison,NE,68748 -Magnet,NE,68749 -Maskell,NE,68751 -Meadow Grove,NE,68752 -Mills,NE,68753 -Naper,NE,68755 -Neligh,NE,68756 -Newcastle,NE,68757 -Newman Grove,NE,68758 -Newport,NE,68759 -Verdel,NE,68760 -Oakdale,NE,68761 -Obert,NE,68762 -Oneill,NE,68763 -Orchard,NE,68764 -Osmond,NE,68765 -Page,NE,68766 -Pierce,NE,68767 -Pilger,NE,68768 -Plainview,NE,68769 -Ponca,NE,68770 -Randolph,NE,68771 -Rose,NE,68772 -Royal,NE,68773 -Saint Helena,NE,68774 -South Sioux City,NE,68776 -Spencer,NE,68777 -Springview,NE,68778 -Stanton,NE,68779 -Stuart,NE,68780 -Tilden,NE,68781 -68782,NE,68782 -Verdigre,NE,68783 -Wakefield,NE,68784 -Waterbury,NE,68785 -Wausa,NE,68786 -Wayne,NE,68787 -West Point,NE,68788 -Winnetoon,NE,68789 -Winside,NE,68790 -Wisner,NE,68791 -Wynot,NE,68792 -Grand Island,NE,68801 -Grand Island,NE,68803 -Alda,NE,68810 -Amherst,NE,68812 -Milburn,NE,68813 -Ansley,NE,68814 -Arcadia,NE,68815 -Archer,NE,68816 -Ashton,NE,68817 -Aurora,NE,68818 -Berwyn,NE,68819 -Boelus,NE,68820 -Brewster,NE,68821 -Broken Bow,NE,68822 -Burwell,NE,68823 -Cairo,NE,68824 -Callaway,NE,68825 -Central City,NE,68826 -Chapman,NE,68827 -Comstock,NE,68828 -Cotesfield,NE,68829 -Dannebrog,NE,68831 -Doniphan,NE,68832 -Dunning,NE,68833 -Eddyville,NE,68834 -Elba,NE,68835 -Elm Creek,NE,68836 -Elyria,NE,68837 -Farwell,NE,68838 -Gibbon,NE,68840 -Giltner,NE,68841 -Greeley,NE,68842 -Hampton,NE,68843 -Hazard,NE,68844 -Hordville,NE,68846 -Kearney,NE,68847 -Lexington,NE,68850 -Litchfield,NE,68852 -Loup City,NE,68853 -Marquette,NE,68854 -Mason City,NE,68855 -Merna,NE,68856 -Miller,NE,68858 -North Loup,NE,68859 -Oconto,NE,68860 -Odessa,NE,68861 -Ord,NE,68862 -Overton,NE,68863 -Palmer,NE,68864 -Phillips,NE,68865 -Pleasanton,NE,68866 -Prosser,NE,68868 -Ravenna,NE,68869 -Riverdale,NE,68870 -Rockville,NE,68871 -Saint Libory,NE,68872 -Saint Paul,NE,68873 -Sargent,NE,68874 -Scotia,NE,68875 -Shelton,NE,68876 -Sumner,NE,68878 -Almeria,NE,68879 -Westerville,NE,68881 -Wolbach,NE,68882 -Wood River,NE,68883 -Hastings,NE,68901 -Alma,NE,68920 -Arapahoe,NE,68922 -Atlanta,NE,68923 -Axtell,NE,68924 -Ayr,NE,68925 -Beaver City,NE,68926 -Bertrand,NE,68927 -Bladen,NE,68928 -Bloomington,NE,68929 -Blue Hill,NE,68930 -Campbell,NE,68932 -Clay Center,NE,68933 -Deweese,NE,68934 -Edgar,NE,68935 -Edison,NE,68936 -Elwood,NE,68937 -Fairfield,NE,68938 -Franklin,NE,68939 -Funk,NE,68940 -Glenvil,NE,68941 -Guide Rock,NE,68942 -Hardy,NE,68943 -Harvard,NE,68944 -Heartwell,NE,68945 -Hendley,NE,68946 -Hildreth,NE,68947 -Holbrook,NE,68948 -Holdrege,NE,68949 -Holstein,NE,68950 -Huntley,NE,68951 -Inavale,NE,68952 -Inland,NE,68954 -Juniata,NE,68955 -Kenesaw,NE,68956 -Lawrence,NE,68957 -Loomis,NE,68958 -Minden,NE,68959 -Naponee,NE,68960 -Nora,NE,68961 -Oak,NE,68964 -Orleans,NE,68966 -Oxford,NE,68967 -Ragan,NE,68969 -Red Cloud,NE,68970 -Republican City,NE,68971 -Riverton,NE,68972 -Roseland,NE,68973 -Ruskin,NE,68974 -Saronville,NE,68975 -Smithfield,NE,68976 -Stamford,NE,68977 -Superior,NE,68978 -Sutton,NE,68979 -Trumbull,NE,68980 -Upland,NE,68981 -Wilcox,NE,68982 -Mc Cook,NE,69001 -Bartley,NE,69020 -Benkelman,NE,69021 -Cambridge,NE,69022 -Champion,NE,69023 -Culbertson,NE,69024 -Curtis,NE,69025 -Danbury,NE,69026 -Enders,NE,69027 -Eustis,NE,69028 -Farnam,NE,69029 -Haigler,NE,69030 -Hamlet,NE,69031 -Hayes Center,NE,69032 -Imperial,NE,69033 -Indianola,NE,69034 -Lamar,NE,69035 -Lebanon,NE,69036 -Max,NE,69037 -Maywood,NE,69038 -Moorefield,NE,69039 -Palisade,NE,69040 -Parks,NE,69041 -Stockville,NE,69042 -Stratton,NE,69043 -Trenton,NE,69044 -Wauneta,NE,69045 -Wilsonville,NE,69046 -North Platte,NE,69101 -Arnold,NE,69120 -Arthur,NE,69121 -Big Springs,NE,69122 -Brady,NE,69123 -Broadwater,NE,69125 -Brule,NE,69127 -Bushnell,NE,69128 -Chappell,NE,69129 -Cozad,NE,69130 -Dalton,NE,69131 -Dickens,NE,69132 -Dix,NE,69133 -Elsie,NE,69134 -Elsmere,NE,69135 -Gothenburg,NE,69138 -Grant,NE,69140 -Gurley,NE,69141 -Halsey,NE,69142 -Hershey,NE,69143 -Keystone,NE,69144 -Kimball,NE,69145 -Lemoyne,NE,69146 -Lewellen,NE,69147 -Lisco,NE,69148 -Lodgepole,NE,69149 -Madrid,NE,69150 -Maxwell,NE,69151 -Mullen,NE,69152 -Ogallala,NE,69153 -Oshkosh,NE,69154 -Paxton,NE,69155 -Potter,NE,69156 -Purdum,NE,69157 -Seneca,NE,69161 -Sidney,NE,69162 -Stapleton,NE,69163 -Sutherland,NE,69165 -Brownlee,NE,69166 -Tryon,NE,69167 -Venango,NE,69168 -Wallace,NE,69169 -Wellfleet,NE,69170 -Valentine,NE,69201 -Ainsworth,NE,69210 -Cody,NE,69211 -Crookston,NE,69212 -Johnstown,NE,69214 -Kilgore,NE,69216 -Long Pine,NE,69217 -Merriman,NE,69218 -Wood Lake,NE,69221 -Alliance,NE,69301 -Angora,NE,69331 -Ashby,NE,69333 -Bayard,NE,69334 -Bingham,NE,69335 -Bridgeport,NE,69336 -Chadron,NE,69337 -Crawford,NE,69339 -Ellsworth,NE,69340 -Gering,NE,69341 -Gordon,NE,69343 -Harrisburg,NE,69345 -Harrison,NE,69346 -Hay Springs,NE,69347 -Hemingford,NE,69348 -Henry,NE,69349 -Hyannis,NE,69350 -Lakeside,NE,69351 -Lyman,NE,69352 -Marsland,NE,69354 -Minatare,NE,69356 -Mitchell,NE,69357 -Morrill,NE,69358 -Rushville,NE,69360 -Scottsbluff,NE,69361 -Whitman,NE,69366 -Whitney,NE,69367 -Alamo,NV,89001 -Boulder City,NV,89005 -Caliente,NV,89008 -Goldfield,NV,89013 -Henderson,NV,89014 -Henderson,NV,89015 -Hiko,NV,89017 -Indian Springs,NV,89018 -Goodsprings,NV,89019 -Amargosa Valley,NV,89020 -Laughlin,NV,89029 -North Las Vegas,NV,89030 -North Las Vegas,NV,89031 -Overton,NV,89040 -Pahrump,NV,89041 -Pioche,NV,89043 -Round Mountain,NV,89045 -Cottonwood Cove,NV,89046 -Silverpeak,NV,89047 -Tonopah,NV,89049 -Las Vegas,NV,89101 -Las Vegas,NV,89102 -Las Vegas,NV,89103 -Las Vegas,NV,89104 -Las Vegas,NV,89106 -Las Vegas,NV,89107 -Las Vegas,NV,89108 -Las Vegas,NV,89109 -Las Vegas,NV,89110 -Las Vegas,NV,89113 -Las Vegas,NV,89115 -Las Vegas,NV,89117 -Las Vegas,NV,89118 -Las Vegas,NV,89119 -Las Vegas,NV,89120 -Las Vegas,NV,89121 -Las Vegas,NV,89122 -Las Vegas,NV,89123 -Las Vegas,NV,89124 -Las Vegas,NV,89128 -Las Vegas,NV,89129 -Las Vegas,NV,89130 -Las Vegas,NV,89131 -Las Vegas,NV,89134 -Ely,NV,89301 -Austin,NV,89310 -Baker,NV,89311 -Eureka,NV,89316 -Lund,NV,89317 -Dayton,NV,89403 -Denio,NV,89404 -Empire,NV,89405 -Fallon,NV,89406 -Fernley,NV,89408 -Gabbs,NV,89409 -Gardnerville,NV,89410 -Gerlach,NV,89412 -Glenbrook,NV,89413 -Golconda,NV,89414 -Hawthorne,NV,89415 -Unionville,NV,89418 -Lovelock,NV,89419 -Luning,NV,89420 -Minden,NV,89423 -Nixon,NV,89424 -Orovada,NV,89425 -Paradise Valley,NV,89426 -Schurz,NV,89427 -Silver Springs,NV,89429 -Smith,NV,89430 -Sparks,NV,89431 -Sun Valley,NV,89433 -Sparks,NV,89434 -Sparks,NV,89436 -Virginia City,NV,89440 -Wadsworth,NV,89442 -Wellington,NV,89444 -Winnemucca,NV,89445 -Yerington,NV,89447 -Incline Village,NV,89451 -Reno,NV,89501 -Reno,NV,89502 -Reno,NV,89503 -Reno,NV,89506 -Reno,NV,89509 -Reno,NV,89510 -Reno,NV,89511 -Reno,NV,89512 -Reno,NV,89523 -Carson City,NV,89701 -Carson City,NV,89703 -Carson City,NV,89704 -Carson City,NV,89705 -Moundhouse,NV,89706 -Jiggs,NV,89801 -Battle Mountain,NV,89820 -Beowawe,NV,89821 -Carlin,NV,89822 -Deeth,NV,89823 -Jackpot,NV,89825 -Mountain City,NV,89831 -Ruby Valley,NV,89833 -Tuscarora,NV,89834 -Oasis,NV,89835 -Amherst,NH,3031 -Auburn,NH,3032 -Brookline,NH,3033 -Candia,NH,3034 -Chester,NH,3036 -Deerfield,NH,3037 -Derry,NH,3038 -Epping,NH,3042 -Francestown,NH,3043 -Fremont,NH,3044 -Dunbarton,NH,3045 -Greenfield,NH,3047 -Mason,NH,3048 -Hollis,NH,3049 -Hudson,NH,3051 -Londonderry,NH,3053 -Merrimack,NH,3054 -Milford,NH,3055 -Mont Vernon,NH,3057 -Nashua,NH,3060 -Nashua,NH,3062 -Nashua,NH,3063 -New Boston,NH,3070 -New Ipswich,NH,3071 -Pelham,NH,3076 -Raymond,NH,3077 -Salem,NH,3079 -Lyndeborough,NH,3082 -Temple,NH,3084 -Wilton,NH,3086 -Windham,NH,3087 -Manchester,NH,3101 -Manchester,NH,3102 -Manchester,NH,3103 -Manchester,NH,3104 -Hooksett,NH,3106 -Manchester,NH,3109 -Bedford,NH,3110 -Andover,NH,3216 -Ashland,NH,3217 -Barnstead,NH,3218 -Belmont,NH,3220 -Bradford,NH,3221 -Bristol,NH,3222 -Beebe River,NH,3223 -Canterbury,NH,3224 -Center Barnstead,NH,3225 -Center Harbor,NH,3226 -Center Sandwich,NH,3227 -Hopkinton,NH,3229 -Danbury,NH,3230 -East Andover,NH,3231 -East Hebron,NH,3232 -Epsom,NH,3234 -Franklin,NH,3235 -Gilmanton,NH,3237 -Grafton,NH,3240 -Hebron,NH,3241 -Henniker,NH,3242 -Hill,NH,3243 -Hillsboro,NH,3244 -Gilford,NH,3246 -Lincoln,NH,3251 -Meredith,NH,3253 -Moultonborough,NH,3254 -New Hampton,NH,3256 -New London,NH,3257 -North Sandwich,NH,3259 -Northwood,NH,3261 -North Woodstock,NH,3262 -Pittsfield,NH,3263 -Plymouth,NH,3264 -Rumney,NH,3266 -Salisbury,NH,3268 -Sanbornton,NH,3269 -Allenstown,NH,3275 -Tilton,NH,3276 -Warner,NH,3278 -Warren,NH,3279 -Washington,NH,3280 -Weare,NH,3281 -Wentworth,NH,3282 -West Springfield,NH,3284 -Wilmot Flat,NH,3287 -Nottingham,NH,3290 -West Nottingham,NH,3291 -Concord,NH,3301 -Boscawen,NH,3303 -Bow,NH,3304 -Surry,NH,3431 -Antrim,NH,3440 -Ashuelot,NH,3441 -Bennington,NH,3442 -Chesterfield,NH,3443 -Dublin,NH,3444 -East Sullivan,NH,3445 -East Swanzey,NH,3446 -Fitzwilliam,NH,3447 -Gilsum,NH,3448 -Hancock,NH,3449 -Harrisville,NH,3450 -Hinsdale,NH,3451 -Jaffrey,NH,3452 -Marlborough,NH,3455 -Marlow,NH,3456 -Munsonville,NH,3457 -Peterborough,NH,3458 -Rindge,NH,3461 -Spofford,NH,3462 -Stoddard,NH,3464 -Troy,NH,3465 -West Chesterfiel,NH,3466 -Westmoreland,NH,3467 -West Swanzey,NH,3469 -Richmond,NH,3470 -Littleton,NH,3561 -Berlin,NH,3570 -Bethlehem,NH,3574 -Colebrook,NH,3576 -Errol,NH,3579 -Franconia,NH,3580 -Gorham,NH,3581 -Groveton,NH,3582 -Jefferson,NH,3583 -Lancaster,NH,3584 -Lisbon,NH,3585 -Milan,NH,3588 -North Stratford,NH,3590 -Pittsburg,NH,3592 -Whitefield,NH,3598 -Alstead,NH,3602 -Charlestown,NH,3603 -East Lempster,NH,3605 -South Acworth,NH,3607 -Walpole,NH,3608 -North Walpole,NH,3609 -Bath,NH,3740 -Canaan,NH,3741 -Claremont,NH,3743 -Cornish,NH,3745 -Enfield,NH,3748 -Etna,NH,3750 -Goshen,NH,3752 -Grantham,NH,3753 -Hanover,NH,3755 -Haverhill,NH,3765 -Lebanon,NH,3766 -Lyme,NH,3768 -Meriden,NH,3770 -Monroe,NH,3771 -Newport,NH,3773 -North Haverhill,NH,3774 -Orford,NH,3777 -Piermont,NH,3779 -Pike,NH,3780 -Plainfield,NH,3781 -Sunapee,NH,3782 -West Lebanon,NH,3784 -Woodsville,NH,3785 -Newington,NH,3801 -Alton,NH,3809 -Alton Bay,NH,3810 -Atkinson,NH,3811 -Bartlett,NH,3812 -Center Conway,NH,3813 -Center Ossipee,NH,3814 -Center Strafford,NH,3815 -Center Tuftonbor,NH,3816 -Chocorua,NH,3817 -Conway,NH,3818 -Danville,NH,3819 -Madbury,NH,3820 -Lee,NH,3824 -Barrington,NH,3825 -East Hampstead,NH,3826 -South Hampton,NH,3827 -East Wakefield,NH,3830 -Brentwood,NH,3833 -Farmington,NH,3835 -Freedom,NH,3836 -Gilmanton Iron W,NH,3837 -Glen,NH,3838 -Gonic,NH,3839 -Greenland,NH,3840 -Hampstead,NH,3841 -Hampton,NH,3842 -Hampton Falls,NH,3844 -Intervale,NH,3845 -Jackson,NH,3846 -Kingston,NH,3848 -Madison,NH,3849 -Milton Mills,NH,3852 -Mirror Lake,NH,3853 -New Castle,NH,3854 -New Durham,NH,3855 -Newmarket,NH,3857 -Newton,NH,3858 -North Conway,NH,3860 -North Hampton,NH,3862 -Ossipee,NH,3864 -Plaistow,NH,3865 -Rochester,NH,3867 -East Rochester,NH,3868 -Rollinsford,NH,3869 -Rye,NH,3870 -Sanbornville,NH,3872 -Sandown,NH,3873 -Seabrook,NH,3874 -Silver Lake,NH,3875 -Somersworth,NH,3878 -South Effingham,NH,3882 -South Tamworth,NH,3883 -Strafford,NH,3884 -Stratham,NH,3885 -Tamworth,NH,3886 -Union,NH,3887 -West Ossipee,NH,3890 -Wolfeboro,NH,3894 -Avenel,NJ,7001 -Bayonne,NJ,7002 -Bloomfield,NJ,7003 -Fairfield,NJ,7004 -Boonton,NJ,7005 -West Caldwell,NJ,7006 -Carteret,NJ,7008 -Cedar Grove,NJ,7009 -Cliffside Park,NJ,7010 -Clifton,NJ,7011 -Clifton,NJ,7012 -Clifton,NJ,7013 -Clifton,NJ,7014 -Cranford,NJ,7016 -East Orange,NJ,7017 -East Orange,NJ,7018 -Edgewater,NJ,7020 -Essex Fells,NJ,7021 -Fairview,NJ,7022 -Fanwood,NJ,7023 -Fort Lee,NJ,7024 -Garfield,NJ,7026 -Garwood,NJ,7027 -Glen Ridge,NJ,7028 -Kearny,NJ,7029 -Hoboken,NJ,7030 -North Arlington,NJ,7031 -Kearny,NJ,7032 -Kenilworth,NJ,7033 -Lake Hiawatha,NJ,7034 -Lincoln Park,NJ,7035 -Linden,NJ,7036 -Livingston,NJ,7039 -Maplewood,NJ,7040 -Millburn,NJ,7041 -Montclair,NJ,7042 -Montclair,NJ,7043 -Verona,NJ,7044 -Montville,NJ,7045 -Mountain Lakes,NJ,7046 -North Bergen,NJ,7047 -Orange,NJ,7050 -West Orange,NJ,7052 -Parsippany,NJ,7054 -Passaic,NJ,7055 -Wallington,NJ,7057 -Pine Brook,NJ,7058 -Warren,NJ,7059 -North Plainfield,NJ,7060 -North Plainfield,NJ,7062 -North Plainfield,NJ,7063 -Port Reading,NJ,7064 -Rahway,NJ,7065 -Clark,NJ,7066 -Colonia,NJ,7067 -Roseland,NJ,7068 -Rutherford,NJ,7070 -Lyndhurst,NJ,7071 -Carlstadt,NJ,7072 -East Rutherford,NJ,7073 -Moonachie,NJ,7074 -Wood Ridge,NJ,7075 -Scotch Plains,NJ,7076 -Sewaren,NJ,7077 -Short Hills,NJ,7078 -South Orange,NJ,7079 -South Plainfield,NJ,7080 -Springfield,NJ,7081 -Towaco,NJ,7082 -Union,NJ,7083 -Weehawken,NJ,7087 -Vauxhall,NJ,7088 -Westfield,NJ,7090 -Mountainside,NJ,7092 -Guttenberg,NJ,7093 -Secaucus,NJ,7094 -Woodbridge,NJ,7095 -Newark,NJ,7102 -Newark,NJ,7103 -Newark,NJ,7104 -Newark,NJ,7105 -Newark,NJ,7106 -Newark,NJ,7107 -Newark,NJ,7108 -Belleville,NJ,7109 -Nutley,NJ,7110 -Irvington,NJ,7111 -Newark,NJ,7112 -Newark,NJ,7114 -Elizabeth,NJ,7201 -Elizabeth,NJ,7202 -Roselle,NJ,7203 -Roselle Park,NJ,7204 -Hillside,NJ,7205 -Elizabeth,NJ,7206 -Elizabeth,NJ,7208 -Jersey City,NJ,7302 -Jersey City,NJ,7304 -Jersey City,NJ,7305 -Jersey City,NJ,7306 -Jersey City,NJ,7307 -Jersey City,NJ,7310 -Allendale,NJ,7401 -Bloomingdale,NJ,7403 -Kinnelon,NJ,7405 -Elmwood Park,NJ,7407 -Fair Lawn,NJ,7410 -Franklin,NJ,7416 -Franklin Lakes,NJ,7417 -Glenwood,NJ,7418 -Hamburg,NJ,7419 -Haskell,NJ,7420 -Hewitt,NJ,7421 -Highland Lakes,NJ,7422 -Ho Ho Kus,NJ,7423 -West Paterson,NJ,7424 -Mahwah,NJ,7430 -Midland Park,NJ,7432 -Newfoundland,NJ,7435 -Oakland,NJ,7436 -Milton,NJ,7438 -Ogdensburg,NJ,7439 -Pequannock,NJ,7440 -Pompton Lakes,NJ,7442 -Pompton Plains,NJ,7444 -Ramsey,NJ,7446 -Ridgewood,NJ,7450 -Glen Rock,NJ,7452 -Ringwood,NJ,7456 -Riverdale,NJ,7457 -Upper Saddle Riv,NJ,7458 -Stockholm,NJ,7460 -Sussex,NJ,7461 -Vernon,NJ,7462 -Waldwick,NJ,7463 -Wanaque,NJ,7465 -Wayne,NJ,7470 -West Milford,NJ,7480 -Wyckoff,NJ,7481 -Paterson,NJ,7501 -Paterson,NJ,7502 -Paterson,NJ,7503 -Paterson,NJ,7504 -Paterson,NJ,7505 -Hawthorne,NJ,7506 -Haledon,NJ,7508 -Totowa,NJ,7512 -Paterson,NJ,7513 -Paterson,NJ,7514 -Paterson,NJ,7522 -Paterson,NJ,7524 -Hackensack,NJ,7601 -Bogota,NJ,7603 -Hasbrouck Height,NJ,7604 -Leonia,NJ,7605 -South Hackensack,NJ,7606 -Maywood,NJ,7607 -Teterboro,NJ,7608 -Alpine,NJ,7620 -Bergenfield,NJ,7621 -Closter,NJ,7624 -Cresskill,NJ,7626 -Demarest,NJ,7627 -Dumont,NJ,7628 -Emerson,NJ,7630 -Englewood,NJ,7631 -Englewood Cliffs,NJ,7632 -Harrington Park,NJ,7640 -Haworth,NJ,7641 -Hillsdale,NJ,7642 -Little Ferry,NJ,7643 -Lodi,NJ,7644 -Montvale,NJ,7645 -New Milford,NJ,7646 -Rockleigh,NJ,7647 -Norwood,NJ,7648 -Oradell,NJ,7649 -Palisades Park,NJ,7650 -Paramus,NJ,7652 -Park Ridge,NJ,7656 -Ridgefield,NJ,7657 -Ridgefield Park,NJ,7660 -River Edge,NJ,7661 -Saddle Brook,NJ,7662 -Teaneck,NJ,7666 -Tenafly,NJ,7670 -Old Tappan,NJ,7675 -Suburban,NJ,7701 -Shrewsbury,NJ,7702 -Fort Monmouth,NJ,7703 -Fair Haven,NJ,7704 -Allenhurst,NJ,7711 -Ocean,NJ,7712 -Atlantic Highlan,NJ,7716 -Avon By The Sea,NJ,7717 -Belford,NJ,7718 -Wall,NJ,7719 -Bradley Beach,NJ,7720 -Cliffwood,NJ,7721 -Colts Neck,NJ,7722 -Deal,NJ,7723 -Eatontown,NJ,7724 -Manalapan,NJ,7726 -Farmingdale,NJ,7727 -Freehold,NJ,7728 -Hazlet,NJ,7730 -Howell,NJ,7731 -Fort Hancock,NJ,7732 -Holmdel,NJ,7733 -Keansburg,NJ,7734 -Keyport,NJ,7735 -Leonardo,NJ,7737 -Lincroft,NJ,7738 -Little Silver,NJ,7739 -Long Branch,NJ,7740 -Marlboro,NJ,7746 -Matawan,NJ,7747 -New Monmouth,NJ,7748 -Monmouth Beach,NJ,7750 -Morganville,NJ,7751 -Neptune City,NJ,7753 -Oakhurst,NJ,7755 -Ocean Grove,NJ,7756 -Oceanport,NJ,7757 -Port Monmouth,NJ,7758 -Sea Bright,NJ,7760 -Spring Lake,NJ,7762 -West Long Branch,NJ,7764 -Mine Hill,NJ,7801 -Andover,NJ,7821 -Augusta,NJ,7822 -Belvidere,NJ,7823 -Blairstown,NJ,7825 -Branchville,NJ,7826 -Montague,NJ,7827 -Budd Lake,NJ,7828 -Califon,NJ,7830 -Columbia,NJ,7832 -Denville,NJ,7834 -Flanders,NJ,7836 -Great Meadows,NJ,7838 -Hackettstown,NJ,7840 -Hopatcong,NJ,7843 -Kenvil,NJ,7847 -Lafayette,NJ,7848 -Lake Hopatcong,NJ,7849 -Landing,NJ,7850 -Layton,NJ,7851 -Ledgewood,NJ,7852 -Long Valley,NJ,7853 -Mount Arlington,NJ,7856 -Netcong,NJ,7857 -Fredon Township,NJ,7860 -Oxford,NJ,7863 -Port Murray,NJ,7865 -Rockaway,NJ,7866 -Randolph,NJ,7869 -Sparta,NJ,7871 -Stanhope,NJ,7874 -Succasunna,NJ,7876 -Wallpack Center,NJ,7881 -Washington,NJ,7882 -Wharton,NJ,7885 -Summit,NJ,7901 -Basking Ridge,NJ,7920 -Bedminster,NJ,7921 -Berkeley Heights,NJ,7922 -Bernardsville,NJ,7924 -Cedar Knolls,NJ,7927 -Chatham,NJ,7928 -Chester,NJ,7930 -Far Hills,NJ,7931 -Florham Park,NJ,7932 -Gillette,NJ,7933 -Gladstone,NJ,7934 -Green Village,NJ,7935 -East Hanover,NJ,7936 -Madison,NJ,7940 -Mendham,NJ,7945 -Millington,NJ,7946 -Greystone Park,NJ,7950 -Morristown,NJ,7960 -New Providence,NJ,7974 -New Vernon,NJ,7976 -Stirling,NJ,7980 -Whippany,NJ,7981 -Cherry Hill,NJ,8002 -Cherry Hill,NJ,8003 -Winslow,NJ,8004 -Barnegat,NJ,8005 -Barrington,NJ,8007 -Harvey Cedars,NJ,8008 -Berlin,NJ,8009 -Beverly,NJ,8010 -Washington,NJ,8012 -Bridgeport,NJ,8014 -Browns Mills,NJ,8015 -Burlington,NJ,8016 -Chatsworth,NJ,8019 -Clarksboro,NJ,8020 -Laurel Springs,NJ,8021 -Columbus,NJ,8022 -Gibbsboro,NJ,8026 -Gibbstown,NJ,8027 -Glassboro,NJ,8028 -Glendora,NJ,8029 -Gloucester City,NJ,8030 -Bellmawr,NJ,8031 -Haddonfield,NJ,8033 -Cherry Hill,NJ,8034 -Haddon Heights,NJ,8035 -Batsto,NJ,8037 -Jobstown,NJ,8041 -Voorhees,NJ,8043 -Lawnside,NJ,8045 -Willingboro,NJ,8046 -Lumberton,NJ,8048 -Magnolia,NJ,8049 -Manahawkin,NJ,8050 -Mantua,NJ,8051 -Maple Shade,NJ,8052 -Marlton,NJ,8053 -Mount Laurel,NJ,8054 -Medford Lakes,NJ,8055 -Mickleton,NJ,8056 -Moorestown,NJ,8057 -Mount Ephraim,NJ,8059 -Eastampton Twp,NJ,8060 -Mount Royal,NJ,8061 -Mullica Hill,NJ,8062 -National Park,NJ,8063 -Palmyra,NJ,8065 -Paulsboro,NJ,8066 -Pedricktown,NJ,8067 -Pemberton,NJ,8068 -Carneys Point,NJ,8069 -Pennsville,NJ,8070 -Pitman,NJ,8071 -Delanco,NJ,8075 -Cinnaminson,NJ,8077 -Runnemede,NJ,8078 -Salem,NJ,8079 -Sewell,NJ,8080 -Sicklerville,NJ,8081 -Somerdale,NJ,8083 -Stratford,NJ,8084 -Swedesboro,NJ,8085 -Thorofare,NJ,8086 -Tuckerton,NJ,8087 -Southampton,NJ,8088 -Waterford Works,NJ,8089 -Wenonah,NJ,8090 -West Berlin,NJ,8091 -West Creek,NJ,8092 -Westville,NJ,8093 -Williamstown,NJ,8094 -Deptford,NJ,8096 -Woodbury Heights,NJ,8097 -Woodstown,NJ,8098 -Camden,NJ,8102 -Camden,NJ,8103 -Camden,NJ,8104 -Camden,NJ,8105 -Audubon,NJ,8106 -Oaklyn,NJ,8107 -Collingswood,NJ,8108 -Merchantville,NJ,8109 -Delair,NJ,8110 -Smithville,NJ,8201 -Avalon,NJ,8202 -Brigantine,NJ,8203 -North Cape May,NJ,8204 -Cape May Court H,NJ,8210 -Egg Harbor City,NJ,8215 -Linwood,NJ,8221 -Marmora,NJ,8223 -Northfield,NJ,8225 -Ocean City,NJ,8226 -Ocean View,NJ,8230 -Pleasantville,NJ,8232 -Port Republic,NJ,8241 -Rio Grande,NJ,8242 -Townsends Inlet,NJ,8243 -Somers Point,NJ,8244 -Stone Harbor,NJ,8247 -Strathmere,NJ,8248 -Villas,NJ,8251 -North Wildwood,NJ,8260 -Corbin City,NJ,8270 -Seabrook,NJ,8302 -Buena,NJ,8310 -Cedarville,NJ,8311 -Clayton,NJ,8312 -Delmont,NJ,8314 -Dorothy,NJ,8317 -Elmer,NJ,8318 -Estell Manor,NJ,8319 -Franklinville,NJ,8322 -Heislerville,NJ,8324 -Landisville,NJ,8326 -Leesburg,NJ,8327 -Malaga,NJ,8328 -Mays Landing,NJ,8330 -Millville,NJ,8332 -Milmay,NJ,8340 -Minotola,NJ,8341 -Monroeville,NJ,8343 -Newfield,NJ,8344 -Newport,NJ,8345 -Newtonville,NJ,8346 -Port Norris,NJ,8349 -Richland,NJ,8350 -Vineland,NJ,8360 -Atlantic City,NJ,8401 -Margate City,NJ,8402 -Longport,NJ,8403 -Ventnor City,NJ,8406 -Allentown,NJ,8501 -Belle Mead,NJ,8502 -Bordentown,NJ,8505 -Clarksburg,NJ,8510 -Cookstown,NJ,8511 -Cranbury,NJ,8512 -Creamridge,NJ,8514 -Crosswicks,NJ,8515 -Florence,NJ,8518 -Hightstown,NJ,8520 -Hopewell,NJ,8525 -Imlaystown,NJ,8526 -Jackson,NJ,8527 -Kingston,NJ,8528 -Lambertville,NJ,8530 -New Egypt,NJ,8533 -Pennington,NJ,8534 -Perrineville,NJ,8535 -Plainsboro,NJ,8536 -Princeton,NJ,8540 -Princeton,NJ,8542 -Princeton Univer,NJ,8544 -Princeton Juncti,NJ,8550 -Ringoes,NJ,8551 -Rocky Hill,NJ,8553 -Roebling,NJ,8554 -Rosemont,NJ,8556 -Skillman,NJ,8558 -Stockton,NJ,8559 -Titusville,NJ,8560 -Wrightstown,NJ,8562 -Trenton,NJ,8608 -Hamilton,NJ,8609 -Hamilton,NJ,8610 -Hamilton,NJ,8611 -Trenton,NJ,8618 -Mercerville,NJ,8619 -Yardville,NJ,8620 -West Trenton,NJ,8628 -Hamilton,NJ,8629 -Trenton,NJ,8638 -Fort Dix,NJ,8640 -Mc Guire Afb,NJ,8641 -Lawrenceville,NJ,8648 -Hamilton,NJ,8690 -Hamilton,NJ,8691 -Lakewood,NJ,8701 -Bayville,NJ,8721 -Beachwood,NJ,8722 -Osbornsville,NJ,8723 -Brick,NJ,8724 -Brielle,NJ,8730 -Forked River,NJ,8731 -Island Heights,NJ,8732 -Lakehurst Naec,NJ,8733 -Lanoka Harbor,NJ,8734 -Lavallette,NJ,8735 -Manasquan,NJ,8736 -Mantoloking,NJ,8738 -Ocean Gate,NJ,8740 -Pine Beach,NJ,8741 -Bay Head,NJ,8742 -Sea Girt,NJ,8750 -Seaside Heights,NJ,8751 -Seaside Park,NJ,8752 -Toms River,NJ,8753 -Toms River,NJ,8755 -Toms River,NJ,8757 -Waretown,NJ,8758 -Whiting,NJ,8759 -Annandale,NJ,8801 -Pattenburg,NJ,8802 -Bloomsbury,NJ,8804 -Bound Brook,NJ,8805 -Bridgewater,NJ,8807 -Clinton,NJ,8809 -Dayton,NJ,8810 -Green Brook,NJ,8812 -East Brunswick,NJ,8816 -Edison,NJ,8817 -Edison,NJ,8820 -Flemington,NJ,8822 -Franklin Park,NJ,8823 -Kendall Park,NJ,8824 -Frenchtown,NJ,8825 -Glen Gardner,NJ,8826 -Hampton,NJ,8827 -Helmetta,NJ,8828 -High Bridge,NJ,8829 -Iselin,NJ,8830 -Jamesburg,NJ,8831 -Keasbey,NJ,8832 -Lebanon,NJ,8833 -Manville,NJ,8835 -Martinsville,NJ,8836 -Edison,NJ,8837 -Metuchen,NJ,8840 -Middlesex,NJ,8846 -Milford,NJ,8848 -Milltown,NJ,8850 -Monmouth Junctio,NJ,8852 -Neshanic Station,NJ,8853 -Piscataway,NJ,8854 -Old Bridge,NJ,8857 -Parlin,NJ,8859 -Perth Amboy,NJ,8861 -Fords,NJ,8863 -Alpha,NJ,8865 -Pittstown,NJ,8867 -Raritan,NJ,8869 -Sayreville,NJ,8872 -Somerset,NJ,8873 -North Branch,NJ,8876 -Laurence Harbor,NJ,8879 -South Bound Broo,NJ,8880 -South River,NJ,8882 -Spotswood,NJ,8884 -Stewartsville,NJ,8886 -Three Bridges,NJ,8887 -Whitehouse Stati,NJ,8889 -New Brunswick,NJ,8901 -North Brunswick,NJ,8902 -Highland Park,NJ,8904 -Algodones,NM,87001 -Boys Ranch,NM,87002 -Bernalillo,NM,87004 -Bluewater,NM,87005 -Bosque,NM,87006 -Casa Blanca,NM,87007 -Cedar Crest,NM,87008 -Cedarvale,NM,87009 -Cerrillos,NM,87010 -Cuba,NM,87013 -Cubero,NM,87014 -Edgewood,NM,87015 -Estancia,NM,87016 -Gallina,NM,87017 -Counselor,NM,87018 -Grants,NM,87020 -Jarales,NM,87023 -Jemez Pueblo,NM,87024 -Jemez Springs,NM,87025 -Canoncito,NM,87026 -La Jara,NM,87027 -Lajoya,NM,87028 -Lindrith,NM,87029 -Los Lunas,NM,87031 -Moriarty,NM,87035 -Mountainair,NM,87036 -Cochiti Pueblo,NM,87041 -Peralta,NM,87042 -Placitas,NM,87043 -Ponderosa,NM,87044 -Prewitt,NM,87045 -Regina,NM,87046 -Sandia Park,NM,87047 -Corrales,NM,87048 -San Mateo,NM,87050 -Santo Domingo Pu,NM,87052 -Zia Pueblo,NM,87053 -Seboyeta,NM,87055 -Stanley,NM,87056 -Tijeras,NM,87059 -Veguita,NM,87062 -Willard,NM,87063 -Bosque Farms,NM,87068 -Albuquerque,NM,87102 -Albuquerque,NM,87104 -Albuquerque,NM,87105 -Albuquerque,NM,87106 -Albuquerque,NM,87107 -Albuquerque,NM,87108 -Albuquerque,NM,87109 -Albuquerque,NM,87110 -Albuquerque,NM,87111 -Albuquerque,NM,87112 -Albuquerque,NM,87113 -Alameda,NM,87114 -Kirtland A F B E,NM,87115 -Albuquerque,NM,87116 -Albuquerque,NM,87118 -Albuquerque,NM,87120 -Albuquerque,NM,87121 -Albuquerque,NM,87122 -Albuquerque,NM,87123 -Rio Rancho,NM,87124 -Gallup,NM,87301 -Brimhall,NM,87310 -Continental Divi,NM,87312 -Crownpoint,NM,87313 -Fence Lake,NM,87315 -Mexican Springs,NM,87320 -Ramah,NM,87321 -Thoreau,NM,87323 -Toadlena,NM,87324 -Tohatchi,NM,87325 -Zuni,NM,87327 -Navajo,NM,87328 -Farmington,NM,87401 -Farmington,NM,87402 -Aztec,NM,87410 -Blanco,NM,87412 -Bloomfield,NM,87413 -Flora Vista,NM,87415 -Fruitland,NM,87416 -Kirtland,NM,87417 -La Plata,NM,87418 -Navajo Dam,NM,87419 -Shiprock,NM,87420 -Waterflow,NM,87421 -Pojoaque Valley,NM,87501 -Santa Fe,NM,87505 -Abiquiu,NM,87510 -Arroyo Hondo,NM,87513 -Arroyo Seco,NM,87514 -Chama,NM,87520 -Chamisal,NM,87521 -Cundiyo,NM,87522 -Costilla,NM,87524 -Dixon,NM,87527 -Dulce,NM,87528 -El Rito,NM,87530 -Embudo,NM,87531 -Espanola,NM,87532 -Glorieta,NM,87535 -Hernandez,NM,87537 -La Madera,NM,87539 -Lamy,NM,87540 -Los Alamos,NM,87544 -Ojo Caliente,NM,87549 -Pecos,NM,87552 -Penasco,NM,87553 -Questa,NM,87556 -Ranchos De Taos,NM,87557 -Ribera,NM,87560 -Rutheron,NM,87563 -San Cristobal,NM,87564 -San Jose,NM,87565 -San Juan Pueblo,NM,87566 -Santa Cruz,NM,87567 -Taos,NM,87571 -Tererro,NM,87573 -Tierra Amarilla,NM,87575 -Vadito,NM,87579 -Valdez,NM,87580 -Vallecitos,NM,87581 -Las Vegas,NM,87701 -Anton Chico,NM,87711 -Chacon,NM,87713 -Cimarron,NM,87714 -Cleveland,NM,87715 -Eagle Nest,NM,87718 -Guadalupita,NM,87722 -La Loma,NM,87724 -Ledoux,NM,87725 -Maxwell,NM,87728 -Miami,NM,87729 -Mills,NM,87730 -Montezuma,NM,87731 -Mora,NM,87732 -Albert,NM,87733 -Ocate,NM,87734 -Raton,NM,87740 -Rociada,NM,87742 -Roy,NM,87743 -Sapello,NM,87745 -Solano,NM,87746 -Springer,NM,87747 -Valmora,NM,87750 -Wagon Mound,NM,87752 -Socorro,NM,87801 -Bingham,NM,87815 -Aragon,NM,87820 -Datil,NM,87821 -Lemitar,NM,87823 -Alamo,NM,87825 -Pie Town,NM,87827 -Polvadera,NM,87828 -Quemado,NM,87829 -Reserve,NM,87830 -San Acacia,NM,87831 -Truth Or Consequ,NM,87901 -Arrey,NM,87930 -Caballo,NM,87931 -Cuchillo,NM,87932 -Derry,NM,87933 -Garfield,NM,87936 -Hatch,NM,87937 -Rincon,NM,87940 -Salem,NM,87941 -Williamsburg,NM,87942 -Winston,NM,87943 -Las Cruces,NM,88001 -White Sands Miss,NM,88002 -Las Cruces,NM,88005 -Animas,NM,88020 -Chaparral,NM,88021 -Vanadium,NM,88023 -Buckhorn,NM,88025 -Central,NM,88026 -Deming,NM,88030 -Glenwood,NM,88039 -San Lorenzo,NM,88041 -Hillsboro,NM,88042 -Hurley,NM,88043 -La Mesa,NM,88044 -Road Forks,NM,88045 -Mesilla Park,NM,88047 -Mesquite,NM,88048 -Mimbres,NM,88049 -Silver City,NM,88061 -Clovis,NM,88101 -Broadview,NM,88112 -Causey,NM,88113 -Crossroads,NM,88114 -Elida,NM,88116 -Floyd,NM,88118 -Fort Sumner,NM,88119 -Grady,NM,88120 -House,NM,88121 -Lingo,NM,88123 -Melrose,NM,88124 -Milnesand,NM,88125 -Pep,NM,88126 -Portales,NM,88130 -Rogers,NM,88132 -Saint Vrain,NM,88133 -Taiban,NM,88134 -Texico,NM,88135 -Yeso,NM,88136 -Roswell,NM,88201 -Artesia,NM,88210 -Caprock,NM,88213 -Carlsbad,NM,88220 -Dexter,NM,88230 -Eunice,NM,88231 -Hagerman,NM,88232 -Hobbs,NM,88240 -Hope,NM,88250 -Jal,NM,88252 -Lake Arthur,NM,88253 -Loving,NM,88256 -Lovington,NM,88260 -Maljamar,NM,88264 -Monument,NM,88265 -Oil Center,NM,88266 -Tatum,NM,88267 -Carrizozo,NM,88301 -Alamogordo,NM,88310 -Bent,NM,88314 -Capitan,NM,88316 -Cloudcroft,NM,88317 -Corona,NM,88318 -Encino,NM,88321 -Glencoe,NM,88324 -Holloman Air For,NM,88330 -Hondo,NM,88336 -La Luz,NM,88337 -Lincoln,NM,88338 -Mayhill,NM,88339 -Mescalero,NM,88340 -Nogal,NM,88341 -Picacho,NM,88343 -Pinon,NM,88344 -Ruidoso,NM,88345 -Ruidoso Downs,NM,88346 -Sacramento,NM,88347 -San Patricio,NM,88348 -Tinnie,NM,88351 -Tularosa,NM,88352 -Vaughn,NM,88353 -Weed,NM,88354 -Tucumcari,NM,88401 -Amistad,NM,88410 -Bard,NM,88411 -Bueyeros,NM,88412 -Capulin,NM,88414 -Clayton,NM,88415 -Conchas Dam,NM,88416 -Cuervo,NM,88417 -Des Moines,NM,88418 -Folsom,NM,88419 -Garita,NM,88421 -Gladstone,NM,88422 -Grenville,NM,88424 -Logan,NM,88426 -Mc Alister,NM,88427 -Mount Dora,NM,88429 -Nara Visa,NM,88430 -Newkirk,NM,88431 -Puerto De Luna,NM,88432 -Quay,NM,88433 -San Jon,NM,88434 -Pastura,NM,88435 -Sedan,NM,88436 -Seneca,NM,88437 -Stead,NM,88438 -Trementina,NM,88439 -Bell Ranch,NM,88441 -Fishers Island,NY,6390 -New York,NY,10001 -New York,NY,10002 -New York,NY,10003 -Governors Island,NY,10004 -New York,NY,10005 -New York,NY,10006 -New York,NY,10007 -New York,NY,10009 -New York,NY,10010 -New York,NY,10011 -New York,NY,10012 -New York,NY,10013 -New York,NY,10014 -New York,NY,10016 -New York,NY,10017 -New York,NY,10018 -New York,NY,10019 -New York,NY,10020 -New York,NY,10021 -New York,NY,10022 -New York,NY,10023 -New York,NY,10024 -New York,NY,10025 -New York,NY,10026 -New York,NY,10027 -New York,NY,10028 -New York,NY,10029 -New York,NY,10030 -New York,NY,10031 -New York,NY,10032 -New York,NY,10033 -New York,NY,10034 -New York,NY,10035 -New York,NY,10036 -New York,NY,10037 -New York,NY,10038 -New York,NY,10039 -New York,NY,10040 -New York,NY,10044 -New York,NY,10128 -New York,NY,10280 -Staten Island,NY,10301 -Staten Island,NY,10302 -Staten Island,NY,10303 -Staten Island,NY,10304 -Staten Island,NY,10305 -Staten Island,NY,10306 -Staten Island,NY,10307 -Staten Island,NY,10308 -Staten Island,NY,10309 -Staten Island,NY,10310 -Staten Island,NY,10312 -Staten Island,NY,10314 -Bronx,NY,10451 -Bronx,NY,10452 -Bronx,NY,10453 -Bronx,NY,10454 -Bronx,NY,10455 -Bronx,NY,10456 -Bronx,NY,10457 -Bronx,NY,10458 -Bronx,NY,10459 -Bronx,NY,10460 -Bronx,NY,10461 -Bronx,NY,10462 -Bronx,NY,10463 -Bronx,NY,10464 -Bronx,NY,10465 -Bronx,NY,10466 -Bronx,NY,10467 -Bronx,NY,10468 -Bronx,NY,10469 -Bronx,NY,10470 -Bronx,NY,10471 -Bronx,NY,10472 -Bronx,NY,10473 -Bronx,NY,10474 -Bronx,NY,10475 -Amawalk,NY,10501 -Ardsley,NY,10502 -Armonk,NY,10504 -Bedford,NY,10506 -Bedford Hills,NY,10507 -Brewster,NY,10509 -Briarcliff Manor,NY,10510 -Buchanan,NY,10511 -Carmel,NY,10512 -Chappaqua,NY,10514 -Cold Spring,NY,10516 -Cross River,NY,10518 -Croton On Hudson,NY,10520 -Dobbs Ferry,NY,10522 -Elmsford,NY,10523 -Garrison,NY,10524 -Granite Springs,NY,10527 -Harrison,NY,10528 -Hartsdale,NY,10530 -Hawthorne,NY,10532 -Irvington,NY,10533 -Jefferson Valley,NY,10535 -Katonah,NY,10536 -Lake Peekskill,NY,10537 -Larchmont,NY,10538 -Mahopac,NY,10541 -Mamaroneck,NY,10543 -Millwood,NY,10546 -Mohegan Lake,NY,10547 -Montrose,NY,10548 -Mount Kisco,NY,10549 -Mount Vernon,NY,10550 -Mount Vernon,NY,10552 -Mount Vernon,NY,10553 -North Salem,NY,10560 -Ossining,NY,10562 -Cortlandt Manor,NY,10566 -Pleasantville,NY,10570 -Rye Brook,NY,10573 -Pound Ridge,NY,10576 -Purchase,NY,10577 -Purdys,NY,10578 -Putnam Valley,NY,10579 -Rye,NY,10580 -Heathcote,NY,10583 -Shrub Oak,NY,10588 -Somers,NY,10589 -South Salem,NY,10590 -North Tarrytown,NY,10591 -Thornwood,NY,10594 -Valhalla,NY,10595 -Waccabuc,NY,10597 -Yorktown Heights,NY,10598 -White Plains,NY,10601 -White Plains,NY,10603 -East White Plain,NY,10604 -White Plains,NY,10605 -White Plains,NY,10606 -White Plains,NY,10607 -Yonkers,NY,10701 -Yonkers,NY,10703 -Yonkers,NY,10704 -Yonkers,NY,10705 -Hastings On Huds,NY,10706 -Tuckahoe,NY,10707 -Bronxville,NY,10708 -Eastchester,NY,10709 -Yonkers,NY,10710 -New Rochelle,NY,10801 -Pelham,NY,10803 -New Rochelle,NY,10804 -New Rochelle,NY,10805 -Suffern,NY,10901 -Bear Mountain,NY,10911 -Blauvelt,NY,10913 -Campbell Hall,NY,10916 -Central Valley,NY,10917 -Chester,NY,10918 -Circleville,NY,10919 -Congers,NY,10920 -Florida,NY,10921 -Garnerville,NY,10923 -Goshen,NY,10924 -Greenwood Lake,NY,10925 -Harriman,NY,10926 -Haverstraw,NY,10927 -Highland Falls,NY,10928 -Highland Mills,NY,10930 -Hillburn,NY,10931 -Scotchtown,NY,10940 -Monroe,NY,10950 -Monsey,NY,10952 -Bardonia,NY,10954 -New City,NY,10956 -New Hampton,NY,10958 -Nyack,NY,10960 -Orangeburg,NY,10962 -Otisville,NY,10963 -Palisades,NY,10964 -Pearl River,NY,10965 -Piermont,NY,10968 -Pine Island,NY,10969 -Pomona,NY,10970 -Slate Hill,NY,10973 -Sterlington,NY,10974 -Southfields,NY,10975 -Sparkill,NY,10976 -Chestnut Ridge,NY,10977 -Stony Point,NY,10980 -Tappan,NY,10983 -Thiells,NY,10984 -Thompson Ridge,NY,10985 -Tomkins Cove,NY,10986 -Tuxedo Park,NY,10987 -Valley Cottage,NY,10989 -Warwick,NY,10990 -Washingtonville,NY,10992 -West Haverstraw,NY,10993 -West Nyack,NY,10994 -West Point,NY,10996 -Westtown,NY,10998 -Floral Park,NY,11001 -Alden Manor,NY,11003 -Glen Oaks,NY,11004 -Franklin Square,NY,11010 -Great Neck,NY,11020 -Great Neck,NY,11021 -Great Neck,NY,11023 -Kings Point Cont,NY,11024 -Plandome,NY,11030 -Hillside Manor,NY,11040 -New Hyde Park,NY,11042 -Port Washington,NY,11050 -Astoria,NY,11101 -Astoria,NY,11102 -Astoria,NY,11103 -Sunnyside,NY,11104 -Astoria,NY,11105 -Astoria,NY,11106 -Brooklyn,NY,11201 -Brooklyn,NY,11203 -Brooklyn,NY,11204 -Brooklyn,NY,11205 -Brooklyn,NY,11206 -Brooklyn,NY,11207 -Brooklyn,NY,11208 -Brooklyn,NY,11209 -Brooklyn,NY,11210 -Brooklyn,NY,11211 -Brooklyn,NY,11212 -Brooklyn,NY,11213 -Brooklyn,NY,11214 -Brooklyn,NY,11215 -Brooklyn,NY,11216 -Brooklyn,NY,11217 -Brooklyn,NY,11218 -Brooklyn,NY,11219 -Brooklyn,NY,11220 -Brooklyn,NY,11221 -Brooklyn,NY,11222 -Brooklyn,NY,11223 -Brooklyn,NY,11224 -Brooklyn,NY,11225 -Brooklyn,NY,11226 -Brooklyn,NY,11228 -Brooklyn,NY,11229 -Brooklyn,NY,11230 -Brooklyn,NY,11231 -Brooklyn,NY,11232 -Brooklyn,NY,11233 -Brooklyn,NY,11234 -Brooklyn,NY,11235 -Brooklyn,NY,11236 -Brooklyn,NY,11237 -Brooklyn,NY,11238 -Brooklyn,NY,11239 -Brooklyn Navy Ya,NY,11251 -Flushing,NY,11354 -Flushing,NY,11355 -College Point,NY,11356 -Whitestone,NY,11357 -Flushing,NY,11358 -Fort Totten,NY,11359 -Bayside,NY,11360 -Bayside,NY,11361 -Little Neck,NY,11362 -Little Neck,NY,11363 -Flushing,NY,11364 -Fresh Meadows,NY,11365 -Fresh Meadows,NY,11366 -Flushing,NY,11367 -Corona,NY,11368 -East Elmhurst,NY,11369 -East Elmhurst,NY,11370 -Flushing,NY,11371 -Jackson Heights,NY,11372 -Jackson Heights,NY,11373 -Rego Park,NY,11374 -Forest Hills,NY,11375 -Woodside,NY,11377 -Maspeth,NY,11378 -Middle Village,NY,11379 -Ridgewood,NY,11385 -Cambria Heights,NY,11411 -Kew Gardens,NY,11412 -Springfield Gard,NY,11413 -Kew Gardens,NY,11414 -Kew Gardens,NY,11415 -Ozone Park,NY,11416 -Ozone Park,NY,11417 -Richmond Hill,NY,11418 -S Richmond Hill,NY,11419 -S Ozone Park,NY,11420 -Woodhaven,NY,11421 -Rosedale,NY,11422 -Hollis,NY,11423 -Bellerose,NY,11426 -Queens Village,NY,11427 -Queens Village,NY,11428 -Queens Village,NY,11429 -Jamaica,NY,11430 -Jamaica,NY,11432 -Jamaica,NY,11433 -Jamaica,NY,11434 -Jamaica,NY,11435 -Jamaica,NY,11436 -Mineola,NY,11501 -Albertson,NY,11507 -Atlantic Beach,NY,11509 -Baldwin,NY,11510 -Carle Place,NY,11514 -Cedarhurst,NY,11516 -East Rockaway,NY,11518 -Freeport,NY,11520 -Garden City,NY,11530 -Glen Cove,NY,11542 -Glen Head,NY,11545 -Greenvale,NY,11548 -Hempstead,NY,11550 -West Hempstead,NY,11552 -Uniondale,NY,11553 -East Meadow,NY,11554 -Hewlett,NY,11557 -Island Park,NY,11558 -Lawrence,NY,11559 -Locust Valley,NY,11560 -Long Beach,NY,11561 -Lynbrook,NY,11563 -Malverne,NY,11565 -North Merrick,NY,11566 -Old Westbury,NY,11568 -Rockville Centre,NY,11570 -Oceanside,NY,11572 -Roosevelt,NY,11575 -Roslyn,NY,11576 -Roslyn Heights,NY,11577 -Sea Cliff,NY,11579 -Valley Stream,NY,11580 -North Woodmere,NY,11581 -Westbury,NY,11590 -Williston Park,NY,11596 -Woodmere,NY,11598 -Far Rockaway,NY,11691 -Far Rockaway,NY,11692 -Far Rockaway,NY,11693 -Far Rockaway,NY,11694 -Inwood,NY,11696 -Far Rockaway,NY,11697 -Amityville,NY,11701 -Oak Beach,NY,11702 -North Babylon,NY,11703 -West Babylon,NY,11704 -Bayport,NY,11705 -Kismet,NY,11706 -Bayville,NY,11709 -North Bellmore,NY,11710 -Bellport,NY,11713 -Bethpage,NY,11714 -Blue Point,NY,11715 -Bohemia,NY,11716 -West Brentwood,NY,11717 -Brightwaters,NY,11718 -Brookhaven,NY,11719 -Centereach,NY,11720 -Centerport,NY,11721 -Central Islip,NY,11722 -Cold Spring Harb,NY,11724 -Commack,NY,11725 -Copiague,NY,11726 -Coram,NY,11727 -Deer Park,NY,11729 -East Islip,NY,11730 -Elwood,NY,11731 -East Norwich,NY,11732 -Setauket,NY,11733 -South Farmingdal,NY,11735 -Farmingville,NY,11738 -Greenlawn,NY,11740 -Holbrook,NY,11741 -Holtsville,NY,11742 -Halesite,NY,11743 -Dix Hills,NY,11746 -Melville,NY,11747 -Islip,NY,11751 -Islip Terrace,NY,11752 -Jericho,NY,11753 -Kings Park,NY,11754 -Lake Grove,NY,11755 -Levittown,NY,11756 -Lindenhurst,NY,11757 -North Massapequa,NY,11758 -Massapequa Park,NY,11762 -Medford,NY,11763 -Miller Place,NY,11764 -Mill Neck,NY,11765 -Mount Sinai,NY,11766 -Nesconset,NY,11767 -Northport,NY,11768 -Oakdale,NY,11769 -Oyster Bay,NY,11771 -Davis Park,NY,11772 -Port Jefferson S,NY,11776 -Port Jefferson,NY,11777 -Rocky Point,NY,11778 -Lake Ronkonkoma,NY,11779 -Saint James,NY,11780 -Cherry Grove,NY,11782 -Seaford,NY,11783 -Selden,NY,11784 -Shoreham,NY,11786 -Smithtown,NY,11787 -Hauppauge,NY,11788 -Sound Beach,NY,11789 -Stony Brook,NY,11790 -Syosset,NY,11791 -Wading River,NY,11792 -Wantagh,NY,11793 -Suny Stony Brook,NY,11794 -West Islip,NY,11795 -West Sayville,NY,11796 -Woodbury,NY,11797 -Wheatley Heights,NY,11798 -Hicksville,NY,11801 -Plainview,NY,11803 -Old Bethpage,NY,11804 -Riverhead,NY,11901 -Calverton,NY,11933 -Center Moriches,NY,11934 -Cutchogue,NY,11935 -East Hampton,NY,11937 -East Marion,NY,11939 -East Moriches,NY,11940 -Eastport,NY,11941 -East Quogue,NY,11942 -Greenport,NY,11944 -Hampton Bays,NY,11946 -Laurel,NY,11948 -Manorville,NY,11949 -Mastic,NY,11950 -Mastic Beach,NY,11951 -Mattituck,NY,11952 -Middle Island,NY,11953 -Montauk,NY,11954 -Moriches,NY,11955 -Orient,NY,11957 -Ridge,NY,11961 -Sag Harbor,NY,11963 -Shelter Island,NY,11964 -Shelter Island H,NY,11965 -Shirley,NY,11967 -Southampton,NY,11968 -Southold,NY,11971 -Water Mill,NY,11976 -Westhampton,NY,11977 -Westhampton Beac,NY,11978 -Yaphank,NY,11980 -Alcove,NY,12007 -Alplaus,NY,12008 -Altamont,NY,12009 -West Charlton,NY,12010 -Athens,NY,12015 -Austerlitz,NY,12017 -Averill Park,NY,12018 -Ballston Lake,NY,12019 -Ballston Spa,NY,12020 -Berlin,NY,12022 -Berne,NY,12023 -Brainard,NY,12024 -Broadalbin,NY,12025 -Burnt Hills,NY,12027 -Buskirk,NY,12028 -Canaan,NY,12029 -Carlisle,NY,12031 -Caroga Lake,NY,12032 -Castleton On Hud,NY,12033 -Central Bridge,NY,12035 -Charlotteville,NY,12036 -Chatham,NY,12037 -Clarksville,NY,12041 -Climax,NY,12042 -Cobleskill,NY,12043 -Coeymans Hollow,NY,12046 -Cohoes,NY,12047 -Coxsackie,NY,12051 -Cropseyville,NY,12052 -Delanson,NY,12053 -Delmar,NY,12054 -Dormansville,NY,12055 -Duanesburg,NY,12056 -White Creek,NY,12057 -Earlton,NY,12058 -East Berne,NY,12059 -East Chatham,NY,12060 -East Greenbush,NY,12061 -East Nassau,NY,12062 -East Worcester,NY,12064 -Clifton Park,NY,12065 -Esperance,NY,12066 -Feura Bush,NY,12067 -Fonda,NY,12068 -Fort Johnson,NY,12070 -Fultonham,NY,12071 -Fultonville,NY,12072 -Galway,NY,12074 -Ghent,NY,12075 -Gilboa,NY,12076 -Glenmont,NY,12077 -Gloversville,NY,12078 -Greenville,NY,12083 -Guilderland,NY,12084 -Hagaman,NY,12086 -Hannacroix,NY,12087 -Hoosick Falls,NY,12090 -Howes Cave,NY,12092 -Jefferson,NY,12093 -Johnsonville,NY,12094 -Johnstown,NY,12095 -Kinderhook,NY,12106 -Lake Pleasant,NY,12108 -Latham,NY,12110 -Lawyersville,NY,12113 -Malden Bridge,NY,12115 -Maryland,NY,12116 -Mayfield,NY,12117 -Mechanicville,NY,12118 -Medusa,NY,12120 -Melrose,NY,12121 -Middleburgh,NY,12122 -Nassau,NY,12123 -New Lebanon,NY,12125 -Niverville,NY,12130 -North Blenheim,NY,12131 -Edinburg,NY,12134 -Norton Hill,NY,12135 -Old Chatham,NY,12136 -Pattersonville,NY,12137 -Taconic Lake,NY,12138 -Piseco,NY,12139 -Poestenkill,NY,12140 -Ravena,NY,12143 -Rensselaer,NY,12144 -Rensselaerville,NY,12147 -Rexford,NY,12148 -Richmondville,NY,12149 -Rotterdam Juncti,NY,12150 -Round Lake,NY,12151 -Sand Lake,NY,12153 -Schaghticoke,NY,12154 -Schenevus,NY,12155 -Schodack Landing,NY,12156 -Schoharie,NY,12157 -Selkirk,NY,12158 -Slingerlands,NY,12159 -Sloansville,NY,12160 -Speculator,NY,12164 -Spencertown,NY,12165 -Sprakers,NY,12166 -Stamford,NY,12167 -Stephentown,NY,12168 -Stephentown,NY,12169 -Stillwater,NY,12170 -Stuyvesant,NY,12173 -Summit,NY,12175 -Surprise,NY,12176 -Troy,NY,12180 -Troy,NY,12182 -Green Island,NY,12183 -Valatie,NY,12184 -Valley Falls,NY,12185 -Voorheesville,NY,12186 -Warnerville,NY,12187 -Waterford,NY,12188 -Watervliet,NY,12189 -Wells,NY,12190 -West Coxsackie,NY,12192 -Westerlo,NY,12193 -West Fulton,NY,12194 -West Sand Lake,NY,12196 -Worcester,NY,12197 -Wynantskill,NY,12198 -Albany,NY,12202 -Mc Kownville,NY,12203 -Albany,NY,12204 -Roessleville,NY,12205 -Albany,NY,12206 -Albany,NY,12207 -Albany,NY,12208 -Albany,NY,12209 -Albany,NY,12210 -Loudonville,NY,12211 -Mayfair,NY,12302 -Rotterdam,NY,12303 -Schenectady,NY,12304 -Schenectady,NY,12305 -Schenectady,NY,12306 -Schenectady,NY,12307 -Schenectady,NY,12308 -Niskayuna,NY,12309 -Eddyville,NY,12401 -Accord,NY,12404 -Acra,NY,12405 -Arkville,NY,12406 -Ashland,NY,12407 -Shady,NY,12409 -Oliverea,NY,12410 -Bloomington,NY,12411 -Boiceville,NY,12412 -Cairo,NY,12413 -Catskill,NY,12414 -Chichester,NY,12416 -Cornwallville,NY,12418 -Cottekill,NY,12419 -Denver,NY,12421 -Durham,NY,12422 -East Durham,NY,12423 -East Jewett,NY,12424 -Elka Park,NY,12427 -Ellenville,NY,12428 -Halcott Center,NY,12430 -Freehold,NY,12431 -Glenford,NY,12433 -Grand Gorge,NY,12434 -Greenfield Park,NY,12435 -East Windham,NY,12439 -High Falls,NY,12440 -Hunter,NY,12442 -Hurley,NY,12443 -Jewett,NY,12444 -Kerhonkson,NY,12446 -Lake Hill,NY,12448 -Lake Katrine,NY,12449 -Lanesville,NY,12450 -Leeds,NY,12451 -Maplecrest,NY,12454 -Kelly Corners,NY,12455 -Mount Marion,NY,12456 -Mount Tremper,NY,12457 -Napanoch,NY,12458 -Oak Hill,NY,12460 -Krumville,NY,12461 -12462,NY,12462 -Palenville,NY,12463 -Phoenicia,NY,12464 -Pine Hill,NY,12465 -Port Ewen,NY,12466 -Prattsville,NY,12468 -Preston Hollow,NY,12469 -Purling,NY,12470 -Rosendale,NY,12472 -Round Top,NY,12473 -Roxbury,NY,12474 -Saugerties,NY,12477 -Shandaken,NY,12480 -Shokan,NY,12481 -South Cairo,NY,12482 -Stone Ridge,NY,12484 -Tannersville,NY,12485 -Tillson,NY,12486 -Ulster Park,NY,12487 -West Hurley,NY,12491 -West Kill,NY,12492 -West Shokan,NY,12494 -Willow,NY,12495 -Windham,NY,12496 -Woodstock,NY,12498 -Amenia,NY,12501 -Ancram,NY,12502 -Ancramdale,NY,12503 -Barrytown,NY,12507 -Beacon,NY,12508 -Claverack,NY,12513 -Clinton Corners,NY,12514 -Clintondale,NY,12515 -Copake,NY,12516 -Copake Falls,NY,12517 -Cornwall,NY,12518 -Cornwall On Huds,NY,12520 -Craryville,NY,12521 -Dover Plains,NY,12522 -Elizaville,NY,12523 -Fishkill,NY,12524 -Gardiner,NY,12525 -Germantown,NY,12526 -Highland,NY,12528 -Hillsdale,NY,12529 -Holmes,NY,12531 -Hopewell Junctio,NY,12533 -Hudson,NY,12534 -Hyde Park,NY,12538 -Lagrangeville,NY,12540 -Marlboro,NY,12542 -Maybrook,NY,12543 -Millbrook,NY,12545 -Millerton,NY,12546 -Milton,NY,12547 -Modena,NY,12548 -Montgomery,NY,12549 -Middle Hope,NY,12550 -New Windsor,NY,12553 -Mohonk Lake,NY,12561 -Patterson,NY,12563 -Pawling,NY,12564 -Pine Bush,NY,12566 -Pine Plains,NY,12567 -Pleasant Valley,NY,12569 -Poughquag,NY,12570 -Red Hook,NY,12571 -Rhinebeck,NY,12572 -Rock Tavern,NY,12575 -Salisbury Mills,NY,12577 -Salt Point,NY,12578 -Staatsburg,NY,12580 -Stanfordville,NY,12581 -Stormville,NY,12582 -Tivoli,NY,12583 -Verbank,NY,12585 -Walden,NY,12586 -Wallkill,NY,12589 -New Hamburg,NY,12590 -Wassaic,NY,12592 -Wingdale,NY,12594 -South Road,NY,12601 -Arlington,NY,12603 -Monticello,NY,12701 -Barryville,NY,12719 -Bethel,NY,12720 -Bloomingburg,NY,12721 -Callicoon,NY,12723 -Claryville,NY,12725 -Fosterdale,NY,12726 -Cochecton Center,NY,12727 -Cuddebackville,NY,12729 -Eldred,NY,12732 -Fallsburg,NY,12733 -Grossinger,NY,12734 -Fremont Center,NY,12736 -Glen Spey,NY,12737 -Glen Wild,NY,12738 -Godeffroy,NY,12739 -Grahamsville,NY,12740 -Mileses,NY,12741 -Harris,NY,12742 -Highland Lake,NY,12743 -Hortonville,NY,12745 -Huguenot,NY,12746 -Hurleyville,NY,12747 -Jeffersonville,NY,12748 -Kenoza Lake,NY,12750 -Kiamesha Lake,NY,12751 -Lake Huntington,NY,12752 -Lew Beach,NY,12753 -Liberty,NY,12754 -Livingston Manor,NY,12758 -Loch Sheldrake,NY,12759 -Long Eddy,NY,12760 -Mongaup Valley,NY,12762 -Mountain Dale,NY,12763 -Narrowsburg,NY,12764 -Neversink,NY,12765 -North Branch,NY,12766 -Parksville,NY,12768 -Pond Eddy,NY,12770 -Port Jervis,NY,12771 -Rock Hill,NY,12775 -Cook Falls,NY,12776 -Forestburgh,NY,12777 -South Fallsburg,NY,12779 -Sparrowbush,NY,12780 -Sundown,NY,12782 -Swan Lake,NY,12783 -White Lake,NY,12786 -White Sulphur Sp,NY,12787 -Woodbourne,NY,12788 -Woodridge,NY,12789 -Wurtsboro,NY,12790 -Youngsville,NY,12791 -Yulan,NY,12792 -Queensbury,NY,12801 -South Glens Fall,NY,12803 -Queensbury,NY,12804 -Adirondack,NY,12808 -Argyle,NY,12809 -Athol,NY,12810 -Blue Mountain La,NY,12812 -Bolton Landing,NY,12814 -Brant Lake,NY,12815 -Cambridge,NY,12816 -Chestertown,NY,12817 -Clemons,NY,12819 -Comstock,NY,12821 -Corinth,NY,12822 -Cossayuna,NY,12823 -Diamond Point,NY,12824 -East Greenwich,NY,12826 -Fort Ann,NY,12827 -Fort Edward,NY,12828 -Gansevoort,NY,12831 -Granville,NY,12832 -Greenfield Cente,NY,12833 -Thomson,NY,12834 -Hadley,NY,12835 -Hague,NY,12836 -Hampton,NY,12837 -Hartford,NY,12838 -Hudson Falls,NY,12839 -Indian Lake,NY,12842 -Johnsburg,NY,12843 -Pilot Knob,NY,12844 -Lake George,NY,12845 -Lake Luzerne,NY,12846 -Long Lake,NY,12847 -Middle Granville,NY,12849 -Middle Grove,NY,12850 -Minerva,NY,12851 -Newcomb,NY,12852 -North Creek,NY,12853 -North Granville,NY,12854 -North Hudson,NY,12855 -Olmstedville,NY,12857 -Paradox,NY,12858 -Porter Corners,NY,12859 -Pottersville,NY,12860 -Putnam Station,NY,12861 -Rock City Falls,NY,12863 -Salem,NY,12865 -Wilton,NY,12866 -Schroon Lake,NY,12870 -Schuylerville,NY,12871 -Severance,NY,12872 -Shushan,NY,12873 -Silver Bay,NY,12874 -Stony Creek,NY,12878 -Ticonderoga,NY,12883 -Warrensburg,NY,12885 -Wevertown,NY,12886 -Whitehall,NY,12887 -Plattsburgh,NY,12901 -Altona,NY,12910 -Au Sable Chasm,NY,12911 -Au Sable Forks,NY,12912 -Bloomingdale,NY,12913 -Bombay,NY,12914 -Brushton,NY,12916 -Burke,NY,12917 -Cadyville,NY,12918 -Champlain,NY,12919 -Chateaugay,NY,12920 -Chazy,NY,12921 -Childwold,NY,12922 -Churubusco,NY,12923 -Keeseville,NY,12924 -Constable,NY,12926 -Crown Point,NY,12928 -Dickinson Center,NY,12930 -Elizabethtown,NY,12932 -Ellenburg Center,NY,12934 -Ellenburg Depot,NY,12935 -Essex,NY,12936 -Fort Covington,NY,12937 -Nicholville,NY,12938 -Jay,NY,12941 -Keene,NY,12942 -Saint Huberts,NY,12943 -Keeseville,NY,12944 -Upper Saint Regi,NY,12945 -North Pole,NY,12946 -Lawrenceville,NY,12949 -Lewis,NY,12950 -Lyon Mountain,NY,12952 -Malone,NY,12953 -Merrill,NY,12955 -Mineville,NY,12956 -Moira,NY,12957 -Mooers,NY,12958 -Mooers Forks,NY,12959 -Moriah,NY,12960 -Moriah Center,NY,12961 -Morrisonville,NY,12962 -New Russia,NY,12964 -Nicholville,NY,12965 -Bangor,NY,12966 -North Lawrence,NY,12967 -Onchiota,NY,12968 -Owls Head,NY,12969 -Paul Smiths,NY,12970 -Peru,NY,12972 -Piercefield,NY,12973 -Port Henry,NY,12974 -Redford,NY,12978 -Rouses Point,NY,12979 -Saint Regis Fall,NY,12980 -Saranac,NY,12981 -Saranac Lake,NY,12983 -Schuyler Falls,NY,12985 -Sunmount,NY,12986 -Upper Jay,NY,12987 -Vermontville,NY,12989 -West Chazy,NY,12992 -Westport,NY,12993 -Whallonsburg,NY,12994 -Willsboro,NY,12996 -Wilmington,NY,12997 -Auburn,NY,13021 -Aurora,NY,13026 -Baldwinsville,NY,13027 -Bernhards Bay,NY,13028 -Brewerton,NY,13029 -Bridgeport,NY,13030 -Camillus,NY,13031 -Canastota,NY,13032 -Cato,NY,13033 -Cayuga,NY,13034 -Cazenovia,NY,13035 -Central Square,NY,13036 -Chittenango,NY,13037 -Cicero,NY,13039 -Cincinnatus,NY,13040 -Clay,NY,13041 -Cleveland,NY,13042 -Constantia,NY,13044 -Cortland,NY,13045 -Cuyler,NY,13050 -De Ruyter,NY,13052 -Dryden,NY,13053 -Durhamville,NY,13054 -East Freetown,NY,13055 -East Syracuse,NY,13057 -Elbridge,NY,13060 -Erieville,NY,13061 -Fabius,NY,13063 -Fayetteville,NY,13066 -Freeville,NY,13068 -Fulton,NY,13069 -Genoa,NY,13071 -Georgetown,NY,13072 -Groton,NY,13073 -Hannibal,NY,13074 -Hastings,NY,13076 -Homer,NY,13077 -Jamesville,NY,13078 -Jordan,NY,13080 -King Ferry,NY,13081 -Kirkville,NY,13082 -Lacona,NY,13083 -La Fayette,NY,13084 -Lebanon,NY,13085 -Liverpool,NY,13088 -Bayberry,NY,13090 -Locke,NY,13092 -Mc Graw,NY,13101 -Mallory,NY,13103 -Manlius,NY,13104 -Marcellus,NY,13108 -Marietta,NY,13110 -Martville,NY,13111 -Memphis,NY,13112 -Mexico,NY,13114 -Minoa,NY,13116 -Moravia,NY,13118 -Nedrow,NY,13120 -New Woodstock,NY,13122 -North Pitcher,NY,13124 -Oswego,NY,13126 -Parish,NY,13131 -Pennellville,NY,13132 -Phoenix,NY,13135 -Pitcher,NY,13136 -Port Byron,NY,13140 -Preble,NY,13141 -Pulaski,NY,13142 -Red Creek,NY,13143 -Richland,NY,13144 -Sandy Creek,NY,13145 -Savannah,NY,13146 -Venice Center,NY,13147 -Seneca Falls,NY,13148 -Skaneateles,NY,13152 -South Otselic,NY,13155 -Sterling,NY,13156 -Truxton,NY,13158 -Tully,NY,13159 -Union Springs,NY,13160 -Warners,NY,13164 -Waterloo,NY,13165 -Weedsport,NY,13166 -West Monroe,NY,13167 -Syracuse,NY,13202 -Syracuse,NY,13203 -Syracuse,NY,13204 -Syracuse,NY,13205 -Syracuse,NY,13206 -Syracuse,NY,13207 -Syracuse,NY,13208 -Solvay,NY,13209 -Syracuse,NY,13210 -Mattydale,NY,13211 -North Syracuse,NY,13212 -De Witt,NY,13214 -Onondaga,NY,13215 -Syracuse,NY,13219 -Syracuse,NY,13224 -Alder Creek,NY,13301 -Altmar,NY,13302 -Ava,NY,13303 -Barneveld,NY,13304 -Blossvale,NY,13308 -Boonville,NY,13309 -Bouckville,NY,13310 -Brookfield,NY,13314 -Burlington Flats,NY,13315 -Camden,NY,13316 -Ames,NY,13317 -Cassville,NY,13318 -Chadwicks,NY,13319 -Cherry Valley,NY,13320 -Clayville,NY,13322 -Clinton,NY,13323 -Cold Brook,NY,13324 -Constableville,NY,13325 -Cooperstown,NY,13326 -Croghan,NY,13327 -Deansboro,NY,13328 -Dolgeville,NY,13329 -Eagle Bay,NY,13331 -Earlville,NY,13332 -East Springfield,NY,13333 -Eaton,NY,13334 -Edmeston,NY,13335 -Fly Creek,NY,13337 -Forestport,NY,13338 -Fort Plain,NY,13339 -Frankfort,NY,13340 -Garrattsville,NY,13342 -Glenfield,NY,13343 -Greig,NY,13345 -Hamilton,NY,13346 -Hartwick,NY,13348 -Herkimer,NY,13350 -Hoffmeister,NY,13353 -Holland Patent,NY,13354 -Hubbardsville,NY,13355 -Ilion,NY,13357 -Inlet,NY,13360 -Jordanville,NY,13361 -Lee Center,NY,13363 -Little Falls,NY,13365 -Beaver River,NY,13367 -Lyons Falls,NY,13368 -Mc Connellsville,NY,13401 -Madison,NY,13402 -Marcy,NY,13403 -Middleville,NY,13406 -Mohawk,NY,13407 -Morrisville,NY,13408 -Munnsville,NY,13409 -New Berlin,NY,13411 -New Hartford,NY,13413 -New Lisbon,NY,13415 -Newport,NY,13416 -New York Mills,NY,13417 -North Brookfield,NY,13418 -Old Forge,NY,13420 -Oneida,NY,13421 -Oriskany,NY,13424 -Oriskany Falls,NY,13425 -Palatine Bridge,NY,13428 -Poland,NY,13431 -Port Leyden,NY,13433 -Raquette Lake,NY,13436 -Redfield,NY,13437 -Remsen,NY,13438 -Richfield Spring,NY,13439 -Rome,NY,13440 -Roseboom,NY,13450 -Saint Johnsville,NY,13452 -Salisbury Center,NY,13454 -Sauquoit,NY,13456 -Sharon Springs,NY,13459 -Sherburne,NY,13460 -Sherrill,NY,13461 -Smyrna,NY,13464 -South Edmeston,NY,13466 -Springfield Cent,NY,13468 -Stittville,NY,13469 -Stratford,NY,13470 -Taberg,NY,13471 -Turin,NY,13473 -Van Hornesville,NY,13475 -Vernon,NY,13476 -Vernon Center,NY,13477 -Verona,NY,13478 -Waterville,NY,13480 -West Burlington,NY,13482 -Westdale,NY,13483 -West Edmeston,NY,13485 -Westernville,NY,13486 -Westford,NY,13488 -West Leyden,NY,13489 -Westmoreland,NY,13490 -West Winfield,NY,13491 -Whitesboro,NY,13492 -Williamstown,NY,13493 -Woodgate,NY,13494 -Yorkville,NY,13495 -Utica,NY,13501 -Utica,NY,13502 -Watertown,NY,13601 -Fort Drum,NY,13602 -Fort Drum,NY,13603 -Smithville,NY,13605 -Adams Center,NY,13606 -Point Vivian,NY,13607 -Antwerp,NY,13608 -Belleville,NY,13611 -Black River,NY,13612 -Brasher Falls,NY,13613 -Brier Hill,NY,13614 -Calcium,NY,13616 -Canton,NY,13617 -Cape Vincent,NY,13618 -Carthage,NY,13619 -Castorland,NY,13620 -Chase Mills,NY,13621 -Chaumont,NY,13622 -Frontenac,NY,13624 -Colton,NY,13625 -Copenhagen,NY,13626 -De Kalb Junction,NY,13630 -De Peyster,NY,13633 -Dexter,NY,13634 -Edwards,NY,13635 -Ellisburg,NY,13636 -Evans Mills,NY,13637 -Felts Mills,NY,13638 -Gouverneur,NY,13642 -Hammond,NY,13646 -Harrisville,NY,13648 -Henderson,NY,13650 -Hermon,NY,13652 -Heuvelton,NY,13654 -Hogansburg,NY,13655 -La Fargeville,NY,13656 -Lisbon,NY,13658 -Lorraine,NY,13659 -Madrid,NY,13660 -Mannsville,NY,13661 -Massena,NY,13662 -Natural Bridge,NY,13665 -Newton Falls,NY,13666 -Norfolk,NY,13667 -Norwood,NY,13668 -Ogdensburg,NY,13669 -Oswegatchie,NY,13670 -Parishville,NY,13672 -Philadelphia,NY,13673 -Plessis,NY,13675 -Potsdam,NY,13676 -Redwood,NY,13679 -Rensselaer Falls,NY,13680 -Richville,NY,13681 -Rodman,NY,13682 -Degrasse,NY,13684 -Sackets Harbor,NY,13685 -South Colton,NY,13687 -Star Lake,NY,13690 -Theresa,NY,13691 -Three Mile Bay,NY,13693 -Waddington,NY,13694 -Wanakena,NY,13695 -West Stockholm,NY,13696 -Winthrop,NY,13697 -Woodville,NY,13698 -Afton,NY,13730 -Andes,NY,13731 -Apalachin,NY,13732 -Bainbridge,NY,13733 -Barton,NY,13734 -Berkshire,NY,13736 -Bloomville,NY,13739 -Bovina Center,NY,13740 -Candor,NY,13743 -Castle Creek,NY,13744 -Chenango Forks,NY,13746 -Conklin,NY,13748 -Davenport,NY,13750 -Davenport Center,NY,13751 -De Lancey,NY,13752 -Meredith,NY,13753 -Deposit,NY,13754 -Downsville,NY,13755 -East Branch,NY,13756 -East Meredith,NY,13757 -Endwell,NY,13760 -Franklin,NY,13775 -Gilbertsville,NY,13776 -Glen Aubrey,NY,13777 -Greene,NY,13778 -Guilford,NY,13780 -Hamden,NY,13782 -Cadosia,NY,13783 -Harpersfield,NY,13786 -Harpursville,NY,13787 -Hobart,NY,13788 -Johnson City,NY,13790 -Kirkwood,NY,13795 -Laurens,NY,13796 -Lisle,NY,13797 -Mc Donough,NY,13801 -Maine,NY,13802 -Marathon,NY,13803 -Masonville,NY,13804 -Meridale,NY,13806 -Milford,NY,13807 -Morris,NY,13808 -Mount Upton,NY,13809 -Mount Vision,NY,13810 -Newark Valley,NY,13811 -Nichols,NY,13812 -Nineveh,NY,13813 -Norwich,NY,13815 -Oneonta,NY,13820 -Otego,NY,13825 -Ouaquaga,NY,13826 -Owego,NY,13827 -Brisben,NY,13830 -Plymouth,NY,13832 -Sanitaria Spring,NY,13833 -Portlandville,NY,13834 -Richford,NY,13835 -Sidney,NY,13838 -Sidney Center,NY,13839 -Smithville Flats,NY,13841 -South Kortright,NY,13842 -South New Berlin,NY,13843 -South Plymouth,NY,13844 -Treadwell,NY,13846 -Unadilla,NY,13849 -Vestal,NY,13850 -Walton,NY,13856 -Wells Bridge,NY,13859 -West Oneonta,NY,13861 -Whitney Point,NY,13862 -Willet,NY,13863 -Willseyville,NY,13864 -Windsor,NY,13865 -Binghamton,NY,13901 -Binghamton,NY,13903 -Binghamton,NY,13904 -Binghamton,NY,13905 -Akron,NY,14001 -Alabama,NY,14003 -Alden,NY,14004 -Alexander,NY,14005 -Angola,NY,14006 -Appleton,NY,14008 -Arcade,NY,14009 -Attica,NY,14011 -Barker,NY,14012 -Basom,NY,14013 -Batavia,NY,14020 -Bliss,NY,14024 -Boston,NY,14025 -Bowmansville,NY,14026 -Burt,NY,14028 -Chaffee,NY,14030 -Clarence,NY,14031 -Clarence Center,NY,14032 -Colden,NY,14033 -Collins,NY,14034 -Corfu,NY,14036 -Cowlesville,NY,14037 -Dale,NY,14039 -Darien Center,NY,14040 -Dayton,NY,14041 -Delevan,NY,14042 -Depew,NY,14043 -Derby,NY,14047 -Van Buren Bay,NY,14048 -Swormville,NY,14051 -East Aurora,NY,14052 -East Bethany,NY,14054 -East Concord,NY,14055 -Eden,NY,14057 -Elba,NY,14058 -Elma,NY,14059 -Farmersville Sta,NY,14060 -Forestville,NY,14062 -Fredonia,NY,14063 -Freedom,NY,14065 -Gainesville,NY,14066 -Gasport,NY,14067 -Getzville,NY,14068 -Glenwood,NY,14069 -Gowanda,NY,14070 -Grand Island,NY,14072 -Hamburg,NY,14075 -Holland,NY,14080 -Irving,NY,14081 -Java Center,NY,14082 -Java Village,NY,14083 -Lake View,NY,14085 -Lancaster,NY,14086 -Lawtons,NY,14091 -Lewiston,NY,14092 -Lockport,NY,14094 -Lyndonville,NY,14098 -Machias,NY,14101 -Marilla,NY,14102 -Medina,NY,14103 -Middleport,NY,14105 -Newfane,NY,14108 -North Collins,NY,14111 -North Java,NY,14113 -North Tonawanda,NY,14120 -Oakfield,NY,14125 -Orchard Park,NY,14127 -Perrysburg,NY,14129 -Ransomville,NY,14131 -Sanborn,NY,14132 -Sardinia,NY,14134 -Silver Creek,NY,14136 -South Dayton,NY,14138 -South Wales,NY,14139 -Springville,NY,14141 -Stafford,NY,14143 -Strykersville,NY,14145 -Tonawanda,NY,14150 -Varysburg,NY,14167 -West Falls,NY,14170 -West Valley,NY,14171 -Wilson,NY,14172 -Youngstown,NY,14174 -Buffalo,NY,14201 -Buffalo,NY,14202 -Buffalo,NY,14203 -Buffalo,NY,14204 -Buffalo,NY,14206 -Buffalo,NY,14207 -Buffalo,NY,14208 -Buffalo,NY,14209 -Buffalo,NY,14210 -Buffalo,NY,14211 -Buffalo,NY,14212 -Buffalo,NY,14213 -Buffalo,NY,14214 -Buffalo,NY,14215 -Buffalo,NY,14216 -Kenmore,NY,14217 -Lackawanna,NY,14218 -Blasdell,NY,14219 -Buffalo,NY,14220 -Williamsville,NY,14221 -Buffalo,NY,14222 -Buffalo,NY,14223 -West Seneca,NY,14224 -Cheektowaga,NY,14225 -Amherst,NY,14226 -Cheektowaga,NY,14227 -Amherst,NY,14228 -Niagara Falls,NY,14301 -Niagara Falls,NY,14303 -Niagara Falls,NY,14304 -Niagara Falls,NY,14305 -Adams Basin,NY,14410 -Albion,NY,14411 -Avon,NY,14414 -Bellona,NY,14415 -Bergen,NY,14416 -Branchport,NY,14418 -Brockport,NY,14420 -Byron,NY,14422 -Caledonia,NY,14423 -Canandaigua,NY,14424 -Canandaigua,NY,14425 -Castile,NY,14427 -Clifton,NY,14428 -Clifton Springs,NY,14432 -Clyde,NY,14433 -Conesus,NY,14435 -Dansville,NY,14437 -Dresden,NY,14441 -East Rochester,NY,14445 -Fairport,NY,14450 -Geneseo,NY,14454 -Geneva,NY,14456 -Groveland,NY,14462 -Hamlin,NY,14464 -Hemlock,NY,14466 -Henrietta,NY,14467 -Hilton,NY,14468 -Bloomfield,NY,14469 -Hulberton,NY,14470 -Honeoye,NY,14471 -Honeoye Falls,NY,14472 -Ionia,NY,14475 -Kendall,NY,14476 -Kent,NY,14477 -Bluff Point,NY,14478 -Lakeville,NY,14480 -Leicester,NY,14481 -Le Roy,NY,14482 -Lima,NY,14485 -Linwood,NY,14486 -Livonia,NY,14487 -Lyons,NY,14489 -Macedon,NY,14502 -Manchester,NY,14504 -Marion,NY,14505 -Mendon,NY,14506 -Middlesex,NY,14507 -Tuscarora,NY,14510 -Naples,NY,14512 -Newark,NY,14513 -North Chili,NY,14514 -North Rose,NY,14516 -Nunda,NY,14517 -Ontario,NY,14519 -Hayt Corners,NY,14521 -Palmyra,NY,14522 -Linwood,NY,14525 -Penfield,NY,14526 -Penn Yan,NY,14527 -Perry,NY,14530 -Phelps,NY,14532 -Wadsworth,NY,14533 -Pittsford,NY,14534 -Portageville,NY,14536 -Mac Dougall,NY,14541 -West Rush,NY,14543 -Rushville,NY,14544 -Scottsburg,NY,14545 -Scottsville,NY,14546 -Shortsville,NY,14548 -Rock Glen,NY,14550 -Sodus,NY,14551 -Sodus Point,NY,14555 -Spencerport,NY,14559 -Springwater,NY,14560 -Stanley,NY,14561 -Victor,NY,14564 -Walworth,NY,14568 -Warsaw,NY,14569 -Waterport,NY,14571 -Wayland,NY,14572 -Webster,NY,14580 -West Henrietta,NY,14586 -Williamson,NY,14589 -Wolcott,NY,14590 -Wyoming,NY,14591 -Rochester,NY,14604 -Rochester,NY,14605 -Rochester,NY,14606 -Rochester,NY,14607 -Rochester,NY,14608 -Rochester,NY,14609 -Rochester,NY,14610 -Rochester,NY,14611 -Rochester,NY,14612 -Rochester,NY,14613 -Rochester,NY,14614 -Rochester,NY,14615 -Greece,NY,14616 -Rochester,NY,14617 -Twelve Corners,NY,14618 -Rochester,NY,14619 -Rochester,NY,14620 -Rochester,NY,14621 -Rochester,NY,14622 -Rochester,NY,14623 -Westgate,NY,14624 -Panorama,NY,14625 -Rochester,NY,14626 -Jamestown,NY,14701 -Allegany,NY,14706 -Alma,NY,14708 -Angelica,NY,14709 -Ashville,NY,14710 -Belfast,NY,14711 -Bemus Point,NY,14712 -Black Creek,NY,14714 -Bolivar,NY,14715 -Brocton,NY,14716 -Caneadea,NY,14717 -Cassadaga,NY,14718 -Cattaraugus,NY,14719 -Ceres,NY,14721 -Cherry Creek,NY,14723 -Clymer,NY,14724 -Conewango Valley,NY,14726 -Cuba,NY,14727 -Dewittville,NY,14728 -East Otto,NY,14729 -Ellicottville,NY,14731 -Falconer,NY,14733 -Fillmore,NY,14735 -Findley Lake,NY,14736 -Franklinville,NY,14737 -Frewsburg,NY,14738 -Friendship,NY,14739 -Gerry,NY,14740 -Great Valley,NY,14741 -Ischua,NY,14743 -Houghton,NY,14744 -Kennedy,NY,14747 -Kill Buck,NY,14748 -Lakewood,NY,14750 -Limestone,NY,14753 -Little Genesee,NY,14754 -Little Valley,NY,14755 -Mayville,NY,14757 -Olean,NY,14760 -Panama,NY,14767 -Portland,NY,14769 -Portville,NY,14770 -Randolph,NY,14772 -Ripley,NY,14775 -Rushford,NY,14777 -Salamanca,NY,14779 -Sherman,NY,14781 -Sinclairville,NY,14782 -Stockton,NY,14784 -Westfield,NY,14787 -Addison,NY,14801 -Alfred,NY,14802 -Alfred Station,NY,14803 -Almond,NY,14804 -Alpine,NY,14805 -Andover,NY,14806 -Arkport,NY,14807 -Atlanta,NY,14808 -Wallace,NY,14809 -Veterans Adminis,NY,14810 -Beaver Dams,NY,14812 -Belmont,NY,14813 -Big Flats,NY,14814 -Bradford,NY,14815 -Breesport,NY,14816 -Brooktondale,NY,14817 -Burdett,NY,14818 -Cameron,NY,14819 -Cameron Mills,NY,14820 -Campbell,NY,14821 -Canaseraga,NY,14822 -Canisteo,NY,14823 -Cayuta,NY,14824 -Chemung,NY,14825 -Cohocton,NY,14826 -Corning,NY,14830 -Dalton,NY,14836 -Dundee,NY,14837 -Erin,NY,14838 -Greenwood,NY,14839 -Hammondsport,NY,14840 -Hector,NY,14841 -Himrod,NY,14842 -Hornell,NY,14843 -Horseheads,NY,14845 -Hunt,NY,14846 -Interlaken,NY,14847 -Ithaca College,NY,14850 -Ithaca,NY,14853 -Jasper,NY,14855 -Lindley,NY,14858 -Lockwood,NY,14859 -Lodi,NY,14860 -Lowman,NY,14861 -Millport,NY,14864 -Montour Falls,NY,14865 -Newfield,NY,14867 -Odessa,NY,14869 -Painted Post,NY,14870 -Pine City,NY,14871 -Pine Valley,NY,14872 -Prattsburg,NY,14873 -Pulteney,NY,14874 -Rexville,NY,14877 -Rock Stream,NY,14878 -Savona,NY,14879 -Scio,NY,14880 -Slaterville Spri,NY,14881 -Lansing,NY,14882 -Spencer,NY,14883 -Swain,NY,14884 -Troupsburg,NY,14885 -Trumansburg,NY,14886 -Valois,NY,14888 -Van Etten,NY,14889 -Watkins Glen,NY,14891 -Waverly,NY,14892 -Wellsburg,NY,14894 -Wellsville,NY,14895 -Whitesville,NY,14897 -Woodhull,NY,14898 -Elmira,NY,14901 -Elmira Heights,NY,14903 -Elmira,NY,14904 -Elmira,NY,14905 -Advance,NC,27006 -Ararat,NC,27007 -Belews Creek,NC,27009 -Boonville,NC,27011 -Clemmons,NC,27012 -Cleveland,NC,27013 -Danbury,NC,27016 -Dobson,NC,27017 -East Bend,NC,27018 -Germanton,NC,27019 -Hamptonville,NC,27020 -King,NC,27021 -Lawsonville,NC,27022 -Lewisville,NC,27023 -Lowgap,NC,27024 -Madison,NC,27025 -Mayodan,NC,27027 -Mocksville,NC,27028 -Mount Airy,NC,27030 -Pfafftown,NC,27040 -Pilot Mountain,NC,27041 -Pine Hall,NC,27042 -Pinnacle,NC,27043 -Rural Hall,NC,27045 -Sandy Ridge,NC,27046 -Siloam,NC,27047 -Stoneville,NC,27048 -Tobaccoville,NC,27050 -Walkertown,NC,27051 -Walnut Cove,NC,27052 -Westfield,NC,27053 -Woodleaf,NC,27054 -Yadkinville,NC,27055 -Winston Salem,NC,27101 -Winston Salem,NC,27103 -Winston Salem,NC,27104 -Winston Salem,NC,27105 -Winston Salem,NC,27106 -Winston Salem,NC,27107 -Winston Salem,NC,27127 -Farmer,NC,27203 -Bear Creek,NC,27207 -Bennett,NC,27208 -Biscoe,NC,27209 -Blanch,NC,27212 -Browns Summit,NC,27214 -Glen Raven,NC,27215 -Burlington,NC,27217 -Candor,NC,27229 -Cedar Grove,NC,27231 -Climax,NC,27233 -Colfax,NC,27235 -Denton,NC,27239 -Eagle Springs,NC,27242 -Efland,NC,27243 -Elon College,NC,27244 -Franklinville,NC,27248 -Gibsonville,NC,27249 -Goldston,NC,27252 -Graham,NC,27253 -Haw River,NC,27258 -High Point,NC,27260 -High Point,NC,27262 -Archdale,NC,27263 -High Point,NC,27265 -Hillsborough,NC,27278 -Jackson Springs,NC,27281 -Jamestown,NC,27282 -Julian,NC,27283 -Kernersville,NC,27284 -Eden,NC,27288 -Leasburg,NC,27291 -Lexington,NC,27292 -Liberty,NC,27298 -Linwood,NC,27299 -Mc Leansville,NC,27301 -Mebane,NC,27302 -Milton,NC,27305 -Mount Gilead,NC,27306 -Oak Ridge,NC,27310 -Pelham,NC,27311 -Pittsboro,NC,27312 -Pleasant Garden,NC,27313 -Prospect Hill,NC,27314 -Providence,NC,27315 -Coleridge,NC,27316 -Randleman,NC,27317 -Reidsville,NC,27320 -Robbins,NC,27325 -Ruffin,NC,27326 -Colon,NC,27330 -Seagrove,NC,27341 -Semora,NC,27343 -Siler City,NC,27344 -Snow Camp,NC,27349 -Sophia,NC,27350 -Staley,NC,27355 -Star,NC,27356 -Stokesdale,NC,27357 -Summerfield,NC,27358 -Thomasville,NC,27360 -Trinity,NC,27370 -Troy,NC,27371 -West End,NC,27376 -Whitsett,NC,27377 -Yanceyville,NC,27379 -Greensboro,NC,27401 -Greensboro,NC,27403 -Greensboro,NC,27405 -Greensboro,NC,27406 -Greensboro,NC,27407 -Greensboro,NC,27408 -Greensboro,NC,27409 -Greensboro,NC,27410 -Angier,NC,27501 -Apex,NC,27502 -Bahama,NC,27503 -Benson,NC,27504 -Broadway,NC,27505 -Bullock,NC,27507 -Butner,NC,27509 -Carrboro,NC,27510 -Cary,NC,27511 -Cary,NC,27513 -Chapel Hill,NC,27514 -Chapel Hill,NC,27516 -Clayton,NC,27520 -Coats,NC,27521 -Creedmoor,NC,27522 -Four Oaks,NC,27524 -Franklinton,NC,27525 -Fuquay Varina,NC,27526 -Garner,NC,27529 -Grantham,NC,27530 -Seymour Johnson,NC,27531 -Goldsboro,NC,27534 -Henderson,NC,27536 -Holly Springs,NC,27540 -Hurdle Mills,NC,27541 -Kenly,NC,27542 -Kittrell,NC,27544 -Knightdale,NC,27545 -Lillington,NC,27546 -Louisburg,NC,27549 -Macon,NC,27551 -Manson,NC,27553 -Middlesex,NC,27557 -Moncure,NC,27559 -Morrisville,NC,27560 -New Hill,NC,27562 -Norlina,NC,27563 -Oxford,NC,27565 -Princeton,NC,27569 -Rolesville,NC,27571 -Rougemont,NC,27572 -Roxboro,NC,27573 -Selma,NC,27576 -Smithfield,NC,27577 -Stem,NC,27581 -Timberlake,NC,27583 -Wake Forest,NC,27587 -Warrenton,NC,27589 -Wendell,NC,27591 -Willow Spring,NC,27592 -Youngsville,NC,27596 -Zebulon,NC,27597 -Raleigh,NC,27601 -Raleigh,NC,27603 -Raleigh,NC,27604 -Raleigh,NC,27605 -Raleigh,NC,27606 -Raleigh,NC,27607 -Raleigh,NC,27608 -Raleigh,NC,27609 -Raleigh,NC,27610 -Raleigh,NC,27612 -Raleigh,NC,27613 -Raleigh,NC,27614 -Raleigh,NC,27615 -Durham,NC,27701 -Durham,NC,27703 -Durham,NC,27704 -Durham,NC,27705 -Durham,NC,27706 -Durham,NC,27707 -Durham,NC,27712 -Research Triangl,NC,27713 -Rocky Mount,NC,27801 -Rocky Mount,NC,27803 -Wesleyan College,NC,27804 -Aulander,NC,27805 -Aurora,NC,27806 -Bailey,NC,27807 -Bath,NC,27808 -Battleboro,NC,27809 -Belhaven,NC,27810 -Bethel,NC,27812 -Blounts Creek,NC,27814 -Castalia,NC,27816 -Chocowinity,NC,27817 -Como,NC,27818 -Conway,NC,27820 -Edward,NC,27821 -Elm City,NC,27822 -Enfield,NC,27823 -Middletown,NC,27824 -Fairfield,NC,27826 -Farmville,NC,27828 -Fountain,NC,27829 -Eureka,NC,27830 -Garysburg,NC,27831 -Gaston,NC,27832 -Greenville,NC,27834 -Grimesland,NC,27837 -Halifax,NC,27839 -Hamilton,NC,27840 -Henrico,NC,27842 -Hobgood,NC,27843 -Hollister,NC,27844 -Jackson,NC,27845 -Jamesville,NC,27846 -Kelford,NC,27847 -Lasker,NC,27848 -Lewiston Woodvil,NC,27849 -Littleton,NC,27850 -Lucama,NC,27851 -Crisp,NC,27852 -Margarettsville,NC,27853 -Murfreesboro,NC,27855 -Nashville,NC,27856 -Oak City,NC,27857 -Greenville,NC,27858 -Palmyra,NC,27859 -Pantego,NC,27860 -Pendleton,NC,27862 -Pikeville,NC,27863 -Pinetops,NC,27864 -Pinetown,NC,27865 -Pleasant Hill,NC,27866 -Rich Square,NC,27869 -Roanoke Rapids,NC,27870 -Robersonville,NC,27871 -Roxobel,NC,27872 -Saratoga,NC,27873 -Scotland Neck,NC,27874 -Scranton,NC,27875 -Seaboard,NC,27876 -Sims,NC,27880 -Spring Hope,NC,27882 -Stantonsburg,NC,27883 -Stokes,NC,27884 -Swanquarter,NC,27885 -Tarboro,NC,27886 -Walstonburg,NC,27888 -Washington,NC,27889 -Weldon,NC,27890 -Whitakers,NC,27891 -Williamston,NC,27892 -Wilson,NC,27893 -George,NC,27897 -Elizabeth City,NC,27909 -Ahoskie,NC,27910 -Aydlett,NC,27916 -Barco,NC,27917 -Belvidere,NC,27919 -Camden,NC,27921 -Cofield,NC,27922 -Coinjock,NC,27923 -Colerain,NC,27924 -Columbia,NC,27925 -Corapeake,NC,27926 -Corolla,NC,27927 -Creswell,NC,27928 -Currituck,NC,27929 -Edenton,NC,27932 -Eure,NC,27935 -Gates,NC,27937 -Gatesville,NC,27938 -Grandy,NC,27939 -Harbinger,NC,27941 -Harrellsville,NC,27942 -Durants Neck,NC,27944 -Hobbsville,NC,27946 -Jarvisburg,NC,27947 -Kill Devil Hills,NC,27948 -Southern Shores,NC,27949 -Knotts Island,NC,27950 -East Lake,NC,27953 -Manteo,NC,27954 -Maple,NC,27956 -Merry Hill,NC,27957 -Moyock,NC,27958 -Nags Head,NC,27959 -Plymouth,NC,27962 -Point Harbor,NC,27964 -Poplar Branch,NC,27965 -Powells Point,NC,27966 -Roper,NC,27970 -Shawboro,NC,27973 -Shiloh,NC,27974 -South Mills,NC,27976 -Stumpy Point,NC,27978 -Sunbury,NC,27979 -Tyner,NC,27980 -Windsor,NC,27983 -Winton,NC,27986 -Albemarle,NC,28001 -Alexis,NC,28006 -Belmont,NC,28012 -Bessemer City,NC,28016 -Bostic,NC,28018 -Casar,NC,28020 -Cherryville,NC,28021 -China Grove,NC,28023 -Concord,NC,28025 -Concord,NC,28027 -Cramerton,NC,28032 -Crouse,NC,28033 -Dallas,NC,28034 -Cornelius,NC,28036 -Denver,NC,28037 -Ellenboro,NC,28040 -Alexander Mills,NC,28043 -Gastonia,NC,28052 -Gastonia,NC,28054 -Gastonia,NC,28056 -Gold Hill,NC,28071 -Grover,NC,28073 -Harrisburg,NC,28075 -Cornelius,NC,28078 -Indian Trail,NC,28079 -Iron Station,NC,28080 -Kannapolis,NC,28081 -Kannapolis,NC,28083 -Kings Mountain,NC,28086 -Landis,NC,28088 -Lawndale,NC,28090 -Lilesville,NC,28091 -Boger City,NC,28092 -Locust,NC,28097 -Lowell,NC,28098 -Marshville,NC,28103 -Stallings,NC,28105 -Midland,NC,28107 -Monroe,NC,28110 -Monroe,NC,28112 -Mooresboro,NC,28114 -Mooresville,NC,28115 -Morven,NC,28119 -Mount Holly,NC,28120 -Mount Pleasant,NC,28124 -Mount Ulla,NC,28125 -New London,NC,28127 -Norwood,NC,28128 -Oakboro,NC,28129 -Peachland,NC,28133 -Pineville,NC,28134 -Polkton,NC,28135 -Richfield,NC,28137 -Rockwell,NC,28138 -Rutherfordton,NC,28139 -Salisbury,NC,28144 -Salisbury,NC,28146 -Kingstown,NC,28150 -Shelby,NC,28152 -Spencer,NC,28159 -Spindale,NC,28160 -Stanfield,NC,28163 -Stanley,NC,28164 -Troutman,NC,28166 -Union Mills,NC,28167 -Vale,NC,28168 -Wadesboro,NC,28170 -Weddington,NC,28173 -Wingate,NC,28174 -Charlotte,NC,28202 -Charlotte,NC,28203 -Charlotte,NC,28204 -Charlotte,NC,28205 -Charlotte,NC,28206 -Charlotte,NC,28207 -Charlotte,NC,28208 -Charlotte,NC,28209 -Charlotte,NC,28210 -Charlotte,NC,28211 -Charlotte,NC,28212 -Charlotte,NC,28213 -Charlotte,NC,28214 -Charlotte,NC,28215 -Charlotte,NC,28216 -Charlotte,NC,28217 -Charlotte,NC,28226 -Charlotte,NC,28227 -Charlotte,NC,28262 -Charlotte,NC,28269 -Charlotte,NC,28270 -Charlotte,NC,28273 -Charlotte,NC,28277 -Charlotte,NC,28278 -East Fayettevill,NC,28301 -Bonnie Doone,NC,28303 -Fayetteville,NC,28304 -Fayetteville,NC,28305 -Fayetteville,NC,28306 -Fort Bragg,NC,28307 -Fayetteville,NC,28311 -Fayetteville,NC,28314 -Aberdeen,NC,28315 -Autryville,NC,28318 -Bladenboro,NC,28320 -Bunnlevel,NC,28323 -Johnsonville,NC,28326 -Carthage,NC,28327 -Clinton,NC,28328 -Dudley,NC,28333 -Dunn,NC,28334 -Elizabethtown,NC,28337 -Ellerbe,NC,28338 -Erwin,NC,28339 -Mcdonald,NC,28340 -Faison,NC,28341 -Gibson,NC,28343 -Godwin,NC,28344 -Hamlet,NC,28345 -Hoffman,NC,28347 -Hope Mills,NC,28348 -Kenansville,NC,28349 -Laurel Hill,NC,28351 -Laurinburg,NC,28352 -Linden,NC,28356 -Lumber Bridge,NC,28357 -Lumberton,NC,28358 -Marston,NC,28363 -Maxton,NC,28364 -Mount Olive,NC,28365 -Newton Grove,NC,28366 -Orrum,NC,28369 -Parkton,NC,28371 -Pembroke,NC,28372 -Pinehurst,NC,28374 -Raeford,NC,28376 -Red Springs,NC,28377 -Rockingham,NC,28379 -Roseboro,NC,28382 -Rowland,NC,28383 -Saint Pauls,NC,28384 -Salemburg,NC,28385 -Shannon,NC,28386 -Southern Pines,NC,28387 -Spring Lake,NC,28390 -Stedman,NC,28391 -Tar Heel,NC,28392 -Turkey,NC,28393 -Vass,NC,28394 -Wade,NC,28395 -Wagram,NC,28396 -Bowdens,NC,28398 -White Oak,NC,28399 -Cape Fear,NC,28401 -Wilmington,NC,28403 -Ogden,NC,28405 -Wilmington,NC,28409 -Wilmington,NC,28412 -Ash,NC,28420 -Atkinson,NC,28421 -Bolivia,NC,28422 -Bolton,NC,28423 -Burgaw,NC,28425 -Carolina Beach,NC,28428 -Castle Hayne,NC,28429 -Cerro Gordo,NC,28430 -Chadbourn,NC,28431 -Clarendon,NC,28432 -Clarkton,NC,28433 -Council,NC,28434 -Currie,NC,28435 -Delco,NC,28436 -Evergreen,NC,28438 -Fair Bluff,NC,28439 -Garland,NC,28441 -Hallsboro,NC,28442 -Hampstead,NC,28443 -Harrells,NC,28444 -Surf City,NC,28445 -Ivanhoe,NC,28447 -Kelly,NC,28448 -Kure Beach,NC,28449 -Lake Waccamaw,NC,28450 -Leland,NC,28451 -Longwood,NC,28452 -Magnolia,NC,28453 -Maple Hill,NC,28454 -Nakina,NC,28455 -Riegelwood,NC,28456 -Rocky Point,NC,28457 -Rose Hill,NC,28458 -Shallotte,NC,28459 -Sneads Ferry,NC,28460 -Boiling Spring L,NC,28461 -Holden Beach,NC,28462 -Tabor City,NC,28463 -Teachey,NC,28464 -Oak Island,NC,28465 -Wallace,NC,28466 -Calabash,NC,28467 -Sunset Beach,NC,28468 -Ocean Isle Beach,NC,28469 -Watha,NC,28471 -Whiteville,NC,28472 -Willard,NC,28478 -Winnabow,NC,28479 -Wrightsville Bea,NC,28480 -Kinston,NC,28501 -Albertson,NC,28508 -Arapahoe,NC,28510 -Atlantic,NC,28511 -Pine Knoll Shore,NC,28512 -Ayden,NC,28513 -Bayboro,NC,28515 -Beaufort,NC,28516 -Beulaville,NC,28518 -Cedar Island,NC,28520 -Chinquapin,NC,28521 -Cove City,NC,28523 -Deep Run,NC,28525 -Dover,NC,28526 -Ernul,NC,28527 -Gloucester,NC,28528 -Grantsboro,NC,28529 -Grifton,NC,28530 -Harkers Island,NC,28531 -Havelock,NC,28532 -Hobucken,NC,28537 -Hookerton,NC,28538 -Hubert,NC,28539 -Jacksonville,NC,28540 -Camp Lejeune,NC,28542 -Tarawa Terrace,NC,28543 -Midway Park,NC,28544 -Jacksonville,NC,28546 -La Grange,NC,28551 -Lowland,NC,28552 -Marshallberg,NC,28553 -Maysville,NC,28555 -Merritt,NC,28556 -Morehead City,NC,28557 -New Bern,NC,28560 -New Bern,NC,28562 -Newport,NC,28570 -Oriental,NC,28571 -Pink Hill,NC,28572 -Pollocksville,NC,28573 -Richlands,NC,28574 -Sealevel,NC,28577 -Seven Springs,NC,28578 -Smyrna,NC,28579 -Snow Hill,NC,28580 -Stacy,NC,28581 -Stella,NC,28582 -Swansboro,NC,28584 -Trenton,NC,28585 -Vanceboro,NC,28586 -Vandemere,NC,28587 -Winterville,NC,28590 -Emerald Isle,NC,28594 -Hickory,NC,28601 -Hickory,NC,28602 -Banner Elk,NC,28604 -Blowing Rock,NC,28605 -Boomer,NC,28606 -Boone,NC,28607 -Catawba,NC,28609 -Claremont,NC,28610 -Collettsville,NC,28611 -Connellys Spring,NC,28612 -Conover,NC,28613 -Creston,NC,28615 -Crumpler,NC,28617 -Deep Gap,NC,28618 -Elkin,NC,28621 -Elk Park,NC,28622 -Ennice,NC,28623 -Ferguson,NC,28624 -Fleetwood,NC,28626 -Glade Valley,NC,28627 -Granite Falls,NC,28630 -Grassy Creek,NC,28631 -Harmony,NC,28634 -Hays,NC,28635 -Hiddenite,NC,28636 -Hudson,NC,28638 -Jefferson,NC,28640 -Jonesville,NC,28642 -Lansing,NC,28643 -Laurel Springs,NC,28644 -Lenoir,NC,28645 -Longisland,NC,28648 -Mc Grady,NC,28649 -Maiden,NC,28650 -Millers Creek,NC,28651 -Moravian Falls,NC,28654 -Morganton,NC,28655 -Frank,NC,28657 -Newton,NC,28658 -North Wilkesboro,NC,28659 -Olin,NC,28660 -Purlear,NC,28665 -Roaring Gap,NC,28668 -Roaring River,NC,28669 -Ronda,NC,28670 -Sherrills Ford,NC,28673 -Sparta,NC,28675 -State Road,NC,28676 -Statesville,NC,28677 -Stony Point,NC,28678 -Sugar Grove,NC,28679 -Taylorsville,NC,28681 -Terrell,NC,28682 -Thurmond,NC,28683 -Todd,NC,28684 -Traphill,NC,28685 -Triplett,NC,28686 -Union Grove,NC,28689 -Valdese,NC,28690 -Valle Crucis,NC,28691 -Vilas,NC,28692 -Warrensville,NC,28693 -West Jefferson,NC,28694 -Wilkesboro,NC,28697 -Zionville,NC,28698 -Alexander,NC,28701 -Almond,NC,28702 -Aquone,NC,28703 -Arden,NC,28704 -Bakersville,NC,28705 -Balsam Grove,NC,28708 -Barnardsville,NC,28709 -Black Mountain S,NC,28711 -Brevard,NC,28712 -Bryson City,NC,28713 -Burnsville,NC,28714 -Candler,NC,28715 -Canton,NC,28716 -Cashiers,NC,28717 -Cherokee,NC,28719 -Clyde,NC,28721 -Columbus,NC,28722 -Cullowhee,NC,28723 -East Flat Rock,NC,28726 -Etowah,NC,28729 -Fairview,NC,28730 -Flat Rock,NC,28731 -Fletcher,NC,28732 -Fontana Dam,NC,28733 -Franklin,NC,28734 -Gerton,NC,28735 -Glenville,NC,28736 -Hazelwood,NC,28738 -Hendersonville,NC,28739 -Greenmountain,NC,28740 -Highlands,NC,28741 -Horse Shoe,NC,28742 -Hot Springs,NC,28743 -Lake Junaluska,NC,28745 -Lake Lure,NC,28746 -Lake Toxaway,NC,28747 -Leicester,NC,28748 -Maggie Valley,NC,28751 -Marion,NC,28752 -Walnut,NC,28753 -Mars Hill,NC,28754 -Mill Spring,NC,28756 -Nebo,NC,28761 -Old Fort,NC,28762 -Otto,NC,28763 -Penrose,NC,28766 -Pisgah Forest,NC,28768 -Robbinsville,NC,28771 -Rosman,NC,28772 -Saluda,NC,28773 -Sapphire,NC,28774 -Scaly Mountain,NC,28775 -Spruce Pine,NC,28777 -Warren Wilson Co,NC,28778 -Sylva,NC,28779 -Tapoco,NC,28780 -Topton,NC,28781 -Tryon,NC,28782 -Tuckasegee,NC,28783 -Waynesville,NC,28786 -Weaverville,NC,28787 -Whittier,NC,28789 -Zirconia,NC,28790 -Hendersonville,NC,28792 -Asheville,NC,28801 -Asheville,NC,28803 -Asheville,NC,28804 -Asheville,NC,28805 -Asheville,NC,28806 -Andrews,NC,28901 -Brasstown,NC,28902 -Hayesville,NC,28904 -Marble,NC,28905 -Unaka,NC,28906 -Warne,NC,28909 -Absaraka,ND,58002 -Alice,ND,58003 -Amenia,ND,58004 -Argusville,ND,58005 -Arthur,ND,58006 -Ayr,ND,58007 -Barney,ND,58008 -Blanchard,ND,58009 -Buffalo,ND,58011 -Casselton,ND,58012 -Cayuga,ND,58013 -Chaffee,ND,58014 -Christine,ND,58015 -Clifford,ND,58016 -Brampton,ND,58017 -Colfax,ND,58018 -Davenport,ND,58021 -Enderlin,ND,58027 -Erie,ND,58029 -Fairmount,ND,58030 -Fingal,ND,58031 -Forman,ND,58032 -Englevale,ND,58033 -Galesburg,ND,58035 -Gardner,ND,58036 -Grandin,ND,58038 -Great Bend,ND,58039 -Crete,ND,58040 -Hankinson,ND,58041 -Prosper,ND,58042 -Havana,ND,58043 -Kelso,ND,58045 -Colgate,ND,58046 -Hickson,ND,58047 -Hunter,ND,58048 -Hastings,ND,58049 -Kindred,ND,58051 -Leonard,ND,58052 -Geneseo,ND,58053 -Elliott,ND,58054 -Luverne,ND,58056 -Mcleod,ND,58057 -Mantador,ND,58058 -Durbin,ND,58059 -Delamere,ND,58060 -Mooreton,ND,58061 -Nome,ND,58062 -Oriska,ND,58063 -Page,ND,58064 -Rutland,ND,58067 -Sheldon,ND,58068 -Stirum,ND,58069 -Tower City,ND,58071 -Valley City,ND,58072 -Dwight,ND,58075 -Walcott,ND,58077 -Riverside,ND,58078 -Embden,ND,58079 -Wyndmere,ND,58081 -North River,ND,58102 -Fargo,ND,58103 -Briarwood,ND,58104 -Grand Forks,ND,58201 -Grand Forks,ND,58203 -Grand Forks,ND,58205 -Adams,ND,58210 -Aneta,ND,58212 -Ardoch,ND,58213 -Arvilla,ND,58214 -Bathgate,ND,58216 -Buxton,ND,58218 -Caledonia,ND,58219 -Concrete,ND,58220 -Crystal,ND,58222 -Cummings,ND,58223 -Dahlen,ND,58224 -Bowesmont,ND,58225 -Gardar,ND,58227 -Emerado,ND,58228 -Fairdale,ND,58229 -Finley,ND,58230 -Fordville,ND,58231 -Forest River,ND,58233 -Honeyford,ND,58235 -Nash,ND,58237 -Hamilton,ND,58238 -Hannah,ND,58239 -Hatton,ND,58240 -Hensel,ND,58241 -Hoople,ND,58243 -Orr,ND,58244 -58245,ND,58245 -58246,ND,58246 -Langdon,ND,58249 -Lankin,ND,58250 -Mccanna,ND,58251 -Kloten,ND,58254 -Maida,ND,58255 -Manvel,ND,58256 -Mayville,ND,58257 -Mekinock,ND,58258 -Whitman,ND,58259 -Milton,ND,58260 -Voss,ND,58261 -Mountain,ND,58262 -58264,ND,58264 -Neche,ND,58265 -Niagara,ND,58266 -Kempton,ND,58267 -Osnabrock,ND,58269 -Park River,ND,58270 -Joliette,ND,58271 -Petersburg,ND,58272 -Pisek,ND,58273 -Portland,ND,58274 -Reynolds,ND,58275 -Saint Thomas,ND,58276 -Sharon,ND,58277 -Thompson,ND,58278 -Wales,ND,58281 -Backoo,ND,58282 -Devils Lake,ND,58301 -Loma,ND,58311 -Barton,ND,58315 -Belcourt,ND,58316 -Bisbee,ND,58317 -Bottineau,ND,58318 -Bremen,ND,58319 -Brinsmade,ND,58320 -Brocket,ND,58321 -Calvin,ND,58323 -Maza,ND,58324 -Churchs Ferry,ND,58325 -Southam,ND,58327 -Doyon,ND,58328 -San Haven,ND,58329 -Edmore,ND,58330 -Egeland,ND,58331 -Fillmore,ND,58332 -Hamberg,ND,58337 -Hampden,ND,58338 -Hansboro,ND,58339 -Manfred,ND,58341 -Heimdal,ND,58342 -Knox,ND,58343 -Mapes,ND,58344 -Lawton,ND,58345 -Harlow,ND,58346 -Flora,ND,58348 -Minnewaukan,ND,58351 -Calio,ND,58352 -Mylo,ND,58353 -Brantford,ND,58356 -Oberon,ND,58357 -Overly,ND,58360 -Pekin,ND,58361 -Penn,ND,58362 -Perth,ND,58363 -Rocklake,ND,58365 -Nanson,ND,58366 -Rolla,ND,58367 -Pleasant Lake,ND,58368 -Saint John,ND,58369 -Saint Michael,ND,58370 -Sarles,ND,58372 -58373,ND,58373 -Sheyenne,ND,58374 -Starkweather,ND,58377 -Hamar,ND,58380 -Warwick,ND,58381 -Webster,ND,58382 -Willow City,ND,58384 -Wolford,ND,58385 -Baker,ND,58386 -Eldridge,ND,58401 -Alfred,ND,58411 -Arena,ND,58412 -Ashley,ND,58413 -Berlin,ND,58415 -Binford,ND,58416 -Bowdon,ND,58418 -Buchanan,ND,58420 -Bordulac,ND,58421 -Emrick,ND,58422 -Chaseley,ND,58423 -Windsor,ND,58424 -Cooperstown,ND,58425 -Courtenay,ND,58426 -Dawson,ND,58428 -Sibley,ND,58429 -Denhoff,ND,58430 -Dickey,ND,58431 -Eckelson,ND,58432 -Merricourt,ND,58433 -Ellendale,ND,58436 -Fessenden,ND,58438 -Forbes,ND,58439 -Fredonia,ND,58440 -Fullerton,ND,58441 -Gackle,ND,58442 -Juanita,ND,58443 -Goodrich,ND,58444 -Grace City,ND,58445 -Walum,ND,58448 -Heaton,ND,58450 -Hurdsfield,ND,58451 -Nortonville,ND,58454 -Kensal,ND,58455 -Kulm,ND,58456 -Grand Rapids,ND,58458 -Lehr,ND,58460 -Litchville,ND,58461 -Mcclusky,ND,58463 -Mchenry,ND,58464 -Manfred,ND,58465 -Marion,ND,58466 -Medina,ND,58467 -Monango,ND,58471 -Adrian,ND,58472 -Guelph,ND,58474 -Pettibone,ND,58475 -Edmunds,ND,58476 -Regan,ND,58477 -Lake Williams,ND,58478 -Leal,ND,58479 -Sanborn,ND,58480 -Spiritwood,ND,58481 -Steele,ND,58482 -Streeter,ND,58483 -Sutton,ND,58484 -Sykeston,ND,58486 -Tappen,ND,58487 -Tuttle,ND,58488 -Venturia,ND,58489 -Verona,ND,58490 -Wimbledon,ND,58492 -Wing,ND,58494 -Burnstad,ND,58495 -Woodworth,ND,58496 -Ypsilanti,ND,58497 -Bismarck,ND,58501 -Lincoln,ND,58504 -Almont,ND,58520 -Baldwin,ND,58521 -Beulah,ND,58523 -Braddock,ND,58524 -Cannon Ball,ND,58528 -Carson,ND,58529 -Fort Clark,ND,58530 -Coleharbor,ND,58531 -Driscoll,ND,58532 -Heil,ND,58533 -Lark,ND,58535 -Huff,ND,58537 -Fort Yates,ND,58538 -Emmet,ND,58540 -Golden Valley,ND,58541 -Hague,ND,58542 -Hazelton,ND,58544 -Hazen,ND,58545 -Kintyre,ND,58549 -Leith,ND,58551 -Temvik,ND,58552 -Mckenzie,ND,58553 -Mandan,ND,58554 -Menoken,ND,58558 -Mercer,ND,58559 -Moffit,ND,58560 -Napoleon,ND,58561 -Bentley,ND,58562 -Hannover,ND,58563 -Raleigh,ND,58564 -Riverdale,ND,58565 -Saint Anthony,ND,58566 -Selfridge,ND,58568 -Shields,ND,58569 -Breien,ND,58570 -Stanton,ND,58571 -Sterling,ND,58572 -Strasburg,ND,58573 -Turtle Lake,ND,58575 -Underwood,ND,58576 -Washburn,ND,58577 -Wilton,ND,58579 -Zap,ND,58580 -Zeeland,ND,58581 -New Hradec,ND,58601 -Amidon,ND,58620 -Beach,ND,58621 -Fryburg,ND,58622 -Bowman,ND,58623 -Dodge,ND,58625 -Dunn Center,ND,58626 -Gorham,ND,58627 -Gladstone,ND,58630 -Glen Ullin,ND,58631 -Golva,ND,58632 -Grassy Butte,ND,58634 -Werner,ND,58636 -Hebron,ND,58638 -Bucyrus,ND,58639 -Killdeer,ND,58640 -Lefor,ND,58641 -Manning,ND,58642 -Marmarth,ND,58643 -Medora,ND,58645 -Burt,ND,58646 -New England,ND,58647 -Reeder,ND,58649 -Regent,ND,58650 -Rhame,ND,58651 -Richardton,ND,58652 -Gascoyne,ND,58653 -Sentinel Butte,ND,58654 -South Heart,ND,58655 -Taylor,ND,58656 -Trotters,ND,58657 -Minot,ND,58701 -Minot Afb,ND,58704 -Anamoose,ND,58710 -Antler,ND,58711 -Balfour,ND,58712 -Bantry,ND,58713 -Benedict,ND,58716 -Blaisdell,ND,58718 -Coteau,ND,58721 -Burlington,ND,58722 -Butte,ND,58723 -Carpio,ND,58725 -Larson,ND,58727 -Crosby,ND,58730 -Deering,ND,58731 -Des Lacs,ND,58733 -Donnybrook,ND,58734 -Douglas,ND,58735 -Drake,ND,58736 -Northgate,ND,58737 -Foxholm,ND,58738 -Gardena,ND,58739 -Wolseth,ND,58740 -Granville,ND,58741 -Karlsruhe,ND,58744 -Coulee,ND,58746 -Kief,ND,58747 -Kramer,ND,58748 -Lansford,ND,58750 -Lignite,ND,58752 -Mcgregor,ND,58755 -Makoti,ND,58756 -Mandaree,ND,58757 -Martin,ND,58758 -Max,ND,58759 -Maxbass,ND,58760 -Loraine,ND,58761 -Newburg,ND,58762 -Charlson,ND,58763 -Noonan,ND,58765 -Norwich,ND,58768 -Palermo,ND,58769 -Parshall,ND,58770 -Plaza,ND,58771 -Portal,ND,58772 -Battleview,ND,58773 -Roseglen,ND,58775 -Ross,ND,58776 -Ruso,ND,58778 -Raub,ND,58779 -Sawyer,ND,58781 -Sherwood,ND,58782 -Carbury,ND,58783 -Belden,ND,58784 -Surrey,ND,58785 -Tolley,ND,58787 -Berwick,ND,58788 -Upham,ND,58789 -Velva,ND,58790 -Bergen,ND,58792 -Westhope,ND,58793 -White Earth,ND,58794 -Hamlet,ND,58795 -Bonetraill,ND,58801 -Appam,ND,58830 -Rawson,ND,58831 -Ambrose,ND,58833 -Arnegard,ND,58835 -Cartwright,ND,58838 -Springbrook,ND,58843 -Colgan,ND,58844 -Alkabo,ND,58845 -Keene,ND,58847 -Wheelock,ND,58849 -Temple,ND,58852 -Trenton,ND,58853 -Watford City,ND,58854 -Zahl,ND,58856 -Alexandria,OH,43001 -Amlin,OH,43002 -Ashley,OH,43003 -Blacklick,OH,43004 -Brinkhaven,OH,43006 -Cable,OH,43009 -Centerburg,OH,43011 -Croton,OH,43013 -Danville,OH,43014 -Delaware,OH,43015 -Dublin,OH,43017 -Fredericktown,OH,43019 -Galena,OH,43021 -Gambier,OH,43022 -Granville,OH,43023 -Hebron,OH,43025 -Hilliard,OH,43026 -Howard,OH,43028 -Irwin,OH,43029 -Johnstown,OH,43031 -Magnetic Springs,OH,43036 -Martinsburg,OH,43037 -Marysville,OH,43040 -Mechanicsburg,OH,43044 -Milford Center,OH,43045 -Millersport,OH,43046 -Mount Vernon,OH,43050 -New Albany,OH,43054 -Newark,OH,43055 -Heath,OH,43056 -North Lewisburg,OH,43060 -Ostrander,OH,43061 -Pataskala,OH,43062 -Plain City,OH,43064 -Shawnee Hills,OH,43065 -Radnor,OH,43066 -Raymond,OH,43067 -Reynoldsburg,OH,43068 -Saint Louisville,OH,43071 -Saint Paris,OH,43072 -Sunbury,OH,43074 -Thornville,OH,43076 -Urbana,OH,43078 -Utica,OH,43080 -Westerville,OH,43081 -Woodstock,OH,43084 -Worthington,OH,43085 -Amanda,OH,43102 -Ashville,OH,43103 -Baltimore,OH,43105 -Bloomingburg,OH,43106 -Hide A Way Hills,OH,43107 -Canal Winchester,OH,43110 -Carroll,OH,43112 -Circleville,OH,43113 -Clarksburg,OH,43115 -Galloway,OH,43119 -Grove City,OH,43123 -Groveport,OH,43125 -Jeffersonville,OH,43128 -Lancaster,OH,43130 -Laurelville,OH,43135 -Lockbourne,OH,43137 -Logan,OH,43138 -London,OH,43140 -Mount Sterling,OH,43143 -New Holland,OH,43145 -Orient,OH,43146 -Pickerington,OH,43147 -Pleasantville,OH,43148 -Rockbridge,OH,43149 -Rushville,OH,43150 -South Bloomingvi,OH,43152 -South Solon,OH,43153 -Stoutsville,OH,43154 -Sugar Grove,OH,43155 -Washington Court,OH,43160 -West Jefferson,OH,43162 -Williamsport,OH,43164 -Columbus,OH,43201 -Columbus,OH,43202 -Columbus,OH,43203 -Columbus,OH,43204 -Columbus,OH,43205 -Columbus,OH,43206 -Columbus,OH,43207 -Bexley,OH,43209 -Columbus,OH,43210 -Columbus,OH,43211 -Columbus,OH,43212 -Whitehall,OH,43213 -Columbus,OH,43214 -Columbus,OH,43215 -Columbus,OH,43217 -Shepard,OH,43219 -Columbus,OH,43220 -Upper Arlington,OH,43221 -Columbus,OH,43222 -Columbus,OH,43223 -Columbus,OH,43224 -Columbus,OH,43227 -Lincoln Village,OH,43228 -Columbus,OH,43229 -Gahanna,OH,43230 -Columbus,OH,43231 -Columbus,OH,43232 -West Worthington,OH,43235 -Marion,OH,43302 -Belle Center,OH,43310 -Bellefontaine,OH,43311 -Caledonia,OH,43314 -Cardington,OH,43315 -Carey,OH,43316 -De Graff,OH,43318 -East Liberty,OH,43319 -Edison,OH,43320 -Fulton,OH,43321 -Harpster,OH,43323 -Huntsville,OH,43324 -Kenton,OH,43326 -Lakeview,OH,43331 -La Rue,OH,43332 -Lewistown,OH,43333 -Marengo,OH,43334 -Martel,OH,43335 -Morral,OH,43337 -Mount Gilead,OH,43338 -Mount Victory,OH,43340 -New Bloomington,OH,43341 -Prospect,OH,43342 -Quincy,OH,43343 -Richwood,OH,43344 -Ridgeway,OH,43345 -Roundhead,OH,43346 -Rushsylvania,OH,43347 -Russells Point,OH,43348 -Sparta,OH,43350 -Upper Sandusky,OH,43351 -Waldo,OH,43356 -West Liberty,OH,43357 -West Mansfield,OH,43358 -Wharton,OH,43359 -Zanesfield,OH,43360 -Bowling Green,OH,43402 -Bradner,OH,43406 -Burgoon,OH,43407 -Clyde,OH,43410 -Curtice,OH,43412 -Cygnet,OH,43413 -Elmore,OH,43416 -Fremont,OH,43420 -Genoa,OH,43430 -Gibsonburg,OH,43431 -Elliston,OH,43432 -Millersville,OH,43435 -Isle Saint Georg,OH,43436 -Kelleys Island,OH,43438 -Lacarne,OH,43439 -Lakeside,OH,43440 -Lindsey,OH,43442 -Luckey,OH,43443 -Bono,OH,43445 -Millbury,OH,43447 -Oak Harbor,OH,43449 -Pemberville,OH,43450 -Portage,OH,43451 -Port Clinton,OH,43452 -Put In Bay,OH,43456 -Risingsun,OH,43457 -Rossford,OH,43460 -Rudolph,OH,43462 -Vickery,OH,43464 -Walbridge,OH,43465 -Wayne,OH,43466 -Woodville,OH,43469 -Alvordton,OH,43501 -Archbold,OH,43502 -Berkey,OH,43504 -Bryan,OH,43506 -Custar,OH,43511 -Defiance,OH,43512 -Delta,OH,43515 -Deshler,OH,43516 -Edgerton,OH,43517 -Edon,OH,43518 -Fayette,OH,43521 -Grand Rapids,OH,43522 -Hamler,OH,43524 -Haskins,OH,43525 -Hicksville,OH,43526 -Holgate,OH,43527 -Holland,OH,43528 -Liberty Center,OH,43532 -Lyons,OH,43533 -Mc Clure,OH,43534 -Malinta,OH,43535 -Mark Center,OH,43536 -Maumee,OH,43537 -Metamora,OH,43540 -Monclova,OH,43542 -Montpelier,OH,43543 -Napoleon,OH,43545 -New Bavaria,OH,43548 -Ney,OH,43549 -Perrysburg,OH,43551 -Pioneer,OH,43554 -Sherwood,OH,43556 -Stryker,OH,43557 -Swanton,OH,43558 -Sylvania,OH,43560 -Waterville,OH,43566 -Wauseon,OH,43567 -Weston,OH,43569 -West Unity,OH,43570 -Whitehouse,OH,43571 -Toledo,OH,43602 -Toledo,OH,43604 -Oregon,OH,43605 -Toledo,OH,43606 -Toledo,OH,43607 -Toledo,OH,43608 -Toledo,OH,43609 -Toledo,OH,43610 -Toledo,OH,43611 -Toledo,OH,43612 -Toledo,OH,43613 -Toledo,OH,43614 -Toledo,OH,43615 -Oregon,OH,43616 -Toledo,OH,43617 -Oregon,OH,43618 -Northwood,OH,43619 -Toledo,OH,43620 -Toledo,OH,43623 -Toledo,OH,43624 -Sonora,OH,43701 -Somerton,OH,43713 -Beallsville,OH,43716 -Belmont,OH,43718 -Bethesda,OH,43719 -Blue Rock,OH,43720 -Byesville,OH,43723 -Caldwell,OH,43724 -Claysville,OH,43725 -Chandlersville,OH,43727 -Chesterhill,OH,43728 -Hemlock,OH,43730 -Crooksville,OH,43731 -Cumberland,OH,43732 -Duncan Falls,OH,43734 -Glenford,OH,43739 -Hopewell,OH,43746 -Jerusalem,OH,43747 -Junction City,OH,43748 -Guernsey,OH,43749 -Lewisville,OH,43754 -Lore City,OH,43755 -Mc Connelsville,OH,43756 -Malta,OH,43758 -Mount Perry,OH,43760 -New Concord,OH,43762 -New Lexington,OH,43764 -New Straitsville,OH,43766 -Norwich,OH,43767 -Philo,OH,43771 -Pleasant City,OH,43772 -Quaker City,OH,43773 -Roseville,OH,43777 -Salesville,OH,43778 -Sarahsville,OH,43779 -Senecaville,OH,43780 -Shawnee,OH,43782 -Somerset,OH,43783 -Pennsville,OH,43787 -Summerfield,OH,43788 -Antioch,OH,43793 -Adamsville,OH,43802 -Baltic,OH,43804 -Conesville,OH,43811 -Coshocton,OH,43812 -Adams Mills,OH,43821 -Frazeysburg,OH,43822 -Fresno,OH,43824 -Nashport,OH,43830 -Newcomerstown,OH,43832 -Port Washington,OH,43837 -Stone Creek,OH,43840 -Walhonding,OH,43843 -Warsaw,OH,43844 -West Lafayette,OH,43845 -Adena,OH,43901 -Alledonia,OH,43902 -Amsterdam,OH,43903 -Bellaire,OH,43906 -Moorefield,OH,43907 -Bergholz,OH,43908 -Bloomingdale,OH,43910 -Bridgeport,OH,43912 -Brilliant,OH,43913 -Clarington,OH,43915 -Dillonvale,OH,43917 -Calcutta,OH,43920 -Hammondsville,OH,43930 -Irondale,OH,43932 -Armstrong Mills,OH,43933 -Martins Ferry,OH,43935 -Mingo Junction,OH,43938 -Powhatan Point,OH,43942 -Rayland,OH,43943 -Richmond,OH,43944 -Salineville,OH,43945 -Sardis,OH,43946 -Shadyside,OH,43947 -Saint Clairsvill,OH,43950 -Wintersville,OH,43952 -Tiltonsville,OH,43963 -Toronto,OH,43964 -Wellsville,OH,43968 -Yorkville,OH,43971 -Freeport,OH,43973 -Hopedale,OH,43976 -Flushing,OH,43977 -Piedmont,OH,43983 -Jewett,OH,43986 -Scio,OH,43988 -South Amherst,OH,44001 -Andover,OH,44003 -Ashtabula,OH,44004 -Austinburg,OH,44010 -Avon,OH,44011 -Avon Lake,OH,44012 -Berea,OH,44017 -Burton,OH,44021 -Chagrin Falls,OH,44022 -Chardon,OH,44024 -Chesterland,OH,44026 -Columbia Station,OH,44028 -Conneaut,OH,44030 -Dorset,OH,44032 -Elyria,OH,44035 -North Ridgeville,OH,44039 -Gates Mills,OH,44040 -Geneva,OH,44041 -Grafton,OH,44044 -Huntsburg,OH,44046 -Jefferson,OH,44047 -Kingsville,OH,44048 -Lagrange,OH,44050 -Lorain,OH,44052 -Lorain,OH,44053 -Sheffield Lake,OH,44054 -Lorain,OH,44055 -Macedonia,OH,44056 -Madison,OH,44057 -Mentor,OH,44060 -Middlefield,OH,44062 -Montville,OH,44064 -Newbury,OH,44065 -Northfield,OH,44067 -North Olmsted,OH,44070 -Novelty,OH,44072 -Oberlin,OH,44074 -East Orwell,OH,44076 -Fairport Harbor,OH,44077 -Perry,OH,44081 -Pierpont,OH,44082 -Roaming Shores,OH,44084 -Roaming Shores,OH,44085 -Thompson,OH,44086 -Twinsburg,OH,44087 -Vermilion,OH,44089 -Wellington,OH,44090 -Wickliffe,OH,44092 -Williamsfield,OH,44093 -Willoughby,OH,44094 -Willowick,OH,44095 -Windsor,OH,44099 -Cleveland,OH,44102 -Cleveland,OH,44103 -Cleveland,OH,44104 -Cleveland,OH,44105 -Cleveland,OH,44106 -Edgewater,OH,44107 -Cleveland,OH,44108 -Cleveland,OH,44109 -Cleveland,OH,44110 -Cleveland,OH,44111 -East Cleveland,OH,44112 -Cleveland,OH,44113 -Cleveland,OH,44114 -Cleveland,OH,44115 -Rocky River,OH,44116 -Euclid,OH,44117 -Cleveland Height,OH,44118 -Cleveland,OH,44119 -Cleveland,OH,44120 -South Euclid,OH,44121 -Beachwood,OH,44122 -Shore,OH,44123 -Lyndhurst Mayfie,OH,44124 -Garfield Heights,OH,44125 -Fairview Park,OH,44126 -Cleveland,OH,44127 -Cleveland,OH,44128 -Parma,OH,44129 -Midpark,OH,44130 -Independence,OH,44131 -Noble,OH,44132 -North Royalton,OH,44133 -Parma,OH,44134 -Cleveland,OH,44135 -Strongsville,OH,44136 -Maple Heights,OH,44137 -Olmsted Falls,OH,44138 -Solon,OH,44139 -Bay Village,OH,44140 -Brecksville,OH,44141 -Brookpark,OH,44142 -Richmond Heights,OH,44143 -Brooklyn,OH,44144 -Westlake,OH,44145 -Bedford,OH,44146 -Broadview Height,OH,44147 -Atwater,OH,44201 -Reminderville,OH,44202 -Norton,OH,44203 -Brunswick,OH,44212 -Burbank,OH,44214 -Chippewa Lake,OH,44215 -Clinton,OH,44216 -Creston,OH,44217 -Cuyahoga Falls,OH,44221 -Cuyahoga Falls,OH,44223 -Stow,OH,44224 -Doylestown,OH,44230 -Garrettsville,OH,44231 -Hinckley,OH,44233 -Hiram,OH,44234 -Homerville,OH,44235 -Hudson,OH,44236 -Kent,OH,44240 -Streetsboro,OH,44241 -Litchfield,OH,44253 -Lodi,OH,44254 -Mantua,OH,44255 -Medina,OH,44256 -Mogadore,OH,44260 -Munroe Falls,OH,44262 -Peninsula,OH,44264 -Ravenna,OH,44266 -Rittman,OH,44270 -Rootstown,OH,44272 -Seville,OH,44273 -Spencer,OH,44275 -Sterling,OH,44276 -Tallmadge,OH,44278 -Valley City,OH,44280 -Wadsworth,OH,44281 -Richfield,OH,44286 -West Salem,OH,44287 -Windham,OH,44288 -Akron,OH,44301 -Akron,OH,44302 -Akron,OH,44303 -Akron,OH,44304 -Akron,OH,44305 -Akron,OH,44306 -Akron,OH,44307 -Akron,OH,44308 -Akron,OH,44310 -Akron,OH,44311 -Akron,OH,44312 -Akron,OH,44313 -Akron,OH,44314 -Akron,OH,44319 -Akron,OH,44320 -Copley,OH,44321 -Fairlawn,OH,44333 -Berlin Center,OH,44401 -Bristolville,OH,44402 -Brookfield,OH,44403 -Burghill,OH,44404 -Campbell,OH,44405 -Canfield,OH,44406 -Columbiana,OH,44408 -Cortland,OH,44410 -Deerfield,OH,44411 -Diamond,OH,44412 -East Palestine,OH,44413 -Farmdale,OH,44417 -Fowler,OH,44418 -Girard,OH,44420 -Hanoverton,OH,44423 -Hubbard,OH,44425 -Kensington,OH,44427 -Kinsman,OH,44428 -Lake Milton,OH,44429 -Leavittsburg,OH,44430 -Leetonia,OH,44431 -Lisbon,OH,44432 -Lowellville,OH,44436 -Mc Donald,OH,44437 -Masury,OH,44438 -Mineral Ridge,OH,44440 -Negley,OH,44441 -New Middletown,OH,44442 -New Springfield,OH,44443 -Newton Falls,OH,44444 -New Waterford,OH,44445 -Niles,OH,44446 -North Benton,OH,44449 -North Bloomfield,OH,44450 -North Jackson,OH,44451 -North Lima,OH,44452 -Petersburg,OH,44454 -Rogers,OH,44455 -Salem,OH,44460 -Southington,OH,44470 -Struthers,OH,44471 -Vienna,OH,44473 -Warren,OH,44481 -Warren,OH,44483 -Warren,OH,44484 -Warren,OH,44485 -Washingtonville,OH,44490 -West Farmington,OH,44491 -Youngstown,OH,44502 -Youngstown,OH,44503 -Youngstown,OH,44504 -Youngstown,OH,44505 -Youngstown,OH,44506 -Youngstown,OH,44507 -Youngstown,OH,44509 -Youngstown,OH,44510 -Youngstown,OH,44511 -Boardman,OH,44512 -Poland,OH,44514 -Austintown,OH,44515 -Alliance,OH,44601 -Apple Creek,OH,44606 -Beach City,OH,44608 -Beloit,OH,44609 -Big Prairie,OH,44611 -Bolivar,OH,44612 -Brewster,OH,44613 -Canal Fulton,OH,44614 -Carrollton,OH,44615 -Dalton,OH,44618 -Dellroy,OH,44620 -Dennison,OH,44621 -Dover,OH,44622 -Dundee,OH,44624 -East Rochester,OH,44625 -East Sparta,OH,44626 -Fredericksburg,OH,44627 -Glenmont,OH,44628 -Gnadenhutten,OH,44629 -Hartville,OH,44632 -Holmesville,OH,44633 -Homeworth,OH,44634 -Killbuck,OH,44637 -Lakeville,OH,44638 -Louisville,OH,44641 -Magnolia,OH,44643 -Malvern,OH,44644 -Marshallville,OH,44645 -Massillon,OH,44646 -Massillon,OH,44647 -Mechanicstown,OH,44651 -Millersburg,OH,44654 -Zoarville,OH,44656 -Minerva,OH,44657 -Navarre,OH,44662 -New Philadelphia,OH,44663 -North Lawrence,OH,44666 -Orrville,OH,44667 -Paris,OH,44669 -Sebring,OH,44672 -Sherrodsville,OH,44675 -Shreve,OH,44676 -Smithville,OH,44677 -Strasburg,OH,44680 -Sugarcreek,OH,44681 -Uhrichsville,OH,44683 -Uniontown,OH,44685 -Waynesburg,OH,44688 -Wilmot,OH,44689 -Wooster,OH,44691 -Bowerston,OH,44695 -Tippecanoe,OH,44699 -Canton,OH,44702 -Canton,OH,44703 -Canton,OH,44704 -Canton,OH,44705 -Canton,OH,44706 -North Industry,OH,44707 -Canton,OH,44708 -North Canton,OH,44709 -Canton,OH,44710 -Canton,OH,44714 -Jackson Belden,OH,44718 -North Canton,OH,44720 -Canton,OH,44721 -East Canton,OH,44730 -Alvada,OH,44802 -Arcadia,OH,44804 -Ashland,OH,44805 -Carrothers,OH,44807 -Bellevue,OH,44811 -Bellville,OH,44813 -Berlin Heights,OH,44814 -Bloomdale,OH,44817 -Bloomville,OH,44818 -Bucyrus,OH,44820 -Butler,OH,44822 -Castalia,OH,44824 -Chatfield,OH,44825 -Collins,OH,44826 -Crestline,OH,44827 -Fostoria,OH,44830 -Galion,OH,44833 -Green Springs,OH,44836 -Greenwich,OH,44837 -Shinrock,OH,44839 -Jeromesville,OH,44840 -Kansas,OH,44841 -Loudonville,OH,44842 -Lucas,OH,44843 -Mc Cutchenville,OH,44844 -Melmore,OH,44845 -Milan,OH,44846 -Monroeville,OH,44847 -Nevada,OH,44849 -New London,OH,44851 -New Riegel,OH,44853 -New Washington,OH,44854 -North Fairfield,OH,44855 -Norwalk,OH,44857 -Nova,OH,44859 -Perrysville,OH,44864 -Plymouth,OH,44865 -Polk,OH,44866 -Republic,OH,44867 -Sandusky,OH,44870 -Savannah,OH,44874 -Shelby,OH,44875 -Shiloh,OH,44878 -Sullivan,OH,44880 -Sycamore,OH,44882 -Tiffin,OH,44883 -Tiro,OH,44887 -Wakeman,OH,44889 -Willard,OH,44890 -Mansfield,OH,44902 -Mansfield,OH,44903 -Lexington,OH,44904 -Lincoln,OH,44905 -Mansfield,OH,44906 -Mansfield,OH,44907 -Addyston,OH,45001 -Cleves,OH,45002 -College Corner,OH,45003 -Carlisle,OH,45005 -Hamilton,OH,45011 -Rossville,OH,45013 -Fairfield,OH,45014 -Lindenwald,OH,45015 -Harrison,OH,45030 -Otterbien Home,OH,45036 -Maineville,OH,45039 -Mason,OH,45040 -Middletown,OH,45042 -Excello,OH,45044 -Monroe,OH,45050 -North Bend,OH,45052 -Okeana,OH,45053 -Oregonia,OH,45054 -Miami University,OH,45056 -Somerville,OH,45064 -South Lebanon,OH,45065 -Springboro,OH,45066 -Trenton,OH,45067 -Waynesville,OH,45068 -West Chester,OH,45069 -Aberdeen,OH,45101 -Amelia,OH,45102 -Batavia,OH,45103 -Bethel,OH,45106 -Blanchester,OH,45107 -Camp Dennison,OH,45111 -Clarksville,OH,45113 -Fayetteville,OH,45118 -Felicity,OH,45120 -Georgetown,OH,45121 -Goshen,OH,45122 -Greenfield,OH,45123 -Hamersville,OH,45130 -Hillsboro,OH,45133 -Leesburg,OH,45135 -Loveland,OH,45140 -Lynchburg,OH,45142 -Manchester,OH,45144 -Martinsville,OH,45146 -Midland,OH,45148 -Day Heights,OH,45150 -Morrow,OH,45152 -Moscow,OH,45153 -Mount Orab,OH,45154 -New Richmond,OH,45157 -New Vienna,OH,45159 -Pleasant Plain,OH,45162 -Ripley,OH,45167 -Russellville,OH,45168 -Sabina,OH,45169 -Sardinia,OH,45171 -Terrace Park,OH,45174 -Williamsburg,OH,45176 -Wilmington,OH,45177 -Cincinnati,OH,45202 -Cincinnati,OH,45203 -Cincinnati,OH,45204 -Cincinnati,OH,45205 -Cincinnati,OH,45206 -Cincinnati,OH,45207 -Cincinnati,OH,45208 -Cincinnati,OH,45209 -Cincinnati,OH,45210 -Cincinnati,OH,45211 -Norwood,OH,45212 -Taft,OH,45213 -Cincinnati,OH,45214 -Lockland,OH,45215 -Elmwood Place,OH,45216 -Saint Bernard,OH,45217 -Greenhills,OH,45218 -Cincinnati,OH,45219 -Cincinnati,OH,45220 -Cincinnati,OH,45223 -College Hill,OH,45224 -Cincinnati,OH,45225 -Cincinnati,OH,45226 -Madisonville,OH,45227 -Cincinnati,OH,45228 -Cincinnati,OH,45229 -Anderson,OH,45230 -Cincinnati,OH,45231 -Cincinnati,OH,45232 -Saylor Park,OH,45233 -Taft,OH,45236 -Cincinnati,OH,45237 -Western Hills,OH,45238 -Groesbeck,OH,45239 -Parkdale,OH,45240 -Sharonville,OH,45241 -Sycamore,OH,45242 -Madeira,OH,45243 -Newtown,OH,45244 -Newtown,OH,45245 -Glendale,OH,45246 -Groesbeck,OH,45247 -Westwood,OH,45248 -Sycamore,OH,45249 -Groesbeck,OH,45251 -Cincinnati,OH,45252 -Anderson,OH,45255 -Anna,OH,45302 -Ansonia,OH,45303 -Castine,OH,45304 -Bellbrook,OH,45305 -Botkins,OH,45306 -Bradford,OH,45308 -Brookville,OH,45309 -Camden,OH,45311 -Casstown,OH,45312 -Cedarville,OH,45314 -Clayton,OH,45315 -Conover,OH,45317 -Covington,OH,45318 -Eaton,OH,45320 -Eldorado,OH,45321 -Union,OH,45322 -Enon,OH,45323 -Fairborn,OH,45324 -Farmersville,OH,45325 -Fletcher,OH,45326 -Germantown,OH,45327 -Greenville,OH,45331 -Hollansburg,OH,45332 -Houston,OH,45333 -Jackson Center,OH,45334 -Jamestown,OH,45335 -Laura,OH,45337 -Lewisburg,OH,45338 -Ludlow Falls,OH,45339 -Maplewood,OH,45340 -Medway,OH,45341 -Miamisburg,OH,45342 -New Carlisle,OH,45344 -New Lebanon,OH,45345 -New Madison,OH,45346 -New Paris,OH,45347 -New Weston,OH,45348 -Piqua,OH,45356 -Pleasant Hill,OH,45359 -Rossburg,OH,45362 -Russia,OH,45363 -Sidney,OH,45365 -Selma,OH,45368 -South Vienna,OH,45369 -Spring Valley,OH,45370 -Phoneton,OH,45371 -Troy,OH,45373 -Vandalia,OH,45377 -Versailles,OH,45380 -West Alexandria,OH,45381 -West Manchester,OH,45382 -West Milton,OH,45383 -Xenia,OH,45385 -Yellow Springs,OH,45387 -Yorkshire,OH,45388 -Union City,OH,45390 -Dayton,OH,45402 -Dayton,OH,45403 -Dayton,OH,45404 -Dayton,OH,45405 -Dayton,OH,45406 -Dayton,OH,45407 -Dayton,OH,45408 -Dayton,OH,45409 -Dayton,OH,45410 -Dayton,OH,45414 -Dayton,OH,45415 -Trotwood,OH,45416 -Dayton,OH,45417 -Dayton,OH,45418 -Dayton,OH,45419 -Kettering,OH,45420 -Huber Heights,OH,45424 -Trotwood,OH,45426 -Dayton,OH,45427 -Kettering,OH,45429 -Beavercreek,OH,45430 -Beavercreek,OH,45431 -Beavercreek,OH,45432 -Dayton,OH,45433 -Beavercreek,OH,45434 -West Carrollton,OH,45439 -Dayton,OH,45440 -West Carrollton,OH,45449 -Centerville,OH,45458 -Centerville,OH,45459 -Springfield,OH,45502 -Springfield,OH,45503 -Springfield,OH,45504 -Springfield,OH,45505 -Springfield,OH,45506 -Chillicothe,OH,45601 -Bainbridge,OH,45612 -Beaver,OH,45613 -Bidwell,OH,45614 -Blue Creek,OH,45616 -Chesapeake,OH,45619 -Cheshire,OH,45620 -Creola,OH,45622 -Crown City,OH,45623 -Frankfort,OH,45628 -Franklin Furnace,OH,45629 -Gallipolis,OH,45631 -Hamden,OH,45634 -Ironton,OH,45638 -Jackson,OH,45640 -Kingston,OH,45644 -Kitts Hill,OH,45645 -Latham,OH,45646 -Londonderry,OH,45647 -Lucasville,OH,45648 -Allensville,OH,45651 -Mc Dermott,OH,45652 -Minford,OH,45653 -New Plymouth,OH,45654 -Oak Hill,OH,45656 -Otway,OH,45657 -Patriot,OH,45658 -Pedro,OH,45659 -Peebles,OH,45660 -Idaho,OH,45661 -New Boston,OH,45662 -Portsmouth,OH,45663 -Proctorville,OH,45669 -Radcliff,OH,45670 -Rarden,OH,45671 -Ray,OH,45672 -Richmond Dale,OH,45673 -Rock Camp,OH,45675 -Scottown,OH,45678 -Seaman,OH,45679 -South Point,OH,45680 -South Salem,OH,45681 -South Webster,OH,45682 -Stout,OH,45684 -Thurman,OH,45685 -Vinton,OH,45686 -Waterloo,OH,45688 -Waverly,OH,45690 -Wellston,OH,45692 -West Union,OH,45693 -Wheelersburg,OH,45694 -Willow Wood,OH,45696 -Winchester,OH,45697 -Athens,OH,45701 -Albany,OH,45710 -Amesville,OH,45711 -Belpre,OH,45714 -Beverly,OH,45715 -Coolville,OH,45723 -Cutler,OH,45724 -Dexter City,OH,45727 -Fleming,OH,45729 -Glouster,OH,45732 -Rinard Mills,OH,45734 -Guysville,OH,45735 -Dexter,OH,45741 -Little Hocking,OH,45742 -Long Bottom,OH,45743 -Lowell,OH,45744 -Warner,OH,45745 -Macksburg,OH,45746 -Marietta,OH,45750 -Middleport,OH,45760 -Millfield,OH,45761 -Nelsonville,OH,45764 -New Marshfield,OH,45766 -New Matamoras,OH,45767 -Newport,OH,45768 -Pomeroy,OH,45769 -Portland,OH,45770 -Racine,OH,45771 -Reedsville,OH,45772 -Reno,OH,45773 -45774,OH,45774 -Rutland,OH,45775 -Shade,OH,45776 -Stewart,OH,45778 -The Plains,OH,45780 -Vincent,OH,45784 -Waterford,OH,45786 -Whipple,OH,45788 -Wingett Run,OH,45789 -Lima,OH,45801 -Lima,OH,45804 -Lima,OH,45805 -Cridersville,OH,45806 -Elida,OH,45807 -Ada,OH,45810 -Alger,OH,45812 -Antwerp,OH,45813 -Arlington,OH,45814 -Bluffton,OH,45817 -Cecil,OH,45821 -Carthagena,OH,45822 -Cloverdale,OH,45827 -Coldwater,OH,45828 -Columbus Grove,OH,45830 -Continental,OH,45831 -Convoy,OH,45832 -Delphos,OH,45833 -Dola,OH,45835 -Dunkirk,OH,45836 -Findlay,OH,45840 -Jenera,OH,45841 -Patterson,OH,45843 -Fort Jennings,OH,45844 -Fort Loramie,OH,45845 -Fort Recovery,OH,45846 -Grover Hill,OH,45849 -Harrod,OH,45850 -Haviland,OH,45851 -Leipsic,OH,45856 -Mc Comb,OH,45858 -Maria Stein,OH,45860 -Mendon,OH,45862 -Middle Point,OH,45863 -Minster,OH,45865 -Mount Blanchard,OH,45867 -Mount Cory,OH,45868 -New Bremen,OH,45869 -New Knoxville,OH,45871 -North Baltimore,OH,45872 -Oakwood,OH,45873 -Ohio City,OH,45874 -Gilboa,OH,45875 -Ottoville,OH,45876 -Pandora,OH,45877 -Paulding,OH,45879 -Payne,OH,45880 -Rawson,OH,45881 -Rockford,OH,45882 -Saint Henry,OH,45883 -Saint Marys,OH,45885 -Scott,OH,45886 -Spencerville,OH,45887 -Van Buren,OH,45889 -Vanlue,OH,45890 -Van Wert,OH,45891 -Venedocia,OH,45894 -Wapakoneta,OH,45895 -Waynesfield,OH,45896 -Willshire,OH,45898 -Alex,OK,73002 -Amber,OK,73004 -Anadarko,OK,73005 -Apache,OK,73006 -Arcadia,OK,73007 -Bethany,OK,73008 -Binger,OK,73009 -Blanchard,OK,73010 -Bradley,OK,73011 -Edmond,OK,73013 -Calumet,OK,73014 -Carnegie,OK,73015 -Cashion,OK,73016 -Cement,OK,73017 -Chickasha,OK,73018 -Choctaw,OK,73020 -Colony,OK,73021 -Corn,OK,73024 -Coyle,OK,73027 -Crescent,OK,73028 -Cyril,OK,73029 -Davis,OK,73030 -Edmond,OK,73034 -Elmore City,OK,73035 -El Reno,OK,73036 -Fort Cobb,OK,73038 -Foster,OK,73039 -Geary,OK,73040 -Gotebo,OK,73041 -Gracemont,OK,73042 -Greenfield,OK,73043 -Guthrie,OK,73044 -Harrah,OK,73045 -Hennepin,OK,73046 -Hinton,OK,73047 -Hydro,OK,73048 -Jones,OK,73049 -Lexington,OK,73051 -Lindsay,OK,73052 -Lookeba,OK,73053 -Luther,OK,73054 -Marlow,OK,73055 -Marshall,OK,73056 -Maysville,OK,73057 -Meridian,OK,73058 -Minco,OK,73059 -Morrison,OK,73061 -Mountain View,OK,73062 -Mulhall,OK,73063 -Mustang,OK,73064 -Newcastle,OK,73065 -Ninnekah,OK,73067 -Noble,OK,73068 -Norman,OK,73069 -Norman,OK,73071 -Norman,OK,73072 -Orlando,OK,73073 -Paoli,OK,73074 -Pauls Valley,OK,73075 -Perry,OK,73077 -Piedmont,OK,73078 -Pocasset,OK,73079 -Purcell,OK,73080 -Ratliff City,OK,73081 -Rush Springs,OK,73082 -Spencer,OK,73084 -Sulphur,OK,73086 -Tussy,OK,73088 -Tuttle,OK,73089 -Union City,OK,73090 -Verden,OK,73092 -Washington,OK,73093 -Wayne,OK,73095 -Weatherford,OK,73096 -Wynnewood,OK,73098 -Yukon,OK,73099 -Oklahoma City,OK,73102 -Oklahoma City,OK,73103 -Oklahoma City,OK,73104 -Oklahoma City,OK,73105 -Oklahoma City,OK,73106 -Oklahoma City,OK,73107 -Oklahoma City,OK,73108 -Oklahoma City,OK,73109 -Midwest City,OK,73110 -Oklahoma City,OK,73111 -Oklahoma City,OK,73112 -Oklahoma City,OK,73114 -Del City,OK,73115 -Nichols Hills,OK,73116 -Oklahoma City,OK,73117 -Oklahoma City,OK,73118 -Oklahoma City,OK,73119 -Oklahoma City,OK,73120 -Oklahoma City,OK,73121 -Warr Acres,OK,73122 -Oklahoma City,OK,73127 -Oklahoma City,OK,73128 -Oklahoma City,OK,73129 -Midwest City,OK,73130 -Oklahoma City,OK,73131 -Warr Acres,OK,73132 -Oklahoma City,OK,73134 -Oklahoma City,OK,73135 -Oklahoma City,OK,73139 -Oklahoma City,OK,73141 -Oklahoma City,OK,73142 -Tinker Afb,OK,73145 -Oklahoma City,OK,73149 -Oklahoma City,OK,73150 -Oklahoma City,OK,73151 -Oklahoma City,OK,73159 -Moore,OK,73160 -Oklahoma City,OK,73162 -Moore,OK,73165 -Oklahoma City,OK,73169 -Moore,OK,73170 -Oklahoma City,OK,73173 -Oklahoma City,OK,73179 -Milo,OK,73401 -Burneyville,OK,73430 -Coleman,OK,73432 -Graham,OK,73437 -Healdton,OK,73438 -Kingston,OK,73439 -Lebanon,OK,73440 -Leon,OK,73441 -Loco,OK,73442 -Lone Grove,OK,73443 -Mc Millan,OK,73446 -Mannsville,OK,73447 -Marietta,OK,73448 -Mead,OK,73449 -Milburn,OK,73450 -Overbrook,OK,73453 -Ringling,OK,73456 -Springer,OK,73458 -Thackerville,OK,73459 -Tishomingo,OK,73460 -Wapanucka,OK,73461 -Rubottom,OK,73463 -Lawton,OK,73501 -Fort Sill,OK,73503 -Lawton,OK,73505 -Lawton,OK,73507 -Altus,OK,73521 -Blair,OK,73526 -Cache,OK,73527 -Chattanooga,OK,73528 -Comanche,OK,73529 -Davidson,OK,73530 -Devol,OK,73531 -Duke,OK,73532 -Duncan,OK,73533 -Eldorado,OK,73537 -Elgin,OK,73538 -Elmer,OK,73539 -Faxon,OK,73540 -Fletcher,OK,73541 -Frederick,OK,73542 -Geronimo,OK,73543 -Gould,OK,73544 -Grandfield,OK,73546 -Granite,OK,73547 -Hastings,OK,73548 -Headrick,OK,73549 -Hollis,OK,73550 -Hollister,OK,73551 -Indiahoma,OK,73552 -Loveland,OK,73553 -Reed,OK,73554 -Mountain Park,OK,73559 -Olustee,OK,73560 -Oscar,OK,73561 -Randlett,OK,73562 -Roosevelt,OK,73564 -Ryan,OK,73565 -Snyder,OK,73566 -Temple,OK,73568 -Grady,OK,73569 -Tipton,OK,73570 -Vinson,OK,73571 -Walters,OK,73572 -Waurika,OK,73573 -Clinton,OK,73601 -Arapaho,OK,73620 -Bessie,OK,73622 -Butler,OK,73625 -Canute,OK,73626 -Carter,OK,73627 -Strong City,OK,73628 -Cordell,OK,73632 -Crawford,OK,73638 -Custer City,OK,73639 -Dill City,OK,73641 -Durham,OK,73642 -Elk City,OK,73644 -Erick,OK,73645 -Fay,OK,73646 -Foss,OK,73647 -Hammon,OK,73650 -Hobart,OK,73651 -Leedey,OK,73654 -Lone Wolf,OK,73655 -Eagle City,OK,73658 -Putnam,OK,73659 -Reydon,OK,73660 -Rocky,OK,73661 -Sayre,OK,73662 -Seiling,OK,73663 -Sentinel,OK,73664 -Sweetwater,OK,73666 -Taloga,OK,73667 -Texola,OK,73668 -Thomas,OK,73669 -Willow,OK,73673 -Enid,OK,73701 -Enid,OK,73703 -Aline,OK,73716 -Alva,OK,73717 -Ames,OK,73718 -Amorita,OK,73719 -Bison,OK,73720 -Burlington,OK,73722 -Byron,OK,73723 -Canton,OK,73724 -Capron,OK,73725 -Carmen,OK,73726 -Carrier,OK,73727 -Cherokee,OK,73728 -Cleo Springs,OK,73729 -Covington,OK,73730 -Dacoma,OK,73731 -Douglas,OK,73733 -Dover,OK,73734 -Drummond,OK,73735 -Fairmont,OK,73736 -Orienta,OK,73737 -Garber,OK,73738 -Goltry,OK,73739 -Helena,OK,73741 -Hennessey,OK,73742 -Hitchcock,OK,73744 -Isabella,OK,73747 -Jet,OK,73749 -Kingfisher,OK,73750 -Kremlin,OK,73753 -Lahoma,OK,73754 -Longdale,OK,73755 -Loyal,OK,73756 -Lucien,OK,73757 -Manchester,OK,73758 -Medford,OK,73759 -Meno,OK,73760 -Nash,OK,73761 -Okarche,OK,73762 -Okeene,OK,73763 -Omega,OK,73764 -Pond Creek,OK,73766 -Ringwood,OK,73768 -Southard,OK,73770 -Wakita,OK,73771 -Watonga,OK,73772 -Waukomis,OK,73773 -Woodward,OK,73801 -Harmon,OK,73832 -Selman,OK,73834 -Camargo,OK,73835 -Chester,OK,73838 -Fargo,OK,73840 -Fort Supply,OK,73841 -Freedom,OK,73842 -Gage,OK,73843 -Gate,OK,73844 -Knowles,OK,73847 -Laverne,OK,73848 -Logan,OK,73849 -May,OK,73851 -Mooreland,OK,73852 -Mutual,OK,73853 -Rosston,OK,73855 -Sharon,OK,73857 -Shattuck,OK,73858 -Vici,OK,73859 -Waynoka,OK,73860 -Balko,OK,73931 -Elmwood,OK,73932 -Boise City,OK,73933 -Felt,OK,73937 -Forgan,OK,73938 -Goodwell,OK,73939 -Guymon,OK,73942 -Hardesty,OK,73944 -Optima,OK,73945 -Kenton,OK,73946 -Keyes,OK,73947 -Texhoma,OK,73949 -Baker,OK,73950 -Tyrone,OK,73951 -Barnsdall,OK,74002 -Bartlesville,OK,74003 -Bartlesville,OK,74006 -Bixby,OK,74008 -Bristow,OK,74010 -Broken Arrow,OK,74011 -Broken Arrow,OK,74012 -Broken Arrow,OK,74014 -Catoosa,OK,74015 -Chelsea,OK,74016 -Claremore,OK,74017 -Cleveland,OK,74020 -Collinsville,OK,74021 -Copan,OK,74022 -Cushing,OK,74023 -Delaware,OK,74027 -Depew,OK,74028 -Dewey,OK,74029 -Drumright,OK,74030 -Glencoe,OK,74032 -Glenpool,OK,74033 -Hominy,OK,74035 -Inola,OK,74036 -Jenks,OK,74037 -Jennings,OK,74038 -Kellyville,OK,74039 -Lenapah,OK,74042 -Mannford,OK,74044 -Maramec,OK,74045 -Mounds,OK,74047 -Nowata,OK,74048 -Ochelata,OK,74051 -Oologah,OK,74053 -Osage,OK,74054 -Owasso,OK,74055 -Pawhuska,OK,74056 -Pawnee,OK,74058 -Perkins,OK,74059 -Prue,OK,74060 -Ramona,OK,74061 -Ripley,OK,74062 -Sand Springs,OK,74063 -Sapulpa,OK,74066 -Skiatook,OK,74070 -S Coffeyville,OK,74072 -Sperry,OK,74073 -Stillwater,OK,74074 -Stillwater,OK,74075 -Kendrick,OK,74079 -Talala,OK,74080 -Terlton,OK,74081 -Wann,OK,74083 -Wynona,OK,74084 -Yale,OK,74085 -Tulsa,OK,74103 -Tulsa,OK,74104 -Tulsa,OK,74105 -Tulsa,OK,74106 -Tulsa,OK,74107 -Tulsa,OK,74108 -Tulsa,OK,74110 -Tulsa,OK,74112 -Tulsa,OK,74114 -Tulsa,OK,74115 -Tulsa,OK,74116 -Tulsa,OK,74117 -Tulsa,OK,74119 -Tulsa,OK,74120 -Tulsa,OK,74126 -Tulsa,OK,74127 -Tulsa,OK,74128 -Tulsa,OK,74129 -Tulsa,OK,74130 -Tulsa,OK,74131 -Tulsa,OK,74132 -Tulsa,OK,74133 -Tulsa,OK,74134 -Tulsa,OK,74135 -Tulsa,OK,74136 -Tulsa,OK,74137 -Tulsa,OK,74145 -Tulsa,OK,74146 -Vinita,OK,74301 -Adair,OK,74330 -Bernice,OK,74331 -Big Cabin,OK,74332 -Bluejacket,OK,74333 -Chouteau,OK,74337 -Colcord,OK,74338 -Commerce,OK,74339 -Eucha,OK,74342 -Fairland,OK,74343 -Grove,OK,74344 -Jay,OK,74346 -Kansas,OK,74347 -Locust Grove,OK,74352 -Miami,OK,74354 -Oaks,OK,74359 -Picher,OK,74360 -Pryor,OK,74361 -Quapaw,OK,74363 -Leach,OK,74364 -Salina,OK,74365 -Spavinaw,OK,74366 -Strang,OK,74367 -Twin Oaks,OK,74368 -Welch,OK,74369 -Wyandotte,OK,74370 -Muskogee,OK,74401 -Muskogee,OK,74403 -Beggs,OK,74421 -Boynton,OK,74422 -Braggs,OK,74423 -Canadian,OK,74425 -Checotah,OK,74426 -Cookson,OK,74427 -Council Hill,OK,74428 -Coweta,OK,74429 -Eufaula,OK,74432 -Fort Gibson,OK,74434 -Gore,OK,74435 -Haskell,OK,74436 -Hoffman,OK,74437 -Hoyt,OK,74440 -Hulbert,OK,74441 -Indianola,OK,74442 -Morris,OK,74445 -Okmulgee,OK,74447 -Oktaha,OK,74450 -Park Hill,OK,74451 -Peggs,OK,74452 -Porter,OK,74454 -Porum,OK,74455 -Proctor,OK,74457 -Stidham,OK,74461 -Stigler,OK,74462 -Taft,OK,74463 -Tahlequah,OK,74464 -Wagoner,OK,74467 -Warner,OK,74469 -Webbers Falls,OK,74470 -Welling,OK,74471 -Whitefield,OK,74472 -Mcalester,OK,74501 -Antlers,OK,74523 -Atoka,OK,74525 -Blanco,OK,74528 -Calvin,OK,74531 -Caney,OK,74533 -Centrahoma,OK,74534 -Clayton,OK,74536 -Coalgate,OK,74538 -Daisy,OK,74540 -Farris,OK,74542 -Finley,OK,74543 -Hartshorne,OK,74547 -Haywood,OK,74548 -Honobia,OK,74549 -Kinta,OK,74552 -Kiowa,OK,74553 -Lane,OK,74555 -Moyers,OK,74557 -Nashoba,OK,74558 -Pittsburg,OK,74560 -Quinton,OK,74561 -Rattan,OK,74562 -Red Oak,OK,74563 -Snow,OK,74567 -Stringtown,OK,74569 -Stuart,OK,74570 -Talihina,OK,74571 -Tupelo,OK,74572 -Tuskahoma,OK,74574 -Wardville,OK,74576 -Whitesboro,OK,74577 -Wilburton,OK,74578 -Ponca City,OK,74601 -Ponca City,OK,74604 -Billings,OK,74630 -Blackwell,OK,74631 -Braman,OK,74632 -Burbank,OK,74633 -Deer Creek,OK,74636 -Fairfax,OK,74637 -Hunter,OK,74640 -Kaw City,OK,74641 -Lamont,OK,74643 -Marland,OK,74644 -Nardin,OK,74646 -Peckham,OK,74647 -Ralston,OK,74650 -Red Rock,OK,74651 -Foraker,OK,74652 -Tonkawa,OK,74653 -Durant,OK,74701 -Bennington,OK,74723 -Bethel,OK,74724 -Bokchito,OK,74726 -Boswell,OK,74727 -Broken Bow,OK,74728 -Caddo,OK,74729 -Calera,OK,74730 -Cartwright,OK,74731 -Colbert,OK,74733 -Eagletown,OK,74734 -Fort Towson,OK,74735 -Garvin,OK,74736 -Grant,OK,74738 -Tom,OK,74740 -Hendrix,OK,74741 -Hugo,OK,74743 -Idabel,OK,74745 -Kenefic,OK,74748 -Ringold,OK,74754 -Rufe,OK,74755 -Sawyer,OK,74756 -Soper,OK,74759 -Spencerville,OK,74760 -Valliant,OK,74764 -Wright City,OK,74766 -Shawnee,OK,74801 -Ada,OK,74820 -Agra,OK,74824 -Allen,OK,74825 -Asher,OK,74826 -Atwood,OK,74827 -Boley,OK,74829 -Byars,OK,74831 -Carney,OK,74832 -Castle,OK,74833 -Chandler,OK,74834 -Clearview,OK,74835 -Dustin,OK,74839 -Earlsboro,OK,74840 -Fittstown,OK,74842 -Fitzhugh,OK,74843 -Vernon,OK,74845 -Holdenville,OK,74848 -Konawa,OK,74849 -Lamar,OK,74850 -Mc Loud,OK,74851 -Macomb,OK,74852 -Maud,OK,74854 -Meeker,OK,74855 -Mill Creek,OK,74856 -Newalla,OK,74857 -Bearden,OK,74859 -Paden,OK,74860 -Prague,OK,74864 -Roff,OK,74865 -Sasakwa,OK,74867 -Seminole,OK,74868 -Sparks,OK,74869 -Harden City,OK,74871 -Stratford,OK,74872 -Tecumseh,OK,74873 -Tryon,OK,74875 -Wanette,OK,74878 -Weleetka,OK,74880 -Wellston,OK,74881 -Welty,OK,74882 -Wetumka,OK,74883 -New Lima,OK,74884 -Arkoma,OK,74901 -Pocola,OK,74902 -Bokoshe,OK,74930 -Bunch,OK,74931 -Cameron,OK,74932 -Heavener,OK,74937 -Hodgen,OK,74939 -Howe,OK,74940 -Keota,OK,74941 -Mccurtain,OK,74944 -Muldrow,OK,74948 -Muse,OK,74949 -Poteau,OK,74953 -Roland,OK,74954 -Sallisaw,OK,74955 -Shady Point,OK,74956 -Octavia,OK,74957 -Spiro,OK,74959 -Stilwell,OK,74960 -Vian,OK,74962 -Watson,OK,74963 -Watts,OK,74964 -Westville,OK,74965 -Wister,OK,74966 -Antelope,OR,97001 -Aurora,OR,97002 -Beavercreek,OR,97004 -Beaverton,OR,97005 -Aloha,OR,97006 -Aloha,OR,97007 -Boring,OR,97009 -Bridal Veil,OR,97010 -Brightwood,OR,97011 -Canby,OR,97013 -Bonneville,OR,97014 -Clackamas,OR,97015 -Westport,OR,97016 -Colton,OR,97017 -Columbia City,OR,97018 -Corbett,OR,97019 -Friend,OR,97021 -Eagle Creek,OR,97022 -Estacada,OR,97023 -Gervais,OR,97026 -Gladstone,OR,97027 -Timberline Lodge,OR,97028 -Grass Valley,OR,97029 -Gresham,OR,97030 -Hood River,OR,97031 -Hubbard,OR,97032 -Kent,OR,97033 -Lake Oswego,OR,97034 -Lake Oswego,OR,97035 -Maupin,OR,97037 -Molalla,OR,97038 -Moro,OR,97039 -Mosier,OR,97040 -Mount Hood Parkd,OR,97041 -Mulino,OR,97042 -Odell,OR,97044 -Oregon City,OR,97045 -Rainier,OR,97048 -Zigzag,OR,97049 -Rufus,OR,97050 -Saint Helens,OR,97051 -Warren,OR,97053 -Deer Island,OR,97054 -Sandy,OR,97055 -Scappoose,OR,97056 -Shaniko,OR,97057 -The Dalles,OR,97058 -Troutdale,OR,97060 -Tualatin,OR,97062 -Wamic,OR,97063 -Vernonia,OR,97064 -Wasco,OR,97065 -Welches,OR,97067 -West Linn,OR,97068 -Wilsonville,OR,97070 -Woodburn,OR,97071 -Gresham,OR,97080 -Amity,OR,97101 -Astoria,OR,97103 -Banks,OR,97106 -Bay City,OR,97107 -Beaver,OR,97108 -Buxton,OR,97109 -Carlton,OR,97111 -Cloverdale,OR,97112 -Cornelius,OR,97113 -Dayton,OR,97114 -Dundee,OR,97115 -Glenwood,OR,97116 -Gales Creek,OR,97117 -Gaston,OR,97119 -Hammond,OR,97121 -Hebo,OR,97122 -Hillsboro,OR,97123 -Hillsboro,OR,97124 -Manning,OR,97125 -Lafayette,OR,97127 -Mcminnville,OR,97128 -Nehalem,OR,97131 -Newberg,OR,97132 -Rockaway,OR,97136 -Saint Paul,OR,97137 -Gearhart,OR,97138 -Sherwood,OR,97140 -Tillamook,OR,97141 -Timber,OR,97144 -Tolovana Park,OR,97145 -Warrenton,OR,97146 -Yamhill,OR,97148 -Neskowin,OR,97149 -Portland,OR,97201 -Portland,OR,97202 -Portland,OR,97203 -Portland,OR,97204 -Portland,OR,97205 -Portland,OR,97206 -Portland,OR,97209 -Portland,OR,97210 -Portland,OR,97211 -Portland,OR,97212 -Portland,OR,97213 -Portland,OR,97214 -Portland,OR,97215 -Portland,OR,97216 -Portland,OR,97217 -Portland,OR,97218 -Portland,OR,97219 -Portland,OR,97220 -Portland,OR,97221 -Milwaukie,OR,97222 -Garden Home,OR,97223 -Tigard,OR,97224 -Cedar Hills,OR,97225 -Portland,OR,97227 -Portland,OR,97229 -Rockwood Corners,OR,97230 -Portland,OR,97231 -Portland,OR,97232 -Portland,OR,97233 -Portland,OR,97236 -Portland,OR,97266 -Oak Grove,OR,97267 -Salem,OR,97301 -Salem,OR,97302 -Keizer,OR,97303 -Salem,OR,97304 -Brooks,OR,97305 -Salem,OR,97306 -Albany,OR,97321 -Alsea,OR,97324 -West Stayton,OR,97325 -Blodgett,OR,97326 -Brownsville,OR,97327 -Cascadia,OR,97329 -Corvallis,OR,97330 -Corvallis,OR,97331 -Corvallis,OR,97333 -Dallas,OR,97338 -Depoe Bay,OR,97341 -Detroit,OR,97342 -Eddyville,OR,97343 -Falls City,OR,97344 -Foster,OR,97345 -Gates,OR,97346 -Grand Ronde,OR,97347 -Halsey,OR,97348 -Idanha,OR,97350 -Independence,OR,97351 -Jefferson,OR,97352 -Lebanon,OR,97355 -Logsden,OR,97357 -Lyons,OR,97358 -Mill City,OR,97360 -Monmouth,OR,97361 -Mount Angel,OR,97362 -Neotsu,OR,97364 -Newport,OR,97365 -South Beach,OR,97366 -Lincoln City,OR,97367 -Otis,OR,97368 -Philomath,OR,97370 -Rickreall,OR,97371 -Scio,OR,97374 -Scotts Mills,OR,97375 -Seal Rock,OR,97376 -Shedd,OR,97377 -Sheridan,OR,97378 -Siletz,OR,97380 -Silverton,OR,97381 -Stayton,OR,97383 -Sublimity,OR,97385 -Sweet Home,OR,97386 -Tangent,OR,97389 -Tidewater,OR,97390 -Toledo,OR,97391 -Turner,OR,97392 -Waldport,OR,97394 -Willamina,OR,97396 -Coburg,OR,97401 -Eugene,OR,97402 -Eugene,OR,97403 -Eugene,OR,97404 -Eugene,OR,97405 -Agness,OR,97406 -Azalea,OR,97410 -Bandon,OR,97411 -Blachly,OR,97412 -Mc Kenzie Bridge,OR,97413 -Broadbent,OR,97414 -Harbor,OR,97415 -Camas Valley,OR,97416 -Canyonville,OR,97417 -Cheshire,OR,97419 -Charleston,OR,97420 -Coquille,OR,97423 -Cottage Grove,OR,97424 -Creswell,OR,97426 -Culp Creek,OR,97427 -Days Creek,OR,97429 -Greenleaf,OR,97430 -Dexter,OR,97431 -Dorena,OR,97434 -Drain,OR,97435 -Elkton,OR,97436 -Elmira,OR,97437 -Fall Creek,OR,97438 -Florence,OR,97439 -Gardiner,OR,97441 -Glendale,OR,97442 -Glide,OR,97443 -Pistol River,OR,97444 -Harrisburg,OR,97446 -Idleyld Park,OR,97447 -Junction City,OR,97448 -Lakeside,OR,97449 -Langlois,OR,97450 -Lorane,OR,97451 -Lowell,OR,97452 -Mapleton,OR,97453 -Marcola,OR,97454 -Pleasant Hill,OR,97455 -Monroe,OR,97456 -Myrtle Creek,OR,97457 -Myrtle Point,OR,97458 -North Bend,OR,97459 -Noti,OR,97461 -Oakland,OR,97462 -Oakridge,OR,97463 -Port Orford,OR,97465 -Powers,OR,97466 -Winchester Bay,OR,97467 -Remote,OR,97468 -Riddle,OR,97469 -Roseburg,OR,97470 -Scottsburg,OR,97473 -Sixes,OR,97476 -Springfield,OR,97477 -Springfield,OR,97478 -Sutherlin,OR,97479 -Swisshome,OR,97480 -Tenmile,OR,97481 -Tiller,OR,97484 -Umpqua,OR,97486 -Veneta,OR,97487 -Vida,OR,97488 -Leaburg,OR,97489 -Walton,OR,97490 -Westfir,OR,97492 -Westlake,OR,97493 -Winston,OR,97496 -Sunny Valley,OR,97497 -Yachats,OR,97498 -Yoncalla,OR,97499 -West Main,OR,97501 -Central Point,OR,97502 -White City,OR,97503 -Medford,OR,97504 -Ashland,OR,97520 -Butte Falls,OR,97522 -Cave Junction,OR,97523 -Eagle Point,OR,97524 -Gold Hill,OR,97525 -Grants Pass,OR,97526 -Grants Pass,OR,97527 -Applegate,OR,97530 -Kerby,OR,97531 -Merlin,OR,97532 -O Brien,OR,97534 -Phoenix,OR,97535 -Prospect,OR,97536 -Rogue River,OR,97537 -Selma,OR,97538 -Shady Cove,OR,97539 -Talent,OR,97540 -Trail,OR,97541 -Wilderville,OR,97543 -Williams,OR,97544 -Oretech,OR,97601 -Klamath Falls,OR,97603 -Adel,OR,97620 -Beatty,OR,97621 -Bonanza,OR,97623 -Chiloquin,OR,97624 -Dairy,OR,97625 -Keno,OR,97627 -Lakeview,OR,97630 -Malin,OR,97632 -Merrill,OR,97633 -New Pine Creek,OR,97635 -Paisley,OR,97636 -Plush,OR,97637 -Silver Lake,OR,97638 -Summer Lake,OR,97640 -Bend,OR,97701 -Bend,OR,97702 -Sunriver,OR,97707 -Ashwood,OR,97711 -Brothers,OR,97712 -Burns,OR,97720 -Camp Sherman,OR,97730 -Diamond Lake,OR,97731 -Crane,OR,97732 -Crescent,OR,97733 -Culver,OR,97734 -Fort Rock,OR,97735 -Gilchrist,OR,97737 -La Pine,OR,97739 -Lawen,OR,97740 -Madras,OR,97741 -Mitchell,OR,97750 -Paulina,OR,97751 -Post,OR,97752 -Powell Butte,OR,97753 -Prineville,OR,97754 -Redmond,OR,97756 -Riley,OR,97758 -Black Butte Ranc,OR,97759 -Crooked River Ra,OR,97760 -Warm Springs,OR,97761 -Pendleton,OR,97801 -Adams,OR,97810 -Arlington,OR,97812 -Athena,OR,97813 -Medical Springs,OR,97814 -Boardman,OR,97818 -Canyon City,OR,97820 -Condon,OR,97823 -Cove,OR,97824 -Dayville,OR,97825 -Echo,OR,97826 -Elgin,OR,97827 -Enterprise,OR,97828 -Kinzua,OR,97830 -Fox,OR,97831 -Haines,OR,97833 -Halfway,OR,97834 -Helix,OR,97835 -Heppner,OR,97836 -Hereford,OR,97837 -Hermiston,OR,97838 -Lexington,OR,97839 -Imbler,OR,97841 -Imnaha,OR,97842 -Ione,OR,97843 -Irrigon,OR,97844 -John Day,OR,97845 -Joseph,OR,97846 -Kimberly,OR,97848 -La Grande,OR,97850 -Long Creek,OR,97856 -Lostine,OR,97857 -Milton Freewater,OR,97862 -Monument,OR,97864 -Mount Vernon,OR,97865 -North Powder,OR,97867 -Pilot Rock,OR,97868 -Prairie City,OR,97869 -Richland,OR,97870 -Ritter,OR,97872 -Seneca,OR,97873 -Spray,OR,97874 -Stanfield,OR,97875 -Summerville,OR,97876 -Sumpter,OR,97877 -Mcnary,OR,97882 -Union,OR,97883 -Unity,OR,97884 -Wallowa,OR,97885 -Weston,OR,97886 -Adrian,OR,97901 -Arock,OR,97902 -Brogan,OR,97903 -Drewsey,OR,97904 -Harper,OR,97906 -Huntington,OR,97907 -Ironside,OR,97908 -Jamieson,OR,97909 -Jordan Valley,OR,97910 -Juntura,OR,97911 -Nyssa,OR,97913 -Ontario,OR,97914 -Riverside,OR,97917 -Vale,OR,97918 -Westfall,OR,97920 -Macarthur,PA,15001 -Fairoaks,PA,15003 -Baden,PA,15005 -Bakerstown,PA,15007 -Beaver,PA,15009 -Racine,PA,15010 -Rostraver,PA,15012 -Brackenridge,PA,15014 -Bradfordwoods,PA,15015 -Bridgeville,PA,15017 -Buena Vista,PA,15018 -Bulger,PA,15019 -Paris,PA,15021 -Charleroi,PA,15022 -Cheswick,PA,15024 -Large,PA,15025 -Clinton,PA,15026 -Conway,PA,15027 -Creighton,PA,15030 -Cuddy,PA,15031 -Donora,PA,15033 -Dravosburg,PA,15034 -East Mc Keesport,PA,15035 -Elizabeth,PA,15037 -Freedom,PA,15042 -Georgetown,PA,15043 -Gibsonia,PA,15044 -Glassport,PA,15045 -Harwick,PA,15049 -Hookstown,PA,15050 -Indianola,PA,15051 -Industry,PA,15052 -Joffre,PA,15053 -Lawrence,PA,15055 -Leetsdale,PA,15056 -Mc Donald,PA,15057 -Midland,PA,15059 -Midway,PA,15060 -Monaca,PA,15061 -Monessen,PA,15062 -Monongahela,PA,15063 -Morgan,PA,15064 -Natrona,PA,15065 -New Brighton,PA,15066 -New Eagle,PA,15067 -Arnold,PA,15068 -Noblestown,PA,15071 -Rochester,PA,15074 -Russellton,PA,15076 -Shippingport,PA,15077 -Slovan,PA,15078 -Sutersville,PA,15083 -Tarentum,PA,15084 -Level Green,PA,15085 -Warrendale,PA,15086 -West Newton,PA,15089 -Wexford,PA,15090 -Allison Park,PA,15101 -Bethel Park,PA,15102 -Rankin,PA,15104 -Carnegie,PA,15106 -Moon Twp,PA,15108 -Duquesne,PA,15110 -East Pittsburgh,PA,15112 -Glenshaw,PA,15116 -Munhall,PA,15120 -W Mifflin Fin,PA,15122 -Imperial,PA,15126 -Library,PA,15129 -White Oak,PA,15131 -Mc Keesport,PA,15132 -Mc Keesport,PA,15133 -Boston,PA,15135 -Mc Kees Rocks,PA,15136 -North Versailles,PA,15137 -Oakmont,PA,15139 -Pitcairn,PA,15140 -Presto,PA,15142 -Sewickley,PA,15143 -Springdale,PA,15144 -Turtle Creek,PA,15145 -Monroeville,PA,15146 -Verona,PA,15147 -Wall,PA,15148 -Arsenal,PA,15201 -Bellevue,PA,15202 -Carson,PA,15203 -Corliss,PA,15204 -Crafton,PA,15205 -East Liberty,PA,15206 -Hazelwood,PA,15207 -Homewood,PA,15208 -Millvale,PA,15209 -Mount Oliver,PA,15210 -Mount Washington,PA,15211 -Allegheny,PA,15212 -Oakland,PA,15213 -Observatory,PA,15214 -Aspinwall,PA,15215 -South Hills,PA,15216 -Squirrel Hill,PA,15217 -Swissvale,PA,15218 -Uptown,PA,15219 -Parkway Center,PA,15220 -Wilkinsburg,PA,15221 -Downtown,PA,15222 -Etna,PA,15223 -Bloomfield,PA,15224 -Neville Island,PA,15225 -Brookline,PA,15226 -Brentwood,PA,15227 -Mount Lebanon,PA,15228 -West View,PA,15229 -Shadyside,PA,15232 -Kilbuck,PA,15233 -Castle Shannon,PA,15234 -Penn Hills,PA,15235 -Caste Village,PA,15236 -Mc Knight,PA,15237 -Blawnox,PA,15238 -Plum,PA,15239 -Upper Saint Clai,PA,15241 -Cedarhurst,PA,15243 -Washington,PA,15301 -Aleppo,PA,15310 -Amity,PA,15311 -Avella,PA,15312 -Beallsville,PA,15313 -Bentleyville,PA,15314 -Mc Murray,PA,15317 -Carmichaels,PA,15320 -Cecil,PA,15321 -Clarksville,PA,15322 -Claysville,PA,15323 -Cokeburg,PA,15324 -Dilliner,PA,15327 -Prosperity,PA,15329 -Eighty Four,PA,15330 -Ellsworth,PA,15331 -Finleyville,PA,15332 -Fredericktown,PA,15333 -Graysville,PA,15337 -Greensboro,PA,15338 -Hickory,PA,15340 -Holbrook,PA,15341 -Houston,PA,15342 -Jefferson,PA,15344 -Marianna,PA,15345 -Mather,PA,15346 -Davistown,PA,15349 -New Freeport,PA,15352 -Nineveh,PA,15353 -Rices Landing,PA,15357 -Rogersville,PA,15359 -Scenery Hill,PA,15360 -Spraggs,PA,15362 -Strabane,PA,15363 -Sycamore,PA,15364 -Venetia,PA,15367 -Waynesburg,PA,15370 -West Alexander,PA,15376 -West Finley,PA,15377 -Wind Ridge,PA,15380 -Uniontown,PA,15401 -Adah,PA,15410 -Addison,PA,15411 -Allenport,PA,15412 -Allison,PA,15413 -West Brownsville,PA,15417 -California,PA,15419 -Coal Center,PA,15423 -Listonburg,PA,15424 -South Connellsvi,PA,15425 -Daisytown,PA,15427 -Dawson,PA,15428 -Dunbar,PA,15431 -Dunlevy,PA,15432 -East Millsboro,PA,15433 -Elco,PA,15434 -Fairchance,PA,15436 -Farmington,PA,15437 -Fayette City,PA,15438 -Gibbon Glade,PA,15440 -Grindstone,PA,15442 -Hiller,PA,15444 -Hopwood,PA,15445 -Indian Head,PA,15446 -La Belle,PA,15450 -Lake Lynn,PA,15451 -Lemont Furnace,PA,15456 -Lamberton,PA,15458 -Markleysburg,PA,15459 -Grays Landing,PA,15461 -Melcroft,PA,15462 -Merrittstown,PA,15463 -Mill Run,PA,15464 -New Salem,PA,15468 -Normalville,PA,15469 -Ohiopyle,PA,15470 -Oliver,PA,15472 -Layton,PA,15473 -Point Marion,PA,15474 -Republic,PA,15475 -Roscoe,PA,15477 -Smithfield,PA,15478 -Van Meter,PA,15479 -Smock,PA,15480 -Star Junction,PA,15482 -Stockdale,PA,15483 -Vanderbilt,PA,15486 -Waltersburg,PA,15488 -White,PA,15490 -Somerset,PA,15501 -Alum Bank,PA,15521 -Bedford,PA,15522 -Berlin,PA,15530 -Boswell,PA,15531 -Breezewood,PA,15533 -Buffalo Mills,PA,15534 -Clearville,PA,15535 -Crystal Spring,PA,15536 -Everett,PA,15537 -Glencoe,PA,15538 -Fort Hill,PA,15540 -Friedens,PA,15541 -Garrett,PA,15542 -Hyndman,PA,15545 -Jenners,PA,15546 -Manns Choice,PA,15550 -Markleton,PA,15551 -Meyersdale,PA,15552 -New Paris,PA,15554 -Rockwood,PA,15557 -Salisbury,PA,15558 -Schellsburg,PA,15559 -Springs,PA,15562 -Stoystown,PA,15563 -Greensburg,PA,15601 -Acme,PA,15610 -Adamsburg,PA,15611 -Alverton,PA,15612 -Apollo,PA,15613 -Ardara,PA,15615 -Armbrust,PA,15616 -Arona,PA,15617 -Avonmore,PA,15618 -Bradenville,PA,15620 -Champion,PA,15622 -Darragh,PA,15625 -Delmont,PA,15626 -Derry,PA,15627 -Donegal,PA,15628 -Everson,PA,15631 -Export,PA,15632 -Grapeville,PA,15634 -Harrison City,PA,15636 -Herminie,PA,15637 -Hunker,PA,15639 -Hyde Park,PA,15641 -North Huntingdon,PA,15642 -Jeannette,PA,15644 -Jones Mills,PA,15646 -Larimer,PA,15647 -Latrobe,PA,15650 -Laughlintown,PA,15655 -Leechburg,PA,15656 -Wilpen,PA,15658 -Loyalhanna,PA,15661 -Madison,PA,15663 -Manor,PA,15665 -Mount Pleasant,PA,15666 -Murrysville,PA,15668 -New Alexandria,PA,15670 -New Derry,PA,15671 -New Stanton,PA,15672 -Penn,PA,15675 -Rector,PA,15677 -Rillton,PA,15678 -Ruffs Dale,PA,15679 -Saltsburg,PA,15681 -Scottdale,PA,15683 -Slickville,PA,15684 -Spring Church,PA,15686 -Stahlstown,PA,15687 -Tarrs,PA,15688 -Park,PA,15690 -Westmoreland Cit,PA,15692 -Youngwood,PA,15697 -Yukon,PA,15698 -Indiana,PA,15701 -Anita,PA,15711 -Aultman,PA,15713 -Barnesboro,PA,15714 -Black Lick,PA,15716 -Blairsville,PA,15717 -Brush Valley,PA,15720 -Burnside,PA,15721 -Carrolltown,PA,15722 -Cherry Tree,PA,15724 -Clarksburg,PA,15725 -Clymer,PA,15728 -Commodore,PA,15729 -Coolspring,PA,15730 -Creekside,PA,15732 -Ernest,PA,15739 -Glen Campbell,PA,15742 -Hamilton,PA,15744 -Home,PA,15747 -Graceton,PA,15748 -La Jose,PA,15753 -Lucernemines,PA,15754 -Mc Gees Mills,PA,15757 -Marchand,PA,15758 -Marion Center,PA,15759 -Marsteller,PA,15760 -Nicktown,PA,15762 -Northpoint,PA,15763 -Oliveburg,PA,15764 -Penn Run,PA,15765 -Punxsutawney,PA,15767 -Ringgold,PA,15770 -Rochester Mills,PA,15771 -Rossiter,PA,15772 -Saint Benedict,PA,15773 -Shelocta,PA,15774 -Spangler,PA,15775 -Sprankle Mills,PA,15776 -Starford,PA,15777 -Timblin,PA,15778 -Valier,PA,15780 -Worthville,PA,15784 -Du Bois,PA,15801 -Benezett,PA,15821 -Brockport,PA,15823 -Brockway,PA,15824 -Hazen,PA,15825 -Byrnedale,PA,15827 -Clarington,PA,15828 -Corsica,PA,15829 -Driftwood,PA,15832 -Emporium,PA,15834 -Falls Creek,PA,15840 -Johnsonburg,PA,15845 -Kersey,PA,15846 -Luthersburg,PA,15848 -Penfield,PA,15849 -Reynoldsville,PA,15851 -Portland Mills,PA,15853 -Rockton,PA,15856 -Saint Marys,PA,15857 -Sigel,PA,15860 -Sinnamahoning,PA,15861 -Summerville,PA,15864 -Sykesville,PA,15865 -Weedville,PA,15868 -Wilcox,PA,15870 -Johnstown,PA,15901 -Johnstown,PA,15902 -Johnstown,PA,15904 -Johnstown,PA,15905 -Johnstown,PA,15906 -Johnstown,PA,15909 -Armagh,PA,15920 -Bolivar,PA,15923 -Cairnbrook,PA,15924 -Central City,PA,15926 -Colver,PA,15927 -Davidsville,PA,15928 -Ebensburg,PA,15931 -Hollsopple,PA,15935 -Hooversville,PA,15936 -Lilly,PA,15938 -Loretto,PA,15940 -Mineral Point,PA,15942 -Nanty Glo,PA,15943 -New Florence,PA,15944 -Parkhill,PA,15945 -Puritan,PA,15946 -Robinson,PA,15949 -Saint Michael,PA,15951 -Salix,PA,15952 -Seanor,PA,15953 -Seward,PA,15954 -Sidman,PA,15955 -South Fork,PA,15956 -Strongstown,PA,15957 -Summerhill,PA,15958 -Twin Rocks,PA,15960 -Vintondale,PA,15961 -Windber,PA,15963 -Bon Aire,PA,16001 -Boyers,PA,16020 -Bruin,PA,16022 -Marwood,PA,16023 -Chicora,PA,16025 -East Brady,PA,16028 -Eau Claire,PA,16030 -Evans City,PA,16033 -Fenelton,PA,16034 -Foxburg,PA,16036 -Harmony,PA,16037 -Harrisville,PA,16038 -Hilliards,PA,16040 -Karns City,PA,16041 -Lyndora,PA,16045 -Mars,PA,16046 -Parker,PA,16049 -Petrolia,PA,16050 -Portersville,PA,16051 -Prospect,PA,16052 -Renfrew,PA,16053 -Sarver,PA,16055 -Saxonburg,PA,16056 -Slippery Rock,PA,16057 -Valencia,PA,16059 -West Sunbury,PA,16061 -Zelienople,PA,16063 -New Castle,PA,16101 -New Castle,PA,16102 -Neshannock,PA,16105 -Adamsville,PA,16110 -Atlantic,PA,16111 -Bessemer,PA,16112 -Clarks Mills,PA,16114 -Darlington,PA,16115 -Edinburg,PA,16116 -Ellport,PA,16117 -Enon Valley,PA,16120 -Farrell,PA,16121 -Fombell,PA,16123 -Fredonia,PA,16124 -Shenango,PA,16125 -Grove City,PA,16127 -Hadley,PA,16130 -Hartstown,PA,16131 -Jackson Center,PA,16133 -Westford,PA,16134 -Mercer,PA,16137 -New Galilee,PA,16141 -New Wilmington,PA,16142 -Pulaski,PA,16143 -Sandy Lake,PA,16145 -Sharon,PA,16146 -Hermitage,PA,16148 -Sharpsville,PA,16150 -Stoneboro,PA,16153 -Transfer,PA,16154 -Volant,PA,16156 -Wampum,PA,16157 -West Middlesex,PA,16159 -Kittanning,PA,16201 -Adrian,PA,16210 -Cadogan,PA,16212 -Callensburg,PA,16213 -Clarion,PA,16214 -Cooksburg,PA,16217 -Cowansville,PA,16218 -Dayton,PA,16222 -Fairmount City,PA,16224 -Fisher,PA,16225 -Ford City,PA,16226 -Freeport,PA,16229 -Knox,PA,16232 -Leeper,PA,16233 -Limestone,PA,16234 -Lucinda,PA,16235 -Mc Grann,PA,16236 -Manorville,PA,16238 -Marienville,PA,16239 -Mayport,PA,16240 -New Bethlehem,PA,16242 -Huey,PA,16248 -Rural Valley,PA,16249 -Shippenville,PA,16254 -Sligo,PA,16255 -Smicksburg,PA,16256 -Strattanville,PA,16258 -Templeton,PA,16259 -Vowinckel,PA,16260 -Craigsville,PA,16262 -Oil City,PA,16301 -Carlton,PA,16311 -Clarendon,PA,16313 -Cochranton,PA,16314 -Conneaut Lake,PA,16316 -Cooperstown,PA,16317 -Cranberry,PA,16319 -East Hickory,PA,16321 -Franklin,PA,16323 -Fryburg,PA,16326 -Guys Mills,PA,16327 -Irvine,PA,16329 -Kossuth,PA,16331 -Lickingville,PA,16332 -Ludlow,PA,16333 -Marble,PA,16334 -Meadville,PA,16335 -Pittsfield,PA,16340 -Pleasantville,PA,16341 -Polk,PA,16342 -Russell,PA,16345 -Seneca,PA,16346 -Sheffield,PA,16347 -Sugar Grove,PA,16350 -Tidioute,PA,16351 -Tionesta,PA,16353 -Titusville,PA,16354 -Townville,PA,16360 -Utica,PA,16362 -Venus,PA,16364 -North Warren,PA,16365 -Youngsville,PA,16371 -Clintonville,PA,16372 -Emlenton,PA,16373 -Kennerdell,PA,16374 -Lundys Lane,PA,16401 -Bear Lake,PA,16402 -Cambridge Spring,PA,16403 -Centerville,PA,16404 -Columbus,PA,16405 -Conneautville,PA,16406 -Corry,PA,16407 -Cranesville,PA,16410 -East Springfield,PA,16411 -Edinboro,PA,16412 -Fairview,PA,16415 -Girard,PA,16417 -Grand Valley,PA,16420 -Harborcreek,PA,16421 -Lake City,PA,16423 -Espyville,PA,16424 -Mc Kean,PA,16426 -North East,PA,16428 -Saegertown,PA,16433 -Spartansburg,PA,16434 -Springboro,PA,16435 -Spring Creek,PA,16436 -Union City,PA,16438 -Venango,PA,16440 -Waterford,PA,16441 -Wattsburg,PA,16442 -West Springfield,PA,16443 -Erie,PA,16501 -Erie,PA,16502 -Erie,PA,16503 -Erie,PA,16504 -Presque Isle,PA,16505 -Erie,PA,16506 -Erie,PA,16507 -Erie,PA,16508 -Erie,PA,16509 -Wesleyville,PA,16510 -Erie,PA,16511 -Erie,PA,16565 -Altoona,PA,16601 -Altoona,PA,16602 -Barree,PA,16611 -Ashville,PA,16613 -Beccaria,PA,16616 -Bellwood,PA,16617 -Brisbin,PA,16620 -Broad Top,PA,16621 -Calvin,PA,16622 -Cassville,PA,16623 -Claysburg,PA,16625 -Coalport,PA,16627 -Cresson,PA,16630 -Dudley,PA,16634 -Duncansville,PA,16635 -Dysart,PA,16636 -East Freedom,PA,16637 -Fallentimber,PA,16639 -Flinton,PA,16640 -Gallitzin,PA,16641 -Glen Hope,PA,16645 -Hastings,PA,16646 -Hesston,PA,16647 -Hollidaysburg,PA,16648 -Hopewell,PA,16650 -Houtzdale,PA,16651 -Huntingdon,PA,16652 -Imler,PA,16655 -Irvona,PA,16656 -James Creek,PA,16657 -Loysburg,PA,16659 -Madera,PA,16661 -Martinsburg,PA,16662 -New Enterprise,PA,16664 -Osceola Mills,PA,16666 -St Clairsville,PA,16667 -Patton,PA,16668 -Petersburg,PA,16669 -Ramey,PA,16671 -Roaring Spring,PA,16673 -Robertsdale,PA,16674 -Saxton,PA,16678 -Six Mile Run,PA,16679 -Smithmill,PA,16680 -Spruce Creek,PA,16683 -Todd,PA,16685 -Tyrone,PA,16686 -Waterfall,PA,16689 -Wells Tannery,PA,16691 -Westover,PA,16692 -Ganister,PA,16693 -Woodbury,PA,16695 -Bradford,PA,16701 -Austin,PA,16720 -Crosby,PA,16724 -Ormsby,PA,16726 -Derrick City,PA,16727 -Duke Center,PA,16729 -Eldred,PA,16731 -Gifford,PA,16732 -James City,PA,16734 -Kane,PA,16735 -Lewis Run,PA,16738 -Mount Jewett,PA,16740 -Port Allegany,PA,16743 -Rew,PA,16744 -Rixford,PA,16745 -Roulette,PA,16746 -Shinglehouse,PA,16748 -Smethport,PA,16749 -Turtlepoint,PA,16750 -State College,PA,16801 -State College,PA,16803 -Aaronsburg,PA,16820 -Allport,PA,16821 -Beech Creek,PA,16822 -Pleasant Gap,PA,16823 -Boalsburg,PA,16827 -Centre Hall,PA,16828 -Clarence,PA,16829 -Clearfield,PA,16830 -Coburn,PA,16832 -Curwensville,PA,16833 -Frenchville,PA,16836 -Glen Richey,PA,16837 -Grampian,PA,16838 -Grassflat,PA,16839 -Hawk Run,PA,16840 -Howard,PA,16841 -Julian,PA,16844 -Karthaus,PA,16845 -Madisonburg,PA,16852 -Millheim,PA,16854 -Morrisdale,PA,16858 -Moshannon,PA,16859 -Munson,PA,16860 -New Millport,PA,16861 -Olanta,PA,16863 -Orviston,PA,16864 -Pennsylvania Fur,PA,16865 -Philipsburg,PA,16866 -Port Matilda,PA,16870 -Pottersdale,PA,16871 -Rebersburg,PA,16872 -Snow Shoe,PA,16874 -Spring Mills,PA,16875 -Warriors Mark,PA,16877 -West Decatur,PA,16878 -Winburne,PA,16879 -Woodland,PA,16881 -Woodward,PA,16882 -Wellsboro,PA,16901 -Blossburg,PA,16912 -Columbia Cross R,PA,16914 -Oswayo,PA,16915 -Covington,PA,16917 -Elkland,PA,16920 -Gaines,PA,16921 -Galeton,PA,16922 -North Bingham,PA,16923 -Gillett,PA,16925 -Granville Summit,PA,16926 -Harrison Valley,PA,16927 -Knoxville,PA,16928 -Lawrenceville,PA,16929 -Liberty,PA,16930 -Mainesburg,PA,16932 -Mansfield,PA,16933 -Middlebury Cente,PA,16935 -Millerton,PA,16936 -Mills,PA,16937 -Morris,PA,16938 -Morris Run,PA,16939 -Nelson,PA,16940 -Genesee,PA,16941 -Osceola,PA,16942 -Sabinsville,PA,16943 -Tioga,PA,16946 -Troy,PA,16947 -Ulysses,PA,16948 -Little Marsh,PA,16950 -Allensville,PA,17002 -Annville,PA,17003 -Belleville,PA,17004 -Berrysburg,PA,17005 -Blain,PA,17006 -Boiling Springs,PA,17007 -Burnham,PA,17009 -Shiremanstown,PA,17011 -Carlisle Barrack,PA,17013 -Cocolamus,PA,17014 -Dalmatia,PA,17017 -Dauphin,PA,17018 -Dillsburg,PA,17019 -Duncannon,PA,17020 -East Waterford,PA,17021 -Elizabethtown,PA,17022 -Elizabethville,PA,17023 -Elliottsburg,PA,17024 -Enola,PA,17025 -Fredericksburg,PA,17026 -Grantville,PA,17028 -Granville,PA,17029 -Gratz,PA,17030 -Green Park,PA,17031 -Halifax,PA,17032 -Hershey,PA,17033 -Highspire,PA,17034 -Honey Grove,PA,17035 -Hummelstown,PA,17036 -Ickesburg,PA,17037 -Jonestown,PA,17038 -Landisburg,PA,17040 -Cleona,PA,17042 -Wormleysburg,PA,17043 -Lewistown,PA,17044 -Liverpool,PA,17045 -Loysville,PA,17047 -Lykens,PA,17048 -Mc Alisterville,PA,17049 -Mc Veytown,PA,17051 -Mapleton Depot,PA,17052 -Marysville,PA,17053 -Hampden,PA,17055 -Middletown,PA,17057 -Mifflin,PA,17058 -Mifflintown,PA,17059 -Mill Creek,PA,17060 -Millersburg,PA,17061 -Millerstown,PA,17062 -Milroy,PA,17063 -Mount Holly Spri,PA,17065 -Mount Union,PA,17066 -Myerstown,PA,17067 -New Bloomfield,PA,17068 -New Cumberland,PA,17070 -New Germantown,PA,17071 -Newmanstown,PA,17073 -Newport,PA,17074 -Oakland Mills,PA,17076 -Palmyra,PA,17078 -Port Royal,PA,17082 -Reedsville,PA,17084 -Richfield,PA,17086 -Richland,PA,17087 -Shermans Dale,PA,17090 -Thompsontown,PA,17094 -Wiconisco,PA,17097 -Williamstown,PA,17098 -Yeagertown,PA,17099 -Harrisburg,PA,17101 -Harrisburg,PA,17102 -Penbrook,PA,17103 -Harrisburg,PA,17104 -Colonial Park,PA,17109 -Harrisburg,PA,17110 -Swatara,PA,17111 -Harrisburg,PA,17112 -Steelton,PA,17113 -Chambersburg,PA,17201 -Artemas,PA,17211 -Big Cove Tannery,PA,17212 -Blairs Mills,PA,17213 -Blue Ridge Summi,PA,17214 -Burnt Cabins,PA,17215 -Concord,PA,17217 -Doylesburg,PA,17219 -Dry Run,PA,17220 -Fannettsburg,PA,17221 -Fayetteville,PA,17222 -Fort Littleton,PA,17223 -Fort Loudon,PA,17224 -Greencastle,PA,17225 -Harrisonville,PA,17228 -Hustontown,PA,17229 -Lurgan,PA,17232 -Mc Connellsburg,PA,17233 -Mercersburg,PA,17236 -Mont Alto,PA,17237 -Needmore,PA,17238 -Neelyton,PA,17239 -Newburg,PA,17240 -Newville,PA,17241 -Orbisonia,PA,17243 -Orrstown,PA,17244 -Pleasant Hall,PA,17246 -Saint Thomas,PA,17252 -Shade Gap,PA,17255 -Shippensburg,PA,17257 -Shirleysburg,PA,17260 -Spring Run,PA,17262 -Three Springs,PA,17264 -Upperstrasburg,PA,17265 -Walnut Bottom,PA,17266 -Warfordsburg,PA,17267 -Waynesboro,PA,17268 -Willow Hill,PA,17271 -Abbottstown,PA,17301 -Airville,PA,17302 -Aspers,PA,17304 -Biglerville,PA,17307 -Brogue,PA,17309 -Yoe,PA,17313 -Delta,PA,17314 -Dover,PA,17315 -East Berlin,PA,17316 -Etters,PA,17319 -Greenstone,PA,17320 -Fawn Grove,PA,17321 -Felton,PA,17322 -Gardners,PA,17324 -Gettysburg,PA,17325 -Glen Rock,PA,17327 -Brodbecks,PA,17329 -Hanover,PA,17331 -Lewisberry,PA,17339 -Littlestown,PA,17340 -Mc Sherrystown,PA,17344 -Manchester,PA,17345 -Mount Wolf,PA,17347 -New Freedom,PA,17349 -New Oxford,PA,17350 -New Park,PA,17352 -Orrtanna,PA,17353 -Red Lion,PA,17356 -Seven Valleys,PA,17360 -Shrewsbury,PA,17361 -Spring Grove,PA,17362 -Stewartstown,PA,17363 -Thomasville,PA,17364 -Wellsville,PA,17365 -Windsor,PA,17366 -Wrightsville,PA,17368 -York Haven,PA,17370 -York Springs,PA,17372 -York,PA,17401 -East York,PA,17402 -York,PA,17403 -West York,PA,17404 -Hellam,PA,17406 -Jacobus,PA,17407 -Akron,PA,17501 -Bainbridge,PA,17502 -Bird In Hand,PA,17505 -Ninepoints,PA,17509 -Columbia,PA,17512 -Conestoga,PA,17516 -Denver,PA,17517 -Drumore,PA,17518 -East Earl,PA,17519 -East Petersburg,PA,17520 -Ephrata,PA,17522 -Gap,PA,17527 -Gordonville,PA,17529 -Holtwood,PA,17532 -Kinzers,PA,17535 -Kirkwood,PA,17536 -Salunga,PA,17538 -Leola,PA,17540 -Brunnerville,PA,17543 -Manheim,PA,17545 -Marietta,PA,17547 -Millersville,PA,17551 -Florin,PA,17552 -Mountville,PA,17554 -Narvon,PA,17555 -New Holland,PA,17557 -New Providence,PA,17560 -Paradise,PA,17562 -Peach Bottom,PA,17563 -Pequea,PA,17565 -Quarryville,PA,17566 -Reinholds,PA,17569 -Ronks,PA,17572 -Smoketown,PA,17576 -Stevens,PA,17578 -Strasburg,PA,17579 -Terre Hill,PA,17581 -Washington Boro,PA,17582 -Willow Street,PA,17584 -Neffsville,PA,17601 -Lancaster,PA,17602 -Rohrerstown,PA,17603 -South Williamspo,PA,17701 -Cammal,PA,17723 -Canton,PA,17724 -Cedar Run,PA,17727 -Cogan Station,PA,17728 -Cross Fork,PA,17729 -Hughesville,PA,17737 -Salladasburg,PA,17740 -Lairdsville,PA,17742 -Linden,PA,17744 -Lock Haven,PA,17745 -Loganton,PA,17747 -Mill Hall,PA,17751 -Montgomery,PA,17752 -Montoursville,PA,17754 -Muncy,PA,17756 -Muncy Valley,PA,17758 -Ralston,PA,17763 -Renovo,PA,17764 -Roaring Branch,PA,17765 -Shunk,PA,17768 -Trout Run,PA,17771 -Turbotville,PA,17772 -Unityville,PA,17774 -Waterville,PA,17776 -Watsontown,PA,17777 -Westport,PA,17778 -Woolrich,PA,17779 -Sunbury,PA,17801 -Allenwood,PA,17810 -Beaver Springs,PA,17812 -Beavertown,PA,17813 -Benton,PA,17814 -Bloomsburg,PA,17815 -Catawissa,PA,17820 -Danville,PA,17821 -Dornsife,PA,17823 -Elysburg,PA,17824 -Freeburg,PA,17827 -Gowen City,PA,17828 -Herndon,PA,17830 -Marion Heights,PA,17832 -Kulpmont,PA,17834 -Laurelton,PA,17835 -Leck Kill,PA,17836 -Lewisburg,PA,17837 -Mc Clure,PA,17841 -Middleburg,PA,17842 -Beaver Springs,PA,17843 -Mifflinburg,PA,17844 -Millmont,PA,17845 -Millville,PA,17846 -Milton,PA,17847 -Montandon,PA,17850 -Mount Carmel,PA,17851 -Mount Pleasant M,PA,17853 -New Berlin,PA,17855 -New Columbia,PA,17856 -Northumberland,PA,17857 -Orangeville,PA,17859 -Paxinos,PA,17860 -Port Trevorton,PA,17864 -Ranshaw,PA,17866 -Rebuck,PA,17867 -Riverside,PA,17868 -Selinsgrove,PA,17870 -Excelsior,PA,17872 -Snydertown,PA,17877 -Stillwater,PA,17878 -Trevorton,PA,17881 -Wilburton,PA,17888 -Winfield,PA,17889 -Pottsville,PA,17901 -Ashland,PA,17921 -Auburn,PA,17922 -Branchdale,PA,17923 -Brockton,PA,17925 -Centralia,PA,17927 -Cressona,PA,17929 -Frackville,PA,17931 -Girardville,PA,17935 -Hegins,PA,17938 -Klingerstown,PA,17941 -Mahanoy City,PA,17948 -Minersville,PA,17954 -Muir,PA,17957 -Kaska,PA,17959 -New Ringgold,PA,17960 -Orwigsburg,PA,17961 -Pine Grove,PA,17963 -Pitman,PA,17964 -Port Carbon,PA,17965 -Ringtown,PA,17967 -Sacramento,PA,17968 -Saint Clair,PA,17970 -Schuylkill Haven,PA,17972 -Shenandoah,PA,17976 -Spring Glen,PA,17978 -Tower City,PA,17980 -Donaldson,PA,17981 -Valley View,PA,17983 -Zion Grove,PA,17985 -Alburtis,PA,18011 -Roseto,PA,18013 -Bath,PA,18014 -Bethlehem,PA,18015 -Butztown,PA,18017 -Bethlehem,PA,18018 -Breinigsville,PA,18031 -Catasauqua,PA,18032 -Center Valley,PA,18034 -Cherryville,PA,18035 -Coopersburg,PA,18036 -Coplay,PA,18037 -Danielsville,PA,18038 -East Greenville,PA,18041 -Forks Township,PA,18042 -Emmaus,PA,18049 -Fogelsville,PA,18051 -Hokendauqua,PA,18052 -Germansville,PA,18053 -Green Lane,PA,18054 -Hellertown,PA,18055 -Hereford,PA,18056 -Kunkletown,PA,18058 -Macungie,PA,18062 -Nazareth,PA,18064 -New Tripoli,PA,18066 -Northampton,PA,18067 -Orefield,PA,18069 -Palm,PA,18070 -Palmerton,PA,18071 -Pen Argyl,PA,18072 -Pennsburg,PA,18073 -Perkiomenville,PA,18074 -Red Hill,PA,18076 -Riegelsville,PA,18077 -Schnecksville,PA,18078 -Emerald,PA,18080 -Trexlertown,PA,18087 -Walnutport,PA,18088 -Wind Gap,PA,18091 -Zionsville,PA,18092 -Allentown,PA,18101 -Allentown,PA,18102 -Allentown,PA,18103 -Allentown,PA,18104 -Wescosville,PA,18106 -West Hazleton,PA,18201 -Albrightsville,PA,18210 -Andreas,PA,18211 -Barnesville,PA,18214 -Beaver Meadows,PA,18216 -Coaldale,PA,18218 -Delano,PA,18220 -Drums,PA,18222 -Freeland,PA,18224 -Jim Thorpe,PA,18229 -Lansford,PA,18232 -Weissport,PA,18235 -Mcadoo,PA,18237 -Nesquehoning,PA,18240 -Quakake,PA,18245 -Rock Glen,PA,18246 -Sheppton,PA,18248 -Sugarloaf,PA,18249 -Summit Hill,PA,18250 -Tamaqua,PA,18252 -Weatherly,PA,18255 -East Stroudsburg,PA,18301 -Bartonsville,PA,18321 -Brodheadsville,PA,18322 -Bushkill,PA,18324 -Canadensis,PA,18325 -Cresco,PA,18326 -Delaware Water G,PA,18327 -Dingmans Ferry,PA,18328 -Effort,PA,18330 -Gilbert,PA,18331 -Henryville,PA,18332 -Kresgeville,PA,18333 -Long Pond,PA,18334 -Matamoras,PA,18336 -Milford,PA,18337 -Millrift,PA,18340 -Mount Bethel,PA,18343 -Mount Pocono,PA,18344 -Pocono Summit,PA,18346 -Pocono Lake,PA,18347 -Pocono Pines,PA,18350 -Reeders,PA,18352 -Saylorsburg,PA,18353 -Sciota,PA,18354 -Scotrun,PA,18355 -Stroudsburg,PA,18360 -Swiftwater,PA,18370 -Tamiment,PA,18371 -Tannersville,PA,18372 -Aldenville,PA,18401 -Eynon,PA,18403 -Beach Lake,PA,18405 -Simpson,PA,18407 -Clarks Summit,PA,18411 -Dalton,PA,18414 -Damascus,PA,18415 -Equinunk,PA,18417 -Factoryville,PA,18419 -Browndale,PA,18421 -Gouldsboro,PA,18424 -Greeley,PA,18425 -Greentown,PA,18426 -Hamlin,PA,18427 -Hawley,PA,18428 -Herrick Center,PA,18430 -Honesdale,PA,18431 -Mayfield,PA,18433 -Jessup,PA,18434 -Lackawaxen,PA,18435 -Lake Ariel,PA,18436 -Lake Como,PA,18437 -Lakeville,PA,18438 -Lakewood,PA,18439 -Lenoxville,PA,18441 -Milanville,PA,18443 -Moscow,PA,18444 -Newfoundland,PA,18445 -Nicholson,PA,18446 -Olyphant,PA,18447 -Paupack,PA,18451 -Peckville,PA,18452 -Pleasant Mount,PA,18453 -Preston Park,PA,18455 -Prompton,PA,18456 -Shohola,PA,18458 -South Sterling,PA,18460 -Starlight,PA,18461 -Starrucca,PA,18462 -Sterling,PA,18463 -Tafton,PA,18464 -Thompson,PA,18465 -Tobyhanna,PA,18466 -Tyler Hill,PA,18469 -Union Dale,PA,18470 -Waymart,PA,18472 -Scranton,PA,18503 -Scranton,PA,18504 -Scranton,PA,18505 -Moosic,PA,18507 -Scranton,PA,18508 -Scranton,PA,18509 -Scranton,PA,18510 -Dunmore,PA,18512 -Taylor,PA,18517 -Old Forge,PA,18518 -Dickson City,PA,18519 -Berwick,PA,18603 -Blakeslee,PA,18610 -College Miserico,PA,18612 -Dushore,PA,18614 -Falls,PA,18615 -Forksville,PA,18616 -Glen Lyon,PA,18617 -Harveys Lake,PA,18618 -Hillsgrove,PA,18619 -Hunlock Creek,PA,18621 -Huntington Mills,PA,18622 -Laceyville,PA,18623 -Lake Harmony,PA,18624 -Lopez,PA,18628 -Mehoopany,PA,18629 -Meshoppen,PA,18630 -Mifflinville,PA,18631 -Mildred,PA,18632 -Nanticoke,PA,18634 -Nescopeck,PA,18635 -Noxen,PA,18636 -Pittston,PA,18640 -Avoca,PA,18641 -Duryea,PA,18642 -West Pittston,PA,18643 -Wyoming,PA,18644 -Plymouth,PA,18651 -Mocanaqua,PA,18655 -Sweet Valley,PA,18656 -Center Moreland,PA,18657 -Wapwallopen,PA,18660 -White Haven,PA,18661 -Wilkes Barre,PA,18701 -Hanover Township,PA,18702 -Kingston,PA,18704 -Wilkes Barre,PA,18705 -Ashley,PA,18706 -Mountain Top,PA,18707 -Shavertown,PA,18708 -Luzerne,PA,18709 -Montrose,PA,18801 -Athens,PA,18810 -Brackney,PA,18812 -East Smithfield,PA,18817 -Friendsville,PA,18818 -Great Bend,PA,18821 -Hallstead,PA,18822 -Harford,PA,18823 -Hop Bottom,PA,18824 -Jackson,PA,18825 -Kingsley,PA,18826 -Lawton,PA,18828 -Le Raysville,PA,18829 -Little Meadows,PA,18830 -Milan,PA,18831 -Monroeton,PA,18832 -New Albany,PA,18833 -New Milford,PA,18834 -Rome,PA,18837 -Rushville,PA,18839 -Sayre,PA,18840 -South Gibson,PA,18842 -Springville,PA,18844 -Stevensville,PA,18845 -Sugar Run,PA,18846 -Susquehanna,PA,18847 -Towanda,PA,18848 -Ulster,PA,18850 -Warren Center,PA,18851 -Wyalusing,PA,18853 -Wysox,PA,18854 -New Britain,PA,18901 -Carversville,PA,18913 -Chalfont,PA,18914 -Colmar,PA,18915 -Dublin,PA,18917 -Erwinna,PA,18920 -Fountainville,PA,18923 -Furlong,PA,18925 -Hilltown,PA,18927 -Jamison,PA,18929 -Kintnersville,PA,18930 -Line Lexington,PA,18932 -Lumberville,PA,18933 -Mechanicsville,PA,18934 -Montgomeryville,PA,18936 -New Hope,PA,18938 -George School,PA,18940 -Ottsville,PA,18942 -Perkasie,PA,18944 -Pipersville,PA,18947 -Quakertown,PA,18951 -Richboro,PA,18954 -Richlandtown,PA,18955 -Sellersville,PA,18960 -Bethton,PA,18964 -Holland,PA,18966 -Telford,PA,18969 -Upper Black Eddy,PA,18972 -Warminster,PA,18974 -Warrington,PA,18976 -Washington Cross,PA,18977 -Ogontz Campus,PA,19001 -Maple Glen,PA,19002 -Ardmore,PA,19003 -Bala Cynwyd,PA,19004 -Huntingdon Valle,PA,19006 -Tullytown,PA,19007 -Broomall,PA,19008 -Bryn Mawr,PA,19010 -Cheltenham,PA,19012 -Chester,PA,19013 -Aston,PA,19014 -Brookhaven,PA,19015 -Primos Secane,PA,19018 -Bensalem,PA,19020 -Croydon,PA,19021 -Crum Lynne,PA,19022 -Collingdale,PA,19023 -Dresher,PA,19025 -Pilgrim Gardens,PA,19026 -Lester,PA,19029 -Fairless Hills,PA,19030 -Flourtown,PA,19031 -Folcroft,PA,19032 -Folsom,PA,19033 -Fort Washington,PA,19034 -Gladwyne,PA,19035 -Glenolden,PA,19036 -Glenside,PA,19038 -Hatboro,PA,19040 -Haverford,PA,19041 -Holmes,PA,19043 -Horsham,PA,19044 -Meadowbrook,PA,19046 -Penndel,PA,19047 -Yeadon,PA,19050 -Feasterville Tre,PA,19053 -Levittown,PA,19054 -Levittown,PA,19055 -Levittown,PA,19056 -Levittown,PA,19057 -Boothwyn,PA,19061 -Glen Riddle Lima,PA,19063 -Springfield,PA,19064 -Merion Station,PA,19066 -Yardley,PA,19067 -Morton,PA,19070 -Narberth,PA,19072 -Newtown Square,PA,19073 -Norwood,PA,19074 -Oreland,PA,19075 -Prospect Park,PA,19076 -Ridley Park,PA,19078 -Sharon Hill,PA,19079 -Swarthmore,PA,19081 -Upper Darby,PA,19082 -Havertown,PA,19083 -Villanova,PA,19085 -Wallingford,PA,19086 -Radnor,PA,19087 -Willow Grove Nas,PA,19090 -Woodlyn,PA,19094 -Wyncote,PA,19095 -Wynnewood,PA,19096 -Philadelphia,PA,19102 -Philadelphia,PA,19103 -Philadelphia,PA,19104 -Philadelphia,PA,19106 -Philadelphia,PA,19107 -Philadelphia,PA,19111 -Philadelphia,PA,19112 -Philadelphia,PA,19113 -Philadelphia,PA,19114 -Philadelphia,PA,19115 -Philadelphia,PA,19116 -Elkins Park,PA,19117 -Philadelphia,PA,19118 -Philadelphia,PA,19119 -Philadelphia,PA,19120 -Philadelphia,PA,19121 -Philadelphia,PA,19122 -Philadelphia,PA,19123 -Philadelphia,PA,19124 -Philadelphia,PA,19125 -Philadelphia,PA,19126 -Philadelphia,PA,19127 -Philadelphia,PA,19128 -Philadelphia,PA,19129 -Philadelphia,PA,19130 -Philadelphia,PA,19131 -Philadelphia,PA,19132 -Philadelphia,PA,19133 -Philadelphia,PA,19134 -Philadelphia,PA,19135 -Philadelphia,PA,19136 -Philadelphia,PA,19137 -Philadelphia,PA,19138 -Philadelphia,PA,19139 -Philadelphia,PA,19140 -Philadelphia,PA,19141 -Philadelphia,PA,19142 -Philadelphia,PA,19143 -Philadelphia,PA,19144 -Philadelphia,PA,19145 -Philadelphia,PA,19146 -Philadelphia,PA,19147 -Philadelphia,PA,19148 -Philadelphia,PA,19149 -Philadelphia,PA,19150 -Philadelphia,PA,19151 -Philadelphia,PA,19152 -Philadelphia,PA,19153 -Philadelphia,PA,19154 -Paoli,PA,19301 -Atglen,PA,19310 -Avondale,PA,19311 -Berwyn,PA,19312 -Chadds Ford,PA,19317 -Cheyney,PA,19319 -Coatesville,PA,19320 -Cochranville,PA,19330 -Devon,PA,19333 -Downingtown,PA,19335 -Exton,PA,19341 -Glen Mills,PA,19342 -Glenmoore,PA,19343 -Honey Brook,PA,19344 -Kelton,PA,19346 -Kennett Square,PA,19348 -Landenberg,PA,19350 -Lincoln Universi,PA,19352 -Frazer,PA,19355 -Nottingham,PA,19362 -Oxford,PA,19363 -Parkesburg,PA,19365 -Thorndale,PA,19372 -Thornton,PA,19373 -Toughkenamon,PA,19374 -West Chester,PA,19380 -West Chester,PA,19382 -West Grove,PA,19390 -Norristown,PA,19401 -Eagleville,PA,19403 -Bridgeport,PA,19405 -King Of Prussia,PA,19406 -Penllyn,PA,19422 -Chester Springs,PA,19425 -Collegeville,PA,19426 -West Conshohocke,PA,19428 -Frederick,PA,19435 -Gwynedd,PA,19436 -Harleysville,PA,19438 -Hatfield,PA,19440 -Lafayette Hill,PA,19444 -Lansdale,PA,19446 -Mont Clare,PA,19453 -North Wales,PA,19454 -Phoenixville,PA,19460 -Plymouth Meeting,PA,19462 -Sanatoga,PA,19464 -Limerick,PA,19468 -Schwenksville,PA,19473 -Spring City,PA,19475 -Spring House,PA,19477 -Zieglersville,PA,19492 -Adamstown,PA,19501 -Bally,PA,19503 -Barto,PA,19504 -Bechtelsville,PA,19505 -Bernville,PA,19506 -Bethel,PA,19507 -Birdsboro,PA,19508 -Blandon,PA,19510 -Boyertown,PA,19512 -Douglassville,PA,19518 -Elverson,PA,19520 -Evansville,PA,19522 -Gilbertsville,PA,19525 -Hamburg,PA,19526 -Kempton,PA,19529 -Kutztown,PA,19530 -Leesport,PA,19533 -Lenhartsville,PA,19534 -Mertztown,PA,19539 -Mohnton,PA,19540 -Mohrsville,PA,19541 -Morgantown,PA,19543 -Oley,PA,19547 -Port Clinton,PA,19549 -Robesonia,PA,19551 -Shoemakersville,PA,19555 -Temple,PA,19560 -Topton,PA,19562 -Wernersville,PA,19565 -Womelsdorf,PA,19567 -Reading,PA,19601 -Reading,PA,19602 -Reading,PA,19604 -Reading,PA,19605 -Mount Penn,PA,19606 -Shillington,PA,19607 -Sinking Spring,PA,19608 -West Lawn,PA,19609 -Wyomissing,PA,19610 -Reading,PA,19611 -Ashaway,RI,2804 -Barrington,RI,2806 -Block Island,RI,2807 -Bradford,RI,2808 -Bristol,RI,2809 -Richmond,RI,2812 -Charlestown,RI,2813 -Chepachet,RI,2814 -Clayville,RI,2815 -Coventry,RI,2816 -West Greenwich,RI,2817 -East Greenwich,RI,2818 -2821,RI,2821 -Exeter,RI,2822 -Foster,RI,2825 -Greene,RI,2827 -Greenville,RI,2828 -Harrisville,RI,2830 -Hope,RI,2831 -Richmond,RI,2832 -Jamestown,RI,2835 -Richmond,RI,2836 -Little Compton,RI,2837 -Manville,RI,2838 -Middletown,RI,2840 -North Kingstown,RI,2852 -North Scituate,RI,2857 -Oakland,RI,2858 -Pascoag,RI,2859 -Pawtucket,RI,2860 -Pawtucket,RI,2861 -Central Falls,RI,2863 -Cumberland,RI,2864 -Lincoln,RI,2865 -Portsmouth,RI,2871 -Prudence Island,RI,2872 -Saunderstown,RI,2874 -Slatersville,RI,2876 -Slocum,RI,2877 -Tiverton,RI,2878 -Narragansett,RI,2879 -Kingston,RI,2881 -Narragansett,RI,2882 -Peace Dale,RI,2883 -Warren,RI,2885 -Warwick,RI,2886 -Warwick,RI,2888 -Warwick,RI,2889 -Westerly,RI,2891 -Richmond,RI,2892 -West Warwick,RI,2893 -Wood River Junct,RI,2894 -North Smithfield,RI,2895 -Richmond,RI,2898 -Providence,RI,2903 -Centredale,RI,2904 -Cranston,RI,2905 -Providence,RI,2906 -Cranston,RI,2907 -Providence,RI,2908 -Cranston,RI,2909 -Cranston,RI,2910 -Centredale,RI,2911 -East Providence,RI,2914 -Riverside,RI,2915 -Rumford,RI,2916 -Smithfield,RI,2917 -Cranston,RI,2919 -Cranston,RI,2920 -Cranston,RI,2921 -Alcolu,SC,29001 -Bamberg,SC,29003 -Batesburg,SC,29006 -Bethune,SC,29009 -Bishopville,SC,29010 -Blackstock,SC,29014 -Blair,SC,29015 -Blythewood,SC,29016 -Bowman,SC,29018 -Camden,SC,29020 -Cameron,SC,29030 -Carlisle,SC,29031 -Cassatt,SC,29032 -Cayce,SC,29033 -Chapin,SC,29036 -Chappells,SC,29037 -Cope,SC,29038 -Cordova,SC,29039 -Dalzell,SC,29040 -Denmark,SC,29042 -Eastover,SC,29044 -Elgin,SC,29045 -Elliott,SC,29046 -Elloree,SC,29047 -Eutawville,SC,29048 -Gable,SC,29051 -Gadsden,SC,29052 -Gaston,SC,29053 -Gilbert,SC,29054 -Great Falls,SC,29055 -Greeleyville,SC,29056 -Heath Springs,SC,29058 -Holly Hill,SC,29059 -Hopkins,SC,29061 -Irmo,SC,29063 -Jenkinsville,SC,29065 -Kershaw,SC,29067 -Lamar,SC,29069 -Leesville,SC,29070 -Lexington,SC,29072 -Lexington,SC,29073 -Little Mountain,SC,29075 -Lone Star,SC,29077 -Lugoff,SC,29078 -Lynchburg,SC,29080 -Ehrhardt,SC,29081 -Lodge,SC,29082 -Mc Bee,SC,29101 -Paxville,SC,29102 -Saint Charles,SC,29104 -Monetta,SC,29105 -Neeses,SC,29107 -Newberry,SC,29108 -New Zion,SC,29111 -North,SC,29112 -Norway,SC,29113 -Olanta,SC,29114 -Orangeburg,SC,29115 -Pelion,SC,29123 -Pinewood,SC,29125 -Pomaria,SC,29126 -Prosperity,SC,29127 -Rembert,SC,29128 -Ridge Spring,SC,29129 -Ridgeway,SC,29130 -Rimini,SC,29131 -Rowesville,SC,29133 -Fort Motte,SC,29135 -Salley,SC,29137 -Saluda,SC,29138 -Santee,SC,29142 -Silverstreet,SC,29145 -Springfield,SC,29146 -Summerton,SC,29148 -Oswego,SC,29150 -Shaw A F B,SC,29152 -Sumter,SC,29154 -Swansea,SC,29160 -Timmonsville,SC,29161 -Turbeville,SC,29162 -Vance,SC,29163 -Wagener,SC,29164 -Ward,SC,29166 -Wedgefield,SC,29168 -West Columbia,SC,29169 -West Columbia,SC,29170 -West Columbia,SC,29172 -Westville,SC,29175 -Whitmire,SC,29178 -Winnsboro,SC,29180 -Columbia,SC,29201 -Columbia,SC,29203 -Columbia,SC,29204 -Columbia,SC,29205 -Columbia,SC,29206 -Columbia,SC,29209 -Columbia,SC,29210 -Columbia,SC,29212 -Columbia,SC,29223 -Spartanburg,SC,29301 -Spartanburg,SC,29302 -Valley Falls,SC,29303 -Buffalo,SC,29321 -Campobello,SC,29322 -Chesnee,SC,29323 -Clinton,SC,29325 -Cowpens,SC,29330 -Cross Hill,SC,29332 -Duncan,SC,29334 -Enoree,SC,29335 -Gaffney,SC,29340 -Inman,SC,29349 -Joanna,SC,29351 -Kelton,SC,29353 -Kinards,SC,29355 -Landrum,SC,29356 -Ora,SC,29360 -Lyman,SC,29365 -Moore,SC,29369 -Mountville,SC,29370 -Pacolet,SC,29372 -Glenn Springs,SC,29374 -Roebuck,SC,29376 -Union,SC,29379 -Waterloo,SC,29384 -Wellford,SC,29385 -Woodruff,SC,29388 -Charleston,SC,29401 -Charleston,SC,29403 -Charleston,SC,29404 -Charleston,SC,29405 -North Charleston,SC,29406 -Charleston,SC,29407 -Charleston,SC,29412 -Charleston,SC,29414 -Charleston,SC,29418 -Charleston,SC,29420 -Jericho,SC,29426 -Awendaw,SC,29429 -Bonneau,SC,29431 -Branchville,SC,29432 -Cordesville,SC,29434 -Cottageville,SC,29435 -Cross,SC,29436 -Dorchester,SC,29437 -Edisto Island,SC,29438 -Georgetown,SC,29440 -Mount Holly,SC,29445 -Green Pond,SC,29446 -Harleyville,SC,29448 -Meggett,SC,29449 -Huger,SC,29450 -Isle Of Palms,SC,29451 -Shulerville,SC,29453 -Johns Island,SC,29455 -Ladson,SC,29456 -Mc Clellanville,SC,29458 -Oakley,SC,29461 -Mount Pleasant,SC,29464 -Pineville,SC,29468 -Pinopolis,SC,29469 -Ravenel,SC,29470 -Reevesville,SC,29471 -Ridgeville,SC,29472 -Round O,SC,29474 -Ruffin,SC,29475 -Saint George,SC,29477 -Alvin,SC,29479 -Smoaks,SC,29481 -Sullivans Island,SC,29482 -Summerville,SC,29483 -Summerville,SC,29485 -Wadmalaw Island,SC,29487 -Ritter,SC,29488 -Wando,SC,29492 -Florence,SC,29501 -Florence,SC,29505 -Quinby,SC,29506 -Andrews,SC,29510 -Aynor,SC,29511 -Bennettsville,SC,29512 -Blenheim,SC,29516 -Cades,SC,29518 -Cheraw,SC,29520 -Clio,SC,29525 -Conway,SC,29526 -Bucksport,SC,29527 -Coward,SC,29530 -Darlington,SC,29532 -Dillon,SC,29536 -Effingham,SC,29541 -Fork,SC,29543 -Galivants Ferry,SC,29544 -Green Sea,SC,29545 -Gresham,SC,29546 -South Of The Bor,SC,29547 -Hartsville,SC,29550 -Hemingway,SC,29554 -Johnsonville,SC,29555 -Kingstree,SC,29556 -Lake City,SC,29560 -Lake View,SC,29563 -Lane,SC,29564 -Latta,SC,29565 -Little River,SC,29566 -Little Rock,SC,29567 -Longs,SC,29568 -Loris,SC,29569 -Mc Coll,SC,29570 -Marion,SC,29571 -Myrtle Beach,SC,29572 -Mullins,SC,29574 -Surfside Beach,SC,29575 -Murrells Inlet,SC,29576 -Myrtle Beach,SC,29577 -Nesmith,SC,29580 -Nichols,SC,29581 -Cherry Grove Bea,SC,29582 -Pamplico,SC,29583 -Patrick,SC,29584 -Pawleys Island,SC,29585 -Salters,SC,29590 -Scranton,SC,29591 -Sellers,SC,29592 -Society Hill,SC,29593 -Wallace,SC,29596 -Greenville,SC,29601 -Greenville,SC,29605 -Greenville,SC,29607 -Greenville,SC,29609 -Greenville,SC,29611 -Greenville,SC,29615 -Abbeville,SC,29620 -Anderson,SC,29621 -Anderson,SC,29624 -Anderson,SC,29625 -Belton,SC,29627 -Calhoun Falls,SC,29628 -Central,SC,29630 -Clemson,SC,29631 -Cleveland,SC,29635 -Shoals Junction,SC,29638 -Due West,SC,29639 -Easley,SC,29640 -Easley,SC,29642 -Fair Play,SC,29643 -Fountain Inn,SC,29644 -Ora,SC,29645 -Greenwood,SC,29646 -Greenwood,SC,29649 -Greer,SC,29650 -Greer,SC,29651 -Hodges,SC,29653 -Honea Path,SC,29654 -Iva,SC,29655 -Liberty,SC,29657 -Long Creek,SC,29658 -Lowndesville,SC,29659 -Marietta,SC,29661 -Mauldin,SC,29662 -Mountain Rest,SC,29664 -Ninety Six,SC,29666 -Cateechee,SC,29667 -Pelzer,SC,29669 -Pendleton,SC,29670 -Pickens,SC,29671 -Piedmont,SC,29673 -Salem,SC,29676 -Seneca,SC,29678 -Simpsonville,SC,29681 -Six Mile,SC,29682 -Starr,SC,29684 -Sunset,SC,29685 -Tamassee,SC,29686 -Taylors,SC,29687 -Tigerville,SC,29688 -Townville,SC,29689 -Travelers Rest,SC,29690 -Walhalla,SC,29691 -Ware Shoals,SC,29692 -Madison,SC,29693 -West Union,SC,29696 -Williamston,SC,29697 -Cherokee Falls,SC,29702 -Catawba,SC,29704 -Chester,SC,29706 -Chesterfield,SC,29709 -Lake Wylie,SC,29710 -Edgemoor,SC,29712 -Fort Lawn,SC,29714 -Tega Cay,SC,29715 -Hickory Grove,SC,29717 -Jefferson,SC,29718 -Lancaster,SC,29720 -Mc Connells,SC,29726 -Mount Croghan,SC,29727 -Pageland,SC,29728 -Richburg,SC,29729 -Rock Hill,SC,29730 -Rock Hill,SC,29732 -Ruby,SC,29741 -Sharon,SC,29742 -Smyrna,SC,29743 -York,SC,29745 -Aiken,SC,29801 -Aiken,SC,29803 -New Ellenton,SC,29809 -Allendale,SC,29810 -Barnwell,SC,29812 -Blackville,SC,29817 -Bradley,SC,29819 -Clarks Hill,SC,29821 -Edgefield,SC,29824 -Fairfax,SC,29827 -Graniteville,SC,29829 -Jackson,SC,29831 -Johnston,SC,29832 -Mc Cormick,SC,29835 -Martin,SC,29836 -Modoc,SC,29838 -Mount Carmel,SC,29840 -Beech Island,SC,29841 -Olar,SC,29843 -Plum Branch,SC,29845 -Trenton,SC,29847 -Troy,SC,29848 -Ulmer,SC,29849 -Warrenville,SC,29851 -Williston,SC,29853 -Windsor,SC,29856 -Burton,SC,29902 -Bluffton,SC,29910 -Brunson,SC,29911 -Early Branch,SC,29916 -Estill,SC,29918 -St Helena Island,SC,29920 -Garnett,SC,29922 -Hampton,SC,29924 -Hilton Head Isla,SC,29926 -Hardeeville,SC,29927 -Hilton Head Isla,SC,29928 -Islandton,SC,29929 -Luray,SC,29932 -Pineland,SC,29934 -Port Royal,SC,29935 -Coosawatchie,SC,29936 -Seabrook,SC,29940 -Tillman,SC,29943 -Varnville,SC,29944 -Yemassee,SC,29945 -Alcester,SD,57001 -Aurora,SD,57002 -Baltic,SD,57003 -Beresford,SD,57004 -Corson,SD,57005 -Brookings,SD,57006 -Burbank,SD,57010 -Canistota,SD,57012 -Canton,SD,57013 -Centerville,SD,57014 -Chancellor,SD,57015 -Chester,SD,57016 -Colman,SD,57017 -Colton,SD,57018 -Crooks,SD,57020 -Davis,SD,57021 -Dell Rapids,SD,57022 -Egan,SD,57024 -Elk Point,SD,57025 -Elkton,SD,57026 -Fairview,SD,57027 -Flandreau,SD,57028 -Freeman,SD,57029 -Garretson,SD,57030 -Gayville,SD,57031 -Harrisburg,SD,57032 -Hartford,SD,57033 -Hudson,SD,57034 -Humboldt,SD,57035 -Hurley,SD,57036 -Irene,SD,57037 -Jefferson,SD,57038 -Lennox,SD,57039 -Lesterville,SD,57040 -Madison,SD,57042 -Marion,SD,57043 -Meckling,SD,57044 -Menno,SD,57045 -Mission Hill,SD,57046 -Monroe,SD,57047 -Montrose,SD,57048 -Dakota Dunes,SD,57049 -Nunda,SD,57050 -Oldham,SD,57051 -Olivet,SD,57052 -Parker,SD,57053 -Ramona,SD,57054 -Renner,SD,57055 -Rutland,SD,57057 -Salem,SD,57058 -Scotland,SD,57059 -Sherman,SD,57060 -Sinai,SD,57061 -Springfield,SD,57062 -Tabor,SD,57063 -Tea,SD,57064 -Trent,SD,57065 -Tyndall,SD,57066 -Utica,SD,57067 -Valley Springs,SD,57068 -Vermillion,SD,57069 -Viborg,SD,57070 -Volga,SD,57071 -Volin,SD,57072 -Wakonda,SD,57073 -Ward,SD,57074 -Wentworth,SD,57075 -Winfred,SD,57076 -Worthing,SD,57077 -Yankton,SD,57078 -Sioux Falls,SD,57102 -Sioux Falls,SD,57103 -Sioux Falls,SD,57104 -Sioux Falls,SD,57105 -Sioux Falls,SD,57106 -Sioux Falls,SD,57107 -Buffalo Ridge,SD,57115 -Sioux Falls,SD,57116 -Watertown,SD,57201 -Waverly,SD,57202 -Arlington,SD,57212 -Astoria,SD,57213 -Badger,SD,57214 -Big Stone City,SD,57216 -Bradley,SD,57217 -Brandt,SD,57218 -Butler,SD,57219 -Bruce,SD,57220 -Bryant,SD,57221 -Castlewood,SD,57223 -Claire City,SD,57224 -Clark,SD,57225 -Altamont,SD,57226 -Corona,SD,57227 -57230,SD,57230 -De Smet,SD,57231 -Eden,SD,57232 -Erwin,SD,57233 -Dempster,SD,57234 -Florence,SD,57235 -Garden City,SD,57236 -Gary,SD,57237 -Bemis,SD,57238 -Grenville,SD,57239 -Hayti,SD,57241 -Hazel,SD,57242 -Henry,SD,57243 -Hetland,SD,57244 -Kranzburg,SD,57245 -Labolt,SD,57246 -Lake City,SD,57247 -Lake Norden,SD,57248 -Lake Preston,SD,57249 -Marvin,SD,57251 -Milbank,SD,57252 -New Effington,SD,57255 -Ortley,SD,57256 -Peever,SD,57257 -Raymond,SD,57258 -Albee,SD,57259 -Rosholt,SD,57260 -Roslyn,SD,57261 -Agency Village,SD,57262 -South Shore,SD,57263 -Stockholm,SD,57264 -Strandburg,SD,57265 -Summit,SD,57266 -Toronto,SD,57268 -Twin Brooks,SD,57269 -Veblen,SD,57270 -Vienna,SD,57271 -Wallace,SD,57272 -Waubay,SD,57273 -Lily,SD,57274 -White,SD,57276 -Willow Lake,SD,57278 -Wilmot,SD,57279 -Loomis,SD,57301 -Farmer,SD,57311 -Alpena,SD,57312 -Armour,SD,57313 -Forestburg,SD,57314 -Avon,SD,57315 -Bancroft,SD,57316 -Bonesteel,SD,57317 -Dolton,SD,57319 -Canova,SD,57321 -Carpenter,SD,57322 -Carthage,SD,57323 -Cavour,SD,57324 -Chamberlain,SD,57325 -Corsica,SD,57328 -Dante,SD,57329 -Delmont,SD,57330 -Dimock,SD,57331 -Emery,SD,57332 -Ethan,SD,57334 -Fairfax,SD,57335 -57336,SD,57336 -Fedora,SD,57337 -Fort Thompson,SD,57339 -Fulton,SD,57340 -Gann Valley,SD,57341 -Geddes,SD,57342 -Harrison,SD,57344 -Highmore,SD,57345 -Hitchcock,SD,57348 -Roswell,SD,57349 -Huron,SD,57350 -Iroquois,SD,57353 -Kaylor,SD,57354 -Kimball,SD,57355 -Lake Andes,SD,57356 -Ravinia,SD,57357 -Lane,SD,57358 -Letcher,SD,57359 -Marty,SD,57361 -Miller,SD,57362 -Mount Vernon,SD,57363 -New Holland,SD,57364 -Parkston,SD,57366 -Plankinton,SD,57368 -Academy,SD,57369 -Pukwana,SD,57370 -Ree Heights,SD,57371 -Saint Lawrence,SD,57373 -Spencer,SD,57374 -Stickney,SD,57375 -Tripp,SD,57376 -Virgil,SD,57379 -Wagner,SD,57380 -Wessington,SD,57381 -Wessington Sprin,SD,57382 -White Lake,SD,57383 -Wolsey,SD,57384 -Woonsocket,SD,57385 -Yale,SD,57386 -Aberdeen,SD,57401 -Akaska,SD,57420 -Amherst,SD,57421 -Andover,SD,57422 -Athol,SD,57424 -57425,SD,57425 -Barnard,SD,57426 -Bath,SD,57427 -Bowdle,SD,57428 -Brentford,SD,57429 -Britton,SD,57430 -Claremont,SD,57432 -Columbia,SD,57433 -Verdon,SD,57434 -Cresbard,SD,57435 -Doland,SD,57436 -Artas,SD,57437 -Miranda,SD,57438 -Frankfort,SD,57440 -Frederick,SD,57441 -Gettysburg,SD,57442 -Groton,SD,57445 -Hecla,SD,57446 -Hosmer,SD,57448 -Houghton,SD,57449 -Hoven,SD,57450 -Ipswich,SD,57451 -Java,SD,57452 -Langford,SD,57454 -Lebanon,SD,57455 -Leola,SD,57456 -Longlake,SD,57457 -Mansfield,SD,57460 -Mellette,SD,57461 -Mina,SD,57462 -Northville,SD,57465 -Onaka,SD,57466 -Orient,SD,57467 -Pierpont,SD,57468 -Redfield,SD,57469 -Rockham,SD,57470 -Roscoe,SD,57471 -Selby,SD,57472 -Seneca,SD,57473 -Stratford,SD,57474 -Tolstoy,SD,57475 -Tulare,SD,57476 -Turton,SD,57477 -Warner,SD,57479 -Wetonka,SD,57481 -Zell,SD,57483 -Pierre,SD,57501 -Agar,SD,57520 -Belvidere,SD,57521 -Blunt,SD,57522 -Lucas,SD,57523 -Carter,SD,57526 -Cedarbutte,SD,57527 -Colome,SD,57528 -Dallas,SD,57529 -Draper,SD,57531 -Fort Pierre,SD,57532 -Dixon,SD,57533 -Hamill,SD,57534 -Harrold,SD,57536 -Hayes,SD,57537 -Herrick,SD,57538 -Holabird,SD,57540 -Ideal,SD,57541 -Iona,SD,57542 -Kadoka,SD,57543 -Kennebec,SD,57544 -Keyapaha,SD,57545 -Long Valley,SD,57547 -Lower Brule,SD,57548 -Vetal,SD,57551 -Ottumwa,SD,57552 -Milesville,SD,57553 -Mission,SD,57555 -Mission Ridge,SD,57557 -Murdo,SD,57559 -Norris,SD,57560 -Okaton,SD,57562 -Onida,SD,57564 -Parmelee,SD,57566 -Philip,SD,57567 -Presho,SD,57568 -Reliance,SD,57569 -Saint Charles,SD,57571 -Saint Francis,SD,57572 -Tuthill,SD,57574 -Vivian,SD,57576 -Wanblee,SD,57577 -Wewela,SD,57578 -White River,SD,57579 -Clearfield,SD,57580 -Witten,SD,57584 -Wood,SD,57585 -Mobridge,SD,57601 -Bison,SD,57620 -Cherry Creek,SD,57622 -Dupree,SD,57623 -Faith,SD,57626 -Firesteel,SD,57628 -Glad Valley,SD,57629 -Glencross,SD,57630 -Glenham,SD,57631 -Herreid,SD,57632 -Isabel,SD,57633 -Keldron,SD,57634 -Lemmon,SD,57638 -Lodgepole,SD,57640 -Mc Intosh,SD,57641 -Mc Laughlin,SD,57642 -Mahto,SD,57643 -Meadow,SD,57644 -Morristown,SD,57645 -Mound City,SD,57646 -Parade,SD,57647 -Pollock,SD,57648 -Prairie City,SD,57649 -Ralph,SD,57650 -Reva,SD,57651 -Shadehill,SD,57653 -Timber Lake,SD,57656 -Trail City,SD,57657 -Wakpala,SD,57658 -Watauga,SD,57660 -Rockerville,SD,57701 -Silver City,SD,57702 -Ellsworth Afb,SD,57706 -Bethlehem,SD,57708 -Allen,SD,57714 -Denby,SD,57716 -Belle Fourche,SD,57717 -Black Hawk,SD,57718 -Box Elder,SD,57719 -Buffalo,SD,57720 -Buffalo Gap,SD,57722 -Sky Ranch,SD,57724 -Caputa,SD,57725 -Creighton,SD,57729 -Crazy Horse,SD,57730 -Deadwood,SD,57732 -Edgemont,SD,57735 -Elm Springs,SD,57736 -Enning,SD,57737 -Fairburn,SD,57738 -Fort Meade,SD,57741 -Fruitdale,SD,57742 -Hermosa,SD,57744 -Hill City,SD,57745 -Hot Springs,SD,57747 -Plainview,SD,57748 -Interior,SD,57750 -Keystone,SD,57751 -Kyle,SD,57752 -Spearfish Canyon,SD,57754 -Ludlow,SD,57755 -Manderson,SD,57756 -Marcus,SD,57757 -Mud Butte,SD,57758 -Nemo,SD,57759 -Newell,SD,57760 -New Underwood,SD,57761 -Nisland,SD,57762 -Oelrichs,SD,57763 -Opal,SD,57765 -Oral,SD,57766 -Owanka,SD,57767 -Piedmont,SD,57769 -Pine Ridge,SD,57770 -Porcupine,SD,57772 -Provo,SD,57774 -Cottonwood,SD,57775 -Redowl,SD,57777 -Rochford,SD,57778 -Saint Onge,SD,57779 -Scenic,SD,57780 -Smithwick,SD,57782 -Spearfish,SD,57783 -Hereford,SD,57785 -Stoneville,SD,57787 -Vale,SD,57788 -Wall,SD,57790 -Wasta,SD,57791 -White Owl,SD,57792 -Whitewood,SD,57793 -Wounded Knee,SD,57794 -Zeona,SD,57795 -Adams,TN,37010 -Alexandria,TN,37012 -Antioch,TN,37013 -Arrington,TN,37014 -Ashland City,TN,37015 -Auburntown,TN,37016 -Beechgrove,TN,37018 -Belfast,TN,37019 -Bell Buckle,TN,37020 -Bethpage,TN,37022 -Big Rock,TN,37023 -Bon Aqua,TN,37025 -Bradyville,TN,37026 -Brentwood,TN,37027 -Bumpus Mills,TN,37028 -Burns,TN,37029 -Defeated,TN,37030 -Castalian Spring,TN,37031 -Cedar Hill,TN,37032 -Centerville,TN,37033 -Chapel Hill,TN,37034 -Chapmansboro,TN,37035 -Charlotte,TN,37036 -Christiana,TN,37037 -Clarksville,TN,37040 -Clarksville,TN,37042 -Clarksville,TN,37043 -College Grove,TN,37046 -Cornersville,TN,37047 -Cottontown,TN,37048 -Cross Plains,TN,37049 -Cumberland City,TN,37050 -Cumberland Furna,TN,37051 -Cunningham,TN,37052 -Dickson,TN,37055 -Dixon Springs,TN,37057 -Dover,TN,37058 -Dowelltown,TN,37059 -Eagleville,TN,37060 -Erin,TN,37061 -Fairview,TN,37062 -Franklin,TN,37064 -Gallatin,TN,37066 -Goodlettsville,TN,37072 -Greenbrier,TN,37073 -Hartsville,TN,37074 -Hendersonville,TN,37075 -Hermitage,TN,37076 -Hurricane Mills,TN,37078 -Indian Mound,TN,37079 -Joelton,TN,37080 -Kingston Springs,TN,37082 -Lafayette,TN,37083 -Lascassas,TN,37085 -La Vergne,TN,37086 -Lebanon,TN,37087 -Lewisburg,TN,37091 -Gassaway,TN,37095 -Flatwoods,TN,37096 -Lobelville,TN,37097 -Wrigley,TN,37098 -Mc Ewen,TN,37101 -Plaza,TN,37110 -Madison,TN,37115 -Milton,TN,37118 -Mount Juliet,TN,37122 -Murfreesboro,TN,37129 -Murfreesboro,TN,37130 -New Johnsonville,TN,37134 -Nolensville,TN,37135 -Nunnelly,TN,37137 -Old Hickory,TN,37138 -Only,TN,37140 -Orlinda,TN,37141 -Palmyra,TN,37142 -Pegram,TN,37143 -Petersburg,TN,37144 -Pleasant Shade,TN,37145 -Pleasant View,TN,37146 -Pleasantville,TN,37147 -Portland,TN,37148 -Readyville,TN,37149 -Red Boiling Spri,TN,37150 -Riddleton,TN,37151 -Rockvale,TN,37153 -Royal,TN,37160 -Smithville,TN,37166 -Smyrna,TN,37167 -Southside,TN,37171 -Springfield,TN,37172 -Spring Hill,TN,37174 -Stewart,TN,37175 -Tennessee Ridge,TN,37178 -Thompsons Statio,TN,37179 -Unionville,TN,37180 -Vanleer,TN,37181 -Wartrace,TN,37183 -Watertown,TN,37184 -Waverly,TN,37185 -Westmoreland,TN,37186 -White Bluff,TN,37187 -White House,TN,37188 -Whites Creek,TN,37189 -Woodbury,TN,37190 -Woodlawn,TN,37191 -Nashville,TN,37201 -Nashville,TN,37203 -Melrose,TN,37204 -Nashville,TN,37205 -Nashville,TN,37206 -Nashville,TN,37207 -Nashville,TN,37208 -Nashville,TN,37209 -Nashville,TN,37210 -Nashville,TN,37211 -Nashville,TN,37212 -Nashville,TN,37213 -Nashville,TN,37214 -Nashville,TN,37215 -Nashville,TN,37216 -Nashville,TN,37217 -Nashville,TN,37218 -Nashville,TN,37219 -Nashville,TN,37220 -Bellevue,TN,37221 -Nashville,TN,37228 -Altamont,TN,37301 -Apison,TN,37302 -Athens,TN,37303 -Beersheba Spring,TN,37305 -Belvidere,TN,37306 -Benton,TN,37307 -Birchwood,TN,37308 -Calhoun,TN,37309 -Charleston,TN,37310 -Cleveland,TN,37311 -Cleveland,TN,37312 -Coalmont,TN,37313 -Postelle,TN,37317 -Cowan,TN,37318 -Dayton,TN,37321 -Decatur,TN,37322 -Decherd,TN,37324 -Delano,TN,37325 -Dunlap,TN,37327 -Elora,TN,37328 -Englewood,TN,37329 -Estill Springs,TN,37330 -Etowah,TN,37331 -Evensville,TN,37332 -Farner,TN,37333 -Fayetteville,TN,37334 -Flintville,TN,37335 -Georgetown,TN,37336 -Grandview,TN,37337 -Graysville,TN,37338 -Gruetli Laager,TN,37339 -Guild,TN,37340 -Harrison,TN,37341 -Hillsboro,TN,37342 -Hixson,TN,37343 -Huntland,TN,37345 -Kimball,TN,37347 -Kelso,TN,37348 -Lookout Mountain,TN,37350 -Lynchburg,TN,37352 -Mc Donald,TN,37353 -Hiwassee College,TN,37354 -Manchester,TN,37355 -Monteagle,TN,37356 -Morrison,TN,37357 -Mulberry,TN,37359 -Normandy,TN,37360 -Ocoee,TN,37361 -Oldfort,TN,37362 -Ooltewah,TN,37363 -Palmer,TN,37365 -Pelham,TN,37366 -Pikeville,TN,37367 -Reliance,TN,37369 -Riceville,TN,37370 -Sale Creek,TN,37373 -Sequatchie,TN,37374 -Sewanee,TN,37375 -Sherwood,TN,37376 -Signal Mountain,TN,37377 -Soddy Daisy,TN,37379 -South Pittsburg,TN,37380 -Spring City,TN,37381 -Tellico Plains,TN,37385 -Tracy City,TN,37387 -Dickel,TN,37388 -Turtletown,TN,37391 -Whiteside,TN,37396 -Whitwell,TN,37397 -Winchester,TN,37398 -Chattanooga,TN,37402 -Chattanooga,TN,37403 -Chattanooga,TN,37404 -Chattanooga,TN,37405 -Chattanooga,TN,37406 -Chattanooga,TN,37407 -Chattanooga,TN,37408 -Chattanooga,TN,37409 -Chattanooga,TN,37410 -Chattanooga,TN,37411 -East Ridge,TN,37412 -Red Bank,TN,37415 -Chattanooga,TN,37416 -Chattanooga,TN,37419 -Chattanooga,TN,37421 -Johnson City,TN,37601 -Johnson City,TN,37604 -Gray,TN,37615 -Afton,TN,37616 -Blountville,TN,37617 -Bluff City,TN,37618 -Bristol,TN,37620 -Butler,TN,37640 -Chuckey,TN,37641 -Church Hill,TN,37642 -Elizabethton,TN,37643 -Mount Carmel,TN,37645 -Erwin,TN,37650 -Fall Branch,TN,37656 -Flag Pond,TN,37657 -Hampton,TN,37658 -Jonesborough,TN,37659 -Bloomingdale,TN,37660 -Colonial Heights,TN,37663 -Kingsport,TN,37664 -Lynn Garden,TN,37665 -Laurel Bloomery,TN,37680 -Washington Colle,TN,37681 -Mountain City,TN,37683 -Piney Flats,TN,37686 -Roan Mountain,TN,37687 -Shady Valley,TN,37688 -Telford,TN,37690 -Trade,TN,37691 -Unicoi,TN,37692 -Watauga,TN,37694 -Alcoa,TN,37701 -Andersonville,TN,37705 -Bean Station,TN,37708 -Blaine,TN,37709 -Devonia,TN,37710 -Bulls Gap,TN,37711 -Bybee,TN,37713 -Caryville,TN,37714 -Clairfield,TN,37715 -Clinton,TN,37716 -Corryton,TN,37721 -Cosby,TN,37722 -Crab Orchard,TN,37723 -Cumberland Gap,TN,37724 -Dandridge,TN,37725 -Deer Lodge,TN,37726 -Del Rio,TN,37727 -Duff,TN,37729 -Eidson,TN,37731 -Friendsville,TN,37737 -Gatlinburg,TN,37738 -Greenback,TN,37742 -Baileyton,TN,37743 -Harriman,TN,37748 -Harrogate,TN,37752 -Hartford,TN,37753 -Heiskell,TN,37754 -Helenwood,TN,37755 -Huntsville,TN,37756 -Jacksboro,TN,37757 -Jefferson City,TN,37760 -Jellico,TN,37762 -Kingston,TN,37763 -Kodak,TN,37764 -Kyles Ford,TN,37765 -Morley,TN,37766 -Lake City,TN,37769 -Lancing,TN,37770 -Lenoir City,TN,37771 -Loudon,TN,37774 -Louisville,TN,37777 -Lowland,TN,37778 -Luttrell,TN,37779 -Maryville,TN,37801 -Maryville,TN,37804 -Mascot,TN,37806 -Maynardville,TN,37807 -Midway,TN,37809 -Mohawk,TN,37810 -Mooresburg,TN,37811 -Morristown,TN,37813 -Morristown,TN,37814 -Mosheim,TN,37818 -Newcomb,TN,37819 -New Market,TN,37820 -Newport,TN,37821 -New Tazewell,TN,37825 -Niota,TN,37826 -Oakdale,TN,37829 -Oak Ridge,TN,37830 -Oliver Springs,TN,37840 -Oneida,TN,37841 -Parrottsville,TN,37843 -Petros,TN,37845 -Philadelphia,TN,37846 -Pioneer,TN,37847 -Powder Springs,TN,37848 -Powell,TN,37849 -Robbins,TN,37852 -Rockford,TN,37853 -Rockwood,TN,37854 -Rogersville,TN,37857 -Russellville,TN,37860 -Rutledge,TN,37861 -Sevierville,TN,37862 -Pigeon Forge,TN,37863 -Seymour,TN,37865 -Sharps Chapel,TN,37866 -Sneedville,TN,37869 -Speedwell,TN,37870 -Strawberry Plain,TN,37871 -Sunbright,TN,37872 -Surgoinsville,TN,37873 -Sweetwater,TN,37874 -Talbott,TN,37877 -Tallassee,TN,37878 -Tazewell,TN,37879 -Ten Mile,TN,37880 -Thorn Hill,TN,37881 -Townsend,TN,37882 -Treadway,TN,37883 -Vonore,TN,37885 -Walland,TN,37886 -Wartburg,TN,37887 -Washburn,TN,37888 -Baneberry,TN,37890 -Whitesburg,TN,37891 -Winfield,TN,37892 -Knoxville,TN,37902 -Knoxville,TN,37909 -Knoxville,TN,37912 -Knoxville,TN,37914 -Knoxville,TN,37915 -Knoxville,TN,37916 -Knoxville,TN,37917 -Knoxville,TN,37918 -Knoxville,TN,37919 -Kimberlin Height,TN,37920 -Karns,TN,37921 -Concord,TN,37922 -Knoxville,TN,37923 -Knoxville,TN,37924 -Knoxville,TN,37931 -Concord Farragut,TN,37932 -Knoxville,TN,37938 -Alamo,TN,38001 -Arlington,TN,38002 -Atoka,TN,38004 -Bells,TN,38006 -Bolivar,TN,38008 -Brighton,TN,38011 -Brownsville,TN,38012 -Burlison,TN,38015 -Collierville,TN,38017 -Cordova,TN,38018 -Covington,TN,38019 -Drummonds,TN,38023 -Dyersburg,TN,38024 -Eads,TN,38028 -Finley,TN,38030 -Friendship,TN,38034 -Gates,TN,38037 -Grand Junction,TN,38039 -Halls,TN,38040 -Fort Pillow,TN,38041 -Hickory Valley,TN,38042 -Hornsby,TN,38044 -Mason,TN,38049 -Middleton,TN,38052 -Millington,TN,38053 -Moscow,TN,38057 -Newbern,TN,38059 -Oakland,TN,38060 -Pocahontas,TN,38061 -Ripley,TN,38063 -Rossville,TN,38066 -Saulsbury,TN,38067 -Somerville,TN,38068 -Stanton,TN,38069 -Whiteville,TN,38075 -Williston,TN,38076 -Tiptonville,TN,38079 -Ridgely,TN,38080 -Memphis,TN,38103 -Memphis,TN,38104 -Memphis,TN,38105 -Memphis,TN,38106 -Memphis,TN,38107 -Memphis,TN,38108 -Memphis,TN,38109 -Memphis,TN,38111 -Memphis,TN,38112 -Memphis,TN,38113 -Memphis,TN,38114 -Hickory Hill,TN,38115 -Memphis,TN,38116 -Memphis,TN,38117 -Memphis,TN,38118 -Memphis,TN,38119 -Memphis,TN,38120 -Memphis,TN,38122 -Memphis,TN,38125 -Memphis,TN,38126 -Memphis,TN,38127 -Memphis,TN,38128 -Memphis,TN,38131 -Memphis,TN,38132 -Memphis,TN,38133 -Bartlett,TN,38134 -Memphis,TN,38135 -Germantown,TN,38138 -Germantown,TN,38139 -Memphis,TN,38141 -Mc Kenzie,TN,38201 -Atwood,TN,38220 -Big Sandy,TN,38221 -Buchanan,TN,38222 -Cottage Grove,TN,38224 -Dresden,TN,38225 -Dukedom,TN,38226 -Gleason,TN,38229 -Greenfield,TN,38230 -Henry,TN,38231 -Hornbeak,TN,38232 -Kenton,TN,38233 -Mansfield,TN,38236 -Martin,TN,38237 -Obion,TN,38240 -Palmersville,TN,38241 -Paris,TN,38242 -Puryear,TN,38251 -Rives,TN,38253 -Sharon,TN,38255 -Springville,TN,38256 -South Fulton,TN,38257 -Trezevant,TN,38258 -Trimble,TN,38259 -Troy,TN,38260 -Union City,TN,38261 -Jackson,TN,38301 -Jackson,TN,38305 -Adamsville,TN,38310 -Bath Springs,TN,38311 -Beech Bluff,TN,38313 -Bethel Springs,TN,38315 -Bradford,TN,38316 -Bruceton,TN,38317 -Buena Vista,TN,38318 -Camden,TN,38320 -Cedar Grove,TN,38321 -Counce,TN,38326 -Crump,TN,38327 -Darden,TN,38328 -Decaturville,TN,38329 -Dyer,TN,38330 -Enville,TN,38332 -Eva,TN,38333 -Finger,TN,38334 -Gadsden,TN,38337 -Guys,TN,38339 -Henderson,TN,38340 -Holladay,TN,38341 -Hollow Rock,TN,38342 -Humboldt,TN,38343 -Huntingdon,TN,38344 -Huron,TN,38345 -Jacks Creek,TN,38347 -Lavinia,TN,38348 -Lexington,TN,38351 -Luray,TN,38352 -Medina,TN,38355 -Medon,TN,38356 -Michie,TN,38357 -Milan,TN,38358 -Milledgeville,TN,38359 -Morris Chapel,TN,38361 -Oakfield,TN,38362 -Parsons,TN,38363 -Pinson,TN,38366 -Ramer,TN,38367 -Reagan,TN,38368 -Rutherford,TN,38369 -Saltillo,TN,38370 -Sardis,TN,38371 -Savannah,TN,38372 -Scotts Hill,TN,38374 -Selmer,TN,38375 -Shiloh,TN,38376 -Stantonville,TN,38379 -Sugar Tree,TN,38380 -Toone,TN,38381 -Trenton,TN,38382 -Westport,TN,38387 -Wildersville,TN,38388 -Yuma,TN,38390 -Denmark,TN,38391 -Mercer,TN,38392 -Columbia,TN,38401 -Clifton,TN,38425 -Ardmore,TN,38449 -Collinwood,TN,38450 -Culleoka,TN,38451 -Cypress Inn,TN,38452 -Ardmore,TN,38453 -Duck River,TN,38454 -Ethridge,TN,38456 -Five Points,TN,38457 -Frankewing,TN,38459 -Goodspring,TN,38460 -Hampshire,TN,38461 -Kimmins,TN,38462 -Iron City,TN,38463 -Lawrenceburg,TN,38464 -Leoma,TN,38468 -Loretto,TN,38469 -Lutts,TN,38471 -Lynnville,TN,38472 -Minor Hill,TN,38473 -Mount Pleasant,TN,38474 -Olivehill,TN,38475 -Primm Springs,TN,38476 -Prospect,TN,38477 -Pulaski,TN,38478 -Saint Joseph,TN,38481 -Santa Fe,TN,38482 -Summertown,TN,38483 -Waynesboro,TN,38485 -Westpoint,TN,38486 -Williamsport,TN,38487 -Taft,TN,38488 -Algood,TN,38501 -Allardt,TN,38504 -Allons,TN,38541 -Allred,TN,38542 -Alpine,TN,38543 -Baxter,TN,38544 -Bloomington Spri,TN,38545 -Brush Creek,TN,38547 -Buffalo Valley,TN,38548 -Byrdstown,TN,38549 -Celina,TN,38551 -Chestnut Mound,TN,38552 -Clarkrange,TN,38553 -Crawford,TN,38554 -Fairfield Glade,TN,38555 -Jamestown,TN,38556 -Doyle,TN,38559 -Elmwood,TN,38560 -Gainesboro,TN,38562 -Gordonsville,TN,38563 -Granville,TN,38564 -Grimsley,TN,38565 -Hickman,TN,38567 -Hilham,TN,38568 -Lancaster,TN,38569 -Livingston,TN,38570 -Monroe,TN,38573 -Monterey,TN,38574 -Moss,TN,38575 -Pall Mall,TN,38577 -Pleasant Hill,TN,38578 -Quebeck,TN,38579 -Rickman,TN,38580 -Bone Cave,TN,38581 -Silver Point,TN,38582 -Ravenscroft,TN,38583 -Spencer,TN,38585 -Walling,TN,38587 -Whitleyville,TN,38588 -Wilder,TN,38589 -Fort Campbell,TN,42223 -Allen,TX,75002 -Carrollton,TX,75006 -Carrollton,TX,75007 -Carrollton,TX,75008 -Celina,TX,75009 -Carrollton,TX,75010 -Coppell,TX,75019 -Denison,TX,75020 -Plano,TX,75023 -Plano,TX,75024 -Plano,TX,75025 -Flower Mound,TX,75028 -Frisco,TX,75034 -Irving,TX,75038 -Irving,TX,75039 -Garland,TX,75040 -Garland,TX,75041 -Garland,TX,75042 -Garland,TX,75043 -Garland,TX,75044 -Sachse,TX,75048 -Grand Prairie,TX,75050 -Grand Prairie,TX,75051 -Grand Prairie,TX,75052 -The Colony,TX,75056 -Lewisville,TX,75057 -Gunter,TX,75058 -Irving,TX,75060 -Irving,TX,75061 -Irving,TX,75062 -Irving,TX,75063 -Lake Dallas,TX,75065 -Highland Village,TX,75067 -Lakewood Village,TX,75068 -Mc Kinney,TX,75069 -Mc Kinney,TX,75070 -Plano,TX,75074 -Plano,TX,75075 -Pottsboro,TX,75076 -Prosper,TX,75078 -Richardson,TX,75080 -Richardson,TX,75081 -Richardson,TX,75082 -Heath,TX,75087 -Rowlett,TX,75088 -Sherman,TX,75090 -Plano,TX,75093 -Murphy,TX,75094 -Wylie,TX,75098 -Barry,TX,75102 -Canton,TX,75103 -Cedar Hill,TX,75104 -Chatfield,TX,75105 -Corsicana,TX,75110 -Crandall,TX,75114 -De Soto,TX,75115 -Duncanville,TX,75116 -Edgewood,TX,75117 -Ennis,TX,75119 -Eustace,TX,75124 -Ferris,TX,75125 -Forney,TX,75126 -Fruitvale,TX,75127 -Lancaster,TX,75134 -Caddo Mills,TX,75135 -Duncanville,TX,75137 -Grand Saline,TX,75140 -Hutchins,TX,75141 -Kaufman,TX,75142 -Seven Points,TX,75143 -Kerens,TX,75144 -Lancaster,TX,75146 -Gun Barrel City,TX,75147 -Malakoff,TX,75148 -Mesquite,TX,75149 -Mesquite,TX,75150 -Palmer,TX,75152 -Powell,TX,75153 -Ovilla,TX,75154 -Rice,TX,75155 -Scurry,TX,75158 -Seagoville,TX,75159 -Terrell,TX,75160 -Trinidad,TX,75163 -Waxahachie,TX,75165 -Wills Point,TX,75169 -Wilmer,TX,75172 -Nevada,TX,75173 -Balch Springs,TX,75180 -Mesquite,TX,75181 -Mesquite,TX,75182 -Royse City,TX,75189 -Dallas,TX,75201 -Dallas,TX,75202 -Dallas,TX,75203 -Dallas,TX,75204 -Village,TX,75205 -Dallas,TX,75206 -Dallas,TX,75207 -Dallas,TX,75208 -Dallas,TX,75209 -Dallas,TX,75210 -Cockrell Hill,TX,75211 -Dallas,TX,75212 -Dallas,TX,75214 -Dallas,TX,75215 -Dallas,TX,75216 -Dallas,TX,75217 -Dallas,TX,75218 -Dallas,TX,75219 -Dallas,TX,75220 -Dallas,TX,75223 -Dallas,TX,75224 -Dallas,TX,75225 -Dallas,TX,75226 -Dallas,TX,75227 -Dallas,TX,75228 -Dallas,TX,75229 -Dallas,TX,75230 -Dallas,TX,75231 -Dallas,TX,75232 -Dallas,TX,75233 -Farmers Branch,TX,75234 -Dallas,TX,75235 -Dallas,TX,75236 -Dallas,TX,75237 -Dallas,TX,75238 -Dallas,TX,75239 -Dallas,TX,75240 -Dallas,TX,75241 -Dallas,TX,75243 -Farmers Branch,TX,75244 -Dallas,TX,75246 -Dallas,TX,75247 -Dallas,TX,75248 -Dallas,TX,75249 -Dallas,TX,75251 -Dallas,TX,75252 -Dallas,TX,75253 -Dallas,TX,75287 -Greenville,TX,75401 -Princeton,TX,75407 -Anna,TX,75409 -Alba,TX,75410 -Arthur City,TX,75411 -Bagwell,TX,75412 -Bells,TX,75414 -Ben Franklin,TX,75415 -Blossom,TX,75416 -Bogata,TX,75417 -Bonham,TX,75418 -Brashear,TX,75420 -Brookston,TX,75421 -Campbell,TX,75422 -Celeste,TX,75423 -Blue Ridge,TX,75424 -Clarksville,TX,75426 -Commerce,TX,75428 -Como,TX,75431 -Cooper,TX,75432 -Cumby,TX,75433 -Deport,TX,75435 -Detroit,TX,75436 -Dike,TX,75437 -Dodd City,TX,75438 -Ector,TX,75439 -Emory,TX,75440 -Farmersville,TX,75442 -Honey Grove,TX,75446 -Ivanhoe,TX,75447 -Klondike,TX,75448 -Ladonia,TX,75449 -Lake Creek,TX,75450 -Leesburg,TX,75451 -Leonard,TX,75452 -Lone Oak,TX,75453 -Melissa,TX,75454 -Mount Pleasant,TX,75455 -Mount Vernon,TX,75457 -Howe,TX,75459 -Paris,TX,75460 -Pattonville,TX,75468 -Pecan Gap,TX,75469 -Petty,TX,75470 -Pickton,TX,75471 -Point,TX,75472 -Powderly,TX,75473 -Quinlan,TX,75474 -Ravenna,TX,75476 -Roxton,TX,75477 -Saltillo,TX,75478 -Savoy,TX,75479 -Scroggins,TX,75480 -Sulphur Bluff,TX,75481 -Sulphur Springs,TX,75482 -Sumner,TX,75486 -Talco,TX,75487 -Telephone,TX,75488 -Trenton,TX,75490 -Whitewright,TX,75491 -Windom,TX,75492 -Winfield,TX,75493 -Winnsboro,TX,75494 -Van Alstyne,TX,75495 -Wolfe City,TX,75496 -Yantis,TX,75497 -Wake Village,TX,75501 -Texarkana,TX,75503 -Annona,TX,75550 -Atlanta,TX,75551 -Avery,TX,75554 -Bivins,TX,75555 -Bloomburg,TX,75556 -Cookville,TX,75558 -De Kalb,TX,75559 -Douglassville,TX,75560 -Leary,TX,75561 -Linden,TX,75563 -Marietta,TX,75566 -Maud,TX,75567 -Naples,TX,75568 -Nash,TX,75569 -Boston,TX,75570 -Omaha,TX,75571 -Queen City,TX,75572 -Simms,TX,75574 -Longview,TX,75601 -Longview,TX,75602 -Longview,TX,75603 -Longview,TX,75604 -Longview,TX,75605 -Avinger,TX,75630 -Beckville,TX,75631 -Carthage,TX,75633 -Daingerfield,TX,75638 -De Berry,TX,75639 -New Diana,TX,75640 -Gary,TX,75643 -Gilmer,TX,75644 -Gladewater,TX,75647 -Hallsville,TX,75650 -Harleton,TX,75651 -Henderson,TX,75652 -Hughes Springs,TX,75656 -Smithland,TX,75657 -Karnack,TX,75661 -Kilgore,TX,75662 -Laneville,TX,75667 -Lone Star,TX,75668 -Long Branch,TX,75669 -Marshall,TX,75670 -Mount Enterprise,TX,75681 -Ore City,TX,75683 -Overton,TX,75684 -Pittsburg,TX,75686 -Price,TX,75687 -Turnertown,TX,75689 -Tatum,TX,75691 -Waskom,TX,75692 -Clarksville City,TX,75693 -Tyler,TX,75701 -Tyler,TX,75702 -Tyler,TX,75703 -Tyler,TX,75704 -Tyler,TX,75705 -Tyler,TX,75706 -Tyler,TX,75707 -East Texas Cente,TX,75708 -Tyler,TX,75709 -Arp,TX,75750 -Athens,TX,75751 -Ben Wheeler,TX,75754 -Big Sandy,TX,75755 -Edom,TX,75756 -Mount Selman,TX,75757 -Chandler,TX,75758 -Cushing,TX,75760 -Flint,TX,75762 -Frankston,TX,75763 -Hawkins,TX,75765 -Jacksonville,TX,75766 -Larue,TX,75770 -Mt Sylvan,TX,75771 -Mineola,TX,75773 -Murchison,TX,75778 -Quitman,TX,75783 -Reklaw,TX,75784 -Dialville,TX,75785 -Troup,TX,75789 -Van,TX,75790 -Whitehouse,TX,75791 -Winona,TX,75792 -Palestine,TX,75801 -Freestone,TX,75831 -Centerville,TX,75833 -Austonio,TX,75835 -Donie,TX,75838 -Slocum,TX,75839 -Fairfield,TX,75840 -Grapeland,TX,75844 -Groveton,TX,75845 -Jewett,TX,75846 -Kennard,TX,75847 -Leona,TX,75850 -Lovelady,TX,75851 -Midway,TX,75852 -Montalba,TX,75853 -Oakwood,TX,75855 -Pennington,TX,75856 -Streetman,TX,75859 -Teague,TX,75860 -Tennessee Colony,TX,75861 -Trinity,TX,75862 -Keltys,TX,75901 -Forest,TX,75925 -Apple Springs,TX,75926 -Bon Wier,TX,75928 -Broaddus,TX,75929 -Bronson,TX,75930 -Brookeland,TX,75931 -Burkeville,TX,75932 -Call,TX,75933 -Center,TX,75935 -Chester,TX,75936 -Chireno,TX,75937 -Rockland,TX,75938 -Barnum,TX,75939 -Diboll,TX,75941 -Douglass,TX,75943 -Garrison,TX,75946 -Hemphill,TX,75948 -Huntington,TX,75949 -Sam Rayburn,TX,75951 -Joaquin,TX,75954 -Bon Ami,TX,75956 -Magnolia Springs,TX,75957 -Milam,TX,75959 -Moscow,TX,75960 -Appleby,TX,75961 -Newton,TX,75966 -Pineland,TX,75968 -Pollok,TX,75969 -San Augustine,TX,75972 -Shelbyville,TX,75973 -Tenaha,TX,75974 -Timpson,TX,75975 -Wells,TX,75976 -Wiergate,TX,75977 -Dogwood,TX,75979 -Zavalla,TX,75980 -Arlington,TX,76006 -Aledo,TX,76008 -Alvarado,TX,76009 -Arlington,TX,76010 -Arlington,TX,76011 -Arlington,TX,76012 -Arlington,TX,76013 -Arlington,TX,76014 -Arlington,TX,76015 -Arlington,TX,76016 -Arlington,TX,76017 -Arlington,TX,76018 -Azle,TX,76020 -Bedford,TX,76021 -Bedford,TX,76022 -Boyd,TX,76023 -Burleson,TX,76028 -Cleburne,TX,76031 -Colleyville,TX,76034 -Cresson,TX,76035 -Crowley,TX,76036 -Euless,TX,76039 -Euless,TX,76040 -Forreston,TX,76041 -Glen Rose,TX,76043 -Godley,TX,76044 -Granbury,TX,76048 -Granbury,TX,76049 -Grandview,TX,76050 -Grapevine,TX,76051 -Haslet,TX,76052 -Hurst,TX,76053 -Hurst,TX,76054 -Itasca,TX,76055 -Joshua,TX,76058 -Keene,TX,76059 -Kennedale,TX,76060 -Mansfield,TX,76063 -Maypearl,TX,76064 -Midlothian,TX,76065 -Millsap,TX,76066 -Mineral Wells,TX,76067 -Nemo,TX,76070 -Newark,TX,76071 -Paradise,TX,76073 -Rainbow,TX,76077 -Rhome,TX,76078 -Springtown,TX,76082 -Venus,TX,76084 -Weatherford,TX,76086 -Weatherford,TX,76087 -Grapevine,TX,76092 -Rio Vista,TX,76093 -Fort Worth,TX,76102 -Fort Worth,TX,76103 -Fort Worth,TX,76104 -Fort Worth,TX,76105 -Fort Worth,TX,76106 -Fort Worth,TX,76107 -White Settlement,TX,76108 -Fort Worth,TX,76109 -Fort Worth,TX,76110 -Fort Worth,TX,76111 -Fort Worth,TX,76112 -River Oaks,TX,76114 -Fort Worth,TX,76115 -Fort Worth,TX,76116 -Haltom City,TX,76117 -North Richland H,TX,76118 -Fort Worth,TX,76119 -Fort Worth,TX,76120 -Fort Worth,TX,76123 -Benbrook,TX,76126 -Carswell Afb,TX,76127 -Fort Worth,TX,76131 -Fort Worth,TX,76132 -Fort Worth,TX,76133 -Fort Worth,TX,76134 -Fort Worth,TX,76135 -Fort Worth,TX,76137 -Everman,TX,76140 -Watauga,TX,76148 -Fort Worth,TX,76155 -Fort Worth,TX,76177 -Saginaw,TX,76179 -North Richland H,TX,76180 -Denton,TX,76201 -Denton,TX,76205 -Alvord,TX,76225 -Argyle,TX,76226 -Aubrey,TX,76227 -Bellevue,TX,76228 -Bowie,TX,76230 -Collinsville,TX,76233 -Decatur,TX,76234 -Era,TX,76238 -Forestburg,TX,76239 -Lake Kiowa,TX,76240 -Gordonville,TX,76245 -Justin,TX,76247 -Keller,TX,76248 -Krum,TX,76249 -Lindsay,TX,76250 -Montague,TX,76251 -Muenster,TX,76252 -Nocona,TX,76255 -Pilot Point,TX,76258 -Ponder,TX,76259 -Ringgold,TX,76261 -Trophy Club,TX,76262 -Rosston,TX,76263 -Sadler,TX,76264 -Saint Jo,TX,76265 -Sanger,TX,76266 -Sunset,TX,76270 -Tioga,TX,76271 -Valley View,TX,76272 -Whitesboro,TX,76273 -Wichita Falls,TX,76301 -Wichita Falls,TX,76302 -Wichita Falls,TX,76303 -Wichita Falls,TX,76304 -Wichita Falls,TX,76305 -Wichita Falls,TX,76306 -Wichita Falls,TX,76308 -Wichita Falls,TX,76309 -Wichita Falls,TX,76310 -Sheppard Afb,TX,76311 -76350,TX,76350 -Burkburnett,TX,76354 -Byers,TX,76357 -Elbert,TX,76359 -Electra,TX,76360 -Goree,TX,76363 -Harrold,TX,76364 -Henrietta,TX,76365 -Holliday,TX,76366 -Iowa Park,TX,76367 -Munday,TX,76371 -Newcastle,TX,76372 -Oklaunion,TX,76373 -Olney,TX,76374 -Petrolia,TX,76377 -76378,TX,76378 -Scotland,TX,76379 -Seymour,TX,76380 -Vera,TX,76383 -Vernon,TX,76384 -Weinert,TX,76388 -Windthorst,TX,76389 -Stephenville,TX,76401 -Breckenridge,TX,76424 -Bridgeport,TX,76426 -Bryson,TX,76427 -Caddo,TX,76429 -Albany,TX,76430 -Chico,TX,76431 -Blanket,TX,76432 -Bluff Dale,TX,76433 -Carbon,TX,76435 -Carlton,TX,76436 -Cisco,TX,76437 -Comanche,TX,76442 -Cross Plains,TX,76443 -De Leon,TX,76444 -Desdemona,TX,76445 -Dublin,TX,76446 -76447,TX,76447 -Eastland,TX,76448 -Graford,TX,76449 -Graham,TX,76450 -Gordon,TX,76453 -Gorman,TX,76454 -Gustine,TX,76455 -Hico,TX,76457 -Jacksboro,TX,76458 -Jermyn,TX,76459 -Loving,TX,76460 -Lipan,TX,76462 -Mingus,TX,76463 -Moran,TX,76464 -Ranger,TX,76470 -Rising Star,TX,76471 -Santo,TX,76472 -Sidney,TX,76474 -Strawn,TX,76475 -Tolar,TX,76476 -Throckmorton,TX,76483 -Palo Pinto,TX,76484 -Perrin,TX,76486 -Poolville,TX,76487 -Whitt,TX,76490 -Woodson,TX,76491 -Temple,TX,76501 -Temple,TX,76502 -Temple,TX,76504 -Bartlett,TX,76511 -Belton,TX,76513 -Buckholts,TX,76518 -Burlington,TX,76519 -Cameron,TX,76520 -Izoro,TX,76522 -Davilla,TX,76523 -Eddy,TX,76524 -Bee House,TX,76525 -Flat,TX,76526 -Florence,TX,76527 -Turnersville,TX,76528 -Granger,TX,76530 -Hamilton,TX,76531 -Holland,TX,76534 -Jarrell,TX,76537 -Jonesboro,TX,76538 -Kempner,TX,76539 -Killeen,TX,76541 -Harker Heights,TX,76542 -Harker Heights,TX,76543 -Fort Hood,TX,76544 -Lampasas,TX,76550 -Milano,TX,76556 -Moody,TX,76557 -Nolanville,TX,76559 -Oglesby,TX,76561 -Pottsville,TX,76565 -Purmela,TX,76566 -Rockdale,TX,76567 -Rogers,TX,76569 -Rosebud,TX,76570 -Salado,TX,76571 -Taylor,TX,76574 -Thorndale,TX,76577 -Thrall,TX,76578 -Troy,TX,76579 -Abbott,TX,76621 -Aquilla,TX,76622 -Axtell,TX,76624 -Blooming Grove,TX,76626 -Blum,TX,76627 -Bremond,TX,76629 -Bruceville,TX,76630 -Bynum,TX,76631 -Chilton,TX,76632 -China Spring,TX,76633 -Laguna Park,TX,76634 -Coolidge,TX,76635 -Covington,TX,76636 -Cranfills Gap,TX,76637 -Crawford,TX,76638 -Dawson,TX,76639 -Elm Mott,TX,76640 -Frost,TX,76641 -Groesbeck,TX,76642 -Hewitt,TX,76643 -Hillsboro,TX,76645 -Hubbard,TX,76648 -Iredell,TX,76649 -Italy,TX,76651 -Kopperl,TX,76652 -Kosse,TX,76653 -Lorena,TX,76655 -Lott,TX,76656 -Mc Gregor,TX,76657 -Malone,TX,76660 -Marlin,TX,76661 -Mart,TX,76664 -Meridian,TX,76665 -Mertens,TX,76666 -Mexia,TX,76667 -Milford,TX,76670 -Morgan,TX,76671 -Mount Calm,TX,76673 -Otto,TX,76675 -Penelope,TX,76676 -Prairie Hill,TX,76678 -Purdon,TX,76679 -Reagan,TX,76680 -Richland,TX,76681 -Riesel,TX,76682 -Thornton,TX,76687 -Valley Mills,TX,76689 -Walnut Springs,TX,76690 -West,TX,76691 -Bonanza,TX,76692 -Wortham,TX,76693 -Waco,TX,76701 -Bellmead,TX,76704 -Bellmead,TX,76705 -Waco,TX,76706 -Waco,TX,76707 -Waco,TX,76708 -Waco,TX,76710 -Beverly Hills,TX,76711 -Woodway,TX,76712 -Early,TX,76801 -Art,TX,76820 -Ballinger,TX,76821 -Bangs,TX,76823 -Bend,TX,76824 -Fife,TX,76825 -Brookesmith,TX,76827 -Burkett,TX,76828 -Castell,TX,76831 -Cherokee,TX,76832 -Coleman,TX,76834 -Doole,TX,76836 -Eden,TX,76837 -Fort Mc Kavett,TX,76841 -Fredonia,TX,76842 -Goldthwaite,TX,76844 -Gouldbusk,TX,76845 -Hext,TX,76848 -Junction,TX,76849 -76850,TX,76850 -Lohn,TX,76852 -Lometa,TX,76853 -London,TX,76854 -Mason,TX,76856 -May,TX,76857 -Melvin,TX,76858 -Menard,TX,76859 -Miles,TX,76861 -Millersview,TX,76862 -Mullin,TX,76864 -Norton,TX,76865 -Paint Rock,TX,76866 -Pear Valley,TX,76867 -Pontotoc,TX,76869 -Priddy,TX,76870 -Richland Springs,TX,76871 -Rochelle,TX,76872 -Rockwood,TX,76873 -Roosevelt,TX,76874 -Rowena,TX,76875 -San Saba,TX,76877 -Santa Anna,TX,76878 -Star,TX,76880 -Talpa,TX,76882 -Telegraph,TX,76883 -Valera,TX,76884 -Valley Spring,TX,76885 -Voca,TX,76887 -Leaday,TX,76888 -Zephyr,TX,76890 -San Angelo,TX,76901 -San Angelo,TX,76903 -San Angelo,TX,76904 -San Angelo,TX,76905 -Barnhart,TX,76930 -Best,TX,76932 -Bronte,TX,76933 -Carlsbad,TX,76934 -Christoval,TX,76935 -Eldorado,TX,76936 -Eola,TX,76937 -Mereta,TX,76940 -Mertzon,TX,76941 -Ozona,TX,76943 -Robert Lee,TX,76945 -Silver,TX,76949 -Sonora,TX,76950 -Sterling City,TX,76951 -Vancourt,TX,76955 -Wall,TX,76957 -Houston,TX,77002 -Houston,TX,77003 -Houston,TX,77004 -Houston,TX,77005 -Houston,TX,77006 -Houston,TX,77007 -Houston,TX,77008 -Houston,TX,77009 -Houston,TX,77010 -Houston,TX,77011 -Houston,TX,77012 -Houston,TX,77013 -Houston,TX,77014 -Houston,TX,77015 -Houston,TX,77016 -Houston,TX,77017 -Houston,TX,77018 -Houston,TX,77019 -Houston,TX,77020 -Houston,TX,77021 -Houston,TX,77022 -Houston,TX,77023 -Houston,TX,77024 -Houston,TX,77025 -Houston,TX,77026 -Houston,TX,77027 -Houston,TX,77028 -Jacinto City,TX,77029 -V A Hospital,TX,77030 -Houston,TX,77031 -Houston,TX,77032 -Houston,TX,77033 -Houston,TX,77034 -Houston,TX,77035 -Houston,TX,77036 -Houston,TX,77037 -Houston,TX,77038 -Houston,TX,77039 -Jersey Village,TX,77040 -Houston,TX,77041 -Houston,TX,77042 -Houston,TX,77043 -Houston,TX,77044 -Houston,TX,77045 -Houston,TX,77046 -Houston,TX,77047 -Houston,TX,77048 -Houston,TX,77049 -Houston,TX,77050 -Houston,TX,77051 -Houston,TX,77053 -Houston,TX,77054 -Houston,TX,77055 -Houston,TX,77056 -Houston,TX,77057 -Houston,TX,77058 -Houston,TX,77059 -Houston,TX,77060 -Houston,TX,77061 -Houston,TX,77062 -Houston,TX,77063 -Houston,TX,77064 -Houston,TX,77065 -Houston,TX,77066 -Houston,TX,77067 -Houston,TX,77068 -Houston,TX,77069 -Houston,TX,77070 -Houston,TX,77071 -Houston,TX,77072 -Houston,TX,77073 -Houston,TX,77074 -Houston,TX,77075 -Houston,TX,77076 -Houston,TX,77077 -Houston,TX,77078 -Houston,TX,77079 -Houston,TX,77080 -Houston,TX,77081 -Houston,TX,77082 -Houston,TX,77083 -Houston,TX,77084 -Houston,TX,77085 -Houston,TX,77086 -Houston,TX,77087 -Houston,TX,77088 -Houston,TX,77089 -Houston,TX,77090 -Houston,TX,77091 -Houston,TX,77092 -Houston,TX,77093 -Houston,TX,77094 -Houston,TX,77095 -Houston,TX,77096 -Houston,TX,77098 -Houston,TX,77099 -Conroe,TX,77301 -Grangerland,TX,77302 -Cut And Shoot,TX,77303 -Panorama Village,TX,77304 -Cleveland,TX,77327 -Coldspring,TX,77331 -Goodrich,TX,77335 -Huffman,TX,77336 -Humble,TX,77338 -Humble,TX,77339 -Huntsville,TX,77340 -Humble,TX,77345 -Humble,TX,77346 -Segno,TX,77351 -Magnolia,TX,77355 -Montgomery,TX,77356 -New Caney,TX,77357 -New Waverly,TX,77358 -Oakhurst,TX,77359 -Pinehurst,TX,77362 -Plantersville,TX,77363 -Pointblank,TX,77364 -Porter,TX,77365 -Shepherd,TX,77371 -Splendora,TX,77372 -Spring,TX,77373 -Tomball,TX,77375 -Willis,TX,77378 -Klein,TX,77379 -The Woodlands,TX,77380 -The Woodlands,TX,77381 -Conroe,TX,77384 -Conroe,TX,77385 -Spring,TX,77386 -Spring,TX,77388 -Spring,TX,77389 -Humble,TX,77396 -Bellaire,TX,77401 -Sargent,TX,77414 -Beasley,TX,77417 -Bellville,TX,77418 -Blessing,TX,77419 -Boling,TX,77420 -Brazoria,TX,77422 -Brookshire,TX,77423 -Chappell Hill,TX,77426 -Cypress,TX,77429 -Damon,TX,77430 -Danevang,TX,77432 -Cypress,TX,77433 -Eagle Lake,TX,77434 -East Bernard,TX,77435 -El Campo,TX,77437 -Elmaton,TX,77440 -Fulshear,TX,77441 -Garwood,TX,77442 -Guy,TX,77444 -Hempstead,TX,77445 -Hockley,TX,77447 -Park Row,TX,77449 -Park Row,TX,77450 -Louise,TX,77455 -Markham,TX,77456 -Matagorda,TX,77457 -Midfield,TX,77458 -Missouri City,TX,77459 -Needville,TX,77461 -Palacios,TX,77465 -Pledger,TX,77468 -Clodine,TX,77469 -Rosenberg,TX,77471 -Sealy,TX,77474 -Stafford,TX,77477 -Sugar Land,TX,77478 -Sugar Land,TX,77479 -Sweeny,TX,77480 -Van Vleck,TX,77482 -Wadsworth,TX,77483 -Waller,TX,77484 -Wallis,TX,77485 -West Columbia,TX,77486 -Wharton,TX,77488 -Missouri City,TX,77489 -Park Row,TX,77493 -Park Row,TX,77494 -Pasadena,TX,77502 -Pasadena,TX,77503 -Pasadena,TX,77504 -Pasadena,TX,77505 -Pasadena,TX,77506 -Pasadena,TX,77507 -Alta Loma,TX,77510 -Alvin,TX,77511 -Monroe City,TX,77514 -Angleton,TX,77515 -Arcadia,TX,77517 -Bacliff,TX,77518 -Batson,TX,77519 -Baytown,TX,77520 -Baytown,TX,77521 -Channelview,TX,77530 -Clute,TX,77531 -Barrett,TX,77532 -Danbury,TX,77534 -Dayton,TX,77535 -Deer Park,TX,77536 -Devers,TX,77538 -San Leon,TX,77539 -Quintana,TX,77541 -Fresno,TX,77545 -Friendswood,TX,77546 -Galena Park,TX,77547 -Galveston,TX,77550 -Galveston,TX,77551 -Galveston,TX,77554 -Hankamer,TX,77560 -Highlands,TX,77562 -Hitchcock,TX,77563 -Hull,TX,77564 -Clear Lake Shore,TX,77565 -Lake Jackson,TX,77566 -La Marque,TX,77568 -Shoreacres,TX,77571 -League City,TX,77573 -Ames,TX,77575 -Liverpool,TX,77577 -Manvel,TX,77578 -Pearland,TX,77581 -Rosharon,TX,77583 -Pearland,TX,77584 -Saratoga,TX,77585 -El Lago,TX,77586 -South Houston,TX,77587 -Texas City,TX,77590 -Texas City,TX,77591 -Wallisville,TX,77597 -Webster,TX,77598 -Bridge City,TX,77611 -Buna,TX,77612 -Deweyville,TX,77614 -Fred,TX,77616 -Groves,TX,77619 -Hamshire,TX,77622 -Hillister,TX,77624 -Kountze,TX,77625 -Nederland,TX,77627 -West Orange,TX,77630 -Port Acres,TX,77640 -Port Arthur,TX,77642 -Crystal Beach,TX,77650 -Port Neches,TX,77651 -Silsbee,TX,77656 -Sour Lake,TX,77659 -Spurger,TX,77660 -Vidor,TX,77662 -Warren,TX,77664 -Winnie,TX,77665 -Beaumont,TX,77701 -Beaumont,TX,77702 -Beaumont,TX,77703 -Beaumont,TX,77705 -Beaumont,TX,77706 -Beaumont,TX,77707 -Beaumont,TX,77708 -Beaumont,TX,77713 -Bryan,TX,77801 -Bryan,TX,77802 -Bryan,TX,77803 -Anderson,TX,77830 -Singleton,TX,77831 -Brenham,TX,77833 -Burton,TX,77835 -Caldwell,TX,77836 -Calvert,TX,77837 -College Station,TX,77840 -College Station,TX,77843 -College Station,TX,77845 -Concord,TX,77850 -Dime Box,TX,77853 -Franklin,TX,77856 -Hearne,TX,77859 -Iola,TX,77861 -Madisonville,TX,77864 -Marquez,TX,77865 -Navasota,TX,77868 -Hilltop Lakes,TX,77871 -North Zulch,TX,77872 -Richards,TX,77873 -Somerville,TX,77879 -Washington,TX,77880 -Victoria,TX,77901 -Victoria,TX,77904 -Bloomington,TX,77951 -Cuero,TX,77954 -Edna,TX,77957 -Ganado,TX,77962 -Goliad,TX,77963 -Hallettsville,TX,77964 -Inez,TX,77968 -Lolita,TX,77971 -Meyersville,TX,77974 -Moulton,TX,77975 -Port Lavaca,TX,77979 -Port O Connor,TX,77982 -Seadrift,TX,77983 -Shiner,TX,77984 -Tivoli,TX,77990 -Westhoff,TX,77994 -Yoakum,TX,77995 -Atascosa,TX,78002 -Bandera,TX,78003 -Bergheim,TX,78004 -Bigfoot,TX,78005 -Sisterdale,TX,78006 -Calliham,TX,78007 -Campbellton,TX,78008 -Castroville,TX,78009 -Camp Verde,TX,78010 -Charlotte,TX,78011 -Comfort,TX,78013 -Cotulla,TX,78014 -Devine,TX,78016 -Dilley,TX,78017 -Encinal,TX,78019 -Fowlerton,TX,78021 -George West,TX,78022 -Grey Forest,TX,78023 -Hunt,TX,78024 -Ingram,TX,78025 -Jourdanton,TX,78026 -Kendalia,TX,78027 -Kerrville,TX,78028 -La Coste,TX,78039 -Laredo,TX,78040 -Laredo,TX,78041 -Rio Bravo,TX,78043 -Lytle,TX,78052 -Mc Coy,TX,78053 -Medina,TX,78055 -Mico,TX,78056 -Moore,TX,78057 -Mountain Home,TX,78058 -Natalia,TX,78059 -Oakville,TX,78060 -Pearsall,TX,78061 -Lakehills,TX,78063 -Pleasanton,TX,78064 -Poteet,TX,78065 -Riomedina,TX,78066 -San Ygnacio,TX,78067 -Somerset,TX,78069 -Spring Branch,TX,78070 -Three Rivers,TX,78071 -Tilden,TX,78072 -Von Ormy,TX,78073 -Whitsett,TX,78075 -Zapata,TX,78076 -Adkins,TX,78101 -Beeville,TX,78102 -Cibolo,TX,78108 -Converse,TX,78109 -Ecleto,TX,78111 -Elmendorf,TX,78112 -Falls City,TX,78113 -Floresville,TX,78114 -Gillett,TX,78116 -Hobson,TX,78117 -Karnes City,TX,78118 -Kenedy,TX,78119 -La Vernia,TX,78121 -Leesville,TX,78122 -Mc Queeney,TX,78123 -Marion,TX,78124 -Canyon Lake,TX,78130 -Canyon Lake,TX,78132 -Canyon Lake,TX,78133 -Nixon,TX,78140 -Nordheim,TX,78141 -Poth,TX,78147 -Randolph A F B,TX,78148 -Randolph A F B,TX,78150 -Runge,TX,78151 -Saint Hedwig,TX,78152 -Selma,TX,78154 -Seguin,TX,78155 -Smiley,TX,78159 -Stockdale,TX,78160 -Sutherland Sprin,TX,78161 -Wetmore,TX,78163 -Yorktown,TX,78164 -Balcones Heights,TX,78201 -San Antonio,TX,78202 -San Antonio,TX,78203 -San Antonio,TX,78204 -San Antonio,TX,78205 -San Antonio,TX,78207 -San Antonio,TX,78208 -Alamo Heights,TX,78209 -San Antonio,TX,78210 -San Antonio,TX,78211 -Olmos Park,TX,78212 -Castle Hills,TX,78213 -San Antonio,TX,78214 -San Antonio,TX,78215 -San Antonio,TX,78216 -San Antonio,TX,78217 -San Antonio,TX,78218 -Kirby,TX,78219 -San Antonio,TX,78220 -San Antonio,TX,78221 -San Antonio,TX,78222 -San Antonio,TX,78223 -San Antonio,TX,78224 -San Antonio,TX,78225 -San Antonio,TX,78226 -San Antonio,TX,78227 -San Antonio,TX,78228 -San Antonio,TX,78229 -San Antonio,TX,78230 -Shavano Park,TX,78231 -Hollywood Park,TX,78232 -Live Oak,TX,78233 -Fort Sam Houston,TX,78234 -Brooks A F B,TX,78235 -Wilford Hall U S,TX,78236 -San Antonio,TX,78237 -Leon Valley,TX,78238 -Windcrest,TX,78239 -San Antonio,TX,78240 -Kelly A F B,TX,78241 -San Antonio,TX,78242 -San Antonio,TX,78244 -San Antonio,TX,78245 -Wetmore,TX,78247 -San Antonio,TX,78248 -San Antonio,TX,78249 -San Antonio,TX,78250 -San Antonio,TX,78251 -San Antonio,TX,78252 -San Antonio,TX,78253 -San Antonio,TX,78254 -San Antonio,TX,78255 -San Antonio,TX,78256 -San Antonio,TX,78257 -San Antonio,TX,78258 -San Antonio,TX,78259 -San Antonio,TX,78260 -San Antonio,TX,78261 -San Antonio,TX,78263 -San Antonio,TX,78264 -Garden Ridge,TX,78266 -Alice,TX,78332 -Aransas Pass,TX,78336 -Armstrong,TX,78338 -Bayside,TX,78340 -Bishop,TX,78343 -Bruni,TX,78344 -Concepcion,TX,78349 -Encino,TX,78353 -Falfurrias,TX,78355 -Freer,TX,78357 -Fulton,TX,78358 -Guerra,TX,78360 -Hebbronville,TX,78361 -Ingleside,TX,78362 -Kingsville Naval,TX,78363 -Mathis,TX,78368 -Mirando City,TX,78369 -Odem,TX,78370 -Orange Grove,TX,78372 -Portland,TX,78374 -Premont,TX,78375 -Realitos,TX,78376 -Refugio,TX,78377 -Riviera,TX,78379 -Robstown,TX,78380 -Rockport,TX,78382 -Sandia,TX,78383 -San Diego,TX,78384 -Sarita,TX,78385 -Sinton,TX,78387 -Skidmore,TX,78389 -Taft,TX,78390 -Tynan,TX,78391 -Woodsboro,TX,78393 -Corpus Christi,TX,78401 -Corpus Christi,TX,78402 -Corpus Christi,TX,78404 -Corpus Christi,TX,78405 -Corpus Christi,TX,78406 -Corpus Christi,TX,78407 -Corpus Christi,TX,78408 -Corpus Christi,TX,78409 -Corpus Christi,TX,78410 -Corpus Christi,TX,78411 -Corpus Christi,TX,78412 -Corpus Christi,TX,78413 -Corpus Christi,TX,78414 -Corpus Christi,TX,78415 -Corpus Christi,TX,78416 -Corpus Christi,TX,78417 -Corpus Christi,TX,78418 -Corpus Christi,TX,78419 -Corpus Christi,TX,78473 -Mcallen,TX,78501 -Mcallen,TX,78503 -Mcallen,TX,78504 -Alamo,TX,78516 -Brownsville,TX,78520 -Brownsville,TX,78521 -Delmita,TX,78536 -Donna,TX,78537 -Monte Alto,TX,78538 -Edinburg,TX,78539 -Garciasville,TX,78547 -Grulla,TX,78548 -Hargill,TX,78549 -Harlingen,TX,78550 -Harlingen,TX,78552 -Hidalgo,TX,78557 -La Feria,TX,78559 -Linn,TX,78563 -Bayview,TX,78566 -Lyford,TX,78569 -Mercedes,TX,78570 -Alton,TX,78572 -Pharr,TX,78577 -Port Isabel,TX,78578 -Raymondville,TX,78580 -Rio Grande City,TX,78582 -Rio Hondo,TX,78583 -Roma,TX,78584 -San Benito,TX,78586 -San Isidro,TX,78588 -San Juan,TX,78589 -San Perlita,TX,78590 -Santa Elena,TX,78591 -Santa Rosa,TX,78593 -Sebastian,TX,78594 -Sullivan City,TX,78595 -Weslaco,TX,78596 -South Padre Isla,TX,78597 -Port Mansfield,TX,78598 -Bastrop,TX,78602 -Bebe,TX,78603 -Bertram,TX,78605 -Blanco,TX,78606 -Bluffton,TX,78607 -Briggs,TX,78608 -Buchanan Dam,TX,78609 -Buda,TX,78610 -Burnet,TX,78611 -Cedar Creek,TX,78612 -Cedar Park,TX,78613 -Cost,TX,78614 -Coupland,TX,78615 -Dale,TX,78616 -Del Valle,TX,78617 -Doss,TX,78618 -Driftwood,TX,78619 -Dripping Springs,TX,78620 -Elgin,TX,78621 -Fischer,TX,78623 -Fredericksburg,TX,78624 -Georgetown,TX,78626 -Andice,TX,78628 -Gonzales,TX,78629 -Harper,TX,78631 -Harwood,TX,78632 -Hutto,TX,78634 -Hye,TX,78635 -Johnson City,TX,78636 -Kingsbury,TX,78638 -Kingsland,TX,78639 -Uhland,TX,78640 -Leander,TX,78641 -Liberty Hill,TX,78642 -Sunrise Beach,TX,78643 -Lockhart,TX,78644 -Jonestown,TX,78645 -Luling,TX,78648 -Mc Dade,TX,78650 -Manchaca,TX,78652 -Manor,TX,78653 -Cypress Mill,TX,78654 -Martindale,TX,78655 -Maxwell,TX,78656 -Paige,TX,78659 -Pflugerville,TX,78660 -Red Rock,TX,78662 -Round Mountain,TX,78663 -Round Rock,TX,78664 -Sandy,TX,78665 -San Marcos,TX,78666 -Spicewood,TX,78669 -Albert,TX,78671 -Tow,TX,78672 -Willow City,TX,78675 -Wimberley,TX,78676 -Wrightsboro,TX,78677 -Round Rock,TX,78681 -Austin,TX,78701 -Austin,TX,78702 -Austin,TX,78703 -Austin,TX,78704 -Austin,TX,78705 -Austin,TX,78717 -Austin,TX,78719 -Austin,TX,78721 -Austin,TX,78722 -Austin,TX,78723 -Austin,TX,78724 -Austin,TX,78725 -Austin,TX,78726 -Austin,TX,78727 -Austin,TX,78728 -Austin,TX,78729 -Austin,TX,78730 -Austin,TX,78731 -Austin,TX,78732 -Austin,TX,78733 -Lakeway,TX,78734 -Austin,TX,78735 -Austin,TX,78736 -Austin,TX,78737 -Austin,TX,78738 -Austin,TX,78739 -Austin,TX,78741 -Austin,TX,78742 -Austin,TX,78744 -Austin,TX,78745 -West Lake Hills,TX,78746 -Creedmoor,TX,78747 -Austin,TX,78748 -Austin,TX,78749 -Austin,TX,78750 -Austin,TX,78751 -Austin,TX,78752 -Austin,TX,78753 -Austin,TX,78754 -Austin,TX,78756 -Austin,TX,78757 -Austin,TX,78758 -Austin,TX,78759 -Uvalde,TX,78801 -Asherton,TX,78827 -Barksdale,TX,78828 -Batesville,TX,78829 -Big Wells,TX,78830 -Brackettville,TX,78832 -Camp Wood,TX,78833 -Carrizo Springs,TX,78834 -Comstock,TX,78837 -Concan,TX,78838 -Crystal City,TX,78839 -Laughlin A F B,TX,78840 -D Hanis,TX,78850 -Dryden,TX,78851 -Eagle Pass,TX,78852 -Dunlay,TX,78861 -Knippa,TX,78870 -La Pryor,TX,78872 -Leakey,TX,78873 -Spofford,TX,78877 -Rio Frio,TX,78879 -Rocksprings,TX,78880 -Sabinal,TX,78881 -Tarpley,TX,78883 -Utopia,TX,78884 -Vanderpool,TX,78885 -Yancey,TX,78886 -Bleiblerville,TX,78931 -Carmine,TX,78932 -Cat Spring,TX,78933 -Columbus,TX,78934 -Alleyton,TX,78935 -Ellinger,TX,78938 -Fayetteville,TX,78940 -Flatonia,TX,78941 -Giddings,TX,78942 -Industry,TX,78944 -La Grange,TX,78945 -Ledbetter,TX,78946 -Lexington,TX,78947 -Lincoln,TX,78948 -Muldoon,TX,78949 -New Ulm,TX,78950 -Rosanky,TX,78953 -Round Top,TX,78954 -Schulenburg,TX,78956 -Smithville,TX,78957 -Waelder,TX,78959 -Weimar,TX,78962 -West Point,TX,78963 -Adrian,TX,79001 -Booker,TX,79005 -Phillips,TX,79007 -Bovina,TX,79009 -Briscoe,TX,79011 -Glazier,TX,79014 -Canyon,TX,79015 -Channing,TX,79018 -Claude,TX,79019 -Dalhart,TX,79022 -Dimmitt,TX,79027 -Dumas,TX,79029 -Earth,TX,79031 -Follett,TX,79034 -Black,TX,79035 -Fritch,TX,79036 -Groom,TX,79039 -Gruver,TX,79040 -Hale Center,TX,79041 -Happy,TX,79042 -Hart,TX,79043 -Hartley,TX,79044 -Hereford,TX,79045 -Higgins,TX,79046 -Kress,TX,79052 -Lipscomb,TX,79056 -Kellerville,TX,79057 -Miami,TX,79059 -Mobeetie,TX,79061 -Morse,TX,79062 -Nazareth,TX,79063 -Olton,TX,79064 -Pampa,TX,79065 -Panhandle,TX,79068 -Perryton,TX,79070 -Plainview,TX,79072 -Twitty,TX,79079 -Skellytown,TX,79080 -Spearman,TX,79081 -Springlake,TX,79082 -Stinnett,TX,79083 -Stratford,TX,79084 -Summerfield,TX,79085 -Sunray,TX,79086 -Texline,TX,79087 -Vigo Park,TX,79088 -Vega,TX,79092 -Wayside,TX,79094 -Wellington,TX,79095 -Wheeler,TX,79096 -White Deer,TX,79097 -Wildorado,TX,79098 -Amarillo,TX,79101 -Amarillo,TX,79102 -Amarillo,TX,79103 -Amarillo,TX,79104 -Amarillo,TX,79106 -Amarillo,TX,79107 -Amarillo,TX,79108 -Amarillo,TX,79109 -Amarillo,TX,79110 -Amarillo,TX,79111 -Amarillo,TX,79118 -Amarillo,TX,79119 -Amarillo,TX,79121 -Amarillo,TX,79124 -Kirkland,TX,79201 -Afton,TX,79220 -Chillicothe,TX,79225 -Clarendon,TX,79226 -Crowell,TX,79227 -Dickens,TX,79229 -Dodson,TX,79230 -Dumont,TX,79232 -Flomot,TX,79234 -Floydada,TX,79235 -Hedley,TX,79237 -Lakeview,TX,79239 -Lockney,TX,79241 -Mcadoo,TX,79243 -Matador,TX,79244 -Memphis,TX,79245 -Chalk,TX,79248 -Petersburg,TX,79250 -Quail,TX,79251 -Quanah,TX,79252 -Quitaque,TX,79255 -Roaring Springs,TX,79256 -Silverton,TX,79257 -Tell,TX,79259 -Truscott,TX,79260 -Turkey,TX,79261 -Abernathy,TX,79311 -Amherst,TX,79312 -Anton,TX,79313 -Brownfield,TX,79316 -Bula,TX,79320 -Crosbyton,TX,79322 -Denver City,TX,79323 -Enochs,TX,79324 -Farwell,TX,79325 -Fieldton,TX,79326 -Idalou,TX,79329 -Lamesa,TX,79331 -Levelland,TX,79336 -Littlefield,TX,79339 -Loop,TX,79342 -Lorenzo,TX,79343 -Maple,TX,79344 -Meadow,TX,79345 -Morton,TX,79346 -Muleshoe,TX,79347 -Odonnell,TX,79351 -Pep,TX,79353 -Plains,TX,79355 -Post,TX,79356 -Cone,TX,79357 -Ropesville,TX,79358 -Seagraves,TX,79359 -Seminole,TX,79360 -Shallowater,TX,79363 -Ransom Canyon,TX,79364 -Ransom Canyon,TX,79366 -Spur,TX,79370 -Sudan,TX,79371 -Tahoka,TX,79373 -Tokio,TX,79376 -Welch,TX,79377 -Whiteface,TX,79379 -Wilson,TX,79381 -Wolfforth,TX,79382 -Lubbock,TX,79401 -Lubbock,TX,79403 -Lubbock,TX,79404 -Lubbock,TX,79405 -Lubbock,TX,79406 -Lubbock,TX,79407 -Lubbock,TX,79410 -Lubbock,TX,79411 -Lubbock,TX,79412 -Lubbock,TX,79413 -Lubbock,TX,79414 -Lubbock,TX,79415 -Lubbock,TX,79416 -Lubbock,TX,79423 -Lubbock,TX,79424 -Reese Air Force,TX,79489 -Anson,TX,79501 -Aspermont,TX,79502 -Avoca,TX,79503 -Baird,TX,79504 -Blackwell,TX,79506 -Clyde,TX,79510 -Coahoma,TX,79511 -Colorado City,TX,79512 -Fluvanna,TX,79517 -Girard,TX,79518 -Goldsboro,TX,79519 -Hamlin,TX,79520 -Haskell,TX,79521 -Hawley,TX,79525 -Hermleigh,TX,79526 -Ira,TX,79527 -Jayton,TX,79528 -Knox City,TX,79529 -Lawn,TX,79530 -Loraine,TX,79532 -Lueders,TX,79533 -Mc Caulley,TX,79534 -Maryneal,TX,79535 -Merkel,TX,79536 -Nolan,TX,79537 -Novice,TX,79538 -O Brien,TX,79539 -Old Glory,TX,79540 -Ovalo,TX,79541 -79542,TX,79542 -Roby,TX,79543 -Rochester,TX,79544 -Roscoe,TX,79545 -Rotan,TX,79546 -Rule,TX,79547 -Sagerton,TX,79548 -Dermott,TX,79549 -Stamford,TX,79553 -Sweetwater,TX,79556 -Sylvester,TX,79560 -Trent,TX,79561 -Tuscola,TX,79562 -Tye,TX,79563 -Westbrook,TX,79565 -Wingate,TX,79566 -Winters,TX,79567 -Abilene,TX,79601 -Abilene,TX,79602 -Abilene,TX,79603 -Abilene,TX,79605 -Abilene,TX,79606 -Dyess Afb,TX,79607 -Midland,TX,79701 -Midland,TX,79703 -Midland,TX,79705 -Midland,TX,79707 -Ackerly,TX,79713 -Andrews,TX,79714 -Balmorhea,TX,79718 -Barstow,TX,79719 -Vealmoor,TX,79720 -Coyanosa,TX,79730 -Crane,TX,79731 -Fort Davis,TX,79734 -Fort Stockton,TX,79735 -Gail,TX,79738 -Garden City,TX,79739 -Goldsmith,TX,79741 -Grandfalls,TX,79742 -Imperial,TX,79743 -Iraan,TX,79744 -Kermit,TX,79745 -Knott,TX,79748 -Lenorah,TX,79749 -Mc Camey,TX,79752 -Mentone,TX,79754 -Midkiff,TX,79755 -Monahans,TX,79756 -Gardendale,TX,79758 -Odessa,TX,79761 -Odessa,TX,79762 -Odessa,TX,79763 -Odessa,TX,79764 -Odessa,TX,79765 -Odessa,TX,79766 -Verhalen,TX,79772 -Pyote,TX,79777 -Sheffield,TX,79781 -Stanton,TX,79782 -Tarzan,TX,79783 -Wink,TX,79789 -Anthony,TX,79821 -Alpine,TX,79830 -Big Bend Nationa,TX,79834 -Canutillo,TX,79835 -Clint,TX,79836 -Dell City,TX,79837 -Fort Hancock,TX,79839 -Marathon,TX,79842 -Marfa,TX,79843 -Presidio,TX,79845 -Salt Flat,TX,79847 -Sierra Blanca,TX,79851 -Terlingua,TX,79852 -Valentine,TX,79854 -Kent,TX,79855 -El Paso,TX,79901 -El Paso,TX,79902 -El Paso,TX,79903 -El Paso,TX,79904 -El Paso,TX,79905 -Fort Bliss,TX,79906 -El Paso,TX,79907 -Fort Bliss,TX,79908 -El Paso,TX,79912 -El Paso,TX,79915 -Fort Bliss,TX,79916 -El Paso,TX,79922 -El Paso,TX,79924 -El Paso,TX,79925 -Horizon City,TX,79927 -El Paso,TX,79930 -El Paso,TX,79932 -El Paso,TX,79934 -El Paso,TX,79935 -El Paso,TX,79936 -Altamont,UT,84001 -Altonah,UT,84002 -American Fork,UT,84003 -Alpine,UT,84004 -Bingham Canyon,UT,84006 -Bluebell,UT,84007 -Bountiful,UT,84010 -Bridgeland,UT,84012 -Cedar Valley,UT,84013 -Centerville,UT,84014 -Clearfield,UT,84015 -Coalville,UT,84017 -Croydon,UT,84018 -Draper,UT,84020 -Duchesne,UT,84021 -Dugway,UT,84022 -Dutch John,UT,84023 -Farmington,UT,84025 -Fort Duchesne,UT,84026 -Garden City,UT,84028 -Grantsville,UT,84029 -Hanna,UT,84031 -Heber City,UT,84032 -Jensen,UT,84035 -Kamas,UT,84036 -Kaysville,UT,84037 -Laketown,UT,84038 -Lapoint,UT,84039 -Layton,UT,84040 -Layton,UT,84041 -Lindon,UT,84042 -Lehi,UT,84043 -Magna,UT,84044 -Manila,UT,84046 -Midvale,UT,84047 -Midway,UT,84049 -Morgan,UT,84050 -Mountain Home,UT,84051 -Myton,UT,84052 -Neola,UT,84053 -North Salt Lake,UT,84054 -Hill Air Force B,UT,84056 -Orem,UT,84057 -Vineyard,UT,84058 -Park City,UT,84060 -Peoa,UT,84061 -Pleasant Grove,UT,84062 -Randlett,UT,84063 -Randolph,UT,84064 -Lark,UT,84065 -Roosevelt,UT,84066 -Roy,UT,84067 -Rush Valley,UT,84069 -Sandy,UT,84070 -Stockton,UT,84071 -Tabiona,UT,84072 -Talmage,UT,84073 -Tooele,UT,84074 -Syracuse,UT,84075 -Tridell,UT,84076 -Vernal,UT,84078 -Vernon,UT,84080 -Wallsburg,UT,84082 -Trout Creek,UT,84083 -West Jordan,UT,84084 -Whiterocks,UT,84085 -Woodruff,UT,84086 -Woods Cross,UT,84087 -West Jordan,UT,84088 -Alta,UT,84092 -Sandy,UT,84093 -Sandy,UT,84094 -Salt Lake City,UT,84101 -Salt Lake City,UT,84102 -Salt Lake City,UT,84103 -Salt Lake City,UT,84104 -Salt Lake City,UT,84105 -Salt Lake City,UT,84106 -Murray,UT,84107 -Salt Lake City,UT,84108 -Salt Lake City,UT,84109 -Salt Lake City,UT,84111 -Salt Lake City,UT,84112 -Salt Lake City,UT,84113 -South Salt Lake,UT,84115 -Salt Lake City,UT,84116 -Holladay,UT,84117 -Kearns,UT,84118 -West Valley City,UT,84119 -West Valley City,UT,84120 -Cottonwood,UT,84121 -Murray,UT,84123 -Holladay,UT,84124 -Brigham City,UT,84302 -Clarkston,UT,84305 -Collinston,UT,84306 -Corinne,UT,84307 -Cornish,UT,84308 -Deweyville,UT,84309 -Eden,UT,84310 -Fielding,UT,84311 -Garland,UT,84312 -Grouse Creek,UT,84313 -Honeyville,UT,84314 -Hooper,UT,84315 -Huntsville,UT,84317 -Hyrum,UT,84319 -Lewiston,UT,84320 -Logan,UT,84321 -Mantua,UT,84324 -Mendon,UT,84325 -Paradise,UT,84328 -Park Valley,UT,84329 -Providence,UT,84332 -Richmond,UT,84333 -Smithfield,UT,84335 -Snowville,UT,84336 -Tremonton,UT,84337 -Trenton,UT,84338 -Wellsville,UT,84339 -Willard,UT,84340 -Ogden,UT,84401 -Ogden,UT,84403 -Ogden,UT,84404 -Ogden,UT,84405 -Ogden,UT,84414 -Price,UT,84501 -Aneth,UT,84510 -Blanding,UT,84511 -East Carbon,UT,84520 -Ferron,UT,84523 -Green River,UT,84525 -Helper,UT,84526 -Huntington,UT,84528 -Mexican Hat,UT,84531 -Moab,UT,84532 -Bullfrog,UT,84533 -Monticello,UT,84535 -Monument Valley,UT,84536 -Thompson,UT,84540 -Wellington,UT,84542 -Provo,UT,84601 -Provo,UT,84604 -Provo,UT,84606 -Axtell,UT,84621 -Centerfield,UT,84622 -Delta,UT,84624 -Ephraim,UT,84627 -Eureka,UT,84628 -Fairview,UT,84629 -Fayette,UT,84630 -Fillmore,UT,84631 -Gunnison,UT,84634 -Hinckley,UT,84635 -Manti,UT,84642 -Mona,UT,84645 -Mount Pleasant,UT,84647 -Nephi,UT,84648 -Oasis,UT,84650 -Payson,UT,84651 -Woodland Hills,UT,84653 -Salina,UT,84654 -Genola,UT,84655 -Spanish Fork,UT,84660 -Springville,UT,84663 -Mapleton,UT,84664 -Venice,UT,84701 -Alton,UT,84710 -Antimony,UT,84712 -Beaver,UT,84713 -Beryl,UT,84714 -Boulder,UT,84716 -Bryce Canyon,UT,84717 -Brian Head,UT,84719 -Pintura,UT,84720 -Central,UT,84722 -Escalante,UT,84726 -Garrison,UT,84728 -Glendale,UT,84729 -Greenville,UT,84731 -Hanksville,UT,84734 -Hurricane,UT,84737 -Joseph,UT,84739 -Big Water,UT,84741 -Kingston,UT,84743 -Fremont,UT,84747 -Marysvale,UT,84750 -Milford,UT,84751 -Modena,UT,84753 -Austin,UT,84754 -Mount Carmel,UT,84755 -Newcastle,UT,84756 -Orderville,UT,84758 -Panguitch,UT,84759 -Paragonah,UT,84760 -Parowan,UT,84761 -Sevier,UT,84766 -St George,UT,84770 -Summit,UT,84772 -Teasdale,UT,84773 -Torrey,UT,84775 -Washington,UT,84780 -Pine Valley,UT,84781 -Veyo,UT,84782 -Dammeron Valley,UT,84783 -White River Junc,VT,5001 -Bethel,VT,5032 -Bradford,VT,5033 -Bridgewater,VT,5034 -Bridgewater Corn,VT,5035 -Brookfield,VT,5036 -Brownsville,VT,5037 -Chelsea,VT,5038 -Corinth,VT,5039 -East Corinth,VT,5040 -East Randolph,VT,5041 -Ryegate,VT,5042 -East Thetford,VT,5043 -Fairlee,VT,5045 -Groton,VT,5046 -Hartland,VT,5048 -Newbury,VT,5051 -North Hartland,VT,5052 -North Pomfret,VT,5053 -Norwich,VT,5055 -Plymouth,VT,5056 -Post Mills,VT,5058 -Randolph,VT,5060 -Randolph Center,VT,5061 -Reading,VT,5062 -Sharon,VT,5065 -South Pomfret,VT,5067 -South Royalton,VT,5068 -South Ryegate,VT,5069 -South Strafford,VT,5070 -South Woodstock,VT,5071 -Strafford,VT,5072 -Taftsville,VT,5073 -Thetford Center,VT,5075 -Tunbridge,VT,5077 -Vershire,VT,5079 -Wells River,VT,5081 -West Fairlee,VT,5083 -West Hartford,VT,5084 -West Topsham,VT,5086 -Windsor,VT,5089 -Woodstock,VT,5091 -Bellows Falls,VT,5101 -Cambridgeport,VT,5141 -Cavendish,VT,5142 -Chester,VT,5143 -Grafton,VT,5146 -Bromley Mtn,VT,5148 -Ludlow,VT,5149 -North Springfiel,VT,5150 -Perkinsville,VT,5151 -Peru,VT,5152 -Proctorsville,VT,5153 -Saxtons River,VT,5154 -South Londonderr,VT,5155 -Springfield,VT,5156 -Weston,VT,5161 -Bennington,VT,5201 -Arlington,VT,5250 -Dorset,VT,5251 -East Arlington,VT,5252 -East Dorset,VT,5253 -Manchester Cente,VT,5255 -North Bennington,VT,5257 -North Pownal,VT,5260 -Pownal,VT,5261 -Shaftsbury,VT,5262 -Brattleboro,VT,5301 -Bondville,VT,5340 -East Dover,VT,5341 -Jacksonville,VT,5342 -Jamaica,VT,5343 -Newfane,VT,5345 -Putney,VT,5346 -Readsboro,VT,5350 -Stamford,VT,5352 -Townshend,VT,5353 -Vernon,VT,5354 -Wardsboro,VT,5355 -Mount Snow,VT,5356 -West Halifax,VT,5358 -West Townshend,VT,5359 -West Wardsboro,VT,5360 -Whitingham,VT,5361 -Williamsville,VT,5362 -Wilmington,VT,5363 -Burlington,VT,5401 -South Burlington,VT,5403 -Winooski,VT,5404 -Univ Of Vermont,VT,5405 -Alburg,VT,5440 -Bakersfield,VT,5441 -Bristol,VT,5443 -Cambridge,VT,5444 -Charlotte,VT,5445 -Colchester,VT,5446 -East Berkshire,VT,5447 -East Fairfield,VT,5448 -Enosburg Falls,VT,5450 -Essex Junction,VT,5452 -Fairfax,VT,5454 -Fairfield,VT,5455 -Ferrisburg,VT,5456 -Franklin,VT,5457 -Grand Isle,VT,5458 -Highgate Center,VT,5459 -Hinesburg,VT,5461 -Huntington,VT,5462 -Isle La Motte,VT,5463 -Smugglers Notch,VT,5464 -Jericho Center,VT,5465 -Milton,VT,5468 -Montgomery Cente,VT,5471 -New Haven,VT,5472 -North Ferrisburg,VT,5473 -North Hero,VT,5474 -Richford,VT,5476 -Bolton Valley,VT,5477 -Saint Albans,VT,5478 -Shelburne,VT,5482 -Sheldon,VT,5483 -South Hero,VT,5486 -Starksboro,VT,5487 -Swanton,VT,5488 -Underhill,VT,5489 -Vergennes,VT,5491 -Waterville,VT,5492 -Westford,VT,5494 -Williston,VT,5495 -Montpelier,VT,5602 -Adamant,VT,5640 -Barre,VT,5641 -Cabot,VT,5647 -Calais,VT,5648 -East Barre,VT,5649 -East Calais,VT,5650 -East Montpelier,VT,5651 -Eden,VT,5652 -Eden Mills,VT,5653 -Graniteville,VT,5654 -Hyde Park,VT,5655 -Johnson,VT,5656 -Marshfield,VT,5658 -Moretown,VT,5660 -Morrisville,VT,5661 -Riverton,VT,5663 -North Montpelier,VT,5666 -Plainfield,VT,5667 -Roxbury,VT,5669 -Stowe,VT,5672 -Waitsfield,VT,5673 -Sugarbush Valley,VT,5674 -Washgtin,VT,5675 -Waterbury,VT,5676 -Waterbury Center,VT,5677 -Williamstown,VT,5679 -Wolcott,VT,5680 -Woodbury,VT,5681 -Worcester,VT,5682 -Rutland,VT,5701 -Belmont,VT,5730 -Hubbardton,VT,5732 -Brandon,VT,5733 -Bridport,VT,5734 -Castleton,VT,5735 -Center Rutland,VT,5736 -Chittenden,VT,5737 -Cuttingsville,VT,5738 -Danby,VT,5739 -East Wallingford,VT,5742 -Fair Haven,VT,5743 -Florence,VT,5744 -Gaysville,VT,5746 -Granville,VT,5747 -Hancock,VT,5748 -Killington,VT,5751 -Bread Loaf,VT,5753 -Middletown Sprin,VT,5757 -Mount Holly,VT,5758 -North Clarendon,VT,5759 -Orwell,VT,5760 -Pawlet,VT,5761 -Pittsfield,VT,5762 -Pittsford,VT,5763 -Poultney,VT,5764 -Proctor,VT,5765 -Ripton,VT,5766 -Rochester,VT,5767 -Salisbury,VT,5769 -Shoreham,VT,5770 -Stockbridge,VT,5772 -Wallingford,VT,5773 -Wells,VT,5774 -West Pawlet,VT,5775 -West Rupert,VT,5776 -West Rutland,VT,5777 -Leicester Juncti,VT,5778 -Saint Johnsbury,VT,5819 -Albany,VT,5820 -Barnet,VT,5821 -Barton,VT,5822 -Concord,VT,5824 -Coventry,VT,5825 -Craftsbury,VT,5826 -Craftsbury Commo,VT,5827 -Danville,VT,5828 -Derby,VT,5829 -Derby Line,VT,5830 -East Burke,VT,5832 -East Charleston,VT,5833 -East Hardwick,VT,5836 -East Haven,VT,5837 -Glover,VT,5839 -Greensboro,VT,5841 -Greensboro Bend,VT,5842 -Hardwick,VT,5843 -Irasburg,VT,5845 -Island Pond,VT,5846 -Lowell,VT,5847 -Lyndon Center,VT,5850 -Lyndonville,VT,5851 -Morgan Ctr,VT,5853 -Newport,VT,5855 -Newport Center,VT,5857 -North Concord,VT,5858 -Jay Peak,VT,5859 -Orleans,VT,5860 -Peacham,VT,5862 -Sheffield,VT,5866 -Sutton,VT,5867 -Troy,VT,5868 -West Burke,VT,5871 -West Charleston,VT,5872 -West Danville,VT,5873 -Westfield,VT,5874 -West Glover,VT,5875 -Averill,VT,5901 -Beecher Falls,VT,5902 -Canaan,VT,5903 -Gilman,VT,5904 -Guildhall,VT,5905 -Lunenburg,VT,5906 -Norton,VT,5907 -Aldie,VA,22001 -Amissville,VA,22002 -Annandale,VA,22003 -Arcola,VA,22010 -Ashburn,VA,22011 -Bluemont,VA,22012 -Bristow,VA,22013 -Broad Run,VA,22014 -Burke,VA,22015 -Catharpin,VA,22018 -Catlett,VA,22019 -Centreville,VA,22020 -Chantilly,VA,22021 -Clifton,VA,22024 -Delaplane,VA,22025 -Dumfries,VA,22026 -Dunn Loring,VA,22027 -Fairfax,VA,22030 -Fairfax,VA,22031 -Fairfax,VA,22032 -Fairfax,VA,22033 -Fairfax Station,VA,22039 -Baileys Crossroa,VA,22041 -Mosby,VA,22042 -Pimmit,VA,22043 -Seven Corners,VA,22044 -Falls Church,VA,22046 -Fort Belvoir,VA,22060 -Gainesville,VA,22065 -Great Falls,VA,22066 -Hamilton,VA,22068 -Haymarket,VA,22069 -Herndon,VA,22070 -Herndon,VA,22071 -Leesburg,VA,22075 -Mason Neck,VA,22079 -Lovettsville,VA,22080 -Lake Anne,VA,22090 -Reston,VA,22091 -Reston,VA,22094 -Mc Lean,VA,22101 -West Mclean,VA,22102 -Manassas,VA,22110 -Manassas Park,VA,22111 -Marshall,VA,22115 -Middleburg,VA,22117 -Nokesville,VA,22123 -Oakton,VA,22124 -Paeonian Springs,VA,22129 -Paris,VA,22130 -Hillsboro,VA,22132 -Quantico,VA,22134 -Round Hill,VA,22141 -Springfield,VA,22150 -North Springfiel,VA,22151 -West Springfield,VA,22152 -Springfield,VA,22153 -Sterling,VA,22170 -The Plains,VA,22171 -Triangle,VA,22172 -Upperville,VA,22176 -Vienna,VA,22180 -Vienna,VA,22181 -Vienna,VA,22182 -Airlie,VA,22186 -Waterford,VA,22190 -Woodbridge,VA,22191 -Lakeridge,VA,22192 -Dale City,VA,22193 -Arlington,VA,22201 -Arlington,VA,22202 -Arlington,VA,22203 -Arlington,VA,22204 -Arlington,VA,22205 -Arlington,VA,22206 -Arlington,VA,22207 -Arlington,VA,22209 -Arlington,VA,22211 -Arlington,VA,22213 -Alexandria,VA,22301 -Alexandria,VA,22302 -Jefferson Manor,VA,22303 -Alexandria,VA,22304 -Alexandria,VA,22305 -Community,VA,22306 -Belle View,VA,22307 -Wellington,VA,22308 -Engleside,VA,22309 -Franconia,VA,22310 -Alexandria,VA,22311 -Alexandria,VA,22312 -Alexandria,VA,22314 -Fredericksburg,VA,22401 -Falmouth,VA,22405 -Fredericksburg,VA,22406 -Fredericksburg,VA,22407 -Fredericksburg,VA,22408 -Bowling Green,VA,22427 -Burgess,VA,22432 -Burr Hill,VA,22433 -Callao,VA,22435 -Caret,VA,22436 -Center Cross,VA,22437 -Champlain,VA,22438 -Chance,VA,22439 -Oak Grove,VA,22443 -Dahlgren,VA,22448 -Howertons,VA,22454 -Farnham,VA,22460 -Hague,VA,22469 -Heathsville,VA,22473 -Hustle,VA,22476 -Irvington,VA,22480 -Kilmarnock,VA,22482 -King George,VA,22485 -Kinsale,VA,22488 -Lancaster,VA,22503 -Laneview,VA,22504 -Locust Grove,VA,22508 -Loretto,VA,22509 -Lottsburg,VA,22511 -Milford,VA,22514 -Montross,VA,22520 -Partlow,VA,22534 -Port Royal,VA,22535 -Rappahannock Aca,VA,22538 -Reedville,VA,22539 -Rhoadesville,VA,22542 -Ruther Glen,VA,22546 -Snell,VA,22553 -Stafford,VA,22554 -Supply,VA,22559 -Tappahannock,VA,22560 -Unionville,VA,22567 -Mine Run,VA,22568 -Nomini Grove,VA,22572 -Weems,VA,22576 -Windmill Point,VA,22578 -Wicomico Church,VA,22579 -Woodford,VA,22580 -Winchester,VA,22601 -Browntown,VA,22610 -Berryville,VA,22611 -Boyce,VA,22620 -Clear Brook,VA,22624 -Whitacre,VA,22625 -Flint Hill,VA,22627 -Front Royal,VA,22630 -Gore,VA,22637 -Hume,VA,22639 -Huntly,VA,22640 -Lebanon Church,VA,22641 -Linden,VA,22642 -Markham,VA,22643 -Maurertown,VA,22644 -Middletown,VA,22645 -Reliance,VA,22649 -Rileyville,VA,22650 -Saint Davids Chu,VA,22652 -Star Tannery,VA,22654 -Stephens City,VA,22655 -Stephenson,VA,22656 -Strasburg,VA,22657 -Toms Brook,VA,22660 -White Post,VA,22663 -Woodstock,VA,22664 -Raccoon Ford,VA,22701 -Aroda,VA,22709 -Morrisville,VA,22712 -Boston,VA,22713 -Brandy Station,VA,22714 -Brightwood,VA,22715 -Castleton,VA,22716 -Elkwood,VA,22718 -Etlan,VA,22719 -Goldvein,VA,22720 -Haywood,VA,22722 -Jeffersonton,VA,22724 -Leon,VA,22725 -Lignum,VA,22726 -Aylor,VA,22727 -Midland,VA,22728 -Mitchells,VA,22729 -Pratts,VA,22731 -Radiant,VA,22732 -Rapidan,VA,22733 -Remington,VA,22734 -Reva,VA,22735 -Richardsville,VA,22736 -Rixeyville,VA,22737 -Uno,VA,22738 -Sperryville,VA,22740 -Stevensburg,VA,22741 -Sumerduck,VA,22742 -Syria,VA,22743 -Viewtown,VA,22746 -Washington,VA,22747 -Woodville,VA,22749 -Harrisonburg,VA,22801 -Basye,VA,22810 -Bergton,VA,22811 -Bridgewater,VA,22812 -Broadway,VA,22815 -Criders,VA,22820 -Montezuma,VA,22821 -Edinburg,VA,22824 -Elkton,VA,22827 -Fulks Run,VA,22830 -Hinton,VA,22831 -Keezletown,VA,22832 -Linville,VA,22834 -Luray,VA,22835 -Mc Gaheysville,VA,22840 -Mount Crawford,VA,22841 -Conicville,VA,22842 -Mount Solon,VA,22843 -New Market,VA,22844 -Orkney Springs,VA,22845 -Montevideo,VA,22846 -Shenandoah Caver,VA,22847 -Shenandoah,VA,22849 -Stanley,VA,22851 -Timberville,VA,22853 -Charlottesville,VA,22901 -University,VA,22903 -Afton,VA,22920 -Tye River,VA,22922 -Burnleys,VA,22923 -Cobham,VA,22929 -Covesville,VA,22931 -Yancey Mills,VA,22932 -Boonesville,VA,22935 -Earlysville,VA,22936 -Esmont,VA,22937 -Faber,VA,22938 -Woodrow Wilson,VA,22939 -Mission Home,VA,22940 -Cashs Corner,VA,22942 -Greenwood,VA,22943 -Keene,VA,22946 -Boyd Tavern,VA,22947 -Locust Dale,VA,22948 -Lovingston,VA,22949 -Lowesville,VA,22951 -Sherando,VA,22952 -Wintergreen,VA,22958 -Alberene,VA,22959 -Montford,VA,22960 -Bybee,VA,22963 -Piney River,VA,22964 -Roseland,VA,22967 -Advance Mills,VA,22968 -Schuyler,VA,22969 -Rockfish,VA,22971 -Somerset,VA,22972 -Geer,VA,22973 -Troy,VA,22974 -Waynesboro,VA,22980 -Amelia Court Hou,VA,23002 -Arvonia,VA,23004 -Ashland,VA,23005 -Aylett,VA,23009 -Barhamsville,VA,23011 -23013,VA,23013 -Beaverdam,VA,23015 -Beaverlett,VA,23016 -23020,VA,23020 -Bohannon,VA,23021 -Bremo Bluff,VA,23022 -Bruington,VA,23023 -Bumpass,VA,23024 -Miles,VA,23025 -Tamworth,VA,23027 -Cauthornville,VA,23029 -Charles City,VA,23030 -Church View,VA,23032 -Cologne,VA,23037 -Columbia,VA,23038 -Crozier,VA,23039 -Cumberland,VA,23040 -23042,VA,23042 -Deltaville,VA,23043 -Diggs,VA,23045 -Doswell,VA,23047 -Dutton,VA,23050 -Fork Union,VA,23055 -Glen Allen,VA,23060 -Pinero,VA,23061 -Gloucester Point,VA,23062 -Goochland,VA,23063 -Gum Spring,VA,23065 -Gwynn,VA,23066 -Hanover,VA,23069 -Hardyville,VA,23070 -Hartfield,VA,23071 -Hayes,VA,23072 -Highland Springs,VA,23075 -Jamaica,VA,23079 -James Store,VA,23080 -Jetersville,VA,23083 -Kents Store,VA,23084 -King And Queen C,VA,23085 -King William,VA,23086 -Lanexa,VA,23089 -Little Plymouth,VA,23091 -Locust Hill,VA,23092 -Louisa,VA,23093 -Dabneys,VA,23102 -Manakin Sabot,VA,23103 -Manquin,VA,23106 -Mascot,VA,23108 -Mathews,VA,23109 -Shanghai,VA,23110 -Mechanicsville,VA,23111 -Midlothian,VA,23112 -Midlothian,VA,23113 -23114,VA,23114 -Mineral,VA,23117 -Mobjack,VA,23118 -Moon,VA,23119 -Moseley,VA,23120 -New Canton,VA,23123 -New Kent,VA,23124 -New Point,VA,23125 -Newtown,VA,23126 -North,VA,23128 -Oilville,VA,23129 -Onemo,VA,23130 -23137,VA,23137 -Bavon,VA,23138 -Powhatan,VA,23139 -Providence Forge,VA,23140 -Quinton,VA,23141 -Rockville,VA,23146 -Indian Neck,VA,23148 -Saluda,VA,23149 -Sandston,VA,23150 -Sandy Hook,VA,23153 -Plain View,VA,23156 -23157,VA,23157 -Stevensville,VA,23161 -Shadow,VA,23163 -Toano,VA,23168 -Syringa,VA,23169 -Remlik,VA,23175 -Wake,VA,23176 -Walkerton,VA,23177 -Warner,VA,23179 -Water View,VA,23180 -West Point,VA,23181 -Merrimac,VA,23185 -Williamsburg,VA,23188 -Montpelier,VA,23192 -Richmond,VA,23219 -Richmond,VA,23220 -Richmond,VA,23221 -Richmond,VA,23222 -Richmond,VA,23223 -Richmond,VA,23224 -Richmond,VA,23225 -Richmond,VA,23226 -Bellevue,VA,23227 -Lakeside,VA,23228 -Regency,VA,23229 -West End,VA,23230 -Richmond,VA,23231 -Ridge,VA,23233 -Ampthill,VA,23234 -Bon Air,VA,23235 -Richmond,VA,23236 -Richmond,VA,23237 -Richmond,VA,23294 -Accomac,VA,23301 -Assawoman,VA,23302 -Belle Haven,VA,23306 -Birdsnest,VA,23307 -Bloxom,VA,23308 -Cape Charles,VA,23310 -Carrollton,VA,23314 -Carrsville,VA,23315 -Chesapeake,VA,23320 -Bowers Hill,VA,23321 -Fentress,VA,23322 -Chesapeake,VA,23323 -Chesapeake,VA,23324 -Chesapeake,VA,23325 -Chincoteague,VA,23336 -Wallops Island,VA,23337 -Exmore,VA,23350 -Franktown,VA,23354 -Greenbackville,VA,23356 -Greenbush,VA,23357 -Hallwood,VA,23359 -Horntown,VA,23395 -Horsey,VA,23396 -Jenkins Bridge,VA,23399 -Locustville,VA,23404 -Machipongo,VA,23405 -Mappsville,VA,23407 -Mears,VA,23409 -Melfa,VA,23410 -New Church,VA,23415 -Oak Hall,VA,23416 -Onancock,VA,23417 -Onley,VA,23418 -Painter,VA,23420 -Parksley,VA,23421 -Sanford,VA,23426 -Smithfield,VA,23430 -Suffolk,VA,23432 -Suffolk,VA,23433 -Suffolk,VA,23434 -Suffolk,VA,23435 -Suffolk,VA,23436 -Suffolk,VA,23437 -Suffolk,VA,23438 -Tangier,VA,23440 -Temperanceville,VA,23442 -Virginia Beach,VA,23451 -Virginia Beach,VA,23452 -Virginia Beach,VA,23454 -Virginia Beach,VA,23455 -Virginia Beach,VA,23456 -Blackwater Bridg,VA,23457 -Virginia Beach,VA,23459 -Virginia Beach,VA,23462 -Virginia Beach,VA,23464 -Walters,VA,23481 -Windsor,VA,23487 -Norfolk,VA,23502 -Norfolk,VA,23503 -Norfolk,VA,23504 -Norfolk,VA,23505 -Norfolk,VA,23507 -Norfolk,VA,23508 -Norfolk,VA,23509 -Norfolk,VA,23510 -Fleet,VA,23511 -Norfolk,VA,23513 -Norfolk,VA,23517 -Norfolk,VA,23518 -Naval Amphibious,VA,23521 -Norfolk,VA,23523 -Newport News,VA,23601 -Newport News,VA,23602 -Newport News,VA,23603 -Newport News,VA,23604 -Newport News,VA,23605 -Newport News,VA,23606 -Newport News,VA,23607 -Hampton,VA,23651 -Hampton,VA,23661 -Poquoson,VA,23662 -Hampton,VA,23663 -Hampton,VA,23664 -Hampton,VA,23665 -Hampton,VA,23666 -Hampton,VA,23669 -Yorktown,VA,23690 -Grafton,VA,23692 -Tabb,VA,23693 -Seaford,VA,23696 -Portsmouth,VA,23701 -Portsmouth,VA,23702 -Portsmouth,VA,23703 -Portsmouth,VA,23704 -Portsmouth,VA,23707 -Portsmouth,VA,23709 -Fort Lee,VA,23801 -Ettrick,VA,23803 -Petersburg,VA,23805 -Alberta,VA,23821 -Blackstone,VA,23824 -Boykins,VA,23827 -Branchville,VA,23828 -Capron,VA,23829 -Carson,VA,23830 -Chester,VA,23831 -Chesterfield,VA,23832 -Church Road,VA,23833 -Colonial Heights,VA,23834 -Courtland,VA,23837 -Dendron,VA,23839 -Dewitt,VA,23840 -Dinwiddie,VA,23841 -Disputanta,VA,23842 -Dolphin,VA,23843 -Drewryville,VA,23844 -Ebony,VA,23845 -Elberon,VA,23846 -Emporia,VA,23847 -Ammon,VA,23850 -Franklin,VA,23851 -Freeman,VA,23856 -Gasburg,VA,23857 -Handsom,VA,23859 -Hopewell,VA,23860 -Ivor,VA,23866 -Jarratt,VA,23867 -Triplet,VA,23868 -Mc Kenney,VA,23872 -Newsoms,VA,23874 -Prince George,VA,23875 -Rawlings,VA,23876 -Sedley,VA,23878 -Skippers,VA,23879 -Spring Grove,VA,23881 -Stony Creek,VA,23882 -Surry,VA,23883 -Sutherland,VA,23885 -Valentines,VA,23887 -Wakefield,VA,23888 -Warfield,VA,23889 -Waverly,VA,23890 -White Plains,VA,23893 -Wilsons,VA,23894 -Yale,VA,23897 -Zuni,VA,23898 -Farmville,VA,23901 -Baskerville,VA,23915 -Boydton,VA,23917 -Bracey,VA,23919 -Brodnax,VA,23920 -Buckingham,VA,23921 -Burkeville,VA,23922 -Charlotte Court,VA,23923 -Chase City,VA,23924 -Clarksville,VA,23927 -Crewe,VA,23930 -Cullen,VA,23934 -Sprouses Corner,VA,23936 -Drakes Branch,VA,23937 -Dundas,VA,23938 -Green Bay,VA,23942 -Kenbridge,VA,23944 -Keysville,VA,23947 -Blackridge,VA,23950 -Lunenburg,VA,23952 -Meherrin,VA,23954 -Pamplin,VA,23958 -Phenix,VA,23959 -Prospect,VA,23960 -Randolph,VA,23962 -Red House,VA,23963 -Red Oak,VA,23964 -Rice,VA,23966 -Saxe,VA,23967 -Skipwith,VA,23968 -South Hill,VA,23970 -23973,VA,23973 -Victoria,VA,23974 -Wylliesburg,VA,23976 -Roanoke,VA,24011 -Roanoke,VA,24012 -Roanoke,VA,24013 -Roanoke,VA,24014 -Roanoke,VA,24015 -Roanoke,VA,24016 -Roanoke,VA,24017 -Cave Spring,VA,24018 -Hollins,VA,24019 -Ararat,VA,24053 -Axton,VA,24054 -Bassett,VA,24055 -Bent Mountain,VA,24059 -Whitethorne,VA,24060 -Blue Ridge,VA,24064 -Boones Mill,VA,24065 -Lithia,VA,24066 -Callaway,VA,24067 -Cascade,VA,24069 -Catawba,VA,24070 -Simpsons,VA,24072 -Christiansburg,VA,24073 -Claudville,VA,24076 -Cloverdale,VA,24077 -Collinsville,VA,24078 -Copper Hill,VA,24079 -Critz,VA,24082 -Daleville,VA,24083 -Dublin,VA,24084 -Eagle Rock,VA,24085 -Eggleston,VA,24086 -Ironto,VA,24087 -Ferrum,VA,24088 -Fieldale,VA,24089 -Fincastle,VA,24090 -Alum Ridge,VA,24091 -Gladehill,VA,24092 -Glen Lyn,VA,24093 -Goldbond,VA,24094 -Goodview,VA,24095 -Hardy,VA,24101 -Henry,VA,24102 -Huddleston,VA,24104 -Indian Valley,VA,24105 -Martinsville,VA,24112 -Meadows Of Dan,VA,24120 -Moneta,VA,24121 -Montvale,VA,24122 -Narrows,VA,24124 -New Castle,VA,24127 -Newport,VA,24128 -Paint Bank,VA,24131 -Patrick Springs,VA,24133 -Pearisburg,VA,24134 -Mountain Lake,VA,24136 -Penhook,VA,24137 -Pilot,VA,24138 -Pittsville,VA,24139 -Fairlawn,VA,24141 -Rich Creek,VA,24147 -Ridgeway,VA,24148 -Riner,VA,24149 -Ripplemead,VA,24150 -Rocky Mount,VA,24151 -Salem,VA,24153 -Sandy Level,VA,24161 -Shawsville,VA,24162 -Spencer,VA,24165 -Staffordsville,VA,24167 -Stanleytown,VA,24168 -Stuart,VA,24171 -Thaxton,VA,24174 -Troutville,VA,24175 -Union Hall,VA,24176 -Stewartsville,VA,24179 -Wirtz,VA,24184 -Woolwine,VA,24185 -Bristol,VA,24201 -Abingdon,VA,24210 -Exeter,VA,24216 -Bee,VA,24217 -Big Stone Gap,VA,24219 -Birchleaf,VA,24220 -Blackwater,VA,24221 -Castlewood,VA,24224 -Cleveland,VA,24225 -Clinchco,VA,24226 -Clintwood,VA,24228 -Coeburn,VA,24230 -Damascus,VA,24236 -Dante,VA,24237 -Davenport,VA,24239 -Dryden,VA,24243 -Clinchport,VA,24244 -Dungannon,VA,24245 -Ewing,VA,24248 -Fort Blackmore,VA,24250 -Gate City,VA,24251 -Haysi,VA,24256 -Hiltons,VA,24258 -Council,VA,24260 -Jonesville,VA,24263 -Keokee,VA,24265 -Lebanon,VA,24266 -Mc Clure,VA,24269 -Mendota,VA,24270 -Nickelsville,VA,24271 -Nora,VA,24272 -Norton,VA,24273 -Pennington Gap,VA,24277 -Pound,VA,24279 -Rosedale,VA,24280 -Rose Hill,VA,24281 -Saint Charles,VA,24282 -Saint Paul,VA,24283 -Stonega,VA,24285 -Trammel,VA,24289 -Weber City,VA,24290 -Whitetop,VA,24292 -Wise,VA,24293 -Pulaski,VA,24301 -Atkins,VA,24311 -Austinville,VA,24312 -Barren Springs,VA,24313 -Bastian,VA,24314 -Bland,VA,24315 -Broadford,VA,24316 -Cana,VA,24317 -Ceres,VA,24318 -Chilhowie,VA,24319 -Cripple Creek,VA,24322 -Crockett,VA,24323 -Draper,VA,24324 -Dugspur,VA,24325 -Elk Creek,VA,24326 -Fancy Gap,VA,24328 -24329,VA,24329 -Fries,VA,24330 -Galax,VA,24333 -Glade Spring,VA,24340 -Hillsville,VA,24343 -Allisonia,VA,24347 -Independence,VA,24348 -Ivanhoe,VA,24350 -Lambsburg,VA,24351 -Laurel Fork,VA,24352 -Marion,VA,24354 -Foster Falls,VA,24360 -Meadowview,VA,24361 -Mouth Of Wilson,VA,24363 -Rocky Gap,VA,24366 -Rural Retreat,VA,24368 -Saltville,VA,24370 -Seven Mile Ford,VA,24373 -Speedwell,VA,24374 -Sugar Grove,VA,24375 -Tannersville,VA,24377 -Trout Dale,VA,24378 -Willis,VA,24380 -Woodlawn,VA,24381 -Wytheville,VA,24382 -Woodrum,VA,24401 -Blue Grass,VA,24413 -Buena Vista,VA,24416 -Churchville,VA,24421 -Clifton Forge,VA,24422 -Alleghany,VA,24426 -Craigsville,VA,24430 -Crimora,VA,24431 -Deerfield,VA,24432 -Doe Hill,VA,24433 -Fairfield,VA,24435 -Fort Defiance,VA,24437 -Goshen,VA,24439 -Greenville,VA,24440 -Grottoes,VA,24441 -Head Waters,VA,24442 -Hightown,VA,24444 -Hot Springs,VA,24445 -Lexington,VA,24450 -Mc Dowell,VA,24458 -Middlebrook,VA,24459 -Millboro Spring,VA,24460 -Montebello,VA,24464 -Monterey,VA,24465 -Mount Sidney,VA,24467 -Mustoe,VA,24468 -Port Republic,VA,24471 -Raphine,VA,24472 -Rockbridge Baths,VA,24473 -Spottswood,VA,24475 -Stuarts Draft,VA,24477 -Swoope,VA,24479 -Verona,VA,24482 -Vesuvius,VA,24483 -Bolar,VA,24484 -West Augusta,VA,24485 -Weyers Cave,VA,24486 -Burnsville,VA,24487 -Lynchburg,VA,24501 -Timberlake,VA,24502 -Lynchburg,VA,24503 -Lynchburg,VA,24504 -Altavista,VA,24517 -Alton,VA,24520 -Amherst,VA,24521 -Appomattox,VA,24522 -Bedford,VA,24523 -Big Island,VA,24526 -Blairs,VA,24527 -Brookneal,VA,24528 -Buffalo Junction,VA,24529 -Callands,VA,24530 -Chatham,VA,24531 -Clover,VA,24534 -Coleman Falls,VA,24536 -Concord,VA,24538 -Crystal Hill,VA,24539 -Danville,VA,24540 -Danville,VA,24541 -Dry Fork,VA,24549 -Evington,VA,24550 -Forest,VA,24551 -Gladstone,VA,24553 -Gladys,VA,24554 -Glasgow,VA,24555 -Goode,VA,24556 -Gretna,VA,24557 -Halifax,VA,24558 -Howardsville,VA,24562 -Hurt,VA,24563 -Java,VA,24565 -Keeling,VA,24566 -Long Island,VA,24569 -Lowry,VA,24570 -Lynch Station,VA,24571 -Madison Heights,VA,24572 -Monroe,VA,24574 -Lennig,VA,24577 -Natural Bridge,VA,24578 -Natural Bridge S,VA,24579 -Nelson,VA,24580 -Ringgold,VA,24586 -Rustburg,VA,24588 -Scottsburg,VA,24589 -Scottsville,VA,24590 -South Boston,VA,24592 -Spout Spring,VA,24593 -Sutherlin,VA,24594 -Ingram,VA,24597 -Virgilina,VA,24598 -Wingina,VA,24599 -Bandy,VA,24602 -Conaway,VA,24603 -Bluefield,VA,24605 -Cedar Bluff,VA,24609 -Falls Mills,VA,24613 -Grundy,VA,24614 -Hurley,VA,24620 -Jewell Valley,VA,24622 -Mavisdale,VA,24627 -Tiptop,VA,24630 -Patterson,VA,24631 -24633,VA,24633 -Pilgrims Knob,VA,24634 -Pounding Mill,VA,24637 -Raven,VA,24639 -Richlands,VA,24641 -Rowe,VA,24646 -Swords Creek,VA,24649 -Tazewell,VA,24651 -Vansant,VA,24656 -Whitewood,VA,24657 -Algona,WA,98001 -Auburn,WA,98002 -Federal Way,WA,98003 -Beaux Arts,WA,98004 -Bellevue,WA,98005 -Bellevue,WA,98006 -Bellevue,WA,98007 -Bellevue,WA,98008 -Black Diamond,WA,98010 -Bothell,WA,98011 -Mill Creek,WA,98012 -Carnation,WA,98014 -Duvall,WA,98019 -Woodway,WA,98020 -Bothell,WA,98021 -Enumclaw,WA,98022 -Federal Way,WA,98023 -Fall City,WA,98024 -Edmonds,WA,98026 -Issaquah,WA,98027 -Kent,WA,98031 -Kent,WA,98032 -Kirkland,WA,98033 -Kirkland,WA,98034 -Brier,WA,98036 -Lynnwood,WA,98037 -Maple Valley,WA,98038 -Mercer Island,WA,98040 -Kent,WA,98042 -Mountlake Terrac,WA,98043 -North Bend,WA,98045 -Pacific,WA,98047 -Ravensdale,WA,98051 -Redmond,WA,98052 -Redmond,WA,98053 -Renton,WA,98055 -Renton,WA,98056 -Renton,WA,98058 -Renton,WA,98059 -Snoqualmie,WA,98065 -Vashon,WA,98070 -Woodinville,WA,98072 -Seattle,WA,98101 -Seattle,WA,98102 -Seattle,WA,98103 -Seattle,WA,98104 -Seattle,WA,98105 -Seattle,WA,98106 -Seattle,WA,98107 -Tukwila,WA,98108 -Seattle,WA,98109 -Bainbridge Islan,WA,98110 -Seattle,WA,98112 -Seattle,WA,98115 -Seattle,WA,98116 -Seattle,WA,98117 -Seattle,WA,98118 -Seattle,WA,98119 -Seattle,WA,98121 -Seattle,WA,98122 -Seattle,WA,98125 -Seattle,WA,98126 -Seattle,WA,98133 -Seattle,WA,98134 -Seattle,WA,98136 -Seattle,WA,98144 -Burien,WA,98146 -Normandy Park,WA,98148 -Lk Forest Park,WA,98155 -Seatac,WA,98158 -Normandy Park,WA,98166 -Tukwila,WA,98168 -Seattle,WA,98177 -Tukwila,WA,98178 -Tukwila,WA,98188 -Des Moines,WA,98198 -Seattle,WA,98199 -Everett,WA,98201 -Everett,WA,98203 -Everett,WA,98204 -Everett,WA,98205 -Everett,WA,98208 -Acme,WA,98220 -Anacortes,WA,98221 -Arlington,WA,98223 -Baring,WA,98224 -Bellingham,WA,98225 -Bellingham,WA,98226 -Blaine,WA,98230 -Bow,WA,98232 -Burlington,WA,98233 -Clinton,WA,98236 -Concrete,WA,98237 -Coupeville,WA,98239 -Custer,WA,98240 -Darrington,WA,98241 -Glacier,WA,98244 -Eastsound,WA,98245 -Everson,WA,98247 -Ferndale,WA,98248 -Freeland,WA,98249 -Friday Harbor,WA,98250 -Granite Falls,WA,98252 -Greenbank,WA,98253 -La Conner,WA,98257 -Lake Stevens,WA,98258 -Langley,WA,98260 -Lopez,WA,98261 -Lummi Island,WA,98262 -Lyman,WA,98263 -Lynden,WA,98264 -Marysville,WA,98270 -Marysville,WA,98271 -Monroe,WA,98272 -Mount Vernon,WA,98273 -Mukilteo,WA,98275 -Oak Harbor,WA,98277 -Whidbey Island N,WA,98278 -Olga,WA,98279 -Point Roberts,WA,98281 -Rockport,WA,98283 -Sedro Woolley,WA,98284 -Skykomish,WA,98288 -Snohomish,WA,98290 -Stanwood,WA,98292 -Sultan,WA,98294 -Sumas,WA,98295 -Anderson Island,WA,98303 -Ashford,WA,98304 -Beaver,WA,98305 -Bremerton,WA,98310 -Bremerton,WA,98312 -Puget Sound Nava,WA,98314 -Silverdale,WA,98315 -Brinnon,WA,98320 -Buckley,WA,98321 -Carbonado,WA,98323 -Chimacum,WA,98325 -Clallam Bay,WA,98326 -Eatonville,WA,98328 -Gig Harbor,WA,98329 -Elbe,WA,98330 -Forks,WA,98331 -Gig Harbor,WA,98332 -Fox Island,WA,98333 -Gig Harbor,WA,98335 -Glenoma,WA,98336 -Graham,WA,98338 -Port Hadlock,WA,98339 -Hansville,WA,98340 -Kingston,WA,98346 -Home,WA,98349 -Longbranch,WA,98351 -Milton,WA,98354 -Mineral,WA,98355 -Morton,WA,98356 -Nordland,WA,98358 -Olalla,WA,98359 -Orting,WA,98360 -Packwood,WA,98361 -Port Angeles,WA,98362 -Port Ludlow,WA,98365 -South Park Villa,WA,98366 -Port Townsend,WA,98368 -Poulsbo,WA,98370 -Puyallup,WA,98371 -Puyallup,WA,98372 -Puyallup,WA,98373 -Puyallup,WA,98374 -Quilcene,WA,98376 -Randle,WA,98377 -Seabeck,WA,98380 -Sekiu,WA,98381 -Sequim,WA,98382 -Silverdale,WA,98383 -Spanaway,WA,98387 -Steilacoom,WA,98388 -Bonney Lake,WA,98390 -Suquamish,WA,98392 -Vaughn,WA,98394 -Tacoma,WA,98402 -Tacoma,WA,98403 -Tacoma,WA,98404 -Tacoma,WA,98405 -Tacoma,WA,98406 -Tacoma,WA,98407 -Tacoma,WA,98408 -Tacoma,WA,98409 -Tacoma,WA,98421 -Tacoma,WA,98422 -Fife,WA,98424 -Fort Lewis,WA,98433 -Lakewood Center,WA,98439 -Tacoma,WA,98443 -Parkland,WA,98444 -Parkland,WA,98445 -Parkland,WA,98446 -Tacoma,WA,98465 -Fircrest,WA,98466 -Tacoma,WA,98467 -Lakewood Center,WA,98498 -Lakewood Center,WA,98499 -Olympia,WA,98501 -Olympia,WA,98502 -Lacey,WA,98503 -Lacey,WA,98506 -Aberdeen,WA,98520 -Allyn,WA,98524 -Amanda Park,WA,98526 -Bear Creek,WA,98528 -Centralia,WA,98531 -Chehalis,WA,98532 -Cinebar,WA,98533 -Copalis Beach,WA,98535 -Copalis Crossing,WA,98536 -Cosmopolis,WA,98537 -Curtis,WA,98538 -Elma,WA,98541 -Ethel,WA,98542 -Grapeview,WA,98546 -Grayland,WA,98547 -Hoodsport,WA,98548 -Hoquiam,WA,98550 -Humptulips,WA,98552 -Lilliwaup,WA,98555 -Mc Cleary,WA,98557 -Matlock,WA,98560 -Moclips,WA,98562 -Montesano,WA,98563 -Mossyrock,WA,98564 -Oakville,WA,98568 -Ocean City,WA,98569 -Onalaska,WA,98570 -Pacific Beach,WA,98571 -Pe Ell,WA,98572 -Quinault,WA,98575 -Rainier,WA,98576 -Raymond,WA,98577 -Rochester,WA,98579 -Roy,WA,98580 -Ryderwood,WA,98581 -Salkum,WA,98582 -Shelton,WA,98584 -Silver Creek,WA,98585 -South Bend,WA,98586 -Taholah,WA,98587 -Tahuya,WA,98588 -Tenino,WA,98589 -Tokeland,WA,98590 -Toledo,WA,98591 -Union,WA,98592 -Vader,WA,98593 -Westport,WA,98595 -Winlock,WA,98596 -Yelm,WA,98597 -Amboy,WA,98601 -Appleton,WA,98602 -Ariel,WA,98603 -Battle Ground,WA,98604 -Cook,WA,98605 -Brush Prairie,WA,98606 -Camas,WA,98607 -Carson,WA,98610 -Castle Rock,WA,98611 -Cathlamet,WA,98612 -Centerville,WA,98613 -Cougar,WA,98616 -Glenwood,WA,98619 -Goldendale,WA,98620 -Grays River,WA,98621 -Ilwaco,WA,98624 -Kalama,WA,98625 -Kelso,WA,98626 -Klickitat,WA,98628 -La Center,WA,98629 -Long Beach,WA,98631 -Longview,WA,98632 -Lyle,WA,98635 -Naselle,WA,98638 -Ocean Park,WA,98640 -Ridgefield,WA,98642 -Rosburg,WA,98643 -Silverlake,WA,98645 -Skamokawa,WA,98647 -Stevenson,WA,98648 -Toutle,WA,98649 -Trout Lake,WA,98650 -Underwood,WA,98651 -Vancouver,WA,98660 -Vancouver,WA,98661 -Orchards,WA,98662 -Vancouver,WA,98663 -Vancouver,WA,98664 -Hazel Dell,WA,98665 -Wahkiacus,WA,98670 -Washougal,WA,98671 -White Salmon,WA,98672 -Woodland,WA,98674 -Yacolt,WA,98675 -Vancouver,WA,98682 -Cascade Park,WA,98684 -Felida,WA,98685 -Vancouver,WA,98686 -Wenatchee,WA,98801 -East Wenatchee,WA,98802 -Brewster,WA,98812 -Bridgeport,WA,98813 -Carlton,WA,98814 -Cashmere,WA,98815 -Chelan,WA,98816 -Entiat,WA,98822 -Ephrata,WA,98823 -Leavenworth,WA,98826 -Loomis,WA,98827 -Malaga,WA,98828 -Mansfield,WA,98830 -Manson,WA,98831 -Marlin,WA,98832 -Mazama,WA,98833 -Methow,WA,98834 -Moses Lake,WA,98837 -Okanogan,WA,98840 -Omak,WA,98841 -Orondo,WA,98843 -Oroville,WA,98844 -Palisades,WA,98845 -Pateros,WA,98846 -Peshastin,WA,98847 -Quincy,WA,98848 -Riverside,WA,98849 -Rock Island,WA,98850 -Soap Lake,WA,98851 -Stehekin,WA,98852 -Tonasket,WA,98855 -Twisp,WA,98856 -Warden,WA,98857 -Waterville,WA,98858 -Wauconda,WA,98859 -Winthrop,WA,98862 -Terrace Heights,WA,98901 -Yakima,WA,98902 -Union Gap,WA,98903 -Wide Hollow,WA,98908 -Cle Elum,WA,98922 -Cowiche,WA,98923 -Ellensburg,WA,98926 -Grandview,WA,98930 -Granger,WA,98932 -Harrah,WA,98933 -Mabton,WA,98935 -Moxee,WA,98936 -White Pass,WA,98937 -Outlook,WA,98938 -Selah,WA,98942 -Sunnyside,WA,98944 -Thorp,WA,98946 -Tieton,WA,98947 -Toppenish,WA,98948 -Wapato,WA,98951 -White Swan,WA,98952 -Zillah,WA,98953 -Chattaroy,WA,99003 -Cheney,WA,99004 -Colbert,WA,99005 -Deer Park,WA,99006 -Edwall,WA,99008 -Elk,WA,99009 -Fairchild Air Fo,WA,99011 -Fairfield,WA,99012 -Ford,WA,99013 -Greenacres,WA,99016 -Lamont,WA,99017 -Latah,WA,99018 -Liberty Lake,WA,99019 -Mead,WA,99021 -Espanola,WA,99022 -Mica,WA,99023 -Newman Lake,WA,99025 -Nine Mile Falls,WA,99026 -Otis Orchards,WA,99027 -Reardan,WA,99029 -Rockford,WA,99030 -Spangle,WA,99031 -Sprague,WA,99032 -Tekoa,WA,99033 -Tumtum,WA,99034 -Valleyford,WA,99036 -Veradale,WA,99037 -Waverly,WA,99039 -Wellpinit,WA,99040 -Addy,WA,99101 -Almira,WA,99103 -Benge,WA,99105 -Boyds,WA,99107 -Chewelah,WA,99109 -Clayton,WA,99110 -Colfax,WA,99111 -Colton,WA,99113 -Colville,WA,99114 -Coulee City,WA,99115 -Coulee Dam,WA,99116 -Creston,WA,99117 -Curlew,WA,99118 -Cusick,WA,99119 -Danville,WA,99121 -Davenport,WA,99122 -Electric City,WA,99123 -Endicott,WA,99125 -Evans,WA,99126 -Farmington,WA,99128 -Fruitland,WA,99129 -Garfield,WA,99130 -Gifford,WA,99131 -Grand Coulee,WA,99133 -Harrington,WA,99134 -Hartline,WA,99135 -Hunters,WA,99137 -Inchelium,WA,99138 -Ione,WA,99139 -Keller,WA,99140 -Kettle Falls,WA,99141 -Lacrosse,WA,99143 -Lincoln,WA,99147 -Loon Lake,WA,99148 -Malo,WA,99150 -Metaline Falls,WA,99153 -Newport,WA,99156 -Northport,WA,99157 -Oakesdale,WA,99158 -Odessa,WA,99159 -Palouse,WA,99161 -Pullman,WA,99163 -Republic,WA,99166 -Rice,WA,99167 -Ritzville,WA,99169 -Rosalia,WA,99170 -Saint John,WA,99171 -Springdale,WA,99173 -Thornton,WA,99176 -Uniontown,WA,99179 -Usk,WA,99180 -Valley,WA,99181 -Wilbur,WA,99185 -Spokane,WA,99201 -Spokane,WA,99202 -Spokane,WA,99203 -Spokane,WA,99204 -Spokane,WA,99205 -Spokane,WA,99206 -Spokane,WA,99207 -Spokane,WA,99208 -Spokane,WA,99212 -Spokane,WA,99216 -Spokane,WA,99218 -Spokane,WA,99223 -Pasco,WA,99301 -Benton City,WA,99320 -Beverly,WA,99321 -Bickleton,WA,99322 -College Place,WA,99324 -Connell,WA,99326 -Cunningham,WA,99327 -Dayton,WA,99328 -Eltopia,WA,99330 -Kennewick,WA,99336 -Kennewick,WA,99337 -Lind,WA,99341 -Mesa,WA,99343 -Mattawa,WA,99344 -Paterson,WA,99345 -Plymouth,WA,99346 -Pomeroy,WA,99347 -Prescott,WA,99348 -Prosser,WA,99350 -Richland,WA,99352 -Roosevelt,WA,99356 -Royal City,WA,99357 -Lowden,WA,99360 -Waitsburg,WA,99361 -Walla Walla,WA,99362 -Washtucna,WA,99371 -Anatone,WA,99401 -Asotin,WA,99402 -Clarkston,WA,99403 -Bluewell,WV,24701 -Athens,WV,24712 -Beeson,WV,24714 -Bramwell,WV,24715 -Herndon,WV,24726 -Kegley,WV,24731 -Lashmeet,WV,24733 -Dott,WV,24736 -Elgood,WV,24740 -Duhring,WV,24747 -Welch,WV,24801 -Mc Dowell,WV,24810 -Brenton,WV,24818 -Vallscreek,WV,24819 -Clear Fork,WV,24822 -Coal Mountain,WV,24823 -Cyclone,WV,24827 -Asco,WV,24828 -Fanrock,WV,24834 -Hanover,WV,24839 -Iaeger,WV,24844 -Jesse,WV,24849 -Jolo,WV,24850 -Marianna,WV,24859 -Matheny,WV,24860 -Mohawk,WV,24862 -Algoma,WV,24868 -North Spring,WV,24869 -Oceana,WV,24870 -Paynesville,WV,24873 -Pineville,WV,24874 -Simon,WV,24882 -Squire,WV,24884 -Lewisburg,WV,24901 -Dawson,WV,24910 -Arbovale,WV,24915 -Asbury,WV,24916 -Auto,WV,24917 -Ballard,WV,24918 -Ballengee,WV,24919 -Bartow,WV,24920 -Bozoo,WV,24923 -Buckeye,WV,24924 -Caldwell,WV,24925 -Stony Bottom,WV,24927 -Clintonville,WV,24928 -Crawley,WV,24931 -Dunmore,WV,24934 -Indian Mills,WV,24935 -Fort Spring,WV,24936 -Anthony,WV,24938 -24939,WV,24939 -Gap Mills,WV,24941 -Glace,WV,24942 -Grassy Meadows,WV,24943 -Green Bank,WV,24944 -Greenville,WV,24945 -Droop,WV,24946 -Kieffer,WV,24950 -Lindside,WV,24951 -Minnehaha Spring,WV,24954 -Maxwelton,WV,24957 -Meadow Bluff,WV,24958 -Pence Springs,WV,24962 -Peterstown,WV,24963 -Renick,WV,24966 -Ronceverte,WV,24970 -Secondcreek,WV,24974 -Pickaway,WV,24976 -Smoot,WV,24977 -Sweet Springs,WV,24980 -Talcott,WV,24981 -Union,WV,24983 -Waiteville,WV,24984 -Wayside,WV,24985 -Neola,WV,24986 -Trout,WV,24991 -Wolfcreek,WV,24993 -Alum Creek,WV,25003 -Ameagle,WV,25004 -Amma,WV,25005 -Arnett,WV,25007 -Artie,WV,25008 -Ashford,WV,25009 -Bald Knob,WV,25010 -Barrett,WV,25013 -Diamond,WV,25015 -Bentree,WV,25018 -Fola,WV,25019 -Bim,WV,25021 -Bloomingrose,WV,25024 -Blount,WV,25025 -Bob White,WV,25028 -Bomont,WV,25030 -Buffalo,WV,25033 -Burnwell,WV,25034 -Cabin Creek,WV,25035 -Cedar Grove,WV,25039 -Clay,WV,25043 -Clear Creek,WV,25044 -Quick,WV,25045 -Clio,WV,25046 -Clothier,WV,25047 -Colcord,WV,25048 -Comfort,WV,25049 -Costa,WV,25051 -Danville,WV,25053 -Dixie,WV,25059 -Dorothy,WV,25060 -Dry Creek,WV,25062 -Duck,WV,25063 -Dunbar,WV,25064 -Frame,WV,25071 -Falling Rock,WV,25079 -Foster,WV,25081 -Fraziers Bottom,WV,25082 -Whittaker,WV,25083 -Gauley Bridge,WV,25085 -Glen,WV,25088 -Gordon,WV,25093 -Hansford,WV,25103 -Harrison,WV,25105 -Henderson,WV,25106 -Hernshaw,WV,25107 -Hewett,WV,25108 -Indore,WV,25111 -Big Otter,WV,25113 -Ramage,WV,25114 -Kanawha Falls,WV,25115 -Kimberly,WV,25118 -Kincaid,WV,25119 -Lake,WV,25121 -Carbon,WV,25122 -Arbuckle,WV,25123 -Liberty,WV,25124 -Lizemores,WV,25125 -Madison,WV,25130 -Mammoth,WV,25132 -Maysel,WV,25133 -Montgomery,WV,25136 -Mount Carbon,WV,25139 -Naoma,WV,25140 -Nebo,WV,25141 -Nellis,WV,25142 -Nitro,WV,25143 -Orgas,WV,25148 -Ovapa,WV,25150 -Peytona,WV,25154 -Pliny,WV,25158 -Lanham,WV,25159 -Pond Gap,WV,25160 -Powellton,WV,25161 -Williams Mountai,WV,25163 -Pigeon,WV,25164 -Racine,WV,25165 -Red House,WV,25168 -Ridgeview,WV,25169 -Robertsburg,WV,25172 -Robson,WV,25173 -Rock Creek,WV,25174 -Saint Albans,WV,25177 -Saxon,WV,25180 -Seth,WV,25181 -Southside,WV,25187 -Stickney,WV,25189 -Sylvester,WV,25193 -Tornado,WV,25202 -Turtle Creek,WV,25203 -Bandytown,WV,25204 -Van,WV,25206 -Garrison,WV,25209 -Winfield,WV,25213 -Winifrede,WV,25214 -Advent,WV,25231 -Arnoldsburg,WV,25234 -Floe,WV,25235 -Cottageville,WV,25239 -Evans,WV,25241 -25242,WV,25242 -Gandeeville,WV,25243 -Gay,WV,25244 -Given,WV,25245 -Harmony,WV,25246 -Romance,WV,25248 -Kentuck,WV,25249 -Left Hand,WV,25251 -Duncan,WV,25252 -Letart,WV,25253 -Letter Gap,WV,25255 -Linden,WV,25256 -Lockney,WV,25258 -Looneyville,WV,25259 -Mason,WV,25260 -Millstone,WV,25261 -Millwood,WV,25262 -Mount Alto,WV,25264 -Uler,WV,25266 -Normantown,WV,25267 -Minnora,WV,25268 -Reedy,WV,25270 -Ripley,WV,25271 -Rock Castle,WV,25272 -Sand Ridge,WV,25274 -Sandyville,WV,25275 -Spencer,WV,25276 -Statts Mills,WV,25279 -Stumptown,WV,25280 -Tariff,WV,25281 -Valley Fork,WV,25283 -Wallback,WV,25285 -Walton,WV,25286 -West Columbia,WV,25287 -Charleston,WV,25301 -Big Chimney,WV,25302 -South Charleston,WV,25303 -Charleston,WV,25304 -Malden,WV,25306 -South Charleston,WV,25309 -Charleston,WV,25311 -Charleston,WV,25312 -Cross Lanes,WV,25313 -Charleston,WV,25314 -Marmet,WV,25315 -Sissonville,WV,25320 -Martinsburg,WV,25401 -Hancock,WV,25411 -Bunker Hill,WV,25413 -Charles Town,WV,25414 -Falling Waters,WV,25419 -Gerrardstown,WV,25420 -Great Cacapon,WV,25422 -Harpers Ferry,WV,25425 -Cherry Run,WV,25427 -Inwood,WV,25428 -Kearneysville,WV,25430 -Levels,WV,25431 -Paw Paw,WV,25434 -Points,WV,25437 -Ranson,WV,25438 -Shenandoah Junct,WV,25442 -Shepherdstown,WV,25443 -Slanesville,WV,25444 -Summit Point,WV,25446 -Alkol,WV,25501 -Apple Grove,WV,25502 -Ashton,WV,25503 -Barboursville,WV,25504 -Big Creek,WV,25505 -Branchland,WV,25506 -Chapmanville,WV,25508 -Culloden,WV,25510 -Dunlow,WV,25511 -East Lynn,WV,25512 -Fort Gay,WV,25514 -Gallipolis Ferry,WV,25515 -Radnor,WV,25517 -Glenwood,WV,25520 -Griffithsville,WV,25521 -Hamlin,WV,25523 -Ferrellsburg,WV,25524 -Hurricane,WV,25526 -Julian,WV,25529 -Kenova,WV,25530 -Cove Gap,WV,25534 -Lavalette,WV,25535 -25536,WV,25536 -Lesage,WV,25537 -Midkiff,WV,25540 -Milton,WV,25541 -Myra,WV,25544 -Ona,WV,25545 -Palermo,WV,25546 -Pecks Mill,WV,25547 -Point Pleasant,WV,25550 -Prichard,WV,25555 -Ranger,WV,25557 -Salt Rock,WV,25559 -Scott Depot,WV,25560 -Sias,WV,25563 -Sod,WV,25564 -Morrisvale,WV,25565 -Sumerco,WV,25567 -Sweetland,WV,25568 -Wayne,WV,25570 -West Hamlin,WV,25571 -Woodville,WV,25572 -Yawkey,WV,25573 -West Logan,WV,25601 -Robinette,WV,25607 -Baisden,WV,25608 -Davin,WV,25617 -Gilbert,WV,25621 -Hampden,WV,25623 -Earling,WV,25632 -Hunt,WV,25635 -Barnabus,WV,25638 -Verner,WV,25650 -Wharncliffe,WV,25651 -Dehue,WV,25654 -Williamson,WV,25661 -Breeden,WV,25666 -Crum,WV,25669 -Myrtle,WV,25670 -Dingess,WV,25671 -Kermit,WV,25674 -Lenore,WV,25676 -Lobata,WV,25678 -Meador,WV,25682 -Thacker,WV,25694 -Wilsondale,WV,25699 -Huntington,WV,25701 -Huntington,WV,25702 -Huntington,WV,25703 -Huntington,WV,25704 -Huntington,WV,25705 -Beckley,WV,25801 -Amigo,WV,25811 -Ansted,WV,25812 -Beaver,WV,25813 -Bolt,WV,25817 -Camp Creek,WV,25820 -Cool Ridge,WV,25825 -Crab Orchard,WV,25827 -Clifftop,WV,25831 -Daniels,WV,25832 -Edmond,WV,25837 -Fairdale,WV,25839 -Cunard,WV,25840 -Flat Top,WV,25841 -Ghent,WV,25843 -Glen Daniel,WV,25844 -Glen Fork,WV,25845 -Sullivan,WV,25847 -Glen Rogers,WV,25848 -Hico,WV,25854 -Josephine,WV,25857 -Lansing,WV,25862 -Lawton,WV,25864 -Lester,WV,25865 -Lookout,WV,25868 -Maben,WV,25870 -Saulsville,WV,25876 -Mount Hope,WV,25880 -Mullens,WV,25882 -Harvey,WV,25901 -Odd,WV,25902 -Winding Gulf,WV,25908 -Ramsey,WV,25912 -Ravencliff,WV,25913 -East Gulf,WV,25915 -Scarbro,WV,25917 -Abraham,WV,25918 -Slab Fork,WV,25920 -Spanishburg,WV,25922 -Stephenson,WV,25928 -Surveyor,WV,25932 -Thurmond,WV,25936 -Victor,WV,25938 -Hinton,WV,25951 -Charmco,WV,25958 -Rainelle,WV,25962 -Elton,WV,25965 -Green Sulphur Sp,WV,25966 -Streeter,WV,25969 -Lerona,WV,25971 -Meadow Bridge,WV,25976 -Meadow Creek,WV,25977 -Nimitz,WV,25978 -Pipestem,WV,25979 -Marfrance,WV,25981 -Kessler,WV,25984 -Sandstone,WV,25985 -Spring Dale,WV,25986 -True,WV,25988 -White Oak,WV,25989 -Elm Grove,WV,26003 -Benwood,WV,26031 -Bethany,WV,26032 -Cameron,WV,26033 -Chester,WV,26034 -Colliers,WV,26035 -Dallas,WV,26036 -Follansbee,WV,26037 -Glen Dale,WV,26038 -Glen Easton,WV,26039 -Mc Mechen,WV,26040 -Moundsville,WV,26041 -New Cumberland,WV,26047 -Newell,WV,26050 -Proctor,WV,26055 -Triadelphia,WV,26059 -Valley Grove,WV,26060 -Weirton,WV,26062 -Wellsburg,WV,26070 -Parkersburg,WV,26101 -North Parkersbur,WV,26104 -Vienna,WV,26105 -Belleville,WV,26133 -Willow Island,WV,26134 -Bens Run,WV,26135 -Big Bend,WV,26136 -Nobe,WV,26137 -Brohard,WV,26138 -Creston,WV,26141 -Davisville,WV,26142 -Elizabeth,WV,26143 -Five Forks,WV,26145 -Friendly,WV,26146 -Grantsville,WV,26147 -Macfarlan,WV,26148 -Middlebourne,WV,26149 -Mineralwells,WV,26150 -Mount Zion,WV,26151 -Munday,WV,26152 -Murraysville,WV,26153 -New Martinsville,WV,26155 -Paden City,WV,26159 -Palestine,WV,26160 -Petroleum,WV,26161 -Ravenswood,WV,26164 -Reader,WV,26167 -Rockport,WV,26169 -Saint Marys,WV,26170 -Sherman,WV,26173 -Sistersville,WV,26175 -Smithville,WV,26178 -Tanner,WV,26179 -Walker,WV,26180 -New England,WV,26181 -Waverly,WV,26184 -Wick,WV,26185 -Wileyville,WV,26186 -Williamstown,WV,26187 -Tennerton,WV,26201 -Fenwick,WV,26202 -Erbacon,WV,26203 -Craigsville,WV,26205 -Cowen,WV,26206 -Gauley Mills,WV,26208 -Adrian,WV,26210 -Century,WV,26214 -Cleveland,WV,26215 -Diana,WV,26217 -Alexander,WV,26218 -Replete,WV,26222 -Helvetia,WV,26224 -Kanawha Head,WV,26228 -Pickens,WV,26230 -Rock Cave,WV,26234 -Selbyville,WV,26236 -Tallmansville,WV,26237 -Volga,WV,26238 -Elkins,WV,26241 -Belington,WV,26250 -Beverly,WV,26253 -Wymer,WV,26254 -Coalton,WV,26257 -Davis,WV,26260 -Richwood,WV,26261 -Dryfork,WV,26263 -Durbin,WV,26264 -Upperglade,WV,26266 -Ellamore,WV,26267 -Glady,WV,26268 -Hambleton,WV,26269 -Harman,WV,26270 -Hendricks,WV,26271 -Huttonsville,WV,26273 -Kerens,WV,26276 -Mabie,WV,26278 -Mill Creek,WV,26280 -Monterville,WV,26282 -Montrose,WV,26283 -Parsons,WV,26287 -Bolair,WV,26288 -Red Creek,WV,26289 -Slatyfork,WV,26291 -Thomas,WV,26292 -Valley Bend,WV,26293 -Mingo,WV,26294 -Job,WV,26296 -Boggs,WV,26299 -Nutter Fort Ston,WV,26301 -Wilbur,WV,26320 -Alum Bridge,WV,26321 -Alvy,WV,26322 -Auburn,WV,26325 -Berea,WV,26327 -Blandville,WV,26328 -Bridgeport,WV,26330 -Bristol,WV,26332 -Gem,WV,26335 -Cairo,WV,26337 -Camden,WV,26338 -Center Point,WV,26339 -Coxs Mills,WV,26342 -Crawford,WV,26343 -Highland,WV,26346 -Wendel,WV,26347 -Folsom,WV,26348 -Baldwin,WV,26351 -Grafton,WV,26354 -Greenwood,WV,26360 -Mahone,WV,26362 -Hazelgreen,WV,26367 -Horner,WV,26372 -Independence,WV,26374 -Wildcat,WV,26376 -Jacksonburg,WV,26377 -Jane Lew,WV,26378 -Lima,WV,26383 -Linn,WV,26384 -Lost Creek,WV,26385 -Lumberport,WV,26386 -Meadowbrook,WV,26404 -Kasson,WV,26405 -Mount Clare,WV,26408 -Newberne,WV,26409 -Newburg,WV,26410 -New Milton,WV,26411 -Orlando,WV,26412 -Toll Gate,WV,26415 -Broaddus,WV,26416 -Hastings,WV,26419 -Pullman,WV,26421 -Roanoke,WV,26423 -Manheim,WV,26425 -Salem,WV,26426 -Shinnston,WV,26431 -Smithfield,WV,26437 -Stouts Mills,WV,26439 -Thornton,WV,26440 -Troy,WV,26443 -Tunnelton,WV,26444 -Walkersville,WV,26447 -Wallace,WV,26448 -West Milford,WV,26451 -Weston,WV,26452 -West Union,WV,26456 -Wolf Summit,WV,26462 -Star City,WV,26505 -Albright,WV,26519 -Blacksville,WV,26521 -Bruceton Mills,WV,26525 -Core,WV,26529 -Kingwood,WV,26537 -Maidsville,WV,26541 -Cascade,WV,26542 -Pursglove,WV,26546 -Reedsville,WV,26547 -Monongah,WV,26554 -Baxter,WV,26560 -Big Run,WV,26561 -Coburn,WV,26562 -Enterprise,WV,26568 -Fairview,WV,26570 -Farmington,WV,26571 -Hundred,WV,26575 -Littleton,WV,26581 -Mannington,WV,26582 -Metz,WV,26585 -Rachel,WV,26587 -Rivesville,WV,26588 -Wadestown,WV,26589 -Wana,WV,26590 -Worthington,WV,26591 -Herold,WV,26601 -Birch River,WV,26610 -Flower,WV,26611 -Copen,WV,26615 -Dille,WV,26617 -Elmira,WV,26618 -Riffle,WV,26619 -Falls Mill,WV,26620 -Corley,WV,26621 -Clem,WV,26623 -Gassaway,WV,26624 -Glendon,WV,26626 -Heaters,WV,26627 -Tesla,WV,26629 -Napier,WV,26631 -Nicut,WV,26633 -Perkins,WV,26634 -Rosedale,WV,26636 -Shock,WV,26638 -Strange Creek,WV,26639 -Wilsie,WV,26641 -Summersville,WV,26651 -Belva,WV,26656 -Calvin,WV,26660 -Canvas,WV,26662 -Drennen,WV,26667 -Gilboa,WV,26671 -Jodie,WV,26674 -Keslers Cross La,WV,26675 -Leivasy,WV,26676 -Mount Lookout,WV,26678 -Runa,WV,26679 -Russelville,WV,26680 -Nettie,WV,26681 -Poe,WV,26683 -Pool,WV,26684 -Swiss,WV,26690 -Tioga,WV,26691 -Augusta,WV,26704 -Amboy,WV,26705 -Burlington,WV,26710 -Capon Bridge,WV,26711 -Corinth,WV,26713 -Delray,WV,26714 -Eglon,WV,26716 -Elk Garden,WV,26717 -Fort Ashby,WV,26719 -Gormania,WV,26720 -Green Spring,WV,26722 -Scherr,WV,26726 -Kirby,WV,26729 -Lahmansville,WV,26731 -Medley,WV,26734 -Mount Storm,WV,26739 -New Creek,WV,26743 -Piedmont,WV,26750 -Patterson Creek,WV,26753 -Rio,WV,26755 -Romney,WV,26757 -Shanks,WV,26761 -Springfield,WV,26763 -Hopemont,WV,26764 -Three Churches,WV,26765 -Wiley Ford,WV,26767 -Horse Shoe Run,WV,26769 -Baker,WV,26801 -Brandywine,WV,26802 -Circleville,WV,26804 -Fort Seybert,WV,26806 -Franklin,WV,26807 -High View,WV,26808 -Lost City,WV,26810 -Lost River,WV,26811 -Mathias,WV,26812 -Moyers,WV,26813 -Riverton,WV,26814 -Sugar Grove,WV,26815 -Arthur,WV,26816 -Bloomery,WV,26817 -Fisher,WV,26818 -Junction,WV,26824 -Maysville,WV,26833 -Rig,WV,26836 -Milam,WV,26838 -Old Fields,WV,26845 -Dorcas,WV,26847 -Wardensville,WV,26851 -Purgitsville,WV,26852 -Cabins,WV,26855 -Lehew,WV,26865 -Upper Tract,WV,26866 -Seneca Rocks,WV,26884 -Onego,WV,26886 -Adell,WI,53001 -Allenton,WI,53002 -Belgium,WI,53004 -Brookfield,WI,53005 -South Byron,WI,53006 -Butler,WI,53007 -Campbellsport,WI,53010 -Cascade,WI,53011 -Cedarburg,WI,53012 -Cedar Grove,WI,53013 -Chilton,WI,53014 -Cleveland,WI,53015 -Colgate,WI,53017 -Delafield,WI,53018 -Eden,WI,53019 -Elkhart Lake,WI,53020 -Waubeka,WI,53021 -Germantown,WI,53022 -Glenbeulah,WI,53023 -Grafton,WI,53024 -Hartford,WI,53027 -Hartland,WI,53029 -Horicon,WI,53032 -Hubertus,WI,53033 -Iron Ridge,WI,53035 -Ixonia,WI,53036 -Jackson,WI,53037 -Johnson Creek,WI,53038 -Juneau,WI,53039 -Kewaskum,WI,53040 -Kiel,WI,53042 -Kohler,WI,53044 -Brookfield,WI,53045 -Lannon,WI,53046 -Knowles,WI,53048 -Malone,WI,53049 -Mayville,WI,53050 -Menomonee Falls,WI,53051 -Mount Calvary,WI,53057 -Nashotah,WI,53058 -Neosho,WI,53059 -New Holstein,WI,53061 -Newton,WI,53063 -Oakfield,WI,53065 -Oconomowoc,WI,53066 -Okauchee,WI,53069 -Oostburg,WI,53070 -Pewaukee,WI,53072 -Plymouth,WI,53073 -Port Washington,WI,53074 -Random Lake,WI,53075 -Richfield,WI,53076 -Rubicon,WI,53078 -Saint Cloud,WI,53079 -Saukville,WI,53080 -Sheboygan,WI,53081 -Howards Grove,WI,53083 -Sheboygan Falls,WI,53085 -Slinger,WI,53086 -Sussex,WI,53089 -Theresa,WI,53091 -Mequon,WI,53092 -Waldo,WI,53093 -Watertown,WI,53094 -West Bend,WI,53095 -Big Bend,WI,53103 -Bristol,WI,53104 -Burlington,WI,53105 -Caledonia,WI,53108 -Cudahy,WI,53110 -Darien,WI,53114 -Delavan,WI,53115 -Dousman,WI,53118 -Eagle,WI,53119 -East Troy,WI,53120 -Elkhorn,WI,53121 -Elm Grove,WI,53122 -Fontana,WI,53125 -Franksville,WI,53126 -Genoa City,WI,53128 -Greendale,WI,53129 -Hales Corners,WI,53130 -Franklin,WI,53132 -Helenville,WI,53137 -Kansasville,WI,53139 -Kenosha,WI,53140 -Kenosha,WI,53142 -Kenosha,WI,53143 -Kenosha,WI,53144 -New Berlin,WI,53146 -Lake Geneva,WI,53147 -Mukwonago,WI,53149 -Muskego,WI,53150 -New Berlin,WI,53151 -North Prairie,WI,53153 -Oak Creek,WI,53154 -Palmyra,WI,53156 -Salem,WI,53168 -South Milwaukee,WI,53172 -Sturtevant,WI,53177 -Sullivan,WI,53178 -Trevor,WI,53179 -Twin Lakes,WI,53181 -Union Grove,WI,53182 -Wales,WI,53183 -Walworth,WI,53184 -Wind Lake,WI,53185 -Waukesha,WI,53186 -Waukesha,WI,53188 -Whitewater,WI,53190 -Williams Bay,WI,53191 -Milwaukee,WI,53202 -Milwaukee,WI,53203 -Milwaukee,WI,53204 -Milwaukee,WI,53205 -Milwaukee,WI,53206 -Bay View,WI,53207 -Milwaukee,WI,53208 -Milwaukee,WI,53209 -Milwaukee,WI,53210 -Shorewood,WI,53211 -Milwaukee,WI,53212 -Wauwatosa,WI,53213 -West Allis,WI,53214 -West Milwaukee,WI,53215 -Milwaukee,WI,53216 -Milwaukee,WI,53217 -Milwaukee,WI,53218 -Milwaukee,WI,53219 -Greenfield,WI,53220 -Milwaukee,WI,53221 -Milwaukee,WI,53222 -Milwaukee,WI,53223 -Milwaukee,WI,53224 -Milwaukee,WI,53225 -Wauwatosa,WI,53226 -Milwaukee,WI,53227 -Greenfield,WI,53228 -Milwaukee,WI,53233 -Racine,WI,53402 -Racine,WI,53403 -Racine,WI,53404 -Racine,WI,53405 -Racine,WI,53406 -Albany,WI,53502 -Arena,WI,53503 -Argyle,WI,53504 -Avalon,WI,53505 -Avoca,WI,53506 -Barneveld,WI,53507 -Belleville,WI,53508 -Belmont,WI,53510 -Shopiere,WI,53511 -Black Earth,WI,53515 -Blanchardville,WI,53516 -Blue Mounds,WI,53517 -Blue River,WI,53518 -Brodhead,WI,53520 -Brooklyn,WI,53521 -Browntown,WI,53522 -Cambridge,WI,53523 -Clinton,WI,53525 -Cobb,WI,53526 -Cottage Grove,WI,53527 -Cross Plains,WI,53528 -Dane,WI,53529 -Darlington,WI,53530 -Deerfield,WI,53531 -De Forest,WI,53532 -Dodgeville,WI,53533 -Edgerton,WI,53534 -Evansville,WI,53536 -Fort Atkinson,WI,53538 -Gratiot,WI,53541 -Highland,WI,53543 -Hollandale,WI,53544 -Janesville,WI,53545 -Janesville,WI,53546 -Jefferson,WI,53549 -Juda,WI,53550 -Lake Mills,WI,53551 -Linden,WI,53553 -Livingston,WI,53554 -Lodi,WI,53555 -Lone Rock,WI,53556 -Lowell,WI,53557 -Mc Farland,WI,53558 -Marshall,WI,53559 -Mazomanie,WI,53560 -Merrimac,WI,53561 -Middleton,WI,53562 -Milton,WI,53563 -Mineral Point,WI,53565 -Monroe,WI,53566 -Montfort,WI,53569 -Monticello,WI,53570 -Mount Horeb,WI,53572 -Muscoda,WI,53573 -New Glarus,WI,53574 -Oregon,WI,53575 -Orfordville,WI,53576 -Plain,WI,53577 -Prairie Du Sac,WI,53578 -Reeseville,WI,53579 -Rewey,WI,53580 -Gillingham,WI,53581 -Ridgeway,WI,53582 -Sauk City,WI,53583 -Sharon,WI,53585 -Shullsburg,WI,53586 -South Wayne,WI,53587 -Spring Green,WI,53588 -Stoughton,WI,53589 -Sun Prairie,WI,53590 -Verona,WI,53593 -Waterloo,WI,53594 -Waunakee,WI,53597 -Windsor,WI,53598 -Madison,WI,53703 -Madison,WI,53704 -Madison,WI,53705 -Madison,WI,53706 -Madison,WI,53711 -Fitchburg,WI,53713 -Madison,WI,53714 -Madison,WI,53715 -Monona,WI,53716 -Madison,WI,53717 -Madison,WI,53718 -Madison,WI,53719 -Bagley,WI,53801 -Benton,WI,53803 -Bloomington,WI,53804 -Boscobel,WI,53805 -Cassville,WI,53806 -Cuba City,WI,53807 -Fennimore,WI,53809 -Glen Haven,WI,53810 -Hazel Green,WI,53811 -Lancaster,WI,53813 -Mount Hope,WI,53816 -Platteville,WI,53818 -Potosi,WI,53820 -Prairie Du Chien,WI,53821 -Stitzer,WI,53825 -Wauzeka,WI,53826 -Woodman,WI,53827 -Portage,WI,53901 -Adams,WI,53910 -Arlington,WI,53911 -Baraboo,WI,53913 -Beaver Dam,WI,53916 -Brandon,WI,53919 -Briggsville,WI,53920 -Burnett,WI,53922 -Cambria,WI,53923 -Cazenovia,WI,53924 -Columbus,WI,53925 -Dalton,WI,53926 -Elroy,WI,53929 -Endeavor,WI,53930 -Fall River,WI,53932 -Fox Lake,WI,53933 -Friendship,WI,53934 -Grand Marsh,WI,53936 -Hillpoint,WI,53937 -Kingston,WI,53939 -La Valle,WI,53941 -Loganville,WI,53943 -Lyndon Station,WI,53944 -Markesan,WI,53946 -Marquette,WI,53947 -Mauston,WI,53948 -Montello,WI,53949 -New Lisbon,WI,53950 -North Freedom,WI,53951 -Oxford,WI,53952 -Pardeeville,WI,53954 -Poynette,WI,53955 -Randolph,WI,53956 -Reedsburg,WI,53959 -Rio,WI,53960 -Rock Springs,WI,53961 -Waupun,WI,53963 -Westfield,WI,53964 -Wisconsin Dells,WI,53965 -Wonewoc,WI,53968 -Deronda,WI,54001 -Baldwin,WI,54002 -Beldenville,WI,54003 -Clayton,WI,54004 -Clear Lake,WI,54005 -Cushing,WI,54006 -Deer Park,WI,54007 -Dresser,WI,54009 -Ellsworth,WI,54011 -Emerald,WI,54012 -Glenwood City,WI,54013 -Hager City,WI,54014 -Hammond,WI,54015 -Hudson,WI,54016 -New Richmond,WI,54017 -Osceola,WI,54020 -Prescott,WI,54021 -River Falls,WI,54022 -Roberts,WI,54023 -Saint Croix Fall,WI,54024 -Somerset,WI,54025 -Star Prairie,WI,54026 -Wilson,WI,54027 -Woodville,WI,54028 -Saint Joseph,WI,54082 -Abrams,WI,54101 -Amberg,WI,54102 -Armstrong Creek,WI,54103 -Athelstane,WI,54104 -Center Valley,WI,54106 -Navarino,WI,54107 -Brillion,WI,54110 -Cecil,WI,54111 -Coleman,WI,54112 -Combined Locks,WI,54113 -Beaver,WI,54114 -De Pere,WI,54115 -Dunbar,WI,54119 -Fence,WI,54120 -Florence,WI,54121 -Forest Junction,WI,54123 -Gillett,WI,54124 -Goodman,WI,54125 -Greenleaf,WI,54126 -Gresham,WI,54128 -Hilbert,WI,54129 -Kaukauna,WI,54130 -Keshena,WI,54135 -Kimberly,WI,54136 -Krakow,WI,54137 -Lakewood,WI,54138 -Stiles,WI,54139 -Little Chute,WI,54140 -Little Suamico,WI,54141 -Marinette,WI,54143 -Mountain,WI,54149 -Neopit,WI,54150 -Niagara,WI,54151 -Oconto,WI,54153 -Oconto Falls,WI,54154 -Oneida,WI,54155 -Pembine,WI,54156 -Peshtigo,WI,54157 -Porterfield,WI,54159 -Pound,WI,54161 -Pulaski,WI,54162 -Seymour,WI,54165 -Shawano,WI,54166 -Shiocton,WI,54170 -Sobieski,WI,54171 -Suring,WI,54174 -Townsend,WI,54175 -Underhill,WI,54176 -Wausaukee,WI,54177 -Wrightstown,WI,54180 -Algoma,WI,54201 -Baileys Harbor,WI,54202 -Brussels,WI,54204 -Casco,WI,54205 -Cato,WI,54206 -Denmark,WI,54208 -Egg Harbor,WI,54209 -Ellison Bay,WI,54210 -Fish Creek,WI,54212 -Forestville,WI,54213 -Francis Creek,WI,54214 -Kellnersville,WI,54215 -Kewaunee,WI,54216 -Luxemburg,WI,54217 -Manitowoc,WI,54220 -Maribel,WI,54227 -Mishicot,WI,54228 -New Franken,WI,54229 -Reedsville,WI,54230 -Saint Nazianz,WI,54232 -Sister Bay,WI,54234 -Sturgeon Bay,WI,54235 -Two Rivers,WI,54241 -Valders,WI,54245 -Washington Islan,WI,54246 -Whitelaw,WI,54247 -Allouez,WI,54301 -Green Bay,WI,54302 -Howard,WI,54303 -Ashwaubenon,WI,54304 -Green Bay,WI,54311 -Green Bay,WI,54313 -Wausau,WI,54401 -Abbotsford,WI,54405 -Amherst,WI,54406 -Amherst Junction,WI,54407 -Aniwa,WI,54408 -Antigo,WI,54409 -Arpin,WI,54410 -Hamburg,WI,54411 -Auburndale,WI,54412 -Babcock,WI,54413 -Birnamwood,WI,54414 -Bowler,WI,54416 -Bryant,WI,54418 -Chelsea,WI,54419 -Chili,WI,54420 -Colby,WI,54421 -Curtiss,WI,54422 -Custer,WI,54423 -Deerbrook,WI,54424 -Dorchester,WI,54425 -Fenwood,WI,54426 -Eland,WI,54427 -Elcho,WI,54428 -Elton,WI,54430 -Gilman,WI,54433 -Gleason,WI,54435 -Granton,WI,54436 -Greenwood,WI,54437 -Hatley,WI,54440 -Hewitt,WI,54441 -Irma,WI,54442 -Junction City,WI,54443 -Lily,WI,54445 -Loyal,WI,54446 -Lublin,WI,54447 -Marathon,WI,54448 -Marshfield,WI,54449 -Medford,WI,54451 -Merrill,WI,54452 -Milladore,WI,54454 -Mosinee,WI,54455 -Neillsville,WI,54456 -Nekoosa,WI,54457 -Ogema,WI,54459 -Owen,WI,54460 -Pearson,WI,54462 -Pelican Lake,WI,54463 -Pickerel,WI,54465 -Pittsville,WI,54466 -Plover,WI,54467 -Port Edwards,WI,54469 -Rib Lake,WI,54470 -Ringle,WI,54471 -Rosholt,WI,54473 -Rothschild,WI,54474 -Rudolph,WI,54475 -Schofield,WI,54476 -Spencer,WI,54479 -Stetsonville,WI,54480 -Stevens Point,WI,54481 -Stratford,WI,54484 -Summit Lake,WI,54485 -Tigerton,WI,54486 -Tomahawk,WI,54487 -Unity,WI,54488 -Vesper,WI,54489 -Westboro,WI,54490 -White Lake,WI,54491 -Willard,WI,54493 -Wisconsin Rapids,WI,54494 -Withee,WI,54498 -Wittenberg,WI,54499 -Monico,WI,54501 -Cavour,WI,54511 -Boulder Junction,WI,54512 -Brantwood,WI,54513 -Butternut,WI,54514 -Catawba,WI,54515 -Clam Lake,WI,54517 -Conover,WI,54519 -Crandon,WI,54520 -Eagle River,WI,54521 -Fifield,WI,54524 -Ingram,WI,54526 -Glidden,WI,54527 -Harshaw,WI,54529 -Hawkins,WI,54530 -Hazelhurst,WI,54531 -Hurley,WI,54534 -Iron Belt,WI,54536 -Kennan,WI,54537 -Lac Du Flambeau,WI,54538 -Lake Tomahawk,WI,54539 -Land O Lakes,WI,54540 -Laona,WI,54541 -Alvin,WI,54542 -Manitowish Water,WI,54545 -Mellen,WI,54546 -Mercer,WI,54547 -Minocqua,WI,54548 -Pence,WI,54550 -Park Falls,WI,54552 -Phelps,WI,54554 -Phillips,WI,54555 -Prentice,WI,54556 -Winchester,WI,54557 -Saint Germain,WI,54558 -Saxon,WI,54559 -Sayner,WI,54560 -Three Lakes,WI,54562 -Tony,WI,54563 -Tripoli,WI,54564 -Upson,WI,54565 -Wabeno,WI,54566 -Woodruff,WI,54568 -La Crosse,WI,54601 -La Crosse,WI,54603 -Alma,WI,54610 -Alma Center,WI,54611 -Arcadia,WI,54612 -Arkdale,WI,54613 -Bangor,WI,54614 -Black River Fall,WI,54615 -Blair,WI,54616 -Bloom City,WI,54617 -Cutler,WI,54618 -Cashton,WI,54619 -Chaseburg,WI,54621 -Waumandee,WI,54622 -Coon Valley,WI,54623 -Victory,WI,54624 -Dodge,WI,54625 -Eastman,WI,54626 -Ettrick,WI,54627 -Ferryville,WI,54628 -Fountain City,WI,54629 -Galesville,WI,54630 -Gays Mills,WI,54631 -Genoa,WI,54632 -Yuba,WI,54634 -Northfield,WI,54635 -Holmen,WI,54636 -Kendall,WI,54638 -West Lima,WI,54639 -Mather,WI,54641 -Melrose,WI,54642 -Mindoro,WI,54644 -Necedah,WI,54646 -Norwalk,WI,54648 -Onalaska,WI,54650 -Ontario,WI,54651 -Readstown,WI,54652 -Rockland,WI,54653 -Soldiers Grove,WI,54655 -Sparta,WI,54656 -Steuben,WI,54657 -Stoddard,WI,54658 -Taylor,WI,54659 -Wyeville,WI,54660 -Trempealeau,WI,54661 -Viola,WI,54664 -Viroqua,WI,54665 -Warrens,WI,54666 -Westby,WI,54667 -West Salem,WI,54669 -Wilton,WI,54670 -Eau Claire,WI,54701 -Eau Claire,WI,54703 -Altoona,WI,54720 -Arkansaw,WI,54721 -Augusta,WI,54722 -Bay City,WI,54723 -Bloomer,WI,54724 -Boyceville,WI,54725 -Boyd,WI,54726 -Cadott,WI,54727 -Chetek,WI,54728 -Chippewa Falls,WI,54729 -Colfax,WI,54730 -Conrath,WI,54731 -Cornell,WI,54732 -Dallas,WI,54733 -Downing,WI,54734 -Durand,WI,54736 -Eau Galle,WI,54737 -Eleva,WI,54738 -Elk Mound,WI,54739 -Elmwood,WI,54740 -Fairchild,WI,54741 -Fall Creek,WI,54742 -Hillsdale,WI,54744 -Holcombe,WI,54745 -Humbird,WI,54746 -Independence,WI,54747 -Jim Falls,WI,54748 -Knapp,WI,54749 -Maiden Rock,WI,54750 -Menomonie,WI,54751 -Merrillan,WI,54754 -Modena,WI,54755 -Nelson,WI,54756 -New Auburn,WI,54757 -Osseo,WI,54758 -Pepin,WI,54759 -Plum City,WI,54761 -Prairie Farm,WI,54762 -Ridgeland,WI,54763 -Sand Creek,WI,54765 -Sheldon,WI,54766 -Spring Valley,WI,54767 -Stanley,WI,54768 -Stockholm,WI,54769 -Strum,WI,54770 -Thorp,WI,54771 -Wheeler,WI,54772 -Whitehall,WI,54773 -Spooner,WI,54801 -Almena,WI,54805 -Moquah,WI,54806 -Balsam Lake,WI,54810 -Barron,WI,54812 -Barronett,WI,54813 -Bayfield,WI,54814 -Birchwood,WI,54817 -Bruce,WI,54819 -Brule,WI,54820 -Cable,WI,54821 -Cameron,WI,54822 -Centuria,WI,54824 -Comstock,WI,54826 -Cornucopia,WI,54827 -New Post,WI,54828 -Cumberland,WI,54829 -Dairyland,WI,54830 -Drummond,WI,54832 -Exeland,WI,54835 -Foxboro,WI,54836 -Clam Falls,WI,54837 -Gordon,WI,54838 -Grand View,WI,54839 -Evergreen,WI,54840 -North Woods Beac,WI,54843 -Herbster,WI,54844 -Hertel,WI,54845 -High Bridge,WI,54846 -Iron River,WI,54847 -Ladysmith,WI,54848 -Lake Nebagamon,WI,54849 -La Pointe,WI,54850 -Luck,WI,54853 -Maple,WI,54854 -Marengo,WI,54855 -Delta,WI,54856 -Milltown,WI,54858 -Minong,WI,54859 -Ojibwa,WI,54862 -Poplar,WI,54864 -Port Wing,WI,54865 -Radisson,WI,54867 -Canton,WI,54868 -Sarona,WI,54870 -Shell Lake,WI,54871 -Siren,WI,54872 -Barnes,WI,54873 -Wentworth,WI,54874 -Earl,WI,54875 -Stone Lake,WI,54876 -Superior,WI,54880 -Trego,WI,54888 -Turtle Lake,WI,54889 -Washburn,WI,54891 -Webster,WI,54893 -Weyerhaeuser,WI,54895 -Loretta,WI,54896 -Oshkosh,WI,54901 -Oshkosh,WI,54904 -Almond,WI,54909 -Appleton,WI,54911 -Appleton,WI,54914 -Appleton,WI,54915 -Bancroft,WI,54921 -Bear Creek,WI,54922 -Berlin,WI,54923 -Caroline,WI,54928 -Clintonville,WI,54929 -Coloma,WI,54930 -Eldorado,WI,54932 -Taycheedah,WI,54935 -North Fond Du La,WI,54937 -Fremont,WI,54940 -Green Lake,WI,54941 -Greenville,WI,54942 -Hancock,WI,54943 -Hortonville,WI,54944 -Iola,WI,54945 -King,WI,54946 -Larsen,WI,54947 -Leopolis,WI,54948 -Manawa,WI,54949 -Marion,WI,54950 -Menasha,WI,54952 -Neenah,WI,54956 -Neshkoro,WI,54960 -New London,WI,54961 -Ogdensburg,WI,54962 -Omro,WI,54963 -Pickett,WI,54964 -Pine River,WI,54965 -Plainfield,WI,54966 -Poy Sippi,WI,54967 -Princeton,WI,54968 -Redgranite,WI,54970 -Ripon,WI,54971 -Rosendale,WI,54974 -Scandinavia,WI,54977 -Tilleda,WI,54978 -Van Dyne,WI,54979 -Waupaca,WI,54981 -Wautoma,WI,54982 -Weyauwega,WI,54983 -Wild Rose,WI,54984 -Winneconne,WI,54986 -Cheyenne,WY,82001 -Cheyenne,WY,82007 -Cheyenne,WY,82009 -Albin,WY,82050 -Laramie,WY,82051 -Buford,WY,82052 -Burns,WY,82053 -Carpenter,WY,82054 -Centennial,WY,82055 -82057,WY,82057 -Garrett,WY,82058 -Jelm,WY,82063 -Laramie,WY,82070 -Mc Fadden,WY,82080 -Meriden,WY,82081 -Pine Bluffs,WY,82082 -Rock River,WY,82083 -Tie Siding,WY,82084 -Fishing Bridge,WY,82190 -Wheatland,WY,82201 -Chugwater,WY,82210 -Fort Laramie,WY,82212 -Glendo,WY,82213 -Guernsey,WY,82214 -Hartville,WY,82215 -Hawk Springs,WY,82217 -Jay Em,WY,82219 -Keeline,WY,82220 -Lagrange,WY,82221 -Lance Creek,WY,82222 -Lingle,WY,82223 -Lost Springs,WY,82224 -Lusk,WY,82225 -Shawnee,WY,82229 -Torrington,WY,82240 -Van Tassell,WY,82242 -Veteran,WY,82243 -Yoder,WY,82244 -Rawlins,WY,82301 -Jeffrey City,WY,82310 -Baggs,WY,82321 -Bairoil,WY,82322 -Dixon,WY,82323 -Encampment,WY,82325 -Hanna,WY,82327 -Medicine Bow,WY,82329 -Ryan Park,WY,82331 -Savery,WY,82332 -Sinclair,WY,82334 -Wamsutter,WY,82336 -Worland,WY,82401 -Basin,WY,82410 -Burlington,WY,82411 -Cody,WY,82414 -Deaver,WY,82421 -Greybull,WY,82426 -Hyattville,WY,82428 -Lovell,WY,82431 -Manderson,WY,82432 -Meeteetse,WY,82433 -Otto,WY,82434 -Powell,WY,82435 -Shell,WY,82441 -Ten Sleep,WY,82442 -Grass Creek,WY,82443 -Wapiti,WY,82450 -Gas Hills,WY,82501 -Arapahoe,WY,82510 -Crowheart,WY,82512 -Dubois,WY,82513 -Fort Washakie,WY,82514 -Kinnear,WY,82516 -Ethete,WY,82520 -Pavillion,WY,82523 -Casper,WY,82601 -Casper,WY,82604 -Casper,WY,82609 -Alcova,WY,82620 -Arminto,WY,82630 -Douglas,WY,82633 -Evansville,WY,82636 -Glenrock,WY,82637 -Kaycee,WY,82639 -Lysite,WY,82642 -Midwest,WY,82643 -Shoshoni,WY,82649 -Newcastle,WY,82701 -Aladdin,WY,82710 -Beulah,WY,82712 -Devils Tower,WY,82714 -Four Corners,WY,82715 -Gillette,WY,82716 -Hulett,WY,82720 -Pine Haven,WY,82721 -Osage,WY,82723 -Oshoto,WY,82724 -Recluse,WY,82725 -Rozet,WY,82727 -Sundance,WY,82729 -Upton,WY,82730 -Gillette,WY,82731 -Wright,WY,82732 -Sheridan,WY,82801 -Arvada,WY,82831 -Banner,WY,82832 -Buffalo,WY,82834 -Clearmont,WY,82835 -Dayton,WY,82836 -Parkman,WY,82838 -Acme,WY,82839 -Story,WY,82842 -Ranchester,WY,82844 -Rock Springs,WY,82901 -Bondurant,WY,82922 -Boulder,WY,82923 -Cora,WY,82925 -Evanston,WY,82930 -Fort Bridger,WY,82933 -Green River,WY,82935 -Lonetree,WY,82936 -Lyman,WY,82937 -Mc Kinnon,WY,82938 -Pinedale,WY,82941 -Colter Bay,WY,83001 -Kelly,WY,83011 -Moose,WY,83012 -Moran,WY,83013 -Wilson,WY,83014 -Kemmerer,WY,83101 -Afton,WY,83110 -Auburn,WY,83111 -Bedford,WY,83112 -Marbleton,WY,83113 -Cokeville,WY,83114 -Daniel,WY,83115 -Etna,WY,83118 -Freedom,WY,83120 -Grover,WY,83122 -La Barge,WY,83123 -Smoot,WY,83126 -Thayne,WY,83127 \ No newline at end of file diff --git a/splunk_eventgen/samples/dist.all.last b/splunk_eventgen/samples/dist.all.last deleted file mode 100644 index 75a994c1..00000000 --- a/splunk_eventgen/samples/dist.all.last +++ /dev/null @@ -1,88799 +0,0 @@ -smith -johnson -williams -jones -brown -davis -miller -wilson -moore -taylor -anderson -thomas -jackson -white -harris -martin -thompson -garcia -martinez -robinson -clark -rodriguez -lewis -lee -walker -hall -allen -young -hernandez -king -wright -lopez -hill -scott -green -adams -baker -gonzalez -nelson -carter -mitchell -perez -roberts -turner -phillips -campbell -parker -evans -edwards -collins -stewart -sanchez -morris -rogers -reed -cook -morgan -bell -murphy -bailey -rivera -cooper -richardson -cox -howard -ward -torres -peterson -gray -ramirez -james -watson -brooks -kelly -sanders -price -bennett -wood -barnes -ross -henderson -coleman -jenkins -perry -powell -long -patterson -hughes -flores -washington -butler -simmons -foster -gonzales -bryant -alexander -russell -griffin -diaz -hayes -myers -ford -hamilton -graham -sullivan -wallace -woods -cole -west -jordan -owens -reynolds -fisher -ellis -harrison -gibson -mcdonald -cruz -marshall -ortiz -gomez -murray -freeman -wells -webb -simpson -stevens -tucker -porter -hunter -hicks -crawford -henry -boyd -mason -morales -kennedy -warren -dixon -ramos -reyes -burns -gordon -shaw -holmes -rice -robertson -hunt -black -daniels -palmer -mills -nichols -grant -knight -ferguson -rose -stone -hawkins -dunn -perkins -hudson -spencer -gardner -stephens -payne -pierce -berry -matthews -arnold -wagner -willis -ray -watkins -olson -carroll -duncan -snyder -hart -cunningham -bradley -lane -andrews -ruiz -harper -fox -riley -armstrong -carpenter -weaver -greene -lawrence -elliott -chavez -sims -austin -peters -kelley -franklin -lawson -fields -gutierrez -ryan -schmidt -carr -vasquez -castillo -wheeler -chapman -oliver -montgomery -richards -williamson -johnston -banks -meyer -bishop -mccoy -howell -alvarez -morrison -hansen -fernandez -garza -harvey -little -burton -stanley -nguyen -george -jacobs -reid -kim -fuller -lynch -dean -gilbert -garrett -romero -welch -larson -frazier -burke -hanson -day -mendoza -moreno -bowman -medina -fowler -brewer -hoffman -carlson -silva -pearson -holland -douglas -fleming -jensen -vargas -byrd -davidson -hopkins -may -terry -herrera -wade -soto -walters -curtis -neal -caldwell -lowe -jennings -barnett -graves -jimenez -horton -shelton -barrett -obrien -castro -sutton -gregory -mckinney -lucas -miles -craig -rodriquez -chambers -holt -lambert -fletcher -watts -bates -hale -rhodes -pena -beck -newman -haynes -mcdaniel -mendez -bush -vaughn -parks -dawson -santiago -norris -hardy -love -steele -curry -powers -schultz -barker -guzman -page -munoz -ball -keller -chandler -weber -leonard -walsh -lyons -ramsey -wolfe -schneider -mullins -benson -sharp -bowen -daniel -barber -cummings -hines -baldwin -griffith -valdez -hubbard -salazar -reeves -warner -stevenson -burgess -santos -tate -cross -garner -mann -mack -moss -thornton -dennis -mcgee -farmer -delgado -aguilar -vega -glover -manning -cohen -harmon -rodgers -robbins -newton -todd -blair -higgins -ingram -reese -cannon -strickland -townsend -potter -goodwin -walton -rowe -hampton -ortega -patton -swanson -joseph -francis -goodman -maldonado -yates -becker -erickson -hodges -rios -conner -adkins -webster -norman -malone -hammond -flowers -cobb -moody -quinn -blake -maxwell -pope -floyd -osborne -paul -mccarthy -guerrero -lindsey -estrada -sandoval -gibbs -tyler -gross -fitzgerald -stokes -doyle -sherman -saunders -wise -colon -gill -alvarado -greer -padilla -simon -waters -nunez -ballard -schwartz -mcbride -houston -christensen -klein -pratt -briggs -parsons -mclaughlin -zimmerman -french -buchanan -moran -copeland -roy -pittman -brady -mccormick -holloway -brock -poole -frank -logan -owen -bass -marsh -drake -wong -jefferson -park -morton -abbott -sparks -patrick -norton -huff -clayton -massey -lloyd -figueroa -carson -bowers -roberson -barton -tran -lamb -harrington -casey -boone -cortez -clarke -mathis -singleton -wilkins -cain -bryan -underwood -hogan -mckenzie -collier -luna -phelps -mcguire -allison -bridges -wilkerson -nash -summers -atkins -wilcox -pitts -conley -marquez -burnett -richard -cochran -chase -davenport -hood -gates -clay -ayala -sawyer -roman -vazquez -dickerson -hodge -acosta -flynn -espinoza -nicholson -monroe -wolf -morrow -kirk -randall -anthony -whitaker -oconnor -skinner -ware -molina -kirby -huffman -bradford -charles -gilmore -dominguez -oneal -bruce -lang -combs -kramer -heath -hancock -gallagher -gaines -shaffer -short -wiggins -mathews -mcclain -fischer -wall -small -melton -hensley -bond -dyer -cameron -grimes -contreras -christian -wyatt -baxter -snow -mosley -shepherd -larsen -hoover -beasley -glenn -petersen -whitehead -meyers -keith -garrison -vincent -shields -horn -savage -olsen -schroeder -hartman -woodard -mueller -kemp -deleon -booth -patel -calhoun -wiley -eaton -cline -navarro -harrell -lester -humphrey -parrish -duran -hutchinson -hess -dorsey -bullock -robles -beard -dalton -avila -vance -rich -blackwell -york -johns -blankenship -trevino -salinas -campos -pruitt -moses -callahan -golden -montoya -hardin -guerra -mcdowell -carey -stafford -gallegos -henson -wilkinson -booker -merritt -miranda -atkinson -orr -decker -hobbs -preston -tanner -knox -pacheco -stephenson -glass -rojas -serrano -marks -hickman -english -sweeney -strong -prince -mcclure -conway -walter -roth -maynard -farrell -lowery -hurst -nixon -weiss -trujillo -ellison -sloan -juarez -winters -mclean -randolph -leon -boyer -villarreal -mccall -gentry -carrillo -kent -ayers -lara -shannon -sexton -pace -hull -leblanc -browning -velasquez -leach -chang -house -sellers -herring -noble -foley -bartlett -mercado -landry -durham -walls -barr -mckee -bauer -rivers -everett -bradshaw -pugh -velez -rush -estes -dodson -morse -sheppard -weeks -camacho -bean -barron -livingston -middleton -spears -branch -blevins -chen -kerr -mcconnell -hatfield -harding -ashley -solis -herman -frost -giles -blackburn -william -pennington -woodward -finley -mcintosh -koch -best -solomon -mccullough -dudley -nolan -blanchard -rivas -brennan -mejia -kane -benton -joyce -buckley -haley -valentine -maddox -russo -mcknight -buck -moon -mcmillan -crosby -berg -dotson -mays -roach -church -chan -richmond -meadows -faulkner -oneill -knapp -kline -barry -ochoa -jacobson -gay -avery -hendricks -horne -shepard -hebert -cherry -cardenas -mcintyre -whitney -waller -holman -donaldson -cantu -terrell -morin -gillespie -fuentes -tillman -sanford -bentley -peck -key -salas -rollins -gamble -dickson -battle -santana -cabrera -cervantes -howe -hinton -hurley -spence -zamora -yang -mcneil -suarez -case -petty -gould -mcfarland -sampson -carver -bray -rosario -macdonald -stout -hester -melendez -dillon -farley -hopper -galloway -potts -bernard -joyner -stein -aguirre -osborn -mercer -bender -franco -rowland -sykes -benjamin -travis -pickett -crane -sears -mayo -dunlap -hayden -wilder -mckay -coffey -mccarty -ewing -cooley -vaughan -bonner -cotton -holder -stark -ferrell -cantrell -fulton -lynn -lott -calderon -rosa -pollard -hooper -burch -mullen -fry -riddle -levy -david -duke -odonnell -guy -michael -britt -frederick -daugherty -berger -dillard -alston -jarvis -frye -riggs -chaney -odom -duffy -fitzpatrick -valenzuela -merrill -mayer -alford -mcpherson -acevedo -donovan -barrera -albert -cote -reilly -compton -raymond -mooney -mcgowan -craft -cleveland -clemons -wynn -nielsen -baird -stanton -snider -rosales -bright -witt -stuart -hays -holden -rutledge -kinney -clements -castaneda -slater -hahn -emerson -conrad -burks -delaney -pate -lancaster -sweet -justice -tyson -sharpe -whitfield -talley -macias -irwin -burris -ratliff -mccray -madden -kaufman -beach -goff -cash -bolton -mcfadden -levine -good -byers -kirkland -kidd -workman -carney -dale -mcleod -holcomb -england -finch -head -burt -hendrix -sosa -haney -franks -sargent -nieves -downs -rasmussen -bird -hewitt -lindsay -le -foreman -valencia -oneil -delacruz -vinson -dejesus -hyde -forbes -gilliam -guthrie -wooten -huber -barlow -boyle -mcmahon -buckner -rocha -puckett -langley -knowles -cooke -velazquez -whitley -noel -vang -shea -rouse -hartley -mayfield -elder -rankin -hanna -cowan -lucero -arroyo -slaughter -haas -oconnell -minor -kendrick -shirley -kendall -boucher -archer -boggs -odell -dougherty -andersen -newell -crowe -wang -friedman -bland -swain -holley -felix -pearce -childs -yarbrough -galvan -proctor -meeks -lozano -mora -rangel -bacon -villanueva -schaefer -rosado -helms -boyce -goss -stinson -smart -lake -ibarra -hutchins -covington -reyna -gregg -werner -crowley -hatcher -mackey -bunch -womack -polk -jamison -dodd -childress -childers -camp -villa -dye -springer -mahoney -dailey -belcher -lockhart -griggs -costa -connor -brandt -winter -walden -moser -tracy -tatum -mccann -akers -lutz -pryor -law -orozco -mcallister -lugo -davies -shoemaker -madison -rutherford -newsome -magee -chamberlain -blanton -simms -godfrey -flanagan -crum -cordova -escobar -downing -sinclair -donahue -krueger -mcginnis -gore -farris -webber -corbett -andrade -starr -lyon -yoder -hastings -mcgrath -spivey -krause -harden -crabtree -kirkpatrick -hollis -brandon -arrington -ervin -clifton -ritter -mcghee -bolden -maloney -gagnon -dunbar -ponce -pike -mayes -heard -beatty -mobley -kimball -butts -montes -herbert -grady -eldridge -braun -hamm -gibbons -seymour -moyer -manley -herron -plummer -elmore -cramer -gary -rucker -hilton -blue -pierson -fontenot -field -rubio -grace -goldstein -elkins -wills -novak -john -hickey -worley -gorman -katz -dickinson -broussard -fritz -woodruff -crow -christopher -britton -forrest -nance -lehman -bingham -zuniga -whaley -shafer -coffman -steward -delarosa -nix -neely -numbers -mata -manuel -davila -mccabe -kessler -emery -bowling -hinkle -welsh -pagan -goldberg -goins -crouch -cuevas -quinones -mcdermott -hendrickson -samuels -denton -bergeron -lam -ivey -locke -haines -thurman -snell -hoskins -byrne -milton -winston -arthur -arias -stanford -roe -corbin -beltran -chappell -hurt -downey -dooley -tuttle -couch -payton -mcelroy -crockett -groves -clement -leslie -cartwright -dickey -mcgill -dubois -muniz -erwin -self -tolbert -dempsey -cisneros -sewell -latham -garland -vigil -tapia -sterling -rainey -norwood -lacy -stroud -meade -amos -tipton -lord -kuhn -hilliard -bonilla -teague -courtney -gunn -ho -greenwood -correa -reece -weston -poe -trent -pineda -phipps -frey -kaiser -ames -paige -gunter -schmitt -milligan -espinosa -carlton -bowden -vickers -lowry -pritchard -costello -piper -mcclellan -lovell -drew -sheehan -quick -hatch -dobson -singh -jeffries -hollingsworth -sorensen -meza -fink -donnelly -burrell -bruno -tomlinson -colbert -billings -ritchie -helton -sutherland -peoples -mcqueen -gaston -thomason -mckinley -givens -crocker -vogel -robison -dunham -coker -swartz -keys -lilly -ladner -hannah -willard -richter -hargrove -edmonds -brantley -albright -murdock -boswell -muller -quintero -padgett -kenney -daly -connolly -pierre -inman -quintana -lund -barnard -villegas -simons -land -huggins -tidwell -sanderson -bullard -mcclendon -duarte -draper -meredith -marrero -dwyer -abrams -stover -goode -fraser -crews -bernal -smiley -godwin -fish -conklin -mcneal -baca -esparza -crowder -bower -nicholas -chung -brewster -mcneill -dick -rodrigues -leal -coates -raines -mccain -mccord -miner -holbrook -swift -dukes -carlisle -aldridge -ackerman -starks -ricks -holliday -ferris -hairston -sheffield -lange -fountain -marino -doss -betts -kaplan -carmichael -bloom -ruffin -penn -kern -bowles -sizemore -larkin -dupree -jewell -silver -seals -metcalf -hutchison -henley -farr -castle -mccauley -hankins -gustafson -deal -curran -ash -waddell -ramey -cates -pollock -major -irvin -cummins -messer -heller -dewitt -lin -funk -cornett -palacios -galindo -cano -hathaway -singer -pham -enriquez -aaron -salgado -pelletier -painter -wiseman -blount -hand -feliciano -temple -houser -doherty -mead -mcgraw -toney -swan -melvin -capps -blanco -blackmon -wesley -thomson -mcmanus -fair -burkett -post -gleason -rudolph -ott -dickens -cormier -voss -rushing -rosenberg -hurd -dumas -benitez -arellano -story -marin -caudill -bragg -jaramillo -huerta -gipson -colvin -biggs -vela -platt -cassidy -tompkins -mccollum -kay -gabriel -dolan -daley -crump -street -sneed -kilgore -grove -grimm -davison -brunson -prater -marcum -devine -kyle -dodge -stratton -rosas -choi -tripp -ledbetter -lay -hightower -haywood -feldman -epps -yeager -posey -sylvester -scruggs -cope -stubbs -richey -overton -trotter -sprague -cordero -butcher -burger -stiles -burgos -woodson -horner -bassett -purcell -haskins -gee -akins -abraham -hoyt -ziegler -spaulding -hadley -grubbs -sumner -murillo -zavala -shook -lockwood -jarrett -driscoll -dahl -thorpe -sheridan -redmond -putnam -mcwilliams -mcrae -cornell -felton -romano -joiner -sadler -hedrick -hager -hagen -fitch -coulter -thacker -mansfield -langston -guidry -ferreira -corley -conn -rossi -lackey -cody -baez -saenz -mcnamara -darnell -michel -mcmullen -mckenna -mcdonough -link -engel -browne -roper -peacock -eubanks -drummond -stringer -pritchett -parham -mims -landers -ham -grayson -stacy -schafer -egan -timmons -ohara -keen -hamlin -finn -cortes -mcnair -louis -clifford -nadeau -moseley -michaud -rosen -oakes -kurtz -jeffers -calloway -beal -bautista -winn -suggs -stern -stapleton -lyles -laird -montano -diamond -dawkins -roland -hagan -goldman -bryson -barajas -lovett -segura -metz -lockett -langford -hinson -eastman -rock -hooks -woody -smallwood -shapiro -crowell -whalen -triplett -hooker -chatman -aldrich -cahill -youngblood -ybarra -stallings -sheets -samuel -reeder -person -pack -lacey -connelly -bateman -abernathy -winkler -wilkes -masters -hackett -granger -gillis -schmitz -sapp -napier -souza -lanier -gomes -weir -otero -ledford -burroughs -babcock -ventura -siegel -dugan -clinton -christie -bledsoe -atwood -wray -varner -spangler -otto -anaya -staley -kraft -fournier -eddy -belanger -wolff -thorne -bynum -burnette -boykin -swenson -purvis -pina -khan -duvall -darby -xiong -kauffman -ali -yu -healy -engle -corona -benoit -valle -steiner -spicer -shaver -randle -lundy -dow -chin -calvert -staton -neff -kearney -darden -oakley -medeiros -mccracken -crenshaw -block -beaver -perdue -dill -whittaker -tobin -cornelius -washburn -hogue -goodrich -easley -bravo -dennison -vera -shipley -kerns -jorgensen -crain -abel -villalobos -maurer -longoria -keene -coon -sierra -witherspoon -staples -pettit -kincaid -eason -madrid -echols -lusk -wu -stahl -currie -thayer -shultz -sherwood -mcnally -seay -north -maher -kenny -hope -gagne -barrow -nava -myles -moreland -honeycutt -hearn -diggs -caron -whitten -westbrook -stovall -ragland -queen -munson -meier -looney -kimble -jolly -hobson -london -goddard -culver -burr -presley -negron -connell -tovar -marcus -huddleston -hammer -ashby -salter -root -pendleton -oleary -nickerson -myrick -judd -jacobsen -elliot -bain -adair -starnes -sheldon -matos -light -busby -herndon -hanley -bellamy -jack -doty -bartley -yazzie -rowell -parson -gifford -cullen -christiansen -benavides -barnhart -talbot -mock -crandall -connors -bonds -whitt -gage -bergman -arredondo -addison -marion -lujan -dowdy -jernigan -huynh -bouchard -dutton -rhoades -ouellette -kiser -rubin -herrington -hare -denny -blackman -babb -allred -rudd -paulson -ogden -koenig -jacob -irving -geiger -begay -parra -champion -lassiter -hawk -esposito -cho -waldron -vernon -ransom -prather -keenan -jean -grover -chacon -vick -sands -roark -parr -mayberry -greenberg -coley -bruner -whitman -skaggs -shipman -means -leary -hutton -romo -medrano -ladd -kruse -friend -darling -askew -valentin -schulz -alfaro -tabor -mohr -gallo -bermudez -pereira -isaac -bliss -reaves -flint -comer -boston -woodall -naquin -guevara -earl -delong -carrier -pickens -brand -tilley -schaffer -read -lim -knutson -fenton -doran -chu -vogt -vann -prescott -mclain -landis -corcoran -ambrose -zapata -hyatt -hemphill -faulk -call -dove -boudreaux -aragon -whitlock -trejo -tackett -shearer -saldana -hanks -gold -driver -mckinnon -koehler -champagne -bourgeois -pool -keyes -goodson -foote -early -lunsford -goldsmith -flood -winslow -sams -reagan -mccloud -hough -esquivel -naylor -loomis -coronado -ludwig -braswell -bearden -sherrill -huang -fagan -ezell -edmondson -cyr -cronin -nunn -lemon -guillory -grier -dubose -traylor -ryder -dobbins -coyle -aponte -whitmore -smalls -rowan -malloy -cardona -braxton -borden -humphries -carrasco -ruff -metzger -huntley -hinojosa -finney -madsen -hong -hills -ernst -dozier -burkhart -bowser -peralta -daigle -whittington -sorenson -saucedo -roche -redding -loyd -fugate -avalos -waite -lind -huston -hay -benedict -hawthorne -hamby -boyles -boles -regan -faust -crook -beam -barger -hinds -gallardo -elias -willoughby -willingham -wilburn -eckert -busch -zepeda -worthington -tinsley -russ -li -hoff -hawley -carmona -varela -rector -newcomb -mallory -kinsey -dube -whatley -strange -ragsdale -ivy -bernstein -becerra -yost -mattson -ly -felder -cheek -luke -handy -grossman -gauthier -escobedo -braden -beckman -mott -hillman -gil -flaherty -dykes -doe -stockton -stearns -lofton -kitchen -coats -cavazos -beavers -barrios -tang -parish -mosher -lincoln -cardwell -coles -burnham -weller -lemons -beebe -aguilera -ring -parnell -harman -couture -alley -schumacher -redd -dobbs -blum -blalock -merchant -ennis -denson -cottrell -chester -brannon -bagley -aviles -watt -sousa -rosenthal -rooney -dietz -blank -paquette -mcclelland -duff -velasco -lentz -grubb -burrows -barbour -ulrich -shockley -rader -german -beyer -mixon -layton -altman -alonzo -weathers -titus -stoner -squires -shipp -priest -lipscomb -cutler -caballero -zimmer -willett -thurston -storey -medley -lyle -epperson -shah -mcmillian -baggett -torrez -laws -hirsch -dent -corey -poirier -peachey -jacques -farrar -creech -barth -trimble -france -dupre -albrecht -sample -lawler -crisp -conroy -chadwick -wetzel -nesbitt -murry -jameson -wilhelm -patten -minton -matson -kimbrough -iverson -guinn -gale -fortune -croft -toth -pulliam -nugent -newby -littlejohn -dias -canales -bernier -baron -barney -singletary -renteria -pruett -mchugh -mabry -landrum -brower -weldon -stoddard -ruth -cagle -stjohn -scales -kohler -kellogg -hopson -gant -tharp -gann -zeigler -pringle -hammons -fairchild -deaton -chavis -carnes -rowley -matlock -libby -kearns -irizarry -carrington -starkey -pepper -lopes -jarrell -fay -craven -beverly -baum -spain -littlefield -linn -humphreys -hook -high -etheridge -cuellar -chastain -chance -bundy -speer -skelton -quiroz -pyle -portillo -ponder -moulton -machado -liu -killian -hutson -hitchcock -ellsworth -dowling -cloud -burdick -spann -pedersen -levin -leggett -hayward -hacker -dietrich -beaulieu -barksdale -wakefield -snowden -paris -briscoe -bowie -berman -ogle -mcgregor -laughlin -helm -burden -wheatley -schreiber -pressley -parris -ng -alaniz -agee -urban -swann -snodgrass -schuster -radford -monk -mattingly -main -lamar -harp -girard -cheney -yancey -wagoner -ridley -lombardo -lau -hudgins -gaskins -duckworth -coe -coburn -willey -prado -newberry -magana -hammonds -elam -whipple -slade -serna -ojeda -liles -dorman -diehl -angel -upton -reardon -michaels -kelsey -goetz -eller -bauman -baer -augustine -layne -hummel -brenner -amaya -adamson -ornelas -dowell -cloutier -christy -castellanos -wing -wellman -saylor -orourke -moya -montalvo -kilpatrick -harley -durbin -shell -oldham -kang -garvin -foss -branham -bartholomew -templeton -maguire -holton -alonso -rider -monahan -mccormack -beaty -anders -streeter -nieto -nielson -moffett -lankford -keating -heck -gatlin -delatorre -callaway -adcock -worrell -unger -robinette -nowak -jeter -brunner -ashton -steen -parrott -overstreet -nobles -montanez -luther -clevenger -brinkley -trahan -quarles -pickering -pederson -jansen -grantham -gilchrist -crespo -aiken -schell -schaeffer -lorenz -leyva -harms -dyson -wallis -pease -leavitt -hyman -cheng -cavanaugh -batts -warden -seaman -rockwell -quezada -paxton -linder -houck -fontaine -durant -caruso -adler -pimentel -mize -lytle -donald -cleary -cason -acker -switzer -salmon -isaacs -higginbotham -han -waterman -vandyke -stamper -sisk -shuler -riddick -redman -mcmahan -levesque -hatton -bronson -bollinger -arnett -okeefe -gerber -gannon -farnsworth -baughman -silverman -satterfield -royal -mccrary -kowalski -joy -grigsby -greco -cabral -trout -rinehart -mahon -linton -gooden -curley -baugh -wyman -weiner -schwab -schuler -morrissey -mahan -coy -bunn -andrew -thrasher -spear -waggoner -shelley -robert -qualls -purdy -mcwhorter -mauldin -mark -jordon -gilman -perryman -newsom -menard -martino -graf -billingsley -artis -simpkins -salisbury -quintanilla -gilliland -fraley -foust -crouse -scarborough -ngo -grissom -fultz -rico -marlow -markham -madrigal -lawton -barfield -whiting -varney -schwarz -huey -gooch -arce -wheat -truong -poulin -mackenzie -leone -hurtado -selby -gaither -fortner -culpepper -coughlin -brinson -boudreau -barkley -bales -stepp -holm -tan -schilling -morrell -kahn -heaton -gamez -douglass -causey -brothers -turpin -shanks -schrader -meek -isom -hardison -carranza -yanez -way -scroggins -schofield -runyon -ratcliff -murrell -moeller -irby -currier -butterfield -yee -ralston -pullen -pinson -estep -east -carbone -lance -hawks -ellington -casillas -spurlock -sikes -motley -mccartney -kruger -isbell -houle -francisco -burk -bone -tomlin -shelby -quigley -neumann -lovelace -fennell -colby -cheatham -bustamante -skidmore -hidalgo -forman -culp -bowens -betancourt -aquino -robb -rea -milner -martel -gresham -wiles -ricketts -gavin -dowd -collazo -bostic -blakely -sherrod -power -kenyon -gandy -ebert -deloach -cary -bull -allard -sauer -robins -olivares -gillette -chestnut -bourque -paine -lyman -hite -hauser -devore -crawley -chapa -vu -tobias -talbert -poindexter -millard -meador -mcduffie -mattox -kraus -harkins -choate -bess -wren -sledge -sanborn -outlaw -kinder -geary -cornwell -barclay -adam -abney -seward -rhoads -howland -fortier -easter -benner -vines -tubbs -troutman -rapp -noe -mccurdy -harder -deluca -westmoreland -south -havens -guajardo -ely -clary -seal -meehan -herzog -guillen -ashcraft -waugh -renner -milam -jung -elrod -churchill -buford -breaux -bolin -asher -windham -tirado -pemberton -nolen -noland -knott -emmons -cornish -christenson -brownlee -barbee -waldrop -pitt -olvera -lombardi -gruber -gaffney -eggleston -banda -archuleta -still -slone -prewitt -pfeiffer -nettles -mena -mcadams -henning -gardiner -cromwell -chisholm -burleson -box -vest -oglesby -mccarter -malcolm -lumpkin -larue -grey -wofford -vanhorn -thorn -teel -swafford -stclair -stanfield -ocampo -herrmann -hannon -arsenault -roush -mcalister -hiatt -gunderson -forsythe -duggan -delvalle -cintron -wilks -weinstein -uribe -rizzo -noyes -mclendon -gurley -bethea -winstead -maples -harry -guyton -giordano -alderman -valdes -polanco -pappas -lively -grogan -griffiths -bobo -arevalo -whitson -sowell -rendon -matthew -julian -fernandes -farrow -edmond -benavidez -ayres -alicea -stump -smalley -seitz -schulte -gilley -gallant -dewey -casper -canfield -wolford -omalley -mcnutt -mcnulty -mcgovern -hardman -harbin -cowart -chavarria -brink -beckett -bagwell -armstead -anglin -abreu -reynoso -krebs -jett -hoffmann -greenfield -forte -burney -broome -sisson -parent -jude -younger -trammell -partridge -marvin -mace -lomax -lemieux -gossett -frantz -fogle -cooney -broughton -pence -paulsen -neil -muncy -mcarthur -hollins -edward -beauchamp -withers -osorio -mulligan -hoyle -foy -dockery -cockrell -begley -amador -roby -rains -lindquist -gentile -everhart -bohannon -wylie -thao -sommers -purnell -palma -fortin -dunning -breeden -vail -phelan -phan -marx -cosby -colburn -chong -boling -biddle -ledesma -gaddis -denney -chow -bueno -berrios -wicker -tolliver -thibodeaux -nagle -lavoie -fisk -do -crist -barbosa -reedy -march -locklear -kolb -himes -behrens -beckwith -beckham -weems -wahl -shorter -shackelford -rees -muse -free -cerda -valadez -thibodeau -saavedra -ridgeway -reiter -mchenry -majors -lachance -keaton -israel -ferrara -falcon -clemens -blocker -applegate -paz -needham -mojica -kuykendall -hamel -escamilla -doughty -burchett -ainsworth -wilbur -vidal -upchurch -thigpen -strauss -spruill -sowers -riggins -ricker -mccombs -harlow -garnett -buffington -yi -sotelo -olivas -negrete -morey -macon -logsdon -lapointe -florence -cathey -bigelow -bello -westfall -stubblefield -peak -lindley -jeffrey -hein -hawes -farrington -edge -breen -birch -wilde -steed -sepulveda -reinhardt -proffitt -minter -messina -mcnabb -maier -keeler -gamboa -donohue -dexter -basham -shinn -orlando -crooks -cota -borders -bills -bachman -tisdale -tavares -schmid -pickard -jasper -gulley -fonseca -delossantos -condon -clancy -batista -wicks -wadsworth -new -martell -lo -littleton -ison -haag -folsom -brumfield -broyles -brito -mireles -mcdonnell -leclair -hamblin -gough -fanning -binder -winfield -whitworth -soriano -palumbo -newkirk -mangum -hutcherson -comstock -cecil -carlin -beall -bair -wendt -watters -walling -putman -otoole -oliva -morley -mares -lemus -keener -jeffery -hundley -dial -damico -billups -strother -mcfarlane -lamm -eaves -crutcher -caraballo -canty -atwell -taft -siler -rust -rawls -rawlings -prieto -niles -mcneely -mcafee -hulsey -harlan -hackney -galvez -escalante -delagarza -crider -charlton -bandy -wilbanks -stowe -steinberg -samson -renfro -masterson -massie -lanham -haskell -hamrick -fort -dehart -card -burdette -branson -bourne -babin -aleman -worthy -tibbs -sweat -smoot -slack -paradis -packard -mull -luce -houghton -gantt -furman -danner -christianson -burge -broderick -ashford -arndt -almeida -stallworth -shade -searcy -sager -noonan -mclemore -mcintire -maxey -lavigne -jobe -ireland -ferrer -falk -edgar -coffin -byrnes -aranda -apodaca -stamps -rounds -peek -olmstead -lewandowski -kaminski -her -dunaway -bruns -brackett -amato -reich -mcclung -lacroix -koontz -herrick -hardesty -flanders -cousins -close -cato -cade -vickery -shank -nagel -dupuis -croteau -cotter -cable -stuckey -stine -porterfield -pauley -nye -moffitt -lu -knudsen -hardwick -goforth -dupont -blunt -barrows -barnhill -shull -rash -ralph -penny -lorenzo -loftis -lemay -kitchens -horvath -grenier -fuchs -fairbanks -culbertson -calkins -burnside -beattie -ashworth -albertson -wertz -vo -vaught -vallejo -tyree -turk -tuck -tijerina -sage -picard -peterman -otis -marroquin -marr -lantz -hoang -demarco -daily -cone -berube -barnette -wharton -stinnett -slocum -scanlon -sander -pinto -mancuso -lima -judge -headley -epstein -counts -clarkson -carnahan -brice -boren -arteaga -adame -zook -whittle -whitehurst -wenzel -saxton -rhea -reddick -puente -hazel -handley -haggerty -earley -devlin -dallas -chaffin -cady -ahmed -acuna -solano -sigler -pollack -pendergrass -ostrander -janes -francois -fine -crutchfield -cordell -chamberlin -brubaker -baptiste -willson -reis -neeley -mullin -mercier -lira -layman -keeling -higdon -guest -forrester -espinal -dion -chapin -carl -warfield -toledo -pulido -peebles -nagy -montague -mello -lear -jaeger -hogg -graff -furr -derrick -cave -canada -soliz -poore -mendenhall -mclaurin -maestas -low -gable -belt -barraza -tillery -snead -pond -neill -mcculloch -mccorkle -lightfoot -hutchings -holloman -harness -dorn -council -bock -zielinski -turley -treadwell -stpierre -starling -somers -oswald -merrick -marquis -ivory -easterling -bivens -truitt -poston -parry -ontiveros -olivarez -neville -moreau -medlin -ma -lenz -knowlton -fairley -cobbs -chisolm -bannister -woodworth -toler -ocasio -noriega -neuman -moye -milburn -mcclanahan -lilley -hanes -flannery -dellinger -danielson -conti -blodgett -beers -weatherford -strain -karr -hitt -denham -custer -coble -clough -casteel -bolduc -batchelor -ammons -whitlow -tierney -staten -sibley -seifert -schubert -salcedo -mattison -laney -haggard -grooms -dix -dees -cromer -cooks -colson -caswell -zarate -swisher -stacey -shin -ragan -pridgen -mcvey -matheny -leigh -lafleur -franz -ferraro -dugger -whiteside -rigsby -mcmurray -lehmann -large -jacoby -hildebrand -hendrick -headrick -goad -fincher -drury -borges -archibald -albers -woodcock -trapp -soares -seaton -richie -monson -luckett -lindberg -kopp -keeton -hsu -healey -garvey -gaddy -fain -burchfield -badger -wentworth -strand -stack -spooner -saucier -sales -ruby -ricci -plunkett -pannell -ness -leger -hoy -freitas -fong -elizondo -duval -chun -calvin -beaudoin -urbina -stock -rickard -partin -moe -mcgrew -mcclintock -ledoux -forsyth -faison -devries -bertrand -wasson -tilton -scarbrough -pride -oh -leung -larry -irvine -garber -denning -corral -colley -castleberry -bowlin -bogan -beale -baines -true -trice -rayburn -parkinson -pak -nunes -mcmillen -leahy -lea -kimmel -higgs -fulmer -carden -bedford -taggart -spearman -register -prichard -morrill -koonce -heinz -hedges -guenther -grice -findley -earle -dover -creighton -boothe -bayer -arreola -vitale -valles -see -raney -peter -osgood -lowell -hanlon -burley -bounds -worden -weatherly -vetter -tanaka -stiltner -sell -nevarez -mosby -montero -melancon -harter -hamer -goble -gladden -gist -ginn -akin -zaragoza -towns -tarver -sammons -royster -oreilly -muir -morehead -luster -kingsley -kelso -grisham -glynn -baumann -alves -yount -tamayo -tam -paterson -oates -menendez -longo -hargis -greenlee -gillen -desantis -conover -breedlove -wayne -sumpter -scherer -rupp -reichert -heredia -fallon -creel -cohn -clemmons -casas -bickford -belton -bach -williford -whitcomb -tennant -sutter -stull -sessions -mccallum -manson -langlois -keel -keegan -emanuel -dangelo -dancy -damron -clapp -clanton -bankston -trinidad -oliveira -mintz -mcinnis -martens -mabe -laster -jolley -irish -hildreth -hefner -glaser -duckett -demers -brockman -blais -back -alcorn -agnew -toliver -tice -song -seeley -najera -musser -mcfall -laplante -galvin -fajardo -doan -coyne -copley -clawson -cheung -barone -wynne -woodley -tremblay -stoll -sparrow -sparkman -schweitzer -sasser -samples -roney -ramon -legg -lai -joe -heim -farias -concepcion -colwell -christman -bratcher -alba -winchester -upshaw -southerland -sorrell -shay -sells -mount -mccloskey -martindale -luttrell -loveless -lovejoy -linares -latimer -holly -embry -coombs -bratton -bostick -boss -venable -tuggle -toro -staggs -sandlin -jefferies -heckman -griffis -crayton -clem -button -browder -allan -thorton -sturgill -sprouse -royer -rousseau -ridenour -pogue -perales -peeples -metzler -mesa -mccutcheon -mcbee -jay -hornsby -heffner -corrigan -armijo -vue -romeo -plante -peyton -paredes -macklin -hussey -hodgson -granados -frias -carman -brent -becnel -batten -almanza -turney -teal -sturgeon -meeker -mcdaniels -limon -keeney -kee -hutto -holguin -gorham -fishman -fierro -blanchette -rodrigue -reddy -osburn -oden -lerma -kirkwood -keefer -haugen -hammett -chalmers -carlos -brinkman -baumgartner -zhang -valerio -tellez -steffen -shumate -sauls -ripley -kemper -jacks -guffey -evers -craddock -carvalho -blaylock -banuelos -balderas -wooden -wheaton -turnbull -shuman -pointer -mosier -mccue -ligon -kozlowski -johansen -ingle -herr -briones -southern -snipes -rickman -pipkin -peace -pantoja -orosco -moniz -lawless -kunkel -hibbard -galarza -enos -bussey -settle -schott -salcido -perreault -mcdougal -mccool -haight -garris -ferry -easton -conyers -atherton -wimberly -utley -stephen -spellman -smithson -slagle -skipper -ritchey -rand -petit -osullivan -oaks -nutt -mcvay -mccreary -mayhew -knoll -jewett -harwood -hailey -cardoza -ashe -arriaga -andres -zeller -wirth -whitmire -stauffer -spring -rountree -redden -mccaffrey -martz -loving -larose -langdon -humes -gaskin -faber -doll -devito -cass -almond -wingfield -wingate -villareal -tyner -smothers -severson -reno -pennell -maupin -leighton -janssen -hassell -hallman -halcomb -folse -fitzsimmons -fahey -cranford -bolen -battles -battaglia -wooldridge -weed -trask -rosser -regalado -mcewen -keefe -fuqua -echevarria -domingo -dang -caro -boynton -andrus -wild -viera -vanmeter -taber -spradlin -seibert -provost -prentice -oliphant -laporte -hwang -hatchett -hass -greiner -freedman -covert -chilton -byars -wiese -venegas -swank -shrader -roderick -roberge -mullis -mortensen -mccune -marlowe -kirchner -keck -isaacson -hostetler -halverson -gunther -griswold -gerard -fenner -durden -blackwood -bertram -ahrens -sawyers -savoy -nabors -mcswain -mackay -loy -lavender -lash -labbe -jessup -hubert -fullerton -donnell -cruse -crittenden -correia -centeno -caudle -canady -callender -alarcon -ahern -winfrey -tribble -tom -styles -salley -roden -musgrove -minnick -fortenberry -carrion -bunting -bethel -batiste -woo -whited -underhill -stillwell -silvia -rauch -pippin -perrin -messenger -mancini -lister -kinard -hartmann -fleck -broadway -wilt -treadway -thornhill -speed -spalding -sam -rafferty -pitre -patino -ordonez -linkous -kelleher -homan -holiday -galbraith -feeney -dorris -curtin -coward -camarillo -buss -bunnell -bolt -beeler -autry -alcala -witte -wentz -stidham -shively -nunley -meacham -martins -lemke -lefebvre -kaye -hynes -horowitz -hoppe -holcombe -estrella -dunne -derr -cochrane -brittain -bedard -beauregard -torrence -strunk -soria -simonson -shumaker -scoggins -packer -oconner -moriarty -leroy -kuntz -ives -hutcheson -horan -hales -garmon -fitts -dell -bohn -atchison -worth -wisniewski -will -vanwinkle -sturm -sallee -prosser -moen -lundberg -kunz -kohl -keane -jorgenson -jaynes -funderburk -freed -frame -durr -creamer -cosgrove -candelaria -berlin -batson -vanhoose -thomsen -teeter -sommer -smyth -sena -redmon -orellana -maness -lennon -heflin -goulet -frick -forney -dollar -bunker -asbury -aguiar -talbott -southard -pleasant -mowery -mears -lemmon -krieger -hickson -gracia -elston -duong -delgadillo -dayton -dasilva -conaway -catron -bruton -bradbury -bordelon -bivins -bittner -bergstrom -beals -abell -whelan -travers -tejada -pulley -pino -norfleet -nealy -maes -loper -held -gerald -gatewood -frierson -freund -finnegan -cupp -covey -catalano -boehm -bader -yoon -walston -tenney -sipes -roller -rawlins -medlock -mccaskill -mccallister -marcotte -maclean -hughey -henke -harwell -gladney -gilson -dew -chism -caskey -brandenburg -baylor -villasenor -veal -van -thatcher -stegall -shore -petrie -nowlin -navarrete -muhammad -lombard -loftin -lemaster -kroll -kovach -kimbrell -kidwell -hershberger -fulcher -eng -cantwell -bustos -boland -bobbitt -binkley -wester -weis -verdin -tong -tiller -sisco -sharkey -seymore -rosenbaum -rohr -quinonez -pinkston -nation -malley -logue -lessard -lerner -lebron -krauss -klinger -halstead -haller -getz -burrow -brant -alger -victor -shores -scully -pounds -pfeifer -perron -nelms -munn -mcmaster -mckenney -manns -knudson -hutchens -huskey -goebel -flagg -cushman -click -castellano -carder -bumgarner -blaine -bible -wampler -spinks -robson -neel -mcreynolds -mathias -maas -loera -kasper -jose -jenson -florez -coons -buckingham -brogan -berryman -wilmoth -wilhite -thrash -shephard -seidel -schulze -roldan -pettis -obryan -maki -mackie -hatley -frazer -fiore -falls -chesser -bui -bottoms -bisson -benefield -allman -wilke -trudeau -timm -shifflett -rau -mundy -milliken -mayers -leake -kohn -huntington -horsley -hermann -guerin -fryer -frizzell -foret -flemming -fife -criswell -carbajal -bozeman -boisvert -archie -antonio -angulo -wallen -tapp -silvers -ramsay -oshea -orta -moll -mckeever -mcgehee -luciano -linville -kiefer -ketchum -howerton -groce -gaylord -gass -fusco -corbitt -blythe -betz -bartels -amaral -aiello -yoo -weddle -troy -sun -sperry -seiler -runyan -raley -overby -osteen -olds -mckeown -mauro -matney -lauer -lattimore -hindman -hartwell -fredrickson -fredericks -espino -clegg -carswell -cambell -burkholder -august -woodbury -welker -totten -thornburg -theriault -stitt -stamm -stackhouse -simone -scholl -saxon -rife -razo -quinlan -pinkerton -olivo -nesmith -nall -mattos -leak -lafferty -justus -giron -geer -fielder -eagle -drayton -dortch -conners -conger -chau -boatwright -billiot -barden -armenta -antoine -tibbetts -steadman -slattery -sides -rinaldi -raynor -rayford -pinckney -pettigrew -nickel -milne -matteson -halsey -gonsalves -fellows -durand -desimone -cowley -cowles -brill -barham -barela -barba -ashmore -withrow -valenti -tejeda -spriggs -sayre -salerno -place -peltier -peel -merriman -matheson -lowman -lindstrom -hyland -homer -ha -giroux -fries -frasier -earls -dugas -damon -dabney -collado -briseno -baxley -andre -word -whyte -wenger -vanover -vanburen -thiel -schindler -schiller -rigby -pomeroy -passmore -marble -manzo -mahaffey -lindgren -laflamme -greathouse -fite -ferrari -calabrese -bayne -yamamoto -wick -townes -thames -steel -reinhart -peeler -naranjo -montez -mcdade -mast -markley -marchand -leeper -kong -kellum -hudgens -hennessey -hadden -guess -gainey -coppola -borrego -bolling -beane -ault -slaton -poland -pape -null -mulkey -lightner -langer -hillard -glasgow -fabian -ethridge -enright -derosa -baskin -alfred -weinberg -turman -tinker -somerville -pardo -noll -lashley -ingraham -hiller -hendon -glaze -flora -cothran -cooksey -conte -carrico -apple -abner -wooley -swope -summerlin -sturgis -sturdivant -stott -spurgeon -spillman -speight -roussel -popp -nutter -mckeon -mazza -magnuson -lanning -kozak -jankowski -heyward -forster -corwin -callaghan -bays -wortham -usher -theriot -sayers -sabo -rupert -poling -nathan -loya -lieberman -levi -laroche -labelle -howes -harr -garay -fogarty -everson -durkin -dominquez -chaves -chambliss -alfonso -witcher -wilber -vieira -vandiver -terrill -stoker -schreiner -nestor -moorman -liddell -lew -lawhorn -krug -irons -hylton -hollenbeck -herrin -hembree -hair -goolsby -goodin -gilmer -foltz -dinkins -daughtry -caban -brim -briley -bilodeau -bear -wyant -vergara -tallent -swearingen -stroup -sherry -scribner -roger -quillen -pitman -monaco -mccants -maxfield -martinson -landon -holtz -flournoy -brookins -brody -baumgardner -angelo -straub -sills -roybal -roundtree -oswalt -money -mcgriff -mcdougall -mccleary -maggard -gragg -gooding -godinez -doolittle -donato -cowell -cassell -bracken -appel -ahmad -zambrano -reuter -perea -olive -nakamura -monaghan -mickens -mcclinton -mcclary -marler -kish -judkins -gilbreath -freese -flanigan -felts -erdmann -dodds -chew -brownell -brazil -boatright -barreto -slayton -sandberg -saldivar -pettway -odum -narvaez -moultrie -montemayor -merrell -lees -keyser -hoke -hardaway -hannan -gilbertson -fogg -dumont -deberry -coggins -carrera -buxton -bucher -broadnax -beeson -araujo -appleton -amundson -aguayo -ackley -yocum -worsham -shivers -shelly -sanches -sacco -robey -rhoden -pender -ochs -mccurry -madera -luong -luis -knotts -jackman -heinrich -hargrave -gault -forest -comeaux -chitwood -child -caraway -boettcher -bernhardt -barrientos -zink -wickham -whiteman -thorp -stillman -settles -schoonover -roque -riddell -rey -pilcher -phifer -novotny -maple -macleod -hardee -haase -grider -fredrick -earnest -doucette -clausen -christmas -bevins -beamon -badillo -tolley -tindall -soule -snook -sebastian -seale -pitcher -pinkney -pellegrino -nowell -nemeth -nail -mondragon -mclane -lundgren -ingalls -hudspeth -hixson -gearhart -furlong -downes -dionne -dibble -deyoung -cornejo -camara -brookshire -boyette -wolcott -tracey -surratt -sellars -segal -salyer -reeve -rausch -philips -labonte -haro -gower -freeland -fawcett -eads -driggers -donley -collett -cage -bromley -boatman -ballinger -baldridge -volz -trombley -stonge -silas -shanahan -rivard -rhyne -pedroza -matias -mallard -jamieson -hedgepeth -hartnett -estevez -eskridge -denman -chiu -chinn -catlett -carmack -buie -book -bechtel -beardsley -bard -ballou -windsor -ulmer -storm -skeen -robledo -rincon -reitz -piazza -pearl -munger -moten -mcmichael -loftus -ledet -kersey -groff -fowlkes -folk -crumpton -collette -clouse -bettis -villagomez -timmerman -strom -saul -santoro -roddy -phillip -penrod -musselman -macpherson -leboeuf -harless -haddad -guido -golding -fulkerson -fannin -dulaney -dowdell -deane -cottle -ceja -cate -bosley -benge -albritton -voigt -trowbridge -soileau -seely -rome -rohde -pearsall -paulk -orth -nason -mota -mcmullin -marquardt -madigan -hoag -gillum -gayle -gabbard -fenwick -fender -eck -danforth -cushing -cress -creed -cazares -casanova -bey -bettencourt -barringer -baber -stansberry -schramm -rutter -rivero -race -oquendo -necaise -mouton -montenegro -miley -mcgough -marra -macmillan -lock -lamontagne -jasso -jaime -horst -hetrick -heilman -gaytan -gall -fried -fortney -eden -dingle -desjardins -dabbs -burbank -brigham -breland -beaman -banner -arriola -yarborough -wallin -treat -toscano -stowers -reiss -pichardo -orton -mitchel -michels -mcnamee -mccrory -leatherman -kell -keister -jerome -horning -hargett -guay -friday -ferro -deboer -dagostino -clemente -christ -carper -bowler -blanks -beaudry -willie -towle -tafoya -stricklin -strader -soper -sonnier -sigmon -schenk -saddler -rodman -pedigo -mendes -lunn -lohr -lahr -kingsbury -jarman -hume -holliman -hofmann -haworth -harrelson -hambrick -flick -edmunds -dacosta -crossman -colston -chaplin -carrell -budd -weiler -waits -viola -valentino -trantham -tarr -straight -solorio -roebuck -powe -plank -pettus -palm -pagano -mink -luker -leathers -joslin -hartzell -gambrell -fears -deutsch -cepeda -carty -caputo -brewington -bedell -ballew -applewhite -warnock -walz -urena -tudor -reel -pigg -parton -mickelson -meagher -mclellan -mcculley -mandel -leech -lavallee -kraemer -kling -kipp -kingston -kehoe -hochstetler -harriman -gregoire -grabowski -gosselin -gammon -fancher -edens -desai -butt -brannan -armendariz -woolsey -whitehouse -whetstone -ussery -towne -tower -testa -tallman -studer -strait -steinmetz -sorrells -sauceda -rolfe -rae -paddock -mitchem -mcginn -mccrea -luck -lovato -ling -hazen -gilpin -gaynor -fike -devoe -delrio -curiel -burkhardt -bristol -bode -backus -alton -zinn -watanabe -wachter -vanpelt -turnage -shaner -schroder -sato -riordan -quimby -portis -natale -mckoy -mccown -marker -lucio -kilmer -karl -hotchkiss -hesse -halbert -gwinn -godsey -desmond -delisle -chrisman -canter -brook -arbogast -angell -acree -yancy -woolley -wesson -weatherspoon -trainor -stockman -spiller -sipe -rooks -reavis -propst -porras -neilson -mullens -loucks -llewellyn -lamont -kumar -koester -klingensmith -kirsch -kester -honaker -hodson -hennessy -helmick -garrity -garibay -fee -drain -casarez -callis -botello -bay -aycock -avant -angle -wingard -wayman -tully -theisen -szymanski -stansbury -segovia -rudy -rainwater -preece -pirtle -padron -mincey -mckelvey -mathes -marty -larrabee -kornegay -klug -judy -ingersoll -hecht -germain -eggers -dykstra -denis -deering -decoteau -deason -dearing -cofield -carrigan -brush -bonham -bahr -aucoin -appleby -almonte -yager -womble -wimmer -weimer -vanderpool -stancil -sprinkle -romine -remington -pfaff -peckham -olivera -meraz -maze -lathrop -koehn -jonas -hazelton -halvorson -hallock -haddock -ducharme -dehaven -colton -caruthers -brehm -bosworth -bost -blow -bias -beeman -basile -bane -aikens -zachary -wold -walther -tabb -suber -strawn -stocks -stocker -shirey -schlosser -salvador -riedel -rembert -reimer -pyles -pickle -peele -merriweather -letourneau -latta -kidder -hixon -hillis -hight -herbst -henriquez -haygood -hamill -gabel -fritts -eubank -duty -dawes -correll -coffee -cha -bushey -buchholz -brotherton -bridge -botts -barnwell -auger -atchley -westphal -veilleux -ulloa -truman -stutzman -shriver -ryals -prior -pilkington -newport -moyers -miracle -marrs -mangrum -maddux -lockard -laing -kuhl -harney -hammock -hamlett -felker -doerr -depriest -carrasquillo -carothers -bogle -blood -bischoff -bergen -albanese -wyckoff -vermillion -vansickle -thibault -tetreault -stickney -shoemake -ruggiero -rawson -racine -philpot -paschal -mcelhaney -mathison -legrand -lapierre -kwan -kremer -jiles -hilbert -geyer -faircloth -ehlers -egbert -desrosiers -dalrymple -cotten -cashman -cadena -breeding -boardman -alcaraz -ahn -wyrick -therrien -tankersley -strickler -puryear -plourde -pattison -pardue -milan -mcginty -mcevoy -landreth -kuhns -koon -hewett -giddens -everette -emerick -eades -deangelis -cosme -ceballos -birdsong -benham -bemis -armour -anguiano -angeles -welborn -tsosie -storms -shoup -sessoms -samaniego -rood -rojo -rhinehart -raby -northcutt -myer -munguia -morehouse -more -mcdevitt -mateo -mallett -lozada -lemoine -kuehn -hallett -grim -gillard -gaylor -garman -gallaher -feaster -faris -darrow -dardar -coney -carreon -byron -braithwaite -boylan -boyett -born -bixler -bigham -benford -barragan -barnum -zuber -wyche -westcott -vining -stoltzfus -simonds -shupe -sabin -ruble -rittenhouse -richman -perrone -mulholland -millan -meister -mathew -lomeli -kite -jemison -hulett -holler -hickerson -herold -hazelwood -griffen -gause -forde -eisenberg -dilworth -charron -chaisson -brodie -bristow -breunig -brace -boutwell -bentz -belk -bayless -batchelder -baran -baeza -zimmermann -weathersby -volk -toole -theis -tedesco -shine -searle -schenck -satterwhite -sandy -ruelas -royce -rankins -partida -nesbit -morel -menchaca -levasseur -kaylor -johnstone -hulse -hollar -hersey -harrigan -harbison -guyer -gish -giese -gerlach -geller -geisler -falcone -ernest -elwell -doucet -deese -darr -corder -chafin -byler -bussell -burdett -brasher -bowe -bellinger -bastian -barner -alleyne -wilborn -weil -wegner -wales -tatro -spitzer -smithers -schoen -resendez -pete -parisi -overman -obrian -mudd -moy -mclaren -mahler -maggio -lindner -lalonde -lacasse -laboy -killion -kahl -jessen -jamerson -houk -henshaw -gustin -groom -graber -durst -duenas -davey -cundiff -conlon -colunga -coakley -chiles -capers -buell -bricker -bissonnette -birmingham -bartz -bagby -zayas -volpe -treece -toombs -thom -terrazas -swinney -skiles -silveira -shouse -senn -rambo -ramage -nez -moua -marlin -malik -langham -kyles -holston -hoagland -herd -hector -feller -emory -denison -corliss -carraway -burford -bickel -ambriz -abercrombie -yamada -winner -weidner -waddle -verduzco -thurmond -swindle -schrock -sanabria -rosenberger -probst -peabody -olinger -neighbors -nazario -mccafferty -mcbroom -mcabee -mazur -matherne -mapes -leverett -killingsworth -heisler -griego -grande -gosnell -frankel -franke -ferrante -fenn -elmer -ehrlich -christopherso -chick -chasse -chancellor -caton -brunelle -bly -bloomfield -babbitt -azevedo -abramson -ables -abeyta -youmans -wozniak -wainwright -summer -stowell -smitherman -sites -samuelson -runge -rule -rothman -rosenfeld -quan -peake -oxford -owings -olmos -munro -moreira -leatherwood -larkins -krantz -kovacs -kizer -kindred -karnes -jaffe -hubbell -hosey -hauck -harold -goodell -favors -erdman -dvorak -doane -cureton -cofer -buehler -bierman -berndt -banta -annis -abram -abdullah -warwick -waltz -turcotte -trinh -torrey -stith -seger -sachs -quesada -pinder -peppers -pascual -paschall -parkhurst -ozuna -oster -nicholls -mortimer -lheureux -lavalley -kimura -jablonski -haun -gourley -gilligan -fix -derby -croy -cotto -cargill -burwell -burgett -buckman -brett -booher -adorno -wrenn -whittemore -urias -szabo -sayles -saiz -rutland -rael -plant -pharr -penney -pelkey -ogrady -nickell -musick -moats -mather -massa -laurent -kirschner -kieffer -kellar -hendershot -gott -godoy -gadson -furtado -fiedler -erskine -edison -dutcher -dever -daggett -chevalier -chao -brake -ballesteros -amerson -alejandro -wingo -waldon -trott -spikes -silvey -showers -schlegel -rue -ritz -pepin -pelayo -parsley -palermo -moorehead -mchale -lett -kocher -kilburn -iglesias -humble -hulbert -huckaby -hix -haven -hartford -hardiman -gurney -grigg -grasso -goings -fillmore -farber -depew -dandrea -dame -cowen -covarrubias -cory -burrus -bracy -ardoin -thompkins -suzuki -standley -russel -radcliffe -pohl -persaud -percy -parenteau -pabon -newson -newhouse -napolitano -mulcahy -maya -malave -keim -hooten -hernandes -heffernan -hearne -greenleaf -glick -fuhrman -fetter -faria -dishman -dickenson -crites -criss -clapper -chenault -castor -casto -bugg -bove -bonney -blessing -ard -anderton -allgood -alderson -woodman -wisdom -warrick -toomey -tooley -tarrant -summerville -stebbins -sokol -sink -searles -schutz -schumann -scheer -remillard -raper -proulx -palmore -monroy -miguel -messier -melo -melanson -mashburn -manzano -lussier -lovely -lien -jenks -huneycutt -hartwig -grimsley -fulk -fielding -fidler -engstrom -eldred -dantzler -crandell -ching -calder -brumley -breton -brann -bramlett -boykins -bianco -bancroft -almaraz -alcantar -whitmer -whitener -welton -vineyard -su -rahn -paquin -mizell -mix -mcmillin -mckean -marston -maciel -lundquist -louie -liggins -lampkin -kranz -koski -kirkham -jiminez -hazzard -harrod -graziano -grammer -gendron -garrido -fordham -englert -elwood -dryden -demoss -deluna -crabb -comeau -claudio -brummett -blume -benally -wessel -vanbuskirk -thorson -stumpf -stockwell -rocco -reams -radtke -rackley -pelton -niemi -newland -nelsen -morrissette -miramontes -mcginley -mccluskey -marley -marchant -luevano -lampe -lail -jeffcoat -infante -hu -hinman -gaona -erb -eady -desmarais -decosta -dansby -cisco -choe -breckenridge -bostwick -borg -bianchi -beer -alberts -adrian -wilkie -whorton -vargo -tait -sylvia -soucy -schuman -ousley -mumford -lum -lippert -leath -lavergne -laliberte -kirksey -kenner -johnsen -izzo -hiles -gullett -greenwell -gaspar -galbreath -gaitan -ericson -duck -delapaz -croom -cottingham -clift -bushnell -boozer -bice -bernardo -beason -arrowood -waring -voorhees -truax -shreve -shockey -schatz -sandifer -rubino -rozier -roseberry -roll -player -pieper -peden -nester -nave -murphey -malinowski -macgregor -liang -lafrance -kunkle -kirkman -jorge -hipp -hasty -haddix -gervais -gerdes -garfield -gamache -fouts -fitzwater -dillingham -deming -deanda -cedeno -cannady -burson -bouldin -arceneaux -woodhouse -whitford -wescott -welty -weigel -torgerson -toms -surber -sunderland -sterner -setzer -salvatore -riojas -pumphrey -puga -pedro -patch -metts -mcgarry -mccandless -magill -lupo -loveland -llamas -leclerc -koons -kahler -huss -holbert -heintz -haupt -grimmett -gaskill -flower -ellingson -dorr -dingess -deweese -desilva -crossley -cordeiro -converse -conde -cheeks -caldera -cairns -burmeister -burkhalter -brawner -bott -youngs -vierra -valladares -tiffany -shrum -shropshire -sevilla -rusk -roof -rodarte -pedraza -nino -montana -merino -mcminn -markle -mapp -lucia -lajoie -koerner -kittrell -kato -hyder -hollifield -heiser -hazlett -greenwald -fant -eldredge -dreher -delafuente -cravens -claypool -beecher -aronson -alanis -worthen -wojcik -winger -whitacre -wellington -valverde -valdivia -troupe -thrower -swindell -suttles -suh -stroman -spires -slate -shealy -sarver -sartin -sadowski -rondeau -rolon -rick -rex -rascon -priddy -pine -paulino -nolte -munroe -molloy -mellon -mciver -lykins -loggins -lillie -lenoir -klotz -kempf -jone -hupp -hollowell -hollander -haynie -hassan -harkness -harker -gottlieb -frith -eddins -driskell -doggett -densmore -charette -cassady -carrol -byrum -burcham -buggs -benn -whitted -warrington -vandusen -vaillancourt -steger -spell -siebert -scofield -quirk -purser -plumb -orcutt -northern -nordstrom -mosely -michalski -mcphail -mcdavid -mccraw -martini -marchese -mannino -leo -lefevre -largent -lanza -kress -isham -hunsaker -hoch -hildebrandt -guarino -grijalva -graybill -fick -ewell -ewald -deangelo -cusick -crumley -coston -cathcart -carruthers -bullington -brian -bowes -blain -blackford -barboza -yingling -woodland -wert -weiland -varga -silverstein -sievers -shuster -shumway -scudder -runnels -rumsey -renfroe -provencher -polley -mohler -middlebrooks -kutz -koster -korn -grow -groth -glidden -fazio -deen -corn -copper -chipman -chenoweth -champlin -cedillo -carrero -carmody -buckles -brien -boutin -bosch -bill -berkowitz -altamirano -wilfong -wiegand -waites -truesdale -toussaint -tobey -tedder -steelman -sirois -schnell -robichaud -ridge -richburg -pray -plumley -pizarro -piercy -ortego -oberg -neace -music -mickey -mertz -mcnew -matta -lawyer -lapp -lair -kibler -jessie -howlett -hollister -hofer -hatten -hagler -germany -falgoust -engelhardt -eberle -eastwood -dombrowski -dinsmore -daye -cool -casares -capone -braud -balch -autrey -wendel -tyndall -toy -strobel -stoltz -spinelli -serrato -rochester -reber -real -rathbone -palomino -noah -nickels -mayle -mathers -mach -loeffler -littrell -levinson -leong -lemire -lejeune -lazo -lasley -koller -kennard -jester -hoelscher -hintz -hagerman -greaves -fore -eudy -engler -corrales -cordes -brunet -bidwell -bennet -bare -tyrrell -tharpe -swinton -stribling -steven -southworth -sisneros -shane -savoie -samons -ruvalcaba -roscoe -ries -ramer -omara -mosqueda -millar -mcpeak -macomber -luckey -litton -lehr -lavin -hubbs -hoard -hibbs -hagans -futrell -exum -evenson -dicks -culler -chou -carbaugh -callen -brashear -bloomer -blakeney -bigler -addington -woodford -witter -unruh -tolentino -sumrall -stgermain -smock -sherer -salem -rochelle -rayner -pooler -oquinn -nero -milano -mcglothlin -mars -linden -kowal -kerrigan -ibrahim -harvell -hanrahan -goodall -geist -fussell -fung -ferebee -federico -eley -eggert -dorsett -dingman -destefano -colucci -clemmer -caesar -burnell -brumbaugh -boddie -berryhill -avelar -alcantara -abbey -winder -winchell -vandenberg -trotman -thurber -thibeault -stlouis -stilwell -sperling -shattuck -sarmiento -ruppert -rumph -renaud -randazzo -rademacher -quiles -pearman -palomo -mercurio -lowrey -lindeman -lawlor -larosa -lander -labrecque -kimber -hovis -holifield -henninger -hawkes -hartfield -hann -hague -genovese -garrick -fudge -frink -eddings -dinh -dear -cutter -cribbs -constant -calvillo -bunton -brodeur -bolding -blanding -agosto -zahn -wiener -trussell -tew -tello -teixeira -stephan -speck -sharma -shanklin -sealy -scanlan -santamaria -roundy -robichaux -ringer -rigney -prevost -polson -philip -pass -nord -moxley -mohammed -medford -mccaslin -mcardle -macarthur -lewin -lasher -ketcham -keiser -heine -hackworth -grose -grizzle -grass -gillman -gartner -garth -frazee -fleury -fast -edson -edmonson -derry -deck -cronk -conant -burress -burgin -broom -brockington -bolick -boger -birchfield -billington -baily -bahena -armbruster -anson -yoho -wilcher -tinney -timberlake -thoma -thielen -sutphin -stultz -sikora -serra -schulman -scheffler -santillan -robin -rego -preciado -pinkham -monday -mickle -luu -lomas -lizotte -lent -lenard -kellerman -keil -juan -johanson -hernadez -hartsfield -hang -haber -gorski -farkas -eberhardt -duquette -delano -cropper -cozart -cockerham -chamblee -cartagena -cahoon -buzzell -brister -brewton -blackshear -benfield -aston -ashburn -arruda -wetmore -weise -vaccaro -tucci -sudduth -stromberg -stoops -showalter -shears -runion -rowden -rosenblum -riffle -renfrow -peres -obryant -nicolas -leftwich -lark -landeros -kistler -killough -kerley -kastner -hoggard -hartung -guertin -govan -gatling -gailey -fullmer -fulford -flatt -esquibel -endicott -edmiston -edelstein -dufresne -dressler -dickman -chee -busse -bonnett -bogart -berard -barrington -arena -anton -yoshida -velarde -veach -vanhouten -vachon -tolson -tolman -tennyson -stites -soler -shutt -ruggles -rhone -pegues -ong -neese -muro -moncrief -mefford -mcphee -mcmorris -mceachern -mcclurg -mansour -mai -mader -leija -lecompte -lafountain -labrie -jaquez -heald -hash -hartle -gainer -frisby -farina -eidson -edgerton -dyke -durrett -duhon -cuomo -cobos -cervantez -bybee -brockway -borowski -binion -beery -arguello -amaro -acton -yuen -winton -wigfall -weekley -vidrine -vannoy -tardiff -shoop -shilling -schick -sand -safford -prendergast -pilgrim -pellerin -osuna -nissen -nalley -moritz -moller -messner -messick -merry -merrifield -mcguinness -matherly -marcano -mahone -lemos -lebrun -jara -hoffer -hewlett -herren -hecker -haws -haug -hack -gwin -gober -gilliard -fredette -favela -echeverria -downer -donofrio -desrochers -dee -crozier -corson -clyde -bechtold -argueta -aparicio -zamudio -willette -westover -westerman -utter -troyer -thies -tapley -slavin -shirk -sandler -roop -rimmer -raymer -range -radcliff -otten -moorer -millet -mckibben -mccutchen -mcavoy -mcadoo -mayorga -mastin -martineau -marek -madore -leflore -kroeger -kennon -jimerson -javier -hostetter -hornback -hendley -hance -guardado -granado -gowen -goodale -flinn -fleetwood -fitz -durkee -duprey -dipietro -dilley -clyburn -brawley -beckley -arana -weatherby -vollmer -victoria -vestal -tunnell -trigg -tingle -takahashi -sweatt -storer -snapp -shiver -rooker -red -rathbun -poisson -perrine -perri -pastor -parmer -parke -pare -papa -palmieri -nottingham -midkiff -mecham -mccomas -mcalpine -lovelady -lillard -lally -knopp -kile -kiger -haile -gupta -goldsberry -gilreath -fulks -friesen -franzen -flack -findlay -ferland -dreyer -dore -dennard -deckard -debose -crim -coulombe -cork -chancey -cantor -branton -bissell -barns -woolard -witham -wasserman -waldo -spiegel -shoffner -scholz -ruch -rossman -ready -petry -palacio -paez -neary -mortenson -millsap -miele -mick -menke -mckim -mcanally -martines -manor -malcom -lemley -larochelle -klaus -klatt -kaufmann -kapp -helmer -hedge -halloran -glisson -frechette -fontana -enoch -eagan -drum -distefano -danley -creekmore -chartier -chaffee -carillo -burg -bolinger -berkley -benz -basso -bash -barrier -zelaya -woodring -witkowski -wilmot -wilkens -wieland -virgil -verdugo -urquhart -tsai -timms -swiger -swaim -sussman -scarlett -pires -molnar -mcatee -maurice -lowder -loos -linker -landes -kingery -keeley -hufford -higa -hendren -hammack -hamann -gillam -gerhardt -fell -eugene -edelman -eby -delk -deans -curl -constantine -cleaver -claar -casiano -carruth -carlyle -bump -brophy -bolanos -bibbs -bessette -beggs -baugher -bartel -averill -andresen -amin -alden -adames -wildman -via -valente -turnbow -tse -swink -sublett -stroh -stringfellow -ridgway -pugliese -poteat -pang -ohare -neubauer -murchison -mohamed -mingo -lucky -lemmons -kwon -kellam -kean -jarmon -hyden -hudak -hollinger -henkel -hemingway -hasson -hansel -halter -haire -goodnight -ginsberg -gillispie -fogel -flory -etter -elledge -eckman -deas -currin -crafton -coomer -colter -claxton -bulter -braddock -bowyer -blizzard -binns -bing -bellows -baskerville -barros -ansley -woolf -wight -waldman -wadley -tull -trull -tesch -struck -stouffer -stadler -slay -shubert -sedillo -santacruz -reinke -raleigh -poynter -neri -neale -natividad -mowry -moralez -monger -mitchum -merryman -manion -macdougall -lux -litchfield -ley -levitt -lepage -lasalle -laine -khoury -kavanagh -karns -ivie -huebner -hodgkins -halpin -garica -eversole -dutra -dunagan -duffey -dillman -dillion -deville -dearborn -damato -courson -coulson -burdine -bryce -bousquet -bonin -bish -atencio -westbrooks -wages -vaca -tye -toner -tomas -tillis -swett -surface -struble -stanfill -son -solorzano -slusher -sipple -sim -silvas -shults -schexnayder -saez -rodas -rager -pulver -plaza -penton -paniagua -meneses -mcfarlin -mcauley -matz -maloy -magruder -lohman -landa -lacombe -jaimes -hom -holzer -holst -heil -hackler -grundy -gregor -gilkey -farnham -durfee -dunton -dunston -duda -dews -dana -craver -corriveau -conwell -colella -chambless -bremer -boutte -bourassa -blaisdell -backman -babineaux -audette -alleman -towner -taveras -tarango -sullins -suiter -stallard -solberg -schlueter -poulos -pimental -owsley -olivier -okelley -nations -moffatt -metcalfe -meekins -medellin -mcglynn -mccowan -marriott -marable -lennox -lamoureux -koss -kerby -karp -jason -isenberg -howze -hockenberry -highsmith -harbour -hallmark -gusman -greeley -giddings -gaudet -gallup -fleenor -eicher -edington -dimaggio -dement -demello -decastro -cruise -bushman -brundage -brooker -brooke -bourg -board -blackstock -bergmann -beaton -banister -argo -appling -wortman -watterson -villalpando -tillotson -tighe -sundberg -sternberg -stamey -speaks -shipe -seeger -scarberry -sattler -sain -rothstein -poteet -plowman -pettiford -penland -peach -partain -pankey -oyler -ogletree -ogburn -moton -million -merkel -mask -markus -lucier -lazarus -lavelle -lakey -kratz -kinser -kershaw -josephson -jesse -imhoff -ibanez -hendry -hammon -frisbie -friedrich -frawley -fraga -forester -eskew -emmert -drennan -doyon -dominick -dandridge -cumming -cawley -carvajal -bracey -belisle -batey -ahner -wysocki -weiser -veliz -tincher -sherlock -santo -sansone -sankey -sandstrom -sale -rohrer -risner -pridemore -pfeffer -persinger -peery -oubre -orange -nowicki -musgrave -murdoch -mullinax -mccary -mathieu -livengood -leonardo -kyser -klink -kimes -kellner -kavanaugh -kasten -imes -hoey -hinshaw -halley -hake -gurule -grube -grillo -geter -gatto -garver -garretson -farwell -eiland -dunford -decarlo -corso -core -colman -collard -cleghorn -chasteen -cavender -carlile -calvo -byerly -brogdon -broadwater -breault -bono -bergin -behr -ballenger -amick -yan -vice -tamez -stiffler -steinke -simmon -shankle -schaller -salmons -sackett -saad -rideout -reader -ratcliffe -rao -ranson -randell -plascencia -petterson -olszewski -olney -olguin -nilsson -nevels -morelli -montiel -monge -michell -michaelson -mertens -mcchesney -mcalpin -mathewson -lower -loudermilk -lineberry -liggett -lamp -kinlaw -kight -just -jost -hereford -hardeman -halpern -halliday -hafer -gaul -friel -freitag -frances -forsberg -evangelista -doering -dicarlo -dendy -delp -deguzman -dameron -curtiss -cousin -cosper -charley -cauthen -cao -camper -bradberry -bouton -bonnell -bixby -bieber -beveridge -belle -bedwell -barhorst -bannon -baltazar -baier -ayotte -attaway -arenas -alex -abrego -watford -valley -turgeon -tunstall -thaxton -thai -tenorio -stotts -sthilaire -spiker -shedd -seng -seabolt -scalf -salyers -ruhl -rowlett -robinett -pfister -perlman -pepe -parkman -paradise -olin -nunnally -norvell -napper -modlin -mckellar -mcclean -mascarenas -manchester -leibowitz -ledezma -kuhlman -kobayashi -hunley -holmquist -hinkley -hazard -hartsell -gribble -gravely -fifield -eliason -doctor -doak -crossland -cover -clair -carleton -butters -bridgeman -bojorquez -boggess -banker -auten -woosley -wine -whiteley -wexler -twomey -tullis -townley -to -standridge -stamp -springs -santoyo -rueda -riendeau -revell -pless -ottinger -nigro -nickles -mulvey -menefee -mcshane -mcloughlin -mckinzie -marrow -markey -mariano -lockridge -lipsey -knisley -knepper -kitts -kiel -jinks -hathcock -godin -gallego -fikes -fecteau -estabrook -ellinger -dustin -dunlop -dudek -diego -countryman -chauvin -chatham -bullins -brownfield -boughton -bloodworth -bibb -baucom -barbieri -aubin -armitage -alessi -absher -abbate -zito -woolery -wiggs -wacker -violette -tynes -tolle -telles -tarter -swarey -strode -stockdale -stella -stalnaker -spina -schiff -saari -risley -reading -rameriz -rakes -pettaway -penner -paulus -palladino -omeara -montelongo -melnick -mehta -mcgary -mccourt -mccollough -marchetti -manzanares -lowther -leiva -lauderdale -lafontaine -kowalczyk -knighton -joubert -jaworski -ide -huth -hurdle -hung -housley -hackman -gulick -gordy -gilstrap -gehrke -gebhart -gaudette -foxworth -finger -essex -endres -dunkle -clare -cimino -cardinal -caddell -brauer -braley -bodine -blackmore -belden -backer -ayer -andress -alva -wisner -walk -vuong -valliere -twigg -tso -tavarez -strahan -steib -staub -sowder -shoulders -seiber -schutt -scharf -schade -rodriques -risinger -renshaw -rath -rahman -presnell -pillow -piatt -pasquale -nieman -nicol -nevins -milford -mcilwain -mcgaha -mccully -mccomb -maye -massengale -macedo -lines -lesher -leland -kearse -jauregui -husted -hudnall -holmberg -hertel -hershey -hardie -glidewell -frausto -fassett -dash -dalessandro -dahlgren -corum -constantino -conlin -colquitt -colombo -claycomb -carley -cardin -cancel -buller -boring -boney -bocanegra -blazer -biggers -benedetto -araiza -andino -albin -zorn -werth -weisman -walley -vanegas -ulibarri -towers -towe -tedford -teasley -suttle -steffens -stcyr -squire -smythe -singley -sifuentes -shuck -session -schram -sass -rieger -ridenhour -rickert -richerson -rayborn -rabe -raab -pendley -pastore -ordway -moynihan -mellott -mckissick -mcgann -mccready -mauney -marrufo -list -lenhart -lazar -lafave -keele -kautz -jardine -jahnke -jacobo -hord -hardcastle -hageman -griffey -giglio -gehring -fortson -duque -duplessis -donner -dicken -derosier -deitz -dalessio -cyrus -cram -chi -center -castleman -candelario -callison -caceres -bozarth -biles -bejarano -beech -bashaw -avina -armentrout -angus -alverez -acord -zack -waterhouse -vereen -vanlandingham -uhl -strawser -shotwell -severance -seltzer -schoonmaker -schock -schaub -schaffner -roeder -rodrigez -riffe -rhine -rasberry -rancourt -railey -quade -pursley -prouty -perdomo -oxley -osterman -nickens -murphree -mounts -monte -merida -maus -mattern -masse -martinelli -mangan -lutes -ludwick -loney -laureano -lasater -knighten -kissinger -kimsey -kessinger -honea -hollingshead -hockett -heyer -heron -gurrola -gove -glasscock -gillett -galan -featherstone -eckhardt -duron -dunson -dasher -culbreth -cowden -cowans -claypoole -churchwell -chabot -caviness -cater -caston -callan -byington -burkey -boden -beckford -atwater -arms -archambault -alvey -alsup -yon -whisenant -weese -voyles -verret -tsang -tessier -sweitzer -sherwin -shaughnessy -revis -remy -prine -philpott -peavy -paynter -parmenter -ovalle -offutt -nightingale -newlin -nakano -myatt -muth -mohan -mcmillon -mccarley -mccaleb -maxson -marinelli -maley -macy -liston -letendre -kain -huntsman -hirst -hagerty -gulledge -greenway -grajeda -gorton -goines -gittens -frederickson -fanelli -embree -eichelberger -dunkin -dull -dixson -dillow -defelice -chumley -burleigh -borkowski -binette -biggerstaff -berglund -beller -audet -arbuckle -allain -alfano -zander -youngman -wittman -weintraub -vanzant -vaden -twitty -trader -toon -till -stollings -standifer -spinner -sines -shope -scalise -saville -romans -posada -pisano -otte -nolasco -napoli -mier -merkle -mendiola -melcher -mejias -mcmurry -mccalla -markowitz -marine -manis -mallette -macfarlane -lough -looper -landin -kittle -kinsella -kinnard -hobart -herald -helman -hellman -hartsock -halford -hage -gordan -glasser -gayton -gattis -gastelum -gaspard -frisch -force -fitzhugh -eckstein -eberly -dowden -despain -crumpler -crotty -cornelison -collin -colin -chouinard -chamness -catlin -cann -bumgardner -budde -branum -bradfield -braddy -borst -birdwell -bent -bazan -bank -banas -bade -aubrey -arango -ahearn -addis -zumwalt -wurth -wilk -widener -wagstaff -vella -urrutia -terwilliger -tart -steinman -staats -sloat -rives -riggle -revels -reichard -prickett -poff -pitzer -petro -pell -northrup -nicks -moline -mielke -maynor -mallon -magness -lingle -lindell -lieb -lesko -lebeau -lammers -lafond -kiernan -ketron -jurado -holmgren -hilburn -hayashi -hashimoto -harbaugh -hans -guillot -gard -froehlich -felipe -feinberg -falco -dufour -drees -doney -diep -delao -daves -dail -cutting -crowson -coss -congdon -carner -camarena -butterworth -burlingame -bouffard -bloch -bilyeu -barta -bakke -baillargeon -avent -aquilar -ake -aho -zeringue -yeh -yarber -wolfson -wendell -vogler -voelker -truss -troxell -thrift -strouse -spielman -sistrunk -shows -sevigny -schuller -schaaf -ruffner -routh -roseman -ricciardi -peraza -pegram -overturf -olander -odaniel -neu -millner -melchor -maxie -marvel -maroney -machuca -macaluso -livesay -layfield -laskowski -kwiatkowski -ko -kiley -kilby -julien -hovey -heywood -hayman -havard -harville -haigh -hagood -grieco -glassman -gebhardt -garry -freeze -fleischer -fann -elson -eccles -cunha -crumb -crew -blakley -bardwell -abshire -woodham -wines -welter -wargo -varnado -tutt -traynor -swaney -svoboda -stricker -stoffel -stambaugh -sickler -shackleford -selman -seaver -sansom -sanmiguel -royston -rourke -rockett -rioux -puleo -pitchford -persons -normand -nardi -mulvaney -middaugh -manners -malek -lodge -leos -lathan -kujawa -kimbro -killebrew -joshua -houlihan -hobby -hinckley -herod -hepler -hamner -hammel -hallowell -gonsalez -gingerich -gambill -funkhouser -fricke -fewell -falkner -endsley -dulin -drennen -deaver -dambrosio -clover -chadwell -ceasar -castanon -canon -burkes -brune -brisco -brinker -bowker -boldt -berner -bee -beaumont -beaird -bazemore -barrick -arnette -albano -younts -wunderlich -weidman -vanness -tu -toland -theobald -stickler -steiger -stanger -spies -spector -sollars -smedley -seibel -scoville -saito -rye -rummel -rude -rowles -rouleau -roos -rogan -roemer -ream -raya -purkey -priester -perreira -penick -paulin -parkins -overcash -oleson -nicely -neves -muldrow -minard -midgett -michalak -melgar -mcentire -mcauliffe -marti -marte -lydon -lindholm -leyba -leader -langevin -lagasse -lafayette -kesler -kelton -kao -kaminsky -jump -jaggers -humbert -huck -howarth -hinrichs -higley -gupton -guimond -gravois -giguere -fretwell -fontes -feeley -faucher -fall -evan -eichhorn -ecker -earp -dole -dinger -derryberry -demars -deel -copenhaver -collinsworth -colangelo -cloyd -claiborne -caulfield -carlsen -calzada -caffey -broadus -brenneman -bouie -bodnar -blaney -blanc -blades -beltz -behling -begin -barahona -yun -yockey -winkle -windom -wimer -wilford -wash -villatoro -trexler -teran -taliaferro -sydnor -swinson -snelling -smtih -siu -simonton -simoneaux -simoneau -sherrer -seavey -scheel -rushton -rupe -ruano -rodney -rippy -reiner -reiff -rabinowitz -quach -penley -odle -nock -minnich -mckown -mccarver -mcandrew -longley -laux -lamothe -lafreniere -kropp -krick -kates -jepson -huie -howse -howie -henriques -haydon -haught -hatter -hartzog -harkey -grimaldo -goshorn -gormley -gluck -gilroy -gillenwater -giffin -folks -fluker -feder -eyre -eshelman -eakins -dryer -disney -detwiler -delrosario -davisson -celestine -catalan -canning -calton -buster -brammer -botelho -blakney -bartell -averett -askins -aker -zak -worcester -witmer -wiser -winkelman -widmer -whittier -western -weitzel -wardell -wagers -ullman -tupper -tingley -tilghman -talton -simard -seda -scheller -sala -rundell -rost -roa -ribeiro -rabideau -primm -porch -polite -pinon -peart -ostrom -ober -nystrom -nussbaum -nurse -naughton -murr -moorhead -monti -monteiro -melson -meissner -mclin -mcgruder -marotta -makowski -majewski -madewell -lunt -lukens -leininger -lebel -lakin -laguna -kepler -jaques -hunnicutt -hungerford -hoopes -hertz -heins -hammers -halliburton -grosso -gravitt -glasper -gideon -gallman -gallaway -funke -fulbright -falgout -eakin -dostie -dorado -dewberry -derose -cutshall -crampton -costanzo -colletti -cloninger -claytor -chiang -canterbury -campagna -burd -brokaw -broaddus -bretz -brainard -binford -bilbrey -alpert -aitken -ahlers -zajac -yale -woolfolk -witten -windle -wayland -tramel -tittle -talavera -suter -straley -stetson -specht -sommerville -soloman -so -skeens -sigman -sibert -shavers -schuck -schmit -sartain -sabol -rosenblatt -rollo -rashid -rabb -province -polston -nyberg -northrop -navarra -muldoon -mulder -mikesell -mcdougald -mcburney -mauricio -mariscal -lui -lozier -lingerfelt -legere -latour -lagunas -lacour -kurth -ku -killen -kiely -kayser -kahle -julius -isley -huertas -hower -hinz -haugh -gumm -given -galicia -fortunato -flake -dunleavy -duggins -doby -digiovanni -devaney -deltoro -cribb -crank -corpuz -coronel -comfort -coen -charbonneau -caine -burchette -blakey -blakemore -bergquist -beene -beaudette -bayles -ballance -bakker -bailes -asberry -arwood -zucker -willman -whitesell -wald -walcott -vancleave -trump -trail -strasser -simas -shorts -shick -schleicher -schaal -saleh -rotz -resnick -raphael -rainer -partee -ollis -oller -oday -noles -munday -mountain -mong -millican -merwin -mazzola -mansell -magallanes -llanes -lewellen -lepore -kisner -keesee -jim -jeanlouis -ingham -hornbeck -hermes -hawn -hartz -harber -haffner -gutshall -guth -grays -grams -gowan -finlay -finkelstein -eyler -enloe -dungan -diez -dearman -dann -cull -crosson -creek -chronister -cassity -campion -callihan -butz -breazeale -blumenthal -billy -berkey -batty -batton -barge -arvizu -alexis -alderete -aldana -albaugh -abernethy -work -wolter -wille -tweed -tollefson -thomasson -teter -testerman -sproul -spates -southwick -soukup -skelly -senter -sealey -sawicki -sargeant -rossiter -rosemond -repp -pound -pink -pifer -ormsby -nickelson -naumann -morabito -monzon -millsaps -millen -mcelrath -marcoux -mantooth -madson -macneil -mackinnon -louque -leister -lampley -kushner -krouse -kirwan -june -jessee -janson -jahn -jacquez -islas -hutt -holladay -hillyer -hepburn -hensel -harrold -guadalupe -gingrich -geis -gales -fults -finnell -ferri -featherston -epley -ebersole -eames -dunigan -drye -dismuke -devaughn -delorenzo -damiano -confer -collum -clower -clow -claussen -clack -caylor -cawthon -casias -carreno -carlo -bluhm -bingaman -bewley -belew -beckner -beamer -barefoot -auld -amey -wolfenbarger -wilkey -wicklund -waltman -villalba -valero -valdovinos -ung -ullrich -tyus -twyman -trost -tardif -tanguay -stripling -steinbach -shumpert -sasaki -sappington -sandusky -reinhold -reinert -quijano -pye -poor -placencia -pinkard -phinney -perrotta -pernell -parrett -oxendine -owensby -orman -nuno -mori -mcroberts -mcneese -mckamey -mccullum -markel -mardis -maines -lueck -lubin -lefler -leffler -lavery -larios -labarbera -kershner -josey -jeanbaptiste -izaguirre -hermosillo -haviland -hartshorn -hamlet -hafner -ginter -getty -franck -fiske -emmett -dufrene -doody -davie -dangerfield -dahlberg -cuthbertson -crone -coffelt -claus -chidester -chesson -cauley -caudell -cantara -campo -caines -bullis -bucci -brochu -bosco -bogard -bickerstaff -benning -arzola -antonelli -adkinson -zellers -wulf -worsley -woolridge -whitton -westerfield -walczak -vassar -truett -trueblood -trawick -townsley -topping -tobar -telford -sung -steverson -stagg -sitton -sill -sherrell -sergent -schoenfeld -sarabia -rutkowski -rubenstein -rigdon -prentiss -pomerleau -plumlee -phoenix -philbrick -peer -patty -patnode -oloughlin -obregon -nuss -napoleon -morell -moose -mikell -mele -mcinerney -mcguigan -mcbrayer -lore -lor -look -lollar -lakes -kuehl -kinzer -kamp -joplin -jacobi -howells -holstein -hedden -hassler -harty -halle -greig -granville -gouge -goodrum -gerhart -geier -geddes -gast -forehand -ferree -fendley -feltner -fang -esqueda -encarnacion -eichler -egger -edmundson -eatmon -dragon -doud -donohoe -donelson -dilorenzo -digiacomo -diggins -delozier -dejong -danford -crippen -coppage -cogswell -clardy -cioffi -cabe -brunette -bresnahan -bramble -blomquist -blackstone -biller -bevis -bevan -bethune -benbow -baty -basinger -balcom -andes -aman -aguero -adkisson -yandell -wilds -whisenhunt -weigand -weeden -voight -villar -trottier -tillett -suazo -setser -scurry -schuh -schreck -schauer -samora -roane -rinker -reimers -reason -ratchford -popovich -parkin -nichol -natal -melville -mcbryde -magdaleno -loehr -lockman -lingo -leduc -larocca -lao -lamere -laclair -krall -korte -koger -jumper -jalbert -hughs -higbee -henton -heaney -haith -gump -greeson -goodloe -gholston -gasper -gagliardi -fregoso -farthing -fabrizio -ensor -elswick -elgin -eklund -eaddy -drouin -dorton -dizon -derouen -delia -deherrera -davy -dark -dampier -cullum -culley -cowgill -cardoso -cardinale -brodsky -broadbent -brimmer -briceno -branscum -bolyard -boley -bennington -beadle -baur -ballentine -azure -aultman -augustus -asuncion -arciniega -aguila -aceves -yepez -yap -woodrum -wethington -weissman -veloz -trusty -troup -trammel -theodore -tarpley -stivers -steck -sprayberry -spraggins -spitler -spiers -sohn -seagraves -schiffman -rudnick -rizo -riccio -rennie -quinton -quackenbush -puma -plott -pearcy -parada -paiz -munford -moskowitz -mease -mcnary -mccusker -matt -lozoya -longmire -loesch -lasky -kuhlmann -krieg -koziol -kowalewski -konrad -kindle -jowers -jolin -jaco -hua -horgan -hine -hileman -hepner -heise -heady -hawkinson -hannigan -haberman -guilford -grimaldi -gilles -garton -gagliano -fruge -follett -fiscus -ferretti -ebner -easterday -eanes -dirks -dimarco -depalma -deforest -dance -cruce -craighead -christner -candler -cadwell -burchell -buettner -brinton -breed -brazier -brannen -brame -bova -bomar -blakeslee -belknap -bangs -balzer -athey -armes -alvis -alverson -alvardo -alter -zhao -yeung -yen -wheelock -westlund -wessels -volkman -threadgill -thelen -tandy -tague -ta -symons -swinford -sturtevant -straka -stier -stagner -segarra -seawright -sack -rutan -roux -ringler -riker -ramsdell -quattlebaum -purifoy -poulson -permenter -peloquin -pasley -pagel -osman -obannon -nygaard -nipper -newcomer -munos -motta -meadors -mcquiston -mcniel -mcmann -mccrae -mayne -matte -martine -lucy -legault -lechner -lack -kucera -krohn -kratzer -koopman -judson -jeske -horrocks -homes -hock -hibbler -hesson -hersh -harvin -halvorsen -griner -grindle -glen -gladstone -garofalo -frampton -forbis -fernando -eddington -diorio -dingus -dewar -desalvo -curcio -creasy -cortese -cordoba -connally -cluff -cascio -capuano -canaday -calabro -bussard -brayton -borja -bigley -arnone -arguelles -acuff -zamarripa -wooton -wolfgang -widner -wideman -threatt -thiele -templin -teeters -synder -swint -swick -sturges -stogner -stedman -spratt -six -siegfried -shetler -scull -savino -sather -rothwell -rook -rone -rolf -rhee -quevedo -privett -pouliot -poche -pickel -petrillo -pellegrini -peaslee -partlow -otey -nunnery -morelock -morello -meunier -messinger -mckie -mccubbin -mccarron -maria -lerch -lavine -laverty -lariviere -lamkin -kugler -krol -kissel -keeter -hummer -hubble -hickox -hetzel -hayner -hagy -hadlock -groh -gregorio -gottschalk -goodsell -gloria -gerry -gassaway -garrard -galligan -fye -firth -fenderson -feinstein -etienne -engleman -emrick -ellender -drews -doiron -degraw -deegan -dart -crissman -corr -cookson -coil -cleaves -charest -chapple -chaparro -castano -carpio -byer -bufford -bridgewater -bridgers -brandes -borrero -bonanno -aube -ancheta -abarca -abad -yung -yim -wooster -woodrow -wimbush -willhite -willams -wigley -weisberg -wardlaw -vigue -vanhook -unknow -torre -tasker -tarbox -strachan -standard -slover -shamblin -semple -schuyler -schrimsher -sayer -salzman -salomon -rubalcava -riles -rickey -reneau -reichel -rayfield -rabon -pyatt -prindle -poss -polito -plemmons -pesce -perrault -pereyra -ostrowski -nilsen -niemeyer -nick -munsey -mundell -moncada -miceli -meader -mcmasters -mckeehan -matsumoto -marron -marden -lizarraga -lingenfelter -lewallen -laurence -langan -lamanna -kovac -kinsler -kephart -keown -kass -kammerer -jeffreys -hysell -householder -hosmer -hardnett -hanner -guyette -greening -glazer -ginder -fromm -fortuna -fluellen -finkle -fey -fessler -essary -eisele -duren -dittmer -crochet -cosentino -cogan -coelho -cavin -carrizales -campuzano -brough -bow -bopp -bookman -bobb -blouin -beesley -battista -bascom -bakken -badgett -arneson -anselmo -albino -ahumada -agustin -woodyard -wolters -wireman -wilton -willison -warman -wan -waldrup -vowell -vantassel -vale -twombly -toomer -tennison -teets -tedeschi -swanner -swallow -stutz -stelly -sheehy -schermerhorn -scala -sandidge -salters -salo -saechao -roseboro -rolle -ressler -renz -renn -redford -raposa -rainbolt -pompey -pelfrey -orndorff -oney -nolin -nimmons -ney -nardone -myhre -morman -mines -menjivar -mcglone -mccammon -maxon -maris -marciano -manus -maiden -lowrance -lorenzen -lonergan -lollis -littles -lindahl -lansing -lamas -lach -kuster -krawczyk -knuth -knecht -kirkendall -keitt -keever -kantor -jarboe -hoye -houchens -holter -holsinger -hickok -herb -helwig -helgeson -heater -hassett -harner -hamman -hames -hadfield -goree -goldfarb -gaughan -gaudreau -gantz -gallion -frady -foti -flesher -ferrin -faught -engram -elbert -donegan -desouza -degroot -cutright -crowl -criner -coke -coan -clinkscales -chewning -chavira -catchings -carlock -bye -bulger -buenrostro -bramblett -brack -boulware -bordeaux -bookout -bitner -birt -baranowski -baisden -augustin -allmon -alberto -acklin -yoakum -wilbourn -whisler -weinberger -washer -vasques -vanzandt -vanatta -troxler -tomes -tindle -tims -throckmorton -thach -stpeter -stlaurent -stenson -spry -spitz -songer -snavely -sly -sleeper -shroyer -shortridge -shenk -sevier -seabrook -scrivner -saltzman -rosenberry -rockwood -robeson -roan -reiser -redwine -ramires -raber -profit -posner -popham -pipes -piotrowski -pinard -peterkin -pelham -peiffer -peay -peavey -nadler -musso -milo -millett -mestas -mcgowen -marques -marasco -manriquez -manos -mair -lipps -lesser -leiker -leeds -krumm -knorr -kinslow -kessel -kendricks -kelm -ito -irick -ickes -hurlburt -horta -hoekstra -heuer -helmuth -heatherly -hampson -hagar -haga -greenlaw -grau -godbey -gingras -gillies -gibb -gayden -gauvin -garrow -fontanez -florio -fleischman -finke -fasano -fan -faith -ezzell -ewers -eveland -eckenrode -duclos -drumm -dimmick -delancey -defazio -deacon -dashiell -damian -cusack -crowther -crigger -cray -coolidge -coldiron -cleland -chalfant -cassel -cape -camire -cabrales -broomfield -brittingham -brisson -brickey -braziel -brazell -bragdon -boulanger -bos -boman -bohannan -beem -barto -barre -barley -baptist -azar -ashbaugh -armistead -almazan -adamski -zendejas -winburn -willaims -wilhoit -westberry -wentzel -wendling -wager -visser -vanscoy -vankirk -vallee -tweedy -thornberry -sweeny -stalker -spradling -spano -smelser -shim -sechrist -schall -scaife -rugg -ruben -rothrock -roesler -riehl -ridings -render -ransdell -radke -pinero -petree -pendergast -peluso -pecoraro -pascoe -panek -oshiro -noon -navarrette -murguia -moores -moberg -mike -michaelis -mcwhirter -mcsweeney -mcquade -mccay -mauk -mariani -marceau -mandeville -maeda -lunde -ludlow -loeb -lindo -linderman -leveille -leith -larock -lambrecht -kulp -kinsley -kimberlin -kesterson -jacinto -ice -hui -hoyos -helfrich -hanke -hail -guillermo -grisby -goyette -gouveia -glazier -gile -gerena -gelinas -gasaway -garden -funches -fujimoto -flynt -fenske -fellers -fehr -eslinger -escalera -enciso -duley -dittman -dineen -diller -devault -dao -collings -clymer -clowers -chavers -charland -castorena -castello -camargo -bunce -bullen -boyes -borchers -borchardt -birnbaum -birdsall -billman -benites -bankhead -ange -ammerman -adkison -yuan -winegar -wickman -wear -warr -warnke -villeneuve -veasey -vassallo -vannatta -vadnais -twilley -truelove -towery -tomblin -tippett -theiss -talkington -talamantes -swart -swanger -streit -straw -stines -stabler -spurling -sobel -sine -simmers -shippy -shiflett -shearin -sauter -sanderlin -rusch -runkle -ruckman -rorie -roesch -roberto -richert -rehm -randel -ragin -quesenberry -puentes -plyler -plotkin -paugh -oshaughnessy -ohalloran -norsworthy -niemann -nader -moorefield -mooneyham -modica -miyamoto -mickel -mebane -mckinnie -mazurek -mancilla -lukas -lovins -loughlin -lotz -lindsley -liddle -levan -lederman -leclaire -lasseter -lapoint -lamoreaux -lafollette -kubiak -kirtley -keffer -kaczmarek -jennette -housman -honey -hiers -hibbert -herrod -hegarty -hathorn -harsh -greenhaw -grafton -govea -gardener -futch -furst -frisbee -fred -franko -forcier -foran -flickinger -fairfield -eure -emrich -embrey -edgington -ecklund -eckard -durante -deyo -delvecchio -deeds -dade -currey -cuff -creswell -cottrill -casavant -cartier -cargile -capel -cammack -calfee -buzzard -burse -burruss -brust -brousseau -bridwell -braaten -borkholder -bloomquist -bjork -bartelt -arp -amburgey -yeary -yao -whitefield -vinyard -vicente -vanvalkenburg -twitchell -timmins -tester -tapper -stringham -starcher -spotts -slaugh -simonsen -sheffer -sequeira -rosati -rode -rhymes -reza -record -quint -pollak -peirce -patillo -parkerson -paiva -nilson -nice -nevin -narcisse -nair -mitton -merriam -merced -meiners -mckain -mcelveen -mcbeth -marsden -marez -manke -mahurin -mabrey -luper -krull -kees -iles -hunsicker -hornbuckle -holtzclaw -hirt -hinnant -heston -hering -hemenway -hegwood -hearns -halterman -halls -guiterrez -grote -granillo -grainger -glasco -gilder -garren -garlock -garey -fu -fryar -fredricks -fraizer -foxx -foshee -ferrel -felty -feathers -everitt -evens -esser -elkin -eberhart -durso -duguay -driskill -doster -dewall -deveau -demps -demaio -delreal -deleo -delay -deem -darrah -cumberbatch -culberson -cranmer -cordle -colgan -chesley -cavallo -castellon -castelli -carreras -carnell -carmon -carmen -carlucci -bottom -bontrager -blumberg -blasingame -becton -ayon -artrip -arline -andujar -alkire -alder -agan -zukowski -zuckerman -zehr -wroblewski -wrigley -woodside -wigginton -westman -westgate -werts -washam -wardlow -walser -waiters -teller -tadlock -stuck -stringfield -stimpson -stickley -starbuck -standish -spurlin -spindler -speller -spaeth -sotomayor -sok -sluder -shryock -shepardson -shatley -scannell -santistevan -rosner -rolland -rhode -resto -reinhard -rathburn -prisco -poulsen -pinney -phares -pennock -pastrana -oviedo -ostler -noto -nauman -mulford -moise -moberly -mirabal -ming -metoyer -metheny -mentzer -meldrum -mcinturff -mcelyea -mcdougle -massaro -lumpkins -loveday -lofgren -loe -lirette -lesperance -lefkowitz -ledger -lauzon -lain -lachapelle -kurz -klassen -keough -kempton -kaelin -jeffords -im -huot -hsieh -hoyer -horwitz -hopp -hoeft -hennig -haskin -grill -gourdine -golightly -girouard -fulgham -fritsch -freer -frasher -foulk -firestone -fiorentino -fedor -feather -ensley -englehart -eells -ebel -dunphy -donahoe -dimas -dileo -dibenedetto -dabrowski -crick -coonrod -conder -coddington -chunn -choy -chaput -cerna -carreiro -calahan -braggs -bourdon -boner -bollman -bittle -ben -behm -bauder -batt -barreras -aubuchon -anzalone -adamo -zhou -zerbe -zachery -witty -wirt -willcox -westberg -weikel -waymire -vroman -vinci -vallejos -tutor -truesdell -troutt -trotta -tollison -toles -tichenor -tai -symonds -surles -sunday -strayer -stgeorge -sroka -sorrentino -solares -snelson -silvestri -sikorski -shawver -schumaker -schorr -schooley -scates -satterlee -satchell -sacks -rymer -roselli -robitaille -riegel -richer -regis -reames -provenzano -proper -priestley -plaisance -pettey -palomares -oman -nowakowski -nace -monette -minyard -mclamb -mchone -mccarroll -masson -marco -magoon -maddy -lundin -loza -licata -lesley -leonhardt -lema -landwehr -kircher -kinch -karpinski -johannsen -hussain -houghtaling -hoskinson -hollaway -holeman -hobgood -hilt -hiebert -gros -gram -goggin -gentle -geissler -gadbois -gabaldon -fleshman -flannigan -files -fairman -epp -eilers -dycus -dunmire -duffield -dowler -ditto -deloatch -dehaan -deemer -corner -clayborn -christofferso -chilson -chesney -chatfield -charlie -caster -carron -canale -camden -buff -brigman -branstetter -bosse -borton -bonar -blau -biron -beagle -barroso -arvin -arispe -zacharias -zabel -yaeger -works -woolford -whetzel -weakley -veatch -vandeusen -tufts -troxel -troche -traver -townsel -tosh -talarico -swilley -sterrett -stenger -springfield -speakman -sowards -sours -souders -souder -soles -sobers -snoddy -smither -sias -shute -shoaf -shahan -schuetz -scaggs -santini -rosson -rolen -robidoux -rentas -recio -pixley -pawlowski -pawlak -paull -pascal -overbey -orear -oliveri -oldenburg -nutting -naugle -mote -mossman -moor -misner -milazzo -michelson -mei -mcentee -mccullar -mccree -mcaleer -mazzone -maxim -marshal -mandell -manahan -malott -maisonet -mailloux -lumley -lowrie -louviere -lipinski -lindemann -leppert -leopold -leasure -leaf -labarge -kubik -knisely -knepp -kenworthy -kennelly -kelch -karg -kanter -ignacio -hyer -houchin -hosley -hosler -hollon -holleman -heitman -hebb -haggins -gwaltney -guin -greenman -goulding -gorden -goodyear -geraci -georges -gathers -frison -feagin -falconer -espada -erving -erikson -eisenhauer -eder -ebeling -durgin -drown -dowdle -dinwiddie -delcastillo -dedrick -crimmins -covell -cournoyer -coria -cohan -cataldo -carpentier -canas -campa -brode -brashears -blaser -bicknell -berk -bednar -barwick -ascencio -althoff -almodovar -alamo -zirkle -zabala -xu -wolverton -winebrenner -wetherell -westlake -wegener -weddington -vong -tuten -trosclair -trim -tressler -theroux -teske -sword -swinehart -swensen -sundquist -southall -socha -sizer -silverberg -shortt -shimizu -sherrard -shen -shaeffer -seth -scheid -scheetz -saravia -sanner -rubinstein -rozell -romer -ringo -rheaume -reisinger -raven -randles -pullum -petrella -payan -papp -pablo -nordin -norcross -nicoletti -nicholes -newbold -nakagawa -mraz -monteith -milstead -milliner -mellen -mccardle -matthias -marcy -luft -loo -locker -liptak -lipp -leitch -latimore -larrison -landau -laborde -koval -izquierdo -hymel -hoskin -holte -hoefer -hayworth -hausman -harrill -harrel -hardt -gully -groover -grinnell -greenspan -graver -grandberry -gorrell -goldenberg -goguen -gilleland -garr -fuson -foye -felt -feldmann -everly -dyess -dyal -dunnigan -downie -dolby -divine -deatherage -dates -danna -cosey -corrado -cheever -celaya -caver -cashion -caplinger -cansler -byrge -bruder -brew -breuer -breslin -brazelton -botkin -bonneau -bones -bondurant -bohanan -bogue -boes -bodner -boatner -blatt -bickley -belliveau -beiler -beier -beckstead -bart -bang -bachmann -atkin -aron -andreas -altizer -alloway -allaire -albro -abron -zellmer -yetter -yelverton -wiltshire -wiens -whidden -wait -viramontes -vanwormer -topper -tarantino -tanksley -sumlin -strauch -strang -stice -spahn -sosebee -sigala -shrout -seamon -schrum -schneck -schantz -said -ruddy -romig -roehl -renninger -reding -pyne -polak -pohlman -pasillas -oldfield -oldaker -ohanlon -ogilvie -norberg -nolette -nies -neufeld -nellis -mummert -mulvihill -mullaney -monteleone -mendonca -meisner -mcmullan -mccluney -mattis -massengill -manfredi -luedtke -lounsbury -lora -liberatore -leek -lease -lazaro -lamphere -laforge -kuo -koo -jourdan -ismail -iorio -iniguez -ikeda -hubler -hodgdon -hocking -heacock -haslam -haralson -hanshaw -hannum -hallam -haden -garnes -garces -gammage -gambino -finkel -faucett -fahy -esteban -ehrhardt -eggen -dusek -durrant -dubay -dones -dey -depasquale -delucia -degraff -deer -decamp -davalos -darwin -dan -cullins -conard -clouser -clontz -cifuentes -chico -chappel -chaffins -celis -carwile -byram -bruggeman -brick -bressler -brathwaite -brasfield -bradburn -boose -boon -bodie -blosser -blas -bise -bertsch -bernardi -bernabe -bengtson -barrette -astorga -armand -antone -alday -albee -abrahamson -yarnell -wiltse -wile -wiebe -waguespack -vasser -upham -tyre -turek -tune -traxler -torain -tomaszewski -tinnin -tiner -tindell -teed -styron -stahlman -staab -spoon -spells -skiba -shih -sheperd -seidl -secor -schutte -sanfilippo -ruder -rondon -reina -rearick -rank -procter -prochaska -pettengill -pauly -neilsen -nally -mutter -mullenax -morano -meads -mcnaughton -mcmurtry -mcmath -mckinsey -matthes -massenburg -marlar -margolis -marcos -malin -magallon -mackin -lovette -loughran -loring -longstreet -loiselle -lenihan -laub -kunze -kull -koepke -knights -kerwin -kalinowski -kagan -innis -innes -husband -holtzman -heinemann -harshman -haider -haack -guss -grondin -grissett -greenawalt -gravel -goudy -goodlett -goldston -gokey -goin -gardea -galaviz -gafford -gabrielson -furlow -fritch -fordyce -folger -elizalde -ehlert -eckhoff -eccleston -ealey -dubin -dolphin -dieter -diemer -deschamps -delapena -decicco -debolt -daum -cullinan -crittendon -crase -cossey -coppock -coots -colyer -columbus -cluck -chamberland -cane -burkhead -bumpus -buchan -borman -bork -boe -birkholz -berardi -benda -behnke -barter -auer -amezquita -wotring -wirtz -wingert -wiesner -whitesides -weyant -wainscott -vivian -venezia -varnell -tussey -trainer -toll -thurlow -tack -tabares -stiver -stell -starke -stanhope -stanek -sisler -sinnott -sidney -siciliano -shehan -selph -seager -scurlock -scranton -santucci -santangelo -saltsman -ruel -ropp -rolling -rogge -rettig -renwick -reidy -reider -redfield -quam -premo -port -pier -peet -parente -paolucci -pan -palmquist -orme -ohler -ogg -netherton -mutchler -morita -mistretta -minnis -middendorf -menzel -mendosa -mendelson -meaux -mcspadden -mcquaid -mcnatt -manigault -maney -mager -lung -lukes -lopresti -liriano -lipton -letson -lechuga -lazenby -lauria -larimore -kwok -kwak -krupp -krupa -krum -kopec -kinchen -kifer -kerney -kerner -kennison -kegley -kays -karcher -justis -johson -jellison -janke -isabell -huskins -holzman -hollie -hinojos -highland -hefley -he -hatmaker -harte -halloway -hallenbeck -goodwyn -glaspie -gillian -geise -fullwood -fryman -frew -frakes -fraire -farrer -enlow -engen -ellzey -eckles -earles -ealy -dunkley -drinkard -dreiling -draeger -dinardo -dills -desroches -desantiago -current -curlee -crumbley -critchlow -coury -courtright -coffield -cleek -christen -charpentier -cardone -caples -cantin -buntin -bugbee -brinkerhoff -brackin -bourland -bohl -bogdan -blassingame -beacham -banning -auguste -andreasen -amann -almon -alejo -adelman -abston -zeno -yerger -wymer -woodberry -windley -whiteaker -westfield -weibel -wanner -waldrep -vital -villani -vanarsdale -utterback -updike -triggs -topete -tolar -tigner -thoms -tauber -tarvin -tally -swiney -sweatman -studebaker -streets -stennett -states -starrett -stannard -stalvey -sonnenberg -smithey -sieber -sickles -shinault -segars -sanger -salmeron -rothe -rizzi -rine -ricard -restrepo -ralls -ragusa -quiroga -ping -phung -pero -pegg -pavlik -papenfuss -oropeza -omar -okane -neer -nee -nathaniel -mudge -mozingo -molinaro -mikel -mcvicker -mcgarvey -mcfalls -mccraney -matus -magers -llanos -livermore -liss -linehan -leto -leitner -laymon -lawing -lawerence -lacourse -kwong -kollar -kneeland -keo -kennett -kellett -kangas -janzen -hutter -huse -huling -hoss -hohn -hofmeister -hewes -hern -harjo -habib -gust -guice -grullon -greggs -grayer -granier -grable -gowdy -giannini -getchell -gartman -garnica -ganey -gallimore -fray -fetters -fergerson -farlow -fagundes -exley -esteves -enders -edenfield -easterwood -drakeford -dipasquale -desousa -deshields -deeter -dedmon -debord -daughtery -cutts -courtemanche -coursey -copple -coomes -collis -coll -cogburn -clopton -choquette -chaidez -castrejon -calhoon -burbach -bulloch -buchman -bruhn -bohon -blough -bien -belmont -baynes -barstow -zeman -zackery -yardley -yamashita -wulff -wilken -wiliams -wickersham -wible -whipkey -wedgeworth -walmsley -walkup -vreeland -verrill -valera -umana -traub -timothy -swingle -swing -summey -stroupe -stockstill -steffey -stefanski -statler -stapp -speights -sons -solari -soderberg -slick -shunk -shorey -shewmaker -sheilds -schiffer -schank -schaff -sagers -rodger -rochon -riser -rickett -reale -raglin -poon -polly -polen -plata -pitcock -percival -palen -pahl -orona -oberle -nocera -navas -nault -mullings -mouser -moos -montejano -monreal -minick -middlebrook -meece -mcmillion -mccullen -mauck -marshburn -maillet -mahaney -magner -maclin -lucey -litteral -lippincott -leite -leis -leaks -laurie -lamarre -kost -jurgens -jesus -jerkins -jager -hurwitz -hughley -hotaling -horstman -hohman -hocker -hively -hipps -hile -hessler -hermanson -hepworth -henn -helland -hedlund -harkless -haigler -gutierez -gum -grindstaff -glantz -giardina -gerken -gadsden -freda -finnerty -feld -farnum -encinas -elton -eager -drakes -dennie -cutlip -curtsinger -couto -cortinas -corby -choice -chiasson -carle -carballo -brindle -borum -bober -blagg -birk -berthiaume -beahm -batres -basnight -barbara -backes -axtell -aust -au -atterberry -alvares -alt -alegria -abe -yow -yip -woodell -wojciechowski -winfree -winbush -wiest -wesner -wax -wamsley -wakeman -verner -truex -trafton -toman -thorsen -thor -theus -tellier -tallant -szeto -strope -stills -stage -sorg -simkins -shuey -shaul -servin -serio -serafin -senior -sebring -salguero -saba -ryerson -rudder -ruark -rother -rohrbaugh -rohrbach -rohan -rogerson -risher -rigg -reeser -pryce -prokop -prins -priebe -prejean -pinheiro -petrone -petri -penson -pearlman -parikh -pal -pair -natoli -murakami -mullikin -mullane -motes -morningstar -monks -mcveigh -mcgrady -mcgaughey -mccurley -masi -marchan -manske -maine -maez -lusby -linde -lile -likens -licon -leroux -lemaire -legette -lax -laskey -laprade -laplant -lady -kolar -kittredge -kinley -kerber -kanagy -johannes -jetton -jayne -january -janik -ippolito -inouye -hunsinger -howley -howery -horrell -hoosier -holthaus -hiner -hilson -hilderbrand -hasan -hartzler -harnish -harada -hansford -halligan -hagedorn -gwynn -gudino -greenstein -greear -gracey -goudeau -gose -goodner -ginsburg -gerth -gerner -fyfe -fujii -frier -frenette -folmar -fleisher -fleischmann -fetzer -fern -eisenman -earhart -dupuy -dunkelberger -drummer -drexler -dillinger -dilbeck -diana -dewald -demby -deford -daniell -dake -craine -como -clever -chesnut -casady -carstens -carrick -carino -carignan -canchola -cale -bushong -burman -buono -brownlow -broach -britten -brickhouse -boyden -boulton -borne -borland -bohrer -blubaugh -bever -berggren -benevides -arocho -arends -amezcua -almendarez -zalewski -witzel -winkfield -wilhoite -vara -vangundy -vanfleet -vanetten -vandergriff -urbanski -tyrell -troiano -tickle -thibodaux -straus -stoneking -stjean -stillings -stiff -stange -square -speicher -speegle -sowa -smeltzer -slawson -simmonds -shuttleworth -serpa -senger -seidman -schweiger -schloss -schimmel -schechter -sayler -sabb -sabatini -ronan -rodiguez -riggleman -richins -reep -reamer -prunty -porath -plunk -piland -philbrook -pettitt -perna -peralez -pascale -padula -oboyle -nivens -nickols -murph -mundt -munden -montijo -mcmanis -mcgrane -mccrimmon -manzi -mangold -malick -mahar -maddock -lust -losey -loop -litten -liner -leff -leedy -leavell -ladue -krahn -kluge -junker -iversen -imler -hurtt -huizar -hubbert -howington -hollomon -holdren -hoisington -hise -heiden -hauge -hartigan -gutirrez -griffie -greenhill -gratton -granata -gottfried -gertz -gautreaux -furry -furey -funderburg -flippen -fitzgibbon -fergus -felice -eye -dyar -drucker -donoghue -dildy -devers -detweiler -despres -denby -degeorge -cueto -cranston -courville -clukey -cirillo -chon -chivers -caudillo -catt -butera -bulluck -buckmaster -braunstein -bracamonte -bourdeau -border -bonnette -bobadilla -boaz -blackledge -beshears -bernhard -bergeson -baver -barthel -balsamo -bak -aziz -awad -authement -altom -altieri -abels -zigler -zhu -younker -yeomans -yearwood -wurster -winget -whitsett -wechsler -weatherwax -wathen -warriner -wanamaker -walraven -viens -vandemark -vancamp -uchida -triana -tinoco -terpstra -tellis -tarin -taranto -takacs -studdard -struthers -strout -stiller -spataro -soderquist -sliger -silberman -shurtleff -sheetz -schillinger -ritch -reif -raybon -ratzlaff -radley -putt -putney -prime -press -pinette -piner -petrin -parise -osbourne -nyman -northington -noblitt -nishimura -nell -neher -nalls -naccarato -mucha -mounce -miron -millis -meaney -mcnichols -mckinnis -mcjunkin -mcduffy -max -marcello -manrique -mannion -mangual -malveaux -mains -lumsden -lucien -lohmann -lipe -lightsey -lemasters -leist -laxton -laverriere -latorre -lamons -kral -kopf -knauer -kitt -kaul -karas -kamps -jusino -janis -islam -hullinger -huges -hornung -hiser -hempel -helsel -hassinger -hargraves -hammes -hallberg -gutman -gumbs -gruver -graddy -gonsales -goncalves -glennon -gilford -geno -freshour -flippo -fifer -few -fermin -fason -farrish -fallin -ewert -estepp -escudero -ensminger -emmanuel -emberton -elms -ellerbe -eide -dysart -dougan -dierking -dicus -detrick -deroche -depue -demartino -delosreyes -dalke -culbreath -crownover -crisler -crass -corsi -chagnon -centers -cavanagh -casson -carollo -cadwallader -burnley -burciaga -burchard -broadhead -boris -booze -bolte -body -berens -bellman -bellard -baril -arden -antonucci -amado -allie -wolfgram -winsor -wimbish -wilbert -wier -wallach -viveros -vento -varley -vanslyke -vangorder -touchstone -tomko -tiemann -throop -tamura -talmadge -swayze -sturdevant -strauser -stolz -stenberg -stayton -spohn -spillers -spillane -sluss -sloane -slavens -simonetti -shofner -shead -senecal -seales -schueler -schley -schacht -sauve -sarno -salsbury -rothschild -rosier -rines -reveles -rein -redus -redfern -reck -ranney -raggs -prout -prill -preble -prager -plemons -pippen -pilon -piccirillo -pewitt -pesina -pecora -otani -orsini -ollie -oestreich -odea -ocallaghan -northup -niehaus -newberg -nasser -narron -monarrez -mishler -mcsherry -mcelfresh -mayon -mauer -mattice -mash -marrone -marmolejo -marini -marie -mara -malm -machen -lunceford -loewen -liverman -litwin -linscott -levins -lenox -legaspi -leeman -leavy -lannon -lamson -lambdin -labarre -knouse -klemm -kleinschmidt -kirklin -keels -juliano -howser -hott -hosier -hosea -hopwood -holyfield -hodnett -hirsh -heimann -height -heckel -harger -hamil -hajek -gurganus -gunning -grange -gonzalas -goggins -gerow -gaydos -garduno -ganley -galey -farner -ester -engles -emond -emert -ellenburg -edick -duell -dublin -dorazio -dong -dimond -diederich -dewalt -depuy -dempster -demaria -dehoyos -dearth -dealba -dane -czech -crose -crespin -cogdill -clinard -cipriano -chretien -chalk -cerny -ceniceros -celestin -caple -cacho -burrill -buhr -buckland -branam -boysen -bovee -boos -boler -blom -blasko -beyers -belz -belmonte -bednarz -beckmann -beaudin -bazile -barbeau -balentine -abrahams -able -zielke -yunker -yeates -wrobel -wike -whisnant -wherry -wagnon -vogan -vansant -vannest -vallo -ullery -towles -towell -tiger -thill -taormina -tannehill -taing -storrs -stickles -stetler -sparling -solt -silcox -sheard -shadle -seman -selleck -schlemmer -scher -sapien -sainz -rumble -roye -rosamond -romain -rizzuto -resch -rentz -rather -rasch -ranieri -purtell -primmer -portwood -pontius -pons -pletcher -pledger -pirkle -pillsbury -pentecost -peng -paxson -ortez -organ -oles -newborn -mullett -muirhead -mouzon -mork -mollett -mohn -mitcham -melillo -mee -medders -mcmiller -mccleery -mccaughey -manders -mak -maciejewski -macaulay -lute -lipman -lewter -larocque -langton -kriner -knipp -killeen -karn -kalish -kaczor -jonson -jerez -jarrard -janda -hymes -hollman -hollandsworth -holl -hobdy -hitch -hennen -hemmer -hagins -haddox -guitierrez -guernsey -gorsuch -gholson -genova -gazaway -gauna -gammons -freels -fonville -fly -florian -fleet -fetterman -fava -farquhar -farish -fabela -escoto -eisen -dossett -dority -dorfman -demmer -dehn -dawley -darbonne -damore -damm -crosley -cron -crompton -crichton -cotner -cordon -conerly -colvard -clauson -chess -cheeseman -charity -cavallaro -castille -cabello -burgan -buffum -bruss -brassfield -bowerman -bothwell -borgen -bonaparte -bombard -boivin -boissonneault -bogner -bodden -boan -blanche -bittinger -bickham -bedolla -bale -bainbridge -aybar -avendano -ashlock -amidon -almanzar -akridge -ackermann -zager -yong -xavier -worrall -winans -wilsey -wightman -westrick -wenner -warne -warford -verville -utecht -upson -tuma -tseng -troncoso -trollinger -torbert -taulbee -sutterfield -stough -storch -stonebraker -stolle -stilson -stiefel -steptoe -stepney -stender -stemple -staggers -spurrier -spray -spinney -spengler -smartt -skoog -silvis -sieg -shuford -selfridge -seguin -sedgwick -sease -scotti -schroer -schlenker -schill -savarese -sapienza -sanson -sandefur -salamone -rusnak -rudisill -royalty -rothermel -roca -resendiz -reliford -rasco -raiford -quisenberry -quijada -pullins -puccio -postell -poppe -pinter -piche -petrucci -pellegrin -pelaez -patti -paton -pasco -parkes -paden -pabst -orchard -olmsted -newlon -mynatt -mustafa -mower -morrone -moree -moffat -mixson -minner -min -millette -mederos -mcgahan -mcconville -maughan -massingill -marano -macri -lovern -lichtenstein -leonetti -lehner -lawley -laramie -lappin -lahti -lago -lacayo -kuester -knee -kincade -junior -juhl -joslyn -jiron -jessop -jerry -jarosz -jain -hults -hoge -hodgins -hoban -hinkson -hillyard -herzig -hervey -henriksen -hawker -hause -hard -hankerson -gregson -golliday -gilcrease -gessner -gerace -garwood -garst -gaillard -flinchum -fishel -fishback -filkins -fentress -fabre -ethier -espana -eisner -ehrhart -efird -drennon -dominy -dominique -domingue -dipaolo -dinan -dimartino -deskins -dengler -defreitas -defranco -dancer -dahlin -cutshaw -cuthbert -croyle -crothers -critchfield -cowie -costner -coppedge -copes -ciccone -champ -cesar -caufield -capo -cambron -cambridge -buser -burnes -buhl -buendia -brindley -brecht -bourgoin -boomer -blackshire -birge -benninger -bembry -beil -begaye -barrentine -barks -banton -balmer -baity -auerbach -ambler -alexandre -ackerson -zurcher -zell -wynkoop -wallick -waid -vos -vizcaino -vester -veale -vandermark -vanderford -tuthill -trivette -thiessen -tewksbury -tao -tabron -swim -swasey -swanigan -stoughton -stoudt -stimson -stecker -stead -stall -spady -souther -smoak -sklar -simcox -sidwell -sharon -seybert -sesco -seeman -seaborn -schwenk -schmeling -rossignol -robillard -robicheaux -riveria -rippeon -ridgley -remaley -rehkop -reddish -reach -rauscher -rachel -quirion -pusey -pruden -pressler -potvin -pospisil -paradiso -pangburn -palmateer -ownby -otwell -osterberg -osmond -olsson -old -oberlander -nusbaum -novack -nokes -nicastro -nehls -nay -naber -mulhern -motter -moretz -milian -mercedes -mckeel -mcclay -mccart -matsuda -mary -martucci -marple -marko -marciniak -manes -mancia -maker -macrae -lybarger -lint -lineberger -levingston -lecroy -lattimer -laseter -kulick -krier -knutsen -klem -kinne -kinkade -ketterman -kerstetter -kersten -karam -jury -joshi -jin -jent -jefcoat -hillier -hillhouse -hettinger -henthorn -henline -helzer -heitzman -heineman -heenan -haughton -haris -harbert -haman -grinstead -gremillion -gorby -giraldo -gioia -gerardi -geraghty -gaunt -gatson -gardin -gans -gammill -games -gain -friedlander -frahm -fossett -fosdick -forth -forbush -fondren -fleckenstein -fitchett -filer -feliz -feist -ewart -evelyn -esters -elsner -edgin -eddie -easterly -dussault -durazo -don -devereaux -deshotel -deckert -dargan -dare -cornman -conkle -condit -commander -claunch -clabaugh -chute -cheesman -chea -charney -charleston -casella -carone -carbonell -canipe -campana -calles -cabezas -cabell -buttram -bustillos -buskirk -boyland -bourke -blakeley -big -berumen -berrier -bench -belli -behrendt -baumbach -bartsch -baney -arambula -alldredge -allbritton -ziemba -zanders -youngquist -yoshioka -yohe -wunder -woodfin -wojtowicz -winkel -wilmore -willbanks -wesolowski -wendland -walko -votaw -vanek -uriarte -urbano -turnipseed -triche -trautman -towler -tokarz -temples -tefft -teegarden -syed -swigart -stryker -stoller -stapler -stansfield -smit -smelley -sicard -shulman -shew -shear -sheahan -sharpton -selvidge -schlesinger -savell -sandford -sabatino -rosenbloom -roepke -rish -rhames -renken -reger -rappaport -quarterman -puig -prasad -poplar -pizano -pigott -pick -phair -petrick -patt -pascua -paramore -papineau -olivieri -ogren -norden -noga -nisbet -munk -munch -mui -morvant -moro -moloney -merz -meng -meltzer -mellinger -mehl -mcnealy -mckernan -mchaney -mccleskey -mcandrews -mayton -mayor -markert -maresca -marcellus -maner -mandujano -malpass -macintyre -lytton -lyall -lummus -longshore -longfellow -lokey -locher -leverette -lepe -lefever -leeson -lederer -lampert -lagrone -la -kreider -korth -knopf -kleist -kiss -keltner -kelling -kaspar -kappler -justin -josephs -jiang -huckins -horace -holub -hofstetter -hoehn -higginson -hennings -heid -havel -hauer -harnden -hargreaves -hanger -guild -guidi -grate -grandy -grandstaff -goza -goodridge -goodfellow -goggans -godley -giusti -gilyard -geoghegan -galyon -gaeta -funes -font -flor -flanary -fales -erlandson -ellett -elia -edinger -dziedzic -duerr -draughn -donoho -dimatteo -devos -dematteo -degnan -darlington -danis -dam -dahlstrom -dahlke -czajkowski -cumbie -culbert -crosier -croley -corry -clinger -cheshire -chalker -cephas -caywood -cavalier -capehart -cales -cadiz -bussiere -burriss -burkart -brundidge -bronstein -breeze -bradt -boydston -bostrom -borel -bolles -blay -blackwelder -bissett -bevers -bester -bernardino -benefiel -belote -beedle -beckles -baysinger -bassler -bartee -barlett -bargas -barefield -baptista -arterburn -armas -apperson -amoroso -amedee -zullo -zellner -yelton -willems -wilkin -wiggin -widman -welk -weingarten -walla -viers -vess -verdi -veazey -vannote -tullos -trudell -trower -trosper -trimm -trew -tousignant -topp -tocco -thoreson -terhune -tatom -suniga -sumter -steeves -stansell -soltis -sloss -slaven -sing -shisler -sheriff -shanley -servantes -selders -segrest -seese -seeber -schaible -savala -sartor -rutt -rumbaugh -ruis -roten -roessler -ritenour -riney -restivo -rene -renard -rakestraw -rake -rachal -quiros -pullin -prudhomme -primeaux -prestridge -presswood -ponte -polzin -poarch -pittenger -piggott -pickell -phaneuf -parvin -parmley -palmeri -paisley -ozment -ormond -ordaz -ono -olea -obanion -oakman -novick -nicklas -nemec -nappi -mund -morfin -mera -melgoza -melby -mcgoldrick -mcelwain -mcchristian -mccaw -marquart -marlatt -markovich -mahr -lupton -lucus -lorusso -lerman -leddy -leaman -leachman -lavalle -laduke -kummer -koury -konopka -koh -koepp -kloss -klock -khalil -kernan -kappel -jakes -inoue -hutsell -howle -honore -hole -hockman -hockaday -hiltz -hetherington -hesser -hershman -heng -heffron -headen -haskett -hartline -harned -guillemette -guglielmo -guercio -greenbaum -goris -glines -gilmour -gardella -gadd -gabler -gabbert -fuselier -freudenburg -fragoso -follis -flemings -feltman -febus -farren -fallis -evert -ekstrom -eastridge -dyck -dufault -dubreuil -dresser -drapeau -domingues -dolezal -dinkel -didonato -devitt -devane -demott -daughtrey -daubert -das -darrell -creason -crary -costilla -chipps -cheatwood -carmean -canton -caffrey -burgher -buker -brunk -brodbeck -brantner -brandy -bolivar -boerner -bodkin -biel -betty -bencomo -bellino -beliveau -beauvais -beaupre -baylis -baskett -barcus -barbera -baltz -asay -arney -arcuri -ankney -agostini -addy -zwilling -zubia -zollinger -zeitz -yard -yanes -winship -winningham -wickline -webre -waddington -vosburgh -vessels -verrett -vedder -varnum -vandeventer -vacca -usry -towry -touchet -tookes -tonkin -timko -tibbitts -thedford -tarleton -talty -talamantez -tafolla -sugg -strecker -stirling -steffan -spiva -slape -siemens -shatzer -seyler -seamans -schmaltz -schipper -sasso -sailor -ruppe -runner -royals -roudebush -ripple -riemer -richarson -revilla -reichenbach -ratley -railsback -quayle -poplin -poorman -ponton -polo -pollitt -poitras -piscitelli -piedra -pickles -pew -perera -people -penwell -pelt -pauline -parkhill -paladino -ore -oram -olmo -oliveras -olivarria -ogorman -near -naron -na -muncie -mowbray -morones -moretti -monn -mitts -minks -minarik -mimms -milliron -millington -millhouse -messersmith -mcnett -mckinstry -mcgeorge -mcdill -mcateer -mazzeo -matchett -mahood -mabery -lundell -louden -losoya -lisk -lezama -leib -lebo -lanoue -lanford -lafortune -kump -krone -kreps -kott -kopecky -kolodziej -knuckles -kinman -kimmons -kelty -kaster -karlson -kania -jules -joyal -job -jenner -jasinski -jandreau -isenhour -hunziker -huhn -houde -houchins -holtman -hodo -heyman -hentges -hedberg -hayne -haycraft -harshbarger -harshaw -harriss -haring -hansell -hanford -handler -hamburg -hamblen -gunnell -groat -gorecki -gochenour -gleeson -genest -geiser -gabriele -fulghum -friese -fridley -freeborn -frailey -flaugher -fiala -ettinger -etheredge -espitia -eriksen -engelbrecht -engebretson -elie -eickhoff -edney -edelen -eberhard -eastin -eakes -driggs -doner -donaghy -disalvo -deshong -dahms -dahlquist -curren -cripe -cree -creager -corle -conatser -commons -coggin -coder -coaxum -closson -clodfelter -classen -chittenden -castilleja -casale -cartee -carriere -canup -canizales -burgoon -bunger -bugarin -buchanon -bruning -bruck -brookes -broadwell -brier -brekke -breese -bracero -bowley -bowersox -bose -bogar -blossom -blauser -blacker -bjorklund -belair -baumer -basler -barb -baltimore -baize -baden -auman -amundsen -amore -alvarenga -adan -adamczyk -yerkes -yerby -yawn -yamaguchi -worthey -wolk -wixom -wiersma -wieczorek -whiddon -weyer -wetherington -wein -watchman -warf -wansley -vesely -velazco -vannorman -valasquez -utz -urso -turco -turbeville -trivett -torrance -toothaker -toohey -tondreau -thaler -sylvain -swindler -swigert -swider -stiner -stever -steffes -stampley -stair -smidt -skeete -silvestre -shy -shutts -shock -shealey -seigler -schweizer -schuldt -schlichting -scherr -saulsberry -saner -rosin -rosato -roling -rohn -rix -rister -remley -remick -recinos -ramm -raabe -pursell -poythress -poli -pokorny -plum -pettry -petrey -petitt -penman -payson -paquet -pappalardo -outland -oscar -orenstein -nuttall -nuckols -nott -nimmo -murtagh -mousseau -moulder -mooneyhan -moak -minch -miera -mercuri -meighan -mcnelly -mcguffin -mccreery -mcclaskey -man -mainor -luongo -lundstrom -loughman -loose -lobo -lobb -linhart -liberty -lever -leu -leiter -lehoux -lehn -lares -lapan -langhorne -lamon -ladwig -ladson -kuzma -kreitzer -knop -keech -kea -kadlec -jo -jhonson -jantz -inglis -husk -hulme -housel -hofman -hillery -heidenreich -heaps -haslett -harting -hartig -hamler -halton -hallum -gutierres -guida -guerrier -grossi -gress -greenhalgh -gravelle -gow -goslin -gonyea -gipe -gerstner -gasser -garceau -gannaway -gama -gallop -gaiser -fullilove -foutz -fossum -flannagan -farrior -faller -ericksen -entrekin -enochs -englund -ellenberger -eastland -earwood -dudash -du -drozd -desoto -delph -dekker -dejohn -degarmo -defeo -defalco -deblois -dacus -cudd -crossen -crooms -cronan -costin -costanza -cordray -comerford -collie -colegrove -coldwell -claassen -chartrand -castiglione -carte -cardella -carberry -capp -capobianco -cangelosi -buch -brunell -brucker -brockett -brizendine -brinegar -brimer -brase -bosque -bonk -bolger -bohanon -bohan -blazek -berning -bergan -bennette -beauchemin -battiste -barra -balogh -avis -avallone -aubry -ashcroft -asencio -arledge -anchondo -amy -alvord -acheson -zaleski -yonker -wyss -wycoff -woodburn -wininger -winders -willmon -wiechmann -westley -weatherholt -warnick -wardle -warburton -volkert -virgin -villanveva -veit -vass -vanallen -tung -toribio -toothman -tiggs -thornsberry -thome -tepper -teeple -tebo -tassone -tann -sultan -stucker -stotler -stoneman -stehle -stanback -stallcup -spurr -speers -spada -solum -smolen -sinn -silvernail -sholes -shives -shain -secrest -seagle -schuette -schoch -schnieders -schild -schiavone -schiavo -scharff -santee -sandell -salvo -rollings -rollin -rivenburg -ritzman -rist -rio -ricardo -reynosa -retana -reiber -regnier -rarick -ransome -rall -propes -prall -poyner -ponds -poitra -plaster -pippins -pinion -piccolo -phu -perillo -penrose -pendergraft -pelchat -peed -patenaude -palko -odoms -oddo -novoa -noone -newburn -negri -nantz -mosser -moshier -molter -molinari -moler -millman -meurer -mendel -mcray -mcnicholas -mcnerney -mckillip -mcilvain -mcadory -matter -master -marmol -marinez -manzer -mankin -makris -majeski -magnus -maffei -luoma -luman -luebke -luby -lomonaco -loar -litchford -lintz -licht -levenson -legge -laughter -lanigan -krom -kreger -koop -kober -klima -kitterman -kinkead -kimbell -kilian -kibbe -kendig -kemmer -kash -jenkin -inniss -hurlbut -hunsucker -hugo -huckabee -hoxie -hoglund -hockensmith -hoadley -hinkel -higuera -herrman -heiner -hausmann -haubrich -hassen -hanlin -hallinan -haglund -hagberg -gullo -gullion -groner -greenwalt -grand -goodwill -gong -gobert -glowacki -glessner -gines -gildersleeve -gildea -gerke -gerhard -gebhard -gatton -gately -galasso -fralick -fouse -fluharty -faucette -fairfax -evanoff -elser -ellard -egerton -edie -ector -ebling -dunkel -duhart -drysdale -dostal -dorey -dolph -doles -dismukes -digregorio -digby -dewees -deramus -denniston -dennett -deloney -delaughter -darcy -cuneo -cumberland -crotts -crosswhite -cremeans -creasey -cottman -cothern -costales -cosner -corpus -cora -constable -colligan -cobble -clutter -chupp -chevez -chatmon -chaires -caplan -caffee -cabana -burrough -burditt -buckler -brunswick -brouillard -broady -bowlby -bouley -borgman -boltz -boddy -blackston -birdsell -bedgood -bate -basil -bartos -barriga -barrie -barna -barcenas -banach -baccus -auclair -ashman -arter -arendt -ansell -allums -allsop -allender -alber -albarran -adelson -zoll -wysong -wimbley -wildes -whitis -whitehill -whicker -weymouth -well -weldy -wark -wareham -waddy -viveiros -vito -vides -vecchio -vath -vandoren -vanderhoof -unrein -uecker -tsan -trepanier -tregre -torkelson -ton -tobler -tineo -timmer -swopes -swofford -sweeten -swarts -summerfield -sumler -stucky -strozier -stigall -stickel -stennis -stelzer -steely -solar -slayden -skillern -shurtz -shelor -shellenbarger -shand -shabazz -seo -scroggs -schwandt -schrecengost -schoenrock -schirmer -sandridge -ruzicka -rozek -rowlands -roser -rosendahl -romanowski -romaine -rolston -rink -riggio -reichman -redondo -reay -rawlinson -raskin -raine -quandt -purpura -purdue -pruneda -prevatte -prettyman -pinedo -pierro -pidgeon -phillippi -pfeil -penix -peasley -paro -overall -ospina -ortegon -ogata -ogara -normandin -nordman -nims -nassar -motz -morlan -mooring -moles -moir -mizrahi -mire -minaya -millwood -mikula -messmer -meikle -mctaggart -mcgonagle -mcewan -mccasland -mccane -mccaffery -mcalexander -mattocks -mattie -matranga -martone -markland -maravilla -manno -manly -mancha -mallery -magno -lorentz -locklin -livingstone -lipford -lininger -line -liao -lepley -leming -lemelin -leadbetter -lawhon -lattin -langworthy -lampman -lambeth -lamarr -lahey -krajewski -klopp -kinnison -kestner -kerry -kennell -karim -jozwiak -jakubowski -jagger -ivery -ishmael -iliff -iddings -hudkins -houseman -holz -holderman -hoehne -highfill -hiett -heskett -heldt -hedman -hayslett -hatchell -hasse -hamon -hamada -hakala -haislip -haffey -hackbarth -guo -gullickson -guerrette -guan -greenblatt -goudreau -gongora -godbout -glaude -gills -gillison -gigliotti -gargano -gallucci -galli -galante -frasure -fodor -fizer -fishburn -finkbeiner -finck -fager -estey -espiritu -eppinger -epperly -emig -eckley -dray -dorsch -dille -devita -deslauriers -demery -delorme -delbosque -dauphin -dantonio -curd -crume -crown -cozad -cossette -comacho -climer -chadbourne -cespedes -cayton -castaldo -carpino -carls -capozzi -canela -cadet -buzard -busick -burlison -brinkmann -bridgeforth -bourbeau -bornstein -boots -bonfiglio -boice -boese -biondi -bilski -betton -berwick -berlanga -behan -becraft -barrientez -banh -balke -balderrama -bahe -bachand -atlas -armer -arceo -aliff -alatorre -zermeno -zane -younce -you -yeoman -yamasaki -wroten -worm -woodby -winer -wilmer -willits -wilcoxon -wehmeyer -waterbury -wass -wann -wake -wachtel -vizcarra -vince -victory -veitch -vanderbilt -vallone -vallery -ureno -tyer -tipps -tiedeman -theberge -texeira -taub -tapscott -stutts -stults -stukes -staff -spink -sottile -smithwick -slane -simeone -silvester -siegrist -shiffer -sheedy -sheaffer -severin -sellman -scotto -schupp -schueller -schreier -schoolcraft -schoenberger -schnabel -sangster -samford -saliba -ryles -ryans -rossetti -rodriguz -risch -riel -rezendes -rester -rencher -recker -rathjen -profitt -poteete -polizzi -perrigo -patridge -osby -orvis -opperman -oppenheim -onorato -olaughlin -ohagan -ogles -oehler -obyrne -nuzzo -nickle -nease -neagle -navarette -nagata -musto -morning -morison -montz -mogensen -mizer -miraglia -mingus -migliore -merideth -menges -mellor -mcnear -mcnab -mcloud -mcelligott -mccollom -maynes -marquette -markowski -marcantonio -mar -maldanado -makin -macey -lundeen -lovin -longino -lisle -linthicum -limones -lesure -lesage -leisure -lauver -laubach -latshaw -lary -lapham -lacoste -lacher -kutcher -knickerbocker -klos -klingler -kleiman -kittleson -kimbrel -kimberly -kemmerer -kelson -keese -kam -kallas -jurgensen -junkins -juneau -juergens -jolliff -jelks -janicki -jang -innocent -ingles -inge -huguley -huggard -howton -hone -holford -holding -hogle -hipple -heimbach -heider -heidel -havener -hattaway -harrah -hanscom -hankinson -hamdan -gridley -goulette -goulart -goodspeed -goodrow -go -girardi -gent -gautreau -ganz -gandara -gamblin -galipeau -fyffe -furrow -fulp -fricks -frase -frandsen -fout -foulks -fouche -foskey -forgey -foor -fobbs -finklea -fincham -figueiredo -festa -ferrier -fellman -eslick -eilerman -eckart -eaglin -dunfee -dumond -drewry -douse -domino -dimick -diener -dickert -deines -degree -declue -daw -dattilo -danko -custodio -cuccia -crunk -crispin -corp -cornwall -corea -coppin -considine -coniglio -conboy -collar -cockrum -clute -clewis -claude -christiano -channell -channel -cerrato -cecere -catoe -castillon -castile -carstarphen -carmouche -caperton -buteau -bury -bumpers -brey -brenton -brazeal -brassard -brass -braga -bradham -bourget -borrelli -borba -boothby -bohr -bohm -boehme -bodin -bloss -blocher -bizzell -bieker -berthelot -bernardini -berends -benard -belser -baze -bartling -barrientes -barras -barcia -banfield -aurand -artman -arnott -arend -ardis -amon -almaguer -allee -albarado -alameda -abdo -zuehlke -zoeller -yokoyama -yocom -wyllie -woolum -wint -winland -wink -wilner -wilmes -whitlatch -westervelt -walthall -walkowiak -walburn -viviano -vanderhoff -valez -ugalde -trumbull -todaro -tilford -tidd -tibbits -terranova -templeman -tannenbaum -talmage -tabarez -swearengin -swartwood -svendsen -strum -strack -storie -stockard -steinbeck -starns -stanko -stankiewicz -stacks -stach -sproles -spenser -smotherman -slusser -sinha -silber -siefert -siddiqui -shuff -sherburne -seldon -seddon -schweigert -schroeter -schmucker -saffold -rutz -rundle -rosinski -rosenow -rogalski -ridout -rhymer -replogle -regina -reda -raygoza -ratner -rascoe -rahm -quincy -quast -pry -pressnell -predmore -pou -porto -pleasants -pigford -pavone -patnaude -parramore -papadopoulos -palmatier -ouzts -oshields -ortis -olmeda -olden -okamoto -norby -nitz -niebuhr -nevius -neiman -neidig -neece -murawski -mroz -moylan -moultry -mosteller -moring -morganti -mook -moffet -mettler -merlo -mengel -mendelsohn -meli -melchior -mcmeans -mcfaddin -mccullers -mccollister -mccloy -mcclaine -maury -maser -martelli -manthey -malkin -maio -magwood -maginnis -mabon -luton -lusher -lucht -lobato -levis -letellier -legendre -laurel -latson -larmon -largo -landreneau -landgraf -lamberson -kurland -kresge -korman -korando -klapper -kitson -kinyon -kincheloe -kawamoto -kawakami -jenney -jeanpierre -ivers -issa -ince -hugh -hug -honda -hollier -hollars -hoerner -hodgkinson -hiott -hibbitts -herlihy -henricks -heavner -hayhurst -harvill -harewood -hanselman -hanning -gwyn -gustavson -grounds -grizzard -grinder -graybeal -gravley -gorney -goll -goehring -godines -gobeil -glickman -giuliano -gimbel -gift -geib -gayhart -gatti -gains -gadberry -frei -fraise -fouch -forst -forsman -folden -fogleman -figaro -fetty -feely -fabry -eury -estill -epling -elamin -echavarria -dutil -duryea -dumais -drago -downard -douthit -doolin -dobos -dison -dinges -diebold -desilets -deshazo -depaz -degennaro -dall -cyphers -cryer -croce -crisman -credle -coriell -copp -coop -compos -colmenero -cogar -cliff -chapel -carnevale -campanella -caley -calderone -burtch -brouwer -brehmer -brassell -brafford -bourquin -bourn -bohnert -blewett -blass -blakes -bhakta -besser -berge -bellis -balfour -avera -austria -applin -ammon -alsop -aleshire -akbar -zoller -zapien -wymore -wyble -wolken -wix -wickstrom -whobrey -whigham -westerlund -welsch -weisser -weisner -weinstock -wehner -watlington -wakeland -wafer -virgen -victorino -veltri -veith -urich -uresti -umberger -twedt -tuohy -tschida -trumble -troia -tristan -trimmer -topps -tonn -tiernan -threet -thrall -thetford -teneyck -tartaglia -swords -strohl -streater -strausbaugh -stradley -stonecipher -steadham -stansel -stalcup -stabile -sprenger -spradley -speier -southwood -sorrels -slezak -skow -sirmans -simental -silk -sifford -sievert -shover -sheley -selzer -scriven -schwindt -schwan -schroth -saylors -saragosa -sant -salaam -saephan -routt -rousey -ros -rolfes -rieke -rieder -richeson -redinger -rasnick -rapoza -rambert -rafael -quist -pyron -punch -pullman -przybylski -pridmore -pooley -pines -perkinson -perine -perham -pecor -peavler -partington -panton -oliverio -olague -ohman -ohearn -noyola -nicolai -nebel -murtha -muff -mowrey -moroney -morgenstern -morant -monty -monsour -mohammad -moffit -mijares -meriwether -mendieta -melendrez -mejorado -mckittrick -mckey -mckenny -mckelvy -mckechnie -mcelvain -mccoin -mazzarella -mazon -maurin -matthies -maston -maske -marzano -marmon -marburger -mangus -mangino -mallet -luo -losada -londono -lobdell -lipson -lesniak -leighty -lei -league -lavallie -lareau -laperle -lape -laforce -laffey -kuehner -kravitz -kowalsky -kohr -kinsman -keppler -kennemer -keiper -keely -kaler -jun -jelinek -jarnagin -issac -isakson -hypes -hutzler -huls -horak -hitz -hice -herrell -henslee -heitz -heiss -heiman -hasting -hartwick -harmer -harland -hammontree -haldeman -hakes -guse -guillotte -guard -groleau -greve -greenough -golub -golson -goldschmidt -golder -godbolt -gilmartin -gies -gibby -geren -genthner -gendreau -gemmill -gaymon -galyean -galeano -friar -folkerts -fleeman -fitzgibbons -ferranti -felan -farrand -eoff -enger -engels -ducksworth -duby -dry -drumheller -douthitt -doris -donis -dixion -dittrich -dials -dessert -descoteaux -depaul -denker -demuth -demelo -delacerda -deforge -danos -dalley -daigneault -cybulski -crystal -cristobal -cothren -corns -corkery -copas -coco -clubb -clore -chitty -chichester -chery -charon -chamber -chace -catanzaro -castonguay -cassella -caroll -carlberg -cammarata -calle -cajigas -byas -buzbee -busey -burling -bufkin -brzezinski -brun -brickner -brabham -boller -bodily -bockman -bleich -blakeman -bisbee -bier -bezanson -bevilacqua -besaw -berrian -berkeley -bequette -beauford -baumgarten -baudoin -batie -basaldua -bardin -bangert -banes -backlund -avitia -artz -archey -apel -amico -alam -aden -zebrowski -yokota -wormley -wootton -woodie -womac -wiltz -wigington -whitehorn -whisman -weisgerber -weigle -weedman -watkin -wasilewski -wadlington -wadkins -viverette -vidaurri -vidales -vezina -vanleer -vanhoy -vanguilder -vanbrunt -uy -updegraff -tylor -trinkle -touchette -tilson -tilman -tengan -tarkington -surrett -super -summy -streetman -straughter -steere -stalling -spruell -spadaro -solley -smathers -silvera -siems -shreffler -sholar -selden -schaper -samayoa -ruggeri -rowen -rosso -rosenbalm -roosevelt -roose -ronquillo -rogowski -rexford -repass -renzi -renick -renda -rehberg -reaper -ranck -raffa -rackers -raap -pugsley -puglisi -prinz -primus -pounders -pon -pompa -plasencia -pipkins -pillar -petrosky -pelley -pauls -pauli -parkison -parisien -pangle -pancoast -palazzolo -owenby -overbay -orris -orlowski -nipp -newbern -nedd -nealon -najar -mysliwiec -myron -myres -musson -murrieta -munsell -mumma -muldowney -moyle -mowen -mose -morejon -moodie -monier -mikkelsen -miers -metzinger -melin -mcquay -mcpeek -mcneeley -mcglothin -mcghie -mcdonell -mccumber -mccranie -mcbean -mayhugh -marts -marenco -manges -lynam -lupien -luff -luebbert -loh -loflin -lococo -loch -lis -linke -lightle -lewellyn -leishman -lebow -lebouef -leanos -lanz -landy -landaverde -lacefield -kyler -kuebler -kropf -kroeker -kluesner -klass -kimberling -kilkenny -kiker -ketter -kelemen -keasler -kawamura -karst -kardos -jeremiah -jared -igo -huseman -huseby -hurlbert -huard -hottinger -hornberger -hopps -holdsworth -hensen -heilig -heeter -harpole -haak -gutowski -gunnels -grimmer -grieve -gravatt -granderson -gotcher -gleaves -genao -garfinkel -frerichs -foushee -flanery -finnie -feldt -fagin -ewalt -ellefson -eiler -eckhart -eastep -dwight -digirolamo -didomenico -devera -delavega -defilippo -debusk -daub -damiani -cupples -cuddy -crofoot -courter -coto -costigan -corning -corman -corlett -cooperman -collison -coghlan -cobbins -coady -coachman -clothier -client -clear -cipolla -chmielewski -chiodo -chatterton -chappelle -chairez -ceron -casperson -casler -casados -carrow -carolina -carlino -carico -cardillo -caouette -canto -canavan -cambra -byard -buterbaugh -buse -bucy -buckwalter -bubb -bryd -brissette -brault -bradwell -boshears -borchert -blansett -blanch -blade -biondo -bilbo -biehl -bessey -berta -belles -bella -beeks -beekman -beaufort -bayliss -bardsley -avilla -astudillo -ardito -anwar -antunez -amen -aderholt -abate -yowell -yin -yearby -ye -wurst -woolverton -woolbright -wildermuth -whittenburg -whitely -wetter -wetherbee -wenz -welliver -welling -welcome -wason -warrior -warlick -voorhies -vivier -villines -vida -verde -veiga -varghese -vanwyk -vanwingerden -vanhorne -umstead -twiggs -tusing -trego -tompson -tinkle -thoman -thole -tatman -tartt -suda -studley -strock -strawbridge -stokely -stec -stang -stalter -speidel -spafford -spade -sontag -sokolowski -skillman -skelley -skalski -sison -sippel -sinquefield -sin -siegle -sher -sharrow -setliff -sera -sellner -selig -seibold -seery -scriber -schull -schrupp -schippers -say -saulsbury -sao -santillo -sanor -sancho -rufus -rubalcaba -roosa -ronk -robbs -roache -river -riebe -reinoso -quin -prude -preuss -pottorff -pontiff -plouffe -picou -picklesimer -pettyjohn -petti -penaloza -parmelee -pardee -palazzo -overholt -ogawa -ofarrell -nova -nolting -noda -nicola -nickson -nevitt -neveu -navarre -nam -murrow -munz -mulloy -monzo -milliman -metivier -merlino -mcpeters -mckissack -mckeen -mcgurk -mcfee -mcfarren -mcelwee -mceachin -mcdonagh -mccarville -mayhall -mattoon -martello -marconi -marbury -mao -manzella -maly -malec -maitland -maheu -maclennan -lyke -luera -loyola -lowenstein -losh -lopiccolo -longacre -loman -loden -loaiza -lieber -libbey -lenhardt -lefebre -lauterbach -lauritsen -lass -larocco -larimer -lansford -lanclos -lamay -lal -kulikowski -kriebel -kosinski -kleinman -kleiner -kleckner -kistner -kissner -kissell -kilroy -kenna -keisler -keeble -keaney -kale -joly -jimison -jeans -ikner -hursey -hruska -hove -hou -host -hosking -hoose -holle -hoeppner -hittle -hitchens -hirth -hinerman -hilario -higby -hertzog -hentz -hensler -heist -heier -hegg -hassel -harpe -hara -hank -hain -hagopian -grimshaw -grado -gowin -gowans -googe -goodlow -goering -gleaton -gidley -giannone -gascon -garneau -gambrel -galaz -fuentez -frisina -fresquez -fraher -fitting -feuerstein -felten -everman -estell -ertel -erazo -ensign -endo -ellerman -eichorn -edgell -ebron -eaker -dundas -duncanson -duchene -ducan -dombroski -doman -dock -dickison -dewoody -deloera -delahoussaye -dejean -degroat -decaro -dearmond -dashner -dales -crossett -cressey -cowger -courts -court -cornette -corbo -coplin -coover -condie -cokley -cicero -ceaser -cannaday -callanan -cadle -buscher -bullion -bucklin -bruening -bruckner -brose -branan -bradway -botsford -bortz -borelli -bonetti -bolan -boerger -bloomberg -bingman -bilger -berns -beringer -beres -beets -beede -beaudet -beachum -baughn -bator -bastien -basquez -barreiro -barga -baratta -balser -baillie -axford -attebery -arakaki -annunziata -andrzejewski -ament -amendola -adcox -abril -zenon -zeitler -zang -zambrana -ybanez -yagi -wolak -wilcoxson -whitesel -whitehair -weyand -westendorf -welke -weinmann -wei -weesner -weekes -wedel -wedding -weatherall -warthen -vose -villalta -vila -viator -vaz -valtierra -urbanek -tulley -trojanowski -trapani -toups -torpey -tomita -tindal -tieman -tevis -tedrow -taul -tash -tammaro -sylva -swiderski -sweeting -sund -stutler -stocking -stich -sterns -stegner -stalder -splawn -speirs -southwell -soltys -smead -slye -skipworth -sipos -simmerman -sigmund -sidhu -shuffler -shingleton -shadwick -sermons -seefeldt -scipio -schwanke -schreffler -schiro -scheiber -sandoz -samsel -ruddell -royse -rouillard -rotella -rosalez -romriell -rommel -rizer -riner -rickards -rhoton -rhem -reppert -rayl -raulston -raposo -rapier -rainville -radel -quinney -purdie -puffer -pizzo -pincus -petrus -pendelton -pendarvis -peltz -peguero -peete -patricio -patchett -parrino -papke -pam -palafox -ottley -ostby -oritz -oren -ogan -odegaard -oatman -noell -nida -nicoll -newhall -newbill -netzer -nettleton -neblett -murley -mungo -mulhall -mosca -morissette -morford -montag -monsen -mitzel -miskell -minder -mehaffey -mcquillen -mclennan -mcgrail -mccreight -mayville -maysonet -maust -mathieson -mastrangelo -maskell -martina -manz -malmberg -makela -madruga -luz -lotts -longnecker -logston -littell -liska -lindauer -lillibridge -levron -letchworth -lesh -leffel -leday -leamon -laura -kulas -kula -kucharski -kromer -kraatz -konieczny -konen -komar -kivett -kirts -kinnear -kersh -keithley -keifer -judah -jimenes -jeppesen -jasmin -jansson -huntsberry -hund -huitt -huffine -hosford -hopes -holmstrom -hollen -hodgin -hirschman -hiltner -hilliker -hibner -hennis -helt -heidelberg -heger -heer -hartness -hardrick -halladay -gula -guillaume -guerriero -grunewald -grosse -griffeth -grenz -grassi -grandison -ginther -gimenez -gillingham -gillham -gess -gelman -gearheart -gaskell -gariepy -gamino -gallien -galentine -fuquay -froman -froelich -friedel -foos -fomby -focht -flythe -fiqueroa -filson -filip -fierros -fett -fedele -fasching -farney -fargo -everts -even -etzel -elzey -eichner -eger -eatman -ducker -duchesne -donati -domenech -dollard -dodrill -dinapoli -denn -delfino -delcid -delaune -delatte -deems -daluz -cusson -cullison -cue -cuadrado -crumrine -cruickshank -crosland -croll -criddle -crepeau -coutu -couey -cort -coppinger -collman -cockburn -coca -clayborne -claflin -cissell -chowdhury -chicoine -chenier -causby -caulder -cassano -casner -cardiel -burner -brunton -bruch -broxton -brosius -brooking -branco -bracco -bourgault -bosserman -books -bonet -bolds -bolander -bohman -boelter -blohm -blea -blaise -bischof -billie -beus -bellew -bastarache -bast -bartolome -bark -barcomb -barco -balls -balk -balas -bakos -avey -atnip -ashbrook -arno -arbour -aquirre -appell -aldaco -alcazar -alban -ahlstrom -abadie -zylstra -zick -zheng -yother -wyse -wunsch -whitty -weist -vrooman -vine -villalon -vidrio -vavra -vasbinder -vanmatre -vandorn -ugarte -turberville -tuel -trogdon -town -toupin -toone -tolleson -tinkham -tinch -tiano -teston -teer -tea -tawney -taplin -tant -tansey -swayne -sutcliffe -sunderman -suits -strothers -stromain -stork -stoneburner -stolte -stolp -stoehr -stingley -stegman -stangl -spinella -spier -soules -sommerfield -sipp -simek -siders -shufelt -shue -shor -shires -shellenberger -sheely -service -sepe -seaberg -schwing -scherrer -scalzo -saver -sasse -sarvis -santora -sansbury -salls -saleem -ryland -rybicki -ruggieri -rothenberg -rosenstein -roquemore -rollison -rodden -rivet -rita -ridlon -riche -riccardi -reiley -regner -rech -rayo -rawley -ranger -raff -radabaugh -quon -quill -privette -prange -pickrell -perino -penning -pankratz -orlandi -nyquist -norrell -noren -naples -nale -nakashima -musselwhite -murrin -murch -mullinix -mullican -mullan -morneau -mondor -molinar -mo -minjares -minix -mingle -minchew -mill -milewski -mikkelson -mifflin -messing -merkley -meis -meas -mcroy -mcphearson -mcneel -mcmunn -mcmorrow -mcdorman -mccroskey -mccoll -mcclusky -mcclaran -mccampbell -mazzariello -mauzy -mauch -mastro -martinek -marsala -marcantel -mahle -lyda -lucius -luciani -lubbers -louder -lobel -linsey -linch -liller -legros -layden -lapine -lansberry -lage -laforest -labriola -koga -knupp -klimek -kittinger -kirchoff -kinzel -killinger -kilbourne -ketner -kepley -kemble -kells -kear -kaya -karsten -kaneshiro -kamm -joines -joachim -janelle -jacobus -iler -holgate -hoar -hisey -hird -hilyard -heslin -herzberg -hennigan -hegland -hartl -haner -handel -gualtieri -greenly -grasser -gran -goetsch -godbold -gilland -gidney -gibney -giancola -gettinger -garzon -garret -galle -galgano -gaier -gaertner -fuston -freel -fortes -flock -fiorillo -figgs -fenstermacher -fedler -facer -fabiano -evins -eusebio -euler -esquer -enyeart -elem -eisenhower -eich -edgerly -durocher -durgan -duffin -drolet -drewes -dotts -dossantos -dolly -dockins -dirksen -difiore -dierks -dickerman -dice -dery -denault -demaree -delmonte -delcambre -days -daulton -darst -dahle -curnutt -cully -culligan -cueva -crosslin -croskey -cromartie -crofts -covin -coutee -countess -cost -coppa -coogan -condrey -concannon -coger -cloer -clatterbuck -cieslak -chumbley -choudhury -chiaramonte -charboneau -chai -carneal -cappello -campisi -callicoat -burgoyne -bucholz -brumback -brosnan -brogden -broder -brendle -breece -bown -bou -boser -bondy -bolster -boll -bluford -blandon -biscoe -bevill -bence -battin -basel -bartram -barnaby -barmore -balbuena -badgley -backstrom -auyeung -ater -arrellano -arant -ansari -alling -alejandre -alcock -alaimo -aguinaldo -aarons -zurita -zeiger -zawacki -yutzy -yarger -wygant -wurm -wuest -wolfram -witherell -wisneski -whitby -whelchel -weisz -weisinger -weishaar -wehr -wedge -waxman -waldschmidt -walck -waggener -vosburg -vita -villela -vercher -venters -vanscyoc -vandyne -valenza -utt -urick -ungar -ulm -tumlin -tsao -tryon -trudel -treiber -tow -tober -tipler -tillson -tiedemann -thornley -tetrault -temme -tarrance -tackitt -sykora -sweetman -swatzell -sutliff -suhr -sturtz -strub -strayhorn -stormer -steveson -stengel -steinfeldt -spiro -spieker -speth -spero -soza -souliere -soucie -snedeker -slifer -skillings -situ -siniard -simeon -signorelli -siggers -shultis -shrewsbury -shippee -shimp -sherron -shepler -sharpless -shadrick -severt -severs -semon -semmes -seiter -segers -sclafani -sciortino -schroyer -schrack -schoenberg -schober -scheidt -scheele -satter -sartori -sarris -sarratt -salvaggio -saladino -sakamoto -saine -ryman -rumley -ruggerio -rucks -roughton -room -robards -ricca -rexroad -resler -reny -rentschler -redrick -redick -reagle -raymo -rape -raker -racette -pyburn -pritt -presson -pressman -pough -plain -pisani -perz -perras -pelzer -pedrosa -palos -palmisano -paille -orem -orbison -oliveros -nourse -nordquist -newbury -nelligan -nawrocki -myler -mumaw -morphis -moldenhauer -miyashiro -mignone -mickelsen -michalec -mesta -mcree -mcqueary -mcninch -mcneilly -mclelland -mclawhorn -mcgreevy -mcconkey -mattes -maselli -marten -mart -marcucci -manseau -manjarrez -malbrough -machin -mabie -lynde -lykes -lueras -lokken -loken -linzy -lillis -lilienthal -levey -legler -leedom -lebowitz -lazzaro -larabee -lapinski -langner -langenfeld -lampkins -lamotte -lambright -lagarde -ladouceur -labrador -labounty -lablanc -laberge -kyte -kroon -kron -kraker -kouba -kirwin -kincer -kimbler -kegler -keach -katzman -katzer -kalman -journey -jimmerson -jenning -janus -iacovelli -hust -huson -husby -humphery -hufnagel -honig -holsey -holoman -hohl -hogge -hinderliter -hildebrant -hick -hey -hemby -helle -heintzelman -heidrick -hearon -heap -hazelip -hauk -hasbrouck -harton -hartin -harpster -hansley -hanchett -haar -guthridge -gulbranson -guill -guerrera -grund -grosvenor -grist -grell -grear -granberry -gonser -giunta -giuliani -gillon -gillmore -gillan -gibbon -gettys -gelb -gano -galliher -fullen -frese -frates -foxwell -fleishman -fleener -fielden -ferrera -feng -fells -feemster -fauntleroy -fails -evatt -espy -eno -emmerich -edwin -edler -eastham -dunavant -duca -drinnon -dowe -dorgan -dollinger -divers -dipalma -difranco -dietrick -denzer -demarest -delee -delariva -delany -decesare -debellis -deavers -deardorff -dawe -darosa -darley -dalzell -dahlen -curto -cupps -cunniff -cude -crivello -cripps -cresswell -cousar -cotta -compo -colorado -clyne -clayson -cearley -catania -carini -cargo -cantero -cali -buttrey -buttler -burpee -bulkley -buitron -buda -bublitz -bryer -bryden -brouillette -brott -brookman -bronk -breshears -brennen -brannum -brandl -braman -bracewell -boyter -bomberger -bold -bogen -boeding -bob -blauvelt -blandford -bigger -biermann -bielecki -bibby -berthold -berkman -belvin -bellomy -beland -behne -beecham -becher -beams -bax -bassham -barret -baley -bacchus -auxier -atkison -ary -arocha -arechiga -anspach -an -algarin -alcott -alberty -ager -adolph -ackman -abdul -abdallah -zwick -ziemer -zastrow -zajicek -yokum -yokley -wittrock -winebarger -wilker -wilham -whitham -wetzler -westling -westbury -wendler -wellborn -weitzman -weitz -weight -wallner -waldroup -vrabel -vowels -volker -vitiello -visconti -villicana -vibbert -vesey -vannatter -vangilder -vandervort -vandegrift -vanalstyne -vallecillo -usrey -tynan -turpen -tuller -trisler -townson -tillmon -threlkeld -thornell -terrio -taunton -tarry -tardy -swoboda -swihart -sustaita -suitt -stuber -strine -stookey -stmartin -stiger -stainbrook -solem -smail -sligh -siple -sieben -shumake -shriner -showman -shiner -sheen -sheckler -seim -secrist -scoggin -schultheis -schmalz -schendel -schacher -savard -saulter -santillanes -sandiford -sande -salzer -salvato -saltz -sakai -ryckman -ryant -ruck -ronald -rocker -rittenberry -ristau -risk -richart -rhynes -reyer -reulet -reser -redington -reddington -rebello -reasor -raftery -rabago -raasch -quintanar -pylant -purington -provencal -prom -prioleau -prestwood -pothier -popa -polster -politte -poffenberger -pinner -pietrzak -pettie -penaflor -pellot -pellham -paylor -payeur -papas -paik -oyola -osbourn -orzechowski -oppenheimer -olesen -oja -ohl -nuckolls -nordberg -noonkester -nold -nitta -niblett -neuhaus -nesler -ned -nanney -myrie -mutch -motto -mosquera -morena -montalto -montagna -mizelle -mincy -millikan -millay -miler -milbourn -mikels -migues -miesner -mershon -merrow -merlin -melia -meigs -mealey -mcraney -mcmartin -mclachlan -mcgeehan -mcferren -mcdole -mccaulley -mcanulty -maziarz -maul -mateer -martinsen -marson -mariotti -manna -mang -mance -malbon -mah -magnusson -maclachlan -macek -lurie -luc -lown -loranger -lonon -lisenby -linsley -linger -lenk -leavens -learned -lauritzen -lathem -lashbrook -landman -lamarche -lamantia -laguerre -lagrange -kogan -klingbeil -kist -kimpel -kime -kier -kerfoot -kennamer -kellems -kammer -kamen -jess -jepsen -jarnigan -isler -ishee -isabel -hux -hungate -hummell -hultgren -huffaker -hruby -hover -hornick -hooser -hooley -hoggan -hirano -hilley -higham -heuser -henrickson -henegar -hellwig -heide -hedley -hasegawa -hartt -hambright -halfacre -hafley -guion -guinan -grunwald -grothe -gries -greaney -granda -grabill -gothard -gossman -gosser -gossard -gosha -goldner -gobin -gloss -ginyard -gilkes -gilden -gerson -gephart -gengler -gautier -gassett -garon -gandhi -galusha -gallager -galdamez -fulmore -fritsche -fowles -foutch -forward -footman -fludd -flakes -ferriera -ferrero -ferreri -fenimore -fegley -fegan -fearn -farrier -fansler -fane -falzone -fairweather -etherton -elsberry -dykema -duppstadt -dunnam -dunklin -duet -due -dudgeon -dubuc -doxey -dory -donmoyer -dodgen -disanto -dingler -dimattia -dilday -digennaro -diedrich -derossett -deputy -depp -demasi -degraffenreid -deakins -deady -davin -daigre -daddario -czerwinski -cullens -cubbage -cracraft -constance -comes -combest -coletti -coghill -clerk -claybrooks -class -christofferse -chiesa -chason -chamorro -cessna -celentano -cayer -carolan -carnegie -capetillo -callier -cadogan -caba -byrom -byrns -burrowes -burket -burdge -burbage -bukowski -buchholtz -brunt -brungardt -brunetti -brumbelow -brugger -broadhurst -brigance -brandow -bouknight -bottorff -bottomley -bosarge -borger -bona -bombardier -bologna -boggan -blumer -blecha -birney -birkland -betances -beran -benny -benes -belin -belgrave -bealer -bauch -bath -bashir -bartow -baro -barnhouse -barile -ballweg -baisley -bains -baehr -badilla -bachus -bacher -bachelder -auzenne -aten -astle -allis -agarwal -adger -adamek -ziolkowski -zinke -zazueta -zamorano -younkin -won -wittig -witman -winsett -winkles -wiedman -whitner -whitcher -wetherby -westra -westhoff -wehrle -wee -wagaman -voris -vicknair -vegas -veasley -vaugh -vanish -vanderburg -valletta -tunney -trumbo -truluck -trueman -truby -trombly -trojan -tourville -tostado -tone -titcomb -timpson -tignor -thrush -thresher -thiede -tews -tamplin -taff -tacker -syverson -sylvestre -summerall -stumbaugh -strouth -straker -stradford -stoney -stokley -steinhoff -steinberger -stairs -spigner -soltero -snively -sletten -sinkler -sinegal -simoes -siller -sigel -shoe -shire -shinkle -shellman -sheller -sheats -sharer -selvage -sedlak -sea -schriver -schimke -scheuerman -schanz -savory -saulters -sauers -sais -rusin -rumfelt -ruhland -rozar -rosborough -ronning -rolph -roloff -rogue -robie -riviera -rimer -riehle -ricco -rhein -retzlaff -reisman -reimann -re -rayes -raub -raminez -quesinberry -pua -procopio -priolo -printz -prewett -preas -prahl -portugal -poovey -ploof -platz -plaisted -pinzon -pineiro -pickney -petrovich -perl -pehrson -peets -pavon -pautz -pascarella -paras -paolini -pals -pafford -oyer -ovellette -outten -outen -ours -orduna -odriscoll -oberlin -nosal -niven -nisbett -nevers -nathanson -mule -mukai -mozee -mowers -motyka -morency -montford -mollica -molden -mitten -miser -mina -millender -midgette -messerly -melendy -meisel -meidinger -meany -mcnitt -mcnemar -mcmakin -mcgaugh -mccaa -mauriello -maudlin -matzke -mattia -matteo -matsumura -masuda -mangels -maloof -malizia -mahmoud -maglione -maddix -lucchesi -lochner -linquist -lino -lietz -leventhal -leopard -lemanski -leiser -laury -lauber -lamberth -kuss -kung -kulik -kuiper -krout -kotter -kort -kohlmeier -koffler -koeller -knipe -knauss -kleiber -kissee -kirst -kirch -kilgo -kerlin -kellison -kehl -kalb -jorden -jantzen -jamar -inabinet -ikard -husman -hunsberger -hundt -hucks -houtz -houseknecht -hoots -hogsett -hogans -hintze -hession -henault -hemming -helsley -heinen -heffington -heberling -heasley -heal -hazley -hazeltine -hayton -hayse -hawke -haston -harward -harvard -harrow -hanneman -hafford -hadnot -guerro -graig -grahm -gowins -gordillo -goosby -glatt -gibbens -ghent -gerrard -germann -geil -gebo -gean -garling -gardenhire -garbutt -gagner -furguson -funchess -fujiwara -fujita -friley -frigo -forshee -folkes -filler -fernald -ferber -feingold -favorite -faul -farrelly -fairbank -failla -estelle -espey -eshleman -ertl -erhart -erhardt -erbe -elsea -ells -ellman -eisenhart -ehmann -earnhardt -duplantis -dulac -ducote -draves -dosch -dolce -divito -ditch -dimauro -derringer -demeo -demartini -delima -dehner -degen -defrancisco -defoor -dedeaux -debnam -cypert -cutrer -cusumano -custis -croker -courtois -costantino -cormack -corbeil -copher -conlan -conkling -cogdell -cilley -chapdelaine -cendejas -castiglia -cassette -cashin -carstensen -carol -caprio -calcote -calaway -byfield -butner -bushway -burritt -browner -brobst -briner -brighton -bridger -brickley -brendel -bratten -bratt -brainerd -brackman -bowne -bouck -borunda -bordner -bonenfant -boer -boehmer -bodiford -bleau -blankinship -blane -blaha -bitting -bissonette -bigby -bibeau -beverage -bermudes -berke -bergevin -bergerson -bendel -belville -bechard -bearce -beadles -batz -bartlow -barren -ayoub -avans -aumiller -arviso -arpin -arnwine -armwood -arent -arehart -arcand -antle -ambrosino -alongi -alm -allshouse -ahart -aguon -ziebarth -zeledon -zakrzewski -yuhas -yingst -yedinak -wommack -winnett -wingler -wilcoxen -whitmarsh -whistler -wayt -watley -wasser -warkentin -voll -vogelsang -voegele -vivanco -vinton -villafane -viles -versace -ver -venne -vanwagoner -vanwagenen -vanleuven -vanauken -uselton -uren -trumbauer -tritt -treadaway -tozier -tope -tomczak -tomberlin -tomasini -tollett -toller -titsworth -tirrell -tilly -tavera -tarnowski -tanouye -tall -swarthout -sutera -surette -styers -styer -stipe -stickland -steve -stembridge -stearn -starkes -stanberry -stahr -spino -spicher -sperber -speece -soo -sonntag -sneller -smalling -slowik -slocumb -sliva -slemp -slama -sitz -sisto -sisemore -sindelar -shipton -shillings -sheeley -sharber -shaddix -severns -severino -sever -sensabaugh -seder -seawell -seamons -schrantz -schooler -scheffer -scheerer -scalia -saum -santibanez -sano -sanjuan -sampley -sailer -sabella -sabbagh -royall -rottman -rivenbark -rikard -ricketson -rickel -rethman -reily -reddin -reasoner -reade -rast -ranallo -rana -quintal -pung -pucci -proto -prosperie -prim -preusser -preslar -powley -postma -pinnix -pilla -pietsch -pickerel -pica -pharris -petway -petillo -perin -pereda -pennypacker -pennebaker -pedrick -patin -patchell -parodi -parman -pantano -padua -padro -osterhout -orner -opp -olivar -ohlson -odonoghue -oceguera -oberry -novello -noguera -newquist -newcombe -neihoff -nehring -nees -nebeker -nau -mundo -mullenix -morrisey -moronta -morillo -morefield -mongillo -molino -minto -midgley -michie -menzies -medved -mechling -mealy -mcshan -mcquaig -mcnees -mcglade -mcgarity -mcgahey -mcduff -mayweather -mastropietro -masten -maranto -maniscalco -maize -mahmood -maddocks -maday -macha -maag -luken -lopp -lolley -llanas -litz -litherland -lindenberg -lieu -letcher -lentini -lemelle -leet -lecuyer -leber -laursen -latch -larrick -lantigua -langlinais -lalli -lafever -labat -labadie -kurt -krogman -kohut -knarr -klimas -klar -kittelson -kirschbaum -kintzel -kincannon -kimmell -killgore -kettner -kelsch -karle -kapoor -johansson -jock -jenkinson -janney -isabelle -iraheta -insley -hyslop -hy -human -huckstep -holleran -hoerr -hinze -hinnenkamp -hilger -higgin -hicklin -heroux -henkle -helfer -heikkinen -heckstall -heckler -heavener -haydel -haveman -haubert -harrop -harnois -hansard -hanover -hammitt -haliburton -haefner -hadsell -haakenson -guynn -guizar -grout -grosz -goo -gomer -golla -godby -glanz -glancy -givan -giesen -gerst -gayman -garraway -gabor -furness -frisk -fremont -frary -forand -fessenden -ferrigno -fearon -favreau -faulks -falbo -ewen -everton -eurich -etchison -esterly -entwistle -ellingsworth -elders -ek -eisenbarth -edelson -eckel -earnshaw -dunneback -doyal -donnellan -dolin -dibiase -deschenes -dermody -denmark -degregorio -darnall -dant -dansereau -danaher -dammann -dames -czarnecki -cuyler -custard -cummingham -cuffie -cuffee -cudney -cuadra -crigler -creger -coughlan -corvin -cortright -corchado -connery -conforti -condron -colosimo -colclough -cola -cohee -claire -ciotti -chill -chien -check -chacko -cevallos -cavitt -cavins -castagna -cashwell -carrozza -carrara -capra -campas -callas -caison -cai -caggiano -cabot -bynoe -buswell -burpo -burnam -burges -buerger -buelow -bueche -buckle -bruni -brummitt -brodersen -briese -breit -brakebill -braatz -boyers -boughner -borror -borquez -bonelli -bohner -blaze -blaker -blackmer -bissette -bibbins -bhatt -bhatia -bessler -bergh -beresford -bensen -benningfield -benito -bellantoni -behler -beehler -beazley -beauchesne -bargo -bannerman -baltes -balog -ballantyne -bad -axelson -apgar -aoki -anstett -alejos -alcocer -albury -aichele -ahl -ackles -zerangue -zehner -zank -zacarias -youngberg -yorke -yarbro -xie -wydra -worthley -wolbert -wittmer -witherington -wishart -wire -winnie -winkleman -willilams -willer -wiedeman -whittingham -whitbeck -whetsel -wheless -westerberg -welcher -wegman -waterfield -wasinger -warfel -wannamaker -walborn -wada -vogl -vizcarrondo -vitela -villeda -veras -venuti -veney -ulrey -uhlig -turcios -tremper -torian -torbett -thrailkill -terrones -teitelbaum -teems -tay -swoope -sunseri -stutes -stthomas -strohm -stroble -striegel -streicher -stodola -stinchcomb -steves -steppe -stem -steller -staudt -starner -stamant -stam -stackpole -sprankle -speciale -spahr -sowders -sova -soluri -soderlund -slinkard -skates -sjogren -sirianni -siewert -sickels -sica -shugart -shoults -shive -shimer -shier -shield -shepley -sheeran -sharper -sevin -severe -seto -segundo -sedlacek -scuderi -schurman -schuelke -scholten -schlater -schisler -schiefelbein -schalk -sanon -sae -sabala -ruyle -ruybal -ruf -rueb -rowsey -rosol -rocheleau -rishel -rippey -ringgold -rieves -ridinger -rew -retherford -rempe -reith -rafter -raffaele -quinto -putz -purdom -puls -pulaski -propp -principato -preiss -prada -polansky -poch -plath -pittard -pinnock -pfarr -pfannenstiel -penniman -pauling -patchen -paschke -parkey -pando -overly -ouimet -ottman -otter -ostlund -ormiston -occhipinti -nowacki -norred -noack -nishida -nilles -nicodemus -neth -nealey -myricks -murff -mungia -mullet -motsinger -moscato -mort -morado -moors -monnier -molyneux -modzelewski -miura -minich -militello -milbrandt -michalik -meserve -merle -mendivil -melara -meadow -mcnish -mcelhannon -mccroy -mccrady -mazzella -maule -mattera -mathena -matas -mass -mascorro -marone -marinello -marguez -marcell -manwaring -manhart -mangano -maggi -lymon -luter -luse -lukasik -luiz -ludlum -luczak -lowenthal -lossett -lorentzen -loredo -longworth -lomanto -lisi -lish -lipsky -linck -liedtke -levering -lessman -lemond -lembo -ledonne -leatham -laufer -lanphear -langlais -lando -lamphear -lamberton -lafon -lade -lacross -kyzer -krok -kring -krell -krehbiel -kratochvil -krach -kovar -kostka -knudtson -knaack -kliebert -klahn -kirkley -kimzey -kettle -kerrick -kennerson -keesler -karlin -kan -jenny -janousek -jan -imel -icenhour -hyler -hunger -hudock -houpt -hopping -hoops -holquin -holiman -holahan -hodapp -hires -hillen -hickmon -hersom -henrich -helvey -heidt -heideman -hedstrom -hedin -hebron -hayter -harn -hardage -harbor -halsted -hahne -hagemann -guzik -guel -groesbeck -gritton -grego -graziani -grasty -graney -gouin -gossage -golston -goheen -godina -glade -giorgi -giambrone -gerrity -gerrish -gero -gerling -gaulke -garlick -galiano -gaiter -gahagan -gagnier -friddle -fredericksen -franqui -follansbee -foerster -flury -fitzmaurice -fiorini -finlayson -fiecke -fickes -fichter -ferron -ferdinand -farrel -fackler -eyman -escarcega -errico -erler -erby -engman -engelmann -elsass -elliston -eddleman -eadie -dummer -drost -dorrough -dorrance -doolan -donalson -domenico -ditullio -dittmar -dishon -dionisio -dike -devinney -desir -deschamp -derrickson -delamora -deitch -dechant -dave -danek -dahmen -curci -cudjoe -crumble -croxton -creasman -craney -crader -cowling -coulston -cortina -corlew -corl -copland -convery -cohrs -clune -clausing -cipriani -cinnamon -cianciolo -chubb -chittum -chenard -charlesworth -charlebois -champine -chamlee -chagoya -casselman -cardello -capasso -cannella -calderwood -byford -buttars -bushee -burrage -buentello -brzozowski -bryner -brumit -brookover -bronner -bromberg -brixey -brinn -briganti -bremner -brawn -branscome -brannigan -bradsher -bozek -boulay -bormann -bongiorno -bollin -bohler -bogert -bodenhamer -blose -blind -bivona -bitter -billips -bibler -benfer -benedetti -belue -bellanger -belford -behn -beerman -barnhardt -baltzell -balling -balducci -bainter -babineau -babich -baade -attwood -asmus -asaro -artiaga -april -applebaum -ang -anding -amar -amaker -allsup -alligood -alers -agin -agar -achenbach -abramowitz -abbas -aasen -zehnder -yopp -yelle -yeldell -wynter -woodmansee -wooding -woll -winborne -willsey -willeford -widger -whiten -whitchurch -whang -wen -weissinger -weinman -weingartner -weidler -waltrip -walt -wagar -wafford -vitagliano -villalvazo -villacorta -vigna -vickrey -vicini -ventimiglia -vandenbosch -valvo -valazquez -utsey -urbaniak -unzueta -trombetta -trevizo -trembley -tremaine -traverso -tores -tolan -tillison -tietjen -tee -teachout -taube -tatham -tarwater -tarbell -sydow -sy -swims -swader -striplin -stops -stoltenberg -steinhauer -steil -steigerwald -starkweather -stallman -squier -sparacino -span -spadafora -shiflet -shibata -shevlin -sherrick -shake -sessums -servais -senters -seevers -seelye -searfoss -seabrooks -scoles -schwager -schrom -schmeltzer -scheffel -sax -sawin -saterfiel -sardina -sanroman -sane -sandin -salamanca -saladin -sak -sabia -rustin -rushin -ruley -rueter -row -rotter -rosenzweig -roles -rohe -roder -rockey -ro -riter -rieth -ried -riding -riddles -ridder -rennick -remmers -remer -relyea -reilley -reder -rasheed -rakowski -rabin -queener -pursel -prue -prowell -pritts -primo -presler -pouncy -porche -porcaro -pollman -pleas -planas -pinkley -pinegar -pilger -philson -petties -perrodin -pendergrast -patao -pasternak -passarelli -pasko -parshall -panos -panella -palombo -padillo -oyama -overlock -overbeck -otterson -orrell -ornellas -opitz -okelly -officer -obando -noggle -nicosia -netto -negrin -natali -nakayama -nagao -nadel -musial -murrill -murrah -munsch -mucci -mrozek -moyes -mowrer -moris -morais -moorhouse -monico -mone -mondy -moncayo -mole -miltenberger -milsap -milone -millikin -milardo -mika -micheals -micco -meyerson -mericle -mendell -meinhardt -meachum -mcleroy -mcgray -mcgonigal -maultsby -matis -matheney -matamoros -marro -marcil -marcial -mantz -mannings -maltby -malchow -maiorano -mahn -mahlum -maglio -mae -maberry -lustig -luellen -longwell -longenecker -lofland -locascio -linney -linneman -lighty -levell -levay -lenahan -lemen -lehto -lebaron -lanctot -lamy -lainez -laffoon -labombard -kujawski -kroger -kreutzer -korhonen -kondo -kollman -kohan -kogut -knaus -kivi -kittel -kinner -kindig -kindel -kiesel -kidney -kibby -khang -kettler -ketterer -kepner -kelliher -keenum -kanode -kail -july -juhasz -jowett -jolicoeur -jeon -iser -ingrassia -imai -hutchcraft -humiston -hulings -hukill -huizenga -hugley -huddle -hose -hornyak -hodder -hisle -hillenbrand -hille -higuchi -hertzler -herdon -heppner -hepp -heitmann -heckart -hazlewood -hayles -hayek -hawthorn -hawkin -haugland -hasler -harbuck -happel -hambly -hambleton -hagaman -guzzi -gullette -guinyard -grogg -grise -griffing -goto -gosney -goods -goley -goldblatt -gledhill -girton -giltner -gillock -gilham -gilfillan -giblin -gentner -gehlert -gehl -garten -garney -garlow -garett -galles -galeana -futral -fuhr -friedland -franson -fransen -foulds -follmer -foland -flax -flavin -firkins -fillion -figueredo -ferrill -fenster -fenley -fauver -farfan -factor -eustice -eppler -engelman -engelke -emmer -elzy -ellwood -ellerbee -elks -ehret -ebbert -durrah -dupras -dubuque -dragoo -donlon -dolloff -doi -dibella -derrico -demko -demar -darrington -czapla -crooker -creagh -cranor -craner -crafts -crabill -coyer -cowman -cowherd -cottone -costillo -coster -costas -cosenza -corker -collinson -coello -clingman -clingerman -claborn -citizen -chmura -chausse -chaudhry -chapell -chancy -cerrone -caves -caverly -caulkins -carn -campfield -campanelli -callaham -cadorette -butkovich -buske -burrier -burkley -bunyard -budge -buckelew -buchheit -broman -brescia -brasel -brain -boyster -booe -bonomo -bonnet -bondi -bohnsack -bobby -blomberg -blanford -bilderback -biggins -bently -behrends -beegle -bedoya -bechtol -beaubien -bayerl -baumgart -baumeister -barratt -barlowe -barkman -barbagallo -baldree -baine -bail -baggs -bacote -aylward -ashurst -arvidson -arthurs -arrieta -arrey -arreguin -arrant -arner -armor -arizmendi -anker -amis -amend -alphin -allbright -aikin -acres -zupan -zuchowski -zeolla -zanchez -zahradnik -zahler -younan -yeater -yearta -yarrington -yantis -woomer -wollard -wolfinger -woerner -witek -wishon -wisener -wingerter -willet -wilding -wiedemann -weisel -wedeking -weary -waybright -wardwell -walkins -waldorf -voth -voit -virden -viloria -villagran -vasta -vashon -vaquera -vantassell -vanderlinden -vandergrift -vancuren -valenta -underdahl -tyra -tygart -twining -twiford -turlington -tullius -tubman -trowell -trieu -transue -tousant -torgersen -tooker -tony -tome -toma -tocci -tippins -tinner -timlin -tillinghast -tidmore -teti -tedrick -tacey -swanberg -sunde -summitt -summerford -summa -sue -stratman -strandberg -storck -stober -steitz -stayer -stauber -staiger -sponaugle -spofford -sparano -spagnola -sokoloski -snay -slough -skowronski -sieck -shimkus -sheth -sherk -shankles -shakespeare -shahid -sevy -sergeant -senegal -seiden -seidell -searls -searight -schwalm -schug -schilke -schier -scheck -sawtelle -santore -santa -sanks -sandquist -sanden -saling -sabine -saathoff -ryberg -rustad -ruffing -rudnicki -ruane -rozzi -rowse -rosenau -rodes -risser -riggin -riess -riese -rhoten -reinecke -reigle -reichling -redner -rebelo -raynes -raimondi -rahe -rada -querry -quellette -pulsifer -prochnow -pretty -prato -poulton -poudrier -poll -policastro -polhemus -polasek -poissant -pohlmann -plotner -pitkin -pita -pio -pinkett -pilot -piekarski -pichon -philippe -pfau -petroff -petermann -peplinski -peller -pecinovsky -pearse -pattillo -patague -parlier -parenti -parchman -pane -paff -ota -ortner -oros -nolley -noakes -nigh -nicolosi -nicolay -newnam -netter -nass -napoles -nakata -nakamoto -muriel -muck -morlock -moraga -montilla -mongeau -molitor -mohney -mitchener -meyerhoff -medel -mcniff -mcmonagle -mcglown -mcglinchey -mcgarrity -mccright -mccorvey -mcconnel -mccargo -mazzei -matula -mastroianni -massingale -maring -maricle -marc -mans -mannon -mannix -manney -manger -manalo -malo -malan -mahony -madril -mackowiak -macko -macintosh -lurry -luczynski -lucke -lucarelli -luca -loud -lou -losee -lorence -loiacono -lohse -loder -lipari -linebarger -lindamood -limbaugh -letts -leleux -leep -leeder -leard -laxson -lawry -laverdiere -laughton -lastra -kurek -kriss -krishnan -kretschmer -krebsbach -kontos -knobel -knauf -klick -kleven -klawitter -kitchin -kirkendoll -kinkel -kingrey -kilbourn -kensinger -kennerly -kamin -justiniano -jurek -junkin -julia -judon -jordahl -jeanes -jarrells -jamal -iwamoto -isreal -ishida -ines -immel -iman -ihle -hyre -hurn -hunn -hultman -huffstetler -huffer -hubner -howey -horney -hooton -holts -holscher -holen -hoggatt -hilaire -herz -henne -helstrom -hellickson -heinlein -heckathorn -heckard -heather -heart -headlee -hauptman -haughey -hatt -harring -harford -hammill -hamed -halperin -haig -hagwood -hagstrom -gunnells -gundlach -guardiola -greeno -greenland -gonce -goldsby -gobel -gisi -gillins -gillie -germano -geibel -gauger -garriott -garbarino -gander -gajewski -funari -fullbright -fuell -fritzler -freshwater -freas -fortino -forbus -fonda -flohr -flemister -fisch -finks -fenstermaker -feldstein -faw -farhat -farah -fankhauser -fagg -fader -exline -emigh -eguia -edman -eckler -eastburn -dy -dunmore -dubuisson -dubinsky -drayer -doverspike -doubleday -doten -dorner -dolson -dohrmann -disla -direnzo -dipaola -dines -dickie -diblasi -dewolf -desanti -dennehy -demming -delker -decola -davilla -davids -daughtridge -darville -darland -danzy -dandy -dagenais -culotta -cruzado -crudup -croswell -coverdale -covelli -couts -corbell -coplan -coolbaugh -conyer -conlee -conigliaro -comiskey -coberly -clendening -clairmont -cienfuegos -chojnacki -chilcote -champney -cassara -casazza -casado -carew -carbin -carabajal -calcagni -cail -caddy -busbee -burts -burbridge -bunge -bundick -buhler -bucker -bucholtz -bruen -broce -brite -brignac -brierly -bridgman -braham -bradish -boyington -borjas -bonnie -bonn -bonhomme -bohlen -bogardus -bockelman -blick -blackerby -bizier -biro -binney -bertolini -bertin -berti -bert -bento -beno -belgarde -belding -beckel -becerril -bazaldua -bayes -bayard -barrus -barris -baros -bara -ballow -balboa -bakewell -baginski -badalamenti -backhaus -avilez -auvil -atteberry -ardon -anzaldua -anello -amsler -amo -ambrosio -althouse -alles -alix -alberti -alberson -aitchison -aguinaga -ziemann -zickefoose -zerr -zeh -zeck -zartman -zahm -zabriskie -yohn -yellowhair -yeaton -yarnall -yaple -wolski -wixon -winford -willner -willms -whitsitt -wheelwright -weyandt -wess -wengerd -weatherholtz -wattenbarger -walrath -walpole -waldrip -voges -violet -vinzant -viars -veres -veneziano -veillon -vawter -vaughns -vanwart -vanostrand -valiente -valderas -uhrig -tunison -tulloch -trostle -treaster -traywick -toye -tomson -tomasello -tomasek -tippit -tinajero -tift -tienda -thorington -thierry -thieme -thibeau -thakkar -tewell -test -telfer -sweetser -sum -stratford -stracener -stoke -stiverson -stelling -stefan -stavros -speaker -spatz -spagnoli -sorge -sober -slevin -slabaugh -simson -shupp -shoultz -shotts -shiroma -shetley -sherrow -sheffey -shawgo -shamburger -sester -segraves -seelig -seats -scioneaux -schwartzkopf -schwabe -scholes -schmuck -schluter -schlecht -schillaci -schildgen -schieber -schewe -schecter -scarpelli -scaglione -sautter -santelli -sandman -salmi -sabado -ryer -rydberg -ryba -rushford -running -runk -ruddick -rotondo -rote -rosenfield -roesner -rocchio -ritzer -rippel -rimes -riffel -richison -ribble -reynold -resh -rehn -ratti -rasor -rasnake -rappold -rando -radosevich -pulice -puff -prichett -pribble -poynor -plowden -pitzen -pittsley -pitter -pigeon -philyaw -philipps -petite -pestana -perro -perone -pera -peil -pedone -pawlowicz -pattee -parten -parlin -pariseau -paredez -pardon -panther -paek -pacifico -otts -ostrow -osornio -oslund -orso -ooten -onken -oniel -onan -ollison -ohlsen -ohlinger -odowd -niemiec -neubert -nembhard -neaves -neathery -nakasone -myerson -muto -muntz -munez -mumme -mumm -mujica -muise -muench -morriss -molock -mishoe -minier -metzgar -mero -meiser -meese -meals -mcsween -mcquire -mcquinn -mcpheeters -mckeller -mcilrath -mcgown -mcdavis -mccuen -mcclenton -maxham -matsui -marriner -marlette -mantle -mansur -mancino -maland -majka -maisch -maheux -madry -madriz -mackley -macke -lydick -lutterman -luppino -lundahl -lovingood -loudon -longmore -lippman -liefer -leveque -lescarbeau -lemmer -ledgerwood -lawver -lawrie -lattea -lasko -lahman -kulpa -kukowski -kukla -kubota -kubala -krizan -kriz -krikorian -kravetz -kramp -kowaleski -knobloch -klosterman -kloster -klepper -kirven -kinnaman -kinnaird -killam -kiesling -kesner -keebler -keagle -karls -kapinos -kantner -kaba -junious -jefferys -jacquet -izzi -ishii -irion -ifill -hyun -hotard -horman -hoppes -hopkin -hokanson -hoda -hocutt -hoaglin -hites -hirai -hindle -hinch -hilty -hild -hier -hickle -hibler -henrichs -hempstead -helmers -hellard -heims -heidler -hearst -hawbaker -hau -harkleroad -harari -hanney -hannaford -hamid -hamburger -haltom -hallford -guilliams -guerette -gryder -groseclose -groen -grimley -greenidge -greek -graffam -goucher -goodenough -goldsborough -goldie -gloster -glanton -gladson -gladding -ghee -gethers -gerstein -geesey -geddie -gayer -gaw -gaver -gauntt -gartland -garriga -garoutte -gao -gan -fronk -fritze -frenzel -forgione -fluitt -flinchbaugh -flach -fiorito -finan -finamore -fimbres -fillman -file -figeroa -ficklin -feher -feddersen -fambro -fairbairn -eves -esperanza -escalona -elsey -eisenstein -ehrenberg -eargle -dress -drane -dorothy -doria -dogan -dively -dewolfe -dettman -desiderio -desch -dennen -denk -demaris -delsignore -dejarnette -deere -dedman -daws -dawn -dauphinais -danz -dantin -dannenberg -dalby -currence -culwell -cuesta -croston -crossno -cromley -crisci -craw -coryell -cooter -condra -columbia -colpitts -colas -coach -clink -clevinger -clermont -cistrunk -cirilo -chirico -chiarello -cephus -cecena -cavaliere -caughey -casimir -carwell -carlon -carbonaro -caraveo -cantley -callejas -cagney -cadieux -cabaniss -bushard -burlew -buras -budzinski -bucklew -bruneau -brummer -brueggemann -brotzman -bross -broad -brittian -brimage -briles -brickman -breneman -breitenstein -brandel -brackins -boydstun -botta -bosket -boros -borgmann -bordeau -bonifacio -bolten -boehman -blundell -bloodsaw -bjerke -biffle -bickett -bickers -beville -bergren -bergey -benzing -belfiore -beirne -beckert -bebout -baumert -battey -bartman -barrs -barriere -barcelo -barbe -balliet -baham -babst -auton -asper -asbell -arzate -argento -arel -araki -arai -apo -antley -amodeo -ammann -allyn -allensworth -aldape -akey -abeita -zweifel -zeng -zeiler -zamor -zalenski -yzaguirre -yousef -yetman -yau -wyer -woolwine -wohlgemuth -wohlers -wittenberg -wingrove -wind -wimsatt -willimas -wilkenson -wildey -wilderman -wilczynski -wigton -whorley -wellons -welles -welle -weirich -weideman -weide -weekly -weast -wasmund -warshaw -walson -waldner -walch -walberg -wagener -wageman -vrieze -vossen -vorce -voorhis -vonderheide -viruet -vicari -verne -velasques -vautour -vartanian -varona -vankeuren -vandine -vandermeer -ursery -underdown -uhrich -uhlman -tworek -twine -twellman -tweedie -tutino -turmelle -tubb -troop -trivedi -triano -trevathan -treese -treanor -treacy -traina -topham -toenjes -tippetts -tieu -thomure -thatch -than -tetzlaff -tetterton -tena -tell -teamer -tappan -tank -talcott -tagg -szczepanski -syring -surace -sulzer -sugrue -sugarman -suess -styons -stwart -stupka -strey -straube -strate -stoddart -stockbridge -stjames -stinger -steimle -steenberg -start -stamand -staller -stahly -stager -spurgin -sprow -sponsler -speas -spainhour -sones -smits -smelcer -slovak -slaten -singleterry -simien -sidebottom -sibrian -shellhammer -shelburne -shambo -sepeda -seigel -scogin -scianna -schmoll -schmelzer -scheu -schachter -savant -sauseda -satcher -sandor -sampsell -rugh -rufener -rudolf -rotenberry -rossow -rossbach -roots -rollman -rodrique -rodreguez -rodkey -roda -rising -rini -riggan -rients -riedl -rhines -ress -reinbold -raschke -rardin -rain -racicot -quillin -pushard -primrose -pries -pressey -precourt -pratts -postel -poppell -plumer -pingree -pieroni -pflug -petre -petrarca -peterka -peru -perkin -pergande -peranio -penna -pekar -pea -paulhus -pasquariello -parras -parmentier -para -panzer -pamplin -oviatt -osterhoudt -ostendorf -osmun -ortman -orloff -orban -onofrio -olveda -oltman -okeeffe -ocana -nunemaker -novy -noffsinger -nish -niday -nethery -nestle -nemitz -neidert -nadal -nack -muszynski -munsterman -mulherin -mortimore -morter -montesino -montalvan -montalbano -momon -moman -mom -mogan -minns -millward -milling -michelsen -micheal -mewborn -metro -metayer -mensch -meloy -meggs -meaders -mcsorley -mcmenamin -mclead -mclauchlin -mcguffey -mcguckin -mcglaughlin -mcferron -mcentyre -mccrum -mccawley -mcbain -mayhue -mau -matzen -matton -marsee -marrin -marland -markum -mantilla -manfre -malta -makuch -madlock -maclaren -macauley -luzier -luthy -lufkin -lucena -loudin -lothrop -lorch -lona -loll -loadholt -lisa -lippold -likes -lichtman -liberto -liakos -lewicki -levett -level -lentine -leja -legree -lawhead -lauro -lauder -lard -lanman -lank -laning -lama -lalor -krob -kriger -kriegel -krejci -kreisel -kozel -kos -konkel -kolstad -koenen -kocsis -knoblock -knebel -klopfer -klee -kilday -kesten -kerbs -kempker -keathley -kazee -kawasaki -kaur -kamer -kamaka -kallenbach -kafka -jerrell -jehle -jaycox -jardin -jahns -ivester -hyppolite -hyche -husbands -hur -huppert -hulin -hubley -horsey -hornak -holzwarth -holmon -hollabaugh -holaway -hodes -hoak -hinesley -hillwig -hillebrand -highfield -heslop -herrada -hendryx -hellums -heit -heishman -heindel -hayslip -hayford -hastie -hartgrove -hanus -hakim -hains -hadnott -gundersen -gulino -guidroz -guebert -gressett -greenhouse -graydon -gramling -grahn -goupil -gory -gorelick -goodreau -goodnough -golay -going -goers -glatz -gillikin -gieseke -giammarino -getman -geronimo -gerardo -gensler -gazda -garibaldi -gahan -fury -funderburke -fukuda -fugitt -fuerst -fortman -forsgren -formica -fluke -flink -fitton -feltz -fekete -feit -fehrenbach -farone -farinas -faries -fagen -ewin -esquilin -esch -enderle -ellery -ellers -ekberg -egli -effinger -dymond -dulle -dula -duhe -dudney -duane -dowless -dower -dorminey -dopp -dooling -domer -disher -dillenbeck -difilippo -dibernardo -deyoe -devillier -denley -deland -defibaugh -deeb -debow -dauer -datta -darcangelo -daoust -damelio -dahm -dahlman -cypher -curling -curlin -cupit -culton -cuenca -cropp -croke -cremer -crace -cosio -corzine -coombe -coman -colone -coloma -collingwood -coletta -coderre -cocke -cobler -claybrook -circle -cincotta -cimmino -christoff -christina -chisum -chillemi -chevere -chae -chachere -cervone -cermak -cefalu -cauble -cather -caso -carns -carcamo -carbo -capoccia -capello -capell -canino -cambareri -calvi -cabiness -bushell -burtt -burstein -burkle -bunner -bundren -buechler -bryand -bruso -brownstein -brow -brouse -brodt -broaden -brisbin -brightman -bridgett -brenes -breitenbach -brazzell -brazee -bramwell -bramhall -bradstreet -boyton -bowland -boulter -bossert -bonura -bonebrake -bonacci -boeck -blystone -birchard -bilal -biddy -bibee -bevans -bethke -bertelsen -berney -bergfeld -benware -bellon -bellah -been -batterton -barberio -bamber -bagdon -badeaux -averitt -augsburger -ates -arvie -aronowitz -arens -arch -araya -angelos -andrada -amell -amante -alvin -almy -almquist -alls -aispuro -aguillon -agudelo -admire -acy -aceto -abbot -abalos -zdenek -zaremba -zaccaria -youssef -wrona -wrinkle -wrede -wotton -woolston -wolpert -wollman -wince -wimberley -willmore -willetts -wikoff -wieder -wickert -whitenack -wernick -welte -welden -weiskopf -weisenberger -weich -wallington -walder -vossler -vore -vigo -vierling -victorine -verdun -vencill -vena -vazguez -vassel -vanzile -vanvliet -vantrease -vannostrand -vanderveer -vanderveen -vancil -uyeda -umphrey -uhler -uber -tutson -turrentine -tullier -tugwell -trundy -tripodi -tomer -tomei -tomasi -tomaselli -tokarski -tisher -tibbets -thweatt -thistle -tharrington -tesar -telesco -teasdale -tatem -taniguchi -suriel -sudler -stutsman -sturman -strite -strelow -streight -strawder -stransky -strahl -stours -stong -stinebaugh -stilts -stillson -steyer -stelle -steffy -steffensmeier -statham -squillante -spiess -spargo -southward -soller -soden -snuggs -snellgrove -smyers -smiddy -slonaker -skyles -skowron -sivils -siqueiros -siers -siddall -shorty -shontz -shingler -shiley -shibley -sherard -shelnutt -shedrick -shasteen -sereno -selke -scovil -scola -schuett -schuessler -schreckengost -schranz -schoepp -schneiderman -schlanger -schiele -scheuermann -schertz -scheidler -scheff -schaner -schamber -scardina -savedra -saulnier -sater -sarro -sambrano -salomone -sabourin -ruud -rutten -ruffino -ruddock -rowser -roussell -rosengarten -rominger -rollinson -rohman -roeser -rodenberg -roberds -ridgell -rhodus -reynaga -rexrode -revelle -rempel -remigio -reising -reiling -reetz -rayos -ravenscroft -ravenell -raulerson -rasmusson -rask -rase -ragon -quesnel -quashie -puzo -puterbaugh -ptak -prost -prisbrey -principe -pricer -pratte -pouncey -portman -pontious -pomerantz -platter -planck -pilkenton -pilarski -piano -phegley -pertuit -perla -penta -pelc -peffer -pech -peagler -pavelka -pavao -patman -paskett -parrilla -pardini -papazian -panter -palin -paley -pai -pages -paetzold -packett -pacheo -ostrem -orsborn -olmedo -okamura -oiler -ohm -oglesbee -oatis -oakland -nuckles -notter -nordyke -nogueira -niswander -nibert -nesby -neloms -nading -naab -munns -mullarkey -moudy -moret -monnin -molder -modisette -moczygemba -moctezuma -mischke -miro -mings -milot -milledge -milhorn -milera -mieles -mickley -michelle -micek -metellus -mersch -merola -mercure -mencer -mellin -mell -meinke -mcquillan -mcmurtrie -mckillop -mckiernan -mckendrick -mckamie -mcilvaine -mcguffie -mcgonigle -mcgarrah -mcfetridge -mcenaney -mcdow -mccutchan -mccallie -mcadam -maycock -maybee -mattei -massi -masser -masiello -marth -marshell -marmo -marksberry -markell -marchal -manross -manganaro -mally -mallow -mailhot -magyar -madonna -madero -madding -maddalena -macfarland -lynes -lush -lugar -luckie -lucca -lovitt -loveridge -loux -loth -loso -lorenzana -lorance -lockley -lockamy -littler -litman -litke -liebel -lichtenberger -licea -leverich -letarte -lesesne -leno -legleiter -leffew -laurin -launius -laswell -lassen -lasala -laraway -laramore -landrith -lancon -lanahan -laiche -laford -lachermeier -kunst -kugel -kuck -kuchta -kube -korus -koppes -kolbe -koerber -kochan -knittel -kluck -kleve -kleine -kitch -kirton -kirker -kintz -kinghorn -kindell -kimrey -kilduff -kilcrease -kicklighter -kibble -kervin -keplinger -keogh -kellog -keeth -kealey -kazmierczak -karner -kamel -kalina -kaczynski -juel -joye -jerman -jeppson -jawad -jasik -jaqua -janusz -janco -island -inskeep -inks -ingold -ing -hyndman -hymer -hunte -hunkins -humber -huffstutler -huffines -hudon -hudec -hovland -houze -hout -hougland -hopf -hon -holsapple -holness -hollenbach -hoffmeister -hitchings -hirata -hieber -hickel -hewey -herriman -hermansen -herandez -henze -heffelfinger -hedgecock -hazlitt -hazelrigg -haycock -harren -harnage -harling -harcrow -hannold -hanline -hanel -hanberry -hammersley -hamernik -halliwell -hajduk -haithcock -haff -hadaway -haan -gullatt -guilbault -guidotti -gruner -grisson -grieves -granato -gracie -grabert -gover -gorka -glueck -girardin -giorgio -giesler -gersten -gering -geers -gaut -gaulin -gaskamp -garbett -gallivan -galland -gaeth -fullenkamp -fullam -friedrichs -freire -freeney -fredenburg -frappier -fowkes -foree -fleurant -fleig -fleagle -fitzsimons -fischetti -fiorenza -finneran -filippi -figueras -fesler -fertig -fennel -feltmann -felps -felmlee -faye -fannon -familia -fairall -fail -fadden -esslinger -enfinger -elsasser -elmendorf -ellisor -einhorn -ehrman -egner -edmisten -edlund -ebinger -dyment -dykeman -durling -dunstan -dunsmore -dugal -duer -drescher -doyel -down -dossey -donelan -dockstader -dobyns -divis -dilks -didier -desrosier -desanto -deppe -deng -delosh -delange -defrank -debo -dauber -dartez -daquila -dankert -dahn -cygan -cusic -curfman -croghan -croff -criger -creviston -crays -cravey -crandle -crail -crago -craghead -cousineau -couchman -cothron -corella -conine -coller -colberg -cogley -coatney -coale -clendenin -claywell -clagon -cifaldi -choiniere -chickering -chica -chennault -chavarin -chattin -chaloux -challis -cesario -certain -cazarez -caughman -catledge -casebolt -carrel -carra -carlow -capote -canez -camillo -caliendo -calbert -cairo -bylsma -bustle -buskey -buschman -burkhard -burghardt -burgard -buonocore -bunkley -bungard -bundrick -bumbrey -buice -buffkin -brundige -brockwell -brion -brin -briant -bredeson -bransford -brannock -brakefield -brackens -brabant -boxer -bowdoin -bouyer -bothe -boor -bonavita -bollig -blurton -blunk -blanke -blanck -birden -bierbaum -bevington -beutler -betters -bettcher -bera -benway -bengston -benesh -behar -bedsole -becenti -beachy -battersby -basta -bartmess -bartle -bartkowiak -barsky -barrio -barletta -barfoot -banegas -ballin -baldonado -bal -azcona -avants -austell -aungst -aune -aumann -audia -atterbury -asselin -asmussen -ashline -asbill -arvizo -arnot -ariola -ardrey -angstadt -anastasio -amsden -amor -amerman -alred -almeda -allington -alewine -alcina -alberico -alas -ahlgren -aguas -agrawal -agosta -adolphsen -addie -acre -acey -aburto -abler -zwiebel -zuk -zepp -zentz -ybarbo -yarberry -yamauchi -yamashiro -wurtz -wronski -worster -wootten -wool -wongus -woltz -wolanski -witzke -withey -wisecarver -wingham -wineinger -winegarden -windholz -wilgus -wiesen -wieck -widrick -wickliffe -whittenberg -westby -werley -wengert -wendorf -weimar -weick -weckerly -watrous -wasden -walford -wainright -wahlstrom -wadlow -vrba -voisin -vives -vivas -vitello -villescas -villavicencio -villanova -vialpando -vetrano -verona -vensel -vassell -varano -vanriper -vankleeck -vanduyne -vanderpol -vanantwerp -valenzula -udell -turnquist -tuff -trickett -tremble -tramble -tingey -ting -timbers -tietz -thon -thiem -then -tercero -tenner -tenaglia -teaster -tarlton -taitt -taggert -tabon -sward -swaby -suydam -surita -suman -sugar -suddeth -stumbo -studivant -strobl -stretch -streich -stow -stoodley -stoecker -stillwagon -stickle -stellmacher -stefanik -steedley -starbird -stake -stainback -stacker -speir -spath -sommerfeld -soltani -solie -sojka -sobota -sobieski -sobczak -smullen -sleeth -slaymaker -skolnick -skoglund -sires -singler -silliman -shrock -shott -shirah -shimek -shepperd -sheffler -sheeler -sharrock -sharman -shalash -seyfried -seybold -selander -seip -seifried -sedor -sedlock -sebesta -seago -scutt -scrivens -sciacca -schultze -schoemaker -schleifer -schlagel -schlachter -schempp -scheider -scarboro -santi -sang -sandhu -sally -salim -saia -rylander -ryburn -rutigliano -ruocco -ruland -rudloff -rott -rosenburg -rosenbeck -romberger -romanelli -rohloff -rohlfing -rodda -rodd -ritacco -rielly -rieck -rickles -rickenbacker -rhett -respass -reisner -reineck -reighard -rehbein -rega -redwood -reddix -razor -rawles -raver -rattler -ratledge -rathman -ramsburg -raisor -radovich -radigan -quail -puskar -purtee -priestly -prestidge -presti -pressly -pozo -pottinger -portier -porta -porcelli -poplawski -polin -points -poeppelman -pocock -plump -plantz -placek -piro -pinnell -pinkowski -pietz -picone -philbeck -pflum -peveto -perret -pentz -payer -paulette -patlan -paterno -papageorge -pae -overmyer -overland -osier -orwig -orum -orosz -oquin -opie -oda -ochsner -oathout -nygard -norville -northway -niver -nicolson -newhart -nery -neitzel -nath -nanez -mustard -murnane -mortellaro -morreale -morino -moriarity -morgado -moorehouse -mongiello -molton -mirza -minnix -millspaugh -milby -miland -miguez -mickles -michaux -mento -melugin -melrose -melito -meinecke -mehr -meares -mcneece -mckane -mcglasson -mcgirt -mcgilvery -mcculler -mccowen -mccook -mcclintic -mccallon -mazzotta -maza -mayse -mayeda -matousek -matley -martyn -maroon -marney -marnell -marling -marcelino -manuelito -maltos -malson -maire -mahi -maffucci -macken -maass -lyttle -lynd -lyden -lukasiewicz -luebbers -lovering -loveall -lords -longtin -lok -lobue -loberg -loan -lipka -lion -linen -lightbody -lichty -levert -lev -lettieri -letsinger -lepak -lemmond -lembke -leitz -lasso -lasiter -lango -landsman -lamirande -lamey -laber -kuta -kulesza -kua -krenz -kreiner -krein -kreiger -kraushaar -kottke -koser -kornreich -kopczynski -konecny -kok -koff -koehl -kocian -knaub -kmetz -kluender -klenke -kleeman -kitzmiller -kirsh -kilman -kildow -kielbasa -ketelsen -kesinger -kendra -kehr -keef -kauzlarich -karter -kahre -junk -jong -jobin -joaquin -jinkins -jines -jeffress -jaquith -jaillet -jablonowski -ishikawa -irey -ingerson -indelicato -in -huntzinger -huisman -huett -howson -houge -hosack -hora -hoobler -holtzen -holtsclaw -hollingworth -hollin -hoberg -hobaugh -hilker -hilgefort -higgenbotham -heyen -hetzler -hessel -hennessee -hendrie -hellmann -heft -heesch -haymond -haymon -haye -havlik -havis -haverland -haus -harstad -harriston -harm -harju -hardegree -hankey -hands -hampshire -hammell -hamaker -halbrook -halberg -guptill -guntrum -gunderman -gunder -gularte -guarnieri -gu -groll -grippo -greely -grave -gramlich -goh -goewey -goetzinger -goding -giraud -giefer -giberson -gennaro -gemmell -gearing -gayles -gaudin -gatz -gatts -gasca -garn -gandee -gammel -galindez -galati -gagliardo -fulop -fukushima -friedt -fretz -frenz -freeberg -frederic -fravel -fountaine -forry -forck -fonner -flippin -flewelling -flansburg -filippone -fettig -fenlon -felter -felkins -fein -faz -favor -favero -faulcon -farver -farless -fahnestock -facemire -faas -eyer -evett -every -esses -escareno -ensey -ennals -engelking -empey -emily -elvira -ellithorpe -effler -edling -edgley -durrell -dunkerson -draheim -domina -dombrosky -doescher -dobbin -divens -dinatale -dimitri -dieguez -diede -devivo -devilbiss -devaul -determan -desjardin -deshaies -demo -delpozo -delorey -delman -delapp -delamater -deibert -degroff -debelak -dapolito -dano -dacruz -dacanay -cushenberry -cruze -crosbie -cregan -cousino -corrie -corrao -corney -cookingham -conry -collingsworth -coldren -cobian -coate -clauss -chrysler -christine -christenberry -chmiel -chauez -charters -chait -cesare -cella -caya -castenada -cashen -captain -cantrelle -canova -candy -canary -campione -camel -calixte -caicedo -byerley -buttery -butter -burda -burchill -bun -bulmer -bulman -buesing -buczek -buckholz -buchner -buchler -buban -bryne -brutus -brunkhorst -brumsey -brumer -brownson -broker -brodnax -brezinski -brazile -braverman -brasil -branning -bradly -boye -boulden -bough -bossard -bosak -borth -borgmeyer -borge -blowers -blaschke -blann -blankenbaker -bisceglia -billingslea -bialek -beverlin -besecker -berquist -benigno -benavente -belizaire -beisner -behrman -beausoleil -bea -baylon -bayley -bassi -basnett -basilio -basden -basco -banerjee -balli -bake -bagnell -bady -averette -augusta -arzu -arn -archambeault -arboleda -arbaugh -arata -antrim -amrhein -amerine -alpers -alfrey -alcon -albus -albertini -aguiniga -aday -acquaviva -accardi -zygmont -zych -zollner -zobel -zinck -zertuche -zaragosa -zale -zaldivar -ying -yeadon -wykoff -woullard -wolfrum -wohlford -wison -wiseley -wisecup -winchenbach -wiltsie -whittlesey -whitelow -whiteford -wever -westrich -wertman -wensel -wenrich -weisbrod -weglarz -wedderburn -weatherhead -wease -warring -wand -wadleigh -voltz -vise -villano -vicario -vermeulen -vazques -vasko -varughese -vangieson -vanfossen -vanepps -vanderploeg -vancleve -valerius -uyehara -unsworth -twersky -turrell -tuner -tsui -trunzo -trousdale -trentham -traughber -torgrimson -toppin -tokar -tobia -tippens -tigue -thong -thiry -thackston -terhaar -tenny -tassin -tadeo -sweigart -sutherlin -sumrell -suen -stuhr -strzelecki -strosnider -streiff -stottlemyer -storment -storlie -stonesifer -stogsdill -stenzel -stemen -stellhorn -steidl -stecklein -statton -staple -stangle -spratling -spoor -spight -spelman -spece -spanos -spadoni -southers -sola -sobol -smyre -slaybaugh -sizelove -sirmons -simington -silversmith -siguenza -sieren -shelman -shawn -sharples -sharif -shack -seville -sessler -serrata -serino -serafini -semien -selvey -seedorf -seckman -seawood -screws -screen -scoby -scicchitano -schorn -schommer -schnitzer -schleusner -schlabach -schiel -schepers -schaber -scally -sautner -sartwell -santerre -sandage -salvia -salvetti -salsman -sallis -salais -saint -saeger -sable -sabat -saar -ruther -russom -ruoff -rumery -rubottom -rozelle -rowton -routon -rotolo -rostad -roseborough -rorick -ronco -rolls -roher -roberie -robare -ritts -rison -rippe -rinke -ringwood -righter -rieser -rideaux -rickerson -renfrew -releford -reinsch -reiman -reifsteck -reidhead -redfearn -reddout -reaux -rance -ram -rado -radebaugh -quinby -quigg -provo -provenza -provence -prophet -pridgeon -praylow -powel -poulter -portner -pontbriand -police -poirrier -poirer -platero -pixler -pintor -pigman -piersall -piel -pichette -phou -phillis -phillippe -pharis -phalen -petsche -perrier -penfield -pelosi -pebley -peat -pawloski -pawlik -pavlick -pavel -patz -patout -pascucci -pasch -parrinello -parekh -pantaleo -pannone -pankow -pangborn -pagani -pacelli -ort -orsi -oriley -orduno -oommen -olivero -okada -ocon -ocheltree -oberman -nyland -noss -norling -nolton -nobile -nitti -nishimoto -nghiem -neuner -neuberger -neifert -negus -naval -nagler -mullally -moulden -morra -morquecho -morocco -moots -monica -mizzell -mirsky -mirabito -minardi -milholland -mikus -mijangos -michener -michalek -methvin -merrit -menter -meneely -melody -meiers -mehring -mees -medal -mcwhirt -mcwain -mcphatter -mcnichol -mcnaught -mclarty -mcivor -mcginness -mcgaughy -mcferrin -mcfate -mcclenny -mcclard -mccaskey -mccallion -mcamis -mathisen -marton -marsico -mariner -marchi -mani -mangione -magda -macaraeg -lupi -lunday -lukowski -lucious -locicero -loach -littlewood -litt -litle -lipham -linley -lindon -lightford -lieser -leyendecker -lewey -lesane -lenzi -lenart -lena -leisinger -lehrman -lefebure -leandro -lazard -laycock -laver -launer -lastrapes -lastinger -lasker -larkey -larger -lanser -lanphere -landey -lan -lampton -lamark -lager -kumm -kullman -krzeminski -krasner -kram -koran -koning -kohls -kohen -kobel -kniffen -knick -kneip -knappenberger -knack -klumpp -klausner -kitamura -kisling -kirshner -kinloch -kingman -kin -kimery -kestler -kellen -keleher -keehn -kearley -kasprzak -kary -kampf -kamerer -kalis -kahan -kaestner -kadel -kabel -junge -juckett -joynt -jorstad -jetter -jelley -jefferis -jeff -jeansonne -janecek -jaffee -jacko -izzard -istre -isherwood -ipock -iannuzzi -hypolite -hussein -humfeld -huckleberry -hotz -hosein -honahni -holzworth -holdridge -holdaway -holaday -hodak -hitchman -hippler -hinchey -hillin -hiler -hibdon -hevey -heth -hepfer -henneman -hemsley -hemmings -hemminger -helbert -helberg -heinze -heeren -hee -heber -haver -hauff -haswell -harvison -hartson -harshberger -harryman -harries -hannibal -hane -hamsher -haggett -hagemeier -haecker -haddon -haberkorn -guttman -guttierrez -guthmiller -guillet -guilbert -gugino -grumbles -griffy -gregerson -greg -granada -grana -goya -goranson -gonsoulin -goettl -goertz -goe -godlewski -glandon -glad -gilsdorf -gillogly -gilkison -giard -giampaolo -gheen -gettings -gesell -gershon -gaumer -gartrell -garside -garrigan -garmany -garlitz -garlington -gamet -gail -fuss -furlough -funston -funaro -frix -frasca -francoeur -forshey -foose -flatley -flagler -fils -fillers -fickett -feth -fennelly -fencl -felch -fedrick -febres -fazekas -farnan -fairless -ewan -etsitty -enterline -elvin -elsworth -elliff -ell -eleby -eldreth -eidem -edgecomb -edds -ebarb -dworkin -dusenberry -durrance -duropan -durfey -dungy -dundon -dumbleton -duffel -dubon -dubberly -droz -drinkwater -dressel -doughtie -doshier -dorrell -dora -dople -doonan -donadio -dollison -doig -ditzler -dishner -discher -dimaio -digman -difalco -diem -devino -devens -derosia -deppen -depaola -deniz -denardo -demos -demay -delgiudice -davi -danielsen -dally -dais -dahmer -cutsforth -cusimano -curington -cumbee -cryan -crusoe -crowden -crete -cressman -crapo -cowens -coupe -councill -coty -cotnoir -correira -copen -consiglio -combes -coffer -cockrill -coad -clogston -clasen -chock -chesnutt -charrier -chain -chadburn -cerniglia -cebula -castruita -castilla -castaldi -casebeer -casagrande -carta -carrales -carnley -cardon -carasco -capshaw -capron -cappiello -capito -canney -candela -caminiti -califano -calico -calabria -caiazzo -cahall -buscemi -burtner -burgdorf -bureau -burdo -buffaloe -buchwald -brwon -brunke -brummond -brumm -broe -brocious -brocato -bro -britain -briski -brisker -brightwell -bresett -breiner -brazeau -braz -brayman -brandis -bramer -bradeen -boyko -bourbon -bossi -boshart -bortle -boniello -bomgardner -bolz -bolenbaugh -bohling -bohland -bochenek -blust -bloxham -blowe -blish -blackwater -bjelland -biros -birkhead -biederman -bickle -bialaszewski -bevil -beverley -beumer -bettinger -besse -bernett -bermejo -bement -belfield -beckler -beatrice -baxendale -batdorf -bastin -bashore -bascombe -bartlebaugh -barsh -ballantine -bahl -badon -bachelor -autin -audie -astin -askey -ascher -arrigo -arbeiter -antes -angers -amburn -amarante -alvidrez -althaus -allmond -alfieri -aldinger -akerley -akana -aikins -ader -acebedo -accardo -abila -aberle -abele -abboud -zollars -zimmerer -zieman -zerby -zelman -zellars -yule -yoshimura -yonts -yeats -yant -yamanaka -wyland -wuensche -worman -wordlaw -wohl -winslett -winberg -wilmeth -willcutt -wiers -wiemer -wickwire -wichman -whitting -whidbee -westergard -wemmer -wellner -weishaupt -weinert -weedon -waynick -wasielewski -waren -walworth -wallingford -walke -waechter -viviani -vitti -villagrana -vien -vicks -venema -varnes -varnadoe -varden -vanpatten -vanorden -vanderzee -vandenburg -vandehey -valls -vallarta -valderrama -valade -urman -ulery -tusa -tuft -tripoli -trimpe -trickey -tortora -torrens -torchia -toft -tjaden -tison -tindel -thurmon -thode -tardugno -tancredi -taketa -taillon -tagle -sytsma -symes -swindall -swicegood -swartout -sundstrom -sumners -sulton -studstill -student -stroop -stonerock -stmarie -stlawrence -stemm -steinhauser -steinert -steffensen -stefano -stefaniak -starck -stalzer -spidle -spake -sowinski -sosnowski -sorber -somma -soliday -soldner -soja -soderstrom -soder -sockwell -sobus -snowball -sloop -skeeter -sinner -sinkfield -simerly -silguero -sigg -siemers -siegmund -sidle -shum -sholtis -shkreli -sheikh -shattles -sharlow -shao -shambaugh -shaikh -serrao -serafino -selley -selle -seel -sedberry -secord -seat -schunk -schuch -schor -scholze -schnee -schmieder -schleich -schimpf -scherf -satterthwaite -sasson -sarkisian -sarinana -sanzone -salvas -salone -salido -saiki -sahr -rusher -rusek -ruse -ruppel -rubi -rubel -rough -rothfuss -rothenberger -rossell -rosenquist -rosebrook -romito -romines -rolando -rolan -roker -roehrig -rockhold -rocca -robuck -riss -rinaldo -right -riggenbach -rezentes -reuther -reuben -renolds -rench -remus -remsen -reller -relf -reitzel -reiher -rehder -redeker -ramero -rahaim -radice -quijas -qualey -purgason -prum -proudfoot -prock -probert -printup -primer -primavera -prenatt -pratico -polich -podkowka -podesta -plattner -plasse -plamondon -pittmon -pippenger -pineo -pierpont -petzold -petz -pettiway -petters -petroski -petrik -pesola -pershall -perlmutter -penepent -peevy -pechacek -pears -peaden -pazos -pavia -pascarelli -parm -parillo -parfait -paoletti -palomba -palencia -pagaduan -oxner -overfield -overcast -oullette -ouk -ostroff -osei -omarah -olenick -olah -odem -nygren -notaro -northcott -nodine -nilges -neyman -neve -neuendorf -neptune -neisler -neault -narciso -naff -muscarella -mun -most -morrisette -morphew -morein -mor -montville -montufar -montesinos -monterroso -mongold -mona -mojarro -moitoso -mode -mirarchi -mirando -minogue -milici -miga -midyett -michna -mey -meuser -messana -menzie -menz -mendicino -melone -mellish -meller -melle -meints -mechem -mealer -mcwilliam -mcwhite -mcquiggan -mcphillips -mcpartland -mcnellis -mcmackin -mclaughin -mckinny -mckeithan -mcguirk -mcgillivray -mcgarr -mcgahee -mcfaul -mcfadin -mceuen -mccullah -mcconico -mcclaren -mccaul -mccalley -mccalister -mazer -mayson -mayhan -maugeri -mauger -mattix -mattews -maslowski -masek -martir -marsch -marquess -maron -markwell -markow -marinaro -marietta -marcinek -manner -mannella -mango -mallen -majeed -mahnke -mahabir -magby -magallan -madere -machnik -lybrand -luque -lundholm -lueders -lucian -lubinski -lowy -loew -lippard -linson -lindblad -lightcap -levitsky -levens -leonardi -lenton -lengyel -leng -leitzel -leicht -leaver -laubscher -lashua -larusso -larrimore -lanterman -lanni -lanasa -lamoureaux -lambros -lamborn -lamberti -lall -lagos -lafuente -laferriere -laconte -kyger -kupiec -kunzman -kuehne -kuder -kubat -krogh -kreidler -krawiec -krauth -kratky -kottwitz -korb -kono -kolman -kolesar -koeppel -knapper -klingenberg -kjos -keppel -kennan -keltz -kealoha -kasel -karney -kanne -kamrowski -kagawa -joo -johnosn -joesph -jilek -jarvie -jarret -jansky -jacquemin -jacox -jacome -italiano -iriarte -ingwersen -imboden -iglesia -huyser -hurston -hursh -huntoon -hudman -hoying -horsman -horrigan -hornbaker -horiuchi -hopewell -hoop -hommel -homeyer -holzinger -holmer -hollow -hipsher -hinchman -hilts -higginbottom -hieb -heyne -hessling -hesler -hertlein -herford -heras -henricksen -hennemann -henery -hendershott -hemstreet -heiney -heckert -heatley -hazell -hazan -hayashida -hausler -hartsoe -harth -harriott -harriger -harpin -hardisty -hardge -hao -hannaman -hannahs -hamp -hammersmith -hamiton -halsell -halderman -hagge -habel -gusler -gushiken -gurr -gummer -gullick -grunden -grosch -greenburg -greb -greaver -gratz -grajales -gourlay -gotto -gorley -goodpasture -godard -glorioso -gloor -glascock -gizzi -giroir -gibeault -gauldin -gauer -gartin -garrels -gamber -gallogly -galley -gade -fusaro -fripp -freyer -freiberg -franzoni -fragale -foston -forti -forness -folts -followell -foard -flom -fling -flett -fleitas -flamm -fino -finnen -finchum -filippelli -fickel -feucht -feiler -feenstra -feagins -faver -faux -faulkenberry -farabaugh -fandel -fallen -faler -faivre -fairey -facey -exner -evensen -erion -erben -epting -epping -ephraim -engberg -elsen -ellingwood -ellen -eisenmann -eichman -ehle -edsall -eagles -durall -dupler -dunker -dumlao -duford -duffie -dudding -dries -doung -dorantes -donahoo -domenick -dollins -dobles -dipiazza -dino -dimeo -diehm -dicicco -devin -devenport -desormeaux -derrow -depaolo -denver -denise -demas -delpriore -delosantos -dela -degreenia -degenhardt -defrancesco -defenbaugh -deets -debonis -deary -dazey -dargie -dambrosia -dalal -dagen -cun -cuen -crupi -crossan -crichlow -creque -coutts -counce -coram -constante -connon -collelo -coit -cocklin -coblentz -cobey -coard -clutts -clingan -claw -clampitt -claeys -ciulla -cimini -ciampa -christon -choat -chiou -chenail -chavous -catto -catalfamo -casterline -cassinelli -caspers -carroway -carlen -carithers -cappel -calo -callow -calandra -cagley -cafferty -byun -byam -buttner -buth -burtenshaw -burget -burfield -buresh -bunt -bultman -bulow -buchta -buchmann -brunett -bruemmer -brueggeman -britto -briney -brimhall -bribiesca -bresler -brazan -brashier -brar -brandstetter -brandi -boze -boonstra -bluitt -blomgren -blattner -blasi -bladen -bitterman -bilby -bierce -biello -bettes -bertone -berrey -bernat -berberich -benshoof -bendickson -below -bellefeuille -bednarski -beddingfield -beckerman -beaston -bavaro -batalla -basye -baskins -bartolotta -bartkowski -barranco -barkett -band -banaszak -bame -bamberger -balsley -ballas -balicki -balding -bald -badura -aymond -aylor -aylesworth -axley -axelrod -aubert -armond -ariza -apicella -anstine -ankrom -angevine -anger -andreotti -andrea -alto -alspaugh -alpaugh -almada -allinder -alexandra -alequin -alan -aguillard -agron -agena -afanador -ackerley -abrev -abdalla -aaronson -zynda -zucco -zipp -zetina -zenz -zelinski -youngren -yochum -yearsley -yankey -woodfork -wohlwend -woelfel -wiste -wismer -winzer -winker -wilkison -wigger -wierenga -whipps -wheeling -westray -wesch -weld -weible -wedell -weddell -wawrzyniak -wasko -washinton -wantz -walts -wallander -wain -wahlen -wachowiak -voshell -viteri -vire -villafuerte -vieyra -viau -vescio -verrier -verhey -vause -vandermolen -vanderhorst -valois -valla -valcourt -vacek -uzzle -umland -um -ulman -ulland -turvey -tuley -trembath -trees -trabert -towsend -totman -toews -toby -tito -tisch -tisby -tipping -tierce -thivierge -tenenbaum -teagle -tacy -tabler -szewczyk -swearngin -suire -sturrock -stubbe -stronach -stoute -stoudemire -stoneberg -sterba -stejskal -steier -stehr -steckler -steckel -stearman -steakley -star -stanforth -stancill -stalls -srour -sprowl -spevak -sole -sokoloff -soderman -snover -sleeman -slaubaugh -sitzman -simpler -simmer -simes -siegal -sidoti -sidler -sider -sidener -siddiqi -shireman -shima -sheroan -shadduck -seyal -sentell -sennett -senko -seneca -sen -seligman -seipel -seekins -seabaugh -scouten -schweinsberg -schwartzberg -schurr -schult -schrick -schoening -schmitmeyer -schlicher -schlager -schack -schaar -scavuzzo -scarpa -sassano -santigo -sandavol -san -sampsel -samms -samet -salzano -salyards -salva -saidi -sabir -saam -saab -runions -rundquist -rousselle -round -rotunno -roses -rosch -romney -rohner -roff -rockhill -rockefeller -rocamora -rm -ringle -riggie -ricklefs -rexroat -reves -revel -reuss -reta -repka -rentfro -reineke -recore -recalde -rease -rawling -ravencraft -ravelo -rappa -randol -ramsier -ramerez -rahimi -rahim -radney -racey -raborn -rabalais -quebedeaux -pujol -puchalski -prothro -proffit -prigge -prideaux -prevo -portales -porco -popovic -popek -popejoy -pompei -plumber -plude -platner -plate -pizzuto -pizer -pistone -piller -pierri -piehl -pickert -piasecki -phong -philipp -peugh -pesqueira -perrett -perfetti -percell -penhollow -pelto -pellett -pavlak -paulo -paula -patricia -pastorius -parsell -parrales -pareja -parcell -pappan -pajak -owusu -ovitt -ory -orrick -oniell -olliff -olberding -oesterling -odwyer -ocegueda -obey -obermiller -nylander -nulph -nottage -northam -norgard -nodal -niel -nicols -newhard -nellum -neira -nazzaro -nassif -narducci -nalbandian -nails -musil -murga -muraoka -mumper -mulroy -mountjoy -mossey -moreton -morea -montoro -montesdeoca -montealegre -montanye -montandon -mok -moisan -mohl -modesto -modeste -mitra -mister -minson -minjarez -milbourne -michaelsen -metheney -mestre -mescher -mervis -mennenga -melgarejo -meisinger -meininger -mcwaters -mckern -mckendree -mchargue -mcglothlen -mcgibbon -mcgavock -mcduffee -mcclurkin -mccausland -mccardell -mccambridge -mazzoni -mayen -maxton -mawson -mauffray -mattinson -mattila -matsunaga -mater -mascia -marse -marotz -marois -markin -markee -marcinko -marcin -manville -mantyla -manser -manry -manderscheid -mallari -malia -malecha -malcomb -majerus -mailman -macinnis -mabey -lyford -luth -lupercio -luhman -luedke -lovick -lossing -loss -lorraine -lookabaugh -longway -lone -loisel -logiudice -loffredo -locust -lobe -lobaugh -lizaola -livers -littlepage -linnen -limmer -liebsch -liebman -leyden -levitan -levison -levier -leven -levalley -lettinga -lessley -lessig -lepine -leight -leick -leggio -leffingwell -leffert -lefevers -ledlow -leaton -leander -leaming -lazos -laviolette -lauffer -latz -lasorsa -lasch -larin -laporta -lanter -langstaff -landi -lamica -lambson -lambe -lamarca -laman -lamagna -lajeunesse -lafontant -lafler -labrum -laakso -kush -kuether -kuchar -kruk -kroner -kroh -kridler -kreuzer -kovats -koprowski -kohout -knicely -knell -klutts -kindrick -kiddy -khanna -ketcher -kerschner -kerfien -kensey -kenley -kenan -kemplin -kellerhouse -keesling -keep -keena -keas -kaplin -kanady -kampen -jutras -jungers -julio -jeschke -jen -janowski -janas -iskra -imperato -ikerd -igoe -hyneman -hynek -husain -hurrell -hultquist -hullett -hulen -huf -huberty -hoyte -hossain -hornstein -hori -hopton -holms -hollmann -holdman -holdeman -holben -hoffert -himel -hillsman -hillary -herdt -hellyer -hellen -heister -heimer -heidecker -hedgpeth -hedgepath -hebel -heatwole -hayer -hausner -haskew -haselden -hartranft -harsch -harres -harps -hardimon -halm -hallee -hallahan -hackley -hackenberg -hachey -haapala -guynes -gunnerson -gunby -gulotta -gudger -groman -grignon -griebel -gregori -greenan -grauer -gourd -gorin -gorgone -gooslin -goold -goltz -goldberger -gobble -glotfelty -glassford -glance -gladwin -giuffre -gilpatrick -germaine -gerdts -genna -geisel -gayler -gaunce -gaulding -gateley -gassman -gash -garson -garron -garand -gangestad -gallow -galbo -gabrielli -fullington -fucci -frum -frieden -friberg -frasco -francese -fowle -foucher -fothergill -foraker -fonder -foisy -fogal -flurry -flenniken -fitzhenry -fishbein -finton -filmore -filice -feola -felberbaum -fausnaught -fasciano -farrah -farquharson -faires -estridge -essman -enz -enriques -emmick -ekker -ekdahl -eisman -eggleton -eddinger -eakle -eagar -durio -dunwoody -duhaime -duenes -duden -dudas -dresher -dresel -doutt -donlan -donathan -domke -dobrowolski -dingee -dimmitt -dimery -dilullo -deveaux -devalle -desper -desnoyers -desautels -derouin -derbyshire -denmon -dena -demski -delucca -delpino -delmont -deller -dejulio -deibler -dehne -deharo -degner -defore -deerman -decuir -deckman -deasy -dease -deaner -dawdy -daughdrill -darrigo -darity -daniele -dalbey -dagenhart -daffron -curro -curnutte -curatolo -cruikshank -crosswell -croslin -croney -crofton -criado -crecelius -coscia -conniff -commodore -coltharp -colonna -collyer -collington -cobbley -coache -clonts -cloe -cliett -clemans -clara -cid -christo -chrisp -china -chiarini -chia -cheatam -cheadle -che -chauncey -chand -chadd -cervera -cerulli -cerezo -cedano -cayetano -cawthorne -cavalieri -cattaneo -caryl -cartlidge -carrithers -carreira -carranco -cargle -candanoza -camille -camburn -calender -calderin -calcagno -cahn -cadden -byham -buttry -burry -burruel -burkitt -burgio -burgener -buescher -buckalew -brymer -brumett -brugnoli -brugman -brosnahan -bronder -broeckel -broderson -brisbon -brinsfield -brinks -bresee -bregman -branner -brambila -brailsford -bouska -boster -borucki -bortner -boroughs -borgeson -bonier -bomba -bolender -boesch -boeke -bloyd -bley -binger -billing -bilbro -biery -bichrest -bezio -bevel -berrett -bermeo -bergdoll -bercier -benzel -bentler -bennetts -belnap -bellini -beitz -behrend -bednarczyk -bearse -batman -bartolini -bartol -barretta -barbero -barbaro -banvelos -bankes -ballengee -baldon -aye -ausmus -atilano -atienza -aschenbrenner -arora -armstong -aquilino -appleberry -applebee -apolinar -antos -angles -andrepont -ancona -amesquita -alvino -altschuler -allin -alire -ainslie -agular -aeschliman -accetta -abdulla -abbe -zwart -zufelt -zona -zirbel -zingaro -zilnicki -zenteno -zent -zemke -zayac -zarrella -yoshimoto -yearout -wrench -world -womer -woltman -wolin -wolery -woldt -witts -wittner -witherow -winward -winrow -wiemann -wichmann -whitwell -whitelaw -wheeless -whalley -wey -wessner -wenzl -wene -weatherbee -waye -wattles -wanke -walkes -waldeck -vonruden -voisine -vogus -vittetoe -villalva -villacis -victorian -verge -venturini -venturi -venson -vanloan -vanhooser -vanduzer -vandever -vanderwal -vanderheyden -vanbeek -vanbebber -vallance -vales -vahle -urbain -upshur -umfleet -twist -tsuji -trybus -triolo -trimarchi -trezza -trenholm -tovey -tourigny -torry -torrain -torgeson -tongue -tomey -tischler -tinkler -tinder -ticknor -tibbles -tibbals -throneberry -thormahlen -thibert -thibeaux -theurer -templet -tegeler -tavernier -taubman -tamashiro -tallon -tallarico -taboada -sypher -sybert -swyers -switalski -swinger -swedberg -suther -surprenant -sullen -sulik -sugden -suder -suchan -such -strube -stroope -strittmatter -streett -straughn -strasburg -stjacques -stimage -stimac -stifter -stgelais -steinhart -stehlik -steffenson -steenbergen -stanbery -stallone -sprung -spraggs -spoto -spilman -speno -spanbauer -spalla -spagnolo -soliman -solan -sobolik -snelgrove -snedden -smale -sliter -slankard -sircy -signor -shutter -shurtliff -shur -show -shirkey -shi -shewmake -shams -shadley -shaddox -sgro -serfass -seppala -segawa -segalla -seaberry -scruton -scism -schwein -schwartzman -schwantes -schomer -schoenborn -schlottmann -schissler -scheurer -schepis -scheidegger -saunier -sauders -sassman -sannicolas -sanderfur -salser -sagar -saffer -saeed -sadberry -saban -ryce -rybak -rux -rumore -rummell -rummage -rudasill -rozman -rota -rossin -rosell -rosel -romberg -rojero -rochin -rochell -robideau -robarge -roath -risko -ringel -ringdahl -riera -riemann -ribas -revard -renna -renegar -reinwald -rehman -regal -reels -ree -redel -reasons -raysor -rathke -rapozo -rampton -ramaker -rakow -raia -radin -raco -rackham -racca -racanelli -rabun -quaranta -purves -pundt -protsman -prosper -prezioso -presutti -president -presgraves -poydras -portnoy -portalatin -pop -pontes -poehler -poblete -poat -plumadore -pleiman -pizana -piscopo -piraino -pinelli -pillai -picken -picha -piccoli -philen -petteway -petros -peskin -perugini -perrella -pernice -peper -pensinger -pembleton -patron -passman -parrent -panetta -pancake -pallas -palka -pais -paglia -padmore -oum -ottesen -ost -oser -ortmann -ormand -oriol -orick -oler -okafor -ohair -obert -oberholtzer -number -nowland -nosek -nordeen -nolf -nogle -nobriga -nicley -niccum -newingham -neumeister -neugebauer -netherland -nerney -neiss -neis -neider -neeld -nailor -mustain -mussman -musante -murton -murden -munyon -muldrew -motton -moscoso -moschella -moroz -mormon -morelos -morace -moone -montesano -montemurro -montas -montalbo -molander -mleczko -miyake -mitschke -minger -minelli -minear -millener -mihelich -miedema -miah -metzer -mery -merrigan -merck -mennella -membreno -melecio -melder -mehling -mehler -medcalf -meche -mealing -mcqueeney -mcphaul -mcmickle -mcmeen -mcmains -mclees -mcgowin -mcfarlain -mcdivitt -mccotter -mcconn -mcclane -mccaster -mcbay -mcbath -mayoral -mayeux -matsuo -masur -massman -marzette -martensen -marlett -markie -markgraf -marcinkowski -marchbanks -marcella -mansir -mandez -mancil -malagon -magnani -madonia -madill -madia -mackiewicz -macgillivray -macdowell -macbeth -mabee -lundblad -lovvorn -lovings -loreto -linz -linwood -linnell -linebaugh -lindstedt -lindbloom -linda -limberg -liebig -lickteig -lichtenberg -licari -lex -lewison -levario -levar -lepper -lenzen -lenderman -lemarr -leinen -leider -legrande -lefort -lebleu -leask -learn -leacock -lazano -lawalin -laven -laplaca -lant -langsam -langone -landress -landen -lande -lamorte -lairsey -laidlaw -laffin -lackner -lacaze -labuda -labree -labella -labar -kyer -kuyper -kulinski -kulig -kuhnert -kuchera -kubicek -kruckeberg -kruchten -krider -kotch -kornfeld -koren -koogler -koll -kole -kohnke -kohli -kofoed -koelling -kluth -klump -klopfenstein -klippel -klinge -klett -klemp -kleis -klann -kitzman -kinnan -kingsberry -kind -kina -kilmon -killpack -kilbane -kijowski -kies -kierstead -kettering -kesselman -kenton -kennington -keniston -kehrer -kearl -keala -kassa -kasahara -kantz -kalin -kaina -jupin -juntunen -juares -joynes -jovel -joos -jn -jiggetts -jervis -jerabek -jennison -jaso -janz -izatt -ishibashi -iannotti -hymas -huneke -hulet -hougen -horvat -horstmann -hopple -holtkamp -holsten -hohenstein -hoefle -hoback -hiney -hiemstra -herwig -herter -herriott -hermsen -herdman -herder -herbig -hem -helper -helling -helbig -heitkamp -heinrichs -heinecke -heileman -heffley -heavrin -heaston -haymaker -hauenstein -hartlage -harlin -harig -hardenbrook -hankin -hamiter -hagens -hagel -grizzell -griest -griese -grief -grennan -graden -gosse -gorder -goldin -goatley -gillespi -gilbride -giel -gianni -ghoston -getter -gershman -geisinger -gehringer -gedeon -gebert -gaxiola -gawronski -gau -gathright -gatchell -gargiulo -garg -galang -gadison -fyock -furniss -furby -funnell -frizell -frenkel -freeburg -frankhouser -franchi -foulger -formby -forkey -fonte -folson -follette -flicker -flavors -flavell -finegan -fill -filippini -ferencz -ference -fennessey -feggins -feehan -fazzino -fazenbaker -fausto -faunce -farraj -farnell -farler -farabee -falkowski -facio -etzler -ethington -esterline -esper -esker -erxleben -ericsson -erick -engh -emling -elridge -ellenwood -elfrink -ekhoff -eisert -eis -eifert -eichenlaub -egnor -eggebrecht -edlin -edberg -eble -eber -easler -duwe -dutta -dutremble -dusseault -durney -dunworth -dumire -dukeman -dufner -duey -duble -dreese -dozal -douville -dougal -doom -done -diver -ditmore -distin -dimuzio -dildine -dignan -dieterich -dieckman -didonna -dhillon -dezern -devereux -devall -detty -detamore -derksen -deremer -deras -denslow -deno -denicola -denbow -demma -demille -delisa -delira -delawder -delara -delahanty -dejonge -deininger -dedios -dederick -decelles -debus -debruyn -deborde -deak -dauenhauer -darsey -daring -dansie -dalman -dakin -dagley -czaja -cybart -cutchin -currington -curbelo -croucher -crinklaw -cremin -cratty -cranfield -crafford -cowher -cowboy -couvillion -couturier -counter -corter -coombes -contos -consolini -connaughton -conely -coltrane -collom -cockett -clepper -cleavenger -claro -clarkin -ciriaco -ciesla -cichon -ciancio -cianci -chynoweth -chuang -chrzanowski -christion -cholewa -chipley -chilcott -cheyne -cheslock -chenevert -cheers -charlot -chagolla -chabolla -cesena -cerutti -cava -caul -cassone -cassin -cassese -casaus -casali -cartledge -carsten -cardamone -carcia -carbonneau -carboni -carabello -capozzoli -capella -cap -cannata -campoverde -campeau -cambre -camberos -calvery -calnan -calmes -calley -callery -calise -cacciotti -cacciatore -butterbaugh -burgo -burgamy -burell -bunde -bumbalough -buel -buechner -buchannon -bryon -brunn -brost -broadfoot -brittan -brevard -breda -brazel -brayboy -brasier -boyea -boxx -both -boso -bosio -boruff -borda -bongiovanni -bolerjack -boedeker -blye -blumstein -blumenfeld -blinn -bleakley -blatter -blan -bjornson -bisignano -billick -bieniek -bhatti -bevacqua -betterton -berra -berenbaum -bensinger -bennefield -belvins -belson -bellin -beighley -beecroft -beaudreau -baynard -bautch -bausch -basch -bartleson -barthelemy -barak -balzano -balistreri -bailer -bagnall -bagg -bae -auston -augustyn -aslinger -ashalintubbi -artist -arjona -arebalo -arab -appelbaum -anna -angst -angert -angelucci -andry -andersson -amorim -amavisca -alward -alvelo -alvear -alumbaugh -alsobrook -alli -allgeier -allende -aldrete -akiyama -ahlquist -adolphson -addario -acoff -abelson -abasta -zulauf -zirkind -zeoli -zemlicka -zawislak -zappia -zanella -yelvington -yeatman -yanni -wragg -wissing -wischmeier -wirta -wiren -wilmouth -williard -willert -willaert -wildt -whelpley -westwood -weingart -weidenbach -weidemann -weatherman -weakland -watwood -wattley -waterson -wambach -walzer -waldow -waag -vorpahl -volkmann -vitolo -visitacion -vincelette -vina -viggiano -vieth -vidana -vert -verna -verges -verdejo -venzon -velardi -varian -vargus -vandermeulen -vandam -vanasse -vanaman -utzinger -uriostegui -uplinger -twiss -tumlinson -tschanz -trunnell -troung -troublefield -trojacek -trial -treloar -tranmer -touchton -torsiello -torina -tootle -toki -toepfer -tippin -tippie -thronson -thomes -tezeno -texada -testani -tessmer -terrel -terra -terlizzi -tempel -temblador -tayler -tawil -tasch -tames -talor -talerico -swinderman -sweetland -swager -sulser -sullens -subia -sturgell -stumpff -stufflebeam -stucki -strohmeyer -strebel -straughan -strackbein -stobaugh -stetz -stelter -steinmann -steinfeld -stefani -stecher -stanwood -stanislawski -stander -speziale -soppe -soni -sol -sobotka -snipe -smuin -slider -slee -skerrett -sjoberg -sittig -simonelli -simo -sima -silvio -silverio -silveria -silsby -sillman -sienkiewicz -sick -sia -shomo -shoff -shoener -shiba -sherfey -shehane -shawl -sexson -setton -sergi -selvy -seiders -seegmiller -sebree -seabury -scroggin -sconyers -schwalb -schurg -schulenberg -schuld -schrage -schow -schon -schnur -schneller -schmidtke -schlatter -schieffer -schenkel -scheeler -schauwecker -schartz -schacherer -scafe -sayegh -savidge -saur -sarles -sarkissian -sarkis -sarcone -sagucio -saffell -saenger -sacher -rylee -ruvolo -ruston -ruple -rulison -ruge -ruffo -ruehl -rueckert -rudman -rudie -rubert -rozeboom -roysden -roylance -rothchild -rosse -rosecrans -rodrick -rodi -rockmore -robnett -roberti -rivett -riva -ritzel -rierson -ricotta -ricken -rezac -rendell -remo -reitman -reindl -reeb -reddic -reddell -rebuck -reali -raye -raso -ramthun -ramsden -rameau -ralphs -rak -rago -racz -quinteros -quinter -quinley -quiggle -quaid -purvines -purinton -purdum -pummill -puglia -puett -ptacek -przybyla -prowse -providence -prestwich -pracht -poutre -poucher -portera -polinsky -poage -platts -pineau -pinckard -pilson -pilling -pilkins -pili -pikes -pigram -pietila -pickron -pia -philippi -philhower -pflueger -pfalzgraf -pettibone -pett -petrosino -persing -perrino -perotti -periera -peri -peredo -peralto -pennywell -pennel -pen -pellegren -pella -pedroso -paulos -paulding -pates -pasek -paramo -paolino -panganiban -paneto -paluch -ozaki -ownbey -overfelt -outman -opper -onstad -oland -okuda -oertel -oelke -normandeau -nordby -nordahl -noecker -noblin -no -niswonger -nishioka -nett -nephew -negley -needles -nedeau -natera -nachman -naas -musich -mungin -mourer -mounsey -mottola -mothershed -moskal -mosbey -morini -moreles -mood -montaluo -moneypenny -monda -moench -moates -moad -mixer -missildine -misiewicz -mirabella -minott -minnifield -mincks -milum -milani -mikelson -mestayer -mess -mertes -merrihew -merlos -meritt -melnyk -medlen -meder -mean -mcvea -mcquarrie -mcquain -mclucas -mclester -mckitrick -mckennon -mcinnes -mcgrory -mcgranahan -mcglamery -mcgivney -mcgilvray -mccuiston -mccuin -mccrystal -mccolley -mcclerkin -mcclenon -mccamey -mcaninch -mazariegos -maynez -mattioli -mastronardi -masone -marzett -marsland -mari -margulies -margolin -malatesta -malachi -mainer -maietta -magrath -maese -madkins -madeiros -madamba -mackson -mac -maben -lytch -lundgreen -lumb -lukach -luick -luetkemeyer -luechtefeld -ludy -ludden -luckow -lubinsky -lowes -lout -lorenson -loran -lopinto -looby -lones -livsey -liskey -lisby -lintner -lindow -lindblom -liming -liechty -leth -lesniewski -lenig -lemonds -leisy -lehrer -lehnen -lehmkuhl -leeth -leer -leeks -lechler -lebsock -lavere -lautenschlage -laughridge -lauderback -laudenslager -lassonde -laroque -laramee -laracuente -lapeyrouse -lampron -lamers -lamer -laino -lague -laguardia -lafromboise -lafata -lacount -lachowicz -kysar -kwiecien -kuffel -kueter -kronenberg -kristensen -kristek -krings -kriesel -krey -krebbs -kreamer -krabbe -kossman -kosakowski -kosak -kopacz -konkol -koepsell -koening -koen -knerr -knapik -kluttz -klocke -klenk -klemme -klapp -kitchell -kita -kissane -kirkbride -kirchhoff -kinter -kinsel -kingsland -kimmer -kimler -killoran -kieser -khalsa -khalaf -kettel -kerekes -keplin -kentner -kennebrew -kenison -kellough -kellman -keatts -keasey -kauppi -katon -kari -kanner -kampa -kall -kai -kaczorowski -kaczmarski -juarbe -jordison -jonathan -jobst -jezierski -jeanbart -jarquin -janey -jagodzinski -ishak -isett -isa -infantino -imburgia -illingworth -hysmith -hynson -hydrick -hurla -hunton -hunnell -humbertson -housand -hottle -hosch -hoos -honn -hohlt -hodel -hochmuth -hixenbaugh -hislop -hisaw -hintzen -hilgendorf -hilchey -higgens -hersman -herrara -hendrixson -hendriks -hemond -hemmingway -heminger -helgren -heisey -heilmann -hehn -hegna -heffern -hawrylak -haverty -hauger -haslem -harnett -harb -happ -hanzlik -hanway -hanby -hanan -hamric -hammaker -halas -hagenbuch -hacking -habeck -gwozdz -gutter -gunia -guise -guadarrama -grubaugh -grivas -griffieth -grieb -grewell -gregorich -grazier -graeber -graciano -gowens -goodpaster -gondek -gohr -goffney -godbee -gitlin -gisler -gin -gillyard -gillooly -gilchrest -gilbo -gierlach -giebler -giang -geske -gervasio -gertner -gehling -geeter -gaus -gattison -gatica -gathings -gath -gassner -gassert -garabedian -gamon -gameros -galban -gabourel -gaal -fuoco -fullenwider -fudala -friscia -franceschini -foronda -fontanilla -florey -florentino -flore -flegle -flecha -fisler -fischbach -fiorita -fines -figura -figgins -fichera -fester -ferra -fear -fawley -fawbush -fausett -farnes -farago -fairclough -fahie -fabiani -everest -evanson -eutsey -eshbaugh -esh -ertle -eppley -englehardt -engelhard -emswiler -elza -elling -elderkin -eland -efaw -edstrom -edmund -edgemon -ecton -echeverri -ebright -earheart -dynes -dygert -dyches -dulmage -duhn -duhamel -dues -dubrey -dubray -dubbs -drone -drey -drewery -dreier -dorval -dorough -dorais -donlin -donatelli -doke -dohm -doetsch -dobek -ditty -disbrow -ding -dinardi -dillahunty -dillahunt -diers -dier -diekmann -diangelo -deskin -deschaine -depaoli -denner -demyan -demont -demaray -delillo -deleeuw -deibel -decato -deblasio -debartolo -daubenspeck -darner -dardon -danziger -danials -damewood -dalpiaz -dallman -dallaire -cunniffe -cumpston -cumbo -cubero -cruzan -cronkhite -critelli -crimi -creegan -crean -craycraft -crater -cranfill -coyt -courchesne -coufal -corradino -corprew -colville -cocco -coby -clinch -clickner -clavette -claggett -cirigliano -ciesielski -christain -chesbro -chavera -chard -casteneda -castanedo -cast -casseus -casa -caruana -carnero -cappelli -capellan -canedy -cancro -camilleri -calero -cada -burghart -burbidge -bulfer -buis -budniewski -bucko -bruney -brugh -brossard -brodmerkel -brockmann -bring -brigmond -briere -bremmer -breck -breau -brautigam -brasch -brandenberger -bran -bragan -bozell -bowsher -bosh -borgia -borey -boomhower -bonneville -bonam -bolland -boise -boeve -boettger -boersma -boateng -bliven -blazier -blanca -blahnik -bjornstad -bitton -biss -birkett -billingsly -biagioni -bettle -bertucci -bertolino -bermea -bergner -berber -bensley -bendixen -beltrami -bellone -belland -bein -behringer -begum -beans -bayona -batiz -bassin -baskette -bartolomeo -bartolo -bartholow -barkan -barish -barett -bardo -bamburg -ballerini -balla -balis -bakley -bailon -bachicha -babiarz -ayars -axton -axel -awong -awe -awalt -auslander -ausherman -aumick -athens -atha -atchinson -aslett -askren -arrowsmith -arras -arnhold -armagost -arey -arcos -archibeque -antunes -antilla -ann -andras -amyx -amison -amero -alzate -alphonse -alper -aller -alioto -alexandria -aigner -agtarap -agbayani -adami -achorn -aceuedo -acedo -abundis -aber -abee -zuccaro -ziglar -zier -ziebell -zieba -zamzow -zahl -yurko -yurick -yonkers -yerian -yeaman -yarman -yann -yahn -yadon -yadao -woodbridge -wolske -wollenberg -wojtczak -wnuk -witherite -winther -winick -widell -wickens -whichard -wheelis -wesely -wentzell -wenthold -wemple -weisenburger -wehling -weger -weaks -water -wassink -warn -walquist -wadman -wacaster -waage -voliva -vlcek -villafana -vigliotti -viger -viernes -viands -vey -veselka -versteeg -vero -verhoeven -vendetti -velardo -vatter -vasconcellos -varn -vanwagner -vanvoorhis -vanhecke -vanduyn -vandervoort -vanderslice -valone -vallier -vails -uvalle -ursua -urenda -upright -uphoff -tustin -turton -turnbough -turck -tullio -tuch -truehart -tropea -troester -trippe -tricarico -trevarthen -trembly -trace -trabue -traber -toto -tosi -toal -tinley -tingler -timoteo -tiffin -tien -ticer -thurgood -thorman -therriault -theel -tessman -tekulve -tejera -tebbs -tavernia -tarpey -tallmadge -takemoto -szot -sylvest -swindoll -swearinger -swantek -swaner -swainston -susi -surrette -sur -supple -sullenger -sudderth -suddarth -suckow -strider -strege -stream -strassburg -stoval -stotz -stoneham -stilley -stille -stierwalt -stfleur -steuck -stermer -stclaire -stano -staker -stahler -stablein -srinivasan -squillace -sprvill -sproull -sprau -sporer -spore -spittler -speelman -sparr -sparkes -spang -spagnuolo -sosinski -sorto -sorkin -sondag -sollers -socia -snarr -smrekar -smolka -slyter -slovinsky -sliwa -slavik -slatter -skiver -skeem -skala -sitzes -sitsler -sitler -sinko -simser -siegler -sideris -shrewsberry -shoopman -shoaff -shira -shindler -shimmin -shill -shenkel -shemwell -shehorn -severa -sergio -semones -selsor -seller -sekulski -segui -sechrest -scot -schwer -schwebach -schur -schmiesing -schlick -schlender -schebler -schear -schapiro -sauro -saunder -sauage -satterly -saraiva -saracino -saperstein -sanmartin -sanluis -sandt -sandrock -sammet -sama -salk -sakata -saini -sackrider -rys -russum -russi -russaw -rozzell -roza -rowlette -rothberg -rossano -rosebrock -romanski -romanik -romani -roma -roiger -roig -roehr -rodenberger -rodela -rod -rochford -ristow -rispoli -ripper -rigo -riesgo -riebel -ribera -ribaudo -rhoda -reys -resendes -repine -reisdorf -reisch -rebman -rasmus -raske -ranum -rames -rambin -raman -rajewski -raffield -rady -radich -raatz -quinnie -pyper -puthoff -prow -proehl -pribyl -pretti -prete -presby -poyer -powelson -porteous -poquette -pooser -pollan -ploss -plewa -plants -placide -pion -pinnick -pinales -pin -pillot -pille -pilato -piggee -pietrowski -piermarini -pickford -piccard -phenix -pevey -petrowski -petrillose -pesek -perrotti -perfecto -peppler -peppard -penfold -pellitier -pelland -pehowic -pedretti -paules -passero -pasha -panza -pallante -palau -pakele -pacetti -paavola -overy -overson -outler -osegueda -ord -oplinger -oldenkamp -ok -ohern -oetting -odums -oba -nowlen -nowack -nordlund -noblett -nobbe -nierman -nichelson -niblock -newbrough -nest -nemetz -neeson -needleman -necessary -navin -nastasi -naslund -naramore -nakken -nakanishi -najarro -mushrush -muma -mulero -morganfield -moreman -morain -moquin -montrose -monterrosa -monsivais -monroig -monje -monfort -moises -moffa -moeckel -mobbs -mitch -misiak -mires -mirelez -mineo -mineau -milnes -mikeska -michelin -michalowski -meszaros -messineo -meshell -merten -meola -menton -mends -mende -memmott -melius -mehan -mcnickle -mcmorran -mclennon -mcleish -mclaine -mckendry -mckell -mckeighan -mcisaac -mcie -mcguinn -mcgillis -mcfatridge -mcfarling -mcelravy -mcdonalds -mcculla -mcconnaughy -mcconnaughey -mcchriston -mcbeath -mayr -matyas -matthiesen -matsuura -matinez -mathys -matarazzo -masker -masden -mascio -martis -marrinan -marinucci -margerum -marengo -manthe -mansker -manoogian -mankey -manigo -manier -mangini -mandelbaum -maltese -malsam -mallo -maliszewski -mainolfi -maharaj -maggart -magar -maffett -macmaster -macky -macdonnell -mable -lyvers -lyn -luzzi -lutman -luk -lover -lovan -lonzo -longest -longerbeam -lofthouse -loethen -lodi -llorens -lizardo -lizama -liz -litscher -lisowski -lipski -lipsett -lipkin -linzey -lineman -limerick -limb -limas -lige -lierman -liebold -liberti -leverton -levene -lesueur -lenser -lenker -lemme -legnon -lefrancois -ledwell -lavecchia -laurich -lauricella -latino -lannigan -landor -lamprecht -lamountain -lamore -lamonica -lammert -lamboy -lamarque -lamacchia -lalley -lagace -lacorte -lacomb -kyllonen -kyker -kye -kuschel -kupfer -kunde -kucinski -kubacki -kuan -kroenke -krech -koziel -kovacich -kothari -koth -kotek -kostelnik -kosloski -knoles -knabe -kmiecik -klingman -kliethermes -kleffman -klees -klaiber -kittell -kissling -kisinger -kintner -kinoshita -kiener -khouri -kerman -kelii -keirn -keezer -kaup -kathan -kaser -karlsen -kapur -kandoll -kammel -kahele -justesen -jue -jonason -johnsrud -joerling -jochim -jespersen -jeong -jenness -jedlicka -jakob -isaman -inghram -ingenito -imperial -iadarola -hynd -huxtable -huwe -huron -hurless -humpal -hughston -hughart -huggett -hugar -huether -howdyshell -houtchens -houseworth -hoskie -holshouser -holmen -holloran -hohler -hoefler -hodsdon -hochman -hjort -hippert -hippe -hinzman -hillock -hilden -hilde -heyn -heyden -heyd -hergert -henrikson -henningsen -hendel -helget -helf -helbing -heintzman -heggie -hege -hecox -heatherington -heare -haxton -haverstock -haverly -hatler -haselton -hase -hartzfeld -harten -harken -hargrow -haran -hanton -hammar -hamamoto -halper -halko -hackathorn -haberle -haake -gunnoe -gunkel -gulyas -guiney -guilbeau -guider -guerrant -gudgel -guarisco -grossen -grossberg -gropp -groome -grobe -gremminger -greenley -grauberger -grabenstein -gowers -gostomski -gosier -goodenow -gonzoles -goliday -goettle -goens -goates -glymph -glavin -glassco -gladys -gladfelter -glackin -githens -girgis -gimpel -gilbreth -gilbeau -giffen -giannotti -gholar -gervasi -gertsch -gernatt -gephardt -genco -gehr -geddis -gear -gase -garrott -garrette -gapinski -ganter -ganser -gangi -gangemi -gang -gallina -galdi -gailes -gaetano -gadomski -gaccione -fuschetto -furtick -furfaro -fullman -frutos -fruchter -frogge -freytag -freudenthal -fregoe -franzone -frankum -francia -franceschi -fraction -forys -forero -folkers -foil -flug -flitter -flemons -fitzer -firpo -finizio -filiault -figg -fiddler -fichtner -fetterolf -ferringer -feil -fayne -farro -faddis -ezzo -ezelle -eynon -evitt -eutsler -euell -escovedo -erne -eriksson -enriguez -empson -elkington -elk -eisenmenger -eidt -eichenberger -ehrmann -ediger -earlywine -eacret -duzan -dunnington -duffer -ducasse -dubiel -drovin -drager -drage -donham -donat -dona -dolinger -dokken -doepke -dodwell -docherty -distasio -disandro -diniz -digangi -didion -dezzutti -devora -detmer -deshon -derrigo -dentler -demoura -demeter -demeritt -demayo -demark -demario -delzell -delnero -delgrosso -dejarnett -debernardi -dearmas -dau -dashnaw -daris -danks -danker -dangler -daignault -dafoe -dace -curet -cumberledge -culkin -cuba -crowner -crocket -crawshaw -craun -cranshaw -cragle -courser -costella -cornforth -corkill -cordy -coopersmith -conzemius -connett -connely -condict -condello -concha -comley -colt -collen -cohoon -coday -clugston -clowney -clippard -clinkenbeard -clines -clelland -clause -clapham -clancey -clabough -cichy -cicalese -chuck -chua -chittick -chisom -chisley -chino -chinchilla -cheramie -cerritos -cercone -cena -cawood -cavness -catanzarite -casada -carvell -carp -carmicheal -carll -cardozo -caplin -candia -canby -cammon -callister -calligan -calkin -caillouet -buzzelli -bute -bustillo -bursey -burgeson -bupp -bulson -bulls -buist -buffey -buczkowski -buckbee -bucio -brueckner -broz -brookhart -brong -brockmeyer -broberg -brittenham -brisbois -bridgmon -bride -breyer -brede -breakfield -breakey -brauner -branigan -brandewie -branche -brager -brader -bovell -bouthot -bostock -bosma -boseman -boschee -borthwick -borneman -borer -borek -boomershine -boni -bommarito -bolman -boleware -boisse -boehlke -bodle -blash -blasco -blakesley -blacklock -blackley -bittick -birks -birdin -bircher -bilbao -bick -biby -bertoni -bertino -bertini -berson -bern -berkebile -bergstresser -benne -benevento -belzer -beltre -bellomo -bellerose -beilke -begeman -bebee -beazer -beaven -beamish -baymon -baston -bastidas -basom -basket -basey -bartles -baroni -barocio -barnet -barclift -banville -balthazor -balleza -balkcom -baires -bailiff -bailie -baik -baggott -bagen -bachner -babington -babel -asmar -askin -arvelo -artega -arrendondo -arreaga -arrambide -arquette -aronoff -arico -argentieri -arevalos -archbold -apuzzo -antczak -ankeny -angelle -angelini -anfinson -amer -amberg -amarillas -altier -altenburg -alspach -alosa -allsbrook -alexopoulos -aleem -aldred -albertsen -akerson -ainsley -agler -adley -addams -acoba -achille -abplanalp -abella -abare -zwolinski -zollicoffer -zola -zins -ziff -zenner -zender -zelnick -zelenka -zeches -zaucha -zauala -zappa -zangari -zagorski -youtsey -yorker -yell -yasso -yarde -yarbough -xiao -woolever -woodsmall -woodfolk -wonders -wobig -wixson -wittwer -wirtanen -winson -wingerd -wilkening -wilhelms -wierzbicki -wiechman -whites -weyrick -wessell -wenrick -wenning -weltz -weinrich -weiand -wehunt -wareing -walth -waibel -wahlquist -vona -voelkel -vitek -vinsant -vincente -vilar -viel -vicars -vermette -verma -vent -venner -veazie -vayda -vashaw -varon -vardeman -vandevelde -vanbrocklin -valery -val -vaccarezza -urquidez -urie -urbach -uram -ungaro -umali -ulsh -tutwiler -turnbaugh -tumminello -tuite -tueller -trulove -troha -trivino -trisdale -trippett -tribbett -treptow -tremain -travelstead -trautwein -trautmann -tram -traeger -tonelli -tomsic -tomich -tomasulo -tomasino -tole -todhunter -toborg -tischer -tirpak -tircuit -tinnon -tinnel -tines -tina -timbs -tilden -tiede -thumm -throne -throgmorton -thorndike -thornburgh -thoren -thomann -therrell -thau -thammavong -tetrick -tessitore -tesreau -teicher -teaford -tauscher -tauer -tanabe -talamo -takeuchi -taite -tadych -sweeton -swecker -swartzentrube -swarner -surrell -surbaugh -suppa -sunshine -sumbry -suchy -stuteville -studt -stromer -strome -streng -stonestreet -stockley -stmichel -sticker -stfort -sternisha -stensrud -steinhardt -steinback -steichen -stauble -stasiak -starzyk -stango -standerfer -stachowiak -springston -spratlin -spracklen -sponseller -spilker -spiegelman -spellacy -speiser -spaziani -spader -spackman -space -sorum -sopha -sollis -sollenberger -solivan -solheim -sokolsky -sogge -smyser -smitley -sloas -slinker -skora -skiff -skare -siverd -sivels -siska -siordia -simmering -simko -sime -silmon -silano -sieger -siebold -shukla -shreves -shoun -shortle -shonkwiler -shoals -shimmel -shiel -shieh -sherbondy -shenkman -shein -shearon -shean -shatz -shanholtz -shafran -shaff -shackett -sgroi -sewall -severy -sethi -sessa -sequra -sepulvado -seper -senteno -sendejo -semmens -seipp -segler -seegers -sedwick -sedore -sechler -sebastiano -scovel -scotton -scopel -schwend -schwarting -schutter -schrier -schons -scholtes -schnetzer -schnelle -schmutz -schlichter -schelling -schams -schamp -scarber -scallan -scalisi -scaffidi -saxby -sawrey -sauvageau -sauder -sarrett -sanzo -santizo -santella -santander -sandez -sandel -sammon -salsedo -salge -sailors -sagun -safi -sader -sacchetti -sablan -saber -saade -runnion -runkel -rung -rumbo -ruesch -ruegg -ruckle -ruchti -rubens -rubano -rozycki -roupe -roufs -rossel -rosmarin -rosero -rosenwald -roselle -ronca -romos -rolla -rohling -rohleder -roell -roehm -rochefort -roch -robotham -rivenburgh -riopel -riederer -ridlen -rias -rhudy -reynard -retter -respess -reppond -repko -rengifo -reinking -reichelt -reeh -redenius -rebolledo -raymundo -rauh -ratajczak -rapley -ranalli -ramie -raitt -radloff -radle -rabbitt -quay -quant -pusateri -puffinberger -puerta -provencio -proano -privitera -prenger -prellwitz -pousson -potier -poster -portz -portlock -porth -portela -portee -porchia -pollick -polinski -polfer -polanski -polachek -pluta -plourd -plauche -pitner -piontkowski -pileggi -pierotti -pico -piacente -phinisee -phaup -pfost -pettinger -pettet -petrich -peto -persley -persad -perlstein -perko -pere -penders -peifer -peco -pear -pay -pawley -pash -parrack -parady -papen -pangilinan -pandolfo -palone -palmertree -padin -ou -ottey -ottem -ostroski -ornstein -ormonde -onstott -oncale -oltremari -olcott -olan -oishi -oien -odonell -odonald -ode -obeso -obeirne -oatley -nusser -novo -novicki -noreen -nora -nitschke -nistler -nim -nikkel -niese -nierenberg -nield -niedzwiecki -niebla -niebel -nicklin -neyhart -newsum -nevares -nageotte -nagai -myung -mutz -murata -muralles -munnerlyn -mumpower -muegge -muckle -muchmore -moulthrop -motl -moskos -mortland -morring -mormile -morimoto -morikawa -morgon -mordecai -montour -mont -mongan -monell -miyasato -mish -minshew -mimbs -millin -milliard -mihm -middlemiss -miano -mew -mesick -merlan -mendonsa -mench -melonson -melling -mecca -meachem -mctighe -mcnelis -mcmurtrey -mcmurphy -mckesson -mckenrick -mckelvie -mcjunkins -mcgory -mcgirr -mcgeever -mcfield -mcelhinney -mccrossen -mccommon -mccannon -mazyck -mawyer -maull -matute -mathies -maschino -marzan -martinie -marrotte -marmion -markarian -marinacci -margolies -margeson -marcia -marcel -marak -maraia -maracle -manygoats -mano -manker -mank -mandich -manderson -maltz -malmquist -malacara -majette -mais -magnan -magliocca -madina -madara -macwilliams -macqueen -maccallum -lyde -lyday -lutrick -lurz -lurvey -lumbreras -luhrs -luhr -lue -lowrimore -lowndes -lowers -lourenco -lougee -lorona -longstreth -loht -lofquist -loewenstein -lobos -lizardi -liverpool -lionberger -limoli -liljenquist -liguori -liebl -liburd -leukhardt -letizia -lesinski -lepisto -lenzini -leisenring -leipold -leier -leggitt -legare -leaphart -lazor -lazaga -lavey -laue -laudermilk -lauck -lassalle -larsson -larison -lanzo -lantzy -lanners -langtry -landford -lancour -lamour -lambertson -lalone -lairson -lainhart -lagreca -lacina -labranche -labate -kurtenbach -kuipers -kuechle -kue -kubo -krinsky -krauser -kraeger -kracht -kozeliski -kozar -kowalik -kotler -kotecki -koslosky -kosel -koob -kolasinski -koizumi -kohlman -koffman -knutt -knore -knaff -kmiec -klamm -kittler -kitner -kirkeby -kiper -kindler -kilmartin -killings -killin -kilbride -kerchner -kendell -keddy -keaveney -kearsley -karras -karlsson -karalis -kappes -kapadia -kallman -kallio -kalil -kader -jurkiewicz -joya -johann -jitchaku -jillson -jex -jeune -jarratt -jarchow -janak -ivins -ivans -isenhart -inocencio -inoa -imhof -iacono -hynds -hutching -hutchin -hulsman -hulsizer -hueston -huddleson -hrbek -howry -housey -hounshell -hosick -hortman -horseman -horky -horine -hootman -honeywell -honeyestewa -holste -holien -holbrooks -hoffmeyer -hof -hoese -hoenig -hirschfeld -hildenbrand -higson -higney -hibert -hibbetts -hewlin -hesley -herrold -hermon -heritage -hepker -henwood -helbling -heinzman -heidtbrink -hedger -havey -hatheway -hartshorne -harpel -haning -handelman -hamalainen -hamad -halt -halasz -haigwood -haggans -hackshaw -guzzo -gunner -gundrum -guilbeault -gugliuzza -guglielmi -gue -guderian -gruwell -grunow -grundman -gruen -grotzke -grossnickle -groomes -grode -grochowski -grob -grein -greif -greenwall -greenup -grassl -grannis -grandfield -grames -grabski -grabe -gouldsberry -gotham -gosch -goody -goodling -goodermote -gonzale -golebiowski -goldson -godlove -glanville -gillin -gilkerson -giessler -giambalvo -giacomini -giacobbe -ghio -gergen -gentz -genrich -gelormino -gelber -geitner -geimer -gauthreaux -gaultney -garvie -gareau -garbo -garbacz -ganoe -gangwer -gandarilla -galyen -galt -galluzzo -gallon -galardo -gager -gaddie -gaber -gabehart -gaarder -fusilier -furnari -furbee -fugua -fruth -frohman -friske -frilot -fridman -frescas -freier -frayer -franzese -franklyn -frankenberry -frain -fosse -foresman -forbess -foot -florida -flook -fletes -fleer -fleek -fleegle -fishburne -fiscalini -finnigan -fini -filipiak -figueira -fiero -ficek -fiaschetti -ferren -ferrando -ferman -fergusson -fenech -feiner -feig -fees -faulds -fate -fariss -fantasia -falor -falke -ewings -eversley -everding -eunice -etling -essen -erskin -enstrom -enrico -engebretsen -ender -emma -eitel -eichberger -ehler -eekhoff -edrington -edmonston -edgmon -edes -eberlein -dwinell -dux -dupee -dunklee -dunk -dungey -dunagin -dumoulin -duggar -duenez -dudzic -dudenhoeffer -ducey -dub -drouillard -dreibelbis -dreger -dreesman -draughon -downen -double -dorminy -dominic -dombeck -dolman -doebler -dittberner -dishaw -disanti -dinicola -dinham -dimino -dilling -difrancesco -dicello -dibert -deshazer -deserio -descoteau -deruyter -dering -depinto -dente -demus -demattos -demarsico -delude -dekok -debrito -debois -deakin -dea -dayley -dawsey -dauria -datson -darty -darsow -darragh -darensbourg -dalleva -dalbec -dadd -cutcher -curb -cung -cuello -cuadros -crute -crutchley -crispino -crislip -crisco -crevier -creekmur -crance -cragg -crager -cozby -coyan -coxon -covalt -couillard -costley -costilow -cossairt -corvino -corigliano -cordaro -corbridge -corban -coor -cooler -conkel -cong -conary -coltrain -collopy -colgin -colen -colbath -coiro -coffie -cochrum -cobbett -clopper -cliburn -clendenon -clemon -clementi -clausi -cirino -cina -churn -churchman -chilcutt -cherney -cheetham -cheatom -chatelain -chandra -chalifour -cesa -cervenka -cerullo -cerreta -cerbone -cecchini -ceccarelli -cawthorn -cavalero -catalina -castner -castlen -castine -casimiro -casdorph -cartmill -cartmell -carro -carriger -carlee -carias -caravella -cappas -capen -cantey -canedo -camuso -camps -campanaro -camero -cambria -calzado -callejo -caligiuri -cafaro -cadotte -cacace -byrant -busbey -burtle -burres -burnworth -burggraf -burback -bunte -bunke -bulle -bugos -budlong -buckhalter -buccellato -brummet -bruff -brubeck -brouk -broten -brosky -broner -brittle -brislin -brimm -brillhart -bridgham -brideau -brennecke -brenna -breer -breeland -bredesen -branden -brackney -brackeen -boza -boyum -bowdry -bowdish -bouwens -bouvier -bougie -bouche -bottenfield -bostian -bossie -bosler -boschert -boroff -borello -boom -bonser -bonfield -bon -bole -boldue -bogacz -boemer -bluth -bloxom -blickenstaff -blessinger -bleazard -blatz -blanchet -blacksher -birchler -binning -binkowski -biltz -bilotta -bilagody -bigbee -bieri -biehle -bidlack -betker -bethers -bethell -bertha -bero -bernacchi -bermingham -berkshire -benvenuto -bensman -benoff -bencivenga -beman -bellow -bellany -belflower -belch -bekker -bejar -beisel -beichner -began -beedy -beas -beanblossom -bawek -baus -baugus -battie -battershell -bateson -basque -basford -bartone -barritt -barko -bann -bamford -baltrip -balon -balliew -ballam -baldus -ayling -avelino -ashwell -ashland -arseneau -arroyos -armendarez -arita -argust -archuletta -arcement -antonacci -anthis -antal -annan -andree -anderman -amster -amiri -amadon -alveraz -altomari -altmann -altenhofen -allers -allbee -allaway -all -aleo -alcoser -alcorta -akhtar -ahuna -agramonte -agard -adkerson -achord -abt -abdi -abair -zurn -zoellner -zirk -zion -zee -zarro -zarco -zambo -zaiser -zaino -zachry -youd -yonan -yniguez -yepes -yeo -yellock -yellen -yeatts -yearling -yatsko -yannone -wyler -woodridge -wolfrom -wolaver -wolanin -wojnar -wojciak -wittmann -wittich -wiswell -wisser -wintersteen -wineland -willing -willford -wiginton -wigfield -wierman -wice -wiater -whitsel -whitbread -wheller -wettstein -werling -wente -wenig -wempe -welz -weinhold -weigelt -weichman -wedemeyer -weddel -ways -wayment -waycaster -wauneka -watzka -watton -warnell -warnecke -warmack -warder -wands -waldvogel -waldridge -wahs -wagganer -waddill -vyas -vought -votta -voiles -virga -viner -villella -villaverde -villaneda -viele -vickroy -vicencio -veve -vetere -vermilyea -verley -verburg -ventresca -veno -venard -venancio -velaquez -veenstra -vea -vasil -vanzee -vanwie -vantine -vant -vanschoyck -vannice -vankampen -vanicek -vandersloot -vanderpoel -vanderlinde -vallieres -uzzell -uzelac -uranga -uptain -updyke -uong -untiedt -umbrell -umbaugh -umbarger -ulysse -ullmann -ullah -tutko -turturro -turnmire -turnley -turcott -turbyfill -turano -tuminello -tumbleson -tsou -truscott -trulson -troutner -trone -troll -trinklein -tremmel -tredway -trease -traynham -traw -totty -torti -torregrossa -torok -tomkins -tomaino -tkach -tirey -tinsman -timpe -tiefenauer -tiedt -tidball -thwaites -thulin -throneburg -thorns -thorell -thorburn -thiemann -thieman -thesing -tham -terrien -terrance -telfair -taybron -tasson -tasso -tarro -tanenbaum -talent -tailor -taddeo -tada -taborn -tabios -szekely -szatkowski -sylve -swineford -swartzfager -swanton -swagerty -surrency -sunderlin -sumerlin -suero -suddith -sublette -stumpe -stueve -study -stuckert -strycker -struve -struss -strubbe -strough -strothmann -strahle -stoutner -stooksbury -stones -stonebarger -stokey -stoffer -stimmel -stief -stephans -stemper -steltenpohl -stellato -steinle -stegeman -steffler -steer -steege -steckman -stapel -stansbery -stanaland -stahley -stagnaro -stachowski -squibb -sprunger -sproule -sprehe -spreen -sprecher -sposato -spivery -souter -sopher -sommerfeldt -soffer -snowberger -snape -smylie -smyer -smack -slaydon -slatton -slaght -skovira -skeans -sjolund -sjodin -siragusa -singelton -sinatra -silis -siebenaler -shuffield -shobe -shiring -shimabukuro -shilts -sherley -sherbert -shelden -sheil -shedlock -shearn -shaub -sharbono -shapley -shands -shaheen -shaffner -servantez -sentz -seney -selin -seitzinger -seider -sehr -sego -segall -seeds -sebastien -scimeca -schwenck -schweiss -schwark -schwalbe -schucker -schronce -schrag -schouten -schoppe -schomaker -schnarr -schmied -schmader -schlicht -schlag -schield -schiano -scheve -scherbarth -schaumburg -schauman -scarpino -savinon -sassaman -sarah -saporito -sanville -santilli -santaana -sanda -salzmann -salman -saks -sagraves -safran -saccone -sa -rutty -russett -rupard -rump -rumbley -ruffins -ruacho -rozema -roxas -routson -rourk -rought -rotunda -rotermund -rosman -rosette -rork -rooke -rolin -rohm -rohlman -rohl -roeske -roecker -rober -robenson -riso -rinne -rima -riina -rigsbee -riggles -riester -rials -rhinehardt -reynaud -reyburn -rewis -revermann -reutzel -retz -rende -rendall -reistad -reinders -reichardt -rehrig -rehrer -recendez -reamy -raz -rauls -ratz -rattray -rasband -rapone -ragle -ragins -radican -raczka -rachels -raburn -rabren -raboin -ra -quesnell -quaintance -puccinelli -pruner -prouse -proud -prosise -proffer -prochazka -probasco -previte -prayer -pour -portell -porcher -popoca -poncho -pomroy -poma -polsky -polsgrove -polidore -podraza -plymale -plescia -pleau -platte -plato -pizzi -pinchon -picot -piccione -picazo -philibert -phebus -pfohl -petell -pesso -pesante -pervis -perrins -perley -perkey -pereida -penate -peloso -pellerito -peffley -peddicord -pecina -peale -peaks -payette -paxman -pawlikowski -pavy -pavlov -patry -patmon -patil -pater -patak -pasqua -pasche -partyka -parody -parmeter -pares -pardi -paonessa -pao -panozzo -panameno -paletta -pait -oyervides -ossman -oshima -ortlieb -orsak -orleans -onley -on -oldroyd -okano -ohora -offley -oestreicher -odonovan -odham -odegard -obst -obriant -obrecht -nuccio -nowling -nowden -novelli -novell -nost -norstrom -norfolk -nordgren -nopper -noller -nisonger -niskanen -nienhuis -nienaber -neuwirth -neumeyer -neice -naugher -naiman -nagamine -mustin -murrietta -murdaugh -munar -mulberry -muhlbauer -mroczkowski -mowdy -mouw -mousel -mountcastle -moscowitz -mosco -morro -moresi -morago -moomaw -montroy -montpas -montieth -montanaro -mongelli -mon -mollison -mollette -moldovan -mohar -mizuno -mitchelle -mishra -misenheimer -minshall -minozzi -minniefield -minion -milhous -migliaccio -migdal -mickell -meyering -methot -mester -mesler -meriweather -mensing -mensah -menge -mendola -mendibles -meloche -melnik -mellas -meinert -mehrhoff -medas -meckler -mctague -mcspirit -mcshea -mcquown -mcquiller -mclarney -mckiney -mckearney -mcguyer -mcfarlan -mcfadyen -mcdanial -mcdanel -mccurtis -mccrohan -mccorry -mcclune -mccant -mccanna -mccandlish -mcaloon -mayall -maver -maune -matza -matty -matsuzaki -matott -mathey -mateos -masoner -masino -mas -marzullo -marz -maryland -marsolek -marquard -mario -marchetta -marberry -manzione -many -manthei -manka -mangram -mangle -mangel -mandato -mancillas -mammen -malina -maletta -malecki -majkut -mages -maestre -macphail -maco -macneill -macadam -lysiak -lyne -luxton -luptak -lundmark -luginbill -lovallo -louthan -lousteau -loupe -lotti -lopresto -lonsdale -longsworth -lohnes -loghry -logemann -lofaro -loeber -locastro -livings -litzinger -litts -liotta -lingard -lineback -lindy -lindhorst -lill -lide -lickliter -liberman -lewinski -levandowski -leimbach -leifer -leidholt -leiby -leibel -leibee -lehrke -lehnherr -lego -leese -leen -ledo -lech -leblond -leap -leahey -lazzari -lawrance -lawlis -lawhorne -lawes -lavigna -lavell -lauzier -lauter -laumann -latsha -latourette -latona -latney -laska -larner -larmore -larke -larence -lapier -lanzarin -lands -lammey -lamke -laminack -lamastus -lamaster -lacewell -labarr -laabs -kutch -kuper -kuna -kubis -krzemien -krupinski -krepps -kreeger -kraner -krammer -kountz -kothe -korpela -komara -kolenda -kolek -kohnen -koelzer -koelsch -kocurek -knoke -knauff -knaggs -knab -kluver -klose -klien -klahr -kitagawa -kissler -kirstein -kinnon -kinnebrew -kinnamon -kimmins -kilgour -kilcoyne -kiester -kiehm -kha -kesselring -kerestes -kenniston -kennamore -kenebrew -kelderman -keitel -kefauver -katzenberger -katt -kast -kassel -kasey -karol -kamara -kalmbach -kaizer -kaiwi -kainz -jurczyk -jumonville -juliar -jourdain -johndrow -johanning -johannesen -joffrion -jobes -jerde -jentzsch -jenkens -jendro -jellerson -jefferds -jaure -jaquish -janeway -jago -iwasaki -ishman -isaza -inmon -inlow -inclan -ildefonso -ike -iezzi -ianni -iacovetto -hyldahl -huxhold -huser -humpherys -humburg -hult -hullender -hulburt -huckabay -howeth -hovermale -hoven -houtman -hourigan -hosek -hopgood -homrich -holstine -holsclaw -hokama -hoffpauir -hoffner -hochstein -hochstatter -hochberg -hjelm -hiscox -hinsley -hinks -hineman -hineline -hinck -hilbun -hewins -herzing -hertzberg -hertenstein -herrea -herington -hercules -henrie -henman -hengst -hemmen -helmke -helgerson -heinsohn -heigl -hegstad -heggen -hegge -hefti -heathcock -haylett -haupert -haufler -hatala -haslip -hartless -hartje -hartis -harpold -harmsen -harbach -hanten -hanington -hammen -hameister -hallstrom -habersham -habegger -gussman -gundy -guitterez -guisinger -guilfoyle -groulx -grismer -griesbach -grawe -grall -graft -graben -goulden -gornick -gori -gookin -gonzalaz -gonyer -gonder -golphin -goller -goergen -glosson -glor -gladin -girdler -gillim -gillians -gillaspie -gilhooly -gildon -gignac -gibler -gibbins -giardino -giampietro -gettman -gerringer -gerrald -gerlich -georgiou -georgia -georgi -geiselman -gehman -gauze -gangl -gamage -gallian -gallen -gallatin -galen -galea -gainor -gahr -furbush -fulfer -fuhrmann -fritter -friis -friendly -friedly -freudenberger -frees -freemon -fratus -frans -foulke -fosler -forquer -fontan -folwell -folds -foeller -fodge -fobes -florek -fliss -flight -flesner -flegel -fitzloff -fiser -first -firmin -firestine -finfrock -fineberg -figures -fiegel -fickling -fesperman -fernadez -felber -feimster -feazel -favre -faughn -fatula -fasone -farron -faron -farino -falvey -falkenberg -faley -faletti -faeth -fackrell -ezekiel -espe -eskola -escott -esaw -erps -erker -erath -enfield -emfinger -embury -embleton -emanuele -em -elvers -ellwanger -ellegood -einstein -eichinger -egge -egeland -edgett -echard -eblen -eastmond -duteau -durland -dure -dunlavy -dungee -dukette -dugay -duboise -dubey -dsouza -druck -dralle -doubek -dorta -dorch -dorce -dopson -dolney -dockter -distler -diss -dippel -diperna -dina -dichiara -dicerbo -dewindt -dewan -deveney -devargas -deutscher -deuel -detter -dess -derrington -deroberts -dern -deponte -denogean -denardi -denard -demary -demarcus -demarais -delucas -deloe -delmonico -delisi -delio -delduca -delaine -deihl -dehmer -deep -decoste -dechick -decatur -dec -debruce -debold -debell -deats -daunt -daquilante -dambrosi -damas -dalin -daisy -dahman -dahlem -daffin -dacquel -cutrell -cusano -curtner -currens -curnow -cuppett -cummiskey -cullers -culhane -crull -crossin -cropsey -cromie -crofford -criscuolo -crisafulli -crego -creeden -covello -covel -corse -correra -corners -cordner -cordier -coplen -copeman -contini -conteras -consalvo -conduff -condo -compher -comas -colliver -colan -cohill -cohenour -cogliano -codd -cockayne -clum -clowdus -clarida -clance -clairday -clagg -citron -citino -ciriello -cicciarelli -chrostowski -christley -christians -chrisco -chris -chrest -chisler -chieffo -cherne -cherico -cherian -cheirs -chauhan -charter -chamblin -cerra -cepero -cellini -celia -celeste -celedon -cejka -cavagnaro -cauffman -catanese -castrillo -castrellon -casserly -casino -caseres -carthen -carse -carragher -carpentieri -carmony -carmer -carlozzi -caradine -cappola -capece -capaldi -cantres -cantos -canevari -canete -calcaterra -cal -cadigan -cabbell -byrn -bykowski -butchko -busler -bushaw -buschmann -burow -buri -burgman -bunselmeyer -bunning -buhrman -budnick -buckson -buckhannon -brunjes -brummel -brumleve -bruckman -brouhard -brougham -brostrom -broerman -brocks -brison -brining -brindisi -brereton -breon -breitling -breedon -brasseaux -branaman -bramon -brackenridge -boyan -boxley -bouman -bouillion -botting -botti -bosshart -borup -borner -bordonaro -boot -bonsignore -bonsall -bolter -bojko -bohne -bohlmann -bogus -bogdon -boen -bodenschatz -bockoven -bobrow -blondin -blissett -bligen -blasini -blankenburg -bjorkman -bistline -bisset -birdow -biondolillo -bielski -biele -biddix -biddinger -bianchini -bevens -bevard -betancur -bernskoetter -bernet -bernardez -berliner -berland -berkheimer -berent -bensch -benesch -belleau -bedingfield -beckstrom -beckim -bechler -beachler -bazzell -basa -bartoszek -barsch -barrell -barnas -barnaba -barillas -barbier -baltodano -baltierra -balle -balint -baldi -balderson -balderama -baldauf -balcazar -balay -baiz -bairos -baba -azim -axe -aversa -avellaneda -ausburn -aurelio -auila -augusto -atwill -artiles -arterberry -aro -arnow -arnaud -arnall -armando -argyle -ares -arenz -arduini -archila -arakawa -appleman -aplin -antonini -anstey -anglen -andros -amweg -amstutz -amari -amadeo -aly -alteri -aloi -allebach -allah -aley -alamillo -airhart -ahrendt -africa -aegerter -adragna -admas -adderly -adderley -addair -abelar -abbamonte -abadi -zurek -zundel -zuidema -zuelke -zuck -zogg -zody -zets -zech -zecca -zavaleta -zarr -yousif -yoes -yoast -yeagley -yaney -yanda -yackel -wyles -wyke -woolman -woollard -woodis -woodin -wonderly -wombles -woloszyn -wollam -wnek -wms -wittie -withee -wissman -wisham -wintle -winthrop -winokur -winch -wilmarth -willhoite -wildner -wikel -wieser -wien -wicke -wiatrek -whitehall -whetstine -wheelus -weyrauch -weyers -westerling -wendelken -welner -welder -weinreb -weinheimer -weilbacher -weihe -weider -wecker -wead -watler -watkinson -wasmer -waskiewicz -wasik -warneke -wares -wangerin -wamble -walken -waker -wakeley -wahlgren -wahlberg -wagler -wachob -vorhies -vonseggern -vittitow -virgilio -vink -villarruel -villamil -villamar -villalovos -vidmar -victorero -vespa -vertrees -verissimo -veltman -vecchione -veals -varrone -varma -vanveen -vanterpool -vaneck -vandyck -vancise -vanausdal -vanalphen -valdiviezo -urton -urey -updegrove -unrue -ulbrich -tysinger -tyo -twiddy -tunson -trueheart -troyan -trier -traweek -trafford -tozzi -toulouse -touch -tosto -toste -torez -tooke -tonini -tonge -tomerlin -tolmie -tobe -tippen -tierno -tichy -thuss -threat -thran -thornbury -thone -theunissen -thelmon -theall -textor -teters -tesh -tennis -teng -tench -tekautz -tehrani -teat -teas -teare -te -tavenner -tartaglione -tanski -tanis -tanguma -tangeman -taney -tammen -tamburri -tamburello -talsma -tallie -takeda -taira -taheri -tademy -taddei -taaffe -szymczak -szczepaniak -szafranski -swygert -swem -swartzlander -sutley -supernaw -sundell -sullivant -suderman -sudbury -suares -stueber -stromme -striker -streeper -streck -strebe -stonehouse -stoia -stohr -stodghill -stirewalt -stick -sterry -stephanie -stenstrom -stene -steinbrecher -stear -stdenis -stanphill -staniszewski -stanard -stahlhut -stachowicz -srivastava -spong -spomer -spinosa -spindel -spera -spark -soward -sopp -sooter -sonnek -sonne -soland -sojourner -soeder -sobolewski -snellings -snare -smola -smetana -smeal -smarr -sloma -sligar -skenandore -skalsky -sitter -sissom -sirko -simkin -silverthorn -silman -sikkink -signorile -siddens -shumsky -shrider -shoulta -shonk -shomaker -shippey -shimada -shillingburg -shifflet -shiels -shepheard -sheerin -shedden -sheckles -sharrieff -sharpley -shappell -shaneyfelt -shampine -shaefer -shaddock -shadd -sforza -severtson -setzler -sepich -senne -senatore -sementilli -selway -selover -sellick -seigworth -sefton -seegars -sebourn -seaquist -sealock -seabreeze -scriver -scinto -schumer -schulke -schryver -schriner -schramek -schoon -schoolfield -schonberger -schnieder -schnider -schlitz -schlather -schirtzinger -scherman -schenker -scheiner -scheible -schaus -schakel -schaad -saxe -savely -savary -sardinas -santarelli -sanschagrin -sans -sanpedro -sanjose -sandra -sandine -sandigo -sandgren -sanderford -sandahl -salzwedel -salzar -salvino -salvatierra -salminen -salierno -salberg -sahagun -saelee -sabel -rynearson -ryker -rupprecht -runquist -rumrill -ruhnke -rovira -rottenberg -rosoff -rosete -rosebrough -roppolo -roope -romas -roley -rohrback -rohlfs -rogriguez -roel -rodriguiz -rodewald -roback -rizor -ritt -rippee -riolo -rinkenberger -riggsby -rigel -rieman -riedesel -rideau -ricke -rhinebolt -rheault -revak -relford -reinsmith -reichmann -rei -regula -redlinger -redhead -rayno -raycroft -rave -raus -raupp -rathmann -rastorfer -rasey -raponi -rantz -ranno -ranes -randal -ramp -ramnauth -rahal -raddatz -quattrocchi -quang -purchase -pullis -pulanco -pryde -prohaska -primiano -prez -prevatt -prechtl -pottle -potenza -portes -porowski -poppleton -pontillo -pong -polka -politz -politi -poggi -plonka -plaskett -placzek -pizzuti -pizzaro -pisciotta -pippens -pinkins -pinilla -pini -pingitore -piercey -pickup -piccola -piccioni -picciano -phy -philps -philp -philo -philmon -philbin -pflieger -pezzullo -petruso -petrea -petitti -peth -peshlakai -peschel -persico -persichetti -persechino -perris -perlow -perico -pergola -penniston -pembroke -pellman -pekarek -peirson -pearcey -pealer -pavlicek -passino -pasquarello -pasion -parzych -parziale -parga -papalia -papadakis -paino -pacini -oyen -ownes -owczarzak -outley -ouelette -ottosen -otting -ostwinkle -osment -oshita -osario -orlow -oriordan -orefice -orantes -oran -orahood -opel -olpin -oliveria -okon -okerlund -okazaki -ohta -offerman -nyce -nutall -northey -norcia -noor -noh -niehoff -niederhauser -nickolson -nguy -neylon -newstrom -nevill -netz -nesselrodt -nemes -neally -nauyen -nascimento -nardella -nanni -myren -murchinson -munter -munster -mundschenk -mujalli -muckleroy -mu -moussa -mouret -moulds -mottram -motte -mosey -morre -montreuil -monton -montellano -monninger -monhollen -mongeon -monestime -monegro -mondesir -monceaux -mola -moga -moening -moccia -misko -miske -mishaw -minturn -mingione -minerva -milstein -milos -milla -milks -milhouse -michl -micheletti -michals -mesia -merson -meras -menifee -meluso -mella -melick -mehlman -meffert -medoza -mecum -meaker -meahl -mczeal -mcwatters -mcomber -mcmonigle -mckiddy -mcgranor -mcgeary -mcgaw -mcenery -mcelderry -mcduffey -mccuistion -mccrudden -mccrossin -mccosh -mccolgan -mcclish -mcclenahan -mcclam -mccartt -mccarrell -mcbane -mc -maybury -mayben -maw -maulden -mauceri -matko -mathie -matheis -mathai -masucci -massiah -martorano -martnez -martindelcamp -marschke -marovich -markiewicz -marinaccio -marhefka -marcrum -manton -mantel -mannarino -manlove -mangham -manasco -malpica -mallernee -malinsky -malhotra -maish -maisel -mainville -maharrey -magid -maertz -mada -maclaughlin -macina -macdermott -macallister -macadangdang -maack -lynk -lydic -luyando -lutke -lupinacci -lunz -lundsten -lull -lujano -luhn -luecke -luebbe -ludolph -luckman -lucker -luckenbill -luckenbach -lucido -lowney -lowitz -lovaglio -louro -louk -loudy -louderback -lorick -lorenzini -lorensen -lorenc -lomuscio -loguidice -lockner -lockart -lochridge -litaker -lisowe -liptrap -linnane -linhares -lindfors -lindenmuth -lincourt -lina -like -liew -lies -liebowitz -levengood -leskovec -lesch -leoni -lennard -legner -leaser -leas -lean -leadingham -lazarski -layland -laurito -laulu -laughner -laughman -laughery -laube -latiolais -lasserre -lasser -lars -larrow -larrea -lapsley -lantrip -lanthier -langwell -langelier -landaker -lampi -lamond -lamblin -lambie -lakins -laipple -lagrimas -lafrancois -laffitte -laday -lacko -lacava -labor -labianca -kutsch -kuske -kunert -kubly -kuamoo -krummel -krise -krenek -kreiser -krausz -kraska -krakowski -kradel -kozik -koza -kotowski -koslow -korber -kojima -kochel -knabjian -klunder -klugh -klinkhammer -kliewer -klever -kleber -klages -klaas -kizziar -kitchel -kishimoto -kirschenman -kirschenbaum -kinnick -kinn -kinkle -kiner -kindla -kindall -kincaide -kilson -killins -kill -kightlinger -kienzle -kiah -khim -ketcherside -kerl -kelsoe -kelker -keizer -keir -keepers -kawano -kawa -kaveney -kath -kasparek -kaplowitz -kantrowitz -kant -kanoff -kano -kann -kamalii -kalt -kaleta -kalbach -kalauli -kalata -kalas -kaigler -kachel -juran -jubb -jonker -jonke -jolivette -joles -joas -jividen -jewel -jeffus -jeanty -jarvi -jardon -janvier -janosko -janoski -janiszewski -janish -janek -iwanski -iuliano -isabella -irle -ingmire -imber -ijames -iiams -ihrig -ichikawa -hynum -hutzel -hutts -huskin -husak -hurndon -huntsinger -humm -hulette -huitron -huguenin -hugg -hugee -huelskamp -huch -howen -hovanec -hoston -hostettler -horsfall -horodyski -holzhauer -hollimon -hollender -hogarth -hoffelmeyer -histand -hissem -hisel -hirayama -hinegardner -hinde -hinchcliffe -hiltbrand -hilsinger -hillstrom -hiley -hickenbottom -hickam -hibley -heying -hewson -hetland -hersch -herlong -herda -henzel -henshall -hendler -hence -helson -helfen -heinbach -heikkila -heggs -hefferon -hebard -heathcote -hearl -heaberlin -hauth -hauschild -haughney -hauch -hattori -haste -hasley -hartpence -harroun -harrier -harelson -hardgrove -hardel -hansbrough -handsome -handshoe -handly -haluska -hally -halling -halfhill -halferty -hakanson -haist -hairgrove -hahner -hagg -hafele -haaland -guttierez -gutknecht -gunnarson -gunlock -gummersheimer -gullatte -guity -guilmette -guhl -guenette -guardino -groshong -grober -gripp -grillot -grilli -greulich -gretzinger -greenwaldt -graven -grassman -granberg -graeser -graeff -graef -grabow -grabau -gotchy -goswick -gosa -gordineer -gorczyca -goodchild -golz -gollihue -goldwire -goldbach -goffredo -glassburn -glaeser -gillilan -gigante -giere -gieger -gidcumb -giarrusso -giannelli -gettle -gesualdi -geschke -gerwig -gervase -geoffrion -gentilcore -genther -gemes -gemberling -gelles -geitz -geeslin -gedney -gebauer -gaye -gawron -gavia -gautney -gaustad -gasmen -gargus -ganske -ganger -galvis -gallinger -gallichio -galletta -gaede -gadlin -gaby -gabrielsen -gaboriault -furlan -furgerson -fujioka -fugett -fuehrer -frisco -frint -frigon -frevert -frautschi -fraker -fradette -foulkes -forslund -forni -foo -fontenette -fones -folz -folmer -follman -folkman -flourney -flickner -flemmings -fleischacker -flander -flament -fithian -fister -fiorello -fiorelli -fioravanti -fieck -ficke -fiallos -fiacco -feuer -ferrington -fernholz -feria -fergurson -feick -febles -favila -faulkingham -fath -farnam -falter -fakhouri -fairhurst -failing -fahs -eva -estrello -essick -espree -esmond -eskelson -escue -escatel -erebia -epperley -epler -enyart -engelbert -enderson -emmitt -emch -elisondo -eli -elford -el -ekman -eick -eichmann -ehrich -ehlen -edwardson -edley -edghill -edel -eastes -easterbrooks -eagleson -eagen -eade -dyle -dutkiewicz -dunnagan -duncil -duling -drumgoole -droney -dreyfus -dragan -dowty -doscher -dornan -doremus -doogan -donaho -donahey -dombkowski -dolton -dolen -dobratz -diveley -dittemore -ditsch -disque -dishmon -disch -dirickson -dippolito -dimuccio -dilger -diefenderfer -dicola -diblasio -dibello -devan -dettmer -deschner -desbiens -derusha -denkins -demonbreun -demchak -delucchi -delprete -deloy -deliz -deline -delap -deiter -deignan -degiacomo -degaetano -defusco -dede -deboard -debiase -deaville -deadwyler -davanzo -daughton -darter -darrin -danser -dandrade -dando -dampeer -dalziel -dalen -dain -dai -dague -czekanski -cutwright -cutliff -curle -cuozzo -cunnington -cunning -cunnigham -cumings -crowston -croak -crittle -crispell -crisostomo -crear -creach -craigue -crabbs -cozzi -cozza -coxe -cowsert -coviello -couse -coull -cottier -costagliola -corra -corpening -cormany -corless -corkern -conteh -conquest -conkey -cones -conditt -conaty -colomb -collura -colledge -colins -colgate -coleson -colemon -coins -coffland -coccia -coast -clougherty -clewell -cleckley -cleaveland -clarno -clamp -civils -cillo -cifelli -ciesluk -chum -chui -christison -christiana -chowning -chouteau -choung -childres -cherrington -chenette -cheeves -cheairs -chaddock -cernoch -cerino -cazier -cathy -castel -casselberry -caserta -carvey -carton -cart -carry -carris -carrie -carmant -cariello -cardarelli -caras -caracciolo -capitano -cantoni -cantave -cancio -campillo -cam -callens -caldero -calamia -cahee -cahan -cahalan -cabanilla -cabal -bywater -bynes -byassee -butkus -busker -bushby -busack -burtis -burrola -buroker -burnias -burn -burlock -burham -burak -bulla -buffin -buffa -buening -budney -buchannan -buchalter -bua -brule -brugler -broxson -broun -brosh -brissey -brisby -brinlee -brinkmeyer -brimley -brickell -breth -breger -brees -brank -braker -bozak -bowlds -bowersock -bousman -boushie -botz -bordwell -bonkowski -bonine -bonifay -bonesteel -boldin -bohringer -bohlander -boecker -bocook -bocock -boblett -bobbett -boas -boarman -bleser -blazejewski -blaustein -blausey -blancarte -blaize -blackson -blacketer -blackard -bisch -birchett -billa -bilder -bierner -bienvenu -bielinski -bialas -biagini -beynon -beyl -bettini -bethany -betcher -bessent -beshara -besch -bernd -bergemann -bergeaux -berdan -bens -benedicto -bendall -beltron -beltram -bellville -beisch -behney -beemer -beechler -beckum -becks -batzer -batte -bastida -bassette -basley -base -bartosh -bartolone -barraclough -barnick -barket -barkdoll -baringer -barges -barella -barbian -barbati -bannan -banderas -balles -baldo -balasubramani -bala -baig -bahn -bachmeier -babyak -baas -baars -ayuso -axt -avinger -avella -ausbrooks -aull -augello -atkeson -atkerson -atherley -athan -assad -asebedo -arrison -armon -armfield -armbrust -arlington -arkin -archambeau -antonellis -angotti -andy -amorose -amini -amborn -amano -aluarez -alma -allgaier -allegood -ales -alen -aldama -albertine -aki -aird -ahsing -ahmann -aguado -agostino -agostinelli -agnes -adwell -adsit -adelstein -ade -actis -acierno -achee -abbs -abbitt -zwagerman -zuercher -zinno -zettler -zeff -zavalza -zaugg -zarzycki -zappulla -zanotti -zachman -zacher -yundt -yslas -younes -yontz -yglesias -yeske -yellow -yeargin -yauger -yamane -xang -wylam -wrobleski -wratchford -worker -woodlee -wolsey -wolfinbarger -wohlenhaus -wittler -wittenmyer -witkop -wishman -wintz -winkelmann -windus -winborn -wims -wiltrout -wilshire -willmott -williston -wilemon -wilbourne -wiedyk -widmann -wickland -wickes -wichert -whitsell -whisenand -whidby -wetz -westmeyer -wertheim -wernert -werle -werkheiser -weng -weldin -weissenborn -weingard -weinfeld -weihl -weightman -weichel -wehrheim -wegrzyn -wegmann -wearing -waszak -wankum -wangler -walthour -waltermire -walstad -waldren -walbert -walawender -wahlund -wahlert -wahlers -wach -vuncannon -vroom -vredenburgh -vonk -vollmar -voisinet -vlahos -viscardi -vires -vipperman -violante -vidro -vessey -vesper -veron -vergari -verbeck -venturino -velastegui -vegter -varas -vanwey -vanvranken -vanvalkenbur -vanorsdale -vanoli -vanochten -vanier -vanevery -vane -vanduser -vandersteen -vandell -vandall -vallot -vallon -vallez -vallely -vadenais -uthe -usery -unga -ultsch -ullom -tyminski -twogood -tursi -turay -tungate -truxillo -trulock -trovato -troise -tripi -trinks -trimboli -trickel -trezise -trefry -treen -trebilcock -travieso -trachtenberg -touhey -tougas -tortorella -tormey -torelli -torborg -toran -tomek -tomassi -tollerson -tolden -toda -tobon -tjelmeland -titmus -tilbury -tietje -thurner -thum -thrope -thornbrough -thibaudeau -thackeray -tesoro -territo -ternes -teich -tecson -teater -teagarden -tatsch -tarallo -tapanes -tanberg -tamm -sylvis -swenor -swedlund -swagger -sutfin -sura -sundt -sundin -summerson -sumatzkuku -sultemeier -sulivan -suggitt -suermann -sturkie -sturgess -stumph -stuemke -struckhoff -strose -stroder -stride -stricklen -strick -streib -strei -strawther -stratis -strahm -stortz -storrer -storino -stohler -stohl -stockel -stinnette -stile -stieber -stensland -steffenhagen -stefanowicz -steever -steagall -statum -stapley -stanish -standiford -standen -stamos -stahlecker -stadtler -spratley -spraker -sposito -spickard -spehar -spees -spearing -spangle -spallone -sox -soulard -sorel -sora -sopko -sood -sonnen -som -solly -solesbee -soldano -sobey -sobczyk -snedegar -sneddon -smolinski -smolik -slota -sloman -sleigh -slavick -skorupski -skolnik -skirvin -skeels -skains -skahan -skaar -siwiec -siverly -siver -sivak -sirk -sinton -sinor -sincell -silberstein -sieminski -sidelinger -shurman -shunnarah -shirer -shidler -sherlin -shepperson -shemanski -sharum -shartrand -shapard -shanafelt -shamp -shader -shackelton -seyer -seroka -sernas -seright -serano -sengupta -semper -selinger -seith -seidler -seehusen -seefried -seed -scovell -scorzelli -sconiers -schwind -schwichtenber -schwerin -schwenke -schwaderer -schussler -schuneman -schumpert -schultheiss -schroll -schroepfer -schroeden -schrimpf -schook -schoof -schomburg -schoenfeldt -schoener -schnoor -schmick -schlereth -schindele -schildt -schildknecht -schemmel -scharfenberg -schanno -schane -schaer -schad -scearce -scardino -sawka -sawinski -savoca -savery -saults -saucer -sarpy -saris -sardinha -sarafin -sankar -sanjurjo -sanderfer -sanagustin -samudio -sammartino -samas -salz -salmen -sallie -salkeld -salamon -sakurai -sakoda -safley -sada -sachse -ryden -ryback -russow -russey -ruprecht -rumple -ruffini -rudzinski -rudel -rudden -rud -rovero -routledge -roussin -rousse -rouser -rougeau -rosie -rosica -romey -romaniello -rolfs -rogoff -rogne -rodriquz -rodrequez -rodin -rocray -rocke -robbin -riviere -rivette -riske -risenhoover -rindfleisch -rinaudo -rimbey -riha -righi -ridner -ridling -riden -rhue -reyome -reynoldson -reusch -rensing -rensch -rennels -renderos -reininger -reiners -reigel -rehmer -regier -reff -reef -redlin -recchia -reaume -reagor -rayne -rawe -rattigan -raska -rashed -ranta -ranft -randlett -randa -ramiez -ramella -rallis -rajan -raisbeck -raimondo -raible -ragone -rackliffe -quirino -quiring -quero -quaife -pyke -purugganan -pursifull -purkett -purdon -punches -pun -pulos -pulling -puccia -provance -propper -preis -prehn -prata -prasek -pranger -pradier -portor -portley -porte -popiel -popescu -pomales -polowy -pollett -politis -polit -poley -pol -pohler -poggio -poet -podolak -poag -plymel -ploeger -planty -piskura -pirrone -pirro -piroso -pinsky -pile -pilant -pickerill -piccolomini -picart -piascik -phann -petruzzelli -petosa -persson -perretta -perkowski -perilli -percifield -perault -peppel -pember -pelotte -pelcher -peixoto -pehl -peatross -pearlstein -peacher -payden -paya -pawelek -pavey -pauda -pathak -parrillo -parness -parlee -paoli -pannebaker -palomar -palo -palmberg -paganelli -paffrath -padovano -padden -pachucki -over -ovando -othman -osowski -osler -osika -orsburn -orlowsky -oregel -oppelt -opfer -opdyke -onell -omer -olivos -okumura -okoro -ogas -offer -oelschlaeger -odette -oder -ocanas -obrion -obarr -oas -oare -nyhus -nyenhuis -nunnelley -nunamaker -nuckels -noyd -nowlan -novakovich -noteboom -norviel -nortz -norment -norland -nolt -nolie -nixson -nitka -nissley -nishiyama -niland -niewiadomski -niemeier -nieland -nickey -nicholsen -newark -neugent -neto -nerren -nein -neikirk -neigh -nedrow -neave -nazaire -navaro -navalta -nasworthy -nasif -nani -nalepa -nakao -nakai -nadolny -myklebust -mussel -murthy -muratore -murat -mundie -mulverhill -muilenburg -muetzel -mudra -mudgett -mrozinski -moura -mottinger -morson -moretto -morentin -mordan -mooreland -mooers -monts -montone -montondo -montiero -monserrate -monie -monat -monares -mollo -mollet -molacek -mokry -mohrmann -mohabir -mogavero -moes -moceri -miyoshi -mitzner -misra -mis -mirr -mira -minish -minge -minckler -milroy -mille -mileski -milanesi -miko -mihok -mihalik -mieczkowski -messerli -meskill -mesenbrink -merton -merryweather -merkl -menser -menner -menk -menden -menapace -melbourne -mekus -meinzer -mein -meers -mctigue -mcquitty -mcpheron -mcmurdie -mcleary -mclafferty -mckinzy -mckibbin -mckethan -mcintee -mcgurl -mceachran -mcdowall -mcdermitt -mccuaig -mccreedy -mccoskey -mcclosky -mcclintick -mccleese -mccanless -mazzucco -mazzocco -mazurkiewicz -mazariego -mayhorn -maxcy -mavity -mauzey -maulding -matuszewski -mattsson -mattke -matsushita -matsuno -matsko -matkin -mathur -mates -masterman -massett -massart -massari -mashni -martella -marren -margotta -marder -marczak -maran -maradiaga -manwarren -mantini -manter -mantelli -manso -mangone -manfredonia -malden -malboeuf -malanga -makara -maison -maisano -mairs -mailhiot -magri -magic -madron -madole -mackall -macduff -macartney -lynds -lusane -luffman -lua -louth -loughmiller -lougheed -lotspeich -lorenzi -loree -loosli -looker -longe -longanecker -lonero -lohmeyer -loeza -lobstein -lobner -lober -littman -litalien -lippe -lints -linear -lijewski -ligas -liebert -liebermann -liberati -lezcano -levinthal -lessor -less -lesieur -lenning -lengel -len -lempke -lemp -lemar -leitzke -leinweber -legrone -lege -leder -lawnicki -lauth -laun -laughary -latin -lassley -lashway -larrivee -largen -lare -lanouette -lanno -langille -langen -landing -lana -lamonte -lalin -lala -laible -lafratta -laforte -lacuesta -lacer -labore -laboe -labeau -kwasniewski -kunselman -kuhr -kuchler -kuc -krugman -kruckenberg -krotzer -kroemer -krist -krigbaum -kreke -kreisman -kreisler -kreft -krasnow -kras -krag -kouyate -kough -kotz -kostura -korner -kornblum -korczynski -koppa -kopczyk -konz -komorowski -kollen -kolander -koepnick -koehne -kochis -knoch -knippers -knaebel -klipp -klinedinst -klimczyk -klier -klement -klaphake -kisler -kinzie -kines -kindley -kimple -kimm -kimbel -kilker -kilborn -kibbey -khong -ketchie -kerbow -kennemore -kennebeck -kenneally -kenndy -kenmore -kemnitz -kemler -kemery -kelnhofer -kellstrom -kellis -kellams -keiter -keirstead -keeny -keelin -keefauver -keams -kautzman -kaus -katayama -kasson -kassim -kasparian -kase -karwoski -kapuscinski -kaneko -kamerling -kamada -kalka -kalar -kakacek -kaczmarczyk -jurica -junes -journell -jolliffe -johnsey -joel -jindra -jimenz -jette -jesperson -jerido -jenrette -jencks -jech -jayroe -jayo -jaye -javens -jaskot -jaros -jaquet -janowiak -jame -jaegers -jackel -izumi -ith -italia -irelan -ion -inzunza -imoto -imme -iglehart -iannone -iannacone -huyler -hussaini -hurlock -hurlbutt -huprich -humphry -hulslander -huelsman -hudelson -hudecek -hsia -hreha -hoyland -howk -housholder -housden -houff -horkey -honan -homme -holtzberg -hollyfield -hollings -hollenbaugh -hokenson -hogrefe -hogland -hoel -hodgkin -hochhalter -hjelle -hittson -hinderman -hinchliffe -hime -hilyer -hilby -hibshman -heydt -hewell -heward -hetu -hestand -heslep -herridge -herner -hernande -hermandez -hermance -herbold -heon -henthorne -henion -henao -heming -helmkamp -hellberg -heidgerken -heichel -hehl -hegedus -hefty -heckathorne -hearron -haymer -haycook -havlicek -hausladen -haseman -hartsook -hartog -harns -harne -harmann -haren -hanserd -hanners -hanekamp -hamra -hamley -hamelin -hamblet -hakimi -hagle -hagin -haehn -haeck -hackleman -haacke -gulan -guirand -guiles -guggemos -guerrieri -guerreiro -guereca -gudiel -guccione -gubler -gruenwald -gritz -grieser -grewe -grenon -gregersen -grefe -greener -grech -grecco -gravette -grassia -granholm -graner -grandi -grahan -gradowski -gradney -graczyk -gouthier -gottschall -goracke -gootee -goodknight -goodine -gonzalea -gonterman -gonalez -gomm -goleman -goldtooth -goldstone -goldey -golan -goes -goen -goeller -goel -goecke -godek -goan -glunz -gloyd -glodowski -glinski -glawe -girod -girdley -giovanni -gindi -gillings -gildner -giger -giesbrecht -gierke -gier -giboney -giaquinto -giannakopoulo -giaimo -giaccio -giacalone -gessel -gerould -gerlt -gerhold -geralds -genson -genereux -gellatly -geigel -gehrig -gehle -geerdes -geagan -gawel -gavina -gauss -gatwood -gathman -gaster -garske -garratt -garms -garis -gansburg -gammell -gambale -gamba -galimore -gadway -gadoury -furrer -furnish -furino -fullard -fukui -fuhrer -fryou -friesner -friedli -friedl -friedberg -freyermuth -fremin -fredell -fraze -franken -fought -foth -fote -fortini -fornea -formanek -forker -forgette -folan -foister -foglesong -flinck -flewellen -flaten -flaig -fitgerald -fischels -firman -finstad -finkelman -finister -finder -fina -fettes -fetterhoff -ferriter -ferch -fennessy -feltus -feltes -feinman -farve -farry -farrall -farag -falzarano -falck -falanga -fakhoury -faire -fairbrother -fagley -faggins -facteau -ewer -ewbank -evola -evener -eustis -eugenio -estwick -estel -essa -espinola -escutia -eschmann -erpelding -ernsberger -erling -entz -enrique -engelhart -enbody -emick -elsinger -ellinwood -ellingsen -ellicott -elkind -eisinger -eisenbeisz -eischen -eimer -eigner -eichhorst -ehmke -egleston -eggett -ege -efurd -edgeworth -eckels -ebey -eberling -eagleton -dwiggins -dweck -dunnings -dunnavant -dumler -duman -dugue -duerksen -dudeck -dreisbach -drawdy -drawbaugh -draine -draggoo -dowse -dovel -doughton -douds -doubrava -dort -dorshorst -dornier -doolen -donavan -dominque -dominion -dominik -domingez -dome -dom -dolder -dold -dobies -dk -diskin -disano -dirden -diponio -dipirro -dimock -diltz -dillabough -diley -dikes -digges -digerolamo -diel -dicker -dicharry -dicecco -dibartolomeo -diamant -dewire -devone -dessecker -dertinger -derousselle -derk -depauw -depalo -denherder -demeyer -demetro -demastus -delvillar -deloye -delosrios -delgreco -delarge -delangel -dejongh -deitsch -degiorgio -degidio -defreese -defoe -decambra -debenedetto -deaderick -daza -dauzat -daughenbaugh -dato -dass -darwish -dantuono -danton -dammeyer -daloia -daleo -dagg -dacey -curts -cuny -cunneen -culverhouse -cuervo -cucinella -cubit -crumm -crudo -crowford -crout -crotteau -crossfield -crooke -crom -critz -cristaldi -crickmore -cribbin -cremeens -crayne -cradduck -couvertier -cottam -cossio -correy -cordrey -coplon -copass -coone -coody -contois -consla -connelley -connard -congo -congleton -condry -conception -coltey -colindres -colgrove -colfer -colasurdo -cocker -cochell -cobbin -clouthier -closs -cloonan -clizbe -clennon -clayburn -claybourn -clausell -clasby -clagett -ciskowski -cirrincione -cinque -cinelli -cimaglia -ciaburri -christiani -christeson -chladek -chizmar -chinnici -chiarella -chevrier -cheves -chernow -cheong -chelton -charlette -chanin -cham -chaligoj -celestino -cayce -cavey -cavaretta -caughron -catmull -catapano -casio -cashaw -carullo -carualho -carthon -cartelli -carruba -carrere -carolus -carmine -carlstrom -carli -carfora -carello -carbary -car -caplette -cannell -cancilla -campell -cammarota -camilo -camejo -camarata -caisse -cacioppo -cabbagestalk -cabatu -cabanas -byles -buxbaum -butland -butch -burrington -burnsed -burningham -burlingham -burgy -buitrago -buffett -bueti -buehring -buday -bucks -bucknell -buchbinder -bucey -bruster -brunston -brumby -bruins -brouillet -brosious -broomes -brodin -broddy -brochard -britsch -britcher -brierley -brezina -bressi -bressette -breslow -brenden -breier -brei -braymer -brasuell -brash -branscomb -branin -brandley -brahler -bracht -bracamontes -brabson -boyne -boxell -bowery -bovard -boutelle -boulette -bottini -botkins -bosen -boscia -boscarino -borich -bores -boreman -bordoy -bordley -bordenet -boquet -boocks -bolner -boissy -boilard -bohnen -bohall -boening -boccia -boccella -bobe -blyth -blitz -blew -blacksmith -biviano -bitto -bisel -binstock -bines -billiter -bigsby -bighorse -bielawski -bickmore -bettin -bettenhausen -besson -beseau -berton -berroa -berntson -bernas -berisford -berhow -bergsma -benyo -benyard -bente -bennion -benko -belsky -bellavance -belasco -belardo -beidler -behring -begnaud -bega -befort -beek -bedore -beddard -becknell -beardslee -beardall -beagan -bayly -bauza -bautz -bausman -baumler -batterson -battenfield -bassford -basse -basemore -baruch -bartholf -bars -barman -baray -barabas -banghart -banez -balsam -ballester -ballagh -baldock -bagnoli -bagheri -bacus -bacho -baccam -axson -averhart -aver -ave -austill -auberry -athans -atcitty -atay -astarita -ascolese -artzer -arts -arrasmith -argenbright -aresco -arb -aranjo -appleyard -appenzeller -app -apilado -antonetti -antis -annett -annas -angwin -andris -andries -andreozzi -ando -andis -anderegg -anastasia -amyot -aminov -amelung -amelio -amason -alviar -allendorf -allday -alice -aldredge -alcivar -alaya -alapai -airington -aina -ailor -ahrns -ahmadi -agresta -agent -affolter -aeschlimann -adney -aderhold -adell -adachi -ackiss -aben -abdelhamid -abar -aase -zorilla -zordan -zollman -zoch -zipfel -zimmerle -zike -ziel -zhong -zens -zelada -zaman -zahner -zadora -zachar -zaborowski -zabinski -yzquierdo -yoshizawa -yori -yielding -yerton -yehl -yeargain -yeakley -yamaoka -yagle -yablonski -wynia -wyne -wyers -wrzesinski -wrye -wriston -woolums -woolen -woodlock -woodle -wonser -wombacher -wollschlager -wollen -wolfley -wolfer -wisse -wisell -wirsing -winstanley -winsley -winiecki -winiarski -winge -winesett -windell -winberry -willyard -willemsen -wilkosz -wilensky -wikle -wiford -wienke -wieneke -wiederhold -wiebold -widick -wickenhauser -whitrock -whisner -whinery -wherley -whedbee -wheadon -whary -wessling -wessells -wenninger -wendroth -wende -wellard -weirick -weinkauf -wehrman -weech -weathersbee -waterford -warton -warncke -warm -wardrip -walstrom -walks -walkowski -walcutt -waight -wai -wagman -waggett -wadford -vowles -vormwald -vondran -vohs -vitt -vitalo -viser -vinas -villena -villaneuva -villafranca -villaflor -vilain -vigilante -vicory -viana -vian -vial -verucchi -verra -venzke -venske -veley -veile -veeder -vaske -vasconez -vargason -varble -vanwert -vantol -vanscooter -vanmetre -vanmaanen -vanhise -vanetta -vaneaton -vandyk -vandriel -vandorp -vandewater -vandervelden -vanderstelt -vanderhoef -vanderbeck -vanbibber -vanalstine -vanacore -valdespino -vaill -vailes -vagliardo -ursini -urrea -urive -uriegas -umphress -ucci -uballe -tyrone -tynon -twiner -tutton -tudela -tuazon -troisi -tripplett -trias -trescott -treichel -tredo -tranter -tozer -toxey -tortorici -tornow -topolski -topia -topel -topalian -tonne -tondre -tola -toepke -tiu -tisdell -tiscareno -thornborrow -thomison -thilges -theuret -therien -thang -thagard -thacher -texter -terzo -teresa -tep -tenpenny -tempesta -teetz -teaff -tavella -taussig -tatton -tasler -tarrence -tardie -tarazon -tantillo -tanney -tankson -tangen -tamburo -takes -tabone -szilagyi -syphers -swistak -swiatkowski -sweigert -swayzer -swapp -svehla -sutphen -sutch -susa -surma -surls -sundermeyer -sundeen -sulek -suite -sughrue -sudol -sturms -stupar -stum -stuckman -strole -strohman -streed -strebeck -strausser -strassel -stpaul -storts -storr -stommes -stmary -stjulien -stika -stiggers -sthill -stevick -sterman -stephany -stepanek -stemler -stelman -stelmack -steinkamp -steinbock -stcroix -stcharles -staudinger -starry -stanly -stallsworth -stalley -stains -srock -spritzer -spracklin -spinuzzi -spidell -spice -speyrer -sperbeck -spendlove -speedy -speckman -spargur -spangenberg -spaid -sowle -soulier -sotolongo -sostre -sorey -sonier -somogyi -somera -solo -soldo -sofia -soderholm -snoots -snooks -snoke -snodderly -snide -snee -smoke -smithhart -smillie -smay -smallman -sliwinski -slentz -sledd -slager -skogen -skog -skarda -skalicky -siwek -sitterson -sisti -sissel -sis -sinopoli -similton -simila -simenson -silvertooth -silos -siggins -sieler -siburt -sianez -shurley -shular -shuecraft -shreeves -shon -shollenberger -shoen -shishido -shipps -shipes -shinall -sherfield -shawe -sharrett -sharrard -shankman -shan -sham -sessum -serviss -servello -serice -serda -semler -semenza -selmon -sellen -seley -seidner -seib -sehgal -seelbach -sedivy -sebren -sebo -seanez -seagroves -seagren -seagrave -seabron -schwertner -schwegel -schwarzer -schrunk -schriefer -schreder -schrank -schopp -schonfeld -schoenwetter -schnall -schnackenberg -schnack -schmutzler -schmierer -schmidgall -schlup -schloemer -schlitt -schermann -scherff -schellenberg -schain -schaedler -schabel -scaccia -saye -saxman -saurez -sasseen -sasnett -sas -sarti -sarra -sarber -saran -santoy -santeramo -sansoucy -sando -sandles -sandburg -sandau -samra -samaha -salon -salizar -salam -saindon -sagaser -saeteun -sadusky -sackman -sabater -saas -ruthven -ruszkowski -rusche -rumpf -ruhter -ruhenkamp -rufo -rudge -ruddle -rowlee -rowand -routhier -rougeot -rotramel -rotan -roswell -rosten -rosillo -rookard -roode -rongstad -rollie -roider -roffe -roettger -rodick -rochez -rochat -roads -rivkin -rivadeneira -riston -risso -rise -rinderknecht -riis -riggsbee -rifkin -rieker -riegle -riedy -richwine -richmon -ricciuti -riccardo -ricardson -rhew -revoir -revier -remsberg -remiszewski -rembold -rella -reinken -reiland -reidel -reichart -rehak -redway -rednour -redifer -redgate -redenbaugh -redburn -reap -readus -raybuck -rauhuff -rauda -ratte -rathje -rappley -rands -ramseyer -ramseur -ramsdale -ramo -ramariz -raitz -raisch -rainone -rahr -ragasa -rafalski -radunz -quenzer -queja -queenan -pyun -puz -putzier -puskas -purrington -puri -punt -pullar -pruse -pring -primeau -prevette -preuett -presto -prestage -pownell -pownall -potthoff -potratz -poth -poter -posthuma -posen -porritt -popkin -poormon -polidoro -poles -polcyn -pokora -poer -pluviose -plock -pleva -placke -pioli -pingleton -pinchback -pinch -pieretti -piccone -piatkowski -philley -phibbs -phay -phagan -pfund -peyer -pettersen -petter -petrucelli -petropoulos -petras -petix -pester -perks -pepperman -pennick -penado -pelot -pelis -peeden -pechon -peal -pazmino -patchin -pasierb -parran -parilla -pardy -parcells -paragas -paradee -papin -panko -pangrazio -pangelinan -pandya -pancheri -panas -palmiter -pallares -palinkas -palek -pagliaro -packham -pacitti -ozier -overbaugh -oursler -ouimette -otteson -otsuka -othon -osmundson -oroz -orgill -ordeneaux -orama -oppy -opheim -onkst -oltmanns -olstad -olofson -ollivier -olen -olejniczak -okura -okuna -okey -ohrt -oharra -oguendo -ogier -offermann -oetzel -oechsle -odor -odoherty -oddi -ockerman -occhiogrosso -obryon -obremski -nyreen -nylund -nylen -nyholm -nuon -nuanes -norrick -noris -nordell -norbury -nooner -nono -nomura -nole -nolden -nola -nofsinger -nocito -nobel -niedbala -niebergall -nicolini -nicole -nicklaus -nevils -neuburger -nemerofsky -nemecek -nazareno -nastri -nast -nancy -nagorski -myre -muzzey -mutton -mutschler -muther -musumeci -muranaka -muramoto -murad -murach -muns -munno -muncrief -mugrage -muecke -mozer -moyet -mowles -mottern -mosman -mosconi -morine -morge -moravec -morad -moneymaker -mones -moncur -monarez -molzahn -moglia -moesch -mody -modisett -mitnick -mithcell -mitchiner -mistry -misercola -mirabile -minvielle -mino -minkler -minifield -minichiello -mindell -minasian -milteer -millwee -millstein -millien -mikrut -mihaly -miggins -michard -mezo -metzner -mesquita -mervin -merriwether -merk -merfeld -mercik -mercadante -mention -menna -mendizabal -mender -members -melusky -melquist -mellado -meler -melendes -mekeel -meiggs -megginson -meck -mcwherter -mcwayne -mcsparren -mcrea -mcneff -mcnease -mcmurrin -mckeag -mchughes -mcguiness -mcgilton -mcelreath -mcelhone -mcelhenney -mceldowney -mccurtain -mccure -mccosker -mccory -mccormic -mccline -mccleave -mcclatchey -mccarney -mccanse -mcallen -mazzie -mazin -mazanec -mayette -mautz -mauser -maun -mattas -mathurin -mathiesen -massmann -masri -masias -mascolo -mascetti -mascagni -marzolf -maruska -martain -marta -marszalek -marolf -marmas -marlor -markwood -marines -marinero -marier -marich -marcom -marciante -marchman -marchio -marbach -manzone -mantey -mannina -manhardt -manfred -manaois -malmgren -mallonee -mallin -mallary -malette -makinson -makins -makarewicz -mainwaring -maida -maiava -magro -magouyrk -magett -maeder -madyun -maduena -maden -madeira -macnamara -mackins -mackel -macinnes -macia -macgowan -lyssy -lyerly -lyalls -lutter -lunney -luksa -ludeman -lucidi -lucci -lowden -lovier -loughridge -losch -lory -lorson -lorenzano -lorden -lorber -lopardo -loosier -loomer -longsdorf -longchamps -loncar -loker -logwood -loeffelholz -lockmiller -livoti -linford -linenberger -lindloff -lindenbaum -limoges -lilla -liley -lighthill -lightbourne -lieske -leza -levels -levandoski -leuck -lepere -leonhart -lenon -lemma -lemler -leising -leinonen -lehtinen -lehan -leetch -leeming -ledyard -ledwith -ledingham -leclere -leck -lebert -leandry -lazzell -layo -laye -laxen -lawther -lawn -lawerance -lavoy -lavertu -laverde -lauren -latouche -latner -lathen -last -laskin -lashbaugh -lascala -larroque -larick -laraia -laplume -lanzilotta -lannom -landrigan -landolt -landess -lancia -lamkins -lalla -lalk -lakeman -lakatos -laib -lahay -lagrave -lagerquist -lafoy -lafleche -lader -labrada -kwiecinski -kutner -kunshier -kulakowski -kujak -kuehnle -kubisiak -krzyminski -krugh -krois -kritikos -krill -kriener -krewson -kretzschmar -kretz -kresse -kreiter -kreischer -krebel -kraut -krans -kraling -krahenbuhl -kouns -kotson -kossow -kopriva -konkle -kolter -kolk -kolich -kohner -koeppen -koenigs -kock -kochanski -kobus -knowling -knouff -knoerzer -knippel -kloberdanz -kleinert -klarich -klaassen -kizzie -kisamore -kirn -kiraly -kipps -kinson -kinneman -kington -kine -kimbriel -kille -kick -kibodeaux -khamvongsa -keylon -kever -keser -kertz -kercheval -kenneth -kendrix -kendle -ken -kempt -kemple -keesey -keats -keatley -kazmierski -kazda -kazarian -kawashima -katsch -kasun -kassner -kassem -kasperski -kasinger -kaschak -karels -kantola -kana -kamai -kalthoff -kalla -kalani -kahrs -kahanek -kacher -jurasek -juniper -jungels -jukes -juelfs -judice -juda -ju -josselyn -jonsson -jonak -joens -jobson -jegede -jee -jeanjacques -jaworowski -jaspers -jannsen -janner -jankowiak -jank -janiak -jackowski -jacklin -jabbour -iyer -iveson -ivan -isner -iniquez -ingwerson -ingber -ina -imbrogno -ille -ikehara -iannelli -hyson -huxford -huseth -hurns -hurney -hurles -hunnings -humbarger -hulan -huisinga -hughett -hughen -hudler -hubiak -hricko -how -hoversten -hottel -hosaka -horsch -hormann -hordge -honzell -homburg -holten -holme -hollopeter -hollinsworth -hollibaugh -holberg -hohmann -hoenstine -hodell -hodde -hobert -hives -hiter -hirko -hipolito -hinzmann -hinrichsen -hinger -hincks -hilz -hilborn -highley -higashi -hieatt -hicken -heverly -hesch -hervert -hershkowitz -herreras -hermanns -herget -henriguez -hennon -hengel -helmlinger -helmig -helen -heldman -heizer -heinitz -heifner -heidorn -heglin -heffler -hebner -heathman -heaslip -hazlip -haymes -hayase -hawver -haw -havermale -havas -hauber -hashim -hasenauer -harvel -hartney -hartel -harsha -harpine -harkrider -harkin -harer -harclerode -hanzely -hanni -hannagan -hampel -hammerschmidt -hamar -hallums -hallin -hainline -haid -haggart -hafen -haer -hadiaris -hadad -hackford -habeeb -guymon -guttery -gunnett -gull -guillette -guiliano -guilbeaux -guiher -guignard -guerry -gude -gucman -guadian -grzybowski -grzelak -grussendorf -grumet -gruenhagen -grudzinski -ground -grossmann -grof -grisso -grisanti -griffitts -griesbaum -grella -gregston -graveline -grandusky -grandinetti -gramm -goynes -gowing -goudie -gosman -gort -gorsline -goralski -goodstein -goodroe -goodlin -goodheart -goodhart -gonzelez -gonthier -goldsworthy -goldade -goettel -goerlitz -goepfert -goehner -goben -gobeille -glock -gliem -gleich -glasson -glascoe -gladwell -giusto -girdner -gipple -giller -giesing -giammona -ghormley -germon -geringer -gergely -gerberich -gepner -gens -genier -gemme -gelsinger -geigle -gebbia -gayner -gavitt -gatrell -gastineau -gasiewski -gascoigne -garro -garin -ganong -ganga -galpin -gallus -galizia -gajda -gahm -gagen -gaffigan -furno -furnia -furgason -fronczak -frishman -friess -frierdich -fresh -freestone -franta -frankovich -fors -forres -forrer -floris -florido -floria -flis -flicek -flens -flegal -flamenco -finkler -finkenbinder -finefrock -filter -filpo -filion -fierman -fieldman -ferreyra -fernendez -fergeson -fera -fencil -feith -feight -federici -federer -fechtner -feagan -fausnaugh -faubert -fata -farman -farinella -fantauzzi -fanara -falso -falardeau -fagnani -fabro -excell -ewton -evey -everetts -eve -evarts -etherington -estremera -estis -estabrooks -essig -esplin -espenschied -ernzen -erich -eppes -eppard -entwisle -emmi -emison -elison -elguezabal -eledge -elbaz -eisler -eiden -eichorst -eichert -egle -eggler -eggimann -edey -eckerman -echelberger -ebbs -ebanks -dziak -dyche -dyce -dusch -duross -durley -durate -dunsworth -dumke -dulek -duhl -duggin -dufford -dudziak -ducrepin -dubree -dubre -dubie -dubas -droste -drisko -drewniak -doxtator -dowtin -downum -doubet -dottle -dosier -doshi -dorst -dorset -dornbusch -doren -donze -donica -domanski -domagala -dohse -doerner -doerfler -doble -dobkins -dilts -digiulio -digaetano -dietzel -diddle -dickel -dezarn -devoy -devoss -devonshire -devon -devilla -devere -deters -desvergnes -deshay -desena -deross -der -depedro -densley -demorest -demore -demora -demirjian -demerchant -dematteis -demateo -delgardo -delfavero -delaurentis -delamar -delacy -deitrich -deisher -degracia -degraaf -defries -defilippis -decoursey -debruin -debiasi -debar -dearden -dealy -dayhoff -davino -darvin -darrisaw -darbyshire -daquino -daprile -danial -danh -danahy -dalsanto -dallavalle -daine -dagel -dadamo -dacy -dacunha -dabadie -czyz -cutsinger -curney -cuppernell -cunliffe -cumby -cullop -cullinane -cugini -cudmore -cuda -cucuzza -cuch -crumby -crouser -crock -critton -critchley -cristy -cremona -cremar -crehan -creary -crasco -crall -crabbe -cozzolino -cozier -coyner -couvillier -counterman -coulthard -coudriet -cottom -corzo -cornutt -corkran -cords -corda -copelin -coonan -consolo -conrow -conran -connerton -conkwright -condren -comp -comly -comisky -colli -collet -colello -colbeck -colarusso -coiner -cohron -codere -cocks -cobia -cly -cluster -clure -clowser -clovis -clingenpeel -clenney -clendaniel -clemenson -cleere -cleckler -claybaugh -clason -cirullo -ciraulo -ciolek -ciampi -christopherse -christophe -chovanec -chopra -chol -chiem -chestnutt -chesterman -chernoff -chermak -chelette -checketts -charpia -charo -chargois -champman -challender -chafins -cerruto -celi -cea -cazenave -cay -cavaluzzi -cauthon -caudy -catino -caterina -catano -castell -cassaro -cassarino -carrano -carozza -carow -carmickle -carlyon -carlew -cardena -caputi -capley -capalbo -canseco -candella -canal -campton -camposano -calleros -calleja -callegari -calica -calarco -calais -caillier -cahue -cadenhead -cadenas -cabera -buzzo -busto -bussmann -busenbark -burzynski -bursley -bursell -burle -burkleo -burkette -burczyk -bumstead -bullett -buikema -buenaventura -buege -buechel -budreau -budhram -bucknam -brye -brushwood -brumbalow -brulotte -bruington -bruderer -browns -brougher -bromfield -broege -brodhead -brocklesby -broadie -brizuela -britz -brisendine -brilla -briggeman -brierton -bridgeford -breyfogle -brevig -breuninger -bresse -bresette -brelsford -breitbach -bread -brayley -braund -branscom -brando -brandner -brahm -braboy -brabble -bozman -boyte -boynes -boyken -bowell -bowan -boutet -bouse -boulet -boule -bottcher -bosquez -borrell -boria -bordes -borchard -bonson -bonino -bonas -bonamico -bolstad -bolser -bollis -bolich -bolf -boker -boileau -bohac -bogucki -bogren -boeger -bodziony -bodo -bodley -boback -blyther -blight -blenker -blazina -blase -blamer -blacknall -blackmond -bitz -biser -biscardi -binz -bilton -billotte -billafuerte -bigford -biegler -bibber -bhandari -beyersdorf -bevelle -bettendorf -bessard -bertsche -berne -berlinger -berish -beranek -bentson -bentsen -benskin -benoy -benoist -benitz -belongia -belmore -belka -belen -beitzel -beiter -beitel -behrns -beckworth -becka -beaudion -beary -beare -beames -beabout -beaber -bazzano -bazinet -baucum -batrez -baswell -bastos -bascomb -bartha -barstad -barrilleaux -barretto -barresi -barona -barkhurst -barke -bardales -barczak -barca -barash -banfill -bambino -balonek -balmes -ballon -balko -balestrieri -baldino -baldelli -baken -baiza -bahner -baek -badour -badman -badley -badia -backmon -bacich -bacca -ayscue -ayo -aynes -austen -ausiello -auringer -auiles -aspinwall -askwith -artiga -arroliga -arns -arman -arellanes -aracena -antwine -antuna -anselmi -ansel -annen -angelino -angeli -angarola -andrae -amparo -amodio -amie -ameen -alwine -alverio -altro -altobello -altemus -alquicira -ally -allphin -allemand -allam -alessio -akpan -akerman -aiona -aikman -agyeman -agredano -adamik -adamczak -acrey -achilles -acevado -abu -abreo -abrahamsen -abild -zwicker -zweig -zuvich -zumpano -zuluaga -zubek -zornes -zoglmann -ziminski -zimbelman -zhanel -zenor -zechman -zauner -zamarron -zaffino -yusuf -ytuarte -yoke -yett -yerkovich -yelder -yaw -yasuda -yapp -yankee -yaden -yackley -yaccarino -xia -wytch -wyre -wussow -worthing -wormwood -wormack -worlds -wordsworth -wordell -woodroof -woodington -woodhams -wooddell -wollner -wojtkowski -wojcicki -wogan -wlodarczyk -wixted -withington -withem -wisler -wirick -winterhalter -winski -winne -winemiller -wimett -wiltfong -willibrand -willes -wilkos -wilbon -wiktor -wiggers -wigg -wiegmann -wickliff -wiberg -whittler -whittenton -whitling -whitledge -whitherspoon -whiters -whitecotton -whitebird -wheary -wetherill -westmark -westaby -wertenberger -wentland -wenstrom -wenker -wellen -weier -wegleitner -wedekind -wawers -wassel -warehime -wank -wandersee -waltmon -waltersheid -walbridge -wakely -wakeham -wajda -waithe -waidelich -wahler -wahington -wagster -wadel -vuyovich -vuolo -vulich -vukovich -volmer -vollrath -vollbrecht -vogelgesang -voeller -vlach -vivar -vitullo -vitanza -visker -visalli -viray -vinning -viniard -villapando -villaman -vier -viar -viall -verstraete -vermilya -verdon -venn -velten -velis -vasey -vanoven -vanorder -vanlue -vanheel -vanderwoude -vanderheide -vandenheuvel -vandenbos -vandeberg -vandal -vanblarcom -vanaken -vanacker -vallian -valine -valent -vaine -vaile -vadner -uttech -urioste -urbanik -unrath -unnasch -underkofler -uehara -udy -tyrer -tyburski -twaddle -turntine -tunis -tullock -trunk -tropp -troilo -tritsch -triola -trigo -tribou -tribley -tri -trethewey -tress -trela -treharne -trefethen -trayler -trax -traut -trang -tranel -trager -traczyk -towsley -torrecillas -tornatore -tork -torivio -toriello -tooles -toodle -tomme -tolosa -tolen -toca -titterington -tipsword -tinklenberg -tim -tigney -tigert -thygerson -thurn -thur -threats -thorstad -thornberg -thoresen -thomaston -tholen -thicke -theiler -thebeau -theaux -thaker -tewani -teufel -tetley -terrebonne -terrano -terpening -telly -tela -teig -teichert -tegethoff -teele -tatar -tashjian -tarte -tanton -tanimoto -tamimi -tamas -talman -taal -szydlowski -szostak -swoyer -swerdlow -sweeden -sweda -swanke -swander -swackhammer -suyama -suriano -suri -surdam -suprenant -sundet -summerton -sult -suleiman -suffridge -suby -stych -studeny -stubbins -strupp -struckman -strief -strictland -stremcha -strehl -stramel -stoy -stoutamire -storozuk -stordahl -stopher -stolley -stolfi -stoeger -stockhausen -stjulian -stivanson -stinton -stinchfield -stigler -stieglitz -stgermaine -steuer -steuber -steuart -stepter -stepnowski -stepanian -steimer -stefanelli -stebner -stears -steans -stayner -staubin -statz -stasik -starn -starmer -stargel -stanzione -stankovich -stan -stamour -staib -stadelman -stadel -stachura -squadrito -sprinkles -springstead -spragg -spigelmyer -spieler -spielberg -spaur -sovocool -sovereign -soundara -soulia -souffrant -sos -sorce -sonkin -sodhi -soble -sniffen -smouse -smittle -smithee -smedick -smaller -slowinski -slovacek -slominski -slice -skowronek -skokan -skanes -sivertson -sinyard -sinka -sinard -simonin -simonian -simmions -silcott -silberg -siefken -siddon -shuttlesworth -shubin -shubeck -shiro -shiraki -shipper -shina -shilt -shikles -shideler -shenton -shelvey -shellito -shelhorse -shawcroft -shatto -shanholtzer -shamonsky -shall -shadden -seymer -seyfarth -sewer -setlock -servant -serratos -serr -sepulueda -senay -semmel -semans -selvig -selkirk -selk -seligson -seldin -seiple -seiersen -seidling -seidensticker -secker -searson -scordo -scollard -scoggan -scobee -sciandra -scialdone -schwimmer -schwieger -schweer -schwanz -schutzenhofer -schuetze -schrodt -schriever -schriber -schremp -schrecongost -schraeder -schonberg -scholtz -scholle -schoettle -schoenemann -schoene -schnitker -schmuhl -schmith -schlotterbeck -schleppenbach -schlee -schickel -schibi -schein -scheide -scheibe -scheib -schaumberg -schardein -schaalma -scantlin -scantlebury -sayle -sausedo -saurer -sassone -sarracino -saric -sanz -santino -santarpia -santano -santaniello -sangha -sandvik -sandoral -sandobal -sandercock -sanantonio -salviejo -salsberry -salois -salazer -sagon -saglibene -sagel -sagal -saetern -saefong -sadiq -sabori -saballos -rygiel -rushlow -runco -rulli -ruller -ruffcorn -ruess -ruebush -rudlong -rudin -rudgers -rudesill -ruderman -rucki -rucinski -rubner -rubinson -rubiano -ruan -roznowski -rozanski -rowson -rower -rounsaville -roudabush -rotundo -rothell -rotchford -rosiles -roshak -rosetti -rosenkranz -rorer -rollyson -rokosz -rojek -roitman -rohrs -rogel -roewe -rodriges -rodocker -rodgerson -rodan -rodak -rocque -rochholz -rochel -robicheau -robbinson -roady -ritchotte -ripplinger -rippetoe -ringstaff -ringenberg -rinard -rigler -rightmire -riesen -riek -ridges -richner -richberg -riback -rial -rhyner -rhees -resse -renno -renee -rendleman -ren -reisz -reisenauer -reinschmidt -reins -reinholt -reinard -reifsnyder -rehfeld -reha -regester -reffitt -redler -rediske -reckner -reckart -rebolloso -rebollar -reasonover -reasner -reaser -reano -reagh -raval -ratterman -ratigan -rater -rasp -raneses -randolf -ramil -ramdas -ramberg -rajaniemi -rail -raid -raggio -ragel -ragain -rade -radaker -racioppi -rabinovich -quickle -quertermous -queal -quartucci -quander -quain -pynes -putzel -purl -pulizzi -pugliares -prusak -prueter -protano -propps -primack -prieur -presta -preister -prawl -pratley -prairie -pozzo -powless -povey -pottorf -pote -postley -porzio -ports -portney -ponzi -pontoriero -ponto -pont -poncedeleon -polimeni -polhamus -pole -polan -poetker -poellnitz -podgurski -plotts -pliego -plaugher -plantenberg -plair -plagmann -pizzitola -pittinger -pitcavage -pischke -piontek -pintar -pinnow -pinneo -pinley -pingel -pinello -pimenta -pillard -piker -pietras -piere -picasso -phillps -pfleger -pfahl -pezzuti -petruccelli -petrello -peteet -pescatore -peruzzi -perusse -perotta -perona -perini -peretti -perelman -perciful -peppin -pennix -pennino -penalosa -pemble -pelz -peltzer -pelphrey -pelote -pellum -pellecchia -pelikan -peitz -peels -pebworth -peary -pawlicki -pavelich -paster -pasquarella -paskey -paseur -paschel -parslow -parrow -parrot -parlow -parlett -parler -pargo -parco -paprocki -panepinto -panebianco -pandy -pandey -pamphile -pamintuan -pamer -paluso -paleo -paker -pagett -paczkowski -ozburn -ovington -overmeyer -ouellet -osterlund -oslin -oseguera -osaki -orrock -ormsbee -orlikowski -organista -oregan -orebaugh -orabuena -openshaw -ontiveroz -ondo -omohundro -ollom -ollivierre -olivencia -oley -olazabal -okino -oki -offenberger -oestmann -ocker -obar -oakeson -nuzum -nurre -nowinski -novosel -norquist -nordlie -noorani -nonnemacher -nolder -njoku -niznik -niwa -niss -ninneman -niner -nimtz -niemczyk -nieder -nicolo -nichlos -niblack -newyear -newtown -newill -newcom -neverson -neuhart -neuenschwande -nestler -nenno -nejman -neiffer -neidlinger -neglia -needs -nearing -nazarian -navor -nary -narayan -nangle -nakama -naish -naik -nadolski -muscato -murphrey -murdick -murchie -muratalla -munnis -mundwiller -muncey -munce -mullenbach -mulhearn -mulcahey -muhammed -muchow -mountford -moudry -mosko -morvay -morrical -morr -moros -mormann -morgen -moredock -morden -mordarski -moravek -morandi -morale -mooradian -montejo -montegut -montan -monsanto -monford -moncus -molinas -molek -mohd -moehrle -moehring -modzeleski -model -modafferi -moala -moake -miyahira -mitani -mischel -minges -minella -mimes -milles -milbrett -milanes -mikolajczyk -mikami -meucci -metler -methven -metge -messmore -messerschmidt -mesrobian -meservey -merseal -menor -menon -menear -melott -melley -melfi -meinhart -megivern -megeath -meester -meeler -meegan -medoff -medler -meckley -meath -mearns -mcquigg -mcpadden -mclure -mckellips -mckeithen -mcglathery -mcginnes -mcghan -mcdonel -mccullom -mccraken -mccrackin -mcconathy -mccloe -mcclaughry -mcclaflin -mccarren -mccaig -mcaulay -mcaffee -mazzuca -maytubby -mayner -maymi -mattiello -matthis -matthees -matthai -mathiason -mastrogiovann -masteller -mashack -marucci -martorana -martiniz -marter -martellaro -marsteller -marris -marrara -maroni -marolda -marocco -maritn -margo -maresh -maready -marchione -marbut -maranan -maragno -mapps -manrriquez -manny -mannis -manni -mangina -manganelli -mancera -mamon -maloch -mallozzi -maller -majchrzak -majano -mainella -mahanna -maertens -madon -macumber -macioce -machuga -machlin -machida -machala -mabra -lynne -lybbert -luvert -lutts -luttrull -lupez -lukehart -ludewig -luchsinger -loyal -lovecchio -louissaint -loughney -lottie -lostroh -lose -lorton -lorette -lopeman -loparo -longs -loner -londo -lombera -lokietek -loiko -lohrenz -lohan -lofties -locklar -lockaby -lobianco -loader -loa -llano -livesey -litster -liter -liske -linsky -linne -lindbeck -limes -licudine -leyua -levie -letterman -leonelli -lenzo -lenze -lents -leitao -leif -leidecker -leibold -lehne -legan -legacy -lefave -leehy -ledue -lecount -lecea -leadley -lazzara -lazcano -lazalde -layer -lavi -lavancha -lavan -lav -laude -latu -latty -lato -larranaga -lapidus -lapenta -langridge -langeveld -langel -lanes -landowski -landgren -landfried -lame -lamattina -lallier -lairmore -lahaie -lagazo -lagan -lafoe -lafluer -laflame -lafevers -lada -lacoss -lachney -labreck -labreche -labay -laa -kwasnik -kuzyk -kutzner -kushnir -kusek -kurtzman -kurian -kulhanek -kuklinski -kuh -kueny -kuczynski -kubitz -kuang -kruschke -krous -krompel -kritz -krimple -kriese -krenzer -kreis -kratzke -krane -krage -kraebel -kozub -kozma -kouri -koudelka -kotcher -kotas -kostic -kosh -kosar -kopko -kopka -kooy -konigsberg -konarski -kolmer -kohlmeyer -kobbe -knoop -knoedler -knocke -knipple -knippenberg -knickrehm -kneisel -kluss -klossner -klipfel -klawiter -klasen -kittles -kissack -kirtland -kirschenmann -kirckof -kiphart -kinstler -kinion -kilton -killman -kiehl -kief -kett -kesling -keske -kerstein -kepple -keneipp -kempson -kempel -kelp -kehm -kehler -keh -keeran -keedy -kebert -keast -kearbey -kawaguchi -kaupu -kauble -katzenbach -kate -katcher -kartes -karpowicz -karpf -karen -karban -kanzler -kanarek -kamper -kaman -kalsow -kalafut -kaeser -kaercher -kaeo -kaeding -jurewicz -julson -jozwick -jollie -johnigan -johll -jochum -jewkes -jestes -jeska -jersey -jereb -jayson -jaurez -jarecki -jansma -janosik -jandris -jamin -jahr -jacot -jabs -ivens -itson -isenhower -iovino -ionescu -ingrum -ingels -inch -imrie -imlay -ihlenfeld -ihde -igou -ibach -huyett -hurry -huppe -hultberg -hullihen -hugi -hueso -huesman -hsiao -hronek -hovde -housewright -houlahan -hougham -houchen -hostler -hoster -hosang -hornik -hornes -horio -honyumptewa -honeyman -honer -hommerding -holsworth -hollobaugh -hollinshead -hollands -hollan -holecek -holdorf -hokes -hogston -hoesly -hodkinson -hodgman -hodgens -hochstedler -hochhauser -hobbie -hoare -hnat -hiss -hiskey -hirschy -hinostroza -hink -hing -hillmer -hillian -hillerman -hietala -hierro -hickling -hickingbottom -heye -heubusch -hesselschward -herriot -hernon -hermida -hermans -hentschel -henningson -henneke -henk -heninger -heltsley -helmle -helminiak -helmes -hellner -hellmuth -helke -heitmeyer -heird -heinle -heinicke -heinandez -heimsoth -heimlich -heibel -hegyi -heggan -hefel -heeralall -hedrington -heacox -hazlegrove -hazelett -haymore -havenhill -hautala -hascall -harvie -hartrick -hartling -harrer -harles -hargenrader -hanshew -hanly -hankla -hanisch -hancox -hammann -hambelton -halseth -hallisey -halleck -hallas -haisley -hairr -hainey -hainer -hailstock -haertel -guzek -guyett -guster -gussler -gurwitz -gurka -gunsolus -guinane -guiden -gugliotti -guevin -guevarra -guerard -gudaitis -guadeloupe -gschwind -grupe -grumbach -gruenes -gruenberg -grosser -grom -grodski -groden -grizzel -gritten -griswald -grishaber -grinage -grimwood -grims -griffon -griffies -gribben -grew -gressley -gren -greenstreet -grealish -gravett -grantz -granfield -granade -gowell -gossom -gorsky -goring -goodnow -goodfriend -goodemote -golob -gollnick -golladay -goldwyn -goldsboro -golds -goldrick -gohring -gohn -goettsch -goertzen -goelz -godinho -goans -glumac -gleisner -gleen -glassner -glanzer -gladue -gjelaj -givhan -girty -girone -girgenti -giorgianni -gilpatric -gillihan -gillet -gilbar -gierut -gierhart -gibert -gianotti -giannetto -gianelli -giambanco -gharing -geurts -gettis -gettel -gest -germani -gerdis -gerbitz -geppert -gennings -gemmer -gelvin -gellert -gehler -geddings -gearon -geach -gazaille -gayheart -gauld -gaukel -gaudio -gato -gathing -gasque -garstka -garsee -garringer -garofano -garo -garnsey -garigen -garcias -garbe -ganoung -ganfield -ganaway -gamero -galuska -galster -gallacher -galinski -galimi -galik -galeazzi -galdo -galdames -galas -galanis -gaglio -gaff -gaeddert -gadapee -fussner -furukawa -fuhs -fuerte -fuerstenberg -fryrear -fruits -froese -fringer -frieson -friesenhahn -frieler -friede -freymuth -freyman -freudenberg -freman -fredricksen -frech -frasch -frantum -frankin -franca -frago -fragnoli -fouquet -fossen -foskett -forner -formosa -formisano -forget -fooks -fons -folino -flott -floor -flesch -flener -flemmons -flattery -flanagin -flamino -flamand -fitzerald -findling -filsinger -fillyaw -fillinger -fiechter -ferre -ferdon -feldkamp -fazzio -favia -faulconer -faughnan -faubel -fassler -faso -farrey -farrare -farnworth -farland -fairrow -faille -faherty -fagnant -fabula -fabbri -eylicio -esteve -estala -espericueta -escajeda -erlich -equia -epson -enrriquez -enomoto -enmon -engemann -emmerson -emmel -emler -emilio -elstad -ellwein -ellerson -eliott -eliassen -elchert -eisenbeis -eisel -eikenberry -eichholz -ehmer -edris -edgerson -echenique -eberley -eans -dziuk -dykhouse -dworak -dutt -dupas -duntz -dunshee -dunovant -dunnaway -dummermuth -duerson -duddy -ducotey -duchon -duchesneau -ducci -dubord -duberry -dubach -drummonds -droege -drish -drier -drexel -dresch -dresbach -drenner -drechsler -dowen -dotter -dosreis -doser -dorward -dorin -dorf -door -domeier -doler -doleman -dolbow -dolbin -dobrunz -dobransky -dobberstein -dlouhy -diosdado -dingmann -dimmer -dimarino -dimaria -dilly -dillenburg -dilaura -dieken -dickhaus -dibbles -dibben -diamante -dewilde -dewaard -devich -devenney -devaux -dettinger -desroberts -dershem -dersch -derita -derickson -depina -deorio -deoliveira -denzler -dentremont -denoble -demshar -demond -demint -demichele -demel -delzer -delval -delorbe -delli -delbridge -delanoy -delancy -delahoya -dekle -deitrick -deis -dehnert -degrate -defrance -deetz -deeg -decoster -decena -dearment -daughety -datt -darrough -danzer -dante -danielovich -dandurand -dancause -dalo -dalgleish -daisley -daft -dadlani -daddona -daddio -dacpano -cyprian -cutillo -cush -curz -curvin -cuna -cumber -cullom -cudworth -cubas -crysler -cryderman -crummey -crumbly -crookshanks -croes -criscione -crimes -crespi -cresci -creaser -craton -cramp -cradle -cowin -cowdrey -coutcher -cotterman -cosselman -cosgriff -cortner -corsini -corporan -corniel -cornick -cordts -cordial -copening -coolman -connick -conlisk -conelli -common -comito -colten -colling -colletta -coldivar -colclasure -colantuono -colaizzi -coggeshall -cockman -cockfield -cobourn -cobo -cobarrubias -clyatt -cloney -clonch -climes -cleckner -clearo -claybourne -clavin -claridge -claffey -ciufo -cisnero -cipollone -cieslik -ciejka -cichocki -cicchetti -cianflone -chrusciel -christesen -chmielowiec -chirino -chillis -chihuahua -chhoun -chevas -chehab -chaviano -chavaria -chasten -charbonnet -chanley -champoux -champa -chalifoux -cerio -cedotal -cech -cavett -cavendish -catoire -castronovo -castellucci -castellow -castaner -casso -cassels -cassatt -cassar -cashon -cartright -carros -carrisalez -carrig -carrejo -carnicelli -carnett -carlise -carline -carhart -caren -cardova -cardell -carchi -caram -caquias -capper -capizzi -capano -cannedy -campese -calvello -callon -callins -callies -callicutt -calix -calin -califf -calderaro -caldeira -cadriel -cadmus -cadman -caccamise -buys -buttermore -butay -bustamente -busa -burmester -burkard -burhans -burgert -bure -burdin -bullman -bulin -buelna -buehner -budin -buco -buckhanon -bryars -brutger -brus -brumitt -brum -bruer -brucato -broyhill -broy -brownrigg -brownie -brossart -brookings -broden -brocklehurst -brockert -bristo -briskey -brisbane -bringle -bries -briar -bressman -bren -branyan -brands -bramson -brammell -brallier -bozich -boysel -bowthorpe -bowron -bowin -boutilier -boulos -boullion -boughter -bottiglieri -borruso -borrow -borreggine -borns -borkoski -borghese -borenstein -boran -bora -booton -bonvillain -bonini -bong -bonello -bolls -boitnott -boike -bohnet -bohnenkamp -bohmer -boeson -boeneke -bodey -bocchino -bobrowski -bobic -bluestein -bloomingdale -blogg -blewitt -blenman -bleck -blaszak -blankenbeckle -blando -blanchfield -blancato -blalack -blakenship -blackett -bisping -birkner -birckhead -bingle -bineau -billiel -bigness -bies -bierer -bhalla -beyerlein -bew -betesh -besler -berzins -bertalan -berntsen -berna -bergo -berganza -bennis -benney -benkert -benjamen -benincasa -bengochia -bendle -bendana -benchoff -benbrook -belsito -belshaw -belinsky -belak -bela -beigert -beidleman -behen -befus -beel -beebee -bedonie -beckstrand -beckerle -beato -bears -bauguess -baughan -bauerle -battis -batis -bastone -bastille -bassetti -bashor -bary -bartunek -bartoletti -barro -barno -barnicle -barlage -barkus -barkdull -bari -barcellos -barbarino -baranski -baranick -bankert -banchero -ban -bambrick -bamberg -bambenek -balthrop -balmaceda -ballman -balistrieri -balcomb -balboni -balbi -bakshi -bagner -bagent -badasci -bacot -bache -babu -babione -babic -babers -babbs -awkward -avitabile -avers -avena -avance -ausley -auker -audas -aud -aubut -athearn -atcheson -astorino -asplund -aslanian -askari -ashmead -asby -asai -arterbury -artalejo -arqueta -arquero -arostegui -arnell -armeli -arista -arender -arca -arballo -aprea -applen -applegarth -apfel -antonello -antolin -antkowiak -angis -angione -angerman -angelilli -andujo -andrick -anderberg -amigon -ambers -amalfitano -alviso -alvez -altice -altes -almarez -allton -allston -allgeyer -allegretti -aliaga -algood -alberg -albarez -albaladejo -akre -aitkin -ahles -ahlberg -agnello -adrien -adinolfi -adamis -abramek -abolt -abitong -zurich -zurawski -zufall -zubke -zizzo -zipperer -zinner -zinda -ziller -zill -zevallos -zesati -zenzen -zentner -zellmann -zelinsky -zboral -zarcone -zapalac -zaldana -zakes -zaker -zahniser -zacherl -zabawa -zabaneh -yum -youse -youree -younis -yorty -yonce -yero -yerkey -yeck -yeargan -yauch -yashinski -yambo -xiang -wrinn -wrightsman -worton -wortley -worland -woolworth -woolfrey -woodhead -woltjer -wolfenden -wolden -wolchesky -wojick -woessner -witwer -witters -witchard -wissler -wisnieski -wisinski -winnike -winkowski -winkels -wingenter -wineman -winegardner -wimpy -wilridge -wilmont -willy -willians -williamsen -wilhide -wilhelmsen -wilhelmi -wildrick -wilden -wiland -wiker -wigglesworth -wiebusch -widdowson -wiant -wiacek -whittet -whitter -whitelock -whiteis -whiley -westrope -westpfahl -westin -wessman -wessinger -wesemann -wesby -wertheimer -weppler -wenke -wengler -wender -welp -weitzner -weissberg -weisenborn -weipert -weiman -weidmann -wehrsig -wehrenberg -weemes -weeman -wayner -waston -wasicek -wascom -wasco -warmath -warbritton -waltner -wallenstein -waldoch -waldal -wala -waide -wadlinger -wadhams -vullo -voorheis -vonbargen -volner -vollstedt -vollman -vold -voge -vittorio -virtue -virginia -violett -viney -vinciguerra -vinal -villata -villarrvel -vilanova -vigor -vigneault -view -vielma -veyna -vessella -versteegh -verderber -venier -venice -venditti -velotta -vejarano -veil -vecchia -vecchi -vastine -vasguez -varella -vanry -vannah -vanhyning -vanhuss -vanhoff -vanhoesen -vandivort -vandevender -vanderlip -vanderkooi -vandebrink -vancott -vallien -vallas -vallandingham -valiquette -valasek -vahey -vagott -uyematsu -urbani -uran -upp -uno -union -umbach -udo -tyon -tyma -twyford -twombley -twohig -tutterrow -turnes -turkington -turchi -tunks -tumey -tumbaga -tuinstra -tsukamoto -tschetter -trussel -trubey -trovillion -troth -trostel -tron -trinka -trine -tribbey -triarsi -trevor -treto -trautz -tragesser -tooman -toolson -tonozzi -tomkiewicz -tomb -tomasso -tolin -tolfree -toelle -tisor -tiry -tinstman -timmermann -tillie -tickner -tiburcio -thunberg -thronton -thompsom -theil -thayne -thaggard -teschner -tensley -tenery -tempest -tellman -tellado -telep -teigen -teator -teall -tayag -tavis -tattersall -tassoni -tarshis -tappin -tappe -tansley -talone -talford -tainter -taha -taguchi -tacheny -tabak -szymczyk -szwaja -szopinski -sze -syvertsen -swogger -switcher -swist -swilling -swierczek -swiech -swickard -swiatek -swezey -swepson -sweezy -swaringen -swanagan -swailes -swade -sveum -svenningsen -svec -suttie -supry -sunga -summerhill -summars -sulit -stys -stutesman -stupak -stumpo -stuller -stuekerjuerge -stuckett -stuckel -stuchlik -stuard -strutton -strop -stromski -stroebel -strehlow -strause -strano -straney -stradling -stoyle -stormo -stopyra -stoots -stoop -stonis -stoltenburg -stoiber -stoessel -stitzer -stien -stichter -stezzi -stewert -stepler -steinkraus -stegemann -steeples -steenburg -steeley -staszak -stasko -starkson -stanwick -stanke -stanifer -stangel -stain -stai -squiers -sprout -springsteen -spraglin -spragins -spraberry -spoelstra -spisak -spirko -spille -spidel -speyer -speroni -spenst -speak -spartz -sparlin -sparacio -spaman -spainhower -sow -souers -souchet -sosbee -sorn -sorice -sorbo -soqui -somer -solon -soehl -sodergren -socorro -sobie -smucker -smsith -smoley -smolensky -smolenski -smolder -smethers -slusar -slowey -slonski -slemmons -slatkin -slates -slappy -slaney -slagter -slacum -skutnik -skrzypek -skibbe -sjostrom -sjoquist -sivret -sitko -sisca -sinnett -sineath -simoni -simar -simao -silvestro -silleman -silkwood -silha -silfies -silberhorn -silacci -sigrist -sieczkowski -sieczka -shure -shulz -shugrue -shrode -shown -shovlin -shortell -shonka -shiyou -shiraishi -shiplett -sheu -shermer -sherick -sheng -sheeks -shed -sharron -shantz -shakir -shaheed -shadoan -shadid -shackford -shabot -seung -seufert -setty -setters -servis -server -serres -serrell -serpico -serpas -serafine -sensenig -senft -semenec -semen -semas -semaan -selvera -sellmeyer -sek -segar -seever -seeney -seeliger -seehafer -seebach -sebben -seaward -seary -searl -searby -scotland -scordino -scolieri -scolaro -schwiebert -schwartze -schwaner -schuur -schupbach -schumacker -schum -schudel -schubbe -schroader -schramel -schollmeyer -schoenherr -schoeffler -schoeder -schnurr -schnorr -schneeman -schnake -schnaible -schmaus -schlotter -schinke -schimming -schimek -schikora -scheulen -scherping -schermer -scherb -schember -schellhase -schedler -schanck -schaffhauser -schaffert -schadler -scarola -scarfo -scarff -scantling -scaff -sayward -sayas -saxbury -savin -savel -savastano -savannah -sault -satre -sarkar -santellan -sandmeier -sampica -salvesen -saltis -salloum -salling -salce -salatino -salata -salamy -safe -sadowsky -sadlier -sabbatini -sabatelli -sabal -sabados -rydzewski -rybka -rybczyk -ruz -rusconi -rupright -rufino -ruffalo -rudiger -rudig -ruda -rubyor -royea -roxberry -rover -rouzer -roumeliotis -roston -rossmann -rosko -rosetta -rosene -rosenbluth -roseland -rosasco -rosano -rosal -rorabaugh -romie -romaro -rolstad -rollow -rohrich -roghair -rogala -roets -roen -roemmich -roelfs -roeker -roedl -roedel -rodeheaver -roddenberry -rockstad -rocchi -robirds -robben -robasciotti -robaina -rizzotto -rizzio -rittle -ritcher -rissman -riseden -ripa -rion -rintharamy -rinehimer -rinck -riling -rike -rietschlin -riesenberg -riemenschneid -rieland -rickenbaugh -rickenbach -riches -rhody -revells -reutter -respress -resnik -renton -remmel -reitmeyer -reitan -reister -reinstein -reino -reinkemeyer -reifschneider -reierson -reichle -rehmeier -rehl -regine -reeds -rede -records -recar -rebeiro -raybourn -rawl -rautio -raugust -raudenbush -raudales -rattan -rashad -rapuano -rapoport -rantanen -ransbottom -raner -ramkissoon -rambousek -raio -rainford -radakovich -rad -rabenhorst -quivers -quispe -quintin -quinoes -quince -quilici -quattrone -quates -quance -quale -purswell -purpora -pulera -pulcher -puckhaber -pryer -pruyne -pruit -prudencio -prows -protzman -prothero -prospero -prosperi -prospal -privott -pritchet -priem -prest -prell -preer -pree -preddy -preda -pravata -pradhan -potocki -postier -postema -posse -posadas -poremba -popper -popichak -ponti -pomrenke -pomponi -pomarico -pollok -polkinghorn -polino -pock -plough -plenty -plater -plagman -pipher -pinzone -pinkleton -pillette -pillers -pill -pilapil -pignone -pignatelli -piersol -piepho -picton -pickrel -picket -pichard -picchi -piatek -pharo -phanthanouvon -pettingill -pettinato -petrovits -pethtel -petersheim -pershing -perrez -perra -pergram -peretz -perego -perches -pennello -pennella -pennant -pendry -penaz -pellish -peeks -pecanty -peare -paysour -pavlovich -pavick -pavelko -paustian -patzer -patsy -patete -patadia -paszkiewicz -pase -pasculli -pascascio -parrotte -parlor -parajon -paparo -papandrea -paone -pantaleon -panning -paniccia -pancho -panarello -palmeter -pallan -palardy -pahmeier -padget -padel -oyster -oya -oxborrow -oveson -outwater -ottaway -otake -ostermeyer -osmer -osinski -osiecki -oroak -orndoff -orms -orkin -oregon -ordiway -opatz -onsurez -onishi -oliger -okubo -okoye -ohlmann -offord -offner -offerdahl -oesterle -oesch -odonnel -odeh -odebralski -obie -obermeier -oberhausen -obenshain -obenchain -oats -nute -nulty -norrington -norlin -nore -nordling -nordhoff -norder -nordan -norals -nogales -noboa -nitsche -niermann -nienhaus -niedringhaus -niedbalski -nicolella -nicolais -nickleberry -nicewander -newfield -neurohr -neumeier -netterville -nersesian -nern -nerio -nerby -nerbonne -neitz -neighbours -neighbor -neidecker -neat -neason -nead -navratil -naves -nastase -nasir -nasca -narine -narimatsu -nard -narayanan -nappo -namm -nalbone -nakonechny -nabarro -myott -muthler -muscatello -murriel -murin -murders -muoio -mundel -munafo -mulch -mukherjee -muffoletto -muessig -muckey -mucher -mruk -moyd -mowell -mowatt -moutray -mourning -mou -motzer -moster -mortis -morgenroth -morga -morataya -montross -montezuma -monterroza -montemarano -montello -montbriand -montavon -montaque -monigold -monforte -molgard -moleski -mohsin -mohead -mofield -moerbe -moeder -mochizuki -miyazaki -miyasaki -mital -miskin -mischler -minus -minniear -minero -milosevic -mildenhall -mila -mikhail -mielsch -midden -michonski -michniak -michitsch -michelotti -micheli -michelfelder -michand -miao -metelus -merkt -merando -meranda -mentz -meneley -menaker -memory -melino -meir -mehaffy -meehl -meech -meczywor -mcweeney -mcumber -mcredmond -mcneer -mcnay -mcmikle -mcmaken -mclaurine -mclauglin -mclaney -mckune -mckinnies -mckague -mchattie -mcgrapth -mcglothen -mcgath -mcfolley -mcdannell -mccurty -mccort -mcclymonds -mcclimon -mcclamy -mccaughan -mccartan -mccan -mccadden -mcburnie -mcburnett -mcbryar -mcannally -mcalevy -mcaleese -maytorena -mayrant -mayol -mayland -mayeaux -mauter -matthewson -mathiew -matern -matera -maslow -mashore -masaki -maruco -martorell -martenez -marry -marrujo -marrison -maroun -markway -markos -markoff -markman -marian -marello -marbry -marban -maranda -maphis -manuele -mansel -manganello -mandrell -mandoza -manard -manago -maltba -mallick -mallak -maline -malikowski -majure -majcher -maise -mahl -maffit -maffeo -madueno -madlem -madariaga -macvane -mackler -macconnell -macchi -maccarone -lyng -lynchard -lura -lunning -luneau -lunden -lumbra -lumbert -lueth -ludington -luckado -lucchini -lucatero -luallen -lozeau -lowen -lovera -lovelock -louck -lothian -lorio -lorimer -lorge -loretto -longhenry -lonas -loiseau -lohrman -logel -loft -locks -lockie -llerena -livington -liuzzi -liscomb -lippeatt -liou -linhardt -lindelof -lindbo -limehouse -limage -lillo -lillian -lilburn -liggons -lidster -liddy -liddick -lich -liberato -lian -lia -leysath -lewelling -lesney -leser -lescano -leonette -lentsch -lenius -lemmo -lemming -lemcke -lein -leggette -legerski -legard -leever -leete -ledin -lecomte -lecocq -leakes -leab -lazarz -layous -lawrey -lawery -lauze -lautz -laughinghouse -latulippe -lattus -lattanzio -later -lascano -larmer -laris -larcher -laprise -lapin -lapage -lano -langseth -langman -langland -landstrom -landsberg -landsaw -landram -lamphier -lamendola -lamberty -lakhani -laker -lajara -lagrow -lagman -ladewig -laderman -ladden -lacrue -laclaire -lachut -lachner -kwit -kvamme -kvam -kutscher -kushi -kurgan -kunsch -kundert -kun -kulju -kukene -kudo -kubin -kubes -kuberski -krystofiak -kruppa -krul -krukowski -kruegel -kronemeyer -krock -kriston -kretzer -krenn -kralik -krafft -krabill -kozisek -kovich -koverman -kovatch -kovarik -kotlowski -kosmala -kosky -kosir -kosa -korpi -kornbluth -koppen -kooistra -kohlhepp -kofahl -koeneman -koebel -koczur -kobrin -kobashigawa -koba -knuteson -knoff -knoble -knipper -knierim -kneisley -klusman -kloc -klitzing -klinko -klinefelter -klemetson -kleinpeter -klauser -klatte -klaren -klare -kissam -kirkhart -kirchmeier -kinzinger -kindt -kincy -kincey -kimoto -killingworth -kilcullen -kilbury -kietzman -kienle -kiedrowski -kidane -khamo -khalili -ketterling -ketchem -kessenich -kessell -kepp -kenon -kenning -kennady -kendzior -kemppainen -kellermann -keirns -keilen -keiffer -kehew -keelan -keawe -keator -kealy -keady -kathman -kastler -kastanes -kassab -karren -karpin -karau -karathanasis -kara -kaps -kaplun -kapaun -kannenberg -kanipe -kander -kandel -kanas -kanan -kamke -kaltenbach -kallenberger -kallam -kali -kaley -kafton -kafer -kabler -kaaihue -jupiter -jundt -jubilee -jovanovich -jojola -johnstad -jodon -joachin -jinright -jew -jessick -jeronimo -jerald -jenne -jelsma -jeannotte -jeangilles -jaworsky -jaubert -jarry -jarrette -jarreau -jarett -janos -janecka -janczak -jalomo -jagoda -jagla -jacquier -jaber -iwata -ivanoff -isola -iserman -isais -isaacks -iron -inverso -infinger -ibsen -hyser -hylan -hybarger -hwee -hutchenson -hutchcroft -husar -hurlebaus -hunsley -hunker -hummingbird -humberson -hulst -hulon -huhtala -hugill -hugghins -huffmaster -huckeba -hrabovsky -howden -hoverson -houts -houskeeper -housh -hosten -horras -horchler -hor -hopke -hooke -honie -holtsoi -holsomback -holoway -holmstead -hoistion -hohnstein -hoheisel -hoguet -hoggle -hogenson -hoffstetter -hoffler -hoffa -hofe -hoefling -hoague -hizer -hirschfield -hironaka -hiraldo -hinote -hingston -hind -hinaman -hillie -hillesheim -hilderman -hiestand -heyser -heys -hews -hew -hertler -herrero -herrandez -heppe -henle -henkensiefken -henigan -henandez -henagan -hemberger -heman -helser -helmich -hellinger -helfrick -heldenbrand -heinonen -heineck -heikes -heidkamp -heglar -heffren -heelan -hedgebeth -heckmann -heckaman -hechmer -hazelhurst -hawken -haverkamp -havatone -hausauer -hasch -harwick -hartse -harts -harrower -harle -hargroder -hardway -hardinger -hardemon -harbeck -hant -hamre -hamberg -hallback -haisten -hailstone -hahl -hagner -hagman -hagemeyer -haeussler -hackwell -haby -haataja -gverrero -gustovich -gustave -guske -gushee -gurski -gurnett -gura -gunto -gunselman -gugler -gudmundson -gudinas -guarneri -grumbine -gruis -grotz -grosskopf -grosman -grosbier -grinter -grilley -grieger -grewal -gressler -greaser -graus -grasman -graser -grannan -granath -gramer -graboski -goyne -gowler -gottwald -gottesman -goshay -gorr -gorovitz -gores -goossens -goodier -goodhue -gonzeles -gonzalos -gonnella -golomb -golick -golembiewski -goeke -godzik -goar -glosser -glendenning -glendening -glatter -glas -gittings -gitter -gisin -giscombe -gimlin -gillitzer -gillick -gilliand -gilb -gigler -gidden -gibeau -gibble -gianunzio -giannattasio -gertelman -gerosa -gerold -gerland -gerig -gerecke -gerbino -genz -genovesi -genet -gelrud -geitgey -geiszler -gehrlein -gazzo -gawrys -gavilanes -gaulden -gate -garthwaite -garmoe -gargis -gara -gannett -galligher -galler -galleher -gallahan -galford -gal -gahn -gacek -gabert -fuster -furuya -furse -fujihara -fuhriman -fruit -frueh -fromme -from -froemming -friskney -frietas -freiler -freelove -freber -frear -frankl -frankenfield -franey -francke -foxworthy -formella -foringer -forgue -forge -fonnesbeck -fonceca -folland -fodera -fode -floresca -fleurent -fleshner -flentge -fleischhacker -fleeger -flecher -flam -flair -flaim -fivecoat -firebaugh -fioretti -finucane -filley -figuroa -figuerda -fiddelke -feurtado -fetterly -fessel -femia -feild -fehling -fegett -fedde -fechter -fawver -faustino -faulhaber -fatchett -fassnacht -fashaw -fasel -farrugia -farran -farness -farhart -farbman -fama -falwell -falvo -falling -falkenstein -falin -failor -faigin -fagundo -fague -fagnan -fagerstrom -faden -eytchison -eyles -ewy -evon -everage -evangelist -estrin -estorga -esponda -espindola -escher -esche -escarsega -escandon -erven -erding -eplin -enix -englade -engdahl -enck -emmette -embery -emberson -eltzroth -else -elsayed -ellerby -ellens -elhard -elfers -elazegui -eisermann -eilertson -eiben -ehrhard -ehresman -egolf -egnew -eggins -efron -effland -eduardo -edminster -edgeston -ede -eckstrom -eckhard -eckford -echoles -ebsen -eatherly -eastlick -earnheart -ear -dykhuizen -dyas -duttweiler -dutka -dutch -dusenbury -dusenbery -durre -durnil -durnell -durie -durhan -durando -dupriest -dunsmoor -dunseith -dunnum -dunman -dunlevy -duma -dulude -dulong -duignan -dugar -dufek -ducos -duchaine -duch -dubow -drowne -dross -drollinger -droke -driggars -dredge -drawhorn -drach -drabek -doyne -doukas -dorvil -dorow -doroski -dornak -dormer -dorian -donnelson -donna -donn -donivan -dondero -dompe -dolle -doakes -diza -dixie -divirgilio -ditore -distel -disimone -disbro -dipiero -dingson -diluzio -dillehay -dilbert -digiorgio -diflorio -dietzler -dietsch -dieterle -dierolf -dierker -dicostanzo -dicesare -dexheimer -dewitte -dewing -devoti -devincentis -devary -deutschman -dettloff -detienne -destasio -dest -despard -desmet -deslatte -desfosses -derise -derenzo -deppner -depolo -denoyer -denoon -denno -denne -deniston -denike -denes -demoya -demick -demicco -demetriou -demange -delva -delorge -delley -delisio -delhoyo -delgrande -delgatto -delcour -delair -deinert -degruy -degrave -degeyter -defino -deffenbaugh -deener -decook -decant -deboe -deblanc -deatley -dearmitt -deale -deaguiar -dayan -daus -dauberman -datz -dase -dary -dartt -darocha -dario -dari -dardis -dapper -danowski -dancel -dami -dallmann -dalere -dalba -dakan -daise -dailing -dahan -dagnan -daggs -dagan -czarkowski -czaplinski -cutten -curtice -curenton -cure -curboy -cura -culliton -culberth -cucchiara -cubbison -csaszar -crytser -crotzer -crossgrove -crosser -croshaw -croissant -crocco -critzer -creveling -cressy -creps -creese -cratic -crate -craigo -craigen -craib -cracchiolo -crable -coykendall -cowick -coville -couzens -coutch -cousens -cousain -counselman -coult -cotterell -cott -cotham -corsaut -corriere -corredor -cornet -cornelia -corkum -coreas -cordoza -corbet -corathers -conwill -contreas -consuegra -constanza -conolly -conedy -companion -comins -combee -colosi -colom -colmenares -collymore -colleran -colina -colaw -colatruglio -colantro -colantonio -cohea -cogill -codner -code -codding -cockram -cocanougher -cobine -cluckey -clucas -cloward -cloke -clisham -clipper -clinebell -cliffe -clendenen -cisowski -cirelli -ciraolo -ciocca -cintora -ciesco -cibrian -chupka -chugg -christmann -choma -chiverton -chirinos -chinen -chimenti -chima -cheuvront -chesla -chesher -chesebro -chern -chehebar -cheatum -chastine -chapnick -chapelle -chambley -cercy -celius -celano -cayea -cavicchi -cattell -catanach -catacutan -castelluccio -castellani -cassmeyer -cassetta -cassada -caspi -cashmore -casebier -casanas -carrothers -carrizal -carriveau -carretero -carradine -carosella -carnine -carmel -carloni -carkhuff -cardosi -cardo -carchidi -caravello -caranza -carandang -capes -cantrall -canpos -canoy -cannizzaro -canion -canida -canham -cangemi -cange -candle -cancelliere -canard -camarda -calverley -calogero -callendar -calame -cadrette -cachero -caccavale -cabreros -cabrero -cabrara -cabler -butzer -butte -butrick -butala -bustios -busser -busic -bushorn -busher -burmaster -burl -burkland -burkins -burkert -burgueno -burgraff -buren -burel -burdon -burck -burby -buoy -bunk -bumford -bulock -bujnowski -buggie -buffy -budine -bucciero -bubier -brzoska -brydges -brumlow -brosseau -brooksher -brokke -broeker -brittin -bristle -briano -briand -brettschneide -bresnan -brentson -brenneis -brender -brazle -brassil -brasington -branstrom -branon -branker -brandwein -brandau -brana -bralley -brailey -brague -brade -bozzi -bownds -bowmer -bournes -bour -bouchey -botto -boteler -borroel -borra -boroski -boothroyd -boord -bonny -bonga -bonato -bonadonna -bolejack -boldman -boiser -boggio -bogacki -boerboom -boehnlein -boehle -bodah -bobst -boak -bluemel -blockmon -blitch -blincoe -bleier -blaydes -blasius -bittel -bir -binsfeld -bindel -bilotti -billiott -bilbrew -bihm -biersner -bielat -bidrowski -bickler -biasi -bianca -bhola -bhat -bewick -betzen -bettridge -betti -betsch -besley -beshero -besa -bertoli -berstein -berrien -berrie -berrell -bermel -berenguer -benzer -bensing -bennie -benedix -bemo -belile -beilman -behunin -behrmann -bedient -becht -beaule -beaudreault -bealle -beagley -bayuk -bayot -bayliff -baugess -battistoni -batrum -basinski -basgall -bartolomei -bartnik -bartl -bartko -bartholomay -barthlow -bartgis -barsness -barski -barlette -barickman -bargen -bardon -barcliff -barbu -barbar -barakat -baracani -baraban -banos -banko -bania -bambach -balok -balogun -bally -baldini -balck -balcer -balash -baim -bailor -bahm -bahar -bagshaw -baggerly -badie -badal -backues -babino -ba -aydelott -awbrey -aversano -avansino -auyon -aukamp -aujla -augenstein -astacio -ast -asplin -asato -asano -aruizu -artale -arrick -arneecher -armelin -armbrester -armacost -arkell -argue -argrave -areizaga -areas -apolo -anzures -anzualda -antwi -antillon -antenor -annand -anhalt -angove -anglemyer -anglada -angiano -angeloni -andaya -ancrum -anagnos -ammirati -amescua -america -ambrosius -amacker -amacher -amabile -alvizo -alvernaz -alvara -altobelli -altobell -althauser -alterman -altavilla -alsip -alphonso -almeyda -almeter -alman -allscheid -allaman -aliotta -alicia -aliberti -alghamdi -alfonzo -albiston -alberta -alberding -alarie -alano -aja -ailes -ahsan -ahrenstorff -ahler -aerni -ackland -achor -acero -acebo -ace -abshier -abruzzo -abrom -abood -abnet -abend -abegg -abbruzzese -aaberg -zysk -zutell -zumstein -zummo -zuhlke -zuehlsdorff -zuch -zucconi -zortman -zohn -ziv -zingone -zingg -zingale -zima -zientek -zieg -zervas -zerger -zenk -zeldin -zeiss -zeiders -zediker -zea -zavodny -zarazua -zappone -zappala -zapanta -zaniboni -zanchi -zampedri -zaller -zakrajsek -zagar -zadrozny -zablocki -zable -yust -yunk -youngkin -yosten -yockers -yochim -yerke -yerena -yeast -yanos -yam -wysinger -wyner -wrisley -woznicki -wortz -worsell -wooters -woon -woolcock -woodke -wonnacott -wolnik -wittstock -witting -witry -witfield -witcraft -wissmann -wissink -wisehart -wiscount -wironen -wipf -winterrowd -wingett -windon -windish -windisch -windes -wiltbank -willmarth -willick -wiler -wieseler -wiedmaier -wiederstein -wiedenheft -wieberg -wickware -wickkiser -wickell -whittmore -whitker -whitegoat -whitcraft -whisonant -whisby -whetsell -whedon -westry -westcoat -wernimont -wentling -wendlandt -wencl -weisgarber -weininger -weikle -weigold -weigl -weichbrodt -wehrli -wehe -weege -weare -watland -wassmann -warzecha -warrix -warrell -warnack -waples -wantland -wanger -wandrei -wander -wanat -wampole -waltjen -walterscheid -waligora -walding -waldie -walczyk -wakins -waitman -wair -wainio -wahpekeche -wahlman -wagley -wagenknecht -wadle -waddoups -wadding -wack -vuono -vuillemot -vugteveen -vosmus -vorkink -vories -vondra -voelz -vlashi -vivo -vitelli -vitali -viscarra -virgo -vinet -vimont -villega -villard -vignola -viereck -videtto -vicoy -vessell -vescovi -verros -vernier -vernaglia -vergin -verdone -verdier -verastequi -vejar -vasile -vasi -varnadore -vardaro -vanzanten -vansumeren -vanschuyver -vanleeuwen -vanhowe -vanhoozer -vaness -vandewalker -vandevoorde -vandeveer -vanderzwaag -vanderweide -vanderhyde -vandellen -vanamburg -vanalst -vallin -valk -valerie -valentini -valcarcel -valasco -valadao -vacher -urquijo -unterreiner -unsicker -unser -unrau -undercoffler -uhm -uffelman -uemura -ueda -tyszko -tyska -tymon -tyce -tyacke -twinam -tutas -tussing -turmel -turkowski -turkel -turchetta -tupick -tumblin -tukes -tufte -tufo -tuey -tuell -tuckerman -tsutsumi -tsuchiya -try -trossbach -trivitt -trippi -trippensee -trimbach -trillo -triller -trible -tribe -tribby -trevisan -tresch -tramonte -traff -trad -tousey -totaro -torregrosa -torralba -torn -tolly -tofil -tofani -tobiassen -tippy -tiogangco -tino -tinnes -tingstrom -tingen -tine -tindol -tifft -tiffee -tiet -thuesen -thruston -throndson -thornsbury -thornes -thiery -thielman -thie -theilen -thede -thate -thane -thalacker -thaden -teuscher -terracina -terell -terada -tepfer -tennessee -tenneson -tenant -temores -temkin -tellers -telleria -teaque -tealer -teachey -tavakoli -tauras -taucher -tator -tartaglino -tarpy -tape -tannery -tani -tams -tamlin -tambe -tallis -talamante -takayama -takaki -takagi -taibl -taffe -tadesse -tade -tabeling -tabag -szoke -szoc -szala -szady -sysak -sylver -syler -swonger -swiggett -swensson -sweis -sweers -sweene -sweany -sweaney -swartwout -swamy -swales -swab -susman -surman -surgeon -sundblad -summerset -summerhays -sumerall -sule -sugimoto -subramanian -sturch -stupp -stunkard -stumpp -struiksma -stropes -stromyer -stromquist -strede -strazza -strauf -storniolo -storjohann -stonum -stonier -stonecypher -stoneberger -stollar -stokke -stokan -stoetzel -stoeckel -stockner -stockinger -stockholm -stockert -stockdill -stobbe -stitzel -stitely -stirgus -stigers -stettner -stettler -sterlin -sterbenz -stemp -stelluti -steinmeyer -steininger -steinauer -steigerwalt -steider -steady -stavrou -staufenberger -stassi -starin -stankus -stanaway -stammer -stakem -staino -stahlnecker -stagnitta -staelens -staal -srsen -sprott -sprigg -sprenkle -sprenkel -spreitzer -spraque -sprandel -spotted -sporn -spivak -spira -spiewak -spieth -spiering -sperow -speh -specking -spease -spead -sparger -spanier -spall -sower -southcott -sosna -soran -sookram -sonders -solak -sohr -sohl -sofranko -soderling -sochor -sobon -smutz -smudrick -smithj -smid -slosser -sliker -slenker -sleight -sleger -sleet -slaby -skousen -skilling -skibinski -skeeters -skeet -skees -skane -skafidas -sivic -sivertsen -sivers -sitra -sito -siracusa -sinicki -simpers -simley -simbeck -silberberg -siever -siegwarth -sidman -siddons -siddle -sibbett -si -shumard -shubrooks -shough -shorb -shoptaw -sholty -shoffstall -shiverdecker -shininger -shimasaki -shifrin -shiffler -sheston -sherr -sherill -shere -shepeard -shelquist -shells -sheler -shave -shauf -sharrar -sharpnack -shanon -shamsiddeen -shambley -shallenberger -shadler -shaban -sha -sferra -seys -sexauer -sevey -severo -setlak -seta -sesko -sersen -serratore -serdula -senechal -seldomridge -seilhamer -seifer -seidlitz -sehnert -sedam -sebron -seber -sebek -seavers -sear -scullark -scroger -scovill -sciascia -sciarra -schweers -schwarze -schummer -schultes -schuchardt -schuchard -schrieber -schrenk -schreifels -schowalter -schoultz -scholer -schofill -schoff -schnuerer -schnettler -schmitke -schmiege -schloop -schlinger -schlessman -schlesser -schlageter -schiess -schiefer -schiavoni -scherzer -scherich -schechtman -schebel -scharpman -schaich -schaap -scappaticci -scadlock -savocchia -savini -savers -save -savageau -sauvage -sause -sauerwein -sary -sarwary -sarnicola -santone -santoli -santalucia -santacruce -sansoucie -sankoff -sanes -sandri -sanderman -sammartano -salmonson -salmela -salmans -sallaz -salis -sakuma -sakowski -sajdak -sahm -sagredo -safrit -sade -sackey -sabio -sabino -sabina -rybolt -ruzzo -ruthstrom -ruta -russin -russian -russak -rusko -ruskin -rusiecki -ruscher -rupar -rumberger -rullan -ruliffson -ruhlman -ruger -rufenacht -ruelle -rudisell -rudi -rucci -rublee -ruberto -rubeck -rowett -rouge -rottinghaus -roton -rothgeb -rothgaber -rothermich -rostek -rossini -roskelley -rosing -rosi -rosewell -rosebush -rosberg -roon -ronin -romesburg -romelus -rolley -rollerson -rollefson -rolins -rolens -rois -rohrig -rohrbacher -rohland -rohen -roh -rogness -roes -roering -roehrick -roebke -rodregez -rodabaugh -rocks -rockingham -roblee -robel -roadcap -rizzolo -riviezzo -rivest -riveron -risto -rissler -risen -rippentrop -ripka -rinn -ringuette -ringering -rindone -rindels -rim -rieffer -riedman -riede -riecke -riebow -riddlebarger -rhome -rhodd -rhatigan -rhame -reyers -rewitzer -revalee -retzer -rettinger -reschke -requa -reper -reopell -renzelman -renne -renker -renk -renicker -rendina -rendel -remund -remmele -remiasz -remaklus -remak -reitsma -reitmeier -reiswig -reishus -reining -reim -reidinger -reick -reiche -regans -reffett -reesor -reekie -redpath -redditt -rechtzigel -recht -rebel -rearden -raynoso -raxter -ratkowski -rasulo -rassmussen -rassel -raspberry -raser -rappleye -rappe -randy -randrup -randleman -ramson -rampey -ramming -rama -rainier -raider -radziewicz -quirarte -quintyne -quickel -query -quattrini -quarry -quakenbush -quaile -pytel -putty -pushaw -pusch -purslow -punzo -pullam -pugmire -puello -pu -przekop -pruss -pruiett -provow -prophete -procaccini -pritz -prillaman -priess -pretlow -prestia -presha -prescod -preast -praytor -prashad -praino -pozzi -pounder -pottenger -potash -porada -popplewell -ponzo -ponter -pommier -polland -polidori -polasky -pola -pok -poitier -poisso -poire -point -pofahl -podolsky -podell -plueger -plowe -plotz -plotnik -ploch -pliska -plessner -plaut -platzer -plake -pizzino -pizza -pirog -piquette -pipho -pioche -pintos -pinkert -pinet -pilkerton -pilch -pilarz -pignataro -piermatteo -picozzi -pickler -pickette -pichler -philogene -pheasant -phare -phang -pfrogner -pfisterer -pettinelli -petruzzi -petrovic -petretti -petermeier -pestone -pesterfield -pessin -pesch -persky -perruzza -perrott -perritt -perretti -perrera -peroutka -peroni -peron -peret -perdew -perazzo -peppe -peno -penberthy -penagos -peles -pelech -peiper -peight -pefferman -peddie -peckenpaugh -pean -payen -pavloski -pavlica -paullin -pattie -patteson -passon -passey -passe -passalacqua -pasquini -paskel -parter -partch -parriott -parrella -parraz -parmely -parizo -parisian -papelian -papasergi -pantojz -panto -panich -panchal -palys -palms -pallone -palinski -pali -palevic -pale -pagels -paciorek -pacho -pacella -paar -ozbun -overweg -overholser -ovalles -outhouse -outcalt -otterbein -otta -ostergren -osher -osbon -orzech -orwick -orrico -oropesa -orn -ormes -orillion -opal -onorati -onnen -omary -olk -olding -okonski -okimoto -ohlrich -ohayon -oguin -ogley -oftedahl -offen -ofallon -oeltjen -odam -ockmond -ockimey -ocean -obermeyer -oberdorf -obanner -oballe -oard -oakden -nyhan -nydam -numan -noyer -notte -nothstein -notestine -noser -nork -nolde -noa -nishihara -nishi -nikolic -nihart -nietupski -niesen -niehus -niece -nidiffer -nicoulin -nicolaysen -nicklow -nickl -nickeson -nichter -nicholl -ngyun -newsham -newmann -neveux -neuzil -neumayer -netland -nessen -nesheim -nelli -nelke -necochea -nazari -navy -navorro -navarez -navan -natter -natt -nater -nasta -narvaiz -nardelli -napp -nakahara -nairn -nagg -nager -nagano -nafziger -naffziger -nadelson -muzzillo -murri -murrey -murgia -murcia -muno -munier -mulqueen -mulliniks -mulkins -mulik -muhs -muffley -mozell -moynahan -mounger -mottley -motil -moseman -moseby -mosakowski -morten -mortell -morrisroe -morrero -mormino -morland -morger -morgenthaler -moren -morelle -morawski -morasca -morang -morand -moog -montney -montera -montee -montane -montagne -mons -monohan -monnett -monkhouse -moncure -momphard -molyneaux -molles -mollenkopf -molette -moland -mohs -mohmand -mohlke -moessner -moers -mockus -moccio -mlinar -mizzelle -mittler -mitri -mitchusson -mitchen -mistrot -mistler -misch -miriello -minkin -mininger -minerich -minehart -minderman -minden -minahan -milonas -millon -millholland -milleson -millerbernd -millage -militante -milionis -milhoan -mildenberger -milbury -mikolajczak -miklos -mikkola -mikes -migneault -mifsud -mietus -mieszala -mielnicki -midy -michon -michioka -micheau -michaeli -micali -methe -metallo -messler -mesch -merow -meroney -mergenthaler -meres -mercy -menuey -menousek -menning -menn -menghini -mendia -memmer -melot -mellow -mellenthin -melland -meland -meixner -meisenheimer -meineke -meinders -mehrens -mehlig -meglio -medsker -medicine -medero -mederios -meabon -mcwright -mcright -mcreath -mcrary -mcquirter -mcquerry -mcquary -mcphie -mcnurlen -mcnelley -mcnee -mcnairy -mcmanamy -mcmahen -mckowen -mckiver -mckinlay -mckearin -mcirvin -mcintrye -mchorse -mchaffie -mcgroarty -mcgoff -mcgivern -mceniry -mcelhiney -mcdiarmid -mccullars -mccubbins -mccrimon -mccovery -mccommons -mcclour -mccarrick -mccarey -mccallen -mcbrien -mcarthy -mayone -maybin -maximo -maxam -maurais -maughn -matzek -matts -matin -mathre -mathia -mateen -matava -masso -massar -massanet -masingale -mascaro -marthaler -martes -marso -marshman -marsalis -marrano -marolt -marold -markins -margulis -mardirosian -marchiano -marchak -marandola -marana -manues -mantis -mante -mansukhani -mansi -mannan -maniccia -mangine -manery -mandigo -manda -mancell -mamo -malstrom -malouf -malenfant -malena -maldenado -malandruccolo -malak -malabanan -makino -maj -maisonave -mainord -maino -mainard -maillard -maia -mahmud -mahdi -mahapatra -mahaley -mahaffy -magouirk -maglaras -magat -magan -maga -maffia -madrazo -madrano -maditz -mackert -mackellar -mackell -macht -macchia -maccarthy -maahs -lytal -lye -luzar -luzader -lutjen -lunger -lunan -luma -lukins -luhmann -luers -ludvigsen -ludlam -ludemann -luchini -lucente -lubrano -lubow -luber -lubeck -lowing -loven -loup -louise -louge -losco -lorts -lormand -lorenzetti -longford -longden -longbrake -lokhmatov -loge -loeven -loeser -locket -locey -locatelli -litka -lista -lisonbee -lisenbee -liscano -liranzo -liquori -liptrot -lionetti -lio -linscomb -linkovich -linington -lingefelt -lindler -lindig -lindall -lincks -linander -linan -limburg -limbrick -limbach -likos -lighthall -liford -lietzke -liebe -liddicoat -lickley -lichter -libel -lias -liapis -lezo -lewan -levitz -levesgue -leverson -levander -leuthauser -letbetter -lesuer -lesmeister -lesly -lerer -leppanen -lepinski -leota -lenherr -lembrick -lelonek -leisten -leiss -leins -leingang -leinberger -leinbach -leikam -leidig -lehtonen -lehnert -lehew -legier -lefchik -lecy -leconte -lecher -lebrecht -leather -leaper -lawter -lawrenz -lavy -laur -lauderbaugh -lauden -laudato -latting -latsko -latini -lassere -lasseigne -laspina -laso -laslie -laskowitz -laske -laser -lasenby -lascola -lariosa -larcade -lapete -laperouse -lanuza -lanting -lantagne -lansdale -lanphier -langmaid -langella -lanese -landrus -lampros -lamens -laizure -laitinen -laigle -lahm -lagueux -lagorio -lagomarsino -lagasca -lagana -lafont -laflen -lafavor -lafarge -laducer -ladnier -ladesma -lacognata -lackland -lacerte -labuff -laborin -labine -labauve -kuzio -kusterer -kussman -kusel -kusch -kurutz -kurdyla -kupka -kunzler -kunsman -kuni -kuney -kunc -kulish -kuliga -kulaga -kuilan -kuhre -kuhnke -kuemmerle -kueker -kudla -kudelka -kubinski -kubicki -kubal -krzyzanowski -krupicka -krumwiede -krumme -kross -kropidlowski -krokos -kroell -kritzer -kribs -kreitlow -kreisher -kraynak -krass -kranzler -kramb -kozyra -kozicki -kovalik -kovalchik -kovacevic -kotula -kotrba -koteles -kosowski -koskela -kosiba -koscinski -kosch -kory -korab -kopple -kopper -koppelman -koppel -konwinski -kon -kolosky -koloski -kolinsky -kolinski -kolbeck -kolasa -koepf -koda -kochevar -kochert -kobs -knust -knueppel -knoy -knieriem -knier -kneller -knappert -klitz -klintworth -klinkenberg -klinck -kleindienst -kleeb -klecker -kjellberg -kitten -kitsmiller -kisor -kisiel -kise -kirbo -kio -kinzle -kinkaid -kingsford -kingry -kimpton -kimel -kimberley -killmon -killick -kilgallon -kilcher -kihn -kiggins -kiecker -kher -khaleel -keziah -kettell -ketchen -keshishian -kersting -kersch -kerins -kercher -keno -kenefick -kemph -kempa -kelsheimer -kelln -kellenberger -kekahuna -keisling -keirnan -keimig -kehn -keal -ke -kaupp -kaufhold -kauffmann -katzenberg -katona -kaszynski -kaszuba -kassebaum -kasa -kartye -kartchner -karstens -karpinsky -karmely -karel -karasek -kapral -kaper -kanelos -kanahele -kampmann -kampe -kalp -kallus -kallevig -kallen -kaliszewski -kaleohano -kalchthaler -kalama -kalahiki -kaili -kahawai -kagey -justiss -jurkowski -jurgensmeyer -juilfs -josue -jopling -jondahl -jomes -joice -johannessen -joeckel -jezewski -jezek -jeswald -jervey -jeppsen -jenniges -jennifer -jennett -jemmott -jeffs -jeffry -jaurequi -janisch -janick -janice -jacek -jacaruso -iwanicki -ishihara -isenberger -isbister -iruegas -inzer -inyart -inscore -innocenti -inglish -infantolino -indovina -inaba -imondi -imdieke -imbert -illes -ida -iarocci -iannucci -huver -hutley -husser -husmann -hupf -huntsberger -hunnewell -hullum -huit -huish -huh -hughson -huft -hufstetler -hueser -hudnell -hovden -housen -houghtling -hoth -hossack -hoshaw -horsford -horry -hornbacher -horde -hoppenstedt -hopkinson -honza -honor -homann -holzmeister -holycross -holverson -holtzlander -holroyd -holmlund -hollywood -holderness -holderfield -holck -hojnacki -hohlfeld -hohenberger -hoganson -hogancamp -hoffses -hoerauf -hoell -hoefert -hodum -hoder -hockenbury -hoage -hisserich -hislip -hirons -hippensteel -hippen -hinkston -hindes -hinchcliff -hin -himmel -hillberry -hildring -hiester -hiefnar -hides -hibberd -hibben -heyliger -heyl -heyes -hevia -heu -hettrick -hert -hersha -hernandz -herkel -herber -henscheid -hennesy -henly -henegan -henebry -hench -hemsath -hemm -hemken -hemann -heltzel -hellriegel -hejny -heinl -heinke -heidinger -hegeman -hefferan -hedglin -hebdon -hearnen -hearing -heape -heagy -headings -headd -hazelbaker -havlick -hauschildt -haury -hassenfritz -hasenbeck -haseltine -hartstein -hartry -hartnell -harston -harpool -harmen -hardister -hardey -harders -harbolt -harbinson -haraway -haque -hansmann -hanser -hansch -hansberry -hankel -hanigan -haneline -hampe -hamons -hammerstone -hammerle -hamme -hammargren -hamelton -hamberger -hamasaki -halprin -halman -hallihan -halen -haldane -hails -haifley -hai -hages -hagadorn -hadwin -habicht -habermehl -gyles -gutzman -gutekunst -gustason -gusewelle -gurnsey -gurnee -gunterman -gumina -gulliver -gulbrandson -guiterez -guerino -guedry -gucwa -guardarrama -guagliano -guadagno -grulke -groote -groody -groft -groeneweg -grochow -grippe -grimstead -griepentrog -greenfeld -greenaway -grebe -graziosi -graw -gravina -grassie -grapes -granzow -grandjean -granby -gramacy -graces -gozalez -goyer -gotch -gosden -gorny -gormont -goodness -goodgion -gonya -gonnerman -gompert -golish -goligoski -goldmann -goike -goetze -godeaux -glenna -glaza -glassel -glaspy -glander -glady -giumarro -gitelman -gisondi -gismondi -girvan -girten -gironda -giovinco -ginkel -gilster -giesy -gierman -giddins -giardini -gianino -ghea -geurin -gett -getson -gerrero -germond -gere -gentsy -genta -gennette -genito -genis -gene -gendler -geltz -geiss -gehret -gegenheimer -geffert -geeting -gebel -gavette -gavenda -gaumond -gaudioso -gatzke -gatza -gattshall -gaton -gatchel -gasperi -gaska -gasiorowski -garritson -garrigus -garnier -garnick -gardinier -gardenas -garcy -garate -gandolfi -gamm -gamel -gambel -gallmon -gallemore -gallati -gainous -gainforth -gahring -gaffey -gaebler -gadzinski -gadbury -gabri -gabe -gaba -fyke -furtaw -furnas -furcron -funn -funck -fulwood -fulvio -fullmore -fukumoto -fuest -fuery -fuente -fuel -frymire -frush -frohlich -froedge -frodge -fritzinger -fricker -frericks -frein -freid -freggiaro -fratto -franzi -franciscus -fralix -fowble -fotheringham -foslien -foshie -fortmann -forsey -forkner -foppiano -fontanetta -fonohema -fogler -fockler -fluty -flusche -flud -florin -flori -flenory -fleharty -fleeks -flaxman -flash -flaming -fiumara -fitzmorris -finnicum -finkley -fineran -fillhart -filipi -fijal -fieldson -ficken -ficarra -fetch -festerman -fess -ferryman -ferner -fergason -ferell -fennern -femmer -feldmeier -feeser -feenan -federick -fedak -febbo -feazell -fearing -fazzone -fauth -fauset -faurote -faulker -faubion -fatzinger -fasick -fanguy -fambrough -falks -fahl -fabio -faaita -exler -ewens -estrado -esten -esteen -esquivez -espejo -esmiol -esguerra -esco -ertz -erspamer -ernstes -erisman -erhard -ereaux -ercanbrack -erbes -epple -entsminger -entriken -enslow -ennett -engquist -englebert -englander -engesser -engert -engeman -enge -enerson -end -emhoff -emge -emerald -elting -ellner -ellenberg -ellenbecker -elio -elfert -elden -elawar -ekstrand -eison -eismont -eisenbrandt -eiseman -eischens -ehrgott -egley -egert -eddlemon -economy -eckerson -eckersley -eckberg -echeverry -eberts -earthman -earnhart -eapen -eachus -dykas -dust -dusi -durning -during -durdan -dunomes -duncombe -dume -dullen -dullea -dulay -dul -duffett -dubs -dubard -drook -drenth -drahos -dragone -downin -downham -dowis -dowhower -doward -dovalina -dost -dopazo -doose -donson -donnan -dominski -dollarhide -dolinar -dolecki -dolbee -doege -dockus -dobler -dobkin -dobias -divoll -diviney -ditter -ditman -dissinger -dismang -dirlam -dinneen -dini -dingwall -dine -din -diloreto -dilmore -dillaman -dikeman -diiorio -dighton -diffley -dieudonne -dietel -dieringer -diercks -dienhart -diekrager -diefendorf -dicke -dicamillo -dibrito -dibona -dezeeuw -dewhurst -devins -deviney -deupree -detherage -despino -desmith -desjarlais -deshner -desha -desanctis -derring -derousse -derobertis -deridder -derego -derden -deprospero -deprofio -depping -deperro -denty -denoncourt -dencklau -demler -demirchyan -demichiel -demesa -demere -demaggio -delung -deluise -delmoral -delmastro -delmas -delligatti -delle -delena -delasbour -delarme -delargy -delagrange -delafontaine -deist -deiss -deighan -dehoff -degrazia -degman -defosses -deforrest -deeks -decoux -decarolis -debuhr -deberg -debarr -debari -dearmon -deare -deardurff -daywalt -dayer -davoren -davignon -daviau -dauteuil -dauterive -daul -darnley -darlin -darakjy -dapice -dannunzio -danison -daniello -damario -dalonzo -dallis -daleske -dalenberg -daiz -dains -daines -dagnese -dady -dadey -czyzewski -czapor -czaplewski -czajka -cyganiewicz -cuttino -cutrona -cussins -cusanelli -cuperus -cundy -cumiskey -cumins -cuizon -cuffia -cuffe -cuffari -cuccaro -cubie -cryder -cruson -crounse -cromedy -cring -creer -credeur -crea -cozort -cozine -cowee -cowdery -coventry -couser -courtway -courington -cotman -costlow -costell -corton -corsaro -corrieri -corrick -corradini -coron -coren -cord -corbi -corado -copus -coppenger -cooperwood -coontz -coonce -contrera -connealy -conell -comtois -compere -commins -commings -comegys -coma -colyar -colo -collister -collick -collella -coler -colborn -cohran -cogbill -coffen -cocuzzo -clynes -closter -clock -clipp -clingingsmith -clemence -clayman -classon -clas -clarey -clarence -clague -ciubal -citrino -citarella -cirone -cipponeri -cindrich -cimo -ciliberto -cichowski -ciccarello -cicala -chura -chubbuck -chronis -christlieb -chriss -chizek -chittester -chiquito -chimento -childree -chianese -chevrette -cheese -checo -chastang -chargualaf -chapmon -chantry -chahal -chafetz -cezar -ceruantes -cerrillo -cerrano -cerecedes -cerami -cegielski -cavallero -catinella -cassata -caslin -casano -casacchia -caruth -cartrette -carten -carodine -carnrike -carnall -carmicle -carlan -carlacci -caris -cariaga -cardine -cardimino -cardani -carbonara -carano -capua -capponi -cappellano -caporale -capelli -canupp -cantrel -cantone -canterberry -cannizzo -cannan -canelo -caneer -candill -candee -campbel -caminero -camble -caluya -callicott -calk -caito -caffie -caden -cadavid -cacy -cachu -cachola -cabreja -cabiles -cabada -caamano -byran -byon -buyck -bussman -bussie -bushner -burston -burnison -burkman -burkhammer -bures -burdeshaw -bumpass -bullinger -bullers -bulgrin -bugay -buffalo -budak -buczynski -buckendorf -buccieri -bubrig -brynteson -brunz -brunmeier -brunkow -brunetto -brunelli -brumwell -bruggman -brucki -brucculeri -brozovich -browing -brotman -broda -brocker -broadstreet -brix -britson -brinck -brimmage -brightly -brierre -bridenstine -brezenski -brezee -brevik -brest -brentlinger -brentley -breidenbach -breckel -brech -breaker -brazzle -braughton -brauch -brattin -brattain -branhan -branford -braner -brander -braly -braegelmann -brabec -boyt -boyack -bowren -bowl -bovian -boughan -botton -botner -bosques -borzea -borre -boron -bornhorst -borgstrom -borella -boop -bontempo -bonniwell -bonnes -bonjour -bonillo -bonano -bolek -bohol -bohaty -boffa -boetcher -boesen -boepple -boehler -boedecker -boeckx -bodi -boal -bloodsworth -bloodgood -blome -blockett -blixt -blanchett -blackhurst -blackaby -bjornberg -bitzer -bittenbender -bitler -birchall -binnicker -binggeli -billett -bilberry -bijou -biglow -bierly -bielby -biegel -beu -berzas -berte -bertagnolli -berreth -bernhart -bergum -berentson -berenson -berdy -bercegeay -bentle -bentivegna -bentham -benscoter -benns -bennick -benjamine -beneze -benett -beneke -bendure -bendix -bendick -benauides -belman -bellus -bellott -bellefleur -bellas -beljan -belgard -beith -beinlich -beierle -behme -beevers -beermann -beeching -bedward -bedrosian -bedner -bedeker -bechel -becera -beaubrun -beardmore -bealmear -bazin -bazer -baumhoer -baumgarner -bauknecht -battson -battiest -basulto -baster -basques -basista -basiliere -bashi -barzey -barz -bartus -bartucca -bartek -barrero -barreca -barnoski -barndt -barklow -baribeau -barette -bares -barentine -bareilles -barch -barbre -barberi -barbagelata -baraw -baratto -baranoski -bar -baptise -bankson -bankey -bankard -banik -baltzley -ballen -balkey -balius -balderston -bakula -bakalar -baffuto -baerga -badoni -backous -bachtel -bachrach -baccari -babine -babilonia -baar -azbill -azad -aycox -ayalla -avolio -austerberry -aughtry -aufderheide -auch -attanasio -athayde -atcher -astor -asselta -aslin -aslam -ashwood -ashraf -ashbacher -asbridge -asakura -arzaga -arriaza -arrez -arrequin -arrants -armiger -armenteros -armbrister -arko -argumedo -arguijo -ardolino -arcia -arbizo -aravjo -aper -anzaldo -antu -antrikin -antony -antonia -antonetty -antinoro -anthon -antenucci -anstead -annese -ankrum -andreason -andrado -andaverde -anastos -anable -amsterdam -amspoker -amrine -amrein -amorin -amel -ambrosini -amber -alsbrook -alnutt -almasi -allessio -allateef -alison -aldous -alderink -aldaz -akmal -akard -aiton -aites -ainscough -aikey -ahrends -ahlm -aguada -agans -adelmann -adebisi -addesso -adaway -adamaitis -ackison -abud -abendroth -abdur -abdool -aamodt -zywiec -zwiefelhofer -zwahlen -zunino -zuehl -zmuda -zmolek -zizza -ziska -zinser -zinkievich -zinger -zingarelli -ziesmer -ziegenfuss -ziebol -zettlemoyer -zettel -zervos -zenke -zembower -zelechowski -zelasko -zeise -zeek -zeeb -zarlenga -zarek -zaidi -zahnow -zahnke -zaharis -zach -zacate -zabrocki -zaborac -yurchak -yuengling -younie -youngers -youell -yott -yoshino -yorks -yordy -yochem -yerico -yerdon -yeiser -yearous -yearick -yeaney -ybarro -yasutake -yasin -yanke -yanish -yanik -yamazaki -yamat -yaggi -ximenez -wyzard -wynder -wyly -wykle -wutzke -wuori -wuertz -wuebker -wrightsel -worobel -worlie -worford -worek -woolson -woodrome -woodly -woodling -wontor -wondra -woltemath -wollmer -wolinski -wolfert -wojtanik -wojtak -wohlfarth -woeste -wobbleton -witz -wittmeyer -witchey -wisotzkey -wisnewski -wisman -wirch -wippert -wineberg -wimpee -wilusz -wiltsey -willig -williar -willers -willadsen -wilfred -wildhaber -wilday -wigham -wiggen -wiewel -wieting -wietbrock -wiesel -wiesehan -wiersema -wiegert -widney -widmark -wickson -wickings -wichern -whtie -whittie -whitlinger -whitfill -whitebread -whispell -whetten -wheeley -wheeles -wheelen -whatcott -weyland -weter -westrup -westphalen -westly -westland -wessler -wesolick -wesler -wesche -werry -wero -wernecke -werkhoven -wellspeak -wellings -welford -welander -weissgerber -weisheit -weins -weill -weigner -wehrmann -wehrley -wehmeier -wege -weers -weavers -watring -wassum -wassman -wassil -washabaugh -wascher -wary -warth -warbington -wanca -wammack -wamboldt -walterman -walkington -walkenhorst -walinski -wakley -wagg -wadell -vuckovich -voogd -voller -vokes -vogle -vogelsberg -vodicka -vissering -visage -vipond -vincik -villalona -vil -vickerman -vettel -veteto -vessel -vesperman -vesco -vertucci -versaw -verba -ventris -venecia -vendela -venanzi -veldhuizen -vehrs -veer -vee -vay -vaughen -vasilopoulos -vascocu -varvel -varno -varlas -varland -vario -vareschi -vanwyhe -vanweelden -vansciver -vannaman -vanluven -vanloo -vanlaningham -vankomen -vanhout -vanhampler -vangorp -vangorden -vanella -vandresar -vandis -vandeyacht -vandewerker -vandevsen -vanderwall -vandercook -vanderberg -vanbergen -valko -valesquez -valeriano -valen -vachula -vacha -uzee -uva -uselman -urizar -urion -urben -upthegrove -unzicker -unsell -unick -umscheid -umin -umanzor -ullo -ulicki -uhlir -uddin -tytler -tymeson -tyger -twisdale -twedell -tweddle -turrey -tures -turell -tur -tupa -tuitt -tuberville -tubby -tryner -trumpower -trumbore -truly -troglen -troff -troesch -trivisonno -tritto -tritten -tritle -trippany -tringali -tretheway -treon -trench -trejos -tregoning -treffert -traycheff -travali -trauth -trauernicht -transou -trane -trana -toves -tosta -torp -tornquist -tornes -torchio -toppings -toor -tooks -tonks -tomblinson -tomala -tollinchi -tolles -tokich -toh -tofte -todman -toddy -titze -timpone -tillema -tier -tienken -tiblier -thyberg -thursby -thurrell -thurm -thruman -thorsted -thorley -thomer -thoen -thissen -theimer -thee -thayn -thanpaeng -thammavongsa -thalman -texiera -texidor -teverbaugh -teska -ternullo -teplica -tepe -teno -tenholder -tenbusch -tenbrink -temby -tejedor -teitsworth -teichmann -tehan -tegtmeyer -tees -teem -tays -taubert -tauares -taschler -tartamella -tarquinio -tarbutton -tappendorf -tapija -tansil -tannahill -tamondong -talahytewa -takashima -taecker -tabora -tabin -tabbert -szymkowski -szymanowski -syversen -syrett -syracuse -synnott -sydnes -swimm -sweney -swearegene -swartzel -swanstrom -svedin -suss -suryan -surrey -supplice -supnet -suoboda -sundby -sumaya -sumabat -sulzen -sukovaty -sukhu -sugerman -sugalski -sugai -sudweeks -sudbeck -sucharski -stutheit -stumfoll -stuffle -struyk -strutz -strumpf -strowbridge -strothman -strojny -strohschein -stroffolino -stribble -strevel -strenke -stremming -strehle -strattman -stranak -stram -stracke -stoudamire -storks -stopp -stonebreaker -stolt -stoica -stofer -stockham -stockfisch -stjuste -stiteler -stiman -stillions -stillabower -stierle -sterlace -sterk -stepps -stenquist -stenner -stellman -steines -steinbaugh -steinbacher -steiling -steidel -steffee -stavinoha -staver -stastny -stasiuk -starrick -starliper -starlin -staniford -staner -standre -standefer -standafer -stanczyk -stallsmith -stagliano -staehle -staebler -stady -stadtmiller -squyres -spurbeck -sprunk -spranger -spoonamore -spoden -spilde -spezio -speros -sperandio -specchio -spearin -spayer -spallina -spadafino -sovie -sotello -sortor -sortino -sorrow -soros -sorola -sorbello -sonner -sonday -somes -soloway -soledad -soens -soellner -soderblom -sobin -sniezek -sneary -smyly -smutnick -smoots -smoldt -smitz -smitreski -smallen -smades -slunaker -sluka -slown -slovick -slocomb -slinger -slife -slicker -sleeter -slanker -skufca -skubis -skrocki -skov -skjei -skilton -skill -skarke -skalka -skalak -skaff -sixkiller -sitze -siter -sisko -sirman -sirls -sinotte -sinon -sincock -sincebaugh -simmoms -similien -silvius -silton -silloway -sikkema -sieracki -sienko -siemon -siemer -siefker -sieberg -siebens -siebe -sicurella -sicola -sickle -shumock -shumiloff -shuffstall -shuemaker -shuart -shu -shroff -shreeve -shostak -shortes -shorr -shivley -shintaku -shindo -shimomura -shiigi -sherow -sherburn -shepps -shenefield -shelvin -shelstad -shelp -sheild -sheaman -shaulis -sharrer -sharps -sharpes -shareef -shappy -shapero -shanor -shandy -shad -seyller -severn -sessom -sesley -servidio -serrin -sero -serge -septon -septer -sennott -sengstock -senff -senese -semprini -semone -sembrat -selva -sella -selbig -seiner -seif -seidt -sehrt -seemann -seelbinder -sedlay -sebert -searing -seaholm -seacord -seaburg -se -scungio -scroggie -scritchfield -scripture -scrimpsher -scrabeck -score -scorca -scobey -scivally -schwulst -schwinn -schwieson -schwery -schweppe -schwartzenbur -schurz -schumm -schulenburg -schuff -schuerholz -schryer -schrager -schorsch -schonhardt -schoenfelder -schoeck -schoeb -schnitzler -schnick -schnautz -schmig -schmelter -schmeichel -schluneger -schlosberg -schlobohm -schlenz -schlembach -schleisman -schleining -schleiff -schleider -schink -schilz -schiffler -schiavi -scheuer -schemonia -scheman -schelb -schaul -schaufelberge -scharer -schardt -scharbach -schabacker -scee -scavone -scarth -scarfone -scalese -sayne -sayed -savitz -satterlund -sattazahn -satow -sastre -sarr -sarjeant -sarff -sardella -santoya -santoni -santai -sankowski -sanft -sandow -sandoe -sandhaus -sandefer -sampey -samperi -sammarco -samia -samek -samay -samaan -salvadore -saltness -salsgiver -saller -salaz -salano -sakal -saka -saintlouis -saile -sahota -saggese -sagastume -sagan -sadri -sadak -sachez -saalfrank -saal -saadeh -ryu -rynn -ryley -ryle -rygg -rybarczyk -ruzich -ruyter -ruvo -rupel -ruopp -rundlett -runde -rundall -runck -rukavina -ruggiano -rufi -ruef -rubright -rubbo -rowbottom -route -rotner -rotman -rothweiler -rothlisberger -rosseau -rossean -rossa -roso -rosiek -roshia -rosenkrans -rosener -rosencrantz -rosencrans -rosello -roques -rookstool -rondo -romasanta -romack -rokus -rohweder -rog -roethler -roediger -rodwell -rodrigus -rodenbeck -rodefer -rodarmel -rockman -rockholt -rockford -rochow -roches -roblin -roblez -roble -robers -roat -rizza -rizvi -rizk -rixie -riveiro -rius -ritschard -ritrovato -risi -rishe -rippon -rinks -rings -ringley -ringgenberg -ringeisen -rimando -rilley -rijos -rieks -rieken -riechman -riddley -ricord -rickabaugh -richmeier -richesin -reyolds -rexach -revere -requena -reppucci -reposa -renzulli -renter -renault -remondini -relic -reither -reisig -reifsnider -reifer -reibsome -reibert -rehor -rehmann -reedus -redshaw -redfox -reczek -recupero -recor -reckard -recher -rear -realbuto -razer -rayman -raycraft -rayas -rawle -raviscioni -ravetto -ravenelle -rauth -raup -rattliff -rattley -rathfon -rataj -rasnic -rappleyea -rapaport -ransford -rann -rampersad -ramis -ramcharan -rainha -rainforth -ragans -ragains -rafidi -raffety -raducha -radsky -radler -radatz -raczkowski -rack -rabenold -quraishi -quinerly -quiet -quercia -quarnstrom -qian -pusser -puppo -pullan -pulis -pugel -puccini -puca -pruna -prowant -provines -pronk -prinkleton -prindall -primas -priesmeyer -pridgett -prevento -preti -presser -presnall -preseren -presas -presa -prchal -prattis -pratillo -praska -prak -powis -powderly -postlewait -postle -posch -porteus -portal -porraz -popwell -popoff -poplaski -poniatoski -pollina -polle -polhill -poletti -polaski -pokorney -poke -pointdexter -poinsette -po -ploszaj -plitt -pletz -pletsch -plemel -pleitez -playford -plaxco -platek -plambeck -plagens -placido -pisarski -pinuelas -pinnette -pinick -pinell -pinciaro -pinal -pilz -piltz -pillion -pilkinton -pilar -pikul -piepenburg -piening -piehler -piedrahita -piechocki -picknell -picker -pickelsimer -pich -picariello -phoeuk -phillipson -philbert -pherigo -phelka -peverini -petronis -petrina -petrash -petramale -petraglia -pery -personius -perrington -perrill -perpall -perot -perman -peragine -pentland -pennycuff -penninger -pennie -pennachio -penhall -pendexter -pencil -penalver -pelzel -pelter -pelow -pelo -peli -peinado -pedley -pecue -pecore -pechar -peairs -paynes -payano -pawelk -pavlock -pavlich -pavich -pavek -pautler -paulik -patmore -patella -patee -patalano -passini -passeri -paskell -parrigan -parmar -parayno -paparelli -pantuso -pante -panico -panduro -panagos -pama -palmo -pallotta -paling -palamino -pake -pajtas -pailthorpe -pahler -pagon -paglinawan -pagley -paget -paetz -paet -padley -pacleb -pacific -pachelo -pacer -paccione -pabey -ozley -ozimek -ozawa -owney -outram -oun -ouillette -oudekerk -ouch -ostrosky -ostermiller -ostermann -osterloh -osterfeld -ossenfort -osoria -oshell -orsino -orscheln -orrison -ororke -orf -orellano -orejuela -ordoyne -opsahl -opland -onofre -onaga -omahony -olszowka -olshan -ollig -oliff -olien -olexy -oldridge -oldfather -older -olalde -okun -okumoto -oktavec -okin -oka -ohme -ohlemacher -ohanesian -odneal -odgers -oderkirk -odden -ocain -obradovich -oakey -nussey -nunziato -nunoz -nunnenkamp -nuncio -noviello -novacek -nothstine -nostrand -northum -norsen -norlander -norkus -norgaard -norena -nored -nobrega -niziolek -ninnemann -nievas -nieratko -nieng -niedermeyer -niedermaier -nicolls -niang -newham -newcome -newberger -nevills -nevens -nevel -neumiller -netti -net -nessler -neria -nemet -nelon -nellon -neller -neisen -neilly -neifer -neid -negro -neering -neehouse -neef -needler -nebergall -nealis -naumoff -naufzinger -narum -narro -narramore -naraine -napps -nansteel -namisnak -namanny -nallie -nakhle -naito -naccari -nabb -myracle -myra -myhand -mwakitwile -muzzy -muscolino -musco -muscente -muscat -muscara -musacchia -musa -murrish -murfin -muray -munnelly -munley -munivez -mundine -mundahl -munari -mulling -mullennex -mullendore -mulkhey -mulinix -mulders -muhl -muenchow -muellner -mudget -mudger -muckenfuss -muchler -mozena -movius -mouldin -motola -mosseri -mossa -moselle -mory -morsell -morrish -morles -morie -morguson -moresco -morck -moppin -moosman -moons -montuori -montono -montogomery -montis -monterio -monter -monsalve -mongomery -mongar -mondello -moncivais -monard -monagan -molt -mollenhauer -moldrem -moldonado -molano -mokler -moisant -moilanen -mohrman -mohamad -moger -mogel -modine -modin -modic -modha -modena -mlynek -miya -mittiga -mittan -mitcheltree -miss -misfeldt -misener -mirchandani -miralles -miotke -miosky -minty -mintey -mins -minnie -mince -minassian -minar -mimis -milon -milloy -millison -milito -milfort -milbradt -mikulich -mikos -miklas -mihelcic -migliorisi -migliori -miesch -midura -miclette -michele -michela -micale -mezey -mews -mewes -mettert -mesker -mesich -mesecher -merthie -mersman -mersereau -merrithew -merriott -merring -merenda -merchen -mercardo -merati -mentzel -mentis -mentel -menotti -meno -mengle -mendolia -mellick -mellett -melichar -melhorn -melendres -melchiorre -meitzler -mehtani -mehrtens -megan -meditz -medeiras -meckes -me -mcteer -mctee -mcparland -mcniell -mcnealey -mcmanaway -mcleon -mclay -mclavrin -mcklveen -mckinzey -mcken -mckeand -mckale -mcilwraith -mcilroy -mcgreal -mcgougan -mcgettigan -mcgarey -mcfeeters -mcelhany -mcdaris -mccomis -mccomber -mccolm -mccollins -mccollin -mccollam -mccoach -mcclory -mcclennon -mccathern -mccarthey -mccarson -mccarrel -mccargar -mccandles -mccamish -mccally -mccage -mcbrearty -mcaneny -mcanallen -mcalarney -mcaferty -mazzo -mazy -mazurowski -mazique -mayoras -mayden -maxberry -mauller -matusiak -mattsen -matthey -matters -matkins -mathiasen -mathe -mateus -mate -matalka -masullo -massay -mashak -mascroft -martinex -martenson -marsiglia -marsella -marseille -maroudas -marotte -marner -marlo -markes -marina -maret -mareno -marean -marcinkiewicz -marchel -marasigan -manzueta -manzanilla -manternach -manring -manquero -manoni -manne -mankowski -manjarres -mangen -mangat -mandonado -mandia -mancias -manbeck -mamros -mam -maltez -mallia -mallar -malla -mall -malen -malaspina -malahan -malagisi -malachowski -makowsky -makinen -makepeace -majkowski -majid -majestic -majercin -maisey -mainguy -mailliard -maignan -mahlman -maha -magsamen -magpusao -magnano -magley -magedanz -magarelli -magaddino -maenner -madnick -maddrey -madaffari -macnaughton -macmullen -macksey -macknight -macki -macisaac -maciejczyk -maciag -macho -machenry -machamer -macguire -macdougal -macdaniel -maccormack -maccabe -mabbott -mabb -lynott -lyndon -lym -lydia -lycan -luy -lutwin -luscombe -lusco -lusardi -luria -lunetta -lundsford -lumas -luisi -luevanos -lueckenhoff -ludgate -ludd -lucherini -lubbs -lozado -lovie -lourens -lounsberry -loughrey -loughary -lotton -losser -loshbaugh -loser -loseke -loscalzo -los -lortz -loperena -loots -loosle -looman -longstaff -longobardi -longbottom -lomay -lomasney -lohrmann -lohmiller -logalbo -loetz -loeffel -lodwick -lodrigue -lockrem -llera -llarena -liv -littrel -littmann -lisser -lippa -lipner -linnemann -lingg -lindemuth -lindeen -limbo -lillig -likins -lights -lieurance -liesmann -liesman -liendo -lickert -lichliter -leyvas -leyrer -lewy -leubner -letters -lesslie -lesnick -lesmerises -lerno -lequire -lepera -lepard -lenske -leneau -lempka -lemmen -lemm -lemere -leinhart -leichner -leicher -leibman -lehmberg -leggins -lebeda -leavengood -leanard -lazaroff -laventure -lavant -lauster -laumea -latigo -lasota -lashure -lasecki -lascurain -lartigue -larouche -lappe -laplaunt -laplace -lanum -lansdell -lanpher -lanoie -lankard -laniado -langowski -langhorn -langfield -langfeldt -landt -landingham -landerman -landavazo -lampo -lampke -lamper -lamery -lambey -lamadrid -lallemand -laisure -laigo -laguer -lagerman -lageman -lagares -lacosse -lachappelle -labs -laborn -labonne -kyung -kuzia -kutt -kutil -kus -kurylo -kurowski -kuriger -kupcho -kulzer -kulesa -kules -kuhs -kuhne -krutz -krus -krupka -kronberg -kromka -kroese -krizek -krivanek -krishna -kringel -kreiss -kratofil -krapp -krakowsky -kracke -kozlow -koy -kowald -kover -kovaleski -kothakota -kosten -koskinen -kositzke -korff -korey -korbar -kor -kopplin -koplin -koos -konyn -konczak -komp -komo -kolber -kolash -kolakowski -kohm -kogen -koestner -koegler -kodama -kocik -kochheiser -kobler -kobara -knezevich -kneifl -knapchuck -knabb -klutz -klugman -klosner -klingel -klimesh -klice -kley -kleppe -klemke -kleinmann -kleinhans -kleinberg -kleffner -kleckley -klase -kisto -kissick -kisselburg -kirsten -kirschman -kirks -kirkner -kirkey -kirchman -kipling -kinville -kinnunen -kingdom -kimmey -kimmerle -kimbley -kilty -kilts -killmeyer -killilea -killay -kiest -kierce -kiepert -kielman -khalid -kewal -keszler -kesson -kesich -kerwood -kerksiek -kerkhoff -kerbo -keranen -keomuangtai -kenter -kennelley -keniry -kendzierski -kempner -kemmis -kemerling -kelsay -kelchner -kela -keithly -keipe -kegg -keer -keahey -kaywood -kayes -kawahara -kasuboski -kastendieck -kassin -kasprzyk -karraker -karnofski -karman -karger -karge -karella -karbowski -kapphahn -kap -kannel -kamrath -kaminer -kamansky -kalua -kaltz -kalpakoff -kalkbrenner -kaku -kaib -kaehler -kackley -kaber -justo -juris -jurich -jurgenson -jurez -junor -juniel -juncker -jugo -jubert -jowell -jovanovic -josiah -joosten -joncas -joma -johnso -johanns -jodoin -jockers -joans -jinwright -jinenez -jimeson -jerrett -jergens -jerden -jerdee -jepperson -jendras -jeanfrancois -jazwa -jaussi -jaster -jarzombek -jarencio -janocha -jakab -jadlowiec -jacobsma -jach -izaquirre -iwaoka -ivaska -iturbe -israelson -ismael -isles -isachsen -isaak -irland -inzerillo -insogna -ingegneri -ingalsbe -inciong -inagaki -idol -icenogle -hyon -hyett -hyers -huyck -hutti -hutten -hutnak -hussar -husky -hurrle -hurford -hurde -hupper -hunkin -hunkele -hunke -hun -humann -huhtasaari -hugger -hugel -huge -hufft -huegel -hrobsky -hren -hoyles -howlin -hovsepian -hovenga -hovatter -houdek -hotze -hossler -hossfeld -hosseini -horten -hort -horr -horgen -horen -hoopii -hoon -hoogland -hontz -honnold -homewood -holway -holtgrewe -holtan -holstrom -holstege -hollway -hollingshed -holling -hollenback -hollard -holberton -hoines -hogeland -hofstad -hoetger -hoen -hoaglund -hirota -hintermeister -hinnen -hinders -hinderer -hinchee -himelfarb -himber -hilzer -hilling -hillers -hillegas -hildinger -hignight -highman -hierholzer -heyde -hettich -hesketh -herzfeld -herzer -hershenson -hershberg -hernando -hermenegildo -hereth -hererra -hereda -herbin -heraty -herard -hepa -henschel -henrichsen -hennes -henneberger -heningburg -henig -hendron -hendericks -hemple -hempe -hemmingsen -hemler -helvie -helmly -helmbrecht -heling -helin -helfrey -helble -helaire -heizman -heisser -heiny -heinbaugh -heigh -heidemann -heidema -heiberger -hegel -heerdt -heeg -heefner -heckerman -heckendorf -heavin -headman -haynesworth -haylock -hayakawa -hawksley -hawking -haverstick -haut -hausen -hauke -haubold -hattan -hattabaugh -hasten -hasstedt -hashem -haselhorst -harrist -harpst -haroldsen -harmison -harkema -hark -harison -hariri -harcus -harcum -harcourt -harcharik -hanzel -hanvey -hantz -hansche -hansberger -hannig -hanken -hanhardt -hanf -hanauer -hamberlin -halward -halsall -hals -hallquist -hallmon -halk -halbach -halat -hajdas -hainsworth -haik -hahm -hagger -haggar -hader -hadel -haddick -hackmann -haasch -haaf -guzzetta -guzy -gutterman -gutmann -gutkowski -gustine -gursky -gurner -gunsolley -gumpert -gumbel -gulla -guilmain -guiliani -guier -guers -guerero -guerena -guebara -guadiana -grunder -grothoff -grosland -grosh -groos -grohs -grohmann -groepper -grodi -grizzaffi -grissinger -grippi -grinde -griffee -grether -greninger -greigo -gregorski -greger -grega -greenberger -graza -grattan -grasse -gras -grano -gramby -gradilla -govin -goutremout -goulas -gotay -gosling -gorey -goren -gordner -goossen -goon -goodwater -gonzaga -gonyo -gonska -gongalves -gomillion -gombos -golonka -gollman -goldtrap -goldammer -golas -golab -gola -gogan -goffman -goeppinger -godkin -godette -glore -glomb -glauner -glassey -glasner -gividen -giuffrida -gishal -giovanelli -ginoza -ginns -gindlesperger -gindhart -gillem -gilger -giggey -giebner -gibbson -giacomo -giacolone -giaccone -giacchino -ghere -gherardini -gherardi -gfeller -getts -gerwitz -gervin -gerstle -gerfin -geremia -gercak -general -gener -gencarelli -gehron -gehrmann -geffers -geery -geater -gawlik -gaudino -garsia -garrahan -garrabrant -garofolo -garigliano -garfinkle -garelick -gardocki -garafola -gappa -gantner -ganther -gangelhoff -gamarra -galstad -gally -gallik -gallier -galimba -gali -galassi -gaige -gadsby -gabby -gabbin -gabak -fyall -furney -funez -fulwider -fulson -fukunaga -fujikawa -fugere -fuertes -fuda -fryson -frump -frothingham -froning -froncillo -frohling -froberg -froats -fritchman -frische -friedrichsen -friedmann -fridge -friddell -frid -fresch -frentzel -freno -frelow -freimuth -freidel -freehan -freeby -freeburn -fredieu -frederiksen -fredeen -frazell -frayser -fratzke -frattini -franze -franich -francescon -francesco -frames -framer -fraiser -fragman -frack -foxe -fowlston -fosberg -fortna -fornataro -forden -foots -foody -fogt -foglia -fogerty -fogelson -flygare -flowe -florentine -flinner -flem -flatten -flath -flater -flahaven -flad -fjeld -fitanides -fistler -fishbaugh -firsching -fireman -finzel -finical -fingar -filosa -filicetti -filby -fierst -fierra -ficklen -ficher -fersner -ferrufino -ferrucci -fero -ferns -ferlenda -ferko -fergerstrom -ferge -fenty -fent -fennimore -fendt -femat -felux -felman -feldhaus -feisthamel -feijoo -feiertag -fehrman -fehl -feezell -feeny -feeback -fedigan -fedder -fechner -feary -fayson -faylor -fauteux -faustini -faure -fauci -fauber -fattig -farruggio -farrens -fare -faraci -fantini -fantin -fanno -fannings -faniel -fallaw -falker -falkenhagen -fajen -fahrner -fabel -fabacher -eytcheson -eyster -exford -exel -exe -evetts -evenstad -evanko -euresti -euber -etcitty -estler -esther -essner -essinger -esplain -espenshade -espanol -espaillat -escribano -escorcia -errington -errett -errera -erlanger -erenrich -erekson -erber -entinger -ensworth -ensell -enno -ennen -englin -engblom -engberson -encinias -enama -emel -elzie -elsbree -elmo -elman -elm -ellebracht -elkan -elfstrom -elerson -eleazer -eleam -eldrige -elcock -einspahr -eike -eidschun -eid -eickman -eichele -eiche -ehlke -eguchi -eggink -edouard -edgehill -eckes -eblin -ebberts -eavenson -earvin -eardley -eagon -eader -dzubak -dylla -dyckman -dwire -dutrow -dutile -dusza -dustman -dusing -duryee -durupan -durtschi -durtsche -durell -dunny -dunnegan -dunken -dun -dumm -dulak -duker -dukelow -dufort -dufilho -duffee -duett -dueck -dudzinski -dudasik -duckwall -duchemin -dubrow -dubis -dubicki -duba -drust -druckman -drinnen -drewett -drewel -dreitzler -dreckman -drappo -draffen -drabant -doyen -dowding -doub -dorson -dorschner -dorrington -dorney -dormaier -dorff -dorcy -donges -donelly -donel -domangue -dols -dollahite -dolese -doldo -doiley -dohrman -dohn -doheny -doceti -dobry -dobrinski -dobey -divincenzo -dischinger -dirusso -dirocco -dipiano -diop -dinitto -dinehart -dimsdale -diminich -dimalanta -dillavou -dilello -difusco -diffey -diffenderfer -diffee -difelice -difabio -dietzman -dieteman -diepenbrock -dieckmann -dicey -dicampli -dibari -diazdeleon -diallo -dewitz -dewiel -devoll -devol -devincent -devier -devendorf -devalk -detten -detraglia -dethomas -deter -detemple -desler -desharnais -desanty -derocco -dermer -derks -derito -derick -derhammer -deraney -dequattro -depass -depadua -deon -denzel -denyes -denyer -dentino -denlinger -deneal -demory -demopoulos -demontigny -demonte -demeza -delsol -delrosso -delpit -delpapa -delouise -delone -delo -delmundo -delmore -delmar -dellapaolera -delfin -delfierro -deleonardis -delenick -delcarlo -delcampo -delcamp -delawyer -delaware -delaroca -delaluz -delahunt -delaguardia -dekeyser -dekay -dejaeger -dejackome -dehay -dehass -degraffenried -degenhart -degan -deever -deedrick -deckelbaum -dechico -decent -dececco -decasas -debrock -debona -debeaumont -debarros -debaca -dearmore -deangelus -dealmeida -dawood -davney -daudt -datri -dasgupta -darring -darracott -darius -darcus -daoud -dansbury -dannels -danish -danielski -danehy -dancey -damour -dambra -daman -dalcour -daisey -dahlheimer -dagon -dadisman -dacunto -dacamara -dabe -cyrulik -cyphert -cwik -cussen -curles -curit -curby -curbo -cunas -cunard -cunanan -cumpton -culcasi -cui -cucinotta -cucco -csubak -cruthird -crumwell -crummitt -crumedy -crouthamel -cronce -cromack -cristina -crisafi -crimin -cresto -crescenzo -cremonese -creedon -credit -crankshaw -cozzens -cove -coval -courtwright -courcelle -coupland -counihan -coullard -cotrell -cosgrave -cornfield -cornelio -corish -cordoua -corbit -coppersmith -coonfield -cools -conville -contrell -contento -conser -conrod -connole -congrove -conery -condray -colver -coltman -colflesh -colcord -colavito -colar -coile -coggan -coenen -codling -coda -cockroft -cockrel -cockerill -cocca -coberley -coaster -clouden -clos -clive -clish -clint -clinkscale -clester -clammer -city -cittadino -citrano -ciresi -cillis -ciccarelli -ciborowski -ciarlo -ciardullo -chritton -chopp -choo -chirco -chilcoat -chevarie -cheslak -chernak -chay -chatterjee -chatten -chatagnier -chastin -chappuis -channing -channey -champlain -chalupsky -chalfin -chaffer -chadek -chadderton -cestone -cestero -cestari -cerros -cermeno -centola -cedrone -cayouette -cavan -cavaliero -casuse -castricone -castoreno -casten -castanada -castagnola -casstevens -cassio -cassi -cassanova -caspari -casher -cashatt -casco -casassa -casad -carville -carvel -cartland -cartegena -carsey -carsen -carrino -carrilo -carpinteyro -carmley -carlston -carlsson -carie -cariddi -caricofe -carel -cardy -carducci -carby -carangelo -capriotti -capria -caprario -capelo -canul -cantua -cantlow -canny -cangialosi -canepa -candland -campolo -campi -camors -camino -camfield -camelo -camarero -camaeho -calvano -callum -calliste -caldarella -calcutt -calcano -caissie -cager -caccamo -cabotage -cabble -byman -buzby -butkowski -bussler -busico -bushy -bushovisky -busbin -busard -busalacchi -burtman -burrous -burridge -burrer -burno -burin -burgette -burdock -burdier -burckhard -bunten -bungay -bundage -bumby -bultema -bulinski -bulan -bukhari -buganski -buerkle -buen -buehl -bue -budzynski -buckham -bub -bryk -brydon -bruyere -brunsvold -brunnett -brunker -brunfield -brumble -brue -brozina -brossman -brosey -brookens -broersma -brodrick -brockmeier -brockhouse -brisky -brinkly -brine -brincefield -brighenti -brigante -brieno -briede -bridenbaugh -bridegroom -brickett -bria -breske -brener -brenchley -breitkreutz -breitbart -breister -breining -breighner -breidel -brehon -breheny -breard -brean -breakell -breach -brazill -braymiller -braum -brau -brashaw -bransom -brandolino -brancato -branagan -braff -brading -bracker -brackenbury -bracher -braasch -boylen -boyda -boyanton -bowlus -bowditch -boutot -bouthillette -boursiquot -bourjolly -bouret -bouquet -boulerice -bouer -bouchillon -bouchie -bottin -boteilho -bosko -bosack -borys -bors -borla -borjon -borghi -borah -booty -booten -boore -bonuz -bonne -bongers -boneta -bonawitz -bonanni -bomer -bollen -bollard -bolla -bolio -boisseau -boies -boiani -bohorquez -boghossian -boespflug -boeser -boehl -boegel -bodrick -bodkins -bodenstein -bodell -bockover -bocci -bobbs -boals -boahn -boadway -bluma -bluett -bloor -blomker -blevens -blethen -bleecker -blayney -blaske -blasetti -blancas -blackner -blackie -bjorkquist -bjerk -bizub -bisono -bisges -bisaillon -birr -birnie -bires -birdtail -birdine -bina -billock -billinger -billig -billet -bigwood -bigalk -bielicki -biddick -biccum -biafore -bhagat -beza -beyah -bex -bevier -bevell -beute -betzer -betthauser -bethay -bethard -beshaw -bertholf -bertels -berridge -bernot -bernath -bernabei -berkson -berkovitz -berkich -bergsten -berget -berezny -berdin -beougher -benthin -benhaim -benenati -benejan -bemiss -beloate -bellucci -bells -bellotti -belling -bellido -bellaire -bellafiore -bekins -bekele -beish -behnken -beerly -beddo -becket -becke -bebeau -beauchaine -beaucage -beadling -beacher -bazar -baysmore -bayers -baun -baulch -baucher -batto -baton -bathe -basora -baruffi -bartimus -bartholemew -barrickman -barribeau -barreda -barrack -baroody -barness -barn -barmer -barillari -barias -barginear -barg -barde -barbone -barbato -barbarin -baoloy -bansal -bangle -banducci -bandel -bambeck -balter -ballif -baller -balladares -balkus -baldy -baldivia -balcerzak -balazs -baksh -bakr -bakemeier -baisey -bainer -bailly -bagge -badua -badini -bachtell -bachrodt -bachorski -bacak -babula -bable -babjeck -babecki -azbell -ayudan -awai -avita -avino -avellar -auzat -autman -autio -autery -ausman -ausland -aulabaugh -augle -aughenbaugh -augeri -audi -attleson -attig -attal -ator -asselmeier -askland -asiello -asch -arya -artola -arslanian -arron -arrezola -arnesen -arnau -armster -armintrout -armento -armato -arkenberg -ariaza -arguin -arenson -areias -archut -archibold -arave -arand -appelman -appello -antonson -antoniewicz -antill -antigua -annino -anness -anneler -angustia -angry -angiolillo -angelico -andreula -andreen -andreassi -andeson -ander -anda -anania -anadio -amicone -amenta -alzaga -alwardt -aluarado -altreche -altic -alsobrooks -alpern -almodova -almas -alltop -alliston -allio -alipio -alicandro -alibozek -alguire -alff -alcalde -alborn -albery -alberry -albany -albani -albanez -alavi -akkerman -ahlheim -agresti -agnelli -agilar -agib -aggas -afton -afonso -adil -adi -adank -adamsky -acri -accurso -abruzzese -abrew -abeln -abdullai -abdulkarim -abdelrahman -abbenante -abatiell -abaloz -zyskowski -zwiefel -zurmiller -zupancic -zuno -zumsteg -zumbrennen -zumaya -zullinger -zuleger -zozaya -zourkos -zorrilla -zorko -zolocsik -zittel -ziobro -zimmerly -zimmerli -zillmer -zigmond -zierer -zieber -zide -zevenbergen -zephier -zemel -zelazo -zeitlin -zeiser -zehring -zeger -zedian -zearfoss -zbranek -zaya -zatarain -zasso -zarn -zarilla -zari -zapp -zapf -zanghi -zange -zamacona -zalesky -zalazar -zaki -zafar -zade -yusko -yurman -yurkovich -yuhasz -younge -yiu -yeasted -yarrito -yark -yarboro -yannuzzi -yankovich -yanagawa -yago -yaffe -wyndham -wyms -wyand -wuensch -wryals -wrubel -worosz -woolstenhulme -wolpe -wolner -wolgamot -wolfman -wojtaszek -woeppel -woehr -wodarski -wizwer -wittkop -wisseman -wisor -wishum -wischmann -wisch -wirkkala -wion -wintjen -wintermute -wintermantel -winks -winkey -winham -windschitl -willow -willitzer -willier -willets -willenbrink -willen -willaimson -wilfahrt -wilenkin -wilen -wildeboer -wilchek -wigren -wignall -wiggington -wierson -wiegman -wiegel -widmayer -wider -widder -wickey -wickers -wical -whiton -whitenton -whiteleather -whiston -whirley -whetham -wheatly -wetenkamp -westenberger -westenbarger -westall -werblow -wengel -welson -welschmeyer -wellmann -wellbrock -wela -wekenborg -weiter -weisenstein -wehmann -weeda -wede -webley -waver -wauford -waterworth -watchorn -wassinger -wassell -wasp -wasiuta -warnix -warning -warnes -warmoth -warling -warila -warga -warburg -wanzer -want -waner -wanek -walwyn -walle -walkner -walin -waletzko -waler -walenta -wainer -wailes -wahr -waddel -wactor -wachtler -wachsman -wachowski -vulgamore -vukelich -vote -vost -voskamp -vorwerk -vongphakdy -volpi -volle -volino -voeks -vodopich -vittone -virdin -virag -vinroe -vinegar -vindiola -vilmont -villerreal -villaneva -villalobas -villada -vilhauer -vilchis -vilches -viggiani -vig -vieux -viets -vient -vielle -viejo -vidovich -vichi -veys -veverka -verser -veronesi -vernoy -vermont -verhines -verheyen -veren -vereb -verano -venuto -ventry -ventrone -veltz -velo -velazguez -veeser -vassey -vasque -varin -varaza -varady -vaquez -vaquerano -vansteenwyk -vanschoick -vanroekel -vannorden -vanlent -vangrouw -vangelder -vanes -vanelli -vanderkar -vanderbeek -vandenburgh -vandekieft -vandekamp -vancura -vancooten -vanconey -vancampen -vanaria -valvano -vallette -vallero -valiton -valin -valeri -valek -valdovino -valdivieso -vakas -vagas -vadala -vaccarella -vacanti -urrabazo -urguhart -urda -urbino -urbas -upmeyer -umphlett -ulerio -uitz -uchimura -uccello -tysdal -ty -tweedle -turrubiates -turrubiartes -turri -turnham -turko -turben -tupin -tumulty -tuffey -tuckey -tuckett -tucholski -tubolino -tubergen -tsuboi -tschumperlin -tschoepe -trynowski -tryba -truslow -truog -trumball -trudelle -trojillo -trnka -trizarry -trigueiro -trigleth -tricomi -tresselt -trentacoste -trendell -trenary -treml -treleven -treherne -treasure -trayer -travino -traugott -trappey -tranbarger -tramontano -tramell -trainum -traino -traill -trabucco -townsell -tourtillott -touar -toscani -torrella -torguson -torda -top -toomes -tonner -tommasino -tomaro -tolve -tolefree -toguchi -tofflemire -tofanelli -tody -toce -tobacco -toan -toalson -tkacik -tirone -tipple -tippery -tinson -tinnell -timper -timmers -times -timblin -tilotta -tillberg -tijernia -tigges -tigar -tielking -thyng -thonen -thomley -thombs -thimmesch -thier -thevenin -theodorov -theodoropoulo -tharnish -tharaldson -thackaberry -tewari -tetu -tetter -tersigni -tepezano -tennon -tennent -teichman -teehan -tayloe -taus -tatis -tata -tat -tashima -tarufelli -tarlow -tarkowski -tarka -targett -taran -tarabokija -tappen -tanzer -tanous -tanigawa -taneja -tammo -tallerico -tallada -talk -talhelm -takehara -takata -tagliavia -taffer -tadman -tacdol -tacconi -tables -szewczak -szeredy -szanto -sympson -symmes -syers -sydney -syas -swinny -swierk -swendsen -sweigard -sweezey -sweesy -sween -sweely -sweed -sweazy -swauger -swansbrough -swango -swanda -swamp -swallows -swaggerty -svatek -survant -surowka -surina -suozzi -sunstrom -sunford -sundseth -sundahl -summerill -sumida -sumbler -suma -sulyma -sulla -sulieman -suit -sugiyama -suell -sudo -suddreth -sucher -sturn -sturkey -studzinski -studler -stuckmeyer -stryjewski -stroy -strotman -strollo -stroik -stroede -streeby -stredny -strazi -stray -strawderman -straiton -stower -stoudmire -stormont -stopka -stoneback -stoldt -stolarz -stolarski -stockmaster -stobb -stivason -stirk -stipp -stipes -stingel -stike -stiebel -stidd -steurer -sterley -sterle -stepro -stepovich -stephson -stenseth -stenerson -stello -steinbrook -steidley -stehlin -stegmaier -stefanow -steese -steenhuis -stavely -stave -stautz -staunton -stater -stas -startup -startt -startin -starratt -stargell -starcevich -stank -stanis -standing -stancliff -stanchfield -stanbrough -stakes -stahmer -staheli -staebell -stadtlander -stadheim -sroufe -sroczynski -srnsky -sreaves -srader -squeo -spuler -sproat -springmeyer -sprengeler -sport -spolar -spivack -spinale -spiegler -spickerman -spessard -spenner -speich -spaziano -sparaco -spalter -sowells -sovich -southmayd -southgate -sotto -sotomayer -sosaya -sorvillo -sorrel -soos -songco -somerset -somero -soll -soldan -solarzano -solana -sokal -soibelman -soesbe -sobotta -sobina -sobeck -soard -snorton -snopek -snoozy -snethen -smithhisler -smee -smaniotto -slusarski -slowe -slotnick -sleva -sleighter -slappey -skyers -skutt -skorcz -skoczylas -skillicorn -skiffington -skibicki -skerl -skehan -skalla -siwinski -sivley -sittloh -sitterly -sith -sit -sise -siroky -sirles -sirin -sirignano -siren -sinsabaugh -sinks -sinisi -sinibaldi -singson -sindlinger -simpkin -siminski -simcoe -siford -siegert -sidor -sidhom -siddique -siddell -sicotte -sichting -sicari -sic -siano -shufflebarger -shramek -shortnacy -sholler -sholette -sholders -shogren -shoenberger -shoemate -shoat -shinoda -shines -shimshak -shigley -sheward -shetrone -shetlar -sherretts -sherod -shenkle -shely -sheltra -shelpman -shellabarger -shelite -sheldrick -shelburn -sheinbein -shebby -shawley -shatrau -shartle -sharifi -shanker -shami -shamel -shamburg -shamas -shallow -shaffstall -shadowens -shackleton -shaak -seykora -seyfert -sevillano -sevcik -seubert -seu -setter -sesler -servatius -serrant -serramo -serl -serini -serenil -serapion -sept -sensibaugh -sens -senich -sengbusch -sendra -senate -semrau -semrad -sempertegui -semons -semke -selma -sellinger -seliga -sekel -seilheimer -seigfried -seesholtz -seefeld -seecharran -sedrakyan -seavy -search -seamster -seabold -scyoc -sculley -scullawl -scrogham -scow -scopa -scontras -sciulli -sciola -scifres -schweyen -schwering -schwerdtfeger -schweim -schweikert -schweder -schwebel -schwartzwalde -schusterman -schuhmann -schuerman -schuchman -schrotenboer -schreurs -schoppert -schopper -schools -schoneman -scholfield -schoeppner -schoenleber -schoeman -schoel -schnurbusch -schnepel -schnader -schlarb -schlappi -schlangen -schlaht -schiraldi -schinkel -schimizzi -schifo -schiesher -scheyer -schettler -scheppke -schepper -scheinost -scheidel -scheets -schatzman -scharwath -scharp -schaarschmidt -schaack -scarnato -scarnati -scaringi -scarcia -scarano -sberna -sawina -sawer -sawaya -sawatzky -savcedo -sauser -saumier -sauchez -sauceman -sathre -satawa -sasala -sartoris -sare -sarchet -saracco -santulli -santory -santorelli -santopietro -sansing -sanseverino -saniatan -sangiacomo -sanges -sanfratello -sanflippo -sandona -sandelin -sandate -samona -sammis -sambor -samano -salvitti -salvietti -salvi -salum -salsa -salonek -salm -salles -sall -salera -salemo -salee -salak -sakihara -sakasegawa -sakaguchi -sagastegui -saeturn -sadan -sacayanan -saborio -sabeiha -sabedra -sabagh -rzepecki -rzasa -ryser -ryner -rydman -rycroft -rybij -ruyes -ruttan -russon -rushe -rusert -rusell -runnells -rundstrom -rumschlag -rullman -ruka -ruiloba -ruh -ruggs -ruffer -ruest -rueluas -rueger -ruediger -rubinoff -rubendall -rozmus -roxburgh -rowls -rousch -rothove -rotelli -roszel -roske -roskam -rosensteel -rosendo -roome -rombough -romash -romanson -romanello -romance -rolison -rogol -rogas -roese -roehrs -roegner -roeger -rodrguez -rodeman -rodebaugh -rockenbaugh -rocconi -robleto -robateau -roarty -roaf -rivenberg -rivara -rivali -risse -risby -ripperger -riopelle -ringrose -rinebarger -rile -riggen -rigano -riff -rifenbark -rieper -rieffenberger -riedmayer -ridolfi -ridderhoff -rickon -rickers -rickels -richoux -richens -ribao -rhodarmer -rheingans -reznik -reveron -reus -reph -renko -remme -remlinger -remke -remily -reitano -reissig -reisher -reinitz -reinholtz -reines -reigstad -reigh -reichelderfer -rehnert -rehagen -redline -rediger -redhouse -redepenning -recla -rechkemmer -reando -razavi -rayson -rayna -rax -raveling -rauser -rauschenberg -raupach -raum -rauen -ratulowski -ratterree -ratering -rapin -rannels -rane -randhawa -ramus -ramsfield -rams -ramroop -ramano -raj -raina -raikes -ragonese -rafaniello -raetz -raether -raeside -radwan -radman -rademaker -radar -racki -rachlin -rabena -rabassa -rabadan -raad -quoss -quizon -quito -quintela -quimet -quilty -quilimaco -quidley -quezaire -quave -quarto -quaranto -quandel -qiu -qazi -pyrdum -pyon -pyeatt -puzinski -putnal -punter -pumphery -pumper -pump -pummell -pumarejo -pulvermacher -pultz -pully -pullens -pulkrabek -pulk -pudlinski -puccetti -przygocki -przybyszewski -prusha -prudente -prucnal -prottsman -prosch -prodoehl -procell -prinzivalli -primes -prey -presnar -presho -prentis -preisler -preisel -pratka -pratcher -prass -pozzuoli -powanda -poundstone -potters -potra -potestio -potempa -postlethwait -posas -portrum -portland -portilla -portie -popovitch -popken -ponzio -pontremoli -pontarelli -pombo -pomainville -polycarpe -pollart -politowski -politano -poliquin -polczynski -pokoj -poitevint -poissonnier -poeppel -poellot -poehlman -poehlein -podratz -pociask -plocher -pline -plessinger -plautz -platten -plass -plageman -placko -pizzola -pizzella -pittsenbarger -pittner -pitstick -pitsch -pitney -pitaniello -pistoresi -pirc -pinski -pinera -pincock -pinckley -pincince -piliero -pilat -pigue -pietschman -pierpoint -pierini -picon -picking -picardi -phlegm -phippin -phetteplace -pharel -pfundt -pfluger -pfeuffer -pfefferle -pezzulo -pezzano -peveler -pettersson -petsch -petrusky -petruska -petrulis -petrossian -petroske -petrini -petitte -petito -petela -petaccio -pesto -pestka -pesta -pessoa -perun -perrow -perricone -peros -perney -perlin -perigo -perella -percle -pepple -penz -penttila -pensiero -penigar -penez -pendrak -penas -pellowski -pellow -pellin -pelissier -pelini -pekrul -peevey -pedraja -pecher -peasel -payment -pavolini -paviolitis -paulsell -paulina -paule -patrum -patrone -patrie -patras -patera -patek -patane -pastrano -pastora -passow -passley -passaretti -passantino -paske -partible -parsa -parnes -parliman -parlato -paravati -paradowski -papaleo -papagni -paoletta -panzarino -pannunzio -panis -pandit -paluzzi -palomin -palomaki -pallanes -palla -pall -palino -palfreyman -palazzi -palanza -palagi -painton -pain -pahulu -paganico -paeth -padlo -padillia -paddy -paddick -paciolla -pacholski -paap -paa -owolabi -overshown -overocker -overgaard -ouchi -ottoson -ostrye -osterland -osland -oslan -osick -osen -osdoba -osberg -orzel -ortmeier -orren -ormerod -orio -orgeron -orengo -orbaker -opiela -opdahl -onks -oltrogge -olnick -olivarres -olide -oleksy -olaya -okray -okonek -okinaka -ojima -ojala -oinonen -ohotto -ohan -ogwin -ogborn -oflaherty -offill -oetken -oertle -oehlert -odems -oconnel -ocha -ocarroll -oby -oblak -oberst -obermann -obas -oachs -nydegger -nybo -nuuanu -nutile -nuse -nuriddin -nungesser -nuber -noy -novinger -nouri -northan -norseworthy -norrod -normington -nori -norenberg -nordine -nop -noori -noblet -nives -nist -niskala -nilan -nikolai -nigl -nightengale -nichole -ni -nhek -ngvyen -newville -newsam -newnham -newmeyer -newlan -newbert -neuschwander -neusch -neun -nethken -nethercutt -nesser -neske -neman -nelton -nelles -nekola -neiling -neeser -neelly -nedved -neang -navejar -naveja -nauarro -natho -nathe -natcher -naser -nasby -narlock -nanton -naillon -naill -naguin -nagele -naftzger -naegle -naegele -naef -nacke -nabritt -mynhier -myart -muzquiz -mutty -musolino -mushero -murtaugh -murie -muresan -murdough -mura -munuz -munstermann -munsen -munselle -munise -mungle -munerlyn -muncher -mulrooney -mullee -mulaney -mulanax -muhlhauser -muhlestein -mugleston -mugg -mugford -muckel -mucerino -mt -mrotek -mrnak -mozdzierz -moyler -moury -moulin -moulding -moul -mottai -mostyn -mosimann -mosholder -mosburg -morrisseau -moron -morice -morgante -moreta -morcos -morasco -morante -mooe -montori -montminy -monteforte -montante -montanari -monsees -mondier -monden -monckton -monce -monarch -monarca -mompoint -mollema -molin -molima -molen -molash -moher -mogle -mogannam -moel -moehn -modesitt -mobilia -moag -miyagawa -mivshek -miu -mittman -mittleman -mittelsteadt -mittelstaedt -mitsch -mithell -miscione -mirbaha -mirabelli -mir -minon -minniti -minnerly -mingrone -minervini -minerd -minarcin -mimnaugh -milord -milnor -milnik -millers -milkowski -mikrot -mikles -miglorie -mientka -midthun -middlesworth -micklos -mickler -michetti -michelli -michelet -micallef -meyn -meullion -mette -metoxen -messore -messano -mesaros -mertel -merritts -merrion -merril -mermis -merlini -merker -meridith -mergel -merbaum -mente -mensi -menninger -mennen -menlove -menken -menezes -menette -mendyk -mendoca -mendivel -mendias -menasco -melloy -mellema -mellard -melis -meldahl -melberg -meirick -meinel -meiler -meile -meidl -meerdink -meer -medus -meduna -medovich -medine -medico -medici -mcvaigh -mctier -mcquirk -mcnight -mcmurrey -mcmurdo -mcmorries -mcmilleon -mcmickell -mcmicheal -mcmeel -mcleese -mclee -mclaws -mclanahan -mclaird -mckusker -mckibbens -mckenley -mckenize -mckendall -mckellop -mckellip -mckeirnan -mcinvale -mcguffee -mcgrue -mcgregory -mcgrann -mcgoey -mcglinn -mcgillicuddy -mcgillen -mcgeachy -mcgarrell -mcgannon -mcgalliard -mcfarlen -mcevers -mcerlean -mcennis -mcelvany -mcelvaine -mcdonal -mcdavitt -mccullick -mccrone -mccreadie -mccoun -mcconchie -mcconaughy -mcconahy -mcconaghy -mccomsey -mccoggle -mcclimans -mccleod -mccleaf -mcclafferty -mccatty -mccarry -mccance -mccament -mccaghren -mcbreen -mcardell -mcabier -mazell -mayotte -maybrier -mavis -mautone -matuszek -mattimoe -mattey -matterson -matten -matsushima -matsubara -matrone -matras -mato -matier -matheus -massucci -massoni -massare -maslin -mashaw -mase -mascola -masci -marze -marvray -marusak -martowski -martiny -martie -martabano -marsha -marschel -marsack -marsac -marohnic -markve -markis -marking -marken -marioni -marichalar -margosian -maretti -mardesich -marcussen -marchessault -marcey -maraldo -marafioti -manzanero -manwill -manual -manocchio -manko -manista -manire -manikowski -manganiello -manetta -mandy -mandino -mandarino -mancinelli -manasse -manary -manalang -malling -mallahan -maliska -malet -maleski -maldonaldo -malaterre -malaney -malagarie -malabe -maks -makinster -makar -maita -maiolo -mahley -magos -mago -magnotti -magnant -maglott -maglori -maenius -madkin -madarang -madagan -macrina -macquarrie -macphee -macneal -macmahon -maclellan -mackeen -maciver -machkovich -machan -macewen -macera -macer -maceachern -macdonell -macaskill -maaske -lysaght -lynum -lynema -lyas -lutton -luttman -lutsky -luthi -lutfy -lupoe -lundrigan -lunderville -lukan -luedeman -ludke -lucore -lucksinger -lucks -luckner -lucarell -lubelski -luarca -luaces -lozinski -loynes -lowis -lovorn -loverde -lovasz -loughery -lotzer -losito -loschiavo -lorsung -lorquet -lorkowski -lorino -lorey -lorente -loreman -lopaz -looft -lonie -longman -longhofer -longan -lomascolo -lomack -lolagne -lokaphone -logins -loggin -lofredo -loffler -loescher -loendorf -locus -lockyer -lockheart -lobendahn -lobasso -lob -lizana -livshits -litzau -litty -litteer -litsey -litrenta -litner -liszewski -lisman -lisboa -liquet -liptok -lineweaver -lindenpitz -lindel -lime -lillywhite -life -lievano -lieblong -liebler -lidey -libutti -liborio -libengood -leyson -leyland -lewczyk -lewark -leviner -levenstein -leuenberger -leszczynski -lestage -leske -lerwick -leray -lepkowski -leonor -lenyard -lenger -lendon -lemarie -leman -lelle -leisner -leisey -leischner -leimer -leigers -leiferman -leibfried -lehoullier -lehnortt -legget -legato -legath -legassie -legarreta -leftridge -leewright -ledsome -lecrone -lecourt -lecky -lechman -lebsack -lebouf -lebon -leazer -leavins -leadbeater -lawwill -lawall -lavorini -laviero -lavertue -lavalais -lautenbach -lausier -laurita -lauriano -laurange -launey -laughead -laufenberg -lauderman -laubhan -latunski -latulas -lastrape -lastiri -lason -laskoski -lasanta -laroux -larizza -larive -larish -laquerre -lappas -lapilio -lapadula -lapa -lanzi -lanzafame -lantier -lanski -laningham -langon -langdale -landron -landero -landauer -landacre -lamport -lamping -lamott -lamonda -lammi -lambiase -laite -lahaye -laframboise -lafone -laferte -laeger -ladieu -ladabouche -lachat -labonville -labbee -labatt -laban -kynaston -kwaterski -kuzniar -kuthe -kuter -kutchar -kurtin -kuramoto -kupstas -kuperman -kuns -kullmann -kuligowski -kukielka -kuehler -kudrna -kubie -kubera -kubas -kuba -kualii -krysinski -kryder -kronberger -kroft -kroencke -kristiansen -krigger -krieser -kretschman -krentz -krenke -kremers -kreitner -kreimer -kray -krawchuk -kravs -kranich -krampitz -kragh -krager -kozuch -kozloski -kozatek -kozakiewicz -kovalsky -kovalcik -kovack -kotera -kot -koszyk -kostel -kosmicki -koshy -korona -koroma -korba -koopmann -konstantinidi -kolodzik -kolodzieski -kolle -kolkmann -kolker -kolda -kokaly -kofford -koepper -koeing -koehnen -kodish -kodani -kocur -kocourek -kobza -koble -koback -knutzen -knows -knolton -knoblauch -knispel -knieper -knepshield -klyce -klunk -kluka -klostermann -klosinski -klish -klint -klinner -klindt -klimko -klicker -kleman -kleinsorge -kleinfelder -kleier -klas -klaman -kizzee -kitto -kitka -kirtdoll -kirscht -kintzer -kinstle -kinning -kinniburgh -kinnett -kinker -kinkelaar -kings -kingham -kingfisher -kimmet -killingbeck -kilberg -kikuchi -kikkert -kiesow -kienitz -kidner -kida -kid -khuu -khatak -khaleck -kezar -keyton -ketelhut -kesley -keshishyan -kerzman -kertesz -kerslake -kerscher -kernes -kerin -ker -kenimer -kenfield -kempe -kemick -kem -keitsock -keisker -keery -keblish -kebalka -kearny -kearby -kayler -kavin -kauer -kattan -katoa -kassis -kashuba -kashan -kartman -karry -karpel -karo -karnopp -karmazyn -karjala -karcz -karasti -karagiannis -kapoi -kapanke -kanz -kaniewski -kanemoto -kaneholani -kandt -kampfer -kammann -kamler -kamal -kalvig -kalmen -kalmar -kallstrom -kallin -kallbrier -kakaviatos -kakar -kahahane -kagel -kabat -kabanuck -kaas -jurczak -jurasin -juras -junke -junghans -jungen -jund -juliusson -juhnke -juett -jolla -jokinen -jokela -joffe -joecks -jochumsen -joa -jeziorski -jesseman -jessamy -jernejcic -jergenson -jerdon -jensrud -jellinek -jedrey -jedele -jeannette -jauron -jatho -jarrel -januszewski -janski -janovsek -janning -janikowski -jane -jandres -jamaica -jalonen -jainlett -jahnsen -jahde -jagow -jagielski -jaffray -jaecks -jacquot -jacoway -jacocks -iwami -isadore -irmeger -irie -iredale -iqbal -inscoe -inklebarger -ingemi -immen -imig -imberg -imamura -illies -ilacqua -ijams -iha -iden -ibraham -ibey -ialongo -iafrate -hyzer -hyacinthe -huyard -huxman -hutchkiss -hutchingson -husson -hussman -hurm -hupka -hunyadi -hunstad -humpert -hummons -hultz -hulton -hules -huisenga -huhta -hugueley -hughe -huggler -hufton -huffstickler -huddelston -huba -hrivnak -hoysradt -howorth -howenstine -hovda -hourani -houglum -houch -hotalen -hosse -horwich -horvitz -horoschak -hornor -hornbrook -horita -hoque -hopman -hoovler -hoople -hookfin -honeysucker -honeycut -honerkamp -homyak -homa -holzwart -holzerland -holyoke -holtry -holterman -holohan -hollinshed -hollington -hollenshead -holey -holderby -holak -hokkanen -hohner -hogsed -hoglen -hogen -hogberg -hofland -hofius -hoffis -hofferber -hoffarth -hofacker -hoekman -hodor -hochstetter -hochnadel -hobbins -hoa -hlavaty -hittner -hitson -hirtz -hirschi -hinkes -hinke -hindley -hince -hilse -hilke -hilferty -hildesheim -hikes -hignite -higman -hiemer -hidden -hickinbotham -hewatt -hetz -hetsler -hessian -hershaw -herra -hernander -herlocker -hepper -henseler -henri -hennick -hennecke -hendrikson -henderlight -hellstrom -helderman -heitland -heistand -heiskell -heisinger -heiserman -heinritz -heinly -heinlen -heimerdinger -heimbigner -heidbreder -hegwer -hedeen -hebrank -heberlein -heaslet -hearin -hazle -hazelbush -hayzlett -hayre -haymans -hayenga -hayduk -haward -havner -haushalter -hauf -hatke -hatchel -hassard -haskovec -hashmi -harvest -harvath -hartill -harteau -harshfield -harrigill -harriet -haros -haroldson -harmeson -harl -harkley -hariston -harington -harian -hargus -hargens -hardina -haraldson -harajly -hapke -hapeman -hanz -hanthorn -hanry -hannen -hannasch -hannam -hanifan -hanft -handon -handford -hancher -hancey -hample -hammrich -hammerstrom -hambric -halwick -halma -hallgren -hallet -hallada -halla -halik -halgas -halcon -halbrooks -hakel -hairfield -hainesworth -haggarty -hagenhoff -hagebusch -hagadone -haft -haflett -haefele -haddow -hackbart -haberer -haass -gwinner -gwathney -gwartney -gutterrez -gutoski -gutkin -gutherie -gutches -gustus -gustison -gustaveson -gurtner -gurkin -gummo -gulliksen -gulke -guldin -gulden -guitierez -guile -guildford -guidice -gugerty -guffy -gueningsman -gudgell -guderjahn -guastella -guariglia -guardia -gryniuk -grueser -grudem -growden -grossett -gropper -gron -grodin -groch -grismore -gripper -grinvalsky -grima -griffth -griess -greynolds -gresh -greminger -gregoria -greenwade -greenlief -greenier -grayes -gravell -grassmyer -grappe -grantland -grandin -grandel -grandbois -granahan -gramham -graffeo -graeter -gradwell -gradel -grabo -graban -goy -govoni -governale -govern -gouty -goughnour -goude -goubeaux -goth -gosline -goslee -goshen -gosewisch -gorzynski -gortman -gorter -gordin -gord -goos -goodwine -goodrick -goodley -gombert -goletz -goldy -goldthwaite -goldthwait -goldizen -golar -goist -gofman -goffer -goerges -goeltz -goedicke -goedecke -godnick -gocke -goade -gneiser -gluth -glovier -glomski -glodo -gloden -glenister -glawson -glasier -gladysz -gladstein -gjertsen -giudice -gitto -gittelman -girvin -girolamo -gionfriddo -gingell -gimble -gilhousen -gilboy -gilberti -gigantino -gietzen -gieseking -gianikas -ghosn -ghosh -geyman -gevara -getsinger -gessert -gerrits -gerrior -geris -gerhauser -gerety -genzone -genuario -gentles -gentille -genter -genetti -gelle -gelfand -gelabert -gekas -geck -gearin -gdovin -gaydosh -gawith -gave -gauntlett -gaugler -gaudy -gaub -gatten -gathje -gasperini -gasner -gasco -gascho -gasbarro -garvis -garra -garnette -garing -garick -gardunio -gardon -gardemal -garde -garczynski -garant -ganus -gantnier -ganis -gangloff -gangler -ganer -ganem -gandolfo -gampp -gallihugh -galletti -gallenstein -gallarello -galla -galka -galayda -galarneau -galapon -gaito -gaglione -gady -gadsen -gachupin -gaboury -futterman -fusch -furuta -furth -furber -fune -funai -fuess -frutchey -frumkin -fruhling -frommer -fromdahl -froehner -frizzle -friends -friederich -freyre -freilich -fregia -frediani -frederico -frater -fraile -foste -fosselman -fosnaugh -fosburg -fortis -fortgang -forstner -forson -forseth -forkin -forister -forinash -footer -fontillas -fontenelle -fonesca -folker -fogerson -fogelquist -flye -flummer -floth -floro -florine -flies -flexer -flessner -flatness -flank -fland -flahive -flager -fiveash -fitzner -fitzke -fitcheard -fisherman -fishbeck -fipps -fiorino -finster -finken -finigan -fingal -finer -filsaime -fillingim -filipponi -fila -fies -fiebelkorn -fiducia -fiallo -fetherston -fetherolf -fesmire -fesenmyer -ferroni -ferriss -ferrini -ferrick -ferraris -ferniza -fernades -ferdig -ferandez -feoli -fenninger -fenney -femi -fejes -fehlman -feger -fede -febo -febbraio -feasel -feagley -fayad -favaloro -fauerbach -fauble -fasheh -farrant -farra -faro -farinacci -farfaglia -farell -farb -farace -fanjoy -fangmann -famulare -falsetta -fallows -fallert -falero -faldyn -falconi -falce -fait -fairburn -faiola -faiella -fahlsing -faggett -fafinski -fadness -fabros -fabert -everidge -evaristo -eustache -etzkorn -etier -estabillo -esquivias -esquirel -eslava -eschete -esau -erway -ertzbischoff -eron -erner -ermitano -ermitanio -ermert -erie -erdley -equihua -enzor -ensing -enns -engleking -engelkes -endlich -endler -emry -emms -emmerling -emerich -ellsbury -ellie -elizarraras -eliot -eliopoulos -elery -elek -elderidge -elbaum -ekins -ekin -eisley -eilderts -eikleberry -eigo -eighmy -eichel -ehly -egloff -egland -eggington -eggenberger -egar -egans -eftekhari -efford -eeds -edvalson -edin -edgman -edemann -edelmann -eddens -eckl -eckerle -eckelman -ebrahim -eberth -eberspacher -ebbighausen -ebaugh -easly -eash -dzledzic -dyett -dyba -dworaczyk -duttry -duthie -duszynski -duso -dushaj -dusett -dus -durman -durkins -durick -duplechain -dunnivan -dunlow -dunivan -dumars -dumaine -duliba -dulany -duka -duft -dufrane -duffek -duellman -ducking -dubourg -drzewiecki -drugan -drozdowski -drozda -dronet -drilling -driesenga -dreyfuss -drevs -dreben -draudt -draleau -dragos -draghi -doyer -dowlin -douma -dotterweich -dottavio -doroff -dornon -dorland -doop -donndelinger -donehoo -donate -donado -dommer -dominici -domann -dolio -dolence -doland -dolak -doersam -doerrer -doede -dockham -dobrich -dobosz -dobin -dobbratz -divlio -divel -ditzel -disalvatore -diotte -dinnen -dinkin -dimler -dimiceli -dimeglio -dimascio -dimare -diluca -dilsaver -dillen -dilibero -dile -digioia -difede -diefenbach -diedrick -dickmann -dickes -dickason -dicapua -dicaprio -dibrell -dibley -dibattista -deyon -devotie -devoid -deval -detlefsen -destro -destiche -desposito -desola -deshotels -descombes -deschepper -desautel -desano -deroy -derosset -derosby -deroeck -derocher -dergance -deren -deptula -deprey -depolis -depner -depetro -denunzio -densford -dennington -dene -dender -denbo -demuro -demoranville -demling -demerson -demelis -demeglio -dembo -demattia -demarinis -delprincipe -deloria -delnoce -delmedico -dellow -delles -dellavalle -dellamora -delguidice -delgato -delfs -delcourt -delcolle -delbert -delaportilla -delahoz -delacueva -deisch -deike -degro -degonia -degollado -degolier -degirolamo -degener -degele -degeest -degeare -defina -defabio -deeley -decraene -decou -decorte -declercq -decinti -dechambeau -debutts -debro -deblieck -deblasi -debem -deavila -deases -deangeles -deahl -daymude -daven -datil -daros -darnick -darienzo -dardy -daponte -dannhaus -danneman -danielle -dani -danger -dangel -danes -danekas -dandrow -dambrose -dalpe -dalesandro -daiton -dainels -daigh -dahnke -dahme -dahling -dagata -dack -czaplicki -czachorowski -cuttitta -cutaia -custance -curless -curie -curi -cupelli -cumens -cumbass -cumba -cullars -cullar -cukaj -cubito -cuascut -crytzer -crye -cruzen -cruser -crunkleton -crummett -crumbliss -cropley -cronquist -cronkite -cronic -crombie -crockwell -crnkovich -critcher -cristo -cristales -crisanti -crier -cretsinger -crest -creson -crelia -crecco -craze -craveiro -cratch -crapps -cran -craigmiles -craiger -craige -crady -cradic -craddieth -cowels -coveney -courcy -coulbourne -cotsis -cotrone -cotney -cotilla -costaneda -costabile -cossel -cossa -cos -corte -corsino -corria -cornog -cornely -corio -corino -corington -coressel -cordone -corbisiero -corbelli -copps -coovert -coopwood -cooner -cookman -conzales -conver -contratto -conrady -conradi -connel -conneely -conmy -comunale -comber -comans -colvert -columbo -coluccio -colp -colop -collini -college -colestock -colebank -colasante -colasacco -colapietro -cokeley -coia -cocuzza -coalson -co -clowes -cliche -clevette -cleven -clerico -clearwater -civiello -ciullo -citro -cirocco -cioppa -cilek -cieszynski -cieri -cicerchia -ciaschi -ciani -cianchetti -chudy -chuc -chryst -christodoulou -christin -chrisley -chokshi -chmela -chkouri -chiodini -chio -chimilio -chilen -chilek -childrey -chier -chicas -chiaro -chiappone -chiappinelli -chiado -chhom -chesterfield -chesteen -cheshier -cherrez -cherep -chene -cheevers -checkett -cheaney -chayka -chawla -chasin -chasen -charvat -char -chapoton -chantos -chantler -chant -chadez -chad -chaco -chabez -cerrito -ceppetelli -centanni -celso -cederberg -cedar -cecchetti -cavel -cavanah -cavagna -catus -catton -catterton -catrambone -catherwood -catherman -cataldi -castellana -castellan -cassey -casparis -casilla -cashdollar -casaceli -carvana -carriedo -carrecter -carraher -carrabine -carpinelli -carouthers -carnovale -carmany -carles -caretto -careaga -cardosa -cardelli -carbine -carathers -caraker -caracci -capuchin -cappelletti -capistran -capdeville -caparros -canute -cante -canizares -canel -canclini -cancino -campus -campise -campen -cammarano -camilli -camic -camey -calwell -calvey -calvary -callo -callinan -callais -calizo -calixto -calisto -calip -calibuso -caira -cahillane -cahalane -cahal -caffery -caffarelli -cafarelli -cadlett -cacciatori -cabebe -byus -byrnside -byrer -byone -buza -buttrum -buttel -butremovic -butanda -bustin -bussen -bushlen -bushart -burtchell -burrel -burnard -burlett -burkeen -burce -buote -bunyan -buntrock -bunck -bumpas -bulleri -buglione -bugge -bueter -buerk -buenger -buehrle -buechele -budrow -buddenhagen -bucolo -buchenau -bucco -buccino -bubar -bruzas -brutsch -bruschke -brunot -brungard -brund -bruender -brucks -bruchey -brozowski -brownd -brothern -broomhead -bronw -brom -brog -brodigan -brockhaus -brockel -broadaway -brletich -briston -brissett -brines -brillon -brilliant -brightbill -brigges -briel -bresciani -brents -breitmeyer -breithaupt -breidenthal -breden -bredemeier -breckinridge -brecheisen -brecheen -breazeal -bream -brazzel -brawdy -brave -brashers -branz -branyon -brantz -brannam -brankovich -brandle -branchaud -branca -bramley -bramante -bramall -brakeman -bradby -bozzo -bozelle -boyarski -bowline -bowey -bowerize -bowdon -bowdler -boutros -bouten -bourdier -bouras -boufford -bottex -bottemiller -bothman -botcher -boshers -borris -bornemann -bonus -bonnot -bonifant -bongiardina -bonenberger -bonasera -bollier -bolar -bokman -bokanovich -boissonnault -boiles -bohrn -bohlke -bogenschutz -bogel -bogda -boevers -boever -boender -boehringer -boehne -bodor -bodda -bodak -bocker -bockenkamp -boche -blyden -bluto -bludworth -bloxsom -blomstrom -bloise -bloebaum -blier -bleiweiss -blegen -bleacher -blaum -blasz -blasingim -blasengame -blanda -blagman -blackstad -blackham -blache -bixel -bitters -bissegger -bisker -bishoff -bisard -bis -birtwell -birley -birkenmeier -birkenholz -birkeland -birdsey -birdo -birdinground -binner -bilsborough -billot -billops -billingham -bigney -bigg -bienkowski -bienek -bielefeld -bielec -biddie -bickell -bichler -bibo -biava -biagi -biagas -bhayani -bez -beyene -beyda -bevels -bettner -bettinson -betson -beto -bessix -bessire -bertschy -bertozzi -bertoncini -bertelson -berteau -berrong -berrones -berringer -berrigan -bernsen -berlingeri -berken -berka -berges -bergdorf -bergara -bergant -bergamini -beren -berdugo -berdine -berberian -benvenuti -benish -benincase -benek -benedith -bendas -benak -bena -beltrame -belsheim -belotti -bellrichard -belleville -beliles -belgrade -belcastro -bekius -bekhit -beightol -behel -beetz -bedson -becze -beckmeyer -beckey -beckers -beckelhimer -beccue -beberwyk -bebber -beamesderfer -beacom -bazzle -bazil -baynham -bayhonan -bayas -bawany -bava -baumgardt -bauerkemper -baudry -baudino -battko -battisti -batta -bassano -baskas -baseler -basanta -bartucci -bartron -barthold -bartamian -barsalou -barrineau -barriger -barreneche -barkie -barich -bardes -barbano -baral -baragar -baque -banther -banome -bannowsky -banke -baniaga -bandley -banahan -banaag -bamba -baltzer -balster -balnis -balkin -bali -balfe -balerio -balent -baldyga -baldor -baldinger -baldassano -baldacci -balanoff -balado -balaban -balaam -bakes -bajwa -baisch -bahnsen -bahls -bahler -bahamonde -bagdasarian -bagaoisan -bafia -baese -badolato -bado -badder -bacurin -backers -bachor -babe -babbit -babauta -baadsgaard -azzara -azebedo -avril -avello -aveline -authur -ausby -auricchio -auna -aukerman -auckerman -auck -auble -atterson -attard -aswegan -aste -asta -assaf -aspen -asken -asif -asiedu -ashner -asel -aschenbach -arvay -arvan -artus -artley -arrollo -aroyo -aronov -aromin -arnsworth -arnspiger -arnn -armant -arington -argubright -arentz -arcoraci -arbuthnot -arbo -aquilina -aquilera -apt -apsey -appolonia -apollo -apana -antista -anshutz -anon -anno -annala -anklam -angold -angelone -angeline -angeletti -andren -andreadis -andera -andelman -andel -anctil -anchors -anacker -ampy -amons -amirault -amir -amezaga -ameigh -alyea -altvater -altig -altermatt -alo -almengor -alme -allvin -allocco -allegrini -aliment -algee -alexanian -aler -aldo -albero -alarid -akiona -akemon -ajello -aitcheson -ainley -ailey -ahluwalia -ahlf -ahlbrecht -agundez -agro -agins -aggarwal -afalava -adriano -adomaitis -adolphus -adlam -adie -adey -adduci -addleman -adamyan -acothley -acklen -ackert -ackerly -acencio -accosta -abundiz -abedi -abbassi -abbasi -aanerud -aakre -aagaard -zwickl -zuver -zurasky -zumbo -zumba -zuckerwar -zuccarelli -zubris -zoucha -zorns -zorc -zitzow -zitzloff -zirkles -zippe -ziola -zinz -zinsmeister -zincke -zieschang -zierdt -zien -ziemke -zidek -zickler -zeuner -zerba -zera -zenger -zeltmann -zelle -zelinka -zelek -zele -zeiner -zeimet -zeidler -zecchini -zebley -zdanowicz -zbell -zaro -zaremski -zar -zani -zancanella -zana -zambarano -zakar -zadorozny -zader -zaccaro -ysquierdo -yoxall -youst -youngstrom -youn -youker -yoss -yoshina -yonke -yonemura -yohannes -yock -yerhot -yengo -yehle -yanofsky -yaker -yagues -yach -ya -xue -wyrosdick -wygle -wygand -wurzer -wurl -wunderlin -wunderle -wuerth -writer -wrighten -wrich -wozny -wozney -wowk -wouters -wormington -worf -woolem -woodrich -wooderson -wonder -womeldorf -wolz -woltmann -wolstenholme -wollmuth -wolle -wolfard -woldridge -wojtanowski -wojner -woitowitz -woehl -wittenburg -wittel -witschi -witaszek -witaker -wiszynski -wiswall -wiss -wisher -wisenbaker -wires -winsky -winfough -windler -winckler -wimes -wiltberger -wilm -willrich -willoby -willimon -willenborg -wilda -wilczewski -wilcock -wiggens -wigboldy -wiesler -wies -wienhoff -wielgus -wiebers -wieber -wickizer -wichrowski -wibbens -whyard -wholey -whitsey -whitlingum -whitlach -whirry -wharry -wharff -whack -weyman -weyler -wethje -westveer -westmorland -westerhold -wesselman -wesloh -wery -wermers -werlinger -werksman -wenzinger -weninger -wendeln -wendelin -wenck -wember -welters -welland -welchman -welchel -weitnauer -weissler -weinger -weimann -weigert -weidert -wehby -wehbe -weck -wechter -weaving -weather -weal -weagle -wdowiak -wayns -waycott -waychoff -waterfall -watcher -watahomigie -wasowski -wasner -washko -washing -washell -wartenberg -warson -warrenfeltz -warp -warmbrodt -warhurst -wardsworth -wanzek -wanta -wansing -wankel -wangberg -wanberg -wamack -waltzer -walthers -walterson -walshe -walrond -wallschlaeger -wallgren -walema -waldram -waldhauser -waldecker -walby -wakin -wakabayashi -wah -wagy -waggner -wagenaar -wage -waffle -wadzinski -wademan -wackerly -wachs -wable -vredenburg -vrana -vrable -voyer -voto -vosper -vosberg -vorhees -voran -vora -vonstein -vondoloski -voltin -volpicelli -volland -volentine -volcko -vojtko -voice -vogeler -vizzini -vizena -vix -vitko -viste -visor -visco -virock -vinup -vinion -vincenzo -villas -villarta -villari -vilello -vigne -viener -vielmas -vielhauer -viehman -vidulich -vidinha -videen -vickerson -vicker -vertz -verry -vermeesch -verhulst -verhoff -verhagen -verhaeghe -vergo -vergeer -verdino -venus -ventrella -ventola -venter -vennes -venneri -venditto -velzy -velilla -velie -velandia -vecker -vecellio -vear -vavricka -vautrin -vates -vassall -vasmadjides -varty -varriano -varriale -varrato -varnedoe -varillas -vardaman -varajas -vaquero -vanzyl -vanvleet -vanvleck -vansoest -vanskiver -vanskike -vanruler -vanputten -vanoy -vanous -vanoort -vanliew -vanlew -vanhulle -vanhoozier -vanhofwegen -vanhaitsma -vanecek -vandrunen -vandixon -vandivier -vandiford -vandezande -vandewege -vanderzanden -vanderwerff -vanderwerf -vanderschel -vandergiessen -vandenberghe -vandehei -vandee -vancheri -vanbramer -valsin -valli -valido -valenzano -vajda -vaillencourt -vacheresse -va -uzdygan -uyetake -usilton -urueta -ursprung -ursiak -urquilla -urquidi -urfer -ureta -urbancic -ura -upwall -uptegrove -uphaus -upadhyaya -unterburger -unch -unavailable -unangst -umphenour -umbenhauer -ulseth -ulatowski -ukosata -uhyrek -uhrmacher -uhlich -ueno -uelmen -udoh -ude -uchytil -tzeng -typhair -twelves -twehous -tuxhorn -turybury -turro -turne -turnblom -turkus -turks -turbin -turbes -tunick -tumpkin -tuholski -tuggie -tufnell -tubertini -tubaugh -tsutsui -tsuha -tsuda -tsinnie -trupp -trupiano -trupia -truner -trundle -trumm -trullinger -truell -trucco -trowers -trover -trosien -tronnes -trompeter -tromp -trolio -troendle -trobaugh -triska -trimarco -trifiletti -tridle -tricoche -tresvant -trest -tresler -tresca -tremont -tremayne -treinen -treichler -treglia -treamer -traxson -traugh -trasher -trapasso -trant -trancoso -traister -trailor -trageser -traficante -trac -toya -towson -tovrea -totherow -tote -tortorelli -torri -tornabene -torigian -torello -toppa -topor -toothill -toop -tonsil -tomsich -tommie -tomlison -tolmich -tollner -tollefsrud -toledano -tolayo -toenges -toefield -tock -tobiasz -tobery -tobert -toban -toback -tjarks -tiznado -titlow -tishler -tirabassi -tippet -tinkey -timson -timperman -timmis -timmermans -timme -timberman -tikkanen -tietze -tierman -tiberi -thuringer -thul -thu -thro -thornwell -thomlison -thomlinson -thomassen -thimmes -thilking -thierman -thielemann -thiboutot -thibideau -theresa -theard -thavichith -thaut -tezak -tetzloff -teto -tetlow -tessler -tesseyman -teskey -tes -terzian -terwillegar -tervo -terronez -ternasky -termini -terboss -teramoto -tepley -tenuta -tenen -tellio -tellefson -telecky -tekell -tefertiller -teece -tedesko -tederous -tebeau -tear -teahan -tazewell -tazelaar -tavano -tatsapaugh -tatlock -tataris -tassinari -tassie -tarvis -tarkey -tarangelo -tappa -tanna -tanikella -tamblyn -tamaro -talyor -tallas -talayumptewa -talaska -taj -tagliarini -tagata -taflinger -taddonio -tacderan -tablang -tabisula -tabicas -tabar -szwed -szumski -szumigala -szollosi -szczesny -sypniewski -syon -sylvan -syal -swor -swoopes -swoap -swire -swimmer -swiler -swida -sweezer -sweep -sweeley -swede -swearengen -sweadner -swartzwelder -swanhart -sveen -svay -sutyak -sutten -sutler -suski -surprise -supernault -suozzo -suns -sunder -sumney -summarell -sumera -sulzbach -sulfridge -sukhram -suk -suitor -sughroue -sugahara -sudlow -sudan -sudak -subido -style -stweart -sturz -sturdy -sturchio -stulce -stukenborg -stuckemeyer -stsauveur -stroll -strohmeier -strissel -strimple -stremmel -streczywilk -strawhorn -stratz -stratos -straton -strassner -strama -strada -stoss -storti -stomberg -stolze -stoliker -stoler -stolberg -stolarik -stohlton -stofko -stofflet -stoff -stoesser -stoeber -stodden -stobierski -stobbs -stjohns -stirrup -stirman -stinehelfer -stimmell -stimits -stigger -stiers -stieff -stidam -stewarts -stevinson -stevey -sterett -ster -steppello -stepnoski -stentzel -stencil -stencel -stempien -steketee -steinbruckner -steinborn -steigman -steiber -stegent -steffani -steerman -steenken -steenhard -steedman -steckley -stealey -stayrook -stavnes -stauss -stash -stary -stare -stant -stanfa -standfield -standberry -standage -stanco -stanage -stampe -stamdifer -stalworth -stalma -staires -staines -staine -stahlberg -stadden -staberg -stabel -spurgers -spruce -sprinkel -springman -spriggle -sporleder -sporcic -spontak -sponholz -spohr -spittle -spiry -spiece -spicuzza -sperlich -sperdute -sperazza -spelts -speares -speakes -sparhawk -spaniel -spaar -soyars -soverns -southam -sour -souphom -soun -soula -sossamon -sosh -sosby -sorsby -soroka -soricelli -sorgi -sorbera -soplop -soohoo -sonoda -sonny -sonneborn -somodi -sommese -solman -sollie -solla -solina -soliani -soley -solecki -solages -sohre -soenksen -sodeman -sobiech -soberanis -snobeck -snerling -sneider -snaza -smolic -smigel -smigaj -smiechowski -smida -smerkar -smeby -slothower -slotemaker -slodysko -slivka -slimmer -slight -slifko -slayter -slawski -slauson -slatten -slain -skultety -skrip -skowyra -skorupa -skordahl -skomsky -skoff -sklenar -skeldon -skeesick -skea -skagen -sjostrand -sixtos -sivyer -siverson -siverling -sivan -siva -sitzler -sither -siskind -siske -siron -siregar -sirbaugh -sirak -siptak -sinstack -sins -siniscalchi -singlton -sinden -sinagra -sina -simpon -simmoneau -simler -simkulet -simi -simeona -simens -silverstone -silverness -silsbee -sillas -sileo -silbert -sikula -siglin -sigley -sigafus -siew -sietsma -sierras -siembida -sieker -siedlik -sidur -sidell -siddoway -sibille -sibilia -sibbald -shusta -shuskey -shurts -shryack -shroll -showell -shove -shoulars -shortino -shopp -shmidt -shiu -shirar -shinners -shingles -shinabery -shimko -shibles -shertzer -sherrin -sherril -shellhamer -shellhaas -sheldrup -sheladia -shehab -sheff -sheck -shearman -sheaff -shauer -shatswell -shaske -sharick -shappard -shallcross -shala -shaklee -shakespear -shafe -shady -shadwell -shacklett -seymor -settlemire -setting -sether -sesma -sesareo -seryak -serven -sers -serbus -serb -seppi -sephus -sentinella -sensel -senf -senato -sempek -semidey -semasko -selz -seltz -selmer -selitto -selim -seiser -seikel -seigle -seid -segouia -segner -segerson -segala -sefcik -seeholzer -seegert -sedita -sedenko -sedar -secondo -seckinger -sebald -seba -seahorn -seabright -scotty -scothorn -scordato -scoma -scobie -scipione -sciara -schwieterman -schwendemann -schwede -schwartzbach -schwarcz -schwalen -schutzman -schunemann -schulweis -schul -schuffert -schuckers -schrull -schrubbe -schreyer -schreckhise -schreader -schoonhoven -schoolman -schol -schoettmer -schoepf -schoenle -schoenecker -schobert -schnyer -schnoke -schnipper -schneiter -schneekloth -schnapp -schmits -schmelzle -schmelz -schmeisser -schmeiser -schmahl -schlotzhauer -schlott -schlossberg -schlipf -schlicker -schleuder -schleimer -schlauch -schlau -schlaefer -schiesser -schieler -schied -schie -scheuvront -scheumann -scherz -scheperle -schenewerk -schemm -schellenger -schaupp -schauf -schaudel -schau -schatzberg -scharr -schappert -schapp -schamel -schallhorn -schaefers -schadt -schadel -schackow -schabowski -schabes -schabert -schab -schaab -scavotto -scarver -scarsella -scarbro -scampoli -scammon -scallon -scalley -scale -scafuri -scadden -scacco -sawchuk -saviano -saverchenko -savelli -savarino -satsky -satoe -sarwinski -sartorio -sartorelli -sarria -saro -sarna -sarkin -sarisky -sario -sarazin -sara -sapia -santmyer -santmier -santillana -santanna -santacroce -sansouci -sannes -sanez -sandvig -sandino -sandella -sanburg -samy -sammer -samit -salvucci -salvey -salvatori -salvant -salvage -salts -salton -saltarelli -salt -salome -sallade -saletta -salehi -saleeby -salameh -salama -salaiz -salafia -sakry -sako -sakash -saitta -sahu -sahara -saguil -sagrera -saglimben -sagi -saggio -sagen -safranek -safko -saeli -sadar -sacre -saccardi -saborido -sabins -sabet -sabbah -saale -rynne -rynders -rylands -rykowski -ruzbasan -ruwe -rutiaga -ruthledge -rutecki -rusu -russler -rurup -ruozzo -ruot -runels -rumphol -rumpel -rumpca -rullo -ruisi -ruic -ruhle -ruffaner -rufer -ruetz -ruesink -ruehle -ruedy -ruden -rubulcaba -rua -roya -rowald -rovner -rouselle -roura -roulston -rougeaux -rotty -rothery -rotert -rossler -roskowinski -rosiak -rosh -rosenstock -roselius -roscigno -rosaro -rosada -roperto -ropers -rookwood -rongo -rondinelli -ronda -ronchetti -romrell -rollinger -rola -rokos -rohwer -rohrscheib -rohlf -rogal -rogacion -roeschley -roers -roemen -roelofs -roekle -roehrich -rodriguel -rodges -rodeen -roddey -roddam -rocquemore -rockers -roccia -robishaw -robida -robichau -robertshaw -roberton -roberta -roberg -rob -roary -rizzuti -rizal -riveros -rittenour -risper -rippin -ripp -riola -riogas -rinner -ringus -ringhand -rinehardt -rinderer -rigotti -righetti -riggi -riggans -rigazio -rigatti -rifenburg -rieu -riehm -riegler -riech -riebau -ridgel -ridens -ridener -riddel -rickner -richardt -ricciardone -rhynard -rhyan -rhoderick -rho -rheinschmidt -rezak -reusing -rettkowski -retterath -retta -reshid -reppe -repke -reos -reome -rensen -renschler -renova -renollet -renison -reninger -rengers -rengel -renart -rena -relihan -reisen -reiniger -reindel -reil -reier -reh -reggio -regener -reekers -reeger -redmann -reddinger -redcay -reckling -rebert -reategui -reagin -reagen -readnour -razzano -raynolds -rayer -raybould -rawdon -ravotta -ravo -ravitz -ravert -rathert -raterman -ratel -raque -rapko -ransone -ransburg -rangnow -randon -rancifer -ramotar -ramones -ramone -ramire -ramin -rameres -rakoski -rajala -raithel -rainie -rainge -rainbow -raigoza -rahming -ragazzo -radomski -radish -radilla -raden -radde -racano -rabine -rabil -rabell -rabasca -quiterio -quinzi -quink -quinci -quilliams -quiller -quider -quenneville -quelch -queeley -quear -quattro -quastad -quaglieri -pyscher -pust -purtle -purtill -purdin -puorto -punja -pullem -pulfer -puleio -pujia -puetz -puehler -puebla -ptomey -przewozman -prysock -pruter -prunier -pruess -prudom -pruchnik -proveaux -prophit -promise -procknow -proby -pro -prive -preziosi -preza -prem -preite -preisser -pregler -precella -prazma -prats -prator -prakash -prahm -prader -pozniak -poxon -powledge -pouge -pott -postlewaite -posthumus -posnick -posley -poskey -porro -poreda -poppema -popat -pondexter -ponciano -pompilio -pommer -polosky -pollom -pollo -pollica -pollaro -polizio -polek -polack -polacek -poirot -poertner -poduska -pockrus -pochintesta -pluym -pluhar -pluck -pliner -pliml -plese -pleasent -playle -plasky -plane -plack -pizani -pitz -pittari -pitruzzello -pistorius -pistilli -pisha -piselli -pisco -piros -pirone -pirolli -pirman -pirkl -pirie -pique -pintado -pinkey -pingrey -pinger -pinelo -pilsner -pilley -pilgreen -piles -pila -pignatello -pietig -pierrott -pierron -pierceall -pieratt -pienta -piekos -piechota -picquet -pickar -picerno -piceno -phyfiher -phorng -phearsdorf -pharmes -phariss -pfuhl -pfenning -pezzetti -pevy -petzoldt -pettrey -pettas -petta -petross -petrochello -petriello -petrelli -petch -pestoni -pestano -pesick -pesavento -perzanowski -perrien -perrenoud -perque -peroff -perlas -perkerson -perisho -perich -perfect -peregrino -peregoy -perch -pequeno -penza -pensis -penquite -peniston -penister -pendola -pendergraph -pelle -pelczar -pelch -pela -pehler -pegoda -peelle -peeling -pedroni -pedlar -pedder -pecoraino -peckman -pechal -pebsworth -peasnall -peasant -pead -peacemaker -paytes -paysen -payn -pavletic -pavlat -pavlas -pavese -paup -paulis -patrice -patocka -pat -pastorino -pascocello -parthemer -parreira -parido -paretti -pardun -parchment -papstein -papps -papetti -papakostas -pantoni -panik -panfilov -panfil -pana -pampusch -pamperin -palmitessa -palmero -pallett -palilla -palese -palesano -palange -pagenkopf -padon -padmanabhan -padinha -packen -pacitto -pacchiana -pabich -oza -oyabu -overdorf -ourada -otukolo -otterbine -ottalagano -oto -other -otano -osting -ostiguy -osterholt -osley -oscarson -osaile -ortz -ortolano -ortea -orte -ortaga -orszulak -orser -orihuela -orejel -ordorica -ording -ordal -orbin -oransky -oppel -onsgard -ondrick -olsin -ollmann -olives -olavarria -olano -olafson -okuno -okuniewski -okuhara -okrent -okoniewski -okeke -ohs -ohotnicky -ohno -ohlund -ohlendorf -ohaire -ogaz -ogando -offield -odiorne -oclair -ockenfels -ochocki -ocamb -ocallahan -obleton -oberly -oberhelman -oberbeck -nylin -nydick -nwachukwu -nutzmann -nuque -nunz -nulle -nuffer -notti -nothum -nothnagel -notah -nossett -nose -nosbisch -norrix -norlien -norkin -nordon -nordmeyer -norat -nooe -nokleby -nofziger -noens -nivison -niu -nittler -nissalke -nishikawa -ninness -nin -nimon -nifong -niewieroski -nietzer -niemela -nicolette -nicoletta -nico -nickolas -nickless -nicklaw -niccoli -nibbs -neyland -newmark -newey -newbauer -nevwirth -neverman -neuser -neumaier -neufville -netzley -netzel -nettle -neiswonger -neiswender -neilan -neidhardt -neesmith -nebgen -navia -nate -nasuti -nasso -nassimi -nashe -nases -naro -nardo -narasimhan -naqvi -nanka -naman -nahrstedt -nagura -nagarajan -nadile -nabours -nabers -mysinger -mynear -muzzarelli -muthig -mustian -muskus -muskelly -musi -mushtaq -musca -murzynski -murzyn -murrillo -murello -murdy -murakawa -munsinger -munnell -munks -munkberg -mundorf -mummey -mullick -mulkin -mulhollen -mulgrew -mulderig -mulac -muehl -muddiman -muckerman -muckenthaler -much -mucciolo -mruczek -mrazek -mowat -moure -mould -motts -mosure -mossor -mossberg -mosler -mosha -moscrip -moschetti -mosbarger -morua -morss -morron -morrall -moroni -morioka -moricca -morgensen -morganson -moreshead -morely -morch -moras -morar -moranville -moralas -morak -moradel -moothart -moonen -monzingo -montpetit -montjoy -monteagudo -monoz -mongrain -mongon -mondejar -monas -monachino -momplaisir -momin -moment -molpus -molony -molner -molleda -molinski -molinelli -molfetta -molenda -molchan -mohseni -mogg -moerke -moenius -moehlman -modugno -modi -modest -moder -moch -moat -miyamura -mittlestadt -mittelstedt -mittelman -mitschelen -mitro -mitchan -misty -missey -misenhimer -mirra -mirjah -mirante -miosek -minteer -minrod -minning -minney -minnema -minium -minihane -minicucci -minecci -minchey -milota -millson -milloway -millonzi -millier -milley -millam -milillo -milbrath -mikowski -mikola -mikler -mihelic -mihaila -miesen -mierzejewski -mickels -michienzi -michalke -miazga -mezydlo -mezick -meynard -meylor -mexicano -metsker -metrick -meter -mestad -meske -mertins -merta -mersinger -merschman -merna -merila -meridieth -mergen -merel -menzella -menze -mentnech -menson -mensick -mennig -mendillo -memos -melroy -melochick -mells -mellgren -meline -melich -melena -melchiori -melching -melahn -meisler -meinerding -meilleur -meidlinger -mehner -megrabyan -megee -meeuwsen -medlar -medick -medema -mechler -mechanic -meadowcroft -mcpike -mcpeake -mcnell -mcneary -mcmutry -mcmeekin -mcmannus -mcluen -mclouth -mclerran -mcleoud -mclagan -mckone -mckneely -mckissic -mckinnell -mckillips -mckibbon -mckenty -mckennan -mckeeman -mckasson -mcinturf -mcinerny -mchan -mcgurn -mcguirl -mcgue -mcgrain -mcgonnell -mcglumphy -mcglauflin -mcginity -mcgibboney -mcgeough -mcgauley -mcgarvie -mcfatter -mcentegart -mcenroe -mcelmury -mcelhinny -mcdonnel -mcdoniel -mcdoe -mcdermond -mcdearmon -mcdearman -mcday -mcdannald -mcdaid -mccurren -mccrosky -mccrane -mccraig -mccooey -mccoo -mccolpin -mccolloch -mcclucas -mcclester -mcclement -mcclamroch -mcclammy -mcclallen -mccarte -mccaie -mccaddon -mcanelly -mcalmond -mcalary -mazzini -mazzarino -mazzara -mazzanti -mazurk -mazor -mayerle -mayenschein -mayard -mayans -maxedon -mavromatis -mavins -maves -mausser -maulsby -matya -matuke -matto -mattler -mattiace -matkowski -mathern -matero -matchette -matayoshi -matar -mastine -massing -massimo -masseria -massenberg -massard -masoud -masotti -maslak -masey -masella -mascarena -mascall -marzella -maryott -marwick -marugg -martt -martinis -martian -martha -marstaller -marsingill -marsicek -marotto -market -markegard -marke -marinella -marien -margison -margheim -margason -margaris -margaret -marett -marentes -marcott -marcon -marchena -marcellino -mapston -mantione -mantanona -mansouri -manoi -mankus -mankins -manin -manikas -mangieri -manfredini -mane -mandt -mandolini -mandley -mancina -manas -maltsberger -maltais -malmin -mallis -mallicoat -malleck -mallach -malkowski -malkani -malito -malensek -malandra -malander -makos -makanani -maille -mail -maidens -maid -mahowald -mahala -mahajan -magnotta -maggiore -magel -maestos -maerz -maedche -madise -madi -mades -maddaloni -madayag -madaras -macnair -mackinlay -mackesy -machon -machia -machey -machesky -machacek -maceyak -macchio -macbride -mabray -maasch -lyseski -lykken -luzania -luxenberg -lutrell -lupkes -lupino -lupardus -lunnon -lunghofer -lundvall -lundby -lundborg -lulow -lukman -lukin -lukaszewski -lukacs -lugones -luger -lueder -ludeke -lucek -lucchetti -lucchese -lozowski -lozaro -loyer -lowthert -lowdermilk -lovitz -lovinggood -lovenduski -loura -loung -lounder -louks -loughry -loudermill -lotta -lostetter -loskot -losiewski -lorman -loren -lorelli -lorange -lonsinger -longinotti -longhurst -lomedico -lola -lohwasser -lohn -lohden -lograsso -logie -loftman -loften -lofaso -loewer -loehrs -locy -loconte -lockerman -lockerby -locken -lobaton -loatman -lleras -lizak -livingood -litwiler -litvin -littledave -lites -lisee -lipszyc -lippy -lionello -linsday -linnear -linklater -lingbeck -lindie -lindenfelser -lindenberger -linarez -limber -lily -lightning -liffick -lieto -liestman -liepins -lieng -liebross -licciardi -licavoli -libbee -lhuillier -lhommedieu -leyra -lewman -levreault -levitre -levings -levick -levecke -levanger -leval -leva -leuthold -leuenthal -letze -letterlough -leski -lerwill -lertora -leppla -leopoldo -leonides -leonardis -lenoue -lenoch -lengerich -lemont -lemmert -lemery -lemaitre -lella -leko -leithauser -leisher -leise -leisch -leiendecker -leiber -leialoha -lehtomaki -lehigh -leggs -legate -leflar -lefeber -leezer -ledden -lecleir -lechliter -lebrane -lebarron -leason -leapheart -leadman -lazarte -lawin -lavole -lavesque -laverdure -lautner -lauthern -laurila -laurendeau -launderville -laumeyer -latina -laszlo -lassan -larzelere -larzazs -larubbio -larriuz -larew -laremont -laredo -lardizabal -larance -lappa -lapolla -lapatra -lapaglia -lantieri -lannan -lann -langwith -langolf -langloss -langlo -langholz -langhart -langfitt -langendorf -langenbach -langbehn -lanehart -landoni -landherr -landberg -landazuri -lancey -lamus -lamunyon -lampitt -lampiasi -lammon -lamme -lamirand -lambes -lamarta -lamarra -lalim -lalande -laky -laitila -laidler -laich -lahue -lahtinen -lagrasse -lagrand -lagle -lagerstrom -lagerberg -laferney -lacson -lachenauer -lablue -labean -lab -kuzara -kuza -kuy -kutchera -kustra -kurtyka -kurschner -kurka -kunstlinger -kunka -kunicki -kunda -kulling -kulla -kulbida -kuker -kujath -kujala -kuhta -kuhner -kuhle -kufalk -kuennen -kuen -kudley -kucharik -kuca -kubic -kryst -krysh -krumenauer -kruczek -kroschel -kronk -kroells -krivak -kristoff -kristin -kreuziger -kreitz -kreisberg -kreiman -kreighbaum -kreh -kreck -kraszewski -krason -krammes -krake -kozusko -kozola -kozikowski -kozielski -kowis -kowalske -kottman -kottler -kottenstette -kostelnick -kosmowski -koska -kosinar -kosik -kosanovic -kosanke -kortge -korsak -kornbau -kordas -korby -korbel -kopperman -koppenhaver -kopischke -koper -kopelman -kopel -kopas -kooser -koors -koor -koone -koogle -konzen -konieczka -kondracki -kondos -komatsu -kolo -kolarik -kolacki -kokesh -kohrt -kohrs -kogel -kofron -kofman -koewler -koetting -koes -koellner -koellmann -koczela -kocon -knoth -knollman -knoebel -knknown -knittle -kniphfer -knightly -kniffin -knaphus -knaak -kloth -klonoski -kloke -kloer -klinetob -kliger -klich -kleyman -klepchick -klemish -kleen -klebe -klakowicz -klaft -kithcart -kister -kisker -kishel -kishbaugh -kirt -kirouac -kirley -kirklen -kirkegaard -kirchen -kipka -kipfer -kinsinger -kiniry -kinikini -kingma -kinderknecht -kinahan -kimmes -kimak -killiany -killelea -kilkus -kilfoyle -kiflezghie -kiffer -kiesewetter -kienow -kieler -kiebler -kicks -kicker -kibel -kibe -kibbee -kiang -khounthavong -khatri -khamsyuorauon -kham -keye -keup -keto -ketch -kess -kerth -kero -kernell -kerkvliet -keomany -keomanivong -kennemur -kennel -kenndey -kendi -kempter -kempinski -kemna -kellan -keliikoa -keledjian -keithan -keisel -keib -kehs -kedley -keay -kearin -kawulok -kawai -kawaa -kava -kaunisto -kaumo -kauahi -kattner -katra -kastel -kastein -kassulke -kassman -kassing -kashani -kasch -karty -karstetter -karrenberg -karper -karow -karmo -karhoff -kardell -kardas -karapetian -kapper -kappen -kapichok -kanis -kaneakua -kanaris -kamuda -kamirez -kamat -kaloudis -kallberg -kallaher -kalkwarf -kalkman -kalk -kalisek -kalehuawehe -kalchik -kalbfleisch -kalberer -kalal -kala -kakimoto -kaing -kaigle -kahill -kahanaoi -kaemmerling -kadri -kadle -kading -kadi -kadar -kachmar -kachiroubas -kachelmeyer -kaase -juve -juul -justinger -jungwirth -jungman -jungck -julander -juenemann -jubie -joun -joswick -jossund -joss -jory -jonnson -jongsma -joliet -johngrass -jocoy -jing -jimerez -jimbo -jeudy -jerowski -jernstrom -jernstad -jernberg -jeoffroy -jentry -jennie -jeng -jenaye -jemerson -jeltema -jeanpaul -jeanmard -jax -javery -jaudon -jasperse -jasmer -jarred -jarrar -jargas -jardot -jardell -jaquay -jappa -janower -jankoski -janise -jandrey -jandl -jakubiak -jakobson -jakobsen -jahncke -jagers -jacobitz -jackon -izard -ivel -itzkowitz -itani -issacs -isome -isle -islar -isidro -isidoro -isch -irvan -irizary -irene -ipson -ip -ioele -interiano -insalaco -iniestra -ingargiola -impson -illiano -iller -illa -ilardi -iida -ihrke -igneri -igbal -igartua -iffland -idell -iberra -iba -ianacone -hysong -hyrkas -huzzard -huttle -husselbee -husseini -hupe -hunzeker -hunnicut -humprey -humbird -humason -hugle -hufana -huestis -huesing -huell -hudy -hudley -hudas -hudalla -hudack -huckfeldt -hubka -hubenthal -huante -hsing -hromek -hritz -hrdlicka -howzell -howles -howat -hovarter -houy -housler -houska -houseal -houlberg -hostert -hosman -hoscheid -horvers -hortin -hornish -hornbeak -hornaday -hoppman -hopfer -hoot -honts -honsberger -hons -honnen -honberger -honahnie -homma -homesley -holyoak -holweger -holubar -holtzer -holtrop -holtberg -holpp -holmquest -hollinghead -holje -holgerson -holabaugh -hoitt -hofford -hoffmaster -hoffine -hoffelt -hoes -hoellwarth -hoegh -hoegerl -hoeger -hodrick -hodgkiss -hodek -hockey -hobday -hlavacek -hlad -hitzeman -hitzel -hitsman -hissong -hissam -hiscock -hirz -hirshberg -hipkins -hinsch -hinken -hinckle -hinchliff -himmons -himmelwright -himmelspach -himebaugh -hilst -hilmes -hillsgrove -hillestad -hillesland -hillegass -hilfiger -hilado -highshaw -highers -higginbothan -higbie -hieronymus -hidy -hickory -hickernell -hibma -hibbets -heximer -hewgley -heutmaker -heuschkel -heupel -heumann -heuman -hetzer -hetherman -hesterman -hespe -hertweck -herson -herry -herrboldt -herms -hermosilla -herl -herbolsheimer -herbel -hera -heptinstall -heppler -heppell -henslin -henschen -hennington -hennagir -henkhaus -henken -henggeler -hempfling -hemmerling -hemish -hema -helveston -helsey -helscher -helo -heline -helfin -helder -heitner -heiple -heinzelman -heinricher -heines -heimsness -heiler -heidelburg -heiberg -hegner -hegler -hefferman -heffelbower -heebner -hediger -hedding -heckbert -hearnsberger -heaivilin -heagle -heafner -hazelrig -hayth -hayoz -haydu -haybarger -haya -havers -haverfield -hauze -haugabrook -haub -hathcoat -hasychak -hassin -hassey -hasenberg -hasek -harvat -haruta -hartvigsen -hartong -hartke -harre -harradon -harnisch -harmond -harmening -harlem -harkrader -harklerode -hargitt -hardon -hardgrave -hardester -harbeson -harben -hanrath -handville -handcock -hamza -hamson -hamming -hamic -hambley -halphen -halpain -halmes -hallaway -hallauer -half -haldiman -halbur -hakkila -hakimian -haimes -hahs -hagmann -hagglund -hagert -hagee -hafeman -haeber -haddan -hada -hackner -hackel -hacher -habisch -haarstad -haare -haaker -gyger -guzowski -guzi -guzalak -guyon -guyll -gutzmer -guttirez -gutt -gutierrex -gutierre -gut -gustis -gushwa -gurke -gurevich -gunyan -gumz -guisbert -guire -guintanilla -guimaraes -guillereault -guidos -guidera -guffin -guererro -guenthner -guedes -guareno -guardian -grussing -gruska -grudzien -growcock -grossenbacher -grosjean -groshans -grondahl -grollimund -groeneveld -groenendyk -grinnan -grindell -grindeland -grimaud -grigorov -griffard -grierson -grich -gribbins -gribbin -grever -gretter -grennon -grenfell -gremer -greising -greenhoward -gravitz -gravis -gravino -graubard -grates -granstrom -grannell -grandt -granat -grambling -gramajo -gralak -graise -grafe -grade -grad -gracy -goyco -goyal -govindeisami -govert -govero -gouras -goulbourne -goularte -gouker -gotwalt -gottshall -gottsch -gorum -gordo -gordils -gorbet -goonan -goombi -gooley -goolesby -goodlet -goodland -gomaz -golt -golombek -golom -golojuch -golightley -goldyn -goldkamp -goldfine -goldermann -goffinet -goetter -goethals -goerdt -goehl -goedken -goede -goedde -goeckel -godshall -godleski -godino -godine -godden -godar -gockley -gockel -gochnour -gobler -goard -gniewek -gnerre -gluszek -glunt -glotzbach -glory -glista -glisan -glende -glee -gleave -glaus -glau -glassing -gladhill -gizzo -giulian -gittins -girven -girt -girling -girardot -gipp -giovannini -gionet -gins -ginolfi -gimar -gilvin -gilliom -gilling -gillece -gilio -gildow -gilberg -gieser -gierisch -gielow -gieck -gica -gibboney -giarraputo -gianopoulos -giannecchini -giambruno -ghrist -ghiloni -geving -getto -gessford -gesner -gesick -gerstenkorn -gersbach -geroge -gerleman -gerl -gerkin -gerding -gerchak -georgiades -geoffroy -gentes -genre -genous -genge -geney -gendusa -gendel -gemma -gembler -gemaehlich -geldmacher -gehris -geffrard -geffken -geans -gavel -gavaldon -gaughran -gaud -gaucin -gauch -gattuso -gatliff -gather -gastonguay -gassen -gasior -garzia -gartz -gartley -garski -garramone -garoner -garone -garnow -garley -garibai -garguilo -garfunkel -gardley -gardecki -garcilazo -garbarini -garan -garafalo -gani -gandert -gampong -gamons -gamma -gambone -gambler -galves -galo -galm -galluccio -gallinari -gallentine -gallamore -galeotti -galella -gajica -gaisford -gaietto -gahlman -gahl -gaglia -gaffke -gaetz -gadwah -gabaree -gaar -fust -furutani -furner -furnace -furgison -furgeson -fundis -fullem -fullagar -fujisawa -fugit -fugh -fuemmeler -fuelling -fude -frusci -frosch -frontera -fronek -fritzman -fristoe -frishkorn -frilling -frigge -friels -friehe -friedline -fridlington -frezzo -frezza -fresta -freise -freiman -freidhof -freiberger -freetage -freet -freemyer -fredin -fredenberg -frayne -fraughton -franzel -frankie -frankenstein -frankenberg -francher -franch -francesconi -franc -fraize -fragmin -frabott -foxman -fouty -fournet -foulcard -fouhy -fougere -fotopoulos -forsmark -fornell -form -forline -forguson -fontus -fontanella -folkner -fok -foggie -fogelman -flumerfelt -fluegge -fluegel -fluck -floe -flocco -flitsch -flirt -flinders -fletchen -flechsig -flebbe -flathers -flatau -flamer -flaharty -fladger -fitten -fitchpatrick -fissori -fissel -fischler -fioritto -fiori -fiorentini -fiorella -finnemore -finkelson -fingleton -fingerhut -finazzo -filmer -fillip -fillingham -filipek -filan -figurski -figueron -figueiras -figley -fiedor -ficker -fickas -fevig -feutz -fetner -fertal -ferraiolo -fernsler -fernet -fernatt -fergusen -ferg -feraco -fenny -fengler -felsted -fellner -fellin -fellenz -felkner -felkel -feliu -feleppa -felderman -felde -feigel -feickert -feibusch -fedorek -fedora -federgreen -fedalen -feck -febre -fearnow -feagler -favorito -faville -favalora -fauls -faudree -fasulo -fassino -farson -farlin -faretra -farenbaugh -farella -faraone -faragoza -fanucchi -fantroy -fanny -fangman -famiglietti -faltus -faltin -falt -falley -falldorf -falick -fala -fahrney -faggs -fafard -faes -fadely -fadel -facchine -fabionar -ezagui -evoy -evilsizer -evick -eversoll -eversman -everley -evelo -euvrard -eun -etkin -ethen -estrela -esteb -estain -estacion -esquerra -esposto -espert -eskra -eskin -eskenazi -eshom -eshenbrenner -esera -escobio -eschief -eschenbrenner -erschen -erlewine -erdner -erck -erceg -erbach -epolito -ephriam -enwright -enwall -entrikin -entress -entler -enstad -engwall -engroff -englemann -engelson -enderlin -enamorado -emme -emlay -emke -emerton -embertson -elworthy -elwick -elward -eloy -ellyson -ellstrom -ellingboe -elliam -elifritz -elgart -elerick -eitzen -eismann -eisentrout -eischeid -eirich -eikner -eickhorst -ehrler -ehrle -eglinton -egerer -egelhoff -edmunson -ecord -eckrich -eckland -echevaria -ebersold -eberenz -ebener -ebadi -ealand -eaks -eagleston -eaglen -eagin -dyals -dwelley -duy -duva -dutter -dutko -duster -duskin -dusel -durrenberger -durke -durian -dupay -duntley -dunsford -dundee -dulemba -dugi -dufficy -duensing -dueno -dueitt -duclo -dubrock -dubitsky -drumgo -drozdowicz -dromgoole -drobot -drivas -drinkwine -drewing -dressman -dreessen -drainville -dragna -draffin -dowgiallo -dovey -dougher -dottin -dossous -dossie -dose -doronio -dorning -dorko -dorion -dorinirl -doring -doorn -donohoo -donnally -donkin -donez -donerson -dondlinger -donchez -donaway -donatien -donath -dommel -domine -domin -domiano -domhoff -domek -doller -dolinsky -dolberry -doker -doil -doidge -dohman -doeden -dodridge -dodgson -dobkowski -dobie -dobes -dobert -diwan -ditomasso -distaffen -distad -dispenza -disorbo -diskind -diserens -discipio -dirico -dire -dirago -diprima -dinwoodie -dinn -dinkens -dinius -dingeldein -dimon -dimitt -dimitriadis -dilliard -dilick -dilauro -dilallo -dilalla -dihel -digilio -difonzo -difeo -dietze -dietl -diesi -diesel -dieppa -dienes -diemert -diegel -dieffenbacher -diec -dickhoff -dickensheets -dibonaventura -dibblee -dibartolo -dibacco -dhondt -dewer -develbiss -devazier -devara -deuser -deur -deuell -detzel -dettling -detro -destine -destefanis -desorcy -desomma -deslandes -desisto -desiga -deshler -deshaw -desgroseillie -desaulniers -derwitsch -derrig -derouchie -dermady -derider -derfus -derbes -depperschmidt -depoyster -depaula -dense -dennin -deniro -denio -dengel -deneen -dempsy -demmy -demmert -demichelis -demedeiros -dembroski -dembitzer -demarse -demaranville -demagistris -deluz -delson -delrossi -delrie -delossanto -delos -delmolino -dellis -dellarocco -dellano -della -delisser -delille -deleston -delerme -deleone -delehanty -delbalso -delavina -delauter -delashmit -dekalb -deguire -degross -degroote -degrasse -degrange -degrace -degasperis -deffibaugh -defaber -decrosta -decristoforo -dechert -decelle -decapua -decapite -decandia -debuse -debruler -deblauw -debella -debeer -dayrit -davidian -davick -davich -davia -daversa -davern -davault -dautrich -dausch -dathe -dastrup -dassow -darras -darnold -darks -dargis -dargatz -darbouze -dannenfelser -dannard -dampf -dalzen -dalphonse -dalluge -dalhover -daivs -dainack -daher -dagle -daghita -dagdag -dafonseca -daffern -daehler -dadson -czuba -czlapinski -czarnik -czap -cynova -cwiklinski -cuzco -cutno -curt -curbow -cunninghan -cunis -cuningham -cunico -culmer -cuhel -cuestas -cuebas -cuchares -cubr -csizmadia -crumpacker -cruell -crousore -crosten -crosman -crooked -cromuel -cromey -crockarell -croan -crissler -crispen -crismon -crise -criscillis -crippin -crilly -cresta -cregar -cragun -coye -cowing -cower -coverstone -coverdell -couty -coutant -courtnage -courteau -couper -countee -coultas -coughran -cottew -cotler -cotelesse -costen -cossin -coskrey -cosen -cosden -corvera -cortis -corsello -corrion -corrigeux -correiro -coro -cornetta -corneil -corlee -corin -corgan -corfman -corell -cordovi -cordia -cordas -corcino -corchero -coral -coppolino -coppernoll -coppens -coote -cooperstein -cooperrider -conterras -consolazio -cons -connin -connerley -conkin -congress -concienne -conaghan -comrey -cominsky -comella -comee -come -combe -coln -collums -collamore -colicchio -colee -colding -colder -colbenson -colagiovanni -cokely -coin -codde -cobrin -coak -cluxton -cluesman -clouston -closser -clopp -cliatt -clendennen -clearman -clattenburg -clarks -clapsaddle -cius -cira -ciolli -cinotti -cimko -cima -cienega -cicatello -cicale -ciarlante -cianfrini -cianciulli -churley -churches -chuong -chukes -christou -christescu -christe -chrismon -chrisler -choun -chobot -chisem -chiong -chimera -chila -chicca -chiarito -chhun -chhum -chhim -chestang -chesler -cherubin -chernosky -cherebin -chepiga -chellis -chell -cheda -checca -cheater -cheatem -chaulk -chaudhuri -chauca -chatcho -chartraw -charping -charnley -charm -charlson -charbonneaux -charan -chapp -chango -chanez -chancer -chamnanphony -chalepah -chaiken -chaddlesone -chaconas -chabaud -cestia -cessor -cervetti -cerveny -cerise -cerecer -cerasoli -cera -centini -cenci -cembura -celli -cederstrom -cdebaca -cayo -cawthron -caviggia -cavers -caveney -causley -caughlin -cathie -catan -catala -castrogiovann -castleton -castilo -castillio -castellaw -castellari -castejon -caspersen -casivant -cashio -cascioli -casciano -casamento -casadei -carwin -carvin -carucci -cartin -cartez -carston -carrio -carriaga -carretino -carotenuto -carosiello -carolfi -carnathan -carnalla -carnagey -carlill -carinio -cariker -caride -care -cardero -cardenal -carasquillo -carabez -capwell -capurro -capulong -cappucci -cappetta -cappa -capouch -caporali -caponigro -capilla -capata -capan -canzoneri -cantine -cantarano -cannellos -cannard -cannada -canlas -cangey -canaan -campoy -campany -campainha -cambi -camba -camastro -camano -calrk -callin -callari -calicutt -calemine -caleb -caldon -caldas -cajas -cadelina -cacal -cabriales -cables -bytheway -byland -byes -byan -buzick -buziak -buzhardt -butzlaff -buttolph -butta -butron -butorac -butaud -butac -busuttil -busque -busing -busboom -burwood -burright -burri -burrall -burness -burlington -burlin -burkham -burick -burich -burgner -burdex -burdell -burde -burba -buol -bundi -bulick -bulgin -bukovsky -bukovac -bujak -bugett -buffo -bueschel -bueckers -budnik -buckey -buckel -buchko -buchinski -buchana -buchaman -bucek -buba -bryans -brustkern -brussel -brusseau -bruntz -brunscheen -brunken -brumbach -bruess -brueckman -brueck -brucken -brozena -brozek -brownley -browers -brosman -brosch -broody -brood -bronzo -bronn -bromwell -brome -bromagen -broll -brofman -broekemeier -brodi -brixner -brisban -brinkmeier -bringham -bridgforth -bridgette -breznak -brewbaker -breitweiser -breiten -breitbarth -brehaut -breedan -breech -bree -bredernitz -brechner -brechbiel -breashears -brazinski -brazille -bratz -bratu -bratsch -bras -branting -brannin -bramsen -brailford -bragas -bradney -bradner -bradigan -bradica -brad -brabston -bozwell -boys -boyn -boyar -boyance -boxton -bowering -bowar -bournazian -bourgue -bourgoine -bourdage -boulier -boulds -boulding -bouch -bottum -bottorf -botero -bossler -bosshardt -bossart -bosman -borzillo -borstad -borsos -borsellino -borrayo -borowiak -borio -borgos -borglum -borghoff -boreland -bordeleau -borchelt -boorman -boole -bookwalter -bookhart -bonventre -bonucchi -bonnema -bongard -bonardi -bonadio -bomstad -bombaci -bolus -bolognese -bolnick -bolebruch -boldrin -bolder -boje -boho -bohmker -bogosh -bognar -bogin -bogatitus -bogaert -boga -boehmke -boeh -bodway -bodemann -bockhorst -bochner -bocek -boblitt -bobbit -boatfield -boast -boardley -bo -blumhardt -blower -blondell -bloemer -bloczynski -blint -blenden -blend -blem -bleininger -bleile -blehm -blechman -bleak -blattler -blattel -blatherwick -blatchley -blasing -blasen -blandin -blaire -blad -blackler -bizzle -bison -bisogno -bisking -bishopp -bischke -biscaro -bisarra -birton -birrueta -birrell -birklid -binkerd -binetti -binegar -bindrup -billerbeck -bilka -biley -bilecki -biglin -bievenue -bierwagen -biernat -bienvenue -bielik -biedrzycki -bideaux -bidding -bickman -biber -bibel -biancardi -bialy -bialke -bialecki -bhattacharya -bezak -bevilaqua -beuth -beuter -beutel -beucler -betties -betteridge -betschart -betran -bethley -beteta -beswick -bessmer -bessemer -besherse -beserra -berver -bertuzzi -bertke -berthelsen -berthelette -bertagna -bersch -berrio -bernoski -bernatowicz -bernardy -berling -berl -bergmeier -bergland -bergfield -bergesen -bergem -bergantzel -bergamo -berdecia -berardo -berardino -bequillard -benzinger -benyamin -bentzen -bennice -benke -benet -beneker -benedum -benedick -bend -bencosme -bemrose -bemiller -bemer -belzung -belmarez -bellina -bellendir -bellemare -bellantuono -bellanca -belkin -belinski -belcourt -bejaran -behl -beeker -beeghly -bedney -bedker -bedeau -beddome -beddoe -becvar -beccaria -beaz -beaushaw -beaulac -beatley -beardon -beachem -beachel -bazydlo -baydal -baxi -bauserman -baudler -batzli -battino -battee -batley -batesole -batcher -basurto -basu -bastianelli -bassage -basner -bashford -basher -bashara -basha -baselice -bartosiewicz -bartolomucci -bartnick -bartholic -barthe -bartelson -barsuhn -barson -barries -barricelli -barrena -barredo -barraz -barrale -baroldy -barne -barmettler -barjas -baris -bareis -bardach -barcroft -barcello -barbuto -barbrick -barbo -barbish -barbaria -baras -baragona -baquet -banwell -banowetz -bandle -bambhrolia -balthazar -balson -balliett -ballestas -balin -balfany -balette -baldrige -baldenegro -baldassara -baldasaro -balcorta -balckwell -balcitis -balasco -baka -baish -bainum -bailin -baile -bahlmann -baher -bagoyo -baggette -bafford -baddley -badanguio -badamo -badame -baczewski -bacorn -bacolor -bacigalupi -bachtold -bacha -babick -azzano -azua -azhocar -ayre -aydt -aydlett -axsom -awada -averbach -avenoso -auzston -auyong -autaubo -austad -aus -aurora -aultz -aulds -auldridge -aul -auge -auel -audirsch -audain -auchmoody -aubertine -auber -astry -asquith -asp -ashdown -asen -aselage -ascensio -asam -asad -artuso -artinger -arritola -arre -arraiol -arra -arouri -arnzen -arntson -arnstein -arnoldy -arnhart -arnet -armentor -armel -arganbright -argall -argabright -arenstam -ardinger -arcuo -arambulo -aramboles -arabian -appelt -appelgren -apodoca -ape -anzai -anttila -antoniou -antoniotti -antonakos -antell -antee -antaya -anschutz -ano -annon -anne -annarummo -anick -angelovich -anes -androes -andrle -andreoli -andreassen -anderl -ancira -anastasi -anastacio -analla -ana -amunrud -amparan -amory -amores -amodei -amdahl -amazan -alway -alvira -aluise -altomonte -altidor -altadonna -alstott -alsina -alshouse -alpizar -alonge -almestica -almaras -almand -allwardt -allum -allgier -allerman -alkbsh -alier -aliano -alfson -alfero -alexender -alessandro -alesci -aldas -aldaba -alcide -alby -albelo -albares -albair -albach -alamin -alagna -akuna -akright -akim -akes -aken -akbari -akau -aitkins -aita -airola -aines -aimone -ailts -ahrent -ahne -ahlman -ahlin -aguire -agor -agner -agerter -age -agcaoili -afzal -afshari -affleck -aduddell -adu -adolfo -adolf -adjei -adham -aderholdt -adens -adee -adauto -acocella -ackroyd -ackers -acken -ack -achter -acheampong -aceret -accornero -abts -abruzzino -abrecht -abramov -aboud -abo -abes -abed -abby -aamot -aalbers -zwolensky -zwiener -zwanzig -zvorsky -zutter -zurowski -zupfer -zunker -zumbach -zubik -zubiate -zottola -zoss -zorman -zonker -zomer -zollo -zolezzi -znidarsic -zmijewski -zmich -zlaten -zisk -zinter -zingler -zindel -zimlich -zillman -zilliox -zigich -ziesemer -zielonka -ziebart -zia -zhuang -zeyer -zerkle -zepf -zenisek -zempel -zemaitis -zeltner -zellman -zelasco -zeisler -zeinert -zeier -zegarra -zeeman -zedaker -zecher -zeagler -zbinden -zaunbrecher -zarlengo -zannino -zanni -zangara -zanetti -zanes -zanderigo -zanayed -zambito -zalusky -zakutney -zaiss -zahar -zagrodnik -zaeske -zadroga -zadeh -zacek -yzaquirre -yuro -yupe -yunt -yue -youns -youngerman -youkhana -yoshizumi -yoshiyama -yoshikawa -yoshihara -yore -yoneda -yoh -yepsen -yepiz -yentzer -yelin -yedid -yeddo -yeboah -yeah -yauck -yattaw -yarrow -yarosh -yarn -yanuaria -yanko -yampolsky -yamin -yamagata -yakow -yaegle -yacono -yacko -xayavong -wythe -wyrich -wydeven -wyandt -wurtzel -wurdeman -wunner -wulffraat -wujcik -wry -wrighton -wreath -wraight -wragge -woznick -woten -wormuth -woofter -woodmore -woode -womeldorff -wolvin -wolman -wolgast -wolfgramm -wojtas -wojenski -wohletz -woetzel -woelke -woelk -woehrle -wittlinger -wittke -witthuhn -witthoft -wittekind -witkus -witbeck -wist -wissinger -wisnoski -wisley -wishard -wish -wipperfurth -winterling -winterholler -winterfeld -winsman -winkenwerder -wingerson -winegard -windland -winchel -wilmott -willwerth -willougby -willinger -willims -williby -willian -williamon -willhelm -willging -willens -willenbring -willcott -willardson -wilhelmy -wildsmith -wildoner -wildberger -wikholm -wigner -wiglesworth -wiggett -wiget -wigdor -wieman -wied -wieboldt -widen -wickett -wickard -wichterman -wichland -wicher -whysong -whyms -whooper -whooley -whitver -whitmoyer -whitehorse -whitebear -whish -whippo -wheler -whelehan -wheetley -wheeland -wheelan -whatoname -whalan -weygandt -wexell -wetherald -westfahl -westerholm -westerheide -westenhaver -westen -wessendorf -wescom -werstein -wersal -werra -werntz -wernicki -wernett -werger -werber -wenskoski -wenk -wendzel -wendelboe -wenciker -wemhoff -welshans -welde -welby -welburn -weisfeld -weisenfels -weinreich -weikert -weiglein -weida -wegweiser -wegley -weflen -weeler -wedo -wedin -wedgewood -wedderspoon -wedd -weberg -weathington -wears -weakly -weafer -weaber -waz -waxler -wave -wauson -waugaman -waterer -wasmuth -washmuth -warters -warsaw -warns -warnken -warney -wariner -warchol -wansitler -wanless -wanker -wandrie -wandler -wanczyk -waltmann -waltersdorf -walsworth -walseth -walp -walner -walmer -walloch -wallinger -wallett -walkley -walkingstick -walentoski -walega -wale -waldock -waldenmyer -walde -waldbauer -walchak -wakayama -waiau -waddick -wacyk -vreeken -vrbka -vradenburg -vounas -votolato -vosquez -vosika -vorwald -vorse -voros -vorgas -vorel -voorhes -voncannon -volstad -volo -volkmer -volden -volbrecht -voisard -voetsch -voetberg -voeltner -voegeli -vock -vlloa -vivona -vivino -vivenzio -vitucci -vittitoe -viti -viteaux -vitatoe -viscome -virzi -virula -virrey -virella -virani -viox -violetta -vinall -villatora -vilcan -vik -vigen -vieths -vielman -vidra -vidot -vidalez -vicent -vibert -vibbard -veth -vestering -veshedsky -versoza -verrell -veroeven -vernola -vernia -verjan -verity -veriato -verhague -verdusco -verderosa -verderame -verdell -verch -verbeke -venture -veness -vener -vendrick -vences -vellucci -vellone -velk -vegh -vedia -vecchiarelli -vazzana -vaux -vaupel -vaudrain -vatalaro -vastano -vasso -vasiliou -vasher -vascones -vas -varuzzo -varrelman -varnedore -vari -varel -vanwright -vanvoorhees -vanvolkinburg -vantrump -vanstraten -vanstone -vansice -vanscoter -vanscoit -vanord -vanoosten -vannortwick -vannette -vannatten -vanloon -vanliere -vanis -vanhese -vangalder -vanelderen -vandre -vandover -vandinter -vandewalle -vandevander -vanderroest -vandermay -vanderloo -vanderlee -vanderlaan -vandergraph -vanderen -vandenbrink -vandenboom -vandenberge -vandel -vandegriff -vandale -vanbruggen -vanboerum -vanbelle -vanauker -vanasten -vanarsdall -vallerand -valladao -valis -valintine -valenziano -valentia -valensuela -vaisman -vahena -vaglienty -vacchiano -uziel -uyemura -utsler -usie -urzua -ureste -urby -urbine -urabe -uptgraft -unterzuber -untalan -ungerman -ungerland -underland -underberg -umholtz -umbright -ulwelling -ulstad -ulmen -ulcena -ulanski -uhlenkott -uher -uhas -uglow -ugland -uerkwitz -uccellini -tysarczyk -tyron -twymon -twohey -twisselman -twichell -tweten -tuzzolo -tuzzo -tutoky -tusler -turnner -turja -turick -turiano -tunnicliff -tummons -tumlison -tumaneng -tuder -tuczynski -tuchman -tubville -tsukiyama -tselee -truxon -truxler -trussler -trusler -trusillo -trudillo -trude -truchan -trowery -trotochaud -tropiano -tronstad -trolinger -trocinski -triveno -trites -triplet -trick -trichell -trichel -trevey -trester -treisch -treger -trefz -tredwell -trebbe -treakle -travillion -travillian -travaglio -trauscht -traube -trapper -tranum -trani -train -towlson -towlerton -towey -tovmasyan -tousley -tourtellotte -toure -toulson -totin -tosti -tosado -toruno -torrisi -torris -torrent -torrado -torner -torino -torell -topolansky -tooze -toot -tontarski -tonnessen -tonneson -tones -tomisin -tomilson -tomasetti -tolomeo -tollman -tolhurst -tolchin -tolbent -toher -toffton -toepel -toelkes -todorovich -todisco -toczek -tockey -tochterman -tobiasson -tlucek -titzer -titman -tise -tippets -tio -tingwald -timmel -timbrook -tilmon -tijerino -tigerino -tigano -tieken -tiegs -tiefenbrun -tichacek -tica -thurmer -thuotte -thramer -thoroughman -thornock -thorndyke -thongchanh -thomen -thoe -thody -thigpin -thielemier -thi -therres -thal -thakur -tewes -teves -tesmer -teslow -tesler -teruel -terron -terris -terre -terrasi -terrace -tero -terman -tereska -teresi -tepp -teo -tenzer -tennille -tennies -tencza -tenamore -tejadilla -tecklenburg -techaira -tayse -tawwater -tavolacci -taverner -taurino -taulman -taublee -tauarez -tattershall -tatsuta -tatsuno -taschner -tasby -tarrats -tarrants -tarone -tarley -taraborelli -taper -tanniehill -tanks -tankard -tangri -tanequodle -tamporello -tamer -tamburro -tambunga -taliman -talib -talas -takala -takach -taiwo -taibi -taghon -tagaban -tadena -taccone -taccetta -tabatabai -szyszka -szmalc -szerszen -szczepanik -szarek -szafraniec -szafran -szablewski -syta -sysyn -syndergaard -symanski -sylvian -syck -swymer -swoffer -swoager -swiggum -swiat -swetnam -swestka -swentzel -sweetwood -swedenburg -swearingin -swartzendrube -swarm -swant -swancey -sverchek -svenson -sutor -suthoff -suthar -susong -suskin -surra -surano -supplee -supino -sundborg -summons -summerour -sumers -sultzer -sulouff -sulecki -suhoski -suhar -sugerak -suganuma -suddoth -sudberry -sud -stymiest -stvrestil -stuve -sturrup -sturmer -stumer -stuhlsatz -stuenkel -studier -stuczynski -stubbolo -struebing -struchen -strozzi -strowder -strohbehn -stroer -strobridge -strobeck -stritmater -strike -strieter -strickling -streu -streifel -straugter -stratakos -strasburger -straface -straatmann -stpeters -stovel -stoudenmire -stotsky -stothart -storz -stormes -storman -stoppel -stooks -stonelake -stonebrook -stombaugh -stoltzman -stolsig -stolpe -stoglin -stoffle -stodgell -stocke -stirna -stipetich -stinner -stimpert -stimer -stilphen -stikeleather -stifel -stiely -stielau -stieger -stidman -stickrath -stickman -stickels -stgerard -sternberger -stergios -stepien -stepanski -stent -stenkamp -stenehjem -stempel -stemmer -stelb -steiskal -steinmuller -steinmacher -steinhorst -steinhaus -steinharter -steinhagen -steinburg -steifle -stefanick -stefanich -steeber -stay -stawarz -stavropoulos -staves -staup -stauch -staubs -stathopoulos -stathis -startz -starowitz -starowicz -starkie -starcic -stanely -standrod -standahl -stanczak -stample -stampka -stamer -stallins -stalford -stahoski -stagger -stader -staack -srsic -srey -squitieri -spyres -spuhler -sprouffske -sprosty -sprinzl -springle -spoth -spletzer -spizer -spitsberg -spitale -spiroff -spirer -spiotta -spinola -spingler -spike -spierling -spickler -sphon -spettel -sperle -sperka -sperberg -speltz -spaw -spasiano -spare -spancake -spagna -sowerby -sovern -souvannasap -southerly -sous -sourwine -soult -sotiriou -sothman -sota -sortore -sorley -sorin -sorells -soratos -soose -soong -sonsino -sonnabend -sonia -songster -sondrol -sondergaard -soltau -solinski -solinger -solid -sojda -sohns -softleigh -soffel -soffa -sodaro -sodano -soda -sobran -sobczynski -sneeden -snater -snair -smoker -smithingell -smink -smiles -smialek -smetak -smejkal -smeck -smaldone -sluyter -slot -slostad -slingerland -sliffe -slemmer -slawter -slavinski -slagowski -slaff -skuse -skulski -skornia -skolfield -skogstad -skinkle -skidgel -skeffington -skeets -skeele -skarupa -skarphol -skaare -sjolander -sjaarda -sitts -sitterud -sitt -sissell -siprasoeuth -sipper -sipla -sipkema -sinning -sinitiere -single -simmens -simm -simiskey -simelton -silverthorne -silvernale -silvan -siliado -silbaugh -siket -siker -sigurdson -signore -sigers -siffert -sieving -sieverding -sietsema -siering -sienicki -siemsen -siemonsma -siemering -sielski -siedlecki -siebers -sidbury -sickman -sickinger -sicilian -sible -sibilio -sibble -shutler -shurgot -shuping -shulda -shula -shrieves -shreiner -shreckengost -shreck -showes -showe -shoupe -shoumaker -shortey -shorten -shorrock -shorkey -shones -shockency -shoats -shivel -shipmen -shinsel -shindledecker -shinabarger -shiminski -shiloh -shillingford -shigo -shifman -shiers -shibuya -shewchuk -shettsline -shetter -shetrawski -sheffel -sheesley -sheekey -sheeder -sheares -shauger -sharko -shanna -shankin -shani -shandley -shanaa -shammo -shamlin -shambrook -shadow -shackley -sgambati -sferrazza -seydel -sewald -sevenbergen -sevaaetasi -seumanu -seuell -settler -setterberg -setera -sesso -sesay -servoss -servino -serpe -sermeno -serles -serena -serapio -senske -semmler -seminole -semel -selvaggi -sellai -selissen -seling -seleg -seledon -selbo -selan -sekuterski -sekula -seiwell -seivert -seise -sein -seils -seier -seidita -seiberling -seher -segroves -segoviano -segel -segee -seftick -sees -seekell -seegobin -seebold -sedlack -sedbrook -section -secrease -secore -seckler -seastrand -seargent -seacrist -seachord -seabrooke -scudieri -scrim -scozzafava -scotten -sconce -scircle -scipioni -sciarretta -sciallo -schwingler -schwinghammer -schwingel -schwiesow -schweinfurth -schweda -schwebke -schwarzkopf -schwander -schwaller -schwall -schut -schurkamp -schunter -schulder -schuenemann -schue -schuckman -schuchart -schroff -schoville -schorzman -schorder -schooner -schones -scholler -schofell -schoewe -schoeninger -schoenhals -schoenbeck -schoefield -schoberg -schnittker -schneidermann -schneckloth -schnebly -schnathorst -schnarrs -schnakenberg -schmitzer -schmidbauer -schmeeckle -schmeckpeper -schmandt -schmalzried -schmal -schlinker -schliep -schlette -schlesier -schleig -schlehuber -schlarbaum -schlaffer -schkade -schissel -schindeldecke -schimandle -schiermeier -scheunemann -scherrman -schepp -schemmer -schelp -schehr -schayer -schaunaman -schauland -schatzel -scharrer -scharping -scharpf -scharnberg -scharmer -scharbor -schalow -schaf -schader -schacter -scelfo -scarpello -scarlet -scaringe -scarduzio -scamardo -scaman -sbano -sayman -saylee -saxena -sawdey -sawada -savitsky -savickas -savic -savaglio -sauriol -sauret -saulo -satar -sasportas -sarvas -sarullo -sarsfield -sarne -sarmento -sarjent -sarellano -sardin -saputo -santheson -santellana -santarsiero -santago -sansalone -sanos -sanna -sanko -sanker -sanghani -sangalli -sandven -sandmann -sandhoff -sandelius -sandall -sanchious -sancedo -sance -sampogna -sampilo -sampayan -sampaia -sampaga -samo -samlal -samela -samec -samad -salzberg -salway -salwasser -salveson -salvemini -salus -salquero -salowitz -salizzoni -salina -salin -salimi -salgero -salemi -salato -salassi -salamacha -salahubdin -salada -saintignon -saintamand -saines -sahl -saha -sagona -sagedahl -saffel -saemenes -sadow -sadlow -sadger -sacramento -sackal -sachtleben -sabota -sabot -sabe -sabata -sabastian -sabad -rzepka -ryzinski -rytuba -ryon -rynes -rykiel -rykert -rykard -rydolph -rydell -ruzicki -rutko -rutenbar -rustrian -rusinski -rushmore -rushenberg -rushen -ruschak -rury -ruper -ruotolo -rummerfield -rumer -rumbolt -rulon -ruleman -rufe -rudo -rudkin -rudick -rubinich -rubidoux -rubero -roys -rowman -rovere -rousu -rouillier -rotton -rotondi -rothenbach -roszell -rossotto -rossmiller -rossey -roshannon -rosenfeldt -roscioli -rosander -rorrer -rorex -ropes -ropac -rooth -roorda -ronsani -ronne -rong -ronfeldt -rondy -romp -romon -romness -romm -romera -romeiro -rombach -romar -romansky -romagnoli -rom -rolson -rojos -rohanna -rogstad -rogillio -rogg -rogacki -roffman -roethle -roeth -roetcisoender -rodibaugh -roderiques -rodenburg -rodemeyer -rodberg -rockovich -rocher -roccio -robeck -robe -robayo -robar -rizzardo -rivie -rival -ritterbush -ritchko -ritchhart -ristig -rishty -rippstein -rippelmeyer -rioseco -ringwald -ringquist -ringham -rinella -rineer -rimple -rilling -rill -rijo -riihimaki -riglos -riggens -rigaud -rigali -rietz -rietdorf -riessen -riesgraf -rienstra -riekena -riedle -riedinger -rieb -rickenbaker -richcreek -richbourg -riccelli -riberdy -ribb -rhodie -rheome -rheinhardt -rezai -reynalds -reyman -reyez -rewenko -reville -revello -revelez -reul -resue -restuccia -replenski -reon -rentar -rensberger -rens -rennaker -renell -remson -rell -relacion -rekuc -reker -reitler -reischl -reints -reinoehl -reinart -reimund -reimold -reikowsky -reiger -reifman -reicks -reichler -reichhardt -rehling -regos -regino -regalbuto -reffner -reents -reenders -reeks -reek -reeck -redmer -redican -reddoch -reddig -reddicks -redbird -rectenwald -recek -rebillard -rebich -rebeck -reagon -raziano -raymore -ravenel -ravel -rause -rauschenbach -rauer -rauchwerger -ratelle -rasinski -rasbury -rardon -rapson -rapkin -raoof -rannells -ranke -rangitsch -rangasammy -randt -ran -ramser -ramsaroop -ramsahai -ramrez -rampley -ramirec -ramesh -ralbovsky -rakoczy -rakoci -rajwani -rajaratnam -raiden -rahmani -ragno -raghunandan -ragas -ragar -rafuse -radvany -rados -radmacher -radick -radecki -raczynski -rachell -qureshi -quirin -quire -quintona -quinnett -quinalty -quiambao -quella -quatraro -quartararo -qualle -qin -pytko -pyer -pyanowski -puzio -pushcar -purviance -purtlebaugh -pupo -pulte -pulse -pullom -pullings -pullano -pulkkinen -puliafico -pulfrey -pujols -puhala -puchalla -pucciarelli -prutzman -prutt -pruneau -prucha -provitt -protin -prose -proco -proa -prisk -prioletti -priode -prinkey -princiotta -prich -pribnow -prial -preyer -prestino -pressimone -preskitt -preli -preissler -prehoda -predovich -precise -prazenica -prawdzik -prast -pozzobon -pozos -powles -pov -poullard -pouch -potucek -postert -posten -posson -posa -portuondo -porten -porst -poree -pora -poque -popiolek -poot -poock -pongkhamsing -ponessa -pone -poncio -polumbo -pollutro -pollet -pollen -poljak -polemeni -pokswinski -poisel -poette -poelman -pody -podewils -podaras -pocius -pobanz -plympton -ply -plush -plume -pluff -plues -plue -plona -plexico -plew -pleiss -pleil -pleasanton -plattsmier -plathe -plankey -plahs -plagge -placker -placha -pizira -piwowar -piwetz -pittelkow -pitta -pithan -pitcherello -pisciotti -pipilas -pintea -pinta -pinkstaff -pinkos -pinc -pilotte -pillo -pihl -pignotti -piggs -pietrzyk -piermont -pieczynski -piechowski -piech -pickersgill -picetti -picciuto -piccinini -picarello -picardo -picado -piantanida -pianka -pian -phothirath -phippard -philman -philipson -philavanh -phelts -phanor -phanco -pflughoeft -pflugh -pfliger -pfeister -pfeifle -peyre -peyatt -pettine -pettett -petru -petronio -petricka -petrak -petko -petitto -petersson -pesnell -peshek -pesh -pescador -perze -perteet -pertee -pert -perschbacher -perruzzi -perrish -perrigan -perriello -perr -perozo -perlich -perking -perkes -perfater -perce -pepez -peon -penunuri -penuel -penso -pennisi -penkins -penkalski -pendon -pellon -pellissier -pelino -pel -peick -peguese -peggs -pefanis -peeters -peedin -peduto -pedulla -pedrozo -pedrotti -pedroncelli -pedrogo -pedri -pedregon -pederzani -pedde -pecukonis -peckler -pecka -pecha -pecci -peatman -peals -pazo -paye -pawlusiak -pawlitschek -pavlosky -pavlo -paveglio -paulman -paukstis -pauk -patts -patter -patriss -patneaude -paszek -paswaters -pastula -pastuch -pastel -passy -passarella -pasquin -pasqualetti -pasqual -pascuzzi -pasceri -parviainen -parral -parolini -parmele -parma -parlavecchio -parfitt -parez -pardieck -pardew -parda -paraz -parat -papay -paparello -papaioannou -paolello -pansini -panelli -panell -pander -pancholi -panaro -panagiotopoul -palomarez -palmrose -palmisciano -palmese -pallotto -palleschi -palk -palhegyi -palenzuela -paleaae -palczynski -palakiko -palaia -paith -pagonis -pago -pagliuca -pagliari -paganini -padovani -padfield -padamadan -pacquette -paco -packwood -pachero -pachar -pacewicz -paasch -pa -ozols -ozga -ozenne -oxman -overpeck -overbeek -overbee -oulette -otsu -otremba -otool -otar -otanicar -osumi -osucha -ostrov -osthoff -ostertag -ostergard -ostaba -ospital -ososkie -osofsky -osisek -oshinsky -orzalli -orwin -ortwein -ortuno -orts -ortell -orpen -ornelaz -orewiler -ores -ordones -opunui -oppenlander -opoien -opalka -ooley -ontko -ondrey -omura -omtiveros -omland -olup -olthoff -olsten -ollila -olivia -olinsky -olinick -oleksa -olejarz -oldakowski -okoronkwo -okins -ohmer -ohlsson -oherron -oheron -ohanian -oganesian -ogaldez -oest -oehlenschlage -oedekerk -odon -odekirk -ocran -oconor -obrzut -obrist -obringer -oborny -oblander -obi -oberley -oberer -obeng -oatridge -oajaca -nypaver -nuzzi -nuzback -nuxoll -nussbaumer -nurmi -nuhn -nugen -nuara -nquyen -nozicka -noxon -nowick -nowaczyk -novielli -novembre -november -novas -noun -notto -notowich -norzagaray -norway -northover -northcross -norem -nordmann -nordenson -nolet -nojiri -nohel -noethiger -nodd -nitzel -nita -nisbit -nina -nikas -nigon -niglio -nighswander -nighbert -niemietz -niedzielski -niederkorn -niederhaus -niederer -nicometo -nicolaides -nickolich -nguyn -neyra -neymeyer -newmon -newgent -newbery -nevala -neuweg -neuhoff -neuhauser -neubecker -nettik -netters -nestingen -nesspor -nerad -nenez -neldon -neizer -neives -neils -neiger -neidich -neibert -negroni -neemann -needle -neeb -nedry -nedley -neas -naze -nazaroff -nayes -nayar -nattress -natonabah -nassr -nasseri -nassef -naso -narkier -naret -nardini -nardecchia -naragon -naputi -napierala -nanny -nanke -namdar -naji -naidoo -nahm -nahas -nagelschmidt -naes -naegeli -nacol -naclerio -nachor -nabozny -nabarrete -nab -myrlie -mykins -muzio -mutolo -muta -mustoe -muster -muske -muschamp -muscarello -musacchio -murzycki -murrufo -murnan -muraski -murany -murano -munzer -munis -munion -mumby -mumbower -mulrain -mullinex -mullineaux -mullennix -mullahey -mukhtar -muina -muha -muehlman -muccigrosso -mrozoski -mozier -mow -mova -moustafa -mousser -mouse -mousa -mouritsen -mourad -mottet -motten -motamedi -mostowy -mostafavi -mosiman -moscone -moscicki -mosbrucker -morva -mortinez -mortel -morsey -morrin -morren -morosco -morledge -morla -morisky -morishita -morisey -morgia -moretta -morera -morenz -mordue -mordhorst -mordaunt -morber -morawa -moravick -morarity -mooty -mooser -moock -moochler -montoure -montooth -montonez -montierth -monticello -monteverde -monterrano -montella -montecillo -monsrud -monsma -monserrat -monrreal -monro -monetti -mondok -mondella -moncion -monaldi -moltz -molon -mollicone -molle -moliterno -molinere -molinary -molesworth -moh -mogush -mogren -moellers -moeck -modert -mockbee -mocher -mochel -moc -moberley -moan -moallankamp -miyose -miyata -miyashita -miyagi -mitsuda -misumi -missel -miskelly -misiaszek -mirzadeh -mirto -mirsch -mirles -miolen -minzel -minutillo -minugh -mintzer -minskey -minnaert -minkoff -miniard -mingledorff -minas -minaai -milly -millinor -millie -millerd -millea -milkey -milham -milfeld -mileham -milas -milar -milak -mikulski -mihara -mihalek -mihalchik -mihal -mignot -mignano -mighty -miesse -mierzwinski -micthell -mickus -mickolick -mickiewicz -michlin -michelena -micha -miccio -micari -mezzatesta -mewbourn -meuse -meurin -metzker -mettling -metting -metters -metropoulos -metevia -mesteth -mesko -mesi -meserole -mervyn -mernin -mermelstein -merling -merli -merkowitz -merklin -merkerson -merica -merendino -mercury -meray -meranto -merancio -mensik -mense -menoni -mennie -mengsteab -menes -mend -mency -memolo -meltz -meling -melen -melcer -melamed -mekee -meiste -meise -meinhard -meierotto -mehok -meharg -meginnes -meenach -medicus -mediano -media -medell -mede -meddaugh -meconi -mech -mearse -meardon -mealor -meadville -meachen -mcvicar -mcsparin -mcrorie -mcrobbie -mcoy -mcowen -mcnorton -mcnertney -mcnamer -mcnail -mcmanamon -mcmain -mclyman -mcleland -mckirgan -mckew -mckevitt -mckercher -mckensie -mckeegan -mckeane -mckahan -mcinture -mcindoe -mcilvenny -mcillwain -mciff -mcgwin -mcguff -mcgrotty -mcgrone -mcgrant -mcgoogan -mcglon -mcgloin -mcgiveron -mcghehey -mcghay -mcgavin -mcgahen -mcfann -mcelwaine -mcelduff -mceachron -mcdilda -mcdermid -mcdannold -mcdale -mcculough -mccuien -mccrumb -mccrorey -mccreless -mccravy -mccourtney -mccorrison -mccorkell -mccorey -mcconney -mcconnaughhay -mccollester -mcclurkan -mccluer -mccloudy -mcclenaghan -mcclave -mcclarnon -mcclarin -mcclaney -mcclanan -mcclair -mcchristion -mccaskell -mccartha -mccarl -mccamant -mccalmont -mccalman -mccaine -mccahill -mccague -mcbrown -mcanany -mcalvain -mazzurco -mazuc -mazo -mazingo -mawhorter -mavro -mavraganis -mautner -mautino -mauceli -matzinger -maturi -matturro -mattlin -mattheis -matsuoka -matsuki -matro -matlack -matice -mathson -matheu -mathenia -math -matejka -mateja -matanane -masztal -mastropaolo -mastromarino -mastrolia -mastel -massy -massoud -massimino -maslanka -masini -mascioli -marzec -marvier -maruyama -marusarz -marum -martorella -martire -martinkus -martinas -martiez -marthe -marteney -marschall -marruffo -marrazzo -marples -marohl -marn -marlborough -markunas -marki -marjan -maritnez -marinkovic -marineau -margaitis -marentis -mare -marcou -marciel -marci -marchiori -marchello -marchell -marcelle -marcelin -marales -mapel -manzanarez -mantilia -mansmith -manon -mannschreck -mannick -mankiewicz -mankel -manila -manifold -manha -mangrich -mangiapane -mangiamele -manera -mandes -mandella -mandelik -mandaloniz -mand -mancusi -mancine -mana -mamula -mammoccio -malzhan -malzahn -malsom -maloon -malnar -mallone -mallinson -mallie -mallek -malle -malinoski -malinconico -malicoat -malicdem -malhi -malfatti -malandrino -malamud -malakowsky -makovec -makey -majercik -majer -majamay -maisenbacher -mainey -mailey -mailander -mahuna -mahomes -mahoe -mahnken -maheras -mahaxay -mahana -maham -magnia -magni -magnanti -magliano -magliacane -maglaughlin -magistrale -magierski -maggini -magano -mafnas -madren -mador -maderios -madena -maddron -madan -madalinski -macmanus -maclead -mackowski -mackinaw -mackessy -mackerl -macker -macivor -machold -machain -macedonio -macdiarmid -macchiaroli -macbean -macayan -macari -mabin -mabel -lyter -lyster -lysne -lynskey -lyness -lyndaker -lymaster -lykke -lyell -luxmore -luttmer -lutgen -lusignan -lupold -lungstrom -lunford -lundeby -lumbard -lule -lukaskiewicz -luinstra -luevand -luer -lueking -luehrs -luecking -ludvigson -ludgood -lucich -luchetti -lubman -lubic -lozito -lowhorn -lowd -loverich -loveman -lovas -lovaas -louvier -louthen -loury -loukanis -loughner -loughnane -louato -lotshaw -lother -lothamer -loter -losinski -losinger -loshek -losecco -lortie -lorin -lorent -lorello -loras -lorah -lopau -loosen -lontz -longpre -longie -loncaric -lombrana -lomba -lohrey -lohoff -logghe -loges -lofstead -lofft -loertscher -loeper -loeblein -lodato -lochen -lobbins -lobban -lizarrago -livigni -livernash -liukko -littich -litterer -littau -litchmore -lisy -lissy -lishman -lischak -lirag -liptow -lins -linkhart -linkert -lingren -lingelbach -lingel -lingad -linet -linegar -linebrink -lindroth -lindeland -lindboe -linardi -linard -ligman -liggans -lifland -liff -lieuallen -liesveld -liess -lienhard -liehr -liedy -liedke -liebau -lidtke -lidstrom -licano -libra -leys -leymeister -lewerke -lewand -levoci -leviton -levien -leveston -leverenz -levere -levangie -leuy -leukuma -lettman -letran -letlow -lethco -letersky -lestronge -lesso -lessey -leshem -lerud -leps -leonesio -leones -lento -lente -lennertz -lenior -lenhard -lenfest -lene -lendrum -lempicki -lemonier -lemle -lemkau -lemings -lem -lelli -lekas -leitten -leitheiser -leino -leiner -leinenbach -leidy -leidich -leid -leich -lehnhoff -leh -legum -legoullon -legeyt -legalley -legace -lefton -lefthand -leforge -lefore -lefleur -leerar -leef -leed -ledl -leddon -ledain -leckie -lecates -lebeouf -leben -lebeck -lebeaux -leban -leaverton -learman -leardi -leamy -lazare -lazarczyk -layssard -layson -layhew -layel -laychock -lawernce -lavzon -lavalla -lauterborn -laut -lauseng -lausen -laurino -lauri -laurenzano -laurenza -laundry -laumbach -lauinger -lauenroth -latzke -latulipe -lattig -latronica -latouf -latko -latiker -lathern -laterza -latchaw -lataquin -lasure -lashomb -lasell -lasasso -lartey -larriva -laro -lardner -lardieri -laprarie -lapping -lapitan -lapeyrolerie -lapar -lanzetta -lantis -lanka -lani -langshaw -langmyer -langin -langerman -langeland -langbein -landro -landrian -landmesser -landmann -landfair -landesberg -lanciotti -lamprey -lampey -lamos -lamora -lamoine -lamfers -lambka -lamance -lamana -laliotis -lajza -lajaunie -lainson -laher -lahar -lagrotta -lagrant -lagraize -lagnese -lafrazia -lafountaine -laflin -lafaso -lafarga -ladage -lacsamana -lacrosse -lacrone -lachowski -labruyere -labrake -labossiere -laba -laack -kyzar -kynard -kwek -kuzmin -kuttner -kusiak -kuser -kuse -kurtzer -kurtzeborn -kurpinski -kurohara -kuroda -kurnik -kurihara -kurdziel -kurban -kuras -kupper -kupferer -kupec -kunzelman -kunkler -kunin -kunesh -kumro -kumpf -kulon -kulka -kukucka -kuk -kuhse -kuhls -kuhlo -kuhar -kuerbitz -kuenzi -kuehneman -kudron -kuczenski -kuchle -kuchenmeister -kuchenbecker -kucan -kubu -kubsch -kubiszewski -kubish -kubicz -kubick -kubaska -kuarez -ksiazek -kshywonis -krzykowski -krzak -krysl -kruzewski -kruzan -krumrine -krumins -krucker -kroupa -krough -krotz -kronstedt -kromrey -krogstad -krogmann -kroeze -kroetz -kroc -kristianson -kristen -kriser -krips -kringas -kriete -kreuter -kretschmann -kresha -kreidel -kregger -kreatsoulas -kratochwil -krasovec -krase -krapf -kranawetter -krajnik -kozubal -koyanagi -kowalkowski -kovarovic -kovalcin -kou -kotzen -kotnik -kostelecky -kostek -kostecki -kostal -kosse -koslowski -koskie -kosicki -koshar -kosek -kortright -korpal -kornhauser -kormos -korinek -korgie -kordsmeier -kordish -koral -kops -kopps -kopperud -koppang -kopfer -kopet -kook -konno -konik -konek -konefal -komm -komis -komer -komarek -kolsrud -kolp -kolopajlo -kollmorgen -kolis -kolesnik -koles -kolding -kohs -kohlhoff -kohatsu -kohara -koetter -koestler -koepsel -koeppe -koenigsman -koelewyn -koe -kodadek -koci -kochler -kocab -kobylinski -kobryn -koberg -knower -knollenberg -knock -knizley -kniss -knies -knezovich -knesek -knepel -knehans -kneeskern -knaust -knapke -kmet -kluz -klukas -kloska -klopf -klinglesmith -klinekole -klimes -kliment -klimaszewski -klepfer -klepacki -klepac -klemash -kleinkopf -kleinknecht -kleimola -kleiboeker -klei -klehn -klegin -klavuhn -klauer -klasinski -klasing -klarr -klapec -klaass -klaameyer -kjelland -kiyuna -kitching -kistle -kissi -kishi -kirvin -kirtner -kirovac -kirnon -kirkby -kiritsy -kirchgesler -kippley -kipping -kinzig -kins -kinnare -kinna -kingcade -kinatyan -kimme -kimbrow -kimbril -kilzer -kiltz -killmer -killibrew -killeagle -kilger -kiles -kievit -kientzy -kielty -kiekbusch -kiehne -kiefert -khou -khiev -khat -khare -keywan -keyt -kevin -keville -kevern -keuler -ketola -ketelaar -kertis -kerson -kernen -kerkman -kerker -keogan -kenwood -kenne -kenaan -kempler -kempisty -kempfer -kempen -kemmerlin -kelter -kelman -kellie -keliihoomalu -keleman -kekiwi -keiswetter -keiss -keilty -keidong -kegel -keets -keeneth -keefner -kedzierski -kebort -keate -keat -kazmorck -kazi -kaz -kawachi -kaushiva -kauk -katzner -katzmark -katzen -katsuda -kats -kater -katen -kasting -kasserman -kassay -kassabian -kasprowicz -kasperek -kasowski -kasmir -kaska -kasik -kascak -karth -karsnak -karshner -karsh -karmel -karlstad -karley -karins -karimi -karcich -karch -karapetyan -karakas -kapsalis -kappeler -kapke -kaperonis -kapahu -kanthak -kansky -kansas -kanoy -kanno -kannady -kandarian -kanai -kanae -kanaan -kamphoefner -kammler -kaminetzky -kaminaka -kamienski -kamaunu -kamakea -kama -kaltefleiter -kaloustian -kaloi -kallmeyer -kalisch -kalinski -kaliher -kalgren -kalfas -kales -kalafatis -kagle -kadish -kachermeyer -kabina -kaawa -kaaua -kaatz -juvera -jutte -justen -jusko -juriga -jure -jungquist -jungbluth -juneja -juncaj -juliet -juhas -juenger -juell -jucean -jubinville -jovich -jorres -joris -jore -jonhson -joneson -jonassen -jolissaint -jointer -johnny -johengen -johar -joh -joern -jodway -jobs -joanette -jirik -jirasek -jipson -jinkerson -jinkens -jiminian -jimeno -jiau -jevnikar -jessel -jerauld -jephson -jentzen -jenkerson -jenista -jenifer -jemmett -jelovich -jehlicka -jeffris -jedziniak -jeantet -jeanclaude -jayme -javor -javaux -jaurigue -jaureguy -jarvinen -jarocki -japp -janszen -jansons -jans -jankauskas -janka -janhunen -janeczek -jandrin -janczewski -janack -jamir -jakuboski -jakubik -jakubek -jahnel -jageman -jaenicke -jacquem -jacquay -jaconski -jacobellis -jablon -iyo -ivancevic -iurato -iulianetti -itri -issler -isla -isip -ishmon -ishizu -isgrigg -iseri -iseli -iseley -isbrecht -isassi -isaiah -irsik -irias -inzana -intveld -intrieri -interdonato -instasi -inscho -ingwell -ingebretsen -inga -inda -incle -inabinett -imus -immordino -imbesi -imbach -illsley -illig -ill -ignowski -idler -idleburg -ideue -ibara -ianuzzi -ianniello -iacovone -hyter -hyles -hyle -hykes -hyams -huxley -hutch -hustead -huscher -hurtz -hurse -hurren -huret -huotari -huntress -hunting -hunstiger -hunking -humpries -humbles -hum -hulvey -hulcy -huizinga -huhman -huhammad -hufty -huesso -hueftle -huebschman -huebert -hue -hudmon -huberman -hubbartt -hubach -hsueh -hrycenko -hrabal -hoxit -howsare -howman -howitt -howerter -houlton -houis -hottman -hotovec -hostin -hoshall -hosfeld -hoschek -horwath -horsely -horsburgh -horovitz -hornstrom -hornbarger -horkley -horka -horey -horeth -hordyk -horack -hoppin -hoppel -hopfensperger -hooey -hooe -honhart -honga -honeck -homs -hommell -homles -homen -home -holzner -holzheimer -holzem -holsopple -holsman -holowell -holliway -holizna -holesovsky -holderbaum -holbach -holan -hoit -hoist -hohenbrink -hoger -hofmans -hofheimer -hoffhines -hofbauer -hoesing -hoeschen -hoerter -hoepfner -hoemann -hodgeman -hockersmith -hochadel -hobock -hobel -hluska -hlavac -hisrich -hirsbrunner -hirpara -hire -hinners -hindbaugh -himenez -hilles -hilleary -hillanbrand -hillan -hildner -hilding -hilderbrandt -hiland -hightree -highnote -highberger -higgason -higaneda -hidinger -hickock -heymann -heusinkveld -heusel -heuring -hettler -hesseltine -hesselink -hesford -herth -herskovits -herschell -heroman -hernton -herne -hernandaz -hermez -hermanstorfer -herling -herke -herimann -heriford -hergenrader -herforth -herdes -hercher -herceg -herbick -hentze -henniger -henney -henness -hennegan -henkes -heneisen -henderickson -henard -hemrick -hemric -hempton -hemp -hemme -hemeon -hembry -hembrough -hembrey -helstad -helmus -hellings -hellgren -helie -helgert -helgerman -helger -helgason -helfinstine -helfgott -helfenstein -heldreth -helander -heitzmann -heisserer -heising -heisel -heinold -heinis -heinemeyer -heimark -heiliger -heiderman -heidenescher -heidebrink -hehir -hegan -heersink -heep -hedquist -heckford -hebets -heberly -heberle -hebenstreit -heavilin -heartz -heaphy -heany -hazer -hazelgrove -haynsworth -haydock -hawelu -havnen -havely -hauss -hausam -haumesser -hauman -haulk -hauley -haubrick -haubner -hattman -hatman -hatherly -hatchcock -hastert -hassenplug -hasko -haser -haselhuhn -hasberry -has -harthorne -harthcock -harriett -harouff -harootunian -harkavy -harell -hardridge -hardacre -harborth -haraguchi -haptonstall -happenny -hantman -hanses -hannemann -hannay -hannafin -hanle -hangartner -handerson -hanberg -hamzik -hamstra -hammans -hamano -halsema -halonen -halim -halek -haleamau -halama -hakeem -hainley -hagley -hagist -hagie -haggberg -haggan -hagele -hafenstein -hafemeister -hady -hadges -hadef -hackey -hach -habbyshaw -haaga -haab -gysin -gwirtz -guzzio -guzzardo -guzma -gutzmann -gutta -gutermuth -guterman -gutenberger -gurganious -gural -guppy -gunzalez -guntert -gums -gumb -gullotta -gullixson -gulling -gullace -guler -gulbransen -guitian -guinta -guinasso -guilboard -guichard -gugliotta -guglielmina -guggenheim -gugel -guetierrez -guethle -gueth -guerrido -gueits -gudenkauf -gucciardo -guarnera -guadagnolo -gsell -gschwend -grush -grupp -grundmann -grunau -grueninger -gruca -groupe -grotzinger -grotheer -grossmeyer -grossetete -grossack -gromer -groenke -groening -groehler -groebner -grochmal -groby -grobes -gritman -griswould -grisset -grime -griffo -griesinger -greuel -greth -gressman -gremel -greiwe -greis -greil -greife -greider -grefrath -greff -greenmyer -greany -grazioplene -gravlin -gravito -gravert -grav -grater -grap -granzin -grannum -granlund -grando -grammes -gramley -grambo -grala -grahl -gradwohl -gradillas -gradert -graciana -grabner -grabinski -grabinger -grabel -graaf -gouzy -gouger -gottron -gottardo -gothro -gosso -gossi -gorringe -gorneault -gorn -gormly -gorenflo -goral -gopen -goosey -goodnoe -goodie -goodhile -goodfield -goodard -gonneville -gongalez -gondola -gompf -gommer -gollehon -golie -golebiewski -goldinger -goldhaber -goldfeder -goldbaum -golaszewski -gojcaj -gogerty -goettsche -goethe -goessl -godson -godbe -gochanour -gocha -gnau -gnatek -glud -glorius -glordano -gloodt -glod -glinka -glime -gleim -gleicher -glazewski -glay -glasford -glascott -glanzman -glahn -gladish -gjerde -gizinski -gitzen -girsh -girote -girman -giovino -giovanini -giorgini -ginty -ginsky -ginnings -gingues -gingg -ginger -giner -gimm -gilruth -gillund -gillenwaters -gilday -gilcrest -gilcher -gilani -gigstad -giernoth -gienger -gidaro -giczewski -gibas -giarratano -giantonio -giannitti -giannetti -giampapa -giacopelli -giacone -giacomelli -gherman -ghera -ghan -gevorkyan -gettig -getchman -gesinski -gerundo -gershenson -gerraro -gernert -germundson -gerloff -gergel -gerdeman -gerdel -geraldo -geraldes -georgopoulos -georgis -georgevic -georgeson -genzel -genung -gentzler -gentili -genich -gelzinis -geiken -geidner -geidl -gehrer -geho -gehlbach -geeding -gedye -geberth -geathers -gearan -gealy -gazzola -gazella -gawrych -gavidia -gautam -gaumont -gaudenzi -gaucher -gaubert -gattas -gatley -gaters -gatchalian -gassel -gasman -gaslin -garufi -garriepy -garrell -garrand -garnto -garns -garno -garlinger -garivay -garhart -gardino -garcea -garbin -garaventa -garavaglia -garahan -garafano -garacia -gapen -ganiron -ganino -ganim -gangwish -gange -ganes -gandia -gandeza -gamlin -gamelin -galway -galow -gallob -gallishaw -gallinaro -gallicchio -gallese -gallero -gallegas -galeoto -galeas -galbreth -galbavy -galavis -galam -gajate -gair -gagney -gagel -gagarin -gaete -gaetani -gadbaw -gack -gabrysch -gabardi -fyksen -futrelle -furl -furches -furbeck -funnye -funicello -fumagalli -fullford -fulginiti -fulenwider -fulena -fugler -fuerstenberge -fuentas -fucillo -fuapau -fryberger -frusciante -fruehling -fromberg -froeschle -frock -fritzgerald -fritcher -frisbey -frihart -frieling -friedler -frie -fridell -freuden -freud -frett -frend -freiling -freije -freie -freidman -freibert -fregozo -freehling -fredo -fredlund -fredley -frede -freberg -frayre -fraunfelter -frascella -franssen -frankowski -francour -francom -francillon -francey -fraioli -fracassa -fostervold -fossey -foshay -foscue -forsell -forrister -forren -fornicola -fornes -forgie -forbs -foppe -foore -fontecchio -fongeallaz -follick -folio -foder -flyzik -fluhman -fluet -flow -floto -floros -floriano -floren -floran -floerke -flitcroft -flipp -flintroy -fleschner -flenner -fleeting -flamio -flaggs -flagge -fjeseth -fithen -fissell -fischman -fire -fioranelli -finseth -finocchiaro -finerty -fineman -finchman -filyaw -filipovich -filas -figler -figge -fiers -fiereck -fidell -ficorilli -fico -ficks -fickle -fialkowski -feyen -fetz -fetsko -ferullo -fertitta -ferriman -ferrebee -ferrand -ferrales -fernelius -fernberg -ferioli -fergoson -ferenc -fereira -fequiere -fennema -fenelus -fenelon -feneis -femrite -feltenberger -felsenthal -fels -felmet -felgenhauer -felarca -feiteira -feirer -feinen -feigenbaum -fehlinger -federle -fecko -feavel -featheringham -fayer -faxon -faurrieta -faull -fatone -fatigate -fasy -fasula -fassio -fass -farwick -farrill -farquer -farmwald -fantozzi -fanoele -fannell -fanizza -fandrich -fallo -fallago -faist -faines -faine -fahrendorff -faggard -faessler -fadale -fabrizi -eychaner -exon -exilus -ewig -evitts -evinger -everheart -everhardt -eveleth -eveleigh -eurbin -esworthy -estus -estock -esterbrook -essler -esque -espina -espalin -eschenburg -eschberger -esbenshade -ertley -erstad -erp -eroman -erno -ermatinger -erkkila -erkela -eriquez -erin -ericks -erdahl -ercolani -equils -eppinette -eon -enter -enke -engley -englebrecht -engleberg -englar -engelstad -engelsman -engellant -ence -emslie -empie -emoto -emons -emley -emile -embly -embler -emanuelson -emal -elzinga -elwer -elvis -elvington -elshere -elmquist -ellout -ellifritz -ellerd -ellerbusch -elizando -elizabeth -elick -eliasen -elgert -elger -elena -elbers -ekstein -ekmark -eiser -einck -eimers -eilert -eidinger -eicke -ehsan -ehn -egleton -egel -effner -ednilao -edner -edmons -edmister -edmison -edlow -edholm -edgeman -edgcomb -edell -edelblute -eclarinal -eckroad -echave -ebesu -eberwein -ebeid -ebe -ebbing -eastlund -eary -earps -dzuro -dziuban -dysinger -dyner -dymek -dyll -dyl -dydell -dwelle -dwan -duvernois -dutson -dutro -dutchover -dusky -duskey -dusik -dushkin -dushane -durrani -duroseau -durnford -durk -durepo -duranceau -duprat -duplechin -duperry -dunscomb -dunkleberger -dung -dunegan -dundlow -dumpson -dumphy -dumpert -dumesnil -dullum -duldulao -dular -dukart -duhan -dugdale -dugat -duffney -duesing -duenow -duce -dubson -drzewicki -druetta -drube -drozdenko -drop -drohan -drivers -drinski -driever -drewer -dressen -drehmer -drawe -drapkin -draney -drahota -dowers -dowdall -dovenbarger -dousay -douin -doughan -doucett -douce -dorshimer -dorsaint -dorries -dorosky -dorl -dorich -dorenfeld -dorcelus -dool -donoso -donnick -donnely -donart -donalds -donaghey -donaghe -dominges -domebo -dollings -dolejsi -doggette -doell -dockwiller -dockal -dobosh -dobis -dobiesz -dluhy -dixons -divin -diventura -divenere -divelbiss -dittrick -ditommaso -dirosa -dircks -diogo -diodonet -dinning -dininno -dimodica -dimitroff -diminno -dimassimo -dillie -dilan -digsby -digrande -digmann -digirolomo -digian -digiacinto -dietzen -dietlin -dietert -diersen -dienst -dieffenbach -dicorcia -dickhaut -diberardino -diab -dhein -dhar -dhamer -dezan -dez -dewispelaere -dewhirst -devonish -devincenzo -devillez -devany -devalcourt -deubler -dettori -detone -detommaso -detoma -desue -destree -destephen -desso -desselle -desimoni -desadier -derham -derfler -dercole -derasmo -depugh -deporter -depolito -depa -deninno -deni -denenberg -denaro -denardis -demry -demro -demmel -demme -demiel -demeritte -demarzio -demaline -demaine -deluco -delton -delsordo -delosa -delongis -delois -deloff -delmuro -delmoro -delmonaco -delmage -dellen -dellaripa -dellamore -delhierro -delfuente -deleppo -delemos -delea -delcarmen -delaura -delanuez -delang -delamarter -delamare -delage -delacuesta -dekorte -dekenipp -dekany -deinhardt -deily -deierlein -degravelle -deglow -degler -degiulio -defoore -defonce -deflorio -defiore -defilippi -deed -dedeke -dedecker -dedaj -decost -decillis -dechellis -dechaine -decarr -decaprio -debutiaco -debski -debry -debruhl -debouse -deblase -debey -debenedetti -debacker -deang -deandrade -deadmond -deacy -daykin -dayhuff -dayal -davion -davidsen -dautremont -daughrity -daubs -datwyler -datko -dasmann -daruszka -darugar -darroch -daro -darkis -daricek -daras -dar -dapoz -dapinto -danuser -danoff -dankmeyer -danesi -danesh -daneker -dammen -damien -damberger -dalmoro -dallmier -daller -dalka -daliva -dahline -dahlhauser -daguerre -dagrella -dagraca -dagesse -dage -daehn -dado -dabbraccio -dabato -czolba -czepiel -czelusniak -czechowski -czarny -czar -czapski -cywinski -cyran -cypret -cwiek -cuzzort -cuzzi -cutty -cutrone -cuthrell -cuthill -cutbirth -custeau -cushingberry -curvey -curson -currell -curly -curll -curdy -curcuru -cupstid -cuoco -culverson -culnane -culliver -cullivan -culleton -cuddeback -cuckler -cubillo -cubias -cua -cryar -crutsinger -crusan -crupe -crummie -cruice -cruea -crowthers -crowers -crowdis -crovo -croson -crosno -crosdale -cronwell -cronon -crocetti -crnich -cristal -crisson -crismond -crighton -cridland -crickard -creten -cretella -crespino -cremins -cremers -creehan -creecy -credell -cranney -cranker -craker -craffey -cozzy -coyazo -coxum -cowdin -covino -coven -courtenay -course -courier -courchene -coup -couley -couchenour -cotugno -cottongim -cotti -cotillo -costine -costain -cosmo -coslan -cose -coryea -cortwright -corsoro -corrente -correl -cornford -corneluis -cornelious -corneau -corne -corkins -corippo -corgiat -coreil -cordwell -cordovano -cordill -cordano -corazza -coran -coppess -coonrad -coonfare -coomber -cooksley -cookis -coodey -contrino -contee -consorti -console -conorich -conole -connoly -connley -connington -connie -conness -conly -conkright -coner -conchas -comrie -compston -compagno -comnick -commiskey -commer -comiso -comish -comden -colondres -collica -colleen -colle -collaer -colinger -colford -colao -colanero -cohens -cofresi -coerver -cockriel -cockran -cockerell -cobham -cobert -cobern -cobell -clunie -clubs -clubbs -cloutman -clise -clippinger -clerkley -cler -clemmens -clemen -cleare -cleamons -claycamp -clawges -claverie -clarkston -clarity -clantz -clakley -clain -cizek -ciuffreda -citrone -ciraco -cinotto -cini -cinadr -cilento -cilano -cihon -ciganek -cieslinski -cicoria -cicco -cibula -ciarrocchi -ciak -ciafardoni -chubbs -chrzan -christophel -christoph -christoforou -christel -christan -chreene -chrabaszcz -chrabasz -chowhan -choules -chorney -chorley -cholico -cholewinski -cholakyan -chojnowski -chlebek -chittam -chiszar -chisam -chirafisi -chiprean -chinetti -chimes -chiera -chicon -chiarelli -chiaravalle -chiappetta -chesner -cheser -chesbrough -cherubino -cherrette -cherpak -chelf -cheesebrough -cheeney -cheely -chean -cheak -chavana -chauvette -chatt -chasser -chaskey -charriez -chappie -chappelear -chapparo -chapek -chanoine -chandley -challenger -challberg -challacombe -chaleun -chainey -chaffey -cetta -cerza -cervenak -certosimo -cerruti -cerqueira -cernohous -cereceres -ceovantes -ceo -centrich -centore -cellucci -ceglinski -ceconi -cecilio -cecchinato -cecchi -cazorla -cayne -cayabyab -cavill -cavicchia -cavez -cavener -cavasos -cavaness -cavalcante -caulk -caudel -cattano -catrett -catlow -catella -cataquet -catalino -cataline -catalanotto -catalanatto -cata -castenanos -castelo -cassiday -casparian -casillo -casewell -casarrubias -casalman -casal -carvalno -carskadon -carrus -carrison -carriker -carrazco -carratala -carpanini -carovski -caroli -carne -carmella -carlis -carfagno -carethers -carella -cardonia -cardno -carda -carcieri -carcano -carcana -carboneau -carbon -caravantes -carattini -caramanica -capriola -cappelluti -capossela -caponi -caperon -caper -capati -cantv -cantore -cantell -cantatore -cantarella -cantadore -canslor -canonico -cannonier -cannone -cannavo -cannatella -cangiano -campoli -campellone -campean -campanile -camera -camcam -cambel -calta -callsen -callarman -calicott -calhaun -calegari -calco -calciano -calabretta -cake -cairone -cahela -cagliostro -caflisch -cafferky -caetano -cadice -caddle -cadarette -cackowski -caccia -cabrena -cabotaje -caborn -caberto -bystrom -byndon -buzek -buysse -bux -buttrick -buttaro -butscher -butsch -butor -butman -buteux -butchee -but -bustard -busta -bussy -busson -bussing -bussa -busi -buseman -buschner -buscaglia -burttram -burth -bursch -burnsworth -burland -burkowski -burglin -burgdorfer -burdman -burau -buran -burakowski -buquet -buonomo -buntyn -bungo -bunche -bunal -bult -bulliner -bullaro -bulkeley -bulcao -bula -buisson -buissereth -bugni -buetow -buesgens -budziszewski -budinich -buddington -buchtel -buchli -buchert -buchar -buben -brzuchalski -brummell -brull -brudnicki -brucz -bruchman -brubach -brownwood -browen -browe -brossett -brosco -brookshear -brookfield -bronstad -bronsky -bronaugh -bron -brohawn -brogna -brodzik -brodsho -brodowski -brodnicki -brodell -brod -brockney -broas -broadrick -briz -britschgi -brint -brinich -bringard -brindamour -brincat -brimfield -brillant -brilhante -brihon -brignoni -brightful -briggman -bried -brickle -brickel -brezeale -brewen -breutzman -bretado -brester -bresko -brennon -brennaman -breniser -brendon -brems -breisch -breidenstein -brechtel -brea -brazington -brazen -brayer -brawer -bravata -braune -braunbeck -braue -braucht -braseth -brantly -branter -branski -brandler -bramham -brahney -bradac -brackley -brackey -brackemyre -brach -boyarsky -bowlan -bowhall -bowdre -bovie -bouyea -boustead -bourgeault -bounthapanya -boultinghouse -bouillon -boudrie -boudinot -bottgenbach -bottari -botos -bothof -botha -bosten -bostelmann -bossley -bossick -bossen -bosquet -boscio -bosche -bosa -borski -borsh -borowik -borom -borke -borgerding -borgatti -bordwine -booser -bookbinder -bookard -boock -bonte -bonomi -bonning -bonito -bonillas -bondura -bombich -boltinghouse -bollozos -bolliger -bollie -bolka -bolitho -boldenow -bolch -bolay -boissoneault -boisjolie -boisclair -boie -bohrman -bohley -boglioli -boghosian -boggus -boggiano -bogden -boey -boesenhofer -boerst -boerma -boenisch -boemig -boebinger -boday -bodamer -bocklage -bocchini -bobseine -bobian -boberg -bobek -blyler -blumenstein -bloyer -blotter -blore -blomme -blomdahl -bliske -blinston -bliek -blessman -bleggi -bleeker -bledsaw -blauch -blaskovich -blankley -blankenberg -blanken -blakelock -blaida -bjorgen -biven -bitzel -bittman -bitonti -bissen -bisom -bisher -birman -birky -birkes -bippus -bintz -bintner -bintliff -binnie -binks -binkiewicz -binienda -bingley -bilotto -billheimer -billen -billeck -billeaudeau -bilinski -bilello -bild -bihari -bigda -biez -bierwirth -bierle -bierbower -bienenstock -biemer -bieler -bielak -bidle -biddleman -biddiscombe -bicknese -bickerton -bickelhaupt -bichsel -bibles -bibian -biase -biancuzzo -biancaniello -biamonte -bia -bhatnagar -bhardwaj -bhan -beyett -bewig -beuchat -better -betsill -bethey -betenbaugh -betance -betacourt -beske -besendorfer -besemer -besco -bery -bertran -bertling -bertie -bernson -bernosky -bernon -berninger -bernes -bernecker -bernasconi -bernardin -berlo -berliew -berky -berhe -berhalter -bergsjo -bergholm -bergener -bergeman -beraun -benward -benusa -bense -bennage -benischek -benion -beninato -bengel -benedek -bene -bendzus -bendler -bendit -benderman -benberry -benallie -bemrich -belyea -beltrain -belter -bellue -bellocchio -bellisle -bellipanni -bellion -bellessa -bellavia -belay -bejjani -beisser -beiriger -beik -beien -behymer -behrenwald -behanna -beed -beechum -beechner -bednarik -bednarek -bedenbaugh -becwar -beckton -beckom -bech -bebo -beatie -beat -bearman -beaner -beakley -beahan -beachamp -bazzi -bayman -bayardo -bayala -bawcum -bavier -bauswell -baures -baune -baumgarter -bault -baughey -baugatz -bauernfeind -bauerlein -bau -batun -battistone -batteen -batko -batistich -bater -batcheller -batarse -bastow -bassuk -bassolino -bassel -bason -basilone -basich -bascle -bascetta -bartush -bartrum -bartlet -barthelmes -bartberger -bartash -barsoum -barsanti -barrott -barrom -barriner -barnhurst -barnell -barkle -barkes -barillaro -bargerstock -barganier -baremore -bardney -barda -barbot -barbie -barayuga -barager -bantz -bandulin -banasiak -balzarini -balwin -balton -balsiger -balmos -balmir -ballestero -ballek -balick -balian -balestra -balensiefen -balduf -balckburn -balasa -balafoutas -baksi -bakowski -baklund -bakko -bakey -bakanauskas -baj -baio -bainard -baima -baillet -baich -bahrmasel -bahrke -bahoora -bagsby -bagger -badena -badders -backfisch -bacik -bachler -bachleda -bachhuber -bachert -babiracki -baatz -azzarito -azzarella -azulay -azotea -azeem -ayoob -ayola -ayles -ayersman -ayaia -axthelm -ax -awtry -avrett -avilar -aveni -avellino -aurelia -aumend -auletta -augustson -augustave -aughe -auerswald -aubrecht -athalone -atanacio -atamian -astrologo -astrella -aspinall -asman -ashlin -ashenfelter -aschenbrener -ascheman -ascenzo -asante -asa -arvayo -artmann -artice -art -arslan -arrott -arrojo -arrizola -arriano -arrendell -arps -aronstein -aronow -aronica -arntz -arnst -arnio -arne -armengol -armantrout -arlt -arkadie -arjune -arismendez -arimas -aries -ariel -argandona -arflack -areola -arenales -ardman -arciga -arciba -archacki -arcaro -arcano -arbogust -arauz -aranas -aquil -aquero -apresa -appiah -appert -apostal -apodace -apadoca -antrobus -antoniuk -antione -antinarelli -antich -anslow -ansbro -annicchiarico -angleberger -angelson -angello -andruzzi -androsky -androlewicz -andrion -andringa -andracki -andra -ancelet -anastas -anast -anagnost -amsley -amsdell -amsberry -amsbaugh -amoruso -amoa -amici -amesbury -ambrosia -ambrogi -amack -alvia -alvaro -alvanas -altrogge -altomare -altmire -altenbach -alsheimer -alquisira -alouf -aloisi -aloe -almiron -allford -allex -allery -allenbach -allegrucci -alig -alicuben -alfisi -alferez -alfandre -alf -alexion -alevras -alessandrini -alesi -alescio -alegre -alea -aldecoa -alcini -albrittain -albrashi -alawdi -ala -aksamit -akima -akel -akahi -ajose -ajayi -aivao -aiu -ainge -ailshire -aidt -aicklen -ahuja -ahr -aholt -agle -agamao -affeld -aeschbacher -aeling -adriance -adkin -adhami -adeyemo -ades -adelgren -addicks -adamitis -ada -acor -acimovic -accomando -accola -acampora -abuaita -abshear -abrantes -abramovich -abrachinsky -abilay -abellera -abeles -abdula -abdon -abbed -abati -abascal -aavang -aadland -zylka -zwolak -zwingman -zwerschke -zwack -zurin -zupp -zumbrunnen -zukoski -zukor -zukas -zuanich -zoumis -zoulek -zou -zorra -zorich -zomorodi -zolty -zolondek -zolnoske -zoldesy -zoldak -zocklein -zlotnik -ziraldo -zipf -zinsli -ziniewicz -zindell -zin -zimmerebner -zimmel -zimm -zills -zilla -zilka -zietz -zietlow -ziemski -zielesch -zieler -zieglen -ziegenbein -ziegelbauer -ziegel -ziech -zicker -zicherman -zich -ziccardi -zgoda -zeschke -zerko -zerhusen -zepka -zents -zeni -zeme -zematis -zema -zella -zelkin -zelenski -zeilinger -zeidan -zegarelli -zeanah -zdon -zbikowski -zazula -zavesky -zavasky -zaruba -zarrineh -zarrillo -zarraluqui -zarling -zaring -zaretsky -zarebski -zanini -zanin -zangl -zaner -zand -zampieri -zaltz -zaloudek -zall -zalk -zalar -zakowski -zajc -zahran -zahnen -zagroba -zagel -zagara -zagami -zaffuto -zachmann -zachariades -zaccagnino -zaccagnini -zaborski -zabloudil -zabarkes -yvon -yusef -yuricic -yuill -yuenger -yuasa -ysbrand -yourshaw -younkers -youngdahl -youngblut -youkers -youkanaa -yorkey -yoneyama -yonamine -yoeckel -yodis -yocius -yocham -yobst -yeubanks -yetto -yerigan -yerbic -yentsch -yennard -yemchuk -yax -yaun -yasurek -yasui -yaskiewicz -yantzer -yantz -yanosky -yanek -yandle -yance -yanagi -yambao -yamakawa -yagoda -yaekel -yackeren -yacavone -yacano -ximines -xaimoungkhoun -wysock -wyont -wynott -wynans -wylde -wyett -wydner -wurzbacher -wulfing -wruck -wroe -wrobliski -wrobbel -wrights -wraspir -wrape -woytowicz -woy -worthan -worstel -worsfold -worrel -worbington -wools -woollen -woolems -woodmancy -woodhull -woodgate -woodfield -woodcox -woock -wonsik -wolven -wolslegel -wolny -wolma -wollyung -wollin -wolley -wollan -wolkow -wolke -wolever -woleslagle -wolansky -wojnicki -wohner -wohlfahrt -wohler -wloch -wittlin -wittkopp -wittenborn -wittels -withiam -withfield -wisz -wissel -wisseh -wislocki -wiscombe -wischmeyer -wischman -wirebaugh -winzelberg -winterstein -wintersmith -winterroth -winrich -winograd -winlock -winley -winkley -wings -winfred -winebaugh -windover -windly -winarski -wimbs -wimber -wiltgen -willmschen -williver -willinghurst -williamston -willenbrock -willars -willamson -wileman -wileczek -wildenberg -wildeman -wilcutt -wilch -wilby -wilbers -wikstrom -wigman -wigle -wigelsworth -wietzel -wiesneski -wienert -wienecke -wienandt -wieloch -wielgosz -wiedmann -wieckowski -wiece -wieand -widmar -widhalm -widgeon -widerski -widdows -widdop -widdison -widby -wida -whyne -whyel -whybrew -whittman -whittall -whitler -whitinger -whitewater -whitescarver -whitemarsh -whitecloud -whit -whistlehunt -whinnery -whillock -while -whilby -wheldon -wheatcroft -whapham -whaite -wettlaufer -wetterer -wettach -wetsel -wethern -westrum -westlie -westgaard -westerhof -westerfeld -westad -wesly -wesberry -werring -werre -wernz -wermter -werkmeister -werbelow -wentzlaff -weniger -wengreen -wendolski -wendelberger -wempa -weltzin -welti -weltch -wellnitz -wellenstein -wekenmann -weitze -weitman -weisholz -weishar -weisbaum -weinraub -weinbauer -weinbach -weidig -weiderhold -wehrwein -wehrs -wehrly -wehnes -wehn -wegge -weerts -weemhoff -weekey -wedman -weder -weckman -weckhorst -weaklend -wauters -wauer -waud -wattenberg -watte -watling -waszkiewicz -wasmus -wasilko -washor -wartchow -warshauer -warsham -warrender -warnstaff -warmuth -warmington -wardrup -wardhaugh -wardall -warchal -warboys -wanty -wanous -wanlass -wangstad -waneka -wandless -wandel -wanda -wamser -wamhoff -walvatne -waltemeyer -walsingham -walljasper -wallet -wallerich -walkling -walkers -walezak -waldroff -waldhoff -waldall -walbright -walat -wakita -waka -waisner -waiki -waiden -wagle -wagenblast -wadusky -wadden -waclawski -wackenhut -wackenheim -wachal -waananen -waack -vy -vukcevic -vreugdenhil -vreeman -vrazel -vranes -vranek -voytek -voves -vormelker -vorachek -vontungeln -vonniederhaus -vonner -vonhagen -vondrak -vondielingen -vonasek -vonallmen -voltaire -vollucci -vollick -vollenweider -volante -voitier -vogts -vocu -voci -voccia -vliet -vliem -vizarro -vizard -vittorini -vitro -vitolas -vititoe -viteo -visnic -visher -visel -viscia -viscera -vis -virrueta -virola -viren -vinz -vinke -vinger -vind -vinagre -viltz -villwock -villifana -villiard -villetas -villasana -villarin -villante -villacana -vile -vilcheck -vilardi -vigueras -vigoren -vignovich -vignaux -vignarath -vigier -vieweg -vietti -vietor -viegas -viebrock -vidals -victorin -vicsik -vicic -vicens -viapiano -vetsch -vetri -vertiz -versluis -verrilli -verrelli -verrecchia -verni -vernetti -vermeer -verling -verlato -verkler -verkamp -verghese -verducci -verant -venzeio -venturella -ventress -venton -venhorst -venerable -veneman -ven -velverton -velunza -velmontes -vellutini -vellekamp -veleta -veldkamp -velazques -veino -veigel -veeneman -vavro -vauters -vattes -vaszily -vastakis -vasiloff -vasilauskas -vasconcelos -vars -varos -varnon -varkey -vares -varenhorst -vardy -varcoe -vanwye -vanwoert -vanwieren -vanvickle -vantreese -vansyckle -vanstrander -vansteenburg -vanstee -vanslander -vanproosdy -vanpoucke -vanpoppelen -vanpatton -vanosdel -vannelli -vanmiddleswor -vanloh -vanlith -vankoten -vanisouvong -vanholland -vanhekken -vanharlingen -vanhandel -vangemert -vaneyck -vanert -vaneps -vanegdom -vandesteene -vanderschaege -vanderkam -vanderheiden -vandergriend -vanderark -vandeputte -vandenbergh -vandegraaff -vandebogart -vandamme -vandalsen -vandagriff -vanclief -vanboven -vanbecelaere -vanartsdalen -vanaller -vanakin -vanabel -valrie -valrey -valotta -vallangeon -valladolid -valaitis -vala -vair -vaidya -vaid -vagt -vagle -uyeno -uson -us -urwin -urtado -ursino -urry -urquiza -urps -urmeneta -urlaub -uribazo -urhahn -ure -urch -urbanic -urata -urankar -ur -uppinghouse -unthank -unland -unikel -ungvarsky -ungerleider -ungerecht -underkoffler -umlauf -umbdenstock -ulrick -uliano -uldrich -ulch -ulberg -uknown -ukena -uk -uhri -uhde -udley -uboldi -tzeremes -tysor -tyrus -tyrol -tyl -tyksinski -tycer -tyberg -twitt -tweden -tuy -tuton -tuter -tustison -tuschhoff -turso -turrigiano -turowski -turnbo -turnball -turlich -turli -turla -turkin -turke -turi -tuong -tulk -tulip -tugman -tuggles -tufano -tucknott -tuccillo -tubeszewski -tuason -tsuzuki -tsunoda -tschannen -trytten -trybala -truskowski -trueba -trueax -truden -trucchi -trotti -trongone -tromble -tromblay -trokey -troiani -troglin -trodden -troccoli -tritz -tritch -trischitta -trisch -trippet -triplette -trinca -trimmell -trilling -trieger -treworgy -trevorrow -trevillion -trevigne -trevett -tretter -treston -trepagnier -trentinella -trenkle -trenh -trenbeath -tremelling -treider -treib -treftz -tredennick -trecroci -trebil -traves -traversa -tratar -traster -trasport -trank -trampe -trammer -trame -trachte -toyoshima -towley -tovias -touvell -tout -toussant -tourikis -toten -tosten -tosic -tosches -tortoriello -tortorice -torstrick -torset -torrijos -torrie -torress -torred -torra -torma -torkildsen -toppi -toporek -topolosky -topick -topez -toper -toncrey -tompsett -tompkin -tomory -tommolino -tomjack -tombs -tombrello -tomaszycki -tomaski -tolzmann -tolston -tolosky -toldness -tokuoka -tokihiro -tokay -tok -tojo -tointon -tohill -togni -tognazzini -todeschi -tobola -tobeck -toala -toadvine -tllo -tkacz -titchener -titch -tissot -tiso -tirri -tipka -tintle -tinneberg -tinius -tinelli -tin -timmreck -timmerberg -timinsky -timi -timchak -tillberry -tilgner -tiff -tieszen -tiemeyer -tiemens -tiell -tiehen -tidey -tick -ticas -tiboni -tiberio -tibbert -thyne -thurton -thurau -thune -thrune -threets -thorngren -thornbrugh -thorin -thongdy -thommarson -thoene -thoben -thoams -thixton -thistlethwait -thingvold -thiesfeld -thierauf -thielbar -thiebeault -thiara -thews -theophilus -theodoratos -thenhaus -theam -thay -thalmann -thake -thady -tevlin -tevebaugh -testen -tesseneer -tervort -terri -terrey -terres -terrasas -terney -termeer -terlecki -terheggen -terhark -terhar -terepka -terault -terando -teppo -tepler -teper -tent -tenpas -tennill -tennett -tenley -templer -tempe -temp -teltschik -telschow -telle -tekippe -teitsort -teitenberg -tei -tegarden -teffeteller -tefera -teesdale -teemer -teekasingh -teddick -tebay -tebar -teats -teano -teagues -teachman -teabo -tchakian -tazzara -tayor -tavorn -tavira -taverna -tave -tautuiaki -tatters -tatevosian -tassey -taschereau -tarzia -tarring -tarrien -tarras -tarkenton -tariq -tardio -tarascio -tara -tappeiner -tannen -tankersly -tanious -tangren -tangredi -tangert -tamulis -tamburrino -tambasco -tamargo -tamanaha -talluto -taki -takeshita -takemura -takaoka -tajiri -taintor -tahu -tags -taglieri -tafel -tadiello -tacket -taborda -tabolt -tabisola -tabian -taback -szymansky -szwejbka -szweda -szufat -szubinski -szerlong -szekula -szczygiel -szczepanek -szalay -szafryk -syrek -syphard -synan -symmonds -sydner -swirsky -swires -swietoniowski -swickheimer -swets -swetland -swenk -sweetin -swavely -swatt -swatsworth -swatski -swartzmiller -swartzbeck -swartzbaugh -swansen -swalley -swaisgood -swails -swaggert -svrcek -svinth -svetz -svetlik -sutulovich -suttell -susswein -sussex -susor -susoev -susich -susana -surwillo -suran -sunn -sunkel -sundling -sundholm -sumsion -sump -summar -sumlar -suminski -sumi -sumas -sulzman -sultana -sullinger -suleski -sulcer -sul -sukeforth -suing -suglia -sugiki -suggett -sueltenfuss -suders -sudar -suchecki -sucharzewski -suchanek -subler -suben -subasic -styborski -stvil -stumme -stulick -studyvin -stubson -stuble -stubits -stubenrauch -strysko -struggs -strudwick -strowd -stroub -stroth -stropko -stroinski -strnad -stritzke -stritzinger -strittmater -strieker -strickert -strength -stremlow -stremel -strejcek -streitmatter -streif -streb -streams -straws -strausberg -strathy -strathman -strater -straseskie -strapp -stranger -strande -stramiello -strakbein -strachn -stoyer -stoyanoff -stowman -stowbridge -stove -stoutt -stoutenburg -stouer -stouder -store -stoppkotte -stopa -stolts -stolinski -stolecki -stole -stojanovic -stofsky -stoffregen -stoffels -stoffa -stoesz -stodolski -stockett -stittsworth -stipek -stinett -stillion -stillinger -stiel -stiehl -stiegler -stieg -stickrod -sticht -stibbins -stevener -steudeman -stetzel -sterr -sternal -sterback -stephco -stenman -stemmerman -stemme -stemarie -stelting -stellings -steir -steinlicht -steiniger -steinbrenner -steidinger -stehney -stehly -stefka -steffel -stefanovich -steeno -steeneck -steenburgh -steckline -steckelberg -stazenski -stavis -staum -stauffacher -stauder -staude -statzer -stasinos -starwalt -starrs -starnauld -starek -stapleford -stapf -stapels -stansifer -stanojevic -stanick -standring -standrew -standke -standford -stancle -stanciel -stamnos -stamison -stallons -stallion -stallbaumer -stailey -staie -staiano -stahnke -stahle -stageman -stacken -stachecki -stableford -stabb -sramek -squines -spurzem -sprock -springate -spreng -spratte -sprang -sprake -spotwood -splain -spiwak -spitznogle -spirito -spirek -spingola -spincic -spillett -spika -spigelman -spielmann -spetter -sperl -spenard -speilman -speigel -speice -speach -spaugh -spatafore -spatafora -spar -spanski -spannaus -spanish -spanfellner -spalinger -spagnolia -spadea -spadafore -spadaccini -spachtholz -spach -spacek -sozzi -sowels -soulasinh -souffront -soucier -sotolo -soteros -sotero -soter -sossaman -soshnik -sorrick -soron -soroa -sornsen -sorgente -sordahl -sonza -sontheimer -sonstroem -sonoski -sonnenfeld -sonderup -somani -soman -somalski -solymani -solton -soloveichik -solmonson -sollberger -solkowitz -solimini -soleman -solders -soldavini -solanki -sohm -sodek -sode -socks -sockalosky -sochan -sobilo -soapes -snyders -snowman -snowdy -sniffin -snetting -snellman -snellenberger -snellen -snellbaker -sneathen -sneath -smyrl -smull -smolko -smithheart -smiht -smestad -sluter -slupe -slomkowski -slomka -slomba -sliz -slipp -slim -slightam -sleper -sledz -slechta -slaughterbeck -slaughenhoupt -slaight -sladick -slader -skye -skupski -skroch -skripko -skrine -skreen -skradski -skorski -skornik -skokowski -skok -skocilich -skinnen -skillington -skemp -skay -skattebo -skagerberg -siwik -sivik -sitar -sitaca -sission -sissac -sisney -siruta -sirmon -sirkoch -siriano -siracuse -sipler -sipho -sinkovich -sinkey -sinistore -singo -sinclaire -simunovich -simuel -simril -simpton -simpliciano -simoson -simonis -simoncini -simister -simison -simenez -simco -simcheck -silvi -silveri -silvano -silletto -sillavan -siles -silbernagel -sigwart -sigona -signs -signaigo -sigmond -sigars -siemek -siem -sieloff -sieligowski -siefke -siebeneck -siebenberg -siderman -siderine -sidberry -sicilia -sichta -sibrel -sibell -sibayan -shyu -shvey -shuter -shumski -shulund -shulte -shuker -shugars -shufford -shubrick -shub -shouldice -shotton -shotkoski -shost -shortsleeve -shorette -shopen -shont -shonerd -shone -shomin -shomer -sholl -shoger -shirts -shirota -shinholster -shindle -shinaberry -shimura -shimsky -shimo -shillinger -shilleh -shihadeh -shierling -shewbridge -shevitz -sheumaker -shettle -shers -sherren -shern -sherling -sherle -sheridon -sherdon -shelter -shelmon -shelling -shelko -sheline -shelhamer -shekey -shekarchi -sheinberg -shehata -sheffo -shebchuk -shearing -sheaks -shazier -shayne -shawnee -shawhan -shaud -shastri -sharr -sharlin -shark -sharits -sharf -share -shapskinsky -shape -shankland -shames -shalhoup -shaftic -shadiack -shackle -shabala -sevick -sevedge -seurer -sette -servan -serva -serrett -serrand -serisky -sering -serie -serianni -sereda -sequin -senti -senosk -senno -senner -senna -senerchia -sendro -sencabaugh -semonick -semetara -sembler -selvaggio -seltzen -selser -sellek -sellberg -selking -seliba -selfe -seki -seifarth -seielstad -sehorn -sehl -segur -segrave -sefcovic -seeton -seek -seecharan -seeberger -sedman -sedano -secunda -seburg -sebold -sebastion -seate -seashore -seard -seang -seaney -seace -seabert -sczygiel -scurti -scullen -scroggy -scripter -scowden -scorsone -scoleri -scocca -scire -sciotti -sciera -scibilia -sciabica -schwisow -schwier -schweinert -schweinberg -schweiker -schweigart -schweickert -schwass -schwarzenbach -schwarts -schwarm -schwamberger -schwalenberg -schwabenbauer -schwabauer -schuttler -schutjer -schuring -schure -schuppert -schuner -schulthess -schulteis -schulle -schuhmacher -schuermann -schuepfer -schuele -schrott -schrope -schrauder -schrandt -schouviller -schonert -schonack -scholzen -scholnick -schoffstall -schoenthal -schoenstein -schoenhut -schoenhard -schoeneman -schoemer -schoborg -schnicke -schneidtmille -schneiders -schmunk -schmoyer -schmeider -schmale -schlottman -schlitzer -schlipp -schlink -schliesser -schlieper -schlesselman -schlensker -schleis -schlein -schleck -schlabaugh -schiver -schirpke -schindel -schimler -schiltz -schillings -schiffelbein -schiebel -schiaffino -schettig -schetrompf -schessler -scherler -scheppe -schepens -schellman -schellhammer -scheirman -scheibelhut -schei -schech -scheaffer -schattner -schatt -scharte -schappell -schanding -schanbacher -schan -schaming -schamburek -schaeffler -schadle -schadegg -schabot -schaberg -schaadt -scerra -scercy -scattergood -scarset -scarrow -scarritt -scarpaci -scarles -scarce -scanlin -scalice -scali -scahill -sazama -saysithideth -sayres -sayavong -sawlivich -sawczyszyn -savo -savina -savilla -savela -savasta -saurel -saupe -sauberan -satunas -sattley -satterley -satiago -satchel -saska -sarvey -saroukos -sarnowski -sarnoff -sarli -sarley -sarelas -sardi -sarconi -sarbacher -saragusa -saraceno -sar -sappenfield -sanzotta -santy -santorella -santopolo -santin -santiesteban -santhuff -santell -sansburn -sanpaolo -sanocki -sannon -sannella -sanlucas -sanjabi -sangrey -sangi -sanghvi -sangh -sanfiorenzo -sandrowicz -sandoual -sandora -sandlian -sandi -sandholm -samuelsen -samu -sampedro -samorano -samok -samide -samber -samain -saltzgaber -saltonstall -saltern -salte -salonia -salmond -sallas -saliva -saler -salek -saldibar -salabarria -sakon -sakelaris -sake -sajorda -sajor -sahni -sagoes -saglimbeni -sagehorn -sagayaga -safdeye -safa -sadlon -sadbury -sadahiro -sache -sacavage -sacarello -sables -sabean -sabates -sabataso -saager -saa -rzucidlo -rzeszutko -ryther -rylant -ryks -ryherd -ryhal -rygalski -rybacki -rviz -ruys -ruuska -ruttman -ruttinger -ruts -ruter -rutana -rusten -russnak -rusinko -rusi -rushiti -rushia -rushdan -ruscetti -rusboldt -ruppenthal -rupke -rundahl -rund -rummer -rummans -rumler -ruminski -rumfola -rull -ruise -ruggle -ruescher -ruegsegger -ruegger -rudzik -rudney -rudisail -rudis -rudduck -rucky -ruckdeschel -rubins -rubenzer -rozo -rox -rowzee -rownd -rowey -rowcliffe -rovinsky -roup -rottner -rothmiller -rothgery -rothbart -rotenberg -rotando -roswick -rosu -rossum -rossetto -rosseter -rosselli -roskos -roskopf -rosenholm -rosencranz -rosenbrook -rosella -rosebaugh -rosbough -rosan -roofe -ronson -ronhaar -rones -ronchetto -romeno -rombs -romanoski -romanini -romanick -roloson -rollock -rollheiser -rollans -rold -rolark -rokisky -roja -roik -rohaley -rognstad -rofkahr -roethel -roessner -roesser -roehrman -roehrenbeck -roegge -roefaro -rody -rodrigo -rodricks -rodino -rodillas -rodia -rodenbaugh -rodell -rodeiguez -rodarta -rockenbach -robley -robes -robertello -robello -robella -robak -roarx -rivlin -rivira -rivena -ritzert -ritell -ritcheson -riska -risberg -ripke -rinkel -riniker -ringman -ringlein -ringelheim -ringbloom -rinde -rincones -rimson -rimar -riliford -rihn -rihanek -rigoni -riggott -riffon -rievley -rieve -riesenweber -rieg -rieff -riedell -riechers -rieber -rieben -riebeling -ridpath -ridler -riddock -rickson -rickmon -rickley -rickie -richrdson -ribot -riblet -rhyme -rhoney -rhed -rhead -rezek -reynvaan -reynoza -reye -rexwinkle -revord -reven -reveal -reutlinger -reuland -reuer -retzler -rettke -retterbush -retort -reth -resureccion -restifo -resnikoff -rerko -repsher -repress -reppell -repinski -repenning -renze -rennix -renning -renney -rennell -renfer -rener -rendino -renaker -remmen -rementer -remenaric -relkin -reiterman -reist -reisser -reisling -reisert -reise -reio -reinmiller -reine -reill -reigner -reifler -reifel -reidenbach -rehnquist -rehler -rehfield -rehfeldt -rehberger -regler -regel -regehr -refsell -reen -reem -reeher -reech -reeber -redstone -redo -redish -redhage -redenz -redell -reddrick -redder -reckley -reckleben -recine -rebusi -rebuldela -rebera -rebell -rebeles -reavley -reau -reatherford -reaney -reaid -reagans -reado -razinger -razey -raza -rayside -raymos -raygosa -rawding -raw -ravens -ravenhorst -rav -rauzman -rautenberg -rausin -rauner -raudebaugh -rattner -ratleff -rathmell -rathgeb -ratermann -rataczak -rasher -rashdi -rashada -rasbery -rarang -rapose -rapa -ransick -ranos -rankhorn -raniero -rang -randzin -rancher -rances -rancatti -ramoutar -ramnarase -ramlakhan -ramiro -ramiriz -ramez -rameriez -rambus -ramaswamy -ramagos -ramadanovic -ramadan -ralko -ralat -rakel -raju -rajtar -raja -rairdon -raimo -raif -raiche -raheja -raheem -rahall -raguso -rafanan -rafalko -raes -radzavich -radune -radulescu -raduenz -radsek -radom -radell -rackett -racilis -rachi -rach -racedo -rabold -rabner -rabern -rabenstein -rabelo -quintas -quinlisk -quine -quincey -quilantang -quicksey -quereto -quelette -quaresma -quann -quall -quails -quaas -qadir -pytlovany -pybus -putaski -purwin -purter -purple -purol -purkiss -pummel -pults -pultorak -pullian -puller -pulham -puletasi -puidokas -puhuyaoma -puffinburger -puesey -puelo -puddephatt -pucillo -puc -przepiora -prys -pruzansky -pruyn -prust -prusinski -prus -pruette -provis -provine -proue -protz -prosonic -prophett -pronto -pronovost -proksch -prok -proietto -proia -proenza -probus -prizzi -privalsky -prisock -printy -primozich -priefert -pridham -preus -prettner -prester -pressel -preskar -premer -premeaux -preisinger -preisendorf -prehm -pregeant -preedom -pralle -prag -pradel -prabhakar -poyser -poupard -potterson -pottebaum -potolsky -poto -potes -postlethwaite -postin -pospishil -poskus -posik -portsche -portolese -porrini -poro -porietis -poppenhagen -poppen -poppel -pontonio -ponting -pono -pomposo -pomponio -pomplun -pomo -pomeranz -pomella -pomberg -pomares -polucha -polselli -polnau -pollins -pollara -polisky -polio -policz -policar -polchinski -polashek -polakowski -polaco -poitevin -poister -pointon -poinson -poinsett -pogar -poetter -podmore -poczobut -pockette -pocasangre -pobre -plys -plunket -plumpton -pluemer -plover -ploetz -ploense -plocek -plikerd -pleet -pleasure -plazza -plaxico -platko -platania -plassmann -plantier -plantenga -plancarte -plakke -pladson -pizzano -pivin -pittsinger -pittmann -pitsenbarger -pitonyak -pitmon -pitfield -pitek -pitassi -pistulka -pistole -piske -pishko -pisegna -pirnie -pirkey -pippitt -piorkowski -pinna -pinkton -pinks -pinkerman -pinchbeck -pimpare -pilloud -pillitteri -pilakowski -pikus -pikula -pikkarainen -pijanowski -pigao -piette -pietrzykowski -pietryga -pietropaolo -pies -piersaul -pieri -piepenbrink -pieloch -pieffer -picucci -pickl -pickhardt -picini -picerni -picaro -piatak -pianalto -piacquadio -phoun -phonharath -phomsoukha -phommaseng -phinazee -phillippy -phillians -philavong -phernetton -pheonix -phenes -pfotenhauer -pfleiderer -pfleider -pflanz -pfieffer -pfeiff -pfautz -pezzica -pevez -pevehouse -petrunger -petrullo -petrucco -petrson -petrilla -petrides -petrauskas -petkus -petiet -petgrave -peterschick -petaway -pesner -pesiri -pesin -pesa -pervine -pertubal -perschall -perrucci -perow -peroddy -perocho -perno -perloff -peria -pergerson -pereyda -pereria -pereiro -perdzock -perchinski -peraro -peques -pepito -pentek -pentaris -pennison -pennewell -pennacchio -penington -peninger -pengelly -penegar -pencek -penale -penaherrera -pembrook -pelyo -pelligra -pele -pekala -peine -peightal -peers -peerbolt -pedaci -ped -pectol -pecot -pecos -pecorelli -pechart -pebbles -peatry -pearle -peard -peakes -peaches -paywa -paysinger -payes -pawelczyk -pavoni -pavlovic -pavelec -pavan -paullus -pauldo -patuto -patruno -patoine -patock -patka -pata -pastiva -pastick -passwater -passineau -passi -pasquino -pasquel -pasquarelli -pason -paskert -pashley -pashia -partis -partido -parsi -parrill -parolari -parisio -pariser -parents -parduhn -parden -parcel -parbo -paray -papson -pappa -papillion -papik -paparella -papai -paoletto -pantone -pannhoff -pankowski -pangelina -pangallo -panda -panciera -panchana -panasci -panarella -paltanavage -palsgrove -palovick -paloma -palmiotto -palmiero -palmerton -palmerin -pallet -pallesen -pallazzo -palitti -palischak -paliotta -palifka -palenik -palecek -palczewski -palasik -palacious -pala -pahnke -pahls -paguirigan -pagnozzi -pagliarini -paduano -paddison -padavano -pacubas -packingham -packebush -pacius -paci -pacey -pacas -pac -ozolins -ozog -ozminkowski -oyuela -owston -ovsanik -overlie -overbo -oven -ovard -ourso -ouderkirk -ottis -otterholt -otomo -otley -osuch -ostling -ostlie -ostheimer -osterstuck -osterdyk -ostenson -osten -ossowski -osso -osmon -osle -oskins -osendorf -osburne -osawa -ortic -ortenzio -orrantia -orrala -orouke -orone -orofino -orkwis -orizetti -oris -orines -orgovan -orgain -orendorff -orendain -oree -orea -ordner -ordas -orbeck -oravec -opray -ophus -opela -opatrny -opara -oosterhof -onusko -onstead -onorata -onitsuka -onishea -oneel -ondrusek -omundson -omoyosi -omdahl -oltz -olton -olrich -olquin -olp -olmscheid -olm -olivio -oliverson -oliven -olis -oline -olexa -olesnevich -olesky -oleksiak -oldani -olcus -oksen -okolo -okojie -okerblom -okajima -ohrenich -ohms -ohmann -ohland -oguinn -ogiba -ogeen -oge -oganyan -offenbacker -oesterreich -oerther -oelschlager -odore -odonal -odonahue -odiase -odenwald -odens -odear -octave -ockey -ochwat -ochotorena -ochiltree -och -ocejo -ocano -obstfeld -obleness -obiesie -oberloh -oberfell -obannion -oakleaf -oak -nyswonger -nyseth -ny -nuvallie -nusom -nush -nurnberger -nunziata -nunev -nudelman -nucklos -nuce -novik -noury -notik -notari -nosis -nosel -northcraft -northcote -norskog -norrid -norquest -normann -norma -norlund -norley -norcott -norbeck -noonon -nooney -nonaka -nollora -nollman -nolda -nolau -nol -nogueras -nogowski -nogosek -noftsger -noeldner -nocum -nocket -nocar -noaks -niverson -nittinger -nitterhouse -nitkowski -niten -nitchals -nissila -nishiguchi -nippert -nippe -ninos -nine -nimocks -nimmer -nilsby -nill -nikolas -nikirk -niimi -nii -niheu -nihei -nigg -niforos -niezgoda -nieva -niethamer -niesman -nienow -niedermayer -niedecken -nied -niebyl -nie -nicotera -nicolet -nicolaisen -nickolls -nickol -nickleson -nickelston -nichois -nicewarner -niceswander -nicarry -nicar -nhep -ngueyn -nguen -ngov -nghe -newsted -newnum -newer -newburg -newall -nevland -neugin -neuenfeldt -neuby -nestel -nesseth -nervis -nerpio -nenninger -nemzek -nemoede -nemer -nelmark -nellem -neithercutt -neiswander -neisius -neish -neihart -neiderhiser -nehmer -negrisor -negrette -nefzger -neeper -neelon -needels -needam -nealley -nealen -nealeigh -nayee -nawn -navone -navejas -navedo -navar -naud -natiello -nathoo -nasson -naselli -nase -naschke -narez -nares -nappier -napoletano -napihaa -naone -nannini -nannie -nania -nanda -nampel -nalepka -najjar -nahass -naeve -naecker -nadell -myrum -myint -myhr -myerscough -muterspaw -mutana -muszar -mustafaa -must -mussenden -mussen -mushett -musetti -musemeche -musel -muscaro -murrock -murrie -murrain -murilla -murelli -murayama -murai -munzell -munteanu -munt -munshower -munlin -muni -munding -munda -mulvehill -mulry -mulliner -mullice -mullaly -muhr -muhn -mugica -muether -muehlberger -muehlbach -muccia -mrowka -mrotz -mrochek -mracek -moznett -moyse -moxham -mowris -moutoux -moussette -mousley -moun -moulinos -mostrom -mostert -mosses -moskovitz -mosinski -mosgrove -mosebach -moschetto -morway -morthland -morta -morsbach -morreau -morowski -moroles -morlas -morgenstein -morasch -moranda -moralis -moraitis -moraites -moote -moorcroft -montier -montie -montesa -monteros -montefusco -montecalvo -montazami -montaya -monsky -monsegur -monnet -monjaras -moniot -monholland -monet -monestine -monds -mondry -mondo -mondino -momsen -momaya -molski -mollins -molitoris -mokbel -moistner -moilien -mohring -mohrbacher -mogro -moerman -moellman -modero -moczo -mocco -mocarski -mobus -mizukami -miyares -miyahara -miyagishima -mittendorf -mittelstadt -mitsakos -mith -mita -misura -missler -misrahi -misnick -misemer -miscovich -miscavage -misasi -mirich -miravalle -miras -miramon -mioduszewski -mio -minster -minnier -minneweather -minnehan -minkel -miners -mineah -mincher -minatra -minato -minari -minardo -milush -miltner -milster -milovich -milman -millraney -millot -millisor -milliren -millimaki -millich -milland -milkovich -militano -mileti -milek -mildren -milder -milch -milbert -milbauer -milanowski -milanese -mikulecky -mikulak -mikita -mikelsen -mihlfeld -mihatsch -mihalkovic -mihalko -mignogna -migl -miessner -mieras -midcap -mickleberry -michocki -michelman -michales -michalenko -mias -mhoon -mezza -mezquita -mezera -meyette -meyerhoffer -meyerhofer -meury -meuller -mettle -metter -mettee -metta -metroka -metevier -metaxas -mestrovich -messa -mesidor -meschino -meryman -merrett -merrbach -merone -merkling -merickel -mercante -meo -mensinger -menist -menino -menhennett -mengarelli -menez -menesez -mendelowitz -mencl -men -mellors -mellom -mellencamp -mellekas -melkonian -melish -meleski -melero -melchin -melbert -melandez -melander -meisels -meighen -mehtala -mehserle -meholick -mehalic -megna -meginnis -meggitt -meggers -meger -meeter -meeske -meeder -medows -mednick -medich -mediate -median -medez -medbery -medak -mebus -meason -meanor -meager -mcwethy -mcvean -mcthune -mcsweeny -mcspedon -mcsharry -mcravin -mcraven -mcquistion -mcquilkin -mcquaide -mcquage -mcpherren -mcpeck -mcnaney -mcmindes -mcmilliam -mcmenomy -mcmarlin -mcmahill -mcloy -mcloone -mclear -mclaughlan -mckoan -mckerley -mckerchie -mckeone -mckennie -mckellan -mckaig -mcinally -mchendry -mcgwier -mcguirt -mcgugin -mcgready -mcgraff -mcgrade -mcgorry -mcglothian -mcglory -mcgavisk -mcgarrigle -mcever -mcelmurry -mcelheny -mcelhattan -mcdaries -mcdargh -mccumiskey -mccredie -mccraven -mccoyle -mccoppin -mccombie -mccloughan -mccleve -mcclenty -mcclennan -mcclees -mccleer -mcclearen -mccaskin -mccartin -mccamy -mccammack -mccaman -mccalop -mccaffity -mcburrows -mcburrough -mcbrady -mcalphin -mcalhaney -mcaboy -mazikowski -mazar -mayzes -maymon -mayeski -maycumber -mayala -maxin -maute -mauss -mauritz -maurey -maulin -matuszeski -matusik -matuseski -mattu -mattier -matthys -matteucci -matsuhara -matsen -matrejek -matlick -mathewes -mathal -matey -matesic -materna -matelic -matarese -matalavage -mataalii -mastrocovi -mastrobuono -mastoris -mastera -mastenbrook -mastella -massaglia -maslyn -masley -masin -masiclat -mashiah -mashek -mascot -maschke -maschio -masch -marzinske -marxen -marville -marushia -marungo -maruffo -maruca -martinz -martinetto -martinetti -martinea -martincic -martig -marske -marshalsea -marsette -marroguin -marreo -marquena -marona -marola -marmie -markstrom -marksbury -markrof -markovitz -markevich -markette -marius -maritt -marionneaux -marinos -marinese -maricich -marhoefer -margiotta -maren -marecki -marcone -marcoline -marcolina -marchuk -marcelynas -marcaida -marbus -marazzi -marazas -marashio -maranville -marani -marandi -marander -marade -mapalo -manza -manylath -manvelyan -manusyants -mantuano -mantsch -mantell -mantano -mansmann -manship -manozca -mannie -mannes -manliguis -manigold -maniatis -mania -mangon -manginelli -mangicavallo -mangiaracina -mangas -mangaoang -manford -mandiola -manchini -mamoran -mammucari -mamer -malys -malvin -malvaez -malusky -maltie -maltbie -malphurs -malotte -malloch -malkasian -malit -malis -malinski -malinchalk -malicote -malich -maletz -malesky -maler -malekzadeh -maleh -malech -malbaurn -malara -malakan -malakai -malafronte -malady -makley -makekau -majmundar -majersky -maiten -mainiero -mainello -mailes -maigret -mahusay -maharg -mahany -maguet -magowan -magone -magnall -magleby -maglaya -maginn -magin -magil -maggs -maggie -magelssen -magaw -magario -magallanez -maeweather -madura -madrueno -madinger -madho -maderas -maddry -madaris -maczko -macugay -macrowski -macomb -macnab -maclaurin -maclauchlan -mackynen -macksoud -macks -mackney -mackintosh -mackinder -maciej -macie -machowski -machol -machinsky -machalek -macchione -macall -macafee -mabus -mabins -mabane -maassen -lysen -lynaugh -lykens -luvian -luttenegger -lutkins -lutchman -lutao -luskin -luskey -lungren -lundburg -lumm -lulic -lulewicz -lukaszewicz -luiso -luhnow -lugg -lugardo -lufsey -luetmer -luepke -ludtke -luczkowiak -luckhardt -luckenbaugh -lucken -luchenbill -lubke -lubell -lube -lubbock -lozon -loze -lozaya -loynd -loxley -lowthorp -lowek -loviska -lovig -lovgren -loverink -lovensheimer -lounsbery -loukota -loughnan -loughborough -loudenslager -lotson -lothspeich -lotan -lossa -losolla -losier -lorna -lorimor -lori -lorett -lorens -loreg -loreaux -lorandeau -loque -lopus -lopriore -lootens -lookadoo -lonneman -lonn -longiotti -longhini -longendyke -longbotham -londre -londagin -lonabaugh -lomu -lominy -lomboy -lomartire -lollie -lokker -loia -loi -logrono -logosso -loggains -loflen -lofink -lofgreen -loewenthal -loeurm -loerzel -loeppke -loepp -loegering -lodholz -lockey -lockbaum -lochte -lochan -lobur -loban -llorca -lloid -llewlyn -llanez -liwanag -livernoche -litzenberg -litano -lissard -lisko -liscio -lipskar -lipscombe -lipschutz -lipphardt -lipinsky -lipani -lions -linnertz -links -linkowski -linko -lingafelter -lingafelt -lindzy -lindman -lindert -lindersmith -linders -linderholm -lindburg -lindaman -lincicome -linberg -linamen -limke -lilyquist -liloia -lillpop -lillick -lillich -lilien -lighter -liggin -lifton -lifsey -lifford -lifer -liest -liem -lidke -liddiard -lick -lichtenwalner -lichtenfeld -lichak -licerio -licausi -licause -libman -libera -liaw -leya -lewitt -lewandoski -levoy -levitin -leviston -leventer -levenhagen -leveillee -leve -lettre -letsche -lesiak -leshinsky -leriche -leri -lepri -leppke -lepping -lepp -lepo -leonhard -leonello -leona -leofsky -lensing -lenoci -lennington -lennihan -lenn -lenkiewicz -lenis -lenertz -lenehan -lenci -lenarz -lemucchi -lemick -lelah -lelacheur -lejenne -leitman -leithoff -leistiko -leipert -leibert -leibe -lehnertz -leheny -lehar -lehane -legorreta -legoff -legleu -legions -leggat -leggans -legaard -left -leesmann -leemaster -leemans -ledwig -ledlie -lederhos -lecorchick -leclear -leclare -leckman -leckbee -lebrecque -lebahn -leavenworth -leatherberry -leamer -leady -lazzeri -lazarini -lazarine -laza -layng -lawshe -lawman -lawer -laware -lavista -lavis -laviola -lavinder -lavern -lavene -lavelett -lavanway -lavanchy -lavalette -lavala -lavadie -lava -lautzenheiser -lautt -lauser -laurimore -lauridsen -laurey -laurenti -laurente -laurenitis -laurelli -laukitis -laud -lattrell -lattner -latterell -latten -lattari -lattanzi -latif -lastufka -lasswell -lasseson -lassa -laslo -laski -lashute -lashmet -larrieu -larrier -larribeau -laronda -larney -larita -lariccia -largin -larez -lardin -larch -lapusnak -laprete -lapre -lapradd -lapore -lapinsky -lapid -laperriere -laos -lantto -lantaff -lanson -lanois -lanius -lanini -languirand -languell -langstraat -langreck -langkabel -langill -langeness -langefels -langarica -langager -lanfranco -lanfear -lanfair -landvatter -landolfi -landborg -lanagan -lampson -lampshire -lamoreux -lambrukos -lambrakis -lamborne -lambing -lamax -lamarch -lallave -lalka -lais -lairy -laiben -lahren -lahn -lahmers -lah -lagory -laforrest -laflore -lafkas -lafield -lafay -laduc -laderer -ladell -ladakakos -lacoy -lacki -lacio -lacinski -lachowsky -lacerda -lace -lacasa -labruzzo -labre -labove -laberpool -labbadia -labarba -labady -kytle -kym -ky -kwasnicki -kwapniewski -kwang -kuzminski -kuzel -kuwahara -kut -kusko -kusick -kuruvilla -kurtulus -kurtis -kurtich -kurkowski -kurkeyerian -kuritz -kurelko -kurcaba -kuralt -kuprewicz -kupetz -kuntzman -kunishige -kundtz -kulwicki -kulow -kulis -kuhlmey -kufel -kues -kuehnel -kudrick -kudlacik -kudej -kuchel -kuchan -kucha -kuboushek -kubishta -kubilus -kubert -kubeika -kubasik -kuakini -krzyston -krzeczkowski -kryzak -krygier -kry -krupski -krupke -krupansky -krumvieda -krumholz -krumbholz -krudop -krstic -krovious -krommes -kromm -krolak -kroes -kroening -kroener -kritter -kristy -krisman -kriege -kridel -kreul -kretsinger -kretlow -kresal -krejsa -kreines -kreig -krefft -krauskopf -kratt -krassow -krasnecky -krance -krajcik -krail -kraham -krack -kozloff -kozlak -kozera -kozee -koyama -kowalowski -kowalchuk -kovalovsky -kovalcheck -koutz -kotts -kostyk -kosty -kostohryz -kostiuk -kostis -kostick -kosofsky -kosman -kosin -kosier -kosen -kosco -koschnitzki -kosbab -kosack -korzep -korvin -kortkamp -kornrumpf -korfhage -kordus -korchnak -koppinger -kopinski -kopald -kooyman -koopmans -koonz -kooker -kooch -konzal -konye -kontogiannis -konruff -konowal -konopnicki -konopacky -konopacki -konig -konicki -konecni -kondel -konakowitz -komlos -kombe -komatz -kolm -kollmeyer -kollasch -kolin -kolden -kolbo -kolata -kolaga -kokocinski -koko -koinzan -kohrman -kohnz -kogler -koets -koerwitz -koep -koenecke -koehly -kockler -kocka -kociolek -kobie -knudsuig -knoten -knotek -knole -knochel -knobbe -knightstep -knigge -knife -kniess -knickelbein -kneisler -kneedler -knedler -knall -knable -klym -klussmann -kluever -kludt -klouda -klotzbach -klosowski -klockars -klinker -klingshirn -klingelhoets -klingelhoefer -klena -klempa -klemisch -klemens -klemencic -klemen -kleinhenz -klecha -klebanow -klebanoff -klave -klang -klammer -klamet -klaers -klacic -kjar -kivisto -kivel -kitzrow -kitzerow -kitz -kiszka -kistenmacher -kisicki -kisak -kirylo -kirson -kirschke -kirmer -kirakosyan -kinton -kint -kinsland -kinlock -kini -kingsolver -kingdon -kindschuh -kindlimann -kindl -kindberg -kinas -kinaj -kimberl -killoy -killette -killer -killary -kilgor -kildoo -kilborne -kilbert -kil -kijek -kiewiet -kiever -kiesz -kiessling -kielar -kiehn -khosravi -kholodivker -kho -khatib -khatcherian -keyworth -keylor -kewanwytewa -kettman -kettlewell -kettl -kettelle -kethcart -ketay -keslar -kesby -kerne -kerk -kercy -kerchal -kerbel -kenrick -kennis -kennin -kennemuth -kennelty -kenkel -kemmerling -kemfort -kelstrom -kellow -kellom -kelk -keliiholokai -kelcourse -kekua -keiger -keglovic -keesecker -keehne -keedah -keding -keavney -keanu -keagy -keaffaber -keadle -kazemi -kazanowski -kazanjian -kazan -kawelo -kavanah -kautzer -kaukola -kaufusi -kauffeld -katowicz -katos -katheder -kately -kata -kastor -kastl -kassouf -kassler -kassam -kaskey -kasimis -kasdon -kaschmitter -kaschel -karratti -karpinen -karpen -karmann -karlovich -karlen -karkut -karin -kariger -karaffa -kapsos -kapps -kapnick -kanoa -kanney -kannas -kanduth -kampman -kamimura -kamens -kamemoto -kalvaitis -kaltenhauser -kalloch -kaller -kallenberg -kaliszuk -kalinoski -kalinger -kalich -kalfus -kalfayan -kalert -kalenkoski -kalen -kaleiwahea -kaleel -kaldas -kalawe -kalathas -kakos -kaiserman -kais -kailiponi -kaighn -kahuhu -kahoun -kahen -kahaleua -kah -kagy -kager -kagarise -kaffka -kaempfer -kaemmerer -kaelker -kady -kadner -kadlubowski -kadakia -kacynski -kacic -kach -kabrick -justman -justine -jurina -jurik -jurcik -junius -jumalon -julca -jui -jugan -juart -jove -journeay -joung -jou -josilowsky -josephsen -josephpauline -jorde -joor -jonte -jolie -johnke -johanningmeie -joerg -jochems -jilk -ji -jhonston -jez -jethva -jethro -jest -jesko -jerrel -jerich -jentsch -jensvold -jennrich -jenious -jenck -jemenez -jelle -jelinski -jeleniewski -jelen -jeffrie -jefford -jedik -jebbett -jayes -javarone -jauss -jaus -jaskolski -jasionowski -jasin -jarzynka -jarva -jaruis -jaross -jaret -jaquess -janovich -jannusch -jann -jankins -janitz -janicke -jangula -jamon -jammer -jamie -jameel -jakupcak -jakubczak -jakowich -jakeman -jagneaux -jagher -jaekel -jadin -jacobowitz -jackstadt -jackowiak -jackiewicz -jackels -jabour -izsak -izarraras -iwasa -iwanyszyn -iulo -iuliucci -iturbide -itkin -isby -isam -isales -isackson -irizarri -iribarren -irani -iracheta -iott -ioli -iodice -ioannidis -intriago -interrante -intermill -insco -inloes -ingrim -inglin -inglese -ingala -infield -inestroza -ineson -indest -incorvaia -inacio -imparato -imm -imfeld -imaizumi -illescas -ikuta -iino -ignasiak -igler -igel -iffert -idris -idema -ichinotsubo -ichinose -iburg -iarossi -iannaccone -iams -iacovissi -hytros -hyten -hysinger -hylle -hylinski -hvizdos -huyghe -huus -hutsler -hutchen -hustus -huso -husni -huslander -huska -hush -huschle -husayko -husanini -hurtis -hurter -hurrington -hurrigan -hurl -hurban -hunten -hundemer -humerickhouse -humbel -hulstine -hulm -huitzacua -hughlett -huger -huewe -huels -hudrick -hudek -huckeby -hubright -hubric -hubel -hsi -hryniewich -hrovat -hronick -hribar -hozempa -hoxworth -howryla -howison -howieson -howdeshell -hoving -hovi -hovelson -hovell -houten -housten -housekeeper -houpe -houp -houman -houghland -hougas -hothan -hotchkin -hoste -hosie -hosendove -hoseman -hoseck -hoschouer -horwood -horuath -hortillosa -horth -horsfield -horniak -hornby -hormander -horii -hores -horaney -horal -hopskins -hoppesch -hoopengardner -hoomana -hoolihan -hoof -honzel -honse -honohan -hongo -hongerholt -homola -homerding -homchick -holy -holvey -holsing -holshue -hollenberg -hollemon -holla -holka -holifeild -holets -holdt -holdness -holdiness -holda -holcey -holbein -hoium -hoisl -hohstadt -hohowski -hoh -hogy -hogsten -hogsette -hoggins -hofler -hoffstot -hoffschneider -hoffee -hoevel -hoernemann -hoeper -hoener -hoene -hoeke -hoeg -hoeflich -hoeffner -hoeffliger -hoecker -hoeck -hoe -hodgen -hodan -hockema -hochschild -hobkirk -hnatow -hledik -hjalmarson -hitzler -hittman -hisman -hirstein -hirschhorn -hirsche -hirkaler -hiraoka -hiraki -hipwell -hippo -hinsey -hinkey -hinish -hingst -hingle -hindin -hinahon -himelstein -hillburg -hillaire -hilgert -hildred -hildahl -hilcher -higueros -higle -higinbotham -hieserich -hidvegi -hidrogo -hickton -hickonbottom -hickert -hibl -heyveld -heydel -hevner -hevesy -heverley -heverin -heusley -heuberger -hettwer -hett -heter -hesters -hessong -hessing -hessenthaler -hessell -hessee -hesby -herzberger -herwood -herting -herscher -herschel -herrling -herrig -herriage -herrel -herre -herpolsheimer -hernanders -hermosura -hermie -hermens -herklotz -herkert -herby -herbster -herbison -herbers -herbein -heppeard -henrick -henrey -henretta -henneberg -hennagin -henington -henifin -heney -henesey -henehan -hendy -henderosn -hender -hendee -henby -henaire -hemrich -hemmie -hemmes -hemlepp -heminover -hemauer -helvy -helsing -helmy -helmstetler -helmink -helmcamp -hellar -hellams -helker -helgesen -helfritz -helena -hele -hektner -hejl -heitschmidt -heitger -heinzmann -heinzen -heininger -heineken -heimrich -heimbaugh -heiermann -hehr -hegre -hegmann -hefler -hefflinger -heese -heeney -heemstra -hedrich -hedgespeth -hedemann -hedegore -heddlesten -heckenberg -hebig -hebden -hebda -heatly -heathershaw -hearson -heally -healan -heads -hazleton -hazarika -hayhoe -haydal -hayburn -hawthrone -hawman -hawkey -hawf -havice -havercroft -hautamaki -hauskins -haulter -haugrud -hauan -hatzenbuhler -hatzenbuehler -hattub -hattier -hatteyer -hatstat -hathway -hataway -hassick -hassian -hasselman -hasselbarth -hasper -haspel -haske -hasgill -hasen -harviston -harvilla -harvilicz -harver -hartzer -hartup -hartsough -hartsch -hartly -hartlep -hartlein -hartkopf -harthun -hartfiel -hartery -hartert -hartage -harsey -harrey -harrett -harral -haroutunian -harmeyer -harlowe -harloff -hardyman -hards -hardrict -hardmon -hardigree -hardenburg -hardell -hardebeck -hardaman -hardaker -harcey -harbick -harajli -happer -hapgood -hanstein -hansbury -hanold -hanohano -hano -hanns -hannifan -hannes -hanko -hanis -hanenkrat -hanemann -hanek -handzel -handwerker -handwerk -handsaker -handrick -handelsman -handal -hancin -hanbury -hanaway -hanahan -hams -hammerly -hammeren -hammatt -hammarlund -hamling -hamiss -hamiel -hamelinck -hambrecht -halo -hallinger -hallick -halifax -halgrimson -halfmann -halder -hald -halburnt -halberstam -halaby -haker -haken -haine -hagos -hagmaier -hagenson -hagene -hagenbrok -hagenbaugh -hafter -haffling -haeger -haegele -hade -hadder -hadcock -haczynski -hackle -hachigian -hachez -habrock -habowski -habina -haberkamp -habben -habash -haaby -gyatso -gwalthney -guziec -guziak -guys -guynup -gutzwiller -guttmann -gutting -gutteridge -guterrez -guszak -gusky -gusciora -gurry -gurrieri -guritz -gunst -gundry -gundert -gulsvig -gulisano -gulinson -guittar -guitard -guisti -guiski -guinto -guinther -guinnip -guilliam -guillerault -guilfoil -guijarro -guidetti -guiberteau -guger -guevera -guetersloh -guerini -guella -guedea -guecho -gudis -guckin -guberman -guardipee -guanio -guagliardo -grzegorek -grybel -grunst -grunlien -grundmeier -grundhoefer -grun -grumer -grum -gruhn -gruger -grudt -growney -grotts -groton -grotelueschen -grotberg -grosswiler -gronowski -gronosky -gronewald -gronert -groholski -groetken -groeschel -groene -grodecki -groceman -griswell -griseta -grinkley -grinie -grinberg -grimmius -grieme -greytak -grett -grenke -grenda -greinke -greeves -greever -greet -greenlun -greenler -greenham -grebin -grboyan -grawburg -grattelo -grassham -granvold -granthan -gransky -grandolfo -grandmaison -grandchild -granbois -gramolini -grammatica -gramc -grajek -grahe -gragson -gragert -grage -grafenstein -graetz -gracely -graceffo -grabarczyk -gouzalez -gouse -gourdin -goudelock -goud -gottlob -gottke -gotthelf -gotthard -gotter -gotsche -gotschall -gosz -goston -gossack -gosdin -gorz -gorrill -gornto -gornie -gorenberg -gorelli -gordinier -gora -gopin -gopie -goolman -goolden -goodsite -goodmanson -goodly -goodkin -goodiel -gonzolas -gonsior -gonseth -gonez -gonchoff -gonales -gomzales -gomora -golly -gollihar -gollhofer -golka -golinski -golen -golembeski -golemba -goldwater -goldstock -goldklang -goldbeck -golda -gojmerac -goich -gohlke -goger -gogel -goga -gofton -goffe -goetting -goeser -goerner -goerke -goerdel -goeppner -godsman -godert -godel -gobeli -gnas -glucksman -glotzbecker -gloeckner -glockner -glish -glickson -glicken -glew -glessing -gleichman -glazener -glave -glausier -glatzel -glassett -glasbrenner -gladu -glab -glaab -giza -gittler -gittleman -gittinger -gitting -gitthens -gissel -gischer -girst -girsch -girona -girillo -gire -gira -giovanetti -gionest -gingles -gingery -ging -gillstrap -gillson -gillotti -gillmor -gilliss -gillig -gillert -gillcrest -gilgour -gilgore -gilding -gilderman -gilcreast -gieseman -gieselman -gieringer -gick -giangrosso -giangregorio -giambra -giambattista -ghibaudy -ghianni -ghelfi -ghaziani -ghantt -ghant -ghaemmaghami -gey -getler -getchius -gesualdo -gesmondi -gerweck -gerwe -gerula -gertsen -gershey -gershen -gers -gerritsen -gerdsen -gerczak -gerbatz -gerba -gerache -georgl -georgiadis -georgelis -georgalas -genualdo -gentery -gennock -gennett -genett -gendernalik -genas -gena -gemmen -gelston -gellman -gelfo -gelen -gelbowitz -geibig -gehlhausen -geffre -geesaman -geel -gedman -geckles -gebbie -gearwar -gearlds -gayne -gayfield -gawlas -gauwain -gaufin -gauani -gastley -gastello -gassoway -gasparino -gaskey -gaser -gascot -garuti -garrington -garreh -garnand -garlits -garity -garitty -gariety -garia -gari -garetson -garelik -garding -garb -garasha -ganzer -gantert -ganotisi -ganner -ganison -ganie -gangell -gangel -ganesh -gandrud -ganas -gamby -gambles -galyan -galuski -galper -gallwas -galluzzi -gallups -gallosa -gallipeau -gallet -gallerani -gallegly -gallaty -gallaspy -gallander -galioto -galicinao -galer -galdon -galardi -galamay -galabeas -gala -gaitor -gagg -gagan -gaerlan -gadley -gacke -gacia -gach -gabrelcik -gabay -gabard -fylnn -fydenkevez -futter -fuse -fuscaldo -furstenberg -furmanik -furlone -furia -furer -furci -furbish -funt -fulker -fukano -fujino -fuhrmeister -fugo -fuerman -frymyer -fryling -frontz -froncek -fronce -frolich -froio -froid -froehle -frischman -friou -friot -frieze -friesz -friemering -frieman -friedrick -friedle -frickson -frickel -frichette -fricano -fribley -frewing -frever -freudenstein -frerking -frenger -freisner -fregeau -freedle -frease -frazey -frascone -franzmann -franzetti -frankforter -francy -franckowiak -francies -franchette -fralin -fraleigh -fraint -fragozo -fracchia -frabizzio -fousek -fouraker -foucault -fosson -fossati -fosnough -forts -forthman -forsting -forstedt -forshay -forshaw -forsha -forro -forno -forlivio -forkosh -forkan -forcello -foradori -fontane -fonger -foney -fondy -fondow -folta -follin -folliard -folley -folken -foiles -fohn -foggs -foesch -foertsch -foecking -fodness -foat -flot -flosi -florenz -florens -florencio -florea -florczak -flodin -flocke -flo -flentroy -flenard -fleisner -flecther -flaks -flagstad -flagel -fjetland -fixico -fiume -fitterer -fisette -firlit -firestein -fiotodimitrak -fioto -finner -finnefrock -fingado -finely -fincel -finau -fimbrez -filoteo -fillpot -fillare -filipski -filippo -filipovic -filipelli -filimaua -filhiol -filgo -fileds -filbert -figuera -figliola -figart -fietsam -fieselman -fiene -fieldhouse -fiebig -fidel -fida -fickert -fiato -fevold -feuerborn -fetchko -fesh -feser -ferruso -ferriolo -ferriola -ferrence -ferrar -ferran -ferraiz -feroz -ferone -fernstrom -fernstaedt -fernow -ferkovich -fergen -ferdolage -ferdinandsen -ferbrache -fennewald -fenk -fenix -fendler -fenchel -felske -fellinger -felicetti -feldpausch -feighan -feichter -fehrle -fehringer -fegaro -feener -feeler -fedorchak -federowicz -fedd -feauto -feagen -feaganes -fazzina -fazzi -faykosh -fayard -favuzza -favolise -fausset -fauske -fausel -fauscett -faulknen -faulkenburg -fatica -fastlaben -fastic -farzan -farstvedt -farin -farguharson -fargnoli -farfalla -farese -farer -faraldo -faraj -fara -fanzo -fanton -fanney -fanizzi -fanion -fanelle -falterman -falsetti -fallone -falkiewicz -falconio -fake -fairleigh -fahringer -fahrenkrug -faerber -fadley -fadeley -facundo -fack -face -faby -fabrizius -fabozzi -fabiszewski -fabin -ezpeleta -ezparza -eyrich -eyerman -ewoldt -ewards -evasco -evanich -evangelo -eustace -eugley -euertz -etulain -etchells -esson -esskew -essery -esselink -espinol -espenoza -espelien -espeland -espadas -esler -eske -eska -escuriex -escovar -escort -eschrich -eschette -eschen -eschbaugh -escalon -escalero -esbrandt -esary -ertman -eroh -ernesto -erlenbusch -erle -erke -erichsen -eric -erholm -erbstein -erbst -eppolito -eppihimer -eppich -entin -enslinger -enslen -enockson -ennenga -enman -englett -engleson -englerth -engl -engholm -engelken -engelkemier -engelhaupt -engelbach -endries -endow -endito -enderby -encallado -emziah -embt -embs -embelton -emard -elwonger -elvsaas -elumbaugh -elstner -elsmore -elskamp -elshant -elmblad -ellson -ellias -elletson -ellestad -ellert -ellermann -ellerbrock -elleman -ellars -elland -eliezrie -eldib -eldert -elbe -ekwall -ekholm -eken -eitnier -eitniear -eisenzimmer -eisenstadt -eisensmith -eiselman -eisbach -eisaman -eiken -eibell -ehrke -ehrismann -ehrenfeld -ehlman -egizi -egitto -eggeman -effron -ednie -edelbrock -edde -edd -economos -eckols -eckloff -echegoyen -ebia -eberlin -ebbers -easterbrook -earney -earleywine -eanni -eadens -dyron -dykhoff -dyers -dyda -dybala -dwane -dwaileebe -duverne -duve -dusen -dusatko -dusablon -durrette -durphey -durnin -durkes -durette -durdy -durch -duracher -dupray -dupoux -duponte -duperclay -dupass -dupar -dunwiddie -dunsing -dunnaville -duncomb -duncklee -dunay -dunakin -dumpe -dumes -dumdei -dumay -dulkis -dukich -dukas -duin -dugo -duewall -duemmel -duelm -dueber -dudman -dudak -duckhorn -duchscherer -ducat -ducas -dubyk -dubill -dubiansky -dubaldi -dua -dspain -drzazgowski -drymon -drylie -druvenga -druschel -drungo -droze -drouse -drott -drosick -droneburg -droessler -droesch -drobny -drizin -dripps -drinkley -drillock -driesbach -dretzka -dresner -drentlaw -drenon -drehs -drehobl -drda -draxler -drath -drapeaux -dragula -drafts -draft -dozer -doxtater -doxie -dowst -dowson -downton -dowlen -dowey -dowery -douty -doughtry -doughtery -dotzler -dotterer -dothard -dosher -dosal -dorso -dorsette -doro -dornfeld -dorkin -dorka -dorge -dorchy -dorame -dopler -dopico -doore -dooms -donnie -donnelley -donnel -donayre -donatello -donachie -dominiguez -domingos -dominga -dominey -domenget -dolores -dollyhigh -dollen -dollak -doleac -dolch -dolbeare -dokka -dokes -doire -doing -dohring -dohogne -dohnal -dohan -doerle -doerhoff -doemelt -doehring -doegg -dodsworth -dodoo -dodier -dockendorf -docken -dobrowski -dobrin -dobine -doberstein -dizer -dixey -divita -diven -divalerio -dituri -ditton -disspain -disparte -dismore -disilvestro -dishong -dishian -diseth -discenza -dirkson -dirkse -dirker -dirk -dipippo -dipinto -dipierro -dinnocenzo -dinizio -dinis -dingivan -dingfelder -dincher -dimucci -dimpson -dimpfl -dimitrov -dimarzo -dils -dilisio -diliberto -diliberti -diles -dileonardo -dilena -dijulio -diiulio -digiuseppe -diga -difillippo -difebbo -dieng -diekman -didyk -didriksen -dickus -dickow -dickeson -dicastro -dibenedetti -dhaliwal -dezenzo -dewyse -dewinter -dewaters -dewaele -devoto -devor -devoogd -deviva -devitis -devit -deveyra -devericks -devenuto -deveja -devaughan -deutschendorf -deuink -deubner -detzler -detullio -detore -dethlefsen -dethlefs -detamble -desrevisseau -desotel -deso -desmeules -desmaris -desilvio -deshpande -deschambault -descamps -desatnik -desamito -desalle -desak -derwin -derting -derrah -deroven -derosso -deromer -dermott -deringer -derico -derga -derflinger -derezinski -derck -derbacher -deranick -depuydt -depung -depree -deppert -depierre -dephillips -deojay -denzin -denten -dentel -dennies -denina -denger -deneke -denegre -denboer -denapoli -demsky -demsey -demotta -demmons -demman -demendonca -demeester -dembowski -demarce -deman -demallie -demaire -delwiche -delphia -delore -dellenbaugh -dellbringge -dellaratta -dellaporta -dellapenna -dellacioppa -deliberto -delibertis -delgenio -delcueto -delaurie -delauder -delatrinidad -delash -delaet -del -dekrey -dejoie -deiters -deimund -degrenier -degre -degrand -degon -degeston -degelbeck -degaust -degasparre -defreece -defenderfer -defee -deeken -dedon -dedinas -dedicke -dedic -decristofaro -decoud -decos -deconti -deckers -decio -decenzo -debroux -debrot -debray -deboef -debiasio -debettignies -debenedittis -debbins -debaecke -dearson -dearo -deardon -deaquino -deacetis -dayne -dayem -dax -dawoud -davitt -davito -davidoff -dauterman -daughterty -daugaard -daudelin -daubendiek -dattilio -datcher -dasovich -daso -dasilua -dashem -darou -darke -dargin -darga -darco -darcey -dapas -dantos -danson -danny -danielian -danchetz -danby -damrow -damours -damboise -dambakly -dambach -damasco -damann -dallmeyer -dallesandro -dalfonso -dakins -dakes -daire -dahill -daguio -dagis -dabdoub -czerkies -czarnota -czachor -czach -cypress -cynthia -cylkowski -cyfers -cwiakala -cvetkovic -cuzman -cuzick -cuttler -cutt -cuti -cutforth -cutchins -cutchall -cushwa -curo -curbeam -cunnick -cuneio -cundick -cumbaa -cultice -cullity -cullip -cullifer -cucvas -cuculich -cucino -cubeta -cser -crupper -crunkilton -cruden -crover -crouter -crough -crouchet -crosthwaite -croon -cronshaw -cronenberg -crome -croman -crognale -crogan -croasmun -cristofori -cristiano -crisan -cringle -crincoli -crill -crieghton -cridge -criblez -crellin -cregeen -creeks -creath -creacy -crazier -crawmer -crawhorn -cratin -crapser -crapse -cranmore -cramm -cramblit -cramblet -cragin -cracas -cozzone -coyco -coxey -cowper -cowett -covone -covill -coverton -councilman -coultrap -coulas -coughenour -cough -cotty -cotherman -cother -costantini -cossell -cossano -cosley -coslett -coskey -cosgray -corza -corvi -corvan -corsetti -corscadden -corsa -corrow -corrice -correro -correale -corre -corna -corke -corid -corelli -cordonnier -cordona -corak -coppler -copelan -coore -coonradt -coones -cookus -conveniencia -contrerras -contrenas -contorno -constantini -constantineau -consolver -conrath -connet -connerly -conliffe -conforto -conda -conca -conales -compono -compau -commendatore -comings -comboy -combass -coltrin -colpetzer -colonel -colombini -cologie -colla -colbeth -colbaugh -colasuonno -colapinto -colamarino -colaluca -colaianni -colafrancesco -colace -colabella -coggsdale -coffill -codispoti -codell -cocoros -cocopoti -cocola -cockley -cockey -cochron -coch -cobden -coatsworth -coarsey -coar -clymore -clumpner -clougher -clolinger -clinkingbeard -clineman -clewes -clemments -claypole -clayburg -claybron -claybon -claughton -clase -clarenbach -clankscales -clampett -claessens -claburn -citrin -cisney -cirri -cipro -cipkowski -cione -cinquanti -cink -cimiano -ciervo -ciers -cicora -ciciora -cicione -cicerelli -ciccolini -ciccarone -cicarella -ciarletta -ciaccio -chuta -chustz -churan -chumbler -chuba -chruch -christler -christinsen -christinat -christello -chrispin -chrismer -chrislip -chrisjohn -chrestman -choute -chough -chorlton -chomka -chmelicek -chiulli -chislom -chiras -chinzi -chinnery -chinick -chim -chilvers -chilo -chiarmonte -chiarenza -chiapetti -chhuon -chhour -chheang -chetram -chessher -cherrier -cherepy -cherenfant -chenot -cheli -checa -cheathan -chears -chauvaux -chaudoin -chauarria -chatters -chatlos -chatley -chasey -charves -charsky -charania -chaplen -chaple -channer -chander -champey -champeau -challen -chall -chalkley -chalet -chalcraft -chaix -chadick -chadbourn -chaban -cesari -cervoni -cervin -certalich -cerni -cerney -cereo -cerce -ceravolo -ceparano -centrella -centner -centano -cenat -celmer -celenza -celadon -cefaratti -cefalo -cedillos -cecilia -cechini -cecala -cease -cearns -cazeau -cayson -cayanan -cavallario -cauthron -cattrell -catterson -catrone -catone -catoggio -caterino -catching -catalani -castrataro -castoe -castles -castillanos -castellonese -castelhano -cassman -cassius -cassisse -cassem -cassani -cassandra -casola -caselli -cascone -casburn -casbeer -casbarro -carrin -carreker -carrea -carre -carrauza -carranzo -carpinello -carolin -carmolli -carmena -carmell -carmain -carlye -carlsten -carlough -carlone -caringi -carine -carin -carela -cardono -cardle -cardinali -cardi -cardera -carback -capuzzi -capracotta -cappo -cappleman -capparelli -caponera -caplener -capanna -caoili -caoile -canzio -cantoran -cantillo -canta -canonica -cannington -canniff -cangas -canevazzi -canes -caneles -candido -canders -cance -canaway -canarte -canario -canan -camren -campusano -campman -camm -caminos -camferdam -camerena -camell -camak -camaj -calway -calvino -calvetti -calvani -caltabiano -calnimptewa -calnick -calnen -calmese -callander -callabrass -caliz -calija -calger -calendine -calderara -calcara -calamity -cailler -caho -caguimbal -cadoff -caddick -cadavieco -cabos -cabiltes -cabibbo -cabellero -cabasso -caballes -cabading -caal -byra -byod -bynon -byner -bynam -byker -buzzi -buzzeo -butzen -buttz -butteris -butkiewicz -buteaux -bustad -bussone -busman -bushmaker -busche -burwinkel -burum -burtless -bursi -burrup -burross -burries -burrichter -burrelli -buron -buro -burnstein -burnaugh -burnap -burkdoll -buris -burington -burgun -burgie -burghard -burgh -burgas -burgardt -burga -burdess -burcin -burchfiel -burchess -burandt -buonanno -buonamici -buntjer -bungert -bundschuh -bumps -buman -bulosan -bullocks -bullie -bularz -buland -bujarski -buhmann -buhman -bugna -buglisi -buggy -buemi -budke -buder -budds -buddie -buczak -buckwald -buckovitch -buckholtz -buckhanan -buchetto -buchauer -bucciarelli -buccheri -bucaram -bubis -bubash -bubak -brzostek -brzezowski -bryton -brusuelas -brussell -bruschi -brundrett -brundin -brumet -bruley -bruk -brug -bruestle -brudner -bruccoleri -brozie -broxterman -brox -browy -brownle -browm -broward -brouwers -brousard -brought -brotherson -brotemarkle -brossoit -broscious -brooms -broomhall -brookshaw -brookhouse -bronchetti -broks -broida -brohl -broglie -brofft -broermann -broenneke -brodnex -brodka -brodish -brockelmeyer -brockberg -broch -broccoli -brobeck -broadstone -brittman -brislan -brisk -brisentine -bringhurst -brindel -brinda -brincks -brimeyer -brihm -brignolo -briglia -brighi -brient -bridenbaker -briddell -briante -brians -briagas -brevo -breu -bretto -bretthauer -breslauer -bresemann -brentari -brenning -brenhaug -brengettey -brenek -brendal -brenagh -breiling -breidenbaugh -brehant -bregel -bredeweg -bredehoft -breceda -braylock -brause -brauning -braulio -braukus -braucher -bratchett -brasseur -brasser -branstutter -branstad -branscombe -brannick -brandolini -brandly -brandenberg -brandeis -brandal -branciforte -brancheau -brancati -bramlette -bramlet -brakhage -braitman -braisted -bradfute -bracks -bracket -braccia -braam -bozzone -bozenski -bozard -boyson -boylston -boxwell -bowlen -bowdle -bowdich -boward -bovia -bovey -boven -bouza -bouwman -bouwkamp -boutiette -boursaw -bourret -bourgoyne -bounleut -bound -bouma -bouleris -bouler -boughman -boughamer -boudoin -boudewyns -botwinick -bottone -bottino -botticello -botten -bottaro -bottalico -bostel -boshes -boshard -bosell -boscarello -bory -borsari -borok -borodec -bornmann -bormuth -bormet -borling -borlace -borkin -borkenhagen -boreen -bordin -borcherding -boote -booras -boody -bonton -bontemps -bonomini -bonina -bonifer -bongartz -boness -bonefont -bonefield -bonder -bonde -bondanza -bonavia -bonamo -bonadurer -bomkamp -bolognia -bollich -bollacker -bolinsky -boldosser -boldon -bolda -bolado -boken -bok -boisselle -boisen -bois -bohs -bohnenblust -bohlig -bohinc -bogumil -bogie -boggioni -boggi -bogenschneide -bogema -boge -bogdanski -bogdanovich -boettner -boesiger -boesel -boensch -boele -boeken -boehning -boehlar -bodwell -bodreau -bodovsky -boda -boczar -boclair -bockemehl -bochenski -bochat -boch -boccio -bocchicchio -boccanfuso -bobzien -bobson -bobino -bobier -bobeck -bobak -boarts -boardwine -boaldin -boakye -boady -blunden -blumenstock -blovin -blouir -bloschichak -bloome -bloodough -blonder -blommer -blok -bloeser -blinks -blinka -bline -blickem -bleyl -blews -bless -blenner -bleimehl -blecker -bleasdale -bleakney -blatnick -blaski -blare -blanzy -blankumsee -blancett -blaich -blada -blackbum -bjorseth -bjorlin -bizzaro -bivin -bitetto -bisso -biskup -biskach -bisio -bisi -bishard -bisesi -bisaccia -birtcher -birrittella -birkhimer -birkey -biringer -biren -birdette -birak -bio -binker -bink -bingler -bingert -bingamon -bindas -bilson -billow -billon -billo -bille -bilis -bilich -biler -bilek -bilden -bilazzo -bila -bigus -biggart -biggar -bigaud -biesheuvel -biernacki -bierley -bierlein -bielefeldt -biedermann -biedenbender -biddulph -bicksler -bickes -bicek -bica -bibiano -biangone -bi -bezzo -bezdicek -beyt -beydler -bevelacqua -beuther -beucke -betzold -bettman -bettino -betterley -betancourth -bessel -beska -beschorner -berwald -berum -bertotti -bertorelli -bertoldo -bertolami -bertley -berteotti -bertaina -berstler -berniard -berndsen -bernadette -berlinski -berkstresser -berks -berkovich -berkoff -berkhimer -berkery -bergmark -berga -berfield -bereznak -beresky -berenger -berendzen -berendt -berczel -berch -berbes -berardinelli -beppu -benziger -benzie -benzango -benthall -bentancourt -bensberg -benno -bennin -bennes -benken -benike -benigni -benestad -bendtsen -bendis -bendig -bendetti -bendele -benasher -benack -bemben -belts -belrose -belnas -bellusci -belloso -bellizzi -bellinghausen -belliard -belletto -bellettiere -belko -belitz -belfanti -beldon -bekis -bejcek -beitler -beiser -beine -beiley -beierschmitt -behrle -behran -behlmer -behlke -beguelin -beghtol -beger -begeal -beezley -beesmer -beerer -beere -beerbohm -beenel -beelby -beecken -bedor -bede -beddows -beddow -beddia -becky -beckius -beckfield -beckem -becena -beavis -beaumonte -beauman -beauharnois -beaudine -beasly -beales -be -bazylewicz -bazner -bazel -baytos -bayton -bayt -baylock -bayird -baygents -baxa -bawner -bawden -bavelas -bauske -baumberger -baul -battuello -battig -batterman -battani -battaglino -batimon -bathke -baters -batch -batas -batara -batala -bastine -bassani -bassali -baskind -baseman -basehore -basara -barze -barwell -barut -baruffa -bartlome -bartin -barthol -barthell -barters -barswell -barshaw -barrigan -barria -barrasa -barraco -barnthouse -barnt -barmes -barkhimer -barios -bario -barino -barie -barick -barfuss -barfknecht -barer -bareford -bardis -barcley -barchick -barcena -barbur -barbor -barbin -barben -barbella -barbaglia -baransky -baragan -baquiran -banzhaf -banter -bankowski -banet -bandt -banaszek -banana -balque -balowski -ballog -ballina -ballensky -ballato -baliga -baldomero -balden -balde -baldassare -balbontin -balbas -balassi -balandran -bakkala -bakhshian -bakerville -bakaler -bajaj -baites -baisten -bairam -bailard -baierl -baichan -bai -bahrs -bagozzi -bagni -bagnato -baglione -baggio -baggesen -baggenstoss -bagan -baessler -baerman -baerlocher -badgero -baddour -badami -baculpo -bacio -bacigalupo -bachta -bachar -bacchi -babrow -babonis -babish -babicke -babeu -baab -azzopardi -azore -azen -aykroid -axon -axelrad -awkard -awender -avon -avirett -averitte -averbeck -avellano -avary -auwaerter -autrano -auteri -austgen -ausdemore -aurich -aumen -auler -augustyniak -augliano -aughtman -aue -auduong -aucter -attianese -atiles -athas -asturias -astrup -astley -assante -aspden -aspacio -asley -asleson -askvig -askegren -askam -ashmen -ashauer -asfour -aschoff -aschim -aschan -asal -arzo -arvesen -arrow -arrocha -arris -arribas -arquitt -arone -aroche -arnt -arnoux -arnoldi -arning -arnholt -arndorfer -armson -arment -arlotta -arlinghaus -arlia -arkema -arizaga -arisumi -aristide -aris -arif -ariano -arguilez -argudo -argrow -argiro -argetsinger -arfman -arenburg -aredondo -area -ardry -ardner -ardizone -arcudi -arcizo -arcila -archilla -archangel -arcega -arbucci -arato -arano -aran -aragan -apostol -apolito -apland -apkin -aperges -apalategui -apaez -anzora -antonsen -antolos -antolini -antman -anter -anspaugh -anselm -annonio -annichiarico -annibale -annarumo -anliker -ankrapp -ankenman -anhorn -angton -angrisano -angon -angolo -angleton -anglebrandt -anglea -anglade -angilletta -angeron -angelotti -angelbeck -angela -anez -andueza -andrulis -andronis -andreu -andreoni -andert -anderlik -anauo -anastasiades -ananias -anand -amuso -amrich -amr -amour -amoss -amorosi -amoako -amoah -ammirato -ammar -amirian -amiot -amidi -ameduri -amderson -ambuehl -amass -amanza -amadio -alwang -alwan -alvine -alvarran -alvarracin -alvanez -aluqdah -altshuler -altonen -altmiller -altken -altiery -althiser -altaras -alstrom -alstad -alsbury -alsberry -alquijay -alpha -alonza -aloia -alnas -almerico -almenar -almen -allwood -allstott -allridge -alleva -allenson -allenbaugh -allegretta -allegra -allbritten -allara -allamon -alken -alizadeh -alirez -alires -aline -alim -algire -algier -algien -alfonsi -alexy -alexnder -alessandroni -alert -alemany -aleksey -alderton -alderfer -aldava -aldapa -alconcel -albornoz -albini -albergotti -alben -albea -albang -alario -alamilla -alalem -akoni -akles -akande -akamine -ajasin -aiyer -aihara -ahrendes -aherns -aharoni -agunos -aguliar -aguillar -agudo -agoras -agnor -agni -agers -agel -aery -aerts -adon -adessa -aderson -aderman -adema -adelsberg -adelblue -adel -addiego -adas -adamcik -acquilla -ackmann -achterhof -achane -abuhl -abrial -abreau -aboulahoud -aboudi -ablao -abilez -abete -aberson -abelman -abelardo -abedelah -abdulmateen -abato -aas -aarestad -aanenson -zymowski -zyla -zybia -zwolski -zwigart -zuwkowski -zurovec -zurkuhlen -zuppa -zunich -zumpfe -zumalt -zulkowski -zulfer -zugg -zuerlein -zuehls -zuckerberg -zuchelkowski -zucchetto -zucca -zubrowski -zubizarreta -zsadanyi -zrake -zotti -zosel -zoltek -zolla -zogopoulos -zogby -zmek -zitzmann -zitzelberger -zirker -zinzow -zimick -zimerman -zilk -zigomalas -ziesman -ziernicki -zierke -zierk -zierenberg -zierden -ziems -zieger -ziebert -zicafoose -zic -zibell -ziada -ziad -zhen -zetzer -zetino -zerphey -zercher -zeran -zephyr -zelonis -zellinger -zelko -zeliff -zeleznik -zekria -zeidman -zehrer -zehrbach -zeherquist -zehender -zegar -zega -zechiel -zeccardi -zebracki -zeavala -zbierski -zaza -zayicek -zawistowski -zawasky -zavitz -zaverl -zavcedo -zavattieri -zavacky -zausch -zatorski -zarrabi -zarlingo -zarin -zarillo -zaren -zapel -zapatero -zantow -zant -zannini -zangger -zanfardino -zanardi -zan -zampella -zamoro -zamborano -zambelli -zalamea -zajdel -zais -zahourek -zaharek -zagulski -zagacki -zadina -zaczek -zachter -zachariah -zacchini -zabenko -zabbo -yuska -yuscak -yurovic -yurek -yunes -yumas -yuk -yudell -ysaguirre -yray -yozzo -yovan -youssefi -yousko -younghans -youmon -youla -yotter -yoshi -yoseph -yorck -yono -yoneoka -yonashiro -yomes -yokel -yoest -ynocencio -yewell -yetzer -yetsko -yerty -yeropoli -yerka -yergin -yenor -yem -yeley -yearego -yeakel -yazzle -yazzi -yazdani -yaws -yasika -yarwood -yarris -yaroch -yarmitsky -yara -yantzi -yannucci -yannayon -yannantuono -yankovski -yankovitch -yandow -yanchik -yanagihara -yanagida -yanacek -yamanoha -yamaki -yalon -yaklin -yake -yaiva -yaish -yahne -yafuso -yafaie -yacullo -yacovone -yacoub -xyong -xayasith -wyze -wyrostek -wynes -wyker -wygal -wybenga -wurz -wung -wueste -wubnig -wubbena -wubben -wrzesien -wrynn -wrightington -wride -wreyford -woytowich -woytek -wosick -workowski -worell -wordlow -worchester -wooward -woolhiser -woodlin -woodka -woodbeck -woodal -wondoloski -wonderling -wolsdorf -wolper -wollert -wollenburg -woline -wolfing -wolfensperger -wolbrecht -wojnowski -wojewoda -wojdak -wohlfeil -wohlert -woge -woelfl -wodicka -wobser -wobbe -wnukowski -wnorowski -wmith -wlodarek -wiza -witucki -wittrup -wittnebel -witthoeft -wittenbrink -wittbrodt -witkowsky -wisnowski -wisely -wirtzfeld -wirfs -wipfli -winterberg -winslette -winscott -winnicki -winnen -winik -wingeier -windsheimer -windrow -windhorst -windfield -windauer -wincapaw -win -wimbrow -wimble -wilund -wilshusen -wilsen -willock -willmert -willies -williemae -williamis -willia -willi -willeto -willborn -wilkus -wilkson -wilkoff -wildridge -wilczak -wilcut -wiklund -wiggan -wigand -wig -wiesemann -wieseman -wiersteiner -wienberg -wielock -wielgasz -wiegard -wiedrich -wiederholt -wieben -widjaja -widera -wide -wicklin -wickersheim -wiborg -wiatrowski -why -whittum -whittinghill -whittenbeck -whitiker -whitey -whiter -whitelightnin -whitcome -whisted -whirlow -whiles -whilden -whetzell -whelihan -wheeldon -wheater -whaltey -weynand -weyker -weydert -weuve -wetzstein -wetzell -westler -westermeier -westermark -westermann -westerhoff -westbrooke -weske -weser -werst -werremeyer -wernsman -wernex -wern -werme -werline -werk -wergin -werdlow -werderman -went -wensman -wenske -wendorff -welzel -weltha -wellinghoff -welding -weit -weissenbach -weispfenning -weismantle -weisbecker -weirauch -weinzierl -weinrib -weinland -weinfurter -weinburg -weiher -weig -weidower -weicht -weibe -wehking -weglage -wegiel -wedige -weckwerth -weatherington -weasel -weant -wealer -weagraff -weader -wayts -wayson -waymon -waygood -wayford -waychowsky -waverly -wattigny -watsky -watry -wates -watah -wasurick -wassam -waskom -waskin -washum -washpun -washler -waser -warzybok -warstler -warrilow -warran -waroway -warntz -warnberg -warmka -warmbrod -warlow -warlock -warde -war -wapp -wantuck -wannlund -wannarka -wanko -wandell -walund -waltos -waltho -walstrum -walrod -walper -waln -wallwork -wallo -wallman -walliser -wallie -wallenbrock -wallau -walka -walizer -walgren -waley -walen -waldroop -walderon -wal -wakeford -waitz -waiss -waisanen -wais -wainkrantz -wahn -wahdan -wahba -wagnor -waggy -wagemann -wagatsuma -waffenschmidt -waegner -waddups -waddles -wadas -wacht -waas -waaga -vuoso -vukelj -vriens -vredeveld -vrbas -vranicar -vovak -votsmier -vostal -vorsburgh -vornes -vopava -vonseeger -vonschriltz -vonholt -vongsamphanh -vongkhamphanh -vongkhamchanh -vonfelden -voner -vondrasek -vondracek -vonderhaar -vonderahe -vonbank -volpone -volmar -vollmers -vollette -volinsky -volek -volbert -vojna -voigtlander -vogelzang -voeltz -voelkerding -vocelka -vljeric -vleming -vlchek -vizzi -vixayack -vixay -vivyan -vivion -vitrano -vitez -vitellaro -visounnaraj -visick -viscosi -virostko -virgile -virgadamo -virant -vintila -vinti -vint -vilven -vilt -villnave -villescaz -ville -villasis -villaplana -villao -villanveua -villanvera -villandry -villamayor -villamarin -villaluz -villaluazo -villaire -villacrusis -vilegas -vildosola -viker -vijil -vijayan -vigneau -vigilo -vigiano -vieu -vietzke -vierk -viengxay -vieau -vidas -vidaca -vicuna -vicueroa -vicenteno -vias -viard -viano -viale -viafara -vezza -vevea -vetterkind -vetterick -veto -vessar -vesperas -vesley -verwers -verunza -verso -versage -verrue -verrone -verrastro -verplanck -verone -vernazza -verlinden -verlin -verkuilen -verfaillie -venzor -venturelli -venskoske -venning -venneman -veneri -vendig -vence -veltkamp -velthuis -velovic -veller -velky -velega -velardes -veksler -veitinger -vehrenkamp -vegerano -vedovelli -veasman -vbiles -vautier -vaulet -vatterott -vasudevan -vasos -vasek -vasallo -varquez -varquera -varoz -varone -varisco -varieur -varanda -vanzie -vanwyck -vanwhy -vanweerd -vanwechel -vanvuren -vanvorst -vanveldhuize -vanuden -vantuyle -vantull -vansteenhuyse -vansteenberg -vanson -vansise -vanschoor -vanschoiack -vanrossum -vanosdol -vanos -vanorsouw -vanoni -vannuck -vanlinden -vanlier -vanlaere -vaninetti -vanhove -vanhoutte -vanhoecke -vanheusen -vanhamme -vanham -vangordon -vaneekelen -vandonsel -vandevanter -vandesande -vandernoot -vanderjagt -vanderiet -vanderhurst -vanderbie -vandawalker -vandaele -vanblaricum -vanbeveren -vanamerongen -vanamburgh -vanalstin -valtas -valme -vallow -vallotton -valliant -vallegos -vallar -valladores -valerino -valeriani -valela -valdo -valant -valado -vajnar -vais -vagnier -vadlamudi -vactor -vaccarello -vacarro -uzzo -uutela -utzig -useted -urtz -urtiz -urtiaga -urteaga -urquides -urmston -urmos -urbany -urbaez -uptmor -upole -uphold -uoy -unverzagt -unvarsky -unterseher -unterman -unglesbee -underdue -uncapher -umeh -ulven -ulvan -ulshafer -ulsamer -uljevic -ulbricht -ulabarro -ujano -uimari -uihlein -ugolini -uglum -ufford -ueckert -udani -uchiyama -ubl -ubaldo -tyrie -tyndal -tyms -tylwalk -tyeryar -twilligear -twidwell -twardy -tuzzio -tutterow -tutaj -turziano -turzak -turtura -turtle -turrietta -turns -turnell -turneer -turnbill -turello -turbacuski -tupaj -tupacyupanqui -tuomi -tuomala -tuohey -tuning -tumolo -tuman -tullar -tulino -tuggerson -tuckerson -tucke -tuchy -tucek -tucciarone -tuamoheloa -tuai -tua -tsu -tsironis -tsing -tsiatsos -tsemetzis -tscrious -tsau -tsasie -tsakonas -trypaluk -trygg -truxell -truver -trusso -trush -trusello -truocchio -truncellito -trumps -trumper -trumbley -trulli -truhe -truglia -trufin -trudnowski -trudics -trudgeon -trucks -trucker -troyano -troyani -trouser -trotty -tronaas -tromley -tromburg -troller -trojecki -trojahn -troike -troidl -troge -trofholz -trochesset -trish -trio -trinkley -trinkl -tringham -trindle -trimnell -trilli -trill -triguro -trigueros -triece -trider -trexel -trewin -trewhitt -treuter -treutel -trettin -trett -treso -trenton -trentini -trenholme -tremel -trell -tregan -trecarichi -trbovich -traverse -traunfeld -trapanese -tramp -tramm -trajillo -trahin -traher -tradup -toyne -toyama -townzen -towber -toussiant -tousom -tourtelotte -touma -toulmin -touhy -tottingham -totter -tott -totosz -toti -tota -tostanoski -toso -tory -torreson -torreon -torrell -torralva -torno -torngren -tornese -tordsen -torbit -torbeck -toppins -toppen -toppah -topolinski -toplk -topliss -toplin -topinka -topi -toomsen -tools -toof -too -tonic -toniatti -toni -tongren -tonche -tonas -tomsick -tomsche -tomopoulos -tomkowicz -tomasko -toliongco -toleston -tokunaga -tokita -tohonnie -tognetti -toevs -todora -todahl -tod -tocher -tocchio -tobosa -tobiason -tjepkema -tizon -tixier -tiwald -tittl -tisue -tisinger -tisa -tirona -tiro -tirk -tirino -tiotuico -tinnea -tinin -timone -timber -tilleman -tille -tiley -tijing -tigg -tiffner -tietjens -tieger -tidrington -tidrick -tibwell -tibolla -tibbit -tiangco -tian -thyfault -thurstonson -thundercloud -thuman -thrun -thrill -thorsten -thornquist -thorner -thormina -thormer -thoran -thomspon -thoeny -thoennes -thoele -thoby -thillet -thiesse -thibedeau -theuner -thessing -therurer -thero -theo -themot -them -thein -theim -theiling -theesfeld -theaker -thaniel -thamphia -thammorongsa -thalheimer -thain -thaemert -thackxton -thackrey -thackery -teyler -tewmey -tevada -tetz -tetteh -tetro -tetreau -testman -tessner -tesoriero -tesnow -tesauro -tersteeg -terrett -terrero -terrence -terrall -terr -terkelsen -terbush -teranishi -tepperberg -tentler -tenor -tenharmsel -tengwall -tenerowicz -tenebruso -tendick -tencer -ten -temoshenka -telman -tellinghuisen -telega -telchik -tejeiro -teitel -teichrow -teichmiller -tegtmeier -tegenkamp -teet -teeples -teepe -tebow -tebbetts -tebbe -tease -teach -tayo -taymon -taylan -taydus -tavolario -taves -tauteoli -tatu -tatsak -tatnall -tates -tasto -tasse -tashman -tartar -tarsis -tarris -tarricone -tarran -tarner -tarbor -tarbet -tarasuik -taraschke -taps -tappis -tapio -tapat -tapales -tapaha -taomoto -tanzosch -tanzman -tanweer -tanoue -tanori -tanon -tannazzo -tanker -tanke -tango -tanen -tandon -tandetzke -tancer -tamminen -tamiya -tameron -talladino -taliulu -talburt -talboti -talat -talamas -takiguchi -takenaka -tak -tahir -tagliente -taglialatela -tagge -tagami -tafuri -tafreshi -tacderen -taccariello -tacata -tacadina -tablada -tabet -taberski -tabbaa -taake -szypowski -szynkowicz -szymula -szychowski -szwarc -szuszkiewicz -szumny -szumilas -szumiesz -szuch -szuba -sznejkowski -szmidt -szlosek -szigethy -szenasi -szczurek -szczesniak -szalankiewicz -szalai -szal -szaflarski -syrstad -syrop -synowiec -synakowski -symore -symon -syddall -sybounheuan -swonke -swisshelm -swiller -swenton -swell -sweley -sweger -swefford -sweere -swee -swedeen -sweazey -swearngen -swaynos -swatloski -swatek -swary -swartley -swarr -swarn -swarb -swarat -swanzy -swantner -swantko -swanteck -swanick -swaine -swadling -svob -svensen -sutt -suto -sutherburg -susmilch -susla -susko -susan -surridge -surran -surkamer -suon -suominen -suneson -sundman -sumstad -sumruld -sumey -sumbera -sumaran -sultaire -sully -sulloway -sulkowski -sulc -sukut -sukup -sukovich -suihkonen -suga -suffern -sueyoshi -suet -suennen -suellentrop -sueda -suddath -succop -sub -sualevai -styler -stvictor -stuzman -stusse -sturwold -sturino -sturiale -sturdnant -stupke -stumm -stumb -stukel -stufflebean -stuever -stuessy -stuedemann -stueckrath -stueck -studwell -stubler -stubbert -strzyzewski -strzelczyk -strutynski -struckmann -struber -strow -stropus -strople -stroot -strohecker -string -strimel -stright -striffler -stridiron -stricklan -strem -streller -strekas -strek -streitz -streitenberge -strech -streat -strazzullo -strawberry -stratter -strathmann -strassell -strassberg -strangstalien -stoyanov -stouten -stoutamyer -stotelmyer -stoskopf -storton -storbeck -stoppenbach -stoot -stoor -stonewall -stonefield -stolzenberg -stollsteimer -stokel -stohs -stohrer -stofferahn -stoermer -stoen -stoecklin -stockhoff -stockburger -stoakley -stoa -stlucien -stitz -stittgen -stitch -stires -stippich -stinser -stinemetz -stinde -stinar -stimus -stiliner -stilgenbauer -stifflemire -stickfort -sticher -stibb -stewardson -stevison -steube -sternod -sterger -steptore -steppig -stepleton -stephanski -stephano -stepchinski -stepanik -stepaniak -stenslien -stenslie -stengle -stengele -stendal -stempert -steman -stelmach -steitzer -steinworth -steinway -steins -steinour -steinmiller -steinhouse -steinhour -steinger -steindorf -steinau -steinacker -stegmann -steff -stefansky -steensland -steenrod -steenland -steeby -stech -stealy -steagell -steadings -steach -stawasz -stavsvick -stavrides -stavish -stathes -state -stassinos -stasser -stasio -stasa -starzynski -starritt -starring -starnold -starchman -starch -starace -stapelton -stanuszek -stanovich -stankovic -stankey -stanislaw -staniforth -stanier -stangarone -stanganelli -standlee -standerwick -standback -stancombe -stancer -stancato -stammel -stambough -stallones -stakelin -stagnitto -stafiej -staffon -staffieri -staffen -stade -stachniw -stachnik -stacer -staber -stabell -staback -staadt -spunt -spueler -spruit -spruel -spriggins -spratlen -sprain -sprafka -sportsman -sports -sporle -spoerl -spoerer -splonskowski -splinter -splane -spizzirri -spinoso -spinka -spiney -spine -spindola -spindle -spinas -spilski -spielmaker -spiegle -spevacek -sperrey -sperger -sperduti -speranza -sperandeo -spender -spena -spella -speith -speis -speiden -speidell -speese -specter -speake -speagle -spaun -spara -spanton -spanswick -spannbauer -spana -spaide -spadlin -sowash -sovey -sovak -souvannavong -souvannarith -souvannakhiry -souser -soulek -soukkhavong -soucek -sottosanti -sotlar -sotak -sossong -sosso -sosinsky -soscia -sorotzkin -sorokin -sorman -sorgatz -soren -soravilla -sor -soprych -sopata -soorus -sookoo -sonnenburg -sonkens -sondrini -sondelski -somsana -sommerdorf -sommella -solverson -soltren -soltes -solonika -solomons -sollock -sollman -solle -solimeno -soliece -solgovic -soldow -solas -solarz -sokorai -sokolik -soisson -sohrabi -soho -sogol -soga -sofka -sodomka -sodachanh -sochocki -socci -sobrowski -sobrino -soboleski -soberano -sobba -sobania -soans -snuffer -snowdon -snowdeal -snoderly -snock -snitker -snith -sniff -snedeger -snearly -snachez -smurthwaite -smolski -smithmyer -smithen -smithberger -smisek -smily -smiglewski -smietana -smialowski -smeltz -smelko -smeenk -smedsrud -smayda -smaw -smarsh -smalt -smalarz -slutzky -sluis -sloup -slotkin -slosek -sloon -slomski -slocombe -slockbower -slisz -slinsky -slicer -sleek -slayman -slavis -slatin -slanina -slagel -sladky -sladek -skyberg -skwara -skursky -skurski -skura -skrobacki -skretowicz -skorepa -skomo -sknerski -skinsacos -skillom -skillen -skibosh -skibisky -skewis -skene -skender -skalecki -skafec -sixon -sivia -sivert -sitto -sita -sissman -sisneroz -siskey -sischo -sirwet -sirucek -sirrine -sirnio -siriani -sirek -sippial -sionesini -sioma -sinkiewicz -sininger -singuefield -sings -singhisen -singeltary -singco -siner -sindt -sindorf -sindoni -sindel -simzer -simunek -simplot -simpelo -simonetta -simonett -simoneavd -simmelink -simlick -simkowitz -simino -simers -simer -simcic -simank -silverwood -silverhorn -silquero -sillitti -sillery -silla -silker -silerio -silagy -silago -sikorra -sikkila -sikel -sikat -sikander -sigworth -signorino -sigafoos -siewers -sievel -sierzenga -sierer -siepker -siena -sien -siegfreid -siegers -siefkes -siefferman -siebel -sidles -side -siddiq -sida -sickmeir -sickendick -sichler -sicheneder -sichel -siangco -siad -shymske -shutte -shutes -shurkus -shumay -shukert -shuhi -shuga -shuckhart -shryer -shroeder -shrimplin -shrier -shrefler -shrake -shoyer -showden -shouts -shoto -shonts -shoeman -shoddie -shirilla -shird -shirai -shipwash -shiplet -shipler -shintani -shinney -shinko -shindorf -shimonishi -shimanuki -shiller -shiiba -shigemitsu -shigematsu -shifley -shifflette -shiever -shido -shidemantle -shidel -shibahara -shey -shevenell -shetz -sheskey -sherratt -sherif -sherfy -sherbo -shepp -shenberger -shenassa -shemper -sheltrown -shellum -shellnut -shellhorn -shellgren -shelenberger -sheive -sheasby -shearier -shearhart -shawler -shawaiki -shaull -shau -shatt -sharratt -sharrai -sharpsteen -sharpey -sharley -shariff -shariat -sharar -shapin -shansky -shannonhouse -shangraw -shammaa -shamapande -shalam -shaker -shahinian -shaginaw -shaggy -shafto -shafi -shaer -shae -shadix -shadburn -sfera -sfatcu -seymoure -sey -sewester -severyn -seutter -seuss -seufer -settecase -sespinosa -servey -servano -serum -sertuche -sert -serro -serret -serre -sermon -sermania -sergovia -seremet -serabia -ser -sephton -sep -senta -sensenbach -senneker -senk -senion -senemounnarat -seneker -semo -semenick -seltrecht -sellar -seliski -selis -seligmann -selia -selestewa -selem -sele -selca -selbert -selbe -sekerak -sejkora -seiz -seiver -seirer -seilhymer -seiley -seiger -seigart -seifts -seiffert -seidle -seide -seiberlich -segota -segobia -seewald -seepersaud -seen -sedy -sedtal -sedotal -sedler -sedlachek -secreto -secora -secky -seckington -sebestyen -sebers -searchwell -searchfield -searcey -seanor -sean -seamen -sealander -seaford -scullion -scrudato -scronce -scrobola -scribellito -scozzari -scoresby -scolnik -scoh -scoble -sclavi -sciuto -scisco -scigliano -scieszka -scierka -scibetta -sciavillo -sciarini -sciancalepore -schwuchow -schwoyer -schwoerer -schwien -schwetz -schwertfager -schwentker -schwent -schwendinger -schwemm -schweiner -schwarzenberg -schwartzer -schwarten -schwanebeck -schwanbeck -schwallie -schwald -schuyleman -schustrich -schurer -schuppenhauer -schumucker -schumans -schuiling -schueth -schuckert -schuchmann -schuble -schub -schroy -schromen -schroeppel -schroedel -schreur -schreimann -schrecker -schouweiler -schou -schornick -schoreplum -schooling -school -schoo -schontz -schoninger -schoneck -schone -schonaerts -schomberg -schollmeier -schoepflin -schoenegge -schoeneck -schoeller -schoebel -schnitman -schnetter -schnelzer -schneidmiller -schnair -schnabl -schmuff -schmoldt -schmider -schmeer -schlussel -schlissel -schlett -schlesner -schlesener -schlepphorst -schlepp -schlechten -schlaack -schiveley -schirm -schimanski -schilmoeller -schille -schilawski -schiffner -schiffert -schiedler -schickler -schiappa -scheuring -scheule -schepker -schenz -schenkelberg -schembri -schembra -schellhorn -schellenberge -schelle -scheitlin -scheidecker -scheibner -scheiblich -schehl -schefers -schee -schearer -schaubert -schattschneid -scharich -schares -scharber -schappach -schaneman -schamberger -schak -schaetzle -schaecher -scerbo -scelba -scavona -scatton -scarsdale -scarr -scarpone -scarlata -scariano -scandurra -scandura -scandalis -scammahorn -scafuto -scaffe -scachette -sayyed -sayko -sayco -sayasane -sayaphon -sawney -sawdo -sawatzke -sawallich -savko -savka -savitts -saviola -savio -savine -savich -savells -saulpaugh -saulino -sauler -saugis -sauber -sau -saturnio -sattel -satomba -saterfield -satava -sasseville -sasahara -sarzynski -sartorius -sartore -sartell -sarsour -sarson -sarp -sarnosky -sarni -sarlinas -sarka -sarinsky -sarin -sardo -sarden -sarchett -sarault -sarate -sarao -sarantakis -saralegui -sapper -sappah -sapinski -sapardanis -sapara -sanyaro -santwire -santrmire -santoriella -santor -santomassimo -santisteban -santillanez -santamarina -sansotta -sanpson -sannutti -sankoh -sangasy -sanfelix -sandvill -sandus -sandstede -sandling -sandland -sandhop -sandeen -sandblom -sanday -sandager -sancrant -sancken -sanchirico -sancher -sances -sanberg -sanacore -samyn -samul -samrov -samrah -sampere -sampang -samland -samii -samiento -sames -sambrook -samborski -samberg -samaroo -salzl -salvio -salvati -salvadge -saluan -saltzberg -saltus -saltman -salstrom -salotti -salmonsen -sallmen -salle -sallach -salines -salesky -saleme -saleha -saldano -salb -salazak -salasar -salado -salach -sakumoto -sakamaki -sajovic -sajous -sainte -sainliere -sainato -sails -saik -saieva -saice -sahe -sahady -sago -saft -safier -saffo -safer -saether -saens -saeler -saelens -sadvary -sadoski -sadorra -sadolsky -sadin -sadik -sadeghi -sadat -sacramed -sachetti -sacchi -sacca -saberi -saarela -saadat -saabatmand -rzeczycki -rysz -rynkowski -rynerson -ryneer -rymut -rymes -rymasz -rylaarsdam -rykaczewski -ryen -ryea -rydin -rydelek -rydel -rydeen -rybinski -ruvalcava -rutski -rutske -rutman -rutkin -ruths -ruthman -ruthers -rutheford -rutgers -rutenberg -rutar -russwurm -russomano -russomanno -russer -russello -rushanan -rusen -ruschmeyer -rusaw -rupnick -rupley -rupinski -ruopoli -rumps -rumbach -rulapaugh -ruivo -ruiter -ruhoff -ruhn -ruhman -ruggirello -ruffell -ruffel -ruezga -ruesga -ruelar -ruehter -ruehling -ruehlen -ruedas -rued -rueck -rudoy -rudio -rudh -rudell -rudat -rudack -ruckey -ruckel -ruckdaschel -rubsam -rubie -rubick -ruberti -rubeo -rubenfield -rubenfeld -rubash -rubalcave -rozzelle -rozon -royle -roxbury -rowlison -rowels -rowbotham -rovell -rouw -routzen -routzahn -routte -rousso -rousell -rous -rounsville -rouly -roulhac -roulette -roule -rouhoff -roughen -rouch -rottinghous -rottier -rotruck -rotkowski -rotkovecz -rothfeld -rotherham -rotch -rotanelli -rosul -rossie -rossen -rosseel -rosky -rosian -rosher -rosewall -roseum -roseth -rosenwinkel -rosentrater -rosenlof -rosenhagen -rosengren -rosendorf -rosendale -rosenbush -rosemore -rosek -rosebur -roscup -rosca -rosboril -rosazza -rosane -rorabacher -ropka -roofner -ronsini -ronnie -ronnfeldt -ronn -ronero -roner -ronayne -rona -ron -romprey -rommelfanger -romkema -romiro -romay -romanowicz -romanov -romanoff -romaniszyn -romanek -romane -rollf -rollag -rolfson -rolack -rokicki -rohrdanz -rohdenburg -rohal -rogowicz -rogish -rogian -rogens -rogado -roesslein -roesing -roerig -roenigk -roelle -roehler -rodvold -rodrigres -rodregues -rodolph -rodkin -rodiquez -rodina -rodero -roderman -roderiquez -rodenizer -rodenbough -rodebush -rodde -rocle -rochlitz -rochkes -rocheford -robyn -robusto -roberston -robbie -robbert -robberson -robair -roam -roadruck -roades -roaden -roadarmel -rizzardi -rivinius -riveras -rivello -rivelli -rivadulla -rittinger -rittie -rittichier -ritthaler -ritmiller -riskin -risien -rishor -risatti -ripson -ringold -ringen -rinfret -rineheart -rindal -rincan -rinauro -rinaldis -rina -rimkus -rimi -rimel -rimbach -rily -rillie -riller -rihner -riherd -rigley -rightmyer -righthouse -riggert -riggers -rigerman -rigas -rifai -riesner -rienzo -riemersma -riefer -ridgebear -rides -ridell -ridall -ricucci -ricley -rickerl -richemond -richelieu -richel -richardville -riccitelli -ricciardelli -ricardez -riblett -ribar -riase -rian -rhym -rhule -rhude -rhondes -rhodehamel -rhim -rheingold -rheaves -reznick -reynero -revolorio -revette -revelo -reuven -reusswig -reusser -reuhl -reuber -rettele -retka -retersdorf -resseguie -resper -resner -resides -reshard -resek -reseigh -repaci -renzullo -renuart -rentfrow -rennemeyer -renneker -renkes -renier -rendle -renburg -remsburg -remos -remmie -remmick -remlin -remkus -remfert -remey -remerez -remedies -remaly -relph -rellihan -relles -relaford -reksten -rekas -reitzes -reiten -reitema -reisin -reinmann -reinicke -reinholdt -reinheimer -reinfeld -reineman -reineking -reinartz -reimel -reik -reihe -reidling -reidler -reichenberg -reichenback -reho -rehnborg -rehnberg -rehart -regusters -regulus -reglin -reginal -reges -regensburg -regen -regas -reevers -reever -reeter -reedholm -redle -redic -redfear -reddekopp -rechel -rebick -rebholz -reazer -reauish -reath -reasinger -reas -reary -realmuto -reager -readenour -razze -rawicki -rawhoof -ravi -ravetti -ravenscraft -rava -rauf -rauelo -rattee -rattay -rattanachane -rattana -rathmanner -rathgeber -rathe -rathbum -rasul -rastogi -rastelli -rassman -rasmuson -rasely -raschko -raschilla -rasche -rasanen -rary -raring -raridon -rarey -raquel -rappenecker -rapelyea -ransier -ransberger -rannalli -ranjel -ranford -randoll -randklev -ramy -ramundo -ramu -ramsuer -ramstad -ramsbottom -ramphal -ramnarine -rammer -ramiscal -ramgel -ramesar -ramento -rambeau -ramales -ralon -rallison -rakich -raith -raiola -rainwaters -rainbott -raimundo -raimer -raimann -railing -rahl -rahama -ragusano -rafla -rafiq -rafi -raffone -raffo -rafail -raelson -raehl -raebel -radway -radue -radona -radisovich -radics -rademan -radeke -radder -radden -rackow -racitano -racina -rachar -racanello -rabuck -rabkin -rabidoux -rabello -rabel -rabara -qunnarath -quirindongo -quintel -quintano -quinlin -quinchia -quincel -quilling -quillian -quilliam -quillens -quihuiz -quiett -quicksall -quest -querta -querido -quent -quealy -quaye -quante -quamme -qualia -quaker -quagliano -quader -pytlewski -pyo -pylvainen -pyland -pych -py -puyear -puulei -puthiyamadam -putalavage -purzycki -purkerson -purcella -purce -puppe -pupa -pullon -pullie -pulgarin -pulford -pujals -puiatti -pugeda -puffett -puffenbarger -puertas -puddy -pucio -pucella -ptaszynski -psomiades -psencik -przybysz -przybycien -przedwiecki -pryzgoda -prvitt -pruskowski -prugh -prudent -prudden -provazek -protasewich -protain -proo -prondzinski -prokes -prohonic -progacz -proescher -prodan -privatsky -privateer -priore -prinzing -prinzi -printers -prigmore -priewe -prier -pribbeno -prezzia -preyor -prewer -prevett -preuitt -prepotente -prence -prekker -preisach -precythe -prebish -preato -prchlik -prazeres -prazak -prauner -prattella -prati -prat -prasser -prasomsack -praml -prabhakaran -prabel -poyneer -powroznik -powal -poux -poullion -pouliotte -pottier -potthast -potocnik -poties -poths -postuci -postal -posso -poser -portwine -portune -portaro -porrello -porreca -porrazzo -poremski -pore -porcello -popple -poppert -popowski -popovec -popke -popik -popielarczyk -popick -popi -poper -popelka -popec -poortinga -poorte -pooni -ponyah -pontin -pomerance -pomar -polynice -polyak -polverari -poltorak -polovoy -pollmann -pollio -pollinger -pollacco -polivka -polian -poleyestewa -polera -poldrack -polcovich -polakoff -polakis -poladian -pokorski -poiter -poffenroth -poetzsch -poeschl -poeschel -poepplein -poepping -poeling -podvin -podsiad -podrasky -podlas -pode -podbielski -podany -pochiba -pocchia -poalino -poaipuni -plymire -plyer -pluvoise -plungy -pluid -ploude -plosker -plomma -plohr -plocica -pliler -plevin -plessis -plesnarski -plesha -plenskofski -plecker -platenburg -platas -plansinis -plana -plamer -placencio -pizzolato -pizur -pius -piurkowski -pituch -pittillo -pitel -pitcak -piszczatowski -pisula -pishner -pirner -pirillo -pippert -pipe -pinyan -pinsonnault -pinnt -pinkelton -pinena -pinela -pineault -pinault -pilotti -pillips -pilbin -pilati -pikey -pih -piguet -pigna -pigler -pigat -pietzsch -pietrafesa -pieters -pierzchala -pierrie -pierfax -piercefield -piedmont -piedigrossi -piede -piechoski -piearcy -pidcock -picolet -pickren -pickings -picht -picco -pi -phomphithak -phommatheth -phlieger -phippen -philpotts -phillipi -philippon -philipose -philben -pherson -pherguson -phatdouang -phanthauong -phanord -pfirsch -pfendler -pfannenstein -pfahlert -pfahler -pezzuto -pezzimenti -pexton -pexsa -pewo -pevsner -petzel -petts -pettner -pettinella -petticrew -pettibon -pettes -petrov -petrosyan -petron -petrocelli -petrocco -petrizzo -petris -petrino -petricone -petralba -petrakis -petrain -petkoff -petitjean -petges -peteuil -petet -petersdorf -petchulis -pestronk -peskind -pesenti -pertsovsky -personette -persia -persampieri -persall -pers -perre -perper -perolta -perng -perler -perkoski -perish -perilloux -perey -peressini -percontino -perciballi -peral -peppas -pepitone -penzero -pentico -pent -penski -pense -penrice -penoyer -penovich -pennimpede -pennigton -pennig -penisson -pendl -pendill -penceal -penatac -penasa -penanegra -pelman -pelligrini -pelliccia -pellant -pelkowski -pelak -pein -peightell -pegler -pegelow -peffers -peetz -peelman -pee -pedrin -pedlow -pedelty -pede -peddy -peckinpaugh -peckens -pecht -pechin -peche -peccia -peca -peaker -pazik -pazderski -pazan -payno -payenda -pawluk -pawlosky -pawell -pavlikowski -pavlides -pavish -paviol -paulick -paukert -pattum -patrylak -patronella -patrich -patriarco -patraw -patierno -patient -patience -paten -pastorin -pasternack -pastano -passaro -pasqualino -paskoff -paskin -paskiewicz -pashel -pasey -pascher -pasaye -pasanen -parvis -partmann -parthemore -parshotam -parsens -parraga -paronto -paroda -parobek -parmann -parmalee -parlet -parle -parkers -pariente -paree -pardey -parde -pardall -parbs -parbol -paranada -parah -parado -pappy -pappenheim -paplow -papka -papich -papi -papallo -paolicelli -panzarella -panyik -pantle -pantera -pantalone -pansullo -panone -pano -panny -pannenbacker -pankiewicz -pankhurst -panke -pankau -pangan -panessa -pandolfi -pandiani -panchik -panchak -panakos -panak -panagakos -palubiak -palso -palowoda -palmucci -palmour -palmino -palmerino -palme -pallino -pallerino -palisi -palisano -palis -palazzola -palay -palaspas -palamara -paladini -paladin -paire -paillet -pailet -paider -paguin -pagoda -paglione -paglialunga -pageau -pagdanganan -pafundi -padiong -padberg -padarebones -padalecki -pacol -pacilio -pachter -pachew -pabelick -paaske -ozzella -owoc -owca -ovitz -overmann -overlee -overhulser -overholtzer -ovens -ovall -outhier -ouren -ouinones -ottum -ottomaniello -otteman -otsman -otinger -oszust -ostorga -ostolaza -osterhouse -osterberger -ostberg -ososki -osmers -osmera -oshey -osequera -osenkowski -oschmann -osbment -osbey -osazuwa -osayande -osako -orzell -orvin -ortwine -ortmeyer -ortelt -ortelli -orsten -orson -orrill -orphey -orndorf -orloski -orlich -orlander -orland -ork -orji -orison -orielly -orielley -ori -organek -orey -orender -ordona -ordon -ordman -orazine -oravetz -orandello -orabone -ora -or -oquenda -opyd -opteyndt -opoka -opiola -opielski -opell -opeka -onyeagu -onezne -ondeck -ona -oms -ommen -ominelli -omernik -omelia -olynger -olwin -olvey -olufson -olubunmi -olten -olshefski -olsby -olores -olma -olli -ollech -ollar -oliviera -olivarri -oligschlaeger -olheiser -olgin -olevera -olerud -olenski -olenius -oldow -oldershaw -oldenburger -olausen -olaes -okutsu -okken -okitsu -okie -okeson -okelberry -okel -ojito -ojano -ohyama -ohr -ohnstad -ohmen -ohlhauser -ohlensehlen -ohle -ohashi -ohanley -ogzewalla -ogutu -ogston -ogrodowicz -oginski -ogiamien -oger -ogarro -ofsak -oflynn -off -ofer -oelze -oehm -oehlschlager -oehl -odome -odo -odmark -odil -odgen -odermott -odair -oczon -ockman -ockleberry -ocken -ochal -ochakovsky -ocenasek -occhuizzo -ocanaz -obrein -obray -oborne -oblinski -obin -obierne -obholz -obhof -oberski -obermier -oberlies -obergfell -obenauer -obeid -obbink -obaker -oatney -oatfield -nyulassy -nwagbara -nutley -nuth -nurthen -nuntaray -nunno -nunlee -nuner -numkena -nuhfer -nugal -nuessen -nuding -nuchols -noye -noya -nowosielski -novickis -novi -novencido -novel -novad -noujaim -notoma -notice -noth -notch -notarnicola -nosworthy -nosacka -norum -northouse -nortesano -norstrand -norsingle -norrie -norr -norn -normoyle -norise -nordstrand -nordmark -nordes -norales -nopachai -noorda -nooman -nonroe -nonemaker -nonamaker -nommay -noman -nollet -nolle -noli -noice -noerr -nodland -nocon -nocks -nockels -nocella -nocek -njie -nizo -nitchman -nistendirk -nissan -nisly -nishitani -nishio -nishina -nirschl -niro -nirenberg -niquette -nip -nindorf -nincehelsor -nimz -nimura -nilmeier -nikula -nikach -nik -nightwine -night -nighman -nighbor -niffenegger -niez -niesporek -nier -nieminen -niemie -niedermeier -niederberger -nido -nicome -nicolozakes -nicolia -nicoles -nicolau -nickodem -nicklous -nickisch -nicka -nici -nibler -nibbe -nhatsavang -ngoun -neyer -newmyer -newitt -newgard -newenle -newbraugh -newbound -newand -nevue -nevison -nevis -nev -neujahr -neufer -nette -netkowicz -nethkin -nesvig -nestico -nessner -nesslein -nesset -nessel -neshem -nesbeth -neris -nerenberg -neren -nepomuceno -nemith -nelder -neitzke -neita -neiner -neimeyer -neigenfind -neiford -neidenbach -nehlsen -negreta -negrana -neenan -neddenriep -nech -neborak -nebesny -nazar -nawfel -navo -navarete -nauss -naumes -naugler -nauer -natvig -natalizio -natalie -natalia -nastasia -nasaire -naruaez -narrow -narkevicius -nardozzi -nardino -narain -napue -napenas -nap -naomi -nao -nanz -nantwi -nannen -nang -nanfito -nanes -nan -namsaly -namey -namer -namauu -namanworth -nalevanko -nalder -nakaoka -nakamatsu -nakajima -nakada -nakaahiki -naimoli -nahmias -nahhas -nagtalon -nagelkirk -nagasawa -naftel -nadine -naderman -nachbar -nacci -nabzdyk -nabor -nabavian -nabarowsky -naasz -myslim -myree -mylar -myall -muzii -muyres -muwwakkil -mutters -mutschelknaus -musulin -mustaro -mustache -musslewhite -mussell -mussa -musni -muslim -muskrat -muskopf -muskett -musitano -musilli -musielak -musguire -musgraves -muscott -muschik -muschaweck -mursch -murril -murra -muros -muri -murel -murcko -murak -muphy -muntean -mundz -mundinger -munder -mumaugh -mulville -mulrenin -mulnix -mullenaux -mullahy -mulkern -mulkerin -mulchrone -mulato -muinos -muhlstein -mugnolo -muggeo -mugge -muffett -muenzenberger -muellerleile -mudie -muckelroy -muccio -mrvan -mrkvicka -mraw -mozick -mozga -mozak -moxness -moxey -mounkes -mound -motonaga -mothershead -motayne -motayen -mosty -mostad -mossbarger -moskwa -moskop -mosena -mosen -moscoffian -moryl -morvillo -mortin -mortier -morsberger -morrey -morrales -morral -morphy -morock -morlino -morkert -morken -morisseau -morishito -morinville -morici -morgano -morgana -moreschi -morenco -morence -morella -mordeci -moratto -morath -morario -morando -moradian -morada -mootry -moomey -monville -montoto -montore -montoney -montfort -montey -montesi -monterrubio -montembeau -montayes -montalban -montaivo -monsay -monot -monopoli -monnerjahn -monkowski -monka -monjure -monios -monington -monges -monfils -moneyhun -moneaux -mondt -mondoza -mondloch -mondelli -mondale -monclova -moncher -monath -monagas -mominee -moma -molz -molstad -molsan -molnau -mollura -molleur -molla -molands -moitoza -moisa -moine -mohrlock -mohre -mohomed -mohmed -mohair -mogus -moeuy -moeser -moehr -moehle -modique -modgling -modglin -moderski -moczulski -moccasin -moayyad -moatz -mlodzianowski -mleczynski -mizwicki -mizutani -mizia -mizenko -miyataki -miyanaga -miville -mitsdarffer -mitrani -mitman -mitkowski -misuraca -miskinis -miskiewicz -miska -misik -mishulovin -mishulouin -mishkin -mishar -misenti -mischo -mischnick -mirisola -miricle -mirick -miramontez -mirafuentes -miraflores -miquel -mione -minzy -minzenmayer -minzenberger -mintken -minten -minot -minors -minn -minkowitz -minkins -minister -minic -minhas -mingioni -mingee -minert -minchow -mincer -minalga -mimozo -milward -milson -milosch -millings -millick -millare -milke -milinazzo -milin -milich -milette -mile -mildrum -mildon -milcher -milberger -mikuszewski -miklitz -mikko -mihalios -mihalick -mieth -mierzwiak -mierzwa -mierow -mierez -mierau -mielcarek -miecznikowski -miears -middlekauff -micucci -mickelberry -michno -michlich -michieli -michelstein -michelini -michalicek -michal -micciche -micalizzi -mguyen -mezzina -mezzenga -meydid -meusel -meusa -metty -mettig -mettenburg -metier -meth -metelko -mestemacher -messamore -mesplay -mespelt -mesiti -mesina -meshyock -mesenbring -meschke -merzlak -merrih -merner -merkwan -merklein -merkey -meringolo -merine -mergist -merganthaler -merckling -menzer -mensalvas -mennecke -menne -menjiva -mengwasser -menger -menedez -meneal -menck -mencia -menchen -menchavez -melzer -melve -melso -meloan -melman -mellison -mellerson -mellendorf -mellberg -melikian -melian -melgaard -meleo -melbye -melber -meja -meixelberger -meitz -meitner -meiss -meisch -meinen -meinberg -meigel -meierhofer -mehringer -mehrer -mehle -mehall -megahan -mega -mefferd -meenan -meecham -medvec -medinger -meddock -medawar -medaries -mecias -mecannic -meazell -measom -meaden -meach -mcwhinnie -mcwhinney -mcwells -mcvinney -mcvenes -mcthige -mcthay -mcshaw -mcroyal -mcrenolds -mcratt -mcquilliams -mcquesten -mcphetridge -mconnell -mcnolty -mcneish -mcnany -mcnamar -mcmullins -mcmulen -mcmenimen -mcmellen -mcmanuis -mcmanemy -mclernon -mclauren -mclamore -mckusick -mckosky -mckirryher -mckindra -mckin -mckever -mckernin -mckerlie -mckennzie -mckelvin -mckelphin -mckeague -mckaughan -mciwraith -mcilhinney -mchardy -mcgurie -mcgrevey -mcgreen -mcgohan -mcglocklin -mcglew -mcglaun -mcgibney -mcghinnis -mcgaughan -mcgathy -mcferran -mcfeely -mcfatten -mcewin -mcendarfer -mcenany -mcelvy -mcelmarry -mceathron -mceaddy -mcdugle -mcdoulett -mcdaneld -mcculloh -mccullin -mccullan -mccullagh -mccubrey -mccrobie -mccrain -mccraight -mccracker -mccrabb -mccowin -mccoubrey -mccoon -mcconomy -mcconnico -mcconahay -mccomish -mccoid -mccloude -mcclinsey -mcclenic -mcclee -mccier -mccathran -mccash -mccarvy -mccarrol -mccarraher -mccalpane -mccalebb -mccalanahan -mccade -mccadams -mcbroome -mcaskill -mcartor -mcaree -mbonu -mazzillo -mazzetti -mazuera -mazowieski -mazierski -mazella -mayze -maywalt -mayher -mawk -mavris -maushardt -mauras -mauracher -maupins -matysiak -matye -matusz -matuska -matusiewicz -matulewicz -mattock -mattingley -mattina -mattick -mattan -matskin -matros -matrisciano -matone -matonak -matlow -matkovic -matison -mathelier -matelski -mateiro -masunaga -masterton -mastalski -massini -massena -massed -massarelli -massanelli -maso -maslen -maslakowski -masincup -masilko -masher -mashall -masello -masell -maschmeyer -mascheck -maschak -mascari -masar -masak -masaitis -marxsen -maruschak -maruscak -marus -marumoto -martyr -martsolf -martorelli -martling -martischnig -martirano -martinsons -martinov -martinon -martinolli -martinet -martinell -martinel -martinat -martich -martey -martelles -martelle -marsolais -marsili -marshbanks -marshak -marseilles -marsaw -marrier -marrett -marrapodi -marrapese -marquitz -marousek -maronge -maro -marmerchant -marlene -markworth -markwardt -markuson -markou -markakis -marjenhoff -maritato -mariska -mariacher -margot -margis -marflak -marfil -marer -mardirossian -marcusen -marconis -marcisak -marcille -marchionni -marchesi -marchaland -marcet -marcelli -marca -marbley -marash -marascalco -marante -marangoni -marando -mapua -mapstone -mapa -maohu -manzur -manweiler -manuia -manto -mantifel -mantia -manteuffel -mantella -manteca -manspeaker -mansbach -manous -manoso -manolis -manocchia -mannheim -mannello -manlangit -manino -manieri -manicchio -maniar -maniaci -maniace -manglona -mangis -mangiafico -manghane -manero -manely -maneafaiga -mandril -mandolfo -mander -mandelberg -mandala -manco -mancill -mancher -manche -manaugh -manassa -manasares -manansala -manalili -mamudoski -mammo -mammenga -mamaril -mamaclay -malueg -malter -maltbia -maltas -malool -mallas -mallalieu -mallacara -malkiewicz -malinovsky -malewski -malett -maldomado -malcomson -malcik -malavet -malaver -malasky -malas -malango -malanaphy -malach -makofsky -mako -makler -maka -majuste -majied -majeske -majerowski -majera -maixner -maisto -maiocco -mailo -maile -maikoksoong -mahunik -mahrer -mahraun -maholmes -mahlke -mahli -mahfouz -maheia -mahalko -magwire -magpuri -magoun -magnone -magnetti -magliulo -magliolo -magliocco -magitt -magginson -maggert -magera -maged -mage -magbitang -magalong -magaha -maffitt -maffey -maestri -maenpaa -maenhout -maendel -mady -maduro -madu -madray -madras -madock -madlung -madler -madenford -madeau -maddaleno -macvean -macura -macrum -macrostie -macnaught -macnamee -macmurray -macmillen -maclay -mackle -mackimmie -mackedanz -maciejko -maciasz -maciak -machtley -machens -macentee -maceda -macdougald -maccauley -maccartney -macareno -macaraig -macapagal -macahilas -macadamia -mabone -mabary -maatta -maalouf -lysak -lynge -lynady -lykam -lyerla -lychwala -luzuriaga -luzinski -luxon -luvene -lutzi -luthe -luss -lushbaugh -luscavage -lurey -luquin -lupul -lupu -lupkin -lupfer -luoto -lundman -lundie -lundi -lundemo -luncsford -lumukanda -lumpp -lummis -lumantas -luloff -lukavsky -luitjens -luhring -luga -luffy -luelf -luehring -luedi -lueckenotte -luecht -luebano -ludvik -ludovici -ludkowski -luderman -luddy -lucksom -luckritz -luckadoo -lucion -luci -luchessa -luchesi -lucear -lucario -luben -luangsingotha -lozzi -lozo -loyst -loyed -lowin -lowber -lovich -lovenbury -loveh -lovec -louser -louris -lourence -loureiro -louras -lounds -loukidis -loukas -louissant -louer -louch -lotze -lotthammer -lotter -loterbauer -lotempio -lostracco -loston -lossman -loson -loskill -loske -loshe -lorz -lorion -lopuzzo -lopilato -lopera -loosey -looi -loock -lonsway -lons -longueville -longton -longknife -longin -longfield -longcor -londner -lompa -lommel -lomg -lolling -lolli -loli -lolar -lokuta -lokke -lokhmator -lojek -lois -loil -lohmeier -logero -loewe -loessberg -loeschner -loesche -loehlein -loeckle -loebs -loduca -lodense -lodeiro -locsin -locorriere -locklier -lockette -lochotzki -loche -locantore -locante -lobosco -lobingier -loats -loarca -llyod -llopis -llarenas -ljungquist -lizer -lizarda -livi -livezey -liverani -livas -liuzza -litzsinger -litza -littlehale -litter -litehiser -litecky -liskovec -liskiewicz -liskai -lisius -lisiecki -lisherness -lisanti -lipstone -lipsitz -lippi -lipovsky -lipkind -lipke -lipitz -lipa -liontos -linzie -linstrom -linssen -linsner -linsay -linnecke -linnan -linkkila -linginfelter -lingberg -lingardo -lingao -linea -lindwall -lindskog -lindline -lindesmith -lincicum -linahan -limthong -limesand -limauro -limardo -lilleberg -liljedahl -liljeberg -lilja -likio -ligons -lifshitz -liesch -lierle -lienke -lienemann -liekhus -liederbach -lieder -liechti -liebskind -liebhardt -liebelt -lie -liddie -lidbom -licor -lico -lickness -lickiss -lickey -lichtig -lichtenwalter -lichte -lichstein -lichorat -lichlyter -liccione -licalzi -librizzi -libre -librandi -libke -libert -liano -lianes -lezon -lezer -lezak -leynes -lewton -lewry -lewandowsky -levo -levites -levitch -levitas -levister -levinsky -leverentz -levendosky -leuty -leuters -leusink -leupold -leuchs -letteney -letteer -letrent -letourneaux -letofsky -letman -letko -letang -letalien -lestelle -lessin -lessenberry -lessen -lessa -lespier -lesky -leshure -leshko -lescavage -lermond -lerew -leonti -leonaggeo -lenza -lenters -lenord -lenny -lennert -lenix -lening -lengle -lengacher -lener -leneave -lencioni -lempe -lemone -lemin -lemich -lemert -lelis -lele -lekwa -lejune -leitze -leitem -leistner -leipheimer -leimkuehler -leiding -leidel -leidall -leichty -leichtman -leibenstein -leiba -lehrian -lehrfeld -legrow -legrant -legore -leghorn -legel -legallo -lefew -leemow -leebrick -ledy -leduke -ledon -ledley -ledec -ledebuhr -lecoultre -leconey -leckington -lechlak -lechel -lebovic -lebourgeois -leberman -lebario -leavelle -leasy -leah -leagjeld -leafe -leabow -lazzar -lazer -lazenson -lazenberry -layher -lawe -lavon -lavina -lavette -laverne -laverette -lavee -lavear -lavatch -lauwers -lauw -lauture -lautman -lauters -laurion -laurens -laurenceau -launt -launelez -laughbaum -lauerman -laudat -laubacher -latzka -latzig -latortue -lathon -lathim -latessa -latella -lataille -lasyone -lastovica -lasselle -lask -lashutva -laserna -lascody -lasaint -larve -laruffa -larsh -larreta -larko -largay -larey -lardydell -larde -laravie -larate -laquay -lapuz -laprairie -lapora -lapiana -lanzoni -lanzillotti -lanzillo -lanzer -lanzalotti -lanton -lantey -lansdowne -lansden -lansang -lanquist -lanosga -lanosa -laninga -langsdale -langoni -langlands -langhout -langhorst -langenheim -langehennig -laneve -landucci -landsberry -landrey -landolfo -landkamer -landham -landgrebe -landefeld -lampp -lamparski -lamorgese -lamorella -lammie -lamielle -lamela -lambourne -lambino -lamberto -lamber -lambeck -lamascolo -lamarsh -lamantagne -lamaitre -lalumiere -lallo -laliberty -lalata -lalanne -laland -lakner -laity -lahrman -lahmann -lahip -lagroon -lagoa -laginess -lagge -lagatella -lagassie -laganga -lafranca -lafosse -laffredo -laferty -lafera -lafaver -lafauci -laesser -ladyman -ladtkow -laditka -ladeau -ladas -lacouette -lacosta -lacock -lacks -lackman -lackie -lachley -lacassagne -labrune -labrode -labreque -labrec -labog -labkovsky -labita -labbie -lababit -laaker -kylish -kyhn -kwiat -kwasny -kwack -kvilhaug -kuznicki -kuzmish -kuzmanic -kuzemchak -kuttler -kutella -kutchin -kuszlyk -kusumoto -kusuma -kustes -kusinski -kushlan -kushiner -kushin -kusak -kurzyniec -kury -kurter -kurrie -kurpiel -kurkjian -kurk -kurisu -kupres -kuokkanen -kunzie -kunzel -kunis -kuning -kundrick -kundla -kundinger -kully -kullas -kulkarni -kulcona -kulak -kulacz -kuks -kuklis -kuka -kuja -kuizinas -kuhtz -kuhnle -kuhnen -kuhnemund -kuhnel -kuhens -kuharik -kufner -kufeldt -kuenstler -kuehnert -kudzma -kudasik -kuczkowski -kucinskas -kuchto -kuch -kucel -kucek -kubica -kubecka -kuban -kszaszcz -krzywicki -krzynowek -krzal -krystal -krysiak -krys -krutsch -kruss -krusen -krusemark -krupiak -krumsiek -kruml -krulish -krulik -krulicki -krueth -kruer -kruel -krows -krossen -krolikowski -krolczyk -kroetch -kriticos -krites -krisher -krinke -krienke -kriegh -krichbaum -kribbs -kretchmar -kreitzbender -kreitler -kreinbring -kreb -kreamalmeyer -kreager -krawiecz -krawetz -krasley -krapfl -kranze -kranendonk -kramper -krampe -kramm -kralicek -krajnovich -krajcer -krain -kracker -kozinski -kownacki -kown -kowing -kowallis -kowall -kowalcyk -kowalchick -kovacic -kourt -kourkoumellis -kounter -kounlavong -kounce -koulabout -koualeski -kotzur -kottsick -kottre -kotte -kotrys -kotow -kothenbeutel -kotara -kostyla -kostich -kostenko -kossmann -kossin -kossakowski -kossack -kosoff -kosmatka -koshiol -koscielak -koscho -korzenski -kortz -kortum -korthauer -korshak -korsen -korol -korns -kornprobst -kornman -kormann -korineck -korf -koretsky -korenic -korbal -koralewski -koppelmann -kopis -kopiak -kopera -kopchick -kooken -kontogianis -konon -konn -konieczko -konick -konicek -koneval -kondratowicz -koncan -konat -komsthoeft -komosinski -kommer -kominek -koman -kolthoff -kology -kolnik -kolmetz -kolling -kolkowski -kolkemeyer -kolias -kolen -kolehmainen -kolby -kolberg -kolat -kokoska -koistinen -kohnert -kohlmyer -kofutua -kofoid -kofler -kofa -koetz -koetje -koerper -koeppl -koenning -koenigstein -koenigsfeld -koelle -koegel -koebley -koczera -kochmanski -kocaj -koc -koblick -kobis -kobialka -kobernick -kobak -knost -knori -knopinski -knoepfler -knoche -knipping -knipfel -knighter -kniefel -knie -knickman -knezevic -knewtson -knestrick -knesel -kneifel -knavel -knappe -knackstedt -klusmeyer -klus -klund -klun -kloos -kloock -kloiber -klohr -kloepper -klocek -klis -klingerman -klingen -klines -klimkowicz -kliever -kliem -kleypas -klevene -kleppinger -kleparek -klepacz -klemenc -klemanski -kleinwolterin -kleinsmith -kleinke -kleinberger -kleidon -kleespies -kleese -kleekamp -kleban -klayman -klay -klaver -klarman -klarberg -klapperich -kjetland -kizewski -kiyabu -kivioja -kittner -kittelberger -kissik -kisser -kishaba -kisch -kirner -kirkpatric -kirchhofer -kirchgessner -kirchausen -kirbie -kiral -kippes -kipper -kippel -kintsel -kintop -kinseth -kinroth -kinnion -kinningham -kinnier -kinnie -kinkin -kinkella -kingshott -kingore -kingen -kinerson -kindermann -kinart -kinan -kinabrew -kimbral -killean -kilcrest -kilb -kilarjian -kiffe -kientz -kiening -kielich -kieger -kieft -kieff -kiefel -kie -khum -khu -khov -khounborine -khoun -khoo -khensovan -khela -khay -khansari -khanponaphan -khano -khammixay -khalife -khalifah -khachatoorian -keyna -kexel -kewish -kettmann -ketring -ketler -ketcheside -ket -kestle -kessner -kerzer -kerss -kerska -kershbaumer -keros -kerntke -kerkel -keri -kerger -kereluk -kerechanko -kercado -keppers -keohane -kennet -kennealy -kenely -keneally -kendrew -kenderdine -kenagy -kenady -kemner -kemmler -kemme -kemerer -kelzer -kellon -kello -kellin -kellebrew -kellaway -keliipio -kelder -kelash -keitzer -keigley -keicher -kegerries -keens -keemer -keckler -keaveny -keath -keasley -kears -keany -keanum -keamo -kealohanui -kazmi -kazmer -kazin -kazeck -kazakos -kayrouz -kaylo -kawata -kaveny -kavadias -kauphusman -kaune -kaull -kaub -katzberg -katynski -katula -katten -katsbulas -katnik -katechis -katcsmorak -katan -kastning -kastman -kassell -kassabaum -kasprak -kasica -kasack -karvonen -karvis -karpowich -karpiak -karnish -karma -karell -kareem -kardashian -karczewski -karayan -karatz -karadimas -kapusniak -kapraun -kappe -kappa -kapitula -kapfer -kapelke -kapa -kaopua -kantarian -kanta -kanoza -kannard -kanish -kaniecki -kanevsky -kaner -kandra -kanda -kanatzar -kanable -kamph -kamnik -kammes -kammerdiener -kamerad -kamelamela -kamealoha -kame -kamb -kaluzny -kalupa -kaluna -kaltved -kalter -kalscheuer -kalmus -kalmer -kalland -kalima -kalichman -kalfa -kalbaugh -kakudji -kaitz -kainoa -kailey -kaiama -kahrer -kahola -kahana -kagay -kafel -kaetzel -kaesemeyer -kaer -kaea -kaduk -kadis -kaderlik -kade -kacik -kachikian -kacerski -kaboos -kabba -kaaz -kaauamo -juza -justino -justason -jurs -jurisch -jurgensmeier -jurden -jura -jungling -julye -juluke -julock -julias -julen -jufer -juedes -jubic -juariqui -juaire -jozsa -joulwan -jostes -josten -josich -josias -joshlin -josefy -josef -jorski -jorn -jorinscay -jorda -jons -jongeling -jongebloed -jondle -jolls -johnshoy -johnico -johanek -jirjis -jiran -jimmison -jill -jewels -jevtic -jetty -jesmer -jes -jerone -jerko -jenschke -jenquin -jennins -jennelle -jenison -jendrick -jeminez -jellis -jekot -jekel -jehl -jebb -jeavons -jeanneret -jeane -jeancharles -jeanbaptise -jaworowicz -javellana -jaurigui -jauch -jastrzebski -jass -jasmine -jarzembowski -jarver -jarosh -jaroscak -jarnesky -jares -jarell -jaradat -jarad -jaquins -janulewicz -jansing -janrhett -janowicz -janosek -jannetti -jannell -janeczko -jandron -janczunski -jancik -janacek -jamwant -jamili -jakovac -jagoe -jaffy -jaeschke -jaenke -jacque -jacobos -jackovitz -jackola -jackley -jacka -jacckson -jablonsky -jabiro -jabaay -jaap -iyengar -iwanowski -iwanejko -ivon -iverslie -ivanov -ivancich -iturralde -ittner -israelsen -israels -ismay -isleib -isita -isiordia -ising -isidore -isbill -isagawa -isacs -isaacsen -irzyk -irizzary -irineo -irimata -ireton -irestone -iozzo -iozzi -iopa -intrabartolo -intihar -insko -insana -inocente -ink -inhulsen -ingole -inches -inafuku -imperatore -imgrund -imbimbo -imbier -imaino -ilse -illuzzi -illian -ilic -ilasin -ilagan -iker -ihnat -ihm -igwe -igtanloc -ifversen -iese -ieng -ienco -idemoto -icard -iborra -ible -iberg -ibbetson -ibale -iavarone -iatarola -iacovino -iacopino -iacobellis -iachetta -hysom -hymowitz -hymon -hymen -hylands -hych -huy -huval -hutmacher -huszar -hustace -hussien -huskinson -husfelt -husenaj -husch -hurtig -hurtgen -huro -hurne -hurlston -hupman -huor -hunzelman -hunsperger -hunneyman -hunckler -humphrys -humphers -humetewa -humeniuk -humenik -hulstrand -hullings -hulitt -hulick -huland -huiting -hugron -hufstedler -huffner -huezo -huettman -huereca -huenink -huelse -hueckman -hudgeons -hudach -huckstadt -huckle -huckabey -hubschmitt -hubin -hubertus -hubby -hubbel -huban -huaman -hsun -hsiang -hrapski -hoznour -hoyman -howkins -howick -howatt -hovorka -hovick -hovanesian -hounchell -houf -hotton -hottes -hotrum -hotelling -hotaki -hostoffer -hosterman -hosteller -hospkins -hospelhorn -hoscheit -hoschander -horstead -horris -hornoff -hornberg -hornandez -hornack -hormell -horikoshi -horigan -horger -hoppins -hopperstad -hopko -hootsell -hoopingarner -hookano -hooghkirk -hoofard -hoock -honsinger -honour -honnette -honnerlaw -honma -honkanen -hongach -honeycott -hondorp -honchell -honas -honanie -homsher -homestead -holze -holtorf -holthus -holster -holsonback -holom -hollinrake -hollidge -hollerman -hollendonner -hollberg -holk -holian -holes -holecz -holec -holdvogt -hokutan -hok -hoiness -hoilman -hohiudden -hohensee -hohaia -hogelin -hogatt -hogarty -hoftiezer -hoffstatter -hoffnagle -hoffeditz -hoffart -hoerl -hoefel -hodos -hodnefield -hockins -hockenbrock -hocke -hochard -hocate -hobler -hober -hoben -hobell -hobden -hoagberg -hnyda -hlavka -hladik -hladek -hitchen -hislope -hirschberg -hirneise -hirn -hirliman -hirleman -hirao -hippenstiel -hintson -hint -hinley -hinh -hinebaugh -hindson -hinderberger -himmelmann -himanga -him -hilston -hilstad -hilser -hilsendager -hilsenbeck -hilscher -hilsabeck -hilpert -hilman -hillerud -hillebrano -hillebrandt -hilland -hilgers -hilgeman -hilfiker -hildago -hilda -hilbrand -hikel -highbaugh -higgons -higgenbottom -hiersche -hierholcer -hiedeman -hiday -hickethier -hichens -hibbitt -heyduck -hewko -hevron -heuwinkel -heuvelmann -heusner -heung -heuett -heuck -hettinga -hessey -hespen -hescock -heschke -hervig -hertzel -herston -herstad -hershkop -hershelman -herschelman -herriges -herres -herrarte -herpich -hernanez -hernanadez -hernan -hermenau -hermanowicz -herkstroeter -herkenratt -herera -herendeen -herauf -henstrom -hense -henrity -hennigh -hennies -henneberry -henkey -henjes -hengl -hengen -henfling -henerson -henein -hendrik -hendricksen -hendeson -henderso -henderlite -hemon -hemmann -hemker -hemesath -hemani -helweg -helverson -helseth -helquist -helom -helmstetter -helmsing -hellweg -hellmich -helgager -helgaas -helfenbein -helems -helem -helde -heiting -heither -heisdorffer -heiro -heirendt -heinzig -heiniger -heingartner -heimlicher -heimburger -heiken -heidtman -heidrich -heidi -heidelberger -heidebrecht -heick -heibult -heholt -heggood -heeth -heers -heern -heerkes -hedtke -hedspeth -hedon -hedinger -hecke -hechinger -hebeisen -heatherton -heartsill -heagney -heafey -headly -headland -headlam -headington -heade -hazy -hazim -haza -haynam -hayertz -haydt -haxby -hawse -hawkinberry -hawe -havlin -havir -havelka -hauxwell -hautan -hausrath -hauptmann -haughn -hauersperger -hatzenbihler -hattley -hatta -hatori -hathorne -hatchitt -hatchet -hatada -hastin -hastedt -hassing -hassenger -hassanein -hasker -haskel -hashaway -hasenfuss -hasenfratz -hascup -hasas -hartwigsen -hartrum -hartquist -hartory -hartlen -hartleben -hartinger -harsin -harritt -harriage -harpham -harnos -harnist -harleman -harlee -harke -hargers -hardter -hardsock -hardnette -hardine -hardi -hardges -harderman -harde -hardan -harcar -harbater -harapat -harang -haq -hanzl -hansome -hansman -hansis -hansing -hanoa -hanninen -hannaway -hannawalt -hanmer -hankison -hanible -hanenberger -haneke -hanebutt -handzlik -handsom -handkins -handke -handin -hanback -hanawalt -hanavan -hamsik -hamonds -hammette -hammerman -hammacher -hamlette -hamiltan -hamidi -hamff -hamett -hamersly -hamers -hamdn -hamden -hamberry -hamara -hamacher -halyk -haltiwanger -halstrom -halse -halpert -halnon -hallo -halliman -hallemeyer -hallack -halima -halick -haldi -halcott -halbershtam -halajian -halaas -hakey -haitz -hairell -haims -haifa -hahnert -haggin -haggerton -haggermaker -hagey -hafferkamp -haferkamp -haeuser -haessly -haese -haerter -haering -haeder -hadvab -hadsall -hadler -hadesty -haddenham -hadaller -hacopian -hackl -hackerott -hacken -hachting -haboush -hable -habig -habibi -haberstroh -habenicht -haaz -haakenstad -haage -gyllensten -gwilt -gwillim -guzon -guzewicz -guye -gutzler -guttormson -gutsche -gutjahr -gutgesell -gutenberg -gustitus -gussow -gusmar -gushi -gushard -gurwell -gurske -gurrero -gurin -gurecki -guoan -gunzelman -gunyon -guntharp -gunstream -gungor -gundelach -gunawan -gumprecht -gumaer -gulston -gulnac -gulizio -gulbrandsen -guitano -guimares -guillebeau -guillary -guillama -guilfoos -guiggey -guiga -guieb -guidrey -guiab -guffanti -guerrini -guerrazzi -guerera -guenthur -guell -guedjian -gudmundsson -gucker -gubin -gubala -guba -guasp -guarriello -guarno -guarini -guanche -guagenti -gstohl -grzesik -grzebien -gryszowka -grymes -gruz -grustas -gruse -gruntz -grunert -grune -grunberg -grumney -grumbling -gruman -grulkey -gruiger -gruening -gruenewald -gruby -gruben -grubel -grubba -grriffin -groys -growell -grothaus -grosskreutz -groskreutz -grosclaude -groot -gronstal -gronquist -gronlund -gronitz -gronberg -grona -gromoll -grohowski -grohman -groetsch -groder -grobmyer -groberg -grivno -grivetti -grippen -grine -grimme -grills -grigoreas -griglen -griffitt -griffan -grieshop -grieshaber -griep -grieff -griebling -griblin -grev -greubel -gressmire -gresco -grenway -grensky -grennay -grenko -grenet -gremo -gremmels -gregware -gregus -greggory -gregan -greep -greenweig -greensfelder -greenhalge -greengo -greenbacker -greem -greder -greczkowski -grebner -greber -greason -gream -gravat -grauman -grauel -grassle -grasmick -grapp -granzella -granto -gransberry -granquist -granneman -granieri -granes -grandon -grandner -granai -grammont -gramble -graleski -grainey -grain -graichen -grahovac -grageda -gragas -graffney -graffagnino -grafals -gradley -gradias -gradford -grabowsky -grabonski -grabler -grabhorn -graap -gozman -goyen -goyda -gowey -gowda -govostes -govia -gour -gouldman -gouldie -gougis -gotts -gottemoeller -gottdenger -gotta -gotshall -gosvener -gostlin -gossow -gosson -gossling -gosset -gosey -gorrindo -gormanous -gormally -gorius -gorena -gorell -gordley -gordey -gorbea -goonen -goodmon -gonzelas -gonzalis -gonyou -gonsiewski -gonsar -goney -gomoran -gomoll -gollop -gollob -gollier -golik -golida -golias -golian -golia -golec -goldthorpe -goldhorn -goldhirsh -goldfuss -goldfeld -golderer -goldenstein -goldenman -golde -golbin -golackson -goicoechea -goffigan -goerlich -goepfarth -goepel -goeing -goehringer -godboldt -gochett -gochal -gocek -goblirsch -gnoza -gnegy -gnabah -gmernicki -glyn -glueckert -glowacky -glovinsky -gloston -gloshen -glos -glogowski -gloeckler -glimpse -glidwell -glesener -gleitz -gleckler -glebocki -gleber -glazner -glazebrook -glaves -glavan -glasby -gladysiewski -gladle -gladhart -gjeltema -givant -gius -giulioli -gitt -girres -girbach -girand -gip -giottonini -giorno -gionta -giombetti -gioffre -gioe -ginzel -ginsel -ginocchio -ginnis -ginard -gimse -gilzow -gilton -gilstad -gilomen -gilner -gilly -gillming -gillion -gillich -gillice -gille -giliberto -gilhuly -gilgan -gildemeister -gilcris -gigger -giffith -giffee -giff -gietz -giesel -giera -gibeaut -gibala -giasson -giarusso -giarrano -giaquinta -giannavola -giandomenico -gianandrea -giallorenzo -giacherio -giachelli -giacchi -ghebremicael -gezalyan -getzschman -getzlaff -gettens -gettelman -gestether -gesing -gesamondo -gerz -gerwin -gerveler -gertsema -gerthung -gerten -gertel -gerteisen -gerstenberger -gershkovich -gerney -germy -germana -gerich -gerdiman -gerckens -gerbig -georghiou -geoly -gentleman -gentges -gentelia -gensel -geniesse -genia -generalao -gemmiti -geml -gelner -gellings -gellinger -gelino -gelhar -gelfond -gelerter -gelder -gelbart -geisinsky -gehrki -gehm -geen -gederman -gede -gearn -geant -gazzara -gazitano -gazdik -gayanilo -gawthorp -gavit -gaviglia -gavett -gavan -gavagan -gausman -gaukroger -gaufusi -gaudier -gaudett -gauci -gatzow -gatta -gatheright -gatesy -gatesman -gastelo -gaschke -garwin -garter -gartenmayer -gartenhaus -garsjo -garroutte -garrettson -garrean -garre -garnham -garnache -garmire -garmen -garlett -garkow -garito -garinger -gargan -garcon -gapp -gantzler -gantvoort -gansert -gansen -ganns -gannetti -ganin -ganigan -gamotan -gammond -gamer -gamello -gambrill -gambold -gambee -gambardella -galven -galvani -galuszka -galuppo -galmore -gallusser -gallodoro -gallington -galleta -gallegoz -gallaugher -gallargo -galkin -galipo -galinis -galimberti -galic -galbiso -galathe -galassini -galanti -galano -galagher -gajeski -gajardo -gaiters -gails -gailliard -gaffer -gafanha -gaer -gadewoltz -gaden -gackle -gabrial -gabrenas -gabossi -gables -gabl -gabhart -gabeline -gabbamonte -fyler -fykes -fusner -fusillo -fushimi -fus -furtak -furblur -fundora -funderberg -fumero -fuls -fulham -fulco -fujimura -fujikake -fugueroa -fuger -fugatt -fuerstenau -fuerbringer -frymoyer -frymier -frymark -frutiger -frushour -fruman -fruin -frugoli -fruehauf -froyd -frosto -frontis -frontiero -fronick -froneberger -frohberg -froebe -frobish -frittz -fritchley -fritchey -frisinger -frisell -frija -friehauf -friedenthal -friebel -freundlich -fret -frerich -frens -freker -freiseis -freimark -freilino -freiheit -freiermuth -freidin -freemantle -freeh -freedlander -freeders -freeburger -fredregill -frederique -freckleton -frecker -frazzano -frauenfelder -frattali -fratta -fratrick -fratercangelo -frasso -frashure -fraschilla -franzman -franzini -franza -franty -fransisco -franpton -frankson -frankland -frankiewicz -frankart -frangione -franchini -francescone -fralic -fraklin -frair -fragosa -fradkin -fracasso -foyer -foxhoven -fowlie -fowley -fowlar -fower -foute -foussell -fouquette -founds -fougner -fosmire -fosher -fosbrook -fortun -forss -forsmann -forslin -forsee -forpahl -fornili -fornier -fornaro -formichelli -formaggioni -forkum -forkell -foriest -forgrave -foresta -forejt -foreback -forcum -forcht -forchione -forch -forberg -forbach -fonua -fonteno -fonteneau -fongvongsa -fondriest -fondaw -fonck -fohl -foglio -foersterling -foddrell -focke -flugum -flucas -fluaitt -floss -florendo -floras -floer -flockhart -flockerzi -floan -flin -fliger -flieller -fleurilus -flenord -fleniken -flenaugh -flemmon -flemm -fleites -fleischner -fleckles -flechas -flauding -flatter -flato -flanner -flanegan -flammang -flakne -flaker -flagiello -fladung -flachs -flaa -fiwck -fitzrandolph -fitzherbert -fitzgerrel -fitsgerald -fisser -fishell -fischl -fischhaber -fischel -fiscella -fiscel -firpi -firenze -fiorilli -fiorica -finwall -finklestein -fingerson -fingerman -fineout -finello -finell -findlen -finco -filthaut -filpus -filo -filla -fili -fil -figiel -figgeurs -figert -fietek -fiest -fieser -fiesel -fickbohm -ficht -ficchi -fialho -fial -feyh -feyereisen -feuss -feusier -fette -festini -fest -fesko -fertik -ferrusi -ferrone -ferrio -ferringo -ferries -ferrie -ferrett -ferrato -ferrario -ferraraccio -ferranto -ferr -ferouz -fernette -fernanders -ferkel -feret -ferer -ferenz -fenrich -fenniman -fennig -fenison -fendrick -fendlason -fend -fenbert -felver -feltham -felonia -felling -fellezs -felizardo -felio -felicien -felicia -felicano -feliberty -feistner -feister -feintuch -feilds -feighner -feierman -fehrs -fegueroa -fegles -fegette -feerick -feela -feehly -feehery -fedorko -fedie -fedezko -fedewa -federkeil -fecto -fechtig -fecher -featheroff -feagans -fazzari -faycurry -fawson -fawler -favuzzi -favro -favian -favazza -fausey -faus -faupel -fattore -fatora -fathy -fathree -fatheree -fassinger -faske -farug -fars -farnese -farkus -farinha -faren -faraimo -farahkhan -faragher -fanti -fanter -fantazia -fantauzzo -fansher -fandino -fanatia -famageltto -falzon -fallow -fallenstein -falencki -falcioni -falci -failey -failde -faigley -faidley -fahrni -fahrlander -fahrenthold -fahning -fago -fagle -fagerquist -fagerlund -fageraes -facello -ezzelle -eyton -eyestone -exton -exantus -evjen -evilsizor -evertt -evertsen -eversmeyer -everroad -everline -everet -evartt -evansky -evancho -eull -ettman -ettienne -ettel -etringer -eth -estronza -estrem -estrade -estok -estle -estimable -estess -estella -estanislau -essix -essency -esquinaldo -espiridion -espinel -esperon -espenlaub -espejel -esparsen -esmont -esmon -esmay -esmaili -eskins -eskind -eshmon -esfahani -escober -escanlar -erz -ersery -eros -ernster -erlebach -eriks -erichson -erger -eredia -erdos -ercole -ercolano -erazmus -eraso -epel -eovaldi -ensz -ensel -enock -ennes -enis -engnath -engfer -engelmeyer -engelberg -engard -endris -endreson -endorf -endersbe -ende -encino -emshwiller -empasis -emore -emmond -emiliano -emerling -emenaha -emde -emberling -emano -elway -elvey -eltringham -elter -elsken -elsheimer -elsaesser -elrick -elreda -elpert -elnicki -elmes -ellsmore -ellrod -ello -ellinghuysen -ellingham -ellingburg -elles -ellenbogen -elleby -ellcessor -ellamar -elke -elijah -eligio -elieff -elicker -elian -eliades -elhadi -elfenbein -elenbaas -eldringhoff -eld -elbie -eke -ekas -eisnaugle -eisiminger -eisenhaver -eisenhardt -eisenberger -eiselein -einwalter -eighmey -eidemiller -eickmeyer -eichstedt -eichenberg -eichberg -eibel -ehrisman -ehrenzeller -ehman -ehli -ehl -eheler -egwuohua -eglin -egler -egersdorf -egelston -efthimiou -eelkema -edu -edridge -edland -edenholm -edem -economou -eckmann -eckblad -eckardt -echternach -echter -ebrahimi -eberst -ebershoff -eberheart -ebbett -eayrs -eavey -eatough -eastling -eastern -easterlin -earthly -earing -eakles -eagleman -eacho -eaby -dzwonkowski -dzurnak -dzurilla -dziuba -dzinski -dziewanowski -dziekan -dyrstad -dydo -dvorsky -duyer -duttinger -dutchess -duston -dush -durward -dursteler -durpee -durough -durniok -durnan -durisseau -duris -duriga -durda -durboraw -dura -duquaine -duplessy -duplanti -dupes -duperre -dupaski -duos -dunshie -dunphe -dunnell -dunkinson -dunkerley -dunkan -dunemann -dunderman -duncans -dunahoe -dumouchel -dummett -dumeny -dumbar -dumar -dulan -dukett -duk -duis -duguette -dugre -dufrain -dufauchard -duesterhaus -duesterback -duerst -duenwald -dudzik -dudycha -dudenbostel -dudden -ducklow -duckey -duchnowski -duchane -duceman -dubovsky -dubler -duber -dubel -dubbert -drutman -drummey -drumbore -droy -drow -droubay -drorbaugh -dropinski -dronko -dronick -droggitis -drissel -driscol -drinen -driessen -driedric -dreuitt -drenning -drelick -drejka -dreiss -drebes -dratch -drakulic -drakos -draime -dragovich -dragich -draggett -dragg -drabicki -doyscher -doxbeck -downy -downhour -dowland -dowker -dowds -dowda -douyette -douthett -doughman -dougharty -douga -doudna -dotolo -dossman -dosh -dorsinville -dorsay -dorrill -dorosh -dornbrook -dorlando -dorio -dorie -dorcas -doporto -dopita -doorley -dooner -donton -dono -donnerberg -donnalley -donlyuk -donkle -donilon -doniger -donigan -doniel -doncaster -donatich -donaher -donah -donaghue -donaby -domowicz -domitrovich -dominowski -dominiak -domenice -dombek -domagalski -domagall -dolsen -dolmajian -dolley -dolinski -dolhun -dolfi -dolecek -dokovic -dok -dohrn -doerksen -doelger -doeberling -dody -dodimead -dodgion -dockum -dockerty -dochterman -dobrzykowski -dobrynski -dobrushin -dobrosky -dobrinin -dobison -dobbyn -dobbe -dlugos -ditucci -dittus -dittmann -dito -ditmars -disotell -disorda -disharoon -dischner -discala -disalvi -dirth -dirr -dirienzo -dipolito -dipilato -dipietrantoni -dipanfilo -dioneff -diomede -dinuzzo -dintino -dinsmoor -dinsdale -dinos -dinora -dinnendahl -dinkle -dininger -dingillo -dingie -dingell -dimitry -dimicco -dimezza -dimarzio -dimario -dimariano -dimanche -dilucca -dillis -dilliner -dillin -dillashaw -dilillo -dilg -dilella -diker -digiouanni -digeorgio -difronzo -difrancisco -dietterick -diestler -dies -dierkes -diekema -diederichs -dieball -didway -didonatis -didomizio -didio -didato -dicosmo -dicorpo -dicocco -diclaudio -dichiaro -dible -diblase -dibiasi -dibbern -diano -diani -diangelis -diamantopoulo -diaco -dhruva -dheel -dharas -dezalia -deyak -deya -dewolff -dewick -dewese -dewater -devot -devost -devis -devilliers -devery -deveny -devenny -develice -devasier -devarona -devanski -devai -deus -dettorre -dettor -detrolio -detrich -detillion -deteso -determann -deterline -deterding -detchon -detaeye -destina -destefani -desruisseaux -desormeau -desonia -desmore -desko -desimas -desher -deshayes -deschene -desantos -desando -desamparo -desalvatore -derx -deruiter -derosie -derogatis -derman -derkas -derivan -derington -derienzo -derian -dereus -derenzi -derentis -derderian -derastel -deraps -dequinzio -deprato -depont -depiro -depierro -depeyster -deonarine -deocampo -denzine -denwood -denos -denooyer -denomme -denoia -dennig -denjen -denisco -denick -denholm -denfip -deneui -denetclaw -denet -denery -demuzio -demske -dempewolf -demorrett -demorizi -demny -demiter -demilt -demik -demien -demianczyk -demetrakos -demer -dembek -demauro -demase -demart -demarino -deluzio -delullo -delucian -deltufo -deltora -delsoin -delsavio -delross -delperdang -delpaggio -delosier -delonge -delonais -deloge -delmendo -dellwo -dellum -dellosso -delliveneri -dellefave -dellarose -dellapenta -dellamonica -delgoda -delekta -delegado -deldonno -delco -delce -delbene -delavergne -delashmutt -delapuente -delaporte -delana -delallo -delahay -delagol -delagado -delabarre -dekruif -dekoning -dekeyzer -dejoseph -dejardin -dejarden -deister -deigado -deichmann -deichman -dehm -dehlinger -dehl -dehetre -dehaney -dehaas -degrood -degrass -degrande -degooyer -degnim -deglandon -degenfelder -degenaro -degear -degagne -defrang -defrain -defosset -defosse -defont -defir -defayette -deerdoff -deely -dedrickson -dednam -dederich -decurtis -decourt -decourcey -decock -declerk -decius -dechavez -dech -december -decarvalho -decarmine -decaire -decaen -debrosse -debreto -debrecht -debrae -debore -debien -debenedictis -debarge -debardelaben -debaets -deasis -dears -dearruda -dearring -dearinger -dearin -dearcos -deanes -deakyne -dazzi -dazi -dayao -dawkin -davolt -davise -davine -davidsmeyer -davidowicz -davaz -davari -davance -dauster -dause -daulerio -daughters -daugereau -daubney -datamphay -dasouza -daskal -dashno -dashne -dasen -daschofsky -dasch -darwich -darvish -darveau -darting -darthard -darron -daron -darnstaedt -darmody -darmiento -darington -dariano -daria -dardenne -darakjian -danyow -dannis -danniels -danni -dannelly -dannelley -dannatt -daniely -dangelis -danese -daner -dandoy -danco -danca -danas -damrell -damone -damms -damme -dalporto -daloisio -dalmata -dallison -dallam -dallago -dalegowski -dalecki -daku -daking -daken -dajer -dajani -daidone -dahlka -dagres -dago -dager -dafonte -dada -daczewitz -dach -czysz -czubakowski -czartoryski -czapiewski -cyrnek -cyree -cygrymus -cwikla -cwalinski -cutrera -cuther -cutchember -cushner -cusenza -curreri -curlis -curio -curimao -curia -curey -cunio -cumoletti -cumberlander -culpit -culloton -cuffy -cuffman -cuddington -cucuta -cucufate -cubine -cubano -cuadras -csuhta -crutison -cruther -crusinberry -crummell -crumly -cruff -crozat -crossmon -crosiar -crookshank -crookes -cronoble -croner -cromeans -crolley -crofutt -crockette -crivelli -crivaro -cristino -criste -crissey -crisalli -criley -cribari -crewe -creselious -crescenti -crepps -crenwelge -creitz -cregin -cregger -creekbaum -credi -crebs -crayford -cravy -cravalho -crauswell -crathers -crask -crapp -crape -crapanzano -cranson -crans -crannell -crandal -craigwell -craigmyle -crafter -cradler -coxwell -coxen -cowlin -covitz -coventon -coutre -coutinho -coutermarsh -courton -courseault -courrege -courey -coulon -coulibaly -couden -coton -coste -cossett -cosman -cosma -coslow -cosico -coshow -corwell -corvo -corujo -cortopassi -cortinez -cortijo -corrio -corrington -corriher -corridan -corrga -correla -corping -corpe -coroniti -cornn -cornmesser -cornella -corneille -corkron -corf -coreen -cordiero -cordew -cordenas -corcuera -corbley -coray -coraham -copstead -copsey -copping -coppes -copney -coopper -cooperider -coopage -coonse -cookerly -conwright -contreraz -continenza -contes -consuelo -constine -constanzo -constantin -constancio -consentino -conradt -conour -conoley -conney -connerat -conlogue -conforme -confalone -coneway -condroski -condina -condiff -condi -conchado -conch -concatelli -conaughty -commerford -comissiong -cominski -cominotti -comar -colschen -colpi -colpa -colony -collons -collon -collicott -collea -collari -colker -colier -colesar -colemen -colecchi -colcher -colchado -coklow -cokel -cohick -cofone -coffinberger -coffell -coffel -codispot -codilla -cocroft -cockerhan -cochren -cochenour -cobetto -cobar -coalter -clyman -cluver -clusky -clunes -clukies -clowerd -clouatre -clossin -cloos -clokey -clinkinbeard -cliffton -clibon -clevland -cleverley -clesca -clerc -clemenza -cleath -cleasby -cleal -clavijo -clater -claros -claghorn -clacher -clabo -civil -cittadini -citroni -cissel -cisar -cirella -circelli -ciprian -cipcic -ciotta -cinnamond -cinkan -cinco -cinar -cimorelli -ciminera -cilenti -cihak -cieloszyk -cidre -cicen -cicali -cibik -ciavardini -cianfrani -cianciola -ciallella -ciaffone -chyle -chy -churchfield -churape -chuma -chulla -chueng -chubicks -chrystal -chrosniak -chriswell -christopoulos -christi -christerson -christenbury -chowenhill -chowansky -choudhary -chor -chopton -cholula -chollett -choinski -chocron -chockley -chochrek -choates -chlebus -chiz -chitrik -chisman -chiphe -chiola -chiodi -chinault -chime -chimal -chilsom -chillo -chicles -chicharello -chicalace -chiariello -chiappari -chhan -chham -chez -chevis -cheverton -cheverez -cheu -chessman -cherubini -cherrin -cheroki -cherny -chernich -chernesky -cheranichit -cheeseboro -chech -cheam -chavoustie -chavies -chaumont -chaulklin -chatampaya -chasson -chassaniol -chary -charvet -charry -chari -chararria -chappo -chappa -chapmond -chaplik -chapen -chanthasene -chanler -chanco -chamul -champaco -chalupa -challinor -challa -chalender -chaknis -chakkalakal -chaisty -chaddick -chaboya -chaberek -chabbez -cevera -cerverizzo -cerventez -cervantsz -cerva -cerroni -cerri -cerrello -cerone -cernuto -cernota -cerminaro -cerf -ceretti -cerceo -cerasuolo -ceraso -cerasi -cerar -ceraos -cepin -cepas -centi -cendana -cendan -cellar -celeya -ceder -cecot -cazel -cazaree -cawon -cawein -cavrak -caveness -cavalaris -cavaiani -cauterucci -caughorn -caughell -cauazos -catts -cattanach -catrini -catozzi -catignani -catholic -catherson -catherine -cathell -catello -catchpole -catanzano -casuscelli -castros -castrey -castongvay -castillion -castelum -castells -castellion -cassler -cassino -cassilano -cassiano -cassetty -cassens -cassells -cassavaugh -cassagne -cassa -casolary -casmore -casley -caska -casis -casini -cashour -cashmer -cashett -casement -casciato -casavez -casasola -casarz -casar -casana -casales -carvill -carvallo -cartner -carrousal -carrizo -carretta -carrethers -carrao -carran -carpen -caroselli -carolla -carnillo -carnegia -carmin -carmickel -carlini -carland -carknard -carioscia -carina -carideo -carfrey -cardinalli -cardiff -cardazone -carbonella -carbery -carbee -caravetta -caravati -caramelo -caramella -caraig -carabine -cara -capristo -capri -cappellini -caporiccio -capicotto -capestro -capener -capek -capas -capaccino -caoagdan -canwell -cantella -cantakis -canson -cansino -cansibog -cannistraro -canner -caneza -caney -caneva -canetta -canestraro -candozo -candlish -candell -canant -canalez -can -camus -campora -campobasso -campble -campau -campain -camlin -camisa -camerino -camerano -camenisch -camelin -cameli -cambia -camareno -camancho -camack -calvan -calumag -caltagirone -calowell -callnan -callington -calliham -calligaro -caller -callar -callam -callagy -callagher -callado -caliman -caldron -caldoron -caldarera -calcao -calaf -cakmak -cajulus -cajka -caivano -caires -caire -caiozzo -cains -cainne -caimi -cagnon -cagno -cagan -caffentzis -cafasso -caez -caddigan -caddel -cacatian -cabugos -cabon -cabarcas -cabanillas -cabanela -cabam -bywaters -bystron -byse -byous -bynun -byczek -bybel -byal -buzza -buzo -buzis -buvinghausen -butzke -buttross -buttray -buttke -buttitta -butenhoff -busscher -busk -busitzky -bushweller -bushrod -bushfield -buschur -busacca -burzlaff -burvine -burtts -burtschi -burtell -bursik -burrs -burras -burows -burnie -burnash -burmside -burm -burly -burlson -burlile -burlaza -burlage -burkstrand -burkly -burklow -burkin -burian -burgs -burgoa -burgey -burgees -burfeind -burdzel -burchinal -burbine -buratti -buonassisi -buonaiuto -buntz -bunts -buntenbach -bunson -bunda -bumpaus -bumbalo -bumbaca -bullivant -bullin -bulisco -bulik -buley -bulat -bukowiecki -builes -buhrke -buhlig -bugh -buffone -buenviaje -bueler -buehlman -budzik -budy -budrovich -budish -budiao -budhu -buden -buddy -bud -buczko -bucknor -buckmeon -buckless -buckett -buckaloo -buchwalter -buchmiller -buchmeier -buchite -buchinsky -bucheli -buchann -buchal -bucaro -bubolz -buboltz -bubert -brzezicki -brzenk -brys -bryngelson -bryla -bryington -bruzewski -bruzek -brustmann -brusser -bruscato -brunzel -brunkhardt -brunick -brunetta -brunecz -bruna -brumaghim -bruker -bruin -brugliera -bruffee -brueske -bruegger -bruechert -bruckmeier -brroks -brozeski -broyle -brownlie -browman -broudy -brothen -broski -brosi -brookskennedy -brookie -bronston -broncheau -brommer -brola -broitzman -brohn -broglio -brogley -broers -broering -brodtmann -brodis -brodine -brodfuehrer -brodess -brodes -brockus -brockenberry -brociner -brochet -broadnay -brizeno -britts -brinley -brinkhaus -brinius -brininger -bringer -brindza -brindger -brinar -brilowski -brigner -brightharp -brighter -brienza -brienen -bridenbecker -brickson -breznay -brezinka -breyers -brevell -brettmann -bretos -bresser -brentz -brennick -brening -brendeland -brem -breiter -breihan -breidigan -bredlow -bredin -breckley -breckenstein -brebes -breaz -breaud -breath -bready -brazie -braunwarth -braunberger -brauman -braucks -brath -brasure -brasswell -brasseux -braskett -brasby -brantingham -bransfield -branseum -brano -brangers -brang -branes -brandstrom -brandorff -brandom -brandenburger -branck -brancaccio -bramuchi -bramlitt -bramel -bramasco -bram -brakke -brak -braget -bragado -brafman -bradmon -bradick -bradey -bradd -bracklin -brackbill -brabazon -braband -bozych -bozic -boyl -boyens -boyde -boyas -bowlick -bowle -bowcock -bouy -bouvia -bousum -bourraine -bourgon -bourbois -bouquin -boumthavee -boulger -boulch -boulais -boughn -bouges -boudle -boudjouk -boucouvalas -boucaud -bottrell -bottoni -bottella -bothner -botellio -boswink -bostow -bostain -bosson -bossier -bossey -bosold -boslet -boshnack -boshell -bosheers -bosefski -borza -boryszewski -borysewicz -borson -borseth -borroto -borrigo -borriello -borrello -borowicz -borovetz -borovec -borgelt -bordinger -bordas -bord -borcuk -borcher -borbridge -boothman -bookhardt -boocock -bonwell -bonsal -bonnoitt -bonnifield -bonnick -bonnel -bonker -bonita -boning -bonifield -boniface -bongle -bongivengo -bongio -bonge -bonett -bonebright -bondroff -bondoc -bonda -boncella -bonaventure -bonalumi -bonadona -bonaccorso -bonaccorsi -bompiani -bommer -bolvin -boluda -bolorin -bolon -bollom -bollettino -bolk -boliver -boline -bolieu -boliek -boleyn -boldul -boldery -bolante -bokor -boklund -bojanowski -boisuert -boislard -bohren -bohmann -bohlinger -bohart -boham -bogust -bogh -bogatay -bogany -boeving -boeshore -boesenberg -boerstler -boers -boenig -boelsche -boelke -boekhout -boekelman -boehner -boeckmann -bodwin -bodrey -bodman -bodiroga -bodford -bodensteiner -bodenheimer -boddorf -boddeker -bockskopf -bocchi -bocage -bobola -bobko -boben -boardway -boards -blyzes -blumenkranz -bloomgren -blong -blondeau -blommel -blois -bloem -blocklinger -blisset -blimka -bliler -bliese -blice -bleyer -blette -blesh -blender -blemel -bleifus -blechinger -bleattler -blazosky -blatti -blatteau -blatnik -blatchford -blankship -blankschan -blandy -blandino -blakeway -blakeborough -blaho -blackstar -blackgoat -blachly -blacher -blach -bizcassa -bizarro -bivings -bitsuie -bitsui -bitsko -bistodeau -bister -bisonette -bishel -bisconer -biscocho -biscahall -bisby -bisagna -birts -birnell -birkline -birkenhead -birenbaum -birckett -birckbichler -birchwood -biorkman -bimler -bilous -billinghurst -billey -billeter -billegas -billard -bilkiss -bile -bilcik -bigos -bignall -bigio -biggio -bigas -biffer -biffar -biesinger -bieschke -bierbrauer -bienfang -biehn -biederwolf -bieberle -biebel -bidon -bidner -bidgood -bidez -biderman -bickleman -bicklein -bicket -bicker -bickart -bichel -biard -bialik -bialczyk -bezner -beyrer -beylotte -beyerl -bevly -beulah -beul -betzel -betterman -betsinger -betschman -betita -bethurum -bethoney -beth -beston -besso -bessick -besio -beshear -besarra -bervig -bertus -bertrano -bertovich -bertolasio -bertog -bertinetti -bertelle -bertel -bertch -bertagnoli -berschauer -bersamin -bers -berri -berretti -berretta -berret -bernucho -bernt -bernstrom -berno -bernick -bernice -bernhagen -bernardoni -bernabo -bermers -berlove -berlinghof -berkhalter -berisha -bergseng -bergreen -bergholz -bergert -berez -beresnyak -berdes -beras -benzschawel -benzi -benya -benwell -benty -bentrup -bentele -benser -bennison -bennink -bennerson -bennerman -benitone -beniquez -benik -bengelsdorf -benell -beneduce -benecke -benear -bendzans -bendy -bendt -bendorf -bendolph -bendlage -benders -bendavid -benck -benassi -benari -benage -benadom -benabides -bembury -bemboom -bemberry -belyoussian -belveal -belsey -belongie -belone -belon -beloff -belluomini -belloma -bellmay -bellish -bellisario -bellingham -bellflower -bellfleur -bellerdine -bellemy -bellazer -belkowski -belich -belfiglio -beley -beldin -belback -belarde -belangia -bel -bekerman -beker -bek -beiswanger -beirise -behun -behning -behmer -behlen -begor -begg -beetley -bees -beermudez -beerling -beeck -bedsaul -bedoka -bednorz -becklund -beckerdite -beckendorf -beckenbach -bechthold -bechman -becherer -beavin -beauprez -beaumier -beauliev -beaugard -beaufait -beaudrie -beathe -beasmore -bearup -bearfield -beahn -beadnell -beadell -bazzel -bazzanella -bazelais -bazata -bazarte -baza -bayle -bayete -bawa -bavzee -bavard -bausley -baunleuang -baumgard -baumbusch -bauknight -baugham -bauers -bauermeister -baublitz -battistini -battiato -battiata -batters -battaglini -bathurst -bathrick -batel -batalona -basua -bastura -bastress -bastilla -bastidos -bastic -basten -bastedo -bastain -bassil -basset -bashinelli -basbas -baruth -barufaldi -bartylla -barts -bartrop -bartosz -bartosiak -bartolotto -bartolet -bartoldus -bartnett -bartlone -barthen -barthelman -bartenfield -bartczak -barsotti -barrocas -barrile -barrieau -barrer -barreira -barranger -barranca -barquera -barnscater -barnfield -barncastle -barnathan -barnar -barlip -barkins -barkenhagen -barkalow -barimah -baridon -barhydt -bargar -barff -bardeen -barcelona -barby -barbini -barbiere -barbetta -barberis -barberian -barban -barasch -baranow -baranovic -barajos -baraby -bapties -banyas -bantug -bantin -bantillan -bantay -bansbach -bankemper -banis -banick -banecker -bandin -bandemer -bandanza -bance -banales -bammon -bamfield -bambacigno -bambaci -balyeat -balvanz -balsano -balmores -ballreich -balloon -ballmer -ballintyn -balley -balletta -balhorn -balford -balezentis -baldrey -baldiviez -balder -baldassarre -baldacchino -balchunas -balceiro -balbin -balaz -balaski -balancia -balagtas -bakst -bakkum -bakios -bakeley -bajorek -bajdas -baizer -baitg -baise -bailony -baillio -baille -baiera -bahun -bah -bagne -bagi -baghdasarian -bageant -bagdonas -baetz -baeringer -badget -badeau -baddeley -bacy -backey -backenstose -backen -backe -backbone -baccouche -bacco -bacarella -babitsch -babena -babbin -babbel -babat -bab -azzaro -azoulay -azimi -azer -aylsworth -ayarza -axline -axelsen -awtrey -avola -avie -avetisyan -averyt -aveado -avanzato -avala -auyer -auxilien -auwarter -aurges -aures -auprey -aupperle -aunkst -aumich -aument -aumavae -aulbach -aukes -augspurger -auffrey -attridge -attkisson -attinger -atta -aton -atoe -atiyeh -athmann -athay -atchity -atallah -atala -astwood -astolfi -astol -asters -aspegren -asma -ashpole -ashfield -ashely -asevedo -aschmann -asar -asaeli -arzilli -arundel -arujo -aruiso -arturo -artry -artison -artinian -arrizaga -arriazola -arpino -arons -aronhalt -arntt -arniotes -arnholtz -arneberg -armillei -armijos -arm -arleth -arlen -arlan -arkins -arjes -arizzi -arizola -ariyoshi -aring -arimoto -arigo -arietta -arie -aridas -aricas -arhelger -arhart -arguillo -arguellez -argote -argenal -arenos -arenivas -arenivar -arendz -arendsee -arebela -ardizzone -ardion -ardery -ardd -ardan -arcino -arcilla -arcea -arcaute -arcangel -arcadipane -arbry -araque -aramini -arambuia -aragus -aragundi -aragoni -aragaki -aradanas -arabie -arabia -ar -apyuan -apuzzi -apruzzese -applewhaite -applebury -appeling -appelgate -apling -apking -apela -aparo -apa -aoay -anyan -antrican -antonopoulos -antonis -antonich -antonaccio -antona -antolik -antinore -anteby -anslinger -ansbacher -ansara -annette -ankersen -anis -aniol -aningalan -aniello -anichini -anibal -angviano -anglum -angley -angerer -angeloro -angeloff -angelocci -anestos -anerton -anelli -andzulis -andruss -andrian -andreatta -andonian -andon -anderon -andebe -andary -ancy -ancell -anasagasti -anakalea -anagnostou -amyotte -amtower -amstein -amsinger -amsili -amphy -amonette -amolsch -amistoso -amisano -amidei -amesquieto -amert -amento -ameling -amelang -ambroz -ambrosone -ambres -amble -amberson -ambeau -amati -amargo -amancio -amailla -amadi -alzugaray -alvorez -alverest -alven -alvarengo -alvalle -alvacado -alummoottil -alukonis -alu -altwies -altum -altringer -altop -altheimer -altew -alterio -alsman -alsdon -alsbrooks -alsandor -alrich -alrais -almario -allor -allocca -allnutt -allmand -allhands -allgaeuer -allessi -allenbrand -allemond -allegre -allcorn -allbones -allamong -allaband -algeo -alge -alfreds -alfera -alexzander -alexiou -alexaki -alexader -alevedo -alerte -alekna -aleizar -alegi -alegar -aleff -alecca -aldrege -aldi -aldarondo -alcosiba -alcombright -alce -alcaoa -alcaide -albriton -albrekht -albracht -alberthal -alberro -alberda -alattar -alar -alampi -alamos -alaibilla -alacano -akuchie -akram -akinyooye -akiereisen -aimbez -ailstock -ahyou -ahrenholtz -ahonen -ahmau -ahlstedt -ahle -ahlborn -aharonof -aharon -ahal -aguino -aguillera -aguiler -agueda -aguallo -agrios -agriesti -agricola -agreste -agrela -agre -agney -agne -agliam -agerton -afoa -aflalo -affelt -affagato -afan -aemmer -adzhabakyan -ady -adside -adrovel -adrid -adonis -adleman -adle -adjutant -adesso -adels -addo -adamiak -acron -ackins -ackies -achziger -achzet -achekian -ache -acfalle -accetturo -abubakr -abson -abramowski -aboytes -aboulissan -abling -ablin -ablang -abke -abetrani -abernatha -abela -abeb -abdin -abdelwahed -abdella -abdeldayen -abdel -abbinanti -abbay -abbadessa -abaya -abaunza -abatti -aasby -aaland -aaby -zysett -zwinger -zweier -zuziak -zusman -zuro -zurkus -zurheide -zurawik -zuniega -zumot -zullig -zukowsky -zukof -zukerman -zuclich -zuchara -zubrzycki -zuberbuhler -zuazo -zsohar -zschoche -zrimsek -zoutte -zotos -zorzi -zoroiwchak -zorens -zoquier -zonia -zone -zondlo -zomora -zombro -zombory -zombo -zomberg -zolman -zollar -zolinski -zolinas -zoellick -zoelle -zoebisch -zodrow -zoda -zobell -zmiejko -zlotnick -zlatkin -ziyad -ziter -zita -zissler -zisser -zirin -zircher -zipse -zipkin -zipay -zinni -zinkl -zimit -zimba -ziman -ziler -zilahi -ziko -zihal -zieske -zieser -zientara -ziencina -zielonko -ziek -ziehm -ziego -ziegenhagen -ziedan -ziebold -zidzik -zickuhr -zicari -zibert -zibelli -ziak -ziadie -zezima -zeyadeh -zeto -zetes -zerzan -zerring -zerom -zerck -zerbel -zentgraf -zenker -zener -zenbaver -zena -zemon -zemjanis -zeminski -zelmar -zellous -zellefrow -zelkind -zeleny -zelenko -zeis -zeimetz -zeimantz -zeilman -zehnpfennig -zehe -zeegers -zeckzer -zebell -zebel -zeals -zdrojkowski -zazozdor -zaxas -zawadzki -zavatson -zavadoski -zatko -zastawny -zaspel -zarzuela -zarycki -zarucki -zart -zarriello -zarozinski -zarnick -zarkin -zaritsky -zarella -zappolo -zappile -zappavigna -zapoticky -zapico -zapato -zapatas -zanueta -zanter -zanola -zanis -zaneski -zanco -zamzam -zamperini -zamparini -zampaglione -zamostny -zammiello -zammetti -zambotti -zamborsky -zam -zalwsky -zakarian -zaituna -zaitlin -zaidel -zaic -zaibel -zahri -zahradka -zahra -zahorchak -zaharchuk -zagorac -zagen -zaffina -zaffalon -zadra -zadow -zador -zadd -zacharia -zacharewicz -zablonski -zabka -zabik -zabielski -zabek -yuzn -yuste -yusi -yurkanin -yurich -yurchiak -yungclas -yungbluth -yunan -yuki -yueh -yucha -yslava -yrigollen -yragui -ypina -yozamp -yovino -yovanovich -yournet -younkins -younglove -younglas -youket -yosko -yoshimori -yorton -yorn -yorkman -yorio -yorgey -yoquelet -yonkoske -yongue -yonge -yoney -yonemori -yonek -yokiel -yokely -yoders -yo -yngsdal -ylonen -yilma -yidiaris -yezek -yestramski -yessios -yeskey -yerry -yerly -yerbich -yenz -yenney -yenner -yenglin -yengich -yendell -yeldon -yekel -yeisley -yeilding -yegge -yeend -yeeloy -yearicks -yeamans -yeakle -ydara -ybos -yballe -yavorsky -yater -yasutomi -yasinski -yarzabal -yarrell -yarish -yanoff -yannotti -yankovitz -yanity -yanetta -yandura -yancik -yanan -yanai -yamnitz -yammine -yamkosumpa -yakulis -yaklich -yakel -yahraus -yahna -yahl -yagoudaef -yagin -yagecic -yaftali -yafei -yafai -yablonsky -xander -wzorek -wykes -wydryck -wydo -wydler -wycuff -wyborny -wurts -wurgler -wuolle -wunderly -wun -wulkan -wuitschick -wuestenberg -wuerz -wuellenweber -wucherer -wublin -wubbel -wrotten -wrinkles -wriedt -wrenne -wreede -wraggs -woyahn -woulard -woudenberg -woskobojnik -wosher -wortinger -worstell -worst -worner -worn -wormely -worlow -workings -workinger -wootan -woolhouse -wooleyhan -woolcott -woodliff -woodert -woodend -woodburg -woodand -women -wombolt -wolzen -wolthuis -wolsted -wolsky -woloszczak -woller -wolkowski -wolkowiecki -woliver -wolhok -wolfsberger -wolfred -wolffe -wolfertz -wolbeck -wokwicz -wojtowich -wojtecki -wojnaroski -wojeik -woiwode -wohlwendi -wohlschlegel -wohlrab -wohld -woester -woernle -woelzlein -woelfle -wodskow -wlosinski -wlodyka -wlazlowski -wlach -wizar -wiuff -witvoet -wittstruck -wittry -wittliff -witterstauter -witsell -witosky -withy -witherbee -withenshaw -witczak -wisterman -wisnosky -wisniowski -wiskowski -wisk -wisinger -wisenor -wischner -wisbey -wirtjes -wirght -wirf -wipprecht -winzler -winzenried -wintringham -winterton -winterfeldt -winterbottom -winsted -wins -winninger -winning -winney -winnewisser -winners -winnegan -winklepleck -winkleblack -winkelpleck -winkeljohn -winkelbauer -winingear -winikoff -wingstrom -winett -winesickle -winesberry -winek -windmeyer -windhurst -windam -wimpey -wiman -wilts -wiltjer -wilterdink -willrett -willour -willmes -willmann -willinsky -willington -willigar -williama -willegal -willcoxon -willand -willame -willaby -wilkowitz -wilkers -wilison -wilis -wilgocki -wilging -wilfinger -wilebski -wildin -wildfong -wilderson -wildenthaler -wildeisen -wildauer -wilcinski -wilansky -wilabay -wikins -wikert -wik -wiinikainen -wiggains -wigen -wieto -wiess -wiesman -wierzba -wierschen -wierschem -wiehe -wieger -wiederwax -wiederin -wiede -wieciech -wiechert -wiechec -widrig -widowski -widmaier -widlak -widdoes -wickus -wicketts -wickemeyer -wicka -wicinsky -wibeto -wibberley -wibbenmeyer -wiatrak -wiatr -wiand -whyman -wholly -whittley -whittiker -whitteker -whitset -whitmyre -whitmeyer -whitheld -whitesinger -whitemore -whitacker -whistle -whisker -whisenton -whippie -whipp -whildin -whigum -whiby -whelton -wheeington -whan -whaler -whal -weyhrauch -wewerka -wetterauer -wetselline -wetklow -westwater -westrom -westre -westhouse -westervoorde -westergaard -westerbeck -westcote -westaway -wesselink -wesselhoft -weslowski -weslow -wescovich -werthman -wershey -werries -wernli -werning -werma -werking -wenzell -wentzloff -wentcell -wenstrand -wensky -wennersten -wenman -wengren -wener -weneck -wendy -wendte -wenderoth -wend -wenclawiak -wence -wemark -weltmer -welms -welman -wellendorf -welfel -weitkamp -weith -weiszbrod -weissmann -weissert -weisse -weissbrodt -weismiller -weisiger -weisenhorn -weisenfluh -weisend -weisenberg -weisdorfer -weisberger -weirather -weinzinger -weinzimer -weinzetl -weintz -weinand -weiker -weikal -weik -weigman -weigleb -weigart -weidenheimer -weiden -weickum -wehring -wehausen -weglin -weghorst -weeth -weeter -weenum -weelborg -weegar -weeber -wedwick -wedner -wedlow -wedlock -wedi -wedgworth -weckenborg -wechselblatt -webbs -webbink -weavil -weatherley -weatherill -wearrien -wearly -weagel -weadon -waymer -wayde -waybill -wavra -waughtel -waughtal -wauch -watzke -wattson -watrs -watral -watne -waterston -waszmer -wasylow -wasyliszyn -wassermann -wassenberg -wassenaar -waskow -waskey -waska -washurn -washup -washuk -washnock -washman -washinski -wasem -wartman -warsme -warsing -warschaw -warsager -warpool -warneka -warnasch -warmbier -warley -warick -warholic -warhola -warhol -warens -wareheim -wardrop -wardon -wardman -wardinsky -wardian -wappel -wanvig -wanser -wanschek -wanland -waninger -wanders -wampol -walzier -walvoord -walto -waltenbaugh -waltemath -waloven -walman -wally -wallravin -wallor -wallinga -walles -wallentine -wallenda -walleck -wallbrown -wallberg -wallbank -walland -wallaker -wallaert -wallack -walkinshaw -walking -walicki -waldrope -waldmann -waldenberg -walczynski -walchli -walbrecht -wakula -wakham -wakenight -wakeling -waitkus -waisman -waisath -wainman -wahoske -wahner -wahlenmaier -wahid -wagon -waggaman -wagenheim -waganer -wafula -waeyaert -waetzig -waelti -waeckerlin -waddouds -wackman -wackerbarth -wachsmuth -wabasha -vyhnal -vuturo -vulgamott -vukich -vrias -vranich -vrablic -votraw -voter -votaua -voskowsky -vorwaller -vorholt -voracek -voong -vonwagoner -vonstaden -vonsoosten -vonkrosigk -vongxay -vongvivath -vongunten -vongsakda -vongal -vonfeldt -vondohlen -vonderkell -vonbraunsberg -vonarx -volpert -volper -volpa -volmink -vollmering -volking -volkers -volkens -volin -volesky -volckmann -vojta -voita -voights -vogtman -vogtlin -voglund -vogland -vogenthaler -vogelpohl -vogds -voetmann -voedisch -vodder -voce -vlk -vlasaty -vlasak -vlahovich -vizza -vizuete -vivolo -vittum -vittek -vitorino -vitkus -vititow -vitera -vitantonio -vitaniemi -visvardis -vissman -visovsky -visosky -visocsky -visnosky -visnocky -viscarro -visaya -virts -virkler -virgili -virgie -virgel -virelli -viramontas -viorel -vintinner -vintimilla -vinsel -viniegra -vinck -villot -villenas -villemarette -villecus -villaquiran -villane -villalouos -villaescusa -vilkoski -vilkama -vilca -vilaro -vilardo -vilandre -viken -vigus -viguerie -vigorito -vigario -viessman -viesselman -viesca -vierthaler -vierps -vientos -vienneau -vidler -victorica -vickey -vicioso -vichidvongsa -viccica -veysey -vespia -veselic -verzi -versele -veroba -vernet -verlotte -verigan -verhaag -vergamini -verga -verfaille -verela -vere -verdine -verdiguel -verd -verbridge -verble -verbit -verbilla -verbasco -ventur -ventrice -ventre -ventors -venth -venosh -vennari -venkus -veninga -venible -venghaus -venetos -venere -veneable -vendelin -vemura -velzeboer -veltre -veltin -veloso -veles -vele -veld -veitz -veitenheimer -vein -veillette -vegher -vegetabile -vegar -veerkamp -veen -vecino -vebel -veater -veader -ve -vayon -vayner -vavricek -vauter -vaulx -vaughner -vaudreuil -vaubel -vattikuti -vathroder -vatch -vastola -vastardis -vassure -vassil -vassie -vasseur -vassen -vasquiz -vasaure -varvil -vartanyan -varron -varro -vargis -varesko -varda -varanese -varakuta -varagona -vanzante -vanyo -vanwyngaarden -vanwassenhove -vanvolkenburg -vanvalen -vantuyl -vantil -vanta -vanstrom -vanslooten -vansicklin -vanscoik -vanschaick -vanruiten -vanostberg -vanorsdol -vanolinda -vanoflen -vannuland -vannover -vannorsdell -vanniello -vanni -vanner -vanmarter -vanleuvan -vanlaar -vankilsdonk -vankammen -vanhevel -vanheukelem -vanhee -vanhauen -vanhamlin -vanhamersveld -vangyi -vangompel -vangoff -vangerbig -vangelos -vanfossan -vanez -vaneffen -vandygriff -vandy -vanduynhoven -vandunk -vandorien -vandon -vandiest -vandeweert -vandevort -vandevere -vandeveble -vandestreek -vandesteeg -vanderwyk -vanderwood -vanderwilt -vanderwege -vanderweerd -vanderweel -vandertuig -vanderstappen -vanderschoot -vandermoon -vanderkaaden -vanderhoot -vanderboom -vanderau -vandenacre -vandemortel -vandeman -vandelaare -vandebrake -vanconant -vancleaf -vanbogelen -vanbenthuyse -vanbeck -vanasselt -vanaprasert -vanandel -vampa -valseca -valree -valot -valorie -vallimont -vallie -vallentine -vallelonga -vallario -vall -valgren -valer -valenzvela -valentyn -valenstein -valenciana -valderamo -valcin -valcho -valakas -vaksman -vakil -vaka -vajgrt -vaissiere -vainio -vaiko -vaghy -vaghn -vafiadis -vafiades -vaeza -vaeth -vadasy -vaclavik -vacio -vaci -vache -vaccarino -vacante -uzun -uxa -uvalles -utvik -uttley -ustico -usman -usina -ushioda -ushijima -uscio -usack -urse -urrey -urreta -urraca -urness -urlanza -uriostejue -urik -urenio -urdiano -urbieta -uptegraft -uppencamp -unterkofler -unnold -unnewehr -unkn -uniacke -unglaub -unck -umnus -umezawa -umbel -ultseh -ultreras -ulses -ullum -ulisch -ulicnik -ulich -uleman -ukich -uken -uhrin -uhrhammer -uhles -uhlenhopp -ugaz -ugaitafa -ueki -uebersax -udinsky -udicious -ucha -uccio -uc -ubry -ubiles -ubertini -ubence -tyssens -tysseling -tyrance -tynio -tylman -tydings -tydeman -twohatchet -twito -twillie -twiet -twiest -tweet -tweddell -twait -tvedt -tuxbury -tuukanen -tutuska -tutoni -tutela -tushoski -turvaville -turturo -turrill -turrie -turpiano -turomsha -turocy -turnpaugh -turnow -turnmyre -turnier -turkmay -turkasz -turinetti -tureson -turdo -turcio -turbiner -turbide -turber -turbe -turansky -tupy -tuppen -tuplano -tuorto -tunon -tunget -tunby -tun -tumolillo -tumminia -tumbleston -tullison -tulis -tuliau -tukuafa -tukis -tujague -tuia -tugade -tuffin -tuesburg -tuerk -tuer -tuenge -tudruj -tudman -tudisco -tuccio -tucay -tuberman -tsuruda -tsuchiura -tsuchida -tsistinas -tshudy -tschirhart -tschache -tsantakis -trzaska -trythall -tryninewski -truont -trumpp -truka -truiolo -truglio -trueluck -trudo -truchon -trucchio -trube -truan -troxil -trowel -trovinger -trotz -trotto -trosen -troost -tronzo -tront -trometter -trombino -tromba -trollope -troke -trojanovich -trojak -trohanov -trogstad -troe -trocchio -trobridge -trobough -trnong -trivane -trippel -trimnal -trimis -trimino -trilt -trillas -trillana -triglia -trigillo -trifone -triffo -trifero -tridenti -tricoli -tricamo -tribue -triblett -trevithick -trevisone -trevis -trevillian -trevethan -treves -treusdell -tretola -tretina -tretera -tressel -treola -trentz -trento -trentman -trenor -trennell -trend -trenchard -tremore -tremillo -trembinski -trelles -treister -treine -treible -treff -tredinnick -treder -trebon -trebesch -trear -traviss -traux -trautner -trausch -traum -trattner -trass -traphagen -trapeni -trapalis -traner -tramonti -trainham -traicoff -trahern -traffanstedt -trachsel -tracewell -trabold -trabazo -tozloski -toyota -toyn -towse -townsand -towels -touton -toussand -toupe -touney -toudle -touchard -touby -touart -totzke -tototzintle -totino -toting -tossie -tosco -tosch -tortu -tortolano -tortelli -torruellas -torros -torrion -torrillo -torrico -torreblanca -torrano -torongeau -toromanides -tornincasa -torey -toren -torbus -toquinto -topolewski -topoian -topness -toplistky -topliffe -topal -topacio -toothacre -tooms -toolsiram -toolan -tookmanian -tonzi -tonti -tonschock -tonsall -tonrey -tonnesen -tonnar -tongate -tonetti -tonelson -tonder -tonai -tomspon -tomski -tomshack -tomkus -tomka -tomidy -tomichek -tomeldan -tomehak -tombleson -tomasson -tomasic -tomash -tomanek -tolontino -tollin -tollerud -tollefsen -toline -tokley -tokkesdal -tohen -togashi -tofolla -toepperwein -toeller -toelke -toedebusch -todt -todoroff -todor -todesco -toboz -tobolski -toaston -toa -tlumacki -tlatenchi -tlatelpa -tlamka -tjandra -tix -tivis -tivar -titterness -titone -titler -tith -tisi -tish -tisdel -tisdal -tischner -tipre -tippey -tipold -tinucci -tintinger -tinnerello -tinn -tinlin -tinger -timus -timothe -timons -timonere -timon -timenez -timchula -timbrell -timas -timar -tilzer -tilus -tilt -tilow -tillou -tietge -tieng -tichnell -tichi -tibor -thy -thury -thurness -thurlby -thurby -thuney -thuma -thull -thruthley -throssell -thress -threlfall -thrapp -thrams -thraen -thouvenel -thorstenson -thorsness -thoroughgood -thornborough -thormaehlen -thorade -thonney -thompon -thometz -thomeczek -thomases -thomae -thoburn -thobbs -thivener -thim -thilmony -thiengtham -thielges -thieklin -thidphy -thibaut -thibadeau -thew -theule -theuenin -thepbanthao -theos -thell -thelin -thelemaque -theinert -theeman -theden -thebo -thansamai -thanos -thangavelu -thanem -thanasouk -thanas -thamann -thaman -thalls -thaller -thall -thadison -tewolde -tewa -teuteberg -teteak -testolin -tessendorf -tess -tesmar -teschler -terwey -tertinek -terstage -terrone -terrible -terrian -terrezza -terracciano -terp -teroganesyan -termilus -terinoni -teri -terhorst -terherst -terazes -teravainen -teque -teoh -teodoro -tention -tenore -tenofsky -tenn -tenhoff -tenhaeff -tengben -tenerovich -tener -tenda -tenario -tempelton -temoney -teman -tellefsen -telkamp -telgen -teles -telch -telander -teklu -teixeria -teissedre -teisberg -tehney -tegner -tegan -teehee -teder -teddy -tecuanhuey -techau -tecchio -teakell -teager -taylar -tayan -tawwab -tavolieri -taverab -tavaris -tavana -tauzin -tautolo -tausch -taula -taualii -tattrie -tatsuhara -taton -tatge -tatel -tastet -tassa -tasma -taskey -tashiro -taruer -taruc -tartsah -tarski -tarrenis -tarnoff -tarmey -tarman -tarling -tarella -tarduno -tarboro -tarbert -taray -taras -taque -tapian -taphous -tapaoan -tanzi -tantum -tannous -tankxley -tankesly -tanh -tangney -tangerman -tangaro -tangari -tangabekyan -tandus -tande -tamkin -tami -tamburrelli -tamburino -tamborlane -tamai -talvy -talsky -talleut -tallacksen -taliferro -talicska -talentino -talaro -talamentez -talaga -tako -taker -takara -takai -tajudeen -tajima -taitague -taillefer -tail -tahon -tagupa -taglauer -tagalog -tagaloe -tagala -tagaca -tag -tafiti -tafelski -taetzsch -taegel -tadt -tadgerson -taddio -tadd -tacopino -tacneau -tackette -tackes -tacke -tachauer -tacason -tabuena -tabion -tabatt -szysh -szymonik -szwede -szulimowski -szpak -szoka -szocki -szklarski -szitar -szewc -szesterniak -szermer -szerbin -szczepkowski -szczeblewski -szachewicz -szabat -syzdek -syrrakos -syria -sypult -sypolt -synovic -syner -symkowick -symeon -sylney -sylla -syktich -syer -swopshire -swolley -swithenbank -swiss -swirczek -swingler -swingen -swinerton -swinea -swille -swierenga -swierczynski -swieca -swicord -swerdloff -swenceski -swelt -swelgart -swehla -sweets -sweem -swed -sweatmon -sweatfield -swatman -swartzman -swartzell -swantak -swanston -swancutt -swanay -swamm -swam -swait -swainey -swaggart -swabe -swabb -svobodny -svetlak -svennungsen -svedine -svatos -svare -svancara -suydan -suwannakintho -suvada -suttin -suttee -sutkus -sutic -suthers -sutcliff -suszynski -sustar -sustaire -suskay -susany -susanin -suryanarayana -survis -surpris -suro -surminec -surguy -surgoine -sures -suren -surbella -suomela -sunyich -sunniga -sunier -sumrow -sumption -summerlot -sumerix -sumeriski -sultani -sulley -sullenberger -sulipizio -sulin -sulima -sulikowski -sulentic -sulejmanovski -sugabo -suffield -suentenfuss -suehs -sudekum -sudbrock -sucre -suchocki -suchla -sucgang -succar -subijano -subich -subert -subera -suaava -stuttgen -sturner -sturk -sturgul -sturghill -stukowski -stuesse -stuermer -stuer -stuebe -studyvance -studnicki -studniarz -studmire -studdiford -stucke -stublaski -stubby -stubbendeck -strzalkowski -struzzi -struzik -strubel -strozewski -strowe -strous -strotz -strombeck -stroker -strohmayer -strogen -strizich -strini -stringari -strimling -strimback -strife -strid -stricklind -stribley -strevels -strevell -streva -stretz -strenge -stremi -strelecki -strejan -streitnatter -streff -strefeler -streeton -stred -strazisar -strayhand -strayham -stravinski -strausz -strausner -strauhal -straugh -strasters -stranford -strandburg -stranahan -strahin -stradtner -stracquatanio -strachman -straathof -stpierrie -stoviak -stovell -stoutenger -stoudymire -stoud -stouch -stouall -stottlar -stotko -stothard -stotesbury -stotesberry -storto -stores -storage -stoos -stonich -stolzenburg -stolly -stolebarger -stolcals -stolar -stoklasa -stogden -stoffey -stofferan -stoey -stoett -stoeltzing -stoel -stoeke -stoeffler -stoeckert -stoebner -stoeberl -stodomingo -stodder -stockwin -stockon -stocki -stockebrand -stocco -stobie -stlouise -stives -stirn -stire -stipanuk -stingle -stinespring -stinehour -stinebuck -stindt -stimple -stimler -stilwagen -stiltz -stilner -stillie -stigsell -stiern -stiens -stiehm -stiegman -stiegemeier -stieb -stidstone -sticklin -sticklen -stickford -sthole -stford -stflorant -steury -stetzenbach -stetke -sterpka -sterker -sterkenburg -sterkel -stephensen -stepan -step -stenz -stenn -stendeback -stenbeck -stenback -sten -stemmler -stelzl -steltzer -stellpflug -stellfox -stelk -stele -steinruck -steinmeiz -steinkuehler -steinkirchner -steinkellner -steinerkert -steine -steinbrink -steinbauer -steik -steighner -steiert -steich -steibel -stehno -steggeman -stefl -stefford -steffa -stefanatos -steep -steenwyk -steenhoven -steelmon -steeg -steeb -stedronsky -steczo -stecklair -stechuchak -stechlinski -steber -stebe -stearnes -stearne -stea -stdenny -stchur -stayter -stawicki -stavrositu -staudenmeier -stattelman -statires -station -stathos -stathas -stasulis -stassen -stasny -staser -staschke -starweather -stars -starnaud -starley -starkman -starken -starich -starghill -starcevic -staplins -stapelman -stanzak -stanway -stanowski -stankowitz -stankaitis -staniec -stania -stangroom -stanesic -stanert -staneart -stands -standors -standifur -standeven -standaert -stancoven -stanclift -stancey -stanbaugh -stana -stammler -stamenov -stambach -stamatopoulos -stamas -stalberger -stakoe -stakley -stakkeland -stakemann -stainbach -stagowski -stagno -stagman -stagles -stagers -staffeld -staenglen -staehler -stadther -stadt -stadnik -stadick -stachurski -stace -stabs -stabley -stable -srygley -srinvasan -squarciafico -squair -spyrakos -spyies -spycher -spurger -spulick -spudis -spuck -sprygada -spruiell -spruance -sprowls -sprouls -sprong -sprole -springe -sprewell -sprengelmeyer -sprawls -sprauve -spragley -spotorno -sporysz -sporman -sporich -spoonemore -spoleti -spohnholz -splitt -splett -splatt -spiter -spirounias -spirk -spire -spinoza -spinn -spinetti -spinello -spinar -spilis -spiliakos -spigutz -spielvogel -spicknall -spicker -sperier -speraw -spennicchia -spene -spellane -spegal -spee -specken -spearow -spearmon -spayd -spartin -spartichino -spart -sparacina -spannuth -spanner -spanicek -spanger -spane -spakes -spadard -spacht -spacagna -sozio -soyke -sowl -sowden -sowada -sovel -souvannakhily -souto -southand -sourlis -soulliere -souhrada -sou -sotos -sothen -sosbe -sorzano -sorvig -sortland -sorokata -soro -sorlie -sorhaindo -sorell -sordia -sorace -soptick -soppeland -sophy -sopczak -sooy -soop -soomaroo -soolua -sonterre -sonsteng -sonnefeld -sonnee -sonka -songy -sondrup -sondles -sondheimer -sonderman -sonderegger -somvang -somsy -somrak -somoza -somogye -somo -sommons -sommar -somji -somilleda -somerfield -somdah -somayor -solwold -solverud -soltow -soltmann -solow -solorsano -solonar -solomen -sollors -sollitto -solliday -solito -solinas -solima -solies -solien -solich -solian -solhjem -solera -soldeo -solazar -solarski -solaita -soladine -sokul -sokotowski -sokolski -sokolowich -sojo -soito -soiro -soifer -softich -sofer -soechting -sodini -sodervick -soders -sodawasser -sockey -sobrio -sobieraj -sobeski -sobery -soberanes -sobenes -sobe -sobanski -soape -snowder -snorden -snode -snetsinger -snaples -snaer -snaders -smyrski -smyntek -smykowski -smutzler -smutny -smulik -smugala -smuck -smolnicky -smolinsky -smitty -smithe -smiling -smiler -smigiel -smerdon -smeja -smedes -smeathers -smarra -smar -smallmon -smallin -smallidge -slyton -slutsky -sluski -slovinski -sloter -slonecker -slomer -slogeris -slobodnik -sloanes -slipper -slingluff -slingland -sliney -slimko -sliman -slimak -slessman -slepski -sleppy -sleiman -sleaford -slaugenhaupt -slark -slackman -slaboda -skyes -skweres -skwarek -skubik -skrzypinski -skrebes -skrabanek -skovlund -skotnicki -skone -skonczewski -skold -skoien -skoczen -skobiak -skimehorn -skillpa -skillett -skillan -skildum -skibski -skibo -skevofilakas -skepple -skarzynski -skartvedt -skar -skapura -skaflen -skaer -skabo -sjulstad -sjerven -sizar -sixt -sixsmith -siwicki -sivills -sivilay -sivie -sivick -sivay -sivalia -sival -siurek -siuda -sittre -sittner -sittman -sitterding -sitosky -sitkiewicz -sistek -sista -sisomphou -sisofo -sisley -siskin -sisavath -sirpilla -sirosky -sirolli -siroka -sirna -sirico -sirhan -siravo -sipriano -sippy -siphan -siona -siok -sinrich -sington -singharath -singewald -singerman -sinarath -simple -simper -simor -simoniello -simonetty -simonet -simokat -simoens -simmond -simmes -simitian -simich -simerson -simensky -simcock -silvestrini -silvaggio -siluis -siltman -silovich -sillitoe -silkenson -siliezar -silevinac -silence -silbiger -silao -sil -sikarskie -siglow -siglar -sifre -sifontes -sifers -sievertsen -sieverson -sieve -sietz -siert -sieradski -sier -sielaff -sieja -siedner -siedel -siebenthal -sidorowicz -sidley -sidi -sideman -sicks -sickel -sickafoose -sicinski -sibounma -sibgert -sibeto -sibel -sibal -siar -siaperas -siami -sialana -shyne -shybut -shwab -shutty -shutters -shusterman -shurr -shurak -shuptrine -shupert -shummon -shulthess -shult -shulse -shullick -shulick -shulenberger -shuffleburg -shubov -shry -shrigley -shren -shrawder -showen -shoulder -shorthair -shopbell -shoobridge -shongo -shoman -shollenbarger -shoji -shofestall -shodunke -shober -shivy -shisila -shirvanian -shirakawa -shippen -ship -shinsky -shinnick -shinkel -shingleur -shingledecker -shindel -shimon -shimaoka -shilo -shillito -shillingsford -shilkuski -shiliata -shildneck -shikuma -shike -shigeta -shigemi -shifferd -shider -shibi -shettleroe -shetterly -sherville -sherrock -sherrange -sherraden -sherles -sherief -sherbon -shepperdson -shenker -sheneman -shene -shempert -sheman -shelvy -shelsy -shelkoff -shekels -sheirich -sheingold -sheidler -shehee -shefte -sheftall -sheerer -sheer -sheakley -shbi -shawber -shatek -shasky -shary -sharplin -sharperson -sharabi -shappen -shapouri -shapleigh -shapino -shaper -shanno -shandro -shanberg -shamsi -shammah -shamir -shamily -shalwani -shalla -shaline -shalhoub -shakoor -shakin -shahinfar -shahin -shahim -shahbaz -shaffren -shaffen -shadfar -shadding -shadazz -shaben -shabel -sgueglia -sgrignoli -sgammato -seykoski -seyb -sewyerd -seweall -sewade -severi -seveney -sevadjian -settlemyre -settlemires -settino -settimo -setterland -seton -setler -setias -seti -setchell -setaro -sestoso -sessin -sesser -serville -servi -servedio -serve -serravalli -sermersheim -serfoss -serfling -serey -seres -serens -serene -sercovich -serban -seratti -seratt -serasio -serandos -seraiva -seraille -sepvlieda -sepulbeda -septelka -seppelt -seppanen -seppa -senz -senst -sensor -sensmeier -sensing -senseney -sensenbrenner -senseman -seniff -sengvilay -sengun -senethavilouk -senesenes -senderling -sender -senavanh -semsem -semonis -seminario -sember -selzler -selvester -selusi -selnes -sellin -sellards -selkey -selic -selgrade -selesnick -selakovic -seiters -seit -seisler -seil -seikaly -seidenbecker -seibt -seibers -seiavitch -segreto -segonia -seggerman -segerman -segelhorst -seferovic -sefcheck -seering -seemer -seekford -seekamp -seegar -seedorff -seedborg -seebaum -sedanos -secundo -second -seckletstewa -sechang -sebranek -sebion -sebero -sebeniecher -sebasovich -searer -seara -seanger -seajack -seaholtz -seagers -seaforth -seacrest -seacat -seaburn -sdoia -sczbecki -scurci -scullin -scuito -scudero -scucchi -scsarpisnato -scro -scrivener -scriuner -scripps -scrimsher -scrichfield -screnci -scrape -scouller -scotts -scotting -scorgie -scollan -sciullo -scites -scicutella -scialpi -sciacchitano -schy -schworm -schwizer -schwister -schwipps -schwertfeger -schwerdt -schwerd -schwenzer -schwenneker -schwendeman -schwemmer -schweitz -schwarzlose -schwart -schwantd -schwadron -schutze -schute -schusted -schurk -schumachor -schulter -schultens -schulkin -schulist -schuit -schuering -schueren -schueneman -schuemann -schuchat -schuber -schubach -schrumpf -schroot -schroen -schroedter -schreuder -schreacke -schrayter -schrawder -schrauger -schraub -schrameck -schraff -schradle -schrab -schowengerdt -schossow -schopmeyer -schopflin -schop -schomin -schomas -schomacker -scholtens -scholin -schoggen -schoessow -schoepfer -schoenmaker -schoenig -schoelman -schoellkopf -schoell -schoeben -schoderbek -schockley -schnure -schnorbus -schnopp -schnobrich -schnitz -schnickel -schnibbe -schnepf -schnelder -schneidman -schneeberger -schnackel -schmollinger -schmoak -schmittou -schmiot -schmille -schmier -schmiel -schmiedeskamp -schmidtka -schmidlin -schmertz -schmerge -schmerer -schmelmer -schmeidler -schmautz -schmauder -schmatz -schmand -schmaling -schlund -schlumaker -schlotthauer -schlotte -schlotfeldt -schlote -schlossman -schloemann -schlindwein -schlimmer -schlieter -schlichenmaye -schleppy -schlenger -schleker -schleibaum -schleh -schlecter -schlaefli -schladweiler -schlabs -schirrmacher -schiralli -schinnell -schinker -schingeck -schindewolf -schimel -schilsky -schilk -schilder -schifko -schiffmann -schierenbeck -schierbrock -schielke -schieferstein -schiefen -schickedanz -schey -scheuren -scheuers -scherschligt -scherma -scherbring -scherbel -scheno -schenfeld -schells -schellin -schellermann -scheiern -scheiderer -schegetz -scheffrahn -scheffert -schechinger -schavone -schaunt -schaumann -schauble -schaubhut -schatzle -scharmann -scharler -scharbrough -schap -schanzenbach -schantini -schange -schandel -schammel -schallig -schaffter -schaffeld -schaffel -schafersman -schaen -schachterle -schachsieck -schabbing -scelzo -scelsi -scavo -scavetta -scaturro -scatenato -scarpitto -scarpitta -scarpato -scarpati -scarp -scarlato -scargall -scarfi -scantlen -scanneu -scannapieco -scanio -scandrett -scandalios -scancarello -scamehorn -scalzi -scallorn -scallion -scalet -scaiano -scaia -scagliotti -scace -sboro -sbarra -saysongkham -saysana -sayloe -saxinger -saxfield -sawtell -sawransky -sawhill -sawatzki -sawaia -savitch -savinar -savi -saven -savas -savaria -savakis -sava -sauveur -sausser -saurey -sauredo -saunas -saulsbery -sauger -sauerhage -sauerbry -sauce -sauby -satz -sattlefield -satmary -sathiraboot -satchwell -sat -sasuille -sashington -sasengbong -sasao -sarwar -sarrell -sarraga -saroop -sarnes -sarnacki -sarlo -sarks -sarkodie -sark -sargis -sargetakis -saretto -sarette -sarensen -sarcinelli -sarcinella -sarcia -saras -saranzak -saraniti -sarani -sarafian -saraf -sarac -sarabando -saporita -sapnu -sapko -saous -sanzenbacher -santti -santrizos -santoscoy -santomauro -santolucito -santis -santio -santilukka -santaloci -santagata -santaella -sanseda -sanquenetti -sanots -sanosyan -sann -sanmarco -sanlatte -sankovich -sanke -sankary -sankaran -sanislo -sanipasi -saniger -sangren -sanghez -saneaux -sandstedt -sandry -sandovar -sandos -sandone -sandness -sandlan -sandison -sandersen -sandborg -sanchz -sanchec -sancen -sanasith -samway -samuell -sampselle -sampieri -sampair -samoyoa -samowitz -sammut -samiec -samick -samele -sambucetti -samara -samantha -samanlego -salverson -salvature -saluto -saluja -saltourides -saltmarsh -salta -salsberg -saloum -salos -saloom -sallings -sallies -sallah -salisberry -salimas -salfelder -salesses -salen -saleado -saldvir -saldi -saldeen -salceda -salazan -salaza -salay -salandy -sakshaug -sakovitch -sakkinen -sakkas -sakiestewa -sakic -sakakeeny -saison -saisa -saintfleur -saide -saicedo -sahsman -sahli -sahler -sahlberg -sahagian -saggione -sages -sagendorf -safron -safar -saetteurn -saenphimmacha -sadhu -sadhra -saden -sadee -saddat -sackos -sachleben -saches -sachar -saccucci -sacane -sablone -sablock -sablea -sabiston -sabini -sabi -sabha -sabellico -sabaj -saadd -ryun -rysavy -rysanek -rylowicz -ryll -ryken -rygiewicz -rydalch -rychlicki -rybowiak -ryal -ruzycki -ruyz -ruwet -rutley -ruthenberg -ruszala -rusteika -rusteberg -russotto -russotti -russman -russek -russe -rusley -rusich -rushworth -rushman -rushforth -ruscitti -ruscio -ruschmann -ruschel -rusak -rupertus -ruoho -runzler -runyons -runswick -runfola -rumney -rummler -rumford -rumburd -rumbold -ruman -rulnick -rujawitz -ruhstorfer -ruhmann -ruhling -ruhlin -ruggiere -ruggero -rugga -rugama -ruffolo -ruether -ruesswick -ruell -rudnitski -rudnicky -rudish -rudicil -rudes -rudeen -rubow -rubloff -rubison -rubinow -ruberte -rubenacker -rubarts -ruballos -rubal -rozgonyi -rozga -rozenberg -rozas -rozance -roytek -rowsell -rowray -rowold -rowntree -rowlins -rowling -rowback -rovelto -rovella -rovack -rouzzo -rout -roussos -rounkles -roundabush -rouisse -rougier -rouff -roudybush -roucoulet -roubekas -rotstein -rothmann -rothhaupt -rothfus -rothenburger -rothbauer -rothacher -rotering -roszales -rossnagel -rossingnol -rossing -rosselle -roskovensky -roskop -rositano -rosine -rosich -rosettie -rosentrance -rosenthall -rosenkoetter -rosenheim -rosenbarger -rosekrans -rosebure -roseboom -roscow -roscorla -rosbozom -rosavio -rosacker -ropiski -ronzoni -rons -rondell -ronde -roncskevitz -romulus -rompf -romjue -romenesko -rombult -rombardo -romaniak -romandia -romanchuk -romag -rolseth -rollind -rollend -rolfsen -rolff -rolek -rokusek -rohs -rohowetz -rohlack -rohla -rogugbakaa -roguemore -rogosky -roginson -roggero -roggensack -roggenbaum -roggeman -roever -roetzler -roettgen -roessing -roerish -roemhild -roehling -roede -roeber -rodriuez -rodrigeuz -rodnguez -rodis -rodinson -rodine -rodemoyer -rodeigues -rodea -roddick -rodar -rodamis -rodal -rockymore -rockelman -rockafellow -rocho -rochlin -rochenstire -rocasah -roblow -roblodowski -robinzine -robinsons -robinso -robinault -robilotto -robichard -robeza -robertos -roberrtson -robblee -robante -roats -roatch -roaoo -roanhorse -roal -roacho -rizas -rivord -riveroll -riverman -rivel -ritzke -ritzie -ritums -ritson -ritchlin -ritari -ristaino -rissell -rissanen -risler -riskalla -risius -rishell -risha -risewick -risden -rische -riscen -risbeck -riquelme -ripoll -rioz -riofrio -riobe -rinnert -rinkus -rininger -ringland -ringhouse -ringelspaugh -rinebold -rindler -rinderle -rimm -rillera -riise -riippi -rightnour -rightley -riggings -rigger -riffee -rifenbery -riexinger -riesland -rieske -riesinger -rieley -riekert -rief -riedlinger -ridgnal -ridgle -ridgill -ridep -ridel -riddleberger -ridders -riculfy -rickford -richters -richmann -richlin -richiusa -richerds -richan -ricenberg -ricaud -ricardi -ribsamen -ribron -ribiero -ribero -ribbink -rhump -rhum -rhorer -rhoe -rhoan -rhoad -rhinerson -rhen -reznicek -reyner -reyne -reynaldo -reyelts -rewerts -rewakowski -revira -revils -revering -revera -revelli -revay -reuteler -reust -reuschel -reudink -retzloff -rethmeier -retek -retchless -retamar -ressel -respicio -respes -respers -resos -resetar -resenz -resecker -res -rerucha -requarth -reprogle -repoff -replin -repetowski -repasky -reola -renzoni -renzo -renyer -rentoulis -rentie -renouf -renosky -renigar -renert -rendler -rend -remondet -remis -remian -remele -remeder -rellama -rekus -rekemeyer -reives -reitter -reistetter -reinsvold -reinsfelder -reinowski -reinier -reing -reinen -reineccius -reindeau -reinbolt -reimnitz -reimmer -reihl -reihing -reigleman -reighley -reidherd -reidhaar -reichow -reibman -reial -rehse -rehmert -rehlander -reher -rehbock -regulski -regueira -regn -reginaldo -regelman -regar -refsal -refazo -reemer -reefer -redlon -redkey -redinbo -rediker -redig -redemer -redcross -redal -recuparo -recksiek -reckers -recidivi -rechichi -reburn -rebold -rebik -rebar -reavish -reaver -reavely -reash -reaollano -reagey -readinger -readdy -razon -rayyan -rayshell -rayow -rayome -rayhel -raychard -rayam -rawi -rawhouser -rawat -ravizee -raviele -ravago -rautenstrauch -raulino -raul -rauhecker -rauhe -raught -rauco -raucci -ratzloff -rattu -rattell -rattanasinh -ratsep -ratkovich -rathrock -rathel -rathai -ratana -rasual -rastetter -rastegar -rasset -raspotnik -raspa -rasool -rasole -rasley -raskey -rasico -rasavong -ras -rarogal -rarden -raptis -rappl -rapkowicz -rapisura -rapanot -rapalo -rapacki -ranweiler -ransonet -ransler -ranni -ranmar -ranks -ranildi -randgaard -randahl -ranch -ranaudo -ranah -ramsy -ramsour -ramshur -ramsby -ramrirez -rampy -rampulla -rampadarat -rampa -ramonez -ramler -ramlall -ramjhon -ramjan -ramirel -rametta -ramelli -ramelize -ramelb -ramdeo -ramcharran -ramaudar -ramal -ramagano -ramach -rakyta -rakus -rakestrow -rakers -rajk -rajas -rajaphoumy -raisley -raisler -raisin -rais -railes -raike -raigosa -rahoche -rahmes -rahib -rahaman -ragus -ragula -raguay -raglow -rafus -rafey -rafel -rafala -raethke -raemer -raef -raeder -radziwon -radwick -radwanski -radoslovich -radon -radmall -radlinski -radie -raderstorf -radej -raddle -raczak -racko -raciti -racioppo -racer -rabuse -rabsatt -rabjohn -rabito -rabey -rabeneck -rabehl -rabeck -rabbe -rabal -quivoz -quiver -quituqua -quitugua -quittner -quitter -quitero -quitedo -quirke -quiram -quiralte -quintard -quintania -quinnan -quinlivan -quilter -quillman -quillan -quilindrino -quiel -quidas -quicho -quibodeaux -quezergue -quezad -quettant -queros -querio -quercioli -quenzel -quencer -queller -quebral -quatrevingt -quashnock -quasdorf -quartuccio -quartiero -quartieri -quartaro -quarrell -quanstrum -quammen -qualheim -quagliato -quadnau -qua -qasba -qare -qadeer -pywell -pysher -pyros -pyfrom -pyfer -pyette -pychardo -puzon -putzer -putton -putcha -puskarich -push -purkhiser -purfeerst -puraty -puotinen -puntillo -punihaole -pundsack -puna -pulwer -pullus -pullara -puita -puhrman -puhr -puhl -puffenberger -puerto -puent -pudenz -pucket -pucker -public -ptaschinski -psuty -psuik -psilovikos -przybyl -przeniczny -prye -prybylski -prukop -pruessner -provosty -provorse -provins -provino -provenzo -provent -protich -protas -pross -prosienski -prosenick -proscia -prosak -propheter -promisco -promer -prokup -prokos -progl -profeta -profera -profancik -procsal -prociuk -prochak -proch -procaccino -prizio -privado -pritzker -pritzel -pritcher -pritchell -prisoc -priolean -prinn -prindiville -princevalle -primos -prima -prigg -priego -priegnitz -prible -pribish -pribbenow -prevot -prevet -pretzer -pretzel -prety -presume -prestley -prestipino -presnal -preslipsky -presiado -prendes -prejsnar -preist -preissner -preisner -preheim -prefontaine -predom -precissi -prechtel -precht -prause -pratten -prately -prante -prang -pramuk -praley -prakoth -prach -pozar -poynton -powskey -powsey -powlen -powells -pourvase -pourner -pourier -pourchot -pouncil -poulisse -poulet -pouk -pouche -potulski -pottkotter -pottichen -potteiger -potsander -pothoven -potanovic -potaczala -posusta -posto -postles -postiglione -postemski -possinger -possick -possehl -pospicil -poskitt -poska -posis -portnoff -portello -porris -porres -porep -porell -porat -popularis -poppo -popadiuk -pooyouma -pooschke -poort -poolheco -ponsler -poniatowski -pomykala -pompi -pomilla -pomiecko -pomfret -polzer -polvino -poltrock -polton -polter -polski -poloskey -pollot -pollnow -polivick -polisoto -polintan -poliks -polikoff -policicchio -policastri -policare -poletski -polee -poledore -polacco -pokrzywa -pokallas -pointe -poinelli -pohorilla -pohlson -pogozelski -pogorelc -poellinetz -podwoski -podeszwa -pod -pocklington -pociengel -pochatko -pocekay -pocai -poague -pniewski -plutt -plumbar -pluma -plotzker -plotrowski -ploskunak -ploennigs -plimpton -plienis -plewinski -plett -pleskac -pleshe -plesant -pleppo -plegge -playl -plavnik -plateroti -plateros -plastow -plassmeyer -plassman -planer -plance -planagan -plan -plamondin -plainy -plackett -placino -plachecki -placeres -plaas -pjetrovic -pizzulo -pizzini -pizzico -pivec -pitpitan -pitorak -pitocco -pitka -pitch -pitcairn -pitarresi -piszczek -pistelli -piskel -pisicchio -piserchio -piscitello -pirrotta -pirrello -pirre -pirozhkov -pirollo -pirieda -pipper -pipia -pioske -piombino -pinzino -pintello -pinsonneault -pinsoneault -pinn -pinkenburg -pinke -pindell -pinchock -pince -pimple -pim -piluso -pillon -pillarella -pillado -pilkey -pilette -pilchowski -piirto -pihlaja -piggie -piganelli -piety -pietrowicz -pietrok -pietrini -piesco -piertraccini -piersiak -pierrot -pierdon -pierannunzio -pientka -pielow -piela -piek -piegaro -piefer -piecuch -pidro -picotte -pickman -picketts -picketpin -pickerell -pickenpaugh -pichoff -picher -piccuillo -piccirilli -piccinone -piccinich -piccillo -picchetti -piatz -piao -piacitelli -piacenza -phyfe -phurrough -phuong -phuma -phuaphes -phramany -phoubandith -phommajack -phom -pho -phimsoutham -phimpradapsy -philmore -phillies -philliber -philio -phildor -philabaum -phi -phetsanghane -phetphongsy -phelp -phaymany -pharmer -pharao -phanthavongsa -pfrommer -pfoutz -pforr -pfnister -pflugradt -pflugrad -pfleuger -pfingsten -pfifer -pfeiffenberge -pfefferkorn -pfanstiel -pfander -pfalmer -pfaffinger -pezley -pezina -pezez -peyser -pevahouse -petula -petton -pettipas -pettijohn -pettigrove -pettay -petrouits -petropulos -petronzio -petronella -petrilli -petriccione -petric -petrecca -petralia -petr -petka -petigny -petesic -petersik -petek -petanick -petalcu -peszynski -pessolano -pesses -pesicka -peschong -pesarchick -pesantes -perza -pertea -persyn -persten -persch -perrota -perrot -perriott -perring -perrilloux -perrette -perrelli -perrell -pernod -pernin -perniciaro -pernesky -permann -perlson -perkiss -perina -perie -perencevich -peredz -percey -peraha -peplau -pepka -pepion -penzien -penzel -penya -penwarden -penticoff -pensky -pensick -pensa -pennelle -penird -penhallurick -penha -pengra -penderel -pendegraft -pencak -pemelton -peluse -pelnar -pellom -pellitteri -pelligrino -pellietier -pellicone -pelletiu -pellet -pellam -peleg -pekas -pekara -pehowich -peha -pegeron -peffly -pefferkorn -peetoom -peerzada -peecha -peduzzi -pedralba -pedez -pedeare -pecinousky -pechaira -pecatoste -pecarina -pecararo -pearyer -peacy -peachay -payseur -payor -payna -payant -payamps -pax -pawluch -pavliska -pavis -pavelski -pavella -pav -pauza -pausch -paulshock -paulseth -paulmino -paulic -paulauskis -paulauskas -paulas -pauker -paugsch -patzner -patzke -patwell -patuel -pattyre -pattinson -pattengale -patriquin -patrin -patrias -patria -patolot -patik -paterniti -patellis -patches -patcher -patanella -pataki -patajo -pasvizaca -pastures -pasto -pastian -passerino -passer -paskow -pasket -pasinski -pasho -pashea -pashal -pascorell -pascoal -pascanik -pascall -pasaya -pasana -paruta -party -partman -partipilo -partenope -partelow -part -parsygnat -parsh -parsells -parrotta -parron -parrington -parrin -parriera -parreno -parquette -parpan -parone -parnin -parms -parmantier -parkos -parkhouse -parizek -paripovich -parinas -parihar -parhan -pargman -pardoe -parayuelos -paravano -paratore -parara -papranec -pappajohn -paponetti -papitto -papike -papiernik -papciak -papantonio -papanikolas -papania -papan -papale -pap -paongo -paola -panzica -panzella -panyko -panuccio -pantosa -pantoliano -pantelakis -panrell -panowicz -panora -pankiw -pankake -panitz -panila -panias -paneque -panela -paneczko -pandola -panahon -panah -panagoulias -panagis -paluszynski -paluk -paluck -palu -paloukos -palombit -palmios -palley -pallant -pallansch -pallafor -palisbo -palchetti -palazola -palas -palacois -pakonen -pajerski -paillant -pahk -pagni -pagnello -paglio -paga -pafel -padol -padgette -padeken -paddio -paddilla -paddack -padavich -pacquin -packineau -pacior -pacholec -pachlin -pachla -pach -pacenta -pacek -pacapac -pacana -paben -paarmann -paalan -ozer -ozane -ozaine -ozaeta -oz -oyston -oyellette -oxton -oxnam -oxenrider -oxborough -owers -ow -ovit -ovesen -overstrom -overshiner -overmire -overley -overkamp -overdick -overbough -ovdenk -ovadilla -ouye -outzen -ousdahl -oury -ourth -ounsy -ouellete -oudker -otutaha -otuafi -ottrix -ottogary -ottino -ottilige -ottenwess -otiz -othoudt -otex -otega -osvaldo -ostwald -ostrzyeki -ostrum -ostroot -osterhaut -ostendorff -ostenberg -ostasiewicz -osswald -ossola -osowicz -osorno -osollo -osol -osnoe -osmus -osmanski -osias -oshman -osentowski -osden -osche -osbeck -orttenburger -ortolf -orto -ortga -orrego -orpin -orozeo -orochena -orobona -oroark -ornelos -ornedo -orne -orm -orlove -orlosky -orlof -orlinsky -orlinski -orlin -orizabal -oriti -orion -origer -orie -orhenkowski -orford -orff -oreskovich -orellama -oreily -orehek -oreb -ordazzo -ordahl -orcholski -orce -oras -opula -opstein -oppliger -oppegard -opichka -opher -opet -opalicki -opaka -ooton -onyeanus -onwunli -onukogu -onisick -onifade -oneale -ondik -ondic -ondersma -omullan -omoto -omo -omlin -omli -omersa -olverson -olveira -olvedo -olowe -olona -olnes -olloqui -olliver -ollhoff -ollendick -olkowski -olivid -olivers -oliveres -olivarra -olinghouse -oligee -olgvin -olfers -olewinski -olewine -oleveda -oleskiewicz -olejarski -olecki -olde -olckhart -olbrish -olay -olarte -okwuona -okuley -okula -okorududu -okoren -okoli -okihara -okerson -oken -ojard -ojanen -oines -oilvares -oieda -ohrnstein -ohren -ohmit -ohmie -ohlmacher -ohlenbusch -ohlen -ohaver -oharroll -ogwynn -ogunyemi -ogram -ogilive -ogen -ogbonnaya -ogasawara -ogans -ogami -oflahrity -offret -oen -oeler -oehrlein -oehrle -oehmke -oehmig -oeftger -oeder -odougherty -odorizzi -odomes -odin -odien -odhner -odess -odenheimer -ocus -ochsenbein -ochinang -ochiai -ochalek -occhino -ocacio -obnegon -oblow -oblinger -obiano -obery -oberson -oberpriller -obermuller -obermoeller -oberholzer -oberhaus -oberdier -oberdick -oaxaca -oar -nysether -nykiel -nygaro -nycum -nyahay -nwankwo -nwakanma -nwadiora -nwabeke -nuzenski -nusz -nunnelee -nunmaker -nuniz -nunery -nulisch -nuetzman -nuessle -nuesca -nuckoles -nuccitelli -nucci -nozum -nozick -nowzari -nowosadko -nowley -nowitzke -novitsky -novitski -novitske -novikoff -novida -novetsky -novelly -novellino -novara -nouth -noullet -noud -notwick -notowitz -notley -notis -nothem -nothacker -nostro -noseff -norwell -northwood -northcut -norstrud -norseth -norse -norsaganay -norko -norkaitis -noriego -norg -noreiga -nordwall -nordsiek -nordlinger -nordick -nordenstrom -norbo -noorigian -noordam -nonu -nones -noneman -nondorf -noltensmeier -nollette -nolfe -nolazco -nokken -noke -noiseux -noia -nohe -nogueda -noguchi -nogoda -noggles -noggler -noftsier -noey -noerenberg -noegel -nodurft -nodarse -nockai -nobregas -nobis -nkuku -nkomo -njango -niziol -nixion -nixa -nivar -nivala -nitzschke -nitzsche -nitzkowski -nitcher -niswender -nisley -nishimori -nirmaier -nipps -nipple -ninke -nini -ninh -nimrod -nimox -nimick -nila -niksich -nikodem -nikocevic -nikaido -nightlinger -niggemann -nietfeldt -niess -niesent -niesborella -nierer -niemitzio -niemiel -niemants -niedzwiedzki -niedzwiedz -niedens -niedbalec -niebaum -nicoson -nicoli -nicolaus -nickoley -nicklos -nicklien -nickenberry -nickas -nicholason -nichell -nichalson -nicewonger -niau -nian -nham -nguyan -ngin -nezich -nezat -neyaci -newstead -newness -newhook -newes -newens -newbell -newball -nevinger -nevilles -nevil -never -nevarrez -neuse -neundorfer -neuenswander -neudeck -neubig -neubaum -neubacher -nettleingham -netrosio -netolicky -netley -nesti -nessmith -neslusan -nesline -nesland -nesin -nerlich -nepa -neonakis -nenni -nemzin -nemunaitis -nemets -nemard -nemani -nelmes -nellums -nellenback -nelisse -nejaime -neja -neither -neiswoger -neiper -neild -neidiger -nehrt -nehme -neglio -negbenebor -needy -nedman -nedina -nederostek -nedelman -neddo -nedbalek -nebred -neblock -nebesnik -nebarez -neall -nealious -nealer -neahr -ncneal -nazzise -nazzal -nazir -nazelrod -naz -naysmith -nayman -nawwar -nawda -naveed -navarrate -navaretta -navappo -navanjo -natwick -nattiah -natsis -nati -nathans -natewa -natani -natalello -nasti -nassie -nasr -nasers -nasalroad -narr -nargi -nardy -napieralski -nanthanong -nantanapibul -nanna -nanik -nanasy -nanas -namur -namihira -namaka -nalty -nalbach -naki -nakatsu -nakamori -najarian -nailer -naifeh -naidu -nahrwold -nahl -nahari -nagode -nagindas -nagengast -nagelhout -nagase -naftzinger -naftali -naeher -nadoff -naderi -nadelbach -naddeo -nacy -nacisse -nacion -nachtrieb -nachmias -nachazel -nacar -naborg -nabity -nabhan -mytych -myslinski -myslin -mysak -myrtle -myrman -myrck -myntti -mynnerlyn -mylott -myking -myes -mycroft -mway -muzyka -muzacz -muyskens -muysenberg -mutone -mutner -mutherspaw -muthart -muthana -mutart -musty -muston -mussmann -musshorn -musse -muss -musquiz -musolf -muskthel -muska -musinski -musigdilok -muschick -muschett -musch -murwin -murty -mursko -murnock -mure -murasso -muraro -muran -murallies -muraco -munyer -munshi -munning -munl -munir -muninger -munhall -muney -munet -mundziak -mundschau -mundhenk -munderville -muncil -munchmeyer -munaz -muna -mulzer -mulvahill -mulryan -mulroney -mulready -mulneix -mullowney -mullner -mullison -mullany -mulich -mula -muhtaseb -muhlenkamp -muhlbach -muggley -mueske -muenkel -muell -muehleisen -mudrick -muddaththir -muczynski -mucklow -muckley -muckelvaney -muchortow -mthimunye -mrazik -mozzone -mozo -mozley -mozie -mozgala -mozelak -moyerman -mowder -mowan -movlin -mouzas -mourino -moulhem -mottillo -motteshard -mottershead -motamed -mosz -mostoller -mostiller -mostero -mostella -mosson -mossing -mossien -mossel -mosmeyer -moskau -moshos -mosho -moscovic -moscaritolo -moscariello -moscardelli -morosow -morono -morneault -morna -morn -morkve -moriwaki -morise -moriera -moricle -moribayed -morgret -morgner -morgas -morgans -morgandi -morfee -morelen -moreida -moreci -moreb -mordino -mordini -mordehay -morda -mootz -mootispaw -moosbrugger -moosa -moonsommy -moonshower -moodispaugh -mooberry -monz -montuoro -montrella -montijano -montgonery -montelle -montell -montcalm -montalgo -monske -monrroy -monrow -monnot -moniak -mongue -mongolo -mongiovi -monfore -mondoux -mondone -mondell -mondaine -moncrieffe -moncrieff -moncier -monasterio -monarque -monaham -monagle -momper -momeni -moltrie -molone -molly -mollohan -molliere -mollere -molleker -mollberg -molinini -moling -molineaux -molett -moldan -molavi -molaison -mokriski -mokiao -mojzisik -mojardin -moisey -mohorovich -mohinani -mohaupt -mohabeer -mogollon -moghadam -mofle -mofford -moevao -moelter -moede -modrak -moddejonge -mockler -mocha -mobilio -mlenar -mizzi -mizner -mizee -miyasaka -miyao -mixdorf -mitter -mittchell -mittag -mithani -mitchler -misove -mismit -misluk -miskovich -mishou -miserendino -misek -miscoe -mirmow -mirman -mirkovich -mirao -miran -miquelon -minucci -mintreas -mintos -mintor -minotti -minock -minnatee -miniuk -minissale -minihan -minicozzi -mini -minford -minette -minery -minehan -mineconzo -mindingall -minchella -minarcik -minacci -mimaki -milz -milwee -miltz -milsaps -milosevich -millstead -millott -millora -millian -millhiser -millerr -millbrand -millbern -millberg -milkent -milius -milite -milelr -mildred -milderberger -mildenstein -milbrodt -milare -mikulec -mikovec -mikota -mikolon -mikhaiel -mikez -miker -mikasa -mihovk -mihor -mihaliak -mihalco -mihalak -miggo -miessler -miernik -miernicki -miene -mieloszyk -mielkie -mielczarek -mielcarz -miehe -midget -middough -middents -microni -mickulskis -micks -mickonis -mickenheim -michello -michealson -michavd -michalczik -mezzinni -mezzanotte -meysembourg -meyerowitz -meyerott -meyerman -meyerhoefer -mevis -mevers -meuler -meulemans -meua -metzga -metzel -mettlen -mettille -metott -metos -metil -metia -metherell -metevelis -metenosky -meteer -metchikoff -mestler -mestanza -messman -messey -messervy -messel -messan -mesoloras -mesmer -mesiona -mesias -meshew -meshanko -meservy -mesecar -mesdaq -merzig -mervine -mertine -merrills -merren -merlette -merles -merlain -merl -merksamer -merithew -merisier -mering -merilos -merical -merhar -merette -mereno -merdian -merceir -mercando -merante -merana -merales -menucci -mentkowski -mentgen -menso -mensen -menkin -menjes -menjares -menitz -menietto -menier -meneus -menefield -menees -mendrin -mendrala -mendler -mendiaz -mendesa -mencke -menchu -menches -menas -mems -memo -memmo -meltzner -melter -melstrom -melsheimer -melser -melodia -mellos -mellis -melliere -mellie -mellecker -mellage -mellady -melikyan -melford -meley -melencamp -meleen -melear -melchert -melaun -melaro -melady -mekonis -meisenburg -meireles -meinsen -meinershagen -meil -meihofer -mehrotra -mehlhaff -mehis -mehelich -mehdizadeh -mehdi -meharry -mehalko -megraw -megown -mego -megill -megia -meggison -meggett -meggerson -meetze -meeroff -meemken -meehleder -meeds -medure -medosch -medora -mednis -medling -medland -medious -medino -medin -medill -medieros -medi -medhus -medearis -medanich -medalion -meckel -meccia -mecardo -measheaw -measeck -mearing -meara -meakin -mcwilson -mcward -mcwalters -mcwade -mcvoy -mctush -mctiernan -mctarnaghan -mcswiggan -mcstay -mcritchie -mcrill -mcquiddy -mcqueeny -mcpharlane -mcphan -mcpartlin -mcnutty -mcnuh -mcnicoll -mcnicol -mcnevin -mcnespey -mcneme -mcnellie -mcnayr -mcmina -mcmenamy -mcmanigal -mcluckie -mclilly -mcleskey -mclearan -mclauchlen -mclatchy -mclaen -mckray -mckouen -mckoon -mckisson -mckinna -mckines -mckimmy -mckimley -mckewen -mckerrow -mckenzy -mckentie -mckemie -mckaskle -mckanic -mcintyde -mcinroy -mcinnish -mcilwaine -mciltrot -mchalffey -mcgurren -mcgurr -mcgunnis -mcgunnigle -mcgunagle -mcguinnes -mcguin -mcgrotha -mcgrogan -mcgraph -mcgoon -mcglothern -mcgloster -mcglohon -mcglockton -mcglawn -mcginnity -mcginister -mcgilberry -mcgiboney -mcghin -mcghaney -mcgeeney -mcgeady -mcgartland -mcgarraugh -mcgaffey -mcgafferty -mcgaffee -mcfeeley -mcfan -mceneny -mcelwine -mcelreavy -mcelpraug -mcelmeel -mceirath -mceady -mcdunn -mcdonnall -mcdewitt -mcdermett -mcdeavitt -mcdearmont -mccurine -mccunn -mccumbers -mccumbee -mccullors -mccullon -mccullogh -mccullock -mccuan -mccrate -mccra -mccoulskey -mccornack -mccormik -mccorkindale -mccorison -mcconnal -mccomack -mccole -mccoil -mccoard -mcclurken -mcclodden -mcclod -mcclimens -mccleveland -mcclenningham -mcclellon -mcclaugherty -mcclatcher -mcclarty -mcclamma -mcclaim -mcchain -mccelland -mccastle -mccarvill -mccarther -mccarr -mccarns -mccarn -mccard -mccandrew -mccandliss -mccalvin -mccalpin -mccalment -mccallun -mccallough -mccahan -mccaffree -mcbratney -mcaveney -mcausland -mcauly -mcarthun -mcanaw -mcall -mbamalu -mazzera -mazze -mazzawi -mazzaferro -mazzacano -mazuo -mazion -mazey -maywood -mayshack -mayrose -mayou -mayorca -mayoka -maynerich -maylone -mayhood -mayeshiba -maydew -maxi -maxell -mawhinney -mavropoulos -mavle -mavai -mautte -mauson -mausey -mauseth -mausbach -maurus -maurizio -maura -maupredi -maung -maultasch -mauleon -maud -matyi -matuszak -matushevsky -matusek -matuck -mattys -mattsey -mattione -mattias -matteis -matsu -matsoukas -matrey -matot -matlin -matkowsky -matise -mathwich -mathus -mathony -mathery -matherson -mathen -maten -matelich -matejek -matczak -matchen -matarrita -matakonis -mataka -matacale -masuyama -masure -masupha -masudi -masturzo -mastrocola -mastriano -mastrianni -mastrianna -mastrelli -massicotte -massetti -massella -massei -massee -massaquoi -masood -masom -maslowsky -masloski -maslonka -maski -maskaly -masiejczyk -masgalas -masero -masenten -masciantonio -masaya -masaracchia -marzocchi -marzili -marzigliano -marye -marusiak -marullo -marturano -martos -martorello -martineze -martillo -martignago -martiarena -marsters -marshalek -marsell -marsek -marseglia -marriot -marrion -marrington -marrietta -marrello -marreel -marrable -marquina -marque -marozzi -marovic -marotti -marose -marnett -marmolejos -markt -markson -marklund -markewich -marinoni -marinko -marinas -maril -mariello -marguardt -margreiter -margraf -margel -margaryan -margarita -margan -marevka -maresco -marero -marentez -maree -mardini -marcotrigiano -marcoguisepp -marcks -marcinka -marchizano -marchitto -marchiony -marchionese -marchesseault -marcheski -marchesano -marchall -marceaux -marbray -maratre -maratos -marashi -marasciulo -maras -marantz -marallo -maragni -maragh -marabella -maquis -maontesano -maobi -manzie -manzay -manvelito -manvel -manuell -mantik -mantele -mantegna -mansbridge -mansanares -manora -manolakis -manokey -mannine -mannheimer -mannebach -mannchen -manlito -mankoski -manivong -manheim -mangubat -manfra -manemann -manecke -mandry -mandler -mandi -mandap -mandahl -mancos -manciel -mancherian -manchel -manca -manby -manatt -manaker -mamone -mammano -malvern -malton -malsch -malovich -malouff -malory -maloff -malocha -malmanger -mallinger -mallinak -mallegni -mallat -malkoski -malinky -malinak -malichi -malgieri -maleszka -males -maleonado -malenke -malekan -malehorn -maleck -malcome -malay -malawy -malarkey -malanado -malama -malabey -makua -makhija -makel -makarem -majorga -majocka -majica -majic -majeau -maizes -mairot -maione -mainz -mainland -mainetti -mainero -maimone -maifeld -maiers -maiello -maidonado -maicus -mahung -mahula -mahrenholz -mahran -mahomly -mahin -mahe -mahall -mahal -magsby -magsayo -magrone -magraw -magrann -magpali -magouliotis -magorina -magobet -magnini -magnifico -magnie -magnett -maglioli -maggit -magg -magette -magdefrau -magdalena -magaziner -magathan -magalski -magaldi -magadan -mafua -maeno -maenaga -maedke -madziar -madre -madine -madin -madhavan -madge -madeja -maddoy -maddison -maddin -maddern -mad -macvicar -macurdy -macreno -macpartland -macoreno -macola -macnutt -macnevin -macmullan -maclain -mackstutis -macknair -macklem -mackillop -mackenthun -mackechnie -mackaman -macione -maciolek -maciarello -machover -machle -machi -machel -machak -macduffee -maccutcheon -macculloch -maccord -macconaghy -maccoll -macclellan -macclairty -maccini -macchiarella -maccheyne -maccarter -maccarino -maccarini -macandog -macanas -macalma -macabeo -maasen -maarx -lytell -lyson -lysher -lyngholm -lynchj -lynah -lyme -lyken -lyew -lydecker -lybert -lyberger -lybecker -lyau -lweis -luzi -luzell -luvianos -luvera -lutze -lutkus -luten -lusty -lustberg -lurye -lury -lurtz -luquette -lupiani -lupacchino -lunter -lunstrum -lungwitz -lungsford -lunemann -lunderman -lunch -luminati -lumbley -lumba -lumadue -lulas -lukow -lukianov -lukesh -lukander -luka -luing -luikart -lugabihl -lufborough -luette -luescher -lueschen -luersen -luensmann -luening -lueker -luedecke -lueckenbach -luebbering -ludovico -ludera -ludeker -ludecke -luczki -luco -luckinbill -lucis -lucik -lucie -lucic -luchterhand -luccous -lucash -luberger -lubbert -lubben -lubawy -lubahn -luangxay -luangrath -luangamath -luague -lozey -loyborg -loyack -loxton -loxtercamp -lownsbery -lowler -lowcks -lowa -lovstad -lovisone -lovfald -lovetinsky -lovet -lovero -loverdi -lovellette -loveberry -louwagie -lournes -louria -lourentzos -lourdes -louka -louil -loudermelt -louchen -loubier -lotto -lotridge -lothringer -lothridge -lota -lot -loszynski -lossius -losneck -loseth -losavio -losardo -losano -losado -losacco -losa -lorr -loron -lorincz -loria -loretz -lorentine -lordi -loraine -lopze -lopiccalo -lopey -loperfido -lope -lopata -lopas -loparco -loofbourrow -longwith -longhi -longenberger -longbine -longaker -longabaugh -lomonte -lomino -lominack -lomen -lombel -lombardino -lomago -loma -lokan -loiacona -lohry -lohrke -lohre -logoleo -loggens -logarbo -lofwall -lofty -lofts -lofthus -lofte -lofstrom -loforte -lofman -lofing -lofguist -loffier -loffelbein -loerwald -loeppky -loehrer -loehner -loecken -lockshaw -locknane -lockington -lockery -lockemer -lochrico -lobregat -lobley -lobello -lobell -lobalbo -lobach -llaneza -llanet -llams -livley -livinton -living -liversedge -livernois -livermon -liverance -liveoak -livecchi -livasy -liukkonen -litzenberger -litvak -littfin -litmanowicz -litchard -listi -listen -lisker -lisitano -lisena -lisbey -lipsie -lips -lippoldt -lippitt -lipper -lipoma -lipkovitch -lipira -lipan -linzan -linza -linsin -linsenmayer -linsdau -linnert -linman -linkon -lingner -lingley -lingerfelter -lingbeek -linero -lindorf -lindmeyer -lindinha -linderleaf -lindau -lindabury -linburg -linak -limmel -limle -limbert -limardi -lilyblade -lillehaug -likar -liiv -ligonis -ligler -lighthart -ligget -liftin -lifschitz -liewald -lievsay -lievens -lietzow -lierz -liegler -liedberg -lied -liebrecht -liebherr -lieberg -liebenthal -liebenow -liebeck -lidstone -lidie -lidge -lidder -licursi -licklider -lickfelt -lichota -lichenstein -liceaga -liccketto -libertini -libberton -leyton -leyh -leydecker -leyda -lexer -lewi -lewars -levreau -levra -levielle -levian -leveto -leversee -levers -leverone -leverance -levendoski -levee -levatino -levans -levandofsky -leuze -leutwiler -leuthe -leuhring -leuga -leuckel -leuasseur -lettsome -lettiere -letscher -letender -letchaw -leta -lestrange -lestourgeon -lestor -leston -lessner -lessmann -lessly -lespedes -leso -lesneski -leskovar -leskovac -lese -lesco -lesches -lesa -lerra -lerper -lerow -lero -lermon -lepretre -lepre -leppink -lepke -lepez -lepetich -leopardi -leonpacher -leonick -leonberger -leomiti -leny -lenski -lenorud -lenort -lennis -lennart -lennan -lenling -lenke -lenigan -lenhoff -lenharr -leners -lendt -lendor -lendo -lenczyk -lench -lenberg -lemoyne -lemmonds -lemmings -lemish -lemear -lembcke -lemansky -lemans -lellig -lekey -lekberg -lekan -lek -lejman -leitzinger -leithiser -leiper -leinwand -leimkuhler -leimberger -leilich -leigland -leichtenberge -leiberton -leho -lehning -lehneis -lehmer -lehenbauer -lehberger -legrotte -legro -legra -legat -legall -lefurgy -leflores -leffers -leffelman -lefeld -lefaver -leetham -leesman -leeker -leehan -leeber -ledsinger -ledermann -ledenbach -ledee -led -lecznar -leckband -lechleidner -lechelt -lecato -lecaros -lecain -lebroke -lebold -leblane -lebitski -lebish -leberte -lebedeff -lebby -lebaugh -lebarge -leavigne -leaven -leasor -leasher -leash -leanza -leanen -leaird -leahman -leadford -lazusky -lazurek -lazott -lazio -lazier -lazich -lazewski -lazares -layva -layell -laycox -lawsky -lawrentz -lawis -lawford -lawcewicz -lawbaugh -lawary -lawal -lavongsar -lavgle -lavezzo -lavelli -lave -lavani -lavander -lavagnino -lavadera -lautieri -lautaret -lausell -lauschus -laurole -lauretta -laureno -laureles -laurance -launiere -laundree -lauigne -laughon -laugen -laudeman -laudadio -lauckner -lauchaire -lauby -laubersheimer -latus -latourrette -latos -laton -lathrum -lather -lathe -latendresse -late -latassa -latam -lat -lastella -lassetter -laskosky -laskoskie -lasin -lasik -lashlee -lashier -laselle -laschinger -lascaro -lasane -lasagna -lasage -larusch -larrosa -larriviere -larralde -larr -larowe -larousse -larotta -laroia -laroe -larmett -larman -larkan -largena -laregina -lardone -larcom -larche -larbie -larbi -larason -laranjo -laragy -laraby -larabell -larabel -lapuerta -lappinga -lappi -laport -lapinta -lapila -laperuta -lapere -laper -lapek -lapari -lapalme -laorange -lanze -lanzarotta -lantry -lantgen -lantelme -lanteigne -lansey -lansberg -lannier -lannen -lanna -lankster -lanie -langrum -langness -langmo -langlitz -langi -langholdt -langhans -langgood -langanke -lanfor -lanen -laneaux -landu -landruth -landrie -landreville -landres -landquist -landolf -landmark -landini -landevos -landenberger -landan -lancz -lamudio -lampsas -lampl -lampinen -lamphiear -lampel -lamoree -lamoreau -lamoore -lamontagna -lammy -lammel -lamison -laming -lamie -lamia -lameda -lambuth -lambertus -lambermont -lamartina -lamango -lamaack -lalinde -lalich -lale -lakowski -lakhan -lajoye -lajoy -laios -lahne -laham -laguire -lagrenade -lagore -lagoo -lagonia -lagoni -laglie -laggan -lagesse -lagerstedt -lagergren -lagatta -lagard -lagant -lagamba -lagadinos -lafuze -lafrate -laforey -lafoon -lafontain -laflam -laffer -lafevre -lafemina -lafantano -laface -laessig -laehn -ladt -ladouce -ladonne -lado -ladika -ladick -ladebauche -lacz -lacusky -lacovara -lackett -lackage -lachino -lachiatto -lacharite -lacerenza -lacek -lacau -lacatena -lacaille -labovitch -labounta -labombar -laboissonnier -labo -labitan -labier -labeots -labarriere -labaro -labarbara -laatsch -laasaga -laake -kyseth -kypuros -kyper -kyner -kwilosz -kvzian -kvoeschen -kveton -kvek -kveen -kvaternik -kuziel -kuypers -kuykendoll -kuwana -kuwada -kutzer -kuty -kutlu -kuti -kutchie -kuszynski -kussmaul -kussel -kusnic -kusner -kusky -kushaney -kurzinski -kurtti -kurshuk -kurr -kurokawa -kurns -kuretich -kurasz -kurant -kura -kur -kupihea -kupferberg -kupersmith -kupchinsky -kunter -kunkleman -kuniyoshi -kunimitsu -kunich -kundanani -kunau -kummerow -kumlander -kumfer -kuman -kumalaa -kum -kulseth -kulbeth -kulbacki -kulback -kukura -kukler -kuklenski -kukauskas -kukahiko -kujat -kuiz -kuitu -kuick -kuhry -kuhlenschmidt -kuffa -kuepfer -kuehnhold -kuechler -kudro -kudrle -kuczma -kuckens -kuciemba -kuchinski -kuchem -kubley -kubler -kubesh -kubeck -kubasch -kub -kuanoni -krzewinski -krzesinski -krzan -kryston -krystek -krynicki -krylo -kruzel -kruyt -kruszewski -krusor -kruskie -krushansky -krush -kruppenbacher -krupinsky -krumroy -krumbein -krumbach -krukiel -kruizenga -kruis -kruiboesch -kruebbe -krucke -krotine -krostag -kropff -kropfelder -kroninger -kronau -krome -krolick -krokus -krog -krofta -krofft -kroesing -krochmal -krobath -krnach -krivanec -kristofferson -kristof -kristan -krissie -kriskovich -kriske -krishun -krishnamurthy -krishman -krinov -kriek -kriegshauser -krewer -kreutzbender -kreusch -kretzinger -kressler -kressin -kressierer -kresky -krepp -krenzke -krenning -krenik -kremple -kremmel -kremen -krejcik -kreissler -kreinhagen -krehel -kreese -krawitz -kravetsky -kravets -kravec -krausse -krausmann -krauel -kratowicz -kratchman -krasnici -krasnansky -kraskouskas -krasinski -kranwinkle -kranock -kramarczyk -krallman -krallis -krakowiak -krakauer -krainbucher -kraig -kraichely -krahulec -krahe -krah -kragt -kraetsch -krabel -krabbenhoft -kraasch -kraack -kozlovsky -kozlik -koziak -kozeyah -kozan -kowitz -kowalke -kowalec -koves -kovalaske -kovacik -koutras -koussa -kousonsavath -kounthong -kounthapanya -kounovsky -kounkel -kounick -koulavongsa -koulalis -kotyk -kotur -kottraba -kottlowski -kotterna -kotschevar -kotonski -kotlar -kotheimer -kotey -koterba -koteras -kotarski -kotaki -kosuta -kostrzewa -kostiv -kosters -kossey -kossen -kossak -kososky -kosorog -koso -koslan -kosiorek -koshi -koscielniak -kosareff -korzyniowski -korzybski -korynta -korwin -korwatch -kortemeier -korst -korsmeyer -korslund -koroch -kornn -kornfield -kornblatt -korkmas -koritko -korinta -koria -korewdit -kores -korenek -kordys -kordowski -kordiak -korbin -kopsho -koppy -kopke -kopin -kopicko -kopiasz -koperski -kopay -kopatz -kopan -koosman -koong -koolman -kool -konty -konow -konopski -konma -konishi -konger -konetchy -kone -konderla -konczewski -konarik -komula -kominski -komada -koma -kolwyck -kolupke -koltz -kolts -kolppa -koloc -kollross -kollos -kolkman -kolkhorst -kolikas -kolic -kolbusz -kolassa -kol -kokubun -kokoszka -kokko -kokenge -koitzsch -koiner -kohus -kohles -kohel -koguchi -kofoot -koers -koenitzer -koeninger -koenigsberg -koener -koenemund -koelbel -koehring -koeck -kody -kodera -koczwara -kocieda -kochkodin -kochen -kochanek -kobylski -kobylarz -kobylarczyk -kobold -knyzewski -knupke -knudsvig -knowiton -knowell -knous -knotowicz -knorp -knoflicek -knoeppel -knoepke -knoell -knoechel -knodel -knockaert -knobler -kniola -knill -knilands -kniesel -kniceley -kneuper -knetsch -kneser -knerien -knellinger -kneefe -knazs -knatt -knapko -knapick -knape -knap -knake -kmiotek -kment -kmatz -kman -klyn -klute -kluse -klumph -klukken -klukan -kluemper -kluber -klosky -kloppenburg -klonowski -klomp -klohs -klohe -kloeppel -kloeker -kloefkorn -kloeck -klobucar -kljucaric -klitzner -klitsch -kliskey -klinski -klinnert -klinich -klingner -klingenberger -klingberg -klingaman -klimo -klimavicius -klickman -klicka -klez -klevjer -klette -kletschka -kless -kleppen -klenovich -kleintop -kleinsasser -kleinfeld -kleifgen -kleid -kleftogiannis -kleefisch -kleck -klebes -klear -klawuhn -klawinski -klavon -klavetter -klarin -klappholz -klande -klancnik -klan -klamn -klamert -klaja -klaich -klafehn -klabunde -kjolseth -kjergaard -kjellsen -kjellman -kjeldgaard -kizzia -kizior -kivela -kitty -kitthikoune -kittelman -kitelinger -kitcher -kitchenman -kitanik -kisro -kisielewski -kiryakoza -kirsopp -kirshman -kirlin -kirkness -kirkling -kirkconnell -kirgan -kirchmann -kirchherr -kirchberg -kirchbaum -kirberger -kiracofe -kipple -kip -kious -kintopp -kintigh -kinsolving -kinsky -kinlin -kinlecheeny -kingwood -kingson -kinds -kindregan -kinderman -kinde -kimminau -kimbal -kilver -kiltie -kilstofte -kilogan -kilness -kilner -kilmister -killoren -killius -kilimnik -kilichowski -kildare -kiko -kijak -kiili -kihlstrom -kietzer -kiesser -kierzewski -kienbaum -kienast -kieke -kieck -kiebala -kiddle -kickel -kichline -kibbler -kiani -khubba -khora -khokher -khn -khlok -khilling -khensamphanh -khemmanivong -khazdozian -khazaleh -khauv -khairallah -kezele -keyon -keyl -kew -kevwitch -kevorkian -keveth -kevelin -kevan -keuper -ketzler -kettinger -ketterl -ketteringham -kettenring -ketchersid -kessans -kesey -kesek -kertzman -kertels -kerst -kerper -kernodle -kernighan -kernagis -kermes -kerens -kercheff -kerce -kerans -keppner -kepke -kepani -keovongxay -keoghan -keodalah -keobaunleuang -kenzie -kenson -kenoyer -kenouo -kennie -kenngott -kennaugh -kenik -keney -kenekham -kenealy -kendziora -kendal -kenaga -kempster -kemps -kempon -kempkens -kemmeries -kemerly -keltt -kellywood -kellish -kellem -keliipaakaua -kelau -keks -keisacker -keis -keinonen -keilholz -keilholtz -keihl -kehres -keetch -keetan -keet -keeser -keenom -keeman -keehner -keehan -kedra -kedia -kecskes -kecker -kebede -kebe -keba -keaty -keaten -keaser -kearsey -kearn -kazunas -kazimi -kazar -kazabi -kaza -kayat -kayastha -kawski -kawell -kawczynski -kawaiaea -kave -kavaney -kaut -kaushal -kausch -kauo -kaumans -kaui -kauder -kaucher -kaua -katzmann -katzaman -katterjohn -kattaura -katsaounis -katoh -katke -katis -katin -katie -kathleen -kathel -kataoka -kaszton -kaszinski -kasula -kasuba -kastens -kaspari -kasmarek -kasky -kashner -kasen -kasemeier -kasee -kasal -karz -karwowski -karstensen -karroach -karro -karrels -karpstein -karpe -karoly -karnath -karnas -karlinsky -karlgaard -kardux -karangelen -karamchandani -karagiannes -karageorge -karabin -kar -kapsner -kapperman -kappelmann -kapler -kapiloff -kapetanos -kanzenbach -kanwar -kantis -kantah -kanosh -kanoon -kanniard -kannan -kanjirathinga -kangleon -kaneta -kanekuni -kanealii -kand -kanakares -kamstra -kamradt -kampner -kamna -kammerzell -kamman -kamiya -kaminska -kamensky -kamber -kallhoff -kallfelz -kalley -kallestad -kallal -kalista -kalhorn -kalenak -kaldahl -kalberg -kalandek -kalan -kalamaras -kalafarski -kalaf -kakowski -kakeh -kakani -kajder -kaja -kaines -kaiktsian -kaid -kahookele -kahoohalphala -kahley -kahao -kahalehoe -kahal -kahae -kagimoto -kaewprasert -kaemingk -kadow -kadelak -kaczka -kacvinsky -kacprowski -kachmarsky -kabzinski -kabus -kabir -kabigting -kabala -kabacinski -kababik -kaarlela -kaanana -kaan -kaak -kaai -ka -juvenal -justian -juste -justak -jurries -jurney -jurkovich -jurist -jurin -jurgen -juray -junod -junkersfeld -junick -jumbo -julsrud -julitz -juliana -jukich -juengling -juen -juelich -judie -jubyna -jubran -jubeh -juback -juba -juanico -joynson -joyne -jover -journot -joto -jotblad -josic -jorrisch -jordt -jording -jondrow -jonah -jome -jollimore -joline -jolina -joler -joki -johnting -johnstonbaugh -johnikins -johniken -johe -johansing -johal -joganic -joerger -joelson -joehnck -jody -jodha -joanis -jirsa -jirak -jira -jingst -jhingree -jhanson -jews -jestis -jessica -jeskie -jesiolowski -jesenovec -jeschon -jermeland -jerkin -jericho -jerger -jergen -jerding -jepko -jens -jenovese -jennkie -jenderer -jenab -jempty -jemmings -jelome -jellings -jelden -jelarde -jeffryes -jeffirs -jedan -jecmenek -jecklin -jeck -jeanquart -jeanphilippe -jeannoel -jeanette -jeancy -jaysura -javis -javers -javed -jave -jaussen -jauhar -jastremski -jastrebski -jasmann -jaskolka -jasko -jaskiewicz -jasica -jasch -jarriett -jaroski -jarnutowski -jarmin -jaremka -jarema -jarels -jarecke -jarding -jardel -japak -janysek -janway -janowiec -janow -janofsky -janoff -jannise -jannett -jankoff -janeiro -jana -jaminet -jami -jamgochian -jamesson -jamer -jamel -jamason -jalovel -jalkut -jakubov -jaksic -jaksch -jakiela -jaji -jaiyesimi -jahosky -jahoda -jahaly -jagiello -jaggie -jafek -jafari -jae -jadoo -jaculina -jacquin -jacquelin -jacobsohn -jacobovits -jackso -jacksits -jackosn -jackett -jacinthe -jabbie -jabaut -jabali -jaarda -izak -izaguine -iwasko -iwashita -ivrin -ivener -iveans -ivancic -iuchs -itnyre -istorico -isiminger -isgur -isgro -isenbarger -iseman -isebrand -isaksen -isagba -isacson -isaack -irr -ironhorse -irigoyen -ireson -ipsen -iossa -inzano -introini -insognia -inserra -inostraza -innerst -innella -innarelli -innamorato -inkavesvanitc -ingvolostad -inguardsen -ingran -ingrahm -ingraffea -ingleton -inghem -ingersol -ingargiolo -inferrera -iner -induddi -indermuehle -indeck -indal -incomstanti -incera -incarnato -inbody -inabnit -imming -immerman -immediato -imholte -imeson -imbruglia -imbrock -imbriale -imbrenda -imam -imada -iltzsch -illovsky -illich -illas -illar -iliffe -ilg -ilarraza -ilaria -ilalio -ikzda -ikkela -ikenberry -ikemoto -ikemire -ikeard -ihnen -ihenyen -iheme -igus -iguina -ignoria -igles -igbinosun -ifie -ifft -ifeanyi -ifantides -iennaco -idrovo -idriss -idiart -ickert -icardo -ibric -ibdah -ibbotson -ibasitas -iarussi -iara -iannalo -iamiceli -iacuzio -iacobucci -iacobelli -hysquierdo -hyske -hydzik -hyberger -hyatte -huysman -huyna -hutyra -huttman -huttar -huter -husul -hustedt -hussy -hussong -hussian -huski -hushon -husein -husaini -hurtubise -hurta -hurni -hurme -hupy -huppenbauer -hunze -hunson -huner -hundertmark -hunderlach -humston -hummert -huminski -humerick -humbard -hulzing -hulshoff -hulmes -hukle -hujer -huitink -huirgs -hugus -huguet -hugghis -huffstutter -huerto -huertes -huenergardt -huemmer -huelle -huehn -huebsch -hudok -hudnut -hudlow -hudlin -hudes -huddy -huckabone -huckabaa -hubsch -hubl -hubertz -htwe -hsy -hrycko -hrna -hric -hribal -hrcka -hrbacek -hranchak -hradecky -hoysock -hoyne -hoylton -hoyal -hoxsie -howlingwolf -howett -howarter -hovnanian -hovard -hovantzi -hovanes -houzah -houtkooper -housner -housemate -hourihan -houltberg -houghtelling -houey -houchard -houben -hotter -hotten -hottell -hotek -hosoi -hosner -hosle -hoskyns -hoskey -hoshino -hosfield -hortein -horseford -horse -horridge -hornshaw -horns -hornlein -hornig -horneff -hormuth -horimoto -horesco -horenstein -horelick -hore -horbert -horabik -hoppenrath -hoppa -hopfauf -hoosock -hool -hoogheem -hoogendoorn -hoo -honus -honold -honokaupu -honigsberg -hongisto -hongeva -hones -honegger -hondros -hondel -honchul -honch -homza -homsey -homrighaus -hommer -homiak -homby -homans -holznecht -holzmiller -holzhueter -holzboog -holtmeier -holtmann -holthouse -holthoff -holtham -holtgrefe -holstad -holshovser -holquist -holmers -hollyday -hollo -hollner -hollinghurst -holleyman -hollett -hollerud -hollering -hollembaek -hollarn -hollamon -hollack -holihan -holibaugh -holgersen -holdy -holdgrafer -holdcraft -holdbrook -holcroft -holch -hokula -hokett -hojeij -hojczyk -hoivik -hoiseth -hoinacki -hohnson -hohney -hohmeier -hohm -hohlstein -hogstrum -hogon -hoglan -hogenmiller -hogains -hoga -hofstra -hofstadter -hofhine -hoffpavir -hoeser -hoerig -hoerger -hoelzel -hoelter -hoeller -hoek -hoehl -hoefflin -hoeffer -hodosy -hodnicki -hodermarsky -hodd -hockley -hochstine -hochfelder -hobstetter -hoblit -hobin -hoberek -hobb -hnot -hlywa -hlastala -hjermstad -hizkiya -hitzfelder -hiteman -hitchko -hitchingham -hissom -hismith -hiske -hirte -hirschmann -hirose -hirezi -hipsley -hippley -hipol -hintergardt -hinokawa -hinely -hindsman -hindmarsh -hinderaker -hindall -hinckson -hinajosa -himmelsbach -himmelright -hilyar -hilvers -hilu -hiltunen -hiltebeitel -hilsgen -hilovsky -hilo -hilmer -hillseth -hillered -hilleman -hillbrant -hillabush -hilla -hilkert -hilk -hildman -hilbner -hilbig -hilb -hila -hija -higy -hightshoe -higashida -hiens -hielscher -hidde -hidaka -hickley -hickingbotham -hickie -hiciano -hibble -hibbits -heziak -heynen -heykoop -heydenreich -heybrock -hevrin -hevessy -heugel -heuangvilay -hettes -hettenhausen -hetling -hetjonk -hethcox -hethcote -hetchman -hetcher -hesterly -hessman -hesselrode -hesselman -hesselbein -hesselbach -herzbrun -heryford -herwehe -hervol -hertle -herta -herskovic -hershnowitz -hershfield -herschaft -hersberger -herrud -herrnandez -herrlich -herritt -herrion -herrand -herran -herout -heroth -heronemus -hero -herny -hermus -herline -herley -hergenroeder -hergenreter -herena -herem -herek -hercman -heral -hequembourg -heppert -hepperly -heppel -heppding -henzler -hentrich -henter -hensle -hensdill -henschke -hennighausen -hennard -henkin -henges -henedia -hendson -hendsbee -hendrics -hendrickx -hencken -henchel -hencheck -hemsworth -hemry -hemperley -hemmig -hemmeter -hemmert -hemmelgarn -hemmeke -hemley -hemeyer -hemerly -hembre -hemans -hemanes -helwick -helvik -helphinstine -helphenstine -helowicz -helmert -helmen -helmbright -helliwell -helley -hellerman -hellenbrand -helferty -helfert -hekman -heitmuller -heitbrink -heisse -heisner -heir -heinzle -heinzerling -heino -heinig -heindl -heimerl -heimbuch -heilbrun -heilbron -heidtke -heidmann -heglund -heggins -heggestad -hegener -hegdahl -hefter -heffernen -heery -heebsh -hedrix -hedler -hedeiros -hedegaard -heddleson -heddins -hect -heckle -heckers -hebsch -hebrard -heberer -hebblethwaite -heaviland -heartley -hearston -heang -hean -heam -heagany -headlon -heading -hazouri -hazinski -hazekamp -hayword -haysbert -hayn -hayball -hawkings -havier -havermann -havekost -hauswald -haustein -hausteen -hauslein -hausher -haurin -hauptly -haulbrook -haukaas -haugaard -hauffe -hauben -hatzell -hatto -hattenbach -hatridge -hatlee -hathcox -hatchette -hatcherson -hatake -hassig -hasselvander -hasselkus -haslinger -haskamp -hashbarger -hasha -hasfjord -hasencamp -haseloff -haschke -hasbni -hasbell -hasak -harwin -harvley -harvilchuck -harvick -harutunian -hartzo -hartzheim -hartjen -hartgraves -hartgrave -hartgerink -hartenstein -harsy -harrisow -harrigton -harrellson -harralson -harrald -harradine -harraden -haroun -harnly -harnes -harnar -harnan -harnack -harlston -harlor -harleston -harkenreader -harkcom -harjochee -hargest -harges -harfert -harens -hardung -hardney -hardinson -hardigan -harby -harbus -harbough -harbottle -harbold -harary -haramoto -harader -harabedian -har -happney -happe -haper -hape -hanville -hanusey -hantzarides -hantula -hanstine -hansteen -hansson -hansrote -hansil -hanoharo -hanock -hannula -hanno -hannem -hanneken -hannegan -hanmore -hanisko -hanisco -hanify -hanhan -hanegan -handt -handshaw -handschumaker -handren -handlin -handing -handeland -hanagan -hanagami -hanafin -hanafan -hanacek -hamway -hampon -hamper -hamparian -hamor -hamontree -hamolik -hamnon -hamn -hammet -hammerstein -hammerstad -hammerlund -hammed -hammang -hameen -hamborsky -hamb -hamalak -hamai -halwood -halston -halpainy -halon -halmstead -halmick -hallstead -hallowich -hallio -hallie -hallerman -halleen -hallczuk -hallan -halgren -halechko -halcom -halbritter -halaliky -hal -hajdukiewicz -hait -haislett -hairster -hainsey -hainds -hailes -hagwell -hagon -haghighi -haggstrom -haggis -haggen -hageny -hagelgans -hagarty -hafenbrack -haessler -haessig -haerr -haener -haen -haeckel -hadson -hadland -hadian -haddaway -hackmeyer -hackethal -hackerd -hackenmiller -hackenbery -hacke -hackborn -hachette -habif -habermann -haberern -habbs -haakinson -haagensen -gzym -gyurko -gyllenband -gyaki -gwynes -gwenn -guzmdn -guziczek -guz -guyott -guyot -guyet -guttenberg -gutschow -gutreuter -gutrerrez -gutieres -gutiennez -guthorn -guthary -guterriez -gutenson -gussin -gushue -gusa -gurvine -gurtin -gurrad -gurne -guridi -gureczny -guralnick -gunzenhauser -gunthrop -gunkelman -gunagan -gun -gumphrey -gummersall -gumbert -gulnick -gullung -gullage -gulini -gulikers -guley -guldemond -gulde -gulbraa -gulati -guittennez -guitreau -guith -guitar -guirgis -guinle -guiltner -guilstorf -guillote -guillan -guilianelli -guilbe -guiffre -guiel -guidaboni -guiao -guialdo -guevana -guesman -guerrouxo -guerinot -gueretta -guenison -guenin -guempel -guemmer -guelpa -guelff -guelespe -guedesse -gudroe -gudat -guckes -gucciardi -gubser -gubitosi -gubernath -gubbins -guarracino -guarin -guariglio -guandique -guaman -gualdoni -guadalajara -grzywinski -grzywacz -grzyb -grzesiak -grygiel -gruzinsky -gruters -grusenmeyer -grupa -gruninger -grunin -grundon -gruhlke -gruett -gruesbeck -gruell -grueber -gruda -grubman -gruba -grovier -grothen -groszkiewicz -grossley -grossklaus -grosshans -grosky -groshek -grosenick -groscost -grosby -groombridge -gronvall -gromley -grollman -grohoske -groesser -groeber -grocott -grobstein -grix -grivna -gritsch -grit -gristede -grissam -grisostomo -grisom -grishan -grip -grinner -grinman -grines -grindel -grimlie -grimard -grillette -griggers -grigas -grigalonis -grigaliunas -grifin -griffins -griffes -griffel -grife -griesmeyer -griesi -griem -grham -grgurevic -greyovich -greydanus -greviston -gretzner -gretz -gretsch -greto -gresl -gresko -grengs -gremler -greist -greisser -greisiger -greiser -greiber -gregoroff -gregoreski -gregas -greenrose -greenlow -greenlees -greenfelder -greenen -greenbush -greeb -grebs -grebel -greaux -grdina -gravit -gravenstein -gravelin -grava -graul -graughard -graue -grat -grastorf -grassano -grasmuck -grashot -grasha -grappo -graper -granvil -granucci -grantier -granstaff -granroth -granizo -graniero -graniela -granelli -grandos -grandmont -gramza -graminski -gramberg -grahams -grago -graen -graefe -grae -gradle -graciani -graci -grabowiecki -grabauskas -gounder -gougeon -goudge -gouchie -gou -gottula -gottleber -gotthardt -gotowka -gotlib -gotimer -gothier -gothe -goswami -gostowski -gossin -gosserand -gossen -goshow -goshi -gosda -gosche -gorychka -gorri -gornikiewicz -gorlich -gorgo -gorglione -goretti -gorence -gorelik -goreczny -gordis -gorczynski -gorans -gootz -goosen -goonez -goolsbee -goolia -goodvin -goodpastor -goodgine -goodger -gooder -goodenberger -goodaker -goodacre -gonzolez -gonzaliz -gonsalues -gones -gone -gondran -gonda -gonazlez -gomzalez -gomey -gome -gomberg -golumski -goluba -goltry -goltra -golpe -golombecki -gollwitzer -gollogly -gollin -golkin -golk -goldware -goldrup -goldrich -goldhammer -goldhahn -goldfischer -goldfield -goldeman -goldak -golberg -golba -golanski -golabek -goick -gogocha -goglia -gogins -goetzke -goettman -goettig -goetjen -goeman -goeldner -goeken -goeden -godyn -godwyn -godown -godfray -goderich -gode -godde -goda -gockerell -gochnauer -gochie -gobrecht -gobeyn -gobern -gobea -gobbo -gobbi -gnagey -glugla -gluckman -gluc -glowski -glowka -glowinski -glow -glossner -gloff -gloe -glodich -gliwski -gliues -glise -glinkerman -glimp -glicher -glenny -glembocki -gleiss -gleichweit -gleghorn -glaviano -glauser -glaue -glaubke -glauberman -glathar -glasow -glashen -glasglow -glarson -glapion -glanden -glader -gladen -glacken -gjorven -gjokaj -gjesdal -gjelten -givliani -gitzlaff -gittere -gitlewski -gitchell -gissler -gisriel -gislason -girolami -girmazion -girellini -girauard -girardeau -girad -giove -gioriano -gionson -gioacchini -ginnetti -ginnery -ginanni -gillom -gillmer -gillerist -gillentine -gilhooley -gilfoy -gilespie -gildroy -gildore -gilcoine -gilarski -gihring -giggie -giessinger -gierling -gielstra -giehl -giegerich -giedlin -gieber -giebel -gidwani -gicker -gibes -gibbings -gibbard -gianopulos -gianola -giannell -giandelone -giancaspro -giancarlo -gian -giamichael -giagni -giacomazzi -giacoletti -giachino -ghramm -ghosten -ghiringhelli -ghiorso -ghil -ghia -gheza -ghekiere -gheewala -ghazvini -ghazi -ghazal -ghaor -ghane -ghanayem -ghamdi -gfroerer -geyette -gewinner -gewant -gevorkian -gevedon -geuder -getting -gettenberg -getschman -getachew -gestes -gesselli -geryol -gerych -gerty -gerton -gertken -gerster -gersch -gerpheide -geronime -gerondale -gerock -germinaro -germershausen -germer -gerlock -gerla -gerking -gerguson -geres -gerbs -gerbi -gerathy -gerardot -georgiana -georgales -geohagan -geoghan -geoffrey -genualdi -gentis -gennusa -gennaria -gennarelli -genin -genga -geng -geneseo -generous -generoso -genera -genberg -gemmel -gembe -gembarowski -gelzer -gelo -gellis -gellespie -gell -gelineau -gelger -geldrich -gelbach -geister -geissel -geisen -geiman -geils -gehrking -gehri -gehrett -gehred -gefroh -geerken -geelan -gedris -gedo -gechas -gecan -gebrayel -gebers -geasley -geanopulos -gdula -gbur -gazzillo -gazza -gazo -gaznes -gazdecki -gayoso -gayo -gaymes -gawlak -gavula -gavles -gaviria -gavinski -gavigan -gaves -gavell -gavalis -gautsch -gauron -gauntner -gaulzetti -gattie -gatski -gatch -gata -gastelun -gastellum -gastel -gasson -gassler -gasse -gasquet -gaspari -gasienica -gaseoma -gasch -garzone -garverick -garve -garthee -garrod -garriss -garrish -garraghty -garnet -garness -garnder -garlovsky -gariti -garich -garibaldo -garib -gargani -garfias -garff -garf -gares -garen -gardy -garder -garcelon -garced -garavelli -garala -garacci -ganze -gantewood -ganska -gannoe -ganji -ganja -ganibe -ganiban -ganguli -gangluff -gangadyal -gane -gandhy -gandarillia -gancio -gana -gamrath -gamewell -gamela -gamberini -gamberg -gambell -gambaiani -galvano -galva -galustian -galston -galstian -galson -gals -galon -galofaro -gallipo -gallery -galleno -gallegher -gallante -gallagos -gallaga -galjour -galinoo -galinol -galin -galietti -galhardo -galfayan -galetti -galetta -galecki -galauiz -galaska -galashaw -galarita -galanga -galacio -gailun -gailis -gaibler -gagon -gago -gagliardotto -gaetke -gaestel -gaekle -gadue -gades -gacusan -gacad -gabrel -gabouer -gabisi -gabino -gabbett -gabbay -gab -gaarsland -fyles -fventes -fusselman -fusik -fusi -fusha -fusca -furuyama -furubotten -furton -furrh -furne -furna -furlotte -furler -furkin -furfey -fure -furch -furay -fupocyupanqui -funderbunk -fundenberger -fulwiler -fulsom -fullwiler -fulliton -fulling -fuleki -fulda -fukuroku -fukada -fuhri -fuglsang -fugle -fugah -fuesting -fuents -fudacz -fucile -fuchser -frydman -fryday -fruusto -frutoz -frullate -fruchey -frossard -fross -froschheiser -froozy -fronduti -frondorf -fron -fromong -frometa -froiland -frohwein -frohock -froeliger -frodsham -fritzpatrick -frist -frisino -frisella -frischkorn -fringuello -frings -friling -frikken -frietsch -friest -friedstrom -friedhaber -friedenberg -friedeck -fridal -freytas -freydel -freudiger -freshley -frere -frenner -freniere -fremon -fremming -freme -freligh -freistuhler -freiser -freil -freifeld -freidkin -freidet -frehse -freguson -freerksen -freelon -freeley -freehoffer -freedland -fredrikson -fredric -fredline -fredicks -freddrick -frawkin -frauenkron -frati -franzeo -frantzich -frankina -frankford -frankenreiter -frankenfeld -franeo -frandeen -franculli -francolino -francoise -francisque -franciosa -francios -francione -franceski -franceschina -fram -fraine -fragassi -fracier -fraccola -frabotta -frabizio -fouyer -foux -foutain -fourre -fouracre -found -foules -foucha -fosso -fosser -fossa -fosburgh -forwood -fortado -forston -forsthoffer -forschner -forsch -fornkohl -fornerod -formhals -formey -formento -formato -forlani -forgy -forgach -fordon -forcino -forcell -forcade -forbish -forber -fontneau -fontelroy -fonteboa -fontanini -fonsecn -fondell -fon -follie -foller -folkins -folkens -folgar -foks -fogus -fogo -foerschler -foell -foecke -foderaro -foddrill -focks -flum -flugence -fluette -fluetsch -flueck -flournay -flotow -flota -florkowski -florestal -florance -floore -floerchinger -flodman -floch -flitton -flitt -flister -flinton -flinspach -flierl -flever -fleurissaint -fleurantin -flether -flennoy -fleitman -flegler -fleak -flautt -flaum -flasher -flaminio -fixari -fiumefreddo -fitzmier -fitzgerlad -fitzen -fittje -fitser -fitchette -fisichella -fisger -fischbein -fischang -fiscal -fisanick -firoozbakht -firlik -firkey -fiorenzi -fiora -finucan -finto -finona -finocan -finnley -finnin -finnila -finni -finnel -finne -finland -finkenbiner -finey -finders -filzen -filyan -filteau -filonuk -fillo -fillerup -filkey -filippides -filippello -filburn -filbrardt -filbey -filary -filarecki -filak -fijalkowski -figurelli -figone -figlioli -figlar -figary -figarsky -fiermonte -fierge -fiely -fieldstadt -fiedtkou -fiedorowicz -fiebich -fie -fidsky -fido -ficenec -feyler -fewless -feulner -feuerberg -fetui -fetrow -fesus -fesenbek -ferugson -ferster -ferrise -ferratt -ferratella -ferrarotti -ferrarini -ferrao -ferrandino -ferrall -ferracioli -feron -ferndez -fernandz -fermo -ferm -ferlic -ferjerang -feris -ferentz -fereday -ferdin -ferdico -ferderer -ferard -feramisco -fenti -fensel -fenoglio -fenoff -feno -fenniwald -fenger -fenceroy -felzien -felson -felsher -fellon -felli -fellhauer -fellenbaum -felleman -fellars -felks -felipa -felila -felico -felicione -felger -feldtman -feldner -feldker -feldhake -felciano -felcher -fekety -feindt -feinblatt -feilbach -feikles -feigh -feichtner -fehribach -fehnel -fehn -fegurgur -fego -fefer -feezor -feery -feerst -feeling -feekes -feduniewicz -feduccia -fedorka -fedoriw -fedorczyk -fedel -feddes -fedderly -fechtel -fecat -feazelle -feast -fearheller -fearen -feamster -fealy -fazzinga -fawell -favilla -favieri -favaron -favaro -faustman -faurot -faur -faulstick -faulstich -faulkes -faulkenbury -faulisi -faubus -fat -faster -fash -fasenmyer -fasci -fasbender -faruolo -farrin -farria -farrauto -farmsworth -farmar -farm -farlee -fariello -farid -farha -fardo -faraco -fantz -fanner -famy -famiano -fam -falu -faltz -falto -falson -fallie -fallick -falla -falknor -falkenthal -falis -falha -falge -falconeri -falcione -falchi -falb -falasco -falah -falack -falacco -faix -faisca -fairy -fairly -faigle -faichtinger -fahrenwald -fahrenbruck -fahner -fahlstedt -fagnoni -faglie -fagala -faehnle -fadri -fadei -facenda -fabus -fabroquez -fabello -fabeck -fabbozzi -ezernack -ezer -ezechu -ezdebski -eyubeh -eyermann -extine -expose -ewelike -evora -eviston -evertz -eversmann -everleth -evering -eveline -eveler -evanski -evanosky -evanoski -evanchyk -evanchalk -euton -euser -eurton -europe -ettl -ettison -etters -etoll -ethel -etchinson -esty -esteybar -estevane -esterson -esterling -estergard -estela -estaban -esshaki -essepian -esselman -essaid -essaff -esquiuel -esquerre -esquea -esposita -espenscheid -esparaza -esoimeme -esnard -eskuchen -eskelsen -eskeets -eskaran -eskaf -eshlerman -esenwein -escorza -escoe -escobeo -eschenbacher -eschenbach -eschborn -escarrega -escalet -esbensen -esannason -ervine -ervay -ertelt -erpenbach -ero -ernstrom -ernspiker -ernandez -ermogemous -ermita -erm -erlwein -erlanson -erixon -erice -erfert -ereth -erdmun -erdelt -erchul -ercek -erbentraut -erard -eracleo -equiluz -eppert -epperheimer -eppenger -epifano -eperson -enzenauer -entzi -entrup -entel -enote -enocencio -enny -ennist -ennels -ennaco -enkerud -enick -engwer -engleby -enget -engessor -engerman -engbretson -enfort -ends -endresen -endecott -encalade -emuka -emslander -emshoff -empleo -empfield -emperor -emo -emmrich -emlin -emigholz -emfield -emeru -emeche -emdee -emberlin -emberley -emberger -emayo -emanus -emami -elvert -elshair -elsensohn -elsbury -elsa -elroy -elquist -elofson -elmaghrabi -ellworths -ellifritt -ellies -elliem -ellerkamp -ellerbeck -ellenbee -ellena -ellebrecht -elldrege -ellanson -elko -elkayam -eliszewski -eliseo -elis -elion -elhosni -elhassan -elhaj -elhaddad -elgen -elgas -elgar -elg -elftman -elfering -elewa -eleveld -elefritz -elbogen -elbertson -elberson -elbahtity -elahi -ekstrum -eklov -ekis -ejide -eissinger -eirls -einfeldt -eilts -eilders -eilbert -eilbeck -eikmeier -eifler -eiesland -eichstadt -eichenmiller -eichenauer -eichelmann -ehr -ehorn -ehnis -ehmen -ehleiter -ehinger -ehiginator -ehigiator -egvirre -egure -eguizabal -ego -egidio -eggenberg -eggart -eget -egertson -egbe -efrati -eflin -eerkes -ee -edwads -edster -edralin -edmerson -edmeier -edleston -edlao -edith -edis -edeline -edeker -economus -economides -ecoffey -eckrote -eckmeyer -eckle -ecklar -eckis -echemendia -echavez -echaure -ebrani -ebo -ebilane -ebesugawa -eberting -ebersol -eberline -eberl -ebenstein -eben -ebbesen -ebach -easom -easlick -easker -easey -easdon -earman -earll -earlgy -earenfight -earehart -ealley -ealick -eagy -eafford -dziurawiec -dzierzanowski -dziegielewski -dziduch -dziadek -dzama -dyser -dys -dyreson -dymke -dyen -dwyar -dwornik -dwellingham -duxbury -duwhite -duverney -duvel -dutschmann -dutel -dute -dusak -durun -dursch -durrwachter -durousseau -durol -durig -durett -duresky -durelli -duree -dural -duraku -dupouy -duplin -duplesis -duplaga -dupaty -duonola -dunzelman -dunten -dunt -dunster -dunnahoo -dunmead -dunks -dunkentell -dunemn -duncker -dunckel -dunahoo -dummitt -dumez -dumag -dulberg -dulatre -dukhovny -dukeshire -dukeshier -duitscher -duitch -duh -dugmore -dughi -duffus -duffany -dufer -duesenberg -duerkson -duerkop -duenke -duel -dudleson -dudik -duderstadt -dudack -duchow -duchesney -duchatellier -ducceschi -ducayne -ducay -ducatelli -dubonnet -duberstein -dubej -dubeck -dubeau -dubbin -duban -duball -duartes -dsaachs -dryman -drybread -drumwright -drumheiser -drumgole -drullard -drue -drude -druckhammer -dru -drought -drossos -drossman -droski -drong -drones -dronen -droegmiller -drock -drisdelle -drinkall -drimmer -driggins -driesel -driere -drewski -dreps -dreka -dreith -dregrich -dreggs -drawy -drawec -dravland -drape -dramis -drainer -dragun -dragt -dragotta -dragaj -drafton -drafall -drader -draa -dozois -dozar -doyan -doxon -dowsett -dovenmuehler -douyon -douvier -douvia -douthart -doussan -dourado -doulani -douillet -dougharity -dougall -douet -dou -dotto -dottery -dotstry -doto -dotie -doswell -doskocil -doseck -dorweiler -dorvillier -dorvee -dortilla -dorsainvil -dorrian -dorpinghaus -dorph -dorosan -dornseif -dornhelm -dornellas -dorne -dornbos -dormanen -dormane -doriean -dorer -dorcent -dorat -dopf -dootson -doornbos -dooney -donten -dontas -donota -donohve -donning -donnellon -donne -donmore -donkor -donkervoet -donhoe -dongo -donelon -donchatz -donawa -donar -domnick -domkowski -domio -dominis -dominiquez -dominicus -dominico -domingus -domianus -domas -dolven -dolliver -doljac -doliveira -dolhon -dolgas -dolfay -dolcetto -dokuchitz -doino -doiel -doffing -doerflinger -doepner -doelling -dodich -doderer -dockray -dockett -docker -docimo -dobre -dobrasz -dobmeier -dobesh -dobberfuhl -dobb -dmitriev -dlobik -dlabaj -djuric -dizadare -divento -divan -diulio -ditti -dittbrenner -ditta -ditolla -ditchfield -distilo -distance -disponette -dispirito -dishinger -discon -disarufino -disabato -diruzzo -dirose -dirollo -dirado -dippery -dionisopoulos -diones -dinunzio -dinucci -dinovo -dinovi -dinola -dinho -dings -dinglasan -dingel -dinco -dimperio -dimoulakis -dimopoulos -dimmack -dimling -dimitriou -dimes -dilthey -dilox -dillworth -dillmore -dilligard -dilleshaw -dilgard -dilda -dilcher -dilchand -dikkers -diket -dikens -digrazia -digness -digiorgi -digiambattist -digesare -difiora -diffendal -diewold -dietsche -diestel -diesen -dien -diemoz -dielman -diegidio -diedricks -diebol -didlake -didamo -dickun -dickstein -dickirson -dickins -dicioccio -diciano -dichristopher -dicaro -dicara -dibrino -dibenedict -diamico -diak -diachenko -dhosane -dezell -dezayas -deyette -deyarmond -deyarmin -dewyer -dewulf -dewit -dewinne -dewaratanawan -devreese -devitto -devincenzi -devick -devey -devenecia -devel -deuschle -deuschel -deuman -deuermeyer -detz -deturenne -dettra -dettore -dettmering -dettmann -detterich -detorres -detlefs -detjen -detillier -dethomasis -detering -detar -desutter -destime -destephano -desrocher -desquare -desporte -desparrois -desort -desormo -desorbo -desolier -desmarias -desloge -deslaurier -desjardiws -desiyatnikov -desisles -desilvo -desiato -deshazior -desforges -deserres -deschomp -deschino -deschambeault -desautelle -desantigo -desan -deruso -derubeis -derriso -derricott -derrer -deroos -deroko -deroin -deroest -derobles -dernier -dermo -derkach -derizzio -deritis -derion -deriggi -dergurahian -dereu -derer -derenzis -derenthal -derensis -derendal -derenberger -deremiah -deraveniere -deramo -deralph -depsky -deprizio -deprince -deprez -depratt -depottey -depippo -depinho -depietro -depetris -deperte -depena -depaulis -depasse -depace -deonarian -deodato -denski -densieski -denoyelles -denofrio -denni -dennert -denna -deniken -denier -denice -denhartog -dench -dence -denburger -denafo -demyers -demulling -demuizon -demosthenes -demoney -demonett -demmon -demich -demian -demetris -demetree -demeris -demchok -dembosky -dembinski -dember -demauri -dematos -demasters -demarrais -demarini -demarc -demara -delvin -delveechio -delusia -deluney -deluccia -delre -delpiano -delosanglel -delosangeles -delon -delnegro -dellos -dellon -delling -dellibovi -dellasciucca -dellasanta -dellapina -dellajacono -dellagatta -dellaca -deliso -delinois -delilli -delilla -deliberato -delhomme -delguercio -delger -delgadilo -delfi -delfelder -deley -delevik -delettre -delessio -deleonardo -delellis -delehoy -delegeane -deldeo -delcine -delbusto -delbrune -delbrocco -delbo -delasko -delashaw -delasancha -delaremore -delaplane -delapenha -delanoche -delalla -delaguila -delaglio -dekuyper -dekort -dekorne -deklerk -dekine -dejoode -dejes -dejarme -dejager -deja -deischer -deir -deighton -deidrick -deida -deible -dehrer -dehombre -dehler -dehghani -dehan -dehaemers -degunya -deguise -degrella -degrazio -degrandpre -degori -degolyer -deglopper -deglanville -degado -defrates -defrancis -defranceschi -defouw -defiguero -defiglio -defide -defaria -deeters -dedominicis -dedo -dedier -dedek -deculus -decroo -decree -decourley -decomo -declouette -declet -declark -deckelman -dechart -dechamplain -decasanova -decardo -decardenas -decann -decaneo -debrita -debrie -debraga -debnar -debiew -debes -debenham -debello -debarba -deback -dearstyne -dearco -deanne -deanhardt -deamer -deaguero -daylong -daya -dawber -dawahoya -davydov -davtyan -davos -davirro -davidek -davide -davers -davensizer -davel -davda -dauzart -daurizio -dauila -daughetee -dauge -daufeldt -daudier -daubenmire -daty -datu -datte -dastoli -daste -dasso -daskam -dasinger -dasalia -daryanl -darvile -darsi -darsch -darrup -darnel -darm -darjean -dargenio -darey -dardashti -dardagnac -darbro -darbeau -daramola -daquip -dapvaala -danza -dantoni -dantes -danoski -danns -dannecker -danfield -danella -danczak -dancoes -damphousse -damoth -damoro -dammrich -dammad -damis -damerell -dambrozio -dama -daltorio -dalponte -dalomba -dalmida -dalmau -dallen -dalla -dalitz -dalio -dalhart -daleus -dalene -dalee -dalbeck -dalaq -dair -daimaru -daill -daichendt -dahood -dahlstedt -dahley -dahler -dagnone -dagnon -dagner -daggy -daer -dae -dadds -daddea -daddabbo -dad -dacres -dachs -dachelet -daber -czyrnik -czwakiel -czupryna -czubia -czosek -czernovski -czerno -czernik -czerniak -czekaj -czarniecki -cyler -cychosz -cuzzo -cuva -cutri -cutone -cutia -cutburth -cusworth -custa -cusmano -cushway -cushinberry -cusher -cushen -cushard -cusatis -curzi -curylo -curriere -currans -curra -curpupoz -curls -curleyhair -curella -cureau -curameng -cupe -cunningan -cunnane -cummisky -cummer -cumley -cumblidge -culotti -cullin -culajay -cujas -cuez -cuddihee -cudan -cuchiara -cuccinello -cucchiaro -cuartas -cuaresma -cuadro -csensich -cruthirds -cruthers -crutchev -crutch -crummedyo -crumlish -cruiz -cruey -cruel -croxford -croxen -crowin -croutch -croushorn -crotwell -crother -croslen -crookston -cronholm -cronauer -cromeens -crogier -croffie -crocitto -critzman -criton -critchelow -cristofaro -cristello -cristelli -crissinger -crispo -criqui -crickenberger -cressell -cresencio -creglow -creggett -creenan -creeley -credo -credille -crease -crawn -cravenho -cravatta -cration -crantz -cragar -cragan -cracolici -cracknell -craawford -craan -cozadd -coyier -cowser -cowns -cowder -covotta -covitt -covil -covarruvia -covarrubio -covarrubia -covar -cova -coutino -cousey -courtoy -courtad -couron -courneya -courie -couret -courchine -countis -counceller -cottillion -cottengim -cotroneo -cotreau -cotheran -cotey -coteat -cotant -coswell -costenive -costellowo -costeira -costanzi -cossaboon -cossaboom -cosimini -cosier -cosca -cosano -corvelli -corti -cortesi -corsilles -corsey -corseri -corron -corridoni -corrett -correo -corren -correau -corraro -corporon -corporal -corpeno -corolla -corolis -cornes -cornelson -cornea -cornacchio -cormican -cormia -coriz -coric -coriaty -coriano -corderman -cordel -corde -cordasco -corburn -corallo -coradi -coponen -coples -copier -copa -coopey -coonley -coomey -coolbrith -coolbeth -coolahan -cookey -coogen -cooey -cooch -conze -conzalez -contreros -contreres -contras -contraras -contopoulos -contofalsky -contino -consoli -consigli -conoly -connyer -conninghan -connette -connerty -connarton -conlans -conkrite -confrey -confair -coneys -conelly -conejo -condreay -condino -condell -condelario -concini -concilio -concho -conces -concepion -conceicao -conable -compres -compiseno -compeau -compean -comparoni -companie -compagna -comoletti -commes -comment -comeauy -colyott -columbres -colsch -colpaert -colpack -colorina -colopy -colonnese -colona -colomy -colombe -colomba -colmer -colly -collozo -collova -collora -collmeyer -collaco -colian -colglazier -colehour -colebrook -coldsmith -colden -colato -colasanti -colasamte -colarossi -colander -colaizzo -colaiacovo -coladonato -colacone -colabrese -cokins -cohoe -coho -cohlmia -cohagan -cogen -cofrancesco -cofran -codey -codeluppi -cocran -cocozza -cocoran -cocomazzi -cockrin -cockreham -cocking -cochis -cocherell -coccoli -cobio -cobane -coatley -coatie -coant -coaker -coachys -cmiel -clozza -cloughly -clothey -closovschi -closey -cloman -cloffi -cloepfil -clites -clinker -cleverly -cleve -clesen -clery -clerf -clemson -clemo -clemmon -clemmo -clemmey -cleark -clayter -clavey -clavelle -clausel -claud -claucherty -claton -clarson -clarendon -clarbour -clar -clap -clanin -clan -claman -clam -claes -civitello -civcci -civatte -civale -ciucci -cito -cisneroz -cislo -cisewski -cirioni -cirilli -cipullo -cippina -cipolone -cipolloni -cioni -cintra -cinkosky -cinalli -cimmiyotti -cimeno -cilva -cills -ciliento -cilibrasi -cilfone -ciesiolka -ciersezwski -cierpke -cierley -cieloha -cicio -cichosz -cichonski -cicconi -cibulskas -ciaramitaro -ciano -cianciotta -ciampanella -cialella -ciaccia -chwieroth -chwalek -chvilicek -chuyangher -churner -churchville -chuppa -chupik -chukri -chuh -chudzinski -chudzik -chudej -chrones -chroman -christoffer -christmau -christle -christaldi -christal -chrispen -chriscoe -chown -chowen -chowanec -chounlapane -choulnard -chott -chopelas -chomicki -chomali -choen -chodorov -chmelik -chludzinski -chivalette -chiv -chiumento -chittom -chisnall -chischilly -chisari -chirdon -chirasello -chipp -chiotti -chionchio -chioma -chinweze -chinskey -chinnis -chinni -chindlund -chimeno -chilinskas -childes -chikko -chihak -chiffriller -chieves -chieng -chiavaroli -chiara -chiapetto -chiaminto -chhor -chhon -chheng -chhabra -cheyney -chey -chevres -chetelat -chet -chestand -chessor -chesmore -chesick -chesanek -cherwinski -chervin -cherven -cherrie -chernick -chernay -cherchio -cheon -chenevey -chenet -chenauls -chenaille -chemin -chemell -chegwidden -cheffer -chefalo -chebret -chebahtah -cheas -chaven -chavayda -chautin -chauhdrey -chauffe -chaudet -chatterson -chatriand -chaton -chastant -chass -chasnoff -chars -charnoski -charleton -charle -charisse -charif -charfauros -chareunsri -chareunrath -charbonnel -chappan -chaples -chaplean -chapko -chaobal -chanthaumlsa -chantha -chanofsky -chanel -chandsawangbh -chandronnait -chandrasekhar -chandrasekara -chandier -chanchuan -chananie -chanady -champy -champany -chamley -chamers -chamble -chamberlian -chalow -chaloner -chalita -chalaban -chajon -chais -chaim -chaille -chaidy -chagollan -chafe -chadsey -chaderton -chabotte -cezil -cersey -cerritelli -ceronsky -ceroni -cernansky -cerenzia -cereghino -cerdan -cerchia -cerbantes -cerao -ceranski -centrone -centorino -censky -ceman -cely -celuch -cellupica -cellio -celani -cegla -cedars -ceasor -cearlock -cazzell -cazeault -caza -cavezon -cavalli -cavaleri -cavaco -cautillo -cauthorne -caulley -caughran -cauchon -catucci -cattladge -cattabriga -catillo -cathers -catenaccio -catena -catani -catalli -catacun -casumpang -casuat -castrovinci -castronova -castoral -castiola -castin -castillero -castillejo -castera -castellanoz -castellaneta -castelan -castanio -castanado -castagnier -cassis -cassion -cassello -casseday -cassase -cassarubias -cassard -cassaday -caspary -caspar -casoria -casilles -casile -casida -cashing -casgrove -caseman -caselton -casello -caselden -cascia -casario -casareno -casarella -casamayor -casaliggi -casalenda -casagranda -casabona -carza -caryk -carvett -carthew -carther -carthens -cartaya -cartan -carsno -carscallen -carrubba -carroca -carril -carrigg -carridine -carrelli -carraturo -carratura -carras -carransa -carrahan -carpente -carpenito -caroway -carota -caronna -caroline -carnoske -carnohan -carnighan -carnie -carnahiba -carmichel -carmello -carlsley -carlington -carleo -cariveau -caristo -carillion -carilli -caridine -cariaso -cardoni -cardish -cardino -cardinas -cardenos -cardejon -cardeiro -carco -carbal -caravalho -caraher -caradonna -caracso -caracciola -capshaws -caprice -capriccioso -capraro -cappaert -caposole -capitani -capinpin -capiga -capezzuto -capetl -capestany -capels -capellas -caparoula -caparelli -capalongan -capaldo -canu -cantre -cantoral -cantfield -cantabrana -canori -cannuli -canestro -canestrini -canerday -canellas -canella -candon -cancer -canatella -canak -cana -campolongo -campagnone -campagnini -campagne -camon -cammarn -caminita -camidge -cambronne -cambric -cambero -camaron -calzone -calzadilla -calver -calvent -calvelo -calvaruso -calvaresi -calpin -calonsag -calonne -caloca -calligy -callez -calleo -callaro -calixtro -caliguire -caligari -calicut -caler -calderson -caldarone -calchera -calcagino -calaycay -calamarino -calamari -calamare -cakanic -cajune -cajucom -cajero -cainion -cainglit -caiafa -cagey -cafourek -caffarel -cafarella -cafagno -cadoy -cadmen -cader -cademartori -cackett -cacibauda -caci -cacciola -cabrar -cabla -cabiya -cabido -cabeza -cabellon -cabeceira -cabanes -cabag -bzhyan -byther -byro -byrley -byrdsong -bynd -bylund -byant -bverger -buzzelle -buzzanca -buyes -buyak -buvens -buttino -buttimer -buttari -buttaccio -buther -butel -buszak -bustinza -bussom -busskohl -bussink -bussinger -bussert -busselberg -bussani -busl -buskohl -busie -bushie -busenius -buseck -buscarino -busacker -burwick -burtin -burriesci -burreson -burnum -burnet -burneisen -burnaman -burlette -burlando -burki -burker -burkel -burka -burigsay -burhanuddin -burgen -burgbacher -buretta -buress -burdsall -burdis -burdi -burdg -burbano -bur -buquo -buontempo -buonadonna -bunzey -bunyea -buntain -bunkers -bungy -bungart -bunetta -bunes -bundley -bundette -bumm -bumbray -bumba -bumatay -bulwinkle -bultron -bulnes -bullo -bullmore -bullerwell -bullert -bullara -bulland -bulkin -bulgarella -bulacan -bukrim -bukowinski -bujol -buja -buike -buhoveckey -buhite -bugtong -bugler -bugenhagen -bugayong -bugarewicz -bufton -buetti -buess -buerstatte -buergel -buerge -buer -buena -buegler -bueggens -buecher -budzyna -budz -budworth -budesa -buddle -budden -buddemeyer -buckridge -buckreis -buckmiller -bucke -buchser -buchsbaum -buchs -buchna -buchheim -buchberger -bucchin -bucanan -bubbico -buanno -bual -brzycki -brzostowski -bryum -brynga -brynestad -bryar -bruzewicz -bruyn -bruun -brutlag -bruson -bruski -bruse -brusco -bruscino -brunsting -brunskill -brunow -brunnemer -brunderman -brunckhorst -brunback -brumbley -bruh -brugal -bruenderman -bruegman -brucie -brozyna -brozell -brownsworth -brownsword -brownsberger -browley -brous -brounson -broumley -brostoff -brossmann -brosig -broschinsky -broomell -brookshier -brooklyn -bronikowski -brondyke -bromberek -brombach -brokins -broking -brojakowski -broich -brogren -brogglin -brodhurst -brodhag -brodey -brocklebank -brockie -brockell -brochure -brochhausen -broccolo -brixius -brittsan -brits -britnell -brisley -brisbone -briola -brintnall -bringman -bringas -bringantino -brinckerhoff -briguglio -briggerman -brigg -brigantino -briehl -brieger -bridson -bridjmohan -bridgford -bridget -bridgens -bridendolph -briden -briddick -bricknell -brickles -brichetto -briare -brez -brevitz -brevil -breutzmann -breuning -bretl -brethour -bretana -bresolin -breslawski -brentnall -brentano -brensnan -brensinger -brensel -brenowitz -brennenstuhl -brengle -brendlinger -brenda -brend -brence -brenaman -bremseth -bremme -breman -brelje -breitung -breitenfeldt -breitenbucher -breitenberg -breines -breiland -brehony -bregon -brege -bregantini -brefka -breeman -breehl -bredy -bredow -bredice -bredahl -brechbill -brearley -brdar -brazzi -brazler -braye -braver -bravender -bravard -braunsdorf -braunschweige -braught -brauchla -bratek -braskey -brasket -branske -branot -branine -braniff -brangan -branen -branecki -brandsrud -brandman -brandeland -brande -brandauer -brancazio -brancanto -branaugh -bramucci -brakstad -brais -braim -braig -brah -brage -bradtke -bradrick -bradon -bradicich -brackelsberg -brachman -brachle -bracetty -bracaloni -bozzell -bozovich -bozinovich -boyenga -bowring -bowlet -bowgren -bowersmith -bowels -bowcutt -bovio -boveja -bovain -boutchyard -bousson -bousqute -bousley -bourns -bourlier -bourgois -bourff -bourek -bourdeaux -bourdages -bourbonnais -boundy -bouliouris -boudrieau -boudin -bouchaert -botwin -bottomly -bottolfson -bottolene -bottiggi -botterbusch -botros -botras -botdorf -bostelman -bossenbroek -bossardet -bosowski -boschult -borycz -borwig -boruvka -bortignon -borsa -borromeo -borrolli -borries -borreta -borremans -borras -borr -borozny -borowiec -boronat -bornman -bormes -borlin -borguez -borgstede -borgese -borgert -borgers -borgella -borell -bordon -bordi -bordges -bordenkircher -borde -borbon -boratko -boque -boppre -boosalis -boorom -bookter -bookmiller -bookamer -bonzo -bonyai -bonugli -bonsu -bonsey -bonsell -bonsee -bonow -bonno -bonnlander -bonnin -bonnenfant -bonjorno -boniol -bongo -bonetto -bonepart -bondre -bonaventura -bonatti -bonapart -bonagurio -bonaguidi -bomzer -bompane -bomilla -bomia -bombino -bomaster -bollens -bollbach -bollaert -bolins -bolinder -bolig -bolian -bolfa -bolevice -boldwyn -bolduan -boldizsar -bolde -bokal -boitel -boin -boillot -boid -bohonik -bohnker -bohney -bohlsen -bohlman -bohlken -bogut -bognuda -bogguess -bogg -bofinger -boero -boerm -boeri -boera -boelk -boehnke -boege -bodyfelt -bodon -bodison -bodfish -boderick -bodenhagen -bodelson -bodary -bocskor -bockrath -bocklund -bockhorn -bockenstedt -bockelmann -bochicchio -boches -bochek -bocchieri -boccard -bobsin -bobrosky -bobowiec -boblak -bobet -boane -boamah -blyze -blute -blush -blunkall -blundo -blumkin -bluming -blumenschein -blumenkrantz -blumenberg -bluel -bloye -blott -blotsky -blossomgame -blosfield -bloomstrom -bloomstrand -bloomsburg -blonsky -blonigan -blomstrand -bloes -bloemker -bloedel -blochberger -blizard -blinebry -blindt -blihovde -blide -blicker -bleything -blevans -blessett -blesofsky -bleiler -bleichner -bleicher -bleeck -blee -blazon -blazing -blazich -blaydon -blaxland -blauw -blauman -blaszczyk -blasl -blashak -blasenhauer -blanscet -blanquet -blanquart -blannon -blanko -blankenbecler -blanga -blander -blakstad -blailock -blafield -blaeser -blaese -blady -bladt -blacock -blackwall -blackmoore -blackmar -blackington -blackbird -blacio -blachowski -bjornstrom -bjorn -bjerknes -bjerken -bjella -bizzard -bivans -bitzenhofer -bitar -bitah -bissol -bissel -bissada -bispham -bisikirski -bischel -biscari -bisanz -birthwright -birsner -bironas -birner -birnberg -birkmaier -birkenhagen -birely -birdon -bionda -binn -bininger -binet -binderup -binam -billus -billue -billotti -billinsley -billingsby -billigmeier -billiet -billiar -billesbach -bilchak -bilansky -bijan -bihler -bihl -bigusiak -bigony -bignell -biggard -biewald -biever -bietsch -biesenthal -biesecker -bierut -bierstedt -bierschbach -biersack -bierod -bierl -bierkortte -biener -bielser -bielke -bielefield -biedekapp -bidstrup -bidell -biddlecome -bicknase -bicking -bichoupan -bichoff -bibiloni -biastock -biasotti -bianchin -bhullar -bhaskar -bhamaraniyama -bhairo -bezenek -beyser -beyke -beyea -beydoun -beyale -beyal -bevevino -beuttel -beutnagel -beuthin -beuse -beurskens -beukema -beukelman -beuerle -beuchler -betzner -betzler -betzig -bettley -betry -betit -bethurem -betha -betenson -betak -bestwick -bestine -beste -bessone -bessinger -bessellieu -besong -besner -beskom -beshore -beser -besen -beseke -besares -besant -besanson -besancon -berzunza -berulie -bertrum -bertot -berto -bertman -berther -berth -bertella -bertao -bershadsky -bersaw -berrospe -berrocal -berray -bernstock -bernotas -bernos -bernmen -bernitsky -bernieri -berni -bernheim -berneri -bernell -bernbeck -bernaudo -bernau -bernatchez -bernarducci -bernardon -bernand -bernacki -berlingo -berley -berlandy -berlacher -berkovitch -berkenbile -berkbigler -berishaj -bering -bergstedt -bergsman -bergouignan -bergold -bergmeyer -bergfalk -bergenty -bergenstock -bergene -bergamine -bergami -berey -beresik -berentz -berenschot -bereda -berdux -berdar -berdahl -berczy -berchielli -bercher -berceir -berbig -berbereia -benzee -benwarc -benulis -bentzinger -bentrem -benthusen -benston -bennings -bennight -benneth -bennard -bennafield -benkosky -benker -benje -benisek -benintendi -bening -beninati -benimadho -benezra -beneuento -bendu -bending -bendell -benckendorf -benbenek -benanti -benamati -benafield -benach -benac -bembi -belwood -belvees -beltramo -belstad -belski -belschner -belscher -belovs -belousson -belous -belony -belonger -belluz -bellmore -bellitti -belliston -bellingtier -bellinder -bellhouse -bellflowers -bellen -bellehumeur -bellefontaine -bellar -bellantone -bellair -bellace -belken -belke -beliz -belina -belieu -belidor -beliard -belhumeur -belfy -belfort -belfi -belfast -belezos -belchior -belarmino -belanich -belancer -bejil -bejger -bejerano -beja -beiswenger -beissel -beilstein -beilinson -beilfuss -beile -behner -behizadeh -behimer -beherns -behanan -behal -begun -beguhl -begonia -begolli -begnoche -begen -beese -beerle -beemon -beelar -beedoo -beedles -beedham -beeckman -beebout -bedre -bedocs -bednarowicz -bedlion -bedillion -beder -bedenfield -bedee -bedaw -bedatsky -bedar -beckor -becklin -beckes -beckelheimer -beaureguard -beauparlant -beau -beattle -beatson -beath -beards -bearded -beandoin -beady -beachman -beachell -bayus -baysden -bayouth -bayon -bayn -bayani -baxtor -bawks -bawer -bawcombe -baves -bautiste -baute -baurer -baumohl -baumli -baumkirchner -baumiester -baumgartel -baumgarn -baumfalk -bauchspies -bauce -batzri -battisto -batter -battenhouse -batteiger -batrich -batra -batlle -batlis -batliner -batkin -batchellor -bastick -bastardi -bassiti -basore -basone -baskow -basini -basila -bashline -baseley -bascas -barvosa -barvick -barus -bartuska -bartula -bartosik -bartosch -bartoli -bartmes -bartlette -bartkus -bartkiewicz -bartholomeu -barte -bartch -barsegyan -barschdoor -barscewski -barsamian -barryman -barrowman -barrois -barrish -barriault -barrete -barree -barran -baronne -barninger -barners -barnebey -barnak -barnacle -barlup -barlock -barlau -barlak -barken -barkema -barjenbruch -barillo -barill -barientos -baria -bargstadt -bargmann -bargeron -baresi -barera -barends -bardos -bardoner -bardill -bardell -barck -barcik -barchus -barchacky -barberr -barbaza -barbarito -barbare -barbalich -barbadillo -baranga -barahana -baradi -barad -barach -barabin -baquero -banwarth -bansmer -banse -banowski -bannett -bankos -bangura -banerji -banek -bandyk -bandura -bandasak -bandarra -bancourt -banco -bancks -banbury -bamforth -bambas -bambace -balzotti -balzarine -balza -balwinski -baltruweit -baltazor -balsis -baloy -balow -balock -balo -balm -balluch -ballowe -ballmann -ballez -balletto -ballesterous -ballena -ballejos -ballar -ballan -ballagas -balitas -balish -baligod -balich -baldwyn -balduzzi -baldos -balderree -baldearena -balda -balcos -balasko -balangatan -balak -baladejo -bakalars -bajko -bajek -baitner -baison -bairo -baiotto -bainey -bailleu -bailado -baibak -bahri -bahde -bahadue -bagwill -bagu -bagron -bagnaschi -baffa -baff -baeskens -baerg -baenziger -baena -baell -badzinski -badruddin -badlam -badey -badertscher -badenoch -badagliacca -bacone -bacman -backhuus -bacino -bachmeyer -bachinski -bachas -bachan -bacerra -bacayo -babson -bablak -babinski -babilon -babikian -babicz -babey -babbish -baarts -baack -azznara -azuma -azor -azatyan -azapinto -azahar -ayyad -aytes -aysien -aymar -aylock -ayhens -ayele -aydin -axtman -axman -awyie -aw -avona -avner -avison -avenia -aveles -avarbuch -avancena -autullo -autovino -autobee -auther -auter -austino -austine -auster -auslam -aurrichio -aun -auls -aulder -aufiero -audrey -audibert -audelhuk -auckley -auces -aubel -auala -atzinger -atzhorn -attwell -attles -attilio -attia -atthowe -atteburg -atmore -atma -atleh -atkisson -athy -atherholt -athanasiou -atengco -atamanczyk -astillero -astafan -assum -assis -assing -assenmacher -assalone -assael -asrari -aspri -aspley -asperheim -aspell -asnicar -asner -askiew -askia -aske -ask -ashly -ashkettle -ashing -ashbourne -ashbach -ashaf -asenjo -aseng -aseltine -ascol -aschbacher -asamoah -arzt -arzabala -arview -arvez -arvanitis -arva -arunachalam -arton -arties -artibee -arthun -artez -arters -arsham -arseneault -arroyd -arroyano -arrospide -arrocho -arrisola -arrindel -arrigone -arrellin -arredla -arrand -arrance -arquelles -arosemena -arollo -aroca -arntzen -arnsberger -arnitz -arnerich -arndell -arnaudet -arnao -arnaldo -army -armout -armold -armocida -armlin -armiso -armesto -armen -armada -arkontaky -arking -aristizabal -arisa -arildsen -arichabala -ariail -argulewicz -argudin -argro -argie -argenziano -argenti -arendash -arendall -arendale -arelleano -arehano -ards -ardeneaux -ardelean -ardaly -arciola -arcieri -archiopoli -archdale -archbell -arbon -arbolida -arbetman -arbertha -arau -arashiro -araneo -arancibia -araldi -aragones -aragao -arabajian -aquas -apthorpe -apshire -aprill -aprigliano -applonie -appl -appia -appana -aponta -aplington -apley -apker -apelian -apadaca -aono -ao -anzideo -anway -antronica -antosh -antonovich -antoniak -antolak -antila -antignani -anthes -antao -ansoategui -ansloan -anreozzi -anos -anolick -anoe -annuzzi -anning -annarino -annal -annable -annabel -anitok -aninion -animashaun -anidi -angocicco -angland -angiolelli -angileri -angilello -angier -angermeier -angelozzi -angelou -angellotti -angelillo -angelica -angalich -aney -anewalt -anetsberger -anesi -aneshansley -anene -anecelle -andrzejczyk -andrzejczak -andruszkiewic -andrson -androde -andriopulos -andrino -andrich -andreola -andregg -andreessen -andrango -andradez -andrades -andrachak -andoh -andina -anderst -anderholm -andere -andalora -anciso -ancic -ancel -ancar -ancalade -anawaty -anawalt -amys -amstrong -amspaugh -amous -amott -amoros -amormino -amoriello -amorello -amoe -amodt -ammonds -ammirata -ammer -amlin -amith -amistadi -amill -amigo -amerio -american -amentler -amemiya -amela -amejorado -amedro -amedeo -amburgy -ambroziak -ambrister -amboree -amboise -ambert -ambagis -amauty -amat -amas -amarian -amara -amalong -alwin -alwazan -alvirez -alvero -alverado -alty -altstatt -altsisi -altmark -altimus -altamiruno -alson -alsing -alsaqri -alrod -alquesta -alpis -alpheaus -alperin -aloy -alosta -aloan -alnoor -almsteadt -almstead -almos -almgren -almarza -almajhoub -allyne -allsbrooks -allon -allinger -alliman -alliance -allgire -allevato -alleshouse -alleruzzo -allerton -allder -allcock -allbert -allanson -allabaugh -alkins -alkema -alkana -aljemal -alisauskas -alimo -alimento -alie -alicer -alias -alhusseini -alhameed -alhambra -alhaddad -alfredo -alfiero -aleyandrez -alexidor -alexandropoul -alexanders -alexakis -alesse -alesna -alepin -alejandrez -aldworth -aldrow -aldrige -aldonza -alcine -alcantas -albu -albrough -albor -albe -albarracin -albarazi -alatosse -alarcone -alanko -aland -alamia -alameida -alambar -alai -akwei -aksoy -ako -akley -akinrefon -akimseu -akhavan -akhand -akery -akawanzie -akapo -akamiro -akal -ajoku -ajani -aiuto -aiudi -airth -aipperspach -aiporlani -aipopo -aiola -aini -ailsworth -aills -ailiff -aievoli -aid -aiava -ahyet -ahrenholz -ahnell -ahlo -ahlfield -ahlemeyer -ahimud -ahia -ahhee -ahaus -ahalt -agustino -agustine -agurs -agumga -aguele -agresto -agreda -agpaoa -agosti -agoro -agonoy -agoff -aggers -agemy -ageboi -agbisit -afurong -afshar -affronti -afflick -affeltranger -afable -aeillo -adule -adrion -adolphe -adolfson -adner -adloff -adling -adickes -adib -adelsperger -adelmund -adelizzi -addeo -adamsonis -adamsen -adamowski -adamos -adamec -adalja -acosto -acors -acorda -acock -acly -ackah -achin -aceveda -acerra -acerno -aceituno -acee -accala -acal -abusufait -abugn -abuel -absalon -abriola -abrey -abrell -abramovitz -abramoff -abramian -abrahamian -abousaleh -aboshihata -abolafia -ableman -abkemeier -abington -abina -abigantus -abide -abeta -abercombie -abdulmuniem -abdulaziz -abdou -abdelmuti -abdelaziz -abdelal -abbington -abbatiello -abajian -abaja -aarsvold -aarhus -aardema -aarant -aanderud -aalund -aalderink diff --git a/splunk_eventgen/samples/dist.female.first b/splunk_eventgen/samples/dist.female.first deleted file mode 100644 index 30a4ebb0..00000000 --- a/splunk_eventgen/samples/dist.female.first +++ /dev/null @@ -1,4275 +0,0 @@ -mary -patricia -linda -barbara -elizabeth -jennifer -maria -susan -margaret -dorothy -lisa -nancy -karen -betty -helen -sandra -donna -carol -ruth -sharon -michelle -laura -sarah -kimberly -deborah -jessica -shirley -cynthia -angela -melissa -brenda -amy -anna -rebecca -virginia -kathleen -pamela -martha -debra -amanda -stephanie -carolyn -christine -marie -janet -catherine -frances -ann -joyce -diane -alice -julie -heather -teresa -doris -gloria -evelyn -jean -cheryl -mildred -katherine -joan -ashley -judith -rose -janice -kelly -nicole -judy -christina -kathy -theresa -beverly -denise -tammy -irene -jane -lori -rachel -marilyn -andrea -kathryn -louise -sara -anne -jacqueline -wanda -bonnie -julia -ruby -lois -tina -phyllis -norma -paula -diana -annie -lillian -emily -robin -peggy -crystal -gladys -rita -dawn -connie -florence -tracy -edna -tiffany -carmen -rosa -cindy -grace -wendy -victoria -edith -kim -sherry -sylvia -josephine -thelma -shannon -sheila -ethel -ellen -elaine -marjorie -carrie -charlotte -monica -esther -pauline -emma -juanita -anita -rhonda -hazel -amber -eva -debbie -april -leslie -clara -lucille -jamie -joanne -eleanor -valerie -danielle -megan -alicia -suzanne -michele -gail -bertha -darlene -veronica -jill -erin -geraldine -lauren -cathy -joann -lorraine -lynn -sally -regina -erica -beatrice -dolores -bernice -audrey -yvonne -annette -june -samantha -marion -dana -stacy -ana -renee -ida -vivian -roberta -holly -brittany -melanie -loretta -yolanda -jeanette -laurie -katie -kristen -vanessa -alma -sue -elsie -beth -jeanne -vicki -carla -tara -rosemary -eileen -terri -gertrude -lucy -tonya -ella -stacey -wilma -gina -kristin -jessie -natalie -agnes -vera -willie -charlene -bessie -delores -melinda -pearl -arlene -maureen -colleen -allison -tamara -joy -georgia -constance -lillie -claudia -jackie -marcia -tanya -nellie -minnie -marlene -heidi -glenda -lydia -viola -courtney -marian -stella -caroline -dora -jo -vickie -mattie -terry -maxine -irma -mabel -marsha -myrtle -lena -christy -deanna -patsy -hilda -gwendolyn -jennie -nora -margie -nina -cassandra -leah -penny -kay -priscilla -naomi -carole -brandy -olga -billie -dianne -tracey -leona -jenny -felicia -sonia -miriam -velma -becky -bobbie -violet -kristina -toni -misty -mae -shelly -daisy -ramona -sherri -erika -katrina -claire -lindsey -lindsay -geneva -guadalupe -belinda -margarita -sheryl -cora -faye -ada -natasha -sabrina -isabel -marguerite -hattie -harriet -molly -cecilia -kristi -brandi -blanche -sandy -rosie -joanna -iris -eunice -angie -inez -lynda -madeline -amelia -alberta -genevieve -monique -jodi -janie -maggie -kayla -sonya -jan -lee -kristine -candace -fannie -maryann -opal -alison -yvette -melody -luz -susie -olivia -flora -shelley -kristy -mamie -lula -lola -verna -beulah -antoinette -candice -juana -jeannette -pam -kelli -hannah -whitney -bridget -karla -celia -latoya -patty -shelia -gayle -della -vicky -lynne -sheri -marianne -kara -jacquelyn -erma -blanca -myra -leticia -pat -krista -roxanne -angelica -johnnie -robyn -francis -adrienne -rosalie -alexandra -brooke -bethany -sadie -bernadette -traci -jody -kendra -jasmine -nichole -rachael -chelsea -mable -ernestine -muriel -marcella -elena -krystal -angelina -nadine -kari -estelle -dianna -paulette -lora -mona -doreen -rosemarie -angel -desiree -antonia -hope -ginger -janis -betsy -christie -freda -mercedes -meredith -lynette -teri -cristina -eula -leigh -meghan -sophia -eloise -rochelle -gretchen -cecelia -raquel -henrietta -alyssa -jana -kelley -gwen -kerry -jenna -tricia -laverne -olive -alexis -tasha -silvia -elvira -casey -delia -sophie -kate -patti -lorena -kellie -sonja -lila -lana -darla -may -mindy -essie -mandy -lorene -elsa -josefina -jeannie -miranda -dixie -lucia -marta -faith -lela -johanna -shari -camille -tami -shawna -elisa -ebony -melba -ora -nettie -tabitha -ollie -jaime -winifred -kristie -marina -alisha -aimee -rena -myrna -marla -tammie -latasha -bonita -patrice -ronda -sherrie -addie -francine -deloris -stacie -adriana -cheri -shelby -abigail -celeste -jewel -cara -adele -rebekah -lucinda -dorthy -chris -effie -trina -reba -shawn -sallie -aurora -lenora -etta -lottie -kerri -trisha -nikki -estella -francisca -josie -tracie -marissa -karin -brittney -janelle -lourdes -laurel -helene -fern -elva -corinne -kelsey -ina -bettie -elisabeth -aida -caitlin -ingrid -iva -eugenia -christa -goldie -cassie -maude -jenifer -therese -frankie -dena -lorna -janette -latonya -candy -morgan -consuelo -tamika -rosetta -debora -cherie -polly -dina -jewell -fay -jillian -dorothea -nell -trudy -esperanza -patrica -kimberley -shanna -helena -carolina -cleo -stefanie -rosario -ola -janine -mollie -lupe -alisa -lou -maribel -susanne -bette -susana -elise -cecile -isabelle -lesley -jocelyn -paige -joni -rachelle -leola -daphne -alta -ester -petra -graciela -imogene -jolene -keisha -lacey -glenna -gabriela -keri -ursula -lizzie -kirsten -shana -adeline -mayra -jayne -jaclyn -gracie -sondra -carmela -marisa -rosalind -charity -tonia -beatriz -marisol -clarice -jeanine -sheena -angeline -frieda -lily -robbie -shauna -millie -claudette -cathleen -angelia -gabrielle -autumn -katharine -summer -jodie -staci -lea -christi -jimmie -justine -elma -luella -margret -dominique -socorro -rene -martina -margo -mavis -callie -bobbi -maritza -lucile -leanne -jeannine -deana -aileen -lorie -ladonna -willa -manuela -gale -selma -dolly -sybil -abby -lara -dale -ivy -dee -winnie -marcy -luisa -jeri -magdalena -ofelia -meagan -audra -matilda -leila -cornelia -bianca -simone -bettye -randi -virgie -latisha -barbra -georgina -eliza -leann -bridgette -rhoda -haley -adela -nola -bernadine -flossie -ila -greta -ruthie -nelda -minerva -lilly -terrie -letha -hilary -estela -valarie -brianna -rosalyn -earline -catalina -ava -mia -clarissa -lidia -corrine -alexandria -concepcion -tia -sharron -rae -dona -ericka -jami -elnora -chandra -lenore -neva -marylou -melisa -tabatha -serena -avis -allie -sofia -jeanie -odessa -nannie -harriett -loraine -penelope -milagros -emilia -benita -allyson -ashlee -tania -tommie -esmeralda -karina -eve -pearlie -zelma -malinda -noreen -tameka -saundra -hillary -amie -althea -rosalinda -jordan -lilia -alana -gay -clare -alejandra -elinor -michael -lorrie -jerri -darcy -earnestine -carmella -taylor -noemi -marcie -liza -annabelle -louisa -earlene -mallory -carlene -nita -selena -tanisha -katy -julianne -john -lakisha -edwina -maricela -margery -kenya -dollie -roxie -roslyn -kathrine -nanette -charmaine -lavonne -ilene -kris -tammi -suzette -corine -kaye -jerry -merle -chrystal -lina -deanne -lilian -juliana -aline -luann -kasey -maryanne -evangeline -colette -melva -lawanda -yesenia -nadia -madge -kathie -eddie -ophelia -valeria -nona -mitzi -mari -georgette -claudine -fran -alissa -roseann -lakeisha -susanna -reva -deidre -chasity -sheree -carly -james -elvia -alyce -deirdre -gena -briana -araceli -katelyn -rosanne -wendi -tessa -berta -marva -imelda -marietta -marci -leonor -arline -sasha -madelyn -janna -juliette -deena -aurelia -josefa -augusta -liliana -young -christian -lessie -amalia -savannah -anastasia -vilma -natalia -rosella -lynnette -corina -alfreda -leanna -carey -amparo -coleen -tamra -aisha -wilda -karyn -cherry -queen -maura -mai -evangelina -rosanna -hallie -erna -enid -mariana -lacy -juliet -jacklyn -freida -madeleine -mara -hester -cathryn -lelia -casandra -bridgett -angelita -jannie -dionne -annmarie -katina -beryl -phoebe -millicent -katheryn -diann -carissa -maryellen -liz -lauri -helga -gilda -adrian -rhea -marquita -hollie -tisha -tamera -angelique -francesca -britney -kaitlin -lolita -florine -rowena -reyna -twila -fanny -janell -ines -concetta -bertie -alba -brigitte -alyson -vonda -pansy -elba -noelle -letitia -kitty -deann -brandie -louella -leta -felecia -sharlene -lesa -beverley -robert -isabella -herminia -terra -celina -tori -octavia -jade -denice -germaine -sierra -michell -cortney -nelly -doretha -sydney -deidra -monika -lashonda -judi -chelsey -antionette -margot -bobby -adelaide -nan -leeann -elisha -dessie -libby -kathi -gayla -latanya -mina -mellisa -kimberlee -jasmin -renae -zelda -elda -ma -justina -gussie -emilie -camilla -abbie -rocio -kaitlyn -jesse -edythe -ashleigh -selina -lakesha -geri -allene -pamala -michaela -dayna -caryn -rosalia -sun -jacquline -rebeca -marybeth -krystle -iola -dottie -bennie -belle -aubrey -griselda -ernestina -elida -adrianne -demetria -delma -chong -jaqueline -destiny -arleen -virgina -retha -fatima -tillie -eleanore -cari -treva -birdie -wilhelmina -rosalee -maurine -latrice -yong -jena -taryn -elia -debby -maudie -jeanna -delilah -catrina -shonda -hortencia -theodora -teresita -robbin -danette -maryjane -freddie -delphine -brianne -nilda -danna -cindi -bess -iona -hanna -ariel -winona -vida -rosita -marianna -william -racheal -guillermina -eloisa -celestine -caren -malissa -lona -chantel -shellie -marisela -leora -agatha -soledad -migdalia -ivette -christen -athena -janel -chloe -veda -pattie -tessie -tera -marilynn -lucretia -karrie -dinah -daniela -alecia -adelina -vernice -shiela -portia -merry -lashawn -devon -dara -tawana -oma -verda -christin -alene -zella -sandi -rafaela -maya -kira -candida -alvina -suzan -shayla -lyn -lettie -alva -samatha -oralia -matilde -madonna -larissa -vesta -renita -india -delois -shanda -phillis -lorri -erlinda -cruz -cathrine -barb -zoe -isabell -ione -gisela -charlie -valencia -roxanna -mayme -kisha -ellie -mellissa -dorris -dalia -bella -annetta -zoila -reta -reina -lauretta -kylie -christal -pilar -charla -elissa -tiffani -tana -paulina -leota -breanna -jayme -carmel -vernell -tomasa -mandi -dominga -santa -melodie -lura -alexa -tamela -ryan -mirna -kerrie -venus -noel -felicita -cristy -carmelita -berniece -annemarie -tiara -roseanne -missy -cori -roxana -pricilla -kristal -jung -elyse -haydee -aletha -bettina -marge -gillian -filomena -charles -zenaida -harriette -caridad -vada -una -aretha -pearline -marjory -marcela -flor -evette -elouise -alina -trinidad -david -damaris -catharine -carroll -belva -nakia -marlena -luanne -lorine -karon -dorene -danita -brenna -tatiana -sammie -louann -loren -julianna -andria -philomena -lucila -leonora -dovie -romona -mimi -jacquelin -gaye -tonja -misti -joe -gene -chastity -stacia -roxann -micaela -nikita -mei -velda -marlys -johnna -aura -lavern -ivonne -hayley -nicki -majorie -herlinda -george -alpha -yadira -perla -gregoria -daniel -antonette -shelli -mozelle -mariah -joelle -cordelia -josette -chiquita -trista -louis -laquita -georgiana -candi -shanon -lonnie -hildegard -cecil -valentina -stephany -magda -karol -gerry -gabriella -tiana -roma -richelle -ray -princess -oleta -jacque -idella -alaina -suzanna -jovita -blair -tosha -raven -nereida -marlyn -kyla -joseph -delfina -tena -stephenie -sabina -nathalie -marcelle -gertie -darleen -thea -sharonda -shantel -belen -venessa -rosalina -ona -genoveva -corey -clementine -rosalba -renate -renata -mi -ivory -georgianna -floy -dorcas -ariana -tyra -theda -mariam -juli -jesica -donnie -vikki -verla -roselyn -melvina -jannette -ginny -debrah -corrie -asia -violeta -myrtis -latricia -collette -charleen -anissa -viviana -twyla -precious -nedra -latonia -lan -hellen -fabiola -annamarie -adell -sharyn -chantal -niki -maud -lizette -lindy -kia -kesha -jeana -danelle -charline -chanel -carrol -valorie -lia -dortha -cristal -sunny -leone -leilani -gerri -debi -andra -keshia -ima -eulalia -easter -dulce -natividad -linnie -kami -georgie -catina -brook -alda -winnifred -sharla -ruthann -meaghan -magdalene -lissette -adelaida -venita -trena -shirlene -shameka -elizebeth -dian -shanta -mickey -latosha -carlotta -windy -soon -rosina -mariann -leisa -jonnie -dawna -cathie -billy -astrid -sidney -laureen -janeen -holli -fawn -vickey -teressa -shante -rubye -marcelina -chanda -cary -terese -scarlett -marty -marnie -lulu -lisette -jeniffer -elenor -dorinda -donita -carman -bernita -altagracia -aleta -adrianna -zoraida -ronnie -nicola -lyndsey -kendall -janina -chrissy -ami -starla -phylis -phuong -kyra -charisse -blanch -sanjuanita -rona -nanci -marilee -maranda -cory -brigette -sanjuana -marita -kassandra -joycelyn -ira -felipa -chelsie -bonny -mireya -lorenza -kyong -ileana -candelaria -tony -toby -sherie -ok -mark -lucie -leatrice -lakeshia -gerda -edie -bambi -marylin -lavon -hortense -garnet -evie -tressa -shayna -lavina -kyung -jeanetta -sherrill -shara -phyliss -mittie -anabel -alesia -thuy -tawanda -richard -joanie -tiffanie -lashanda -karissa -enriqueta -daria -daniella -corinna -alanna -abbey -roxane -roseanna -magnolia -lida -kyle -joellen -era -coral -carleen -tresa -peggie -novella -nila -maybelle -jenelle -carina -nova -melina -marquerite -margarette -josephina -evonne -devin -cinthia -albina -toya -tawnya -sherita -santos -myriam -lizabeth -lise -keely -jenni -giselle -cheryle -ardith -ardis -alesha -adriane -shaina -linnea -karolyn -hong -florida -felisha -dori -darci -artie -armida -zola -xiomara -vergie -shamika -nena -nannette -maxie -lovie -jeane -jaimie -inge -farrah -elaina -caitlyn -starr -felicitas -cherly -caryl -yolonda -yasmin -teena -prudence -pennie -nydia -mackenzie -orpha -marvel -lizbeth -laurette -jerrie -hermelinda -carolee -tierra -mirian -meta -melony -kori -jennette -jamila -ena -anh -yoshiko -susannah -salina -rhiannon -joleen -cristine -ashton -aracely -tomeka -shalonda -marti -lacie -kala -jada -ilse -hailey -brittani -zona -syble -sherryl -randy -nidia -marlo -kandice -kandi -deb -dean -america -alycia -tommy -ronna -norene -mercy -jose -ingeborg -giovanna -gemma -christel -audry -zora -vita -van -trish -stephaine -shirlee -shanika -melonie -mazie -jazmin -inga -hoa -hettie -geralyn -fonda -estrella -adella -su -sarita -rina -milissa -maribeth -golda -evon -ethelyn -enedina -cherise -chana -velva -tawanna -sade -mirta -li -karie -jacinta -elna -davina -cierra -ashlie -albertha -tanesha -stephani -nelle -mindi -lu -lorinda -larue -florene -demetra -dedra -ciara -chantelle -ashly -suzy -rosalva -noelia -lyda -leatha -krystyna -kristan -karri -darline -darcie -cinda -cheyenne -cherrie -awilda -almeda -rolanda -lanette -jerilyn -gisele -evalyn -cyndi -cleta -carin -zina -zena -velia -tanika -paul -charissa -thomas -talia -margarete -lavonda -kaylee -kathlene -jonna -irena -ilona -idalia -candis -candance -brandee -anitra -alida -sigrid -nicolette -maryjo -linette -hedwig -christiana -cassidy -alexia -tressie -modesta -lupita -lita -gladis -evelia -davida -cherri -cecily -ashely -annabel -agustina -wanita -shirly -rosaura -hulda -eun -bailey -yetta -verona -thomasina -sibyl -shannan -mechelle -lue -leandra -lani -kylee -kandy -jolynn -ferne -eboni -corene -alysia -zula -nada -moira -lyndsay -lorretta -juan -jammie -hortensia -gaynell -cameron -adria -vina -vicenta -tangela -stephine -norine -nella -liana -leslee -kimberely -iliana -glory -felica -emogene -elfriede -eden -eartha -carma -bea -ocie -marry -lennie -kiara -jacalyn -carlota -arielle -yu -star -otilia -kirstin -kacey -johnetta -joey -joetta -jeraldine -jaunita -elana -dorthea -cami -amada -adelia -vernita -tamar -siobhan -renea -rashida -ouida -odell -nilsa -meryl -kristyn -julieta -danica -breanne -aurea -anglea -sherron -odette -malia -lorelei -lin -leesa -kenna -kathlyn -fiona -charlette -suzie -shantell -sabra -racquel -myong -mira -martine -lucienne -lavada -juliann -johnie -elvera -delphia -clair -christiane -charolette -carri -augustine -asha -angella -paola -ninfa -leda -lai -eda -sunshine -stefani -shanell -palma -machelle -lissa -kecia -kathryne -karlene -julissa -jettie -jenniffer -hui -corrina -christopher -carolann -alena -tess -rosaria -myrtice -marylee -liane -kenyatta -judie -janey -in -elmira -eldora -denna -cristi -cathi -zaida -vonnie -viva -vernie -rosaline -mariela -luciana -lesli -karan -felice -deneen -adina -wynona -tarsha -sheron -shasta -shanita -shani -shandra -randa -pinkie -paris -nelida -marilou -lyla -laurene -laci -joi -janene -dorotha -daniele -dani -carolynn -carlyn -berenice -ayesha -anneliese -alethea -thersa -tamiko -rufina -oliva -mozell -marylyn -madison -kristian -kathyrn -kasandra -kandace -janae -gabriel -domenica -debbra -dannielle -chun -buffy -barbie -arcelia -aja -zenobia -sharen -sharee -patrick -page -my -lavinia -kum -kacie -jackeline -huong -felisa -emelia -eleanora -cythia -cristin -clyde -claribel -caron -anastacia -zulma -zandra -yoko -tenisha -susann -sherilyn -shay -shawanda -sabine -romana -mathilda -linsey -keiko -joana -isela -gretta -georgetta -eugenie -dusty -desirae -delora -corazon -antonina -anika -willene -tracee -tamatha -regan -nichelle -mickie -maegan -luana -lanita -kelsie -edelmira -bree -afton -teodora -tamie -shena -meg -linh -keli -kaci -danyelle -britt -arlette -albertine -adelle -tiffiny -stormy -simona -numbers -nicolasa -nichol -nia -nakisha -mee -maira -loreen -kizzy -johnny -jay -fallon -christene -bobbye -anthony -ying -vincenza -tanja -rubie -roni -queenie -margarett -kimberli -irmgard -idell -hilma -evelina -esta -emilee -dennise -dania -carl -carie -antonio -wai -sang -risa -rikki -particia -mui -masako -mario -luvenia -loree -loni -lien -kevin -gigi -florencia -dorian -denita -dallas -chi -billye -alexander -tomika -sharita -rana -nikole -neoma -margarite -madalyn -lucina -laila -kali -jenette -gabriele -evelyne -elenora -clementina -alejandrina -zulema -violette -vannessa -thresa -retta -pia -patience -noella -nickie -jonell -delta -chung -chaya -camelia -bethel -anya -andrew -thanh -suzann -spring -shu -mila -lilla -laverna -keesha -kattie -gia -georgene -eveline -estell -elizbeth -vivienne -vallie -trudie -stephane -michel -magaly -madie -kenyetta -karren -janetta -hermine -harmony -drucilla -debbi -celestina -candie -britni -beckie -amina -zita -yun -yolande -vivien -vernetta -trudi -sommer -pearle -patrina -ossie -nicolle -loyce -letty -larisa -katharina -joselyn -jonelle -jenell -iesha -heide -florinda -florentina -flo -elodia -dorine -brunilda -brigid -ashli -ardella -twana -thu -tarah -sung -shea -shavon -shane -serina -rayna -ramonita -nga -margurite -lucrecia -kourtney -kati -jesus -jesenia -diamond -crista -ayana -alica -alia -vinnie -suellen -romelia -rachell -piper -olympia -michiko -kathaleen -jolie -jessi -janessa -hana -ha -elease -carletta -britany -shona -salome -rosamond -regena -raina -ngoc -nelia -louvenia -lesia -latrina -laticia -larhonda -jina -jacki -hollis -holley -emmy -deeann -coretta -arnetta -velvet -thalia -shanice -neta -mikki -micki -lonna -leana -lashunda -kiley -joye -jacqulyn -ignacia -hyun -hiroko -henry -henriette -elayne -delinda -darnell -dahlia -coreen -consuela -conchita -celine -babette -ayanna -anette -albertina -skye -shawnee -shaneka -quiana -pamelia -min -merri -merlene -margit -kiesha -kiera -kaylene -jodee -jenise -erlene -emmie -else -daryl -dalila -daisey -cody -casie -belia -babara -versie -vanesa -shelba -shawnda -sam -norman -nikia -naoma -marna -margeret -madaline -lawana -kindra -jutta -jazmine -janett -hannelore -glendora -gertrud -garnett -freeda -frederica -florance -flavia -dennis -carline -beverlee -anjanette -valda -trinity -tamala -stevie -shonna -sha -sarina -oneida -micah -merilyn -marleen -lurline -lenna -katherin -jin -jeni -hae -gracia -glady -farah -eric -enola -ema -dominque -devona -delana -cecila -caprice -alysha -ali -alethia -vena -theresia -tawny -song -shakira -samara -sachiko -rachele -pamella -nicky -marni -mariel -maren -malisa -ligia -lera -latoria -larae -kimber -kathern -karey -jennefer -janeth -halina -fredia -delisa -debroah -ciera -chin -angelika -andree -altha -yen -vivan -terresa -tanna -suk -sudie -soo -signe -salena -ronni -rebbecca -myrtie -mckenzie -malika -maida -loan -leonarda -kayleigh -france -ethyl -ellyn -dayle -cammie -brittni -birgit -avelina -asuncion -arianna -akiko -venice -tyesha -tonie -tiesha -takisha -steffanie -sindy -santana -meghann -manda -macie -lady -kellye -kellee -joslyn -jason -inger -indira -glinda -glennis -fernanda -faustina -eneida -elicia -dot -digna -dell -arletta -andre -willia -tammara -tabetha -sherrell -sari -refugio -rebbeca -pauletta -nieves -natosha -nakita -mammie -kenisha -kazuko -kassie -gary -earlean -daphine -corliss -clotilde -carolyne -bernetta -augustina -audrea -annis -annabell -yan -tennille -tamica -selene -sean -rosana -regenia -qiana -markita -macy -leeanne -laurine -kym -jessenia -janita -georgine -genie -emiko -elvie -deandra -dagmar -corie -collen -cherish -romaine -porsha -pearlene -micheline -merna -margorie -margaretta -lore -kenneth -jenine -hermina -fredericka -elke -drusilla -dorathy -dione -desire -celena -brigida -angeles -allegra -theo -tamekia -synthia -stephen -sook -slyvia -rosann -reatha -raye -marquetta -margart -ling -layla -kymberly -kiana -kayleen -katlyn -karmen -joella -irina -emelda -eleni -detra -clemmie -cheryll -chantell -cathey -arnita -arla -angle -angelic -alyse -zofia -thomasine -tennie -son -sherly -sherley -sharyl -remedios -petrina -nickole -myung -myrle -mozella -louanne -lisha -latia -lane -krysta -julienne -joel -jeanene -jacqualine -isaura -gwenda -earleen -donald -cleopatra -carlie -audie -antonietta -alise -alex -verdell -val -tyler -tomoko -thao -talisha -steven -so -shemika -shaun -scarlet -savanna -santina -rosia -raeann -odilia -nana -minna -magan -lynelle -le -karma -joeann -ivana -inell -ilana -hye -honey -hee -gudrun -frank -dreama -crissy -chante -carmelina -arvilla -arthur -annamae -alvera -aleida -aaron -yee -yanira -vanda -tianna -tam -stefania -shira -perry -nicol -nancie -monserrate -minh -melynda -melany -matthew -lovella -laure -kirby -kacy -jacquelynn -hyon -gertha -francisco -eliana -christena -christeen -charise -caterina -carley -candyce -arlena -ammie -yang -willette -vanita -tuyet -tiny -syreeta -silva -scott -ronald -penney -nyla -michal -maurice -maryam -marya -magen -ludie -loma -livia -lanell -kimberlie -julee -donetta -diedra -denisha -deane -dawne -clarine -cherryl -bronwyn -brandon -alla -valery -tonda -sueann -soraya -shoshana -shela -sharleen -shanelle -nerissa -micheal -meridith -mellie -maye -maple -magaret -luis -lili -leonila -leonie -leeanna -lavonia -lavera -kristel -kathey -kathe -justin -julian -jimmy -jann -ilda -hildred -hildegarde -genia -fumiko -evelin -ermelinda -elly -dung -doloris -dionna -danae -berneice -annice -alix -verena -verdie -tristan -shawnna -shawana -shaunna -rozella -randee -ranae -milagro -lynell -luise -louie -loida -lisbeth -karleen -junita -jona -isis -hyacinth -hedy -gwenn -ethelene -erline -edward -donya -domonique -delicia -dannette -cicely -branda -blythe -bethann -ashlyn -annalee -alline -yuko -vella -trang -towanda -tesha -sherlyn -narcisa -miguelina -meri -maybell -marlana -marguerita -madlyn -luna -lory -loriann -liberty -leonore -leighann -laurice -latesha -laronda -katrice -kasie -karl -kaley -jadwiga -glennie -gearldine -francina -epifania -dyan -dorie -diedre -denese -demetrice -delena -darby -cristie -cleora -catarina -carisa -bernie -barbera -almeta -trula -tereasa -solange -sheilah -shavonne -sanora -rochell -mathilde -margareta -maia -lynsey -lawanna -launa -kena -keena -katia -jamey -glynda -gaylene -elvina -elanor -danuta -danika -cristen -cordie -coletta -clarita -carmon -brynn -azucena -aundrea -angele -yi -walter -verlie -verlene -tamesha -silvana -sebrina -samira -reda -raylene -penni -pandora -norah -noma -mireille -melissia -maryalice -laraine -kimbery -karyl -karine -kam -jolanda -johana -jesusa -jaleesa -jae -jacquelyne -irish -iluminada -hilaria -hanh -gennie -francie -floretta -exie -edda -drema -delpha -bev -barbar -assunta -ardell -annalisa -alisia -yukiko -yolando -wonda -wei -waltraud -veta -tequila -temeka -tameika -shirleen -shenita -piedad -ozella -mirtha -marilu -kimiko -juliane -jenice -jen -janay -jacquiline -hilde -fe -fae -evan -eugene -elois -echo -devorah -chau -brinda -betsey -arminda -aracelis -apryl -annett -alishia -veola -usha -toshiko -theola -tashia -talitha -shery -rudy -renetta -reiko -rasheeda -omega -obdulia -mika -melaine -meggan -martin -marlen -marget -marceline -mana -magdalen -librada -lezlie -lexie -latashia -lasandra -kelle -isidra -isa -inocencia -gwyn -francoise -erminia -erinn -dimple -devora -criselda -armanda -arie -ariane -angelo -angelena -allen -aliza -adriene -adaline -xochitl -twanna -tran -tomiko -tamisha -taisha -susy -siu -rutha -roxy -rhona -raymond -otha -noriko -natashia -merrie -melvin -marinda -mariko -margert -loris -lizzette -leisha -kaila -ka -joannie -jerrica -jene -jannet -janee -jacinda -herta -elenore -doretta -delaine -daniell -claudie -china -britta -apolonia -amberly -alease -yuri -yuk -wen -waneta -ute -tomi -sharri -sandie -roselle -reynalda -raguel -phylicia -patria -olimpia -odelia -mitzie -mitchell -miss -minda -mignon -mica -mendy -marivel -maile -lynetta -lavette -lauryn -latrisha -lakiesha -kiersten -kary -josphine -jolyn -jetta -janise -jacquie -ivelisse -glynis -gianna -gaynelle -emerald -demetrius -danyell -danille -dacia -coralee -cher -ceola -brett -bell -arianne -aleshia -yung -williemae -troy -trinh -thora -tai -svetlana -sherika -shemeka -shaunda -roseline -ricki -melda -mallie -lavonna -latina -larry -laquanda -lala -lachelle -klara -kandis -johna -jeanmarie -jaye -hang -grayce -gertude -emerita -ebonie -clorinda -ching -chery -carola -breann -blossom -bernardine -becki -arletha -argelia -ara -alita -yulanda -yon -yessenia -tobi -tasia -sylvie -shirl -shirely -sheridan -shella -shantelle -sacha -royce -rebecka -reagan -providencia -paulene -misha -miki -marline -marica -lorita -latoyia -lasonya -kerstin -kenda -keitha -kathrin -jaymie -jack -gricelda -ginette -eryn -elina -elfrieda -danyel -cheree -chanelle -barrie -avery -aurore -annamaria -alleen -ailene -aide -yasmine -vashti -valentine -treasa -tory -tiffaney -sheryll -sharie -shanae -sau -raisa -pa -neda -mitsuko -mirella -milda -maryanna -maragret -mabelle -luetta -lorina -letisha -latarsha -lanelle -lajuana -krissy -karly -karena -jon -jessika -jerica -jeanelle -january -jalisa -jacelyn -izola -ivey -gregory -euna -etha -drew -domitila -dominica -daina -creola -carli -camie -bunny -brittny -ashanti -anisha -aleen -adah -yasuko -winter -viki -valrie -tona -tinisha -thi -terisa -tatum -taneka -simonne -shalanda -serita -ressie -refugia -paz -olene -na -merrill -margherita -mandie -man -maire -lyndia -luci -lorriane -loreta -leonia -lavona -lashawnda -lakia -kyoko -krystina -krysten -kenia -kelsi -jude -jeanice -isobel -georgiann -genny -felicidad -eilene -deon -deloise -deedee -dannie -conception -clora -cherilyn -chang -calandra -berry -armandina -anisa -ula -timothy -tiera -theressa -stephania -sima -shyla -shonta -shera -shaquita -shala -sammy -rossana -nohemi -nery -moriah -melita -melida -melani -marylynn -marisha -mariette -malorie -madelene -ludivina -loria -lorette -loralee -lianne -leon -lavenia -laurinda -lashon -kit -kimi -keila -katelynn -kai -jone -joane -ji -jayna -janella -ja -hue -hertha -francene -elinore -despina -delsie -deedra -clemencia -carry -carolin -carlos -bulah -brittanie -bok -blondell -bibi -beaulah -beata -annita -agripina -virgen -valene -un -twanda -tommye -toi -tarra -tari -tammera -shakia -sadye -ruthanne -rochel -rivka -pura -nenita -natisha -ming -merrilee -melodee -marvis -lucilla -leena -laveta -larita -lanie -keren -ileen -georgeann -genna -genesis -frida -ewa -eufemia -emely -ela -edyth -deonna -deadra -darlena -chanell -chan -cathern -cassondra -cassaundra -bernarda -berna -arlinda -anamaria -albert -wesley -vertie -valeri -torri -tatyana -stasia -sherise -sherill -season -scottie -sanda -ruthe -rosy -roberto -robbi -ranee -quyen -pearly -palmira -onita -nisha -niesha -nida -nevada -nam -merlyn -mayola -marylouise -maryland -marx -marth -margene -madelaine -londa -leontine -leoma -leia -lawrence -lauralee -lanora -lakita -kiyoko -keturah -katelin -kareen -jonie -johnette -jenee -jeanett -izetta -hiedi -heike -hassie -harold -giuseppina -georgann -fidela -fernande -elwanda -ellamae -eliz -dusti -dotty -cyndy -coralie -celesta -argentina -alverta -xenia -wava -vanetta -torrie -tashina -tandy -tambra -tama -stepanie -shila -shaunta -sharan -shaniqua -shae -setsuko -serafina -sandee -rosamaria -priscila -olinda -nadene -muoi -michelina -mercedez -maryrose -marin -marcene -mao -magali -mafalda -logan -linn -lannie -kayce -karoline -kamilah -kamala -justa -joline -jennine -jacquetta -iraida -gerald -georgeanna -franchesca -fairy -emeline -elane -ehtel -earlie -dulcie -dalene -cris -classie -chere -charis -caroyln -carmina -carita -brian -bethanie -ayako -arica -an -alysa -alessandra -akilah -adrien -zetta -youlanda -yelena -yahaira -xuan -wendolyn -victor -tijuana -terrell -terina -teresia -suzi -sunday -sherell -shavonda -shaunte -sharda -shakita -sena -ryann -rubi -riva -reginia -rea -rachal -parthenia -pamula -monnie -monet -michaele -melia -marine -malka -maisha -lisandra -leo -lekisha -lean -laurence -lakendra -krystin -kortney -kizzie -kittie -kera -kendal -kemberly -kanisha -julene -jule -joshua -johanne -jeffrey -jamee -han -halley -gidget -galina -fredricka -fleta -fatimah -eusebia -elza -eleonore -dorthey -doria -donella -dinorah -delorse -claretha -christinia -charlyn -bong -belkis -azzie -andera -aiko -adena -yer -yajaira -wan -vania -ulrike -toshia -tifany -stefany -shizue -shenika -shawanna -sharolyn -sharilyn -shaquana -shantay -see -rozanne -roselee -rickie -remona -reanna -raelene -quinn -phung -petronila -natacha -nancey -myrl -miyoko -miesha -merideth -marvella -marquitta -marhta -marchelle -lizeth -libbie -lahoma -ladawn -kina -katheleen -katharyn -karisa -kaleigh -junie -julieann -johnsie -janean -jaimee -jackqueline -hisako -herma -helaine -gwyneth -glenn -gita -eustolia -emelina -elin -edris -donnette -donnetta -dierdre -denae -darcel -claude -clarisa -cinderella -chia -charlesetta -charita -celsa -cassy -cassi -carlee -bruna -brittaney -brande -billi -bao -antonetta -angla -angelyn -analisa -alane -wenona -wendie -veronique -vannesa -tobie -tempie -sumiko -sulema -sparkle -somer -sheba -shayne -sharice -shanel -shalon -sage -roy -rosio -roselia -renay -rema -reena -porsche -ping -peg -ozie -oretha -oralee -oda -nu -ngan -nakesha -milly -marybelle -marlin -maris -margrett -maragaret -manie -lurlene -lillia -lieselotte -lavelle -lashaunda -lakeesha -keith -kaycee -kalyn -joya -joette -jenae -janiece -illa -grisel -glayds -genevie -gala -fredda -fred -elmer -eleonor -debera -deandrea -dan -corrinne -cordia -contessa -colene -cleotilde -charlott -chantay -cecille -beatris -azalee -arlean -ardath -anjelica -anja -alfredia -aleisha -adam -zada -yuonne -xiao -willodean -whitley -vennie -vanna -tyisha -tova -torie -tonisha -tilda -tien -temple -sirena -sherril -shanti -shan -senaida -samella -robbyn -renda -reita -phebe -paulita -nobuko -nguyet -neomi -moon -mikaela -melania -maximina -marg -maisie -lynna -lilli -layne -lashaun -lakenya -lael -kirstie -kathline -kasha -karlyn -karima -jovan -josefine -jennell -jacqui -jackelyn -hyo -hien -grazyna -florrie -floria -eleonora -dwana -dorla -dong -delmy -deja -dede -dann -crysta -clelia -claris -clarence -chieko -cherlyn -cherelle -charmain -chara -cammy -bee -arnette -ardelle -annika -amiee -amee -allena -yvone -yuki -yoshie -yevette -yael -willetta -voncile -venetta -tula -tonette -timika -temika -telma -teisha -taren -ta -stacee -shin -shawnta -saturnina -ricarda -pok -pasty -onie -nubia -mora -mike -marielle -mariella -marianela -mardell -many -luanna -loise -lisabeth -lindsy -lilliana -lilliam -lelah -leigha -leanora -lang -kristeen -khalilah -keeley -kandra -junko -joaquina -jerlene -jani -jamika -jame -hsiu -hermila -golden -genevive -evia -eugena -emmaline -elfreda -elene -donette -delcie -deeanna -darcey -cuc -clarinda -cira -chae -celinda -catheryn -catherin -casimira -carmelia -camellia -breana -bobette -bernardina -bebe -basilia -arlyne -amal -alayna -zonia -zenia -yuriko -yaeko -wynell -willow -willena -vernia -tu -travis -tora -terrilyn -terica -tenesha -tawna -tajuana -taina -stephnie -sona -sol -sina -shondra -shizuko -sherlene -sherice -sharika -rossie -rosena -rory -rima -ria -rheba -renna -peter -natalya -nancee -melodi -meda -maxima -matha -marketta -maricruz -marcelene -malvina -luba -louetta -leida -lecia -lauran -lashawna -laine -khadijah -katerine -kasi -kallie -julietta -jesusita -jestine -jessia -jeremy -jeffie -janyce -isadora -georgianne -fidelia -evita -eura -eulah -estefana -elsy -elizabet -eladia -dodie -dion -dia -denisse -deloras -delila -daysi -dakota -curtis -crystle -concha -colby -claretta -chu -christia -charlsie -charlena -carylon -bettyann -asley -ashlea -amira -ai -agueda -agnus -yuette -vinita -victorina -tynisha -treena -toccara -tish -thomasena -tegan -soila -shiloh -shenna -sharmaine -shantae -shandi -september -saran -sarai -sana -samuel -salley -rosette -rolande -regine -otelia -oscar -olevia -nicholle -necole -naida -myrta -myesha -mitsue -minta -mertie -margy -mahalia -madalene -love -loura -lorean -lewis -lesha -leonida -lenita -lavone -lashell -lashandra -lamonica -kimbra -katherina -karry -kanesha -julio -jong -jeneva -jaquelyn -hwa -gilma -ghislaine -gertrudis -fransisca -fermina -ettie -etsuko -ellis -ellan -elidia -edra -dorethea -doreatha -denyse -denny -deetta -daine -cyrstal -corrin -cayla -carlita -camila -burma -bula -buena -blake -barabara -avril -austin -alaine -zana -wilhemina -wanetta -virgil -vi -veronika -vernon -verline -vasiliki -tonita -tisa -teofila -tayna -taunya -tandra -takako -sunni -suanne -sixta -sharell -seema -russell -rosenda -robena -raymonde -pei -pamila -ozell -neida -neely -mistie -micha -merissa -maurita -maryln -maryetta -marshall -marcell -malena -makeda -maddie -lovetta -lourie -lorrine -lorilee -lester -laurena -lashay -larraine -laree -lacresha -kristle -krishna -keva -keira -karole -joie -jinny -jeannetta -jama -heidy -gilberte -gema -faviola -evelynn -enda -elli -ellena -divina -dagny -collene -codi -cindie -chassidy -chasidy -catrice -catherina -cassey -caroll -carlena -candra -calista -bryanna -britteny -beula -bari -audrie -audria -ardelia -annelle -angila -alona -allyn diff --git a/splunk_eventgen/samples/dist.male.first b/splunk_eventgen/samples/dist.male.first deleted file mode 100644 index 95b473d0..00000000 --- a/splunk_eventgen/samples/dist.male.first +++ /dev/null @@ -1,1219 +0,0 @@ -james -john -robert -michael -william -david -richard -charles -joseph -thomas -christopher -daniel -paul -mark -donald -george -kenneth -steven -edward -brian -ronald -anthony -kevin -jason -matthew -gary -timothy -jose -larry -jeffrey -frank -scott -eric -stephen -andrew -raymond -gregory -joshua -jerry -dennis -walter -patrick -peter -harold -douglas -henry -carl -arthur -ryan -roger -joe -juan -jack -albert -jonathan -justin -terry -gerald -keith -samuel -willie -ralph -lawrence -nicholas -roy -benjamin -bruce -brandon -adam -harry -fred -wayne -billy -steve -louis -jeremy -aaron -randy -howard -eugene -carlos -russell -bobby -victor -martin -ernest -phillip -todd -jesse -craig -alan -shawn -clarence -sean -philip -chris -johnny -earl -jimmy -antonio -danny -bryan -tony -luis -mike -stanley -leonard -nathan -dale -manuel -rodney -curtis -norman -allen -marvin -vincent -glenn -jeffery -travis -jeff -chad -jacob -lee -melvin -alfred -kyle -francis -bradley -jesus -herbert -frederick -ray -joel -edwin -don -eddie -ricky -troy -randall -barry -alexander -bernard -mario -leroy -francisco -marcus -micheal -theodore -clifford -miguel -oscar -jay -jim -tom -calvin -alex -jon -ronnie -bill -lloyd -tommy -leon -derek -warren -darrell -jerome -floyd -leo -alvin -tim -wesley -gordon -dean -greg -jorge -dustin -pedro -derrick -dan -lewis -zachary -corey -herman -maurice -vernon -roberto -clyde -glen -hector -shane -ricardo -sam -rick -lester -brent -ramon -charlie -tyler -gilbert -gene -marc -reginald -ruben -brett -angel -nathaniel -rafael -leslie -edgar -milton -raul -ben -chester -cecil -duane -franklin -andre -elmer -brad -gabriel -ron -mitchell -roland -arnold -harvey -jared -adrian -karl -cory -claude -erik -darryl -jamie -neil -jessie -christian -javier -fernando -clinton -ted -mathew -tyrone -darren -lonnie -lance -cody -julio -kelly -kurt -allan -nelson -guy -clayton -hugh -max -dwayne -dwight -armando -felix -jimmie -everett -jordan -ian -wallace -ken -bob -jaime -casey -alfredo -alberto -dave -ivan -johnnie -sidney -byron -julian -isaac -morris -clifton -willard -daryl -ross -virgil -andy -marshall -salvador -perry -kirk -sergio -marion -tracy -seth -kent -terrance -rene -eduardo -terrence -enrique -freddie -wade -austin -stuart -fredrick -arturo -alejandro -jackie -joey -nick -luther -wendell -jeremiah -evan -julius -dana -donnie -otis -shannon -trevor -oliver -luke -homer -gerard -doug -kenny -hubert -angelo -shaun -lyle -matt -lynn -alfonso -orlando -rex -carlton -ernesto -cameron -neal -pablo -lorenzo -omar -wilbur -blake -grant -horace -roderick -kerry -abraham -willis -rickey -jean -ira -andres -cesar -johnathan -malcolm -rudolph -damon -kelvin -rudy -preston -alton -archie -marco -wm -pete -randolph -garry -geoffrey -jonathon -felipe -bennie -gerardo -ed -dominic -robin -loren -delbert -colin -guillermo -earnest -lucas -benny -noel -spencer -rodolfo -myron -edmund -garrett -salvatore -cedric -lowell -gregg -sherman -wilson -devin -sylvester -kim -roosevelt -israel -jermaine -forrest -wilbert -leland -simon -guadalupe -clark -irving -carroll -bryant -owen -rufus -woodrow -sammy -kristopher -mack -levi -marcos -gustavo -jake -lionel -marty -taylor -ellis -dallas -gilberto -clint -nicolas -laurence -ismael -orville -drew -jody -ervin -dewey -al -wilfred -josh -hugo -ignacio -caleb -tomas -sheldon -erick -frankie -stewart -doyle -darrel -rogelio -terence -santiago -alonzo -elias -bert -elbert -ramiro -conrad -pat -noah -grady -phil -cornelius -lamar -rolando -clay -percy -dexter -bradford -merle -darin -amos -terrell -moses -irvin -saul -roman -darnell -randal -tommie -timmy -darrin -winston -brendan -toby -van -abel -dominick -boyd -courtney -jan -emilio -elijah -cary -domingo -santos -aubrey -emmett -marlon -emanuel -jerald -edmond -emil -dewayne -will -otto -teddy -reynaldo -bret -morgan -jess -trent -humberto -emmanuel -stephan -louie -vicente -lamont -stacy -garland -miles -micah -efrain -billie -logan -heath -rodger -harley -demetrius -ethan -eldon -rocky -pierre -junior -freddy -eli -bryce -antoine -robbie -kendall -royce -sterling -mickey -chase -grover -elton -cleveland -dylan -chuck -damian -reuben -stan -august -leonardo -jasper -russel -erwin -benito -hans -monte -blaine -ernie -curt -quentin -agustin -murray -jamal -devon -adolfo -harrison -tyson -burton -brady -elliott -wilfredo -bart -jarrod -vance -denis -damien -joaquin -harlan -desmond -elliot -darwin -ashley -gregorio -buddy -xavier -kermit -roscoe -esteban -anton -solomon -scotty -norbert -elvin -williams -nolan -carey -rod -quinton -hal -brain -rob -elwood -kendrick -darius -moises -son -marlin -fidel -thaddeus -cliff -marcel -ali -jackson -raphael -bryon -armand -alvaro -jeffry -dane -joesph -thurman -ned -sammie -rusty -michel -monty -rory -fabian -reggie -mason -graham -kris -isaiah -vaughn -gus -avery -loyd -diego -alexis -adolph -norris -millard -rocco -gonzalo -derick -rodrigo -gerry -stacey -carmen -wiley -rigoberto -alphonso -ty -shelby -rickie -noe -vern -bobbie -reed -jefferson -elvis -bernardo -mauricio -hiram -donovan -basil -riley -ollie -nickolas -maynard -scot -vince -quincy -eddy -sebastian -federico -ulysses -heriberto -donnell -cole -denny -davis -gavin -emery -ward -romeo -jayson -dion -dante -clement -coy -odell -maxwell -jarvis -bruno -issac -mary -dudley -brock -sanford -colby -carmelo -barney -nestor -hollis -stefan -donny -art -linwood -beau -weldon -galen -isidro -truman -delmar -johnathon -silas -frederic -dick -kirby -irwin -cruz -merlin -merrill -charley -marcelino -lane -harris -cleo -carlo -trenton -kurtis -hunter -aurelio -winfred -vito -collin -denver -carter -leonel -emory -pasquale -mohammad -mariano -danial -blair -landon -dirk -branden -adan -numbers -clair -buford -german -bernie -wilmer -joan -emerson -zachery -fletcher -jacques -errol -dalton -monroe -josue -dominique -edwardo -booker -wilford -sonny -shelton -carson -theron -raymundo -daren -tristan -houston -robby -lincoln -jame -genaro -gale -bennett -octavio -cornell -laverne -hung -arron -antony -herschel -alva -giovanni -garth -cyrus -cyril -ronny -stevie -lon -freeman -erin -duncan -kennith -carmine -augustine -young -erich -chadwick -wilburn -russ -reid -myles -anderson -morton -jonas -forest -mitchel -mervin -zane -rich -jamel -lazaro -alphonse -randell -major -johnie -jarrett -brooks -ariel -abdul -dusty -luciano -lindsey -tracey -seymour -scottie -eugenio -mohammed -sandy -valentin -chance -arnulfo -lucien -ferdinand -thad -ezra -sydney -aldo -rubin -royal -mitch -earle -abe -wyatt -marquis -lanny -kareem -jamar -boris -isiah -emile -elmo -aron -leopoldo -everette -josef -gail -eloy -dorian -rodrick -reinaldo -lucio -jerrod -weston -hershel -barton -parker -lemuel -lavern -burt -jules -gil -eliseo -ahmad -nigel -efren -antwan -alden -margarito -coleman -refugio -dino -osvaldo -les -deandre -normand -kieth -ivory -andrea -trey -norberto -napoleon -jerold -fritz -rosendo -milford -sang -deon -christoper -alfonzo -lyman -josiah -brant -wilton -rico -jamaal -dewitt -carol -brenton -yong -olin -foster -faustino -claudio -judson -gino -edgardo -berry -alec -tanner -jarred -donn -trinidad -tad -shirley -prince -porfirio -odis -maria -lenard -chauncey -chang -tod -mel -marcelo -kory -augustus -keven -hilario -bud -sal -rosario -orval -mauro -dannie -zachariah -olen -anibal -milo -jed -frances -thanh -dillon -amado -newton -connie -lenny -tory -richie -lupe -horacio -brice -mohamed -delmer -dario -reyes -dee -mac -jonah -jerrold -robt -hank -sung -rupert -rolland -kenton -damion -chi -antone -waldo -fredric -bradly -quinn -kip -burl -walker -tyree -jefferey -ahmed -willy -stanford -oren -noble -moshe -mikel -enoch -brendon -quintin -jamison -florencio -darrick -tobias -minh -hassan -giuseppe -demarcus -cletus -tyrell -lyndon -keenan -werner -theo -geraldo -lou -columbus -chet -bertram -markus -huey -hilton -dwain -donte -tyron -omer -isaias -hipolito -fermin -chung -adalberto -valentine -jamey -bo -barrett -whitney -teodoro -mckinley -maximo -garfield -sol -raleigh -lawerence -abram -rashad -king -emmitt -daron -chong -samual -paris -otha -miquel -lacy -eusebio -dong -domenic -darron -buster -antonia -wilber -renato -jc -hoyt -haywood -ezekiel -chas -florentino -elroy -clemente -arden -neville -kelley -edison -deshawn -carrol -shayne -nathanial -jordon -danilo -claud -val -sherwood -raymon -rayford -cristobal -ambrose -titus -hyman -felton -ezequiel -erasmo -stanton -lonny -len -ike -milan -lino -jarod -herb -andreas -walton -rhett -palmer -jude -douglass -cordell -oswaldo -ellsworth -virgilio -toney -nathanael -del -britt -benedict -mose -hong -leigh -johnson -isreal -gayle -garret -fausto -asa -arlen -zack -warner -modesto -francesco -manual -jae -gaylord -gaston -filiberto -deangelo -michale -granville -wes -malik -zackary -tuan -nicky -eldridge -cristopher -cortez -antione -malcom -long -korey -jospeh -colton -waylon -von -hosea -shad -santo -rudolf -rolf -rey -renaldo -marcellus -lucius -lesley -kristofer -boyce -benton -man -kasey -jewell -hayden -harland -arnoldo -rueben -leandro -kraig -jerrell -jeromy -hobert -cedrick -arlie -winford -wally -patricia -luigi -keneth -jacinto -graig -franklyn -edmundo -sid -porter -leif -lauren -jeramy -elisha -buck -willian -vincenzo -shon -michal -lynwood -lindsay -jewel -jere -hai -elden -dorsey -darell -broderick -alonso diff --git a/splunk_eventgen/samples/external_ips.sample b/splunk_eventgen/samples/external_ips.sample deleted file mode 100644 index 2c7ed056..00000000 --- a/splunk_eventgen/samples/external_ips.sample +++ /dev/null @@ -1,150 +0,0 @@ -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -12.130.60.4 -12.130.60.5 -125.17.14.100 -128.241.220.82 -130.253.37.97 -131.178.233.243 -141.146.8.66 -142.162.221.28 -142.233.200.21 -194.215.205.19 -201.122.42.235 -201.28.109.162 -201.3.120.132 -201.42.223.29 -203.92.58.136 -212.235.92.150 -212.27.63.151 -217.132.169.69 -59.162.167.100 -74.125.19.106 -81.11.191.113 -82.245.228.36 -84.34.159.23 -86.212.199.60 -86.9.190.90 -87.194.216.51 -89.167.143.32 -90.205.111.169 -92.1.170.135 -1.16.0.0 -1.19.11.11 -27.1.0.0 -27.1.11.11 -27.35.0.0 -27.35.11.11 -27.96.128.0 -27.96.191.11 -27.101.0.0 -27.101.11.11 -27.102.0.0 -27.102.11.11 -27.160.0.0 -27.175.11.11 -27.176.0.0 -193.33.170.23 -194.146.236.22 -194.8.74.23 -195.216.243.24 -195.69.160.22 -195.69.252.22 -195.80.144.22 -200.6.134.23 -202.164.25.24 -203.223.0.20 -217.197.192.20 -62.216.64.19 -64.66.0.20 -69.80.0.18 -87.240.128.18 -89.11.192.18 -91.199.80.24 -91.205.40.22 -91.208.184.24 -91.214.92.22 -94.229.0.20 -94.229.0.21 \ No newline at end of file diff --git a/splunk_eventgen/samples/firstNames.sample b/splunk_eventgen/samples/firstNames.sample deleted file mode 100644 index c16e1d1c..00000000 --- a/splunk_eventgen/samples/firstNames.sample +++ /dev/null @@ -1,2000 +0,0 @@ -JAMES -JOHN -ROBERT -MICHAEL -WILLIAM -DAVID -RICHARD -CHARLES -JOSEPH -THOMAS -CHRISTOPHER -DANIEL -PAUL -MARK -DONALD -GEORGE -KENNETH -STEVEN -EDWARD -BRIAN -RONALD -ANTHONY -KEVIN -JASON -MATTHEW -GARY -TIMOTHY -JOSE -LARRY -JEFFREY -FRANK -SCOTT -ERIC -STEPHEN -ANDREW -RAYMOND -GREGORY -JOSHUA -JERRY -DENNIS -WALTER -PATRICK -PETER -HAROLD -DOUGLAS -HENRY -CARL -ARTHUR -RYAN -ROGER -JOE -JUAN -JACK -ALBERT -JONATHAN -JUSTIN -TERRY -GERALD -KEITH -SAMUEL -WILLIE -RALPH -LAWRENCE -NICHOLAS -ROY -BENJAMIN -BRUCE -BRANDON -ADAM -HARRY -FRED -WAYNE -BILLY -STEVE -LOUIS -JEREMY -AARON -RANDY -HOWARD -EUGENE -CARLOS -RUSSELL -BOBBY -VICTOR -MARTIN -ERNEST -PHILLIP -TODD -JESSE -CRAIG -ALAN -SHAWN -CLARENCE -SEAN -PHILIP -CHRIS -JOHNNY -EARL -JIMMY -ANTONIO -DANNY -BRYAN -TONY -LUIS -MIKE -STANLEY -LEONARD -NATHAN -DALE -MANUEL -RODNEY -CURTIS -NORMAN -ALLEN -MARVIN -VINCENT -GLENN -JEFFERY -TRAVIS -JEFF -CHAD -JACOB -LEE -MELVIN -ALFRED -KYLE -FRANCIS -BRADLEY -JESUS -HERBERT -FREDERICK -RAY -JOEL -EDWIN -DON -EDDIE -RICKY -TROY -RANDALL -BARRY -ALEXANDER -BERNARD -MARIO -LEROY -FRANCISCO -MARCUS -MICHEAL -THEODORE -CLIFFORD -MIGUEL -OSCAR -JAY -JIM -TOM -CALVIN -ALEX -JON -RONNIE -BILL -LLOYD -TOMMY -LEON -DEREK -WARREN -DARRELL -JEROME -FLOYD -LEO -ALVIN -TIM -WESLEY -GORDON -DEAN -GREG -JORGE -DUSTIN -PEDRO -DERRICK -DAN -LEWIS -ZACHARY -COREY -HERMAN -MAURICE -VERNON -ROBERTO -CLYDE -GLEN -HECTOR -SHANE -RICARDO -SAM -RICK -LESTER -BRENT -RAMON -CHARLIE -TYLER -GILBERT -GENE -MARC -REGINALD -RUBEN -BRETT -ANGEL -NATHANIEL -RAFAEL -LESLIE -EDGAR -MILTON -RAUL -BEN -CHESTER -CECIL -DUANE -FRANKLIN -ANDRE -ELMER -BRAD -GABRIEL -RON -MITCHELL -ROLAND -ARNOLD -HARVEY -JARED -ADRIAN -KARL -CORY -CLAUDE -ERIK -DARRYL -JAMIE -NEIL -JESSIE -CHRISTIAN -JAVIER -FERNANDO -CLINTON -TED -MATHEW -TYRONE -DARREN -LONNIE -LANCE -CODY -JULIO -KELLY -KURT -ALLAN -NELSON -GUY -CLAYTON -HUGH -MAX -DWAYNE -DWIGHT -ARMANDO -FELIX -JIMMIE -EVERETT -JORDAN -IAN -WALLACE -KEN -BOB -JAIME -CASEY -ALFREDO -ALBERTO -DAVE -IVAN -JOHNNIE -SIDNEY -BYRON -JULIAN -ISAAC -MORRIS -CLIFTON -WILLARD -DARYL -ROSS -VIRGIL -ANDY -MARSHALL -SALVADOR -PERRY -KIRK -SERGIO -MARION -TRACY -SETH -KENT -TERRANCE -RENE -EDUARDO -TERRENCE -ENRIQUE -FREDDIE -WADE -AUSTIN -STUART -FREDRICK -ARTURO -ALEJANDRO -JACKIE -JOEY -NICK -LUTHER -WENDELL -JEREMIAH -EVAN -JULIUS -DANA -DONNIE -OTIS -SHANNON -TREVOR -OLIVER -LUKE -HOMER -GERARD -DOUG -KENNY -HUBERT -ANGELO -SHAUN -LYLE -MATT -LYNN -ALFONSO -ORLANDO -REX -CARLTON -ERNESTO -CAMERON -NEAL -PABLO -LORENZO -OMAR -WILBUR -BLAKE -GRANT -HORACE -RODERICK -KERRY -ABRAHAM -WILLIS -RICKEY -JEAN -IRA -ANDRES -CESAR -JOHNATHAN -MALCOLM -RUDOLPH -DAMON -KELVIN -RUDY -PRESTON -ALTON -ARCHIE -MARCO -WM -PETE -RANDOLPH -GARRY -GEOFFREY -JONATHON -FELIPE -BENNIE -GERARDO -ED -DOMINIC -ROBIN -LOREN -DELBERT -COLIN -GUILLERMO -EARNEST -LUCAS -BENNY -NOEL -SPENCER -RODOLFO -MYRON -EDMUND -GARRETT -SALVATORE -CEDRIC -LOWELL -GREGG -SHERMAN -WILSON -DEVIN -SYLVESTER -KIM -ROOSEVELT -ISRAEL -JERMAINE -FORREST -WILBERT -LELAND -SIMON -GUADALUPE -CLARK -IRVING -CARROLL -BRYANT -OWEN -RUFUS -WOODROW -SAMMY -KRISTOPHER -MACK -LEVI -MARCOS -GUSTAVO -JAKE -LIONEL -MARTY -TAYLOR -ELLIS -DALLAS -GILBERTO -CLINT -NICOLAS -LAURENCE -ISMAEL -ORVILLE -DREW -JODY -ERVIN -DEWEY -AL -WILFRED -JOSH -HUGO -IGNACIO -CALEB -TOMAS -SHELDON -ERICK -FRANKIE -STEWART -DOYLE -DARREL -ROGELIO -TERENCE -SANTIAGO -ALONZO -ELIAS -BERT -ELBERT -RAMIRO -CONRAD -PAT -NOAH -GRADY -PHIL -CORNELIUS -LAMAR -ROLANDO -CLAY -PERCY -DEXTER -BRADFORD -MERLE -DARIN -AMOS -TERRELL -MOSES -IRVIN -SAUL -ROMAN -DARNELL -RANDAL -TOMMIE -TIMMY -DARRIN -WINSTON -BRENDAN -TOBY -VAN -ABEL -DOMINICK -BOYD -COURTNEY -JAN -EMILIO -ELIJAH -CARY -DOMINGO -SANTOS -AUBREY -EMMETT -MARLON -EMANUEL -JERALD -EDMOND -EMIL -DEWAYNE -WILL -OTTO -TEDDY -REYNALDO -BRET -MORGAN -JESS -TRENT -HUMBERTO -EMMANUEL -STEPHAN -LOUIE -VICENTE -LAMONT -STACY -GARLAND -MILES -MICAH -EFRAIN -BILLIE -LOGAN -HEATH -RODGER -HARLEY -DEMETRIUS -ETHAN -ELDON -ROCKY -PIERRE -JUNIOR -FREDDY -ELI -BRYCE -ANTOINE -ROBBIE -KENDALL -ROYCE -STERLING -MICKEY -CHASE -GROVER -ELTON -CLEVELAND -DYLAN -CHUCK -DAMIAN -REUBEN -STAN -AUGUST -LEONARDO -JASPER -RUSSEL -ERWIN -BENITO -HANS -MONTE -BLAINE -ERNIE -CURT -QUENTIN -AGUSTIN -MURRAY -JAMAL -DEVON -ADOLFO -HARRISON -TYSON -BURTON -BRADY -ELLIOTT -WILFREDO -BART -JARROD -VANCE -DENIS -DAMIEN -JOAQUIN -HARLAN -DESMOND -ELLIOT -DARWIN -ASHLEY -GREGORIO -BUDDY -XAVIER -KERMIT -ROSCOE -ESTEBAN -ANTON -SOLOMON -SCOTTY -NORBERT -ELVIN -WILLIAMS -NOLAN -CAREY -ROD -QUINTON -HAL -BRAIN -ROB -ELWOOD -KENDRICK -DARIUS -MOISES -SON -MARLIN -FIDEL -THADDEUS -CLIFF -MARCEL -ALI -JACKSON -RAPHAEL -BRYON -ARMAND -ALVARO -JEFFRY -DANE -JOESPH -THURMAN -NED -SAMMIE -RUSTY -MICHEL -MONTY -RORY -FABIAN -REGGIE -MASON -GRAHAM -KRIS -ISAIAH -VAUGHN -GUS -AVERY -LOYD -DIEGO -ALEXIS -ADOLPH -NORRIS -MILLARD -ROCCO -GONZALO -DERICK -RODRIGO -GERRY -STACEY -CARMEN -WILEY -RIGOBERTO -ALPHONSO -TY -SHELBY -RICKIE -NOE -VERN -BOBBIE -REED -JEFFERSON -ELVIS -BERNARDO -MAURICIO -HIRAM -DONOVAN -BASIL -RILEY -OLLIE -NICKOLAS -MAYNARD -SCOT -VINCE -QUINCY -EDDY -SEBASTIAN -FEDERICO -ULYSSES -HERIBERTO -DONNELL -COLE -DENNY -DAVIS -GAVIN -EMERY -WARD -ROMEO -JAYSON -DION -DANTE -CLEMENT -COY -ODELL -MAXWELL -JARVIS -BRUNO -ISSAC -MARY -DUDLEY -BROCK -SANFORD -COLBY -CARMELO -BARNEY -NESTOR -HOLLIS -STEFAN -DONNY -ART -LINWOOD -BEAU -WELDON -GALEN -ISIDRO -TRUMAN -DELMAR -JOHNATHON -SILAS -FREDERIC -DICK -KIRBY -IRWIN -CRUZ -MERLIN -MERRILL -CHARLEY -MARCELINO -LANE -HARRIS -CLEO -CARLO -TRENTON -KURTIS -HUNTER -AURELIO -WINFRED -VITO -COLLIN -DENVER -CARTER -LEONEL -EMORY -PASQUALE -MOHAMMAD -MARIANO -DANIAL -BLAIR -LANDON -DIRK -BRANDEN -ADAN -NUMBERS -CLAIR -BUFORD -GERMAN -BERNIE -WILMER -JOAN -EMERSON -ZACHERY -FLETCHER -JACQUES -ERROL -DALTON -MONROE -JOSUE -DOMINIQUE -EDWARDO -BOOKER -WILFORD -SONNY -SHELTON -CARSON -THERON -RAYMUNDO -DAREN -TRISTAN -HOUSTON -ROBBY -LINCOLN -JAME -GENARO -GALE -BENNETT -OCTAVIO -CORNELL -LAVERNE -HUNG -ARRON -ANTONY -HERSCHEL -ALVA -GIOVANNI -GARTH -CYRUS -CYRIL -RONNY -STEVIE -LON -FREEMAN -ERIN -DUNCAN -KENNITH -CARMINE -AUGUSTINE -YOUNG -ERICH -CHADWICK -WILBURN -RUSS -REID -MYLES -ANDERSON -MORTON -JONAS -FOREST -MITCHEL -MERVIN -ZANE -RICH -JAMEL -LAZARO -ALPHONSE -RANDELL -MAJOR -JOHNIE -JARRETT -BROOKS -ARIEL -ABDUL -DUSTY -LUCIANO -LINDSEY -TRACEY -SEYMOUR -SCOTTIE -EUGENIO -MOHAMMED -SANDY -VALENTIN -CHANCE -ARNULFO -LUCIEN -FERDINAND -THAD -EZRA -SYDNEY -ALDO -RUBIN -ROYAL -MITCH -EARLE -ABE -WYATT -MARQUIS -LANNY -KAREEM -JAMAR -BORIS -ISIAH -EMILE -ELMO -ARON -LEOPOLDO -EVERETTE -JOSEF -GAIL -ELOY -DORIAN -RODRICK -REINALDO -LUCIO -JERROD -WESTON -HERSHEL -BARTON -PARKER -LEMUEL -LAVERN -BURT -JULES -GIL -ELISEO -AHMAD -NIGEL -EFREN -ANTWAN -ALDEN -MARGARITO -COLEMAN -REFUGIO -DINO -OSVALDO -LES -DEANDRE -NORMAND -KIETH -IVORY -ANDREA -TREY -NORBERTO -NAPOLEON -JEROLD -FRITZ -ROSENDO -MILFORD -SANG -DEON -CHRISTOPER -ALFONZO -LYMAN -JOSIAH -BRANT -WILTON -RICO -JAMAAL -DEWITT -CAROL -BRENTON -YONG -OLIN -FOSTER -FAUSTINO -CLAUDIO -JUDSON -GINO -EDGARDO -BERRY -ALEC -TANNER -JARRED -DONN -TRINIDAD -TAD -SHIRLEY -PRINCE -PORFIRIO -ODIS -MARIA -LENARD -CHAUNCEY -CHANG -TOD -MEL -MARCELO -KORY -AUGUSTUS -KEVEN -HILARIO -BUD -SAL -ROSARIO -ORVAL -MAURO -DANNIE -ZACHARIAH -OLEN -ANIBAL -MILO -JED -FRANCES -THANH -DILLON -AMADO -NEWTON -CONNIE -LENNY -TORY -RICHIE -LUPE -HORACIO -BRICE -MOHAMED -DELMER -DARIO -REYES -DEE -MAC -JONAH -JERROLD -ROBT -HANK -SUNG -RUPERT -ROLLAND -KENTON -DAMION -CHI -ANTONE -WALDO -FREDRIC -BRADLY -QUINN -KIP -BURL -WALKER -TYREE -JEFFEREY -AHMED -MARY -PATRICIA -LINDA -BARBARA -ELIZABETH -JENNIFER -MARIA -SUSAN -MARGARET -DOROTHY -LISA -NANCY -KAREN -BETTY -HELEN -SANDRA -DONNA -CAROL -RUTH -SHARON -MICHELLE -LAURA -SARAH -KIMBERLY -DEBORAH -JESSICA -SHIRLEY -CYNTHIA -ANGELA -MELISSA -BRENDA -AMY -ANNA -REBECCA -VIRGINIA -KATHLEEN -PAMELA -MARTHA -DEBRA -AMANDA -STEPHANIE -CAROLYN -CHRISTINE -MARIE -JANET -CATHERINE -FRANCES -ANN -JOYCE -DIANE -ALICE -JULIE -HEATHER -TERESA -DORIS -GLORIA -EVELYN -JEAN -CHERYL -MILDRED -KATHERINE -JOAN -ASHLEY -JUDITH -ROSE -JANICE -KELLY -NICOLE -JUDY -CHRISTINA -KATHY -THERESA -BEVERLY -DENISE -TAMMY -IRENE -JANE -LORI -RACHEL -MARILYN -ANDREA -KATHRYN -LOUISE -SARA -ANNE -JACQUELINE -WANDA -BONNIE -JULIA -RUBY -LOIS -TINA -PHYLLIS -NORMA -PAULA -DIANA -ANNIE -LILLIAN -EMILY -ROBIN -PEGGY -CRYSTAL -GLADYS -RITA -DAWN -CONNIE -FLORENCE -TRACY -EDNA -TIFFANY -CARMEN -ROSA -CINDY -GRACE -WENDY -VICTORIA -EDITH -KIM -SHERRY -SYLVIA -JOSEPHINE -THELMA -SHANNON -SHEILA -ETHEL -ELLEN -ELAINE -MARJORIE -CARRIE -CHARLOTTE -MONICA -ESTHER -PAULINE -EMMA -JUANITA -ANITA -RHONDA -HAZEL -AMBER -EVA -DEBBIE -APRIL -LESLIE -CLARA -LUCILLE -JAMIE -JOANNE -ELEANOR -VALERIE -DANIELLE -MEGAN -ALICIA -SUZANNE -MICHELE -GAIL -BERTHA -DARLENE -VERONICA -JILL -ERIN -GERALDINE -LAUREN -CATHY -JOANN -LORRAINE -LYNN -SALLY -REGINA -ERICA -BEATRICE -DOLORES -BERNICE -AUDREY -YVONNE -ANNETTE -JUNE -SAMANTHA -MARION -DANA -STACY -ANA -RENEE -IDA -VIVIAN -ROBERTA -HOLLY -BRITTANY -MELANIE -LORETTA -YOLANDA -JEANETTE -LAURIE -KATIE -KRISTEN -VANESSA -ALMA -SUE -ELSIE -BETH -JEANNE -VICKI -CARLA -TARA -ROSEMARY -EILEEN -TERRI -GERTRUDE -LUCY -TONYA -ELLA -STACEY -WILMA -GINA -KRISTIN -JESSIE -NATALIE -AGNES -VERA -WILLIE -CHARLENE -BESSIE -DELORES -MELINDA -PEARL -ARLENE -MAUREEN -COLLEEN -ALLISON -TAMARA -JOY -GEORGIA -CONSTANCE -LILLIE -CLAUDIA -JACKIE -MARCIA -TANYA -NELLIE -MINNIE -MARLENE -HEIDI -GLENDA -LYDIA -VIOLA -COURTNEY -MARIAN -STELLA -CAROLINE -DORA -JO -VICKIE -MATTIE -TERRY -MAXINE -IRMA -MABEL -MARSHA -MYRTLE -LENA -CHRISTY -DEANNA -PATSY -HILDA -GWENDOLYN -JENNIE -NORA -MARGIE -NINA -CASSANDRA -LEAH -PENNY -KAY -PRISCILLA -NAOMI -CAROLE -BRANDY -OLGA -BILLIE -DIANNE -TRACEY -LEONA -JENNY -FELICIA -SONIA -MIRIAM -VELMA -BECKY -BOBBIE -VIOLET -KRISTINA -TONI -MISTY -MAE -SHELLY -DAISY -RAMONA -SHERRI -ERIKA -KATRINA -CLAIRE -LINDSEY -LINDSAY -GENEVA -GUADALUPE -BELINDA -MARGARITA -SHERYL -CORA -FAYE -ADA -NATASHA -SABRINA -ISABEL -MARGUERITE -HATTIE -HARRIET -MOLLY -CECILIA -KRISTI -BRANDI -BLANCHE -SANDY -ROSIE -JOANNA -IRIS -EUNICE -ANGIE -INEZ -LYNDA -MADELINE -AMELIA -ALBERTA -GENEVIEVE -MONIQUE -JODI -JANIE -MAGGIE -KAYLA -SONYA -JAN -LEE -KRISTINE -CANDACE -FANNIE -MARYANN -OPAL -ALISON -YVETTE -MELODY -LUZ -SUSIE -OLIVIA -FLORA -SHELLEY -KRISTY -MAMIE -LULA -LOLA -VERNA -BEULAH -ANTOINETTE -CANDICE -JUANA -JEANNETTE -PAM -KELLI -HANNAH -WHITNEY -BRIDGET -KARLA -CELIA -LATOYA -PATTY -SHELIA -GAYLE -DELLA -VICKY -LYNNE -SHERI -MARIANNE -KARA -JACQUELYN -ERMA -BLANCA -MYRA -LETICIA -PAT -KRISTA -ROXANNE -ANGELICA -JOHNNIE -ROBYN -FRANCIS -ADRIENNE -ROSALIE -ALEXANDRA -BROOKE -BETHANY -SADIE -BERNADETTE -TRACI -JODY -KENDRA -JASMINE -NICHOLE -RACHAEL -CHELSEA -MABLE -ERNESTINE -MURIEL -MARCELLA -ELENA -KRYSTAL -ANGELINA -NADINE -KARI -ESTELLE -DIANNA -PAULETTE -LORA -MONA -DOREEN -ROSEMARIE -ANGEL -DESIREE -ANTONIA -HOPE -GINGER -JANIS -BETSY -CHRISTIE -FREDA -MERCEDES -MEREDITH -LYNETTE -TERI -CRISTINA -EULA -LEIGH -MEGHAN -SOPHIA -ELOISE -ROCHELLE -GRETCHEN -CECELIA -RAQUEL -HENRIETTA -ALYSSA -JANA -KELLEY -GWEN -KERRY -JENNA -TRICIA -LAVERNE -OLIVE -ALEXIS -TASHA -SILVIA -ELVIRA -CASEY -DELIA -SOPHIE -KATE -PATTI -LORENA -KELLIE -SONJA -LILA -LANA -DARLA -MAY -MINDY -ESSIE -MANDY -LORENE -ELSA -JOSEFINA -JEANNIE -MIRANDA -DIXIE -LUCIA -MARTA -FAITH -LELA -JOHANNA -SHARI -CAMILLE -TAMI -SHAWNA -ELISA -EBONY -MELBA -ORA -NETTIE -TABITHA -OLLIE -JAIME -WINIFRED -KRISTIE -MARINA -ALISHA -AIMEE -RENA -MYRNA -MARLA -TAMMIE -LATASHA -BONITA -PATRICE -RONDA -SHERRIE -ADDIE -FRANCINE -DELORIS -STACIE -ADRIANA -CHERI -SHELBY -ABIGAIL -CELESTE -JEWEL -CARA -ADELE -REBEKAH -LUCINDA -DORTHY -CHRIS -EFFIE -TRINA -REBA -SHAWN -SALLIE -AURORA -LENORA -ETTA -LOTTIE -KERRI -TRISHA -NIKKI -ESTELLA -FRANCISCA -JOSIE -TRACIE -MARISSA -KARIN -BRITTNEY -JANELLE -LOURDES -LAUREL -HELENE -FERN -ELVA -CORINNE -KELSEY -INA -BETTIE -ELISABETH -AIDA -CAITLIN -INGRID -IVA -EUGENIA -CHRISTA -GOLDIE -CASSIE -MAUDE -JENIFER -THERESE -FRANKIE -DENA -LORNA -JANETTE -LATONYA -CANDY -MORGAN -CONSUELO -TAMIKA -ROSETTA -DEBORA -CHERIE -POLLY -DINA -JEWELL -FAY -JILLIAN -DOROTHEA -NELL -TRUDY -ESPERANZA -PATRICA -KIMBERLEY -SHANNA -HELENA -CAROLINA -CLEO -STEFANIE -ROSARIO -OLA -JANINE -MOLLIE -LUPE -ALISA -LOU -MARIBEL -SUSANNE -BETTE -SUSANA -ELISE -CECILE -ISABELLE -LESLEY -JOCELYN -PAIGE -JONI -RACHELLE -LEOLA -DAPHNE -ALTA -ESTER -PETRA -GRACIELA -IMOGENE -JOLENE -KEISHA -LACEY -GLENNA -GABRIELA -KERI -URSULA -LIZZIE -KIRSTEN -SHANA -ADELINE -MAYRA -JAYNE -JACLYN -GRACIE -SONDRA -CARMELA -MARISA -ROSALIND -CHARITY -TONIA -BEATRIZ -MARISOL -CLARICE -JEANINE -SHEENA -ANGELINE -FRIEDA -LILY -ROBBIE -SHAUNA -MILLIE -CLAUDETTE -CATHLEEN -ANGELIA -GABRIELLE -AUTUMN -KATHARINE -SUMMER -JODIE -STACI -LEA -CHRISTI -JIMMIE -JUSTINE -ELMA -LUELLA -MARGRET -DOMINIQUE -SOCORRO -RENE -MARTINA -MARGO -MAVIS -CALLIE -BOBBI -MARITZA -LUCILE -LEANNE -JEANNINE -DEANA -AILEEN -LORIE -LADONNA -WILLA -MANUELA -GALE -SELMA -DOLLY -SYBIL -ABBY -LARA -DALE -IVY -DEE -WINNIE -MARCY -LUISA -JERI -MAGDALENA -OFELIA -MEAGAN -AUDRA -MATILDA -LEILA -CORNELIA -BIANCA -SIMONE -BETTYE -RANDI -VIRGIE -LATISHA -BARBRA -GEORGINA -ELIZA -LEANN -BRIDGETTE -RHODA -HALEY -ADELA -NOLA -BERNADINE -FLOSSIE -ILA -GRETA -RUTHIE -NELDA -MINERVA -LILLY -TERRIE -LETHA -HILARY -ESTELA -VALARIE -BRIANNA -ROSALYN -EARLINE -CATALINA -AVA -MIA -CLARISSA -LIDIA -CORRINE -ALEXANDRIA -CONCEPCION -TIA -SHARRON -RAE -DONA -ERICKA -JAMI -ELNORA -CHANDRA -LENORE -NEVA -MARYLOU -MELISA -TABATHA -SERENA -AVIS -ALLIE -SOFIA -JEANIE -ODESSA -NANNIE -HARRIETT -LORAINE -PENELOPE -MILAGROS -EMILIA -BENITA -ALLYSON -ASHLEE -TANIA -TOMMIE -ESMERALDA -KARINA -EVE -PEARLIE -ZELMA -MALINDA -NOREEN -TAMEKA -SAUNDRA -HILLARY -AMIE -ALTHEA -ROSALINDA -JORDAN -LILIA -ALANA -GAY -CLARE -ALEJANDRA -ELINOR -MICHAEL -LORRIE -JERRI -DARCY -EARNESTINE -CARMELLA -TAYLOR -NOEMI -MARCIE -LIZA -ANNABELLE -LOUISA -EARLENE -MALLORY -CARLENE -NITA -SELENA -TANISHA -KATY -JULIANNE -JOHN -LAKISHA -EDWINA -MARICELA -MARGERY -KENYA -DOLLIE -ROXIE -ROSLYN -KATHRINE -NANETTE -CHARMAINE -LAVONNE -ILENE -KRIS -TAMMI -SUZETTE -CORINE -KAYE -JERRY -MERLE -CHRYSTAL -LINA -DEANNE -LILIAN -JULIANA -ALINE -LUANN -KASEY -MARYANNE -EVANGELINE -COLETTE -MELVA -LAWANDA -YESENIA -NADIA -MADGE -KATHIE -EDDIE -OPHELIA -VALERIA -NONA -MITZI -MARI -GEORGETTE -CLAUDINE -FRAN -ALISSA -ROSEANN -LAKEISHA -SUSANNA -REVA -DEIDRE -CHASITY -SHEREE -CARLY -JAMES -ELVIA -ALYCE -DEIRDRE -GENA -BRIANA -ARACELI -KATELYN -ROSANNE -WENDI -TESSA -BERTA -MARVA -IMELDA -MARIETTA -MARCI -LEONOR -ARLINE -SASHA -MADELYN -JANNA -JULIETTE -DEENA -AURELIA -JOSEFA -AUGUSTA -LILIANA -YOUNG -CHRISTIAN -LESSIE -AMALIA -SAVANNAH -ANASTASIA -VILMA -NATALIA -ROSELLA -LYNNETTE -CORINA -ALFREDA -LEANNA -CAREY -AMPARO -COLEEN -TAMRA -AISHA -WILDA -KARYN -CHERRY -QUEEN -MAURA -MAI -EVANGELINA -ROSANNA -HALLIE -ERNA -ENID -MARIANA -LACY -JULIET -JACKLYN -FREIDA -MADELEINE -MARA -HESTER -CATHRYN -LELIA -CASANDRA -BRIDGETT -ANGELITA -JANNIE -DIONNE -ANNMARIE -KATINA -BERYL -PHOEBE -MILLICENT -KATHERYN -DIANN -CARISSA -MARYELLEN -LIZ -LAURI -HELGA -GILDA -ADRIAN -RHEA -MARQUITA -HOLLIE -TISHA -TAMERA -ANGELIQUE -FRANCESCA -BRITNEY -KAITLIN -LOLITA -FLORINE -ROWENA -REYNA -TWILA -FANNY -JANELL -INES -CONCETTA -BERTIE -ALBA -BRIGITTE -ALYSON -VONDA -PANSY -ELBA -NOELLE -LETITIA -KITTY -DEANN -BRANDIE -LOUELLA -LETA -FELECIA -SHARLENE -LESA -BEVERLEY -ROBERT -ISABELLA -HERMINIA -TERRA -CELINA \ No newline at end of file diff --git a/splunk_eventgen/samples/hostname.sample b/splunk_eventgen/samples/hostname.sample deleted file mode 100644 index ce31533a..00000000 --- a/splunk_eventgen/samples/hostname.sample +++ /dev/null @@ -1,50 +0,0 @@ -ACME-001 -ACME-002 -ACME-003 -ACME-004 -ACME-005 -ACME-006 -HOST-001 -HOST-002 -HOST-003 -HOST-004 -HOST-005 -HOST-006 -ops-sys-001 -ops-sys-002 -ops-sys-003 -ops-sys-004 -ops-sys-005 -ops-sys-006 -PROD-POS-001 -PROD-POS-002 -PROD-POS-003 -PROD-POS-004 -PROD-POS-005 -PROD-POS-006 -PROD-MFS-001 -PROD-MFS-002 -PROD-MFS-003 -PROD-MFS-004 -PROD-MFS-005 -PROD-MFS-006 -COREDEV-001 -COREDEV-002 -COREDEV-003 -COREDEV-004 -COREDEV-005 -COREDEV-006 -SE-001 -SE-002 -SE-003 -SE-004 -SE-005 -SE-006 -BUSDEV-001 -BUSDEV-002 -BUSDEV-003 -BUSDEV-004 -BUSDEV-005 -BUSDEV-006 -BUSDEV-007 -BUSDEV-008 \ No newline at end of file diff --git a/splunk_eventgen/samples/iana_domains.sample b/splunk_eventgen/samples/iana_domains.sample deleted file mode 100644 index 07216ff1..00000000 --- a/splunk_eventgen/samples/iana_domains.sample +++ /dev/null @@ -1,316 +0,0 @@ -ac -ad -ae -aero -af -ag -ai -al -am -an -ao -aq -ar -arpa -as -asia -at -au -aw -ax -az -ba -bb -bd -be -bf -bg -bh -bi -biz -bj -bm -bn -bo -br -bs -bt -bv -bw -by -bz -ca -cat -cc -cd -cf -cg -ch -ci -ck -cl -cm -cn -co -com -coop -cr -cu -cv -cw -cx -cy -cz -de -dj -dk -dm -do -dz -ec -edu -ee -eg -er -es -et -eu -fi -fj -fk -fm -fo -fr -ga -gb -gd -ge -gf -gg -gh -gi -gl -gm -gn -gov -gp -gq -gr -gs -gt -gu -gw -gy -hk -hm -hn -hr -ht -hu -id -ie -il -im -in -info -int -io -iq -ir -is -it -je -jm -jo -jobs -jp -ke -kg -kh -ki -km -kn -kp -kr -kw -ky -kz -la -lb -lc -li -lk -lr -ls -lt -lu -lv -ly -ma -mc -md -me -mg -mh -mil -mk -ml -mm -mn -mo -mobi -mp -mq -mr -ms -mt -mu -museum -mv -mw -mx -my -mz -na -name -nc -ne -net -nf -ng -ni -nl -no -np -nr -nu -nz -om -org -pa -pe -pf -pg -ph -pk -pl -pm -pn -post -pr -pro -ps -pt -pw -py -qa -re -ro -rs -ru -rw -sa -sb -sc -sd -se -sg -sh -si -sj -sk -sl -sm -sn -so -sr -st -su -sv -sx -sy -sz -tc -td -tel -tf -tg -th -tj -tk -tl -tm -tn -to -tp -tr -travel -tt -tv -tw -tz -ua -ug -uk -us -uy -uz -va -vc -ve -vg -vi -vn -vu -wf -ws -xn--0zwm56d -xn--11b5bs3a9aj6g -xn--3e0b707e -xn--45brj9c -xn--80akhbyknj4f -xn--80ao21a -xn--90a3ac -xn--9t4b11yi5a -xn--clchc0ea0b2g2a9gcd -xn--deba0ad -xn--fiqs8s -xn--fiqz9s -xn--fpcrj9c3d -xn--fzc2c9e2c -xn--g6w251d -xn--gecrj9c -xn--h2brj9c -xn--hgbk6aj7f53bba -xn--hlcj6aya9esc7a -xn--j6w193g -xn--jxalpdlp -xn--kgbechtv -xn--kprw13d -xn--kpry57d -xn--lgbbat1ad8j -xn--mgb9awbf -xn--mgbaam7a8h -xn--mgbayh7gpa -xn--mgbbh1a71e -xn--mgbc0a9azcg -xn--mgberp4a5d4ar -xn--mgbx4cd0ab -xn--o3cw4h -xn--ogbpf8fl -xn--p1ai -xn--pgbs0dh -xn--s9brj9c -xn--wgbh1c -xn--wgbl6a -xn--xkc2al3hye2a -xn--xkc2dl3a5ee0h -xn--yfro4i67o -xn--ygbi2ammx -xn--zckzah -xxx -ye -yt -za -zm -zw \ No newline at end of file diff --git a/splunk_eventgen/samples/internal_ips.sample b/splunk_eventgen/samples/internal_ips.sample deleted file mode 100644 index a9070e8d..00000000 --- a/splunk_eventgen/samples/internal_ips.sample +++ /dev/null @@ -1,951 +0,0 @@ -10.88.232.170 -10.88.153.34 -10.89.86.103 -10.89.108.98 -10.123.2.9 -10.90.150.222 -10.178.191.121 -10.91.215.193 -10.123.194.42 -10.123.194.42 -10.88.50.221 -10.91.136.210 -10.151.125.19 -10.86.252.201 -10.145.73.211 -10.152.220.151 -10.145.224.179 -10.168.32.2 -10.95.22.60 -10.86.252.201 -10.175.207.190 -10.152.162.9 -10.90.100.32 -10.150.132.242 -10.150.132.242 -10.86.181.156 -10.91.202.219 -10.91.74.198 -10.91.202.219 -10.88.35.78 -10.172.22.224 -10.185.31.33 -10.162.247.125 -10.152.53.222 -10.91.25.243 -10.91.25.243 -10.98.40.77 -10.151.34.146 -10.84.250.163 -10.90.100.32 -10.148.188.147 -10.154.158.105 -10.170.246.4 -10.179.212.77 -10.123.124.28 -10.123.124.28 -10.173.60.83 -10.121.82.247 -10.168.40.117 -10.89.181.26 -10.153.208.149 -10.120.226.95 -10.162.247.125 -10.85.5.11 -10.89.254.80 -10.154.8.65 -10.122.171.246 -10.99.222.66 -10.177.237.244 -10.172.155.181 -10.89.107.135 -10.123.125.160 -10.179.193.254 -10.179.193.254 -10.85.245.109 -10.120.12.226 -10.184.180.90 -10.175.163.61 -10.88.35.78 -10.175.0.116 -10.85.245.109 -10.121.139.48 -10.86.220.2 -10.123.176.152 -10.120.12.226 -10.144.8.66 -10.167.67.70 -10.179.121.51 -10.166.101.209 -10.173.119.236 -10.120.251.250 -10.168.211.65 -10.122.68.227 -10.122.7.163 -10.94.33.205 -10.148.161.103 -10.187.180.140 -10.186.177.160 -10.185.186.50 -10.171.10.88 -10.161.146.110 -10.185.163.233 -10.151.12.232 -10.152.110.151 -10.123.141.235 -10.149.245.182 -10.91.164.40 -10.187.55.51 -10.149.245.182 -10.147.141.101 -10.162.65.160 -10.122.23.196 -10.145.233.94 -10.172.155.181 -10.174.58.87 -10.146.106.176 -10.123.125.160 -10.154.66.66 -10.148.17.16 -10.157.6.88 -10.151.191.20 -10.132.171.78 -10.187.165.92 -10.153.94.133 -10.148.17.16 -10.165.74.249 -10.185.198.156 -10.184.108.156 -10.99.199.248 -10.86.220.2 -10.99.199.248 -10.87.251.230 -10.168.118.92 -10.168.247.238 -10.163.249.196 -10.179.121.51 -10.187.36.80 -10.84.186.98 -10.166.101.209 -10.186.204.29 -10.86.7.223 -10.84.24.192 -10.123.50.113 -10.186.177.160 -10.187.180.140 -10.146.224.148 -10.186.28.31 -10.186.28.31 -10.147.6.208 -10.95.215.7 -10.185.163.233 -10.90.192.49 -10.88.232.170 -10.121.23.194 -10.157.120.61 -10.186.221.70 -10.152.127.222 -10.154.193.33 -10.176.87.78 -10.176.87.78 -10.122.23.196 -10.91.99.125 -10.89.81.236 -10.169.212.193 -10.120.73.193 -10.171.30.254 -10.175.12.58 -10.95.232.172 -10.120.28.237 -10.150.20.61 -10.177.122.209 -10.95.129.147 -10.150.20.61 -10.86.70.72 -10.177.122.209 -10.169.15.7 -10.86.70.72 -10.165.74.249 -10.85.15.2 -10.178.163.168 -10.168.118.92 -10.157.149.229 -10.168.247.238 -10.90.65.167 -10.147.16.248 -10.185.148.226 -10.91.154.210 -10.186.51.216 -10.152.116.119 -10.89.4.172 -10.120.251.250 -10.122.68.227 -10.122.242.60 -10.95.64.145 -10.169.43.34 -10.84.215.85 -10.148.236.57 -10.185.140.200 -10.186.73.143 -10.187.36.80 -10.167.0.233 -10.177.211.214 -10.167.0.233 -10.177.211.214 -10.187.66.116 -10.179.102.38 -10.179.102.38 -10.184.209.97 -10.169.160.173 -10.172.155.54 -10.91.172.61 -10.91.172.61 -10.172.137.16 -10.85.105.94 -10.171.30.254 -10.156.91.39 -10.178.163.168 -10.123.178.139 -10.172.155.54 -10.186.204.172 -10.151.118.232 -10.186.204.172 -10.88.53.92 -10.170.54.174 -10.151.118.232 -10.151.246.53 -10.88.33.180 -10.95.174.21 -10.88.33.180 -10.157.196.89 -10.149.49.10 -10.146.229.254 -10.123.164.101 -10.123.141.235 -10.155.61.131 -10.185.43.165 -10.120.83.93 -10.150.112.220 -10.157.191.113 -10.89.4.172 -10.174.0.16 -10.89.7.165 -10.169.187.156 -10.121.245.92 -10.170.114.49 -10.177.21.81 -10.177.21.81 -10.171.200.6 -10.85.33.246 -10.145.105.209 -10.154.100.208 -10.173.29.16 -10.84.30.158 -10.145.141.224 -10.85.105.94 -10.150.55.193 -10.171.200.6 -10.186.185.151 -10.187.99.83 -10.169.15.7 -10.84.113.180 -10.89.146.208 -10.88.53.92 -10.165.58.82 -10.185.34.113 -10.150.31.135 -10.120.208.207 -10.120.208.207 -10.88.156.50 -10.158.75.243 -10.179.125.134 -10.158.255.30 -10.151.89.208 -10.84.159.171 -10.91.165.150 -10.169.43.34 -10.157.71.11 -10.154.128.55 -10.173.215.179 -10.87.16.136 -10.95.64.145 -10.146.108.101 -10.170.128.166 -10.146.108.101 -10.121.245.92 -10.169.187.156 -10.121.49.110 -10.95.247.50 -10.174.0.16 -108.97.15.244 -10.176.240.103 -10.156.184.246 -10.170.114.49 -10.159.231.160 -10.163.196.156 -10.177.185.205 -10.84.167.96 -10.88.148.223 -10.184.125.119 -10.186.117.235 -108.106.227.179 -10.156.173.90 -10.178.147.108 -10.144.194.79 -10.178.152.155 -10.87.80.86 -10.87.80.86 -10.120.251.250 -10.156.52.17 -10.174.200.119 -10.84.30.158 -10.173.173.124 -10.122.68.227 -10.187.155.143 -10.86.25.63 -10.187.179.162 -10.144.235.14 -10.187.99.83 -10.95.74.112 -10.95.74.112 -10.179.242.29 -10.155.83.232 -10.145.157.40 -10.148.245.116 -10.88.156.50 -10.184.240.63 -10.171.11.219 -10.144.237.252 -10.150.11.179 -10.156.113.90 -10.123.178.139 -10.121.45.90 -10.145.188.245 -10.91.165.150 -10.173.215.179 -10.155.164.34 -10.84.100.124 -10.121.92.169 -10.156.165.11 -10.174.113.138 -10.95.5.109 -10.172.71.122 -10.147.9.147 -10.147.9.147 -10.162.152.219 -10.90.92.92 -10.175.130.131 -10.157.243.84 -10.156.252.253 -10.184.201.112 -10.186.159.239 -10.186.217.239 -10.186.217.239 -10.159.40.117 -10.184.238.250 -10.184.137.99 -10.149.73.47 -10.179.37.79 -10.87.210.253 -10.187.155.143 -10.177.249.16 -10.176.196.207 -10.152.11.202 -10.172.3.217 -10.85.105.184 -10.144.91.209 -10.122.124.96 -10.156.158.187 -10.152.151.49 -10.159.201.178 -10.98.58.47 -10.170.54.174 -10.144.119.50 -10.152.159.179 -10.179.10.238 -10.174.181.136 -10.172.199.60 -10.171.215.182 -10.155.231.52 -10.179.236.5 -10.164.232.181 -10.84.100.124 -10.174.113.138 -10.99.4.4 -10.179.200.152 -10.179.200.152 -10.89.128.158 -10.162.152.219 -10.148.143.37 -10.154.196.241 -10.187.6.61 -10.186.144.157 -10.153.166.229 -10.163.243.2 -10.168.80.39 -10.84.22.59 -10.87.142.37 -10.168.80.39 -10.186.129.250 -108.118.34.203 -10.155.20.94 -10.177.64.102 -10.148.223.135 -10.89.42.18 -10.178.198.97 -10.147.164.143 -10.95.22.60 -10.176.196.207 -10.186.126.101 -10.122.124.96 -10.120.251.250 -10.90.133.113 -10.152.36.225 -10.147.217.9 -10.184.253.224 -10.122.68.227 -10.171.10.242 -10.176.13.131 -10.176.13.131 -10.98.58.47 -10.168.30.195 -10.174.3.152 -10.85.170.88 -10.179.37.79 -10.178.1.102 -10.150.243.248 -10.171.10.242 -10.158.97.222 -10.122.27.216 -10.176.40.67 -10.122.27.216 -10.179.236.5 -10.94.63.34 -10.150.60.106 -10.150.60.106 -10.87.150.157 -10.164.232.181 -10.146.86.213 -10.99.4.4 -10.153.49.217 -10.184.13.57 -10.187.94.11 -10.147.177.144 -10.121.45.90 -10.89.128.158 -10.146.23.89 -10.151.115.126 -10.153.209.44 -10.186.144.157 -10.123.188.24 -10.163.243.2 -10.148.26.227 -10.147.160.121 -10.84.54.32 -10.95.129.147 -10.155.235.210 -10.123.80.140 -10.178.198.97 -10.156.242.55 -10.187.165.92 -10.145.145.57 -10.149.104.109 -10.170.238.215 -10.91.147.19 -10.146.66.45 -10.90.133.113 -10.85.89.218 -10.86.18.62 -10.170.241.199 -10.176.221.247 -10.176.221.247 -10.169.255.210 -10.122.252.23 -10.121.188.30 -10.85.7.243 -10.157.207.251 -10.184.217.203 -10.185.67.197 -10.151.178.216 -10.84.151.48 -10.153.93.82 -10.179.235.28 -10.172.20.47 -10.176.175.119 -10.184.91.45 -10.95.5.109 -10.186.60.244 -10.184.91.45 -10.146.213.92 -10.120.137.110 -10.120.137.110 -10.173.119.236 -10.175.130.131 -10.85.245.109 -10.168.142.202 -10.147.66.34 -10.121.11.184 -10.177.97.252 -10.173.5.59 -10.122.211.114 -10.90.86.21 -10.90.86.21 -10.186.178.69 -10.184.2.253 -10.159.153.246 -10.186.132.107 -10.170.224.65 -10.90.178.9 -10.85.89.218 -10.184.5.195 -10.86.18.62 -10.155.230.93 -10.121.37.17 -10.177.177.173 -10.177.177.173 -10.185.198.156 -10.88.204.248 -10.147.140.87 -10.173.158.251 -10.123.170.54 -10.88.204.248 -10.186.133.28 -10.87.16.136 -10.184.129.29 -10.169.255.210 -10.184.176.70 -10.179.251.234 -10.170.105.145 -10.150.112.220 -10.161.146.110 -10.157.173.134 -10.122.86.199 -10.146.66.83 -10.85.56.175 -10.158.114.195 -10.122.27.216 -10.186.123.127 -10.174.3.152 -10.168.80.39 -10.98.200.43 -10.157.236.62 -10.121.45.90 -10.184.2.253 -10.88.132.110 -10.90.178.9 -10.187.132.168 -10.184.167.136 -10.168.80.39 -10.179.176.113 -10.87.82.118 -10.186.60.244 -10.173.20.254 -10.144.90.219 -10.91.28.32 -10.86.31.223 -10.176.201.171 -10.176.201.171 -10.85.60.133 -10.177.97.252 -10.155.163.25 -10.186.133.28 -10.87.82.118 -10.173.158.251 -10.184.129.29 -10.123.85.91 -108.115.181.224 -10.184.176.70 -10.155.246.200 -10.156.90.230 -10.152.57.49 -10.153.0.219 -10.160.53.104 -10.169.199.125 -10.155.93.246 -10.178.1.102 -10.174.153.117 -10.145.60.177 -10.89.89.79 -10.85.56.175 -10.186.123.127 -10.91.22.183 -10.168.83.177 -10.177.170.216 -10.98.200.43 -10.173.71.214 -10.155.40.51 -10.120.137.110 -10.150.91.103 -10.185.57.185 -10.185.57.185 -10.150.51.219 -10.164.120.186 -10.157.163.53 -10.153.120.100 -10.173.20.254 -10.187.209.102 -10.99.226.145 -10.187.132.168 -10.153.252.194 -10.121.100.242 -10.186.127.115 -10.122.173.236 -10.122.171.246 -10.88.89.88 -10.122.11.175 -10.186.212.134 -10.88.59.8 -10.89.29.115 -10.154.224.252 -10.171.18.43 -10.123.33.21 -10.84.77.86 -10.179.75.61 -10.167.129.50 -10.89.62.241 -10.97.66.133 -10.121.37.17 -10.89.62.241 -10.179.176.113 -10.159.39.202 -10.87.120.201 -10.123.170.54 -10.85.69.60 -10.88.186.201 -10.94.48.216 -10.86.79.167 -10.186.60.244 -10.88.63.200 -10.88.63.200 -10.99.66.34 -10.121.211.216 -10.89.89.79 -10.148.36.45 -10.149.191.81 -10.186.236.22 -10.186.236.22 -10.174.96.92 -10.122.242.60 -10.87.73.240 -10.121.223.194 -10.121.5.92 -10.87.73.240 -10.168.165.97 -10.186.174.30 -10.185.94.54 -10.149.197.224 -10.146.132.200 -10.157.196.99 -10.120.7.193 -10.185.195.228 -10.89.138.237 -10.89.138.237 -10.122.27.216 -10.185.21.151 -10.147.131.243 -10.186.206.159 -10.187.184.50 -10.179.138.161 -10.99.43.62 -10.154.112.152 -10.154.112.152 -10.177.59.94 -10.152.32.227 -10.99.103.72 -10.85.157.9 -10.85.157.9 -10.121.45.90 -10.184.20.120 -10.156.3.224 -10.184.11.153 -10.156.3.224 -10.88.89.88 -10.184.11.153 -10.152.126.112 -10.149.94.44 -10.121.197.105 -10.123.33.21 -10.169.38.85 -10.178.196.196 -10.122.112.71 -10.159.77.23 -10.90.57.155 -10.171.18.43 -10.150.152.52 -10.86.254.51 -10.154.27.171 -10.97.66.133 -10.149.63.58 -10.169.199.125 -10.186.34.155 -10.169.38.85 -10.87.117.85 -10.87.120.201 -10.88.186.201 -10.178.193.141 -10.169.140.40 -10.86.79.167 -10.177.17.60 -10.154.25.106 -10.144.154.223 -10.90.54.1 -10.170.241.199 -10.123.105.247 -10.169.46.197 -10.159.132.197 -10.90.249.242 -10.168.83.177 -10.173.185.64 -10.185.94.54 -10.186.174.30 -10.174.96.92 -10.144.66.5 -10.155.38.154 -10.123.175.128 -10.122.253.51 -10.186.186.198 -10.185.104.182 -10.149.98.49 -10.157.248.45 -10.185.148.20 -10.84.187.44 -10.85.105.184 -10.158.83.94 -10.98.218.30 -10.185.195.228 -10.91.190.241 -10.158.203.37 -10.186.248.46 -10.120.109.82 -10.120.137.110 -10.184.171.56 -10.184.171.56 -10.184.20.120 -108.119.185.220 -10.121.197.105 -10.186.232.241 -10.123.182.223 -10.122.183.49 -10.176.185.54 -10.122.183.49 -10.87.212.228 -10.90.151.105 -10.121.194.104 -10.90.151.105 -10.177.200.59 -10.177.63.37 -10.149.150.1 -10.123.201.145 -10.155.3.240 -10.87.117.85 -10.186.140.173 -10.122.11.175 -10.187.55.51 -10.98.106.225 -10.159.88.132 -10.86.254.51 -10.90.54.1 -10.90.249.242 -10.149.111.250 -10.187.157.200 -10.149.111.250 -10.121.47.88 -10.186.85.250 -10.121.37.17 -10.91.199.143 -10.147.95.50 -10.185.29.26 -10.178.196.196 -10.158.164.2 -10.184.121.230 -10.154.16.165 -10.123.170.54 -10.123.175.128 -10.122.253.51 -10.147.70.19 -10.186.97.185 -10.186.115.80 -10.88.97.124 -10.153.140.122 -10.159.4.17 -10.105.159.56 -10.91.190.241 -10.94.48.216 -10.172.138.201 -10.123.210.96 -10.172.138.201 -10.120.109.82 -10.146.14.234 -10.99.53.164 -10.146.169.164 -10.186.248.46 -10.185.4.151 -10.154.242.95 -10.153.60.212 -10.157.200.154 -10.91.113.30 -10.90.84.191 -10.120.7.193 -10.157.83.114 -10.147.89.174 -10.84.12.108 -10.172.95.74 -10.88.239.25 -10.87.106.58 -10.150.8.76 -10.174.16.172 -10.173.145.191 -10.186.127.115 -10.173.145.191 -10.90.22.188 -10.123.139.156 -10.87.82.115 -10.95.233.119 -10.148.199.219 -10.177.63.37 -10.149.105.161 -10.97.154.146 -10.148.36.75 -10.174.187.15 -10.175.161.179 -10.174.187.15 -10.175.161.179 -10.87.82.115 -107.34.5.77 -108.119.77.220 -10.157.178.58 -10.175.163.61 -10.167.91.27 -10.166.221.58 -10.166.221.58 -10.177.104.14 -10.185.29.26 -10.159.199.89 -10.86.29.105 -10.187.157.200 -10.184.121.230 -10.164.61.128 -10.86.29.105 -10.85.38.37 -10.145.220.199 -10.186.85.250 -10.120.220.21 -10.91.79.22 -10.148.252.117 -10.157.236.62 -10.159.186.146 -10.87.102.57 -10.86.189.239 -10.88.97.124 -10.153.201.22 -10.145.50.55 -10.91.22.183 -10.98.27.195 -10.184.185.225 -10.152.233.66 -10.157.217.243 -10.123.210.96 -10.91.8.131 -10.184.4.195 -10.155.93.246 -10.186.97.28 -10.88.179.163 -10.91.95.2 -10.90.254.192 -10.91.95.2 -10.166.214.42 -10.99.53.164 -10.90.84.191 -10.122.201.54 -10.84.12.108 -10.86.83.139 -10.88.239.25 -10.87.106.58 -10.121.250.120 -10.186.233.107 -10.123.139.156 -10.187.39.60 -10.187.210.188 -10.184.224.137 -10.158.158.79 -10.91.169.242 -10.91.169.242 -10.121.175.224 -10.91.199.143 -10.175.215.17 -10.122.183.49 -10.155.85.64 -10.156.127.22 -10.88.4.22 -10.164.61.128 -10.122.89.26 -10.91.79.22 -10.151.94.91 -10.150.107.203 -10.149.126.245 -10.89.86.103 -10.151.27.87 -10.185.229.204 -10.145.97.184 -10.145.145.100 -10.177.2.84 -10.154.16.165 -10.85.103.2 -10.88.89.237 -10.88.89.237 -10.98.27.195 -10.145.138.114 -10.121.65.171 -10.85.33.246 -10.91.8.131 -10.121.37.17 -10.158.173.3 -10.90.150.222 -10.84.151.48 -10.151.67.172 -10.148.193.91 -10.178.155.199 -10.123.170.54 -10.169.212.193 -10.148.193.91 -10.176.170.148 -10.185.148.20 -10.186.186.198 -10.90.254.192 -10.185.124.240 -10.86.217.233 -10.86.83.139 -10.95.233.119 -10.177.123.11 -10.157.52.116 -10.170.189.248 -10.145.152.235 -10.122.216.74 -10.151.68.71 -10.97.14.129 -10.187.39.60 -10.184.227.115 -10.187.210.188 -10.96.16.252 -10.184.224.137 -10.150.170.55 -10.154.250.190 -10.89.107.135 -10.175.215.17 -10.84.159.171 -10.88.34.250 -10.184.238.250 -10.88.4.22 -10.175.90.228 -10.163.196.156 -10.158.68.159 -10.187.14.109 -10.184.180.90 -10.153.58.241 -10.150.219.53 -10.185.240.34 -10.97.175.248 -10.154.177.173 -10.87.234.179 -10.95.31.172 -10.95.31.172 diff --git a/splunk_eventgen/samples/ip_address.sample b/splunk_eventgen/samples/ip_address.sample deleted file mode 100644 index 1d8602d9..00000000 --- a/splunk_eventgen/samples/ip_address.sample +++ /dev/null @@ -1,50 +0,0 @@ -10.11.36.1 -10.11.36.2 -10.11.36.3 -10.11.36.4 -10.11.36.5 -10.11.36.6 -10.11.36.7 -10.11.36.8 -10.11.36.9 -10.11.36.10 -10.11.36.11 -10.11.36.12 -10.11.36.13 -10.11.36.14 -10.11.36.15 -10.11.36.16 -10.11.36.17 -10.11.36.18 -10.11.36.19 -10.11.36.20 -10.11.36.21 -10.11.36.22 -10.11.36.23 -10.11.36.24 -10.11.36.25 -10.11.36.26 -10.11.36.27 -10.11.36.28 -10.11.36.29 -10.11.36.30 -10.11.36.31 -10.11.36.32 -10.11.36.33 -10.11.36.34 -10.11.36.35 -10.11.36.36 -10.11.36.37 -10.11.36.38 -10.11.36.39 -10.11.36.40 -10.11.36.41 -10.11.36.42 -10.11.36.43 -10.11.36.44 -10.11.36.45 -10.11.36.46 -10.11.36.47 -10.11.36.48 -10.11.36.49 -10.11.36.50 \ No newline at end of file diff --git a/splunk_eventgen/samples/lastNames.sample b/splunk_eventgen/samples/lastNames.sample deleted file mode 100644 index 8e263542..00000000 --- a/splunk_eventgen/samples/lastNames.sample +++ /dev/null @@ -1,1002 +0,0 @@ -SMITH -JOHNSON -WILLIAMS -JONES -BROWN -DAVIS -MILLER -WILSON -MOORE -TAYLOR -ANDERSON -THOMAS -JACKSON -WHITE -HARRIS -MARTIN -THOMPSON -GARCIA -MARTINEZ -ROBINSON -CLARK -RODRIGUEZ -LEWIS -LEE -WALKER -HALL -ALLEN -YOUNG -HERNANDEZ -KING -WRIGHT -LOPEZ -HILL -SCOTT -GREEN -ADAMS -BAKER -GONZALEZ -NELSON -CARTER -MITCHELL -PEREZ -ROBERTS -TURNER -PHILLIPS -CAMPBELL -PARKER -EVANS -EDWARDS -COLLINS -STEWART -SANCHEZ -MORRIS -ROGERS -REED -COOK -MORGAN -BELL -MURPHY -BAILEY -RIVERA -COOPER -RICHARDSON -COX -HOWARD -WARD -TORRES -PETERSON -GRAY -RAMIREZ -JAMES -WATSON -BROOKS -KELLY -SANDERS -PRICE -BENNETT -WOOD -BARNES -ROSS -HENDERSON -COLEMAN -JENKINS -PERRY -POWELL -LONG -PATTERSON -HUGHES -FLORES -WASHINGTON -BUTLER -SIMMONS -FOSTER -GONZALES -BRYANT -ALEXANDER -RUSSELL -GRIFFIN -DIAZ -HAYES -MYERS -FORD -HAMILTON -GRAHAM -SULLIVAN -WALLACE -WOODS -COLE -WEST -JORDAN -OWENS -REYNOLDS -FISHER -ELLIS -HARRISON -GIBSON -MCDONALD -CRUZ -MARSHALL -ORTIZ -GOMEZ -MURRAY -FREEMAN -WELLS -WEBB -SIMPSON -STEVENS -TUCKER -PORTER -HUNTER -HICKS -CRAWFORD -HENRY -BOYD -MASON -MORALES -KENNEDY -WARREN -DIXON -RAMOS -REYES -BURNS -GORDON -SHAW -HOLMES -RICE -ROBERTSON -HUNT -BLACK -DANIELS -PALMER -MILLS -NICHOLS -GRANT -KNIGHT -FERGUSON -ROSE -STONE -HAWKINS -DUNN -PERKINS -HUDSON -SPENCER -GARDNER -STEPHENS -PAYNE -PIERCE -BERRY -MATTHEWS -ARNOLD -WAGNER -WILLIS -RAY -WATKINS -OLSON -CARROLL -DUNCAN -SNYDER -HART -CUNNINGHAM -BRADLEY -LANE -ANDREWS -RUIZ -HARPER -FOX -RILEY -ARMSTRONG -CARPENTER -WEAVER -GREENE -LAWRENCE -ELLIOTT -CHAVEZ -SIMS -AUSTIN -PETERS -KELLEY -FRANKLIN -LAWSON -FIELDS -GUTIERREZ -RYAN -SCHMIDT -CARR -VASQUEZ -CASTILLO -WHEELER -CHAPMAN -OLIVER -MONTGOMERY -RICHARDS -WILLIAMSON -JOHNSTON -BANKS -MEYER -BISHOP -MCCOY -HOWELL -ALVAREZ -MORRISON -HANSEN -FERNANDEZ -GARZA -HARVEY -LITTLE -BURTON -STANLEY -NGUYEN -GEORGE -JACOBS -REID -KIM -FULLER -LYNCH -DEAN -GILBERT -GARRETT -ROMERO -WELCH -LARSON -FRAZIER -BURKE -HANSON -DAY -MENDOZA -MORENO -BOWMAN -MEDINA -FOWLER -BREWER -HOFFMAN -CARLSON -SILVA -PEARSON -HOLLAND -DOUGLAS -FLEMING -JENSEN -VARGAS -BYRD -DAVIDSON -HOPKINS -MAY -TERRY -HERRERA -WADE -SOTO -WALTERS -CURTIS -NEAL -CALDWELL -LOWE -JENNINGS -BARNETT -GRAVES -JIMENEZ -HORTON -SHELTON -BARRETT -OBRIEN -CASTRO -SUTTON -GREGORY -MCKINNEY -LUCAS -MILES -CRAIG -RODRIQUEZ -CHAMBERS -HOLT -LAMBERT -FLETCHER -WATTS -BATES -HALE -RHODES -PENA -BECK -NEWMAN -HAYNES -MCDANIEL -MENDEZ -BUSH -VAUGHN -PARKS -DAWSON -SANTIAGO -NORRIS -HARDY -LOVE -STEELE -CURRY -POWERS -SCHULTZ -BARKER -GUZMAN -PAGE -MUNOZ -BALL -KELLER -CHANDLER -WEBER -LEONARD -WALSH -LYONS -RAMSEY -WOLFE -SCHNEIDER -MULLINS -BENSON -SHARP -BOWEN -DANIEL -BARBER -CUMMINGS -HINES -BALDWIN -GRIFFITH -VALDEZ -HUBBARD -SALAZAR -REEVES -WARNER -STEVENSON -BURGESS -SANTOS -TATE -CROSS -GARNER -MANN -MACK -MOSS -THORNTON -DENNIS -MCGEE -FARMER -DELGADO -AGUILAR -VEGA -GLOVER -MANNING -COHEN -HARMON -RODGERS -ROBBINS -NEWTON -TODD -BLAIR -HIGGINS -INGRAM -REESE -CANNON -STRICKLAND -TOWNSEND -POTTER -GOODWIN -WALTON -ROWE -HAMPTON -ORTEGA -PATTON -SWANSON -JOSEPH -FRANCIS -GOODMAN -MALDONADO -YATES -BECKER -ERICKSON -HODGES -RIOS -CONNER -ADKINS -WEBSTER -NORMAN -MALONE -HAMMOND -FLOWERS -COBB -MOODY -QUINN -BLAKE -MAXWELL -POPE -FLOYD -OSBORNE -PAUL -MCCARTHY -GUERRERO -LINDSEY -ESTRADA -SANDOVAL -GIBBS -TYLER -GROSS -FITZGERALD -STOKES -DOYLE -SHERMAN -SAUNDERS -WISE -COLON -GILL -ALVARADO -GREER -PADILLA -SIMON -WATERS -NUNEZ -BALLARD -SCHWARTZ -MCBRIDE -HOUSTON -CHRISTENSEN -KLEIN -PRATT -BRIGGS -PARSONS -MCLAUGHLIN -ZIMMERMAN -FRENCH -BUCHANAN -MORAN -COPELAND -ROY -PITTMAN -BRADY -MCCORMICK -HOLLOWAY -BROCK -POOLE -FRANK -LOGAN -OWEN -BASS -MARSH -DRAKE -WONG -JEFFERSON -PARK -MORTON -ABBOTT -SPARKS -PATRICK -NORTON -HUFF -CLAYTON -MASSEY -LLOYD -FIGUEROA -CARSON -BOWERS -ROBERSON -BARTON -TRAN -LAMB -HARRINGTON -CASEY -BOONE -CORTEZ -CLARKE -MATHIS -SINGLETON -WILKINS -CAIN -BRYAN -UNDERWOOD -HOGAN -MCKENZIE -COLLIER -LUNA -PHELPS -MCGUIRE -ALLISON -BRIDGES -WILKERSON -NASH -SUMMERS -ATKINS -WILCOX -PITTS -CONLEY -MARQUEZ -BURNETT -RICHARD -COCHRAN -CHASE -DAVENPORT -HOOD -GATES -CLAY -AYALA -SAWYER -ROMAN -VAZQUEZ -DICKERSON -HODGE -ACOSTA -FLYNN -ESPINOZA -NICHOLSON -MONROE -WOLF -MORROW -KIRK -RANDALL -ANTHONY -WHITAKER -OCONNOR -SKINNER -WARE -MOLINA -KIRBY -HUFFMAN -BRADFORD -CHARLES -GILMORE -DOMINGUEZ -ONEAL -BRUCE -LANG -COMBS -KRAMER -HEATH -HANCOCK -GALLAGHER -GAINES -SHAFFER -SHORT -WIGGINS -MATHEWS -MCCLAIN -FISCHER -WALL -SMALL -MELTON -HENSLEY -BOND -DYER -CAMERON -GRIMES -CONTRERAS -CHRISTIAN -WYATT -BAXTER -SNOW -MOSLEY -SHEPHERD -LARSEN -HOOVER -BEASLEY -GLENN -PETERSEN -WHITEHEAD -MEYERS -KEITH -GARRISON -VINCENT -SHIELDS -HORN -SAVAGE -OLSEN -SCHROEDER -HARTMAN -WOODARD -MUELLER -KEMP -DELEON -BOOTH -PATEL -CALHOUN -WILEY -EATON -CLINE -NAVARRO -HARRELL -LESTER -HUMPHREY -PARRISH -DURAN -HUTCHINSON -HESS -DORSEY -BULLOCK -ROBLES -BEARD -DALTON -AVILA -VANCE -RICH -BLACKWELL -YORK -JOHNS -BLANKENSHIP -TREVINO -SALINAS -CAMPOS -PRUITT -MOSES -CALLAHAN -GOLDEN -MONTOYA -HARDIN -GUERRA -MCDOWELL -CAREY -STAFFORD -GALLEGOS -HENSON -WILKINSON -BOOKER -MERRITT -MIRANDA -ATKINSON -ORR -DECKER -HOBBS -PRESTON -TANNER -KNOX -PACHECO -STEPHENSON -GLASS -ROJAS -SERRANO -MARKS -HICKMAN -ENGLISH -SWEENEY -STRONG -PRINCE -MCCLURE -CONWAY -WALTER -ROTH -MAYNARD -FARRELL -LOWERY -HURST -NIXON -WEISS -TRUJILLO -ELLISON -SLOAN -JUAREZ -WINTERS -MCLEAN -RANDOLPH -LEON -BOYER -VILLARREAL -MCCALL -GENTRY -CARRILLO -KENT -AYERS -LARA -SHANNON -SEXTON -PACE -HULL -LEBLANC -BROWNING -VELASQUEZ -LEACH -CHANG -HOUSE -SELLERS -HERRING -NOBLE -FOLEY -BARTLETT -MERCADO -LANDRY -DURHAM -WALLS -BARR -MCKEE -BAUER -RIVERS -EVERETT -BRADSHAW -PUGH -VELEZ -RUSH -ESTES -DODSON -MORSE -SHEPPARD -WEEKS -CAMACHO -BEAN -BARRON -LIVINGSTON -MIDDLETON -SPEARS -BRANCH -BLEVINS -CHEN -KERR -MCCONNELL -HATFIELD -HARDING -ASHLEY -SOLIS -HERMAN -FROST -GILES -BLACKBURN -WILLIAM -PENNINGTON -WOODWARD -FINLEY -MCINTOSH -KOCH -BEST -SOLOMON -MCCULLOUGH -DUDLEY -NOLAN -BLANCHARD -RIVAS -BRENNAN -MEJIA -KANE -BENTON -JOYCE -BUCKLEY -HALEY -VALENTINE -MADDOX -RUSSO -MCKNIGHT -BUCK -MOON -MCMILLAN -CROSBY -BERG -DOTSON -MAYS -ROACH -CHURCH -CHAN -RICHMOND -MEADOWS -FAULKNER -ONEILL -KNAPP -KLINE -BARRY -OCHOA -JACOBSON -GAY -AVERY -HENDRICKS -HORNE -SHEPARD -HEBERT -CHERRY -CARDENAS -MCINTYRE -WHITNEY -WALLER -HOLMAN -DONALDSON -CANTU -TERRELL -MORIN -GILLESPIE -FUENTES -TILLMAN -SANFORD -BENTLEY -PECK -KEY -SALAS -ROLLINS -GAMBLE -DICKSON -BATTLE -SANTANA -CABRERA -CERVANTES -HOWE -HINTON -HURLEY -SPENCE -ZAMORA -YANG -MCNEIL -SUAREZ -CASE -PETTY -GOULD -MCFARLAND -SAMPSON -CARVER -BRAY -ROSARIO -MACDONALD -STOUT -HESTER -MELENDEZ -DILLON -FARLEY -HOPPER -GALLOWAY -POTTS -BERNARD -JOYNER -STEIN -AGUIRRE -OSBORN -MERCER -BENDER -FRANCO -ROWLAND -SYKES -BENJAMIN -TRAVIS -PICKETT -CRANE -SEARS -MAYO -DUNLAP -HAYDEN -WILDER -MCKAY -COFFEY -MCCARTY -EWING -COOLEY -VAUGHAN -BONNER -COTTON -HOLDER -STARK -FERRELL -CANTRELL -FULTON -LYNN -LOTT -CALDERON -ROSA -POLLARD -HOOPER -BURCH -MULLEN -FRY -RIDDLE -LEVY -DAVID -DUKE -ODONNELL -GUY -MICHAEL -BRITT -FREDERICK -DAUGHERTY -BERGER -DILLARD -ALSTON -JARVIS -FRYE -RIGGS -CHANEY -ODOM -DUFFY -FITZPATRICK -VALENZUELA -MERRILL -MAYER -ALFORD -MCPHERSON -ACEVEDO -DONOVAN -BARRERA -ALBERT -COTE -REILLY -COMPTON -RAYMOND -MOONEY -MCGOWAN -CRAFT -CLEVELAND -CLEMONS -WYNN -NIELSEN -BAIRD -STANTON -SNIDER -ROSALES -BRIGHT -WITT -STUART -HAYS -HOLDEN -RUTLEDGE -KINNEY -CLEMENTS -CASTANEDA -SLATER -HAHN -EMERSON -CONRAD -BURKS -DELANEY -PATE -LANCASTER -SWEET -JUSTICE -TYSON -SHARPE -WHITFIELD -TALLEY -MACIAS -IRWIN -BURRIS -RATLIFF -MCCRAY -MADDEN -KAUFMAN -BEACH -GOFF -CASH -BOLTON -MCFADDEN -LEVINE -GOOD -BYERS -KIRKLAND -KIDD -WORKMAN -CARNEY -DALE -MCLEOD -HOLCOMB -ENGLAND -FINCH -HEAD -BURT -HENDRIX -SOSA -HANEY -FRANKS -SARGENT -NIEVES -DOWNS -RASMUSSEN -BIRD -HEWITT -LINDSAY -LE -FOREMAN -VALENCIA -ONEIL -DELACRUZ -VINSON -DEJESUS -HYDE -FORBES -GILLIAM -GUTHRIE -WOOTEN -HUBER -BARLOW -BOYLE -MCMAHON -BUCKNER -ROCHA -PUCKETT -LANGLEY -KNOWLES -COOKE -VELAZQUEZ -WHITLEY -NOEL -VANG - -Read more at http://names.mongabay.com/most_common_surnames.htm#CyreE4PYIvmxDJ5K.99 \ No newline at end of file diff --git a/splunk_eventgen/samples/linux_arch.sample b/splunk_eventgen/samples/linux_arch.sample deleted file mode 100644 index 33ef3111..00000000 --- a/splunk_eventgen/samples/linux_arch.sample +++ /dev/null @@ -1,25 +0,0 @@ -i386 -i686 -x86_64 -ia64 -alpha -amd64 -arm -armeb -armel -hppa -m32r -m68k -mips -mipsel -powerpc -ppc64 -s390 -s390x -sh3 -sh3eb -sh4 -sh4eb -sparc -sparcv8 -sparcv9 \ No newline at end of file diff --git a/splunk_eventgen/samples/mac_address.sample b/splunk_eventgen/samples/mac_address.sample deleted file mode 100644 index 37e425c9..00000000 --- a/splunk_eventgen/samples/mac_address.sample +++ /dev/null @@ -1,50 +0,0 @@ -19:61:3c:3e:20:84 -c7:df:23:1a:e8:ba -ba:b7:72:7a:16:30 -52:70:fa:52:7c:e4 -6a:83:f8:c6:5a:fc -e2:64:ae:81:26:f7 -ab:1a:41:74:87:2c -2f:29:25:a5:78:de -fb:69:33:d1:44:a4 -ac:d7:f5:9c:16:50 -67:c4:0e:fe:1a:34 -1a:ae:35:d8:b8:52 -af:fd:16:4f:9e:d8 -4a:43:e4:f5:3a:ae -0b:4a:fe:06:36:92 -73:09:b0:ec:6a:35 -d9:9d:e8:dc:91:d3 -76:a1:f8:7a:5b:6c -ec:ab:17:6c:17:c6 -92:90:55:51:61:31 -03:53:39:5b:ed:ab -da:b9:81:e1:17:01 -8b:66:79:4a:bf:c5 -f0:6c:88:2a:34:52 -74:c2:0a:56:49:99 -60:6e:74:df:78:fb -c0:eb:cf:50:74:6d -ad:7b:3d:db:49:8b -d8:9b:1f:b9:e6:01 -de:09:a2:ae:7a:93 -01:30:f9:d0:79:13 -20:c5:8e:0b:9d:a3 -ca:b6:07:cb:eb:a4 -ab:53:c2:c6:97:6b -84:df:af:01:a9:a5 -23:15:be:bc:d1:7f -d3:da:83:05:5e:2a -04:83:e5:65:6b:2c -5b:68:1e:b8:1d:25 -72:3d:78:de:38:ec -44:23:aa:bc:b0:b0 -3e:27:1c:ce:52:1f -88:7d:9a:11:64:de -81:4e:78:df:ad:d7 -59:7b:7f:54:da:c9 -8c:37:db:f0:2b:25 -d2:54:56:e0:f2:d9 -7e:70:7a:94:ca:76 -4b:a0:b6:18:fb:d0 -d0:ef:08:18:0d:8d \ No newline at end of file diff --git a/splunk_eventgen/samples/malicious_domains.sample b/splunk_eventgen/samples/malicious_domains.sample deleted file mode 100644 index cb292097..00000000 --- a/splunk_eventgen/samples/malicious_domains.sample +++ /dev/null @@ -1,5 +0,0 @@ -www.theflyingpoodles.com -www.partychimp.com -www.truepants.ru -www.makerealcashnow.com -www.freepetcaretips.com \ No newline at end of file diff --git a/splunk_eventgen/samples/markets.sample b/splunk_eventgen/samples/markets.sample deleted file mode 100644 index ccb98634..00000000 --- a/splunk_eventgen/samples/markets.sample +++ /dev/null @@ -1 +0,0 @@ -1101,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1102,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1103,SPRINGFIELD,MA,42.1029,-72.588735,HAMPDEN 1104,SPRINGFIELD,MA,42.128848,-72.577769,HAMPDEN 1105,SPRINGFIELD,MA,42.099931,-72.578312,HAMPDEN 1107,SPRINGFIELD,MA,42.117907,-72.606544,HAMPDEN 1108,SPRINGFIELD,MA,42.085314,-72.558432,HAMPDEN 1109,SPRINGFIELD,MA,42.114455,-72.554349,HAMPDEN 1111,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1115,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1118,SPRINGFIELD,MA,42.092937,-72.527445,HAMPDEN 1119,SPRINGFIELD,MA,42.12473,-72.51211,HAMPDEN 1128,SPRINGFIELD,MA,42.094397,-72.488903,HAMPDEN 1129,SPRINGFIELD,MA,42.122263,-72.487622,HAMPDEN 1133,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1138,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1139,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1144,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1151,SPRINGFIELD,MA,42.153225,-72.505048,HAMPDEN 1152,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1195,SPRINGFIELD,MA,42.1015,-72.5898,HAMPDEN 1199,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1601,WORCESTER,MA,42.2621,-71.8034,WORCESTER 1602,WORCESTER,MA,42.270251,-71.841678,WORCESTER 1603,WORCESTER,MA,42.245033,-71.837995,WORCESTER 1604,WORCESTER,MA,42.254084,-71.774626,WORCESTER 1605,WORCESTER,MA,42.289391,-71.788795,WORCESTER 1606,WORCESTER,MA,42.311029,-71.795774,WORCESTER 1607,WORCESTER,MA,42.230294,-71.793837,WORCESTER 1608,WORCESTER,MA,42.262425,-71.800262,WORCESTER 1609,WORCESTER,MA,42.275387,-71.817456,WORCESTER 1610,WORCESTER,MA,42.249186,-71.810798,WORCESTER 1613,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1614,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1615,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1653,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1654,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1655,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1801,WOBURN,MA,42.482894,-71.157404,MIDDLESEX 1806,WOBURN,MA,42.4791,-71.1527,MIDDLESEX 1807,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1808,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1813,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1815,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1888,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1901,LYNN,MA,42.463378,-70.945516,ESSEX 1902,LYNN,MA,42.469814,-70.941989,ESSEX 1903,LYNN,MA,42.4647,-70.9467,ESSEX 1904,LYNN,MA,42.487453,-70.962798,ESSEX 1905,LYNN,MA,42.46453,-70.973825,ESSEX 1910,LYNN,MA,42.4647,-70.9467,ESSEX 2108,BOSTON,MA,42.357603,-71.068432,SUFFOLK 2109,BOSTON,MA,42.362963,-71.053386,SUFFOLK 2110,BOSTON,MA,42.357636,-71.051417,SUFFOLK 2111,BOSTON,MA,42.350348,-71.0629,SUFFOLK 2112,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2113,BOSTON,MA,42.365656,-71.055958,SUFFOLK 2114,BOSTON,MA,42.361111,-71.06823,SUFFOLK 2115,BOSTON,MA,42.342706,-71.092215,SUFFOLK 2116,BOSTON,MA,42.349201,-71.076798,SUFFOLK 2117,BOSTON,MA,42.3503,-71.0762,SUFFOLK 2118,BOSTON,MA,42.340154,-71.075627,SUFFOLK 2119,BOSTON,MA,42.322414,-71.086923,SUFFOLK 2120,BOSTON,MA,42.332844,-71.097978,SUFFOLK 2121,BOSTON,MA,42.307503,-71.08305,SUFFOLK 2122,BOSTON,MA,42.297278,-71.058304,SUFFOLK 2123,BOSTON,MA,42.345,-71.0876,SUFFOLK 2124,BOSTON,MA,42.287984,-71.072898,SUFFOLK 2125,BOSTON,MA,42.315305,-71.061924,SUFFOLK 2127,BOSTON,MA,42.333454,-71.043792,SUFFOLK 2128,BOSTON,MA,42.378137,-71.028682,SUFFOLK 2133,BOSTON,MA,42.3573,-71.065,SUFFOLK 2138,CAMBRIDGE,MA,42.377045,-71.125611,MIDDLESEX 2139,CAMBRIDGE,MA,42.364688,-71.104155,MIDDLESEX 2140,CAMBRIDGE,MA,42.391366,-71.129379,MIDDLESEX 2141,CAMBRIDGE,MA,42.370701,-71.088277,MIDDLESEX 2142,CAMBRIDGE,MA,42.362025,-71.083011,MIDDLESEX 2163,BOSTON,MA,42.364005,-71.141879,SUFFOLK 2196,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2199,BOSTON,MA,42.347873,-71.082543,SUFFOLK 2201,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2203,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2204,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2205,BOSTON,MA,42.348,-71.0551,SUFFOLK 2206,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2207,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2210,BOSTON,MA,42.348921,-71.046511,SUFFOLK 2211,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2212,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2215,BOSTON,MA,42.347088,-71.102689,SUFFOLK 2216,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2217,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2222,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2238,CAMBRIDGE,MA,42.3731,-71.124,MIDDLESEX 2239,CAMBRIDGE,MA,42.3662,-71.1063,MIDDLESEX 2241,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2266,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2283,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2284,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2293,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2295,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2297,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2298,BOSTON,MA,42.3422,-71.0506,SUFFOLK 2740,NEW BEDFORD,MA,41.634749,-70.9372,BRISTOL 2741,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2742,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2744,NEW BEDFORD,MA,41.612716,-70.916746,BRISTOL 2745,NEW BEDFORD,MA,41.691337,-70.935545,BRISTOL 2746,NEW BEDFORD,MA,41.659972,-70.93243,BRISTOL 2901,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2902,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2903,PROVIDENCE,RI,41.820002,-71.415801,PROVIDENCE 2904,PROVIDENCE,RI,41.860461,-71.438102,PROVIDENCE 2905,PROVIDENCE,RI,41.786568,-71.403146,PROVIDENCE 2906,PROVIDENCE,RI,41.835104,-71.397065,PROVIDENCE 2907,PROVIDENCE,RI,41.800842,-71.424039,PROVIDENCE 2908,PROVIDENCE,RI,41.838294,-71.437684,PROVIDENCE 2909,PROVIDENCE,RI,41.816777,-71.448165,PROVIDENCE 2912,PROVIDENCE,RI,41.825833,-71.400833,PROVIDENCE 2918,PROVIDENCE,RI,41.8454,-71.4398,PROVIDENCE 2940,PROVIDENCE,RI,41.8238,-71.4133,PROVIDENCE 3101,MANCHESTER,NH,42.992858,-71.463255,HILLSBOROUGH 3102,MANCHESTER,NH,42.99442,-71.488433,HILLSBOROUGH 3103,MANCHESTER,NH,42.965563,-71.449325,HILLSBOROUGH 3104,MANCHESTER,NH,43.007307,-71.448233,HILLSBOROUGH 3105,MANCHESTER,NH,42.9925,-71.4635,HILLSBOROUGH 3107,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3108,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3109,MANCHESTER,NH,42.971349,-71.413474,HILLSBOROUGH 3111,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 4101,PORTLAND,ME,43.660564,-70.258864,CUMBERLAND 4102,PORTLAND,ME,43.660168,-70.28981,CUMBERLAND 4103,PORTLAND,ME,43.687568,-70.2876,CUMBERLAND 4104,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4109,PORTLAND,ME,43.674971,-70.202201,CUMBERLAND 4112,PORTLAND,ME,43.6613,-70.2558,CUMBERLAND 4122,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4123,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4124,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 5601,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5602,MONTPELIER,VT,44.264082,-72.576992,WASHINGTON 5603,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5604,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5609,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5620,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5633,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 6101,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6102,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6103,HARTFORD,CT,41.767196,-72.675966,HARTFORD 6104,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6105,HARTFORD,CT,41.769116,-72.701006,HARTFORD 6106,HARTFORD,CT,41.749841,-72.694734,HARTFORD 6107,WEST HARTFORD,CT,41.755553,-72.75322,HARTFORD 6110,WEST HARTFORD,CT,41.732566,-72.733691,HARTFORD 6112,HARTFORD,CT,41.79053,-72.69641,HARTFORD 6114,HARTFORD,CT,41.740293,-72.680726,HARTFORD 6115,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6117,WEST HARTFORD,CT,41.790021,-72.745689,HARTFORD 6119,WEST HARTFORD,CT,41.762765,-72.726799,HARTFORD 6120,HARTFORD,CT,41.78596,-72.675807,HARTFORD 6123,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6126,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6127,WEST HARTFORD,CT,41.7586,-72.7446,HARTFORD 6132,HARTFORD,CT,41.7813,-72.6968,HARTFORD 6133,WEST HARTFORD,CT,41.725,-72.7213,HARTFORD 6134,HARTFORD,CT,41.7431,-72.6834,HARTFORD 6137,WEST HARTFORD,CT,41.7619,-72.7425,HARTFORD 6140,HARTFORD,CT,41.7926,-72.678,HARTFORD 6141,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6142,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6143,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6144,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6145,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6146,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6147,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6150,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6151,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6152,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6153,HARTFORD,CT,41.6869,-72.7313,HARTFORD 6154,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6155,HARTFORD,CT,41.7692,-72.6861,HARTFORD 6156,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6160,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6161,HARTFORD,CT,41.6983,-72.6653,HARTFORD 6167,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6176,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6180,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6183,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6199,HARTFORD,CT,41.9266,-72.6546,HARTFORD 6501,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6502,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6503,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6504,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6505,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6506,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6507,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6508,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6509,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6510,NEW HAVEN,CT,41.308701,-72.92706,NEW HAVEN 6511,NEW HAVEN,CT,41.318364,-72.931771,NEW HAVEN 6513,NEW HAVEN,CT,41.314215,-72.882554,NEW HAVEN 6515,NEW HAVEN,CT,41.329301,-72.966445,NEW HAVEN 6519,NEW HAVEN,CT,41.296284,-72.937307,NEW HAVEN 6520,NEW HAVEN,CT,41.319,-72.9552,NEW HAVEN 6521,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6530,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6531,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6532,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6533,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6534,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6535,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6536,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6537,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6538,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6540,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6601,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6602,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6604,BRIDGEPORT,CT,41.179574,-73.201859,FAIRFIELD 6605,BRIDGEPORT,CT,41.166796,-73.216251,FAIRFIELD 6606,BRIDGEPORT,CT,41.20907,-73.208619,FAIRFIELD 6607,BRIDGEPORT,CT,41.178382,-73.165048,FAIRFIELD 6608,BRIDGEPORT,CT,41.189466,-73.181141,FAIRFIELD 6610,BRIDGEPORT,CT,41.200508,-73.168771,FAIRFIELD 6650,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6673,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6699,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6701,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6702,WATERBURY,CT,41.556568,-73.038545,NEW HAVEN 6703,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6704,WATERBURY,CT,41.575435,-73.031805,NEW HAVEN 6705,WATERBURY,CT,41.550328,-72.996268,NEW HAVEN 6706,WATERBURY,CT,41.536261,-73.03064,NEW HAVEN 6708,WATERBURY,CT,41.551102,-73.064495,NEW HAVEN 6710,WATERBURY,CT,41.567503,-73.046821,NEW HAVEN 6720,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6721,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6722,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6723,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6724,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6725,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6726,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6749,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6810,DANBURY,CT,41.391663,-73.453165,FAIRFIELD 6811,DANBURY,CT,41.423983,-73.471587,FAIRFIELD 6813,DANBURY,CT,41.3961,-73.4544,FAIRFIELD 6814,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6816,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6817,DANBURY,CT,41.3947,-73.4544,FAIRFIELD 6850,NORWALK,CT,41.12222,-73.435827,FAIRFIELD 6851,NORWALK,CT,41.132346,-73.405802,FAIRFIELD 6852,NORWALK,CT,41.1168,-73.4155,FAIRFIELD 6853,NORWALK,CT,41.070243,-73.439667,FAIRFIELD 6854,NORWALK,CT,41.095722,-73.428485,FAIRFIELD 6855,NORWALK,CT,41.101382,-73.401119,FAIRFIELD 6856,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6857,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6858,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6859,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6860,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6901,STAMFORD,CT,41.053083,-73.539039,FAIRFIELD 6902,STAMFORD,CT,41.052552,-73.537428,FAIRFIELD 6903,STAMFORD,CT,41.135235,-73.568356,FAIRFIELD 6904,STAMFORD,CT,41.0485,-73.5396,FAIRFIELD 6905,STAMFORD,CT,41.082576,-73.543757,FAIRFIELD 6906,STAMFORD,CT,41.069218,-73.523563,FAIRFIELD 6907,STAMFORD,CT,41.094206,-73.520297,FAIRFIELD 6910,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6911,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6912,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6913,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6914,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6920,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6921,STAMFORD,CT,41.0493,-73.5394,FAIRFIELD 6922,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6925,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6926,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6927,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6928,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 7097,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7101,NEWARK,NJ,40.7308,-74.1744,ESSEX 7102,NEWARK,NJ,40.73201,-74.176505,ESSEX 7103,NEWARK,NJ,40.736975,-74.196364,ESSEX 7104,NEWARK,NJ,40.766446,-74.1695,ESSEX 7105,NEWARK,NJ,40.727086,-74.156346,ESSEX 7106,NEWARK,NJ,40.741485,-74.233023,ESSEX 7107,NEWARK,NJ,40.760656,-74.18816,ESSEX 7108,NEWARK,NJ,40.723647,-74.201538,ESSEX 7112,NEWARK,NJ,40.71071,-74.213073,ESSEX 7114,NEWARK,NJ,40.708246,-74.189105,ESSEX 7175,NEWARK,NJ,40.7355,-74.1727,ESSEX 7182,NEWARK,NJ,40.731,-74.174,ESSEX 7184,NEWARK,NJ,40.7355,-74.1727,ESSEX 7188,NEWARK,NJ,40.7355,-74.1727,ESSEX 7189,NEWARK,NJ,40.7949,-74.1624,ESSEX 7191,NEWARK,NJ,40.7355,-74.1727,ESSEX 7192,NEWARK,NJ,40.7355,-74.1727,ESSEX 7193,NEWARK,NJ,40.7355,-74.1727,ESSEX 7194,NEWARK,NJ,40.7355,-74.1727,ESSEX 7195,NEWARK,NJ,40.7355,-74.1727,ESSEX 7198,NEWARK,NJ,40.7355,-74.1727,ESSEX 7199,NEWARK,NJ,40.7355,-74.1727,ESSEX 7302,JERSEY CITY,NJ,40.722126,-74.046878,HUDSON 7303,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7304,JERSEY CITY,NJ,40.717973,-74.075358,HUDSON 7305,JERSEY CITY,NJ,40.702007,-74.088998,HUDSON 7306,JERSEY CITY,NJ,40.732125,-74.066038,HUDSON 7307,JERSEY CITY,NJ,40.748167,-74.049752,HUDSON 7308,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7309,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7310,JERSEY CITY,NJ,40.732354,-74.043149,HUDSON 7311,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7395,JERSEY CITY,NJ,40.7282,-74.0776,HUDSON 7399,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7501,PATERSON,NJ,40.914273,-74.167141,PASSAIC 7502,PATERSON,NJ,40.919926,-74.193238,PASSAIC 7503,PATERSON,NJ,40.897046,-74.157272,PASSAIC 7504,PATERSON,NJ,40.912179,-74.145247,PASSAIC 7505,PATERSON,NJ,40.915581,-74.171947,PASSAIC 7509,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7510,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7513,PATERSON,NJ,40.906994,-74.152862,PASSAIC 7514,PATERSON,NJ,40.924764,-74.146717,PASSAIC 7522,PATERSON,NJ,40.925168,-74.178078,PASSAIC 7524,PATERSON,NJ,40.930916,-74.155457,PASSAIC 7533,PATERSON,NJ,40.8945,-74.1603,PASSAIC 7543,PATERSON,NJ,40.906,-74.1527,PASSAIC 7544,PATERSON,NJ,40.9335,-74.1545,PASSAIC 8601,TRENTON,NJ,40.2169,-74.7433,MERCER 8602,TRENTON,NJ,40.2169,-74.7433,MERCER 8603,TRENTON,NJ,40.2169,-74.7433,MERCER 8604,TRENTON,NJ,40.2169,-74.7433,MERCER 8605,TRENTON,NJ,40.2169,-74.7433,MERCER 8606,TRENTON,NJ,40.2169,-74.7433,MERCER 8607,TRENTON,NJ,40.2169,-74.7433,MERCER 8608,TRENTON,NJ,40.220437,-74.762237,MERCER 8609,TRENTON,NJ,40.223338,-74.742598,MERCER 8610,TRENTON,NJ,40.19894,-74.717205,MERCER 8611,TRENTON,NJ,40.207297,-74.751997,MERCER 8619,TRENTON,NJ,40.241977,-74.690377,MERCER 8620,TRENTON,NJ,40.178477,-74.671699,MERCER 8625,TRENTON,NJ,40.2712,-74.8179,MERCER 8629,TRENTON,NJ,40.219843,-74.732764,MERCER 8641,TRENTON,NJ,40.044026,-74.588195,BURLINGTON 8645,TRENTON,NJ,40.2169,-74.7433,MERCER 8646,TRENTON,NJ,40.2169,-74.7433,MERCER 8647,TRENTON,NJ,40.2169,-74.7433,MERCER 8648,TRENTON,NJ,40.277646,-74.723956,MERCER 8650,TRENTON,NJ,40.2169,-74.7433,MERCER 8666,TRENTON,NJ,40.2169,-74.7433,MERCER 8677,TRENTON,NJ,40.2169,-74.7433, 8690,TRENTON,NJ,40.223852,-74.659138,MERCER 8691,TRENTON,NJ,40.231785,-74.606262,MERCER 8695,TRENTON,NJ,40.2169,-74.7433,MERCER 8901,NEW BRUNSWICK,NJ,40.489073,-74.448193,MIDDLESEX 8903,NEW BRUNSWICK,NJ,40.5203,-74.4143,MIDDLESEX 8905,NEW BRUNSWICK,NJ,40.4587,-74.4648,MIDDLESEX 8906,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8922,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8933,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8988,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 8989,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 10001,NEW YORK,NY,40.74838,-73.996705,NEW YORK 10002,NEW YORK,NY,40.715231,-73.987681,NEW YORK 10003,NEW YORK,NY,40.731253,-73.989223,NEW YORK 10004,NEW YORK,NY,40.693604,-74.019025,NEW YORK 10005,NEW YORK,NY,40.705649,-74.008344,NEW YORK 10006,NEW YORK,NY,40.708451,-74.013474,NEW YORK 10007,NEW YORK,NY,40.713905,-74.007022,NEW YORK 10008,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10009,NEW YORK,NY,40.726188,-73.979591,NEW YORK 10010,NEW YORK,NY,40.737476,-73.981328,NEW YORK 10011,NEW YORK,NY,40.740225,-73.99963,NEW YORK 10012,NEW YORK,NY,40.72553,-73.998284,NEW YORK 10013,NEW YORK,NY,40.718511,-74.002529,NEW YORK 10014,NEW YORK,NY,40.73393,-74.005421,NEW YORK 10015,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10016,NEW YORK,NY,40.744281,-73.978134,NEW YORK 10017,NEW YORK,NY,40.75172,-73.970661,NEW YORK 10018,NEW YORK,NY,40.754713,-73.992503,NEW YORK 10019,NEW YORK,NY,40.765069,-73.985834,NEW YORK 10020,NEW YORK,NY,40.759729,-73.982347,NEW YORK 10021,NEW YORK,NY,40.768476,-73.958805,NEW YORK 10022,NEW YORK,NY,40.757091,-73.965703,NEW YORK 10023,NEW YORK,NY,40.77638,-73.982652,NEW YORK 10024,NEW YORK,NY,40.786446,-73.976385,NEW YORK 10025,NEW YORK,NY,40.797466,-73.968312,NEW YORK 10026,NEW YORK,NY,40.801942,-73.953069,NEW YORK 10027,NEW YORK,NY,40.811556,-73.954978,NEW YORK 10028,NEW YORK,NY,40.776267,-73.952866,NEW YORK 10029,NEW YORK,NY,40.791817,-73.94475,NEW YORK 10030,NEW YORK,NY,40.818333,-73.942597,NEW YORK 10031,NEW YORK,NY,40.82455,-73.950712,NEW YORK 10032,NEW YORK,NY,40.83819,-73.941978,NEW YORK 10033,NEW YORK,NY,40.84955,-73.935649,NEW YORK 10034,NEW YORK,NY,40.866222,-73.922077,NEW YORK 10035,NEW YORK,NY,40.801116,-73.937098,NEW YORK 10036,NEW YORK,NY,40.759724,-73.991826,NEW YORK 10037,NEW YORK,NY,40.813491,-73.9381,NEW YORK 10038,NEW YORK,NY,40.710092,-74.001298,NEW YORK 10039,NEW YORK,NY,40.826458,-73.938266,NEW YORK 10040,NEW YORK,NY,40.858308,-73.929601,NEW YORK 10041,NEW YORK,NY,40.7051,-74.014,NEW YORK 10043,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10044,NEW YORK,NY,40.762998,-73.949136,NEW YORK 10045,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10046,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10047,NEW YORK,NY,40.7102,-74.0128,NEW YORK 10048,NEW YORK,NY,40.7113,-74.0121,NEW YORK 10055,NEW YORK,NY,40.7589,-73.9735,NEW YORK 10060,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10065,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10069,NEW YORK,NY,40.7543,-73.9997,NEW YORK 10072,NEW YORK,NY,40.7501,-73.9978,NEW YORK 10075,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10079,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10080,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10081,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10082,NEW YORK,NY,40.7753,-73.9844,NEW YORK 10087,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10090,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10094,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10095,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10096,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10098,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10099,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10101,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10102,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10103,NEW YORK,NY,40.7597,-73.9762,NEW YORK 10104,NEW YORK,NY,40.7603,-73.9794,NEW YORK 10105,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10106,NEW YORK,NY,40.7647,-73.9804,NEW YORK 10107,NEW YORK,NY,40.7661,-73.9825,NEW YORK 10108,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10109,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10110,NEW YORK,NY,40.7533,-73.9808,NEW YORK 10111,NEW YORK,NY,40.7586,-73.9772,NEW YORK 10112,NEW YORK,NY,40.7584,-73.9784,NEW YORK 10113,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10114,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10115,NEW YORK,NY,40.8109,-73.954,NEW YORK 10116,NEW YORK,NY,40.8113,-73.9534,NEW YORK 10117,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10118,NEW YORK,NY,40.7483,-73.9865,NEW YORK 10119,NEW YORK,NY,40.7509,-73.9921,NEW YORK 10120,NEW YORK,NY,40.7496,-73.9884,NEW YORK 10121,NEW YORK,NY,40.7497,-73.9919,NEW YORK 10122,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10123,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10124,NEW YORK,NY,40.7577,-73.978,NEW YORK 10125,NEW YORK,NY,40.7995,-73.9679,NEW YORK 10126,NEW YORK,NY,40.7586,-73.9724,NEW YORK 10128,NEW YORK,NY,40.781618,-73.951112,NEW YORK 10129,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10130,NEW YORK,NY,40.7778,-73.9541,NEW YORK 10131,NEW YORK,NY,40.7679,-73.9611,NEW YORK 10132,NEW YORK,NY,40.7849,-73.9748,NEW YORK 10133,NEW YORK,NY,40.7716,-73.9873,NEW YORK 10138,NEW YORK,NY,40.754,-73.9909,NEW YORK 10149,NEW YORK,NY,40.7655,-73.9873,NEW YORK 10150,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10151,NEW YORK,NY,40.7631,-73.9733,NEW YORK 10152,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10153,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10154,NEW YORK,NY,40.7578,-73.973,NEW YORK 10155,NEW YORK,NY,40.7609,-73.9679,NEW YORK 10156,NEW YORK,NY,40.753,-73.9924,NEW YORK 10157,NEW YORK,NY,40.753,-73.9924,NEW YORK 10158,NEW YORK,NY,40.7487,-73.9753,NEW YORK 10159,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10160,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10161,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10162,NEW YORK,NY,40.7693,-73.9505,NEW YORK 10163,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10164,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10165,NEW YORK,NY,40.752,-73.9792,NEW YORK 10166,NEW YORK,NY,40.7532,-73.9766,NEW YORK 10167,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10168,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10169,NEW YORK,NY,40.754,-73.9771,NEW YORK 10170,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10171,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10172,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10173,NEW YORK,NY,40.7537,-73.9784,NEW YORK 10174,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10175,NEW YORK,NY,40.7538,-73.98,NEW YORK 10176,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10177,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10178,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10179,NEW YORK,NY,40.714167,-74.006667,NEW YORK 10184,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10185,NEW YORK,NY,40.7577,-73.978,NEW YORK 10196,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10197,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10199,NEW YORK,NY,40.7507,-73.9945,NEW YORK 10203,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10211,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10212,NEW YORK,NY,40.7051,-74.014,NEW YORK 10213,NEW YORK,NY,40.720278,-74.005,NEW YORK 10242,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10249,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10256,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10257,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10258,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10259,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10260,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10261,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10265,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10268,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10269,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10270,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10271,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10272,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10273,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10274,NEW YORK,NY,40.7051,-74.014,NEW YORK 10275,NEW YORK,NY,40.7051,-74.014,NEW YORK 10276,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10277,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10278,NEW YORK,NY,40.715,-74.0042,NEW YORK 10279,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10280,NEW YORK,NY,40.710537,-74.016323,NEW YORK 10281,NEW YORK,NY,40.7147,-74.016,NEW YORK 10282,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10285,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10286,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10292,NEW YORK,NY,40.7066,-74.0053,NEW YORK 10301,STATEN ISLAND,NY,40.631602,-74.092663,RICHMOND 10302,STATEN ISLAND,NY,40.630597,-74.137918,RICHMOND 10303,STATEN ISLAND,NY,40.630062,-74.160679,RICHMOND 10304,STATEN ISLAND,NY,40.610249,-74.087836,RICHMOND 10305,STATEN ISLAND,NY,40.597296,-74.076795,RICHMOND 10306,STATEN ISLAND,NY,40.568183,-74.118386,RICHMOND 10307,STATEN ISLAND,NY,40.508452,-74.244482,RICHMOND 10308,STATEN ISLAND,NY,40.55181,-74.152649,RICHMOND 10309,STATEN ISLAND,NY,40.535179,-74.211572,RICHMOND 10310,STATEN ISLAND,NY,40.632427,-74.11715,RICHMOND 10311,STATEN ISLAND,NY,40.6047,-74.1781,RICHMOND 10312,STATEN ISLAND,NY,40.545745,-74.179165,RICHMOND 10313,STATEN ISLAND,NY,40.5781,-74.1697,RICHMOND 10314,STATEN ISLAND,NY,40.603915,-74.147218,RICHMOND 10451,BRONX,NY,40.8222,-73.921735,BRONX 10452,BRONX,NY,40.837594,-73.921555,BRONX 10453,BRONX,NY,40.852047,-73.912937,BRONX 10454,BRONX,NY,40.808549,-73.919821,BRONX 10455,BRONX,NY,40.815309,-73.907172,BRONX 10456,BRONX,NY,40.831557,-73.909893,BRONX 10457,BRONX,NY,40.848635,-73.899907,BRONX 10458,BRONX,NY,40.863307,-73.889464,BRONX 10459,BRONX,NY,40.824699,-73.894047,BRONX 10460,BRONX,NY,40.840949,-73.879409,BRONX 10461,BRONX,NY,40.846506,-73.840953,BRONX 10462,BRONX,NY,40.843369,-73.860185,BRONX 10463,BRONX,NY,40.879812,-73.906737,BRONX 10464,BRONX,NY,40.846941,-73.787436,BRONX 10465,BRONX,NY,40.826065,-73.819581,BRONX 10466,BRONX,NY,40.890375,-73.850333,BRONX 10467,BRONX,NY,40.873671,-73.871242,BRONX 10468,BRONX,NY,40.866231,-73.900259,BRONX 10469,BRONX,NY,40.870193,-73.849465,BRONX 10470,BRONX,NY,40.900029,-73.862194,BRONX 10471,BRONX,NY,40.901084,-73.905283,BRONX 10472,BRONX,NY,40.829464,-73.871557,BRONX 10473,BRONX,NY,40.819364,-73.860626,BRONX 10474,BRONX,NY,40.801518,-73.886376,BRONX 10475,BRONX,NY,40.872903,-73.827817,BRONX 10499,BRONX,NY,40.85,-73.866667,BRONX 10550,MOUNT VERNON,NY,40.907863,-73.837961,WESTCHESTER 10551,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10552,MOUNT VERNON,NY,40.923056,-73.829919,WESTCHESTER 10553,MOUNT VERNON,NY,40.908645,-73.822111,WESTCHESTER 10557,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10558,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10601,WHITE PLAINS,NY,41.032955,-73.765231,WESTCHESTER 10602,WHITE PLAINS,NY,41.0274,-73.775,WESTCHESTER 10603,WHITE PLAINS,NY,41.049913,-73.77758,WESTCHESTER 10605,WHITE PLAINS,NY,41.014053,-73.755247,WESTCHESTER 10606,WHITE PLAINS,NY,41.024714,-73.778097,WESTCHESTER 10607,WHITE PLAINS,NY,41.039813,-73.811692,WESTCHESTER 10610,WHITE PLAINS,NY,41.0276,-73.7744,WESTCHESTER 10701,YONKERS,NY,40.940716,-73.888317,WESTCHESTER 10702,YONKERS,NY,40.931111,-73.899167,WESTCHESTER 10703,YONKERS,NY,40.951763,-73.885163,WESTCHESTER 10704,YONKERS,NY,40.917633,-73.859347,WESTCHESTER 10705,YONKERS,NY,40.917665,-73.895041,WESTCHESTER 10710,YONKERS,NY,40.965574,-73.843435,WESTCHESTER 11020,GREAT NECK,NY,40.774235,-73.718918,NASSAU 11021,GREAT NECK,NY,40.786674,-73.726984,NASSAU 11022,GREAT NECK,NY,40.7875,-73.725,NASSAU 11023,GREAT NECK,NY,40.799307,-73.734257,NASSAU 11024,GREAT NECK,NY,40.813307,-73.741391,NASSAU 11025,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11026,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11027,GREAT NECK,NY,40.7875,-73.725,NASSAU 11040,NEW HYDE PARK,NY,40.743926,-73.68042,NASSAU 11041,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11042,NEW HYDE PARK,NY,40.7602,-73.694978,NASSAU 11043,NEW HYDE PARK,NY,40.7317,-73.6821,NASSAU 11044,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11050,PORT WASHINGTON,NY,40.834995,-73.696356,NASSAU 11051,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11052,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11053,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11054,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11055,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11099,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11201,BROOKLYN,NY,40.694021,-73.99034,KINGS 11202,BROOKLYN,NY,40.6959,-73.9934,KINGS 11203,BROOKLYN,NY,40.650496,-73.934888,KINGS 11204,BROOKLYN,NY,40.617871,-73.985623,KINGS 11205,BROOKLYN,NY,40.692433,-73.96662,KINGS 11206,BROOKLYN,NY,40.701195,-73.943617,KINGS 11207,BROOKLYN,NY,40.670486,-73.893957,KINGS 11208,BROOKLYN,NY,40.676191,-73.873649,KINGS 11209,BROOKLYN,NY,40.625106,-74.030304,KINGS 11210,BROOKLYN,NY,40.628064,-73.946682,KINGS 11211,BROOKLYN,NY,40.709476,-73.956283,KINGS 11212,BROOKLYN,NY,40.662474,-73.914483,KINGS 11213,BROOKLYN,NY,40.669961,-73.93665,KINGS 11214,BROOKLYN,NY,40.601563,-73.99681,KINGS 11215,BROOKLYN,NY,40.666863,-73.982783,KINGS 11216,BROOKLYN,NY,40.67943,-73.949639,KINGS 11217,BROOKLYN,NY,40.68165,-73.979797,KINGS 11218,BROOKLYN,NY,40.642373,-73.975806,KINGS 11219,BROOKLYN,NY,40.633568,-73.996011,KINGS 11220,BROOKLYN,NY,40.641165,-74.013287,KINGS 11221,BROOKLYN,NY,40.690695,-73.927373,KINGS 11222,BROOKLYN,NY,40.727164,-73.949846,KINGS 11223,BROOKLYN,NY,40.597874,-73.974291,KINGS 11224,BROOKLYN,NY,40.576729,-73.988395,KINGS 11225,BROOKLYN,NY,40.662776,-73.954588,KINGS 11226,BROOKLYN,NY,40.646694,-73.956985,KINGS 11228,BROOKLYN,NY,40.617441,-74.012067,KINGS 11229,BROOKLYN,NY,40.601094,-73.94749,KINGS 11230,BROOKLYN,NY,40.622493,-73.965007,KINGS 11231,BROOKLYN,NY,40.679437,-74.00141,KINGS 11232,BROOKLYN,NY,40.652113,-74.001797,KINGS 11233,BROOKLYN,NY,40.678415,-73.921104,KINGS 11234,BROOKLYN,NY,40.620475,-73.923915,KINGS 11235,BROOKLYN,NY,40.583898,-73.953599,KINGS 11236,BROOKLYN,NY,40.640685,-73.902764,KINGS 11237,BROOKLYN,NY,40.700616,-73.917979,KINGS 11238,BROOKLYN,NY,40.679015,-73.964387,KINGS 11239,BROOKLYN,NY,40.649748,-73.882375,KINGS 11240,BROOKLYN,NY,40.6981,-73.986,KINGS 11241,BROOKLYN,NY,40.6932,-73.9911,KINGS 11242,BROOKLYN,NY,40.6932,-73.9911,KINGS 11243,BROOKLYN,NY,40.6846,-73.9804,KINGS 11244,BROOKLYN,NY,40.6895,-73.9906,KINGS 11245,BROOKLYN,NY,40.6873,-73.9896,KINGS 11247,BROOKLYN,NY,40.68,-73.9476,KINGS 11248,BROOKLYN,NY,40.6991,-73.9928,KINGS 11249,BROOKLYN,NY,40.6942,-73.9907,KINGS 11251,BROOKLYN,NY,40.703578,-73.966511,KINGS 11252,BROOKLYN,NY,40.618611,-74.033611,KINGS 11254,BROOKLYN,NY,40.6983,-73.9917,KINGS 11255,BROOKLYN,NY,40.6953,-73.9899,KINGS 11256,BROOKLYN,NY,40.6632,-73.8603,KINGS 11351,FLUSHING,NY,40.7816,-73.8272,QUEENS 11352,FLUSHING,NY,40.7476,-73.8263,QUEENS 11354,FLUSHING,NY,40.766722,-73.824142,QUEENS 11355,FLUSHING,NY,40.753573,-73.822609,QUEENS 11358,FLUSHING,NY,40.760636,-73.796788,QUEENS 11367,FLUSHING,NY,40.727966,-73.81953,QUEENS 11371,FLUSHING,NY,40.772117,-73.873535,QUEENS 11381,FLUSHING,NY,40.7652,-73.8177,QUEENS 11390,FLUSHING,NY,40.7652,-73.8177,QUEENS 11405,JAMAICA,NY,40.6913,-73.8061,QUEENS 11424,JAMAICA,NY,40.714167,-73.831389,QUEENS 11425,JAMAICA,NY,40.6913,-73.8061,QUEENS 11430,JAMAICA,NY,40.647221,-73.782663,QUEENS 11431,JAMAICA,NY,40.6913,-73.8061,QUEENS 11432,JAMAICA,NY,40.711867,-73.79442,QUEENS 11433,JAMAICA,NY,40.69691,-73.787669,QUEENS 11434,JAMAICA,NY,40.677483,-73.77584,QUEENS 11435,JAMAICA,NY,40.702934,-73.811121,QUEENS 11436,JAMAICA,NY,40.676347,-73.796596,QUEENS 11439,JAMAICA,NY,40.6913,-73.8061,QUEENS 11451,JAMAICA,NY,40.7011,-73.8006,QUEENS 11499,JAMAICA,NY,40.6913,-73.8061,QUEENS 11801,HICKSVILLE,NY,40.762305,-73.52297,NASSAU 11802,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11815,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11819,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11854,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11855,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 12201,ALBANY,NY,42.6525,-73.7566,ALBANY 12202,ALBANY,NY,42.641314,-73.764071,ALBANY 12203,ALBANY,NY,42.676757,-73.821988,ALBANY 12204,ALBANY,NY,42.684667,-73.735364,ALBANY 12205,ALBANY,NY,42.713116,-73.820174,ALBANY 12206,ALBANY,NY,42.668326,-73.774406,ALBANY 12207,ALBANY,NY,42.658133,-73.752327,ALBANY 12208,ALBANY,NY,42.655989,-73.796357,ALBANY 12209,ALBANY,NY,42.641665,-73.785385,ALBANY 12210,ALBANY,NY,42.65677,-73.76052,ALBANY 12211,ALBANY,NY,42.704693,-73.769982,ALBANY 12212,ALBANY,NY,42.6525,-73.7566,ALBANY 12214,ALBANY,NY,42.6525,-73.7566,ALBANY 12220,ALBANY,NY,42.6525,-73.7566,ALBANY 12222,ALBANY,NY,42.6525,-73.7566,ALBANY 12223,ALBANY,NY,42.6525,-73.7566,ALBANY 12224,ALBANY,NY,42.6525,-73.7566,ALBANY 12225,ALBANY,NY,42.6525,-73.7566,ALBANY 12226,ALBANY,NY,42.6525,-73.7566,ALBANY 12227,ALBANY,NY,42.6525,-73.7566,ALBANY 12228,ALBANY,NY,42.6525,-73.7566,ALBANY 12229,ALBANY,NY,42.6525,-73.7566,ALBANY 12230,ALBANY,NY,42.6525,-73.7566,ALBANY 12231,ALBANY,NY,42.6525,-73.7566,ALBANY 12232,ALBANY,NY,42.6525,-73.7566,ALBANY 12233,ALBANY,NY,42.7174,-73.8285,ALBANY 12234,ALBANY,NY,42.6525,-73.7566,ALBANY 12235,ALBANY,NY,42.7174,-73.8285,ALBANY 12236,ALBANY,NY,42.6525,-73.7566,ALBANY 12237,ALBANY,NY,42.6525,-73.7566,ALBANY 12238,ALBANY,NY,42.6525,-73.7566,ALBANY 12239,ALBANY,NY,42.6525,-73.7566,ALBANY 12240,ALBANY,NY,42.6525,-73.7566,ALBANY 12241,ALBANY,NY,42.6525,-73.7566,ALBANY 12242,ALBANY,NY,42.6525,-73.7566,ALBANY 12243,ALBANY,NY,42.6525,-73.7566,ALBANY 12244,ALBANY,NY,42.6525,-73.7566,ALBANY 12245,ALBANY,NY,42.6525,-73.7566,ALBANY 12246,ALBANY,NY,42.647,-73.75,ALBANY 12247,ALBANY,NY,42.6525,-73.7566,ALBANY 12248,ALBANY,NY,42.6525,-73.7566,ALBANY 12249,ALBANY,NY,42.6525,-73.7566,ALBANY 12250,ALBANY,NY,42.6525,-73.7566,ALBANY 12252,ALBANY,NY,42.6525,-73.7566,ALBANY 12255,ALBANY,NY,42.6525,-73.7566,ALBANY 12256,ALBANY,NY,42.6525,-73.7566,ALBANY 12257,ALBANY,NY,42.6525,-73.7566,ALBANY 12260,ALBANY,NY,42.6525,-73.7566,ALBANY 12261,ALBANY,NY,42.7174,-73.8285,ALBANY 12288,ALBANY,NY,42.7174,-73.8285,ALBANY 12301,SCHENECTADY,NY,42.8155,-73.9395,SCHENECTADY 12302,SCHENECTADY,NY,42.858839,-73.955051,SCHENECTADY 12303,SCHENECTADY,NY,42.769645,-73.938776,SCHENECTADY 12304,SCHENECTADY,NY,42.784083,-73.909432,SCHENECTADY 12305,SCHENECTADY,NY,42.816131,-73.939786,SCHENECTADY 12306,SCHENECTADY,NY,42.790384,-73.980876,SCHENECTADY 12307,SCHENECTADY,NY,42.804653,-73.936349,SCHENECTADY 12308,SCHENECTADY,NY,42.817928,-73.920591,SCHENECTADY 12309,SCHENECTADY,NY,42.796168,-73.878268,SCHENECTADY 12325,SCHENECTADY,NY,42.869,-73.9325,SCHENECTADY 12345,SCHENECTADY,NY,42.8102,-73.9507,SCHENECTADY 13201,SYRACUSE,NY,43.0459,-76.1528,ONONDAGA 13202,SYRACUSE,NY,43.040988,-76.148856,ONONDAGA 13203,SYRACUSE,NY,43.060703,-76.136931,ONONDAGA 13204,SYRACUSE,NY,43.044398,-76.175767,ONONDAGA 13205,SYRACUSE,NY,43.012314,-76.14518,ONONDAGA 13206,SYRACUSE,NY,43.06773,-76.110226,ONONDAGA 13207,SYRACUSE,NY,43.019482,-76.16501,ONONDAGA 13208,SYRACUSE,NY,43.073007,-76.148616,ONONDAGA 13209,SYRACUSE,NY,43.078204,-76.238448,ONONDAGA 13210,SYRACUSE,NY,43.035414,-76.128166,ONONDAGA 13211,SYRACUSE,NY,43.09951,-76.142181,ONONDAGA 13212,SYRACUSE,NY,43.130623,-76.137295,ONONDAGA 13214,SYRACUSE,NY,43.042529,-76.07844,ONONDAGA 13215,SYRACUSE,NY,42.997544,-76.211851,ONONDAGA 13217,SYRACUSE,NY,43.0512,-76.122,ONONDAGA 13218,SYRACUSE,NY,43.0301,-76.1259,ONONDAGA 13219,SYRACUSE,NY,43.040943,-76.226159,ONONDAGA 13220,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13221,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13224,SYRACUSE,NY,43.042134,-76.104609,ONONDAGA 13225,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13235,SYRACUSE,NY,43.0321,-76.1271,ONONDAGA 13244,SYRACUSE,NY,43.0394,-76.1361,ONONDAGA 13250,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13251,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13252,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13261,SYRACUSE,NY,43.0433,-76.1508,ONONDAGA 13290,SYRACUSE,NY,43.0685,-76.1709,ONONDAGA 13501,UTICA,NY,43.087112,-75.231463,ONEIDA 13502,UTICA,NY,43.106723,-75.231383,ONEIDA 13503,UTICA,NY,43.1015,-75.2319,ONEIDA 13504,UTICA,NY,43.1008,-75.233,ONEIDA 13505,UTICA,NY,43.1008,-75.233,ONEIDA 13599,UTICA,NY,43.1008,-75.233,ONEIDA 14201,BUFFALO,NY,42.896659,-78.884575,ERIE 14202,BUFFALO,NY,42.887038,-78.877948,ERIE 14203,BUFFALO,NY,42.893938,-78.868143,ERIE 14204,BUFFALO,NY,42.883978,-78.859736,ERIE 14205,BUFFALO,NY,42.8925,-78.8707,ERIE 14206,BUFFALO,NY,42.881132,-78.810375,ERIE 14207,BUFFALO,NY,42.949062,-78.897815,ERIE 14208,BUFFALO,NY,42.915416,-78.850487,ERIE 14209,BUFFALO,NY,42.913,-78.865629,ERIE 14210,BUFFALO,NY,42.861432,-78.82055,ERIE 14211,BUFFALO,NY,42.908153,-78.822477,ERIE 14212,BUFFALO,NY,42.894553,-78.824458,ERIE 14213,BUFFALO,NY,42.916675,-78.889461,ERIE 14214,BUFFALO,NY,42.941429,-78.837403,ERIE 14215,BUFFALO,NY,42.933536,-78.811504,ERIE 14216,BUFFALO,NY,42.949914,-78.859865,ERIE 14217,BUFFALO,NY,42.968618,-78.872948,ERIE 14218,BUFFALO,NY,42.818301,-78.817263,ERIE 14219,BUFFALO,NY,42.790039,-78.822228,ERIE 14220,BUFFALO,NY,42.844138,-78.818205,ERIE 14221,BUFFALO,NY,42.985621,-78.738044,ERIE 14222,BUFFALO,NY,42.916401,-78.876333,ERIE 14223,BUFFALO,NY,42.973088,-78.845,ERIE 14224,BUFFALO,NY,42.836162,-78.75109,ERIE 14225,BUFFALO,NY,42.928642,-78.760855,ERIE 14226,BUFFALO,NY,42.967232,-78.799849,ERIE 14227,BUFFALO,NY,42.877467,-78.741936,ERIE 14228,BUFFALO,NY,43.018414,-78.774604,ERIE 14231,BUFFALO,NY,42.963889,-78.738056,ERIE 14233,BUFFALO,NY,42.8849,-78.8265,ERIE 14240,BUFFALO,NY,42.8849,-78.8265,ERIE 14241,BUFFALO,NY,42.8849,-78.8265,ERIE 14260,BUFFALO,NY,43.0003,-78.7902,ERIE 14261,BUFFALO,NY,43.0013,-78.7853,ERIE 14263,BUFFALO,NY,42.8849,-78.8265,ERIE 14264,BUFFALO,NY,42.8849,-78.8265,ERIE 14265,BUFFALO,NY,42.8849,-78.8265,ERIE 14267,BUFFALO,NY,42.8849,-78.8265,ERIE 14269,BUFFALO,NY,42.8849,-78.8265,ERIE 14270,BUFFALO,NY,42.8849,-78.8265,ERIE 14272,BUFFALO,NY,42.8849,-78.8265,ERIE 14273,BUFFALO,NY,42.8849,-78.8265,ERIE 14276,BUFFALO,NY,42.8849,-78.8265,ERIE 14280,BUFFALO,NY,42.8849,-78.8265,ERIE 14602,ROCHESTER,NY,43.1683,-77.6026,MONROE 14603,ROCHESTER,NY,43.1615,-77.6073,MONROE 14604,ROCHESTER,NY,43.157729,-77.607978,MONROE 14605,ROCHESTER,NY,43.169758,-77.600711,MONROE 14606,ROCHESTER,NY,43.168455,-77.684488,MONROE 14607,ROCHESTER,NY,43.150086,-77.588976,MONROE 14608,ROCHESTER,NY,43.152144,-77.625803,MONROE 14609,ROCHESTER,NY,43.174001,-77.563701,MONROE 14610,ROCHESTER,NY,43.14524,-77.549501,MONROE 14611,ROCHESTER,NY,43.148375,-77.639353,MONROE 14612,ROCHESTER,NY,43.256576,-77.665228,MONROE 14613,ROCHESTER,NY,43.18308,-77.639276,MONROE 14614,ROCHESTER,NY,43.155823,-77.61419,MONROE 14615,ROCHESTER,NY,43.20575,-77.652118,MONROE 14616,ROCHESTER,NY,43.232359,-77.651238,MONROE 14617,ROCHESTER,NY,43.220258,-77.599442,MONROE 14618,ROCHESTER,NY,43.115416,-77.558801,MONROE 14619,ROCHESTER,NY,43.136685,-77.6481,MONROE 14620,ROCHESTER,NY,43.131711,-77.606239,MONROE 14621,ROCHESTER,NY,43.183362,-77.604284,MONROE 14622,ROCHESTER,NY,43.213959,-77.55549,MONROE 14623,ROCHESTER,NY,43.083371,-77.634412,MONROE 14624,ROCHESTER,NY,43.12589,-77.733552,MONROE 14625,ROCHESTER,NY,43.14949,-77.503188,MONROE 14626,ROCHESTER,NY,43.21257,-77.703996,MONROE 14627,ROCHESTER,NY,43.1284,-77.6295,MONROE 14638,ROCHESTER,NY,43.1572,-77.6064,MONROE 14639,ROCHESTER,NY,43.1572,-77.6064,MONROE 14642,ROCHESTER,NY,43.1242,-77.6231,MONROE 14643,ROCHESTER,NY,43.1572,-77.6064,MONROE 14644,ROCHESTER,NY,43.1572,-77.6064,MONROE 14645,ROCHESTER,NY,43.1572,-77.6064,MONROE 14646,ROCHESTER,NY,43.1572,-77.6064,MONROE 14647,ROCHESTER,NY,43.1572,-77.6064,MONROE 14649,ROCHESTER,NY,43.1572,-77.6064,MONROE 14650,ROCHESTER,NY,43.1541,-77.6255,MONROE 14651,ROCHESTER,NY,43.1541,-77.6255,MONROE 14652,ROCHESTER,NY,43.1541,-77.6255,MONROE 14653,ROCHESTER,NY,43.1541,-77.6255,MONROE 14664,ROCHESTER,NY,43.1572,-77.6064,MONROE 14673,ROCHESTER,NY,43.1572,-77.6064,MONROE 14683,ROCHESTER,NY,43.1572,-77.6064,MONROE 14692,ROCHESTER,NY,43.0869,-77.5973,MONROE 14694,ROCHESTER,NY,43.1541,-77.6255,MONROE 14901,ELMIRA,NY,42.100769,-76.811977,CHEMUNG 14902,ELMIRA,NY,42.0909,-76.8061,CHEMUNG 14903,ELMIRA,NY,42.130203,-76.843572,CHEMUNG 14904,ELMIRA,NY,42.072866,-76.803735,CHEMUNG 14905,ELMIRA,NY,42.086919,-76.839686,CHEMUNG 14925,ELMIRA,NY,42.1146,-76.8055,CHEMUNG 15201,PITTSBURGH,PA,40.474536,-79.952524,ALLEGHENY 15202,PITTSBURGH,PA,40.501321,-80.066966,ALLEGHENY 15203,PITTSBURGH,PA,40.425439,-79.977556,ALLEGHENY 15204,PITTSBURGH,PA,40.455569,-80.061056,ALLEGHENY 15205,PITTSBURGH,PA,40.438045,-80.073393,ALLEGHENY 15206,PITTSBURGH,PA,40.468885,-79.919267,ALLEGHENY 15207,PITTSBURGH,PA,40.401206,-79.933935,ALLEGHENY 15208,PITTSBURGH,PA,40.454955,-79.898474,ALLEGHENY 15209,PITTSBURGH,PA,40.49718,-79.97401,ALLEGHENY 15210,PITTSBURGH,PA,40.408541,-79.987405,ALLEGHENY 15211,PITTSBURGH,PA,40.42908,-80.012156,ALLEGHENY 15212,PITTSBURGH,PA,40.468873,-80.013128,ALLEGHENY 15213,PITTSBURGH,PA,40.44372,-79.954428,ALLEGHENY 15214,PITTSBURGH,PA,40.481309,-80.01393,ALLEGHENY 15215,PITTSBURGH,PA,40.499225,-79.917513,ALLEGHENY 15216,PITTSBURGH,PA,40.399584,-80.035727,ALLEGHENY 15217,PITTSBURGH,PA,40.431852,-79.924973,ALLEGHENY 15218,PITTSBURGH,PA,40.424468,-79.887591,ALLEGHENY 15219,PITTSBURGH,PA,40.44539,-79.977229,ALLEGHENY 15220,PITTSBURGH,PA,40.417405,-80.051202,ALLEGHENY 15221,PITTSBURGH,PA,40.438352,-79.870243,ALLEGHENY 15222,PITTSBURGH,PA,40.442111,-80.000556,ALLEGHENY 15223,PITTSBURGH,PA,40.50428,-79.95145,ALLEGHENY 15224,PITTSBURGH,PA,40.464215,-79.945445,ALLEGHENY 15225,PITTSBURGH,PA,40.513819,-80.137027,ALLEGHENY 15226,PITTSBURGH,PA,40.394628,-80.015759,ALLEGHENY 15227,PITTSBURGH,PA,40.37619,-79.975816,ALLEGHENY 15228,PITTSBURGH,PA,40.371326,-80.043186,ALLEGHENY 15229,PITTSBURGH,PA,40.519321,-80.035685,ALLEGHENY 15230,PITTSBURGH,PA,40.5085,-80.0786,ALLEGHENY 15231,PITTSBURGH,PA,40.502778,-80.188333,ALLEGHENY 15232,PITTSBURGH,PA,40.453598,-79.932557,ALLEGHENY 15233,PITTSBURGH,PA,40.460425,-80.029965,ALLEGHENY 15234,PITTSBURGH,PA,40.369424,-80.017907,ALLEGHENY 15235,PITTSBURGH,PA,40.4605,-79.826892,ALLEGHENY 15236,PITTSBURGH,PA,40.345244,-79.976894,ALLEGHENY 15237,PITTSBURGH,PA,40.552238,-80.034939,ALLEGHENY 15238,PITTSBURGH,PA,40.515077,-79.877423,ALLEGHENY 15239,PITTSBURGH,PA,40.477693,-79.734505,ALLEGHENY 15240,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15241,PITTSBURGH,PA,40.332174,-80.07921,ALLEGHENY 15242,PITTSBURGH,PA,40.420278,-80.05,ALLEGHENY 15243,PITTSBURGH,PA,40.373797,-80.072425,ALLEGHENY 15244,PITTSBURGH,PA,40.444444,-80.146111,ALLEGHENY 15250,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15251,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15252,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15253,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15254,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15255,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15257,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15258,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15259,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15260,PITTSBURGH,PA,40.4424,-79.9507,ALLEGHENY 15261,PITTSBURGH,PA,40.4442,-79.9617,ALLEGHENY 15262,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15263,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15264,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15265,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15267,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15268,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15270,PITTSBURGH,PA,40.4036,-80.0344,ALLEGHENY 15272,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15274,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15275,PITTSBURGH,PA,40.4513,-80.1788,ALLEGHENY 15276,PITTSBURGH,PA,40.4292,-80.1253,ALLEGHENY 15277,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15278,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15279,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15281,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15282,PITTSBURGH,PA,40.4371,-79.9929,ALLEGHENY 15283,PITTSBURGH,PA,40.4199,-80.0499,ALLEGHENY 15285,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15286,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15289,PITTSBURGH,PA,40.4406,-79.9961,ALLEGHENY 15290,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15295,PITTSBURGH,PA,40.4747,-79.9521,ALLEGHENY 15901,JOHNSTOWN,PA,40.325957,-78.91408,CAMBRIA 15902,JOHNSTOWN,PA,40.307787,-78.896905,CAMBRIA 15904,JOHNSTOWN,PA,40.285026,-78.865383,CAMBRIA 15905,JOHNSTOWN,PA,40.307188,-78.943006,CAMBRIA 15906,JOHNSTOWN,PA,40.352193,-78.938317,CAMBRIA 15907,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 15909,JOHNSTOWN,PA,40.387965,-78.862284,CAMBRIA 15915,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 16101,NEW CASTLE,PA,40.99222,-80.328449,LAWRENCE 16102,NEW CASTLE,PA,40.967745,-80.390704,LAWRENCE 16103,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16105,NEW CASTLE,PA,41.033502,-80.342191,LAWRENCE 16107,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16108,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16501,ERIE,PA,42.125962,-80.08601,ERIE 16502,ERIE,PA,42.113332,-80.097607,ERIE 16503,ERIE,PA,42.126506,-80.063976,ERIE 16504,ERIE,PA,42.1108,-80.05208,ERIE 16505,ERIE,PA,42.097526,-80.161902,ERIE 16506,ERIE,PA,42.073801,-80.14844,ERIE 16507,ERIE,PA,42.131579,-80.086424,ERIE 16508,ERIE,PA,42.097577,-80.093544,ERIE 16509,ERIE,PA,42.076326,-80.066827,ERIE 16510,ERIE,PA,42.123673,-80.003752,ERIE 16511,ERIE,PA,42.15529,-80.017665,ERIE 16512,ERIE,PA,42.1185,-80.0229,ERIE 16514,ERIE,PA,42.1185,-80.0229,ERIE 16515,ERIE,PA,42.1185,-80.0229,ERIE 16522,ERIE,PA,42.1185,-80.0229,ERIE 16530,ERIE,PA,42.1185,-80.0229,ERIE 16531,ERIE,PA,42.1185,-80.0229,ERIE 16532,ERIE,PA,42.1185,-80.0229,ERIE 16533,ERIE,PA,42.1185,-80.0229,ERIE 16534,ERIE,PA,42.1185,-80.0229,ERIE 16538,ERIE,PA,42.1185,-80.0229,ERIE 16541,ERIE,PA,42.1185,-80.0229,ERIE 16544,ERIE,PA,42.1185,-80.0229,ERIE 16546,ERIE,PA,42.1073,-80.0486,ERIE 16550,ERIE,PA,42.1185,-80.0229,ERIE 16553,ERIE,PA,42.1185,-80.0229,ERIE 16554,ERIE,PA,42.1185,-80.0229,ERIE 16563,ERIE,PA,42.1185,-80.0229,ERIE 16565,ERIE,PA,42.0687,-80.10011,ERIE 17101,HARRISBURG,PA,40.261767,-76.883079,DAUPHIN 17102,HARRISBURG,PA,40.27278,-76.891044,DAUPHIN 17103,HARRISBURG,PA,40.273852,-76.863812,DAUPHIN 17104,HARRISBURG,PA,40.259683,-76.859397,DAUPHIN 17105,HARRISBURG,PA,40.2846,-76.8736,DAUPHIN 17106,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17107,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17108,HARRISBURG,PA,40.2615,-76.8831,DAUPHIN 17109,HARRISBURG,PA,40.29122,-76.822612,DAUPHIN 17110,HARRISBURG,PA,40.302957,-76.886246,DAUPHIN 17111,HARRISBURG,PA,40.266058,-76.793918,DAUPHIN 17112,HARRISBURG,PA,40.335208,-76.791438,DAUPHIN 17113,HARRISBURG,PA,40.234007,-76.827568,DAUPHIN 17120,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17121,HARRISBURG,PA,40.3136,-76.875,DAUPHIN 17122,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17123,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17124,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17125,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17126,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17127,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17128,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17129,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17130,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17140,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17177,HARRISBURG,PA,40.2959,-76.8553,DAUPHIN 17401,YORK,PA,39.963539,-76.726887,YORK 17402,YORK,PA,39.971508,-76.674578,YORK 17403,YORK,PA,39.94943,-76.712998,YORK 17404,YORK,PA,39.961988,-76.768987,YORK 17405,YORK,PA,39.9594,-76.7263,YORK 17406,YORK,PA,39.998249,-76.592646,YORK 17407,YORK,PA,39.880203,-76.714634,YORK 17408,YORK,PA,39.9492,-76.8018,YORK 17415,YORK,PA,39.9933,-76.6475,YORK 17601,LANCASTER,PA,40.075381,-76.319888,LANCASTER 17602,LANCASTER,PA,40.033514,-76.284364,LANCASTER 17603,LANCASTER,PA,40.030475,-76.331583,LANCASTER 17604,LANCASTER,PA,40.0598,-76.3357,LANCASTER 17605,LANCASTER,PA,40.0494,-76.2506,LANCASTER 17606,LANCASTER,PA,40.0932,-76.3036,LANCASTER 17607,LANCASTER,PA,40.0516,-76.3608,LANCASTER 17608,LANCASTER,PA,40.0405,-76.308,LANCASTER 17611,LANCASTER,PA,40.0092,-76.372,LANCASTER 17622,LANCASTER,PA,40.0378755,-76.3055144,LANCASTER 17699,LANCASTER,PA,40.0377,-76.3058,LANCASTER 18015,BETHLEHEM,PA,40.600167,-75.380507,NORTHAMPTON 18016,BETHLEHEM,PA,40.6209,-75.3645,NORTHAMPTON 18017,BETHLEHEM,PA,40.65168,-75.35823,NORTHAMPTON 18018,BETHLEHEM,PA,40.627849,-75.392827,NORTHAMPTON 18020,BETHLEHEM,PA,40.6609,-75.3274,NORTHAMPTON 18025,BETHLEHEM,PA,40.6335,-75.3952,LEHIGH 18101,ALLENTOWN,PA,40.602729,-75.470955,LEHIGH 18102,ALLENTOWN,PA,40.606818,-75.478139,LEHIGH 18103,ALLENTOWN,PA,40.589145,-75.464521,LEHIGH 18104,ALLENTOWN,PA,40.601849,-75.522499,LEHIGH 18105,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18106,ALLENTOWN,PA,40.561451,-75.566424,LEHIGH 18109,ALLENTOWN,PA,40.6235,-75.4383,LEHIGH 18175,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18195,ALLENTOWN,PA,40.5728,-75.6153,LEHIGH 18501,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18502,SCRANTON,PA,41.3732,-75.6788,LACKAWANNA 18503,SCRANTON,PA,41.409517,-75.664205,LACKAWANNA 18504,SCRANTON,PA,41.412777,-75.686081,LACKAWANNA 18505,SCRANTON,PA,41.39145,-75.665738,LACKAWANNA 18508,SCRANTON,PA,41.438917,-75.662529,LACKAWANNA 18509,SCRANTON,PA,41.427353,-75.646454,LACKAWANNA 18510,SCRANTON,PA,41.408039,-75.648397,LACKAWANNA 18512,SCRANTON,PA,41.426184,-75.62294,LACKAWANNA 18514,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18515,SCRANTON,PA,41.4476,-75.6669,LACKAWANNA 18522,SCRANTON,PA,41.4303,-75.6437,LACKAWANNA 18540,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18577,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18701,WILKES BARRE,PA,41.244892,-75.884063,LUZERNE 18702,WILKES BARRE,PA,41.236512,-75.882557,LUZERNE 18703,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18705,WILKES BARRE,PA,41.268921,-75.845309,LUZERNE 18706,WILKES BARRE,PA,41.206709,-75.918157,LUZERNE 18710,WILKES BARRE,PA,41.2454,-75.8819,LUZERNE 18711,WILKES BARRE,PA,41.2474,-75.8536,LUZERNE 18762,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18764,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18765,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18766,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18767,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18769,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18773,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 19019,PHILADELPHIA,PA,40.1162,-75.0141,PHILADELPHIA 19092,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19093,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19099,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19101,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19102,PHILADELPHIA,PA,39.948908,-75.166109,PHILADELPHIA 19103,PHILADELPHIA,PA,39.951285,-75.174136,PHILADELPHIA 19104,PHILADELPHIA,PA,39.959732,-75.202445,PHILADELPHIA 19105,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19106,PHILADELPHIA,PA,39.94742,-75.147271,PHILADELPHIA 19107,PHILADELPHIA,PA,39.94867,-75.159339,PHILADELPHIA 19108,PHILADELPHIA,PA,39.9591,-75.1599,PHILADELPHIA 19109,PHILADELPHIA,PA,39.9498,-75.1641,PHILADELPHIA 19110,PHILADELPHIA,PA,39.9504,-75.164,PHILADELPHIA 19111,PHILADELPHIA,PA,40.059635,-75.081792,PHILADELPHIA 19112,PHILADELPHIA,PA,39.889252,-75.178207,PHILADELPHIA 19113,PHILADELPHIA,PA,39.864998,-75.275196,DELAWARE 19114,PHILADELPHIA,PA,40.063356,-74.999032,PHILADELPHIA 19115,PHILADELPHIA,PA,40.090286,-75.041036,PHILADELPHIA 19116,PHILADELPHIA,PA,40.116599,-75.019803,PHILADELPHIA 19118,PHILADELPHIA,PA,40.081247,-75.2006,PHILADELPHIA 19119,PHILADELPHIA,PA,40.054681,-75.186564,PHILADELPHIA 19120,PHILADELPHIA,PA,40.034254,-75.121256,PHILADELPHIA 19121,PHILADELPHIA,PA,39.981085,-75.174005,PHILADELPHIA 19122,PHILADELPHIA,PA,39.978014,-75.145882,PHILADELPHIA 19123,PHILADELPHIA,PA,39.965975,-75.150968,PHILADELPHIA 19124,PHILADELPHIA,PA,40.017798,-75.089526,PHILADELPHIA 19125,PHILADELPHIA,PA,39.978751,-75.126156,PHILADELPHIA 19126,PHILADELPHIA,PA,40.056839,-75.137854,PHILADELPHIA 19127,PHILADELPHIA,PA,40.027512,-75.224167,PHILADELPHIA 19128,PHILADELPHIA,PA,40.040247,-75.223084,PHILADELPHIA 19129,PHILADELPHIA,PA,40.011816,-75.186149,PHILADELPHIA 19130,PHILADELPHIA,PA,39.967677,-75.173467,PHILADELPHIA 19131,PHILADELPHIA,PA,39.98447,-75.228226,PHILADELPHIA 19132,PHILADELPHIA,PA,39.995393,-75.16982,PHILADELPHIA 19133,PHILADELPHIA,PA,39.992467,-75.141505,PHILADELPHIA 19134,PHILADELPHIA,PA,39.99252,-75.113284,PHILADELPHIA 19135,PHILADELPHIA,PA,40.024694,-75.051827,PHILADELPHIA 19136,PHILADELPHIA,PA,40.042159,-75.024388,PHILADELPHIA 19137,PHILADELPHIA,PA,40.000849,-75.072654,PHILADELPHIA 19138,PHILADELPHIA,PA,40.05683,-75.156898,PHILADELPHIA 19139,PHILADELPHIA,PA,39.961166,-75.230301,PHILADELPHIA 19140,PHILADELPHIA,PA,40.011771,-75.145626,PHILADELPHIA 19141,PHILADELPHIA,PA,40.036473,-75.145109,PHILADELPHIA 19142,PHILADELPHIA,PA,39.922332,-75.233796,PHILADELPHIA 19143,PHILADELPHIA,PA,39.944815,-75.228819,PHILADELPHIA 19144,PHILADELPHIA,PA,40.033773,-75.173099,PHILADELPHIA 19145,PHILADELPHIA,PA,39.922724,-75.181194,PHILADELPHIA 19146,PHILADELPHIA,PA,39.937949,-75.179364,PHILADELPHIA 19147,PHILADELPHIA,PA,39.936175,-75.156324,PHILADELPHIA 19148,PHILADELPHIA,PA,39.92068,-75.159538,PHILADELPHIA 19149,PHILADELPHIA,PA,40.036915,-75.066374,PHILADELPHIA 19150,PHILADELPHIA,PA,40.07262,-75.170621,PHILADELPHIA 19151,PHILADELPHIA,PA,39.977199,-75.254492,PHILADELPHIA 19152,PHILADELPHIA,PA,40.060571,-75.047079,PHILADELPHIA 19153,PHILADELPHIA,PA,39.905512,-75.244431,PHILADELPHIA 19154,PHILADELPHIA,PA,40.089738,-74.978052,PHILADELPHIA 19155,PHILADELPHIA,PA,40.0947,-74.9818,PHILADELPHIA 19160,PHILADELPHIA,PA,40.0117,-75.1463,PHILADELPHIA 19161,PHILADELPHIA,PA,40.0614,-75.0795,PHILADELPHIA 19162,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19170,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19171,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19172,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19173,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19175,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19176,PHILADELPHIA,PA,39.9523,-75.1638,PHILADELPHIA 19177,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19178,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19179,PHILADELPHIA,PA,40.0315,-75.1764,PHILADELPHIA 19181,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19182,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19183,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19184,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19185,PHILADELPHIA,PA,39.8893,-75.1701,PHILADELPHIA 19187,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19188,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19190,PHILADELPHIA,PA,39.952335,-75.163789,PHILADELPHIA 19191,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19192,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19193,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19194,PHILADELPHIA,PA,39.9543,-75.1827,PHILADELPHIA 19195,PHILADELPHIA,PA,39.9522,-75.1642,PHILADELPHIA 19196,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19197,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19244,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19255,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19481,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19482,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19483,VALLEY FORGE,PA,40.08,-75.4159,MONTGOMERY 19484,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19485,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19493,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19494,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19495,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19496,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19601,READING,PA,40.346621,-75.935132,BERKS 19602,READING,PA,40.330604,-75.919229,BERKS 19603,READING,PA,40.3362,-75.9277,BERKS 19604,READING,PA,40.350721,-75.914262,BERKS 19605,READING,PA,40.38859,-75.932769,BERKS 19606,READING,PA,40.325109,-75.868178,BERKS 19607,READING,PA,40.299696,-75.953103,BERKS 19608,READING,PA,40.31449,-76.024086,BERKS 19609,READING,PA,40.325778,-75.995347,BERKS 19610,READING,PA,40.333478,-75.976382,BERKS 19611,READING,PA,40.324989,-75.944188,BERKS 19612,READING,PA,40.3683,-75.9116,BERKS 19640,READING,PA,40.3683,-75.9116,BERKS 19702,NEWARK,DE,39.634869,-75.699339,NEW CASTLE 19711,NEWARK,DE,39.701129,-75.737534,NEW CASTLE 19712,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19713,NEWARK,DE,39.669881,-75.715101,NEW CASTLE 19714,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19715,NEWARK,DE,39.6832,-75.749,NEW CASTLE 19716,NEWARK,DE,39.6814,-75.754,NEW CASTLE 19717,NEWARK,DE,39.6816,-75.7545,NEW CASTLE 19718,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19725,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19726,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19801,WILMINGTON,DE,39.737752,-75.549658,NEW CASTLE 19802,WILMINGTON,DE,39.75638,-75.534041,NEW CASTLE 19803,WILMINGTON,DE,39.793236,-75.531076,NEW CASTLE 19804,WILMINGTON,DE,39.720854,-75.612815,NEW CASTLE 19805,WILMINGTON,DE,39.743375,-75.582724,NEW CASTLE 19806,WILMINGTON,DE,39.757076,-75.563503,NEW CASTLE 19807,WILMINGTON,DE,39.782206,-75.607205,NEW CASTLE 19808,WILMINGTON,DE,39.734737,-75.663891,NEW CASTLE 19809,WILMINGTON,DE,39.771913,-75.494592,NEW CASTLE 19810,WILMINGTON,DE,39.819377,-75.505999,NEW CASTLE 19850,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19880,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19884,WILMINGTON,DE,39.778889,-75.598611,NEW CASTLE 19885,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19886,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19887,WILMINGTON,DE,39.8187,-75.508,NEW CASTLE 19889,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19890,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19891,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19892,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19893,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19894,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19895,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19896,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19897,WILMINGTON,DE,39.7856,-75.5458,NEW CASTLE 19898,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19899,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 20001,WASHINGTON,DC,38.912217,-77.017691,DISTRICT OF COLUMBIA 20002,WASHINGTON,DC,38.902365,-76.990055,DISTRICT OF COLUMBIA 20003,WASHINGTON,DC,38.882941,-76.989539,DISTRICT OF COLUMBIA 20004,WASHINGTON,DC,38.892955,-77.026303,DISTRICT OF COLUMBIA 20005,WASHINGTON,DC,38.906731,-77.031236,DISTRICT OF COLUMBIA 20006,WASHINGTON,DC,38.896444,-77.044701,DISTRICT OF COLUMBIA 20007,WASHINGTON,DC,38.914365,-77.074042,DISTRICT OF COLUMBIA 20008,WASHINGTON,DC,38.936282,-77.059936,DISTRICT OF COLUMBIA 20009,WASHINGTON,DC,38.920202,-77.037504,DISTRICT OF COLUMBIA 20010,WASHINGTON,DC,38.93272,-77.032183,DISTRICT OF COLUMBIA 20011,WASHINGTON,DC,38.951786,-77.020251,DISTRICT OF COLUMBIA 20012,WASHINGTON,DC,38.975712,-77.028248,DISTRICT OF COLUMBIA 20013,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20015,WASHINGTON,DC,38.965768,-77.067961,DISTRICT OF COLUMBIA 20016,WASHINGTON,DC,38.938117,-77.086037,DISTRICT OF COLUMBIA 20017,WASHINGTON,DC,38.936723,-76.994038,DISTRICT OF COLUMBIA 20018,WASHINGTON,DC,38.927724,-76.976159,DISTRICT OF COLUMBIA 20019,WASHINGTON,DC,38.890237,-76.937588,DISTRICT OF COLUMBIA 20020,WASHINGTON,DC,38.860039,-76.974187,DISTRICT OF COLUMBIA 20022,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20023,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20024,WASHINGTON,DC,38.875939,-77.016028,DISTRICT OF COLUMBIA 20026,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20027,WASHINGTON,DC,38.9008,-76.9827,DISTRICT OF COLUMBIA 20029,WASHINGTON,DC,38.8938,-76.9501,DISTRICT OF COLUMBIA 20030,WASHINGTON,DC,38.8648,-76.9707,DISTRICT OF COLUMBIA 20032,WASHINGTON,DC,38.833843,-76.999549,DISTRICT OF COLUMBIA 20033,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20035,WASHINGTON,DC,38.9026,-77.0398,DISTRICT OF COLUMBIA 20036,WASHINGTON,DC,38.908704,-77.041434,DISTRICT OF COLUMBIA 20037,WASHINGTON,DC,38.901446,-77.050448,DISTRICT OF COLUMBIA 20038,WASHINGTON,DC,38.9008,-77.0328,DISTRICT OF COLUMBIA 20039,WASHINGTON,DC,38.9528,-77.0234,DISTRICT OF COLUMBIA 20040,WASHINGTON,DC,38.9658,-77.0276,DISTRICT OF COLUMBIA 20041,WASHINGTON,DC,38.944,-77.4624,DISTRICT OF COLUMBIA 20042,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20043,WASHINGTON,DC,38.9033,-77.0325,DISTRICT OF COLUMBIA 20044,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20045,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20046,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20047,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20049,WASHINGTON,DC,38.8963,-77.02,DISTRICT OF COLUMBIA 20050,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20051,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20052,WASHINGTON,DC,38.899,-77.0457,DISTRICT OF COLUMBIA 20053,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20055,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20056,WASHINGTON,DC,38.9158,-77.0321,DISTRICT OF COLUMBIA 20057,WASHINGTON,DC,38.9079,-77.0714,DISTRICT OF COLUMBIA 20058,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20059,WASHINGTON,DC,38.9226,-77.0212,DISTRICT OF COLUMBIA 20060,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20061,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20062,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20063,WASHINGTON,DC,38.9055,-77.0467,DISTRICT OF COLUMBIA 20064,WASHINGTON,DC,38.9326,-76.9973,DISTRICT OF COLUMBIA 20065,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20066,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20067,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20068,WASHINGTON,DC,38.9002,-77.0437,DISTRICT OF COLUMBIA 20069,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20070,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20071,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20073,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20074,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20075,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20076,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20077,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20078,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20080,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20081,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20082,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20088,WASHINGTON,DC,38.9417,-77.0771,DISTRICT OF COLUMBIA 20090,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20091,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20097,WASHINGTON,DC,38.8858,-77.0063,DISTRICT OF COLUMBIA 20098,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20101,DULLES,VA,38.9886,-77.4507,LOUDOUN 20102,DULLES,VA,38.9886,-77.4507,LOUDOUN 20103,DULLES,VA,38.9886,-77.4507,LOUDOUN 20104,DULLES,VA,38.9886,-77.4507,LOUDOUN 20108,MANASSAS,VA,38.7518,-77.4728,MANASSAS CITY 20109,MANASSAS,VA,38.841111,-77.538056,PRINCE WILLIAM 20110,MANASSAS,VA,38.7509,-77.48,MANASSAS CITY 20111,MANASSAS,VA,38.783889,-77.47,PRINCE WILLIAM 20112,MANASSAS,VA,38.6811,-77.4324,PRINCE WILLIAM 20113,MANASSAS,VA,38.7776,-77.5197,MANASSAS PARK CITY 20170,HERNDON,VA,38.9764,-77.3839,FAIRFAX 20171,HERNDON,VA,38.935556,-77.380278,FAIRFAX 20172,HERNDON,VA,38.9335,-77.3477,FAIRFAX 20189,DULLES,VA,38.8951,-77.0369,LOUDOUN 20190,RESTON,VA,38.96,-77.3456,FAIRFAX 20191,RESTON,VA,38.9379,-77.352,FAIRFAX 20192,HERNDON,VA,38.9496,-77.366,FAIRFAX 20193,RESTON,VA,38.959167,-77.336944,FAIRFAX 20194,RESTON,VA,38.9785,-77.347,FAIRFAX 20195,RESTON,VA,38.9335,-77.3477,FAIRFAX 20196,RESTON,VA,38.9253,-77.3971,FAIRFAX 20199,DULLES,VA,39.0011,-77.4562,LOUDOUN 20201,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20202,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20203,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20204,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20206,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20207,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20208,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20210,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20211,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20212,WASHINGTON,DC,38.8971,-77.0084,DISTRICT OF COLUMBIA 20213,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20214,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20215,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20216,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20217,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20218,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20219,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20220,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20221,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20222,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20223,WASHINGTON,DC,38.895,-77.036667,DISTRICT OF COLUMBIA 20224,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20226,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20227,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20228,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20229,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20230,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20232,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20233,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20235,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20237,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20238,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20239,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20240,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20241,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20242,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20244,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20245,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20250,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20251,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20254,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20260,WASHINGTON,DC,38.8836,-77.02,DISTRICT OF COLUMBIA 20261,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20262,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20265,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20266,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20268,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20270,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20277,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20289,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20299,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20301,WASHINGTON,DC,38.891019,-77.038196,DISTRICT OF COLUMBIA 20303,WASHINGTON,DC,38.9171,-76.994,DISTRICT OF COLUMBIA 20306,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20307,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20310,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20314,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20317,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20318,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20319,WASHINGTON,DC,38.867778,-77.015556,DISTRICT OF COLUMBIA 20330,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20340,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20350,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20355,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20370,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20372,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20375,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20380,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20389,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20390,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20392,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20393,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20394,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20395,WASHINGTON,DC,38.8619,-76.9738,DISTRICT OF COLUMBIA 20401,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20402,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20403,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20404,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20405,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20406,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20407,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20408,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20409,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20410,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20411,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20412,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20413,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20414,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20415,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20416,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20418,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20419,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20420,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20421,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20422,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20423,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20424,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20425,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20426,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20427,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20428,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20429,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20431,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20433,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20434,WASHINGTON,DC,38.9058,-77.0472,DISTRICT OF COLUMBIA 20435,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20436,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20437,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20439,WASHINGTON,DC,38.8991,-77.035,DISTRICT OF COLUMBIA 20440,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20441,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20442,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20444,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20447,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20451,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20453,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20456,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20460,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20463,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20468,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20469,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20470,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20472,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20500,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20501,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20502,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20503,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20504,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20505,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20506,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20507,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20508,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20509,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20510,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20511,WASHINGTON,DC,38.977,-77.0527,DISTRICT OF COLUMBIA 20515,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20520,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20521,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20522,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20523,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20524,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20525,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20526,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20527,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20528,WASHINGTON,DC,38.895,-77.0367,DISTRICT OF COLUMBIA 20529,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 20530,WASHINGTON,DC,38.894,-77.025,DISTRICT OF COLUMBIA 20531,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20532,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20533,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20534,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20535,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20536,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20537,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20538,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20539,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20540,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20541,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20542,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20543,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20544,WASHINGTON,DC,38.8968,-77.0079,DISTRICT OF COLUMBIA 20546,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20547,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20548,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20549,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20551,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20552,WASHINGTON,DC,38.8982,-77.0406,DISTRICT OF COLUMBIA 20553,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20554,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20555,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20557,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20558,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20559,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20560,WASHINGTON,DC,38.8888,-77.0254,DISTRICT OF COLUMBIA 20565,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20566,WASHINGTON,DC,38.8958,-77.056,DISTRICT OF COLUMBIA 20570,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20571,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20572,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20573,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20575,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20576,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20577,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20578,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20579,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20580,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20581,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20585,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20586,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20590,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20591,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20593,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20594,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20597,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20599,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20707,LAUREL,MD,39.107687,-76.872043,PRINCE GEORGES 20708,LAUREL,MD,39.068376,-76.847725,PRINCE GEORGES 20709,LAUREL,MD,39.061389,-76.851111,PRINCE GEORGES 20715,BOWIE,MD,38.979696,-76.743497,PRINCE GEORGES 20716,BOWIE,MD,38.927482,-76.731979,PRINCE GEORGES 20717,BOWIE,MD,38.925,-76.743056,PRINCE GEORGES 20718,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20719,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20720,BOWIE,MD,38.973733,-76.789526,PRINCE GEORGES 20721,BOWIE,MD,38.919588,-76.80527,PRINCE GEORGES 20723,LAUREL,MD,39.120806,-76.84345,HOWARD 20724,LAUREL,MD,39.095801,-76.815485,ANNE ARUNDEL 20725,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20726,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20781,HYATTSVILLE,MD,38.95063,-76.934652,PRINCE GEORGES 20782,HYATTSVILLE,MD,38.963575,-76.966632,PRINCE GEORGES 20783,HYATTSVILLE,MD,38.993751,-76.97472,PRINCE GEORGES 20784,HYATTSVILLE,MD,38.951541,-76.888829,PRINCE GEORGES 20785,HYATTSVILLE,MD,38.91992,-76.882243,PRINCE GEORGES 20787,HYATTSVILLE,MD,38.988611,-76.981667,PRINCE GEORGES 20788,HYATTSVILLE,MD,38.963333,-76.962222,PRINCE GEORGES 20810,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20811,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20813,BETHESDA,MD,38.9643,-77.0884,MONTGOMERY 20814,BETHESDA,MD,39.000343,-77.102165,MONTGOMERY 20816,BETHESDA,MD,38.958485,-77.11528,MONTGOMERY 20817,BETHESDA,MD,38.999659,-77.137239,MONTGOMERY 20824,BETHESDA,MD,38.9832,-77.0942,MONTGOMERY 20827,BETHESDA,MD,39.014,-77.1602,MONTGOMERY 20847,ROCKVILLE,MD,39.0838,-77.153,MONTGOMERY 20848,ROCKVILLE,MD,39.0753,-77.1165,MONTGOMERY 20849,ROCKVILLE,MD,39.084,-77.1537,MONTGOMERY 20850,ROCKVILLE,MD,39.087037,-77.167973,MONTGOMERY 20851,ROCKVILLE,MD,39.076265,-77.123449,MONTGOMERY 20852,ROCKVILLE,MD,39.049628,-77.120416,MONTGOMERY 20853,ROCKVILLE,MD,39.088738,-77.095037,MONTGOMERY 20857,ROCKVILLE,MD,39.0629,-77.1152,MONTGOMERY 20877,GAITHERSBURG,MD,39.14187,-77.188993,MONTGOMERY 20878,GAITHERSBURG,MD,39.115534,-77.236434,MONTGOMERY 20879,GAITHERSBURG,MD,39.172597,-77.194599,MONTGOMERY 20882,GAITHERSBURG,MD,39.238345,-77.174718,MONTGOMERY 20883,GAITHERSBURG,MD,39.1743,-77.1915,MONTGOMERY 20884,GAITHERSBURG,MD,39.139,-77.1942,MONTGOMERY 20885,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20889,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20892,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20894,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20898,GAITHERSBURG,MD,39.1272,-77.1727,MONTGOMERY 20899,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20901,SILVER SPRING,MD,39.019106,-77.007613,MONTGOMERY 20902,SILVER SPRING,MD,39.04158,-77.046348,MONTGOMERY 20903,SILVER SPRING,MD,39.009513,-76.984648,MONTGOMERY 20904,SILVER SPRING,MD,39.06524,-76.976399,MONTGOMERY 20905,SILVER SPRING,MD,39.102438,-76.989928,MONTGOMERY 20906,SILVER SPRING,MD,39.081041,-77.063233,MONTGOMERY 20907,SILVER SPRING,MD,38.9965,-77.0341,MONTGOMERY 20908,SILVER SPRING,MD,39.1029,-77.0763,MONTGOMERY 20910,SILVER SPRING,MD,38.998198,-77.033776,MONTGOMERY 20911,SILVER SPRING,MD,38.9943,-77.0302,MONTGOMERY 20914,SILVER SPRING,MD,39.075556,-77.002222,MONTGOMERY 20915,SILVER SPRING,MD,39.039722,-77.055556,MONTGOMERY 20916,SILVER SPRING,MD,39.083,-77.0785,MONTGOMERY 20918,SILVER SPRING,MD,39.0213,-77.015,MONTGOMERY 20993,SILVER SPRING,MD,38.9907,-77.0261,MONTGOMERY 20997,SILVER SPRING,MD,39.1127,-77.248,MONTGOMERY 21201,BALTIMORE,MD,39.29463,-76.625203,BALTIMORE CITY 21202,BALTIMORE,MD,39.299844,-76.607499,BALTIMORE CITY 21203,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21205,BALTIMORE,MD,39.300871,-76.579915,BALTIMORE CITY 21206,BALTIMORE,MD,39.336494,-76.541135,BALTIMORE CITY 21209,BALTIMORE,MD,39.371622,-76.674431,BALTIMORE CITY 21210,BALTIMORE,MD,39.350727,-76.632099,BALTIMORE CITY 21211,BALTIMORE,MD,39.331642,-76.633625,BALTIMORE CITY 21212,BALTIMORE,MD,39.362571,-76.609989,BALTIMORE CITY 21213,BALTIMORE,MD,39.312667,-76.581012,BALTIMORE CITY 21214,BALTIMORE,MD,39.35206,-76.564375,BALTIMORE CITY 21215,BALTIMORE,MD,39.344572,-76.679397,BALTIMORE CITY 21216,BALTIMORE,MD,39.309349,-76.669891,BALTIMORE CITY 21217,BALTIMORE,MD,39.306416,-76.639267,BALTIMORE CITY 21218,BALTIMORE,MD,39.3265,-76.6048,BALTIMORE CITY 21223,BALTIMORE,MD,39.287,-76.647586,BALTIMORE CITY 21224,BALTIMORE,MD,39.287558,-76.556831,BALTIMORE CITY 21229,BALTIMORE,MD,39.285645,-76.689885,BALTIMORE CITY 21230,BALTIMORE,MD,39.269943,-76.626193,BALTIMORE CITY 21231,BALTIMORE,MD,39.289193,-76.589956,BALTIMORE CITY 21233,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21235,BALTIMORE,MD,39.3111,-76.7213,BALTIMORE CITY 21239,BALTIMORE,MD,39.360977,-76.589082,BALTIMORE CITY 21240,BALTIMORE,MD,39.17185,-76.648287,ANNE ARUNDEL 21241,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21250,BALTIMORE,MD,39.2595,-76.7091,BALTIMORE 21251,BALTIMORE,MD,39.3459,-76.5856,BALTIMORE CITY 21252,BALTIMORE,MD,39.3875,-76.6184,BALTIMORE 21263,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21264,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21265,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21268,BALTIMORE,MD,39.2192,-76.7214,BALTIMORE CITY 21270,BALTIMORE,MD,39.3339,-76.674,BALTIMORE CITY 21273,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21274,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21275,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21278,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21279,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21280,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21281,BALTIMORE,MD,39.2873,-76.5419,BALTIMORE CITY 21282,BALTIMORE,MD,39.374167,-76.722778,BALTIMORE 21283,BALTIMORE,MD,39.2902,-76.6125,BALTIMORE CITY 21284,BALTIMORE,MD,39.418889,-76.535556,BALTIMORE 21285,BALTIMORE,MD,39.4164,-76.608,BALTIMORE 21287,BALTIMORE,MD,39.2946,-76.5908,BALTIMORE CITY 21288,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21289,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21290,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21297,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21298,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21401,ANNAPOLIS,MD,38.999645,-76.503139,ANNE ARUNDEL 21402,ANNAPOLIS,MD,38.982436,-76.48079,ANNE ARUNDEL 21403,ANNAPOLIS,MD,38.952394,-76.49103,ANNE ARUNDEL 21404,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21405,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21409,ANNAPOLIS,MD,39.01932,-76.441827,ANNE ARUNDEL 21411,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21412,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21660,RIDGELY,MD,38.956787,-75.884825,CAROLINE 21681,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21682,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21683,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21684,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21685,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21686,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21687,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21688,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21701,FREDERICK,MD,39.408235,-77.400875,FREDERICK 21702,FREDERICK,MD,39.436532,-77.447369,FREDERICK 21703,FREDERICK,MD,39.3876,-77.4471,FREDERICK 21704,FREDERICK,MD,39.325833,-77.351667,FREDERICK 21705,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21709,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21740,HAGERSTOWN,MD,39.632022,-77.737215,WASHINGTON 21741,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21742,HAGERSTOWN,MD,39.657291,-77.692102,WASHINGTON 21746,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21747,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21748,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21749,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 22030,FAIRFAX,VA,38.845826,-77.324151,FAIRFAX CITY 22031,FAIRFAX,VA,38.860353,-77.264937,FAIRFAX 22032,FAIRFAX,VA,38.817729,-77.292527,FAIRFAX 22033,FAIRFAX,VA,38.877627,-77.388451,FAIRFAX 22034,FAIRFAX,VA,38.8595,-77.2659,FAIRFAX 22035,FAIRFAX,VA,38.854,-77.3577,FAIRFAX 22036,FAIRFAX,VA,38.86,-77.2593,FAIRFAX 22037,FAIRFAX,VA,38.8594,-77.2269,FAIRFAX 22038,FAIRFAX,VA,38.8482,-77.3065,FAIRFAX CITY 22040,FALLS CHURCH,VA,38.8838,-77.1741,FALLS CHURCH CITY 22041,FALLS CHURCH,VA,38.848506,-77.136928,FAIRFAX 22042,FALLS CHURCH,VA,38.866272,-77.192271,FAIRFAX 22043,FALLS CHURCH,VA,38.901226,-77.20005,FAIRFAX 22044,FALLS CHURCH,VA,38.863544,-77.150819,FAIRFAX 22046,FALLS CHURCH,VA,38.88559,-77.180231,FALLS CHURCH CITY 22047,FALLS CHURCH,VA,38.869,-77.2241,FAIRFAX 22081,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22082,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22092,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22095,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22096,RESTON,VA,38.925278,-77.396944,FAIRFAX 22101,MC LEAN,VA,38.932624,-77.170628,FAIRFAX 22102,MC LEAN,VA,38.936318,-77.221934,FAIRFAX 22106,MC LEAN,VA,38.9372,-77.1786,FAIRFAX 22107,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22108,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22109,MC LEAN,VA,38.9327,-77.1825,FAIRFAX 22116,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22118,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22119,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22120,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22150,SPRINGFIELD,VA,38.779718,-77.186582,FAIRFAX 22151,SPRINGFIELD,VA,38.803323,-77.213908,FAIRFAX 22152,SPRINGFIELD,VA,38.776488,-77.233243,FAIRFAX 22153,SPRINGFIELD,VA,38.744859,-77.237026,FAIRFAX 22156,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22158,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22159,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22160,SPRINGFIELD,VA,38.8111,-77.2182,FAIRFAX 22161,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22180,VIENNA,VA,38.893527,-77.253219,FAIRFAX 22181,VIENNA,VA,38.897695,-77.288048,FAIRFAX 22182,VIENNA,VA,38.928005,-77.264876,FAIRFAX 22183,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22184,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22185,VIENNA,VA,38.880833,-77.301111,FAIRFAX 22201,ARLINGTON,VA,38.887103,-77.093197,ARLINGTON 22202,ARLINGTON,VA,38.856547,-77.059228,ARLINGTON 22203,ARLINGTON,VA,38.873799,-77.114191,ARLINGTON 22204,ARLINGTON,VA,38.858962,-77.099688,ARLINGTON 22205,ARLINGTON,VA,38.883557,-77.139488,ARLINGTON 22206,ARLINGTON,VA,38.841508,-77.09046,ARLINGTON 22207,ARLINGTON,VA,38.903321,-77.126287,ARLINGTON 22209,ARLINGTON,VA,38.8926,-77.07531,ARLINGTON 22210,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22212,ARLINGTON,VA,38.8809,-76.8545,ARLINGTON 22213,ARLINGTON,VA,38.895375,-77.163295,ARLINGTON 22214,ARLINGTON,VA,38.8795,-77.0802,ARLINGTON 22215,ARLINGTON,VA,38.8793,-77.1131,ARLINGTON 22216,ARLINGTON,VA,38.8916,-77.0839,ARLINGTON 22217,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22218,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22219,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22222,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22223,ARLINGTON,VA,38.8867,-77.0936,ARLINGTON 22225,ARLINGTON,VA,38.8566,-77.0584,ARLINGTON 22226,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22227,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22229,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22230,ARLINGTON,VA,38.873,-77.1042,ARLINGTON 22234,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22240,ARLINGTON,VA,38.88,-77.1153,ARLINGTON 22241,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22242,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22243,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22244,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22245,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22246,ARLINGTON,VA,38.8575,-77.0531,ARLINGTON 22301,ALEXANDRIA,VA,38.820042,-77.058901,ALEXANDRIA CITY 22302,ALEXANDRIA,VA,38.83354,-77.092412,ALEXANDRIA CITY 22303,ALEXANDRIA,VA,38.791143,-77.076608,FAIRFAX 22304,ALEXANDRIA,VA,38.814871,-77.120989,ALEXANDRIA CITY 22305,ALEXANDRIA,VA,38.837184,-77.064039,ALEXANDRIA CITY 22306,ALEXANDRIA,VA,38.755769,-77.085389,FAIRFAX 22307,ALEXANDRIA,VA,38.77056,-77.062511,FAIRFAX 22308,ALEXANDRIA,VA,38.729122,-77.060639,FAIRFAX 22309,ALEXANDRIA,VA,38.727855,-77.108139,FAIRFAX 22310,ALEXANDRIA,VA,38.769132,-77.131707,FAIRFAX 22311,ALEXANDRIA,VA,38.832039,-77.119962,ALEXANDRIA CITY 22312,ALEXANDRIA,VA,38.819099,-77.148438,FAIRFAX 22313,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22314,ALEXANDRIA,VA,38.806018,-77.052867,ALEXANDRIA CITY 22315,ALEXANDRIA,VA,38.756667,-77.145556,FAIRFAX 22320,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22321,ALEXANDRIA,VA,38.8062,-77.0528,FAIRFAX 22331,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22332,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22333,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22334,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22336,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22401,FREDERICKSBURG,VA,38.299538,-77.477152,FREDERICKSBURG CITY 22402,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22403,FREDERICKSBURG,VA,38.3242,-77.4685,STAFFORD 22404,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22405,FREDERICKSBURG,VA,38.314557,-77.404537,STAFFORD 22406,FREDERICKSBURG,VA,38.379627,-77.534892,STAFFORD 22407,FREDERICKSBURG,VA,38.268803,-77.547584,SPOTSYLVANIA 22408,FREDERICKSBURG,VA,38.248141,-77.468068,SPOTSYLVANIA 22412,FREDERICKSBURG,VA,38.3971,-77.5516,STAFFORD 22901,CHARLOTTESVILLE,VA,38.054752,-78.490869,ALBEMARLE 22902,CHARLOTTESVILLE,VA,37.9962,-78.4782,CHARLOTTESVILLE CITY 22903,CHARLOTTESVILLE,VA,38.032728,-78.505758,CHARLOTTESVILLE CITY 22904,CHARLOTTESVILLE,VA,38.0337,-78.5153,CHARLOTTESVILLE CITY 22905,CHARLOTTESVILLE,VA,38.0519,-78.501,CHARLOTTESVILLE CITY 22906,CHARLOTTESVILLE,VA,38.0883,-78.4701,CHARLOTTESVILLE CITY 22907,CHARLOTTESVILLE,VA,38.0575,-78.4922,CHARLOTTESVILLE CITY 22908,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22909,CHARLOTTESVILLE,VA,38.0444,-78.4726,ALBEMARLE 22910,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22911,CHARLOTTESVILLE,VA,38.0943,-78.4232,ALBEMARLE 23218,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23219,RICHMOND,VA,37.546265,-77.437798,RICHMOND CITY 23220,RICHMOND,VA,37.549808,-77.458798,RICHMOND CITY 23221,RICHMOND,VA,37.558301,-77.4845,RICHMOND CITY 23222,RICHMOND,VA,37.574802,-77.426725,RICHMOND CITY 23223,RICHMOND,VA,37.547721,-77.394772,RICHMOND CITY 23224,RICHMOND,VA,37.495512,-77.471014,RICHMOND CITY 23225,RICHMOND,VA,37.515842,-77.504709,RICHMOND CITY 23226,RICHMOND,VA,37.582473,-77.519657,HENRICO 23227,RICHMOND,VA,37.604181,-77.446309,HENRICO 23228,RICHMOND,VA,37.623503,-77.493308,HENRICO 23229,RICHMOND,VA,37.596351,-77.566202,HENRICO 23230,RICHMOND,VA,37.588376,-77.496828,HENRICO 23231,RICHMOND,VA,37.491529,-77.368002,HENRICO 23232,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23233,RICHMOND,VA,37.619354,-77.614933,HENRICO 23234,RICHMOND,VA,37.453158,-77.469798,CHESTERFIELD 23235,RICHMOND,VA,37.512034,-77.565103,CHESTERFIELD 23236,RICHMOND,VA,37.478165,-77.585413,CHESTERFIELD 23237,RICHMOND,VA,37.401145,-77.461471,CHESTERFIELD 23238,RICHMOND,VA,37.605,-77.6209,HENRICO 23240,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23241,RICHMOND,VA,37.5441,-77.4406,RICHMOND CITY 23242,RICHMOND,VA,37.6171,-77.6149,HENRICO 23249,RICHMOND,VA,37.4967,-77.4672,RICHMOND CITY 23250,RICHMOND,VA,37.502778,-77.337222,HENRICO 23255,RICHMOND,VA,37.6074,-77.5672,HENRICO 23260,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23261,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23269,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23273,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23274,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23276,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23278,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23279,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23282,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23284,RICHMOND,VA,37.5484,-77.454,RICHMOND CITY 23285,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23286,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23288,RICHMOND,VA,37.5992,-77.5456,HENRICO 23289,RICHMOND,VA,37.5439,-77.4489,RICHMOND CITY 23290,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23291,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23292,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23293,RICHMOND,VA,37.5428,-77.4396,RICHMOND CITY 23294,RICHMOND,VA,37.632923,-77.545125,HENRICO 23295,RICHMOND,VA,37.5537,-77.4609,RICHMOND CITY 23297,RICHMOND,VA,37.4019,-77.4597,CHESTERFIELD 23298,RICHMOND,VA,37.5419,-77.4288,RICHMOND CITY 23320,CHESAPEAKE,VA,36.735246,-76.23843,CHESAPEAKE CITY 23321,CHESAPEAKE,VA,36.827964,-76.411012,CHESAPEAKE CITY 23322,CHESAPEAKE,VA,36.634008,-76.213064,CHESAPEAKE CITY 23323,CHESAPEAKE,VA,36.763424,-76.339743,CHESAPEAKE CITY 23324,CHESAPEAKE,VA,36.805568,-76.266557,CHESAPEAKE CITY 23325,CHESAPEAKE,VA,36.813963,-76.240555,CHESAPEAKE CITY 23326,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23327,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23328,CHESAPEAKE,VA,36.7296,-76.2268,CHESAPEAKE CITY 23432,SUFFOLK,VA,36.866823,-76.559811,SUFFOLK CITY 23433,SUFFOLK,VA,36.909027,-76.49286,SUFFOLK CITY 23434,SUFFOLK,VA,36.730433,-76.593147,SUFFOLK CITY 23435,SUFFOLK,VA,36.854427,-76.466397,SUFFOLK CITY 23436,SUFFOLK,VA,36.892625,-76.514157,SUFFOLK CITY 23437,SUFFOLK,VA,36.652611,-76.792043,SUFFOLK CITY 23438,SUFFOLK,VA,36.591311,-76.687097,SUFFOLK CITY 23439,SUFFOLK,VA,36.728056,-76.583889,SUFFOLK CITY 23450,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23451,VIRGINIA BEACH,VA,36.858451,-76.001928,VIRGINIA BEACH CITY 23452,VIRGINIA BEACH,VA,36.83481,-76.096142,VIRGINIA BEACH CITY 23453,VIRGINIA BEACH,VA,36.7891,-76.0852,VIRGINIA BEACH CITY 23454,VIRGINIA BEACH,VA,36.828187,-76.023723,VIRGINIA BEACH CITY 23455,VIRGINIA BEACH,VA,36.888121,-76.144552,VIRGINIA BEACH CITY 23456,VIRGINIA BEACH,VA,36.779851,-76.089162,VIRGINIA BEACH CITY 23457,VIRGINIA BEACH,VA,36.624793,-76.037816,VIRGINIA BEACH CITY 23458,VIRGINIA BEACH,VA,36.8525,-75.9767,VIRGINIA BEACH CITY 23459,VIRGINIA BEACH,VA,36.9216,-76.017122,VIRGINIA BEACH CITY 23460,VIRGINIA BEACH,VA,36.8133,-76.0288,VIRGINIA BEACH CITY 23461,VIRGINIA BEACH,VA,36.7779,-75.9608,VIRGINIA BEACH CITY 23462,VIRGINIA BEACH,VA,36.839193,-76.152184,VIRGINIA BEACH CITY 23463,VIRGINIA BEACH,VA,36.7996,-76.1902,VIRGINIA BEACH CITY 23464,VIRGINIA BEACH,VA,36.797772,-76.175909,VIRGINIA BEACH CITY 23465,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23466,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23467,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23471,VIRGINIA BEACH,VA,36.8952,-76.1416,VIRGINIA BEACH CITY 23479,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23501,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23502,NORFOLK,VA,36.854648,-76.214253,NORFOLK CITY 23503,NORFOLK,VA,36.944196,-76.252008,NORFOLK CITY 23504,NORFOLK,VA,36.858554,-76.268628,NORFOLK CITY 23505,NORFOLK,VA,36.91675,-76.28748,NORFOLK CITY 23506,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23507,NORFOLK,VA,36.864506,-76.300385,NORFOLK CITY 23508,NORFOLK,VA,36.885922,-76.300356,NORFOLK CITY 23509,NORFOLK,VA,36.878743,-76.260361,NORFOLK CITY 23510,NORFOLK,VA,36.852929,-76.287784,NORFOLK CITY 23511,NORFOLK,VA,36.951164,-76.309206,NORFOLK CITY 23512,NORFOLK,VA,36.9214,-76.3161,NORFOLK CITY 23513,NORFOLK,VA,36.891395,-76.239578,NORFOLK CITY 23514,NORFOLK,VA,36.8469,-76.2904,NORFOLK CITY 23515,NORFOLK,VA,36.9471,-76.3005,NORFOLK CITY 23517,NORFOLK,VA,36.869547,-76.294519,NORFOLK CITY 23518,NORFOLK,VA,36.920246,-76.216027,NORFOLK CITY 23519,NORFOLK,VA,36.9222,-76.1884,NORFOLK CITY 23520,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23521,NORFOLK,VA,36.916923,-76.163715,NORFOLK CITY 23523,NORFOLK,VA,36.82942,-76.270125,NORFOLK CITY 23529,NORFOLK,VA,36.8871,-76.3053,NORFOLK CITY 23541,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23551,NORFOLK,VA,36.9246,-76.3027,NORFOLK CITY 23601,NEWPORT NEWS,VA,37.057951,-76.460722,NEWPORT NEWS CITY 23602,NEWPORT NEWS,VA,37.131684,-76.532125,NEWPORT NEWS CITY 23603,NEWPORT NEWS,VA,37.198887,-76.582059,NEWPORT NEWS CITY 23605,NEWPORT NEWS,VA,37.015583,-76.433158,NEWPORT NEWS CITY 23606,NEWPORT NEWS,VA,37.076777,-76.496724,NEWPORT NEWS CITY 23607,NEWPORT NEWS,VA,36.986352,-76.416469,NEWPORT NEWS CITY 23608,NEWPORT NEWS,VA,37.1523,-76.5424,NEWPORT NEWS CITY 23609,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23612,NEWPORT NEWS,VA,37.0679,-76.4959,NEWPORT NEWS CITY 23628,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23630,HAMPTON,VA,37.0065,-76.413,HAMPTON CITY 23661,HAMPTON,VA,37.007432,-76.380085,HAMPTON CITY 23663,HAMPTON,VA,37.03181,-76.319875,HAMPTON CITY 23664,HAMPTON,VA,37.056611,-76.296639,HAMPTON CITY 23665,HAMPTON,VA,37.100565,-76.409939,YORK 23666,HAMPTON,VA,37.046241,-76.409617,HAMPTON CITY 23667,HAMPTON,VA,37.0297,-76.3455,HAMPTON CITY 23668,HAMPTON,VA,37.0207,-76.3323,HAMPTON CITY 23669,HAMPTON,VA,37.043559,-76.342573,HAMPTON CITY 23670,HAMPTON,VA,37.0059,-76.4122,HAMPTON CITY 23681,HAMPTON,VA,37.1009,-76.3932,HAMPTON CITY 23701,PORTSMOUTH,VA,36.808902,-76.36714,PORTSMOUTH CITY 23702,PORTSMOUTH,VA,36.803534,-76.326979,PORTSMOUTH CITY 23703,PORTSMOUTH,VA,36.869501,-76.386872,PORTSMOUTH CITY 23704,PORTSMOUTH,VA,36.829821,-76.314604,PORTSMOUTH CITY 23705,PORTSMOUTH,VA,36.8352,-76.2986,PORTSMOUTH CITY 23707,PORTSMOUTH,VA,36.836234,-76.344011,PORTSMOUTH CITY 23708,PORTSMOUTH,VA,36.8458,-76.3085,PORTSMOUTH CITY 23709,PORTSMOUTH,VA,36.813883,-76.305188,PORTSMOUTH CITY 24001,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24002,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24003,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24004,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24005,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24006,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24007,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24008,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24009,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24010,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24011,ROANOKE,VA,37.268997,-79.942019,ROANOKE CITY 24012,ROANOKE,VA,37.302912,-79.932179,ROANOKE CITY 24013,ROANOKE,VA,37.267685,-79.924747,ROANOKE CITY 24014,ROANOKE,VA,37.23268,-79.946332,ROANOKE CITY 24015,ROANOKE,VA,37.258363,-79.980694,ROANOKE CITY 24016,ROANOKE,VA,37.270407,-79.953495,ROANOKE CITY 24017,ROANOKE,VA,37.293655,-79.990248,ROANOKE CITY 24018,ROANOKE,VA,37.231554,-80.021749,ROANOKE 24019,ROANOKE,VA,37.33585,-79.956328,ROANOKE 24020,ROANOKE,VA,37.355278,-79.942222,ROANOKE 24022,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24023,ROANOKE,VA,37.2698,-79.9537,ROANOKE CITY 24024,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24025,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24026,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24027,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24028,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24029,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24030,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24031,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24032,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24033,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24034,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24035,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24036,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24037,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24038,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24040,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24042,ROANOKE,VA,37.2695,-79.9386,ROANOKE CITY 24043,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24044,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24045,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24048,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24050,ROANOKE,VA,37.2725,-79.953,BOTETOURT 24155,ROANOKE,VA,37.2935,-80.0553,SALEM 24157,ROANOKE,VA,37.2912,-80.0649,SALEM 24501,LYNCHBURG,VA,37.386228,-79.171464,LYNCHBURG CITY 24502,LYNCHBURG,VA,37.359635,-79.211783,LYNCHBURG CITY 24503,LYNCHBURG,VA,37.437646,-79.204982,LYNCHBURG CITY 24504,LYNCHBURG,VA,37.390422,-79.12142,LYNCHBURG CITY 24505,LYNCHBURG,VA,37.4146,-79.1434,LYNCHBURG CITY 24506,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24512,LYNCHBURG,VA,37.4502,-79.2501,LYNCHBURG CITY 24513,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24514,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24515,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 25301,CHARLESTON,WV,38.349,-81.630606,KANAWHA 25302,CHARLESTON,WV,38.383178,-81.623876,KANAWHA 25303,CHARLESTON,WV,38.359226,-81.684079,KANAWHA 25304,CHARLESTON,WV,38.317289,-81.590272,KANAWHA 25305,CHARLESTON,WV,38.3367,-81.6085,KANAWHA 25306,CHARLESTON,WV,38.30028,-81.536813,KANAWHA 25309,CHARLESTON,WV,38.344903,-81.734462,KANAWHA 25311,CHARLESTON,WV,38.349032,-81.599282,KANAWHA 25312,CHARLESTON,WV,38.409563,-81.674688,KANAWHA 25313,CHARLESTON,WV,38.424982,-81.764877,KANAWHA 25314,CHARLESTON,WV,38.327442,-81.668988,KANAWHA 25315,CHARLESTON,WV,38.233309,-81.554361,KANAWHA 25317,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25320,CHARLESTON,WV,38.509586,-81.629585,KANAWHA 25321,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25322,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25323,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25324,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25325,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25326,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25327,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25328,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25329,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25330,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25331,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25332,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25333,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25334,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25335,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25336,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25337,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25338,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25339,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25350,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25356,CHARLESTON,WV,38.4461,-81.7553,KANAWHA 25357,CHARLESTON,WV,38.3759,-81.6733,KANAWHA 25358,CHARLESTON,WV,38.3528,-81.6314,KANAWHA 25360,CHARLESTON,WV,38.4538,-81.6666,KANAWHA 25361,CHARLESTON,WV,38.3422,-81.6213,KANAWHA 25362,CHARLESTON,WV,38.3601,-81.6462,KANAWHA 25364,CHARLESTON,WV,38.3219,-81.5827,KANAWHA 25365,CHARLESTON,WV,38.2335,-81.5734,KANAWHA 25375,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25387,CHARLESTON,WV,38.3102,-81.5674,KANAWHA 25389,CHARLESTON,WV,38.3529,-81.6381,KANAWHA 25392,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25396,CHARLESTON,WV,38.3373,-81.6276,KANAWHA 25401,MARTINSBURG,WV,39.459959,-77.958915,BERKELEY 25402,MARTINSBURG,WV,39.4643,-77.9513,BERKELEY 25403,MARTINSBURG,WV,39.4895,-77.9909,BERKELEY 25404,MARTINSBURG,WV,39.4833,-77.9254,BERKELEY 25405,MARTINSBURG,WV,39.4151,-77.9647,BERKELEY 25429,MARTINSBURG,WV,39.3203,-77.9491,BERKELEY 25701,HUNTINGTON,WV,38.409726,-82.442348,CABELL 25702,HUNTINGTON,WV,38.42862,-82.391083,CABELL 25703,HUNTINGTON,WV,38.421116,-82.422666,CABELL 25704,HUNTINGTON,WV,38.384943,-82.503646,WAYNE 25705,HUNTINGTON,WV,38.409588,-82.36901,CABELL 25706,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25707,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25708,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25709,HUNTINGTON,WV,38.4141,-82.458,CABELL 25710,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25711,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25712,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25713,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25714,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25715,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25716,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25717,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25718,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25719,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25720,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25721,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25722,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25723,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25724,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25725,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25726,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25727,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25728,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25729,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25755,HUNTINGTON,WV,38.4226,-82.4315,CABELL 25770,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25771,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25772,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25773,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25774,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25775,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25776,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25777,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25778,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25779,HUNTINGTON,WV,38.4156,-82.4741,CABELL 26501,MORGANTOWN,WV,39.6368,-80.018,MONONGALIA 26502,MORGANTOWN,WV,39.5863,-79.959,MONONGALIA 26504,MORGANTOWN,WV,39.658333,-79.986667,MONONGALIA 26505,MORGANTOWN,WV,39.633858,-79.954225,MONONGALIA 26506,MORGANTOWN,WV,39.6494,-79.9571,MONONGALIA 26507,MORGANTOWN,WV,39.6276,-79.9574,MONONGALIA 26508,MORGANTOWN,WV,39.556667,-80,MONONGALIA 27101,WINSTON SALEM,NC,36.10237,-80.222798,FORSYTH 27102,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27103,WINSTON SALEM,NC,36.067127,-80.302509,FORSYTH 27104,WINSTON SALEM,NC,36.091985,-80.322423,FORSYTH 27105,WINSTON SALEM,NC,36.144039,-80.237646,FORSYTH 27106,WINSTON SALEM,NC,36.142762,-80.306866,FORSYTH 27107,WINSTON SALEM,NC,36.040324,-80.193265,FORSYTH 27108,WINSTON SALEM,NC,36.0869,-80.2486,FORSYTH 27109,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27110,WINSTON SALEM,NC,36.0902,-80.2275,FORSYTH 27111,WINSTON SALEM,NC,36.1267,-80.0669,FORSYTH 27113,WINSTON SALEM,NC,36.0894,-80.2738,FORSYTH 27114,WINSTON SALEM,NC,36.0758,-80.3103,FORSYTH 27115,WINSTON SALEM,NC,36.1351,-80.2426,FORSYTH 27116,WINSTON SALEM,NC,36.1412,-80.2995,FORSYTH 27117,WINSTON SALEM,NC,36.0699,-80.2067,FORSYTH 27120,WINSTON SALEM,NC,36.1042,-80.2442,FORSYTH 27127,WINSTON SALEM,NC,36.042534,-80.260946,FORSYTH 27130,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27150,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27151,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27152,WINSTON SALEM,NC,36.1005,-80.208,FORSYTH 27155,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27156,WINSTON SALEM,NC,36.1434,-80.2275,FORSYTH 27157,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27198,WINSTON SALEM,NC,36.1028,-80.2225,FORSYTH 27199,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27260,HIGH POINT,NC,35.959313,-80.011673,GUILFORD 27261,HIGH POINT,NC,35.9537,-80.0024,GUILFORD 27262,HIGH POINT,NC,35.973406,-80.010677,GUILFORD 27263,HIGH POINT,NC,35.910757,-79.961764,GUILFORD 27264,HIGH POINT,NC,36.0354,-79.998,GUILFORD 27265,HIGH POINT,NC,36.003584,-80.003571,GUILFORD 27395,GREENSBORO,NC,36.0726,-79.792,CASWELL 27401,GREENSBORO,NC,36.069741,-79.768151,GUILFORD 27402,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27403,GREENSBORO,NC,36.064147,-79.820181,GUILFORD 27404,GREENSBORO,NC,36.0853,-79.833,GUILFORD 27405,GREENSBORO,NC,36.121408,-79.7733,GUILFORD 27406,GREENSBORO,NC,36.021969,-79.782058,GUILFORD 27407,GREENSBORO,NC,36.033442,-79.862647,GUILFORD 27408,GREENSBORO,NC,36.1064,-79.816531,GUILFORD 27409,GREENSBORO,NC,36.077683,-79.908602,GUILFORD 27410,GREENSBORO,NC,36.103164,-79.879365,GUILFORD 27411,GREENSBORO,NC,36.078,-79.7706,GUILFORD 27412,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27413,GREENSBORO,NC,36.0712,-79.8114,GUILFORD 27415,GREENSBORO,NC,36.0917,-79.7805,GUILFORD 27416,GREENSBORO,NC,36.0018,-79.7626,GUILFORD 27417,GREENSBORO,NC,36.0091,-79.8743,GUILFORD 27419,GREENSBORO,NC,36.1271,-79.944,GUILFORD 27420,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27425,GREENSBORO,NC,36.126944,-79.943889,GUILFORD 27427,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27429,GREENSBORO,NC,36.0935,-79.8147,GUILFORD 27435,GREENSBORO,NC,36.0655,-79.8052,GUILFORD 27438,GREENSBORO,NC,36.1129,-79.8333,GUILFORD 27455,GREENSBORO,NC,36.1567,-79.8143,GUILFORD 27480,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27495,GREENSBORO,NC,36.0389,-79.9433,GUILFORD 27497,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27498,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27499,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27601,RALEIGH,NC,35.772701,-78.632439,WAKE 27602,RALEIGH,NC,35.7719,-78.6388,WAKE 27603,RALEIGH,NC,35.707569,-78.656265,WAKE 27604,RALEIGH,NC,35.833407,-78.579949,WAKE 27605,RALEIGH,NC,35.790795,-78.653025,WAKE 27606,RALEIGH,NC,35.764499,-78.711189,WAKE 27607,RALEIGH,NC,35.801385,-78.687747,WAKE 27608,RALEIGH,NC,35.807746,-78.646277,WAKE 27609,RALEIGH,NC,35.847989,-78.631654,WAKE 27610,RALEIGH,NC,35.766674,-78.60076,WAKE 27611,RALEIGH,NC,35.7719,-78.6388,WAKE 27612,RALEIGH,NC,35.851997,-78.684119,WAKE 27613,RALEIGH,NC,35.894932,-78.705059,WAKE 27614,RALEIGH,NC,35.945711,-78.643339,WAKE 27615,RALEIGH,NC,35.888744,-78.639277,WAKE 27616,RALEIGH,NC,35.8662,-78.549,WAKE 27617,RALEIGH,NC,35.9073,-78.7741,WAKE 27619,RALEIGH,NC,35.8973,-78.6338,WAKE 27620,RALEIGH,NC,35.7719,-78.6388,WAKE 27621,RALEIGH,NC,35.7719,-78.6388,WAKE 27622,RALEIGH,NC,35.8501,-78.6916,WAKE 27623,RALEIGH,NC,35.8607,-78.7928,WAKE 27624,RALEIGH,NC,35.8423,-78.6337,WAKE 27625,RALEIGH,NC,35.7719,-78.6388,WAKE 27626,RALEIGH,NC,35.7719,-78.6388,WAKE 27627,RALEIGH,NC,35.7676,-78.695,WAKE 27628,RALEIGH,NC,35.7719,-78.6388,WAKE 27629,RALEIGH,NC,35.7719,-78.6388,WAKE 27634,RALEIGH,NC,35.7719,-78.6388,WAKE 27635,RALEIGH,NC,35.7719,-78.6388,WAKE 27636,RALEIGH,NC,35.7719,-78.6388,WAKE 27640,RALEIGH,NC,35.7719,-78.6388,WAKE 27650,RALEIGH,NC,35.7719,-78.6388,WAKE 27656,RALEIGH,NC,35.8501,-78.6916,WAKE 27658,RALEIGH,NC,35.8478,-78.5965,WAKE 27661,RALEIGH,NC,35.8928,-78.56,WAKE 27668,RALEIGH,NC,35.8422,-78.6337,WAKE 27675,RALEIGH,NC,35.9025,-78.7452,WAKE 27676,RALEIGH,NC,35.9057,-78.7488,WAKE 27690,RALEIGH,NC,35.8932,-78.6251,WAKE 27695,RALEIGH,NC,35.8086,-78.7196,WAKE 27697,RALEIGH,NC,35.7719,-78.6388,WAKE 27698,RALEIGH,NC,35.7719,-78.6388,WAKE 27699,RALEIGH,NC,35.6682,-78.6618,WAKE 27701,DURHAM,NC,35.996725,-78.896613,DURHAM 27702,DURHAM,NC,35.9938,-78.8988,DURHAM 27703,DURHAM,NC,35.978122,-78.843874,DURHAM 27704,DURHAM,NC,36.038297,-78.876437,DURHAM 27705,DURHAM,NC,36.021846,-78.947776,DURHAM 27706,DURHAM,NC,36.002427,-78.937524,DURHAM 27707,DURHAM,NC,35.963076,-78.931484,DURHAM 27708,DURHAM,NC,35.9985,-78.9394,DURHAM 27710,DURHAM,NC,35.9938,-78.8988,DURHAM 27711,DURHAM,NC,35.905,-78.8785,DURHAM 27712,DURHAM,NC,36.091779,-78.929919,DURHAM 27713,DURHAM,NC,35.916105,-78.916641,DURHAM 27715,DURHAM,NC,35.9938,-78.8988,DURHAM 27717,DURHAM,NC,35.9938,-78.8988,DURHAM 27722,DURHAM,NC,36.1002,-78.9248,DURHAM 28201,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28202,CHARLOTTE,NC,35.229002,-80.841864,MECKLENBURG 28203,CHARLOTTE,NC,35.208139,-80.858279,MECKLENBURG 28204,CHARLOTTE,NC,35.213178,-80.823149,MECKLENBURG 28205,CHARLOTTE,NC,35.219951,-80.788129,MECKLENBURG 28206,CHARLOTTE,NC,35.252173,-80.826505,MECKLENBURG 28207,CHARLOTTE,NC,35.193474,-80.827248,MECKLENBURG 28208,CHARLOTTE,NC,35.235795,-80.896352,MECKLENBURG 28209,CHARLOTTE,NC,35.179629,-80.855926,MECKLENBURG 28210,CHARLOTTE,NC,35.131586,-80.857749,MECKLENBURG 28211,CHARLOTTE,NC,35.167653,-80.793244,MECKLENBURG 28212,CHARLOTTE,NC,35.190797,-80.744777,MECKLENBURG 28213,CHARLOTTE,NC,35.317868,-80.750079,MECKLENBURG 28214,CHARLOTTE,NC,35.273095,-80.95709,MECKLENBURG 28215,CHARLOTTE,NC,35.243962,-80.738669,MECKLENBURG 28216,CHARLOTTE,NC,35.283377,-80.870216,MECKLENBURG 28217,CHARLOTTE,NC,35.0972,-81.007848,MECKLENBURG 28218,CHARLOTTE,NC,35.1985,-80.7893,MECKLENBURG 28219,CHARLOTTE,NC,35.2063,-80.9419,MECKLENBURG 28220,CHARLOTTE,NC,35.1755,-80.851,MECKLENBURG 28221,CHARLOTTE,NC,35.2967,-80.7998,MECKLENBURG 28222,CHARLOTTE,NC,35.1663,-80.7959,MECKLENBURG 28223,CHARLOTTE,NC,35.3239,-80.7427,MECKLENBURG 28224,CHARLOTTE,NC,35.1503,-80.8763,MECKLENBURG 28226,CHARLOTTE,NC,35.086856,-80.816675,MECKLENBURG 28227,CHARLOTTE,NC,35.193612,-80.684634,MECKLENBURG 28228,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28229,CHARLOTTE,NC,35.2027,-80.7346,MECKLENBURG 28230,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28231,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28232,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28233,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28234,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28235,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28236,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28237,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28241,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28242,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28243,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28244,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28246,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28247,CHARLOTTE,NC,35.1034,-80.825,MECKLENBURG 28250,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28253,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28254,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28255,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28256,CHARLOTTE,NC,35.2802,-80.7656,MECKLENBURG 28258,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28260,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28262,CHARLOTTE,NC,35.272506,-80.775958,MECKLENBURG 28263,CHARLOTTE,NC,35.2101,-80.689,MECKLENBURG 28265,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28266,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28269,CHARLOTTE,NC,35.288635,-80.820941,MECKLENBURG 28270,CHARLOTTE,NC,35.135473,-80.766872,MECKLENBURG 28271,CHARLOTTE,NC,35.2267,-80.8434,MECKLENBURG 28272,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28273,CHARLOTTE,NC,35.159646,-80.896673,MECKLENBURG 28274,CHARLOTTE,NC,35.1873,-80.8298,MECKLENBURG 28275,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28277,CHARLOTTE,NC,35.134486,-80.800174,MECKLENBURG 28278,CHARLOTTE,NC,35.146685,-80.960421,MECKLENBURG 28280,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28281,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28282,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28284,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28285,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28287,CHARLOTTE,NC,35.15,-80.84,MECKLENBURG 28288,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28289,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28290,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28296,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28297,CHARLOTTE,NC,35.2762,-80.8558,MECKLENBURG 28299,CHARLOTTE,NC,35.2189,-80.8122,MECKLENBURG 28301,FAYETTEVILLE,NC,35.05099,-78.842255,CUMBERLAND 28302,FAYETTEVILLE,NC,34.9677,-78.7392,CUMBERLAND 28303,FAYETTEVILLE,NC,35.084046,-78.960135,CUMBERLAND 28304,FAYETTEVILLE,NC,35.025683,-78.970494,CUMBERLAND 28305,FAYETTEVILLE,NC,35.056022,-78.904658,CUMBERLAND 28306,FAYETTEVILLE,NC,35.001874,-78.936408,CUMBERLAND 28309,FAYETTEVILLE,NC,35.0554,-78.8777,CUMBERLAND 28311,FAYETTEVILLE,NC,35.129416,-78.898217,CUMBERLAND 28312,FAYETTEVILLE,NC,35.034,-78.7926,CUMBERLAND 28314,FAYETTEVILLE,NC,35.058322,-79.007985,CUMBERLAND 28401,WILMINGTON,NC,34.225304,-77.937856,NEW HANOVER 28402,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28403,WILMINGTON,NC,34.223653,-77.886213,NEW HANOVER 28404,WILMINGTON,NC,34.2251,-77.9377,NEW HANOVER 28405,WILMINGTON,NC,34.264065,-77.852937,NEW HANOVER 28406,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28407,WILMINGTON,NC,34.1569,-77.8925,NEW HANOVER 28408,WILMINGTON,NC,34.1279,-77.8991,NEW HANOVER 28409,WILMINGTON,NC,34.166256,-77.87227,NEW HANOVER 28410,WILMINGTON,NC,34.1388,-77.9168,NEW HANOVER 28411,WILMINGTON,NC,34.2834,-77.8044,NEW HANOVER 28412,WILMINGTON,NC,34.157173,-77.914137,NEW HANOVER 28801,ASHEVILLE,NC,35.597075,-82.556533,BUNCOMBE 28802,ASHEVILLE,NC,35.594,-82.5554,BUNCOMBE 28803,ASHEVILLE,NC,35.539291,-82.518021,BUNCOMBE 28804,ASHEVILLE,NC,35.63743,-82.564625,BUNCOMBE 28805,ASHEVILLE,NC,35.600363,-82.491781,BUNCOMBE 28806,ASHEVILLE,NC,35.580814,-82.607787,BUNCOMBE 28810,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28813,ASHEVILLE,NC,35.5439,-82.5335,BUNCOMBE 28814,ASHEVILLE,NC,35.6237,-82.5545,BUNCOMBE 28815,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28816,ASHEVILLE,NC,35.5835,-82.6048,BUNCOMBE 29201,COLUMBIA,SC,34.0004,-81.033418,RICHLAND 29202,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29203,COLUMBIA,SC,34.063452,-81.026462,RICHLAND 29204,COLUMBIA,SC,34.026037,-81.004647,RICHLAND 29205,COLUMBIA,SC,33.990309,-80.999731,RICHLAND 29206,COLUMBIA,SC,34.024655,-80.953152,RICHLAND 29207,COLUMBIA,SC,34.0133,-80.9407,RICHLAND 29208,COLUMBIA,SC,33.9964,-81.0265,RICHLAND 29209,COLUMBIA,SC,33.965863,-80.935525,RICHLAND 29210,COLUMBIA,SC,34.047863,-81.11006,RICHLAND 29211,COLUMBIA,SC,34.003,-81.0322,RICHLAND 29212,COLUMBIA,SC,34.072613,-81.179617,LEXINGTON 29214,COLUMBIA,SC,33.9967,-81.0481,RICHLAND 29215,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29216,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29217,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29218,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29219,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29220,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29221,COLUMBIA,SC,34.0407,-81.0973,RICHLAND 29222,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29223,COLUMBIA,SC,34.085267,-80.91667,RICHLAND 29224,COLUMBIA,SC,34.0568,-80.8456,RICHLAND 29225,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29226,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29227,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29228,COLUMBIA,SC,33.9207,-81.0927,LEXINGTON 29229,COLUMBIA,SC,34.1434,-80.8876,RICHLAND 29230,COLUMBIA,SC,34.1402,-81.0648,RICHLAND 29240,COLUMBIA,SC,34.0298,-81.0075,RICHLAND 29250,COLUMBIA,SC,34.0001,-81.0167,RICHLAND 29260,COLUMBIA,SC,34.0125,-80.9664,RICHLAND 29290,COLUMBIA,SC,33.9641,-80.9425,RICHLAND 29292,COLUMBIA,SC,34.0062,-81.0377,RICHLAND 29301,SPARTANBURG,SC,34.935211,-81.965377,SPARTANBURG 29302,SPARTANBURG,SC,34.956283,-81.873625,SPARTANBURG 29303,SPARTANBURG,SC,34.993728,-81.957566,SPARTANBURG 29304,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29305,SPARTANBURG,SC,35.0039,-81.9702,SPARTANBURG 29306,SPARTANBURG,SC,34.9195,-81.9291,SPARTANBURG 29307,SPARTANBURG,SC,34.983,-81.8569,SPARTANBURG 29318,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29319,SPARTANBURG,SC,34.95,-81.929,SPARTANBURG 29401,CHARLESTON,SC,32.779506,-79.937069,CHARLESTON 29402,CHARLESTON,SC,32.7763,-79.9317,CHARLESTON 29403,CHARLESTON,SC,32.797575,-79.949283,CHARLESTON 29405,NORTH CHARLESTON,SC,32.851206,-79.976442,CHARLESTON 29406,CHARLESTON,SC,32.903035,-80.001053,CHARLESTON 29407,CHARLESTON,SC,32.799322,-80.005953,CHARLESTON 29409,CHARLESTON,SC,32.7763,-79.9311,CHARLESTON 29410,NORTH CHARLESTON,SC,33.0562,-80.0759,BERKELEY 29412,CHARLESTON,SC,32.732319,-79.954727,CHARLESTON 29413,CHARLESTON,SC,32.7919,-79.9314,CHARLESTON 29414,CHARLESTON,SC,32.821538,-80.056756,CHARLESTON 29415,NORTH CHARLESTON,SC,32.8672,-79.9978,CHARLESTON 29416,CHARLESTON,SC,32.8753,-80.0599,CHARLESTON 29417,CHARLESTON,SC,32.7865,-79.9923,CHARLESTON 29418,NORTH CHARLESTON,SC,32.907135,-80.055126,CHARLESTON 29419,NORTH CHARLESTON,SC,32.9169,-80.0282,CHARLESTON 29420,NORTH CHARLESTON,SC,32.933096,-80.086463,DORCHESTER 29422,CHARLESTON,SC,32.6823,-79.9575,CHARLESTON 29423,CHARLESTON,SC,32.9521,-80.0641,CHARLESTON 29424,CHARLESTON,SC,32.7836,-79.937,CHARLESTON 29425,CHARLESTON,SC,32.7848,-79.9493,CHARLESTON 29492,CHARLESTON,SC,32.962223,-79.86533,BERKELEY 29501,FLORENCE,SC,34.18375,-79.772786,FLORENCE 29502,FLORENCE,SC,34.1952,-79.8026,FLORENCE 29503,FLORENCE,SC,34.1968,-79.7729,FLORENCE 29504,FLORENCE,SC,34.1652,-79.7644,FLORENCE 29505,FLORENCE,SC,34.256368,-79.775983,FLORENCE 29506,FLORENCE,SC,34.245178,-79.794547,FLORENCE 29572,MYRTLE BEACH,SC,33.758701,-78.804448,HORRY 29575,MYRTLE BEACH,SC,33.625245,-78.995228,HORRY 29577,MYRTLE BEACH,SC,33.699363,-78.913697,HORRY 29578,MYRTLE BEACH,SC,33.6888,-78.8869,HORRY 29579,MYRTLE BEACH,SC,33.7438,-78.9361,HORRY 29587,MYRTLE BEACH,SC,33.605833,-78.973333,HORRY 29588,MYRTLE BEACH,SC,33.6742,-79.0108,HORRY 29601,GREENVILLE,SC,34.847165,-82.406049,GREENVILLE 29602,GREENVILLE,SC,34.8545,-82.4091,GREENVILLE 29603,GREENVILLE,SC,34.8499,-82.3969,GREENVILLE 29604,GREENVILLE,SC,34.8276,-82.3996,GREENVILLE 29605,GREENVILLE,SC,34.800117,-82.393218,GREENVILLE 29606,GREENVILLE,SC,34.8422,-82.3612,GREENVILLE 29607,GREENVILLE,SC,34.828507,-82.35155,GREENVILLE 29608,GREENVILLE,SC,34.8794,-82.405,GREENVILLE 29609,GREENVILLE,SC,34.892101,-82.400195,GREENVILLE 29610,GREENVILLE,SC,34.8839,-82.4697,GREENVILLE 29611,GREENVILLE,SC,34.85331,-82.449296,GREENVILLE 29612,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29613,GREENVILLE,SC,34.9231,-82.4355,GREENVILLE 29614,GREENVILLE,SC,34.9152,-82.3905,GREENVILLE 29615,GREENVILLE,SC,34.866095,-82.319815,GREENVILLE 29616,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29617,GREENVILLE,SC,34.8988,-82.4482,GREENVILLE 29621,ANDERSON,SC,34.526051,-82.630436,ANDERSON 29622,ANDERSON,SC,34.5082,-82.6498,ANDERSON 29623,ANDERSON,SC,34.5453,-82.6696,ANDERSON 29624,ANDERSON,SC,34.474807,-82.677052,ANDERSON 29625,ANDERSON,SC,34.527134,-82.70868,ANDERSON 29626,ANDERSON,SC,34.4631,-82.7546,ANDERSON 29698,GREENVILLE,SC,34.9137,-82.0978,SPARTANBURG 29801,AIKEN,SC,33.553024,-81.719429,AIKEN 29802,AIKEN,SC,33.6125,-81.7089,AIKEN 29803,AIKEN,SC,33.531868,-81.594702,AIKEN 29804,AIKEN,SC,33.5149,-81.7321,AIKEN 29805,AIKEN,SC,33.6531,-81.6301,AIKEN 29808,AIKEN,SC,33.2541,-81.6281,AIKEN 29901,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29902,BEAUFORT,SC,32.418035,-80.709026,BEAUFORT 29903,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29904,BEAUFORT,SC,32.4583,-80.7102,BEAUFORT 29905,BEAUFORT,SC,32.3502,-80.682,BEAUFORT 29906,BEAUFORT,SC,32.4454,-80.747,BEAUFORT 30003,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30006,MARIETTA,GA,33.9043,-84.468,COBB 30007,MARIETTA,GA,33.9802,-84.425,COBB 30008,MARIETTA,GA,33.8997,-84.5847,COBB 30010,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30030,DECATUR,GA,33.769883,-84.295044,DEKALB 30031,DECATUR,GA,33.775,-84.3047,DEKALB 30032,DECATUR,GA,33.740825,-84.263165,DEKALB 30033,DECATUR,GA,33.812305,-84.281918,DEKALB 30034,DECATUR,GA,33.695385,-84.248939,DEKALB 30035,DECATUR,GA,33.72784,-84.2143,DEKALB 30036,DECATUR,GA,33.772,-84.2917,DEKALB 30037,DECATUR,GA,33.7059,-84.2719,DEKALB 30042,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30043,LAWRENCEVILLE,GA,33.9967,-84.0186,GWINNETT 30044,LAWRENCEVILLE,GA,33.9256,-84.0697,GWINNETT 30045,LAWRENCEVILLE,GA,33.9427,-83.9782,GWINNETT 30046,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30049,LAWRENCEVILLE,GA,33.635376,-84.264333,GWINNETT 30060,MARIETTA,GA,33.909199,-84.564881,COBB 30061,MARIETTA,GA,33.9529,-84.5454,COBB 30062,MARIETTA,GA,34.002521,-84.463291,COBB 30063,MARIETTA,GA,33.9529,-84.5454,COBB 30064,MARIETTA,GA,33.934285,-84.607584,COBB 30065,MARIETTA,GA,33.9525,-84.55,COBB 30066,MARIETTA,GA,34.037807,-84.503817,COBB 30067,MARIETTA,GA,33.928198,-84.473251,COBB 30068,MARIETTA,GA,33.967861,-84.438549,COBB 30069,MARIETTA,GA,33.9178,-84.5212,COBB 30071,NORCROSS,GA,33.938145,-84.197158,GWINNETT 30073,DECATUR,GA,33.875377,-84.685645,DEKALB 30090,MARIETTA,GA,33.9527,-84.5489,COBB 30091,NORCROSS,GA,33.9405,-84.2078,GWINNETT 30092,NORCROSS,GA,33.967688,-84.243787,GWINNETT 30093,NORCROSS,GA,33.905964,-84.183953,GWINNETT 30301,ATLANTA,GA,33.7564,-84.3918,FULTON 30302,ATLANTA,GA,33.7493,-84.3958,FULTON 30303,ATLANTA,GA,33.752504,-84.388846,FULTON 30304,ATLANTA,GA,33.6605,-84.3858,FULTON 30305,ATLANTA,GA,33.831963,-84.385145,FULTON 30306,ATLANTA,GA,33.786027,-84.351418,FULTON 30307,ATLANTA,GA,33.769138,-84.335957,FULTON 30308,ATLANTA,GA,33.771839,-84.375744,FULTON 30309,ATLANTA,GA,33.798407,-84.388338,FULTON 30310,ATLANTA,GA,33.727849,-84.423173,FULTON 30311,ATLANTA,GA,33.722957,-84.470219,FULTON 30312,ATLANTA,GA,33.746749,-84.378125,FULTON 30313,ATLANTA,GA,33.76825,-84.39352,FULTON 30314,ATLANTA,GA,33.756103,-84.425546,FULTON 30315,ATLANTA,GA,33.705062,-84.380771,FULTON 30316,ATLANTA,GA,33.721686,-84.333913,FULTON 30317,ATLANTA,GA,33.749788,-84.31685,DEKALB 30318,ATLANTA,GA,33.786454,-84.445432,FULTON 30319,ATLANTA,GA,33.868728,-84.335091,DEKALB 30320,ATLANTA,GA,33.6377,-84.4431,FULTON 30321,ATLANTA,GA,33.7488,-84.388,FULTON 30322,ATLANTA,GA,33.7931,-84.3244,DEKALB 30324,ATLANTA,GA,33.820609,-84.354867,FULTON 30325,ATLANTA,GA,33.8007,-84.4153,FULTON 30326,ATLANTA,GA,33.848168,-84.358232,FULTON 30327,ATLANTA,GA,33.862723,-84.419966,FULTON 30328,ATLANTA,GA,33.936295,-84.381143,FULTON 30329,ATLANTA,GA,33.823555,-84.321402,DEKALB 30330,ATLANTA,GA,33.70645,-84.434735,FULTON 30331,ATLANTA,GA,33.72241,-84.520468,FULTON 30332,ATLANTA,GA,33.7782,-84.3978,FULTON 30333,ATLANTA,GA,33.8049,-84.3369,DEKALB 30334,ATLANTA,GA,33.74715,-84.388188,FULTON 30336,ATLANTA,GA,33.78534,-84.510028,FULTON 30337,ATLANTA,GA,33.644227,-84.460849,FULTON 30338,ATLANTA,GA,33.944313,-84.316529,DEKALB 30339,ATLANTA,GA,33.87125,-84.462879,FULTON 30340,ATLANTA,GA,33.896377,-84.248265,DEKALB 30341,ATLANTA,GA,33.886727,-84.286969,DEKALB 30342,ATLANTA,GA,33.884245,-84.376091,FULTON 30343,ATLANTA,GA,33.7595,-84.387,FULTON 30344,ATLANTA,GA,33.676214,-84.457292,FULTON 30345,ATLANTA,GA,33.851347,-84.286961,DEKALB 30346,ATLANTA,GA,33.926717,-84.333354,DEKALB 30347,ATLANTA,GA,33.8281,-84.3337,FULTON 30348,ATLANTA,GA,33.8345,-84.3893,FULTON 30349,ATLANTA,GA,33.605331,-84.481258,FULTON 30350,ATLANTA,GA,33.979471,-84.341146,FULTON 30353,ATLANTA,GA,33.7488,-84.388,FULTON 30354,ATLANTA,GA,33.66546,-84.387025,FULTON 30355,ATLANTA,GA,33.8365,-84.3689,FULTON 30356,ATLANTA,GA,33.9472,-84.3321,DEKALB 30357,ATLANTA,GA,33.7488,-84.388,FULTON 30358,ATLANTA,GA,33.924167,-84.378611,FULTON 30359,ATLANTA,GA,33.8374,-84.3112,DEKALB 30360,ATLANTA,GA,33.937772,-84.271645,DEKALB 30361,ATLANTA,GA,33.7488,-84.388,FULTON 30362,ATLANTA,GA,33.9021,-84.2738,DEKALB 30363,ATLANTA,GA,33.7899,-84.3955,FULTON 30364,ATLANTA,GA,33.679444,-84.439444,FULTON 30366,ATLANTA,GA,33.8956,-84.2987,DEKALB 30368,ATLANTA,GA,33.7488,-84.388,FULTON 30369,ATLANTA,GA,33.7488,-84.388,FULTON 30370,ATLANTA,GA,33.7488,-84.388,FULTON 30371,ATLANTA,GA,33.7488,-84.388,FULTON 30374,ATLANTA,GA,33.7488,-84.388,FULTON 30375,ATLANTA,GA,33.6605,-84.3858,FULTON 30376,ATLANTA,GA,33.8196,-84.3563,FULTON 30377,ATLANTA,GA,33.781,-84.4125,FULTON 30378,ATLANTA,GA,33.7408,-84.5641,FULTON 30379,ATLANTA,GA,33.7488,-84.388,FULTON 30380,ATLANTA,GA,33.6605,-84.3858,FULTON 30384,ATLANTA,GA,33.7488,-84.388,FULTON 30385,ATLANTA,GA,33.6605,-84.3858,FULTON 30386,ATLANTA,GA,33.6487,-84.3915,FULTON 30387,ATLANTA,GA,33.7488,-84.388,FULTON 30388,ATLANTA,GA,33.6487,-84.3915,FULTON 30389,ATLANTA,GA,33.7488,-84.388,FULTON 30390,ATLANTA,GA,33.7488,-84.388,FULTON 30392,ATLANTA,GA,33.7488,-84.388,FULTON 30394,ATLANTA,GA,33.7488,-84.388,FULTON 30396,ATLANTA,GA,33.6487,-84.3915,FULTON 30398,ATLANTA,GA,33.7488,-84.388,FULTON 30399,ATLANTA,GA,33.7488,-84.388,FULTON 30601,ATHENS,GA,33.976097,-83.363174,CLARKE 30602,ATHENS,GA,33.9482,-83.3745,CLARKE 30603,ATHENS,GA,33.9597,-83.3765,CLARKE 30604,ATHENS,GA,33.9496,-83.41,CLARKE 30605,ATHENS,GA,33.932097,-83.352508,CLARKE 30606,ATHENS,GA,33.946085,-83.418019,CLARKE 30607,ATHENS,GA,34.006978,-83.427761,CLARKE 30608,ATHENS,GA,33.9608,-83.378,CLARKE 30609,ATHENS,GA,33.8983,-83.3688,CLARKE 30612,ATHENS,GA,33.9013,-83.3203,CLARKE 30901,AUGUSTA,GA,33.460084,-81.972959,RICHMOND 30903,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30904,AUGUSTA,GA,33.47374,-82.013078,RICHMOND 30905,AUGUSTA,GA,33.419032,-82.139179,RICHMOND 30906,AUGUSTA,GA,33.402024,-82.038358,RICHMOND 30907,AUGUSTA,GA,33.511692,-82.099505,COLUMBIA 30909,AUGUSTA,GA,33.480932,-82.060439,RICHMOND 30911,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30912,AUGUSTA,GA,33.4719,-81.9803,RICHMOND 30913,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30914,AUGUSTA,GA,33.4695,-82.0211,RICHMOND 30916,AUGUSTA,GA,33.4213,-82.0208,RICHMOND 30917,AUGUSTA,GA,33.5167,-82.0579,COLUMBIA 30919,AUGUSTA,GA,33.4692,-82.0669,RICHMOND 30999,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 31106,ATLANTA,GA,33.7488,-84.388,FULTON 31107,ATLANTA,GA,33.7488,-84.388,FULTON 31119,ATLANTA,GA,33.8571,-84.3462,DEKALB 31120,ATLANTA,GA,33.7844,-84.3828,DEKALB 31126,ATLANTA,GA,33.8473,-84.3606,FULTON 31131,ATLANTA,GA,33.6927,-84.5109,FULTON 31136,ATLANTA,GA,33.6619,-84.6288,FULTON 31139,ATLANTA,GA,33.8705,-84.4611,FULTON 31141,ATLANTA,GA,33.8872,-84.2897,DEKALB 31145,ATLANTA,GA,33.8491,-84.2835,DEKALB 31146,ATLANTA,GA,33.9246,-84.3381,DEKALB 31150,ATLANTA,GA,33.9861,-84.3439,FULTON 31156,ATLANTA,GA,33.9605,-84.3659,FULTON 31191,ATLANTA,GA,33.7917,-84.4476,FULTON 31192,ATLANTA,GA,33.6222,-84.53,FULTON 31193,ATLANTA,GA,33.6605,-84.3858,FULTON 31195,ATLANTA,GA,33.7488,-84.388,FULTON 31196,ATLANTA,GA,33.7488,-84.388,FULTON 31197,ATLANTA,GA,33.7488,-84.388,FULTON 31198,ATLANTA,GA,33.7488,-84.388,FULTON 31199,ATLANTA,GA,33.7488,-84.388,FULTON 31201,MACON,GA,32.84386,-83.598686,BIBB 31202,MACON,GA,32.8405,-83.6325,BIBB 31203,MACON,GA,32.8405,-83.6325,BIBB 31204,MACON,GA,32.842393,-83.676634,BIBB 31205,MACON,GA,32.7501,-83.658,BIBB 31206,MACON,GA,32.780758,-83.682303,BIBB 31207,MACON,GA,32.8297,-83.651,BIBB 31208,MACON,GA,32.8405,-83.6325,BIBB 31209,MACON,GA,32.8405,-83.6325,BIBB 31210,MACON,GA,32.892565,-83.745537,BIBB 31211,MACON,GA,32.886905,-83.602062,BIBB 31212,MACON,GA,32.7509,-83.6772,BIBB 31213,MACON,GA,32.7509,-83.6772,BIBB 31216,MACON,GA,32.7333,-83.6904,BIBB 31217,MACON,GA,32.8389,-83.5538,BIBB 31220,MACON,GA,32.8626,-83.7903,BIBB 31221,MACON,GA,32.88,-83.821,BIBB 31294,MACON,GA,32.8405,-83.6325,BIBB 31295,MACON,GA,32.8405,-83.6325,BIBB 31296,MACON,GA,32.8405,-83.6325,BIBB 31297,MACON,GA,32.7032,-83.65,BIBB 31401,SAVANNAH,GA,32.067631,-81.102394,CHATHAM 31402,SAVANNAH,GA,32.0828,-81.0992,CHATHAM 31403,SAVANNAH,GA,32.0454,-81.1094,CHATHAM 31404,SAVANNAH,GA,32.044178,-81.068704,CHATHAM 31405,SAVANNAH,GA,32.039119,-81.124192,CHATHAM 31406,SAVANNAH,GA,31.988993,-81.097893,CHATHAM 31407,SAVANNAH,GA,32.148075,-81.162891,CHATHAM 31408,SAVANNAH,GA,32.109245,-81.168181,CHATHAM 31409,SAVANNAH,GA,32.002104,-81.158371,CHATHAM 31410,SAVANNAH,GA,32.016188,-80.983859,CHATHAM 31411,SAVANNAH,GA,31.926801,-81.038074,CHATHAM 31412,SAVANNAH,GA,32.0771,-81.0927,CHATHAM 31414,SAVANNAH,GA,32.0436,-81.0639,CHATHAM 31415,SAVANNAH,GA,32.0768,-81.1193,CHATHAM 31416,SAVANNAH,GA,32.005,-81.0957,CHATHAM 31418,SAVANNAH,GA,32.1137,-81.1642,CHATHAM 31419,SAVANNAH,GA,31.985149,-81.177387,CHATHAM 31420,SAVANNAH,GA,32.0722,-81.1102,CHATHAM 31421,SAVANNAH,GA,32.0873,-81.0856,CHATHAM 31601,VALDOSTA,GA,30.810578,-83.277166,LOWNDES 31602,VALDOSTA,GA,30.890268,-83.273299,LOWNDES 31603,VALDOSTA,GA,30.7493,-83.3371,LOWNDES 31604,VALDOSTA,GA,30.9504,-83.238,LOWNDES 31605,VALDOSTA,GA,30.9244,-83.2526,LOWNDES 31606,VALDOSTA,GA,30.8043,-83.2007,LOWNDES 31698,VALDOSTA,GA,30.8495,-83.2888,LOWNDES 31701,ALBANY,GA,31.567783,-84.161923,DOUGHERTY 31702,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31703,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31704,ALBANY,GA,31.550099,-84.050812,DOUGHERTY 31705,ALBANY,GA,31.550851,-84.090089,DOUGHERTY 31706,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31707,ALBANY,GA,31.578908,-84.211834,DOUGHERTY 31708,ALBANY,GA,31.5221,-84.2955,DOUGHERTY 31721,ALBANY,GA,31.547,-84.2707,DOUGHERTY 31901,COLUMBUS,GA,32.473035,-84.979456,MUSCOGEE 31902,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31903,COLUMBUS,GA,32.424513,-84.948127,MUSCOGEE 31904,COLUMBUS,GA,32.516091,-84.978475,MUSCOGEE 31906,COLUMBUS,GA,32.463819,-84.948422,MUSCOGEE 31907,COLUMBUS,GA,32.477909,-84.89799,MUSCOGEE 31908,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31909,COLUMBUS,GA,32.536913,-84.927404,MUSCOGEE 31914,COLUMBUS,GA,32.5573,-85.0045,MUSCOGEE 31917,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31993,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31997,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31998,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31999,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 32080,SAINT AUGUSTINE,FL,29.8364,-81.2745,SAINT JOHNS 32084,SAINT AUGUSTINE,FL,29.880457,-81.298367,SAINT JOHNS 32085,SAINT AUGUSTINE,FL,29.8914,-81.3167,SAINT JOHNS 32086,SAINT AUGUSTINE,FL,29.828514,-81.323734,SAINT JOHNS 32092,SAINT AUGUSTINE,FL,29.947511,-81.526379,SAINT JOHNS 32095,SAINT AUGUSTINE,FL,29.905726,-81.347626,SAINT JOHNS 32099,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32114,DAYTONA BEACH,FL,29.201168,-81.037071,VOLUSIA 32115,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32116,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32117,DAYTONA BEACH,FL,29.236006,-81.054698,VOLUSIA 32118,DAYTONA BEACH,FL,29.221874,-81.009469,VOLUSIA 32119,DAYTONA BEACH,FL,29.152526,-81.022142,VOLUSIA 32120,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32121,DAYTONA BEACH,FL,29.165556,-81.004722,VOLUSIA 32122,DAYTONA BEACH,FL,29.1479,-81.03,VOLUSIA 32124,DAYTONA BEACH,FL,29.122456,-81.106746,VOLUSIA 32125,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32126,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32198,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32201,JACKSONVILLE,FL,30.3294,-81.6613,DUVAL 32202,JACKSONVILLE,FL,30.329882,-81.651672,DUVAL 32203,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32204,JACKSONVILLE,FL,30.318899,-81.685445,DUVAL 32205,JACKSONVILLE,FL,30.317236,-81.722034,DUVAL 32206,JACKSONVILLE,FL,30.351073,-81.648769,DUVAL 32207,JACKSONVILLE,FL,30.290766,-81.63205,DUVAL 32208,JACKSONVILLE,FL,30.393664,-81.688939,DUVAL 32209,JACKSONVILLE,FL,30.35841,-81.691974,DUVAL 32210,JACKSONVILLE,FL,30.268743,-81.747312,DUVAL 32211,JACKSONVILLE,FL,30.348034,-81.588248,DUVAL 32212,JACKSONVILLE,FL,30.220905,-81.68848,DUVAL 32214,JACKSONVILLE,FL,30.2128,-81.6867,DUVAL 32215,JACKSONVILLE,FL,30.23295,-81.663142,DUVAL 32216,JACKSONVILLE,FL,30.293907,-81.547387,DUVAL 32217,JACKSONVILLE,FL,30.240678,-81.616956,DUVAL 32218,JACKSONVILLE,FL,30.45067,-81.662631,DUVAL 32219,JACKSONVILLE,FL,30.403365,-81.763451,DUVAL 32220,JACKSONVILLE,FL,30.329003,-81.817572,DUVAL 32221,JACKSONVILLE,FL,30.283707,-81.820231,DUVAL 32222,JACKSONVILLE,FL,30.229176,-81.813081,DUVAL 32223,JACKSONVILLE,FL,30.154817,-81.629961,DUVAL 32224,JACKSONVILLE,FL,30.303076,-81.440427,DUVAL 32225,JACKSONVILLE,FL,30.350968,-81.506092,DUVAL 32226,JACKSONVILLE,FL,30.473485,-81.544808,DUVAL 32227,JACKSONVILLE,FL,30.388275,-81.405424,DUVAL 32228,JACKSONVILLE,FL,30.383889,-81.415278,DUVAL 32229,JACKSONVILLE,FL,30.4937,-81.6715,DUVAL 32230,JACKSONVILLE,FL,30.3268,-81.7339,DUVAL 32231,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32232,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32234,JACKSONVILLE,FL,30.229562,-81.978345,DUVAL 32235,JACKSONVILLE,FL,30.2908,-81.6316,DUVAL 32236,JACKSONVILLE,FL,30.3118,-81.7379,DUVAL 32237,JACKSONVILLE,FL,30.2006,-81.6157,DUVAL 32238,JACKSONVILLE,FL,30.2469,-81.7387,DUVAL 32239,JACKSONVILLE,FL,30.3521,-81.5688,DUVAL 32241,JACKSONVILLE,FL,30.1535,-81.6326,DUVAL 32244,JACKSONVILLE,FL,30.223137,-81.75558,DUVAL 32245,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32246,JACKSONVILLE,FL,30.297,-81.516,DUVAL 32247,JACKSONVILLE,FL,30.2937,-81.627,DUVAL 32254,JACKSONVILLE,FL,30.3357,-81.73,DUVAL 32255,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32256,JACKSONVILLE,FL,30.221356,-81.557139,DUVAL 32257,JACKSONVILLE,FL,30.192703,-81.605042,DUVAL 32258,JACKSONVILLE,FL,30.145944,-81.573864,DUVAL 32260,JACKSONVILLE,FL,30.0759,-81.5803,SAINT JOHNS 32267,JACKSONVILLE,FL,30.3826,-81.4199,DUVAL 32277,JACKSONVILLE,FL,30.3661,-81.5888,DUVAL 32290,JACKSONVILLE,FL,30.3318,-81.6555,DUVAL 32301,TALLAHASSEE,FL,30.428563,-84.259337,LEON 32302,TALLAHASSEE,FL,30.4418,-84.284,LEON 32303,TALLAHASSEE,FL,30.487433,-84.318946,LEON 32304,TALLAHASSEE,FL,30.447752,-84.321132,LEON 32305,TALLAHASSEE,FL,30.348,-84.2844,LEON 32306,TALLAHASSEE,FL,30.442152,-84.295594,LEON 32307,TALLAHASSEE,FL,30.426667,-84.285278,LEON 32308,TALLAHASSEE,FL,30.507725,-84.206903,LEON 32309,TALLAHASSEE,FL,30.594444,-84.041389,LEON 32310,TALLAHASSEE,FL,30.399125,-84.3298,LEON 32311,TALLAHASSEE,FL,30.415625,-84.186995,LEON 32312,TALLAHASSEE,FL,30.518474,-84.262708,LEON 32313,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32314,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32315,TALLAHASSEE,FL,30.4648,-84.2854,LEON 32316,TALLAHASSEE,FL,30.437,-84.2979,LEON 32317,TALLAHASSEE,FL,30.4675,-84.1231,LEON 32318,TALLAHASSEE,FL,30.5567,-84.1766,LEON 32395,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32399,TALLAHASSEE,FL,30.4328,-84.2671,LEON 32401,PANAMA CITY,FL,30.160624,-85.649403,BAY 32402,PANAMA CITY,FL,30.1558,-85.6629,BAY 32403,PANAMA CITY,FL,30.058252,-85.576225,BAY 32404,PANAMA CITY,FL,30.165291,-85.576264,BAY 32405,PANAMA CITY,FL,30.194949,-85.672686,BAY 32406,PANAMA CITY,FL,30.1786,-85.6841,BAY 32408,PANAMA CITY,FL,30.160859,-85.763628,BAY 32409,PANAMA CITY,FL,30.310679,-85.644536,BAY 32411,PANAMA CITY,FL,30.1516,-85.7246,BAY 32412,PANAMA CITY,FL,30.1586,-85.6602,BAY 32417,PANAMA CITY,FL,30.176389,-85.805556,BAY 32501,PENSACOLA,FL,30.422282,-87.224763,ESCAMBIA 32502,PENSACOLA,FL,30.4126,-87.2112,ESCAMBIA 32503,PENSACOLA,FL,30.456406,-87.210432,ESCAMBIA 32504,PENSACOLA,FL,30.487299,-87.187242,ESCAMBIA 32505,PENSACOLA,FL,30.448069,-87.258937,ESCAMBIA 32506,PENSACOLA,FL,30.412912,-87.309185,ESCAMBIA 32507,PENSACOLA,FL,30.373707,-87.312558,ESCAMBIA 32508,PENSACOLA,FL,30.351063,-87.274945,ESCAMBIA 32509,PENSACOLA,FL,30.4628,-87.3381,ESCAMBIA 32511,PENSACOLA,FL,30.4066,-87.2886,ESCAMBIA 32512,PENSACOLA,FL,30.3969,-87.3013,ESCAMBIA 32513,PENSACOLA,FL,30.4441,-87.215,ESCAMBIA 32514,PENSACOLA,FL,30.524148,-87.216723,ESCAMBIA 32516,PENSACOLA,FL,30.426,-87.2876,ESCAMBIA 32520,PENSACOLA,FL,30.4123,-87.2035,ESCAMBIA 32521,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32522,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32523,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32524,PENSACOLA,FL,30.498,-87.1961,ESCAMBIA 32526,PENSACOLA,FL,30.475593,-87.317925,ESCAMBIA 32534,PENSACOLA,FL,30.530065,-87.279324,ESCAMBIA 32559,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32590,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32591,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32592,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32601,GAINESVILLE,FL,29.645029,-82.310046,ALACHUA 32602,GAINESVILLE,FL,29.6513,-82.325,ALACHUA 32603,GAINESVILLE,FL,29.651484,-82.349286,ALACHUA 32604,GAINESVILLE,FL,29.6526,-82.3437,ALACHUA 32605,GAINESVILLE,FL,29.678458,-82.36794,ALACHUA 32606,GAINESVILLE,FL,29.695393,-82.402324,ALACHUA 32607,GAINESVILLE,FL,29.645618,-82.403252,ALACHUA 32608,GAINESVILLE,FL,29.613204,-82.387282,ALACHUA 32609,GAINESVILLE,FL,29.70053,-82.308032,ALACHUA 32610,GAINESVILLE,FL,29.6396,-82.3439,ALACHUA 32611,GAINESVILLE,FL,29.644148,-82.35092,ALACHUA 32612,GAINESVILLE,FL,29.6093,-82.3721,ALACHUA 32613,GAINESVILLE,FL,29.6646,-82.3244,ALACHUA 32614,GAINESVILLE,FL,29.6771,-82.3717,ALACHUA 32627,GAINESVILLE,FL,29.6462,-82.3261,ALACHUA 32635,GAINESVILLE,FL,29.7077,-82.3979,ALACHUA 32641,GAINESVILLE,FL,29.6434,-82.2805,ALACHUA 32653,GAINESVILLE,FL,29.7227,-82.3918,ALACHUA 32801,ORLANDO,FL,28.539882,-81.372668,ORANGE 32802,ORLANDO,FL,28.5453,-81.3783,ORANGE 32803,ORLANDO,FL,28.555897,-81.353462,ORANGE 32804,ORLANDO,FL,28.576547,-81.391955,ORANGE 32805,ORLANDO,FL,28.5302,-81.404516,ORANGE 32806,ORLANDO,FL,28.513958,-81.356968,ORANGE 32807,ORLANDO,FL,28.544924,-81.305274,ORANGE 32808,ORLANDO,FL,28.580463,-81.44758,ORANGE 32809,ORLANDO,FL,28.461916,-81.381751,ORANGE 32810,ORLANDO,FL,28.622183,-81.425852,ORANGE 32811,ORLANDO,FL,28.516082,-81.442014,ORANGE 32812,ORLANDO,FL,28.49981,-81.328816,ORANGE 32814,ORLANDO,FL,28.5675,-81.333,ORANGE 32815,ORLANDO,FL,28.498821,-80.58248,BREVARD 32816,ORLANDO,FL,28.6049,-81.205,ORANGE 32817,ORLANDO,FL,28.590251,-81.253537,ORANGE 32818,ORLANDO,FL,28.580147,-81.484618,ORANGE 32819,ORLANDO,FL,28.467258,-81.452484,ORANGE 32820,ORLANDO,FL,28.578256,-81.110628,ORANGE 32821,ORLANDO,FL,28.395724,-81.466602,ORANGE 32822,ORLANDO,FL,28.504765,-81.293874,ORANGE 32824,ORLANDO,FL,28.393157,-81.362187,ORANGE 32825,ORLANDO,FL,28.546865,-81.257081,ORANGE 32826,ORLANDO,FL,28.582601,-81.190705,ORANGE 32827,ORLANDO,FL,28.43168,-81.342979,ORANGE 32828,ORLANDO,FL,28.552297,-81.179489,ORANGE 32829,ORLANDO,FL,28.484877,-81.260778,ORANGE 32830,ORLANDO,FL,28.369378,-81.519034,ORANGE 32831,ORLANDO,FL,28.488229,-81.191768,ORANGE 32832,ORLANDO,FL,28.377428,-81.188807,ORANGE 32833,ORLANDO,FL,28.531797,-81.098129,ORANGE 32834,ORLANDO,FL,28.538,-81.3794,ORANGE 32835,ORLANDO,FL,28.528885,-81.478663,ORANGE 32836,ORLANDO,FL,28.460842,-81.49564,ORANGE 32837,ORLANDO,FL,28.394861,-81.417882,ORANGE 32839,ORLANDO,FL,28.487102,-81.408162,ORANGE 32853,ORLANDO,FL,28.5515,-81.3644,ORANGE 32854,ORLANDO,FL,28.5665,-81.3894,ORANGE 32855,ORLANDO,FL,28.538,-81.3794,ORANGE 32856,ORLANDO,FL,28.5109,-81.3727,ORANGE 32857,ORLANDO,FL,28.538,-81.3794,ORANGE 32858,ORLANDO,FL,28.5527,-81.4498,ORANGE 32859,ORLANDO,FL,28.4521,-81.3644,ORANGE 32860,ORLANDO,FL,28.6218,-81.4392,ORANGE 32861,ORLANDO,FL,28.538,-81.3794,ORANGE 32862,ORLANDO,FL,28.483,-81.3299,ORANGE 32867,ORLANDO,FL,28.5675,-81.253,ORANGE 32868,ORLANDO,FL,28.583,-81.476,ORANGE 32869,ORLANDO,FL,28.5901,-81.4936,ORANGE 32872,ORLANDO,FL,28.5148,-81.2882,ORANGE 32877,ORLANDO,FL,28.5416,-81.3739,ORANGE 32878,ORLANDO,FL,28.538,-81.3794,ORANGE 32885,ORLANDO,FL,28.5382,-81.3795,ORANGE 32886,ORLANDO,FL,28.538,-81.3794,ORANGE 32887,ORLANDO,FL,28.3804,-81.4704,ORANGE 32890,ORLANDO,FL,28.4611,-81.3845,ORANGE 32891,ORLANDO,FL,28.538,-81.3794,ORANGE 32893,ORLANDO,FL,28.4286,-81.3097,ORANGE 32896,ORLANDO,FL,28.3212,-81.2299,ORANGE 32897,ORLANDO,FL,28.538,-81.3794,ORANGE 32898,ORLANDO,FL,28.538,-81.3794,ORANGE 32899,ORLANDO,FL,28.6138,-80.6774,BREVARD 32901,MELBOURNE,FL,28.069132,-80.620015,BREVARD 32902,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32904,MELBOURNE,FL,28.073177,-80.668577,BREVARD 32905,PALM BAY,FL,28.014605,-80.599087,BREVARD 32906,PALM BAY,FL,28.0449,-80.6053,BREVARD 32907,PALM BAY,FL,28.016849,-80.673889,BREVARD 32908,PALM BAY,FL,27.981636,-80.689426,BREVARD 32909,PALM BAY,FL,27.96936,-80.647327,BREVARD 32910,PALM BAY,FL,28.0341,-80.5888,BREVARD 32911,PALM BAY,FL,28.0775,-80.6266,BREVARD 32912,MELBOURNE,FL,28.0775,-80.6266,BREVARD 32919,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32934,MELBOURNE,FL,28.136822,-80.691683,BREVARD 32935,MELBOURNE,FL,28.138385,-80.652353,BREVARD 32936,MELBOURNE,FL,28.1307,-80.6296,BREVARD 32940,MELBOURNE,FL,28.206136,-80.684959,BREVARD 32941,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32960,VERO BEACH,FL,27.632985,-80.403075,INDIAN RIVER 32961,VERO BEACH,FL,27.6383,-80.3975,INDIAN RIVER 32962,VERO BEACH,FL,27.588486,-80.392251,INDIAN RIVER 32963,VERO BEACH,FL,27.653623,-80.360916,INDIAN RIVER 32964,VERO BEACH,FL,27.6515,-80.3576,INDIAN RIVER 32965,VERO BEACH,FL,27.7257,-80.3893,INDIAN RIVER 32966,VERO BEACH,FL,27.637214,-80.47939,INDIAN RIVER 32967,VERO BEACH,FL,27.697223,-80.441617,INDIAN RIVER 32968,VERO BEACH,FL,27.59993,-80.438223,INDIAN RIVER 32969,VERO BEACH,FL,27.639,-80.3989,INDIAN RIVER 33002,HIALEAH,FL,25.905,-80.3049,MIAMI-DADE 33010,HIALEAH,FL,25.832536,-80.280801,MIAMI-DADE 33011,HIALEAH,FL,25.8248,-80.2835,MIAMI-DADE 33012,HIALEAH,FL,25.865395,-80.3059,MIAMI-DADE 33013,HIALEAH,FL,25.859351,-80.272533,MIAMI-DADE 33014,HIALEAH,FL,25.896349,-80.306255,MIAMI-DADE 33015,HIALEAH,FL,25.938841,-80.316545,MIAMI-DADE 33016,HIALEAH,FL,25.880262,-80.33681,MIAMI-DADE 33017,HIALEAH,FL,25.978889,-80.201667,MIAMI-DADE 33018,HIALEAH,FL,25.911667,-80.325,MIAMI-DADE 33019,HOLLYWOOD,FL,26.007011,-80.121931,BROWARD 33020,HOLLYWOOD,FL,26.016091,-80.15166,BROWARD 33021,HOLLYWOOD,FL,26.021836,-80.189085,BROWARD 33022,HOLLYWOOD,FL,26.0131,-80.1435,BROWARD 33023,HOLLYWOOD,FL,25.987516,-80.216035,BROWARD 33024,HOLLYWOOD,FL,26.024273,-80.240183,BROWARD 33025,HOLLYWOOD,FL,25.992061,-80.271236,BROWARD 33027,HOLLYWOOD,FL,25.997449,-80.32484,BROWARD 33028,HOLLYWOOD,FL,26.024804,-80.330797,BROWARD 33029,HOLLYWOOD,FL,26.01375,-80.428407,BROWARD 33030,HOMESTEAD,FL,25.476639,-80.483853,MIAMI-DADE 33031,HOMESTEAD,FL,25.532314,-80.507463,MIAMI-DADE 33032,HOMESTEAD,FL,25.521191,-80.40918,MIAMI-DADE 33033,HOMESTEAD,FL,25.490576,-80.438014,MIAMI-DADE 33034,HOMESTEAD,FL,25.396332,-80.548438,MIAMI-DADE 33035,HOMESTEAD,FL,25.457338,-80.457153,MIAMI-DADE 33039,HOMESTEAD,FL,25.499088,-80.390513,MIAMI-DADE 33060,POMPANO BEACH,FL,26.231529,-80.12346,BROWARD 33061,POMPANO BEACH,FL,26.2594,-80.1147,BROWARD 33062,POMPANO BEACH,FL,26.234314,-80.094133,BROWARD 33063,POMPANO BEACH,FL,26.249221,-80.211483,BROWARD 33065,POMPANO BEACH,FL,26.271403,-80.255578,BROWARD 33066,POMPANO BEACH,FL,26.254237,-80.177878,BROWARD 33067,POMPANO BEACH,FL,26.305134,-80.22188,BROWARD 33068,POMPANO BEACH,FL,26.216021,-80.22054,BROWARD 33069,POMPANO BEACH,FL,26.228817,-80.163486,BROWARD 33071,POMPANO BEACH,FL,26.243515,-80.260085,BROWARD 33072,POMPANO BEACH,FL,26.2327,-80.0925,BROWARD 33073,POMPANO BEACH,FL,26.299693,-80.180966,BROWARD 33075,POMPANO BEACH,FL,26.2434,-80.266,BROWARD 33076,POMPANO BEACH,FL,26.291902,-80.248086,BROWARD 33077,POMPANO BEACH,FL,26.2392,-80.2517,BROWARD 33081,HOLLYWOOD,FL,26.0174,-80.2036,BROWARD 33083,HOLLYWOOD,FL,26.1499,-80.2314,BROWARD 33084,HOLLYWOOD,FL,26.002778,-80.224167,BROWARD 33090,HOMESTEAD,FL,25.468333,-80.477778,MIAMI-DADE 33092,HOMESTEAD,FL,25.517222,-80.421667,MIAMI-DADE 33097,POMPANO BEACH,FL,26.3173,-80.1808,BROWARD 33101,MIAMI,FL,25.779,-80.1982,MIAMI-DADE 33102,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33107,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33109,MIAMI BEACH,FL,25.7611,-80.1403,MIAMI-DADE 33110,MIAMI,FL,25.8519,-80.2073,MIAMI-DADE 33111,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33112,MIAMI,FL,25.7968,-80.3826,MIAMI-DADE 33114,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33116,MIAMI,FL,25.6719,-80.3746,MIAMI-DADE 33119,MIAMI BEACH,FL,25.7836,-80.1324,MIAMI-DADE 33121,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33122,MIAMI,FL,25.7911,-80.320733,MIAMI-DADE 33124,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33125,MIAMI,FL,25.782547,-80.234118,MIAMI-DADE 33126,MIAMI,FL,25.776255,-80.291932,MIAMI-DADE 33127,MIAMI,FL,25.814344,-80.205121,MIAMI-DADE 33128,MIAMI,FL,25.775612,-80.208858,MIAMI-DADE 33129,MIAMI,FL,25.755926,-80.201301,MIAMI-DADE 33130,MIAMI,FL,25.767197,-80.205888,MIAMI-DADE 33131,MIAMI,FL,25.762852,-80.189506,MIAMI-DADE 33132,MIAMI,FL,25.786712,-80.179996,MIAMI-DADE 33133,MIAMI,FL,25.732251,-80.243639,MIAMI-DADE 33134,MIAMI,FL,25.755582,-80.269576,MIAMI-DADE 33135,MIAMI,FL,25.766391,-80.231746,MIAMI-DADE 33136,MIAMI,FL,25.786385,-80.204232,MIAMI-DADE 33137,MIAMI,FL,25.815648,-80.189663,MIAMI-DADE 33138,MIAMI,FL,25.850208,-80.18526,MIAMI-DADE 33139,MIAMI BEACH,FL,25.785179,-80.136378,MIAMI-DADE 33140,MIAMI BEACH,FL,25.819505,-80.127921,MIAMI-DADE 33141,MIAMI BEACH,FL,25.852384,-80.133578,MIAMI-DADE 33142,MIAMI,FL,25.812966,-80.232023,MIAMI-DADE 33143,MIAMI,FL,25.700252,-80.301408,MIAMI-DADE 33144,MIAMI,FL,25.762563,-80.309631,MIAMI-DADE 33145,MIAMI,FL,25.752648,-80.235134,MIAMI-DADE 33146,MIAMI,FL,25.720089,-80.274649,MIAMI-DADE 33147,MIAMI,FL,25.850675,-80.236558,MIAMI-DADE 33148,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33150,MIAMI,FL,25.851214,-80.206968,MIAMI-DADE 33151,MIAMI,FL,25.8315,-80.2098,MIAMI-DADE 33152,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33153,MIAMI,FL,25.8655,-80.1936,MIAMI-DADE 33154,MIAMI BEACH,FL,25.879094,-80.127055,MIAMI-DADE 33155,MIAMI,FL,25.7392,-80.31032,MIAMI-DADE 33156,MIAMI,FL,25.66767,-80.308535,MIAMI-DADE 33157,MIAMI,FL,25.604384,-80.352473,MIAMI-DADE 33158,MIAMI,FL,25.636433,-80.318703,MIAMI-DADE 33159,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33161,MIAMI,FL,25.893806,-80.182034,MIAMI-DADE 33162,MIAMI,FL,25.92807,-80.177238,MIAMI-DADE 33163,MIAMI,FL,25.948056,-80.150833,MIAMI-DADE 33164,MIAMI,FL,25.928889,-80.178333,MIAMI-DADE 33165,MIAMI,FL,25.735353,-80.359084,MIAMI-DADE 33166,MIAMI,FL,25.817473,-80.29902,MIAMI-DADE 33167,MIAMI,FL,25.885605,-80.229168,MIAMI-DADE 33168,MIAMI,FL,25.890232,-80.210106,MIAMI-DADE 33169,MIAMI,FL,25.944083,-80.21436,MIAMI-DADE 33170,MIAMI,FL,25.558847,-80.3981,MIAMI-DADE 33172,MIAMI,FL,25.773523,-80.357232,MIAMI-DADE 33173,MIAMI,FL,25.699242,-80.361824,MIAMI-DADE 33174,MIAMI,FL,25.762779,-80.361128,MIAMI-DADE 33175,MIAMI,FL,25.733677,-80.408226,MIAMI-DADE 33176,MIAMI,FL,25.657449,-80.362667,MIAMI-DADE 33177,MIAMI,FL,25.593255,-80.39377,MIAMI-DADE 33178,MIAMI,FL,25.814079,-80.354925,MIAMI-DADE 33179,MIAMI,FL,25.957095,-80.181382,MIAMI-DADE 33180,MIAMI,FL,25.961902,-80.139447,MIAMI-DADE 33181,MIAMI,FL,25.896548,-80.160329,MIAMI-DADE 33182,MIAMI,FL,25.787678,-80.416643,MIAMI-DADE 33183,MIAMI,FL,25.699977,-80.412969,MIAMI-DADE 33184,MIAMI,FL,25.757382,-80.402997,MIAMI-DADE 33185,MIAMI,FL,25.718082,-80.437366,MIAMI-DADE 33186,MIAMI,FL,25.669437,-80.408501,MIAMI-DADE 33187,MIAMI,FL,25.597112,-80.47137,MIAMI-DADE 33188,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33189,MIAMI,FL,25.57431,-80.350851,MIAMI-DADE 33190,MIAMI,FL,25.560935,-80.35381,MIAMI-DADE 33193,MIAMI,FL,25.696365,-80.440087,MIAMI-DADE 33194,MIAMI,FL,25.7576,-80.4505,MIAMI-DADE 33195,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33196,MIAMI,FL,25.661502,-80.441031,MIAMI-DADE 33197,MIAMI,FL,25.558333,-80.381667,MIAMI-DADE 33199,MIAMI,FL,25.7574,-80.3754,MIAMI-DADE 33222,MIAMI,FL,37.0625,-95.677068,MIAMI-DADE 33231,MIAMI,FL,25.7299,-80.3013,MIAMI-DADE 33233,MIAMI,FL,25.7272,-80.2585,MIAMI-DADE 33234,MIAMI,FL,25.7299,-80.2426,MIAMI-DADE 33238,MIAMI,FL,25.8518,-80.1944,MIAMI-DADE 33239,MIAMI BEACH,FL,25.7902,-80.1424,MIAMI-DADE 33242,MIAMI,FL,25.8059,-80.224,MIAMI-DADE 33243,MIAMI,FL,25.7057,-80.2902,MIAMI-DADE 33245,MIAMI,FL,25.7481,-80.2877,MIAMI-DADE 33247,MIAMI,FL,25.8348,-80.2415,MIAMI-DADE 33255,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33256,MIAMI,FL,25.666667,-80.308333,MIAMI-DADE 33257,MIAMI,FL,25.6113,-80.3486,MIAMI-DADE 33261,MIAMI,FL,25.9075,-80.1583,MIAMI-DADE 33265,MIAMI,FL,25.726389,-80.355556,MIAMI-DADE 33266,MIAMI,FL,25.821944,-80.289722,MIAMI-DADE 33269,MIAMI,FL,25.9449,-80.2057,MIAMI-DADE 33280,MIAMI,FL,25.9335,-80.1366,MIAMI-DADE 33283,MIAMI,FL,25.6933,-80.3821,MIAMI-DADE 33296,MIAMI,FL,25.657,-80.3592,MIAMI-DADE 33299,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33301,FORT LAUDERDALE,FL,26.121561,-80.128778,BROWARD 33302,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33303,FORT LAUDERDALE,FL,26.1186,-80.1296,BROWARD 33304,FORT LAUDERDALE,FL,26.137908,-80.125283,BROWARD 33305,FORT LAUDERDALE,FL,26.153115,-80.127768,BROWARD 33306,FORT LAUDERDALE,FL,26.165091,-80.112572,BROWARD 33307,FORT LAUDERDALE,FL,26.171944,-80.132222,BROWARD 33308,FORT LAUDERDALE,FL,26.187883,-80.107674,BROWARD 33309,FORT LAUDERDALE,FL,26.181698,-80.174624,BROWARD 33310,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33311,FORT LAUDERDALE,FL,26.142104,-80.172786,BROWARD 33312,FORT LAUDERDALE,FL,26.096819,-80.181038,BROWARD 33313,FORT LAUDERDALE,FL,26.151145,-80.223142,BROWARD 33314,FORT LAUDERDALE,FL,26.068199,-80.225034,BROWARD 33315,FORT LAUDERDALE,FL,26.098885,-80.15408,BROWARD 33316,FORT LAUDERDALE,FL,26.104193,-80.125951,BROWARD 33317,FORT LAUDERDALE,FL,26.113536,-80.224272,BROWARD 33318,FORT LAUDERDALE,FL,26.1278,-80.2502,BROWARD 33319,FORT LAUDERDALE,FL,26.181153,-80.225413,BROWARD 33320,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33321,FORT LAUDERDALE,FL,26.212072,-80.264356,BROWARD 33322,FORT LAUDERDALE,FL,26.151923,-80.271954,BROWARD 33323,FORT LAUDERDALE,FL,26.164641,-80.307583,BROWARD 33324,FORT LAUDERDALE,FL,26.113639,-80.271019,BROWARD 33325,FORT LAUDERDALE,FL,26.10862,-80.321952,BROWARD 33326,FORT LAUDERDALE,FL,26.114338,-80.369941,BROWARD 33327,FORT LAUDERDALE,FL,26.097291,-80.40645,BROWARD 33328,FORT LAUDERDALE,FL,26.060708,-80.272022,BROWARD 33329,FORT LAUDERDALE,FL,26.1219,-80.1436,BROWARD 33330,FORT LAUDERDALE,FL,26.055479,-80.312907,BROWARD 33331,FORT LAUDERDALE,FL,26.044366,-80.364533,BROWARD 33332,FORT LAUDERDALE,FL,26.054436,-80.41299,BROWARD 33334,FORT LAUDERDALE,FL,26.181514,-80.135511,BROWARD 33335,FORT LAUDERDALE,FL,26.1824,-80.1347,BROWARD 33336,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33337,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33338,FORT LAUDERDALE,FL,26.1367,-80.1231,BROWARD 33339,FORT LAUDERDALE,FL,26.1646,-80.1141,BROWARD 33340,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33345,FORT LAUDERDALE,FL,26.150278,-80.224444,BROWARD 33346,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33348,FORT LAUDERDALE,FL,26.1692,-80.1022,BROWARD 33349,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33351,FORT LAUDERDALE,FL,26.177148,-80.273376,BROWARD 33355,FORT LAUDERDALE,FL,26.112,-80.3037,BROWARD 33359,FORT LAUDERDALE,FL,26.1814,-80.2276,BROWARD 33388,FORT LAUDERDALE,FL,26.117586,-80.250587,BROWARD 33394,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33401,WEST PALM BEACH,FL,26.713956,-80.065874,PALM BEACH 33402,WEST PALM BEACH,FL,26.7131,-80.058,PALM BEACH 33403,WEST PALM BEACH,FL,26.803187,-80.073078,PALM BEACH 33404,WEST PALM BEACH,FL,26.781343,-80.06852,PALM BEACH 33405,WEST PALM BEACH,FL,26.669968,-80.058234,PALM BEACH 33406,WEST PALM BEACH,FL,26.655582,-80.093026,PALM BEACH 33407,WEST PALM BEACH,FL,26.749154,-80.072492,PALM BEACH 33409,WEST PALM BEACH,FL,26.713218,-80.096347,PALM BEACH 33411,WEST PALM BEACH,FL,26.700539,-80.209898,PALM BEACH 33412,WEST PALM BEACH,FL,26.805526,-80.248203,PALM BEACH 33413,WEST PALM BEACH,FL,26.67616,-80.140474,PALM BEACH 33414,WEST PALM BEACH,FL,26.662707,-80.25299,PALM BEACH 33415,WEST PALM BEACH,FL,26.655722,-80.127966,PALM BEACH 33416,WEST PALM BEACH,FL,26.715,-80.0536,PALM BEACH 33417,WEST PALM BEACH,FL,26.713006,-80.124764,PALM BEACH 33419,WEST PALM BEACH,FL,26.7819,-80.0927,PALM BEACH 33420,WEST PALM BEACH,FL,26.8555,-80.086,PALM BEACH 33421,WEST PALM BEACH,FL,26.708,-80.2308,PALM BEACH 33422,WEST PALM BEACH,FL,26.690833,-80.120278,PALM BEACH 33424,BOYNTON BEACH,FL,26.525,-80.0666,PALM BEACH 33425,BOYNTON BEACH,FL,26.5283,-80.0643,PALM BEACH 33426,BOYNTON BEACH,FL,26.51747,-80.083427,PALM BEACH 33427,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33428,BOCA RATON,FL,26.344605,-80.210942,PALM BEACH 33429,BOCA RATON,FL,26.352,-80.0847,PALM BEACH 33431,BOCA RATON,FL,26.379929,-80.097488,PALM BEACH 33432,BOCA RATON,FL,26.34619,-80.084421,PALM BEACH 33433,BOCA RATON,FL,26.346409,-80.156399,PALM BEACH 33434,BOCA RATON,FL,26.383909,-80.174858,PALM BEACH 33435,BOYNTON BEACH,FL,26.529161,-80.06424,PALM BEACH 33436,BOYNTON BEACH,FL,26.526862,-80.106423,PALM BEACH 33437,BOYNTON BEACH,FL,26.531187,-80.141812,PALM BEACH 33444,DELRAY BEACH,FL,26.456445,-80.079321,PALM BEACH 33445,DELRAY BEACH,FL,26.456359,-80.105397,PALM BEACH 33446,DELRAY BEACH,FL,26.451717,-80.158016,PALM BEACH 33447,DELRAY BEACH,FL,26.4685,-80.0718,PALM BEACH 33448,DELRAY BEACH,FL,26.4567,-80.1378,PALM BEACH 33449,LAKE WORTH,FL,26.6159015,-80.056986,PALM BEACH 33454,LAKE WORTH,FL,26.6155,-80.1469,PALM BEACH 33460,LAKE WORTH,FL,26.618207,-80.055996,PALM BEACH 33461,LAKE WORTH,FL,26.62316,-80.094573,PALM BEACH 33462,LAKE WORTH,FL,26.576766,-80.077264,PALM BEACH 33463,LAKE WORTH,FL,26.609609,-80.130503,PALM BEACH 33464,BOCA RATON,FL,26.5844,-80.0526,PALM BEACH 33465,LAKE WORTH,FL,26.5844,-80.0526,PALM BEACH 33466,LAKE WORTH,FL,26.618,-80.1083,PALM BEACH 33467,LAKE WORTH,FL,26.610366,-80.168299,PALM BEACH 33472,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33473,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33474,BOYNTON BEACH,FL,26.5272,-80.0911,PALM BEACH 33481,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33482,DELRAY BEACH,FL,26.4611,-80.073,PALM BEACH 33483,DELRAY BEACH,FL,26.45457,-80.065637,PALM BEACH 33484,DELRAY BEACH,FL,26.454272,-80.13459,PALM BEACH 33486,BOCA RATON,FL,26.348099,-80.110418,PALM BEACH 33487,BOCA RATON,FL,26.409142,-80.089072,PALM BEACH 33488,BOCA RATON,FL,26.349,-80.1141,PALM BEACH 33496,BOCA RATON,FL,26.402975,-80.181287,PALM BEACH 33497,BOCA RATON,FL,26.349,-80.2211,PALM BEACH 33498,BOCA RATON,FL,26.390693,-80.216087,PALM BEACH 33499,BOCA RATON,FL,26.3757,-80.1216,PALM BEACH 33601,TAMPA,FL,27.9428,-82.4549,HILLSBOROUGH 33602,TAMPA,FL,27.961381,-82.45972,HILLSBOROUGH 33603,TAMPA,FL,27.984534,-82.462997,HILLSBOROUGH 33604,TAMPA,FL,28.017312,-82.457848,HILLSBOROUGH 33605,TAMPA,FL,27.967078,-82.433368,HILLSBOROUGH 33606,TAMPA,FL,27.933828,-82.467035,HILLSBOROUGH 33607,TAMPA,FL,27.962538,-82.489535,HILLSBOROUGH 33608,TAMPA,FL,27.865916,-82.507097,HILLSBOROUGH 33609,TAMPA,FL,27.942456,-82.50572,HILLSBOROUGH 33610,TAMPA,FL,27.995125,-82.404584,HILLSBOROUGH 33611,TAMPA,FL,27.891422,-82.506714,HILLSBOROUGH 33612,TAMPA,FL,28.050187,-82.450018,HILLSBOROUGH 33613,TAMPA,FL,28.077184,-82.445519,HILLSBOROUGH 33614,TAMPA,FL,28.00914,-82.503393,HILLSBOROUGH 33615,TAMPA,FL,28.008057,-82.580495,HILLSBOROUGH 33616,TAMPA,FL,27.87418,-82.52029,HILLSBOROUGH 33617,TAMPA,FL,28.038358,-82.394876,HILLSBOROUGH 33618,TAMPA,FL,28.075875,-82.493291,HILLSBOROUGH 33619,TAMPA,FL,27.93824,-82.375558,HILLSBOROUGH 33620,TAMPA,FL,28.069465,-82.409188,HILLSBOROUGH 33621,TAMPA,FL,27.8516,-82.4885,HILLSBOROUGH 33622,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33623,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33624,TAMPA,FL,28.077194,-82.524944,HILLSBOROUGH 33625,TAMPA,FL,28.072551,-82.558987,HILLSBOROUGH 33626,TAMPA,FL,28.050932,-82.616378,HILLSBOROUGH 33629,TAMPA,FL,27.92102,-82.507897,HILLSBOROUGH 33630,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33631,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33633,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33634,TAMPA,FL,28.006783,-82.556006,HILLSBOROUGH 33635,TAMPA,FL,28.03013,-82.604822,HILLSBOROUGH 33637,TAMPA,FL,28.03377,-82.365876,HILLSBOROUGH 33646,TAMPA,FL,27.9475216,-82.4584279,HILLSBOROUGH 33647,TAMPA,FL,28.114698,-82.367751,HILLSBOROUGH 33650,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33651,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33655,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33660,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33661,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33662,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33663,TAMPA,FL,27.9281,-82.3734,HILLSBOROUGH 33664,TAMPA,FL,27.967,-82.5177,HILLSBOROUGH 33672,TAMPA,FL,27.9519,-82.4588,HILLSBOROUGH 33673,TAMPA,FL,27.9943,-82.4597,HILLSBOROUGH 33674,TAMPA,FL,28.0088,-82.4514,HILLSBOROUGH 33675,TAMPA,FL,27.9641,-82.4376,HILLSBOROUGH 33677,TAMPA,FL,27.958,-82.4833,HILLSBOROUGH 33679,TAMPA,FL,27.9521,-82.5083,HILLSBOROUGH 33680,TAMPA,FL,27.9958,-82.4273,HILLSBOROUGH 33681,TAMPA,FL,27.8959,-82.5227,HILLSBOROUGH 33682,TAMPA,FL,28.0552,-82.4593,HILLSBOROUGH 33684,TAMPA,FL,27.996,-82.4964,HILLSBOROUGH 33685,TAMPA,FL,27.9985,-82.5827,HILLSBOROUGH 33686,TAMPA,FL,27.8682,-82.5276,HILLSBOROUGH 33687,TAMPA,FL,28.0357,-82.394,HILLSBOROUGH 33688,TAMPA,FL,28.0613,-82.5036,HILLSBOROUGH 33689,TAMPA,FL,28.0792,-82.4924,HILLSBOROUGH 33690,TAMPA,FL,27.920556,-82.495556,HILLSBOROUGH 33694,TAMPA,FL,28.0696,-82.4949,HILLSBOROUGH 33697,TAMPA,FL,28.0879,-82.4593, 33701,SAINT PETERSBURG,FL,27.772318,-82.638609,PINELLAS 33702,SAINT PETERSBURG,FL,27.842712,-82.644795,PINELLAS 33703,SAINT PETERSBURG,FL,27.816957,-82.626393,PINELLAS 33704,SAINT PETERSBURG,FL,27.795435,-82.637289,PINELLAS 33705,SAINT PETERSBURG,FL,27.739113,-82.64349,PINELLAS 33706,SAINT PETERSBURG,FL,27.745606,-82.751646,PINELLAS 33707,SAINT PETERSBURG,FL,27.75487,-82.720791,PINELLAS 33708,SAINT PETERSBURG,FL,27.816529,-82.800779,PINELLAS 33709,SAINT PETERSBURG,FL,27.817427,-82.729845,PINELLAS 33710,SAINT PETERSBURG,FL,27.789798,-82.724285,PINELLAS 33711,SAINT PETERSBURG,FL,27.74649,-82.689708,PINELLAS 33712,SAINT PETERSBURG,FL,27.735336,-82.666298,PINELLAS 33713,SAINT PETERSBURG,FL,27.789015,-82.677939,PINELLAS 33714,SAINT PETERSBURG,FL,27.817621,-82.677612,PINELLAS 33715,SAINT PETERSBURG,FL,27.694792,-82.715646,PINELLAS 33716,SAINT PETERSBURG,FL,27.873764,-82.640039,PINELLAS 33729,SAINT PETERSBURG,FL,27.8831,-82.6672,PINELLAS 33730,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33731,SAINT PETERSBURG,FL,27.7717,-82.6387,PINELLAS 33732,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33733,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33734,SAINT PETERSBURG,FL,27.8031,-82.6469,PINELLAS 33736,SAINT PETERSBURG,FL,27.725,-82.741389,PINELLAS 33737,SAINT PETERSBURG,FL,27.7382,-82.7081,PINELLAS 33738,SAINT PETERSBURG,FL,27.797778,-82.7975,PINELLAS 33740,SAINT PETERSBURG,FL,27.7689,-82.7686,PINELLAS 33741,SAINT PETERSBURG,FL,27.743,-82.7516,PINELLAS 33742,SAINT PETERSBURG,FL,27.8423,-82.6478,PINELLAS 33743,SAINT PETERSBURG,FL,27.7838,-82.7293,PINELLAS 33747,SAINT PETERSBURG,FL,27.7893,-82.7268,PINELLAS 33755,CLEARWATER,FL,27.9799,-82.7806,PINELLAS 33756,CLEARWATER,FL,27.935556,-82.806389,PINELLAS 33757,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33758,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33759,CLEARWATER,FL,27.9777,-82.716,PINELLAS 33760,CLEARWATER,FL,27.9094,-82.7139,PINELLAS 33761,CLEARWATER,FL,28.0295,-82.7257,PINELLAS 33762,CLEARWATER,FL,27.8912,-82.6852,PINELLAS 33763,CLEARWATER,FL,28.0027,-82.7442,PINELLAS 33764,CLEARWATER,FL,27.9317,-82.7389,PINELLAS 33765,CLEARWATER,FL,27.9743,-82.745,PINELLAS 33766,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33769,CLEARWATER,FL,27.9887,-82.7548,PINELLAS 33770,LARGO,FL,27.9163,-82.7996,PINELLAS 33771,LARGO,FL,27.9061,-82.7597,PINELLAS 33773,LARGO,FL,27.8824,-82.7515,PINELLAS 33774,LARGO,FL,27.8821,-82.8274,PINELLAS 33778,LARGO,FL,27.8831,-82.7952,PINELLAS 33779,LARGO,FL,27.9062,-82.7599,PINELLAS 33784,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33801,LAKELAND,FL,28.038134,-81.939153,POLK 33802,LAKELAND,FL,28.0454,-81.9585,POLK 33803,LAKELAND,FL,28.014045,-81.952283,POLK 33804,LAKELAND,FL,28.0786,-81.9534,POLK 33805,LAKELAND,FL,28.072006,-81.96091,POLK 33806,LAKELAND,FL,28.029,-81.9576,POLK 33807,LAKELAND,FL,27.9734,-81.9607,POLK 33809,LAKELAND,FL,28.123356,-81.984219,POLK 33810,LAKELAND,FL,28.1129,-82.0112,POLK 33811,LAKELAND,FL,27.966284,-82.007236,POLK 33812,LAKELAND,FL,27.9694,-81.8943,POLK 33813,LAKELAND,FL,27.969534,-81.933187,POLK 33815,LAKELAND,FL,28.0416,-81.9876,POLK 33880,WINTER HAVEN,FL,27.999296,-81.751507,POLK 33881,WINTER HAVEN,FL,28.045219,-81.732485,POLK 33882,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33883,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33884,WINTER HAVEN,FL,27.994901,-81.678905,POLK 33885,WINTER HAVEN,FL,28.043333,-81.716944,POLK 33888,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33900,FORT MYERS,FL,26.640628,-81.8723084,LEE 33901,FORT MYERS,FL,26.620403,-81.8725,LEE 33902,FORT MYERS,FL,26.6439,-81.8727,LEE 33904,CAPE CORAL,FL,26.57746,-81.952243,LEE 33905,FORT MYERS,FL,26.676472,-81.785341,LEE 33906,FORT MYERS,FL,26.5932,-81.8578,LEE 33907,FORT MYERS,FL,26.568057,-81.873558,LEE 33908,FORT MYERS,FL,26.502518,-81.927589,LEE 33909,CAPE CORAL,FL,26.680276,-81.958909,LEE 33910,CAPE CORAL,FL,26.627778,-81.946667,LEE 33911,FORT MYERS,FL,26.6402,-81.8725,LEE 33912,FORT MYERS,FL,26.49722,-81.824554,LEE 33913,FORT MYERS,FL,26.522808,-81.706469,LEE 33914,CAPE CORAL,FL,26.56971,-81.990915,LEE 33915,CAPE CORAL,FL,26.5625,-81.949722,LEE 33916,FORT MYERS,FL,26.646595,-81.842946,LEE 33919,FORT MYERS,FL,26.554159,-81.900587,LEE 33936,LEHIGH ACRES,FL,26.615302,-81.61046,LEE 33948,PORT CHARLOTTE,FL,26.98268,-82.141173,CHARLOTTE 33949,PORT CHARLOTTE,FL,26.975833,-82.090833,CHARLOTTE 33952,PORT CHARLOTTE,FL,26.990475,-82.096372,CHARLOTTE 33953,PORT CHARLOTTE,FL,27.004008,-82.211743,CHARLOTTE 33954,PORT CHARLOTTE,FL,27.022815,-82.110782,CHARLOTTE 33965,FORT MYERS,FL,26.4737,-81.9397,LEE 33966,FORT MYERS,FL,26.583,-81.8339,LEE 33967,FORT MYERS,FL,26.4725,-81.8122,LEE 33970,LEHIGH ACRES,FL,26.625,-81.625,LEE 33971,LEHIGH ACRES,FL,26.602252,-81.665822,LEE 33972,LEHIGH ACRES,FL,26.6436,-81.6051,LEE 33973,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33974,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33976,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33980,PORT CHARLOTTE,FL,26.983969,-82.058886,CHARLOTTE 33981,PORT CHARLOTTE,FL,26.937925,-82.238774,CHARLOTTE 33990,CAPE CORAL,FL,26.630893,-81.945967,LEE 33991,CAPE CORAL,FL,26.628881,-82.006703,LEE 33993,CAPE CORAL,FL,26.629444,-82.071111,LEE 33994,FORT MYERS,FL,26.6734,-81.8175,LEE 34101,NAPLES,FL,26.1377,-81.7966,COLLIER 34102,NAPLES,FL,26.1427,-81.7974,COLLIER 34103,NAPLES,FL,26.1925,-81.8022,COLLIER 34104,NAPLES,FL,26.1515,-81.7407,COLLIER 34105,NAPLES,FL,26.1932,-81.7642,COLLIER 34106,NAPLES,FL,26.1377,-81.7966,COLLIER 34108,NAPLES,FL,26.2424,-81.8051,COLLIER 34109,NAPLES,FL,26.243,-81.7674,COLLIER 34110,NAPLES,FL,26.2922,-81.7812,COLLIER 34112,NAPLES,FL,26.1232,-81.7471,COLLIER 34113,NAPLES,FL,26.0791,-81.716,COLLIER 34114,NAPLES,FL,26.0374,-81.6448,COLLIER 34116,NAPLES,FL,26.1837,-81.7071,COLLIER 34117,NAPLES,FL,26.1335,-81.5508,COLLIER 34119,NAPLES,FL,26.2611,-81.7211,COLLIER 34120,NAPLES,FL,26.2909,-81.5996,COLLIER 34201,BRADENTON,FL,27.502778,-82.513889,MANATEE 34202,BRADENTON,FL,27.46521,-82.431487,MANATEE 34203,BRADENTON,FL,27.444871,-82.5404,MANATEE 34204,BRADENTON,FL,27.4462,-82.511,MANATEE 34205,BRADENTON,FL,27.480896,-82.584733,MANATEE 34206,BRADENTON,FL,27.4952,-82.5709,MANATEE 34207,BRADENTON,FL,27.439663,-82.580627,MANATEE 34208,BRADENTON,FL,27.485881,-82.536961,MANATEE 34209,BRADENTON,FL,27.487909,-82.627631,MANATEE 34210,BRADENTON,FL,27.454393,-82.635752,MANATEE 34211,BRADENTON,FL,27.4438,-82.3817,MANATEE 34212,BRADENTON,FL,27.5007,-82.4255,MANATEE 34230,SARASOTA,FL,27.3348,-82.5375,SARASOTA 34231,SARASOTA,FL,27.26757,-82.513793,SARASOTA 34232,SARASOTA,FL,27.320056,-82.475709,SARASOTA 34233,SARASOTA,FL,27.286614,-82.47698,SARASOTA 34234,SARASOTA,FL,27.365355,-82.535182,SARASOTA 34235,SARASOTA,FL,27.367162,-82.484759,SARASOTA 34236,SARASOTA,FL,27.331588,-82.548624,SARASOTA 34237,SARASOTA,FL,27.336915,-82.512778,SARASOTA 34238,SARASOTA,FL,27.243834,-82.482898,SARASOTA 34239,SARASOTA,FL,27.311137,-82.519545,SARASOTA 34240,SARASOTA,FL,27.32765,-82.385594,SARASOTA 34241,SARASOTA,FL,27.282179,-82.418112,SARASOTA 34242,SARASOTA,FL,27.266025,-82.546932,SARASOTA 34243,SARASOTA,FL,27.407235,-82.530299,MANATEE 34260,SARASOTA,FL,27.421667,-82.540278,MANATEE 34276,SARASOTA,FL,27.3361,-82.5308,SARASOTA 34277,SARASOTA,FL,27.3027,-82.5293,SARASOTA 34278,SARASOTA,FL,27.324722,-82.491389,SARASOTA 34280,BRADENTON,FL,27.4994,-82.6364,MANATEE 34281,BRADENTON,FL,27.4401,-82.5827,MANATEE 34282,BRADENTON,FL,27.4401,-82.5827,MANATEE 34286,NORTH PORT,FL,27.0781,-82.1735,SARASOTA 34287,NORTH PORT,FL,27.047839,-82.241616,SARASOTA 34288,NORTH PORT,FL,27.0516,-82.1208,SARASOTA 34289,NORTH PORT,FL,27.0854,-82.1537,SARASOTA 34290,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34291,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34470,OCALA,FL,29.1981,-82.0974,MARION 34471,OCALA,FL,29.1703,-82.1015,MARION 34472,OCALA,FL,29.1166,-82.0181,MARION 34473,OCALA,FL,29.0043,-82.1956,MARION 34474,OCALA,FL,29.1623,-82.1753,MARION 34475,OCALA,FL,29.2189,-82.1546,MARION 34476,OCALA,FL,29.0788,-82.2129,MARION 34477,OCALA,FL,29.1869,-82.1402,MARION 34478,OCALA,FL,29.1869,-82.1402,MARION 34479,OCALA,FL,29.2397,-82.1097,MARION 34480,OCALA,FL,29.1172,-82.0854,MARION 34481,OCALA,FL,29.1175,-82.3149,MARION 34482,OCALA,FL,29.2302,-82.2487,MARION 34483,OCALA,FL,29.1541,-82.1937,MARION 34601,BROOKSVILLE,FL,28.565805,-82.373674,HERNANDO 34602,BROOKSVILLE,FL,28.511167,-82.290545,HERNANDO 34603,BROOKSVILLE,FL,28.5562,-82.3862,HERNANDO 34604,BROOKSVILLE,FL,28.4766,-82.4528,HERNANDO 34605,BROOKSVILLE,FL,28.555,-82.388,HERNANDO 34606,SPRING HILL,FL,28.46551,-82.598084,HERNANDO 34607,SPRING HILL,FL,28.506546,-82.626671,HERNANDO 34608,SPRING HILL,FL,28.479696,-82.556206,HERNANDO 34609,SPRING HILL,FL,28.477611,-82.499896,HERNANDO 34610,SPRING HILL,FL,28.405084,-82.530148,PASCO 34611,SPRING HILL,FL,28.4859,-82.5832,HERNANDO 34613,BROOKSVILLE,FL,28.546558,-82.521286,HERNANDO 34614,BROOKSVILLE,FL,28.662244,-82.523613,HERNANDO 34741,KISSIMMEE,FL,28.305056,-81.424208,OSCEOLA 34742,KISSIMMEE,FL,28.2916,-81.4077,OSCEOLA 34743,KISSIMMEE,FL,28.329656,-81.356044,OSCEOLA 34744,KISSIMMEE,FL,28.307807,-81.368122,OSCEOLA 34745,KISSIMMEE,FL,28.3229,-81.3911,OSCEOLA 34746,KISSIMMEE,FL,28.26796,-81.467478,OSCEOLA 34747,KISSIMMEE,FL,28.325,-81.533333,OSCEOLA 34758,KISSIMMEE,FL,28.198436,-81.487014,OSCEOLA 34759,KISSIMMEE,FL,28.124786,-81.458984,POLK 34945,FORT PIERCE,FL,27.438233,-80.443963,SAINT LUCIE 34946,FORT PIERCE,FL,27.50077,-80.35996,SAINT LUCIE 34947,FORT PIERCE,FL,27.449281,-80.359185,SAINT LUCIE 34948,FORT PIERCE,FL,27.5147,-80.422,SAINT LUCIE 34949,FORT PIERCE,FL,27.389594,-80.261468,SAINT LUCIE 34950,FORT PIERCE,FL,27.448567,-80.3385,SAINT LUCIE 34951,FORT PIERCE,FL,27.539097,-80.405195,SAINT LUCIE 34952,PORT SAINT LUCIE,FL,27.288895,-80.297971,SAINT LUCIE 34953,PORT SAINT LUCIE,FL,27.262506,-80.379323,SAINT LUCIE 34954,FORT PIERCE,FL,27.4467,-80.3419,SAINT LUCIE 34979,FORT PIERCE,FL,27.4463,-80.3258,SAINT LUCIE 34981,FORT PIERCE,FL,27.404882,-80.362257,SAINT LUCIE 34982,FORT PIERCE,FL,27.390764,-80.324633,SAINT LUCIE 34983,PORT SAINT LUCIE,FL,27.309444,-80.345029,SAINT LUCIE 34984,PORT SAINT LUCIE,FL,27.265476,-80.338936,SAINT LUCIE 34985,PORT SAINT LUCIE,FL,27.293611,-80.350556,SAINT LUCIE 34986,PORT SAINT LUCIE,FL,27.32148,-80.403045,SAINT LUCIE 34987,PORT SAINT LUCIE,FL,27.260595,-80.477052,SAINT LUCIE 34988,PORT SAINT LUCIE,FL,27.323233,-80.51726,SAINT LUCIE 35201,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35202,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35203,BIRMINGHAM,AL,33.520994,-86.806626,JEFFERSON 35204,BIRMINGHAM,AL,33.51795,-86.837198,JEFFERSON 35205,BIRMINGHAM,AL,33.495144,-86.805937,JEFFERSON 35206,BIRMINGHAM,AL,33.567797,-86.719854,JEFFERSON 35207,BIRMINGHAM,AL,33.559383,-86.815344,JEFFERSON 35208,BIRMINGHAM,AL,33.497658,-86.879884,JEFFERSON 35209,BIRMINGHAM,AL,33.469624,-86.806738,JEFFERSON 35210,BIRMINGHAM,AL,33.532797,-86.685697,JEFFERSON 35211,BIRMINGHAM,AL,33.481565,-86.85904,JEFFERSON 35212,BIRMINGHAM,AL,33.540883,-86.749524,JEFFERSON 35213,BIRMINGHAM,AL,33.508195,-86.742108,JEFFERSON 35214,BIRMINGHAM,AL,33.555445,-86.886989,JEFFERSON 35215,BIRMINGHAM,AL,33.635447,-86.693197,JEFFERSON 35216,BIRMINGHAM,AL,33.41531,-86.790425,JEFFERSON 35217,BIRMINGHAM,AL,33.5887,-86.764995,JEFFERSON 35218,BIRMINGHAM,AL,33.505972,-86.892993,JEFFERSON 35219,BIRMINGHAM,AL,33.4735,-86.8259,JEFFERSON 35220,BIRMINGHAM,AL,33.6464,-86.6816,JEFFERSON 35221,BIRMINGHAM,AL,33.452316,-86.893493,JEFFERSON 35222,BIRMINGHAM,AL,33.521859,-86.766579,JEFFERSON 35223,BIRMINGHAM,AL,33.488726,-86.736584,JEFFERSON 35224,BIRMINGHAM,AL,33.519126,-86.934193,JEFFERSON 35225,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35226,BIRMINGHAM,AL,33.403675,-86.831257,JEFFERSON 35228,BIRMINGHAM,AL,33.462446,-86.914703,JEFFERSON 35229,BIRMINGHAM,AL,33.4633,-86.79,JEFFERSON 35230,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35231,BIRMINGHAM,AL,33.564,-86.8953,JEFFERSON 35232,BIRMINGHAM,AL,33.5375,-86.7564,JEFFERSON 35233,BIRMINGHAM,AL,33.506161,-86.800257,JEFFERSON 35234,BIRMINGHAM,AL,33.53775,-86.80685,JEFFERSON 35235,BIRMINGHAM,AL,33.618045,-86.661051,JEFFERSON 35236,BIRMINGHAM,AL,33.3733,-86.8104,JEFFERSON 35237,BIRMINGHAM,AL,33.5167,-86.8071,JEFFERSON 35238,BIRMINGHAM,AL,33.4144,-86.6753,JEFFERSON 35240,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35242,BIRMINGHAM,AL,33.401559,-86.705511,SHELBY 35243,BIRMINGHAM,AL,33.446053,-86.743676,JEFFERSON 35244,BIRMINGHAM,AL,33.371776,-86.776381,JEFFERSON 35245,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35246,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35249,BIRMINGHAM,AL,33.5055,-86.8015,JEFFERSON 35253,BIRMINGHAM,AL,33.4848,-86.7737,JEFFERSON 35254,BIRMINGHAM,AL,33.5129,-86.8537,JEFFERSON 35255,BIRMINGHAM,AL,33.4991,-86.7985,JEFFERSON 35259,BIRMINGHAM,AL,33.4828,-86.7918,JEFFERSON 35260,BIRMINGHAM,AL,33.4131,-86.8471,JEFFERSON 35261,BIRMINGHAM,AL,33.5847,-86.7038,JEFFERSON 35263,BIRMINGHAM,AL,33.5311,-86.7834,JEFFERSON 35266,BIRMINGHAM,AL,33.4444,-86.7908,JEFFERSON 35277,BIRMINGHAM,AL,33.4429,-86.739,JEFFERSON 35278,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35279,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35280,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35281,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35282,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35283,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35285,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35286,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35287,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35288,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35289,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35290,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35291,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35292,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35293,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35294,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35295,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35296,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35297,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35298,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35299,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35401,TUSCALOOSA,AL,33.196891,-87.562666,TUSCALOOSA 35402,TUSCALOOSA,AL,33.147,-87.6128,TUSCALOOSA 35403,TUSCALOOSA,AL,33.2029,-87.5621,TUSCALOOSA 35404,TUSCALOOSA,AL,33.210914,-87.488079,TUSCALOOSA 35405,TUSCALOOSA,AL,33.161704,-87.514435,TUSCALOOSA 35406,TUSCALOOSA,AL,33.272174,-87.536035,TUSCALOOSA 35407,TUSCALOOSA,AL,33.1681,-87.5216,TUSCALOOSA 35485,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35486,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35487,TUSCALOOSA,AL,33.2177,-87.5455,TUSCALOOSA 35801,HUNTSVILLE,AL,34.726866,-86.567318,MADISON 35802,HUNTSVILLE,AL,34.667922,-86.560347,MADISON 35803,HUNTSVILLE,AL,34.620506,-86.55096,MADISON 35804,HUNTSVILLE,AL,34.7277,-86.5926,MADISON 35805,HUNTSVILLE,AL,34.705943,-86.616493,MADISON 35806,HUNTSVILLE,AL,34.744765,-86.670411,MADISON 35807,HUNTSVILLE,AL,34.7197,-86.6148,MADISON 35808,HUNTSVILLE,AL,34.684525,-86.653821,MADISON 35809,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35810,HUNTSVILLE,AL,34.778378,-86.609063,MADISON 35811,HUNTSVILLE,AL,34.778949,-86.543786,MADISON 35812,HUNTSVILLE,AL,34.7953,-86.706,MADISON 35813,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35814,HUNTSVILLE,AL,34.7367,-86.6269,MADISON 35815,HUNTSVILLE,AL,34.7267,-86.5414,MADISON 35816,HUNTSVILLE,AL,34.738864,-86.624948,MADISON 35824,HUNTSVILLE,AL,34.658321,-86.729486,MADISON 35893,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35894,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35895,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35896,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35897,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35898,HUNTSVILLE,AL,34.6347,-86.6503,MADISON 35899,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35901,GADSDEN,AL,33.997248,-86.010279,ETOWAH 35902,GADSDEN,AL,34.0747,-85.9352,ETOWAH 35903,GADSDEN,AL,33.997057,-85.928724,ETOWAH 35904,GADSDEN,AL,34.021694,-86.049479,ETOWAH 35905,GADSDEN,AL,33.956787,-85.927586,ETOWAH 35906,GADSDEN,AL,33.9427,-86.0675,ETOWAH 35907,GADSDEN,AL,33.9045,-86.026,ETOWAH 36101,MONTGOMERY,AL,32.3743,-86.3118,MONTGOMERY 36102,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36103,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36104,MONTGOMERY,AL,32.373037,-86.308129,MONTGOMERY 36105,MONTGOMERY,AL,32.32573,-86.310449,MONTGOMERY 36106,MONTGOMERY,AL,32.354268,-86.267278,MONTGOMERY 36107,MONTGOMERY,AL,32.380405,-86.279885,MONTGOMERY 36108,MONTGOMERY,AL,32.341682,-86.352904,MONTGOMERY 36109,MONTGOMERY,AL,32.383443,-86.243394,MONTGOMERY 36110,MONTGOMERY,AL,32.421686,-86.274997,MONTGOMERY 36111,MONTGOMERY,AL,32.337363,-86.271543,MONTGOMERY 36112,MONTGOMERY,AL,32.378611,-86.346944,MONTGOMERY 36113,MONTGOMERY,AL,32.388133,-86.355848,MONTGOMERY 36114,MONTGOMERY,AL,32.406667,-86.248056,MONTGOMERY 36115,MONTGOMERY,AL,32.406814,-86.247327,MONTGOMERY 36116,MONTGOMERY,AL,32.312943,-86.242056,MONTGOMERY 36117,MONTGOMERY,AL,32.373568,-86.183299,MONTGOMERY 36118,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36119,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36120,MONTGOMERY,AL,32.3104,-86.2362,MONTGOMERY 36121,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36123,MONTGOMERY,AL,32.3494,-86.2212,MONTGOMERY 36124,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36125,MONTGOMERY,AL,32.3134,-86.3214,MONTGOMERY 36130,MONTGOMERY,AL,32.378,-86.2982,MONTGOMERY 36131,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36132,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36133,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36134,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36135,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36140,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36141,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36142,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36177,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36191,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36201,ANNISTON,AL,33.653896,-85.838152,CALHOUN 36202,ANNISTON,AL,33.6584,-85.8268,CALHOUN 36204,ANNISTON,AL,33.6853,-85.8231,CALHOUN 36205,ANNISTON,AL,33.710168,-85.801467,CALHOUN 36206,ANNISTON,AL,33.719124,-85.838904,CALHOUN 36207,ANNISTON,AL,33.6589,-85.761,CALHOUN 36210,ANNISTON,AL,33.6485,-85.9163,CALHOUN 36601,MOBILE,AL,30.6959,-88.0434,MOBILE 36602,MOBILE,AL,30.688828,-88.045308,MOBILE 36603,MOBILE,AL,30.692141,-88.05622,MOBILE 36604,MOBILE,AL,30.681963,-88.067804,MOBILE 36605,MOBILE,AL,30.634117,-88.084646,MOBILE 36606,MOBILE,AL,30.672899,-88.100909,MOBILE 36607,MOBILE,AL,30.697486,-88.1029,MOBILE 36608,MOBILE,AL,30.69636,-88.187784,MOBILE 36609,MOBILE,AL,30.660527,-88.161806,MOBILE 36610,MOBILE,AL,30.737846,-88.083761,MOBILE 36611,MOBILE,AL,30.766821,-88.084973,MOBILE 36612,MOBILE,AL,30.751844,-88.11311,MOBILE 36615,MOBILE,AL,30.631199,-88.068871,MOBILE 36616,MOBILE,AL,30.6941,-88.043,MOBILE 36617,MOBILE,AL,30.714522,-88.091796,MOBILE 36618,MOBILE,AL,30.732178,-88.175753,MOBILE 36619,MOBILE,AL,30.592803,-88.194645,MOBILE 36621,MOBILE,AL,30.6959,-88.0434,MOBILE 36622,MOBILE,AL,30.6959,-88.0434,MOBILE 36625,MOBILE,AL,30.6959,-88.0434,MOBILE 36628,MOBILE,AL,30.6959,-88.0434,MOBILE 36630,MOBILE,AL,30.6959,-88.0434,MOBILE 36633,MOBILE,AL,30.6959,-88.0434,MOBILE 36640,MOBILE,AL,30.6901,-88.0568,MOBILE 36641,MOBILE,AL,30.6901,-88.0568,MOBILE 36644,MOBILE,AL,30.6925,-88.0432,MOBILE 36652,MOBILE,AL,30.6959,-88.0434,MOBILE 36660,MOBILE,AL,30.675,-88.0867,MOBILE 36663,MOBILE,AL,30.8179,-88.1926,MOBILE 36670,MOBILE,AL,30.6954,-88.1059,MOBILE 36671,MOBILE,AL,30.7753,-88.0791,MOBILE 36675,MOBILE,AL,30.6941,-88.043,MOBILE 36685,MOBILE,AL,30.6941,-88.043,MOBILE 36688,MOBILE,AL,30.6966,-88.1741,MOBILE 36689,MOBILE,AL,30.6893,-88.1731,MOBILE 36690,MOBILE,AL,30.6959,-88.0434,MOBILE 36691,MOBILE,AL,30.6267,-88.1499,MOBILE 36693,MOBILE,AL,30.631076,-88.158843,MOBILE 36695,MOBILE,AL,30.647431,-88.229245,MOBILE 37127,MURFREESBORO,TN,35.7913,-86.357,RUTHERFORD 37128,MURFREESBORO,TN,35.8209,-86.4537,RUTHERFORD 37129,MURFREESBORO,TN,35.871019,-86.41809,RUTHERFORD 37130,MURFREESBORO,TN,35.847792,-86.364675,RUTHERFORD 37131,MURFREESBORO,TN,35.8911,-86.3822,RUTHERFORD 37132,MURFREESBORO,TN,35.8475,-86.3625,RUTHERFORD 37133,MURFREESBORO,TN,35.8369,-86.393,RUTHERFORD 37201,NASHVILLE,TN,36.167028,-86.778441,DAVIDSON 37202,NASHVILLE,TN,36.158,-86.7837,DAVIDSON 37203,NASHVILLE,TN,36.146802,-86.793922,DAVIDSON 37204,NASHVILLE,TN,36.114628,-86.781808,DAVIDSON 37205,NASHVILLE,TN,36.111432,-86.868954,DAVIDSON 37206,NASHVILLE,TN,36.179813,-86.741106,DAVIDSON 37207,NASHVILLE,TN,36.2195,-86.774008,DAVIDSON 37208,NASHVILLE,TN,36.176196,-86.807563,DAVIDSON 37209,NASHVILLE,TN,36.154592,-86.860212,DAVIDSON 37210,NASHVILLE,TN,36.137904,-86.741042,DAVIDSON 37211,NASHVILLE,TN,36.072486,-86.724038,DAVIDSON 37212,NASHVILLE,TN,36.133681,-86.800555,DAVIDSON 37213,NASHVILLE,TN,36.165512,-86.760556,DAVIDSON 37214,NASHVILLE,TN,36.163339,-86.660854,DAVIDSON 37215,NASHVILLE,TN,36.098584,-86.821917,DAVIDSON 37216,NASHVILLE,TN,36.212491,-86.725687,DAVIDSON 37217,NASHVILLE,TN,36.10585,-86.666585,DAVIDSON 37218,NASHVILLE,TN,36.207062,-86.845583,DAVIDSON 37219,NASHVILLE,TN,36.167768,-86.783676,DAVIDSON 37220,NASHVILLE,TN,36.064139,-86.769654,DAVIDSON 37221,NASHVILLE,TN,36.071512,-86.943674,DAVIDSON 37222,NASHVILLE,TN,36.0687,-86.7255,DAVIDSON 37224,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37227,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37228,NASHVILLE,TN,36.190145,-86.805264,DAVIDSON 37229,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37230,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37232,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37234,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37235,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37236,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37237,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37238,NASHVILLE,TN,36.1656,-86.7803,DAVIDSON 37240,NASHVILLE,TN,36.1491,-86.8035,DAVIDSON 37241,NASHVILLE,TN,36.1089,-86.672,DAVIDSON 37242,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37243,NASHVILLE,TN,36.1687,-86.7845,DAVIDSON 37244,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37245,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37246,NASHVILLE,TN,36.1585,-86.79,DAVIDSON 37247,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37248,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37249,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37250,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37401,CHATTANOOGA,TN,35.0455,-85.3081,HAMILTON 37402,CHATTANOOGA,TN,35.046288,-85.316126,HAMILTON 37403,CHATTANOOGA,TN,35.045045,-85.296516,HAMILTON 37404,CHATTANOOGA,TN,35.030634,-85.272229,HAMILTON 37405,CHATTANOOGA,TN,35.076801,-85.308224,HAMILTON 37406,CHATTANOOGA,TN,35.061446,-85.247839,HAMILTON 37407,CHATTANOOGA,TN,35.002361,-85.284913,HAMILTON 37408,CHATTANOOGA,TN,35.029236,-85.306809,HAMILTON 37409,CHATTANOOGA,TN,34.99809,-85.331016,HAMILTON 37410,CHATTANOOGA,TN,35.001787,-85.313762,HAMILTON 37411,CHATTANOOGA,TN,35.02706,-85.235583,HAMILTON 37412,CHATTANOOGA,TN,34.996726,-85.237957,HAMILTON 37414,CHATTANOOGA,TN,35.0123,-85.2267,HAMILTON 37415,CHATTANOOGA,TN,35.117668,-85.28633,HAMILTON 37416,CHATTANOOGA,TN,35.094246,-85.175656,HAMILTON 37419,CHATTANOOGA,TN,35.033092,-85.368698,HAMILTON 37421,CHATTANOOGA,TN,35.024986,-85.14594,HAMILTON 37422,CHATTANOOGA,TN,35.0537,-85.1893,HAMILTON 37424,CHATTANOOGA,TN,35.0455,-85.3097,HAMILTON 37450,CHATTANOOGA,TN,35.0489,-85.3116,HAMILTON 37501,MEMPHIS,TN,35.0337,-89.9343,SHELBY 37544,MEMPHIS,TN,35.1495,-90.049,SHELBY 37601,JOHNSON CITY,TN,36.333872,-82.340775,WASHINGTON 37602,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37604,JOHNSON CITY,TN,36.310744,-82.381042,WASHINGTON 37605,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37614,JOHNSON CITY,TN,36.3027,-82.3681,WASHINGTON 37615,JOHNSON CITY,TN,36.41006,-82.447128,WASHINGTON 37660,KINGSPORT,TN,36.552766,-82.554034,SULLIVAN 37662,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37663,KINGSPORT,TN,36.4693,-82.4948,SULLIVAN 37664,KINGSPORT,TN,36.520834,-82.516835,SULLIVAN 37665,KINGSPORT,TN,36.578305,-82.569906,SULLIVAN 37669,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37901,KNOXVILLE,TN,35.9609,-83.9189,KNOX 37902,KNOXVILLE,TN,35.962516,-83.920915,KNOX 37909,KNOXVILLE,TN,35.945978,-84.023501,KNOX 37912,KNOXVILLE,TN,36.005492,-83.977317,KNOX 37914,KNOXVILLE,TN,35.991755,-83.849624,KNOX 37915,KNOXVILLE,TN,35.972074,-83.901005,KNOX 37916,KNOXVILLE,TN,35.955584,-83.933576,KNOX 37917,KNOXVILLE,TN,35.99803,-83.915216,KNOX 37918,KNOXVILLE,TN,36.050054,-83.922558,KNOX 37919,KNOXVILLE,TN,35.924385,-84.001468,KNOX 37920,KNOXVILLE,TN,35.922976,-83.879793,KNOX 37921,KNOXVILLE,TN,35.976297,-83.982894,KNOX 37922,KNOXVILLE,TN,35.877697,-84.127332,KNOX 37923,KNOXVILLE,TN,35.933127,-84.076116,KNOX 37924,KNOXVILLE,TN,36.032044,-83.80207,KNOX 37927,KNOXVILLE,TN,35.9956,-83.9225,KNOX 37928,KNOXVILLE,TN,36.0357,-83.9309,KNOX 37929,KNOXVILLE,TN,35.9622,-83.9164,KNOX 37930,KNOXVILLE,TN,35.917,-84.0741,KNOX 37931,KNOXVILLE,TN,35.992363,-84.120072,KNOX 37932,KNOXVILLE,TN,35.923619,-84.169591,KNOX 37933,KNOXVILLE,TN,35.884444,-84.153611,KNOX 37934,KNOXVILLE,TN,35.876913,-84.176448,KNOX 37938,KNOXVILLE,TN,36.105473,-83.945968,KNOX 37939,KNOXVILLE,TN,35.9365,-83.9936,KNOX 37940,KNOXVILLE,TN,35.9081,-83.8654,KNOX 37950,KNOXVILLE,TN,35.945,-84.015,KNOX 37990,KNOXVILLE,TN,35.8655,-84.1267,KNOX 37995,KNOXVILLE,TN,35.945,-84.015,KNOX 37996,KNOXVILLE,TN,35.9529,-83.9293,KNOX 37997,KNOXVILLE,TN,35.945,-84.015,KNOX 37998,KNOXVILLE,TN,35.945,-84.015,KNOX 38101,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38103,MEMPHIS,TN,35.144001,-90.047995,SHELBY 38104,MEMPHIS,TN,35.133393,-90.004625,SHELBY 38105,MEMPHIS,TN,35.149748,-90.033042,SHELBY 38106,MEMPHIS,TN,35.102124,-90.032997,SHELBY 38107,MEMPHIS,TN,35.183136,-90.020077,SHELBY 38108,MEMPHIS,TN,35.178655,-89.968238,SHELBY 38109,MEMPHIS,TN,35.042538,-90.073238,SHELBY 38110,MEMPHIS,TN,35.0519,-89.941,SHELBY 38111,MEMPHIS,TN,35.107573,-89.945745,SHELBY 38112,MEMPHIS,TN,35.148277,-89.972895,SHELBY 38113,MEMPHIS,TN,35.111201,-90.079426,SHELBY 38114,MEMPHIS,TN,35.098094,-89.98254,SHELBY 38115,MEMPHIS,TN,35.054405,-89.86082,SHELBY 38116,MEMPHIS,TN,35.030298,-90.012314,SHELBY 38117,MEMPHIS,TN,35.112357,-89.903367,SHELBY 38118,MEMPHIS,TN,35.051421,-89.926538,SHELBY 38119,MEMPHIS,TN,35.082101,-89.850142,SHELBY 38120,MEMPHIS,TN,35.120654,-89.865119,SHELBY 38122,MEMPHIS,TN,35.157166,-89.926844,SHELBY 38124,MEMPHIS,TN,35.1144,-89.9059,SHELBY 38125,MEMPHIS,TN,35.031249,-89.812357,SHELBY 38126,MEMPHIS,TN,35.125518,-90.042444,SHELBY 38127,MEMPHIS,TN,35.250982,-90.029623,SHELBY 38128,MEMPHIS,TN,35.221273,-89.941314,SHELBY 38130,MEMPHIS,TN,35.0248,-89.9803,SHELBY 38131,MEMPHIS,TN,35.0655,-90.003699,SHELBY 38132,MEMPHIS,TN,35.071967,-89.988627,SHELBY 38133,MEMPHIS,TN,35.205362,-89.803564,SHELBY 38134,MEMPHIS,TN,35.188639,-89.86409,SHELBY 38135,MEMPHIS,TN,35.232301,-89.850878,SHELBY 38136,MEMPHIS,TN,35.1325,-90.0565,SHELBY 38137,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38141,MEMPHIS,TN,35.023091,-89.84916,SHELBY 38142,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38145,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38147,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38148,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38150,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38151,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38152,MEMPHIS,TN,35.1195,-89.9372,SHELBY 38157,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38159,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38161,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38163,MEMPHIS,TN,35.1506,-90.0155,SHELBY 38165,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38166,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38167,MEMPHIS,TN,35.2103,-90.023,SHELBY 38168,MEMPHIS,TN,35.2266,-89.904,SHELBY 38173,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38174,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38175,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38177,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38181,MEMPHIS,TN,35.0519,-89.941,SHELBY 38182,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38184,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38186,MEMPHIS,TN,35.0335,-90.0167,SHELBY 38187,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38188,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38190,MEMPHIS,TN,35.0549,-90.0599,SHELBY 38193,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38194,MEMPHIS,TN,35.0655,-89.9984,SHELBY 38197,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38301,JACKSON,TN,35.610222,-88.814011,MADISON 38302,JACKSON,TN,35.6144,-88.8138,MADISON 38303,JACKSON,TN,35.6144,-88.8138,MADISON 38305,JACKSON,TN,35.682875,-88.828127,MADISON 38308,JACKSON,TN,35.6144,-88.8138,MADISON 38314,JACKSON,TN,35.5727,-88.8213,MADISON 39201,JACKSON,MS,32.293502,-90.186655,HINDS 39202,JACKSON,MS,32.314883,-90.178194,HINDS 39203,JACKSON,MS,32.308145,-90.202064,HINDS 39204,JACKSON,MS,32.283162,-90.230579,HINDS 39205,JACKSON,MS,32.2986,-90.1847,HINDS 39206,JACKSON,MS,32.369956,-90.173787,HINDS 39207,JACKSON,MS,32.2986,-90.1847,HINDS 39209,JACKSON,MS,32.318422,-90.244626,HINDS 39210,JACKSON,MS,32.3242,-90.1765,HINDS 39211,JACKSON,MS,32.373924,-90.129297,HINDS 39212,JACKSON,MS,32.24347,-90.261201,HINDS 39213,JACKSON,MS,32.355288,-90.217099,HINDS 39215,JACKSON,MS,32.2986,-90.1847,HINDS 39216,JACKSON,MS,32.338574,-90.170814,HINDS 39217,JACKSON,MS,32.2976,-90.209,HINDS 39225,JACKSON,MS,32.2986,-90.1847,HINDS 39235,JACKSON,MS,32.2986,-90.1847,HINDS 39236,JACKSON,MS,32.3628,-90.1459,HINDS 39250,JACKSON,MS,32.2986,-90.1847,HINDS 39269,JACKSON,MS,32.30085,-90.188503,HINDS 39271,JACKSON,MS,32.2986,-90.1847,HINDS 39282,JACKSON,MS,32.2539,-90.2501,HINDS 39283,JACKSON,MS,32.3661,-90.2246,HINDS 39284,JACKSON,MS,32.2725,-90.216,HINDS 39286,JACKSON,MS,32.3509,-90.1765,HINDS 39289,JACKSON,MS,32.3852,-90.2747,HINDS 39296,JACKSON,MS,32.3342,-90.1755,HINDS 39298,JACKSON,MS,32.2999,-90.1843,RANKIN 39301,MERIDIAN,MS,32.357441,-88.655973,LAUDERDALE 39302,MERIDIAN,MS,32.3656,-88.7007,LAUDERDALE 39303,MERIDIAN,MS,32.41,-88.6994,LAUDERDALE 39304,MERIDIAN,MS,32.3656,-88.7227,LAUDERDALE 39305,MERIDIAN,MS,32.440129,-88.678322,LAUDERDALE 39307,MERIDIAN,MS,32.373591,-88.743598,LAUDERDALE 39309,MERIDIAN,MS,32.5519,-88.585,LAUDERDALE 39401,HATTIESBURG,MS,31.314553,-89.306471,FORREST 39402,HATTIESBURG,MS,31.309753,-89.37751,FORREST 39403,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39404,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39406,HATTIESBURG,MS,31.3282,-89.3303,FORREST 39407,HATTIESBURG,MS,31.3269,-89.2902,FORREST 39501,GULFPORT,MS,30.382556,-89.097618,HARRISON 39502,GULFPORT,MS,30.3672,-89.0927,HARRISON 39503,GULFPORT,MS,30.460105,-89.088552,HARRISON 39505,GULFPORT,MS,30.3672,-89.0927,HARRISON 39506,GULFPORT,MS,30.4756,-89.1444,HARRISON 39507,GULFPORT,MS,30.396248,-89.035347,HARRISON 39530,BILOXI,MS,30.403478,-88.897143,HARRISON 39531,BILOXI,MS,30.40334,-88.960499,HARRISON 39532,BILOXI,MS,30.452031,-88.918846,HARRISON 39533,BILOXI,MS,30.395,-88.8855,HARRISON 39534,BILOXI,MS,30.401389,-88.921389,HARRISON 39535,BILOXI,MS,30.4832,-89.1997,HARRISON 39701,COLUMBUS,MS,33.537699,-88.426194,LOWNDES 39702,COLUMBUS,MS,33.481175,-88.355387,LOWNDES 39703,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39704,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39705,COLUMBUS,MS,33.5694,-88.4305,LOWNDES 39710,COLUMBUS,MS,33.6298,-88.4468,LOWNDES 39901,ATLANTA,GA,33.8872,-84.2897,DEKALB 40201,LOUISVILLE,KY,38.2435,-85.7639,JEFFERSON 40202,LOUISVILLE,KY,38.250734,-85.747646,JEFFERSON 40203,LOUISVILLE,KY,38.245332,-85.762595,JEFFERSON 40204,LOUISVILLE,KY,38.236936,-85.724938,JEFFERSON 40205,LOUISVILLE,KY,38.22217,-85.688542,JEFFERSON 40206,LOUISVILLE,KY,38.256495,-85.697581,JEFFERSON 40207,LOUISVILLE,KY,38.257908,-85.649689,JEFFERSON 40208,LOUISVILLE,KY,38.219988,-85.764823,JEFFERSON 40209,LOUISVILLE,KY,38.190125,-85.751904,JEFFERSON 40210,LOUISVILLE,KY,38.230585,-85.790548,JEFFERSON 40211,LOUISVILLE,KY,38.241958,-85.81265,JEFFERSON 40212,LOUISVILLE,KY,38.265116,-85.804479,JEFFERSON 40213,LOUISVILLE,KY,38.183929,-85.710642,JEFFERSON 40214,LOUISVILLE,KY,38.159318,-85.778027,JEFFERSON 40215,LOUISVILLE,KY,38.191319,-85.784707,JEFFERSON 40216,LOUISVILLE,KY,38.186138,-85.831771,JEFFERSON 40217,LOUISVILLE,KY,38.21736,-85.740371,JEFFERSON 40218,LOUISVILLE,KY,38.191084,-85.654834,JEFFERSON 40219,LOUISVILLE,KY,38.141291,-85.680548,JEFFERSON 40220,LOUISVILLE,KY,38.21494,-85.624489,JEFFERSON 40221,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40222,LOUISVILLE,KY,38.263825,-85.611183,JEFFERSON 40223,LOUISVILLE,KY,38.253688,-85.561151,JEFFERSON 40224,LOUISVILLE,KY,38.2289,-85.575,JEFFERSON 40225,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40228,LOUISVILLE,KY,38.1392,-85.630967,JEFFERSON 40229,LOUISVILLE,KY,38.090655,-85.671889,JEFFERSON 40231,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40232,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40233,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40241,LOUISVILLE,KY,38.301509,-85.582421,JEFFERSON 40242,LOUISVILLE,KY,38.276858,-85.590224,JEFFERSON 40243,LOUISVILLE,KY,38.240115,-85.537381,JEFFERSON 40245,LOUISVILLE,KY,38.268273,-85.484461,JEFFERSON 40250,LOUISVILLE,KY,38.2164,-85.6236,JEFFERSON 40251,LOUISVILLE,KY,38.2497,-85.7974,JEFFERSON 40252,LOUISVILLE,KY,38.256667,-85.601667,JEFFERSON 40253,LOUISVILLE,KY,38.245278,-85.538889,JEFFERSON 40255,LOUISVILLE,KY,38.2237,-85.6868,JEFFERSON 40256,LOUISVILLE,KY,38.2,-85.822778,JEFFERSON 40257,LOUISVILLE,KY,38.252778,-85.655833,JEFFERSON 40258,LOUISVILLE,KY,38.142369,-85.862505,JEFFERSON 40259,LOUISVILLE,KY,38.141111,-85.687778,JEFFERSON 40261,LOUISVILLE,KY,38.1942,-85.6515,JEFFERSON 40266,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40268,LOUISVILLE,KY,38.1435,-85.8384,JEFFERSON 40269,LOUISVILLE,KY,38.1931,-85.5668,JEFFERSON 40270,LOUISVILLE,KY,38.111111,-85.870278,JEFFERSON 40272,LOUISVILLE,KY,38.097063,-85.858701,JEFFERSON 40280,LOUISVILLE,KY,38.2576,-85.7019,JEFFERSON 40281,LOUISVILLE,KY,38.144444,-85.866389,JEFFERSON 40282,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40283,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40285,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40287,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40289,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40290,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40291,LOUISVILLE,KY,38.15205,-85.594513,JEFFERSON 40292,LOUISVILLE,KY,38.2183,-85.7593,JEFFERSON 40293,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40294,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40295,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40296,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40297,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40298,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40299,LOUISVILLE,KY,38.188491,-85.568947,JEFFERSON 40502,LEXINGTON,KY,38.017394,-84.485423,FAYETTE 40503,LEXINGTON,KY,38.001002,-84.52821,FAYETTE 40504,LEXINGTON,KY,38.040628,-84.543325,FAYETTE 40505,LEXINGTON,KY,38.061201,-84.458338,FAYETTE 40506,LEXINGTON,KY,38.0244,-84.5047,FAYETTE 40507,LEXINGTON,KY,38.046385,-84.495289,FAYETTE 40508,LEXINGTON,KY,38.04754,-84.496435,FAYETTE 40509,LEXINGTON,KY,38.010166,-84.427419,FAYETTE 40510,LEXINGTON,KY,38.070211,-84.591046,FAYETTE 40511,LEXINGTON,KY,38.093233,-84.500671,FAYETTE 40512,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40513,LEXINGTON,KY,38.01388,-84.581522,FAYETTE 40514,LEXINGTON,KY,37.983291,-84.576667,FAYETTE 40515,LEXINGTON,KY,37.965102,-84.470751,FAYETTE 40516,LEXINGTON,KY,38.054355,-84.354802,FAYETTE 40517,LEXINGTON,KY,37.984864,-84.481588,FAYETTE 40522,LEXINGTON,KY,38.0196,-84.488,FAYETTE 40523,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40524,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40526,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40533,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40536,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40544,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40546,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40550,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40555,LEXINGTON,KY,38.0491,-84.5002,FAYETTE 40574,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40575,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40576,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40577,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40578,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40579,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40580,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40581,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40582,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40583,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40588,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40591,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40598,LEXINGTON,KY,38.0494,-84.5004,FAYETTE 40601,FRANKFORT,KY,38.192831,-84.88061,FRANKLIN 40602,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40603,FRANKFORT,KY,38.2017,-84.8324,FRANKLIN 40604,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40618,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40619,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40620,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40621,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40622,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 43085,COLUMBUS,OH,40.105155,-83.010069,FRANKLIN 43201,COLUMBUS,OH,39.995157,-83.004732,FRANKLIN 43202,COLUMBUS,OH,40.020084,-83.011842,FRANKLIN 43203,COLUMBUS,OH,39.971925,-82.969131,FRANKLIN 43204,COLUMBUS,OH,39.952333,-83.077999,FRANKLIN 43205,COLUMBUS,OH,39.956905,-82.964352,FRANKLIN 43206,COLUMBUS,OH,39.942639,-82.974845,FRANKLIN 43207,COLUMBUS,OH,39.904565,-82.970334,FRANKLIN 43209,COLUMBUS,OH,39.958999,-82.926595,FRANKLIN 43210,COLUMBUS,OH,40.002804,-83.016404,FRANKLIN 43211,COLUMBUS,OH,40.011792,-82.973196,FRANKLIN 43212,COLUMBUS,OH,39.987381,-83.045579,FRANKLIN 43213,COLUMBUS,OH,39.967146,-82.878275,FRANKLIN 43214,COLUMBUS,OH,40.053482,-83.01875,FRANKLIN 43215,COLUMBUS,OH,39.967106,-83.004383,FRANKLIN 43216,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43217,COLUMBUS,OH,39.806209,-82.947483,FRANKLIN 43218,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43219,COLUMBUS,OH,40.004394,-82.936459,FRANKLIN 43220,COLUMBUS,OH,40.049484,-83.066911,FRANKLIN 43221,COLUMBUS,OH,40.015431,-83.064592,FRANKLIN 43222,COLUMBUS,OH,39.957628,-83.031109,FRANKLIN 43223,COLUMBUS,OH,39.938753,-83.046344,FRANKLIN 43224,COLUMBUS,OH,40.042493,-82.968947,FRANKLIN 43226,COLUMBUS,OH,40.1035,-82.9866,FRANKLIN 43227,COLUMBUS,OH,39.944394,-82.890298,FRANKLIN 43228,COLUMBUS,OH,39.947876,-83.123858,FRANKLIN 43229,COLUMBUS,OH,40.083886,-82.972568,FRANKLIN 43230,COLUMBUS,OH,40.038458,-82.882429,FRANKLIN 43231,COLUMBUS,OH,40.080984,-82.938275,FRANKLIN 43232,COLUMBUS,OH,39.923024,-82.866432,FRANKLIN 43234,COLUMBUS,OH,40.1011,-83.0555,FRANKLIN 43235,COLUMBUS,OH,40.101271,-83.059287,FRANKLIN 43236,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43240,COLUMBUS,OH,40.1444,-82.9789,DELAWARE 43251,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43260,COLUMBUS,OH,39.9618,-83.0009,FRANKLIN 43265,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43266,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43268,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43270,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43271,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43272,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43279,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43287,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43291,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43299,COLUMBUS,OH,40.0395,-82.8695,FRANKLIN 43601,TOLEDO,OH,41.642,-83.5438,LUCAS 43603,TOLEDO,OH,41.6497,-83.5341,LUCAS 43604,TOLEDO,OH,41.661415,-83.524949,LUCAS 43605,TOLEDO,OH,41.640701,-83.512341,LUCAS 43606,TOLEDO,OH,41.671213,-83.605992,LUCAS 43607,TOLEDO,OH,41.650417,-83.597419,LUCAS 43608,TOLEDO,OH,41.677908,-83.534359,LUCAS 43609,TOLEDO,OH,41.629761,-83.577282,LUCAS 43610,TOLEDO,OH,41.676693,-83.557303,LUCAS 43611,TOLEDO,OH,41.704507,-83.489203,LUCAS 43612,TOLEDO,OH,41.704567,-83.565622,LUCAS 43613,TOLEDO,OH,41.703913,-83.603397,LUCAS 43614,TOLEDO,OH,41.60279,-83.62917,LUCAS 43615,TOLEDO,OH,41.649197,-83.670583,LUCAS 43617,TOLEDO,OH,41.666765,-83.716967,LUCAS 43620,TOLEDO,OH,41.66536,-83.553602,LUCAS 43623,TOLEDO,OH,41.707968,-83.643408,LUCAS 43635,TOLEDO,OH,41.6615,-83.6861,LUCAS 43652,TOLEDO,OH,41.642,-83.5438,LUCAS 43654,TOLEDO,OH,41.642,-83.5438,WOOD 43656,TOLEDO,OH,41.7043,-83.6509,LUCAS 43657,TOLEDO,OH,41.642,-83.5438,LUCAS 43659,TOLEDO,OH,41.6465,-83.536,LUCAS 43660,TOLEDO,OH,41.642,-83.5438,LUCAS 43661,TOLEDO,OH,41.642,-83.5438,LUCAS 43666,TOLEDO,OH,41.642,-83.5438,LUCAS 43667,TOLEDO,OH,41.642,-83.5438,LUCAS 43681,TOLEDO,OH,41.642,-83.5438,LUCAS 43682,TOLEDO,OH,41.642,-83.5438,LUCAS 43697,TOLEDO,OH,41.642,-83.5438,LUCAS 43699,TOLEDO,OH,41.642,-83.5438,LUCAS 44101,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44102,CLEVELAND,OH,41.473508,-81.739791,CUYAHOGA 44103,CLEVELAND,OH,41.515726,-81.640475,CUYAHOGA 44104,CLEVELAND,OH,41.480924,-81.624502,CUYAHOGA 44105,CLEVELAND,OH,41.450912,-81.619002,CUYAHOGA 44106,CLEVELAND,OH,41.508359,-81.60757,CUYAHOGA 44108,CLEVELAND,OH,41.53492,-81.608974,CUYAHOGA 44109,CLEVELAND,OH,41.445768,-81.703315,CUYAHOGA 44110,CLEVELAND,OH,41.563557,-81.573276,CUYAHOGA 44111,CLEVELAND,OH,41.457066,-81.78435,CUYAHOGA 44112,CLEVELAND,OH,41.535517,-81.576262,CUYAHOGA 44113,CLEVELAND,OH,41.481648,-81.701848,CUYAHOGA 44114,CLEVELAND,OH,41.506351,-81.67425,CUYAHOGA 44115,CLEVELAND,OH,41.494574,-81.667009,CUYAHOGA 44118,CLEVELAND,OH,41.501213,-81.553945,CUYAHOGA 44119,CLEVELAND,OH,41.588238,-81.546759,CUYAHOGA 44120,CLEVELAND,OH,41.471433,-81.583911,CUYAHOGA 44121,CLEVELAND,OH,41.526019,-81.533758,CUYAHOGA 44124,CLEVELAND,OH,41.514349,-81.46801,CUYAHOGA 44125,CLEVELAND,OH,41.415792,-81.605385,CUYAHOGA 44126,CLEVELAND,OH,41.4433,-81.856381,CUYAHOGA 44127,CLEVELAND,OH,41.470125,-81.648999,CUYAHOGA 44128,CLEVELAND,OH,41.441565,-81.548574,CUYAHOGA 44129,CLEVELAND,OH,41.396474,-81.734604,CUYAHOGA 44130,CLEVELAND,OH,41.377178,-81.774858,CUYAHOGA 44134,CLEVELAND,OH,41.390764,-81.705726,CUYAHOGA 44135,CLEVELAND,OH,41.434177,-81.804433,CUYAHOGA 44143,CLEVELAND,OH,41.552195,-81.484715,CUYAHOGA 44144,CLEVELAND,OH,41.434419,-81.735222,CUYAHOGA 44178,CLEVELAND,OH,41.4994,-81.6955,CUYAHOGA 44181,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44185,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44188,CLEVELAND,OH,41.4017,-81.8266,CUYAHOGA 44189,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44190,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44191,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44192,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44193,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44194,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44195,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44197,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44198,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44199,CLEVELAND,OH,41.5047,-81.6911,CUYAHOGA 44301,AKRON,OH,41.044852,-81.520048,SUMMIT 44302,AKRON,OH,41.091988,-81.542015,SUMMIT 44303,AKRON,OH,41.102508,-81.538609,SUMMIT 44304,AKRON,OH,41.080808,-81.508526,SUMMIT 44305,AKRON,OH,41.076029,-81.464409,SUMMIT 44306,AKRON,OH,41.04791,-81.491554,SUMMIT 44307,AKRON,OH,41.069465,-81.548786,SUMMIT 44308,AKRON,OH,41.079576,-81.519363,SUMMIT 44309,AKRON,OH,41.0655,-81.5204,SUMMIT 44310,AKRON,OH,41.107547,-81.500586,SUMMIT 44311,AKRON,OH,41.063784,-81.520005,SUMMIT 44312,AKRON,OH,41.033442,-81.438528,SUMMIT 44313,AKRON,OH,41.121995,-81.568487,SUMMIT 44314,AKRON,OH,41.040774,-81.559825,SUMMIT 44315,AKRON,OH,41.0655,-81.5204,SUMMIT 44316,AKRON,OH,41.0655,-81.5204,SUMMIT 44317,AKRON,OH,41.0655,-81.5204,SUMMIT 44319,AKRON,OH,40.97912,-81.53468,SUMMIT 44320,AKRON,OH,41.083496,-81.56744,SUMMIT 44321,AKRON,OH,41.103139,-81.648045,SUMMIT 44322,AKRON,OH,41.0655,-81.5204,SUMMIT 44325,AKRON,OH,41.0748,-81.5165,SUMMIT 44326,AKRON,OH,41.0655,-81.5204,SUMMIT 44328,AKRON,OH,41.0758,-81.5206,SUMMIT 44333,AKRON,OH,41.146734,-81.62385,SUMMIT 44372,AKRON,OH,41.112,-81.5746,SUMMIT 44393,AKRON,OH,41.0655,-81.5204,SUMMIT 44396,AKRON,OH,41.0813,-81.5191,SUMMIT 44398,AKRON,OH,41.0655,-81.5204,SUMMIT 44399,AKRON,OH,41.0655,-81.5204,SUMMIT 44481,WARREN,OH,41.172426,-80.871806,TRUMBULL 44482,WARREN,OH,41.1742,-80.8702,TRUMBULL 44483,WARREN,OH,41.263878,-80.816448,TRUMBULL 44484,WARREN,OH,41.231819,-80.764243,TRUMBULL 44485,WARREN,OH,41.240511,-80.844136,TRUMBULL 44486,WARREN,OH,41.3004,-80.8436,TRUMBULL 44488,WARREN,OH,41.2375,-80.8162,TRUMBULL 44501,YOUNGSTOWN,OH,41.0986,-80.6474,MAHONING 44502,YOUNGSTOWN,OH,41.077366,-80.640905,MAHONING 44503,YOUNGSTOWN,OH,41.102016,-80.650007,MAHONING 44504,YOUNGSTOWN,OH,41.123686,-80.653887,MAHONING 44505,YOUNGSTOWN,OH,41.125748,-80.627748,MAHONING 44506,YOUNGSTOWN,OH,41.096045,-80.625916,MAHONING 44507,YOUNGSTOWN,OH,41.073236,-80.655336,MAHONING 44509,YOUNGSTOWN,OH,41.10498,-80.694463,MAHONING 44510,YOUNGSTOWN,OH,41.119714,-80.667204,MAHONING 44511,YOUNGSTOWN,OH,41.070402,-80.693098,MAHONING 44512,YOUNGSTOWN,OH,41.031985,-80.666629,MAHONING 44513,YOUNGSTOWN,OH,41.024167,-80.663056,MAHONING 44514,YOUNGSTOWN,OH,41.023258,-80.610254,MAHONING 44515,YOUNGSTOWN,OH,41.093903,-80.743966,MAHONING 44555,YOUNGSTOWN,OH,41.1073,-80.6513,MAHONING 44701,CANTON,OH,40.7962,-81.3768,STARK 44702,CANTON,OH,40.80267,-81.373946,STARK 44703,CANTON,OH,40.809791,-81.381439,STARK 44704,CANTON,OH,40.799076,-81.353701,STARK 44705,CANTON,OH,40.825866,-81.339903,STARK 44706,CANTON,OH,40.767959,-81.411903,STARK 44707,CANTON,OH,40.776885,-81.360407,STARK 44708,CANTON,OH,40.81196,-81.424116,STARK 44709,CANTON,OH,40.837227,-81.385947,STARK 44710,CANTON,OH,40.791107,-81.416946,STARK 44711,CANTON,OH,40.827,-81.3853,STARK 44712,CANTON,OH,40.827,-81.3853, 44714,CANTON,OH,40.827174,-81.360963,STARK 44718,CANTON,OH,40.85479,-81.448514,STARK 44721,CANTON,OH,40.883446,-81.33279,STARK 44735,CANTON,OH,40.8436,-81.4363,STARK 44750,CANTON,OH,40.827,-81.3853,STARK 44767,CANTON,OH,40.827,-81.3853,STARK 44799,CANTON,OH,40.827,-81.3853,STARK 44901,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 44902,MANSFIELD,OH,40.755937,-82.512269,RICHLAND 44903,MANSFIELD,OH,40.762258,-82.52538,RICHLAND 44904,MANSFIELD,OH,40.682568,-82.590605,RICHLAND 44905,MANSFIELD,OH,40.777173,-82.474609,RICHLAND 44906,MANSFIELD,OH,40.762679,-82.559295,RICHLAND 44907,MANSFIELD,OH,40.734483,-82.519833,RICHLAND 44999,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 45011,HAMILTON,OH,39.405906,-84.522117,BUTLER 45012,HAMILTON,OH,39.3993,-84.5638,BUTLER 45013,HAMILTON,OH,39.40619,-84.606655,BUTLER 45015,HAMILTON,OH,39.367152,-84.551187,BUTLER 45025,HAMILTON,OH,39.3993,-84.5638,BUTLER 45026,HAMILTON,OH,39.3993,-84.5638,BUTLER 45201,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45202,CINCINNATI,OH,39.107225,-84.501956,HAMILTON 45203,CINCINNATI,OH,39.10754,-84.525684,HAMILTON 45204,CINCINNATI,OH,39.102498,-84.566794,HAMILTON 45205,CINCINNATI,OH,39.110439,-84.575672,HAMILTON 45206,CINCINNATI,OH,39.126916,-84.485258,HAMILTON 45207,CINCINNATI,OH,39.139747,-84.470621,HAMILTON 45208,CINCINNATI,OH,39.136082,-84.435474,HAMILTON 45209,CINCINNATI,OH,39.151578,-84.427833,HAMILTON 45211,CINCINNATI,OH,39.152401,-84.596714,HAMILTON 45212,CINCINNATI,OH,39.162505,-84.452765,HAMILTON 45213,CINCINNATI,OH,39.182905,-84.418701,HAMILTON 45214,CINCINNATI,OH,39.120642,-84.541442,HAMILTON 45215,CINCINNATI,OH,39.230063,-84.457168,HAMILTON 45216,CINCINNATI,OH,39.199183,-84.479232,HAMILTON 45217,CINCINNATI,OH,39.161715,-84.497424,HAMILTON 45218,CINCINNATI,OH,39.266573,-84.519608,HAMILTON 45219,CINCINNATI,OH,39.127027,-84.513127,HAMILTON 45220,CINCINNATI,OH,39.143183,-84.521738,HAMILTON 45221,CINCINNATI,OH,39.1325,-84.5159,HAMILTON 45222,CINCINNATI,OH,39.193611,-84.448611,HAMILTON 45223,CINCINNATI,OH,39.169619,-84.547807,HAMILTON 45224,CINCINNATI,OH,39.203079,-84.53883,HAMILTON 45225,CINCINNATI,OH,39.144654,-84.553267,HAMILTON 45226,CINCINNATI,OH,39.117356,-84.431194,HAMILTON 45227,CINCINNATI,OH,39.15431,-84.387211,HAMILTON 45228,CINCINNATI,OH,39.066448,-84.423539,HAMILTON 45229,CINCINNATI,OH,39.149016,-84.489184,HAMILTON 45230,CINCINNATI,OH,39.080861,-84.378727,HAMILTON 45231,CINCINNATI,OH,39.241827,-84.543702,HAMILTON 45232,CINCINNATI,OH,39.185926,-84.514101,HAMILTON 45233,CINCINNATI,OH,39.11928,-84.669411,HAMILTON 45234,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45235,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45236,CINCINNATI,OH,39.207302,-84.394746,HAMILTON 45237,CINCINNATI,OH,39.18797,-84.457997,HAMILTON 45238,CINCINNATI,OH,39.111667,-84.608805,HAMILTON 45239,CINCINNATI,OH,39.207995,-84.579225,HAMILTON 45240,CINCINNATI,OH,39.286424,-84.526299,HAMILTON 45241,CINCINNATI,OH,39.276745,-84.391161,HAMILTON 45242,CINCINNATI,OH,39.239881,-84.359919,HAMILTON 45243,CINCINNATI,OH,39.187847,-84.359349,HAMILTON 45244,CINCINNATI,OH,39.107091,-84.347765,HAMILTON 45245,CINCINNATI,OH,39.091293,-84.277383,CLERMONT 45246,CINCINNATI,OH,39.28751,-84.472353,HAMILTON 45247,CINCINNATI,OH,39.207604,-84.631608,HAMILTON 45248,CINCINNATI,OH,39.159056,-84.651535,HAMILTON 45249,CINCINNATI,OH,39.275946,-84.326673,HAMILTON 45250,CINCINNATI,OH,39.1145,-84.5359,HAMILTON 45251,CINCINNATI,OH,39.253005,-84.587987,HAMILTON 45252,CINCINNATI,OH,39.266803,-84.62832,HAMILTON 45253,CINCINNATI,OH,39.223056,-84.586944,HAMILTON 45254,CINCINNATI,OH,39.068889,-84.277222,HAMILTON 45255,CINCINNATI,OH,39.070642,-84.330774,HAMILTON 45258,CINCINNATI,OH,39.1419,-84.6254,HAMILTON 45262,CINCINNATI,OH,39.1212,-84.5448,HAMILTON 45263,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45264,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45267,CINCINNATI,OH,39.1396,-84.5038,HAMILTON 45268,CINCINNATI,OH,39.1329,-84.5093,HAMILTON 45269,CINCINNATI,OH,39.107,-84.4991,HAMILTON 45270,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45271,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45273,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45274,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45275,CINCINNATI,OH,39.0424,-84.6608,HAMILTON 45277,CINCINNATI,OH,38.9846,-84.4889,HAMILTON 45280,CINCINNATI,OH,39.1616,-84.4569,HAMILTON 45296,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45298,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 45299,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45401,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45402,DAYTON,OH,39.756305,-84.189508,MONTGOMERY 45403,DAYTON,OH,39.761728,-84.149802,MONTGOMERY 45404,DAYTON,OH,39.78619,-84.162157,MONTGOMERY 45405,DAYTON,OH,39.78993,-84.213546,MONTGOMERY 45406,DAYTON,OH,39.782148,-84.237297,MONTGOMERY 45408,DAYTON,OH,39.739526,-84.228963,MONTGOMERY 45409,DAYTON,OH,39.728496,-84.182495,MONTGOMERY 45410,DAYTON,OH,39.74743,-84.16001,MONTGOMERY 45412,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45413,DAYTON,OH,39.8225,-84.1914,MONTGOMERY 45414,DAYTON,OH,39.828528,-84.202444,MONTGOMERY 45415,DAYTON,OH,39.835488,-84.261328,MONTGOMERY 45416,DAYTON,OH,39.805541,-84.259824,MONTGOMERY 45417,DAYTON,OH,39.752812,-84.246961,MONTGOMERY 45418,DAYTON,OH,39.716251,-84.267696,MONTGOMERY 45419,DAYTON,OH,39.715486,-84.163656,MONTGOMERY 45420,DAYTON,OH,39.721286,-84.133892,MONTGOMERY 45422,DAYTON,OH,39.76,-84.1959,MONTGOMERY 45423,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45424,DAYTON,OH,39.845339,-84.123287,MONTGOMERY 45426,DAYTON,OH,39.810548,-84.298283,MONTGOMERY 45427,DAYTON,OH,39.754527,-84.281884,MONTGOMERY 45428,DAYTON,OH,39.7489,-84.2531,MONTGOMERY 45429,DAYTON,OH,39.686392,-84.156077,MONTGOMERY 45430,DAYTON,OH,39.709381,-84.083596,MONTGOMERY 45431,DAYTON,OH,39.765396,-84.099802,GREENE 45432,DAYTON,OH,39.740774,-84.094157,GREENE 45433,DAYTON,OH,39.813758,-84.059048,GREENE 45434,DAYTON,OH,39.716552,-84.040385,GREENE 45435,DAYTON,OH,39.7578,-84.1777,GREENE 45437,DAYTON,OH,39.7692,-84.1226,MONTGOMERY 45439,DAYTON,OH,39.689617,-84.21626,MONTGOMERY 45440,DAYTON,OH,39.674854,-84.113573,MONTGOMERY 45441,DAYTON,OH,39.6458,-84.1669,MONTGOMERY 45448,DAYTON,OH,39.6325,-84.1564,MONTGOMERY 45449,DAYTON,OH,39.662098,-84.237887,MONTGOMERY 45454,DAYTON,OH,39.6976,-84.2213,MONTGOMERY 45458,DAYTON,OH,39.615755,-84.162697,MONTGOMERY 45459,DAYTON,OH,39.645957,-84.166422,MONTGOMERY 45463,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45469,DAYTON,OH,39.7331,-84.1804,MONTGOMERY 45470,DAYTON,OH,39.6274,-84.2775,MONTGOMERY 45475,DAYTON,OH,39.6371,-84.2205,MONTGOMERY 45479,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45481,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45482,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45490,DAYTON,OH,39.8968,-84.2227,MONTGOMERY 45501,SPRINGFIELD,OH,39.924167,-83.808889,CLARK 45502,SPRINGFIELD,OH,39.930486,-83.841338,CLARK 45503,SPRINGFIELD,OH,39.9528,-83.78043,CLARK 45504,SPRINGFIELD,OH,39.940793,-83.834302,CLARK 45505,SPRINGFIELD,OH,39.910588,-83.785593,CLARK 45506,SPRINGFIELD,OH,39.910418,-83.827512,CLARK 45801,LIMA,OH,40.764066,-84.097296,ALLEN 45802,LIMA,OH,40.7425,-84.105278,ALLEN 45804,LIMA,OH,40.727476,-84.089023,ALLEN 45805,LIMA,OH,40.739911,-84.14591,ALLEN 45806,LIMA,OH,40.675926,-84.144049,AUGLAIZE 45807,LIMA,OH,40.791599,-84.163966,ALLEN 45999,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 46011,ANDERSON,IN,40.114577,-85.725305,MADISON 46012,ANDERSON,IN,40.130947,-85.653591,MADISON 46013,ANDERSON,IN,40.061865,-85.680073,MADISON 46014,ANDERSON,IN,40.0865,-85.6837,MADISON 46015,ANDERSON,IN,40.1059,-85.6784,MADISON 46016,ANDERSON,IN,40.098799,-85.684566,MADISON 46017,ANDERSON,IN,40.096431,-85.601493,MADISON 46018,ANDERSON,IN,40.1052,-85.6802,MADISON 46201,INDIANAPOLIS,IN,39.775006,-86.109348,MARION 46202,INDIANAPOLIS,IN,39.785063,-86.159502,MARION 46203,INDIANAPOLIS,IN,39.743025,-86.117859,MARION 46204,INDIANAPOLIS,IN,39.771986,-86.153491,MARION 46205,INDIANAPOLIS,IN,39.826761,-86.138582,MARION 46206,INDIANAPOLIS,IN,39.761,-86.161,MARION 46207,INDIANAPOLIS,IN,39.761,-86.161,MARION 46208,INDIANAPOLIS,IN,39.829905,-86.179444,MARION 46209,INDIANAPOLIS,IN,39.761,-86.161,MARION 46211,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46214,INDIANAPOLIS,IN,39.792678,-86.289952,MARION 46216,INDIANAPOLIS,IN,39.857731,-86.016688,MARION 46217,INDIANAPOLIS,IN,39.664141,-86.175394,MARION 46218,INDIANAPOLIS,IN,39.80817,-86.101425,MARION 46219,INDIANAPOLIS,IN,39.782092,-86.049533,MARION 46220,INDIANAPOLIS,IN,39.864685,-86.11815,MARION 46221,INDIANAPOLIS,IN,39.750885,-86.19243,MARION 46222,INDIANAPOLIS,IN,39.788971,-86.213574,MARION 46223,INDIANAPOLIS,IN,39.761,-86.161,MARION 46225,INDIANAPOLIS,IN,39.740599,-86.156944,MARION 46226,INDIANAPOLIS,IN,39.836969,-86.048945,MARION 46227,INDIANAPOLIS,IN,39.675,-86.129817,MARION 46228,INDIANAPOLIS,IN,39.8456,-86.2051,MARION 46229,INDIANAPOLIS,IN,39.792219,-85.983826,MARION 46230,INDIANAPOLIS,IN,39.8686,-86.1443,MARION 46231,INDIANAPOLIS,IN,39.740637,-86.318289,MARION 46234,INDIANAPOLIS,IN,39.788438,-86.324117,MARION 46235,INDIANAPOLIS,IN,39.836,-85.9829,MARION 46236,INDIANAPOLIS,IN,39.849588,-85.985059,MARION 46237,INDIANAPOLIS,IN,39.686777,-86.07891,MARION 46239,INDIANAPOLIS,IN,39.721826,-86.008209,MARION 46240,INDIANAPOLIS,IN,39.9057,-86.129548,MARION 46241,INDIANAPOLIS,IN,39.723814,-86.250856,MARION 46242,INDIANAPOLIS,IN,39.7279,-86.2559,MARION 46244,INDIANAPOLIS,IN,39.7735,-86.1583,MARION 46247,INDIANAPOLIS,IN,39.665,-86.127778,MARION 46249,INDIANAPOLIS,IN,39.8552,-86.0138,MARION 46250,INDIANAPOLIS,IN,39.9069,-86.069112,MARION 46251,INDIANAPOLIS,IN,39.7269,-86.268,MARION 46253,INDIANAPOLIS,IN,39.718056,-86.196389,MARION 46254,INDIANAPOLIS,IN,39.841379,-86.2638,MARION 46255,INDIANAPOLIS,IN,39.761,-86.161,MARION 46256,INDIANAPOLIS,IN,39.90114,-86.023877,MARION 46259,INDIANAPOLIS,IN,39.660901,-85.992603,MARION 46260,INDIANAPOLIS,IN,39.897488,-86.184809,MARION 46262,INDIANAPOLIS,IN,37.0625,-95.677068,MARION 46266,INDIANAPOLIS,IN,39.761,-86.161,MARION 46268,INDIANAPOLIS,IN,39.900296,-86.222104,MARION 46274,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46275,INDIANAPOLIS,IN,39.761,-86.161,MARION 46277,INDIANAPOLIS,IN,39.761,-86.161,MARION 46278,INDIANAPOLIS,IN,39.883858,-86.291455,MARION 46280,INDIANAPOLIS,IN,39.938417,-86.13894,HAMILTON 46282,INDIANAPOLIS,IN,39.761,-86.161,MARION 46283,INDIANAPOLIS,IN,39.761,-86.161,MARION 46285,INDIANAPOLIS,IN,39.761,-86.161,MARION 46290,INDIANAPOLIS,IN,39.93077,-86.167118,HAMILTON 46291,INDIANAPOLIS,IN,39.761,-86.161,MARION 46295,INDIANAPOLIS,IN,39.673,-86.1931,MARION 46296,INDIANAPOLIS,IN,39.7683,-86.1582,MARION 46298,INDIANAPOLIS,IN,39.8966,-86.2313,MARION 46401,GARY,IN,41.593333,-87.346389,LAKE 46402,GARY,IN,41.599711,-87.338548,LAKE 46403,GARY,IN,41.603612,-87.258984,LAKE 46404,GARY,IN,41.589937,-87.373153,LAKE 46406,GARY,IN,41.587806,-87.40621,LAKE 46407,GARY,IN,41.580429,-87.334958,LAKE 46408,GARY,IN,41.542178,-87.35883,LAKE 46409,GARY,IN,41.541247,-87.327126,LAKE 46601,SOUTH BEND,IN,41.672699,-86.253489,ST JOSEPH 46604,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46613,SOUTH BEND,IN,41.654636,-86.247865,ST JOSEPH 46614,SOUTH BEND,IN,41.625461,-86.243278,ST JOSEPH 46615,SOUTH BEND,IN,41.67413,-86.210375,ST JOSEPH 46616,SOUTH BEND,IN,41.691894,-86.264739,ST JOSEPH 46617,SOUTH BEND,IN,41.684966,-86.2351,ST JOSEPH 46619,SOUTH BEND,IN,41.667397,-86.315266,ST JOSEPH 46620,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46624,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46626,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46628,SOUTH BEND,IN,41.701525,-86.294929,ST JOSEPH 46634,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46635,SOUTH BEND,IN,41.716768,-86.207806,ST JOSEPH 46637,SOUTH BEND,IN,41.729936,-86.240694,ST JOSEPH 46660,SOUTH BEND,IN,41.6944,-86.2143,ST JOSEPH 46680,SOUTH BEND,IN,41.5762,-86.2407,ST JOSEPH 46699,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46801,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46802,FORT WAYNE,IN,41.070717,-85.15431,ALLEN 46803,FORT WAYNE,IN,41.069452,-85.107362,ALLEN 46804,FORT WAYNE,IN,41.050843,-85.256013,ALLEN 46805,FORT WAYNE,IN,41.097663,-85.118865,ALLEN 46806,FORT WAYNE,IN,41.047988,-85.113496,ALLEN 46807,FORT WAYNE,IN,41.049054,-85.146167,ALLEN 46808,FORT WAYNE,IN,41.093877,-85.162121,ALLEN 46809,FORT WAYNE,IN,41.02543,-85.1834,ALLEN 46814,FORT WAYNE,IN,41.0457,-85.3023,ALLEN 46815,FORT WAYNE,IN,41.105318,-85.062397,ALLEN 46816,FORT WAYNE,IN,41.016519,-85.097573,ALLEN 46818,FORT WAYNE,IN,41.146847,-85.206686,ALLEN 46819,FORT WAYNE,IN,41.005167,-85.152743,ALLEN 46825,FORT WAYNE,IN,41.146482,-85.123156,ALLEN 46835,FORT WAYNE,IN,41.137051,-85.068531,ALLEN 46845,FORT WAYNE,IN,41.195783,-85.119088,ALLEN 46850,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46851,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46852,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46853,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46854,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46855,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46856,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46857,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46858,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46859,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46860,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46861,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46862,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46863,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46864,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46865,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46866,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46867,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46868,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46869,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46885,FORT WAYNE,IN,41.1204,-85.0651,ALLEN 46895,FORT WAYNE,IN,41.1057,-85.1145,ALLEN 46896,FORT WAYNE,IN,41.0073,-85.0625,ALLEN 46897,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46898,FORT WAYNE,IN,41.1305,-85.1288,ALLEN 46899,FORT WAYNE,IN,41.0298,-85.1663,ALLEN 47130,JEFFERSONVILLE,IN,38.307767,-85.735885,CLARK 47131,JEFFERSONVILLE,IN,38.296667,-85.76,CLARK 47132,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47133,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47134,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47144,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47190,JEFFERSONVILLE,IN,38.28647,-85.732145,CLARK 47199,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47302,MUNCIE,IN,40.168414,-85.380689,DELAWARE 47303,MUNCIE,IN,40.217992,-85.378966,DELAWARE 47304,MUNCIE,IN,40.211134,-85.429115,DELAWARE 47305,MUNCIE,IN,40.193299,-85.386163,DELAWARE 47306,MUNCIE,IN,40.192739,-85.410153,DELAWARE 47307,MUNCIE,IN,40.1248,-85.3404,DELAWARE 47308,MUNCIE,IN,40.1314,-85.3764,DELAWARE 47401,BLOOMINGTON,IN,39.140057,-86.508262,MONROE 47402,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47403,BLOOMINGTON,IN,39.12632,-86.576867,MONROE 47404,BLOOMINGTON,IN,39.195026,-86.57572,MONROE 47405,BLOOMINGTON,IN,39.168,-86.5205,MONROE 47406,BLOOMINGTON,IN,39.1748,-86.5135,MONROE 47407,BLOOMINGTON,IN,39.2458,-86.4546,MONROE 47408,BLOOMINGTON,IN,39.183175,-86.505836,MONROE 47490,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47701,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47702,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47703,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47704,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47705,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47706,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47708,EVANSVILLE,IN,37.971818,-87.571973,VANDERBURGH 47710,EVANSVILLE,IN,38.008617,-87.574569,VANDERBURGH 47711,EVANSVILLE,IN,38.076377,-87.535236,VANDERBURGH 47712,EVANSVILLE,IN,37.998484,-87.634682,VANDERBURGH 47713,EVANSVILLE,IN,37.962326,-87.55768,VANDERBURGH 47714,EVANSVILLE,IN,37.959076,-87.529302,VANDERBURGH 47715,EVANSVILLE,IN,37.967815,-87.485526,VANDERBURGH 47716,EVANSVILLE,IN,37.9624,-87.4924,VANDERBURGH 47719,EVANSVILLE,IN,38.087,-87.5321,VANDERBURGH 47720,EVANSVILLE,IN,37.998832,-87.538793,VANDERBURGH 47721,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47722,EVANSVILLE,IN,37.9734,-87.5301,VANDERBURGH 47724,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47725,EVANSVILLE,IN,38.0934,-87.5243,VANDERBURGH 47727,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47728,EVANSVILLE,IN,37.9625,-87.5309,VANDERBURGH 47730,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47731,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47732,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47733,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47734,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47735,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47736,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47737,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47739,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47740,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47741,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47744,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47747,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47750,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47801,TERRE HAUTE,IN,39.4666,-87.4138,VIGO 47802,TERRE HAUTE,IN,39.40697,-87.402019,VIGO 47803,TERRE HAUTE,IN,39.465696,-87.353967,VIGO 47804,TERRE HAUTE,IN,39.493665,-87.394494,VIGO 47805,TERRE HAUTE,IN,39.535981,-87.341109,VIGO 47807,TERRE HAUTE,IN,39.470974,-87.400859,VIGO 47808,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47809,TERRE HAUTE,IN,39.4719,-87.4039,VIGO 47811,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47812,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47813,TERRE HAUTE,IN,39.4667,-87.4068, 47814,TERRE HAUTE,IN,39.4667,-87.4068, 47901,LAFAYETTE,IN,40.417743,-86.888358,TIPPECANOE 47902,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47903,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47904,LAFAYETTE,IN,40.427649,-86.873464,TIPPECANOE 47905,LAFAYETTE,IN,40.400054,-86.860236,TIPPECANOE 47909,LAFAYETTE,IN,40.3589,-86.8875,TIPPECANOE 47933,CRAWFORDSVILLE,IN,40.032524,-86.907424,MONTGOMERY 47934,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47935,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47936,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47937,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47938,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47939,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 48007,TROY,MI,42.5609,-83.1471,OAKLAND 48033,SOUTHFIELD,MI,42.46302,-83.288048,OAKLAND 48034,SOUTHFIELD,MI,42.477676,-83.288295,OAKLAND 48037,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48075,SOUTHFIELD,MI,42.463831,-83.225539,OAKLAND 48076,SOUTHFIELD,MI,42.499915,-83.22971,OAKLAND 48083,TROY,MI,42.559668,-83.113771,OAKLAND 48084,TROY,MI,42.562696,-83.179947,OAKLAND 48085,TROY,MI,42.5983,-83.1178,OAKLAND 48086,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48088,WARREN,MI,42.5159,-82.9824,MACOMB 48089,WARREN,MI,42.468494,-82.997385,MACOMB 48090,WARREN,MI,42.5009,-83.0461,MACOMB 48091,WARREN,MI,42.466463,-83.059263,MACOMB 48092,WARREN,MI,42.512459,-83.064278,MACOMB 48093,WARREN,MI,42.514943,-82.996764,MACOMB 48098,TROY,MI,42.598118,-83.145001,OAKLAND 48099,TROY,MI,42.5609,-83.1471,OAKLAND 48103,ANN ARBOR,MI,42.279379,-83.783998,WASHTENAW 48104,ANN ARBOR,MI,42.26939,-83.728156,WASHTENAW 48105,ANN ARBOR,MI,42.304247,-83.706756,WASHTENAW 48106,ANN ARBOR,MI,42.2723,-83.7747,WASHTENAW 48107,ANN ARBOR,MI,42.2796,-83.7461,WASHTENAW 48108,ANN ARBOR,MI,42.232782,-83.701481,WASHTENAW 48109,ANN ARBOR,MI,42.293,-83.715363,WASHTENAW 48113,ANN ARBOR,MI,42.3107,-83.6922,WASHTENAW 48120,DEARBORN,MI,42.305295,-83.160488,WAYNE 48121,DEARBORN,MI,42.3115,-83.1913,WAYNE 48123,DEARBORN,MI,42.3041,-83.2491,WAYNE 48124,DEARBORN,MI,42.294141,-83.253565,WAYNE 48126,DEARBORN,MI,42.334882,-83.180065,WAYNE 48128,DEARBORN,MI,42.319981,-83.270131,WAYNE 48201,DETROIT,MI,42.347429,-83.060398,WAYNE 48202,DETROIT,MI,42.377033,-83.079613,WAYNE 48204,DETROIT,MI,42.366098,-83.142151,WAYNE 48205,DETROIT,MI,42.431259,-82.981279,WAYNE 48206,DETROIT,MI,42.374893,-83.108695,WAYNE 48207,DETROIT,MI,42.352373,-83.027101,WAYNE 48208,DETROIT,MI,42.34947,-83.092711,WAYNE 48209,DETROIT,MI,42.309746,-83.115464,WAYNE 48210,DETROIT,MI,42.337603,-83.130281,WAYNE 48211,DETROIT,MI,42.380922,-83.040945,WAYNE 48213,DETROIT,MI,42.39816,-82.99253,WAYNE 48214,DETROIT,MI,42.366944,-82.993798,WAYNE 48215,DETROIT,MI,42.377272,-82.951319,WAYNE 48216,DETROIT,MI,42.327467,-83.082656,WAYNE 48217,DETROIT,MI,42.271914,-83.154545,WAYNE 48219,DETROIT,MI,42.426033,-83.249495,WAYNE 48221,DETROIT,MI,42.425998,-83.149976,WAYNE 48222,DETROIT,MI,42.2927,-83.1386,WAYNE 48223,DETROIT,MI,42.394453,-83.245403,WAYNE 48224,DETROIT,MI,42.409808,-82.944061,WAYNE 48226,DETROIT,MI,42.333346,-83.048432,WAYNE 48227,DETROIT,MI,42.388303,-83.193732,WAYNE 48228,DETROIT,MI,42.35473,-83.216753,WAYNE 48231,DETROIT,MI,42.3316,-83.05,WAYNE 48232,DETROIT,MI,42.2927,-83.1386,WAYNE 48233,DETROIT,MI,42.2927,-83.1386,WAYNE 48234,DETROIT,MI,42.4337,-83.043383,WAYNE 48235,DETROIT,MI,42.426098,-83.195124,WAYNE 48238,DETROIT,MI,42.395932,-83.141145,WAYNE 48242,DETROIT,MI,42.220718,-83.377081,WAYNE 48243,DETROIT,MI,42.3305,-83.0385,WAYNE 48244,DETROIT,MI,42.2927,-83.1386,WAYNE 48255,DETROIT,MI,42.2927,-83.1386,WAYNE 48260,DETROIT,MI,42.2927,-83.1386,WAYNE 48264,DETROIT,MI,42.2927,-83.1386,WAYNE 48265,DETROIT,MI,42.4388,-82.9293,WAYNE 48266,DETROIT,MI,42.2927,-83.1386,WAYNE 48267,DETROIT,MI,42.2927,-83.1386,WAYNE 48268,DETROIT,MI,42.2927,-83.1386,WAYNE 48269,DETROIT,MI,42.2927,-83.1386,WAYNE 48272,DETROIT,MI,42.2927,-83.1386,WAYNE 48275,DETROIT,MI,42.2927,-83.1386,WAYNE 48277,DETROIT,MI,42.2927,-83.1386,WAYNE 48278,DETROIT,MI,42.2927,-83.1386,WAYNE 48279,DETROIT,MI,42.2927,-83.1386,WAYNE 48288,DETROIT,MI,42.4221,-83.1034,WAYNE 48331,FARMINGTON,MI,42.510042,-83.405433,OAKLAND 48332,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48333,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48334,FARMINGTON,MI,42.506798,-83.35198,OAKLAND 48335,FARMINGTON,MI,42.463055,-83.400134,OAKLAND 48336,FARMINGTON,MI,42.460938,-83.345465,OAKLAND 48397,WARREN,MI,42.4916,-83.0402,MACOMB 48501,FLINT,MI,43.0233,-83.6856,GENESEE 48502,FLINT,MI,43.012321,-83.687768,GENESEE 48503,FLINT,MI,43.012836,-83.691429,GENESEE 48504,FLINT,MI,43.04247,-83.729908,GENESEE 48505,FLINT,MI,43.063369,-83.700093,GENESEE 48506,FLINT,MI,43.052596,-83.640192,GENESEE 48507,FLINT,MI,42.97303,-83.688999,GENESEE 48531,FLINT,MI,43.0467,-83.7444,GENESEE 48532,FLINT,MI,43.01021,-83.768576,GENESEE 48550,FLINT,MI,43.0233,-83.6856,GENESEE 48551,FLINT,MI,42.9645,-83.7185,GENESEE 48552,FLINT,MI,42.9645,-83.7185,GENESEE 48553,FLINT,MI,42.9645,-83.7185,GENESEE 48554,FLINT,MI,42.9724,-83.7952,GENESEE 48555,FLINT,MI,43.0097,-83.7093,GENESEE 48556,FLINT,MI,43.0233,-83.6856,GENESEE 48557,FLINT,MI,42.9645,-83.7185,GENESEE 48559,FLINT,MI,43.0233,-83.6856,GENESEE 48601,SAGINAW,MI,43.404692,-83.915626,SAGINAW 48602,SAGINAW,MI,43.424838,-83.974455,SAGINAW 48603,SAGINAW,MI,43.43251,-84.03028,SAGINAW 48604,SAGINAW,MI,43.473223,-83.951421,SAGINAW 48605,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48606,SAGINAW,MI,43.432,-83.9341,SAGINAW 48607,SAGINAW,MI,43.430141,-83.931872,SAGINAW 48608,SAGINAW,MI,43.4392,-84.0292,SAGINAW 48609,SAGINAW,MI,43.411,-84.0925,SAGINAW 48638,SAGINAW,MI,43.418551,-84.016734,SAGINAW 48640,MIDLAND,MI,43.637562,-84.26796,MIDLAND 48641,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48642,MIDLAND,MI,43.637488,-84.197941,MIDLAND 48663,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48667,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48670,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48674,MIDLAND,MI,43.6165,-84.1972,MIDLAND 48686,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48901,LANSING,MI,42.7323,-84.556,INGHAM 48906,LANSING,MI,42.763464,-84.558043,INGHAM 48908,LANSING,MI,42.7335,-84.6391,EATON 48909,LANSING,MI,42.6849,-84.4986,INGHAM 48910,LANSING,MI,42.700784,-84.549005,INGHAM 48911,LANSING,MI,42.679727,-84.577168,INGHAM 48912,LANSING,MI,42.737115,-84.524414,INGHAM 48913,LANSING,MI,42.6849,-84.4986,INGHAM 48915,LANSING,MI,42.739074,-84.570398,INGHAM 48916,LANSING,MI,42.6636,-84.5361,INGHAM 48917,LANSING,MI,42.737621,-84.62439,EATON 48918,LANSING,MI,42.6849,-84.4986,INGHAM 48919,LANSING,MI,42.6849,-84.4986,INGHAM 48921,LANSING,MI,42.6849,-84.4986,INGHAM 48922,LANSING,MI,42.6849,-84.4986,INGHAM 48924,LANSING,MI,42.6849,-84.4986,INGHAM 48929,LANSING,MI,42.6849,-84.4986,INGHAM 48930,LANSING,MI,42.6849,-84.4986,INGHAM 48933,LANSING,MI,42.733429,-84.557142,INGHAM 48937,LANSING,MI,42.7487,-84.5587,INGHAM 48950,LANSING,MI,42.6849,-84.4986,INGHAM 48951,LANSING,MI,42.7327,-84.5558,INGHAM 48956,LANSING,MI,42.6849,-84.4986,INGHAM 48980,LANSING,MI,42.6849,-84.4986,INGHAM 49001,KALAMAZOO,MI,42.273565,-85.545653,KALAMAZOO 49003,KALAMAZOO,MI,42.2661,-85.5663,KALAMAZOO 49004,KALAMAZOO,MI,42.326538,-85.541959,KALAMAZOO 49005,KALAMAZOO,MI,42.2919,-85.5798,KALAMAZOO 49006,KALAMAZOO,MI,42.2938,-85.6251,KALAMAZOO 49007,KALAMAZOO,MI,42.295688,-85.613722,KALAMAZOO 49008,KALAMAZOO,MI,42.262432,-85.609645,KALAMAZOO 49009,KALAMAZOO,MI,42.280947,-85.686333,KALAMAZOO 49014,BATTLE CREEK,MI,42.3053,-85.1389,CALHOUN 49015,BATTLE CREEK,MI,42.302806,-85.212825,CALHOUN 49016,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49017,BATTLE CREEK,MI,42.332218,-85.181106,CALHOUN 49018,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49019,KALAMAZOO,MI,42.2916,-85.5872,KALAMAZOO 49037,BATTLE CREEK,MI,42.3211522,-85.1797142,CALHOUN 49048,KALAMAZOO,MI,42.292,-85.5261,KALAMAZOO 49440,MUSKEGON,MI,43.232589,-86.249191,MUSKEGON 49441,MUSKEGON,MI,43.196184,-86.273819,MUSKEGON 49442,MUSKEGON,MI,43.232876,-86.188467,MUSKEGON 49443,MUSKEGON,MI,43.234167,-86.248333,MUSKEGON 49444,MUSKEGON,MI,43.195046,-86.216208,MUSKEGON 49445,MUSKEGON,MI,43.282873,-86.273297,MUSKEGON 49501,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49502,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49503,GRAND RAPIDS,MI,42.965879,-85.65273,KENT 49504,GRAND RAPIDS,MI,42.98392,-85.725543,KENT 49505,GRAND RAPIDS,MI,43.012025,-85.630931,KENT 49506,GRAND RAPIDS,MI,42.943978,-85.621317,KENT 49507,GRAND RAPIDS,MI,42.931788,-85.65417,KENT 49508,GRAND RAPIDS,MI,42.875653,-85.624179,KENT 49510,GRAND RAPIDS,MI,43.021,-85.6106,KENT 49512,GRAND RAPIDS,MI,42.89269,-85.578156,KENT 49514,GRAND RAPIDS,MI,42.9872,-85.7092,KENT 49515,GRAND RAPIDS,MI,43.0136,-85.6254,KENT 49516,GRAND RAPIDS,MI,42.9567,-85.6331,KENT 49518,GRAND RAPIDS,MI,42.8839,-85.6252,KENT 49523,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49525,GRAND RAPIDS,MI,43.0225,-85.6009,KENT 49528,GRAND RAPIDS,MI,42.9039,-85.6684,KENT 49530,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49534,GRAND RAPIDS,MI,43.008883,-85.774227,KENT 49544,GRAND RAPIDS,MI,43.0255,-85.7131,KENT 49546,GRAND RAPIDS,MI,42.928029,-85.548346,KENT 49548,GRAND RAPIDS,MI,42.867048,-85.660767,KENT 49550,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49555,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49560,GRAND RAPIDS,MI,42.8733,-85.6242,KENT 49588,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49599,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 50301,DES MOINES,IA,41.6005,-93.6088,POLK 50302,DES MOINES,IA,41.6005,-93.6088,POLK 50303,DES MOINES,IA,41.6005,-93.6088,POLK 50304,DES MOINES,IA,41.6005,-93.6088,POLK 50305,DES MOINES,IA,41.6005,-93.6088,POLK 50306,DES MOINES,IA,41.6005,-93.6088,POLK 50307,DES MOINES,IA,41.6005,-93.6088,POLK 50308,DES MOINES,IA,41.6005,-93.6088,POLK 50309,DES MOINES,IA,41.588743,-93.621175,POLK 50310,DES MOINES,IA,41.625475,-93.673611,POLK 50311,DES MOINES,IA,41.601562,-93.674371,POLK 50312,DES MOINES,IA,41.585453,-93.671908,POLK 50313,DES MOINES,IA,41.638085,-93.620305,POLK 50314,DES MOINES,IA,41.603003,-93.632993,POLK 50315,DES MOINES,IA,41.544394,-93.619226,POLK 50316,DES MOINES,IA,41.609228,-93.599966,POLK 50317,DES MOINES,IA,41.612499,-93.549446,POLK 50318,DES MOINES,IA,41.6005,-93.6088,POLK 50319,DES MOINES,IA,41.594,-93.6146,POLK 50320,DES MOINES,IA,41.548693,-93.582674,POLK 50321,DES MOINES,IA,41.547628,-93.661846,POLK 50327,DES MOINES,IA,41.583889,-93.519722,POLK 50328,DES MOINES,IA,41.6005,-93.6088,POLK 50329,DES MOINES,IA,41.6005,-93.6088,POLK 50330,DES MOINES,IA,41.6005,-93.6088,POLK 50331,DES MOINES,IA,41.6005,-93.6088,POLK 50332,DES MOINES,IA,41.6005,-93.6088,POLK 50333,DES MOINES,IA,41.6564,-93.623,POLK 50334,DES MOINES,IA,41.6005,-93.6088,POLK 50335,DES MOINES,IA,41.6005,-93.6088,POLK 50336,DES MOINES,IA,41.6005,-93.6088,POLK 50339,DES MOINES,IA,41.6005,-93.6088,POLK 50340,DES MOINES,IA,41.6005,-93.6088,POLK 50347,DES MOINES,IA,41.6005,-93.6088,POLK 50350,DES MOINES,IA,41.6005,-93.6088, 50359,DES MOINES,IA,41.6005,-93.6088,POLK 50360,DES MOINES,IA,41.6005,-93.6088,POLK 50361,DES MOINES,IA,41.6005,-93.6088,POLK 50362,DES MOINES,IA,41.6005,-93.6088,POLK 50363,DES MOINES,IA,41.6005,-93.6088,POLK 50364,DES MOINES,IA,41.6005,-93.6088,POLK 50367,DES MOINES,IA,41.6005,-93.6088,POLK 50368,DES MOINES,IA,41.6005,-93.6088,POLK 50369,DES MOINES,IA,41.6005,-93.6088,POLK 50380,DES MOINES,IA,41.6005,-93.6088,POLK 50381,DES MOINES,IA,41.6005,-93.6088,POLK 50391,DES MOINES,IA,41.6005,-93.6088,POLK 50392,DES MOINES,IA,41.5878,-93.6271,POLK 50393,DES MOINES,IA,41.6005,-93.6088,POLK 50394,DES MOINES,IA,41.6005,-93.6088,POLK 50395,DES MOINES,IA,41.6005,-93.6088,POLK 50396,DES MOINES,IA,41.6005,-93.6088,POLK 50397,DES MOINES,IA,41.6005,-93.6088,POLK 50936,DES MOINES,IA,41.6005,-93.6088,POLK 50940,DES MOINES,IA,41.6005,-93.6088,POLK 50947,DES MOINES,IA,41.6005,-93.6088,POLK 50950,DES MOINES,IA,41.6005,-93.6088,POLK 50980,DES MOINES,IA,41.6005,-93.6088,POLK 50981,DES MOINES,IA,41.6005,-93.6088,POLK 51101,SIOUX CITY,IA,42.497223,-96.40292,WOODBURY 51102,SIOUX CITY,IA,42.5,-96.4,WOODBURY 51103,SIOUX CITY,IA,42.506793,-96.42951,WOODBURY 51104,SIOUX CITY,IA,42.52536,-96.400453,WOODBURY 51105,SIOUX CITY,IA,42.503224,-96.382855,WOODBURY 51106,SIOUX CITY,IA,42.467057,-96.352755,WOODBURY 51108,SIOUX CITY,IA,42.546891,-96.361695,WOODBURY 51109,SIOUX CITY,IA,42.517287,-96.480304,WOODBURY 51111,SIOUX CITY,IA,42.408912,-96.371294,WOODBURY 52240,IOWA CITY,IA,41.654899,-91.511192,JOHNSON 52242,IOWA CITY,IA,41.6603,-91.541,JOHNSON 52243,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52244,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52245,IOWA CITY,IA,41.664916,-91.51507,JOHNSON 52246,IOWA CITY,IA,41.643813,-91.566882,JOHNSON 52401,CEDAR RAPIDS,IA,41.9743,-91.655382,LINN 52402,CEDAR RAPIDS,IA,42.018778,-91.661222,LINN 52403,CEDAR RAPIDS,IA,41.984312,-91.625919,LINN 52404,CEDAR RAPIDS,IA,41.952108,-91.685286,LINN 52405,CEDAR RAPIDS,IA,41.980422,-91.709816,LINN 52406,CEDAR RAPIDS,IA,41.9189,-91.6785,LINN 52407,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52408,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52409,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52410,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52411,CEDAR RAPIDS,IA,42.0421,-91.7178,LINN 52497,CEDAR RAPIDS,IA,42.0213,-91.66,LINN 52498,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52499,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52801,DAVENPORT,IA,41.5218,-90.5743,SCOTT 52802,DAVENPORT,IA,41.516358,-90.61409,SCOTT 52803,DAVENPORT,IA,41.538509,-90.561348,SCOTT 52804,DAVENPORT,IA,41.538603,-90.61147,SCOTT 52805,DAVENPORT,IA,41.521,-90.5865,SCOTT 52806,DAVENPORT,IA,41.573271,-90.603845,SCOTT 52807,DAVENPORT,IA,41.561822,-90.540262,SCOTT 52808,DAVENPORT,IA,41.521,-90.5865,SCOTT 52809,DAVENPORT,IA,41.521,-90.5865,SCOTT 53201,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53202,MILWAUKEE,WI,43.050601,-87.896792,MILWAUKEE 53203,MILWAUKEE,WI,43.040299,-87.915375,MILWAUKEE 53204,MILWAUKEE,WI,43.015778,-87.931685,MILWAUKEE 53205,MILWAUKEE,WI,43.052841,-87.935332,MILWAUKEE 53206,MILWAUKEE,WI,43.075324,-87.934714,MILWAUKEE 53207,MILWAUKEE,WI,42.981405,-87.894598,MILWAUKEE 53208,MILWAUKEE,WI,43.048775,-87.962454,MILWAUKEE 53209,MILWAUKEE,WI,43.118765,-87.947834,MILWAUKEE 53210,MILWAUKEE,WI,43.068545,-87.971466,MILWAUKEE 53211,MILWAUKEE,WI,43.080517,-87.885078,MILWAUKEE 53212,MILWAUKEE,WI,43.071195,-87.908415,MILWAUKEE 53213,MILWAUKEE,WI,43.051316,-88.000757,MILWAUKEE 53214,MILWAUKEE,WI,43.019113,-88.010757,MILWAUKEE 53215,MILWAUKEE,WI,43.000411,-87.94174,MILWAUKEE 53216,MILWAUKEE,WI,43.085868,-87.974218,MILWAUKEE 53217,MILWAUKEE,WI,43.14086,-87.907261,MILWAUKEE 53218,MILWAUKEE,WI,43.11218,-87.993161,MILWAUKEE 53219,MILWAUKEE,WI,42.995909,-87.994368,MILWAUKEE 53220,MILWAUKEE,WI,42.968186,-87.992209,MILWAUKEE 53221,MILWAUKEE,WI,42.954864,-87.944734,MILWAUKEE 53222,MILWAUKEE,WI,43.08283,-88.02687,MILWAUKEE 53223,MILWAUKEE,WI,43.162374,-87.989818,MILWAUKEE 53224,MILWAUKEE,WI,43.159415,-88.032744,MILWAUKEE 53225,MILWAUKEE,WI,43.115416,-88.03464,MILWAUKEE 53226,MILWAUKEE,WI,43.050006,-88.041386,MILWAUKEE 53227,MILWAUKEE,WI,42.994919,-88.036384,MILWAUKEE 53228,MILWAUKEE,WI,42.970251,-88.034638,MILWAUKEE 53233,MILWAUKEE,WI,43.040738,-87.93566,MILWAUKEE 53234,MILWAUKEE,WI,43.0031,-87.9679,MILWAUKEE 53235,MILWAUKEE,WI,42.9691,-87.8763,MILWAUKEE 53237,MILWAUKEE,WI,42.9443,-87.9093,MILWAUKEE 53244,MILWAUKEE,WI,43.0408,-87.9912,MILWAUKEE 53259,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53263,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53267,MILWAUKEE,WI,43.0439,-87.9097,MILWAUKEE 53268,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53274,MILWAUKEE,WI,43.0345,-87.9153,MILWAUKEE 53278,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53288,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53290,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53293,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53295,MILWAUKEE,WI,43.0186,-87.9772,MILWAUKEE 53401,RACINE,WI,42.726,-87.7825,RACINE 53402,RACINE,WI,42.772596,-87.795985,RACINE 53403,RACINE,WI,42.706015,-87.801375,RACINE 53404,RACINE,WI,42.743348,-87.8053,RACINE 53405,RACINE,WI,42.716112,-87.823329,RACINE 53406,RACINE,WI,42.724162,-87.855104,RACINE 53407,RACINE,WI,42.7261,-87.7827,RACINE 53408,RACINE,WI,42.717,-87.8395,RACINE 53490,RACINE,WI,42.6868,-87.8378, 53701,MADISON,WI,43.073,-89.3817,DANE 53702,MADISON,WI,43.0985,-89.317,DANE 53703,MADISON,WI,43.077535,-89.383068,DANE 53704,MADISON,WI,43.120526,-89.352295,DANE 53705,MADISON,WI,43.072999,-89.452823,DANE 53706,MADISON,WI,43.076929,-89.409362,DANE 53707,MADISON,WI,43.0985,-89.317,DANE 53708,MADISON,WI,43.0985,-89.317,DANE 53711,MADISON,WI,43.035644,-89.452558,DANE 53713,MADISON,WI,43.037381,-89.390008,DANE 53714,MADISON,WI,43.097735,-89.311758,DANE 53715,MADISON,WI,43.065287,-89.400045,DANE 53716,MADISON,WI,43.067413,-89.315921,DANE 53717,MADISON,WI,43.073587,-89.507984,DANE 53718,MADISON,WI,43.152143,-89.407339,DANE 53719,MADISON,WI,43.03207,-89.499324,DANE 53725,MADISON,WI,43.0569,-89.4038,DANE 53726,MADISON,WI,43.0701,-89.4215,DANE 53744,MADISON,WI,43.0157,-89.4166,DANE 53774,MADISON,WI,43.0733,-89.4012,DANE 53777,MADISON,WI,43.073,-89.4011,DANE 53778,MADISON,WI,43.0985,-89.317,DANE 53779,MADISON,WI,43.073,-89.4011,DANE 53782,MADISON,WI,43.073,-89.4011,DANE 53783,MADISON,WI,43.073,-89.4011,DANE 53784,MADISON,WI,43.073,-89.4011,DANE 53785,MADISON,WI,43.073,-89.4011,DANE 53786,MADISON,WI,43.073,-89.4011,DANE 53788,MADISON,WI,43.073,-89.4011,DANE 53789,MADISON,WI,43.073,-89.4011,DANE 53790,MADISON,WI,43.073,-89.4011,DANE 53791,MADISON,WI,43.0985,-89.317,DANE 53792,MADISON,WI,43.073,-89.4011,DANE 53793,MADISON,WI,43.073,-89.4011,DANE 53794,MADISON,WI,43.073,-89.4011,DANE 54301,GREEN BAY,WI,44.485313,-88.016868,BROWN 54302,GREEN BAY,WI,44.502508,-87.977136,BROWN 54303,GREEN BAY,WI,44.530146,-88.045262,BROWN 54304,GREEN BAY,WI,44.505525,-88.066799,BROWN 54305,GREEN BAY,WI,44.5126,-88.0103,BROWN 54306,GREEN BAY,WI,44.5191,-88.0197,BROWN 54307,GREEN BAY,WI,44.4817,-88.0206,BROWN 54308,GREEN BAY,WI,44.5192,-87.9718,BROWN 54311,GREEN BAY,WI,44.491405,-87.926685,BROWN 54313,GREEN BAY,WI,44.546289,-88.102054,BROWN 54324,GREEN BAY,WI,44.4794,-88.0181,BROWN 54344,GREEN BAY,WI,44.4207,-88.1102,BROWN 54911,APPLETON,WI,44.277325,-88.397649,OUTAGAMIE 54912,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 54913,APPLETON,WI,44.315,-88.4057,OUTAGAMIE 54914,APPLETON,WI,44.270992,-88.432608,OUTAGAMIE 54915,APPLETON,WI,44.26351,-88.399902,OUTAGAMIE 54919,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 55101,SAINT PAUL,MN,44.969963,-93.083167,RAMSEY 55102,SAINT PAUL,MN,44.937228,-93.120852,RAMSEY 55103,SAINT PAUL,MN,44.960798,-93.121594,RAMSEY 55104,SAINT PAUL,MN,44.953179,-93.15797,RAMSEY 55105,SAINT PAUL,MN,44.934723,-93.165148,RAMSEY 55106,SAINT PAUL,MN,44.968384,-93.048817,RAMSEY 55107,SAINT PAUL,MN,44.927235,-93.086157,RAMSEY 55108,SAINT PAUL,MN,44.982217,-93.17458,RAMSEY 55109,SAINT PAUL,MN,45.011859,-93.017072,RAMSEY 55110,SAINT PAUL,MN,45.074527,-93.011299,RAMSEY 55111,SAINT PAUL,MN,44.901548,-93.202579,HENNEPIN 55112,SAINT PAUL,MN,45.074129,-93.199691,RAMSEY 55113,SAINT PAUL,MN,45.012876,-93.149245,RAMSEY 55114,SAINT PAUL,MN,44.967968,-93.198067,RAMSEY 55115,SAINT PAUL,MN,45.061132,-92.954847,WASHINGTON 55116,SAINT PAUL,MN,44.914007,-93.172747,RAMSEY 55117,SAINT PAUL,MN,44.992165,-93.103659,RAMSEY 55118,SAINT PAUL,MN,44.902691,-93.096435,DAKOTA 55119,SAINT PAUL,MN,44.955384,-93.008019,RAMSEY 55120,SAINT PAUL,MN,44.873825,-93.12902,DAKOTA 55121,SAINT PAUL,MN,44.843039,-93.16753,DAKOTA 55122,SAINT PAUL,MN,44.803593,-93.196937,DAKOTA 55123,SAINT PAUL,MN,44.809764,-93.14135,DAKOTA 55124,SAINT PAUL,MN,44.746147,-93.20776,DAKOTA 55125,SAINT PAUL,MN,44.916195,-92.951413,WASHINGTON 55126,SAINT PAUL,MN,45.083334,-93.134367,RAMSEY 55127,SAINT PAUL,MN,45.070839,-93.07875,RAMSEY 55128,SAINT PAUL,MN,44.984648,-92.968128,WASHINGTON 55129,SAINT PAUL,MN,44.9114,-92.901,WASHINGTON 55130,SAINT PAUL,MN,44.9718,-93.0826,RAMSEY 55133,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55144,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55145,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55146,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55155,SAINT PAUL,MN,44.954,-93.1023,RAMSEY 55161,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55164,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55165,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55166,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55168,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55169,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55170,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55171,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55172,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55175,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55177,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55187,SAINT PAUL,MN,44.9445,-93.0932,RAMSEY 55188,SAINT PAUL,MN,44.9453,-92.9105,RAMSEY 55191,SAINT PAUL,MN,45.076,-93.1901,RAMSEY 55348,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55357,LORETTO,MN,45.106099,-93.669165,HENNEPIN 55359,MAPLE PLAIN,MN,44.978686,-93.700214,HENNEPIN 55362,MONTICELLO,MN,45.295557,-93.802252,WRIGHT 55365,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55393,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55394,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55397,YOUNG AMERICA,MN,44.792905,-93.918049,CARVER 55399,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55401,MINNEAPOLIS,MN,44.983473,-93.268251,HENNEPIN 55402,MINNEAPOLIS,MN,44.976184,-93.275871,HENNEPIN 55403,MINNEAPOLIS,MN,44.967345,-93.282841,HENNEPIN 55404,MINNEAPOLIS,MN,44.960891,-93.26416,HENNEPIN 55405,MINNEAPOLIS,MN,44.968734,-93.299096,HENNEPIN 55406,MINNEAPOLIS,MN,44.938359,-93.221357,HENNEPIN 55407,MINNEAPOLIS,MN,44.937787,-93.2545,HENNEPIN 55408,MINNEAPOLIS,MN,44.946575,-93.286173,HENNEPIN 55409,MINNEAPOLIS,MN,44.926378,-93.28182,HENNEPIN 55410,MINNEAPOLIS,MN,44.915366,-93.318187,HENNEPIN 55411,MINNEAPOLIS,MN,44.999601,-93.300548,HENNEPIN 55412,MINNEAPOLIS,MN,45.024236,-93.302033,HENNEPIN 55413,MINNEAPOLIS,MN,44.997994,-93.255194,HENNEPIN 55414,MINNEAPOLIS,MN,44.977908,-93.219904,HENNEPIN 55415,MINNEAPOLIS,MN,44.971455,-93.264403,HENNEPIN 55416,MINNEAPOLIS,MN,44.946899,-93.340344,HENNEPIN 55417,MINNEAPOLIS,MN,44.905371,-93.23606,HENNEPIN 55418,MINNEAPOLIS,MN,45.01923,-93.240108,HENNEPIN 55419,MINNEAPOLIS,MN,44.902567,-93.288618,HENNEPIN 55420,MINNEAPOLIS,MN,44.837284,-93.276034,HENNEPIN 55421,MINNEAPOLIS,MN,45.049582,-93.246095,ANOKA 55422,MINNEAPOLIS,MN,45.016722,-93.339769,HENNEPIN 55423,MINNEAPOLIS,MN,44.875731,-93.281351,HENNEPIN 55424,MINNEAPOLIS,MN,44.904385,-93.335005,HENNEPIN 55425,MINNEAPOLIS,MN,44.843198,-93.249413,HENNEPIN 55426,MINNEAPOLIS,MN,44.954448,-93.379627,HENNEPIN 55427,MINNEAPOLIS,MN,45.010374,-93.381585,HENNEPIN 55428,MINNEAPOLIS,MN,45.060299,-93.376908,HENNEPIN 55429,MINNEAPOLIS,MN,45.067667,-93.340203,HENNEPIN 55430,MINNEAPOLIS,MN,45.061106,-93.299068,HENNEPIN 55431,MINNEAPOLIS,MN,44.827776,-93.312322,HENNEPIN 55432,MINNEAPOLIS,MN,45.095695,-93.253905,ANOKA 55433,MINNEAPOLIS,MN,45.168192,-93.326253,ANOKA 55434,MINNEAPOLIS,MN,45.168083,-93.242557,ANOKA 55435,MINNEAPOLIS,MN,44.877143,-93.371452,HENNEPIN 55437,MINNEAPOLIS,MN,44.823279,-93.343499,HENNEPIN 55438,MINNEAPOLIS,MN,44.823924,-93.380141,HENNEPIN 55439,MINNEAPOLIS,MN,44.873716,-93.332169,HENNEPIN 55440,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55441,MINNEAPOLIS,MN,45.009836,-93.422782,HENNEPIN 55442,MINNEAPOLIS,MN,45.045151,-93.426316,HENNEPIN 55443,MINNEAPOLIS,MN,45.105586,-93.340184,HENNEPIN 55444,MINNEAPOLIS,MN,45.100172,-93.302455,HENNEPIN 55445,MINNEAPOLIS,MN,45.103956,-93.373495,HENNEPIN 55446,MINNEAPOLIS,MN,45.032446,-93.472323,HENNEPIN 55447,MINNEAPOLIS,MN,44.998593,-93.494695,HENNEPIN 55448,MINNEAPOLIS,MN,45.180626,-93.289699,ANOKA 55449,MINNEAPOLIS,MN,45.1647,-93.2111,ANOKA 55450,MINNEAPOLIS,MN,44.865883,-93.247414,HENNEPIN 55454,MINNEAPOLIS,MN,44.968161,-93.242898,HENNEPIN 55455,MINNEAPOLIS,MN,44.981562,-93.23928,HENNEPIN 55458,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55459,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55460,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55467,MINNEAPOLIS,MN,44.98,-93.2638,HENNEPIN 55468,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55470,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55472,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55473,MINNEAPOLIS,MN,44.7827,-93.9133,HENNEPIN 55474,MINNEAPOLIS,MN,44.9767,-93.2682,HENNEPIN 55478,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55479,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55480,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55483,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55484,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55485,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55486,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55487,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55488,MINNEAPOLIS,MN,44.9758,-93.262,HENNEPIN 55550,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55551,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55552,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55553,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55555,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55556,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55557,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55558,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55559,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55560,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55561,MONTICELLO,MN,45.2797,-93.8097,CARVER 55562,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55563,MONTICELLO,MN,45.2797,-93.8097,CARVER 55564,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55565,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55566,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55567,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55568,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55570,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55571,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55573,YOUNG AMERICA,MN,44.8148,-93.921,HENNEPIN 55574,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55576,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55578,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55579,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55580,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55581,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55582,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55584,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55585,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55586,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55587,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55588,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55589,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55590,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55591,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55592,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55593,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55594,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55595,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55596,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55597,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55598,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55599,LORETTO,MN,45.05604,-93.664534,HENNEPIN 55801,DULUTH,MN,47.094431,-91.846731,SAINT LOUIS 55802,DULUTH,MN,46.768475,-92.086497,SAINT LOUIS 55803,DULUTH,MN,46.874913,-92.094057,SAINT LOUIS 55804,DULUTH,MN,46.855131,-92.007433,SAINT LOUIS 55805,DULUTH,MN,46.798733,-92.094553,SAINT LOUIS 55806,DULUTH,MN,46.771457,-92.127871,SAINT LOUIS 55807,DULUTH,MN,46.740783,-92.169821,SAINT LOUIS 55808,DULUTH,MN,46.681002,-92.22261,SAINT LOUIS 55810,DULUTH,MN,46.74459,-92.232332,SAINT LOUIS 55811,DULUTH,MN,46.81341,-92.168225,SAINT LOUIS 55812,DULUTH,MN,46.810598,-92.076693,SAINT LOUIS 55814,DULUTH,MN,46.8367,-92.1878,SAINT LOUIS 55815,DULUTH,MN,46.8197,-92.2595,SAINT LOUIS 55816,DULUTH,MN,46.7596,-92.132,SAINT LOUIS 55901,ROCHESTER,MN,44.049572,-92.48962,OLMSTED 55902,ROCHESTER,MN,44.003217,-92.483519,OLMSTED 55903,ROCHESTER,MN,44.0216,-92.4627,OLMSTED 55904,ROCHESTER,MN,44.010545,-92.397276,OLMSTED 55905,ROCHESTER,MN,44.0213,-92.4671,OLMSTED 55906,ROCHESTER,MN,44.021001,-92.446874,OLMSTED 56301,SAINT CLOUD,MN,45.540972,-94.181857,STEARNS 56302,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56303,SAINT CLOUD,MN,45.571298,-94.203634,STEARNS 56304,SAINT CLOUD,MN,45.552113,-94.128447,BENTON 56372,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56393,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56395,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56396,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56397,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56398,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56399,SAINT CLOUD,MN,45.560556,-94.162222,STEARNS 56901,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56915,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 56920,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56933,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56944,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56972,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 57101,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57103,SIOUX FALLS,SD,43.537386,-96.686415,MINNEHAHA 57104,SIOUX FALLS,SD,43.551355,-96.737535,MINNEHAHA 57105,SIOUX FALLS,SD,43.523972,-96.734141,MINNEHAHA 57106,SIOUX FALLS,SD,43.517912,-96.792376,MINNEHAHA 57107,SIOUX FALLS,SD,43.556628,-96.802811,MINNEHAHA 57108,SIOUX FALLS,SD,43.488,-96.7343,LINCOLN 57109,SIOUX FALLS,SD,43.5149,-96.7508,MINNEHAHA 57110,SIOUX FALLS,SD,43.5409,-96.6523,MINNEHAHA 57117,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57118,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57186,SIOUX FALLS,SD,43.5503,-96.7002,MINNEHAHA 57188,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57189,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57192,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57193,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57194,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57195,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57196,SIOUX FALLS,SD,43.5444,-96.7232,MINNEHAHA 57197,SIOUX FALLS,SD,43.5271,-96.7364,MINNEHAHA 57198,SIOUX FALLS,SD,43.7326,-96.6285,MINNEHAHA 58102,FARGO,ND,46.900878,-96.793577,CASS 58103,FARGO,ND,46.856406,-96.812252,CASS 58104,FARGO,ND,46.81492,-96.823846,CASS 58105,FARGO,ND,46.8782,-96.7895,CASS 58106,FARGO,ND,46.8782,-96.7895,CASS 58107,FARGO,ND,46.8782,-96.7895,CASS 58108,FARGO,ND,46.8782,-96.7895,CASS 58109,FARGO,ND,46.808,-96.8642,CASS 58121,FARGO,ND,46.8772,-96.7894,CASS 58122,FARGO,ND,46.8772,-96.7894,CASS 58124,FARGO,ND,46.8772,-96.7894,CASS 58125,FARGO,ND,46.8548,-96.8563,CASS 58126,FARGO,ND,46.8772,-96.7894,CASS 58201,GRAND FORKS,ND,47.901041,-97.04463,GRAND FORKS 58202,GRAND FORKS,ND,47.9229,-97.0763,GRAND FORKS 58203,GRAND FORKS,ND,47.927217,-97.067156,GRAND FORKS 58206,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58207,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58208,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58501,BISMARCK,ND,46.823448,-100.774755,BURLEIGH 58502,BISMARCK,ND,46.849,-100.7169,BURLEIGH 58503,BISMARCK,ND,46.8645,-100.7711,BURLEIGH 58504,BISMARCK,ND,46.782463,-100.774411,BURLEIGH 58505,BISMARCK,ND,46.8166,-100.7789,BURLEIGH 58506,BISMARCK,ND,46.7287,-100.6156,BURLEIGH 58507,BISMARCK,ND,46.849,-100.7169,BURLEIGH 59101,BILLINGS,MT,45.774489,-108.500452,YELLOWSTONE 59102,BILLINGS,MT,45.781265,-108.572662,YELLOWSTONE 59103,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59104,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59105,BILLINGS,MT,45.828443,-108.474726,YELLOWSTONE 59106,BILLINGS,MT,45.775306,-108.65191,YELLOWSTONE 59107,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59108,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59111,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59112,BILLINGS,MT,45.7833,-108.5,YELLOWSTONE 59114,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59115,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59116,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59117,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59601,HELENA,MT,46.613066,-112.021283,LEWIS AND CLARK 59602,HELENA,MT,46.6652,-111.9939,LEWIS AND CLARK 59604,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59620,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59623,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59624,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59625,HELENA,MT,46.601,-112.0391,LEWIS AND CLARK 59626,HELENA,MT,46.5927,-112.0352,LEWIS AND CLARK 59715,BOZEMAN,MT,45.669269,-111.043057,GALLATIN 59717,BOZEMAN,MT,45.6678,-111.0499,GALLATIN 59718,BOZEMAN,MT,45.6723,-111.1211,GALLATIN 59719,BOZEMAN,MT,45.6476,-111.171,GALLATIN 59771,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59772,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59773,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59801,MISSOULA,MT,46.856274,-114.025207,MISSOULA 59802,MISSOULA,MT,46.900615,-114.002732,MISSOULA 59803,MISSOULA,MT,46.822362,-114.026528,MISSOULA 59804,MISSOULA,MT,46.858,-114.109,MISSOULA 59806,MISSOULA,MT,46.8516,-114.0141,MISSOULA 59807,MISSOULA,MT,47.0005,-113.9872,MISSOULA 59808,MISSOULA,MT,46.9403,-114.0875,MISSOULA 59812,MISSOULA,MT,46.8625,-113.9808,MISSOULA 60038,PALATINE,IL,42.1258,-88.0764,COOK 60055,PALATINE,IL,42.1258,-88.0764,COOK 60067,PALATINE,IL,42.113888,-88.042937,COOK 60074,PALATINE,IL,42.145775,-88.022998,COOK 60078,PALATINE,IL,42.1102,-88.0341,COOK 60094,PALATINE,IL,42.1258,-88.0764,COOK 60095,PALATINE,IL,42.0967,-88.0112,COOK 60116,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60122,CAROL STREAM,IL,42.0372,-88.2811,DUPAGE 60125,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60128,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60132,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60159,SCHAUMBURG,IL,42.0333,-88.0833,COOK 60168,SCHAUMBURG,IL,42.0269,-88.092,COOK 60173,SCHAUMBURG,IL,42.05807,-88.048189,COOK 60188,CAROL STREAM,IL,41.91784,-88.136962,DUPAGE 60193,SCHAUMBURG,IL,42.014432,-88.093481,COOK 60194,SCHAUMBURG,IL,42.039025,-88.109442,COOK 60195,SCHAUMBURG,IL,42.073865,-88.108709,COOK 60196,SCHAUMBURG,IL,42.0269,-88.092,COOK 60197,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60199,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60201,EVANSTON,IL,42.054551,-87.694331,COOK 60202,EVANSTON,IL,42.03022,-87.686544,COOK 60203,EVANSTON,IL,42.048487,-87.71759,COOK 60204,EVANSTON,IL,42.0472,-87.6872,COOK 60208,EVANSTON,IL,42.0491,-87.677,COOK 60209,EVANSTON,IL,42.0472,-87.6872,COOK 60290,CHICAGO,IL,41.850033,-87.6500523,COOK 60431,JOLIET,IL,41.527154,-88.08241,WILL 60432,JOLIET,IL,41.537758,-88.057178,WILL 60433,JOLIET,IL,41.511873,-88.05687,WILL 60434,JOLIET,IL,41.525,-88.081667,WILL 60435,JOLIET,IL,41.541468,-88.128107,WILL 60436,JOLIET,IL,41.508818,-88.135779,WILL 60502,AURORA,IL,41.78262,-88.260697,DUPAGE 60503,AURORA,IL,41.710269,-88.258888,DUPAGE 60504,AURORA,IL,41.752269,-88.245281,DUPAGE 60505,AURORA,IL,41.758209,-88.297139,KANE 60506,AURORA,IL,41.766414,-88.344582,KANE 60507,AURORA,IL,41.7605,-88.32,KANE 60540,NAPERVILLE,IL,41.766198,-88.141038,DUPAGE 60563,NAPERVILLE,IL,41.78955,-88.16901,DUPAGE 60564,NAPERVILLE,IL,41.704022,-88.195248,WILL 60565,NAPERVILLE,IL,41.732833,-88.128245,DUPAGE 60566,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60567,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60568,AURORA,IL,41.7605,-88.32,KANE 60572,AURORA,IL,41.8017,-88.0685,DUPAGE 60598,AURORA,IL,41.7749,-88.2486,DUPAGE 60601,CHICAGO,IL,41.885847,-87.618123,COOK 60602,CHICAGO,IL,41.882883,-87.632125,COOK 60603,CHICAGO,IL,41.87985,-87.628499,COOK 60604,CHICAGO,IL,41.87845,-87.632999,COOK 60605,CHICAGO,IL,41.87125,-87.627715,COOK 60606,CHICAGO,IL,41.886822,-87.638648,COOK 60607,CHICAGO,IL,41.872075,-87.657845,COOK 60608,CHICAGO,IL,41.851482,-87.669444,COOK 60609,CHICAGO,IL,41.809721,-87.653279,COOK 60610,CHICAGO,IL,41.903294,-87.633565,COOK 60611,CHICAGO,IL,41.897105,-87.622285,COOK 60612,CHICAGO,IL,41.880483,-87.687333,COOK 60613,CHICAGO,IL,41.954341,-87.657491,COOK 60614,CHICAGO,IL,41.92286,-87.648295,COOK 60615,CHICAGO,IL,41.802211,-87.600623,COOK 60616,CHICAGO,IL,41.84258,-87.630552,COOK 60617,CHICAGO,IL,41.725743,-87.556012,COOK 60618,CHICAGO,IL,41.946401,-87.704214,COOK 60619,CHICAGO,IL,41.745765,-87.60539,COOK 60620,CHICAGO,IL,41.741119,-87.654251,COOK 60621,CHICAGO,IL,41.774993,-87.642136,COOK 60622,CHICAGO,IL,41.901923,-87.67785,COOK 60623,CHICAGO,IL,41.849015,-87.7157,COOK 60624,CHICAGO,IL,41.880394,-87.722349,COOK 60625,CHICAGO,IL,41.970325,-87.704157,COOK 60626,CHICAGO,IL,42.009475,-87.668887,COOK 60628,CHICAGO,IL,41.693443,-87.624277,COOK 60629,CHICAGO,IL,41.778149,-87.706936,COOK 60630,CHICAGO,IL,41.969862,-87.760273,COOK 60631,CHICAGO,IL,41.995145,-87.808215,COOK 60632,CHICAGO,IL,41.809274,-87.70518,COOK 60633,CHICAGO,IL,41.649791,-87.549489,COOK 60634,CHICAGO,IL,41.945213,-87.796054,COOK 60636,CHICAGO,IL,41.775989,-87.667368,COOK 60637,CHICAGO,IL,41.781312,-87.605097,COOK 60638,CHICAGO,IL,41.789703,-87.771927,COOK 60639,CHICAGO,IL,41.920162,-87.753502,COOK 60640,CHICAGO,IL,41.971928,-87.662405,COOK 60641,CHICAGO,IL,41.945333,-87.747376,COOK 60643,CHICAGO,IL,41.693243,-87.659445,COOK 60644,CHICAGO,IL,41.882913,-87.758163,COOK 60645,CHICAGO,IL,42.007718,-87.6962,COOK 60646,CHICAGO,IL,41.996414,-87.759172,COOK 60647,CHICAGO,IL,41.920903,-87.704322,COOK 60649,CHICAGO,IL,41.761968,-87.570252,COOK 60651,CHICAGO,IL,41.902509,-87.739307,COOK 60652,CHICAGO,IL,41.745393,-87.713516,COOK 60653,CHICAGO,IL,41.819645,-87.612605,COOK 60654,CHICAGO,IL,41.888533,-87.635292,COOK 60655,CHICAGO,IL,41.693033,-87.702188,COOK 60656,CHICAGO,IL,41.971844,-87.819981,COOK 60657,CHICAGO,IL,41.93992,-87.652805,COOK 60659,CHICAGO,IL,41.991687,-87.700823,COOK 60660,CHICAGO,IL,41.990879,-87.662856,COOK 60661,CHICAGO,IL,41.881351,-87.642969,COOK 60663,CHICAGO,IL,41.8767,-87.6381,COOK 60664,CHICAGO,IL,41.85,-87.65,COOK 60666,CHICAGO,IL,41.9821,-87.906803,COOK 60668,CHICAGO,IL,41.879,-87.6306,COOK 60669,CHICAGO,IL,41.8767,-87.6381,COOK 60670,CHICAGO,IL,41.8767,-87.6381,COOK 60673,CHICAGO,IL,41.8767,-87.6381,COOK 60674,CHICAGO,IL,41.8796,-87.6322,COOK 60675,CHICAGO,IL,41.8767,-87.6381,COOK 60677,CHICAGO,IL,41.8819,-87.6369,COOK 60678,CHICAGO,IL,41.8767,-87.6381,COOK 60679,CHICAGO,IL,41.8767,-87.6381,COOK 60680,CHICAGO,IL,41.8767,-87.6381,COOK 60681,CHICAGO,IL,41.8846,-87.6222,COOK 60682,CHICAGO,IL,41.8649,-87.8115,COOK 60684,CHICAGO,IL,41.8767,-87.6381,COOK 60685,CHICAGO,IL,41.8767,-87.6381,COOK 60686,CHICAGO,IL,41.85,-87.65,COOK 60687,CHICAGO,IL,41.8767,-87.6381,COOK 60688,CHICAGO,IL,41.8501,-87.65,COOK 60689,CHICAGO,IL,41.8746,-87.6332,COOK 60690,CHICAGO,IL,41.879,-87.6306,COOK 60691,CHICAGO,IL,41.879,-87.6306,COOK 60693,CHICAGO,IL,41.8767,-87.6381,COOK 60694,CHICAGO,IL,41.8767,-87.6381,COOK 60695,CHICAGO,IL,41.8501,-87.65,COOK 60696,CHICAGO,IL,41.8501,-87.65,COOK 60697,CHICAGO,IL,41.8767,-87.6381,COOK 60699,CHICAGO,IL,41.8727,-87.6393,COOK 60701,CHICAGO,IL,42.0274,-87.808,COOK 61101,ROCKFORD,IL,42.292233,-89.116118,WINNEBAGO 61102,ROCKFORD,IL,42.254669,-89.124695,WINNEBAGO 61103,ROCKFORD,IL,42.300986,-89.083326,WINNEBAGO 61104,ROCKFORD,IL,42.255355,-89.076779,WINNEBAGO 61105,ROCKFORD,IL,42.3358,-89.1353,WINNEBAGO 61106,ROCKFORD,IL,42.2522,-89.0798,WINNEBAGO 61107,ROCKFORD,IL,42.278629,-89.036107,WINNEBAGO 61108,ROCKFORD,IL,42.251406,-89.023519,WINNEBAGO 61109,ROCKFORD,IL,42.216581,-89.05118,WINNEBAGO 61110,ROCKFORD,IL,42.2668,-89.0823,WINNEBAGO 61112,ROCKFORD,IL,42.245639,-88.970429,WINNEBAGO 61114,ROCKFORD,IL,42.3074,-89.0033,WINNEBAGO 61125,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61126,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61601,PEORIA,IL,40.6854,-89.5953,PEORIA 61602,PEORIA,IL,40.687987,-89.601178,PEORIA 61603,PEORIA,IL,40.713915,-89.580813,PEORIA 61604,PEORIA,IL,40.711142,-89.632377,PEORIA 61605,PEORIA,IL,40.677512,-89.626325,PEORIA 61606,PEORIA,IL,40.698926,-89.612189,PEORIA 61607,PEORIA,IL,40.652434,-89.673898,PEORIA 61612,PEORIA,IL,40.7595,-89.5926,PEORIA 61613,PEORIA,IL,40.7419,-89.6276,PEORIA 61614,PEORIA,IL,40.75481,-89.603295,PEORIA 61615,PEORIA,IL,40.770165,-89.632083,PEORIA 61625,PEORIA,IL,40.6981,-89.6157,PEORIA 61629,PEORIA,IL,40.6936,-89.5888,PEORIA 61630,PEORIA,IL,40.6854,-89.5953,PEORIA 61633,PEORIA,IL,40.7311,-89.6038,PEORIA 61634,PEORIA,IL,40.6893,-89.5921,PEORIA 61635,PEORIA,IL,40.7045,-89.5219,PEORIA 61636,PEORIA,IL,40.7005,-89.5949,PEORIA 61637,PEORIA,IL,40.6936,-89.5888,PEORIA 61638,PEORIA,IL,40.8019,-89.6281,PEORIA 61639,PEORIA,IL,40.6936,-89.5888,PEORIA 61641,PEORIA,IL,40.6936,-89.5888,PEORIA 61643,PEORIA,IL,40.7247,-89.5566,PEORIA 61650,PEORIA,IL,40.6936,-89.5888,PEORIA 61651,PEORIA,IL,40.6936,-89.5888,PEORIA 61652,PEORIA,IL,40.6936,-89.5888,PEORIA 61653,PEORIA,IL,40.6936,-89.5888,PEORIA 61654,PEORIA,IL,40.6936,-89.5888,PEORIA 61655,PEORIA,IL,40.6936,-89.5888,PEORIA 61656,PEORIA,IL,40.6936,-89.5888,PEORIA 61701,BLOOMINGTON,IL,40.478295,-88.989318,MCLEAN 61702,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61704,BLOOMINGTON,IL,40.471618,-88.962466,MCLEAN 61709,BLOOMINGTON,IL,40.4638,-88.9564,MCLEAN 61710,BLOOMINGTON,IL,40.4783,-88.9535,MCLEAN 61791,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61799,BLOOMINGTON,IL,40.4297,-88.9819,MCLEAN 61820,CHAMPAIGN,IL,40.111017,-88.240747,CHAMPAIGN 61821,CHAMPAIGN,IL,40.107262,-88.278847,CHAMPAIGN 61822,CHAMPAIGN,IL,40.1175,-88.293,CHAMPAIGN 61824,CHAMPAIGN,IL,40.109,-88.2433,CHAMPAIGN 61825,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 61826,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 62201,EAST SAINT LOUIS,IL,38.631538,-90.138066,SAINT CLAIR 62202,EAST SAINT LOUIS,IL,38.615278,-90.127778,SAINT CLAIR 62203,EAST SAINT LOUIS,IL,38.599191,-90.074449,SAINT CLAIR 62204,EAST SAINT LOUIS,IL,38.631335,-90.102008,SAINT CLAIR 62205,EAST SAINT LOUIS,IL,38.614947,-90.127502,SAINT CLAIR 62206,EAST SAINT LOUIS,IL,38.561899,-90.16587,SAINT CLAIR 62207,EAST SAINT LOUIS,IL,38.58734,-90.12829,SAINT CLAIR 62521,DECATUR,IL,39.827137,-88.925984,MACON 62522,DECATUR,IL,39.843237,-88.986139,MACON 62523,DECATUR,IL,39.841694,-88.953435,MACON 62524,DECATUR,IL,39.9045,-88.9642,MACON 62525,DECATUR,IL,39.8426,-88.9525,MACON 62526,DECATUR,IL,39.877413,-88.953515,MACON 62701,SPRINGFIELD,IL,39.80004,-89.649531,SANGAMON 62702,SPRINGFIELD,IL,39.816768,-89.644147,SANGAMON 62703,SPRINGFIELD,IL,39.772401,-89.63333,SANGAMON 62704,SPRINGFIELD,IL,39.780319,-89.681066,SANGAMON 62705,SPRINGFIELD,IL,39.799,-89.6465,SANGAMON 62706,SPRINGFIELD,IL,39.7987,-89.6534,SANGAMON 62707,SPRINGFIELD,IL,39.772842,-89.663991,SANGAMON 62708,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62711,SPRINGFIELD,IL,39.76,-89.7178,SANGAMON 62712,SPRINGFIELD,IL,39.7359,-89.5993,SANGAMON 62713,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62715,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62716,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62719,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62721,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62722,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62723,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62726,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62736,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62739,SPRINGFIELD,IL,39.8003,-89.6471,SANGAMON 62746,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62756,SPRINGFIELD,IL,39.7971,-89.6535,SANGAMON 62757,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62761,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62762,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62763,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62764,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62765,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62766,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62767,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62769,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62776,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62777,SPRINGFIELD,IL,39.8022,-89.6547,SANGAMON 62781,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62786,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62791,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62794,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62796,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 63101,SAINT LOUIS,MO,38.634616,-90.191313,SAINT LOUIS CITY 63102,SAINT LOUIS,MO,38.630803,-90.18736,SAINT LOUIS CITY 63103,SAINT LOUIS,MO,38.633176,-90.216444,SAINT LOUIS CITY 63104,SAINT LOUIS,MO,38.612819,-90.218512,SAINT LOUIS CITY 63105,SAINT LOUIS,MO,38.642574,-90.324189,SAINT LOUIS 63106,SAINT LOUIS,MO,38.644246,-90.208198,SAINT LOUIS CITY 63107,SAINT LOUIS,MO,38.664522,-90.21249,SAINT LOUIS CITY 63108,SAINT LOUIS,MO,38.644526,-90.254397,SAINT LOUIS CITY 63109,SAINT LOUIS,MO,38.585452,-90.292918,SAINT LOUIS CITY 63110,SAINT LOUIS,MO,38.618534,-90.256381,SAINT LOUIS CITY 63111,SAINT LOUIS,MO,38.563349,-90.249452,SAINT LOUIS CITY 63112,SAINT LOUIS,MO,38.661619,-90.28187,SAINT LOUIS CITY 63113,SAINT LOUIS,MO,38.65896,-90.249633,SAINT LOUIS CITY 63114,SAINT LOUIS,MO,38.704425,-90.363304,SAINT LOUIS 63115,SAINT LOUIS,MO,38.675618,-90.238478,SAINT LOUIS CITY 63116,SAINT LOUIS,MO,38.581356,-90.262543,SAINT LOUIS CITY 63117,SAINT LOUIS,MO,38.629202,-90.324817,SAINT LOUIS 63118,SAINT LOUIS,MO,38.594265,-90.230911,SAINT LOUIS CITY 63119,SAINT LOUIS,MO,38.588853,-90.350807,SAINT LOUIS 63120,SAINT LOUIS,MO,38.690914,-90.25945,SAINT LOUIS CITY 63121,SAINT LOUIS,MO,38.705086,-90.296719,SAINT LOUIS 63122,SAINT LOUIS,MO,38.58486,-90.410042,SAINT LOUIS 63123,SAINT LOUIS,MO,38.550594,-90.325304,SAINT LOUIS 63124,SAINT LOUIS,MO,38.642383,-90.375468,SAINT LOUIS 63125,SAINT LOUIS,MO,38.521899,-90.295909,SAINT LOUIS 63126,SAINT LOUIS,MO,38.550349,-90.378679,SAINT LOUIS 63127,SAINT LOUIS,MO,38.540369,-90.405967,SAINT LOUIS 63128,SAINT LOUIS,MO,38.498285,-90.372275,SAINT LOUIS 63129,SAINT LOUIS,MO,38.468864,-90.32139,SAINT LOUIS 63130,SAINT LOUIS,MO,38.663941,-90.321896,SAINT LOUIS 63131,SAINT LOUIS,MO,38.612479,-90.44264,SAINT LOUIS 63132,SAINT LOUIS,MO,38.672823,-90.369642,SAINT LOUIS 63133,SAINT LOUIS,MO,38.6779,-90.303272,SAINT LOUIS 63134,SAINT LOUIS,MO,38.739614,-90.337834,SAINT LOUIS 63135,SAINT LOUIS,MO,38.748429,-90.302241,SAINT LOUIS 63136,SAINT LOUIS,MO,38.738878,-90.260189,SAINT LOUIS 63137,SAINT LOUIS,MO,38.74885,-90.217778,SAINT LOUIS 63138,SAINT LOUIS,MO,38.787041,-90.211582,SAINT LOUIS 63139,SAINT LOUIS,MO,38.610776,-90.292045,SAINT LOUIS CITY 63140,SAINT LOUIS,MO,38.738482,-90.322846,SAINT LOUIS 63141,SAINT LOUIS,MO,38.661741,-90.457072,SAINT LOUIS 63143,SAINT LOUIS,MO,38.613116,-90.319611,SAINT LOUIS 63144,SAINT LOUIS,MO,38.620839,-90.350944,SAINT LOUIS 63145,SAINT LOUIS,MO,38.7397,-90.3627,SAINT LOUIS 63146,SAINT LOUIS,MO,38.688418,-90.448251,SAINT LOUIS 63147,SAINT LOUIS,MO,38.713889,-90.237512,SAINT LOUIS CITY 63150,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63151,SAINT LOUIS,MO,38.4688,-90.305,SAINT LOUIS 63155,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63156,SAINT LOUIS,MO,38.6368,-90.2445,SAINT LOUIS CITY 63157,SAINT LOUIS,MO,38.6072,-90.2007,SAINT LOUIS CITY 63158,SAINT LOUIS,MO,38.6041,-90.2226,SAINT LOUIS CITY 63160,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63163,SAINT LOUIS,MO,38.5994,-90.2422,SAINT LOUIS CITY 63164,SAINT LOUIS,MO,38.6189,-90.1994,SAINT LOUIS CITY 63166,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63167,SAINT LOUIS,MO,38.6723,-90.4048,SAINT LOUIS 63169,SAINT LOUIS,MO,38.6288,-90.1924,SAINT LOUIS CITY 63171,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63177,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63178,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63179,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63180,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63182,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63188,SAINT LOUIS,MO,38.6294,-90.1963,SAINT LOUIS CITY 63190,SAINT LOUIS,MO,38.6272,-90.1978,SAINT LOUIS CITY 63195,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63196,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63197,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63198,SAINT LOUIS,MO,38.6583,-90.5672,SAINT LOUIS 63199,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 64050,INDEPENDENCE,MO,39.098288,-94.411072,JACKSON 64051,INDEPENDENCE,MO,39.091111,-94.415278,JACKSON 64052,INDEPENDENCE,MO,39.074984,-94.449945,JACKSON 64053,INDEPENDENCE,MO,39.105041,-94.462461,JACKSON 64054,INDEPENDENCE,MO,39.107234,-94.441496,JACKSON 64055,INDEPENDENCE,MO,39.054504,-94.403902,JACKSON 64056,INDEPENDENCE,MO,39.11773,-94.359637,JACKSON 64057,INDEPENDENCE,MO,39.073099,-94.353284,JACKSON 64058,INDEPENDENCE,MO,39.141233,-94.351526,JACKSON 64063,LEES SUMMIT,MO,38.921094,-94.348744,JACKSON 64064,LEES SUMMIT,MO,38.995336,-94.365192,JACKSON 64065,LEES SUMMIT,MO,38.951389,-94.401389,JACKSON 64081,LEES SUMMIT,MO,38.914169,-94.407302,JACKSON 64082,LEES SUMMIT,MO,38.851803,-94.394368,JACKSON 64086,LEES SUMMIT,MO,38.923056,-94.243889,JACKSON 64101,KANSAS CITY,MO,39.10005,-94.601849,JACKSON 64102,KANSAS CITY,MO,39.086067,-94.606596,JACKSON 64105,KANSAS CITY,MO,39.102459,-94.590092,JACKSON 64106,KANSAS CITY,MO,39.105186,-94.569858,JACKSON 64108,KANSAS CITY,MO,39.0837,-94.586826,JACKSON 64109,KANSAS CITY,MO,39.066286,-94.567372,JACKSON 64110,KANSAS CITY,MO,39.036088,-94.572206,JACKSON 64111,KANSAS CITY,MO,39.056483,-94.592942,JACKSON 64112,KANSAS CITY,MO,39.038191,-94.592873,JACKSON 64113,KANSAS CITY,MO,39.01234,-94.593828,JACKSON 64114,KANSAS CITY,MO,38.962147,-94.595941,JACKSON 64116,KANSAS CITY,MO,39.163189,-94.569882,CLAY 64117,KANSAS CITY,MO,39.168111,-94.527367,CLAY 64118,KANSAS CITY,MO,39.213842,-94.570448,CLAY 64119,KANSAS CITY,MO,39.19785,-94.519873,CLAY 64120,KANSAS CITY,MO,39.122206,-94.54873,JACKSON 64121,KANSAS CITY,MO,39.0906,-94.538,JACKSON 64123,KANSAS CITY,MO,39.113593,-94.523545,JACKSON 64124,KANSAS CITY,MO,39.106832,-94.539402,JACKSON 64125,KANSAS CITY,MO,39.104157,-94.492328,JACKSON 64126,KANSAS CITY,MO,39.092255,-94.50466,JACKSON 64127,KANSAS CITY,MO,39.088303,-94.536636,JACKSON 64128,KANSAS CITY,MO,39.065932,-94.538634,JACKSON 64129,KANSAS CITY,MO,39.040093,-94.49513,JACKSON 64130,KANSAS CITY,MO,39.035106,-94.546674,JACKSON 64131,KANSAS CITY,MO,38.971303,-94.57741,JACKSON 64132,KANSAS CITY,MO,38.991073,-94.552156,JACKSON 64133,KANSAS CITY,MO,39.014909,-94.459229,JACKSON 64134,KANSAS CITY,MO,38.929633,-94.500908,JACKSON 64136,KANSAS CITY,MO,39.018684,-94.400774,JACKSON 64137,KANSAS CITY,MO,38.92988,-94.540487,JACKSON 64138,KANSAS CITY,MO,38.96871,-94.479361,JACKSON 64139,KANSAS CITY,MO,38.965891,-94.406086,JACKSON 64141,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64144,KANSAS CITY,MO,39.1433,-94.571,CLAY 64145,KANSAS CITY,MO,38.89767,-94.597607,JACKSON 64146,KANSAS CITY,MO,38.897264,-94.57638,JACKSON 64147,KANSAS CITY,MO,38.861352,-94.529717,JACKSON 64148,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64149,KANSAS CITY,MO,38.860646,-94.463554,JACKSON 64151,KANSAS CITY,MO,39.213876,-94.63318,PLATTE 64152,KANSAS CITY,MO,39.220954,-94.691313,PLATTE 64153,KANSAS CITY,MO,39.262746,-94.697008,PLATTE 64154,KANSAS CITY,MO,39.254728,-94.635444,PLATTE 64155,KANSAS CITY,MO,39.275831,-94.570401,CLAY 64156,KANSAS CITY,MO,39.290052,-94.533614,CLAY 64157,KANSAS CITY,MO,39.276673,-94.459456,CLAY 64158,KANSAS CITY,MO,39.228428,-94.472036,CLAY 64161,KANSAS CITY,MO,39.161506,-94.459829,CLAY 64163,KANSAS CITY,MO,39.359756,-94.719315,PLATTE 64164,KANSAS CITY,MO,39.3426,-94.644643,PLATTE 64165,KANSAS CITY,MO,39.340054,-94.572966,CLAY 64166,KANSAS CITY,MO,39.329399,-94.519858,CLAY 64167,KANSAS CITY,MO,39.309643,-94.465291,CLAY 64168,KANSAS CITY,MO,39.1775,-94.612778,PLATTE 64170,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64171,KANSAS CITY,MO,39.0544,-94.5886,JACKSON 64172,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64179,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64180,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64183,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64184,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64185,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64187,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64188,KANSAS CITY,MO,39.2239,-94.5852,CLAY 64190,KANSAS CITY,MO,39.2815,-94.7326,PLATTE 64191,KANSAS CITY,MO,39.0844,-94.5844,JACKSON 64192,KANSAS CITY,MO,38.9223,-94.5089,JACKSON 64193,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64194,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64195,KANSAS CITY,MO,39.3035,-94.7198,PLATTE 64196,KANSAS CITY,MO,39.1006,-94.5831,JACKSON 64197,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64198,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64199,KANSAS CITY,MO,39.1032,-94.5826,JACKSON 64501,SAINT JOSEPH,MO,39.768755,-94.838488,BUCHANAN 64502,SAINT JOSEPH,MO,39.7655,-94.8506,BUCHANAN 64503,SAINT JOSEPH,MO,39.733987,-94.817125,BUCHANAN 64504,SAINT JOSEPH,MO,39.707566,-94.867749,BUCHANAN 64505,SAINT JOSEPH,MO,39.796532,-94.844341,BUCHANAN 64506,SAINT JOSEPH,MO,39.789292,-94.804314,BUCHANAN 64507,SAINT JOSEPH,MO,39.755052,-94.817303,BUCHANAN 64508,SAINT JOSEPH,MO,39.7768,-94.7995,BUCHANAN 64944,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64999,KANSAS CITY,MO,38.9573,-94.574,JACKSON 65101,JEFFERSON CITY,MO,38.546212,-92.152462,COLE 65102,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65103,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65104,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65105,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65106,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65107,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65108,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65109,JEFFERSON CITY,MO,38.577272,-92.244298,COLE 65110,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65111,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65201,COLUMBIA,MO,38.938176,-92.304865,BOONE 65202,COLUMBIA,MO,38.995019,-92.311204,BOONE 65203,COLUMBIA,MO,38.93482,-92.363865,BOONE 65205,COLUMBIA,MO,38.9528,-92.3313,BOONE 65211,COLUMBIA,MO,38.9368,-92.3221,BOONE 65212,COLUMBIA,MO,38.9528,-92.3313,BOONE 65215,COLUMBIA,MO,38.9527,-92.3199,BOONE 65216,COLUMBIA,MO,38.9566,-92.3268,BOONE 65217,COLUMBIA,MO,38.8976,-92.3349,BOONE 65218,COLUMBIA,MO,38.8935,-92.3963,BOONE 65299,COLUMBIA,MO,38.909,-92.2463,BOONE 65801,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65802,SPRINGFIELD,MO,37.211663,-93.29903,GREENE 65803,SPRINGFIELD,MO,37.259327,-93.291232,GREENE 65804,SPRINGFIELD,MO,37.165361,-93.252154,GREENE 65805,SPRINGFIELD,MO,37.2152,-93.298,GREENE 65806,SPRINGFIELD,MO,37.203057,-93.297108,GREENE 65807,SPRINGFIELD,MO,37.166799,-93.308457,GREENE 65808,SPRINGFIELD,MO,37.1885,-93.2619,GREENE 65809,SPRINGFIELD,MO,37.185223,-93.205742,GREENE 65810,SPRINGFIELD,MO,37.113647,-93.289594,GREENE 65814,SPRINGFIELD,MO,37.1668,-93.3247,GREENE 65817,SPRINGFIELD,MO,37.1173,-93.3089,GREENE 65890,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65897,SPRINGFIELD,MO,37.199132,-93.279111,GREENE 65898,SPRINGFIELD,MO,37.2376,-93.2492,GREENE 65899,SPRINGFIELD,MO,37.1494,-93.2502,GREENE 66101,KANSAS CITY,KS,39.115733,-94.627139,WYANDOTTE 66102,KANSAS CITY,KS,39.113247,-94.669337,WYANDOTTE 66103,KANSAS CITY,KS,39.056193,-94.625105,WYANDOTTE 66104,KANSAS CITY,KS,39.137512,-94.679158,WYANDOTTE 66105,KANSAS CITY,KS,39.085025,-94.635646,WYANDOTTE 66106,KANSAS CITY,KS,39.061187,-94.687396,WYANDOTTE 66109,KANSAS CITY,KS,39.143376,-94.785598,WYANDOTTE 66110,KANSAS CITY,KS,39.1164,-94.6916,WYANDOTTE 66111,KANSAS CITY,KS,39.080332,-94.780593,WYANDOTTE 66112,KANSAS CITY,KS,39.115999,-94.764024,WYANDOTTE 66115,KANSAS CITY,KS,39.114534,-94.614647,WYANDOTTE 66117,KANSAS CITY,KS,39.1176,-94.6227,WYANDOTTE 66118,KANSAS CITY,KS,39.096867,-94.608361,WYANDOTTE 66119,KANSAS CITY,KS,39.0616,-94.6092,WYANDOTTE 66160,KANSAS CITY,KS,39.0572,-94.6117,WYANDOTTE 66203,SHAWNEE,KS,39.019802,-94.708303,JOHNSON 66204,OVERLAND PARK,KS,38.992488,-94.674769,JOHNSON 66207,OVERLAND PARK,KS,38.957472,-94.645193,JOHNSON 66210,OVERLAND PARK,KS,38.922007,-94.704788,JOHNSON 66212,OVERLAND PARK,KS,38.958954,-94.68414,JOHNSON 66213,OVERLAND PARK,KS,38.904899,-94.700344,JOHNSON 66214,OVERLAND PARK,KS,38.959929,-94.713265,JOHNSON 66216,SHAWNEE,KS,39.009289,-94.738234,JOHNSON 66217,SHAWNEE,KS,39.004835,-94.779663,JOHNSON 66218,SHAWNEE,KS,39.017431,-94.823913,JOHNSON 66221,OVERLAND PARK,KS,38.85272,-94.706745,JOHNSON 66223,OVERLAND PARK,KS,38.848477,-94.664467,JOHNSON 66224,OVERLAND PARK,KS,38.867526,-94.628903,JOHNSON 66225,OVERLAND PARK,KS,38.8878,-94.6861,JOHNSON 66226,SHAWNEE,KS,38.997764,-94.873017,JOHNSON 66251,OVERLAND PARK,KS,38.9165,-94.6579,JOHNSON 66282,OVERLAND PARK,KS,38.952,-94.6859,JOHNSON 66283,OVERLAND PARK,KS,38.8625,-94.6668,JOHNSON 66286,SHAWNEE,KS,39.024167,-94.718611,JOHNSON 66601,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66603,TOPEKA,KS,39.055344,-95.680212,SHAWNEE 66604,TOPEKA,KS,39.040549,-95.717831,SHAWNEE 66605,TOPEKA,KS,39.015076,-95.643894,SHAWNEE 66606,TOPEKA,KS,39.058345,-95.709458,SHAWNEE 66607,TOPEKA,KS,39.042111,-95.644858,SHAWNEE 66608,TOPEKA,KS,39.085812,-95.686651,SHAWNEE 66609,TOPEKA,KS,38.991899,-95.668069,SHAWNEE 66610,TOPEKA,KS,38.982213,-95.746061,SHAWNEE 66611,TOPEKA,KS,39.014152,-95.69815,SHAWNEE 66612,TOPEKA,KS,39.042714,-95.681806,SHAWNEE 66614,TOPEKA,KS,39.015403,-95.746883,SHAWNEE 66615,TOPEKA,KS,39.04458,-95.790561,SHAWNEE 66616,TOPEKA,KS,39.064479,-95.641302,SHAWNEE 66617,TOPEKA,KS,39.127098,-95.638388,SHAWNEE 66618,TOPEKA,KS,39.132853,-95.70231,SHAWNEE 66619,TOPEKA,KS,38.942859,-95.700728,SHAWNEE 66620,TOPEKA,KS,38.9459,-95.7131,SHAWNEE 66621,TOPEKA,KS,39.0361,-95.7004,SHAWNEE 66622,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66624,TOPEKA,KS,38.9353,-95.6898,SHAWNEE 66625,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66626,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66628,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66629,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66636,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66637,TOPEKA,KS,39.0154,-95.6957,SHAWNEE 66642,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66647,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66652,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66653,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66667,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66675,TOPEKA,KS,39.1439,-95.7457,SHAWNEE 66683,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66692,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66699,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 67201,WICHITA,KS,37.6898,-97.3415,SEDGWICK 67202,WICHITA,KS,37.689945,-97.33551,SEDGWICK 67203,WICHITA,KS,37.704798,-97.363766,SEDGWICK 67204,WICHITA,KS,37.748838,-97.356563,SEDGWICK 67205,WICHITA,KS,37.763929,-97.426924,SEDGWICK 67206,WICHITA,KS,37.699622,-97.239253,SEDGWICK 67207,WICHITA,KS,37.667152,-97.238962,SEDGWICK 67208,WICHITA,KS,37.702428,-97.281062,SEDGWICK 67209,WICHITA,KS,37.677855,-97.42354,SEDGWICK 67210,WICHITA,KS,37.637915,-97.261254,SEDGWICK 67211,WICHITA,KS,37.666181,-97.316451,SEDGWICK 67212,WICHITA,KS,37.700683,-97.438344,SEDGWICK 67213,WICHITA,KS,37.667959,-97.359074,SEDGWICK 67214,WICHITA,KS,37.705051,-97.313284,SEDGWICK 67215,WICHITA,KS,37.633333,-97.424985,SEDGWICK 67216,WICHITA,KS,37.622332,-97.313625,SEDGWICK 67217,WICHITA,KS,37.626574,-97.358139,SEDGWICK 67218,WICHITA,KS,37.669007,-97.280219,SEDGWICK 67219,WICHITA,KS,37.76482,-97.313517,SEDGWICK 67220,WICHITA,KS,37.74548,-97.275915,SEDGWICK 67223,WICHITA,KS,37.748434,-97.467421,SEDGWICK 67226,WICHITA,KS,37.737891,-97.247853,SEDGWICK 67227,WICHITA,KS,37.588466,-97.460561,SEDGWICK 67228,WICHITA,KS,37.776061,-97.201404,SEDGWICK 67230,WICHITA,KS,37.680814,-97.155764,SEDGWICK 67232,WICHITA,KS,37.642797,-97.164278,SEDGWICK 67235,WICHITA,KS,37.668631,-97.461145,SEDGWICK 67260,WICHITA,KS,37.7165,-97.2968,SEDGWICK 67275,WICHITA,KS,37.6728,-97.4437,SEDGWICK 67276,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67277,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67278,WICHITA,KS,37.6922,-97.3372,SEDGWICK 68101,OMAHA,NE,41.261,-95.9376,DOUGLAS 68102,OMAHA,NE,41.258961,-95.940909,DOUGLAS 68103,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68104,OMAHA,NE,41.29186,-95.999888,DOUGLAS 68105,OMAHA,NE,41.243502,-95.962938,DOUGLAS 68106,OMAHA,NE,41.240322,-95.997972,DOUGLAS 68107,OMAHA,NE,41.206783,-95.955877,DOUGLAS 68108,OMAHA,NE,41.238198,-95.933557,DOUGLAS 68109,OMAHA,NE,41.2345,-95.937,DOUGLAS 68110,OMAHA,NE,41.293342,-95.936072,DOUGLAS 68111,OMAHA,NE,41.296212,-95.965045,DOUGLAS 68112,OMAHA,NE,41.329614,-95.959684,DOUGLAS 68114,OMAHA,NE,41.265624,-96.049306,DOUGLAS 68116,OMAHA,NE,41.287854,-96.149462,DOUGLAS 68117,OMAHA,NE,41.206403,-95.995301,DOUGLAS 68118,OMAHA,NE,41.260636,-96.166118,DOUGLAS 68119,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68120,OMAHA,NE,41.2795,-95.9461,DOUGLAS 68122,OMAHA,NE,41.333312,-96.045772,DOUGLAS 68124,OMAHA,NE,41.233814,-96.049515,DOUGLAS 68127,OMAHA,NE,41.201782,-96.055019,DOUGLAS 68130,OMAHA,NE,41.235452,-96.168815,DOUGLAS 68131,OMAHA,NE,41.264658,-95.963891,DOUGLAS 68132,OMAHA,NE,41.265746,-95.995954,DOUGLAS 68134,OMAHA,NE,41.294917,-96.054569,DOUGLAS 68135,OMAHA,NE,41.210419,-96.169827,DOUGLAS 68136,OMAHA,NE,41.168343,-96.209633,SARPY 68137,OMAHA,NE,41.201067,-96.124462,DOUGLAS 68138,OMAHA,NE,41.177724,-96.129718,SARPY 68139,OMAHA,NE,41.2179,-96.1206,DOUGLAS 68142,OMAHA,NE,41.335904,-96.090109,DOUGLAS 68144,OMAHA,NE,41.235599,-96.116772,DOUGLAS 68145,OMAHA,NE,41.2348,-96.1198,DOUGLAS 68152,OMAHA,NE,41.334557,-96.000295,DOUGLAS 68154,OMAHA,NE,41.264167,-96.120611,DOUGLAS 68155,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68157,OMAHA,NE,41.183423,-95.995378,SARPY 68164,OMAHA,NE,41.29552,-96.100793,DOUGLAS 68172,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68175,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68176,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68178,OMAHA,NE,41.2649,-95.9488,DOUGLAS 68179,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68180,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68181,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68182,OMAHA,NE,41.2594,-96.0049,DOUGLAS 68183,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68197,OMAHA,NE,41.2353,-96.1213,DOUGLAS 68198,OMAHA,NE,41.2547,-95.9784,DOUGLAS 68501,LINCOLN,NE,40.8169,-96.7103,LANCASTER 68502,LINCOLN,NE,40.789282,-96.693763,LANCASTER 68503,LINCOLN,NE,40.823339,-96.676623,LANCASTER 68504,LINCOLN,NE,40.839226,-96.653248,LANCASTER 68505,LINCOLN,NE,40.824674,-96.625193,LANCASTER 68506,LINCOLN,NE,40.784796,-96.643052,LANCASTER 68507,LINCOLN,NE,40.847265,-96.628874,LANCASTER 68508,LINCOLN,NE,40.814503,-96.700907,LANCASTER 68509,LINCOLN,NE,40.8,-96.6666,LANCASTER 68510,LINCOLN,NE,40.806345,-96.654458,LANCASTER 68512,LINCOLN,NE,40.756487,-96.694606,LANCASTER 68514,LINCOLN,NE,40.925792,-96.661082,LANCASTER 68516,LINCOLN,NE,40.756807,-96.652304,LANCASTER 68517,LINCOLN,NE,40.931743,-96.604509,LANCASTER 68520,LINCOLN,NE,40.774441,-96.569341,LANCASTER 68521,LINCOLN,NE,40.851044,-96.711006,LANCASTER 68522,LINCOLN,NE,40.793407,-96.747871,LANCASTER 68523,LINCOLN,NE,40.740766,-96.758339,LANCASTER 68524,LINCOLN,NE,40.852913,-96.794345,LANCASTER 68526,LINCOLN,NE,40.731386,-96.587817,LANCASTER 68527,LINCOLN,NE,40.834708,-96.540053,LANCASTER 68528,LINCOLN,NE,40.819541,-96.754496,LANCASTER 68529,LINCOLN,NE,40.8583,-96.6349,LANCASTER 68531,LINCOLN,NE,40.899397,-96.715572,LANCASTER 68532,LINCOLN,NE,40.792159,-96.85509,LANCASTER 68542,LINCOLN,NE,40.8,-96.6666,LANCASTER 68583,LINCOLN,NE,40.8303,-96.6667,LANCASTER 68588,LINCOLN,NE,40.8207,-96.7026,LANCASTER 70001,METAIRIE,LA,29.987138,-90.169513,JEFFERSON 70002,METAIRIE,LA,30.009843,-90.16303,JEFFERSON 70003,METAIRIE,LA,29.99746,-90.21457,JEFFERSON 70004,METAIRIE,LA,29.9759,-90.1608,JEFFERSON 70005,METAIRIE,LA,30.000476,-90.13314,JEFFERSON 70006,METAIRIE,LA,30.012885,-90.191483,JEFFERSON 70009,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70010,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70011,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70033,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70055,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70060,METAIRIE,LA,29.8675,-90.0691,JEFFERSON 70112,NEW ORLEANS,LA,29.960484,-90.075301,ORLEANS 70113,NEW ORLEANS,LA,29.940511,-90.084777,ORLEANS 70114,NEW ORLEANS,LA,29.937934,-90.033126,ORLEANS 70115,NEW ORLEANS,LA,29.928863,-90.1005,ORLEANS 70116,NEW ORLEANS,LA,29.968608,-90.064614,ORLEANS 70117,NEW ORLEANS,LA,29.970298,-90.03124,ORLEANS 70118,NEW ORLEANS,LA,29.950352,-90.123598,ORLEANS 70119,NEW ORLEANS,LA,29.974552,-90.085156,ORLEANS 70121,NEW ORLEANS,LA,29.963071,-90.160953,JEFFERSON 70122,NEW ORLEANS,LA,30.005637,-90.064409,ORLEANS 70123,NEW ORLEANS,LA,29.953473,-90.210748,JEFFERSON 70124,NEW ORLEANS,LA,30.007081,-90.109384,ORLEANS 70125,NEW ORLEANS,LA,29.951225,-90.102785,ORLEANS 70126,NEW ORLEANS,LA,30.015341,-90.018913,ORLEANS 70127,NEW ORLEANS,LA,30.033811,-89.980688,ORLEANS 70128,NEW ORLEANS,LA,30.052691,-89.956421,ORLEANS 70129,NEW ORLEANS,LA,30.047984,-89.906206,ORLEANS 70130,NEW ORLEANS,LA,29.932438,-90.073949,ORLEANS 70131,NEW ORLEANS,LA,29.916811,-89.996033,ORLEANS 70139,NEW ORLEANS,LA,29.95,-90.071,ORLEANS 70140,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70141,NEW ORLEANS,LA,29.9928,-90.2587,JEFFERSON 70142,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70143,NEW ORLEANS,LA,29.8272,-90.0212,ORLEANS 70145,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70146,NEW ORLEANS,LA,29.9614,-90.0332,ORLEANS 70148,NEW ORLEANS,LA,30.0315,-90.0437,ORLEANS 70149,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70150,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70151,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70152,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70153,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70154,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70156,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70157,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70158,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70159,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70160,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70161,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70162,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70163,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70164,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70165,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70166,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70167,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70170,NEW ORLEANS,LA,29.9518,-90.0697,ORLEANS 70172,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70174,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70175,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70176,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70177,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70178,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70179,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70181,NEW ORLEANS,LA,29.9639,-90.0654,JEFFERSON 70182,NEW ORLEANS,LA,30.0089,-90.0647,ORLEANS 70183,NEW ORLEANS,LA,29.9656,-90.0644,JEFFERSON 70184,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70185,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70186,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70187,NEW ORLEANS,LA,30.0235,-89.975,ORLEANS 70189,NEW ORLEANS,LA,30.0749,-89.8161,ORLEANS 70190,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70195,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70500,LAFAYETTE,LA,30.2240897,-92.0198427,LAFAYETTE 70501,LAFAYETTE,LA,30.236141,-92.008261,LAFAYETTE 70502,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70503,LAFAYETTE,LA,30.184256,-92.049745,LAFAYETTE 70504,LAFAYETTE,LA,30.2244,-92.0451,LAFAYETTE 70505,LAFAYETTE,LA,30.205,-92.0157,LAFAYETTE 70506,LAFAYETTE,LA,30.207707,-92.065623,LAFAYETTE 70507,LAFAYETTE,LA,30.281313,-92.015962,LAFAYETTE 70508,LAFAYETTE,LA,30.158222,-92.023579,LAFAYETTE 70509,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70593,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70595,LAFAYETTE,LA,30.2195,-92.0074,LAFAYETTE 70596,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70598,LAFAYETTE,LA,30.1765,-92.008,LAFAYETTE 70601,LAKE CHARLES,LA,30.228453,-93.187966,CALCASIEU 70602,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70605,LAKE CHARLES,LA,30.169349,-93.221798,CALCASIEU 70606,LAKE CHARLES,LA,30.166,-93.232,CALCASIEU 70607,LAKE CHARLES,LA,30.1142,-93.2014,CALCASIEU 70609,LAKE CHARLES,LA,30.1809,-93.2157,CALCASIEU 70611,LAKE CHARLES,LA,30.322031,-93.211082,CALCASIEU 70612,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70615,LAKE CHARLES,LA,30.2404,-93.1523,CALCASIEU 70616,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70629,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70801,BATON ROUGE,LA,30.450731,-91.186954,EAST BATON ROUGE 70802,BATON ROUGE,LA,30.444236,-91.169037,EAST BATON ROUGE 70803,BATON ROUGE,LA,30.4124,-91.1822,EAST BATON ROUGE 70804,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70805,BATON ROUGE,LA,30.48604,-91.148095,EAST BATON ROUGE 70806,BATON ROUGE,LA,30.448486,-91.130046,EAST BATON ROUGE 70807,BATON ROUGE,LA,30.533199,-91.178615,EAST BATON ROUGE 70808,BATON ROUGE,LA,30.406596,-91.146765,EAST BATON ROUGE 70809,BATON ROUGE,LA,30.408891,-91.084213,EAST BATON ROUGE 70810,BATON ROUGE,LA,30.363309,-91.091898,EAST BATON ROUGE 70811,BATON ROUGE,LA,30.53046,-91.126539,EAST BATON ROUGE 70812,BATON ROUGE,LA,30.505159,-91.118111,EAST BATON ROUGE 70813,BATON ROUGE,LA,30.5262,-91.1955,EAST BATON ROUGE 70814,BATON ROUGE,LA,30.484808,-91.068936,EAST BATON ROUGE 70815,BATON ROUGE,LA,30.455809,-91.059558,EAST BATON ROUGE 70816,BATON ROUGE,LA,30.427289,-91.035645,EAST BATON ROUGE 70817,BATON ROUGE,LA,30.390404,-91.00213,EAST BATON ROUGE 70818,BATON ROUGE,LA,30.540832,-91.049964,EAST BATON ROUGE 70819,BATON ROUGE,LA,30.46679,-91.01565,EAST BATON ROUGE 70820,BATON ROUGE,LA,30.379523,-91.167064,EAST BATON ROUGE 70821,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70822,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70823,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70825,BATON ROUGE,LA,30.4484,-91.1832,EAST BATON ROUGE 70826,BATON ROUGE,LA,30.3979,-91.0768,EAST BATON ROUGE 70827,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70831,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70833,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70835,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70836,BATON ROUGE,LA,30.3909,-91.0909,EAST BATON ROUGE 70837,BATON ROUGE,LA,30.5538,-91.0373,EAST BATON ROUGE 70873,BATON ROUGE,LA,30.4476,-91.1772,EAST BATON ROUGE 70874,BATON ROUGE,LA,30.5211,-91.1451,EAST BATON ROUGE 70879,BATON ROUGE,LA,30.3733,-90.9815,EAST BATON ROUGE 70883,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70884,BATON ROUGE,LA,30.3786,-91.0974,EAST BATON ROUGE 70891,BATON ROUGE,LA,30.449,-91.1784,EAST BATON ROUGE 70892,BATON ROUGE,LA,30.4965,-91.1575,EAST BATON ROUGE 70893,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70894,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70895,BATON ROUGE,LA,30.4534,-91.0767,EAST BATON ROUGE 70896,BATON ROUGE,LA,30.444,-91.1434,EAST BATON ROUGE 70898,BATON ROUGE,LA,30.4205,-91.1396,EAST BATON ROUGE 71101,SHREVEPORT,LA,32.503743,-93.748696,CADDO 71102,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71103,SHREVEPORT,LA,32.494459,-93.772701,CADDO 71104,SHREVEPORT,LA,32.482978,-93.734862,CADDO 71105,SHREVEPORT,LA,32.458882,-93.714341,CADDO 71106,SHREVEPORT,LA,32.426251,-93.747922,CADDO 71107,SHREVEPORT,LA,32.564652,-93.828781,CADDO 71108,SHREVEPORT,LA,32.448596,-93.781378,CADDO 71109,SHREVEPORT,LA,32.473994,-93.801297,CADDO 71115,SHREVEPORT,LA,32.410156,-93.697402,CADDO 71118,SHREVEPORT,LA,32.397664,-93.802543,CADDO 71119,SHREVEPORT,LA,32.477121,-93.87261,CADDO 71120,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71129,SHREVEPORT,LA,32.41412,-93.874192,CADDO 71130,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71133,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71134,SHREVEPORT,LA,32.4814,-93.7367,CADDO 71135,SHREVEPORT,LA,32.4431,-93.7098,CADDO 71136,SHREVEPORT,LA,32.4222,-93.7587,CADDO 71137,SHREVEPORT,LA,32.5935,-93.8539,CADDO 71138,SHREVEPORT,LA,32.4081,-93.7979,CADDO 71148,SHREVEPORT,LA,32.456,-93.7777,CADDO 71149,SHREVEPORT,LA,32.525,-93.75,CADDO 71150,SHREVEPORT,LA,34.16812,-94.96993,CADDO 71151,SHREVEPORT,LA,32.525,-93.75,CADDO 71152,SHREVEPORT,LA,32.4405,-93.7886,CADDO 71153,SHREVEPORT,LA,32.525,-93.75,CADDO 71154,SHREVEPORT,LA,32.525,-93.75,CADDO 71156,SHREVEPORT,LA,32.525,-93.75,CADDO 71161,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71162,SHREVEPORT,LA,32.525,-93.75,CADDO 71163,SHREVEPORT,LA,32.525,-93.75,CADDO 71164,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71165,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71166,SHREVEPORT,LA,32.525,-93.75,CADDO 71201,MONROE,LA,32.528551,-92.106104,OUACHITA 71202,MONROE,LA,32.463327,-92.090231,OUACHITA 71203,MONROE,LA,32.553038,-92.042241,OUACHITA 71207,MONROE,LA,32.5148,-92.116,OUACHITA 71208,MONROE,LA,32.4967,-92.0756,OUACHITA 71209,MONROE,LA,32.5281,-92.0728,OUACHITA 71210,MONROE,LA,32.5006,-92.1146,OUACHITA 71211,MONROE,LA,32.5985,-92.0179,OUACHITA 71212,MONROE,LA,32.5091,-92.1191,OUACHITA 71213,MONROE,LA,32.5259,-92.0811,OUACHITA 71217,MONROE,LA,32.4923,-92.0957,OUACHITA 71301,ALEXANDRIA,LA,31.288519,-92.463349,RAPIDES 71302,ALEXANDRIA,LA,31.268272,-92.424169,RAPIDES 71303,ALEXANDRIA,LA,31.304838,-92.508892,RAPIDES 71306,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71307,ALEXANDRIA,LA,31.2856,-92.4507,RAPIDES 71309,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71315,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71901,HOT SPRINGS NATIONAL PARK,AR,34.501475,-93.026024,GARLAND 71902,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71903,HOT SPRINGS NATIONAL PARK,AR,34.5114,-93.0537,GARLAND 71909,HOT SPRINGS NATIONAL PARK,AR,34.65862,-93.006386,GARLAND 71913,HOT SPRINGS NATIONAL PARK,AR,34.473304,-93.109177,GARLAND 71914,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71951,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 72114,NORTH LITTLE ROCK,AR,34.766974,-92.265376,PULASKI 72115,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72116,NORTH LITTLE ROCK,AR,34.807629,-92.237359,PULASKI 72117,NORTH LITTLE ROCK,AR,34.776305,-92.194604,PULASKI 72118,NORTH LITTLE ROCK,AR,34.821598,-92.307875,PULASKI 72119,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72124,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72190,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72198,NORTH LITTLE ROCK,AR,34.772,-92.2717,PULASKI 72199,NORTH LITTLE ROCK,AR,34.901111,-92.310556,PULASKI 72201,LITTLE ROCK,AR,34.748342,-92.281939,PULASKI 72202,LITTLE ROCK,AR,34.736322,-92.274067,PULASKI 72203,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72204,LITTLE ROCK,AR,34.726904,-92.344041,PULASKI 72205,LITTLE ROCK,AR,34.750971,-92.345512,PULASKI 72206,LITTLE ROCK,AR,34.683599,-92.277606,PULASKI 72207,LITTLE ROCK,AR,34.772121,-92.356481,PULASKI 72209,LITTLE ROCK,AR,34.672509,-92.352919,PULASKI 72210,LITTLE ROCK,AR,34.707625,-92.465981,PULASKI 72211,LITTLE ROCK,AR,34.758819,-92.431485,PULASKI 72212,LITTLE ROCK,AR,34.787076,-92.422232,PULASKI 72214,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72215,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72216,LITTLE ROCK,AR,34.6537,-92.2489,PULASKI 72217,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72219,LITTLE ROCK,AR,34.6803,-92.3452,PULASKI 72221,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72222,LITTLE ROCK,AR,34.8025,-92.4398,PULASKI 72223,LITTLE ROCK,AR,34.7928,-92.4794,PULASKI 72225,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72227,LITTLE ROCK,AR,34.775,-92.3765,PULASKI 72231,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72260,LITTLE ROCK,AR,34.7476,-92.2814,PULASKI 72295,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72901,FORT SMITH,AR,35.365272,-94.411035,SEBASTIAN 72902,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72903,FORT SMITH,AR,35.342673,-94.378361,SEBASTIAN 72904,FORT SMITH,AR,35.405122,-94.38723,SEBASTIAN 72905,FORT SMITH,AR,35.297366,-94.340521,SEBASTIAN 72906,FORT SMITH,AR,35.332,-94.4001,SEBASTIAN 72908,FORT SMITH,AR,35.3028,-94.4093,SEBASTIAN 72913,FORT SMITH,AR,35.3339,-94.3753,SEBASTIAN 72914,FORT SMITH,AR,35.3858,-94.3983,SEBASTIAN 72916,FORT SMITH,AR,35.250175,-94.370308,SEBASTIAN 72917,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72918,FORT SMITH,AR,35.3511,-94.3509,SEBASTIAN 72919,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 73003,EDMOND,OK,35.68,-97.53,OKLAHOMA 73012,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73013,EDMOND,OK,35.621534,-97.473268,OKLAHOMA 73019,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73025,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73026,NORMAN,OK,35.2277,-97.2813,CLEVELAND 73034,EDMOND,OK,35.666483,-97.479835,OKLAHOMA 73069,NORMAN,OK,35.220389,-97.457743,CLEVELAND 73070,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73071,NORMAN,OK,35.224254,-97.379159,CLEVELAND 73072,NORMAN,OK,35.210733,-97.472984,CLEVELAND 73083,EDMOND,OK,35.5193,-97.3362,OKLAHOMA 73101,OKLAHOMA CITY,OK,35.473,-97.5177,OKLAHOMA 73102,OKLAHOMA CITY,OK,35.472601,-97.519926,OKLAHOMA 73103,OKLAHOMA CITY,OK,35.490957,-97.519591,OKLAHOMA 73104,OKLAHOMA CITY,OK,35.479388,-97.501714,OKLAHOMA 73105,OKLAHOMA CITY,OK,35.510811,-97.500291,OKLAHOMA 73106,OKLAHOMA CITY,OK,35.485328,-97.537228,OKLAHOMA 73107,OKLAHOMA CITY,OK,35.48736,-97.573974,OKLAHOMA 73108,OKLAHOMA CITY,OK,35.444485,-97.561928,OKLAHOMA 73109,OKLAHOMA CITY,OK,35.425944,-97.526131,OKLAHOMA 73110,OKLAHOMA CITY,OK,35.461978,-97.397661,OKLAHOMA 73111,OKLAHOMA CITY,OK,35.504238,-97.480607,OKLAHOMA 73112,OKLAHOMA CITY,OK,35.518435,-97.574639,OKLAHOMA 73113,OKLAHOMA CITY,OK,35.5657,-97.5175,OKLAHOMA 73114,OKLAHOMA CITY,OK,35.570357,-97.525736,OKLAHOMA 73115,OKLAHOMA CITY,OK,35.440093,-97.441645,OKLAHOMA 73116,OKLAHOMA CITY,OK,35.542484,-97.56394,OKLAHOMA 73117,OKLAHOMA CITY,OK,35.479667,-97.472195,OKLAHOMA 73118,OKLAHOMA CITY,OK,35.513645,-97.531908,OKLAHOMA 73119,OKLAHOMA CITY,OK,35.421033,-97.561584,OKLAHOMA 73120,OKLAHOMA CITY,OK,35.583478,-97.563756,OKLAHOMA 73121,OKLAHOMA CITY,OK,35.506235,-97.445183,OKLAHOMA 73122,OKLAHOMA CITY,OK,35.520239,-97.613305,OKLAHOMA 73123,OKLAHOMA CITY,OK,35.537,-97.6228,OKLAHOMA 73124,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73125,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73126,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73127,OKLAHOMA CITY,OK,35.483371,-97.629927,OKLAHOMA 73128,OKLAHOMA CITY,OK,35.444358,-97.616362,OKLAHOMA 73129,OKLAHOMA CITY,OK,35.43119,-97.491309,OKLAHOMA 73130,OKLAHOMA CITY,OK,35.460863,-97.351489,OKLAHOMA 73131,OKLAHOMA CITY,OK,35.579693,-97.469127,OKLAHOMA 73132,OKLAHOMA CITY,OK,35.552783,-97.636333,OKLAHOMA 73134,OKLAHOMA CITY,OK,35.617397,-97.558342,OKLAHOMA 73135,OKLAHOMA CITY,OK,35.411037,-97.438762,OKLAHOMA 73136,OKLAHOMA CITY,OK,35.4946,-97.4778,OKLAHOMA 73137,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73139,OKLAHOMA CITY,OK,35.379193,-97.536205,OKLAHOMA 73140,OKLAHOMA CITY,OK,35.449444,-97.396389,OKLAHOMA 73141,OKLAHOMA CITY,OK,35.491848,-97.366606,OKLAHOMA 73142,OKLAHOMA CITY,OK,35.598994,-97.625067,OKLAHOMA 73143,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73144,OKLAHOMA CITY,OK,35.4087,-97.5548,OKLAHOMA 73146,OKLAHOMA CITY,OK,35.4945,-97.53,OKLAHOMA 73147,OKLAHOMA CITY,OK,35.4861,-97.5817,OKLAHOMA 73148,OKLAHOMA CITY,OK,35.4546,-97.5543,OKLAHOMA 73149,OKLAHOMA CITY,OK,35.394998,-97.497175,OKLAHOMA 73150,OKLAHOMA CITY,OK,35.41231,-97.33308,OKLAHOMA 73151,OKLAHOMA CITY,OK,35.568508,-97.39057,OKLAHOMA 73152,OKLAHOMA CITY,OK,35.4933,-97.505,OKLAHOMA 73153,OKLAHOMA CITY,OK,35.3337,-97.4922,CLEVELAND 73154,OKLAHOMA CITY,OK,35.5235,-97.5249,OKLAHOMA 73155,OKLAHOMA CITY,OK,35.4203,-97.4376,OKLAHOMA 73156,OKLAHOMA CITY,OK,35.5659,-97.5489,OKLAHOMA 73157,OKLAHOMA CITY,OK,35.5109,-97.5658,OKLAHOMA 73159,OKLAHOMA CITY,OK,35.39224,-97.55674,OKLAHOMA 73160,OKLAHOMA CITY,OK,35.342465,-97.487352,CLEVELAND 73162,OKLAHOMA CITY,OK,35.580647,-97.641934,OKLAHOMA 73163,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73164,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73165,OKLAHOMA CITY,OK,35.337086,-97.349792,CLEVELAND 73167,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73169,OKLAHOMA CITY,OK,35.388233,-97.658683,OKLAHOMA 73170,OKLAHOMA CITY,OK,35.341554,-97.536,CLEVELAND 73172,OKLAHOMA CITY,OK,35.5797,-97.6449,OKLAHOMA 73173,OKLAHOMA CITY,OK,35.342455,-97.63171,OKLAHOMA 73178,OKLAHOMA CITY,OK,35.5368,-97.565,OKLAHOMA 73179,OKLAHOMA CITY,OK,35.424157,-97.654729,OKLAHOMA 73184,OKLAHOMA CITY,OK,35.6166,-97.568,OKLAHOMA 73185,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73189,OKLAHOMA CITY,OK,35.3929,-97.579,CLEVELAND 73190,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73193,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73194,OKLAHOMA CITY,OK,35.5182,-97.5025,OKLAHOMA 73195,OKLAHOMA CITY,OK,35.4678,-97.5164,OKLAHOMA 73196,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73197,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73198,OKLAHOMA CITY,OK,35.5277,-97.569,OKLAHOMA 73199,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73301,AUSTIN,TX,30.2303,-97.7144,TRAVIS 73344,AUSTIN,TX,30.1798,-97.729,TRAVIS 74101,TULSA,OK,36.1504,-95.9953,TULSA 74102,TULSA,OK,36.1504,-95.9953,TULSA 74103,TULSA,OK,36.153858,-95.995426,TULSA 74104,TULSA,OK,36.146446,-95.952566,TULSA 74105,TULSA,OK,36.094808,-95.965544,TULSA 74106,TULSA,OK,36.188296,-95.985956,TULSA 74107,TULSA,OK,36.104199,-96.024448,TULSA 74108,TULSA,OK,36.149893,-95.792311,TULSA 74110,TULSA,OK,36.180296,-95.952492,TULSA 74112,TULSA,OK,36.147039,-95.907036,TULSA 74114,TULSA,OK,36.126152,-95.940796,TULSA 74115,TULSA,OK,36.175408,-95.911183,TULSA 74116,TULSA,OK,36.174994,-95.847695,TULSA 74117,TULSA,OK,36.27949,-95.910768,TULSA 74119,TULSA,OK,36.140688,-95.990194,TULSA 74120,TULSA,OK,36.144228,-95.973373,TULSA 74121,TULSA,OK,36.1504,-95.9953,TULSA 74126,TULSA,OK,36.238288,-95.993113,TULSA 74127,TULSA,OK,36.157636,-96.03107,TULSA 74128,TULSA,OK,36.145927,-95.851377,TULSA 74129,TULSA,OK,36.125928,-95.865354,TULSA 74130,TULSA,OK,36.239481,-95.959649,TULSA 74131,TULSA,OK,36.05566,-96.060229,CREEK 74132,TULSA,OK,36.063971,-96.025104,TULSA 74133,TULSA,OK,36.046717,-95.884062,TULSA 74134,TULSA,OK,36.116223,-95.822472,TULSA 74135,TULSA,OK,36.097603,-95.922805,TULSA 74136,TULSA,OK,36.060548,-95.945178,TULSA 74137,TULSA,OK,36.028426,-95.930597,TULSA 74141,TULSA,OK,36.1303,-95.8752,TULSA 74145,TULSA,OK,36.093433,-95.885576,TULSA 74146,TULSA,OK,36.109293,-95.85061,TULSA 74147,TULSA,OK,36.0969,-95.8861,TULSA 74148,TULSA,OK,36.191,-95.9856,TULSA 74149,TULSA,OK,36.1607,-96.036,TULSA 74150,TULSA,OK,36.1592,-95.9578,TULSA 74152,TULSA,OK,36.1538,-95.9925,TULSA 74153,TULSA,OK,36.0888,-95.9058,TULSA 74155,TULSA,OK,36.097,-95.8775,TULSA 74156,TULSA,OK,36.2481,-95.9752,TULSA 74157,TULSA,OK,36.1011,-96.036,TULSA 74158,TULSA,OK,36.1661,-95.9176,TULSA 74159,TULSA,OK,36.1414,-95.9595,TULSA 74169,TULSA,OK,36.1218,-95.8327,TULSA 74170,TULSA,OK,36.0626,-95.9604,TULSA 74171,TULSA,OK,36.0513,-95.9577,TULSA 74172,TULSA,OK,36.1549,-95.9916,TULSA 74182,TULSA,OK,36.1504,-95.9953,TULSA 74183,TULSA,OK,36.0616,-95.9412,TULSA 74184,TULSA,OK,36.0616,-95.9412,TULSA 74186,TULSA,OK,36.1504,-95.9953,TULSA 74187,TULSA,OK,36.1504,-95.9953,TULSA 74189,TULSA,OK,36.1504,-95.9953,TULSA 74192,TULSA,OK,36.1504,-95.9953,TULSA 74193,TULSA,OK,36.1504,-95.9953,TULSA 74194,TULSA,OK,36.1504,-95.9953,TULSA 75014,IRVING,TX,32.842,-96.9719,DALLAS 75015,IRVING,TX,32.8297,-96.9815,DALLAS 75016,IRVING,TX,32.8138,-96.9486,DALLAS 75017,IRVING,TX,32.8118,-96.9473,DALLAS 75023,PLANO,TX,33.054972,-96.736454,COLLIN 75024,PLANO,TX,33.075211,-96.784307,COLLIN 75025,PLANO,TX,33.078377,-96.729142,COLLIN 75026,PLANO,TX,33.0378,-96.7334,COLLIN 75037,IRVING,TX,32.7833,-96.8,DALLAS 75038,IRVING,TX,32.865309,-96.990503,DALLAS 75039,IRVING,TX,32.869669,-96.938876,DALLAS 75040,GARLAND,TX,32.922744,-96.624804,DALLAS 75041,GARLAND,TX,32.87937,-96.641115,DALLAS 75042,GARLAND,TX,32.918486,-96.677545,DALLAS 75043,GARLAND,TX,32.856502,-96.599882,DALLAS 75044,GARLAND,TX,32.952228,-96.665383,DALLAS 75045,GARLAND,TX,32.945,-96.6822,DALLAS 75046,GARLAND,TX,32.9158,-96.6419,DALLAS 75047,GARLAND,TX,32.8766,-96.6477,DALLAS 75049,GARLAND,TX,32.8565,-96.6031,DALLAS 75060,IRVING,TX,32.80231,-96.959665,DALLAS 75061,IRVING,TX,32.826658,-96.963256,DALLAS 75062,IRVING,TX,32.847854,-96.974027,DALLAS 75063,IRVING,TX,32.924686,-96.959817,DALLAS 75074,PLANO,TX,33.027722,-96.67771,COLLIN 75075,PLANO,TX,33.024985,-96.739743,COLLIN 75086,PLANO,TX,33.0234,-96.6986,COLLIN 75093,PLANO,TX,33.029866,-96.788903,COLLIN 75094,PLANO,TX,33.004873,-96.609101,COLLIN 75149,MESQUITE,TX,32.767821,-96.608219,DALLAS 75150,MESQUITE,TX,32.815416,-96.630681,DALLAS 75180,MESQUITE,TX,32.720216,-96.615278,DALLAS 75181,MESQUITE,TX,32.727166,-96.566889,DALLAS 75185,MESQUITE,TX,32.7666,-96.5988,DALLAS 75187,MESQUITE,TX,32.7666,-96.5988,DALLAS 75201,DALLAS,TX,32.790439,-96.80439,DALLAS 75202,DALLAS,TX,32.778056,-96.805352,DALLAS 75203,DALLAS,TX,32.745985,-96.806976,DALLAS 75204,DALLAS,TX,32.803814,-96.785144,DALLAS 75205,DALLAS,TX,32.836878,-96.793828,DALLAS 75206,DALLAS,TX,32.831029,-96.769219,DALLAS 75207,DALLAS,TX,32.793897,-96.831871,DALLAS 75208,DALLAS,TX,32.749208,-96.838898,DALLAS 75209,DALLAS,TX,32.84564,-96.825984,DALLAS 75210,DALLAS,TX,32.769919,-96.742974,DALLAS 75211,DALLAS,TX,32.736928,-96.881797,DALLAS 75212,DALLAS,TX,32.782884,-96.871396,DALLAS 75214,DALLAS,TX,32.824789,-96.749774,DALLAS 75215,DALLAS,TX,32.758206,-96.76226,DALLAS 75216,DALLAS,TX,32.708611,-96.795488,DALLAS 75217,DALLAS,TX,32.724429,-96.675481,DALLAS 75218,DALLAS,TX,32.846335,-96.697212,DALLAS 75219,DALLAS,TX,32.813245,-96.814166,DALLAS 75220,DALLAS,TX,32.868131,-96.862202,DALLAS 75221,DALLAS,TX,32.7836,-96.7986,DALLAS 75222,DALLAS,TX,32.7833,-96.8,DALLAS 75223,DALLAS,TX,32.794173,-96.747475,DALLAS 75224,DALLAS,TX,32.711415,-96.838711,DALLAS 75225,DALLAS,TX,32.862808,-96.791753,DALLAS 75226,DALLAS,TX,32.78871,-96.767552,DALLAS 75227,DALLAS,TX,32.767226,-96.683586,DALLAS 75228,DALLAS,TX,32.824997,-96.678378,DALLAS 75229,DALLAS,TX,32.8958,-96.8588,DALLAS 75230,DALLAS,TX,32.89994,-96.789679,DALLAS 75231,DALLAS,TX,32.875621,-96.74953,DALLAS 75232,DALLAS,TX,32.664708,-96.838392,DALLAS 75233,DALLAS,TX,32.704638,-96.872547,DALLAS 75234,DALLAS,TX,32.929803,-96.876848,DALLAS 75235,DALLAS,TX,32.825213,-96.838843,DALLAS 75236,DALLAS,TX,32.690002,-96.917737,DALLAS 75237,DALLAS,TX,32.658972,-96.876453,DALLAS 75238,DALLAS,TX,32.876976,-96.707982,DALLAS 75240,DALLAS,TX,32.937431,-96.787214,DALLAS 75241,DALLAS,TX,32.672216,-96.777421,DALLAS 75242,DALLAS,TX,32.7833,-96.8,DALLAS 75243,DALLAS,TX,32.910347,-96.728472,DALLAS 75244,DALLAS,TX,32.925817,-96.842533,DALLAS 75245,DALLAS,TX,32.8207,-96.8398,DALLAS 75246,DALLAS,TX,32.79484,-96.769696,DALLAS 75247,DALLAS,TX,32.801323,-96.887123,DALLAS 75248,DALLAS,TX,32.968199,-96.794242,DALLAS 75249,DALLAS,TX,32.636024,-96.949266,DALLAS 75250,DALLAS,TX,32.7801,-96.8014,DALLAS 75251,DALLAS,TX,32.912203,-96.771831,DALLAS 75252,DALLAS,TX,32.996848,-96.792113,COLLIN 75253,DALLAS,TX,32.683311,-96.59643,DALLAS 75254,DALLAS,TX,32.9464,-96.8022,DALLAS 75258,DALLAS,TX,32.8092,-96.8894,DALLAS 75260,DALLAS,TX,32.7833,-96.8,DALLAS 75261,DALLAS,TX,32.8939,-97.0404,DALLAS 75262,DALLAS,TX,32.7833,-96.8,DALLAS 75263,DALLAS,TX,32.7833,-96.8,DALLAS 75264,DALLAS,TX,32.7833,-96.8,DALLAS 75265,DALLAS,TX,32.7833,-96.8,DALLAS 75266,DALLAS,TX,32.7833,-96.8,DALLAS 75267,DALLAS,TX,32.7833,-96.8,DALLAS 75270,DALLAS,TX,32.7807,-96.8015,DALLAS 75275,DALLAS,TX,32.8351,-96.7848,DALLAS 75277,DALLAS,TX,32.7833,-96.8,DALLAS 75283,DALLAS,TX,32.8366,-96.7963,DALLAS 75284,DALLAS,TX,32.8366,-96.7963,DALLAS 75285,DALLAS,TX,32.7833,-96.8,DALLAS 75286,DALLAS,TX,32.7833,-96.8,DALLAS 75287,DALLAS,TX,33.000458,-96.83143,COLLIN 75301,DALLAS,TX,32.7833,-96.8,DALLAS 75303,DALLAS,TX,32.7833,-96.8,DALLAS 75310,DALLAS,TX,32.7833,-96.8,DALLAS 75312,DALLAS,TX,32.7833,-96.8,DALLAS 75313,DALLAS,TX,32.7833,-96.8,DALLAS 75315,DALLAS,TX,32.7739,-96.7689,DALLAS 75320,DALLAS,TX,32.7833,-96.8,DALLAS 75323,DALLAS,TX,32.9698,-96.8001,DALLAS 75326,DALLAS,TX,32.8633,-96.9804,DALLAS 75334,DALLAS,TX,32.8375,-96.8653,DALLAS 75336,DALLAS,TX,32.6713,-96.6193,DALLAS 75339,DALLAS,TX,32.7144,-96.7835,DALLAS 75340,DALLAS,TX,32.8375,-96.8653,DALLAS 75342,DALLAS,TX,32.809,-96.8894,DALLAS 75343,DALLAS,TX,32.8375,-96.8653,DALLAS 75344,DALLAS,TX,32.8375,-96.8653,DALLAS 75353,DALLAS,TX,32.7833,-96.8,DALLAS 75354,DALLAS,TX,32.8601,-96.8869,DALLAS 75355,DALLAS,TX,32.8791,-96.708,DALLAS 75356,DALLAS,TX,32.8092,-96.8894,DALLAS 75357,DALLAS,TX,32.7833,-96.8,DALLAS 75358,DALLAS,TX,32.9397,-96.8722,DALLAS 75359,DALLAS,TX,32.8136,-96.7559,DALLAS 75360,DALLAS,TX,32.8282,-96.7456,DALLAS 75363,DALLAS,TX,32.9382,-96.7932,DALLAS 75364,DALLAS,TX,32.7833,-96.8,DALLAS 75367,DALLAS,TX,32.9022,-96.7921,DALLAS 75368,DALLAS,TX,32.9207,-96.9762,DALLAS 75370,DALLAS,TX,32.9899,-96.831,DALLAS 75371,DALLAS,TX,32.7739,-96.7689,DALLAS 75372,DALLAS,TX,32.8417,-96.7723,DALLAS 75373,DALLAS,TX,32.7833,-96.8,DALLAS 75374,DALLAS,TX,32.9133,-96.7439,DALLAS 75376,DALLAS,TX,32.7107,-96.8388,DALLAS 75378,DALLAS,TX,32.894,-96.8697,DALLAS 75379,DALLAS,TX,32.9382,-96.7932,DALLAS 75380,DALLAS,TX,32.9335,-96.8172,DALLAS 75381,DALLAS,TX,32.9439,-96.8899,DALLAS 75382,DALLAS,TX,32.8775,-96.7492,DALLAS 75386,DALLAS,TX,32.786667,-96.802222,DALLAS 75387,DALLAS,TX,32.7833,-96.8,DALLAS 75388,DALLAS,TX,32.7833,-96.8,DALLAS 75389,DALLAS,TX,32.7833,-96.8,DALLAS 75390,DALLAS,TX,32.8126,-96.8384,DALLAS 75391,DALLAS,TX,32.8366,-96.7963,DALLAS 75392,DALLAS,TX,32.7833,-96.8,DALLAS 75393,DALLAS,TX,32.7833,-96.8,DALLAS 75394,DALLAS,TX,32.7833,-96.8,DALLAS 75395,DALLAS,TX,32.7107,-96.8388,DALLAS 75396,DALLAS,TX,32.7833,-96.8,DALLAS 75397,DALLAS,TX,32.7833,-96.8,DALLAS 75398,DALLAS,TX,32.7833,-96.8,DALLAS 75501,TEXARKANA,TX,33.407371,-94.118245,BOWIE 75503,TEXARKANA,TX,33.466906,-94.077374,BOWIE 75504,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75505,TEXARKANA,TX,33.425,-94.0475,BOWIE 75507,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75599,TEXARKANA,TX,33.4425,-94.0776,BOWIE 75601,LONGVIEW,TX,32.526854,-94.72328,GREGG 75602,LONGVIEW,TX,32.472373,-94.710078,GREGG 75603,LONGVIEW,TX,32.426368,-94.711691,GREGG 75604,LONGVIEW,TX,32.525139,-94.798957,GREGG 75605,LONGVIEW,TX,32.554711,-94.776748,GREGG 75606,LONGVIEW,TX,32.4955,-94.7377,GREGG 75607,LONGVIEW,TX,32.4628,-94.7305,GREGG 75608,LONGVIEW,TX,32.5005,-94.7402,GREGG 75615,LONGVIEW,TX,32.4628,-94.7305,GREGG 75701,TYLER,TX,32.325366,-95.292179,SMITH 75702,TYLER,TX,32.361969,-95.311652,SMITH 75703,TYLER,TX,32.276827,-95.303147,SMITH 75704,TYLER,TX,32.373781,-95.406977,SMITH 75705,TYLER,TX,32.376599,-95.125225,SMITH 75706,TYLER,TX,32.444148,-95.330993,SMITH 75707,TYLER,TX,32.303782,-95.192692,SMITH 75708,TYLER,TX,32.389193,-95.244354,SMITH 75709,TYLER,TX,32.307817,-95.395563,SMITH 75710,TYLER,TX,32.3511,-95.3008,SMITH 75711,TYLER,TX,32.3511,-95.3008,SMITH 75712,TYLER,TX,32.3511,-95.3008,SMITH 75713,TYLER,TX,32.3511,-95.3008,SMITH 75798,TYLER,TX,32.3325,-95.2848,SMITH 75799,TYLER,TX,32.3132,-95.2457,SMITH 76001,ARLINGTON,TX,32.6336,-97.1469,TARRANT 76002,ARLINGTON,TX,32.6252,-97.0977,TARRANT 76003,ARLINGTON,TX,32.6578,-97.1723,TARRANT 76004,ARLINGTON,TX,32.7344,-97.1043,TARRANT 76005,ARLINGTON,TX,32.7531,-97.0591,TARRANT 76006,ARLINGTON,TX,32.778494,-97.083425,TARRANT 76007,ARLINGTON,TX,32.7204,-97.0822,TARRANT 76010,ARLINGTON,TX,32.720368,-97.082576,TARRANT 76011,ARLINGTON,TX,32.758236,-97.100302,TARRANT 76012,ARLINGTON,TX,32.753962,-97.134808,TARRANT 76013,ARLINGTON,TX,32.719905,-97.14416,TARRANT 76014,ARLINGTON,TX,32.695425,-97.087556,TARRANT 76015,ARLINGTON,TX,32.693125,-97.134685,TARRANT 76016,ARLINGTON,TX,32.688898,-97.190466,TARRANT 76017,ARLINGTON,TX,32.65545,-97.159899,TARRANT 76018,ARLINGTON,TX,32.654752,-97.091987,TARRANT 76019,ARLINGTON,TX,32.7286,-97.1159,TARRANT 76094,ARLINGTON,TX,32.7234,-97.1487,TARRANT 76096,ARLINGTON,TX,32.621,-97.0718,TARRANT 76101,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76102,FORT WORTH,TX,32.758897,-97.328023,TARRANT 76103,FORT WORTH,TX,32.747005,-97.260394,TARRANT 76104,FORT WORTH,TX,32.725551,-97.318409,TARRANT 76105,FORT WORTH,TX,32.723325,-97.26899,TARRANT 76106,FORT WORTH,TX,32.796849,-97.356008,TARRANT 76107,FORT WORTH,TX,32.739175,-97.385248,TARRANT 76108,FORT WORTH,TX,32.759271,-97.474063,TARRANT 76109,FORT WORTH,TX,32.700246,-97.378876,TARRANT 76110,FORT WORTH,TX,32.706505,-97.337505,TARRANT 76111,FORT WORTH,TX,32.782382,-97.300327,TARRANT 76112,FORT WORTH,TX,32.749297,-97.218122,TARRANT 76113,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76114,FORT WORTH,TX,32.775379,-97.401526,TARRANT 76115,FORT WORTH,TX,32.679618,-97.333634,TARRANT 76116,FORT WORTH,TX,32.723032,-97.448279,TARRANT 76118,FORT WORTH,TX,32.808944,-97.222781,TARRANT 76119,FORT WORTH,TX,32.691379,-97.267492,TARRANT 76120,FORT WORTH,TX,32.763912,-97.178112,TARRANT 76121,FORT WORTH,TX,32.7314,-97.4503,TARRANT 76122,FORT WORTH,TX,32.6824,-97.3469,TARRANT 76123,FORT WORTH,TX,32.625361,-97.365838,TARRANT 76124,FORT WORTH,TX,32.7471,-97.2159,TARRANT 76126,FORT WORTH,TX,32.670023,-97.464141,TARRANT 76129,FORT WORTH,TX,32.7108,-97.3602,TARRANT 76130,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76131,FORT WORTH,TX,32.863156,-97.337656,TARRANT 76132,FORT WORTH,TX,32.671092,-97.405626,TARRANT 76133,FORT WORTH,TX,32.652561,-97.375849,TARRANT 76134,FORT WORTH,TX,32.646886,-97.332467,TARRANT 76135,FORT WORTH,TX,32.824844,-97.45191,TARRANT 76136,FORT WORTH,TX,32.8967,-97.457,TARRANT 76137,FORT WORTH,TX,32.866421,-97.289114,TARRANT 76140,FORT WORTH,TX,32.631332,-97.270406,TARRANT 76147,FORT WORTH,TX,32.751,-97.364,TARRANT 76148,FORT WORTH,TX,32.8681,-97.249029,TARRANT 76150,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76155,FORT WORTH,TX,32.824742,-97.050285,TARRANT 76161,FORT WORTH,TX,32.8245,-97.3208,TARRANT 76162,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76163,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76164,FORT WORTH,TX,32.7822,-97.3564,TARRANT 76166,FORT WORTH,TX,32.725409,-97.3208496,TARRANT 76177,FORT WORTH,TX,32.901017,-97.332671,TARRANT 76179,FORT WORTH,TX,32.872961,-97.403149,TARRANT 76181,FORT WORTH,TX,32.8548,-97.2117,TARRANT 76185,FORT WORTH,TX,32.8647,-97.2151,TARRANT 76191,FORT WORTH,TX,32.8068,-97.3515,TARRANT 76192,FORT WORTH,TX,32.9295,-97.4351,TARRANT 76193,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76195,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76196,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76197,FORT WORTH,TX,32.7789,-97.2995,TARRANT 76198,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76199,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76201,DENTON,TX,33.22893,-97.131436,DENTON 76202,DENTON,TX,33.2147,-97.1327,DENTON 76203,DENTON,TX,33.2147,-97.1327,DENTON 76204,DENTON,TX,33.2147,-97.1327,DENTON 76205,DENTON,TX,33.180106,-97.101833,DENTON 76206,DENTON,TX,33.2566,-97.1536,DENTON 76207,DENTON,TX,33.2404,-97.1649,DENTON 76208,DENTON,TX,33.2031,-97.0642,DENTON 76209,DENTON,TX,33.2343,-97.1119,DENTON 76210,DENTON,TX,33.1511,-97.0905,DENTON 76301,WICHITA FALLS,TX,33.905284,-98.497645,WICHITA 76302,WICHITA FALLS,TX,33.864278,-98.493987,WICHITA 76305,WICHITA FALLS,TX,33.937345,-98.540679,WICHITA 76306,WICHITA FALLS,TX,33.974595,-98.524835,WICHITA 76307,WICHITA FALLS,TX,33.913611,-98.493056,WICHITA 76308,WICHITA FALLS,TX,33.863258,-98.533965,WICHITA 76309,WICHITA FALLS,TX,33.893084,-98.534288,WICHITA 76310,WICHITA FALLS,TX,33.858122,-98.575548,WICHITA 76501,TEMPLE,TX,31.089518,-97.334264,BELL 76502,TEMPLE,TX,31.071004,-97.389781,BELL 76503,TEMPLE,TX,31.1006,-97.3391,BELL 76504,TEMPLE,TX,31.091742,-97.364764,BELL 76505,TEMPLE,TX,31.0183,-97.3279,BELL 76508,TEMPLE,TX,31.1006,-97.3391,BELL 76540,KILLEEN,TX,31.117,-97.7261,BELL 76541,KILLEEN,TX,31.116426,-97.727808,BELL 76542,KILLEEN,TX,31.075056,-97.746736,BELL 76543,KILLEEN,TX,31.100505,-97.676864,BELL 76544,KILLEEN,TX,31.137953,-97.776404,BELL 76545,KILLEEN,TX,31.1169,-97.7275,BELL 76546,KILLEEN,TX,31.1169,-97.7275,BELL 76547,KILLEEN,TX,31.1169,-97.7275,BELL 76549,KILLEEN,TX,31.0839,-97.7818,BELL 76701,WACO,TX,31.552452,-97.139608,MCLENNAN 76702,WACO,TX,31.4721,-97.2468,MCLENNAN 76703,WACO,TX,31.5517,-97.1384,MCLENNAN 76704,WACO,TX,31.575701,-97.126742,MCLENNAN 76705,WACO,TX,31.610787,-97.094575,MCLENNAN 76706,WACO,TX,31.517086,-97.119752,MCLENNAN 76707,WACO,TX,31.552709,-97.158824,MCLENNAN 76708,WACO,TX,31.576544,-97.178635,MCLENNAN 76710,WACO,TX,31.534981,-97.189891,MCLENNAN 76711,WACO,TX,31.519863,-97.150254,MCLENNAN 76714,WACO,TX,31.5283,-97.1917,MCLENNAN 76715,WACO,TX,31.6032,-97.0796,MCLENNAN 76716,WACO,TX,31.4535,-97.0983,MCLENNAN 76795,WACO,TX,31.4721,-97.2468,MCLENNAN 76797,WACO,TX,31.5359,-97.1918,MCLENNAN 76798,WACO,TX,31.5446,-97.1192,MCLENNAN 76799,WACO,TX,31.5359,-97.1918,MCLENNAN 76901,SAN ANGELO,TX,31.478165,-100.481752,TOM GREEN 76902,SAN ANGELO,TX,31.5571,-100.5506,TOM GREEN 76903,SAN ANGELO,TX,31.470735,-100.438586,TOM GREEN 76904,SAN ANGELO,TX,31.419411,-100.480036,TOM GREEN 76905,SAN ANGELO,TX,31.464738,-100.390005,TOM GREEN 76906,SAN ANGELO,TX,31.4636,-100.4366,TOM GREEN 76909,SAN ANGELO,TX,31.4432,-100.4661,TOM GREEN 77001,HOUSTON,TX,29.7652,-95.3657,HARRIS 77002,HOUSTON,TX,29.759366,-95.359361,HARRIS 77003,HOUSTON,TX,29.748903,-95.339108,HARRIS 77004,HOUSTON,TX,29.724687,-95.362546,HARRIS 77005,HOUSTON,TX,29.717856,-95.426261,HARRIS 77006,HOUSTON,TX,29.740899,-95.392255,HARRIS 77007,HOUSTON,TX,29.773603,-95.403421,HARRIS 77008,HOUSTON,TX,29.799096,-95.411797,HARRIS 77009,HOUSTON,TX,29.793558,-95.367481,HARRIS 77010,HOUSTON,TX,29.75125,-95.356549,HARRIS 77011,HOUSTON,TX,29.741992,-95.307262,HARRIS 77012,HOUSTON,TX,29.71491,-95.281925,HARRIS 77013,HOUSTON,TX,29.784169,-95.230134,HARRIS 77014,HOUSTON,TX,29.979637,-95.462497,HARRIS 77015,HOUSTON,TX,29.785287,-95.185189,HARRIS 77016,HOUSTON,TX,29.857855,-95.303199,HARRIS 77017,HOUSTON,TX,29.686301,-95.255485,HARRIS 77018,HOUSTON,TX,29.827166,-95.426631,HARRIS 77019,HOUSTON,TX,29.751651,-95.40539,HARRIS 77020,HOUSTON,TX,29.775759,-95.312101,HARRIS 77021,HOUSTON,TX,29.69538,-95.356151,HARRIS 77022,HOUSTON,TX,29.829862,-95.376862,HARRIS 77023,HOUSTON,TX,29.724179,-95.317777,HARRIS 77024,HOUSTON,TX,29.76958,-95.520063,HARRIS 77025,HOUSTON,TX,29.688897,-95.434107,HARRIS 77026,HOUSTON,TX,29.797168,-95.328775,HARRIS 77027,HOUSTON,TX,29.739571,-95.446032,HARRIS 77028,HOUSTON,TX,29.829657,-95.287886,HARRIS 77029,HOUSTON,TX,29.760326,-95.254861,HARRIS 77030,HOUSTON,TX,29.70372,-95.40619,HARRIS 77031,HOUSTON,TX,29.658144,-95.541281,HARRIS 77032,HOUSTON,TX,29.93676,-95.329883,HARRIS 77033,HOUSTON,TX,29.668566,-95.338157,HARRIS 77034,HOUSTON,TX,29.636395,-95.221615,HARRIS 77035,HOUSTON,TX,29.651833,-95.485368,HARRIS 77036,HOUSTON,TX,29.698447,-95.540464,HARRIS 77037,HOUSTON,TX,29.889161,-95.393515,HARRIS 77038,HOUSTON,TX,29.91956,-95.438601,HARRIS 77039,HOUSTON,TX,29.906731,-95.33338,HARRIS 77040,HOUSTON,TX,29.879613,-95.529969,HARRIS 77041,HOUSTON,TX,29.860187,-95.581663,HARRIS 77042,HOUSTON,TX,29.740446,-95.558895,HARRIS 77043,HOUSTON,TX,29.805181,-95.560734,HARRIS 77044,HOUSTON,TX,29.863485,-95.19757,HARRIS 77045,HOUSTON,TX,29.629717,-95.438166,HARRIS 77046,HOUSTON,TX,29.73279,-95.431845,HARRIS 77047,HOUSTON,TX,29.625443,-95.374993,HARRIS 77048,HOUSTON,TX,29.632097,-95.341606,HARRIS 77049,HOUSTON,TX,29.823471,-95.184815,HARRIS 77050,HOUSTON,TX,29.901456,-95.284837,HARRIS 77051,HOUSTON,TX,29.65792,-95.368763,HARRIS 77052,HOUSTON,TX,29.7577,-95.361,HARRIS 77053,HOUSTON,TX,29.596156,-95.458709,FORT BEND 77054,HOUSTON,TX,29.685209,-95.401677,HARRIS 77055,HOUSTON,TX,29.797064,-95.495787,HARRIS 77056,HOUSTON,TX,29.744584,-95.468282,HARRIS 77057,HOUSTON,TX,29.74217,-95.490253,HARRIS 77058,HOUSTON,TX,29.574787,-95.057413,HARRIS 77059,HOUSTON,TX,29.597493,-95.113354,HARRIS 77060,HOUSTON,TX,29.933462,-95.398061,HARRIS 77061,HOUSTON,TX,29.665221,-95.278987,HARRIS 77062,HOUSTON,TX,29.572084,-95.130292,HARRIS 77063,HOUSTON,TX,29.734843,-95.522039,HARRIS 77064,HOUSTON,TX,29.918981,-95.556894,HARRIS 77065,HOUSTON,TX,29.931933,-95.61063,HARRIS 77066,HOUSTON,TX,29.961027,-95.494717,HARRIS 77067,HOUSTON,TX,29.954717,-95.452158,HARRIS 77068,HOUSTON,TX,30.006867,-95.489661,HARRIS 77069,HOUSTON,TX,29.986292,-95.520827,HARRIS 77070,HOUSTON,TX,29.978099,-95.58027,HARRIS 77071,HOUSTON,TX,29.651838,-95.517554,HARRIS 77072,HOUSTON,TX,29.699026,-95.586155,HARRIS 77073,HOUSTON,TX,30.019767,-95.408671,HARRIS 77074,HOUSTON,TX,29.689601,-95.510588,HARRIS 77075,HOUSTON,TX,29.622276,-95.259983,HARRIS 77076,HOUSTON,TX,29.85801,-95.383442,HARRIS 77077,HOUSTON,TX,29.747656,-95.602991,HARRIS 77078,HOUSTON,TX,29.849724,-95.258208,HARRIS 77079,HOUSTON,TX,29.773759,-95.597993,HARRIS 77080,HOUSTON,TX,29.815854,-95.522986,HARRIS 77081,HOUSTON,TX,29.711926,-95.484531,HARRIS 77082,HOUSTON,TX,29.722283,-95.628533,HARRIS 77083,HOUSTON,TX,29.694709,-95.651098,HARRIS 77084,HOUSTON,TX,29.844022,-95.662329,HARRIS 77085,HOUSTON,TX,29.621787,-95.481945,HARRIS 77086,HOUSTON,TX,29.922667,-95.493868,HARRIS 77087,HOUSTON,TX,29.687579,-95.301062,HARRIS 77088,HOUSTON,TX,29.881694,-95.453877,HARRIS 77089,HOUSTON,TX,29.593978,-95.221786,HARRIS 77090,HOUSTON,TX,30.016673,-95.447002,HARRIS 77091,HOUSTON,TX,29.853448,-95.443521,HARRIS 77092,HOUSTON,TX,29.832391,-95.472031,HARRIS 77093,HOUSTON,TX,29.861661,-95.340286,HARRIS 77094,HOUSTON,TX,29.770536,-95.710742,HARRIS 77095,HOUSTON,TX,29.894115,-95.648082,HARRIS 77096,HOUSTON,TX,29.672205,-95.486066,HARRIS 77097,HOUSTON,TX,29.7652,-95.3657,HARRIS 77098,HOUSTON,TX,29.734987,-95.411778,HARRIS 77099,HOUSTON,TX,29.670869,-95.586613,HARRIS 77201,HOUSTON,TX,29.7652,-95.3657,HARRIS 77202,HOUSTON,TX,29.763,-95.363,HARRIS 77203,HOUSTON,TX,29.763,-95.363,HARRIS 77204,HOUSTON,TX,29.763,-95.363,HARRIS 77205,HOUSTON,TX,29.982,-95.3427,HARRIS 77206,HOUSTON,TX,29.8267,-95.4259,HARRIS 77207,HOUSTON,TX,29.6858,-95.3031,HARRIS 77208,HOUSTON,TX,29.763,-95.363,HARRIS 77209,HOUSTON,TX,29.6198,-95.1882,HARRIS 77210,HOUSTON,TX,29.7652,-95.3657,HARRIS 77212,HOUSTON,TX,29.763,-95.363,HARRIS 77213,HOUSTON,TX,29.7857,-95.2183,HARRIS 77215,HOUSTON,TX,29.7351,-95.5202,HARRIS 77216,HOUSTON,TX,29.763,-95.363,HARRIS 77217,HOUSTON,TX,29.6761,-95.2478,HARRIS 77218,HOUSTON,TX,29.7848,-95.6749,HARRIS 77219,HOUSTON,TX,29.7526,-95.4042,HARRIS 77220,HOUSTON,TX,29.7728,-95.312,HARRIS 77221,HOUSTON,TX,29.7037,-95.355,HARRIS 77222,HOUSTON,TX,29.8299,-95.3763,HARRIS 77223,HOUSTON,TX,29.7273,-95.3206,HARRIS 77224,HOUSTON,TX,29.763,-95.363,HARRIS 77225,HOUSTON,TX,29.6925,-95.4174,HARRIS 77226,HOUSTON,TX,29.7939,-95.3415,HARRIS 77227,HOUSTON,TX,29.7392,-95.4365,HARRIS 77228,HOUSTON,TX,29.8247,-95.2863,HARRIS 77229,HOUSTON,TX,29.7857,-95.2183,HARRIS 77230,HOUSTON,TX,29.6958,-95.3873,HARRIS 77231,HOUSTON,TX,29.6536,-95.4825,HARRIS 77233,HOUSTON,TX,29.763056,-95.363056,HARRIS 77234,HOUSTON,TX,29.6256,-95.2205,HARRIS 77235,HOUSTON,TX,29.6536,-95.4825,HARRIS 77236,HOUSTON,TX,29.7066,-95.4967,HARRIS 77237,HOUSTON,TX,29.7337,-95.499,HARRIS 77238,HOUSTON,TX,29.9207,-95.4425,HARRIS 77240,HOUSTON,TX,29.8573,-95.5374,HARRIS 77241,HOUSTON,TX,29.8573,-95.5374,HARRIS 77242,HOUSTON,TX,29.7316,-95.5596,HARRIS 77243,HOUSTON,TX,29.8157,-95.5204,HARRIS 77244,HOUSTON,TX,29.7459,-95.6096,HARRIS 77245,HOUSTON,TX,29.6135,-95.4213,HARRIS 77246,HOUSTON,TX,29.7369,-95.2607,HARRIS 77247,HOUSTON,TX,29.7369,-95.2607,HARRIS 77248,HOUSTON,TX,29.763,-95.363,HARRIS 77249,HOUSTON,TX,29.8033,-95.3727,HARRIS 77250,HOUSTON,TX,29.8308,-95.4748,HARRIS 77251,HOUSTON,TX,29.7005,-95.5363,HARRIS 77252,HOUSTON,TX,29.7652,-95.3657,HARRIS 77253,HOUSTON,TX,29.7652,-95.3657,HARRIS 77254,HOUSTON,TX,29.6797,-95.4055,HARRIS 77255,HOUSTON,TX,29.8014,-95.4928,HARRIS 77256,HOUSTON,TX,29.7392,-95.4365,HARRIS 77257,HOUSTON,TX,29.7337,-95.499,HARRIS 77258,HOUSTON,TX,29.5481,-95.0887,HARRIS 77259,HOUSTON,TX,29.5768,-95.1407,HARRIS 77260,HOUSTON,TX,29.763,-95.363,HARRIS 77261,HOUSTON,TX,29.674,-95.2464,HARRIS 77262,HOUSTON,TX,29.7233,-95.2784,HARRIS 77263,HOUSTON,TX,29.7298,-95.5174,HARRIS 77265,HOUSTON,TX,29.7247,-95.4413,HARRIS 77266,HOUSTON,TX,29.7469,-95.3935,HARRIS 77267,HOUSTON,TX,29.953,-95.4444,HARRIS 77268,HOUSTON,TX,30.0062,-95.4876,HARRIS 77269,HOUSTON,TX,29.9774,-95.5723,HARRIS 77270,HOUSTON,TX,29.763,-95.363,HARRIS 77271,HOUSTON,TX,29.7562,-95.3653,HARRIS 77272,HOUSTON,TX,29.6883,-95.5847,HARRIS 77273,HOUSTON,TX,30.0174,-95.4453,HARRIS 77274,HOUSTON,TX,29.7066,-95.4967,HARRIS 77275,HOUSTON,TX,29.7562,-95.3653,HARRIS 77276,HOUSTON,TX,29.7369,-95.2607,HARRIS 77277,HOUSTON,TX,29.7247,-95.4413,HARRIS 77278,HOUSTON,TX,29.7369,-95.2607,HARRIS 77279,HOUSTON,TX,29.763,-95.363,HARRIS 77280,HOUSTON,TX,29.8157,-95.5204,HARRIS 77282,HOUSTON,TX,29.7459,-95.6096,HARRIS 77284,HOUSTON,TX,29.763,-95.363,HARRIS 77285,HOUSTON,TX,29.7369,-95.2607,HARRIS 77286,HOUSTON,TX,29.7369,-95.2607,HARRIS 77287,HOUSTON,TX,29.6761,-95.2478,HARRIS 77288,HOUSTON,TX,29.7317,-95.3767,HARRIS 77289,HOUSTON,TX,29.5768,-95.1407,HARRIS 77290,HOUSTON,TX,30.0174,-95.4453,HARRIS 77291,HOUSTON,TX,29.9207,-95.4425,HARRIS 77292,HOUSTON,TX,29.8268,-95.426,HARRIS 77293,HOUSTON,TX,29.8692,-95.3265,HARRIS 77294,HOUSTON,TX,29.7369,-95.2607,HARRIS 77296,HOUSTON,TX,29.7369,-95.2607,HARRIS 77297,HOUSTON,TX,29.763,-95.363,HARRIS 77298,HOUSTON,TX,29.763,-95.363,HARRIS 77299,HOUSTON,TX,29.763,-95.363,HARRIS 77301,CONROE,TX,30.312535,-95.452667,MONTGOMERY 77302,CONROE,TX,30.250357,-95.416087,MONTGOMERY 77303,CONROE,TX,30.344456,-95.369725,MONTGOMERY 77304,CONROE,TX,30.327351,-95.495244,MONTGOMERY 77305,CONROE,TX,30.311667,-95.455833,MONTGOMERY 77306,CONROE,TX,30.333056,-95.357778,MONTGOMERY 77320,HUNTSVILLE,TX,30.7947,-95.5337,WALKER 77340,HUNTSVILLE,TX,30.73435,-95.534186,WALKER 77341,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77342,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77343,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77344,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77348,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77349,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77373,SPRING,TX,30.053241,-95.377329,HARRIS 77379,SPRING,TX,30.023377,-95.528481,HARRIS 77380,SPRING,TX,30.13739,-95.468944,MONTGOMERY 77381,SPRING,TX,30.168887,-95.500743,MONTGOMERY 77382,SPRING,TX,30.2042,-95.5308,MONTGOMERY 77383,SPRING,TX,30.0136,-95.5177,HARRIS 77384,CONROE,TX,30.225725,-95.492392,MONTGOMERY 77385,CONROE,TX,30.187695,-95.428789,MONTGOMERY 77386,SPRING,TX,30.128805,-95.423943,MONTGOMERY 77387,SPRING,TX,30.1356,-95.4151,MONTGOMERY 77388,SPRING,TX,30.050546,-95.469456,HARRIS 77389,SPRING,TX,30.104398,-95.506624,HARRIS 77391,SPRING,TX,30.0234,-95.5685,HARRIS 77393,SPRING,TX,30.1474,-95.5086,MONTGOMERY 77449,KATY,TX,29.819922,-95.729267,HARRIS 77450,KATY,TX,29.767632,-95.744506,HARRIS 77491,KATY,TX,29.8398,-95.7771,HARRIS 77492,KATY,TX,29.8398,-95.7771,HARRIS 77493,KATY,TX,29.804876,-95.815988,HARRIS 77494,KATY,TX,29.750893,-95.811675,FORT BEND 77501,PASADENA,TX,29.692,-95.2005,HARRIS 77502,PASADENA,TX,29.678945,-95.198193,HARRIS 77503,PASADENA,TX,29.687696,-95.15721,HARRIS 77504,PASADENA,TX,29.650133,-95.188478,HARRIS 77505,PASADENA,TX,29.651753,-95.146388,HARRIS 77506,PASADENA,TX,29.70087,-95.19895,HARRIS 77507,PASADENA,TX,29.6055,-95.079365,HARRIS 77508,PASADENA,TX,29.6653,-95.1482,HARRIS 77550,GALVESTON,TX,29.298272,-94.79297,GALVESTON 77551,GALVESTON,TX,29.276584,-94.830334,GALVESTON 77552,GALVESTON,TX,29.2821,-94.8147,GALVESTON 77553,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77554,GALVESTON,TX,29.229638,-94.913716,GALVESTON 77555,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77701,BEAUMONT,TX,30.068805,-94.103896,JEFFERSON 77702,BEAUMONT,TX,30.087057,-94.125412,JEFFERSON 77703,BEAUMONT,TX,30.113201,-94.119698,JEFFERSON 77704,BEAUMONT,TX,30.0839,-94.1014,JEFFERSON 77705,BEAUMONT,TX,30.021128,-94.115673,JEFFERSON 77706,BEAUMONT,TX,30.094834,-94.164816,JEFFERSON 77707,BEAUMONT,TX,30.068567,-94.175541,JEFFERSON 77708,BEAUMONT,TX,30.139957,-94.160357,JEFFERSON 77709,BEAUMONT,TX,30.175,-94.201667,JEFFERSON 77710,BEAUMONT,TX,30.0471,-94.0758,JEFFERSON 77713,BEAUMONT,TX,30.084996,-94.260719,JEFFERSON 77720,BEAUMONT,TX,30.0382,-94.158,JEFFERSON 77725,BEAUMONT,TX,30.0976,-94.1665,JEFFERSON 77726,BEAUMONT,TX,30.0932,-94.1463,JEFFERSON 77801,BRYAN,TX,30.632698,-96.36616,BRAZOS 77802,BRYAN,TX,30.658171,-96.335143,BRAZOS 77803,BRYAN,TX,30.691293,-96.371398,BRAZOS 77805,BRYAN,TX,30.7546,-96.3317,BRAZOS 77806,BRYAN,TX,30.7546,-96.3317,BRAZOS 77807,BRYAN,TX,30.6626,-96.4589,BRAZOS 77808,BRYAN,TX,30.774,-96.3085,BRAZOS 77840,COLLEGE STATION,TX,30.604476,-96.31227,BRAZOS 77841,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77842,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77843,COLLEGE STATION,TX,30.614738,-96.340001,BRAZOS 77844,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77845,COLLEGE STATION,TX,30.511811,-96.317113,BRAZOS 78040,LAREDO,TX,27.515538,-99.498579,WEBB 78041,LAREDO,TX,27.556933,-99.490653,WEBB 78042,LAREDO,TX,27.5063,-99.508,WEBB 78043,LAREDO,TX,27.481537,-99.465488,WEBB 78044,LAREDO,TX,27.9133,-99.438,WEBB 78045,LAREDO,TX,27.6136,-99.5182,WEBB 78046,LAREDO,TX,27.43,-99.4664,WEBB 78049,LAREDO,TX,27.9133,-99.438,WEBB 78201,SAN ANTONIO,TX,29.468525,-98.526352,BEXAR 78202,SAN ANTONIO,TX,29.427462,-98.460112,BEXAR 78203,SAN ANTONIO,TX,29.414799,-98.460127,BEXAR 78204,SAN ANTONIO,TX,29.400217,-98.5063,BEXAR 78205,SAN ANTONIO,TX,29.423711,-98.492509,BEXAR 78206,SAN ANTONIO,TX,29.4153,-98.4823,BEXAR 78207,SAN ANTONIO,TX,29.422855,-98.525967,BEXAR 78208,SAN ANTONIO,TX,29.440039,-98.458983,BEXAR 78209,SAN ANTONIO,TX,29.488623,-98.455774,BEXAR 78210,SAN ANTONIO,TX,29.397718,-98.465796,BEXAR 78211,SAN ANTONIO,TX,29.358366,-98.545219,BEXAR 78212,SAN ANTONIO,TX,29.461181,-98.495815,BEXAR 78213,SAN ANTONIO,TX,29.513406,-98.522679,BEXAR 78214,SAN ANTONIO,TX,29.364115,-98.492436,BEXAR 78215,SAN ANTONIO,TX,29.441338,-98.479338,BEXAR 78216,SAN ANTONIO,TX,29.533387,-98.497511,BEXAR 78217,SAN ANTONIO,TX,29.539525,-98.419444,BEXAR 78218,SAN ANTONIO,TX,29.496852,-98.403184,BEXAR 78219,SAN ANTONIO,TX,29.448794,-98.397315,BEXAR 78220,SAN ANTONIO,TX,29.410641,-98.412791,BEXAR 78221,SAN ANTONIO,TX,29.330913,-98.505417,BEXAR 78222,SAN ANTONIO,TX,29.383113,-98.396005,BEXAR 78223,SAN ANTONIO,TX,29.357869,-98.435628,BEXAR 78224,SAN ANTONIO,TX,29.337432,-98.539335,BEXAR 78225,SAN ANTONIO,TX,29.387497,-98.524494,BEXAR 78226,SAN ANTONIO,TX,29.393001,-98.551095,BEXAR 78227,SAN ANTONIO,TX,29.402687,-98.643311,BEXAR 78228,SAN ANTONIO,TX,29.458937,-98.569871,BEXAR 78229,SAN ANTONIO,TX,29.504228,-98.569726,BEXAR 78230,SAN ANTONIO,TX,29.540738,-98.552117,BEXAR 78231,SAN ANTONIO,TX,29.571434,-98.536817,BEXAR 78232,SAN ANTONIO,TX,29.582833,-98.4673,BEXAR 78233,SAN ANTONIO,TX,29.554741,-98.369128,BEXAR 78234,SAN ANTONIO,TX,29.461961,-98.435404,BEXAR 78235,SAN ANTONIO,TX,29.341733,-98.439444,BEXAR 78236,SAN ANTONIO,TX,29.394267,-98.613367,BEXAR 78237,SAN ANTONIO,TX,29.420758,-98.564546,BEXAR 78238,SAN ANTONIO,TX,29.476833,-98.615451,BEXAR 78239,SAN ANTONIO,TX,29.515686,-98.361604,BEXAR 78240,SAN ANTONIO,TX,29.518896,-98.600566,BEXAR 78241,SAN ANTONIO,TX,29.392432,-98.578063,BEXAR 78242,SAN ANTONIO,TX,29.350905,-98.610927,BEXAR 78243,SAN ANTONIO,TX,29.3798,-98.5959,BEXAR 78244,SAN ANTONIO,TX,29.479264,-98.347585,BEXAR 78245,SAN ANTONIO,TX,29.418927,-98.689494,BEXAR 78246,SAN ANTONIO,TX,29.5362,-98.4881,BEXAR 78247,SAN ANTONIO,TX,29.577604,-98.409783,BEXAR 78248,SAN ANTONIO,TX,29.58936,-98.520105,BEXAR 78249,SAN ANTONIO,TX,29.561245,-98.611666,BEXAR 78250,SAN ANTONIO,TX,29.505394,-98.668765,BEXAR 78251,SAN ANTONIO,TX,29.459743,-98.655472,BEXAR 78252,SAN ANTONIO,TX,29.346015,-98.646395,BEXAR 78253,SAN ANTONIO,TX,29.459923,-98.747931,BEXAR 78254,SAN ANTONIO,TX,29.54091,-98.724841,BEXAR 78255,SAN ANTONIO,TX,29.636875,-98.655572,BEXAR 78256,SAN ANTONIO,TX,29.616946,-98.625215,BEXAR 78257,SAN ANTONIO,TX,29.64953,-98.613701,BEXAR 78258,SAN ANTONIO,TX,29.65624,-98.496699,BEXAR 78259,SAN ANTONIO,TX,29.628331,-98.444495,BEXAR 78260,SAN ANTONIO,TX,29.702578,-98.475908,BEXAR 78261,SAN ANTONIO,TX,29.705463,-98.419092,BEXAR 78262,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78263,SAN ANTONIO,TX,29.36143,-98.317386,BEXAR 78264,SAN ANTONIO,TX,29.173345,-98.472272,BEXAR 78265,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78266,SAN ANTONIO,TX,29.644226,-98.312774,COMAL 78268,SAN ANTONIO,TX,29.497,-98.6248,BEXAR 78269,SAN ANTONIO,TX,29.563,-98.5915,BEXAR 78270,SAN ANTONIO,TX,29.5827,-98.4538,BEXAR 78275,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78278,SAN ANTONIO,TX,29.5612,-98.5607,BEXAR 78279,SAN ANTONIO,TX,29.5334,-98.4929,BEXAR 78280,SAN ANTONIO,TX,29.5629,-98.3579,BEXAR 78283,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78284,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78285,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78286,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78287,SAN ANTONIO,TX,29.4892,-98.4566,BEXAR 78288,SAN ANTONIO,TX,29.5238,-98.6061,BEXAR 78289,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78291,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78292,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78293,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78294,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78295,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78296,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78297,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78298,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78299,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78401,CORPUS CHRISTI,TX,27.794086,-97.402994,NUECES 78402,CORPUS CHRISTI,TX,27.82621,-97.385659,NUECES 78403,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78405,CORPUS CHRISTI,TX,27.776234,-97.427132,NUECES 78406,CORPUS CHRISTI,TX,27.768412,-97.51445,NUECES 78407,CORPUS CHRISTI,TX,27.804195,-97.435597,NUECES 78408,CORPUS CHRISTI,TX,27.794477,-97.43815,NUECES 78409,CORPUS CHRISTI,TX,27.814555,-97.527034,NUECES 78410,CORPUS CHRISTI,TX,27.84585,-97.596002,NUECES 78411,CORPUS CHRISTI,TX,27.731139,-97.387732,NUECES 78412,CORPUS CHRISTI,TX,27.70608,-97.353694,NUECES 78413,CORPUS CHRISTI,TX,27.691041,-97.39832,NUECES 78414,CORPUS CHRISTI,TX,27.677016,-97.365016,NUECES 78415,CORPUS CHRISTI,TX,27.726204,-97.40778,NUECES 78416,CORPUS CHRISTI,TX,27.753593,-97.43468,NUECES 78417,CORPUS CHRISTI,TX,27.728964,-97.449429,NUECES 78418,CORPUS CHRISTI,TX,27.668531,-97.266558,NUECES 78419,CORPUS CHRISTI,TX,27.692502,-97.27636,NUECES 78426,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78427,CORPUS CHRISTI,TX,27.7961,-97.4002,NUECES 78460,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78461,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78463,CORPUS CHRISTI,TX,27.7739,-97.3983,NUECES 78465,CORPUS CHRISTI,TX,27.7765,-97.4198,NUECES 78466,CORPUS CHRISTI,TX,27.7438,-97.3804,NUECES 78467,CORPUS CHRISTI,TX,27.6574,-97.4676,NUECES 78468,CORPUS CHRISTI,TX,27.705,-97.3589,NUECES 78469,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78470,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78471,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78472,CORPUS CHRISTI,TX,27.6953,-97.4145,NUECES 78473,CORPUS CHRISTI,TX,27.79515,-97.396624,NUECES 78474,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78475,CORPUS CHRISTI,TX,27.7964,-97.3976,NUECES 78476,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78477,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78478,CORPUS CHRISTI,TX,27.7952,-97.3974,NUECES 78480,CORPUS CHRISTI,TX,27.6437,-97.3006,NUECES 78664,ROUND ROCK,TX,30.51452,-97.668028,WILLIAMSON 78665,ROUND ROCK,TX,30.5082551,-97.678896,WILLIAMSON 78680,ROUND ROCK,TX,30.517,-97.6987,WILLIAMSON 78681,ROUND ROCK,TX,30.508431,-97.706171,WILLIAMSON 78682,ROUND ROCK,TX,30.515278,-97.669167,WILLIAMSON 78683,ROUND ROCK,TX,30.4961,-97.646,WILLIAMSON 78701,AUSTIN,TX,30.271289,-97.742559,TRAVIS 78702,AUSTIN,TX,30.263817,-97.716589,TRAVIS 78703,AUSTIN,TX,30.290671,-97.764809,TRAVIS 78704,AUSTIN,TX,30.242831,-97.765788,TRAVIS 78705,AUSTIN,TX,30.289619,-97.739627,TRAVIS 78708,AUSTIN,TX,30.3911,-97.705,TRAVIS 78709,AUSTIN,TX,30.2342,-97.8497,TRAVIS 78710,AUSTIN,TX,30.3545,-97.655,TRAVIS 78711,AUSTIN,TX,30.2782,-97.7376,TRAVIS 78712,AUSTIN,TX,30.2858,-97.7349,TRAVIS 78713,AUSTIN,TX,30.2847,-97.7414,TRAVIS 78714,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78715,AUSTIN,TX,30.2065,-97.7966,TRAVIS 78716,AUSTIN,TX,30.2735,-97.7992,TRAVIS 78717,AUSTIN,TX,30.505972,-97.747187,WILLIAMSON 78718,AUSTIN,TX,30.3612,-97.7166,TRAVIS 78719,AUSTIN,TX,30.180243,-97.666701,TRAVIS 78720,AUSTIN,TX,30.4241,-97.7569,TRAVIS 78721,AUSTIN,TX,30.272144,-97.686798,TRAVIS 78722,AUSTIN,TX,30.289305,-97.71495,TRAVIS 78723,AUSTIN,TX,30.308515,-97.684941,TRAVIS 78724,AUSTIN,TX,30.295982,-97.639587,TRAVIS 78725,AUSTIN,TX,30.256186,-97.624301,TRAVIS 78726,AUSTIN,TX,30.43,-97.832649,TRAVIS 78727,AUSTIN,TX,30.425422,-97.719488,TRAVIS 78728,AUSTIN,TX,30.441679,-97.681123,TRAVIS 78729,AUSTIN,TX,30.45206,-97.768787,WILLIAMSON 78730,AUSTIN,TX,30.360745,-97.824062,TRAVIS 78731,AUSTIN,TX,30.347129,-97.760887,TRAVIS 78732,AUSTIN,TX,30.375233,-97.900685,TRAVIS 78733,AUSTIN,TX,30.331355,-97.866633,TRAVIS 78734,AUSTIN,TX,30.377404,-97.957558,TRAVIS 78735,AUSTIN,TX,30.248978,-97.841423,TRAVIS 78736,AUSTIN,TX,30.244433,-97.915968,TRAVIS 78737,AUSTIN,TX,30.210692,-97.942749,HAYS 78738,AUSTIN,TX,30.333708,-97.982367,TRAVIS 78739,AUSTIN,TX,30.172026,-97.878433,TRAVIS 78741,AUSTIN,TX,30.231513,-97.722317,TRAVIS 78742,AUSTIN,TX,30.231296,-97.670349,TRAVIS 78744,AUSTIN,TX,30.18764,-97.74723,TRAVIS 78745,AUSTIN,TX,30.206298,-97.795599,TRAVIS 78746,AUSTIN,TX,30.285009,-97.808129,TRAVIS 78747,AUSTIN,TX,30.130235,-97.762127,TRAVIS 78748,AUSTIN,TX,30.174311,-97.822474,TRAVIS 78749,AUSTIN,TX,30.216641,-97.850755,TRAVIS 78750,AUSTIN,TX,30.422401,-97.796676,TRAVIS 78751,AUSTIN,TX,30.309288,-97.724163,TRAVIS 78752,AUSTIN,TX,30.331562,-97.700394,TRAVIS 78753,AUSTIN,TX,30.36485,-97.682658,TRAVIS 78754,AUSTIN,TX,30.342331,-97.667267,TRAVIS 78755,AUSTIN,TX,30.3574,-97.7607,TRAVIS 78756,AUSTIN,TX,30.322312,-97.739032,TRAVIS 78757,AUSTIN,TX,30.343732,-97.731617,TRAVIS 78758,AUSTIN,TX,30.376431,-97.707758,TRAVIS 78759,AUSTIN,TX,30.403614,-97.752602,TRAVIS 78760,AUSTIN,TX,30.2139,-97.7339,TRAVIS 78761,AUSTIN,TX,30.3332,-97.6984,TRAVIS 78762,AUSTIN,TX,30.2615,-97.7218,TRAVIS 78763,AUSTIN,TX,30.2969,-97.7668,TRAVIS 78764,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78765,AUSTIN,TX,30.3065,-97.7296,TRAVIS 78766,AUSTIN,TX,30.3514,-97.7318,TRAVIS 78767,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78768,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78769,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78772,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78773,AUSTIN,TX,30.3306,-97.7036,TRAVIS 78774,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78778,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78779,AUSTIN,TX,30.3458,-97.7674,TRAVIS 78780,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78781,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78783,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78785,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78786,AUSTIN,TX,30.3545,-97.655,TRAVIS 78788,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78789,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78798,AUSTIN,TX,30.2822,-97.7639,TRAVIS 78799,AUSTIN,TX,30.2667,-97.7428,TRAVIS 79101,AMARILLO,TX,35.203238,-101.842052,POTTER 79102,AMARILLO,TX,35.199854,-101.84963,POTTER 79103,AMARILLO,TX,35.175134,-101.797587,POTTER 79104,AMARILLO,TX,35.193918,-101.797503,POTTER 79105,AMARILLO,TX,35.2219,-101.8308,POTTER 79106,AMARILLO,TX,35.197741,-101.894918,POTTER 79107,AMARILLO,TX,35.230866,-101.805962,POTTER 79108,AMARILLO,TX,35.277866,-101.830025,POTTER 79109,AMARILLO,TX,35.166332,-101.886764,RANDALL 79110,AMARILLO,TX,35.154468,-101.864063,RANDALL 79111,AMARILLO,TX,35.228619,-101.670342,POTTER 79114,AMARILLO,TX,35.1637,-101.882,RANDALL 79116,AMARILLO,TX,35.2138,-101.8834,POTTER 79117,AMARILLO,TX,35.2224,-101.8118,POTTER 79118,AMARILLO,TX,35.07629,-101.834936,RANDALL 79119,AMARILLO,TX,35.064214,-101.97432,RANDALL 79120,AMARILLO,TX,35.1886,-101.8165,POTTER 79121,AMARILLO,TX,35.169689,-101.926594,RANDALL 79124,AMARILLO,TX,35.270269,-101.942952,POTTER 79159,AMARILLO,TX,35.2219,-101.8308,POTTER 79166,AMARILLO,TX,35.1886,-101.8165,POTTER 79168,AMARILLO,TX,35.1886,-101.8165,POTTER 79172,AMARILLO,TX,35.1886,-101.8165,POTTER 79174,AMARILLO,TX,35.1886,-101.8165,POTTER 79178,AMARILLO,TX,35.1886,-101.8469,POTTER 79185,AMARILLO,TX,35.1886,-101.8165,POTTER 79187,AMARILLO,TX,35.2662,-101.7196,POTTER 79189,AMARILLO,TX,35.1886,-101.8165,POTTER 79401,LUBBOCK,TX,33.586527,-101.860634,LUBBOCK 79402,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79403,LUBBOCK,TX,33.619573,-101.80982,LUBBOCK 79404,LUBBOCK,TX,33.525979,-101.833263,LUBBOCK 79405,LUBBOCK,TX,33.570972,-101.850655,LUBBOCK 79406,LUBBOCK,TX,33.581934,-101.877828,LUBBOCK 79407,LUBBOCK,TX,33.568369,-101.942333,LUBBOCK 79408,LUBBOCK,TX,33.5916,-101.848,LUBBOCK 79409,LUBBOCK,TX,33.5837,-101.8809,LUBBOCK 79410,LUBBOCK,TX,33.56931,-101.890377,LUBBOCK 79411,LUBBOCK,TX,33.570393,-101.862593,LUBBOCK 79412,LUBBOCK,TX,33.546313,-101.857737,LUBBOCK 79413,LUBBOCK,TX,33.546597,-101.887142,LUBBOCK 79414,LUBBOCK,TX,33.549728,-101.918666,LUBBOCK 79415,LUBBOCK,TX,33.602117,-101.876015,LUBBOCK 79416,LUBBOCK,TX,33.592397,-101.936705,LUBBOCK 79423,LUBBOCK,TX,33.514604,-101.87946,LUBBOCK 79424,LUBBOCK,TX,33.515866,-101.93439,LUBBOCK 79430,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79452,LUBBOCK,TX,33.5483,-101.8481,LUBBOCK 79453,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79457,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79464,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79490,LUBBOCK,TX,33.5777,-101.8547,LUBBOCK 79491,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79493,LUBBOCK,TX,33.5482,-101.8831,LUBBOCK 79499,LUBBOCK,TX,33.5921,-102.018,LUBBOCK 79601,ABILENE,TX,32.468155,-99.718208,TAYLOR 79602,ABILENE,TX,32.41783,-99.721448,TAYLOR 79603,ABILENE,TX,32.467852,-99.761916,TAYLOR 79604,ABILENE,TX,32.3783,-99.6907,TAYLOR 79605,ABILENE,TX,32.431987,-99.772374,TAYLOR 79606,ABILENE,TX,32.392038,-99.774578,TAYLOR 79608,ABILENE,TX,32.4189,-99.7492,TAYLOR 79697,ABILENE,TX,32.4308,-99.749,TAYLOR 79698,ABILENE,TX,32.4486,-99.7327,TAYLOR 79699,ABILENE,TX,32.4699,-99.7082,TAYLOR 79701,MIDLAND,TX,31.989636,-102.06261,MIDLAND 79702,MIDLAND,TX,31.8691,-101.9227,MIDLAND 79703,MIDLAND,TX,31.972106,-102.136854,MIDLAND 79704,MIDLAND,TX,31.9972,-102.0775,MIDLAND 79705,MIDLAND,TX,32.029473,-102.091483,MIDLAND 79706,MIDLAND,TX,31.9089,-102.027,MIDLAND 79707,MIDLAND,TX,32.019911,-102.147599,MIDLAND 79708,MIDLAND,TX,32.0196,-102.1253,MIDLAND 79710,MIDLAND,TX,32.0593,-102.021,MIDLAND 79711,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79712,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79760,ODESSA,TX,31.8465,-102.3663,ECTOR 79761,ODESSA,TX,31.857945,-102.352252,ECTOR 79762,ODESSA,TX,31.889029,-102.354806,ECTOR 79763,ODESSA,TX,31.834085,-102.416179,ECTOR 79764,ODESSA,TX,31.876683,-102.437465,ECTOR 79765,ODESSA,TX,31.937548,-102.394403,ECTOR 79766,ODESSA,TX,31.782683,-102.344863,ECTOR 79768,ODESSA,TX,31.9037,-102.3324,ECTOR 79769,ODESSA,TX,31.8465,-102.3663,ECTOR 79901,EL PASO,TX,31.758411,-106.478311,EL PASO 79902,EL PASO,TX,31.776317,-106.493165,EL PASO 79903,EL PASO,TX,31.786213,-106.440569,EL PASO 79904,EL PASO,TX,31.853334,-106.438135,EL PASO 79905,EL PASO,TX,31.767447,-106.430445,EL PASO 79906,EL PASO,TX,31.807631,-106.421611,EL PASO 79907,EL PASO,TX,31.708908,-106.329281,EL PASO 79908,EL PASO,TX,31.82753,-106.386711,EL PASO 79910,EL PASO,TX,31.7691,-106.4264,EL PASO 79911,EL PASO,TX,31.7586,-106.4863,EL PASO 79912,EL PASO,TX,31.838309,-106.536433,EL PASO 79913,EL PASO,TX,31.8405,-106.5659,EL PASO 79914,EL PASO,TX,31.8816,-106.4195,EL PASO 79915,EL PASO,TX,31.743234,-106.368605,EL PASO 79916,EL PASO,TX,31.794873,-106.159157,EL PASO 79917,EL PASO,TX,31.6927,-106.327,EL PASO 79920,EL PASO,TX,31.8232,-106.4614,EL PASO 79922,EL PASO,TX,31.821767,-106.573176,EL PASO 79923,EL PASO,TX,31.7818,-106.4591,EL PASO 79924,EL PASO,TX,31.902098,-106.414857,EL PASO 79925,EL PASO,TX,31.781402,-106.361317,EL PASO 79926,EL PASO,TX,31.7649,-106.3659,EL PASO 79927,EL PASO,TX,31.653014,-106.273064,EL PASO 79928,EL PASO,TX,31.654444,-106.302778,EL PASO 79929,EL PASO,TX,31.692,-106.1575,EL PASO 79930,EL PASO,TX,31.804795,-106.456754,EL PASO 79931,EL PASO,TX,31.813,-106.4441,EL PASO 79932,EL PASO,TX,31.862334,-106.593186,EL PASO 79934,EL PASO,TX,31.938585,-106.407328,EL PASO 79935,EL PASO,TX,31.771847,-106.330258,EL PASO 79936,EL PASO,TX,31.767655,-106.30159,EL PASO 79937,EL PASO,TX,31.7847,-106.3363,EL PASO 79938,EL PASO,TX,31.8211,-106.117,EL PASO 79940,EL PASO,TX,31.7598,-106.4871,EL PASO 79941,EL PASO,TX,31.7598,-106.4871,EL PASO 79942,EL PASO,TX,31.7598,-106.4871,EL PASO 79943,EL PASO,TX,31.7598,-106.4871,EL PASO 79944,EL PASO,TX,31.7598,-106.4871,EL PASO 79945,EL PASO,TX,31.7598,-106.4871,EL PASO 79946,EL PASO,TX,31.7598,-106.4871,EL PASO 79947,EL PASO,TX,31.7598,-106.4871,EL PASO 79948,EL PASO,TX,31.7598,-106.4871,EL PASO 79949,EL PASO,TX,31.7598,-106.4871,EL PASO 79950,EL PASO,TX,31.7598,-106.4871,EL PASO 79951,EL PASO,TX,31.7598,-106.4871,EL PASO 79952,EL PASO,TX,31.7598,-106.4871,EL PASO 79953,EL PASO,TX,31.7598,-106.4871,EL PASO 79954,EL PASO,TX,31.7598,-106.4871,EL PASO 79955,EL PASO,TX,31.7598,-106.4871,EL PASO 79958,EL PASO,TX,31.7598,-106.4871,EL PASO 79960,EL PASO,TX,31.7598,-106.4871,EL PASO 79961,EL PASO,TX,31.7598,-106.4871,EL PASO 79968,EL PASO,TX,31.7707,-106.5037,EL PASO 79976,EL PASO,TX,31.7598,-106.4871,EL PASO 79978,EL PASO,TX,31.7598,-106.4871,EL PASO 79980,EL PASO,TX,31.7598,-106.4871,EL PASO 79990,EL PASO,TX,31.7691,-106.4264,EL PASO 79995,EL PASO,TX,31.7691,-106.4264,EL PASO 79996,EL PASO,TX,31.7691,-106.4264,EL PASO 79997,EL PASO,TX,31.7691,-106.4264,EL PASO 79998,EL PASO,TX,31.7691,-106.4264,EL PASO 79999,EL PASO,TX,31.7691,-106.4264,EL PASO 80001,ARVADA,CO,39.8039,-105.0859,JEFFERSON 80002,ARVADA,CO,39.794533,-105.098402,JEFFERSON 80003,ARVADA,CO,39.828572,-105.065549,JEFFERSON 80004,ARVADA,CO,39.814066,-105.11771,JEFFERSON 80005,ARVADA,CO,39.842189,-105.109719,JEFFERSON 80006,ARVADA,CO,39.8467,-105.0815,JEFFERSON 80007,ARVADA,CO,39.8296,-105.1828,JEFFERSON 80010,AURORA,CO,39.736788,-104.864618,ARAPAHOE 80011,AURORA,CO,39.737809,-104.815233,ADAMS 80012,AURORA,CO,39.698672,-104.837693,ARAPAHOE 80013,AURORA,CO,39.657457,-104.784566,ARAPAHOE 80014,AURORA,CO,39.666171,-104.834954,ARAPAHOE 80015,AURORA,CO,39.62552,-104.787438,ARAPAHOE 80016,AURORA,CO,39.618713,-104.741734,ARAPAHOE 80017,AURORA,CO,39.694827,-104.788093,ARAPAHOE 80018,AURORA,CO,39.710179,-104.707102,ARAPAHOE 80019,AURORA,CO,39.765608,-104.706906,ADAMS 80040,AURORA,CO,39.7412,-104.8749,ADAMS 80041,AURORA,CO,39.6986,-104.8371,ARAPAHOE 80042,AURORA,CO,39.7404,-104.8089,ADAMS 80044,AURORA,CO,39.6609,-104.8351,ARAPAHOE 80045,AURORA,CO,39.748014,-104.837954,ADAMS 80046,AURORA,CO,39.6283,-104.7966,ARAPAHOE 80047,AURORA,CO,39.7007,-104.767,ARAPAHOE 80110,ENGLEWOOD,CO,39.646027,-104.990022,ARAPAHOE 80111,ENGLEWOOD,CO,39.610327,-104.882832,ARAPAHOE 80112,ENGLEWOOD,CO,39.58051,-104.901115,ARAPAHOE 80113,ENGLEWOOD,CO,39.641667,-104.958889,ARAPAHOE 80120,LITTLETON,CO,39.599426,-105.0044,ARAPAHOE 80121,LITTLETON,CO,39.605835,-104.957285,ARAPAHOE 80122,LITTLETON,CO,39.581418,-104.955673,ARAPAHOE 80123,LITTLETON,CO,39.596854,-105.07766,JEFFERSON 80124,LITTLETON,CO,39.55061,-104.897204,DOUGLAS 80125,LITTLETON,CO,39.484466,-105.056098,DOUGLAS 80126,LITTLETON,CO,39.55134,-104.963751,DOUGLAS 80127,LITTLETON,CO,39.591968,-105.132811,JEFFERSON 80128,LITTLETON,CO,39.5752,-105.0809,JEFFERSON 80129,LITTLETON,CO,39.5446,-105.0097,DOUGLAS 80130,LITTLETON,CO,39.5408,-104.922,DOUGLAS 80150,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80151,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80155,ENGLEWOOD,CO,39.617222,-104.950278,ARAPAHOE 80160,LITTLETON,CO,39.6128,-105.0156,ARAPAHOE 80161,LITTLETON,CO,39.5953,-104.9622,ARAPAHOE 80162,LITTLETON,CO,39.5999,-105.1073,JEFFERSON 80163,LITTLETON,CO,39.5427,-104.9365,DOUGLAS 80165,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80166,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80201,DENVER,CO,39.7507,-104.989,DENVER 80202,DENVER,CO,39.749107,-104.994591,DENVER 80203,DENVER,CO,39.731285,-104.981111,DENVER 80204,DENVER,CO,39.734022,-105.025854,DENVER 80205,DENVER,CO,39.758993,-104.966141,DENVER 80206,DENVER,CO,39.733109,-104.9524,DENVER 80207,DENVER,CO,39.758425,-104.91771,DENVER 80208,DENVER,CO,39.676667,-104.961667,DENVER 80209,DENVER,CO,39.707437,-104.968587,DENVER 80210,DENVER,CO,39.679003,-104.963124,DENVER 80211,DENVER,CO,39.766515,-105.020377,DENVER 80212,DENVER,CO,39.772396,-105.046979,DENVER 80214,DENVER,CO,39.746931,-105.062036,JEFFERSON 80215,DENVER,CO,39.744033,-105.102329,JEFFERSON 80216,DENVER,CO,39.783469,-104.966946,DENVER 80217,DENVER,CO,39.7391,-104.9841,DENVER 80218,DENVER,CO,39.732747,-104.971652,DENVER 80219,DENVER,CO,39.695624,-105.034134,DENVER 80220,DENVER,CO,39.7312,-104.912866,DENVER 80221,DENVER,CO,39.840562,-105.007985,ADAMS 80222,DENVER,CO,39.682803,-104.927992,DENVER 80223,DENVER,CO,39.700239,-105.002799,DENVER 80224,DENVER,CO,39.687995,-104.910778,DENVER 80225,DENVER,CO,39.7204,-105.1201,JEFFERSON 80226,DENVER,CO,39.712186,-105.066703,JEFFERSON 80227,DENVER,CO,39.666746,-105.085359,JEFFERSON 80228,DENVER,CO,39.696898,-105.143009,JEFFERSON 80229,DENVER,CO,39.860998,-104.961749,ADAMS 80230,DENVER,CO,39.720556,-104.898611,DENVER 80231,DENVER,CO,39.679324,-104.884326,DENVER 80232,DENVER,CO,39.697282,-105.094524,JEFFERSON 80233,DENVER,CO,39.901222,-104.958257,ADAMS 80234,DENVER,CO,39.905479,-105.004474,ADAMS 80235,DENVER,CO,39.647175,-105.079466,JEFFERSON 80236,DENVER,CO,39.653535,-105.037595,DENVER 80237,DENVER,CO,39.64314,-104.89866,DENVER 80238,DENVER,CO,39.793611,-104.833056,DENVER 80239,DENVER,CO,39.787757,-104.828837,DENVER 80241,DENVER,CO,39.927792,-104.941809,ADAMS 80243,DENVER,CO,39.6875,-104.9613,DENVER 80244,DENVER,CO,39.7391,-104.9841,DENVER 80246,DENVER,CO,39.7025,-104.933611,DENVER 80247,DENVER,CO,39.6941,-104.8786,ARAPAHOE 80248,DENVER,CO,39.7516,-105.0008,DENVER 80249,DENVER,CO,39.778264,-104.75565,DENVER 80250,DENVER,CO,39.68,-104.9433,DENVER 80251,DENVER,CO,39.7391,-104.9841,DENVER 80252,DENVER,CO,39.7391,-104.9841,DENVER 80256,DENVER,CO,39.7391,-104.9841,DENVER 80257,DENVER,CO,39.7391,-104.9841,DENVER 80259,DENVER,CO,39.7391,-104.9841,DENVER 80260,DENVER,CO,39.851389,-104.998056,ADAMS 80261,DENVER,CO,39.7391,-104.9841,DENVER 80262,DENVER,CO,39.7328,-104.9366,DENVER 80263,DENVER,CO,39.6522,-104.9129,DENVER 80264,DENVER,CO,39.7423,-104.9853,DENVER 80265,DENVER,CO,39.7391,-104.9841,DENVER 80266,DENVER,CO,39.7983,-104.8999,DENVER 80271,DENVER,CO,39.7391,-104.9841,DENVER 80273,DENVER,CO,39.7391,-104.9841,DENVER 80274,DENVER,CO,39.7391,-104.9841,DENVER 80279,DENVER,CO,39.7391,-104.9841,DENVER 80280,DENVER,CO,39.7193,-104.8989,DENVER 80281,DENVER,CO,39.7391,-104.9841,DENVER 80290,DENVER,CO,39.7391,-104.9841,DENVER 80291,DENVER,CO,39.7391,-104.9841,DENVER 80293,DENVER,CO,39.7391,-104.9841,DENVER 80294,DENVER,CO,39.7491,-104.9885,DENVER 80295,DENVER,CO,39.7454,-104.9859,DENVER 80299,DENVER,CO,39.7472,-104.9912,DENVER 80301,BOULDER,CO,40.049733,-105.21426,BOULDER 80302,BOULDER,CO,40.017235,-105.285131,BOULDER 80303,BOULDER,CO,39.991381,-105.239178,BOULDER 80304,BOULDER,CO,40.037482,-105.277073,BOULDER 80305,BOULDER,CO,39.9802,-105.2516,BOULDER 80306,BOULDER,CO,40.0178,-105.2752,BOULDER 80307,BOULDER,CO,39.9858,-105.2371,BOULDER 80308,BOULDER,CO,40.015,-105.27,BOULDER 80309,BOULDER,CO,40.005556,-105.263889,BOULDER 80310,BOULDER,CO,40.015,-105.27,BOULDER 80314,BOULDER,CO,40.015,-105.27,BOULDER 80321,BOULDER,CO,40.015,-105.27,BOULDER 80322,BOULDER,CO,40.015,-105.27,BOULDER 80323,BOULDER,CO,40.015,-105.27,BOULDER 80328,BOULDER,CO,40.015,-105.27,BOULDER 80329,BOULDER,CO,40.015,-105.27,BOULDER 80521,FORT COLLINS,CO,40.581293,-105.103884,LARIMER 80522,FORT COLLINS,CO,40.584,-105.0804,LARIMER 80523,FORT COLLINS,CO,40.5731,-105.086,LARIMER 80524,FORT COLLINS,CO,40.59865,-105.05811,LARIMER 80525,FORT COLLINS,CO,40.538354,-105.054715,LARIMER 80526,FORT COLLINS,CO,40.547294,-105.107646,LARIMER 80527,FORT COLLINS,CO,40.532,-105.0731,LARIMER 80528,FORT COLLINS,CO,40.4977,-105.0041,LARIMER 80553,FORT COLLINS,CO,40.5675,-105.0453,LARIMER 80631,GREELEY,CO,40.413968,-104.704756,WELD 80632,GREELEY,CO,40.4236,-104.6959,WELD 80633,GREELEY,CO,40.4236,-104.6959,WELD 80634,GREELEY,CO,40.410947,-104.754113,WELD 80638,GREELEY,CO,40.4233,-104.7086,WELD 80639,GREELEY,CO,40.4025,-104.701111,WELD 80901,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80902,COLORADO SPRINGS,CO,38.8338816,-104.8213634,EL PASO 80903,COLORADO SPRINGS,CO,38.838832,-104.814466,EL PASO 80904,COLORADO SPRINGS,CO,38.853318,-104.859513,EL PASO 80905,COLORADO SPRINGS,CO,38.837692,-104.836997,EL PASO 80906,COLORADO SPRINGS,CO,38.790164,-104.819893,EL PASO 80907,COLORADO SPRINGS,CO,38.876001,-104.817034,EL PASO 80908,COLORADO SPRINGS,CO,39.023745,-104.693331,EL PASO 80909,COLORADO SPRINGS,CO,38.852038,-104.773483,EL PASO 80910,COLORADO SPRINGS,CO,38.815164,-104.770299,EL PASO 80911,COLORADO SPRINGS,CO,38.745665,-104.722322,EL PASO 80912,COLORADO SPRINGS,CO,39.0475,-104.6901,EL PASO 80913,COLORADO SPRINGS,CO,38.741967,-104.782218,EL PASO 80914,COLORADO SPRINGS,CO,38.784241,-104.719052,EL PASO 80915,COLORADO SPRINGS,CO,38.855845,-104.713422,EL PASO 80916,COLORADO SPRINGS,CO,38.807619,-104.74034,EL PASO 80917,COLORADO SPRINGS,CO,38.886027,-104.739904,EL PASO 80918,COLORADO SPRINGS,CO,38.912924,-104.773444,EL PASO 80919,COLORADO SPRINGS,CO,38.926795,-104.84642,EL PASO 80920,COLORADO SPRINGS,CO,38.949732,-104.766951,EL PASO 80921,COLORADO SPRINGS,CO,39.048674,-104.814042,EL PASO 80922,COLORADO SPRINGS,CO,38.90503,-104.698161,EL PASO 80923,COLORADO SPRINGS,CO,38.92538,-104.717101,EL PASO 80924,COLORADO SPRINGS,CO,38.951969,-104.71418,EL PASO 80925,COLORADO SPRINGS,CO,38.731329,-104.660087,EL PASO 80926,COLORADO SPRINGS,CO,38.698073,-104.85051,EL PASO 80927,COLORADO SPRINGS,CO,38.918882,-104.675545,EL PASO 80928,COLORADO SPRINGS,CO,38.623261,-104.457043,EL PASO 80929,COLORADO SPRINGS,CO,38.796837,-104.607857,EL PASO 80930,COLORADO SPRINGS,CO,38.828926,-104.526924,EL PASO 80931,COLORADO SPRINGS,CO,38.7513,-104.7322,EL PASO 80932,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80933,COLORADO SPRINGS,CO,38.8729,-104.8105,EL PASO 80934,COLORADO SPRINGS,CO,38.8459,-104.8632,EL PASO 80935,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80936,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 80937,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80938,COLORADO SPRINGS,CO,38.917468,-104.650769,EL PASO 80939,COLORADO SPRINGS,CO,38.879618,-104.679918,EL PASO 80940,COLORADO SPRINGS,CO,38.8864,-104.6716,EL PASO 80941,COLORADO SPRINGS,CO,38.9594,-104.7536,EL PASO 80942,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80943,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80944,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80945,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80946,COLORADO SPRINGS,CO,38.8466,-104.8238,EL PASO 80947,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80949,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80950,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80951,COLORADO SPRINGS,CO,38.863647,-104.670443,EL PASO 80960,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80962,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80970,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80977,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80995,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80997,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 81001,PUEBLO,CO,38.287876,-104.584828,PUEBLO 81002,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81003,PUEBLO,CO,38.284277,-104.62337,PUEBLO 81004,PUEBLO,CO,38.244063,-104.627829,PUEBLO 81005,PUEBLO,CO,38.235157,-104.660031,PUEBLO 81006,PUEBLO,CO,38.24465,-104.531834,PUEBLO 81007,PUEBLO,CO,38.319975,-104.743264,PUEBLO 81008,PUEBLO,CO,38.313251,-104.628433,PUEBLO 81009,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81010,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81011,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81012,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81501,GRAND JUNCTION,CO,39.078326,-108.545692,MESA 81502,GRAND JUNCTION,CO,39.063889,-108.55,MESA 81503,GRAND JUNCTION,CO,39.056777,-108.575609,MESA 81504,GRAND JUNCTION,CO,39.083136,-108.489094,MESA 81505,GRAND JUNCTION,CO,39.107097,-108.596834,MESA 81506,GRAND JUNCTION,CO,39.103209,-108.54911,MESA 82001,CHEYENNE,WY,41.143719,-104.796234,LARAMIE 82002,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82003,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82006,CHEYENNE,WY,41.4052,-104.8606,LARAMIE 82007,CHEYENNE,WY,41.108433,-104.810745,LARAMIE 82008,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82009,CHEYENNE,WY,41.183566,-104.802328,LARAMIE 82010,CHEYENNE,WY,41.1371,-104.818,LARAMIE 83201,POCATELLO,ID,42.887592,-112.438142,BANNOCK 83202,POCATELLO,ID,42.926548,-112.474873,BANNOCK 83204,POCATELLO,ID,42.846463,-112.443352,BANNOCK 83205,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83206,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83209,POCATELLO,ID,42.8628,-112.4338,BANNOCK 83401,IDAHO FALLS,ID,43.517679,-111.990626,BONNEVILLE 83402,IDAHO FALLS,ID,43.493373,-112.057762,BONNEVILLE 83403,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83404,IDAHO FALLS,ID,43.475043,-112.012449,BONNEVILLE 83405,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83406,IDAHO FALLS,ID,43.473233,-111.966052,BONNEVILLE 83415,IDAHO FALLS,ID,43.4666,-112.0333,BONNEVILLE 83701,BOISE,ID,43.6154,-116.2161,ADA 83702,BOISE,ID,43.632237,-116.205192,ADA 83703,BOISE,ID,43.660051,-116.252396,ADA 83704,BOISE,ID,43.633001,-116.295099,ADA 83705,BOISE,ID,43.585077,-116.219104,ADA 83706,BOISE,ID,43.588495,-116.191006,ADA 83707,BOISE,ID,43.6154,-116.2161,ADA 83708,BOISE,ID,43.6136,-116.2025,ADA 83709,BOISE,ID,43.574085,-116.29407,ADA 83711,BOISE,ID,43.6154,-116.2161,ADA 83712,BOISE,ID,43.602311,-116.164924,ADA 83713,BOISE,ID,43.6401,-116.3328,ADA 83715,BOISE,ID,43.5665,-116.2119,ADA 83716,BOISE,ID,43.5444,-116.043,ADA 83717,BOISE,ID,43.5544,-116.1472,ADA 83719,BOISE,ID,43.5476,-116.2836,ADA 83720,BOISE,ID,43.6154,-116.2161,ADA 83721,BOISE,ID,43.6136,-116.2025, 83722,BOISE,ID,43.6136,-116.2025,ADA 83724,BOISE,ID,43.6136,-116.2025,ADA 83725,BOISE,ID,43.605,-116.2054,ADA 83726,BOISE,ID,43.4343,-116.0029,ADA 83727,BOISE,ID,43.6136,-116.2025, 83728,BOISE,ID,43.6136,-116.2025,ADA 83729,BOISE,ID,43.6136,-116.2025,ADA 83730,BOISE,ID,43.6136,-116.2025, 83731,BOISE,ID,43.7435,-116.2024,ADA 83732,BOISE,ID,43.5476,-116.2836,ADA 83733,BOISE,ID,43.6136,-116.2025, 83735,BOISE,ID,43.6136,-116.2025,ADA 83756,BOISE,ID,43.6136,-116.2025,ADA 83757,BOISE,ID,43.6136,-116.2025,ADA 83799,BOISE,ID,43.6142,-116.2161,ADA 84070,SANDY,UT,40.579379,-111.881625,SALT LAKE 84090,SANDY,UT,40.583,-111.8332,SALT LAKE 84091,SANDY,UT,40.5897,-111.8713,SALT LAKE 84092,SANDY,UT,40.560245,-111.82736,SALT LAKE 84093,SANDY,UT,40.592651,-111.830989,SALT LAKE 84094,SANDY,UT,40.568757,-111.861716,SALT LAKE 84101,SALT LAKE CITY,UT,40.755851,-111.896657,SALT LAKE 84102,SALT LAKE CITY,UT,40.760034,-111.862721,SALT LAKE 84103,SALT LAKE CITY,UT,40.777584,-111.874891,SALT LAKE 84104,SALT LAKE CITY,UT,40.74985,-111.925979,SALT LAKE 84105,SALT LAKE CITY,UT,40.737236,-111.858087,SALT LAKE 84106,SALT LAKE CITY,UT,40.705597,-111.854841,SALT LAKE 84107,SALT LAKE CITY,UT,40.659014,-111.878383,SALT LAKE 84108,SALT LAKE CITY,UT,40.737136,-111.825822,SALT LAKE 84109,SALT LAKE CITY,UT,40.704251,-111.814218,SALT LAKE 84110,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84111,SALT LAKE CITY,UT,40.754834,-111.881,SALT LAKE 84112,SALT LAKE CITY,UT,40.752372,-111.827827,SALT LAKE 84113,SALT LAKE CITY,UT,40.763057,-111.841825,SALT LAKE 84114,SALT LAKE CITY,UT,40.7755,-111.8874,SALT LAKE 84115,SALT LAKE CITY,UT,40.715797,-111.883828,SALT LAKE 84116,SALT LAKE CITY,UT,40.785697,-111.929054,SALT LAKE 84117,SALT LAKE CITY,UT,40.666302,-111.832943,SALT LAKE 84118,SALT LAKE CITY,UT,40.652759,-111.98521,SALT LAKE 84119,SALT LAKE CITY,UT,40.690977,-111.952964,SALT LAKE 84120,SALT LAKE CITY,UT,40.68708,-112.009783,SALT LAKE 84121,SALT LAKE CITY,UT,40.623247,-111.82468,SALT LAKE 84122,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84123,SALT LAKE CITY,UT,40.660479,-111.919483,SALT LAKE 84124,SALT LAKE CITY,UT,40.67966,-111.820833,SALT LAKE 84125,SALT LAKE CITY,UT,40.7,-111.9443,SALT LAKE 84126,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84127,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84128,SALT LAKE CITY,UT,40.6951,-112.044,SALT LAKE 84130,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84131,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84132,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84133,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84134,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84136,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84138,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84139,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84141,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84143,SALT LAKE CITY,UT,40.7785,-111.8789,SALT LAKE 84144,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84145,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84147,SALT LAKE CITY,UT,40.7682,-111.8872,SALT LAKE 84148,SALT LAKE CITY,UT,40.7582,-111.8397,SALT LAKE 84150,SALT LAKE CITY,UT,40.7693,-111.8886,SALT LAKE 84151,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84152,SALT LAKE CITY,UT,40.7288,-111.8586,SALT LAKE 84157,SALT LAKE CITY,UT,40.6628,-111.8867,SALT LAKE 84158,SALT LAKE CITY,UT,40.7502,-111.8255,SALT LAKE 84165,SALT LAKE CITY,UT,40.713611,-111.891111,SALT LAKE 84170,SALT LAKE CITY,UT,40.6972,-111.9945,SALT LAKE 84171,SALT LAKE CITY,UT,40.619722,-111.809444,SALT LAKE 84180,SALT LAKE CITY,UT,40.7696,-111.9009,SALT LAKE 84184,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84189,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84190,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84199,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84201,OGDEN,UT,41.2443,-112.0072,WEBER 84244,OGDEN,UT,41.2839,-112.1235,WEBER 84401,OGDEN,UT,41.22148,-111.962121,WEBER 84402,OGDEN,UT,41.1976,-111.9844,WEBER 84403,OGDEN,UT,41.189412,-111.948927,WEBER 84404,OGDEN,UT,41.262727,-111.983686,WEBER 84405,OGDEN,UT,41.173928,-111.980945,WEBER 84407,OGDEN,UT,41.2839,-112.1235,WEBER 84408,OGDEN,UT,41.192,-111.9465,WEBER 84409,OGDEN,UT,41.1976,-111.9844,WEBER 84412,OGDEN,UT,41.2639,-111.9686,WEBER 84414,OGDEN,UT,41.311201,-111.968924,WEBER 84415,OGDEN,UT,41.1796,-111.9496,WEBER 84601,PROVO,UT,40.231949,-111.675504,UTAH 84602,PROVO,UT,40.2483,-111.6484,UTAH 84603,PROVO,UT,40.232,-111.6589,UTAH 84604,PROVO,UT,40.260681,-111.654906,UTAH 84605,PROVO,UT,40.2338,-111.6577,UTAH 84606,PROVO,UT,40.234675,-111.644724,UTAH 85001,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85002,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85003,PHOENIX,AZ,33.451095,-112.077428,MARICOPA 85004,PHOENIX,AZ,33.455708,-112.068584,MARICOPA 85005,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85006,PHOENIX,AZ,33.465016,-112.047357,MARICOPA 85007,PHOENIX,AZ,33.452298,-112.089326,MARICOPA 85008,PHOENIX,AZ,33.466457,-111.998381,MARICOPA 85009,PHOENIX,AZ,33.456373,-112.128368,MARICOPA 85010,PHOENIX,AZ,33.4659,-112.0236,MARICOPA 85011,PHOENIX,AZ,33.5054,-112.0634,MARICOPA 85012,PHOENIX,AZ,33.509744,-112.067816,MARICOPA 85013,PHOENIX,AZ,33.508493,-112.082657,MARICOPA 85014,PHOENIX,AZ,33.510263,-112.05557,MARICOPA 85015,PHOENIX,AZ,33.508164,-112.101064,MARICOPA 85016,PHOENIX,AZ,33.502117,-112.030496,MARICOPA 85017,PHOENIX,AZ,33.515263,-112.121232,MARICOPA 85018,PHOENIX,AZ,33.495796,-111.988259,MARICOPA 85019,PHOENIX,AZ,33.512284,-112.141681,MARICOPA 85020,PHOENIX,AZ,33.562281,-112.055888,MARICOPA 85021,PHOENIX,AZ,33.559965,-112.092686,MARICOPA 85022,PHOENIX,AZ,33.631513,-112.052008,MARICOPA 85023,PHOENIX,AZ,33.632383,-112.111838,MARICOPA 85024,PHOENIX,AZ,33.661664,-112.036956,MARICOPA 85025,PHOENIX,AZ,33.4506,-112.0773,MARICOPA 85026,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85027,PHOENIX,AZ,33.667157,-112.102723,MARICOPA 85028,PHOENIX,AZ,33.585115,-112.008724,MARICOPA 85029,PHOENIX,AZ,33.596133,-112.119913,MARICOPA 85030,PHOENIX,AZ,33.4519,-112.0775,MARICOPA 85031,PHOENIX,AZ,33.493909,-112.16963,MARICOPA 85032,PHOENIX,AZ,33.623807,-112.004369,MARICOPA 85033,PHOENIX,AZ,33.494426,-112.213185,MARICOPA 85034,PHOENIX,AZ,33.441251,-112.042135,MARICOPA 85035,PHOENIX,AZ,33.472353,-112.183177,MARICOPA 85036,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85037,PHOENIX,AZ,33.491278,-112.246763,MARICOPA 85038,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85039,PHOENIX,AZ,33.495362,-112.288573,MARICOPA 85040,PHOENIX,AZ,33.390475,-112.03126,MARICOPA 85041,PHOENIX,AZ,33.388882,-112.095437,MARICOPA 85042,PHOENIX,AZ,33.3783,-112.0313,MARICOPA 85043,PHOENIX,AZ,33.449056,-112.197245,MARICOPA 85044,PHOENIX,AZ,33.329124,-111.9943,MARICOPA 85045,PHOENIX,AZ,33.2997,-112.0958,MARICOPA 85046,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85048,PHOENIX,AZ,33.3042,-112.0282,MARICOPA 85050,PHOENIX,AZ,33.6794,-111.9991,MARICOPA 85051,PHOENIX,AZ,33.559113,-112.133168,MARICOPA 85053,PHOENIX,AZ,33.6279,-112.1315,MARICOPA 85054,PHOENIX,AZ,33.6764,-111.9569,MARICOPA 85055,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85060,PHOENIX,AZ,33.4805,-111.9963,MARICOPA 85061,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85062,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85063,PHOENIX,AZ,33.5014,-112.1723,MARICOPA 85064,PHOENIX,AZ,33.5098,-112.0378,MARICOPA 85065,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85066,PHOENIX,AZ,33.3924,-112.0675,MARICOPA 85067,PHOENIX,AZ,33.4934,-112.0823,MARICOPA 85068,PHOENIX,AZ,33.5742,-112.0644,MARICOPA 85069,PHOENIX,AZ,33.5562,-112.1113,MARICOPA 85070,PHOENIX,AZ,33.561,-112.0935,MARICOPA 85071,PHOENIX,AZ,33.597,-112.0987,MARICOPA 85072,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85073,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85074,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85075,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85076,PHOENIX,AZ,33.3475,-111.9742,MARICOPA 85077,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85078,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85079,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85080,PHOENIX,AZ,33.6548,-112.1043,MARICOPA 85082,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85083,PHOENIX,AZ,33.4483771,-112.0740373,MARICOPA 85085,PHOENIX,AZ,33.7485,-112.1254,MARICOPA 85086,PHOENIX,AZ,33.8405,-112.112,MARICOPA 85098,PHOENIX,AZ,33.4368,-112.1416,MARICOPA 85099,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85201,MESA,AZ,33.43174,-111.846931,MARICOPA 85202,MESA,AZ,33.385095,-111.872429,MARICOPA 85203,MESA,AZ,33.436952,-111.805697,MARICOPA 85204,MESA,AZ,33.399168,-111.789554,MARICOPA 85205,MESA,AZ,33.43685,-111.712939,MARICOPA 85206,MESA,AZ,33.402603,-111.724223,MARICOPA 85207,MESA,AZ,33.432073,-111.64256,MARICOPA 85208,MESA,AZ,33.398416,-111.651297,MARICOPA 85209,MESA,AZ,33.378332,-111.636262,MARICOPA 85210,MESA,AZ,33.38867,-111.842757,MARICOPA 85211,MESA,AZ,33.4181,-111.8304,MARICOPA 85212,MESA,AZ,33.3341,-111.6381,MARICOPA 85213,MESA,AZ,33.436688,-111.773114,MARICOPA 85214,MESA,AZ,33.4222,-111.8219,MARICOPA 85215,MESA,AZ,33.4702,-111.708,MARICOPA 85216,MESA,AZ,33.4085,-111.6853,MARICOPA 85224,CHANDLER,AZ,33.330091,-111.863156,MARICOPA 85225,CHANDLER,AZ,33.310505,-111.823881,MARICOPA 85226,CHANDLER,AZ,33.30917,-111.919827,MARICOPA 85233,GILBERT,AZ,33.35,-111.8092,MARICOPA 85234,GILBERT,AZ,33.352746,-111.780876,MARICOPA 85244,CHANDLER,AZ,33.3047,-111.8378,MARICOPA 85246,CHANDLER,AZ,33.3061,-111.8405,MARICOPA 85248,CHANDLER,AZ,33.223056,-111.866899,MARICOPA 85249,CHANDLER,AZ,33.241384,-111.774486,MARICOPA 85250,SCOTTSDALE,AZ,33.521767,-111.904926,MARICOPA 85251,SCOTTSDALE,AZ,33.493559,-111.916697,MARICOPA 85252,SCOTTSDALE,AZ,33.4873,-111.9247,MARICOPA 85254,SCOTTSDALE,AZ,33.616476,-111.955422,MARICOPA 85255,SCOTTSDALE,AZ,33.696801,-111.889213,MARICOPA 85256,SCOTTSDALE,AZ,33.485793,-111.85333,MARICOPA 85257,SCOTTSDALE,AZ,33.46693,-111.915129,MARICOPA 85258,SCOTTSDALE,AZ,33.564747,-111.893067,MARICOPA 85259,SCOTTSDALE,AZ,33.587943,-111.840438,MARICOPA 85260,SCOTTSDALE,AZ,33.601323,-111.88671,MARICOPA 85261,SCOTTSDALE,AZ,33.4946,-111.9204,MARICOPA 85262,SCOTTSDALE,AZ,33.77524,-111.779135,MARICOPA 85266,SCOTTSDALE,AZ,33.4359,-112.0201,MARICOPA 85267,SCOTTSDALE,AZ,33.6105,-111.8902,MARICOPA 85271,SCOTTSDALE,AZ,33.4657,-111.92,MARICOPA 85274,MESA,AZ,33.4073,-111.8829,MARICOPA 85275,MESA,AZ,33.4222,-111.8219,MARICOPA 85277,MESA,AZ,33.4591,-111.7199,MARICOPA 85280,TEMPE,AZ,33.4273,-111.9307,MARICOPA 85281,TEMPE,AZ,33.422675,-111.926144,MARICOPA 85282,TEMPE,AZ,33.391669,-111.924896,MARICOPA 85283,TEMPE,AZ,33.366524,-111.93122,MARICOPA 85284,TEMPE,AZ,33.336302,-111.919696,MARICOPA 85285,TEMPE,AZ,33.3926,-111.9352,MARICOPA 85286,CHANDLER,AZ,33.3061605,-111.8412502,MARICOPA 85287,TEMPE,AZ,33.420833,-111.93,MARICOPA 85289,TEMPE,AZ,33.4001,-111.9652,MARICOPA 85295,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85296,GILBERT,AZ,33.3196,-111.7595,MARICOPA 85297,GILBERT,AZ,33.2646,-111.7086,MARICOPA 85298,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85299,GILBERT,AZ,33.3496,-111.7914,MARICOPA 85301,GLENDALE,AZ,33.531122,-112.176703,MARICOPA 85302,GLENDALE,AZ,33.567487,-112.175289,MARICOPA 85303,GLENDALE,AZ,33.526215,-112.214937,MARICOPA 85304,GLENDALE,AZ,33.594289,-112.174575,MARICOPA 85305,GLENDALE,AZ,33.529103,-112.248232,MARICOPA 85306,GLENDALE,AZ,33.623882,-112.177563,MARICOPA 85307,GLENDALE,AZ,33.534879,-112.326735,MARICOPA 85308,GLENDALE,AZ,33.653924,-112.169391,MARICOPA 85310,GLENDALE,AZ,33.704726,-112.164131,MARICOPA 85311,GLENDALE,AZ,33.532,-112.1764,MARICOPA 85312,GLENDALE,AZ,33.6252,-112.1839,MARICOPA 85313,GLENDALE,AZ,33.6086,-112.1611,MARICOPA 85318,GLENDALE,AZ,33.6821,-112.1862,MARICOPA 85345,PEORIA,AZ,33.576135,-112.234424,MARICOPA 85380,PEORIA,AZ,33.5822,-112.2414,MARICOPA 85381,PEORIA,AZ,33.604761,-112.223723,MARICOPA 85382,PEORIA,AZ,33.63083,-112.207177,MARICOPA 85383,PEORIA,AZ,33.7218,-112.2594,MARICOPA 85385,PEORIA,AZ,33.6099,-112.2261,MARICOPA 85701,TUCSON,AZ,32.213873,-110.969445,PIMA 85702,TUCSON,AZ,32.2216,-110.9258,PIMA 85703,TUCSON,AZ,32.2465,-110.9786,PIMA 85704,TUCSON,AZ,32.329175,-110.984593,PIMA 85705,TUCSON,AZ,32.269088,-110.984536,PIMA 85706,TUCSON,AZ,32.139172,-110.945127,PIMA 85707,TUCSON,AZ,32.177778,-110.8775,PIMA 85708,TUCSON,AZ,32.179989,-110.869283,PIMA 85709,TUCSON,AZ,32.2251,-111.0167,PIMA 85710,TUCSON,AZ,32.213813,-110.824046,PIMA 85711,TUCSON,AZ,32.212729,-110.882892,PIMA 85712,TUCSON,AZ,32.250043,-110.886919,PIMA 85713,TUCSON,AZ,32.194065,-110.973896,PIMA 85714,TUCSON,AZ,32.170657,-110.971891,PIMA 85715,TUCSON,AZ,32.269213,-110.834837,PIMA 85716,TUCSON,AZ,32.246815,-110.922176,PIMA 85717,TUCSON,AZ,32.2356,-110.9398,PIMA 85718,TUCSON,AZ,32.311154,-110.917882,PIMA 85719,TUCSON,AZ,32.247426,-110.949142,PIMA 85720,TUCSON,AZ,32.2033,-110.9451,PIMA 85721,TUCSON,AZ,32.2335,-110.9521,PIMA 85722,TUCSON,AZ,32.2317,-110.9567,PIMA 85723,TUCSON,AZ,32.1812,-110.9683,PIMA 85724,TUCSON,AZ,32.2033,-110.9451,PIMA 85725,TUCSON,AZ,32.2216,-110.9258,PIMA 85726,TUCSON,AZ,32.2033,-110.9451,PIMA 85728,TUCSON,AZ,32.2885,-110.9435,PIMA 85730,TUCSON,AZ,32.180951,-110.81904,PIMA 85731,TUCSON,AZ,32.2216,-110.9258,PIMA 85732,TUCSON,AZ,32.225,-110.8833,PIMA 85733,TUCSON,AZ,32.2356,-110.9398,PIMA 85734,TUCSON,AZ,32.1336,-110.9741,PIMA 85735,TUCSON,AZ,32.057796,-111.260758,PIMA 85736,TUCSON,AZ,31.667909,-111.317842,PIMA 85737,TUCSON,AZ,32.431679,-110.954463,PIMA 85739,TUCSON,AZ,32.5088,-110.8969,PIMA 85740,TUCSON,AZ,32.3203,-110.9742,PIMA 85741,TUCSON,AZ,32.347215,-111.041873,PIMA 85742,TUCSON,AZ,32.3855,-111.0466,PIMA 85743,TUCSON,AZ,32.33655,-111.177071,PIMA 85744,TUCSON,AZ,32.0916,-110.8046,PIMA 85745,TUCSON,AZ,32.243359,-111.017907,PIMA 85746,TUCSON,AZ,32.142244,-111.050569,PIMA 85747,TUCSON,AZ,32.071142,-110.667337,PIMA 85748,TUCSON,AZ,32.214981,-110.775765,PIMA 85749,TUCSON,AZ,32.273285,-110.765829,PIMA 85750,TUCSON,AZ,32.2977,-110.8447,PIMA 85751,TUCSON,AZ,32.2501,-110.8527,PIMA 85752,TUCSON,AZ,32.3506,-111.0467,PIMA 85754,TUCSON,AZ,32.2345,-111.0024,PIMA 85755,TUCSON,AZ,32.44284,-110.98941,PIMA 85757,TUCSON,AZ,32.136691,-111.10789,PIMA 85775,TUCSON,AZ,32.2033,-110.9451,PIMA 85777,TUCSON,AZ,32.0907,-110.9103,PIMA 86301,PRESCOTT,AZ,34.629909,-113.022459,YAVAPAI 86302,PRESCOTT,AZ,34.754,-112.8314,YAVAPAI 86303,PRESCOTT,AZ,34.558577,-112.473459,YAVAPAI 86304,PRESCOTT,AZ,34.7363,-112.9576,YAVAPAI 86305,PRESCOTT,AZ,34.6476,-112.6458,YAVAPAI 86313,PRESCOTT,AZ,34.5495,-112.4496,YAVAPAI 87101,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87102,ALBUQUERQUE,NM,35.081831,-106.648171,BERNALILLO 87103,ALBUQUERQUE,NM,35.0826,-106.6526,BERNALILLO 87104,ALBUQUERQUE,NM,35.103822,-106.671215,BERNALILLO 87105,ALBUQUERQUE,NM,35.044761,-106.689341,BERNALILLO 87106,ALBUQUERQUE,NM,35.079011,-106.616917,BERNALILLO 87107,ALBUQUERQUE,NM,35.134742,-106.642747,BERNALILLO 87108,ALBUQUERQUE,NM,35.072586,-106.574864,BERNALILLO 87109,ALBUQUERQUE,NM,35.15058,-106.569004,BERNALILLO 87110,ALBUQUERQUE,NM,35.110417,-106.578052,BERNALILLO 87111,ALBUQUERQUE,NM,35.134724,-106.522164,BERNALILLO 87112,ALBUQUERQUE,NM,35.101026,-106.518338,BERNALILLO 87113,ALBUQUERQUE,NM,35.175906,-106.601467,BERNALILLO 87114,ALBUQUERQUE,NM,35.195612,-106.659138,BERNALILLO 87115,ALBUQUERQUE,NM,34.904876,-106.513896,BERNALILLO 87116,ALBUQUERQUE,NM,35.056116,-106.550605,BERNALILLO 87119,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87120,ALBUQUERQUE,NM,35.142146,-106.704137,BERNALILLO 87121,ALBUQUERQUE,NM,35.051209,-106.726861,BERNALILLO 87122,ALBUQUERQUE,NM,35.178715,-106.510176,BERNALILLO 87123,ALBUQUERQUE,NM,35.07166,-106.509003,BERNALILLO 87125,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87131,ALBUQUERQUE,NM,35.0862,-106.6213,BERNALILLO 87151,ALBUQUERQUE,NM,35.0844,-106.6508,BERNALILLO 87153,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87154,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87158,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87165,ALBUQUERQUE,NM,35.2533,-106.6459,BERNALILLO 87176,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87181,ALBUQUERQUE,NM,35.101,-106.5153,BERNALILLO 87184,ALBUQUERQUE,NM,35.1849,-106.6202,BERNALILLO 87185,ALBUQUERQUE,NM,34.9821,-106.5156,BERNALILLO 87187,ALBUQUERQUE,NM,35.1697,-106.8332,BERNALILLO 87190,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87191,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87192,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87193,ALBUQUERQUE,NM,35.1881,-106.6826,BERNALILLO 87194,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87195,ALBUQUERQUE,NM,35.001,-106.6511,BERNALILLO 87196,ALBUQUERQUE,NM,35.0806,-106.6189,BERNALILLO 87197,ALBUQUERQUE,NM,35.1211,-106.6446,BERNALILLO 87198,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87199,ALBUQUERQUE,NM,35.1595,-106.5782,BERNALILLO 87501,SANTA FE,NM,35.702472,-105.974818,SANTA FE 87502,SANTA FE,NM,35.8099,-105.985,SANTA FE 87503,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87504,SANTA FE,NM,35.8099,-105.985,SANTA FE 87505,SANTA FE,NM,35.619623,-105.981994,SANTA FE 87506,SANTA FE,NM,35.7956,-106.0122,SANTA FE 87507,SANTA FE,NM,35.635,-106.0446,SANTA FE 87508,SANTA FE,NM,35.5587,-105.9762,SANTA FE 87509,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87592,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87594,SANTA FE,NM,35.7946,-105.9929,SANTA FE 88001,LAS CRUCES,NM,32.321641,-106.746034,DONA ANA 88003,LAS CRUCES,NM,32.2809,-106.7473,DONA ANA 88004,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88005,LAS CRUCES,NM,32.316076,-106.79908,DONA ANA 88006,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88007,LAS CRUCES,NM,32.3538,-106.8395,DONA ANA 88011,LAS CRUCES,NM,32.327,-106.709,DONA ANA 88012,LAS CRUCES,NM,32.4435,-106.7253,DONA ANA 88013,LAS CRUCES,NM,32.3111,-106.7888,DONA ANA 88510,EL PASO,TX,31.7691,-106.4264,EL PASO 88511,EL PASO,TX,31.7691,-106.4264,EL PASO 88512,EL PASO,TX,31.7691,-106.4264,EL PASO 88513,EL PASO,TX,31.7691,-106.4264,EL PASO 88514,EL PASO,TX,31.7691,-106.4264,EL PASO 88515,EL PASO,TX,31.7691,-106.4264,EL PASO 88516,EL PASO,TX,31.7691,-106.4264,EL PASO 88517,EL PASO,TX,31.7691,-106.4264,EL PASO 88518,EL PASO,TX,31.7691,-106.4264,EL PASO 88519,EL PASO,TX,31.7691,-106.4264,EL PASO 88520,EL PASO,TX,31.7691,-106.4264,EL PASO 88521,EL PASO,TX,31.7691,-106.4264,EL PASO 88523,EL PASO,TX,31.7691,-106.4264,EL PASO 88524,EL PASO,TX,31.7691,-106.4264,EL PASO 88525,EL PASO,TX,31.7691,-106.4264,EL PASO 88526,EL PASO,TX,31.7691,-106.4264,EL PASO 88527,EL PASO,TX,31.7691,-106.4264,EL PASO 88528,EL PASO,TX,31.7691,-106.4264,EL PASO 88529,EL PASO,TX,31.7691,-106.4264,EL PASO 88530,EL PASO,TX,31.7691,-106.4264,EL PASO 88531,EL PASO,TX,31.7691,-106.4264,EL PASO 88532,EL PASO,TX,31.7691,-106.4264,EL PASO 88533,EL PASO,TX,31.7691,-106.4264,EL PASO 88534,EL PASO,TX,31.7691,-106.4264,EL PASO 88535,EL PASO,TX,31.7691,-106.4264,EL PASO 88536,EL PASO,TX,31.7691,-106.4264,EL PASO 88538,EL PASO,TX,31.7691,-106.4264,EL PASO 88539,EL PASO,TX,31.7691,-106.4264,EL PASO 88540,EL PASO,TX,31.7691,-106.4264,EL PASO 88541,EL PASO,TX,31.7691,-106.4264,EL PASO 88542,EL PASO,TX,31.7691,-106.4264,EL PASO 88543,EL PASO,TX,31.7691,-106.4264,EL PASO 88544,EL PASO,TX,31.7691,-106.4264,EL PASO 88545,EL PASO,TX,31.7691,-106.4264,EL PASO 88546,EL PASO,TX,31.7691,-106.4264,EL PASO 88547,EL PASO,TX,31.7691,-106.4264,EL PASO 88548,EL PASO,TX,31.7691,-106.4264,EL PASO 88549,EL PASO,TX,31.7691,-106.4264,EL PASO 88550,EL PASO,TX,31.7691,-106.4264,EL PASO 88553,EL PASO,TX,31.7691,-106.4264,EL PASO 88554,EL PASO,TX,31.7691,-106.4264,EL PASO 88555,EL PASO,TX,31.7691,-106.4264,EL PASO 88556,EL PASO,TX,31.7691,-106.4264,EL PASO 88557,EL PASO,TX,31.7691,-106.4264,EL PASO 88558,EL PASO,TX,31.7691,-106.4264,EL PASO 88559,EL PASO,TX,31.7691,-106.4264,EL PASO 88560,EL PASO,TX,31.7691,-106.4264,EL PASO 88561,EL PASO,TX,31.7691,-106.4264,EL PASO 88562,EL PASO,TX,31.7691,-106.4264,EL PASO 88563,EL PASO,TX,31.7691,-106.4264,EL PASO 88565,EL PASO,TX,31.7691,-106.4264,EL PASO 88566,EL PASO,TX,31.7691,-106.4264,EL PASO 88567,EL PASO,TX,31.7691,-106.4264,EL PASO 88568,EL PASO,TX,31.7691,-106.4264,EL PASO 88569,EL PASO,TX,31.7691,-106.4264,EL PASO 88570,EL PASO,TX,31.7691,-106.4264,EL PASO 88571,EL PASO,TX,31.7691,-106.4264,EL PASO 88572,EL PASO,TX,31.7691,-106.4264,EL PASO 88573,EL PASO,TX,31.7691,-106.4264,EL PASO 88574,EL PASO,TX,31.7691,-106.4264,EL PASO 88575,EL PASO,TX,31.7691,-106.4264,EL PASO 88576,EL PASO,TX,31.7691,-106.4264,EL PASO 88577,EL PASO,TX,31.7691,-106.4264,EL PASO 88578,EL PASO,TX,31.7691,-106.4264,EL PASO 88579,EL PASO,TX,31.7691,-106.4264,EL PASO 88580,EL PASO,TX,31.7691,-106.4264,EL PASO 88581,EL PASO,TX,31.7691,-106.4264,EL PASO 88582,EL PASO,TX,31.7691,-106.4264,EL PASO 88583,EL PASO,TX,31.7691,-106.4264,EL PASO 88584,EL PASO,TX,31.7691,-106.4264,EL PASO 88585,EL PASO,TX,31.7691,-106.4264,EL PASO 88586,EL PASO,TX,31.7691,-106.4264,EL PASO 88587,EL PASO,TX,31.7691,-106.4264,EL PASO 88588,EL PASO,TX,31.7691,-106.4264,EL PASO 88589,EL PASO,TX,31.8102,-106.4167,EL PASO 88590,EL PASO,TX,31.7691,-106.4264,EL PASO 88595,EL PASO,TX,31.7691,-106.4264,EL PASO 89002,HENDERSON,NV,35.992678,-114.951684,CLARK 89009,HENDERSON,NV,36.0938,-114.9445,CLARK 89011,HENDERSON,NV,36.0816,-114.9771,CLARK 89012,HENDERSON,NV,36.0188,-115.0512,CLARK 89014,HENDERSON,NV,36.056435,-115.077968,CLARK 89015,HENDERSON,NV,36.035705,-114.971809,CLARK 89016,HENDERSON,NV,36.0698,-115.0811,CLARK 89030,NORTH LAS VEGAS,NV,36.4475,-114.851389,CLARK 89031,NORTH LAS VEGAS,NV,36.206228,-115.124832,CLARK 89032,NORTH LAS VEGAS,NV,36.2236,-115.1745,CLARK 89033,NORTH LAS VEGAS,NV,36.3231,-115.1214,CLARK 89036,NORTH LAS VEGAS,NV,36.3709,-114.8819,CLARK 89044,HENDERSON,NV,35.9378,-115.098,CLARK 89052,HENDERSON,NV,35.9811,-115.1033,CLARK 89053,HENDERSON,NV,36.0865,-114.9434,CLARK 89074,HENDERSON,NV,36.0368,-115.0854,CLARK 89077,HENDERSON,NV,36.003889,-115.100556,CLARK 89081,NORTH LAS VEGAS,NV,36.2621,-115.1126,CLARK 89084,NORTH LAS VEGAS,NV,36.2873,-115.176,CLARK 89085,NORTH LAS VEGAS,NV,36.3096,-115.1963,CLARK 89086,NORTH LAS VEGAS,NV,36.2805,-115.1199,CLARK 89087,NORTH LAS VEGAS,NV,36.1989,-115.1175,CLARK 89101,LAS VEGAS,NV,36.172082,-115.122366,CLARK 89102,LAS VEGAS,NV,36.143303,-115.200351,CLARK 89103,LAS VEGAS,NV,36.114865,-115.216072,CLARK 89104,LAS VEGAS,NV,36.15197,-115.109195,CLARK 89105,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89106,LAS VEGAS,NV,36.184673,-115.161703,CLARK 89107,LAS VEGAS,NV,36.170457,-115.217638,CLARK 89108,LAS VEGAS,NV,36.204399,-115.223259,CLARK 89109,LAS VEGAS,NV,36.125991,-115.145378,CLARK 89110,LAS VEGAS,NV,36.173031,-115.066892,CLARK 89111,LAS VEGAS,NV,36.0856,-115.1458,CLARK 89112,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89113,LAS VEGAS,NV,36.085366,-115.256614,CLARK 89114,LAS VEGAS,NV,36.1328,-115.171,CLARK 89115,LAS VEGAS,NV,36.215818,-115.067062,CLARK 89116,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89117,LAS VEGAS,NV,36.130196,-115.275518,CLARK 89118,LAS VEGAS,NV,36.081052,-115.216856,CLARK 89119,LAS VEGAS,NV,36.100836,-115.136463,CLARK 89120,LAS VEGAS,NV,36.091423,-115.088485,CLARK 89121,LAS VEGAS,NV,36.12318,-115.090219,CLARK 89122,LAS VEGAS,NV,36.120501,-115.052322,CLARK 89123,LAS VEGAS,NV,36.038273,-115.146182,CLARK 89124,LAS VEGAS,NV,35.963391,-115.095067,CLARK 89125,LAS VEGAS,NV,36.1725,-115.1402,CLARK 89126,LAS VEGAS,NV,36.1507,-115.2075,CLARK 89127,LAS VEGAS,NV,36.1771,-115.1532,CLARK 89128,LAS VEGAS,NV,36.175992,-115.256252,CLARK 89129,LAS VEGAS,NV,36.245004,-115.274254,CLARK 89130,LAS VEGAS,NV,36.247137,-115.221032,CLARK 89131,LAS VEGAS,NV,36.295604,-115.241942,CLARK 89132,LAS VEGAS,NV,36.0998,-115.145,CLARK 89133,LAS VEGAS,NV,36.175,-115.1363,CLARK 89134,LAS VEGAS,NV,36.209234,-115.294123,CLARK 89135,LAS VEGAS,NV,36.1314,-115.3278,CLARK 89136,LAS VEGAS,NV,36.175,-115.1364,CLARK 89137,LAS VEGAS,NV,36.175,-115.1363,CLARK 89138,LAS VEGAS,NV,36.1694,-115.349,CLARK 89139,LAS VEGAS,NV,36.0411,-115.2163,CLARK 89140,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89141,LAS VEGAS,NV,35.9894,-115.203,CLARK 89142,LAS VEGAS,NV,36.1484,-115.0453,CLARK 89143,LAS VEGAS,NV,36.3158,-115.289,CLARK 89144,LAS VEGAS,NV,36.1788,-115.324,CLARK 89145,LAS VEGAS,NV,36.1678,-115.274,CLARK 89146,LAS VEGAS,NV,36.1428,-115.2253,CLARK 89147,LAS VEGAS,NV,36.1126,-115.2796,CLARK 89148,LAS VEGAS,NV,36.0643,-115.2964,CLARK 89149,LAS VEGAS,NV,36.2756,-115.2894,CLARK 89150,LAS VEGAS,NV,36.175,-115.1363,CLARK 89151,LAS VEGAS,NV,36.175,-115.1363,CLARK 89152,LAS VEGAS,NV,36.175,-115.1363,CLARK 89153,LAS VEGAS,NV,36.175,-115.1363,CLARK 89154,LAS VEGAS,NV,36.1065,-115.1372,CLARK 89155,LAS VEGAS,NV,36.1907,-115.1876,CLARK 89156,LAS VEGAS,NV,36.2012,-115.0327,CLARK 89157,LAS VEGAS,NV,36.175,-115.1372,CLARK 89159,LAS VEGAS,NV,36.0717,-115.14,CLARK 89160,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89161,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89162,LAS VEGAS,NV,36.175,-115.136,CLARK 89164,LAS VEGAS,NV,36.175,-115.1363,CLARK 89165,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89166,LAS VEGAS,NV,36.3211,-115.3335,CLARK 89169,LAS VEGAS,NV,36.122458,-115.141483,CLARK 89170,LAS VEGAS,NV,36.1059,-115.1362,CLARK 89173,LAS VEGAS,NV,36.1062,-115.1374,CLARK 89177,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89178,LAS VEGAS,NV,36.0115,-115.2711,CLARK 89179,LAS VEGAS,NV,35.987,-115.246,CLARK 89180,LAS VEGAS,NV,36.1276,-115.2421,CLARK 89183,LAS VEGAS,NV,35.991178,-115.147411,CLARK 89185,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89193,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89195,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89199,LAS VEGAS,NV,36.175,-115.1363,CLARK 89431,SPARKS,NV,39.547254,-119.755588,WASHOE 89432,SPARKS,NV,39.5407,-119.7466,WASHOE 89434,SPARKS,NV,39.550229,-119.717754,WASHOE 89435,SPARKS,NV,39.535,-119.7516,WASHOE 89436,SPARKS,NV,39.626861,-119.708125,WASHOE 89441,SPARKS,NV,39.6652,-119.6958,WASHOE 89501,RENO,NV,39.526812,-119.811275,WASHOE 89502,RENO,NV,39.497239,-119.776395,WASHOE 89503,RENO,NV,39.5354,-119.837409,WASHOE 89504,RENO,NV,39.5297,-119.8127,WASHOE 89505,RENO,NV,39.5297,-119.8127,WASHOE 89506,RENO,NV,39.641168,-119.873505,WASHOE 89507,RENO,NV,39.5385,-119.8179,WASHOE 89508,RENO,NV,39.5296329,-119.8138027,WASHOE 89509,RENO,NV,39.498042,-119.823932,WASHOE 89510,RENO,NV,39.769919,-119.602678,WASHOE 89511,RENO,NV,39.41512,-119.766846,WASHOE 89512,RENO,NV,39.548312,-119.795699,WASHOE 89513,RENO,NV,39.5297,-119.8127,WASHOE 89515,RENO,NV,39.5132,-119.7806,WASHOE 89519,RENO,NV,39.4857,-119.8522,WASHOE 89520,RENO,NV,39.5132,-119.7806,WASHOE 89521,RENO,NV,39.455833,-119.771667,WASHOE 89523,RENO,NV,39.524917,-119.903065,WASHOE 89533,RENO,NV,39.5297,-119.8127,WASHOE 89555,RENO,NV,39.5297,-119.8129,WASHOE 89557,RENO,NV,39.5452,-119.8201,WASHOE 89570,RENO,NV,39.5297,-119.8127,WASHOE 89595,RENO,NV,39.5132,-119.7806,WASHOE 89599,RENO,NV,39.5297,-119.8127,WASHOE 89701,CARSON CITY,NV,39.150746,-119.745904,CARSON CITY 89702,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89703,CARSON CITY,NV,39.17036,-119.778242,CARSON CITY 89705,CARSON CITY,NV,39.089147,-119.782899,DOUGLAS 89706,CARSON CITY,NV,39.210876,-119.742912,CARSON CITY 89711,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89712,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89713,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89714,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89721,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 90001,LOS ANGELES,CA,33.973093,-118.247896,LOS ANGELES 90002,LOS ANGELES,CA,33.94969,-118.246213,LOS ANGELES 90003,LOS ANGELES,CA,33.965335,-118.272739,LOS ANGELES 90004,LOS ANGELES,CA,34.076163,-118.302863,LOS ANGELES 90005,LOS ANGELES,CA,34.058508,-118.301197,LOS ANGELES 90006,LOS ANGELES,CA,34.049323,-118.291687,LOS ANGELES 90007,LOS ANGELES,CA,34.029442,-118.287095,LOS ANGELES 90008,LOS ANGELES,CA,34.011643,-118.341123,LOS ANGELES 90009,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90010,LOS ANGELES,CA,34.060633,-118.302664,LOS ANGELES 90011,LOS ANGELES,CA,34.007856,-118.258189,LOS ANGELES 90012,LOS ANGELES,CA,34.061396,-118.238479,LOS ANGELES 90013,LOS ANGELES,CA,34.044841,-118.243366,LOS ANGELES 90014,LOS ANGELES,CA,34.044272,-118.250937,LOS ANGELES 90015,LOS ANGELES,CA,34.043439,-118.271613,LOS ANGELES 90016,LOS ANGELES,CA,34.029826,-118.352787,LOS ANGELES 90017,LOS ANGELES,CA,34.055864,-118.266582,LOS ANGELES 90018,LOS ANGELES,CA,34.028972,-118.315173,LOS ANGELES 90019,LOS ANGELES,CA,34.048158,-118.33426,LOS ANGELES 90020,LOS ANGELES,CA,34.066535,-118.302211,LOS ANGELES 90021,LOS ANGELES,CA,34.033303,-118.244698,LOS ANGELES 90022,LOS ANGELES,CA,34.023638,-118.155319,LOS ANGELES 90023,LOS ANGELES,CA,34.024478,-118.197498,LOS ANGELES 90024,LOS ANGELES,CA,34.063691,-118.440796,LOS ANGELES 90025,LOS ANGELES,CA,34.044662,-118.448717,LOS ANGELES 90026,LOS ANGELES,CA,34.076629,-118.264641,LOS ANGELES 90027,LOS ANGELES,CA,34.104031,-118.292516,LOS ANGELES 90028,LOS ANGELES,CA,34.100549,-118.325363,LOS ANGELES 90029,LOS ANGELES,CA,34.089982,-118.294393,LOS ANGELES 90030,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90031,LOS ANGELES,CA,34.078349,-118.211279,LOS ANGELES 90032,LOS ANGELES,CA,34.081785,-118.175323,LOS ANGELES 90033,LOS ANGELES,CA,34.048676,-118.208442,LOS ANGELES 90034,LOS ANGELES,CA,34.028977,-118.400482,LOS ANGELES 90035,LOS ANGELES,CA,34.053096,-118.380615,LOS ANGELES 90036,LOS ANGELES,CA,34.069888,-118.349175,LOS ANGELES 90037,LOS ANGELES,CA,34.002982,-118.286284,LOS ANGELES 90038,LOS ANGELES,CA,34.089769,-118.321489,LOS ANGELES 90039,LOS ANGELES,CA,34.112089,-118.259428,LOS ANGELES 90040,LOS ANGELES,CA,33.99471,-118.151352,LOS ANGELES 90041,LOS ANGELES,CA,34.133932,-118.208205,LOS ANGELES 90042,LOS ANGELES,CA,34.114527,-118.192902,LOS ANGELES 90043,LOS ANGELES,CA,33.987099,-118.33211,LOS ANGELES 90044,LOS ANGELES,CA,33.955089,-118.290119,LOS ANGELES 90045,LOS ANGELES,CA,33.963075,-118.394128,LOS ANGELES 90046,LOS ANGELES,CA,34.09743,-118.357979,LOS ANGELES 90047,LOS ANGELES,CA,33.956896,-118.307304,LOS ANGELES 90048,LOS ANGELES,CA,34.073656,-118.371969,LOS ANGELES 90049,LOS ANGELES,CA,34.066,-118.473967,LOS ANGELES 90050,LOS ANGELES,CA,34.1208,-118.2033,LOS ANGELES 90051,LOS ANGELES,CA,33.948889,-118.247778,LOS ANGELES 90052,LOS ANGELES,CA,33.9818,-118.2579,LOS ANGELES 90053,LOS ANGELES,CA,34.0535,-118.2397,LOS ANGELES 90054,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90055,LOS ANGELES,CA,34.0449,-118.2579,LOS ANGELES 90056,LOS ANGELES,CA,33.985329,-118.370703,LOS ANGELES 90057,LOS ANGELES,CA,34.062172,-118.276262,LOS ANGELES 90058,LOS ANGELES,CA,33.997344,-118.235365,LOS ANGELES 90059,LOS ANGELES,CA,33.929331,-118.24628,LOS ANGELES 90060,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90061,LOS ANGELES,CA,33.924493,-118.271638,LOS ANGELES 90062,LOS ANGELES,CA,34.00324,-118.307277,LOS ANGELES 90063,LOS ANGELES,CA,34.044017,-118.185432,LOS ANGELES 90064,LOS ANGELES,CA,34.035279,-118.425911,LOS ANGELES 90065,LOS ANGELES,CA,34.107307,-118.226637,LOS ANGELES 90066,LOS ANGELES,CA,34.002956,-118.429769,LOS ANGELES 90067,LOS ANGELES,CA,34.055146,-118.409479,LOS ANGELES 90068,LOS ANGELES,CA,34.115625,-118.330476,LOS ANGELES 90070,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90071,LOS ANGELES,CA,34.052043,-118.257127,LOS ANGELES 90072,LOS ANGELES,CA,34.0961,-118.3086,LOS ANGELES 90073,LOS ANGELES,CA,34.056667,-118.456944,LOS ANGELES 90074,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90075,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90076,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90077,LOS ANGELES,CA,34.111245,-118.450155,LOS ANGELES 90078,LOS ANGELES,CA,34.0996,-118.3261,LOS ANGELES 90079,LOS ANGELES,CA,34.0522,-118.2427,LOS ANGELES 90080,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90081,LOS ANGELES,CA,33.9542,-118.3972,LOS ANGELES 90082,LOS ANGELES,CA,34.0008,-118.2772,LOS ANGELES 90083,LOS ANGELES,CA,33.9537,-118.398,LOS ANGELES 90084,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90086,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90087,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90088,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90089,LOS ANGELES,CA,34.0204,-118.2874,LOS ANGELES 90091,LOS ANGELES,CA,33.992222,-118.150278,LOS ANGELES 90093,LOS ANGELES,CA,34.0967,-118.3346,LOS ANGELES 90094,LOS ANGELES,CA,33.9732,-118.4231,LOS ANGELES 90095,LOS ANGELES,CA,34.070833,-118.444167,LOS ANGELES 90096,LOS ANGELES,CA,33.9681,-118.1696,LOS ANGELES 90099,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90101,LOS ANGELES,CA,33.974,-118.2488,LOS ANGELES 90102,LOS ANGELES,CA,34.0184,-118.1987,LOS ANGELES 90103,LOS ANGELES,CA,34.0184,-118.1996,LOS ANGELES 90189,LOS ANGELES,CA,34.0583,-118.2476,LOS ANGELES 90301,INGLEWOOD,CA,33.955048,-118.355575,LOS ANGELES 90302,INGLEWOOD,CA,33.974496,-118.354805,LOS ANGELES 90303,INGLEWOOD,CA,33.937691,-118.332058,LOS ANGELES 90304,INGLEWOOD,CA,33.938514,-118.355562,LOS ANGELES 90305,INGLEWOOD,CA,33.958304,-118.32585,LOS ANGELES 90306,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90307,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90308,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90309,INGLEWOOD,CA,33.9726,-118.3567,LOS ANGELES 90310,INGLEWOOD,CA,33.9306,-118.3218,LOS ANGELES 90311,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90312,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90313,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90397,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90398,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90401,SANTA MONICA,CA,34.017628,-118.490708,LOS ANGELES 90402,SANTA MONICA,CA,34.034875,-118.503011,LOS ANGELES 90403,SANTA MONICA,CA,34.028658,-118.49241,LOS ANGELES 90404,SANTA MONICA,CA,34.026828,-118.4733,LOS ANGELES 90405,SANTA MONICA,CA,34.01001,-118.471708,LOS ANGELES 90406,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90407,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90408,SANTA MONICA,CA,34.0259,-118.489,LOS ANGELES 90409,SANTA MONICA,CA,34.0003,-118.482,LOS ANGELES 90410,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90411,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90501,TORRANCE,CA,33.826817,-118.31183,LOS ANGELES 90502,TORRANCE,CA,33.828555,-118.292039,LOS ANGELES 90503,TORRANCE,CA,33.839709,-118.354236,LOS ANGELES 90504,TORRANCE,CA,33.870815,-118.329517,LOS ANGELES 90505,TORRANCE,CA,33.810635,-118.350733,LOS ANGELES 90506,TORRANCE,CA,33.885367,-118.329543,LOS ANGELES 90507,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90508,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90509,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90510,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90601,WHITTIER,CA,34.001119,-118.037139,LOS ANGELES 90602,WHITTIER,CA,33.96931,-118.033703,LOS ANGELES 90603,WHITTIER,CA,33.943199,-117.992685,LOS ANGELES 90604,WHITTIER,CA,33.929931,-118.012075,LOS ANGELES 90605,WHITTIER,CA,33.941338,-118.035568,LOS ANGELES 90606,WHITTIER,CA,33.977019,-118.065639,LOS ANGELES 90607,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90608,WHITTIER,CA,33.9804,-118.0342,LOS ANGELES 90609,WHITTIER,CA,33.9791,-118.0319,LOS ANGELES 90610,WHITTIER,CA,33.9686,-118.0702,LOS ANGELES 90612,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90801,LONG BEACH,CA,33.7705,-118.1885,LOS ANGELES 90802,LONG BEACH,CA,33.770553,-118.182025,LOS ANGELES 90803,LONG BEACH,CA,33.761932,-118.134073,LOS ANGELES 90804,LONG BEACH,CA,33.782993,-118.155187,LOS ANGELES 90805,LONG BEACH,CA,33.863457,-118.180102,LOS ANGELES 90806,LONG BEACH,CA,33.799319,-118.187443,LOS ANGELES 90807,LONG BEACH,CA,33.830712,-118.18092,LOS ANGELES 90808,LONG BEACH,CA,33.824145,-118.110299,LOS ANGELES 90809,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90810,LONG BEACH,CA,33.810985,-118.215006,LOS ANGELES 90813,LONG BEACH,CA,33.78202,-118.183488,LOS ANGELES 90814,LONG BEACH,CA,33.771576,-118.147988,LOS ANGELES 90815,LONG BEACH,CA,33.793908,-118.119249,LOS ANGELES 90822,LONG BEACH,CA,33.744415,-118.239257,LOS ANGELES 90831,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90832,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90833,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90834,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90835,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90840,LONG BEACH,CA,33.7828,-118.1153,LOS ANGELES 90842,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90844,LONG BEACH,CA,33.7744,-118.1923,LOS ANGELES 90845,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90846,LONG BEACH,CA,33.8281,-118.1427,LOS ANGELES 90847,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90848,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90853,LONG BEACH,CA,33.759,-118.1306,LOS ANGELES 90888,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90899,LONG BEACH,CA,33.7668,-118.1886,LOS ANGELES 91101,PASADENA,CA,34.146762,-118.139119,LOS ANGELES 91102,PASADENA,CA,34.146,-118.1438,LOS ANGELES 91103,PASADENA,CA,34.166906,-118.155119,LOS ANGELES 91104,PASADENA,CA,34.167776,-118.12609,LOS ANGELES 91105,PASADENA,CA,34.135455,-118.163577,LOS ANGELES 91106,PASADENA,CA,34.143527,-118.126647,LOS ANGELES 91107,PASADENA,CA,34.150997,-118.088905,LOS ANGELES 91109,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91110,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91114,PASADENA,CA,34.1692,-118.1302,LOS ANGELES 91115,PASADENA,CA,34.1359,-118.1532,LOS ANGELES 91116,PASADENA,CA,34.1461,-118.1295,LOS ANGELES 91117,PASADENA,CA,34.1463,-118.0956,LOS ANGELES 91121,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91123,PASADENA,CA,34.1445,-118.1566,LOS ANGELES 91124,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91125,PASADENA,CA,34.1359,-118.1262,LOS ANGELES 91126,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91129,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91131,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91182,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91184,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91185,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91188,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91189,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91191,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91199,PASADENA,CA,34.1668,-118.1216,LOS ANGELES 91201,GLENDALE,CA,34.171606,-118.289892,LOS ANGELES 91202,GLENDALE,CA,34.165235,-118.265649,LOS ANGELES 91203,GLENDALE,CA,34.151718,-118.263614,LOS ANGELES 91204,GLENDALE,CA,34.137871,-118.259947,LOS ANGELES 91205,GLENDALE,CA,34.137798,-118.24245,LOS ANGELES 91206,GLENDALE,CA,34.155605,-118.232217,LOS ANGELES 91207,GLENDALE,CA,34.164856,-118.245086,LOS ANGELES 91208,GLENDALE,CA,34.19212,-118.234966,LOS ANGELES 91209,GLENDALE,CA,34.1463,-118.2515,LOS ANGELES 91210,GLENDALE,CA,34.1441,-118.2593,LOS ANGELES 91221,GLENDALE,CA,34.1647,-118.2885,LOS ANGELES 91222,GLENDALE,CA,34.16,-118.2635,LOS ANGELES 91225,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91226,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91324,NORTHRIDGE,CA,34.236743,-118.546595,LOS ANGELES 91325,NORTHRIDGE,CA,34.235332,-118.51884,LOS ANGELES 91327,NORTHRIDGE,CA,34.274167,-118.541111,LOS ANGELES 91328,NORTHRIDGE,CA,34.2432,-118.535,LOS ANGELES 91329,NORTHRIDGE,CA,34.2224,-118.5024,LOS ANGELES 91330,NORTHRIDGE,CA,34.23805,-118.528634,LOS ANGELES 91388,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91401,VAN NUYS,CA,34.180152,-118.432375,LOS ANGELES 91404,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91405,VAN NUYS,CA,34.200068,-118.445636,LOS ANGELES 91406,VAN NUYS,CA,34.200568,-118.486821,LOS ANGELES 91407,VAN NUYS,CA,34.194,-118.4489,LOS ANGELES 91408,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91409,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91410,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91411,VAN NUYS,CA,34.178133,-118.457396,LOS ANGELES 91470,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91482,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91496,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91497,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91499,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91501,BURBANK,CA,34.186238,-118.300898,LOS ANGELES 91502,BURBANK,CA,34.174487,-118.305912,LOS ANGELES 91503,BURBANK,CA,34.1804,-118.3084,LOS ANGELES 91504,BURBANK,CA,34.200097,-118.326401,LOS ANGELES 91505,BURBANK,CA,34.168998,-118.344175,LOS ANGELES 91506,BURBANK,CA,34.171746,-118.323148,LOS ANGELES 91507,BURBANK,CA,34.1672,-118.3472,LOS ANGELES 91508,BURBANK,CA,34.1914,-118.3259,LOS ANGELES 91510,BURBANK,CA,34.187,-118.348,LOS ANGELES 91521,BURBANK,CA,34.1559,-118.3268,LOS ANGELES 91522,BURBANK,CA,34.1491,-118.3427,LOS ANGELES 91523,BURBANK,CA,34.1563,-118.3333,LOS ANGELES 91526,BURBANK,CA,34.1745,-118.3462,LOS ANGELES 91601,NORTH HOLLYWOOD,CA,34.16867,-118.371274,LOS ANGELES 91602,NORTH HOLLYWOOD,CA,34.151095,-118.367606,LOS ANGELES 91603,NORTH HOLLYWOOD,CA,34.1681,-118.3778,LOS ANGELES 91605,NORTH HOLLYWOOD,CA,34.205747,-118.400069,LOS ANGELES 91606,NORTH HOLLYWOOD,CA,34.187182,-118.386538,LOS ANGELES 91609,NORTH HOLLYWOOD,CA,34.1891,-118.387,LOS ANGELES 91611,NORTH HOLLYWOOD,CA,34.1867,-118.3976,LOS ANGELES 91612,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91615,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91616,NORTH HOLLYWOOD,CA,34.184,-118.3964,LOS ANGELES 91618,NORTH HOLLYWOOD,CA,34.1388,-118.3525,LOS ANGELES 91766,POMONA,CA,34.043268,-117.752086,LOS ANGELES 91767,POMONA,CA,34.081187,-117.736171,LOS ANGELES 91768,POMONA,CA,34.066168,-117.776312,LOS ANGELES 91769,POMONA,CA,34.0601,-117.7575,LOS ANGELES 91797,POMONA,CA,34.0852,-117.96,LOS ANGELES 91799,POMONA,CA,34.0552,-117.7513,LOS ANGELES 91801,ALHAMBRA,CA,34.091436,-118.129288,LOS ANGELES 91802,ALHAMBRA,CA,34.0931,-118.1257,LOS ANGELES 91803,ALHAMBRA,CA,34.074514,-118.143354,LOS ANGELES 91804,ALHAMBRA,CA,34.0952,-118.1261,LOS ANGELES 91841,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91896,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91899,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91909,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91910,CHULA VISTA,CA,32.637139,-117.06756,SAN DIEGO 91911,CHULA VISTA,CA,32.608428,-117.056459,SAN DIEGO 91912,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91913,CHULA VISTA,CA,32.651296,-116.985237,SAN DIEGO 91914,CHULA VISTA,CA,32.65875,-116.96517,SAN DIEGO 91915,CHULA VISTA,CA,32.631513,-116.940807,SAN DIEGO 91921,CHULA VISTA,CA,32.6248,-117.0142,SAN DIEGO 92008,CARLSBAD,CA,33.160241,-117.324998,SAN DIEGO 92009,CARLSBAD,CA,33.095407,-117.261888,SAN DIEGO 92010,CARLSBAD,CA,33.156116,-117.280831,SAN DIEGO 92011,CARLSBAD,CA,33.107933,-117.288181,SAN DIEGO 92013,CARLSBAD,CA,33.0986,-117.2788,SAN DIEGO 92018,CARLSBAD,CA,33.1626,-117.3489,SAN DIEGO 92025,ESCONDIDO,CA,33.110117,-117.069987,SAN DIEGO 92026,ESCONDIDO,CA,33.160513,-117.097808,SAN DIEGO 92027,ESCONDIDO,CA,33.138824,-117.051966,SAN DIEGO 92029,ESCONDIDO,CA,33.089497,-117.112793,SAN DIEGO 92030,ESCONDIDO,CA,33.1362,-117.0543,SAN DIEGO 92033,ESCONDIDO,CA,33.1236,-117.086,SAN DIEGO 92046,ESCONDIDO,CA,33.1249,-117.1016,SAN DIEGO 92049,OCEANSIDE,CA,33.1951,-117.3776,SAN DIEGO 92051,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92052,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92054,OCEANSIDE,CA,33.20723,-117.357294,SAN DIEGO 92056,OCEANSIDE,CA,33.196784,-117.283089,SAN DIEGO 92057,OCEANSIDE,CA,33.240654,-117.302484,SAN DIEGO 92058,OCEANSIDE,CA,33.1958696,-117.3794834,SAN DIEGO 92101,SAN DIEGO,CA,32.71852,-117.159316,SAN DIEGO 92102,SAN DIEGO,CA,32.713893,-117.121858,SAN DIEGO 92103,SAN DIEGO,CA,32.746638,-117.163552,SAN DIEGO 92104,SAN DIEGO,CA,32.745425,-117.127189,SAN DIEGO 92105,SAN DIEGO,CA,32.7423,-117.094681,SAN DIEGO 92106,SAN DIEGO,CA,32.72725,-117.226829,SAN DIEGO 92107,SAN DIEGO,CA,32.742531,-117.243307,SAN DIEGO 92108,SAN DIEGO,CA,32.778327,-117.133525,SAN DIEGO 92109,SAN DIEGO,CA,32.796923,-117.240534,SAN DIEGO 92110,SAN DIEGO,CA,32.763476,-117.202847,SAN DIEGO 92111,SAN DIEGO,CA,32.797185,-117.17081,SAN DIEGO 92112,SAN DIEGO,CA,32.7246,-117.1648,SAN DIEGO 92113,SAN DIEGO,CA,32.697047,-117.115257,SAN DIEGO 92114,SAN DIEGO,CA,32.705923,-117.05235,SAN DIEGO 92115,SAN DIEGO,CA,32.760742,-117.072056,SAN DIEGO 92116,SAN DIEGO,CA,32.762446,-117.124166,SAN DIEGO 92117,SAN DIEGO,CA,32.823948,-117.196536,SAN DIEGO 92119,SAN DIEGO,CA,32.803587,-117.026065,SAN DIEGO 92120,SAN DIEGO,CA,32.79581,-117.070708,SAN DIEGO 92121,SAN DIEGO,CA,32.891894,-117.203503,SAN DIEGO 92122,SAN DIEGO,CA,32.857736,-117.211507,SAN DIEGO 92123,SAN DIEGO,CA,32.797297,-117.139248,SAN DIEGO 92124,SAN DIEGO,CA,32.820113,-117.098613,SAN DIEGO 92126,SAN DIEGO,CA,32.916136,-117.140227,SAN DIEGO 92127,SAN DIEGO,CA,33.027854,-117.085596,SAN DIEGO 92128,SAN DIEGO,CA,33.00666,-117.068982,SAN DIEGO 92129,SAN DIEGO,CA,32.965185,-117.121308,SAN DIEGO 92130,SAN DIEGO,CA,32.955533,-117.225201,SAN DIEGO 92131,SAN DIEGO,CA,32.912343,-117.089758,SAN DIEGO 92132,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92133,SAN DIEGO,CA,32.7256,-117.2177,SAN DIEGO 92134,SAN DIEGO,CA,32.725,-117.1465,SAN DIEGO 92135,SAN DIEGO,CA,32.702482,-117.19202,SAN DIEGO 92136,SAN DIEGO,CA,32.681585,-117.124678,SAN DIEGO 92137,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92138,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92139,SAN DIEGO,CA,32.680612,-117.047375,SAN DIEGO 92140,SAN DIEGO,CA,32.7399,-117.198,SAN DIEGO 92142,SAN DIEGO,CA,32.8398,-117.0973,SAN DIEGO 92145,SAN DIEGO,CA,32.870365,-117.116518,SAN DIEGO 92147,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92149,SAN DIEGO,CA,32.6759,-117.0643,SAN DIEGO 92150,SAN DIEGO,CA,32.9847,-117.0786,SAN DIEGO 92152,SAN DIEGO,CA,32.7023,-117.2448,SAN DIEGO 92153,SAN DIEGO,CA,32.5656,-117.0805,SAN DIEGO 92154,SAN DIEGO,CA,32.575276,-117.070725,SAN DIEGO 92155,SAN DIEGO,CA,32.676144,-117.160335,SAN DIEGO 92158,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92159,SAN DIEGO,CA,32.8015,-117.0136,SAN DIEGO 92160,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92161,SAN DIEGO,CA,32.8717,-117.2319,SAN DIEGO 92162,SAN DIEGO,CA,32.7171,-117.1354,SAN DIEGO 92163,SAN DIEGO,CA,32.7476,-117.1665,SAN DIEGO 92164,SAN DIEGO,CA,32.7474,-117.1273,SAN DIEGO 92165,SAN DIEGO,CA,32.7496,-117.1039,SAN DIEGO 92166,SAN DIEGO,CA,32.7211,-117.2305,SAN DIEGO 92167,SAN DIEGO,CA,32.7458,-117.2468,SAN DIEGO 92168,SAN DIEGO,CA,32.7654,-117.1546,SAN DIEGO 92169,SAN DIEGO,CA,32.799,-117.2518,SAN DIEGO 92170,SAN DIEGO,CA,32.697,-117.1335,SAN DIEGO 92171,SAN DIEGO,CA,32.783,-117.1702,SAN DIEGO 92172,SAN DIEGO,CA,32.9627,-117.1329,SAN DIEGO 92174,SAN DIEGO,CA,32.7063,-117.0844,SAN DIEGO 92175,SAN DIEGO,CA,32.7651,-117.0598,SAN DIEGO 92176,SAN DIEGO,CA,32.7636,-117.1225,SAN DIEGO 92177,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92179,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92182,SAN DIEGO,CA,32.7768,-117.0702,SAN DIEGO 92184,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92186,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92187,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92190,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92191,SAN DIEGO,CA,32.9025,-117.218,SAN DIEGO 92192,SAN DIEGO,CA,32.8508,-117.2133,SAN DIEGO 92193,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92194,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92195,SAN DIEGO,CA,32.7442,-117.0525,SAN DIEGO 92196,SAN DIEGO,CA,32.9163,-117.1292,SAN DIEGO 92197,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92198,SAN DIEGO,CA,33.0222,-117.0739,SAN DIEGO 92199,SAN DIEGO,CA,32.9954,-117.0722,SAN DIEGO 92401,SAN BERNARDINO,CA,34.110521,-117.289753,SAN BERNARDINO 92402,SAN BERNARDINO,CA,34.1085,-117.2904,SAN BERNARDINO 92403,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92404,SAN BERNARDINO,CA,34.142577,-117.260572,SAN BERNARDINO 92405,SAN BERNARDINO,CA,34.144101,-117.310765,SAN BERNARDINO 92406,SAN BERNARDINO,CA,34.1351,-117.2891,SAN BERNARDINO 92407,SAN BERNARDINO,CA,34.20928,-117.293697,SAN BERNARDINO 92408,SAN BERNARDINO,CA,34.083127,-117.271059,SAN BERNARDINO 92410,SAN BERNARDINO,CA,34.107729,-117.296789,SAN BERNARDINO 92411,SAN BERNARDINO,CA,34.121414,-117.317158,SAN BERNARDINO 92412,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92413,SAN BERNARDINO,CA,34.141,-117.2504,SAN BERNARDINO 92414,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92415,SAN BERNARDINO,CA,34.1083,-117.2862,SAN BERNARDINO 92418,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92423,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92424,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92427,SAN BERNARDINO,CA,34.1982,-117.3405,SAN BERNARDINO 92501,RIVERSIDE,CA,33.9924,-117.369421,RIVERSIDE 92502,RIVERSIDE,CA,33.9805,-117.3727,RIVERSIDE 92503,RIVERSIDE,CA,33.920808,-117.458862,RIVERSIDE 92504,RIVERSIDE,CA,33.931458,-117.411948,RIVERSIDE 92505,RIVERSIDE,CA,33.922769,-117.486687,RIVERSIDE 92506,RIVERSIDE,CA,33.945485,-117.375696,RIVERSIDE 92507,RIVERSIDE,CA,33.976086,-117.338874,RIVERSIDE 92508,RIVERSIDE,CA,33.889676,-117.304264,RIVERSIDE 92509,RIVERSIDE,CA,33.997355,-117.444896,RIVERSIDE 92513,RIVERSIDE,CA,33.9151,-117.4626,RIVERSIDE 92514,RIVERSIDE,CA,33.946,-117.415,RIVERSIDE 92515,RIVERSIDE,CA,33.9187,-117.4887,RIVERSIDE 92516,RIVERSIDE,CA,33.9547,-117.3936,RIVERSIDE 92517,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92519,RIVERSIDE,CA,33.9957,-117.4128,RIVERSIDE 92521,RIVERSIDE,CA,33.9693,-117.3332,RIVERSIDE 92522,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92551,MORENO VALLEY,CA,33.8858,-117.2211,RIVERSIDE 92552,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92553,MORENO VALLEY,CA,33.915719,-117.235066,RIVERSIDE 92554,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92555,MORENO VALLEY,CA,33.937659,-117.185105,RIVERSIDE 92556,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92557,MORENO VALLEY,CA,33.955257,-117.245682,RIVERSIDE 92602,IRVINE,CA,33.7357,-117.7672,ORANGE 92603,IRVINE,CA,33.6345,-117.8022,ORANGE 92604,IRVINE,CA,33.6882,-117.7888,ORANGE 92605,HUNTINGTON BEACH,CA,33.7152,-118.0088,ORANGE 92606,IRVINE,CA,33.6984,-117.807,ORANGE 92612,IRVINE,CA,33.6611,-117.8271,ORANGE 92614,IRVINE,CA,33.6791,-117.8285,ORANGE 92615,HUNTINGTON BEACH,CA,33.6574,-117.968,ORANGE 92616,IRVINE,CA,33.6699,-117.7646,ORANGE 92617,IRVINE,CA,33.6422,-117.8459,ORANGE 92618,IRVINE,CA,33.6671,-117.7415,ORANGE 92619,IRVINE,CA,33.6699,-117.7646,ORANGE 92620,IRVINE,CA,33.7113,-117.762,ORANGE 92623,IRVINE,CA,33.6699,-117.7646,ORANGE 92646,HUNTINGTON BEACH,CA,33.668448,-117.967771,ORANGE 92647,HUNTINGTON BEACH,CA,33.721018,-118.003035,ORANGE 92648,HUNTINGTON BEACH,CA,33.674577,-117.999012,ORANGE 92649,HUNTINGTON BEACH,CA,33.719111,-118.045142,ORANGE 92658,NEWPORT BEACH,CA,33.6398,-117.8643,ORANGE 92659,NEWPORT BEACH,CA,33.6208,-117.923,ORANGE 92660,NEWPORT BEACH,CA,33.630027,-117.8757,ORANGE 92661,NEWPORT BEACH,CA,33.604429,-117.906237,ORANGE 92662,NEWPORT BEACH,CA,33.606459,-117.891732,ORANGE 92663,NEWPORT BEACH,CA,33.623084,-117.92788,ORANGE 92697,IRVINE,CA,33.650833,-117.825833,ORANGE 92701,SANTA ANA,CA,33.75016,-117.857665,ORANGE 92702,SANTA ANA,CA,33.75,-117.8665,ORANGE 92703,SANTA ANA,CA,33.746613,-117.899589,ORANGE 92704,SANTA ANA,CA,33.726513,-117.904683,ORANGE 92705,SANTA ANA,CA,33.74866,-117.768902,ORANGE 92706,SANTA ANA,CA,33.764434,-117.881791,ORANGE 92707,SANTA ANA,CA,33.715938,-117.870346,ORANGE 92709,IRVINE,CA,33.681287,-117.715018,ORANGE 92710,IRVINE,CA,33.720556,-117.9075,ORANGE 92711,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92712,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92725,SANTA ANA,CA,33.7484,-117.8593,ORANGE 92735,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92799,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92801,ANAHEIM,CA,33.842679,-117.954035,ORANGE 92802,ANAHEIM,CA,33.806909,-117.92219,ORANGE 92803,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92804,ANAHEIM,CA,33.81908,-117.974985,ORANGE 92805,ANAHEIM,CA,33.835332,-117.906263,ORANGE 92806,ANAHEIM,CA,33.837344,-117.875928,ORANGE 92807,ANAHEIM,CA,33.851583,-117.787657,ORANGE 92808,ANAHEIM,CA,33.857569,-117.748445,ORANGE 92809,ANAHEIM,CA,33.8444,-117.9519,ORANGE 92812,ANAHEIM,CA,33.8178,-117.9272,ORANGE 92814,ANAHEIM,CA,33.8177,-117.9604,ORANGE 92815,ANAHEIM,CA,33.8333,-117.9126,ORANGE 92816,ANAHEIM,CA,33.8391,-117.8832,ORANGE 92817,ANAHEIM,CA,33.852,-117.7924,ORANGE 92825,ANAHEIM,CA,33.8352,-117.9136,ORANGE 92831,FULLERTON,CA,33.8796,-117.8951,ORANGE 92832,FULLERTON,CA,33.8685,-117.9294,ORANGE 92833,FULLERTON,CA,33.8778,-117.9621,ORANGE 92834,FULLERTON,CA,33.8784,-117.8964,ORANGE 92835,FULLERTON,CA,33.9022,-117.9065,ORANGE 92836,FULLERTON,CA,33.8784,-117.8964,ORANGE 92837,FULLERTON,CA,33.8697,-117.963,ORANGE 92838,FULLERTON,CA,33.8784,-117.8964,ORANGE 92840,GARDEN GROVE,CA,33.7857,-117.9318,ORANGE 92841,GARDEN GROVE,CA,33.7869,-117.9788,ORANGE 92842,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92843,GARDEN GROVE,CA,33.7652,-117.9313,ORANGE 92844,GARDEN GROVE,CA,33.7662,-117.9717,ORANGE 92845,GARDEN GROVE,CA,33.7828,-118.0266,ORANGE 92846,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92850,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92856,ORANGE,CA,33.7877,-117.8755,ORANGE 92857,ORANGE,CA,33.7877,-117.8755,ORANGE 92859,ORANGE,CA,33.7877,-117.8755,ORANGE 92862,ORANGE,CA,33.813,-117.7143,ORANGE 92863,ORANGE,CA,33.7877,-117.8755,ORANGE 92864,ORANGE,CA,33.8146,-117.8271,ORANGE 92865,ORANGE,CA,33.8299,-117.8468,ORANGE 92866,ORANGE,CA,33.7831,-117.8435,ORANGE 92867,ORANGE,CA,33.814,-117.8252,ORANGE 92868,ORANGE,CA,33.7861,-117.8799,ORANGE 92869,ORANGE,CA,33.7936,-117.7932,ORANGE 92877,CORONA,CA,33.8815,-117.6078,RIVERSIDE 92878,CORONA,CA,33.8774,-117.5739,RIVERSIDE 92879,CORONA,CA,33.8812,-117.5391,RIVERSIDE 92880,CORONA,CA,33.9241,-117.5963,RIVERSIDE 92881,CORONA,CA,33.8382,-117.5382,RIVERSIDE 92882,CORONA,CA,33.8643,-117.5942,RIVERSIDE 92883,CORONA,CA,33.771,-117.4823,RIVERSIDE 92899,ANAHEIM,CA,33.8415,-117.9364,ORANGE 93001,VENTURA,CA,34.290531,-119.28882,VENTURA 93002,VENTURA,CA,34.3557,-119.3011,VENTURA 93003,VENTURA,CA,34.270568,-119.2214,VENTURA 93004,VENTURA,CA,34.278091,-119.168727,VENTURA 93005,VENTURA,CA,34.2509,-119.2058,VENTURA 93006,VENTURA,CA,34.2783,-119.2922,VENTURA 93007,VENTURA,CA,34.2918,-119.1569,VENTURA 93009,VENTURA,CA,34.27,-119.2123,VENTURA 93030,OXNARD,CA,34.214142,-119.174952,VENTURA 93031,OXNARD,CA,34.2199,-119.18,VENTURA 93032,OXNARD,CA,34.1981,-119.1777,VENTURA 93033,OXNARD,CA,34.168505,-119.171732,VENTURA 93034,OXNARD,CA,34.176,-119.1765,VENTURA 93035,OXNARD,CA,34.182177,-119.215975,VENTURA 93036,OXNARD,CA,34.2301,-119.1771,VENTURA 93062,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93063,SIMI VALLEY,CA,34.279202,-118.699229,VENTURA 93065,SIMI VALLEY,CA,34.265589,-118.765349,VENTURA 93093,SIMI VALLEY,CA,34.2718,-118.7123,VENTURA 93094,SIMI VALLEY,CA,34.279,-118.7021,VENTURA 93099,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93101,SANTA BARBARA,CA,34.419668,-119.70782,SANTA BARBARA 93102,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93103,SANTA BARBARA,CA,34.429065,-119.683275,SANTA BARBARA 93105,SANTA BARBARA,CA,34.436915,-119.728538,SANTA BARBARA 93106,SANTA BARBARA,CA,34.4173,-119.8459,SANTA BARBARA 93107,SANTA BARBARA,CA,34.4208,-119.6972,SANTA BARBARA 93108,SANTA BARBARA,CA,34.434258,-119.64255,SANTA BARBARA 93109,SANTA BARBARA,CA,34.403848,-119.7194,SANTA BARBARA 93110,SANTA BARBARA,CA,34.441814,-119.764668,SANTA BARBARA 93111,SANTA BARBARA,CA,34.445262,-119.802509,SANTA BARBARA 93120,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93121,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93130,SANTA BARBARA,CA,34.5283,-119.8192,SANTA BARBARA 93140,SANTA BARBARA,CA,34.4209,-119.6767,SANTA BARBARA 93150,SANTA BARBARA,CA,34.436667,-119.631111,SANTA BARBARA 93160,SANTA BARBARA,CA,34.4348,-119.803,SANTA BARBARA 93190,SANTA BARBARA,CA,34.4234,-119.7037,SANTA BARBARA 93277,VISALIA,CA,36.311379,-119.306471,TULARE 93278,VISALIA,CA,36.3093,-119.3142,TULARE 93279,VISALIA,CA,36.3289,-119.2922,TULARE 93290,VISALIA,CA,36.33,-119.291,TULARE 93291,VISALIA,CA,36.355108,-119.301029,TULARE 93292,VISALIA,CA,36.3469,-119.2483,TULARE 93301,BAKERSFIELD,CA,35.386611,-119.017063,KERN 93302,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93303,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93304,BAKERSFIELD,CA,35.339581,-119.021793,KERN 93305,BAKERSFIELD,CA,35.387772,-118.982042,KERN 93306,BAKERSFIELD,CA,35.386697,-118.939104,KERN 93307,BAKERSFIELD,CA,35.327484,-118.983851,KERN 93308,BAKERSFIELD,CA,35.424395,-119.043319,KERN 93309,BAKERSFIELD,CA,35.33839,-119.062713,KERN 93311,BAKERSFIELD,CA,35.303891,-119.105647,KERN 93312,BAKERSFIELD,CA,35.382082,-119.15014,KERN 93313,BAKERSFIELD,CA,35.297391,-119.050936,KERN 93314,BAKERSFIELD,CA,35.3993,-119.1895,KERN 93380,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93381,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93382,BAKERSFIELD,CA,35.2596,-119.0019,KERN 93383,BAKERSFIELD,CA,35.3329,-119.0859,KERN 93384,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93385,BAKERSFIELD,CA,35.3785,-118.9907,KERN 93386,BAKERSFIELD,CA,35.3764,-118.9537,KERN 93387,BAKERSFIELD,CA,35.2908,-118.9665,KERN 93388,BAKERSFIELD,CA,35.4714,-118.9667,KERN 93389,BAKERSFIELD,CA,35.3538,-119.0615,KERN 93390,BAKERSFIELD,CA,35.3431,-119.0635,KERN 93401,SAN LUIS OBISPO,CA,35.263453,-120.650933,SAN LUIS OBISPO 93403,SAN LUIS OBISPO,CA,35.2827,-120.6586,SAN LUIS OBISPO 93405,SAN LUIS OBISPO,CA,35.290058,-120.681724,SAN LUIS OBISPO 93406,SAN LUIS OBISPO,CA,35.2794,-120.6606,SAN LUIS OBISPO 93407,SAN LUIS OBISPO,CA,35.3011,-120.6607,SAN LUIS OBISPO 93408,SAN LUIS OBISPO,CA,35.2847,-120.6606,SAN LUIS OBISPO 93409,SAN LUIS OBISPO,CA,35.221,-120.6364,SAN LUIS OBISPO 93410,SAN LUIS OBISPO,CA,35.2996,-120.6555,SAN LUIS OBISPO 93534,LANCASTER,CA,34.690888,-118.149129,LOS ANGELES 93535,LANCASTER,CA,34.684751,-118.063245,LOS ANGELES 93536,LANCASTER,CA,34.673619,-118.213336,LOS ANGELES 93539,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93550,PALMDALE,CA,34.571483,-118.061306,LOS ANGELES 93551,PALMDALE,CA,34.601404,-118.181207,LOS ANGELES 93552,PALMDALE,CA,34.5636,-118.0349,LOS ANGELES 93584,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93586,LANCASTER,CA,34.6475,-118.2175,LOS ANGELES 93590,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93591,PALMDALE,CA,34.6042,-117.8506,LOS ANGELES 93599,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93650,FRESNO,CA,36.841107,-119.800359,FRESNO 93701,FRESNO,CA,36.748727,-119.786705,FRESNO 93702,FRESNO,CA,36.739954,-119.753215,FRESNO 93703,FRESNO,CA,36.768445,-119.759401,FRESNO 93704,FRESNO,CA,36.798781,-119.799745,FRESNO 93705,FRESNO,CA,36.786285,-119.828617,FRESNO 93706,FRESNO,CA,36.700589,-119.820408,FRESNO 93707,FRESNO,CA,36.7329,-119.7828,FRESNO 93708,FRESNO,CA,36.7329,-119.7828,FRESNO 93709,FRESNO,CA,36.7329,-119.7828,FRESNO 93710,FRESNO,CA,36.823643,-119.76205,FRESNO 93711,FRESNO,CA,36.830297,-119.831896,FRESNO 93712,FRESNO,CA,36.7329,-119.7828,FRESNO 93714,FRESNO,CA,36.7329,-119.7828,FRESNO 93715,FRESNO,CA,36.7329,-119.7828,FRESNO 93716,FRESNO,CA,36.7329,-119.7828,FRESNO 93717,FRESNO,CA,36.7329,-119.7828,FRESNO 93718,FRESNO,CA,36.7329,-119.7828,FRESNO 93720,FRESNO,CA,36.857944,-119.765522,FRESNO 93721,FRESNO,CA,36.737714,-119.784273,FRESNO 93722,FRESNO,CA,36.791779,-119.880119,FRESNO 93723,FRESNO,CA,36.79,-119.9532,FRESNO 93724,FRESNO,CA,36.7387,-119.8046,FRESNO 93725,FRESNO,CA,36.675312,-119.742477,FRESNO 93726,FRESNO,CA,36.794943,-119.760445,FRESNO 93727,FRESNO,CA,36.752796,-119.706055,FRESNO 93728,FRESNO,CA,36.758095,-119.811314,FRESNO 93729,FRESNO,CA,36.8518,-119.7669,FRESNO 93730,FRESNO,CA,36.8878,-119.7589,FRESNO 93740,FRESNO,CA,36.8142,-119.7461,FRESNO 93741,FRESNO,CA,36.7656,-119.7956,FRESNO 93744,FRESNO,CA,36.7585,-119.7995,FRESNO 93745,FRESNO,CA,36.6275,-119.7378,FRESNO 93747,FRESNO,CA,36.7432,-119.7012,FRESNO 93750,FRESNO,CA,36.7387,-119.8046,FRESNO 93755,FRESNO,CA,36.79,-119.7905,FRESNO 93760,FRESNO,CA,36.7387,-119.8046,FRESNO 93761,FRESNO,CA,36.7387,-119.8046,FRESNO 93764,FRESNO,CA,36.7387,-119.8046,FRESNO 93765,FRESNO,CA,36.8349,-119.8301,FRESNO 93771,FRESNO,CA,36.7387,-119.8046,FRESNO 93772,FRESNO,CA,36.7387,-119.8046,FRESNO 93773,FRESNO,CA,36.7387,-119.8046,FRESNO 93774,FRESNO,CA,36.7387,-119.8046,FRESNO 93775,FRESNO,CA,36.7387,-119.8046,FRESNO 93776,FRESNO,CA,36.7387,-119.8046,FRESNO 93777,FRESNO,CA,36.7387,-119.8046,FRESNO 93778,FRESNO,CA,36.7387,-119.8046,FRESNO 93779,FRESNO,CA,36.7387,-119.8046,FRESNO 93780,FRESNO,CA,36.7387,-119.8046,FRESNO 93784,FRESNO,CA,36.8243,-119.7615,FRESNO 93786,FRESNO,CA,36.6377,-119.8999,FRESNO 93790,FRESNO,CA,36.785,-119.8345,FRESNO 93791,FRESNO,CA,36.785,-119.8345,FRESNO 93792,FRESNO,CA,36.785,-119.8345,FRESNO 93793,FRESNO,CA,36.785,-119.8345,FRESNO 93794,FRESNO,CA,36.785,-119.8345,FRESNO 93844,FRESNO,CA,36.7387,-119.8046,FRESNO 93888,FRESNO,CA,36.7387,-119.8046,FRESNO 93901,SALINAS,CA,36.667693,-121.659589,MONTEREY 93902,SALINAS,CA,36.7758,-121.6562,MONTEREY 93905,SALINAS,CA,36.681143,-121.617606,MONTEREY 93906,SALINAS,CA,36.710339,-121.643805,MONTEREY 93907,SALINAS,CA,36.765385,-121.665588,MONTEREY 93908,SALINAS,CA,36.601122,-121.672861,MONTEREY 93912,SALINAS,CA,36.6964,-121.6688,MONTEREY 93915,SALINAS,CA,36.6665,-121.6269,MONTEREY 94035,MOUNTAIN VIEW,CA,37.41001,-122.051944,SANTA CLARA 94039,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94040,MOUNTAIN VIEW,CA,37.385532,-122.087983,SANTA CLARA 94041,MOUNTAIN VIEW,CA,37.389347,-122.078341,SANTA CLARA 94042,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94043,MOUNTAIN VIEW,CA,37.405567,-122.077468,SANTA CLARA 94101,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94102,SAN FRANCISCO,CA,37.781334,-122.416728,SAN FRANCISCO 94103,SAN FRANCISCO,CA,37.77254,-122.414664,SAN FRANCISCO 94104,SAN FRANCISCO,CA,37.791487,-122.401826,SAN FRANCISCO 94105,SAN FRANCISCO,CA,37.786427,-122.389229,SAN FRANCISCO 94106,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94107,SAN FRANCISCO,CA,37.762147,-122.397099,SAN FRANCISCO 94108,SAN FRANCISCO,CA,37.792931,-122.40791,SAN FRANCISCO 94109,SAN FRANCISCO,CA,37.791687,-122.418579,SAN FRANCISCO 94110,SAN FRANCISCO,CA,37.750858,-122.415344,SAN FRANCISCO 94111,SAN FRANCISCO,CA,37.797376,-122.400147,SAN FRANCISCO 94112,SAN FRANCISCO,CA,37.71954,-122.441081,SAN FRANCISCO 94114,SAN FRANCISCO,CA,37.758716,-122.432977,SAN FRANCISCO 94115,SAN FRANCISCO,CA,37.785607,-122.435835,SAN FRANCISCO 94116,SAN FRANCISCO,CA,37.744144,-122.486296,SAN FRANCISCO 94117,SAN FRANCISCO,CA,37.771234,-122.441272,SAN FRANCISCO 94118,SAN FRANCISCO,CA,37.781174,-122.461414,SAN FRANCISCO 94119,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94120,SAN FRANCISCO,CA,37.793,-122.4012,SAN FRANCISCO 94121,SAN FRANCISCO,CA,37.778616,-122.489178,SAN FRANCISCO 94122,SAN FRANCISCO,CA,37.759326,-122.483647,SAN FRANCISCO 94123,SAN FRANCISCO,CA,37.799865,-122.434163,SAN FRANCISCO 94124,SAN FRANCISCO,CA,37.730888,-122.388649,SAN FRANCISCO 94125,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94126,SAN FRANCISCO,CA,37.795,-122.3933,SAN FRANCISCO 94127,SAN FRANCISCO,CA,37.735385,-122.457116,SAN FRANCISCO 94128,SAN FRANCISCO,CA,37.621944,-122.381944,SAN MATEO 94129,SAN FRANCISCO,CA,37.800507,-122.464958,SAN FRANCISCO 94130,SAN FRANCISCO,CA,37.823128,-122.369319,SAN FRANCISCO 94131,SAN FRANCISCO,CA,37.745032,-122.438335,SAN FRANCISCO 94132,SAN FRANCISCO,CA,37.721118,-122.47545,SAN FRANCISCO 94133,SAN FRANCISCO,CA,37.800175,-122.409081,SAN FRANCISCO 94134,SAN FRANCISCO,CA,37.718968,-122.409577,SAN FRANCISCO 94135,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94136,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94137,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94138,SAN FRANCISCO,CA,37.7917,-122.4007,SAN FRANCISCO 94139,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94140,SAN FRANCISCO,CA,37.7555,-122.4153,SAN FRANCISCO 94141,SAN FRANCISCO,CA,37.7667,-122.4097,SAN FRANCISCO 94142,SAN FRANCISCO,CA,37.7819,-122.4146,SAN FRANCISCO 94143,SAN FRANCISCO,CA,37.7631,-122.4591,SAN FRANCISCO 94144,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94145,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94146,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94147,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94150,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94151,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94152,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94153,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94154,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94155,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94156,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94158,SAN FRANCISCO,CA,37.7705,-122.3926,SAN FRANCISCO 94159,SAN FRANCISCO,CA,37.7814,-122.4524,SAN FRANCISCO 94160,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94161,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94162,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94163,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94164,SAN FRANCISCO,CA,37.789,-122.4206,SAN FRANCISCO 94171,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94172,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94175,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94177,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94188,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94199,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94203,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94204,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94205,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94206,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94207,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94208,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94209,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94211,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94229,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94230,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94232,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94234,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94235,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94236,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94237,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94239,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94240,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94244,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94245,SACRAMENTO,CA,38.5599,-121.4841,SACRAMENTO 94246,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94247,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94248,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94249,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94250,SACRAMENTO,CA,38.5658,-121.4671,SACRAMENTO 94252,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94254,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94256,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94257,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94258,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94259,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94261,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94262,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94263,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94267,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94268,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94269,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94271,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94273,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94274,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94277,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94278,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94279,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94280,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94282,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94283,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94284,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94285,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94286,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94287,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94288,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94289,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94290,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94291,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94293,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94294,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94295,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94296,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94297,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94298,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94299,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94301,PALO ALTO,CA,37.444324,-122.149685,SANTA CLARA 94302,PALO ALTO,CA,37.441944,-122.141944,SANTA CLARA 94303,PALO ALTO,CA,37.455641,-122.131902,SANTA CLARA 94304,PALO ALTO,CA,37.433424,-122.184234,SANTA CLARA 94306,PALO ALTO,CA,37.418009,-122.127375,SANTA CLARA 94309,PALO ALTO,CA,37.424167,-122.165,SANTA CLARA 94518,CONCORD,CA,37.950434,-122.026296,CONTRA COSTA 94519,CONCORD,CA,37.984082,-122.011948,CONTRA COSTA 94520,CONCORD,CA,37.982259,-122.036178,CONTRA COSTA 94521,CONCORD,CA,37.957503,-121.974955,CONTRA COSTA 94522,CONCORD,CA,37.9857,-122.0357,CONTRA COSTA 94524,CONCORD,CA,37.9769,-122.0561,CONTRA COSTA 94527,CONCORD,CA,37.978,-122.0557,CONTRA COSTA 94529,CONCORD,CA,37.978,-122.03,CONTRA COSTA 94540,HAYWARD,CA,37.6564,-122.0957,ALAMEDA 94541,HAYWARD,CA,37.674048,-122.089418,ALAMEDA 94542,HAYWARD,CA,37.658566,-122.047236,ALAMEDA 94543,HAYWARD,CA,37.6707,-122.0827,ALAMEDA 94544,HAYWARD,CA,37.637443,-122.067029,ALAMEDA 94545,HAYWARD,CA,37.633245,-122.0971,ALAMEDA 94557,HAYWARD,CA,37.6335,-122.0961,ALAMEDA 94601,OAKLAND,CA,37.780595,-122.216587,ALAMEDA 94602,OAKLAND,CA,37.801133,-122.210368,ALAMEDA 94603,OAKLAND,CA,37.740239,-122.171017,ALAMEDA 94604,OAKLAND,CA,37.8018,-122.2652,ALAMEDA 94605,OAKLAND,CA,37.764132,-122.163326,ALAMEDA 94606,OAKLAND,CA,37.79565,-122.24292,ALAMEDA 94607,OAKLAND,CA,37.807084,-122.285051,ALAMEDA 94609,OAKLAND,CA,37.836096,-122.26367,ALAMEDA 94610,OAKLAND,CA,37.812636,-122.244322,ALAMEDA 94611,OAKLAND,CA,37.828157,-122.22683,ALAMEDA 94612,OAKLAND,CA,37.808473,-122.266774,ALAMEDA 94613,OAKLAND,CA,37.782427,-122.181585,ALAMEDA 94614,OAKLAND,CA,37.7209,-122.2154,ALAMEDA 94615,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94617,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94618,OAKLAND,CA,37.84368,-122.24191,ALAMEDA 94619,OAKLAND,CA,37.787786,-122.18838,ALAMEDA 94621,OAKLAND,CA,37.758924,-122.185335,ALAMEDA 94622,OAKLAND,CA,37.7417,-122.192,ALAMEDA 94623,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94624,OAKLAND,CA,37.7478,-122.1725,ALAMEDA 94625,OAKLAND,CA,37.8045,-122.3198,ALAMEDA 94649,OAKLAND,CA,37.827,-122.2998,ALAMEDA 94659,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94660,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94661,OAKLAND,CA,37.8285,-122.2094,ALAMEDA 94666,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94701,BERKELEY,CA,37.8691,-122.2696,ALAMEDA 94702,BERKELEY,CA,37.865611,-122.285126,ALAMEDA 94703,BERKELEY,CA,37.863028,-122.274914,ALAMEDA 94704,BERKELEY,CA,37.866428,-122.257048,ALAMEDA 94705,BERKELEY,CA,37.85711,-122.249964,ALAMEDA 94707,BERKELEY,CA,37.893118,-122.276517,ALAMEDA 94708,BERKELEY,CA,37.890829,-122.25976,ALAMEDA 94709,BERKELEY,CA,37.878397,-122.265461,ALAMEDA 94710,BERKELEY,CA,37.869603,-122.295929,ALAMEDA 94712,BERKELEY,CA,37.8693,-122.268,ALAMEDA 94720,BERKELEY,CA,37.8719,-122.2591,ALAMEDA 94801,RICHMOND,CA,37.940039,-122.36201,CONTRA COSTA 94802,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94804,RICHMOND,CA,37.926523,-122.33421,CONTRA COSTA 94805,RICHMOND,CA,37.941719,-122.323756,CONTRA COSTA 94807,RICHMOND,CA,37.9271,-122.384,CONTRA COSTA 94808,RICHMOND,CA,37.9338,-122.3432,CONTRA COSTA 94850,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94952,PETALUMA,CA,38.240349,-122.677727,SONOMA 94953,PETALUMA,CA,38.3221,-122.6441,SONOMA 94954,PETALUMA,CA,38.250739,-122.615536,SONOMA 94955,PETALUMA,CA,38.2325,-122.6355,SONOMA 94975,PETALUMA,CA,38.3221,-122.6441,SONOMA 94999,PETALUMA,CA,38.3221,-122.6441,SONOMA 95050,SANTA CLARA,CA,37.34732,-121.954079,SANTA CLARA 95051,SANTA CLARA,CA,37.346992,-121.983848,SANTA CLARA 95052,SANTA CLARA,CA,37.3522,-121.9583,SANTA CLARA 95053,SANTA CLARA,CA,37.3473,-121.9328,SANTA CLARA 95054,SANTA CLARA,CA,37.394673,-121.95394,SANTA CLARA 95055,SANTA CLARA,CA,37.3451,-121.9769,SANTA CLARA 95056,SANTA CLARA,CA,37.3997,-121.9608,SANTA CLARA 95060,SANTA CRUZ,CA,36.982946,-122.043612,SANTA CRUZ 95061,SANTA CRUZ,CA,37.063,-122.162,SANTA CRUZ 95062,SANTA CRUZ,CA,36.972101,-121.988055,SANTA CRUZ 95063,SANTA CRUZ,CA,36.9792,-122.0088,SANTA CRUZ 95064,SANTA CRUZ,CA,36.995851,-122.057803,SANTA CRUZ 95065,SANTA CRUZ,CA,37.003319,-121.982557,SANTA CRUZ 95101,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95103,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95106,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95108,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95109,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95110,SAN JOSE,CA,37.32966,-121.890299,SANTA CLARA 95111,SAN JOSE,CA,37.282276,-121.824038,SANTA CLARA 95112,SAN JOSE,CA,37.341388,-121.880414,SANTA CLARA 95113,SAN JOSE,CA,37.335188,-121.887227,SANTA CLARA 95115,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95116,SAN JOSE,CA,37.351342,-121.850221,SANTA CLARA 95117,SAN JOSE,CA,37.308896,-121.962126,SANTA CLARA 95118,SAN JOSE,CA,37.256162,-121.889845,SANTA CLARA 95119,SAN JOSE,CA,37.230135,-121.790067,SANTA CLARA 95120,SAN JOSE,CA,37.217538,-121.861547,SANTA CLARA 95121,SAN JOSE,CA,37.30593,-121.811939,SANTA CLARA 95122,SAN JOSE,CA,37.329313,-121.833949,SANTA CLARA 95123,SAN JOSE,CA,37.244594,-121.830502,SANTA CLARA 95124,SAN JOSE,CA,37.256844,-121.920831,SANTA CLARA 95125,SAN JOSE,CA,37.296187,-121.895476,SANTA CLARA 95126,SAN JOSE,CA,37.322482,-121.917398,SANTA CLARA 95127,SAN JOSE,CA,37.3664,-121.819516,SANTA CLARA 95128,SAN JOSE,CA,37.314657,-121.934364,SANTA CLARA 95129,SAN JOSE,CA,37.306537,-122.000494,SANTA CLARA 95130,SAN JOSE,CA,37.288628,-121.979182,SANTA CLARA 95131,SAN JOSE,CA,37.386368,-121.879977,SANTA CLARA 95132,SAN JOSE,CA,37.40408,-121.860336,SANTA CLARA 95133,SAN JOSE,CA,37.372875,-121.855959,SANTA CLARA 95134,SAN JOSE,CA,37.413999,-121.943399,SANTA CLARA 95135,SAN JOSE,CA,37.297539,-121.757228,SANTA CLARA 95136,SAN JOSE,CA,37.268423,-121.847625,SANTA CLARA 95138,SAN JOSE,CA,37.246259,-121.778641,SANTA CLARA 95139,SAN JOSE,CA,37.225162,-121.766867,SANTA CLARA 95141,SAN JOSE,CA,37.169912,-121.755808,SANTA CLARA 95148,SAN JOSE,CA,37.329765,-121.792111,SANTA CLARA 95150,SAN JOSE,CA,37.3866,-121.897,SANTA CLARA 95151,SAN JOSE,CA,37.3198,-121.8262,SANTA CLARA 95152,SAN JOSE,CA,37.4022,-121.847,SANTA CLARA 95153,SAN JOSE,CA,37.2488,-121.8459,SANTA CLARA 95154,SAN JOSE,CA,37.2649,-121.9139,SANTA CLARA 95155,SAN JOSE,CA,37.31,-121.9011,SANTA CLARA 95156,SAN JOSE,CA,37.3576,-121.8416,SANTA CLARA 95157,SAN JOSE,CA,37.3008,-121.9777,SANTA CLARA 95158,SAN JOSE,CA,37.2625,-121.8779,SANTA CLARA 95159,SAN JOSE,CA,37.3179,-121.9349,SANTA CLARA 95160,SAN JOSE,CA,37.2187,-121.8601,SANTA CLARA 95161,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95164,SAN JOSE,CA,37.3916,-121.9203,SANTA CLARA 95170,SAN JOSE,CA,37.3103,-122.0093,SANTA CLARA 95172,SAN JOSE,CA,37.334,-121.8847,SANTA CLARA 95173,SAN JOSE,CA,37.3352,-121.8938,SANTA CLARA 95190,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95191,SAN JOSE,CA,37.3262,-121.9158,SANTA CLARA 95192,SAN JOSE,CA,37.3383,-121.8801,SANTA CLARA 95193,SAN JOSE,CA,37.2441,-121.8287,SANTA CLARA 95194,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95196,SAN JOSE,CA,37.3338,-121.8894,SANTA CLARA 95201,STOCKTON,CA,37.958,-121.2876,SAN JOAQUIN 95202,STOCKTON,CA,37.960632,-121.287087,SAN JOAQUIN 95203,STOCKTON,CA,37.956515,-121.307688,SAN JOAQUIN 95204,STOCKTON,CA,37.974302,-121.315364,SAN JOAQUIN 95205,STOCKTON,CA,37.960986,-121.259241,SAN JOAQUIN 95206,STOCKTON,CA,37.931643,-121.287169,SAN JOAQUIN 95207,STOCKTON,CA,38.002025,-121.32056,SAN JOAQUIN 95208,STOCKTON,CA,37.9304,-121.436,SAN JOAQUIN 95209,STOCKTON,CA,38.033105,-121.343292,SAN JOAQUIN 95210,STOCKTON,CA,38.024997,-121.297229,SAN JOAQUIN 95211,STOCKTON,CA,37.980364,-121.310336,SAN JOAQUIN 95212,STOCKTON,CA,38.034428,-121.246018,SAN JOAQUIN 95213,STOCKTON,CA,37.9054,-121.2222,SAN JOAQUIN 95215,STOCKTON,CA,37.968545,-121.215295,SAN JOAQUIN 95219,STOCKTON,CA,38.010233,-121.363712,SAN JOAQUIN 95267,STOCKTON,CA,38.0003,-121.3174,SAN JOAQUIN 95269,STOCKTON,CA,38.0187,-121.3225,SAN JOAQUIN 95296,STOCKTON,CA,37.715833,-121.380556,SAN JOAQUIN 95297,STOCKTON,CA,38.0025,-121.324,SAN JOAQUIN 95350,MODESTO,CA,37.674649,-121.011303,STANISLAUS 95351,MODESTO,CA,37.625022,-121.006033,STANISLAUS 95352,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95353,MODESTO,CA,37.6424,-120.9999,STANISLAUS 95354,MODESTO,CA,37.644526,-120.968323,STANISLAUS 95355,MODESTO,CA,37.673515,-120.954658,STANISLAUS 95356,MODESTO,CA,37.699431,-121.027051,STANISLAUS 95357,MODESTO,CA,37.6635,-120.9186,STANISLAUS 95358,MODESTO,CA,37.622,-121.0453,STANISLAUS 95397,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95401,SANTA ROSA,CA,38.443123,-122.751722,SONOMA 95402,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95403,SANTA ROSA,CA,38.477273,-122.748528,SONOMA 95404,SANTA ROSA,CA,38.449556,-122.689524,SONOMA 95405,SANTA ROSA,CA,38.438279,-122.66988,SONOMA 95406,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95407,SANTA ROSA,CA,38.410462,-122.727896,SONOMA 95409,SANTA ROSA,CA,38.461242,-122.642125,SONOMA 95811,SACRAMENTO,CA,38.5815719,-121.4943996,SACRAMENTO 95812,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 95813,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95814,SACRAMENTO,CA,38.579792,-121.489404,SACRAMENTO 95815,SACRAMENTO,CA,38.613303,-121.443543,SACRAMENTO 95816,SACRAMENTO,CA,38.572788,-121.46753,SACRAMENTO 95817,SACRAMENTO,CA,38.549785,-121.458324,SACRAMENTO 95818,SACRAMENTO,CA,38.556778,-121.492884,SACRAMENTO 95819,SACRAMENTO,CA,38.568293,-121.436634,SACRAMENTO 95820,SACRAMENTO,CA,38.534694,-121.445139,SACRAMENTO 95821,SACRAMENTO,CA,38.623889,-121.383807,SACRAMENTO 95822,SACRAMENTO,CA,38.509139,-121.493541,SACRAMENTO 95823,SACRAMENTO,CA,38.479711,-121.443846,SACRAMENTO 95824,SACRAMENTO,CA,38.517843,-121.441883,SACRAMENTO 95825,SACRAMENTO,CA,38.589226,-121.405677,SACRAMENTO 95826,SACRAMENTO,CA,38.553868,-121.369265,SACRAMENTO 95827,SACRAMENTO,CA,38.56623,-121.328593,SACRAMENTO 95828,SACRAMENTO,CA,38.483718,-121.401504,SACRAMENTO 95829,SACRAMENTO,CA,38.472564,-121.346631,SACRAMENTO 95830,SACRAMENTO,CA,38.476556,-121.281453,SACRAMENTO 95831,SACRAMENTO,CA,38.496226,-121.529661,SACRAMENTO 95832,SACRAMENTO,CA,38.475387,-121.482967,SACRAMENTO 95833,SACRAMENTO,CA,38.616993,-121.494487,SACRAMENTO 95834,SACRAMENTO,CA,38.633418,-121.492052,SACRAMENTO 95835,SACRAMENTO,CA,38.662595,-121.483444,SACRAMENTO 95836,SACRAMENTO,CA,38.707346,-121.532259,SACRAMENTO 95837,SACRAMENTO,CA,38.681726,-121.60297,SACRAMENTO 95838,SACRAMENTO,CA,38.640566,-121.44396,SACRAMENTO 95840,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95841,SACRAMENTO,CA,38.662699,-121.340608,SACRAMENTO 95842,SACRAMENTO,CA,38.687385,-121.35046,SACRAMENTO 95851,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95852,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95853,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95860,SACRAMENTO,CA,38.6105,-121.3799,SACRAMENTO 95864,SACRAMENTO,CA,38.587768,-121.376889,SACRAMENTO 95865,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95866,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95867,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95887,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95894,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95899,SACRAMENTO,CA,38.5383,-121.5549,SACRAMENTO 95926,CHICO,CA,39.756466,-121.851806,BUTTE 95927,CHICO,CA,39.8117,-121.9398,BUTTE 95928,CHICO,CA,39.729523,-121.81555,BUTTE 95929,CHICO,CA,39.7301,-121.8414,BUTTE 95973,CHICO,CA,39.925556,-121.73,BUTTE 95976,CHICO,CA,39.7346,-121.8331,BUTTE 96150,SOUTH LAKE TAHOE,CA,38.916976,-119.986469,EL DORADO 96151,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96152,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96154,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96155,SOUTH LAKE TAHOE,CA,39.0166,-120.1229,EL DORADO 96156,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96157,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96158,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96801,HONOLULU,HI,21.3095,-157.863,HONOLULU 96802,HONOLULU,HI,21.3095,-157.863,HONOLULU 96803,HONOLULU,HI,21.3095,-157.863,HONOLULU 96804,HONOLULU,HI,21.3095,-157.863,HONOLULU 96805,HONOLULU,HI,21.3095,-157.863,HONOLULU 96806,HONOLULU,HI,21.3095,-157.863,HONOLULU 96807,HONOLULU,HI,21.3095,-157.863,HONOLULU 96808,HONOLULU,HI,21.3095,-157.863,HONOLULU 96809,HONOLULU,HI,21.3095,-157.863,HONOLULU 96810,HONOLULU,HI,21.3095,-157.863,HONOLULU 96811,HONOLULU,HI,21.3095,-157.863,HONOLULU 96812,HONOLULU,HI,21.3095,-157.863,HONOLULU 96813,HONOLULU,HI,21.317905,-157.852072,HONOLULU 96814,HONOLULU,HI,21.299846,-157.843876,HONOLULU 96815,HONOLULU,HI,21.281084,-157.826616,HONOLULU 96816,HONOLULU,HI,21.288677,-157.800626,HONOLULU 96817,HONOLULU,HI,21.329452,-157.861469,HONOLULU 96818,HONOLULU,HI,21.353173,-157.926925,HONOLULU 96819,HONOLULU,HI,21.34877,-157.875947,HONOLULU 96820,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96821,HONOLULU,HI,21.292811,-157.755242,HONOLULU 96822,HONOLULU,HI,21.311704,-157.829819,HONOLULU 96823,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96824,HONOLULU,HI,21.2808,-157.7552,HONOLULU 96825,HONOLULU,HI,21.298684,-157.698523,HONOLULU 96826,HONOLULU,HI,21.294139,-157.828388,HONOLULU 96827,HONOLULU,HI,21.3172,-157.8643,HONOLULU 96828,HONOLULU,HI,21.294,-157.8226,HONOLULU 96830,HONOLULU,HI,21.2841,-157.8341,HONOLULU 96835,HONOLULU,HI,21.3509,-157.8794,HONOLULU 96836,HONOLULU,HI,21.2899,-157.8384,HONOLULU 96837,HONOLULU,HI,21.315,-157.8633,HONOLULU 96838,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96839,HONOLULU,HI,21.3107,-157.812,HONOLULU 96840,HONOLULU,HI,21.3095,-157.863,HONOLULU 96841,HONOLULU,HI,21.3095,-157.863,HONOLULU 96843,HONOLULU,HI,21.3095,-157.863,HONOLULU 96844,HONOLULU,HI,21.2981,-157.8189,HONOLULU 96846,HONOLULU,HI,21.3095,-157.863,HONOLULU 96847,HONOLULU,HI,21.3095,-157.863,HONOLULU 96848,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96849,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96850,HONOLULU,HI,21.3095,-157.863,HONOLULU 97005,BEAVERTON,OR,45.475035,-122.805395,WASHINGTON 97006,BEAVERTON,OR,45.517675,-122.859209,WASHINGTON 97007,BEAVERTON,OR,45.472985,-122.859473,WASHINGTON 97008,BEAVERTON,OR,45.4614,-122.8062,WASHINGTON 97075,BEAVERTON,OR,45.4861,-122.8004,WASHINGTON 97076,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97077,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97078,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97201,PORTLAND,OR,45.498819,-122.690258,MULTNOMAH 97202,PORTLAND,OR,45.484007,-122.636534,MULTNOMAH 97203,PORTLAND,OR,45.588872,-122.734699,MULTNOMAH 97204,PORTLAND,OR,45.51807,-122.674498,MULTNOMAH 97205,PORTLAND,OR,45.52072,-122.688846,MULTNOMAH 97206,PORTLAND,OR,45.483995,-122.59727,MULTNOMAH 97207,PORTLAND,OR,45.5136,-122.6801,MULTNOMAH 97208,PORTLAND,OR,45.5273,-122.6786,MULTNOMAH 97209,PORTLAND,OR,45.526962,-122.685447,MULTNOMAH 97210,PORTLAND,OR,45.530318,-122.703348,MULTNOMAH 97211,PORTLAND,OR,45.565259,-122.644815,MULTNOMAH 97212,PORTLAND,OR,45.544127,-122.642319,MULTNOMAH 97213,PORTLAND,OR,45.537292,-122.59867,MULTNOMAH 97214,PORTLAND,OR,45.514207,-122.636397,MULTNOMAH 97215,PORTLAND,OR,45.514282,-122.599001,MULTNOMAH 97216,PORTLAND,OR,45.513746,-122.55688,MULTNOMAH 97217,PORTLAND,OR,45.57424,-122.684196,MULTNOMAH 97218,PORTLAND,OR,45.560032,-122.600131,MULTNOMAH 97219,PORTLAND,OR,45.457956,-122.70738,MULTNOMAH 97220,PORTLAND,OR,45.541109,-122.556586,MULTNOMAH 97221,PORTLAND,OR,45.491829,-122.726723,MULTNOMAH 97222,PORTLAND,OR,45.442919,-122.615092,CLACKAMAS 97223,PORTLAND,OR,45.443343,-122.775974,WASHINGTON 97224,PORTLAND,OR,45.407292,-122.788379,WASHINGTON 97225,PORTLAND,OR,45.500449,-122.768344,WASHINGTON 97227,PORTLAND,OR,45.549564,-122.674257,MULTNOMAH 97228,PORTLAND,OR,45.5275,-122.6764,MULTNOMAH 97229,PORTLAND,OR,45.541087,-122.829924,WASHINGTON 97230,PORTLAND,OR,45.535753,-122.500343,MULTNOMAH 97231,PORTLAND,OR,45.640124,-122.838032,MULTNOMAH 97232,PORTLAND,OR,45.528712,-122.63631,MULTNOMAH 97233,PORTLAND,OR,45.514206,-122.498493,MULTNOMAH 97236,PORTLAND,OR,45.488748,-122.509091,MULTNOMAH 97238,PORTLAND,OR,45.5849,-122.5804,MULTNOMAH 97239,PORTLAND,OR,45.489,-122.6881,MULTNOMAH 97240,PORTLAND,OR,45.522,-122.6741,MULTNOMAH 97242,PORTLAND,OR,45.5003,-122.6495,MULTNOMAH 97251,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97253,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97254,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97255,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97256,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97258,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97259,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97266,PORTLAND,OR,45.476207,-122.559607,MULTNOMAH 97267,PORTLAND,OR,45.407494,-122.610631,CLACKAMAS 97268,PORTLAND,OR,45.4012,-122.6203,CLACKAMAS 97269,PORTLAND,OR,45.4416,-122.6392,CLACKAMAS 97271,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97272,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97280,PORTLAND,OR,45.4685,-122.7164,MULTNOMAH 97281,PORTLAND,OR,45.431,-122.769,WASHINGTON 97282,PORTLAND,OR,45.474,-122.6488,MULTNOMAH 97283,PORTLAND,OR,45.5888,-122.7525,MULTNOMAH 97286,PORTLAND,OR,45.4966,-122.6091,MULTNOMAH 97290,PORTLAND,OR,45.5761,-122.6436,MULTNOMAH 97291,PORTLAND,OR,45.5623,-122.8316,WASHINGTON 97292,PORTLAND,OR,45.5164,-122.5359,MULTNOMAH 97293,PORTLAND,OR,45.5155,-122.6569,MULTNOMAH 97294,PORTLAND,OR,45.5519,-122.5357,MULTNOMAH 97296,PORTLAND,OR,45.5359,-122.6559,MULTNOMAH 97298,PORTLAND,OR,45.4968,-122.7658,WASHINGTON 97299,PORTLAND,OR,45.5402,-122.6106,MULTNOMAH 97301,SALEM,OR,44.926039,-122.979692,MARION 97302,SALEM,OR,44.903899,-123.044514,MARION 97303,SALEM,OR,44.985794,-123.019015,MARION 97304,SALEM,OR,44.958846,-123.075323,POLK 97305,SALEM,OR,44.982502,-122.966892,MARION 97306,SALEM,OR,44.8685,-123.043789,MARION 97308,SALEM,OR,44.943,-123.0338,MARION 97309,SALEM,OR,44.9253,-123.0091,MARION 97310,SALEM,OR,44.9406,-123.0054,MARION 97311,SALEM,OR,44.943,-123.0338,MARION 97312,SALEM,OR,44.9371,-123.0385,MARION 97313,SALEM,OR,45.0306,-123.0256,MARION 97314,SALEM,OR,45.0306,-123.0256,MARION 97317,SALEM,OR,44.9036,-122.9466,MARION 97401,EUGENE,OR,44.073677,-123.078757,LANE 97402,EUGENE,OR,44.061243,-123.155525,LANE 97403,EUGENE,OR,44.038534,-123.061422,LANE 97404,EUGENE,OR,44.100536,-123.13336,LANE 97405,EUGENE,OR,44.018497,-123.099769,LANE 97408,EUGENE,OR,44.1129,-123.0711,LANE 97440,EUGENE,OR,44.0541,-123.092,LANE 98004,BELLEVUE,WA,47.619899,-122.207371,KING 98005,BELLEVUE,WA,47.614961,-122.166288,KING 98006,BELLEVUE,WA,47.561425,-122.155179,KING 98007,BELLEVUE,WA,47.617443,-122.142572,KING 98008,BELLEVUE,WA,47.611468,-122.116173,KING 98009,BELLEVUE,WA,47.6105,-122.1994,KING 98015,BELLEVUE,WA,47.6122,-122.1862,KING 98030,KENT,WA,47.3695,-122.1949,KING 98031,KENT,WA,47.388004,-122.193184,KING 98032,KENT,WA,47.377633,-122.285362,KING 98035,KENT,WA,47.3808,-122.2346,KING 98042,KENT,WA,47.368044,-122.120615,KING 98064,KENT,WA,47.3873,-122.1983,KING 98089,KENT,WA,47.3811,-122.2336,KING 98101,SEATTLE,WA,47.611435,-122.330456,KING 98102,SEATTLE,WA,47.63025,-122.320993,KING 98103,SEATTLE,WA,47.67335,-122.342621,KING 98104,SEATTLE,WA,47.603631,-122.325644,KING 98105,SEATTLE,WA,47.663266,-122.302236,KING 98106,SEATTLE,WA,47.534362,-122.354688,KING 98107,SEATTLE,WA,47.67012,-122.37626,KING 98108,SEATTLE,WA,47.547448,-122.306823,KING 98109,SEATTLE,WA,47.633875,-122.347615,KING 98111,SEATTLE,WA,47.609,-122.3351,KING 98112,SEATTLE,WA,47.630115,-122.297157,KING 98113,SEATTLE,WA,47.6064,-122.3308,KING 98114,SEATTLE,WA,47.6036,-122.3258,KING 98115,SEATTLE,WA,47.684918,-122.296828,KING 98116,SEATTLE,WA,47.574591,-122.393445,KING 98117,SEATTLE,WA,47.687263,-122.377223,KING 98118,SEATTLE,WA,47.541234,-122.275021,KING 98119,SEATTLE,WA,47.637917,-122.364272,KING 98121,SEATTLE,WA,47.615135,-122.344696,KING 98122,SEATTLE,WA,47.611633,-122.305608,KING 98124,SEATTLE,WA,47.6063,-122.3308,KING 98125,SEATTLE,WA,47.717002,-122.301546,KING 98126,SEATTLE,WA,47.544361,-122.373458,KING 98127,SEATTLE,WA,47.6064,-122.3308,KING 98129,SEATTLE,WA,47.6063,-122.3308,KING 98131,SEATTLE,WA,47.6063,-122.3308,KING 98132,SEATTLE,WA,47.6063,-122.3308,KING 98133,SEATTLE,WA,47.737717,-122.343132,KING 98134,SEATTLE,WA,47.590276,-122.326346,KING 98136,SEATTLE,WA,47.539769,-122.387768,KING 98138,SEATTLE,WA,47.4572,-122.2529,KING 98139,SEATTLE,WA,47.6064,-122.3308,KING 98141,SEATTLE,WA,47.6064,-122.3308,KING 98144,SEATTLE,WA,47.584624,-122.300457,KING 98145,SEATTLE,WA,47.6591,-122.3115,KING 98146,SEATTLE,WA,47.501069,-122.353989,KING 98148,SEATTLE,WA,47.450209,-122.326112,KING 98151,SEATTLE,WA,47.6063,-122.3308,KING 98154,SEATTLE,WA,47.6036,-122.3258,KING 98155,SEATTLE,WA,47.758161,-122.296305,KING 98158,SEATTLE,WA,47.442739,-122.318454,KING 98160,SEATTLE,WA,47.7654,-122.3614,KING 98161,SEATTLE,WA,47.609,-122.3351,KING 98164,SEATTLE,WA,47.6036,-122.3258,KING 98165,SEATTLE,WA,47.6064,-122.3308,KING 98166,SEATTLE,WA,47.455052,-122.347392,KING 98168,SEATTLE,WA,47.48851,-122.302376,KING 98170,SEATTLE,WA,47.6064,-122.3308,KING 98171,SEATTLE,WA,47.609,-122.3351,KING 98174,SEATTLE,WA,47.6036,-122.3258,KING 98175,SEATTLE,WA,47.6064,-122.3308,KING 98177,SEATTLE,WA,47.746678,-122.368585,KING 98178,SEATTLE,WA,47.499489,-122.247366,KING 98181,SEATTLE,WA,47.6063,-122.3308,KING 98184,SEATTLE,WA,47.6063,-122.3308,KING 98185,SEATTLE,WA,47.6641,-122.2941,KING 98188,SEATTLE,WA,47.449808,-122.281159,KING 98190,SEATTLE,WA,47.6064,-122.3308,KING 98191,SEATTLE,WA,47.6063,-122.3308,KING 98194,SEATTLE,WA,47.6064,-122.3308,KING 98195,SEATTLE,WA,47.6518,-122.3101,KING 98198,SEATTLE,WA,47.407286,-122.309559,KING 98199,SEATTLE,WA,47.648845,-122.396357,KING 98201,EVERETT,WA,47.988431,-122.200571,SNOHOMISH 98203,EVERETT,WA,47.941937,-122.221846,SNOHOMISH 98204,EVERETT,WA,47.901659,-122.247217,SNOHOMISH 98205,EVERETT,WA,47.990065,-122.115759,SNOHOMISH 98206,EVERETT,WA,47.9763,-122.2088,SNOHOMISH 98207,EVERETT,WA,47.9988,-122.188,SNOHOMISH 98208,EVERETT,WA,47.894822,-122.198722,SNOHOMISH 98213,EVERETT,WA,47.9792,-122.2008,SNOHOMISH 98401,TACOMA,WA,47.2764,-122.7583,PIERCE 98402,TACOMA,WA,47.254508,-122.440536,PIERCE 98403,TACOMA,WA,47.26428,-122.457538,PIERCE 98404,TACOMA,WA,47.211312,-122.412625,PIERCE 98405,TACOMA,WA,47.248351,-122.46435,PIERCE 98406,TACOMA,WA,47.26325,-122.499349,PIERCE 98407,TACOMA,WA,47.282479,-122.503881,PIERCE 98408,TACOMA,WA,47.207267,-122.444381,PIERCE 98409,TACOMA,WA,47.20381,-122.482503,PIERCE 98411,TACOMA,WA,47.2215,-122.4717,PIERCE 98412,TACOMA,WA,47.1826,-122.4402,PIERCE 98413,TACOMA,WA,47.253,-122.443,PIERCE 98415,TACOMA,WA,47.253,-122.443,PIERCE 98416,TACOMA,WA,47.2633,-122.4803,PIERCE 98417,TACOMA,WA,47.1663,-12.2378,PIERCE 98418,TACOMA,WA,47.2242,-122.4473,PIERCE 98419,TACOMA,WA,47.1663,-12.2378,PIERCE 98421,TACOMA,WA,47.266373,-122.401457,PIERCE 98422,TACOMA,WA,47.294805,-122.398349,PIERCE 98424,TACOMA,WA,47.243632,-122.350962,PIERCE 98431,TACOMA,WA,47.063056,-122.553333,PIERCE 98433,TACOMA,WA,47.100864,-122.583486,PIERCE 98439,LAKEWOOD,WA,47.122905,-122.529326,PIERCE 98442,TACOMA,WA,47.1461,-122.4347,PIERCE 98443,TACOMA,WA,47.204369,-122.372815,PIERCE 98444,TACOMA,WA,47.156553,-122.448842,PIERCE 98445,TACOMA,WA,47.133967,-122.411614,PIERCE 98446,TACOMA,WA,47.14041,-122.37189,PIERCE 98447,TACOMA,WA,47.1458,-122.44,PIERCE 98448,TACOMA,WA,47.1663,-12.2378,PIERCE 98450,TACOMA,WA,47.253,-122.443,PIERCE 98455,TACOMA,WA,47.253,-122.443,PIERCE 98460,TACOMA,WA,47.253,-122.443,PIERCE 98464,TACOMA,WA,47.253,-122.443,PIERCE 98465,TACOMA,WA,47.249139,-122.527272,PIERCE 98466,TACOMA,WA,47.22788,-122.53503,PIERCE 98471,TACOMA,WA,47.2551,-122.4733,PIERCE 98477,TACOMA,WA,47.253,-122.443,PIERCE 98481,TACOMA,WA,47.2208,-122.4732,PIERCE 98490,TACOMA,WA,47.1663,-12.2378,PIERCE 98492,LAKEWOOD,WA,47.123611,-122.555833,PIERCE 98493,TACOMA,WA,47.0631,-122.5536,PIERCE 98496,LAKEWOOD,WA,47.1663,-12.2378,PIERCE 98497,LAKEWOOD,WA,47.1805,-122.5465,PIERCE 98498,LAKEWOOD,WA,47.164269,-122.555357,PIERCE 98499,LAKEWOOD,WA,47.160786,-122.509074,PIERCE 98501,OLYMPIA,WA,47.012906,-122.876311,THURSTON 98502,OLYMPIA,WA,47.029828,-122.95214,THURSTON 98504,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98505,OLYMPIA,WA,47.0704,-122.9604,THURSTON 98506,OLYMPIA,WA,47.076259,-122.832844,THURSTON 98507,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98508,OLYMPIA,WA,47.0352,-122.9369,THURSTON 98512,OLYMPIA,WA,46.974,-122.9871,THURSTON 98513,OLYMPIA,WA,47.008,-122.7571,THURSTON 98516,OLYMPIA,WA,47.0833,-122.7776,THURSTON 98599,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98660,VANCOUVER,WA,45.64183,-122.68014,CLARK 98661,VANCOUVER,WA,45.641807,-122.625146,CLARK 98662,VANCOUVER,WA,45.674519,-122.576182,CLARK 98663,VANCOUVER,WA,45.6514,-122.660385,CLARK 98664,VANCOUVER,WA,45.623086,-122.576741,CLARK 98665,VANCOUVER,WA,45.68217,-122.664223,CLARK 98666,VANCOUVER,WA,45.6307,-122.6733,CLARK 98667,VANCOUVER,WA,45.6388,-122.6602,CLARK 98668,VANCOUVER,WA,45.6408,-122.6221,CLARK 98682,VANCOUVER,WA,45.664399,-122.521224,CLARK 98683,VANCOUVER,WA,45.6034,-122.5101,CLARK 98684,VANCOUVER,WA,45.617522,-122.524969,CLARK 98685,VANCOUVER,WA,45.707313,-122.682474,CLARK 98686,VANCOUVER,WA,45.712017,-122.632226,CLARK 98687,VANCOUVER,WA,45.6311,-122.518,CLARK 98901,YAKIMA,WA,46.606991,-120.477336,YAKIMA 98902,YAKIMA,WA,46.593393,-120.531084,YAKIMA 98903,YAKIMA,WA,46.5572,-120.556587,YAKIMA 98904,YAKIMA,WA,46.6022,-120.5047,YAKIMA 98907,YAKIMA,WA,46.666,-120.3543,YAKIMA 98908,YAKIMA,WA,46.605865,-120.605175,YAKIMA 98909,YAKIMA,WA,46.5708,-120.5069,YAKIMA 99201,SPOKANE,WA,47.666485,-117.436527,SPOKANE 99202,SPOKANE,WA,47.654741,-117.380972,SPOKANE 99203,SPOKANE,WA,47.629443,-117.404121,SPOKANE 99204,SPOKANE,WA,47.640682,-117.471896,SPOKANE 99205,SPOKANE,WA,47.69641,-117.439912,SPOKANE 99206,SPOKANE,WA,47.649588,-117.258126,SPOKANE 99207,SPOKANE,WA,47.697712,-117.374565,SPOKANE 99208,SPOKANE,WA,47.737434,-117.435207,SPOKANE 99209,SPOKANE,WA,47.6934,-117.4382,SPOKANE 99210,SPOKANE,WA,47.6581,-117.424,SPOKANE 99211,SPOKANE,WA,47.6588,-117.425,SPOKANE 99212,SPOKANE,WA,47.668598,-117.304853,SPOKANE 99213,SPOKANE,WA,47.6588,-117.425,SPOKANE 99214,SPOKANE,WA,47.6588,-117.425,SPOKANE 99215,SPOKANE,WA,47.6953,-117.2105,SPOKANE 99216,SPOKANE,WA,47.663389,-117.219307,SPOKANE 99217,SPOKANE,WA,47.7143,-117.3247,SPOKANE 99218,SPOKANE,WA,47.755648,-117.4146,SPOKANE 99219,SPOKANE,WA,47.6588,-117.425,SPOKANE 99220,SPOKANE,WA,47.657,-117.3859,SPOKANE 99223,SPOKANE,WA,47.61558,-117.362215,SPOKANE 99224,SPOKANE,WA,47.6319,-117.4873,SPOKANE 99228,SPOKANE,WA,47.7155,-117.4245,SPOKANE 99251,SPOKANE,WA,47.7511,-117.4176,SPOKANE 99252,SPOKANE,WA,47.6717,-117.3897,SPOKANE 99256,SPOKANE,WA,47.657,-117.3859,SPOKANE 99258,SPOKANE,WA,47.6683,-117.4028,SPOKANE 99260,SPOKANE,WA,47.657,-117.3859,SPOKANE 99299,SPOKANE,WA,47.6588,-117.425,SPOKANE 99501,ANCHORAGE,AK,61.211571,-149.876077,ANCHORAGE 99502,ANCHORAGE,AK,61.096163,-150.093943,ANCHORAGE 99503,ANCHORAGE,AK,61.189953,-149.893844,ANCHORAGE 99504,ANCHORAGE,AK,61.203696,-149.74467,ANCHORAGE 99507,ANCHORAGE,AK,61.153543,-149.828912,ANCHORAGE 99508,ANCHORAGE,AK,61.205959,-149.810085,ANCHORAGE 99509,ANCHORAGE,AK,61.1897,-149.9063,ANCHORAGE 99510,ANCHORAGE,AK,61.2199,-149.8882,ANCHORAGE 99511,ANCHORAGE,AK,61.1104,-149.8577,ANCHORAGE 99513,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99514,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99515,ANCHORAGE,AK,61.119381,-149.897401,ANCHORAGE 99516,ANCHORAGE,AK,61.10541,-149.779998,ANCHORAGE 99517,ANCHORAGE,AK,61.190136,-149.936111,ANCHORAGE 99518,ANCHORAGE,AK,61.154862,-149.886571,ANCHORAGE 99519,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99520,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99521,ANCHORAGE,AK,61.1996,-149.7314,ANCHORAGE 99522,ANCHORAGE,AK,61.1521,-149.9198,ANCHORAGE 99523,ANCHORAGE,AK,61.1682,-149.8356,ANCHORAGE 99524,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99529,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99530,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99599,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99695,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99701,FAIRBANKS,AK,64.840238,-147.710431,FAIRBANKS NORTH STAR 99706,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99707,FAIRBANKS,AK,64.8419,-147.7227,FAIRBANKS NORTH STAR 99708,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99709,FAIRBANKS,AK,64.85437,-147.846917,FAIRBANKS NORTH STAR 99710,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99711,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99712,FAIRBANKS,AK,64.910879,-147.510479,FAIRBANKS NORTH STAR 99775,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99790,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99801,JUNEAU,AK,58.362767,-134.529429,JUNEAU 99802,JUNEAU,AK,58.2997,-134.4149,JUNEAU 99803,JUNEAU,AK,58.3722,-134.5868,JUNEAU 99811,JUNEAU,AK,58.4773,-134.1549,JUNEAU 99812,JUNEAU,AK,58.2806,-134.3994,JUNEAU 99850,JUNEAU,AK,58.4773,-134.1549,JUNEAU \ No newline at end of file diff --git a/splunk_eventgen/samples/mdn.sample b/splunk_eventgen/samples/mdn.sample deleted file mode 100644 index 33c645bb..00000000 --- a/splunk_eventgen/samples/mdn.sample +++ /dev/null @@ -1,815 +0,0 @@ -5556374832 -5559863091 -5557507373 -5554715490 -5553574320 -5553556664 -5554400219 -5556890861 -5557027750 -5557607034 -5557607034 -5555750129 -5556948686 -5557974528 -5552275314 -5553593502 -5557131993 -5557974528 -5556685507 -5559972146 -5556791445 -5556791445 -5555689490 -5554351797 -5555524026 -5554351797 -5559902928 -5557700462 -5555697044 -5557822114 -5552576124 -5552576124 -5552563627 -5559697090 -5559972146 -5555172530 -5558835506 -5553911046 -5553911046 -5555523241 -5552337761 -5558128479 -5555912195 -5553298804 -5559402954 -5557822114 -5556438360 -5559897094 -5552172942 -5553235675 -5554980675 -5558143038 -5559897465 -5558341450 -5558816449 -5558816449 -5558041235 -5557555207 -5553328482 -5555635916 -5559902928 -5556585650 -5558041235 -5558091300 -5555630768 -5552287241 -5557555207 -5555521164 -5558920996 -5555750166 -5557268571 -5554982823 -5552373863 -5554982823 -5552997923 -5556120001 -5554087740 -5555588602 -5552450005 -5553133793 -5559730494 -5555503191 -5557173544 -5552243212 -5556480338 -5553312305 -5555146289 -5556480338 -5557647981 -5554413449 -5554754883 -5554690066 -5558143038 -5559910004 -5558341450 -5552088600 -5556528711 -5553176306 -5552088600 -5556581781 -5555896510 -5554888539 -5553665199 -5555630768 -5553665199 -5552970411 -5556851965 -5557443407 -5552151677 -5558920996 -5557128051 -5557975756 -5555750166 -5559782161 -5555570461 -5556039988 -5557728712 -5555588602 -5554087740 -5553740044 -5553740044 -5557751404 -5555027890 -5555503191 -5559952550 -5559863091 -5553589476 -5553245990 -5558836762 -5558836762 -5554754883 -5555426586 -5555313257 -5559472318 -5557621778 -5554402125 -5556555960 -5557180594 -5557510869 -5558504854 -5559645866 -5557065509 -5558504854 -5552781642 -5559645866 -5555449287 -5552781642 -5556581781 -5552850129 -5556890751 -5556851965 -5557443407 -5556404243 -5552408987 -5555691525 -5554391346 -5556966188 -5552141758 -5557438596 -5554982823 -5554982823 -5554130240 -5557175702 -5556885463 -5555894233 -5555584413 -5557565865 -5557128051 -5556545078 -5559407533 -5556545078 -5559407533 -5552907674 -5552727287 -5552727287 -5554621247 -5555511538 -5559957668 -5552804625 -5552804625 -5552016739 -5552171436 -5554402125 -5556890751 -5552058127 -5559957668 -5557710320 -5558137769 -5557710320 -5556289887 -5556394690 -5558137769 -5557660601 -5557054702 -5555077653 -5557054702 -5553581943 -5552243212 -5558538413 -5552325580 -5559214497 -5557438596 -5554401598 -5557026126 -5559732639 -5553399856 -5559496764 -5553783890 -5553783890 -5552528438 -5557156220 -5558150968 -5558765231 -5552171436 -5552528438 -5555058619 -5553919201 -5555449287 -5557155799 -5558485552 -5556289887 -5557129269 -5554205531 -5557422487 -5552385950 -5552385950 -5556408359 -5558925695 -5555935051 -5558962220 -5556885463 -5555203745 -5557586339 -5557175702 -5556347018 -5556990675 -5556347018 -5553399856 -5559732639 -5554440405 -5559180045 -5554401598 -5554024269 -5559496764 -5557079104 -5558828667 -5553502807 -5559863782 -5554804798 -5553175253 -5555467300 -5552922603 -5555367836 -5555367836 -5554982823 -5554501823 -5558765231 -5552170636 -5554982823 -5557824204 -5552849794 -5553675132 -5559889370 -5553919201 -5555153211 -5555153211 -5558878613 -5554497192 -5556408359 -5557172548 -5554400905 -5559091902 -5556774478 -5552058127 -5553048905 -5558962220 -5555203745 -5557582164 -5557415314 -5559031692 -5555137632 -5555617468 -5557086916 -5558533825 -5558533825 -5558851093 -5553335032 -5555284427 -5557028894 -5556692087 -5556473983 -5556895290 -5556895290 -5556196234 -5553549339 -5554892806 -5558913765 -5554172753 -5557824204 -5558387327 -5558964348 -5557036858 -5552844302 -5554236100 -5557542589 -5552877073 -5556832579 -5556394690 -5552928425 -5555680076 -5554288136 -5553550994 -5552977358 -5552015132 -5557582164 -5555137632 -5557124211 -5559218961 -5559218961 -5555318017 -5558851093 -5554128400 -5555898487 -5559024813 -5555587773 -5558128479 -5557087464 -5557970692 -5557150288 -5557087464 -5555698038 -5552074216 -5554995736 -5556405854 -5558538687 -5553323028 -5557131993 -5558964348 -5555583797 -5554236100 -5554982823 -5557176938 -5552457324 -5554982823 -5553680161 -5554166546 -5554166546 -5556832579 -5552005169 -5558822901 -5555692646 -5558913765 -5553525787 -5553680161 -5552210369 -5556537930 -5553652782 -5556537930 -5552977358 -5559651635 -5557980797 -5557980797 -5552225223 -5552015132 -5557124211 -5553360775 -5557728710 -5554431953 -5553048905 -5555318017 -5557988971 -5559024813 -5552411345 -5558128479 -5559772622 -5557065509 -5556907433 -5552650754 -5558538687 -5553176306 -5555592565 -5555315487 -5557176938 -5559440881 -5553557993 -5558474082 -5552087114 -5552087114 -5555091383 -5554881085 -5552353726 -5556508603 -5553547104 -5556672043 -5554034102 -5556877632 -5556387619 -5552930599 -5553714142 -5555617468 -5552146585 -5553714142 -5554354010 -5554354010 -5557268571 -5555284427 -5558041235 -5557703964 -5552586726 -5553395569 -5558894047 -5554001467 -5554345946 -5558682270 -5558682270 -5553302696 -5559041911 -5553135921 -5559466325 -5555006434 -5559440881 -5553317465 -5553557993 -5555050861 -5552581799 -5552581799 -5555896510 -5552166319 -5556583481 -5555050861 -5552166319 -5555603215 -5557586339 -5552144871 -5555091383 -5555774294 -5552728442 -5559516691 -5559214497 -5559730494 -5554353477 -5553063863 -5559960243 -5553209206 -5556537930 -5555848323 -5558822901 -5557087464 -5558050416 -5559363979 -5553048905 -5559041911 -5554476746 -5555006434 -5556407407 -5555699353 -5557087464 -5554107516 -5559904661 -5552146585 -5555443145 -5556764110 -5559903808 -5559632128 -5558945948 -5558945948 -5555063834 -5558894047 -5555603215 -5559904661 -5556583481 -5552144871 -5554138369 -5555774294 -5556540735 -5556036834 -5553013039 -5552840736 -5556896328 -5553525787 -5558816406 -5554401225 -5553209206 -5555848323 -5557324659 -5552871462 -5554177692 -5558050416 -5552569278 -5554753149 -5554354010 -5552901307 -5552901307 -5558751138 -5553444703 -5555443145 -5554806740 -5557352957 -5556407407 -5554352852 -5557555323 -5553170091 -5554431584 -5552172942 -5556356064 -5552388108 -5552912306 -5556354463 -5552087376 -5557770172 -5552008689 -5553058588 -5559904126 -5558935490 -5552131557 -5555054504 -5552271621 -5555050861 -5555054504 -5554107516 -5553330495 -5553941873 -5555050861 -5558763139 -5555059345 -5552190099 -5558286514 -5552146585 -5554716578 -5554716578 -5558847998 -5553362389 -5554401225 -5554276306 -5554276306 -5558829079 -5554130240 -5552776222 -5555070167 -5554650353 -5552776222 -5556365753 -5556625350 -5553141973 -5552240784 -5555180934 -5554358850 -5555517941 -5554012188 -5555004149 -5555004149 -5556537930 -5556891148 -5554612296 -5559497591 -5554366087 -5557856809 -5553420368 -5555440660 -5555440660 -5557067982 -5557800633 -5559684208 -5559684208 -5553048905 -5558032080 -5555826139 -5553094374 -5555826139 -5556356064 -5553094374 -5552348684 -5554907454 -5553058588 -5554593084 -5553736792 -5555102551 -5553775173 -5552008689 -5558074421 -5552271621 -5553627942 -5552840736 -5557426959 -5554593084 -5555783154 -5553941873 -5555059345 -5553880365 -5554545971 -5558286514 -5558960097 -5557173434 -5558474082 -5554876003 -5555520055 -5553184966 -5552871462 -5557342102 -5553141973 -5556625350 -5558829079 -5554464236 -5555782091 -5552329283 -5554091818 -5553095742 -5555900494 -5559044005 -5559631398 -5552844302 -5557985767 -5554012188 -5554864285 -5559065754 -5554751737 -5554354010 -5556625625 -5556625625 -5558032080 -5554907454 -5557769297 -5552044271 -5557182867 -5552973036 -5557182867 -5558638661 -5559911292 -5555534432 -5559911292 -5559214572 -5552073900 -5557426305 -5555783154 -5552144967 -5552388108 -5555146289 -5557778727 -5558074421 -5557173434 -5553184966 -5558932732 -5552723389 -5558932732 -5552558308 -5559551802 -5555050861 -5557016622 -5557568693 -5553736792 -5552560481 -5558021323 -5555050861 -5552329283 -5554091818 -5555315987 -5554090471 -5556357136 -5559960266 -5557890985 -5554864285 -5552190099 -5558690103 -5552552547 -5558690103 -5554751737 -5554932300 -5559065754 -5554278541 -5552096870 -5552121383 -5554696820 -5555050508 -5555517941 -5557025652 -5555832993 -5557093122 -5555771813 -5553283593 -5552827515 -5559364524 -5553170091 -5559364524 -5557048233 -5557884966 -5552547017 -5558829713 -5552073900 -5556064559 -5555701707 -5554097351 -5554576909 -5555526825 -5554576909 -5555526825 -5552547017 -5555635916 -5557129302 -5552174328 -5552174328 -5558355074 -5557568693 -5554032644 -5552723389 -5552560481 -5556732133 -5554032644 -5555967795 -5554295458 -5559551802 -5553734614 -5557183004 -5559363979 -5553652050 -5554035226 -5556027308 -5559960266 -5557873635 -5557324659 -5554335264 -5552457570 -5556931054 -5556078837 -5552552547 -5552295483 -5553915812 -5556896328 -5553991921 -5559970518 -5556020864 -5555614349 -5556020864 -5556542168 -5554932300 -5555050508 -5559887089 -5555832993 -5552850848 -5555771813 -5553283593 -5557622385 -5553555893 -5557884966 -5553173463 -5555635542 -5552091642 -5555520932 -5555520932 -5555686173 -5557016622 -5552000229 -5557182867 -5554715129 -5556732133 -5552991250 -5557183004 -5557732351 -5556604980 -5554715490 -5552627113 -5553205881 -5553743316 -5553968260 -5558021323 -5553350609 -5558225901 -5558225901 -5554335264 -5558858078 -5554726718 -5557156220 -5552295483 -5555050861 -5554400219 -5554034102 -5553365287 -5558895202 -5555377331 -5555050861 -5559472318 -5558895202 -5558926329 -5559044005 -5553095742 -5555614349 -5558899235 -5553550742 -5552850848 -5558829713 -5556903157 -5555443830 -5555022781 -5558026056 -5559231459 -5553173463 -5553203396 -5555635542 -5558989194 -5552091642 -5555572800 -5559897465 -5552000229 -5555935051 -5553465315 -5556196234 -5554715129 -5555631799 -5557079104 -5553093101 -5553328482 -5559067772 -5554936719 -5553936269 -5554210126 -5554210126 diff --git a/splunk_eventgen/samples/networkProvider.sample b/splunk_eventgen/samples/networkProvider.sample deleted file mode 100644 index 5064233a..00000000 --- a/splunk_eventgen/samples/networkProvider.sample +++ /dev/null @@ -1,39 +0,0 @@ -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Splunktel -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Sprint -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire -Clearwire \ No newline at end of file diff --git a/splunk_eventgen/samples/oracle11.action.sample b/splunk_eventgen/samples/oracle11.action.sample deleted file mode 100644 index aacd248a..00000000 --- a/splunk_eventgen/samples/oracle11.action.sample +++ /dev/null @@ -1,20 +0,0 @@ -100 -101 -102 -100 -101 -102 -100 -101 -102 -43 -51 -52 -53 -54 -55 -79 -108 -109 -114 -115 \ No newline at end of file diff --git a/splunk_eventgen/samples/oracleUserNames.sample b/splunk_eventgen/samples/oracleUserNames.sample deleted file mode 100644 index 55db3c2c..00000000 --- a/splunk_eventgen/samples/oracleUserNames.sample +++ /dev/null @@ -1,24 +0,0 @@ -scott -dba_user_1 -dba_user_2 -dba_user_3 -oracle_1 -oracle_2 -oracle_3 -oracle_4 -oracle_5 -oracle_6 -oracle_7 -oracle_8 -oracle_9 -oracle_10 -oracle_11 -oracle_12 -oracle_13 -oracle_14 -oracle_15 -oracle_16 -oracle_17 -oracle_18 -oracle_19 -oracle_20 \ No newline at end of file diff --git a/splunk_eventgen/samples/orderType.sample b/splunk_eventgen/samples/orderType.sample deleted file mode 100644 index 61c7b11d..00000000 --- a/splunk_eventgen/samples/orderType.sample +++ /dev/null @@ -1,6 +0,0 @@ -New -New -Change -Change -Change -Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/orig.sample.mobilemusic.csv b/splunk_eventgen/samples/orig.sample.mobilemusic.csv deleted file mode 100644 index bee172e5..00000000 --- a/splunk_eventgen/samples/orig.sample.mobilemusic.csv +++ /dev/null @@ -1 +0,0 @@ -index,host,source,sourcetype,_raw main,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. main,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" main,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO sample.mobilemusic.csv.origRADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/phones.sample b/splunk_eventgen/samples/phones.sample deleted file mode 100644 index 091173af..00000000 --- a/splunk_eventgen/samples/phones.sample +++ /dev/null @@ -1,69 +0,0 @@ -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-16,iPhone,iPhone 4S 16 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-32,iPhone,iPhone 4S 32 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4S-64,iPhone,iPhone 4S 64 Gig -IP4-8,iPhone,iPhone 4 8 Gig -IP4-8,iPhone,iPhone 4 8 Gig -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -IP3GS-8,iPhone,iPhone 3GS -SGS2,Android,Samsung GALAXY S2 -SGS2,Android,Samsung GALAXY S2 -SGS2,Android,Samsung GALAXY S2 -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SGS4G,Android,Samsung GALAXY S 4G -SS,Android,Samsung Stratosphere -MDB,Android,Motorola Droid Bionic -MDB,Android,Motorola Droid Bionic -MDR,Android,Motorola Droid Razr -MDR,Android,Motorola Droid Razr -HE4G,Android,HTC Evo 4G -HE4G,Android,HTC Evo 4G -HDI,Android,HTC Droid Incredible -LGR,Android,LG Revolution -NL700,Windows Phone,Nokia Lumia 700 -NL1600,Windows Phone,Nokia Lumia 1600 -SFF,Windows Phone,Samsung Focus Flash -BBC,Blackberry,Blackberry Curve 9360 -BBT,Blackberry,Blackberry Torch 91660 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -PL2,Feature,Pantech Link 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -SS2,Feature,Samsung Solstice 2 -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -PB3,Feature,Pantech Breeze III -MTUN,Feature,Motorola Tundra -MTUN,Feature,Motorola Tundra \ No newline at end of file diff --git a/splunk_eventgen/samples/plans.sample b/splunk_eventgen/samples/plans.sample deleted file mode 100644 index 9c678ef1..00000000 --- a/splunk_eventgen/samples/plans.sample +++ /dev/null @@ -1,24 +0,0 @@ -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend -900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text -900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text -ULPOST70,PostPaid,69.99,Unlimited,Nationwide Unlimited Minutes, Unlimited Text, Unlimited Data -5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend -1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -2100POST5L110,PostPaid,109.99,2100 Minute Family,Nationwide 2100 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -ULPOST5L120,PostPaid,119.99,2100 Minute Family,Nationwide Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text -ULPRE2D,PrePaid,60.00,Unlimited Prepaid,Nationwide Prepaid Daily Unlimited Minutes, $2/Day, Unlimited Mobile to Mobile, Unlimited Data \ No newline at end of file diff --git a/splunk_eventgen/samples/radPIDs.sample b/splunk_eventgen/samples/radPIDs.sample deleted file mode 100644 index c94ffb74..00000000 --- a/splunk_eventgen/samples/radPIDs.sample +++ /dev/null @@ -1,3 +0,0 @@ -2363 -12676 -12548 \ No newline at end of file diff --git a/splunk_eventgen/samples/radhosts.sample b/splunk_eventgen/samples/radhosts.sample deleted file mode 100644 index c5d92cbc..00000000 --- a/splunk_eventgen/samples/radhosts.sample +++ /dev/null @@ -1,3 +0,0 @@ -aaa1 -aaa2 -aaa3 \ No newline at end of file diff --git a/splunk_eventgen/samples/random_domains.sample b/splunk_eventgen/samples/random_domains.sample deleted file mode 100644 index 1a35bb4f..00000000 --- a/splunk_eventgen/samples/random_domains.sample +++ /dev/null @@ -1,73 +0,0 @@ -ryanzdimyxojlks.ac -xyosowlnwqaihkq.by -dxqjhxwvqnnaeja.com -tkhwesmptszdody.dm -nrsosrvzugflgrr.edu -cpzwbasblwxuslm.fo -ymtwccawahahbln.gov -traqoovhxmnlzsw.hn -rlmzjhmoavhvecn.info -gtryuifjydlebbw.jobs -kisebvtvvbwpqvs.kp -uxdtcpgatmrkusb.ly -dtutxaqyplrqawt.mil -awgnwunsglcdniy.net -tfrrmvpxtgsqkgx.org -emyadlwbzdcvkji.post -becfmwohxowgrin.ro -zqtpdchgtqfaxeg.sm -qsjchqcocvyrfvf.travel -eetnpmejmgcjuts.ug -rpuqtuhgwosvgrw.vc -bbijrgibymvwkqh.wf -jpmnwejftfqnmdj.xn--11b5bs3a9aj6g -ctimibiiriizsfe.xn--9t4b11yi5a -jhievxgnocibcid.xn--pgbs0dh -wzpsynmmqaaytvk.xn--yfro4i67o -sbmbsavwlynzcdt.ye -umivkuhkfmnuqie.za -grrwtjyyrtrupmf.ac -vpsircrczggyxti.by -qdpqjkvtbrsvsfu.com -ttbxwberplbcpjt.dm -mpesgkjkvrvxttk.edu -yfgjawitvcjtlwx.fo -tlcficjhlotnbnw.gov -qlcasnxbwukyogy.hn -ovuroahuiqgstho.info -zkotiwaewxfbsra.jobs -omizpmexfthdtkn.kp -etabjoqkfincucc.ly -wunehceccozhicb.mil -vasfeglzezfrhin.net -ondbxluvhhdfrzz.org -rvpfszpypaprorv.post -ufcyhlsjhnilxyu.ro -cpynvdqsyyrmotr.sm -qmaeaqfaminmtyd.travel -bvaiwgaqcdsxupe.ug -ddqulhrvujjvanx.vc -pafzyzkypzovtmi.wf -dcaioweydsfexnz.xn--11b5bs3a9aj6g -hmrdxjpzmcdjpug.xn--9t4b11yi5a -gqtavlakkdkcryl.xn--pgbs0dh -dytwkhnhsuulniq.xn--yfro4i67o -saeleofdezzuvfs.ye -hojdytnzcsvpkok.za -pcqxcoxljjtcrui.ac -ymfojvebwimzpzm.by -vbhnlghrkdvbpov.com -rqsszeznvhhbrah.dm -ztluylwgnmpgcac.edu -ufvmgvfvklsrfgf.fo -abgyotorvogikfm.gov -dpznommctrfaycs.hn -qhkhdkextwrztdm.info -frlkmlrpxsjcmbx.jobs -rxqdywdxhfhckte.kp -buajzkdmvrsyljm.ly -juvzvpjgiuwvpfo.mil -bdprepgvmaafowj.net -aldpagsgbplmxli.org -meyeagtuyybatkh.post -vbdcxghnetrwljh.ro \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.businessevent b/splunk_eventgen/samples/sample.businessevent deleted file mode 100644 index c5914af3..00000000 --- a/splunk_eventgen/samples/sample.businessevent +++ /dev/null @@ -1 +0,0 @@ -2011-10-11 16:30:20,072,Event [Event=UpdateBillingProvQuote, timestamp=1318375820071, properties={JMSCorrelationID=NA, JMSMessageID=ID:ESP-PD.289F4E3F7A381:CEBE7D53, orderType=ChangeESN, quotePriority=NORMAL, conversationId=ESB~47af426612b50c97:5a04ce5c:132f52c51600:440d, credits=NA, JMSReplyTo=pub.esb.genericasync.response, timeToLive=-1, serviceName=UpdateBillingProvisioning, esn=NA, accountNumber=71081182961, MethodName=InternalEvent, AdapterName=UpdateBillingProvQuote, meid=NA, orderNumber=NA, quoteNumber=60354607, ReplyTo=NA, userName=cid, EventConversationID=NA, mdn=8322976226, accountType=PostPaid, marketCity="Houston", marketState=TX, marketZip=55555, billingCycle=5, autoBillPayment=T, phoneCode=IP4S, phoneType=iPhone, phoneName="iPhone 4S", planCode=700UD, planType=PostPaid, planPrice=45, planName="700 Minute Unlimited Data", planDescription="Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Texting, Unlimited Data", networkProviderName=Native}] \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic b/splunk_eventgen/samples/sample.mobilemusic deleted file mode 100644 index a8e1b03d..00000000 --- a/splunk_eventgen/samples/sample.mobilemusic +++ /dev/null @@ -1,3 +0,0 @@ -May 28 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. -2012-05-28 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 "Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" 200 0 0 468 1488 -May 28 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic.csv b/splunk_eventgen/samples/sample.mobilemusic.csv deleted file mode 100644 index 797ec2fa..00000000 --- a/splunk_eventgen/samples/sample.mobilemusic.csv +++ /dev/null @@ -1,6 +0,0 @@ -index,host,source,sourcetype,_raw -oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:125 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 200 0 0 468 1488" -oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:137 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" -oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.tutorial1 b/splunk_eventgen/samples/sample.tutorial1 deleted file mode 100644 index 67d004c1..00000000 --- a/splunk_eventgen/samples/sample.tutorial1 +++ /dev/null @@ -1,2020 +0,0 @@ -index,host,source,sourcetype,"_raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=506" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=506" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44392" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4585" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229725, instantaneous_eps=1.450299, average_kbps=0.187305, total_k_processed=4351, kb=7.127930, ev=45, load_average=1.409668" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=14, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=507" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=507" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44468" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4589" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229747, instantaneous_eps=1.450238, average_kbps=0.187356, total_k_processed=4358, kb=7.128906, ev=45, load_average=1.789551" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44544" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229712, instantaneous_eps=1.450219, average_kbps=0.187407, total_k_processed=4365, kb=7.127930, ev=45, load_average=1.492676" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44620" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=3, cumulative_hits=4596" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229731, instantaneous_eps=1.450336, average_kbps=0.187457, total_k_processed=4372, kb=7.127930, ev=45, load_average=1.444336" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.963 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.974 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 84.80 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=mpool, max_used_interval=10761, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=509" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=509" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44696" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4603" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.233630, instantaneous_eps=1.450311, average_kbps=0.187508, total_k_processed=4379, kb=7.249023, ev=45, load_average=1.162598" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.219592, eps=1.385853, kb=6.813477, ev=43, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014037, eps=0.064458, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=43, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=510" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=510" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=44773" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4607" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236177, instantaneous_eps=1.482525, average_kbps=0.187559, total_k_processed=4386, kb=7.328125, ev=46, load_average=1.863281" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=22, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:25:04.953 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:25:15.391 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=1436 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=292" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=511" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=511" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=95, cumulative_hits=44868" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4630" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.315106, instantaneous_eps=2.062395, average_kbps=0.187694, total_k_processed=4395, kb=9.778320, ev=64, load_average=1.803711" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243166, eps=1.546796, kb=7.545898, ev=48, avg_age=0.979167, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.240145, eps=1.514571, kb=7.452148, ev=47, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229728, eps=1.450122, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236966, eps=1.482347, kb=7.353516, ev=46, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=mpool, max_used_interval=14851, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=512" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=512" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=112, cumulative_hits=44980" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4650" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.405086, instantaneous_eps=2.623319, average_kbps=0.187959, total_k_processed=4407, kb=12.507812, ev=81, load_average=2.545898" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.279 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:26:16.298 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6853 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=mpool, max_used_interval=12307, max_used=95646, avg_rsv=251, capacity=268435456, used=688" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=513" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=513" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45087" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4673" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.376027, instantaneous_eps=2.449070, average_kbps=0.188179, total_k_processed=4418, kb=11.668945, ev=76, load_average=2.261719" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=3, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251597, eps=1.579006, kb=7.807617, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=mpool, max_used_interval=12606, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=514" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=514" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=104, cumulative_hits=45191" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=18, cumulative_hits=4691" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.361229, instantaneous_eps=2.352349, average_kbps=0.188399, total_k_processed=4429, kb=11.209961, ev=73, load_average=1.763672" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:27:16.362 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6817 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.373 INFO Metrics - group=mpool, max_used_interval=12985, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=515" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=515" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45298" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4714" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.374176, instantaneous_eps=2.449107, average_kbps=0.188618, total_k_processed=4440, kb=11.611328, ev=76, load_average=1.811523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251538, eps=1.579030, kb=7.805664, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=516" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=516" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=90, cumulative_hits=45388" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4724" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.298454, instantaneous_eps=1.901243, average_kbps=0.188751, total_k_processed=4449, kb=9.261719, ev=59, load_average=1.978027" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:00.924 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:28:16.424 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=3977 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=mpool, max_used_interval=12292, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=293" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=517" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=517" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4747" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.331881, instantaneous_eps=2.159083, average_kbps=0.188927, total_k_processed=4459, kb=10.298828, ev=67, load_average=2.186035" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264567, eps=1.675706, kb=8.209961, ev=52, avg_age=0.019231, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261546, eps=1.643481, kb=8.116211, ev=51, avg_age=0.019608, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251129, eps=1.579031, kb=7.792969, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258367, eps=1.611256, kb=8.017578, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:52.363 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=mpool, max_used_interval=14856, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=518" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=518" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=105, cumulative_hits=45591" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4767" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.369509, instantaneous_eps=2.392134, average_kbps=0.189145, total_k_processed=4470, kb=11.430664, ev=74, load_average=2.300293" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.298070, eps=1.874916, kb=9.220703, ev=58, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.295039, eps=1.842590, kb=9.126953, ev=57, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.950 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.961 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 76.48 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:29:17.392 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=4388 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=mpool, max_used_interval=13875, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=519" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=519" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45689" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=16, cumulative_hits=4783" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.345734, instantaneous_eps=2.159124, average_kbps=0.189319, total_k_processed=4480, kb=10.728516, ev=67, load_average=1.769043" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284335, eps=1.772415, kb=8.823242, ev=55, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=mpool, max_used_interval=12892, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=520" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=520" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=82, cumulative_hits=45771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4787" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.264461, instantaneous_eps=1.643410, average_kbps=0.189409, total_k_processed=4488, kb=8.207031, ev=51, load_average=1.705078" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=51, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - splunk-system-user [15/Sep/2012:22:30:29.494 -0700] ""POST /servicesNS/nobody/ui_examples/saved/searches/Sample%20scheduled%20search/notify?trigger.condition_state=1 HTTP/1.0"" 200 256 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/scheduler.log",scheduler,"09-15-2012 22:30:29.498 INFO SavedSplunker - savedsearch_id=""nobody;ui_examples;Sample scheduled search"", user=""nobody"", app=""ui_examples"", savedsearch_name=""Sample scheduled search"", status=success, digest_mode=1, scheduled_time=1347773400, dispatch_time=1347773429, run_time=0.263, result_count=5, alert_actions="""", sid=""scheduler__nobody_dWlfZXhhbXBsZXM_U2FtcGxlIHNjaGVkdWxlZCBzZWFyY2g_at_1347773400_5d094f1622375e86"", suppressed=0, thread_id=""AlertNotifierWorker-0""" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=521" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=521" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=45849" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4797" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=searchscheduler, dispatched=1, skipped=0, total_lag=29, max_ready=0, max_pending=0, max_lag=29, max_running=0, actions_triggered=0, completed=1, total_runtime=0.263, max_runtime=0.263" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.251102, instantaneous_eps=1.514604, average_kbps=0.189456, total_k_processed=4495, kb=7.791992, ev=47, load_average=1.481934" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/scheduler.log"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""scheduler"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, user=splunk-system-user, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:30:39.075 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.501 INFO Metrics - group=mpool, max_used_interval=12615, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=2, cumulative_hits=296" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=522" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=522" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=99, cumulative_hits=45948" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4820" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.347846, instantaneous_eps=2.191169, average_kbps=0.189630, total_k_processed=4505, kb=10.794922, ev=68, load_average=0.939453" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.280945, eps=1.707823, kb=8.718750, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261687, eps=1.643377, kb=8.121094, ev=51, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:31:17.513 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2958 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=mpool, max_used_interval=13874, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=523" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=103, cumulative_hits=46051" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=17, cumulative_hits=4837" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362707, instantaneous_eps=2.320315, average_kbps=0.189845, total_k_processed=4516, kb=11.254883, ev=72, load_average=1.306641" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032227, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284312, eps=1.772463, kb=8.822266, ev=55, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.535 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.400 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=85, cumulative_hits=46136" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=6, cumulative_hits=4843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.277605, instantaneous_eps=1.749341, average_kbps=0.189935, total_k_processed=4524, kb=8.569336, ev=54, load_average=1.299316" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:32:18.412 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2000 poolsz=10737418240" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=mpool, max_used_interval=12291, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=525" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=525" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=81, cumulative_hits=46217" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4850" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.258340, instantaneous_eps=1.611281, average_kbps=0.190023, total_k_processed=4532, kb=8.016602, ev=50, load_average=1.508789" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251102, eps=1.579056, kb=7.791992, ev=49, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.459 INFO Metrics - group=mpool, max_used_interval=11558, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=526" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=526" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4854" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236367, instantaneous_eps=1.482534, average_kbps=0.190069, total_k_processed=4539, kb=7.333984, ev=46, load_average=1.604004" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=47, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.490 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=527" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46370" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4858" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229703, instantaneous_eps=1.450162, average_kbps=0.190115, total_k_processed=4546, kb=7.127930, ev=45, load_average=1.450195" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.901 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.912 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 36.75 milliseconds to run, 0 bytes read, exited with code 2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=528" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=528" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46446" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4862" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229721, instantaneous_eps=1.450274, average_kbps=0.190161, total_k_processed=4553, kb=7.127930, ev=45, load_average=1.360352" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.550 INFO Metrics - group=mpool, max_used_interval=11881, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=529" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=529" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=46524" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4869" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.243738, instantaneous_eps=1.514608, average_kbps=0.190207, total_k_processed=4560, kb=7.563477, ev=47, load_average=1.221680" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450157, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=48, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=530" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=530" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46601" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4873" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236166, instantaneous_eps=1.482460, average_kbps=0.190253, total_k_processed=4567, kb=7.328125, ev=46, load_average=1.238770" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms -09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0 -09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 -09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:35:21,387 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms -2012-09-15 22:36:36 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms -2012-09-15 22:36:36 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:24,887 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.321 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms -2012-09-15 22:36:36 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:30,164 - admin search index=main" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms -127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms -127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms -127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms -127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688 -127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms -127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms -127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms -127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms -127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms -127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, system total, active_hist_searches=4, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=4, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.487 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565317c433ec70 310ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:45,491 - admin search index=main | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.494 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.617 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.675 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.733 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.790 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 7135 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.811 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1923 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531cf1675b70 26ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.817 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 624 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d162a9d0 33ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.822 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 7959 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d262a470 24ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.828 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2181 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.831 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 8217 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.832 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 882 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.883 -0700] ""POST /en-US/api/search/jobs/1347773730.619/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a230 49ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.886 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3940 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a210 36ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10922 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.926 -0700] ""POST /services/search/jobs/1347773730.619/control HTTP/1.1"" 200 383 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.959 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1932 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f54334670 32ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.961 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1465 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f6433e310 37ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.969 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10238 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f862a510 35ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2190 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10496 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.985 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1723 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.026 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532061de6b90 57ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.034 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653208433b910 42ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.038 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.042 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.049 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 397 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.051 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1071 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320d4334d50 242ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.060 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3942 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320f62a910 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.082 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.083 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.101 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.113 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.126 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 12ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.158 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677850 116ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.159 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1949 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677cd0 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.161 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653229273c790 114ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.185 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565322f4326d10 70ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.207 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2207 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 13ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.216 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 17ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.217 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.219 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.466 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3960 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532774277b10 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.472 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10946 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.487 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327c1de6d10 38ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.489 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d433e6f0 69ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.491 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d2740e10 65ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.501 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532802740290 48ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.517 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.111 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 4073 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565331c4331350 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.116 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.131 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653321273c070 35ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.133 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533224331cd0 65ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.135 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533221672690 67ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.143 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653324432fc10 137ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.145 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533254325c30 64ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.156 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 19ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.157 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.158 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.170 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565332b432f270 75ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.256 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.684 -0700] ""GET /en-US/api/search/jobs/1347773745.621/result?isDownload=true&timeFormat=%25FT%25T.%25Q%25%3Az&maxLines=0&count=0&filename=sample.tutorial4&outputMode=csv&spl_ctrl-limit=unlimited&spl_ctrl-count=10000 HTTP/1.1"" 200 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556546af1e943b0 40ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.690 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=1&output_mode=xml HTTP/1.1"" 200 1055 - - - 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.703 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 6ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.714 -0700] ""GET /servicesNS/admin/search/search/jobs/1347773745.621/results/export?output_mode=csv&f=index&f=host&f=source&f=sourcetype&f=_raw HTTP/1.1"" 200 442032 - - - 634ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055654d6b4325050 9ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.425 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=mpool, max_used_interval=23242, max_used=95646, avg_rsv=251, capacity=268435456, used=1138" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=47, cumulative_hits=438" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=532" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=532" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=214, cumulative_hits=47131" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=295.993347, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=37, cumulative_hits=4968" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.262388, instantaneous_eps=5.957074, average_kbps=0.193592, total_k_processed=4659, kb=38.780273, ev=183, load_average=1.042480" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.262388, eps=5.957074, kb=38.780273, ev=183, avg_age=0.901639, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.054263, eps=4.427115, kb=32.386719, ev=136, avg_age=1.213235, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=1, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.115 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565551d1e942f0 23ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.123 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.134 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:36:35.965 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=mpool, max_used_interval=54719, max_used=95646, avg_rsv=252, capacity=268435456, used=54719" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=3, cumulative_hits=441" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=533" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=533" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=13.472726, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=260.400024, executes=248, cumulative_hits=47379" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=105.671432, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=17.018181, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4991" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.631942, instantaneous_eps=7.030721, average_kbps=0.195419, total_k_processed=4709, kb=50.369141, ev=217, load_average=1.270508" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=4, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.631942, eps=7.030721, kb=50.369141, ev=217, avg_age=46.626728, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.620994, eps=6.933522, kb=50.031250, ev=214, avg_age=47.280374, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=183, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565896b1672ef0 8ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.424 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=mpool, max_used_interval=68161, max_used=95646, avg_rsv=252, capacity=268435456, used=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=6, cumulative_hits=447" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=534" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=92, cumulative_hits=47471" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=11, cumulative_hits=5002" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362699, instantaneous_eps=1.965783, average_kbps=0.195624, total_k_processed=4720, kb=11.254883, ev=61, load_average=1.154297" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.362699, eps=1.965783, kb=11.254883, ev=61, avg_age=0.032787, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292897, eps=1.772427, kb=9.088867, ev=55, avg_age=0.036364, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.114 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565911d1668190 23ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.122 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.132 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.546 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4417 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a38b1672e50 383ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.582 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 15ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.601 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.613 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.825 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 8912 - - - 4ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.834 -0700] ""GET /services/search/jobs/1347773859.646/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21348 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.860 -0700] ""GET /services/search/jobs/1347773859.646/results?count=84&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14687 - - - 7ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.878 -0700] ""POST /services/search/jobs/1347773859.646/control HTTP/1.1"" 200 383 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:40.846 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5005 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a4d81672f70 21ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.029 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6071672850 27ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:42,032 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.035 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 14ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:42,050 ERROR [505565a6071672850] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.062 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6101672ff0 22ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.069 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.079 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 383 - - - 3ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.273 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8461e1e7f0 10ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,276 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.280 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,282 ERROR [505565a8461e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.898 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8e61672c50 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,902 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.906 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,908 ERROR [505565a8e61672c50] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.083 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565aa151e1e7f0 11ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:46,087 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.090 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:46,093 ERROR [505565aa151e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. -Traceback (most recent call last): - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob - job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) - File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch - raise splunk.SearchException, msg['text'] -SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=mpool, max_used_interval=13395, max_used=95646, avg_rsv=252, capacity=268435456, used=2972" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=15, cumulative_hits=462" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=535" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=535" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=127, cumulative_hits=47598" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=41, cumulative_hits=5043" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.575686, instantaneous_eps=3.096366, average_kbps=0.196077, total_k_processed=4737, kb=17.848633, ev=96, load_average=1.330566" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.575686, eps=3.096366, kb=17.848633, ev=96, avg_age=0.906250, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.507179, eps=2.580305, kb=15.724609, ev=80, avg_age=1.087500, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=5, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=realtime_search_data, system total, drop_count=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" -"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:49,866 - admin search index=main | reveres | table index, host, source, sourcetype, _raw" diff --git a/splunk_eventgen/samples/sample.tutorial2 b/splunk_eventgen/samples/sample.tutorial2 deleted file mode 100644 index ca8bd283..00000000 --- a/splunk_eventgen/samples/sample.tutorial2 +++ /dev/null @@ -1,274 +0,0 @@ -Mar 1 00:01:50.575: %SYS-5-CONFIG_I: Configured from console by console -Mar 1 00:01:51.047: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 1 00:01:52.047: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up -Mar 1 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 1 00:04:37.815: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:04:42.135: OSPF: Send with youngest Key 1 -Mar 1 00:04:47.607: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:04:52.071: OSPF: Send with youngest Key 1 -Mar 1 00:04:57.091: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 1 00:05:01.095: OSPF: Send with youngest Key 1 -Mar 5 07:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 5 07:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 5 07:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 5 07:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 7 02:22:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 7 02:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 7 02:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 7 02:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 8 12:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 8 12:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 19:49:00.000: %SYS-6-CLOCKUPDATE: System clock has been updated from 00:05:06 UTC Fri Mar 1 2002 to 19:49:00 UTC Mon Mar 9 2012, configured from console by console. -Mar 9 19:49:00.411: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 9 19:49:04.483: OSPF: Send with youngest Key 1 -Mar 9 19:49:10.395: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 -Mar 9 19:49:13.723: OSPF: Send with youngest Key 1 -Mar 9 19:49:28.407: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x622AC624, alignment 0 -Pool: Processor Free: 21244 Cause: Memory fragmentation -Alternate Pool: None Free: 0 Cause: No Alternate pool - -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x622AC62C 0x622AD9D8 0x622AE560 0x622AFEC4 0x6252CD28 0x6252D120 0x6252E004 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 -Mar 9 19:49:28.407: %SYS-2-CHUNKEXPANDFAIL: Could not expand chunk pool for regex. No memory available -Process= "Chunk Manager", ipl= 4, pid= 1, -Traceback= 0x6144B520 0x60024E24 0x6273BAAC 0x6273BA90 -Mar 9 19:49:28.487: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x62551FB0 0x62552584 0x6252C7CC 0x6252DA78 0x6252E014 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 9 19:49:37.099: %SYS-5-CONFIG_I: Configured from console by console -Mar 9 19:50:30.499: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x6254F9F8, alignment 0 -Pool: Processor Free: 29796 Cause: Memory fragmentation -Alternate Pool: None Free: 0 Cause: No Alternate pool - -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x6254FA00 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 -Mar 9 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 9 19:50:35.303: %SYS-5-CONFIG_I: Configured from console by console -Mar 9 19:51:41.523: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:52:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:52:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:53:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:53:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:54:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:54:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:55:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:55:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:56:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:56:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:57:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:57:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:58:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:58:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 19:59:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 19:59:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 20:00:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 9 20:00:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 9 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 9 20:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 20:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed -Mar 9 21:40:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 9 22:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 9 22:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed -Mar 9 22:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply -Mar 9 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 9 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 9 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 9 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 10 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:03:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:04:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:05:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 00:10:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 10 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 10:40:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 10:50:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 11:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 10 12:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 11 08:13:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:15:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:15:20.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:16:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:17:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 08:18:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 -Mar 11 22:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 11 17:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 12 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 12 15:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 14 05:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 15 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 -Mar 19 20:01:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:01:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:02:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:02:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:03:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:03:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:04:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:04:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 20:05:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired -Mar 19 20:05:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done -Mar 19 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 19 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 19 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 -Mar 19 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 -Mar 20 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 20 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 -Mar 21 08:41:38.199: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:41:47.039: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:47 UTC Wed Mar 21 2012 -Mar 21 08:41:49.451: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:49 UTC Wed Mar 21 2012 -Mar 21 08:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 -Mar 21 08:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 -Mar 21 08:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 -Mar 21 08:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 08:42:38.027: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:38 UTC Wed Mar 21 2012 -Mar 21 08:42:45.115: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:45 UTC Wed Mar 21 2012 -Mar 21 08:42:48.983: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:48 UTC Wed Mar 21 2012 -Mar 21 08:42:55.475: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:55 UTC Wed Mar 21 2012 -Mar 21 08:42:59.747: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:59 UTC Wed Mar 21 2012 -Mar 21 08:46:07.527: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:46:08.923: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:46:09.923: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up -Mar 21 08:46:28.435: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:47:01.147: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Init -Mar 21 08:47:02.203: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:47:21.659: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 21 08:48:46.283: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:48:50.003: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up -Mar 21 08:49:00.575: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 21 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 21 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 21 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 21 08:53:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 21 09:00:54.371: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:02:54.743: %SYS-5-CONFIG_I: Configured from console by cisco on console -Mar 21 09:03:00.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 21 09:03:10.547: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:03:10.915: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:03:59.615: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:03:59.907: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:04.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 21 09:04:05.007: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:05.275: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:25.631: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:26.243: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:31.343: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:31.755: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:06:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 21 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 21 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 21 10:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 -Mar 21 10:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 -Mar 21 10:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 -Mar 21 10:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:43:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:44:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:45:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:46:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:47:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:48:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:49:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:50:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:51:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:52:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:53:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:54:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:55:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:56:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:57:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:58:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 10:59:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:00:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:01:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:02:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:03:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:04:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:05:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:06:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:07:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:08:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:09:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 21 11:10:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 -Mar 22 09:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 -Mar 23 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:51:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:51:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:52:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:52:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:52:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby -Mar 23 08:52:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active -Mar 23 08:53:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak -Mar 23 08:54:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 -Mar 23 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 23 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session -Mar 23 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up -Mar 24 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 24 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). -Mar 26 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). diff --git a/splunk_eventgen/samples/sample.tutorial3 b/splunk_eventgen/samples/sample.tutorial3 deleted file mode 100644 index 0ee0619c..00000000 --- a/splunk_eventgen/samples/sample.tutorial3 +++ /dev/null @@ -1 +0,0 @@ -2012-09-14 16:30:20,072 transType=ReplaceMe transID=000000 transGUID=0A0B0C userName=bob city="City" state=State zip=00000 value=0 diff --git a/splunk_eventgen/samples/sample.tutorial4 b/splunk_eventgen/samples/sample.tutorial4 deleted file mode 100644 index 20f40e7d..00000000 --- a/splunk_eventgen/samples/sample.tutorial4 +++ /dev/null @@ -1,4 +0,0 @@ -index,host,source,sourcetype,_raw -main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:28:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 open" -main,www.splunk.com,/var/log/httpd/access_log,access_custom,"2012-09-14 17:29:11:000 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.12.0.20 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" -main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:30:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 closed" \ No newline at end of file diff --git a/splunk_eventgen/samples/searchArtists.sample b/splunk_eventgen/samples/searchArtists.sample deleted file mode 100644 index 0761bc00..00000000 --- a/splunk_eventgen/samples/searchArtists.sample +++ /dev/null @@ -1,21 +0,0 @@ -Rihanna -Bruno+Mars -LMFAO -Flo+Rida -Katy+Perry -Kanye+West -Adele -David+Guetta -Maroon+5 -T-Pain -Gym+Class+Heroes -Big+Sean -J.Cole -Drake -Toby+Keith -Snoop+Dogg -Foster+The+People -Cobra+Starship -Kelly+Clarkson -Gavin+DeGraw -Luke+Bryan \ No newline at end of file diff --git a/splunk_eventgen/samples/sha1_checksums.sample b/splunk_eventgen/samples/sha1_checksums.sample deleted file mode 100644 index f79c853f..00000000 --- a/splunk_eventgen/samples/sha1_checksums.sample +++ /dev/null @@ -1,1000 +0,0 @@ -8f43e0bac89e62ad971e00963b0272a402419fd2 -d5990ec1660ccf9c43d4e67cbf4ac905ed1f41fd -debbeb03959805463ea63777e4f9457cf925e8fe -7ff82d64bccc5c896d6ea61ea4347bac1a3ea47c -135e485c4635cb2f22d96f7d0d7f77b58bd95d05 -046f14fd4fd13b449f4e0a1bcb57fd308fc1b19f -89e4f285f3d8015664e63d6289142221e06314fe -79f500040ec6555aa948856079f6627ebecc2b70 -ec0e3db341e9636de6274ed0b2fc32de9ad162bb -34e78655c17d87e2e3b5abca3bfdcf389b77d419 -cfdcc8006bdd48cf56ecba0c77b5e8dc14ad2e5d -7d79e4f94538ea319ae0092653cf6d8a777d427d -08ad65558308c762f2782d7179a380040d98b43b -cb8ef13b8d6c09afac0972a903ee5bebeca0ae62 -0dd39fd674706f4aad27181a1e51b79b879847aa -9a1ad1b820919522ca8263721520b7f931b8fe7b -244cc0ba509f0753a16b12d969af8c0ef4b31293 -6e443884b0b07ba53abae72cebc66c444e552d0d -7b91c1a5d2c29a2537a215be91f1b17f7413b3b3 -d03987c966b0a5c045f2dfd9dd6322ad3b0d0d5d -5b2b6ed1591a45a2b3eefa02649a55c8b704595a -cd8e7d0f4aea0154acfeac2e31f6ab8268bad15e -fef8ce08d57ea4570fa052c8bb23f7e357c0ada2 -ed7be8d52be86008f3e8ef29a65db6439fcf0eb7 -25463deebf294f9783bc49a3f40eee11974bdbea -5b9ae9529b3a24962e697949ec0e2f86317f6c15 -1e5fdca95de18cb439df7a0bc47ef1151dd79ef1 -e566cc71ee49042e1466ee991cf09c5ef30314d2 -8d617d0e675bf5e1c14076bc4603393c23fb1912 -a741f7308571e975f0478b7a1879706e4a561e6c -852f36e1468c2efc607e6832eb602d6cfae11141 -11ecaf6c0301ab8151e42f7e5a593c73442922a3 -3c696723e044aee3448825058e515bfd39130e7e -8038a239e8f0919c1ecac3ad9d48ef25315036f7 -4000d274490d909608171ad2cbf563aa498f44ee -7e3967689f66a2030526a0dfe124c3ba51a60a0a -eefb96c42f9f389b4355a61066c91a588b9ecf6f -eafe80fa8bb9d0332e40a4d5e148b8e029ac2d3a -c6e6956149d2fbf73faba54d509d1e2457c44fa0 -f02a338899e6d29de8dc48428aa6d86cb0499dc6 -813b1bd4b8674248668deb50eecfaf424edeec23 -64baaee1853f69e7d72d136de0858073239e978c -d9ca8078d8885eaf233b24dcb78803131a84687b -11b446639ec8b91d1d8dee42168e369abe50d73e -323369d79c1fe0aeb13da93e032a9b9a8eb61e03 -745f7877e88f6ed43688ad8145d5b48595bf52b2 -29bb3e222bae2466e340477d63252e2df8ec71be -f8440d8b4b379d86c1c11dbead8379e67a6866a2 -eb64a44a51fdf790dcf0a8bce63d005897b3e1b0 -f9dfb8b73708c36df76cf4b15cf591c1640fbac1 -fde9cfeb9c70ffae9b8d2e217efc048282d150a9 -dff78cdc36f9a8b10f540420571fa3e37f4b096e -998208107c71cd5930889b0309edb9401efe5567 -f896812812b13bbfd25b1c7e9d424b246eec45d8 -6c23807332aaae8dd0eeb7433e29d80592d8bc67 -b2b897b2b18c8e8dd164aca1e517f3b349266f3c -e4c6648764cab41dcaa054981e2b33ec466d9aac -3b6b16a91a9d4c24294184362caded4161260482 -d8b5e3025347ea6ff9861732924338f5bfddf8ee -15119f0cfa48bb45f1f6112a168c0a12530a597e -c8ea17ace7ba929b110591ef8c5bc62c4cd7f1d3 -23f89e04a4d6f7c46c26e3a7720ad15f3e6efe69 -6252fb60d3797d57ae1a9c69d5be70a3d8fa104a -8336e9b658c57f54da56fd4e36b3a11bac08cb63 -e02715b0b40ac5cb373a61e2968bb1cf7e0db4f4 -eb1f3976b298ed0366931fb8cd496934f3edb46a -fb2801f62a2731c348548d746f197a0505047f45 -855c4464d02b4cc023cc840c388c63e3d868357c -71aafd716684c223d9c7d2bd029ae97acef05585 -335604a88f0649775428e44e27dae6c42b55795d -84548f57569ac73579cf4f93be4322beddaeede6 -4da00f62524a29d536377a101db78fd027131120 -4fc7d1c333ec53005437081e33491f070d3f9a44 -e5ff8f0777969f7c536c856678d24cead1d9cad1 -7f4e00ae9d3e916b1b2116dd9e010e375e61f559 -3a64ed6e45236661edbd4f29e822b4e3463a2361 -63078e26907c7e0bf39caf3b1dbc33e46791c9ac -ce11428e96707ecfe63b5c01adac3429264a70b1 -dfa8427f3dc4a72abbdfb3b01e480916fa7890f5 -694ce787741e6f422b01d29e687a258e92a46ee9 -ecae8a331d7a8b1f83d536444dbde361c54da31d -1b3e887ef869e13e17cfd1f9d382176e815a4921 -41ce8c939dfab847ae11fb67a2766abdfaebb4ca -ced27174ec9520e22d5a7d8cd8d13dda6fbff3fc -6fbe8c8068fce1f7faa7048cf71553ff8818a39e -4a8e24a7e1c20576c87d4c5e6070be73332aba8f -99e811bdadfb0e2ce4f19825f525b6c35d1bc506 -b8db8b2d43689940fd23bf2bae27e40155fdc7d2 -ea7d2ec45b9ba1ddcd8491c67d864970017f0e5c -4afb6238f27c49259b9c3fe94d4bfe46e7981c5c -44dfc1a98af2ca9b01c987c7238e6c9829c0ca79 -7150517ccb77e21b108dd47d749085def371d78d -2884978dd45c124e64033a58eb8a09a159c4f8c5 -c8fd6c6b57bcee96740736e0ccaa2f95b382c590 -8e3314c894189678b461a92b1d634f7375d20382 -c2d818b18452638264eb38f7d9566794084efc98 -507acea6a662d70def1abeb492bc7781f6bd5c30 -3067e11a0decf9e389394b446ce2e11465b73b46 -77825c13fb1fe0ec9da497bd32d1d7d5b9fc1e9c -4dd0ab5cc22dbb7ba80ff5843130764ebc3f4953 -65e4a6169d0d3d9695673eebc90abb55eaf95c8e -6aea9a96e49e6b8a5d22638377fe492c6e6d9014 -54ed81ba14e427a8ff7aba8168a6124abe9ad280 -3bd562c4129c7210b3c3ee52e8b52887d281af0f -88f7cea4edf4a71113c4e53637be8c6c406101e1 -910fa87514244dfeeac94b3771dc9b6e2c442baa -83947fab9bddb434979a81cf7bfc0f1b91c1cf01 -6df00406e815bf118b34e2b20830faf9e9b573ea -773e5b4f3271f97cda1f9969f8dd6d9bb1251f21 -d8f6d7e0b29eb1895434c3fe61f278e12f3f2e30 -cccdd396bf6a6ad0c3921eae99ccdfddb49d71a2 -0f62ff1dc5414e4f7e72605d4f4fb78c195b7506 -45078804a6e5729d3fce86bad2e09f486bb8d922 -4c537ddff9d6fd01fb9ed7d6c67363c7719e81d3 -7981c35772d560e4eaab5bd9ff019dc2675bbf93 -a17d877e92c409baf16383bec5f193e25f9c99cf -de8668b9ca19acbdb47559502eb372fdb6e74519 -ef42fb2683227dc2525215334bb36f9e0a820f6c -b982fad361ff0249be3fd771020b0e26d17ec84c -47532f386b76da71326b5fd0cde8fed00de0df5e -7df732da0d6c1f053d6339fa47859cd4f184cbf5 -7dab3ea7746ecff9cf24eaecfd8e2b8784b36fa4 -444041d27a22117e20120369f1cfcef4aca0b7e3 -dc2bc5f79c88a52c049b2892e5235b9a10783889 -abd0fa7534a994bd8188ca271657684f831f0827 -f3a7c3be7482dafe37c20c4b1e39de8b7a014e66 -20a3ba4d0a4f74ac92ce786662aa804d7a7ee53e -329b5fcde781c4b8b8673d4efeb7d62fa9e6eea9 -c7634078d14b7ba2c6ed05df75840b3af50ecaae -bc845beaeda4c4cbd6ebb73d0fbd7a86686137b2 -b823c619bef218a4f3bd404127748f2256f6dc35 -e60aa47ac79ac2d683251ec4b91e5fc9fd8c9954 -bbb0c88cc607f1cce2a2d4fa11783e317323084b -98da69bc4ac675ca93f942f97693a9f3f1fe9119 -dd51e1c42b9bf4301e7e457f86ee84f56f4e020e -f1226fc18c62d03475b0297efc63823f89159ccf -1202737f4bb24f1002b27b2296cc1f592a14b45a -ef7237cbc6c7bfc16c0ceab13134908a999effed -f0b3be619e2d9d68e05fc16c15abfe88871a035c -6e24917e7715a1759a9f23910596ad5078bc9fa1 -1bd9f10278e871f24c9578426e838614d50f2301 -08743654931b04787f6ba8ff4f5ecec2bdf0f157 -56db6249e148d97e2147d676ba47f03b1deeedaa -78d2a53b72dff2291eaf17382592cdabc5a6d7d8 -6d746643ff20eff7d9aad8dba89a81bcecd090f3 -cc3c5a481258aafb9b8d3b6145c2b04debd532a4 -0b81c6699fd0a0655ae8f1459e66237d0f9be038 -4730f389e62019de95488c28d8c755f11f9bbb99 -c3e0ce4b2de0abeb8648cf154912aae7bf42d8c4 -bb7d3253ac3982c81dac8df293d44485c2b75459 -6d21b614f881d4b15b289847768d1d1f11bd8515 -5d2f9c1fe2119c88a2a44d90c113b9beff5f6496 -9bb5e28ae720e21f3eefb34f74960ba6577180ea -ff991087fb6313d1e1b4be781ae35ac87d796101 -4e438c6e579600dcc42067e23c3778efdca3c6c4 -0c311bfa94f465147c693552e94de28615b9eb18 -980aeb208d9e93a63c1d33ea400bdcc9293498c8 -842d591b38881fc5dcd75445338d6408ddfe4d12 -dea3282c25b5de4cab74793e7fdd31b0495c43dc -3218306b30703ac7968106c64a25ffc51f627a75 -d56ca2edb4df3cf60ab10b346cb25afdd750dea1 -b6b8a83c07cf5a23d570181d9bef184b7b9810fe -ebc7e6f60c43246455410beac016c4108c27d498 -42474a432626c240e80f52d6ff84fc6937156890 -f5dbfb3394680ba54f68765ad5b3e8979660853f -b36b4dc3d5a53832438596ec21a3ff64b15ee855 -a4060e36c6d881def0f855e9a467fefe9a238a86 -e3b0f1ac8c734d1545cac685ed454a4ab7069408 -2e5171e862afd686d9e3d9e8b387cad01ffa9ec1 -b56c6bf91676cf2294a94e8bb9e9b9fc8db539ff -8a36d9bd7d6d3bb10227bc2b12cef43b032dd03e -3f641128a87e46f4fe18ad8ac93eb0405a3ece91 -0e29a268548b1a3c2253be73e261527004f98946 -cfd92aa125380b36e56d2cda3f9d116ddf7c9c61 -17041fa7399d450dc8a3bd10362c0ba4fe46de9a -3e1a47ad15039d9c382c89508121f4c411ec93bc -b9a07505a69721e4a20ad20ec8d58f143226bd36 -86903ad2b03329cd200abb7b5f21813f084ae995 -db1100269fa59df56c331f946452889100fd0f1b -f33f85e8c04c400b1547e11a68dddaf4fea1e8bc -c4c23bddc01fd53f403535c9f88c08218743a516 -cb09982f6579f59d0467e208e6d14ffdadda4fee -58b1cb0e46b5f49e28494f3f0d9e3380cd2773ba -f01dd134139efd23d5eee126f998374c11e9416b -e7143c1cb384ffda7e94d8843352000a9f3771b5 -83c32af057801a7d6129036685159d306cbf6a0d -721c48b7c549bb477dee141286bc40f108f0f1f0 -455f17229f9b46306d784f436e2fd0265f23958a -bc4d2894f8ee8c457b56ef0f72ea8d663e7d9dec -bdb42c5f6e37eebbb04a91dfd49af91b2d5883d0 -42630483ae7d64147a0c819f284624fce8c453df -1df79f087525b50935d6a728e3ba380ac7b5cc8f -56617676a0a6111e910acb8e9fd9ef3e55178d5d -7b66d48661db2cf452f7a78f033c18fc31dc9e96 -5c45bc7e7127b0ccccf2572f6b79c24ca6a88a51 -cfd60c224bb4d14e9539fe993f7cc1e64e4fa5b1 -52bd56e2d935b18dd43ecf8882c5c0c6999b9b7a -2bece31f7e0cffaac62678b98c4c5de1a1b685f1 -8a4d3635bd1a5ee57fc73fed5b75def266ef6d15 -a6c47e51a08f14001346dd3563e11b0fcc40974c -8f083f3e507b817cd45a46788e6cdef759130729 -57cb7b03270450e5c5ae2e239dfc673263b5323f -d253fa85ad2c098dbfa3f7e40fe1ad055e040558 -fd64d55bca1e336b69cbab2cca173bc7c463fb87 -be5ea7619f14c06171ade12858989d0ef526974d -dbdd0206af5fde5d9716151a2513fc4fe86dadba -4519ba2e2742b29b7335ceee4de7f23a3f386a82 -e4ebcfca9d9cc55186bb3946ecf45dc5ad6c6f2f -e0cac937b8a4af5a59c8463ccdc83c85f02e75e5 -0f584b501af1a1d1b83d494df5182bdc8f0a090c -734ce7e53e6bf4e55bec7e5e5fd95ac1806dad72 -7adfab7deb5266ad2b11a75c4bdf520e5a47a80a -1991a9dbf49c5fc4dd4a01f4110b32683270c758 -fde9f109730db49efba744c17dbf77113928c3ab -67cdb7c7ca2053e891d96914057009ef04fedd0d -e5f53780005de2fbd8186914fd9a6c785f114a29 -b205fa7b461e008240f7def1ea2113596a9fdd35 -54f2bff0b90064bf3a0626a1c1d4e1321823dd10 -133d26abac76c2150dbfa916830503a036e00b9d -47e97a08ef89b9028d0aadc0ba44c65cb8e6ccd1 -c62b45680da1cfacdaf83fea284af73f509e68bf -e871eff417cf4120947f0059c31073679351da73 -c32beb7b15b18c8513ff48590f4be352b98eedb0 -5ae9d518dcca4908e5c044dfcf9e95e402a40347 -e1ce99ae4593e81a9df29e4873bf893c3a27ff5c -60a85a10681898ac32fafd9359bcb4c1889e0587 -c862e7f1f77b435d7362147da5e4072977f11d9b -1e540b7f29dc5f50cf076ec871488e803837cc89 -a3476caef8b981156259aaf9390218d28cb6c540 -788fad65622bc3f9ad1f39a05b28b1b4aca5af2d -a43bc6f3b4d5141cca4e97a2984c20893d7f340e -6ab150e47509c93359de7ef7a522f6d9789cbc4e -d34fa0ddb471314e30baf042b8c8560f350f866e -d13af0215d6bbec20310f5331c5a5fcd4e1a7720 -7d4ed057ec238ba3932f296497061493d93ac907 -7f8db1fbf364cf80d4bf85f3cbc706317aed7d7c -07a99de16c26a547a09661e1cc0dcb5de15b63ae -1f39403361d61d6f63669c35d44f54fafd5947a5 -cac63e943650bbc629cfd1a015cee12241d1fa95 -6554e93357e9119de1b5ffa6a341def2c8412670 -a7ad5ec36a37425e4c721e8bb6087b602314432b -b431d6a2db5e79e0c6753d64dd2913d7ffb3ccf7 -63ea4328757c720dbbe5d68dd59f2984404b7c63 -25b3ed62ebe05b4738993e4971538c45ff43bc22 -1fe279e603981b0b2319c606a1886a2a345ae37d -6278bcadc46fdf5bc23ee1f95f71d0912b58aa12 -161c17beae2c4a98804327139c450ade4861d09b -fce9350201e084c400a2ad1b8f44e82007a68ae8 -8ef1c8c10bc6f465eaf1fb031192ca8832dc6fe9 -ca290fdfdbaca08d689d4bc6424cd3adc2d94b83 -b14a748afd708a96baf33f3bdfa0a68a68404cc3 -b355ee59e65e442d5d47e09c4d1a4adbc3eab92a -5a44b2286404537b12b75067303baadeaf58cf6b -042e35c25a23c636342a62904359adf42ee5fa80 -9fcbea49eb08cfdc9252588acaa9e2bb6505761d -df110888a94f9f1d0d3e57dc36d601ff38713d99 -b44dab64e956bcdd6719b085ff97d30044c80f1a -257c3ba27c91ff2961b4b7a8a0974b489ed2df27 -bf1a2e0c49adf023c39b2dc14819faa56e1e6524 -5b37a60dffb97b6bba73fbd61fced418833cd39b -4837d25331e13ff240a939e1b9c867276539214f -b643568f87e0f8af6af7734b750800c4ec69273f -442d5ee582b8bc65e139d9b878fb9a25afd58fb4 -8167eb5d4327454889a642631e462957b0ac6f23 -4fb17f89f0a27586f08ef8a98b83ce4a4b35613f -9c5a4af7870ca4d5f929b581fce0e1537bb4cbe0 -36adad535a80c99e358a13526d86ddfed8ed7c1a -371248997c7188ef9754449dd5f3850fbb6dbc1d -68b63867410c0e3627d65c94c229c1d65dc7b9a3 -09f79d3b0b6d7d20291816be7f75726711112ab6 -d9960959420c70534ccc6073a5e2779003d95834 -9335d7ace2c0a5149049fa742921d2fc8c8933ed -0abbddf2c16dc4e41145cf55dcaccd868e141f91 -58011c9babf5583e5f3f433f1f3ab931d11cfaed -d946a78e9ebda75f655607fe1ee79c8e1e86192f -d2bcb13aaf3437f9dd0ac959b573e6e835374500 -7d78326f226227a0d70c2ff8b922c2a85288ff2e -b8168bcdb73b652d11db9336f988cce5990bc833 -21a289e3406d697b9a6ad3c3d534c7c52049d02e -f53346b3c0802251d69a47ccb485a4cd1a028480 -c840c04109090cebca49e3bd238dc76f42c78033 -460b06fddd834c2b5a577aedecdb55a308b4fa1e -05bdc6bf8c3f02093277f944347133c3cf747040 -3c3b072983bf9e438ce6e4c0d6138262dc9bb998 -e39871bea6fb4e18b480b2a7d63a653bdf391b66 -fb81b20a2a954bb3a11964944aac1f9dfa9698e3 -2677974df51d481c4cab68a37f64354202a61ba7 -5b03e377ea9672b2493e469bc80bcc8cca23fa03 -9a08799cc14ddee16307a4074eb99e81161d98b1 -4da2022083388dec61b6d17bd955fd4989a73117 -5ab460b0f72ac9b12fc843c8d51b21c8749c2d9a -3e232422ceff6f5df0760f82242fd009939d4732 -eae0620ab4fa01e71c59e25562cad00a8f0ef394 -3056d58984623068272ecfe6a675941e13918369 -1d5905d4924f318070c590334da1321d9679a703 -69ef69bdb32cb9608e8a83e0fe93061ab19445fd -2550a27f3f90f2ccc25bb6d1db039c5e5e4317b7 -d71e2498ccd66f8e6f27ec47a78edfd19ada67a9 -d1cbd58629769474c66c4fd1218c02a7f0108bd1 -6f63b646a54e4fd99dc829f5c59e9cef765a7d90 -eb971dfbce994b1d5059c50cba8075b0d7b5a704 -b49b722fb3362d92a660383d05188e2ea6cd2c47 -a406567b826e1556d3c9fdebc4d8f5251431accd -ef237e681704f38a5bd4bcd9d1fd56eb99e8b718 -15bf15308b7b914bc06d36a7219149e53b34882c -0284399fcc478d4f94eef5940cbef172dedbd0b7 -e0b032f0a76945a39144744b715be6574b1f64c2 -f040464bd0687d9fa3d5cefab95584a564973d9f -73ffa728648ac4b2e0dedb0f62a09699434e5d0e -6f2d810709155bf8b085c23de5f128ce3daef428 -86ccedca76193425f1dbc0ee5fa2400867351ca5 -fd2de60a6813877298ef9f84edf48ce3cdef51d6 -15711b4a1e3dda8256101f826fecb7c018d1c825 -d871755ffff5425b343d8bde03345cd5863b6cb6 -2cf2eeba7b6c38b2f69bec30f5a6f8f4206a9ac1 -ae711b2c3740b25271c6e2f6e052147a59a6f02e -8e7d8848bbf34dad445e513770e144e22ac2181f -be375c3174303f7fd178ce0db0197ec9531e7a2b -0bd59a38e0008e62a957a7e5e37ada9fbedbe32e -43a95ebdbfae7ce5e776e0b3547438a39333aca1 -bbdba347dd84b910d13b0b10d60c939fbeef9d39 -0a4b1f129d141eff16386a7f50d30aa861305620 -0368d941fc4cb318a31507f6cfa8372c6c1f11b6 -2ca850e9729d1c09889ca5bb15fc116a13d4b5c3 -ca4cb5862bbb9608c144ec8708ecef6d7dd4b873 -f75d04f53d0fce8987742753f7634fafb71094c6 -e46f410405c31d0843e654b945e66f864a20e42b -e0cce19c892925132c82c2f1ad81477b5d08ff0b -8e3d68bd95c27a50c6cd02fad9352373b3fd7246 -5e848e99955fbb4ec297854d88aca8b925e22cd0 -8e0d39be69d2940633745ed970e03dd6218a5eb3 -efcc936fe9e6129defee9358903c4db313f4b780 -976055fb24b3079ea56d0e5eb2507a812a4f063c -47bd2bc5172cd9224d266afaceea785772973baf -bbe71c36d810e0ee70d7486c035ee0cd8b27fd0b -cd1890db1bc46df64fdf02eba150c0d195b93b4c -679e4d3837778ebdbcbfcfdd84e9b3dec68ae4b3 -43c80c79f53ab43bcbd3c70cc0d890412ab1b345 -131855a69b35df1b0910cec9e8411f8fec240189 -f9cb18c98af61685ac34e65c30efe8a7d9a33848 -edc757058f61ac774a8e1e12955c470037fb7bf7 -40f80fe783b90fd64c1b248646a9f14c5b25183c -1f4b244806e2518c805d5782a84a5849bf7f136a -b7e7b76aa9830a74f16bfbf992e0d5a2ef474170 -8551960ec5f098a4f4d4cc064d1765e8e6772aa4 -f5c7fb2141f5a9a0484557064d2f48b62a72735b -155a44113dd14630d2b5e230cbc76e3ad7df6bc4 -ca3113e3ee36e73873a499ee6207accc88af0629 -f95e804087830b0f9f9e64277dd6c5196a0237ea -dea6ff22e709c971f120bc3f8b962363e1bf26fd -845e3b0070e97ee8c805d27c19ce99022573f6a3 -da77608ca01951ed15f6b81921bc95e993be5bb6 -d0763e4b3f350575e5ec1a76ffc5a6d036d769a5 -bd904b4532a63c1d7d850058aa33f9d9c921033e -f55eb4c26ed71e6415243b95d48db479a0597324 -0af1cd007a9fc76d87ab94f202bcfc3a9afbb787 -d594b7c6326adb0539b7318fa3b9ba4230c69991 -e364cbac30c0259c910041f958ed5c2189a3577b -500be5e425935c76bf87f5edb8c3fb65538fecc8 -fafb3acfe68ac4ec87ead21ffb8648225b21d1fd -37662cbdafc9a71690c341fe8ed4b7ccd430429e -2b00739491c584c2be0a3c54cc19f118dacba6de -0b03073a5742fa2d45172febaecc0e47840db8af -30d48df9b68163bed0815c7b62f32e606031324c -f92307ee6f485353bd6ba9f9ef395fa2340a3fb4 -caf4265c45a13d2f7d15226c71c62e4660c48248 -7b462084919b9e1db70417707a8fb785a43e2067 -0e151ddd2f046793ff1ba4ed0e1d2c031f53783f -59e6d3c78cbfbe94dc65f0ff523546873e34fd25 -d3f108bead61024a4a631371ef12286129625b0d -ed70b8354692b68b4fd42f1aabb91d53c4d4c324 -e515b0f7d31893b068541d0bf0b5cd4a4dac057d -aa98b2122466afd27d0a9e0c70f282be56761e13 -032a990935cc1769eadb8422ec5776253b643e30 -64609804acb5914b509851714e7c651128ab2c15 -47b837abd56108db2124bf7a6086ec5deac5830f -828f89f64391f9499a131717ef48384242bbc7fd -496d0e0add9ca578a9e3209be1a96a78292a67a3 -38eca61281c5d787cd0e2ab040d454b559039666 -667c0618ea2b7109b7063041ae4dd718c85067eb -d11a12307d87a3c04073e87404b6e4555d2df921 -a561ff0d076adf82f939158b07ccabfc8700ffdb -8fbbc916d909c2b00f48e2cdcbf51976198015b2 -85bb67563172ac0c3340eb3feebaafbe347eb40d -4e198f792afa95edb2a55d9b287c2cc7bb499fa1 -18b42acc4c494a554513c91791de48c875583490 -414f362fe87453e94d7b9b861932d826d3dc693c -beea9c7dc1d9eb2e970bcf64ae9f95b350da8508 -3b4421830e121ac0a8d3c0419dfc3dfc73ba5b5e -54018a72e3f6b193e8fc24cd1140c1bec20cee39 -c15fbcfc07db9f3c93cea58d61e6e4138ad14ab5 -ad6536d89a6e44184a01c8757a0739662398e224 -9869177322e7acced78073e23d11746fea136d79 -f57a07d3f2b0f8e43611031bb861fa0f936bc65e -4890006c2033aaf2a22c7e1cfec035c3d6a6b0c5 -a7e24cd38d6d83fd9f9c1f757e30afceee989542 -ece5445fe303bd6dec379c700e51a20f6907ea4d -7139fa93805a085b08e23c17d867c2ac8b14d7f2 -ed613ae198f098e427ccebc1494e321fc3f5d590 -3cc26ca51d51bda6eaf02dd18d126b82d1f8251b -fe638266c42c704c1eb4866a38d0c56164a11b74 -aa78bec2242a877e3656a211904ed1cba3b8106e -82d43b0fbe8d0b1a6ab4a872db6c5746c7c73a05 -b7e52f3c378dec4e0e05cba7df85edbbeee442f7 -698670a36233aaa93d45e824de736182dd9d894b -178ffa6947290e9fa8fa0398568178fd010db71b -2f4a9a0422d6a9ec726bc937cdc9dee3ff4c8a68 -6f489b6e205d82b96448a43068a2ee02e1840acc -b1b2b0cc90712ef1a399c8a668eef52d0a500546 -ba160026ebaaeefaa717c6734c799efbda94201e -fc7bdf99eb5a7e94c10f1fcce9ecc203ea6e1c81 -98cb30738ce6aeb24fe1b6cf4468a2b6fb6cadda -91ad298a1dac5551f62b296980f16f39d1684401 -0ec7ee885a7bb05d782652d4cf7a8993aaf613aa -ac92c622d613d0bfa6d1e04d631f4e929383afd0 -65628345ec92dc55aca858e7b645d32ec81d3e6e -81bef11ebe58987ba694e3c613ef4ad1623093a7 -12b8a8610123c3ab4482011773e6eefa4681fa57 -04965c0a15abded3dd29150b03b580bda11e62ba -423e69e2b0519a16944decda74d11ecbcf5e1ce9 -bc39619d8aaa3c4964f3548c2e28b10d718d98b2 -6981b8da8a769ca57b9d657a64aac1e9aa2d35bb -c5b5fcbc0dcba6c13cc77a5110ae40829bfdd66a -30a1e1dc1b9c35b600d1c2968a7da210f0bc1a3f -0652ccb29ae17a29cb642e184cbbc3791530bcb3 -a913fc5e5633fd0a6037ff7d40f831f66ac83483 -68a7fafcbf055b92a1464819ac393725a7b5efa4 -cd1184c753ec41fbf88d2688df3d29b79231c857 -16c1f154ed36f48c7ba8e264dfce5af71d6e1ea1 -aa8145bf9bf8114c9528c309f573eb44d7450d3a -5cfe7c6bf6eb9baaeb1258d3ba09fd06724615d4 -3dced74f740952c8e5f8d9a3f44cd5ae8c8b8fcc -434caf4e0832c798a5a46e949aa04954b79c0d74 -9c9a1935d2c07c4d1ced89640326cfdd2a5b38a8 -1de2fc199e9a2cc64808b28c3ab136b376bc8849 -53cb2e18852c90d2f572a0c8065c5ec0e491af5d -80f6790d17bdbfbe6100405e4ca282231bc129ec -bd630343acda3b8254825893d43bf540c25ff65b -dcbe57e48939c945ad5a30b541aec050acb4cf34 -eb1bfd41af5ac50dbb1e7f8b617243bd9ee1eff7 -d98ca8b2e07ac1d67499d5a987ff35a0b68ce453 -11f317b0d235365fe466669b193c300938a9a0a7 -b0f55b1709346729aeea7adce0da1c1bcb218a27 -2744537a0fd616479a6f22b9adae6ae8cda8896d -98ce92ee23af518cb983dad79b7e5332217f1db2 -ef8e28bdeae9bd1378b29848c4b4607a40443ca6 -50e064e3979e39384e5ebbfca8ac0407723e59bb -d86af34d5b15a0904549fadcb1eafcbb043b0d6d -58c4d797e8a33222fe9599f36b2d066116d09f2f -bf275d3d18154c19c8838fdea574de696e67620e -7089d0b49dec804ede626129460c0560fff8f5ad -4a962febc4362f259d4f48528917f29e0f2ec997 -6f5c55119bc985b8801288c8c26cc9611b39f010 -5a327575d2ad37e56a10f097046dde853e6aa2cd -db125de3a6a5c0ca6c4663e947920f7129ed7c18 -0aedc6bc13c891cef40fb655d4187473ab737279 -facd5540dedc301a2594ac024863496696d499bc -8e88327fc4811bad3b220b28ba44321b707881ef -297924142683e37c0451597f81051df85cbd1d2c -f87a6f254359f4330c5de5b96c477ca38fc95ea9 -254993dac988e11231b1195146af41208916c690 -1c42d0f0dbc82cdd6bf922991bb573acd3275025 -b1c19d59ad0ab844f5174d847705d088f774a83a -a4ab98c6bfe2f453e406192980c6a16fc760085e -f44027b2b3d40d50f64a2009f9676dc2f9213f54 -2494aa2253aae1674e536ec007d4da8b8fa8359c -8df626a56640082f633dbc0edb32d1a3a087e451 -256b47cd5cfb1e1de06dee97293f2d1f2be5fd56 -d0a04fac342eb0c67f8e5bddaa5a4f97f904c765 -4d3ad85a319f527183ea4ccaff4fbac95c48e4a0 -de6025ae924a8a657bc9477e71c1b183131f7b49 -97daa03d4ed01ccf137d3c5c94b0d1660955f5e2 -4e2316b741ea9cceb84d2b18c3a914d5e1d0a2af -50de82d8f7e5e3cdcc98f3f0773b0b2ab6578253 -bce847a7f327bb10c4e8fb49a2e0fe760fed5714 -ff64cf4c6ceb51aa3fbd8310f9510cc3f3f16054 -f091d5439a0dd78b52959aa2beec5a7a11047c87 -c68f439b7c87d22e6a9f919d33bec571b542d878 -35e95a468e6d59278def89608a323239a7c2a31e -9e00415d17b4478ccfca4278d85001153360ad8c -c0428bdd9987d5b1457abd101bf0e60970fb532f -18c85efc7837fcd4447d32e6543e8fd96c18f872 -04551e68c319e66b32881395b72c712b3d895faa -64aa0443dae19d8d274121985acda48bb5b13b93 -c9537cec5630955f1f4d99f527be3f883fad0d26 -6c5a56fb95f508623acbb3d772148b724b578387 -fc0eb197e2701f931c24d3234ef7930e81c3f3ee -a144be04d0eaa98cab2f9ce2c1f3ff2986db7156 -e2b1a872cc8363b427577df27c351ace34bcf3e6 -58e7ab7380d4bd324ee3663b7fc9042b98038673 -351706f54fde077f05d439ea97bec3de199e09ba -149cc8db6d46890caf8ef634214ff59cbb8f8d97 -fa5768b69093bacfef294e2e869588b31a4c3ecd -a1bf1a8f5a4f56bfd29b40fa60f5418ea42a76e9 -b426368e3c63f6242b10794b98ffacf9a931f9b9 -6c77b1356eca816e566b94a278241041c20470ba -1cefbe3582c247e5d99f6cf517e8099967c8a6ea -5c69740109e85724f539b7e12935961891c65a30 -9810518ccf0a3c47217f6601ab1dea5389951898 -74e23d46532fc6844325cdfc1de340d11882f88e -d5d072bbde1fd07d9d53d5f9758504a4ac99b5f0 -68463d6ee6e7ad3dfce164f2e09d5e68926a4b6c -0760a3be41e252ade9edde0bea93edffaf692344 -0611ee3721e0f1f6d46ecdfe5069fabaea47a272 -1e5d806dfc8d1cbdb2fa8c3c5ca5e2d6e29db365 -3cabe15632c4254333d54a0c2682c67e855d9fe0 -194720840afcba4655dc8c94fddb0f817e0ff356 -48d9c8852d93dff7da345ae92b4fc273282d0fb0 -e7aee25c66a5ca0113acd83746d6312c16978a58 -3ec2e929d7a7b89672898038afc81564fa26aa4a -58d1d761f8164dd59e7afa047d910126169427e5 -9e6876369694fefdffe353005ba07c9aeb3210a4 -3f18ce1042bfa4813c502277727620f5e7c1b5b9 -2e63025a5940b045948f908297697c7f1527ff35 -50a8f64d5971be72c20aff88cec4c3f4d33bfae4 -c050418bc7a706f5ec32e3185aeb12c8dd294604 -996fe73b49d602d0fa1542f34a0a6264179fa155 -89d7985ae6fdecb08b5d7b34c1a81fdba080b2bf -9f5481748584fc6a0206bdb5c4355da87b5875c8 -0cda53bfac6a4e67691cc10e359175babcc0ee72 -9d5cd7527e2aa1a02bc8c40de740919ce7f13b7b -9a6876d2c67a1f2d51b4325580b7d76e079f6f1f -de8005ff7a1a4f65baef21f5945c01934c1752c7 -312ff5d32d9d8e92700ca438a623c9bdfe9f9573 -d73ed59a4039629b3f0e31c1fab4a6b8508d72d0 -270b04ba86d9a7daf626c6d59b23f632268aec60 -da63e706176284b5509ec8d9ce56578e5118075d -8ea7cb6c06ba53a13b5b342bd90222ef58fde5d1 -45e30c1f1c71ae6f1c3954f3c3e3558b534117fa -5c57ce6e79001b4ff444140751fa28f36a206adf -ae377f98078d0aaa53d31ff07844e4159195a6bd -fa7848f24b9383f2b32acda473decf9b8a36e314 -279d11183bfb50566064eb5db08d69198a89f9a6 -4cceef250aab38fa6f08c9427bf3d7ed7be5bd22 -79d28966c37434ca5dbdf46af8b3b6b1918b43cb -ec5cf7def10c51865a598a32cf7567ec50b501a3 -45cf07da481589fbde460575a00863f5e4783e9c -cef0040eb2704f2065135d12a2373b0aa58ff6c7 -4f9bf3f2eec88946bc503b4e7fbcddf6a316d062 -d8683d24cda3bacb42746d6bdcd2b27571bc4134 -be932506129939607372412af984eac65ed8594c -647ced600e8ec3de150f7927d37f4a1366eb467f -9e1fd503480117fbd39db138496735bc3fc7e25f -ab84175ce8e0c77118ad94e09352f2262008df73 -5e75b71198f02b447c5fc1676a659227a882d689 -ffe847e1f105b95a1ee6107bbd3c1098bc6652eb -4eccb54368b420216f1286d273322fe840411025 -f191c46147f1b4b0cd97b4feba3aa63fd1f733b5 -637de03c36c28c6a90b5f8a94f6644348cd5526e -8f55d67011877242670b36a902668394d4aeedd7 -1b6e3e82e8f9b536e313620bf9fb099227977e44 -14b9b31a0d72fbecdf56600719a071257d8ae925 -54f40dac31b93220807b2c3208fb428e642572a7 -e8c5bd44ef6d92bf9df8b1396fc9841ee0e16553 -cbef753dc615fd59dd7da017444c1e3719a0208b -0677a6e7ac8e8ca2e5a55241fbfaf2762265790d -479df35be1bf5d7c3a841910b7905e1645858623 -947c3de4861743223fa83cfd99e8a00ee58e82ef -56afad5bb7b5342e65d2d84fa2a5eb0a8b7c81b7 -8c10c102695d5e6c5e0db10c72210a05dd308982 -d436a04d4636bc92a8a30fa01113c671099cc0f8 -9f1d42fd65f47a62829cb0ed7b98216ffbff5da3 -0e2b63b11e7fe156374074b1c760d23340857f30 -de0ced8b3d36ddd1b36ca0beee51a7ad1b5cb190 -d11e7178fa97742c2afc8502eca023c8cbbeb2f3 -6d3fbf7ccb1ca062f958f7d237081c80f69744b6 -e5a1f108704284670be96a31ec70a48f8d8f65ac -9c798e4a40596f093475d02b12d58657c72b233c -d76857ce9a9d0ec9eb7b8e8a446515a7583e1b3b -f9f2a592724a41b10bce58739b52131d4d674803 -218b5dc556736950e40490d3ee6d550b780094b4 -d5cb083d1aa6fa2699aa38a215ceeb8102040d7c -e08f4873c83e54409690f05672830b220a4acdb7 -05a71547fdce0e0e32b166843f575b427f518e13 -224c8c299c5b520b9c87dd00687a8b103bff431e -07f6073783804eececeed66a025ed5163e319e5a -0616b273d98b6b7a5cf573baa816bc5b4c131b87 -12f2db24512e450f4e87ccb03c965c61f5abfcf7 -adee26fc3c0b5526204a209f60c04932882f1fc2 -1cb36ce34d895767a6dcfe41f017166ec0f9f855 -6377404cad7bb8af9ee34ceeeb78a7dacce95e9f -47d69950b9ceae9ded78bac4562c1599443b1b46 -643e8f217206bc2ddaa7a2cb2c03545b9780d36b -ab3accb0686750fc1b2d8ee28fd058b536bba4bf -794c310c1c1aabaef0464793c977061d6a1f4731 -4d862111c9b8648c4ebd74d9a7794780d1f42851 -c5d4d9ed99a011f5176e59bdd0a6d1742ce8fed8 -dbe85e6b3435574a0ed0a0090aa88fbe52eb2093 -0936b6d135594e94ffb695c91ea1e5ad43a27d23 -715940d21e2ae7e41f06806d4f83072d6624a107 -a3cb1088cc64d3f9794679a78bd753d7b8219f80 -4326bba7874a688a1275dc248c5a610c725ac4bd -a703385d8a8e52ef12eca30dd3228c81689eb8c8 -c868b823c728c8d41260a07b0acab5087fd9044f -01f1643ee2fb042026d155e3dd2558501abcd802 -45c549e21be00401a674066086c74f88358cfb96 -3927415715ca6a162e89b478914156f761086652 -d06836512877077939266d16e82617c6404e7dad -2f27b138d1ee8049279c25eeacfb958d6b8e64ed -98f0c3b29b2d4dd0aeb69b9cedf062a77a15d207 -e08f92f2fb1ee5e565571e29eb60d3982b8ec17c -e5f7318c47698e3fcef72bd25ffcdaf502bb719a -53dc3a8dacf91d92b112b72b698ee5d7309974b9 -5d2279bcc8c1ad8453dbca7e502e5794fa17f555 -c4066c76b6c82a006d10b10a4f00b9d8753c9c4e -fdb3b98e73e17e98e69b5ca27bc579c7eaf2a0a3 -49b54dbd5edc9ab4f8f751c8e9d8297e53c56375 -c147129f11f46921dc0751872a12660c25504942 -18395b3bca008ad13733e6df91acefe6fbd4cd21 -d3bcf7302a51c1e5000fd0f72d4f8ad5f230f909 -c655239b49957384953811ae707b9add4123d7c6 -a448b669940fb9d5cbb99f4b828f7dc6b2d14fcc -b584c9710d5c3ba96adfceeda4487eb58c5d85ba -86480e345f50a132b774033f5c14b4fbccbb7c71 -e2e1b2ad5bcda9faa47ad00bf32aabc403d616d5 -a47114c7556e7e73f6944a26b3ce6e50491cccf7 -03e67583de0a0b3adb0269bde1746bfcee599185 -2d9035d81ce9f7d59722bf9b5b41748efd56c3c1 -8bc45e41acdeda13ac44295f84927374a21229b6 -c6092e45eef3577aa87b8ac4b7e6b39bf07964a3 -67740262f2abe5e9e75cfb32c2a640e88143caf0 -6f70e93f46bdcaf82c0cf52cfae9b61b6205646d -a4131f1a99d8a257787a401aac53818dc9d6f89e -994d54fee264f5a15ecf690448d90a75b5e330a8 -f1941dbd08077b4511604ca4f3ee8622cbc3c4b1 -171194436de640b6570106c6e316506d328640b9 -b55d2513b7ddf5a25bdd2173e1e469bc7ec610e8 -a76a666595787280d2d7707f2609cd87df490b80 -da9cc1f16e9776634987361e94d476efd9825fdb -9dc8b4afa944812a2a47a414b6c4d67f9f52347e -2710171bb91691cd611ef4f2fa10d83305bb0115 -48a36b26deb226baebfa9ad6b108745cb3a5e9a7 -5d8fa0ee9456d9b8db8a423d5babb81a184ba6e8 -1003042311c4c5de6056abef616ea968ff839ae2 -2a9e13c05d8c7c3e21adb348baaae74b52c4029b -89f6fb91d89e33abae20f1e43fe0caa0152e651a -c9804a0f84d3e770fde3414a3a1958bfbc5d63cd -24ac1782cd4c51cf6feea6dcd49bea791d20b246 -b25fc6be2f56569c0d054ca786eb6be7bbfd0b4e -9649c0e835d3d57c3d646950ffe98d888a3d6629 -f9acdc7c243891ea549e2ea9424f10635cdbc61c -1c655721d09d9a5063a0e794f78e7d325c4619d2 -44eca901d337c56cacade83dd20cc99b48dbb15f -7c257e0ca7d95bc0519d052f7366c6e195736acd -5b2fd02ac7e6678724229436b7e38379d061d3a3 -e02469c669e2538c91553ff00af93e8b68a2d4fb -e2ce2868541b5619ace23f0b2039f91523fc4599 -96355028158cf9b5814c4caa614b7857e572a051 -2abf9000b65b20c09e37bd5ec225447b37cc32a4 -2f2e5528011a5fdddfc194da008b591b63e21191 -9815b6dd21a635fbafbc6a737a9b6cf0bdc981a3 -918be8a89d667f17a3956f5cb6c5f9517bf47b13 -1b18252107675b00ce034beddee74fa2a15969d3 -e0256a2c86d9ca20d3474bdeae12a33887270754 -2b366ab561d3baa75daf68ec1fdd12812858e426 -bcb23258538636d5d1668484833411ef17210cb7 -2bcc6e04c2bd89ac2d0a662edd99883810521074 -19f4dabeccb28c609d64055634e10c2a9b2596a1 -4932b2b65a725eb56ef8d40219c061c178496250 -9dd0cd225dbc654cb2e85fde7cc26c751cfc0a66 -4158cdc3c32f0c18910640559c3fc85e738c0533 -4fa80cc2fd942b9fb2bb63d4dd525e8d4da51e27 -7b10b39ada3befb1c397a07cb0aafda07960d3ce -671830a1f0764d26ef2ed99c925a73a2e7399fae -1deace23c02bea665ce3535e6269f89a0a1378e9 -ad3b61c096905f42d3bc83e77268075de54914aa -6fd536dce54a08007ff110d7916e8c379f8013c5 -23f534167393770cc33b81e09266e85dd2e5b05d -80c0652a57712325859a9389d1149a288769257c -a67091a0baf75fe9db27676430e722eed5156bf0 -f8c2fd1a45447d576642b41aab6f71d3576955e1 -82e90f5e923a11843c69c65cfddbd107e2251c02 -68bcce0060bac06a73d78dfe37fa5857c0a947e5 -3e035e7a26e64ddd4600fc383666a4d194f8c103 -a882b7c8b186b1a637a14303c6154040d2ac0463 -f20e44a97e6e4d8c6b8870808d49336a491669ee -0e120fe943db8d6eeca347e66361b966fae2c52f -c2eb8591123a05c6c3bbf3c0439ecbeeec03d23a -0f9f8e5a5a6149d2e888091d338ace360b08da5a -572a0bc4491bd05b07765ab4ba8dfe878ab16b02 -46b7b907968bd74024a23a872d258c4ab1159da8 -117f764eda7e4d2970c436d4eec7f4cab77b42ea -4d8e5c50f5c491a4a4a596dea84dd3cebbda9fde -8bae6ec37fb25cfd49eae64d3f346100316401db -0d8b5cb1a5b1c668cdacbdf71f3dd3c5c4273075 -4c278803e4d9788c2e08e57a4d944e0e45216d18 -ee3711f054b261c98d4820d6bd0096316be52243 -0846ea8577df75ad007ac123068e3e784865b659 -de4e48e37e99901816a96022a590c9435631420f -eca59fababcfc909813dfe68dab5705c7dc2a422 -c0641d5434dd1719206c257b43fe7475b6e11c00 -605b8ffa176e8337f47a131b7fd247d64a9304c3 -3ac1c90c574b87032de4913b7069e56527e9ac1c -8a20a7a574999f13c272aeff2f5cccef17801b6f -4963a1d62d8dcb6d0b3b9c2c27d6b77018294719 -78988d252bb6627608a87b51e08c7b073c047d4d -61fbfcd8b72a590f79247e90305d34a7db7792a1 -e5839e212faab84f05649652c2a767c2e5786845 -1179f748ac0d033d046e7a301a17258f49abb69e -84db5c8b71bce2bc1c86c26b4962c3babb2ff05e -1728a9fdbe6d62d375408f593f0ecba1dd48518a -cd5c1fbc82e4c9b1e484c9d3a52e949441d0e53e -c73c1e2cecbca9e544f8dde26ce0007755cdfb66 -0b371f11a28697670a48f32355ae54718eb02f71 -85726d15f2e2c62a879cfcd11fb1597a76a6892c -7e2b9cc47b641de67119392dc3c0d7dbda14edd2 -aaa58b0061c39acd1bac200a60b8b137841b0001 -9816ef3a8c7f81b2ad4f472fb15c796f0cb38c66 -9aac0c256878c206b2cb14aca9990bcf84d02082 -95e3e78f3026b558af059fa84d98462e1de0b500 -efd7699e848a31ee8111ad8ddb793b69fb0995b3 -63c67785035a7c6f5b6d55bc6178e24580389fda -836622a7330dba6a0da6723988b9e7c88e99df2c -a8ad6f41f3ef887b4ac94d8255a808623fb10d83 -1bebab793b3e4a673112962d6d7cb2fb8b7c5efc -5c1d6659d7e38d3b4a6a7f959270440f6cc50240 -2a73e25c86083f9191528d4a763886ac10516748 -283d1998cbe503e58eddbafd562fa3d4a7136712 -4e9bb9b0a461dd8a9fc9bb0696527da9d4df6e12 -0b67cfd7f959e7413fa6c0f807f4470f120dcda2 -1aa2fa29ef0f06fa7911ff3d5e0e1fcaf4293d01 -fed41f6cbbe1b7c4e267f296b9c826cbc104eb87 -ad49fdc34d6134b7c018d7ba5632fe537bf210d4 -c23aefd1c32208a456e2d1520efc189ba7e64ab8 -24a5c61ae5d81dc9eb49253b6e01a1082dae877e -de2015557d9f940913441be0acd3d56f4dca7625 -a007048f449d3d84fb63ac884353335afaec64b2 -bfd49dcb4c10ad5c2c07ff52d62174a1f3f94f52 -85ff8b8718e4f853b5f037c3c02a2a24d3902eb5 -5db0878296645ef9479c20a80ef9149ef4038977 -247ce34ef0ca21cf63302d3ef7f465b0a941cf78 -f2150d09b5b0f9e32bb30f9cdcd273f6f36c1ab8 -e1c0a6d93cf9c4ab400bd7b45dcb79fb6f37e6c9 -b1fd46c2341f592a5ca7ce0ace524626c5a9fab8 -94258743828143cfc92c8399ce0bad52da08bb0a -41d75a50c552f3fd79d2f1148a7ee91a3aa9721c -07af0f058e33d3603f14d64f77e23bc8db26f112 -34b18e6530ed832f0d26a62cf5b2d15576543de4 -0b3e2ca9b8a7badc3f26d2e885fe9041eca99395 -5af42e1dfff690931957622d428d96017c843678 -d1baaa60a13c369aae738dae53defa3785a6c711 -f60b77e2c9527bba80017f66082f24cf256eb3da -6a2a7d0dae9b2900dfe44a0c682fa9ecbb130409 -1d9a6995ffa7fc9029cb8c3230f6dda8849b4e6d -23a0964044daac7200d93511a40be0fa648924bb -ad62ab3d638ed52b0d0138f2d78d7bc3dfa2bf62 -38f72f576c0f005b1f8712fc9770f328e76779f7 -047cc1dff6f7ab024a7a01b0f348ba4d56587ae1 -e5cbf7b0aa68ab41e82218de1284f80f074992ea -66a221ab71a731ad4c2c478bbeacde4b7fa2ea0f -bdeee0a178760bfc86e1fd7d4594cdc40c9be300 -96225e72ad49e26b62492933742edabf265d8cb8 -7fbf047718c84aece38b1fe8c4d187c411742700 -fb76fbcf4a377bc3b0048f3575ae7727b61d3c1e -68af9ca915026ba27c06fb09177d9724690d2439 -eb9874ae4fc5eb458a3c90a33aed04007a93408a -73f57bb7982e0f63a9e49d73bb722fb77b129a00 -bea5e7081049bdd8417ef8a95105b3f07eb1698c -b232eb6fb86204143afb560c8bf19b32cf7634cf -3509915cf54053abce78de68f29066db39d53a64 -7b29c231b754dd692f3fec1fcb2a84d820379ebd -ed10b9e64b7146fd266c8f081308aae5231ba809 -53af246217a52b43a09163a28b57a343d3fc9754 -1b66d8bf25e0e6311d54549167448f93a30853fa -0b9c392cdcb2fd94d0758717a979675e2d6fa658 -fd75eef7ffb81af96f07fe03f3b7074a7a2352ef -8c655c4e6f11973f7087c9a46983eaaf9dfcbef3 -14f474b84b249d35cc16c7dad7bce3780f724002 -0bcb0fa1f81b086b45f38cf0a277aaf58b9f4467 -aaad0d9bbff20bb2660311bb6f8f16fdec905d6e -24211c071be5a4ac13bf10aaeb9f72ba7a02bba1 -2bcfd1491f904b10b78e4c41b4abb29d85b90020 -c99df5ab7d1b0753b1f73233f39bcb0813b5de0f -11ede745157b5f3754b1b3290421a93d51478b93 -df60e035cd72e5aaafdebcbf1b6d48bddc5df3d0 -dbd43fbcc41e46b96cd8a2b3b4743155d7f33fab -241c9246e49d899bbab6932aad4a6caa48a53c12 -fc73a0202dcbcda51aa92101b7d851c45db4a4c4 -b6f6eb90d7907f73a65931ea291b423cfa30b64a -a089a2a76fab50019a25001a56d48023f8094b81 -040f5b27354a7989541165b6f17398758bec1795 -54db5cd8d4d7fff2e9265618f9f41d04deceee84 -ec52671def2732383f387e55a3bf5152046db869 -9ab25d0dea129411a42380009a2aae3048012075 -5f3530b0f9b0e597467c1e625b9d4987833c9e1b -339d28495dde0cc63849a55b96ced816c7d9d032 -5a489d2090c5af754a1e2e185248d19513efc4cc -783713e1cd64935240f687cfd3944dc38e33b57a -b933f419492ea954707d6745ab1a43c3f3789460 -afa9ef4682a3370c473d6c652743652928bff1f1 -62bc6e7e88b052400a732f1bff451eb922651d12 -671c30116bdf0f14dcda204bea96899e4699f15c -aee9d32650a17ed3ef812505d505937f7b02be3e -30e7267f13f12cb50f604503989b7f30455c4b0f -479cb04472777a41d470d9382bd266b13237afd6 -6d79def0face19bc275cb8d32608e451bf0b39e4 -d524e6ea2e94554abe4423732470bc962aa0fc37 -384b5dd23fa9cf60a577aa8c1a22ca862077aa5a -99e97484b13c5f85f6547b7374472acd560f5f78 -1b7e470883353ee61a71e931445a2ee68cf4548b -14bce4218302d486d9abb784c7a61414b21b285a -f106b9d364edbf597f189d231470bec201d3b0b6 -3f3ca9cc85da8dc2dfb3780586daeed934c9b623 -f816b693c07971be77effe27f38aa6be259c2b8f -966a1bd7031cfd4aa1c67425d8513666e37d0e36 -5a375adb469c5df0a82a3cc5d5782439605fbd6e -1f90da8d5178d78dc2a284915c38be132467caaa -cff35afeec7e533b726a28964820dfaadedfb19e -81d1fcdacdfe299157afd9edca619acd05ba8e28 -e5f8d91923cea42077a263a187f24702c6efe6c7 -e1964767766938bb5f381f72543b01d4dc5fcc20 -44bafa51620fa90ed7dd32bed35ff345649ea47d -3220d09b4bd74b1cca8b4182dcc6e46d3a8a2b69 -833b04042608a2aea3e6a2b7a2b648bda6990817 -359e18606c5ad84e9b846b3901adbd8b186cc595 -122b48d8bd42c650d6d406012cf76faf7995dab5 -2d22d3ca54882695e0fd22e6c8359d536cd940db -a7afe8d88ceba1d6bacb0aa13bd53f613af80bc7 -00429af86eff3b9b48f7585d2d0357c73929641d -aa71e4bf941c15481345419187667109c47d464d -d6d9f569e76ea6aa9a5001be190eac1ad4f4cfde -6af1a6fb5415be283ac066e2bae11e38781bb966 -2622966cbf4fb998f4559dd5c9af968b9ada7904 -7af07818842d22a3592293752df519c02458a330 -2168ea462d734d1ddf927f22d4b87f666e5e528d -1f028537fcf274a940c09be24459da7f3f66dfd3 -f4cedf091cdb5d5594bf0579b2b07e411742c6e9 -32adcafafb24995980b957abac736e65766bfdad -f43013665e53aa998c82574d662a9b6c16b585fb -9f57aa2b8fca2596264fb705176e468f96ca6afd -28a85dc6f2cff10844bd1dd0ad0874965d5e6007 -8b06f68d68002c39b89af790f1e0cdbd9b12c36f -885d7c1e41c22d0841c0a2b10db0662fd5619f35 -e1641da12fd73ec44d0927f8d2eceacefcd05477 -da7ee6004d27071890e22dcb0960415646503d0f -7487d6368272fa82b638c7ca2efce56d77451f5f -3ff804654ad7efe3f06409429b9907269ae29e90 -52e45aa2eb85fe39d5895f7c9b7b55b43a0bc038 -059835254490a9dfe17d3e4600d459ecbb46a49c -f5f07c844f29f50ade7fdcd744df2db4ae028e8f -3015c09cdfd816546f02e3c72dcc87b33d76183f -cbf5a80e3a10bb1bd69a657fff47e08ac44076e6 -689fddf3464fffc82a472487fbbd8a968745154c -2fa2fbbecbfe8073637a0e89c96e84b3f512dd50 -d747cf976b0d02130cd84377e45e7d4565b8b977 -79217ddce0ada9df57b969f55cd5543a05ae44e9 -83aa1a6678c11a628e826186e6f7a8cdee6a74c8 -bacb89507dddae9799b854514ec58a373cc8d18d -e43cc67a13574c28f1f47ecd110f7e753d451a4c -d99be7fc55f6605e3df840dca460d1a0a19ef732 -6ad7fd5433f0a86a19d448076d86c6128ffb222b -3872f892f693139644fd1b263ade87272746f00e -faa579abbfcc76548b7b4fb6c1e5ae363789abcd -8e6654fe9772b35ea404cc13f54218ee6a5abd61 -8eac08a1659e10ef844a197ad8d371a5bcba528f -26ca4bb1cbd817a77c09ee9d13ae94be46959605 -c3d87b077cff057441ba394c31651547688749cc -827777e3daa9cb45e07625d881a9aea33ed24e3c -8b168513c59c739c011af2f0c09ee5cbdb1b1a7b -2c536c21bf168fe1aebd5ab1c8e139970d2819be -85ca45762f82b12a00e6457454791e1cad9896e9 -05609159a19b91c3a9118877f863cc4f57836673 -a4997757f99b79b5e8687a2614fc2f71de418af0 -d078dc1e4cf1bad18315be7fa6a3fcc68a20d64d -276c402bb28b161d6c73f0ce272369347e9736cf -cc66155f3f2023c3c66b3f27682a1534954d37d8 -0b49a2f9f816e9690f8b59e5f6b54d4deaf695ae -07d253f3018984546453dff2ac8adc9b6504f3e8 -6d9ab5da7bf2d7a84dd0d06b16a0e654946de80b -36a6d4337a5a4450732610e7aa27b946a4bcd93f -d616796818f0a729bd72f6620ae9ce6d4bcdaaee -9e56fc6b65ecacc853e77dc607fd1947068ee5ac -df711a02a2f20f6734205cde678e9f0aa6904709 -fa422c483e51b35e828ce724e320b3d4cc1b9749 -78c01deebb6c477d0374695e89a32e753609540a -724c7258a2c35e3135d6b7d3531784e4630e5f74 -7a7abfe73efe1e36b388b65501b16fc7b5016e01 -5d4823d44496c69f9ea85cefed0b66f3af988528 -47794ec44b2bf56090b6d0b922053653f1a18f5c -950e8bbd9de9c0cdbac0ff9bd69fcb64268794c1 -a8abf040dcb86fc4932d6d1a6a3d5ae69719dda6 -ff1c6bcc1b64c1235da9984fc66cab14e63ec526 -130e6b518988b330ecec2dc199c96378803dc130 -f1c51199e3b7841a02060298dff7244896e0bc77 -132eba05a80c380872c9f0b0f29dadcc6a7ff951 -c0f996b85a11a680c0f95a680dfe08cba62dfc78 -aecf51fca000eac6e53005bed74c7c975bb02ec4 -f1ddaae4cd7ecb9de0b51782d017eee5dbca257a -860718af6151ad972ffc7b77021789c49a883d8c -cc14e7371abb36343c5b2cdb79ae93737364403f -28b770af7c5cfdc57c44d6ab6935904067f066ef -bea9fd27b9ffe76d6a3ab8b535e9604d5c6df304 -82a72afc15b63f6c27fb1249ad8d2d9f85cd990e -d2662badddfd10a505f3e776720ec9cf6ed575c5 -664a253e593580a61e6da6d60d1051342205a664 -2b34f8cefbf2c45f1e49b4f470797718410a04d2 -e3fc8cf5ba208834951c21b96d76b3aa88a0c244 -157d0fa5978103864e7b183267464d9306fe50f6 -e03610ff9dc39cb35a236c20bb36773d0681968c -981df59ebce85fbce5642a74e3c273891b25411b -7e8fd0cd650361318a694cf7f9cf6bda5ed3b1b5 -096c3a35fb23f658962803814aaeb1912d5e4d25 -7b1e7cade3a14c25f1712b5b9d543b4720ee1752 -f63fcaa64cab6f17ac45e57055fccce225440505 -0d091ac5bc71b18521a32e8ade3e00367e5aea10 -06e0d152d36736b8355ea53b5da518a254078d24 -222c29951c105959016648d68e52bc06cbd3bc1c -927e33577124cc69d07dbe642cee909ccf7ccb03 -76f85bd0901be8986ef172caf0863b101c1a6123 -66672a0ca6462851e545c598977ab44827dc60ca -6c57cbefbf4642deb06ffd48b7600242c7bca86d -5cc938a2603d7ddc20c83b488f6bc7be8bafa0b8 -828bb79e31942a219dd022e9083dd20eb09f3d0d -0e5f5e2d0304b1fde6b172b430ba8808767ab575 -2f936c94172e7717e12656eef320a619c503fba0 -88204a1fbdac059fb060336766e5dfb5e08da667 -068b17d0d05146e6db606baba35193ab3cd20159 -6fcea75eca2796eb153caaec5d4de9c4abe7fa0e -344addb6f8240a2bde845ee43d8020da8f7ed2d7 -3186f70c2b53949b0629bdc2b1ddf04c0d1021d3 -af4a6d169e39f9b7a7cda44aa9cfa023881c9323 -264b078c6df792db42dcd69021690f507d1d2270 -3bd6a390a1c7888141975a48ed0a6689c6e2d371 -5a5c3fac4777990c1f377384aa1be0a60f14e0c7 -61095bd7fd962aa623b78f3756ea9ddb17fdc328 -21f59eb19e7cc76d83bac58bb233eb47218ac45d -97ddd0336729a2a53d0b5f9cfd2334f73421ed24 -249829457cddf0f1a9d3651e67721a32ac404e22 -568d7c18f99c4ff38a592dbe01cec2a7e9a9382d -1c481f7cd58d81858ee635c91a29bab245e0ff18 -4e64d9d4d5188511923f571589a589ddbcdfae12 -f45d6576976af58f8dbaafbc672a16a41ec92443 -2fad73a0de6431fd239732606d03dcedc6ab1920 -34eccc91f0baa2f6511002bcc60e30704b1f8b82 -d71a6860811645be4880941f7fe26ec440dff47e -15087243a17c0a05d7437ce85f1b802351e889af -f7508232ec452da12f85bcb34e01207a11eb4d2c -54d38277b0c75d2c17874edd2b2c5a250a2f0a29 -0af153efe4f3d98528f126fe34b021588e2107a4 -8727b83f4184b94dacb49768cb9abdc45e63b2d8 -fddb92e76a0e170c3009a932c5218bab041d9b45 -17ba30e253535834cf3ccf5c89ee0984355e5d56 -32a66c598820a44483a239536bb5a49fe00045b1 -31649b709dfe8b3a58a6d03769fe0bcbc2299aeb -d012ce536e82ecfba4c4917aa1ffee2fe65d03b5 -3d39c69b6c9523a23d4537273f7b9b58073a74af -d025c474f9a990f28cc1e460be3ea1a0e4db5b5e -42e1c6ff2ece64619fca26ddb740f2f25f9ccd9e -a1dea8ebb9e2a1d6f1e15724d69b8abc07eaf97f -093d073a9b476ff69d916cc08f2852f59d06a880 -722ccd33662ff742736d2005c0558c51f93fe506 -76f2adff7bd26cef8384e6f1b20b048bfbe8c57f -335a058b9941fed98348435d0962306bf8346ebe -6b737bca08af7b155c4d283a66f5f608b0ea40dd -27b93c8defb124e40077183f445316eab8513ae9 -a7ad71511c33428ec3ea097fb65d434cb22d4752 -28bff1c8a96c3a39db2652bc6a69e986d0c77f71 -b4c5a435b10092c8bd0655e36f0e2914d957dd75 -ca3169157135f70be56d1757067a80a183dd0de7 -a4d00badfd9930bc2484d6c0df4b41dd9c152d78 -5d3e7beffca75a153289036fb98c2b49b0c6e26a -f70af7226bf6b9ada686a70afb899eb879dc24aa -9ee7169df55852d0cbb9c0e1a42e597e083a190d -a53a5c9ade8c49299819246a430d6fb1943093cd -b2ee04b7df92e1280e4859d533baeca498e5433c -fed84f05c3f310951d8d93ee25c9d2f1bc1fe2ad -319f9e395e64ad2af0eb1eb3118e337b86f12618 -65658423850a3edab6e25577f7aa94ff42eebcc2 -c9799f7f40bee2ca46ff2c036e97d7730a505c2a -2c82600de5c34f1ed6d05856ebe6579ab90ef3ce -c6dd7baa055fa3b03feadbdded30d3005106e765 -b75b35302870ca1269c9694b12df5aec053adcdf -8c5a4fa55cd7170aa7815fffed70f75f8d9247ab -21c25195090a9ebb4a6419d58675d2c1ddb1a19f -7b28d48c20d08f570a05b3f1a58865cf90c4472c -0813f33b6eafe88a8af264d580a3de978fcefb5a -79528439eb4029d3a9e93c55b1221598a496e063 -923b1e75e9a96644b84cc25f9c4b31772829a644 -e92ab0b843916354d70b2fb02d1a9afaf696859c -e9b50cf7a07a44ce077db9ea22cb6d4bd5121330 -eb1b15e96fa22207fee73c7291046c79e7c01b9e -bd0b00e3933d6ddd04a3e39514bc6bbb244654f1 -6e6f9c070087fb3a4f1c7da9a708feb2f9a94a7a -0df111354c7093399301307abdc84ec024f96f57 -1b24ee66de08656aff4fa5f57ad831573dff5b76 -e17cc9f5674de44dc8380c048c36933cad1a2cb4 -bb8c2be64eb080d29c312e7dd1cfea3cd8aa7969 -0244d78f6eb52f099778e410ff91482bee236e29 -7fd6dfbfd17c7eefc49884ac7741097f047be1b2 -43ae598226735e98162dfcba05e756c4192c1349 -279a9d83a2a369fd606b1b5889fc2e8822f7fdaf -9ffe4581fd464104433b0f83e3219e0f99422941 -b697209c983421c365f6da410d9779f345bcccd5 -fec411445c0be0d929b28412d09d2e59ef459871 -4f73bf531632ecb69a63566362535cf118427119 -8924df03ddc1128865627b8c53bc9a9e126cc263 -d02c0613ffa50f7039d77d45a83c57f0437e5333 -a100726a64ace0e816fb9377fbc5b9e3c38b375d -b226472cafab4e9fad102e20d37c9a42c3be233b -ca4799fd522c13e55600bf09ace7ce3c6e9dbb1a diff --git a/splunk_eventgen/samples/states b/splunk_eventgen/samples/states deleted file mode 100644 index ad6632e6..00000000 --- a/splunk_eventgen/samples/states +++ /dev/null @@ -1,50 +0,0 @@ -Alabama -Alaska -Arizona -Arkansas -California -Colorado -Connecticut -Delaware -Florida -Georgia -Hawaii -Idaho -Illinois -Indiana -Iowa -Kansas -Kentucky -Louisiana -Maine -Maryland -Massachusetts -Michigan -Minnesota -Mississippi -Missouri -Montana -Nebraska -Nevada -New Hampshire -New Jersey -New Mexico -New York -North Carolina -North Dakota -Ohio -Oklahoma -Oregon -Pennsylvania -Rhode Island -South Carolina -South Dakota -Tennessee -Texas -Utah -Vermont -Virginia -Washington -West Virginia -Wisconsin -Wyoming \ No newline at end of file diff --git a/splunk_eventgen/samples/states.abbrev b/splunk_eventgen/samples/states.abbrev deleted file mode 100644 index a20d9ce6..00000000 --- a/splunk_eventgen/samples/states.abbrev +++ /dev/null @@ -1,59 +0,0 @@ -AK -AL -AR -AS -AZ -CA -CO -CT -DC -DE -FL -FM -GA -GU -HI -IA -ID -IL -IN -KS -KY -LA -MA -MD -ME -MH -MI -MN -MO -MP -MS -MT -NC -ND -NE -NH -NJ -NM -NV -NY -OH -OK -OR -PA -PR -PW -RI -SC -SD -TN -TX -UT -VA -VI -VT -WA -WI -WV -WY \ No newline at end of file diff --git a/splunk_eventgen/samples/street.types b/splunk_eventgen/samples/street.types deleted file mode 100644 index 6b86ed6b..00000000 --- a/splunk_eventgen/samples/street.types +++ /dev/null @@ -1,59 +0,0 @@ -Ally -App -Arc -Ave -Blvd -Brow -Bypa -Cway -Cct -Circ -Cl -Cpse -Cnr -Cove -Ct -Cres -Dr -End -Esp -Flat -Fway -Frnt -Gdns -Gld -Glen -Grn -Gr -Hts -Hwy -Lane -Link -Loop -Mall -Mews -Pckt -Pde -Park -Pkwy -Pl -Prom -Res -Rdge -Rise -Rd -Row -Sq -St -Strp -Tarn -Tce -Tfre -Trac -Tway -View -Vsta -Walk -Way -Wway -Yard \ No newline at end of file diff --git a/splunk_eventgen/samples/streetNames.sample b/splunk_eventgen/samples/streetNames.sample deleted file mode 100644 index 736df459..00000000 --- a/splunk_eventgen/samples/streetNames.sample +++ /dev/null @@ -1,91670 +0,0 @@ -A E Smythe -A Fernwood -A G Spanos -A H Gray -A Jones -A New -A York -A. Alfred Lombardi -A.J. Hare -ASDA Britannia -AVRowe -Aa -Aalten -Aaron -Aaron Hill -Aaron Park -Aaron River -Abalone -Abanaki -Abandoned -Abaroo -Abate -Abbe -Abberton -Abbett -Abbetts -Abbeville -Abbey -Abbey Barn -Abbey Ellen -Abbey Field -Abbey Glen -Abbey Hey -Abbey Hill -Abbey Hills -Abbey Manor -Abbey Mill -Abbey Oak -Abbey Oaks -Abbey Orchard -Abbey Valley -Abbey Wood -Abbeydale -Abbeyfeale -Abbeyfield -Abbeyhill -Abbeystead -Abbeyview -Abbeyville -Abbeywood -Abbie -Abbington -Abbington Farm -Abbot -Abbotford -Abbots -Abbots Court -Abbots Ford -Abbots Wick -Abbots Wood -Abbotsbury -Abbotsfield -Abbotsford -Abbotsford Cove -Abbotshade -Abbotshall -Abbotsleigh -Abbotstone -Abbotswood -Abbott -Abbott Bridge -Abbott Valley View -Abbotts -Abbotts Park -Abbottsford -Abbottswell -Abbruzzi -Abby -Abby Wood -Abbywood -Abchurch -Abdale -Abden -Abdon -Abdul -Abe -Abecrombie -Abeel -Abel -Abele -Abelia -Abell -Abels -Abelyn -Abenaki -Abend -Abendroth -Abensburg -Aber -Aberavon -Abercairn -Abercombie -Aberconway -Abercorn -Abercrombie -Abercromby -Aberdare -Aberdeen -Aberdour -Aberfeldy -Aberfield -Aberfoil -Aberford -Aberford Highfield -Aberfoyle -Abergeldie -Abergele -Aberjona -Abermain -Abernathy -Abernethy -Abersoch -Abert -Abery -Abescon -Abierto -Abigail -Abilene -Abinante -Abingdon -Abinger -Abington -Abington Cambs -Abington Manor -Abington Woods -Abirdge -Able -Ablemarle -Ablett -Ablondi -Abner -Abner Belcher -Abney -Abney Court -Abode -Aborn -Aborn Square -Aboud -Aboukir -Aboyne -Abraham -Abraham Kazan -Abrahams -Abrams -Abramsky -Abramson -Abrew -Abridge -Abruzzini Hill -Absalom -Absecon -Absher -Abson -Abuklea -Ac -Acacia -Academia -Academic -Academy -Academy Fields -Academy Hill -Academy Woods -Acadia -Acadia Park -Acalanes -Acampo -Acanthis -Acanthus -Acapulco -Acari -Acaster -Accacia -Access -Accokeek -Accokeek Landing -Accolade -Accolawn -Accomac -Accommodation -Accomodation -Accord -Accord Park -Accord Pond -Accotink -Accotink Park -Ace -Acedemy Fields -Acela -Acer -Acerra -Acess -Acevedo -Acfold -Aches -Acheson -Achille -Achilles -Achillies -Achnacone -Achorn -Acken -Ackender -Acker -Ackerly -Ackerman -Ackers -Ackerson -Ackertown -Acklam -Ackley -Ackling -Acklington -Ackman -Ackmar -Ackroyd -Ackton -Ackworth -Acland -Acme -Acoma -Acomb -Aconbury -Acorn -Acorn Court -Acorn Hill -Acorn Hollow -Acorn Knoll -Acorn Park -Acorn Ponds -Acorn Wharf -Acosta -Acre -Acre More -Acre Top -Acre View -Acreage -Acrefield -Acregate -Acres -Acresfield -Acri -Acris -Acrocomia -Acron -Acropolis -Actinotus -Action -Actium -Active -Acton -Acton Horn -Acton Park East Acton -Acton Vale Bromyard -Actriz -Acts -Acushnet -Ad Art -Ad Hoc -Ada -Adagio -Adah -Adahmore -Adair -Adaire -Adak -Adalis -Adalist -Adaluma -Adam -Adam Albright -Adam C. Powell -Adam Wheeler -Adaminaby -Adamo -Adams -Adams Church -Adams Hill -Adams Park -Adams Ranch -Adams Ridge -Adams School -Adamson -Adamsrill -Adamsway -Adamswood -Adanac -Adar -Adare -Adason -Adastral -Adbaston -Adbert -Adbeth -Adclare -Adclire -Adcock -Adcroft -Add -Addalia -Addenbrooke -Adderley -Adderstone -Adderton -Addicks -Addie -Addington -Addington Village -Addiscombe -Addiscombe Court -Addison -Addisson -Addleman -Addlestead -Addlestone -Addsion -Addy -Adee -Adel -Adel Wood -Adela -Adelade -Adelaide -Adelberg -Adelbert -Adele -Adelia -Adeline -Adella -Adelle -Adelman -Adelphi -Adelphia -Adelsburg -Aden -Adenlee -Adenmore -Adept -Aderene -Adesso -Adey -Adeyfield -Adhara -Adie -Adin -Adina -Adine -Adios -Adirondack -Adisham -Adj. -Adkins -Adler -Adler Woods -Adlers -Adley -Adlington -Admaston -Admin Service -Administration -Admiral -Admiral Callaghan -Admiral Cochrane -Admiral Moore -Admiral Seymour -Admirals -Admiralty -Admont -Adobe -Adobe Canyon -Adobe Creek -Adobe Creek Lodge -Adolfo -Adolph -Adolphus -Adomar -Adonia -Ador -Adorn -Adp -Adpar -Adra -Adria -Adrian -Adriana -Adrianne -Adriano -Adriatic -Adrien -Adrienne -Adshall -Adstone -Adswood -Adswood Old Hall -Adult -Adur -Advance -Advantage -Advent -Adversane -Advice -Adwell -Ady -Adys -Ae -Aec -Aegean -Aegina -Aeolia -Aeolus -Aerator -Aerial -Aerie -Aerie Wynde -Aero -Aerobee -Aerodrome -Aerojet -Aerospace -Aetheric -Aetna -Aetna Springs -Af -Affetside -Affleck -Afghan -Afirmed -Africa -Afshar -Afterglow -Afternoon -Afton -Afton Coulee Ridge -Agadir -Agamemnon -Agape -Agar -Agassiz -Agate -Agates -Agatha -Agatite -Agaton -Agave -Agawam -Agden -Agdon -Agecroft -Ager -Aggie -Aggisters -Agincourt -Aging Oak -Agister -Agius -Aglen -Agneous -Agnes -Agnes Morley Heights -Agnesfield -Agnew -Agnola -Agnon -Agorista -Agoritsas -Agostina -Agostino -Agradar -Agrand -Agraria -Agricultural Farm -Agriculture -Agrippa -Agua Vista -Aguadilla -Aguazul -Aguilar -Agusta -Ah -Ahab -Ahearn -Ahern -Ahlmeyer -Ahlstrand -Ahlstrom -Ahmed -Ahneita -Ahnert -Aho -Ahr -Ahrens -Ahwahnee -Ahwanee -Aida -Aidan -Aiden -Aiello -Aiken -Aikens -Ailee -Aileen -Ailsa -Ailsworth -Ailward -Aimee -Aimee Meadows -Aimwell -Aines -Ainger -Ainsbrook -Ainsbury -Ainscough -Ainscow -Ainsdale -Ainsford -Ainsley -Ainslie -Ainslie Wood -Ainsty -Ainsworth -Ainsworth Hall -Aintree -Air -Air Base -Air Cargo -Air Cargo Service -Air Force -Air Freight -Air Park -Air View -Airbase -Aircraft -Aird -Airds -Airdsley -Aire -Airedale -Aires -Airfield -Airlea -Airlie -Airline -Airmen -Airmont -Airmont Hunt -Airmount -Airpark -Airport -Airport Access -Airport Park -Airport Plaza -Airport Ser -Airway -Airwick -Airy Hill -Airybrink -Aisgill -Aisher -Aislibie -Aisne -Aisquith Farm -Aitchander -Aitcheson -Aitchison -Aitken -Ajax -Ak -Akbar -Akeby -Akehurst -Akela -Akeman -Akenside -Akerly -Akerman -Akers -Akerson -Akesmoor -Akeson -Aketon -Akhtamar -Akin -Akira -Akora -Akron -Akroyd -Aksarben -Aksland -Al Catraz -Al Jones -Al Ventura -Al Wilhelmi -Alabama -Alabaster -Alachua -Alacross -Aladdin -Aladore -Alaga -Alago -Alahambra -Alam -Alamance -Alamatos -Alameda -Alameda Marina -Alameda Park -Alamein -Alamitos -Alamitos Creek -Alamo -Alamo Glen -Alamo Hills -Alamo Oaks -Alamo Ranch -Alamo Springs -Alamo Square -Alamos -Alamosa -Alan -Alan A Dale -Alan Boyd -Alan Crest -Alan Dale -Alan Deatherage -Alan Turing -Alana -Alanas -Alanbrook -Alandale -Alanhurst -Alann -Alanna -Alanon -Alanwick -Alaric -Alaska -Alaska Service -Alastair -Alba -Albacete -Albacore -Alban -Albana -Albanese -Albano -Albany -Albany Park -Albara -Albata -Albatross -Albee -Albemarle -Albergo -Albermale -Albermarle -Albermyrtle -Albern -Alberni -Albers -Albert -Albert Bridge -Albert Einstein -Albert Hill -Albert Leonard -Albert M Teglia -Albert Park -Albert Ray -Albert Royds -Alberta -Alberti -Albertina -Albertine -Alberto -Alberts -Albertson -Albertstone -Albertsworth -Albezzia -Albia -Albin -Albina -Albine -Albion -Albion Villas -Albon -Albot -Albourne -Albradt -Albrae -Albrecht -Albright -Albrighton -Albro -Albuera -Albury -Albury Grove -Albyan -Albyn -Albyns -Alcajapa -Alcala -Alcalde -Alcan -Alcana -Alcann -Alcatraz -Alcazar -Alcester -Alchester -Alcinda -Alcine -Alcira Nunez -Alcoa -Alcock -Alcocks -Alcon -Alcona -Alconbury -Alcoomie -Alcorn -Alcorne -Alcosta -Alcott -Alcova -Alcove -Alda -Aldacourrou -Aldagrove -Aldana -Aldbourne -Aldbridge -Aldbury -Aldcock -Aldcroft -Aldea -Aldean -Aldebaran -Aldeburgh -Aldebury -Aldemarle -Alden -Alden Glen -Alden Pond -Aldene -Aldenglen -Aldenham -Aldensley -Alder -Alder Brook -Alder Creek -Alder Glen -Alder Hill -Alder Woods -Alderberry -Alderbourne -Alderbrook -Alderbury -Aldercar -Aldercombe -Aldercroff Heights -Aldercroft -Aldercroft Heights -Alderdale -Alderfield -Alderfold -Alderford -Aldergate -Alderglen -Alderleaf -Alderley -Alderman -Aldermary -Aldermaston -Alderminster -Alderney -Alders -Alders End -Alders Green -Aldersbrook -Aldersbrook Park -Aldersey -Aldersgate -Aldersgrove -Aldershot -Alderside -Aldersley -Aldersmead -Alderson -Alderstead -Alderstone -Aldersyde -Alderton -Alderton Hall -Alderue -Alderville -Alderwick -Alderwood -Alderwood Mall -Aldfield -Aldford -Aldgate -Aldgate High -Aldham -Aldi -Aldie -Aldine -Aldington -Aldis -Aldo -Aldock -Aldon -Aldona -Aldorae -Aldred -Aldren -Aldria -Aldrich -Aldrid -Aldridge -Aldrin -Aldrington -Aldro -Aldsworth -Aldus -Aldwark -Aldwick -Aldwin -Aldwina -Aldworth -Aldwych -Aldwyn Park -Alec -Alec Templeton -Alecia -Aleda -Alee -Alegra -Alegre -Aleilani -Alejandra -Alejandro -Alelanto -Alemany -Alembic -Alemeda -Alene -Aleppo -Alerche -Alers -Alesia -Alessandra -Alessandro -Alessi -Alessio -Alestan Beck -Alester -Alesworth -Aleta -Aletha -Alethea -Aleutian -Alewife -Alewife Brook -Alex -Alexander -Alexander Bell -Alexander Cornell -Alexander D. Sullivan -Alexander Fleming -Alexander Hamilton -Alexander Manor -Alexander Valley -Alexanders -Alexandra -Alexandras Grove -Alexandria -Alexandria Overlook -Alexendria -Alexian -Alexine -Alexis -Aley -Alezane -Alfa -Alfadel -Alfalfa -Alfalfa Plant -Alfan -Alfandre -Alfandre Mews -Alfearn -Alfini -Alfold -Alford -Alford Valley -Alfords Point -Alforth -Alfred -Alfred Lord Tennyson -Alfred Nobel -Alfreda -Alfreg -Alfreton -Alfriston -Alft -Algair -Algar -Algarve -Algea -Algen -Alger -Algernon -Algers -Alghera -Algiers -Algoma -Algona -Algonkian -Algonkin -Algonquian -Algonquin -Algosi -Algreave -Algretus -Alhambra -Alhambra Creek -Alhambra Hills -Alhambra Valley -Alherst -Ali -Aliberti -Alibi -Alibon -Alicante -Alice -Alice Bright -Alice Eastwood -Alice G Agnew -Alice Griffith -Alicia -Alick -Alida -Alie -Alienor -Alimar -Alina -Alinda -Aline -Alinga -Alington -Alisa -Alisal -Alisha -Alisma -Aliso -Alison -Alisons -Alissa -Alistair -Alitos -Aliwal -Alix -Alize -Aljan -Aljay -Alkamont -Alkaringa -Alken -Alker -Alkerden -Alkham -Alkier -Alkira -Alkire -Alkoo -Alkoomie -Alkrington Park -All Day -All Saints -All Souls -Alla -Alladin -Allaire -Allama Iqbal -Allambee -Allambi -Allambie -Allan -Allan Daugherty -Allandale -Allander -Allanhill -Allanmere -Allano -Allanson -Allanwood -Allara -Allard -Allardyce -Allars -Allawah -Allay -Allborough -Allbrook -Allcroft -Allday -Allden -Alldens -Allder -Alldicks -Alldis -Allee -Alleen -Allegany -Alleghany -Allegheny -Allegheny Grove -Allegra -Allegro -Allemand -Allemany -Allemong -Allen -Allen Dale -Allen Dent -Allen Edwards -Allen Farm -Allen Oneill -Allen Park -Allen Robert -Allenby -Allencrest -Allendale -Allende -Allene -Allenhurst -Allens -Allensby -Allenswood -Allentown -Allenwood -Aller -Allerds -Allerford -Allerman -Allerton -Allerton Grange -Alles -Allesley -Allessandria -Allessandrini -Allestree -Alletta -Allevard -Alley -Alleyndale -Alleyne -Alleyns -Allfarthing -Allgair -Allgood -Allgrove -Allhallows -Alliance -Allibone -Allied -Allies -Allindale -Alline -Alling -Allingham -Allington -Alliott -Allis -Allisha -Allison -Allison Park -Allister -Allitsen -Allman -Allmen -Allnatt -Allness -Allnutt -Allnutts -Allocco -Allom -Allon -Allonby -Allotment -Alloway -Allowrie -Allport -Allred -Allsmoor -Allsopp -Allspice -Allstate -Allston -Allum -Allview -Allward -Allwood -Allworth -Allwyn -Allyn -Allyson -Alm -Alma -Alma Bridge -Alma College -Alma Farm -Almack -Almada -Almaden -Almaden Valley -Almaden Village -Almadera -Almadine -Almanac -Almandon -Almanera -Almanor -Almansa -Almanza -Almar -Almarida -Almaz -Almeda -Almeida -Almena -Almenar -Almendra -Almendral -Almer -Almeria -Almeric -Almeta -Almien -Almira -Almners -Almon -Almona -Almond -Almond Blossom -Almond Orchard -Almond Tree -Almond Valley -Almondridge -Almonds -Almondtree -Almondwood -Almont -Almonte -Almora -Almorah -Almount -Almroth -Alms Hill -Almsbury -Almshouse -Almwch -Alness -Alnond -Alnwick -Alnwood -Aloe -Aloha -Alondra -Along Neponset -Alonso -Alonzo -Alopex -Alorn -Alosio -Alp -Alpena -Alpenglow -Alpert -Alperton -Alpet -Alph -Alpha -Alphabet -Alphagate -Alpheus -Alphin -Alphington -Alphonse -Alphonsus -Alpine -Alpine Beach -Alpine Creek -Alpine Falls -Alpine Frost -Alpine Meadow -Alpine Springs -Alpita -Alport -Alprilla Farm -Alps -Alquire -Alray -Alresford -Alric -Alridge -Alro -Alrose -Alroy -Alsa -Alsace -Alsace Loraine -Alsada -Alschuler -Alsfeld -Alsike -Alsom -Alson -Alsop -Alsops -Alstead -Alston -Alstone -Alstyne -Alt -Alt Fold -Alt Hill -Alta -Alta Garden -Alta Glen -Alta Haciendas -Alta Loma -Alta Mesa -Alta Mesa East -Alta Mira -Alta Monte -Alta Punta -Alta Sierra -Alta Sonoma -Alta Sunrise -Alta Tierra -Alta Valley -Alta Verde -Alta Via -Alta Vista -Altacrest -Altadena -Altair -Altamara -Altamead -Altamira -Altamont -Altamont Creek -Altamont Pass -Altamore -Altamount -Altanta -Altarinda -Altena -Altenitas -Alter -Altessa -Altgeld -Altham -Althea -Alther -Althorn -Althorne -Althorp -Althorpe -Althouse -Altia -Altimont -Altino -Altivo -Altman -Altmar -Alto -Alto Verde -Altofts -Altofts Hall -Altofts Lodge -Altoga -Alton -Altona -Altoona -Altoona Beach -Altos -Altos Oaks -Altrincham -Altrura -Altruria -Altschul -Altura -Alturas -Altus -Altwood -Altyre -Alum Rock -Alum Rock Falls -Alumni -Alumrock -Alva -Alvah -Alvan -Alvarado -Alvarado Niles -Alvarez -Alvaston -Alveley -Alvern -Alvernaz -Alverno -Alverson -Alverstoke -Alverston -Alverstone -Alverton -Alvertus -Alves -Alves Ranch -Alveston -Alvey -Alviena -Alvin -Alvina -Alvine -Alvington -Alviso -Alvista -Alviston -Alvord -Alwaes -Alward -Alwat -Alway -Alwick -Alwin -Alwine -Alwinton -Alwoodley -Alwoodley The -Alwyn -Alwyne -Alwyngton -Alwyns -Alxandria -Alyce -Alyea -Alysheba -Alyson -Alyssa -Alyssum -Alyward -Alywne -Alywood -Amadeus -Amado -Amador -Amador Creek -Amador Plaza -Amador Valley -Amal -Amalfi -Amalgamated -Amalia -Amanda -Amann -Amanola -Amant -Amapala -Amapola -Amaral -Amaranta -Amaranth -Amaretto -Amargosa -Amari -Amarillo -Amarina -Amark -Amaro -Amaroo -Amaroo Park -Amaryl -Amaryllis -Amasa -Amatista -Amato -Amax -Amaya -Amaya Creek -Amaya Ridge -Amazon -Ambarrow -Ambassador -Amber -Amber Creek -Amber Grove -Amber Meadows -Amber Ridge -Amber Valley -Amberdale -Amberden -Amberfield -Amberg -Ambergate -Amberglen -Amberhill -Amberina -Amberjack -Amberlea -Amberlea Farm -Amberleaze -Amberleigh -Amberleigh Farn -Amberley -Amberly -Amberside -Amberson -Amberton -Amberwood -Ambiance -Amble -Ambler -Amblers -Ambleside -Amblethorn -Amblewood -Ambley -Ambon -Ambourn -Amboy -Ambria -Ambriance -Ambric Knolls -Ambrook -Ambrooke -Ambrosden -Ambrose -Ambrose Valley -Ambrosia -Ambrym -Ambulance Only -Ambum -Ambush -Amby -Ameland -Amelia -Amelia Earhart -Amelia Godbee -Amelian -Amelung -Amenbury -Amend -Amendodge -Ameno -Ament -Amer -Amerada -Amerden -America -America Center -America Moor -American -American Aggregate -American Beauty -American Canyon -American Eagle -American Holly -American Legion -American Oaks -American Pride -American River -American River Canyon -Americana -Americus -Amerigo -Amerland -Amero -Amersham -Amersham Hill -Amery -Ames -Ames Crossing -Ames Hill -Amesbury -Amesti -Amesury -Amethyest -Amethyst -Amey -Amherst -Amherst Bank -Amhurst -Amias -Amicita -Amico -Amid -Amidio -Amidon -Amiens -Amigo -Amilcar -Amina -Amiott -Amir -Amis -Amisfield -Amisse -Amistad -Amitaf -Amito -Amity -Amkin -Amlee -Amlets -Amli -Amlin -Amlong -Amman -Ammel -Ammendale -Ammer -Ammons -Ammunition -Amner -Amners Farm -Amoco -Amondo -Amor -Amori -Amoruso -Amory -Amos -Amos Garrett -Amos Hill -Amos Sampson -Amoss -Amott -Amour -Ampeg -Ampel -Ampere -Amphibian -Amphitheatre -Ampleforth -Ampthill -Ampton -Amsbury -Amsden -Amsden Ridge -Amstel -Amsterdam -Amsterdan -Amstutz -Amulet -Amundsen -Amundson -Amur Hill -Amvet -Amvets -Amwell -Amy -Amyand Park -Amyruth -Ana -Ana Lisa -Ana Maria -Anabell -Anable -Anacapa -Anacapri -Anaconda -Anagram -Anaheim -Anakai -Anakin -Analitis -Analy -Anamor -Anamosa -Anana -Anand Brook -Ananda -Anandale -Anastasia -Anastasio -Anatola -Anatolia -Anawan -Anawanda -Ancaster -Ancell -Ancells -Ancestor -Ancho Vista -Anchor -Anchor And Hope -Anchorage -Ancient Oak -Ancient Oaks -Ancient Tree -Ancille -Ancoats -Ancon -Ancona -Ancroft -Ancrum -Andale -Andall -Andalucia -Andalusia -Andalusian -Andaman -Andante -Andard -Anderby -Anderley -Anderlie -Andermann -Anders -Andersen -Anderson -Anderson Estates -Anderson Farm -Anderson Hill -Anderson Lakes -Anderson Ridge -Anderson Scout Camp -Anderton -Andertons -Andes -Anding -Andiron -Andith -Andlers Ash -Andora -Andorick -Andorra -Andove -Andover -Andover Country Club -Andover Heights -Andrade -Andre -Andre Hill -Andrea -Andreas -Andrease -Andreasen -Andrejewski -Andrene -Andres -Andrew -Andrew Alan -Andrew Borde -Andrew Hill -Andrew Lloyd -Andrewartha -Andrews -Andrews Farm -Andria -Andrieux -Andromeda -Andros -Androvette -Andrus -Andrus Island -Andsbury -Andwell -Andy -Anebo -Anelda -Anella -Anembo -Anerley -Anerley Park -Anesbury -Anets -Anette -Anfield -Anfred -Angas -Angel -Angel Falls -Angel Flight -Angel Hill -Angel Kerley -Angel Rod -Angela -Angela Rose -Angeles -Angelica -Angelico -Angelina -Angeline -Angelini -Angelique -Angelita -Angell -Angelo -Angelos -Angels -Angelus -Angelwing -Angerer -Angerstein -Angevine -Angie -Angier -Angies of Holloway -Angle -Angle Vale -Angledook -Anglefield -Angler -Anglers -Angles -Anglesea -Anglesey -Anglesey Court -Angleside -Anglessey -Anglewood -Angley -Anglian -Anglican -Anglin -Anglo -Angophora -Angora -Angorra -Angouleme -Angrave -Angsley -Angus -Angwin -Anhalt -Anice -Animal Husbandry -Animbo -Anis -Anise -Aniseed -Anita -Anjim -Anjo -Anjou -Anka -Ankener -Ankeny -Anker -Ankers -Anlaby -Anley -Ann -Ann Arbor -Ann Boleyn -Ann Fitz Hugh -Ann Lee -Ann Marie -Ann Natalie -Ann Rose -Ann Vinal -Anna -Anna Louise -Anna Mac -Anna Maria -Anna Marie -Annabel -Annabella -Annabelle -Annable -Annables -Annadale -Annadea -Annadel Heights -Annafran -Annalisa -Annam -Annamarie -Annamorh -Annan -Annandale -Annangrove -Annapolis -Annapolis Neck -Annapolis Walk -Annapolitan -Annardale -Annawan -Annaway -Annawon -Annbar -Anncroft -Anne -Anne Arundel -Anne Arundel Com Col -Anne Marie -Anne Peake -Anne Tucker -Anne William -Anne of Cleves -Anneliese -Annella -Annenberg -Annerino -Annerley -Annes Court -Annes Prospect -Annese -Annesley -Annete -Annett -Annetta -Annette -Annettes -Annettes Retreat -Annfield -Annhurst -Annico -Annie -Annie Laurie -Annie Moore -Annie Spence -Annie Terrace -Annin -Annina -Anning -Annington -Annis -Annisfield -Annisquam -Anniston -Anniversary -Annjim -Annmar -Annmore -Annona -Annoreno -Anns -Anntaramiss -Annual -Annunciation -Annursnac Hill -Annuskemunnica -Anny -Ano -Ano Nuevo -Anoatok -Anoka -Anola -Anon -Anona -Anondale -Anoover -Anpell -Anroyd -Ansbrough -Ansculf -Ansdell -Ansel -Ansell -Anselm -Anselma -Ansford -Ansie -Ansleigh -Ansley -Anson -Ansonia -Ansted -Anstee -Anstey -Anstey Mill -Anstice -Anstone -Anstridge -Answell -Answorth -Antarctic -Antares -Antaya -Ante Up -Antell -Antelope -Antelope Hills -Antelope Run -Antelope Springs -Anteros -Anthea -Anthem -Antholl -Anthony -Anthony Hill -Anthony Marangiello -Antietam -Antigone -Antigua -Antil -Antile -Antill -Antioch -Antiopi -Antiqua -Antique -Antique Forest -Antiquity -Antlands -Antler -Antoine -Antoinette -Antolak -Anton -Antone -Antonetta -Antonette -Antonette Marie -Antonia -Antonia Ford -Antonietta -Antonio -Antony -Antram -Antrican -Antrim -Antrobus -Antwerp -Anvil -Anvilwood -Anworth -Anyards -Anza -Anzac -Anzar -Anzavista -Anzio -Apache -Apakesha -Apap -Apara -Apartment -Apawamis -Apeldoorn -Aperdele -Apers -Apethorn -Apex -Apfel -Apgar -Apia -Apian -Apiary -Apking -Apley -Aplin -Aplomado -Apollo -Apollo Regent -Aponi -Apothecary -Appach -Appalachian -Appaloosa -Appamatox -Appeal -Appenzel -Apperley -Apperlie -Apperson Ridge -Appian -Appin -Apple -Apple Blossom -Apple Creek -Apple Crest -Apple Dor -Apple Farm -Apple Garden -Apple Gate -Apple Glen -Apple Green -Apple Grove -Apple Hill -Apple Lovers -Apple Manor -Apple Mill -Apple Orchard -Apple Ridge -Apple River -Apple Row -Apple Tree -Apple Valley -Apple View -Apple Wood -Applebee -Appleberry -Appleblossom -Applebox -Applebrook -Appleby -Applecreek -Applecrest -Applecroft -Applecross -Appledale -Appledell -Appledore -Appledown -Appleford -Applegarth -Applegate -Applegreen -Applegrove -Applejack -Appleman -Applemarket -Applemint -Applenut -Appleseed -Appleton -Appletree -Applewick -Applewood -Appley -Appleyard -Appling -Appling Valley -Appollo -Appomattox -Apprentice -Approach -Apps -Appspond -Apricot -April -April Journey -Apron -Apshawa Cross -Apsis -Apsley -Apsley End -Aptakisic -Apthorp -Apthrop -Apton -Apton Hall -Aptos -Aptos Beach -Aptos Creek -Aptos Creek Fire -Aptos High School -Aptos Hill -Aptos Rancho -Aptos School -Aptos View -Aptos Wharf -Aqua -Aqua Lynn -Aqua View -Aqua Vista -Aquahart -Aquamarine -Aquarium -Aquarius -Aquasco Farm -Aquatic -Aquavia -Aqueduct -Aquia Creek -Aquila -Aquilina -Aquinas -Aquino -Aquistapace -Ara -Arab -Arabanoo -Arabella -Arabelle -Arabian -Arabin -Araca -Arafura -Araglen -Arago -Aragon -Aragona -Arakelian -Araki -Arakoon -Aralia -Aralluen -Araluen -Aram -Arambel -Aramis -Aramon -Aran -Arana -Aranda -Arandale -Araneo -Arapaho -Arapahoe -Ararat -Arastradero -Arata -Arate -Araujo -Arballo -Arbardee -Arbeiter -Arbeleche -Arbeleda -Arbell -Arbella -Arbetter -Arbie -Arbit -Arbogast -Arbol -Arbolado -Arboleda -Arbor -Arbor Creek -Arbor Falls -Arbor Fields -Arbor Gate -Arbor Glen -Arbor Grove -Arbor Hill -Arbor Hills -Arbor Lakes -Arbor Meadows -Arbor Oaks -Arbor Park -Arbor Ridge -Arbor View -Arbor Villa -Arbor Vine -Arbor Vitae -Arbordale -Arboreo -Arboretum -Arboretum Village -Arborfield -Arborfield Church -Arborfield Walden -Arboro -Arborough -Arborsedge -Arborside -Arborview -Arborvitae -Arborway -Arborwood -Arbory -Arbour -Arbour Walk -Arbre -Arbroath -Arbrook -Arbroth -Arbuckle -Arbury -Arbuton -Arbutus -Arca -Arcada -Arcade -Arcade Lake -Arcadia -Arcadia Palms -Arcadian -Arcady -Arcand -Arcangela -Arcata Bay -Arce -Arch -Arch Airport -Arch Hall -Arch Rk -Archangel -Archbold -Archbridge -Archbury -Archdale -Archel -Archer -Archerdale -Archers -Archers Green -Archery -Archery Fire -Arches -Archibald -Archie -Architect -Archlaw -Archmeadow -Archstone -Archung -Archway -Archwood -Arco -Arcola -Arcon -Arctic -Arctic Cat -Arctic Fox -Arcturus -Arcus -Arcwood -Arcy -Ard -Ardale -Ardan -Ardath -Ardaugh -Ardbeg -Ardee -Ardell -Ardelle -Arden -Arden Bluff -Arden Creek -Arden Forest -Arden Oaks -Arden Shore -Arden View -Ardendale -Ardenfield -Ardenham -Ardenlee -Ardenmore -Ardennes -Ardenness -Ardenridge -Ardent -Ardenwood -Ardern -Arderne -Ardfern -Ardfilan -Ardfour -Ardglass -Ardgowan -Ardgryffe -Ardilaun -Ardilla -Ardilla Canyon -Arding -Ardingly -Ardis -Ardith -Ardleigh -Ardleigh Green -Ardler -Ardley -Ardlui -Ardmere -Ardmore -Ardno -Ardo -Ardoch -Ardor -Ardra -Ardrossan -Ardrossen -Ardshiel -Ardsleigh -Ardsley -Ardsmoor -Ardvin -Ardwell -Ardwick -Ardwick Ardmore -Area -Areil -Arellano -Arena -Arenal -Arends -Arenosa -Arethusa -Arey -Arezzo -Arezzo Pointe -Arf -Arford -Argall -Argent -Argenta -Argentine -Argents -Argie -Argila -Argilla -Argo -Argon -Argonaut -Argonne -Argonne Ridge -Argosy -Argowan -Arguello -Arguimbau -Argus -Argyle -Argyle Club -Argyll -Argyll Park -Ari -Ariadne -Ariana -Arianna -Arias -Aric -Arica -Aricia -Ariel -Arielle -Aries -Ariey -Arikara -Arilla -Arimo -Arinya -Arion -Aris T Allen -Arista -Aristocrat -Aristotle -Arizona -Arjay -Ark -Ark Haven -Arkana -Arkansas -Arkay -Arkell -Arkena -Arkendale -Arkhaven -Arkindale -Arkinglander -Arkland -Arkle -Arkley -Arklow -Arkwood -Arkwright -Arlanda -Arleda -Arlee -Arleen -Arleigh -Arleita -Arlen -Arlene -Arlesey -Arlesford -Arleta -Arletta -Arlette -Arlewis -Arley -Arley New -Arlia -Arlie -Arlies -Arline -Arlingdale -Arlingford -Arlington -Arlington N -Arliss -Arlisson -Arlmont -Arlo -Arlon -Arlott -Arlow -Arlton -Arlyn -Arlyne -Arm -Armaan -Armadale -Armagh -Armand -Armandale -Armandine -Armanini -Armat -Armata -Armbrust -Armell -Armendown -Armentieres -Armes -Armetale -Armett -Armfield -Armfield Farm -Armida -Armidale -Armiger -Arminda -Arminger -Armington -Arminio -Arminteres -Armistead -Armistice -Armiston -Armit -Armitage -Armitree -Armitstead -Armitt -Armley -Armley Branch -Armley Grange -Armley Lodge -Armley Park -Armley Ridge -Armm -Armon -Armond -Armonk -Armor -Armore -Armory -Armour -Armour Villa -Armouries -Armoury -Arms -Armsby -Armsby Cemetery -Armside -Armstead -Armstrong -Armstrong Wood -Armwood -Army -Army Navy -Army Trail -Arnaudo -Arncliff -Arncliffe -Arncot -Arncott -Arncott Wood -Arndell -Arndill -Arne -Arner -Arnerich -Arnesby -Arnet -Arnett -Arneway -Arneways -Arnfield -Arnheim -Arnhem -Arnica -Arnison -Arno -Arnold -Arnold Janssen -Arnold Mills -Arnold Park -Arnolds -Arnon Chapel -Arnon Lake -Arnon Meadow -Arnos -Arnot -Arnott -Arnould -Arnow -Arnprior -Arnside -Arnsley -Arnulf -Arnulls -Arodene -Aromas -Aromas Heights -Aromitas -Aron -Arona -Aronia -Aronow -Aroona -Aroostook -Arora Heights -Arosa -Arpeggio -Arqueado -Arquilla -Arragon -Arragong -Arran -Arrandale -Arrezzo -Arrianne -Arriba -Arrighi -Arrigotti -Arrington -Arrol -Arrow -Arrow Creek -Arrow Head -Arrow Park -Arrowbrook -Arrowfield -Arrowhead -Arrowhead Farm -Arrowhead Farms -Arrowhead Park -Arrowhill -Arrowleaf -Arrowood -Arrowrock -Arrowsmith -Arrowwood -Arroyada -Arroyo -Arroyo Grande -Arroyo Hondo -Arroyo Leon -Arroyo Oaks -Arroyo Seco -Arroyo Sierra -Arroyo Vista -Arroyuelo -Arrunga -Arsan -Arsenal -Art -Art Gallery -Art Schultz -Artarmon -Artegall -Artemas -Artemel -Artemus -Arterberry -Arterial -Artery -Artese -Artesian -Arthall -Arthill -Arthington -Arthingworth -Arthog -Arthur -Arthur B Lord -Arthur Conan Doyle -Arthur Kill -Arthur King -Arthur Matthew -Arthur Nate Haugh -Arthur Taylor -Arthur Woods -Arthurdon -Arthursdale -Artic -Artic Quill -Artichoke -Artie -Artillary -Artillery -Artillery Park -Artimus -Artis -Artisan -Artist -Artists -Artizan -Artlett -Artornish -Arts -Arts Circle -Artuna -Artwill -Aruba -Aruma -Arun -Arunah -Arundale -Arundel -Arundel Beach -Arundel Corp -Arundel Corporation -Arundel Cove -Arundel Gateway -Arundel Mills -Arundel Park -Arundel on the Bay -Arundell -Arundle -Arunta -Arutas -Arvale -Arverne -Arvidson -Arvilla -Arvin -Arvon -Arwick -Ary -Arye -Aryness -Arywood -Arzate -Asa -Asbourne -Asbury -Asbury Circle -Ascadilla -Ascalano -Ascalon -Ascan -Ascension -Ascham -Asche -Aschurch -Ascol -Ascolano -Ascot -Ascots -Ascott -Ascroft -Asdee -Aseki -Asford -Ash -Ash Church -Ash Green -Ash Grove -Ash Hill -Ash House -Ash Lawn -Ash Park -Ash Platt -Ash Ride Rosewood -Ash Tree -Ashampstead -Ashanger -Asharoken -Ashbee -Ashbel -Ashberry -Ashboro -Ashbourn -Ashbourne -Ashbox -Ashbridge -Ashbrook -Ashbrook Hey -Ashbrooke -Ashburn -Ashburn Farm -Ashburn Village -Ashburner -Ashburnham -Ashburnham Hill -Ashburton -Ashburton Manor -Ashbury -Ashby -Ashby Ponds -Ashby West -Ashccott -Ashcombe -Ashcott -Ashcroft -Ashdale -Ashdell -Ashden -Ashdene -Ashdod -Ashdon -Ashdown -Ashdown Forest -Ashe -Ashebrook -Ashely -Ashen -Ashen Grove -Ashenden -Ashendene -Ashenground -Ashentree -Asher -Asheridge -Ashes -Asheville -Ashfield -Ashfield Farm -Ashford -Ashfordby -Ashgap -Ashgate -Ashgrove -Ashgrove House -Ashingdon -Ashington -Ashkins -Ashkirk -Ashlake -Ashland -Ashland Woods -Ashlands -Ashlar -Ashlawn -Ashlea -Ashleaf -Ashleigh -Ashler -Ashley -Ashley Glen -Ashley Green -Ashley Manor -Ashley Mill -Ashley Oaks -Ashley Park -Ashley Woods -Ashleys Park -Ashlin -Ashling -Ashlon -Ashlone -Ashlyn -Ashlyns -Ashmall -Ashmead -Ashmeade -Ashmere -Ashmill -Ashmole -Ashmon Boburg -Ashmond -Ashmont -Ashmoor -Ashmore -Ashmount -Ashness -Ashnut -Ashover -Ashridge -Ashstead -Ashtead -Ashtead Woods -Ashton -Ashton Clough -Ashton Hill -Ashton New -Ashton Oaks -Ashton Old -Ashton Park -Ashton Woods -Ashtonbirch -Ashtree -Ashtrees -Ashurst -Ashvale -Ashview -Ashville -Ashwater -Ashwell -Ashwells -Ashwells Manor -Ashwin -Ashwood -Ashworth -Asia -Asiatic -Asilomar -Askam -Aske -Askegrens -Asket -Askett -Askew -Askewton -Askey -Askill -Askland -Askov -Askren -Askwith -Asland -Aslett -Asmara -Asmus -Aso Taro -Asolando -Asoleado -Asp -Aspara -Aspasia -Aspdin -Aspen -Aspen Grove -Aspen Hill -Aspen Hollow -Aspen Leaf -Aspen Point -Aspen Ridge -Aspen Tree -Aspen Valley -Aspen Willow -Aspen Woods -Aspenlea -Aspenpark -Aspenridge -Aspenshaw -Aspentree -Aspenwood -Aspern -Aspesi -Asphalt -Aspian -Aspinal -Aspinall -Aspinden -Aspinwall -Aspley -Asplins -Asplund -Aspull -Asquith -Asquithoaks -Asquithview -Ass House -Assabet -Assateague -Asselin -Assell -Assembly -Assembly Square -Asset -Assets -Assher -Assheton -Assinippi -Assisi -Assissi -Associated -Association -Assonet -Assumption -Assumpton -Assunta -Assyria -Asta -Astan -Astbury -Aste -Astelia -Astell -Aster -Asterbilt -Asterwood -Asti -Asticou -Astin -Astle -Astleham -Astley -Astley Hall -Astolat -Aston -Aston Abbotts -Aston Clinton -Aston End -Aston Forest -Aston Manor -Astonville -Astor -Astoria -Astoria Park -Astra -Astrahan -Astral -Astrid -Astrida -Astro -Astrodome -Astrolabe -Astron -Astronaut -Astronomy -Astrope -Asturias -Astwick -Astwin -Astwood -Asylum -Asylum Arch -At Last Farm -Atalanta -Atbara -Atcham -Atchenson -Atcheson -Atchison -Atco -Atcost -Aten -Atha -Athabaska -Athania -Athearn -Athel -Atheldene -Athelney -Athelstan -Athelstane -Athelstone -Athelwold -Athem -Athena -Athenaeum -Athene -Athenia -Athenlay -Athens -Atherden -Atherfield -Atherfold -Atherly -Atherstone -Atherton -Atherton Oaks -Atherwood -Athey -Athletic Field -Athlon -Athlone -Athol -Atholl -Athony -Athos -Athrusleigh -Athy -Atilda -Atina -Atka -Atkins -Atkinson -Atlandtic -Atlanta -Atlantic -Atlantic Hills -Atlantic House -Atlantic View -Atlantis -Atlantus -Atlas -Atlas Peak -Atlee -Atleigh -Atlip -Atna -Atney -Atno -Atom -Atomic -Atrebatti -Atria -Atrium -Attar -Attard -Attawa -Attawan -Atte -Atteberry -Atteentee -Attenburys -Atterbury -Attercliffe -Atteridge -Attewell -Attewood -Attica -Attimore -Attingham -Attitash -Attleboro -Attlee -Attleford -Attneave -Attorney -Attow -Attridge -Attunga -Attwaters -Attwood -Atty -Atwater -Atwell -Atwill -Atwood -Auberge -Auberry -Aubert -Aubin -Aubinoe Farm -Auborn -Aubreen -Aubrey -Aubrey Neville -Aubreys -Aubrieta -Auburn -Auburn Folsom -Auburn Grove -Auburn Lakes -Auburn Leaf -Auburn Meadow -Auburn Oaks Village -Auburn Ridge -Auburn Woods -Auburndale -Auchmar Service -Auciello -Auckland -Auclair -Auclum -Auction -Auction Barn -Aucutt -Auden -Audenshaw -Audery -Audette -Audine -Auditorium -Auditors -Audlem -Audley -Audmar -Audobon -Audrea -Audrey -Audrey Smith -Audrey Zapp -Audry -Auds -Audubon -Auerbach -Auger -Aughton -Augurs -August -Augusta -Augusta Hooe -Augusta Point -Augustan -Augustana -Augustina -Augustine -Augustus -Aukane -Aukland -Auld -Auldwood -Aulin -Aulston -Aultman -Auluba -Aulwurm -Aumack -Auman -Aumuna -Auna -Aunt Lilly -Aunt Lizzies -Aura Vista -Aurallia -Aurelia -Aurelia Sylvia -Aurelian -Aurelie -Auricchio -Auriel -Auriga -Aurilla -Auriol -Auriol Park -Aurora -Aurore -Auseon -Aussie -Austell -Austen -Austenwood -Austhorpe -Austin -Austin Creek -Austin Joseph -Austins -Austral -Australia -Australian -Australis -Australorp -Austrian -Austrian Pine -Autenreith -Auth -Authority -Authorpe -Authors -Auto -Auto Center -Auto Circle -Auto Club -Auto Mall -Auto Park -Auto Plaza -Autocenter -Automation -Automobile -Automotive -Autopilot -Autotech -Autoville -Autran -Autrey -Autum Leaf -Autumn -Autumn Brook -Autumn Chace -Autumn Chase -Autumn Creek -Autumn Crest -Autumn Fields -Autumn Flower -Autumn Gate -Autumn Gold -Autumn Hill -Autumn Lake -Autumn Leaf -Autumn Maple -Autumn Meadow -Autumn Mist -Autumn Oak -Autumn Oaks -Autumn Park -Autumn Point -Autumn Ridge -Autumn Rust -Autumn Trail -Autumn Valley -Autumn Willow -Autumn Woods -Autumncrest -Autumnleaf -Autumnvale -Autumnwind -Autumnwood -Auvergne -Auvernat -Aux Sable -Auxplaines -Auzerais -Ava -Avalani -Avalli -Avalon -Avalon Bay -Avalon Ct -Avamere -Avansino -Avante -Avanti -Avard -Avarn -Avati -Avdon -Ave Maria -Avebury -Avelar -Aveley -Aveline -Aveling -Aveling Park -Avella -Avellano -Avelon -Avena -Avenal -Avenel -Avenel Farm -Avenel Gardens -Avenell -Avenida -Avenida del Este -Avenida del Norte -Avening -Avenleigh -Avenons -Avens -Avenue -Avenue A -Avenue B -Avenue of Heroes -Averell -Averenches -Averett -Averhill -Averill -Averitt -Avern -Avers -Averton -Avery -Avery Park -Avesbury -Avey -Aviador -Avian -Aviary -Aviation -Aviator -Aviemore -Avignon -Avila -Avington -Avior -Avis -Avisford -Aviston -Avitar -Avoca -Avocet -Avola -Avon -Avon Beach -Avon Hill -Avona -Avonbrook -Avondale -Avondale Park -Avonelle -Avonia -Avonlea -Avonley -Avonmore -Avonmouth -Avonshire -Avonwick -Avots -Avram -Avro -Avy -Awaba -Awald -Awalt -Awani -Award -Awashawagh -Awatea -Awatos -Awbrey Patent -Awburn -Awixa -Awkard -Awl -Awlfield -Awliscombe -Axbridge -Axdell -Axe -Axehurst -Axel -Axes -Axford -Axholme -Axinn -Axletree -Axminster -Axtaine -Axtell -Axton -Ayala -Ayanian -Aybrook -Aycliffe -Aycrigg -Ayd Mill -Aydon -Ayebridges -Ayelands -Ayer -Ayers -Aylands -Ayles -Aylesbury -Aylesbury Vale -Aylesby -Aylesford -Aylestone -Ayleswade -Aylesworth -Aylett -Ayliffe -Aylin -Ayling -Ayloffe -Aylor -Aylsford -Aylsham -Aylsworth -Aylward -Aylwin -Aymar -Aymer -Aynho -Aynhoe -Aynor -Aynsley -Aynsworth -Ayot Little Green -Ayotte -Ayr -Ayres -Ayres End -Ayreshire -Ayresome -Ayrlawn -Ayrlie Water -Ayrmont -Ayrshire -Ayrsome -Ayrton -Ayrton Senna -Aysgarth -Ayshe Court -Ayshford -Ayshire -Aythorne -Ayton -Aytoun -AzTec -Aza -Azalea -Azalea Dell -Azalea Flat -Azalea Grove -Azalea Sands -Azalia -Azara -Azeala -Azee -Azel -Azelea -Azell -Azenby -Azevedo -Azimuth -Azof -Azores -Aztec -Aztec Ridge -Azuar -Azucar -Azule -Azure -Azusa -Azzopardi -B Colony -B Fernwood -B Gale Wilson -B Leeds -B Lefferts -B V French -B W Williams -B York -BART Access -BK. Methley -BMW Park -BP Connect Regent -BP Darling -BP Davies -BP Victoria -Baalbec -Baardwyck -Baardwyk -Baas -Babb -Babbage -Babbe -Babbin -Babbington -Babbit -Babbit Bridge -Babbs Creek -Babcock -Babe Ruth -Babe Ruth Park -Babe Thompson -Babel -Babel Slough -Baben -Baber -Babero -Babes -Babetta -Babich -Babicz -Babington -Babmaes -Babs -Babson -Babson College -Babula -Babylon -Babylon Farmingdale -Babyn -Bacall -Baccarat -Baccharis -Bacchetti -Bacchus -Bach -Bache -Bachelder Ranch -Bachell -Bacheller -Bachelor -Bachelor Grove -Bachelors -Bachman -Bacigalup -Bacigalupi -Bacinada -Back -Back Acton -Back Ainsworth -Back Albert -Back Alexander -Back Alfred -Back Alice -Back Alicia -Back Alma -Back Anson -Back Archery -Back Arnold -Back Ashbee -Back Ashville -Back Ashworth -Back Astley -Back Aston -Back Atlanta -Back Austhorpe -Back Aviary -Back Baldwin -Back Banbury -Back Banstead -Back Bath -Back Baxendale -Back Bay -Back Bay Beach -Back Baythorpe -Back Belmont -Back Bennetts -Back Birley -Back Blackbank -Back Blackburn -Back Bolton -Back Bowen -Back Bowling Green -Back Bradford -Back Bride -Back Bridge -Back Bright -Back Bristol -Back Bromwich -Back Broom -Back Brudenell -Back Brunswick -Back Burley -Back Burnaby -Back Bury -Back Camberley -Back Carl -Back Carter -Back Castle -Back Cautley -Back Cecil -Back Ceder -Back Chalfont -Back Chapel -Back Charlton -Back Chatsworth -Back Chestnut -Back China -Back Church -Back Clarence -Back Clarendon -Back Clegg -Back Clipston -Back Cobden -Back Colenso -Back Collings -Back Coniston -Back Conway -Back Coop -Back Corson -Back Cotton -Back Cranbrook -Back Crawford -Back Crescent -Back Croft -Back Cromer -Back Cross Flatts -Back Cross Green -Back Crown -Back Crumpsall -Back Darcy -Back Darley -Back Darwen -Back Dawlish -Back Dean Church -Back Dent -Back Dobie -Back Dorset -Back Duncan -Back Duxbury -Back East Park -Back Eastbank -Back Eccles -Back Ecclesburn -Back Eckersley -Back Eddisbury -Back Eden -Back Edinburgh -Back Elsworth -Back Empire -Back Ena -Back Eskrick -Back Estcourt -Back Fairhaven -Back Fletcher -Back Florence -Back Fortune -Back Frances -Back Fylde -Back Garton -Back Gaskell -Back Gate -Back Gaythorne -Back George -Back George Barton -Back Gladstone -Back Glen Bott -Back Glossop -Back Gloster -Back Graveley -Back Green -Back Greenhalgh -Back Greenland -Back Gresham -Back Grove -Back Hadwin -Back Haigh -Back Halliwell -Back Halstead -Back Hargreaves -Back Hartley -Back Haydock -Back Headingley -Back Heddon -Back Hessle -Back High -Back High Bank -Back Higher Darcy -Back Highfield -Back Highthorne -Back Hilden -Back Hilton -Back Hind -Back Holly -Back Hope -Back Horsa -Back Howarden -Back Howcroft -Back Hulme -Back Irlam -Back Ivanhoe -Back Ivy Bank -Back James -Back Jubilee -Back Karnak -Back Keighley -Back Kelso -Back Kendal -Back Kingsley -Back Kitson -Back Knowl -Back Landseer -Back Lark -Back Latham -Back Leachfield -Back Leatham -Back Lena -Back Lever Hall -Back Lindley -Back Lodge -Back Long -Back Longworth -Back Lord -Back Loxham -Back Lucas -Back Luton -Back Lytton -Back MAsrhall -Back Mackenzie -Back Manchester -Back Manor -Back Market -Back Marshall -Back Mary -Back Massie -Back Maud -Back Maxwell -Back Mayfield -Back Mayville -Back Maze -Back Meynell -Back Milan -Back Milner -Back Monk Bridge -Back Morritt -Back Nansen -Back Nelson -Back Nevada -Back New York -Back Newton -Back Norris -Back Norwood -Back Nunington -Back Nunroyd -Back Olaf -Back Olga -Back Ollerton -Back Outwood -Back Palm -Back Parkdale -Back Parkville -Back Parnaby -Back Pawson -Back Pine -Back Pleasant -Back Poplar -Back Portugal -Back Preston -Back Primrose -Back Quay -Back Quebec -Back Queen -Back Rainshaw -Back Ranch -Back Rawson -Back Rawsthorne -Back River -Back River Neck -Back Romer -Back Rosamond -Back Rose -Back Roseberry -Back Ryefield -Back Sandhurst -Back Sandy Bank -Back Sapling -Back Savile -Back Scowcroft -Back Seaforth -Back Sefton -Back Seymour -Back Sharman -Back Sholebroke -Back Short -Back South View -Back Southfield -Back Springfield -Back Sunnybank -Back Sunnyside -Back Sutcliffe -Back Talbot -Back Teak -Back Tempest -Back Thicketford -Back Thorn -Back Thorns -Back Thorpe -Back Tong -Back Tonge Old -Back Torr -Back Trafford -Back Turner -Back Ulleswater -Back Union -Back Uttley -Back Vernon -Back Vickerman -Back Victoria -Back Viking -Back Viola -Back Walmsley -Back Walnut -Back Wapping -Back Wardle -Back Wash -Back Water -Back Waverley -Back Webster -Back Wesley -Back Westbury -Back Westfield -Back Westminster -Back Wetherby -Back Wheatfield -Back Wickham -Back Wilton -Back Wolfenden -Back Wood -Back Woodgate -Back Worcester -Back Wordsworth -Back Wright -Back Yates -Back York -Backer Ranch -Backiel -Backlick -Backlund -Backpack -Backriver -Backstone Gill -Backstrad -Backus -Backus Farm -Backwater -Backwoods -Bacon -Bacon Island -Bacon Race -Bacons -Bacton -Bacup -Bad Munstereifel -Badajos -Badajoz -Badcoe -Baddacook Pond -Baddeley -Badding -Baddow -Baddow Hall -Baddow Place -Bade -Badeau -Baden -Baden Naylor -Baden Powell -Baden Spring -Baden Westwood -Badenoch -Bader -Badgally -Badgemore -Badger -Badger Creek -Badger Hall -Badger Pass -Badger Valley -Badger Woods -Badgers -Badgerwood -Badgery -Badgley -Badham -Badian -Badin -Badingham -Badlands -Badlis -Badminton -Badsell -Badshot Lea -Badsworth -Badto -Baemar -Baer -Baert -Baffin -Baffin Bay -Baford -Bafp -Bag -Bagala -Bagatelle -Bagdad -Bagdaly -Bagel -Baggett -Baggins -Baghill -Bagley -Bagleys -Bagnell -Bago -Bagot -Bagpipe -Bags -Bagshaw -Bagshawe -Bagshill -Bagshot -Bagshotte -Bagslate Moor -Bagstock -Baguley -Bagwell -Bahama -Bahia -Bahl -Bahr -Bahram -Baier -Baigents -Baigorry -Baildon -Bailes -Bailey -Bailey Ranch -Bailey Ridge -Baileyana -Baileys -Baileys Crossing -Bailin -Bailiwick -Baillie -Baily -Baimbridge -Bain -Bain Bridge -Bain Ranch -Bainbridge -Bainbrigge -Bainbrook -Baincroft -Baine -Baines -Bainter -Bainton -Baio -Bair Island -Baird -Bairin -Bairn -Baisley -Baiting Place -Baitx -Baizdon -Baja -Baja Sol -Bajada -Baje Industrial -Bajo -Bajor -Bajt -Baker -Baker Bridge -Baker Hill -Baker Park -Bakers -Bakersfield -Bakersmill -Bakersville -Bakestonedale -Bakewell -Bakhouse -Bakken -Bakley -Bal Harbor -Balaam -Balaams -Balaclava -Balaka -Balaming -Balanada -Balance -Baland -Balantine -Balantre -Balas -Balbach -Balbec -Balbeek -Balboa -Balcarres -Balceta -Balch -Balchen -Balchier -Balchins -Balclutha -Balcom -Balcomb -Balcombe -Balcome -Balcorne -Bald Cypress -Bald Eagle -Bald Eagle School -Bald Hill -Bald Nob -Bald Pate -Bald Rock -Balder -Balderstone -Balderton -Baldi -Baldin -Baldo -Baldock -Baldocks -Baldridge -Baldrine -Baldur Park -Baldwin -Baldwin Dam -Baldwin Hill -Baldwin Lake -Baldwins -Baldwyns -Baldy -Bale -Balenese -Balentine -Baler -Baleri Ranch -Bales -Baley Bridge -Balfanz -Balfe -Balfern -Balfour -Balgang -Balgonie -Balgowan -Balgowlah -Balgownie -Balgreen -Balham High -Balham Park -Balhan -Bali -Balint -Balintore -Baliol -Balis -Balk -Balkan -Ball -Ball Hill -Ball Park -Balla -Ballad -Ballamore -Ballance -Ballanda -Ballandella -Ballantine -Ballantrae -Ballantrae Farm -Ballantre -Ballantree -Ballantyne -Ballar -Ballarat -Ballard -Ballards -Ballardvale -Ballast -Ballast Point -Ballater -Ballbrook -Ballena -Ballena Bay -Ballencrieff -Ballenger -Ballens -Ballentine -Balleratt -Ballew -Ballfield -Ballina -Ballindine -Ballingdon -Ballinger -Ballingswood -Balliol -Ballister -Ballman -Balloch -Ballogie -Ballord -Ballou -Ballpark -Ballpate Hill -Balls Bluff -Balls Ford -Balls Head -Balls Hill -Balls Pond -Ballsten -Ballston -Ballum -Ballville -Ballwood -Bally Bunion -Ballybunion -Ballycastle -Ballycor -Ballydrain -Ballymena -Ballymore -Ballyshannon -Balm -Balma -Balmain -Balmanringa -Balmaringa -Balme -Balmer -Balmerino -Balmes -Balmfield -Balmino -Balmoral -Balmoral Forest -Balmoral Greens -Balmoral Woods -Balmore -Balmy -Balnacraig -Balnew -Balog -Balowrie -Balra -Balsa -Balsam -Balsamo -Balsamtree -Balsamwood -Balsawood -Balshaw -Balsm -Balsom -Balston -Balstonia -Balsum -Baltan -Baltes -Baltic -Baltimore -Baltimore Annapolis -Baltimore Hill -Baltimore Washington -Baltus -Baltusrol -Baltz -Baltzer -Balyata -Balzer -Bamarcia -Bambara -Bamber -Bamberg -Bamberger -Bambi -Bamboo -Bambra -Bambrick -Bambridge -Bamburgh -Bambury -Bamfield -Bamford -Bamm Hollow -Bampton -Ban Tara -Banana Grove -Banaro -Banas -Banbal -Banbury -Banbury Ridings -Banchio -Banchory -Bancker -Bancroft -Bancroft Tower -Bancrofts -Band -Bandain -Bandalong -Bandera -Banderra -Bandicoot -Bandley -Bando -Bandol -Bandon -Bandoni -Bandy -Bandy Run -Bane -Baneberry -Banes -Banff -Banff Vista -Banfield -Banfill -Bangalay -Bangalla -Bangalore -Bangalow -Bangert -Bangor -Bangs -Banim -Banister -Baniulis -Banjo -Bank -Bank Bridge -Bank Field -Bank Gate Royd -Bank Hall -Bank Hey Bottom -Bank Hill -Bank House -Bank Mill -Bank Side -Bank Top -Bank Vale -Bankart -Banker -Bankfield -Bankfoot -Bankhall -Bankhead -Bankhouse -Bankley -Banks -Banksfield -Banksia -Bankside -Bankston -Bankton -Bankview -Bankwell -Banky -Banleigh -Bannach -Bannacle Hill -Bannan -Bannard -Bannehr -Banneker -Banner -Banner Farm -Bannerman -Bannerwood -Banning -Bannington -Bannister -Bannisters -Bannock -Bannockburn -Bannon -Bannon Creek -Bannon Off Morse -Banool -Banquo -Banshee -Banshire -Bansom -Banstock -Banta -Bantam Grove -Bantas Point -Banters -Banti -Banting -Bantle Farm -Banton -Bantry -Bantry Bay -Banwell -Banyan -Banyan Tree -Banyard -Banyon -Banyon Ridge -Bapaume -Baptist -Baptista -Bar -Bar Beach -Bar Harbor -Bar Harbour -Bar King -Bar Oak -Bar du -Baragoola -Barambah -Baranbali -Barandas -Baranga -Barangaroo -Baranof -Barb Hill -Barb Werner -Barbadoes -Barbadon -Barbados -Barbara -Barbara Ann -Barbara D -Barbara Dale -Barbara Jean -Barbara Lee -Barbary -Barbee -Barbel -Barber -Barbera -Barberie -Barberry -Barbers -Barbers Corner -Barbers Point -Barbers Wood -Barbersville -Barbery -Barbettini -Barbey -Barbi -Barbican -Barbie -Barbieri -Barbour -Barbour Pond -Barbra -Barbrook -Barbud -Barca -Barcaglia -Barcaly -Barcellona -Barcells -Barcelona -Barchard -Barchester -Barcheston -Barcicroft -Barclay -Barclays -Barcliffe -Barclose -Barco -Barcom -Barcombe -Barcoo -Barcroft -Barcroft Mews -Barczewski -Bard -Bardalino -Bardard -Barden -Bardenville -Bardet -Bardfield -Bardhurst -Bardin -Bardion -Bardmour -Bardney -Bardo -Bardolier -Bardolino -Bardolph -Bardon -Bardoo -Bards -Bardsey -Bardsley -Bardsley Gate -Bardsley Vale -Bardu -Bardue -Bardwell -Bardy -Bare -Bare Cove -Bare Cove Park -Bare Hill -Bare Island -Bare Sky -Bareena -Barefoot -Barefoot Hill -Barehill -Barell -Barellan -Barenscheer -Barett -Barfett -Barff -Barfield -Barford -Barforth -Bargagni -Barge -Barge House -Barge Pier -Bargeman -Barger -Bargers -Bargmann -Bargo -Bargrove -Barham -Barharbor -Barhatch -Bari -Bariadoa -Barina -Barina Downs -Baring -Baring Ridge -Baringa -Barington -Bariston -Barium -Bark -Bark Burr -Bark Hart -Barkala -Barkalow -Barkdoll -Barkduk -Barkei -Barker -Barker Hill -Barkers -Barkers Pt -Barkett -Barkfield -Barkham -Barkhart -Barking -Barkingside High -Barkl -Barkley -Barkley Gate -Barkly -Barksdale -Barksdale Farm -Barkway -Barkwell -Barkwood -Barkworth -Barlas -Barlborough -Barlea -Barleau -Barletta -Barley -Barley Croft -Barley Field -Barley Hall -Barley Hill -Barley Mow -Barley Ponds -Barleycastle -Barleycorn -Barleycroft -Barleylands Farm -Barleymow -Barleywood -Barlik -Barlina -Barling -Barlings -Barlow -Barlow Fold -Barlow Hall -Barlow Moor -Barlow Park -Barlow Wood -Barlowe -Barmeston -Barmhouse -Barming -Barmouth -Barn -Barn Cottage -Barn Croft -Barn Hill -Barn House -Barn Owl -Barn Ridge -Barn Swallow -Barn Wood -Barna -Barnabas -Barnabe -Barnabe Mountain Fire -Barnabus Mill -Barnaby -Barnaby Run -Barnack -Barnacre -Barnacres -Barnard -Barnardo -Barnards -Barnboard -Barnbrough -Barnby -Barncleuth -Barncroft -Barndance -Barnecat -Barnegat -Barnehurst -Barnell -Barner -Barnert -Barnes -Barnes Cray -Barnes Hill -Barnes Lake -Barnes Mill -Barnes Wallis -Barnesdale -Barneson -Barnestead -Barnesville -Barneswell -Barneswood -Barnet -Barnet Chesterfield -Barnet Salisbury -Barnet Church Wood -Barnet Gate -Barnet High -Barnet Park -Barnet Side -Barnett -Barnett Valley -Barnett Wood -Barnetts -Barnetts Wood -Barneveld -Barney -Barney Hill -Barnfield -Barngate -Barnhall -Barnham -Barnhart -Barnheisel -Barnhill -Barnhouse -Barnhurst -Barnida -Barnier -Barnmead -Barns -Barnsboro -Barnsbury -Barnsdale -Barnsfield -Barnsfold -Barnside -Barnsley -Barnsole -Barnstable -Barnstaple -Barnstead -Barnston -Barnswallow -Barnum -Barnums -Barnwall -Barnwell -Barnwood -Barnyard -Baroda -Barola -Barolo -Barombah -Baron -Baron Cameron -Baron Kent -Baron Park -Baronbali -Barone -Baroness -Baronet -Baronhurst -Baronnel -Barons -Barons Court -Baronsfield -Baronsmead -Baronsmere -Barooga -Baroona -Baroque -Barossa -Barott -Barouche -Barque Hill -Barr -Barr Creek -Barr Elms -Barra -Barrabooka -Barracane -Barrack -Barracks -Barragulung -Barranca -Barraran -Barras -Barras Garth -Barrass -Barratt -Barrawinga -Barre -Barrel -Barrel House -Barremma -Barrena -Barrenger -Barrenjoey -Barrensdale -Barret -Barrett -Barrette -Barretto -Barretts -Barretts Green -Barretts Mill -Barreville -Barrfield -Barrhurst -Barri -Barrick -Barrie -Barrie Lynn -Barrier -Barrington -Barrington Bourne -Barrington Bridge -Barrington Hills -Barrington Point -Barrister -Barrley -Barroilhet -Barroll -Barron -Barron Field -Barron Heights -Barron Park -Barrons Reach -Barros -Barrow -Barrow Bridge -Barrow Furnace -Barrow Green -Barrow Hall -Barrow Hill -Barrow Point -Barrow on Duxbury -Barrowby -Barrowfield -Barrowgate -Barrows -Barrs -Barrs Fold -Barrsbrook Farm -Barrule -Barrus -Barry -Barry Point -Barrymeade -Barrymore -Barrypoint -Barrys Hill -Barsalugia -Barsby -Barsden -Barse -Barsenden -Barsham -Barson -Barstable -Barston -Barstow -Bart -Barta -Bartch -Barteau -Bartel -Bartell -Bartelmy -Bartels -Bartelt -Barter -Barth -Barth Pond -Bartha -Barthel -Barthelone -Barthold -Bartholdi -Bartholf -Bartholomew -Bartholomew Fair -Barthorpe -Bartina -Bartle -Bartlemore -Bartleson -Bartlet -Bartlets -Bartlett -Bartletts -Bartley -Bartman -Barto -Bartol -Bartolini -Bartolomei -Barton -Barton Creek -Barton Dock -Barton Hall -Barton Hill -Barton Manor -Bartons -Bartosh -Bartow -Bartram -Bartrams -Bartrip -Bartsch -Bartson -Barttelot -Bartz -Barunga -Barway -Barwell -Barwick -Barwick Main -Barwon -Barwon Park -Barwood -Basalt -Basalt Rock Company -Basbow -Basch -Bascom -Bascombe -Base -Basel -Baseline -Basewood -Basford -Bashall -Bashaw -Basher -Bashford -Bashford Barn -Basil -Basildon -Basile -Basilica -Basill -Basilon -Basils -Basilwood -Basin -Basing -Basingbourne -Basingfield -Basinghall -Basingstoke -Baskenridge -Baskerville -Basket -Basket Ring -Baskin -Baskin Service -Basking -Basking Ridge -Basler -Baslers -Baslow -Basmore -Basque -Bass -Bass Lake -Bass Point -Bass Pond -Bass Pro -Bass River -Bass Rock -Bassant -Basse -Bassel -Bassenthwaite -Basset -Bassetsbury -Bassett -Bassett Creek -Bassett Crk -Bassetts -Bassford -Bassil -Bassin -Bassingbourn -Bassingham -Bassler -Basswood -Bast -Bastable -Basted -Basten -Bastia -Bastian -Bastille -Bastion -Bastogne -Baston -Baston Manor -Bastona -Bastoni -Bastwick -Basuto -Bata -Bataan -Batacao -Batavia -Batchelder -Batchelder Park -Batcheller -Batchelor -Batchelors -Batchelors Choice -Batchwood -Batchworth -Batcliffe -Bate -Bate Bay -Bateman -Batemans -Batemill -Bates -Bates Farm -Bates Grove -Bates Park -Bates Point -Batesole -Bateson -Bateswell -Batey -Batford -Bath -Bath Hard -Bath House -Batham Gate -Bather -Bathgate -Bathhurst -Bathing Beach -Batho -Bathol -Baths -Bathurst -Batista -Batley -Batley Commercial -Batley Cross Bank -Batman -Baton -Baton Rouge -Batridge -Batson -Batsworth -Batt -Battaglia -Battalion -Battee -Batten -Batten Hollow -Battenburg -Batter -Battersby -Battersea -Battersea Bridge -Battersea Church -Battersea Park -Battery -Battery Blaney -Battery Chamberlin -Battery Cranston -Battery Dynamite -Battery East -Battery Heights -Battery Ridge -Battery Safford -Battery Wagner -Batterymarch -Batti -Battin -Battishill -Battle -Battle Bridge -Battle Creek -Battle Dance -Battle Flagg -Battle Green -Battle Ridge -Battle Rock -Battlebridge -Battledean -Battlefield -Battlefields -Battlehill -Battlement -Battles -Battles Farm -Battlesden -Battlesmere -Battock -Batts -Batts Bridge -Batty -Battye -Bauer -Bauers Farm -Baugh -Baugher -Baugher Farm -Baughman -Baulkham Hills -Baum -Bauman -Baumann -Baumans -Baumbach -Baumberg -Baumer -Baumert -Baumgartner -Baur -Bausell -Bausum -Bautista -Bavant -Bavaria -Bavarian Shores -Bavent -Bavin -Bawan -Bawdale -Bawn -Baxendale -Baxter -Baxters -Bay -Bay Beach -Bay Breeze -Bay Canyon -Bay Cliff -Bay Club -Bay Colony -Bay Creek -Bay Crest -Bay Dale -Bay Edge -Bay Farm -Bay Farms -Bay Flat -Bay Forest -Bay Front -Bay Green -Bay Harbor -Bay Harbour -Bay Haven -Bay Head -Bay Heights -Bay Highlands -Bay Hill -Bay Hills -Bay Horse -Bay Laurel -Bay Meadows -Bay Park -Bay Path -Bay Pond -Bay Reef -Bay Ridge -Bay Shore -Bay Side -Bay Terrace -Bay To Bay -Bay Town -Bay Tree -Bay Valley -Bay View -Bay View Farm -Bay View Point -Bay Vista -Bay Water -Bay Wood -Bayard -Baybell -Bayberrie -Bayberry -Bayberry Hill -Bayberry Ridge -Baybriar -Baybridge -Baybrook -Baybury -Baybutt -Baychester -Baycliff -Baycliffe -Baydon -Bayeau -Bayer -Bayfair -Bayfield -Bayford -Bayfront -Bayhall -Bayham -Bayhead -Bayhill -Bayhills -Bayhorne -Bayhurst -Baylands -Baylawn -Baylee -Bayles -Bayless -Bayley -Baylie -Baylight -Bayliner -Baylis -Bayliss -Baylor -Bayly -Baymeadow -Baynard -Bayne -Baynes -Bayns Hill -Baynton -Bayo -Bayo Vista -Bayona -Bayonne -Bayou -Bayou Bend -Baypath -Baypoint -Baypoint Village -Baypointe -Bayport -Bayrd -Bayridge -Bayshire -Bayshore -Bayside -Bayside Beach -Bayside Park -Bayston -Bayswater -Baytech -Baythorne -Baythorpe -Baytomac Farms -Bayton -Baytree -Bayview -Bayview Beach -Bayview Hill -Bayview Hills -Bayview Park -Bayville -Bayville Park -Baywalk -Baywater -Bayway -Baywind -Baywolf -Baywood -Baywood Shores -Baywoods -Bazeley -Bazentin -Bazley -Bazz -Bb -Bea -Bea Kay -Beach -Beach Bluff -Beach Channel -Beach Haven -Beach Hill -Beach Lake -Beach Mill -Beach Park -Beach Pines -Beach Plum -Beach Point -Beach Side -Beach Spring -Beach View -Beacham -Beachamwell -Beachborough -Beachcomber -Beachcroft -Beachfield -Beachfront -Beachhall -Beachland -Beachler -Beachley -Beachmont -Beachnut -Beachplum -Beachs -Beachside -Beachview -Beachview Creek -Beachville -Beachway -Beachwood -Beachwood Park -Beachy -Beacom -Beacon -Beacon Bay -Beacon Heights -Beacon Hill -Beacon Hollow -Beacon Light -Beacon Oak -Beacon Park -Beacon Point -Beacon Pond -Beacon Ridge -Beacon Shores -Beacon View -Beaconfield -Beaconridge -Beaconsfield -Beaconsfield Common -Beaconsfield Terrace -Beacontree -Beaconwood -Beacrane -Beadel -Beadham -Beadle -Beadles -Beadlow -Beadman -Beadnell -Beadon -Beaford -Beaghan -Beagles Wood -Beak -Beal -Beale -Beales -Beales Wood -Bealey -Beall -Beall Mountain -Beall Spring -Bealle Hill -Beallsville -Bealmear Mill -Beals -Beam -Beaman -Beamer -Beames -Beaminster -Beamis -Beamish -Beamon -Beamont -Beamsley -Bean -Bean Creek -Bean Field -Bean Hill -Bean Hill Orchard -Bean Hollow -Bean Leach -Beancroft -Beane -Beanes -Bear -Bear Brook -Bear Canyon -Bear Creek -Bear Creek Canyon -Bear Cub -Bear Flag -Bear Forest -Bear Glen -Bear Gulch -Bear Hill -Bear Island -Bear Min -Bear Mountain -Bear Oaks -Bear Paw -Bear Ridge -Bear River -Bear Swamp -Bear Tooth -Bear Valley -Bearce -Bearcloud -Beard -Beardall -Beardell -Bearden -Beardon -Beards -Beards Creek -Beards Point -Beardslee -Beardsley -Beardsmore -Beardwood -Bearfield -Bearfoot -Bearfort -Bearhurst -Bearinda -Bearing -Bearpath -Bears -Bears School -Bearse -Bearskin Farm -Bearsted -Bearton -Bearwood -Bearwoods -Beasley -Beathwaite -Beatie -Beatrice -Beatrice Wignall -Beatricia -Beatrix -Beatriz -Beatson -Beattie -Beatty -Beatty Ridge -Beau -Beau Bien -Beau Brummel -Beau D Rue -Beau Meade -Beau Monde -Beau Pre -Beau Ridge -Beaubien -Beauchamp -Beauchamps -Beaudet -Beaudin -Beaudry -Beaufield -Beauford -Beauforest -Beaufort -Beaufoy -Beaufront -Beaulieu -Beaumant -Beaumaris -Beaumeadow -Beaumis -Beaumond -Beaumont -Beaumont Canyon -Beaumont Hall -Beaumont Park -Beauport -Beauregard -Beaurepaire -Beausoleil -Beauteau -Beauty Beach -Beauty Point -Beautys Hill -Beauval -Beauvale -Beauvoir -Beaux Arts -Beaven -Beaver -Beaver Brook -Beaver Creek -Beaver Dam -Beaver Dam Park -Beaver Ford -Beaver Heights -Beaver Hill -Beaver Hollow -Beaver Knoll -Beaver Meadow -Beaver Mill -Beaver Park -Beaver Pond -Beaver Ridge -Beaver Run -Beaverbank -Beaverbrok -Beaverbrook -Beavercreek -Beaverdale -Beaverdam -Beaverkill -Beavers -Beaverwood -Beavours -Beawick -Bebbington -Bebe -Bebelong -Bebout -Becado -Beccles -Becerra -Becharry -Bechaud -Bechert -Bechstein -Bechtel -Bechtold -Beck -Beck Creek -Beckbridge -Beckenham -Beckenham Hill -Becker -Becker Farm -Beckerle -Beckers Green -Beckert -Becket -Becket Meadow -Beckett -Beckett Crossing -Becketts -Beckfield -Beckfoot -Beckford -Beckham -Beckhaus -Beckingham -Beckington -Beckland -Beckler -Beckley -Becklow -Beckman -Becknel -Becks -Beckton -Beckway -Beckwith -Beckworth -Becky -Becky Lynn -Beclan -Beclands -Becola -Becondale -Becontree -Becontree Lake -Bedal -Bedale -Bedder -Beddington -Beddington Farm -Beddlestead -Beddoo -Bede -Bedell -Bedells -Bedens -Bederwood -Bedevere -Bedfont -Bedford -Bedford Park -Bedfordshire -Bedgebury -Bedivere -Bedlam -Bedle -Bedlington -Bedloes -Bedlow -Bedmond -Bednal -Bedonwell -Bedrock -Bedser -Bedwardine -Bedwell -Bedwin -Bedwins -Bee -Bee Bee -Bee Biology -Bee Fold -Bee Hive -Bee Oak -Beebe -Beeby -Beech -Beech Bottom -Beech Creek -Beech Down -Beech Farm -Beech Forest -Beech Glen -Beech Hall -Beech Hangers -Beech Hayes -Beech Hill -Beech Hollow -Beech Housre -Beech Hyde -Beech Park -Beech Ridge -Beech Spring -Beech Tree -Beech Trees -Beecham -Beechbank -Beechbrook -Beechcraft -Beechcrest -Beechcroft -Beechdale -Beechdrop -Beechen -Beechen Bank -Beechenlea -Beecher -Beeches -Beeches Farm -Beechfern -Beechfield -Beechgreen -Beechgrove -Beechhill -Beechhurst -Beechin Wood -Beeching -Beechknoll -Beechland -Beechlands -Beechmont -Beechmore -Beechnut -Beecholme -Beechpark -Beechstone -Beechtree -Beechview -Beechvue -Beechway -Beechwood -Beechworth -Beechy -Beechy Lees -Beecot -Beecroft -Beede -Beedell -Beedingwood -Beedle -Beedon -Beeger -Beehag -Beehive -Beehive Beach -Beehrle -Beekay -Beekey -Beekman -Beekman Hill -Beel -Beelar -Beelard -Beeleigh -Beeler -Beeley -Beeline -Beelong -Beeman -Beemer -Beemera -Beemra -Beers -Beesfield -Beeson -Beesonend -Beeston -Beet -Beet Wagon -Beeth -Beethoven -Beever -Beffa -Bega -Begen -Beggarhouse -Beggars -Beggars Hill -Beggarsbush -Beggers Bush -Beggs -Begier -Begonia -Behan -Beharrel -Beharrell -Behler -Behm -Behmer -Behn -Behnke -Behoes -Behr -Behrendt -Behrens -Behrns -Behun -Bei -Beige -Beiling -Beinoris -Beira -Beiriger -Beith -Beitzel -Bejay -Bekeswell -Bel Air -Bel Air Plantation -Bel Aire -Bel Ayre -Bel Canto -Bel Escou -Bel Estos -Bel Glade -Bel Mar -Bel Marin Keys -Bel Pre -Bel Red -Bel Roma -Bela -Belah -Belair -Belaire -Belanger -Belar -Belarre -Belbeck -Belburn -Belcamp -Belchamps -Belchams -Belcher -Belcher Farm -Belchers -Belclare -Belconte -Belcot -Belcourt -Belcrest -Belcroft -Beldam -Beldam Bridge -Beldams -Belden -Belder -Beldham -Beldhams -Beldin -Belding -Beldon -Belec -Belemba -Belevedere -Belfair -Belfairs -Belfairs Park -Belfast -Belfield -Belfield Old -Belfiore -Belford -Belfort -Belfry -Belgarden -Belgaro -Belgatos -Belgenny -Belgian -Belgica -Belgium -Belglen -Belgrade -Belgrave -Belgravia -Belgreen -Belgrove -Belham -Belhaven -Belhurst -Belick -Belinda -Belinder -Belinus -Belisle -Belita -Beliveau -Belknap -Bell -Bell Air -Bell Bluff -Bell Branch -Bell Bridge -Bell Canyon -Bell Chase -Bell Clough -Bell Creek -Bell Executive -Bell Farm -Bell Flower -Bell Foundry -Bell Green -Bell Hill -Bell House -Bell Laboratories -Bell Meadow -Bell Oak -Bell Oaks Estates -Bell Rock -Bell Rose -Bell Tower -Bell Tree -Bell Vale -Bell Vue -Bella -Bella Casa -Bella Coola -Bella Lago -Bella Madeira -Bella Oaks -Bella Terra -Bella Tuscany -Bella Villa -Bella Vista -Bellafiore -Bellagio -Bellain -Bellair -Bellaire -Bellaire Hills -Bellam -Bellambi -Bellamere -Bellamy -Bellamy Farm -Bellanca -Belland -Bellantoni -Bellara -Bellasis -Bellaterea -Bellaterra -Bellatrix -Bellavia -Bellavista -Bellbird -Bellbrook -Bellbrooke -Bellcast -Bellcastle -Bellclose -Belle -Belle Aire -Belle Ami -Belle Angela -Belle Chasse -Belle Cote -Belle Crest -Belle Fontaine -Belle Foret -Belle Grae -Belle Grove -Belle Haven -Belle Isle -Belle Marie -Belle Meade -Belle Monti -Belle Plaine -Belle Plains -Belle Point -Belle Pond -Belle Roche -Belle Terra -Belle Terre -Belle View -Belle Vista -Belle Vue -Belle of Georgia -Belleair -Belleaire -Belleau -Belleau Woods -Bellechase -Bellecrest -Bellefair -Bellefield -Bellefield Park -Bellefields -Belleflower -Bellefonte -Belleforest -Belleforte -Bellegrove -Bellemaine -Bellemeade -Bellenden -Belleplaine -Beller -Bellerive -Bellerose -Belles -Belleterre -Belleto -Belletto -Bellevale -Belleverde -Belleview -Belleville -Bellevista -Bellevue -Bellevue Hill -Bellevue Park -Bellevue Redmond -Bellew -Bellewood -Belleza -Bellfield -Bellfields -Bellflower -Bellgrove -Bellham -Bellhaven -Bellhouse -Bellhurst -Belli -Bellina -Bellina Canyon -Bellingara -Bellingdon -Bellinger -Bellingham -Bellingrath -Bellington -Bellman -Bellmarsh -Bellmeade -Bellmere -Bellmill -Bellmont -Bellmore -Bellmount Wood -Bello -Bellombi -Bellomo -Bellomy -Bellona -Belloreid -Bellot -Bellotti -Bellows -Bellows Hill -Bellplaine -Bellport -Bellridge -Bellrive -Bellrock -Bellrose -Bells -Bells Croft -Bells Hill -Bells Mill -Bells Ridge -Bellsbrae -Bellstone -Bellswood -Bellthorne -Belltower -Bellue -Belluno -Belluscio -Bellvale -Bellview -Bellville -Bellvista -Bellvue -Bellwood -Belmar -Belmart -Belmer -Belmers -Belmill -Belmohr -Belmond -Belmonde -Belmont -Belmont Bay -Belmont Canyon -Belmont Grove -Belmont Harbor -Belmont Landing -Belmont Park -Belmont Place -Belmont Ridge -Belmont Woods -Belmore -Belnap -Belnay -Belnel -Belnor -Beloit -Belot -Belpark -Belper -Belport -Belridge -Belrose -Belsham -Belshaw -Belsize -Belson -Belsteads Farm -Belswaine -Belswains -Belt -Beltagh -Beltana -Beltane -Belter -Beltinge -Beltline -Belton -Beltrami -Beltran -Beltring -Belts -Beltsville -Beltwood -Beltz -Belva -Belvale -Belvedere -Belverere -Belvidere -Belvidere Line -Belview -Belvoir -Belvoir Farm -Belvoir Woods -Belvor -Belvue -Belvue Close Belvue -Belward Campus -Belwood -Bembe Beach -Bembridge -Bement -Bemerton -Bemis -Bemis Heights -Bemish -Bempton -Bemrose -Bemsted -Bemuth -Ben -Ben Boyd -Ben Eden -Ben Franklin -Ben Howard -Ben Jones -Ben Jonson -Ben Ledi -Ben Levin -Ben Lomond -Ben Lomond Park -Ben Lomond Toll -Ben More -Ben Nevis -Ben Oak -Ben Oaks -Ben Roe -Bena -Benalla -Benalong -Benares -Benaroon -Benassi -Benaud -Benavente -Benbo -Benbow -Benbrick -Benbrook -Benburb -Benbury -Bench -Benchill -Benchleys -Benchmark -Bencich -Bencliffe -Bencombe -Bencoolen -Bencroft -Bend -Bend Circle -Bend of River -Benda -Bendale -Bendall -Bendemeer -Bendemere -Bender -Benders -Bendigo -Bending -Bendish -Bendix -Bendlowes -Bendmore -Bendorf -Bendysh -Bendywine -Benecia -Benedetti -Benedick -Benedict -Benedictine -Benefit -Benefly -Benelli -Benelong -Benenden -Benenson -Benet -Benetfield -Benets -Benett -Benevides -Benfield -Benfleet -Benfleet Park -Benford -Benforest -Bengal -Bengarth -Bengeo -Bengeworth -Bengeyfield -Benghazi -Bengloe -Benham -Benhams -Benhardt -Benhenry -Benhill -Benhooks -Benhurst -Benich -Benicia -Benine -Beninford -Bening -Beningfield -Benington -Benita -Benita Fitzgerald -Benito -Benjamin -Benjamin Day -Benjamin Franklin -Benjamin Kidder -Benjamins -Benjoe -Benkert -Benledi -Benmere -Benmor -Benmore -Benn -Bennacott -Bennalong -Benndorf -Bennel -Bennelong -Benner -Bennerley -Bennet -Bennetsfield -Bennett -Bennett End -Bennett Hill -Bennett Meadows -Bennett Ridge -Bennett Valley -Bennett View -Bennetta -Bennetts -Bennetts End -Bennetts Grove -Benning -Benningfield -Benningholme -Benninghton -Bennington -Bennington Hollow -Bennington Woods -Bennion -Bennison -Bennit -Benny -Benoit -Benoni -Benover -Benoy -Benris -Bens -Bensbach -Bensham -Bensham Manor -Bensin -Benskin -Benskins -Bensley -Benslow -Benson -Benson Ferry -Bensonhurst -Benstone -Bensville -Bent -Bent Bough -Bent Brook -Bent Creek -Bent Cross -Bent Fold -Bent Grass -Bent Hill -Bent Maple -Bent Oak -Bent Ridge -Bent Spur -Bent Tree -Bent Tree Hills -Bent Twig -Bent Water -Bent Willow -Bentay -Bentcliffe -Bentella -Bentfield -Bentgate -Benthal -Bentham -Bentinck -Bentink -Bentley -Bentley Hall -Bentley Heath -Bentley Ridge -Bentley Village -Bently -Bentnor -Bento -Bentoak -Benton -Benton Creek -Benton Park -Benton Square -Bentonbrook -Bentree -Bentridge -Bentry -Bents -Bentsbrook -Bentside -Bentson -Bentswood -Benttree -Bentwaters -Bentwillow -Bentwood -Bentwoods -Bentworth -Benty -Bentzen -Benvenue -Benwell -Benwerrin -Benworth -Benyon -Benz -Benziger -Benzo -Benzon -Bepler -Bepton -Berachan -Berallier -Beram -Berambil -Berard -Berber -Berberis Walk Laurel -Berbice -Bercaw -Bercik -Berckman -Bercta -Bercut -Berdan -Berdina -Berdnick -Bere -Berea -Berechurch -Berechurch Hall -Beredens -Berendos -Berengrave -Berens -Beres Ford -Beresford -Beresini -Berestede -Beret -Beretta -Berg -Bergamont -Bergamot -Berge -Bergen -Bergen Hill -Bergen Ridge -Bergenfield -Bergenline -Bergenwood -Berger -Bergerac -Bergeron -Berges -Bergholt -Bergholz -Bergin -Berglund -Bergman -Bergonia -Bergstrom -Bergthold -Beridge -Berilda -Berith -Berk -Berkeley -Berkeley Court -Berkeley Park -Berkely -Berkenshire -Berkey -Berkhampstead -Berkhamsted -Berking -Berkley -Berkley Manor -Berkmans -Berkowitz -Berks -Berkshire -Berkshire Woods -Berlant -Berlee -Berlin -Berliz -Berma -Berman -Bermar -Bermer -Bermill -Bermondsey -Bermondsey Long -Bermuda -Bern -Berna -Bernacci -Bernadette -Bernadine -Bernado -Bernadotte -Bernal -Bernal Heights -Bernard -Bernard Ashley -Bernard Cassidy -Bernardine -Bernardo -Bernas -Bernath -Bernay -Bernds -Berne -Bernel -Berner -Bernera -Berners -Bernhard -Bernhardt -Bernice -Bernie -Bernie Kelly -Bernie Ruth -Bernier -Bernini -Bernisdale -Bernita -Bernon -Bernstein -Bernt -Bernyce -Bero -Beronga -Berowra -Berrellessa -Berrendo -Berrian -Berridale -Berridge -Berries -Berrigan -Berrille -Berrillee -Berrima -Berriman -Berring -Berrington -Berristall -Berriton -Berritt -Berry -Berry Corner -Berry Cove -Berry Creek -Berry Hill -Berry Mill -Berry Patch -Berry Pond -Berry Ridge -Berrybush -Berrycroft -Berrydale -Berrydown -Berryessa -Berryfield -Berryhill -Berryland -Berrylands Avalon -Berryleaf -Berryman -Berrymede -Berrypick -Berrys -Berrys Hill -Berryscroft -Berrywood -Bersano -Bersham -Berstein -Bert -Berta -Berta Canyon -Berta Views -Bertal -Berteau -Bertenshaw -Bertero -Berth -Bertha -Berthold -Berthole -Berthon -Berthoud -Bertie Minor -Bertine -Bertini -Bertis -Bertita -Bertito -Bertlee -Bertling -Bertmore -Bertocchi -Bertola -Bertoldo -Bertoli -Bertolli -Bertolotto -Berton -Bertram -Bertrand -Berts -Bertsky -Bertuccio -Bertwell -Berverdor -Berwick -Berwick Pond -Berwin -Berwind -Berwood -Berwyn -Berwyn House -Berwynd -Beryl -Beryllium -Berylwood -Besana -Besant -Besborough -Besco -Beskeen -Besler -Besley -Beslyns -Besom -Besonend -Bess -Bessant -Bessborough -Bessels Green -Bessemer -Bessemund -Bessida -Bessie -Bessie Coleman -Bessingby -Bessle -Bessmer -Besso -Bessom -Bessy -Best -Bestgate -Bestic -Bestick -Bestobell -Beston -Bestor -Bestwicke -Beswick -Beswicke Royds -Beswicks -Beta -Betabel -Betam -Betchets Green -Betchworth -Betenson -Beth -Beth David -Beth Israel -Beth Lee -Bethal -Bethany -Bethards -Bethayres -Bethecar -Bethel -Bethel Church -Bethel Island -Bethelen Woods -Bethersden -Bethesda -Bethia -Bethlehem -Bethlehem Church -Bethnal Green -Bethnall -Bethpage -Beths -Bethune -Betlen -Betley -Betleymere -Betlin -Betlo -Betnor -Betola -Betoyne -Betsham -Betson -Betstyle -Betsy -Betsy Brown -Betsy Davis -Betsy Ross -Bette -Betteker -Bettencourt -Bettenhausen -Betterton -Bettescombe -Bettina -Bettinelli -Bettington -Bettinson -Bettio -Bettis -Bettison -Bettowynd -Bettridge -Betts -Bettswood -Betty -Betty Ann -Betty Crocker -Betty Cuthbert -Betty Grove -Betty Lou -Betty Mae -Betula -Betz -Beulah -Beulah Park -Beult -Beumont -Beuna Vista -Beutke -Beutler -Bev -Bev Cunha County -Bevan -Bevans -Bevanwood -Bevard -Beveland -Beveridge -Beverlee -Beverley -Beverly -Beverly Hill -Beverly Hills -Beverly J Griffin -Beverly Jay -Beverly Manor -Beverly Park -Bevern -Bevers -Beversbrook -Beverstone -Bevier -Bevil -Bevilacqua -Bevin -Bevin Brook -Bevington -Bevins -Bevis -Bevmar -Bewbush -Bewdley -Bewick -Bewlbridge -Bewley -Bewlys -Bexhill -Bexley -Bexley High -Bexon -Bexton -Beyer -Beynon -Beythe -Beza -Bezant -Bezos -Bi County -Biagar -Bianca -Bianchi -Bianco -Biara -Biarritz -Biava -Bibbenluke -Bibbits -Bibbs -Bibbs Hall -Bibby -Bibeau -Bibel -Bible -Bible Baptist Church -Bibsworth -Bibury -Bicek -Bicentennial -Bicester -Bichner -Bickell -Bickerdike -Bickershaw -Bickerstaff -Bickersteth -Bickertoh -Bickerton -Bickford -Bickleigh -Bickley -Bickling -Bicknell -Bicknell Hill -Bicknoiler -Bicknoller -Bicknor -Bidborough -Biddall -Bidden -Biddenden -Bidder -Biddestone -Biddle -Biddleford -Biddulph -Bideford -Bidgee -Bidston -Bidurgal -Bidwell -Bieber -Bieghle -Biehn -Biel -Bielawski -Bielby -Bielenberg -Bieneman -Bienville -Bierline -Biermann -Bierstan -Bies -Biesi -Biesterfield -Biffins -Bifrost -Big Axe -Big Barn -Big Basin -Big Bear -Big Bend -Big Blue -Big Bluestem -Big Branch -Big Break -Big Burn -Big Canyon -Big Circle -Big Common -Big Creek -Big Dipper Ranch -Big Foot -Big Fox -Big Horn -Big Indian -Big Island -Big Lake -Big Live Oak -Big Oak -Big Peninsula -Big Piece -Big Pine -Big Plum -Big Pool -Big Ramapo -Big Ranch -Big Rock -Big Rock Ridge -Big Rock Ridge Fire -Big Run -Big Spring -Big Springs -Big Springs Canyon -Big Sur -Big Timber -Big Tree -Big Valley -Big Woods -Bigelow -Bigfrith -Biggar -Bigge -Bigger -Biggers -Biggerstaff -Biggin -Bigginwood -Biggs -Biggs Grove -Biggs Purchase -Bigham -Bighorn -Bighorn Sheep -Bight -Bighton Dean -Bigland -Biglow -Bigmore -Bignell -Bigney -Bignor -Bigonia -Bigthan -Bigwood -Bija -Bijou -Bikila -Bikini -Bilambee -Bilbao -Bilberry -Bilbo -Bilbrook -Bilby -Bilga -Bilgola -Bilkurra -Bill -Bill Aldis -Bill Carr -Bill Ferguson -Bill Graham -Bill Hoare -Billa -Billabong -Billadell -Billams Hill Farnley -Billand Common -Billara -Billard -Billarga -Billarong -Billeci -Billerica -Billericay -Billeroy -Billett -Billie -Billie Limacher -Billie Smith Memorial -Billing -Billingbauk -Billingham -Billings -Billingsgate -Billingshurst -Billingsley -Billington -Billinton -Billiou -Billiter -Billman -Billong -Billop -Billou -Billow -Billows -Billrose -Bills -Billson -Billy -Billy Bob -Billy Casper -Billy Diehl -Billy Lows -Billyard -Billys -Bilney -Biloba -Bilodeau -Biloolo -Bilpin -Bilsen -Bilter -Biltmore -Biltom -Bilton -Bimbadeen -Bimbil -Bimburra -Bimini -Binalong -Binaville -Bincote -Binda -Bindaree -Bindari -Bindea -Binden -Binder -Binet -Binfield -Binford -Bing -Bingara -Bingen -Binger -Bingfield -Binggelli -Bingham -Bingham Hill -Binghampton -Binghamton -Bingle -Bingley -Bingo Lake -Bings -Bingswood -Binkey -Binks -Binley -Binn -Binna Burra -Binnacle -Binnari -Binnaway -Binnett -Binney -Binney Park -Binnie -Binning -Binnowee -Binns -Binns Nook -Binscombe -Binstead -Binsted -Binton -Binya -Binyon -Bionda -Biondi -Bionia -Biotechnology -Bir -Birbetts -Birch -Birch Bark -Birch Bend -Birch Brush -Birch Cliff -Birch Cove -Birch Creek -Birch Green -Birch Hall -Birch Hill -Birch Island -Birch Knoll -Birch Lake -Birch Lakes -Birch Meadow -Birch Pond -Birch Ranch -Birch Ridge -Birch Run -Birch Tree -Birchall -Bircham -Birchanger -Birchard -Birchbark -Birchbaugh -Birchbrook -Birchbrow -Birchcliff -Birchcrest -Birchcroft -Birchdale -Birchdene -Birchell -Birchen -Birchenall -Birchenlea -Bircher -Bircherley -Birches -Birches Croft -Birchett -Birchetts -Birchetts Green -Birchfield -Birchfields -Birchgrove -Birchill -Birchin -Birchin Cross -Birchington -Birchleaf -Birchmead -Birchmeadow -Birchmont -Birchmore -Birchmount -Bircholt -Birchpond -Birchside -Birchtree -Birchvale -Birchview -Birchwood -Birchwood Grove -Birchwood Hill Ring -Birchwood Park -Bird -Bird Hall -Bird Hill -Bird In Bush -Bird In Hand -Bird in Bush -Bird in Hand -Birdale -Birdbrook -Birdcage -Birdcage Center -Birdcherry -Birdcroft -Birdfoot -Birdhill -Birdhurst -Birdie -Birds Farm -Birds Hill -Birds Landing -Birdsall -Birdsboro -Birdseye -Birdsfield -Birdsfoot -Birdsong -Birdsville -Birdswood -Birdwood -Birfield -Birginal -Birinta -Birk -Birkbeck -Birkby -Birkdale -Birken -Birkendene -Birkenhead -Birkenshaw -Birkenshaw Town -Birkett -Birkey -Birkhall -Birkhead -Birkhofer -Birkin -Birkinheath -Birklands -Birkle -Birkley -Birks -Birkwood -Birley -Birling -Birmingham -Birmington -Birnam -Birnam Wood -Birnamwood -Birney -Birnham -Birnie -Birok -Birrell -Birrellea -Birriga -Birrima -Birriwa -Birrong -Birs -Birstall -Birt -Birtch -Birtle -Birtles -Birtlespool -Birtrick -Birtwistle -Birubi -Birunna -Biruta -Birwood -Bisacno -Bisbee -Biscay -Biscayne -Bisceglia -Bischoff -Biscot -Bisenden -Bisham -Bishoff -Bishop -Bishop Carroll -Bishop Hall -Bishop Ken -Bishop Pine -Bishop R Allen -Bishopdale -Bishopgate -Bishops -Bishops Bequest -Bishops Castle -Bishops Content -Bishops Down -Bishops Down Park -Bishops Gate -Bishops Hall -Bishopscote -Bishopsford -Bishopsgate -Bishopsmead -Bishopsthorpe -Bishopstone -Bishopswood -Bishopton -Bisland -Bisley -Bismach -Bismarck -Bismark -Bismire -Bismuth -Bisner -Bison -Bisordi -Bispham -Bisque -Bissel -Bissell -Bissett -Bisshop -Bisso -Bisson -Bisterne -Biter -Bithell -Bither -Bitola -Bittacy -Bittacy Park -Bittams -Bitter Oak -Bitter Sweet -Bittercreek -Bittern -Bitterne -Bitternut -Bitterroot -Bittersweet -Bitterwater -Bitting -Bittle -Bittner -Bitty -Bivona -Biwana -Bix -Bixby -Bixby Hill -Bixler -Bixley -Bizzaro -Bizzibe -Bjerstedt -Bjork -Bjorkman -Bjune -Bjur -Blachley -Black -Black Alder -Black Arrow -Black Bass -Black Bear -Black Beech -Black Birch -Black Boy -Black Branch -Black Briar -Black Brook -Black Bull -Black Bush -Black Chapel -Black Chestnut -Black Crow -Black Diamond -Black Duck -Black Eagle -Black Feather -Black Forest -Black Friar -Black Friars -Black Gold -Black Gum Tree -Black Hawk -Black Hill -Black Hill Ridge -Black Hills -Black Horse -Black Hut -Black Ironwood -Black Kettle -Black Kite -Black Lake -Black Lion -Black Log -Black Mill -Black Moor -Black Mount -Black Mountain -Black Oak -Black Park -Black Partridge -Black Pearl -Black Pine -Black Plain -Black Point -Black Point Horseshoe -Black Pond -Black Pond Hill -Black Prince -Black Rock -Black Saddle -Black Swan -Black Tail -Black Thorn -Black Tree -Black Twig -Black Velvet -Black Walnut -Black Wood -Blackacre -Blackall -Blackamoor -Blackbank -Blackberry -Blackberry Fields -Blackberry Hill -Blackberry Ridge -Blackberry Shore -Blackbird -Blackbird Cross Forty -Blackbird Hill -Blackbirds -Blackborne -Blackborough -Blackbourn -Blackbower -Blackboy -Blackbriar -Blackbridge -Blackbrook -Blackburn -Blackburn Ford -Blackburnian -Blackbush -Blackbutt -Blackbutts -Blackcap -Blackcarr -Blackchapel -Blackcherry -Blackcroft -Blackdown -Blackduck -Blacker -Blacket -Blackett -Blacketts -Blackfan -Blackfen -Blackfield -Blackfold -Blackfoot -Blackford -Blackfriars -Blackgate -Blackgates -Blackhall -Blackhawk -Blackhawk Club -Blackhawk Hills -Blackhawk Meadow -Blackheaath -Blackheath -Blackhill -Blackhoath -Blackhorse -Blackhouse -Blackhurst -Blackington -Blackinton -Blackjack -Blacklands -Blackledge -Blackley -Blackley New -Blackley Park -Blacklock -Blackman -Blackmar -Blackmer -Blackmon -Blackmoor -Blackmore -Blackmore End -Blackness -Blacknest -Blackney -Blackoak -Blackoaks -Blackpoint -Blackpond -Blackpool -Blackpowder -Blackridge -Blackrock -Blackrod -Blacks -Blacks Hill -Blacksand -Blacksburg -Blackshaw -Blackshire -Blackshots -Blacksmith -Blacksnake -Blacksole -Blackspur -Blackstar -Blackstock -Blackstocks -Blackstone -Blackstone Edge Old -Blackstone River -Blackstroud -Blacktail -Blackthorn -Blackthorne -Blackthorne Ridge -Blacktop -Blacktown -Blackwall -Blackwall Point -Blackwalnut -Blackwatch -Blackwater -Blackwater Valley -Blackwattle -Blackwattle Creek -Blackwell -Blackwell Farm -Blackwin -Blackwolf -Blackwood -Blackwood Edge -Blacow -Blade -Blade Green -Bladen -Bladensburg -Blades -Bladindon -Bladon -Blagdon -Blaggard -Blagrave -Blagrove -Blaier -Blaikie -Blain -Blaine -Blair -Blair Athol -Blair Mill -Blair Ranch -Blair Ridge -Blairbeth -Blairderry -Blaire -Blairgowrie -Blairhall -Blairhead -Blairmore -Blairton -Blairwood -Blais Farm -Blaisdell -Blaiswood -Blake -Blake Ridge -Blakeden -Blakedown -Blakefield -Blakehall -Blakeley -Blakelock -Blakelow -Blakely -Blakeman -Blakemere -Blakemore -Blakemore End -Blakeney -Blakenham -Blaker -Blakeridge -Blakes -Blakes Farm -Blakes Hill -Blakeslee -Blakesley -Blakestones -Blaketon -Blakeville -Blakewood -Blakiston -Blakistone -Blamey -Blamire -Blanc -Blanca -Blanch -Blanchan -Blanchard -Blanche -Blanche Dell -Blanchfield -Blanchlands -Blanco -Bland -Blandfield -Blandford -Blandin -Blanding -Blands -Blandsford -Blandy -Blane -Blaney -Blanford -Blank -Blanken -Blankenship -Blanket Hall -Blanks -Blanmerle -Blanton -Blantre -Blantyre -Blarney -Blashford -Blasi -Blatchford -Blattman -Blau -Blauer -Blausanne -Blauss -Blauvelt -Blawith -Blaxcell -Blaxland -Blaydon -Blays -Blaze -Blazer -Blazingwood -Bleach -Bleak -Bleakley -Bleakney -Bleakwood -Blean -Bleasby -Bleasdale -Blease -Bleasedale -Bleatarn -Blechynden -Bleck -Bleckely -Bledlow Ridge -Bleecker -Bleeker -Blegborough -Blehm -Blellatrey -Blemer -Blencarn -Blendall -Blendia -Blendon -Blendwood -Blenford -Blenheim -Blenheim Park -Blenhiem -Blenkinsop -Blenman -Bleriot -Blessing -Blessington -Bletchingley -Bletchley -Blevins -Blewbury -Blewett -Blewitt -Blick -Blickview -Bligh -Blighs -Blighton -Blinco -Blind -Blind Brook -Blindgrooms -Blindley -Blindsill -Blinkhorn -Blinn -Bliss -Blissett -Blithdale -Blithedale -Blithewood -Blithfield -Bloch -Block -Block House -Blockhouse -Blocklehurst -Blockley -Blodgett -Blodgetts -Bloemfontein -Blohm -Blom -Blomerth -Blomfield -Blomquist -Blomskog -Blomville -Blondell -Blondin -Blood -Bloodwood -Bloody Point -Bloom -Bloom Grade -Bloom Lake -Bloom Park -Bloomberg -Bloomburg -Bloomdale -Bloomfield -Bloomhall -Bloomingbank -Bloomingdale -Bloomington -Bloomington Ferry -Bloomington Frwy -Blooms -Blooms Quarry -Bloomsbury -Bloors -Bloors Wharf -Blossom -Blossom Acres -Blossom Cove -Blossom Creek -Blossom Dale -Blossom Heath -Blossom Hill -Blossom Park -Blossom Ranch -Blossom Ridge -Blossom River -Blossom Tree -Blossom Valley -Blossom Vista -Blossom Wood -Blossomcrest -Blossoms -Blossomview -Blossomwood -Blossum -Blouin -Blount -Blounts -Blounts Court -Blowing Rock -Blows -Bloxhall -Bloxham -Bloxon -Bloy -Bluberry -Blucher -Blucher Valley -Blue -Blue Anchor -Blue Ash -Blue Aster -Blue Ball -Blue Banner -Blue Bayou -Blue Bell -Blue Berry -Blue Bird -Blue Boar -Blue Bonnet -Blue Brook -Blue Circle -Blue Coat -Blue Cove -Blue Cow -Blue Crane -Blue Cross -Blue Dan -Blue Dolphin -Blue Flag -Blue Fox -Blue Gate -Blue Gentian -Blue Goose -Blue Grass -Blue Gray -Blue Gum -Blue Heaven -Blue Heron -Blue Herron -Blue Hill -Blue Hill River -Blue Hill Terrace -Blue Hills -Blue Iris -Blue Island -Blue Island Vermont -Blue Jay -Blue Lagoon -Blue Lake -Blue Lakes -Blue Larkspur -Blue Leaves -Blue Ledge -Blue Line -Blue Lupine -Blue Meadow -Blue Mill -Blue Mist -Blue Mound -Blue Mountain -Blue Oak -Blue Oaks -Blue Point -Blue Poppy -Blue Post -Blue Rapids -Blue Ravine -Blue Ribbon -Blue Ridge -Blue Ridge Fire -Blue Roan -Blue Rock -Blue Rock Hill -Blue Sage -Blue Sea -Blue Shirt -Blue Silk -Blue Sky -Blue Slate -Blue Smoke -Blue Spring -Blue Spruce -Blue Tees -Blue Topaz -Blue Valley -Blue Violet -Blue Water -Blue Waters -Blue Waters Farm -Blue Whale -Blue Willow -Blue Wing -Bluearrow -Bluebell -Blueberry -Blueberry Hill -Bluebill -Bluebill Bay -Bluebird -Bluebonnet -Bluebridge -Bluecoat -Bluecoats -Bluedale -Bluefield -Bluefields -Bluefin -Bluefish -Blueford -Bluegate -Bluegill -Bluegrass -Bluegum -Bluehouse -Bluejay -Blueridge -Blueridge Meadows -Blueridge View -Bluerock -Blues Point -Bluestem -Bluestern -Bluestone -Bluestone Bay -Bluet -Bluett -Blueview -Bluewater -Bluewillow -Bluff -Bluff City -Bluff Creek -Bluff Ct -Bluff Edge -Bluff Head -Bluff Point -Bluff Pointe -Bluff Ridge -Bluffs -Bluffs Edge -Bluffwood -Bluhill -Bluhm -Blum -Blume -Blumenfeld -Blumert -Blundell -Blunden -Blundon -Blunn -Blunt -Blunts -Blunts Hall -Blunts Wall -Blunts Wood -Blurton -Blush -Bluth -Bluxome -Bly -Blyden -Blysdale -Blyth -Blythe -Blythe Hill -Blytheswood -Blythewood -Blythorn -Blythswood -Blythwood -Boa Nova -Boa Vista -Boad -Boadicea -Boama -Boar -Boar Head -Board -Board School -Boardale -Boardley -Boardleys -Boardman -Boardschool -Boardwalk -Boarfold -Boarley -Boarman -Boarmans -Boars Tye -Boarshaw -Boarshead -Boarshurst -Boarstones -Boas -Boastfield -Boat -Boat Dock -Boat House -Boatclub -Boathouse -Boatman -Boatwright -Bob -Bob Ehlen -Bob Larsen -Bob O Link -Bob Reed -Bob White -Bobadah -Bobal -Bobann -Bobart -Bobbell -Bobbett -Bobbi -Bobbie -Bobbin Head -Bobbina -Bobby -Bobby Jean -Bobby Jones -Bobby Locke -Bobby Spencer -Bobbyber -Bobbys -Bobbywood -Bobcat -Bobelaine -Boblee -Bobmore -Bobolink -Bobs -Bobs Ford -Bobsled -Bobstay -Bobwhite -Boca -Boca Rio -Bocana -Bock -Bocket -Bockhampton -Bockhanger -Bockman -Bockmer -Bocks -Bodalla -Bodan -Bodden -Boddens Hill -Boddington -Boddingtons -Bode -Bodega -Bodega Bay -Boden -Bodensee -Bodiam -Bodie -Bodily -Bodin -Bodino -Bodkin -Bodkin View -Bodle -Bodley -Bodmer -Bodmin -Bodnarik -Bodney -Bodrick -Bodsworth -Bodway -Bodwell -Body -Boeger -Boehm -Boehme -Boehmer -Boehmhurst -Boeing -Boeing Access -Boekland Ranch -Boelsen -Boerum -Boesch -Boeske -Boessow -Bog -Bogalara -Bogalusa -Bogan -Bogandale -Bogarde -Bogarin -Bogart -Bogastow Book -Bogastow Brook -Bogata -Bogert -Bogerts Mill -Bogetti -Bogey -Boggard -Boggart Hill -Boggiano -Boggs -Bogie -Bogle -Bogner -Bogny -Bogota -Bograh -Bogren -Bogue -Bohac -Bohan Dillon -Bohannon -Bohemia -Bohemian -Bohemian Beach -Bohen -Bohland -Bohlander -Bohlken -Bohlman -Bohn -Bohnen -Bohns Point -Bohny -Bohr -Boice -Boiling Spring -Boiling Springs -Bois -Bois Hall -Bois Moor -Boise -Boismoor -Boisvert -Boivin -Bokel -Bokelman -Bolado -Bolan -Boland -Boland Farm -Bolanos -Bolaro -Bolas -Bolberry -Bolcum -Bold -Bold Lion -Bold Venture -Bolden -Bolderwood -Bolding House -Boldman -Boldmere -Bolds -Boldt -Bolero -Boles -Boley -Boleyn -Boleyns -Bolford -Bolgard -Bolger -Bolina -Bolinas -Bolinas Fairfax -Bolinda -Boling -Bolingbroke -Bolingbrook -Bolivar -Bolivia -Boll -Bolla -Bollard -Bollate -Bolle -Bollenbacher -Boller -Bolles -Bollin -Bollinbarn -Bolling -Bollinger -Bollinger Canyon -Bollington -Bollo -Bollo Bridge -Bollum -Bolmer -Bolney -Bolney Chapel -Bolney Trevor -Bolnore -Bolsa -Bolsa Tank Fr -Bolsena -Bolser -Bolshaw -Bolshaw Farm -Bolsin -Bolson -Bolsover -Bolstead -Bolster -Bolster Moor -Bolt -Bolter -Bolter End -Bolters -Bolton -Bolton House -Bolton Old -Boltons -Boltres -Boltro -Boltwood -Boltzen -Bolus -Bolwarra -Bolyston -Bolz -Bomabellee -Bombadier -Bombadil -Bombala -Bombay -Bombell -Bombers -Bombora -Bomford -Bomish -Bomore -Bon -Bon Accord -Bon Air -Bon Fleur -Bon Haven -Bon Mar -Bon Terre -BonHam -Bona -Bona Vista -Bonaccordo -Bonad -Bonair -Bonair Siding -Bonaire -Bonalbo -Bonan -Bonanza -Bonaparte -Bonar -Bonaventura -Bonaventure -Bonavesta -Bonbon -Bonbury -Boncarn -Boncheff -Bonchurch -Boncosky -Bond -Bond Hollow -Bond Mill -Bondage -Bondell -Bondfield -Bondi -Bondmark -Bonds -Bonds Retreat -Bondsburry -Bondy -Boneashe -Bonehurst -Bones -Boneset -Boneta -Bonetti -Bonfair -Bonfield -Bonfire -Bong -Bongart -Bongs -Bonham -Bonheur -Bonhill -Bonhomme -Boniface -Bonifacio -Bonifant -Bonington -Bonis Hall -Bonita -Bonita Downs -Bonita Vista -Bonito -Bonna Villa -Bonnard -Bonnardel -Bonnards -Bonneau -Bonnefin -Bonnell -Bonnema -Bonner -Bonner Hill -Bonnersfield -Bonness -Bonnet -Bonneting -Bonnett -Bonnetts -Bonneville -Bonnevista -Bonney -Bonnibrook -Bonnie -Bonnie Acres -Bonnie Brae -Bonnie Branch -Bonnie Briar -Bonnie Brook -Bonnie Burn -Bonnie Clare -Bonnie Dale -Bonnie Dell -Bonnie Dundee -Bonnie Glen -Bonnie Heights -Bonnie Jay -Bonnie Meadow -Bonnie Ridge -Bonnie View -Bonnie Vista -Bonniebrook -Bonniemill -Bonnievale -Bonnieview -Bonniewood -Bonnington -Bonny -Bonny Brow -Bonny Doon -Bonny Hill -Bonnybrook -Bonnydale -Bonnyman -Bonnymead -Bonnys -Bonnywell -Bonpel -Bonsai -Bonsal -Bonsall -Bonser -Bonsey -Bonseys -Bonsor -Bont -Bonta -Bontempo -Bonter -Bontou -Bonus -Bonus Hill -Bonview -Bonville -Bonvini -Bonwell -Bonwit -Bonwood -Boo -Boodle -Book -Booker -Booker T -Booker Washington -Bookerhill -Bookert -Bookham -Bookhurst -Books -Booksin -Boola -Boolarong -Booligal -Boom -Boomer -Boomerang -Boon -Boonah -Boonara -Boondah -Boone -Boone Grove -Boones -Boones Hill -Boongil -Boonstra -Boonton -Booraba -Booraem -Booragul -Booralee -Booralie -Booralla -Boorara -Boorea -Booream -Booreea -Boorroo -Booster Ring -Boot -Bootes -Booth -Booth Bank -Booth Bed -Booth Hall -Booth Hill -Booth Memorial -Booth Tarkington -Bootham -Boothbay -Boothbed -Boothby -Boothdale -Boothe -Boothey -Boothfield -Boothhaven -Boothouse -Boothroyd -Boothroyden -Booths Hill -Boothsbank -Boothstown -Bootjack -Bootle -Boots -Booyong -Booze Lake -Bopete -Bora -Bora Bora -Boraga -Boranda -Borax -Borba -Borcher -Borchers -Borchert -Bordale -Bordars -Borde Hill -Bordeau -Bordeaux -Bordelais -Borden -Bordentown -Border -Border Hill -Borderland -Borders -Bordesley -Bordessa -Bordly -Bordner -Bordolino -Bordona -Boreal -Borec -Boree -Boreham -Borel -Borella -Borello -Boren -Borers Arms -Borgard -Borge -Borges -Borges Ranch -Borghaus -Borgia -Borgins -Borglum -Borhart -Bori -Boria -Borica -Borick -Boright -Borina -Borinski -Borinsky -Borio -Bork -Borkshire -Borlaise -Borland -Borley -Borman -Bormet -Bornedale -Bornwood -Borojevic -Boroline -Boronga -Boronia -Borough -Borough Court -Borough Farm -Borough Green -Borough High -Borovere -Borre -Borregas -Borrego -Borrett -Borrette -Borrodaile -Borrodale -Borron -Borroway -Borrowdale -Borrows -Borrugh -Borsdane -Borsden -Borstal -Bortfield -Borth -Borthwick -Bortic -Borwell -Borwick -Borzotta -Bos -Bosanquet -Bosbury -Boscastle -Boscell -Bosch -Boschi -Bosci -Boscobel -Boscobell -Boscombe -Boscow -Bosden -Bosden Hall -Bosdenfold -Bose -Bosely -Bosenhill -Bosham -Bosk -Bosko -Bosley -Bosmore -Bosnjak -Bosphorus -Bosque -Boss -Bossa -Bossard -Bosse -Bossi -Bossington -Bossley -Bosson -Bossy -Bost -Bostall -Bostall Hill -Bostall Park -Bostian -Bostock -Boston -Boston Hill -Boston Manor -Boston Post -Boston Rock -Boston Scientific -Boston Spa Padmans -Boston Wharf -Bostonia -Bostonthorpe -Bostwick -Bosun -Bosville -Boswell -Boswells -Boswick -Bosworth -Bosworthfield -Botanical -Botany -Botany Bay -Bote -Boteler -Botelho -Botetourt -Botha -Bothelo -Bothfeld -Bothin -Bothner -Bothnia -Bothwell -Botiano -Botley -Botolph -Botsford -Botsom -Bott -Botterman -Bottesford -Botticelli -Bottineau -Bottle Brush -Bottle Forest -Bottle Square -Bottlebrush -Bottles -Bottner -Bottom -Bottom Boat -Bottom Pond -Bottomboat -Bottomley -Bottoms -Bottrells -Botts -Botwell Common -Botyl -Bou -Bouchard -Boucher -Bouck -Bouddi -Boudinot -Boudreau -Bouffant -Bougainville -Bougainvillea -Bouganville -Bouganvillea -Boughey -Boughton -Boughton Hall -Bouic -Boula -Boulden -Boulder -Boulder Bay -Boulder Bluff -Boulder Brae -Boulder Bridge -Boulder Brook -Boulder Canyon -Boulder Creek -Boulder Field -Boulder Glen -Boulder Lake -Boulder Point -Boulder Pointe -Boulder Ridge -Boulder Run -Boulderstone -Bouldish Farm -Bouldrewood -Bouleau -Boulevard -Boulmer -Boulogne -Boult -Boulters -Boulton -Boultwood -Bounces -Bound -Bound Brook -Boundaries -Boundary -Boundary Farm -Boundary Hill -Boundary Oaks -Boundless -Boundry -Bounds -Bounds Green -Boundstone -Bounstead -Bountiful -Bounty -Bounty View -Bouquet -Bouquet Park -Bourassa -Bourbon -Bourchier -Bourdeaux -Bourdon -Bourke -Bourley -Bourn -Bournbrook -Bourne -Bourne End -Bourne Grange -Bourne Grove -Bourne Park -Bourne Trail Fire -Bournebridge -Bournedale -Bournehall -Bournemouth -Bournemouth Park -Bourneside -Bournevale -Bourneville -Bournewood -Bournlea -Bournville -Bourque -Bourton -Bourtzos -Bousfield -Boussole -Boutas -Boutelle -Boutemain -Bouterse -Bouthiette -Bouton -Bouts -Boutwell -Boutwell Hill -Bouvardia -Bouve -Bouvel -Bouverie -Bouvier -Bovanizer -Bovarde -Bovelder -Boveney -Boveney New -Boveney Wood -Bovet -Bovey -Bovill -Bovingdon -Bovington -Bow -Bow Arrow -Bow Arts -Bow Green -Bow Ridge -Bow Spirit -Bow Sprit -Bowaga -Bowater -Bowbell -Bowcliffe -Bowdell -Bowden -Bowden Hey -Bowden House -Bowden View -Bowdens -Bowditch -Bowdoin -Bowdon -Bowe -Bowen -Bowenhurst -Bower -Bower Farm -Bower Heath -Bower Hill -Bower Mount -Bowerbird -Bowerdean -Bowerfiled -Bowerfold -Bowerland -Bowerman -Bowers -Bowers Farm -Bowers Grove -Bowerwood -Bowery -Bowes -Bowes Bend -Bowes Creek -Bowesden -Bowfell -Bowfin -Bowfonds -Bowford -Bowgreave -Bowhill -Bowie -Bowie Shop -Bowker -Bowker Bank -Bowl -Bowland -Bowlands -Bowlder -Bowlen -Bowler -Bowlers -Bowles -Bowley -Bowlhead Green -Bowlin -Bowline -Bowling -Bowling Green -Bowman -Bowman Green -Bowman Mill -Bowman Point -Bowman Towne -Bowmans -Bowmans Folly -Bowmer -Bown -Bownas -Bowne -Bowness -Bowns -Bowood -Bowral -Bowring -Bowrons -Bowry -Bows -Bowsens -Bowser -Bowsprit -Bowstone Hill -Bowstonegate -Bowstridge -Bowtell -Bowyer -Box -Box Canyon -Box Car -Box Elder -Box Mill -Box Office -Box Pond -Box R Ranch -Box Ridge -Boxall -Boxalls -Boxberry -Boxboard -Boxboro -Boxcar -Boxelder -Boxer -Boxes -Boxford -Boxgrove -Boxhill -Boxley -Boxman -Boxmill -Boxmoor -Boxoll -Boxted -Boxted Church -Boxtree -Boxwell -Boxwood -Boxwood Farms -Boxwood Grove -Boy Court -Boy Scout -Boyard -Boyce -Boyce Farm -Boyce Thompson -Boyce View -Boyd -Boyd Willis -Boydell -Boyden -Boyds -Boyds Turn -Boyer -Boyers -Boyes -Boyfield -Boylan -Boyland -Boyle -Boyle Farm -Boyles -Boyletown -Boylston -Boyn Hill -Boyndon -Boyne -Boynes -Boyneswood -Boynton -Boys -Boys Hall -Boys Ranch -Boys School -Boysea -Boysen -Boysenberry -Boyson -Boythorn -Boyton -Boyton Court -Boyton Hall -Bozen Green -Bozoian -Brabant -Brabazon -Brabham -Brabon -Brabourne -Brabrook -Brabyn -Brabyns -Bracadale -Bracci -Brace -Brace Bridge -Bracebridge -Bracewell -Bracher -Brack -Brack Mill -Bracken -Bracken Hill -Brackenbridge -Brackenbury -Brackendale -Brackenhurst -Brackenlea -Brackens -Brackenwood -Brackett -Bracketts -Bracketts Point -Brackley -Brackleys -Bracklyn -Brackman -Bracknell -Brackney -Bracks -Brackston -Bracondale -Bracton -Brad -Bradbourne -Bradbourne Park -Bradbourne Vale -Bradburn -Bradburns -Bradbury -Bradburys -Bradcutts -Braddale -Braddan -Bradden -Braddock -Braddock Creek -Braddock Ridge -Braddock Springs -Braddon -Braddyll -Bradeen -Braden -Bradenham -Bradenham Wood -Bradenton -Bradey -Bradfield -Bradfields -Bradford -Bradford Jay -Bradford Park -Bradford Pond -Bradforde -Bradgate -Bradgers Hill -Bradgreen -Bradgrove -Bradhill -Bradhoff -Bradhurst -Bradish -Bradish Farm -Bradiston -Bradl -Bradlee -Bradleigh -Bradley -Bradley Farm -Bradley Fold -Bradley Forest -Bradley Forge -Bradley Green -Bradley Hill -Bradley Park -Bradley Ranch -Bradley Woods -Bradly -Bradman -Bradmoor -Bradmoore -Bradmore -Bradmore Park -Bradner -Bradoc -Bradrick -Bradshad -Bradshaw -Bradshaw Hall -Bradshire -Bradstock -Bradston -Bradstone -Bradstreet -Bradview -Bradwahl -Bradwater -Bradwell -Bradwood -Brady -Brady S Hill -Bradyll -Brae -Brae Brooke -Brae Burn -Brae Loch -Braebridge -Braeburn -Braehurst -Braeland -Braeleigh -Braeman -Braemar -Braemer -Braemont -Braemoor -Braemore -Braes -Braeside -Braesmere -Braewood -Brafferton -Braga -Braganza -Bragato -Bragaw -Bragbury -Bragdon -Bragenham -Bragers -Bragg -Braghetta -Bragi -Braham -Brahma -Brahms -Braidburn -Braidwood -Braikfield -Brailley -Brailsford -Brain -Brain Ridge -Brainard -Brainerd -Brainton -Braintree -Brainwood -Brair Ridge -Brairfield -Brairwood -Braisted -Braiswick -Braithwaite -Braithwaithe -Brake -Brakefield -Brakelly -Braken -Brakenhurst -Brakke -Bralan -Brallas -Brallos -Braly -Bramall -Braman -Brambach -Bramber -Bramble -Bramble Bush -Bramble Reed -Bramble Wood -Bramblebrook -Bramblebush -Brambledene -Brambledown -Bramblefield -Bramblehill -Brambles Farm -Brambleton -Brambletye -Brambletye Park -Bramblewood -Brambling -Brambly -Bramcote -Bramdean -Bramer -Bramerton -Bramfield -Bramford -Bramhall -Bramhall Moor -Bramhall Park -Bramham -Bramhope -Bramhope Breary -Bramingham -Bramkampo -Bramleigh -Bramley -Bramley Green -Bramley Ring -Bramling -Bramlys -Brammay -Brampton -Brampton Park -Bramshaw -Bramshill -Bramshot -Bramshott -Bramstan -Bramston -Bramwell -Bramwood -Bramwoods -Bramworth -Branbridges -Branbury -Branca -Brancaster -Branch -Branch Brigade -Branch Brook -Branch Center -Branch Hill -Branch Side -Branchaud -Branchaw -Branchbrook -Branchview -Branchville -Branchwood -Branciforte -Brancker -Brancourt -Brand -Brandau -Brande -Brandee -Brandeis -Branden -Brandenburg -Brander -Branderburgh -Brandermill -Brandess -Brandford -Brandforth -Branding -Branding Iron -Brandis -Brandle -Brandlehow -Brandles -Brandlesholme -Brandley -Brandling -Brandlwood -Brandon -Brandon Green -Brandon Groves -Brandon Oaks -Brandon Shore -Brandon Way -Brandon Woods -Brandreth -Brands -Brands Hatch -Brands Hill -Brandt -Brandwood -Brandy -Brandy Carr -Brandy Farms -Brandy Hall -Brandy Hill -Brandyhall -Brandyn -Brandywine -Brandywine Heights -Brandywyn -Brandywyne -Braney -Branfield -Branford -Brangbourne -Brangton -Brangus -Branham -Branhum -Branigan -Branko -Branksea -Branksome -Branksome Hill -Branksome Park -Branksomewood -Brann -Brannan -Brannan Island -Branner -Brannick -Brannigan -Brannon -Branower -Bransby -Branscombe -Bransdale -Bransfield -Bransford -Bransgrove -Branson -Branson Ranch -Bransten -Branston -Branstone -Brant -Brantfield -Brantford -Brantingham -Brantley -Branton -Brantridge -Brantwood -Branvall -Branwell -Branwood -Branxton -Braquet -Brasch -Brasenose -Brasero -Brashear -Brashears -Brass Wheel -Brassel -Brasser -Brassey -Brassfield -Brassie -Brassington -Brasted -Brasted Hill -Brastow -Brathway -Bratley -Bratsell -Brattice -Brattle -Bratton -Brattray -Brauer -Braun -Braund -Braundton -Braunecker -Braunsdorf -Braunston -Braunton -Brautigam -Bravado -Brave -Bravender -Braverton -Bravington -Bravo -Bravo Fire -Brawner -Braxfield -Braxmar -Braxted -Braxted Park -Braxton -Bray -Brayards -Braybourne -Braybrook -Braybrooke -Brayburne -Braycourt -Braydon -Brayfield -Brayford -Braygreen -Brayley -Braymer -Brays -Brayshaw -Brayside -Brayton -Braywick -Braywood -Brazao -Brazenhose -Brazier -Braziers -Brazil -Brazley -Brea -Breach -Breach House -Bread -Breadcroft -Breadlands -Bready -Breaker -Breakers -Breakfast -Breakfast Point -Breakheart -Breaking Wave -Breakneck -Breakneck Hill -Breaks -Breakspear -Breakspeare -Breakspears -Breakwater -Breakwell -Bream -Breamore -Breary -Breasley -Breasted -Breaston -Breault -Breaults -Breaults Landing -Brechin -Breck -Brecken Ridge -Breckenbridge -Breckenridge -Breckinridge -Breckland -Brecknock -Brecks -Brecon -Breconshire -Breconwood -Bredbo -Bredbury -Bredhurst -Bredon -Bredon Hill -Bree -Bree Hill -Breech -Breed -Breeden -Breedens -Breedon -Breeds -Breen -Breer -Breesway -Breewood -Breeze -Breeze Hill -Breeze Knoll -Breezedale -Breezehurst -Breezeland -Breezemont -Breezewalk -Breezewood -Breezy -Breezy Hill -Breezy Knoll -Breezy Point -Breezyhill -Brefni -Brega -Breglia -Bregman -Brehaut -Brehme -Brei Kessel -Breiderhoft -Breightmet -Breightmet Fold -Breillat -Breitweiser -Breitwert -Breitwieser -Brem -Bremar -Brember -Bremen -Brementowne -Bremer -Bremerton -Bremner -Bremond -Bremtonwood -Bren -Bren Mar -Brenan -Brenchley -Brencon -Brenda -Brenda Lee -Brendan -Brendel -Brenden -Brendon -Brendon Hill -Brenford -Brenham -Brenish -Brenlyn -Brenman Park -Brennan -Brennans -Brennen -Brenner -Brennfleck -Brenning -Brennon -Brent -Brent Moor -Brent Park -Brent Town -Brent View -Brent Wood -Brentbridge -Brentfield -Brentford -Brentford High -Brentham -Brenthurst -Brentlands -Brentley -Brentmoor -Brentnall -Brentnor -Brenton -Brenton Point -Brentridge -Brentsville -Brentwall -Brentwood -Brentwood Farm -Brentz -Brenwood -Brereton -Bresee -Breslau -Bresnahan -Bressay -Bressey -Bret -Bret Hart -Bret Harte -Brethren -Bretland -Bretlands -Bretman -Bretmoor -Breton -Breton Lakes -Brett -Brettell -Brettenham -Bretton -Bretton View -Bretton Woods -Bretts Farm -Brettun -Bretz -Breuer -Breuner -Breval -Brevard -Breve -Brevensville -Brevent -Brevet -Brevity -Brevoort -Brew -Brew House -Brewer -Brewer Beach -Brewer House -Brewer Neck -Brewers -Brewers Hill -Brewerton -Brewery -Brewhouse -Brewhurst -Brewin -Brewington -Brewongle -Brewster -Brewster Creek -Brewster Gate -Brewton -Brexdale -Brey -Breyers -Breyley -Brian -Brian Run -Brian Smith -Briana -Brianboru -Briane -Brianne -Brians Hill -Briant -Briants -Briar -Briar Brae -Briar Cliff -Briar Close -Briar Creek -Briar Glen -Briar Hill -Briar Lea -Briar Mill -Briar Oak -Briar Oakes -Briar Patch -Briar Path -Briar Ridge -Briar Rock -Briar Rose -Briar Tree -Briar cliff -Briarbank -Briarberry -Briarbrook -Briarbush -Briarchip -Briarcliff -Briarcliffe -Briarcrest -Briarcroft -Briard -Briardale -Briarfield -Briarford -Briargate -Briarglen -Briargrove -Briarhill -Briarknoll -Briarlands -Briarly -Briarmont -Briarmoor -Briarpoint -Briars -Briarstone -Briarton -Briarwood -Briarwood North -Briarwood South -Briarwoods -Briary -Briary Wood -Brice -Brice Chapel -Bricher -Brichetto -Bricin -Brick -Brick Church -Brick House -Brick Kiln -Brick Plant -Brickel -Brickell -Brickenden -Brickendon -Bricker -Bricket -Brickett -Brickfield -Brickfields -Brickhill -Brickhouse -Bricklin -Brickmakers -Bricknoller -Brickpond -Brickspring -Brickstone -Brickvale -Brickwall -Brickway -Brickwood -Brickworks -Brickyard -Brickyard Cove -Bridal -Bridal Path -Bridalsmith -Briddle Path -Bride -Bride Hall -Briden -Brideoak -Brideoake -Bridestowe -Bridewain -Bridewell -Bridge -Bridge Barn -Bridge Bay -Bridge Branch -Bridge Creek -Bridge End -Bridge Farm -Bridge Hall -Bridge Pointe -Bridge Spur -Bridge View -Bridgecote -Bridgecourt -Bridgecross -Bridgedale -Bridgefield -Bridgefoot -Bridgeford -Bridgegate -Bridgeham -Bridgehampton -Bridgehead -Bridgeland -Bridgelea -Bridgeman -Bridgemarsh -Bridgenhall -Bridgenorth -Bridgepoint -Bridgepointe -Bridgeport -Bridgeport Lake -Bridger -Bridges -Bridges Farm -Bridgeside -Bridgestone -Bridget -Bridgeton -Bridgetown -Bridgevale -Bridgeview -Bridgewater -Bridgeway -Bridgeway Lakes -Bridgewood -Bridgford -Bridgham -Bridgit -Bridgman -Bridgnorth -Bridgwater -Bridle -Bridle Creek -Bridle Cross -Bridle Pass -Bridle Path -Bridle Post -Bridle Ridge -Bridle Spur -Bridle Trail -Bridle Wood -Bridlefield -Bridlegate -Bridlepath -Bridlespur -Bridleway -Bridlewood -Bridlington -Bridoon -Bridport -Bridson -Bridwell -Brie -Brief -Brielle -Brien -Briens -Brier -Brier Glen -Brier Hill -Brierbrook -Briercliffe -Briercrest -Brierdale -Brierfield -Brierhill -Brierholme -Brierley -Brierly -Brierway -Brierwood -Brierwoods -Briery -Brig -Briga -Brigade -Brigadier -Brigadoon -Brigalow -Brigantine -Brigantino -Brigate -Brigg -Briggs -Briggs Chaney -Briggs Fold -Briggs Ranch -Brigham -Brigham Hill -Bright -Bright Day -Bright Meadows -Bright Memory -Bright Mountain -Bright Pond -Bright Ridge -Bright Silk -Bright Sun -Bright View -Bright Wood -Brighten -Brightfield -Brightlands -Brightlea -Brightleaf -Brightling -Brightman -Brightmore -Brighton -Brighton Beach -Brighton Dam -Brighton Oaks -Brightshore -Brightside -Brightstone -Brightview -Brightwater -Brightwater Beach -Brightwell -Brightwells -Brightwood -Brigid Flanigan -Brigshaw -Brigstock -Brill -Brim -Brimbal -Brimbal Hills -Brimblecom -Brimblecomb -Brimbrook -Brimelow -Brimfield -Brimhall -Brimmer -Brimmers -Brimpton -Brimrod -Brimsdown -Brimshot -Brimsmead -Brimstone -Brimstone Academy -Brinawa -Brinckerhoff -Brindabella -Brindale -Brindle -Brindlehurst -Brindles -Brindlewood -Brindley -Brindwood -Brinef -Brinell -Bringelly -Brington -Brink -Brink Meadow -Brinkburn -Brinker -Brinkerhoff -Brinkhaus -Brinkinfield -Brinkley -Brinks -Brinkshaw -Brinkwood -Brinkworth -Brinley -Brinmar -Brinnington -Brinns -Brinsdale -Brinsley -Brinsmade -Brinsmead -Brinsop Hall -Brinsworth -Brinton -Brinwood -Brion -Briones -Briones Valley -Brionne -Briony -Brisa -Brisas -Brisbane -Brisbee -Brisbin -Briscoe -Briscoe Farm -Briscoe Turn -Briscolina -Briset -Brisette -Brishing -Briskin -Brislands -Brisley -Brisson -Bristel -Bristers Hill -Bristle Cone -Bristlecone -Bristles -Bristol -Bristol Bay -Bristol Downs -Bristol Hill -Bristol Off Water -Bristol Park -Bristol Ridge -Bristol Square -Bristol Trail -Bristol Village -Bristolwood -Briston -Bristow -Bristowe -Britain -Britani -Britania -Britannia -Britannic -Brite -Britford -Brithorn -British -British Colony -Britnall -Britney -Briton -Briton Hill -Britt -Britta -Brittain -Brittan -Brittany -Brittany Hills -Brittany Parc -Brittany Park -Brittanyann -Britten -Brittenden -Brittenford -Brittin -Brittle -Brittney -Britton -Britton Farm -Brittons -Britts Brook -Britwell -Briubi -Brive -Brixham -Brixton -Brixton Square -Brixton Water -Broach -Broad -Broad Arrow -Broad Bill -Broad Branch -Broad Brook -Broad Canal -Broad Creek -Broad Creek Church -Broad Ditch -Broad Foot -Broad Gate -Broad Green -Broad Hollow -Broad Meadow -Broad Oak -Broad Oaks -Broad Run -Broad Sound -Broadacre -Broadacres -Broadale -Broadbent -Broadbirch -Broadbottom -Broadbridge -Broadbridge Heath -Broadcar -Broadcarr -Broadclyst -Broadcroft -Broader -Broadfield -Broadfields -Broadford -Broadford Bridge -Broadgate -Broadgates -Broadhalgh -Broadham Green -Broadhead -Broadheath -Broadheys -Broadhinton -Broadhollow -Broadhurst -Broadis -Broadland -Broadlands -Broadlawn -Broadlea -Broadleaf -Broadley -Broadleys -Broadlove -Broadman -Broadmark -Broadmead -Broadmeadow -Broadmeadows -Broadmeadows Sheridan -Broadmoor -Broadmoore -Broadmore -Broadmoss -Broadneck -Broadneck Park -Broadoak -Broadoaks -Broads -Broadside -Broadsmore -Broadstone -Broadsword -Broadview -Broadview Academy -Broadwalk -Broadwater -Broadwater Creek -Broadwater Forest -Broadwater Point -Broadwaters -Broadway -Broadway Alexandra -Broadway Feather Bank -Broadway Wood -Broadway near Wood -Broadwell -Broadwick -Broadwire -Broadwood -Broady -Brocade -Brocas -Broccoli -Brocher -Brochie -Brock -Brock Bridge -Brock Hall -Brock Hill -Brockamin -Brockdish -Brockenbrough -Brockenhurst -Brocket -Brockett -Brockford -Brockham -Brockhamhurst -Brockhuizen -Brockhurst -Brocklebank -Brocklehurst -Brockleman -Brocklesby -Brockley -Brockley Hall -Brockman -Brockman Farm -Brockmeyer -Brockmier -Brocks -Brocksford -Brockswood -Brockton -Brockway -Brockwell -Brockwood -Broder -Broderick -Brodewater -Brodia -Brodick -Brodie -Brodie Spark -Brodin -Brodkin -Brodwood -Brody -Broe -Broening -Brogan -Brogdale -Brogden -Broghinge -Brokaw -Broke Farm -Broken Arrow -Broken Bow -Broken Branch -Broken Gate -Broken Land -Broken Oak -Broken Shell -Broken Tree -Broken Twig -Broker -Brokes -Brolass -Brom -Bromar -Bromborough -Brome -Bromehead -Bromfelde -Bromfield -Bromfords -Bromhall -Bromholm -Bromleigh -Bromley -Bromley Cross -Bromley Green -Bromley Hall -Bromley Hill London -Bromley Village -Brommer -Brompton -Brompton Farm -Bromshill -Bromwells -Bromwich -Bromyard -Bromycroft -Broncho -Bronco -Brondesbury -Brondsbury -Bronfield -Brong -Bronislaw -Brons -Bronsart -Bronson -Bronstein -Bronte -Bronte Marine -Bronti -Bronx -Bronx Park -Bronx River -Bronxdale -Bronxville -Bronxville Glen -Bronxwood -Bronze -Bronze Post -Bronzewing -Bronzon -Brook -Brook Bay -Brook Bottom -Brook Crossing -Brook Dale -Brook End -Brook Farm -Brook Ford -Brook Forest -Brook Grains -Brook Haven -Brook Head -Brook Hill -Brook Hills -Brook Hollow -Brook Knoll -Brook Lodge -Brook Lynn -Brook Mar -Brook Mill -Brook Park -Brook Run -Brook Trail -Brook Tree -Brook Vale -Brook Valley -Brook Village -Brookash -Brookbank -Brookbend -Brookbridge -Brookburn -Brookby -Brookcot -Brookcroft -Brookdale -Brookdene -Brooke -Brooke Acres -Brooke Farm -Brooke Grove -Brooke Jane -Brooke Knolls -Brooke Meadow -Brookehowse -Brookend -Brooker -Brookes -Brookeside -Brookeway -Brookfall -Brookfield -Brookfield Corporate -Brookfield Tower -Brookfold -Brookfoot -Brookford -Brookgate -Brookgreen -Brookgrove -Brookhaven -Brookhead -Brookhey -Brookhill -Brookhollow -Brookhouse -Brookhurst -Brooking -Brookings -Brooklake -Brookland -Brooklands -Brooklawn -Brookledge -Brooklee -Brookleigh -Brookley -Brookline -Brookln -Brooklyn -Brooklyn Bridge -Brooklyn Park -Brookman -Brookmans -Brookmans Park -Brookmead -Brookmeade -Brookmeadow -Brookmere -Brookmill -Brookmont -Brookmoor -Brookpark -Brookridge -Brookroyd -Brooks -Brooks Bank -Brooks Church -Brooks Terrace -Brooks View -Brooksbank -Brooksbie -Brooksby -Brookscroft -Brooksdale -Brooksedge -Brookshade -Brookshaw -Brookshill -Brookshire -Brookshire Estates -Brookshore -Brookside -Brookside Farm -Brookside Glen -Brookside Ranch -Brookside West -Brookspur -Brooksquare -Brookston -Brookstone -Brooksville -Brooksweld -Brookswood -Brookthorpe -Brooktree -Brooktree Ranch -Brookvale -Brookview -Brookville -Brookway -Brookwell -Brookwold -Brookwood -Brookwood Farm -Brookwood Lye -Brookwood Way -Broom -Broom Farm -Broom Hill -Broom Mills -Broomall -Brooman -Broombarn -Broomcroft -Broome -Broomers -Broomers Hill -Broomfield -Broomfields -Broomgerrie -Broomgrove -Broomhall -Broomhill -Broomhill Park -Broomhills -Broomhouse -Broomhurst -Broomlands -Broomleaf -Broomrigg -Brooms -Broomshaw -Broomsleigh -Broomsquires -Broomstair -Broomstick -Broomstick Hall -Broomville -Broomwood -Brophy -Brosam -Broschart -Broseley -Brosnan -Brossman -Brotherhood -Brothers -Brotherton -Broton -Brotto -Brouch -Brougham -Broughshane -Broughton -Broughton Craggs -Broughville -Brouilette -Brouillard -Brouillette -Broula -Broullie -Brounckner -Brousseau -Brouwerij -Brouwet -Brovelli -Brow -Browdens -Browells -Brower -Browers -Browertown -Brown -Brown Branch -Brown Deer -Brown Derby -Brown Duvall -Brown Edge -Brown Fox -Brown Gables -Brown Hill -Brown House -Brown Lea -Brown Loaf -Brown Lodge -Brown Otter -Brown Post -Brown Ranch -Brown Wood -Brownberrie -Browncross -Browndale -Browndens -Browne -Brownell -Brownfield -Browngraves -Brownhill -Brownie -Brownies Beach -Browning -Brownings -Brownlea -Brownley -Brownlow -Brownlow Hill Loop -Brownrigg -Browns -Browns Bridge -Browns Chapel -Browns Dock -Browns Farm -Browns Ferry -Browns Hall -Browns Mill -Browns School -Browns Valley -Browns Woods -Brownsea -Brownshade -Brownson -Brownsover -Brownspring -Brownstone -Brownsville -Brownswell -Brownview -Brownville -Brownwood -Brows -Brox -Broxash -Broxbourne -Broxburn -Broxhill -Broxholm -Broxmead -Broxted -Broxton -Broyhill -Broyle -Broyles -Brubaker -Brubeck -Brubri -Bruce -Bruce Castle -Bruce Park -Brucedale -Bruces Wharf -Bruceville -Brucewood -Bruche -Brucito -Bruck -Bruckner -Brude -Brudenell -Brueberry -Bruell -Bruella -Bruen -Bruhn -Bruin Hill -Brumbaugh -Brumby -Brumfield -Brumley -Brummel -Brundage -Brundige -Brundrett -Brundretts -Brune -Brunel -Brunell -Brunella -Brunello -Bruner -Brunero -Brunett -Brunette -Brunetti -Bruning -Brunk -Brunker -Brunner -Bruno -Bruns -Brunschon -Brunsvold -Brunswick -Brunswick Park -Brunswick Woods -Brunswig -Brunt -Bruntcliffe -Bruntleigh -Brunton -Bruntwood -Brunwin -Brush -Brush Creek -Brush Hill -Brush Hollow -Brush Island -Brush Lake -Brush Prairie -Brushes -Brushfield -Brushford -Brushwood -Brushy Hill -Brushyridge -Brussel -Brussels -Bruton -Brutus -Bruzek -Bruzzone -Bryan -Bryan Branch -Bryan Meadows -Bryan Point -Bryanston -Bryanstone -Bryant -Bryant Lake -Bryantown -Bryants -Bryants Bottom -Bryants Nursery -Bryantwood -Bryanwood -Bryce -Bryce Canyon -Brycewood -Bryden -Brydges -Brydon -Bryer -Bryett -Brygger -Bryla -Bryn -Bryn Bach -Bryn Mawr -Brynden -Bryne -Bryngs -Brynhaven -Brynmaer -Brynmore -Brynn -Brynorme -Brynton -Brynwood -Bryon -Bryone -Bryony -Bryson -Bryte -Bryte Bend -Bubb -Bubblestone -Bubbling Brook -Bubhurst -Bubier -Bucareli -Buccaneer -Buccleuch -Buchal Heights -Buchan -Buchanan -Buchanan Field -Buchanon -Bucher -Buck -Buck Board -Buck Cavey -Buck Center -Buck Creek -Buck Hill -Buck Knoll -Buck Lake -Buck Meadow -Buck Point -Buckbee -Buckboard -Buckbrush -Buckby -Buckden -Buckelew -Bucket -Bucket Mill -Bucketmill -Buckettsland -Buckeye -Buckfast -Buckhall -Buckhannon -Buckhatch -Buckhaven -Buckhill -Buckhold -Buckhole Farm -Buckhorn -Buckhorn Ridge -Buckhurst -Buckhurst Farm -Bucki -Buckingham -Buckingham Cove -Buckingham Hill -Buckingham Palace -Buckinghan -Buckinghorse -Buckland -Bucklands -Buckle -Buckleberry -Bucklebury -Buckleigh -Buckler -Buckles -Buckley -Buckley Hill -Buckleys -Bucklin -Bucklodge -Bucklow -Bucklow HIll -Buckman -Buckmans -Buckmaster -Buckmeadow -Buckminster -Buckmore -Bucknall -Bucknalls -Bucknam -Bucknell -Buckner -Buckout -Buckram -Buckrell -Buckridge -Bucks -Bucks Haven -Bucks Lake -Bucks Mill -Bucksfield -Bucksford -Buckskin -Buckskin Lake -Buckskin Wood -Buckstone -Buckstones -Buckswood -Bucktail -Buckthorn -Buckthorne -Buckton -Buckton Vale -Buckwall -Buckwell -Buckwood -Buckwoods -Bud -Buda -Budapest -Budbury -Budd -Budding Branch -Buddle -Budds -Buddy -Bude -Budeberry -Buderim -Budge -Budgen -Budgeree -Budgerigar -Budin -Budingen -Budiselich -Budland -Budleigh -Budler -Budna -Budoch -Budreau -Budworth -Budworth Heath -Budyan -Buehere -Buehler -Buel -Buell -Buena -Buena Monte -Buena Tierra -Buena Ventura -Buena Vida -Buena Vista -Buenaventure -Bueno -Buens -Buer -Buerkle -Buersil -Buerton -Buff -Buffalo -Buffalo Creek -Buffalo Grove -Buffalo Ridge -Buffalo Run -Buffbeards -Buffers -Buffham -Buffington -Buffins -Bufflehead -Bufford -Buffum -Buffy -Bufkin -Buford -Bugatti -Bugbee -Bugden -Bugeia -Bugglesden -Buggy Whip -Bugle -Bugler -Bugli -Bugong -Bugsbys Way Gallions -Buhl -Buhman -Buhre -Buhrstone -Buick -Build America -Builders -Buile -Buile Hill -Buist -Buker -Bukra -Bulaire -Bulara -Bulb -Bulba -Bulbeggars -Bulbi -Bulborne -Bulbrine -Bulbul -Bulcher -Bulfinch -Bulford -Bulga -Bulganak -Bulger -Buli -Bulinga -Bulkara -Bulkeley -Bulkey -Bulkhead -Bulkira -Bulkley -Bull -Bull Calf -Bull Hill -Bull Pine -Bull Pond -Bull Run -Bull Run Post Office -Bullace -Bullard -Bullbaiters -Bullbeggars -Bullbrook -Bullcote -Bullcroft -Bulldog -Bullecourt -Bullen -Bullens -Buller -Bullers -Bullers Wood -Bullerthorpe -Bullescroft -Bulletin -Bullette -Bullfinch -Bullfrog -Bullfrog Fire -Bullfrog Pond -Bullhead -Bullingstone -Bullion -Bullitt Neck -Bulliukian -Bullivant -Bullneck -Bulloch -Bullock -Bullocks -Bullocks Farm -Bullring -Bulls -Bulls Bridge -Bulls Eye -Bulls Ferry -Bulls Mill -Bulls Neck -Bullsbrook -Bullsmoor -Bullswater -Bullswater Common -Bullwood -Bullwood Hall -Bulmann -Bulmer -Bulmershe -Bulolo -Bulow -Bulrush -Bulrush Farm -Bulson -Bulstrode -Bultee -Bulteel -Bultustrol -Bulu -Bulumin -Bulwara -Bulwark -Bulwarra -Bulwer -Bulwer Court -Bumbera -Bumble Bee -Bumblebee -Bumfords -Bummer -Bumps -Bumpus -Bumpy -Bumpy Oak -Buna -Buna Mae -Bunarba -Bunbinla -Bunbury -Bunby -Bunce -Bunce Common -Bunce Court -Bunce Meadows -Buncefield -Bunces -Bunch -Bunch Berry -Bunchberry -Bunche -Buncton -Bundaleer -Bundanoon -Bundara -Bundarra -Bundeena -Bundell -Bundeluk -Bundemar -Bundesen -Bundeson -Bundilla -Bundock -Bundoon -Bundoran -Bundschu -Bundy -Bunescu -Bungal -Bungaloe -Bungalow -Bungan -Bungan Head -Bungaree -Bungarribee -Bungay -Bungendore -Bungonia -Bungoona -Bungowen -Bungtown -Bungulla -Bunhill Row Old -Bunin -Bunker -Bunker Hill -Bunker Lake -Bunker Woods -Bunkerhill -Bunkers -Bunkers Hill -Bunkershill -Bunn -Bunnai -Bunnell -Bunnerong -Bunning -Bunns -Bunny -Bunratty -Bunsen -Bunt -Bunters -Bunters Hill -Bunting -Buntingbridge -Buntingford -Bunton -Bunts -Bunya -Bunyala -Bunyan -Bunyana -Bunyard -Bunyarra -Bunyula -Buono -Buoy -Bur -Burando -Burandt -Burard -Burbage -Burbank -Burbanks -Burbeck -Burberry -Burbidge -Burbong -Burbury -Burch -Burch Haven -Burch Hill -Burchap -Burcharbro -Burchard -Burchell -Burchells Wood -Burches -Burchetts Green -Burchfield -Burchlawn -Burchmore -Burckhalter -Burcote -Burd -Burdak -Burdean -Burdeck -Burdekin -Burdell -Burdell Mountain Fire -Burden -Burdenshott -Burdent -Burder -Burdett -Burdette -Burdetts -Burdge -Burdick -Burdith -Burditt -Burdock -Burdocks -Burdon -Burdsall -Bureau -Buren -Bures -Burfield -Burfitt -Burford -Burg -Burgamot -Burgan -Burgandy -Burgattes -Burge -Burge End -Burgener -Burges -Burgess -Burgess Hill -Burget -Burgh -Burgh Heath -Burghardt -Burghclere -Burghead -Burgher -Burghfield -Burghley -Burgin -Burgner -Burgon -Burgos -Burgoyne -Burgundy -Burgundy Leaf -Burham -Burhans -Burhill -Buriat -Burich -Buried Oak -Burilla -Burk -Burkards -Burke -Burke Bradley -Burke Centre -Burke Commons -Burke Dale -Burke Lake -Burke Meadow -Burke Pond -Burke Woods -Burkes -Burkes Promise -Burkeside -Burkett -Burkette -Burkewood -Burkhall -Burkhard -Burkhardt -Burkhart -Burkitts -Burkland -Burkwood -Burl -Burl Hollow -Burl Oaks -Burla -Burleigh -Burlescoombe -Burley -Burley Farm -Burley Grange -Burley Lodge -Burley Place Viaduct -Burley Wood -Burleyhurst -Burleys -Burliegh -Burline -Burling -Burling Wood -Burlingame -Burlingame Club -Burlings -Burlington -Burlington Mall -Burlingview -Burlison -Burlow -Burlway -Burlwood -Burma -Burmah -Burman -Burmester -Burmingham -Burnaby -Burnage -Burnage Hall -Burnap -Burnbrae -Burnbray -Burnbury -Burncoat -Burncoat Park -Burndale -Burne -Burnece -Burned Chimney -Burnedge -Burnell -Burnell Park -Burnels -Burnes -Burnet -Burnet Hill -Burnet Hill School -Burnett -Burnett North -Burnetta -Burnette -Burnetts -Burney -Burnfoot -Burngarten -Burnham -Burnham Green -Burnham Harbor -Burnham Ranch -Burnhams -Burnhaven -Burnhill -Burnie -Burning Branch -Burning Bush -Burning Hollow -Burning Oak -Burning Oaks -Burning Springs -Burning Timber -Burning Tree -Burning Trees -Burnley -Burnmoor -Burnquist -Burns -Burns Bay -Burns Chalk Fire -Burns Crossing -Burns Cutoff -Burns Dairy -Burns Hill -Burns Valley -Burnsall -Burnsdale -Burnside -Burnside Landing -Burnstie -Burnsville -Burnt Ash -Burnt Bridge -Burnt Common -Burnt Crest -Burnt Edge -Burnt Ember -Burnt Hill -Burnt House -Burnt Meadow -Burnt Mill -Burnt Mills -Burnt Oak -Burnt Plats -Burnt Pollard -Burnt Swamp -Burnt Tree -Burnt Woods -Burntash -Burnthouse -Burnthouse Farm -Burnthwaite -Burntlodge -Burntside -Burntwick -Burntwood -Burntwood Grange -Burnwood -Buron -Buross -Burpee -Burpham -Burquest -Burr -Burr Hill -Burr Oak -Burr Oaks -Burr Ridge -Burr Ridge Club -Burr Tree -Burra -Burrabirra -Burrabogee -Burraddar -Burradoo -Burraga -Burrage -Burragorang -Burraloo -Burran -Burraneer -Burraneer Bay -Burras -Burrawang -Burrawong -Burrcroft -Burrell -Burrells -Burren -Burrendong -Burrfield -Burrfields -Burricks Hill -Burrill -Burrill Hill -Burrimul -Burringbar -Burrington -Burrinjuck -Burris -Burritt -Burro -Burrock -Burrough Farm -Burrough Hill -Burroughs -Burrow -Burroway -Burrows -Burrs -Burrswood -Burrwood -Burry -Burry Circle -Bursa -Bursar -Burshire -Bursill -Bursland -Burslem -Bursley -Burson -Burstead -Burstock -Burston -Burstow -Burt -Burtenshaw -Burtfield -Burtis -Burton -Burton Farm -Burton Glen -Burton Hole -Burtonhill -Burtonhole -Burtonpark -Burtons -Burtons Green -Burtonsville -Burtonwood -Burtwell -Buruwan -Burville -Burwash -Burwell -Burwick -Burwood -Burwood Park -Bury -Bury Farm -Bury Green -Bury Mead -Bury New -Bury Old -Burydell -Buryfield -Burywood -Bus -Bus Turning -Busaco -Busbridge -Busby -Busca -Busch -Busch Corner Spur -Buscher -Buschmann -Buschs Frontage -Busdens -Busgrove -Bush -Bush Elms -Bush Hall -Bush Hill -Bush Lake -Bush Pond -Bushaway -Bushberry -Bushbury -Bushby -Bushell -Bushes -Bushey -Bushey Grove -Bushey Hall -Bushey Hill -Bushey Mill -Bushfield -Bushgrove -Bushka -Bushkill -Bushlake -Bushland -Bushlands -Bushman -Bushmead -Bushnell -Bushrod -Bushtail -Bushthorn -Bushview -Bushwick -Bushwood -Bushy -Bushy Hill -Business -Business Center -Business Park -Busit -Busk -Buskin -Buskirk -Buslingthorpe -Buslins -Busman -Buss -Busse -Bussell -Bussendius -Bussey -Bussing -Busteed -Buster -Busters -Bustleton -Busty -Buswell -Butano -Butano Creek -Butano Fire -Butano Park -Butch -Butcher -Butcher Hill Lea Farm -Butcher Hill Old Oak -Butchers -Bute -Butely -Butera -Buthmann -Buti Park -Butler -Butler School -Butlers -Butlers Dene -Butlers Hall -Butlers Island -Butley -Butlin -Butman -Butt -Butt Field -Butt Green -Butt Hill -Buttaro -Butte -Butte View -Buttel -Butter Churn -Butter Cup -Butter Nut Hill -Butterbowl -Butterchurn -Buttercross -Buttercup -Butteremere -Butterfield -Butterfield Frontage -Butterfield Green -Butterfly -Butterfly Field -Butterhouse -Butterick -Butterley -Buttermarket -Buttermere -Buttermilk -Buttermilk Falls -Buttermilk Ridge -Butternut -Butternut Hollow -Butters -Butterscotch -Butterside -Butterstile -Butterworth -Buttesland -Buttfield -Butthinge -Buttitta -Buttlerly -Buttner -Button -Button Bush -Button Cove -Button Wood -Buttonbush -Buttons -Buttonwillow -Buttonwood -Buttress -Buttrick -Buttry -Butts -Butts Canyon -Butts Hill -Buttsbury -Buttway -Butu Wargun -Butwin Camp -Buxmont -Buxted -Buxton -Buxton Bridge -Buxton New -Buxton Old -Buxworth -Buyuma -Buzzard -Buzzard Hill -Buzzard Lagoon -Buzzell -Buzzoni -By -By The Sea -Byam -Byamee -Byard -Bybee -Bybrook -Bycroft -Bycullah -Byd A While -Byde -Bydown -Bye -Byefield -Byeforde -Byer -Byerley -Byers -Byes -Byfield -Byfleet -Byford -Bygrave -Bygrove -Bying -Byington -Bykool -Byland -Byloss -Bylund -Byman -Byna -Byne -Bynes -Byng -Bynner -Bynon -Bypass -Byram -Byram Brook -Byram Dock -Byram Shore -Byram Terrace -Byran -Byrd -Byre -Byrefield -Byrne -Byrne Park -Byrneley -Byrnes -Byrnwood -Byrom -Byron -Byron Hill -Byrondale -Byrons -Byrth -Byrum -Byscane -Bysing Wood -Byslips -Byton -Byward -Bywater -Byway -Bywell -Bywood -Byworth -Byxbee -C Commercial -C E Dixon -C Fernwood -C J Hafey -C Jones -C Leeds Infirmary -C York -CP Lumber -CSM -Caballero -Caballeros -Caballo -Caballo Ranchero -Cabana -Cabarita -Cabbage Hill -Cabbage Tree -Cabban -Cabbel -Cabbell -Cabe -Cabell -Cabello -Cabells Mill -Caber -Cabernet -Cabin -Cabin Branch -Cabin Creek -Cabin John -Cabina -Cabinet -Cabinwood -Cable -Cabot -Cabota -Cabover -Cabral -Cabramatta -Cabramurra -Cabrera -Cabrilho -Cabrillo -Cabrini -Cabriolet -Cabrito -Cabro -Cabrol -Cabul -Cache -Cache Peak -Cacia -Cackle -Cackler -Cackling -Cactus -Cactus Hill -Cadbury -Caddell -Caddie -Caddington -Caddo -Caddy -Cade -Cadenasso -Cadence -Cader -Cades -Cadet -Cadia -Cadigal -Cadillac -Cadish -Cadiz -Cadle -Cadle Creek -Cadloni -Cadman -Cadman Quarry -Cadmia -Cadmore -Cadmus -Cadogan -Cadogen -Cadoret -Cadorna -Cadourette -Cadow -Cadoxton -Cadsden -Cadwallader -Cadwallon -Cadwell -Cady -Caedigan -Caedmon -Caen -Caen Wood -Caenshill -Caerleon -Caernarvon -Caesar -Caesar Chelor -Caesars Camp -Cafe On The -Cafe on the -Cafeteria -Cafeto -Caffa -Caffee -Caffrey -Cage -Cage Green -Cage Pond -Cagefield -Cages Wood -Cagle -Cagney -Cagwin -Cahalan -Cahen -Cahill -Cahill Park -Cahir -Cahoon -Cahors -Cail -Caillard -Caim -Cain -Caine -Cainfield -Cains -Caird -Cairds -Cairn -Cairnfield -Cairns -Cairnslea -Cairnwell -Cairo -Cairo New -Caishowe -Caisson -Caister -Caistor -Caistor Park -Caithness -Caitlin -Cajed -Cakebread -Cal -Cal Geary -Cal Sag -Cala Vista -Calabar -Calabasas -Calabash -Calabazas -Calabrese -Calabria -Calabro -Calaby -Caladium -Calado -Caladonia -Calafia -Calais -Calala -Calamint -Calamity -Calamo -Calamus -Calanda -Calandra -Calandria -Calariva -Calaroga -Calavaras -Calaveras -Calaveras Ridge -Calawasse -Calbert -Calbina -Calboro -Calbourne -Calbroke -Calcaterra -Calcita -Calcite -Calco Creek -Calcot Mill -Calcot Place -Calcroft -Calcutta -Caldarra -Caldbeck -Caldecot -Caldecote -Caldecott -Caldeira -Calder -Calderbank -Calderbrook -Calderon -Caldershaw -Caldervale -Calderwood -Caldew -Caldicot -Caldor -Caldran -Caldwell -Caldwells Gate -Caldy -Cale -Caleb -Calebs -Caledon -Caledonia -Caledonian -Caledonium -Caleen -Calendar View -Calera Creek Heights -Calero -Calero Hills -Caleta -Caletti -Calexico -Caley -Calf -Calf Farm -Calf Hey -Calf Pasture Beach -Calfas -Calfornia -Calfstock -Calga -Calgary -Calhoun -Cali -Caliban -Calibria -Calico -Calico Pool -Calico Tree -Calicooneck -Calida -Calidore -Caliente -Calif Pacific -Califon -California -California Farms -California Poppy -Caliguiri -Calimyrna -Calinoma -Calista -Calistoga -Calitonia -Calkins -Call -Call Barnes -Calla -Calla Lilly -Callabone -Callaghan -Callagher -Callahan -Callahan School -Callahans Beach -Callan -Calland -Callander -Callaway -Callaways -Callcott -Calle Amigo -Calle Verde -Calle View -Callecita -Callen -Callendar -Callender -Caller -Callery -Callicoma -Callie -Callingdon -Callington -Calliope -Callis -Callison -Callistan -Callistemon -Callister -Callisto -Callow -Calloway -Calluna -Calmace -Calmar -Calmar Vista -Calmer -Calmont -Calmor -Calmos -Calnwood -Caloden -Calool -Caloola -Calow -Calpack -Calpella -Calpine -Calrofold -Calshot -Calt -Caltha -Calthea -Calthorpe -Calthrope -Calton -Caltor -Caltrans E -Caltrans Richards -Caltrans University -Calument -Calumet -Calumet Access -Calumet Grove -Calumet Sag -Calvados -Calvary -Calveley -Calvend -Calver -Calverley -Calverley Blackett -Calverley Green -Calverly -Calvert -Calvert Hills -Calverton -Calverton School -Calvery -Calvi -Calview -Calvin -Calvin Forest -Calvine -Calwagner -Calydon -Calyer -Calyne -Calypso -Calza -Cam -Cama -Camalier -Camanoe -Camarena -Camargo -Camargo Club -Camarillo -Camaritas -Camarri -Camas -Cambalt -Cambell -Camber -Camberford -Camberley -Camberley Forest -Camberly -Cambert -Camberton -Camberwell -Camberwell Church -Cambewarra -Cambeys -Cambia -Cambleton -Cambo -Cambodia -Cambon -Camborne -Cambourne -Cambra -Cambrai -Cambray -Cambreleng -Cambria -Cambrian -Cambrianna -Cambridge -Cambridge Barracks -Cambridge Grove -Cambridge Heath -Cambridge Lakes -Cambridge Park -Cambridgepark -Cambryar -Cambus -Camby -Camdale -Camden -Camden Acres -Camden Bay -Camden High -Camden Hill -Camden Park -Camden Town -Camden View -Camder -Camdike -Camel -Camel Hollow -Camelback -Camelia -Camellia -Camellia Mather -Camellia Park -Camelot -Camelsdale -Camenson -Cameo -Camer -Camera -Camero -Cameron -Cameron Crescent -Cameron Glen -Cameron Grove -Cameron Hills -Cameron Mills -Cameron Pond -Cameron Ridge -Cameron Rnch -Camfield -Camile -Camilla -Camille -Camilleri -Camillia -Camillo -Camino -Camino Andres -Camino Diablo -Camino Hermoso -Camino Medio -Camino Real -Camino Royale -Camino Vista -Camino de Luna -Camino del Lago -Camino del Rey -Camino del Sol -Camion -Camira -Camiri -Camlan -Camlet -Camley -Camley Park -Camlot -Camm -Cammack -Camman -Cammarata -Cammaray -Cammarlie -Cammeray -Cammerer -Cammile -Camner -Camomile -Camore -Camp -Camp Alger -Camp Arequipa -Camp Bluefields -Camp Creek -Camp David -Camp Dixie -Camp End -Camp Endeavor -Camp Flint -Camp Ground -Camp Grove -Camp Joy -Camp Kaufmann -Camp Kiwanis -Camp Letts -Camp Meade -Camp Meeting -Camp Ohlone -Camp Pearson -Camp Roosevelt -Camp Rose -Camp Springs -Camp Thayer -Camp View -Camp Wastashi -Campagna -Campagnoli -Campana -Campanara -Campanelli -Campania -Campanile -Campaspe -Campaw -Campbell -Campbell Farm -Campbell Hill -Campbell Ranch -Campbell River -Campbell Technology -Campbellfield -Campbelltown -Campden -Campeau -Campell -Campello -Camper -Camper Creek -Camperdown -Campers -Campfield -Campflint -Campgaw -Campground -Camphor -Camping Ridge -Campini Estates -Campion -Cample -Camplin -Campo -Campo Bello -Campo Dorado -Campo Vista -Campoli -Campolindo -Campora -Campos -Campoy -Campsbourne -Campsfield -Campshill -Campsie -Campton -Campton Crossings -Campton Hills -Campton Ridge -Campton Trail -Campton Woods -Camptown -Campus -Campus Commons -Campus Green -Campus Hill -Campus Loop -Camrose -Cams -Camsley -Canaan -Canabury -Canacum -Canada -Canada Cove -Canada Farm -Canada Goose -Canada Hills -Canada Valley -Canady -Canal -Canal Bank -Canale -Canalport -Cananaro -Canandaigua -Cananea -Canara -Canard -Canarsie -Canary -Canary Wharf -Canarys -Canavan -Canberra -Canbury -Canbury Park -Canby -Canda -Candace -Candahar -Candalero -Candelabra -Candelero -Canden -Candeur -Candia -Candice -Candida -Candido -Candidus -Candle -Candle Ridge -Candleberry -Candlefield -Candleford -Candlelight -Candlemas -Candlenut -Candler -Candlestick -Candlewick -Candlewood -Candlewood Hill -Candon -Candor -Candover -Candy -Candy Apple -Candy Hill -Candyland -Candytuft -Cane -Canelo Hills -Canepa -Canes -Canessa -Canesworde -Canewdon -Caney -Canfield -Canfield Hill -Canford -Canger -Canham -Canhurst -Canine -Canis -Canisius -Canistear -Canley Vale -Cann -Cann Hall -Canna -Cannan -Cannella -Cannery -Cannes -Canney -Cannfield -Cannici -Cannikin -Canning -Cannington -Cannistraci -Cannizaro -Cannock -Cannon -Cannon Ball -Cannon Bluff -Cannon Bottom -Cannon Court -Cannon Dale -Cannon Falls -Cannon Fort -Cannon Hill -Cannon Industrial -Cannon Mill -Cannon Ridge -Cannon River -Cannon Rock -Cannon View -Cannonade -Cannonball -Cannondown -Cannongate -Cannons -Cannons Mill -Cannozzi -Canoas Garden -Canoe -Canoe Brook -Canoe River -Canoe Tree -Canoga -Canon -Canon Barns -Canon Beck -Canon Hill -Canon Park -Canon Vista -Canonaro -Canonbie -Canonbury -Canonero -Canongate -Canons -Canonsfield -Canoona -Canopus -Canopy -Canright -Canrobert -Cansdale -Cansiron -Cantabrook -Cantalier -Cantalowes -Cantata -Cantebury -Cantello -Cantelow -Cantelowes -Cantelupe -Canter -Canter Glen -Canterberry -Canterbury -Canterfield -Cantering -Canterton -Canterwood -Cantiague -Cantiague Rock -Cantigny -Cantil Oaks -Cantitoe -Cantle -Cantley -Canto -Canton -Cantor -Cantore -Cantrell -Cantrill -Cants -Canturbury -Cantwell -Canuden -Canute -Canva -Canvas Back -Canvasback -Canvey -Canyon -Canyon Brook -Canyon Creek -Canyon Crest -Canyon Falls -Canyon Four -Canyon Green -Canyon Head -Canyon Heights -Canyon Hills -Canyon Lake -Canyon Lakes -Canyon Oak -Canyon Oaks -Canyon One -Canyon Rim -Canyon Run -Canyon Seven -Canyon Six -Canyon Terrace -Canyon Three -Canyon Tree -Canyon Two -Canyon View -Canyon Vista -Canyon Wood -Canyon Woods -Canyonlands -Canyonside -Canyonview -Canyonwood -Cap -Capalbo -Capastaic -Capatin Hunter -Capay -Capay Valley -Cape -Cape Ann -Cape Banks -Cape Barron -Cape Breton -Cape Buffalo -Cape Cod -Cape Colony -Cape Coral -Cape Cottage -Cape Diamond -Cape Horn -Cape Jessup -Cape Kennedy -Cape May -Cape McKinsey -Cape Misty -Cape Saint Claire -Cape Saint John -Cape Solander -Cape View -Capehart -Capel -Capell -Capell Valley Cross -Capella -Capellan -Capelli -Capen -Capen Hill -Capenhurst -Capern -Capertee -Capes -Capesthorne -Capetown -Capeview -Capewood -Capi -Capicure -Capista -Capistrano -Capital -Capital Center -Capital Gateway -Capital Hill -Capital Park -Capital View -Capitales -Capitan -Capitancillos -Capitol -Capitol Heights -Capitol Hill -Capitol Oaks -Capitol Raceway -Capitol View -Capitola -Capitolian -Capland -Caple -Caples -Capobianco -Capon -Capon Tree -Capone -Capons -Caporaletti -Capp -Cappell -Cappelletti -Capper -Capperton -Cappy -Caprera -Capri -Caprice -Capriconus -Capricorn -Caprilli -Capriole -Capron -Capsey -Capshill -Capstan -Capstone -Captain -Captain Bailey -Captain Brendt -Captain Brown -Captain Clarke -Captain Cook -Captain Dement -Captain Duval -Captain Eager -Captain Forbush -Captain Gookin -Captain Handley -Captain Hickory -Captain Honeywell -Captain John Smith -Captain Joshua -Captain Lees -Captain Marbury -Captain Miles -Captain Nathaniel -Captain Peirce -Captain Peter Simpson -Captain Robert Cook -Captain Torrey -Captains -Captains Cove -Captains Hill -Captains House -Captains Table -Captains View -Captains Wood -Captiva -Captolene -Captons -Capuchino -Capulet -Capulina -Capwell -Car Bank -Cara -Carabeen -Carabella -Caraden -Caradoc -Caramar -Caramel -Caramoor -Caran -Carandini -Caravaggio -Caravan -Caravan Head -Caravel -Caravella -Carawa -Carawatha -Caraway -Carb Apple -Carbarn -Carbeen -Carberry -Carbide -Carbis -Carbon -Carbondale -Carbonera -Carboni -Carboona -Carbrey -Carbride -Carburton -Carbury -Carby -Carcoola -Card -Cardale -Cardamom -Cardamon -Cardell -Carden -Cardenas -Cardens -Carder -Carderock -Carderock Springs -Cardiff -Cardigal -Cardigan -Cardin -Cardinal -Cardinal Bourne -Cardinal Clancy -Cardinal Cove -Cardinal Creek -Cardinal Crest -Cardinal Estate -Cardinal Forest -Cardinal Medeiros -Cardinal O Connell -Cardinet -Carding Mill -Cardington -Cardinham -Cardoso -Cardownie -Cardoza -Cardozo -Cardrew -Cardrona -Cardross -Cardus -Cardwell -Care -Careebong -Carefree -Carell -Carella -Caremine -Caren -Careo -Careswell -Caret -Carew -Carey -Carey Arthur -Carey Branch -Carey Heights -Carey School -Careyback -Careybrook -Carfax -Carfield -Cargate -Cargie -Cargil Park -Cargill -Cargo -Cargo Service -Cargreen -Carhart -Carholme -Carhullen -Cari -Cariage -Cariann -Carib -Caribon -Caribou -Caricia -Carieville -Carignane -Carill -Carilla -Carillion -Carillo -Carillon -Carillon Lakes -Carina -Carinda -Carindale -Caring -Caringal -Carington -Carino -Carinya -Caris -Caris Glenne -Carisa -Carisbrook -Carisbrooke -Carissa -Carl -Carl G Whritenour -Carl Jordan -Carl Lee -Carl Sandburg -Carl Sands -Carl Thompson -Carla -Carlback -Carlbern -Carlby -Carldon -Carle -Carleah -Carleen -Carlemont -Carlene -Carlester -Carleton -Carletta -Carley -Carlfield -Carlgate -Carli -Carlile -Carlin -Carlin Springs -Carlinda -Carline -Carling -Carlingford -Carlinghow -Carlino -Carlinwalk -Carlisle -Carlisle Pines -Carlisle on Duxbury -Carll -Carlmark -Carlmont -Carlo -Carlo Scimeca -Carlock -Carlon -Carlos -Carlos Bee -Carlotta -Carlough -Carlow -Carls Farm -Carls Hill -Carlsbad -Carlsbrook -Carlsen -Carlson -Carlson Lake -Carlstad -Carlstadt -Carlston -Carlstrom -Carlton -Carlton Bay -Carlton Club -Carlton Park -Carlwell -Carlwood -Carlwyn -Carly -Carly Creek -Carlyle -Carlyn -Carlyn Hill -Carlynn -Carlyon -Carlysle -Carm -Carman -Carman Mill -Carman River -Carmans -Carmar -Carmathen -Carmel -Carmel Valley -Carmela -Carmelhead -Carmelita -Carmelite -Carmella -Carmellia -Carmello -Carmelo -Carmelwood -Carmen -Carmena -Carmencita -Carmenna -Carmer -Carmet -Carmi -Carmichael -Carmichael Park -Carmin -Carmine -Carminya -Carmita -Carmody -Carmody Hills -Carmona -Carmoor -Carna -Carnaby -Carnac -Carnadero -Carnage -Carnarvon -Carnation -Carnavron -Carnbrook -Carneal -Carneer -Carnegie -Carnelian -Carnene -Carneros -Carnes -Carney -Carnforth -Carniel -Carniglia -Carnoble -Carnot -Carnoustie -Carntion -Carnwath -Caro -Carob -Carobwood -Carol -Carol Ann -Carol Anne -Carol Crest -Carol Lee -Carol Louise -Carol Lynn -Carol Raye -Carola -Carole -Carolian -Carolier -Carolin -Carolina -Caroline -Caroline Brook -Caroline Chisholm -Caroline Chisolm -Caroline Farms -Caroll -Carolos -Carolwood -Carolyn -Carolyn Forest -Carolyn Weston -Carolyne -Carolynn -Caroma -Caron -Carona -Carondelet -Caroni -Caroon -Carotana -Carousel -Carp -Carpathia -Carpender -Carpenders -Carpenter -Carpenter Hill -Carpenteria -Carpenters -Carpenters Arms -Carpenters Beach -Carpenters Brook -Carpenters Hall -Carpenters Wood -Carpentier -Carper -Carpino -Carpinteria -Carquinez -Carquinez Scenic -Carr -Carr Bank -Carr Bottom -Carr Bridge -Carr Brook -Carr Common -Carr Crofts -Carr Crofts Town -Carr Gate -Carr Hall -Carr Hill -Carr House -Carr Manor -Carr Moor -Carr Wood -Carragata -Carraige -Carraige Hill -Carral -Carramar -Carramarr -Carrana -Carranya -Carrar -Carraway -Carrbridge -Carrbrook -Carrcroft -Carreau -Carrel -Carrell -Carrelton -Carrera -Carrerio -Carreta -Carrfield -Carrgate -Carrgreen -Carrhill -Carrhouse -Carriage -Carriage Crossing -Carriage Ford -Carriage Green -Carriage Hill -Carriage Hills -Carriage House -Carriage Park -Carriage Ridge -Carriage Run -Carriage Square -Carriage Walk -Carriage Way -Carriagehouse -Carriagepark -Carriageway -Carrick -Carrico -Carrie -Carrie Ann -Carrie Litchfield -Carrier -Carriere -Carriers -Carrigan -Carriger -Carriglea -Carriker -Carrillo -Carrington -Carrington Field -Carrington Hall -Carrington Hill -Carrington Moss -Carrington Ridge -Carrisa -Carrisbrook -Carrithers -Carrizal -Carrlyn -Carrmann -Carro -Carrol -Carrol Gate -Carroll -Carroll Heights -Carroll Mill -Carrolls -Carrollton -Carrollwood -Carrolton -Carron -Carrona -Carroun -Carrousel -Carrow -Carrowbrook -Carrs -Carrs Creek -Carrs Ridge -Carrs Wharf -Carrsfield -Carrsvale -Carrswood -Carruth -Carruthers -Carrwood -Carry -Carry Back -Carryback -Carsam -Carsdale -Carse -Carsha -Carshalton -Carshalton High -Carshalton Park -Carslake -Carson -Carsonwood -Carstairs -Carstensen -Carswell -Cart -Cart Path -Carta -Carta Blanca -Cartagena -Cartan -Cartbridge -Carter -Carter Acres -Carter House -Carter Ridge -Carteret -Carterhatch -Carters -Carters Grove -Cartersfield -Carterwood -Carthage -Carthew -Carthona -Carthouse -Carthusian -Cartier -Cartigan -Carting -Cartisian -Cartledge -Cartlodge -Cartmel -Cartmell -Cartmore -Carton -Cartref -Cartridge -Cartway -Cartwright -Carukin -Carunna -Caruso -Caruth -Carvel -Carvel Beach -Carvell -Carven -Carver -Carver Beach -Carver Highland -Carver Hill -Carver Park -Carvers -Carville -Carwall -Carwar -Carwell -Carwin -Cary -Cary Algonquin -Cary Geights -Cary Point -Caryhurst -Caryl -Caryll -Carysfield -Carysfort -Caryville -Cas -Casa -Casa Blanca -Casa Bona -Casa Buena -Casa Del Sol -Casa Grande -Casa Linda -Casa Loma -Casa Madeira -Casa Mia -Casa Nueva -Casa Robles -Casa Verde -Casa View -Casa de Arroyo -Casa de Vida -Casa del Mar -Casablanca -Casado -Casals -Casamita -Casanda -Casanova -Casavan -Casbeer -Cascade -Cascade Falls -Cascade Fire -Cascade Ridge -Cascades -Cascara -Casco -Casco Point -Cascus -Casdin -Case -Casears -Casella -Caselli -Caselman -Casement -Casemont -Casewick -Casey -Cashel -Cashel Bay -Cashell -Casher -Cashew -Cashew Blossom -Cashlenan -Cashman -Cashmere -Cashmore -Casilear -Casillas -Casimere -Casimir -Casino -Casita -Casitas -Caskey -Caslan -Caslocke -Casmar -Cason -Caspar -Caspars -Casper -Caspers -Casperson -Caspian -Caspian Sea -Cass -Cass Brook -Cassady -Cassandra -Cassata -Cassayre -Casseday -Cassedy -Cassel -Casselden -Casselino -Cassell -Casselman -Cassena -Casserly -Cassett -Cassia -Cassiar -Cassidy -Cassidy Field -Cassie -Cassilda -Cassilis -Cassin -Cassina -Cassins -Cassio -Cassiobridge -Cassiobury -Cassiobury Park -Cassiopia -Cassland -Casslee -Casson -Casswall -Casta -Castagnaro -Castagnasso -Castaldi -Castanas -Castano -Castanos -Castaway -Castec -Castell -Castellain -Castelli -Castello -Castelnau Lonsdale -Castelton -Casten -Castenada -Casterbridge -Casterline -Casterson -Casterton -Castile -Castilian -Castilla -Castilleja -Castillejo -Castillo -Castillon -Castine -Castlands -Castle -Castle Bar -Castle Baynard -Castle Brooke -Castle Cary -Castle Cove -Castle Creek -Castle Crest -Castle Croft -Castle Edge -Castle End -Castle Farm -Castle Gate -Castle Glen -Castle Grove -Castle Harbor -Castle Heights -Castle Hill -Castle Hill Ranch -Castle Howard -Castle Ings -Castle Knoll -Castle Lake -Castle Lodge -Castle Manor -Castle Mill -Castle Moor -Castle Oaks -Castle Park -Castle Pine -Castle Pines -Castle Pointe -Castle Ridge -Castle Rock -Castle Rough -Castle View -Castle Wynd -Castlebar -Castleberry -Castlebridge -Castlebrook -Castlebury -Castlecombe -Castlecrest -Castlecroft -Castledon -Castledown -Castlefield -Castleford -Castleford Bank -Castlegate -Castlehaven -Castleknoll -Castlemain -Castlemaine -Castleman -Castlemere -Castlemill -Castlemont -Castlemoor -Castlenau -Castleraegh -Castlerea -Castlereagh -Castlereigh -Castlerigg -Castlerock -Castlerook -Castles -Castleshaw -Castleton -Castletown -Castleview -Castlewellan -Castlewood -Castley -Casto -Caston -Castor -Castro -Castro Ranch -Castro Valley -Castroville -Casuarina -Casula -Casurina -Caswell -Cat -Cat Hollow -Cat Pond -Cat Rock -Cat Tail -Catafalque -Cataldi -Cataldo -Catalina -Catalina Island -Cataline -Catalpa -Catalpha -Catamaran -Catamount -Catania -Catanna -Catapult -Cataract Hollow -Cataumet -Catawba -Catbird -Catchpenny -Catchpole -Cateaton -Cateau -Catepillar -Cater -Caterfield -Caterham -Caterpillar -Caterson -Cates Lake -Cates Ranch -Catesby -Catfish -Catford BridgeDoggett -Catha -Cathall -Cathan -Cathanger -Cathard -Catharine -Catharpin -Cathay -Cathcart -Cathead -Cathedral -Cathedral Park -Cather -Catherall -Catherine -Catherine Field -Catherine Fran -Catherine Glen -Catherine Wheel -Catherines -Cathermola -Catherwood -Cathill -Cathleen -Cathlin -Cathlow -Cathness -Cathrine -Cathy -Catia -Catie -Catlett -Catlin -Catlins -Catlow -Cato -Catoctin -Caton -Caton Center -Caton Crest -Caton Farm -Caton Ridge -Catonopsis -Catoona -Cator -Catrina -Catron -Catsbrook -Catsey -Catskill -Cattai Creek -Cattail -Cattail Spring -Cattaraugus -Catterall -Catterick -Catterwood -Catteshall -Cattistock -Cattle -Cattle Chute -Cattle Market -Cattlegate -Cattleman -Catton -Catts Tavern -Cattswood -Catulpa -Caucer -Caudill -Caughey -Cauldwell -Cauley -Caulfield -Caulms Wood -Caumsett Farms -Caumsett Woods -Causeway -Causeway End -Causey -Causeyware -Causton -Cautherly -Cautley -Cavalcade -Cavalier -Cavalier Landing -Cavalier Woods -Cavallero -Cavalletti -Cavallo -Cavalry -Cavan -Cavanagh -Cavanaugh -Cavatorta -Cave -Cave Gulch -Cave Rocks -Cavedale -Cavell -Caven Point -Cavendish -Caveridge -Caverly -Cavern -Cavers -Caversham -Caversham Park -Caversham park -Caves -Caveys -Cavill -Cavite -Cavitt -Cavoretto -Cavour -Cawarra -Cawarrah -Cawbeck -Cawcott -Cawder Lee -Cawdor -Cawdor Farms -Cawfield -Cawker -Cawley -Cawnpore -Cawthorne -Caxton -Cayden -Cayer -Cayetano -Cayley -Cayman -Cayman Island -Caymus -Cayote Hill -Cayser -Caythorpe -Cayton -Cayucos -Cayuga -Caywood -Cazadero -Cazeneuve -Cazenove -Cazneau -Cañada -Cbq -Cc -Ce. Patricia -Cebalo -Cebold -Cebra -Cebu -Cecala -Cecatra -Cecelia -Cecil -Cecil Aldin -Cecil Crest -Cecil Newman -Cecile -Cecilia -Cecilian -Cecily -Cedar -Cedar Acres -Cedar Branch -Cedar Bridge -Cedar Brook -Cedar Cliff -Cedar Creek -Cedar Crest -Cedar Crossing -Cedar Crown -Cedar Dale -Cedar Dell -Cedar Falls -Cedar Farms -Cedar Flat -Cedar Forest -Cedar Gables -Cedar Gate -Cedar Glade -Cedar Glen -Cedar Glenn -Cedar Green -Cedar Grove -Cedar Haven -Cedar Hedge -Cedar Hill -Cedar Hills -Cedar Hollow -Cedar Knoll -Cedar Knolls -Cedar Lake -Cedar Lakes -Cedar Lawn -Cedar Logs -Cedar Mountain -Cedar Oaks -Cedar Park -Cedar Point -Cedar Pointe -Cedar Pond -Cedar Post -Cedar Ranch -Cedar Ridge -Cedar River Park -Cedar River Pipeline -Cedar Run -Cedar Shore -Cedar Spring -Cedar Springs -Cedar Swamp -Cedar Terrace -Cedar Tree -Cedar Valley -Cedar View -Cedar Wood -Cedarbend -Cedarberry -Cedarbluff -Cedarbridge -Cedarbrook -Cedarcliff -Cedarcreek -Cedarcrest -Cedarcroft -Cedardale -Cedarest -Cedarfield -Cedarforest -Cedargrove -Cedarhill -Cedarhollow -Cedarhurst -Cedarlawn -Cedarlea -Cedarleaf -Cedarmeadow -Cedarne -Cedars -Cedars East -Cedartree -Cedarvale -Cedarvale Access -Cedarview -Cedarvillage -Cedarville -Cedarwood -Ceddox -Ceder -Cedrela -Cedric -Cedro -Cedrus -Ceely -Cefalo -Cefalu -Celadon -Celandine -Celano -Celebes -Celebrar -Celebration -Celebrity -Celeo -Celery -Celeste -Celestial -Celestine -Celia -Celilo -Celina -Celinda -Celine -Celium -Cell Barnes -Cell Farm -Cellar -Cellar Door -Cellars -Celler -Celtic -Cembellin -Cement Hill -Cement Plant -Cemetary -Cemetery -Cemmaes Court -Cenacle -Cendry -Cenex -Centaur -Centaurus -Centech -Centella -Centenary -Centennial -Centennial Grove -Centennial Park -Centeno -Center -Center Bay -Center Briarwood -Center Bridge -Center Cargo -Center Chicot -Center Cir -Center Court -Center Dyre -Center Flats -Center Harbor -Center Hill -Center Knolls -Center Market -Center Ridge -Center Village -Center Wood -Center for the Arts -Centergate -Centerhill -Centerport -Centershore -Centerton -Centerview -Centerville -Centerwood -Centinella -Centola -Centoni -Central -Central Cabin -Central Park -Central Skokie -Central Square -Central Village -Central Wall -Central Way Faggs -Centre -Centre Common -Centre Court -Centre Island -Centre Park -Centre Pointe -Centre Pt -Centre Square -Centre View -Centrella -Centreville -Centreville Farms -Centrum -Centurion -Century -Century Farm -Century Frontage -Century Manor -Century Mill -Century Oaks -Century Ridge -Century Towne -Century Vista -Cephas -Cera -Ceralene -Ceramic -Ceramica -Cerchio -Cerdan -Cereal -Cereda -Cereea -Cerenzia -Ceres -Ceresia -Cereza -Cereze -Cerezo -Cerina -Cerini -Cerise -Cermak -Cernan -Cerne -Cernohous -Cernon -Cerny -Cerone -Cerqua -Cerra Vista -Cerrato -Cerreta -Cerretta -Cerrito -Cerritos -Cerro -Cerro Crest -Cerro Este -Cerro Vista -Cerruti -Cervantes -Cervato -Cesa -Cesar -Cesar Chavez -Cesario -Cesena -Cessford -Cessington -Cessna -Cesta -Cestaric -Cestrum -Cetrina -Cevets -Cevu -Cewell -Ceylon -Ceynowa -Cezanne -Chaban -Chablis -Chabolla -Chabot -Chaboya -Chace -Chace Hill -Chackfield -Chaco -Chad -Chada -Chadacre -Chadbourne -Chadd -Chadderton -Chadderton Hall -Chadderton Park -Chaddick -Chaddock -Chadds Ford -Chadima -Chadkirk -Chado -Chadovoyne -Chads -Chadsworth -Chadvil -Chadwell -Chadwic -Chadwick -Chadwick Hall -Chadwick Oaks -Chadwicke -Chadwin -Chaffee -Chaffer -Chaffes -Chaffey -Chaffin -Chaffinch -Chaffins -Chafford -Chagall -Chagford -Chahotkin -Chailey -Chain -Chain Bar -Chain Bridge -Chain O Hills -Chain of Lakes -Chaingate -Chairborough -Chaix -Chakya -ChalGrave -Chaladay -Chalapa -Chalcedony -Chalcombe -Chalcot -Chalcroft -Chalder -Chaldon -Chaldon Common -Chale -Chalet -Chalet Clothilde -Chaleyer -Chalfant -Chalfont -Chalfonte -Chalford -Chalfort -Chalgrove -Chalice -Chalk -Chalk Farm -Chalk Hill -Chalk Mountain -Chalk Pit -Chalk Point -Chalkely -Chalkenden -Chalkers -Chalket -Chalkhouse Green -Chalkpit -Chalks -Chalkshire -Chalkwell -Chalkwell Park -Chalky -Chalky Bank -Challas -Challedon -Challener -Challenge -Challenger -Challin -Challis -Challoner -Challum -Chally -Chalmers -Chalmette -Chalner -Chalomar -Chalon -Chalone -Chaloner -Chalsey -Chalton -Chalvedon -Chambellan -Chamber -Chamber House -Chamberer -Chamberlain -Chamberland -Chamberlayne -Chamberlin -Chambers -Chambers Green -Chambersbury -Chambino -Chamblis -Chambord -Chambosse -Chambourd -Chambray -Chaminade -Chamlis -Chamomile -Chamone -Chamonieux -Chamonix -Champ -Champa -Champagne -Champion -Champions -Championship -Champlain -Champlaine -Champlin -Champness -Champney -Champs Elysee -Chanate -Chance -Chance Farm -Chanceford -Chancel -Chancelet -Chancell -Chancellor -Chancellors -Chancelor -Chancery -Chanctonbury -Chandeaux -Chandlee Mill -Chandler -Chandler Mill -Chandlers -Chandley -Chandos -Chanel -Chaney -Chaneyville -Changebridge -Chanhassen -Chanler -Chanlon -Channahon -Channel -Channel Center -Channel Gate -Channel Islands -Channelsea -Channer -Channing -Channing Bicycle -Channon -Chanol -Chanslor -Chansory -Chant -Chantal -Chantecler -Chantel -Chanters -Chanticlare -Chanticleer -Chantilley -Chantilly -Chantilly Baptist -Chantilly Crossing -Chantler -Chantlers -Chanton -Chantrey -Chantry -Chantry View -Chanute -Chanwahon -Chapala -Chaparral -Chaparro -Chapek -Chapel -Chapel Chase -Chapel Cove -Chapel End -Chapel Farm -Chapel Field -Chapel Fields -Chapel Forge -Chapel Gate -Chapel Hill -Chapel House -Chapel Lake -Chapel Mill -Chapel Oak -Chapel Oaks -Chapel Pond -Chapel Springs -Chapel View -Chapel Wood -Chapelfield -Chapelgate -Chapelle -Chapelmount -Chapeltown -Chapeltown Carlisle -Chapeltown Grove -Chapelview -Chapelwood -Chapin -Chaplain -Chaplin -Chapman -Chapman Mill -Chapman Oak -Chapmans -Chapmans Landing -Chapmans Town -Chapparal -Chappel -Chappell -Chappell of Bond -Chappellwood -Chappie -Chapter -Chapter House -Char -Charabanc -Charal -Charandy -Charant -Charbonnier -Charcoal -Charcot -Chard -Chardin -Chardmore -Chardon -Chardonnay -Chardonnay Ridge -Charen -Charena -Charfleets -Charford -Chargall -Chargeable -Charger -Charges -Chargin -Charina -Charing -Charing Cross -Charing Heath -Charing School -Charington -Chariot -Charish -Charismatic -Chariton -Charity -Charker -Charkers -Charlam -Charlbert -Charlbury -Charlcote -Charldane -Charlden -Charlecot -Charlecote -Charlela -Charlemagne -Charlemaine -Charlemont -Charlene -Charleroi -Charles -Charles Anna -Charles Arrington -Charles Augustine -Charles Babbage -Charles Cali -Charles Coveney -Charles Crossing -Charles Davis -Charles Dean -Charles Dickens -Charles Diersch -Charles Dunn -Charles E Ryan -Charles Gate -Charles Hackett -Charles Hall -Charles Halle -Charles Haller -Charles Hawkins -Charles Hayman -Charles Hill -Charles Holden -Charles II -Charles Lacey -Charles Lake -Charles Lindbergh -Charles M Bailey -Charles Mary -Charles Park -Charles Patten -Charles River -Charles Schell -Charles Sevright -Charles Thomson -Charles Wack -Charles Young -Charlesbank -Charlescotte -Charlesdale -Charlesfield -Charlesford -Charlesgate -Charlesmere -Charleson -Charleston -Charlestown -Charlestowne -Charlesview -Charlesworth -Charley -Charley Forest -Charlie -Charlie Joyner -Charlie Piddles -Charlie Yankos -Charlieville -Charline -Charlmont -Charlock -Charlott -Charlotte -Charlotte Despard -Charlotte Park -Charlotteburg -Charlottesburg -Charlottesville -Charlson -Charlton -Charlton Church -Charlton Mead -Charlville -Charlwood -Charlwoods -Charlyn -Charmada -Charmain -Charman -Charman Hill -Charme -Charmello -Charmeran -Charmfield -Charmian -Charmin -Charmingfare -Charminster -Charmouth -Charning Cross -Charnock -Charnstaffe -Charnswood -Charnville -Charnwood -Charolette -Charolotte -Charon -Charred Oak -Charredwood -Charring -Charrington -Chars -Charsan -Chart -Chart Hill -Chart House -Charta -Chartbury -Charter -Charter Oak -Charter Oaks -Charter One -Charterhouse -Charteris -Charters -Chartfield -Chartham -Charthouse -Chartier -Chartmoor -Chartres -Chartreux -Chartridge -Chartsey -Chartwell -Charvil -Charvil House -Charvil Meadow -Charvill -Charville -Charwood -Chas -Chasden -Chase -Chase Commons -Chase Cross Havering -Chase Green -Chase Hill -Chase Hills -Chase Pond -Chase Side -Chasefield -Chaseley -Chaseling -Chasely -Chasemill -Chasemoor -Chaseside -Chasewood -Chaska -Chaske -Chasmar -Chasner -Chasselas -Chassen -Chassyl -Chastworth -Chatam -Chataway -Chatburn -Chateau -Chateau Bluff -Chateau Ridge -Chateau Thierry -Chateau la Salle -Chateaugay -Chateaulin -Chateaux Bouane -Chatelain -Chatfield -Chatham -Chatham Hall -Chatham Hill -Chatham Hill Windmill -Chatham Village -Chathamfield -Chathams Ford -Chathlake -Chatillion -Chatillon -Chatley -Chaton -Chatres -Chatswood -Chatsworth -Chattanooga -Chattenden -Chatter Brook -Chatteris -Chattern -Chatterton -Chattleton -Chatto -Chattswood -Chatwood -Chaucer -Chaul End -Chaulden -Chaumont -Chauncey -Chauncy -Chauntry -Chauser -Chautaugua -Chautauqua -Chauvel -Chauvet -Chauvety -Chave -Chaves -Chavey Down -Chavez -Chavoya -Chaworth -Chawridge -Chawton Park -Chayes Park -Chaytor -Chazey -Che Che Pinqua -Cheadle -Cheadle Old -Cheal -Cheam -Cheam Common -Cheapside -Cheatle -Chebacco -Chebec -Chebek -Chechester -Check -Checker -Checker Berry -Checkerberry -Checkered Flag -Checkers -Checkerspot -Checkley -Checkstone -Cheda -Cheda Knolls -Cheddar -Cheddington -Cheddleton -Chedlee -Chedlin -Chedworth -Cheekbridge -Cheekwood -Cheelson -Cheeney -Cheers -Cheery -Cheeryble -Cheese -Cheesecombe Farm -Cheesequake -Cheesequake Park -Cheetah -Cheetam Fold -Cheetham -Cheetham Hill -Cheethams -Cheetwood -Cheever -Cheevers -Cheffins -Chegwell -Chegworth -Chegwyn -Chehalis -Chelan -Chelbourne -Cheldon -Chelford -Chell -Chellaston -Chellman -Chellows -Chells -Chelmar -Chelmer -Chelmer Valley -Chelmerton -Chelmont -Chelmsford -Chelsa -Chelsea -Chelsea Beaufort -Chelsea Hills -Chelsea Manor -Chelsey -Chelsfield -Chelsham -Chelsham Common -Chelsham Court -Chelshire -Chelson -Chelston -Chelsworth -Cheltenham -Cheltenhan -Chelton -Chelverton -Chelwood -Chelwood Gate -Chelwynd -Chemeketa -Chemical -Chemise -Chemka Pool -Chemlsford -Chemolite -Chemung -Chen -Chenango -Chenault -Chenery -Cheney -Cheney Pond -Chenies -Chenin -Chenin Blanc -Chennault -Chennell Park -Chenu -Chepstow -Chequer -Chequers -Chequers Bridge -Chequesset -Chequessett -Cherbourg -Cherbury -Cheri -Cherice -Cherie -Cherington -Cheris -Cherita -Cheriton -Cherly -Cherlyn -Cherne -Cherokee -Cherokee Heights -Cherri -Cherri Lynn -Cherrington -Cherry -Cherry Bend -Cherry Blossom -Cherry Brook -Cherry Creek -Cherry Crest -Cherry Garden -Cherry Gate -Cherry Glen -Cherry Green -Cherry Grove -Cherry Hill -Cherry Hills -Cherry Holt -Cherry Laurel -Cherry Lawn -Cherry Mill -Cherry Oak -Cherry Oca -Cherry Orchard -Cherry Point -Cherry Ridge -Cherry Springs -Cherry Tree -Cherry Tree Crossing -Cherry Tree Farm -Cherry Trees -Cherry Valley -Cherry Wood -Cherryblossom -Cherrybrook -Cherrycrest -Cherrycroft -Cherrydale -Cherrydown -Cherryfield -Cherryfields -Cherryhill -Cherryhills -Cherryland -Cherrylawn -Cherrystone -Cherrythorne -Cherryton -Cherrytree -Cherryvale -Cherryview -Cherryville -Cherrywood -Cherston -Chertsey -Chertsey Bridge -Cherubina -Chervil -Cherwal -Cherwek -Cherwell -Cherwick -Cherwing -Cheryl -Cheryl Ann -Cheryl Beck -Cheryl Hills -Cheryl Turn -Cheryll -Ches Mar -Chesapeake -Chesapeake Bay -Chesapeake Beach -Chesapeake Harbour -Chesapeake Lighthouse -Chesborough -Chesbro -Chesbro Lake -Chesbrough -Cheseapeake -Chesebrough -Cheselden -Cheseman -Chesett -Chesfield -Chesford -Chesham -Chesham Fold -Cheshire -Chesholm -Cheshunt -Chesilton -Chesire -Chesley -Chesley Knoll -Chesline -Chesman -Chesney -Chesney Glen -Chesnut -Chess -Chessel -Chessenden -Chessholme -Chesshyre -Chessington -Chessman -Chessnut -Chesson -Chestehunt -Chester -Chester Brook -Chester Hall -Chester Hill -Chesterblade -Chesterbrook -Chesterfield -Chesterford -Chesterhill -Chesterlee -Chesterman -Chesters -Chesterton -Chestertown -Chesterwood -Chestney -Chestnut -Chestnut Cove -Chestnut Crossing -Chestnut Farm -Chestnut Gardens -Chestnut Grove -Chestnut Hill -Chestnut Hills -Chestnut Knolls -Chestnut Leaf -Chestnut Oak -Chestnut Park -Chestnut Pointe -Chestnut Ridge -Chestnut Springs -Chestnut Tree -Chestnut Wood -Cheston -Chestwall -Cheswick -Cheswood -Chetland -Chettenham -Chetwode -Chetwood -Chetwyn -Chetwynd -Cheval -Chevalier -Chevalle -Chevchenko -Chevelle -Chevening -Cheverly -Cheverly Park -Cheverton -Cheverus -Cheves -Chevet -Chevin -Chevington -Cheviot -Cheviot on Duxbury -Cheviots -Chevy -Chevy Chase -Chevy Chase Lake -Chew -Chew Brook -Chew Valley -Chewpon -Chews Branch -Chews Chapel -Chewter -Cheyenne -Cheylesmore -Cheyne -Cheyne Park -Cheyneys -Chiala -Chianti -Chicago -Chicago Tube -Chicama -Chicamuxen -Chicatabut -Chicatawbut -Chicester -Chichele -Chicheley -Chichester -Chichester House -Chick -Chick Evans -Chickacoan Trail -Chickadee -Chickaree -Chickasaw -Chickatabot -Chickatawbut -Chicken -Chicken Shack Fire -Chicken Valley -Chickenden -Chickering -Chickie -Chickney -Chickory -Chico -Chicoine -Chicopee -Chicorp -Chicory -Chicot -Chiddingfold -Chiddingstone -Chidester -Chidley Cross -Chidlow -Chidswell -Chidwall -Chiechi -Chief -Chieftain -Chiesa -Chieveley -Chifley -Chigborough -Chignal -Chignall -Chigwell -Chigwell Park -Chilanian -Chilaw -Chilberton -Chilbrook -Chilco -Chilcoate -Chilcote -Chilcott -Chilcroft -Child -Childerditch -Childerditch Hall -Childeric -Childerley -Childers -Childrens -Childress -Childs -Childs Hall -Childs Hill Finchley -Childs Point -Childsbridge -Childscroft -Chileno Valley -Chiles -Chiles Pope Valley -Chilgrove -Chilham -Chilhowie -Chillem -Chillerton -Chillies -Chilling -Chillington -Chillingworth -Chillis Wood -Chilliwack -Chillum -Chillum Manor -Chillumgate -Chilmark -Chilmead -Chilpancingo -Chilsey Green -Chilston -Chiltern -Chiltern Green -Chiltern Hill -Chiltern Hills -Chiltern Park -Chiltern View -Chiltley -Chilton -Chilver -Chilvers -Chilverton -Chilworth -Chimalus -Chime -Chimes -Chimes Harbor -Chimney -Chimney Corner -Chimney Creek -Chimney House -Chimney Pot -Chimney Ridge -Chimney Rock -Chimney Swift -China -China Air -China Basin -China Grade -China Wall -Chinaberry -Chinatown Dean -Chinbrook -Chinchilla -Chincoteague -Chindits -Chineham -Chinewood -Chingarora -Chingdale -Chingford -Chingford Mount -Chinkapin -Chinley -Chinmoy -Chinn -Chinn Park -Chinnock -Chinnuk -Chinook -Chinquapin -Chinquapin Crest -Chinquapin Round -Chinthurst -Chiott -Chip Hill -Chipili -Chipily -Chipka -Chiplay -Chipley -Chiplou -Chipman -Chipmonk Hollow -Chipmunk -Chippen -Chippendale -Chippendayle -Chippenham -Chipper -Chipper Hill -Chipperfield -Chippetts -Chippewa -Chipping -Chipping Campden -Chippingham -Chippingstone -Chippy -Chipstead -Chipstead Valley -Chipstone -Chipwood -Chiquita -Chiquita Camino -Chircan -Chirco -Chisago -Chisamore Ranch -Chiselhurst -Chisenhale -Chisholm -Chisholme -Chisledon -Chislehurst -Chisley -Chism Park -Chisolm -Chisom -Chisum -Chiswell -Chiswell Green -Chiswick -Chiswick Common -Chiswick High -Chisworth -Chittenden -Chittendon -Chittick -Chitty -Chittys -Chivalry -Chivers -Chloe -Choate -Choats -Chobham -Chobham Park -Chobot -Chocataw -Chocksett -Chocolate -Chocolog -Choctaw -Choir -Choke -Choke Cherry -Chokeberry -Chokecherry -Chole -Cholesbury -Cholla -Cholmeley -Cholmley -Cholmondeley -Cholseley -Chope -Chopek -Chopin -Choptank -Chorley -Chorley Hall -Chorley New -Chorley Old -Chorley Wood -Chorleywood -Chorlton -Choseley -Chouteau -Chovan -Chowan -Chowdermarch -Chowen -Chownes Mead -Chrerrybrook -Chretien -Chris -Chris Mar -Chrisandra -Chrisba -Chrisdumar -Chrisibar -Chrisland -Chrisman -Chrisman Hill -Chrismar -Chrismas -Chrisp -Christ Church -Christa -Christabel -Christchurch -Christeen -Christel -Christel Oaks -Christen -Christensen -Christenson -Christeph -Christer -Christian -Christian Fields -Christian Hill -Christiana -Christiana Parran -Christiano -Christiansen -Christie -Christie Heights -Christie Hill -Christies -Christina -Christina Marie -Christine -Christine Lynn -Christleton -Christman -Christmas -Christmas Lake -Christmas Pie -Christmas Tree -Christmas Tree Point -Christo -Christofaro -Christol -Christoper -Christopher -Christopher Columbus -Christopher Martin -Christopher Michael -Christopher Thomas -Christopher Wren -Christophers -Christs Hospital -Christy -Chrome -Chromite -Chronical -Chronicle -Chronnell -Chruchville -Chrysanthemum -Chrysanthy -Chrysler -Chrysopolis -Chryssell -Chrystie -Chu -Chubb -Chubbs Brook -Chubbuck -Chubworthy -Chuch -Chuck -Chuck Hatch -Chuckanutt -Chuckwagon -Chudleigh -Chukker -Chula -Chula Vista -Chulsey -Chum -Chumalia -Chumasero -Chumleigh -Chung Wah -Chungking -Chunis -Chunooma -Church -Church Access -Church Creek -Church Elm -Church End -Church End East End -Church End EstateMayo -Church Farm -Church Gate -Church Headland -Church Hill -Church Hill Kirkfield -Church Lake -Church Park -Church Wood -Church of Hazel -Churchbury -Churcher -Churchfield -Churchfields -Churchgate -Churchhill -Churchill -Churchill Downs -Churchill Farm -Churchill Glen -Churchill Park -Churchills -Churchland -Churchman -Churchmead -Churchmore -Churchston -Churchtown -Churchview -Churchville -Churchwood -Churin -Churley Wood -Churlin -Churn -Churnet -Churnside -Churston -Churt -Churton -Churubusco -Churwell -Chute -Chuter -Chutney -Chuzzlewit -Chyam -Chynoweth -Ciampa -Cianci -Ciarlo -Cibber -Cibis -Cibrian -Cicada -Cicada Glen -Ciccarelli -Ciccone -Ciceley Mill -Cicely -Cicero -Cicerone -Cid -Cidalia -Cider -Cider Hill -Cider House -Cider Mill -Cider Springs -Cidermill -Cielito -Cielo -Cielo Vista -Cienega -Ciervos -Cijos -Cilantro -Cima -Cimarron -Cimino -Cimmaron -Cimmarron -Cinamon -Cincinatti -Cincinnatti -Cincinnatus -Cindee -Cinder -Cinder Hill -Cinderbed -Cinderella -Cinderford -Cindra -Cindy -Cindy Jo -Cinmar -Cinnabar -Cinnabar Hills -Cinnamin -Cinnamon -Cinnamon Apple -Cinnamon Creek -Cinnamon Teal -Cinnamon Tree -Cinnamond -Cintra -Cintura -Ciolino -Ciper -Cippenham -Cipres -Cipriani -Cipriano -Cipriano Springs -Circa -Circle -Circle C -Circle Court -Circle Creek -Circle Gate -Circle High -Circle Hill -Circle Oaks -Circle Pine -Circle Ranch -Circle Ridge -Circledale -Circlegate -Circling Hunter -Circuit -Circular -Circus -Ciro -Cirolero -Cirrus -Ciruela -Cirvelo -Cisco -Cisler -Cisney -Ciss -Cissbury -Cissell -Cissell Manor -Cisticola -Cistus -Cit -Citadel -Citadelle -Citation -Citizen -Citizens -Citrine -Citron -Citrus -Citrus Grove -Citrus Wood -Citruswood -City -City Center -City Centre -City Dock -City Gate -City Hall -City Heights -City Island -City Park -City View -City Way Pattens -City West -Cityfront Plaza -Cityhomes -Cityview -Civic -Civic Center -Civic Centre Wood -Civic Ctr -Civic Heights -Civic Terrace -Civita -Clack -Clacket -Clackhams -Clackmannan -Claeys -Claffey -Claffy -Claflin -Claflin Farm -Clafton -Clagett -Clagett Farm -Claggett -Claggett Landing -Claggy -Claiborne -Claibourne -Claim -Clair -Clairborne -Claire -Clairemont -Clairfield -Clairmont -Clairton -Clairvale -Clairview -Clallam -Clam -Clam Shell -Clames -Clamhunger -Clammer Hill -Clamshell -Clanalpine -Clanbrook -Clancarty -Clancy -Clandlpline -Clandon -Clanton -Clanville -Clanwilliam -Clapboard Ridge -Clapboardtree -Clapgate -Clapham -Clapham High -Clapham Manor -Clapham Park -Clapp -Clapper -Clappers -Clappers Farm -Clappertown -Clappins -Clapton Hall -Clara -Clara Barton -Clara Louise -Clara Maass -Clara Vista -Claradon -Clarana -Clarane -Clarden -Clare -Clare Lawn -Claredale -Claredon -Clarefield -Claremon -Claremont -Claremont Park -Claremont Woods -Claremore -Claremount -Clarenan -Clarence -Clarence Bromell -Clarendale -Clarenden -Clarendon -Clarendon Hills -Clarendon Woods -Clarens -Clares -Clares Green -Claret -Clarevale -Clareview -Clareville -Clarewill -Clarewood -Clarges -Claria -Claribel -Clarice -Claridge -Clarie -Clarina -Clarinada -Clarinda -Clarion -Clarissa -Clarita -Clark -Clark Fork -Clark Green -Clark Hill -Clark Lake -Clark Smith -Clarkbrooke -Clarke -Clarke Farms -Clarke Hall -Clarkebourne -Clarken -Clarkes -Clarkes Landing -Clarkford -Clarkin -Clarks -Clarks Branch -Clarks Crossing -Clarks Farm -Clarks Hill -Clarks Run -Clarks Wood -Clarksburg -Clarksdale -Clarksfield -Clarkson -Clarkspur -Clarkston -Clarksville -Clarkton -Clarkwood -Clarmont -Clarmonte -Clarner -Claron -Clary -Clary Sage -Clason -Clason Point -Classen -Classic -Classical -Classico -Classon -Clatterbury -Claucus -Claudare -Claude -Claude Moore -Claudett -Claudia -Claudine -Claudius -Claudy -Claughton -Claus -Clausen -Clauser -Clausing -Clausland Mountain -Clauson -Clauss -Clavadal -Clave -Clavel -Clavela -Clavell -Claverack -Claverdale -Claverdon -Claverhambury -Clavering -Claverton -Claverts -Clavey -Clavinia -Clawiter -Clawson -Claxfield -Claxton -Clay -Clay Bank -Clay Basket -Clay Cliffe -Clay East -Clay End -Clay Hammond -Clay Hill -Clay Pit -Clay Spring -Clay Tye -Claybank -Claybar -Clayboard -Clayborn -Clayborne -Claybourne -Claybrook -Claybrook Farms -Clayburn -Claybury -Claycart -Claycord -Claycourt -Claydon -Clayfarm -Clayfield -Claygate -Clayhall -Clayhill -Clayholes -Claymere -Claymont -Claymoor -Claymore -Claypit -Claypit Hill -Claypits -Claypitt -Claypole -Clayponds -Claypool -Clays -Clayshotts -Clayton -Clayton Croft -Clayton Hall -Clayton Marsh -Clayton View -Claytonbrook -Claytonia -Claywood -Cleabarrow -Cleadon -Cleall -Cleanthus -Clear -Clear Creek -Clear Echo -Clear Lake -Clear Ridge -Clear River -Clear Shot -Clear Spring -Clear Springs -Clear View -Clearbrook -Clearbrook Park -Clearcroft -Cleares -Clearfield -Clearland -Clearly -Clearmeadow -Clearmont -Clearmount -Clearpointe -Clearview -Clearwater -Clearwater Creek -Clearwaters -Clearway -Clearwell -Clearwood -Cleary -Cleary Lake -Cleave -Cleaveland -Cleaver -Cleaves -Cleavland -Cleavley -Cleburne -Clee -Cleeve -Cleft -Cleg -Clegg -Cleggs -Cleghorn -Cleland -Clelia -Clelland -Clem -Clemans -Clematis -Clemence -Clemens -Clement -Clement Royds -Clemente -Clementhorpe -Clementi -Clementina -Clementine -Clementon -Clements -Clements End -Clements Hall -Clementson -Clemiston -Clemmons -Clemo -Clemons -Clemson -Clemton -Clenches Farm -Clendenin -Clendenny -Clendinnen -Clennam -Clensham -Clent -Cleo -Cleo Rand -Cleo Springs -Cleome -Cleone -Cleopatra -Clere -Cleremont -Cleremore -Clerihew -Clerk -Clerke -Clermont -Cletus -Cleve -Clevedon -Cleveland -Cleveland Park -Cleveleys -Clevely -Clevemont -Cleverdon -Cleverly -Cleves -Clevis -Clewborough -Clewer -Clewer Court -Clewer Hill -Clewerwall -Clewes -Clewley -Cleworth -Cleworth Hall -Clews -Cley -Cliddesden -Client -Clif -Clifden -Cliff -Cliff Edge -Cliff Estates -Cliff Hill -Cliff Hollins -Cliff House -Cliff Lake -Cliff Pine -Cliff Swallow -Cliff View -Cliff Walk -Cliffbourne -Cliffdale -Cliffe -Cliffe Park -Cliffhaven -Cliffhill -Cliffhouse -Cliffland -Cliffmont -Clifford -Clifford Manor -Clifford Moor -Clifforest -Cliffrose -Cliffside -Cliffside Circle -Clifftop -Clifftown -Cliffview -Cliffwood -Clift -Clifton -Clifton Court -Clifton Creek -Clifton Forest -Clifton Heights -Clifton Hunt -Clifton Oaks -Clifton Park -Clifton Pines -Clifton Point -Clifton Quarry -Clifton Spring -Cliftonbrook -Cliftondale -Cliftons -Cliftonville -Cliftwood -Climbhill -Climmen -Climping -Climus -Clinch -Cline -Clingan -Clinglog -Clink -Clinton -Clinton Manor -Clinton Park -Clinton South -Clinton Vista -Clintonia -Clintonville -Clintwood -Clio -Clipper -Clipper Gap -Clipper Hill -Clipper Ship -Clippers -Clippership -Clipston -Clipstone -Clirieden -Clisby -Clisdell -Clissold -Clitheroe -Clito -Clive -Clive Hills -Clivedale -Cliveden -Clivedon -Clivemont -Clivesdale -Cloak -Cloberry -Clock -Clock Barn -Clock House -Clock Tower -Clockhouse -Clocks -Clocktower -Clohesey -Cloister -Cloisterham -Cloisters -Clomnel -Clonavor -Clonbrock -Cloncurry -Clonmel -Clonmell -Clonmore -Clontarf -Clopper -Cloppers Mill -Clopton -Clorinda -Close -Closeworth -Closter Dock -Cloth -Cloth Hall -Clothall -Clothier -Clothorn -Clothworkers -Clotilda -Cloud -Cloud View -Cloudberry -Cloudesley -Clouds Mill -Cloudsdale -Cloudview -Clough -Clough End -Clough Fold -Clough Head Pinfold -Clough House -Clough Park -Clough Top -Clouston -Cloutier -Cloutman -Clova -Clove -Clove Brook -Clovelly -Clovely -Clover -Clover Flat -Clover Glen -Clover Hill -Clover Knoll -Clover Leaf -Clover Leaf Center -Clover Oak -Clover Patch -Clover Ranch -Clover Ridge -Cloverbrook -Cloverbrooke -Clovercrest -Cloverdale -Cloverfield -Clovergrass -Cloverhill -Cloverhurst -Cloverleaf -Cloverley -Cloverly -Clovermeadow -Clovermere -Clovernook -Cloverview -Cloverway -Cloverwood -Cloveside -Clovewood -Clovis -Clow Creek -Clow International -Clowders -Clowe -Clower -Clowes -Cloyd -Club -Club Center -Club Circle -Club Hill -Club Hollow -Club House -Club Lake -Club Park -Club Pointe -Club Tree -Club View -Club Way -Clubb -Clubhouse -Clubhouse Gate -Clubhouse Memorial -Clubside -Clubview -Clubway -Clucas -Clue -Cluett -Cluff -Clumber -Clump -Clumps -Clunbury -Clunes -Clunie -Clunies Ross -Clutha -Clutton -Clybourn -Clybourne -Clyburn -Clyda -Clyde -Clyde Jones -Clyde O Bosworth -Clyde Potts -Clydebank -Clydelle -Clydesdale -Clydia -Clyfford -Clyfton -Clymer -Clynderven -Clyne -Clysedale -Clyston -Clywd -Cnopius -Co -Co Line -Coach -Coach Hill -Coach House -Coachella -Coachlace -Coachlads -Coachlamp -Coachlight -Coachmaker -Coachman -Coachman Ridge -Coachmans -Coachway -Coachwood -Coakley -Coal -Coal Creek -Coal Hill -Coal Pier -Coal Pit -Coalbrook -Coale -Coalecroft -Coales -Coalinga -Coalkiln -Coalpit -Coalport -Coalshaw Green -Coan -Coare -Coast -Coast Guard -Coast Hill -Coast Hospital -Coast Oak -Coast Range -Coastal -Coastal Charter -Coastal Cove -Coastal Fire -Coastland -Coastview -Coastwise -Coat Ridge -Coatbridge -Coate -Coates -Coates Hill -Coates Park -Coats -Coats Hutton -Cob -Cob Kiln -Cobac -Cobalt -Cobar -Cobargo -Cobb -Cobb Hill -Cobb Island -Cobbadah -Cobbert -Cobbett -Cobbett Hill -Cobbetts -Cobbinsend -Cobbitee -Cobbitty -Cobbity -Cobble -Cobble Brook -Cobble Cove -Cobble Creek -Cobble Crest -Cobble Field -Cobble Hill -Cobble Knoll -Cobble Mill -Cobble Ridge -Cobble Shores -Cobblefield -Cobbler -Cobblerock -Cobblers -Cobblers Beach -Cobblershill -Cobblestone -Cobblestone Fire -Cobblestone Lake -Cobblewood -Cobbold -Cobbs -Cobden -Cobdown -Cobelstone -Coben -Coberley -Cobh -Cobham -Cobham Park -Cobhambury -Cobland -Cobleigh -Coblentz -Coborn -Cobourg -Cobra -Cobran -Cobtree -Coburg -Coburn -Coburn Hill -Coca Cola -Cocasset -Coccio -Cochato -Cochea -Cochetto -Cochise -Cochituate -Cochraine -Cochran -Cochran Mill -Cochrane -Cochrans Lock -Cock -Cock Clod -Cock Green -Cock Hall -Cockatoo -Cockbush -Cockcroft -Cockenoe -Cocker -Cocker Creek -Cocker Mill -Cockerell -Cockerhurst -Cockett -Cockey -Cockfosters -Cockhedge -Cockle Bur -Cocklebur -Cockmannings -Cockpit Point -Cockrell -Cockrells -Cockrill -Cockrobin -Cocks -Cocksfoot -Cocksheadhey -Cockshot -Cockshott -Cockspur -Cocksure -Cockthorpe -Coco -Coco Palm -Coconino -Coconut -Cocos -Cocquina -Cocupara -Cod -Coda -Codale -Codderre -Codding -Coddington -Coddle Harbor -Code -Coderolli -Coderre -Codham Hall -Codicote -Codington -Codjer -Codman -Codman Hill -Codmore Wood -Codo -Codornices -Codorniz -Codorus -Codrington -Cody -Coe -Coeburn -Coed -Coelho -Coes -Coes Neck -Coey -Coeyman -Cofer -Coffee -Coffeeberry -Coffer Woods -Coffey -Coffield -Coffin -Coffman -Coffs Harbour -Cog Hill -Cogate -Coger -Cogger -Coggeshall -Coggins -Coggs Bill -Coghill -Coghlan -Cogmans -Cognewaugh -Cogshall -Cogswell -Cohancy -Cohansey -Cohasett -Cohasset -Cohassett -Cohawney -Cohen -Cohill -Cohn -Cohns -Coho -Cohort -Coil -Coil Plus -Coila -Coin -Coit -Coit Dam -Coit Spring -Coity -Coke -Cokefield -Coker -Cokes -Cola -Colahan -Colam -Colane -Colantha -Colaric -Colasanti -Colbeck -Colbera -Colberg -Colbert -Colborne -Colbourne -Colbrook -Colburn -Colby -Colby Hewitt -Colby Lake -Colby Point -Colchester -Colchester Brook -Colchester Hunt -Colchester Meadow -Colcokes -Cold Arbor -Cold Christmas -Cold Harbor -Cold Harbour -Cold Hill -Cold Norton -Cold Plain -Cold Point -Cold Spring -Cold Spring Brook -Cold Spring Harbor -Cold Spring Hills -Cold Spring Ridge -Cold Springs -Cold Well -ColdHarbour -Coldalhurst -Coldbath -Coldblow -Coldbridge -Coldbrook -Coldcotes -Coldcreek -Colden -Colder -Coldershaw -Coldevin -Coldfall -Coldfield -Coldharbour -Coldicutt -Coldmoorholme -Coldnailhurst -Coldred -Coldren -Coldrum -Coldspring -Coldstream -Coldwaltham -Coldwater -Cole -Cole Farm -Cole Green -Cole Park -Colebert -Coleborne -Colebrook -Colebrooke -Coleby -Colechin -Coleen -Colefair -Coleford -Coleford Bridge -Colegate -Colegates -Colegrave -Colegrove -Coleherne -Colehill -Colekitchen -Colella -Colella Farm -Coleman -Coleman Glen -Coleman Green -Coleman Park -Coleman Ranch -Coleman Thomas -Coleman Valley -Colemans -Colemans Hatch -Colemansmoor -Colemore -Colennade -Colenso -Colepits Wood -Colerain -Coleraine -Colerick -Coleridege -Coleridge -Coleridge Taylor -Coles -Coles Chance -Coles Crossing -Coles Green -Coles Hill -Coles Orchard -Colesberg -Colesburg -Coleshill -Coleshire -Colesmead -Coleson Hill -Colestown -Colesville -Colesville Manor -Colet -Colette -Coleus -Coleville -Colewood -Colewood Estates -Coley -Coley Park -Colfax -Colfe -Colford -Colgan -Colgate -Colgett -Colgrove -Colham -Colham Green -Colham Mill -Colie -Coligni -Colima -Colin -Colin Blythe -Colin Kelly -Colin Murphy -Colin P Kelly Jr -Colin Park -Colina -Colinda -Colindale -Colindeep -Colindia -Colinette -Colins -Colinton -Coliston -Coll -Collado -Collamore -Collar House -Collard -Collards -Collarenebri -Collaroy -Collector -Colleen -Colleen Garden -College -College Eight -College Eight Service -College Farm -College Green -College Heights -College Hill -College Loop -College Manor -College Nine -College Park -College Point -College Pond -College Ten -College Town -College View -Collegeview -Collegiate -Collendean -Collens -Collenswood -Collent -Colles -Colless -Collet -Collete -Colleton -Collett -Collette -Colley -Colley Hill -Colley Manor -Collfield -Collie -Collier -Collier Canyon -Collier Hill -Collier Row -Colliers -Colliers Row -Colliers Water -Colliery -Collimore -Collin -Collincote -Collindale -Colling -Collingbourne -Collingdon -Collinge -Collingham -Collingham Main -Collings -Collingswood -Collingsworth -Collington -Collingtree -Collingwood -Collins -Collins Taft -Collinson -Collinson Lee -Collinsville -Collinwood -Collis -Collischan -Collison -Colliston -Collum Green -Collura -Collyer -Collyhurst -Colma -Colma Creek Service -Colmac -Colman -Colmer -Colmery -Colmore -Colnbrook -Colne -Colne Bank -Colne Park -Colnedale -Colney -Colney Hatch -Colney Heath -Colo -Cologne -Coloma -Colomb -Colombard -Colombine -Colombo -Colon -Colona -Colonade -Colonel -Colonel Bell -Colonel Bennett -Colonel Ellis -Colonel Gridley -Colonel Holcomb -Colonel Hunt -Colonel Johnson -Colonel Lindsay -Colonel Mansfield -Colonel Pye -Colonel Taylor -Colonels -Colonels Choice -Colonia -Colonial -Colonial Arms -Colonial Beach -Colonial Gardens -Colonial Heights -Colonial Hill -Colonial Hills -Colonial Oaks -Colonial Park -Colonial Port -Colonial Post -Colonial Ridge -Colonial Springs -Colonial Village -Colonial Woods -Colonna -Colonnade -Colonsay -Colony -Colony Club -Colony Cove -Colony Crest -Colony Green -Colony Hill -Colony Hills -Colony Knoll -Colony Park -Colony Point -Colony Ridge -Colony View -Colorada -Colorado -Colorado Springs -Colorado Way Carr -Colorado Way Whistler -Colorados -Coloriver -Colpitts -Colrain -Colridge -Colshaw -Colshire -Colson -Colsterworth -Colston -Colt -Colt Run -Coltash -Colthurst -Coltishall -Coltman -Colton -Colton School -Colts -Colts Brook -Colts Neck -Coltsfood -Coltsfoot -Coltwood -Columba -Columbas -Columbet -Columbia -Columbia Creek -Columbia Crossing -Columbia Gateway -Columbia Park -Columbia Square -Columbia Wharf -Columbian -Columbine -Columbus -Colusa -Colvamore -Colville -Colvin -Colvin Forest -Colvin Meadows -Colvin Run -Colwell -Colwick -Colwith -Colwood -Colworth -Colwyn -Colyer -Colyton -Colywn -Comack -Comalli -Comanche -Comaneci -Comargo -Combara -Combat -Combe -Combedale -Combee -Comber -Combermere -Comberton -Combes -Comboy -Combs -Comconex -Comeau -Comely -Comely Bank -Comer -Comeragh -Comerford -Comet -Cometrowe -Comfort -Comforts Farm -Comfrey -Comice -Comiskey -Comistas -Comly -Commack -Commanche -Command -Commander -Commander Black -Commander John Shea -Commerce -Commerce Center -Commerce Park -Commercial -Commercial Vehicle -Commerford -Commers -Commill -Commissary -Commissioners -Commo -Commodore -Commodore Webster -Commoms -Common -Common Gate -Common Side -Common Wood -Commonage -Commonfield -Commonhall -Commonmeadow -Commons -Commonside -Commonside Bromley -Commonside Wood -Commonwealth -Commority -Communication Hill -Communications Hill -Community -Community College -Community College SE -Community Hall -Community Memorial -Community Park -Community Sq -Como -Comp -Compadre -Compass -Compass Point -Compasses -Component -Comprehensive -Compressor -Compromise -Compstall -Compton -Compton Parc -Compton Village -Comptons -Comptons Brow -Compubil -Computer -Comrie -Comstock -Comstock Mill -Comus -Comyn -Comyns -Conally -Conan Doyle -Conant -Concannon -Concanon -Concar -Concepcion -Concert -Concerto -Concetta -Concetta Sass -Concettina -Conch -Concho -Conco -Concolor -Concord -Concord Hill -Concord Point -Concorde -Concordia -Concourse -Concrete -Concrete Pipe -Condado -Condamine -Conde -Condell -Conder -Condesa -Condict -Condit -Condoin -Condon -Condor -Condover -Condron -Conduit -Cone -Coneflower -Conegra -Conejo -Conen -Conerly -Conerty -Conestoga -Conewood -Coney -Coney Byes -Coney Hall Addington -Coney Hill -Coney Island -Coney Warren -Coneyburrow -Coneyhurst -Confederate -Confederate Ridge -Confederation -Confer -Conference -Conference Center -Conference Ground -Conford -Conforti -Congdon -Conger -Congewoi -Congham -Conghurst -Congleton -Congo -Congou -Congresbury -Congress -Congress Hall -Congress Park -Congress Springs -Congress Valley -Congressbury -Congressional -Congreve -Congrove -Conie -Conies -Conifer -Conifer Fire -Conifer Hill -Coniger -Conihasset -Coningesby -Coningham -Coningsby -Conington -Conisboro -Coniscliffe -Coniston -Coniton -Conkey -Conkeyshaw -Conklin -Conkling -Conklins -Conklintown -Conlan -Conlee -Conley -Conley Creek -Conley Downs -Conlogue -Conlon -Conlyn -Conmur -Conn -Conn Creek -Conn Valley -Connaught -Connawarra -Conne Mara -Connect -Connecticut -Connecticut View -Connecting -Connector -Connel -Connell -Connellan -Connelley -Connells Point -Connelly -Connelly Hill -Connels -Connely -Connemara -Connemarra -Connemera -Conner -Conners -Connett -Connie -Connierae -Conningham -Connington -Connolly -Connop -Connor -Connors -Conolly -Conomo -Conomo Point -Conovan -Conover -Conow -Conowingo -Conqueror -Conquest -Conrad -Conrads -Conran -Conrick -Conroy -Conry Crescent -Cons -Cons Land Off Hayward -Consatance -Conselyea -Conservation -Consfield -Consideration -Considine -Consistory -Consiton -Consolidated -Consolo -Consort -Constable -Constance -Constant -Constantine -Constanzo -Constellation -Constitution -Constitution Beach -Constitutional Hill -Consuelo -Consul -Consulate -Contact -Contaplas -Conte -Conte Warf -Contee -Contees Wharf -Contempo -Content -Contentment Island -Contento -Conti Square -Continental -Continental Cove -Continente -Contour -Contra Costa -Contra Loma -Contractor -Contractors -Control Tower -Convair -Convalescent -Convent -Convention -Convention Center -Conventry -Conver -Converse -Convery -Conway -Conway Farms -Conways -Conwell -Conyer -Conyerd -Conyingham -Conyngham -Conzelman -Cooba -Coogan -Coogarah -Coogee -Coogee Bay -Cooinda -Cook -Cook Farm -Cook Riolo -Cooke -Cookes -Cookham Wood -Cookhill -Cookridge -Cookridge Green -Cooks -Cooks Farm -Cooks River -Cooksey -Cookshall -Cookson -Cool Brook -Cool Hollow -Cool Oak -Cool Spring -Coolabah -Coolah -Coolalie -Coolangatta -Coolaroo -Coolawin -Coolbrith -Coolbrook -Cooledge -Cooleena -Cooley -Coolgardie -Coolgun -Coolham -Coolhurst -Coolibah -Coolibar -Coolidge -Coolidge Farm -Coolidge Hill -Cooling -Coolinga -Coolong -Cooloongatta -Coolowie -Coolridge -Coolspring -Coolwood -Cooma -Coomalie -Coomassie -Coombe -Coombe Farm -Coombe Hill -Coombe Wood -Coombehurst -Coombelands -Coombers -Coombes -Coombewood -Coombfield -Coombs -Coombsville -Coomes -Coon Creek -Coon Heights -Coon Hollow -Coon Point -Coon Rapids -Coon Rapids Serv -Coon Rapids Service -Coonamble -Coonan -Coonanbarra -Coonara -Coonawarra -Cooney -Cooney Hill -Coongra -Coonley -Coonong -Coop -Coope -Cooper -Cooper Park -Cooper Pond -Cooper River -Cooper School -Cooperative -Coopermill -Coopernook -Coopers -Coopers End -Coopers Green -Coopers Grove -Coopers Hill -Coopers Pond -Coopers Shaw -Coopersale -Cooperworth -Coora -Coorabin -Cooriengah Heights -Coorilla -Coot -Cootamundra -Coote -Coover -Cooyong -Cop -Copa del Oro -Copas -Copco -Copcutt -Cope -Copel -Copeland -Copeland Creek -Copeland Tannery -Copen Meadow -Copenger -Copenhagen -Copenhaver -Copernic -Copernicus -Copes -Copestake -Copford -Copgrove -Copiage -Copiague -Copland -Copleston -Copley -Coppabella -Coppage -Coppards -Copped Hall -Coppel -Coppen -Copper -Copper Beach -Copper Bed -Copper Beech -Copper Creek -Copper Hill -Copper Leaf -Copper Mill -Copper Mine -Copper Mountain -Copper Peak -Copper Penny -Copper Ridge -Copper Springs -Copper View -Copperas -Copperas Ridge -Copperbeach -Copperbeech -Copperdale -Copperfield -Copperflagg -Copperhill -Copperhouse -Copperkins -Copperleaf -Coppermill -Coppermine -Copperopolis -Copperpenny -Coppers -Coppersmith -Copperstrip -Coppertree -Copperwood -Copperwynd -Coppetts -Coppetts Wood -Coppice -Coppice Farm -Coppice Wood -Coppidwell -Coppins -Coppleridge -Copplestone -Coppola -Coppy -Coprock -Copse -Copse Edge -Copsem -Copsewood -Copsleigh -Copson -Copster -Copsterhill -Copt Hall -Coptefield -Copter -Coptfold -Copthall -Copthorne -Copthorne Common -Coptic -Copts Hill -Copwood -Copyground -Copyhold -Coquette -Coquille -Cora -Cora Bell -Cora Post -Corabel -Corabelle -Coraki -Coral -Coral Berry -Coral Gables -Coral Heath -Coral Reef -Coral Ridge -Coral Sands -Coral Sea -Coral Tree -Corala -Coralberry -Coralee -Coralflower -Coralie -Coralino -Corall Hollow -Coralla Vista -Corallie -Coralwood -Coralyn -Coram -Coram Farm -Coramba -Corang -Coranto -Corban -Corbane -Corbar -Corbar Woods -Corben -Corbet -Corbets -Corbett -Corbett Hill -Corbetta -Corbin -Corbin Hall -Corbitt -Corbridge -Corby -Corbyn -Corchaug -Corcoran -Corcoran Hill -Cord -Corda -Cordage -Cordale -Cordaville -Corday -Cordeaux -Cordeiro -Cordelia -Cordell -Cordellia -Corden -Corder -Cordero -Cordes -Cordgrass -Cordial -Cordier -Cordiero -Cordilleras -Cordina -Cordingley -Cordis -Cordoba -Cordone -Cordova -Cordoy -Cordoza -Cordwainer -Cordwaiver -Cordwallis -Cordwell -Cordwood -Core -Corea -Coree -Coreen -Coreen Hills -Corell -Corella -Corens -Cores End -Corewood -Corey -Coreys Mill -Corfdon -Corfe -Corfield -Corfu -Corgiat -Cori -Coriander -Coriegarth -Coriell -Corinda -Corinha -Corinne -Corinth -Corinthia -Corinthian -Corio -Cork -Cork Oak -Cork Tree -Corkan -Corkberry -Corkland -Corkran -Corks -Corktree -Corkwell -Corkwood -Corky -Corla -Corlano -Corlear -Corlett -Corley -Corlies -Corliss -Corlista -Cormack -Corman -Cormar -Cormier -Cormiston -Cormongers -Cormorant -Cormoy -Corn -Corn Mill -Corn Point -Cornall -Cornauba -Cornbrook -Cornbrook Park -Corncastle -Corncrib -Cornec -Cornehlsen -Corneils -Cornelia -Cornelian -Cornelias Prospect -Cornelison -Cornelius -Cornell -Cornells -Corner -Corner Farm -Corner Hall -Corners -Cornerstone -Cornett -Corney -Cornfield -Cornflower -Cornford -Cornforth -Cornhey -Cornhill -Corniche -Cornilsen -Cornine -Corning -Cornish -Cornith -Cornmill -Cornock -Cornorstone -Cornshaw -Cornstalk -Cornwall -Cornwallis -Cornwalls -Cornwell -Cornwell Farm -Cornwells Beach -Cornwood -Cornworthy -Corobon -Corodon -Corona -Coronach -Coronada -Coronado -Coronation -Coronation Tree Main -Coronawood -Coronel -Coronet -Coroval -Corperation -Corporal Frank Scott -Corporal Kennedy -Corporate -Corporate Center -Corporate Crossing -Corporate Grove -Corporate Lakes -Corporate Limit -Corporate Park -Corporate West -Corporate Yard -Corporation -Corpus Christi -Corral -Corral Hollow -Corrales -Corralitos -Corralitos Ridge -Corralitos View -Corrance -Correas -Corregidor -Correia -Correja -Correll -Correllis -Correnden -Correys -Corri -Corriander -Corrib -Corrick -Corrie -Corriedale -Corrielle -Corriente Point -Corrigan -Corrin -Corrine -Corringham -Corrinne -Corrinthia -Corron -Corruna -Corry -Corryong -Corsa -Corsair -Corsaire -Corsay -Corseley -Corsett -Corsey -Corsham -Corsi -Corsica -Corsicana -Corsletts -Corso -Corson -Cortadera -Cortayne -Cortbridge -Corte Madera -Corte Mesa -Corte Verte -Corte Vista -Cortelyou -Corter -Cortereal -Cortes -Cortese -Cortesi -Cortez -Corthell -Cortina -Cortland -Cortlandt -Cortney -Corto -Corto San Miguel -Cortona -Cortright -Cortsen -Corucopia -Corunna -Corvair -Corvallis -Corve -Corvette -Corvin -Corvina -Corvus -Corwell -Corwin -Corwood -Cory -Corydalis -Coryell -Corys Brook -Cos Cob -Cosbycote -Cosca Park -Cosdach -Cosden -Cose -Cosgrave -Cosgrove -Coslin -Cosma -Cosman -Cosmic -Cosmo -Cosmos -Coso -Cossack -Cosser -Cosset -Cossington -Cossio -Costa -Costa Mesa -Costa Rica -Costa Verde -Costanza -Costanzo -Costar -Costead Manor -Costela -Costello -Coster -Costner -Coston -Costons -Cosumnes -Cosway -Cot -Cot Hill -Cotall -Cotati -Cotchford -Cote -Cote Green -Cotebrook -Cotefield -Cotefields -Cotentin -Coteroyd -Cotesmore -Cotford -Cotham -Cotherstone -Cothran -Cotleigh -Cotluss -Cotman -Coton -Coton Commons -Coton Hall -Coton Manor -Cotoneaster -Cotsford -Cotswold -Cotswolds Hill -Cotswood -Cotta -Cottage -Cottage Colony -Cottage Farm -Cottage Field -Cottage Garden -Cottage Grove -Cottage Hill -Cottage Park -Cottage Point -Cottage Run -Cottagewood -Cottall -Cottam -Cottee -Cottenden -Cottenham -Cotter -Cottered -Cotterell -Cotterill -Cotters -Cottesbrook -Cottesmore -Cottie -Cottimore -Cotting -Cottingham -Cottingley -Cottington -Cottis -Cottle -Cottler -Cotton -Cotton Farm -Cotton Mill -Cotton Reserve -Cotton Tail -Cotton Tree -Cotton Wood -Cottoneaster -Cottonfield -Cottongrass -Cottonleaf -Cottonmill -Cottontail -Cottonwood -Cottonwoods -Cottrell -Cotts Wood -Cottswold -Cotuit -Couch -Couching -Couchmore -Couchon -Couchtown -Couden -Cougar -Cougar Mountain -Cougar Rock -Coughlan -Coughlin -Coulee -Coulgate -Coulman -Coulombe -Coulsden -Coulsdon -Coulsdon Ridgemount -Coulson -Coulter -Coulton -Council -Council Crest -Council Hill -Council Oak -Councillor -Counrtyside -Counsellor -Counselman -Counselor -Count -Count Rumford -Counter -Countess -Counthill -Counting House -Countisbury -Country -Country Acres -Country Aire -Country Brook -Country Club -Country Club Village -Country Commons -Country Corners -Country Creek -Country Crossing -Country Day -Country Estates -Country Fair -Country Falls -Country Farm -Country Fields -Country Forge -Country Glen -Country Hill -Country Hills -Country Hollows -Country House -Country Knoll -Country Knolls -Country Lake -Country Lakes -Country Life -Country Manor -Country Meadow -Country Meadows -Country Mill -Country Oak -Country Oaks -Country Park -Country Pond -Country Ridge -Country Run -Country School -Country Side -Country Squire -Country Trail -Country View -Country Village -Country Wood -Country Woods -Countrybrook -Countryfield -Countryman -Countryridge -Countryside -Countryside Lake -Countrystone -Countryvale -Countryview -Countrywood -Countrywoods -County -County Airport -County Center -County Club -County Court House -County Dump -County Farm -County House -County Institutional -County Labor Camp -County Line -County Park -County Quarry -County Seat -Coupland -Courage -Courallie -Couranga -Courcival -Courier -Courland -Course -Course Brook -Coursehorn -Coursers -Court -Court Bushes -Court Close -Court Downs -Court Farm -Court House -Court Lodge -Court North -Court Side -Court Tree -Court Way Colin Park -Courtauld -Courtenay -Courteney -Courter -Courtesy -Courtfield -Courthill -Courthouse -Courthouse Oaks -Courtland -Courtland Hill -Courtland Manor -Courtland Park -Courtlands -Courtlandt Heights -Courtleet -Courtleigh -Courtley -Courtly -Courtmead -Courtmoor -Courtnell -Courtney -Courtney Park -Courtoak -Courtrai -Courts -Courts Hill -Courtside -Courtwood -Courtwright -Courtyard -Courville -Cousin -Cousins -Coutant -Couter -Couthurst -Coutler -Coutu -Coval -Cove -Cove Edge -Cove Hill -Cove Landing -Cove Neck -Cove Point -Cove Pointe -Cove Ridge -Cove View -Cove of Cork -Covell -Coveney -Covent -Covent Garden -Coventon -Coventry -Coventry on Duxbury -Coveny -Cover -Coverdale -Covered Bridge -Covered Trail -Covered Wagon -Coverhill -Coverly -Coverstone -Covert -Coverton -Coverts -Coves End -Covewood -Covey -Covey Hall -Covey Hill -Covina -Coving Cross -Covington -Covino -Cow -Cow Hill -Cow Pond Brook -Cow Watering -Cowan -Coward -Cowards -Cowasset -Cowbarn -Cowbridge -Cowburn -Cowcross -Cowden -Cowdery -Cowdin -Cowdray -Cowdrey -Cowdroy -Cowdry -Coweeset -Cowell -Cowell Service -Cowells -Cowelside -Cowen -Cowens -Cowesby -Cowesit -Cowfold -Cowhill -Cowick -Cowie -Cowing -Cowl -Cowland -Cowleaze -Cowles -Cowley -Cowley Mill -Cowlin -Cowling -Cowlishaw -Cowlitz -Cowlow -Cowm Top -Coworth -Cowpasture -Cowpastures -Cowpens -Cowper -Cowper Wharf -Cowperthwaite -Cowrang -Cowsill -Cowslad -Cowslip -Cowstead -Cowsted -Cowthorpe -Cox -Cox Farm -Cox Green -Coxheath -Coxmount -Coxon -Coxs -Coxshire -Coxtie Green -Coxton -Coxwell -Coxwold -Coy -Coybay -Coyle -Coyne -Coyote -Coyote Creek -Coyote Hill -Coyote Lake -Coyote Moon -Coyote Point -Coyote Ranch -Coyote Reservoir -Coyote Ridge -Cozens -Cozette -Cozine -Cozumel -Cozy -Cozy Glen -Cozy Lake -Cozzens -Crab -Crab Apple -Crab Hill -Crab Orchard -Crab Tree -Crabapple -Crabb -Crabbet -Crabtree -Crabtree Meadow -Cracco -Crackenedge -Cracklingtown -Cracow -Craddock -Craddocks -Cradducks -Cradle -Cradlebridge -Cradles -Cradleskid -Cradley -Cradock -Crafford -Craft -Crafton -Craftown -Crafts -Craftsland -Craftsman -Craftwood -Crag -Cragg -Craggs -Craggwood -Cragmont -Cragmore -Cragun -Cragwood -Crahan -Craig -Craigavon -Craigdale -Craigen -Craigend -Craigerne -Craighall -Craighill -Craigholm -Craighton -Craighurst -Craigie -Craiglands -Craiglawn -Craiglea -Craigmont -Craigmore -Craignish -Craigton -Craigtown -Craigweil -Craigwell -Craik -Crail -Crain -Crainmont -Cramer -Cramhurst -Crammavill -Crammaville -Crammond -Cramond -Crampshaw -Crampton -Cramptons -Crana -Cranage -Cranberry -Cranberry Hill -Cranberry Meadow -Cranbook -Cranborne -Cranbourn -Cranbourne -Cranbrook -Cranbrooke -Cranbury -Cranbury Cross -Cranch -Crandall -Crandallwood -Crandell -Crandon -Crandor -Crane -Crane Lodge -Crane Meadow -Crane Park -Crane Ranch -Cranebrook -Cranefield -Cranes -Cranes Crook -Cranes Farm -Cranesbill -Craneswell -Craneway -Cranfield -Cranfield Park -Cranford -Cranford Park -Cranham -Cranham Moor -Cranhurst -Crankwood -Cranleigh -Cranley -Cranlington -Cranmer -Cranmer Bank Tynwald -Cranmere -Cranmore -Crann -Cranoke -Crans -Cranshaw -Cranshire -Cranstal -Cranston -Cranstons -Cranswick -Crantock -Cranwell -Cranwells -Cranwich -Cranworth -Crape Myrtle -Crapo -Crary -Craske -Crassas -Craston -Crater -Crater Lake -Crathie -Craut -Crave -Cravea -Cravells -Craven -Cravenwood -Craver -Craw -Crawford -Crawley -Crawley Green -Crawleys -Crawshaw -Crawshay -Cray -Craybrooke -Craycroft -Craydene -Craydon -Crayfield -Crayford -Craylands -Crayle -Crays Will -Crayside -Crayton -Crazy Horse -Crazy Horse Canyon -Crealock -Creamcup -Creameary -Creamer -Creamery -Creamery Hill -Creasey Park -Creasys -Creaville -Crebor -Crecienta -Crecy -Credenhall -Credenhill -Credit River -Credit View -Crediton -Credon -Cree -Creed -Creedmor -Creedon -Creeds Mill -Creek -Creek Bed -Creek Bend -Creek Crossing -Creek Farm -Creek Knoll -Creek Line -Creek Meadow -Creek Oaks -Creek Park -Creek Ridge -Creek Run -Creek Shore -Creek Side -Creek Tree -Creek Valley -Creek View -Creek Water -Creekbed -Creekbend -Creekdale -Creekfield -Creekfront -Creekhollow -Creekline -Creekpaum -Creekpoint -Creekridge -Creeks Bend -Creeksea -Creeksea Ferry -Creeksedge -Creekside -Creekside Oaks -Creekview -Creekview Meadow -Creekway -Creekwood -Creel -Creeley -Creelman -Creely -Creeper -Creeper Hill -Creephedge -Creesy -Creewood -Creffield -Creger -Cregier -Crehore -Creif -Creigan -Creighton -Creighton Farms -Creighton Ridge -Crellin -Cremen -Cremers -Cremia -Cremona -Cremorne -Cremyll -Crencoun -Crendon -Crenna -Crenshaw -Creole -Crepeau -Crerie -Cresbury -Crescent -Crescent Beach -Crescent Cove -Crescent Green -Crescent Knoll -Crescent Lake -Crescent Park -Crescent Ridge -Crescente -Crescenzo -Cresci -Cresenda -Cresent -Cresente -Cresford -Creskeld -Creskell -Creskill -Cresleigh -Crespi -Crespigny -Crespo -Cress -Cress Brook -Cress Creek -Cress View -Cressbrook -Cresset -Cressex -Cressey -Cressfield -Cressida -Cressing -Cressingham -Cresskill -Cresson -Cresston -Cresswell -Cressy -Crest -Crest Estate -Crest Haven -Crest Hill -Crest Hollow -Crest Lake -Crest Line -Crest Maple -Crest Park -Crest Ridge -Crest View -Crest View Hill -Cresta -Cresta Vista -Crestablanca -Crestberry -Crestbrook -Crestbury -Crestdale -Crested -Crested Iris -Crested Quali -Crestedge -Crestfield -Cresthaven -Cresthill -Crestlake -Crestlan -Crestland -Crestlawn -Crestleigh -Crestline -Crestmont -Crestmoor -Crestmount -Creston -Crestone -Crestpark -Crestridge -Crestshire -Crestview -Crestview Forest -Crestwater -Crestway -Crestwood -Creswell -Creswick -Crete -Crete Hall -Crete Wood -Creton -Creukhorne -Crevenna Oak -Crew -Crewe -Crewman -Crews -Crewys -Crib -Cribari -Criccieth -Crichton -Crick -Cricket -Cricket Club -Cricket Green -Cricket Ground -Cricket Hill -Cricket Trail -Cricketers -Cricketers Arms -Cricketfield -Crickets -Crickett -Crickett Hill -Cricketwood -Cricklade -Cricklewood -Cridland -Crieff -Criers -Criffel -Crigger -Crighton -Crilley -Crillon -Crimble Clough -Crimbles -Crimbourne -Crime -Crimea -Crimmins -Crimscott -Crimson -Crimson Bay -Crimson Clover -Crimson King -Crimson Tree -Crimson Valley -Crimsworth -Crinan -Crine -Crinella -Cringle -Cringle Hall -Crio -Criol -Crippen -Cripple -Cripple Creek -Cripplebush -Cripplegate -Cripps -Cripse -Cripsey -Cris -Crisanto -Crisci -Crisfield -Crisman -Crismill -Crismore -Crisp -Crispen -Crispin -Crispmill -Crispsparkle -Crissara -Crissey -Crisswell -Crissy Field -Crist -Cristal -Cristiani -Cristich -Cristina -Cristo -Cristoforo Colombo -Cristom -Cristopher -Cristowe -Cristy -Criswell -Critchley -Critchmere -Criton -Crittall -Critten -Crittenden -Crivelli -Crivello -Cro She -Croak -Croaker -Croal -Croasdaile -Croasdale -Croatan -Croatia -Croce -Crocheron -Crockenhill -Crocker -Crocker Grove -Crocker Hill -Crocker Mansion -Crocker Pond -Crockers -Crockerton -Crocket -Crockett -Crockford -Crockford Park -Crockhamwell -Crockhurst -Crocknorth -Crocus -Crocus Hill -Croes -Croff -Croft -Croft End -Croft Gates -Croft House -Croft Regis -Croft Walk -Croftdale -Croftdown -Crofters -Crofthill -Croftland -Croftlands -Croftleigh -Crofton -Crofton Hill -Crofton Park -Crofton Valley -Croftridge -Crofts -Crofts Bank -Croghan -Crogsland -Croham Manor -Croham Park -Croham Valley -Croindene -Croissy -Croix Crest -Croixwood -Croley -Crolona Hgts -Crom -Cromar -Cromartie -Cromarty -Crombie -Cromdale -Crome -Cromer -Cromer Hyde -Cromer Villas -Cromers -Cromford -Cromhurst -Cromie -Cromley -Crommelin -Crompton -Cromwell -Cromwell Park -Crondace -Crondall -Crondon Park -Croner -Cronin -Cronks Hill -Cronshaw -Cronston -Cronulla -Crook -Crooke -Crooked -Crooked Creek -Crooked Crow -Crooked Hill -Crooked Lake -Crooked Lk Service -Crooked Meadow -Crooked Oak -Crooked Pond -Crooked Spring -Crooked Tree -Crooked Yard -Crooker -Crookfield -Crookham -Crookhill -Crooks -Crooksbury -Crookston -Croom -Croom Acres -Croom Airport -Croombs -Croot -Cropland -Cropley -Cropp -Croppers -Cropsey -Croquet -Crosby -Crosby Farm -Crosby Hill -Crosby Lake -Crosfell -Crosier -Crosland -Crosman -Croson -Cross -Cross Bank -Cross Bath -Cross Bay -Cross Belgrave -Cross Bellbrooke -Cross Bentley -Cross Bow -Cross Bridge -Cross Bridles -Cross Bronx Service -Cross Burley Lodge -Cross Catherine -Cross Chancellor -Cross Chapel -Cross Country -Cross County -Cross Creek -Cross Crown -Cross Elford -Cross Flatts -Cross Foxes -Cross Gate -Cross Gates -Cross Green -Cross Green East Busk -Cross Green Garnet -Cross Hartley -Cross Henley -Cross Hill -Cross Hills -Cross Island -Cross Kelso -Cross Lances -Cross Laurel -Cross Maude -Cross Milan -Cross Moun -Cross Myrtle -Cross Oak -Cross Oaks -Cross Ormrod -Cross Osmondthorpe -Cross Park -Cross Peel -Cross Point -Cross Quarry -Cross Queen -Cross Rail -Cross Ridge -Cross Rink -Cross Roundhay -Cross School -Cross Springs -Cross Timber -Cross Valley -Cross Westchester -Cross Woodstock -Cross Woodview -Cross York -Crossacres -Crossall -Crossbank -Crossbay -Crossbow -Crossbridge -Crossbrook -Crosscreek -Crossdale -Crossefield -Crossen -Crossfell -Crossfield -Crossford -Crossgate -Crossgates -Crosshill -Crossing -Crossing Creek -Crossings -Crosslake -Crossland -Crosslands -Crosslet -Crossley -Crossman -Crossmead -Crossmeadow -Crossoak -Crossoaks -Crosson -Crossover -Crosspike -Crosspoint -Crosspointe -Crossrail -Crossridge -Crossrip -Crossroad -Crossroads -Crossthwaite -Crosstie -Crosstitch -Crosstown -Crosstown Service -Crosstrail -Crossvalley -Crossview -Crosswaite -Crosswater -Crossway -Crossway Pinner Hill -Crossways -Crossways Anchor -Crossways Galleon -Crossways Lake -Crosswind -Crosswinds -Crosswood -Crosswoods -Croston -Crosts -Crothers -Croton -Crotona -Crotty -Crouch -Crouch Hall -Crouch House -Croucher -Crouchfield -Crouchley -Crough -Crouse -Croval -Crow -Crow Canyon -Crow Creek -Crow Green -Crow Haven -Crow Hill -Crow Nest -Crow Piece -Crow Point -Crow Pond -Crow River -Crow Trees -Crow Wood -Crowborough -Crowbridge -Crowbrook -Crowcroft -Crowden -Crowder -Crowdis -Crowe -Crowe Farm -Crowell -Crowell Farm -Crowells -Crowes -Crowfoot -Crowgey -Crowhill -Crowhurst -Crowhurst Village -Crowland -Crowlands -Crowle -Crowley -Crown -Crown Colony -Crown Commons -Crown Court -Crown Farm -Crown Fox -Crown Hill -Crown Meadow -Crown Oak -Crown Oaks -Crown Peak -Crown Point -Crown Pt -Crown Quay -Crown Ridge -Crown Royal -Crown Service -Crown View -Crown Woods -Crowndale -Crowne Hill -Crowne Oak -Crowneast -Crowner -Crownest -Crownfield -Crownhill -Crowningshield -Crowninshield -Crownpits -Crownpointe -Crownridge -Crownshield -Crownstone -Crownsville -Crowntop -Crownwood -Crows -Crows Landing -Crows Mill -Crows Nest -Crowsheath -Crowshott -Crowsley -Crowstone -Crowswood -Crowther -Crowthorn -Crowton -Croxall -Croxdale -Croxley -Croxted -Croxton -Croy -Croy Ridge -Croyde -Croyden -Croydon -Croydon Park -Croydon Barn -Croydonbarn -Croyland -Croylands -Croysdale -Croyton -Crozet -Crozier -Crucero -Crucible -Crucie -Cruden -Cruden Bay -Crudge -Cruet -Cruff -Cruft -Cruger -Cruick -Cruickshank -Cruikshank -Cruiser -Crummell -Crummock -Crump -Crumpsall -Crundale -Crunden -Crundwell -Crunson -Crusade -Crusader -Crusoe -Crutches -Crutchfield -Cruttenden -Crux -Cruz -Cryalls -Cryals -Cryder -Cryders -Cryer -Cryers Hill -Cryol -Crypt -Crystal -Crystal Airport -Crystal Bay -Crystal Cove -Crystal Creek -Crystal Glen -Crystal Glow -Crystal Grove -Crystal Heights -Crystal Hills -Crystal Lake -Crystal Lake Ranch -Crystal Palace -Crystal Palace Park -Crystal Park -Crystal Point -Crystal Pond -Crystal Ridge -Crystal Rock -Crystal Shore -Crystal Spring -Crystal Spring Farm -Crystal Springs -Crystal View -Crystalford -Crystalline -Crystalwood -Crystyl Ranch -Cuardo -Cub Run -Cub Run Park -Cuba -Cuba Hill -Cubberley -Cubbitt -Cubitt -Cubley -Cublington -Cubstream -Cucamonga -Cuciz -Cuckfield -Cuckold Point -Cuckolds Green -Cuckoo -Cuckoo Hall -Cuckoo Hill -Cuckoos -Cuckoowood -Cucumber -Cudbear -Cudd -Cuddington -Cudgee -Cudgegong -Cudham -Cudham Park -Cudworth -Cuenca -Cuerdon -Cuernavaca -Cuesta -Cufaude -Cuff -Cufflin -Cugley -Cuire -Culbert -Culbertson -Culburra -Culcheth -Culcheth Hall -Culdees -Culebra -Culet -Culet Ranch -Culford -Culgoa -Culham -Culin -Cull -Cullen -Cullens -Cullesden -Culley -Culligan -Cullinan -Cullinane -Culling -Cullingworth -Cullins -Cullivan -Cullman -Culloden -Culloden Park -Cullom -Culls -Cullum -Cully -Cullyn -Culmer -Culmington -Culmore -Culotta -Culp -Culpeper -Culpepper -Culps Hill -Culross -Culsac -Cultowa -Culver -Culverden -Culverden Park -Culverhouse -Culverley -Culvers -Culvert -Culverwell -Culworth -Culya -Culyer -Culzean -Cumbara -Cumbee -Cumber -Cumberbach -Cumberland -Cumberland Green -Cumberland Hill -Cumberlow -Cumbermeade -Cumbermere -Cumberstone -Cumberton -Cumbrae -Cumbre -Cumbria Valley -Cumley -Cumming -Cummings -Cummings Hall -Cummings Park -Cummings Point -Cummington -Cummins -Cumner -Cumnock -Cumnor -Cumora -Cumorah -Cumston -Cumulus -Cunard -Cuncliffe -Cundalls -Cundey -Cundiff -Cundy -Cuneo -Cunha -Cunliffe -Cunniff -Cunningham -Cunningham Hill -Cunningham Hole -Cunninghame -Cunnington -Cunninham -Cunnison -Cuny -Cuozzo -Cupar -Cupertino -Cupid Green -Cupola -Cupp -Curagul -Curate -Curban -Curci -Curds -Curfew -Curie -Curl -Curletto -Curlew -Curlew Camp -Curlewis -Curley -Curley Hill -Curling -Curling Pond -Curling Tye -Curls -Curlton -Curmore -Curness -Curney Court -Curragh Downs -Curragh Oaks -Currah -Curran -Currans -Currans Hill -Currant -Currants Farm -Currawang -Curraweela -Currawong -Currell -Curren -Current -Currey -Curricle -Currie -Currier -Currier And Ives -Curringa -Currong -Curry -Curry Canyon -Curry Creek -Curry Ford -Curry Powder -Currymine -Cursitor -Curson -Curt -Curtain -Curteis -Curtice -Curtice Farm -Curtier -Curtin -Curtis -Curtis Bay Pleasure -Curtis Field -Curtis Mill -Curtisden Green -Curtiss -Curtner -Curtola -Curve -Curve Crest -Curved Bridge -Curved Iron -Curvers -Curwen -Curzon -Cusack -Cushing -Cushing Hill -Cushman -Cushwa -Cusick -Custance -Custer -Custis -Custis Acres -Custis Memorial -Custom House -Custom Village -Customs House -Cut -Cut Accross -Cut Hill -Cutacre -Cutbush -Cutchogue -Cutcliffe -Cutcombe -Cutenhoe -Cutforth -Cutgate -Cuthbert -Cuthbertson -Cuthel -Cutie -Cutlass -Cutler -Cutler Farm -Cutler Heights -Cutler Hill -Cutler Ridge -Cutlers -Cutlog -Cutmore -Cutnook -Cuton Hall -Cutsyke -Cutten -Cutter -Cutter Boy Scout Camp -Cutter Hill -Cutter Ridge -Cuttermill -Cutters -Cutters Dock -Cutters Grove -Cutters Mill -Cutting -Cuttinglye -Cuttings -Cuttings Wharf -Cutts -Cuttys -Cutwater -Cutwood -Cuvier -Cuxton -Cuyahoga -Cuyler -Cuyuna -Cuzco -Cvs -Cyanamid -Cyclone -Cyclotron -Cygnet -Cygnus -Cymbal -Cymbeline -Cynron -Cynthia -Cyphers -Cypress -Cypress Bay -Cypress Beach -Cypress Branch -Cypress Cove -Cypress Creek -Cypress Garden -Cypress Green -Cypress Grove -Cypress Hill -Cypress Hills -Cypress Hollow -Cypress Landing -Cypress Neck -Cypress Peak -Cypress Point -Cypress Pointe -Cypress Ranch -Cypress Ridge -Cypress Run -Cypress Tree -Cypress Village -Cypresstree -Cyprian -Cyprus -Cyprus Cedar -Cyr -Cyrandall Valley -Cyrene -Cyress -Cyril -Cyril Magnin -Cyrus -Cyrus Field -Cyrus Heights -Czacki -Czar -Czarina -Czerkies -Czerny -D Amico -D C Training School -D Chene -D Commercial -D Evereux Circle -D Fernwood -D Gipsy -D Harehills -D J Murphy -D Leeds Infirmary -D Miller -D W Field Park -D W Field West -D. Hutchison -Da Rosa -Da Vinci -Daarle -Dabbert -Dabbs Hill -Dabel -Dabley -Dabner -Dabney -Dacca -Daccamill -Dace -Dacey -Dacia -Dacosta -Dacotah -Dacre -Dacres -Dacy -Dadant -Dade -Dadley -Dado -Daffil -Daffodil -Dafrack -Dagden -Dagenham -Dagenham Centre -Dagenham Goring -Dagger -Daggert -Daggett -Daggs Dell -Dagley -Dagmar -Dagnall -Dagnam Park -Dagnan -Dagnell -Dagnets -Dagnino -Dagwood -Dahill -Dahl -Dahlberg -Dahlen -Dahlgreen -Dahlgren -Dahlia -Dahlin -Dahlonega -Dahnerts Park -Dahomey -Daigle -Daiglen -Dail -Dailey -Daily -Daimler -Daine -Daines -Daingerfield -Dainton -Daintree -Daintry -Dainty -Daiquiri -Dairsie -Dairy -Dairy Farm -Dairy House -Dairy Lou -Dairyglen -Dairyground -Dairyherd -Dairyhouse -Dairymaid -Daisey -Daisleys -Daisy -Daisy Bank -Daisy Farm -Daisy Farms -Daisy Field -Daisy Green -Daisy Hall -Daisy Hill -Daisy Trail -Daisyfield -Daisygate -Daisyley -Daka -Dakar -Dakara -Dakarla -Dake -Daken Brook -Dakin -Daking -Dakins -Dakley -Dakota -Dakota Fields -Dakota Lakes -Dakotah -Dakyn -Dalamar -Dalbeattie -Dalberg -Dalbert -Dalbertis -Dalbury -Dalby -Dalcassia -Dalcross -Daldunn -Dale -Dale Brook -Dale Green -Dale Lodge -Dale Odell -Dale Park -Dale View -Dale Wood -Dalebrook -Dalebrooke -Dalebury -Dalecarlia -Dalegarth -Daleham -Dalehead -Dalehurst -Dalemar -Dalemeade -Dalemere -Dalen -Dales -Dales Brow -Dalesford -Daleside -Dalessi -Dalesway -Daleswood -Daleview -Dalewood -Daley -Dalgety -Dalgo -Dalham -Dalhart -Dalhouse -Dalhousie -Dali -Dalis -Dalke -Dalkeith -Dalkieth -Dall -Dall Sheep -Dallas -Dallas Ranch -Dallenbach -Dalles -Dalley -Dalleys -Dallimore -Dallin -Dalling -Dallinger -Dallington -Dallon -Dallow -Dally -Dalma -Dalmally -Dalman -Dalmar -Dalmatia -Dalmation -Dalmeny -Dalmeyer -Dalmney -Dalmore -Dalmorton -Dalny -Dalphen -Dalphin -Dalpura -Dalray -Dalroy -Dalrympl -Dalrymple -Dalston -Dalton -Daltons -Daltry -Dalveen -Dalwood -Daly -Dalyell -Dalyn -Dalys -Dalziel -Dam -Dam Head -Damascus -Damases -Damask -Dambly -Dambrosio -Dame -Dame Head -Dame Mary Gilmore -Dameelie -Damen -Dameron -Dames -Damey -Damian -Damiano -Damico -Damien -Damigos -Damin -Damish -Damon -Damon Park -Damons Point -Damour -Damper -Damphurst -Dampier -Damrell -Dams -Damsel -Damsen -Damson -Damsonwood -Damuth -Damyon -Dan -Dan Jennings -Dan Mason -Dan Patch -Dana -Dana Estates -Dana Hill -Danada -Danalan -Danbeck -Danberry -Danbridge -Danbrook -Danbury -Danbury Forest -Danby -Dancause -Dance -Dancer -Dancers -Dancers End -Dancers Hill -Dancing Bear -Dancing Dicks -Dancing Waters -Dancrest -Dancy -Dandarbong -Dandee -Dandelion -Dandenong -Dandies -Dandon -Dandy -Dane -Dane Bank -Dane Bridge -Dane End -Dane Hill -Danebridge -Danebury -Daneby -Danecourt -Danecroft -Daned -Danedale -Danefield -Danehill -Daneholme -Danehurst -Danel -Danemar -Danemere -Danenhower -Danens -Danes -Danesbury -Danesbury Park -Danescroft -Danesdale -Daneshill -Danesmoor -Danesta -Daneswood -Danethorpe -Danetree -Daneville -Danewell -Danewood -Danfield -Danford -Danford Park -Danforth -Dangan -Dangar -Dangelo -Dangerfield -Danhof -Dania -Danial -Danica -Daniel -Daniel Adamson -Daniel Cox -Daniel French -Daniel K Ludwig -Daniel Lewis -Daniel Maloney -Daniel Mccahill -Daniel Payne -Daniel Shays -Daniel Teague -Daniel Webster -Daniel Young -Danielian -Daniell -Danielle -Danielli -Daniels -Danigus -Danis -Danisher -Danita -Dankhoff -Danko -Danks -Danlee -Danley -Danmann -Danmar -Dann -Dannell -Danner -Dannet -Danns -Danny -Dannys -Dano -Danoha -Danridge -Danrose -Danroth -Dans -Dansen -Dansforth -Dansington -Danson -Dant -Dante -Dante Robles -Danthonia -Danton -Dantzic -Danube -Danver -Danvera -Danvers -Danvid -Danville -Danwood -Danworth -Danywern -Danza -Danze -Danzic -Dapdune -Daphne -Daphne Jackson -Dapifer -Daplyn -Dapper Darby -Dapple -Dapplegray -Dara -Dara James -Daraya -Darbishire -Darby -Darby Green -Darbydale -Darcelle -Darcey -Darcy -Dardanelle -Dardanelle West -Dardanelles -Dardanelli -Darden -Dardenelle -Dare -Dareen -Darek -Darel -Darell -Darenth -Darenth Park -Darenth Wood -Darerka -Dares Beach -Dares Wharf -Daresbury -Darewood -Darfield -Dargai -Dargan -Dargets -Darghan -Dargie -Dargle -Daria -Darian -Dariel -Darien -Darien Club -Darien Lakes -Darin -Darina -Darington -Dario -Darius -Dark -Dark Canyon -Dark Forest -Dark Horse Lake -Dark Neville -Darkwood -Darkwoods -Darla -Darlan -Darland -Darlands -Darlene -Darlenen -Darley -Darling -Darling Island -Darling Point -Darlinghurst -Darlings -Darlington -Darlow -Darman -Darmenia -Darmody -Darmour -Darmstadt -Darmuid Green -Darnall -Darnay -Darnby -Darnel -Darnell -Darnells Grove -Darnestown -Darnet -Darnley -Darnton -Daron -Darook Park -Darr -Darragh -Darrambal -Darras -Darrel -Darrell -Darren -Darri -Darrian -Darrick -Darrick Wood -Darrigo -Darrin -Darrington -Darrow -Darrs -Darryl -Darset -Darsha -Darsow -Dart -Dart Thru -Dartbrook -Darter -Darters -Dartford -Darthmouth -Darting Bird -Dartington -Dartley -Dartmoor -Dartmouth -Dartmouth Park -Dartnell -Dartnell Park -Darton -Daruga -Daruish -Darvall -Darvell -Darvill -Darville -Darvon -Darwell -Darwen -Darwin -Daryl -Daryngton -Dascomb -Dasea -Dasher -Dashia -Dashiell -Dashiell Hammett -Dashmere -Dashwood -Dashwood Lang -Dassance -Dassel -Dassell -Dassern -Dassett -Dassing -Data -Datchet -Datchett -Date -Dateleaf -Daten -Dater -Dato -Datoni -Datoro -Daub -Daubenbiss -Daugherty -Dault -Daulton -Daunt -Dauntesy -Dauntless -Dauntly -Dauntsey -Dauphin -Dauphine -Dauria -Dauses -Dauster -Daux -Dav -Davan -Davane -Dave -Davehall -Davelin -Daven -Davenant -Davenfield -Davenham -Davenhill -Davenport -Davenport Fold -Davenport Landing -Davenport Park -Daventer -Daventry -Davern -Daves -Davey -Davey Glen -Daveyhulme -Davi -Davian -David -David A Barry -David Brainerd -David Henderson -David Hooper -David Joseph -David Morris -David Pilgrim -David Scott -David Victoria -Davida -Davidge -Davids -Davids Island -Davidson -Davidson Mill -Davidsons Mill -Davidsons Private -Davidsonville -Davie -Davies -Daviess -Davilla -Davine -Davington -Davini -Davis -Davis Brook -Davis Farm -Davis Ford -Davis Ledge -Davis Mill -Davisfield -Davison -Davisson -Davisville -Daviswood -Davit -Davitt -Davitto -Davona -Davoren -Davos -Davron -Davy -Davy Robinson -Davyhulme -Daw -Dawe -Dawell -Dawes -Dawes East -Dawkins -Dawley -Dawlish -Dawn -Dawn Day -Dawn Fraser -Dawn Harbor -Dawn Heather -Dawn Hill -Dawn Oak -Dawn Whistle -Dawnay -Dawneys -Dawngate -Dawnlee -Dawnridge -Dawnview -Dawnwood -Dawpool -Daws Heath -Daws Hill -Dawson -Dawson Beach -Dawson Farm -Dawson Manor -Dawtrey -Day -Day Break -Day Care -Day Farm -Day Hill -Day Lillies -Day Lily -Day School -Day Spring -Day Valley -Daybreak -Daybrook -Daycroft -Dayfield -Dayflower -Daylesford -Daylight -Daylilly -Daylily -Daylong -Daylop -Dayna -Days -Days Farm -Days Inn Connecticut -Days Island -Daysailer -Daysbrook -Dayton -Dayton Herzog -Dayton River -Daytona -Daytonna -Daywalt -Db -Dd -De Anza -De Beauvoir -De Bell -De Bera -De Berg -De Bernardo -De Boer -De Bohun -De Bord -De Bow -De Broggi -De Brome -De Bruin -De Burgh -De Busch -De Camp -De Carli -De Carlo -De Castella -De Chair -De Chario -De Chene -De Cook -De Costa -De Fillipo -De Foe -De Force -De Ford -De Forest -De Fremery -De Frene -De Grasse -De Guigne -De Haro -De Hart -De Haven -De Havilland -De John -De Jong -De Korte -De Koven -De Kraft -De La Cruz -De La Salle -De Lacies -De Lasalle -De Laune -De Lauret -De Laval -De Lemos -De Leon -De Lima -De Long -De Luca -De Luci -De Lucy -De Mandeville -De Mar -De Marietta -De Mate -De Mello -De Milhau -De Mille -De Mones -De Montfort -De Morgan -De Mott -De Normandie -De Ovan -De Palma -De Pascale -De Paul -De Ponti -De Prizio -De Quincey -De Reimer -De Ronde -De Roon -De Salis -De Sanka -De Sellum -De Silva -De Solo -De Soto -De Souza -De Tamble -De Tracey -De Turk -De Vere -De Veres -De Vito -De Voe -De Walden -De Witt -De Wolf -De Young -De la Costa -De la Cruz -De la Farge -De la Guerra -De la Pena -De la Salle -DeAnza -DeBaun -DeCosta -DeFrance -DeKalb -DeLeon -DeReimer -DeSota -DeWolfe -Deacon -Deacon Haynes -Deacon Hill -Deacon Hunt -Deaconess -Deacons -Deacons Hill -Deaconsfield -Dead -Dead End -Dead Horse Canyon -Dead Run -Deadbrook -Deadfield -Deadman -Deadmans -Deadmans Ash -Deadwood -Deady -Deakin -Deakins -Deakins Hall -Deaks -Deal -Deale -Deale Beach -Deale Churchton -Dealey -Dealton -Dealtry -Dealy -Dealynn -Dean -Dean Bank -Dean Bradley -Dean Farm -Dean Head -Dean Hill -Dean House -Dean Lakes -Dean Lesher -Dean Moor -Dean Oak -Dean Park -Dean Row -Dean Ryle -Dean Trench -Dean Wood -Deancroft -Deancross -Deane -Deane Church -Deane Croft -Deaner -Deanery -Deanes -Deanfield -Deangelo -Deanhill -Deanland -Deanmar -Deanna -Deanne -Deanoak -Deans -Deans Hill -Deans Lake -Deans Rhode Hall -Deansbrook -Deanscourt -Deansgate -Deanshut -Deanswood -Deanville -Deanwood -Dearborn -Dearborn Park -Dearborne -Dearden -Deardorff -Dearfield -Dearing -Dearlove -Dearne -Dearsley -Deasy -Deauville -Deb -Debartolo -Debaun -Debbie -Debbie Hill -Debby -Debdale -Debden -Debeck -Debele -Debellevue -Debenham -Debernardi -Debes Ranch -Debevoise -Deblin -Deblois -Debmar -Debnams -Deboer -Debolt -Debonaire -Debora -Deborah -Deborah Jean -Deborah Lee -Deborah Sampson -Debord -Debow -Debra -Debrick -Debrincat -Debruin -Debruyne -Debston -Deburgh -Debutante -Decarli -Decarolous -Decathalon -Decatur -Decca -Decelle -December -Decesaris -Dechantal -Decicco -Decima -Deck -Deckard -Decker -Deckman -Declaration -Decoe -Decora -Decorah -Decota -Decoto -Decoverly -Decoy -Decoy Hill -Decree -Dedalera -Dederer -Dedham -Dedmere -Dedswell -Dedworth -Dee -Dee Jay -Deeble -Deedham -Deedie -Deeley -Deems -Deen -Deep -Deep Bottom -Deep Cliffe -Deep Cove -Deep Creek -Deep Earth -Deep Glen -Deep Gorge -Deep Haven -Deep Hollow -Deep Landing -Deep Mill -Deep River -Deep Run -Deep Spring -Deep Turn -Deep Water -Deep Well -Deep Wood -Deep Woods -Deepage -Deepbrook -Deepcar -Deepdale -Deepdene -Deepdene Park -Deepfield -Deepfields -Deepford -Deephaven -Deeping -Deepstone -Deepwater -Deepwell -Deepwood -Deepwood Farm -Deepwoods -Deer -Deer Bay -Deer Camp Fire -Deer Canyon -Deer Chase -Deer Cove -Deer Creek -Deer Creek Heights -Deer Crest -Deer Cross -Deer Field -Deer Forest -Deer Garden -Deer Grass -Deer Grove -Deer Haven -Deer High -Deer Hill -Deer Hill End -Deer Hills -Deer Hollow -Deer Isle -Deer Lake -Deer Meadow -Deer Oaks -Deer Pack Fire -Deer Park -Deer Park Fire -Deer Pass -Deer Path -Deer Point -Deer Pointe -Deer Pond -Deer Ridge -Deer Rock -Deer Run -Deer Trail -Deer Valley -Deer Water -Deerbank -Deerbarn -Deerbrook -Deerchase -Deercliff -Deercrest -Deerdale -Deerdell -Deere -Deere Park -Deerfield -Deerfield Pond -Deerfoot -Deerford -Deergrass -Deerhaven -Deerhill -Deerhurst -Deering -Deering Bay -Deering Oaks -Deerings -Deeringwood -Deerlea -Deerleap -Deernolm -Deerpark -Deerpark Meadow -Deerpath -Deerpoint -Deerpond -Deershorn -Deerslayer -Deerswood -Deerton -Deertrack -Deertrail -Deervale -Deerview -Deerwatch -Deerwater -Deerwood -Deeside -Deeves Hall -Deevon -Defence -Defender -Defense -Defford -Defiance -Defoe -Deford -Deforest -Deforrest -Defremery -Defries -Dega -Degas -Degema -Degen -Degener -Degnan -Degraw -Degray -Degroate -Dehart -Dehaven -Dehlsen -Dehne -Dehnhoff -Dehnsfield -Dehoff Canyon -Dehon -Dei -Deichmann -Deigan -Deighton -Deirdre -Deirving -Deisius -Dejarld -Dekalb -Dekay -Dekoven -Del -Del Amigo -Del Antico -Del Avion -Del Cambre -Del Camino -Del Campo -Del Canto -Del Carlo -Del Casa -Del Cerro -Del Dayo -Del Este -Del Favero -Del Franco -Del Ganado -Del Hombre -Del Lago -Del Loma -Del Luz -Del Mar -Del Medio -Del Miller -Del Mont -Del Monte -Del Monte Farms -Del Norte -Del Oceano -Del Ogier -Del Oro -Del Otero -Del Paso -Del Prado -Del Presidio -Del Prete -Del Puerto Canyon -Del Ray -Del Rey -Del Rio -Del Rio Wood -Del Rosa -Del Sol -Del Sur -Del Tren -Del Vale -Del Valle -Del Vista -Del Webb -Del Wes -Dela Park -Delabole -Delacourt -Delacy -Delafield -Delafield Island -Delaford -Delagnes -Delahays -Delaigh -Delaine -Delamare -Delamark -Delamer -Delamere -Delamont -Delancey -Delanco -Delancy -Deland -Delander -Delando -Delane -Delaney -Delange -Delano -Delanoy -Delard -Delarma -Delat -Delaunay -Delaunays -Delauneys -Delavan -Delaveaga Park -Delawanda -Delawanna -Delaware -Delbarton -Delbert -Delbooth -Delbrook -Delcastle -Delce -Delcina -Delcombe -Delcris -Delder -Deldorf -Delecta -Delehanty -Delekas -Delenty -Deleo -Delery -Delevan -Deleware -Delf -Delfield -Delfin -Delfino -Delford -Delft -Delfur -Delfzul -Delgada -Delgado -Delgarno -Delhi -Delia -Delia Walker -Delibes -Delicious -Delikat -Delisio -Delisle -Delius -Delivery -Dell -Dell Field -Dell Glen -Dell Hollow -Dell Park -Dell Wood -Della -Dellabrooke -Dellanno -Dellbow -Dellbrook -Dellcastle -Dellcot -Dellcut -Delle -Deller -Delles -Dellfield -Dellmar -Dellmead -Dellmont -Dellmore -Dellney -Dellos -Dellow -Dellows -Dellridge -Dells -Dellsome -Dellview -Dellway -Dellwood -Delma -Delmar -Delmas -Delmeade -Delmer -Delmer End -Delmonden -Delmonico -Delmont -Delmonte -Delmor -Delmore -Delna Manor -Delno -Delnor -Delnor Glen -Delo -Deloitte -Delong -Deloraine -Delorenzo -Delores -Delorey -Delorme -Delos -Deloss -Delph -Delph New -Delpha -Delphfields -Delphi -Delphia -Delphinium -Delport -Delprete -Delrey -Delridge -Delrogue -Delrose -Delside -Delsignore -Delt -Delta -Delta Breeze -Delta Fair -Delta King -Delta Queen -Delta Ranch -Delta River -Delta Wind -Deltaview -Deltawind -Delton -Deluca -Delucchi -Delve -Delverton -Delves -Delvin -Delvino -Delwick -Delwit -Delwood -Demaine -Demar -Demarco -Demarcus -Demarest -Demaret -Demarr -Demarr Homestead -Demars -Demartini -Demartino -Demauro -Demby -Demeo -Demercurio -Demerest -Demerrit -Demers -Demesne -Demeter -Demetre -Demetrius -Demeyer -Demille -Deming -Demmert -Demmings -Demmond -Democracy -Demolay -Demont -Demopolis -Demorest -Demostene -Demott -Dempsey -Dempster -Demund -Demyan -Den -Den Helder -Den Hill -Den Lee -Den Meade -Den Quarry -Dena -Denair -Denali -Denali Ridge -Denault -Denawen -Denbeigh -Denberry -Denbigh -Denbish -Denbridge -Denbrook -Denbury -Denby -Dencombe -Dene -Deneane -Deneb -Deneden -Deneholm -Denell -Denevi -Denewood -Denfield -Denford -Dengate -Denham -Denham Court -Denham Green -Denhart -Denhoff -Denholm -Denholme -Denhurst -Denicio -Denicola -Deniehy -Denim -Denin -Denio -Denis -Denis Winston -Denise -Denisen -Denison -Deniston -Denistone -Denke -Denker -Denkinger -Denley -Denlyn -Denman -Denmans -Denmar -Denmark -Denmark Hill -Denmark Hill Sunray -Denmead -Denmont -Denmore -Dennan -Denne -Denner -Denner Ranch -Denness -Dennett -Dennetts -Dennettsland -Dennil -Denning -Denninger -Dennington -Dennington Park -Dennis -Dennis F. Ryan -Dennis Loop -Dennis Martin -Dennis Point -Dennis Torricelli Sr -Dennison -Dennistoun -Denno -Denny -Dennys -Denoble -Denoncourt -Denora -Denos -Densefield -Densham -Denshaw -Denslow -Denslowe -Densmore -Denson -Denstone -Dent -Dental -Denton -Denton Court -Denton Hall Farm -Dents -Dentwood -Denver -Denverton -Denville -Denwood -Denyer -Denys -Denzil -Denziloe -Deodar -Deodara -Deoder -Deodor -Deonsire -Depan -Departed Sunset -Departures -Depaul -Depauli -Depauw -Depew -Depeyster -Depinedo -Depleach -Deposit -Depot -Depoto -Deppe -Depraitre -Depriest -Deptford -Deptford Church -Deptford Ferry -Deptford High -Depue -Deputy -Dequincey -Deramore -Deramus Farm -Deranti -Derbe -Derby -Derby Arms -Derby Farms -Derby Glen -Derby Ridge -Derbyshire -Derecho -Dereham -Derehams -Derek -Derekwood -Derfuss -Deri -Derick -Dering -Derinton -Derker -Derman -Dermody -Dermont -Dermott -Dern -Derna -Dernacourt -Dernancourt -Derne -Dernford -Dernier -Dero -Deroma -Derosier -Derowie -Derr -Derria -Derribong -Derrick -Derrick Adkins -Derrico -Derring -Derringer -Derriwong -Derrom -Derrough -Derry -Derrydown -Derryfield -Dersingham -Derussey -Derventer -Derwen -Derwent -Derwentwater -Derwin -Derwint -Derwood -Dery -Des Moines -Des Moines Memorial -Des Moulin -Des Peres -Des Plaines -Des Plaines River -DesPlaines -Desarc -Desborough -Desborough Park -Desbrosses -Descanso -Descendant -Deschenaux -Desconsado -Desdemona -Desen -Desenfans -Desepio -Deseret -Deserre -Desert -Desert Brook -Desert Flame -Desert Forest -Desert Isle -Desert Rose -Desert Willow -Desertwood -Desford -Deshler -Deshon -Design -Desimone -Desin -Desiree -Desisto -Deslie -Desmarais -Desmet -Desmond -Desmoulin -Desna -Desnoyer -Desota -Desoto -Desouter -Despard -Desplaines River -Despointes -Desrochers -Desrosiers -Desrys -Dessa -Destefano -Destiny -Desvignes -Detert -Detillens -Detjen -Detling -Detmer -Detmold -Detrick -Detroit -Dettingen -Dettmering -Detwiller -Deuce -Deusenberg -Devaney -Devas -Devcon -Deveau -Devecchi -Developers -Development -Devenill -Devenish -Devens -Dever -Deveraux -Devere -Devereaux -Deverell -Devereux -Devereux Manor -Deverill -Deveron -Devers -Deves -Deviar -Devika -Devil -Deville -Deville Estates -Devilliers -Devils -Devils Garden -Devils Reach -Devilwood -Devin -Devin Shafron -Devincent -Devine -Devir -Devita -Devitt -Devizes -Devlin -Devlins -Devoe -Devoes -Devoils -Devoke -Devon -Devon Hills -Devon Ridge -Devon Woods -Devonia -Devonian -Devonport -Devons -Devonshire -Devonshire Hill -Devonshire Park -Devonswood -Devonwood -Devore -Devotion -Devoto -Devries -Dew -Dew Grass -Dew Pond -Dew Wood -Dewald -Dewar -Dewart -Dewberry -Dewdney -Dewdrop -Dewe -Dewell -Dewerff -Dewes -Dewes Green -Dewey -Dewey Hill -Dewey Jones -Deweys Run -Dewhurst -Dewhurst Clough -Dewindt -Dewing -Dewitt -Dewlands -Dewmar -Dewolf -Dewolfe -Dewoody -Dewpoint -Dewrang -Dewsbury -Dewsbury Gate -Dewsnap -Dewson -Dewyk -Dexter -Dexters -Dey -Deyncour -Deyne -Deynes -Deyo -Dezenzo -Dharma Ridge -Di Antonio -Di Fiore -Di Giulio -Di Lusso -Di Maggio -Di Salvo -Diab -Diablo -Diablo Creek -Diablo Downs -Diablo Grande -Diablo Hills -Diablo Ranch -Diablo Shadow -Diablo View -Diablo Vista -Diadem -Diadon -Diagonal -Dial -Dial Green -Dial Park -Dialstone -Diamantina -Diamantini -Diamedes -Diameter -Diamond -Diamond Bay -Diamond Bridge -Diamond Creek -Diamond Head -Diamond Heights -Diamond Hill -Diamond K -Diamond Lake -Diamond Mill -Diamond Mountain -Diamond Oaks -Diamond Path -Diamond Peak -Diamond Point -Diamond Pointe -Diamond Ridge -Diamond Rock -Diamond Spring -Diamond Springs -Diamondback -Diamontina -Diana -Diana Maria -Diana Marie -Dianda -Diane -Dianella -Diann -Dianna -Dianne -Dianthus -Diantonio -Diary -Dias -Diauto -Diavila -Diaz -Diaz Ridge Fire -Dib -Diban -Dibble -Dibbs -Dibden -Dibdin -Dibella -Dibiase -Diblee -Dibling -Dibuono -Dicarlo -Dicastro -Dicconson -Diceland -Dicey -Dick -Dick Phelps -Dickel -Dickens -Dickens Bay -Dickenson -Dickensons -Dickerage -Dickerman -Dickerson -Dickerson Church -Dickerson School -Dickey -Dickey Lake -Dickie -Dickin -Dickins -Dickinson -Dickley -Dickman -Dicks -Dickson -Dickson Hill -Dickson Ranch -Dicksons Mill -Dicus Mill -Didio -Didmarton -Didriksen -Didrikson -Didsbury -Diecke -Dieckman -Diedrich -Diefenbach -Diego -Diehl -Diehl Farm -Diel -Diellen -Dieman -Dieninger -Diens -Dierauf -Diericx -Dierks -Dierssen -Diesel -Diessner -Dietrich -Dietz -Diffey -Diffley -Dig Dog -Digby -Digger Bend Ranch -Digger Pine -Diggers -Digges -Digges Canyon -Digging -Diggins -Diggon -Diggs -Diggs Park -Dight -Dighton -Digital -Digiulian -Diglands -Diglee -Digney -Dignon -Dignum -Digpal -Digren -Digswell -Digswell Park -Dijohn Court -Dijon -Dike -Dikeman -Dikes -Diknson Hollow -Dikran -Dilber Bay -Dilga -Diligent -Dilisio -Dilke -Dill -Dill Pointe -Dilla -Dillabough -Dillard -Dillaway -Dille -Diller -Dilleta -Dillman -Dillmont -Dillo -Dillon -Dillon Beach -Dillon Point -Dillonfield -Dillworth -Dillwynia -Dilly -Dillywood -Dilman -Dilorenzo -Dilston -Dilworth -Diman -Dimassa -Dimensions -Dimeo -Dimes -Dimick -Dimm -Dimmig -Dimmock -Dimmocks -Dimmydale -Dimock -Dimona -Dimond -Dimple -Dimsdale -Dina -Dina Beth -Dinah -Dinallo -Dinanno -Dinant Link -Dinapoli -Dind -Dine -Dineen -Dineff -Dinesh -Dinger -Dingle -Dingle Bank -Dingleden -Dingletown -Dingley -Dingley Dell -Dingwall -Dingwell -Diniz -Dinkel Spiel -Dinley -Dinmore -Dinneen -Dinny -Dino -Dinora -Dinorben -Dinosaur Point -Dinsdale -Dinsmore -Dinting -Dinton -Dinuba -Dinwiddie -Dinwoodie -Diogenes -Dion -Dione -Dionne -Dipierro -Diploma -Diplomat -Dippenhall -Dipper -Dipping Brook -Diprose -Dipsea -Dirado -Direct River -Dirker -Dirker Bank -Dirksen -Dirkshire -Dirkson -Dirleton -Dirt -Dirtham -Dirty -Disbrow -Disbrowe -Disc -Disch -Discovery -Discovery Bay -Discovery Creek -Discovery Farm -Discovery Village -Disepo -Dishforth -Dishman -Dishong -Disk -Disley -Dislingbury -Disney -Dispensary -Disposal -Disraeli -Diss -Distaff -Distel -Distillery -Distin -Distler -Distribution -Distributor -District -District Office -Ditch -Ditchburn -Ditches -Ditchfield -Ditchling -Ditchmore -Ditmar -Ditmars -Ditmas -Ditson -Dittisham -Dittman -Dittmer -Ditton -Ditton Court -Ditton Grange -Ditton Hill -Ditton Park -Dittos -Ditty -Ditzel Farm -Divac -Dive -Diven -Diversey -Diversified -Diverting Canal Levee -Dividence -Dividing -Dividing Creek -Divine -Diving Cliff -Divinity -Divisadero -Division -Divisional -Diviso -Divittorio -Divney -Divot -Dix -Dix Hills -Dixey -Dixfield -Dixie -Dixie Hill -Dixie Lou -Dixieanne -Dixmoor -Dixmude -Dixon -Dixon Landing -Dixon Park -Dixon Ridge Fire -Dixona -Dixons Hill -Dixter -Dixwell -Dixwoods -Dnieper -Dnr -Doages -Doak -Doaks -Doane -Dobb Brow -Dobbel -Dobbies -Dobbin -Dobbinets -Dobbins -Dobbs -Dobbs Ferry -Dobbs Weir -Dobcross New -Dobe -Dobell -Dobells -Dobern -Dobhill -Dobie -Doble -Doblin -Dobree -Dobrody Farm -Dobroyd -Dobson -Dobsons -Doby -Docena -Dochart Sound -Dock -Dock Approach -Dock Head -Dock Hill -Dock Hollow -Dock Pathway -Dockenfield -Dockerell -Dockers Tanner -Dockery -Docket -Dockett Eddy -Docklands -Dockley -Dockray -Docks Corner -Dockser -Dockside -Dockwra -Docs Ranch -Doctor -Doctor Belt -Doctor Bird -Doctor Bowen -Doctor David Cline -Doctor Fold -Doctor Hawkins -Doctor Paul Ware -Doctor Samuel Mudd -Doctor Walling -Doctors -Doctors Commons -Doctors Park -Docwra -Dod -Dodbrooke -Dodd -Doddinghurst -Doddington -Dodds -Doddsfield -Dodero -Dodford -Dodge -Dodge Hill -Dodge Park -Dodgewood -Dodgson -Dodhurst -Dodie -Dodon -Dodsley -Dodson -Dodsworth -Dodworth -Dody -Doe -Doe Crossing -Doe Hey -Doe Path -Doe Trail -Doeg -Doering -Doescher -Doesgate -Doeshill -Doeskin -Doewood -Dofena -Doffcocker -Doffin -Doffing -Dog -Dog Kennel -Dogan -Dogaway -Dogberry -Dogden -Dogford -Doggett -Doggetts -Doggetts Farm -Doggetts Wood -Doghurst -Dogleg -Dogue -Dogue Hill -Dogue Hollow -Dogue Run -Dogwood -Dogwood Farm -Dogwood Hills -Dogwood Park -Dogwood Tree -Doherty -Doherty Ridge -Dohertys -Dohr -Dohrman -Dohrmann -Doidge -Doig -Doire -Doker -Dolan -Dolben -Dolbrook -Dolby -Dolce -Dolcetto -Dole -Dolecetto -Doleful Pond -Dolerita -Doles -Dolesbury -Dolesden -Dolin -Dolittle -Dolland -Dollar -Dollar Fire -Dollar Mountain -Dollard -Dollarhide -Dolle -Dolley Madison -Dollinger -Dollis -Dollis Hill -Dollis Park -Dollis Valley -Dolloff -Dollond -Dolly -Dolly Cam -Dolma -Dolman -Dolomite -Dolomite Hills -Dolores -Dolorosa -Dolph -Dolphin -Dolphin Lake -Dolphine -Dolsie Grove -Dolton -Doma -Domaine -Doman -Dombey -Dome -Domenic -Domenica -Domer -Domestic -Domett -Dominga -Domingo -Dominic -Dominica -Dominican -Dominici -Dominick -Dominion -Dominion Crest -Dominion Mill -Dominion Ridge -Dominion Valley -Dominion Wood -Dominique -Domino -Dominoe -Dominque -Dominque Estates -Domitian -Domonic -Doms -Domsey -Don -Don Allen -Don Carlos -Don Carol -Don Juan -Don Julio -Don Kirk -Don Martin -Don Mills -Don Pedro -Don Ramon -Don Walden -Dona -Donachy Cove -Donahe -Donahue -Donal -Donald -Donald Allen -Donald Biggs -Donald Curtis -Donald Moor -Donalds Range -Donaldson -Donard -Donata -Donatello -Donato -Donazetti -Donbush -Doncaster -Doncastle -Doncrest -Donde -Dondi -Done -Donegal -Donegal Bay -Donegan -Donellan -Donelson -Donemowe -Donerail -Doneraile -Doneva -Dongan -Dongan Hills -Dongary -Dongola -Donig -Donington -Donisthorpe -Donkey -Donkin -Donlan -Donlea -Donleigh -Donley -Donlon -Donmar -Donmaur -Donmoor -Donmore -Donn -Donna -Donna Dean -Donna Lee -Donna Marie -Donnan -Donnas -Donne -Donnefield -Donnel -Donnell -Donnelly -Donnely -Donner -Donner Pass -Donnici -Donnings -Donnington -Donny -Donny Brook -Donny Hill -Donnybridge -Donnybrook -Donoghue -Donoho -Donohoe -Donohue -Donor -Donora -Donovan -Donovans Hill -Dons -Donsen -Donset -Donston -Donwood -Donwood Trails -Doods -Doods Park -Doody -Doogan -Doohat -Doolan -Dooley -Dooleys -Dooligah -Doolin -Dooling -Doolittle -Doomben -Doomsday -Doon -Doonan -Doone -Dooneen -Doonkuna -Doonmore -Doonside -Doorn -Doorstep -Dootson -Dopping Brook -Doppler -Dopwns -Dora -Dorac -Dorado -Dorahy -Doral -Doral Farms -Doralee -Doran -Doran Beach -Doran Park -Doranne -Dorans -Dorantes -Doray -Dorcar -Dorcas -Dorcey -Dorchester -Dorcich -Dorcis -Dorclyn -Dordans -Dorden -Dordrecht -Dore -Doree -Doreen -Dorel -Doremus -Dorena -Dorene -Dorenkemper -Dorer -Doretha -Doretta -Dorfman -Dorforth -Dori -Doria -Dorian -Doriann -Dorianna -Doric -Dorigo -Dorina -Dorincourt -Dorine -Doris -Dorisa -Dorison -Dorking -Dorlan -Dorland -Dorlcote -Dorlen -Dorling -Dorlon -Dorlton -Dorman -Dormans -Dormans High -Dormans Park -Dormas -Dormay -Dormer -Dormer’s -Dormer’s Wells -Dormidera -Dormitory -Dormity -Dormont -Dormy -Dornan -Dornberg -Dorncliff -Dorncliffe -Dornell -Dorney Wood -Dorneywood -Dornfell -Dorning -Dornoch -Dornton -Doron -Dorothea -Dorothy -Dorothy Farm -Dorothy Meeks -Dorothy Sayers -Dorothy Smith -Dorotockeys -Dorr -Dorrance -Dorrells -Dorrence -Dorrie -Dorrigo -Dorringo -Dorrington -Dorris -Dorrit -Dorritt -Dorsa -Dorsch -Dorset -Dorsetshire -Dorsett Hill -Dorsey -Dorsey Hall -Dorsey Run -Dorseymill -Dorson -Dorthel -Dorton -Dorval -Dorville -Dorwin -Dorwood -Dory -Dory Brooks -Dos Loma Vista -Dos Palos -Dos Polos -Dos Reis -Dos Rios -Doscher -Dosh -Dosoris -Doswell -Dot -Doten -Doter -Dothan -Dots -Dotson -Dotte -Dotterel -Dottielyn -Dottino -Dotty -Dotty Ann -Doty -Double Bogey -Double Dove -Double Eagle -Double Gate -Double Oak -Double R -Double Tree -Doubleday -Doublegate -Doubleland -Doublerock -Doubles -Doublet Hill -Doubletree -Doubling -Doucette -Doud -Doug -Dougal -Dougan -Dougherty -Doughty -Dougill -Douglane -Douglas -Douglas Fir -Douglas Haig -Douglas Legum -Douglas Park -Douglass -Douglyn -Douglynn -Dougmar -Doulton -Dounby -Douro -Douse -Dousman -Doust -Dove -Dove Bank -Dove Creek -Dove Dale -Dove Hill -Dove Tail -Dove Tree -Dovecoat -Dovecoate -Dovecot -Dovecote -Dovedale -Dovehouse -Doveleys -Dovelys -Dovenshire -Dover -Dover Farm -Dover Hill -Dovercliff -Dovercourt -Dovers Green -Doverton -Dovervelt -Doves -Doveston -Dovetail -Doveton -Doveville -Dovewood -Dovre -Dow -Dowanhill -Dowd -Dowdell -Dowding -Dowdle -Dowdy -Dowe -Dowel -Dowell -Dower -Dower House -Dower Village -Dowitcher -Dowkell -Dowlais -Dowland -Dowlands -Dowlans -Dowlas -Dowle -Dowlerville -Dowles -Dowlin -Dowling -Down -Down Barns -Down Court -Down Green -Down Patrick -Downbank -Downdale -Downen -Downer -Downers -Downers Grove Main -Downes -Downey -Downey Mill -Downfield -Downhall -Downham -Downham Old Bromley -Downhaul -Downhill -Downhills -Downhurst -Downie -Downieville -Downing -Downingwood -Downland -Downlands -Downley -Downmill -Downpatrick -Downs -Downs Bridge -Downs Court -Downs Hill -Downs Hill The -Downs View -Downsberry -Downsbridge -Downsell -Downsfield -Downshall -Downshaw -Downshire -Downside -Downside Bridge -Downside Common -Downsland -Downsview -Downswick -Downton -Dowrelio -Dowrey -Dowry -Dows -Dowse -Dowsett -Dowsetts -Dowsing -Dowson -Doxbury -Doxey -Doxsee -Doyce -Doyer -Doyers -Doyle -Doyle Cove -Doyle Park -Doyles -Doynton -Dozer -Dr Johnson -Dr Richard A Graham -Dr Samuel Mudd -Dracena -Dracic -Drackert -Draco -Dracut -Draeger -Draelon -Drage -Dragon -Dragon Slayers -Dragonette -Dragonfly -Dragonwyck -Dragoon -Dragor -Dragus -Drahos -Drain -Drainage -Drais -Drake -Drake Beach -Drake Park -Drake Smith Woods -Drakefell -Drakefield -Drakeford -Drakes -Drakes Bay -Drakes Beach -Drakes Cove -Drakes Landing -Drakes Summit -Drakes View -Drakewood -Dralle -Dranesville -Dransfield -Draper -Drapers -Drapkin -Drauden -Dravet -Dravus -Draw Bridge -Drawbridge -Drawfield -Drax -Dray Corner -Draycot -Draycott -Drayhorse -Drayton -Drea -Dreadnought -Dream -Dream House -Dreamwold -Dreas -Dreeme -Dreher -Dreier -Dremeday -Drendel -Drepanos -Dresden -Dresel -Dress -Dress Cricle -Dressage -Dresser -Dressington -Dressler -Dressmaker -Drever -Drew -Drew Lake -Drewery -Drewett -Drewlaine -Drewry -Drews -Drewsbury -Drewstead -Drexel -Drexelgate -Dreyer -Dreyfus -Dreyfuss -Dried Earth -Driffield -Drift -Drifter -Drifters -Driftway -Driftwood -Driggs -Drill Hall -Drillane -Drillfield -Drinkwater -Driprock -Driscol -Driscoll -Driscolls -Drisler -Drive -Driver -Drivers End -Driveway -Drivewood -Driving Park -Drogue -Drohan -Droitwich -Dromana -Dromey -Dromore -Drone -Dronfield -Drookdale -Droop -Drop -Drop Anchor -Drop Forge -Droughts -Drouin -Drove -Drover -Drovers -Drowsy -Droxford -Droyers Pointe -Droylsden -Dru -Drub -Druce -Drucilla -Drue -Druet -Druetzler -Druid -Druid Hill -Druitt -Drum -Drum Hill -Drum Point -Drumalbyn -Drumaldry -Drumard -Drumbalyn -Drumcliff -Drumelzia -Drumlea -Drumlin -Drumlin Hill -Drumm -Drummer -Drummond -Drummore -Drummoyne -Drumsheugh -Drungewick -Drury -Drusy -Dry -Dry Arch -Dry Barley -Dry Creek -Dry Creek Fork -Dry Ends -Dry Harbor -Dry Hill -Dry Hill Park -Dry Hollow -Dry Meadow -Dry Mill -Dry Ridge -Dry Run -Dry Well -Dry Yard -Dryad -Dryander -Dryberry -Dryburgh -Dryden -Drydock -Dryer -Dryfield -Dryhill -Dryhill Park -Dryhurst -Dryland -Drylands -Drymill Overlook -Drynan -Drysdale -Drystraw -Drywood -Du Bois -Du Cane -Du Cros -Du Page -Du Sault -DuBois -Dual Wide -Duane -Duar -Duardo -Duarte -Dub -Dubanski -Dubarry -Dubbo -Dubbs -Dube -Dubel -Duberstein -Dubert -Dubiel -Dublane -Dublin -Dublin Canyon -Dublin Green -Dublin Hill -Dublin Meadows -Duboce -Dubois -Dubon -Dubonet -Dubonnet -Dubons -Dubrow -Dubuque -Duby -Duca -Ducal -Duchaine -Duchamp -Ducharme -Duches -Duchesne -Duchess -Duchess of Kent -Duchin -Duchy -Ducie -Duck -Duck Cove -Duck Creek -Duck Hill -Duck Island -Duck Lake -Duck Mill -Duck Pass -Duck Plain -Duck Pond -Duck Trail -Duckend -Duckend Farm -Duckens -Ducket -Duckett -Duckettes -Duckettown -Ducketts -Duckeys Run -Duckhorn -Duckinfield -Duckling -Duckmallois -Duckmead -Duckmore -Ducks Cove -Duckshaw -Duckwood -Duckworth -Duclos -Ducros -Duda -Dudak -Dudbrook -Dudden Hill -Duddington -Duddon -Duddy -Dudley -Dudlington -Dudlow Green -Dudrow -Dudsbury -Dudset -Dudswell -Due -Duell -Duen -Duena -Duer -Duesenberg -Duet -Duff -Duffer -Dufferin -Duffet -Duffield -Duffin -Duffney -Duffus -Duffy -Duffys -Dufief -Dufief Mill -Dufour -Dufranc -Dufresne -Dufton -Dufuar -Dugald -Dugan -Dugard -Dugdale -Duggan -Duggans -Duggers -Dugie -Duglas Fir -Dugolly -Duguid -Dugway -Duhaime -Duhart -Duhig -Duiker -Dukane -Duke -Duke Humphrey -Duke of Edinburgh -Duke of Gloucester -Duke of Kent -Duke of Wellington -Duke of York -Dukefield -Dukes -Dukes Farm -Dukes Meadow -Dukes Wood -Dukesberry -Dukesbury -Dukeshill -Dukesthorpe -Dukic -Dukinfield -Dulaney -Dulany -Dulas -Dulce -Dulcey -Dulcie -Duley -Dulford -Dulgar -Dulin -Dulittle -Dulka -Dullai -Dulles -Dulles Access -Dulles Center -Dulles Corner -Dulles Technology -Dulles Toll -Dulles Town -Dully -Dulsie -Dulude -Duluth -Dulverton -Dulwich -Dulwich Plough -Dulwich Common -Dulwich Wood -Dumaine -Dumais -Dumaresq -Dumas -Dumb Womans -Dumbah -Dumbarton -Dumber -Dumble -Dumbourne -Dumbreck -Dumergue -Dumerle -Dumers -Dumfries -Dumhart -Dumke -Dummer -Dumney -Dumont -Dumoulin -Dump -Dumpford -Dumville -Dun Horse -Dun Lo -Dun Robbin -Dunalley -Dunamon -Dunand -Dunaway -Dunbar -Dunbar Oaks -Dunbarton -Dunberry -Dunbier -Dunblane -Dunboy -Dunboyne -Dunbridge -Dunbrin -Dunbrook -Dunbury -Duncan -Duncan Elder -Duncannon -Duncanson -Dunchurch -Duncklee -Duncomb -Duncombe -Duncraig -Duncrevie -Duncton High -Dundale -Dundalk -Dundar -Dundas -Dundee -Dunderave -Dundilla -Dundonald -Dune -Dune Forest -Duneba -Dunedin -Duneiden -Duneland -Dunellen -Dunelm -Dunera -Dunes -Dunes Meadows -Dunes View -Dunfey -Dunford -Dunfries -Dungannon -Dungarven -Dungates -Dungells -Dungeness -Dungeon -Dunglow -Dungrove Hill -Dunham -Dunham Trail -Dunhams -Dunhams Corner -Dunhaven -Dunheath -Dunheved -Dunhill -Dunholme -Dunibar Ridge -Dunios -Dunisch -Dunkeld -Dunkerhook -Dunkerley -Dunkerly -Dunkers Pond -Dunkery -Dunkin -Dunkirk -Dunklee -Dunkley -Dunks -Dunlace -Dunlake -Dunlap -Dunlap Ranch -Dunlay -Dunlea -Dunleavy -Dunleer -Dunleigh -Dunleigh Glen -Dunleith -Dunley -Dunlin -Dunloe -Dunloggin -Dunlop -Dunloring -Dunlow -Dunmail -Dunmar -Dunmaston -Dunmore -Dunmow -Dunmurry -Dunn -Dunn Meadow -Dunncombe -Dunne -Dunnel -Dunnell -Dunnerdale -Dunnigan -Dunning -Dunnings -Dunnington -Dunnisher -Dunniwood -Dunnock -Dunns -Dunns Hill -Dunny -Dunnymans -Dunollie -Dunoon -Dunran -Dunraven -Dunreath -Dunree -Dunrobbin -Dunrobin -Dunrossil -Dunroven Lakes -Dunrovin -Dunsany -Dunsby -Dunsdon -Dunsfold -Dunsfold Common -Dunsham -Dunshea -Dunshee -Dunshire -Dunsinane -Dunsley -Dunsmore -Dunsmuir -Dunsmure -Dunsop -Dunspring -Dunstable -Dunstaffenage -Dunstall -Dunstan -Dunstans -Dunstar -Dunstarn -Dunster -Dunsters -Dunsters Mill -Dunston -Dunsyre -Dunteachin -Dunteman -Dunton -Duntroon -Duntrune -Duntshill -Dunvegan -Dunwell -Dunwich -Dunwood -Dunwood Valley -Dunwoodie -Dunwoody -Dunworth -Dupage -Dupage Country Club -Dupahze -Dupas -Duperu -Dupont -Dupont Park -Duppas -Duppas Hill -Dupras -Dupre -Dupree -Dupuis -Duquesne -Dura -Dural -Duran -Durand -Durango -Durant -Durante -Durants -Durants Park -Durar -Durbach -Durban -Durbans -Durbar -Durbeck -Durbin -Durbyan -Durdans -Durell -Durer -Durfee -Durfold -Durford -Durgess -Durgin -Durham -Durham Ferry -Durham House -Durham Wharf -Durhamoc -Duri -Durie -Durigan -Durillo -Durkee -Durkin -Durkins -Durland -Durlaston -Durleston Park -Durley -Durling -Durlston -Durmont -Durndale -Durnell -Durness -Durnford -Durning -Durnsford -Duronia -Duroso -Durrants -Durrants Hill -Durras -Durrell -Durrington -Durrington Park -Durrow -Dursey -Dursley -Durso -Durst -Durward -Durweston -Dury -Duryea -Dusenberry -Dusharme -Dusk -Dusko -Dustan -Dustin -Dustin Young -Dustman -Duston -Dusty -Dusty Oak -Dusty Wheel -Dusty Willow -Dutch -Dutch Barn -Dutch Flat -Dutch Haven -Dutch Hill -Dutch Hollow -Dutch Lake -Dutch Mill -Dutch Ship -Dutch Slough -Dutch Tulip -Dutch Valley -Dutch Village -Dutchcap -Dutcher -Dutcher Creek -Dutchess -Dutchland -Dutchman -Dutchview -Dutoit -Dutra -Dutra Bend -Dutruc -Dutt -Dutton -Duttonwood -Duty -Duval -Duvall -Duvall Bridge -Duvall Parish -Duvan -Duvawn -Duvol -Duwane -Duwari -Dux -Dux Court -Duxburry -Duxbury -Duxford -Duxhurst -Duynecrest -Dvorak -Dwane -Dwarf -Dwars Kill -Dwas Line -Dwasline -Dwelley -Dwelly -Dwhinda -Dwight -Dwinell -Dwinnell -Dwyer -Dybeck -Dyckman -Dye -Dye House -Dyer -Dyers -Dyers Hall -Dyes -Dygal -Dyke -Dykers Farm -Dylan -Dylan Creek -Dylane -Dymchurch -Dymock -Dymoke -Dymond -Dympna -Dynamic -Dynasty -Dyne -Dyneley -Dynes -Dynes Hall -Dynevor -Dynham -Dyott -Dyre -Dyrham -Dysart -Dysdale -Dyson -Dysons -Dysonswood -Dystelegh -Dystrup -E A -E A Joseph -E Abingdon -E Acker -E Ackerman -E Adams -E Addison -E Alabama -E Albert -E Alden -E Alder -E Alexandria -E Algonquin -E Alhambra -E Allison -E Almira -E Almondbury -E Alpine -E Altgeld -E Ames -E Amsterdam -E Amy -E Anchor -E Anderson -E Annandale -E Appletree -E Arch -E Ardmore -E Ardyce -E Argyle -E Armitage -E Army Trail -E Arrowhead -E Artisan -E Ash -E Atlantic -E Atwater -E Augusta -E Austin -E Avon -E Ayres -E Aztec -E Babcock -E Baker -E Balbo -E Baldwin -E Ballpark -E Balsam -E Baltimore -E Baltusrol -E Bancroft -E Banks -E Barberry -E Barbour -E Barclay -E Barkley -E Baronet -E Barret -E Bartlett -E Base Line -E Bauer -E Bay -E Bay Front -E Bay View -E Beach -E Beam -E Beaumont -E Beaver -E Bedell -E Beech -E Beechcroft -E Beecher -E Belden -E Bell -E Belle -E Bellefonte -E Belleterre -E Bellingham -E Bellwood -E Belmont -E Bemes -E Bend -E Bentley -E Benton -E Berkley -E Berkshire -E Bernice -E Berry -E Best -E Bethpage -E Bevan -E Bexhill -E Big Horn -E Big Sand -E Bigelow -E Birch -E Birchwood -E Bissell -E Black Dog -E Blair -E Blancke -E Blodgett -E Bloomingdale -E Bluebonnet -E Bluestone -E Bode -E Booker -E Boston Post -E Boundary -E Bowen -E Braddock -E Bradford -E Bradley -E Brandis -E Brannick -E Brayton -E Brenner -E Brewster -E Briarcliff -E Briarwood -E Brighton -E Brightway -E Brinkerhoff -E Brinwood -E Brittany -E Broad -E Broadway -E Brook -E Brookdale -E Brooklawn -E Brooks -E Brookside -E Brookwood -E Brown -E Browning -E Brunswick -E Brush Hill -E Bryn Mawr -E Burke -E Burlington -E Burning Tree -E Burr -E Burr Oak -E Burville -E Bush Lake -E Business Center -E Busse -E Butterfield -E Byway -E C -E Cabot -E Calendar -E California -E Cambridge -E Camden -E Camp McDonald -E Campbell -E Candlenut -E Canterbury -E Capitol -E Carib -E Carl -E Carmans -E Carolina -E Carondelet -E Carpenter -E Carriage -E Carriageway -E Carver -E Cascade -E Case -E Cass -E Castlewood -E Catalpa -E Cayuga -E Cedar -E Cedar Lake -E Centennial -E Center -E Central -E Centre -E Century -E Chalk Point -E Chapin -E Chapman -E Charles -E Charlotte -E Cherry -E Cheryl -E Chester -E Chestnut -E Chevy Chase -E Chicago -E Chinkapin Oak -E Chippendale -E Cholo -E Church -E Circle -E Circle Hill -E Circuit -E Clarendon -E Clark -E Clear -E Clearwater -E Cleburne -E Cleveland -E Cliff -E Clifford -E Clifton -E Clinton -E Coach -E Coady -E Coddington -E Cold Mill -E Cole -E Coleman -E Colfax -E College -E Collins -E Colonial -E Colorado -E Columbia -E Columbine -E Columbus -E Comfort -E Commercial -E Como Lake -E Comstock -E Congress -E Connecticut -E Constance -E Constitution -E Conway -E Cook -E Cooper -E Coral -E Corktree -E Cortland -E Cortwood -E Cosner -E Cossitt -E Cottage -E Country -E Country Club -E Countryside -E County Line -E Course -E Court -E Courtland -E Crabtree -E Craig -E Crainmont -E Crescent -E Crest -E Crestview -E Crestwood -E Crusader -E Crystal -E Crystal Lake -E Cuba -E Cullerton -E Cumberland -E Cunningham -E Curtice -E Curtis -E Custer -E Custis -E Cuttriss -E Dallas -E Danbury -E Daniels -E Danne -E Danube -E Darryl -E Dartmoor -E Davis -E Dean -E Decatur -E Deer Park -E Deerpath -E Delgado -E Delos -E Demarest -E Demont -E Denberry -E Dennis -E Des Moines -E Devon -E Devonia -E Dewey -E Diamond Lake -E Diane -E Dickens -E Diehl -E Diversey -E Division -E Dolton -E Donegal Bay -E Dosoris -E Dover -E Dudley -E Duncan -E Dundee -E Dundee Quarter -E Dunmore -E Dunslow -E Eagle Lake -E East -E Eastman -E Edgemont -E Edgewater -E Edsall -E Edward -E Edwards -E Elder -E Elderberry -E Elgin -E Elizabeth -E Elizbeth -E Elk Grove -E Ellis -E Elm -E Elmwood -E Emerson -E Emmerson -E Erie -E Euclid -E Eureka -E Evans -E Everett -E Evergreen -E Exchange -E Fabish -E Fairfax -E Fairfield -E Fairmont -E Fairview -E Falcon -E Farmdale -E Farmgate -E Fenimore -E Fernwood -E Figurea -E Fillmore -E Firehouse -E Fish Lake -E Flake -E Flanders -E Fleet -E Flentie -E Florida -E Foch -E Folsom -E Foreman -E Forest -E Fort Lee -E Forthill -E Fortlee -E Fox -E Fox Hill -E Frances -E Francis -E Franciscan -E Frank -E Franklin -E Frederick -E Fremont -E French Lake -E Friends -E Front -E Frontage -E Frontier -E Fullerton -E Fulton -E Furnace Branch -E Gaisor -E Galena -E Garden -E Gardner -E Garfield -E Garrett -E Gartner -E Garwood -E Gate -E Gates -E Gateway -E Geneva -E George -E Georgia -E Geranium -E Gibbons -E Gibbs -E Gilbert -E Gilfillan -E Glade -E Gladys -E Glebe -E Glen -E Glen Park -E Glendale -E Glenlake -E Goebel -E Goethe -E Golden Lake -E Goldsborough -E Golf -E Golfhurst -E Goodenow -E Goodman -E Goodrich -E Gore -E Gouverneur -E Graham -E Granada -E Grand -E Grand Lake -E Granite -E Grant -E Grantley -E Granville -E Grassy Sprain -E Green -E Green Meadow -E Greenbriar -E Greenbrook -E Greenfield -E Greenleaf -E Greenway -E Greenwich -E Greenwood -E Gregory -E Grenada -E Greystone -E Grissom -E Grove -E Gun Hill -E Hackberry -E Halbert -E Halden -E Half Hollow -E Halsey -E Ham Lake -E Hamburg -E Hamilton -E Hamline Service -E Hammond -E Hampton -E Hansel -E Hansen -E Harbor -E Harding -E Hardy -E Harehills -E Harkness -E Harper -E Harriet -E Harris -E Harrison -E Hartford -E Hartsdale -E Hartshorn -E Harvest -E Harwood -E Hattendorf -E Haven -E Hawley -E Hawthorne -E Hayes -E Hazel -E Hazelwood -E Heatherlea -E Hegel -E Helen -E Hendricks -E Hennepin -E Henry -E Heron -E Hickey -E Hickory -E Higbie -E Higgins -E High -E High Point -E Highland -E Hill -E Hillcrest -E Hillgrove -E Hillside -E Hinsdale -E Hintz -E Hitchcock -E Hobart Gap -E Hoffman -E Hollywood -E Holm -E Holsman -E Home -E Homestead -E Hooker -E Hopkins -E Horseshoe -E Howard -E Howell -E Hoyt -E Hubbard -E Hudson -E Hunter -E Hunter Ridge -E Hunter Valley -E Hurley -E Huron -E Huxley -E Hyacinth -E Hyde Park -E Hydraulic -E Ida -E Idaho -E Illinois -E Indian Spring -E Indian Trl -E Indiana -E Inman -E Inwood -E Iowa -E Ironstone -E Iroquois -E Irving -E Irving Park -E Isabel -E Isabella -E Ivy -E J Conroy -E Jack -E Jackson -E Jamaica -E Janata -E Jane -E Jefferson -E Jeffery -E Jeffrey -E Jenks -E Jersey -E Jessamine -E Joan -E Joe Orr -E Joffre -E John -E Johnson -E Joliet -E Joseph -E Joyce -E Judith Ann -E Jules -E Julius -E June -E Juniper -E Kammes -E Kansas -E Kathleen -E Kendall -E Kenilworth -E Kennedy -E Kenny -E Kensington -E Kenwood -E Kerry Brook -E Kilmer -E King -E Kinney -E Kinzie -E Kissimee -E Knob Hill -E Knollwood -E Kohlman -E Krage -E Kupsch -E Lacrosse -E Lafayette -E Lafayette Frontage -E Lahon -E Lake -E Lake Cook -E Lake Harriet -E Lake Louise -E Lake Netta -E Lake Rebecca -E Lake Shore -E Lakeland -E Lakeshore -E Lakeside -E Laraway -E Larkspur -E Larry Ho -E Laurel -E Lawn -E Lawndale -E Lawrence -E Lawson -E Le Moyne -E Lee -E Leeds Infirmary -E Lemoyne -E Lenox -E Leon -E Leonard -E Leone -E Lester -E Lexington -E Liberty -E Light -E Lillian -E Lincoln -E Linden -E Lindsley -E Linwood -E Locust -E Logan -E Lombard -E Long Lake -E Lorraine -E Lottie -E Louella -E Louis -E Louise -E Lowden -E Lower Pine Lake -E Lucas -E Luray -E Luther -E Lynda -E Lyndale -E Lynden -E Lynfield -E Lynnhurst -E Lynnwood -E Lyon Farm -E Lyons -E Mac Arthur -E Macarthur -E Macon -E Madison -E Magnolia -E Mahogany -E Main -E Major -E Malibou -E Mallard -E Mallory -E Manchester -E Manor -E Maple -E Margaret -E Marie -E Marine -E Marion -E Market -E Marlboro -E Marquette -E Marshall -E Marsteller -E Martin -E Mary -E Maryland -E Mason -E Masonic View -E Maude -E Maujer -E Maxon -E Maya -E Mayfair -E Mc Eldowney -E Mc Kenny -E Mc Lean -E McClellan -E McConnell -E McLane -E Meadow -E Meadow Lake -E Meadowland -E Mechanic -E Medicine Lake -E Medill -E Melrose -E Memorial -E Memory -E Mercer -E Merchants -E Meredith -E Merle -E Merrick -E Merritt -E Michael Manor -E Michigan -E Middle -E Middlesex -E Milburn -E Mill -E Mill Valley -E Miller -E Millers -E Millpage -E Millwood -E Milton -E Mineola -E Miner -E Mineral Pond -E Minerva -E Minnehaha -E Minooka -E Mississippi -E Mitchell -E Moehling -E Mohawk -E Monee -E Monitor -E Monroe -E Montana -E Monterey -E Montgomery -E Montrose -E Moonachie -E Moore Lake -E Moreland -E Morris -E Morse -E Morton -E Mound -E Mount -E Mount Harmony -E Mount Ida -E Mount Pleasant -E Mulberry -E Mundhank -E Munz -E Myrick -E Myrtle -E Nalley -E Nap -E Naperville -E Nassau -E National -E Navajo -E Nebraska -E Neck -E Nelson -E Nerge -E Nevada -E Neville -E New -E New York -E Newbold -E Newell -E Niagara -E Nicholai -E Nichols -E Nicollet -E Nolcrest -E Norfolk -E Norlander -E Norman -E Normandy -E North -E North Broadway -E North End -E North Frontage -E North Water -E Northfield -E Norwood -E Notre Dame -E Oak -E Oak Glenn -E Oak Hill -E Oakdale -E Oakdene -E Oakridge -E Oaks -E Oaksbury -E Oakton -E Oakview -E Oakwood -E Oasis Service -E Ocean -E Oceanside -E Offner -E Ogden -E Ohio -E Old Bridge -E Old Country -E Old Elm -E Old Hicks -E Old Mill -E Old Pine Bluff -E Old Post -E Old Ridge -E Old Shakopee -E Old White Plains -E Old Willow -E Olde Virginia -E Olive -E Oltendorf -E Oneida -E Onwentsia -E Orange -E Orchard -E Ordnance -E Oriole -E Osage -E Oxford -E Pacific -E Paddock -E Page -E Palatine -E Palisade -E Palisades -E Palmer -E Parallel -E Park -E Parkhill -E Parkside -E Parkview -E Pasadena -E Passaic -E Patapsco -E Patten -E Patton -E Payne -E Peachtree -E Pearl -E Pearson -E Peddie -E Peiffer -E Penn -E Pennington -E Pennsylvania -E Penny -E Pennywood -E Perkal -E Perkiomen -E Pershing -E Pettit -E Phillip -E Phillips -E Pierce -E Pierrepont -E Pine -E Pine Bluff -E Plainfield -E Plate -E Pleasant -E Pleasant Lake -E Pleasantview -E Plum -E Plum Tree -E Plymouth -E Point -E Pomeroy -E Pontiac -E Pool -E Poplar -E Port -E Porter -E Portland -E Ports O Call -E Ports of Call -E Post -E Potomac -E Potter -E Prairie -E Prairie Brook -E Pratt -E Price -E Prince -E Priscilla -E Private -E Progress -E Prospect -E Pt Douglas -E Pulaski -E Quackenbush -E Quincy -E Railroad -E Railway -E Rana -E Ranch -E Rand -E Randolph -E Randville -E Raven -E Raymond -E Reader -E Reading -E Reaney -E Red Coat -E Red Oak -E Redwood -E Reed -E Regal -E Reichert -E Research Center -E Reynolds -E Richard -E Richards -E Rickard -E Ridge -E Ridgefield -E Ridgewood -E Rietveld -E River -E Riverside -E Riviera -E Roberta -E Robie -E Rock Ridge -E Rockaway -E Rockland -E Rockwell -E Roland -E Rondeau Lake -E Roosevelt -E Rose -E Roselle -E Rosemont -E Rosita -E Ross -E Royal Ridge -E Ruby -E Runyon -E Russell -E Saddle Back -E Saddle River -E Saint Andrews -E Saint Charles -E Saint Georges -E Salem -E Saltaire -E Sanborn -E Sanctuary -E Sanders -E Sandpiper -E Santa Barbara -E Savannah -E Sayles -E Schaumburg -E Schick -E Schiller -E School -E Schoolhouse -E Schubert -E Scott -E Scranton -E Seacrest -E Seagrove -E Seaman -E Sedwick -E Seminary -E Service -E Severn Ridge -E Shadow Lake -E Shady Oaks -E Shag Bark -E Shannon -E Shaw -E Shawnee -E Sheffield -E Shelby -E Shelley -E Sheridan -E Sherman -E Sherrill -E Sherwood -E Shirley -E Shore -E Short -E Shoshone -E Side -E Sidney -E Sims -E Sioux Vista -E Sitka -E Skillman -E Skokie -E Slade -E Slayton -E Slope -E Smith -E Soffel -E Somerset -E Somonauk -E South -E South Branch -E South Broadway -E South Frontage -E Spencer -E Spring -E Spring Valley -E Springbrook -E Springhill -E Spruce -E Suburban -E Suffield -E Summer -E Summit -E Sumner -E Sunnyside -E Sunnyslope -E Sunset -E Superior -E Surf -E Surrey -E Susan -E Swain -E Swan -E Sycamore -E Sydney -E Sylvan -E Taft -E Talbot -E Tall Oaks -E Tano -E Tantallon -E Tappen -E Taylor -E Teal -E Techny -E Terra Cotta -E Terrace -E Terresa -E Terry -E Thayer -E Thomas -E Thompson -E Thorman -E Thorn -E Thorndale -E Timbercreek -E Tower -E Townline -E Traube -E Tremont -E Tryon -E Turner -E Turtle -E Twin -E Tyler -E Udall -E Uhler -E Union -E University -E Upland -E Utica -E Valencia -E Vallette -E Valley -E Valleyview -E Van Buren -E Van Emmon -E Van Ness -E Vargo -E Vera -E Vermillion -E Vermont -E Veterans -E Victoria -E View -E Viking -E Villa -E Village -E Virginia -E Voss -E Wakefield -E Waldron -E Wallace -E Wallum Lake -E Walnut -E Warburton -E Ward -E Warren -E Warwick -E Washington -E Water -E Waterside -E Waverly -E Weaver -E Webster -E Wells -E Wellwood -E Wend -E Wesley -E West -E West Shady Side -E Westleigh -E Westminster -E Wheelock -E Whispering Oaks -E White Water -E Wildwood -E Wilhelm -E William -E William Tell -E Williams -E Williston -E Willow -E Wilson -E Winant -E Winchester -E Windsor -E Wing -E Winifred -E Winthrop -E Wisconsin -E Wise -E Witchie -E Witchwood -E Wood -E Wood Duck -E Woodbine -E Woodcrest -E Woodland -E Woodlawn -E Woodman -E Woodridge -E Woodrow -E Woods -E Woodside -E Woodstock -E Worth -E Wrightwood -E Wyngate -E Wynstone -E York -E Yuma -E Zarley -E Zinnia -E Zoller -E Zoranne -E del Ray -E la Porte -E. Chicago -E. Market -E.Sylvestris -Eacham -Eachann -Eade -Eades -Eadington -Eads -Eafield -Eagan -Eagan Industrial -Eagan Oaks -Eagan Woods -Eagandale -Eagar -Eager -Eagle -Eagle Bay -Eagle Bluff -Eagle Brook -Eagle Chase -Eagle Creek -Eagle Crest -Eagle Gap -Eagle Harbor -Eagle Head -Eagle Hill -Eagle Knolls -Eagle Lake -Eagle Landing -Eagle N -Eagle Nest -Eagle Park -Eagle Peak -Eagle Point -Eagle Ridge -Eagle Rim -Eagle Rock -Eagle Rock Hill -Eagle Springs -Eagle Tavern -Eagle Trace -Eagle Tree -Eagle Vale -Eagle Valley -Eagle View -Eagle Vista -Eagle Wharf -Eaglecroft -Eaglehawk -Eaglehead -Eaglehurst -Eaglepoint -Eagleridge -Eagles -Eagles Mere -Eagles Nest -Eagles Notch -Eagles Roost -Eagles Run -Eagles View -Eaglesfield -Eagleshore -Eagleton -Eagleview -Eaglewing -Eaglewood -Eagley -Eagrett -Eaker -Eakins -Ealand -Ealing -Ealing on Duxbury -Eames -Eamont -Eardley -Earhart -Earhart Dam -Earl -Earl Howe -Earl Iliff -Earl Mountbatten -Earl Sullivan -Earl of Chester -Earlander -Earldom -Earle -Earle Brown -Earle Ovington -Earle Shores -Earlehurst -Earleigh Heights -Earleigh Woods -Earlena -Earlene -Earles -Earley -Earley Hill -Earlham -Earls -Earls Colne -Earls Hall -Earlsbrook -Earlsfield -Earlsford -Earlsgate -Earlsmead -Earlsmere -Earlsthorpe -Earlstoke -Earlston -Earlswood -Earlsworth -Earlwood -Earlwoode -Early -Early Autumn -Early Glow -Early Morning -Early Oaks -Early Times -Earlybird -Earlynn -Earnell -Earnest -Earnestine -Earnscliff -Earnshaw -Earsby -Earth -Earth Flower -Easby -Eascote -Easebourne -Easecrest -Easedale -Easel -Easement -Eashing -Easie -Easington -Easley -Eason -East -East A -East Abbey -East Ac -East Access -East Acton -East Acton Brunel -East Ad -East Adams -East Agua Caliente -East Ahwanee -East Airway -East Alameda -East Albion -East Aldea -East Alden -East Alder -East Algonquin -East Allendale -East Allison -East Alma -East Aloha -East Altarinda -East Amhurst -East Anderson -East Angela -East Angus -East Anza -East Arbor -East Arbour -East Arques -East Ashland -East Ashley -East Atherton -East Atlantic -East Augusta -East Austin Creek -East B -East Bacon -East Bagwell -East Baker -East Balbo -East Baldwin -East Banbury -East Bare Hill -East Barnet -East Bath -East Battery -East Battles -East Bay -East Bayshore -East Beach -East Beachwood -East Beamer -East Beech -East Beeches -East Bel Mar -East Belcher -East Bell -East Bellevue -East Bend -East Benjamin Holt -East Berkeley -East Berkley -East Berna -East Bianchi -East Bidwell -East Bird -East Black Oak -East Blaine -East Blair -East Blithedale -East Bolton -East Bond -East Bonness -East Border -East Boscobel -East Boston -East Boundary -East Boxford -East Branch -East Bridge -East Bridgewater -East Broadway -East Brockman -East Brokaw -East Bronte -East Brook -East Brookline -East Brookwood -East Brunswick -East Buchanan -East Bulfinch -East Burnham -East Burnside -East Busk -East C -East Calaveras -East Calhoun -East California -East Campbell -East Campus -East Canton -East Canyon -East Canyon View -East Capitol -East Cardinal -East Caribbean -East Carlo -East Carol -East Carriage -East Carroll -East Cascade -East Castro Valley -East Cavendish -East Cavour -East Cemetery -East Center -East Central -East Centry -East Channel -East Charles -East Charleston -East Charlotte -East Cherry -East Chestnut -East Chevin -East Chiles -East Church -East Cintura -East Clarendon -East Clay -East Claydon -East Cliff -East Coast -East Colfax -East College -East Collins -East Colorado -East Columbia -East Comfort -East Commercial -East Common -East Como -East Concord -East Congress Plaza -East Conley -East Cornell -East Corning -East Cotati -East Country Club -East Court -East Cove -East Covell -East Coyote Creek -East Creek -East Crescent -East Crockett -East Crooked Hill -East Cross -East Curtis -East Cypress -East D -East Dalton -East Dam -East Dana -East Danbury -East Dartmouth -East Davis -East Dedham -East Dellridge -East Dene -East Denver -East Deodara -East Devon -East Diamond -East Diane -East Division -East Downs -East Duane -East Duck Lees -East Dulwich -East Dundee -East Dunne -East Dunstable -East Durant -East E -East Eagle -East Eaglewood -East East -East Eastman -East Eastview -East Echo Lake -East Edgar -East Edith -East Edmundson -East Edwards -East Eight Mile -East Eighth -East Elbrook -East Elm -East Elmwood -East Emerson -East Empire -East End -East Englewood -East Estates -East Euclid -East Eugene -East Evans -East Evelyn -East Evergreen -East F -East Fabyan -East Fairfax -East Fairfield -East Fairview -East Falcon -East Fawn -East Ferdinand -East Ferndale -East Ferry -East Field -East Field Service -East Fifth -East Fir -East First -East Flexford -East Foothill -East Foppiano -East Fordham -East Foreman -East Forest Lake -East Forks -East Fosket -East Foster -East Foster Island -East Fourth -East Foxboro -East Francis -East Franklin -East Frederick -East Fremont -East French Camp -East Frisbee -East Front -East Frontage -East Fulton -East Furman -East G -East Galena -East Galer -East Galin -East Garfield -East Gary -East Gate -East Geary -East Geneva -East George -East Gibson -East Gilbert -East Gish -East Glen -East Glencoe -East Gnarled Oak -East Golf -East Gordon -East Gowe -East Grace -East Grand -East Grange -East Grant Line -East Greystone -East Grinstead -East Grove -East Gude -East Guernsey -East Gum -East Gun Hill -East H -East Hacienda -East Haight -East Hall -East Hamilton -East Hamlin -East Hammer -East Hampton -East Handel -East Hanningfield -East Harding -East Harney -East Harper -East Harris -East Harrison -East Harting -East Harvest -East Harwood -East Haven -East Hawthorne -East Hayden Lake -East Haydon -East Hazelton -East Heath -East Hedding -East Helen -East Hemlock -East Hendy -East Hennepin -East Henning -East Higgins -East High -East Highland -East Hildreth -East Hill -East Hill Alma -East Hillcrest -East Hills -East Hillsdale -East Hilton -East Hirsch -East Hoe -East Hogan -East Holly -East Hollywood -East Home -East Homestead -East Hopkins -East Horner -East Hospital -East Houston -East Howard -East Howe -East Howell -East Hoyle -East Humboldt -East Hurd -East Hurlbut -East Huron -East I -East Iberia -East Ike Crow -East Illinois -East India Dock -East Ingram -East Interlaken -East Interurban -East Iowa -East Iris -East Irving Park -East J -East Jack London -East Jack Tone -East Jackson -East Jahant -East James -East Jamestown -East Java -East Jefferson -East John -East Jonathan -East Jonquil -East Juana -East Julian -East Juniper -East K -East Kavanagh -East Kelly -East Kendall -East Kenilworth -East Kennedy -East Kensington -East Kent -East Kentucky -East Kenyon -East Kettleman -East Keystone -East Kimber -East Kimberly -East King -East Kingfisher -East Kingsbridge -East Kingsley -East Kingston -East Kirke -East Kirschenman -East Kitson -East Knoll -East Krell -East Lafayette -East Laguna -East Lake -East Lake Kayak -East Lake Shore -East Lake Washington -East Lakeshore -East Lancashire -East Lancaster -East Lanram -East Larkspur -East Las Palmas -East Latimer -East Laurel -East Laurel Creek -East Laurin -East Lawn -East Lawrence -East Le Moyne -East Lee -East Leeds Link -East Leigh -East Leland -East Lenox -East Levee -East Lewelling -East Lewis -East Lincoln -East Linden Church -East Linden Orchard -East Lindsay -East Linne -East Live Oak -East Lockeford -East Locust -East Lodge -East Lodi -East Lomond -East Long Barn -East Longfellow -East Longview -East Lonnquist -East Loomis -East Loop -East Lorenzen -East Loretta -East Los Felis -East Lost Lake -East Lothrop -East Louisa -East Louise -East Lousia -East Lowe -East Lowell -East Lubell -East Lynch -East Lynn -East M -East Macarthur -East Madill -East Madison -East Magnolia -East Mahwah -East Main -East Mall -East Mallory -East Manor -East Manzanita -East Maple -East March -East Marion -East Mariposa -East Market -East Marsh -East Marshall -East Mascalls -East Mathews -East Maude -East Mayes -East Mayfair -East Mc Gilvra -East Mc Graw -East Mc Kenzie -East Mc Mullin -East McAllen -East McGlincey -East Meadow -East Mearn -East Meeker -East Mehrten -East Melbourne -East Mendocino -East Meon -East Mercer -East Mercer Highland -East Merrimack -East Messick -East Michigan -East Middle -East Middlefield -East Midland -East Milgeo -East Militia Heights -East Mill -East Millbrae -East Miller -East Millwood -East Milton -East Miner -East Mission -East Mistletoe -East Mockingbird -East Moltke -East Moncure -East Monroe -East Montara -East Monte Vista -East Monterey -East Moor -East Morada -East Morris -East Morrison -East Morse -East Mount -East Mount Diablo -East Mozart -East Munford -East Munro -East Myrtle -East N -East Napa -East Nash -East Natoma -East Nauraushaun -East Nerge -East New York -East Newton -East Nichols -East Nile -East Nilsson -East Ninth -East Noble -East North -East Novak -East Noyes -East Nulty -East Nursery -East O -East Oak -East Oaksbury -East Oakton -East Oakview -East Oakwood -East Ohio -East Old Barn -East Old Greenville -East Olive -East Olivera -East Ontario -East Orchard -East Ordnance -East Ordsall -East Orford -East Orwood -East Otis -East Pacific -East Palatine -East Palm -East Park -East Park Farm -East Park View -East Parkdale -East Passaic -East Patrol -East Patterson -East Peach -East Pearl -East Peltier -East Penn -East Pennsylvania -East Perimeter -East Perrin -East Pescadero -East Phillips -East Pickwick -East Pike -East Pine -East Plain -East Plateau -East Plumeria -East Point -East Ponce de Leon -East Pond -East Poplar -East Port -East Portola -East Poultry -East Power -East Prairie -East Princeton -East Prospect -East Prouty -East Purchase -East Putnam -East Quarry -East Quashnick -East Quinobequin -East Railroad -East Raleigh -East Ramapo -East Ranch -East Rancho Arroyo -East Rand -East Rand Grove -East Randolph -East Realty -East Redwood -East Reed -East Regal -East Reitze -East Remington -East Republican -East Rianda -East Richardson -East Richmond -East Ridge -East Ridgecrest -East Riding -East Rincon -East Ringwood -East River -East Riverside -East Riverview -East Roanoke -East Robert -East Robertson -East Robinhood -East Robles -East Rockwell -East Rollins -East Ronald -East Roosevelt -East Rose -East Rosemary -East Roy -East Ruby -East Ruby Hill -East Rutherford -East Ryer -East Saddle River -East Saint Charles -East Saint James -East Saint John -East Salt -East San Antonio -East San Bruno -East San Carlos -East San Fernando -East San Martin -East San Salvador -East Sandalwood -East Sandralee -East Santa Clara -East Santa Fe -East Santa Inez -East Santos -East Sargent -East Scenic -East School -East Schoolhouse -East Schuyler -East Scotts -East Seaview -East Second -East Section -East Seegers -East Selby -East Seneca -East Serenity -East Service -East Seventh -East Shady -East Shalford -East Shea -East Sheen -East Shelby -East Sheppard -East Sherman -East Shiloh -East Shore -East Shoreview -East Shorewood -East Side -East Sidney -East Sierra -East Sigwalt -East Sikorsky -East Sixth -East Slope -East Smith -East Soda Rock -East Sola -East Sonoma -East Sonora -East South -East South Water -East Southgate -East Southland -East Spain -East Spiess -East Spring -East Spruce -East Squantum -East Sst -East Sunnyoaks -East Sunnyslope -East Sunset -East Superior -East Sutter -East Sutton -East Swain -East Sylvester -East T -East Tabor -East Tacoma -East Taron -East Tasman -East Taylor -East Tazewell -East Tehama -East Temperance -East Temple -East Tennessee -East Tennys -East Tenter -East Terrace -East Thacker -East Third -East Thomas -East Thomas Grade -East Thomson -East Thorndale -East Thornwood -East Thurman -East Thurrock -East Tiffany -East Tilbury -East Titus -East Tobacco -East Todd -East Tokay -East Tokay Colony -East Touhy -East Town Line -East Towne -East Travis -East Tregallas -East Tremont -East Trident -East Trimble -East Tripps Run -East Underwood -East Union -East University -East Utah -East Vail -East Valley -East Van Buren -East Vanston -East Verdon -East Veritas -East Vernon -East Victor -East Victoria -East View -East Vine -East Vineland -East Vineyard -East Virginia -East Vista -East Vivian -East Wacker -East Walnut -East Ward -East Warren -East Washington -East Water -East Watmaugh -East Wayne -East Weald -East Weddell -East West -East Wetmore -East Whipley -East White Oak -East Whitehouse -East Whittier -East Wilchard -East Wildcat Canyon -East William -East Williamsburg -East Williston -East Willow -East Wilmette -East Wilson -East Wiltse -East Winery -East Wood -East Woodbridge -East Woodbury -East Woodcliffe -East Woodfield -East Woods -East Woodson -East Woodward -East Worcester -East Worth -East Wyandotte -East Wyman -East Wyoming -East Yokuts -East Yolo Levee -East Yorkshire -East Younger -East Zayante -East el Campo -East el Macero -East la Chiquita -East la Mesa -EastField -Eastbank -Eastbluff -Eastbourne -Eastbournia -Eastbrook -Eastbrooke -Eastburn -Eastbury -Eastcastle -Eastchester -Eastchester – Dyre -Eastchurch -Eastcliff -Eastcliffe -Eastcombe -Eastcote -Eastcourt -Eastcrest -Eastcroft -Eastdale -Eastdean -Eastdene -Easteds -Eastend -Eastentry -Easter -Easterby -Easterford -Easterley -Easterly -Eastern -Eastern Arterial -Eastern Creek -Eastern Crest -Eastern Heights -Eastern Marketplace -Eastern Perimeter -Eastern Point -Eastertown -Eastfield -Eastfields -Eastford -Eastgate -Eastgate View -Eastgrove -Eastham -Easthampstead -Easthaven -Eastheath -Easthill -Eastholme -Easthorpe -Eastin -Eastlake -Eastland -Eastlands -Eastlawn -Eastlea -Eastleigh -Eastlewood -Eastlick -Eastline -Eastling -Eastman -Eastman Lake -Eastmans -Eastmont -Eastmoor -Eastmoreland -Eastmount -Eastney -Eastnor -Easton -Easton North -Eastover -Eastpine -Eastport -Eastridge -Eastrop -Eastry -Eastshire -Eastshore -Eastside -Eastus -Eastview -Eastview Farm -Eastville -Eastward -Eastway -Eastwick -Eastwick Hall -Eastwick Park -Eastwind -Eastwood -Eastwood Old -Eastwood Park -Eastwood Village -Eastwoodbury -Eastwoods -Eastworth -Easum -Easy -Eather -Eatington -Eatkart -Eaton -Eaton Bray -Eaton Green -Eaton Landing -Eaton Park -Eaton Valley -Eatonia -Eatons -Eatons Neck -Eaves -Eaves Knoll -Eba -Ebano -Ebb -Ebb Tide -Ebberns -Ebberstone -Ebbertaft -Ebbesen -Ebbett -Ebbetts -Ebbetts Pass -Ebbisham -Ebbitts -Ebbsfleet -Ebbtide -Ebden -Ebe -Eben -Ebener -Ebenezer -Ebensburg -Ebenzer -Eberhard -Eberhardt -Eberhart -Eberlin -Eberly -Ebersbach -Ebert -Eberts -Eberwein -Ebey -Ebken -Ebley -Ebner -Ebony -Ebor -Ebrington -Ebro -Ebsworth -Eburne -Ebury -Ebury Bridge -Eby -Eccles -Eccles New -Eccles Old -Ecclesbourne -Ecclesbridge -Ecclesburn -Eccleshall -Eccleston -Ecclestone -Eccup -Eccups -Echelforde -Echo -Echo Barn -Echo Bay -Echo Bridge -Echo Cove -Echo Glen -Echo Grove -Echo Hill -Echo Hills -Echo Knolls -Echo Lake -Echo Park -Echo Pit -Echo Point -Echo Ridge -Echo Springs -Echo Square Sun -Echo Summit -Echo Valley -Echo Woods -Echols -Echunga -Eckberg -Eckbo -Eckel -Ecker -Eckersley -Eckersley Fold -Eckerson -Eckert -Eckert Farm -Eckford -Eckhart -Eckles -Eckley -Eckmoor -Eckstein -Eclipse -Ecole -Ecology -Ecton -Ector -Ed Bossert -Ed Finn -Ed McDashowicz -Ed Prout -Ed Rau -Edale -Edan -Edbrooke -Edcris -Eddel -Eddeys -Eddie -Eddinger -Eddington -Eddisbury -Eddiscombe -Eddisford -Eddison -Eddiwick -Edds -Eddy -Eddyspark -Eddystone -Ede -Edel -Edelblut -Edelen -Edelin -Edelmar -Edelton -Edelweiss -Eden -Eden Bower -Eden Bridge -Eden Brook -Eden Canyon -Eden Glen -Eden Grove -Eden Landing -Eden Oaks -Eden Park -Eden Plains -Eden Prairie -Eden Roc -Eden Rock -Eden Shores -Eden View -Eden West -Edenbank -Edenberry -Edenborough -Edenbridge -Edenbury -Edencourt -Edencrest -Edendale -Edenderry -Edenfield -Edenhall -Edenholme -Edenhurst -Edenlee -Edenmoor -Edensor -Edentenny -Edenton -Edenvale -Edenview -Edenville -Edenwood -Eder -Eder Ct -Ederline -Ederoyd -Edes -Edfeldt -Edgar -Edgar A Poe -Edgar Buggy -Edgars -Edgartown -Edgbaston -Edgcumbe -Edgcumbe Park -Edge -Edge Creek -Edge Field -Edge Fold -Edge Hill -Edge Lake -Edge Rock -Edge View -Edgebank -Edgeboro -Edgebrook -Edgebrooke -Edgecliff -Edgecliffe -Edgecomb -Edgecombe -Edgecome -Edgecote -Edgecott -Edgecourt -Edgecreek -Edgecrest -Edgecroft -Edgecumbe -Edgedale -Edgefield -Edgegate -Edgegrove -Edgehill -Edgel -Edgelawn -Edgelea -Edgeley -Edgell -Edgemar -Edgemeade -Edgemere -Edgemere Park -Edgemont -Edgemoor -Edgemore -Edgemount -Edgepark -Edgerly -Edgerton -Edgevale -Edgeview -Edgeware -Edgewarebury -Edgewater -Edgewater Place -Edgewater Pond -Edgewick -Edgewold -Edgewood -Edgewood Glen -Edgewood Hills -Edgeworth -Edgeworth David -Edgington -Edgrace -Edgware -Edgwarebury -Edi -Edice -Edie -Edilom -Edin Garth -Edina -Edina Industrial -Edinboro -Edinbrook -Edinburg -Edinburgh -Edinger -Edington -Edis -Edison -Edison Park -Edith -Edith Holmes -Edith Patch -Edith Sherman -Edithna -Editors Park -Ediva -Edlee -Edlin -Edlington -Edloe -Edlys -Edman -Edmands -Edmar -Edminton -Edmond -Edmonds -Edmondson -Edmons -Edmonston -Edmonton -Edmore -Edmund -Edmund Beaufort -Edmund Corrigan -Edmund Halley -Edmund Hock -Edmund Hurst -Edmunds -Edmunton -Edna -Ednor -Edoka -Edpas -Edquiba -Edric -Edrich -Edrick -Edridge -Edsall -Edscho -Edsel -Edson -Edstan -Edstone -Education -Educational Park -Edulf -Edwall -Edward -Edward Barron -Edward Bennett -Edward Bentley -Edward Charlton -Edward Cody -Edward Cul de Sac -Edward Edgar -Edward Foster -Edward H Ross -Edward Hart -Edward II -Edward Kelleher -Edward S Harrison -Edward Temme -Edwardel -Edwardene -Edwards -Edwards Bay -Edwards Ferry -Edwards Point -Edwards Rancho -Edwardson -Edwin -Edwin C Weiskopf -Edwin Flack -Edwin H. Land -Edwin Markham -Edwin Raynor -Edwina -Edwins Hall -Edwrads -Edythe -Ee -Eel -Eelmoor -Eelmoor Plain -Eerawy -Effey -Effie -Effies -Effingham -Effingham Common -Effington -Efford -Effort -Effra -Effress -Effron -Efner -Egan -Egandale -Eganey -Egard -Egbert -Egbert Hill -Egdon -Ege -Egel -Egerszegi -Egerton -Egerton Green -Egerton House -Egg Farm -Egg Pie -Egg Ranch -Eggar Woods -Eggelston -Eggers -Eggert -Eggington -Eggleson -Eggleston -Eggleton -Egham -Eghams Wood -Egidi -Eglantine -Egleston -Egley -Eglin -Eglington -Eglinton -Eglise -Egliston -Egmont -Egmontt Park -Egolf -Egremont -Egret -Egypt -Egypt Beach -Egyptian -Ehle -Ehlen -Ehlers -Ehlinger -Ehrbar -Ehret -Ehrhardt -Ehrhorn -Eich -Eichenwald -Eicher -Eichler -Eichten -Eider -Eiffel -Eiger -Eight -Eight Acre -Eight Lots -Eight Rod -Eighteen Acre -Eighteenth -Eighth -Eightlands -Eightpenny -Eigleberry -Eigth -Eike -Eildon -Eileen -Eilene -Eiler -Eilers -Eilerson -Eillimatta -Eilliot -Eilmatta -Eimer -Einfield -Einhorn -Eire -Eischens -Eiseman -Eisenbeisz -Eisenhower -Eisner -Eisnor -Eitel -Eith -Eith High -Ekala -Ekberg -Ekings -Ekins -Eklund -Ekman -Eknes -Ekstrand -El Alamein -El Arroyo -El Balcon -El Bonita -El Bonito -El Bosque -El Cajon -El Cameno -El Camille -El Caminito -El Camino -El Camino Medio -El Camino Plaza -El Campo -El Caney -El Capitan -El Caprice -El Carlo -El Carmelo -El Cemonte -El Centro -El Cerrito -El Cerro -El Charro -El Chorlito -El Cid -El Cimino -El Cortez -El Crystal -El Curtola -El Divisadero -El Dorado -El Dorado Beach Club -El Dorado Hills -El Dorado Turn -El Dori -El Douro -El Encanto -El Faisan -El Fresco -El Gato -El Granada -El Grande -El Greco -El Invierno -El James -El Lago -El Lisa -El Macero -El Manto -El Matador -El Mercado -El Mirador -El Modena -El Molino -El Monte -El Moro -El Morro -El Nido -El Nido Ranch -El Oro -El Oro Plaza -El Oso -El Padro -El Paraiso -El Paseo -El Paso -El Patio -El Pinal -El Pintado -El Pintado Heights -El Pinto -El Portal -El Porto -El Portola -El Prado -El Pueblo -El Quanito -El Rancho -El Rancho Verde -El Refugio -El Reno -El Rey -El Rincon -El Rio -El Rose -El Salto -El San -El Sanjon -El Segundo -El Sereno -El Sobrante -El Solyo -El Solyo Heights -El Sombroso -El Suyo -El Terraza -El Toro -El Vanada -El Verand -El Verano -El Vista -El Zuparko -Ela -Elacqua -Elaine -Elam -Elan -Elan Village -Eland -Elanora -Elario -Elayne -Elba -Elbe -Elberon -Elbert -Elberta -Elbertson -Elbon -Elbormar -Elborough -Elbow -Elbridge -Elbrook -Elbury -Elbut -Elby -Elcedo -Elchester -Elcho -Elcock -Elcombe -Elcorte Madera -Elcot -Elcott -Elda -Eldamain -Eldbridge -Eldee -Elden -Eldene -Elder -Elder Brewster -Elder Creek -Elder Oaks -Elder Tree -Elderberry -Elderbrook -Eldercroft -Elderd -Elderfield -Elderfields -Elderfo -Elderly -Eldermount -Elders Hollow -Eldershaw -Elderslie -Eldert -Elderton -Elderwood -Eldon -Eldor -Eldora -Eldorado -Eldred -Eldredge -Eldrid -Eldridge -Eldridge Grade Fire -Eldrige -Eleana -Eleanor -Eleanor Cross -Eleanore -Elebana -Elebe -Election -Electioneer -Electo -Electra -Electric -Electronic -Electronics -Elefa -Elegans -Elegante -Eleham -Elena -Elena Marie -Elenda -Elendil -Elene -Eleni -Elephant -Elester -Eletson -Elevation -Elevator -Eleven Oaks -Eleventh -Eley -Elf -Elfelt -Elfers -Elfin -Elfindale -Elford -Elfort -Elfred -Elfreda -Elfrida -Elfrieda -Elfwine -Elgar -Elgarth -Elger -Elgin -Elgin Hosp Service -Elgin Mental Hospital -Elginwood -Elgiva -Elham -Elholm -Eli -Eli Whitney -Elia -Elianore -Elias -Elias Howe -Eliason -Elibank -Elijah -Elim -Elimatta -Elingwood -Elinor -Elinor Fr -Elinora -Elinore -Elioak -Eliot -Eliot Hill -Eliot Memorial -Eliot View -Eliots Oak -Eliott -Elisa -Elise -Eliseo -Elisha -Elissa -Elissagaray -Eliston -Elite -Eliz -ElizAbeth -Eliza -Eliza Ann -Elizabath -Elizabeth -Elizabeth Bay -Elizabeth Fry -Elizabeth Ida -Elizabeth MacArthur -Elizabeth Macarthur -Elizabeth Ridge -Elizabeth River -Elizabeth Slinger -Elizia -Eljays -Eljer -Elk -Elk Crest -Elk Grove -Elk Hills -Elk Horn -Elk Lick -Elk Mar -Elk Point -Elk Run -Elk Spring -Elka -Elkan -Elker -Elkgrove Township -Elkhart -Elkhorn -Elkhorn Manor -Elkin -Elkington -Elkins -Elkland -Elkmont -Elko -Elkridge -Elkridge Heights -Elkridge Landing -Elks -Elkstone -Elkton -Elkwood -Ell -Ella -Ellaline -Ellalong -Ellam -Elland -Ellard -Ellbank -Ellbourne -Elle -Ellege -Ellen -Ellen Terry -Ellen Webb -Ellena -Ellenbrook -Ellendale -Ellenel -Ellenmere -Ellenor -Ellensue -Ellenton -Ellentree -Ellenwhorne -Ellenwood -Elleray -Ellerbe -Ellerbie -Ellerbrook -Ellerby -Ellerdale -Ellerdine -Ellergreen -Ellerhausen -Ellerhorst -Ellerker -Ellerman -Ellers -Ellerslee -Ellerslie -Ellert -Ellerton -Ellery -Elles -Ellesborough -Ellesemere -Ellesfield -Ellesmere -Ellestere -Ellestuen -Ellet -Ellice -Ellicott -Ellicott Woods -Ellie -Elliman -Ellin -Ellinger -Ellingfort -Ellingham -Ellingson -Ellington -Ellingwood -Ellinwood -Elliot -Elliot Ranch -Elliott -Elliott Av -Elliott Ranch -Ellis -Ellis Farm -Ellis Johnson -Ellisen -Ellisfield -Ellison -Ellisville -Elliswick -Ellita -Ellithorpe -Ellman -Ellmar Oaks -Ellmore -Ellmyer -Ellor -Ellora -Ells -Ellsberg -Ellsmere -Ellsmore -Ellswood -Ellsworth -Ellwell -Ellwood -Ellyn -Ellyridge -Ellzey -Elm -Elm Beds -Elm Brook -Elm Creek -Elm Creet -Elm Crest -Elm Farm -Elm Green -Elm Grove -Elm Hill -Elm Knoll -Elm Lawn -Elm Lodge -Elm Park -Elm Ridge -Elm Rock -Elm Sea -Elm Top -Elm Tree -Elm View -Elma -Elman -Elmang -Elmar -Elmbank -Elmbark -Elmbourne -Elmbridge -Elmbrook -Elmcrest -Elmcroft -Elmdale -Elmdene -Elmdon -Elmdorf -Elmendorf -Elmer -Elmer F Hagner -Elmer School -Elmers -Elmers End -Elmerside -Elmesmere -Elmet -Elmete -Elmfield -Elmgate -Elmgrove -Elmhirst -Elmhurst -Elmington -Elminya -Elmira -Elmire -Elmlea -Elmleaf -Elmley -Elmo -Elmont -Elmoor -Elmora -Elmore -Elmridge -Elmroyd -Elms -Elms Farm -Elms Park -Elmscott -Elmscroft -Elmsdale -Elmsfield -Elmsford -Elmshaven -Elmside -Elmsleigh -Elmsmere -Elmstead -Elmstone -Elmstone Hole -Elmstree -Elmstreet -Elmswood -Elmsworth -Elmton -Elmtree -Elmview -Elmwood -Elmwood Farm -Elmwood Park -Elmwynd -Elna -Elnew -Elnido -Elnoka -Elnor -Elnora -Elodie -Eloise -Elon -Elonera -Eloora -Elora -Elouera -Eloura -Elphick -Elphinstone -Elphistone -Elray -Elrene -Elridge -Elrington -Elrod -Elrose -Elroy -Elsa -Elsbeth -Elsbree -Elsdale -Elsden -Elsdon -Elsen -Elsenham -Elsenwood -Elsham -Elsholz -Elsie -Elsie Mae -Elsie Maud -Elsiedene -Elsinge -Elsinoor -Elsinor -Elsinore -Elskip -Elsley -Elsma -Elsmere -Elsmore -Elsom -Elson -Elsona -Elspeth -Elstar -Elstead -Elsted -Elston -Elstow -Elstree -Elsway -Elswick -Elsworth -Elsworthy -Elsynge -Elterwater -Eltham -Eltham Church High -Eltham Green -Eltham Palace -Elthiron -Elthorne -Eltinge -Eltingville -Eltisley -Elton -Elton Farm -Elton Vale -Eltringham -Elva -Elvans -Elvas -Elvaston -Elvaton -Elvaton Towne -Elveden -Elvedon -Elven -Elvendon -Elvera -Elverland -Elverson -Elverston -Elverta -Elverton -Elves -Elvessa -Elvet -Elvetham -Elvia -Elvies -Elvin -Elvina -Elvington -Elvino -Elvir -Elvira -Elvis -Elvstrom -Elward -Elway -Elwell -Elwern -Elwick -Elwin -Elwood -Elwyn -Ely -Elyard -Elyne -Elyse -Elysian -Elysian Fields -Elysium -Elystan -Elzer -Elzey -Em -Emack -Emado -Emalon -Emami -Emanuel -Emaron -Emba -Embankment -Embarcadero -Embarcadero North -Embarcadero South -Embassy -Embden -Embee -Ember -Ember Farm -Embercourt -Emberdale -Embers -Emblem -Embleton -Embroidery -Embry -Embry Farm -Emden -Emegency -Emelia -Emeline -Emer -Emerad -Emerald -Emerald Bay -Emerald Chase -Emerald Cove -Emerald Crest -Emerald Forest -Emerald Green -Emerald Grove -Emerald Hill -Emerald Hills -Emerald Isle -Emerald Lake -Emerald Oak -Emerald Park -Emerald Pointe -Emerald Pool -Emerald Ridge -Emerald Rock -Emerald Vista -Emerald Wood -Emergency -Emergency Access -Emeric -Emerick -Emerson -Emerson Gardens -Emerson Valley -Emersons -Emerstan -Emert -Emerton -Emery -Emery Bay -Emery Hill -Emery Village -Emeryn -Emes -Emigh -Emigrant Gap -Emil -Emilia -Emilie -Emiline -Emilio -Emilissa -Emily -Emily Clarke -Emily Dickinson -Emily Jeffers -Emilys -Emington -Emjay -Emkay -Emley -Emlong -Emlyn -Emma -Emma Lee -Emmaline -Emmanual -Emmanuel -Emmanuel Church -Emmaton -Emmaus -Emmbrook -Emme -Emmeline -Emmer Green -Emmerick -Emmers -Emmerson -Emmert -Emmet -Emmet Hill -Emmet Roche -Emmetsburg -Emmett -Emmetts -Emmetts Farm -Emmitt -Emmons -Emmons Canyon -Emmonsdale -Emmott -Emms -Emo -Emond -Emory -Emory Church -Emory Grove -Emperor -Empire -Empire Builder -Empire Mine -Empire Tract -Empire Wharf -Empoli -Emporia -Empress -Empson -Empty Song -Emrol -Emroy -Emshee -Emsworth -Emu -Emu Plains -Emwood -Ena -Enatai -Enborg -Enborn -Enbrook -Encanto -Encerti -Enchanted -Enchanted Forest -Enchantment -Enchanto Vista -Encima -Encina -Encina Grande -Encinal -Encino -Encinosa -Enclave -Enclosure -Encore -Encounter -End -End View -Endean -Endeavor -Endeavour -Endell -Enderby -Enderley -Enders -Endersby -Endicott -Endlebury -Endleigh -Endlesham -Endlich -Endmoor -Endo -Endon -Endor -Endow -Endres -Endriss -Endsleigh -Endview -Endwell -Endwood -Endymion -Enea -Energy -Energy Park -Enes -Enesco -Enfield -Enfield Church -Enfield Park -Enford -Enfrente -Engadine -Engel -Engelhard -Engelke -Engelmann Oak -Engert -Engesta -Engine -Engine House -Engineer -Engineers -England -Englands -Engle -Englefield -Englehardt -Englehart -Englehutt -Engleman -Englemere -Engler -Englert -Engleside -Englewood -Englhardt -Engliff -English -English Bay -English Chestnut -English Consul -English Hills -English Holly -English Morning -English Oak -English Oaks -English Prairie -English Rows -English Turn -Englishman -Englishtown -Englishwood -Englorie Park -Engracia -Enid -Enloe -Enlund -Enman -Enmore -Ennabrock -Ennalls -Ennals -Enneking -Ennell -Ennerdale -Ennersdale -Enness -Enning -Ennis -Ennismore -Enoch -Enochs -Enoggera -Enola -Enon -Enos -Enrica -Enrico -Enright -Ensbrook -Ensell -Ensenada -Ensfield -Ensign -Ensleigh -Enslen -Enslin -Enstone -Enstrom -Enterdent -Enterprise -Enterprise Park -Entertainment -Entin -Entomology -Entrada -Entrance -Entranda -Entrata -Entre -Entrevaux -Entry -Entwisle -Entwistle -Entwistle Hall -Enveart -Envee -Enver -Envill -Enville -Environs -Envoy -Enzenauer -Enzo -Eola -Epacris -Epaul -Ephriam -Epic -Epirus -Episcopal Hs Service -Epling -Eppard -Epping -Epping Farms -Epping Forest -Epping New -Eppirt -Epple -Eppleworth -Eppling -Epps -Epsam -Epsilon -Epsom -Epson -Epstein -Epworth -Equality -Equestrian -Equine -Equitable -Equity -Equus -Era -Erang -Erasmus -Erb Farm -Erba -Erben -Ercall -Ercama -Ercell -Ercildoune -Ercolani -Erconwald -Erebus -Eresby -Ereswell -Erhardt -Eric -Eric Clarke -Eric Cooper -Eric Felton -Eric Green -Erica -Erica Hill -Erick -Ericka -Erickson -Erico -Ericon -Ericson -Ericsons -Ericsson -Eridge -Erie -Eriff -Erik -Erika -Eriks -Erin -Erina -Erins Glen -Erins Ridge -Eriswell -Erita -Erith -Erith High -Erland -Erlandson -Erlanger -Erle Havard -Erledon -Erleigh -Erleigh Court -Erles -Erlesmere -Erlin -Erlington -Erma -Erman -Ermen -Ermina -Ermine -Ermington -Erna -Ernal -Ernald -Ernan -Ernel -Ernest -Ernesti -Ernestine -Ernie -Ernie Pyle -Ernle -Ernlouen -Ernocroft -Ernst -Ernst Chain -Ernston -Ernwood -Eros -Erpingham -Errang -Errante -Errica -Errico -Erriff -Errington -Errol -Errol Flynn -Erroll -Errwood -Erskine -Erskine Park -Erskineville -Erta -Ertle -Ertman -Ertter -Erudo -Ervilla -Erville -Ervin Industrial -Ervine -Erving -Erwin -Erwin Park -Esa -Esberg -Escalero -Escalle -Escallonia -Escalon -Escalona -Escamilla -Escanaba -Escanyo -Escatta -Eschenburg -Escher -Eschinger -Eschol -Eschol Park -Escobar -Escobita -Escolta -Escombe -Escondida -Escondido -Escondito -Escot -Escover -Escuela -Esdaile -Esek Hopkins -Esfahan -Eshald -Eshcol -Esher -Esher Green -Esher Park -Esher Place -Eshleman -Esholt -Esk -Eskdale -Eskin -Eskow -Eskridge -Esler -Eslin -Esme -Esmeralda -Esmeyer -Esmond -Esmont -Espanola -Esparito -Esparto -Espee -Esperanza -Espey -Espie -Espinosa -Esplanade -Esplande -Esplin -Esposito -Espy -Esquina -Esquire -Esquivel -Essanay -Essella -Essen -Essenay -Essenden -Essendene -Essendine -Essendon -Essenton -Esser -Essetford -Essex -Essex Center -Essex Green -Essex Hall -Essex Heights -Essex Park -Essex View -Esshire -Essian -Essie -Essiembre -Essilia -Essington -Esslog -Esta -Estabrook -Estabueno -Estacada -Estancia -Estate -Estates -Estates View -Estcots -Estcourt -Este -Este Madera -Esteban -Estee -Esteem -Estel -Estella -Estelle -Estelle Marsan -Esten -Estepa -Ester -Esterbrook -Esterbrooke -Esterlee -Esterly Oaks -Estero -Esterwood -Estes -Estey -Esther -Esthers -Estherwood -Esthwaite -Estler -Estling Lake -Estok -Eston -Estona -Estonfield -Estonia -Estrada -Estrade -Estralita -Estreham -Estrella -Estridge -Estuary -Estudillo -Esty -Esty Farm -Eswick -Esworthy -Eswyn -Eta -Etchells -Etcheverry -Etchingham -Etchingham Park -Etchison -Etela -Eternal Rings -Eternity -Etham -Ethan -Ethan Allen -Ethel -Ethel Porter -Ethelbert -Ethelburga -Ethelden -Etheldene -Etheldore -Ethell -Ethelridge -Ethelton -Etherden -Etheridge -Etherstone -Ethie -Ethier -Ethnam -Ethnard -Ethne -Ethridge -Ethrlbert -Ethronvi -Ethyl -Etloe -Etna -Eton -Eton College -Eton High -Eton Hill -Eton Manor -Eton Wick -Eton on Oxford -Etowah -Etre -Etruria -Etruscan -Etsinger -Etta -Ettalong -Ettersberg -Ettie -Ettl -Ettlesdale -Ettrick -Etuird -Etvile -Etzel -Eubank -Eubanks -Eucalyptas -Eucalyptus -Eucalyptus Knoll -Eucker -Eucla -Euclid -Eucra -Eucumbene -Eudo -Eudon -Eugene -Eugenes Prospect -Eugenia -Eugenia Park -Eulabah -Eulalia -Eulalie -Eulbertie -Eulda -Eulner -Eulow -Eunice -Eurabalong -Eurabba -Eurabbie -Euralla -Eureka -Eureka Canal -Eureka Canyon -Eurella -Eurimbla -Eurobin -Euroka -Eurolink Way Milton -Eurong -Europa -Europa Park -Europe -Euryalus -Eustace -Eustice -Eustis -Euston -Eutaw -Eutaw Forest -Euterpe -Euthella -Eva -Eva Gude -Evadna -Evaline -Evan -Evana -Evandale -Evangel -Evangeline -Evangelist -Evans -Evans Black -Evans Farm -Evans Ford -Evans Mill -Evans Pond -Evans Ridge -Evansdale -Evanston -Evanston Central -Evanston Davis -Evanston Elgin -Evanston Main -Evanstone -Evanswood -Evar -Evarts -Evas -Eve -Eveas -Eveleigh -Eveleth -Evelina -Eveline -Evelyn -Evelyn Denington -Evelyn Gingell -Evelyn Wood -Evelyns -Evemarie -Even -Evendale -Evenden -Evenfall -Evening -Evening Hill -Evening Primrose -Eveningside -Evenlode -Evens -Evensong -Evenstar -Evenston -Everard -Everberg -Everd -Everdale -Everdean -Everdell -Everell -Everendon -Everest -Everest Peak -Everett -Everett Farm -Everett Gaylord -Everett Paine -Everett School -Everette -Everglade -Everglades -Everglades Park -Evergreen -Evergreen Forest -Evergreen Mills -Evergreen Point -Evergreen Ridge -Everhill -Everilda -Evering -Everington -Everit -Everitt -Everlasting -Everleigh -Everley -Everly -Everlyn -Evermay -Evers -Eversfield -Eversholt -Evershot -Everside -Eversleigh -Eversley -Eversley Park -Eversole -Everson -Everst -Evert -Everthorpe -Everton -Everts -Everview -Everwood -Every -Evesboro -Evesham -Evesson -Eveton -Evey -Evian -Evolution -Evon -Evona -Evonne -Evonshire -Evora -Evry -Ewald -Ewan -Ewart -Ewart Dale -Ewe -Ewehurst -Ewell -Ewell Court -Ewell Downs -Ewellhurst -Ewen -Ewens -Ewenton -Ewer -Ewhurst -Ewing -Ewood -Ewrin -Ews Woods -Ewshot -Exbourne -Exbury -Excaliber -Excalibur -Excange -Exceller -Excelsior -Excelso -Exchange -Excy -Executive -Executive Park -Exedown -Exeforde -Exell -Exeter -Exeter Square -Exeter Way Pagnell -Exeter on Oxford -Exfair -Exford -Exhibition -Exira -Exit -Exley -Exmoor -Exmoor Oaks -Exmore -Exmouth -Exner -Exning -Exodus -Exon -Expando -Experiment -Exploration -Explorer -Explorers -Expo -Export -Exposition -Express -Expressway -Extension -Extension Center -Exterior -Exton -Eyam -Eycott -Eye -Eyebrook -Eyelet -Eyet -Eyhorne -Eyhurst -Eylandt -Eyles -Eyncourt -Eynella -Eynford -Eynham -Eynsford -Eynsham -Eynswood -Eyre -Eyres -Eyrie -Eyston -Eythorne -Ezel -Ezie -Ezra -Ezzy -F A Orechio -F Fernwood -F Jellman -F Leeds Infirmary -F Line -F Morley Commercial -F R -F S Mathewson -FDR -Faben -Fabens -Faber -Fabian -Fabiano -Fabien -Fabio -Fabiola -Fable -Fabor -Fabry -Fabyan -Facade -Facchina -Facel Vega -Facendini -Facet -Fackenden -Factor -Factory -Factory Mutual -Factory Pond -Factory Shops -Faculty -Fadem -Fado -Fagan -Fagen -Fagerness Point -Faggoters -Faggs -Fagin -Fagley -Fagnall -Fagundes -Fagus -Fahden -Fahey -Fahms -Fahrner -Fahy -Faigle -Faile -Failsworth -Fair -Fair Acres -Fair Briar -Fair Elms -Fair Garden -Fair Greene -Fair Haven -Fair Heights -Fair Hill -Fair Knoll -Fair Lakes -Fair Lakes Promenade -Fair Lawn -Fair Meadow -Fair Meadows -Fair Oak -Fair Oaks -Fair Play -Fair Ponds -Fair Ranch -Fair Ridge -Fair Valley -FairView -Fairacre -Fairacres -Fairbairn -Fairbank -Fairbanks -Fairbault -Fairbluff -Fairbottom -Fairbourn -Fairbourne -Fairbridge -Fairbrook -Fairbrother -Fairburn -Fairbury -Fairby -Faircastle -Fairchester -Fairchild -Fairchildes -Faircliff -Fairclough -Faircrest -Faircross -Fairdale -Fairdell -Fairdene -Faireno -Fairey -Fairfax -Fairfax Corner -Fairfax Corner West -Fairfax County -Fairfax Farms -Fairfax Hunt -Fairfax Metro -Fairfax Ridge -Fairfax Village -Fairfield -Fairfield House -Fairfield Loop -Fairfields -Fairfoot -Fairford -Fairfowl -Fairgate -Fairglen -Fairgrave -Fairgreen -Fairground -Fairgrounds -Fairgrove -Fairham -Fairhauser -Fairhaven -Fairhill -Fairhills -Fairholm -Fairholme -Fairholt -Fairhomes -Fairhope -Fairhunt -Fairhurst -Fairkytes -Fairlaine -Fairlake -Fairlamb -Fairland -Fairland Park -Fairlands -Fairlane -Fairlawn -Fairle -Fairlea -Fairlead -Fairlee -Fairleigh -Fairless -Fairlie -Fairlight -Fairlop -Fairly -Fairlyn -Fairman -Fairmans -Fairmark -Fairmead -Fairmeadow -Fairmeadows -Fairmede -Fairmile -Fairmile Park -Fairmont -Fairmont Heights -Fairmount -Fairoak -Fairoaks -Fairorchard -Fairpine -Fairport -Fairridge -Fairs -Fairseat -Fairsky -Fairstead -Fairstead Hall -Fairtown -Fairtree -Fairtrough -Fairview -Fairview Beach -Fairview Circle -Fairview Cottage -Fairview Estates -Fairview Park -Fairview Vista -Fairview Woods -Fairwater -Fairwaters -Fairway -Fairway Entrance -Fairway Glen -Fairway Hills -Fairway Knoll -Fairway Ridge -Fairway Two -Fairway View -Fairways -Fairways Edge -Fairweather -Fairwell -Fairwind -Fairwinds -Fairwood -Fairwyn -Fairy -Fairy Bank -Fairy Bower -Fairyland -Fairytale -Fairywell -Faith -Faith Baptist Church -Faithfull -Faithorn -Faithorne -Faitoute -Falaise -Falcato -Falcon -Falcon Greens -Falcon Lakes -Falcon Meadow -Falcon Park -Falcon Point -Falcon Ridge -Falcon View -Falconbridge -Falconcrest -Falcone -Falconer -Falconers -Falconwood -Falda -Faldo -Fales -Falesky -Faletto -Falfield -Falgren -Falkerners -Falkirk -Falkland -Falkland Park -Falklands -Falkner -Fall -Fall Birch -Fall Brook -Fall Creek -Fall River -Fallard -Fallbrook -Fallen Leaf -Fallen Oak -Fallen Timbers -Fallenleaf -Faller -Falleri -Fallfax -Fallgold -Fallgren -Fallibroome -Falling -Falling Brook -Falling Creek -Falling Green -Falling Leaf -Falling Run -Falling Water -Fallingtree -Fallman -Fallon -Fallow -Fallow Court -Fallow Fields -Fallowfield -Fallowfields -Falls -Falls Bridge -Falls Farm -Falls Lake -Falls Pointe -Falls Reach -Falls Run -Fallsbrook -Fallscliff -Fallsgrove -Fallston -Fallstone -Fallsway -Fallswood -Fallview -Fallwater -Fallway -Fallwind -Fallwood -Falmead -Falmer -Falmore -Falmouth -Falmouth on Oxford -Falshaw -Falson -Falstaff -Falster -Falston -Falstone -Faltings -Falulah -Falworth -Fambridge -Famet -Family -Family Acres -Family Farm -Fams -Famularo -Fan -Fanchon -Fanconi -Fancroft -Fane -Faner -Faneuff -Faneuil -Fanfair -Fanhams -Fanhams Hall -Fann -Fannen -Fanners -Fanning -Fannon -Fanny -Fano -Fanok -Fans -Fanshaw -Fanshawe -Fanshaws -Fant -Fantail -Fantasia -Fanthorpe -Fantome -Fanton Hall -Fanum -Fanwood -Fanyon -Far -Far Cromwell -Far Hill -Far Hills -Far Reach -Far Rockaway -Far Rockaway – Mott -Far View -Far Well -Far Woodseats -Fara -Faraday -Farah -Farallon -Farallone -Farallones -Faran -Faraone -Farasi -Faraway Hills -Farber -Farber Hill -Farbrook -Farcroft -Fardale -Farden -Fareham -Farel Dae -Farendon -Farese -Farewell -Farfield -Fargher -Fargo -Fargrove -Farham -Farhan -Farhill -Faria -Faribault -Faricy -Farina -Farinella -Faringdon -Faringford -Farington -Fariola -Faris -Faris Barn -Fariss -Farjeon -Farland -Farlands -Farlane -Farleigh -Farleigh Court -Farless -Farley -Farley Brook -Farley Heath -Farley Pond -Farlie -Farlington -Farlow -Farlton -Farm -Farm Bridge -Farm Bureau -Farm Credit -Farm Creek -Farm Crest -Farm Gate -Farm Glen -Farm Haven -Farm Hill -Farm Hills -Farm House -Farm Line -Farm Market -Farm Mill -Farm Pond -Farm River -Farm Trace -Farm View -Farman -Farmbridge End -Farmbrook -Farmcombe -Farmcrest -Farmdale -Farmedge -Farmer -Farmerbrook -Farmers -Farmers Cliff -Farmfield -Farmgate -Farmhaven -Farmhill -Farmhouse -Farmilo -Farmin -Farmingdale -Farmingham -Farmington -Farmington Creek -Farmington Lakes -Farmland -Farms -Farmside -Farmstead -Farmview -Farmwell -Farmwood -Farnaby -Farnam -Farnan -Farnborn -Farnborough -Farncombe -Farndale -Farndon -Farne -Farnell -Farnes -Farnesdown -Farness -Farney -Farnham -Farnham Park -Farningham -Farningham Hill -Farnley -Farnol -Farnsworth -Farnum -Farnworth -Faro -Faroe -Farquhar -Farquharson -Farr -Farr Ranch -Farrabow -Farraday -Farragot -Farragut -Farrahs Calvary -Farran -Farrance -Farrand -Farrandale -Farrant -Farrar -Farrar Farm -Farrara -Farrari -Farravet -Farrcroft -Farrel -Farrell -Farrells -Farrelly -Farrellys -Farren -Farrer -Farrier -Farrier Point -Farriers -Farringdon -Farringdon Service -Farrington -Farris -Farrol -Farrow -Farrowdene -Farrs -Farrwood -Farside -Fartherwell -Farthing -Farthing Green -Farthing Park -Farthingale -Farthingham -Fartown Bankhouse -Fartown Hillthorpe -Farver -Farview -Farvue -Farwell -Farwood -Fashion -Fashion Island -Fashoda -Fassett -Fassetts -Fassler -Fast -Fastnet -Father Burns -Father Capodanno -Father Carney -Father Hayes -Father Herlihy -Father Hurley -Father Morissette -Father Urban -Father White -Fatherson -Fathke -Fathom -Fatima -Fattoria -Faubert -Fauce -Faucett -Fauchons -Fauconberg -Faught -Faulds -Faulk -Faulkbourne -Faulkenhurst -Faulkner -Faulkner Hill -Faulkners -Faun Bar -Fauna -Faunce -Faunes -Fauquier -Faust -Faustina -Fauvel -Faux -Fava -Favart -Favell -Faverolle -Faversham -Favonia -Favor -Favorite -Favre -Favre Ridge -Fawborough -Fawcett -Fawe -Fawe Park -Fawell -Fawhelm -Fawkes -Fawkham -Fawkham Green -Fawley -Fawley Bottom -Fawn -Fawn Creek -Fawn Crossing -Fawn Glen -Fawn Hill -Fawn Hollow -Fawn Lake -Fawn Meadow -Fawn Park -Fawn Ridge -Fawn Trail -Fawn Wood -Fawnbrake -Fawnbrook -Fawncrest -Fawndale -Fawnhill -Fawnridge -Fawsett -Faxfield -Faxon -Faxon Park -Faxton -Fay -Fay Mountain -Fay Ranch -Fay Rotenberg -Fayann -Faye -Faye Memorial -Faye Park -Fayerweather -Fayette -Fayetteville -Faygate -Fayland -Fayrewood -Fays -Fayson Lake -Fayston -Faywood -Fazio -Fe Carter -Feafel -Fearing -Fearless -Fearn -Fearnhead -Fearnley -Fearns -Fearnville -Fearnville Dib -Fearon -Feather -Feather Bed -Feather Creek -Feather River -Feather Rock -Feather Sound -Featherbank -Featherbed -Featherby -Feathercombe -Featherleigh -Featherock -Feathers -Featherstall -Featherston -Featherstone -Featherwood -Featley -Feature -February -Fechet -Fechter -Fed Ex -Federal -Federal Eagle -Federal Hill -Federal Signal -Federal Systems Park -Federalist -Federation -Federspiel -Fedor -Fedore -Fedrick Ranch -Fedsco -Fee -Fee Farm -Feece -Feeches -Feeder -Feedranchs -Feehanville -Feeks -Feeley -Feeney -Feeny -Fegan -Fehler -Fehon -Fehren -Feickert -Feinberg -Fela -Felbridge -Felbrigg Hall -Felbrigge -Felch -Felcot -Felcott -Felcourt -Feld -Felday -Felden -Felder -Felderland -Feldin -Feldmeyer -Feldmeyers -Feldom -Feldon -Feldott -Feldspar -Felhampton -Felice -Felicia -Felicidad -Felipe -Felix -Felixtowe -Feliz -Felker -Fell -Fella -Fellbrigg -Fellemore -Feller -Fellers -Fellner -Fellow Green -Fellowes -Fellows -Fellowship -Fellpark -Fells -Fells Manor -Fellscrest -Fellsmere -Fellsview -Fellsway -Fellsway W opp. Elm -Fellswood -Felltop -Felmersham -Felmingham -Fels Farm -Felsberg -Felsham -Felskirk -Felspa -Felstead -Felsted -Felsview -Felt -Felta -Felten -Felter -Feltes -Feltham -Feltham Hill -Felthorpe -Feltl -Felton -Felton Empire -Felton Quarry -Feltz -Felwood -Femia -Femleaf -Femoyer -Fen -Fen Pond -Fenbrook -Fence -Fencegate -Fenceline -Fencepose -Fenchurch -Fencl -Fencourt -Fencsak -Fendale -Fendall -Fendant -Fender -Fendyke -Fenelon -Fenemore -Fengates -Fenham -Fenian -Fenimore -Fenley -Fenlon -Fenmere -Fenmore -Fenn -Fennel -Fennell -Fennels -Fennels Farm -Fenner -Fenner Grant -Fennes -Fennfields -Fenning -Fenno -Fenns -Fenny -Fennycroft -Fenor -Fensalir -Fensmere -Fensome -Fenstanton -Fensview -Fentem -Fenton -Fenton Wood -Fentree -Fentress -Fentum -Fenview -Fenway -Fenwick -Fenwood -Fenworth -Fenz -Feramin -Ferber -Ferbusson -Ferdinand -Ferdinand Day -Ferdon -Fergerson -Fergus -Ferguson -Fergusson -Feri -Ferigo -Ferland -Ferme Park -Fermer -Fermery -Fermi -Fermo -Fermont -Fermor -Fermoy -Fermoy Heights -Fern -Fern Bank -Fern Canyon -Fern Creek -Fern Dell -Fern Hill -Fern Hollow -Fern Lea -Fern Leaf -Fern Park -Fern Ridge -Fern River -Fern Valley -Fernald -Fernally -Fernandes -Fernandez -Fernando -Fernbank -Fernbanks -Fernberry -Fernboro -Fernbray -Fernbrook -Ferncliff -Ferncliffe -Fernclough -Ferncote -Ferncourt -Ferncroft -Ferndale -Ferndale Hilbert -Ferndale Woods -Ferndell -Fernden -Ferndene -Ferndown -Ferne -Fernedge -Ferney -Ferney Field -Ferneydale -Fernfield -Ferngate -Fernglade -Fernglen -Ferngrove -Fernhall -Fernham -Fernhead -Fernhill -Fernhoff -Fernhollow -Fernholme -Fernhurst -Fernhust -Fernie -Fernish -Fernlea -Fernleaf -Fernleigh -Fernley -Fernmont -Fernote -Fernridge -Ferns -Fernsbury -Fernshaw -Fernshire -Fernside -Fernthorpe -Ferntower -Ferntree -Fernvale -Fernview -Fernville -Fernwald -Fernwood -Fero -Ferol -Feronia -Ferrabetta -Ferran -Ferrara -Ferrari -Ferrari Creek -Ferraris -Ferraro -Ferrecchia -Ferreira -Ferrelo -Ferren -Ferrera -Ferrero -Ferrers -Ferrestone -Ferri -Ferrier -Ferrin -Ferris -Ferriter -Ferro -Ferron -Ferry -Ferry Crossing Point -Ferry Farms -Ferry Hill -Ferry Landing -Ferry Line -Ferry Point -Ferrybridge -Ferryhill -Ferrymead -Ferryville -Ferson Creek -Ferson Woods -Fertada -Fertado -Fertelli -Fertiledale -Feruzza -Ferwood -Feryby -Fescue -Fessenden -Fessenden Hill -Fesseneva -Fessler -Festa -Festa Agilio -Festal -Festival -Fetcham Common -Fetcham Park -Fetherston -Fetlock -Fetter -Fetterly -Fetters -Fettes -Fetyko -Fetz -Fetzer -Feustal -Fever -Fewings -Fewston -Fewtrell -Fey -Ff -Ffinch -Fiarway -Fiat -Fibich -Ficarelle -Fichter -Fiday -Fiddens Wharf -Fiddicroft -Fiddle -Fiddlebridge -Fiddler -Fiddlers -Fiddlers Green -Fiddlers Green Spur -Fiddlers Hill -Fiddlesticks -Fiddyment -Fidler -Fiedler -Field -Field Common -Field Crest -Field Daisy -Field Encampment -Field End -Field Gate -Field Head -Field House -Field Lark -Field Master -Field Mill -Field Office -Field Point -Field Pond -Field Vale -Field View -Field Way Hill -Field of Mars -Fieldale -Fieldbank -Fieldbrook -Fieldcommon -Fieldcreek -Fieldcrest -Fielden -Fieldend -Fielder -Fieldfair -Fieldfare -Fieldgate -Fieldhead -Fieldhead Longwood -Fieldhouse -Fielding -Fieldings -Fieldmere -Fieldmont -Fieldpoint -Fields -Fields Brigade -Fields Crown Farm -Fields End -Fields Farm -Fields First Federal -Fields New -Fields Pond -Fieldsend -Fieldside -Fieldsman -Fieldston -Fieldstone -Fieldthorn -Fieldvale -Fieldview -Fieldway -Fieldway Lodge -Fieldwood -Fieldwork -Fiene -Fierro -Fiesta -Fife -Fifer -Fifers -Fifield -Fifteenth -Fifth -Fifth Cross -Fig -Fig Tree -Figard -Figg -Figges -Figone -Figtree -Figueroa -Figura -Figurea -Figurehead -Fiji -Fike -Filament -Filante -Filarete -Filbert -Filbro -Filby -Filer -Filey -Filice -Filip -Filipe -Filkins -Fillat -Fille -Fillebrook -Fillets Farm -Filley -Fillingame -Fillingfir -Fillion -Fillippelli -Fillmer -Fillmore -Filly -Filmer -Filmore -Filmorehill -Filomena -Filston -Filter Bed -Filter Plant -Filterbed -Finborough -Fincastle -Finch -Finchale -Fincham End -Finchampstead -Fincharn -Finchdale -Finches -Finchleigh -Finchley -Finchmead -Finck -Finden -Finders -Findhorn -Findland -Findlay -Findlays -Findley -Findon -Fine -Fine Bush -Fine Farms -Fingal -Finger -Fingerboard -Fingest -Finghall -Fingrith Hall -Finian -Finings -Finisterre -Fink -Finkbohner -Finkelstein -Finkin -Finkle -Finland -Finlandia -Finlaw -Finlay -Finlays -Finlayson -Finley -Finley Ridge -Finlow Hill -Finmor -Finn -Finn Farm -Finn S -Finnamore -Finnegan -Finnell -Finney -Finnie -Finnigan -Finningley -Finnis -Finns -Finnway -Finny Bank -Finnymore -Finrud -Finsbury -Finsbury Park -Finsbury Park Rock -Finschhafen -Finsen -Finster -Finstock -Fintonagh -Fintry -Finucane -Finway -Finwell -Fiona -Fiord -Fiore -Fiorello -Fiorenza -Fiori -Fir -Fir Bank -Fir Cottage -Fir Grange -Fir Ridge -Fir Toll -Fir Tree -Firacre -Firbank -Firbeck -Fircrest -Fircroft -Firdale -Fire -Fire Academy -Fire Access -Fire Barn -Fire Fly -Fire House -Fire Island -Fire Poppy -Fire Rock -Fire Science -Fireball -Firebird -Firebrand -Firebrick -Firecrest -Firecut -Firefly -Firefly Hill -Fireglow -Firehouse -Firelight -Firemans Memorial -Firenza -Firenze -Fireplace -Fireside -Firestone -Firethorn -Firethorne -Firetrail -Firfield -Firglade -Firgrove -Firham Park -Firhaven -Firlands -Firloch -Firma -Firmin -Firmingers -Firs -Firs Park -Firs View -Firsby -Firsgrove -First -First Cross -First Farm -First Fleet -First Fork -First Oak -First Parish -First Summer -Firstfield -Firstore -Firswood -Firth -Firth Knoll -Firth of Tae -Firthcliffe -Firtree -Firtree Park -Firvale -Firview -Firwood -Firwoods -Firzen -Fiscal -Fischer -Fischrupp -Fish -Fish Brook -Fish Farm -Fish Gultch Fire -Fish Hawk -Fish House -Fish Point -Fish Ranch -Fishback -Fishbourne -Fishburn -Fishburne -Fishel -Fisher -Fisher Crescent -Fisher Hawk -Fisher Hill -Fisher Woods -Fisherfield -Fisherman -Fishermans -Fishermore -Fishers -Fisherton -Fishery -Fishing -Fishing Creek -Fishing Point -Fishkill -Fishmarket -Fishpool -Fishtorn -Fishwick -Fisk -Fisk Mill -Fiske -Fiske Mill -Fiske Pond -Fiskeville -Fistelera Ridge -Fistor -Fistral -Fitch -Fitch Farm -Fitch Hill -Fitch View -Fitchburg -Fitchdale -Fitchett -Fitchome -Fitchs Bridge -Fittleworth -Fitton -Fitton Hill -Fitz -Fitzalan -Fitzallen -Fitzer -Fitzgeorge -Fitzgerald -Fitzgibbon -Fitzgilbert -Fitzhardinge -Fitzhenry -Fitzherbert -Fitzhugh -Fitzilian -Fitzjames -Fitzjohn -Fitzjohns -Fitzmaurice -Fitzneal -Fitzoatrick -Fitzpatrick -Fitzrandolph -Fitzroy -Fitzsimmons -Fitzsimons -Fitzstephen -Fitzuren -Fitzwalter -Fitzwarren -Fitzwater -Fitzwilliam -Fiume -Five Acres -Five Ash -Five Bells -Five Canyons -Five Elms -Five Fields -Five Forks -Five Gates -Five Hawks -Five Island -Five Mile -Five Mile River -Five Oak -Five Oak Green -Five Oaks -Five Points -Five Wounds -Fiveash -Fiveways -Fjord -Flack -Fladbury -Fladgate -Flag -Flag City -Flag Day -Flag Harbor -Flag Hill -Flagcroft -Flagg -Flagg Creek -Flagg Hill -Flagg Wood -Flagger -Flaggler -Flagler -Flagmaker -Flagpole -Flagship -Flagstaff -Flagstone -Flaherty -Flake -Flaker -Flam -Flambard -Flambeau -Flamborough -Flame -Flame Tree -Flames -Flamewood -Flaming Arrow -Flaming Oak -Flamingo -Flamm Brook -Flamstead -Flamstead End -Flamsteadbury -Flamsted -Flamsteed -Flanagan -Flanagan Hill -Flanders -Flandrau -Flandreau -Flanigan -Flank -Flannel -Flannery -Flapjack -Flapper Fold -Flash -Flasner -Flass -Flat -Flat Hill -Flat Iron -Flat Meadow -Flat Rock -Flatback -Flatboat -Flatbush -Flater -Flatfield -Flatlands -Flatley -Flats -Flatts -Flatwood -Flaumont -Flaunden -Flavel -Flavell -Flavelle -Flavia -Flavius -Flax -Flax Hill -Flax Place The -Flax Pond -Flaxberry -Flaxcroft -Flaxen -Flaxfield -Flaxley -Flaxman -Flaxpond -Flaxton -Flaxwood -Flay -Fleabane -Fleagle -Fleece -Fleece Flower -Fleeming -Fleenor -Fleeson -Fleet -Fleet Thro -Fleethall -Fleets Cove -Fleets Point -Fleetwood -Fleishacker -Fleming -Fleming Hill -Flemings -Flemings Farm -Flemington -Flemingwood -Flemish -Flemming -Flemons -Flempton -Flers -Fletchall -Fletcher -Fletcher Farms -Fletcher Fold -Fletcher Hill -Fletchers -Fletchertown -Fletching -Fletsand -Flett -Fletton -Fleuette -Fleur De Lis -Fleur de Lis -Fleurbaix -Fleurs -Fleuti -Flewing -Flexbury -Flexford -Flexmere -Flichcroft -Flicker -Flickinger -Flide -Flight -Flight Crew -Flightime -Flightline -Flinders -Flinn -Flint -Flint Creek -Flint Farm -Flint Hill -Flint Lee -Flint Licke -Flint Locke -Flint Meadow -Flint Pond -Flint Rock -Flintcrest -Flintdale -Flintfeet -Flintfield -Flinthaven -Flintlock -Flintlocke -Flintlocke Ridge -Flintmont -Flinton -Flintonbridge -Flintridge -Flintrock -Flints Grove -Flintshire -Flintstone -Flintwood -Flitch -Flitt -Flitterbrook -Flittogate -Flitwick -Flixton -Flo -Float -Floating Leaf -Floatshall -Flock -Flockton -Flodden -Flomar -Flonun -Flood -Flood Spring -Flor -Flora -Flora Lee -Flora Linda -Flora Vista -Florabelle -Floradale -Floradora -Floral -Floral Park -Florales -Florance -Florek -Florence -Florence Park -Florencia -Florentia -Florentine -Flores -Floresta -Florey -Florfield -Florgate -Florham -Florian -Floribel -Floribuna -Floribunda -Florida -Florida Grove -Florido -Florimond -Florin -Florin Mall -Florin Perkins -Florin Wood -Florinda -Florine -Florio -Floris -Florissant -Florist -Floriston -Florita -Floritta -Florrie -Florsheim -Flory -Flosden -Floss -Flossie -Flossmoor -Flour Mill -Flournoy -Flow -Flower -Flower Blossom -Flower Garden -Flower Hill -Flower Valley -Flowerdale -Flowerden -Flowerfield -Flowering Cherry -Flowering Dogwood -Flowering Meadow -Flowering Pear -Flowering Plum -Flowering Tree -Flowermeadow -Flowerree -Flowers -Flowers Bottom -Flowerstone -Flowerwood -Flowing Well -Floyd -Floyd Brown -Floyd Hill -Floyds -Floyer -Fludyer -Fluid Power -Flume -Fluorine -Flurry -Flushcombe -Flushing -Flushing Hills -Flushing Pond -Fly Cloud -Flyaway Pond -Flyboat -Flying Cloud -Flying Fields -Flying Fish -Flying Mist -Flynn -Flynt -Flyway -Foal -Foam -Foamcrest -Fobbing -Fobney -Foch -Focha -Foden -Foerster -Fog -Fog Bank -Fogarty -Fogel -Fogelman -Fogg -Foggs -Foggy -Foggy Glen -Foghorn -Fogle -Fogo -Fokard -Foksville -Folcroft -Fold -Folders -Foldi -Folds -Foleshill -Foley -Foley Beach -Folger -Foliage -Folin -Folini -Foliot -Folk -Folkers -Folkes -Folkeston -Folkestone -Folkingham -Folkstone -Folland -Folle Blanche -Follen -Follet -Follett -Follette -Follin Farm -Follows -Folly -Folly Hall -Folly Hill -Folly Mill -Folly Orchard -Folly Pond -Follyfield -Folsom -Folsom Dam -Folsom Prison -Folsom Ranch -Foltz -Folwell -Fonblanque -Fonda -Fondant -Fondell -Fondiller -Foneswood -Fong -Fonick -Font -Font Hill -Fontainbleau -Fontainbleu -Fontaine -Fontainebleau Park -Fontana -Fontanelle -Fontanoso -Fontarabia -Fontayne -Fontenay -Fontenbleau -Fontenoy -Fontes -Fonthill -Fonti -Fontonett -Fontridge -Fontron -Fontwell -Food Center -Foodlink -Foodmart -Foolish Pleasure -Foord -Foot Hill -Foot of Bridgehead -Football -Footbury Hill -Foote -Foote Ranch -Footes -Foothill -Foothill Glen -Foothill Knolls -Foothill Oaks -Foothill Ranch -Foothill Vista -Foothills -Footpath -Foots Cray -Foots Cray High -Footscray -For Glen -Foran -Foray -Forbell -Forbes -Forbes Creek -Forbes Glen -Forbes Hill -Forbs -Forburg -Forbury -Forbush -Forbush Mill -Force -Force Green -Force Hill -Force Tube -Forcum -Ford -Ford Branch -Ford Hill -Ford Manor -Fordal -Fordbank -Fordbridge -Fordcombe -Fordcroft -Forde -Fordel -Fordham -Fordhook -Fordington -Fords -Fords Park -Fordson -Fordville -Fordway -Fordwells -Fordwich -Fordwych -Fordyce -Fordyke -Fore -Fore River -Forebury -Foregate -Foreland -Forelands -Foreman -Foremost Mountain -Forenza -Forepaugh -Foresdt -Forest -Forest Arms -Forest Beach -Forest Brook -Forest Cove -Forest Creek -Forest Crest -Forest Cross -Forest Dale -Forest Dell -Forest Edge -Forest End -Forest Farm -Forest Garden -Forest Gate -Forest Gate Green -Forest Glen -Forest Green -Forest Grove -Forest Hall -Forest Haven -Forest Hill -Forest Hills -Forest Hills Entrance -Forest Hollow -Forest Knoll -Forest Knolls -Forest Lake -Forest Lake Service -Forest Lawn -Forest Manor -Forest Meadow -Forest Mews -Forest Mill -Forest Mist -Forest Mount -Forest Oak -Forest Off Chesnut -Forest Park -Forest Prairie -Forest Preserve -Forest Ridge -Forest Run -Forest Side -Forest Spring -Forest Trail -Forest View -Forest Villa -Forest Walk -Forest Wood -Forest Woods -Forestburg -Forestdale -Forestedge -Forester -Foresters -Forestgrove -Foresthill -Forestlake -Foreston -Forestside -Forestvale -Forestview -Forestville -Forestville Meadows -Forestway -Forestwood -Forfar -Forge -Forge Bridge -Forge Hill -Forge Village -Forges -Forget Me Not -Forgetts -Forgewood -Forgotten Flower -Forgue -Fork -Forked Creek -Forkey -Forkland -Forlease -Forley -Forli -Forman -Formans Barn -Formby -Former Peter Brock -Formosa -Formosa Ridge -Formosana -Formschlag -Fornasier -Fornelius -Forner -Forni -Forrest -Forrest Hill -Forrest Lake -Forrest Maple -Forrest Preserve -Forrest View -Forrestal -Forrester -Forrester Hill -Forresters -Forris -Forsberg -Forset -Forsgate -Forsham -Forsham Lake -Forshaw -Forslin -Forslund -Forsman -Forstal -Forster -Forston -Forsum -Forsyth -Forsythe -Forsythia -Fort -Fort Ann -Fort Apache -Fort Armistead -Fort Baker -Fort Beggs -Fort Corloran -Fort Craig -Fort Dearborn -Fort Donelson -Fort Dupont -Fort Farnsworth -Fort Foote -Fort Funston -Fort George -Fort Hamilton -Fort Hill -Fort Howard Park -Fort Hunt -Fort Independence -Fort Johnson -Fort Johnston -Fort Laramie -Fort Lee -Fort Lyon -Fort Meade -Fort Meadow -Fort Niagara -Fort Pitt -Fort Point -Fort Pond -Fort Pond Hill -Fort Pond Inn -Fort Ross -Fort Salonga -Fort Sheridan -Fort Slocum -Fort Smallwood -Fort Sumner -Fort Sumter -Fort Washington -Fort Worth -Forte -Forte Memorial -Fortescue -Fortesque -Fortess -Fortfield -Forth -Forth Bridge -Forthill -Fortier -Fortier Lookout -Fortin -Fortini -Fortis Green -Fortismere -Fortna -Fortnam -Fortner -Forton -Fortril -Fortside -Fortuna -Fortunato -Fortune -Fortunegate -Forty -Forty Acre -Forty Acres -Forty Foot -Forty Green -Forty Oaks -Fortyacre -Forum -Forward -Forwood -Fosbak -Fosbrook -Foscarn -Foscote -Fosgate -Foskett -Foss -Foss Hill -Fossdale -Fossdene -Fosse -Fossen -Fossetts -Fossgill -Fossil -Fossil Ridge -Fosswood -Fostall -Fosten -Foster -Foster City -Foster Clarke -Foster Pond -Fostern -Fosters -Fostones -Fothergill -Fotheringham -Fotherley -Fottler -Foucart -Foulden -Foulds -Foulger -Foulks Ranch -Foulser -Foulsham -Founceley -Foundary -Founders -Founders Field -Founders Hill -Founders Mill -Founders Pointe -Founders Ridge -Founders Way -Foundry -Foundry MIll -Foundry Mill -Fount -Fountain -Fountain Circle -Fountain Club -Fountain Green -Fountain Grove -Fountain Head -Fountain Hills -Fountain Oaks -Fountain Park -Fountain Springs -Fountain Square -Fountain Valley -Fountain View -Fountainbleau -Fountaine -Fountaingrove -Fountainhead -Fountainhead Access -Fountains -Fountainside -Fountainview -Fountayne -Four Acre -Four Acres -Four Bridges -Four Chimney -Four Corners -Four Elms -Four Lakes -Four Leaf Clover -Four Mile -Four Oaks -Four Penny -Four Seasons -Four Wents -Four Winds -Fouracres -Fouratt -Fourier -Fourness -Fournier -Foursome -FourtFour Peter -Fourteen Mile -Fourteenth -Fourth -Fourth Cross -Fourwents -Foust -Fouth -Foveaux -Fowey -Fowke -Fowle -Fowler -Fowler Creek -Fowlers -Fownes -Fownhope -Fox -Fox Beach -Fox Bend -Fox Bluff -Fox Bow -Fox Burrow -Fox Burrows -Fox Chapel -Fox Chase -Fox Creek -Fox Cross -Fox Den -Fox Farm -Fox Fern -Fox Fire -Fox Forest -Fox Gate -Fox Glen -Fox Glove -Fox Grape -Fox Grove -Fox Harbor -Fox Harrow -Fox Haven -Fox Hedge -Fox Hill -Fox Hills -Fox Hollow -Fox Hollow Ridings -Fox Hound -Fox House -Fox Hunt -Fox Island -Fox Lair -Fox Lake -Fox Ledge -Fox Meadow -Fox Mill -Fox Mill Manor -Fox Mine -Fox Park -Fox Path -Fox Platt -Fox Plaza -Fox Point -Fox Pointe -Fox Rest -Fox Ridge -Fox Ripple -Fox River -Fox Run -Fox Shadow -Fox Shores -Fox Sparrow -Fox Tail -Fox Trail -Fox Trot -Fox Valley -Fox Valley Center -Fox View -Fox Vine -Fox Wilds -Fox Wood -Fox Woods -Foxall -Foxbay -Foxbeach -Foxberry -Foxberry Farms -Foxboro -Foxborough -Foxborough Hill -Foxbourne -Foxbridge -Foxburrows -Foxbury -Foxchase -Foxclove -Foxcombe -Foxcovert -Foxcreek -Foxcroft -Foxdale -Foxdells -Foxden -Foxdenton -Foxearth -Foxenden -Foxendown -Foxes -Foxfarm -Foxfield -Foxfields -Foxfire -Foxford -Foxgate -Foxglen -Foxglove -Foxgrape -Foxgrove -Foxhall -Foxhall Farm -Foxhall Manor -Foxham -Foxhays -Foxhead Manor -Foxhill -Foxhills -Foxhole -Foxholes -Foxhollow -Foxholm -Foxhound -Foxhunt -Foxhurst -Foxlair -Foxlake -Foxland -Foxlands -Foxley -Foxline -Foxlow -Foxmanor -Foxmeadow -Foxmoor -Foxmore -Foxon -Foxpoint -Foxridge -Foxs -Foxspring -Foxstone -Foxstones -Foxswallow -Foxtail -Foxton -Foxtrap -Foxtree -Foxtrot -Foxvale -Foxview -Foxwell -Foxwell Bend -Foxwood -Foxwoods -Foxworth -Foxworthy -Foy -Foye -Foyer -Foyette -Foyle -Fr -Fraatz -Frace -Fradkin -Fraga -Fragar -Fragrance -Fraint -Frairy -Fraiser -Fraley -Fraley Farm -Fram -Framar -Frambury -Frame -Framewood -Framfield -Framingdale -Framingham -Framley -Framlingham -Frampton -Frampton Park -Fran -Fran del -Francavilla -France -Franceen -Francemary -Francemont -Frances -Frances Green -Frances Hill -Frances McCormick -Francesca -Francessca -Franche Court -Franchise -Francine -Francis -Francis Crick -Francis Greenway -Francis J. Mcgrath -Francis Kelley -Francis Kelly -Francis Lewis -Francis Scott Key -Francis Short -Francis West -Francis Wyman -Franciscan -Francisco -Francisco Villa -Franck -Franclaire -Franco -Franconia -Franconia Commons -Franconia Forest -Frandsen -Franela -Franey -Frangipani -Franich -Frank -Frank Beames -Frank Brown -Frank Cox -Frank D Tanner -Frank E Rodgers -Frank Lloyd Wright -Frank McCue -Frank Oliveri -Frank Scott -Frank Tippett -Frank Turk -Frank W Burr -Frank Woolley -Frankay -Franke -Frankel -Frankford -Frankfort -Frankfort Square -Frankfurst -Frankfurt -Frankham -Frankie -Frankiln -Franklach -Frankland -Franklands -Frankle -Franklin -Franklin Canyon -Franklin Corner -Franklin Farm -Franklin Fox -Franklin Fr -Franklin Gibson -Franklin High -Franklin Hill -Franklin Hills -Franklin Lake -Franklin Manor -Franklin Oaks -Franklin Park -Franklin Park Service -Franklin Spring -Franklyn -Franklynn -Franko -Franks -Franks Valley -Frankson -Frankstowne -Frankswood -Frankton -Frankwood -Franlee -Franlo -Franmar -Franmil -Franquette -Franrose -Franscella -Fransean -Fransen -Fransioli -Franston -Frant -Franton -Frantz -Franusich -Franwall -Franz -Franz Valley -Franz Valley School -Franzen -Franzman -Frascatti -Frasco -Frase -Fraser -Frasinetti -Fraternal -Fraternity -Fraters -Frates -Frati -Fratis -Frattalone -Frauenfield -Fravel -Frawley -Fray -Frayne -Frays -Frazee -Frazer -Frazier -Frazier Lake -Frazier Lewis -Frean -Frear -Freas -Freathy -Freca -Frechette -Freckleton -Fred -Fred Allen -Fred Davis -Fred Russo -Fred Smith -Fred Wehran -Fred Wonran -Freda -Fredale -Fredana -Fredben -Fredbert -Freddie -Freddy -Frede -Fredela -Fredereickburg -Frederic -Frederica -Frederick -Frederick Douglas -Frederick Douglass -Frederick Sanger -Fredericks -Fredericksburg -Frederickson -Frederika -Frederiksen -Fredette -Fredi -Fredith -Fredon -Fredonia -Fredonian -Fredric -Fredrick -Fredricks -Fredrickson -Freds Oak -Fredson -Free -Free Green -Free Heath -Free Prae -Freeboard -Freeborn -Freebournes -Freedman -Freedom -Freedom Center -Freedom Farme -Freedom Park -Freedown -Freegrove -Freehauf -Freehaven -Freehill -Freehollow -Freeks -Freeland -Freeling -Freelon -Freeman -Freeman Shores -Freemans -Freemantle -Freemark -Freemasons -Freemont -Freeport -Freer -Freesia -Freestate -Freeston -Freestone -Freestone Flat -Freestone Ranch -Freestone Valley Ford -Freetown -Freetrade -Freeway -Freewood -Freezeout -Frei -Frei Bros Winery -Frei Ranch -Freight -Freisman -Freitas -Freke -Frelinghuysen -Freman -Fremantle -Fremlin -Fremlins -Fremont -Fremont Pines -Fremontia -French -French Barn -French Camp -French Creek -French Ford -French Hill -French Horn -French Lake -French Oaks -French Ranch Fire -French Trace -Frencham -Frenches -Frenchmans -Frenchmans Bend -Frenchmans Creek -Frenchmens -Frenchs -Frenchs Forest -Frendsbury -Freneau -Frensham -Frensham Heights -Frensham Vale -Frere -Freres -Fresa -Fresca -Fresco -Fresh Meadow -Fresh Meadows -Fresh Mill -Fresh Pond -Fresh Ponds -Fresh River -Fresh Wharf -Freshaire -Freshes -Freshfield -Freshfields -Freshford -Freshland -Freshwater -Freshwell -Freshwood -Fresno -Fresson -Freston -Freswick -Freta -Fretherne -Freud -Freund -Frewert -Frewin -Frewland -Frey -Freya -Freyman -Friar -Friar Tuck -Friarmere -Friars -Friars Place -Friary -Friberg -Fribourg -Frick -Fricourt -Frida -Friday -Fridays -Friden -Fridley -Frieda -Friedberg -Friedel -Friedland -Friedlund -Friedrich -Frieh -Friend -Friendless -Friendly -Friendlywood -Friends -Friends Choice -Friends House -Friendship -Frienza -Friern Watch -Friesen -Friesian -Frieston -Frieth -Friezland -Friezley -Frigate -Frigatebird -Frilsham -Frimley -Frimley Close Dunley -Frimley Green -Frimley Hall -Frimley High -Frindsbury -Fringe Tree -Frink -Frinsted -Frinton -Fripp -Frisbie -Frisby -Frisch -Frisco -Frisk -Friston -Fritch Creek -Frith -Frith End -Frith Hill -Friths -Frithwald -Frithwood -Fritsch -Frittenden -Fritz -Fritzen -Frizell -Frizlands -Froberg -Frobisher -Frodsham -Froehlich Farm -Froelich -Frog -Frog Grove -Frog Hall -Frog Pond -Froggy -Froghall -Froghole -Frogley -Frogmoor -Frogmore -Frogmore Park -Frognal -Frogs -Frogs Hall -Frogs Hole -Frogs Leap -Frohling -Froissart -Frolich -From -Fromandez -Frome -Fromelles -Fromer -Fromondes -Fromwich -Fronda -Frongillo Farm -Front -Front Field -Front Royal -Frontage -Frontana -Frontenac -Frontera -Frontero -Frontier -Frontier Trail -Frontignan -Frost -Frost Creek -Frost Lake -Frost Mill -Frost Pond -Frost Valley -Frostleaf -Frostwood -Frosty -Frothingham -Froude -Froxfield -Froxmer -Froyd -Froyle -Fruen -Fruit -Fruit Barn -Fruitdale -Fruitland -Fruitledge -Fruitridge -Fruitvale -Fruitwood -Frum -Frustuck -Fry -Frye -Frye Creek -Fryer -Fryer Creek -Fryerning -Fryers -Frying Pan -Frylands -Frymans -Fryston -Fteley -Fuchia -Fuchsia -Fuel Break -Fuel Farm -Fuente -Fuente de Paz -Fugelmere -Fugere -Fugett -Fuggle -Fuggles -Fuhrman -Fujiko -Fujita -Fujiyama -Fulbeck -Fulbert -Fulbourne -Fulbright -Fulbrook -Fulcher -Fulda -Fulford -Fulham -Fulham High -Fulham Palace -Fulham Park -Fulkerson -Fulks Corner -Fulks Farm -Full View -Fullagar -Fullam -Fullbrook -Fullbrooks -Fulle -Fuller -Fuller Brook -Fuller Creek -Fuller Heights -Fuller Mount -Fullerbrook -Fullers -Fullers Farm -Fullerton -Fullham -Fulling -Fulling Mill -Fullington -Fullwell -Fulmar -Fulmead -Fulmer -Fulmer Common -Fulmor -Fulready -Fulshaw -Fulthorp -Fulton -Fulton Shipyard -Fulton Square -Fulwell -Fulwell Park -Fulwich -Fulwood -Fumasi -Fumay -Fumia -Fun -Fundus -Funke -Funston -Furbarn -Furber -Furbush -Furci -Furey -Furler -Furley -Furlong -Furlongs -Furmage -Furman -Furmanville -Furnace -Furnace Brook -Furnace Colony -Furnace Farm -Furnace Hill -Furnace Mountain -Furnari Farm -Furnedge -Furner -Furness -Furnival -Furnlea -Furrells -Furrow -Fursby -Furse -Fursorb -Furth -Further -Further Green -Furtherwick -Furtherwood -Furwood -Fury -Furze -Furze Bushes -Furze Hill -Furze Platt -Furze Vale -Furzedown -Furzefield -Furzeham -Furzehill -Furzen -Fuschia -Fusden -Futuna -Futura -Fuyatt -Fyall -Fycke -Fye Foot -Fyfe -Fyffe -Fyfield -Fyke -Fyke Hollow -Fylde -Fyne -Fynes -Fyrbeck -Fysh -Fysie -G Commercial -G Fernwood -G Hall -G K -G Leeds Infirmary -G Line -G Petersen -GEOINT -GSK Fourth -Gaage -Gabby -Gabel -Gabeli -Gabes Rock -Gabilan -Gabirol -Gable -Gable Ridge -Gables -Gabriel -Gabriele -Gabriella -Gabrielle -Gabrus -Gaby -Gadara -Gadbridge -Gadbrook -Gadbury -Gadby -Gaddesden -Gaddi -Gaddini -Gaddum -Gaddy -Gade -Gadebridge -Gadesden -Gadeview -Gadigal -Gading -Gadley -Gadmore -Gadoury -Gads Hill -Gadsby -Gadsden -Gadsen -Gadwall -Gadwell -Gae Wood -Gael -Gaerloch -Gaffery -Gaffey -Gaffney -Gafford -Gafzelle -Gaga -Gagas -Gage -Gager -Gaggin -Gagne -Gagnon -Gagos -Gahant -Gaiger -Gail -Gail Ann -Gailen -Gailine -Gaillard -Gailmor -Gailview -Gain -Gainer -Gaines -Gainesville -Gainford -Gainsboro -Gainsborough -Gainsford -Gainsport -Gainsthorpe -Gainsville -Gainswood -Gair -Gairloch -Gaisford -Gaist -Gaither -Gaither Farm -Gaither Hunt -Gaitskell -Gala -Galahad -Galanis -Galara -Galashiels -Galata -Galatea -Galaxie -Galaxy -Galbraith -Galbrath -Galbreath -Galbreth -Galda -Galdana -Gale -Gale Ridge -Galea -Galen -Galena -Galer -Gales -Gales Point -Galesborough -Galesbury -Galesi -Galesville -Galetown -Galeucia -Galewood -Galga -Galgate -Galia -Galilee -Galindo -Galitz -Gall -Gall End -Gallagher -Gallahad -Gallahan -Galland -Gallant -Gallant Fox -Gallant Green -Gallants -Gallants Farm -Gallard -Gallatin -Gallaudet -Gallegos -Gallek -Gallen -Galleon -Galleons -Galleria -Galleron -Gallery -Galletta -Galley -Galley East -Galley Hill -Galley West -Galleydean -Galleyhill -Galleywall -Galleywood -Galli -Gallia -Galliard -Galliford -Galligan -Gallimore -Gallin -Gallina -Gallinelli -Gallinson -Gallions -Gallions View -Gallipoli -Gallison -Gallivan -Gallo -Gallogate -Gallop -Gallop Hill -Galloping Hill -Gallosson -Galloupe -Galloupes Point -Galloway -Gallows -Gallows Branch -Gallows Corner Main -Gallows Green -Gallows Hill -Gallows Tree -Gallup -Gallway -Gallwey -Gallypot -Gallys -Galpin -Galpin Lake -Galston -Galsworthy -Galt -Galtier -Galton -Galty -Galusha -Galvani -Galveston -Galvez -Galvin -Galway -Galway Bay -Gamay -Gambel Oak -Gambetta -Gambia -Gambier -Gambini -Gamble -Gamble Hill -Gambles -Gamblin -Gamboa -Gambole -Gambonini -Gambrel Bank -Gambril -Gambrill -Gambrills -Gambrills Cove -Game -Game Cock -Game Creek -Game Farm -Game Lord -Game Preserve -Gamecock -Gamecock Canyon -Gamenya -Games -Gamewell -Gamid -Gamlen -Gamma -Gammell -Gammie -Gammon -Gammons -Gamon -Gamut -Gandangara -Gander -Gander Green -Gandolfi -Gandy Dancer -Gandys -Ganels -Ganges -Gangurlin -Ganic -Ganley -Ganna -Gannawatte -Ganners -Ganners Way Ganners -Gannet -Gannett -Gannett Pasture -Gannon -Gannons -Gano -Gansett -Gansevoort -Gant -Gantner -Ganton -Gantry -Ganzer -Gap -Gap Head -Gap View -Gapemouth -Gaping -Garabaldi -Garabedian -Garage -Garand -Garaventa -Garaventa Ranch -Garavogue -Garazi -Garbala -Garbarino -Garber -Garber Hill -Garbo -Garbo Ranch -Garbrook -Garbutt -Garcal -Garceau -Garces -Garcez -Garcia -Garcia Ranch -Gard -Garda -Gardella -Garden -Garden Brook -Garden City -Garden Close Hanworth -Garden Court -Garden Creek -Garden Cty -Garden Gate -Garden Grove -Garden Heights -Garden Hill -Garden House -Garden Meadow -Garden Ridge -Garden Rock -Garden Rose -Garden Terrace -Garden Tract -Garden View -Garden Wood -Gardena -Gardendale -Gardendell -Gardender -Gardener -Gardeners -Gardenia -Gardensen -Gardenside -Gardenvale -Gardenview -Gardenvine -Gardenwood -Gardere -Gardiner -Gardiner Glen -Gardiners -Gardner -Gardner Ranch -Gardners -Gardyne -Gareis -Garendon -Gareth -Garey -Garfield -Garfield Park -Garfinkle -Garford -Garforth -Garforth Main -Gargery -Gargrave -Garibaldi -Garie -Garigal -Garin -Garino -Garison -Garit -Garland -Garlands -Garlen -Garlichill -Garlick -Garlieb -Garlies -Garligne -Garling -Garlinge -Garlisch -Garlot -Garlough -Garman -Garment -Garmon -Garmont -Garnault -Garner -Garnero -Garners -Garnet -Garnet Rock -Garnett -Garnetts -Garnham -Garnica -Garnsey -Garofallo -Garofolo -Garold -Garove -Garrabrant -Garran -Garrans -Garrard -Garratt -Garratts -Garraween -Garrawille -Garrecht -Garret -Garret Hill -Garretson -Garrett -Garrett Park -Garrett Spillane -Garretts -Garric -Garrick -Garriland -Garrion -Garrison -Garrity -Garrod -Garron -Garrone -Garrong -Garrow -Garry -Garry Glen -Garry Oak -Garryanna -Garryford -Garsdale -Garside -Garside Hey -Garson -Garst -Garstang -Garston -Garswood -Gartfern -Garth -Garth Willow -Garthland -Garthmere -Garthorne -Garthorp -Garthowen -Garthwaite -Gartland -Gartleman Farm -Gartlet -Gartley -Gartmore -Gartney -Garton -Gartside -Gartwick -Garvan -Garvary -Garver -Garvey -Garvies Point -Garvin -Garvin Brook -Garvock -Garway -Garwick -Garwood -Garwood Glen -Gary -Gary Galli -Gary Hill -Gary Lee -Gary Ray -Garys Mill -Garywood -Garza -Garzoli -Garzot -Gas -Gas House -Gas Light -Gas Well -Gas Wharf -Gas Works -Gasbarri -Gascoigne -Gasconge -Gascony -Gascoyne -Gasden -Gaselee -Gashes -Gaskarth -Gaskell -Gasket -Gaskill -Gaskin -Gaskins -Gaslight -Gaspar -Gassett -Gassiot -Gassmann -Gasson -Gasson Wood -Gassons -Gast -Gastein -Gaston -Gaston Bridge -Gastville -Gaswell -Gasworks -Gaszi -Gatacre -Gataker -Gatch -Gatcombe -Gate -Gate Dancer -Gate Farm -Gate Field -Gate House -Gate Park -Gateau -Gatecliff -Gatefield -Gateford -Gateforth -Gatehall -Gatehampton -Gatehead -Gatehill -Gatehouse -Gateley -Gately -Gateon House -Gatepost -Gater -Gates -Gates Canyon -Gates Creek -Gates Green -Gates Pond -Gatesborough -Gatesby -Gatesden -Gatesgarth -Gateshead -Gateside -Gatestone -Gatestone Square -Gateview -Gatewater -Gateway -Gateway Center -Gateway Oaks -Gateway Overlook -Gateway Park -Gatewood -Gathering -Gathorne -Gathurst -Gatland -Gatley -Gatliff -Gatlin -Gatling -Gaton -Gatonby -Gatsby -Gatses -Gatter -Gatto -Gatton -Gatton Park -Gattucio -Gatward -Gatwick -Gatzmer -Gaub -Gauden -Gaudet -Gaudette -Gaudreau -Gaug Farm -Gauge -Gauger -Gaugler -Gauguin -Gauldy -Gaulin -Gault -Gaulton -Gaundabert -Gaunt -Gauntlet -Gauntlett -Gaurdino -Gautier -Gautrey -Gavel -Gavell -Gavello -Gaven -Gaverick -Gavern -Gaveston -Gavestone -Gavilan -Gavin -Gavins Pond -Gavotte -Gavrin -Gawain -Gawaine -Gawber -Gawen -Gawler -Gawne -Gawron -Gawsworth -Gawthorpe -Gay -Gay Bowers -Gay Head -Gay Lore -Gaycroft -Gaydon -Gaye -Gayfere -Gayfields -Gayford -Gayhouse -Gayhurst -Gayland -Gaylawn -Gayle -Gayley -Gayline -Gaylor -Gaylord -Gaymark -Gaymore -Gaynelle -Gaynes Hill -Gaynesford -Gaynor -Gays -Gaysham -Gaythorne -Gayton -Gayville -Gaywood -Gaza -Gazania -Gazebo -Gazehill -Gazelle -Gazos Creek -Gazza -Gazzard -Geana -Gear -Gearny -Gears -Gearty -Geary -Geaton -Geb -Gebhardt -Gebhart -Gebo -Geddes -Geddings -Geddington -Gedeney -Gedick -Gedney -Gedney Park -Gee -Geebung -Geelong -Geer -Geere -Geewan -Geffrye -Gehart -Gehb -Gehl -Gehricke -Gehrig -Gehringer -Geiger -Geigerich -Geise -Geisler -Geissler -Gelardi -Gelato -Gelb -Gelb Ranch -Gelbke -Geldart -Gelder -Gelderd -Geldert -Geldeston -Gelding -Geldner -Gelinas -Gellatly -Gellert -Gellineau -Gelling -Gelnaw -Gelndene -Gelsthorpe -Gelston -Gem -Gemalla -Gemas -Gemini -Gemma -Gemmur -Gemoore -Gemstone -Gen Mills -Gen. Kennedy -GenStar -Genazzi -Genco -Genders -Gendre -Gendron -Gene -General -General Aviation -General Heath -General Henry Knox -General Holmes -General Lee -General Mills -General Mueller -General R. W. Berry -General San Martin -General Sieben -General Smallwood -General Warren -General Waterbury -General Winglass -General Wolfe -Generals -Generation -Generations -Genes -Genesee -Genesis -Geneso -Genessee -Genest -Genesta -Genetti -Geneva -Genevieve -Genevra -Genex -Geng -Genie -Genine -Genista -Genna -Gennene -Gennep -Genner -Gennessee -Genoa -Genoble -Genotin -Genova -Genovesio -Gensell -Genstar -Genther -Gentian -Gentile -Gentilly -Gentle -Gentle Light -Gentle Shade -Gentlees -Gentles -Gentlewood -Gentner -Gentry -Gentrytown -Genty -Genualdi -Genyn -Geoffery -Geoffrey -Geoffreyson -Geoffroy -Geofrey -Geordan -Georeffy Tuttle -Georgann -Georganna -George -George Aggott -George Barton -George Baylor -George Beard -George Bell -George Brown -George C Marshall -George Clauss -George F Willett -George Green -George Groves -George Hill -George Hood -George Hunter -George Julius -George Lee -George Leven -George Lovell -George Mann -George Mason -George Mathers -George McKay -George Michas -George Mobbs -George Moran -George Nelson -George Norman -George Oaks -George P Hassett -George R. Visconti -George River -George V -George Wacker -George Washington -George Weber -George Willing -George Young -Georgean -Georgeham -Georgene -Georges -Georges River -Georgetown -Georgetown Commons -Georgetowne -Georgetta -Georgewood -Georgia -Georgian -Georgiana -Georgianna -Georgina -Georgine -Georginia -Georgio -Georjean -Gera -Gerada -Geraint -Gerald -Geraldine -Geralds -Geraldton -Geralind -Geralynn -Geran -Geranimo -Geranium -Gerard -Geraud -Gerber -Gerbera -Gerbulin -Gerda -Gerdes -Gerdts -Gerdview -Gereghty -Gerek -Geren -Gerfalcon -Gerhard -Gerhardt -Gerhig -Geri -Gericke -Gerine Blossom -Geringer -Gerino -Gerken -Gerlach -Germack -Germain -Germaine -German -German Church -Germander -Germane -Germania -Germanium -Germano -Germantown -Germantown Park -Germany -Germone -Germyn -Gernon -Gerogina -Gerome -Gerona -Geronimo -Gerpins -Gerrale -Gerrard -Gerrards -Gerrards Cross -Gerri -Gerridge -Gerring -Gerrish -Gerritsen -Gerroa -Gerry -Gerrymander -Gershom -Gershwin -Gerstner -Gerstung -Gerten -Gerth -Gertmin -Gertrude -Gertz -Gertzen -Gervais -Gervase -Gervil -Gerwig -Gesford -Geske -Gesna -Gesner -Gessner -Gest -Gestingthorpe -Getchell -Gethsemane -Getson -Gettler -Getty -Gettysburg -Getyunga -Getz -Getzelman -Geyer -Geylen -Geyser -Geyser Ridge -Geysers -Geyserville -Gg -Ggp Access -Ghadbank -Gharkey -Ghent -Gherty -Ghillotti -Ghione -Ghisletta -Ghormley -Ghost Pony -Ghostley -Ghyll -Ghyll Beck -Ghyll Side -Ghyllroyd -Giacalone -Giadeczka -Giahos -Giampaoli -Gianelli -Gianera -Gianna -Giannecchini -Gianni -Giannini -Giannone -Giant -Giant Arches -Giant Oak -Giant Panda -Giants -Giaramita -Giasson -Gib -Gibb -Gibbens -Gibbes -Gibbet -Gibbet Hill -Gibbins -Gibbon -Gibbons -Gibbons Church -Gibbons Ranch -Gibbs -Giberson -Gibfield -Gibfield Park -Gibian -Giblets -Giblett -Gibraltar -Gibraltar Island -Gibralter -Gibson -Gibson Canyon -Gibson Oaks -Gibson Transfer -Gibsons -Gidding -Giddings -Giddyhorn -Gidea -Gideon -Gideons -Gideons Point -Gidgee -Gidji -Gidley -Gidlow -Gidya -Gieger -Giegerich -Gierz -Giesbach -Giese -Gieseke -Giesen -Giesman -Giffard -Giffen -Giffin -Giffnock -Gifford -Gifford Pinchot -Giffords -Giffords Cross -Gifhorn -Gift -Gig -Gigante -Gigey -Gigg -Giggs Hill -Gighill -Gigi -Giguere -Gil Blas -Gila -Gilander -Gilardi -Gilardoni -Gilba -Gilbert -Gilbert L Bean -Gilberto -Gilbertson -Gilbey -Gilboa -Gilbourne -Gilbralter -Gilbreth -Gilbride -Gilbulla -Gilburt Hill -Gilcar -Gilchrest -Gilchrist -Gilcrest -Gilda -Gilda Brook -Gildabrook -Gildar -Gildare -Gildea -Gilden -Gildenhill -Gildenthorpe -Gilder -Gilderdale -Gilders -Gildersdale -Gildersleeve -Gildersome -Gildersome Back -Gildridge -Gile -Giles -Giles Run -Gilfeather -Gilfillan -Gilford -Gilgandra -Gilger -Gilham -Gilhams -Gill -Gill Bent -Gill Port -Gillam -Gillard -Gillbane -Gillbrook -Gilleevan -Gillen -Gillender -Gillens -Gillenwater -Gillespie -Gillespies -Gillet -Gillett -Gillette -Gilletts -Gillham -Gilliam -Gillian -Gillian Park -Gilliat -Gillick -Gillier -Gillies -Gilligans -Gillimer -Gilling -Gillingham -Gillingham Gate -Gillings -Gillis -Gillman -Gillmans -Gillmor -Gillmore -Gillon -Gillooly -Gillpepper -Gillridge -Gills -Gills Hill -Gillville -Gillwinga -Gilly -Gilma -Gilman -Gilmar -Gilmartin -Gilmer -Gilmerton -Gilmore -Gilmour -Gilmoure -Gilnow -Gilpen -Gilpin -Gilray -Gilrix -Gilroy -Gilroy Hot Springs -Gilruth -Gilsan -Gilsland -Gilson -Gilstead -Gilston -Giltbrook -Giltner -Gilton -Giltspur -Gilway -Gilwell -Gilwinga -Gilwood -Gimbal -Gimbel -Gina -Gina Nicole -Ginahgulla -Ginavale -Gincroft -Ginda -Ginden -Gindurra -Ginesi -Ginge -Gingells Farm -Ginger -Ginger Brook -Ginger Creek -Ginger Root -Ginger Wood -Ginger Woods -Gingerblossom -Gingerbread -Gingerbrook -Gingerview -Gingerwood -Gingham -Gingrich -Ginhams -Ginita -Ginkgo -Ginko -Ginley -Ginn -Ginniver -Ginny -Gino -Ginseng -Ginther -Ginu -Gio -Gioconda -Giorgano -Giovanetti -Giovannetti -Giovanni -Gipps -Gipps Cross -Gipson -Gipsy -Gipton Approach York -Gipton Oak Tree -Gipton Wood -Giralda -Girard -Giraud -Giraudo -Gird -Girdle -Girdler -Girdlers -Girdlestone -Girdwood -Gironde -Girouard -Girra -Girralong -Girraween -Girrilang -Girtin -Girton -Girvan -Girvin -Gisborn -Gisbourne -Gisburn -Gisburne -Gischel -Gisela -Gisella -Giselle -Gissing -Gist -Giuffrida -Giusti -Givan -Given -Givendale -Givens -GizMo -Gizmo -Glabe -Glabyn -Glacial Falls -Glacier -Glacier Park -Glacier Point -Glacier Ridge -Glackens -Glad -Glad Valley -Gladbeck -Gladden -Gladdie -Gladding -Glade -Glade Hill -Glade Spring -Glader -Glades -Gladeside -Gladesville -Gladeswood -Gladewright -Gladhill -Gladiator -Gladiola -Gladiolus -Gladish -Gladlands -Gladmore -Gladney -Gladnor -Gladsdale -Gladsmuir -Gladston -Gladstone -Gladstone Terrace -Gladswood -Gladville -Gladwalt -Gladwell -Gladwin -Gladwood -Gladwyn -Gladwyne -Gladys -Gladys May -Glafil -Glaisdale -Glaisher -Glaister -Glaizewood -Glamford -Glamis -Glamorgan -Glancy -Glandon -Glandore -Glandy Glen -Glanfield -Glanleam -Glanmire -Glanmor -Glanthams -Glantz -Glanville -Glanvor -Glanz -Glarner -Glarus -Glasbrook -Glascock -Glascoe -Glascow -Glaserton -Glasford -Glasgow -Glasmere -Glass -Glass House -Glass Mountain -Glassboro -Glasscock -Glassenbury -Glasser -Glasseys -Glasshill -Glasshouse -Glasslyn -Glassmanor -Glassmill -Glassop -Glassword -Glaston -Glastonberry -Glastonbury -Glatton -Glaude -Glauser -Glavis -Glaydin Woods -Glazbury -Glazebrook -Glazebury -Glazer -Glazier -Glaziers -Glazzy -Gleahaven -Gleaming Wood -Gleane -Gleaner -Gleason -Gleason Acres -Gleason Lake -Gleasondale -Gleave -Gleaves -Glebe -Glebe Heights -Glebe House -Glebe Point -Glebe View -Glebefield -Glebeland -Glebelands -Gleden -Gledhall -Gledhill -Gledhow -Gledhow Lidgett -Gledhow Park -Gledhow Valley -Gledhow Wood -Gledstanes -Gledwood -Gledwood Wood -Gleed -Gleedsville -Gleeland -Gleeson -Gleffe -Glegg -Glemar -Glen -Glen Abbey -Glen Albyn -Glen Alden -Glen Allan -Glen Alpine -Glen Alto -Glen Arbor -Glen Arms -Glen Artney -Glen Aulin -Glen Avon -Glen Ayre -Glen Bott -Glen Brae -Glen Briar -Glen Byron -Glen Cannon -Glen Canyon -Glen Carlyn -Glen Cove -Glen Cove Oyster Bay -Glen Creek -Glen Crest -Glen Cross -Glen Curtiss -Glen Dale -Glen Davies -Glen Dell -Glen Donegal -Glen Eagle -Glen Eagles -Glen Echo -Glen Edge -Glen Edin -Glen Ellen -Glen Ellyn -Glen Elyn -Glen Entrance -Glen Eyrie -Glen Faba -Glen Farm -Glen Fire -Glen Firth -Glen Flora -Glen Forest -Glen Fr -Glen Garry -Glen Gary -Glen Gate -Glen Gerry -Glen Gery -Glen Goin -Glen Gorham -Glen Gray -Glen Hanleigh -Glen Hannah -Glen Harbor -Glen Haven -Glen Head -Glen Heather -Glen Heights -Glen Hill -Glen Hollow -Glen Hook -Glen Innes -Glen Irene -Glen Isle -Glen Ivy -Glen Keith -Glen Lake -Glen Logan -Glen Lomond -Glen Manor -Glen Mar -Glen Margaret -Glen Mawr -Glen Meadow -Glen Mill -Glen Miller -Glen Mor -Glen Oak -Glen Oakes -Glen Oaks -Glen Oban -Glen Ora -Glen Ormond -Glen Park -Glen Paul -Glen Pointe -Glen Ridge -Glen Rigde -Glen Rock -Glen Rose -Glen Ross -Glen Rouken E -Glen Sharon -Glen Shell -Glen Side -Glen Spring -Glen Taylor -Glen Toro -Glen Tree -Glen Una -Glen Valley -Glen View -Glen Vista -Glen Washington -Glen Wilding -Glen Willow -Glenada -Glenaffric -Glenair -Glenaire -Glenalla -Glenallan -Glenallen -Glenalmond -Glenark -Glenarm -Glenarms -Glenarvon -Glenavon -Glenavy -Glenayr -Glenayre -Glenbar -Glenbard -Glenbarr -Glenberry -Glenboro -Glenborough -Glenbourne -Glenbrae -Glenbriar -Glenbrook -Glenbrook Crest -Glenbrook Hospital -Glenbrooke -Glenbrooke Woods -Glenbuck -Glenburne -Glenburnie -Glenby -Glencairn -Glencannon -Glencar -Glencarl -Glencarron -Glencliff -Glenclift -Glencoe -Glencorse -Glencourse -Glencourt -Glencove -Glencoyne -Glencrest -Glencroft -Glencross -Glenda -Glendale -Glendall -Glendalough -Glendarvon -Glendell -Glendene -Glendenning -Glendevie -Glendevon -Glendish -Glendon -Glendoon -Glendora -Glendower -Glenduin -Glendundee -Gleneagle -Gleneagles -Gleneden -Glenelg -Glenella -Glenellen -Glenellyn -Glenerye -Glenesk -Glenfair -Glenfaire -Glenfarg -Glenfarne -Glenfern -Glenferrie -Glenfield -Glenfield Mews -Glenfinnan -Glenford -Glenforth -Glenfruin -Glenfyne -Glengalen -Glengall -Glengarif -Glengariff -Glengarnock -Glengarrie -Glengarrif -Glengarry -Glengarth -Glengary -Glengoin -Glengreen -Glengyle -Glenham -Glenhaven -Glenhazel -Glenheath -Glenheather -Glenhill -Glenhome -Glenhouse -Glenhurst -Glenice -Glenilla -Glenisia -Glenister -Glenister Park -Glenisters -Glenkirk -Glenlake -Glenland -Glenlawn -Glenlea -Glenlee -Glenlo -Glenlock -Glenloe -Glenluce -Glenly -Glenlyn -Glenmalure -Glenmar -Glenmark -Glenmary -Glenmeadow -Glenmere -Glenmere Park -Glenmist -Glenmont -Glenmoor -Glenmora -Glenmore -Glenmore Spring -Glenmount -Glenn -Glenn Coolidge -Glenn Cove -Glenn Curtiss -Glenn Dale -Glenn Ellen -Glenna -Glennan -Glennell -Glennie -Glennon -Glenns -Glennville -Glenny -Glenoak -Glenoban -Glenoe -Glenola -Glenolden -Glenora -Glenorchy -Glenpark -Glenparke -Glenpine -Glenriddle -Glenridge -Glenrio -Glenrise -Glenrock -Glenroe -Glenrosa -Glenrose -Glenross -Glenrowan -Glenrown -Glenroy -Glens -Glensdale -Glenshaw -Glenshiel -Glenshire -Glenside -Glentham -Glenthorn -Glenthorne -Glenthorpe -Glenton -Glentrammon -Glentree -Glentrees -Glentworth -Glenugie -Glenure -Glenvale -Glenview -Glenvilla -Glenville -Glenwari -Glenway -Glenwild -Glenwillow -Glenwix -Glenwood -Glenwood Dale -Glenwood Dyer -Glenwood Lansing -Glenwoodie -Glenworth -Glenyar -Glenys -Gless -Glezen -Glidden -Gliddon -Glide -Glider -Glimpsewood -Glines -Glissade -Glisson -Glittering Light -Glnrosa -Global -Globe -Globe Farm -Globe Pond -Globe Theatre -Glodwick -Glori Dawn -Gloria -Gloria Jean -Glorietta -Glorieux -Glory -Glory Mill -Glos -Glossop -Glossop Brook -Gloster -Gloucester -Glouceston -Glouchester -Glouster -Glover -Glovers -Glovers Brook -Glow -Gloxinia -Glueck -Gluek -Glumack -Glycena -Glygena -Glymont -Glymont Crest -Glyn -Glynde -Glyndon -Glynfield -Glynis -Glynn -Glynne -Glynnis Rose -Glynwood -Gnarbo -Gnarled Oak -Gnekow -Gnesa -Goad -Goat -Goat Hall -Goat Hill -Goat House -Goat Rock -Goaters -Goatham -Goatlees -Goatley -Goatsfield -Goatsmoor -Goatswood -Gobernadores -Gobind -Gobions -Goble -Godair -Godbert -Godbold -Goddard -Goddard Memorial -Godden -Goddings -Goddington -Goddu -Goden -Godetia -Godfrey -Goding -Godington -Godinton -Godley -Godliman -Godly -Godman -Godmans -Godmond Hall -Godolphin -Godric -Godson -Godspeed -Godston -Godstone -Godstone Green -Godward -Godwin -Goebel -Goecken -Goeller -Goerke -Goes -Goesel -Goethals -Goethe -Goethe Park -Goettingen -Goetz -Goff -Goffe -Goffle -Goffle Hill -Goffs -Goffs Oak -Goffs Park -Gogel -Gogh -Gogmore -Gohagen -Goiffon -Goin -Going -Goins -Goirle -Golansky -Golborne -Gold -Gold Arbor -Gold Bar -Gold Bluff -Gold Brook -Gold Camp -Gold Canal -Gold Center -Gold Coast -Gold Country -Gold Course -Gold Creek -Gold Cup -Gold Dust -Gold Express -Gold Field -Gold Flat -Gold Flint -Gold Gulch -Gold Kettle -Gold Lake -Gold Meadow -Gold Mine -Gold Nugget -Gold Oak -Gold Parke -Gold Pointe -Gold Poppy -Gold Ridge -Gold River -Gold Run -Gold Rush -Gold Valley -Gold Yarrow -Goldberg -Goldberry -Goldborne -Goldbridge -Goldcliff -Goldcoast -Goldcrest -Goldcup -Golden -Golden Acre -Golden Acres -Golden Arrow -Golden Aspen -Golden Ball -Golden Bay -Golden Bear -Golden Canyon -Golden Centre -Golden Chapel -Golden Corn -Golden Cove -Golden Cross -Golden Days Access -Golden Eagle -Golden Eye -Golden Falcon -Golden Fleece -Golden Foothill -Golden Gate -Golden Grove -Golden Harvest -Golden Heights -Golden Hill -Golden Hills -Golden Hinde -Golden Lake -Golden Larch -Golden Leaf -Golden Light -Golden Manor -Golden Meadow -Golden Oak -Golden Oaks -Golden Pheasant -Golden Pond -Golden Poppy -Golden Post -Golden Rain -Golden Raintree -Golden Ridge -Golden Rod -Golden Rose -Golden Run -Golden Russet -Golden Sage -Golden Sands -Golden Springs -Golden Sunset -Golden Tree -Golden Triangle -Golden Valley -Golden View -Golden West -Goldencrest -Goldeneye -Goldenhill -Goldenlake -Goldenrain -Goldenrod -Goldentree -Goldenview -Goldfield -Goldfinch -Goldfinger -Goldhaber -Goldhanger -Goldhawk -Goldie -Golding -Goldingham -Goldings -Goldington -Goldlay -Goldleaf -Goldman -Goldmine -Goldney -Goldrill -Goldrings -Goldsands -Goldsberry -Goldsboro -Goldsborough -Goldsdown -Goldsel -Goldsmid -Goldsmith -Goldsmiths -Goldstein -Goldsworth -Goldsworthy -Goldthwait -Goldthwaite -Goldwell -Goldwyn -Goleta -Golf -Golf Academy -Golf Club -Golf Course -Golf Course Access -Golf Creek -Golf Crest -Golf Edge -Golf Estates -Golf Greens -Golf House -Golf Links -Golf Trail -Golf View -Golf Vista -Golfe -Golfers -Golfers Ridge -Golford -Golfview -Goliath -Gollan -Gollum -Gombert -Gomer -Gomersal -Gomes -Gomez -Gomm -Gomoljak -Gomshall -Gona -Gonda -Gondar -Gondek -Gondola -Gone Away -Gong Hill -Gonnelli -Gonsalves -Gonson -Gonville -Gonzaga -Gonzales -Gonzalez -Goobarah -Gooch -Good -Good Blood -Good Harbor -Good Hope -Good Lion -Good Luck -Good Samaritan -Good Speed -Good Spring -Good Valley -Goodacre -Goodale -Goodall -Goodboys -Goodbury -Goodchap -Goodchild -Goode -Goodell -Gooden -Goodenia -Goodenough -Goodenow -Goodey -Goodfellow -Goodge -Goodhall -Goodhart -Goodhew -Goodhill -Goodhope -Goodhue -Goodhurst -Goodier -Goodin -Gooding -Goodinge -Goodlad -Goodland -Goodlands -Goodlet -Goodloe -Goodloes Promise -Goodman -Goodmans -Goodmayes -Goodner -Goodnestone -Goodnough -Goodnow -Goodport -Goodrich -Goodrick -Goodridge -Goodrington -Goodrow -Goodsell -Goodsir -Goodson -Goodstone -Goodview -Goodvine -Goodward -Goodway -Goodways -Goodwells -Goodwill -Goodwin -Goodwives River -Goodwood -Goodworth -Goodwyn -Goodwyns -Goody -Goody Cross -Goodyear -Goodyers -Goojerat -Goold -Goold Park -Goole -Goonaroi -Goonda -Goondah -Goondari -Goora -Goorari -Goorawahl -Gooraway -Gooreen -Goorgool -Gooroa -Goose -Goose Cove -Goose Creek -Goose Glen -Goose Haven -Goose Hill -Goose Lake -Goose Point -Goose Pond -Goose Rye -Gooseacre -Gooseberry -Goosebrook -Goosecroft -Goosegreen -Gooselake -Gooseley -Gooseneck -Goostrey -Gopher -Gophir -Gopsall -Gorada -Gorby -Gordan -Gorden -Gordon -Gordon Johnston -Gordon McKinnon -Gordon Parker -Gordon Valley -Gordonhurst -Gordonia -Gordons -Gordy -Gore -Gore Court -Gore Gable -Gore Green -Goredale -Gorefield -Goresbrook -Goreside -Gorgas -Gorge -Gorgo -Gorham -Goring -Goring Heath -Gorinski -Gorizia -Gorky -Gorleston -Gorman -Gormel -Gormley -Gornall -Gorniak -Gornik -Goroka -Goroki -Gorrel -Gorring -Gorringe -Gorse -Gorse Bank -Gorse Covert -Gorse Hall -Gorse Hill -Gorse Wood -Gorses -Gorsewood -Gorsey -Gorsey Bank -Gorsey Hill -Gorsey Mount -Gorsline -Gorst -Gorstage -Gorsuch -Gort -Gortner -Gorton -Gorwin -Gory Brook -Gosbecks -Gosbell -Gosberton -Gosbrook -Gosby -Goscombs -Gosden -Gosden Hill -Gosfield -Gosforth -Goshawk -Gosheff -Goshen -Goshen Hunt -Goshen Oaks -Goshen School -Goshen Valley -Goshen View -Gosling -Gosling Hill -Gosmore -Gosnell -Gosnold -Gospel Union -Gospodnevich -Gosport -Goss -Goss Hall -Goss Pond -Gossabe -Gossage -Gossamer -Gosselin -Gossell -Gosser -Gosset -Gosshill -Gossling -Gossops -Gossops Green -Gosterwood -Gostlin -Gostling -Goswell -Goswell End -Goth -Gotham -Gotham Hill -Gothberg -Gothic -Gothland -Gothwaite -Gotland -Gott -Gottenham -Gotthardt -Gottlieb -Gotts -Gotts Park -Gottschalk -Gotzian -Goucher -Gouda -Goudhurst -Gougar -Gouge -Gough -Gougham -Goughs -Goularte -Goulburn -Gould -Gould Hill -Gouldbury -Goulden -Goulder -Gouldin -Goulding -Gouldman -Goulds -Goulston -Goulton -Gourlay -Gourley -Gousy -Gouthier -Gouverneur -Gouwens -Govan -Gove -Govenors -Gover -Government -Government Center -Government House -Governo -Governor -Governor Andrew -Governor Belcher -Governor Bridge -Governor Carver -Governor Endicott -Governor Fuller -Governor Hutchinson -Governor Long -Governor Macquarie -Governor Oden Bowie -Governor Peabody -Governor Saltonstall -Governor Winthrop -Governor Yeardley -Governors -Governors Bay -Governors Bridge -Governors Ridge -Govert -Govett -Gow -Gowan -Gowan Brae -Goward -Gowdey -Gowell -Gower -Gowerdale -Gowers -Gowin -Gowing -Gowlett -Gowrie -Goya -Goyak -Goyen -Goyt -Goyt Valley -Gozo -Grace -Grace Ann -Grace Church -Grace Estates -Grace Keller -Grace Leather -Grace Max -Grace Memorial -Grace Valley -Grace View -Gracechurch -Gracedale -Gracefield -Gracel -Graceland -Gracelands -Gracemar -Gracemere -Gracemere Lake -Gracemore -Graces -Graceview -Graceway -Gracewood -Gracey -Grachur -Gracie -Graciella -Gracin -Gracious -Gracious Pond -Gradall -Grade -Graduates -Gradwell -Grady -Graeagle -Graeloch -Graeme -Graemere -Graemesdyke -Graf -Grafe -Graff -Graffian -Graffigna -Grafton -Grafton Farm -Grafton Park -Gragg -Grago -Graham -Graham Creek -Graham Hill -Graham Park -Grahame -Grahampton -Grahm -Grahn -Graicious -Graiden -Grain -Grainery -Grainfield -Grainger -Graingers -Grains -Gralynn -Gramar School -Gramarcy -Gramatan -Gramby -Gramercy -Gramercy Park -Gramford -Grammar School -Grammercy -Grammont -Grammy -Grampian -Grams Private -Gramsie -Gran Deur -Granada -Granado -Granard -Granart -Granary -Granaston -Granborough -Granby -Grand -Grand Banks -Grand Birch -Grand Canal -Grand Canyon -Grand Central -Grand Champion -Grand Comons -Grand Corner -Grand Coulee -Grand Cru -Grand Cypress -Grand Depot -Grand Fir -Grand Hamptons -Grand Haven -Grand Highlands -Grand Hill -Grand Island -Grand Lake -Grand Meadow -Grand Mesa -Grand Oaks -Grand Park -Grand Point -Grand Pointe -Grand Prairie -Grand Pre -Grand Prix -Grand Reserve -Grand Ridge -Grand Rio -Grand River -Grand Summit -Grand Targee -Grand Terrace -Grand Teton -Grand Teton Park -Grand Tour -Grand Tree -Grand Valley -Grand View -Grandads -Grandale -Grandborough -Grandby -Grande -Grande Park -Grande Pines -Grande View -Grande Vista -Grandee -Granden -Grandfield -Grandhaven -Grandiflora -Grandin -Grandison -Grandmas -Grandparents -Grandpere -Grandshore -Grandstaff -Grandstand -Grandview -Grandwind -Grandwood Lake -Grandys -Grane -Granelli -Graney -Granfield -Grange -Grange Court -Grange Farm -Grange Fields -Grange Hall -Grange Park -Grange Valley -Grange View -Grangecourt -Grangefield -Grangefields -Grangeforth -Grangehill -Granger -Grangers Dairy -Grangethorpe -Grangewood -Grangnelli -Granison -Granite -Granite Creek -Granite Crossing -Granite Park -Granite Ridge -Granite Rock -Graniteville -Granitewood -Granlee -Granleigh -Granli -Grannis -Granniss -Granny -Gransden -Granshaw -Gransmoor -Grant -Grant Chapman -Grant Line -Grant Lorenz -Grant Mills -Grant Park -Grant School -Grantbridge -Grantham -Grantland -Grantley -Grantock -Granton -Grants -Grants Mill -Grantully -Grantwood -Granvaile -Granville -Granzotto -Grapal -Grapanche -Grape -Grape Leaf -Grape Shot -Grape Vine -Grapes -Grapevine -Grapewood -Graphic -Grappenhall -Grapple -Grasdene -Grasmead -Grasmere -Grason -Grass Lake -Grass Valley -Grasscroft -Grasselli -Grassfield -Grassholme -Grasshopper -Grassina -Grassingham -Grassington -Grassland -Grasslands -Grassmere -Grasswood -Grassy -Grassy Garth -Grassy Knoll -Grassy Pond -Grassy Slope Fire -Grassy Sprain -Grassymeade -Grater -Gratia -Graton -Gratrix -Grattan -Gratten -Gratto -Gratton -Grattons -Gratuity -Gratwicke -Grau -Gravatt -Grave -Grave Oak -Gravel -Gravel Bank -Gravel Hill -Gravel Pit -Gravel Pit Haul -Gravel Pits -Gravel Point -Graveley -Graveleythorpe -Gravelly -Gravelly Bottom -Gravelly Brook -Gravelly Hill -Gravelly Point -Gravelye -Graveney -Gravenhurst -Gravenmoor -Gravenstein -Graver -Graves -Gravesend -Gravesend Neck -Gravestone -Gravett -Gravetts -Graveyard -Gravity Car -Gray -Gray Barn -Gray Beach -Gray Beech -Gray Birch -Gray Cliff -Gray Farms -Gray Fox -Gray Hawk -Gray Heron -Gray Oaks -Gray Owl -Gray Rock -Gray Wing -Graybar -Graybill -Graybriar -Grayburn -Graydon -Grayfield -Grayfriars -Grayham -Grayhampton -Grayhawk -Grayheaven Manor -Grayhouse -Grayland -Graylawn -Graylind -Grayling -Graylock -Graylynn -Graymarsh -Graymill -Graymont -Graymoor -Graymore -Grayne -Grayon -Grayridge -Grayrigg -Grayrock -Grays -Grays Bay -Grays Creek -Grays Farm -Grays Ford -Grays Landing -Grays Park -Grays Point -Grays Pointe -Graysands -Grayscroft -Grayshire -Grayshott -Grayslake -Grayson -Grayston -Graystone -Graystone Meadow -Grayswood -Graythwaite -Grayton -Grayvine -Graywacke -Graywhaler -Graywood -Grazebrook -Grazeley -Grazeley Green -Graziano -Greacen -Greacen Point -Greame -Greany -Great -Great America -Great Ancoats -Great Arbor -Great Augur -Great Bank -Great Basin -Great Bay -Great Bend -Great Berry -Great Binfields -Great Bounds -Great Braitch -Great Bramingham -Great Brickhill -Great Bridgewater -Great Brook Valley -Great Brooms -Great Buckingham -Great Bushey -Great Canfield -Great Castle -Great Central -Great Chapel -Great Chart -Great Chertsey -Great Church -Great Circle -Great Clowes -Great College -Great Cumberland -Great Dover -Great East Neck -Great Eastern -Great Egerton -Great Egret -Great Elm -Great Elms -Great Falls -Great Falls Forest -Great Gardens -Great Gates -Great George -Great Goodwin -Great Gregories -Great Guildford -Great Hadham -Great Hall -Great Harry -Great Heron -Great Hill -Great Hills -Great Hollands -Great Horwood -Great House -Great Jackson -Great James -Great John -Great Jones -Great Kills -Great King -Great Knollys -Great Lake -Great Lakes -Great Laurel -Great Lodge -Great Mall -Great Marlborough -Great Meadow -Great Moor -Great Moss -Great Neck -Great New -Great Newport -Great Norbury -Great North -Great Northern -Great Notley -Great Oak -Great Oaks -Great Ormond -Great Owl -Great Percy -Great Peter -Great Pines -Great Plain -Great Plains -Great Pond -Great Portwood -Great Post -Great Prestons -Great Pulteney -Great Queen -Great Republic -Great Ridge -Great River -Great Rock -Great Ropers -Great Russell -Great Salt Lake -Great Smith -Great Smokey -Great South -Great Southern -Great Sutton -Great Tey -Great Thorne -Great Titchfield -Great Totham -Great Trinity -Great View -Great WInchester -Great West -Great Western -Great Wheatley -Great Whites -Great Wilson -Great Winchester -Great Windmill -Great Wood -Great Woodcote -Great Woods -Greatdown -Greate House Farm -Greatfield -Greatfields -Greatford -Greatham -Greatland -Greatness -Greatnews -Greaton -Greatrex -Greatwater -Greave -Greaves -Grebe -Grecian -Greco -Gredinger -Greeba -Greek -Greeley -Greely -Green -Green Acre -Green Acres -Green Ash -Green Bay -Green Branch -Green Briar -Green Bridge -Green Brier -Green Brook -Green Bud -Green Canyon -Green Cir -Green Circle -Green Common -Green Court -Green Cove -Green Crest -Green Croft -Green Cross -Green Dale -Green Dory -Green Duck -Green East -Green End -Green Farm -Green Farms -Green Fields -Green Fold -Green Forest -Green Garden -Green Garland -Green Glen -Green Grass -Green Grove -Green Haven -Green Hedges -Green Heron -Green Hill -Green Hills -Green Hollow -Green Holly -Green Holly Springs -Green Hundred -Green Ice -Green Island -Green Knoll -Green Knolls -Green Lake -Green Landing -Green Lawn -Green Lea -Green Leaf -Green Ledge -Green Lodge -Green Man -Green Meadow -Green Meadows -Green Mill -Green Moor -Green Moss -Green Mountain -Green Needles -Green North -Green Oak -Green Oaks -Green Orchard -Green Park -Green Pasture -Green Pastures -Green Pheasant -Green Pine -Green Point -Green Pond -Green Ranch -Green Range -Green Ravine -Green Ridge -Green River -Green Run -Green School -Green Spring -Green Springs -Green Tiles -Green Trails -Green Tree -Green Trees -Green Twig -Green Valley -Green Valley Oaks -Green Valley School -Green View -Green View Church -Green Way -Green Willow -Green Wrythe -GreenHedges -Greenacre -Greenacre Park -Greenacres -Greenall -Greenaway -Greenbach -Greenback -Greenbank -Greenbanks -Greenbaum -Greenbay -Greenbelt -Greenbelt Metro -Greenberg -Greenberry -Greenbooth -Greenboro -Greenborough -Greenbough -Greenbrae -Greenbranch -Greenbriar -Greenbridge -Greenbrier -Greenbrier Park -Greenbrook -Greenbrow -Greenburn -Greenbury -Greenbury Point -Greenbush -Greencastle -Greencastle Ridge -Greencourt -Greencrest -Greencroft -Greencroft Deans -Greencroft Hale -Greendale -Greendale Village -Greendale Villege -Greendell -Greene -Greene Field -Greene Ridge -Greeneich -Greenery -Greenfeather -Greenfern -Greenfield -Greenfield Farm -Greenfields -Greenfinch -Greenfold -Greenford -Greenfrith -Greengate -Greengates Redcar -Greenglen -Greengold -Greengrove -Greenhalge -Greenhalgh -Greenhalgh Moss -Greenhall -Greenham -Greenhaven -Greenhayes -Greenhays -Greenhead -Greenheys -Greenhill -Greenhills -Greenholme -Greenhood -Greenhorn -Greenhouse -Greenhow -Greenhurst -Greenhythe -Greening -Greenknoll -Greenknowe -Greenlake -Greenland -Greenlands -Greenlane -Greenlaven -Greenlaw -Greenlawn -Greenlay -Greenlea -Greenleach -Greenleaf -Greenleafe -Greenleas -Greenlee -Greenlees -Greenleigh -Greenlodge -Greenlook -Greenly -Greenman -Greenmead -Greenmeadow -Greenmont -Greenmoor -Greenmount -Greenoak -Greenock -Greenough -Greenpark -Greenpoint -Greenport -Greenrale -Greenridge -Greenrock -Greenroyd -Greens -Greens Arms -Greensand -Greensboro -Greensborough -Greensburgh -Greensfield -Greenshall -Greenshire -Greenside -Greenside Mortimer -Greenslade -Greensleeves -Greenslope -Greenson -Greenspan -Greenspring -Greenstead -Greensted -Greenstede -Greenstein -Greenstone -Greensview -Greensward -Greenthorn -Greenthorpe -Greentrails -Greentree -Greentree Manor -Greentrees -Greenvale -Greenvale Glen Cove -Greenvalley -Greenview -Greenville -Greenwald -Greenway -Greenway Grand -Greenway Longland -Greenway Center -Greenway Corporate -Greenway Court -Greenways -Greenweadow -Greenwell -Greenwich -Greenwich Church -Greenwich Cove -Greenwich High -Greenwich Hills -Greenwich Park -Greenwich Point -Greenwich South -Greenwich Wood -Greenwich Woods -Greenwillow -Greenwing -Greenwolde -Greenwood -Greenwood Bay -Greenwood Beach -Greenwood Cove -Greenwood East -Greenwood Hill -Greenwood Lake -Greenwood Valley -Greenwoods -Greer -Greet -Greetland -Greeves -Greg -Greg Lawn -Greg Marc -Greg Taylor -Greger -Gregerscroft -Gregford -Gregg -Gregge -Greggory -Greggs -Greggs Wood -Greggswood -Gregor -Gregori -Gregorich -Gregories -Gregories Farm -Gregorio -Gregory -Gregory Farm -Gregory Hills -Gregory Island -Gregory M Sears -Gregson -Greig -Greisen -Greiving -Gremley -Grena -Grenaby -Grenada -Grenade -Grenadier -Grenadon -Grenda -Grendale -Grendon -Grenelefe -Grenfel -Grenfell -Grengs -Grenhart -Grenier -Grennan -Grennell -Grenoble -Grenock -Grenstead -Grenton -Grenville -Grenwold -Grenwolde -Gresel -Gresham -Greshan -Gresley -Gresse -Gressenhall -Gresser -Gressinger -Grest South West -Greswell -Gretchen -Gretel -Greten -Gretna -Gretna Green -Gretter -Gretton -Greve -Greville -Greville Park -Grevillea -Grevillia -Grew -Grew Hill -Grex -Grey -Grey Barn -Grey Canyon -Grey Coach -Grey Colt -Grey Dove -Grey Eagle -Grey Finch -Grey Fox -Grey Ghost -Grey Gull -Grey Mare -Grey Mist -Grey Oaks -Grey Pebble -Grey Rock -Grey Run -Grey Seal -Grey Squirrel -Grey Towers -Grey Wall -Grey Willow -Greybert -Greybirch -Greybury -Greycaine -Greycliff -Greycliffe -Greycoat -Greydells -Greyfriars -Greygums -Greyhound -Greylag -Greylands -Greylock -Greylyn -Greymere -Greymont -Greyrock -Greys -Greyshiels -Greyshon -Greyson Creek -Greystanes -Greystead -Greystoke -Greystone -Greystones -Greyswood -Greythorne -Greyview -Greywall -Greywell -Greywing -Greywood -Gribble Bridge -Grice -Grid -Griddle -Gridley -Gridley Bryant -Grier -Grierson -Grieve Glen -Grieves -Griff -Griffanti -Griffe -Griffen -Griffey -Griffin -Griffin Brook -Griffin Farm -Griffin Oaks -Griffing -Griffing Park -Griffins -Griffiss -Griffit -Griffith -Griffith Farm -Griffith Industrial -Griffiths -Griffon -Griffth -Grifon -Grigg -Griggs -Griglio -Grigsby -Grijalva -Grill -Grimeford -Grimes -Grimley -Grimm -Grimmer -Grimmett -Grimsby -Grimsby on Oxford -Grimsdells -Grimsditch -Grimsdyke -Grimshaw -Grimsley -Grimstone -Grimthorpe -Grimwade -Grimwood -Grin Low -GrindStone -Grindal -Grindall -Grindel -Grinder -Grindle -Grindley -Grindon -Grindsbrook -Grindstone -Griner -Grinnel -Grinnell -Grinstead -Grinsted -Grinton -Grisborne -Griscom -Grisdale -Grissom -Grist Mill -Gristmill -Gristmill Square -Gristone -Griswold -Gritstone -Gritte -Grittleton -Grizedale -Grizilo -Grizzly Flat -Grizzly Island -Grizzly Oaks -Grizzly Peak -Grizzly Rock -Grizzly Terrace -Groah -Groat Point -Grobars -Grobelny -Groben -Groberg -Grobie Pond -Groby -Groce -Grochowiak -Groen -Groesbeck Hill -Groff -Grofsick -Grogan -Groh -Grohmans -Gromer -Grommet -Grommon -Grondine -Gronwall -Groom -Groom Cottage -Groombridge -Groomlands -Grooms -Groomsby -Groomsland -Groote -Gropius -Grosbeak -Grosby -Grose -Grose Farm -Groshon -Grosmont -Gross -Gross Point -Grosse -Grosse Pointe -Grosset -Grossman -Grossmont -Grossweiler -Grosvener -Grosvenor -Grosvenor Wharf -Grote -Groth -Grothman -Grotke -Groton -Groton Harvard -Groton School -Groton Shirley -Grott -Grotto -Grotto Glen -Grottoes -Ground -Ground Pine -Grounds -Groundsel -Grouse -Grouse Run -Grouserun -Grove -Grove Angle -Grove Crescent -Grove Cross -Grove End -Grove Farm -Grove Green -Grove Hall -Grove Heath -Grove Hill -Grove House -Grove Mill -Grove Park -Grovebury -Grovedale -Grovefield -Grovefields -Grovehall -Groveherst -Grovehill -Grovehurst -Groveland -Grovelands -Groveleigh -Groveley -Grovemont -Grovemore -Grovenor -Grover -Grovers -Grovers Turn -Groverville -Groves -Groveside -Grovesnor -Groveton -Groveton Gardens -Grovetown -Groveview -Grovewood -Grow -Growney -Grub -Grubb -Grubbs -Gruber -Grubwood -Gruenhagen -Gruenther -Gruenwald -Grumman -Grunauer -Grunberg -Grundel -Grundey -Grundy -Grundy County Line -Gruneisen -Grunewald -Grymes Hill -Gryphon -Grystalwood -Guadalajara -Guadalcanal -Guadalupe -Guadalupe Canyon -Guadalupe Mines -Guam -Guard -Guardian -Guardino -Guards -Guards Club -Guava -Guay -Guayamas -Guaymas -Gubbins -Gubbuteh -Gubernat -Gubyon -Gude -Gudelsky -Gudrun -Guelphs -Guenever -Guenoc -Guenter -Guenther -Guenza -Guerie -Guerin -Guerino -Guerlain -Guerne Hill -Guerneville -Guernewood -Guerneys -Guernse -Guernsey -Guernsey Farm -Guerra -Guerrero -Guertin -Guess -Guessens -Guest -Gueudecourt -Guggiano -Guggins -Guglielmetti -Guibal -Guide -Guide Post -Guider -Guido -Guidotti -Guihen -Guild -Guildables -Guildberry -Guilden -Guilder -Guildersfield -Guildford -Guildford Lodge -Guildford Park -Guildhall -Guildhouse -Guildmore -Guildner -Guildown -Guildwood -Guile -Guileshill -Guilford -Guilford Run -Guilfoy -Guilfoyle -Guillemot -Guilles -Guilliver -Guinan -Guinard -Guinda -Guinea -Guinevere -Guinions -Guinness -Guinzburg -Guion -Guise -Guisti -Guisto -Guithavon -Guittard -Gulch -Guldeford -Gulden -Gulf -Gulf Keys -Gulfport -Gulfstream -Gulia -Gulick -Gulick Mill -Gull -Gull Hill -Gull Island -Gullane -Gullet Wood -Gulliver -Gullo -Gully -Gulton -Guluzzo -Gum -Gum Blossom -Gum Bottom -Gum Grove -Gum Spring -Gum Springs -Gum Springs Village -Gum Tree -Gum Wood -Gumara -Gumbooya -Gumbuya -Gumdale -Gumdrop -Gumleigh -Gumley -Gumnut -Gumping -Gumpus -Gumtree -Gumtree Park -Gumtrees -Gumview -Gumwood -Gun -Gun Back -Gun Club -Gun Hill -Gun Meadow -Gun Pit -Gun Rock -Gunar -Gunbalanya -Gunco -Gundah -Gundain -Gundaroo -Gundawarra -Gundersen -Gunderson -Gundibri -Gundimaine -Gundry -Gundrys -Gundulph -Gungah Bay -Gungarlin -Gungurru -Gunhouse -Gunia -Gunmakers -Gunn -Gunnamatta -Gunnar -Gunnarson -Gunnedah -Gunnell Farms -Gunnels Wood -Gunner Run -Gunnerfield -Gunners -Gunners Branch -Gunnersbury -Gunnery -Gunness -Gunning -Gunnison -Gunpowder -Gunsight Fire -Gunson -Gunston -Gunston Corner -Gunston Cove -Gunston Hill -Gunstor -Gunsynd -Guntawong -Gunter -Gunters -Gunterstone -Gunther -Gunthorpe -Gunton -Guntzer -Gunwood -Gunya -Gunyah -Guptill -Gurdon -Gurdwara -Gurdwara Neville -Gurin -Gurley -Gurnee -Gurnells -Gurner -Gurnet -Gurney -Gurney Court -Gurnsey -Gurrier -Gurry -Gurton -Gus Young -Gushee -Gushue -Gussett -Gustafson -Gustav -Gustave -Gustavus -Gusted Hall -Gustin -Gustine -Gusto -Guston -Gustus -Gusty -Gusty Knoll -Gutedel -Guth -Gutheil -Gutherie -Guthmiller -Guthrie -Gutierrez -Guting -Gutkowski -Guttenberg -Gutter -Gutteridge -Gutters -Guttman -Guy -Guy Dituri -Guy Lombardo -Guy R Brewer -Guy R. Brewer -Guyer -Guyon -Guyong -Guyra -Guys -Guys Farm -Guysborough -Guyscliffe -Guysfield -Guywood -Guzman -Guzzlebrook -Gwalior -Gwandalan -Gwea -Gweal -Gwelo -Gwen -Gwenbury -Gwendale -Gwendalen -Gwendolen -Gwendoline -Gwendolyn -Gwendor -Gweneth -Gwernon -Gwin -Gwinett -Gwinette -Gwinn -Gwinnett -Gwladys -Gwyder -Gwydir -Gwydor -Gwydyr -Gwyn -Gwyndale -Gwyne -Gwynn -Gwynndale -Gwynne -Gwynne Park -Gybbons -Gyen -Gymea Bay -Gymkhana -Gymnasium -Gymoty -Gynant -Gyorr -Gypsum -Gypsy -Gypsy Hill -Gypsy Moth -Gypsy Valley -H A Wyeth Sr -H Diggs -H Fernwood -H Line Fire -H Ranch -HIghfield -HIghview -HIll -HIllside -HMS Essington -HMS Fitzroy -HMS Halsted -HMS Whitaker -Ha Ha -Haab -Haag -Haan -Haar -Haarlem -Haas -Haase -Habben -Habberton -Habel -Haben -Haber -Haberdasher -Haberfield -Habershon -Habgood -Hacianda -Hacienda -Haciendas -Hack -Hackamore -Hackberry -Hackbridge -Hacked Way -Hacken -Hacken Bridge -Hackensack -Hackensack Plank -Hacker -Hackett -Hacketts -Hacketts Pond -Hackfeld -Hackford -Hackhurst -Hacking -Hackle -Hacklorn -Hackman -Hackmans -Hackmore -Hackness -Hackney -Hackney Dalston -Hackney Coach -Hackney Tesco Morning -Hackwood -Hacton -Hadbutt -Haddam -Haddassah -Haddaway -Hadde -Hadden -Haddenfield -Haddenham -Haddesley -Haddington -Haddo -Haddock -Haddon -Haddon Hall -Haddonfield -Haddow -Hadenfeld -Hadfield -Hadham -Hadland -Hadleigh -Hadleigh Park -Hadley -Hadley Farms -Hadley Green -Hadley Hill -Hadley Run -Hadley Wood -Hadlow -Hadlow Down -Hadrian -Hadwen -Hadwin -Hadyn Park -Haeg -Haegers Bend -Haering -Haerse -Haeseler -Hafenrichter -Hafer -Hafey -Haff -Hafner -Hafstrom -Haft -Hafton -Hag Bank -Hag Hill -Haga -Hagadorn -Hagafen -Hagaman -Hagan -Hagans -Hagar -Hagdell -Hage -Hagel -Hageman -Hagemann -Hagen -Hagen Oaks -Hagenberger -Hager -Hagerman -Hagert -Haggard -Hagger -Haggers -Haggerston -Haggerty -Haggetts Pond -Haggie -Haggin -Haggin Oaks -Haglands -Hagley -Haglis -Haglund -Hagman -Hagsdell -Hague -Hague Bar -Hahl -Hahman -Hahn -Hahnemann -Hahns -Haider -Haidlen -Haig -Haigh -Haigh Moor -Haigh Park -Haigh Wood -Haighside -Haight -Haile -Hailey -Hailsham -Hailstone -Haimo -Hainault -Haines -Haines Ranch -Haining -Hainline -Hainsworth -Hainthorpe -Haire -Haise -Haislip -Haith -Haiti -Hakea -Hal -Halaper -Halbert -Halborn -Halco -Halcomb -Halcourt -Halcrow -Halcyon -Haldane -Haldeman -Halden -Haldon -Hale -Hale Haven -Hale House -Hale Low -Hale Oak -Hale Park -Hale Ranch -Haleakala -Halebank -Haledon -Halefield -Halepit -Hales -Hales Hollow -Hales Trace -Halesden -Halesmith -Halesowen -Haleswood -Halesworth -Halethorpe -Halethorpe Farms -Halevy -Haley -Haley Meadows -Haleybird -Half -Half Acre -Half Crown -Half Day -Half Dome -Half Edge -Half Mile -Half Moon -Half Moon Bay -Half Penny -Half Round -Halfacre -Halfcrown -Halfe -Halfhide -Halfmoon -Halford -Halfpence -Halfpenny -Halfway -Halgren -Haliard -Haliburton -Halibut -Halick -Haliday -Halifax -Halifield -Haligus -Halimote -Halina -Halinda -Haling -Halite -Halkin -Halkins -Halko -Hall -Hall Acres -Hall Brown -Hall Creek -Hall Farm -Hall Green -Hall House -Hall Lee -Hall Meadow -Hall Memorial -Hall Moss -Hall Park -Hall Place -Hall Pond -Hall Pool -Hall Ranch -Hall Shop -Halladay -Hallam -Hallandale -Hallberg -Hallbright -Hallbrook -Hallcrest -Halleck -Hallefield -Hallen -Hallenoak -Haller -Hallet -Hallet Davis -Hallett -Hallett Hill -Halley -Hallfields -Hallgate -Hallgren -Halli -Halliday -Halliden -Halliford -Halligan -Hallin -Hallingbury -Hallister -Halliwell -Halliwick -Hallman -Hallmark -Hallmead -Hallo -Hallock -Hallocks Point -Halloran -Hallow -Hallow Vale -Halloway -Halloween -Hallowell -Hallowing -Hallows -Hallran -Hallron -Halls -Halls Green -Halls Grove -Halls Hole -Hallsfield -Hallside -Hallsons -Hallstead -Hallsville -Hallswelle -Halltown -Hallwicks -Hallwood -Hallworth -Hally -Halm Oak -Halmar -Halmore -Halmos -Halmstad -Halnaker -Halo -Halock -Halperin -Halpine -Halsall -Halsbrook -Halsbury -Halse -Halsey -Halsford -Halsford Park -Halsley -Halsmere -Halstad -Halstead -Halsteads -Halsted -Halston -Halstone -Halsworth -Halt -Halter -Halterman -Halton -Halton Cross -Halton Moor -Halton Wood -Haltwhistle -Halvard -Halverson -Halvorsen -Halwis -Halyard -Halycon -Ham -Ham Ashburnham -Ham Ashburnham -Ham Mill -Ham Park -Haman -Hamand -Hamann -Hamar -Hamas -Hambalt -Hamberlins -Hamberts -Hambey -Hamble -Hambledon -Hambledown -Hamblen -Hamblet -Hambleton -Hambletonian -Hamblett -Hamblin -Hambly -Hamborough -Hambrick Manor -Hambridge -Hambro -Hambrook -Hamburg -Hamden -Hamel -Hamelin -Hamels -Hamelyn -Hamer -Hamerick -Hamersley -Hamerstone -Hamerton -Hames -Hamesmoor -Hamfrith -Hamilcar -Hamill -Hamilton -Hamilton Hill -Hamilton Manor -Hamilton Park -Hamilton Spring -Hamiltonian -Hamlen -Hamlet -Hamlet Court -Hamley -Hamlin -Hamlin Park -Hamline -Hamline Service -Hamm Moor -Hammarlee -Hammatt -Hammel -Hammelton -Hammer -Hammer Hill -Hammer Hook -Hammerhead -Hammerlee -Hammerpond -Hammers -Hammerschmidt -Hammersley -Hammersmith -Hammerstone -Hammerton -Hammertown -Hammerwood -Hammes -Hammett -Hammitt -Hammock -Hammon -Hammond -Hammond Branch -Hammond Pond -Hammonds -Hammonds End -Hammonds Ferry -Hammonds Plains -Hammondswood -Hammons -Hammonton -Hamnett -Hamon -Hamor -Hamowell -Hampden -Hampden Gurney -Hampel -Hampermill -Hampers -Hampshire -Hampshire Green -Hampshire Hog -Hampson -Hampson Mill -Hampstead -Hampstead High -Hamptom Park -Hampton -Hampton The -Hampton Brook -Hampton Course -Hampton Court -Hampton Creek -Hampton Hill -Hampton Hollow -Hampton Hunt -Hampton Knoll -Hampton Lake -Hampton Oak -Hampton Park -Hampton Point -Hampton Ridge -Hampton Woods -Hamptondale -Hamptons -Hampworth -Hamrick -Hamsell -Hamsley -Hamson -Hamstead -Hamstel -Hamstreet -Hamstrom -Hamton -Hana -Hanameel -Hanback -Hanburg -Hanbury -Hanby -Hance -Hancey -Hanchett -Hanco Center -Hancock -Hancock Hill -Hancombe -Hancott -Hancox -Hancroft -Hand -Handcroft -Handcross -Handel -Handford -Handforth -Handle -Handlebar -Handley -Handley Page -Hands -Handside -Handsworth -Handverg -Handwerg -Handy -Handzel -Hane -Hanes -Haney -Hanfling -Hanford -Hangar -Hanger -Hanger Vale -Hanging Birch -Hanging Chadder -Hanging Hill -Hangings -Hangmans -Hanian -Hanifan -Hanigan -Hank -Hanken -Hankerson -Hankes -Hankin -Hankins -Hanks -Hankshaw -Hanlan -Hanley -Hanlon -Hanly -Hanlye -Hanmer -Hanmore -Hanna -Hanna Bay -Hanna Park -Hanna Ranch -Hannaford -Hannah -Hannah Farm -Hannah Pearl -Hannahs Pond -Hannam -Hannan -Hannans -Hannay -Hanne -Hannen -Hannerton -Hannes -Hannet -Hannett -Hannibal -Hannigan -Hannington -Hannis -Hannon -Hannons -Hannora -Hannover -Hanns -Hannum -Hano -Hanover -Hanrahan -Hanrehan Lake -Hans -Hansard -Hansborough -Hansbury -Hansby -Hansch -Hanscom -Hanse -Hansel -Hansell -Hansen -Hansens -Hansford -Hanshaw -Hansler -Hansletts -Hanslow -Hansol -Hansom -Hanson -Hanson Ridge -Hanton -Hantz -Hanus -Hanway -Hanworth -Hanyards -Hap Arnold -Hapgood -Happ -Happy -Happy Acres -Happy Choice -Happy Creek -Happy Heart -Happy Hills -Happy Hollow -Happy Valley -Happy Valley Glen -Happyland -Hapton -Hara -Haralson -Haran -Haraszthy -Harback -Harbell -Harben -Harbern -Harberson -Harberton -Harberts -Harbet -Harbin -Harbinger -Harbison -Harbledown -Harbolets -Harbor -Harbor Bay -Harbor Court -Harbor Heights -Harbor Hill -Harbor Hills -Harbor House -Harbor Light -Harbor Lights -Harbor Oak -Harbor Oaks -Harbor Park -Harbor Place -Harbor Point -Harbor Ridge -Harbor Side -Harbor Terrace -Harbor Town -Harbor Tree -Harbor Valley -Harbor View -Harbor Villa -Harbord -Harboro -Harborough -Harborough Hall -Harborside -Harborview -Harborwood -Harbour -Harbour Club -Harbour Cove -Harbour Farm -Harbour Gates -Harbour Heights -Harbour Point -Harbour Shore -Harbour Town -Harbour View -Harbourer -Harbourfield -Harbourne -Harbourtown -Harbourwood -Harbridge -Harbury -Harbut -Harby -Harcombe -Harcourt -Harcross -Harcus -Hard Platts -Hardan -Hardaway -Hardcastle -Harde -Hardees -Hardeman -Harden -Harden Hill -Hardenbergh -Hardenburg -Hardenburgh -Harder -Harders -Hardess -Hardester -Hardesty -Hardfield -Hardie -Hardies -Hardiman -Hardin -Harding -Harding Hall -Hardinge -Hardings -Hardings Elms -Hardman -Hardmans -Hardrock -Hardrow -Hards -Hardscrabble -Hardwell -Hardwick -Hardwicke -Hardwidge -Hardwood -Hardwood Forest -Hardy -Hardy Mill -Hardy Pond -Hardy Ridge -Hardywood -Hare -Hare Farm -Hare Hall -Hare Hill -Harebell -Harecombe -Harecourt -Harecroft -Haredale -Harefield -Harehatch -Harehills -Harehills Compton -Harehills Easterly -Harehills Park -Harelands -Hares -Haresfield -Hareshill -Harestone -Harestone Valley -Hareward -Harewood -Harewood Arms The -Harff -Harfield -Harford -Harfred -Harg -Hargate -Hargate Hill -Harger -Hargo -Hargold -Hargood -Hargrave -Hargraves -Hargreaves -Hargrove -Hargus -Hargwyne -Haring -Haring Farm -Haringa -Haringey -Harjean -Hark -Harkeith -Harker -Harkhurst -Harkim -Harkin -Harking -Harkins -Harkins Slough -Harkison -Harkle -Harkleroad -Harkness -Harlan -Harland -Harlands -Harle -Harlea -Harlech -Harledene -Harleigh -Harlem -Harlem River -Harlequin -Harlescott -Harlesden -Harlesden Manor Park -Harleston -Harley -Harley Run -Harleyford -Harlin -Harling -Harlinger -Harlington -Harliss -Harlow -Harlowe -Harlyn -Harman -Harmans -Harmans Water -Harmel -Harmer -Harmer Green -Harmich -Harmon -Harmon Meadow -Harmoni -Harmony -Harmony Acres -Harmony Grove -Harmony Hall -Harmony Hill -Harmony Ranch -Harmony Woods -Harms -Harmston -Harmsworth -Harn Ranch -Harnden -Harned -Harness -Harness Creek -Harness Creek View -Harness Shop -Harnett -Harney -Harnham -Harnish -Harnleigh -Harnley -Harold -Harold Court -Harold Hill Gooshays -Harold Lees -Harold Parker -Harold Secord -Harold Smith -Harold Woods -Haroldene -Harolds -Haroldslea -Haroldstone -Harp -Harp Farm -Harp Meadow -Harpenden -Harper -Harper Fold -Harper Green -Harpers -Harpers Cove -Harpers Farm -Harpers Ferry -Harpers Mill -Harpesford -Harpford -Harpin -Harpole -Harpour -Harps -Harps Oak -Harpsden -Harpster -Harptree -Harpur -Harpur Hill -Harpurhey -Harrabrook -Harraden -Harrel -Harrell -Harreton -Harridge -Harrier -Harriet -Harriet Tubman -Harriett -Harriette -Harrigan -Harriman -Harringay -Harrington -Harrington Ridge -Harriot -Harriots -Harriott -Harriotts -Harris -Harris Farm -Harris Heights -Harris Hill -Harris Hills -Harris Pond -Harrisburg -Harrishof -Harrison -Harrison Grade -Harrison Hill -Harrison Hollow -Harrison School -Harrisons -Harristown -Harrisville Main -Harrivan -Harrod -Harrogate -Harrogate on Oxford -Harrold -Harrop -Harrop Court -Harrop Edge -Harrop Green -Harrow -Harrow Bottom -Harrow View -Harroway -Harrowband -Harrowby -Harrowden -Harrowdene -Harrowgate -Harrowhill -Harrows -Harrowsgate -Harry -Harry Davis -Harry Homans -Harry J Rogowski -Harry S Truman -Harrys -Harseille -Harsek -Harshman -Harston -Hart -Hart Dyke -Hart Farm -Hart Forest -Hart Hill -Hart Hills -Hart Mews -Harte -Hartell -Harter -Hartfield -Hartford -Hartford Hills -Hartforde -Hartgate -Harthall -Hartham -Harthill -Harthouse -Hartigan -Harting -Harting Farm -Hartington -Hartis -Hartkopf -Hartlake -Hartland -Hartlawn -Hartles -Hartley -Hartley Bottom -Hartley Court -Hartley Old -Hartman -Hartman Creek -Hartman Hill -Hartmann -Hartnell -Hartness -Hartnett -Hartnoll -Hartnup -Hartog -Harton -Hartong -Hartrey -Hartridge -Harts -Harts Hill -Harts Leap -Hartsbourne -Hartsburg -Hartsdale -Hartsfield -Hartshead -Hartshill -Hartshorn -Hartshorne -Hartslands -Hartsmead -Hartson -Hartsop -Hartspiece -Hartspring -Hartsuff -Hartswood -Hartung -Hartungs Oaks -Hartville -Hartway -Hartwell -Hartwich -Hartwick -Hartwood -Harty -Harty Ferry -Hartz -Hartzell -Haruff -Harugari -Harvale -Harvard -Harvard Bend -Harvard Depot -Harve -Harvel -Harvell -Harvest -Harvest Bank -Harvest Bend -Harvest Crossing -Harvest Falls -Harvest Field -Harvest Gold -Harvest Green -Harvest Hill -Harvest Landing -Harvest Mills -Harvest Moon -Harvest Oak -Harvest Park -Harvest Ridge -Harvest Run -Harvest Sun -Harvest Valley -Harvest View -Harvest Woods -Harvester -Harvester Farm -Harvesting -Harvestwood -Harvey -Harvey Lake -Harvil -Harvill -Harville -Harvist -Harwalt -Harwarden -Harwater -Harway -Harwell -Harwich -Harwick -Harwill -Harwin -Harwood -Harwood Hall -Harwoods -Hasbrouck -Hascall -Hascomb -Hascombe -Haseco -Hasedines -Haseldine -Haseley -Haselfoot -Haselrigge -Haseltine -Haselwood -Hasey -Haskard -Haskell -Hasker -Hasketon -Haskett -Haskin -Haskins -Haskney -Haskoll -Haslam -Hasle -Haslemere -Hasler -Haslers -Haslet -Haslett -Haslewood -Hasley -Haslingbourne -Hasluck -Haspel -Hassake -Hassal -Hassall -Hassard -Hassart -Hasselburgh -Hassell -Hassenbrook -Hassendean -Hassert -Hasset -Hassett -Hassler -Hassock -Hassocks -Hassold -Hassop -Hastards -Haste -Haste Hill -Hasted -Hasting -Hastings -Hastings Island -Hastings Mill -Hastings Shore -Hastingwood -Hastoe -Hasty -Hatch -Hatch Gate -Hatch Way -Hatcham -Hatcham Park -Hatchard -Hatcher -Hatchery -Hatches -Hatchet Rock -Hatchett -Hatchetts -Hatchfield -Hatchgate -Hatchlands -Hatchley -Hatchway -Hatcliff -Hatfield -Hatford -Hatham Green -Hathaway -Hatherall -Hatherleigh -Hatherley -Hatherlow -Hatherly -Hathern -Hatherop -Hathersage -Hathersham -Hathershaw -Hatherton -Hatheway -Hathorn -Hathorne -Hathway -Hatley -Hatmark -Hatmill -Hatona -Hatpat -Hattan -Hatte Gray -Hatter -Hatteraick -Hatters -Hatters Hill -Hattersley -Hattie -Hattingley -Hatton -Hatton Point -Hattons -Hatzis -Hauck -Haug -Hauge -Haugh -Haugh Hill -Haughton -Haughton Green -Haughton Hall -Haughwout -Haul -Haultain -Hauman -Hauppauge -Hauschildt -Hauser -Hauser Bridge -Hausman -Haussermann -Haussler -Haussmann -Haussner -Hautevale -Hauth -Hauxhurst -Havana -Havannah -Havant -Havard -Havasu -Havelock -Havelok -Havemeyer -Haven -Haven Green Gordon -Haven Hill -Havenbrook -Havencrest -Havendale -Havenfield -Havengore -Havenhill -Havenhurst -Havenner -Havenpark -Havens -Havensbrook -Havenscourt -Havenshire -Havenside -Havenview -Havenwood -Havenworth -Haverfield -Haverford -Haverhill -Havering -Haverley -Haverlock -Havermeyer -Havers -Haversack -Haversham -Haverstock -Haverthwaite -Haverton -Havey -Havil -Havilah -Havilan -Haviland -Haviland Mill -Havilend -Havis -Havisham -Havlicek -Havre -Havre de Grace -Haw -Haw Clough -Hawaii -Haward -Hawarden -Hawbeck -Hawbridge -Hawdon -Hawes -Haweswater -Haweswood -Hawfinch -Hawgood -Hawhorn -Hawick -Hawk -Hawk Channel -Hawk Crest -Hawk Green -Hawk Hallow -Hawk Haven -Hawk Hill -Hawk Hollow -Hawk Ridge -Hawk View -Hawk Yard -Hawkaway -Hawkchurch -Hawke -Hawke Park -Hawken -Hawkenbury -Hawker -Hawkes -Hawkesbourne -Hawkesbury -Hawkesbury Bush -Hawkesfield -Hawkesmore -Hawkewood -Hawkeye -Hawkfield -Hawkhill -Hawkhirst -Hawkhurst -Hawkins -Hawkins Creamery -Hawkins Gate -Hawkins Hall -Hawkins Point -Hawkridge -Hawks -Hawks Bill -Hawks Hill -Hawks Hollow -Hawks Nest -Hawks Peak -Hawks on Second -Hawksbrook -Hawksbury -Hawkshaw -Hawkshead -Hawkshill -Hawkslade -Hawksley -Hawksmoor -Hawkstone -Hawksview -Hawkswick -Hawkswood -Hawksworth -Hawktree -Hawkview -Hawkweed -Hawkwell -Hawkwell Park -Hawkwood -Hawley -Hawley Woods -Hawleys -Hawlings -Hawlings River -Haworth -Hawridge -Haws -Hawsbrook -Hawser -Hawstead -Hawth -Hawthorn -Hawthorn Park -Hawthorne -Hawthorne Farms -Hawthorne Hill -Hawthorne Ridge -Hawthorne Woods -Hawthrone -Hawtree -Hawtree Creek -Hawtrey -Hawxhurst -Haxby -Haxted -Haxtun -Hay -Hay Camp -Hay Creek Hills -Hay Creek Valley -Hay Currie -Hay Green -Hay Meadow -Hay Path -Haybarn -Hayberry -Haybluff -Hayburn -Haycock -Hayday -Hayden -Hayden Brook -Hayden Lake -Hayden Rowe -Haydens -Haydn -Haydock -Haydon -Haydon Park -Haydons -Hayenga -Hayes -Hayes George -Hayes Lansbury -Hayes End -Hayes End Angel -Hayes Hill -Hayes Leonard -Hayes Manor -Hayes Memorial -Hayes Wood -Hayesford Park -Hayeswater -Hayfield -Hayfields -Hayford -Hayhouse -Hayhurst -Hayle -Hayle Mill -Hayleigh -Hayles -Haylett -Hayley -Haylind -Hayling -Hayloft -Haymaker -Haymakers -Hayman -Haymarket -Haymeadow -Haymeads -Haymen -Haymerle -Haymet -Haymill -Haymond -Hayne -Haynes -Haynes Green -Haynesworth -Hayrack -Hayrick -Hays -Haysbrook -Haysden -Hayshire -Haystack -Hayter -Haythorp -Hayvick -Hayward -Hayward Farms -Hayward Mill -Haywards -Haywards Heath -Haywood -Hayworth -HazEl -HazElton -HazElwood -Hazard -Hazebrouck -Hazel -Hazel Crest -Hazel Dell -Hazel End -Hazel Nut -Hazel Ridge -Hazel Thicket -Hazel Tree -Hazelbadge -Hazelbank -Hazelbottom -Hazelbourne -Hazelbridge -Hazelbrook -Hazelbury -Hazelcrest -Hazeldean -Hazeldell -Hazeldene -Hazeldon -Hazeleigh Hall -Hazelglen -Hazelgrove -Hazelhurst -Hazell -Hazellville -Hazelmead -Hazelmere -Hazelmoor -Hazelnut -Hazelrig -Hazels -Hazeltine -Hazeltine Bluff -Hazelton -Hazeltree -Hazelview -Hazelwick -Hazelwick Mill -Hazelwood -Hazen -Hazlebank -Hazlebury -Hazledean -Hazlehurst -Hazlemere -Hazlet -Hazleton -Hazlett -Hazlewell -Hazlewood -Hazley -Hazlitt -Hazzard -Heacham -Heacox -Head -Headcorn -Headingley -Headingley North -Headingley Shaw -Headingly -Headington -Headlam -Headland -Headlands -Headley -Headley Common -Headley High -Headley Hill -Headline -Headly -Headquarters -Headrow -Headstone -Headwater -Headwaters -Heady Hill -Heafey -Heald -Healds -Healdsburg -Healdwood -Healey -Healing -Health Center -Health Sciences -Healthway -Healy -Healy Farm -Heaney -Heapey -Heapey Fold -Heapworth -Heapy -Heard -Hearford -Hearle -Hearn -Hearne -Hearns -Hearnshaw -Hearnville -Hearsall -Hearst -Heart Leaf -Heartbreak -Heartenoak -Heartfields -Hearth -Hearthridge -Hearthside -Hearthstone -Hearthwood -Heartland -Heartland Ranch -Heartlander -Hearts Bay -Hearts Delight -Heartstead -Heartwood -Heath -Heath Close -Heath Cote -Heath End -Heath Farm -Heath Green -Heath Hall -Heath House -Heath Hurst -Heath Mill -Heath Park -Heath View -Heathbank -Heathbrook -Heathbrow -Heathcliff -Heathclose -Heathcote -Heathcroft -Heathdale -Heathdene -Heather -Heather Crest -Heather Dawn -Heather Dell -Heather Down -Heather Garden -Heather Glen -Heather Green -Heather Heights -Heather Hill -Heather Hills -Heather Mist -Heather Point -Heather Ridge -Heather Tree -Heatherbloom -Heatherbrook -Heathercreek -Heatherdale -Heatherden -Heatherdene -Heatherfield -Heatherhill -Heatherland -Heatherleaf -Heatherleigh -Heatherley -Heathermead -Heathermore -Heathermount -Heatherpace -Heatherside -Heatherstone -Heathertoe -Heatherton -Heatherton Ridge -Heathertree -Heathervale -Heatherview -Heatherway -Heatherwick -Heatherwold -Heatherwood -Heatherwood Estates -Heathfield -Heathfields -Heathgate -Heathhurst -Heathland -Heathlands -Heathlee -Heathleigh -Heathmans -Heathmoor -Heathorn -Heathpark -Heathrow -Heaths Bridge -Heathside -Heathside Park -Heathstan -Heathvale Bridge -Heathview -Heathwalk -Heathwall -Heathway Church Elm -Heathwick -Heathwood -Heathyfields -Heatley -Heaton -Heaton Grange -Heaton Moor -Heaton Park -Heavegate -Heaven -Heaven Hill -Heavenly -Heavenly Ridge -Heaver -Heavey -Heavilin -Heavitree -Hebard -Hebberd -Hebburn -Hebden -Hebe -Heber -Hebert -Heberto -Heberton -Hebron -Hechinger -Hecht -Heckel -Heckelman -Hecker -Hecker Pass -Heckfield -Heckford -Heckle -Heckmondwike -Heckmondwike Regent -Heckmondwyke Market -Heckscher -Hecla -Hectic Hill -Hector -Hedberg -Hedding -Heddings -Heddon -Heddy -Hedegard -Hedge -Hedge Hopper -Hedge Neck -Hedge Place -Hedge Row -Hedgeford -Hedgehog -Hedgehope -Hedgeman -Hedgemans -Hedger -Hedgerley -Hedgerow -Hedges -Hedges Run -Hedgeside -Hedgetop -Hedgewick -Hedgewood -Hedgley -Hediger -Hedin -Hedingham -Hedley -Hedlund -Hedman -Hedrick -Hedsor -Hedwig -Hedworth -Hedy -Heel -Heelan -Heelas -Heeley -Heenan -Heene -Heeswyk -Hefferman -Heffernan -Heflin -Hegarty -Hegel -Hegeman -Hegemans -Hegerty -Heggen -Heggs -Hegi -Heide -Heideburg -Heidelberg -Heiden -Heidenrich -Heidi -Heidi Ranch -Heidleberg -Heidleburg -Heidorn -Heidorn Ranch -Heidrick -Heiges -Heigham -Heights -Heights Of Hill -Heighway -Heikes -Heil -Heilicia -Heiling -Heilsburg -Heimel -Heimgartner -Heims -Hein -Heindel -Heindrich -Heine -Heinel -Heiner -Heinestrasse -Heinke -Heinrich -Heins -Heinz -Heinze -Heinzelman -Heirloom -Heiron -Heiser -Heiskell -Heitzman -Hejka -Hekenberg -Helado -Helby -Helden -Heldt -Heldts -Heldun -Helen -Helen Macintosh -Helen Power -Helena -Helene -Helens -Helenslea -Helenwood -Helfred -Helfrich -Helga -Heling -Helio -Helions -Helios -Heliotrope -Helix -Hellard -Hellards -Hellen -Hellen Lee -Hellendoorn -Hellenic -Heller -Helles -Hellings -Hellman -Hellweg -Hellwig -Hellwood -Hellyer -Helm -Helm Cottage -Helman -Helmar -Helmart -Helmer -Helmet -Helmetta -Helmetta Jamesburg -Helmick -Helmond -Helmons -Helmont -Helmore -Helmsdale -Helmshore -Helmsley -Helmstetter -Helmuth -Helo -Help -Helperby -Helsby -Helsel -Helston -Helton -Heltzer -Helva -Helvellyn -Helvetia -Helvetta -Heman -Hemberton -Hembree -Hembroff -Hembury -Hemdean -Hemel Hempstead -Hemenway -Hemery -Hemet -Heming -Hemingford -Hemington -Hemingway -Hemishor -Hemley -Hemlock -Hemlock Hill -Hemlock Park -Hemlock Pool -Hemlock Ridge -Hemlock Tree -Hemlock Woods -Hemman -Hemme -Hemmen -Hemmer -Hemming -Hemmingsen -Hemmington -Hemmingway -Hemmons -Hemnall -Hemond -Hemp -Hempcroft -Hemphill -Hempland -Hempshaw -Hempshire -Hempson -Hempstead -Hempstead Valley -Hempstone -Hemsby -Hemsley -Hemstal -Hemstead -Hemsted -Hemstock -Hemswell -Hemsworth -Hemwood -Hen Fold -Henage -Henaor -Henbury -Henchman -Henconner -Hendale -Hendee -Hendel -Henderson -Henderson Corner -Hendham -Hendler -Hendley -Hendon -Hendre -Hendrick -Hendricks -Hendrickson -Hendrie -Hendrix -Hendry -Hendy -Henessy -Henfield -Henfold -Hengist -Henham -Henhawk -Henhurst -Henhurst Cross -Heniker -Henitz -Henke -Henkels -Henley -Henley Marine -Henley Wood -Henmar -Henmarken -Henn Parks -Henna -Henneberry -Hennen -Hennepin -Hennepin Town -Hennes -Hennessey -Hennessey Ridge -Hennessy -Hennig -Henniker -Henning -Hennings -Hennion -Hennipen -Henno -Henno Ranch -Hennon -Henny Back -Henoch -Henon -Henri -Henri Hill -Henrici -Henricks -Henrickson -Henrico -Henrietta -Henrik Ibsen Park -Henriques -Henry -Henry Adams -Henry Cowell -Henry Dixon -Henry Doulton -Henry Fleet -Henry Ford II -Henry Garnett -Henry Herz -Henry Hudson -Henry J -Henry Jackson -Henry Kendall -Henry Knox -Henry L. -Henry Lawler -Henry Lawson -Henry Lee -Henry Legg -Henry Long -Henry Macaulay -Henry Peters -Henry Turner Bailey -Henrys -Henryson -Hens Rest -Hensel -Henshall -Henshaw -Henshawe -Hensill -Hensler -Hensley -Henslowe -Henson -Henty -Henwick -Henwood -Henwood Green -Henzi -Henzie -Hepburn -Hepburn Heights -Hepher -Hepley -Hepner -Heppleton -Heppner -Hepscott -Hepworth -Herald -Herald Harbor -Herath -Herb -Herb Elliot -Herb Farm -Herb Hill -Herbage Park -Herbalist -Herbazal -Herberg -Herbert -Herbert Breclaw -Herbert Creek -Herbert Sachs -Herbert Springs -Herberts Crossing -Herbertson -Herbhill -Herbill -Herbing -Herbrand -Herbst -Herchell -Hercies -Hercules -Herd -Herdlyn -Heredia -Heredity -Hereford -Herendon -Herent -Herevale Hall -Hereward -Herford -Herfort -Herga -Hergesell -Herget -Hering -Heriot -Heristone -Heritage -Heritage Crossing -Heritage Estates -Heritage Farm -Heritage Farms -Heritage Glen -Heritage Hill -Heritage Hills -Heritage Hunt -Heritage Lake -Heritage Landing -Heritage Manor -Heritage Meadow -Heritage Meadows -Heritage Oaks -Heritage Park -Heritage Rose -Heritage Square -Heritage Tree -Heritage Valley -Heritage Village -Heritage Woods -Herkimer -Herkner -Herkomer -Herley -Herlihy -Herlong -Herma -Hermaine -Herman -Herman Melville -Hermann -Hermans -Hermany -Hermasillo -Hermes -Hermies -Hermina -Hermine -Hermington -Hermiston -Hermit -Hermit Ranch -Hermitage -Hermitage Hills -Hermits -Hermitt -Hermleigh -Hermon -Hermon Hill Chigwell -Hermongers -Hermosa -Hermoyne -Hernandez -Hernando -Hernbrook -Herndon -Herne -Hernen -Herning -Herns -Hero -Herodian -Herold -Heron -Heron Bay -Heron Flight -Heron Lake -Heron Lakes -Heron Pond -Heron Wood -Herondale -Herons -Herons Nest -Herons Run -Heronslea -Heronswood -Herontye -Heronvue -Heronwood -Heroult -Heroux -Herpers -Herr -Herren -Herrera -Herrett -Herrick -Herricks -Herrier -Herries -Herriman -Herring -Herring Bay -Herring Brook -Herring Creek -Herring Pond -Herring Weir -Herringham -Herrings -Herrington -Herriot -Herriott -Herristone -Herrmann -Herrod -Herron -Hersam -Hersand -Hersch Farm -Herschel -Herschell -Hersey -Hersham -Hershey -Hershfield -Hershner -Hershon -Hersley -Hersman -Hersperger -Herst -Herston -Hertel -Herter -Hertford -Hertingfordbury -Hertslet -Hertsmere -Hervey -Hervey Park -Hervines -Herwick Hall -Herzel -Herzl -Herzog -Hesket -Hesketh -Hesketh Meadow -Heskin -Heslop -Hespeller -Hesper -Hesperian -Hesperus -Hess -Hesse -Hesse Farm -Hessel -Hesseltine -Hession -Hessle -Hessler -Hessney -Hesten -Hester -Hester Creek -Hestercombe -Hesterman -Heston -Heswall -Hetfield -Hetherden -Hetherington -Hetherton -Hethorn -Hethrow -Hetley -Heton -Hetrick -Hett -Hetten -Hettiefred -Hettinger -Hetton -Hetts -Hetzel -Heuer -Heurich -Heusted -Heustis -Heuters -Hevelyne -Hever -Hever Court -Hever Wood -Heverham -Hevern -Hevers -Hevey -Hevingham -Hew Watt -Hewart -Hewbold Hall -Hewer -Hewes -Hewetson -Hewett -Hewins -Hewins Farm -Hewison -Hewitt -Hewitts -Hewlett -Hewlett Heath -Hewlett Neck -Hewlett Point -Hewmason -Hews -Hewshott -Hewson -Hexal -Hexem -Hexham -Hextol -Hexton -Hexton Hill -Hey -Hey Beck -Hey Hoe Woods -Heybourne -Heybridge -Heybrook -Heycroft -Heyde -Heydon -Heyer -Heyes -Heyes Farm -Heyeswood -Heyford -Heygate -Heyheads New -Heykens -Heyland -Heyman -Heynes -Heyridge -Heyrod -Heys -Heysbank -Heysen -Heysham -Heyshoot -Heyside -Heysoms -Heyson -Heythorp -Heyward -Heyward Hills -Heywood -Heywood Fold -Heywood Hall -Heywood Old -Heyworth -Hezlet -Hezlett -Hh -Hi Grade -Hi Lo -Hi Vista -Hi Wood -Hialeah -Hiar -Hiawatha -Hibbard -Hibbert -Hibbling -Hibel -Hibernia -Hibiscus -Hibler -Hibner -Hichborn -Hichisson -Hickerson -Hickey -Hickey Hollow -Hickin -Hickman -Hickmans -Hickock -Hickok -Hickory -Hickory Bend -Hickory Cliff -Hickory Creek -Hickory Forest -Hickory Hill -Hickory Hills -Hickory Hollow -Hickory Knoll -Hickory Leaf -Hickory Nut Grove -Hickory Oaks -Hickory Point -Hickory Ridge -Hickory Run -Hickory Spring -Hickory Tavern -Hickory Trace -Hickory Valley -Hickory Wood -Hickorywood -Hickox -Hicks -Hicks Corner -Hicks Point -Hicks Valley -Hickson -Hickstead -Hicksville -Hickton -Hidalgo -Hidcote -Hidden -Hidden Acres -Hidden Bay -Hidden Brick -Hidden Bridge -Hidden Brook -Hidden Canyon -Hidden Cove -Hidden Creek -Hidden Falls -Hidden Farm -Hidden Fawn -Hidden Garden -Hidden Glade -Hidden Glen -Hidden Green -Hidden Harbor -Hidden Hill -Hidden Hills -Hidden Hollow -Hidden Knoll -Hidden Lake -Hidden Lakes -Hidden Ledge -Hidden Meadow -Hidden Mine -Hidden Moon -Hidden Oak -Hidden Oakes -Hidden Oaks -Hidden Pine -Hidden Pines -Hidden Point -Hidden Pond -Hidden Ponds -Hidden Ridge -Hidden River -Hidden River View -Hidden Spring -Hidden Springs -Hidden Trail -Hidden Vale -Hidden Valley -Hidden View -Hidden Village -Hiddenbrook -Hiddenbrooke -Hiddenhollow -Hiddenlake -Hiddenvale -Hiddenwood -Hide A Way -Hide Away -Hideaway -Hideout -Hides -Hideway -Hieber -Hield -Higate -Higbee -Higbie -Higby -Higdon -Higfh Bank -Higgerson -Higginbotham -Higgins -Higgins Park East -Higgins Park South -Higgins Park West -Higgins Purisima -Higgins Quarter -Higginshaw -Higginson -Higgs -High -High Ash -High Bank -High Bar -High Barn -High Beech -High Beeches -High Bent -High Bluff -High Bridge -High Broom -High Brooms -High Cedar -High Clear -High Cliff -High Cliffe -High Country -High Court -High Crest -High Cross -High Dewar -High Down -High Eagle -High Easter -High Elm -High Elms -High Farms -High Field -High Forest -High Gables -High Gate -High Glen -High Green -High Grove -High Grove Hills -High Gulch -High Haith -High Halden -High Hamstead -High Hatch -High Hay -High Hill -High Hills -High Holborn -High Hollow -High Hope Canyon -High House -High Knob -High Knoll -High Lake -High Lea -High Lee -High Legh -High Level -High Low -High Meadow -High Meadows -High Meads -High Mountain -High Oak -High Oaks -High Oxford -High Park -High Path -High Peak -High Pine -High Pines -High Plain -High Plains -High Plane -High Point -High Point Trails -High Pond -High Rid -High Ridge -High Rock -High Rocks -High School -High School Windmill -High School Windsor -High Site -High Terrace -High Thicket -High Timber -High Tor -High Town -High Trail -High Tree -High Trees -High Valley -High View -High View School -High Weardley -High Wood -High Woodhall -High Woods -High Wych -HighLands -Higham -Higham Hill -Higham School -Highams -Highbank -Highbanks -Highbarrow -Highboro -Highbourne -Highbridge -Highbrook -Highbury -Highbush -Highclere -Highcliff -Highcliffe -Highclove -Highcotts -Highcourt -Highcrest -Highcroft -Highcross -Highdales -Highdaun -Highdown -Highdown The Manor -Highdown Hill -Higher -Higher Barn -Higher Bents -Higher Bridge -Higher Bury -Higher Cambridge -Higher Carr -Higher Chatham -Higher Cross -Higher Darcy -Higher Dean -Higher Grange -Higher Green -Higher Knutsford -Higher Lime -Higher Lomax -Higher Market -Higher Ormond -Higher Pit -Higher Shady -Higher Swan -Higher Tame -Higher Turf -Higherdale -Highet -Highett -Highfield -Highfield Park -Highfields -Highgate -Highgate High -Highgoal -Highgrove -Highhill -Highhold -Highknob -Highland -Highland Corporate -Highland Creek -Highland Estates -Highland Farm -Highland Glen -Highland Grove -Highland Hall -Highland Heights -Highland Hills -Highland Lake -Highland Meadows -Highland Oaks -Highland Park -Highland Ridge -Highland Springs -Highland View -Highland Vista -Highland Woods -Highlander -Highlands -Highlandview -Highlawn -Highledge -Highlever -Highline -Highmead -Highmeadow -Highmoor -Highmore -Highmount -Highover -Highpath -Highpoint -Highpointe -Highridge -Highrise -Highrock -Highs -Highschool -Highshore -Highstead -Highsted -Highstream -Highthorne -Hightimber -Hightop -Hightown -Hightree -Highvale -Highview -Highwater -Highway -Highwood -Highwoodhall -Highwoods -Highworth -Higland -Higley -Higmoor -Higson -Higton -Higuera -Higuero -Higuero Highland -Hihn -Hihns Sulphur Spring -Hikido -Hikmat -Hil Ray -Hila -Hilaire -Hiland -Hilarita -Hilary -Hilbar -Hilbert -Hilbery -Hilborn -Hilborough -Hilbre -Hilburn -Hilbury -Hilcot -Hilda -Hilda May -Hildarose -Hildaville -Hilde -Hildebrand -Hildegard -Hildegarde -Hilden -Hilden Park -Hildenborough -Hildene -Hildens -Hilder -Hilderbrand -Hilders -Hilding -Hildreth -Hildyard -Hileen -Hileman -Hiles -Hiley -Hiley Brook -Hilfield -Hilgard -Hilgrove -Hilier -Hiline -Hilingdon -Hiliritas -Hill -Hill Born -Hill Brow -Hill Burne -Hill Climb -Hill Cot -Hill Court -Hill Crest -Hill Cumorah -Hill Dyke -Hill End -Hill Farm -Hill Field -Hill Girt Ranch -Hill Glen -Hill Green -Hill Hollow -Hill House -Hill Meade -Hill Meadow -Hill Oaks -Hill Park -Hill Path -Hill Point -Hill Pond -Hill Ridge -Hill Side -Hill Top -Hill Top View -Hill Trail -Hill View -Hillaire -Hillairy -Hillandale -Hillando -Hillantrae -Hillard -Hillard Lake -Hillars Heath -Hillary -Hillary Farm -Hillas -Hillbarn -Hillberg -Hillborough -Hillbottom -Hillbourne -Hillbrook -Hillbrooke -Hillbrow -Hillburn -Hillbury -Hillcap -Hillcot -Hillcote -Hillcourt -Hillcreek -Hillcrest -Hillcrest Park -Hillcrest View -Hillcroft -Hillcroome -Hillcross -Hilldale -Hilldeane -Hilldene -Hilldirk -Hilldown -Hilldrop -Hillegass -Hillen -Hillend -Hillendale -Hiller -Hillersdon -Hillery -Hillesden -Hillesley -Hilleyfield -Hillfield -Hillflower -Hillfoot -Hillgate -Hillgirt -Hillgrade -Hillgrove -Hillhaven -Hillhouse -Hillhurst -Hilliard -Hilliards -Hillidge -Hillier -Hilliers -Hilliger -Hilline -Hillingdon -Hillington -Hillis -Hillman -Hillmarton -Hillmead -Hillmeade -Hillmeyer -Hillmont -Hillmoor -Hillock -Hilloway -Hillpine -Hillplace -Hillridge -Hillrise -Hillrod -Hillrose -Hills -Hills Farm -Hills View -Hills of Claire -Hillsboro -Hillsboro Hunt -Hillsborough -Hillsdale -Hillshire -Hillside -Hillside Manor -Hillside Park -Hillside View -Hillsleigh -Hillslope -Hillsman -Hillsmere -Hillspark -Hillspoint -Hillspur -Hillstone -Hillstowe -Hillsview -Hillswood -Hillthorpe -Hillton -Hilltop -Hilltop Mall -Hilltree -Hillturn -Hillvale -Hillveiw -Hillview -Hillway -Hillwick -Hillwood -Hillworth -Hilly -Hillyard -Hillybarn -Hillydeal -Hillyer -Hilma -Hilmar -Hilmay -Hilmer -Hilmont -Hilo -Hilow -Hilrose -Hilsden -Hilsea -Hilsinger -Hiltibrand -Hilton -Hilton Fold -Hilton Head -Hilton Hill -Hilts -Hilversum -Hilwa -Himelfarb -Himley -Himmel -Himoor -Himrod -Hinchen -Hinchinbrook -Hinchingham -Hinchley -Hinchman -Hinckley -Hinckley Basin Fire -Hincks -Hind -Hind Hill -Hinde -Hindemith -Hindes -Hindhay -Hindhead -Hindiyeh -Hindle -Hindleap -Hindles -Hindley -Hindley Mill -Hindmans -Hindmarsh -Hindostan -Hindrey -Hinds -Hindsford -Hine -Hinemoa -Hines -Hing -Hingham -Hingston -Hinguar -Hinkle -Hinkler -Hinkley -Hinksden -Hinman -Hinricher -Hinsbrook -Hinsdale -Hinson Farm -Hinspeter -Hinstock -Hinston -Hinswood -Hinterlong -Hinton -Hinton Manor -Hinton Ranch -Hintz -Hintzewater -Hinxman -Hipley -Hipplers -Hipsley Mill -Hipwood -Hirabayashi -Hiram -Hird -Hirliman -Hiromi -Hirsch -Hirschberg -Hirst -Hirtes -Hirth -Hiscox -Hisperry -Historic -Historic Country -Historical -History -Hitch -Hitch Common -Hitcham -Hitchcock -Hitchcock Farm -Hitchen -Hitchen Hatch -Hitches -Hitchin -Hitching Post -Hitchings -Hitchins -Hitchwood -Hither Farm -Hitherbroom -Hithercroft -Hitherfield -Hitherwell -Hitherwood -Hito -Hitsman -Hitter -Hittinger -Hitty Tom -Hive -Hix -Hixberry -Hixon -Hixson -Hixson Farm -Hjelm -Hllwood -Hnery -Hoad -Hoade -Hoadley -Hoadly -Hoag -Hoagland -Hoaglands -Hob -Hob Hey -Hobamack -Hobart -Hobbayne -Hobbes -Hobbie -Hobbis -Hobbitt -Hobble Bush -Hobblebush -Hobbs -Hobbs Brook -Hobbs Cross -Hobbs Hill -Hobby -Hobcroft -Hobday -Hobdens -Hobe -Hoberg -Hobert -Hobhouse -Hobie -Hobler -Hobletts -Hobleythick -Hoboken -Hobomack -Hobomock -Hobson -Hobson Hollow -Hobson Mill -Hobson Moor -Hobson Oaks -Hobson Trails -Hobson Valley -Hobtoe -Hobury -Hochler -Hock Farm -Hockenden -Hocker -Hockerill -Hockering -Hockerley -Hockers -Hockett -Hockey -Hockin -Hocking -Hockley -Hockliffe -Hockney -Hocroft -Hoddam -Hodder -Hoddesdon -Hoddeston -Hoddle -Hodds -Hodel -Hodge -Hodge Clough -Hodgedale -Hodges -Hodgkins -Hodgkinson -Hodgson -Hodings -Hodlmair -Hodnett -Hodsoll -Hodson -Hoe -Hoe Mill -Hoecroft -Hoeder -Hoeffner -Hoeg -Hoehn -Hoelands -Hoen -Hoen Frontage -Hoerl -Hoestock -Hoeweed -Hoff -Hoffer -Hoffman -Hoffman Woods -Hoffmans -Hoffstead -Hoffstots -Hoford -Hofstra -Hog -Hog Farm -Hog Hatch -Hog Hill -Hog Neck -Hogan -Hogarth -Hogback -Hogback Wood -Hogbarn -Hogben -Hogden -Hoge -Hogeland Mill -Hogenkamp -Hogfair -Hogg -Hogg End -Hogg Memorial -Hoggshill -Hoghole -Hogmoor -Hogoak -Hogscross -Hogsdell -Hogshaw -Hogshaw Villas -Hogshill -Hogsmill -Hogspudding -Hogstough -Hogtrough -Hogue -Hogwood -Hohener -Hohlfelder -Hohman -Hoile -Hoiles -Hoiting -Hoitt -Hokah -Hokanson -Hoke -Holabird -Holasek -Holbeach -Holbeam -Holbeche -Holbeck -Holbeck Moor -Holbein -Holbek -Holberton -Holborn -Holborn Theobalds -Holborough -Holborow -Holbrook -Holbrook School -Holbrooke -Holburn -Holburne -Holcolme -Holcomb -Holcombe -Holcombe Old -Holcott -Holcroft -Holdcroft -Holden -Holden Clough -Holden Park -Holden Pond -Holdenby -Holdener -Holdenhurst -Holdenwood -Holder -Holderith -Holderman -Holderness -Holdernesse -Holders -Holders Hill -Holdfast -Holding -Holdridge -Holdrum -Holdsworth -Hole -Hole House -Holeclaw -Holegate -Holehouse -Holeman -Holesapple -Holeton -Holey -Holford -Holgate -Holhouse -Holiday -Holiday Hill -Holiday Hills -Holiday Park -Holiday Plaza -Holiday Ranch -Holin -Holister -Holkein -Holker -Holkham -Hollace -Hollacher -Holladay -Holladay Park -Holland -Holland Cliffs -Holland House -Holland Meadow -Holland Park -Holland Tract -Holland Villas -Hollanda -Hollander -Hollands -Hollar -Hollaway -Hollbrook -Hollen -Hollenbeck -Hollers -Hollerton -Holles -Hollett -Holley -Holleys -Holleyside -Hollhey -Holliben -Hollice -Hollicks -Hollickwood -Hollicombe -Holliday -Hollies -Holligrave -Hollin -Hollin Hey -Hollin Hill -Hollin Park -Hollinbank -Hollincross -Hollindale -Hollingdon -Hollinger -Hollings -Hollingshed -Hollingswood -Hollingsworth -Hollington -Hollingworth -Hollinhall -Hollinhurst -Hollins -Hollins Ferry -Hollins Green -Hollinsmoor -Hollinswood -Hollinsworth -Hollinwood -Hollis -Hollis Canyon -Hollis Court -Hollis Wood -Hollist -Hollister -Holliston -Holliwood -Hollman -Holloman -Hollow -Hollow Hill -Hollow Log -Hollow Oak -Hollow Park -Hollow Ridge -Hollow Spring -Hollow Tree -Hollow Tree Ridge -Hollow View -Hollow Way -Hollow Wood -Holloway -Holloways -Hollowbrook -Hollowdale Farm -Hollowell -Hollowfield -Hollowood -Hollowside -Hollowstone -Holly -Holly Auto Center -Holly Bank -Holly Beach Farm -Holly Berry -Holly Briar -Holly Bush -Holly Creek -Holly Crest -Holly Croft -Holly Cross -Holly Dene -Holly Farm -Holly Farms -Holly Forest -Holly Gate -Holly Gillingham -Holly Glen -Holly Green -Holly Grove -Holly Haven -Holly Hedge -Holly Hedges -Holly Hill -Holly Hills -Holly Hock -Holly House -Holly Knoll -Holly Lake -Holly Landing -Holly Leaf -Holly Loch -Holly Lynn -Holly Manor -Holly Marie -Holly Oak -Holly Park -Holly Point -Holly Ridge -Holly Spring -Holly Tree -Holly View -Holly la Access -Hollyann -Hollybank -Hollyberry -Hollybrook -Hollyburne -Hollybush -Hollycrest -Hollycroft -Hollycross -Hollydale -Hollyedge -Hollyfield -Hollyford -Hollygate -Hollygrape -Hollyhead -Hollyhedge -Hollyhey -Hollyhill -Hollyhock -Hollylea -Hollymead -Hollymeade -Hollymeoak -Hollymoor -Hollymount -Hollyoak -Hollyridge -Hollyrood -Hollys -Hollyshaw -Hollyspring -Hollythorn -Hollytree -Hollyview -Hollywater -Hollywood -Holm -Holm Mill -Holm Oak -Holman -Holmard -Holmbank -Holmbrook -Holmbury -Holmbury Hill -Holmbush -Holmcroft -Holmdale -Holmdel -Holmdel Middletown -Holmdell -Holmdene -Holme -Holme Farm -Holme House -Holme Lacey -Holme Lea -Holme Wood Felcourt -Holme Wood Heysham -Holme Wood Landscove -Holmead -Holmebrook -Holmefield -Holmehill -Holmemoor -Holmer -Holmer Green -Holmerdale -Holmes -Holmes Run -Holmesdale -Holmesley -Holmespun -Holmeswood -Holmethorpe -Holmewell -Holmewood -Holmfield -Holmfirth -Holmhurst -Holmlea -Holmleigh -Holmpark -Holmquist -Holmscroft -Holmshill -Holmside -Holmsley -Holmsley Field -Holmstall -Holmstead -Holmwood -Holmwood View -Holness -Holohan -Holroyd -Holsclaw -Holsing -Holsman -Holst -Holste -Holstein -Holster -Holstock -Holston -Holstrom -Holsworth -Holsworthy -Holt -Holt Head -Holt Park Chestnut -Holt Wood -Holtby -Holtdale -Holte -Holter -Holtermann -Holthouse -Holton -Holton Woods -Holts -Holtsmere End -Holtspur -Holtspur Top -Holtye -Holtz -Holub -Holway -Holwell -Holwell Hyde -Holwick -Holwood -Holworthy -Holy City -Holy Cross -Holy Harbour -Holy Name -Holy Ridge -Holy Trinity -Holybourne -Holybread -Holybrook -Holyfield -Holyoak -Holyoake -Holyoke -Holyport -Holyrood -Holywell -Holywood -Holzheimer -Homan -Homann -Homans -Hombrook -Home -Home Acres -Home Crest -Home Depot -Home Farm -Home Gate -Home Guard -Home Lawn -Home Meadows -Home Park -Home Park Mill Link -Home Place -Homebury -Homebush -Homebush Bay -Homecoming -Homecrest -Homecroft -Homedale -Homedean -Homefarm -Homefield -Homefields -Homeglen -Homeland -Homelands -Homelea -Homeleigh -Homemead -Homemeadow -Homeplace -Homepride -Homer -Homer Wheaton -Homerite -Homerlee -Homers -Homers Wood -Homersham -Homerton -Homerton High -Homes -Homes Park -Homesdale -Homeside -Homesite -Homespun -Homestake -Homestall -Homestead -Homestead Farm -Homestead Heights -Hometown -Homeview -Homeward -Homeward Glen -Homeward Hill -Homeward Hills -Homewards -Homewood -Homewood Landing -Hommann -Hommell -Hommocks -Homsted -Homsy -Honda -Honduras -Hone -Honest Pleasure -Honesty -Honey -Honey Bear -Honey Bridge -Honey Brook -Honey Creek -Honey Croft -Honey End -Honey Hill -Honey Lake -Honey Locust -Honey Pot -Honey Suckle -Honeybear -Honeybee -Honeybourne -Honeybrook -Honeycomb -Honeycritch -Honeycrock -Honeycross -Honeydew -Honeygold -Honeyhill -Honeymoon -Honeymyrtle -Honeynut -Honeysett -Honeysuckle -Honeysuckle Rose -Honeytree -Honeywell -Honeywood -Honfleur -Honford -Hong Kong -Honiss -Honister -Honiton -Honker -Honley -Honnicut -Honnor -Honolulu -Honor -Honor End -Honor Oak -Honora -Honore -Honors -Honsa -Honsena -Hontar -Honved -Honywood -Hoo -Hoo Green -Hoobyar -Hood -Hood Farm -Hood Franklin -Hood School -Hooded Crow -Hooe -Hooes -Hooffs Run -Hook -Hook Creek -Hook End -Hook Farm -Hook Gate -Hook Green -Hook Harbor -Hook Heath -Hook Hill -Hook Mountain -Hooke -Hookend -Hooker -Hookhouse -Hooking -Hooklands -Hookley -Hookmill -Hooks -Hooks Hall -Hookstile -Hookston -Hookstone -Hookwood -Hooley -Hooleyhay -Hooper -Hooper High -Hooper Lake -Hoopers -Hoopes -Hoosic -Hoot Owl -Hooten -Hooton -Hoover -Hoover Farm -Hooyman -Hop -Hop Brook -Hop Garden -Hop Gardens -Hop Pocket -Hop Ranch -Hopark -Hopatcong -Hope -Hope Acres -Hope Carr -Hope Chapel -Hope Farm -Hope Fold -Hope Hey -Hope Park -Hopeco -Hopedale -Hopefield -Hopehouse -Hopeland -Hopelea -Hopes Farm -Hopestill -Hopestill Brown -Hopeton -Hopetoun -Hopewell -Hopewell Farm -Hopewood -Hopfield -Hopgarden -Hopgood -Hophurst -Hopi -Hopke -Hopkin -Hopkins -Hopkins Gulch -Hopkinson -Hopkinton -Hopman -Hoppa -Hopper -Hopper Farm -Hoppers -Hoppett -Hoppin -Hoppin Hill -Hopping -Hopping Brook -Hopping Jacks -Hoppingwood -Hoppit -Hoppner -Hopps -Hoppys -Hops -Hopson -Hopton -Hopwood -Hopyard -Horace -Horace Darling -Horace Harding -Horace Ward -Horatio -Horbling -Horbor -Horbury -Horcajo -Horde -Horder -Hordern -Horderns -Horeb -Horest -Horewood -Horgan -HorizOn -Horizen Island -Horizon -Horizon Hts -Horizons -Horkesley -Horley -Horley Lodge -Horlock -Horman -Hormead -Horn -Horn Beam -Horn Blower -Horn Point -Horn Pond Brook -Hornash -Hornbaker -Hornbeam -Hornbeam Hill -Hornbeams -Hornbeck -Hornblower -Hornbrook -Hornbuckle -Hornby -Horncastle -Hornchurch -Hornchurch Grosvenor -Horndean -Horne -Horne Tooke -Hornecastle -Hornell -Horner -Hornes Green -Hornet -Horneywood -Hornez -Hornfair -Hornhill -Hornidge -Horning -Horning sea Park -Horningsea Park -Horns -Horns Lodge -Horns Oak -Hornsby -Hornsea -Hornsey -Hornsey Park -Hornshay -Hornshill -Hornsmill -Hornton -Horridge -Horrigan -Horrobin -Horrocks -Horrocks Fold -Horsa -Horse -Horse Center -Horse Ferry -Horse Guards -Horse Hill -Horse Hollow -Horse Island -Horse Lake -Horse Pen -Horse Pond -Horse Prairie -Horse Shoe -Horseblock -Horsebrass -Horsedge -Horsefair -Horseferry -Horseforth -Horsegrove -Horseguard -Horseguards -Horsehead -Horseless Carriage -Horsell -Horsell Common -Horselydown -Horseman -Horsemans -Horsemans Canyon -Horsemoor -Horsenden -Horseneck -Horseneile -Horsepond -Horseshoe -Horseshoe Bend -Horseshoe Hill -Horseshoes -Horsetail -Horsewash -Horsfall -Horsfeld -Horsfield -Horsford -Horsforth Town -Horsham -Horsley -Horsman -Horsmann -Horsmonden -Horsnell -Horst -Horsted -Hort -Hortense -Hortensia -Horton -Horton Bridge -Horton Hill -Hortonia Point -Hortree -Hortus -Horwath -Horwedel -Horwich -Horwood -Hory -Hosack -Hosdens -Hoser -Hosey -Hosey Common -Hosford -Hosford Hills -Hosie -Hosier -Hosker -Hoskier -Hoskin -Hosking -Hoskins -Hoskinson -Hosler -Hosmer -Hospital -Hospital Cent Ser -Hospital High -Hospital Ring -Hosta -Hostetter -Hotaling -Hotchkin -Hotchkiss -Hotel -Hotham -Hother -Hothersall -Hothfield -Hothorn -Hotin -Hotley Bottom -Hotson -Hotspur -Hottel -Hotten -Houbolt -Houchin -Houde -Hough -Hough End -Hough Hall -Hough Hill -Hough Side -Hough Tree -Houghend -Houghley -Houghton -Houghton Green -Houghton Park -Houldsworth -Houldworth -Houle -Houlton -Hound House -Hound Run -Houndhill -Houndmaster -Houndmills -Houndridge -Hounds -Hounds Ditch -Houndsden -Houndsfield -Houndsworth -Hounslow -Hounslow High -Hour Glass -Houret -Hourglass -Hourihan -Hourseywood -Housatonic -House -House Rock -House Works -House of Correction -Houselands -Houseley -Houseman -Houser -Housley -Housman -Houson -Houston -Houtman -Houtmann -Houts -Hove -Hoveden -Hovefields -Hovell -Hoven -Hovenden -Hoverman -Hovey -Hovingham -Hovis -How -How Green -How Lea -Howard -Howard Castle -Howard Chapel -Howard Farm -Howard Farms -Howard Gleason -Howard Grove -Howard Hills -Howard Lake -Howard Landing -Howard Manor -Howard Park -Howards -Howards Point -Howards Wood -Howardton -Howarth -Howarth Cross -Howatt -Howbourne -Howbridge -Howbridge Hall -Howbro -Howbury -Howden -Howden Clough -Howdy -Howe -Howe Green -Howell -Howell Mountain -Howells -Howerton -Howes -Howes Brook -Howgate -Howgill -Howie -Howison -Howitt -Howitzer -Howkins -Howland -Howland Hill -Howlands -Howlett -Howletts -Howley -Howley Mill -Howley Park -Howliston -Hows -Howse -Howsen -Howser -Howsin -Howsman -Howson -Howth -Howton -Hoxett -Hoxey -Hoxie -Hoxton -Hoxton Baring -Hoxton Park -Hoy -Hoya -Hoyer -Hoyet -Hoylake -Hoyle -Hoyles -Hoyles Mill -Hoym -Hoyne -Hoysville -Hoysville Manor -Hoyt -Hoyts -Hoyts Wharf -Hoytt -Hozz -Hren -Hub -Hubbard -Hubbard Gulch -Hubbard Park -Hubbard School -Hubbards -Hubbardston -Hubbardton -Hubbartt -Hubbell -Hubberd -Hubbert School -Hubble -Huber -Hubert -Hubert H Humphrey -Hubon -Hubs Point -Huck -Huckins -Huckleberry -Huckleberry Hill -Hucklow -Hud -Hudcar -Huddart -Huddart Park -Huddersfield -Huddleson -Huddleston -Huddlestone -Huddy -Hudee -Hudis -Hudleston -Hudnall -Hudner -Hudson -Hudson Bay -Hudson Bluff -Hudson Crest -Hudson Landing -Hudson Park -Hudson River -Hudson Service -Hudswell -Huehl -Huehn -Huerto -Huested -Huey -Huff -Hugel Hill -Hugenot -Huggins -Hugh -Hugh Bennett -Hugh Cargill -Hugh Dalton -Hugh Dickson -Hugh Fraser -Hugh Hill -Hugh Lupus -Hugh Muir -Hughan -Hughen -Hughenden -Hughes -Hughesdale -Hughey -Hughline -Hugletts -Hugo -Hugon -Huguenot -Hugus -Huhtala -Huie -Huizenga -Hula -Hulbert -Hulet -Hulfords -Hull -Hull Shore -Hullbridge -Hulley -Hulls -Hulls Mill -Hulme -Hulme Hall -Hulme High -Hulmes -Hulseheath -Hulton -Humar Pond -Humber -Humberstone -Humbert -Humblebee -Humboldt -Humbolt -Humbug -Humbug Creek -Hume -Hume Hall -Humes -Humma Yeppa -Hummer -Humming -Hummingbird -Hummingbird Hill -Hummock -Hump -Humphrey -Humphreys -Humphries -Humphrys -Hunbldt -Huncoat -Huncote -Hundertmark -Hundred Acre -Hundred Acres -Hundred Oaks -Hundredhouse -Hundreds -Hundsford -Hunewill -Hunger Hill -Hunger Hills -Hungerden -Hungerford -Hungers -Hungry Harbor -Hungry Hill -Hungry Hollow -Hunington -Hunkele -Hunken -Hunnable -Hunner -Hunnewell -Hunnicutt -Hunolt -Hunsaker -Hunsaker Canyon -Hunsdon -Hunslet -Hunslet Hall -Hunsley -Hunstanton -Hunston -Hunsworth -Hunt -Hunt Club -Hunt Country -Hunt Farm -Hunt Fold -Hunt Hill -Hunt Manor -Hunt Master -Hunt Meadow -Hunt Ridge -Hunt Valley -Hunt Way -Huntchase -Huntcliff -Hunteigh -Hunter -Hunter Creek -Hunter Hill -Hunter Mill -Hunter Mountain -Hunter Ridge -Hunter View -Hunter Village -Hunterbrook -Hunterbrooke -Huntercombe End -Hunterdon -Hunters -Hunters Chase -Hunters Club -Hunters Creek -Hunters Den -Hunters Gate -Hunters Glen -Hunters Grove -Hunters Hall -Hunters Harbor -Hunters Hill -Hunters Point -Hunters Ridge -Hunters Valley -Hunters View -Huntersend -Hunterspoint -Hunterton -Huntfield -Huntgate -Hunting -Hunting Creek -Hunting Crest -Hunting Farms -Hunting Gate -Hunting Hill -Hunting Hollow -Hunting Horn -Hunting Horse -Hunting Hound -Hunting Lake -Hunting Quarter -Hunting Ridge -Hunting Shire -Huntingdale -Huntingdon -Huntingfield -Huntingfields -Huntington -Huntington Bay -Huntington Commons -Huntington Estates -Huntington Farm -Huntington Squ -Huntington Square -Huntington Village -Huntington Woods -Huntingtown -Huntingwood -Huntland -Huntleigh -Huntley -Huntley Automall -Huntley Meadows -Huntley Mount -Huntley Square -Huntley Woods -Huntleys Point -Huntly -Huntmar Park -Huntmaster -Hunton -Huntoon -Huntover -Huntress -Huntridge -Huntroyde -Hunts -Hunts Bridge -Hunts Hill -Hunts Point -Hunts Pond -Hunts Slip -Huntsbottom -Huntsbridge -Huntshire -Huntsman -Huntsmans -Huntsmill -Huntsmoor -Huntsmore -Huntspill -Huntsville -Huntswood -Huntting -Huntwood -Huntwood Manor -Huntzinger -Huon -Huppenthal -Huran -Hurd -Hurden -Hurdis -Hurdle Hill -Hurds -Hurdsfield -Hurford -Hurlands -Hurlbert -Hurlburt -Hurlbut -Hurlcroft -Hurley -Hurlingham -Hurlock -Hurlstone -Hurn Court -Hurnard -Hurndell -Huron -Hurricane -Hursley -Hurst -Hurst Bank -Hurst Farm -Hurst Green -Hurst Lea -Hurst Mill -Hurst Park -Hurstbank -Hurstborne -Hurstbourne -Hurstbrook -Hurstcourt -Hurstdene -Hurstead -Hurstfield -Hurstfold -Hurstford -Hurstheads -Hurstleigh -Hurstvale -Hurstville -Hurstwood -Hurtmore -Hurtwood -Hus -Huse -Huseman -Hushbeck -Husker -Husking Peg -Huskisson -Huskwood -Husky -Husman -Huss -Hussa -Hussey -Husson -Hust -Husteads -Husted -Hustlings -Huston -Hutchenson -Hutcheson -Hutchings -Hutchingsons -Hutchins -Hutchinson -Hutchinson River -Hutchison -Hutchison Valley -Hutson -Hutter -Hutton -Hutton Hill -Huxbear -Huxley -Huxtable -Huyler -Huyler Landing -Hy Sil -Hyacinth -Hyacynth -Hyam -Hyannis -Hyannisport -Hyatt -Hyatts -Hybernia -Hybrid -Hycliff -Hycrest -Hyde -Hyde Bank -Hyde Burndale -Hyde End -Hyde Estate -Hyde Farms -Hyde Hall -Hyde Heath -Hyde Park -Hyde Wood -Hydebrae -Hyden Farm -Hyder -Hydeway -Hydra -Hydrae -Hydrangea -Hydrangia -Hydraulic -Hydrus -Hygate -Hygelund -Hyla -Hyla Brook -Hylair -Hylan -Hyland -Hyland Courts -Hyland Creek -Hyland Greens -Hyland Hills -Hyland Ridge -Hylands -Hyles -Hylton -Hyman -Hymen -Hyndman -Hynds -Hynes -Hynson -Hynton -Hypatia -Hyperion -Hypine -Hypoint -Hyrax -Hyrons -Hyrstlands -Hysler -Hyslip -Hyslop -Hyson -Hythe -Hythe End -Hythe Park -Hythefield -Hywood -I Beam -I Fernwood -I R Russo -I U Willets -II -Iadarosa -Iadorola -Iager -Iago -Ian -Ian Keats -Iandra -Iannis Spring -Iasco -Ibbetson -Ibbotson -Ibera -Iberia -Iberian -Iberis -Ibex -Ibis -Ibsen -Ibstone -Ibworth -Icard -Icarus -Icasia -Ice -Ice Arena -Ice Box Canyon -Ice Circle -Ice Cream -Ice Crystal -Ice Fort Cove -Ice House -Ice Plant -Ice Pond -Icehouse -Icehouse Woods -Iceland -Icemeadow -Icerose -Iceton -Ichabod -Ickburgh -Ickenham -Ickenham Crosier -Ickenham Edinburgh -Ickenham Milverton -Icker -Ickford -Ickleford -Ickleton -Icklingham -Icknield -Ickworth Park -Icy Brook -Ida -Ida Clayton -Idabright -Idaho -Idal -Idalane -Idalia -Idaline -Idalla -Idalou -Idalyn -Idas -Ide -Ide Hill -Ideal -Idell -Iden -Idle Creek -Idle Day -Idle Pines -Idle Wild -Idlebrook -Idlebunny -Idleigh Court -Idlepark -Idlestone -Idlewell -Idlewild -Idlewilde -Idlewood -Idlewood Park -Idmiston -Idol -Idolstone -Idonia -Idora -Idyl -Idylberry -Idylewild -Idyllwild -Idylwild -Idylwilde -Idylwood -Idylwood Mews -Idzorek -Ielmorine -Iffley -Ifield -Ifold -Ifold Bridge -Ightham -Iglehart -Iglesia -Ignacio -Ignatius -Ignatius Diggs -Igoe -Ijauna -Ijuana -Ikara -Ike -Ikea Center -Ikin -Ila -Ilbert -Ilchester -Ilderton -Ileen -Ilene -Iler -Ilex -Ilford -Ilfracombe -Ilgars -Iliad -Iliff -Iliffe -Ilikai -Ilinka -Ilion -Ilk -Ilka -Ilkeston -Ilkley -Ilkley Moor -Illabo -Illalong -Illarangi -Illaroo -Illawarra -Illawong -Illeroy -Illi Indy -Illiliwa -Illingsworth -Illingworth -Illini -Illinios -Illinois -Illona -Illoura -Ilma -Ilmington -Ilminster -Ilo -Ils -Ilsley -Iluka -Ilwaco -Ilya -Imbaro -Imber -Imber Park -Imberhorne -Imbrook -Imelda -Imhoff -Imlay -Immanuel -Immarna -Imogene -Imola -Impala -Impalla -Impatiens -Imperia -Imperial -Imperial College -Imperio -Import -Impressions -Impton -Impulse -Imran -Imrie -Ina -Inala -Inaudi -Inca -Ince -Inchbonnie -Inchcape -Inchfield -Inchley -Inchmery -Inchon -Incinerator -Incline -Incline Green -Increase Ward -Ind.Bch. Serv. -Indale -Indan Fire -Indelicato -Independence -Independent -Independent Hill -Independent School -Independents -Inderwick -Index -India -Indian -Indian Boundary -Indian Boundary Line -Indian Brook -Indian Broom -Indian Bull -Indian Camp -Indian Chase -Indian Chief -Indian Club -Indian Cove -Indian Creek -Indian Field -Indian Grass -Indian Gulch -Indian Harbor -Indian Head -Indian Hill -Indian Hill Way -Indian Hills -Indian Hollow -Indian Home -Indian Inn -Indian Joe -Indian Knoll -Indian Lake -Indian Landing -Indian Meadow -Indian Mill -Indian Moon -Indian Mound -Indian Oaks -Indian Path -Indian Pipe -Indian Point -Indian Pond -Indian Princess -Indian Queen Point -Indian Rice -Indian Ridge -Indian River -Indian Rock -Indian Run -Indian Spring -Indian Springs -Indian Summer -Indian Trail -Indian Tree -Indian Valley -Indian Wells -Indian Wind -Indian Wood -Indian Woods -Indiana -Indiana Toll -Indianapolis -Indianhill -Indianola -Indianwood -Indigo -Indio -Indlebar -Indura -Indus -Industrial -Industrial Heights -Industrial Park -Industry -Indy -Inelgah -Inez -Infantry Ridge -Infield -Infirmary -Ing -Inga -Ingal -Ingalara -Ingalls -Ingalton -Ingara -Ingate -Ingatestone -Ingelow -Ingelrica -Ingelside -Ingemunson -Ingersley -Ingersol -Ingersoll -Ingerson -Ingestre -Ingfield Manor -Ingham -Inghams -Ingle -Inglebar -Inglebert -Ingleboro -Ingleborough -Inglebrook -Ingleburn -Ingleburn Gardens -Ingleby -Ingleden Park -Ingledene -Ingledew -Inglee -Inglefield -Inglemere -Inglenook -Ingleshire -Ingleside -Inglethorpe -Ingleton -Inglewood -Inglis -Inglish Mill -Ingold -Ingoldsby -Ingolsby -Ingot -Ingraffia -Ingraham -Ingram -Ingram Creek -Ingram Parade Church -Ingrams -Ingrave -Ingrebourne -Ingress Park -Ingrid -Ingroff -Ings -Inhams -Inheritance -Inholmes Park -Inholms -Inigo Jones -Inip -Ink -Ink Grade -Ink Pen -Inkerman -Inland -Inlet -Inman -Inman Hill -Inmans -Inmoor -Inn -Inner -Inner Belt -Inner Circle -Inner Distribution -Inner Harbor -Inner Lake Shore -Inner Loop -Inner Ring -Innerhill -Innerwick -Innes -Innesdale -Inness -Innings -Innis -Innis Property -Innisbrook -Innisfail -Innisfall -Innisfree -Inniskilling -Innisvale -Innitou -Innkeeper -Innovation -Innovator -Innsbrook -Innsbruck -Insall -Insbrook -Inscho -Inscoe -Insel -Insey -Insignia -Inskip -Inslee -Insley -Inspection House -Inspiration -Inspiration Point -Institute -Instone -Instow -Instrom -Intack -Intake -Intalbury -Interbay -Interchange -Interglen -Interhaven -Interlachen -Interlake -Interlaken -Interlochen -Interlocken -Intermezzo -International -Internationale -Interocean -Interpretive Center -Interpromontory -Intersection -Interstate -Intertech -Interurban -Interval -Intervale -Interventions -Intone -Intrepid -Intrieri -Inverallan -Inverary -Inverbeg -Inverchapel -Inverdale -Inverell -Inverforth -Invergorden -Invergowrie -Inverine -Inverlael -Inverleith -Inverness -Inverness Ridge -Inverrary -Inverray -Inversham -Inverton -Invertrees -Inverway -Inverwood -Investigator -Investment -Invicta -Inville -Invincible -Inwood -Inworth -Inyo -Inza -Inzer -Iodine -Iola -Iolanthe -Iolanthus -Iolite -Iona -Iona Sound -Ione -Ione Michigan Bar -Ionia -Ionic -Ioof -Iorio -Iowa -Ipava -Iping -Ipswich -Ipswich River -Ira -Iraga -Iralba -Iran -Irding -Iredale -Iredine -Ireland -Ireland Brook -Irelands -Irena -Irene -Irenhyl -Irenic -Ireson -Ireta -Ireton -Iride -Iriquois -Iris -Iris Bloom -Irish Ridge -Irk -Irk Vale -Irkdale -Irlam -Irma -Irma Harvey -Irma Jones -Irma Lyle -Irmen -Irmisch -Irmish -Iron -Iron Bridge -Iron Brigade Unit -Iron Forge -Iron Gate -Iron Gorge -Iron Hill -Iron Hollow -Iron Horse -Iron Latch -Iron Mill -Iron Mine -Iron Mine Hill -Iron Point -Iron Spgs Fire -Iron Springs -Iron Wood -Ironbark -Ironbark Ridge -Ironbound -Irondale -Irondequoit -Irongate -Ironhill -Ironhorse -Ironmaster -Ironmine -Ironmonger -Ironshoe -Ironside -Ironstone -Ironton -Ironwell -Ironwood -Ironwood View South -Iroquios -Iroquis -Iroquois -Irrara -Irrawong -Irribin -Irrigation -Irrubel -Irvana -Irvin -Irvine -Irvine Turner -Irving -Irving Johnson -Irving Park -Irvington -Irvington Manor -Irvon Hill -Irwell -Irwin -Irwindale -Irwine -Iry -Isa -Isaac -Isaac Davis -Isaac Hull -Isaac Smith -Isaacs -Isabel -Isabel Virginia -Isabell -Isabella -Isabelle -Isador -Isadora -Isadora Duncan -Isadore -Isaiah -Isalona -Isanti -Isar -Isbel -Isbell -Isbells -Isca -Ischia -Ise -Iselin -Isen Manor -Isengard -Isernia -Isetta -Isham -Isham Randolph -Isherwood -Ishi -Ishi Goto -Ishnala -Ishtar -Isis -Isla -Isla Vista -Island -Island Channel -Island Creek -Island Farm -Island Heights -Island Hill -Island Lake -Island Park -Island Pond -Island View -Islander -Islandside -Islandview -Islay -Isle -Isle Royal -Isle Royale -Isle of Skye -Isle of Wight -Isled -Isledon -Isleford -Isler -Isles -Islesboro -Islet -Islet Park -Isleton -Isleview -Islingham Farm -Islington -Islington High -Islington Park -Islip -Islip Manor -Ismailia -Ismay -Ismays -Ismona -Isobell -Isola -Isoscelles -Issa -Issac Miller -Issaquah Hobart -Istana -Isted -Istvan -Italia -Italy -Itasca -Itaska -Itch -Itchel -Itchell -Iteri -Ithaca -Ithan -Ithica -Itte -Ittureria -Iva -Ivah -Ivahar -Ivakota -Ivakota Farm -Ivaloo -Ivan -Ivanhoe -Ivano -Ivans -Ive Farm -Iveagh -Ivedon -Ivel -Iveley -Ively -Iver -Ivere -Ivernia -Ivers -Iverson -Iverys -Ives -Iveson -Ivey -Ivie -Ivie Acres -Ivimey -Ivins -Ivonhoe -Ivor -Ivory -Ivory Creek -Ivory Lace -Ivy -Ivy Bank -Ivy Barn -Ivy Bridge -Ivy Bush -Ivy Chimneys -Ivy Creek -Ivy Crest -Ivy Dene -Ivy Falls -Ivy Gate -Ivy Glen -Ivy Green -Ivy Hall -Ivy Hill -Ivy Hills -Ivy Hollow -Ivy House -Ivy Leaf -Ivy League -Ivy Lodge -Ivy Meade -Ivy Mill -Ivy Mills -Ivy Oak -Ivy Park -Ivy Ridge -Ivy Tree -Ivy Wood -Ivychurch -Ivydale -Ivydene -Ivygate -Ivygreen -Ivyhouse -Ivylea -Ivyleaf -Ivymount -Ivystone -Ivytown -Ivywild -Ivywood -Iwanuma -Ixias -Ixion -Ixonia -Ixworth -Izaak Walton -Izane -Izmer -Izmir -Izola -J D Reading -J F Kennedy -J H Brooks -J Hart Clinton -J L B -J M Van Ryper -J Pankow -J Rogers -J Smith -J T Crow -J Yard -JW Williams -Jabez -Jabil -Jacana -Jacap -Jacaranda -Jacey -Jacinta -Jacinth -Jacinto -Jack -Jack Breault -Jack Clow -Jack Cornwell -Jack London -Jack Pine -Jack Rabbit -Jack Rabbit Ridge -Jack Rogers -Jack Russell -Jack Tar -Jack Tone -Jack Williams -Jacka -Jackaranda -Jackass -Jackdaw -Jackets -Jackey -Jackie -Jackie Robinson -Jackies -Jacklin -Jackling -Jacklynn -Jackman -Jackpine -Jackpit -Jacks -Jacks Reef -Jacksnipe -Jacksol -Jackson -Jackson Branch -Jackson Grove -Jackson Mill -Jackson Oaks -Jackson Ranch -Jackson Schoolhouse -Jackson Slough -Jacksonia -Jacksons -Jacksons Edge -Jacksonville -Jackstraw -Jacky -Jaclyn -Jacob -Jacob Amsden -Jacob Brack -Jacob Cobb -Jacob Cushman -Jacob Ferry -Jacobs -Jacobs Gates -Jacobs Meadow -Jacobs Mill -Jacobs Well -Jacobsen -Jacobson -Jacobus -Jacoby -Jaconnet -Jacquara -Jacquard -Jacquelin -Jacqueline -Jacquelyn -Jacques -Jacquie -Jacquith -Jacqwill -Jacuzzi -Jada -Jadach -Jadchalm -Jade -Jade Hill -Jade Meadow -Jade Post -Jadeleaf -Jaden -Jadwin -Jaeger -Jaffa -Jaffe -Jaffray -Jaffrey -Jagelman -Jagerrd -Jagged Rock -Jagger -Jaggers -Jagle -Jago -Jagoe -Jaguar -Jagusch -Jahant -Jahn -Jahns -Jai -Jail -Jaimee -Jaipur -Jake -Jake Brown -Jake Creek -Jakeman -Jakes -Jakson -Jalaber -Jalbert -Jalisco -Jalleison -Jamaica -Jamaica Park -Jamberoo -Jamboree -Jameison -James -James Andrew -James Bailey -James Barton -James Bay -James Black -James Burke -James Butcher -James Butterworth -James Carter -James Cook -James Craig -James Creek -James Deane -James Donlon -James Doolittle -James Edward -James Erskine -James Fenimore Cooper -James Flynn -James Halley -James Haney -James Hentry -James King -James L L Burrell -James Lee -James Leigh -James Lex -James M Rochford -James Madison -James Maury -James Michener -James Mileham -James Millen -James Patten -James R Rakow -James Ridge -James River -James Ruse -James Russell -James Swanzey -James Tighe -James Town -James W Smith -James Watson -James Wittchen -James Wright -Jamesburg Half Acre -Jamesbury -Jameson -Jameson Canyon -Jameston -Jamestown -Jamestowne -Jamesview -Jamey -Jami -Jamica -Jamie -Jamie Lee -Jamieson -Jamieson Sprigg -Jamison -Jamison Creek -Jamlin -Jamroga -Jan -Jan Mar -Jan Marie -Jan River -Jan View -Jana -Jana Vista -Janali -Janamba -Janas -Jancie -Jandell -Jandus -Jandus Cut Off -Jandy -Jandyce -Jane -Jane Adams -Jane Addams -Jane Ellen -Jane Morbey -Janel -Janelia Farm -Janelin -Janell -Janelle -Janer -Janero -Janes -Janeswood -Janet -Janeth -Janette -Janeway -Janice -Janie -Janina -Janine -Janis -Janita -Janke -Janna -Janna Lee -Jannali -Jannarone -Jannelle -Janney -Janneys -Jannie -Janocha -Janock -Janos -Janphil -Janrick -Jansa -Janschek -Jansen -Jansen Farm -Jansens -Janssen -January -Janvrin -Janwal -Japan -Japaul -Japonica -Jappa -Jaquays -Jaques -Jaqui -Jar Brook -Jarboe -Jardin -Jardine -Jared -Jarico -Jarist -Jarlath -Jarman -Jarmann -Jarmons -Jarnecke -Jarnigan -Jarocin -Jarombek -Jarrah -Jarrard -Jarrett -Jarrett Valley -Jarrow -Jarsey -Jarvie -Jarvis -Jasen -Jaskot -Jaskula -Jaslow -Jasmin -Jasmine -Jasmine Hollow -Jasnar -Jason -Jason Grant -Jason Hill -Jason Woods -Jasons -Jasper -Jasper Highland -Jasper Hill -Jasper Sears -Jasset -Jasyn -Jauncey -Jaunell -Java -Javalina -Javan -Javelin -Javier -Javins -Javore -Jawl -Jay -Jay Bee -Jay Miller -Jayar -Jaybarry -Jaybee -Jaydee -Jaydine -Jayeselle -Jayhawk -Jaylee -Jayme -Jayne -Jaynes -Jaypore -Jayrose -Jays -Jaysmith -Jayson -Jaystone -Jayton -Jaywalk -Jaywick -Jaywood -Jealam -Jean -Jean Baptiste -Jean Carol -Jean Creek -Jean Ellen -Jean Marie -Jean Wailes -Jeane -Jeanette -Jeanie -Jeanine -Jeanna -Jeanne -Jeanne Darc -Jeanneret -Jeannette -Jeannie -Jeannine -Jeans -Jeatom -Jebb -Jebidia -Jed -Jed Forest -Jed Smith -Jedburg -Jedburgh -Jeddo -Jedediah -Jedforest -Jef -Jeff -Jeff Brian -Jeff Ryan -Jeffcott -Jeffer -Jeffereson -Jefferies -Jefferon -Jeffers -Jefferson -Jefferson Heights -Jefferson Run -Jeffersonian -Jeffery -Jefferys -Jeffrey -Jeffrey Keating -Jeffreys -Jeffreys Neck -Jeffrie -Jeffries -Jeffry -Jefry -Jefts -Jeger -Jehl -Jeken -Jelf -Jelin -Jelinic -Jelley -Jellicoe -Jelliff -Jellingal -Jelly Belly -Jelson -Jemmett -Jemryn -Jenckes -Jencks -Jendi -Jenes -Jenevein -Jeni -Jenifer -Jenison -Jenkin -Jenkins -Jenkins Farm -Jenkins Ridge -Jenkinson -Jenkisson -Jenks -Jenlar -Jenmar -Jenna -Jenne -Jennell -Jenner -Jennery -Jenness -Jennett -Jenney -Jenni -Jennie -Jennie Dugan -Jennie Richards -Jennie Run -Jennifer -Jennifer Daisy -Jennifer School -Jenniffer -Jenning -Jenningham -Jennings -Jennings Chapel -Jennings Cove -Jennings Farm -Jennings Mill -Jennings Park -Jennings Pond -Jenniper -Jennison -Jenny -Jenny D -Jenny Green -Jenny Jae -Jenny Lind -Jenny Lynne -Jenolan -Jens Jensen -Jensen -Jensen Ranch -Jensen Springs -Jenton -Jenvey -Jephson -Jephtha -Jeppos -Jeppson -Jepson -Jerad Place -Jerald -Jeraldo -Jerdens -Jere -Jerele -Jeremiah -Jeremie -Jeremy -Jeremys -Jereva -Jeri -Jericho -Jericho City -Jericho Hill -Jericho Oyster Bay -Jericho Park -Jerico Hill -Jerilderie -Jerilyn -Jerilynn -Jerlyn -Jerman -Jermantown -Jerminle -Jermyn -Jernee -Jernee Mill -Jerningham -Jerold -Jerome -Jerrara -Jerrard -Jerri -Jerridge -Jerrie -Jerries -Jerrold -Jerry -Jerry Clay -Jerry Jingle -Jerry Liefert -Jerrys -Jersey -Jersey City -Jersey Gardens -Jersey Island -Jersy -Jerusalem -Jerusalem Church -Jerusha -Jervey -Jervis -Jervois -Jeshurun -Jesierski -Jeskyns -Jesmond -Jespersen -Jess -Jess Ranch -Jessam -Jessamine -Jessamy -Jesse -Jesse James -Jessel -Jessen -Jessenland -Jesses -Jessett -Jessica -Jessie -Jessie Blythe -Jessie Jo -Jesson -Jessop -Jessup -Jester -Jesup -Jesup Blair -Jet -Jeter -Jethro -Jethro Peters -Jetson -Jetter -Jetty -Jetwood -Jewel -Jewelflower -Jewell -Jewell Hill -Jewell McKoy -Jewelsford -Jewett -Jewett Hill -Jewett Park -Jewish War Veterans -Jewitt -Jewry -Jeyes -Jeymer -Jezebel -Jezierski -Jezreels -Jf Kennedy -Jf Mahoney -Jib -Jibbon -Jibboom -Jibstay -Jidana -Jigger -Jill -Jill Ann -Jill Peak -Jillana -Jillian -Jillifer -Jillong -Jillson -Jilrick -Jim -Jim Dhamer -Jim Elder -Jim Fear -Jim Negra -Jim Shaw -Jim Simpson -Jim Veal -Jimada -Jimdale -Jimeno -Jimmer -Jimmy -Jimno -Jinatong -Jinchilla -Jindabyne -Jingle -Jingle Bell -Jiniwin -Jinna -Jionzo -Jipp -Jj -Jo -Jo Ann -Jo Deb -Jo Jo -Joaedja -Joal -Joalah -Joan -Joan Marie -Joan Vista -Joann -Joanna -Joanne -Joaquin -Joaquin Miller -Joaquin Murieta -Job Cushing -Jobe -Jobling -Jobs -Joby -Jocama -Jocarda -Jocare -Jocarm -Jocelyn -Jocher -Jochinsen -Jochum -Jocine -Jocketts -Jockey -Jockey Hollow -Joclyn -Joda -Jodan -Jodane -Jodave -Jodee -Jodi -Jodie -Jodis -Jodphur -Jodrell -Jody -Joe -Joe Adler -Joe Borovich -Joe Di Maggio -Joe F Young -Joe Jenny -Joe Klutsch -Joe Mary -Joe Orr -Joe Perez -Joe Pombo -Joel -Joelle -Joerg -Joerganson -Joerger -Joerger Cut Off -Joes -Joetta -Joey -Joffre -Jofran -Johanna -Johans Beach -Johansen -Johensu -John -John A Andrew -John A Dunn Memorial -John A Thompson -John Adam -John Adams -John Alden -John Allen -John Ayres -John Bailey -John Bardeen -John Barnes -John Batman -John Berry -John Booth -John Bourg -John Bradshaw -John Brown -John Burge -John Burke -John Burns -John C Ward -John Calvert -John Calvin -John Campbell -John Carlyle -John Carpenter -John Carroll -John Carver -John Charles -John Clagett -John Clynes -John Cobb -John Cross -John Crowder -John D Paige -John Dailey -John Dalton -John Daly -John Daves -John Davey -John David -John Dee -John Deere -John Dow -John Dwyer -John Dykes -John E Carroll -John E Smith -John Edward -John Eppes -John F Kennedy -John F Mason -John F Shelley -John F. Allen -John F. Kennedy -John Fisher -John Forrest -John Franklin -John Friend -John Fryer -John Gildi -John Glenn -John Gooch -John H Johnson -John Hancock -John Hanson -John Harper -John Harris -John Harrison -John Hay -John Henry -John Heywood -John Hill -John Hines -John Hopkins -John Humphrey -John Hus -John Ireland -John Islip -John J Brady -John J Gallagher -John J Grimaldi -John J Kingman -John J Paige -John Kennedy -John Kent -John Kidd -John Kirkham -John Knott -John L Dietsch -John Lynn -John M Boor -John Marr -John Marsh -John Marshall -John Marthens -John Martin -John Matthew -John Matthews -John McAdam -John McCormack -John Miller -John Milless -John Milton -John Montgomery -John Mooney -John Muir -John Neil -John Ochs -John Ormsby Way Leeds -John Oxley -John Partridge -John Paul Jones -John Penn -John Pierson -John Poulter -John Quincy -John Quincy Adams -John Radley -John Rezza -John Roberts -John Robinson -John Roos -John Ross -John Runge -John Ruskin -John Ryle -John Sam -John Shepley -John Silkin -John Smith -John Sorci -John Swift -John Tate -John Telfer -John Thomas -John Ticer -John Turco -John Turk -John Wade -John Wall -John Warren -John Wayne -John William -John Wilson -John Wise -John Wyatt -Johnathan -Johnathon -Johned -Johnny -Johnny Appleseed -Johnny Cake -Johnny Cake Ridge -Johnny Moore -Johnnycake -Johnor -Johns -Johns Chapel -Johns Hollow -Johns Hopkins -Johnsburg -Johnsbury -Johnson -Johnson Beach -Johnson Farm -Johnson Fold -Johnson Grove -Johnson Memorial -Johnson Park -Johnson Woods -Johnsonbrook -Johnsons -Johnsontown -Johnston -Johnston Crescent -Johnstone -Johnstown -Johnsvale -Johnsway -Johnswood -Joice -Join -Joiner -Joiners -Joint -Jokic -Jolan -Jolana -Jolen -Jolie -Joliet -Jolin -Joline -Jolliett -Jolly -Jollyboys -Jollyman -Jollys -Jolma -Jolon -Joludow -Jomar -Jon -Jon Mar -Jon Paul -Jona -Jonagold -Jonah -Jonalan -Jonamac -Jonas -Jonathan -Jonathan Carver -Jonathan Mitchell -Jonathan Ridge -Jonathan Simpson -Jonathen -Jonathon Swift -Jonel -Jones -Jones Acres -Jones Bay -Jones Branch -Jones Bridge -Jones Farm -Jones Gulch -Jones Hill -Jones Mill -Jones Park -Jones Point -Jones River -Jonesdale -Jonesport -Jonesville -Jonive -Jonko -Jono -Jonquil -Jonspin -Jony -Joongah -Joost -Jopak -Jopenda -Joplea -Joplin -Jopling -Joppa -Jopson -Joralemon -Jordan -Jordan Park -Jordan Ranch -Jordan Taylor -Jordans -Jordans Journey -Jorden -Jordon -Jordon Pond -Jordonalo -Joree -Jorgan -Jorgen -Jorgensen -Jorgenson -Jori -Jorie -Jorissen -Joronollo -Jorrick -Jose -Jose Figueres -Jose Ramon -Josef -Josefa -Josefson -Joselson -Joseph -Joseph Banks -Joseph Damon -Joseph Leon -Joseph Mill -Joseph P. Ward -Joseph Pace -Joseph Ray -Joseph Reed -Joseph Schwab -Joseph Siewick -Joseph Smith -Joseph Speciale -Josepha -Josephine -Josephine Evaristo -Josephs Point -Josephson -Josh Gray -Josham -Joshua -Joshua Moore -Joshua Tree -Josiah -Josie -Josina -Joslin -Joslyn -Jospeh -Josselin -Josselyn -Jossie -Josslyn -Jost -Jotham -Jotmans -Joubert -Jouet -Jouldings -Joule -Journal -Journeay -Journet -Journey -Joust -Jousting -Jowett -Joy -Joy Bell -Joy Lee -Joy Ridge -Joya -Joyce -Joyce Anne -Joyce Green -Joyce Island -Joyce Kilmer -Joyce Lundberg -Joyceton -Joydens Wood -Joydon -Joyer -Joylyn -Joyner -Joynson -Joynt -Joynton -Joys -Juan Hernandez -Juan Pablo -Juana -Juanita -Juanita Woods -Juarez -Jubbs Delight -Jubilee -Jubliee -Judah -Judd -Jude -Judette -Judge -Judge Cushing -Judge E A Loveless -Judge Haley -Judge Heath -Judges -Judi -Judicial -Judick -Judie -Judique -Judistine -Judith -Judith Anderson -Judkins -Judson -Judsonville -Judy -Judy Farm -Judy Witt -Judys -Juel -Juer -Juercen -Juergens -Juggs -Jughandle -Jugiong -Juglans -Juhasz -Juhlin -Juirrang -Julep -Jules -Jules Thorn -Juli -Juli Lynn -Julia -Julia Connors -Julia Dawn -Julian -Juliana -Julianna -Julianne -Julians -Julias -Julie -Julie Ann -Juliedale -Julien -Julien Court -Juliers -Juliesse -Juliet -Juliet Park -Juliett -Julietta -Juliette -Julio -Julius -Julliard -Julliard Park -July -Jumbles -Jumel -Jump -Jumper -Jumper Hill -Jumpers Hole -Jumping Horse -Jumppun -Jumps -Juna -Junard -Junco -Junction -June -June Elaine -June Hollow -Juneau -Juneberry -Junebreeze -Junebug -Junee -Junegrass -Juneway -Junewood -Jungle -Junia -Junin -Junior -Juniper -Juniper Hill -Juniper Point -Juniper Ridge -Juniper Valley -Juniperberry -Juniperbrook -Junipero -Junipero Serra -Junipertree -Junius -Junker -Juno -Juntar -Jupiter -Jupitor -Jupp -Jura -Jurby -Jurdins Hill -Jurdy -Jurgens -Jurgensen -Juri -Juricic -Jurocko -Jury -Just -Justa Short -Justamere -Justco -Justen -Justice -Justice Hill -Justin -Justin Knoll -Justin Morgan -Justina -Justine -Justinian -Justino -Justis -Justus -Jute -Jutewood -Jutland -Jutsums -Juvenis -Juxon -Juxton -Jyra -Jytek -K Fernwood -Kaanapali -Kaban -Kabarli -Kable -Kabot Cove -Kabutts -Kachina -Kadderly -Kadema -Kaden -Kadin -Kadlin -Kado -Kaehler -Kaelin -Kaeser -Kafka -Kagera -Kahiba -Kahl -Kahle -Kahler -Kahler Jr -Kahlo -Kahn -Kahns -Kahrs -Kaila -Kaimu -Kain -Kaine -Kains -Kaintuck -Kairawa -Kaiser -Kaiser Aetna -Kaiser Creek -Kaiser Quarry -Kaitia -Kaitlin -Kaitlyn -Kajer -Kakae -Kakeout -Kalama -Kalamazoo -Kalana -Kalang -Kalarama -Kalaui -Kalda -Kale -Kalenda -Kales -Kaleski -Kaleva -Kaley -Kalgal -Kalgoorlie -Kali -Kalimina -Kalimna -Kalinda -Kalinya -Kalk -Kalkada -Kalkar -Kalland -Kallaroo -Kallenberger -Kalliam -Kallien -Kallista -Kalmar -Kalmia -Kalora -Kalorama -Kalson -Kalsow -Kaltemeier -Kaltern -Kalua -Kaluga -Kaluna -Kaly -Kalyan -Kamaitis -Kamari -Kamaur -Kambala -Kamber -Kambora -Kamda -Kame -Kameha -Kamena -Kameruka -Kamerwyk -Kamilaroi -Kamilaroy -Kaminski -Kamiri -Kamlea -Kamm -Kammerer -Kammes -Kamp -Kampersal -Kamputa -Kamsack -Kamuela -Kanaabec -Kanabec -Kanadah -Kanai -Kanandah -Kanangra -Kanangur -Kananook -Kanatha -Kanawha -Kandahar -Kandi -Kandos -Kandra -Kandy -Kane -Kane Industrial -Kanegis -Kaneko -Kanes -Kaneville -Kangaroo -Kangaroo Point -Kangley Bridge -Kaniara -Kanili -Kanimbla -Kankakee -Kanlow -Kannely -Kanning -Kano -Kanoff -Kanoona -Kanoora -Kanouse -Kanowar -Kansala -Kansas -Kanst -Kanteles -Kantor -Kanuka -Kanya -Kanzo -Kao -Kapala -Kapalua -Kapareil -Kaparia -Kapetanopolous -Kaphan -Kapiolani -Kapiti -Kapkowski -Kaplan -Kaplolani -Kaposia -Kapovic -Kapp -Kappa -Kappel Hill -Kappel View -Kappner -Kappock -Kapyong -Kara -Kara Ann -Karabar -Karal -Karalee -Karamarra -Karameos -Karangi -Karani -Karat -Karban -Karcher -Karda -Kardel -Kardella -Kardon -Kareela -Kareelah -Kareema -Kareena -Karelitz -Karels -Karen -Karen Anne -Karen Elaine -Karen Forest -Karen Lee -Karen Pines -Karen Spring -Karens -Kari -Karilla -Karimbla -Karin -Karingal -Kariola -Karius -Kariwara -Karkus -Karl -Karl Hoyo -Karla -Karli -Karlo -Karloo -Karloon -Karlskoga -Karlson -Karlstad -Karlyn -Karmel -Karmich -Karn -Karnak -Karne -Karnell -Karner -Karns -Karol -Karoo -Karool -Karoola -Karoom -Karoon -Karraba -Karrabah -Karrabee -Karrabul -Karranga -Karrie -Karril -Karringal -Karrong -Karsey -Karth -Karth Lake -Karuah -Karuk -Karver -Karyl -Karyn -Kasba -Kashey -Kashgar -Kashmir -Kask -Kaskaskia -Kaski -Kaslo -Kasota -Kasper -Kass -Kassala -Kassan -Kassar -Kassel -Kasson -Kastania -Kastelan -Kastell -Kasten -Kasting -Katahdin -Katan -Katanna -Katarina -Kate -Katebini -Katena -Kates -Katesgrove -Kath -Katharine -Katharines -Kathay -Katherin -Katherine -Katherine Ann -Katheryn -Kathlean -Kathleen -Kathleen Elizabeth -Kathleen Grant -Kathleene -Kathletta -Kathmoore -Kathrene -Kathrina -Kathryn -Kathryne -Kathwood -Kathy -Kathy Ellen -Kathyanne -Kathys -Katie -Katie Bird -Katina -Katleba -Kato -Katonah -Katonia -Katrina -Katrine -Katrinka -Katsikas -Katsura -Katy -Katydid -Katz -Kauai -Kaufman -Kaul -Kaula -Kaup -Kauri -Kausen -Kauth -Kautz -Kavanagh -Kavanaugh -Kaveny -Kaverton -Kavin -Kavooras -Kavrik -Kawahara -Kawai -Kawalker -Kawameeh -Kawana -Kawana Springs -Kay -Kayak -Kayak Lake -Kaybro -Kaycee -Kaydot -Kaye -Kayemoor -Kayeton -Kayhart -Kayhill -Kayjay -Kayla -Kaylar -Kaylee -Kaylene -Kaymar -Kaymark -Kaynyne -Kayron -Kays -Kays Wood -Kaysha -Kayson -Kaywin -Kaywood -Kazan -Kazebeer -Kazimer -Kazwell -Kc Farm -Keable -Keach -Keagles -Kealsey -Kealsy -Kean -Keane -Keans -Keansburg -Keany -Keap -Kearley -Kearney -Kearneys -Kearns -Kearny -Kearsage -Kearsarge -Kearsley -Kearsley Hall -Keary -Keasbey -Keasler -Keates -Keating -Keato -Keaton -Keats -Keawe -Keayne -Keb -Kebet Ridge -Keble -Keck -Kecutan -Kedge -Kedith -Kedleston -Kedron -Kedvale -Kedzie -Kee -Keebler -Keeby -Keech -Keech Briar -Keedonwood -Keefe -Keefer -Keegan -Keegans -Keel -Keele -Keelendi -Keeler -Keeley -Keelham -Keeling -Keelings -Keelo -Keema -Keen -Keenan -Keene -Keeney -Keeney Pond -Keenland -Keens -Keens Park -Keep -Keep Hill -Keepataw -Keeper -Keepers -Keephatch -Keeps -Keepsake -Keer -Keera -Keese -Keeseville -Keesing -Keesling -Keeton -Keevil -Keevin -Keewadin -Keewatin -Keewaydin -Keeyunga -Kefauver -Kegan -Kegle -Kegwood -Kegworth -Kehoe -Keierleber -Keighley -Keighly -Keighran Mill -Keightley -Keil -Keilana -Keildon -Keiley -Keilman -Keily -Keim -Keinches -Keino -Keir -Keira -Keiran -Keirle -Keiser -Keiser Ranch -Keith -Keith Allen -Keith Hill -Keith Jeffries -Keith Lucas -Keith Park -Keith Smith -Keith Taylor -Keithley -Keiths -Keithson -Keiwarra -Kelboro -Kelbourne -Kelbrook -Kelbum -Kelburn -Kelby -Kelch -Kelchers -Keld -Keldholme -Keldie -Keldon -Kelesey -Kelez -Kelfield -Kelford -Keli -Kell -Kell Green -Kellam -Kelland -Kellaway -Kellbrook -Kelldon -Kelleher -Keller -Keller Lake -Keller Ridge -Kellerman -Kellet -Kellett -Kelley -Kelley Farm -Kellicar -Kellick -Kelliher -Kelling -Kellington -Kellino -Kellner -Kelloch -Kellogg -Kellogg Creek -Kelloway -Kells -Kellum -Kelly -Kelly Ann -Kelly Case -Kelly Farm -Kelly Glen -Kelly Hill -Kelly Lake -Kelly Mist -Kelmore -Kelmscot -Kelmscott -Kelner -Kelp -Kelpatrick -Kelrose -Kelross -Kelsall -Kelsey -Kelsey Park -Kelshill -Kelsic -Kelso -Kelson -Kelstern -Kelston -Kelsy -Kelsy Creek -Keltner -Kelton -Kelty -Kelveden -Kelvedon -Kelvedon Hall -Kelverlow -Kelvin -Kelvin Park -Kelvindale -Kelvington -Kelwynne -Kelzer Pond -Kem -Kemah -Kemball -Kember -Kemberley -Kembers -Kembla -Kemble -Kembo -Kembridge -Kemerton -Kemika -Kemman -Kemmerton -Kemmever -Kemmis -Kemnal -Kemondo -Kemp -Kemp Mill -Kemp Mill Forest -Kempair -Kempbridge -Kempe -Kemper -Kempley -Kempmill -Kempner -Kempnough Hall -Kemps -Kemps Farm -Kempsey -Kempsford -Kempson -Kempster -Kempston -Kempsville -Kempt -Kempthorne -Kempton -Kemrich -Kemsing -Kemsley -Ken -Ken Hall -Kenabec -Kenalray -Kenardington -Kenart -Kenavon -Kenbar -Kenberma -Kenbridge -Kenbrook -Kenburn -Kenbury -Kenchester -Kencrest -Kenda -Kendal -Kendal Common -Kendale -Kendall -Kendall Hill -Kendall Point -Kendall Ridge -Kendall Self -Kendallwood -Kendalwood -Kendee -Kendel -Kendell -Kender -Kendig -Kendle -Kendoa -Kendon -Kendra -Kendra Hall -Kendree -Kendrew -Kendrick -Kendricks -Kendridge -Kenduck -Kenelm -Kenelworth -Kenerson -Keneson -Kenfield -Kenfig -Kenhill -Kenhowe -Kenic -Keniff -Kenilwood -Kenilwoods -Kenilworth -Kenion -Keniston -Kenland -Kenlar -Kenleigh -Kenlen -Kenley -Kenloch -Kenlor -Kenmar -Kenmare -Kenmel -Kenmere -Kenmont -Kenmoor -Kenmor -Kenmore -Kenmuir -Kenmure -Kennabec -Kennady -Kennan -Kennard -Kennebec -Kennedy -Kennedy Knolls -Kennedy Memorial -Kennel -Kennel Barn -Kennell Hill -Kennelling -Kennelly -Kennels -Kennelwood -Kennelworth -Kenner -Kennerleigh -Kennerley -Kennesaw -Kenneson -Kennet -Kenneth -Kenneth Creek -Kenneth Hyde -Kenneth Kostka -Kenneth More -Kenneth Slessor -Kennett -Kennett Wharf -Kennewick -Kenney -Kenni -Kennicott -Kennie -Kenning -Kenninghall -Kennington -Kennington Park -Kennison -Kennsington -Kennworth -Kenny -Kenny Hill -Kenny Lofton -Kennylands -Keno -Kenoga -Kenora -Kenosha -Kenosia -Kenova -Kenreel -Kenrick -Kenridge -Kens -Kensal -Kensellas -Kensett -Kensico -Kensington -Kensington Church -Kensington High -Kensington Park -Kenslee Hill -Kenson -Kensor -Kenstan -Kenstford -Kenston -Kenswick -Kensworth -Kent -Kent Fire -Kent Fort -Kent Hatch -Kent House -Kent Place -Kent Point -Kent Pump -Kent Pump Fire -Kent Sq -Kent Town -Kent View -Kent Village -Kentbury -Kentdale -Kenter -Kentfield -Kentford -Kenthurst -Kentigern -Kentile -Kentish -Kentland -Kentlands -Kentlea -Kentley -Kentmere -Kentmore -Kentnor -Kenton -Kenton Park -Kentons -Kentos -Kentridge -Kents -Kents Bank -Kents Farm -Kents Hill -Kentsdale -Kentshire -Kentstone -Kentucky -Kentview -Kentville -Kentwal -Kentwell -Kentwood -Kentwyns -Kenver -Kenwar -Kenward -Kenway -Kenwick -Kenwin -Kenwith -Kenwood -Kenwood Forest -Kenwood Isles -Kenworth -Kenworthy -Kenwyn -Kenya -Kenyngton -Kenyon -Kenyons -Kenzel -Keoffram -Keogh -Keokee -Keokok -Keokuk -Keoncrest -Keota -Keough -Kephart -Kepler -Kepos -Keppel -Kepper -Keppler -Kepwick -Keran -Kerber -Kerbey -Kerby -Kerby Hill -Kerfoot -Kerger -Keri -Keri Ann -Keriba -Kerill -Kerin -Kerley -Kerlin -Kerman -Kermath -Kermes -Kermit -Kermoor -Kern -Kern Creek -Kerna -Kernal -Kernberry -Kerner -Kerney -Kernham -Kernochan -Kerns -Kernwood -Kero -Kerr -Kerrawah -Kerri -Kerrick -Kerridge -Kerrie -Kerrigan -Kerrill -Kerrinea -Kerrins -Kerrison -Kerriston -Kerroge -Kerrs -Kerrwood -Kerry -Kerry Ann -Kerry Beacon -Kerry Winde -Kerrydale -Kerryshire -Kersal -Kersal Hall -Kersal Vale -Kerschner -Kerscott -Kersey -Kersfield -Kersh -Kershaw -Kerslake -Kersley -Kersten -Kerstin -Kertsinger -Kervan -Kerves -Kerwin -Kerwood -Kesey -Keshan -Keslake -Keslar -Keslinger -Kesner -Kessel -Kessell -Kesserling -Kessingland -Kessler -Kester -Kesters -Kesterson -Kesteven -Keston -Kestor -Kestral -Kestrel -Kestrel Lake -Keswick -Ketay -Ketcham -Ketchams -Ketchen -Ketcherside -Ketchum -Ketelaar -Ketelsen -Ketewamoke -Ketewomoke -Kethel -Ketner -Ketridge -Kettell -Kettelson -Ketten -Kettenacker -Ketter -Kettering -Kettering on Oxford -Ketterman -Kettle -Kettle Creek -Kettle Green -Kettle Hill -Kettle Hole -Kettle Mountain -Kettle Pond -Kettle River -Kettle Run -Kettlehook -Kettleman -Kettleson -Kettlewell -Kettmann -Keuka -Kevan -Kevelioc -Keverton -Kevill -Kevin -Kevin Coombs -Kevin Longley -Kevin Walker -Kevinaire -Kevinberg -Kevington -Kevins -Kevyn -Kew -Kew Foot -Kew Forest -Kew Gardens -Kewadin -Kewanee -Kewferry -Kewin -Kewsick -Key -Key Largo -Key Route -Key Turn -Key West -Keyberry -Keyes -Keyes House -Keymar -Keymer -Keyne -Keyner -Keynes -Keynote -Keynsham -Keyntel -Keyport -Keys -Keys Ridge -Keyse -Keyser -Keysers -Keysford -Keysham -Keysor -Keystone -Keystone Manor -Keytone -Keyworth -Kezar -Kezia -Khakum -Khakum Wood -Khalid -Khalsa -Khama -Khartoum -Khun -Khyber -Kialba -Kiama -Kiaora -Kiara -Kiawah -Kiawah Island -Kibbles -Kiber -Kiberd -Kibo -Kibworth -Kice -Kickapoo -Kickham -Kidacre -Kidborough -Kidbrook Park -Kidbrooke -Kidbrooke Park -Kidd -Kidd Creek -Kiddal -Kidder -Kidderminster -Kidderpore -Kidders -Kiddie -Kiddiminister -Kidlington -Kidman -Kidmore -Kidmore End -Kidmore end -Kidomore End -Kidwell -Kidwell Field -Kidwells Park -Kiefer -Kiel -Kieland Ridge -Kielgart -Kielion -Kiely -Kientz -Kiep -Kieper -Kieran -Kiernan -Kierst -Kierstead -Kiersted -Kiesenwetter -Kiess -Kiessig -Kiest -Kiev -Kievit -Kifer -Kiffen -Kiger -Kihila -Kijek -Kiki -Kikuo -Kil -Kilarney -Kilauea -Kilbane -Kilbenny -Kilbernie -Kilbirnie -Kilborn -Kilbourn -Kilbourne -Kilbride -Kilburn -Kilburn High -Kilburne -Kilby -Kilby Glenn -Kilchurn -Kilcoby -Kilconnell -Kilconway -Kilcullen -Kildare -Kildeer -Kildonan -Kildoran -Kildowan -Kile -Kiley -Kilfoyle -Kilgore -Kilgour -Kilheeney -Kilimanjaro -Kiline -Kilkare -Kilkee -Kilkenny -Kilkerry -Kilkie -Killala -Killam Hill -Killanoola -Killarney -Killarney Pass -Killarny -Killawarra -Killbarron -Killdeer -Killearn -Killeaton -Killebrew -Killeen -Killey -Killian -Killians -Killick -Killieser -Killigrew -Killinger -Killinghurst -Killingsworth -Killingworth -Killon -Killoola -Killowen -Killuran -Killybegs -Killyon -Kilmaine -Kilmarnock -Kilmarnok -Kilmarsh -Kilmartin -Kilmer -Kilmington -Kilminister -Kilmiston -Kilmoray -Kilmore -Kilmorey -Kilmory -Kilmurray -Kiln -Kiln Barn -Kiln Croft -Kiln Pond -Kiln View -Kiln Wood -Kilner -Kilnfield -Kilnorey -Kilnsea -Kilnside -Kilnwood -Kilo -Kilpatrick -Kilpatrik -Kilpin Hill -Kilravock -Kilroe -Kilronan -Kilross -Kilrue -Kilrush -Kilsha -Kilsmore -Kilsyth -Kiltie -Kilvert -Kilworth -Kilzer -Kim -Kim Ann -Kim Hunter -Kim Kris -Kim Louise -Kimanna -Kimball -Kimball Beach -Kimball Hill -Kimballwood -Kimbark -Kimbarra -Kimbell -Kimber -Kimberlee -Kimberley -Kimberlin Heights -Kimberly -Kimberly Grove -Kimberly Woods -Kimbers -Kimberwick -Kimberwicke -Kimble -Kimble Park -Kimblehunt -Kimblewick -Kimbriki -Kimbro -Kimbrough -Kimcumber -Kimdee -Kime -Kimes -Kimiyo -Kimlee -Kimlo -Kimloch -Kimmel -Kimmeridge -Kimmig -Kimo -Kimpton -Kimwood -Kinarra -Kinbrace -Kinburn -Kincade -Kincaid -Kincardine -Kincheloe -Kincraig -Kindee -Kindelan -Kinder -Kinder Farm Park -Kinderbrook -Kindergarten -Kinderhaven -Kinderkamack -Kinders -Kinderton -Kindler -Kindlewood -Kindra Hill -Kindross -Kineholme -Kineo -Kiner -Kinfauns -King -King Albert -King Alfred -King Arthur -King Arthurs -King Caesar -King Carter -King Centre -King Charles -King Coel -King Creek -King David -King Duncan -King Edward -King Edward VII -King Farm -King Fisher -King George -King George IV -King George V -King George VI -King Georges -King Georges Post -King Grant -King Hall -King Harold -King Harry -King Henry -King Henrys -King Hill -King James -King James Landing -King John -King Johns -King Krest -King Louis -King Malcolm -King Manor -King Max -King Midas -King Muir -King Philip -King Phillip -King Richard -King Ridge -King Solomon -King William -Kingarth -Kingate -Kingbird -Kingbrook -Kingcroft -Kingcup -Kingdale -Kingdom -Kingdon -Kingery -Kingfield -Kingfisher -Kingham -Kingham Ranch -Kinghorn -Kinghorne -Kinghurst -Kingingwood -Kinglake -Kingland -Kinglet -Kingly -Kingman -Kingmont -Kingmoor -Kingridge -Kings -Kings Arm -Kings Arms -Kings Arrow -Kings Beach -Kings Bench -Kings Canyon -Kings Chapel -Kings Charter -Kings College -Kings Color -Kings Court -Kings Creek -Kings Creek Truck -Kings Cross -Kings Crossing -Kings Farm -Kings Field -Kings Forest -Kings Furlong -Kings Gate -Kings Grant -Kings Grove -Kings Hall -Kings Head -Kings Heather -Kings Heights -Kings Hill -Kings House -Kings Lake -Kings Landing -Kings Lynn -Kings Manor -Kings Meadow -Kings Mill -Kings Mountain -Kings Park -Kings Pine -Kings Point -Kings Retreat -Kings Terrace -Kings Toll -Kings Tree -Kings Valley -Kings View -Kings Village -Kings Walk -Kings Way -Kings Wood -Kingsand -Kingsash -Kingsbay -Kingsberry -Kingsbridge -Kingsbrook -Kingsbury -Kingsbury Estates -Kingsclare -Kingsclear -Kingsclere -Kingscliffe -Kingscote -Kingscourt -Kingscroft -Kingsdale -Kingsdon -Kingsdown -Kingsdowne -Kingsfernsden -Kingsfield -Kingsford -Kingsford Smith -Kingsgate -Kingsgrove -Kingshill -Kingshold -Kingsholme -Kingshurst -Kingsingfield -Kingsland -Kingslangley -Kingslea -Kingslee -Kingsleigh -Kingsley -Kingsley Wood -Kingsly -Kingsman -Kingsmans Farm -Kingsmead -Kingsmead Main -Kingsmen -Kingsmere -Kingsmill -Kingsmoor -Kingsnorth -Kingsord -Kingspark -Kingspit -Kingsport -Kingsthorpe -Kingston -Kingston Brook -Kingston Eden -Kingston Brook -Kingston Eden -Kingston Hall -Kingstown -Kingstowne -Kingstowne Commons -Kingstowne Village -Kingstream -Kingstree -Kingsview -Kingsview Village -Kingsway -Kingsway Westbourne -Kingswear -Kingswell -Kingswick -Kingswood -Kingswood Pond -Kingsworthy -Kingthorpe -Kingusse -Kingwell -Kingwood -Kinkade -Kinkaid -Kinkead -Kinkel -Kinkuna -Kinlay -Kinlet -Kinley -Kinloch -Kinlock -Kinloss -Kinmel -Kinmont -Kinmonth -Kinnaird -Kinne -Kinnear -Kinnelon -Kinnerton -Kinney -Kinnickinnic -Kinnicut -Kinnicutt -Kinnikinnic -Kinnoul -Kinnybrook -Kino -Kinross -Kinsale -Kinsbourne Green -Kinsel -Kinsella -Kinsey -Kinship -Kinsington -Kinsley -Kinsman -Kinson -Kinsport -Kinster -Kinswood -Kintmount -Kintop -Kintore -Kintyre -Kinvara -Kinvarra -Kinver -Kinzel -Kinzer -Kinzey -Kinzie -Kinzley -Kiogle -Kiola -Kiora -Kiote -Kiowa -Kip -Kiparra -Kiperash -Kipheart -Kipland -Kipling -Kipp -Kippara -Kippax -Kippax Valley -Kipperkopper -Kippington -Kippist -Kippling -Kipps -Kippy -Kira -Kirben -Kirby -Kirby Lionsdale -Kirbys -Kirbywood -Kirch -Kirche Hill -Kirchen -Kirchner -Kirchoff -Kirckpatrick -Kirdford -Kirk -Kirk Farm -Kirk Glen -Kirkbank -Kirkbrook -Kirkby -Kirkcady -Kirkcaldy -Kirkcrest -Kirkdale -Kirke -Kirker Pass -Kirketon -Kirkfell -Kirkfield -Kirkgate College -Kirkgate High -Kirkgate Highgate -Kirkhall -Kirkham -Kirkhamgate Lindale -Kirkhill -Kirkhope -Kirkland -Kirkland Ranch -Kirkleas -Kirklee -Kirklees -Kirkley -Kirklin -Kirklinton -Kirklyn -Kirklynn -Kirkman -Kirkmans -Kirkmanshulme -Kirkmichael -Kirkmont -Kirkpatrick -Kirkridge -Kirkside -Kirkstall -Kirkstall Bridge -Kirkstall Hill Eden -Kirkstead -Kirksted -Kirkstone -Kirksville -Kirkton -Kirkup -Kirkwall -Kirkwick -Kirkwood -Kirman -Kirmes -Kirpatrick -Kirra -Kirrang -Kirrawee -Kirribilli -Kirschman -Kirschoff -Kirshon -Kirst -Kirsten -Kirstmont -Kirston -Kirtland -Kirtle -Kirtley -Kirton -Kirwin -Kisconko -Kiser -Kishfield -Kishimura -Kishwaukee -Kiska -Kismet -Kiso -Kissam -Kissel -Kissena -Kissing Point -Kissling -Kista Dan -Kiswick -Kit -Kit Carson -Kit Hill -Kit Kat -Kitayama -Kitchell -Kitchell Lake -Kitchener -Kitcheners -Kitchenour -Kitching -Kitchner -Kitcombe -Kite -Kite Hawk -Kite Hill -Kite Wood -Kither -Kitkatts -Kitmary -Kitmore -Kitrk -Kitsap -Kitsbridge -Kitsbury -Kitsmead -Kitson -Kitt -Kitt Moss -Kittani -Kittanning -Kitter -Kittery -Kittewake -Kittie -Kittiwake -Kitto -Kittoe -Kittredge -Kittridge -Kitts -Kittson -Kitty -Kitty Duvall -Kitty Hawk -Kitty Pozer -Kittyhawk -Kitwood -Kiva -Kiver -Kivy -Kiwanis -Kiwanis Beach -Kiwanis Campground -Kiwong -Kizer -Klaers -Klaibar -Klainert -Klakring -Klamath -Klamath River -Klare -Klasen -Klassen -Klasson -Klaus -Klausers -Klea -Klee -Klehm -Kleiber Hall -Klein -Klein Creek -Kleinman -Kleins -Kleis -Klem -Klemetson -Klen -Klengel -Klianthi -Klickitat -Klier -Kliewer -Klimm -Kline -Kling -Klinger -Klingle Valley -Klinsky -Klipspringer -Klo -Klockstad -Kloer -Kloman -Klondike -Klough -Klovstad -Kluge -Klute -Kluth -Knack -Knapmill -Knapp -Knapsack -Knapton -Knaresborough -Knarlwood -Knarr -Knarr Barn -Knatchbull -Knatts -Knatts Valley -Knauer -Knave Wood -Kneafseys -Knebworth -Knecht -Kneeland -Knell -Knella -Knelle -Kneller -Knerr -Knesel -Knibb -Knichel -Knickerbocker -Knickerson -Knife Shop -Knight -Knight Arch -Knighten -Knighthill -Knighthood -Knightland -Knightlinger -Knighton -Knightons -Knightrider -Knights -Knights Bridge -Knights Forest -Knights Hill -Knights Park -Knights Park Denmark -Knightsbridge -Knightscroft -Knightsen -Knightsfield -Knightshayes -Knightswick -Knightswood -Knightwake -Knightwood -Knightwoods -Knivet -Knivton -Knob -Knob Cone -Knob Hill -Knobcone -Knobhill -Knobloch -Knoch Knolls -Knock -Knock Mill -Knockall -Knockhall -Knockholt -Knockhundred -Knocklayde -Knockwood -Knoelke -Knole -Knoll -Knoll Acres -Knoll Creek -Knoll Crest -Knoll Glen -Knoll Haven -Knoll Manor -Knoll Mist -Knoll North -Knoll Park -Knoll Ridge -Knoll Top -Knoll Valley -Knoll View -Knoll Way -Knoll Wick -Knoll Wood -Knollbrook -Knollcrest -Knollcross -Knolle -Knolle Bros -Knolles -Knollin -Knollridge -Knolls -Knolls Pond -Knollside -Knollton -Knolltop -Knollview -Knollwood -Knollys -Knopf -Knopp -Knorr -Knot -Knota -Knott -Knott Hill -Knottingham -Knottingwood -Knottisford -Knottocks -Knotts Green -Knotty Oak -Knotty Pine -Knotwood -Knowes -Knowl -Knowl Top -Knowland -Knowle -Knowle Park -Knowledge -Knowles -Knowles Hill -Knowlman -Knowlsey -Knowlton -Knowsley -Knowsthorpe -Knox -Knox Park -Knoxboro -Knoxbury -Knoxville -Knoyle -Knudtsen -Knuth -Knutsen -Knutsen Knoll -Knutsford -Knutsford Old -Knutson -Knypersley -Koa -Koala -Koala Bear -Kobada -Kobala -Kobara -Kobb -Kobbe -Kobe -Kober -Kobert -Koblike -Koch -Koch Peak -Kocher -Kochia -Kochka -Kociemba -Kodaya -Kodiak -Koehl -Koehler -Koehling -Koehnen -Koelle -Koenig -Koeper -Koepke -Koepp -Koester -Kofman -Koford -Koftinow -Kogan -Kohala -Kohat -Kohima -Kohl -Kohlepp -Kohler -Kohler Garden -Kohley -Kohlhoss -Kohlman -Kohlwood -Kohout -Kohr -Kokera -Koko -Kokoda -Kokoma -Kokomo -Kokora -Kolb -Kolbert -Kolff -Kolin -Koll Center -Kolling -Kollmar -Kollum -Kolmar -Kolmer -Kolob -Kolodong -Koloona -Kolpin -Kolrausch -Kolstad -Kolze -Koman -Komenich -Komiatum -Komina -Komirra -Komorn -Kon Tiki -Kona -Kondazian -Kondos -Kondrup -Konen -Konet -Konish -Konittekock -Konjevich -Konner -Konrad -Konvalin Oaks -Konynenburg -Kooba -Koobilya -Kooemba -Kookaburra -Koola -Kooloora -Koombalah -Koonawarra -Koongara -Koonya -Koopman -Koopmans -Koora -Kooraban -Koorabar -Koorabel -Koorala -Koorangi -Koorawatha -Koorinda -Koorine -Kooringa -Kooringai -Kooringal -Koorong -Koorool -Kooser -Koosman -Kootenai -Kootingal -Koowong -Kooy -Kooyong -Kop Hill -Kopf -Koping -Kopp -Koppie -Kopping -Korangai -Korbel -Korean War Veterans -Korfitsen -Korinya -Korman -Korn -Korndyk -Korneck -Kornett -Korogwe Forest -Korokan -Korol -Korrel -Kort -Kortright -Kortum -Kortum Canyon -Korvale -Korvett -Kosciusco -Kosciusko -Kosciuszko -Kosec -Kosene -Koshivas -Kosich -Koski -Kosmas -Kosmina -Koso -Kossman -Kossuth -Kosta -Koster -Kostner -Kotenberg -Kotlik -Kotlin -Koto -Kotschevar -Kott -Kottinger -Kouba -Kourtney -Kousa -Kouwenhoven -Kov -Kovacs -Koval -Kovanda -Kovar -Kovey -Kovr -Kowal -Kowald -Kowari -Kowell -Koya -Koyen -Kozera -Koziara -Kozy -Kraay -Kraemer -Kraft -Krafton -Krainski -Krakar -Kraken -Krakow -Kral -Kralj -Krame -Kramer -Krameria -Kraml -Kramme -Krapish -Krattley -Kratz -Krause -Kravchenok -Krazy Acre -Krebs -Krech -Kreck -Kredel -Kreeger -Kreekview -Kreekwood -Kreil -Kreischer -Kreitzburg -Krenn -Krenz -Kress -Kress Farm -Kresse -Kressin -Kresswood -Krestrel -Krestwood -Kreth -Kreuse Canyon -Kreuser -Kreutzer -Kreuz -Kreuzer -Krey -Krieger -Krinbill -Kring -Krings -Kris -Krishna -Krismer -Kriss -Krista -Kriste -Kristen -Kristi -Kristie -Kristin -Kristina -Kristine -Kristmont -Kristo -Kristoffer -Kristy -Kristyn -Kroc -Krochmal -Krochmally -Kroeger -Krohn -Kroll -Krolop -Kromray -Krona -Kroner -Kronmeyer -Kroombit -Krooner -Kropf -Krost -Krotiak -Krouser -Krowka -Kroy -Krueger -Krug -Kruger -Kruhm -Kruk -Krull -Krumb -Kruse -Kruse Ranch -Kruser -Kruze -Krysch -Krysiak -Krystal -Krystallos -Ku Ring Gai Chase -Kubek -Kuberski -Kublank -Kubor -Kuck -Kudilla -Kuehnis -Kuester -Kuethe -Kuhl -Kuhlthau -Kuhn -Kuhnle -Kulani -Kulas -Kulgoa -Kulgun -Kulick -Kulinia -Kullaroo -Kullberg -Kuller -Kulshan -Kult -Kumar -Kumbardang -Kumquat -Kumulla -Kunath -Kunde Winery -Kundes -Kundi -Kundibah -Kunen -Kungala -Kungar -Kuniholm -Kunipipi -Kunkel -Kunkundi -Kuno -Kuntz -Kuppa -Kupsch -Kuranda -Kurchian -Kurdyla -Kuringai -Kurland -Kurnell -Kuroki -Kurraba -Kurrabi -Kurrajong -Kurrara -Kurrawa -Kurri -Kurt -Kurth -Kurtis -Kurtz -Kuru -Kuruc -Kurung -Kurvers Point -Kurwin -Kurzon -Kushner -Kushnetki -Kusilek -Kuss -Kussoth -Kutcher -Kuter -Kutmut -Kuts -Kuttabul -Kuzik -Kvistad -Kwajalein -Kwedar -Kyalite -Kybes -Kyer -Kyffin -Kyle -Kyleigh -Kylemore -Kyler -Kyllo -Kymberley -Kyme -Kynaston -Kynder -Kyndhurst -Kyne -Kyngdon -Kynoch -Kyogle -Kyong -Kyra -Kyrle -Kytes -Kyverdale -Kywong -L Fernwood -L I Exwy Service -L R A -L Ranch -L V Loop -L W Besinger -L W Johnson -LIE North Service -LIE South Service -LIsmore -LIttle Comber -LIttle Commodore -LMU Commercial -La Alameda -La Alegria -La Avanzada -La Baig -La Barbera -La Baree -La Barranca -La Barthe -La Bella -La Boheme -La Bolsa -La Brea -La Brecque -La Cadena -La Campana -La Canada -La Canyada -La Casa -La Casita -La Cienega -La Cima -La Clair -La Colina -La Conner -La Contenta -La Corona -La Corso -La Corte -La Coruna -La Coruno -La Cosa -La Costa -La Coste -La Count -La Cresenda -La Cresenta -La Cresta -La Croix -La Crosse -La Cruz -La Cuesta -La Cumbre -La Donna -La Duke -La Encina -La Esperanza -La Espiral -La Fayette -La Field -La Follette -La Fond -La Fonda -La Fontaine -La Fox -La Fox River -La France -La Franchi -La Goma -La Grama -La Granada -La Granda -La Grande -La Grange -La Habra -La Hai Roi -La Haigh -La Haya -La Herran -La Homa -La Honda -La Jolla -La Jota -La Junta -La Lena -La Loma -La Londe -La Lynn -La Madrona -La Maison -La Mancha -La Mans -La Mar -La Mascotte -La Mesa -La Messa -La Mirada -La Monte -La Nuez -La Pala -La Palm -La Paloma -La Paz -La Perouse -La Placita -La Plata -La Playa -La Plaza -La Plume -La Porte -La Pradera -La Prenda -La Puerta -La Questa -La Quinta -La Ragione -La Reina -La Reina Real -La Rena -La Rhee -La Ribera -La Rinconada -La Riva -La Riviera -La Riviere -La Rocca -La Roche -La Roda -La Rosa -La Rose -La Rue -La Salette -La Salida del Sol -La Salle -La Selva -La Sendita -La Serena -La Setta -La Sierra -La Siesta -La Torre -La Tour -La Vera -La Vereda -La Vergne -La Verne -La Vida -La Vista -La Vita -La Vuelta -La para -LaSalle -Laars -Laauwe -Laban Pratt -Labarge -Labath -Labau -Labbe -Label -Labelle -Labernum -Labo -Labonte -Labor -Labor In Vain -Labore -Labour Centre -Labourn -Labrador -Labranza -Labrooke -Labrott -Labtec -Labuan -Labumum -Laburch -Laburnam -Laburnham -Laburnum -Labworth -Lac Lavon -Lac Lehman -Lac du Beatrice -Lacasse -Lacassie -Lace -Lace D -Lacebark -Lacewing -Lacewood -Lacey -Laceys -Lachal -Lachapelle -Lachine -Lachlan -Lackawanna -Lackey -Lackey Dam -Lackford -Lackington -Lackland -Lackspur -Lacky Dam -Laclair -Laclede -Lacoma -Lacombe -Lacon -Lacona -Laconheath -Laconia -Lacosta -Lacota -Lacrosse -Lacrozia -Lacy -Lad -Ladas -Ladbroke -Ladbrook -Ladbrooke -Ladbury -Ladcastle -Ladd -Ladd Hill -Ladd Tract -Laddie -Laddin Rock -Laddins -Ladds -Ladenburg -Ladera -Laderman -Ladero -Ladew -Ladge -Ladham -Ladhill -Ladies -Ladino -Ladner -Ladomus -Ladonia -Ladram -Ladson -Ladue -Ladues End -Ladwik -Lady -Lady Alesford -Lady Ann -Lady Bank -Lady Bird -Lady Bridge -Lady Brook -Lady Bug -Lady Carrington -Lady Cutler -Lady Game -Lady Jamison -Lady Jane -Lady Marion -Lady Oak -Lady Penrhyn -Lady Pit -Lady Slipper -Lady Somerset -Lady Wakehurst -Lady Winter -Lady Wood -Ladybank -Ladybarn -Ladybird -Ladybooth -Ladybridge -Ladybrook -Ladyclose -Ladycroft -Ladyegate -Ladygrove -Ladymeade -Ladypit -Ladyshore -Ladyslipper -Ladysmith -Ladythorn -Ladythorne -Ladywell -Ladywood -Lae -Lafarge -Lafata -Lafayette -Lafayette Center -Lafayette Forest -Lafayette Park -Lafayette Ridge -Lafayette Village -Laffans -Laffayette -Lafferty -Lafield -Laflamme -Lafleur -Laflin -Lafollete -Lafond -Lafone -Lafontaine -Laforet -Laforge -Lafox -Lafoye -Lafranconi -Lafreniere -Lagade -Lagaret -Lage -Laggan -Lagham -Lagiss -Lago -Lago De Bracciano -Lago Oaks -Lago Vista -Lagoda -Lagonda -Lagoon -Lagoon Fire -Lagoon Valley -Lagoon View -Lagorio -Lagrandeur -Lagrange -Laguardia -Laguna -Laguna Creek -Laguna Grove -Laguna Honda -Laguna Main -Laguna Manor -Laguna Mirage -Laguna Oaks -Laguna Park -Laguna Springs -Laguna Vega -Laguna Vista -Laguna Wind -Laguna Woods -Lagunaria -Lagunita -Lagunitas -Lagunitas School -Lahams -Lahard -Lahey -Lahiere -Lahinch -Lahn -Lahon -Lahonda -Lahontan -Lahti -Laidlaw -Laidlow -Laight -Laighton -Laigle -Laila -Lain -Laindon -Laindon Common -Laindon High -Laine -Laings -Laiolo -Laird -Lairds Landing -Laith -Laithe Croft -Laitoki -Laitwood -Lake -Lake Adalyn -Lake Almanor -Lake Anza -Lake Arrowhead -Lake Augusta -Lake Barlee -Lake Beach -Lake Bellevue -Lake Berryessa -Lake Bluestone -Lake Bluff -Lake Boone -Lake Braddock -Lake Breeze -Lake Bridgeport -Lake Candlewood -Lake Canyon -Lake Central -Lake Chabot -Lake Chad -Lake Champlain -Lake Chapel -Lake Charles -Lake Christopher -Lake Circle -Lake Claire -Lake Cook -Lake Court -Lake Cove -Lake Curve -Lake Dam -Lake Dell -Lake Denmark -Lake Echo -Lake Eliza -Lake Elmo -Lake End -Lake Erie -Lake Fairfax -Lake Fall -Lake Farrington -Lake Fontal -Lake Forest -Lake Forrest -Lake Front -Lake Garda -Lake Garrison -Lake George -Lake Glen -Lake Grove -Lake Haughey -Lake Hazeltine -Lake Herman -Lake Heron -Lake Hill -Lake Hills -Lake Hills Connector -Lake Hinsdale -Lake Home -Lake House -Lake Huron -Lake Iosco -Lake Isle -Lake Jackson -Lake James -Lake Johanna -Lake Katherine -Lake Knoll -Lake Landing -Lake Largo -Lake Lawn -Lake Lenore -Lake Lesina -Lake Linden -Lake Lock -Lake Louise -Lake Lucy -Lake Lynwood -Lake Manor -Lake Marian -Lake Marie -Lake Mary -Lake Mary Cele -Lake McClure -Lake Mead -Lake Meadow -Lake Merced -Lake Michigan -Lake Nanuet -Lake Natoma -Lake Newport -Lake Nimbus -Lake Normandy -Lake Oaks -Lake Occoquan -Lake Of Isles -Lake One -Lake Oneida -Lake Ontario -Lake Overlook -Lake Park -Lake Pillsbury -Lake Pine -Lake Placid -Lake Pleasant -Lake Plz -Lake Point -Lake Pointe -Lake Potomac -Lake Pulaski -Lake Pyramid -Lake Ranch -Lake Ree -Lake Ridge -Lake Ridge Club -Lake Riley -Lake Rose -Lake Santa Clara -Lake Sarah -Lake Sarah Heights -Lake Shore -Lake Shore Crest -Lake Susan -Lake Susan Hills -Lake Tana -Lake Temescal -Lake Terrace -Lake Terrapin -Lake Towne -Lake Trail -Lake Trasineno -Lake Tree -Lake Valentine -Lake Valley -Lake Varuna -Lake View -Lake Villa -Lake Village -Lake Virginia -Lake Vista -Lake Warren -Lake Washington -Lake Wawasee -Lake Wilhaggin -Lake Windermere -Lake Zurich -Lakeaires -Lakebird -Lakebrook -Lakechime -Lakecliff -Lakecrest -Lakefair -Lakefield -Lakeford -Lakeforest -Lakefront -Lakegreen -Lakehall -Lakehaven -Lakehill -Lakehouse -Lakehurst -Lakeknoll -Lakeland -Lakeland Park -Lakeland Shores -Lakeland Valley -Lakeland fells -Lakelands -Lakelawn -Lakeman -Lakemba -Lakemont -Lakemoor -Lakemore -Lakemuir -Laken -Lakenheath -Lakenhurst -Lakepark -Lakepoint -Lakepointe -Laker -Lakeridge -Lakeridge Oaks -Lakes -Lakeshire -Lakeshore -Lakeshore Plaza -Lakeside -Lakeside Circle -Lakeside Manor -Lakeside Oak -Lakeside View -Lakeside Village -Lakespring -Lakespur -Lakestone -Lakeswood -Laketree -Lakevale -Lakeview -Lakeview Fire -Lakeview Terrace -Lakeville -Lakewater -Lakeway -Lakewind -Lakewinds -Lakewood -Lakewood Falls -Lakewood Farms -Lakewood Park -Lakewood Prairie -Lakewood Trails -Lakewoods -Lakeworth -Lakin -Lakota -Lalchere -Laleham -Lalic -Lalich -Lalique -Lallas -Lalleford -Laloki -Lalonde -Lalor -Lalos -Lamanda -Lamanna -Lamar -Lamarck -Lamarcus -Lamarr -Lamarre -Lamartine -Lamb -Lamb Heights -Lambarde -Lambaren -Lambden -Lambdin -Lambe -Lambeck -Lamberhurst -Lamberson -Lambert -Lambert Bridge -Lambert Creek -Lambertina -Lamberton -Lamberton Square -Lamberts -Lamberts Mill -Lambertson -Lambeth -Lambeth High -Lambeth Hill -Lambeth Palace -Lambiance -Lambie -Lambley -Lambolle -Lambourn -Lambourne -Lambourne Hall -Lambrecht -Lambridge -Lambridge Wood -Lambrusca -Lambs -Lambs Conduit -Lambs Farm -Lambsgate -Lambskin -Lambton -Lamburn -Lamer -Lamerock -Lamers -Lamerton -Lamesa -Lametti -Lamington -Lamlash -Lammas -Lammas Park -Lammermoor -Lammers -Lamoil -Lamoine -Lamoka -Lamon -Lamond -Lamonerie -Lamont -Lamonte -Lamorak -Lamoraux -Lamore -Lamorna -Lamotte -Lamour -Lamoureux -Lamp -Lamp Lighter -Lamp Post -Lamp Rey -Lampard -Lampasas -Lampec -Lamphere -Lamping -Lampits -Lampits Hill -Lamplight -Lamplighter -Lamplighters -Lamport -Lamprey -Lampson -Lampton -Lampton Park -Lamring -Lamrock -Lamsey -Lamshin -Lamson -Lan Ark -Lana -Lanacre -Lanae -Lanai -Lanark -Lanatt -Lanbros -Lanbury -Lancashire -Lancaster -Lancaster School -Lancastre -Lancastrian -Lance -Lancefield -Lanceley -Lancell -Lancelot -Lancelyn -Lancer -Lancero -Lancers -Lancet -Lancewood -Lanchester -Lancia -Lancing -Lancot -Lancraft -Land -Land Off Causeway -Land Off Kendall -Land Off Pond -Land Off Priest -Land Off Whipple -Land Park -Land View -Landa -Landaker -Landale -Landana -Landau -Landcroft -Landells -Landen -Lander -Lander Set -Landeros -Landers -Landerset -Landerwood -Landess -Landfair -Landfall -Landfield -Landfill -Landfill Access -Landford -Landgraf -Landgrane -Landgrave -Landgreen -Landham -Landing -Landings -Landini -Landis -Landman -Landmark -Landmead -Landmeier -Landolt -Landon -Landon Hill -Landor -Landore -Landos -Landover -Landra -Landrace -Landrail -Landreth -Landridge -Landrock -Landry -Lands -Lands End -Landsberg -Landsburg -Landscape -Landscove -Landsdale -Landsdown -Landsdowne -Landseer -Landsend -Landsfield -Landtree -Landvale -Landview -Landwehr -Landwick -Landy -Lane -Lane And Dowry -Lane Cove -Lane Crest -Lane End -Lane Head -Lane Lorraine -Lanehead -Lanell -Lanercost -Lanes -Lanesboro -Lanesburgh -Laneside -Lanett -Lanette -Laneview -Lanewood -Lanfair -Lanfear -Lanfield -Lanford -Lanfranc -Lang -Langaller -Langbar -Langborough -Langbourne -Langbrook -Langcroft -Langdale -Langdon -Langdrum -Lange -Langelier -Langen -Langer -Langerfeld -Langetree -Langevin -Langewood -Langfield -Langford -Langham -Langhart -Langhedge -Langholm -Langhome -Langhorn -Langhorne -Langhurst -Langhurst Wood -Langland -Langlands -Langler -Langley -Langley Canyon -Langley Common -Langley Fork -Langley Hall -Langley Hill -Langley Lodge -Langley Oaks -Langley Park -Langley Platt -Langley Vale -Langleybury -Langly -Langmaid -Langmans -Langmead -Langmuir -Langner -Langness -Langney -Lango -Langport -Langridge -Langroyd -Langset -Langsett -Langsford -Langshan -Langshott -Langside -Langstaff -Langston -Langstone -Langthorne -Langton -Langtree -Langtry -Langwith -Langwith Valley -Langworth -Langworthy -Lanham -Lanham Severn -Lanhill -Lani -Lani Kai -Lanier -Lanigan -Laning -Lanini -Lanitos -Lankers -Lankester Parker -Lankford -Lanktree -Lanning -Lannock -Lannon -Lannoy -Lanny -Lano -Lanram -Lanrick -Lanridge -Lansbrook -Lansbury -Lansdale -Lansdell -Lansdown -Lansdowne -Lansdwone -Lanseer -Lansfield -Lansford -Lanshaw -Lansing -Lansley -Lansmere -Lant -Lantana -Lantern -Lantern Hollow -Lantern View -Lanterns -Lanthorn -Lantis -Lanton -Lantz -Lanvalley -Lanvanor -Lanyard -Lanza -Lanzaro -Lapa -Lapeer -Lapham -Lapidge -Lapier -Lapierre -Lapin -Lapine -Lapins -Lapis -Lapish -Lapland -Laplata -Laport -Laporte -Lapper -Lappmark -Lapre -Lapridge -Lapstrake -Lapu Lapu -Lapus -Lapwing -Laque -Lara -Larada -Laramee -Laramere -Laramie -Laraway -Larbert -Larbo -Larbre -Larc -Larc Industrial -Larch -Larch Hill -Larchdale -Larchfield -Larchmont -Larchmont Square -Larchmore -Larchview -Larchwood -Larciano -Larcom -Larcombe -Larcridge -Laredo -Laren -Larentia -Large -Larges -Larges Bridge -Largewood -Largo -Largo Center -Larguita -Largura -Laria -Lariat -Larimar -Larimer -Larios -Larissa -Lariston -Larita -Larium -Lark -Lark Brown -Lark Center -Lark Haven -Lark Hill -Lark Rise -Lark Song -Lark Spur -Larkard -Larkbere -Larkdale -Larkdale E -Larkellen -Larken -Larkey -Larkfield -Larkhall -Larkhill -Larkin -Larkin Ridge -Larking -Larkings -Larkington -Larkins -Larkmead -Larkmeade -Larks -Larksfield -Larkshall -Larkspur -Larkspur Canyon -Larkspur Plaza -Larkswood -Larkview -Larkwell -Larkwood -Larlin -Larmans -Larmuth -Larnach -Larne -Larned -Larnis -Larno -Larnock -Larochelle -Laron -Larool -Larosa -Larose -Larpent -Larpin -Larra -Larrabee -Larraway -Larrimore -Larrlyn -Larry -Larry Heller -Larry Ho -Larsdotter -Larsen -Larsens -Larson -Larson Farm -Larstan -Larue -Larup -Larwin -Larwood -Las Amigas -Las Animas -Las Astas -Las Barrancas -Las Brisas -Las Casas -Las Casitas -Las Colinas -Las Colindas -Las Cumbres -Las Dunas -Las Encinitas -Las Feliz -Las Flores -Las Gallinas -Las Huertas -Las Juntas -Las Lomas -Las Lomitas -Las Miradas -Las Olas -Las Ovejas -Las Palmas -Las Pavadas -Las Piedras -Las Plumas -Las Posadas -Las Positas -Las Pulgas -Las Quebradas -Las Ramblas -Las Raposa -Las Robles -Las Trampas -Las Vegas -Lasalle -Lasallette -Lasata -Lascelles -Lascombe -Laselle -Laser -Lash -Lash Larue -Lasham -Lashbrook -Lashbrooks -Lasher -Lashlake -Lasiandra -Lasker -Laskey -Laskie -Lass -Lassa -Lassell -Lassen -Lasser -Lasseter -Lassie -Lassiter -Lasso -Lasswade -Last -Last Chance -Lasta -Lastingham -Lastner -Lastreto -Lasuen -Latch -Latchford -Latchingdon -Latchmere -Latchmoor -Latchmore -Latchwood -Late Harvest -Late Walter -Lateward -Latham -Lathan -Lathbury -Lathem -Latholm -Lathom -Lathom Hall -Lathrop -Latigo -Latimer -Latin -Latina -Latisquama -Latney -Latoff -Latona -Latonia -Latoria -Latour -Latourette -Latrobe -Latshaw -Latta -Lattice -Lattie -Lattimer -Lattimore -Lattin -Latting -Lattingtown -Latton -Latty -Latura -Latvia -Laub Pond -Laud -Laud Honm -Lauder -Lauderdale -Laudervale -Lauerman -Lauf -Laufall -Lauff Ranch -Laugelle -Laughing Cow -Laughlin -Laughter -Laughton -Lauma -Lauman -Laumer -Launcelot -Launceston -Launch -Launch Site -Launching -Launders -Laundess -Laundress -Laundry -Launton -Lauppe -Laura -Laura Belle -Laura Lee -Laura Mark -Laura Ville -Lauradale -Laural -Laural Hills -Lauralton -Laurana -Lauras -Laurel -Laurel Acres -Laurel Bank -Laurel Bowie -Laurel Branch -Laurel Brook -Laurel Canyon -Laurel Cove -Laurel Creek -Laurel Crest -Laurel Dell -Laurel Dell Fire -Laurel End -Laurel Fort Meade -Laurel Glen -Laurel Grove -Laurel Hill -Laurel Hills -Laurel Hollow -Laurel Lakes -Laurel Leaf -Laurel Leaves -Laurel Oak -Laurel Oaks -Laurel Park -Laurel Race Track -Laurel Ridge -Laurel Rock -Laurel Springs -Laurel Valley -Laurel View -Laurel Wood -Laurel Woods -Laurelbrook -Laureldale -Laurelei -Laureles -Laurelglen -Laurelgrove -Laurelhurst -Laurels -Laurelton -Laurelview -Laurelwalk -Laurelwood -Lauren -Lauren Ridge -Laurence -Laurence Hamilton -Laurence Pountney -Laurene -Laurent -Lauretta -Laurette -Lauri -Laurian -Lauriana -Lauriat -Lauricella -Laurie -Laurie Ann -Laurie Jo -Laurie Lee -Laurie Meadows -Laurier -Laurieton -Laurin -Laurina -Laurinda -Laurine -Lauriston -Laurita -Lauritson -Lauritzen -Laury -Lausanne -Lausecker -Lausen -Lauser -Lausett -Laussat -Laux -Lava -Lava Bed -Laval -Lavalencia -Lavall -Lavalle -Lavally -Lavander -Lavant -Lavarack -Lavell -Lavelle -Lavelle Smith -Lavender -Lavender Hill -Lavender Park -Lavenders -Lavengro -Lavenham -Lavenida -Lavenir -Laventhal -Laver -Lavergne -Lavern -Laverne -Lavernock -Laverock -Lavers -Laverstoke -Lavidge -Lavidia -Lavigne -Lavin -Lavina -Lavington -Lavinia -Lavinus -Lavio -Laviolette -Lavister -Lavoie -Lavona -Lavoni -Lavonne -Lavrock -Law -Law Hall -Lawbrook -Lawday Place -Lawers -Lawes -Lawfield -Lawford -Lawfords Hill -Lawler -Lawler Ranch -Lawless -Lawley -Lawling -Lawlinge -Lawlins -Lawlor -Lawmarissa -Lawn -Lawn House -Lawn Ridge -Lawnbank -Lawndale -Lawnfair -Lawnhurst -Lawnmeadow -Lawns -Lawnside -Lawnswood -Lawnview -Lawnwood -Lawrance -Lawrence -Lawrence Brook -Lawrence Creek -Lawrence End -Lawrence Hargrave -Lawrence Hill -Lawrence Mill -Lawridge -Lawrie -Lawrie Park -Lawry -Laws -Laws Brook -Laws Ford -Lawsbrook -Lawson -Lawson Glen -Lawton -Lawton Moor -Lawtonka -Lawtonwood -Lawyers -Lawyers Hill -Lax -Laxell -Laxey -Laxfield -Laxton -Lay -Layard -Laybutt -Laycock -Layden -Layer -Layfield -Layham -Layhill -Layland -Laylock -Layman -Layminster -Layne -Laystall -Layters -Layters Green -Laytham -Laythan -Layton -Layton Hall -Layton Park -Layton Ridge -Laytonia -Laytons -Laytonsville -Lazaneo -Lazel -Lazell -Lazelle -Lazonby -Lazy -Lazy Acres -Lazy Creek -Lazy Day -Lazy Glen -Lazy Hollow -Lazy Point -Lazywoods -Lazzeretti -Lazzini -Le Ah -Le Ann -Le Bain -Le Britton -Le Brun -Le Chateau -Le Claire -Le Clos -Le Conte -Le Donne -Le Fevre -Le Fevres -Le Franc -Le Freth -Le Gendre -Le Grande -Le Havre -Le Jeune -Le Maire -Le Mans -Le Marchant -Le May -Le Moyne -Le Roy -Le Sueur -Le Temple -Le Visnet -Le personne -LeGrand -Lea -Lea Bridge -Lea Farm -Lea Hall -Lea Mount -Lea Park -Lea Valley -Leabank -Leabig -Leabons -Leabourne -Leabrook -Leaburn -Leach -Leaches -Leachs -Leacocks -Leacon -Leaconfield -Leacroft -Lead -Lead Mine -Leadale -Leadbeater -Leadbeaters -Leadbetter -Leadenhall -Leader -Leader Williams -Leadon -Leadville -Leadwell -Leaf -Leaf Lawn -Leaf Wing -Leafcrest -Leafcup -Leafcutter -Leafgreen -Leafhaven -Leafield -Leaflet -Leaford -Leaforis -Leafwood -Leafy -Leafy Oak -Leagrave -Leagrave High -Leah -Leahaven -Leahurst -Leahy -Leake -Leal -Lealand -Lealand Peck -Lealands -Leam -Leaman -Leaman Farm -Leamar -Leamington -Leamon -Leamoore -Leamore -Leamouth -Lean -Leana -Leander -Leaning Oak -Leann -Leanna -Leanne -Leanore -Leapale -Leapfrog -Leaping Deer -Leapingwell -Leapley -Lear -Learmonth -Learned -Learner -Learning -Lears Glen -Leary -Leas -Leasam -Leasey Bridge -Leasey Dell -Leaside -Leask -Leasowe -Leasowes -Leasure -Leat -Leatham -Leathe -Leather -Leather Creek -Leatherback -Leatherbark -Leatherchip -Leatherdale -Leatherhead -Leatherleaf -Leathermarket -Leathers -Leatherstocking -Leatherwood -Leathley -Leathwaite -Leathwell -Leaton -Leavenworth -Leaver -Leaves Green -Leavesden -Leavesley -Leavitt -Leavitt Woods -Leawarra -Leawood -Leaycraft -Leazes -Lebanon -Lebaron -Lebeaux -Lebec -Lebed -Lebeda -Lebel -Leber -Lebkamp -Leblanc -Leboeuf -Lebos -Lebrun -Leburmum -Lecante -Lech Walesa -Lechford -Lechmere -Lechner -Leckford -Leckwith -Lecky -Leclair -Leclaire -Leclerc -Lecluse -Lecompte -Leconfield -Lectern -Lecuyer -Leda -Ledborough -Ledbury -Leddy -Lede -Leder -Lederhaus -Ledford -Ledgard -Ledge -Ledge Brook -Ledge Hill -Ledge Rock -Ledge View -Ledgebrook -Ledgecrest -Ledgedale -Ledgelawn -Ledgemere -Ledgemore -Ledger -Ledgers -Ledgestone -Ledgetree -Ledgeview -Ledgeville -Ledgewood -Ledley -Lednura -Ledochowski -Ledoux -Ledrington -Ledsham -Ledson -Ledston -Ledston Main -Leduc -Ledward -Ledway -Ledwell -Ledyard -Lee -Lee Acres -Lee Alan -Lee Ann -Lee Brig Coronation -Lee Cemetery -Lee Chapel -Lee Church -Lee Conservancy -Lee Deforest -Lee Green -Lee High -Lee Hill -Lee Holm -Lee Jackson -Lee Jay -Lee Landing -Lee Lee -Lee Manor -Lee Masey -Lee Moor -Lee Overlook -Lee Patent -Lee Prescott -Lee School -Lee School Cross -Lee Vale -Lee Valley -Lee Wootens -Leeann -Leeberg -Leebrad -Leech -Leech Brook -Leechcroft -Leechpool -Leecroft -Leedale -Leedburg -Leeder -Leeds -Leeds Aire -Leeds Albion -Leeds Barnsdale -Leeds Bayswater -Leeds Boar -Leeds Call -Leeds Castle -Leeds Duncan -Leeds Hall -Leeds Infirmary -Leeds Moor -Leeds Old -Leeds Potternewton -Leeds Spen -Leeds Tunstall -Leeds Vicar -Leeds Victoria -Leeds York -Leedsville -Leedy -Leefield -Leegate -Leehigh -Leek -Leeke -Leelair -Leeland -Leeland Orchard -Leelyn -Leemans -Leemay -Leeming -Leemon -Leeper -Leepin -Leerdam -Lees -Lees Corner -Lees Court -Lees Crossing -Lees Farm -Lees Hall -Lees Hill -Lees New -Lees Park -Leesborough -Leesburg -Leese -Leeside -Leesley -Leeson -Leestone -Leesville -Leesway -Leeswood -Leet -Leeta Cornus -Leete -Leeton -Leeuwarden -Leever -Leeward -Leewater -Leewill -Leewood -Leewood Forest -Lefante -Lefavour -Lefevre Inn -Leffern -Lefferts -Lefke -Lefont -Lefrancois -Lefreth -Lefroy -Lefurgy -Legacy -Legacy Park -Legacy Pointe -Legana -Legard -Legaski -Legate -Legate Hill -Legation -Legato -Legatt -Legdewood -Legend -Legend Glen -Legend Manor -Legend Oaks -Legends -Legends Club -Legg -Leggatt -Leggatts Wood -Legge -Leggerini -Leggett -Leggo -Leggs -Leggs Heath -Leggs Hill -Legh -Leghorn -Legion -Lego -Legon -Legra -Legrand -Legregni -Legros -Legsheath -Lehan -Lehigh -Lehman -Lehmann -Lehmer -Lehn -Lehnert -Lehnertz -Lehr -Lehrer -Lehtinen -Lei -Leibel -Leibert -Leibes -Leibig -Leibrandt -Leicester -Leichardt -Leichester -Leichhardt -Leick -Leidesdorff -Leigh -Leigh Beck -Leigh Cliff -Leigh Hall -Leigh Hill -Leigh Hunt -Leigh Mill -Leigh Park -Leigh View -Leigham -Leigham Court -Leighams -Leighbrook -Leighdon -Leighfield -Leighfield Valley -Leighfields -Leighlands -Leighs Lodge -Leighton -Leighton Buzzard -Leighton Wood -Leighwood -Leigton -Leila -Leilani -Leims -Leineke -Leinster -Leipzig -Leishear -Leister -Leisure -Leisure Oak -Leisure Town -Leisure World -Leisureville -Leitch -Leitches Wharf -Leith -Leith Park -Leith View -Leitha -Leitrim -Leitz -Leka -Lekoday -Lekoe -Leksand -Leksich -Lektorich -Lela -Lelak -Leland -Leland Farm -Leland Hill -Lelani -Leliaris -Lelland -Lelong -Leman -Leman Lake -Lemans -Lemar -Lemarc -Lemas -Lemay -Lemay Lake -Lembeck -Lembi -Lemcrow -Lemen -Lemire -Lemm -Lemmington -Lemmon -Lemna -Lemnos -Lemocks -Lemoine -Lemon -Lemon Hill -Lemon Tea -Lemon Thyme -Lemon Tree -Lemongrove -Lemons Bridge -Lemont -Lemontree -Lemonwell -Lemonwood -Lemoore -Lemorr -Lemos -Lemoyne -Lemsford -Lemur -Len -Len Hill -Lena -Lenacre -Lenah -Lenah Farm -Lenape -Lenapi -Lenard -Lenark -Lenaskin -Lenbob -Lenborough -Lenburg -Lench -Lenclair -Lencoe -Lendall -Lendell -Lendon -Lendore -Lendrum -Leneda -Lenel -Lenelby -Lenertz -Leness -Leney -Lenfant -Lenfell -Lenfest -Lenfield -Leng -Lengl -Lenglen -Lenham -Lenham Forstal -Lenham Heath -Lenhart -Lenhome -Lenhurst -Lenington -Lenis -Lenison -Leniston -Lenmore -Lennan Brook -Lennane -Lennard -Lennartz -Lennecke -Lennell -Lennis -Lennoco -Lennon -Lennox -Lennoxshire -Lenoir -Lenolt -Lenora -Lenore -Lenox -Lenoxdale -Lenray -Lenroc -Lens -Lenside -Lent -Lent Green -Lent Rise -Lentara -Lenten -Lenthall -Lenthen -Lenthorp -Lentmead -Lenton -Lentz -Lenwood -Lenz -Lenzen -Lenzi -Lenzie -Leo -Leo Park -Leo Slyvious -Leofrene -Leola -Leoleis -Leominster -Leominster Shirley -Leon -Leon Cook -Leona -Leonard -Leonard Calvert -Leonard Farm -Leonard Wood -Leonard Young -Leonardine -Leonardini -Leonardo -Leonardo Da Vinci -Leonardtown -Leonardville -Leone -Leonello -Leong -Leonhard -Leonhardt -Leonia -Leonor -Leonora -Leopold -Leos -Leota -Lepanto -Lepine -Leplastrier -Leppoc -Lerch -Lerch Creek -Lerer -Leric -Lerida -Leritz -Lerner -Lerners -Lernhart -Lerose -Leroux -Leroy -Leroy Gorham -Lerwick -Les -Lesa -Lesbourne -Lescombe -Lescot -Leseur -Lesford -Lesher -Leshyk -Lesieur -Leski -Leslee -Lesley -Leslie -Leslie Ann -Leslie Gilbert -Leslie Park -Leslie Smith -Leslyn -Lesney Park -Lesnick -Lesnie -Lesoir -Lessar -Lesser -Lessing -Lessingham -Lessington -Lessini -Lessness -Lester -Lester Grey -Lester Wall -Lesters -Leston -Lestric -Lesueur -Lesure -Leswell -Leswin -Leswing -Leta -Letawsky -Letcher -Letchmore -Letchworth -Letcombe -Letendre -Letham -Lethbridge -Leticia -Letitia -Letsdown -Lett -Lettau -Letter -Letter Box -Letterbox -Letterkenny -Letterman -Letterstone -Lettice -Lettie -Lettsom -Lettumann -Letzen -Leucha -Leue -Leumeah -Leuna -Leuning -Leupold -Leupp -Leura -Lev -Leva -Levade -Leval -Levant -Levato -Levbert -Levedale -Levee -Levee Access -Level -Level Crossing -Levelle -Leven -Levenage -Levendale -Levendi -Levenhurst -Levens -Levenshulme -Levenworth -Lever -Lever Edge -Lever Hall -Lever Park -Leverenz -Leveret -Leverett -Leverhulme -Leverich -Leveridge -Levering -Levern -Leveroni -Leverson -Leverstock Green -Leverton -Leveson -Levett -Levey -Levgar -Levi -Levick -Levin -Levine -Levington -Levinson -Leviston -Levit -Levitt -Levoy -Levuka -Levvy -Levy -Lewandowski -Lewanna -Lewd -Lewelling -Lewellyn -Lewelyn -Lewgars -Lewid -Lewin -Lewins -Lewinsville -Lewis -Lewis Brown -Lewis Chapel -Lewis Clark -Lewis Court -Lewis Farm -Lewis Foster -Lewis Hill -Lewis Isle -Lewis Knolls -Lewis Point -Lewis Spring -Lewisburg -Lewisbury -Lewisdale -Lewish -Lewisham -Lewishham -Lewiston -Lewistown -Lewitt -Lewmay -Lewood -Lewsey -Lewson -Lewyt -Lex -Lexann -Lexden -Lexford -Lexington -Lexington Crossing -Lexington School -Lexington Valley -Lexton -Ley -Ley Field -Ley Hey -Leyborne -Leybourne -Leyburn -Leyburne -Leycester -Leycett -Leycroft -Leyden -Leyden Park -Leydenhatch -Leydon -Leyes -Leyete -Leyfield -Leyfield The Manor -Leyhill -Leyland -Leyland Park -Leyland Ridge -Leylands -Leylang -Leymar -Leys -Leysdown -Leysfield -Leysholme -Leyspring -Leystone -Leystra -Leyswood -Leyte -Leythe -Leyton -Leyton Cross -Leyton Midland -Leyton Park -Leytonstone -Leytonstone High -Leytte -Leywell -Leywick -Leywood -Lezayre -Lherault -Liable -Liahona -Liana -Liardet -Liatris -Libbeus -Libbey -Libby -Libeau -Libera -Liberata -Liberator -Liberia -Liberty -Liberty Bell -Liberty Grove -Liberty Hall -Liberty Heights -Liberty Hill -Liberty Island -Liberty Lake -Liberty Lakes -Liberty Mill -Liberty Oak -Liberty Park -Liberty Pole -Liberty School -Liberty Square -Liberty Tree -Liberty View -Libourel -Libra -Library -Library Hill -Libs -Libuse -Licata -Liccicitos -Lichau -Lichen -Lichfield -Lichtenberg -Lick -Lick Mill -Lick River -Lickfolds -Lickless -Lida -Lidbury -Lidco -Liddell -Liddell Pipeline -Lidden -Liddicoat -Lidding -Liddington -Liddington Hall -Liddington New -Liddle -Liddon -Lidell -Lidfield -Lidgate -Lidgerwood -Lidget -Lidgett -Lidgett Park -Lidgetts -Lidiard -Lido -Lidsing -Lidwells -Lidyard -Liebenrood -Liebig -Liebrock -Lieder -Liedum -Lief Erickson -Liege -Lieno -Lieper -Lierly -Lies -Liese -Lietz -Lieutenant Cox -Life -Life Quest -Liffler -Liffre -Lift -Lifton -Ligar -Liggett -Ligham -Light -Light Alders -Light Guard -Light House -Light Infantry -Light Oaks -Light Springs -Lightborne -Lightbounds -Lightbourne -Lightbowne -Lightburn -Lightburne -Lightcap -Lightcliff -Lightermans -Lightfoot -Lighthorne -Lighthouse -Lighthouse Landing -Lighthouse View -Lightland -Lightlands -Lightner -Lightning -Lightning Ridge -Lightning View -Lightridge Farm -Lightshaw -Lightship -Lightson -Lightthorne -Lightwater -Lightwood -Ligman -Lignum -Ligon -Ligonier -Liguria -Ligurian -Lihon -Likala -Likely -Likens -Likes -Lila -Lilac -Lilac Blossom -Lilac Bush -Lilac Park -Lilah -Lilbet -Lilbourne -Lilestone -Liley -Lilford -Lilian -Lilibet -Lilienthal -Lilihina -Lilita -Lill -Lilla -Lillard -Lille -Lillechurch -Lillehei -Lilleshall -Lilley -Lilleyhoo -Lilli Pilli -Lilli Pilli Point -Lillian -Lillick -Lillie -Lillifee -Lilline -Lilliput -Lillis -Lilly -Lilly Bottom -Lilly Hill -Lilly Pilly -Lilly Pond -Lillys -Lilting -Lilva -Lily -Lily Bottom -Lily Cache -Lily Dhu -Lily Field -Lily Hill -Lily Lake -Lily Mar -Lily Park -Lily Pond -Lilyan -Lilybrook -Lilydale -Lilyfield -Lilypad -Lilyville -Lima -Liman -Limantour -Limar -Limb Tree -Limberi -Limbourne -Limbrick -Limburg -Limbury -Lime -Lime Green -Lime Hill -Lime Kiln -Lime Meadow -Lime Pit -Lime Tree -Lime Trees -Lime Works -Limebank -Limeburner -Limecroft -Limeditch -Limefield -Limehouse -Limehurst -Limekilln -Limekiln -Limekiln Canyon -Limelight -Limerick -Limeridge -Limerston -Limes -Limes Field -Limesfield -Limestead -Limestone -Limestone School -Limetree -Limetrees -Limewood -Liming -Limits -Limmer -Limmerhill -Limmings -Limoges -Limoli -Limon -Limonite -Limpsfield -Lin Gate -Lin Lor -Lina -Linacre -Linares -Linaria -Linbarger -Linberg -Linbrook -Linby -Lince -Linch -Linchfield -Linclon -Lincoln -Lincoln Centre -Lincoln Crest -Lincoln Green -Lincoln Hill Camp Oak -Lincoln Hills -Lincoln House -Lincoln Knoll -Lincoln Log -Lincoln Mall -Lincoln Meadows -Lincoln Mill -Lincoln Oaks -Lincoln Park -Lincoln Village -Lincoln Woods -Lincolnia -Lincolns -Lincolnshire -Lincolntown -Lincolnway -Lincolnwood -Lincombe -Lincon -Lincrest -Lincroft -Lind -Linda -Linda Bee -Linda Flora -Linda Jean -Linda Lee -Linda Mar -Linda Marie -Linda Mesa -Linda Moor -Linda Rio -Linda Sue -Linda Vista -Lindabury -Lindaire -Lindal -Lindale -Lindall -Lindamoor -Lindaro -Lindau -Lindauer -Lindawood -Lindberg -Lindbergh -Lindbury -Linde -Lindegar -Lindeke -Lindel -Lindell -Lindelof -Lindemann -Linden -Linden Chapel -Linden Farms -Linden Grove -Linden Hall -Linden Hill -Linden Hills -Linden Hurst -Linden Leaf -Linden Linthicum -Linden Oaks -Linden Park -Linden Ridge -Linden Thomas -Linden Tree -Linden Wood -Lindenberry -Lindenbrook -Lindendale -Lindenhill -Lindenhouse -Lindenleaf -Lindenoaks -Lindentree -Lindenwood -Linder -Linder Hill -Linderman -Lindero -Lindesay -Lindeth -Lindfield -Lindford -Lindgren -Lindhurst -Lindi -Lindig -Lindinis -Lindisfarm -Lindisfarne -Lindley -Lindleywood -Lindmuir -Lindo -Lindon -Lindop -Lindor -Lindore -Lindores -Lindow -Lindow Fold -Lindquist -Lindrick -Lindridge -Lindron -Lindrop -Lindrum -Lindsay -Lindsay Blake -Lindsay Creek -Lindsay McDermott -Lindsay Pond -Lindsell -Lindsey -Lindsey Farm -Lindsey Manor -Lindsgate -Lindsley -Lindstrom -Lindum -Lindview -Lindy -Lindys -Line -Line Ridge -Lineas -Linebaugh -Linebrook -Linefield -Linehurst -Linersh -Linersh Wood -Lines -Linet -Linette -Liney -Linfield -Linford -Ling -Lingan -Linganore -Lingard -Lingards -Lingdale -Lingfield -Lingfield Common -Lingholme -Lingley -Linglongs -Lingmoor -Lingwell -Lingwell Gate -Lingwell Nook -Lingwood -Linhares -Linhope -Linington -Link -Link Hill -Linkfield -Linkmead -Links -Links View -Linkscroft -Linkside -Linksley -Linksview -Linksway -Linkswood -Linkway -Linkwood -Linkythorn -Linlar -Linlee -Linley -Linmore -Linmouth -Linn -Linnaean -Linnards -Linne -Linnea -Linnean -Linnell -Linneman -Linner -Linnet -Linnet Hill -Linney -Linnitt -Linnway -Linom -Linquist -Linroping -Linscheid -Linscott -Linsdale -Linsdell -Linsey -Linsford -Linslade -Linsley -Linstead -Linstedt -Linthicum -Linthorne -Linthorpe -Linton -Linton Hall -Linton Way -Lintonia -Lintric -Linum -Linus -Linus Pauling -Linver -Linville -Linway -Linway Park -Linwood -Linwood Forest -Linzee -Lio -Lion -Lion Fold -Lion Wharf -Lioncrest -Lionel -Lions -Lions Chase -Lions Club -Lions Creek -Lions Field -Lions Gate -Lions Head Ranch -Lions Park -Lions Watch -Lionsfield -Lionshead -Liotard -Liparita -Lipes -Liphook -Lipman -Lipnick -Lippard -Lippen -Lippert -Lippi -Lippit -Lippitt -Lippizan -Lippizaner -Lippold -Lipsett -Lipton -Liptraps -Liquid Amber -Liquid Laughter -Liquidamber -Lira -Lirious -Liryc -Lisa -Lisa Ann -Lisa Gaye -Lisa Lee -Lisamary -Lisawood -Lisbeth -Lisbon -Lisbon Center -Lisborough -Lisburn -Lisburne -Liscanor -Liscard -Liscomb -Liscombe -Liscum -Lisdowney -Lise -Lisetta -Lisford -Lisgar -Lisheen -Lisk -Liska -Liskeard -Lisker -Lisle -Lismore -Lispenard -Liss -Lissadel -Lissanthe -Lisso -Lissoms -Lisson -Lissow -List -Lister -Listetr -Listing -Listmas -Liston -Listowe -Listowel -Listra -Liszka -Liszt -Lita -Litchenberg -Litchfield -Litchfield Pine -Litchult -Litherland -Lithgow -Litho -Lithonia -Lithos -Lithuanica -Litina -Litke -Litle Circle -Litnonia -Litohenberg Fire -Littel -Littell -Little -Little ALmshoe -Little Acres -Little Ada -Little Albany -Little Albion -Little Alfred -Little Argyll -Little Arthur -Little Aston -Little Baddow -Little Bank -Little Bardfield -Little Basin -Little Bay -Little Bear Creek -Little Bear Hill -Little Beattie -Little Bend -Little Berkhamsted -Little Berry -Little Big Horn -Little Bloomfield -Little Bluestem -Little Boy -Little Braxted -Little Brighton -Little Broadway -Little Brook -Little Browns -Little Buckingham -Little Bury -Little Bushey -Little Cahill -Little Canada -Little Chapel -Little Chester -Little Church -Little Circle -Little City -Little Cleveland -Little Clove -Little College -Little Collins -Little Common -Little Compton -Little Cormiston -Little Cove -Little Cranmore -Little Creek -Little Crow -Little Current -Little Darling -Little David -Little Difficult -Little Dorrit -Little Downling -Little Ealing -Little East Neck -Little Edward -Little Ees -Little Egerton -Little Essex -Little Eveleigh -Little Falls -Little Farm -Little Farms -Little Fawn Canyon -Little Ferry -Little Foot -Little Fountain -Little Fox -Little Friday -Little Gaynes -Little Gerpins -Little Grange -Little Grass -Little Green -Little Gregories -Little Grove -Little Gypps -Little Hammer -Little Harbor -Little Haven -Little Hay -Little Heath -Little Heath Barley -Little Hill -Little Hollow -Little Honker Bay -Little Horkesley -Little Horwood -Little Hunter -Little Hyde -Little John -Little Johns -Little Joyce -Little King -Little Kings -Little Laver -Little Lever -Little Llagas -Little Llewellyn -Little London -Little Market -Little Marlborough -Little Marlow -Little Marryat -Little Marsh -Little Martin -Little Meadow -Little Melody -Little Merrill -Little Montague -Little Montgomery -Little Moose -Little Mort -Little Moss -Little Mount -Little Mountain -Little Nahant -Little Nassau -Little Neck -Little Neville -Little New -Little Nicholson -Little Norsey -Little Norton -Little Oak -Little Oaks -Little Orchard -Little Ox -Little Oxford -Little Oxhey -Little Path -Little Patuxent -Little Peninsula -Little Peter -Little Pier -Little Pitt -Little Plains -Little Point -Little Pond -Little Portland -Little Potters -Little Quarry -Little Queen -Little Queens -Little Reeves -Little Regent -Little Revel End -Little Ridge -Little Riley -Little River -Little River Run -Little Rock -Little Roke -Little Russell -Little Saint Marys -Little Seneca -Little Smith -Little Somerset -Little Sorrel -Little Spring -Little Tey -Little Theodore -Little Titchfield -Little Totham -Little Tree -Little Tring -Little Trinity -Little Turnpike -Little Turriell Bay -Little Twye -Little Uvas -Little Valley -Little Wakering -Little Wakering Hall -Little Walker -Little Waltham -Little Warley Hall -Little Wellington -Little West -Little Whaleneck -Little Widbury -Little Willandra -Little Wonga -Little Wood -Little Woodhouse -Little Wyndham -Little Young -Littlebourne -Littlebrook -Littlebrooke -Littlebuck -Littlebury -Littlecote -Littlecroft -Littledale -Littledales -Littledown -Littlefield -Littlefields -Littleford -Littleham -Littlehaven -Littleheath -Littlehurst -Littlejohn -Littlemoor -Littlemore -Littlemoss -Littleoak -Littles -Littles Point -Littlethorpe -Littleton -Littleton County -Littletree -Littleway -Littlewick -Littlewood -Littleworth -Littleworth Common -Littley Green -Littlfield -Littman -Litton -Littondale -Litwin -Litzen -Liv -Live Oak -Lively -Livermere -Livermore -Liverno -Liverpool -Liversedge Hall -Liversidge -Liverstudd -Liverton -Livery -Livesey -Livesy -Livia -Livingston -Livingston Terrace -Livingstone -Livinston -Livoli -Livonia -Livorna -Livorna Heights -Livoti -Livsey -Liz -Liz Kernohan -Liza -Lizann -Lizard -Lizban -Lizette -Lizotte -Lizwelch -Lizzie -Ljepava -Lladro -Llagas -Llagas Creek -Llagas Vista -Llama -Llama Ranch -Llanaway -Llanberis -Llandaff -Llandilo -Llanelly -Llanfair -Llangollan -Llano -Llanover -Llanovista -Llanthony -Llanvair -Llewellyn -Llewellyn Field -Llewellyn Manor -Llewelyn -Lleweyn -Lloyd -Lloyd Baker -Lloyd C Gary -Lloyd George -Lloyd Harbor -Lloyd Haven -Lloyd Park -Lloyd Point -Lloyd Rees -Lloyd Wright -Lloyden -Lloyden Park -Lloydhaven -Lloydminster -Lloyds -Llyod -Loa -Loader -Loading Place -Loading Rock -Loakes -Loampit Vale Jerrard -Loamy Hill -Loanda -Loantaka -Loates -Loats -Lob -Lobao -Lobata -Lobaugh -Lobelia -Lobert -Lobitos Creek -Lobley -Loblolly -Loblolly Pine -Lobo -Lobos -Local -Local Board -Locarno -Locbury -Loccmind -Loch -Loch Glen -Loch Haven -Loch Leven -Loch Lomand -Loch Lomond -Loch Maree -Loch Moor -Loch Raven -Loch Sloy Service -Lochaber -Lochaline -Lochalsh -Lochan Ora -Lochanburn -Lochanora -Lochard -Lochat -Lochaven -Lochbrae -Lochbrook -Lochdale -Lochdon -Lochee -Lochiel -Lochinvar -Lochinver -Lochland -Lochlash -Lochloy -Lochmere -Lochmoore -Lochnell -Lochner -Lochness -Lochridge -Lochrobin -Lochslea -Lochstead -Lochton -Lochville -Lochwan -Lochwood -Lochy -Lock -Lock Bridge -Lockborne -Lockdale -Locke -Locke King -Locke Lake -Lockeford Ranch -Lockeland -Locker -Lockerbie -Lockerby -Lockers Park -Lockesley -Locket -Lockett -Lockewood -Lockewoods -Lockey -Lockfield -Lockham Farm -Lockhart -Lockhart Gulch -Lockhaven -Lockheed -Lockhern -Lockhurst -Lockhurst Hatch -Lockingate -Lockinger -Lockington -Lockland -Locklands -Lockleven -Lockleys -Lockman -Lockner -Lockney -Lockport -Lockram -Lockridge -Locks -Locksbridge -Locksley -Locksley Park -Locksly -Locksmeade -Lockton -Lockundy -Lockward -Lockway -Lockwood -Lockyer -Locomotive -Locris -Locus -Locust -Locust Cove -Locust Creek -Locust Glen -Locust Grove -Locust Hill -Locust Point -Locust Ridge -Locust Spring -Locust Tree -Locust Wood -Locustdale -Locustwood -Lodato -Loddiges -Loddington -Loddon -Loddon Bridge -Loddon Hall -Lode -Loder -Lodestone -Lodge -Lodge Bottom -Lodge Farm -Lodge Forest -Lodge Hill -Lodge Point -Lodge Wood -Lodgehill -Lodgepole -Lodges -Lodi -Lodore -Lodovick -Loduca -Loe Ann -Loeb -Loeffler -Loehr -Loeser -Loewen -Lofberg -Lofstrand -Loft -Lofthouse Jumbles -Loftie -Lofting -Lofton -Lofts -Loftus -Lofty -Log -Log Bridge -Log Cabin -Log Cabin Ranch -Log Chain -Log Hill -Log House -Log Inn -Log Lodge -Log Teal -Logan -Logan Creek -Logan Hill -Logan Manor -Logan Wood -Loganberry -Logansport -Loganview -Loganwood -Logarto -Logee -Loggers -Logging -Loggins -Loggon -Logic -Logie -Logmill -Logmore -Logquarter -Logsdon -Logue -Logway -Logwood -Loh -Lohman -Lohnes -Lohr -Lohrman -Lohsen -Loi Linda -Loines -Lois -Loisdale -Loise -Loiselle -Loker -Loki -Lokoya -Lokus -Lola -Lolan -Loland -Loleta -Loletta -Lolita -Loll -Lolleywood -Lollipop -Lolly -Lolly Post -Lolo Pass -Loma -Loma Almaden -Loma Alta -Loma Alta Fire -Loma Chiquita -Loma Heights -Loma Linda -Loma Mar -Loma Prieta -Loma Rio -Loma Robles -Loma Verde -Loma Vista -Loman -Lomand -Lomani -Lomar -Lomas -Lomax -Lombard -Lombardi -Lombardo -Lombardy -Lometa -Lomglands -Lomita -Lomitas -Lommel -Lomond -Lomond South -Lompico -Lon -Lonanbe -Lonard -Lonardo -Loncin Mead -Loncroft -Lonczak -Londesborough -Londin -London -London And Decatur -London Bay -London Bridge -London Council -London Fenchurch -London Hill -London Leaf -London Ranch -Londonary -Londonberry -Londonderry -Lone -Lone Barn -Lone Cedar -Lone Eagle -Lone Hill -Lone Leaf -Lone Oak -Lone Pine -Lone Tree -Lone Tree Plaza -Lonergan -Lonesome -Lonesome Pine -Loney -Long -Long Acre -Long Acres -Long Barn -Long Beach -Long Beech -Long Boat Key -Long Border -Long Bottom -Long Bow -Long Branch -Long Bridge -Long Canyon -Long Catlis -Long Channel -Long Close -Long Cope -Long Cove -Long Croft -Long Deacon -Long Down -Long Ferry -Long Furlong -Long Gate -Long Green -Long Grove -Long Hill -Long Island -Long Island Motor -Long Island Rail -Long Lake -Long Leaf -Long Lodge -Long Marl -Long Marsh -Long Marston -Long Meadow -Long Mill -Long Neck Point -Long Oak -Long Orchard -Long Pine -Long Point -Long Pond -Long Ranch -Long Readings -Long Rede -Long Ridge -Long Ridings -Long River -Long Row Hopwood -Long Run -Long Shadow -Long Shadows -Long Sought For Pond -Long Spur -Long Thorpe -Long Valley -Long View -Long Wood -Longacre -Longacres -Longaker -Longard -Longbarn -Longbeach -Longboat -Longbow -Longbranch -Longbridge -Longbutt -Longcommon -Longcor -Longcroft -Longcrofte -Longcross -Longdale -Longden -Longdene -Longdike -Longdin -Longdon -Longdown -Longdraft -Longdyke -Longe -Longedge -Longell -Longend -Longest -Longfellow -Longfield -Longfields -Longford -Longham -Longhams -Longhayes -Longhedge -Longhill -Longhope -Longhorn -Longhorn Ridge -Longhouse -Longhurst -Longlands -Longlane -Longleaf -Longleat -Longledge -Longleigh -Longlevens -Longley -Longleys -Longlook -Longmark -Longmead -Longmeade -Longmeade Crossing -Longmeadow -Longmere -Longmoor -Longmoore -Longmore -Longmorn -Longnor -Longo -Longobardi -Longpoint -Longpoles -Longport -Longreach -Longreen -Longridge -Longroyd -Longs -Longshadow -Longshaw -Longshaw Ford -Longshore -Longshot -Longshut -Longsight -Longson -Longspur -Longstaff -Longstomps -Longstone -Longstreak -Longstreet -Longton -Longtown -Longtree -Longueville -Longvale -Longvalley -Longview -Longville -Longvue -Longwalk -Longwater -Longwell -Longwick -Longwood -Longwood Grove -Longworth -Loni -Lonicera -Loniewski -Lonmount -Lonna -Lonni -Lonnie -Lonnquist -Lonsdale -Lonus -Loo -Loobath -Loobert -Loobey -Look -Looker -Lookes -Looking Glass -Looking Post -Lookoff -Lookout -Lookout Farm -Lookout Hill -Loom -Loombah -Loomes -Loomis -Loon -Loon Hill -Looney -Loop -Loorana -Loose -Loose Down -Lopa -Lopes -Lopez -Loppets -Lopton -Loquat -Loquat Valley -Lora -Lorabelle -Lorac Vista -Loradale -Lorain -Loraine -Loral -Loralee -Loran -Loran Nordaren -Lorando -Lorane -Lorang -Loras -Loray -Lorayne -Lorca -Lord -Lord Baltimore -Lord Cecil -Lord Culpeper -Lord Derby -Lord Eldon -Lord Fairfax -Lord Hills -Lord Howe -Lord Kitchner -Lord Mayors -Lord Mead -Lord Nelson -Lord North -Lord Warwick -Lorden -Lordina -Lordine -Lordings -Lords -Lords Landing -Lordsfield -Lordship -Lordsmead -Lordswell -Lordswood -Loree -Loreen -Lorel -Lorele -Lorelei -Loreley -Loren -Lorena -Lorene -Lorensen -Lorentz -Lorenz -Lorenze -Lorenzen -Lorenzetti -Lorenzo -Lorete -Loreto -Loretta -Lorette -Loretto -Lorey -Lorfax -Lori -Lori Anne -Lorian -Loriann -Lorie -Lorient -Lorigan -Lorijean -Lorikeet -Lorillard -Lorimer -Lorin -Lorina -Lorinda -Loring -Loring Hills -Loring Towers -Lorion -Loris -Lorita -Lorking -Lorland -Lorn -Lorna -Lorna Leigh -Lornadel -Lorne -Lornkel -Lorraine -Lorraine Metcalf -Lorre -Lorree -Lorren -Lorreta -Lorretta -Lorrie -Lorrimore -Lorring -Lorry -Lortel -Lorton -Lorton Market -Lorton Valley -Lorum -Lorusso -Lory -Loryn -Los Alamos -Los Altos -Los Amigos -Los Angeles -Los Arabis -Los Arboles -Los Banos -Los Banos Cdf -Los Carneros -Los Cedros -Los Cerritos -Los Cerros -Los Charros -Los Coches -Los Dedos -Los Encinos -Los Esteros -Los Felicas -Los Felice -Los Flores -Los Gamos -Los Gatos -Los Gatos Almaden -Los Guilicos -Los Gullicos -Los Huecos -Los Lagos -Los Medanos -Los Molinas -Los Montes -Los Ojos -Los Olivos -Los Padres -Los Palmos -Los Palos -Los Pinos -Los Positos -Los Prados -Los Pueblos -Los Ranchitos -Los Ranchos -Los Reyes -Los Rios -Los Robles -Los Suenos -Los Torres -Los Trancos -Los Trancos Woods -Los Viboras -Loscoe -Loseberry -Losfield -Loslomas -Losoya -Lossie -Lost -Lost Acre -Lost Boy -Lost Colony -Lost Corner -Lost Creek -Lost Deer -Lost Horse -Lost Lake -Lost Meadow -Lost Meadows -Lost Oak -Lost Ranch -Lost Rock -Lost Tree -Lost Valley -Lost View -Lostock -Lostock Hall -Lostock Park -Lostwood -Lot -Lot Phillips -Loten -Loth -Loth Lorian -Lothair -Lothenbach -Lotherton -Lothian -Lothrop -Lotman -Lots -Lott -Lotte -Lotten -Lottery -Lottie -Lottie Bennett -Lottie Fowler -Lotts -Lottsford -Lottsford Vista -Lotus -Lotus View -Lotz -Lotz Hill -Lou -Lou Ann -Lou Courtney -Louanis -Louart -Loubet -Louches -Loucks -Loucreta -Loud -Louden -Louders -Loudhams Wood -Loudon -Loudoun -Loudoun County -Loudoun Park -Loudoun Reserve -Loudoun Tech -Louds -Loudwater -Louetta -Lough -Loughboro -Loughborough -Loughead -Lougheed -Loughlin -Loughran -Loughrigg -Loughton -Loughton High -Louie -Louis -Louis Ballard -Louis Bork -Louis Holstrom -Louis Krohn -Louis Mattei -Louis Mill -Louis Nine -Louis Prang -Louis W Farley -Louisa -Louisana -Louisburg -Louise -Louise F Luther -Louisiana -Louisville -Loumac -Loumena -Lounga -Lounsbery -Loupe -Lourae -Lourdes -Loureiro -Loushers -Lousons -Louth -Louvain -Louvaine -Louville -Louvre -Lovall Valley -Lovall Valley Loop -Lovas -Lovat -Lovatt -Lovcraft -Love -Love Creek -Love Green -Love Grove -Love Harris -Love Joy -Loveall Valley -Lovedale -Loveday -Lovegrove -Lovejoy -Lovel -Lovelace -Loveland -Lovelands -Loveless -Lovell -Lovell Park -Lovely -Loventree -Loveridge -Lovering -Loverock -Lovers -Lovers Leap -Lovers Point -Loversend -Loves -Lovet -Lovett -Lovewell -Loveys -Lovibonds -Lovile -Loville -Loving -Lovis -Lovisa -Lovoni -Low -Low Close -Low Crompton -Low Cross Wood -Low Fields -Low Grove -Low Hall -Low Hill -Low Lea -Low Leighton -Low Meadow -Low Mills -Low Moor Side Wolley -Low Moorside -Low Shops -Low Wood -Lowana -Lowander -Lowandra -Lowanna -Lowbell -Lowbrook -Lowcross -Lowdells -Lowden -Lowder -Lowder Brook -Lowe -Lowe Mill -Lowell -Lowell Davis -Lowell Mason -Lower -Lower Adeyfield -Lower Afton -Lower Albion -Lower Alden -Lower Alderton Hall -Lower Almora -Lower Anchor -Lower Anchorage -Lower Armour -Lower Avon -Lower Aztec -Lower Bank -Lower Barn -Lower Basinghall -Lower Beach -Lower Bedfords -Lower Belgrave -Lower Bell -Lower Bennett -Lower Bents -Lower Bligh -Lower Bloors -Lower Bolton -Lower Boxley -Lower Boyle -Lower Boyndon -Lower Brand Lake -Lower Breeche -Lower Bridge -Lower Britwell -Lower Broad -Lower Broadmoor -Lower Brook -Lower Broughton -Lower Brunswick -Lower Burnham -Lower Bury -Lower Byrom -Lower Campbell -Lower Carr -Lower Carriage -Lower Charles -Lower Chatham -Lower Chestnut -Lower Chiles Valley -Lower Church -Lower Circle -Lower Cliff -Lower Colonial -Lower Cookham -Lower Coombe -Lower Country -Lower Court -Lower Cox -Lower Crescent -Lower Cross -Lower Cutter -Lower D -Lower Dagnall -Lower Darcy -Lower Darwin -Lower Dearborn Park -Lower Denmark -Lower Derby -Lower Dunton -Lower Edge -Lower Edgeborough -Lower Ellen -Lower Elmstone -Lower Exchange -Lower Express -Lower Fant -Lower Farm -Lower Farnham -Lower Featherby -Lower Field -Lower Fort -Lower Frenches -Lower Gore -Lower Grand -Lower Gravel -Lower Green -Lower Greenshall -Lower Grove -Lower Guildford -Lower Hall -Lower Ham -Lower Hampton -Lower Harpenden -Lower Hartlip -Lower Hatfield -Lower Haysden -Lower Henley -Lower Hey -Lower Hiberia -Lower Hibernia -Lower Hidden Falls -Lower High -Lower Higham -Lower Hill -Lower House -Lower Hutchinson -Lower Illinois -Lower James -Lower John -Lower Jones -Lower Kenwood -Lower Kings -Lower Knoll -Lower Lake -Lower Lees -Lower Leigh -Lower Lime -Lower Lock -Lower Locksley -Lower Lodge -Lower Luton -Lower Magazine -Lower Magothy Beach -Lower Maidstone -Lower Main -Lower Manor -Lower Mardyke -Lower Margaret -Lower Market -Lower Marlboro -Lower Marsh Baylis -Lower Matchaponix -Lower Memory -Lower Michigan -Lower Mickletown Boat -Lower Monton -Lower Morden -Lower Mortlake -Lower Mosley -Lower Mount -Lower Moushill -Lower Norton -Lower Notch -Lower Ormond -Lower Overlook -Lower Oxford -Lower Paddock -Lower Paice -Lower Park -Lower Paxton -Lower Pindell -Lower Pine -Lower Placerville -Lower Plateau -Lower Pound -Lower Queens -Lower Rainham -Lower Randolph -Lower Range -Lower Rawson -Lower Redwood -Lower Richmond -Lower Ridge -Lower Robert -Lower Rochester -Lower Roke -Lower Rollstone -Lower Rushton -Lower Sacramento -Lower Sandhurst -Lower Seedly -Lower Shear Creek -Lower Sheering -Lower Sheriff -Lower Sloane -Lower Southend -Lower Sutherland -Lower Tofts -Lower Town -Lower Trabing -Lower Trail -Lower Turf -Lower Turk -Lower Tweedale -Lower Twydall -Lower Vicarage -Lower Vickers -Lower Village -Lower Wabash -Lower Wacker -Lower Warren -Lower Weybourne -Lower Wharf -Lower Wokingham -Lower Wood -Lower Woodlands -Lower Wortley -Lower Wycombe -Lowercroft -Lowerfield -Lowerfold -Lowerhouse -Lowerre -Lowerwood -Lowery -Lowery Oaks -Lowes -Lowes Island -Lowestoft -Loweswater -Lowfield -Lowfield Heath -Lowfields -Lowgate -Lowick -Lowicks -Lowland -Lowlands -Lowman -Lowmoor -Lowndes -Lownorth -Lowood -Lowrey -Lowrie -Lowry -Lowshoe -Lowside -Lowth -Lowther -Lowthorpe -Lowton -Lox -Loxford -Loxford Hall Loxford -Loxham -Loxley -Loxton -Loxwood -Loy -Loyalton -Loyalty -Loyed -Loyola -Lozano -Lozier -Lt Glenn Zamorki -Lt Nichols -Lt. L. Duffy -Lu Anne -Lu Ray -Luana -Luanne -Luau -Lubar -Lubberhedges -Lubbock -Lubec -Lubeck -Lubin -Lubrono -Luby -Lucan -Lucas -Lucas Green -Lucas Park -Lucas Valley -Lucastes -Lucasville -Lucca -Luccarelli -Lucchesi -Luce -Luce Creek -Lucena -Lucent -Lucente -Lucerne -Lucero -Lucey -Luchessa -Luchessi -Luci -Lucia -Lucian -Lucianna -Lucie -Lucien -Lucienne -Lucile -Lucilla -Lucille -Lucina -Lucinda -Lucio -Lucius -Luck -Luckenbach -Luckenbill -Luckett -Lucketts -Lucking -Luckley -Luckmore -Lucknow -Lucks -Lucky -Lucky Hollow -Lucky Lake -Lucky Lure -Luckyn -Lucon -Lucot -Lucretia -Luctons -Luculia -Lucus -Lucy -Lucy Brown -Lucy Ray -Lucylle -Luda -Ludbury -Luddenham -Luddesdon -Luddesdown -Luddington -Ludell -Ludeman -Ludgate -Ludgershall -Ludgores -Ludham -Ludham Hall -Ludington -Ludlam -Ludlow -Ludlum -Ludpit -Ludwig -Ludy -Lue Ellen -Luedke -Luedtke -Luella -Luellan -Lufberry -Lufbery -Luff -Luffburrow -Luffenhall -Luffield -Luffman -Lufkin -Luft -Luftschloss -Lugano -Lugar -Lugar Brae -Lugard -Lugarno -Luger -Lughorse -Lugo -Luhmann -Luhn -Luis Munoz Marin -Luisa Kayasso -Luise -Luisi -Luisser -Luiz Fire -Lujan -Lujean -Lukas -Luke -Luken -Lukens -Luker -Lukes -Lukewood -Lukin -Lukins -Lula Belle -Luland -Lulea -Lull -Lullaby -Lullingstone -Lullington -Lulworth -Lum -Lumac -Lumar -Lumas Verdes -Lumb -Lumb Brook -Lumb Carr -Lumbar -Lumber -Lumber Company -Lumber Hill -Lumbertown -Lumby -Lumeah -Lumley -Lummas -Lummus -Lumn -Lumns -Lumry -Lumsdaine -Lumsdale -Lumsden -Luna -Luna Park -Lunada -Lunan -Lunar -Lunceford -Luncies -Lund -Lund Hill -Lund Ranch -Lunda -Lundan -Lundberg -Lundburg -Lundeen -Lundergan -Lundholm -Lundquist -Lunds Farm -Lundstead -Lundsten -Lundvall -Lundy -Lundys -Lune -Lunedale -Lunelle -Lunenburg -Luneta -Lunghurst -Lunham -Luning -Lunn -Lunny -Lunsford -Lunski -Lunt -Lupidia -Lupin -Lupine -Lupine Den -Lupine Hill -Lupine Valley -Lupp -Lupton -Lupus -Luquer -Lura -Lurene -Lureta Ann -Lurgan -Luria -Lurilane -Lurliene -Lurline -Lurnea -Lurting -Lurton -Lury -Lusan -Lusard -Lusbys -Luscombe -Lushes -Lushington -Lusitana -Lusitano -Lusk -Lussier -Lusted -Luster -Lusterleaf -Lustre -Lusty -Lute -Luten -Lutener -Lutes -Luther -Lutheran -Luthin -Lutman -Luton -Luton Airport -Luton High -Lutrell -Lutter -Luttrell -Lutz -Luvena -Luverne -Luvian -Luvie -Lux -Luxberry -Luxborough -Luxemburg -Luxfield -Luxford -Luxmanor -Luxmore -Luxon -Luxor -Luxury -Luyster -Luyung -Luz -Luzena -Luzern -Luzerne -Luzitania -Luzley -Luzon -Lyall -Lybrook -Lybury -Lycett -Lych Gate -Lychfield -Lycoming -Lycrome -Lyda -Lydbrook -Lydd -Lydden -Lydeard -Lydecker -Lydell -Lydens -Lydford -Lydgate -Lydham -Lydhurst -Lydia -Lydia Bradley -Lydia Ford -Lydianna -Lydiard -Lydiat -Lydig -Lyding -Lydney -Lydon -Lydstep -Lydyett -Lye -Lye Copse -Lye Green -Lyell -Lyeway -Lyford -Lygean -Lygetun -Lygoe -Lyla -Lyle -Lyles -Lylewood -Lyly -Lyman -Lyman School -Lyman Wheelock -Lymann -Lymbridge -Lymcote -Lymden -Lyme -Lyme Bay -Lyme Farm -Lyme Regis -Lymefield -Lymer -Lymerston -Lymewood -Lyminge -Lymington -Lymington Bottom -Lymm -Lymmhay -Lymmington -Lymoore -Lyn Oak -Lynack -Lynbara -Lynbrae -Lynbrook -Lynch -Lynch Hill -Lynchford -Lyncliff -Lyncrest -Lyncroft -Lynd -Lynda -Lyndale -Lyndall -Lyndals -Lynde -Lyndeboro -Lyndell -Lynden -Lyndene -Lyndenwood -Lynderswood -Lyndhurst -Lyndhurst Museum -Lyndia -Lyndley -Lyndon -Lyndsay -Lyndwood -Lyne -Lyne Crossing -Lynegrove -Lyneham -Lynesta -Lynestra -Lynette -Lynfield -Lynfords -Lyng -Lynham -Lynhurst -Lynmar -Lynmere -Lynmont -Lynmouth -Lynn -Lynn Crest -Lynn End -Lynn Fells -Lynn Forest -Lynn Manor -Lynn Oaks -Lynn Ric -Lynn Ridge -Lynn Shore -Lynn W Riffle -Lynn Wood -Lynnalan -Lynnbrook -Lynnbrooke -Lynncrest -Lynncroft -Lynndale -Lynne -Lynnett -Lynnfield -Lynngate -Lynnhaven -Lynnhurst -Lynnmoor -Lynns Retreat -Lynnview -Lynnwood -Lynors -Lynridge -Lynsander -Lynslade -Lynsted -Lynstock -Lynthorpe -Lynton -Lynton Park -Lynvale -Lynview -Lynvue -Lynway -Lynwick -Lynwood -Lynwood Hill -Lynwood Manor -Lynx -Lyon -Lyon Farm -Lyon Park -Lyon Ranch -Lyonia -Lyonpark -Lyonridge -Lyons -Lyons Creek -Lyons Hall -Lyonsdown -Lyonsville -Lyoth -Lyra -Lyrac -Lyric -Lysander -Lysbeth -Lysia -Lysias -Lysle -Lysons -Lyster -Lytchet -Lytcott -Lytelle -Lyth -Lytham -Lythe -Lytherton -Lythgoes -Lythrum -Lytle -Lyton -Lyttel -Lyttelton -Lyttleton -Lytton -Lytton Springs -Lyttonsville -Lyveden -Lywood -M F Bowen -M Gresham -M I Bowen -M. Hershman -MArkland -MCintosh -MINI Park -MITRE Corp Inner -MIddleton -MLK -MMU Didsbury Access -Maacama -Maacka -Maar -Maas -Mabaline -Mabank -Mabbs -Mabel -Mabel Ann -Mabel Josephine -Mabelle -Maberley -Mabey -Mabfield -Mabie -Mabini -Mable -Mabledon -Mablethorpe -Mabley -Mablin -Mabrey -Mabry -Mac -Mac Afee -Mac Arthur -Mac Donald -Mac Dougal -Mac Duff -Mac Farlane -Mac Gregor -Mac Intosh -Mac Kenzie -Mac Kenzie Creek -Mac Lean -Mac Leay -Mac Murtry -Mac Queen -Mac Sherry -MacArthur -MacAuley -MacCall -MacCartney -MacCulloch -MacDonald -MacDonough -MacDougal -MacGregor -MacIntosh -MacKay -MacKellar -MacKenzie -MacKillop -MacLachlan -MacLaurin -MacLeay -MacMillan -MacNamara -MacPherson -MacRae -Macadam -Macadamia -Macalaster -Macalester -Macalla -Macalpin -Macalpine -Macalvey -Macao -Macara -Macarthur -Macarthur Access -Macartney -Macatera -Macaulay -Macauley -Macaw -Macbain -Macbean -Macbeth -Macbride -Maccaboy -Macclesfield -Macclesfield Main -Macclesfield Old -Maccomb -Macculoch -Macdonald -Macdonnell -Macdougald -Macdowell -Macduff -Mace -Macedon -Macedonia -Macefin -Macers -Macey -Macfadden -Macfall -Macfarlan -Macfarland -Macfarlane -Macgill -Macgreggor -Macgregor -Mach -Machado -Machado Ranch -Machell -Machelle -Machen -Macher -Machias -Machin -Machpela -Machpelah -Maciel -Macintire -Macintosh -Macintyre -Maciorowski -Maciver -Mack -Mack Center -Mackall -Mackay -Mackell -Mackellar -Mackennal -Mackenthun -Mackenzie -Mackes Muff -Mackeson -Mackey -Mackeys -Mackie -Mackin -Mackin Woods -Mackinac -Mackinaw -Mackinnon -Mackintosh -Mackinwood -Mackley -Macklin -Macklyn -Mackson -Macksville -Mackubin -Mackville -Mackworth -Maclain -Maclaren -Maclaurin -Maclay -Maclean -Macleay -Maclefish -Maclennan -Macleod -Macler -Maclise -Maclure -Maclynn -Macmahon -Macmillan -Macmurdo -Macneil -Macnichol -Macnish -Maco -Macoma -Macomb -Macomber -Macombs -Macon -Macondray -Macone Farm -Macopin -Macoun -Macpherson -Macpumphrey -Macquarie -Macquarie Grove -Macquariedale -Macquarrie -Macrae -Macready -Macredes -Macri -Macroom -Macsherry -Mactier -Mactorowski -Macullar -Macwood -Macy -Macy Plaza -Mad River -Mada -Madagascar -Madalen -Madaline -Madan -Madary -Madawaska -Maddams -Maddaus -Maddecks -Madden -Maddison -Maddock -Maddocks -Maddox -Maddux -Maddy -Madeira -Madeiros -Madel -Madelaine -Madeleine -Madelena -Madeley -Madelia -Madeline -Madelyn -Maden -Mader -Madera -Madera del Presidio -Madere -Maderia Port -Madero -Madetra -Madge -Madgehole -Madgeways -Madginford -Madi -Madia -Madie -Madiera -Madigan -Madinah -Madingley -Madison -Madison Circle -Madison Farm -Madison Forest -Madison Green -Madison Greens -Madison Hill -Madison House -Madison McLean -Madles -Madoc -Madoline -Madonna -Madras -Madre -Madrers -Madrid -Madrigal -Madrillon -Madrillon Estates -Madrillon Springs -Madron -Madrona -Madronawood -Madrone -Madrone Fire -Madronean -Madrono -Madruga -Madsen -Madson -Maduro -Mae -Mae Belle -Mae Jim -Maeder -Maesbrook -Maesmaur -Maestro -Maeve -Mafeking -Maffei -Maffey -Maffia -Mag -Magaletta -Magarity -Magazine -Magda -Magdala -Magdalen -Magdalena -Magdalene -Magdalin -Magdelene -Magdelina -Magdella -Magee -Magee Ranch -Mageira -Magellan -Magenta -Mager -Magers -Magerus -Magestic -Magga Dan -Maggi -Maggie -Maggio -Maggiolo -Maggiora -Maggiore -Maggy -Magic -Magic Leaf -Magic Mountain -Magie -Magill -Maginnis -Magladry -Maglie -Magliocco -Magna -Magna Carta -Magna Vista -Magnaville -Magner -Magnet -Magnetic -Magnetite -Magney -Magnola -Magnolia -Magnolia Blossom -Magnolia Grove -Magnolia Hill -Magnolia Ridge -Magnollia -Magnum -Magnus -Mago Vista -Magoffin -Magonko -Magos -Magothy -Magothy Beach -Magothy Bridge -Magothy Manor -Magothy Park -Magothy River Shore -Magothy View -Magoun -Magowan -Magowar -Magown -Magpie -Magpie Hall -Magrath -Magreed -Magro -Magruder -Mags -Mague -Maguire -Mahala -Mahan -Mahar -Mahaska -Maher -Mahler -Mahlon -Mahlon Brower -Mahnken -Mahogany -Mahogony -Mahon -Mahoney -Mahoney Meadows -Mahonia -Mahony -Mahoo -Mahood -Mahopac -Mahoras -Mahtomedi -Mahtomedi Service -Mahwah -Maianbar -Maid Marion -Maida -Maida Vale -Maida Vale Hall -Maiden -Maiden Choice -Maiden Erlech -Maiden Erleigh -Maidenbower -Maidenhead -Maidenshaw -Maidera -Maidstone -Maier -Mailers -Maille -Maillet -Mailloux -Main -Main Beach -Main Campus -Main Creek -Main Entrance -Main Gate -Main Line -Main Tiger Mountain -Main Wharf -Maine -Maine Cove -Maine Prairie -Mainerd -Mainline -Mainprize -Mains -Mainsail -Mainsbridge -Mainstone -Mainwaring -Mainwood -Mair -Mairesfield -Mairfield -Mairmont -Maismore -Maison -Mait -Maithouse -Maitland -Maitland Park -Maize -Majendie -Majestic -Majestic Oaks -Majestic Pine -Majestic Prince -Majesty -Majilla -Major -Major Appleby -Major Deegan Service -Major Denton -Major Lansdale -Major Taylor -Major Trescott -Majorca -Majorie -Majors -Majors Bay -Majors Farm -Makah -Makamah -Makamah Beach -Makanna -Makant -Makatom -Makechnie -Makely -Makemoney -Makepeace -Makim -Makin -Makins -Makinson -Maklary -Makofske -Makos -Makushin -Mal -Mala -Malabar -Malachite -Malacoota -Malaga -Malaguerra -Malahide -Malakoff -Malam -Malaney -Malapardis -Malarin -Malat -Malay -Malba -Malbec -Malbert -Malbone -Malborough -Malbrook -Malburn -Malby -Malcolm -Malcolm Dixon -Malcolm Sargent -Malcolm Wilson -Malcolm X -Malcolmson -Malcom -Malcomb -Malden -Malders -Maldive -Maldon -Maldonado -Maldwyn -Maleady -Malec -Malech -Malecon -Malek -Malet -Maley -Malfort -Malga -Malham -Malhams -Mali -Malibou -Malibu -Malicoat -Malier -Malinda -Maling -Malinya -Malissa -Malkin -Mall -Mall Access -Mall Connection -Mall Loop -Mallacoota -Mallalieu -Mallar -Mallard -Mallard Lake -Mallard Landing -Mallard Point -Mallard Pointe -Mallard Ponds -Mallard Shore -Mallard Slough -Mallards Cove -Mallards Ponds -Mallawa -Mallee -Malleny -Mallery -Mallet -Mallet Hill -Mallett -Mallette -Malley -Malling -Mallings -Mallinson -Mallis -Mallison -Mallon -Mallorca -Mallord -Mallory -Mallory Canyon -Mallory Hill -Mallow -Mallow Ridge -Mallowdale -Mallows Green -Malloy -Mallview -Malm -Malmains -Malmaynes Hall -Malmers Well -Malmesbury -Malmo -Malmsbury -Malmstone -Malobar -Maloian -Malone -Maloney -Malonga -Maloon -Malory -Malott -Malouf -Maloyan -Malpas -Malpass -Malquinn -Malraux -Malsbury -Malsham -Malt -Malt House -Malt Kiln -Malta -Maltbie -Maltby -Maltese -Malthouse -Malthus -Malting -Malting Green -Maltings -Maltings Park -Maltings Villas -Maltmans -Malton -Maltravers -Malts -Malua -Malubar -Malus -Malvar -Malvasia -Malverley -Malvern -Malvern Hill -Malverna -Malverne -Malvin Albright -Malvina -Malvine -Malvini -Malwood -Malyon -Malyons -Malysana -Malzeard -Mamaroneck -Mamie -Mammoroneck -Mammoth -Mamor -Mamre -Man O War -Manacor -Manadnock -Managers -Manahan -Manalapan -Manana -Manand -Manassas -Manassas Forge -Manassas Mill -Manatauck -Manatee -Manatuck -Manbey -Manbre -Manbrough -Mance -Manchaug -Manchest -Manchester -Manchester Lakes -Manchester New -Manchester Old -Manchester Oxford -Manchet -Manchuria -Mancini -Manciple -Mancroft -Mancunian -Mancus -Mancuso -Manda -Mandalay -Mandalay Beach -Mandalong -Mandam Village -Mandan -Mandarin -Mandel -Mandela -Mandemar -Mander -Manderly -Manderston -Mandeville -Mandible -Mandoli -Mandolin -Mandoo -Mandoon -Mandora -Mandrake -Mandrell -Mandy -Mane -Manee -Manella -Manemet -Maneroo -Manet -Manette -Manetto -Manetto Hill -Maney -Manfield -Manfre -Manfred -Manfroy Ranch -Mangalore -Mangariva -Mangel Ranch -Mangels -Manger -Mangin -Mangini -Mangiri -Mangle -Mangles -Mango -Mangold -Mangos -Mangravet -Mangrill -Mangrove -Mangrum -Mangs -Manguire -Mangum -Manguso -Manhasset -Manhasset Woods -Manhattan -Manhattan Beach -Manhattan College -Manhattanville -Manhatten -Manheim -Maniago -Manico -Manida -Manifold -Manigan -Manila -Manildra -Manilla -Manion -Manipur -Manis -Manison -Manister -Manito -Manitoba -Manitou -Manitou Island -Manitowac -Mankas -Mankas Corner -Manker -Manland -Manley -Manley Bridge -Manlove -Manly -Manly Dixon -Mann -Mann Hill -Mann Lot -Manna Gum -Mannakee -Manner -Mannering -Manners -Mannetti -Mannetto Hill -Mannheim -Mannikin -Mannin -Manning -Manningtree -Mannix -Mannock -Mannow -Manns -Manns Hill -Manoel -Manoff -Manolete -Manomet -Manomin -Manon -Manooka -Manor -Manor Brook -Manor Circle -Manor Court -Manor Crest -Manor Ct -Manor Farm -Manor Gate -Manor Green -Manor Grove -Manor Hall -Manor Haven -Manor Hill -Manor House -Manor Lake -Manor Lea -Manor Mill -Manor Oaks -Manor Park -Manor Pond -Manor Pound -Manor Ridge -Manor Village -Manor Way Lee -Manor Way New -Manor Way Lime Tree -Manor Way Maythorne -Manora -Manorcrofts -Manorfield -Manorgate -Manorhaven -Manorhill -Manorhouse -Manors -Manorside -Manorstone -Manorvale -Manorview -Manorville -Manorwood -Manourhouse -Manowie -Manresa -Manresa Uplands -Mansard -Mansbury -Manscroft -Mansdale -Manse -Manseau -Mansel -Mansell -Mansells -Manser -Mansfield -Mansfield Manor -Mansford -Manshaw -Manship -Mansion -Mansion House -Mansion Park -Manson -Manston -Manstone -Mansur -Mansway -Manswood -Mant -Mantalini -Mantauk -Manteca -Mantelli -Manter -Manthey -Manthorne -Manthorp -Manthorpe -Mantilla -Mantis -Mantle -Manton -Mantoni -Mantua -Mantus -Manuel -Manuel Campos -Manuel T Freitas -Manuela -Manuelian -Manuella -Manufacturers -Manufactures -Manuka -Manursing -Manvel -Manvers -Manville -Manville Hill -Manwaring -Manwell -Manwood -Manx -Many Flower -Many Levels -Many Mind -Manygate -Manymind -Manzana -Manzanetta -Manzanilla -Manzanillo -Manzanita -Manzanita Fire -Manzanita Park -Manzanita Point -Manzanita Springs -Manzano -Maoli -Maolis -Maori -Map -Map Hill -Mapache -Mape -Mapel -Mapes -Mapesbury -Mapewood -Maple -Maple Bluff -Maple Branch -Maple Brook -Maple Chase -Maple Creek -Maple Cross -Maple Dell -Maple Falls -Maple Glen -Maple Grove -Maple Hall -Maple Heights -Maple Hill -Maple Island -Maple Knoll -Maple Lake -Maple Lawn -Maple Leaf -Maple Manors -Maple Mountain -Maple Park -Maple Pond -Maple Ridge -Maple Run -Maple Shores -Maple Tree -Maple Valley -Maple View -Maple Wood -Maplebrook -Maplecreek -Maplecrest -Maplecroft -Mapledale -Mapledon -Mapledrakes -Mapledurham -Maplefield -Maplegrove -Maplehill -Maplehurst -Maplelawn -Mapleleaf -Maplemoor -Maplenut -Mapleplain -Mapleridge -Maplers -Maples -Maplescombe -Mapleshade -Mapleside -Maplestead -Maplestead Hall -Maplethorpe -Mapleton -Mapletree -Mapleview -Maplewood -Maplewood Mall -Maplewood Park -Mapley -Maplin -Maquan -Maquilla -Mar -Mar East -Mar Monte -Mar Vista -Mar West -Mara -Maracaibo -Marakesh -Maraket -Maralinga -Maralyee -Maramel -Marampo -Maran -Marana -Maranatha -Maranda -Maranello -Maranie -Maranon -Maranook -Marant -Maranta -Maranui -Maras -Maraschino -Marathon -Maravich -Maravista -Maray -Marazzani -Marba -Marban -Marbee -Marbella -Marben -Marberry -Marbet -Marbi -Marbilynn -Marble -Marble Arch -Marble Canyon -Marble Fawn -Marble Hill -Marble Mountain -Marble Ridge -Marble Rock -Marble Valley -Marble Wood -Marbledale -Marblehead -Marbleridge -Marblestone -Marblewood -Marbly -Marboro -Marbour -Marbourne -Marbridge -Marbrook -Marburg -Marburger -Marbury -Marbury Run -Marc -Marcama Ranch -Marcando -Marceau -Marcee -Marcel -Marcela -Marcella -Marcellas -Marcello -Marcellus -Marcelyn -Marcer -Marcey -Marcey Creek -March -Marchand -Marchant -Marchbank -Marchbanks -Marchen -Marcher -Marches -Marchi -Marchmont -Marchwood -Marcia -Marcia Jean -Marcin -Marcius -Marclaire -Marcliffe -Marco -Marconi -Marcotte -Marcourt -Marcross -Marcshire -Marcus -Marcus Garvey -Marcuse -Marcussen -Marcy -Marda -Mardale -Mardan -Mardel -Mardell -Mardella -Marden -Marder -Mardi -Mardie -Mardin -Mardinly -Mardis -Mardjetko -Mardle -Mardley -Mardleybury -Mardo -Mardol -Mardon -Mardyke -Mare -Mare Barn -Mare Hill -Marea -Marechal Niel -Mareda -Maree -Marefield -Mareldor -Marella -Maren -Marenda -Marengo -Mares Neck -Mareschal -Mareshall -Mareth -Maretha -Maretimo -Mareu -Marfargoa -Marfield -Marford -Marfrance -Marga -Margail -Margaret -Margaret Bondfield -Margaret Corbin -Margaret Curtis -Margaret Gardner -Margaret Keahon -Margaret Mitchell -Margaret Woods -Margarets -Margaretta -Margaretting -Margarido -Margarita -Margarite -Margate -Margate on Oxford -Margelet -Margeret -Margerie -Margerita -Margery -Margery Park -Margery Wood -Marget -Margetts -Margherita -Margie -Margin -Marginal -Marginella -Margo -Margorie -Margot -Margraten -Margravine -Margret -Margrett -Margrove -Marguerette -Marguerita -Marguerite -Margurite -Marham -Mari -Maria -Maria Lake -Maria Noel -Mariada -Marian -Mariana -Marianas -Mariani -Mariann -Marianna -Marianne -Mariano -Maribess -Maricas -Marice -Marich -Maricopa -Maridon -Marie -Marie Angela -Marie Ann -Marie Curie -Marie Louise -Marie Major -Marieba -Mariele -Marielene -Mariemont -Maries -Mariestad -Marietta -Marigold -Marik -Marikay -Marilla -Marillac -Marillian -Marilona -Marilyn -Marilyne -Marilynn -Marimac -Mariman -Marin -Marin Center -Marin Oaks -Marin View -Marina -Marina Bay -Marina Court -Marina Cove -Marina Green -Marina Lakes -Marina Park -Marina Point -Marina Shore -Marina View -Marina Village -Marina Vista -Marinaview -Marinda -Marindell -Marine -Marine Terminal -Marine View -Marine World -Marinea -Marinefield -Marinella -Marinelli -Mariner -Mariner Green -Mariner Square -Marinera -Mariners -Mariners Cove -Mariners Island -Marinette -Marineview -Marinita -Marinna -Marino -Marinor -Marinovich -Marinucci -Marinus -Marinwood -Mario -Mario Anthony -Marioak -Mariola -Mariom -Marion -Marion Pepe -Marione -Marionet -Marions -Mariposa -Marique -Maris -Marisa -Marischal -Marish -Marisma -Marissa -Marist -Marit -Marita -Maritime -Maritime Academy -Marius -Marivista -Marjohn -Marjoram -Marjorams -Marjorie -Marjorie Jackson -Marjory -Mark -Mark Alan -Mark Bradford -Mark Center -Mark Collins -Mark Graf -Mark Lee -Mark Mead -Mark Terrace -Mark Thomas -Mark Twain -Mark Vincent -Mark West Springs -Mark Wood -Markab -Marked Tree -Markedge -Markeley -Markenfield -Market -Market Commons -Market Loop -Market Oak -Market Place -Market Square -Market Town -Marketfield -Marketplace -Marketpointe -Marketview -Markev -Markey -Markfield -Markgrafs Lake -Markham -Markham Grant -Markhams Grant -Markhouse -Markingdon -Markington -Markland -Markland Hill -Marklands -Marklay -Markley -Markmanor -Markovich -Markovina -Markowitz -Marks -Marks Hall -Marksman -Markstakes -Markston -Markwick -Markwood -Markyate -Marl -Marl Oak -Marl Pat -Marla -Marlain -Marlan -Marland -Marland Fold -Marland Hill -Marland Old -Marlands -Marlbarough -Marlboro -Marlboro Woods -Marlborough -Marlbrook -Marlbrough -Marlcroft -Marle -Marle Place -Marlee -Marleigh -Marlen -Marlene -Marler -Marless -Marlesta -Marlette -Marley -Marley Combe -Marley Creek -Marley Hills -Marley Neck -Marlfield -Marlin -Marlinford -Marling -Marlington -Marlins Park -Marlinspike -Marlis -Marlisle -Marlo -Marloborough -Marlock -Marloes -Marlon -Marlou -Marlow -Marlow Bridge -Marlow Farm -Marlowe -Marlpit -Marlpits -Marlpost -Marlstone -Marlton -Marlton Center -Marlwood -Marly Garden -Marlyn -Marlynn -Marlyns -Marlyon -Marmadon -Marmaduke -Marmary -Marmet -Marmion -Marmion Academy -Marmith -Marmon -Marmona -Marmont -Marmora -Marmot -Marna -Marne -Marnel -Marnell -Marney -Marnham -Marnice -Marnook -Marnpar -Maro -Maroel -Marong -Maroo -Marooba -Marook -Maroon -Maroon Bells -Maroopna -Maros -Maroubra -Marple -Marple Hall -Marple Old -Marquand -Marquard -Marquardt -Marques -Marquess -Marquet -Marquette -Marquis -Marquita -Marr -Marr Crest -Marr Lodge -Marra -Marrang -Marrett -Marri -Marriage -Marrick -Marrickville -Marrietta -Marrigan -Marrilyne -Marriner -Marringdean -Marrion -Marriot -Marriott -Marriotts -Marron -Marrow -Marrowbrook -Marryat -Marryott -Mars -Marsack -Marsad -Marsak -Marsala -Marsalla -Marsan -Marsand -Marsardis -Marscay -Marsch -Marschall -Marsdale -Marsden -Marsden Fall -Marsden Peel -Marsdon -Marseille -Marseilles -Marsh -Marsh Creek -Marsh Crossing -Marsh Farm -Marsh Fold -Marsh Gibbon -Marsh Green -Marsh Hall -Marsh Harbor -Marsh Hawk -Marsh Hill -Marsh House -Marsh Lake -Marsh Overlook -Marsh Point -Marsh Pointe -Marsh Quarter -Marsh View -Marsha -Marshal -Marshalee -Marshall -Marshall Ash -Marshall Beach -Marshall Concourse -Marshall Corner -Marshall Crown -Marshall Hall -Marshall Lake -Marshall Minor -Marshall Petaluma -Marshall Pond -Marshall Yard -Marshalls -Marshalls Heath -Marshalltown -Marshalswick -Marsham -Marshbrook -Marshcroft -Marshdale -Marshes Dock -Marshfield -Marshgate -Marshlake -Marshland -Marshlands -Marshman -Marshmellow -Marshmoor -Marshsong -Marshview -Marshy Point -Marsilly -Marsland -Marsland Green -Marson -Marstan Moor -Marsteller -Marsten -Marsters -Marston -Marstone -Marstonfields -Marsulin -Marsworth -Marszalkowski -Marta -Martaban -Martel -Martell -Martellini -Martello -Marten -Martens -Martense -Martensen -Marth -Martha -Martha Custis -Martha Greenleaf -Martha Jane -Martha Jones -Martha Washington -Marthall -Martham -Marthas -Marthas Point -Marti -Marti Marie -Martian -Martie -Martiin -Martin -Martin Francis -Martin Frobisher -Martin Jue -Martin Long -Martin Luther King -Martin Luther King Jr -Martin Redman -Martina -Martinack -Martinangelo -Martindale -Martine -Martineau -Martinelli -Martinez -Martingale -Martingdale -Martinhoe -Martini -Martinique -Martino -Martinoni -Martins -Martins Beach -Martins Cove -Martins Hundred -Martins Landing -Martins Pond -Martinsburg -Martinscroft -Martinsend -Martinstein -Martinvale -Martinwood -Martiri -Martis -Martius -Martland -Martlet -Martlett -Martlew -Martley -Martling -Martock -Martom -Marton -Martool -Martown -Marts -Marty -Martyn -Martyr -Martyrs -Maruba -Marumsco -Marva -Marva Oaks -Marvel -Marvell -Marvelle -Marvels -Marville -Marvin -Marvin Elwood -Marvin Gardens -Marvo -Marvy -Marwell -Marwick -Marwood -Marx -Marx Meadow -Mary -Mary Adele -Mary Agnes -Mary Alice -Mary Allen -Mary Ann -Mary Anne -Mary Augusta -Mary Baldwin -Mary Byrne -Mary C -Mary Caroline -Mary Case -Mary Cassatt -Mary Catherine -Mary Chilton -Mary Chris -Mary E Brown -Mary Eddy -Mary Ellen -Mary Etta -Mary Evelyn -Mary Fee -Mary France -Mary Helen -Mary Hills -Mary Jane -Mary Jean -Mary Jo -Mary Joe -Mary Kate -Mary Kay -Mary Kennedy -Mary Knoll -Mary Lee -Mary Lou -Mary Lu -Mary Lynn -Mary Neunar -Mary Paige -Mary Peters -Mary Powell -Mary Roth -Mary Scano -Mary Scot -Mary Todd -Mary Wollstonecraft -Marya -Maryal -Maryann -Maryanna -Maryanne -Maryannis -Maryatt -Marybelle -Marycrest -Marycris -Marydale -Marydell -Marye -Maryellen -Maryfield -Maryhill -Maryhurst -Maryjane -Maryknoll -Maryl -Marylake -Maryland -Maryland Park -Marylands -Marylebone -Marylebone High -Maryleborn -Marylin -Marylon -Marylou -Marylu -Marylyn -Marymead -Marymeade -Marymont -Marymoor Park -Marymount -Maryon -Maryport -Marys -Marys Mount -Marystown -Marysville -Maryton -Maryvale -Maryview -Maryville -Marywood -Marywood Oaks -Marz -Marzino -Marzitelli -Marzoff -Mas Que Farm -Masar -Masasoit -Masboro -Masbro -Mascalls -Mascalls Court -Mascari -Masciarelli -Mascoma -Masconemet -Masconomet -Masconomo -Mascot -Mascotte -Mase -Masefield -Maserati -Masham -Mashbury -Mashie -Mashman -Mashpee -Masjid -Maskell -Maskwonicut -Maslen -Masoma -Mason -Mason Bluff -Mason Crossing -Mason Dixon -Mason Hill -Mason Pond -Mason Ranch -Mason Ridge -Masonbrook -Masonic -Masonic Hall -Masonic Home -Masonry -Masons -Masons Beach -Masons Bridge -Masons Ferry -Masons Green -Masons Spring -Masonville -Masonwood -Maspeth -Mass -Massa -Massachusetts -Massanutten -Massapequa -Massapoag -Massar -Massasoit -Massbury -Masse -Massei -Massena -Masser -Masseth -Massetts -Massey -Massey Brook -Massie -Massingham -Massitoa -Massoit -Massolo -Masson -Massport Haul -Mast -Mast Hill -Mastbrook -Masten -Master -Master Gunner -Masterfield -Masterman -Masterpiece -Masters -Masterson -Masterton -Masterworks -Masthead -Mastic -Mastick -Mastlands -Mastmaker -Mastro -Maswell Park -Mat -Matadero -Matadero Creek -Matador -Matanzas -Matapeake -Matapeake Business -Mataro -Matawan -Matawan Green -Matbury -Match Point -Matcham -Matchaponix -Matchett -Matching -Matchless -Matchmoor -Matena -Mateny -Mateny Hill -Mateo -Matera -Materials -Matey -Matfair -Matfield -Matham -Mathams -Mathaurs -Mather -Mather East -Mather Field -Matheron -Mathes -Matheson -Mathew -Mathews -Mathews Park -Mathewsgreen -Mathewson -Mathia -Mathias -Mathieson -Mathieu -Mathilda -Mathis -Mathurin -Mathwig -Mathy -Matiasevich -Matignon -Matilda -Matilija -Matina -Matinecock -Matinecock Farms -Matis -Matisse -Matley -Matlock -Matmor -Matong -Matora -Matoza -Matross -Matson -Matsonia -Matsons -Matsqui -Matsuda -Matsumoto -Matt -Mattakeeset -Mattakeesett -Mattande -Mattapan -Mattaponi -Mattaponi River -Mattapony -Mattawoman -Mattawoman Beantown -Mattawoman Creek -Mattei -Matteline -Matteo -Matterhorn -Matteri -Matterson -Matteson -Matthes -Matthew -Matthew Henson -Matthew Mills -Matthew Moss -Matthew Parker -Matthews -Matthews Town -Matthias -Matthies -Matthiessen -Mattice -Mattie -Mattimore -Mattingley -Mattingley Bottle -Mattingly -Mattique -Mattison -Mattituck -Mattity -Mattock -Mattocke -Mattos -Mattox -Mattox Creek -Matts -Matts Hill -Mattson -Mattson Brook -Mattsons -Matule -Matura -Maturan -Matzen -Matzley -Maubert -Maud -Maude -Maudlin -Mauds -Maudslay -Maudsley -Maue -Mauer -Maugh -Maugham -Maughan -Maugus -Maugus Hill -Maui -Maujer -Maul -Maulbeck -Mauld -Mauldeth -Maule -Mauleverer -Maumee -Maumell -Mauna Kea -Maunder -Maunsel -Maura -Maura Elizabeth -Maureen -Maurer -Maurice -Mauricia -Mauritania -Mauritius -Maurland -Mauro -Mauro Pietro -Maury -Mausoleum -Mavelle -Maverick -Maverton -Maves -Mavins -Mavis -Mavor -Mavus -Mawal -Mawarra -Mawavi -Mawbey -Mawdsley -Mawhinney -Mawman -Mawney -Mawson -Max -Max Blobs Park -Maxall -Maxanicki -Maxcy -Maxdale -Maxess -Maxey -Maxfield -Maxim -Maximfeldt -Maximilian -Maximillian -Maxine -Maxson -Maxted -Maxwell -Maxwell Canyon -Maxwell Frye -Maxwells -Maxwelton -May -May Bate -May Brown -May Elm -May Lake -May School -May Wagner -Maya -Mayall -Mayan -Mayaone -Mayapple -Mayapple Hill -Maybank -Maybaugh -Maybaum -Maybeck -Maybeck Twin -Maybee -Maybell -Maybelle -Maybern -Mayberry -Mayborne -Mayboro -Maybrick -Maybrook -Maybury -Maybush -Maycheck -Maycliff -Maycock -Maycotts -Maycroft -Mayda -Maydale -Maydan -Mayday -Maydencroft -Maye -Mayellen -Mayer -Mayerne -Mayes -Mayesford -Mayeswood -Mayette -Mayfair -Mayfair Park -Mayfarm -Mayfiar -Mayfield -Mayfield Heights -Mayfields -Mayflower -Mayford -Maygood -Maygoods -Maygrove -Mayhall -Mayher -Mayhew -Mayhews -Mayhews Landing -Mayhill -Mayhouse -Mayhurst -Maykirk -Mayland -Maylands -Maylard -Maylea -Maylen -Maylins -Maylock -Maylons -Mayman -Mayme -Maymens Flat -Maymont -Maynadier -Maynard -Maynard Farm -Mayne -Maynestone -Mayo -Mayo Ridge -Mayock -Mayola -Mayor -Mayorlowe -Mayow -Mayplace -Maypole -Maypool -Mayport -Mayre -Mayroyd -Mays -Mays Canyon -Maysenger -Maysent -Maysfield -Mayside -Maysoule -Mayten -Maytham -Maythorne -Maytime -Mayton -Maytone -Maytorena -Maytree -Maytum -Mayvic -Mayview -Mayville -Mayweed -Maywin -Maywood -Mazalin -Mazarin -Mazatlan -Mazda -Mazda Brook -Maze -Maze Green -Mazeau -Mazenod -Mazepa -Mazewood -Mazey -Mazie -Mazoe -Mazuela -Mazur -Mazza -Mazzaglia -Mazzeo -Mazzilli -Mazzini -Mazzone -Mazzoni -Mc Abee -Mc Adam -Mc Afee -Mc Alester -Mc Alister -Mc Allister -Mc Alpin -Mc Arthur -Mc Auliffe -Mc Avoy -Mc Baine -Mc Breen -Mc Bride -Mc Cabe -Mc Callum -Mc Cameron -Mc Cammon -Mc Cann -Mc Cannon -Mc Carron -Mc Carter -Mc Carthy -Mc Ceney -Mc Chesney -Mc Chord -Mc Clean -Mc Clellan -Mc Clelland -Mc Clellen -Mc Clish -Mc Closkey -Mc Clung -Mc Clure -Mc Coco -Mc Coll -Mc Collam -Mc Comber -Mc Connell -Mc Cook -Mc Cool -Mc Cord -Mc Corkle -Mc Cormick -Mc Cornack -Mc Corty -Mc Covey -Mc Coy -Mc Cracken -Mc Cray Ridge -Mc Crea -Mc Creery -Mc Creery Ranch -Mc Crone -Mc Cue -Mc Culloch -Mc Cullough -Mc Cully -Mc Curdy Trail -Mc Cutchan -Mc Cutcheon -Mc Daniel -Mc Dermott -Mc Divitt -Mc Dole -Mc Donald -Mc Donell -Mc Dougall -Mc Dowell -Mc Eachern -Mc Evoy -Mc Ewen -Mc Fadden -Mc Fall -Mc Faul -Mc Garvey -Mc Gaw -Mc Ginley -Mc Ginn -Mc Ginness -Mc Ginnis -Mc Glashan -Mc Gloshen -Mc Glynn -Mc Grady -Mc Grann -Mc Graw -Mc Gregor -Mc Guckian -Mc Guffie -Mc Henry -Mc Intosh -Mc Intosh Creek -Mc Kay -Mc Kean -Mc Kee -Mc Keel -Mc Kellar -Mc Kelvey -Mc Kendree -Mc Kenna -Mc Kenny -Mc Kenzie -Mc Keon -Mc Keown -Mc Kinley -Mc Kinney -Mc Kissick -Mc Knew -Mc Knight -Mc Kool -Mc Lain -Mc Laren -Mc Larin -Mc Laughlin -Mc Lean -Mc Lellan -Mc Lendon -Mc Leod -Mc Loughlin -Mc Magan -Mc Mahon -Mc Menemy -Mc Millan -Mc Morrow -Mc Mullen -Mc Mullin -Mc Murray -Mc Nabbs -Mc Nair -Mc Near -Mc Neer -Mc Neil -Mc Neile -Mc Ney -Mc North -Mc Nutt -Mc Pherson -Mc Quay -Mc Questen -Mc Roberts -Mc Sween -Mc Vay -Mc Veigh -Mc Vicker -Mc Vickers -Mc Whorter -McAdam -McAdams -McAdoo -McAfee -McAleer -McAlister -McAllister -McAlpine -McAmant -McAndrew -McAndrews -McArdle -McArthur -McArthur Loop -McAtee -McAuley -McAuliffe -McBain -McBrian -McBride -McBrown -McBryde -McBurney -McCabe -McCahill -McCalium -McCall -McCallum -McCampbell -McCandless -McCann -McCannon -McCarron -McCarrs Creek -McCarters -McCarthy -McCarthy Ranch -McCarthy Ridge -McCarthys -McCartney -McCarty -McCarty Ranch -McCary -McCasland -McCauley -McCaulley -McCay -McCellen -McCeney -McChesney -McClain -McClaran -McClaren -McClarren -McClary -McClean -McCleer -McClellan -McClelland -McClellen -McClintock -McClish -McCloskey -McClosky -McCloud -McCloud River -McCloy -McClung -McClure -McClurg -McColl -McCollum -McComas -McComb -McCombe -McComber -McCone -McConnel -McConnell -McCook -McCool -McCoppin -McCord -McCorkle -McCormack -McCormic -McCormick -McCornick -McCosh -McCoville -McCowan -McCoy -McCoy Creek -McCracken -McCrae -McCray -McCray Ridge -McCrea -McCredie -McCreey -McCrory -McCrossin -McCubbens -McCubbin -McCudden -McCue -McCuen -McCul -McCulley -McCulloch -McCullough -McCullough Park -McCullum -McCune -McCurahan -McCurdy -McCurley -McCurry -McCutchen -McDaniel -McDaniels -McDeeds -McDermott -McDevitt -McDiarmid -McDivitt -McDole -McDonald -McDonald Chapel -McDonalds -McDonell -McDonnel -McDonnell -McDonough -McDonough Heights -McDougal -McDougald -McDougall -McDowall -McDowell -McDuff -McDuffie -McEathron -McElhone -McEllen -McElroy -McEncroe -McEnery -McEntee -McEvilly -McEvoy -McEwan -McFadden -McFadyen -McFarlan -McFarland -McFarlane -McFarlin -McFeeley -McFeeley Shipyard -McFetridge -McGaffigan Mill -McGann -McGarity -McGarvie -McGary -McGaw -McGee -McGeory -McGettigan -McGill -McGilvray -McGinn -McGinnis -McGirr -McGlenn -McGlinchey -McGovern -McGovney -McGowan -McGowen -McGrath -McGraw -McGregor -McGrue -McGuckian -McGuffey -McGuffie -McGuin -McGuiness -McGuinn -McGuinness -McGuire -McGuirk -McGurrin -McHarry Ranch -McHatton -McHenry -McHenry Service -McHenzie -McHugh -McIlvenie -McIlwraith -McIndoe -McInnis -McIntire -McIntosh -McIntyre -McIver -McKanna -McKay -McKean -McKee -McKeel -McKeever -McKell -McKellar -McKenchnie -McKendree -McKendrie -McKenna -McKennas Gulch Fire -McKenney -McKenny -McKenstry -McKenzie -McKenzie Point -McKeon -McKeown -McKern -McKernan -McKerrell -McKevitte -McKibben -McKibbin -McKillop -McKinley -McKinley Woods -McKinney -McKinnon -McKinsey -McKinsey Park -McKinstry -McKinzie -McKlintock -McKnew -McKnight -McKool -McKye -McLain -McLane -McLaren -McLaughan -McLaughlin -McLean -McLean Commons -McLean Corner -McLean Park -McLeans -McLearen -McLees -McLellan -McLennan -McLeod -McLester -McLoud -McMahon -McMane -McManus -McMaster -McMenemy -McMillan -McMillen -McMinn -McMullen -McMurdie -McMurdo -McMurry -McMurtry -McNab -McNabb -McNair -McNair Farms -McNamara -McNamee -McNaught -McNaughton -McNear -McNear Brickyard -McNeely -McNeil -McNeill -McNerney -McNichols -McNicoll -McNie -McNomee -McNultey -McOwen -McPeak -McPhee -McPherson -McQuade -McQuay -McRae -McRaes -McReynolds -McRoberts -McSherry -McTernan -McTucker -McVie -McWIlliam -McWalter -McWhirter -McWhorter -McWilliams -Mcadams -Mcafee -Mcalee -Mcallester -Mcandrew -Mcarthur -Mcauliffe -Mcavoy -Mcbride -Mccabe -Mccall -Mccallum -Mccalmont -Mccann Hill -Mccarrons -Mccarthy -Mcclelland -Mcclure -Mccoba -Mccoll -Mccordick -Mccormack -Mccormick -Mccoy -Mccracken -Mccraw -Mccue -Mcculloch -Mccullough -Mccusker -Mcdermott Farm -Mcdevitt -Mcdewell -Mcdonald -Mcdonald Farm -Mcdonna -Mcdonnell -Mcdougall -Mcdowell -Mcendy -Mcenelly -Mcfarlin -Mcgarvey -Mcgee -Mcgeoch -Mcgeough -Mcgill -Mcgovern -Mcgrane -Mcgrath -Mcgregor -Mcguire -Mchugh -Mchugh Farm -Mcintire -Mcintosh -Mcintyre -Mckay -Mckean -Mcken -Mckenn -Mckeon -Mckim -Mckinley -Mckinnon -Mcknight -Mckone -Mclains Woods -Mclaren -Mclean -Mcleavey -Mclellan -Mcleod -Mcmahon -Mcmenemy -Mcnair -Mcneill -Mcnulty -Mcphee -Mcpherson -Mcquade -Mcrayne Hill -Mctaggart -Mcvitty -Mea -Meacham -Meacher -Meachin -Mead -Mead House -Mead Point -Mead Pond -Mead Way Tollers -Meadbrook -Meadcroft -Meade -Meade Hill -Meade Village -Meader -Meades -Meadfield -Meadfoot -Meadgate -Meadhook -Meadhurst -Meadlands -Meado -Meadow -Meadow Bay -Meadow Bluff -Meadow Bridge -Meadow Brook -Meadow Chase -Meadow Club -Meadow Creek -Meadow Crest -Meadow Croft -Meadow Dam -Meadow Edge -Meadow Farm -Meadow Fence -Meadow Field -Meadow Gate -Meadow Glade -Meadow Glen -Meadow Green -Meadow Grove -Meadow Hall -Meadow Hill -Meadow Hunt -Meadow Lake -Meadow Lakes -Meadow Lark -Meadow Lily -Meadow Marsh -Meadow Oak -Meadow Oaks -Meadow Park -Meadow Pines -Meadow Pond -Meadow Ridge -Meadow Rose -Meadow Rue -Meadow Run -Meadow Sage -Meadow Shire -Meadow Side -Meadow Springs -Meadow Trail -Meadow Valley -Meadow View -Meadow Wood -Meadow Woods -Meadowbank -Meadowbridge -Meadowbrook -Meadowcot -Meadowcourt -Meadowcreek -Meadowcrest -Meadowcroft -Meadowdale -Meadowdale Beach -Meadowdown -Meadowfaire -Meadowfarm -Meadowfield -Meadowgate -Meadowglen -Meadowgreen -Meadowhaven -Meadowhawk -Meadowheights -Meadowhill -Meadowlake -Meadowland -Meadowlands -Meadowlark -Meadowlark Farm -Meadowlawn -Meadowmere -Meadowmist -Meadowmont -Meadowood -Meadowpond -Meadowridge -Meadowrill -Meadowrue -Meadows -Meadows Edge -Meadows Farm -Meadowsedge -Meadowshire -Meadowside -Meadowspring -Meadowstone -Meadowsweet -Meadowvale -Meadowview -Meadowvista -Meadowwood -Meadowwwod -Meads -Meadscroft -Meadvale -Meadview -Meadway -Meadway Bigwood -Meadway Devon -Meagan -Meager -Meagher -Meagill Rise Weston -Meakem -Meakin -Meal -Meal HIll -Mealer -Mealhouse -Meander -Meander Cove -Meandering -Meanderwood -Meanley -Meanwood -Meanwood Grove -Meanwood Valley -Mear -Mears -Meath -Meath Green -Mecan -Mecartney -Mecca -Mechanic -Mechanical -Mechanics -Mechanicsville Glen -Mechanicville -Meckes -Meckiff -Mecosta -Meda -Medalist -Medallion -Medanos -Medary -Medawar -Medbourne -Medburn -Medbury -Medcalf -Medcom -Medebridge -Medeiros -Meder -Medera -Medewood -Medfield -Medford -Medgar Evars -Medhurst -Media -Median -Mediati -Medical -Medical Center -Medical Foundation -Medicine Lake -Medicine Lk -Medicine Ridge -Medieval -Medill -Medina -Medina Lake -Medinah -Medinah Ridge -Medio -Mediterranean -Medlake -Medlar -Medlee -Medley -Medlin -Medlock -Medlow -Medora -Medoro -Medowview -Medtronic -Medusa -Medved -Medway -Medway Wharf -Medwick -Medwin -Mee -Meeds -Meeham -Meehan -Meehling -Meeker -Meekins -Meeks -Meela -Meem -Meer -Meerbrook -Meeres -Meeres Court -Meernaa -Meeson -Meester -Meeting -Meeting Camp -Meeting House -Meeting House Hill -Meeting Oak -Meeting Square -Meetinghouse -Meetinghouse Hill -Mefferd -Mefford -Meg -Meg Grace -Megalong -Megan -Megg -Meggan -Meggins -Meghan -Meghann -Megills Landing -Meginniss -Megonko -Mehaffey -Mehan -Meherrin -Mehetabel -Mehrhof -Mehrman -Mei -Meidl -Meiele -Meier -Meiggs -Meigh -Meigs -Mein -Meinzer -Meisel -Meisinger -Meisler -Meisner -Meiss -Meisser -Meister -Mekler -Meknight -Mel -Mel Mara -Meladee -Melaleuca -Melaleuka -Melandra -Melandra Castle -Melanie -Melba -Melboourne -Melborne -Melbourne -Melbrook -Melbrooke -Melbury -Melby -Melch -Melcher -Melchester -Melclare -Melcombe -Meldar -Meldon -Meldrum -Meldung -Melea -Melee -Melendez -Melendy -Meleny -Melfa -Melford -Melfort -Melgren -Melgund -Melham -Melhorn -Melia -Melillo -Melin -Melina -Melinda -Melior -Meliot -Melisa -Melise -Melissa -Melita -Melksham -Mell -Mellalieu -Melland -Mellbrook -Mellen -Mellenbrook -Meller -Mellersh Hill -Mellfell -Mellgren -Mellick -Mellin -Melling -Mellington -Mellish -Mellison -Melliss -Mellitus -Mello -Mello Hollow -Mello View -Mellodew -Mellodora -Mellon -Mellon Hollow -Mellor -Mellots -Mellott -Mellow -Mellowood -Mellows -Mellowstone -Mellus -Mellwood -Melne -Melnea Cass -Melnotte -Melo -Melody -Melody Hill -Melody Lake -Melolane -Melon -Melony -Melrose -Melrose Spring -Melsa -Melsomby -Melsted -Melstock -Melstone -Meltham -Melthorne -Melting Shadows -Melton -Melva -Melverley -Melvern -Melvich -Melvikoff -Melville -Melville Park -Melville Villas -Melvin -Melvina -Melvyn -Melwex -Melwood -Melwood Chapel -Melwood Park -Melyard -Melyncourt -Membrey -Memel -Memo -Memorex -Memorial -Memorial Beach -Memorial Heights -Memorial School -Memory -Memory la -Memphis -Mena -Menai -Menalto -Menangle -Menard -Menaugh -Menay -Mendakota -Mendel -Mendell -Mendelsohn -Mendelssohn -Mendelssohn Service -Menden Farm -Mendenhall -Mendes -Mendez -Mendfield -Mendham -Mending Wall -Mendip -Mendocino -Mendocino Creek -Mendoker -Mendon -Mendonca -Mendora -Mendosa -Mendota -Mendota Heights -Mendota Hts -Mendoza -Mendum -Mendy -Menemsha -Menges -Menhart -Menin -Menindee -Menini -Menk -Menker -Menlee -Menlo -Menlo Oaks -Menmarsh -Menne -Menno -Menocker -Menodora -Menoher -Menokin -Menominee -Menomini -Menon -Menotomy -Menotomy Rocks -Menotti -Menow -Menpes -Mensching -Menser -Mentana -Mente -Mentel -Menteth Point -Mentley -Mentmore -Mento -Menton -Mentone -Mentor -Mentzer -Menzel -Menzies -Meola -Meon -Meopham -Meota -Mepham -Meppel -Mera -Merano -Merbach -Merc -Mercantile -Mercator -Merced -Mercedes -Mercer -Mercer Terrace -Merceron -Mercers -Mercerwood -Merchant -Merchants -Merchiston -Mercia -Mercian -Mercie -Mercier -Mercury -Mercy -Mercy Center -Mercy Hollow -Mere -Merebank -Merebrook -Mereclough -Merecourt -Meredith -Meredyth -Merefield -Merehall -Mereheath -Mereil -Mereland -Mereline -Merelyn -Merelynne -Mereoak -Merepond -Meres -Meresborough -Mereside -Mereway -Merewood -Mereworth -Merfton -Merganser -Merger -Meriadoc -Meriam -Merian -Meric -Merical -Merida -Meridan -Meriden -Meridian -Meridian Hill -Meridian Lake -Meridian Park -Meridian Ridge -Meridith -Meriel -Merifield -Merikern -Merikoke -Meriland -Merilda -Merilee -Meriline -Merillon -Merilyn -Merinda -Merindah -Merino -Merion -Merioneth -Merit -Meritage -Meriton -Meritoria -Meritt -Merivale -Meriwether -Merk -Merkel -Merker -Merkle -Merkley -Merklin -Merle -Merleburgh -Merlen -Merlewood -Merley -Merlin -Merlindale -Merlini -Merlins -Merlo -Merlot -Merlyn -Merlyn Rees -Mermaid -Mermod -Merna -Mernagh -Merner -Mero -Merokee -Merold -Meron -Meroo -Merrall -Merrals Wood -Merrell -Merrenburn -Merri Oaks -Merriain -Merriam -Merribee -Merribrook -Merrick -Merricks -Merricourt -Merridale -Merridan -Merriden -Merridong -Merrie Mill -Merrie Ridge -Merriebrook -Merriewood -Merrifield -Merrifields -Merriford -Merrilands -Merrilee -Merrill -Merrill New -Merrill Service -Merrill Woods -Merrillon -Merrillville -Merrilong -Merrimac -Merrimac River -Merrimack -Merriman -Merriments -Merrimount -Merrina -Merrington -Merrinot -Merrion -Merris -Merrison -Merrit -Merrithew -Merriton -Merritt -Merritt Farm -Merritt Point -Merritton -Merritts -Merrivale -Merriville -Merriwa -Merriweather -Merriwether -Merriwind -Merriwood -Merrow -Merrow Common -Merry -Merry Hill -Merry Hills -Merry Moppet -Merry Oaks -Merry Wood -Merrybower -Merryboys -Merrybrook -Merrydale -Merrydown -Merryfield -Merryhill -Merryhills -Merryknoll -Merrylands -Merryle -Merryman -Merrymans -Merrymeeting -Merrymount -Merryoaks -Merryrest -Merryvale -Merryville Farm -Merrywood -Mersea -Merseles -Merselis -Mersereau -Mersey -Mersey Bank -Merseybank -Mersham -Merstham -Merstham High -Merston -Mert -Merten -Mertens -Mertford -Merton -Merton High -Merttins -Mertz -Merust -Mervan -Merville -Mervin -Mervyn -Merwell -Merwin -Merwood -Mery -Meryl -Meryla -Meryll -Mesa -Mesa Buena -Mesa Creek -Mesa Grande -Mesa Oak -Mesa Ridge -Mesa Verde -Mesa Verdes -Mesabi -Mesaview -Mescalero -Meseda -Meserole -Meserve -Meshaka -Mesnefield -Mesquite -Mess -Messaline -Messenger -Messent -Messer -Messervy -Messiah -Messick -Messier -Messina -Messiner -Messines -Messinger -Messiter -Messler -Meta -Metacomet -Metacomett -Metawa -Metcalf -Metcalfe -Metella -Meteor -Methane -Metheun -Methilhaven -Methley -Methuen -Methven -Methwold -Metispa -Metlars -Metrapolitan -Metro -Metro Access -Metro Center -Metro Park -Metro Plaza -Metro Vista -Metroplex -Metropolitan -Metropolitan Church -Metropolitan Grove -Metrotech -Metson -Metsons -Mettawa -Mettawa Woods -Mettel -Metten -Metters -Mettler -Metuchen -Metuxen -Metz -Metzerott -Metzgar -Metzler -Meucci -Meudon -Meurants -Meuret -Meurilee -Mevan -Mevril -Mexborough -Mexfield -Mexico -Meyel -Meyenberg -Meyer -Meyer Point -Meyers -Meyers Grade -Meyersville -Meymott -Meyn -Meynell -Meyrick -Mezes -Mezmer -Mezzamonte -Mezzine -Mgm -Mhp -Mia -Mia Mia -Miall -Miamba -Miami -Mianga -Mianus -Miara -Mica -Micawber -Mich Bluff -Michael -Michael Canlis -Michael F -Michael Faraday -Michael Frey -Michael John -Michael Mack -Michael Mark -Michael McGuire -Michael Point -Michael Robert -Michael William -Michaelangelo -Michaele -Michaels -Michaelson -Michale -Michalik -Michaud -Michaux -Micheal -Michealangelo -Michel -Michelangelo -Michele -Michelham -Michelini -Michell -Michelle -Michelline -Michels -Michels Dale -Michelson -Michener -Michie -Michigamme -Michigan -Michigan City -Michille -Micholls -Michon -Micik -Mickelson -Micken -Mickens -Mickey -Micklands -Mickle -Micklefield -Mickleham -Micklehurst -Micklejohn -Micklem -Micklethwaite -Mickley -Miclands -Micro -Microlab -Micron -Mid -Mid Atlantic -Mid Cities -Mid Dural -Mid Oaks -Mid Park -Midan -Midbrook -Midchester -Midcrest -Middagh -Middale -Middaugh -Midday -Middelton -Midden -Middle -Middle Bay -Middle Bourne -Middle Brook -Middle Burdell Fire -Middle Church -Middle Creek -Middle Cross -Middle Dunstable -Middle Ellen -Middle Express -Middle Fork -Middle Golf -Middle Harbor -Middle Harbour -Middle Head -Middle Hollow -Middle Island -Middle Loop -Middle Meadow -Middle Memory -Middle Mill -Middle Neck -Middle Opening -Middle Oxford -Middle Park -Middle Pinecreek -Middle Point -Middle Ridge -Middle Rincon -Middle River -Middle Ruddings -Middle Run -Middle School -Middle Temple -Middle Town -Middle Two Rock -Middle Valley -Middle park -Middleberry -Middleboro -Middlebourne -Middlebridge -Middlebrook -Middleburg -Middlebury -Middleby -Middlecamp -Middlecoff -Middlecot -Middlecreek -Middlecroft -Middlefield -Middleford -Middlefork -Middlegate -Middlegate Church -Middlegate Kings -Middlegreen -Middleham -Middlehope -Middlehurst -Middlemead -Middlemiss -Middlemoor -Middleneck -Middlesborough -Middleset -Middlesex -Middlesex Canal -Middlesex Center -Middlestone -Middleton -Middleton Common -Middleton Farm -Middleton Hall -Middleton Old -Middleton Park -Middleton Ridge -Middleton Ring -Middleton Thorpe -Middleton Tract -Middleton Way -Middletown -Middletown Lincroft -Middletree -Middletune -Middlevale -Middleville -Middlewich -Middlewood -Middough -Midelton -Midfarm -Midfield -Midfields -Midford -Midge -Midge Hall -Midgely -Midgley -Midgrove -Midhill -Midholm -Midhope -Midhurst -Midian -Midiron -Midland -Midland Grove -Midland Hills -Midlane -Midlawn -Midledge -Midleton -Midline -Midlothian -Midmoor -Midnight -Midpine -Midra -Midridge -Midsection -Midship -Midson -Midstate -Midstone -Midstrath -Midsummer -Midtown -Midtown Bridge -Midvale -Midvale Mountain -Midville -Midway -Midway Branch -Midway Ranch -Midwest -Midwick -Midwood -Mierscourt -Mifflin -Mifsud -Miggins -Mighall -Mighell -Mighty Oak -Mignin -Mignon -Mignot -Migration -Miguel -Miguelito -Migues Mountain -Miilbank -Mika -Mikan -Mikasa -Mikayla -Mike -Mike Collins -Mike Shapiro -Mikel -Mikell -Mikesell -Mikkelsen -Miko -Mil Mil -Milagra -Milan -Miland -Milandy -Milani -Milanna -Milano -Milba -Milbank -Milbar -Milbeck -Milbern -Milbert -Milborne -Milboro -Milbourne -Milbrae -Milbrook -Milburn -Milbury -Milch -Milch Hill -Milcote -Mildam -Milden -Mildenhall -Mildmay -Mildon -Mildred -Mildreds -Mildura -Mile -Mile End -Mile Hill -Mile House -Mile Oak -Mile Pond -Mile Square -Mile Tree -Milebrook -Milebush -Mileham -Milemore -Milepost -Miles -Miles Gray -Miles Hill -Miles Keene -Miles River -Milestone -Milestone Center -Milestone Manor -Mileview -Miley -Milfan -Milfoil -Milford -Milford Haven -Milford Mill -Milgate -Milgeo -Milguy -Milham -Milik -Miliken -Milita -Military -Militia -Miljevich -Milk -Milk Farm -Milking -Milkingpen -Milksey -Milkshake -Milkweed -Milkwood -Mill -Mill Bay -Mill Branch -Mill Brook -Mill Brow -Mill Chase -Mill Church -Mill Copse -Mill Court -Mill Creek -Mill Cross -Mill Crossing -Mill Dam -Mill End -Mill Farm -Mill Fold -Mill Forest -Mill Gate -Mill Glen -Mill Green -Mill Harbor -Mill Hill -Mill Hill Page -Mill House -Mill Meadows -Mill Park -Mill Pit -Mill Plat -Mill Pond -Mill Pond Point -Mill Pond Valley -Mill Race -Mill Race Estates -Mill River -Mill Run -Mill Site -Mill Spring -Mill Springs -Mill Swamp -Mill Trail -Mill View -Mill Vue -Mill Wheel -Millais -Milland -Millar -Millard -Millay -Millbank -Millbeck -Millboard -Millbottom -Millbourne -Millbrae -Millbridge -Millbrook -Millburn -Millburne -Millbury -Millcreek -Millcrest -Millcroft -Milldale -Millen -Milleninum -Millenium -Millennium -Miller -Miller Circle -Miller Creek -Miller Cut Off -Miller Fall -Miller Farm -Miller Heights -Miller Hill -Miller Ridge -Miller View -Millerick -Milleridge -Millers -Millers Green -Millers Island -Millersburg -Millersville -Millet -Millett -Milley -Millfarm -Millfield -Millfields -Millford -Millfordhope -Millgarth -Millgate -Millgrove -Millham -Millhaven -Millhead -Millhouse -Millibank -Millicent -Millich -Millie -Millie May -Milligan -Milliken -Milliken Creek -Millikens Bend -Milling -Millington -Millington Hall -Million -Million Penny -Milliston -Millman -Millmarsh -Millmont -Millns -Millom -Millpond -Millponds -Millrace -Millrich -Millridge -Millrose -Mills -Mills Choice -Mills Corner -Mills Farm -Mills Hill -Mills Orchard -Mills Pond -Millsbrae -Millsdale -Millsgate -Millshaw -Millshire -Millshot -Millside -Millspring -Millstead -Millston -Millstone -Millstone Hill -Millstream -Millstream Service -Millsview -Millthorpe -Millthwait -Millton -Milltown -Milltown Landing -Millvale -Millview -Millville -Millwall Dock -Millwheel -Millwood -Millwood Pond -Millwoof -Millwright -Millyan -Milman -Milmans -Milmont -Miln -Milnbank -Milne -Milne Cove -Milner -Milnes -Milnrow -Milnthorpe -Milnwood -Milo -Milo Candini -Milosh -Milot -Milparinka -Milray -Milrose -Milroy -Milroy Crest -Milsom -Milson -Milsop -Milstead -Milsted -Miltiades -Milton -Milton Court -Milton Grant -Milton Hall -Milton High -Milton Hill -Milton I Ross -Milton Manor -Milton Mount -Milton Regis High -Miltonia -Miltsin -Milva -Milvain -Milvale -Milverton -Milvia -Milvia Bicycle -Milwain -Milward -Milwaukee -Milway -Milwood -Mima -Mimas -Mimi -Mimie Anderson -Mimms -Mimms Hall -Mimon -Mimosa -Mimosa Cove -Mimram -Mims -Mimsey -Mina -Mina Rosa -Minaglia -Minahen -Minaker -Minard -Minardi -Minaret -Minarto -Minas -Minburn -Minchen -Minchens -Minchin -Minchinbury -Mincing -Mindanao -Mindar -Mindaribba -Mindarie -Minden -Mindleheim -Mindona -Mindoro -Mindres -Mindy -Mine -Mine Bank -Mine Brook -Mine Ridge -Mine Run -Minea -Minear -Minebrook -Minehan -Minehead -Minehurst -Mineola -Miner -Mineral -Mineral Spring -Mineral Springs -Minert -Minerva -Mines -Minet -Minetta -Minette -Minford -Ming -Minga -Mingo -Mini -Miniature -Minidoka -Minihan -Minimall -Minimbah -Minion -Minisink -Minister -Ministerial -Minjon -Mink -Mink Hollow -Mink Meadows -Mink Trap -Minkara -Minkler -Minley -Minmai -Minna -Minnamorra -Minnamurra -Minnaqua -Minneapolis -Minnear -Minnehaha -Minnehaha Academy -Minneola -Minnesota -Minnesota Bluffs -Minnetonka -Minnetonka Highlands -Minnetonka Industrial -Minnewashta Woods -Minnewaska -Minnick -Minnie -Minnieford -Minnieville -Minnisink -Minnow Creek -Minns -Minoan -Minoca -Minocqua -Minola -Minoma -Minor -Minor Hill -Minorca -Minoru -Minoso -Minot -Minot Light -Minots -Minsden -Minshull -Minson -Minster -Minsterley -Minstrel Tune -Minstrell -Mint -Mint Julip -Minta -Mintaro -Mintching Wood -Minter -Minterne -Minthaven -Minthorne -Minto -Minton -Minturn -Mintwood -Mintz -Minue -Minuet -Minute -Minute Arms -Minute Man -Minuteman -Minutemen -Minya -Minyip -Mionske -Miowera -Mipaty -Mir Mirou -Mira -Mira Flores -Mira Lagos -Mira Loma -Mira Mesa -Mira Vista -Mira del Rio -Mirabeau -Mirabel -Mirabella -Mirabelle -Miracle -Miracle Mountain -Mirada -Miradera -Miradero -Mirador -Miraflores -Mirage -Miraggio -Miralo -Miramar -Miramar Park -Miramare -Miramonte -Miramontes -Miramontes Point -Miramount -Miranda -Miranda Green -Mirandy -Mirante -Mirasol -Mirassou -Miravalle -Mire -Mireille -Mireval -Mirfield -Miriam -Mirimar -Mirimichi -Mirin -Mirko -Mirkwood -Mirmar -Miro -Miroballi -Mirosa -Mirrabooka -Mirral -Mirrasou -Mirrielees -Mirrool -Mirror -Mirror Lake -Mirror Lakes -Mirror Pond -Mirschel -Miry -Mirycarr -Misbourne -Misbrooks Green -Miscoe Brook -Miscoe Hill -Mise -Mishawum -Miskin -Miss Anne -Missden -Missenden -Mission -Mission Bay -Mission Bell -Mission Blue -Mission Cielo -Mission College -Mission Creek -Mission Falls -Mission Glen -Mission Greens -Mission Hills -Mission Park -Mission Ridge -Mission Rock -Mission Square -Mission Trail -Mission Valley -Mission View -Mission Vineyard -Missionary -Mississippi -Mississippi Bar -Mississippi River -Missouri -Mist -Mist Trail -Mister -Mistflower -Misthaven -Mistic Harbour -Mistle -Mistler -Mistletoe -Mistletoe Spring -Mistley -Mistral -Mistress -Mistwood -Misty -Misty Brook -Misty Creek -Misty Dawn -Misty Falls -Misty Glade -Misty Glen -Misty Hill -Misty Hills -Misty Hollow -Misty Knoll -Misty Meadow -Misty Morning -Misty Mountain -Misty Ridge -Misty Woods -Mistyvale -Miswell -Mitala -Mitch Snyder -Mitcham -Mitchel -Mitchell -Mitchell Canyon -Mitchell Manor -Mitchell Ridge -Mitchells -Mitchells Chance -Mitchellville -Mitchie -Mitchison -Mitchler -Mitchley -Mitchs -Mitchum -Mitey Mite -Mitford -Mithering -Mitichell -Mitlon -Mitra -Mitre -Mitris -Mitscher -Mittabah -Mittel -Mitten -Mittendorf -Mittiamo -Mittman -Mitton -Mitumba -Mitzi -Mitzy -Mivo -Miwok -Mix Canyon -Mixes Hill -Mixnams -Mixon Brook -Miyuki -Mizar -Mizpah -Mizzen -Mliss -Moab -Moak -Moala -Moani -Moat -Moat Farm -Moat Hall -Moate -Moats -Mobberley -Mobbs -Mobeck -Moberly -Mobile -Mobley -Mobley Farm -Mobrey -Mobus -Mocabee -Mocassin -Mocatta -Moccasin -Moccasin Hill -Mocha -Mochel -Mocho -Mocine -Mock -Mockbeggar -Mocking Bird -Mockingbird -Mockingbird Hill -Mockingbird Ridge -Mockley Point -Mockridge -Moclips -Mococo -Moczygemba -Modaff -Modder -Moddison -Mode Wheel -Model -Model Farm -Model Farms -Modena -Modern Ice -Moders -Modesto -Modisto -Modoc -Modred -Modular -Modzelewski -Moe -Moehring -Moelfre -Moeller -Moen -Moeser -Moessner -Moffat -Moffats -Moffatt -Moffatts -Moffet -Moffett -Moffett Forge -Moffett Park -Moffitt -Moffitts -Mogador -Mogan -Mogden -Moggie -Mogila -Mohave -Mohawk -Mohawk River -Mohegan -Mohican -Mohican Park -Mohmmad Khan -Mohovy -Mohr -Mohwawk -Moir -Moira -Moiso -Moison -Moitoza -Moiyas -Mojave -Mokelumne -Mokelumne River -Mokelumne School -Mokema -Mokena -Mokera -Molair -Molaskey -Molasky -Molasses Run -Mold -Mole -Mole Hall -Mole Hill Green -Molehill Green -Molember -Moles -Molesey -Molesford -Molesworth -Molimo -Molina -Molinari -Molinaro -Molinart -Moline -Molino -Molino Reservoir -Molise -Molitas -Molitor -Moll -Mollands -Molle -Moller -Moller Ranch -Mollie -Mollison -Molloy -Molly -Molly Berry -Molly Millars -Mollymook -Molnar -Moloney -Molong -Molonglo -Molrams -Molteg -Molteno -Molter -Molton -Moltzen -Moluccana -Moly -Molyneaux -Molyneux -Momar -Mombri -Mommouth -Mon -Mona -Mona Park -Mona Vale -Mona Woods -Monacan -Monachus -Monaco -Monadnock -Monaghan -Monahan -Monaldi -Monalee -Monaltrie -Monamie -Monan -Monarch -Monarch Birch -Monarch Oak -Monarch Ridge -Monarch Vista -Monard -Monardo -Monaro -Monart -Monash -Monastary -Monastery -Monatiquot -Monaton -Moncado -Monck -Monckton -Moncktons -Monclar -Moncrief -Moncrieff -Moncton -Moncur -Moncure -Mond -Monda -Mondamin -Monday -Mondelli -Mondigo -Mondovi -Mondrian -Monee -Monega -Monegra -Monestary -Monet -Monetary -Moneterrey -Monetta -Monette -Money -Money Ash -Money Hill -Money Hole -Monfarville -Monferino -Monfort -Monfredo -Mongers -Mongomery -Monhegan -Monica -Monie -Monika -Monins -Monique -Monitor -Monivea -Monix -Monk -Monk Bridge -Monk Sherborne -Monkdowns -Monkery -Monkey Island -Monkfrith -Monkhams -Monkmead -Monks -Monks Hill -Monks Ings -Monksdale -Monksdown -Monksford -Monkswell -Monkswick -Monkswood -Monkton -Monktons -Monkville -Monkwood -Monmouth -Monn -Monna -Monnens -Monnett -Monnier -Monnow -Mono -Mono Lake -Monocacy -Monoco -Monogram -Monomeeth -Monomoy -Monona -Monongahela -Monoosnock -Monoponsan -Monowood -Monponset -Monponsett -Monro -Monroe -Monroe Duvall -Monroe Manor -Monrovia -Mons -Monsal -Monsall -Monsen -Monserat -Monserra -Monsignor Rooney -Monson -Mont -Mont Clare -Mont Croix -Mont Fern -Mont Sec -Montacute -Montafia -Montagu -Montague -Montair -Montaire -Montalban -Montalt -Montalto -Montalvin -Montalvo -Montammy -Montana -Montara -Montaro -Montauban -Montauk -Montaup -Montayne -Montazah -Montbatten -Montbelle -Montcalm -Montcastle -Montclair -Montclaire -Montclare -Montclare Lake -Montcourse -Montcurve -Monte -Monte Alegre -Monte Brazil -Monte Buena -Monte Carlo -Monte Cimas -Monte Cresta -Monte Cristo -Monte Linda -Monte Mar -Monte Maria -Monte Park -Monte Rio -Monte Rosa -Monte Sereno -Monte Sunset -Monte Veda -Monte Verde -Monte Villa -Monte Vista -Monte Vista Ridge -Monteagle -Montebello -Montecello -Montecillo -Montecito -Montecito Meadow -Monteclair -Montecrest -Montee -Montefiore -Monteforte -Montefrio -Montega -Montego -Montehill -Monteira -Monteith -Montelegre -Montelena -Montell -Montello -Montem -Montemura -Montenotte -Monteray -Monterery -Monterey -Monterey Estates -Monterey Frontage -Montern -Montero -Monterra -Monterrey -Montery -Montesano -Monteswood -Monteva -Montevalle -Montevarchi -Monteverde -Montevideo -Montevina -Montevista -Montewood -Montez -Montezuma -Montezuma Hills -Montfern -Montfield -Montford -Montfort -Montgomerie -Montgomery -Montgomery Run -Montgomery Village -Montgue -Montholme -Montibello -Monticelli -Monticello -Montiero -Montieth -Montilio -Montilla -Montmarte -Montmorenci -Montmorency -Montmouth -Montoclair -Monton -Montonfields -Montore -Montoro -Montour -Montoya -Montpelier -Montpellior -Montreal -Montrell -Montresor -Montridge -Montrose -Montross -Montserrat -Montvale -Montview -Montville -Monty -Montyville -Monument -Monument Corner -Monument Farm -Monument Hill -Monumental -Monush -Monycrower -Monza -Monzal -Mooculta -Moodie -Moodkee -Moody -Moody Slough -Mooer -Mooers -Mooki -Moolah -Moolanda -Moombara -Moomin -Moon -Moon Beam -Moon Hall -Moon Hill -Moon Lake -Moon Meadow -Moon Mountain -Moon Penny -Moon Point -Moon Ridge -Moon Shadow -Moon Valley Ranch -Moona -Moonachie -Moonah -Moonbeam -Moonbi -Moonbie -Moonbria -Moondani -Moondara -Moonedge -Moonen Bay -Mooney -Mooneys -Moonglow -Moonlight -Moonlight Hill -Moonlite -Moonraker -Moonrider -Moonrise -Moons -Moonsail -Moonsails -Moonshine -Moonstone -Moontree -Moor -Moor Allerton -Moor End -Moor Flatts -Moor Grange -Moor Green -Moor Hall -Moor Hey -Moor Knoll -Moor Mead -Moor Mill -Moor Park -Moor Side -Moora -Mooramba -Mooramie -Moorbottom -Moorbridge -Moorbrook -Moorby -Moorcroft -Moordale -Moore -Moore Creek -Moore Park -Moore Ranch -Moorebank -Mooredge -Moorefield -Moorefields -Moorehead -Mooreland -Moorend -Moores -Moores Hill -Moores Plains -Mooresfield -Mooreview -Moorfield -Moorfoot -Moorgate -Moorhayes -Moorhead -Moorheart Ridge -Moorhen -Moorhey -Moorhill -Moorhills -Moorhouse -Moorhurst -Moorilla -Moorina -Mooring -Moorings -Moorland -Moorlands -Moormead -Moormill -Moorpark -Moors -Moorsholme -Moorside -Moorsley -Moorsom -Moorton -Moortown King -Moorview -Moorville -Moorwood -Moos -Moose -Moose Hill -Moosehead -Mooseheart -Moosepac -Moosewood -Mope -Mopsick -Mora -Mora Glen -Morab -Morada -Moraga -Moraga Valley -Morahapa -Moraine -Moraine Hill -Moraine Hills -Moran -Morandi -Morani -Morano -Morant -Morants Court -Morar -Morat -Moravian -Moray -Morazan -Morcambe Bay -Morcom -Mordaunt -Mordecai Lincoln -Morden -Morden Hall -Morden Wharf -Mordente -Mordon -Mordor -Mordred -More -Morea -Moreau -Morecambe -Morecroft -Moree -Morehead -Morehouse -Moreing -Morela -Moreland -Moreland Green -Morelands -Morell -Morella -Morelli -Morelli Vista -Morello -Morello Heights -Morello Hills -Morello Park -Morelos -Morely -Moremead -Morement -Moren -Morenci -Morency -Moreno -Mores -Moresby -Moresdale -Moretaine -Moreton -Moreton End -Moretti -Morettis Ranch -Moretto -Morewood -Morewood Oaks -Morey -Morford -Morgal -Morgan -Morgan Days -Morgan Farm -Morgan Hill -Morgan Territory -Morgan Valley -Morgana -Morgans -Morgans Ridge -Morganston -Morgantine -Morganville -Morgaston -Mori -Moriac -Moriatry -Morice -Moriconi -Morie -Morieux -Moril -Morillon -Morin -Morin Heights -Morinda -Moring -Morini -Moris Point -Morison -Morisse -Moritz -Morken -Morlan -Morland -Morlands -Morley -Morley Clough -Morley Peel -Morley Wynyard -Morleys -Morlock -Morlot -Mormon -Mormon Island -Morna -Mornant -Mornigside -Morning -Morning Brook -Morning Dale -Morning Dew -Morning Dove -Morning Field -Morning Gate -Morning Glen -Morning Glory -Morning Meadow -Morning Mist -Morning Ride -Morning Spring -Morning Sun -Morning Time -Morning View -Morning Watch -Morning Wind -Morningbird -Morningdale -Morninghome -Morninglo -Morningmist -Morningside -Morningside Mountain -Morningstar -Mornington -Morningview -Morningwood -Moro -Morobe -Morocco -Morona -Moroney -Morotai -Morpeth -Morphett -Morpheus -Morphew -Morphou -Morrell -Morrell Cutoff -Morrell Mill -Morrene -Morrice -Morrie -Morril -Morrill -Morrington -Morris -Morris Fold -Morris Green -Morris Hill -Morris Park -Morris Pesin -Morris Phelps -Morris Plains -Morris Ranch -Morris Tongue -Morrisey -Morrish -Morrison -Morrison Canyon -Morrison Creek -Morrisse -Morrissee -Morrissette -Morrissey -Morrissey Service -Morristown -Morrisworth -Morritt -Morro -Morro Bay -Morro Vista -Morrow -Morrowfield -Morry -Mors -Morse -Morse Farm -Morse Glen -Morse Lake -Morse Lakes -Morseland -Morsemere -Morses Pond -Morsetown -Morshead -Morson -Mort -Mortain -Mortar -Morten -Mortensen -Mortenson -Morteyne -Mortfield -Mortham -Morthland -Mortimer -Mortimer Lewis -Mortimers -Mortlake -Mortlake High -Mortley -Morton -Morton Davis -Morton Hall -Morton Hill -Morton Park -Mortono -Mortonsberry -Mortuary -Moruben -Moruya -Morva -Morval -Morvan -Morvem -Morven -Morven Park -Morville -Morwell -Morwick -Morwood -Moryan -Mosaic -Mosby -Mosby Hollow -Moscato -Mosco -Moscow -Moseby -Mosedale -Mosefan -Mosegard -Mosel -Moselden -Moseldene -Moseley -Moseley Wood -Moselle -Mosely -Moser -Moses -Moses Hill -Moses Plat -Mosgrove -Mosher -Moshier -Mosholu -Mosier -Moslee -Mosley -Mosley Common -Mosman -Moss -Moss Bank -Moss Bower -Moss Bridge -Moss Brook -Moss Brow -Moss Garden -Moss Glen -Moss Grange -Moss Hall -Moss Hey -Moss Hill -Moss Hollow -Moss House -Moss Landing -Moss Oak -Moss Park -Moss Point -Moss Ranch -Moss Rock -Moss Side -Moss Vale -Moss Valley -Moss View -Mossbank -Mossberry -Mossbray -Mossbrook -Mossbury -Mosscreek -Mossdale -Mossfield -Mossford -Mossgate -Mossgiel -Mossglen -Mossgrove -Mossland -Mosslea -Mossley -Mossman -Mossmere -Mosso -Mossrock -Mosswood -Mossy Bank -Mossy Creek -Mossy Oak -Mossy Rock -Mostika -Moston -Moston Bank -Mostyn -Mosyer -Mota -Motcomb -Motcombe -Motcombe Farm -Mote -Motel -Mother Gaston -Mother Julia -Motherwell -Motley -Motney Hill -Motor -Motor City -Mott -Motta -Mottershead -Mottingham -Mottins -Mottisfont -Mottram -Mottrom -Motts -Motts Hill -Mouacdie -Mough -Moul -Mouldsworth -Moulin -Moulsham -Moulsham Copse -Moulsham Hall -Moulton -Moulton Park -Moultrie -Mounce -Mouncey -Mound -Mound View -Moundfield -Mounds -Moundsview -Moundview -Mounslow -Mount -Mount Zion -Mount Air -Mount Airey -Mount Airy -Mount Alventine -Mount Alvernia -Mount Annan -Mount Ararat -Mount Ash -Mount Auburn -Mount Bache -Mount Baker -Mount Bethel -Mount Blanc -Mount Blue -Mount Bovers -Mount Calvary -Mount Carmel -Mount Carmel Cemetery -Mount Carriage -Mount Castle -Mount Cedar -Mount Crest -Mount Culver -Mount Curve -Mount Daniel -Mount Darwin -Mount Day -Mount Dell -Mount Dew -Mount Diablo -Mount Diablo Scenic -Mount Duncan -Mount Eagle -Mount Echo -Mount Eden -Mount Edgcumbe -Mount Elam -Mount Ephraim -Mount Erin -Mount Etna -Mount Everest -Mount Everett -Mount Feake -Mount Foraker -Mount Forest -Mount Frazier -Mount George -Mount Gilead -Mount Glen -Mount Globe -Mount Grace -Mount Grove -Mount Hamilton -Mount Hamilton View -Mount Harmony -Mount Harry -Mount Hebron -Mount Henry -Mount Hercules -Mount Herman -Mount Hermon -Mount High -Mount Hill -Mount Holly -Mount Holyoke -Mount Hood -Mount Hope -Mount Horeb -Mount Ida -Mount Isabel -Mount Jackson Lockout -Mount Jackson Resort -Mount Jackson Trail -Mount Jasper -Mount Joy -Mount Kemble -Mount Kennedy -Mount Kenya -Mount King -Mount Kisco -Mount Lassen -Mount Laurel -Mount Lebanon -Mount Leneve -Mount Lewis -Mount Locust -Mount Logan -Mount Lyell -Mount Maclure -Mount Madonna -Mount Mc Kinley -Mount McKinley -Mount Misery -Mount Morris -Mount Nebo -Mount Nod -Mount Normandale -Mount Oak -Mount Olive -Mount Oliveira -Mount Olivet -Mount Olney -Mount Olympus -Mount Oso -Mount Palomar -Mount Park -Mount Paul -Mount Peller -Mount Pisgah -Mount Pleasant -Mount Pleasent -Mount Preston -Mount Prieta -Mount Prospect -Mount Quail -Mount Rainier -Mount Ridge -Mount Ridgeway -Mount Rock -Mount Royal -Mount Rushmore -Mount Saint Charles -Mount Saint Helena -Mount Shasta -Mount Skip -Mount Skirgo -Mount Sugarloaf -Mount Sunapee -Mount Tabor -Mount Tamalpais -Mount Taylor -Mount Tenaya -Mount Thabor -Mount Tom -Mount Umunhum -Mount Veeder -Mount Vernon -Mount Vickery -Mount View -Mount Vision -Mount Vista -Mount Wachusett -Mount Walley -Mount Washington -Mount Wayte -Mount Wellington -Mount Weske -Mount Whitney -Mount William -Mount Wilson -Mount Zephyr -Mount Zion -Mountabatten -Mountain -Mountain Ash -Mountain Bell -Mountain Canyon -Mountain Charlie -Mountain Dump -Mountain Estate -Mountain Gate -Mountain Heights -Mountain Home -Mountain Home Ranch -Mountain House -Mountain Lakes -Mountain Laurel -Mountain Lion -Mountain Meadow -Mountain Mist -Mountain Park -Mountain Quail -Mountain Ridge -Mountain Rock -Mountain Shadows -Mountain Spring -Mountain Springs -Mountain Top -Mountain Trails -Mountain Valley -Mountain View -Mountain View Ranch -Mountain Vista -Mountain Wood -Mountaindale -Mountains -Mountains Farm -Mountainside -Mountainview -Mountaire -Mountbatten -Mountbel -Mounters -Mountfield -Mountfitchet -Mountford -Mountfort -Mountgrove -Mounthaven -Mounthill -Mountnessing -Mounts -Mounts Pond -Mountview -Mountville -Mountwood -Moura -Mourfield -Mourning Dove -Mousehill -Moushill -Mouth of Monocacy -Moverly -Movers -Movida -Movie -Moville -Moving Water -Mow Halls -Mowatt -Mowbray -Mowden Hall -Mower -Mowera -Mowla -Mowle -Mowlem -Mowll -Mowry -Mowry School -Moxham -Moxhams -Moxley -Moxleys Ford -Moxom -Moxon -Moyarta -Moyengully -Moyer -Moyers -Moyes -Moylan -Moyne -Moynihan -Moyse -Moyser -Mozart -Mozden -Mrack -Mrs Macquarie -Msgr Jacobbe -Msgr. Shea -Mt Calvert -Mt Curve -Mt Hope -Mt Pisgah Farm -Mt Pleasant -Mt Prospect -Mt Sizer -Mt Vernon -Mt. Elam -Mt. Hope -Mt. Umunhum -Mt. Vernon -Mucciarone -Muccillo -Muchelney -Muchmore -Muckelemi -Mucking Hall -Muckingford -Mucklehany -Mud -Mud Gulley -Mud Lake -Mudd -Muddy -Muddy Branch -Muddy Pond -Mudge -Mudhurst -Mudies -Muehl -Muela -Mueller -Muender -Muerer -Muffets -Muffit -Muggeridge -Mugleston -Mugo -Muhammad Ali -Muhlenhardt -Muir -Muir Woods -Muirdown -Muirfield -Muirhead -Muirkirk -Muirkirk Meadows -Muirwood -Mukerji -Mulberry -Mulberry Bottom -Mulberry E -Mulberry Hill -Mulberry Mount -Mulberry Wood -Mulbring -Mulcahy -Mulcare -Mulcerns -Mulders -Muldoon -Muldrow -Mule -Mule Deer -Mule Lovers -Mulford -Mulga -Mulgoa -Mulgrave -Mulgray -Mulguy -Mulhall -Mulherin -Mulhern -Mulheron -Mulholland -Mulica -Muliner -Mulkern -Mull -Mullacre -Mullane -Mullarkey -Mullberry -Mullbrook -Mullen -Mullenderree -Mullens -Muller -Mulligan -Mullikin -Mullin -Mullins -Mullion -Mullon -Mulloy -Mullumbimby -Mulpus -Mulqueeney -Mulqueeny -Mulready -Mulroy -Mulry -Multiplex -Multon -Mulvey -Mulvihill -Mulvoy -Mulwaree -Mulyan -Mumford -Mums -Mun Kwok -Muncaster -Muncaster Mill -Munces -Muncey -Munch -Muncie -Muncy -Mund -Munda -Mundakal -Mundamatta -Mundania -Mundarrah -Munday -Mundays Borough -Munden -Munderah -Mundesley -Mundford -Mundin -Mundon -Mundowi -Mundy -Munford -Mungarra -Munger -Munger Farm -Mungerie -Mungo Park -Munhall -Munich -Municipal -Muniz Ranch -Munko -Munmorah -Munmurra -Munn -Munni -Munnings -Munnion -Munns -Munnumba -Munoora -Munro -Munroe -Munroe Hill -Munsee -Munsey -Munsgore -Munson -Munson Hill -Munstad -Munstead View -Munster -Munsterburg -Munter -Munton -Munyan -Munyang -Munz -Muraban -Mural -Muraoka -Murata -Murcer -Murchia -Murchison -Murcia -Murco Mill -Murcott -Murdoch -Murdock -Murdstone -Murfield -Murguia -Muricatia -Muriel -Murieston -Murieta -Murieta South -Murietta -Murillo -Murkand -Murlagan -Murlett -Murley -Murmansk -Murnane -Muroc Lake -Muron -Muroney -Murphy -Murphy Crossing -Murphy Hill -Murphy Lake -Murphy Springs -Murphys -Murrabin -Murrain -Murralong -Murrami -Murrandah -Murray -Murray Farm -Murray Hill -Murray Hulbert -Murray Park -Murray Point -Murray Ranch -Murray Ranch Access -Murray Rose -Murrays -Murre -Murrel Hill -Murrell -Murrells -Murrey -Murrieta -Murrin -Murriverie -Murrobah -Murrphy -Murrua -Murrumbidgee -Murrumburrah -Murry -Murry Hill -Mursley -Murston -Murtha -Murthering -Murton -Murtwell -Muru -Murvey -Murwillubah -Murwillumbah -Murwood -Murylu -Musante -Musard -Musbury -Muscat -Muscatatuck -Muschamp -Muscharry -Muscovy -Muse -Museum -Museum Campus -Musgnug -Musgrave -Musgrove -Mushroom -Mushtown -Music -Music Hall -Musick -Musicmaster -Musico -Musjid -Musk -Muskeego -Muskegon -Musket -Musket Ball -Musketaquid -Muskett -Muskham -Muskie -Muskogee -Muskrat Pond -Musley -Muslin -Musquashicut -Mussenden -Mussey Brook -Mustang -Mustang Hill -Mustard -Mustard Mill -Musterfield -Musto -Muston -Muswell -Muswell Hill -Muswell Hill Pages -Muswell Hill Woodside -Muswellbrook -Mutch -Muth -Mutilod -Mutrix -Muttama -Mutton -Mutton Hall -Mutton Hollow -Muttong -Muttontown -Muttontown Eastwoods -Mutual -Mux -Muybridge -Muzzey -Muzzy -My -My Mollies Pride -MyEye -Myahgah -Myall -Myallie -Myalora -Myamba -Myano -Myatt -Mycenae -Mycumbene -Myddelton -Myddleton -Mydell -Mydellton -Myee -Myer -Myers -Myers Farm -Myerson -Myette -Mygrove -Myhre -Mykala -Myler -Myles -Myles View -Mylinda -Mylith Park -Mylnar -Mylne -Mylod -Mylon -Mylott -Mymms -Mynchen -Mynor -Myola -Myoora -Myosotis -Myotis -Mypolonga -Myra -Myradell -Myran -Myrdle -Myriah -Myrick -Myrle -Myrman -Myrna -Myro -Myron -Myrrh -Myrte -Myrtle -Myrtle Beach -Myrtle Grove -Myrtle Leaf -Myrtle Park -Myrtle Vista -Myrtlebank -Myrtledale -Myrtledene -Myrtlewood -Myson -Mysore -Mystery Spot -Mystic -Mystic Lake -Mystic River -Mystic Valley -Mystic View -Mystique -Mytchett -Mytchett Lake -Mytchett Place -Mytham -Mytton -Myuna -N Abbey Glenn -N Abbotsford -N Aber -N Aberdeen -N Abingdon -N Acorn -N Acres -N Ada -N Adams -N Addison -N Adelaide -N Adolphus -N Aglen -N Ahrens -N Ahwahnee -N Airlite -N Alameda -N Alaska -N Albany -N Albemarle -N Albert -N Alder -N Aldine -N Alfred -N Algonquin -N Alleghany -N Allen -N Althea -N Amberley -N Anderson -N Andoa -N Andover -N Anthon -N Anvil -N Apache -N Apple Hill -N Aqueduct -N Aralia -N Arbogast -N Arbor -N Arcade -N Archer -N Ardmore -N Argyle -N Arizona -N Arkwright -N Arlington -N Arlington Heights -N Arlington Mill -N Arlington Ridge -N Arm -N Armistead -N Arona -N Arrowhead -N Artesian -N Arthur -N Arundel -N Asbury -N Ascan -N Ash -N Ashbury -N Ashby -N Ashland -N Ashton -N Astor -N Atlanta -N Atlantic -N Attleboro -N Aurora -N Austin -N Avalon -N Avon -N Avondale -N Babbit -N Babcock -N Bailey -N Baker -N Baldwin -N Ballou -N Balmiere -N Bank -N Barclay -N Barkley -N Barrett -N Barrington -N Barrington Woods -N Barry -N Barsumian -N Bartlett -N Barton -N Bassford -N Bates -N Bay -N Bayles -N Baynard -N Bayview -N Beach -N Beaumont -N Bedford -N Beech -N Beers -N Belair -N Belgrade -N Bell -N Bellmore -N Belmont -N Bend -N Bereman -N Bernard -N Berteau -N Bertha -N Betty -N Beverly -N Beverwyck -N Bingham -N Birch -N Birchdale -N Birchwood -N Bishop -N Bissell -N Bittner -N Blackburn -N Blackhawk -N Blanchard -N Blanding Woods -N Bleeker -N Bloomingdale -N Bloomington -N Bluebonnet -N Bluemont -N Bobwhite -N Bolingbrook -N Bon Aire -N Bond -N Bonnie -N Boo -N Boro -N Boston -N Bosworth -N Bothwell -N Boulder -N Bourndale -N Boynton -N Bradford -N Bradley -N Brainard -N Braintree -N Branch -N Brandon -N Brandywine -N Brashares -N Braymore -N Brentwood -N Brewer -N Briarcliff -N Briarwood -N Bridge -N Bridgeport -N Bridle Trail -N Briggs -N Brightway -N Bristol -N Brittany -N Broad -N Broadview -N Broadway -N Brockway -N Brompton -N Brook -N Brookdale -N Brooks -N Brookshore -N Brookside -N Brookwood -N Broome -N Brown -N Browning -N Bruner -N Brunson -N Bryan -N Buchanan -N Buckeye -N Buckhout -N Budd -N Buell -N Buesching -N Buffalo -N Buffalo Grove -N Buffalo Run -N Burling -N Burlington -N Burnett -N Burning Bush -N Burr -N Burtis -N Busse -N Butehorn -N Butterfield -N Cabin -N Cady -N Calhoun -N California -N Callahan -N Callero -N Calvert -N Cambridge -N Camden -N Cameron -N Camp Meade -N Campbell -N Canal -N Canfield -N Capitol -N Cardinal -N Carillon -N Carlin Springs -N Carll -N Carlton -N Carlyle -N Caroline -N Carpenter -N Carter -N Caryl -N Cass -N Cassell -N Catalpa -N Cathedral -N Catherine -N Cavender -N Cawdor -N Cedar -N Celia -N Center -N Central -N Central Park -N Centre -N Century -N Chalmers -N Chamber -N Chambliss -N Chamlin -N Champlain -N Channing -N Chapel -N Chapel Hill -N Charles -N Charlotte -N Charter -N Charter Point -N Chase -N Chatsworth -N Chelmsford -N Chelsea -N Cherry -N Cherry Grove -N Cheryl -N Chesapeake -N Chester -N Chestnut -N Chevy Chase -N Chicago -N Chicora -N Chicot -N Chippewa -N Christiana -N Christie -N Church -N Churchill -N Circle -N Claremont -N Clarence -N Clarendon -N Clarice -N Clark -N Clay -N Cleaver -N Cleveland -N Cliff -N Clifford -N Clifton -N Clinton -N Clover -N Club House -N Clyde -N Coach -N Cogswell -N Cohansey -N Cold Mill -N Coldspring -N Colfax -N College -N College Park -N Collins -N Colombian -N Colombus -N Colonial -N Colorado -N Columbia -N Columbine -N Columbus -N Commons -N Commonwealth -N Concord -N Connecticut -N Conrad -N Conservatory -N Constitution -N Converse -N Cook -N Cooper -N Copper Beach -N Corona -N Cortez -N Cottage -N Cottenet -N Countryside -N County Farm -N County Line -N Court -N Court House -N Cowley -N Crabtree -N Cranberry -N Crane -N Crescent -N Crest -N Crestview -N Croname -N Crosby -N Cross -N Crystal -N Crystal Beach -N Culpeper -N Cumberland -N Cumnor -N Custis -N Cutler -N Cuyler -N Cypress -N Cypress Point -N Dairy -N Dale -N Dallas -N Damen -N Danforth -N Daniel -N Daniels -N Dante -N Danube -N Danville -N Darrell -N Dartmoor -N Dato -N Davisson -N Dawson -N Day -N Dayton -N Dean -N Dearborn -N Dearing -N Dearman -N Dee -N Deep Lake -N Deer Lake -N Deer Park -N Deer Run -N Deerpath -N Delaplaine -N Delaware -N Delphia -N Demarest -N Denal -N Denberry -N Deneen -N Denise -N Dennis -N Denton -N Derby -N Derbyshire -N Des Plaines River -N Desplaines -N Detroit -N Devon -N Dewey -N Dexter -N Diamond Lake -N Diane -N Dickenson -N Dickerson -N Dickinson -N Dieter -N Dinwiddie -N Dittmar -N Division -N Dominick -N Donald -N Donelson -N Dorchester -N Douglas -N Dover -N Dovington -N Dowagiac -N Dumbarton -N Dunlap -N Dunton -N Dupont -N Dutcher -N Dutton -N Dwiggins -N Dwight -N Dymond -N Dyre -N Eagle -N Eagle Lake -N Earl -N Early -N East -N East Brook -N East Lake Shore -N East River -N Eastern -N Easton -N Eastwood -N Echo -N Echo Lake -N Eckar -N Eden -N Edgelawn -N Edgemond -N Edgemont -N Edgewood -N Edie -N Edison -N Edmer -N Edmore -N Edward -N Ela -N Elberta -N Elbridge -N Elchester -N Elgin -N Elizabeth -N Elk -N Elk Grove -N Ellen -N Ellis -N Ellison -N Ellsworth -N Ellyn -N Elm -N Elma -N Elmer -N Elmhurst -N Elmwood -N Elodie -N Elroy -N Elston -N Emerald -N Emerson -N Emery -N Emmett -N Emroy -N Enchanted -N Englewood -N English -N Eola -N Erie -N Ernest -N Essex -N Essington -N Ethel -N Etna -N Euclid -N Eugene -N Eustis -N Evanslawn -N Evanston -N Evarts -N Everett -N Evergreen -N Ewing -N Exmoor -N Fairfax -N Fairfield -N Fairlawn -N Fairview -N Fairway -N Falls -N Farrell -N Farrington -N Farview -N Faxon -N Faye -N Fayette -N Fenview -N Fenwick -N Ferdinand -N Fernandez -N Ferndale -N Fernwood -N Ferris -N Ferry -N Ferry Point -N Field -N Fillmore -N Finn -N Fire -N Firestone -N Fisk -N Flake -N Flamingo -N Flanders -N Fletcher -N Florence -N Florida -N Florida Grove -N Floyd -N Ford -N Fordham -N Forest -N Forest Garden -N Forest Glen -N Forest Lake -N Forest Preserve -N Forestview -N Forrest -N Fort Myer -N Four Mile Run -N Fox -N Fox River -N Foxtail -N Frank -N Franklin -N Franks -N Franzen -N Frazier -N Frederick -N Freemont -N Freeway -N Fremont -N Fremont Center -N French -N Friendly -N Frontage -N Frontenac -N Frontier -N Fry -N Fullerton -N Fulton -N Furman -N Gables -N Gaillard -N Galena -N Galesburg -N Galveston -N Gannon -N Garden -N Gardiner -N Garfield -N Garland -N Garnsey -N Gary -N Gate -N Gates -N Gateway -N Gatewood -N Gem -N Genesee -N Geneva -N George Mason -N Gerald -N Geraldine -N Gerard -N Gibbons -N Gibson -N Gifford -N Gilbert -N Gilmer -N Ginger Creek -N Gladden -N Gladstone -N Glebe -N Glen -N Glendale -N Glenmore -N Glenn -N Glenview -N Glenwood -N Glover -N Golden -N Goodwin -N Gordon -N Grace -N Granada -N Grand -N Grand Monde -N Grandin -N Grandview -N Grant -N Graylynn -N Grayson -N Greeley -N Green -N Green Bay -N Green Meadows -N Green Valley -N Greenbrier -N Greenbush -N Greencastle -N Greene -N Greenfield -N Greenmount -N Greenview -N Greenwich -N Greenwood -N Gresham -N Griffith -N Griggs -N Grotto -N Grove -N Gurney -N Guyer -N Haddow -N Hager -N Haig Point -N Hale -N Haledon -N Ham Lake -N Hamilton -N Hamlin -N Hamline -N Hampden -N Hampshire -N Hampton -N Hancock -N Hanover Hills -N Hansen -N Harbor -N Harby -N Harding -N Harlem -N Harold -N Harriet -N Harrison -N Hart -N Hartford -N Hartshorne -N Harvard -N Harvey -N Haskins -N Haverhill -N Hawk -N Hawthorn -N Hawthorne -N Hayes -N Hazel -N Hazel Crest -N Hazelton -N Healy -N Heather -N Hebbard -N Hedgewood -N Heights -N Helgesen -N Hemlock -N Hempstead -N Henderson -N Henry -N Herbert -N Hereford -N Heritage -N Herky -N Hermitage -N Herndon -N Herschel -N Hess -N Hiawatha -N Hickory -N Hickory Hill -N Hickory Nut Grove -N High -N High Ridge -N Highcrest -N Highland -N Highview -N Highway -N Highwood -N Hilandale -N Hill -N Hillcrest -N Hillfarm -N Hillside -N Hillview -N Hobart -N Holder -N Hollins Ferry -N Hollister -N Holly -N Holton -N Homan -N Home -N Homeland -N Honey -N Honore -N Hooker -N Hope -N Horatio -N Horners -N Hotz -N Hough -N Howard -N Howe -N Howell -N Hoyne -N Hoyne Av -N Hubbard -N Hudson -N Huffman -N Humboldt -N Humphrey -N Hundley -N Hunter Ridge -N Hunting Valley -N Huntington -N Hurdale -N Huron -N Huston -N Hythe -N Idaho -N Illinois -N Ilwaco -N Imboden -N Indian -N Indiana -N Inglewood -N Innsbruck -N International -N Ionia -N Iowa -N Irene -N Irving -N Island -N Ivanhoe -N Iverson -N Ivy -N J RR -N Jackson -N Jacksonville -N Jacob -N James -N Jameson -N Jane -N Janssen -N Jason -N Jasper -N Jay -N Jean -N Jefferson -N Jensen -N Jerome -N Jersey -N Jerusalem -N Jessie -N John -N John Marshall -N Johnson -N Joliet -N Jones -N Jordan -N Joyce -N Jugtown -N Julian -N Juliet -N Juniper -N Justine -N Kane -N Kansas -N Karlov -N Kaspar -N Kasson -N Kearns -N Kearsarge -N Keating -N Kedvale -N Kedzie -N Keeler -N Keene -N Kelsey -N Kelso -N Kemman -N Kemper -N Kendall -N Kenilworth -N Kenmore -N Kennard -N Kennebec -N Kennedy -N Kennesaw -N Kenneth -N Kennicott -N Kennison -N Kenosha -N Kensington -N Kent -N Kenton -N Kentucky -N Keokuk -N Keota -N Kerbs -N Kercheval -N Keston -N Ketay -N Kewanee -N Key -N Keys -N Keystone -N Kilbourn -N Kilburn -N Kildare -N Kilpatrick -N Kimball -N Kimberly -N Kinderkamack -N King -N Kings -N Kingsbury -N Kingsdale -N Kingsway -N Kinzua -N Kiona -N Kirby -N Kirkwood -N Kittson -N Knight -N Knollwood -N Knox -N Kohlman -N Kolin -N Kolmar -N Konner -N Kostner -N Kramer -N Krueger -N Kruger -N L Johnson -N La Fox -N Lacey -N Lafayette -N Laflin -N Laird -N Lake -N Lake Arlington -N Lake Park -N Lake Shore -N Lake Zurich -N Lakeland -N Lakeshore -N Lakeside -N Lakeview -N Lakewood -N Lama -N Lamon -N Lancaster -N Landau -N Landers -N Langley -N Lansing -N Laporte -N Laramie -N Larch -N Larkspur -N Larned -N Larrabee -N Larrimore -N Las Casas -N Lasalle -N Latham -N Latrobe -N Laurel -N Laurine -N Lavergne -N Lawler -N Lawn -N Lawndale -N Lawrence -N Le Mai -N Leader -N Leamington -N Leavenworth -N Leavitt -N Lebanon -N Leclaire -N Lee -N Legett -N Legion -N Lehigh -N Leibert -N Leisure World -N Lemai -N Lemon -N Lemont -N Lenhome -N Lenore -N Lenox -N Lenwood -N Leona -N Leonard -N Leoti -N Lerisa -N Leroy -N Lester -N Leswing -N Lewis -N Lexington -N Lexow -N Liano -N Liberty -N Lieb -N Lightfoot -N Lilac -N Lillian -N Lincoln -N Lincolnway -N Lind -N Linda -N Linden -N Linder -N Linwood -N Lister -N Little Falls -N Littleton -N Livermore -N Liverpool -N Livingston -N Lochleven -N Locke -N Lockwood -N Locust -N Loleta -N Lombard -N Lombardy -N London -N Long -N Long Beach -N Long Cove -N Long Meadows -N Longcross -N Longfellow -N Longmeadow -N Longview -N Longwood -N Lookout Pointe -N Loomis -N Loop -N Lorang -N Lorcom -N Lord -N Lorel -N Loring -N Loron -N Lotus -N Loucks -N Louis -N Louise -N Lovejoy -N Lowell -N Lucerne -N Ludlam -N Luella -N Lullo -N Luna -N Lund -N Lundy -N Luther -N Lyle -N Lynch -N Lynn -N Lytle -N Macarthur -N Mack -N Mackubin -N Madison -N Magazine -N Magnet -N Magnolia -N Magoun -N Maid Marion -N Maidstone -N Main -N Major -N Malden -N Mall -N Mallard -N Mallory -N Manchester -N Mandell -N Mango -N Manhattan -N Manila -N Mankato -N Manor -N Mansards -N Mansfield -N Mansion -N Manton -N Maple -N Maplewood -N Marcey -N Maria -N Marilyn -N Marine -N Marion -N Market -N Markham -N Marmora -N Marsha -N Marshfield -N Martha -N Martha Lake -N Martin -N Martine -N Martling -N Marybrook -N Maryknoll -N Maryland -N Marywood -N Mason -N Massasoit -N Matteson -N Matthews -N Maud -N Mavis -N May -N Mayfield -N Mayflower -N Maywood -N Mc Clellan -N Mc Cook -N Mc Crea -N Mc Lean -N Mc Leod -N Mc Vicker -N McAlpin -N McCarron -N McKinley -N McKnight -N McLean -N McLindon -N McVicker -N Meacham -N Meade -N Meadow -N Meadow Lake -N Meadowbrook -N Medford -N Medina -N Melody -N Melrose -N Melvina -N Menard -N Mendell -N Mendota -N Menominee -N Mercer -N Merchants -N Meredith -N Meridian -N Merrill -N Merrimac -N Mesa -N Miami -N Michigan -N Middle -N Middleton -N Middletown -N Midfield -N Midland -N Midlothian -N Midmar -N Mildred -N Military -N Mill -N Mill Creek -N Millpage -N Miltmore -N Milton -N Milwaukee -N Mineral Springs -N Minnehaha -N Minnetonka -N Minnisink -N Minntonka -N Mississippi -N Mississippi River -N Mitchell -N Mobile -N Moetz -N Mohawk -N Moki -N Monitor -N Monroe -N Mont Clare -N Montague -N Montana -N Montclair -N Montclare -N Monterey -N Montgomery -N Monticello -N Moody -N Moore -N Moorman -N Moreland -N Morey -N Morgan -N Morris -N Morrison -N Mortimer -N Moselle -N Mound -N Mountain -N Mozart -N Muirfield -N Mulligan -N Munn -N Mura -N Murray -N Myrtle -N Nagle -N Nancy -N Naper -N Naperville Wheaton -N Naples -N Napoleon -N Narragansett -N Nash -N Nashotah -N Nashville -N Nassau -N Natchez -N National -N Natoma -N Navajo -N Navarre -N Naylor -N Neenah -N Nelly Custis -N Nelson -N Neltnor -N Neola -N Nettleton -N Neva -N New Britton -N New England -N New Hampshire -N New York -N Newark -N Newbridge -N Newburg -N Newcastle -N Newgard -N Newland -N Newport -N Niagara -N Niagra -N Niami -N Nicholas -N Nichols -N Nickerson -N Nicolet -N Nina -N Nixon -N Noble -N Nokomis -N Nolton -N Nora -N Nordica -N Norman -N Normandy -N North Branch -N North Park -N Northampton -N Northbridge -N Northcott -N Northwest -N Norton -N Norwood -N Nottingham -N Noyes -N Nybro -N Oak -N Oak Beach -N Oak Hill -N Oak Hills -N Oak Knoll -N Oak Park -N Oakhurst -N Oakland -N Oaklawn -N Oakley -N Oakmont -N Oakview -N Oakwood -N Obrien -N Ocean -N Oceanside -N Oconto -N Octavia -N Ode -N Odell -N Ogden -N Ohio -N Oketo -N Olcott -N Old Barrington -N Old Bridge -N Old Creek -N Old Dominion -N Old Farm -N Old Hicks -N Old Mill -N Old Rand -N Old School -N Old Wick -N Oleander -N Oliphant -N Olive -N Olmsted -N Oltendorf -N Olympia -N Onarga -N Oneida -N Ontario -N Opal -N Orange -N Orchard -N Oriole -N Orleans -N Osage -N Osceola -N Oshkosh -N Oswego -N Otsego -N Ott -N Ottawa -N Overhill -N Overlook -N Owen -N Owens -N Oxford -N Ozanam -N Ozark -N Pacific -N Page -N Panama -N Paris -N Park -N Parke -N Parker -N Parkside -N Pascal -N Passaic -N Patrick -N Patrick Henry -N Patton -N Paulina -N Pawnee -N Paxton -N Payne -N Peach -N Peachtree -N Pearl -N Peary -N Peck -N Pecos -N Pegram -N Pelham -N Pembroke -N Penfield -N Pennington -N Pennsylvania -N Penny -N Peoria -N Peotone -N Pequanneck -N Perkins -N Pershing -N Pet -N Peyton -N Pfingsten -N Pheasant -N Phelps -N Pickett -N Piedmont -N Pierce -N Pierre -N Pima -N Pine -N Pine Grove -N Pinecrest -N Pinehurst -N Pinetree -N Pioneer -N Pipe Mill -N Pitt -N Pittsburgh -N Plainfield -N Plandome -N Plantation -N Pleasant -N Plum Grove -N Plumwood -N Plymouth -N Pocomoke -N Pocono -N Poe -N Point -N Pollard -N Ponchartrain -N Pond -N Pond Shore -N Pondview -N Pontiac -N Poplar -N Porchuck -N Porter -N Potawatomie -N Potomac -N Powhatan -N Prague -N Praire -N Prairie -N Prater -N Prescott -N President -N Preston -N Prestwick -N Prince Crossing -N Prince Frederick -N Prindle -N Prior -N Prologis -N Prospect -N Prospect Manor -N Prosperity -N Pryor -N Pulaski -N Putnam -N Quaker -N Quantico -N Quarry -N Quebec -N Queen -N Queens -N Quesada -N Quincy -N Quinn -N Quintana -N Race -N Racine -N Raddant -N Radford -N Railroad -N Rainbow -N Raleigh -N Ramapo -N Rammer -N Ramona -N Rand -N Randall -N Randolph -N Randolphville -N Raven -N Ravenswood -N Ravine -N Raymond -N Raynor -N Recreation -N Red Coat -N Reform -N Regency -N Regent -N Rensselaer -N Reserve -N Reta -N Retford -N Reuter -N Reynolds -N Rhett -N Rhodes -N Richmond -N Ridge -N Ridgeland -N Ridgemoor -N Ridgeview -N Ridgeway -N Ridgewood -N Ripley -N River -N Rivershore -N Riverside -N Riverview -N Riverwoods -N Riviera -N Rivoli -N Robert -N Robert Damm -N Roberta -N Roberts -N Robin -N Robinson -N Rochester -N Rock Cove -N Rock Spring -N Rockingham -N Rockledge -N Rockwell -N Rocky Top -N Rocky Wood -N Rogers -N Rohallion -N Rohde -N Rohlwing -N Roland -N Rolfe -N Rondeau Lake -N Roosevelt -N Root -N Rose -N Rosedale -N Roselle -N Rosemary -N Rosetree -N Rosewell -N Rossell -N Rosser -N Rosslyn -N Rowling -N Roy -N Royal -N Royal Oaks -N Rumple -N Rush -N Russell -N Ruth -N Rutherford -N Ryde -N Sacramento -N Saddle Brook -N Saddlebrook -N Saint Asaph -N Saint Marys -N Salem -N Salk -N Salt Creek -N Sandra -N Sangamon -N Santee -N Sapphire -N Saratoga -N Sauganash -N Sawyer -N Sayre -N Scherer -N Schletti -N Schmidt -N Schoenbeck -N School -N Schrader -N Schultz -N Schuneman -N Scotch Plains -N Scott -N Scoville -N Sedgwick -N Seebert -N Seeley -N Seminary -N Seminole -N Serven -N Service -N Seymour -N Shaddle -N Shady Oaks -N Shagbark -N Shelby -N Sheldon -N Shelley -N Shenandoah -N Sheridan -N Sherman -N Shermer -N Sherwood -N Shore -N Sibley -N Silver -N Silverlake -N Simonds -N Simpson -N Sioux -N Skokie -N Skyline -N Sleight -N Sloan -N Smith -N Smythe -N Snelling -N Snuff Valley -N Somerset -N Sott -N Sound Beach -N South Elgin -N South Park -N Southport -N Southwood -N Spaulding -N Spencer -N Spokane -N Spring -N Spring Garden -N Springfield -N Springinsguth -N Springwood -N Spruce -N Suffolk -N Summit -N Sumner -N Sunset -N Suthers -N Sutton Lake -N Swift -N Sycamore -N Sylvan -N Sylvander -N Sylvester -N Syndicate -N Syracuse -N Tabler -N Tacoma -N Tahoma -N Talcott -N Tall Oaks -N Talmadge -N Talman -N Tamarack -N Tappan Landing -N Tatge -N Taylor -N Temperance -N Terrace -N Terramere -N Terre -N Terrill -N Thatcher -N Thomas -N Thompson -N Thorndale -N Thorsen -N Throop -N Tippecanoe -N Tonty -N Topanga -N Toronto -N Tower -N Tracy -N Tree -N Trenton -N Trinidad -N Tripp -N Trivett -N Troop -N Troy -N True -N Trumbull -N Tuckahoe -N Turf Hill -N Turtle Bay -N Tyler -N Tyson -N Uhle -N Underwood -N Union -N University -N Upland -N Upshur -N Upton -N Utah -N Utica -N Vacation -N Vail -N Valley -N Van Brunt -N Van Buren -N Van Dien -N Van Dorn -N Van Dyke -N Van Nortwick -N Vance -N Vanderburg -N Vanderpool -N Varner -N Veitch -N Venable -N Venice -N Ventura -N Veprek -N Verde -N Vermillion -N Vermont -N Vernon -N Verrill -N Vest -N Victoria -N View -N Vigo -N Villa -N Village -N Vine -N Violet -N Virginia -N Vista -N Vivyen -N Wabash -N Wabasso -N Wacouta -N Wade -N Wagner -N Waiola -N Wakefield -N Walden -N Waldinger -N Walkup -N Waller -N Walnut -N Walsh -N Wantagh -N Ward -N Warner -N Warren -N Warrick -N Warrington -N Warwick -N Washington -N Washtenaw -N Wasson -N Watchung -N Water -N Waterford -N Waterman -N Waters Edge -N Waukegan -N Waukesha -N Waveland -N Wayne -N Wayzata -N Wear -N Weatherstone -N Webster -N Wedgewood -N Weed -N Weide -N Weigel -N Weiland -N Wellington -N Wells -N Wellwood -N Werden -N Wespark -N West -N West Brook -N Westchester -N Western -N Westgate -N Westland -N Westlawn -N Westminster -N Westmore -N Westmoreland -N Weston -N Westward Ho -N Westwood -N Wheaton -N Wheeler -N Wheeling -N Whipple -N Whispering Hills -N Whitcomb -N White -N White Pine -N Whitman -N Wicker Park -N Wickom -N Widgeon -N Wieland -N Wiggs -N Wilder -N Wildrose -N Wildwood -N Wiley -N Wilke -N Will -N Willard -N Wille -N William -N Williams -N Williams Park -N Williamsburg -N Willis -N Williston -N Willow -N Wilmette -N Wilmot -N Wilshire -N Wilson -N Wilton -N Winchester -N Windell -N Windham -N Windhorst -N Winding -N Windsor -N Winfield -N Winifred -N Winnebago -N Winston -N Winter -N Winthrop -N Wisconsin -N Wisner -N Wolcott -N Wolf -N Wood -N Woodard -N Woodbine -N Woodbridge -N Wooddale -N Woodgate -N Woodhull -N Woodland -N Woodlawn -N Woodley -N Woodrow -N Woodside -N Woodstock -N Woodward -N Woodwork -N Worth -N Wright -N Wulff -N Wyndwood -N Wynstone -N Wyoming -N Yale -N York -N Young -N Youngs -N Yucatan -N Zoranne -N du Bois -N la Crosse -N la Londe -N. Irving -N. Oak -N. Oliver -N. School -N. Whisman -NASA -NE Allen -NE Arthur -NE Benjamin -NE Buchanan -NE Circle -NE Cleveland -NE Columbia -NE Garfield -NE Grand -NE Greens Crossing -NE Hayes -NE Highland -NE Holcomb -NE Hollywood -NE Howard -NE Industrial -NE Jackson -NE Jambor -NE Lincoln -NE Madison -NE Main -NE Odell -NE Ohland -NE Pierce -NE Plaza -NE Polk -NE Roosevelt -NE Taft -NE Taylor -NE Tyler -NE Ulysses -NE University -NE Van Buren -NE Wilson -NW Centennial -NW Circle -NW Diagonal -NW Frontage -NW Holcomb -NW Walker -NY Orphan AYM -Na Wa Ta -Nab -Nabbot -Nabbott -Nabbs Creek -Nabiac -Nabnasset -Nabor -Nabscot Brook -Naburn -Nace -Nacona -Nacy Lee -Nada -Nadeau -Nadel -Naden -Nadia -Nadin -Nadina -Nadine -Nadotti -Nagareda -Nagel -Nagle -Naglee -Nagog -Nagog Hill -Nags Head -Nagy -Nahant -Nahanton -Nahatan -Nahmens -Nahua -Naida -Naify -Nails -Nairana -Nairdwood -Nairn -Naisby -Naismith -Najm -Najoles -Nalders -Naldretts -Nalisty -Nall -Nallada -Nalley -Nallhead -Nalls -Nalya -Namakagan -Namassin -Namba -Nambour -Nambucca -Namdac -Namdre -Namekagon -Nameoke -Namitjira -Namleps -Namoi -Namona -Nampeyo -Namsan -Namton -Namur -Nan -Nan King -Nan Mill -Nan Nook -Nan Tucks -Nana -Nana Glen -Nana Russell -Nanak -Nanapashamet -Nanbaree -Nancarles -Nancarrow -Nance -Nancemond -Nancia -Nancy -Nancy Ann -Nancy Vallera -Nancye -Nandell -Nandi -Nandina -Nanepashemet -Nanette -Nangana -Nangar -Nangreave -Nangreaves -Nanita -Nankin -Nanlee -Nann -Nanna -Nannet -Nanny Goat -Nanong -Nanowie -Nansen -Nanset -Nansmoss -Nant -Nantasket -Nantes -Nanti -Nanticoke -Nantucket -Nantwich -Nantwick -Nanuet -Naoi -Naoma -Naomi -Naomi Cochran -Naoroji -Napa -Napa Nook -Napa River -Napa Valley -Napa Valley Corporate -Napco -Naper -Naperville -Napier -Naple -Naples -Napleton -Napolean -Napoleon -Napoli -Napper -Nappsbury -Napsbury -Narada -Naranga -Naranganah -Naranghi -Naranja -Narbeth -Narbonne -Narborough -Narbuth -Narcissius -Narcissus -Narcot -Nardango -Nardell -Nardi -Nardis -Nardone -Nardoo -Nare -Nareb -Naree -Narellan -Narelle -Nares -Naretha -Narford -Nargong -Nariel -Narla -Narland -Naro -Naromake -Naroo -Narooma -Narrabeen -Narrabri -Narraganset -Narragansett -Narray -Narromine -Narromore -Narrow -Narrowbush -Narrowleaf -Narrows -Narumson -Narumsunk -Narvaez -Narvick -Narvik -Narwee -Narwood -Nascoby -Nascot -Nascot Wood -Naseby -Nash -Nash Lee -Nash Memorial -Nash Mills -Nasha Way -Nashawtuc -Nashdom -Nashenden -Nashenden Farm -Nashgrove -Nashoba -Nashua -Nashville -Nasmyth -Nason -Nason Hill -Nasonville -Nasreen -Nassau -Nassau Terminal -Nasse -Nassington -Nast -Nasturtium -Nata -Natahala -Natal -Natalie -Natalie Joy -Natalye -Nataqua -Natasha -Natchez -Nate Nutting -Natelli Woods -Nately -Nathalee -Nathalie -Nathan -Nathan Hale -Nathaniel -Nathaniel Guild -Nathaniel Oaks -Nathans -Nathanson -Nathanson Creek -Nathelle -Nathhorst -Nathorst -Natia Manor -Natick -Natick Mall -National -National Business -National Harbor -National Park -Nations -Nationville -Native Dancer -Native Oak -Native Rocks -Native Sons -Natividad -Natoma -Natomas -Natomas Central -Natomas Crossing -Natomas Park -Natta -Nattai -Nattinger -Natuna -Natural Bridges -Natural History -Nature -Nature Center -Nature View -Nature Walk -Natures -Natwick -Naugatuck -Naughton -Naugle -Naugler -Naugus -Naumkeag -Naunton -Nausbaumer -Nauset -Naushon -Nausin -Nautical -Nautilus -Nauvoo -Navaho -Navaho Trail -Navahoe -Navajo -Naval -Navarino -Navarone -Navarra -Navarre -Navarro -Nave -Navel -Navellier -Navenby -Navesink -Navesink River -Naviens -Navigation -Navigator -Navillus -Navins -Navion -Navone -Navy -Navy Day -Navy Yard -Nawadaha -Nawakwa -Nawatam -Nawthorne -Nay -Naying -Nayland -Nayling -Naylon -Naylor -Nazarene -Nazeing -Nazeing New -Nazeing Old -Nazielle -Nazing -Nazrul -Nea -Neabsco -Neabsco Mills -Neagle -Neal -Neal Dow -Neal Gate -Nealden -Neale -Nealley -Nealon -Neals -Neals Hollow -Nealy -Neame -Neaptide -Near Mountain -Near Mtn -Nearbrook -Nearcroft -Nearmaker -Nearwater -Neary -Neasden -Neasham -Neate -Neath -Neatham Mill -Neatscourt -Neb -Nebel -Nebo -Nebraska -Nebrentwood -Nebula -Necco -Neck -Neck Hill -Neckar -Neckinger -Necropolis -Nectar -Nectarbrook -Nectarine -Necton -Necturine -Ned -Nedderson -Neddleton -Nedellec -Nedley -Nedra -Neds -Nedshire -Needes -Needham -Needham Green -Needham Landing -Needhamdale -Needle -Needle Leaf -Needleleaf -Needleman -Needles -Needless Inn -Needlewood -Needwood -Needwood Lake -Neef -Neel -Neelen -Neeley -Neelon -Neelsville Church -Neely -Neenah -Neer -Neerim -Neerwinder -Nees -Neeser -Neet -Neeta -Neeworra -Neff -Negaune -Negundo -Nehemiah -Nehf -Nehoiden -Nehring -Neid -Neider -Neighbor -Neighborhood -Neighbors -Neihart -Neil -Neil Armstrong -Neild -Neilis -Neill -Neill Lake -Neillian -Neills -Neilsen -Neilson -Neilwood -Neimann -Neirbo -Neiss -Neitzel -Nekoma -Nel Pan -Nela -Nelda -Nelden -Nelgarde -Nelkin -Nell -Nell Gwynn -Nell Gwynne -Nella -Nella Dan -Nelldale -Nellella -Nellen -Nellgrove -Nellie -Nellie White -Nelligan -Nellington -Nellis -Nells -Nelly -Nelmark -Nelmes -Nelo -Nels -Nels Berglund -Nelsine -Nelson -Nelson Farm -Nelson Grove -Nelson Heights -Nelson Lake -Nelson Mandela -Nelson Park -Nelson Perrie -Nelson Point -Nelson Rising -Nelson Short -Nelstrop -Nelway -Nelwyn -Nemba -Nemec Knoll -Nemesia -Nemeth -Nemic -Nemitz -Nemoure -Nenagh -Nene -Nenninger -Neola -Neosho -Neotomas -Nepaul -Nepawin -Nepean -Nepean Towers -Nepenthe -Neperan -Nephi -Nepicar -Nepil -Nepo -Neponset -Neponset Heights -Neponset Valley -Neponsit -Nepperhan -Nepshaw -Nepton -Neptune -Neptune Gardens -Nequa -Neranda -Nerang -Nerbonne -Nerdy -Nereid -Nerida -Neridah -Neringa -Nerious -Nerli -Nern -Nero -Neroly -Nertherne -Nesaquake -Nesbit -Nesbitt -Nesconset -Nesfield -Neshobe -Nesler -Neslite -Nesmith -Ness -Nessralla -Nesta -Nester -Nestlewood -Nestlewood Farm -Neston -Nestor -Nestora -Nestro -Nether -Nether Hey -Netheravon -Netherbury -Netherby -Nethercliffe Hall -Nethercote -Nethercourt -Nethercroft -Netherdale -Netherend -Netherfield -Netherford -Netherhall -Netherhouse -Netherland -Netherlands -Netherley -Nethermont -Nethern Court -Netherne -Netherpark -Netherton -Netherwood -Netley -Netta -Netteswell -Netties -Nettle -Nettlebarn -Nettleden -Nettlepole -Nettlestead -Nettleton -Nettlewood -Netto -Network -Neuberry Ridge -Neubert -Neubourg -Neuchatel -Neuenschwander -Neufairfield -Neugebauer -Neuharth -Neulist -Neumaier -Neuman -Neumann -Neuner -Neustoneshire -Neuton -Neutral -Neuville -Neva -Nevada -Nevells -Nevendon -Nevern -Neves -Nevil -Nevill -Neville -Neville Duke -Neville Grove Church -Nevin -Nevins -Nevis -Nevius -Nevsky -Nevy Fold -New -New Abbey -New Acadia -New Ackertown -New Adel -New Albany -New Allen -New Ascot -New Bailey -New Balch -New Bank -New Banner -New Barge Pier -New Barn -New Barn Farm -New Barns -New Barton -New Battlebridge -New Beach -New Bedford -New Beech -New Berry -New Bond -New Boston -New Braddock -New Brent -New Briar -New Bridge -New Brier -New Bright -New Brighton -New Brighton Service -New Britton -New Broad -New Brook -New Brooklyn -New Brunswick -New Burlington -New Butt -New Canterbury -New Carson -New Castle -New Castor -New Cathedral -New Century -New Change Cannon -New Chapel -New Chardon -New Charles -New Church -New City -New Clark -New Coach -New Cold Mill -New Commons -New Compton -New Country -New County -New Court -New Creek -New Cross -New Cut -New Cypher -New Dairy -New Dawn -New Derby -New Design -New Devon -New Disney -New Dobbel -New Dock -New Dominion -New Dorp -New Dover -New Dunne -New Durham -New Dutch -New Earth -New Elm -New Emerald -New England -New England Village -New England Woods -New Era -New Estate -New Fairview -New Farm -New Fisher -New Fitchburg -New Fletcher -New Ford -New Forest -New Foster -New Fox Hill -New Freetown -New Front -New Garden -New Gardens -New Garrison -New Gateway -New George -New Goulston -New Greens -New Guinea -New Hall -New Hall Farm -New Hampshire -New Harbor -New Harter -New Haven -New Haven RR -New Haw -New Heath -New Heckman -New Helvetia -New Herbert -New Hewy -New Hey -New High -New Holder -New Holland -New Home -New Hook Access -New Hope -New Horizon -New Horizons -New Horwich -New House -New House Farm -New Hyde Park -New Hythe -New Illawarra -New Industrial -New Inn -New Ipswich -New Jefferson -New Jersey -New Jersey Railroad -New Kelvin -New Kent -New Kiln -New King -New Lake -New Lancaster -New Lawn -New Lebanon -New Lenox -New Liberty -New Line -New Line Carr Bottom -New Line Elder -New Line Redcar -New Line near Albion -New Lodge -New London -New Lots -New Lydenburg -New Main -New Malden High -New Manchester -New Maple -New Market -New Mathews -New Mayfield -New McLean -New McNeil -New Mead -New Meadow -New Meadows -New Mexico -New Mile -New Milford -New Mill -New Mills -New Minton -New Monmouth -New Montgomery -New Moor -New Moorhead -New Mount -New North -New North Rocks -New Northern -New Oak -New Occupation -New Ocean -New Odiham -New Old Bridge -New Orchard -New Orleans -New Oxford -New Park -New Parkland -New Peachey -New Pittsburg -New Place -New Plaistow -New Point -New Pond -New Port -New Prague -New Princess -New Providence -New Quay -New Quebec -New Radcliffe -New Read -New Rectory -New Ridge -New Riggs -New River -New Rochelle -New Row -New Royd -New Rutherford -New Salem -New Saw Mill River -New Schley -New School -New Solomoms Island -New South -New South Head -New Spaulding -New Sudbury -New Sudlersville -New Sutton -New Tank -New Tank Hill -New Terrace -New Town -New Towne -New Tradition -New Trier -New Trinity -New Union -New Utrecht -New Utrecth -New Vernon -New Viaduct -New Village -New Vine -New Vista -New Wakefield -New Walnut -New Warrington -New Washington -New Water -New Waugh Chapel -New Waverley -New Way -New Welcome -New West Townsend -New Wharf -New Wickham -New Wilke -New Willow -New Wilmot -New Windsor -New Wokingham -New Woods -New World -New Writtle -New Wye -New Years -New York -New Zealand -New lands -Newacre -Newacres -Newall -Newalls -Newand -Newanga -Newark -Newark Broad -Newarth -Newasa -Newbank -Newbarn -Newberm -Newbern -Newberne -Newberries -Newberry -Newbert -Newbery -Newbiggen -Newbold -Newbolt -Newborough -Newboult -Newbreak -Newbridge -Newbrook -Newburg -Newburgh -Newburn -Newbury -Newby -Newby Bridge -Newcastle -Newcastle Coal Creek -Newcastle Gap -Newcastle Golf Club -Newchapel -Newchurch -Newcliffe -Newcomb -Newcombe -Newcombs -Newcome -Newcomen -Newcompton -Newcourt -Newcroft -Newcrossing -Newcut -Newdale -Newdene -Newdigate -Newearth -Newel -Newell -Newell Creek -Newell Hill -Newells -Newenden -Newenham -Newey -Newfield -Newfields -Newfoundland -Newgate -Newgatestreet -Newglen -Newground -Newhall -Newham -Newham Hospital Glen -Newham Way Colman -Newhaven -Newhey -Newhill -Newhouse -Newick -Newington -Newington Commons -Newington Forest -Newington Green -Newington Woods -Newitt -Newkirk -Newkirt -Newlaithes -Newland -Newland Green -Newlander -Newlands -Newlands Farm -Newlay -Newlay Wood -Newley -Newlyn -Newmain -Newman -Newman Hill -Newman Springs -Newmans -Newmarch -Newmark -Newmarket -Newmarsh -Newmer -Newminster -Newmont -Newnham -Newood -Newpasture -Newport -Newport Cove -Newport Mill -Newpots -Newpound -Newquay -Newry -News -News Direct -News Lees -Newsam -Newsham -Newshaw -Newsholme -Newsom -Newsome -Newstead -Newteswell -Newton -Newton Abbot -Newton Falls -Newton Hall -Newton Lodge -Newton Park -Newton Patent -Newton Wood -Newtonville -Newtown -Newtowne -Newvale -Newvalley Church -Newville -Newyears Green -Next Day Hill -Ney -Nez Perce -Niagara -Niagara Falls -Niagra -Niantic -Niara -Nibbe -Niblick -Niblo -Nibshaw -Nibthwaite -Nicanoa -Nicasio Creek -Nicasio Valley -Nicastro -Nice -Nichandros -Nichol -Nicholai -Nicholas -Nicholas Run -Nicholay -Nichold -Nichole -Nicholes -Nicholi -Nicholl -Nicholls -Nichols -Nicholsen -Nicholson -Nicholsons -Nicholsridge -Nick -Nickel -Nickelson -Nickerson -Nicklaus -Nickle Plate -Nickleby -Nickles -Nickleson -Nickley Wood -Nickolas -Nickolsen -Nicks Rock -Nickson -Nicky -Nicobar -Nicod -Nicol -Nicola -Nicolai -Nicolar -Nicole -Nicolet -Nicoletta -Nicolette -Nicolini -Nicoll -Nicollet -Nicolls -Nicolosi -Nicols -Nicolson -Nicora -Nicosia -Nicrobia -Nider -Nido -Nidva -Niebaum -Niederwald -Niehaus -Nield -Nields -Nielsen -Nielson -Nieman -Niemann -Niemela -Niemeyer -Niestrath -Nieves -Nigel -Nigel Playfair -Nigeria -Nigh -Nigher Moss -Night Shade -Nightengale -Nightfall -Nighthawk -Nightingale -Nightingale Farm -Nightingale Hall -Nightside -Nightsong -Nightwatch -Niguel -Nijong -Nike -Nike Manor -Niki -Nikisch -Nikki -Nikkie -Nikol -Niland -Nilda -Nile -Niles -Niles Center -Nill -Nillera -Nilsen -Nilson -Nilsson -Nimbey -Nimbin -Nimbrin -Nimbus -Nimco -Nimitz -Nimmo -Nimoola -Nimrick -Nimrod -Nims -Nina -Nina Grey -Nine Acre -Nine Acres -Nine Ashes -Nine Elms -Nine Mile Creek -Ninehams -Ninelands -Nineteenth -Nineteeth -Ninevah -Ninevan -Nineveh -Ninfa -Ninfantino -Ninfield -Ninian -Ninive -Ninn -Ninnings -Ninnis -Nino -Ninth -Niobe -Niobrara -Nioka -Nipawaton -Nipigon -Nipmuc -Nipmuck -Nipowin -Nipper -Nippert -Nippon -Nira -Nircana -Nire -Nirimba -Nirvana -Nisbet -Nish -Nishia -Nishida -Nishuane -Nisich -Nisperos -Nisqually -Nissen -Nissitissit -Nisson -Niswender -Nita -Nithdale -Nithila -Nithsdale -Niton -Nittany -Niven -Nivens -Nix -Nixon -Nizam -Nizels -Nizoni -No Name -No Name Uno -Noah -Noahs Ark -Noak Hill North Hill -Noake Mill -Noakes -Noanet -Noanet Brook -Noanett -Nob -Nob Hill -Nobbs -Nobby -Nobehar -Nobel -Nobel Crest -Nobes -Nobhill -Nobi -Nobile -Nobili -Noble -Noble Fir -Noble Hill -Noble Oak -Noble Rock -Noble Tree -Noble Victory -Nobles Green -Noblestown -Noblewood -Nobscot -Nobu -Noce -Noche Vista -Nock -Nockege -Nockolds -Nodaway -Nodd -Noddin -Nodes -Nodine -Noe -Noel -Noel Park -Noelene -Noeline -Noell -Noemi -Nogal -Nogales -Nohea -Noia -Noid -Noke -Nokes -Nokesville -Nokomis -Nola -Nolan -Nolan Farm -Noland -Nolands Ferry -Nolans -Nolberry -Nolcrest -Nolden -Nolen -Nolet -Nolfield -Nolheight -Nolin -Noll -Nollet -Nolpark -Nolte -Nolting -Noltland Castle -Nolton -Nomad -Nomahegan -Nome -Nomini -Nomis -Nommsen -Nona -Nonantum -Nondorf -Nonesuch -Nonie -Nonington -Nonnie -Nonquit -Nonquitt -Nonset -Nonsuch Court -Nooal -Nook -Noolinga -Noon -Noon Hill -Noonan -Noonan Ranch -Noonans -Noor -Noora -Noorang -Nootka -Nora -Norah -Norair -Noranda -Norba -Norbar -Norbay -Norbeck -Norbeck Square -Norbert -Norbiton -Norbiton Common -Norbreck -Norbridge -Norbrik -Norbroke -Norbrook -Norburn -Norburt -Norbury -Norbury Court -Norbury Hollow -Norcia -Norcliff -Norcot -Norcott -Norcott Farm -Norcrest -Norcroft -Norcross -Norcutt -Nord -Nord Cir -Nordale -Nordek -Nordell -Norden -Nordens -Nordham -Nordhoff -Nordic -Nordic Hill -Nordica -Nordland -Nordlie -Nordling -Nordstrom -Nordyke -Nore -Noreen -Norelius -Norelle -Noren -Nores -Noreuil -Norex -Norfeld -Norfen -Norfield -Norflex -Norfolf -Norfolk -Norfolk Farm -Norfolk House -Norfolk Pine -Norfork -Norgate -Norge -Norgren -Norgrove -Norham -Norhead -Norhyrst -Noria -Norias -Noric -Norich -Noriega -Noriker -Norine -Norlan -Norland -Norlands -Norlee -Norley -Norlinda -Norlington -Norlyn -Norma -Normac -Normal -Normal Hill -Normal School -Normalee -Norman -Norman Center -Norman May -Norman Ridge -Norman Rockwell -Norman Smith -Norman Todd -Normanby -Normand -Normandale -Normandale Highlands -Normandale Lake -Normandie -Normandie Farm -Normandy -Normandy Common -Normandy Crossing -Normandy Heights -Normandy Hill -Normandy Square -Normandy Woods -Normanhurst -Normans -Normansfield -Normanshire -Normanshurst -Normanstead -Normanstone -Normanton -Normantown -Normington -Normon -Normoor -Normurra -Noroton -Norpak -Norrback -Norrbom -Norrels -Norreys -Norridge -Norrie -Norrington -Norris -Norris Canyon -Norris Hill -Norristhorpe -Norroway -Norroy -Norrys -Norse -Norseman -Norsey -Norsey View -Norsham -Norshon -Norsid -Norside -Norstad -Norstead -Norte -Nortech -North -North Abbott -North Abel -North Aberdeen -North Access -North Adams -North Addison -North Airport -North Airway -North Akron -North Alamo -North Albany -North Alder -North Almaden -North Almenar -North Almond -North Alta -North Alvin -North Amelia -North Ames -North Amphlett -North Anderson -North Andover -North Antelope -North Arbour -North Argonne -North Arlington -North Arm -North Ascot -North Ash -North Ashland -North Ashley -North Aspen -North Auburn -North Audley -North Augusta -North Autumn -North Avalon -North Avondale -North B -North Bank -North Barnaby -North Bascom -North Bassett -North Batavia -North Bay -North Bayard -North Bayfield -North Baylor -North Bayou -North Bayshore -North Bayview -North Baywood -North Beacon -North Beeches -North Belcher -North Belfort -North Belgian -North Bella Monte -North Belmont -North Bend -North Benfleet Hall -North Bennet -North Benton -North Bernardo -North Betty -North Beulah -North Big Tree -North Big Trees Park -North Bigelow -North Billerica -North Birkbeck -North Blackfield -North Blaney -North Border -North Boundary -North Bow -North Bowditch -North Bowmanville -North Bragg -North Branch -North Branciforte -North Brandon -North Breach -North Bridge View -North Brigham Hill -North Britton -North Broadgate Town -North Broadway -North Bronte -North Brook -North Brooks -North Bruce -North Brunswick -North Buckingham -North Burgher -North Burke Bradley -North Burling -North Butte -North Butts -North Byron -North C -North California -North Cambridge -North Camden -North Cameron -North Canal -North Cannon -North Canyon -North Capitol -North Carol -North Carolan -North Carolina -North Carpenter -North Carriage -North Cary -North Castle -North Castro -North Cathy -North Cedar -North Center -North Central -North Chanterella -North Chappell -North Chatsworth -North Cheam Priory -North Chesterbrook -North Chestnut -North Chicago -North Circle -North Circular -North Civic -North Claremont -North Clark -North Cleveland -North Clifden -North Clifdon -North Clifton -North Clinton -North Clover -North Cluff -North College -North Columbine -North Columbus -North Comfort -North Common -North Commonwealth -North Conduit -North Coral -North Corporate -North Cottage -North Cottonwood -North Countess -North Country -North Court -North Courtland -North Cove -North Cragmont -North Craig -North Cray -North Creek -North Crescent -North Crest -North Cross -North Croydon -North Crystal Springs -North Cumberland -North Cypress -North D -North Dakota -North Dale -North Dam -North Damen -North Daniels -North Danvers -North Davis Farms -North Dearborn -North Deer -North Delaware -North Desplaines -North Diameter -North Dike -North Dinwiddie -North Dogwood -North Douglas -North Downs -North Dublin Ranch -North Duke -North Dundalk -North Dunton -North Dutton -North Dwyer -North East -North East River -North Eastling -North Eastview -North Echo Lake -North Edge -North Edison -North El Dorado -North El Monte -North Ela -North Eldorado -North Ellsworth -North Elm -North Elmhurst -North Elmwood -North Emerald -North Emerson -North Emory -North End -North Escape -North Estates -North Esther -North Evergreen -North F -North F Bennett -North Fabian -North Fair -North Fair Oaks -North Fairfax Park -North Fairmont -North Falkland -North Falls -North Farm -North Federal -North Ferndale -North Field -North Filbert -North Fillmore -North Fine -North Fish Hatchery -North Fitch Mountain -North Flood -North Folly -North Foothill -North Forcum -North Forest -North Forest Edge -North Fork -North Fork Bennett -North Fort Myer -North Fosket -North Frances -North Frankford -North Franklin -North Freeway -North Fremont -North Front -North Frontage -North Fuel Break -North Funston -North Furry -North G -North Gadsden -North Gail -North Gannon -North Garfield -North Gary -North Gate -North Gates -North Geneva -North Genevieve -North George -North Gertrude -North Gilchrist -North Glebe -North Glenway -North Gogna -North Gold Ridge -North Golden Gate -North Golf Club -North Golfview -North Gower -North Graham -North Granada -North Grand -North Grange -North Granite Hills -North Grant -North Grantham -North Gratton -North Great -North Green -North Greenville -North Greenwood -North Grimes -North Grove -North Grove Hill -North Guard -North Guild -North Haddow -North Hall -North Halls -North Halsted -North Hamilton -North Hamlin -North Hammonds Ferry -North Hancock -North Hangar -North Harbor -North Harbour -North Harriette -North Harrison -North Harry S Truman -North Hart -North Hartley -North Harvard -North Hathaway -North Haven -North Head Scenic -North Heath -North Henry -North Hewitt -North Hickory -North Hicks -North High -North High Rock -North Highbrook -North Highland -North Hilary -North Hildebrand -North Hill -North Hills -North Hillside -North Hillview -North Hinkley -North Hobson -North Holden -North Holt -North Hooper -North Hope -North Hospital -North Hudson -North Hughes -North Humboldt -North Hump -North Hunter -North Huron -North Hutchins -North Hyde -North I -North Idaho -North Ijams -North Indian Boundary -North Inland -North Ione -North Irving -North Island -North Ithaca -North Jack Tone -North Jackson -North Jade -North Jean -North Jefferson -North Jersey -North John -North Johnson -North Jonathan -North K -North Keeble -North Kelly -North Kenmore -North Kennebeck -North Kennedy -North Kennefick -North Kennicott -North Kennison -North Kensico -North Kent -North Kern -North Kiefer -North Kind -North King -North Kingston -North Kirk -North Kitson -North Knoll -North Knollwood -North Knox -North Kolmar -North Krattley -North L -North LaSalle -North Laguna -North Lake -North Lake Shore -North Lakeview -North Lamb -North Lancaster -North Lansdale -North Larrabee -North Larwin -North Lassen -North Laughlin -North Laura Anne -North Laurel -North Leach -North Lear -North Lee -North Leigh -North Lemon -North Lenora -North Leonard -North Lewis Park -North Lexington -North Leyden -North Liberty -North Lillian -North Lincoln -North Linden -North Lingwell -North Linn -North Lively -North Livermore -North Liverpool -North Llewellyn -North Lloyd -North Lockewood -North Locust -North Locust Tree -North Lodge -North Logging -North Loma -North Lonsdale -North Loop -North Los Angeles -North Lucille -North Lycett -North Lydia -North Lynda -North Lynn -North M -North Mac Arthur -North Macarthur -North Mackville -North Mada -North Madeline -North Madison -North Maffei -North Magnolia -North Main -North Malden -North Mallard -North Manchester -North Manley -North Mannheim -North Manor -North Maple -North Marcia -North Margaret -North Margin -North Marine -North Marion -North Market -North Marlton -North Marston -North Marta -North Martingale -North Marwood -North Mary -North Mary Frances -North Mather -North Mathilda -North May -North Mayfair -North Mc Intire -North McCarthy -North McCracken -North McDonnell -North McDowell -North McKinley -North Meacham -North Mead -North Meadow -North Meadows -North Meath -North Merger -North Meridian -North Michael -North Michelle -North Michigan -North Micke Grove -North Miday -North Midland -North Midway -North Military -North Mill -North Mill Creek -North Mills -North Milpitas -North Milton -North Milwaukee -North Mines -North Minnesota -North Mitchell Canyon -North Mittel -North Monarch -North Monroe -North Montello -North Montgomery -North Moore -North Moray -North Morgan -North Morrison -North Mounds -North Mountain -North Mozart -North Munstead -North Murray -North Murrieta -North Myran -North N -North Napa -North Nassano -North Neeley -North New -North New Hope -North Newport -North Nichols -North Nolan -North Norfolk -North North Ripon -North O -North Oak -North Oak Knoll -North Oaks -North Oakwood -North Ocean -North Old Dominion -North Old Hicks -North Olive -North Olympic -North Opal -North Orange -North Orbital -North Orchard -North Oregon -North Orenda -North Orleans -North Oro -North Oxford -North P -North Pacific -North Pacific Av Fron -North Palm -North Palmer -North Parish -North Park -North Park Victoria -North Parkside -North Parkview -North Pastoria -North Patrick -North Patterson -North Patton -North Patuxent -North Payne -North Peak -North Peak Access -North Peardale -North Pearl -North Pearson -North Peatland -North Perimeter -North Perley -North Perryman -North Pershing -North Peter -North Pickett -North Pilgrim -North Pinasco -North Pine -North Pine Grove -North Pine Mountain -North Pinetree -North Pioneer -North Pippin -North Plaza -North Plum Grove -North Plymouth -North Podesta -North Point -North Point Creek -North Pole -North Polo -North Pond -North Pondside -North Pony -North Portal -North Portland -North Potato -North Providence -North Putnam -North Pythian -North Quebec -North Quentin -North Quincy -North Quinn -North Quinsigamond -North Railroad -North Rancho -North Rand -North Randall -North Randolph -North Ravenswood -North Ravine -North Ray -North Rebeiro -North Redwood -North Regatta -North Regent -North Rengstorff -North Rexhame -North Richmond -North Richmond Beach -North Richwood -North Ridge -North Ridge Vista -North Ridgeview -North Ridgewood -North Rio Blanco -North Rio Verde -North Ripley -North Ripon -North Ritz -North River -North Riverside -North Rixey -North Roberta -North Rochester -North Rockridge -North Rocks -North Rodeo Gulch -North Rohlwing -North Rond -North Roper -North Rose -North Rosemore -North Row -North Roy -North Ruff -North Russell -North Ryde -North S -North Sacramento -North Sage -North Salado -North Sally -North San Carlos -North San Joaquin -North San Jose -North San Mateo -North San Pedro -North San Rafael -North San Raymundo -North Sanguinetti -North Santa Cruz -North Scenic -North Schiller -North Schmale -North School -North Schubert -North Sedgwick -North Seminary -North Sequoia -North Serven -North Service -North Shannon -North Shasta -North Shaw -North Sheridan -North Sherman -North Sherwood -North Shetland -North Shoebury -North Shore -North Shoreline -North Sibley -North Side -North Sierra -North Sierra Madre -North Sierra Nevada -North Signal Hill -North Silver Chase -North Silverado -North Sinclair -North Slope -North Snyder -North Somerset -North South -North Sowles -North Spooner -North Spring Creek -North Springer -North Springfield -North Spruce -North Summit -North Sun -North Sunbury -North Sundown -North Sunnyside -North Sunnyvale -North Sunset -North Suttenfield -North Sutter -North Sycamore -North Sycamore Slough -North Taaffe -North Tantau -North Taylor -North Taylor Ranch -North Tazewell -North Temple -North Tenter -North Teria -North Tessier -North Texas -North Thatcher -North Thompson -North Thornton -North Tilden -North Tolman -North Totten -North Tower -North Town -North Tranquility -North Tretheway -North Truro -North Tulip -North Tully -North Tulsa -North Tuxedo -North Union -North Upland -North Upton -North Utah -North Vail -North Vale -North Valensin -North Valley -North Van Buren -North Van Dorn -North Van Horn -North Vancina -North Vasco -North Veach -North Ventura -North Vernal -North Vernon -North View -North Vignolo -North Village -North Vine -North Viola -North Virginia -North Visalia -North Wabash -North Wacker -North Wagner -North Wakefield -North Walker -North Wall -North Wallace -North Walnut -North Walnut Branch -North Walnut Grove -North Ward -North Warren -North Washington -North Water -North Watford -North Watkinson -North Watts -North Waukegan -North Webster -North Wells -North West -North West Arm -North West Hills -North West Main -North Westchester -North Western -North Westside -North Wharf -North Whisman -North White -North White Pine -North Wiget -North Wild Grape -North Wilke -North Willard -North William -North Williams -North Williamson -North Willow -North Wilma -North Wilton -North Winchester -North Windemere -North Windsor -North Winnifred -North Winston -North Winthrop -North Wisconsin -North Wolcott -North Wolf -North Wolfe -North Wood -North Wood Dale -North Woodford -North Woodrow -North Woods -North Woodstock -North Woolwich -North Worcester -North Wright -North York -North de Anza -North del Puerto -North el Camino -North el Circulo -North el Dorado -North el Macero -North la Cresenda -NorthField -Northall -Northallerton -Northam -Northampton -Northanger -Northanna -Northaven -Northbank -Northbay -Northboro -Northborough -Northbourne -Northbrae -Northbriar -Northbridge -Northbrook -Northbrook Court -Northbrooke -Northburgh -Northbury -Northchurch -Northcliff -Northcliffe -Northcoast -Northcoate -Northcombe -Northcote -Northcott -Northcourt -Northcreek -Northcrest -Northcroft -Northcross -Northdale -Northdene -Northdown -Northdowns -Northeast -Northeast Albertson -Northeast Alder -Northeast Alder Crest -Northeast Alderwood -Northeast Ambleside -Northeast Ames Lake -Northeast Anderson -Northeast Apple Cove -Northeast Arcade -Northeast Arness -Northeast Arrowhead -Northeast Avalon -Northeast Baker Hill -Northeast Beach Crest -Northeast Beachwood -Northeast Beadonhall -Northeast Beck -Northeast Belle Hill -Northeast Berry -Northeast Big Rock -Northeast Bill Point -Northeast Birch -Northeast Bird -Northeast Blackster -Northeast Blakeley -Northeast Boat -Northeast Brackenwood -Northeast Brooklyn -Northeast Brownell -Northeast Burns -Northeast Byron -Northeast California -Northeast Campus -Northeast Carpenter -Northeast Carriage -Northeast Casey -Northeast Cherry -Northeast Clare -Northeast Comegys -Northeast Coral -Northeast County Park -Northeast Coyote -Northeast Crescent -Northeast D -Northeast Daphne -Northeast Darby -Northeast Darden -Northeast Day -Northeast Delaney -Northeast Dingley -Northeast Discovery -Northeast Dogwood -Northeast Dorothy -Northeast Douglas -Northeast Eaton -Northeast Endicott -Northeast Erin -Northeast Evergreen -Northeast Ewing -Northeast Federal -Northeast Felicity -Northeast Fenton -Northeast Fir -Northeast Georgia -Northeast Gilman -Northeast Gisle -Northeast Glavin -Northeast Goodfellow -Northeast Gordon -Northeast Grizdale -Northeast Halls Hill -Northeast Hansen -Northeast Harris -Northeast Harrison -Northeast Hawthorne -Northeast Hidden Cove -Northeast High -Northeast High School -Northeast Hillside -Northeast Hilltop -Northeast Hollyhills -Northeast Huckleberry -Northeast Husky -Northeast Iris -Northeast Iverson -Northeast Jade -Northeast Jewell -Northeast John -Northeast Johnson -Northeast Jonquil -Northeast Joshua Tree -Northeast Juanita -Northeast Julep -Northeast Juniper -Northeast Karmenn -Northeast Katsura -Northeast Kelsey -Northeast Kenilworth -Northeast Kennedy -Northeast Kenwood -Northeast Keswick -Northeast Killian -Northeast Kitsap -Northeast Kiwi -Northeast Klabo -Northeast Knight -Northeast Koura -Northeast Lacey -Northeast Lafayette -Northeast Lake Joy -Northeast Larchmount -Northeast Laurel Wood -Northeast Laurelcrest -Northeast Leprechaun -Northeast Lofgren -Northeast Logan -Northeast Loughrey -Northeast Lovgren -Northeast Mabrey -Northeast Magnolia -Northeast Main -Northeast Maine -Northeast Manor -Northeast Maple -Northeast Marine View -Northeast Marion -Northeast Marketplace -Northeast Mary Lou -Northeast McRedmond -Northeast Meadowmeer -Northeast Meigs -Northeast Meyers -Northeast Michelle -Northeast Midway -Northeast Miller -Northeast Monroe -Northeast Monsaas -Northeast Morgan -Northeast Morning -Northeast Moses -Northeast Mulberry -Northeast Munson -Northeast Murden Cove -Northeast NOAA -Northeast Noble -Northeast Northstar -Northeast Norton -Northeast Ocean -Northeast Oddfellows -Northeast Ohio -Northeast Olive -Northeast Oregon -Northeast Pacific -Northeast Park -Northeast Paulanna -Northeast Penrith -Northeast Phillip -Northeast Pine -Northeast Point View -Northeast Points -Northeast Preston -Northeast Puget -Northeast Puget Bluff -Northeast Quail Creek -Northeast Raccoon -Northeast Radford -Northeast Rasperry -Northeast Ravenna -Northeast Redmond -Northeast Reny -Northeast Richardson -Northeast Ring -Northeast Roberts -Northeast Roney -Northeast Rotsten -Northeast Rupard -Northeast Sasquatch -Northeast Seaborn -Northeast Seaview -Northeast Shore -Northeast South Beach -Northeast South Villa -Northeast Sprayfalls -Northeast Springwood -Northeast Spruce -Northeast Sunrose -Northeast Sunset -Northeast Tani Creek -Northeast Theresa -Northeast Tolt Hill -Northeast Torvanger -Northeast Tulin -Northeast Union Hill -Northeast Valley -Northeast Victorian -Northeast Viewcrest -Northeast Virginia -Northeast Warabi -Northeast Wardwell -Northeast Watch Hill -Northeast White Horse -Northeast Wiggins -Northeast Windermere -Northeast Wing Point -Northeast Winthers -Northeast Woldmere -Northeast Wolmere -Northeast Woodinville -Northeast Wyant -Northeast Yaquina -Northeastern -Northedge -Northend -Northenden -Northentry -Northerly -Northern -Northern Dancer -Northern Fences -Northern Lakes -Northern Lights -Northern Neck -Northern Perimeter -Northern Rivers -Northern Service -Northern Spruce -Northern Spy -Northern Woods -Northey -Northfalls -Northfield -Northfleet -Northfleet Green -Northforde -Northfront -Northgate -Northgate Ducks Hill -Northglen -Northgrove -Northhampton -Northholt -Northhome -Northhurst -Northiam -Northill -Northington -Northlake -Northland -Northlands -Northlawn -Northlea -Northleigh -Northmark -Northmead -Northminster -Northmont -Northmoor -Northoak -Northolm -Northolme -Northolt -Northolt Islip Manor -Northolt Ruislip -Northome -Northover Shroffold -Northplain -Northpoint -Northport -Northridge -Northrop -Northrup -Northshire -Northshore -Northside -Northstar -Northstead -Northstream -Northtown -Northumberland -Northumbria -Northup -Northurst -Northvale -Northview -Northview Park -Northville -Northward -Northway -Northweald -Northwell -Northwest -Northwest Blue Ridge -Northwest Boulder Way -Northwest Bright -Northwest Canal -Northwest Culbertson -Northwest Datewood -Northwest Dogwood -Northwest Elford -Northwest Esplanade -Northwest Everwood -Northwest Far Country -Northwest Firwood -Northwest Gilman -Northwest Golden -Northwest Holly -Northwest Inneswood -Northwest James Bush -Northwest Juniper -Northwest Locust -Northwest Mall -Northwest Maple -Northwest Market -Northwest Montreux -Northwest North Beach -Northwest Northwood -Northwest Pacific Elm -Northwest Pebble -Northwest Point -Northwest Puget -Northwest Richwood -Northwest Ridgefield -Northwest Sammamish -Northwest Spring Fork -Northwest Talus -Northwestern -Northwich -Northwick -Northwick Park -Northwind -Northwinds -Northwing -Northwold -Northwood -Northwood Estates -Northwoods -Northwyn -Nortoft -Norton -Norton Creek -Norton Glen -Norton Green -Norton Heath -Nortonia -Nortons -Nortonville -Norumbega -Norval -Norvale -Norvegia -Norvell -Norvella -Norvic -Norview -Norwalk -Norway -Norway Pine -Norwell -Norwest -Norwich -Norwood -Norwood Green -Norwood High -Norwood Hill -Norwood Park -Norwood Square -Norwoods Pond -Nosband -Nosecchi -Nosenzo Pond -Nostaw -Noster -Nostrand -Nostrands -Notabene -Notary -Notch -Notch Brook -Notch Hill -Notch Park -Notchcroft -Notchwood -Note -Notely -Notes -Noteware -Nothing -Notley -Notown -Notre Dame -Notson -Nott -Nottage -Nottaway -Notthumberland -Nottidge -Notting Barn -Notting Hill -Nottingdale -Nottingham -Nottinghill -Nottoway -Nottoway River -Notts -Nottwood -Notus -Nouds -Noumea -Nounsley -Nourse -Nova -Nova Scotia -Novak -Novar -Novara -Novato -Novelda -Novell -Novello -November -Novo -Now -Nowak -Nowell -Nowell Farme -Nower -Nowers -Nowill -Nowland -Nowra -Nowranie -Noyana -Noye -Noyes -Noyna -Noyo -Nsp -Nuala -Nuber -Nubian -Nuclear -Nuestra -Nueva -Nuevo -Nuffield -Nugent -Nugget -Nugget Canyon -Nulang -Nulgarra -Null -Nulla -Nulla Nulla -Nullaburra -Nullawarra -Nulty -Numa -Numantia -Number One First -Numes -Nunan -Nunatak -Nunda -Nundah -Nundle -Nuneaton -Nuneham -Nunes -Nunes Fire -Nungeroo -Nunhead -Nunhide -Nunington -Nunn -Nunnery -Nunnink -Nunroyd -Nunroyd Dale -Nuns -Nuns Canyon -Nunsbury -Nunsfield -Nunthorpe -Nup End -Nupton -Nuptown -Nureyev -Nurge -Nurla -Nurmi -Nurney -Nurragi -Nurran -Nurse Slough -Nurseries -Nursery -Nursery Hill -Nursery Mount -Nurserymans -Nurses -Nurstead -Nurstead Church -Nut -Nut Island -Nut Plains -Nut Tree -Nutberry -Nutbourne -Nutbrook -Nutcombe -Nutcraker -Nutcroft -Nutfield -Nutfield Marsh -Nutgrove -Nutham -Nuthatch -Nuthatcher -Nuthurst -Nutley -Nutmeg -Nutria -Nutshell -Nutswamp -Nutt -Nuttall -Nutter -Nutting -Nuttings -Nuttman -Nutty -Nutty Hill -Nutwell -Nutwell Sudley -Nutwold -Nutwood -Nuvern -Nuwarra -Nuxley -Ny -Nyac -Nyack -Nyan -Nyanga -Nyanza -Nyara -Nydam -Nydeggar -Nye -Nyes -Nyetimber -Nygaard -Nyinya -Nyla -Nylan -Nyland -Nylands -Nyletta -Nymagee -Nymboida -Nymph -Nynehead -Nyngan -Nyora -Nyra -Nyrang -Nystrom -O Brien -O Brine -O Connel -O Connell -O Connor -O Connors -O Day -O Dell -O Donnell -O Fernwood -O Gorman -O Hanneson -O Hara -O Hare -O Harte -O Hatch -O Keefe -O Leary -O Loughlin -O Malley -O Moore -O Neil -O Niell -O Rourke -O Shaughnessy -O View -Oad -Oadby -Oahu -Oak -Oak Arbor -Oak Bank -Oak Bay -Oak Beach -Oak Bend -Oak Bluff -Oak Branch -Oak Bridge -Oak Brook -Oak Brook Club -Oak Brook Hills -Oak Brook Mall -Oak Bucket -Oak Canyon -Oak Center -Oak Chase -Oak Cliff -Oak Cluster -Oak Creek -Oak Crest -Oak Dale -Oak End -Oak Estates -Oak Farm -Oak Farms -Oak Flat -Oak Forest -Oak Front -Oak Gate -Oak Glen -Oak Glenn -Oak Grange -Oak Grove -Oak Hall -Oak Harbour -Oak Haven -Oak Heights -Oak Hill -Oak Hills -Oak Hollow -Oak Island -Oak Ivy -Oak Knoll -Oak Lake -Oak Lakes -Oak Lea -Oak Leaf -Oak Leather -Oak Ledge -Oak Lodge -Oak Manor -Oak Manor Fire -Oak Marr -Oak Meadow -Oak Meadows -Oak Mesa -Oak Mill -Oak Mount -Oak Mountain -Oak Neck -Oak Neck Beach -Oak Park -Oak Park Village -Oak Plaza -Oak Point -Oak Pond -Oak Rail -Oak Ridge -Oak Rim -Oak Rock -Oak Run -Oak Savannah -Oak Shade -Oak Shades -Oak Shadow -Oak Shadows -Oak Shore -Oak Shores -Oak Spring -Oak Springs -Oak Square -Oak Terrace -Oak Trail -Oak Trails -Oak Tree -Oak Tree Farm -Oak Vale -Oak Valley -Oak View -Oak Villa -Oak Vista -Oak Vue -Oak Werth -Oak Wood -OakVille -Oakapple -Oakbank -Oakborne -Oakborough -Oakbridge -Oakbrook -Oakbrook Estates -Oakbrooke -Oakcliffe -Oakcreek -Oakcrest -Oakcroft -Oakdale -Oakdale Estates -Oakdale Farm -Oakdale Ranch -Oakdell -Oakden -Oakdene -Oaken -Oaken Bank -Oakenbottom -Oakenclough -Oakencroft -Oakenden -Oakengrange -Oakengrove -Oakenshaw -Oakenshield -Oaker -Oakes -Oakes Field Service -Oakey -Oakfern -Oakfield -Oakfield Court -Oakfield park -Oakfields -Oakfold -Oakford -Oakglen -Oakgreen -Oakgrove -Oakhall -Oakham -Oakhampton -Oakhanger -Oakhaven -Oakhill -Oakhollow -Oakhouse -Oakhurst -Oakington -Oakington Manor -Oakknoll -Oakland -Oakland Bay -Oakland Beach -Oakland Hills -Oakland Mills -Oakland Park -Oakland School -Oakland Terrace -Oaklands -Oaklands Park -Oaklandvale -Oaklane -Oaklawn -Oaklea -Oakleaf -Oakledge -Oakleigh -Oakleigh Park -Oakley -Oakley Green -Oakley SquarePlender -Oakline -Oaklyn -Oakman -Oakmead -Oakmead Village -Oakmeade -Oakmede -Oakmere -Oakmill -Oakmont -Oakmont Plaza -Oakmoor -Oakmore -Oakover -Oakpointe -Oakport -Oakraider -Oakrest -Oakridge -Oakroyal -Oakroyd -Oaks -Oaks Hunt -Oaksbury -Oaksford -Oakshade -Oakshaw -Oakshire -Oakshore -Oakside -Oakstone -Oakstwain -Oakthorpe -Oakton -Oakton Glen -Oakton Hills -Oakton Knoll -Oakton Mill -Oakton Plantation -Oakton Terrace -Oaktree -Oakura -Oakvale -Oakview -Oakview Gardens -Oakville -Oakville Grade -Oakville Ridge -Oakvue -Oakway -Oakways -Oakwel -Oakwell -Oakwild -Oakwilde -Oakwood -Oakwood Grange -Oakwood Hollow -Oakwood Knoll -Oakwood Manor -Oakwood Park -Oakworth -Oar -Oare -Oarfield -Oasis -Oast -Oast House -Oasthouse -Oat -Oat Chase -Oat Hill -Oat Hill Fire -Oates -Oatfield -Oathall -Oatland -Oatlands -Oatley -Oatley Park -Oatwind -Obal -Obama -Oban -Obbs -Obed -Obeline -Ober -Oberlin -Oberlon -Obermueller -Oberon -Oberstein -Obert -Obertz -Oberweis -Obery -Obispo -Obrad -Obrecht -Obrien -Obry -Observation -Observatory -Observer -Obsidian -Ocala -Ocatillo -Occam -Occident -Occidental -Occidintal -Occoquan -Occoquan Club -Occoquan Forest -Occoquan Oaks -Occupation -Ocean -Ocean Crest -Ocean Front -Ocean Grove -Ocean Harbor -Ocean Hill -Ocean Pier -Ocean Pines -Ocean Point -Ocean Shore -Ocean View -Oceana -Oceania -Oceanic -Oceanlea -Oceanside -Oceanus -Oceanview -Ocelot -Oceola -Ocho Milpas -Ocho Rios -Ochre -Ochs -Ochse -Ockelford -Ockenden -Ockendon -Ockford -Ockham -Ockley -Ockway -Ockwells -Oconnell -Oconnor -Oconto -Octagon -Octagonal -Octavia -Octavius -October -October Hill -Odalming -Odanah -Odard -Oday -Odd Fellows Park -Oddesey -Oddfellow -Oddstad -Oddy -Ode -Odea -Odell -Odell Morten -Oden -Odencroft -Odensos -Odenton -Odeon Shaftesbury -Oder -Odessa -Odette -Odger -Odie -Odiham -Odiham High -Odin -Odlum -Odney -Odom -Odonnell -Odriks -Odysseus -Odyssey -Oehme -Oelke -Oelsner -Oelvig -Oerter -Oeste -Ofallon -Ofarrell -Off Boundry -Off Central -Off Cherry -Off Dean -Off Ella -Off Groton School -Off Grove -Off Harrington -Off Indian Pond -Off Lake -Off Musterfield -Off Peters -Off Pond -Off Second Brook -Off Snow -Off Summer -Off Tarkiln -Off Upper Manor -Off Westford -Offa -Offaly -Offas -Offenbach -Offenham -Offens -Offerton -Offham -Office -Office Park -Officers -Officers Club -Official -Offley -Offner -Offord -Offut -Offutt -Ofria -Ogallah -Ogallala -Ogallala Warpath -Ogard -Ogburn -Ogden -Ogden Falls -Ogden Sannazor -Ogier -Ogilby -Ogilvie -Ogilvy -Ogla -Oglander -Ogle -Oglesby -Oglethorpe -Ogleton -Ogwen -Ohaire -Ohanneson -Ohara -Ohare -Oharron -Ohde -Ohio -Ohio River -Ohlfsen -Ohlone -Ohlones -Ohlson -Ohm -Ohms -Oil Company -Oil Mill -Oitmann -Ojibway -Ojibway Park -Oka -Okala -Okanogan -Okeburn -Okeefe -Okeford -Okehurst -Okemo Ridge -Okeover -Oketo -Okinawa -Okla -Oklahoma -Okley -Okst -Olaf -Oland -Olando -Olanyian -Olaughlin -Olchasky -Olcott -Old -Old Acre -Old Acres -Old Adobe -Old Albany Post -Old Alexandria Ferry -Old Allentown -Old Almaden -Old Altos -Old Amboy -Old Amersham -Old Amory -Old Andover -Old Annapolis -Old Annapolis Neck -Old Antelope -Old Archer -Old Ardmore -Old Army -Old Arrington -Old Ash -Old Ashford -Old Auburn -Old Audubon -Old Ayer -Old Bacon Race -Old Badgins -Old Baltimore -Old Bank -Old Bare Hill -Old Barn -Old Barnaby -Old Barns -Old Barrenjoey -Old Barrington -Old Bartlett -Old Barton -Old Bass Lake -Old Bath -Old Bathurst -Old Battery -Old Battle -Old Bavaria -Old Bay -Old Bay Flat -Old Bay Ridge -Old Bay Shore -Old Bayberry -Old Bayside -Old Beach -Old Beach Glen -Old Beaconsfield -Old Bear Creek -Old Beaver Brook -Old Bedford -Old Beecroft -Old Bell -Old Benfield -Old Bennett Ridge -Old Bergen -Old Bernal -Old Berowra -Old Berry -Old Bethnal Green -Old Bethpage -Old Big Basin -Old Big Trees -Old Billerica -Old Birch -Old Birdsville -Old Birley -Old Bisley -Old Bix -Old Blackhawk -Old Blacksmith -Old Blackstone -Old Blacktop -Old Bloomfield -Old Blossom Hill -Old Bluff -Old Bolton -Old Bond -Old Bond Mill -Old Bonifant -Old Boonton -Old Boston -Old Boston Post -Old Bracknell -Old Branch -Old Brandy Hill -Old Brandywine -Old Breakneck Hill -Old Bren -Old Brentford -Old Brewery -Old Briar -Old Brick -Old Brick Yard -Old Brickfield -Old Bridge -Old Bridge Matawan -Old Britton -Old Brompton -Old Brook -Old Brooks -Old Browns -Old Browns Valley -Old Bucklodge -Old Buffalo Grove -Old Burke Lake -Old Burley -Old Burlington -Old Bury Lodge -Old Bush -Old Cabin -Old Calaveras -Old Calvert -Old Calvine -Old Camp -Old Camp Meade -Old Campbell -Old Campus -Old Canal -Old Cannon -Old Canterbury -Old Canyon -Old Cape Saint Claire -Old Capell Valley -Old Carriage -Old Carroll -Old Cart -Old Cart Path -Old Castle -Old Castle Hill -Old Causeway -Old Cazadero -Old Cañada -Old Cedar -Old Cedar Lake -Old Cedar Swamp -Old Cemetery -Old Center -Old Central -Old Centre -Old Centreville -Old Chain Bridge -Old Changebridge -Old Channel -Old Chantry -Old Chapel -Old Charlton -Old Charter -Old Chatham -Old Checker -Old Cheesequake -Old Cherry -Old Cherry Hill -Old Chertsey -Old Chester -Old Chesterbrook -Old Chestnut -Old Chestnut Ridge -Old Chicago -Old Childrens Home -Old Chimney -Old Chinatown -Old Chittenden -Old Church -Old Cistern -Old City -Old Claygate -Old Clifton -Old Clinton -Old Clough -Old Club -Old Clubhouse -Old Coach -Old Coaling -Old Coast -Old Colchester -Old College -Old Collington -Old Colonial -Old Colony -Old Colony Cove -Old Columbia -Old Commack -Old Common -Old Compton -Old Conant -Old Concord -Old Contemptibles -Old Corona -Old Cote -Old Country -Old County -Old Court -Old Court House -Old Courthouse -Old Cove -Old Cow Pasture -Old Crabtree -Old Crain -Old Crawley -Old Creek -Old Crescent -Old Cross -Old Crossing -Old Crow Canyon -Old Crown -Old Cumberland -Old Cutter Mill -Old Dairy -Old Dairy Farm -Old Dartford -Old Davidsonville -Old Davis -Old Davis Ford -Old Deale -Old Dean -Old Dee -Old Deer Field -Old Deerfield -Old Delaney -Old Denville -Old Derby -Old Devonshire -Old Diamond -Old Diamond Hill -Old Diehl -Old Dobbin -Old Dock -Old Doctors -Old Dominion -Old Donaldson -Old Dorsey -Old Dorsey Run -Old Dory -Old Douglas -Old Dover -Old Dublin -Old Duff -Old Duncan Grade -Old Dundee -Old Dunstable -Old Dutch -Old Eagle Rock -Old Earleigh Heights -Old East -Old East Neck -Old Eaton -Old Edge -Old El Pueblo -Old Electric -Old Elland -Old Elm -Old Elmdale -Old Elstead -Old England -Old English -Old Enterprise -Old Eola -Old Epping Forest -Old Epsom -Old Esher -Old Essex -Old Estate -Old Evans -Old Excelsior -Old Faceful -Old Fairview -Old Faith -Old Falls -Old Farleigh -Old Farm -Old Farm Bridge -Old Farmers -Old Farmingdale -Old Farms -Old Farnham -Old Fence -Old Ferry -Old Ferry Slip -Old Field -Old Field Point -Old Fisher -Old Fishery -Old Flanders -Old Fleet -Old Fletchertown -Old Fold -Old Foothill -Old Ford -Old Forest -Old Forestville -Old Forge -Old Forge Hill -Old Fort -Old Fort Hills -Old Fort Smallwood -Old Foss Valley -Old Foundry -Old Framingham -Old Franconia -Old Frank Tippett -Old Franklin -Old Franklin Lake -Old Frederick -Old Freeman -Old French Horn -Old Frensham -Old Fulton -Old Furnace Colony -Old Gallows -Old Game Preserve -Old Garden -Old Garrison -Old Gary -Old Gate -Old Georges -Old Georgetown -Old German -Old Gibbons -Old Gilroy -Old Glen -Old Glenfield -Old Glenhaven -Old Glenn Dale -Old Glenview -Old Glory -Old Gloucester -Old Gold Mine -Old Goodenow -Old Gormely -Old Grafton -Old Graham Hill -Old Grand -Old Great -Old Great North -Old Green -Old Green Bay -Old Green Valley -Old Greendale -Old Greenland Beach -Old Greenville -Old Greenwich -Old Greenwood -Old Groton -Old Grove -Old Guildford -Old Gunpowder -Old Hadlow -Old Half Day -Old Hall -Old Hall Mill -Old Ham -Old Hammonds Ferry -Old Harbor -Old Harpenden -Old Hart -Old Harter -Old Harvard -Old Haslemere -Old Haswell Park -Old Haul -Old Hauppauge -Old Hawkesbury -Old Hawthorne -Old Hazel Dell -Old Heath -Old Heights -Old Herald Harbor -Old Herns -Old Hertford -Old Hey Beck -Old Heyes -Old Hickory -Old Hicks -Old Higgins -Old High -Old High Plain -Old Highbridge -Old Highgate -Old Hill -Old Hillary -Old Hills -Old Hillside -Old Hobart -Old Hoboken -Old Hockley -Old Hollow -Old Holly -Old Home -Old Homesdale -Old Homestead -Old Hommocks -Old Hook -Old Hoop Pole -Old Hopkington Spring -Old Hopkins -Old Horner -Old Horns -Old Horsham -Old House -Old Howletts -Old Hudson -Old Hull -Old Hundred -Old Hunt -Old Hunt Club -Old Ice House -Old Illawarra -Old Indian -Old Indian Head -Old Indianhead -Old Institute -Old Ironsides -Old Ively -Old Jackson -Old Jacksonville -Old Jamaica -Old Jamaicia -Old James -Old Japanese -Old Jericho Park -Old Jerome -Old Jerusalem -Old Jessup -Old Jonas Hill -Old Jones -Old Jones Gulch -Old Kahns -Old Keene Mill -Old Kellogg -Old Kennels -Old Kensico -Old Kent -Old Kenton -Old Kenville -Old Ketchum -Old Killam Hill -Old Kiln -Old Kinderhook -Old King -Old Kings -Old Kingsbridge -Old Kingston -Old Kirk -Old Kirker Pass -Old Knebworth -Old Knollwood -Old Kurrajong -Old Lafox -Old Lake -Old Lake End -Old Lake Herman -Old Lakes -Old Lakeville -Old Lancaster -Old Landing -Old Landover -Old Lansdowne -Old Lantern -Old Largo -Old Las Palmas -Old Laurel -Old Lawley Toll -Old Leary -Old Lee -Old Leigh -Old Lemont -Old Lenham -Old Leominister -Old Leonardtown -Old Leumeah -Old Lexington -Old Liberty -Old Library -Old Lincoln -Old Line -Old Linslade -Old Litenfield -Old Litten -Old Littleton -Old Liverpool -Old Livorna -Old Locust -Old Lodge -Old Log -Old Logging -Old London -Old Long Lake -Old Lottsford -Old Lowell -Old Lunenburg -Old Lyme -Old Mac Donald -Old Macdonald -Old Madrone -Old Magothy Bridge -Old Maidstone -Old Main -Old Malden -Old Maldon -Old Mamaroneck -Old Manchester -Old Manor -Old Mansion -Old Maple -Old Marbury -Old Market -Old Marlboro -Old Marsh -Old Marsh Hill -Old Marshall Hall -Old Maryland -Old Massachusetts -Old Matawan -Old Mayo -Old Mazda Brook -Old McHenry -Old McLean Village -Old Mead -Old Meadow -Old Medway -Old Meeting House -Old Meetinghouse -Old Mendon -Old Merlins -Old Merrimac -Old Merrow -Old Middlesex -Old Middletown -Old Mill -Old Mill Bottom -Old Mill Grove -Old Mill Pond -Old Mill Swamp -Old Millbury -Old Millstone -Old Millville -Old Mine -Old Mitchellville -Old Moat -Old Montague -Old Monte Rio -Old Monterey -Old Montgomery -Old Moor -Old Mori -Old Morton -Old Moss -Old Mount -Old Mount Skirgo -Old Mount Vernon -Old Mountain -Old Mountain View -Old Mouth -Old Mud -Old Muddy Creek -Old Muirkirk -Old Musket -Old Mystic -Old Nahant -Old Nans -Old Napa -Old Naperville -Old Nasonville -Old Nazeing -Old Neck -Old Nepperhan -Old New -Old New Bridge -Old New Brunswick -Old New Utrecht -Old Newbridge -Old Newland -Old Nichol -Old Nike Missle Site -Old North -Old North Church -Old North Main -Old Northern -Old Northfield -Old Northport -Old Nourse -Old Nutley -Old Oak -Old Oak Common -Old Oak Creek -Old Oaken Bucket -Old Oaks -Old Ocean -Old Odenton -Old Odiham -Old Orangeburg -Old Orchard -Old Otford -Old Otter Lake -Old Out -Old Ox -Old Oxbow -Old Oxford -Old Pacheco Pass -Old Page -Old Page Mill -Old Palace -Old Palatine -Old Palisade -Old Palmer -Old Paradise -Old Paris -Old Parish -Old Park -Old Parkbury -Old Parker -Old Parrin -Old Parsippany -Old Parvis -Old Pascack -Old Pasture -Old Pattens -Old Patterson Pass -Old Pear Tree -Old Pearson -Old Peartree -Old Pelhem -Old Pennington -Old Penzance -Old Perry -Old Petaluma Hill -Old Pewterspear -Old Philadelphia -Old Pickard -Old Piedmont -Old Pilkington -Old Pillings Pond -Old Pine -Old Piscataway -Old Pitt Town -Old Pittwater -Old Placerville -Old Plain -Old Plains -Old Plank -Old Planters -Old Pleasant -Old Plum Grove -Old Plum Point -Old Plymouth -Old Point -Old Pole -Old Pond -Old Porter -Old Portland -Old Portsmouth -Old Post -Old Post Office -Old Potbridge -Old Pottery -Old Pound -Old Powerhouse -Old Pratt -Old Princehanes -Old Princeton -Old Priory -Old Prospect -Old Prospect Hill -Old Providence -Old Public -Old Pye -Old Quarry -Old Quarterfield -Old Quebec -Old Queen -Old Quincy -Old Railroad Grade -Old Railroad Grade Fr -Old Ranch -Old Ranch Estates -Old Rancheria -Old Rand -Old Randolph -Old Rangeway -Old Raritan -Old Razorback -Old Reading -Old Rectory -Old Redmond -Old Redstone -Old Redwood -Old Regent -Old Reigate -Old Renwick -Old Reserve -Old Reservoir -Old Reston -Old Richards -Old Richardson -Old Ridge -Old Ridge Path -Old Rifle Camp -Old Right -Old Ritchie -Old Riva -Old River -Old Riverside -Old Riverview -Old Roberts -Old Rock Meadow -Old Rockaway -Old Rockbridge -Old Rockford -Old Rockland -Old Rockport -Old Rogers -Old Rolling -Old Rondo -Old Roxbury -Old Rubbly -Old Ruislip -Old Ruland -Old Run -Old Rutherford -Old Ryan -Old Saint Charles -Old Salem -Old Salisbury -Old Samuel -Old San Francisco -Old San Jose Turnpike -Old San Pablo Dam -Old Sand -Old Sand Creek -Old Sandy Pond -Old Sandy Spring -Old Sanford -Old Santa Rita -Old Saw Mill -Old Saw Mill River -Old Sawmill -Old Sax -Old Sayles Hill -Old Scaggsville -Old Schaumburg -Old School -Old School House -Old Schoolhouse -Old Seacoal -Old Searingtown -Old Settlers -Old Seven Locks -Old Shade -Old Shady Oak -Old Shawsheen -Old Shelter Rock -Old Shepard -Old Shipyard -Old Shire -Old Shirley -Old Shore -Old Short Hills -Old Siler Logging -Old Silver Hill -Old Skaggs Springs -Old Skokie Valley -Old Slade -Old Sleepy Hollow -Old Sleigh Hill -Old Smalleytown -Old Smith -Old Smithfield -Old Smiths -Old Smithy -Old Snakey -Old Sneech Pond -Old Soar -Old Soda Springs -Old Solomons Island -Old Somerset -Old Sonoma -Old Soper -Old South -Old South Head -Old South Highland -Old South Lambeth -Old South Main -Old South River -Old Southend -Old Spanish -Old Sprain -Old Spring -Old Springfield -Old Spye -Old Sudbury -Old Sudley -Old Sugar -Old Suisun -Old Suisun Knoxville -Old Sulphur Spring -Old Summer -Old Summit -Old Surey -Old Surrenden Manor -Old Sutton -Old Sydney -Old Tamarack -Old Tappan -Old Taren Point -Old Tarrytown -Old Taunton -Old Tavern -Old Telegraph -Old Temple Hills -Old Terrace -Old Tester -Old Thieves -Old Timber -Old Timbers -Old Tobey Garden -Old Toll Bridge -Old Tolson Mill -Old Topsfield -Old Tote -Old Tovil -Old Tower -Old Town -Old Towne -Old Townline -Old Trace -Old Track -Old Trail -Old Tree -Old Triangle -Old Trull -Old Tully -Old Tunnel -Old Turkey Point -Old Turnpike -Old Tye -Old Tyler -Old Tyngsboro -Old Up Yonder -Old Upton -Old Uxbridge -Old Vallecitos -Old Valley -Old Vee Fire -Old Vic Theatre -Old Vicarage -Old Village -Old Vine -Old Vineyard -Old Waddling -Old Wagon -Old Walker Mill -Old Wallgrove -Old Wallum Lake -Old Walnut -Old Walt Whitman -Old Wapping -Old Ward -Old Warm Springs -Old Warrington -Old Washington -Old Water Oak Point -Old Waterford -Old Waterloo -Old Watford -Old Watling -Old Waugh Chapel -Old Webster -Old Weiland -Old Well -Old Wellington -Old West -Old West Center -Old West Central -Old West Elm -Old West Julian -Old West Main -Old West Mt Pleasant -Old West Wrentham -Old Westboro -Old Westbury -Old Western -Old Westford -Old Weston -Old Wheatley -Old Whetsted -Old Whinchester -Old White Bear -Old White Plains -Old White Rock -Old Whitins -Old Whitley Wood -Old Wickford -Old Wickham -Old Wickhurst -Old Wildwood -Old Willard -Old Willis -Old Willow -Old Willows -Old Wilmot -Old Winchester -Old Winchester Hill -Old Windsor -Old Winery -Old Winkle Point -Old Winter -Old Woking -Old Wokingham -Old Wolf -Old Wolomolopoag -Old Womans Creek -Old Wood -Old Woods -Old Woodstock -Old Wool -Old Woolwich -Old Woosehill -Old Worcester -Old Yates Ford -Old Yerba Buena -Old York -Old del Monte -Old llandilo -OldField -Oldaker -Oldarker -Oldberry -Oldborough -Oldbridge -Oldbury -Oldcastle -Oldchurch -Olddale -Olde -Olde Ballardvale -Olde Carriage -Olde Coach -Olde Colony -Olde Crafts -Olde English -Olde Farm -Olde Gatehouse -Olde Greenhouse -Olde Half Day -Olde Hickory -Olde Ivey -Olde Kent -Olde Lantern -Olde Lyme -Olde Meeting House -Olde Mill -Olde Pasture -Olde Port -Olde Salem -Olde Surrey -Olde Towne -Olde Village -Olde Woods -Olden -Older Creek -Oldershaw -Oldert -Oldewood -Oldfield -Oldfields -Oldham -Oldhill -Oldhouse -Oldis -Oldknow -Oldlands -Oldmill -Oldmoor -Oldridge -Olds -Olds Park -Oldsandy Hollow -Oldstead -Oldtown -Oldway -Oldwood -Oldwoods -Ole Dirt -Ole Farm -Ole Tree -Olea -Olean -Oleander -Olearia -Oleary -Olema -Olema Bolinas -Olen -Olentangy -Olesen -Olf Fold -Olga -Olima -Olin -Olinda -Olinger -Olinville -Oliphant -Oliva -Olivant -Olivas -Olive -Olive Branch -Olive Canyon -Olive Grove -Olive Hill -Olive Lee -Olive Ranch -Olive School -Olive Shapley -Olive Spring -Olive Tree -Olivebranch -Olivegate -Oliveleaf -Oliver -Oliver Cromwell -Oliver Swain -Oliver Wentworth -Olivera -Olivers -Olivers Shop -Oliveswood -Olivet -Olivetree -Olivette -Oliveview -Olivewood -Olivia -Olivian -Olivier -Olivine -Oll la Honda -Olleberie -Ollerbarrow -Ollersett -Ollershaw -Ollerton -Olley -Ollier -Ollies Turn -Olliffe -Ollin -Olm -Olma -Olmar -Olmi Landrith -Olmo -Olmo Fire -Olmstead -Olmsted -Olney -Olney Keech -Olney Laytonsville -Olney Mill -Olney Sandy Spring -Olo -Olofson -Olola -Olphert -Olsen -Olson -Olson Farm -Olson Frontage -Olson Highway Service -Olson Hwy Service -Oltmann -Olvega -Olven -Olvera -Olyffe -Olympia -Olympia Fields -Olympic -Olympic Oaks -Olympic View -Olympus -Olyphant -Omaban -Omaha -Omaha Beach -Omak -Oman -Omar -Omara -Omaroo -Omaru -Omati -Omdurman -Omeara -Omec Park -Omega -Omeo -Omer -Omira -Omisol -Ommel -Omni -Omnibus -On Orbit -On The -Ona -Onamog -Onandaga -Onarga -Onchan -Onderdonk -Ondina -Ondine -One Beacon -One Bridge -One End -One Eversholt -One Executive -One Hundred -One Marina Park -One Mill -One Oak -One Palace -One Paradise -One Penny -One Pin -One Spring -One Tree -One Tree Hill -One Western -Oneata -Onedia -Oneel -Onehtah -Oneida -Oneil -Oneill -Oneonta -Oneto -Ongar -Ongley -Onieda -Onion Hill -Onion Patch -Onique -Onley -Onondaga -Onondago -Onorato -Onra -Onset -Onslow -Onsrud -Ontario -Ontario Bay -Ontarioville -Onward -Onwentsia -Onyx -Oolah -Oolooteka -Oorana -Oorin -Oozewood -Opah -Opal -Opal Cliff -Opala -Opalo -Opalocka -Opatrny -Opel -Open -Open Hearth -Open Meadow -Open Run -Open View -Opengate -Openshaw -Openshaw Fold -Openwood -Operations -Operators -Opey -Ophelia -Ophir -Oping -Opitz -Oppenheim -Opperman -Oppidans -Opportunity -Optimist -Optimo -Opus -Ora -Ora Glen -Ora Lea -Orache -Oracle -Oradell -Orallo -Oram -Orama -Oran -Oran Park -Orana -Orange -Orange Blossom -Orange Brace -Orange Grove -Orange Heights -Orange Hill -Orange Hunt -Orange Plank -Orange Tree -Orange View -Orangeburg -Orangeburgh -Orangery -Orangetree -Orangevale -Orangeville -Orangewood -Oransay -Orara -Oratam -Oratava -Oraton -Orawaupum -Orazio -Orazmi -Orb -Orbach -Orbain -Orbel -Orbell -Orbison -Orbit -Orcam -Orchad -Orchads -Orchard -Orchard Acres -Orchard Beach -Orchard Blossom -Orchard Brook -Orchard Canyon -Orchard City -Orchard Club -Orchard Creek -Orchard End -Orchard Estates -Orchard Farm -Orchard Gate -Orchard Gateway -Orchard Grove -Orchard Heights -Orchard Hill -Orchard Hill Park -Orchard Hills -Orchard House -Orchard Lake -Orchard Loop -Orchard Meadow -Orchard Meadows -Orchard Park -Orchard Point -Orchard Pointe -Orchard Ridge -Orchard Run -Orchard Spring -Orchard Springs -Orchard Valley -Orchard View -Orchardfield -Orchardhill -Orchardleigh -Orchehill -Orchid -Orchill -Orchird -Orchis -Ord -Ordak -Orde Hall -Ordell -Ordinal -Ordinance -Ordnance -Ordsall -Ordway -Ore -Oread -Oreana -Orebaugh -Oregano -Oregon -Orehr -Orem -Orence -Orestan -Oreste -Orestimba -Orestimba Creek -Oreston -Oreta -Orford -Organ -Organ Hall -Organ Park -Orgill -Ori -Orian -Oriana -Oric -Orick -Oriel -Orielton -Orient -Orient Fishtail -Orienta -Oriental -Oriente -Oriley -Orin -Orinda -Orinda View -Orinda Vista -Orindawoods -Orinoco -Oriol -Oriole -Orion -Orion Club -Oriskany -Orison -Orissa -Oritan -Orizaba -Orkla -Orkney -Orlan -Orlan Brook -Orland -Orland Square -Orland Woods -Orlanda -Orlando -Orleans -Orleston -Orley Farm -Orlick -Orlo -Orloff -Orlop -Orly -Orman -Ormand -Ormandy -Ormanton -Ormart -Ormbrek -Orme -Ormeley -Ormerod -Ormesby -Ormiston -Ormond -Ormond Park -Ormonde -Ormont -Ormpington -Ormrod -Ormsay -Ormsbee -Ormsby -Ormsgill -Ormside -Ormskirk -Ormston -Ornan -Ornatus -Orne -Ornella -Ornellas -Oro -Orogrande -Oronga -Orono -Orono Oaks -Oronoco -Orosz -Oroville -Orphanage -Orpheus -Orpin -Orpington -Orpington Bypass -Orpington High -Orr -Orr Ranch -Orral -Orrel -Orrell -Orren -Orrin -Orrin White -Orrington -Orris -Orrishmere -Orrison -Orrmo -Orsett -Orsett Heath -Orsetti -Orsini -Orsman -Orson -Orston -Ortalon -Ortega -Orth -Ortins -Orto -Orton -Ortona -Orts -Orval -Orvietto -Orville -Orvis -Orwell -Orwood -Osage -Osbert -Osberton -Osborn -Osborne -Osbourne -Osburn Park -Oscar -Oscecla -Osceola -Osea -Oser -Osgathorpe -Osgood -Osidge -Osier -Osiers -Osio -Ositos -Oskaloosa -Oslac -Oslo -Osloer -Osman -Osmer -Osmium -Osmond -Osmondthorpe -Osmund -Osmundsen -Osnaburgh -Osney -Oso -Osprey -Osprey Point -Ospringe -Osroy -Ossage -Ossamequin -Ossary -Osseo -Ossian Hall -Ossie -Ossipee -Ossippee -Ossory -Ossulston -Ossulton -Ostade -Ostego -Ostenberg -Ostend -Oster -Osterberg -Osterley -Osterley Park -Osterly -Osterly Park View -Osterman -Osterport -Ostlers -Ostrander -Ostrich -Ostrowski -Oswald -Osward -Oswego -Oswego Plains -Oswell -Oswin -Oswyth -Otago -Otay -Otero -Otford -Otham -Othello -Othen -Other Day -Othman -Otis -Otis Bowen -Otis Hill -Otisco -Otisfield -Otley -Otley Burras -Otley Old -Otlinge -Otoole -Otsego -Otsigo -Ott -Otta -Ottawa -Ottawa Bend -Ottaway -Otter -Otter Creek -Otter Lake -Otter Pond -Otter Ridge -Otter Rock -Otter Run -Otterbourne -Otterburn -Otterden -Otterham Quay -Otterhole -Otteridge -Ottermead -Otterson -Otterspool -Ottey -Ottilia -Ottley -Otto -Otto Hummer -Ottowa -Ottumwa -Ottways -Otway -Ouchthorpe -Oudle -Oughtonhead -Oughtrington -Ouilmette -Oulder Hill -Oulton -Oundle -Our -Our Hill -Our Peak -Ourimbah -Ourisman -Oursler -Oursler Park -Ourtime -Ousden -Ouseley -Ousley -Oust -Outcalt -Outer -Outer Loop -Outer Ring -Outer Zayante -Outerbridge -Outfield -Outgang -Outgate -Outhaul -Outing -Outings -Outlet -Outlook -Outlook Heights -Outlook Hill -Outpost -Outram -Outrigger -Outward Common -Outwater -Outwich -Outwood -Outwood Church Moxon -Outwood Common -Outwood Farm -Ouzlewell Green Green -Oval -Ovalstone -Ovaltine -Ovejas -Oven Hill -Ovenden -Ovenhouse -Ovens -Over -Over Brook -Over Hill -Over Ridge -Over Rock -Over Town -Overacker -Overbeck -Overbridge -Overbrook -Overbury -Overby -Overchase -Overcliff -Overcoat -Overcrest -Overdale -Overdene -Overdown -Overend -Overend Green -Overens -Overett -Overfield -Overford -Overgate -Overheart -Overheiser -Overhill -Overhiser -Overing -Overion -Overkamp -Overlake -Overland -Overland Park -Overlea -Overleaf -Overledge -Overleigh -Overlinks -Overlock -Overlook -Overlook Ridge -Overly -Overmead -Overmont -Overmoor -Overmount -Overpass -Overpeck -Overrun -Overshores -Overstone -Overton -Overview -Overwood -Overy -Ovesdon -Oving -Ovington -Owaisa -Owaissa -Owasco -Owasso -Owasso Heights -Owasso Hgts -Owasso Hills -Owasso Hts -Owatonna -Owen -Owen Brown -Owen Sound -Owencroft -Owenite -Oweno -Owens -Owens Farm -Owens Glen -Owens Lake -Owens Valley -Owensville -Owensville Sudley -Owings -Owings Beach -Owl -Owl Creek -Owl Harbor Levee -Owl Hill -Owl Ridge -Owl Swamp -Owl Tree -Owlcotes -Owler -Owlerbottom -Owles -Owley Wood -Owls Cove -Owls Head Bluff -Owls Nest -Owlsmoor -Owlswood -Owlwood -Owna -Owning -Owsley -Ox -Ox Bow -Ox Cart -Ox Hey -Ox Hill -Ox Hunt -Ox Meadow -Ox Pasture -Ox Ridge -Ox Team -Oxberry -Oxborough -Oxbow -Oxbow Creek -Oxbow Marina -Oxbridge -Oxburough -Oxbury -Oxen -Oxen Hill -Oxenbourne -Oxenbridge -Oxendale -Oxenden -Oxenden Wood -Oxendon -Oxenford -Oxenhoath -Oxenhouse -Oxenpark -Oxestalls -Oxford -Oxford Alcove -Oxford Bay -Oxford Circus Vere -Oxford Falls -Oxford Mill -Oxford Square -Oxford Wells -Oxfordshire -Oxform -Oxgate -Oxhey -Oxholm -Oxlease -Oxley -Oxley Farm -Oxley Shaw -Oxley Square -Oxleys -Oxleyshaw -Oxlow -Oxman -Oxnard -Oxney -Oxon -Oxon Hill -Oxon Hill Farm -Oxon Park -Oxon Run -Oxonian -Oxshott -Oxted -Oxton -Oxwell -Oxwood -Oyama -Oyster -Oyster Bay -Oyster Creek -Oyster Point -Oyster Pond -Oz -Ozanam -Ozark -Ozier -Ozkan -Ozone -Ozonia -P Fernwood -P Prairie -P Tree -PAH Fourth -PIA -PLeasance -Paarl -Pabis -Pabje -Pablo -Pablo Vista -Pac -Paca -Pace -Pacella -Pacella Park -Pacer -Pacey -Pachateau -Pacheco -Pacheco Creek -Pacheco Ridge -Pacific -Pacific Commons -Pacific Heights -Pacific Rim -Pacific Shore -Pacific View -Pacifica -Pacifico -Pacifiv View -Pacina -Pacini -Packanack Lake -Packard -Packards -Packcard -Packenham -Packer -Packet Boat -Packet Landing -Packetboat -Packham -Packhorse -Packing House -Packington -Packman -Packmore -Packmores -Packsaddle -Paco -Padan School -Padbury -Padcroft -Paddack -Padden -Paddenswick -Paddick -Paddington -Paddison -Paddle -Paddle Boat -Paddle Wheel -Paddlesworth -Paddlewheel -Paddock -Paddock Hill -Paddock House -Paddockhall -Paddockhurst -Paddocks -Paddockview -Paddon -Paddy -Paddy Creek -Paddy Miller -Padelford -Pademelon -Paderewski -Padero -Padfield -Padfield Main -Padgate -Padgett -Padons -Padova -Padre -Padre Island -Padres -Padsole -Padstow -Padua -Paducah -Padula -Padwell -Padwick -Padworth -Pafel -Paff -Paganini -Pagano -Pagden -Page -Page Brook -Page Farm -Page Green -Page Heath -Page Hill -Page Mill -Pageant -Pagebrook -Pagehurst -Pagel -Pageland -Pagenkopf -Pages -Paget -Pagham -Pagitt -Paglesham -Pagnell -Pagni -Pagoda -Pagonica -Pagum -Pahl -Paice -Paidge -Paige -Paige Glen -Paignton -Pailet -Paine -Paines -Paines Brook -Painesfield -Pains -Painsthorpe -Painswick -Paint -Paint Branch -Paintbrush -Painted Daisy -Painted Feather -Painted Leaf -Painted Pony -Painted Post -Painted Rock -Painted Turtle -Painted Wagon -Painters -Painters Ash -Painters Creek -Paintridge -Paints -Paisley -Paiute -Pajaro -Pajaro Hills -Pakachoag -Pakan -Pake -Pakeman -Pakenham -Pal -Pala -Palace -Palace Gardens -Palace Gates -Palace Green -Palace View -Palacio -Paladena -Paladin -Paladini -Paladino -Palamar -Palamino -Palamos -Palatine -Palatino -Palatka -Palawan -Palazzo -Pale -Pale Morning Dun -Paleologos -Palermo -Palesgate -Palewell Common -Paley -Palfrey -Palgrave -Paliamentary -Palin -Paling -Palinwood -Palisade -Palisades -Palisades Center -Palisades Interstate -Palisadium -Palisadse -Palissy -Palladay -Palladian -Palladio -Pallant -Pallas -Palleschi -Pallingham -Palliser -Pallister -Palm -Palm Beach -Palm Canyon -Palm Circle -Palm Grove -Palm Haven -Palm Meadow -Palm Mesa -Palm Ridge -Palm Spring -Palm Springs -Palm View -Palma -Palmar -Palmarsh -Palmaya -Palmcrest -Palmdale -Palmeira -Palmer -Palmer Creek -Palmer Hill -Palmer House -Palmer Mill -Palmer Park -Palmer Ranch -Palmer School -Palmera -Palmers -Palmers Green -Palmers Hill -Palmersfield -Palmerson -Palmerston -Palmerstone -Palmetta -Palmetto -Palmetto Dunes -Palmgren -Palmgrove -Palmia -Palmieri -Palmira -Palmito -Palmquist -Palms -Palmtag -Palmtree -Palmview -Palmwood -Palmyra -Palo -Palo Alto -Palo Amarillo -Palo Hills -Palo Santo -Palo Verde -Palo Vista -Palom -Paloma -Palomar -Palomares -Palomino -Palona -Paloro -Palos -Palos Springs -Palos Verdes -Palos West -Palou -Paloverde -Palsa -Palsted -Palwaukee -Pam -Pam Ann -Pam Anne -Pamala -Pamarco -Pamarella -Pamber -Pambula -Pamela -Pamella -Pamequa -Pamlar -Pamlico -Pampano -Pampas -Pamper -Pampisford -Pamplona -Pamrapo -Pan -Pan Am -Pan Toll -Panabaker -Panama -Panania -Pancake -Pancake Hollow -Pancras -Panda -Pandola -Pandolfi -Pandora -Pandorea -Panetta -Panfield -Pangbourne -Pangburn -Pangee -Panitz -Panjon -Pank -Pankhurst -Pankle -Pankridge -Panmuir -Panmure -Pannell -Pannonia -Panoche -Panola -Panorama -Panorama Heights -Panoramic -Panoz -Pansey -Panshanger -Pansmith -Pansy -Pantalis -Pantano -Panteny -Pantera -Panther -Panther Ridge -Panthers Ridge -Pantile -Pantlings -Panton -Pantooset -Pantry -Panxworth -Panzano -Paola -Paoli Loop -Paolo -Paomet -Paon -Paone -Papa -Papago -Papaw -Papaya -Pape -Papeete -Paper -Paper Birch -Paper Mill -Paper Mill Creek -Papera -Paperbark -Papercourt -Papermill -Papillion -Papillon -Papineau -Papoose -Papoose Lake -Papp -Pappani -Pappas -Pappenburg -Pappy -Paprocki -Paprota -Papsco -Papworth -Paquin -Par -Par Four -Par Three -Parada -Parade -Paradice -Paradis -Paradise -Paradise Beach -Paradise Grove -Paradise Lake -Paradise Spring -Paradise Valley -Paradise View -Paradiso -Parador -Paradox -Paragon -Paraiso -Parakeet -Parallel -Paramatta -Paramel -Paramount -Paramus -Parapet -Parbold -Parbrook -Parbury -Parc -Parc Aux Vaches -Parc Guell -Parcel -Parcel E Mayfair -Parcher -Parchmore -Parcot -Pardalote -Pardee -Pardey -Pardillo -Pardis -Pardoe -Pardon -Pardoner -Pardun -Pare -Parent -Parente -Parer -Paret -Parfait -Parfett -Parfrey -Pargat -Parham -Paringa -Paringdon -Paris -Paris Farm -Paris Oaks -Parish -Parish Gate -Parish Glebe -Park -Park Access -Park Arcadia -Park Barn -Park Barrington -Park Bridge -Park Center -Park Central -Park Circle -Park City -Park Cliff -Park Commons -Park Corner -Park Creek -Park Crescent -Park Crest -Park Cross -Park Dene -Park East -Park Ellen -Park End -Park Entrance -Park Estates -Park Fair -Park Farm -Park Forest -Park Front -Park Garden -Park Gardens -Park Gate -Park Gates -Park Glen -Park Glenn -Park Grove -Park HIll -Park Hall -Park Headquarters -Park Heights -Park Highlands -Park Hill -Park Hills -Park House -Park Hqtrs -Park Island -Park Knoll -Park Lake -Park Lawn -Park Maintenance -Park Manor -Park Meadow -Park Meadows -Park Mill -Park Mills -Park Mount -Park Nicollet -Park Overlook -Park Pacifica -Park Place -Park Plaine -Park Plaza -Park Point -Park Presidio -Park Prewett -Park Ramp -Park Ridge -Park River -Park Royal -Park Run -Park Sharon -Park Side -Park Siding -Park Sierra -Park South -Park Terrace -Park Tower -Park Trail -Park Tree -Park Vale -Park Valley -Park View -Park Village -Park Vista -Park Waldorf -Park West -Park Wilshire -Park Wood -Park Woods -Park Works -Parkanaur -Parkcenter -Parkchester -Parkcliff -Parkcroft -Parkdale -Parke -Parke West -Parkedge -Parkend -Parker -Parker Chase -Parker Creek -Parker Hill -Parker Point -Parker Ranch -Parkerhouse -Parkers -Parkers Creek -Parkers Farm -Parkers Grove -Parkers Lake -Parkers Ridge -Parkerson -Parkerville -Parkes -Parkey -Parkfast Essex -Parkfield -Parkfields -Parkford Manor -Parkgate -Parkgreen -Parkgrove -Parkhall -Parkham -Parkhaven -Parkhill -Parkhills -Parkholme -Parkhouse -Parkhurst -Parkin -Parking Lot -Parkington -Parkinson -Parkis -Parklake -Parkland -Parkland Farms -Parkland Hills -Parklands -Parklands Close Lynn -Parklane -Parklawn -Parklea -Parkleigh -Parklin -Parkman -Parkmead -Parkmeadow -Parkmont -Parkmoor -Parkmount -Parkoaks -Parkpale -Parkridge -Parkrose -Parkrow -Parks -Parkshore -Parkside -Parkside Dollis Hill -Parkside Crown -Parkson -Parkstead -Parkston -Parkstone -Parksway -Parkthorne -Parkton -Parktrail -Parkurst -Parkvale -Parkview -Parkville -Parkway -Parkway Cannon Hill -Parkway Homes -Parkway Ponds -Parkway Subdivision -Parkway Terrace -Parkways -Parkwest -Parkwind -Parkwood -Parkwood Ridge -Parkwoods -Parlaunt -Parlee -Parley -Parley Lake -Parliament -Parliment -Parlin -Parlington -Parma -Parmaker -Parmal -Parmalee -Parmelee -Parmenter -Parmer -Parmiter -Parmley -Parmly -Parmoor -Parnaby -Parnassus -Parndon -Parndon Mill -Parnel -Parnell -Parnham -Parnoo -Parole -Parolles -Paroma -Paroo -Paros -Paroubek -Parque -Parquet -Parr -Parramatta -Parramore -Parran -Parraween -Parraweena -Parrenthorn -Parrett -Parrin -Parrish -Parrish Farm -Parrish View -Parritt -Parriwi -Parrock -Parrot -Parrott -Parrott Mill -Parrow -Parrs -Parrs Ridge -Parrs Wood -Parry -Parsells -Parsifal -Parsippany -Parsley -Parsloe -Parsloes -Parslow -Parson -Parson Hill -Parsonage -Parsonage Hill -Parsons -Parsons Hill -Parsons Landing -Parsons Pond -Parston -Part -Partanna -Partello -Partenwood -Parthena -Parthenia -Parthey -Partidge Pond -Parting Rock -Partington -Partition -Partlow -Partnership -Parton -Partrick -Partridge -Partridge Berry -Partridge Hill -Partridge Run -Partridge Wood -Partridges -Party -Paru -Parvet -Parvin -Parys -Pasa Felix -Pasa Robles -Pasa Tiempo -Pasack -Pasada -Pasadena -Pasas -Pasatiempo -Pascack -Pascal -Paschal -Pasco -Pascoe -Pascomb -Pasedena -Paseo -Paseo Estera -Paseo Flores -Paseo Grand -Paseo Nuevo -Paseo Padre -Paseo Pueblo -Paseo Robles -Paseo de Palomas -Paseo del Mar -Pasetta -Pashley -Pasho -Paskin -Pasley -Paso Corto -Paso Nogal -Paso Norte -Paso Robles -Pasquale -Pasquier -Pasquinelli -Pass -Passaconaway -Passaconway -Passage -Passage Creek -Passages -Passaic -Passaic Valley -Passaie -Passalaqua -Passalis -Passefield -Passel -Passfield -Passingham -Passini -Passmore -Passy -Pastatiempo -Pastel -Pastens -Pasteur -Paston -Pastor -Pastoral -Pastori -Pasture -Pasture Brook -Pasture Gate -Pasture Hill -Pasture View -Pasture Way Pasture -Pasturegate -Pasturewood -Pat -Pat Butler -Pat Capone -Pat Geary -Patanga -Patapsco -Patapsco Hill -Patch -Patch Meadow -Patch Reservoir -Patchen -Patches Pond -Patchett -Patching Hall -Pate -Patemore -Paten -Patent Parish -Pater -Paternal Gift -Paternoster -Paterson -Paterson Plank -Pates -Pates Manor -Patey -Path -Pathfield -Pathfinder -Pathway -Pathways -Pathwood -Patience -Patiky -Patio -Patio Greens -Patleigh -Patlen -Patlena -Patley -Patmon -Patmor -Patmore -Patmore Link -Patmos -Patnoe -Pato -Patocchi -Paton -Patony -Patowmack -Patoxent -Patra -Patrica -Patrice -Patricia -Patrician -Patrick -Patrick Clark -Patrick Henry -Patricks Copse -Patridge Wood -Patriot -Patriot Square -Patriots -Patrixbourne -Patrol -Patrol Bridge -Patrolman Ray Woods -Pats -Patsco -Patshull -Patsy -Patt -Pattee -Patten -Patten Ash -Pattenden -Pattens -Patterdale -Patterma -Patterman -Pattern -Patternbond -Patterson -Patterson Park -Patterson Pass -Patterson Ranch -Patteson -Patti -Patti Jo -Pattie -Patties -Pattison -Patton -Patty -Patty Lee -Patuxent -Patuxent Manor -Patuxent Overlook -Patuxent Range -Patuxent Riding -Patuxent River -Patuxent Woods -Patwin -Pau Hana -Paugus -Paul -Paul Birch -Paul Burch -Paul Dunbar -Paul Gore -Paul Hance -Paul Kirkwold -Paul Marr -Paul Martin -Paul Minnie -Paul Poole -Paul R. McDade -Paul Revere -Paul Scarlet -Paul Springs -Paul Sweet -Paul Wilkke -Paul X Tivnan -Paula -Paula Beth -Paula Lynn -Paulden -Paulding -Paulen -Paulene -Paulet -Paulette -Pauley -Paulhan -Paulin -Paulina -Pauline -Pauling -Paulison -Paulk Hall -Paull -Paullus -Paulonia -Pauls -Paulsell -Paulsen -Paulson -Paultons -Paulus -Pauly -Pauly Farm -Paulyn -Paumanack Village -Paumanake -Paumonek -Pauntley -Pautz -Pauw -Pavan -Paveley -Pavelka -Pavement -Pavesi -Pavia -Pavich -Pavilion -Pavilions -Pavillion -Pavn -Pavo -Pavonia -Paw Pan -Paw Print -Pawlet -Pawlik -Pawnee -Pawsey -Pawson -Pawtucket -Paxford -Paxman -Paxos -Paxson -Paxton -Payan -Paycocke -Payden -Payen -Payette -Payle -Payley -Payne -Paynes -Paynes Church -Paynes Endeavor -Paynesfield -Payot -Payran -Payson -Payten -Payton -Pazinick -Pazzi -Pea -Peabody -Peace -Peace Memorial -Peace Valley -Peaceable -Peacedale -Peaceful -Peaceful Glen -Peaceful Pond -Peaceful Ridge -Peaceful Valley -Peacevale -Peach -Peach Blossom -Peach Crest -Peach Grove -Peach Hill -Peach Leaf -Peach Orchard -Peach Tree -Peach Tree Hill -Peach Walker -Peacham -Peachey -Peachgate -Peachland -Peachstone -Peachtree -Peachum -Peachwillow -Peachwood -Peacock -Peacock Creek -Peacock Farm -Peacock Gap -Peacock Hill -Peacock Pond -Peak -Peak Hill -Peak View -Peakdale -Peake -Peake New -Peaker -Peakes -Peakham -Peaks Mill -Peaksmill -Peakview -Peale -Peanut Brittle -Peanut Mill -Peapond -Pear -Pear Creek -Pear Tree -Pear Tree Point -Pearblossom -Pearce -Pearce Landing -Pearce Memorial -Pearcroft -Peardon -Pearfield -Pearl -Pearl Bay -Pearl Brook -Pearl Harbor -Pearl Hill -Pearlbush -Pearle -Pearles -Pearlgrass -Pearlman -Pearlroth -Pearltone -Pearly -Pearmain -Pearman -Pearn -Pears -Pearsall -Pearse -Pearson -Pearson Valley -Pearsons -Pearsons Green -Peart -Peartree -Pearwood -Peary -Peascod -Peascroft -Pease -Peaslake -Peasley -Peat -Peat Bog -Peatfield -Peatmore -Peavey -Pebble -Pebble Beach -Pebble Branch -Pebble Brook -Pebble Canyon -Pebble Creek -Pebble Glen -Pebble Hill -Pebble Run -Pebblebrook -Pebblebrooke -Pebblecreek -Pebbleford -Pebblefork -Pebblehill -Pebbles -Pebblestone -Pebbleway -Pebblewood -Pebler -Pebmarsh -Pebworth -Pecan -Pecan Grove -Pecan Leaf -Pecanwood -Peccary -Peck -Peckford -Peckham -Peckham High -Peckham Hill -Peckham Hurst -Peckham Park -Peckman -Peckmantown -Peckover -Pecks -Pecks Woods -Pecksland -Pecksuot -Peckwater -Peco -Peconic -Pecos -Pecunit -Peddars -Pedder -Peddlers -Peddock -Peden -Pedersen -Pederson -Pederzini -Pedley -Pedra -Pedrick -Pedro -Pedro View -Pedroncelli -Pedroni -Peebles -Peebles Whitehall -Peed -Peek -Peekay -Peeks Brook -Peekskill -Peel -Peel Green -Peel Hall -Peel Moat -Peelgate -Peels -Peelwood -Peens -Peer -Peerless -Peers -Peerswood -Peeskill -Peet -Peets -Peffer -Peg -Pegamoid -Pegan -Pegasus -Pegg -Peggotty -Peggotty Beach -Peggs -Peggy -Pegholme -Pegler -Pegmire -Pegord -Pegrum -Pegs -Pegwell -Pegwood -Pehle -Peiking -Peine -Peirce -Peirson -Peitz -Pekara -Pekin -Peladeau -Pelandale -Pelden -Peldon -Pelfrey -Pelham -Pelham Crossover -Pelham Island -Pelham Manor -Pelham Shore -Pelhamdale -Pelhamside -Pelhamwood -Pelican -Pelican Garth -Pelican Point -Pelican Ridge -Pelier -Pelinore -Pell -Pell Farm -Pellack -Pellandini -Pellant -Pelleas -Pellegrini -Pellerin -Pelletie -Pelletier -Pellier -Pelling -Pellings -Pellington -Pellipar -Pellisier -Pellitt -Pellowe -Pells -Pelly -Pelorus -Pelozar -Pelsart -Pelter -Peltier -Peltier Lake -Pelton -Pemaco -Pemba -Pembar -Pember -Pemberlei -Pemberly -Pemberton -Pemberwick -Pembina -Pembridge -Pembroke -Pembroke Village -Pembroke on Duxbury -Pembrook -Pembrooke -Pembrooke View -Pembsly -Pembury -Pembury Hall -Pemdevon -Pemell -Pemerton -Pen -Pen Bryn -Pen Mor -Pena -Pena Adobe -Penacook -Penamint -Penang -Penaranda -Penarth -Penasquitas -Penataquit -Penatiquit -Penberth -Penbridge -Penbroke -Penbrooke -Penbury -Pence -Pencroft -Pend Oreille -Penda -Pendale -Pendall -Pendant -Pendarves -Pendas -Pendas Way Barwick -Pendas Way Kelmscott -Pendas Way Manston -Pendegast -Pendell -Pendennis -Pender -Penderbrook -Penderbrooke -Penderel -Pendergast -Penderlea -Penderview -Penderwood -Pendexter -Pendey -Pendle -Pendlebury -Pendlecroft -Pendlestone -Pendleton -Pendock -Pendola -Pendolino -Pendragon -Pendred -Pendrell -Pendrill -Pendro -Pendroy -Pendrys -Pendulum -Penefield -Penelope -Penelope Lucas -Penenden -Penenden Heath -Penenden Heath Boxley -Penerley -Penerly -Penfield -Penfold -Penford -Pengarth -Pengel -Pengilly -Penguin -Penhall -Penhallow -Penhill -Penhorn -Penhryn -Penhurst -Penifather -Penine -Peninnsula -Peninsula -Peninsula Farm -Peninsula Point -Peninsular -Peniston -Penistone -Penisula -Penitencia -Penitencia Creek -Penitentiary Service -Peniwill -Penketh -Penkivil -Penlan Hall -Penland -Penleach -Penley -Penlow -Penman -Penmere -Penmon -Penn -Penn Belt -Penn Creek -Penn Crossing -Penn Manor -Pennack -Pennacook -Pennant -Pennant Hills -Pennard -Penncross -Penndale -Pennell -Penner -Pennerview -Pennethorne -Penney -Pennfathers -Pennfield -Penngrove -Penni -Pennial -Pennicook -Pennies -Penniman -Pennine -Pennings -Pennington -Pennington Green -Penningtons -Penninsula -Penninsular -Pennisula Point -Pennith -Pennland -Pennock -Pennoyer -Penns -Penns Hill -Pennsboro -Pennsbury -Pennswood -Pennsy -Pennsylvania -Pennsylvania Railroad -Pennview -Pennwood -Penny -Penny Brook -Penny Cress -Penny Hill -Penny Meadow -Penny Oak -Penny Royal -Pennyblack -Pennybridge -Pennybrook -Pennycress -Pennydog -Pennyfather -Pennyfathers -Pennyfield -Pennyfield Lock -Pennyhill -Pennymead -Pennymeadow -Pennymoor -Pennypacker -Pennypleck -Pennyroyal -Pennys -Pennywise -Pennywood -Penobscot -Penpool -Penprase -Penquin -Penraevon -Penrhos -Penrhyn -Penrith -Penroath -Penrod -Penrose -Penroy -Penry -Penryn -Penryth -Pensa -Pensacola -Pensarn -Pensbury -Pensfold -Pensford -Penshurst -Pensive -Pensons -Penstemon -Penstock -Penswick -Pentagon -Pentagon Access -Pentecost -Pentenville -Penthorpe -Pentire -Pentland -Pentlow -Pentney -Pento -Penton -Penton Hall -Penton Hook -Penton Rise Cumming -Pentonville -Pentreath -Pentrich -Pentridge -Pentstemon -Pentucket -Pentwater -Pentyre -Penway -Penwerris -Penwick -Penwith -Penwood -Penyston -Penywern -Penzance -Peony -Peony Place -Peoria -Peotone Beecher -Peover -Pepco -Pepe -Peper Harrow -Peperham -Peperharow -Pepin -Pepito -Pepler -Peploe -Peppard -Peppe -Pepper -Pepper Creek -Pepper Hill -Pepper Mill -Pepper Oaks -Pepper Ridge -Pepper Tree -Pepper Valley -Pepper Wood -Pepperbox -Peppercorn -Pepperday -Pepperdine -Pepperell -Pepperhill -Pepperidge -Pepperidge Tree -Peppermill -Peppermint -Peppermint Hill -Pepperridge -Peppertree -Pepperwood -Pepperwood Knoll -Pepperwood Ranch -Pepple -Pepples -Pepsal End -Pepys -Pequannock -Peque -Pequit -Pequossette -Pequot -Pera -Peracca -Perada -Perak -Peralta -Perceval -Perch -Perch Lake -Percheron -Percil -Percival -Percivals -Percy -Percy Bryant -Percy Simms -Percypenny -Perda -Perder -Perdetta -Pere Marquette -Peregoy -Peregrin -Peregrine -Peregrine White -Pereira -Perennial -Perera -Perez -Perfection -Performance -Pergate -Pergola -Perham -Peri -Pericles -Peridot -Perie -Periera -Perigene -Perigo -Perimeade -Perimeter -Perimetr -Perine -Perino -Peripheral -Perisher -Perita -Periton -Perivale -Periwinkle -Perkal -Perkeley -Perkins -Perkinsville -Perkiomen -Perks -Perktel -Perley -Perley Evans -Perleybrooke -Perlich -Perlman -Permanent -Permanente -Permar -Permian -Perna -Pernham -Peronne -Perot -Perouse -Perowne -Perpetual Park -Perpins -Perran -Perraud -Perrault -Perreault -Perreira -Perrell -Perrelli -Perren -Perrers -Perrett -Perri -Perrich -Perrie -Perrin -Perrin Springs -Perrine -Perrineville -Perring -Perrior -Perro Creek -Perrone -Perrot -Perry -Perry Hall -Perry Henderson -Perry Hill -Perry Penney -Perry Vale Windrush -Perry Vale Woolstone -Perry William -Perryfield -Perrygate -Perryhill -Perryland -Perrymans -Perrymans Farm -Perrymead -Perrymont -Perrymount -Perryn -Perryridge -Perrys -Perrys Island -Perrysfield -Perrywinkle -Perrywood -Persant -Perserverance -Perseus -Perseverance -Persfield -Pershing -Pershore -Persia -Persian -Persic -Persimmon -Persimmon Tree -Persimmonn -Persistence -Personette -Pertch -Perth -Perthshire -Pertwee -Peru -Perullo -Perwal -Perwell -Pescadero -Pescadero Creek -Pesce -Pescot -Peshine -Peshtigo -Pestana -Pested -Pested Bars -Pesticide -Pesz -Petain -Petal -Petaluma -Petaluma Hill -Petar -Pete -Pete Dye -Pete Higgins -Pete Miller -Pete Weirs -Peteler -Peter -Peter A McCuen -Peter Behr -Peter Bont -Peter Brock -Peter Bulkeley -Peter Cooper -Peter Coutts -Peter Finch -Peter Hans -Peter Hobart -Peter Island -Peter J Shields -Peter Jefferson -Peter Martin -Peter Meadows -Peter Pan -Peter Parley -Peter Paul -Peter Tufts -Peter V Blazonis -Peter Wilson -Peterborg -Peterborough -Peterhoff -Peterhouse -Peterick -Peterlee -Peterley -Peterman -Peters -Peters Dam Fire -Peters Ranch -Peters Spring -Petersborough -Petersburg -Petersdorf -Petersen -Petersfield -Petersham -Petersilge -Peterson -Petersons -Petersville -Petery -Petes Farm -Petherton -Petit -Petite -Petite Creek -Petith -Petlands -Petley -Petra -Petrarca -Petray -Petrel -Petrell -Petri -Petridge -Petrie -Petrified Forest -Petrig -Petrillo -Petroleum -Petrolia -Petrosyan -Petrus -Petry -Pett -Pettee -Pettees Pond -Petteridge -Petters -Petterson -Pettfield Hill -Pettibone -Pettibush -Petticoat -Pettigrew -Pettingell -Pettis -Pettit -Pettits -Petts -Pettsgrove -Petty -Petunia -Petworth -Petzold -Peugeot -Pevensey -Peverel -Peverell -Peveril -Peverill -Pevey -Pevril -Pevwell -Pewter -Pewterers -Pewterspear -Pewterspear Green -Pexa -Pexhill -Peyla -Peyton -Peyton Randolph -Peytonia -Pezzi -Pezzini -Pfaff -Pfeffer -Pfeiffer -Pfeiffer Ranch -Pfeifle -Pfieffer -Pfingsten -Pfister -Pfitzer -Pfund -Phaeton -Phaeton Rock -Phaiban -Phalanx -Phalen -Phaneuf -Phanor -Phantom -Phar Lap -Pharlap -Pharmer -Pharoahs -Pheasant -Pheasant Brook -Pheasant Chase -Pheasant Creek -Pheasant Fields -Pheasant Hill -Pheasant Hills -Pheasant Hollow -Pheasant Hunt -Pheasant Lake -Pheasant Landing -Pheasant Ridge -Pheasant Run -Pheasant Trail -Pheasant Walk -Pheasant Wood -Pheasant Woods -Pheasants -Pheasantwoods -Phebe -Pheby -Phegley Ridge -Phelan -Phelips -Phelp -Phelps -Phene -Pheonix -Phesant -Phethean -Phil -Phil Mar -Philadelphia -Philamena -Philanthropic -Philben -Philbrick -Philbrook -Philchurch -Philemon -Philemon Whale -Philip -Philip Darch -Philip Digges -Philip Howard -Philip Lee -Philip Sydney -Philipp -Philipps -Philips -Philips Mill -Phillida -Phillimore -Phillip -Phillip Brooks -Phillip Farm -Phillip Powers -Phillipa -Phillipi -Phillipi Creek -Phillipp -Phillippi Creek -Phillips -Phillips Beach -Phillips Brook -Phillips Farm -Phillips Manor -Phillips Oak -Phillips Park -Phillips Pond -Phillips Ranch -Phillipse -Phillis -Philmead -Philmont -Philmore -Philo -Philpot -Philpot End -Philpott -Phineas -Phineas Pett -Phinney -Phipp -Phipps -Phipps Bridge -Phipps Hatch -Phirne -Phleger -Phlox -Phoebe -Phoebeth -Phoenix -Phoenix Center -Phoenix Lake -Phoneline -Photinia -Photo -Phroane -Phylcis -Phyldan -Phyllis -Phyllis Court -Phyllis Wheatley -Phylliss -Phylmor -Physicians -Physics -Physics Ellipse -Phythian -Piacenti -Piaget -Piano -Piave -Piazza -Pibac -Pibrock -Picadilly -Picard -Picardy -Picasso -Piccadilly -Piccadilly Circus -Piccard -Piccoli -Piccotts End -Picha -Pichette -Pichie -Picholine -Pichowicz -Pick -Pickard -Pickaxe -Picken -Pickens -Picker -Pickeral -Pickerel -Pickering -Pickersgill -Picket -Picket Oaks -Pickets -Pickets Lock -Pickets Post -Pickett -Picketts -Picketts Lock -Pickfair -Pickford -Pickhill -Pickhurst -Pickman -Pickmere -Pickmoss -Pickpocket -Picksley -Pickstone -Pickwell -Pickwick -Pickwick Hill -Pickwood -Pickworth -Picnic -Picnic Access -Picnic Island -Picnic Point -Pico -Picone -Picosin -Picot -Picton -Pictor -Picts -Pictun -Picture -Pidding -Piddington -Piddock -Pidgeon Hill -Pidgeon Meadow -Pidham -Pied Piper -Piedmont -Piedmont Trail -Piedra -Piehl -Pield Heath -Pielet -Piemonte -Pier -Pier Approach -Pier Point -Pierce -Pierce Farm -Pierce Hill -Pierce Mill -Pierce Point -Pierce Ranch -Piercefield -Pierces -Piercy -Pierini -Pierino -Piermont -Pierpoint -Pierpont -Pierport -Pierre -Pierre Curie -Pierrefondes -Pierrepoint -Pierrepont -Pierron -Pierrpont -Piers -Piersoll -Pierson -Pierson Lake -Pierson Miller -Pierview -Piesley -Piester -Pietro -Piety Corner -Piezzi -Pig -Pig Rock -Pigbush -Pigdown -Pigeon -Pigeon Cote -Pigeon Farm -Pigeon Fork -Pigeon Hill -Pigeon Hollow -Pigeon Point -Pigeonhouse -Piggotshill -Piggott -Piggotts -Pigment -Pigott -Pigs Eye Lake -Pigstye Green -Pihl -Pika -Pike -Pike Branch -Pike End -Pike Lake -Pike Ridge -Pike School -Pikefish -Pikes -Pikes Hill -Pikes Peak -Pikeview -Pikey -Pikkney -Piland -Pilar Ridge -Pilarcitos -Pilarcitos Creek -Pilarcitos Quarry -Pilch -Pilcher -Pilcher Park -Pilchuk -Pilcot -Pilden -Pildra -Pile -Pilgram -Pilgrim -Pilgrim Hill -Pilgrimage -Pilgrims -Pilgrims Inn -Pilkington -Pill Hill -Pillar -Pillar Box -Pilling -Pillings -Pillings Pond -Pillmoss -Pillon -Pillory -Pillow -Pillow Lace -Pillowlace -Pillsbury -Pilning -Pilot -Pilot Knob -Pilot Rock -Pilothouse -Pilsbury -Pilsen -Pilsworth -Piltdown -Pilvinis -Pima -Pimaston -Pimblett -Pimento -Pimhole -Pimienta -Pimlico -Pimlott -Pimmit -Pimmit Run -Pimpernel -Pin Cherry -Pin Cushion -Pin Oak -Pina -Pinard -Pincents -Pincey -Pinch Brook -Pinchbeck -Pincherry -Pinchin -Pinchot -Pinchpools -Pinckney -Pincott -Pindar -Pindari -Pindell -Pindell School -Pinder -Pindle -Pine -Pine Acre -Pine Acres -Pine Aire -Pine Arden -Pine Bluff -Pine Breeze -Pine Brook -Pine Cliff -Pine Cone -Pine Cove -Pine Creek -Pine Crest -Pine Croft -Pine Flat -Pine Forest -Pine Garden -Pine Glen -Pine Grove -Pine Haven -Pine Hill -Pine Hill Cemetery -Pine Hills -Pine Hollow -Pine Hurst -Pine Island -Pine Knoll -Pine Knot -Pine Lake -Pine Lodge -Pine Manor -Pine Meadow -Pine Meadows -Pine Mountain -Pine Mountain Fire -Pine Needle -Pine Needles -Pine Oak -Pine Orchard -Pine Park -Pine Plain -Pine Point -Pine Ridge -Pine Shadow -Pine Spring -Pine Swamp -Pine Top -Pine Trail -Pine Tree -Pine Tree Brook -Pine Trees -Pine Vale -Pine Valley -Pine View -Pine Way -Pine Whiff -Pine Wild -Pine Wood -Pine Woods -Pineacre -Pineapple -Pineapple Grove -Pinebluff -Pinebrae -Pinebrook -Pinecastle -Pinecliff -Pinecone -Pinecote -Pinecreek -Pinecrest -Pinecrest Heights -Pinecrest Office Park -Pinecrest Vista -Pinecroft -Pinedale -Pinefield -Pineglen -Pinegrove -Pinehaven -Pinehill -Pinehurst -Pineknob -Pineknoll -Pineknot -Pinelake -Pineland -Pinelands -Pinelawn -Pineleigh -Pinell -Pinelynn -Pinemont -Pinemount -Pineneck -Pineneedle -Pineo -Piner -Piner Creek -Pinercrest -Pineridge -Pines -Pines Lake -Pinesfield -Pinetop -Pinetown -Pinetree -Pinetum -Pinevale -Pineview -Pineville -Pineway -Pinewold -Pinewood -Pinewoods -Piney -Piney Branch -Piney Church -Piney Glade -Piney Glen -Piney Grove -Piney Knoll -Piney Lodge -Piney Meetinghouse -Piney Point -Piney Pond -Piney Ridge -Piney Spring -Pinfod -Pinfold -Ping -Ping On -Pingate -Pingot -Pingree -Pingree Farm -Pingry -Pinho -Pini -Pinions -Pink -Pink Barn -Pink Woods -Pinkert -Pinkerton -Pinkham -Pinkle Hill -Pinkney -Pinkneys -Pinkspire -Pinkwell -Pinnacle -Pinnacle Ridge -Pinnacles -Pinneberg -Pinner -Pinner Love -Pinner Hill -Pinner Park -Pinney -Pinnington -Pinnock -Pinntage -Pinoak -Pinole -Pinole Shores -Pinole Valley -Pinon -Pinorie -Pinot -Pinot Noir -Pinrail -Pinrock -Pinson -Pinta -Pintail -Pintard -Pinter -Pinto -Pinto Lake -Pinto Trail -Pinview -Pinyaro -Pinyon -Pio Pica -Pioche -Pioneer -Pioneer Creek -Pioneer Hills -Pioneer Varni -Pioxi -Pipchin -Pipeline -Pipeline Fire -Pipeline Service -Piper -Piper Ridge -Piperhill -Pipers -Pipers Glen -Pipestone -Pipewell -Pipewood -Piping Rock -Pipit -Pippa -Pippen -Pippin -Pippins -Pippins Green -Pippit -Pippitta -Pippo -Piquet -Piquets -Pirate -Pirbright -Pirie -Pirrama -Pirrone -Pirton -Piscataway -Piscataway Landing -Piscataway Run -Pisces -Pisgah -Pisgah Marbury -Pishiobury -Pissaro -Pissarro -Pista -Pistache -Pistachio -Pistacia -Pit -Pit Farm -Pitcairn -Pitchcombe -Pitcher -Pitchford -Pitchfront -Pitcroft -Pitfall -Pitfield -Pitfold -Pither -Pitkin -Pitland -Pitlochry -Pitman -Pitner -Pitney -Pits Farm -Pitscottie -Pitsea -Pitsea Hall -Pitsford -Pitsham -Pitshanger -Pitsmoor -Pitstock -Pitt -Pitt Clarke -Pitt School -Pitt Town -Pittbrook -Pittis -Pittland -Pittman -Pittoni -Pitts -Pittsburg -Pittsburg Waterfront -Pittsburgh -Pittsfield -Pittsmead -Pittson -Pittsville -Pittwater -Pitz -Pius -Pivetta -Pivington -Pix -Pix Farm -Pixham -Pixie -Pixies Hill -Pixley -Pixmore -Pizarro -Pizien Well -Pizzorni -Place -Place Farm -Placehouse -Placenza -Placer -Placer Creek -Placer Mine -Placer Oaks -Placer Ridge -Placerville -Placerville Payen -Places -Placid -Placitas -Plafsky -Plaid -Plain -Plainedge -Plainfield -Plainfield Naperville -Plains -Plaintain -Plainview -Plainville -Plainwood -Plaister -Plaistow -Plaistow Green -Plaistow Park -Plam -Plamondon -Plan -Planada -Planchet -Planders -Plandome -Plane -Plane Tree -Planet -Planetree -Plank -Planky -Plant -Plant Hill -Plantagenet -Plantain -Plantation -Plante -Planten -Planters -Planters Field -Planthurst -Planting Field -Planting Fields -Plasecki -Plash -Plashes -Plashet -Plashet Grove Green -Plaskett -Plaskett Forest -Plass -Plassey -Plassy -Plastics -Plasto -Plata -Plate -Plate Mill -Plateau -Plater -Platform -Platform Bridge -Platina -Platinum -Plato -Platt -Platt Fold -Platt Hill -Platt House -Platt Ridge -Platte -Platten -Platting -Plattner -Platts -Plattsburg -Plattsdale -Plattville -Plattwood -Platwood -Platzer -Plauderville -Plawhatch -Plawsfield -Plaxdale Green -Plaxtol -Play Bowl -Playa -Playa Del Sol -Playa del Rey -Playden -Player -Players Pond -Playfair -Playfield -Playford -Playground -Playhatch -Playland Access -Playstead -Playstool -PlazA -Plaza -Plaza America -Plaza Service -Pleasance -Pleasant -Pleasant Acre -Pleasant Acres -Pleasant Chase -Pleasant Colony -Pleasant Crest -Pleasant Echo -Pleasant Garden -Pleasant Gate -Pleasant Glen -Pleasant Grove -Pleasant Grove School -Pleasant Heights -Pleasant Hill -Pleasant Hollow -Pleasant Knoll -Pleasant Lake -Pleasant Meadow -Pleasant Meadows -Pleasant Oaks -Pleasant Park -Pleasant Plains -Pleasant Ridge -Pleasant Run -Pleasant Spring -Pleasant Springs -Pleasant Valley -Pleasant View -Pleasant Vista -Pleasant Wood -Pleasant Woods -Pleasantdale -Pleasanton -Pleasanton Sunol -Pleasants Valley -Pleasantview -Pleasantville -Pleasent -Pleasington -Pleasure -Pleasure Creek -Pleasure House -Pleasure Island -Pleasure Pit -Pleasure Point -Pleasure View -Pleck -Pledger -Pleides -Pleitner -Plender -Plenge -Plenty -Plentywood -Plesant -Pleshey -Pletcher -Plevna -Pleydell -Plimpton -Plimsoll -Plinston -Pliny -Plitt -Ploch -Plodder -Plog -Plomer -Plomer Green -Plomosa -Plotner Farm -Plough -Plough Inn -Plough Wents -Ploughbank -Ploughley -Plover -Plover Hill -Plow -Plowden -Plowgate -Plowman -Pluckley -Plucksbridge -Pluff -Plug -Plum -Plum Beach Point -Plum Blossom -Plum Creek -Plum Dale -Plum Grove -Plum Hill -Plum Hollow -Plum Island -Plum Orchard -Plum Point -Plum Ranch -Plum Tree -Plum Valley -Plumage -Plumas -Plumas Lake -Plumberow -Plumberow Mount -Plumberrow -Plumbers Pasture -Plumbley -Plumbridge -Plume -Plumer -Plumeria -Plumfield -Plumford -Plumleigh -Plumley -Plumley Moor -Plummer -Plummerden -Plummers -Plummers Promise -Plumosa -Plumpointe -Plumpton -Plumptre -Plumrose -Plums -Plumstead -Plumstead Common -Plumstead High -Plumstone -Plumtree -Plumtree Cross -Plumwood -Plumy Feather -Plunge -Plunkett -Plurenden -Pluskota -Pluth -Pluto -Plyers Mill -Plymbridge -Plymoth Farms -Plymouth -Plymouth River -Plymouth Rock -Plympton -Plymton -Po -Po River -Poa Annua -Poag -Poar -Poate -Pobgreen -Pocahontas -Pocantico -Pocasset -Pocasset on Asbury -Pocatello -Pochard -Pochet -Pochin -Pock -Pocket -Pocket Nook -Pocketsdell -Pockford -Pockley -Pocklington -Poco -Pocock -Pococks -Pocol -Pocomoke -Pocono -Pocumtuck -Podbury -Podesta -Podesto -Podium -Podlin -Podmore -Podnor -Pods -Pods Brook -Podsmead -Podva -Poe -Poehlman -Poet -Poetry -Poets -Poett -Pogany -Poggi -Pogson -Pohick -Pohick Bay -Pohick Crest -Pohick River -Pohono -Poillon -Poinciana -Poindexter -Poinier -Poinsetta -Poinsettia -Point -Point Alabama -Point Allerton -Point Breeze -Point Creek -Point Dechene -Point East -Point Field -Point Gallinas -Point Group Camp -Point Hollow -Point Lobos -Point No Point -Point O Woods -Point Oak -Point Piper -Point Pleasant -Point Reyes Petaluma -Point Rider -Point Ridge -Point San Bruno -Point San Pedro -Point Somerset -Point View -Point of Timber -Point of Woods -Pointcross -Pointe -Pointe Claire -Pointe Pacific -Pointe Vista -Pointer -Pointer Ridge -Pointers -Pointview -Pointwell -Poirier -Poise Brook -Poisson -Poitras -Pokagon -Pokanoket -Poker -Poker Flat -Poko -Pokolbin -Pokonoket -Poland -Polar -Polar Bear -Polari -Polaris -Polding -Pole -Pole Hill -Pole Line -Pole Moor New Hey -Pole Mountain -Pole Plain -Poleacre -Polebrook -Polecat -Polecroft -Polefield -Polefield Hall -Polegate -Polehanger -Polen -Poles -Polesden -Polestub -Polesworth -Poley -Polhemus -Polhill -Poli -Polianski -Police -Polidoris -Polifly -Polillio -Poling -Polito -Politzer -Polk -Polk Saint Croix -Pollack -Pollard -Pollardrow -Pollards -Pollards Oak -Pollards Wood -Polled Hereford -Pollen -Polletts -Polley -Pollifrone -Pollin -Polling House -Pollis -Pollitt -Pollock -Polly -Polly Anna -Polly Park -Pollywick -Pollywog -Polo -Polo Club -Polo Crosse -Polo Field -Polo Pointe -Polo Pony -Polonia -Polonius -Polonsky -Polruan -Polson -Polsted -Poltimore -Polvadero -Polwarth -Polworth -Polygon -Polynesia -Polynesian -Polytechnic -Pomace -Pomander -Pomar Vista -Pombo -Pombo Square -Pombridge -Pomciticut -Pome -Pomegranate -Pomelo -Pomerado -Pomerol -Pomeroon -Pomeroy -Pomeworth -Pomfret -Pommander Walk -Pommel -Pommer -Pommeroy -Pomo -Pomoja -Pomoken -Pomona -Pompano -Pompei -Pompeii -Pomper -Pompey -Pomponi -Pomponio -Pompositticut -Pompton -Pomroy -Ponca -Ponce -Ponce de Leon -Poncetta -Poncia -Pond -Pond Brook -Pond Copse -Pond Cottage -Pond Crest -Pond Derosa -Pond Edge -Pond End -Pond End School -Pond Farm -Pond Field -Pond Head -Pond Hill -Pond Home -Pond House -Pond Meadow -Pond Moor -Pond Park -Pond Plain -Pond Point -Pond Ridge -Pond Run -Pond Spice -Pond View -Pond Wood -Pondbrook -Pondcrest -Pondcroft -Ponder -Pondera -Ponderay -Ponderlay -Ponderosa -Ponderrosa -Pondfield -Pondhaven -Pondholton -Ponds -Ponds Edge -Ponds Wood -Pondside -Pondtail -Pondview -Pondville Hospital -Pondwick -Pondwicks -Pondwood -Ponefract -Ponhill -Ponikin -Ponikin Bridge -Poningo -Ponkapoag -Ponler -Ponnell -Ponsard -Ponselle -Ponsford -Ponsi -Ponsonby -Pont -Pontefract -Ponteverde -Ponti -Pontiac -Pontigo Glen -Ponto -Ponton -Pontos -Ponus -Pony -Pony Brown -Pony Express -Pony Tracks Fire -Pony Trail -Ponyara -Ponytail -Ponza -Pook -Pook Reed -Pookbourne -Pooks Hill -Pool -Pool Bank -Pool Bank New -Pool End -Pool Harrogate -Pool Hollow -Pool House -Pool Ridge -Poole -Poole Court -Pooles -Pooley -Pooley Green -Pooleys -Poolman -Poolmans -Poolsford -Poolton -Poona -Poonah -Poor -Poor Farm -Poor Meadow -Poorhouse -Poors -Poot -Pootings -Pop Becker -Pope -Pope Canyon -Pope Hill -Pope House -Pope Valley -Pope Valley Cross -Popeley -Popes -Popes Head -Popes Head View -Popes Hill -Popham -Popjack -Popkins -Popkins Farm -Popland -Poplar -Poplar Bath -Poplar Branch -Poplar Bridge -Poplar Creek -Poplar Glen -Poplar Grove -Poplar High -Poplar Hill -Poplar Lake -Poplar Leaf -Poplar Ridge -Poplar Tree -Poplar View -Poplarhollow -Poplars -Pople -Poplicans -Popomora -Popondetta -Popov -Popowski -Poppenhusen -Popperwell -Poppinghole -Poppitz -Poppler -Poppleton -Popplewell -Poppy -Poppy Glen -Poppy Hill -Poppy Hills -Poppy House -Poppy Ridge -Poppy Seed -Poppyfield -Poppyhills -Poppyseed -Poppythorn -Popular -Populatic -Poquanticut -Poquita -Porach -Porazzo -Porcaro -Porchester -Porchlight -Porchuck -Porden -Pordon -Porete -Poricy -Porlock -Porpoise -Porrende -Porritt -Porsche -Porsche Preserve -Port -Port Barrington -Port Capital -Port Carteret -Port Center -Port Clinton -Port Cove -Port Echo -Port Hacking -Port Haven -Port Hill -Port Hope Point -Port Imperial -Port Jersey -Port Macquarie -Port Monmouth -Port Norfolk -Port Rae -Port Reading -Port Richmond -Port Rowan -Port Royal -Port Sailwood -Port Sunlight -Port Terminal -Port Tidewood -Port Victoria -Port View -Port Washington -Portadown -Portage -Portage Mountain -Portal -Portcullis Lodge -Porte de Leau -Portelet -Porten -Porteous -Porter -Porter Creek -Porter Gulch -Porter Hill -Porter Plain -Porter Ridge -Porter School -Porter Service -Porterfield -Porters -Porters Cove -Porters Hall -Porters Hill -Porters Park -Portesbery -Portesbury -Portesbury Hill -Porteus -Porthcave -Porthkerry -Porthole -Portia -Portico -Portifino -Portillo -Portina -Portinscale -Portland -Portledge -Portley -Portley Wood -Portlock -Portloe -Portmadoc -Portman -Portmill -Portmore -Portmore Park -Portnall -Portnellan -Portner -Porto -Porto Bello -Porto Marino -Porto Rico -Porto Rosa -Portobago -Portobello -Portobelo -Portofino -Portola -Portola Heights -Portola Meadows -Portola Redwood -Portos -Portpool -Portree -Portrero -Portrush -Portsdown -Portsea -Portshire -Portside -Portsmith -Portsmouth -Portsoken -Portugal -Portview -Portville -Portway -Portwine -Portwood -Porz -Posadera -Posco -Poseidon -Posen -Posey -Poshard -Positano -Positas -Poskus -Posnett -Poss -Possehl -Possum -Possum Hollow -Possum Point -Possum Run -Possumtown -Post -Post Barn -Post Forest -Post Gate -Post Horn -Post House -Post Island -Post Mills -Post Oak -Post Office -Post Office Delce -Post Office Spen -Post Ranch -Post Wood -Postal -Postal Service -Postern -Postley -Postmill -Postoak -Poston -Postscript -Posturpedic -Postwood -Pot Kiln -Potash -Potassium -Potato -Potato Hill -Potawatami -Potawatomi -Potawatomie -Potbelly Beach -Potbridge -Potee -Poteet -Pothier -Potier -Potley Hill -Potomac -Potomac Branch -Potomac Club -Potomac Creek -Potomac Crest -Potomac Falls -Potomac Forest -Potomac Greens -Potomac Heights -Potomac Hills -Potomac Knolls -Potomac Manors -Potomac Meadow -Potomac Mills -Potomac Oak -Potomac Oaks -Potomac Overlook -Potomac Palisades -Potomac Path -Potomac Ridge -Potomac Riding -Potomac River -Potomac School -Potomac Valley -Potomac View -Potomac Vista -Potomac Woods -Potomack -Potomic Tennis -Potomska -Potoroo -Potosi -Potovens -Potrero -Potrero Hills -Potsdam -Pott -Pottawatomie -Pottawattami -Pottens Mill -Potter -Potter Hill -Potteries -Potternewton -Potters -Potters Crouch -Pottersheath -Potterton -Pottery -Potteton -Pottinger -Pottingfield -Pottle -Pottok -Potton -Potts -Potts Point -Pouchen End -Poughkeepsie -Poulet -Poulett -Pouley -Poulin -Pouliot -Poulos -Poulson -Poulter -Poultney -Poulton -Poultry -Pound -Pound Farm -Pound Hollow -Pound Ridge -Poundfield -Poundhurst -Pounds -Pountney -Pountsmonth -Pourier -Poust -Pout -Pout Rock -Poverest -Povershon -Poverty -Poverty Flat -Povey -Povey Cross -Powder -Powder Hill -Powder Horn -Powder House -Powder Mill -Powder Mill Fire -Powder Point -Powderbrook -Powderhorn -Powderhouse -Powdermill -Powderworks -Powdrell -Powdrill -Powell -Powell Cove -Powells -Powells Cove -Powells Creek -Powellton -Power -Power County -Power House -Power Inn -Power Lines -Power Plant -Power Ridge -Powerline -Powers -Powerville -Powhatan -Powhatan Beach -Powhattan -Powicke -Powis -Powissett -Powlett -Pownal -Pownall -Powney -Powster -Powys -Poydras -Poyer -Poyle -Poynder -Poynders -Poynes -Poynings -Poyntell -Poynter -Poynters -Poynton -Poyntz -Poyser -Poyton -Pozieres -Pozza -Pozzan -Prada -Prade -Pradel -Pradera -Pradera Mesa -Prado -Prado Secoya -Prado Vista -Praed -Pragel -Pragnell -Prague -Prah -Prahran -Prahser -Praire -Praire Dunes -Praire Island -Praire Lawn -Prairie -Prairie Center -Prairie City -Prairie Clover -Prairie Creek -Prairie Crossing -Prairie Dog -Prairie Estates -Prairie Falcon -Prairie Farm -Prairie Field -Prairie Flower -Prairie Grass -Prairie Grove -Prairie Hill -Prairie Knoll -Prairie Lakes -Prairie Landing -Prairie Meadow -Prairie Meadows -Prairie Moon -Prairie Oak -Prairie Path -Prairie Point -Prairie Pointe -Prairie Ridge -Prairie Rose -Prairie Sage -Prairie Schooner -Prairie Spring -Prairie Trail -Prairie Vale -Prairie Valley -Prairie View -Prairie Wind -Prairieland -Prairieside -Prairieview -Prairiewood -Prairiewoods -Praise -Prall -Pram -Prancing -Prancing Deer -Pranker -Prarie -Prarie Vale -Prarievale -Prater -Prather -Prathertown -Pratling -Pratolina -Pratt -Pratt Hill -Pratten -Pratton -Pratts -Pratts Farm -Pratts Mill -Pratum -Pray -Prc -Preacher -Preakness -Prebend -Prebendal -Preble -Preble Gardens -Preciado -Precious -Precissi -Precita -Preda -Preddys -Predella -Predmore -Preesall -Preinkert -Prell -Prelude -Premier -Premier Park -Premisy Hill -Premium Outlets -Premium Point -Premium River -Prendergast -Prenkert -Prentice -Prentice Hall -Prentis -Prentiss -Prenton -Presall -Presburg -Presco -Prescot -Prescott -Presdales -Presentation -Preservation -Preserve -Preserverance -President -President Point -Presidental -Presidente -Presidential -Presidents -Presidents Park -Presideo -Presidio -Presland -Presley -Press -Pressley -Pressmont -Pressprich -Presswick -Prestage -Prestancia -Prestbury -Prested -Prestfield -Prestige -Presto -Prestolee -Prestolite -Preston -Preston Beach -Preston White -Prestonfield -Prestons -Prests Mill -Prestwich -Prestwick -Prestwood -Preswick -Preswicke -Pretoria -Prettygate -Prettymans -Preuss -Prevost -Prewett -Prewett Ranch -Prey Heath -Priam -Price -Prices -Prichard -Priddis -Priddle -Priddy -Pride -Pride Crossing -Pride of Baltimore -Prideaux -Prideham -Prideland -Pridemark -Prides -Pridham -Pridmore -Pridmouth -Priebe -Prieboy -Priesing -Priest -Priest Bridge -Priest Park -Priester -Priesters Pond -Priestfield -Priesthorpe -Priestlands Park -Priestley -Priestly -Priestnall -Priests -Priestwood -Prigmore -Prima -Primary -Primasing -Primavera -Prime -Primero -Primett -Primevera -Primitive -Primley -Primley Park -Primm -Primrose -Primrose Hill -Primula -Prince -Prince Albert -Prince Andrew -Prince Arthur -Prince Caspian -Prince Charles -Prince Charlie -Prince Chigo -Prince Consort -Prince Crossing -Prince David -Prince Edward -Prince Edward Park -Prince Edwards -Prince Frederick -Prince George -Prince Georges -Prince Henry -Prince Imperial -Prince James -Prince John -Prince Lake -Prince Philip -Prince Phillip -Prince Regent -Prince Royal -Prince Rupert -Prince William -Prince Willow -Prince of Wales -Princedale -Princedom -Princeleigh -Princes -Princes Park -Princes Riverside -Princesfield -Princess -Princess Ann -Princess Anne -Princess Diana -Princess Eve -Princess Margaret -Princess Marina -Princess Mary -Princess May -Princess Pine -Princethorpe -Princeton -Princeton Park -Princevalle -Princeville -Princewood -Prince’s -Principal -Princton -Prindiville -Prindle -Pringle -Prinknash -Printempo -Printemps -Printer -Printers -Printice -Printing House -Printon -Printworks -Printy -Prinys -Priolo -Prion -Prior -Prior Bolton -Prior Farm -Prioress -Priors -Priors Hatch -Priors Wood -Priorsfield -Priorsford -Priory -Priory Farm -Priory Field -Priory Park -Priory Park Lee -Priory Park Middle -Priory View -Priorywood -Prioulx -Priscilla -Priscilla Alden -Prism -Prison -Pritchard -Pritchards -Priter -Prittlewell -Privado -Private -Private Anthony Rezza -Privateer -Privet -Privett -Privilege -Privit -Pro -Probate -Probert -Probst -Probyn -Procop -Procopio -Procter -Proctor -Proctors -Prodehl -Produce -Producers -Production -Professional -Professional Center -Professional Hill -Proffit -Profitt -Profumo -Program -Progress -Progressive -Progresso -Prom -Promenade -Promentory -Promintory -Promise -Promontory -Promontory Point -Pronto -Properity -Prophet -Proposed -Propp -Props Hall -Prose -Prospect -Prospect Hill -Prospect Knolls -Prospect Park -Prospect Point -Prospector -Prosper -Prosperi -Prosperity -Prospero -Prosser -Protano -Protectocoat -Prothero -Proud -Prout -Prout Farm -Prouty -Provance -Provencal -Provence -Provender -Provenzano -Providence -Providence Forest -Providence Forge -Providence Village -Provident -Province -Provincetown -Provincial -Provis -Proviso -Provo -Provost -Prowse -Proyart -Pru -Prudence -Prudential -Pruetts -Pruitt -Prune -Prune Acres -Prune Blossom -Prune Tree -Prunedale -Prunedale North -Pruneridge -Prunetree -Prunier -Prusakowski -Pruxne -Prybyl Pond -Pryde -Pryer -Pryer Manor -Pryite -Prykes -Pryme -Pryor -Pryors -Pryton -Pryzbylko -Pt Chase -Ptarmigan -Pubins -Public -Public Highway Long -Public Safety -Public Works -Puccini -Puchala -Puck -Puddephats -Pudding -Pudding Brook -Pudding Cake -Pudding Hill -Pudding Mill -Puddingcake -Puddingstone -Puddington -Puddledock -Puddlewharf -Puddon -Pudsey -Pudsey Hall -Pueblo -Pueblo Vista -Puers -Puerto -Puerto Rico -Puerto Vallarta -Puff -Puffer -Puffin -Pug -Puget -Pugh -Puha -Pukwans -Pulaski -Pulaski Hill -Pulawski -Pulborough -Pulens -Pulford -Pulgas -Pulham -Pulido -Pulis -Pullard -Pullborough -Pullen -Pullens -Puller -Pulley -Pulleyns -Pulleys -Pullman -Pulpit -Pulpit Rock -Pulross -Pulsar -Pulsifer -Pulteney -Pulver -Puma -Pumice -Pump -Pump House -Pumphouse -Pumphrey -Pumphrey Farm -Pumpkin -Pumpkin Brook -Pumpkin Hill -Pumpkin Pine -Punch -Punch Bowl -Punch Copse -Punchard -Punchbowl -Punt -Puntey Park -Pupek -Pupkis -Pupple -Purbeck -Purbrook -Purce -Purcell -Purchase -Purchese -Purdey -Purdham -Purdie -Purdom -Purdon -Purdue -Purdun -Purdy -Purdy Point -Purdy Ranch -Purfield -Purfleet -Purgatory -Purify -Purington -Purinton -Purisima -Purisima Creek -Purissima -Puritan -Puritan Mall Service -Purity -Purity Springs -Purkis -Purkiss -Purland -Purleigh -Purley -Purley Bury -Purley Downs -Purley Oaks -Purley Park -Purlings -Purlwell -Purnell -Purneys -Purple Beech -Purple Glen -Purple Hills -Purple Leaf -Purple Martin -Purple Sage -Purpleleaf -Purri -Purrington -Purse -Pursell -Pursers -Pursley -Purson -Purton -Purves -Purvine -Purvis -Purwell -Purwell Hall -Pusan -Pussy Willow -Putah Creek -Putah Creek Lodge -Putarri -Putcie -Putland -Putman -Putnam -Putnam Hill -Putnams -Putney -Putney Bridge -Putney Heath -Putney High -Putney Park -Putnum -Putt -Puttenden -Puttenham -Puttenham Heath -Putter -Putteridge -Putting -Puttnam -Puttney -Puves -Puzone -Pyalla -Pyburn -Pye -Pye Brook -Pyegrove -Pyenest -Pyenot Hall -Pylbrook -Pyle -Pyles -Pym -Pymble -Pymgate -Pymmes -Pymmes Green -Pymms Brook -Pymont -Pyms -Pynders -Pyne -Pynest Green -Pynnings Farm -Pyott -Pyrah -Pyramid -Pyrcroft -Pyrenees -Pyrford -Pyrford Common -Pyrite -Pyrite Mine -Pyrl -Pyrland -Pyrles -Pyrmont -Pyrmont Bridge -Pyro -Pyrola -Pyrossia -Pytchley -Pytha Fold -Pythian -Pyxie -Q Fernwood -Qantas -Qaurnby -Quaas -Quabeck -Quaboag -Quackenbush -Quaddick -Quaddick Mountain -Quaddick Town Farm -Quade -Quadra -Quadrangle -Quadrant -Quadrille -Quadros -Quaid -Quail -Quail Bluff -Quail Canyon -Quail Cove -Quail Creek -Quail Crest -Quail Estates -Quail Haven -Quail Hill -Quail Hollow -Quail Lakes -Quail Meadow -Quail Meadows -Quail Pointe -Quail Ridge -Quail Roost -Quail Run -Quail Valley -Quail Vista -Quail Walk -Quail Woods -Quailbrook -Quailhill -Quails Roost -Quailwood -Quailwood Manor -Quaint -Quaint Acres -Quainton -Quake -Quaker -Quaker Hill -Quaker Hollow -Quaker Knoll -Quaker Meeting House -Quaker Ridge -Quakers -Quakers Hall -Quakers Hill -Quaking -Quaking Aspen -Quale -Quality -Qualls -Quam -Quamba -Quamme -Quance -Quandam -Quander -Quanders Promise -Quandong -Quandt -Quane -Quann -Quannacut -Quannapowitt -Quantas -Quantico -Quantock -Quantrell -Quantrelle -Quantuck -Quantum -Quantum Leap -Quarantine -Quarles -Quarles Park -Quarley -Quarlton -Quarr -Quarrendon -Quarropas -Quarry -Quarry Arm -Quarry Bank -Quarry Bend -Quarry Hill -Quarry Lakes -Quarry Master -Quarry Mount -Quarry Park -Quarry Pond -Quarry Ridge -Quarry Wood -Quarter -Quarter Charge -Quarter Horse -Quarter Landing -Quarter Mile -Quarter Sessions -Quarterbrass Farm -Quarterdeck -Quarterfield -Quarterfield Farms -Quarterfield Park -Quarterhorse -Quartermain -Quartermaine -Quartermass -Quartermaster -Quartermaster Canyon -Quartermile -Quarterstaff -Quartet -Quartette -Quartz -Quaspec -Quassey -Quate -Quater Sessions -Quattro -Quaves -Quay -Quayle -Que -Queander -Quebec -Queen -Queen Adelaide -Queen Alexandra -Queen Ann -Queen Anne -Queen Anne Bridge -Queen Annes -Queen Caroline -Queen Catherine -Queen Chapel -Queen Charlotte -Queen Eleanor -Queen Eleanors -Queen Elizabeth -Queen Elizabeths -Queen Hoo -Queen Mary -Queen Marys -Queen Victoria -Queenair -Queenbeyan -Queenborough -Queendown -Queenhill -Queenhythe -Queens -Queens Brigade -Queens Brook -Queens Chapel -Queens Cross -Queens Crossing -Queens Farm -Queens Gate -Queens Grove -Queens Mead -Queens Park -Queens Row -Queens View -Queens Well -Queens Wood -Queensberry -Queensborough -Queensbridge -Queensbrook -Queensburg -Queensbury -Queenscliff -Queenscroft -Queensdale -Queensdown -Queensferry -Queensgate -Queensguard -Queenshill -Queenside -Queensland -Queensmead -Queensmill -Queensport -Queensthorpe -Queenston -Queenstone -Queenstone Fire -Queenstown -Queenstowne -Queensville -Queensway -Queensway Shaw -Queensway Tennyson -Queenswood -Queenwood -Queen’s -Queirolo -Quell -Quelm -Quelway -Quema -Quemerford -Quemoy -Quenby -Quencer -Quendon -Quentin -Quentin Roosevelt -Quercus -Quernmore -Querques -Query -Query Mill -Quesada -Quest -Questwood -Quetta -Quetzal -Quiamong -Quibble -Quick -Quick Edge -Quick Fox -Quickbourne -Quickedge -Quickley -Quickmoor -Quickrells -Quicksilver -Quickstep -Quidnic -Quien Sabe -Quien Sabe Ranch -Quiescence -Quiet -Quiet Brook -Quiet Cedar -Quiet Harbor -Quiet Knolls -Quiet Meadow -Quiet Oak -Quiet Owl -Quiet Place -Quiet Spring -Quiet Tree -Quiet Valley -Quiet View -Quiet Waters Farm -Quiet Woods -Quietfields -Quietwater -Quietwater Ridge -Quietwood -Quigg -Quiggle -Quigley -Quilberry -Quill -Quill Point -Quillback -Quilp -Quilpie -Quilt Patch -Quilter -Quilters -Quilting -Quimby -Quimby Point -Quinan -Quinapoxet -Quinby -Quince -Quince Mill -Quince Orchard -Quince Ridge -Quince Tree -Quince Valley -Quince View -Quincefield -Quincey -Quincy -Quincy Adams -Quincy Bridge -Quincy Marr -Quincy Shore -Quindel -Quine -Quinlan -Quinlisk -Quinn -Quinn Canyon -Quinnell -Quinnhill -Quinnterra -Quinobequin -Quinque -Quinsenberry -Quinsey -Quinshapaug -Quinsigamond -Quint -Quintal -Quintana -Quintara -Quintard -Quintas -Quinten -Quintette -Quintin -Quintinia -Quinton -Quinton Oaks -Quintree -Quinturn -Quintus -Quinwood -Quiram -Quire -Quirk -Quirkes -Quirnia -Quiros -Quisenberry -Quisenbury -Quisisana -Quisset -Quisset Brook -Quissett -Quist -Quitman -Quito -Quiver -Quiver Ridge -Quixley -Qume -Quo -Quoitings -Quonset -Quorn -Quota -R B Brown -R F Higgins -R Fernwood -R Shore -R. Belanger -R. T. Jones -R.Belanger -REavenswood -Raab -Raabe -Raans -Raap -Rabans -Rabaul -Rabbett -Rabbit -Rabbit Chase -Rabbit Hill -Rabbit Run -Rabbits -Rabbits Run -Rabbitt -Rabies Heath -Rabkin -Rabley Heath -Raboli -Raboth -Rabournmead -Rabro -Rabun -Raby -Raccoon -Race -Race Course -Race Horse -Race Track -Racecourse -Racefield -Racetrack -Rachael -Rachael Manor -Rachael Whitney -Rachel -Rachel Hill -Rachell -Rachelle -Racine -Racing Horse -Rack -Rack Close -Rackham -Rackhouse -Rackstraw -Racoon -Racquet -Racquet Club -Racton -Rad -Radar -Radatz -Raday -Radbourne -Radburn -Radcliff -Radcliffe -Radcliffe Moor -Radcliffe Park -Radclive -Radclyffe -Radcot -Raddant -Raddel -Raddin -Raddin Grove -Raddington -Radfield -Radford -Radha -Radial -Radian -Radiant -Radiata -Radigan -Radio -Radison -Radisson -Radisson Woods -Radium -Radius -Radlet -Radlett -Radlett Park -Radley -Radley Green -Radleys -Radlix -Radmere -Radmore -Radnage Common -Radner -Radnor -Radnormere -Rado -Radoff -Radonich -Radstock -Radtke -Radwick -Radwinter -Rae -Rae Ann -Rae Anne -Raeanne -Raeben -Raeburn -Raechel -Raemore -Raemot -Raes Creek -Rafael -Rafaela -Raff -Raffaele -Raffen -Rafferty -Raffin Green -Raffman -Raffo -Rafkind -Raflo -Rafman -Raftelis -Rafter Ridge -Rafton -Raftree -Rag Hill -Rag Rock -Ragatz -Ragazzi -Ragged Hall -Ragged Hill -Raggio -Raging Brook -Raglan -Ragland -Ragle -Ragle Ranch -Ragmans -Rago -Ragonese -Rags -Ragsdale -Ragstone -Rahara -Rahatyn -Rahlves -Rahn -Rahncliff -Rahul -Rahway -Rahway River -Raich -Raider -Raiders -Raiff -Raikes -Raikes Wood -Rail -Railey -Railroad -Railroad Grade -Railroad Grade Fire -Railroad Seekonk -Railshead -Railside -Railton -Railway -Raimond -Raimonde -Rain -Rain Cloud -Rain Meadow -Rain Tree -Raina -Rainbow -Rainbow Bay -Rainbow Bridge -Rainbow Ranch -Rainbow Ridge -Rainbow View -Raincliffe -Raindance -Raindrop -Raine -Rainer -Raineri -Raines -Rainey -Rainflower -Rainford -Rainforth -Rainham -Rainier -Rainow -Rainsboro -Rainsborough -Rainsborowe -Rainsford -Rainshaw -Rainsong -Rainsville -Rainswood -Raintree -Rainview -Rainville -Rainwell -Rainwood -Rainy Spring -Raisig -Raith -Rak -Rake -Rakehill -Rakewood -Rakstad -Ralco -Raldne -Rale -Raleana -Raleigh -Raleigh Farm -Raleigh Hill -Raleigh Tavern -Raley -Ralliwood -Ralls -Rally -Ralmar -Ralmark -Ralph -Ralph Crossen -Ralph G Hamlin Jr -Ralph Jackson -Ralph Lee -Ralph Mann -Ralph Talbot -Ralph Young -Ralphs -Ralsey -Ralston -Ralston Ranch -Ralstone -Ralwood -Ram -Ram Ridge -Rama -Ramada -Ramal -Ramalho -Ramapo -Ramapo Brae -Ramapo Hills -Ramapo Mountain -Ramapo Valley -Ramble -Ramble Creek -Rambledown -Rambler -Rambler Rose -Ramblers -Ramblewood -Ramblin Rose -Rambling -Rambling Brook -Rambling Ridge -Rambling Rose -Rambling Woods -Rambow -Rambush -Ramby -Ramella -Ramen -Ramer -Ramey -Ramgren -Ramie -Ramillies -Ramish -Ramkay -Ramleh -Ramm -Rammer -Ramney -Ramon -Ramona -Ramondo -Ramone -Ramos -Ramoso -Rampart -Rampayne -Ramptons -Ramridge -Ramrod -Rams -Ramsay -Ramsbottom -Ramsbury -Ramscote -Ramsdale -Ramsdean -Ramsdell -Ramsden -Ramsden Park -Ramsell -Ramsey -Ramsey Main -Ramsgate -Ramshaw -Ramshead -Ramshorn -Ramslye -Ramstad -Ramstead -Ramstree -Ramulis -Ramuz -Ramview -Ran -Ranburn -Ranby -Rance -Rances -Ranch -Ranch River -Ranch View -Rancheria -Ranchero -Ranchette -Ranchita -Ranchito -Ranchland -Rancho -Rancho Adobe -Rancho Arroyo -Rancho Bernardo -Rancho Brazil -Rancho Caballo -Rancho Cabeza -Rancho Calabasas -Rancho Corralitos -Rancho Deep Cliff -Rancho Diablo -Rancho Higuera -Rancho Hills -Rancho Juan Inez -Rancho Laguna -Rancho Lindo -Rancho Madre -Rancho Manuella -Rancho McCormick -Rancho Palomares -Rancho Plaza -Rancho Prieta -Rancho Ramon -Rancho Rea -Rancho Rio -Rancho S Luado -Rancho Silva -Rancho Solano -Rancho Soquel -Rancho Todos Santos -Rancho Ventura -Rancho View -Rancho Vista -Rancho del Lago -Rancho la Baca -Ranchview -Ranchwood -Rancliffe -Rancom -Rand -Randal -Randale -Randall -Randall Farm -Randall Hill -Randall Island -Randall Ridge -Randalls Park -Rande -Randell -Randells -Randell’s -Randerson -Randi -Randle -Randlesham -Randlett -Rando -Randol -Randol Creek -Randolph -Randolph Macon -Random -Random Hills -Random Run -Randonstone -Randou -Rands -Rands Clough -Randville -Randwick -Randwood -Randy -Randys -Ranelagh -Ranelegh -Raneleigh -Raneys -Ranford -Ranfre -Ranfurley -Ranfurly -Range -Range Heights -Rangel -Rangeley -Rangely -Rangely Ridge -Rangemoor -Rangemore -Ranger -Rangers -Rangers Retreat -Rangeview -Rangeway -Rangewood -Rangley -Rangoon -Ranicar -Ranick -Ranier -Rankin -Rankine -Ranks Green -Ranleagh -Ranleigh -Ranleigh Manor -Ranlett -Ranley -Ranmere -Ranmore -Ranmore Common -Rannal -Ranney -Rannoch -Rannock -Ranport -Ransdell -Ransell -Ransfield -Ransley -Ransom -Ranson -Ranspot -Ranston -Ranters -Rantoul -Rantoule -Ranulf -Ranworth -Rapelye -Raper -Raphael -Raphaels -Rapid -Rapidan -Rapids -Rapley -Rapley Preserve -Rapley Ranch -Rapley Ridge -Raposa -Rapp -Rappahannock -Rappahanock -Rappahanook -Rappax -Rappleyea -Rapsley -Raptor -Raquel -Raritan -Raritan Reach -Rasbottom -Rascher -Rashawn -Rashida Muhammad -Rashke -Raskin -Raskulinecz -Rasmussen -Rason -Raspberry -Raspberry Hill -Raspberry Plain -Rasper -Rassani -Rassbottom -Rassignini -Rastell -Rasweiler -Rat -Ratchford -Ratcliff -Ratcliffe -Ratcliffe Cross -Ratcliffe Manor -Ratekin -Raters -Rath -Rathan -Rathane -Rathbone -Rathbourne -Rathbun -Rathburn -Rathcoole -Rathen -Rathfern -Rathgar -Rathlin -Rathmann -Rathmel -Rathmell -Rathmore -Rathwell -Ratlin -Ratner -Rattle Snake Hill -Rattlesnake -Rattlesnake Hill -Ratto -Rattray -Rattwick -Ratzer -Rau -Raub -Raul -Raupach -Raupp -Rausch -Ravatt -Rave -Ravel -Raveley -Ravelston -Raven -Raven Brook -Raven Hill -Raven Rock -Ravena -Ravenbank -Ravendale -Ravenel -Ravenet -Ravenfield -Ravenglass -Ravenhill -Ravenhurst -Ravenna -Ravenoak -Ravenoak Park -Ravenor Park -Ravenrock -Ravens -Ravens Cove -Ravens Crest -Ravens Head -Ravensbourne -Ravensbourne Park -Ravensbury -Ravenscliffe -Ravenscourt -Ravenscraig -Ravenscroft -Ravensdale -Ravensdon -Ravenshaw -Ravenshurst -Ravenslea -Ravensmead -Ravenstone -Ravenswood -Ravensworth -Ravenue -Ravenwood -Ravina -Ravine -Ravine Forest -Ravine Park -Ravine View -Ravine Woods -Ravinia -Ravinia Park -Ravinoaks -Ravizza -Ravnescroft -Ravona -Ravoux -Raw -Rawcliffe -Rawding -Rawdon -Rawhide -Rawhiti -Rawleigh -Rawles -Rawley Springs -Rawling -Rawlings -Rawlins -Rawlinson -Rawls -Rawlyn -Rawnsley -Rawreth -Rawson -Rawson Bridge -Rawson Hill -Rawsthorne -Rawston -Rawstorn -Rawstorne -Rawstron -Ray -Ray Harvey -Ray Hill -Ray Lea -Ray Leonard -Ray Lodge -Ray May -Ray Mead -Ray Moses -Ray Park -Ray Wise -Rayanna -Raybarn -Raybel -Rayben -Raybor -Rayborn Creek -Raybrook -Rayburn -Raycroft -Raydale -Raydean -Raydol -Raydon -Raydons -Raye -Rayfield -Rayford -Rayjohn -Rayland -Raylands -Raylands Way Cranmore -Rayleigh -Rayleigh Downs -Raylen -Rayley -Raylow -Raym -Raymar -Rayme -Raymead -Rayment -Raymer -Raymond -Raymond Hall -Raymonds -Raymoor -Raymound -Raymundo -Raymus -Raynahm -Rayne -Raynel -Raynel Mount Raynel -Rayner -Rayners -Raynes -Raynham -Raynold -Raynor -Raynsford -Raynton -Raynville -Rays -Rayshire -Rayson -Raywood -Razo -Rea -Reabrook -Reach -Read -Read Head -Readbourne -Reade -Reader -Readers -Reades -Reading -Reading Arch -Reading Hill -Readon -Reads -Reads Rest -Readscroft -Readville -Ready -Readys -Reagan -Reagent -Reaghs Farm -Real -Reality -Realm -Realton -Ream -Reamer -Reamwood -Reamy -Reaney -Reaper -Rear Abbey -Rear Main -Rear Perkins -Rear Wildwood -Rear of Marsh -Rearden -Reardon -Reares -Reason -Reaston -Reaves -Reavis -Reb -Reb Yank -Reba -Rebboli -Rebeau -Rebecca -Rebecca Park -Rebeiro -Rebekah -Rebel -Rebel Run -Rebel Walk -Rebelo -Rebels -Reber -Recard -Recht -Recino -Recker -Reckinger -Reckitt -Reconcilliation -Record -Recovery -Recreation -Recreation Ground -Recreation Park -Rector -Rectory -Rectory Park -Reculver -Recycle -Recycling -Red -Red Oak -Red Acre -Red Admiral -Red Alder -Red Apple -Red Ash -Red Bank -Red Bark -Red Barn -Red Barracks -Red Berry -Red Birch -Red Bird -Red Branch -Red Brick -Red Brick Farm -Red Bridge -Red Bud -Red Cedar -Red Cedar Point -Red Cedars -Red Cherry -Red Circle -Red Clay -Red Cloud -Red Clover -Red Coach -Red Coat -Red Cottage -Red Cow -Red Creek -Red Cross -Red Cypress -Red Deer -Red Dog Creek -Red Eagle -Red Elk -Red Fall -Red Farm -Red Fern -Red Forest -Red Fox -Red Frank -Red Gate -Red Grave -Red Ground -Red Hall -Red Harvest -Red Haven -Red Haw -Red Hawk -Red Hawk Canyon -Red Hill -Red Hills -Red Hook -Red Horse Tavern -Red House -Red Jacket -Red Jade -Red Leaf -Red Lion -Red Lion Lower -Red Maple -Red Miles -Red Mill -Red Mine -Red Mountain -Red Oad -Red Oak -Red Oak Service -Red Patch -Red Peak -Red Pheasant -Red Pine -Red Ribbons -Red Ridge -Red River -Red Robin -Red Rock -Red Rocks -Red Rome -Red Roof -Red Rose -Red Rum -Red Sherry -Red Sky -Red Spring -Red Spruce -Red Tail -Red Top -Red Willow -Red Winery -Red Wing -Red Wood -Redacre -Redan -Redar -Redbank -Redberry -Redbird -Redbourn -Redbournbury -Redbourne -Redbournebury -Redbrdge -Redbridge -Redbrook -Redbud -Redburn -Redcar -Redcastle -Redchurch -Redcliff -Redcliffe -Redclyffe -Redco -Redcoach -Redcoat -Redcot -Redcote -Redcourt -Redcroft -Redd -Reddall -Reddan -Redden -Redden Court -Reddfield -Reddick -Redding -Redding Park -Redding Ridge -Reddings -Reddington -Reddington Ridge -Reddins -Reddish -Reddish Vale -Reddisher -Reddown -Reddy -Rede Court -Rede Wood -Redehall -Redeker -Reden -Reder -Redesmere -Redfearn -Redfern -Redfield -Redford -Redgap -Redgate -Redgrave -Redgrove -Redgum -Redhall -Redhatch -Redhaven -Redhawk -Redhead -Redhill -Redhills -Redhook -Redhouse -Reding -Redington -Redins -Redisher -Redlac -Redlake -Redland -Redlands -Redleaf -Redleaves -Redman -Redmans -Redmayne -Redmead -Redmen -Redmere -Redmiles -Redmire -Redmond -Redmont -Redmoor -Redmore -Redmount -Redmyre -Rednal -Redneck -Redner -Redoak -Redoaks -Redondo -Redondo Beach -Redoubt -Redpine -Redpol -Redpoll -Redricks -Redriff -Redriffe -Redrock -Redrose -Redruth -Redshank -Redshaw -Redskin -Redskin Park -Redskins -Redstart -Redstock -Redston -Redstone -Redstone Hill -Redtail -Redthorn -Redvales -Redvers -Redvers Buller -Redview -Redwall -Redwell -Redwing -Redwings -Redwood -Redwood Canyon -Redwood Gulch -Redwood Heights -Redwood Hill -Redwood Hwy Frntg -Redwood Lodge -Redwood Oak -Redwood Retreat -Redwood Shores -Redwood Terrace -Redwood Tree -Reebenacker -Reece -Reece Heights -Reecemar -Reed -Reed Crescent Bryony -Reed Hall -Reed Hill -Reed Knoll -Reed Ranch -Reedbird -Reede -Reeder -Reedgate -Reedham -Reedham Park -Reedhurst -Reedie -Reedling -Reeds -Reeds Mill -Reedsdale -Reedsfield -Reedshaw -Reedswood -Reedworth -Reedy -Reedy Brook -Reedy Meadow -Reef -Reef Point -Reely -Reem -Reenglass -Rees -Reese -Reetey -Reeve -Reeves -Reevey -Refinement -Refinery -Reflection -Reflections -Reform -Refugio -Refugio Valley -Refy -Regal -Regal Lily -Regal Oak -Regal West -Regal Wood -Regalia -Regan -Regan Hall -Reganti -Regarder -Regarth -Regas -Regatta -Regency -Regency Crest -Regency Forest -Regency Grove -Regency Knoll -Regency Manor -Regency Oaks -Regency Park -Regency Ridge -Regency Woods -Regeneration -Regent -Regent Park -Regents -Regents Park -Regents Tower -Regentville -Regentwood -Reger -Regimental -Regina -Reginald -Regio -Region -Regional -Regional Center -Regis -Regnart -Regnart Canyon -Regnid -Regor -Regrave -Regulos -Regulus -Regwill -Rehbaum -Rehling -Rehn -Rehrmann -Reiby -Reich -Reichelt -Reicher -Reichert -Reichling -Reichman -Reid -Reid Pond -Reidel -Reidhaven -Reidmond -Reids Hill -Reids Roost -Reidsville -Reifel -Reiffel -Reigate -Reiger -Reighton -Reigl -Reign -Reihl -Reiker -Reiland -Reiley -Reiling -Reille -Reilleys -Reilly -Reiman -Reimche -Reimer -Reimers -Reims -Rein -Reina -Reina del Mar -Reindeer -Reinekers -Reinelt -Reiner -Reiners -Reinert -Reingold -Reinhard -Reinhardt -Reinhart -Reinhold -Reinickendorf -Reinking -Reinman -Reinmann -Reino -Reins Lee -Reinwood -Reis -Reisewitz -Reising -Reisling -Reisner -Reiss -Reiten -Reiter -Reith -Reitveldt -Reitz Lake -Relander -Relay -Reld -Relda -Reldyes -Relentless -Relf -Reliance -Reliant -Reliez Highland -Reliez Valley -Relihan -Relkin -Rellim -Relocation -Relyea -Rem -Rembrandt -Rembrant -Remco -Rememberance -Remembrance -Remenham -Remenham Church -Remer -Remi -Remick -Remigio -Remillard -Remin -Remington -Remital -Remly -Remmel -Remmey -Remmos -Remnant -Remo -Remora -Remsen -Remsens -Remson -Remuda -Remuera -Remus -Ren -Rena -Renaissance -Renaldo -Renard -Renate -Renaud -Renault -Renaux -Renchler -Rendall -Rendlesham -Rendon -Rene -Renee -Renee Ann -Renforth -Renfrew -Renfro -Renhult -Reni -Renida -Renie -Renison -Renita -Renke -Renken -Renker -Renmar -Renmark -Renmin -Renmuir -Renn -Rennee -Rennell -Renner -Rennes -Rennet -Rennie -Rennie Smith -Renninger -Renny -Reno -Renoir -Renoir Port -Renolds -Renouf -Renoux -Renova -Renown -Renshaw -Rensselaer -Rensslear -Rental Car -Renters -Renton -Renton Maple Valley -Rentoul -Renway -Renwick -Renwick Park -Renwood -Renz -Renzo -Reo -Reock -Reon -Repetti -Repetto -Replingham -Report -Reporton -Reposa -Repository -Reposo -Reppan -Reppy -Representative -Reprise -Repton -Repton Manor -Republic -Republican -Requa -Reque -Resaca -Rescigno -Rescue -Research -Research Park -Reseau -Reseca -Reseda -Reservation -Reserve -Reservior -Reservoir -Reservoir Access -Reservoir Heights -Reservoir Hill -Resevoir -Residence -Residency -Resident -Reskin -Resnik -Resolution -Resota -Response -Ressa -Rest -Rest Point -Restarick -Restful -Restharrow -Resthaven -Reston -Restormel -Restwell -Restwood -Resty -Reta -Retford -Retirement -Retiro -Retner -Retrato -Retreat -Retriever -Retrop -Retta -Rettendon -Rettew -Rettig -Rettman -Return -Retz -Reuben -Reubens -Reunion -Reuss -Reuten -Reuter -Rev Henry -Rev JJ Evans -Rev Thomas Hooker -Reva -Reva Ridge -Revel -Revell -Revell Downs -Revelon -Revels -Revelstok -Revelstoke -Revenge -Revenna -Revensbourne -Revensey -Reventlow -Rever -Revere -Revere Beach -Revere House -Reverend Burns -Reverend Davis -Reverend R A Burke -Reverend Walton -Reverse -Revey -Revie -Review -Reville -Revillo -Revingstone -Revock -Revoir -Revolution -Revolutionary -Revolutionary Ridge -Revonah -Revonna -Rewe -Rewell -Rewley -Rex -Rexburg -Rexford -Rexhame -Rexland -Rexleigh -Rexmore -Rey -Reyam -Reycraft -Reycroft -Reydon -Reyem -Reyer -Reyes -Reymont -Reymouth -Reyna -Reynal -Reynaldo -Reynard -Reynards -Reynardson -Reynaud -Reynell -Reyner -Reynold -Reynolds -Reynolds Mill -Reynosa -Reyome -Reywood -Rfd Checker -Rfd Coach -Rfd Country Club -Rfd Lexington -Rfd Lincoln -Rfd Old Hicks -Rfd Popp -Rfd Shenandoah -Rfd Shiloh -Rhame -Rhapsody -Rhea -Rheam -Rheem -Rhen -Rhett -Rhianna -Rhine -Rhinecliff -Rhinehart -Rhinelander -Rhinesmith -Rhinestone -Rhinette -Rhita -Rhiwlas -Rhoades -Rhoda -Rhode -Rhode Hall -Rhode Harbor -Rhode Island -Rhodell -Rhodenda -Rhodes -Rhodesia -Rhodeswell -Rhodeswood -Rhodewell -Rhodin -Rhododendron -Rhodora -Rhodrons -Rhody -Rhonda -Rhonda Rheault -Rhondda -Rhone -Rhos -Rhosleigh -Rhoy -Rhubena -Rhude -Rhuland -Rhus -Rhus Ridge -Rhyan -Rhyl -Rhynas -Rhys -Ria -Riach -Rialto -Riano -Rib -Ribble -Ribblesdale -Ribbon -Ribbs -Ribchester -Ribeiro -Ribera -Ribero -Ribier -Ribston -Ribstone -Ric -Rica -Ricard -Ricardo -Ricca Farm -Riccardo -Riccards -Riccat -Ricci -Ricciuti -Rice -Rice City -Rice Creek -Rice Lake -Rice Mill -Rice Point -Rice Spring -Ricefield -Riceman -Rich -Rich Acres -Rich Branch -Rich Hill -Rich Meadow -Rich Valley -Richal -Richard -Richard Allen -Richard Burch -Richard House -Richard J Brown -Richard Lawrence -Richard Manor -Richard Meyjes -Richard Montgomery -Richard Simpson -Richard Tongue -Richardi -Richards -Richardshaw -Richardson -Richardson Nursery -Richbell -Richborough -Richbourne -Richdale -Riche -Richelieu -Richenbacher -Richert -Riches -Richfield -Richford -Richgar -Richgrain -Richie -Richion -Richland -Richland Grove -Richland Valley -Richlands -Richlee -Richman -Richmere -Richmond -Richmond George -Richmond Beach -Richmond George -Richmond Hill -Richmond Meech -Richmond Park -Richmond Valley -Richmondfield -Richmount -Richnee -Richter -Richter Farm -Richton -Richton Square -Richview -Richwood -Rick -Rickabear -Rickard -Rickards -Rickbern -Rickenbacker -Ricker -Rickerhill -Rickerman -Rickert -Rickett -Ricketts -Ricketts Hill -Ricketty -Rickey -Rickland -Rickling -Rickling Green -Rickman -Rickmans -Rickmansworth -Rickover -Ricks -Ricksons -Rickstones -Rickthorne -Ricky -Ricky Dick -Rico -Ricoli -Ricord -Ricroft -Riddell -Ridder Park -Riddiford -Ridding -Riddings -Riddio -Riddle -Riddles -Riddlesdale -Riddlesdown -Riddons -Riddy -Riden -Rideout -Rider -Rider Ridge -Riders -Riderwood -Ridg Gate -Ridgdale -Ridge -Ridge Bluff -Ridge Brook -Ridge Camp -Ridge Chapel -Ridge Cliff -Ridge Cove -Ridge Creek -Ridge Croft -Ridge Crossing -Ridge Farm -Ridge Fire -Ridge Ford -Ridge Haven -Ridge Heights -Ridge Hill -Ridge Hill Farm -Ridge Knoll -Ridge Moor -Ridge Oak -Ridge Park -Ridge Point -Ridge Pond -Ridge Ponds -Ridge Retreat -Ridge River -Ridge Rock -Ridge Top -Ridge View -Ridge Wood -Ridgebrook -Ridgecreek -Ridgecrest -Ridgecroft -Ridgecrop -Ridgedale -Ridgedell -Ridgefarm -Ridgefield -Ridgefield Village -Ridgegate -Ridgegreen -Ridgehill -Ridgehurst -Ridgeland -Ridgeland Manor -Ridgelands -Ridgelawn -Ridgelee -Ridgeley -Ridgeline -Ridgely -Ridgemark -Ridgemead -Ridgemist -Ridgemont -Ridgemoor -Ridgemore -Ridgemount -Ridgepoint -Ridgerock -Ridgeside -Ridgestone -Ridgetop -Ridgevale -Ridgeview -Ridgeville -Ridgewald -Ridgewater -Ridgeway -Ridgewell -Ridgewick -Ridgewind -Ridgewood -Ridgewood Fire -Ridgley -Ridgmont -Ridgmount -Ridgway -Ridgway Hill -Ridgwell -Ridham -Riding -Riding Center -Riding Club -Riding Court -Riding Fields -Riding Fold -Riding Hood -Riding House -Riding Loop -Riding Ridge -Riding Trail -Ridings -Ridlands -Ridler -Ridley -Ridling -Ridlon -Ridout -Ridpath -Ridsdale -Riebli -Riedel -Riedell -Rieder -Riedesel -Riedy -Riegel -Riegelmann -Rieke -Rieman -Rienzi -Riesco -Riesgraf -Riesling -Rieter -Riethel -Rieti -Riffa -Riffams -Riffel -Riffhams -Riffle -Riffle Ford -Riffles -Rifhams -Rifle -Rifle Range -Rifle Ridge -Riford -Rifton -Riga -Rigault -Rigby -Rigdale -Rigden -Rigdon -Rigel -Rigeley -Rigelsford -Rigene -Rigent -Rigery -Rigg -Rigger -Riggindale -Riggs -Riggs Hill -Riggs Manor -Right of Way -Righter -Righters Mill -Rigi -Rigler -Rignall -Rignals -Rigney -Rignold -Rigoletto -Rigoli -Rigor -Rigsby -Rigshill -Rigton -Riis Park -Riivendell -Riker -Riker Hill -Riley -Riley Lake -Riley Ridge -Rileyford -Rileys Lock -Rill -Rillbank -Rillo -Rilma -Rim -Rim Rock -Rim of the Redwoods -Rimbach -Rimbley -Rimby -Rimer -Rimfire -Rimington -Rimini -Rimkus -Rimlet -Rimmer -Rimmington -Rimrock -Rimsdale -Rimswell Holt Redcar -Rimu -Rimwood -Rimworth -Rinaldo -Rinard -Rincon -Rincon Fire -Rinconada -Rinda -Rindge -Rindle -Rindo Park -Rindone -Rinear -Riner -Ring -Ring Bolt -Ring Dove -Ring Hey -Ring Neck -Ring Valley -Ringcroft -Ringden -Ringe -Ringefield -Ringel -Ringenback -Ringer -Ringers -Ringfield -Ringford -Ringgold -Ringland -Ringler -Ringlestone -Ringlet -Ringley -Ringley Park -Ringling -Ringlow -Ringlow Park -Ringmer -Ringmoor -Ringmore -Ringneck -Ringo -Ringold -Rings End -Ringshall -Ringshaw -Ringslade -Ringstead -Ringway -Ringwood -Rini -Rink -Rinnock -Rintin -Rinwood -Rinzee -Rio -Rio Altos -Rio Blanco -Rio Bonito -Rio Bravo -Rio Chico -Rio Dixon -Rio Grande -Rio Hondo -Rio Linda -Rio Lindo -Rio Lobo -Rio Loma -Rio Mondego -Rio Nido -Rio Oso -Rio Poco -Rio Robles -Rio Serena -Rio Tierra -Rio Tinto -Rio Verde -Rio Vida -Rio Vista -Rio de Molinos -Rio del Mar -Rio del Ora -Riordan -Riparian -Ripe Apple -Ripley -Ripley Hill -Ripley Park -Ripleys Field -Ripon -Ripon Hall -Ripona -Rippburger -Rippenden -Rippersley -Rippingham -Ripple -Ripple Brook -Ripplemead -Ripplerock -Rippleview -Ripplewater -Ripplewood -Rippling -Rippling Branch -Rippling Brook -Rippling Pond -Rippling Ridge -Rippolson -Rippon -Rippon Lodge -Ripponden -Ripponden Nursery -Ripponden Old -Rippowam -Rips -Ripston -Risa -Risborough -Risch -Riscioni -Risden -Risdon -Rise -Rise Park -Risebridge -Risedale -Riseden -Risel -Riseldine -Riseley -Riser -Risha -Rishell -Rishton -Rishworth -Rishworth New -Rising -Rising Creek -Rising Dawn -Rising Glen -Rising Ridge -Rising Sun -Risinghill -Risingholme -Risk -Riske -Riskin -Risley -Rison -Risorta -Rispin -Rissington -Ristaino -Rita -Ritch -Ritchard -Ritchboro -Ritches -Ritchfield -Ritchie -Ritchie Marlboro -Ritchie Spur -Ritchings -Ritcroft -Riteway -Ritherdon -Ritie -Ritson -Rittenhouse -Ritter -Ritters -Rittner -Riva -Riva Ridge -Rival -Rival Moor -Rivanna -Rivanna River -Rivara -Rivard -Rivas -Rive -Rivelly -Riven Wood -Rivendell -Rivenoak -River -River Access -River Acres -River Airport -River Bank -River Bay -River Beach -River Bend -River Birch -River Bluff -River Club -River Clyde -River College -River Creek -River Crescent -River Crest -River Crossing -River Dell -River Edge -River Estates -River Falls -River Farm -River Farms -River Forest -River Front -River Gate -River Glen -River Grange -River Grove -River Heights -River Hill -River Hills -River Inn -River Island -River Landing -River Lawn -River Look -River Meadow -River Meadows -River Mill -River Mist -River Oak -River Oaks -River Park -River Plaza -River Point -River Pointe -River Ranch -River Rapids -River Ridge -River Rock -River Run -River Shore -River Swan -River Terrace -River Trail -River Tweed -River Valley -River View -River View Park -River View Quarry -River Village -River Walk -River Watch -River Wood -River Woods -RiverPark -Rivera -Riverark -Riverband -Riverbank -Riverbend -Riverbirch -Riverbluff -Riverboat -Riverboat Center -Riverbrook -Riverby -Rivercliff -Rivercourt -Rivercreek -Rivercrest -Riverdale -Riverdene -Riveredge -Riverfield -Rivergate -Riverhead -Riverhill -Riverholme -Riverhurst -Riverina -Riverlake -Riverland -Riverlands -Riverlane -Riverlawn -Riverlin -Rivermark -Rivermead -Rivermeads -Rivermist -Rivermont -Rivermoor -Rivermouth -Riverneck -Riverpark -Riverpoint -Riverrun -Rivers -Rivers Bend -Rivers Bluff -Rivers Edge -Rivers Reach -Rivers View -Riverscape -Riversdale -Riversdown -Riversend -Rivershill -Rivershire -Rivershore -Riverside -Riverside Park -Riverside Railroad -Riverside Run -Riverside Ter -Riverside View -Riverstone -Riversview -Riversville -Riverton -Rivertown -Rivertowne -Rivervale -Riverview -Riverview Acres -Riverview Rest -Riverwalk -Riverway -Riverwood -Riverwood Terrace -Riverwoods -Rivett -Riviera -Riviera Point -Riviera Sun -Rivington -Rivoir -Rivoli -Rivulet -Rix -Rixey -Rixford -Rixlew -Rixon -Rixsen -Rixson -Rixton -Rixtonleys -Riza -Rizal -Rizdon -Rizzo -Rizzolo -Roach -Roache -Road To the Ranches -Roading -Roading Brook -Roadrunner -Roads End -Roakes -Roald -Roamer -Roan -Roane -Roanne -Roanoke -Roaring Brook -Roaring Camp -Roaring Creek -Roaring Gate -Roark -Roarty -Roasalie -Roath -Rob -Rob Roy -Robak -Robander -Robandy -Robard -Robb -Robb Farm -Robbart -Robben -Robbern -Robbery Bottom -Robbia -Robbie -Robbin -Robbins -Robbins Farm -Robblee -Robby -Robbyn -Robecq -Roberge -Roberson -Robert -Robert Adam -Robert Arey -Robert Best -Robert Bigelow -Robert Bonazzoli -Robert Bowie -Robert Carter -Robert Dollar -Robert E Jason -Robert Evans -Robert F Toner -Robert Ford -Robert Frost -Robert Fulton -Robert Gabriel -Robert Grant -Robert H Harp -Robert Hall -Robert J Mathews -Robert Kirk -Robert L Smith -Robert L. Curbeam Jr. -Robert Lenox -Robert Lewis -Robert Louis -Robert M Bond -Robert Mays -Robert Memorial -Robert Miller -Robert Owen -Robert Parker Coffin -Robert Post -Robert Small -Robert Sproul -Robert T Palmer -Robert Treat Paine -Robert W Topham Jr -Robert York -Roberta -Roberto -Roberton -Roberts -Roberts Common -Roberts Cove -Roberts Lake -Roberts Orchard -Roberts Prospect -Roberts Ranch -Roberts Wood -Robertshaw -Robertson -Robertson Park -Roberttown -Robeson -Robey -Robeys Meadow -Robideaux -Robie -Robie Manor -Robilliard -Robin -Robin Ann -Robin Crest -Robin Dell -Robin Glen -Robin Hill -Robin Hood -Robin Meadow -Robin Oak -Robin Ridge -Robin Wood -Robina -Robincrest -Robindale -Robinette -Robinhood -Robinia -Robinridge -Robins -Robins Island -Robins Nest -Robinsbay -Robinsbridge -Robinsdale -Robinson -Robinson Creek -Robinson Jefferson -Robinson Landing -Robinsons Bay -Robinswood -Robinwood -Robison -Robjohns -Robken -Roblar -Roble -Roble Alto -Roble Ladera -Roble Ridge -Roble Veneno -Robleda -Robledo -Roblee -Robles -Robles Grandes -Robles Ranch -Robley -Roblyn -Roblynn -Robnel -Robovic -Robroy -Robs -Robsart -Robscott -Robshaw -Robsheal -Robshire Manor -Robson -Roburta -Robway -Roby -Robyn -Roc -Roc Fall -Roca -Rocart -Rocastle -Rocaton -Rocbaar -Rocca -Rocco -Rocfort -Roch -Rochambeau -Rochdale -Rochdale Old -Rochdate -Roche -Rochefort -Rochell -Rochelle -Rocher -Rochester -Rochester Way Reief -Rochester Way Relief -Rochester way Relief -Rochford -Rocina -Rock -Rock A Bye -Rock Anna -Rock Brook -Rock Canyon -Rock Cap -Rock Chapel -Rock Cliff -Rock Coast -Rock Cove -Rock Creek -Rock Creek Park -Rock Crystal -Rock Farm -Rock Fish -Rock Garden -Rock Glen -Rock Hall -Rock Harbor -Rock Hill -Rock Hollow -Rock House -Rock Island -Rock Lawn -Rock Ledge -Rock Lily -Rock Lodge -Rock Maple -Rock Meadow -Rock O Dundee -Rock Oak -Rock Point -Rock Ranch -Rock Ridge -Rock River -Rock Rose -Rock Run -Rock Spring -Rock Springs -Rock Valley -Rock Villa -Rock Wren -Rockanna -Rockaway -Rockaway Beach -Rockaway Breezy -Rockaway Point -Rockaway Valley -Rockbourne -Rockbridge -Rockburn -Rockburn Branch Park -Rockburn Hill -Rockburn Woods -Rockcliff -Rockcreek -Rockcrest -Rockcroft -Rockdale -Rockdale Plaza -Rockdove -Rockefeller -Rockenbach -Rockett -Rockfeller -Rockfield -Rockford -Rockford Service -Rockgate -Rockglen -Rockhall -Rockhampton -Rockhaven -Rockhill -Rockhold -Rockhold Creek -Rockhold Creek Shore -Rockhurst -Rockie -Rocking Horse -Rocking Spring -Rockingchair -Rockingham -Rockinghorse -Rockingstone -Rockins -Rockland -Rockland House -Rockland Park -Rocklands -Rocklawn -Rockledge -Rockleigh -Rockley -Rockliffe -Rocklin -Rocklyn -Rockmart -Rockmead -Rockmeadow -Rockmere -Rockmont -Rockmount -Rockne -Rockpile -Rockpoint -Rockpointe -Rockport -Rockridge -Rockrose -Rocks -Rocks Park -Rocksborough -Rocksbury -Rockshaw -Rockshire -Rockspray -Rockstone -Rockstrech -Rockton -Rockvale -Rockview -Rockville -Rockware -Rockway -Rockwell -Rockwin -Rockwood -Rockwood Heights -Rockwood Ranch -Rocky -Rocky Beach Farm -Rocky Bend -Rocky Branch -Rocky Brook -Rocky Creek -Rocky Crest -Rocky Dundee -Rocky Gap -Rocky Glen -Rocky Heights -Rocky Hill -Rocky Hills -Rocky Hollow -Rocky Knoll -Rocky Ledge -Rocky Meadow -Rocky Mount -Rocky Mountain -Rocky Nook -Rocky Point -Rocky Pond -Rocky Ravine -Rocky Ridge -Rocky Run -Rocky Shore -Rocky Spring -Rocky Springs -Rocky Top -Rocky Valley -Rocky Woods -Rockyledge -Rockywater -Rocliffe -Rocque -Rocsam Park -Rocton -Rod -Rod Beudry -Rod Laver -Rod Mill -Roda -Rodao -Rodborough -Rodbridge -Rodby -Rodd -Rodda -Rodeck -Roden -Rodenburg -Rodenhurst -Rodens -Rodeo -Rodeo Ridge -Roder -Roderick -Rodes -Rodgers -Rodgers Gravel Pit -Rodiman -Roding -Rodings -Rodley -Rodling -Rodman -Rodmarton -Rodmell -Rodmere -Rodmill -Rodney -Rodnick -Rodoani -Rodona -Rodondo -Rodonovan -Rodrigues -Rodriguez -Rodriques -Rodsall -Rodway -Rodwell -Roe -Roe Cross -Roe Downs -Roe Green -Roeacre -Roebling -Roebuck -Roeburne -Roeckel -Roedean -Roeder -Roediger -Roehampton -Roehampton High -Roehmer -Roehrs -Roel -Roeller -Roemer -Roentgen -Roesler -Roesner -Roessler -Roessner -Roestock -Rofant -Rofay -Rofe -Roff -Roff Point -Roffen -Roffes -Roffey -Rofford -Rogan -Rogart -Rogell -Roger -Roger Bacon -Roger Canoe Hollow -Roger Dimmick -Roger Goodwin -Roger Williams -Rogerio -Rogers -Rogers Cockrell -Rogers Farm -Rogers Heights -Rogers Park -Rogers Rough -Rogers Wood -Rogge -Roggel -Rogina -Rogowski -Rogue River -Rohan -Rohatyn -Rohavic -Rohde -Rohe -Rohini -Rohl -Rohlffs -Rohlwing -Rohn -Rohrer -Rohrman -Rohrsen -Rohrssen -Roine -Rojewski -Rojina -Roke -Roke Lodge -Rokeby -Roker -Roker Park -Rokers -Rokesby -Rokesly -Rokeva -Rokewood -Rokosz -Rolan -Roland -Roland Baxter -Rolander -Rolando -Rolee -Roleen -Rolerson -Rolestone -Roley -Rolf -Rolfe -Rolison -Roliver -Roll -Roll Shop -Rollesby -Rolleston -Rollie -Rollie Shepherd -Rollin -Rollin Acres -Rolling -Rolling Acres -Rolling Brook -Rolling Field -Rolling Forest -Rolling Fork -Rolling Glen -Rolling Green -Rolling Hill -Rolling Hills -Rolling Hlls -Rolling Holly -Rolling House -Rolling Knolls -Rolling Meadow -Rolling Meadows -Rolling Oak -Rolling Oaks -Rolling Plains -Rolling Ridge -Rolling River -Rolling Rock -Rolling Tree -Rolling View -Rolling Views -Rolling Wood -Rollingdale -Rollingdell -Rollingridge -Rollingside -Rollingstone -Rollingtop -Rollingwood -Rollingwoods -Rollinmead -Rollins -Rollins Ford -Rollinson -Rollo -Rolls -Rolls Park -Rollscourt -Rollstone -Rollswood -Rollwind -Rolly -Rollyn L Anderson -Rolph -Rolt -Rolton -Rolvenden -Rolyn Hills -Roma -Romack -Romagnolo -Romain -Romaine -Roman -Roman Farm -Roman Villa -Romana -Romanelli -Romanes -Romanfield -Romanhurst -Romani -Romanko -Romano -Romanowski -Romany -Romar -Romayne -Rombalds -Romberg -Rombouts -Romden -Rome -Romeo -Romeoville -Romer -Romero -Romey -Romeyn -Romford -Romier -Romig -Romiga -Romiley -Romilly -Romily -Romines -Romke -Romley -Romlon -Rommany -Rommel -Romney -Romney Lock -Romney Marsh -Romola -Romona -Romondt -Romp -Romscho -Romsey -Romsley -Romulus -Ron Cowan -Ron Lee -Ron Mace -Rona -Ronada -Ronaele -Ronald -Ronald Beall -Ronald P. Safer -Ronald Park -Ronalds -Ronaldstone -Ronan -Ronarm -Ronart -Ronbru -Ronco -Ronda -Ronde -Rondeau -Rondee -Rondel -Rondelay -Rondell -Rondin -Rondini -Rondorey -Rondu -Roneck -Ronek -Ronelean -Roney -Ronfearn -Ronhill -Ronian -Ronkonkoma -Ronni -Ronnie -Ronny -Rons -Ronson -Ronsu -Ronver -Ronwood -Rony -Ronzheimer -Rood -Roodlands -Roof -Rook -Rook End -Rookcross -Rooke -Rookery -Rookesley -Rookfield -Rooks -Rookstone -Rookwood -Rooley -Rooley Moor -Roome -Rooms -Rooney -Roop -Roos -Roosa -Roosevel -Roosevelt -Rooster -Root -Rootes -Roothill -Roots -Roots Hall -Rope -Ropeknot -Ropemaker -Roper -Ropers -Ropery -Ropes -Ropes Creek -Ropes Crossing -Ropley -Roppolo -Roque Moraes -Roquena -Roquette -Rorano -Rorke -Rorty -Ros Emily -Rosa -Rosa Blanca -Rosa Morada -Rosa Moss -Rosa Parks -Rosa Vista -Rosabel -Rosabell -Rosada -Rosado -Rosal -Rosalia -Rosalie -Rosalind -Rosalinda -Rosaline -Rosalita -Rosalla -Rosamond -Rosamun -Rosamund -Rosanna -Rosanne -Rosano -Rosaria -Rosarie -Rosario -Rosary -Rosaryville -Rosas -Rosaville -Rosbach -Roscoe -Roscoe Maverick -Roscoe Rowe -Roscommon -Roscow -Roscrea -Rose -Rose Acres -Rose Ann -Rose Anna -Rose Anne -Rose Arbor -Rose Bank -Rose Bates -Rose Bay -Rose Blossom -Rose Bush -Rose Cottage -Rose Creek -Rose Crest -Rose Ellen -Rose Farm -Rose Forest -Rose Garden -Rose Glen -Rose Hall -Rose Hatch -Rose Haven -Rose Hey -Rose Hill -Rose Kennedy -Rose Kiln -Rose Marie -Rose Mary -Rose Park -Rose Payten -Rose Point -Rose Ranch -Rose Ridge -Rose View -Rose Vine -Rose Wood -Rosea -Roseacre -Roseann -Roseanna Park -Roseanne -Rosebank -Rosebay -Roseberry -Roseberry Farm -Rosebery -Rosebine -Rosebloom -Rosebowl -Rosebriar -Rosebridge -Rosebrrok -Rosebud -Rosebury -Rosebush -Roseby -Roseclair -Rosecliff -Rosecourt -Rosecraft -Rosecran -Rosecrest -Rosecroft -Rosecroft Village -Roseda -Rosedale -Rosedene -Rosedew -Rosedown -Roseen -Rosefarm -Rosefinch -Roseford -Rosegarden -Rosegarth -Rosegate -Roseglen -Rosegold -Rosegum -Rosehall -Rosehaven -Rosehay -Roseheath -Rosehill -Roselake -Roseland -Roselands -Roselare -Roselawn -Roselea -Roseleaf -Roseleigh -Roselin -Rosell -Rosella -Roselle -Roselli -Roselynn -Rosemar -Rosemarie -Rosemary -Rosemead -Rosemeade -Rosemear -Rosemeath -Rosemere -Rosemill -Rosemily -Rosemont -Rosemont Hills -Rosemoor -Rosemore -Rosemount -Rosen -Rosenau -Rosenbaum -Rosenbrook -Rosenburger -Rosencrantz -Rosendale -Roseneath -Rosenfeld -Rosenfield -Rosengren -Rosenkranz -Rosensteel -Rosenstock -Rosenthal -Rosenthorpe -Rosenwinkle -Roseridge -Roserton -Roses -Rosethorn -Rosetta -Rosette -Rosevale -Rosevear -Roseveare -Rosevelt -Roseview -Roseville -Rosevine -Rosewalk -Rosewall -Rosewater -Roseway -Rosewind -Rosewood -Rosewood Manor -Rosey Bill -Rosford -Rosgill -Rosherville -Rosie Lee -Rosier -Rosiers Branch -Rosieville -Rosilian -Rosilie -Rosin -Rosina -Rosincress -Rosinweed -Rosita -Roskell -Roskelley -Roskin -Roslin -Roslindale -Roslyn -Roslyndale -Rosmead -Rosner -Roso -Rosol -Rosoman -Ross -Ross Arnold -Ross Branch -Ross Forry -Ross Hall -Ross Landing -Ross Lave -Ross Park -Ross Ridge -Ross Smith -Ross Valley -Rossal -Rossall -Rossback -Rossborough -Rossdale -Rosse -Rossefield -Rosselerin -Rossen -Rossenclough -Rossendale -Rosser -Rosseter -Rossett -Rossetti -Rossfold -Rossford -Rossi -Rossindel -Rossington -Rossini -Rossiter -Rosskelly -Rosslare -Rosslee -Rosslyn -Rosslyn Hill Pond -Rossmere -Rossmill -Rossmoor -Rossmore -Rossmoyne -Rossotto -Rossvale -Rossville -Rossway -Rosswood -Rosta -Rostella -Rostherne -Roston -Rostrevor -Rostron -Rostrov -Roswell -Rosy -Rosyman -Roszanski -Rota -Rotary -Rotcher -Rotella -Roth -Rothay -Rothbard -Rothbrook -Rothbury -Rothe -Rothenburg -Rother -Rotheram -Rotherbank Farm -Rotherbridge -Rotherby -Rothercombe -Rotherfield -Rotherham -Rotherhead -Rotherhill -Rotherhithe New -Rotherhithe Old -Rotherithe New -Rotherwick -Rotherwood -Rothery -Rothes -Rothesay -Rothgeb -Rothiemay -Rothley -Rothmans -Rothrack -Rothsay -Rothschild -Rothwell -Rothwell Churchfield -Rothwell Commercial -Roton -Rotorua -Rotterdam -Rottingdene -Rottkamp -Rottnest -Rotuma -Rotunda -Roualt -Roubound -Rouciano -Roudsby -Rouel -Rouen -Rouge -Rougemont -Rough -Rough Heys -Rough Rider -Roughan -Roughdown -Roughetts -Roughlea -Roughtley -Roughtown -Roughway -Roughwood -Rouillard -Rounce -Round -Round A Bend -Round Barn -Round Bay -Round Bush -Round Coppice -Round Hill -Round Hill Club -Round Ings -Round Lake -Round Lick -Round Oak -Round Pebble -Round Spring -Round Swamp -Round Table -Round Thorn -Round Top -Round Tree -Roundabout -Roundals -Roundaway -Roundbush -Roundel -Roundelay -Roundfield -Roundhay -Roundhead -Roundhill -Roundhouse -Roundmead -Roundmoor -Rounds -Roundshead -Roundstone -Roundtable -Roundthorn -Roundtop -Roundtree -Roundview -Roundwood -Roundy -Rounsevell -Rounthorn -Rountree -Roupell -Rourke -Rouse -Rouse Hill -Rouse Mill -Rousebarn -Rousham -Rousillon -Rousseau -Roussell -Roustein -Routh -Routier -Rovato -Roveout -Rover -Rovina -Roving Hills -Roving Wood -Row -Rowallan -Rowalt -Rowan -Rowan Field -Rowan Tree -Rowanberry -Rowanhurst -Rowans -Rowanside -Rowanswood -Rowantree -Rowanwood -Rowardennan -Rowarth -Rowayton -Rowayton Woods -Rowberry -Rowbotham -Rowcross -Rowdell -Rowden -Rowditch -Rowdon -Rowdown -Rowdowns -Rowe -Rowe Hill -Rowe Ranch -Rowell -Rowen -Rowena -Rowendale -Rowfant -Rowhill -Rowhook -Rowhurst -Rowland -Rowland Hill -Rowland Park -Rowlands -Rowlatt -Rowlett -Rowley -Rowley Bank -Rowley Bridge -Rowley Hill -Rowleys -Rowleys Point -Rowliff -Rowling -Rowlls -Rowly -Rowner -Rowney -Rowntree -Rowood -Rowplatt -Rowser -Rowsley -Rowson -Rowton -Rowton Grange -Rowzill -Roxalina -Roxana -Roxann -Roxanna -Roxanne -Roxas -Roxborough -Roxborough Park -Roxburg -Roxburgh -Roxbury -Roxbury Mills -Roxen -Roxeth Green -Roxeth Hill London -Roxholme -Roxie -Roxley -Roxton -Roxwell -Roxy -Roy -Roy Croft -Roy Frerichs -Roy Patrick -Royal -Royal Ann -Royal Anne -Royal Arch -Royal Beach -Royal Birkdale -Royal Burgandy -Royal Burkedale -Royal Carriage -Royal Coach -Royal Coachman -Royal Connaught -Royal County Down -Royal Court -Royal Creek -Royal Crest -Royal Crown -Royal Dane -Royal Docks -Royal Dominion -Royal Doulton -Royal Dublin -Royal Engineers -Royal Estates -Royal Exchange -Royal Forest -Royal Fox -Royal Foxhunt -Royal Garden -Royal George -Royal Georgian -Royal Glen -Royal Green -Royal Heights -Royal Hill Roan -Royal Hills -Royal Hospital -Royal Lake -Royal Lytham -Royal Meadow -Royal Melbourne -Royal Mint -Royal Oak -Royal Oaks -Royal Palm -Royal Park -Royal Patents -Royal Pier -Royal Plaza -Royal Porthcawl -Royal Portrush -Royal Quay -Royal Ridge -Royal Robin -Royal Saint George -Royal Sovereign -Royal Swan -Royal Tern -Royal Trees -Royal Troon -Royal Vale -Royal View -Royal West Kent -Royal Woods -Royal Worchester -Royal Worlington -Royalblue -Royalcrest -Royale -Royale Glen -Royale Park -Royall -Royalston -Royalthorn -Royalthorne -Royalton -Royalwood -Royat -Roycar -Royce -Roycraft -Roycroft -Royd -Royd Moor -Royden -Roydene -Roydon -Roydon Hall -Royds -Royds Farm -Royds Hall -Royle -Royle Green -Royley -Roylston -Roynton -Royon -Roys -Roys Hill -Royson -Royston -Royston Park -Royton -RoyzElle -Royzelle -Rozalyn -Rozanne -Rozella -Rozelle -Ruabon -Ruane -Ruann -Ruatan -Rub of Green -Rubar -Rubastic -Rubble -Rubbly -Rubens -Rubenstein -Rubicon -Rubicon Farm -Rubidoux -Rubie -Rubin -Rubina -Rubino -Rubion -Rubis -Rubish Tip -Ruble -Rublee -Rubus -Ruby -Ruby Hill -Rubye -Ruck -Rucker -Ruckholt -Ruckinge -Rucklers -Ruckman -Ruckmans -Ruckner -Rucks Farm -Rucliff -Rudd -Rudden -Rudder -Ruddock -Ruddpark -Ruddy -Ruddy Duck -Rudgear -Rudgwick -Rudheath -Rudley Green -Rudnick -Rudolf -Rudolph -Rudon -Rudsdale -Rudston -Rudy -Rudyard -Rudyard Kipling -Rueben -Ruel -Rueley Dell -Rues -Ruess -Rueth -Ruff -Ruffed Grouse -Ruffin -Ruffing -Ruffled Feather -Ruffled Feathers -Ruffner -Rufford -Rufo -Rufus -Rufus Isaacs -Rugani -Rugby -Rugdale -Ruge -Rugeley -Rugen -Ruger -Rugg -Ruggles -Ruggles Pond -Rugosa -Rugwood -Ruhe -Ruhl -Ruhlman -Ruins -Ruins Barn -Ruins Creek -Ruisdael -Ruislip -Ruisseau Francais -Ruit Farm -Rulana -Ruland -Rule -Rullman -Rulofson -Rum Point -Rum River -Rumana -Rumballs -Rumbles -Rumbolds -Rumbrook -Rumbullion -Rumford -Rumford Park -Rumney -Rumonoski -Rumple -Rumrill -Rumsay -Rumsey -Rumsford -Rumson -Rumstead -Rumworth -Run Common -Runabout -Runaldue -Runaway -Runbold -Runckel -Runcorn -Rundelac -Rundle -Runfold -Runford -Runge -Runger -Runham -Runiak -Runic -Runkenhage -Runley -Runnacles -Runner -Runneymede -Running Bear -Running Brook -Running Cedar -Running Creek -Running Deer -Running Farm -Running Foxes -Running Hill -Running Hills -Running Iron -Running Mare -Running Pump -Running Ridge -Running River -Running Springs -Runnymead -Runnymeade -Runnymede -Runsell -Runswick -Runtley Wood -Runway -Runwell -Runwick -Runyan -Runyon -Runyons -Rupack -Rupert -Rupertswood -Ruping -Rupp -Ruppert -Rural -Rural Estates -Ruritan -Rusch -Ruschin -Ruschli -Rusciano -Rusco -Ruscoe -Ruscombe -Rusden -Ruse -Rusfield -Rush -Rush Creek -Rush Green -Rush Hill -Rush Landing -Rush Meadow -Rush River -Rush River Park -Rushall -Rusham Park -Rushams -Rushbottom -Rushbrook -Rushbrooke -Rushbury -Rushcroft -Rushdean -Rushden -Rushdene -Rushen -Rushenden -Rusher -Rushes -Rushett -Rushetts -Rushey -Rushfield -Rushford -Rushgrove -Rushing Creek -Rushington -Rushingwater -Rushlake -Rushleigh -Rushley -Rushmead -Rushmere -Rushmoor -Rushmore -Rusholme -Rushout -Rushside -Rushton -Rushway -Rushwick -Rushwood -Rushworth -Rushy Meadow -Ruskin -Ruskindale -Ruskington -Ruskoi -Rusland -Rusland Park -Rusper -Russ -Russek -Russel -Russel Hill -Russel Snow -Russel Thomas -Russell -Russell Aldrich -Russell Branch -Russell Calvin -Russell Hill -Russell Park -Russell Thomas -Russell Woods -Russell Zepp -Russellcroft -Russells -Russells Pond -Russelmann Park -Russen -Russet -Russet Hill -Russet Wood -Russett -Russetts -Russi -Russia -Russia Branch View -Russia Dock -Russian -Russian River -Russington -Russler -Russo -Rust -Rust Craft -Rustad -Rusten -Rusthall -Rusthall High -Rustic -Rustic Gate -Rustic Hill -Rustic Hills -Rustic Rail -Rustic Ridge -Rustic View -Rustic Way -Rustic Wood -Rusticwood -Rusting -Rustle -Rustlewood -Rustling Leaves -Rustling Oak -Rustling Oaks -Ruston -Ruston Bridge -Rusty -Ruta -Rutan -Rutford -Rutgers -Ruth -Ruth Ann -Ruth B Swann -Ruth Davis -Ruth Ellen -Ruth Fitzgerald -Ruthellen -Ruthelma -Ruthen -Ruthenbeck -Rutherdale -Rutherford -Rutherford Hill -Rutherglen -Rutherland -Rutherwyk -Ruthie -Ruthin -Ruthland -Ruthven -Rutland -Rutland Round -Rutland View -Rutledge -Rutler -Rutley -Rutlish -Rutson -Ruttenberry -Rutter du Bois -Rutton Hill -Rutz -Rutz Lake -Ruus -Ruxbury -Ruxley -Ruxshire -Ruxton -Ruzac -Ryan -Ryan Ranch -Ryan Ronald -Ryanlynn -Ryarsh -Ryawa -Rybeck -Ryberg -Rybrook -Ryburn -Ryce -Rycon -Rycote -Rycroft -Rydal -Rydale -Rydall -Ryde -Ryde Vale -Rydeen -Rydell -Ryden -Rydens -Ryder -Ryder Hill -Ryderbrow -Ryders -Rydes -Rydes Hill -Rydge -Rydin -Rydley -Rydon -Rydons -Rye -Rye Bank -Rye Beach -Rye Brook -Rye Hill -Rye Lake -Rye Mill -Rye Ridge -Ryebank -Ryeburne -Ryecroft -Ryedale -Ryefield -Ryefields -Ryegate -Ryehill -Ryehurst -Ryeish -Ryeland -Ryelaw -Ryemead -Ryer -Ryer Island -Ryers -Ryersh -Ryerson -Ryes -Ryeside -Ryestone -Ryewood Farm -Ryfold -Rygate -Ryhiner -Ryhope -Rykmansford -Rylance -Ryland -Ryland Park -Rylands -Ryle -Ryle Park -Rylett -Ryleys -Rylston -Rylstone -Rymar -Rymer -Rymill -Rymney -Rynan -Rynda -Rynex -Ryon -Ryree -Ryrie -Rysbrack -Rystwood -Rythe -Ryton -Ryton Ridge -Ryvers -Ryves -Rywick -S Abbey Hill -S Abbott -S Aberdeen -S Abingdon -S Access -S Acorn Ridge -S Ada -S Adams -S Addison -S Adelaide -S Admiral -S Adsit -S Aero -S Ahrens -S Ahwahnee -S Airlite -S Albany -S Albert -S Aldine -S Alfred -S Alice -S Alleghany -S Allen -S Allport -S Alpine -S Amboy -S Amherst -S Anderson -S Andrew -S Ann -S Anna -S Anna Marie -S Annandale -S Anthony -S Anvil -S Apple -S Aqueduct -S Arbeiter -S Arbogast -S Arbor -S Arboretum -S Arbory -S Arch -S Archer -S Ardmore -S Arlington -S Arlington Heights -S Arlington Mill -S Arlington Ridge -S Arnell -S Arran -S Artesian -S Arthur -S Ash -S Ashbury -S Ashby -S Ashland -S Astor -S Atlantic -S Auburn -S Aurora -S Austin -S Avalon -S Avon -S Azar -S B -S Babcock -S Baker -S Baldwin -S Ball -S Balmiere -S Balmoral -S Balmoral Woods -S Barkley -S Barnaby -S Barrington -S Barry -S Barten -S Bartlett -S Barton -S Basham -S Basswood -S Batavia -S Battle Creek -S Bay -S Bayles -S Beach -S Bedford -S Beech Tree -S Beechcroft -S Beers -S Belair -S Belgrade -S Bell -S Belle -S Bellows -S Belmont -S Beloit -S Belt Circle -S Bend -S Bender -S Bennett -S Bensley -S Benson -S Bentley -S Benton -S Bereman -S Bergman -S Berkeley -S Berkshire -S Berteau -S Beulah Vista -S Beverly -S Beverwyck -S Bianco -S Big Run -S Biltmore -S Birchdale -S Birchwood -S Birkhoff -S Biscayne -S Bishop -S Bismark -S Black Forest -S Blackberry -S Blackhawk -S Blackstone -S Blaisdell -S Blake -S Blanchard -S Blanding Woods -S Bleeker -S Bloomingdale -S Blossom -S Blue Island -S Blue Water -S Bobby -S Bode -S Bodin -S Bonaparte -S Bond -S Bonfield -S Book -S Boston -S Bothwell -S Boulder -S Boundary -S Bourndale -S Bowdoin -S Boyd -S Bradford -S Bragg -S Brainard -S Braintree -S Bramble Hill -S Branch -S Brandon -S Branford -S Braymore -S Brennan -S Brentwood -S Brewster -S Briar -S Briarwood -S Bridge -S Bridle Creek -S Bridle Path -S Briggs -S Bright -S Brightway -S Bristol -S Brittany -S Broad -S Broadway -S Brockway -S Brook -S Brookdale -S Brookshore -S Brookside -S Brookwood -S Broome -S Brown -S Browning -S Bruner -S Brush -S Buchanan -S Buckhout -S Buesching -S Buffalo -S Buffalo Grove -S Burley -S Burnett -S Burnham -S Burno -S Burnside -S Burr -S Bush -S Business Park -S Butehorn -S Butler -S Butterfield -S Cabin -S Cabot -S Calhoun -S California -S Calumet -S Calumet River -S Canal -S Canal Bank -S Canalport -S Canterbury -S Cantigny -S Canton -S Canyon -S Cardinal -S Carillon -S Carlin Springs -S Carlinda -S Carll -S Carlton -S Carnot -S Caroline -S Carolyn -S Carondolet -S Carpenter -S Carrie -S Caryl -S Casey -S Cass -S Castlewood -S Catawba -S Cathedral -S Catherine -S Cathy -S Caton -S Cedar -S Cedar Lake -S Cedarbend -S Cedarcrest -S Center -S Central -S Central Park -S Centre -S Centre Island -S Centurion -S Century -S Champlain -S Channing -S Chapel -S Chappel -S Charles -S Charlotte -S Charlton -S Charter -S Chase -S Chatham -S Chatsworth -S Chelsea -S Chennault -S Cherokee -S Cherry -S Cherry Grove -S Cherry Valley -S Chester -S Chesterfield -S Chestnut -S Chevy Chase -S Cheyenne -S Chicago -S Chicago Beach -S Chicot -S Chippendale -S Chippewa -S Chowen -S Christiana -S Church -S Churchill -S Cicero -S Circle -S Claire -S Claremont -S Clarence -S Clarendon -S Clark -S Clay -S Cleburne -S Cleveland -S Clifton -S Clifton Park -S Cline -S Clinton -S Clyde -S Coach -S Cobblestone -S Codo -S Coghill -S Colborne -S Coles -S Colfax -S Colonial -S Colorado -S Columbia -S Columbine -S Columbus -S Comanche -S Commercial -S Commons -S Commonwealth -S Compass -S Connecticut -S Constitution -S Consumers -S Conway Farm -S Cook -S Coolidge -S Copper Beach -S Corabelle -S Corbett -S Corcoran -S Corliss -S Cornell -S Corona -S Cottage -S Cottage Grove -S Cottage Hill -S Cottenet -S Country -S Country Club -S Country Squire -S Countryside -S County Farm -S County Line -S Court House -S Coventry -S Covert -S Cowley -S Craft -S Cranberry -S Crandall -S Crawford -S Cree -S Creek -S Cregier -S Creighton -S Creme -S Crescent -S Crest -S Cretex -S Cretin -S Croissant -S Crowell -S Crystal -S Culpeper -S Cumberland -S Cuyler -S Cypress -S Dairy -S Dale -S Dallas -S Damen -S Daniel -S Daniels -S Dansher -S Dante -S Dartmoor -S Dauphin -S Davol -S Day -S Deal -S Dean -S Dearborn -S Dearman -S Decatur -S Dedlow -S Dee -S Deep Lake -S Deer Park -S Deere Park -S Deerpath -S Deerwood -S Delaplaine -S Delaware -S Delphia -S Demarest -S Dennis -S Denver -S Denvir -S Depot -S Derby -S Derby Glen -S Derbyshire -S Des Plaines -S Desplaines -S Detroit -S Devoe -S Dewey -S Diagonal -S Diamond Lake -S Dickerson -S Dinwiddie -S Division -S Dobson -S Dodd -S Dogwood -S Dominion -S Donald -S Donegal -S Donna -S Doolittle -S Doral -S Dorchester -S Doty -S Douglas -S Dove -S Dover -S Dow -S Dublin -S Duffy -S Duke -S Duluth -S Dunbar -S Dundee -S Dunlap -S Dunmoor -S Dupage -S Durst -S Dutcher -S Dymond -S Dyre -S E Frontage -S Eads -S Eagle -S Early -S East -S East End -S Eastcliff -S Eastern -S Eastgate -S Eastwood -S Eberhardt -S Eberhart -S Echo -S Eckar -S Edbrooke -S Eden -S Edgelawn -S Edgewater -S Edgewood -S Edinburgh -S Edison -S Edson -S Edward -S Edwin -S Eggleston -S Egret -S Ela -S Elaine -S Elder -S Eleanor -S Elevator -S Elgin -S Elizabeth -S Elk -S Elliott -S Ellis -S Ellsworth -S Ellyn -S Elm -S Elmer -S Elmhurst -S Elmwood -S Elodie -S Elroy -S Elsdon -S Elsie -S Elsner -S Emerald -S Emerson -S Eola -S Erie -S Erwing -S Escanaba -S Esmond -S Essex -S Euclid -S Eva -S Evans -S Evanslawn -S Evanston -S Everett -S Evergreen -S Ewing -S Exchange -S Exmoor -S Fairfax -S Fairfield -S Fairview -S Falls -S Farm -S Farm View -S Farmhill -S Farmingdale -S Farmington -S Farnsworth -S Farragut -S Farrell -S Farview -S Faxon -S Federal -S Feltus -S Fenwick -S Fern -S Fernwood -S Ferris -S Ferry -S Fielding -S Fillmore -S Finley -S Finn -S Fish Lake -S Flambeau -S Fletcher -S Florida -S Florida Grove -S Floyd -S Ford -S Fordham -S Forest -S Forestview -S Fork -S Forrest -S Forrestville -S Fort Scott -S Four Mile Run -S Fox -S Fox Wood -S Foxfire -S Francis -S Francisco -S Franklin -S Franzen -S Frederick -S Freeman -S Freemont -S Freeway -S Fremont -S French -S Front -S Frontage -S Frontenac -S Fryer -S Fullerton -S Fulton -S Gables -S Gail -S Galahad -S Gannon -S Garden -S Garfield -S Gary -S Gate -S Gates -S Gawain -S Gaylore -S Genoa -S George -S George Mason -S Georgia -S Gerald -S Gibbons -S Gibson -S Gifford -S Gilbert -S Giles -S Gladstone -S Glasgow -S Glebe -S Glen -S Glen Eagle -S Glendale -S Glenroy -S Glenview -S Glenwood -S Glover -S Golden Oak -S Golf -S Golfview -S Goodwin -S Gordon -S Gorman -S Gougar -S Grace -S Graceland -S Granada -S Grand -S Grand Monde -S Grand Prairie -S Grant -S Gratten -S Great Neck -S Greeley -S Green -S Green Bay -S Green Heron -S Green Meadow -S Green Meadows -S Greenbriar -S Greenbrier -S Greenbush -S Greene -S Greenfield -S Greenmount -S Greenview -S Greenway -S Greenwood -S Griffith -S Griggs -S Grotto -S Grove -S Gullikson -S Gunderson -S Haddow -S Hadfield -S Hager -S Hale -S Hall -S Halsted -S Ham Lake -S Haman -S Hamilton -S Hamlet -S Hamlin -S Hamline -S Hampton -S Hancock -S Hanover -S Hansen -S Harbor -S Harding -S Harlem -S Harold -S Harper -S Harriet -S Harrison -S Harry J Rogowski -S Hart -S Hartmann -S Hartshorne -S Hartwell -S Harvard -S Harvest -S Harvest Hills -S Harvey -S Haven -S Haverhill -S Hawthorne -S Hayes -S Hayne -S Hazel -S Hazel Hill -S Hazelton -S Healy -S Heath -S Heathcote -S Heather -S Heatherwood -S Hebbard -S Heights -S Helene -S Helmar -S Hemlock -S Henry -S Herbert -S Heritage -S Herman -S Hermitage -S Hermosa -S Herricks -S Hi Lusi -S Hickory -S High -S Highland -S Highlawn -S Highview -S Highway -S Highwood -S Hill -S Hillcrest -S Hillock -S Hills -S Hillsdale -S Hillside -S Hilton -S Hinkley -S Hobart -S Hobble Bush -S Hoey -S Holcomb -S Holcombe -S Holiday -S Holland -S Hollins Ferry -S Holly -S Holmdel -S Holyoke -S Homan -S Home -S Homer -S Homewood -S Honore -S Horners -S Hough -S Houston -S Howard -S Howell -S Hoxie -S Hoyne -S Hoyt -S Hubbard -S Hudson -S Humboldt -S Humphrey -S Hunter -S Huntington -S Hyde Park -S I Oka -S Illinois -S Ilwaco -S Independence -S Indian Trail -S Indiana -S Indianapolis -S Inge -S Ingleside -S Ingram -S Inman -S Iowa -S Iris -S Iron -S Iroquois -S Irving -S Ivanhoe -S Ives -S Ivy -S Jackson -S James -S Jamestown -S Jane -S Jasmine -S Jasper -S Jefferson -S Jeffery -S Jenkins -S Jennings -S Jensen -S Jerome -S Jessica -S Joalyce -S Joan -S John -S Johnson -S Joliet -S Jonquil -S Jordan -S Joseph -S Joyce -S Julia -S Julian -S June -S Juneau -S Justen -S Justine -S Kainer -S Kankakee -S Karlov -S Kaspar -S Kathey -S Kavanaugh -S Kean -S Keating -S Kedvale -S Kedzie -S Keefe -S Keeler -S Keeley -S Kemper -S Kendall -S Kenfig -S Kenilworth -S Kenmore -S Kennedy -S Kenneth -S Kensico -S Kensington -S Kent -S Kenton -S Kenwood -S Kerfoot -S Kerry -S Ketay -S Ketcham -S Kevin -S Kilbourn -S Kildare -S Kilkenny -S Kilpatrick -S Kimbark -S Kimberly -S Kinderkamack -S King -S Kings -S Kingston -S Kipling -S Kirkland -S Klemme -S Knight -S Knoll -S Knollway -S Knollwood -S Knox -S Knyghtwood -S Kolin -S Kolmar -S Komensky -S Kostner -S Kreiter -S Kroll -S Krueger -S Kuersten -S La Fox -S La Grange -S Lady Bar -S Lafayette -S Laflin -S Lageshulte -S Laird -S Lake -S Lake Ioseo -S Lake Park -S Lake Shore -S Lakeview -S Lakewood -S Lambert -S Lamon -S Lancaster -S Lang -S Langley -S Lanza -S Laporte -S Larrimore -S Lasalle -S Latrobe -S Laurel -S Lavergne -S Lawler -S Lawn -S Lawndale -S Lawnside -S Lawrence -S Lawton -S Leach -S Leamington -S Leavitt -S Leclaire -S Lee -S Leech -S Lehigh -S Leisure World -S Leitch -S Lemington -S Lenhome -S Lerisa -S Leslie -S Leswing -S Lewis -S Lewood -S Lexington -S Lexow -S Leyden -S Liberty -S Lill -S Lillian -S Lily Lake -S Lincoln -S Lincolnway -S Linda -S Lindberg -S Linden -S Linder -S Lindsey -S Linn White -S Little -S Lituanica -S Liverpool -S Livingston -S Lloyd -S Loantaka -S Lock -S Lockwood -S Locust -S Lodge -S Lombard -S London -S Long -S Long Beach -S Longcross -S Longview -S Longwood -S Loomis -S Loop -S Lorang -S Lord -S Lore -S Lorel -S Lorraine -S Lorton -S Lothair -S Lotus -S Louck -S Loucks -S Louis -S Lourdes -S Loveland -S Lowe -S Lowell -S Lucas -S Luella -S Lumber -S Luna -S Lund -S Lyle -S Lyman -S Lynn -S Lynne -S Lyon -S Lytle -S Macalester -S Mackinaw -S Macrae -S Madison -S Magnolia -S Magoun -S Maid Marion -S Main -S Major -S Malibu -S Mallard -S Mallory -S Malta -S Manassas -S Manchester -S Manistee -S Mann -S Manomin -S Manor -S Mansfield -S Mansion -S Maple -S Maplewood -S Marathon -S Marilyn -S Marion -S Market -S Marquette -S Marshall -S Marshfield -S Martha -S Martin -S Martine -S Mary -S Mary Therese -S Maryland -S Mason -S Massasoit -S Matteson -S Maxon -S May -S Mayfield -S Mayflower -S Maywood -S Mc Vicker -S McCarron -S McCarthy -S McCorkle -S McDaniel -S McDowell -S McKinley -S McKinley Woods -S McKnight -S Meacham -S Meade -S Meader -S Meadow -S Meadow Fence -S Medina -S Medinah -S Meister -S Melody -S Melrose -S Melvina -S Menominee -S Meridian -S Merion -S Merle -S Merrick -S Merrill -S Merrimac -S Merrion -S Mesa -S Metron -S Michael -S Michaels -S Michigan -S Micvicker -S Middle Neck -S Middle Point -S Middlesex -S Middleton -S Middletown -S Midfield -S Midland -S Midlothian -S Mill -S Millard -S Miller -S Millpage -S Millwood -S Milton -S Milwaukee -S Mineral Springs -S Minerva -S Minnesota -S Minnisink -S Mississippi -S Mississippi River -S Misty Harbour -S Mitchell -S Mobile -S Moetz -S Monaghan -S Monitor -S Monroe -S Montague -S Montana -S Montclair -S Monterey -S Montgomery -S Moody -S Moore -S Moorman -S Morel -S Morgan -S Mormann -S Morris Hill -S Mortimer -S Mount Curve -S Mount Prospect -S Mountain -S Mozart -S Muir -S Muirfield -S Mulligan -S Municipal -S Munn -S Murphy -S Murray -S Muskegon -S Myrtle -S Na Wa Ta -S Nacke -S Nagle -S Nancy -S Naper -S Narragansett -S Nash -S Nashville -S Nassau -S Natchez -S Natoma -S Navajo -S Neenah -S Nelson -S Neltnor -S Neva -S New -S New England -S New Hampshire -S Newberry -S Newcastle -S Newland -S Newman -S Nichols -S Niemann -S Nolton -S Norbury -S Nordica -S Normal -S Normandy -S Northampton -S Northern Illinois -S Northwoods -S Norwood -S Nottingham -S Noyes -S O S -S Oak -S Oak Creek -S Oak Glenn -S Oak Knoll -S Oak Park -S Oak Ridge -S Oak River -S Oak Shore -S Oakcrest -S Oakdale -S Oakenwald -S Oakhurst -S Oakland -S Oakleaf -S Oakley -S Oakridge -S Oaks -S Oakwood -S Ocean -S Oconto -S Octavia -S Ode -S Ohio -S Oketo -S Old Creek -S Old Glebe -S Old Hickory -S Old Mill -S Old Plum Grove -S Old Post -S Old Rand -S Olive -S Oltendorf -S Olympia -S Olympic -S Ontario -S Orange -S Orchard -S Oregon -S Orleans -S Orme -S Osborne -S Osceola -S Ott -S Ottawa -S Owen -S Oxford -S Oyster Bay -S Packers -S Page -S Palm -S Palos -S Parente -S Park -S Park Place -S Parke -S Parker -S Parker Ridge -S Parkside -S Parnell -S Pascal -S Passaic -S Patrick -S Patterson -S Paula -S Paulina -S Paxton -S Payne -S Peach -S Peach Tree -S Pearl -S Pebble Creek -S Pecan -S Peck -S Pembroke -S Penataquit -S Pennington -S Pennsylvania -S Peoria -S Perkins -S Perry -S Pershing -S Petersburg -S Pettibone -S Peyton -S Pfingsten -S Phelps -S Phillip -S Phillips -S Pickens -S Pickett -S Pierce -S Piermont -S Pine -S Pine Grove -S Pine Hill -S Pine Valley -S Pinecrest -S Pinehurst -S Pinewood -S Pipeline -S Pitt -S Plantation -S Plaza -S Pleasant -S Pleasant Hill -S Plum Grove -S Plymouth -S Plympton -S Poe -S Point -S Point Douglas Ser -S Pointe -S Polk -S Pollard -S Polling House -S Ponderosa -S Pool -S Poplar -S Porter -S Powder Mill -S Prairie -S Prairie View -S Prater -S Preakness -S Preller -S Prescott -S President -S Princeton -S Prindle -S Prior -S Prospect -S Provencal -S Pueblo -S Pulaski -S Putnam -S Quaker -S Quassey -S Quebec -S Queen -S Quentin -S Quincy -S Quinn -S Racine -S Raddant -S Railroad -S Rammer -S Rand -S Randall -S Randolph -S Randolphville -S Rankin -S Rathje -S Raven -S Ravinia -S Ravisloe -S Rawson Bridge -S Raymond -S Rea -S Rebecca -S Red Barn -S Red Coat -S Redwood -S Regan -S Regent -S Regents -S Regina -S Reid -S Reilly -S Remington -S Rensselaer -S Rexford -S Reynolds -S Rhodes -S Richard -S Richards -S Richmond -S Ridge -S Ridgedale -S Ridgeland -S Ridgeway -S Riegel Farm -S River -S River Clubhouse -S River Landing -S Rivercrest -S Riverdale -S Riverside -S Riverview -S Riviera -S Robert -S Robert Damm -S Robert Emmett -S Roberta -S Roberts -S Robin -S Robin Hill -S Robincrest -S Robinson -S Rockwell -S Rodenburg -S Rohallion -S Rolfe -S Roma -S Ronald -S Roosevelt -S Root -S Rose -S Rosedale -S Roselle -S Rosemary -S Rosewell -S Rosewood -S Ross -S Rowell -S Roxanna -S Roy -S Royal Crest -S Royal Oak -S Royal Oaks -S Ruble -S Ruby -S Rush -S Russell -S Rutherford -S Ryan -S Sacramento -S Saddlebrook -S Saddlecreek -S Sagamore -S Sage -S Saint Asaph -S Saint Marys -S Salem -S San Fernando -S San Francisco -S Sandpiper -S Sangamon -S Sarah -S Saratoga -S Sawyer -S Saxon -S Sayer -S Sayre -S Schmidt -S School -S Schoolhouse -S Schultz -S Sciota -S Scott -S Scottsdale -S Scoville -S Seamans Neck -S Sears -S Seebert -S Seeley -S Seminary -S Seminole -S Seneca -S Senour -S Serenity -S Service -S Seymour -S Shaddle -S Shannon -S Shelby -S Shelley -S Sheridan -S Sherman -S Sherwood -S Shields -S Shirley -S Shirlington -S Shore -S Short -S Shoshoni -S Silver Fox -S Sir Galahad -S Skidmore -S Skokie -S Skye -S Skyline -S Sleight -S Smith -S Snelling -S South -S South Chicago -S South Elgin -S South Shore -S Southgate -S Southmeadow -S Southport -S Southwood -S Spalding School -S Spaulding -S Spencer -S Spring -S Spring Garden -S Spring Meadows -S Springfield -S Springwood -S Spruce -S Suffolk -S Sullivan -S Summit -S Sumner -S Sunnyside -S Sunridge -S Sunrise -S Sunset -S Susan -S Sutton -S Sutton Lake -S Sycamore -S Sylvan -S Syndicate -S Tabler -S Taft -S Talman -S Tara -S Tarn -S Taylor -S Teal -S Tehle -S Terhune -S Terminal -S Terrace -S Testa -S Thistle -S Thomas -S Thomas Dillon -S Thompson -S Thorn Creek -S Throop -S Thurlow -S Tilden -S Timber -S Timberlane -S Tippecanoe -S Tonka -S Torrence -S Tower -S Town Center -S Trails End -S Travers -S Travis -S Tripp -S Trivett -S Troy -S Trumbull -S Truro -S Tryon -S Turf Hill -S Twin Creek -S Tyler -S Tyson -S Uhle -S Union -S University -S Upton -S Urban -S Utah -S Utica -S Valley -S Van Beveren -S Van Brunt -S Van Buren -S Van Dien -S Van Dorn -S Van Nortwick -S Van Vlissingen -S Vanderbilt -S Vanderburg -S Vanderpoel -S Varner -S Vaupell -S Veitch -S Ventura -S Vermillion -S Vermont -S Vernon -S Vetter -S Victoria -S Vienna -S View -S Vigo -S Viking -S Villa -S Village -S Vincennes -S Vincent -S Vine -S Violet -S Virginia -S Vista -S Vivyen -S Volbrecht -S Wa Pella -S Wabash -S Wabasso -S Wagonwheel -S Waiola -S Wakefield -S Waldinger -S Walker -S Walkup -S Wallace -S Waller -S Wallingford -S Walnut -S Walsh -S Walter Reed -S Walton -S Ward -S Warner Bridge -S Warren -S Warrington -S Warwick -S Waseca -S Washington -S Washtenaw -S Wasson -S Water -S Waterford -S Waterloo -S Waterman -S Waters Edge -S Waterview -S Watkins -S Waukegan -S Waverly -S Wayman -S Wayne -S Wayzata -S Wear -S Webster -S Wedgewood -S Weed -S Weiler -S Wellers -S Wells -S Wellwood -S Wenonah -S Wentworth -S Wesley -S Wespark -S West -S Westchester -S Western -S Westgate -S Westland -S Westlawn -S Westmore Meyers -S Weston -S Westview -S Westwood -S Wheaton -S Wheeler -S Wheeling -S Whipple -S Whispering Hills -S White -S White Oak -S Whiting -S Whitt -S Whittier -S Wickom -S Wiesbrook -S Wilber -S Wilder -S Will Center -S Willard -S Wille -S William -S Williams -S Williamsburg -S Williston -S Willow -S Willow Creek -S Willow Springs -S Willow Walk -S Wilmette -S Wilshire -S Wilson -S Winchester -S Windcrest -S Windham -S Windhill -S Windmill -S Windsor -S Winfield -S Winslow -S Winston -S Winter -S Winthrop -S Wisconsin -S Wise -S Wolcott -S Wolf -S Wolf Lake -S Wood -S Wood Dale -S Woodbine -S Woodbriar -S Woodbury -S Woodcrest -S Woodfield -S Woodland -S Woodlawn -S Woodley -S Woodrow -S Woods -S Woodside -S Woodstock -S Wool -S Wright -S Wulff -S Wynstone -S Wynstone Park -S Yale -S Yates -S York -S Youngs -S Zoranne -S du Bois -S la Crosse -S la Londe -S. Boston Bypass -S. Hamlin -S. King -SE Brighton -SE Circle -SE Dague -SE Davison -SE Delaware -SE Eastwood -SE Erie -SE Frontage -SE Garfield -SE Ontario -SE Park -SE River -SW Centennial -SW Circle -SW Frontage -SW Garfield -SW Pershing -SW Village -Saari -Saba -Sabal -Sabastian -Sabden -Saber -Sabercat -Sabeys Beach -Sabin -Sabina -Sabine -Sabine Farm -Sabines -Sabino Farm -Sable -Sable Oaks -Sable Ridge -Sabo -Sabre -Sabrina -Sacarrappa -Sach -Sachem -Sachem Rock -Sachfield -Sachs -Sacia -Sack -Sackerman -Sackett -Sackman -Sackrett -Sackvile -Sackville -Saco -Sacomano -Sacombe -Sacombs Ash -Sacoya -Sacramento -Sacred -Sacred Heart -Sacred Palm -Sacremento -Sacretariat -Saddington -Saddle -Saddle Back -Saddle Brook -Saddle Club -Saddle Creek -Saddle Crest -Saddle Hill -Saddle Horn -Saddle Mountain -Saddle Oaks -Saddle Rack -Saddle Ranch -Saddle Ridge -Saddle River -Saddle Rock -Saddle Tree -Saddle Wood -Saddleback -Saddleback Hill -Saddleback Ridge -Saddlebred -Saddlebrook -Saddlemount -Saddler -Saddlerock -Saddleview -Saddlewood -Saddleworth -Sade -Sadi -Sadie Hutt -Sadies -Sadleir -Sadler -Sadlers -Sadlers Wells -Sadlier -Sadme -Sadore -Sadowa -Sadowski -Sadro -Saenz -Safa -Safari -Safffron -Safford -Safforo -Saffron -Saford -Safran -Saga -Sagamore -Sagamore Farm -Sagamore Hill -Sagamore Spring -Saganashkee -Sagar -Sagars -Sage -Sage Brush -Sage Canyon -Sage Grouse -Sage Hill -Sage Sparrow -Sagebrush -Sageland -Sageman -Sagemont -Sager -Sages -Sageview -Sagewood -Saggart Field -Saggers -Saginaw -Sagittarius -Saguaro -Sahara -Sahler -Sahlin Farm -Sahlin Pvt -Saiala -Saic -Saidel -Saigon -Sail -Sailboat -Sailer -Sailfish -Sailor -Sailors -Sailors Bay -Sailpointe -Sailsbury -Sailstone -Sailview -Sailway -Sain Clements -Saindon -Saines -Sainfoin -Saini -Sainsbury -Sainsburys Fifth -Saint Agatha -Saint Agnells -Saint Agnes -Saint Alban -Saint Albans -Saint Albert -Saint Alphonsus -Saint Ambrose -Saint Andre -Saint Andrew -Saint Andrews -Saint Ann -Saint Anne -Saint Anns -Saint Anthony -Saint Anthonys -Saint Anton -Saint Asaph -Saint Augustin -Saint Augustine -Saint Augustines -Saint Barbara -Saint Barnabas -Saint Bartholomew -Saint Bartholomews -Saint Bede -Saint Benedicts -Saint Bernard -Saint Bernards -Saint Boniface -Saint Botolph -Saint Brelades -Saint Brendan -Saint Bride -Saint Camille -Saint Casimir -Saint Catherine -Saint Catherines -Saint Cecelia -Saint Cecilia -Saint Chads -Saint Charles -Saint Christopher -Saint Clair -Saint Claire -Saint Clar -Saint Clare -Saint Clements -Saint Cloud -Saint Croix -Saint Cross -Saint David -Saint Davids -Saint Denis -Saint Deyns -Saint Dominics -Saint Dorothy -Saint Edmunds Center -Saint Edward -Saint Edwards -Saint Elizabeth -Saint Elmo -Saint Etheldore -Saint Eva -Saint Felix -Saint Florence -Saint Florian -Saint Francis -Saint George -Saint George Barber -Saint George Ranch -Saint Georges -Saint Germain -Saint Gertrudes -Saint Giles -Saint Gregory -Saint Gregorys -Saint Helena -Saint Hildas -Saint Hill -Saint Hillaire -Saint Huberts -Saint Isabel -Saint Ives -Saint James -Saint Jean -Saint Jerome -Saint Joan -Saint John -Saint Johns -Saint John’s -Saint Joseph -Saint Josephs -Saint Jude -Saint Julie -Saint Katherine -Saint Kevin -Saint Kilda -Saint Kitts -Saint Lawrence -Saint Leonards -Saint Lo -Saint Louis -Saint Lukes -Saint Lynn -Saint Marcel -Saint Margaret -Saint Margarets -Saint Mark -Saint Marks -Saint Martin -Saint Martins -Saint Mary -Saint Marys -Saint Mary’s -Saint Mathews -Saint Matthew -Saint Maur -Saint Mayeul -Saint Michael -Saint Michaels -Saint Mihiel -Saint Moritz -Saint Nicholas -Saint Nicolas -Saint Norbert -Saint Oswald’s -Saint Patricks -Saint Paul -Saint Pauls -Saint Paul’s -Saint Peter -Saint Peters -Saint Peter’s -Saint Philips -Saint Phillips -Saint Pinnock -Saint Raphael -Saint Raymonds -Saint Regis -Saint Richard -Saint Richards -Saint Rose -Saint Saviour Warwick -Saint Saviours -Saint Swithans -Saint Theresa -Saint Thomas -Saint Thomas Church -Saint Thomas More -Saint Tropez -Saint Ursula -Saint Victor -Saint Vincent -Saint Vincents -Saint Winifreds -Sainton -Saints -Saintsbridge -Saintsbury -Saipan -Sais -Saisbury -Sajak -Sak -Sakas -Sakata -Sakenda -Saklan -Saklan Indian -Saks Fifth -Sakura -Sal -Salada -Saladine -Salado -Salado Creek -Salamanca -Salamander -Salamander Canyon -Salamaua -Salas -Salazar -Salberg -Salbrook -Salceda -Salcombe -Salcote -Salcott -Saldane -Sale -Saleford -Salem -Salem Church -Salem End -Salem Lake -Salem Pond -Salem Ridge -Salem Water Works -Salemtown -Salerno -Sales -Salesian -Salford -Salgado -Salibury -Salida -Salima -Salina -Salinas -Salisbury -Salisbury Downs -Salisbury Hall -Salisbury Hill -Salisbury Park -Salishan -Salix -Salk -Salkeld -Sallaway -Sallie Mae -Sallie O -Sally -Sally Ann -Sally Ride -Salma -Salmaan -Salmar -Salmi -Salmon -Salmon Creek -Salmon Falls -Salmon River -Salmond -Salmons -Salomons -Salon -Salonga Woods -Salop -Salrit -Salt -Salt Box -Salt Creek -Salt Hill -Salt Lake -Salt Meadow -Salt Spray -Salt Wall -Saltaire -Saltash -Saltbrook -Saltcoats -Saltcreek -Salter -Salterford -Salterns -Salters -Salterton -Salteye -Salthill -Saltings -Saltlick Fire -Saltmarsh -Saltmeadow -Salton Sea -Saltonstall -Saltoun -Saltpan -Saltram -Saltrush -Salts -Saltwater -Saltwell -Saltwind -Saltwood -Saltzman -Saluatation -Salusbury -Salutation -Salva -Salvador -Salvatierra -Salvatore -Salvi -Salvia -Salvin -Salvington -Salvio -Salway -Salzberg -Sam -Sam Cava -Sam Fonzo -Sam Hill -Sam McDonald -Sam Neel -Sam Owings -Sam Riggs -Sam Ryder -Sam Smith -Sam Swire -Samaga -Samantha -Samantha Riley -Samar -Samarai -Samaria -Samaritan -Samedra -Samford -Sammet -Sammett -Sammie -Sammis -Sammut -Samnatha -Samo -Samoa -Samora -Samos -Samoset -Samosett -Sampford -Sample -Sampleoak -Sampshill -Sampson -Sampton -Samrose -Sams -Samson -Samuel -Samuel Adams -Samuel Foster -Samuel Fuller -Samuel Gamwell -Samuel Harrington -Samuel Marsden -Samuel Morse -Samuel Ogden -Samuel Parlin -Samuel Prescott -Samuel Robert -Samuel Terry -Samuel Trexler -Samuel Wallis -Samuel Woodworth -Samuels -Samuels Pine -Samuelson -Samworth -Samy -San Aleso -San Andreas -San Andreas Fire -San Andres -San Angelo -San Anselmo -San Antonio -San Antonio Valley -San Ardo -San Benito -San Bernadino -San Blas -San Bruno -San Carlos -San Carlos Fire -San Clemente -San Cristobal -San Diego -San Dimas -San Domar -San Domingo -San Felice -San Felipe -San Fernando -San Francis -San Franciscan -San Francisco -San Gabrial -San Gabriel -San Geronimo Ridge -San Geronimo Valley -San Gorgonio -San Gregorio -San Ignacio -San Jacinto -San Jaun Canyon -San Joaquin -San Jose -San Juan -San Juan Canyon -San Juan Capistrano -San Juan Grade -San Juan Hollister -San Juan Pass -San Jude -San Junipero -San Justo -San Lazaro -San Leandro -San Lorenzo -San Lucas -San Luis -San Luis Obispo -San Luis Rey -San Luppe -San Marco -San Marcos -San Marcus -San Mardo -San Marin -San Marin Fire -San Marino -San Martin -San Mateo -San Michele -San Michelle -San Miguel -San Miguel Canyon -San Minete -San Nichols -San Nicolas -San Pablo -San Pablo Dam -San Patricio -San Paulo -San Pedro -San Pedro Mountain -San Pedro Terrace -San Petronio -San Rafael -San Ramon -San Ramon Valley -San Raymundo -San Remo -San Rey -San Rivas -San Rocco -San Saba -San Sabana -San Salvador -San Sebastian -San Simeon -San Sonita -San Tomas -San Tomas Aquino -San Tropez -San Vicente -San Vincente -San Vito -San Ysidro -Sanananda -Sanatorium -Sanberg -Sanborn -Sanborn Hill -Sanburnol -Sanby -Sanches -Sanchez -Sancho -Sancroft -Sanctuary -Sanctuary Point -Sand -Sand Bar -Sand Beach -Sand Blossom -Sand Cherry -Sand Creek -Sand Dam -Sand Dollar -Sand Dunes Forest -Sand Harbor -Sand Harbour -Sand Hill -Sand Hole -Sand Park -Sand Pine -Sand Piper -Sand Point -Sand Pointe -Sand Prairie -Sand Ridge -Sand Rock -Sand Spring -Sand Trap -Sand de Sac -Sandaba -Sandage -Sandakan -Sandal -Sandal Wood -Sandalfoot -Sandalwood -Sandalyn -Sanday -Sandbach -Sandbed -Sandberg -Sandbloom -Sandborn -Sandbourne -Sandbrook -Sandburg -Sandby -Sandcastle -Sandchain -Sandcherry -Sandcliff -Sandcroft -Sandcross -Sandeen -Sandelin -Sandell -Sandelwood -Sandemara -Sander -Sandera -Sandering -Sanderling -Sanders -Sanders Ranch -Sandersfield -Sanderson -Sandersons -Sanderstead -Sanderstead Court -Sandfield -Sandfold -Sandford -Sandford Mill -Sandgap -Sandgate -Sandhage -Sandham -Sandheath -Sandhill -Sandhills -Sandholdt -Sandhole -Sandholm -Sandhurst -Sandhutton -Sandi -Sandia -Sandifer -Sandiford -Sandilands -Sandileigh -Sandingham -Sandini -Sandison -Sandisplatt -Sandiway -Sandland -Sandle -Sandleigh -Sandler -Sandlewood -Sandling -Sandmark -Sandmere -Sandmoor -Sandmound -Sandon -Sandown -Sandpebble -Sandpike -Sandpiper -Sandpiper Cove -Sandpiper Key -Sandpit -Sandpit Hall -Sandpits -Sandpoint -Sandra -Sandra Pond -Sandraya Heights -Sandretto -Sandri -Sandrick -Sandridge -Sandridgebury -Sandringham -Sandrock -Sandrock Hill -Sands -Sands Light -Sands Point -Sandsbury -Sandsend -Sandspur -Sandstock -Sandstone -Sandtoft -Sandusky -Sandwald -Sandway -Sandwel -Sandwell -Sandwich -Sandwood -Sandy -Sandy Bank -Sandy Bar -Sandy Bay -Sandy Beach -Sandy Bridges -Sandy Brook -Sandy Cove -Sandy Creek -Sandy Cross -Sandy Farm -Sandy Glen -Sandy Hill -Sandy Hollow -Sandy Hook -Sandy Knoll -Sandy Landing -Sandy Lewis -Sandy Lodge -Sandy Manor -Sandy Plains -Sandy Point -Sandy Pond -Sandy Ridge -Sandy Rock -Sandy Spring -Sandy Valley -Sandyacres -Sandybrook -Sandycove -Sandycroft -Sandyford -Sandyhill -Sandyhurst -Sandylands -Sandymount -Sandys -Sandywood -Sanel -Sanfoin -Sanford -Sangamon -Sangamore -Sangay -Sanger -Sangers -Sangley -Sangmeister -Sangora -Sangrado -Sangria -Sanial -Sanibel -Sanibel Captiva -Sanilac -Saning -Sanitarium -Sanjer -Sankey -Sanko -Sanlin -Sanner -Sanns -Sano -Sanoni -Sans -Sans Souci -Sansbury -Sansom -Sansome -Sansone -Sanspareil -Sant Johns -Santa Alicia -Santa Ana -Santa Anita -Santa Anna -Santa Barbara -Santa Catalina -Santa Clara -Santa Croce -Santa Cruz -Santa Domingo -Santa Elena -Santa Fe -Santa Helena -Santa Inez -Santa Juanita -Santa Lucia -Santa Margarita -Santa Marguarita -Santa Maria -Santa Marina -Santa Mesa -Santa Monica -Santa Paula -Santa Ray -Santa Rita -Santa Rosa -Santa Rosa Creek -Santa Rose -Santa Serra -Santa Susana -Santa Teresa -Santa Theresa -Santa Trinita -Santa Vera -Santa Ynez -Santa Ysabel -Santana -Santander -Santapogue -Santarosa -Santas Village -Santayana -Santee -Santeetlah -Santell -Santers -Santiago -Santilli -Santini -Santley -Santolina -Santon -Santoni -Santorina -Santorini -Santos -Santos Ranch -Santour -Santry -Santuck -Santuit -Sanway -Sanwood -Sanzoverino -Saphire -Sapienza -Sapling -Sapling Ridge -Sapone -Sapphire -Sapphire Ridge -Sappington -Sara -Sara Ann -Sara Jane -Sarabande -Saracen -Saradale -Saraglen -Sarah -Sarah Anne -Sarah Constant -Sarah Doublet -Sarah Durack -Sarah Holland -Sarah Jane -Sarah Landing -Sarahills -Sarahs Grove -Sarakal -Saralynn -Saran -Sarana -Saranac -Saranap -Saranell -Sarasota -Saratoga -Saratoga Creek -Saratoga Heights -Saratoga Hills -Saratoga Park -Saratoga Sunnyvale -Saratoga Toll -Saratoga Vista -Saravanos -Saraview -Sarayah -Sarazen -Sarazin -Sard -Sardam -Sardinia -Sardonyx -Sardyga -Sargeant -Sargeants -Sargent -Sargent Roode -Sargo -Saric -Sarina -Sark -Sarkesian -Sarkis -Sarner -Sarnesfield -Sarno -Saro -Saron -Saroni -Sarratt -Sarre -Sarrinen -Sarsby -Sarsen -Sarsfeld -Sarsfield -Sartell -Sartelle -Sartor -Sartori -Sartwell -Sarum -Sarver -Sasher -Saskatchewan -Sassafras -Sassamon -Sassel -Satanita -Satara -Satelberg -Satellite -Sater -Sather -Satin -Satinash -Satinwood -Satis -Satow -Satterfield -Satterlee -Satterley -Satterthwaite -Sattler -Satuckett -Satuit Meadow -Saturday Evening -Saturn -Saucelands -Saucer -Saucier -Sauders Bay -Sauerbacker -Sauganash -Saugatuck -Saugus -Sauk -Sauk Pointe -Saul -Saull -Sauls -Saultell -Saulty -Saumur -Sauna -Sauna Row -Sauncey -Sauncey Wood -Saunder -Saunders -Saunders Ness -Saunders Point -Saunderton -Saunton -Sauquoit -Saurine -Sausal -Sausalito -Sautter -Sauzer -Savacentre Approach -Savage -Savage Guilford -Savaker -Savana -Savanna -Savanna Lakes -Savanna Oaks -Savannah -Savannah River -Savant -Savay -Saverien -Savernake -Savery -Saverys -Savick -Savile -Savill -Saville -Savin -Savin Hill -Savine -Savio -Savo -Savoie -Savona -Savory -Savoury -Savoy -Saw Mill -Saw Mill Pond -Saw Mill River -Saw Tooth Canyon -Sawbridgeworth -Sawdust -Sawell -Sawgrass -Sawhorse -Sawin -Sawkins -Sawleaf -Sawley -Sawmill -Sawmill Brook -Sawmill Creek -Sawmill Pond -Sawpit -Sawtell -Sawtelle -Sawtooth -Sawyer -Sawyer Hill -Sawyer Park -Sawyers -Sax -Saxby -Saxbys -Saxham -Saxlingham -Saxon -Saxon Flowers -Saxon Wood -Saxon Woods -Saxon Woods Park -Saxonbury -Saxonholme -Saxonia -Saxons -Saxonvale -Saxony -Saxton -Saxville -Saxwood -Saybrook -Saybrooke -Saybrooke Oaks -Saybrooke View -Sayer -Sayers -Sayes Court -Sayes Court Farm -Sayesbury -Saylers Creek -Sayles -Sayles Hill -Saylor -Sayner -Sayonara -Sayre -Sayreville -Sayville -Sayward -Saywell -Saywer -Scabharbour -Scaddan -Scadding -Scafell -Scaggs -Scaggsville -Scagia -Scagliotti -Scahill -Scala -Scalera -Scales -Scalletta -Scallows -Scally -Scaltrito -Scalza -Scammell -Scammonden -Scandia -Scandinavia -Scandrett -Scaneateles -Scanello -Scanlan -Scanland -Scanlon -Scannell -Scar Hill -Scarab -Scaraway -Scarboro -Scarborough -Scarborough Commons -Scarbrook -Scarcliffe -Scarcroft -Scardenia -Scarfe -Scarff -Scarfield -Scarisbrick -Scarlata -Scarlatti -Scarle -Scarlet -Scarlet Mist -Scarlet Oak -Scarlet Sage -Scarlett -Scarlett Oak -Scarletts -Scarr -Scarr End -Scarsdale -Scarsdale Farm -Scarth -Scatcherd -Scatcherd Park -Scatterdells -Scatteree -Scaup -Scawen -Scawfell -Scenery -Scenic -Scenic Byway -Scenic Heights -Scenic Hts -Scenic Meadow -Scenic Overlook -Scenic Ranch -Scenic Ridge -Scenic View -Scenic Vista -Scenic Woods -Scenicview -Scenicwood -Scenna -Scepter -Sceptre -Scettrini -Scettrini Fire -Schaaf -Schachtner -Schadeck -Schadt -Schaefer -Schaefer Ranch -Schaeffer -Schafer -Schaffer -Schaffhausen -Schalk -Schall -Schallenberger -Schaller -Schanck -Schank -Schaper -Scharber -Scharer -Scharff -Scharmann -Schaumburg -Scheel -Scheele -Scheer -Scheerer -Scheffelin -Scheibel -Scheid -Scheidecker -Scheinfein -Scheldrup -Schelhorn -Schellbach -Schellville -Schelly -Schelter -Schember -Schembri -Schenck -Schendel Lake -Schenectady -Schenk -Schenley -Schepis -Scherell -Scherer -Scherland -Schermerhorn -Scherrer -Scherwood Greens -Scheuneman -Scheurer -Schey -Schiappino -Schick -Schiedler -Schieffelin -Schiele -Schifsky -Schillaci -Schiller -Schilling -Schillinger -Schillingsburg -Schillton -Schimmel -Schindel -Schindler -Schinkel -Schiphol -Schirra -Schlagel -Schlager -Schlapp -Schleicher -Schleifer -Schleigel -Schleiger -Schlenker -Schletty -Schley -Schlictman -Schlitz -Schlobohm Gardens -Schlomann -Schlomka -Schlosser -Schlottfeld -Schmahl -Schmeidt -Schmeiser -Schmidt -Schmidt Lake -Schmidts -Schmitt -Schmuckley -Schmule -Schnecks -Schneider -Schober -Schobert -Schock -Schoder -Schoeffel -Schoeffler -Schoen -Schoenbeck -Schoener -Schoenfield -Schoenherr -Schofield -Schofields -Schofields Farm -Schoger -Schoharie -Scholar -Scholar Green -Scholars -Scholars Green -Scholebrook -Scholefield -Scholer -Scholerbrook -Scholes -Scholes Rakehill -Scholey -Scholl -Scholtze -Scholz -Schomer -Schommer -School -School Craft -School District -School Gate -School Green -School Hill -School House -School Mill -School View -Schoolcraft -Schooldale -Schooley -Schoolgate -Schoolhouse -Schoolhouse Cove -Schoolmaster -Schools -Schoolside -Schoon -Schooner -Schooner Bay -Schooner Ridge -Schoonmaker -Schoonover -Schoosett -Schor -Schorie -Schorne -Schortmann -Schott -Schraalenburgh -Schrader -Schrage -Schramm -Schramms -Schramsberg -Schreiber -Schreiner -Schriber -Schrider -Schrieffer -Schriever -Schroder -Schroeder -Schroers Farm -Schroth -Schrum -Schubert -Schuerle -Schuett -Schuh -Schulamar -Schuldt -Schuler -Schuler Ranch -Schulmeister -Schulte -Schulten -Schulties -Schultz -Schulz -Schulze -Schum -Schumacher -Schumack -Schumaker -Schuman -Schurman -Schurtz -Schurz -Schussler -Schuster -Schutte -Schutte Farm -Schuyler -Schuylkill -Schwab -Schwan Lake -Schwartz -Schwartze -Schwebel -Schwerin -Schwerman -Schwinn -Schyler -Sciarappa -Scibilia -Science -Science Center -Science Ctr -Scientia -Scimitar -Sciota -Scioto -Sciots -Scipio -Scituate -Scobbie -Scobell -Scobie -Scocles -Scofield -Scoles -Sconset -Scooter -Scoralick -Scords -Score -Scoresby -Scorpio -Scorpion -Scorton -Scossa -Scot -Scot Ladd -Scotby -Scotch -Scotch Common Argyle -Scotch Dam -Scotch Hall -Scotch Haven -Scotch Hill -Scotch Pine -Scotch Plains -Scotchman -Scotchy -Scotdale -Scotia -Scotland -Scotland Bridge -Scotland Farm -Scotland Hall -Scotland Hill -Scotland Hill Park -Scotland Mill -Scotlands -Scotney -Scots -Scotsdale -Scotsford -Scotsglen -Scotshall -Scotswood -Scott -Scott Creek -Scott Farm -Scott Foresman -Scott Hall -Scott Hill -Scott Key -Scott Robin -Scott Town -Scotteswood -Scottfield -Scotti -Scottish -Scottish Autumn -Scottish Hunt -Scottish Rite -Scottlynne -Scottons -Scotts -Scotts Cove -Scotts Crossing -Scotts Farm -Scotts Grove -Scotts Hall -Scotts Landing -Scotts Manor -Scotts Mill -Scotts Run -Scotts Valley -Scottsboro -Scottsbridge -Scottsbury -Scottsdale -Scottsfield -Scottsvale -Scottswood -Scottwell -Scotty -Scotty Hollow -Scoulding -Scouler -Scouller -Scours -Scout -Scout Hill -Scout Ridge -Scouts -Scouts Camp -Scovell -Scoville -Scowcroft -Scown -Scragged Oak -Scraley -Scranton -Scrapsgate -Scratcherd -Scratchers -Scratchings -Scratton -Screech Owl Creek -Screvin -Scriba -Scriber Lake -Scribner -Scrimgeour -Scripps -Scripps Haven -Scripture -Scritchfield -Scrivani -Scriven -Scriveners -Scrivens -Scriver -Scrivner -Scroggins -Scrooby -Scropton -Scroxton -Scrub -Scrub Oak -Scrubbitts Park -Scrubbs -Scrubs -Scrutton -Scudamore -Scudder -Scudders -Sculley -Scully -Sculptor -Sculpture Point -Scures -Scurvy Hall -Scutley -Scylla -Sea -Sea Beach -Sea Bird -Sea Biscuit -Sea Breeze -Sea Bright -Sea Chase -Sea Cliff -Sea Cloud -Sea Cove -Sea Foam -Sea Forest -Sea Gate -Sea Gull -Sea Horse -Sea Island -Sea Isle -Sea Light -Sea Meadow -Sea Mist -Sea Otter -Sea Pines -Sea Point -Sea Ranch -Sea Ridge -Sea Shell -Sea Shore -Sea Side -Sea Spray -Sea View -Sea Vista -Sea Walk -Sea Wall -Seabeach -Seabird -Seabiscuit -Seaboard -Seaborn -Seaborne -Seaborough -Seabreeze -Seabridge -Seabright -Seabring -Seabro -Seabrook -Seabury -Seabury Point -Seacape -Seacliff -Seacloud -Seacombe -Seacord -Seacourt -Seacrest -Seadrift -Seafarer -Seafield -Seafirth -Seaflower -Seafoam -Seaford -Seaforth -Seagate -Seager -Seager Farm -Seagirt -Seagrave -Seagraves -Seagreen -Seagrove -Seagry -Seagull -Seaham -Seahaven -Seahawk -Seahawks -Seahorn -Seahorse -Seal -Seal Cove -Seal High -Seal Hollow -Seal Pointe -Seal Rock -Sealand -Seale -Sealey -Sealight -Sealock -Sealtest -Sealth -Sealund -Sealy -Seaman -Seaman Neck -Seamans -Seamans Neck -Seamas -Seamer -Seamist -Seamon -Seamons -Seamont -Seamore -Seamount -Sean -Seapearl -Seaport -Sear Ranch -Searbrook -Searby -Search -Searches -Searchlight -Searchwood -Searcy -Seareel -Searing -Searingtown -Searl -Searle -Searles -Sears -Sears Island -Sears Landing -Sears Point -Sears Ranch -Searsville -Seascale -Seascape -Seascape Ridge -Seashell -Seashore -Seaside -Seasongood -Seasons -Seasons Ridge -Seaspray -Seastorm -Seat Pleasant -Seathwaite -Seaton -Seatroller -Seattle -Seaver -Seaverns -Seavey -Seaview -Seaview Ranch -Seavy -Seawall -Seawane -Seawanhaka -Seaward -Seaway -Seawell -Seawind -Seawood -Seay -Seba -Sebago -Sebastan -Sebastapol -Sebastian -Sebastian Bore -Sebastiani -Sebastion -Sebastopol -Seberger -Sebert -Sebon -Sebrell -Sebright -Sebring -Secant -Secatoag -Secatogue -Secaucus -Seckel -Secker -Secluded -Secluded Oaks -Second -Second Brook -Second Cross -Second Neptune -Second Roosevelt -Second Time -Seconset -Secor -Secoya -Secret Bay -Secret Garden -Secret Hollow -Secret Meadows -Secret Place -Secret River -Secretan -Secretariat -Section -Security -Security Park -Sedalia -Sedan -Sedcote -Sedding -Seddley -Seddon -Seddon Hill -Sedge -Sedge Meadow -Sedge Wood -Sedgebrook -Sedgecombe -Sedgefield -Sedgeford -Sedgehill -Sedgehurst -Sedgeman -Sedgemeadow -Sedgemere -Sedgemoor -Sedgemoore -Sedger -Sedgewell -Sedgewick -Sedgewick Village -Sedgewicke -Sedgley -Sedgley Park -Sedgman -Sedgmoor -Sedgwick -Sedleigh -Sedlescombe -Sedona -Sedore -Sedrup -Sedum -Sedwick -See -Seeanar -Seed -Seed Farm -Seedfield -Seedley -Seedley View -Seedling -Seedly Park -Seegers -Seek -Seekford -Seekonk -Seel -Seeley -Seeleys -Seelig -Seely -Seelye -Seeman -Seemas -Seemore -Seena -Seeno -Seer Green -Seers -Seery -Seeser -Seething -Sefton -Segel -Segelken -Segenhoe -Seger -Segers -Sego -Segovia -Segrove -Seguine -Seguridad -Sehring -Seibel -Seiburg -Seidel -Seidler -Seidman -Seifert -Seigel -Seiko -Seil -Seiler -Seine -Seitler -Seitz -Seiver -Sekforde -Sekonnet -SelWyn -Selah -Selassie -Selbie -Selborne -Selbourne -Selby -Selby Heights -Selby Ranch -Selcroft -Selden -Seldin -Seldon -Sele -Seley -Self -Self Esteem -Selford -Selfox -Selfridge -Selger -Selham -Selhurst -Selhurst New -Selig -Selim -Selina -Selinda -Selkirk -Sell -Selleck -Sellers -Sellincourt -Sellman -Sellner -Sellons -Sells -Sellstrom -Sellwood -Selma -Selmac -Selman -Selmart -Selmarten -Selmon -Selnick -Selo -Selover -Selsby -Selsdon -Selsdon Park -Selsey -Selsfield -Selso -Selstead -Selston -Seltzer -Selva -Selvage -Selvante -Selvyn -Selway -Selwood -Selworth -Selworthy -Selwyn -Sem -Semaan -Semaphore -Semel -Semeria -Semicircular -Semiconductor -Semillon -Seminary -Seminary Cove -Seminole -Semley -Semmens -Semmler -Semon -Semont -Semper -Semphill -Sempill -Semple -Semple Village -Sempstead -Semton -Senaca -Senacre -Senate -Senator -Senatorial -Send -Send Barns -Senda Ladera -Sendero -Sendick -Sends Barn -Seneca -Seneca Ayr -Seneca Chase Park -Seneca Crossing -Seneca Farm -Seneca Knoll -Seneca Park -Seneca Ridge -Senecal -Seney -Senga -Senhorinha -Senhouse -Senic -Senior -Senlac -Senn -Senna -Sennar -Senne -Sennen -Seno -Senon -Senpek -Senrab -Senseney -Senta -Senter -Sentinel -Sentry -Sentry Ridge -Sephar -Sephton -Seppala -Seppelt -Seppi -September -Septimus -Sepulveda -Sequams -Sequdia -Sequeira -Sequoia -Sequoia Creek -Sequoia Flat -Sequoia Glen -Sequoia Hill -Sequoia Pacific -Sequoia Ridge -Sequoia Valley -Sequola -Sequoya -Sequoyah -Sera -Serafine -Serafix -Seramonte -Seranade -Serbian -Serena -Serenade -Serendipity -Serene -Serenidad -Serenite -Serenity -Serenity Hills -Serenity Point -Serenity Valley -Serenity View -Sereno -Serenoa -Serge -Serge Hill -Sergeant -Sergeant Hartz -Sergeant John V Young -Sergeants -Sergeants Green -Sergi -Sergison -Serina -Serinne -Serle -Sermon -Sero Estates -Sero Pine -Serpa -Serpentine -Serpilio -Serra -Serramar -Serramonte -Serrano -Serravista -Serrell -Serres -Servern -Servia -Servia Hill Servia -Service -Services -Serviden -Serviss -Sesame -Sessions -Sestri -Set -Seta -Setauket -Setchell -Setford -Seth -Seth Hamilton -Sethlow -Seton -Seton Creek -Seton Hall -Seton Hill -Setrok -Sette -Setter -Setterland Farm -Setterquist -Setting Sun -Settington -Settle -Settlement -Settlers -Settlers Grove -Settlers Pond -Settlers Ridge -Settles -Settrington -Settstones -SetzLer -Seurat -Sevan -Sevarden -Sevely -Seven Acres -Seven Arches -Seven Bridge -Seven Bridges -Seven Crest -Seven Gables -Seven Hill -Seven Hills -Seven Hills Ranch -Seven Mile -Seven Oaks -Seven Pine -Seven Pines -Seven Sisters -Seven Springs -Seven Thorns -Seven Trails -Seven Trees -Seven Woods -Sevenacre -Sevenoake -Sevenoaks -Sevenside -Seventeenth -Seventh -Sever -Severalls -Severals -Severance -Severini -Severinsen -Severn -Severn Chapel -Severn Forest -Severn Grove -Severn Hills -Severn River -Severn Side Farm -Severna -Severncrest -Severncroft -Severndale -Severnside -Severnview -Severus -Severyns -Sevier -Sevilla -Seville -Sevington -Sevinor -Sevland -Sevor -Sewall -Sewall Woods -Sewan -Sewanee -Sewanois -Seward -Seward Park -Sewardstone -Sewaren -Sewdley -Sewell -Sewells Orchard -Sewickley -Sexa -Sexauer -Sexburga -Sextant -Sexton -Sexton Farm -Sexton View -Sextons -Sextus -Seybrooke -Seymer -Seymor -Seymore -Seymour -Seymour Court -Seymour Park -Seyon -Seyssel -Sgt Beers -Shabbona -Shabona -Shackamaxon -Shackel -Shackelford -Shackelton -Shackford -Shacklands -Shackleford -Shacklegate -Shackleton -Shacklewell -Shackliffe -Shackstead -Shad -Shad Creek -Shadbolt -Shadbush -Shaddick -Shaddock -Shaddox -Shade -Shade Tree -Shaded Leaf -Shadeland -Shadelands -Shadetree -Shadewell -Shadewood -Shadforth -Shadi -Shadle -Shadlow -Shadow -Shadow Bend -Shadow Brook -Shadow Creek -Shadow Crk -Shadow Dance -Shadow Falls -Shadow Hawk -Shadow Hill -Shadow Lake -Shadow Lawn -Shadow Leaf -Shadow Moss -Shadow Mountain -Shadow Oak -Shadow Park -Shadow Point -Shadow Pond -Shadow Ridge -Shadow Run -Shadow Tree -Shadow Valley -Shadow Wood -Shadowbrook -Shadowcreek -Shadowfax -Shadowglen -Shadowhill -Shadowood -Shadowport -Shadowridge -Shadowrock -Shadows -Shadowtree -Shadoxhurst -Shadwell -Shady -Shady Acres -Shady Arbor -Shady Beach -Shady Brook -Shady Cove -Shady Creek -Shady Dale -Shady Elm -Shady Glen -Shady Glenn -Shady Grove -Shady Hill -Shady Hills -Shady Hollow -Shady Island -Shady Knoll -Shady Mill -Shady Nook -Shady Oak -Shady Oaks -Shady Palm -Shady Path -Shady Pine -Shady Point -Shady Rest -Shady Ridge -Shady Rose -Shady Side -Shady Slope -Shady Spring -Shady Tree -Shady View -Shady Way -Shady Willow -Shady Wood -Shadybrook -Shadyglade -Shadygrove -Shadylane -Shadylawn -Shadyrest -Shadyside -Shadyslope -Shadyspring -Shadyview -Shadyway -Shadywood -Shaefer -Shafer -Shaffer -Shaffi -Shaffner -Shaft -Shafter -Shaftesbury -Shafto -Shafton -Shaftsbury -Shag Bark -Shagbark -Shaggy Calf -Shago -Shaheed -Shailer -Shainsky -Shainy -Shake Mill -Shake Tree -Shaker -Shaker Ridge -Shakerley -Shakespeare -Shakespeare Farm -Shakleton -Shakopee -Shalcomb -Shalcross -Shalcross Mill -Shalden -Shaldon -Shale -Shale Peak -Shale Quarry Back -Shaler -Shales -Shalesbrook -Shalestone -Shalfleet -Shalford -Shalimar -Shall -Shallcross -Shallons -Shalloo -Shallow Bank -Shallow Brook -Shallow Cove -Shallow Creek -Shallow Ford -Shalstone -Shaman -Shambliss -Shambrook -Shameran -Shames -Shamley -Shamrock -Shamrock Glen -Shamrock Glenn -Shamrock Ridge -Shana -Shanahan -Shanandale -Shand -Shande -Shandel -Shandon -Shandwick -Shandy -Shane -Shane Gould -Shane Park -Shane Thomas -Shaner -Shangani -Shangri -Shangri la -Shangrila -Shanklin -Shanklyn -Shanley -Shanna -Shannan -Shannock -Shannon -Shannon Heights -Shannon Hill -Shannon Oak -Shannondale -Shanti -Shantock -Shanuk -Shap -Shapley -Shapling Ridge -Shardcroft -Shardeloes -Shardlow -Sharen -Sharewood -Shari -Shari Ann -Sharian -Sharilyn -Shark River -Sharkey -Sharkon -Sharland -Sharlee -Sharlene -Sharma -Sharman -Sharmon Palms -Sharn -Sharnal -Sharney -Sharola -Sharon -Sharon Bee -Sharon Chapel -Sharon Oaks -Sharon Park -Sharondale -Sharonwood -Sharot -Sharp -Sharp House -Sharp Park -Sharpe -Sharpenhoe -Sharpersville -Sharpes -Sharples -Sharples Hall -Sharpleshall -Sharpley -Sharpners Pond -Sharps -Sharps Point -Sharpsburg -Sharpstead -Sharratt -Sharretts -Sharrington -Sharrock -Sharron -Sharrott -Sharrotts -Sharstead -Sharsted -Sharston -Sharvel -Shary -Shasta -Shasta Lily -Shatel -Shattack Track -Shatters -Shattuck -Shattuck Park -Shaughnessy -Shaun -Shauna -Shaundale -Shaver Grade -Shaver Lake -Shavers Lake -Shaves Wood -Shaw -Shaw Cross Chidswell -Shaw Farm -Shaw Fields -Shaw Hall Bank -Shaw Head -Shaw Moor -Shaw William -Shawbrook -Shawbrooke -Shawbury -Shawclough -Shawcroft -Shawcross -Shawden -Shawe -Shawe Hall -Shawfield -Shawford -Shawger -Shawhall -Shawhan -Shawlea -Shawmont -Shawmut -Shawn -Shawn Leigh -Shawna -Shawnee -Shawnee Woods -Shawnlee -Shawno -Shaws -Shawsheen -Shawstead -Shay -Shayfield -Shaylor -Shaylynn -Shea -Shea Center -Shea Memorial -Sheader -Sheaf -Sheafe -Sheahan -Shealy -Shean -Shear Creek -Sheard -Sheardhall -Sheardley -Shearer -Shearing -Shearman -Shears -Shearson -Shearton -Shearwater -Sheas -Sheath -Sheather -Sheathers -Sheckells -Shed -Shedd -Shedworth -Sheehan -Sheehy -Sheeley -Sheen -Sheen Common -Sheep -Sheep Farm -Sheep Hill -Sheep House -Sheep Pasture -Sheep Rock -Sheepbarn -Sheepcoates -Sheepcot -Sheepcote -Sheepcote Dell -Sheepcote Green -Sheepcotes -Sheepdown -Sheepen -Sheepfold -Sheepfoot -Sheepgate -Sheephatch -Sheephill -Sheephouse -Sheephurst -Sheeplands -Sheepridge -Sheepsetting -Sheepshead Bay -Sheepstreet -Sheepwalk -Sheering -Sheering Hall -Sheering Lower -Sheering Mill -Sheerlands -Sheerness -Sheerwater -Sheet -Sheet Glass -Sheet Mill -Sheethanger -Sheets Farm -Sheets Heath -Sheffield -Sheffield Mill -Sheffler -Shefield -Sheila -Sheiling -Shelard -Shelart -Shelborne -Shelbourne -Shelburne -Shelbury -Shelby -Shelby Creek -Shelby Dale -Shelby Hills -Shelcote -Shelden -Sheldon -Sheldon Creek -Sheldon Hill -Sheldon Lake -Sheldon Oaks -Sheldons -Sheldonville -Sheldrake -Shelduck -Shelerud -Shelfield -Shelford -Shelgate -Shelia -Shell -Shell Cove -Shell Flower -Shell Gate -Shell Hospital Bridge -Shell Lake -Shell Valley -Shellbank -Shellbanks -Shellbark -Shellbourne -Shellcote -Shellcove -Shelldrake -Shelley -Shelleys -Shellford -Shellgrove -Shellhorn -Shellingham -Shellmound -Shellness -Shellow -Shellton -Shellwood -Shellwoods -Shelly -Shellye -Shelsey -Shelter -Shelter Bay -Shelter Cove -Shelter Creek -Shelter Hill -Shelter Lagoon -Shelter Rock -Shelters -Shelterview -Shelterwood -Shelton -Shely -Shemer -Shenandoah -Shenfield -Shenley -Shenley Hill -Shenleybury -Shennamere -Shennen -Shenorock -Shenstone -Shenton -Shenton Park -Shentonfield -Shenwood -Shepard -Shepard Memorial -Shepards -Shepardson -Shepardville -Sheperd -Shephall -Shephard -Shepherd -Shepherd Canyon -Shepherd Cross -Shepherd Hills -Shepherders Spring -Shepherds -Shepherds Bush -Shepherds Gate -Shepherds Grove -Shephers -Shepiston -Sheple -Shepley -Sheppard -Shepperton -Shepperton Court -Sheppey -Shepton -Shera -Sheraden -Sherando -Sherard -Sherars -Sheraton -Sheraton Tysons -Sherbon -Sherborn -Sherborne -Sherboro -Sherbourne -Sherbrook -Sherbrooke -Sherburn -Sherburne -Sherburne Hills -Sherdley -Shere -Sherebrooke Woods -Sheredan -Sheredes -Sherenden -Sherfield -Sherford -Sheri -Sheridan -Sheridan Hills -Sheridan Spur -Sheridans -Sheridonna -Sheriff -Sheriffs -Sherill -Shering -Sheringham -Sherington -Sherland -Sherlies -Sherlin -Sherlock -Sherman -Sherman Bridge -Sherman Farm -Sherman Island -Sherman Island Levee -Sherman Lake -Sherman Oaks -Shermead -Shermer -Shernbroke -Shernden -Sherrard -Sherrardspark -Sherree -Sherrick -Sherrick Green -Sherrie -Sherriff -Sherrill -Sherrin -Sherringham -Sherrow -Sherry -Sherry Hill -Sherry Lee -Sherway -Sherwell -Sherwick -Sherwin -Sherwine -Sherwood -Sherwood Forest -Sherwood Hall -Sherwood Hill -Sherwood Hills -Sherwood Lake -Sherwood Park -Sherwoods -Sheryl -Shesley -Shesue -Shetcliffe -Shetland -Shetland Green -Shetlands -Shetler -Shevchenko -Sheve Hill -Sheveland -Shevelin -Shevlin -Shewens -Shewtan -Shibley -Shiel -Shield -Shieldborn -Shieldhall -Shields -Shiele -Shienfield -Shienfield Aborfield -Shienfield Church -Shiers -Shifnall -Shiley -Shillaber -Shilling -Shillingford -Shillington -Shiloh -Shiloh Church -Shilton -Shimizu -Shimmer River -Shimmin -Shin -Shindale -Shinfield -Shingle Creek -Shingle Crk -Shingle Mill -Shingle Oak -Shingle Valley -Shinglebarn -Shinglewell -Shining Water -Shinkle -Shinn -Shinnecock -Shinnick -Ship -Ship Rock -Ship Ways -Shipbourne -Shipbrook -Shipe -Shipham -Shipherd -Shipland -Shiplett -Shipley -Shipley Bridge -Shipley Farm -Shipley Hills -Shipman -Shippan -Shippee -Shippen -Shipper Bottom -Shippers -Ships -Ships Curve -Ships Knee -Ships Point -Shipston -Shipsview -Shipton -Shipwatch -Shipway -Shipwheel -Shipwright -Shipwrights -Shipyard -Shira -Shirburn -Shirbutt -Shire -Shire Oak -Shirebrook -Shireburn -Shiredale -Shiregreen -Shirehall -Shireoak -Shires -Shiretown -Shirewood -Shirill -Shirland -Shirlawn -Shirlee -Shirleen -Shirley -Shirley Church -Shirley Groton -Shirley Hills -Shirley House -Shirley Murphy -Shirley Oaks -Shirley Park -Shirley Vista -Shirley Way Bridle -Shirlington -Shirlock -Shirlow -Shirra -Shiva -Shiver -Shltr Rock -Shoal -Shoal Creek -Shoal Point -Shoal Water -Shoalhaven -Shoals -Shobar -Shobden -Shockey -Shockey Farms -Shodham -Shoe -Shoe Factory -Shoebury -Shoebury Common -Shoecroft -Shoemake -Shoemaker -Shoemaker Farm -Shoesmith -Shogmoor -Shogoro -Sholebroke -Sholem -Sholer -Sholton -Sholver -Shon -Shone -Shonks Mill -Shonnard -Shook -Shoonover -Shoop -Shooters -Shooters Hill -Shootersway -Shootingstar -Shop -Shopland -Shoplands -Shopman -Shoppe -Shoppenhangers -Shoppers World -Shoppes -Shopping Center -Shopping Heights -Shopton -Shoptysons -Shoquist -Shore -Shore Acres -Shore Breeze -Shore Club -Shore Edge -Shore End -Shore Garden -Shore Harbour -Shore Park -Shore View -Shore Walk -Shorebird -Shoreclift -Shoreclub -Shoredale -Shoreditch High -Shorefield -Shorefront -Shoregate -Shoreham -Shoreham Beach -Shorehame Club -Shorehaven -Shorehill -Shorelake -Shoreland -Shoreline -Shorely -Shorer -Shores -Shores Edge -Shores Green -Shoreside -Shoreview -Shoreview Park -Shorewalk -Shoreward -Shoreway -Shorewood -Shorewood Oaks -Shorey -Shorland -Shorn -Shorncliffe -Shorne Ifield -Shornecliffe -Shorrold -Short -Short Curve -Short Cut -Short Hill -Short Hills -Short Line -Short Ridge -Shortborough -Shortcroft -Shortcrofts -Shortcross -Shortcut -Shortdale -Shorter -Shortheath -Shorthill -Shorthills -Shorthorn -Shortland -Shortlands -Shortline -Shortmead -Shortmeadow -Shortridge -Shorts -Shortt -Shortway -Shortwood -Shoshana -Shoshone -Shot Town -Shotfield -Shotgun -Shotgun Fire -Shotkoski -Shotkowski -Shotover -Shott -Shottendane -Shottenden -Shottermill -Shotters -Shottfield -Shotwell -Shouldham -Shoults -Shouse -Shove -Shovelers -Shoveller -Shovelstrode -Showers -Showfields -Showground -Showlow -Shrader -Shrapnel -Shratton -Shremor -Shresbury -Shreve -Shrewsbury -Shrewton -Shrimpton -Shrine -Shriners -Shrive -Shriver -Shroffold -Shropshire -Shroton -Shrub -Shrub End -Shrub Hollow -Shrubbs -Shrubbs Hill -Shrubland -Shrubs -Shrubsole -Shu Swamp -Shuart -Shubert -Shuck -Shudehill -Shuey -Shufelt -Shuler -Shults -Shultz -Shuman -Shumard Oak -Shumway -Shunpike -Shupe -Shupin -Shurdington -Shure -Shurlach -Shurland -Shurlock -Shurmer -Shurtleff -Shurwin -Shut -Shute -Shutley -Shutt -Shutter -Shuttle -Shuttle Hillock -Shutts -Shuyler -Shye -Si Mall -Siandra -Sias -Sibbald -Sibbick -Sibelius -Sibella -Sibert -Sibley -Sibley Hills -Sibley Park -Sibson -Sibthorpe -Sibton -Sicard -Siccut -Sicilian -Sicily -Sickle -Sickle Bar -Sicklehatch -Sickles -Sickletown -Siclen -Sicomac -Sicora -Sidbrook -Sidbury -Sidcup -Siddall -Siddeley -Siddens -Siddington -Siddon -Siddons -Side -Side End -Side Saddle -Sidebotham -Sidebottom -Sideburn -Sidehill -Siden -Sideview -Sideways -Sidlaw -Sidlaws -Sidlaws Hills -Sidler -Sidley -Sidmouth -Sidmouth Grange -Sidney -Sidney Jones -Sidney Lanier -Sidwell -Sidworth -Siebel -Sieben -Siebert -Sieberts Ridge -Siedler -Siegel -Siegert -Siegle -Siegmond -Siek -Sielaff -Siemens -Siemer -Siems -Siena -Sienna -Sienna Park -Sierks -Sierra -Sierra Azul -Sierra College -Sierra Creek -Sierra Crest -Sierra Glen -Sierra Gold -Sierra Highlands -Sierra Madre -Sierra Mar -Sierra Meadow -Sierra Mesa -Sierra Mills -Sierra Morena -Sierra Oaks -Sierra Oaks Vista -Sierra Park -Sierra Pass -Sierra Point -Sierra Ridge -Sierra River -Sierra Spring -Sierra Sunset -Sierra Ventura -Sierra View -Sierra Vista -Sierra Wood -Sierra Woods -Sierraville -Sierrawood -Siesta -Siesta Key -Siesta Vista -Sievers -Sievert -Siewert -Sigberth Ridge -Sigdon -Sigel -Sigerson -Sigfrid -Siglingen -Sigma -Sigmona -Sigmond -Sigmund -Signal -Signal Bell -Signal Hill -Signal Tree -Signal View -Signature -Signe -Signet -Signs -Sigourney -Sigsbee -Sigtim -Sigwalt -Siino -Sikkema -Sikorsky -Silacci -Silace -Silala -Silam -Silas Hutchinson -Silber -Silberhorn -Silberman -Silbury -Silchester -Silco -Silcoates -Silecroft -Silence -Silent Brook -Silent Creek -Silent Dell -Silent Hills -Silent Lake -Silent Valley -Silent Wolf -Silentree -Silentwood -Siler -Silerton -Silex -Silica -Silicon -Silicon Valley -Silk -Silk MIll -Silk Mill -Silk Mill Way Iveson -Silk Oak -Silk Tree -Silk Wood -Silkfield -Silkham -Silkmore -Silkstone -Silkstream -Silktree -Silkwood -Silkworth -Sill -Silleck -Sillery Bay -Silliman -Silloway -Silo -Silo Inn -Silopanna -Silsbee -Silsby -Silsden -Silsoe -Silton -Silva -Silva Dale -Silva Ranch -Silva Valley -Silvaire -Silvan Glen -Silvana -Silvano -Silveira -Silver -Silver Beach -Silver Beech -Silver Bell -Silver Belt -Silver Berry -Silver Birch -Silver Brook -Silver Brush -Silver Canyon -Silver Charm -Silver Cliff -Silver Creek -Silver Creek Valley -Silver Crest -Silver Dollar -Silver Eagle -Silver Fern -Silver Fir -Silver Fox -Silver Hill -Silver Hills -Silver Hollow -Silver King -Silver Knoll -Silver Lake -Silver Lake Park -Silver Lake Service -Silver Lakes -Silver Leaf -Silver Legend -Silver Linden -Silver Lode -Silver Maple -Silver Meadow -Silver Moon -Silver Mountain -Silver Oak -Silver Park -Silver Peak -Silver Pine -Silver Plume -Silver Point -Silver Poplar -Silver Reef -Silver Ridge -Silver Rock -Silver Royd -Silver Run -Silver Shadow -Silver Shoon Ranch -Silver Side -Silver Spring -Silver Springs -Silver Spruce -Silver Spur -Silver Trail -Silver Trumpet -Silver View -Silver Wings -Silvera -Silverado -Silverbell -Silverbend -Silverberry -Silverbirch -Silverbrook -Silvercove -Silvercrest -Silverdale -Silverdate -Silverdell -Silverfield -Silvergate -Silverhey -Silverhill -Silverhollow -Silverhurst -Silverlake -Silverland -Silverlea -Silverleaf -Silverline -Silverlock -Silverlocke -Silvermere -Silvermine -Silverod -Silverpine -Silverside -Silversmith -Silverspot -Silversted -Silverstone -Silverthorn -Silverthorne -Silvertide -Silverton -Silvertown -Silvertrail -Silvertree -Silvertrees -Silverview -Silvervine -Silverwater -Silverwell -Silverwillow -Silverwood -Silvester -Silveyville -Silvia -Silvio -Silwood -Silzer -Sim -Simarano -Simard -Simas -Simberlan -Simbroco -Simcoe -Simek -Simeon -Simeone -Simister -Simkins -Simko Ranch -Simla -Simmat -Simmerhorn -Simmondley -Simmondley New -Simmonds -Simmone -Simmons -Simmonstone -Simms -Simms Landing -Simnel -Simo -Simon -Simon Hapgood -Simon Hill -Simon Lake -Simon Pearce -Simon Ranch -Simon Willard -Simond -Simonds -Simonds Farm -Simone -Simone Weil -Simoni -Simoni Ranch -Simons -Simonsen -Simonson -Simonton -Simotes -Simpkin -Simpkins -Simpkins Farm -Simplemarsh -Simplex -Simplicity -Simpson -Simpson Hill -Simpson Ranch -Simpsons -Sims -Simsbury -Simson -Sinai -Sinaloa -Sinatra -Sinawoy -Sincero -Sinclair -Sinclair Martin -Sinclair Mill -Sincots -Sindel -Sinderland -Sindle -Sindlesham -Sindsley -Sine -Sines -Singapore -Singer -Singers -Singers Glen -Singing Hill -Singing Hills -Singing Pines -Singing Wood -Singingwood -Single -Single Bird -Single Foot -Single Leaf -Singleborough -Singles Ridge -Singletary -Singleton -Singletree -Singlets -Singlewell -Singley -Singworth -Sinhurst -Sinnen -Sinnet -Sinnott -Sinon -Sinvalco -Sion -Sioux -Sip -Sipes -Sipp -Sippel -Sipson -Sir Alexander -Sir Antony -Sir Bernard Paget -Sir Douglas -Sir Evelyn -Sir Francis -Sir Galahad -Sir Gawaine -Sir George Martin -Sir Henry Brackenbury -Sir John Fogge -Sir Joseph Banks -Sir Lancelot -Sir Reginald Ansett -Sir Reynard -Sir Richard -Sir Richard Fairey -Sir Thomas -Sir Thomas Mitchell -Sir Viceroy -Sir Walter -Sir Walter Raleigh -Sir Warwick Fairfax -Sir William -Siracusa -Sirard -Sirdar -Sirder -Siren -Siri -Siri Rock Quarry -Sirius -Sirius Cove -Sirois -Siron -Sirus -Sisalbed -Sisco -Sise -Sish -Sisk -Siske -Siskin -Siskiyou -Sisley -Sissinghurst -Sisson -Sissons -Sister Cities -Sisters -Sistova -Sitgreaves -Sitka -Sitter -Sittingbourne -Siusun Valley -Sivert -Sivic -Siwanoy -Siward -Six Box -Six Corners -Six Mile Creek -Six Penny -Six Towers -Sixteen Twenty -Sixteenth -Sixth -Sixth Mile -Sixty Acres -Sizemore -Skaggs Island -Skaggs Springs -Skagit -Skahan -Skaife -Skamania -Skander -Skardu -Skarratt -Skate -Skater -Skating Pond -Skeels -Skeet Hill -Skeffington -Skeggs -Skegness -Skegsbury -Skehan -Skeleton -Skelgill -Skelley -Skellinger -Skellington -Skellorn Green -Skellow -Skelton -Skelton Grange -Skeltons -Skelwith -Skene -Skenes -Skerne -Skerry -Skerton -Sketty -Skeyne -Skeynes -Ski -Ski Hill -Ski Lodge -Skiba -Skibbereen -Skibbs -Skibo -Skid -Skidaw -Skidmore -Skidmores -Skiers -Skiff -Skiles -Skillcorn -Skillings -Skillman -Skilton -Skimmer -Skimped Hill -Skimpot -Skinner -Skinners -Skinners Turn -Skinney -Skip -Skip Jack -Skipjack -Skipper -Skippers -Skippets -Skipsey -Skipton -Skipwith -Skipworth -Skokie -Skokie Ridge -Skokie Valley -Skoshi -Skove -Skube -Skunks Misery -Skurla -Sky -Sky Blue -Sky Country -Sky Creek -Sky Crest -Sky Croft -Sky Farm -Sky Hawk -Sky Hill -Sky Hy -Sky Lake -Sky Meadow -Sky Meadows -Sky Oaks -Sky Peals -Sky Ranch -Sky Top -Sky Valley -Sky View -Skyarla -Skybrook -Skycrest -Skye -Skyewood -Skyfarm -Skyfield -Skyglade -Skyharbour -Skyhawk -Skyhigh -Skyhill -Skyland -Skylane -Skylar -Skylark -Skylawn -Skyler -Skyline -Skyline Curve -Skyline Lakes -Skyline Quarry -Skyline Ranch -Skylonda -Skymont -Skypark -Skyport -Skyranch -Skyridge -Skyswood -Skytop -Skytrain -Skyview -Skyvilla -Skyvue -Skywalker -Skywalker Ranch -Skyward -Skywater -Skyway -Skywest -Skywood -Slab Haul -Slabey -Slack -Slack Fold -Slack Gate -Slackcote -Slacks -Slad -Sladden -Slade -Slade Green -Slade Oak -Slade Run -Slade School -Slade green -Sladedale -Sladen -Slag -Slager -Slagle -Slaidburn -Slaight -Slaithwaite -Slaithwaite Radcliffe -Slalom -Slaney -Slapp -Slapton -Slate -Slate Creek -Slate Run -Slateacre -Slater -Slaters -Slatesford -Slatin -Slattery -Slattocks Link -Slaugham -Slaughter Dam -Slaughterhouse -Slavin -Slayback Ranch -Slayton -Sleaford -Sleapshyde -Slecroft -Sledding Hill -Sledmere -Sledmoor -Sleeper -Sleepers Farm -Sleeping Bear -Sleeping Dog -Sleepy -Sleepy Creek -Sleepy Hollow -Sleepy Hollow Dairy -Sleepy Horse -Sleepy Lake -Sleepy Ridge -Sleepy Valley -Sleepy View -Sleets -Sleigh -Sleight -Slender -Slessor -Slewins -Slice -Slidell -Sligar -Sligo -Sligo Creek -Sligo Mill -Slim -Slimbridge -Slimmons -Slines New -Slines Oak -Slingerland -Slip -Slip Mill -Slipe -Slippery Creek -Slippery Rock -Slipshoe -Slipway -Sloan -Sloane -Sloane Square Sloane -Sloanes Beach -Sloat -Slobe -Slocom -Slocum -Slocum Lake -Slocumb -Slone -Sloop -Slope -Slopecrest -Sloping Hill -Slosson -Slough -Slough Farm -Slougham -Sloughgreen -Sloughhouse -Sloway Coast -Slugwash -Sluice -Sluman -Slumberland -Sly -Sly Fox -Slyvan -Slyvaner -Smail -Smaland -Smalewell -Small -Small Brook -Small Grove -Small Hythe -Small Island -Small Lees -Small Reward -Smallberry -Smallbridge -Smallbrook -Smalldean -Smalley -Smallfield -Smallford -Smallgains -Smalls -Smalls Hill -Smallshaw -Smallshill -Smallwood -Smallwood Church -Smalzel -Smarden -Smart -Smarts -Smarts Heath -Smarts Mill -Smawthorne -Smc -Smeathers -Smeaton -Smeaton Approach Spur -Smeaton Grange -Smedley -Smee -Smeed -Smeeton -Smetana -Smethurst -Smethurst Hall -Smethwick -Smewins -Smidmore -Smidt -Smilax -Smiley -Smink -Smitana -Smith -Smith Brother -Smith Field -Smith Fold -Smith Hill -Smith Manor -Smith Mills -Smith Point -Smith Ridge Fire -Smith Switch -Smith Valley -Smith Village -Smitham Bottom -Smithers -Smithers Hill -Smithfield -Smithhart -Smithies -Smithies Moor -Smithills -Smithills Dean -Smithlee -Smiths -Smithson -Smithtown -Smithurst -Smithville -Smithway -Smithwick -Smithwood -Smithwood Common -Smithwoods -Smithy -Smithy Clough -Smithy Fold -Smithybridge -Smitty -Smittys -Smoke -Smoke Bellow -Smoke Rise -Smoke Tree -Smokehouse -Smokerise -Smoketown -Smoketree -Smokewood -Smokey Hill -Smokey Mountain -Smokey Mtns -Smokey Ridge -Smoky -Smoky Quartz -Smoot -Smoothleaf -Smug Oak -Smugglers -Smugglers Cove -Smull -Smullen -Smyrna -Smyth -Smythe -Smythes -Snail Lake -Snailing -Snailswell -Snake -Snake Brook -Snake Den -Snake Hill -Snakey -Snapdragon -Snape -Snapper -Snapper Cove -Snapping Turtle -Snaresbrook -Snargate -Snark -Snarsgate -Snatts -Snead -Sneath -Snedecor -Snedeker -Sneden -Snediker -Sneech Pond -Sneed -Sneider -Sneling -Snell -Snell Valley -Snelling -Snelling Av Service -Snelling Lake -Snellings -Snelson -Sneyd -Snicker -Snider -Snipe -Snipes -Snively -Snoad -Snoden -Snodgrass -Snodhurst -Snodland -Snohomish -Snohomish Woodinville -Snoll Hatch -Snoozin Tree -Snoqualmie -Snoqualmie River -Snouffers School -Snow -Snow Acres -Snow Bird -Snow Creek -Snow Crest -Snow Egret -Snow Goose -Snow Hill -Snow Lily -Snow Meadow -Snow Owl -Snow Point -Snow Valley -Snowball -Snowbell -Snowberry -Snowbird -Snowbury -Snowcap -Snowcrest -Snowden -Snowden Pond -Snowden River -Snowden Square -Snowden Woods -Snowdenham -Snowdenham Links -Snowdon -Snowdown -Snowdrift -Snowdrop -Snowerhill -Snowfall -Snowflake -Snowflower -Snowgoose -Snowhill -Snowhill Estates -Snowling -Snows Hill -Snowshill -Snowshoe -Snowsill -Snowy -Snowy Egret -Snowy Owl -Snug Cove -Snug Harbor -Snug Haven -Snug Hill -Snughorne -Snure -Snydale -Snyder -Soalwood -Soames -Soane -Soap -Soaphill -Soapstone -Soare -Soares -Soaring Hill -Soaring Oaks -Soave -Sobey -Sobieski -Sobo -Sobrante -Sobraon -Sobrato -Sobro -Soccer -Social -Society -Society Hill -Socorro -Soda Canyon -Soda Pop -Soda Springs -Sodaro -Sodbury -Soden -Soder -Sofa -Sofala -Soffel -Soffron -Sofia -Sofield -Soft Wind -Softwater -Softwind -Softwood -Soham -Sohap -Sohier -Sohl -Soho -Soifer -Soil Conservation -Sojourn -Soke -Sol -Sola -Solana -Solander -Solano -Solano College -Solar -Solar Hills -Solari -Solari Ranch -Solaridge -Solaris -Solartron -Solberg -Solbys -Soldate -Soldier -Soldier Hill -Soldiers -Soldiers Field -Sole Farm -Solebay -Soledad -Solent -Soleoak -Solera -Soleri -Soley -Solferino -Solfisburg -Soliano -Solid -Solidarity -Solis -Solitaire -Solitary -Solito -Solitude -Sollers Point -Solley -Sollport -Solmar -Solna -Solness -Solo -Soloff -Soloman -Solomon -Solomon Pond -Solomon Pond Mall -Solomons -Solomons Island -Soloms Court -Solon -Solono -Solook -Solow -Solstice -Soltes -Solvay -Solveig -Solway -Soma -Somali -Somer -Somerby -Somercote -Somerdale -Somerden -Somerfield -Somerford -Somerglen -Somerhill -Someries -Somerleyton -Somers -Somers Peterson -Somersbury -Somerset -Somersham -Somersville -Somersworth -Somerton -Somertrees -Somervelle -Somerville -Somme -Sommer -Sommerfeld -Sommers -Sommers Landing -Sommerville -Somner -Somnes -Somoa -Somonauk -Sonar -Sonata -Sondberg -Sonderburg -Sondergaard -Sondes -Sondes Place -Song Sparrow -Songbird -Songer -Songwood -Sonia -Soniver -Sonja -Sonn -Sonne -Sonneborne -Sonnet -Sonning -Sonning Common -Sonning High -Sonny -Sonoma -Sonoma Creek -Sonoma Mountain -Sonoma Ridge -Sonoma Valley -Sonora -Sonora Pass -Sonrel -Sonter -Sonuca -Sony -Soo -Soo Line -Soothill -Soper -Sophia -Sophie -Sophies -Sophist -Sophistry -Sophocles -Sophurst -Sopwith -Soquel -Soquel Creek -Soquel San Jose -Soquel Turnpike -Soquel Wharf -Sora -Sorbello -Sorbonne -Sorci -Sorel -Sorell -Soren -Soreng -Sorensen -Sorenson -Sorenstam -Sorento -Sorich -Sorlie -Sornoway -Sorowoc -Sorrel -Sorrel Hill -Sorrel Ridge -Sorrell -Sorrelwood -Sorreno -Sorrentino -Sorrento -Sorrie -Sorting -Sortmill -Sorton -Soscol -Soscol Creek -Soscol Ferry -Sosnowitz -Soss Moss -Sotano -Sotelo -Soterion -Sotherington -Sotheron -Sothoron -Sotnip -Soto -Sotoyome -Sotterly -Sotweed -Souberie -Soudan -Soueid -Sought For -Souh Park -Soulard -Souldern -Soule -Soult -Sound -Sound Bay -Sound Beach -Sound Shore -Sound View -Soundcrest -Sounding Shore -Soundside -Soundview -Sour Gum -Sourwood -Sousa -Souster -Sout Batavia -Soutborough -Souter -South -South A -South Abbott -South Abel -South Aberdeen -South Access -South Accommodation -South Acre -South Acres -South Acton -South Adams -South Airmont -South Airport -South Akron -South Alana -South Alaska -South Albert -South Alder -South Alfaya -South Allen -South Almaden -South Almond -South Alta -South Americus -South Amos -South Amphlett -South Amundsen -South Andover -South Angeline -South Angelo -South Apple -South Ash -South Ashland -South Ashton -South Atlantic -South Audley -South Augusta -South Austin -South Autumn -South Avalon -South Avon -South Avondale -South B -South Bacon Island -South Bailey -South Bangor -South Bank -South Bar -South Barn -South Barrington -South Barton -South Bascom -South Batavia -South Bateman -South Bay -South Bayard -South Baybrook -South Bayfield -South Bayshore -South Bayview -South Baywood -South Beach -South Bear Ridge -South Bedford -South Bella Monte -South Bellflower -South Bend -South Benefit -South Bennett -South Benton -South Bernardo -South Betty -South Beverly -South Birch -South Birkbeck -South Black Lion -South Blaney -South Blue Island -South Boas -South Bolingbrook -South Bolton -South Bond -South Border -South Boundary -South Bow -South Bow Lake -South Bowdoin -South Boylston -South Bozeman -South Bradford -South Branch -South Branciforte -South Brandon -South Bremen -South Bridge -South Bridgepointe -South Bristol -South Britton -South Broadway -South Brockway -South Brook -South Brooks -South Bruce -South Brush -South Buckingham -South Buena Vista -South Buffum -South Bulfinch -South Burns -South Bush -South Busse -South Byron -South California -South Cambridge -South Cameron -South Camp Meade -South Canal -South Canton -South Capitol -South Carboy -South Cargo -South Carlback -South Carol -South Carolina -South Carpenter -South Carr -South Carriage -South Carriage Way -South Carver -South Castro -South Cedar -South Cedar Glen -South Cemetry -South Center -South Central -South Chappell -South Charles -South Charlestown -South Chelmsford -South Cherrywood -South Chesterfield -South Chestnut -South Chicago -South Circle -South Circular -South Claremont -South Clark -South Clearbrook -South Cleveland -South Clinton -South Clover -South Clovercrest -South Cloverdale -South Club -South Clubhouse -South Cluff -South Coast -South Cody -South College -South Columbus -South Commercial -South Common -South Concord -South Conduit -South Conrad -South Conway -South Coombs -South Cooper -South Coral -South Corgiat -South Corporate -South Cottage -South Cotton -South Country Line -South County Line -South Court -South Cove -South Cragmont -South Creek -South Creekside -South Crescent -South Crest -South Creston -South Crestwood -South Cross -South Croston -South Croxted -South Crystal -South Culpeper -South Cypress -South D -South Dakota -South Danvers -South Davis -South Dawson -South Day -South Dean -South Dearborn -South Deborah -South Dedham -South Deer -South Deer Run -South Delancey -South Delaware -South Della -South Diameter -South Dickenson -South Dike -South Director -South Division -South Dogwood -South Dole -South Donovan -South Dorchester -South Doris -South Douglas -South Dowling -South Down -South Downs -South Dublin Ranch -South Dundalk -South Dunton -South Dwyer -South E -South Eads -South Eagle Nest -South East Main -South Eastern -South Eastwood -South Eddy -South Eden -South Edgewood -South Edison -South Edlin -South Edmunds -South El Monte -South Ela -South Eldorado -South Elise -South Eliseo -South Elizabeth -South Ellsworth -South Elm -South Elmgrove -South Elmhurst -South Elmwood -South Embers -South Emerald Oak -South Emerson -South End -South Entrance -South Erin -South Escanaba -South Esk -South Estates -South Estelle -South Euclid -South Evergreen -South Ewing -South Exchange -South Exit -South F -South Fairbanks -South Fairmont -South Fairview -South Falmore -South Farm -South Farrar -South Federal -South Ferdinand -South Fern -South Fernandez -South Ferry -South Fidalgo -South Field -South Filbert -South Fillmore -South Findlay -South Fine -South Fitch Mountain -South Flagg -South Fletcher -South Foothill -South Forest -South Forest Edge -South Fork -South Fountain -South Fox -South Frances -South Franklin -South Freda -South Frederick -South Free -South Fremont -South French Camp -South Fresno -South Frick -South Front -South Frontage -South Frontenac -South Fuel Break -South Fuller -South Fulton -South Furness -South G -South Garden -South Garden Loop -South Garfield -South Garrard -South Gate -South Gazelle -South Genesee -South Genessee -South Genevieve -South Genoa -South Gertrude -South Gilbert -South Gillis -South Glacier -South Glendale -South Glengarry -South Goebbert -South Goff -South Gold Ridge -South Grafton -South Graham -South Grand -South Grant -South Great -South Green -South Green Springs -South Greenleaf -South Greenthorn -South Greenwich -South Greenwood -South Grimmer -South Grove -South Grove Hill -South Grovetree -South Guild -South H -South Hall -South Halsted -South Ham -South Hampton -South Hancock -South Hanford -South Hanningfield -South Harbor -South Harbor View -South Hardy -South Harlan -South Harlem -South Harney -South Harriette -South Harris -South Harrison -South Hart -South Hartley -South Hartson -South Harvard -South Harvey -South Hatlen -South Haven -South Havenwood -South Hays -South Hazel -South Helena -South Henry -South Hess -South Hewitt -South Hickory -South Hicks -South High -South Highland -South Hill -South Hills -South Hillside -South Hinds -South Hinkley -South Hobart -South Hoga -South Holden -South Holgate -South Hollenbeck -South Hollins Ferry -South Hollow -South Holly -South Holmes -South Holt -South Homer -South Horton -South Hospital -South Houston -South Howard -South Howe -South Howland -South Hudson -South Hughes -South Humboldt -South Hummingbird -South Hunter -South Huntington -South Huron -South Hutchins -South Hyde -South I -South I Oka -South Idaho -South Illinois -South Industrial -South Inland -South Inner Circle -South Ironwood -South Irving -South J -South Jack Tone -South Jackson -South Janet -South Jefferson -South John -South Johnson -South Judkins -South Juneau -South Juniper -South K -South Kaiser -South Kaspar -South Kasson -South Keeble -South Kelly -South Kennbeck -South Kennebeck -South Kennedy -South Kennicott -South Kenny -South Kensico -South Kent Des Moines -South Kenyon -South Keppler -South Kersica -South Kerwood -South King -South Kingston -South Klein -South Knickerbocker -South Knoll -South Knollwood -South Koster -South Krista -South L -South La Grange -South LaSalle -South Lake -South Lake Dell -South Lake Sarah -South Lakes -South Lakeview -South Lambeth -South Lammers -South Lancaster -South Land Park -South Lander -South Langston -South Langworthy -South Larwin -South Laurel -South Lavergne -South Lear -South Lee -South Lehman -South Leigh -South Leisure -South Lenox -South Leo -South Leonard -South Leslie -South Lewis Park -South Lexington -South Liberty -South Lilac -South Lillian -South Lincoln -South Linden -South Linneman -South Livermore -South Liverpool -South Lockhart -South Locust -South Lodge -South Loma -South Lonsdale -South Loomis -South Loop -South Loring -South Lorna -South Los Angeles -South Louis -South Lowe -South Ludlow -South Lycett -South M -South Mac Arthur -South Macarthur -South Mackinaw -South Madera -South Madison -South Magnolia -South Maharaja -South Mahwah -South Main -South Mallard -South Manistee -South Manley -South Manor -South Manteca -South Manthey -South Maple -South Marble -South Marina -South Marine -South Market -South Marquette -South Marwood -South Mary -South Mary Frances -South Mary Francis -South Mason -South Massachusetts -South Mathewson -South May -South Mayfair -South Mayflower -South Mc Clellan -South Mc Donell -South Mc Kinley -South McClellan -South McCracken -South McDonnell -South McDowell -South McGlincey -South McKinley -South Meacham -South Mead -South Meadow -South Meier -South Mellon -South Merced -South Meridian -South Mesnefield -South Meyers -South Michael -South Michigan -South Middletown -South Midland -South Milbrook -South Mill -South Mill Creek -South Miller -South Mills -South Milpitas -South Milton -South Minahen -South Mitchell -South Modesto -South Moffett -South Molton -South Monroe -South Monsey -South Montgomery -South Moore -South Moorings -South Moray -South Morgan -South Morning Sun -South Morrison -South Morrissey -South Mount Baker -South Mountain -South Murphy -South Muskegon -South Myrtle -South N -South Naperville -South Natali -South Nauraushaun -South Navarra -South Naylor -South Nebraska -South Nelson -South Netherlands -South Netherton -South Nevada -South New Wilke -South Newport -South Nightingale -South Nordic -South Norfolk -South Normal -South Norman -South Normandy -South O -South Oak -South Oakwood -South Ocean -South Ohio -South Old Annapolis -South Oleander -South Olive -South Oliver -South Ophir -South Orange -South Oraton -South Orcas -South Orchard -South Ordnance -South Oro -South Orr -South Othello -South Overlook -South Oxford -South P -South Pacific -South Palisades -South Palmer -South Palomar -South Pamela -South Parallel -South Park -South Park Place -South Park Plaza -South Park Victoria -South Parkview -South Pascack -South Pastoria -South Patrick -South Patton -South Paula -South Peak -South Pearl -South Pebble Beach -South Peck -South Pembroke -South Peoria -South Perimeter -South Perry -South Pershing -South Peter -South Phelps -South Pilgrim -South Pine -South Pine Mountain -South Pinebrook -South Pinehurst -South Pippin -South Platti -South Pleasant -South Plum -South Plum Grove -South Plummer -South Point -South Polo -South Pond -South Ponderosa -South Pondside -South Port -South Portal -South Porter -South Portland -South Powers -South Prairie -South Prentice -South Prescott -South Priest -South Princeton -South Puget -South Pump -South Q -South Quebec -South Queen -South Quinsigamond -South R -South Racine -South Radford -South Railroad -South Rainbow -South Ranch -South Rancho -South Randall -South Rapetta -South Ravine -South Raymond -South Reach -South Redwing -South Redwood -South Reeve -South Regatta -South Regent -South Reid -South Reina del Mar -South Rengstorff -South Reuter -South Rhoda -South Richard -South Richwood -South Ridge -South Ridge Vista -South Ridgeland -South Ridgemark -South Ridgewood -South River -South Riverside -South Robert -South Roberts -South Robinson -South Rockaway -South Rockridge -South Rodeo Gulch -South Rohlwing -South Rolling -South Roosevelt -South Rosal -South Rose -South Rosewood -South Row -South Roxbury -South Roxie -South Royd -South Ruble -South Ruggles -South Run Oaks -South Russell -South Rustic -South Ryan -South S -South Sacramento -South Saint Ceclia -South Salado -South Salem -South San Antonio -South San Francisco -South San Jose -South San Luis -South San Mateo -South San Pedro -South Sangamon -South Santa Cruz -South Schmale -South Schmidt -South School -South Sea -South Sequoia -South Serven -South Service -South Seward Park -South Shaker -South Sharp -South Shasta -South Shell -South Shelton -South Sherman -South Sherwood -South Shingle -South Shore -South Shoreline -South Sibley -South Side -South Side Three -South Sierra Nevada -South Silver Springs -South Sinclair -South Smith -South Snoqualmie -South Solano -South Somerset -South Southern -South Spencer -South Spokane -South Spooner -South Springer -South Springinsguth -South Springs -South Spruce -South Sprucewood -South Sullivan -South Summit -South Sunnycrest -South Sunnyvale -South Sunset -South Surrey -South Surrey Ridge -South Susan -South Sutter -South Sydney -South Taaffe -South Taft -South Tall Grass -South Tamarack -South Tantau -South Tea Garden -South Temple -South Tenter -South Terrace -South Tessier -South Thayer -South Thelma -South Thistle -South Three Oaks -South Tillicum -South Tinnin -South Tobin -South Todd -South Tolman -South Tonne -South Town -South Tracy -South Treehouse -South Trenton -South Tulsa -South Turnpike E Fire -South Tuxedo -South Tweed -South Union -South University -South Upland -South Vail -South Vale -South Valley -South Van Buren -South Van Dorn -South Van Dyke -South Van Horn -South Van Ness -South Vasco -South Veach -South Ventura -South Vermont -South Victor -South View -South Vincennes -South Virginia -South Voelker -South Wabash -South Wachusett -South Wacker -South Wagner -South Waite -South Walker -South Wallace -South Walnut -South Walpole -South Walter -South Walton -South Ward -South Warehouse -South Warren -South Wash -South Washington -South Water -South Watt -South Waverly -South Weald -South Webster -South Weller -South Wells -South Welty -South West -South West Hills -South Westmore Meyers -South Wharf -South Whipple -South Whippoorwill -South Whiskey Slough -South Whisman -South White -South White Rock -South Whitehall -South Whitney -South Wilder -South Wildwood -South Wilhoit -South Wilke -South Wilkie -South Willard -South William -South Williams -South Williamson -South Willow -South Willow Creek -South Willow Glen -South Wilma -South Winchester -South Windemere -South Windsor -South Winfield -South Wing Levee -South Winston -South Winthrop -South Witham -South Wolf -South Wolfe -South Wolfinger -South Wood -South Woodsbro -South Woodside -South Woodward -South Worple -South Wright -South Yale -South York -South de Anza -South del Puerto -South el Circulo -South el Macero -SouthCottage -Southall -Southall King -Southall Brent -Southall King -Southam -Southampton -Southard -Southards -Southaven -Southbank -Southbay -Southbend -Southboro -Southbound Frontage -Southbourne -Southbreeze -Southbridge -Southbrook -Southbury -Southby -Southcenter -Southchurch -Southcliff -Southcliffe -Southcombe -Southcote -Southcote Farm -Southcourt -Southcreek -Southcrest -Southcroft -Southcross -Southdale -Southdene -Southdown -Southeast -Southeast Allen -Southeast Andrews -Southeast Bain -Southeast Bassett -Southeast Bean -Southeast Berry -Southeast Bush -Southeast Cambridge -Southeast Carr -Southeast Cedar Ridge -Southeast Cherry -Southeast Cisco -Southeast Clark -Southeast Colvos -Southeast Cornell -Southeast Croston -Southeast Culver -Southeast Curtis -Southeast Darst -Southeast Diablo View -Southeast Donnelly -Southeast Douglas -Southeast Eastgate -Southeast Evans -Southeast Fairwood -Southeast Flint -Southeast Fragaria -Southeast Fraser -Southeast Glendale -Southeast Grandview -Southeast Harper Hill -Southeast Highland -Southeast John -Southeast Jones -Southeast Kinsey -Southeast Klahanie -Southeast Lake -Southeast Lake Young -Southeast Lake Youngs -Southeast Lewis -Southeast May Valley -Southeast McBreen -Southeast McCollough -Southeast Mirrormont -Southeast Muir -Southeast Olympiad -Southeast Oneil -Southeast Overra -Southeast Perimeter -Southeast Petroviski -Southeast Petrovitsky -Southeast Pratt -Southeast Ridge -Southeast Scatterwood -Southeast Scott -Southeast Sebring -Southeast Sedgwick -Southeast Southworth -Southeast Summerhill -Southeast Sycamore -Southeast Tola -Southeast View Park -Southeast Washington -Southeast Wax -Southeast Willock -Southeast Wilson -Southeast Windsor -Southeast Yeshua -Southeastern -Southend -Souther -Souther Cross -Southerland -Southerly -Southern -Southern Access -Southern Businss Park -Southern Connector -Southern Cross -Southern Heights -Southern Hills -Southern Marin Line -Southern Maryland -Southern Md -Southern Night -Southern Oak -Southern Oaks -Southern Pacific -Southern Perimeter -Southern Planter -Southern Slope -Southernden -Southerns -Southerton -Southey -Southfalls -Southfield -Southfields -Southfleet -Southfork -Southfront -Southgarth -Southgate -Southgate Farm -Southglen -Southgrove -Southhampton -Southhead -Southhill -Southholm -Southill -Southington -Southlake -Southlakes -Southland -Southlands -Southlane -Southlawn -Southlea -Southlees -Southleigh -Southmead -Southmere -Southmill -Southminster -Southmont -Southmoor -Southmore -Southold -Southpine -Southpoint -Southpointe -Southport -Southridge -Southrun -Southsea -Southshore -Southside -Southtown -Southvale -Southview -Southville -Southwark -Southwark Park -Southwater Point -Southway -Southwell -Southwell Grove -Southwell Park -Southwest -Southwest Adams -Southwest Alaska -Southwest Andover -Southwest Angeline -Southwest Atlantic -Southwest Austin -Southwest Bank -Southwest Barton -Southwest Bayview -Southwest Bradford -Southwest Bruce -Southwest Burton -Southwest Cambridge -Southwest Canada -Southwest Carroll -Southwest Caster -Southwest Cedarhurst -Southwest Cemetery -Southwest Channon -Southwest Charlestown -Southwest City View -Southwest Clark -Southwest Cloverdale -Southwest Colewood -Southwest Concord -Southwest Cove -Southwest Cove Point -Southwest Cowan -Southwest Crescent -Southwest Dakota -Southwest Dawson -Southwest Dilworth -Southwest Director -Southwest Donald -Southwest Donovan -Southwest Eastbrook -Southwest Eddy -Southwest Edmunds -Southwest Elisha -Southwest Ellerwood -Southwest Ellisport -Southwest Elmgrove -Southwest Englewood -Southwest Fernwood -Southwest Findlay -Southwest Fletcher -Southwest Florida -Southwest Fontanelle -Southwest Forest -Southwest Forney -Southwest Francis -Southwest Front -Southwest Frontenac -Southwest Gibson -Southwest Gorsuch -Southwest Governers -Southwest Graham -Southwest Grayson -Southwest Hanford -Southwest Harbor -Southwest Hawthorne -Southwest Henderson -Southwest Heper -Southwest Hill -Southwest Hillcrest -Southwest Hinds -Southwest Holden -Southwest Holgate -Southwest Holly -Southwest Horton -Southwest Hudson -Southwest Ida -Southwest Idaho -Southwest Jacobsen -Southwest Juneau -Southwest Kenyon -Southwest Klahanie -Southwest Klickitat -Southwest Lander -Southwest Langston -Southwest Lisabuela -Southwest Luana -Southwest Luana Beach -Southwest Madrona -Southwest Main -Southwest Manning -Southwest Maury Park -Southwest Michigan -Southwest Mills -Southwest Monroe -Southwest Morgan -Southwest Mount Cedar -Southwest Nevada -Southwest Normandy -Southwest Ober Beach -Southwest Ocean View -Southwest Olga -Southwest Orchard -Southwest Oregon -Southwest Orleans -Southwest Othello -Southwest Prince -Southwest Pritchard -Southwest Raymond -Southwest Rose -Southwest Roxbury -Southwest Seattle -Southwest Seola -Southwest Shawnee -Southwest Shoremont -Southwest Shoreview -Southwest Snoqualmie -Southwest Soper -Southwest Spokane -Southwest Sullivan -Southwest Sunset -Southwest Thistle -Southwest Tillicum -Southwest Tillman -Southwest Trenton -Southwest Van Olinda -Southwest Virginia -Southwest Waite -Southwest Walker -Southwest Warsaw -Southwest Webster -Southwest Willow -Southwest Winthrop -Southwest Yancy -Southwestern -Southwick -Southwicke -Southwind -Southwinds -Southwold -Southwood -Southwood Lawn -Southwood Smith -Southwoods -Southworth -Southwynde -Souza -Sova -Sovereign -Sovereign Fold -Sovereign Heights -Soward -Soward Ranch -Sowards -Sowego -Sowerby -Sowles -Sowood -Sowrey -Spa -Spaans -Space Park -Spadafore -Spade -Spady -Spafford -Spafield -Spagnoli -Spahn Ranch -Spaich -Spain -Spains Hall -Spalding -Spaletta -Span -Spanby -Spangle -Spangler -Spaniards -Spaniel -Spanish -Spanish Bay -Spanish Cove -Spanish Flat Loop -Spanish Flat Resort -Spanish Grant -Spanish Oak -Spanish Oaks -Spanish Ranch -Spanish River -Spanish Trail -Spanker -Spanos -Spar -Spardley -Spare -Sparepenny -Sparger -Spargur -Sparhawk -Spark -Sparkbridge -Sparkel -Sparkes -Sparkeswood -Sparkill -Sparkle -Sparks -Sparks Ranch -Sparlin -Sparling -Sparr Spring -Sparrow -Sparrow Farm -Sparrow Hawk -Sparrow House -Sparrow Valley -Sparrowbush -Sparrowhawk -Sparrows -Sparrows Point -Sparsholt -Sparta -Spartan -Spartan Arrow -Sparth -Sparth Bottoms -Sparthfield -Spartina -Sparton -Spartons -Sparvell -Spates -Spates Hill -Spath -Spatham -Spathis -Spats -Spatz -Spaulding -Spaview -Spaw -Speak -Speaker -Speakers -Spear -Spearhead -Spearing -Spearman -Spearmint -Spears -Speart -Specht -Spechter -Speckel -Speckled Wood -Spectacle -Spectacle Hill -Spectacle Pond -Spector -Spectrum -Speed -Speedway -Speedwell -Speen -Speer -Speer Ranch -Speers -Speicher -Speidel -Speir -Speke -Spekes -Speldhurst -Spell -Spella -Spellbrook -Spellman -Spelman -Spen -Spen Vale -Spenard -Spence -Spencer -Spencer Brook -Spencer Hill -Spencer Place Cowper -Spencer Place Leopold -Spencer Sweet Pea -Spencers -Spencerville -Spender -Spengler -Spenleach -Spenlow -Spenney -Spennithorne -Spenny -Speno -Spenser -Speranza -Sperber -Sperl -Sperling -Sperring -Sperry -Spert -Spetti -Spey -Spezia -Spg Hill -Sphinx -Spibey -Spice -Spice Bush -Spice Hill -Spice Run -Spiceberry -Spicebush -Spicer -Spicewood -Spiegelhagen -Spielman -Spier -Spiers -Spignet -Spikehorn -Spiker -Spikes -Spikes Bridge -Spiller -Spillers -Spillway -Spilman -Spinaker -Spinale -Spindle -Spindletree -Spindrift -Spindrifter -Spine -Spinfield -Spingfield -Spinks -Spinks Ferry -Spinmaker -Spinnaker -Spinnaker Point -Spinnells -Spinner -Spinners -Spinney -Spinney Hill -Spinning Wheel -Spinosa -Spinoza -Spiraea -Spiral -Spire -Spirea -Spirit -Spirit Hills -Spirit Knob -Spiro -Spirou -Spit -Spital -Spitfire -Spithurst -Spittal -Spittler -Spittlesea -Spitz -Spitzer -Spiva -Split Creek -Split Oak -Split Rail -Split Rock -Split Tree -Splitrail -Splitrock -Splude -Spock Ridge -Spodden -Spode -Spode Green -Spodegreen -Spofford -Spofforth -Spoganetz -Spoil -Spokane -Spoke -Spoleto -Spolini -Sponden -Spondon -Spongs -Sponson -Spool -Spoon -Spoon Hill -Spoonbil -Spoonbill -Spooner -Spooners -Spoonger -Sporehams -Sporing -Sporst Center -Sports -Sports Park -Sportsbank -Sportside -Sportsman -Sportsmans -Spot -Spot Club -Spoto -Spotswood -Spotswood Gravel Hill -Spotsylvania -Spotted Gum -Spotted Horse -Spotted Owl -Spout -Spout Brook -Spout Run -Sprague -Sprain -Sprain Brook -Sprain Valley -Spraque -Spratley -Spratt -Spratt Hall -Spratts -Sprauer -Spray -Sprayer -Spreadbury -Spreading Oak -Spreckels -Spreckels Lake -Spreckles -Spreen -Spreighton -Spriering -Sprig -Spriggs -Spring -Spring Acres -Spring Bank -Spring Bay -Spring Bottom -Spring Branch -Spring Brook -Spring Close -Spring Clough -Spring Coppice -Spring Court -Spring Cove -Spring Creek -Spring Cress -Spring Crest -Spring Elms -Spring Farm -Spring Field -Spring Flower -Spring Gaden -Spring Garden -Spring Gardens -Spring Glen -Spring Green -Spring Grove -Spring Hall -Spring Haven -Spring Head -Spring Hill -Spring Hill Ring -Spring Hill School -Spring Hills -Spring Hollow -Spring House -Spring Knoll -Spring Lake -Spring Lakes -Spring Lawn -Spring Mall -Spring Manor -Spring Marsh -Spring Meadow -Spring Meadows -Spring Mill -Spring Mountain -Spring Oaks -Spring Park -Spring Plow -Spring Point -Spring Pond -Spring Pools -Spring Ridge -Spring Saw -Spring Splendor -Spring Summit -Spring Time -Spring Tree -Spring Vale -Spring Valley -Spring View -Spring Villa -Spring Village -Spring Water -Spring Wood -Spring bridge -Springarden -Springbank -Springbloom -Springbluff -Springbriar -Springbridge -Springbrook -Springclose -Springcreek -Springcrest -Springdale -Springdale Estates -Springer -Springfarm -Springfield -Springfield Center -Springfield Oaks -Springfield Park -Springfield Ranch -Springfield Village -Springfields -Springflower -Springhall -Springham -Springhaven -Springhead -Springhill -Springhollow -Springholly -Springholm -Springhouse -Springhurst -Springhurst Park -Springlake -Springlawn -Springle -Springleaf -Springline -Springmaid -Springman -Springmead -Springmeadow -Springmill -Springmont -Springpark -Springpath -Springpoint -Springrice -Springridge -Springrun -Springs -Springsguth -Springside -Springsong -Springsteen -Springstone -Springtide -Springtime -Springtree -Springvale -Springvalley -Springview -Springville -Springwater -Springwell -Springwod -Springwood -Springwood Hall -Springwood Meadow -Springwoods -Sprinklewood -Spriteview -Spritz -Sproat -Spronketts -Sproul -Sproule -Spruance -Spruce -Spruce Hill -Spruce Hills -Spruce Hollow -Spruce Meadows -Spruce Mill -Spruce Ridge -Spruce Rock -Spruce Tree -Spruce Wood -Sprucecreek -Sprucedale -Sprucetree -Sprucewood -Spruell -Spruill -Sprundel -Spruson -Spuhler -Spuley -Spumante -Spur -Spur Hill -Spur Oak -Spur Rock -Spur Wheel -Spuraway -Spurgeon -Spurgin -Spurgrove -Spurlands End -Spurling -Spurn -Spurr -Spurrell -Spurrier -Spurstowe -Spurt -Spurway -Spurwood -Spy -Spy Glass Hill -Spy Glass Ridge -Spy Pond -Spyglass -Spyglass Cove -Spyglass Hill -Spyglass Hills -Spyri -Spyros -Spywood -Squab -Squam -Squam Hill -Squannacook -Squanto -Squantum -Square -Square Barn -Squareshire -Squarey -Squash Creek -Squaw Brook -Squaw Hill -Squaw Valley -Squeri -Squibb -Squibnocket -Squids Gate -Squire -Squire Hill -Squirecreek -Squiredell -Squirehill -Squires -Squires Bridge -Squires Hill -Squires Mill -Squires Wodd -Squirrel -Squirrel Creek -Squirrel Hall -Squirrel Hill -Squirrel Hollow -Squirrel Run -Squirrels Heath -Squirrelwood -Sreia -St Michaels -St Agathas -St Agnells -St Agnes -St Aidans -St Alban -St Albans -St Albans Bay -St Albans Hollow -St Albans Mill -St Alfege -St Alphege -St Andrew -St Andrew Bethune -St Andrews -St Andrews Trace -St Ann -St Anna -St Anne -St Annes -St Anns -St Anselms -St Anthony -St Anthonys -St Armand -St Asaphs -St Aubin -St Augustine -St Augustines -St Austall -St Austell -St Austells -St Barnabas -St Barnabe -St Barthelemy -St Bartholomews -St Bees -St Benedict -St Benedicts -St Bernard -St Bernards -St Birinus -St Boniface -St Botolph -St Botolphs -St Brannocks -St Brelades -St Brendans -St Brigids -St Camillus -St Catherine -St Catherines -St Cecile -St Celcilia -St Chads -St Charles -St Christophers -St Clair -St Claire -St Clairs -St Clare -St Clement -St Clements -St Clere Hill -St Cloud -St Colette -St Croix -St Croix River -St Cross -St Cuthberts -St Davids -St Denis -St Dennis -St Dionis -St Domingo -St Dunstan -St Dunstans -St Dunston -St Ediths -St Edmunds -St Edwards -St Eleanoras -St Elmo -St Elmos -St Ervans -St Ethelbert -St Eva -St Fidelis -St Francis -St George -St Georges -St George’s -St Giles -St Giles High -St Gothard -St Guiberts -St Heather -St Helena -St Helens -St Helens Park -St Helier -St Helier Furness -St Heliers -St Hildas -St Hilliers -St Hughes -St Ignatius -St Ives -St Ivians -St James -St Jane -St John -St John Fisher -St Johnland -St Johns -St Johnsbury -St Joseph -St Joseph S -St Josephs -St Joseph’s -St Jude -St Judes -St Julian -St Julians -St Katherines -St Keverne -St Kilda -St Kildas -St Laurence -St Laurent -St Lawrence -St Leon -St Leonards -St Lo -St Louis -St Lucia -St Luke -St Lukes -St Malo -St Marcel -St Margaret -St Margarets -St Marie -St Mark -St Marks -St Marrys -St Martin -St Martins -St Mary -St Mary S -St Marychurch -St Marys -St Marys Church -St Marys Hall -St Matthew -St Matthews -St Matthias -St Michael -St Michaels -St Micheals -St Michel -St Mihiel -St Mildreds -St Monicas -St Moritz -St Nazaire -St Neots -St Nicholas -St Norbert -St Olives -St Omer -St Oswalds -St Ouen -St Patrick -St Patricks -St Paul -St Paul Park -St Pauls -St Pauls Church Bath -St Pauls Cray -St Peg -St Peter -St Peter Elgin -St Peters -St Peters Church -St Philips -St Phillips -St Quentin -St Quintin -St Regis -St Richards -St Rocco -St Rochs -St Roman -St Sampson -St Saviours -St Simon -St Swithins -St Swithuns -St Teresas -St Thomas -St Timothys -St Tropez -St Victor -St Vincent -St Vincents -St Volodymyr -St Wilfrids -St William -St Williams -St Winifreds -St catherines -St katherines -St. Agnes -St. Albans -St. Andrews -St. Annes -St. Anns -St. Audrey -St. Augustines -St. Austell -St. Barnabas -St. Benedict -St. Blaise -St. Botolph -St. Bride -St. Catherine -St. Catherines -St. Chads -St. Christopher -St. Clair -St. Claire -St. Clare -St. Cleres -St. Cyprians -St. Davids -St. Dionis -St. Dunstans -St. Ediths -St. Erkenwald -St. Francis -St. George -St. Georges -St. Giles -St. Helena -St. Helens -St. Helier -St. Ives -St. James -St. James on the -St. John -St. Johns -St. Julian -St. Katherine -St. Laurence -St. Leonards -St. Loo -St. Louis -St. Margaret -St. Margarets -St. Marks -St. Martins -St. Mary -St. Marys -St. Matthew -St. Matthews -St. Mervyns -St. Michaels -St. Modwen -St. Nazaire -St. Nicholas -St. Nicolas -St. Olafs -St. Oswulf -St. Paul -St. Pauls -St. Peters -St. Philip -St. Piers -St. Quintin -St. Rule -St. Saviours -St. Thomas -St. Vincent -St. Wilfrids -St.Albans -St.Gothard -St.Helier Love -St.Helier Central -St.James -St.Lukes -St.Marys -St.Norbert -St.Olaves -St.Peters -St.Thomas -Staaf -Staal -Stabean -Stable -Stable Yard -Stablebridge -Stableford -Stablegate -Stablehouse -Stabler -Stableview -Stablewood -Stacey -Stacey Hills -Stacey M -Staceys -Stachan -Staci -Stacia -Stack -Stacker -Stackfield -Stackhouse -Stackinghay -Stackler -Stackpole -Stacy -Staden -Stadhampton -Stadium -Stadler -Staedler -Staff -Staffa -Staffelot -Staffhurst Wood -Staffmark -Stafford -Stafford Hill -Staffordshire -Stafney -Stag -Stag Hill -Stag Oak -Stag Pasture -Stagbury -Stage -Stage Coach -Stage Gulch -Stage Harbor -Stage Hill -Stagecoach -Stagecoach Canyon -Stagehand -Stageline -Stager -Stagg -Staggers -Staghead -Staghorn -Stagi -Stags Run -Stags View -Stahl -Stahley -Stahls -Stahls Point -Stahlway -Stainbank -Stainbeck -Stainbume -Stainburn -Stainby -Staincliffe -Staincliffe Hall -Stainer -Staines -Stainforth -Staining -Stainland -Stainmore -Stainsbury -Staint Augustine -Stainton -Stair -Stair Foot -Stairbridge -Stairfoot -Stairley -Stairs -Stairway -Staithe -Staithes -Stake -Stakeford -Stakehill -Stakers -Stakes -Stakes Corner -Staleford -Stalevicz -Staley -Staley Hall -Staley Manor -Staleybridge -Staleys -Stalham -Stalisfield -Stalker -Stall -Stall Brook -Stallings -Stallion -Stalmine -Stalsburg -Stalwart -Stalybridge -Stalyhill -Stamas -Stambaugh -Stambridge -Stamford -Stamford Brook -Stamford Green -Stamford New -Stamford Park -Stamm -Stammergate -Stamp -Stampstone -Stan -Stan Fey -Stan Haven -Stanage -Stanam -Stanbank -Stanbaugh -Stanborough -Stanbourne -Stanbridge -Stanbro -Stanbrook -Stanbury -Stance -Stanchion -Stanchuk -Stanco -Stancomb Broad -Stancombe -Stancross -Standale -Standard -Standedge -Standen -Stander -Standfield -Standfill -Standford -Standford Hill -Standhill -Standiford -Standinghall -Standish -Standley -Standon -Standpipe -Standrich -Standridge -Stane -Stanes -Stanfield -Stanford -Stanford Farm -Stanford Oak -Stanford Rivers -Stangate -Stangland -Stangrove -Stangus -Stanham -Stanhome -Stanhope -Stanhope Park -Stanhorne -Stanich -Stanie Brae -Stanier -Staniford -Staniland -Stanislaus -Stanjoy -Stanks -Stanlake -Stanlen -Stanley -Stanley Dollar -Stanley Gardens -Stanley Hall -Stanley Hill -Stanley Park -Stanmer -Stanmoor -Stanmore -Stanmount -Stannage -Stannard -Stannary -Stanneylands -Stanningley -Stannybrook -Stansbury -Stansbury Lake -Stansell -Stansfield -Stansgate -Stanshawe -Stansmore -Stanson -Stanstead -Stansted -Stanton -Stanton Crossing -Stanton Hill -Stantonville -Stanway -Stanwell -Stanwell Moor -Stanwell New -Stanwich -Stanwick -Stanwix -Stanwood -Stanworth -Stanwyck -Stanyan -Stanycliffe -Stanyforth -Stapelton -Stapenhill -Staple -Staplefield -Stapleford -Stapleford Hall -Staplehurst -Staples -Staples Ranch -Staples Ridge -Stapleton -Stapleton Hall -Stapley -Stapp -Star -Star Bush -Star Farm -Star Flower -Star Grass -Star Hill -Star House -Star Lilly -Star Mill -Star Pine -Star Point -Star Post -Star Tulip -Star View -Starbird -Starboard -Starboard Tack -Starbright -Starbrook -Starbuck -Starbucks Main -Starburst -Starbush -Starch House -Starcliffe -Starcrest -Starcross -Stardrift -Stardusk -Stardust -Starfield -Starfighter -Starfire -Starfish -Starflower -Starhill -Starin -Stark -Starke -Starkey -Starkie -Starkin -Starlight -Starling -Starling Valley -Starling View -Starlings -Starlit -Starlit Ponds -Starlite -Starmead -Starmond -Starmont -Starmoor -Starodub -Starr -Starr Creek -Starr Jordan -Starr View -Starratt -Starrett Hill -Starring -Starrock -Starsplit -Starswept -Start -Starters -Starting Gate -Startins -Starts Hill -Starveacre -Starvecrow -Starview -Starward -Starwood -Stasia -Stassen -State -State Farm -State Forest -State Hospital Farm -State Line -State Park -Statecrest -Stately -Stately Oak -Stately Oaks -Staten -States -Stateside -Statesman -Stateview -Statford -Statham -Stathos -Station -Station Approach -Station Estate -Station House -Station Valley -Statler -Staton -Statrlight -Stattel -Statter -Statton -Statute -Staubitz -Staudtmauer -Stauffer -Staunton -Stave Yard -Staveley -Stavendish -Staverton -Stavola -Stavordale -Stavors -Stavros -Staycoff -Stayley -Stayner -Stayton -Stead -Steadfast -Steading -Steadman -Steam -Steam Farm -Steam Pump -Steamboat -Steamboat Cove -Steamboat Landing -Steamer -Steamview -Stearman -Stearns -Stearns Hill -Stearton -Stebbing -Stebbins -Stebondale -Stech -Stecher -Stedhall -Stedham -Stedman -Stedwick -Steed -Steed Hill -Steedman -Steedman Point -Steeds -Steel -Steel Creek -Steel Hill -Steel Mill -Steele -Steele Canyon -Steele Hill -Steele Oak -Steele Ranch -Steele Resort -Steele Ridge -Steeler -Steeles -Steelhead -Steelox -Steens Hill -Steenwick -Steep Hill -Steephollow -Steeple -Steeple Chase -Steeple Hill -Steeple Hills -Steeple Run -Steeple View -Steeplechase -Steeples -Steepleside -Steepletop -Steepridge -Steepwood -Steer -Steer Ridge -Steere -Steere Farm -Steerforth -Steers -Stefan -Stefani -Stefanic -Stefano -Steffan -Stege -Stegen -Steger -Steger Monee -Stegman -Stehle -Stehlik -Stehlin -Steiber -Steidel -Steiger Hill -Steiger Lake -Steilen -Stein -Steinbeck -Steinberg -Steiner -Steinhardt -Steinhauser -Steinly -Steinmaier -Steinton -Steinway -Steity -Stelfox -Steli -Stell -Stella -Stellar -Stelle -Stelling -Stellman -Stelton -Stem -Stem Brook -Stembridge -Stemer -Stemler -Stemmer -Stemmler -Stemp -Stencar -Stender -Stendhal -Steneman -Stengel -Stenhammer -Stenhouse -Stenman -Stenner -Stenning -Stenson -Step -Stephalee -Stephan -Stephan Marc -Stephanie -Stephanie Marie -Stephanville -Stephen -Stephen Marshall -Stephen Reid -Stephen Rennie -Stephendale -Stephenie -Stephens -Stephens Lake -Stephenson -Stephensons -Stephenville -Stepney -Stepney High -Stepneyford -Stepneys -Steppey -Stepps -Steps Hill -Stercho -Sterland -Sterling -Sterling Gate -Sterling Grove -Sterling Heights -Sterling Hill -Sterling Lake -Sterling Montague -Sterling Oak -Sterling Oaks -Sterling Ranch -Sterling View -Stern -Stern Ranch -Sterndale -Sterne -Sterner -Sternhall -Sternhold -Sterns -Sterry -Stetcher -Stetchworth -Stetson -Stetson Heights -Stetson Shrine -Stetzer -Steuart -Steubel -Steuben -Steve -Steve Biko -Stevebrook -Stevedore -Steven -Steven Martin -Steven Ray -Steven Smith -Stevenage -Stevens -Stevens Battle -Stevens Canyon -Stevens Creek -Stevens Forest -Stevens Glen -Stevenson -Stevenson Bridge -Stevenson Service -Steventon -Stever -Steves -Steves Farm -Stevick -Stevin -Stew -Stew Leonard -Steward -Stewards Green -Stewart -Stewarton -Stewartown -Stewarts -Stewartville -Stewkley -Steyning -Steynton -Stice -Stich -Stich Mi -Stickball -Stickens -Stickens Lock -Stickfast -Stickland -Stickle -Stickley -Stickling Green -Stickman -Stickney -Stieg -Stiemly -Stierlin -Stiff -Stifford -Stifford Clays -Stile -Stilebridge -Stiles -Stiles Pond -Still -Still Creek -Still Forest -Still Meadow -Still Meadows -Still Pond -Still River -Still River Depot -Still Water -Stillbreeze -Stillbrook -Stillbrook Farm -Stillbrooke -Stillford -Stilling -Stillingfleet -Stillings -Stillington -Stillman -Stillmeadow -Stillmeadows -Stillness -Stillo -Stillson -Stillspring -Stillview -Stillwater -Stillwell -Stillwell Acres -Stillwind -Stilson -Stilt -Stiltner -Stilwell -Stima -Stimel -Stimis -Stimson -Stinchcomb -Stinchfield -Stingray -Stinnett -Stinson -Stinson Service -Stipa -Stipp -Stipularis -Stires -Stirgess -Stirling -Stirling Bridge -Stirling Court -Stirling Park -Stirrup -Stirrup Cup -Stirrup Iron -Stites Hill -Stiups -Stivaletta -Stivers -Stoakley -Stobart -Stobbs -Stobe -Stock -Stock Farm -Stock Orchard -Stock Ranch -Stockade -Stockberry -Stockbreach -Stockbridge -Stockburn -Stockbury -Stockcroft -Stockdale -Stockdales -Stocker -Stockerhead -Stockers -Stockett -Stocketts -Stocketts Run -Stockfield -Stockford -Stockheld -Stockhill -Stockhoff -Stockholm -Stockhouse -Stocking -Stockings -Stockingstone -Stockingswater -Stockland -Stockland Green -Stockley -Stockman -Stockport -Stocks -Stocks Green -Stocks Park -Stocksfield -Stockton -Stockton Tees -Stockwell -Stockwell Farm -Stockwell Park -Stockwood -Stockyards -Stoconga -Stocton -Stodart -Stoddard -Stoddard Park -Stoddards -Stoddart -Stoddert -Stodham -Stodola -Stoecker -Stoetz -Stoffa -Stoke -Stoke Common -Stoke Court -Stoke Newington -Stoke Newington High -Stoke Poges -Stoke Row -Stokely -Stokenchurch -Stokes -Stokes Farm -Stokesay -Stokesby -Stokesheath -Stokesley -Stokoe -Stoll -Stolle -Stollwood -Stomp -Stompits -Stompond -Stonaker -Stonard -Stondon -Stone -Stone Arch -Stone Barn -Stone Breaks -Stone Bridge -Stone Brig -Stone Brook -Stone Cabin -Stone Canyon -Stone Castle -Stone Circle -Stone Cleave -Stone Cliff -Stone Court -Stone Creek -Stone Crop -Stone Cross -Stone End -Stone Fence -Stone Gate -Stone Hall -Stone Harbor -Stone Harbour -Stone Haven -Stone Heather -Stone Hedge -Stone Hill -Stone Hollow -Stone House -Stone Jug -Stone Lake -Stone Ledge -Stone Marsh -Stone Meadow -Stone Meadow Farm -Stone Mill -Stone Oak -Stone Oaks -Stone Path -Stone Pier -Stone Pillar -Stone Pine -Stone Pit -Stone Post -Stone Quarry -Stone Range -Stone Ridge -Stone Root -Stone School -Stone Spring -Stone Springs -Stone Tower -Stone Trail -Stone Vale -Stone Valley -Stone Village -Stone Wall -Stoneacre -Stonebarger -Stonebarn -Stonebriar -Stonebridge -Stonebridge Green -Stonebridge View -Stonebrook -Stonebrooke -Stoneburner Mill -Stonecastle -Stonechat -Stonecleave -Stonecleve -Stonecliff -Stonecliffe -Stoneclough -Stonecot Hill Tudor -Stonecreek -Stonecress -Stonecrest -Stonecroft -Stonecrop -Stonecross -Stonecutter -Stonecutters -Stonedale -Stonedge -Stonedrop -Stonefence -Stonefield -Stonefoot -Stoneford -Stonegarden -Stonegate -Stonehall -Stoneham -Stonehand -Stonehart -Stonehaven -Stonehead -Stonehearth -Stoneheather -Stonehedge -Stonehenge -Stoneheyes -Stonehill -Stoneholm -Stonehorse -Stonehouse -Stonehouse Hill -Stonehurst -Stoneings -Stonelake Club -Stoneland -Stonelea -Stoneleat -Stoneleigh -Stoneleigh Manor -Stoneleigh Park -Stoneman -Stonemason -Stonemead -Stonemeadow -Stonemere -Stonemill -Stonemill Farms -Stoneness -Stonenest -Stonepail -Stonepine -Stoner -Stoner Hill -Stoneridge -Stoneridge Mall -Stones -Stones Bank -Stones Corner -Stones End -Stones Manor -Stones Throw -Stonesboro -Stonesheep -Stonesteads -Stonestile -Stonestile Farm -Stonestreet -Stoneswood -Stonetown -Stoneview -Stonewall -Stonewall Farm -Stonewall Jackson -Stonewall Park -Stonewater -Stonewell -Stonewheel -Stonewood -Stonewyck -Stoney -Stoney Bottom -Stoney Brae -Stoney Bridge -Stoney Brook -Stoney Brooke -Stoney Castle -Stoney Common -Stoney Creek -Stoney Hill -Stoney Island -Stoney Lea -Stoney Meadows -Stoney Point -Stoney Ridge -Stoney Rock -Stoney Run -Stoney View -Stoney Weir -Stoneyard -Stoneybrae -Stoneybrook -Stoneybrooke -Stoneycreek -Stoneycrest -Stoneycroft -Stoneydown -Stoneyfield -Stoneyfold -Stoneyford -Stoneygate -Stoneyhill -Stoneyhurst -Stoneyland -Stoneylands -Stoneyside -Stonhouse -Stonie Heyes -Stonington -Stonley -Stonny Batter -Stonor -Stonum -Stony -Stony Beach -Stony Brae -Stony Brook -Stony Cove -Stony Creek -Stony Field -Stony Gorge -Stony Hill -Stony Hollow -Stony Island -Stony Path -Stony Point -Stony Ridge -Stony Run -Stony Wylde -Stonybrook -Stonycrest -Stonycroft -Stonyford -Stonyhurst -Stonyridge -Stonytown -Stoos -Stoothoff -Stop River -Stopes -Stopford -Storage -Storch -Storch Turn -Storch Woods -Store -Store Hill -Store House -Storehouse -Storer -Stores -Storetti -Storey -Stories -Storig -Stork -Storksmead -Storland -Storm -Stormount -Storms -Stormwood -Stormy -Stornaway -Stornoway -Storrie -Storrington -Storrow -Storrs -Stort -Stortford -Stortford Hall -Storth Meadow -Story -Story Acres -Story Book -Story Hill -Storybook -Storz -Stotfold -Stothard -Stothoff -Stott -Stotts -Stoughton -Stour -Stourcliffe -Stourton -Stout -Stovall -Stovell -Stover -Stow -Stow Lake -Stowaway -Stowe -Stowecroft -Stowel -Stowell -Stowers -Stowring -Stowting -Strabane -Stracey -Strachan -Stradbroke -Stradella -Strader -Stradford -Strafello -Strafford -Straford -Straford Garden -Strahan -Straight -Strain -Strait -Straits -Straits View -Strakers -Straloch -Strand -Strand Approach -Strande -Stranden -Strander -Strang -Strange -Stranger -Strangford -Strangman -Stranraer -Stranton -Strasbourg -Strasburg -Strassberger -Strassburg -Strasser -Strata -Stratfield -Stratfield Saye -Stratford -Stratford Bay -Stratford House -Strath Erin -Strath Haven -Strathalbyn -Strathallen -Stratham -Strathaven -Strathblaine -Strathbrook -Strathcarron -Strathcona -Strathdon -Strathearn -Stratheden -Strathfield -Strathgordon -Strathleven -Strathlora -Strathmeade -Strathmere -Strathmoor -Strathmore -Strathnairn -Strathspey -Strathville -Strathyre -Straton -Stratos -Strattford -Stratton -Stratton Chase -Stratton Hill -Stratton Pond -Stratton Ranch -Stratus -Stratwood -Straub -Straugh -Straughn -Straus -Strausberg -Strauss -Stravinsky -Straw -Straw Bale -Straw Hollow -Strawberry -Strawberry Bank -Strawberry Canyon -Strawberry Hill -Strawberry Knoll -Strawberry Park -Strawberry Patch -Strawbridge -Strawbridge Square -Strawflower -Strawtown -Stray -Strayer -Strayfield -Strayhorn -Streakes Field -Stream -Stream Pit -Stream Pond -Stream Valley -Stream View -Stream Wood -Streamside -Streamview -Streamwood -Streatfeild -Streatfield -Streatham -Streatham High -Streatham HillTelford -Streathbourne -Streatley -Strebel -Streblow -Strebor -Strech -Streels -Street -Street Bridge -Street End -Street Hill -Streeter -Streeters -Streetfield -Streethaven -Streethouse -Streeton -Strehler -Streiff -Streimer -Streitz -Strek -Streng -Strenger -Strentzel -Strese -Stretchworth -Stretford -Stretton -Strickland -Strickroth -Stride -Strieff -Striker -Striley -Strine -Strines -String -Stringer -Stringer Dam -Stringers -Stringfellow -Stringtown -Stringybark -Striped Bass -Strivens -Strobel -Strobridge -Strobus -Strode -Stroh -Strohn -Stroker -Strolling -Strom -Stroman -Strome -Stromlo -Stromness -Stromquist -Strone -Strong -Strongbow -Stronghurst -Strongs -Strongstry -Stronsa -Strood -Stroud -Stroud Farm -Stroud Green -Stroude -Stroudley -Stroup -Strout -Strouts -Stroven -Strover -Strowbridge -Struan -Struble -Struckman -Struen Marie -Strully -Strunks -Strutfield -Struthers -Struttmann -Struttons -Struve -Struyk -Stryker -Strype -Strzlecki -Stuart -Stuart Kaplan -Stuart Mill -Stuart Ridge -Stuart Robeson -Stuart on Oxford -Stuarton -Stuarts -Stub -Stub Toe -Stubb -Stubbers -Stubbin -Stubbins -Stubbins Hall -Stubble -Stubbs -Stubbs Moor -Stubby -Stuber -Stubley -Stubley Mill -Stubpond -Stubtoe -Stuckey -Stuckler -Stucley -Studarus -Studd -Studding Sail -Studdridge -Studebaker -Student -Student Center -Students -Studham -Studholme -Studio -Studios -Studland -Studley -Studley Grange -Studridge -Studt -Stuenkel -Stuhr -Stukeley -Stukely -Stults -Stulz -Stumble -Stump -Stump Neck -Stumptown -Sturbridge -Sturdee -Sturdivant -Sturdy -Sturge -Sturgeon -Sturgeon Lake -Sturges -Sturgess -Sturgis -Sturgus -Sturl -Sturla -Sturm -Sturnbridge -Sturney -Sturno -Sturr -Sturry -Sturt -Sturtevant -Sturtons -Stutfield -Stutt -Stutton -Stutz -Stuyvesant -Styal -Stychens -Styebank -Styertown -Styhead -Style -Stylecroft -Styler -Styles -Stylon -Suakin -Sub -Subagai -Subec -Subiaco -Sublett -Substation -Subtle -Suburban -Suburbia -Subway -Success -Succetti -Such -Sucher -Sucinto -Sucker Lake -Sudan -Sudberry -Sudborne -Sudbourne -Sudbrook -Sudbrooke -Sudbury -Sudbury Court -Sudbury Heights -Sudden -Sudden Pond -Sudeley -Sudell -Sudley -Sudley Manor -Sudlow -Sudsbury -Sue -Sue Ann -Sueirro -Suel -Sueno -Suez -Suffern -Suffield -Suffolk -Suffolk Park -Suffork -Sufi -Sufonet -Sugar -Sugar Babe -Sugar Barge -Sugar Bear -Sugar Beet -Sugar Bush -Sugar Cane -Sugar Creek -Sugar Hill -Sugar House -Sugar Loaf -Sugar Maple -Sugar Meadow -Sugar Mill -Sugar Pine -Sugar Pit -Sugar Toms -Sugar Valley -Sugar View -Sugar Well -Sugarberry -Sugarbush -Sugarcane -Sugarland -Sugarland Meadow -Sugarland Run -Sugarland Valley -Sugarloaf -Sugarloaf Mountain -Sugarloaf View -Sugarpine -Sugarplum -Sugartree -Sugarwood -Sugden -Suggs -Sugiyama -Suheil -Suisse -Suisun -Suisun Valley -Suit -Suiter -Suitland -Suitt -Sulby -Sulfrian -Sulgrave -Sulgrove -Sulhamstead -Sulina -Sulivan -Sulky -Sulley -Sulliman -Sullivan -Sullivans -Sully -Sully Lake -Sully Park -Sulmam -Sulmone -Sulphur -Sulphur Spa -Sulphur Spring -Sulphur Springs -Sultan -Sulyma -Sumac -Sumacs -Sumatra -Sumbray -Sumburgh -Summa -Summer -Summer Blossom -Summer Blossum -Summer Breeze -Summer Day -Summer Duck -Summer Gate -Summer Glen -Summer Grove -Summer Heights -Summer Hill -Summer Hollow -Summer Home -Summer House -Summer House Hill -Summer Isle -Summer Leaf -Summer Leave -Summer Meadow -Summer Moon -Summer Oak -Summer Oaks -Summer Park -Summer Pointe -Summer Pond -Summer Rain -Summer Ridge -Summer Rose -Summer Shade -Summer Sky -Summer Sunrise -Summer Sunset -Summer Village -Summer Walk -Summer Wheat -Summer Wind -Summerall -Summerbell -Summerbreeze -Summerbridge -Summerbrook -Summercourt -Summercreek -Summercrest -Summerdale -Summerday -Summerfield -Summergate -Summergrove -Summerheights -Summerhill -Summerhill Burnham -Summerhome Park -Summerhouse -Summerland -Summerlands -Summerleaf -Summerleaze -Summerlee -Summerley -Summerleys -Summerlin -Summerly -Summerplace -Summerrain -Summerridge -Summers -Summers Grove -Summersbury -Summersby -Summerseat -Summerset -Summershade -Summershades -Summerside -Summersong -Summersweet -Summerswood -Summertime -Summerton -Summertree -Summervale -Summerview -Summerville -Summerwind -Summerwood -Summit -Summit A -Summit B -Summit Canyon -Summit Corner -Summit Creek -Summit Fr -Summit Hall -Summit Hills -Summit Lake -Summit Manor -Summit Oaks -Summit Park -Summit Point -Summit Ranch -Summit Ridge -Summit School -Summit Shores -Summit Springs -Summit View -Summit View Ranch -Summit Wood -Summit Woods -Sumner -Sumner Brown -Sumner Grove -Sumner Lake -Sumner Perry -Sumner South -Sumpter -Sumpwams -Sumter -Sumutka -Sun -Sun Blossom -Sun Brook -Sun Center -Sun City -Sun Cliff -Sun Court -Sun Glen -Sun Glory -Sun Glow -Sun Gold -Sun Haven -Sun Hill -Sun Meadow -Sun Mor -Sun Mountain -Sun Oak -Sun Orchard -Sun Park -Sun Point -Sun Ranch -Sun Ray -Sun River -Sun Run -Sun Shadow -Sun Tree -Sun Valley -Sun West -Sunamber -Sunapee -Sunbank -Sunbeam -Sunberry -Sunbird -Sunbonnet -Sunborough -Sunbow -Sunbower -Sunbreeze -Sunbridge -Sunbright -Sunbrook -Sunburst -Sunbury -Sunbury Court -Sunby -Suncast -Suncatcher -Suncliff -Sunco -Suncook -Suncote -Suncountry -Suncrest -Suncrest Hill -Suncroft -Sund -Sundale -Sundance -Sunday -Sundberg -Sunderland -Sunderleigh -Sunderlin -Sunderton -Sundew -Sundial -Sundin -Sundon -Sundon Park -Sundown -Sundowner -Sundridge -Sundrift -Sundringham -Sundrop -Sunfaire -Sunfield -Sunfish -Sunfish Lake -Sunflower -Sungarden -Sungate -Sunglow -Sunhaven -Sunhill -Sunhills -Sunken -Sunken Meadow -Sunken Orchard -Sunkist -Sunland -Sunland Vista -Sunlaws -Sunlea -Sunleaf -Sunleigh -Sunlight -Sunlit -Sunlit Ann -Sunlite -Sunmead -Sunmeadow -Sunmill -Sunmore -Sunning -Sunning Hill -Sunningdale -Sunningfields -Sunninghill -Sunnings -Sunny -Sunny Acres -Sunny Bank -Sunny Bower -Sunny Brae -Sunny Brook -Sunny Brooke -Sunny Brow -Sunny Chapel -Sunny Cove -Sunny Creek -Sunny Dell -Sunny Gardens -Sunny Glen -Sunny Hill -Sunny Hills -Sunny Knoll -Sunny Meadow -Sunny Meadows -Sunny Oaks -Sunny Orchard -Sunny Plain -Sunny Ridge -Sunny Side -Sunny Slope -Sunny View -Sunny Vista -Sunnyacres -Sunnybank -Sunnybrae -Sunnybrook -Sunnycrest -Sunnycroft -Sunnydale -Sunnydays -Sunnydell -Sunnydene -Sunnyfield -Sunnyfields -Sunnygate -Sunnyglen -Sunnyhaven -Sunnyhill -Sunnyhills -Sunnyholt -Sunnylea -Sunnymead -Sunnymede -Sunnymere -Sunnymount -Sunnyridge -Sunnyrock -Sunnyside -Sunnyslope -Sunnyslope Farm -Sunnyslopes -Sunnyvale -Sunnyview -Sunnywood -Sunnywoods -Sunol -Sunol Valley -Sunpace -Sunpark -Sunpeak -Sunray -Sunridge -Sunrise -Sunrise Beach -Sunrise Farm -Sunrise Greens -Sunrise Hill -Sunrise Hills -Sunrise Hwy N Service -Sunrise Mall -Sunrise Meadows -Sunrise Mountain -Sunrise Park -Sunrise Pines -Sunrise Ridge -Sunrise South -Sunrise Terrace -Sunrise Valley -Sunrise View -Sunrise Vista -Sunrock -Sunrose -Sunseason -Sunset -Sunset Glen -Sunset Hill -Sunset Hills -Sunset Knoll -Sunset Lake -Sunset Lakes -Sunset Maple -Sunset Meadows -Sunset Mobiles -Sunset Park -Sunset Place -Sunset Ridge -Sunset Rock -Sunset View -Sunshadow -Sunshine -Sunshine Cottage -Sunshine Valley -Sunshire -Sunsilver -Sunspark -Sunspring -Sunsprite -Sunstar -Sunstone -Sunstream -Sunsweet -Sunswyck -Suntaug -Sunte -Suntone -Suntree -Sunvale -Sunvalley -Sunvaught -Sunview -Sunway -Sunwest -Sunwich -Sunwisper -Sunwood -Sunwood Valley -Suomi -Suosso -Superba -Superfortress -Superior -Supor -Supornick -Supplee -Supply -Supreme -Supreme Ct -Sur Mer -Surada -Surat -Surber -Surbiton -Surbiton Hill -Surele -Surf -Surf View -Surface -Surfperch -Surfside -Surfview -Surig -Surita -Surmont -Surperior -Surplus -Surprise -Surr -Surratts -Surratts Manor -Surratts Village -Surrenden -Surrey -Surrey Circle -Surrey Heath -Surrey Heights -Surrey Hill -Surrey Hts -Surrey Ridge -Surrey Service -Surrey Square -Surrey Water -Surrey Woods -Surreywood -Surro -Surry -Surrydale -Surryhill -Surryse -Surtess -Survey -Surveyor -Surveyor Abbot -Surveyors Creek -Susan -Susan Leslie -Susan Oak -Susan Rosemary -Susana -Susanah -Susanna -Susannah -Susanne -Susans -Susi -Susie -Susini -Susquehanna -Susquehannock -Susses -Sussex -Sussex Corner -Sussex Creek -Sussman -Susy -Sutch -Sutcliff -Sutcliffe -Suteki -Suter -Suthard -Sutherland -Suthurin -Sutlej -Sutler -Sutphen -Sutphin -Sutro -Sutro Heights -Sutter -Sutter Creek -Sutter Gate -Sutter Hill -Sutter Island -Sutter Slough Bridge -Sutters -Sutters Gold -Sutterton -Sutterville -Sutterwind -Suttie -Suttle -Sutton -Sutton Baron -Sutton Common -Sutton Court -Sutton Dale -Sutton Green -Sutton Hall -Sutton Hill -Sutton Manor -Sutton Oaks -Sutton Park -Sutton Wick -Sutton Wood -Sutton Woods -Suttondale -Suttons -Suttons Park -Suttonwood -Suttor -Suview -Suwanee -Suwarrow -Suydam -Suzanne -Suzette -Suzie -Suzie Q -Suzzane -Svea -Svenson -Sverge -Swabey -Swaby -Swagman -Swailes -Swaim -Swain -Swaine -Swainland -Swains -Swains Lock -Swains Pond -Swainson -Swainson Hawk -Swainsons Hawk -Swainsthorpe -Swainstone -Swainwood -Swaisland -Swakeleys -Swale -Swalecliff -Swaledale -Swales -Swallow -Swallow House -Swallow Point -Swallow Rock -Swallow Tail -Swallowdale -Swallowfield -Swallows -Swallows Nest -Swallowtail -Swalls -Swalm -Swamp -Swamp Circle -Swamp Fox -Swamphen -Swampscott -Swampy -Swan -Swan Creek -Swan Harbour -Swan Lake -Swan Oak -Swan Point -Swan Pond -Swanage -Swanberg -Swanbourne -Swanbridge -Swandale -Swane -Swanee -Swanell -Swaner -Swanfield -Swank -Swanland -Swanley -Swanley Bar -Swanley Village -Swann -Swannekin -Swanns -Swans Creek -Swans Mill -Swanscoe -Swanscomb -Swanscombe -Swansea -Swansfield -Swanson -Swanson Creek -Swansona -Swanston -Swanstree -Swanton -Swanton View -Swanworth -Swanzy -Swanzy Dam -Swaps -Swarbrick -Swarcliffe -Sward -Swardale -Swarthmore -Swarts -Swartz -Swartzel -Swasedale -Swasey -Swaton -Swattenden -Swayfield -Swaylands -Swayne -Swaynes -Swaynesland -Swayze -Sweat Briar -Swede Lake -Sweden -Sweden Point -Swedish Mission -Sweeley -Sweeney -Sweeneydale -Sweeny -Sweet -Sweet Andrea -Sweet Autumn -Sweet Bay -Sweet Birch -Sweet Briar -Sweet Cherry -Sweet Clover -Sweet Grass -Sweet Gum -Sweet Hill -Sweet Hollow -Sweet Maggie -Sweet Meadow -Sweet Oak -Sweet Pea -Sweet Pecan -Sweet Pine -Sweet Water -Sweet William -Sweetbay -Sweetbirch -Sweetbriar -Sweetbrier -Sweetbrook -Sweetflower -Sweetgrass -Sweetgum -Sweethaven -Sweetings -Sweetland -Sweetland Farm -Sweetlands -Sweetleaf -Sweetloves -Sweetman -Sweetmans -Sweetmeadow -Sweetnam -Sweetridge -Sweets -Sweetser -Sweetspring -Sweetwater -Sweetwater Springs -Sweetwood -Sweezy -Sweigert -Sweitzer -Swenson -Swete -Swett -Swett Hill -Swettenham -Sweyne -Swickard -Swider -Swift -Swift Arrow -Swift Creek -Swift River -Swift Run -Swift Run Trails -Swifts -Swifts Green -Swiftsure -Swiftwater -Swillers -Swillington -Swinborne -Swinbourne -Swinbrook -Swinburn -Swinburne -Swindells -Swinderby -Swindon -Swinebourne -Swineyard -Swinfield -Swinford -Swing -Swing Swang -Swingate -Swingingdale -Swingle -Swinks Mill -Swinley -Swinnerton -Swinnow -Swinside -Swinson -Swinstead -Swinton -Swirl -Swiss -Switch Grass -Switchback -Switchboard -Switchglass -Switchgrass -Swithemby -Swithens -Swithin -Swithland -Switzer -Swoffer -Swoop Hill -Swope -Sword -Swordale -Swordfish -Swordsmans -Swordstone -Sworford -Swridgedale -Swrobinwood Beach -Swyncombe -Syar -Sybaris -Sybert -Sybil -Sybilla -Sybourn -Sycamore -Sycamore Canyon -Sycamore Glen -Sycamore Hill -Sycamore Landing -Sycamore Leaf -Sycamore Ridge -Sycamore Springs -Sycamore Valley -Sychem -Sycolin -Sydall -Syddal -Syddall -Sydell -Sydenham -Sydenham Park -Sydenstricker -Sydervelt -Sydner -Sydney -Sydney Joseph -Sydney Park -Sydnor -Syers -Syke -Sykes -Sykesville -Sykora -Syl Dor -Syldeo -Sylhowe -Sylla -Sylmar -Sylva -Sylvain -Sylvamdur -Sylvan -Sylvan Dell -Sylvan Glade -Sylvan Glen -Sylvan Heights -Sylvan Knoll -Sylvan Lake -Sylvan Meadow -Sylvan Moor -Sylvan Woods -Sylvandale -Sylvaner -Sylvania -Sylvanleigh -Sylvanus -Sylvanus Wood -Sylvar -Sylverdale -Sylvester -Sylvestri -Sylvestris Fire -Sylvia -Sylviawood -Sym -Symblist -Syme -Symes -Symington -Symmes -Symmonds -Symnes -Symond -Symonds -Symonds Green -Symons -Symor -Symphony -Symphony Meadow -Symphony Woods -Syndall -Syndicate -Synge -Syon -Syosset -Syosset Woodbury -Syracuse -Syrd -Syril -Syrup Mill -Systems -Systron -Systrum -Syvestrus Fire -Szymanski -T Alexander -Taaffe -Tab -Tabalum -Tabard -Taber -Taber Hill -Tabernacle -Tabiona -Table -Table Mountain Fire -Tableer -Tabler -Tabley -Tabley Hill -Tabooba -Tabor -Tabor Hill -Tabor House -Tabora -Tabors -Tabourie -Tabrett -Tabscott -Tabway -Tacana -Tacaro -Tachbrook -Tache -Tachevah -Tack -Tack Factory Pond -Tackbrooke -Tackett -Tacketts Mill -Tackroom -Tacks -Taco -Tacoma -Tacoma Narrows -Tacomic -Taconic -Tad -Tadcaster -Taddington Wood -Tadema -Tadin -Tadman -Tadmor -Tadmore -Tadmuck -Tadorne -Tadpole -Tadstone -Tadworth -Taeping -Taff -Taffrail -Taffs -Taffy -Tafoya -Taft -Tafts -Tag -Tagart -Taggart -Taggarts -Taglio -Tahalla -Tahama -Tahan -Tahanto -Tahattawan -Tahiti -Tahja -Tahlee -Tahlulah -Tahoe -Tahoe Circle -Tahola -Tahona -Tahos -Tahualami -Tai Tung -Tail Feathers -Tailings -Tailor -Tailrace -Tailwind -Tain -Tainan -Tainter -Tainter Hill -Tainters -Taintor -Taipei -Taisley -Tait -Taiyul -Taj -Taji -Tajlea -Takeley -Takolusa -Takoma -Tal -Talacre -Talaga -Talahi -Talala -Talamore -Talandis -Talara -Talavera -Talbart -Talbert -Talbot -Talbot Farm -Talbots -Talbott -Talbragar -Talbryn -Talburn -Talc -Talcot -Talcott -Taleeban -Talent -Taleworth -Talford -Talfourd -Talgai -Talgarth -Talia -Taliaferro -Taliesin -Talinga -Talisa -Talisman -Talismon -Talkin -Talking Rock -Tall Cedars -Tall Forest -Tall Grass -Tall Oak -Tall Oaks -Tall Pine -Tall Pines -Tall River -Tall Shadows -Tall Ships -Tall Timber -Tall Timbers -Tall Tree -Tall Trees -Tall Tulip -Tallac -Tallack -Tallagandra -Tallahassee -Tallahatchey -Tallard -Tallawalla -Tallawanda -Tallawarra -Tallawong -Tallayast -Talle -Tallen -Tallent -Taller -Talley -Tallgrass -Tallgums -Tallies -Tallis -Tallmadge -Tallman -Tallon -Tallong -Tallow -Tallow Tree -Tallow Wood -Tallowood -Tallowwood -Tallwood -Tally -Tally Ho -Tallyho -Talma -Talmadge -Talman -Talmiro -Talmont -Taloma -Talon -Taloombu -Talulah -Talus -Talwarra -Talwin -Tam O Shanter -Tam Oshanter -Tamahawk -Tamal -Tamal Vista -Tamalpais -Tamalpais View -Tamani -Tamar -Tamara -Tamara Jean -Tamarac -Tamarack -Tamaralk -Tamarama -Tamarama Marine -Tamarind -Tamarindo -Tamarindo Bay -Tamarisk -Tamarix -Tamaro -Tamaron -Tamarou -Tamayo -Tamboer -Tamboon -Tamborine -Tamboura -Tambourine Bay -Tamboy -Tambu -Tambua -Tamburlaine -Tame -Tameling -Tamer -Tamera -Tamerton -Tami -Tami Lee -Tamiami -Tamie -Taminga -Tammanny -Tammer -Tammie -Tammie Hill -Tamms -Tammy -Tammys -Tamori -Tampa -Tampico -Tamplen -Tamplin -Tamworth -Tamworth Hill -Tamys -Tan Bark -Tan House -Tan Oak -Tan Vat -Tana -Tanadoona -Tanager -Tanagers -Tanaka -Tanbark -Tancin -Tancred -Tancreti -Tandang Sora -Tandara -Tandem -Tandera -Tanderagee -Tanderra -Tandle Hill -Tandom -Tandridge -Tandridge Hill -Tandy -Tanen -Taney -Tanfield -Tanforan -Tangarra -Tangeman -Tangen -Tanger -Tangerine -Tangier -Tangle -Tangle Wood -Tanglevale -Tanglewood -Tanglewood Hollow -Tanglewood Park -Tanglewood Trails -Tanglewylde -Tangley -Tangley Park -Tanglyn -Tangmere -Tango -Tangshutts -Tanhill -Tanhouse -Tanhurst -Tania -Tank -Tank Hill -Tank House -Tankerdale -Tankerton -Tankerville -Tankit -Tanklage -Tankridge -Tanland -Tanleaf -Tanley -Tannahill -Tannehill -Tanner -Tanner Heights -Tanners -Tanners End -Tanners Park -Tanners Pond -Tanners Wood -Tannery -Tannery Creek -Tannery Ridge -Tanney -Tannock -Tannsfeld -Tano -Tanoak -Tanridge -Tansey -Tansley -Tanswell -Tansy -Tant -Tantallon -Tantangara -Tantani -Tantolen -Tanton -Tanuda -Tanunda -Tanwood -Tanworth -Tanya -Tanyard -Tanyard Cove -Tanyard Hill -Tanyard Spring -Tanza -Tanzanite -Tanzio -Taormino -Taos -Tapadera -Taper -Tapered -Tapestry -Tapia -Tapio -Tapiola -Taplan -Tapley -Taplin -Taplins Farm -Taplow -Tapners -Tapok -Tapp -Tappan -Tappan Landing -Tappanwood -Tappen -Tappentown -Tapper -Tappesfield -Tapping -Tappingo -Tapscott -Tapsells -Tapster -Tapwood -Tar Cove -Tar Point -Tar Tank -Tara -Tara Ann -Tara Hill -Tara Hills -Tara Lin -Tara View -Tarabrook -Tarada -Taradale -Tarakan -Taralga -Tarantino -Taranto -Tarara -Taras -Taraval -Tarban -Tarbat -Tarbay -Tarbell -Tarbell Spring -Tarbell Springs -Tarbert -Tarbet -Tarboro -Tarbox -Tarca -Tardival -Tardy -Tarecroft Green -Taree -Tarence -Tareyton -Tarfside -Targee -Target -Target Rock -Target Service -Target Svc -Target on Whittier -Targo -Targowski -Tariff -Tarilli -Taringa -Tarjan -Tarkan -Tarkiln -Tarkin Hill -Tarkington -Tarklin -Tarklin Pond -Tarklyn -Tarks -Tarland -Tarleton -Tarleton Corner -Tarling -Tarlton -Tarman -Tarmigan -Tarn -Tarn Hill -Tarn View -Tarnapoll -Tarnside -Tarnworth -Taro -Taronga -Tarook -Taroona -Tarpan -Tarpey -Tarplee -Tarpley -Tarpon -Tarporley -Tarquin -Tarra -Tarrabundi -Tarragon -Tarragona -Tarragundi -Tarrant -Tarrants -Tarraville Creek -Tarring -Tarrington -Tarrogana -Tarrs -Tarry -Tarryhill -Tarrymore -Tarrytown -Tarshes -Tart Lake -Tartan -Tartan Hills -Tartan Lakes -Tartan Ridge -Tartan Trail -Tartan View -Tartan Vista -Tartans -Tartar -Tartarian -Tarton -Tarver -Tarvin -Tarwater -Tarwin -Taryn -Tascan -Tasha -Tashmoo -Tasker -Tasman -Tassajara -Tassajara Ranch -Tassasara -Tassi -Tassia -Tasso -Taswell -Tatani -Tatchbury -Tatchell -Tate -Tate Naylor -Tateley -Tatham -Tathra -Tatlers -Tatman -Tatmorehills -Tatnell -Tatra -Tatro -Tatsfield -Tattan Farm -Tattenham -Tattenham Corner -Tattersall -Tattersalls -Tattershall -Tatterson -Tattlebury -Tatton -Tatton Mere -Tatum -Taub -Tauber -Taubert -Taubman -Taunton -Taurasi -Taurus -Taussig -Taustin -Tauxemont -Tavan Estates -Tavenner -Tavern -Tavern Court -Taverners -Taverney -Tavernor -Tavernor Trail -Tavestock -Tavi -Tavisock -Tavistock -Taviton -Tawa -Tawney -Tawneys -Tawny -Tawny Port -Taworri -Tawton -Taxal Moor -Taxi -Taxiera -Taxter -Tay -Tay Creek -Tay River -Tayben -Taybridge -Tayfield -Tayla -Tayles Hill -Tayloe -Taylor -Taylor Acres -Taylor Glen -Taylor Hill -Taylor Manor -Taylor Park -Taylor Point -Taylor View -Taylors -Taylors End -Taylorsport -Taylorstown -Taylortown -Taylorville -Taylro Caldwell -Tayman -Tayman Farm -Taymil -Taynish -Taynton -Tayntor -Tayside -Taywood -Tchapitoulas -Tea -Tea Garden -Tea Gardens -Tea Rock -Tea Rose -Tea Table -Tea Tree -Teaberry -Teabury -Teaderman -Teagarden -Teague -Teak -Teakettle -Teakle -Teakwood -Teal -Teal Island -Tealby -Teale -Tealing -Tealwood -Teamster -Teaneck -Teapot -Teasdale -Teasel -Tebaco -Tebbs -Tebbutt -Tebroc -Tebworth -Tec -Tec Air -Tech -Tech Center -Techni -Technical Park -Technology -Technology Center -Technology Park -Techny -Teck -Teckla -Tecklenberg -Teckler -Tecoma -Tecumseh -Ted -Ted Bowling -Tedbury -Tedd -Tedder -Teddington -Teddington Elmfield -Teddington Gloucester -Teddo -Teddy -Tedesco -Tedford -Tedrich -Teds -Tedwin -Tee -Tee Time -Teebrook -Teed -Teehan -Teel -Teela -Teele -Teemer -Teepee -Teer -Tees -Teesdale -Teets -Teeup -Teevan -Teeway -Tefft -Tegan -Tegea -Tegel -Teggs -Tehama -Teibel -Teibrook -Teichert -Teigland -Teignmouth -Teiland -Teilh -Teilland -Teixeira -Tejas -Tejon -Tek -Tekels -Tekening -Tekman -Teldeschi -Tele -Telegram -Telegraph -Telegraph Corner -Telegraph Hill -Telemark -Telephone -Teleport -Telescope -Telese -Telfer -Telferscot -Telford -Telford Way Brunel -Tell -Teller -Tellers -Telles -Tellis -Tellson -Telluride -Telopea -Telsa -Telscombe -Telser -Telston -Telwong -Temaraire -Temblor -Tembrook -Temelec -Temeraire -Temescal -Temi -Temora -Temora Manor -Tempcopy -Tempe -Tempelhof -Temperance -Temperate -Temperley -Tempest -Templar -Templars -Temple -Temple Bar -Temple Creek -Temple Hall -Temple Hill -Temple Mills -Temple Newsam -Temple Park -Temple Sheen -Temple Shen -Temple View -Temple Wood -Templecombe -Templedene -Templegate -Templeman -Templenewsam -Templer -Templeton -Templewood -Tempo -Temporary -Tempsford -Temptin -Tempus -Ten Acre -Ten Acres -Ten Eyck -Ten Gate -Ten Hills -Ten Mills -Ten Oaks -Ten Penny -Tenafly -Tenakill -Tenax -Tenaya -Tenbrink -Tenbroeck -Tenbrook -Tenbury -Tenby -Tench -Tenda -Tender -Tenderfoot -Tendring -Tenean -Tenella -Teneriffe -Tenety -Teneyck -Tenham -Tenilba -Tenley -Tennalinde -Tennant -Tennaqua -Tennement -Tennent -Tennessee -Tennessee Valley -Tenney -Tennis -Tennis Club -Tennis Court -Tennis Plaza -Tennison -Tenniswood -Tennnyson -Tennyson -Tenor -Tensing -Tenson -Tent -Tent Peg -Tentelow -Tenterden -Tenterfield -Tenterhill -Tenth -Tenzing -Teonia Woods -Tepee -Tepper -Teppers -Tequesta -Teracina -Teragram -Teralba -Terama -Terance Butler -Tercentennial -Teredo -Terence -Terence Webster -Teresa -Teresa Rose -Teresi -Teresita -Terfidia -Terhune -Teri -Teri Lynn -Teria -Terilyn -Terkuile -Terl -Terman -Termeil -Terminal -Termine -Terminous -Terminus -Tern -Ternay -Terne -Terners -Terneuzen -Terney -Terni -Ternwing -Terra -Terra Alta -Terra Bella -Terra California -Terra Cotta -Terra Firma -Terra Granada -Terra Grande -Terra Holland -Terra Linda -Terra Loma -Terra Mar -Terra Nova -Terra Park -Terra Ridge -Terra Rossa -Terra Valley -Terra Verde -Terra Villa -Terra Vista -Terra Vita -Terra Woods -Terrace -Terrace Beach -Terrace Grove -Terrace Hall -Terrace Lake -Terrace View -Terraceview -Terracewood -Terracina -Terraco -Terradillo -Terraine -Terramere -Terramore -Terrance -Terrance Ferry -Terrane -Terranova -Terrapin -Terrapin Hills -Terrazzo -Terrebonne -Terrehans -Terrel -Terrell -Terrence -Terrene -Terreno -Terreno de Flores -Terrett -Terrey Pine -Terri -Terrianne -Terrick -Terrie -Terrier -Terrigal -Terrill -Terrimay -Territorial -Terront -Terry -Terry Francois -Terrybrook -Terryellen -Terryfield -Terryll -Tersha -Terwick -Tesco Access -Tesco Entry -Tesimond -Tesla -Tesoro -Tess -Tessa -Tessier -Tessman -Tessman Farm -Tessmer -Testa -Testard -Tester -Teston -Testway -Testwood -Tetbury -Tetcott -Tether -Tethys -Tetley -Tetley Bye -Tetlow -Teton -Teton Meadow -Tetreault -Tetterton -Teversham -Teverton -Teviot -Tevis -Tevlin -Tewberry -Tewin -Tewinga -Tewkes -Tewkesbury -Tewksbury -Tewlawne -Tewson -Texa Tonka -Texas -Textile -Textilose -Tey -Teynham -Thacher -Thackara -Thacker -Thackeray -Thackery -Thackhams -Thaddeus -Thaddeus Mason -Thaden -Thadford -Thais -Thalia -Thame -Thame Park -Thames -Thames Haven -Thames River -Thames Valley Park -Thameshill -Thamesmead Bentham -Thamesmeade -Thamesmere -Thane -Thanet -Thankerton -Thanksgiving -Thanlet -Tharp -Thatch -Thatch Barn -Thatch Leach -Thatcher -Thatchers -Thatford -Thave -Thaxmead -Thaxted -Thaxter -Thaxton -Thayer -Thayer Heights -Thayer Memorial -Thayers Farm -The -The American -The Ark -The Carriage -The Center -The Charter -The Coach -The Comenarra -The Crescent -The Dalles -The Fairway Hall -The Gallery in Cork -The Gate Brickfield -The Glade Keston -The Glen -The Globe in Morning -The Grange -The Great -The Green Courtwood -The Green Elm -The Green Money -The Green Hunsworth -The Green Man Marsh -The Green Town -The Grove Broadhurst -The Grove Danson -The Hall on Virginia -The High -The Highway Court -The Holme -The Horsley -The Kings -The Kraal -The Ladder -The Lakes -The Lammas -The Lawns -The Ledges -The Lido Green Man -The Limes -The Long -The Luton -The Manor -The Mansion On O -The Mansion on O -The Market on the -The Martins -The Masters -The Meads -The Mount -The Mount Grove -The Mount Whitehorn -The Mountain -The Nook -The Northern -The Old -The Old Coach -The Old Northern -The Old Oaks -The Old School -The Outlook -The Pastures Service -The Pines -The Plain -The Plains -The Plaza -The Plough Kenton -The Point -The Ponds -The Queens -The River -The Rocks -The Service -The Siger -The Silk -The Sraight -The Sunny -The Tideway Maidstone -The Tower -The Trees -The Valley -The Village -The Villages -The Villages Fairway -The Warren -The Water -The White Hart High -The Whitethorn -The Woodman Joel -The Woods -Thea -Theaker -Theale -Theall -Theater -Theatre -Thebes -Theda -Theed -Theilen -Theim -Theis -Theisan -Thele -Thelma -Thelton -Thelwall -Thelwall New -Themes -Themews -Thenius -Theo -Theo Wirth -Theobald -Theobalds -Theobalds Park -Theobold -Theodor -Theodora -Theodore -Theodore Conrad -Theodore Fremd -Theodore Green -Theodore Parker -Theodore Roosevelt -Therapia -Theresa -Theresa Anne -Therese -Therfield -Thermal -Therriault -Therry -Thersea -Thesda -Thesen -Thesigar -Thessaly -Thestland -Theta -Thetford -Theydon -Theydon Park -Thibeault -Thibet -Thicket -Thicketford -Thickthorne -Thiel -Thiele -Thielen -Thier -Thieriot -Thierry -Thiers -Thiery -Thieves -Thilow -Thimble -Thimbleberry -Thimblehall -Thimsen -Thin Edge -Thingvalla -Third -Third Cross -Thirleby -Thirlemere -Thirlmere -Thirlmont -Thirlstone -Thirlwater -Thirsfield -Thirsk -Thirslet -Thirteenth -Thirtyninth -Thirtysecond -Thirza -Thissell -Thisselt -Thistle -Thistle Glen -Thistle Hill -Thistlebridge -Thistlecroft -Thistledale -Thistledene -Thistledown -Thistlethorn -Thistlewaite -Thistlewood -Thistley -Thistly -Thixton -Thoby -Thoits -Tholen -Thollen -Tholverton -Thom -Thoma -Thomas -Thomas Atkinson -Thomas Baines -Thomas Bata -Thomas Baxter -Thomas Bell -Thomas Branch -Thomas Brigade -Thomas Center -Thomas Clapp -Thomas Clarke -Thomas Clewes -Thomas Ctr -Thomas Dehaven -Thomas Dinwiddy -Thomas Doyle -Thomas Edison -Thomas Farm -Thomas Gangemi -Thomas Gantt -Thomas Grant -Thomas Hickey -Thomas Hill -Thomas Holt -Thomas J Thorsen -Thomas Jefferson -Thomas Lake -Thomas Lake Harris -Thomas Lake Pointe -Thomas Leighton -Thomas McGovern -Thomas Mitchell -Thomas Moore -Thomas More -Thomas Nevitt -Thomas Newton -Thomas Paine -Thomas Park -Thomas Patton -Thomas Point -Thomas Powell -Thomas Prospect -Thomas Rice -Thomas Rose -Thomas S. Boyland -Thomas View -Thomas Wlkinson -Thomas Young -Thomasin -Thomasina -Thomasson -Thomasson Crossing -Thomasville -Thomes -Thomlar -Thomond -Thompkins -Thompson -Thompson Access -Thompson Hill -Thompson Springs -Thompsons -Thoms -Thomsen -Thomson -Thone -Thong -Thong Pan -Thonrdyke -Thonus -Thopkins -Thor -Thora -Thorburn -Thorby -Thoreau -Thorens -Thores -Thoresby -Thoresway -Thoria -Thorington -Thorkhill -Thorley -Thorley Park -Thorman -Thorn -Thorn Apple -Thorn Bush -Thorn Creek -Thorn Hill -Thorn Royd -Thorn Tree -Thorn View -Thornage -Thornal -Thornall -Thornally -Thornapple -Thornapple Tree -Thornash -Thornaway -Thornbank -Thornbark -Thornbeck -Thornbera -Thornberry -Thornborough -Thornbriar -Thornbridge -Thornbrook -Thornburg -Thornburgh -Thornbury -Thornbush -Thornby -Thorncliff -Thorncliffe -Thorncombe -Thorncrest -Thorncroft -Thorndale -Thornden -Thorndene -Thorndike -Thorndon -Thorndon Park -Thorndon Ridge -Thorndown -Thorndyke -Thorne -Thorne Grove -Thornedike -Thornell -Thorner -Thornet Wood -Thornewood -Thorney -Thorney Bay -Thorney Hedge -Thorney Mill -Thorneycroft -Thornfield -Thornflat -Thorngate -Thorngrove -Thornham -Thornham Old -Thornhaugh -Thornhill -Thornhill Farm -Thornholme -Thornhurst -Thorning -Thornknoll -Thornlaw -Thornlea -Thornleigh -Thornley -Thornly -Thornmeadow -Thorns -Thornsbeach -Thornsberry -Thornsett -Thornsgreen -Thornton -Thornton Beach -Thornton Blue Island -Thorntons Farm -Thorntree -Thornvalley -Thornville -Thornwall -Thornwood -Thorny Lea -Thornycroft -Thornydyke -Thornyhurst -Thorobred -Thorold -Thoroughbred -Thoroughgood -Thorp -Thorparch -Thorpe -Thorpe Hall -Thorpe Hill -Thorpe Lea -Thorpebank -Thorpebrook -Thorpedale -Thorpedene -Thorpewood -Thorpland -Thors Bay -Thorsby -Thorsen -Thorton -Thorup -Thorverton -Thotland -Thousand Oaks -Thowler -Thoydon -Thrales End -Thrasher -Thrave -Thread Needle -Threadmill -Threadneadle -Threadneedle -Threaphurst -Thredbo -Three Acres -Three Bridges -Three Cherry Trees -Three Colt -Three Colts -Three Counties -Three Countries -Three Crowns -Three Doctors -Three Elm -Three Elms -Three Farms -Three Forks -Three Gables -Three Gates -Three Horse Shoes -Three Horseshoes -Three Houses -Three Hurdles -Three Kings -Three Lake Bellevue -Three Lakes -Three Mill -Three Oak -Three Oaks -Three Pears -Three Penny -Three Point -Three Points -Three Ponds -Three Ring -Three Rivers -Three Sisters -Three Springs -Threepence -Threestile -Threlfall -Threlkeld -Thremhall -Thresa -Thresher -Threshers -Threshfield -Thrift -Thrift Farm -Thrigby -Thrimley -Throcking -Throckmorten -Throckmorton -Throgmorton -Throgs Neck -Throne -Thronhill -Throop -Throsby -Throstle -Throstle Bank -Throughbred -Throwley -Thrumont -Thrun -Thrupp -Thrupps -Thrush -Thrush Ridge -Thrushwing -Thrushwood -Thuddungra -Thuman -Thunder -Thunder Bay -Thunder Chase -Thunder Hill -Thunder Mountain -Thunderbird -Thunderbolt -Thunderer -Thunderhead -Thundersley Church -Thundersley Park -Thune -Thurbans -Thurbarn -Thurber -Thurbon -Thurby -Thurcaston -Thurgood -Thurland -Thurlby -Thurleigh -Thurleston -Thurlestone -Thurlgona -Thurloe -Thurlow -Thurlow Park -Thurlston -Thurlstone -Thurlton -Thurlwood -Thurm -Thurman -Thurmont -Thurnau -Thurnby -Thurneyholme -Thurnham -Thurns -Thursby -Thursfield -Thursland -Thursley -Thurso -Thurstable -Thurstan -Thurstane -Thurston -Thurston Clough -Thurtle -Thurwachter -Thurwood -Thwaite -Thwing -Thyme -Thynne -Thyra -Thyssel -Tiada -Tiana -Tianderah -Tiara -Tiarri -Tib -Tibatts -Tibbett -Tibbetts -Tibbits -Tibbitt -Tibbs Hill -Tibbys -Tiber -Tiber River -Tiberias -Tiberius -Tiberon -Tibooburra -Tibouchina -Tiburon -Tice -Tice Creek -Tice Valley -Ticehurst -Tices -Ticetown -Tichborne -Tichenor -Tichenors -Ticino -Tick Neck -Tick Tock -Tickenhall -Tickenor -Ticker -Tickham -Tickner -Tickners -Ticknor -Tickseed -Tico -Ticonderoga -Tidal Basin -Tidd -Tiddymotts -Tide -Tides -Tideswell -Tidewater -Tideway -Tidewind -Tidey -Tidford -Tidmarch -Tidmarsh -Tidmore -Tidswell -Tidworth -Tidys -Tie Gulch -Tiebout -Tiedeman -Tiedemann -Tieman -Tiemann -Tienda -Tienne -Tiensch -Tiepigs -Tier -Tieri -Tiernan -Tiernans -Tierney -Tierneys Woods -Tierra -Tierra Alta -Tierra Buena -Tierra Creek -Tierra Gardens -Tierra Lago -Tierra Oaks -Tierra de Dios -Tierras -Tietjen -Tiffaney -Tiffany -Tiffen -Tiffin -Tiffin School London -Tiffiny -Tifft -Tiflis -Tifters -Tifton -Tig Fold -Tiger -Tiger Lily -Tigerwoods -Tigris -Tigua -Tihonet -Tiki -Tilba -Tilberg -Tilbrook -Tilburg -Tilburstow Hill -Tilbury -Tilche -Tildean -Tilden -Tilden Gill -Tilden Park -Tildenwood -Tildsley -Tile -Tile Farm -Tile House -Tile Kiln -Tile Line -Tile Lodge -Tilebarn -Tilehouse -Tilehurst -Tilesboro -Tileston -Tiley -Tileyard -Tilford -Tilghams -Tilghman -Tilia -Tilipi -Tilkey -Till -Till Rock -Tillamook -Tillard -Tillary -Tiller -Tillery -Tillets -Tilley -Tillgate -Tillhey -Tillie -Tillie Lewis -Tillingbourne -Tillingdown -Tillingham -Tillinghast -Tillman -Tilloch -Tillock -Tillotson -Tillou -Tillson -Tilman -Tilmore -Tilney -Tilrose -Tilsden -Tilsen -Tilsmore -Tilson -Tilston -Tilstone -Tilsworth -Tilt -Tilthams Corner -Tilting Rock -Tilton -Tilton Valley -Tiltwood -Timahoe -Timarand -Timari -Timarron Cove -Timaru -Timbalier -Timbarra -Timber -Timber Acres -Timber Branch -Timber Brook -Timber Cove -Timber Creek -Timber Crest -Timber Edge -Timber Forest -Timber Glen -Timber Hill -Timber Hollow -Timber Lake -Timber Ledge -Timber Line -Timber Lodge -Timber Loop -Timber Mill -Timber Oak -Timber Oaks -Timber Point -Timber Pond -Timber Ridge -Timber Rock -Timber Springs -Timber Trail -Timber Trails -Timber Trl -Timber View -Timber Woods -Timberbrook -Timbercove -Timbercreek -Timbercrest -Timbercrest Farm -Timbercroft -Timberdale -Timberdene -Timberedge -Timbergate -Timberglade -Timberhead -Timberhill -Timberidge -Timberlake -Timberlake Farm -Timberland -Timberlane -Timberlea -Timberlee -Timberline -Timberline Ridge -Timberlog -Timberly -Timberneck -Timberock -Timberpine -Timbers Edge -Timbers Pointe -Timbershore -Timberslip -Timbertop -Timbertrails -Timberview -Timberwharf -Timberwood -Timble -Timbrell -Timbrol -Time -Timeless Trail -Timer -Times -Timesweep -Timi -Timke -Timko -Timlott -Timm -Timmies -Timmons -Timms -Timmus -Timmy -Timon -Timor -Timoteo -Timothy -Timothy Branch -Timothy Field -Timperley -Timpson -Timrick -Timrod -Timson -Timsons -Tin Barn -Tin Barn Farm -Tin Can Ranch -Tin Mill -Tina -Tina Lake -Tinakill -Tinana -Tincombe -Tindal -Tindal Spring -Tindal Springs -Tindale -Tindall -Tindall Mews -Tindall Ranch -Tinder -Tindlay -Tindon End -Tine -Tinern -Tingara -Tingdale -Tingha -Tingley -Tingrith -Tingue -Tinker -Tinker Pot -Tinkers -Tinkers Branch -Tinkers Creek -Tinkers Wood -Tinkham -Tinley -Tinley Park -Tinner Hill -Tinnerella -Tinners Hill -Tinnocks -Tinshill -Tinshill Silk Mill -Tinsley -Tinsmith -Tinson -Tinta -Tintagel -Tintagle -Tintells -Tintern -Tintle -Tinto -Tinton -Tinworth -Tiny -Tioga -Tiogawoods -Tiona -Tionesta -Tiot -Tip Pond -Tip Top -Tipi -Tippecanoe -Tippendel -Tippendell -Tipper -Tipperary -Tippesasy -Tippett -Tippin -Tippings -Tipple Hill -Tippling Rock -Tipps Cross -Tippy Cart -Tiptoe -Tipton -Tiptop -Tiptree -Tiptree Hall -Tiptrees -Tire Swing -Tiree -Tiros -Tirrell -Tirso -Tirza -Tisane -Tisbury -Tischer -Tisdale -Tisserand -Titan -Titania -Titchfield -Titchwell -Tite -Tithe -Tithe Barn -Tithe Farm -Tithebarn -Tithebarns -Tithelands -Tithepit Shaw -Titian -Titmus -Titmuss -Titonka -Titsey -Titterington -Titus -Tived -Tiverton -Tivoli -Tiziano -To Upper Park -Toad -Toad Island -Toastmaster -Toat -Tobacco -Tobacco Leaf -Tobacco Ridge -Tobacco Trail -Tobago -Tobermory -Tobey -Tobey Garden -Tobi -Tobiano -Tobias -Tobie -Tobin -Tobin Clark -Tobruck -Tobruk -Toby -Tobys -Tobytown -Tocca -Tocci -Tochini -Tocia -Tockholes -Tocoloma -Tod -Tod William -Todd -Todd Farm -Todd Point -Todd Pond -Toddington -Toddsbury -Toddy -Todman -Todt Hill -Tofflemire -Toft -Tofte -Tofts -Toftshaw -Toftshaw New -Tog -Toggenburg -Togil -Togninali -Togo -Toils End -Toilsome Brook -Toiyabe -Tojon -Tokara -Tokay -Token Forest -Token Valley -Tokeneke -Tokeneke Beach -Tokeneke Ridge -Tokers Green -Tokola -Tokyngton -Tola Ranch -Tolak -Tolamac -Toland -Tolar -Tolas -Tolbert -Tolblin Hill -Tolcarne -Toldi -Toldish Hall -Toledo -Tolenas -Toler -Toley -Tolgate -Tolhurst -Tolkien -Tolkigate -Toll -Toll Bar -Toll Gate -Toll House -Toll House Gulch -Tolland -Tollcross -Tollemache -Toller -Tollers -Tollesbury -Tolleshunt Darcy -Tollet -Tollgate -Tollington -Tollison -Tolliver -Tollund -Tollview -Tollwood -Tolman -Tolmer -Tolmers -Tolpits -Tolpuddle -Tolsford -Tolson -Tolstoy -Tolt -Tolt Hill -Tolteca -Toluca -Tolverne -Tolworth -Tolworth Park -Tom -Tom Davis -Tom Day -Tom Fowler -Tom Fox -Tom Hunter -Tom Jenkinson -Tom Lee -Tom Paine -Tom Point Apts -Tom Shepley -Tom Thumb -Tom Tit -Tom Tits -Toma -Tomac -Tomah -Tomahawk -Tomales -Tomales Petaluma -Tomalyn Hill -Tomaselli -Tomasetti -Tomasezwski -Tomasini Canyon -Tomaso -Tomato Patch -Tomawadee -Tomblin Hill -Tomcat -Tomcroft -Tomes -Tomi Lea -Tomislav -Tomki -Tomkins -Tomkyns -Tomlee -Tomlin -Tomlins -Tomlinson -Tomlyn -Tommar -Tommaso -Tommuck -Tommy -Tommy Middleton -Tommydon -Tommye -Tomney -Tompion -Tompkins -Tompkins Point -Tompson -Tomrick -Toms -Toms Hill -Toms Lake -Toms Point -Toms Trail -Tomswood -Ton -Tonacliff -Tonalea -Tonawanda -Tonbridge -Tondan -Tone -Tonelee -Tonella -Toner -Toney -Tong -Tong Head -Tonga -Tonge -Tonge Fold -Tonge Moor -Tonge Old -Tonge Park -Tongham -Tongres -Tongswood -Tongue -Toni -Toni Marie -Tonia -Tonica -Tonino -Tonitto -Tonka -Tonka Bay -Tonka Downs -Tonka View -Tonkaha -Tonkawa -Tonkaway -Tonkawood -Tonkin -Tonking -Tonman -Tonme -Tonne -Tonnelle -Tono -Tonopah -Tonquil -Tonquin -Tonset -Tonsley -Tonsor -Tonstall -Tontaquon -Tonti -Tontine -Tontoquon -Tonwell Bypass -Tony -Tonya -Toocooya -Toohey -Took -Tooker -Toolan -Toolang -Toole -Tooley -Toomes -Toomevara -Toomey -Toongabbie -Toongarah -Toorack -Toorah -Toorak -Tooronga -Toot Hill -Tootal -Tooth -Toothill -Tooting Bec -Tooting High -Top -Top Dartford -Top Gallant -Top Hill -Top O Hill -Top O the Ridge -Top Ridge -Top Sergeant -Top of the Hill -Topaint -Topalian -Topanga -Topar -Topawa -Topaz -Topbranch -Topcastle -Topcliffe -Topeg -Topeka -Topfield -Topham -Tophet -Topic -Topinera -Topland -Toplands -Topley -Topliff -Toplocks Glade -Topnot -Topor -Topp -Toppan -Topper -Toppesfield -Topping -Topping Fold -Topping Hill -Toppy -Topsail -Topsfield -Topsham -Topton -Topview -Tor -Tor Bryan -Torac -Torah -Torbay -Torberry -Torbert -Torbush -Torch -Torchlight -Torchwood -Torcross -Toreador -Torello -Tori -Tories -Torington -Torino -Torkington -Torlai -Torland -Tormead -Tormey -Tormount -Tornaros -Torne Mountain -Tornell -Torney -Tornillo -Toro -Torokina -Toronita -Toronto -Torpie -Torquay -Torque -Torquil -Torr -Torr Top -Torrance -Torrano -Torre -Torre Ramel -Torrence -Torrens -Torrent -Torrenzia -Torreon -Torres -Torrey -Torrey Pine -Torrey Pines -Torrey Side -Torreya -Torreys -Torri -Torriano -Torrice -Torrid -Torridon -Torrington -Torro -Torrs -Torrvale -Torry -Torry Hill -Tortoise -Tortola -Tortorice -Tortuga -Torumba -Torver -Torwood -Torworth -Tory -Tory Fort -Tory Hill -Tory Hole -Tory Treasure -Tosca -Toscano -Tosch -Toste -Tot -Tot Hill -Totem -Totem Pole -Totford -Totfs -Tothill -Totman -Totnes -Totowa -Totten -Totten Pond -Tottenham -Tottenham Court -Totterdell -Totterdown -Totteridge -Totters -Tottington -Totton -Totts -Touch -Touchard -Touhy -Touissant -Toulay Creek -Toulmin -Toulon -Toulone -Toulouse -Toulson -Toupi -Touquet -Touraine -Touraine Parc -Touriga -Tourmaline -Tournament -Tournay -Tourne -Tourney -Touro -Tourraine -Tours -Toussie -Toussin -Toutley -Tovah -Tovar -Tove -Tovey -Tovil -Tovil Green -Tovito -Tow Path -Towanda -Towaway -Towcester -Towceter -Tower -Tower Bank -Tower Bridge -Tower Brook -Tower Center -Tower Court -Tower Farm -Tower Gardens -Tower Hamlets -Tower Heights -Tower Hill -Tower Manor -Tower Mill -Tower Oak -Tower Oaks -Tower Park -Tower Point -Tower Pond -Tower View -Tower Woods -Towerbridge -Towerfield -Towerhill -Toweridge -Towerridge -Towers -Towers Crescent -Towersey -Towerview -Towfield -Towhee -Towl Gate -Towle -Towler -Towlerton -Towlston -Town -Town Acres -Town Barn -Town Center -Town Centre -Town Club -Town Cocks -Town Crest -Town Dock -Town Dump -Town End -Town Farm -Town Field -Town Forest -Town Gate -Town Gate Church -Town Green -Town Hall -Town Hall Approach -Town Hill -Town House -Town Lake -Town Line -Town Littleworth -Town Lyne -Town Mead -Town Meeting -Town Neck -Town Path -Town Pier -Town Point -Town Square -Town Tree -Town Wells -Towncenter -Towncourt -Towncroft -Towndale -Towne -Towne Centre -Towne Commons -Towne Crest -Towne Fire -Townehome -Towner -Townes -Townfield -Towngate Chapel -Towngate Woodhall -Townhall -Townhouse -Townley -Townline -Townly -Townmead -Towns -Towns Edge -Townscliffe -Townsend -Townsend Farm -Townsend Harbor -Townsend Hill -Townsfield -Townshend -Township -Townside -Townsley -Townson -Townsquare -Townsvalley -Townsville -Townview -Townwood -Towpath -Towradgi -Towse -Towsen -Towsend -Towton -Towyn -Toxteth -Toy -Toyama -Toye -Toyer -Toynbee -Toyon -Toyon Fire -Toyonita -Toysome -Tozer -Tozier -Trabing -Trabjo -Trace -Tracel -Tracer -Tracey -Tracey Jean -Traceys Landing -Traci -Tracie -Track -Traction -Tracton -Tractor -Tracy -Tracy Ann -Tracy Lyn -Tracy Schar -Tracy Wood -Tracywood -Tradan -Trade -Trade Center -Trade West -Trade Wind -Trade Zone -Trader -Traders -Tradescant -Tradewind -Tradewinds -Trading -Trading Post -Tradition -Traditions -Traeger -Trafalgar -Trafalger -Traffic -Trafford -Trafford Bank -Trafford Park -Trafford Wharf -Traford -Trafton -Tragan -Trager -Tragia -Trahan -Trahern -Trahlee -Trail -Trail Edge -Trail Haven -Trail Ride -Trail Ridge -Trail Run -Trail View -Trail West -Trailing Ivy -Trailing Ridge -Traill -Trailridge -Trails -Trails Edge -Trails End -Trailsend -Trailside -Trailway -Trailwood -Train -Traina -Trainer -Training Field -Trainor -Trajan -Trajanowski -Tralee -Tralfalgar -Tram -Tramanto -Trammel -Trammell -Tramore -Tramway -Trancas -Tranfaglia -Tranford -Tranmere -Tranquil -Tranquility -Trans Am Plaza -Trans Old Bridge -Trans World -Transept -Transfesa -Transhire -Transit -Transmere -Transmitter Access -Transom -Transport -Transporter -Transue -Transvaal -Transverse -Transway -Transworld -Tranter -Tranton -Trap -Trapelo -Trapet -Trapfield -Traphagen -Trapham -Trapp -Trapper -Trappers -Trappers Fire -Trapps -Traprock -Traps -Trapstyle -Trask -Tratman -Traube -Traud -Traughber -Travao -Travelaire -Traveler -Travelers Run -Traveller -Travellers -Travelo -Travers -Traverse -Traverso -Travertine -Travic -Travilah -Travis -Travois -Trawalla -Trawden -Trawl -Trawler -Traxler -Trayer -Trayes -Traymore -Traynor -Treacle -Treacy -Treadaway -Treadcroft -Treadgold -Treadway -Treadwell -Treanor -Treasure -Treasure Island -Treat -Treatment Plant -Treatro -Treatt -Treatts -Treaty -Treaty Elm -Trebartha -Trebble -Trebeck -Trebellan -Trebing -Treble Cove -Trebleclef -Treblers -Trebol -Trebor -Trebovir -Treby -Treck -Tredcroft -Tredegar -Trederwen -Tredgold -Tredown -Tredway -Tredwell -Tree -Tree Estate Mead -Tree Farm -Tree Frog -Tree Hollow -Tree House -Tree Land -Tree Lawn -Tree Line -Tree Side -Tree Top -Tree Tops -Tree View -Treebark -Treebine -Treebrooke -Treebys -Treecot -Treecrest -Treedale -Treedust -Treeflower -Treehaven -Treehouse -Treelands -Treemans -Treen -Trees -Treeside -Treesmill -Treetop -Treetop Hill -Treetops -Treeview -Treewood -Trefgarne -Trefoil -Trefrey -Trefry -Trefton -Treg -Tregaron -Tregarvon -Tregaskis -Tregelles -Tregenna -Trego -Tregony -Tregothnan -Tregunter -Trehearn -Trehern -Trehurst -Treichel -Trelany -Trelawn -Trelawney -Trelawny -Trelleck -Trellis -Treloar -Tremain -Tremaine -Tremari -Tremayne -Trembath -Tremblay -Trembley -Trembling -Tremere -Tremezzo -Tremlett -Tremley Point -Tremont -Tremwood -Trenant -Trench -Trenchard -Trenches -Trenchold -Trend -Trenders -Trenery -Trenham -Trenholm -Trenholme -Trenic -Treno -Trenor -Trenouth -Trensch -Trent -Trentbridge -Trentdale -Trentham -Trentino -Trento -Trenton -Trentt -Treport -Treptow -Trequassin -Tres Palmas -Tres Pinos -Tres Ranchos -Tresalam -Tresch -Tresco -Trescoe -Trescony -Trescott -Tresham -Treshfield -Tresilian -Tresler -Treslow Glen -Tress -Tressel Pass -Tresser -Tressider -Trestle -Trestle Glen -Treswell -Tretbaugh -Trethaway -Treton Woods -Trettle -Trevale -Trevalley -Trevanion -Trevanna -Treve -Trevellyan -Trevelyan -Trevena -Trevenar -Treveris -Trevethan -Trevett -Trevigne -Treviit -Treville -Trevilyan -Trevino -Treviso -Trevithick -Trevone -Trevor -Trevor House -Trevor Toms -Trevore -Trevorton -Trevose -Trewarden -Trewenna -Trewilga -Trewint -Treworthy -Trewsbury -Trewyn -Trexler -Trey -Treyburn -Treywood -Tri -Triabunna -Triad -Triadelphia -Triadelphia Lake -Triadelphia Mill -Triangle -Triathlon -Tribonian -Triborough -Tribou -Tribunal -Tribune -Tributary -Tributary Point -Tribute -Tricia -Trickett -Tricorne -Tricross -Trident -Trieste -Trifiro -Trifone -Trig -Trigder -Trigg -Trigger -Triggs -Triglone -Trigon -Triland -Trilane -Trilby -Triller -Trilliam Run -Trillium -Trillium House -Trilliun -Trillo -Trillum -Trim -Trimble -Trimbleford -Trimfield -Trimingham -Trimley -Trimngham -Trimount -Trimountain -Trin -Trina -Trinculo -Trinder -Trindles -Tring -Trinidad -Trinity -Trinity Church -Trinity Gate -Trinity Hills -Trinity Park -Trinity River -Trinity University -Trinkling Creek -Trio -Triolo -Trip -Triphammer -Triple C Ranch -Triple Crown -Triple Feather -Triple Oak -Triple Oaks Farm -Triple Ridge -Tripleseven -Triplett -Tripod -Tripoli -Tripp -Trippier -Tripplet -Tripton -Trish -Trista -Tristan -Tristania -Tristian -Tristram -Triten -Triton -Triton Beach -Tritton -Triumph -Triumvera -Trivet -Trivetts -Trixie -Troast -Trocha -Trodds -Trofin -Troilus -Trojack -Trojan -Troll -Trolley Line -Trombas -Trombetta -Trombley -Trommel -Tromp -Troon -Troopers -Troost -Tropaz -Trophy -Tropical -Troscher -Troseth -Trosley -Trossach -Trossack -Trost -Trothy -Trotsworth -Trott -Trotta -Trotter -Trotter Farm N -Trotters -Trotters Glen -Trotters Ridge -Trottier -Trotting -Trotting Course -Trotting Horse -Trotting Park -Trotton -Trotts -Troubador -Trouble -Troudy -Troughback -Troughton -Troughwell -Troupe -Trousdale -Trout -Trout Brook -Trout Farm -Trout Gulch -Trout Park -Trout Pond -Trout Valley -Trout Wine -Troutbeck -Trouthall -Troutlilly -Troutman -Trouton -Troutville -Trouve -Trouville -Trovillion -Trowbridge -Trowes -Trowley Hill -Trowlock -Trowridge -Trowtree -Trowville -Troxel -Troy -Troy Creek -Troy Glen -Troy Hill -Troy Hills -Troy Marquette -Troy Meadow -Troydale -Troyer -Trubador -Trubody -Trubridge -Truchan -Truck -Truck House -Truckee -Truckee River -Trucklemans -Trude -Trudeau -Trudel -Trudy -True -Trueloves -Truelson -Trueman -Trueman Point -Truemans -Trues -Truesdale -Truett -Truffle -Truitt -Truitt Farm -Trull -Trull Brook -Trulock -Truman -Truman Manor -Trumble -Trumbull -Trumfield -Trump -Trumper -Trumpet -Trumpeter -Trumpeter Swan -Trumpets Hill -Trumpington -Trumps Green -Trumps Hill -Trumps Mill -Trundle -Trundleys -Trunfio -Trunk -Trunley Heath -Trunnel -Truro -Truro Parish -Truscott -Truslove -Truss Hill -Trusses -Trussley -Trust -Truxel -Truxton -Truxton Park -Truxtun -Tryall -Trycewell -Trym -Tryna -Tryner -Tryon -Trysting -Tschiffely Mill -Tschiffely Sq -Tschiffely Square -Tsirelas -Tsushima -Tuabilli -Tualco -Tualco Loop -Tuam -Tuart Park -Tubac -Tubbenden -Tubbs -Tubby -Tubeway -Tubwell -Tubwreck -Tucabia -Tucana -Tuck -Tuckahoe -Tuckaway -Tucker -Tucker Farm -Tuckerman -Tuckerman Heights -Tuckerman Hill -Tuckerton -Tucks -Tucks Point -Tuckwell -Tucson -Tudar -Tuddington -Tudeley -Tudor -Tudor Hall -Tudway -Tudwick -Tuella -Tuemmler -Tuenge -Tuer -Tuers -Tuesley -Tuey -Tuffley -Tuffy -Tufnail -Tuft -Tufter -Tufton -Tufts -Tugboat -Tugela -Tuggerah -Tuggies -Tuggle -Tuggles -Tugwell -Tukara -Tukwila -Tukwila International -Tula -Tulagi -Tulane -Tularcitos -Tulare -Tulare Hill -Tule -Tule Goose -Tule Lake -Tule Tree -Tulich -Tulip -Tulip Grove -Tulip Poplar -Tulip Tree -Tulip West -Tulipan -Tuliptree -Tulipwood -Tull -Tullamore -Tullamore Estates -Tullaroan -Tuller -Tullet -Tullett -Tulley -Tullibee -Tullimbar -Tulloch -Tulloh -Tulloona -Tulls -Tully -Tullymore -Tulocay -Tulong -Tulsa -Tulsemere -Tulworth -Tuma -Tumber -Tumble Weed -Tumblefield -Tumbler -Tumblers -Tumbleweed -Tumblewood -Tumbling Brook -Tumburra -Tumelty -Tumut -Tumwater -Tunbridge -Tunbridge Wells -Tunbury -Tuncoee -Tuncombe -Tuncurry -Tunfield -Tungarra -Tungston -Tunic -Tunis -Tunisia -Tunison -Tunitas -Tunitas Creek -Tunitas Ranch -Tunks -Tunlaw -Tunley -Tunmarsh -Tunnel -Tunnel Entrance -Tunnel Exit -Tunnell -Tunner -Tunnicliffe -Tuns -Tunshill -Tunstall -Tunstead -Tunworth -Tunzi -Tuohy -Tuolumne -Tupa -Tupelo -Tupia -Tupolo -Tupper -Tupperware -Tuppy -Tupwood -Turban -Turbary -Turberville -Turbine -Turbo -Turbott -Turbridge -Turell -Turella -Tures -Turf -Turf Hill -Turf Lea -Turf Park -Turf Pit -Turf Valley -Turfhill -Turfhouse -Turfland -Turfmeadow -Turfton -Turfway -Turgis -Turgoen -Turicum -Turimetta -Turin -Turing -Turino -Turk -Turk Hollow -Turk Murphy -Turkey -Turkey Cock -Turkey Farm -Turkey Foot -Turkey Hill -Turkey Point -Turkey Ridge -Turkey Run -Turkey Shore -Turkey Track -Turks -Turks Cap Lily -Turks Head -Turle -Turley -Turlington -Turlock -Turmaine -Turn -Turn Left -Turn Loop -Turn Moss -Turn Pike -Turnabout -Turnagain -Turnage -Turnberry -Turnbridge -Turnbrook -Turnbuckle -Turnbull -Turnbury -Turncrest -Turncroft -Turnden -Turner -Turner Bridge -Turner Farm -Turner Gulch -Turner Hill -Turner Joy -Turner Ridge -Turners -Turners Green -Turners Hill -Turners Lake -Turners Mill -Turnesa -Turneur -Turneville -Turney -Turnfield -Turnfurlong -Turnham -Turnhouse -Turning Leaf -Turning Mill -Turnip Hill -Turnlee -Turnley -Turnmill -Turnoak -Turnock -Turnpike -Turnpike Service -Turnpin -Turnstone -Turnsworth -Turnure -Turnwood -Turold -Turon -Tuross -Turp -Turpentine -Turpin -Turpington -Turquand -Turquoise -Turra -Turramurra -Turrell -Turrella -Turret -Turret Hall -Turrett -Turriell Bay -Turriell Point -Turrin -Turrini -Turstan -Turstin -Turtle -Turtle Cove -Turtle Creek -Turtle Dove -Turtle Lake -Turtle Pond -Turtle Rock -Turtle Valley -Turtlecreek -Turtledove -Turtlerock -Turton -Turuga -Turvan -Turves -Turvey -Turville -Turvin -Tuscala -Tuscaloosa -Tuscan -Tuscan View -Tuscano -Tuscany -Tuscarawas -Tuscarora -Tuscola -Tusculum -Tushmore -Tusk -Tuskar -Tuskeegee -Tusket River -Tusmore -Tussel -Tussell -Tussock Brook -Tustin -Tutbury -Tuthill -Tutt -Tuttle -Tutus -Tuve -Tuxedo -Tuxford -Tuxhorn -Twain -Twain Harte -Twaits -Tweed -Tweed Mouth -Tweedale -Tweeddale -Tweedle Hill -Tweedmouth -Tweedy -Twelfth -Twelth -Twelve Acres -Twelve Hills -Twelve Oak Hill -Twelve Oaks -Twelve Oaks Center -Twelve Oaks Ctr -Twelve Yards -Twentieth -Twentyeighth -Twentyninth -Twentysecond -Twentyseventh -Twentythird -Tweseldown -Twickenham -Twickenham Arragon -Twickenham King -Twickenham King -Twig -Twiggy -Twigworth -Twilight -Twilley -Twin -Twin Beach -Twin Bluff -Twin Branches -Twin Bridge -Twin Bridges -Twin Brook -Twin Brooks -Twin Buttes -Twin Cedar -Twin Circle -Twin Cities -Twin Creek -Twin Creeks -Twin Dolphin -Twin Elms -Twin Falls -Twin Fawn -Twin Field -Twin Forks -Twin Gardens -Twin Harbor -Twin Haven -Twin Hills -Twin Holly -Twin House Ranch -Twin Knolls -Twin Lake -Twin Lakes -Twin Lawns -Twin Light -Twin Maple -Twin Meadow -Twin Mill -Twin Oak -Twin Oaks -Twin Palms -Twin Park -Twin Peaks -Twin Pine -Twin Pines -Twin Pond -Twin Ponds -Twin Rail -Twin Ridge -Twin Rivers -Twin Silos -Twin Sisters -Twin Spring -Twin Springs -Twin Valley -Twin View -Twinboro -Twinbrook -Twinbrook Run -Twinches -Twine -Twineham -Twingleton -Twining -Twining Brook -Twinlake -Twinlakes -Twinn -Twinnies -Twinview -Twirl Hill -Twisden -Twiss -Twiss Green -Twisse -Twist -Twisted Oak -Twisting -Twisting Tree -Twitchell -Twitchells -Twitten -Twitton -Two Bar -Two Bays -Two Bridges -Two Brooks -Two Brothers -Two Dells -Two Farm -Two Harbors -Two Mile Ash -Two Mills -Two North LaSalle -Two Oaks -Two Paths -Two Penny -Two Rivers -Two Rock -Two Rod -Two Sisters -Two Trees -Two Waters -Twombly -Twsh -Twycross -Twydall -Twyford -Twyford Abbey -Twyford Bury -Twyla -Twyman -Twynam -Twynersh -Twynham -Twyzel -Ty -Tyacke -Tyagarah -Tyalgum -Tyalla -Tyas -Tybalt -Tybenham -Tyberry -Tyburn -Tycannah -Tychbourne -Tyco -Tydcombe -Tydden -Tydeman -Tydesley -Tydings -Tye Common -Tye Green -Tye River -Tyee -Tyers -Tyersal -Tygart -Tygert -Tygh -Tyke -Tykeswater -Tyland -Tyldesley -Tyldesley Old -Tylecroft -Tylee -Tylehurst -Tyler -Tyler Creek -Tyler Island -Tyler Island Bridge -Tyler Point -Tyler Prentice -Tylers -Tylers Green -Tylers Hill -Tylney -Tylneys -Tymm -Tynan -Tyndale -Tyndales -Tyndall -Tyndrum -Tyne -Tynebourne -Tynedale -Tyneham -Tynemouth -Tyner -Tyneside -Tynewick -Tyng -Tyngsboro -Tyngsborough -Tynis -Tynsdale -Tynwald -Tyosa -Typhoon -Tyr -Tyram -Tyrconnel -Tyre -Tyrell -Tyrella -Tyrellan -Tyrells -Tyrnbury -Tyrol -Tyroler -Tyron -Tyrone -Tyrrel -Tyrrell -Tyrwhitt -Tysea -Tysen -Tysens -Tyska -Tysoe -Tyson -Tysons -Tyspring -Tyssen -Tythe -Tytherington -Tytherington Park -Tytherton -Tyzack -Tzabaco Creek -Tzoumar -U Fernwood -UMBC -US Geological Survey -USS Amesbury -Uamvar -Uckfield -Udalia -Udall -Udayakavi -Udell -Udimore -Udine -Udney Park -Ueda -Ueland -Uffington -Ufford -Ufton -Uganda -Ugland -Ugo -Uhden -Uhland -Uhlman -Uhrig -Uhuru -Uki -Ukiah -Ukraine -Ulatis -Ulcombe -Uldale -Ulderic -Uline -Ulladulla -Ullard Hall -Ullathorne -Ulleswater -Ulley -Ullian -Ullman -Ulloa -Ullswater -Ulm -Ulmara -Ulmer -Ulmers Farm -Ulmurra -Ulolo -Ulonga -Ulster -Ultimate -Ultimo -Ulting -Ulting Hall -Ulundi -Ulundri -Ulva -Ulverscroft -Ulverston -Ulverstone -Ulwyn -Ulysses -Umbagog -Umbarger -Umbdenstock -Umberston -Umberto -Umberton -Umbria -Umfreville -Umland -Un -Un Pr -Una -Unadilla -Unami -Unara -Unarland -Uncas -Uncas Pond -Uncatena -Uncouth -Undajon -Under -Under Pin Hill -Undercliff -Undercliffe -Underclift -Underdale -Underdown -Underhill -Underhill Park -Underhills -Underlyn -Underne -Underriver House -Undershaw -Underwood -Undestad -Undine -Ungarra -Unicorn -Unicumes -Uniform -Union -Union Bridge -Union Camp -Union Church -Union City -Union Farm -Union Hall -Union Hill -Union Landing -Union Mill -Union Mine -Union Oil Company -Union Park -Union Point -Union Ridge -Union Springs -Union Ter -Union Terrace -Union Valley -Union Village -Uniondale -Unionport -Unionstone -Unique -United -Unity -Unity Park -Unity Pointe -UnivAlhambra -Universal -Universal Plaza -Universe -University -University Av Ser -University Park -University Plaza -University Service -University Svc -Unknown Soldier -Unnamed -Unqua -Unquity -Unstead -Unsworth -Unwick -Unwin -Unwins -Unwins Bridge -Uop North Service -Uop South Service -Upa -Upavon -Upcast -Upcerne -Upchat -Upcrest -Upcroft -Updale -Upenuf -Upfield -Upfold -Uphall -Upham -Upham Park -Uphill -Upland -Upland Court -Upland Farm -Upland Fields -Upland Gardens -Upland Woods -Uplands -Uplands Park -Uplees -Uplook -Upminster -Upney -Upnor -Upp -Upper -Upper Abbey -Upper Accommodation -Upper Afton -Upper Almora -Upper Ames -Upper Anstey -Upper Ardmore -Upper Ashlyns -Upper Attunga -Upper Austin Lodge -Upper Autumn -Upper Bank -Upper Basinghall -Upper Batley -Upper Batley Low -Upper Beach -Upper Belgrave -Upper Berkeley -Upper Bolney -Upper Bourne -Upper Brand Lake -Upper Brandon -Upper Bray -Upper Brentwood -Upper Briar -Upper Bridge -Upper Brighton -Upper Broadmoor -Upper Brockley -Upper Brook -Upper Buford -Upper Bush -Upper Canyon Three -Upper Carr -Upper Carriage -Upper Cavendish -Upper Chapel -Upper Charles -Upper Chestnut -Upper Chobham -Upper Chorlton -Upper Church -Upper Circle -Upper Clapton -Upper Cliff -Upper Clifford -Upper Clubhouse -Upper Colonial -Upper Conran -Upper Court -Upper Cove -Upper Crackney -Upper Croft -Upper Cross -Upper Crown -Upper Cub Run -Upper Culver -Upper Cyrus -Upper Dagnall -Upper Dearborn Park -Upper Denmark -Upper Depew -Upper Dock -Upper Dogwood -Upper Dunstan -Upper East -Upper Edgeborough -Upper Ellen -Upper Elmers End -Upper Elms -Upper Express -Upper Fairfax -Upper Fairfield -Upper Fans -Upper Fant -Upper Farm -Upper Fenn -Upper Ferry -Upper Field -Upper Fig -Upper Fort -Upper Fremont -Upper Gates -Upper George -Upper Gilber -Upper Gladstone -Upper Gordon -Upper Gore -Upper Green -Upper Greenwoods -Upper Greycliffe -Upper Grosvenor -Upper Grotto -Upper Grove -Upper Guildown -Upper Haig -Upper Hale -Upper Halliford -Upper Ham -Upper Hammer -Upper Happy Valley -Upper Haysden -Upper Heath -Upper Helena -Upper Hibernia -Upper High -Upper High Crest -Upper Highland -Upper Hill -Upper Holly Hill -Upper Holt -Upper House -Upper Joclyn -Upper John -Upper Kent -Upper Kirby -Upper Lake -Upper Lakeview -Upper Lattimore -Upper Lea -Upper Lees -Upper Lloyd -Upper Lock -Upper Lodge -Upper Luton -Upper Magazine -Upper Main -Upper Manor -Upper Marlborough -Upper Marsh -Upper Meadow -Upper Medlock -Upper Memory -Upper Minimbah -Upper Monsall -Upper Montagu -Upper Monterey -Upper Moss -Upper Mount -Upper Mount Glen Lake -Upper Mountain -Upper Mulgrave -Upper Neatham -Upper North -Upper North Row -Upper Oak -Upper Oak Flat -Upper Old Park -Upper Overlook -Upper Paddock -Upper Park -Upper Peters Dam -Upper Pindell -Upper Pine -Upper Pitt -Upper Pond -Upper Prospect -Upper Queen -Upper Rainham -Upper Range -Upper Redlands -Upper Redwood -Upper Richmond -Upper Ridge -Upper Ridgeway -Upper Ritie -Upper River -Upper Rodmersham -Upper Roman -Upper Saddle River -Upper Salem Pond -Upper San Antonio -Upper San Vicente -Upper Scenic -Upper School -Upper Service -Upper Sherborne -Upper Sheridan -Upper Shirley -Upper Soldridge -Upper Spit -Upper Spring -Upper Sudden Pond -Upper Sunbury -Upper Tachbrook -Upper Teddington -Upper Terrace -Upper Thames -Upper Tilehouse -Upper Tin Can Ranch -Upper Tooting -Upper Town -Upper Toyon -Upper Trail -Upper Trinity -Upper Union -Upper Vann -Upper Vernon -Upper Verran -Upper Vicarage -Upper Village -Upper Walthamstow -Upper Warren -Upper Washington -Upper West -Upper Weybourne -Upper Wickham -Upper Wield -Upper Wilton -Upper Wimpole -Upper Wortley -Upper Zayante -Upper grove -Upperfield -Upperhill -Uppermill -Uppermont -Upperridge -Upperton -Uppingham -Upplanda -Ups -Upsala -Upsdell -Upshaw -Upshire -Upshot -Upshur -Upson -Upstall -Upton -Upton Court -Upton Hills -Upton Park -Upton Park Arragon -Upton Pyne -Upward -Upwell -Upwey -Upwood -Upwoods -Upwye -Ural -Uralba -Uralla -Urana -Uranium -Uranus -Urban -Urban Club -Urbana -Urbane -Urbanik -Urbanna -Urbano -Urbanowitz -Urby -Urchin -Uren -Uriahs -Uridge -Uridias Ranch -Urlwin -Urma -Urmond -Urmson -Urmston -Urn -Urna -Urquhart -Urrico -Ursa -Ursiline -Ursina -Ursla -Ursula -Ursuline -Urswick -Urunga -Urzi -Usange -Useadoor -Usg -Usher -Usk -Usona -Uss Arizona -Uss Missouri -Uss North Carolina -Uss Tennessee -Utah -Ute -Uteg -Uther -Utica -Utilities -Utility -Utley -Utopia -Utter -Utterby -Uttley -Uttons -Utuardo -Utz -Utzon -Uunet -Uvas -Uvas Park -Uvedale -Uxbridge -Uxbridge Belmont -Uxmore -Uyeda -V Fernwood -VFW -Vaagen -Vaal -Vaca -Vaca Creek -Vaca Valley -Vacation -Vacation Beach -Vacca -Vaccaro -Vachel -Vachel Lindsay -Vaden -Vadnais -Vadnais Center -Vadnais Lake -Vagabond -Vai -Vail -Vail Ridge -Vaile -Vailetti -Vaillancourt -Vaillant -Vaille -Vaillencourt -Vailwood -Val -Val Aosta -Val Gardena -Val Lee -Val McKilmer -Val Page -Val Park -Val Varaita -Val Verde -Val Vista -Valaire -Valais -Valance -Valarie -Valbusa -Valcartier -Valcour -Valda -Valdale -Valdalia -Valdeflores -Valdemar -Valdene -Valders -Valdes -Valdez -Valdora -Valdosta -Vale -Vale Crest -Vale Farm -Vale House -Vale Park -Vale Spring -Vale Top -Vale View -Vale Wood -Valebridge -Valebrook -Valediction -Valemont -Valence -Valence Wood -Valencia -Valencia School -Valenciennes -Valensin -Valensin Ranch -Valente -Valentia -Valentina -Valentine -Valentine Creek -Valentine Crest -Valentines -Valentino -Valento -Valenza -Valeowen -Valera -Valerga -Valeria -Valerian -Valeriana -Valerie -Valero -Valery -Vales -Valeswood -Valetta -Valette -Valeview -Valevue -Valewood -Valhalla -Valiant -Valimar -Valinda -Valis -Valita -Valko -Valkyrie -Valla -Valla Vista -Vallacher -Vallance -Vallar -Vallaro -Vallco -Valle -Valle Ducale -Valle Pacifico -Valle Verde -Valle Vista -Vallecito -Vallecitos -Vallejo -Vallemar -Vallentin -Vallerand -Vallery -Valles -Valleton -Valletts -Valley -Valley Beach -Valley Bend -Valley Brook -Valley Center -Valley Circle -Valley Country -Valley Creek -Valley Cresent Rodger -Valley Cresent Valley -Valley Crest -Valley Curve -Valley End -Valley Fair -Valley Ford -Valley Ford Estero -Valley Forge -Valley Glen -Valley Green -Valley Greene -Valley Greens -Valley Heights -Valley Hi -Valley High -Valley Hill -Valley House -Valley Lake -Valley Lakes -Valley Lark -Valley Lo -Valley New -Valley Oak -Valley Oaks -Valley Park -Valley Pines -Valley Point -Valley Quail -Valley Ridge -Valley Run -Valley Spring -Valley Square -Valley Trails -Valley Tree -Valley Vale -Valley View -Valley View Tram -Valley Vista -Valley West -Valley Wood -Valley of the Moon -Valleybrook -Valleycrest -Valleyfield -Valleyhill -Valleyoak -Valleyscent -Valleyside -Valleystone -Valleystream -Valleytrail -Valleyview -Valleyvista -Valleywood -Valliere -Valliers Wood -Valline -Vallingbe -Valliria -Valma -Valmar -Valmay -Valmere -Valmont -Valmonte -Valmor -Valmora -Valmy -Valnay -Valognes -Valomen -Valon -Valonia -Valor -Valorie -Valory -Valota -Valparaiso -Valpey Park -Valpico -Valpy -Valroy -Vals -Valverde -Valyana -Valyn -Vambery -Van -Van Acker -Van Allen -Van Alstine -Van Arsdale -Van Auken -Van Beal -Van Beuren -Van Binsberger -Van Blarcom -Van Blarcoms -Van Blitz -Van Brackle -Van Brady -Van Breeman -Van Brunt -Van Buren -Van Buskirk -Van Bussum -Van Cedar -Van Cleaf -Van Cleave -Van Cleef -Van Cleep -Van Cleve -Van Cliff -Van Cortlandt -Van Cortlandt Park -Van Cott -Van Dam -Van Damin -Van Damme -Van De Graff -Van Delft -Van Der Meulen -Van Dervin -Van Dieman -Van Dine -Van Doren -Van Dorn -Van Duren -Van Dusen -Van Duyne -Van Duzer -Van Dyck -Van Dyke -Van Emburgh -Van Emmon -Van Etten -Van Exel -Van Fleet -Van Gemert -Van Gogh -Van Greenby -Van Guilder -Van Halen -Van Hee -Van Hoesen -Van Horn -Van Horne -Van Hounten -Van Houten -Van Hoven -Van Keuran -Van Keuren -Van Kirk -Van Kleeck -Van Liew -Van Loan -Van Loon -Van Maren -Van Meter -Van Moore -Van Mourik -Van Mulen -Van Name -Van Ness -Van Nest -Van Norden -Van Nostrand -Van Olst -Van Orden -Van Over -Van Owen -Van Parker -Van Patten -Van Pelt -Van Reipen -Van Rensselaer -Van Reypen -Van Riper -Van Ripper -Van Roo -Van Roosen -Van Ruiten -Van Sansul -Van Saun -Van Schaik -Van Schoick -Van Sciver -Van Sickle -Van Sicklen -Van Siclen -Van Sinderen -Van Sloun -Van Slyke -Van Syckel -Van Tassel -Van Thompson -Van Tines -Van Tuyl -Van Ufford -Van Valkenburgh -Van Vechten -Van Vleck -Van Vooren -Van Vorst -Van Wagenen -Van Wagner -Van Wagoner -Van Wart -Van White -Van White Memorial -Van Wickle -Van Wicklen -Van Winkle -Van Wormer -Van Wyck -Van Wyk -Van Zandt -Van de Mark -Vana -Vanad -Vanasse -Vanbrugh -Vanburen -Vance -Vancott -Vancouver -Vancroft -Vanda -Vandalia -Vandall -Vandam -Vandan -Vandegrift -Vandelft -Vandelinda -Vandell -Vanden -Vandenberg -Vander Wall -Vanderbeck -Vanderbelt -Vanderbergh -Vanderbie -Vanderbilt -Vanderbilt Motor -Vanderbuilt -Vanderburg -Vanderburgh -Vandercastel -Vanderelinde -Vanderhoof -Vanderhurst -Vanderlyn -Vanderpool -Vanderslice -Vanderveer -Vanderventer -Vandervoot -Vandervork -Vanderwalker -Vanderwater -Vandette -Vandever -Vandewater -Vandien -Vandine -Vandon -Vandor -Vandustrial -Vandy -Vandyke -Vane -Vanech -Vaneck -Vanessa -Vanethel -Vanetta -Vanette -Vange Hill -Vange Park -Vangeli -Vanguard -Vanhorn -Vanilla Grass -Vanity -Vanity Fair -Vankalker -Vankleeck -Vann -Vann Farm -Vann Lake -Vanna -Vannan -Vanness -Vanni -Vannier -Vannoy -Vannucci -Vanoni -Vanore -Vanous -Vanpatten -Vanport -Vans -Vanschoick -Vansittart -Vant -Vant Sant -Vantage -Vantage Hill -Vantage Point -Vantomme -Vantorts -Vantroba -Vanwall -Vanzell -Vapery -Vaquero -Vaqueros -Vara -Varady -Varcoe -Varda -Varda Landing -Varden -Vardens -Vardon -Vardys -Varela -Varennes -Varet -Varey -Varga -Vargas -Varian -Varick -Varick Hill -Varidel -Vark -Varkens Hook -Varley -Varna -Varndell -Varner -Varnes -Varney -Varni -Varnum -Varsity -Vasa -Vasco -Vasco Da Gama -Vasconcellos -Vashi -Vashon -Vasona -Vasona Oaks -Vasona Park -Vasques -Vasquez -Vassal -Vassall -Vassar -Vasser -Vast Rose -Vastern -Vatem -Vatsa -Vattman -Vauban -Vaucluse -Vaudan -Vaudrey -Vaugham -Vaughan -Vaughn -Vaughn Hill -Vaugn -Vault -Vaulx -Vaupell -Vause -Vautrinot -Vaux -Vaux Hall -Vauxhall -Vauxhall Bridge -Vauze -Vavasour -Veale -Veasy -Veazy -Vecchio -Vecino -Vectis -Ved Mandir -Veda -Vedder -Vee -Veeder -Veering -Veery -Vega -Vega del Rio -Vegas -Vehicle -Veirs -Veirs Mill -Veitch -Velado -Velander -Velarde -Velasco -Velasquez -Veldran -Veles -Velilla -Velizy -Vellex -Vellum -Vellutini -Velma -Velmead -Velmere -Velo -Velock -Veltman -Veltri -Velvet -Velvetlake -Velvetleaf -Vena -Venable -Venables -Venada -Venadito -Venado -Venango -Venard -Vendale -Venditto -Vendola -Vendome -Vendora -Venedia -Veneman -Veness -Venetia -Venetian -Venetion -Veneto -Venezia -Venice -Venison -Venmore -Venn -Venna -Venndale -Vennecia -Venner -Vennie -Venns -Vennum -Veno -Venson -Ventana -Venter -Ventnor -Venton -Ventry -Ventura -Ventura Club -Venture -Venturella -Venue -Venus -Venuti -Venwood -Veprek -Ver -Vera -Vera Cruz -Vera Schultz -Veracruz -Veralee -Veranda -Verano -Verba -Verbalee -Verbena -Verbend -Verbickas -Vercelli -Verchild -Verda -Verdala -Verdant -Verdayne -Verde -Verde Mesa -Verde Valle -Verde Vista -Verdemar -Verderers -Verderosa -Verdi -Verdi Vista -Verdict -Verdin -Verdis -Verdite -Verdmont -Verdon -Verdosa -Verdoso -Verducci -Verdugo -Verdun -Verdunn -Verdure -Vere -Verein -Vereker -Verena -Verey -Vergie -Vergil -Vergus -Verhaeghe -Veridan -Verigan -Verissimo -Veritas -Verity -Verjane -Verjuniel -Verkade -Verla -Verletta -Verley -Verleye -Verlie -Vermark -Vermeer -Vermette -Vermillion -Vermilye -Vermilyea -Vermont -Vermulen -Vern -Verna -Verna Hall -Verna Mae -Vernaccia -Vernal -Vernalis -Vernam -Vernazza -Verndale -Verne -Vernel -Verner -Verney -Vernham -Vernice -Vernick -Vernier -Vernon -Vernon Berry -Vernon Hills -Vernon Ridge -Vernon Square -Vernon Valley -Vernon View -Vernon Young -Vernons -Vernoy Hills -Vero -Veroan -Veron -Verona -Verona Ridge -Veronda -Veronica -Verplank -Verplast -Verrada -Verran -Verrazano -Verrell -Verrill -Verry -Versailes -Versailles -Vershire -Vert -Verterans -Vertin -Verulam -Vervain -Vervais -Vervalen -Verveille -Vervoort -Verwood -Vescey -Vesey -Vespa -Vespan -Vesper -Vespucci -Vessey -Vessing -Vest -Vesta -Vestal -Vestals Gap -Vestrella -Vestris -Vestry -Vesuvius -Vetel -Veteran -Veterans -Veterans Foreign War -Veterans Memorial -Veterans Park -Veterinary Medicine -Vetrone -Vets -Vets Mem -Vetta -Vevers -Vevey -Vezina -Via -Via Arline -Via Arriba -Via Baja -Via Cabrera -Via Camino -Via Cima -Via Cordova -Via Dora -Via Escuela -Via Grande -Via Guiseppe -Via Horqueta -Via Madero -Via Madronas -Via Monte -Via Nicolo -Via Palagio -Via Palazzo -Via Paviso -Via Pinada -Via Primavera -Via Puerta -Via Ranchero -Via Real -Via Roma -Via Sereno -Via Tanques -Via de Palmas -Via de Robles -Via del Cerrito -Via del Robles -Via del Sol -Via el Dorado -Via la Luna -Viables -Viader -Viaduct -Vialoux -Vian -Viburnum -Vic Rugh -Vicanna -Vicar -Vicar Park -Vicarage -Vicars -Vicars Hall -Vicci -Vicente -Vicenze -Viceroy -Vichy -Vicino -Vick -Vickerman -Vickers -Vickery -Vickery Park -Vickey -Vicki -Vicki Lynn -Vickrey -Vicksburg -Vicky -Vicliffe -Vicorage -Victor -Victor Beamish -Victor Hugo -Victor Mann -Victor Park -Victoria -Victoria Bridge -Victoria Dock -Victoria Farms -Victoria Grange -Victoria Greens -Victoria Heights -Victoria Hill -Victoria Lakes -Victoria Park -Victoria Service -Victoria Smith -Victorian -Victorian Park -Victorian Woods -Victorine -Victorious Song -Victory -Victory Farms -Victory Memorial -Victory Park -Victrola -Vida -Vidal -Videll -Viden -Videtta -Vidgeon -Vidilini -Vidovich -Vieau -Viebrock -Vieira -Viele -Vienna -Viento -Viera -Vierling -Vierra -Vierra Canyon -Vierra Knolls -Viers -Vietor -View -View Acre -View Haven -View Park -View Point -View Pointe -View Ridge -View South -Viewcrest -Viewfield -Viewhill -Viewing -Viewland -Viewlands -Viewmont -Viewoak -Viewpoint -Viewpointe -Viewridge -Viewside -Viga -Vigalant -Viggory -Vignes -Vignoles -Vigo -Viking -Viking Gardens -Vila -Vila Do Porto -Vilas -Vildmark -Viles -Villa -Villa Carol -Villa Chantecleer -Villa Circle -Villa Glen -Villa Gomez -Villa Manucha -Villa Maria -Villa Nova -Villa Nueva -Villa Oak -Villa Oaks -Villa Park -Villa Ridge -Villa Robleda -Villa Roma -Villa Serena -Villa Verde -Villa Vista -Villa de Anza -Villa del Sol -Villaburne -Villacourt -Villadest -Village -Village Center -Village Circle -Village Creek -Village Crest -Village Crossing -Village East -Village Elm -Village Fountain -Village Gate -Village Green -Village Grove -Village Hall -Village High -Village Hill -Village Lake -Village Line -Village Lower -Village Mart -Village Mews -Village Oak -Village Oaks -Village Park -Village Quarter -Village Run -Village Shops -Village Side -Village Spring -Village Square -Village Tree -Village View -Village Wood -Village Woods -Villagefield -Villagetree -Villamay -Villanova -Villard -Villareal -Villaridge -Villarita -Villars -Villas -Villaume -Villaverde -Villaview -Villawood -Villdale -Villeneuve -Villers -Villier -Villiers -Villus -Vilmar -Vilnius -Vimiera -Vimy -Vimy Ridge -Vin Rose -Vina -Vina Rose -Vinal -Vinald -Vinan -Vinca -Vincam -Vince -Vincennes -Vincent -Vincente -Vincentia -Vincents -Vinci -Vindara -Vindel -Vine -Vine Brook -Vine Cottage -Vine Court -Vine Grove -Vine Haven -Vine Hill -Vine Hill School -Vine Rock -Vinebrook -Vinecrest -Vinedale -Vinedo -Vinegar -Vinegar Hill -Vinehill -Vineland -Vinemaple -Vineridge -Vinery -Vines -Vinesse -Vinewood -Viney -Vineyard -Vineyard Estates -Vineyard Haven -Vineyard Hill -Vineyard Park -Vineyard View -Vineyards -Vining -Vining Point -Vinings -Vinita -Vinlake -Vinnells -Vinnin -Vinson -Vint Hill -Vintage -Vintage Crest -Vintage Farm -Vintage Glen -Vintage Hill -Vintage Knoll -Vintage Oak -Vintage Oaks -Vintage Park -Vintage Valley -Vinters -Vinton -Vinton Pond -Vinyard -Vinyards -Viola -Violante -Violet -Violet Tail -Violete -Violets -Violetta -Violettes Lock -Violetti -Viona -Vipers -Vir Mar -Virdelle -Virden -Vireo -Viret -Virgate -Virgil -Virgilia -Virgin Rock -Virginia -Virginia Center -Virginia Chase -Virginia Denise -Virginia Farm -Virginia Hill -Virginia Hills -Virginia Infantry -Virginia Mallory -Virginia Manor -Virginia Meadows -Virginia Pine -Virginia Randolph -Virginia Ridge -Virginia Willow -Virginius -Virgo -Virgo Spur -Virlona -Virmar -Virtue -Virtue Arcade -Viscaino -Visco -Viscoloid -Viscount -Vision -Visitacion -Visitation -Vismanco -Vispy -Vista -Vista Access -Vista Bella -Vista Brook -Vista Brooke -Vista Clara -Vista Creek -Vista Forest -Vista Gardens -Vista Grand -Vista Grande -Vista Heights -Vista Hill -Vista Knoll -Vista Linda -Vista Mar -Vista Mobile -Vista Montaña -Vista Monte -Vista Nuevo -Vista Oak -Vista Oaks -Vista Point -Vista Pointe -Vista Ridge -Vista Robles -Vista Sierra -Vista Tiburon -Vista Verde -Vista Via -Vista View -Vista del Lago -Vista del Mar -Vista del Monte -Vista del Pajaro -Vista del Plaza -Vista del Rio -Vistaglen -Vistamont -Vistapark -Vistas -Vistaview -Viste -Vistosa -Vistula -Vita -Vital -Vitale -Viva -Vivaldi -Vivan -Vivian -Vivian Adams -Vivien -Vivienda -Vivienne -Viviney -Vivyen -Vixen -Vizcano -Vlaardingen -Vlatko -Vliet -Vm Smith -Voce -Voegeli -Voelker -Vogan -Vogay -Vogel -Vogelsang -Vogt -Vogue -Voice -Voit -Voke -Vokoun -Volans -Volante -Volbrecht -Volendam -Voleyn -Volger -Volid -Volintine Farm -Volk -Volker -Volkers -Volkert -Volkerts -Volkmar -Volkswagon -Vollbecht -Voller -Volley -Vollmer -Vollmerhausen -Volmer -Volney -Volpi -Volt -Volta -Voltaire -Volti -Voltz -Volunteer -Volunteer Park -Volusia -Volver -Volvo -Volwycke -Volz -Vomac -Vomel -Von Esch -Von Brandt -Von Braun -Von Eigen -Von Elm -Von Falconer -Von Glahn -Von Hillern -Von Hoff -Von Huenfeld -Von Karman -Von Sosten -Von Vetchen -Vonda -Vonder -Vonderworth -Vondran -Vondrash -Vonhoff -Vonn -Voorhees -Voorhies -Voorhis -Vorden -Vore -Vorley -Vorlich -Vos -Vosburg -Vose -Vose Hill -Voses -Voshage -Voss -Voss Park -Vought -Voula -Vouvray -Vowels -Vowler -Voyager -Voyageur -Vredenburgh -Vreeland -Vroom -Vrtis -Vue Finchley -Vue de Mar -Vulcan -Vulgilbar -Vultee -Vulture Vista -Vuono -Vyne -Vyner -Vyse -Vytina -W Abbey -W Abingdon -W Access -W Acker -W Acme -W Acorn -W Adams -W Adelaide -W Adobe -W Agatite -W Ainslie -W Airport -W Albany -W Albert -W Albion -W Alden -W Alder -W Aldine -W Alexander -W Alexandria -W Algonquin -W Alhambra -W Alleghany -W Allen -W Allendale -W Allison -W Almond -W Almondbury -W Alpine -W Altgeld -W Amelia -W Amherst -W Amsterdam -W Amy -W Anchor -W Ancona -W Anderson -W Andover -W Andrew -W Ann -W Annandale -W Anne K -W Apache -W Apple Orchard -W Apple Tree -W Appleby -W Appletree -W Aptakisic -W Arbor -W Arch -W Archer -W Arden -W Ardmore -W Argyle -W Arlington -W Arlyd -W Armitage -W Armstrong -W Army Trail -W Arquilla -W Arran -W Arrowhead -W Arsenal -W Arthington -W Arundel -W Ash -W Ashland -W Aspen -W Attrill -W Atwater -W Auburn -W Augusta -W Austin -W Autullo -W Autumn -W Avon -W Ayres -W Bailey -W Baker -W Bald Eagle -W Baldwin -W Balmoral -W Baltimore -W Bancroft -W Banfil -W Barbara -W Barclay -W Barr -W Barry -W Bartlett -W Bauer -W Bay -W Bay Front -W Bay Ninth -W Bay Shore -W Bay View -W Bayard -W Bayberry -W Bayer -W Bayview -W Beach -W Beam -W Beaver Lake -W Beech -W Beech Tree -W Beechcroft -W Beecher -W Belden -W Bell -W Belle -W Belle Plaine -W Belleau -W Bellefonte -W Belleterre -W Belleview -W Belmont -W Belvidere -W Benck -W Bend -W Benfield -W Bennett -W Benson -W Benton -W Berenice -W Berkeley -W Berkley -W Berkshire -W Bernhard -W Berteau -W Berwick -W Berwyn -W Betty -W Bexhill -W Big Horn -W Big Sand -W Bigelow -W Birch -W Birchdale -W Birchwood -W Bittersweet -W Black -W Black Dog -W Blackburn -W Blackhawk -W Blackthorn -W Blair -W Blancke -W Bliss -W Blodgett -W Bloners -W Bloomingdale -W Bluff -W Boeger -W Bogey -W Bond Mill -W Bonner -W Bonnie Brae -W Booker -W Boschome -W Bosi -W Boston Post -W Boundary -W Bourne -W Bowen -W Bowler -W Boyington -W Braddock -W Bradford -W Bradley -W Bradwell -W Braemar -W Braeside -W Brampton -W Branch -W Brantwood -W Brayton -W Breda -W Breen -W Brentwood -W Brewster -W Briarcliff -W Briarwood -W Bridge -W Brighton -W Brightway -W Brittany -W Broad -W Broadland -W Broadview -W Broadway -W Brockman -W Brompton -W Brook -W Brookfield -W Brooks -W Brookside -W Brookwood -W Bross -W Brother -W Brown -W Bruce -W Bruns -W Buell -W Buena -W Buffalo Grove -W Buford -W Bull Ridge -W Burke -W Burlington -W Burnett -W Burning Tree -W Burr Oak -W Burville -W Bush Lake -W Business Center -W Busse -W Butterfield -W Butternut -W Byrne -W Byron -W Cabot -W Cabrini -W Calendar -W California -W Calumet Sag -W Cambridge -W Camden -W Cameron -W Camp McDonald -W Campbell Park -W Campus -W Canterbury -W Carefree -W Carl -W Carmen -W Carol -W Carolyn -W Carondelet -W Carriage -W Carroll -W Carter -W Carvel -W Carver -W Cascade -W Case -W Castle Island -W Catalpa -W Catawba -W Catherine -W Cathy -W Caton -W Cattail -W Cedar -W Cedar Lake -W Cedarview -W Centennial -W Center -W Central -W Centurion -W Century -W Chalk Point -W Chamberlin -W Champion -W Chanay -W Chancellor -W Channon -W Chapin -W Chapman -W Charles -W Charleston -W Charlotte -W Charmaine -W Chartwell -W Chase -W Chatfield -W Chatham -W Checker -W Cherry -W Cherry Blossom -W Cheryl -W Chesapeake Beach -W Chester -W Chestnut -W Chestnut Ridge -W Chicago -W Chilcombe -W Chipwood -W Choctaw -W Christiana -W Christopher -W Church -W Churchill -W Circle -W Circuit -W Clara -W Clarence -W Clarendon -W Clark -W Clearwater -W Cleven -W Cliff -W Cliffside -W Clifton -W Clinton -W Clover -W Coach -W Coady -W Cole -W Coleman -W Colerain -W Colfax -W College -W Colonial -W Colorado -W Columbia -W Columbus -W Colville -W Comfort -W Commercial -W Commonwealth -W Como -W Concord -W Congress -W Connacht -W Connell -W Conrad -W Constance -W Cook -W Cope -W Cornelia -W Cornell -W Cortez -W Cortland -W Cossitt -W Cotswald -W Cottage -W Country -W Country Club -W Country Estates -W Country Valley -W Countryside -W County Line -W Course -W Court -W Courte -W Courtland -W Coventry -W Coyle -W Crainmont -W Crandall -W Creek -W Creek Farms -W Creekside -W Crescent -W Cressett -W Crestline -W Crestview -W Crockett -W Crooked Willow -W Crystal -W Crystal Lake -W Cuba -W Cullerton -W Cullom -W Culver -W Cunningham -W Curtice -W Curtis -W Custer -W Custis -W Cuttriss -W Cuyler -W Dahlgren -W Dakin -W Dallas -W Dalton -W Danbury -W Daniels -W Dante -W Danube -W Dartmoor -W Davis -W Dayton -W Dean -W Dee -W Deer Creek -W Deer Park -W Deerpath -W Deerwood -W Delaney -W Delano -W Delos -W Demont -W Dempster -W Dennis -W Denton -W Des Moines -W Devon -W Devonia -W Dexter -W Diamond -W Diamond Lake -W Dickens -W Diehl -W Diversey -W Division -W Doede -W Dolph -W Domagalla -W Dominion -W Donegal -W Doral -W Dorchester -W Dorothy -W Dosoris -W Doswell -W Douglas -W Dove -W Dover -W Dovington -W Doyle -W Dublin -W Dudley -W Dundee -W Durham -W Durkee -W Eagle Lake -W Eames -W Early -W Eastman -W Easton -W Eastwood -W Easy -W Eaton -W Ebinger -W Echo -W Eddy -W Edgemont -W Edgewater -W Edgewood -W Edmaire -W Edmund -W Edmunds -W Edsall -W Edward -W Eggerding -W Elder -W Eleanor -W Elizabeth -W Elk Grove -W Ellen -W Ellice -W Ellis -W Elm -W Elm Grove -W Elmgrove -W Elms Court -W Elmwood -W Emerson -W End -W Enger -W Engle -W Englewood -W Erhart -W Essex -W Estes -W Ethel -W Euclid -W Eugenia -W Eureka -W Eva -W Evans -W Evelyn -W Everell -W Everett -W Evergreen -W Exchange -W Exeter -W F Kings -W Fabish -W Fairmount -W Fairview -W Fargo -W Farm -W Farmdale -W Farmhill -W Farms -W Farragut -W Farwell -W Fenimore -W Fenview -W Ferdinand -W Fernwood -W Ferris -W Fey -W Fillmore -W Fingerboard -W Firestone -W Firth -W Fischer Farm -W Fish Lake -W Fitch -W Flagler -W Fletcher -W Florence -W Flournoy -W Flynn Creek -W Foch -W Forbes -W Ford Brook -W Ford City -W Forest -W Forest Lawn -W Forest View -W Foresthill -W Forestview -W Fork -W Forster -W Fort Lee -W Fortlee -W Foss -W Foster -W Fox -W Fox Hill -W Fox River -W Foxdale -W Francis -W Franciscan -W Frankfort -W Franklin -W Freeway -W Fremont -W French Lake -W Friends -W Friendship -W Front -W Frontage -W Frontenac -W Frontier -W Frost -W Fry -W Fuller -W Fullerton -W Fulton -W Furnace Branch -W Gabreski -W Gale -W Galena -W Galeview -W Galley -W Garden -W Gardner -W Garfield -W Garrett -W Gartner -W Gaslight Square -W Gate -W Gate Fire -W Gates -W Gateway -W Gaylore -W Geneva -W George -W George Mason -W Geranium -W Gerri -W Gettysburg -W Gibbons -W Giddings -W Gilbert -W Glade -W Gladys -W Glebe -W Glen -W Glen Hill -W Glen Park -W Glenbarr -W Glencoe -W Glendale -W Glengate -W Glenlake -W Glenshire -W Glenwood -W Go Wanda -W Goebel -W Goethe -W Golden Lake -W Goldsborough -W Golf -W Golfview -W Goodenow -W Goodhue -W Goodman -W Goodrich -W Gouverneur -W Government -W Grace -W Gracy -W Graham -W Granada -W Grand -W Grand Lake -W Grand Monde -W Grandview -W Grant -W Grantley -W Granville -W Green -W Green Meadows -W Greenbrook -W Greenfield -W Greenleaf -W Greenway -W Greenwich -W Greenwood -W Gregory -W Grenshaw -W Greystone -W Grochowiak -W Grove -W Grover -W Grovewood -W Gude -W Guinevere -W Gunnison -W Hackberry -W Haddon -W Hadley -W Hafenrichter -W Hafer -W Haft -W Haines -W Halbert -W Haledon -W Haley -W Half Day -W Hamburg -W Hamilton -W Hamline Service -W Hampden -W Hampshire -W Hampton -W Hanover -W Hansel -W Hansen -W Happfield -W Harbor -W Harding -W Harold -W Harriet -W Harris -W Harrison -W Hartford -W Harts -W Hartsburg -W Hartsdale -W Harwood -W Hastings -W Hatch -W Hattendorf -W Haven -W Hawley -W Hawthorne -W Hayes -W Hayford -W Haystack -W Hazel -W Hazelcrest -W Hazelwood -W Heather Glen -W Heatherlea -W Heathwood -W Hedge Apple -W Hegel -W Helen -W Helmar -W Hemphill -W Henderson -W Hendon -W Hendricks -W Henrietta -W Henry -W Heritage Oaks -W Hermione -W Hiawatha -W Hickory -W Hickory Creek -W Hidden Valley -W Higbie -W Higgins -W High -W High Point -W High Ridge -W Highland -W Highridge -W Hill -W Hillcrest -W Hills -W Hillside -W Hilltop -W Hinsdale -W Hintz -W Hircsh -W Hirsch -W Hitchcock -W Hobart -W Hobart Gap -W Hobbie -W Hoff -W Hoffman -W Holbrook -W Holly -W Hollywood -W Holtz -W Homestead -W Honeysuckle -W Hood -W Horn -W Horseshoe -W Hortense -W Howard -W Howdy -W Howell -W Howland -W Hoyt -W Hubbard -W Hudson -W Hummingbird -W Hundley -W Hunt -W Hunter -W Hunters -W Huntington -W Huntington Commons -W Huntley -W Hurlbut -W Huron -W Hutchinson -W Hyacinth -W Hydraulic -W Ibsen -W Idaho -W Illinois -W Imlay -W Imperial -W Indian Trail -W Indiana -W Industrial -W Inman -W Interstate -W Inverness -W Iowa -W Ironstone -W Iroquois -W Irvine -W Irving -W Irving Park -W Isabel -W Isabella -W Isham -W Island -W Islip -W Itasca -W Ivanhoe -W Ivy -W J L Smith -W Jack -W Jackson -W Jacquie -W Jamaica -W James -W Jarlath -W Jarvis -W Jason -W Jasper -W Jean -W Jefferson -W Jeffery -W Jeffrey -W Jefryn -W Jerome -W Jersey -W Jessamine -W Jessup -W Jobev -W Joe Orr -W Joffre -W Johanna -W John -W Johnson -W Joliet -W Jonathon -W Jones -W Joyce -W Julian -W Juliet -W Juneau -W Junior -W Juno -W Kamerling -W Kammes -W Karen -W Karl -W Kathleen -W Kathryn -W Kay -W Kazimour -W Kellogg -W Kelly -W Kelly Ann -W Kenilworth -W Kennedy -W Kennicott -W Kensington -W Kentwood -W Kenwood -W Kilkenny -W Kimber -W King -W King George -W Kingsbridge -W Kingsbury -W Kingsley -W Kingston -W Kinney -W Kinzie -W Kipp -W Kirke -W Kissimee -W Knollwood -W Kohl -W Kraft -W Kruckenburg -W Kurt -W Kuse -W Ladd -W Lady Bar -W Lafayette -W Lafayette Frontage -W Lafond -W Lahon -W Lake -W Lake Cook -W Lake Fairfield -W Lake Harriet -W Lake Manor -W Lake Park -W Lake Sarah -W Lake Shore -W Lakeland -W Lakepoint -W Lakeshore -W Lakeside -W Lakeview -W Lakeway -W Lakewood -W Lambs -W Lancaster -W Lancelot -W Landau -W Langley -W Lanham -W Laquinta -W Laraway -W Larchmont -W Lasalle -W Lauffer -W Laurel -W Lauren -W Laurie -W Lawn -W Lawndale -W Lawrence -W Lawson -W Le Moyne -W Lee -W Leland -W Lenox -W Leon -W Leonora -W Leslie -W Lester -W Lexington -W Liberty -W Lill -W Lincoln -W Linda -W Lindbergh -W Linden -W Line -W Linecrest -W Linwood -W Little Creek -W Little Pond -W Livingston -W Lloyd -W Lockport -W Lockwood -W Locust -W Lode -W Logan -W Lois -W Lone Tree -W Long Grove -W Longfield -W Lookout -W Loop -W Lori -W Lorraine -W Lothair -W Lotta -W Louis -W Louise -W Loves -W Loy -W Loyola -W Lucas -W Lumber -W Lunt -W Luray -W Luther -W Lydia -W Lyndale -W Lynfield -W Lynnhurst -W Lynnwood -W Lyon Farm -W Madison -W Magnolia -W Magoun -W Mahan -W Mahogany -W Main -W Major -W Mallard -W Manchester -W Manhattan -W Manitoba -W Manor -W Mansard -W Maple -W Marathon -W Margaret -W Marie -W Marigold -W Marine -W Marion -W Market -W Marlton -W Marquardt -W Marquette -W Marshall -W Martha -W Martin -W Marwood -W Mary -W Marydale -W Marylou -W Marywood -W Mason -W Masonic View -W Mathews -W Matson -W Matthews -W Maude -W Maxwell -W May -W Mayland Villa -W Maynard -W Maypole -W Mc Boal -W Mc Connell -W Mc Lean -W McCarthy -W McClellan -W McCowan -W McDonald -W McGowanwoods -W McKendree -W McKenzie -W McKinley -W McLean -W McMillin -W Meadow -W Meadow Lake -W Meadowland -W Meadowlark -W Meath -W Medicine Lake -W Medill -W Melody -W Melrose -W Memory -W Menna -W Menomonee -W Merchants -W Meredith -W Merle -W Merrick -W Merrion -W Mertz -W Messner -W Metropole -W Meyer -W Miami -W Michael -W Michigan -W Middle -W Middleton -W Midland -W Midway -W Milburn -W Milestone -W Milford -W Mill -W Miller -W Millers -W Millpage -W Millport -W Millsdale -W Milton -W Mineola -W Miner -W Mineral Pond -W Minerva -W Minnehaha -W Minnesota -W Minooka -W Mississippi -W Moffat -W Mohawk -W Monitor -W Monroe -W Montana -W Monterey -W Montgomery -W Monticello -W Montpelier -W Montreal -W Montrose -W Montvale -W Monument -W Moorefield -W Mooseheart -W Moreland -W Morgan -W Morris -W Morse -W Morthland -W Mound -W Moundsview -W Mount -W Mount Harmony -W Mount Ida -W Mount Pleasant -W Mulberry -W Mulford -W Mulloy -W Mulraney -W Mundhank -W Munsell -W Munster -W Myrick -W Myrtle -W N E Shore -W N Frontage -W Nap -W Naperville -W Natalie -W National -W Natoma -W Navajo -W Nebraska -W Neck -W Nelson -W Neptune -W Nettle Creek -W Nevada -W New -W New Britton -W New Monee -W New York -W Newell -W Newport -W Niagara -W Nicholai -W Nichols -W Niles -W Noel -W Nolcrest -W Norfolk -W Normal -W Norman -W Normandy -W North -W North Boo -W North Peotone -W North Pond -W North Shore -W Northcrest -W Northeast Shore -W Northfield -W Northshore -W Norwalk -W Norwich -W Norwood -W Nut Swamp -W Nyack -W Oak -W Oak Glenn -W Oak Hill -W Oak Spring -W Oakdale -W Oakhill -W Oakleaf -W Oakmont -W Oakridge -W Oakton -W Oakwood -W Oasis Service -W Oceanside -W Official -W Offner -W Offutt -W Ogden -W Ohio -W Old Barrington -W Old Country -W Old Elm -W Old Hideway -W Old Mill -W Old Monee -W Old Rand -W Old Ridge -W Old Shakopee -W Oldis -W Olendorf -W Olive -W Omaha -W Oneida -W Onekema -W Ontario -W Onwentsia -W Orange -W Orchard -W Ordnance -W Orlando -W Orme -W Osceola -W Otto -W Overlook -W Owasso -W Owen -W Ox -W Oxford -W Paddock -W Page -W Palace -W Palatine -W Palisade -W Palisades -W Palmer -W Palos -W Pantigo -W Parallel -W Park -W Park Cir -W Park Hills -W Park Place -W Parker -W Parkside -W Parkview -W Partridge -W Pasadena -W Pasadera -W Pasatiempo -W Passaic -W Patapsco -W Patterson -W Patton -W Pauline -W Pawnee -W Peak -W Pearson -W Pebble -W Peddie -W Peiffer -W Pellinore -W Penfield -W Penn -W Pennsylvania -W Penny -W Pennywood -W Pensacola -W Peotone -W Pepper -W Pershing -W Peterson -W Petronella -W Pheasant Trail -W Phillip -W Phillips -W Pier -W Pierce -W Pierrepont -W Pin Oak -W Pine -W Pine Cone -W Pine Hill -W Pinehurst -W Pinewood -W Pioneer Grove -W Pippin -W Pittner -W Plainfield -W Plattner -W Playfield -W Pleasant -W Pleasant View -W Pleasantview -W Plum -W Plymouth -W Point -W Polk -W Polo Trail -W Pond -W Pope -W Poplar -W Porter -W Portland -W Post -W Potomac -W Potter -W Prairie -W Pratt -W Prescott -W Preserve -W Price -W Pricilla -W Primrose -W Princeton -W Prindiville -W Proesel -W Prospect -W Pryor -W Pulaski -W Pullman -W Putnam -W Quackenbush -W Quail -W Quail Hollow -W Quarry -W Quincy -W R Tracy -W Race -W Railroad -W Railway -W Ramapo -W Rampart -W Rand -W Randolph -W Ranick -W Rascher -W Raven -W Ravine -W Rawson Bridge -W Raymond -W Reader -W Red Cloud -W Red Coat -W Red Oak -W Redcliffe -W Reed -W Regan -W Reiter -W Remington -W Renwick -W Research Center -W Revere -W Rfd Checker -W Rice -W Rich -W Richard -W Richmond -W Richton -W Rickard -W Ridge -W Ridgewood -W River -W River Hills -W River Oaks -W Riverbend -W Riverside -W Riverview -W Riviera -W Roanoke -W Rob -W Roberts -W Roberts Ridge -W Robertson -W Robie -W Robin -W Robinson -W Roblyn -W Rockburn Hill -W Rockland -W Rockview -W Rockwood -W Rome -W Ronald -W Rondeau Lake -W Roosevelt -W Root -W Rosalie -W Roscoe -W Rose -W Rosedale -W Rosehill -W Roselawn -W Roselle -W Rosemary -W Rosemont -W Roseview -W Roslyn Park -W Roxbury -W Royal Oak -W Royal Oaks -W Ruby -W Rumsey -W Running Brook -W Runyon -W Russell -W Ryan -W S Boo -W S Owasso -W Saddle -W Saddle Ridge -W Saddle River -W Saint Charles -W Saint Georges -W Saint Joseph -W Salem -W Salisbury -W Saltaire -W Sanders -W Sandpiper -W Sandstone -W Santa Barbara -W Sapphire -W Sargent -W Savannah -W Schaumburg -W Scheffer -W Schick -W Schiller -W School -W Schorsch -W Schreiber -W Schroeder -W Schubert -W Schultz -W Schweitzer -W Schweizer -W Schwerman -W Scott -W Scranton -W Scudder -W Seacrest -W Seaman -W Seamans Neck -W Seil -W Seipp -W Seminary -W Seminole -W Service -W Severn Ridge -W Shadow Lake -W Shady -W Shady Side -W Shakespeare -W Shannon -W Sharp -W Sheffield -W Shelley -W Shepley -W Sheridan -W Sherman -W Sherren -W Sherrill -W Sherwin -W Shiawassie -W Shirley -W Shore -W Shoreline -W Short -W Shryer -W Sibley -W Side -W Sidney -W Silo -W Silver Lake -W Sioux -W Sioux Vista -W Slade -W Slippery Rock -W Slocum Lake -W Smith -W Snelling -W Snelling Service -W Soffel -W Somerset -W South -W South Orange -W Southmeadow -W Spangler -W Spencer -W Spring -W Spring Lake -W Spring Ridge -W Springhill -W Spruce -W Sprucewood -W Suffield -W Sullivan -W Summer -W Summerdale -W Summerset -W Summerview -W Summit -W Sumner -W Sunnyside -W Sunnyslope -W Sunset -W Superior -W Surrey -W Surrey Park -W Susan -W Sussex -W Swain -W Swann -W Sweetwater -W Sycamore -W Sylvan -W Taft -W Tahoe -W Talcott -W Tam O Shanter -W Tamarack -W Tanglewood -W Tantallon -W Taos -W Tartan -W Taylor -W Techny -W Termunde -W Terrace -W Territorial -W Thacker -W Thayer -W Thomas -W Thome -W Thorn -W Thorndale -W Thornridge -W Thornwood -W Three Oaks -W Thure -W Tilden -W Timber -W Timbercreek -W Timberlake -W Timberlea -W Touhy -W Tow Path -W Tower -W Townline -W Trail -W Traube -W Tremont -W Trinity -W Tryon -W Tulip -W Turner -W Turtle -W Tuscarora -W Twin -W Tyler -W Tyson -W Uhler -W Union -W University -W Upland -W Ute -W Vadnais -W Valentine -W Vallette -W Valley -W Van Buren -W Van Emmon -W Van Ness -W Vermont -W Verret -W Veterans -W Victoria -W View -W Viking -W Villa -W Village -W Vine -W Von -W Wabansia -W Wagner -W Wakefield -W Walker -W Wallen -W Walnut -W Walsh -W Walter -W Walton -W Wapella -W Warburton -W Ward -W Warner -W Warren -W Washburne -W Washington -W Water -W Watkins Mill -W Watling -W Watson -W Wauconda -W Waukena -W Waveland -W Waverly -W Wayman -W Wayzata -W Webster -W Weed -W Wellesley -W Wellington -W Wend -W Wendell -W Werberry -W Wesley -W West -W West End -W Western -W Westlake -W Westminster -W Westmoreland -W Westport -W Westward Ho -W Westwood -W Wheatley -W Wheatstone -W Wheeler -W Whispering Hill -W White -W White Pine -W Whitegate -W Whitehall -W Whiting -W Wiesbrook -W Wilcox -W Wildwood -W Wilhelm -W Willard -W Wille -W William -W Williams -W Willow -W Willow Glen -W Wilshire -W Wilson -W Windhill -W Windmill -W Windsor -W Wing -W Wingedfoot -W Winifred -W Winnemac -W Winnetka -W Winnipeg -W Winona -W Wintergreen -W Wirth -W Wisconsin -W Wishing Well -W Witchwood -W Wolfram -W Wood -W Woodbine -W Woodbridge -W Woodcrest -W Woodland -W Woodlawn -W Woodman -W Woodridge -W Woodriver -W Woods -W Woodside -W Woodstock -W Woodvale -W Wordsworth -W Wrentham -W Wright -W Wrightwood -W Wyandot -W Wyngate -W Wyoming -W York -W Yorkshire -W Youngman -W Zarley -W Zoller -W Zoranne -W de Koven -W de Saible -W del Ray -W la Porte -W. Frontage -W. Main -W. Market -WIld -WIlford -WIllow Ridge -WIngadee -Waackaack -Waalwyk -Waarden -Waarem -Waban -Waban Hill -Wabana -Wabansia -Wabash -Wabasha -Wabasso -Wabba -Wabena -Wabeno -Wabler -Waborne -Wachter -Wachtler -Wachusett -Wachusett View -Wachusetts -Wacker -Wackett -Waco -Wacomor -Waconah -Wacota -Wacouta -Wadaga -Wadbrook -Waddell -Wadding -Waddington -Waddling -Waddon -Waddon Alton -Waddon Court -Waddon New -Waddon Park -Wadds -Wade -Wade Hill -Wadebridge -Wadena -Wades -Wadesmill -Wadeson -Wadeville -Wadham -Wadhams -Wadhurst -Wadkins -Wadlands -Wadlands Brook -Wadleigh -Wadleigh Park -Wadley -Wadsworth -Wadsworth Farm -Waelchli -Waesche -Wafer -Wagamon -Wagann -Wagaraw -Wagda -Wagele -Wagenheim -Wagg -Wagga Wagga -Waggaman -Waggon -Waggoners Wells -Waghorn -Wagman -Wagner -Wagner Farm -Wagner Heights -Wagnon -Wagon -Wagon Trail -Wagon Wheel -Wagoner -Wagontire -Wagonwheel -Wagschall -Wagstaff -Wagstaffe -Wagtail -Wah -Wahkiakum -Wahl -Wahler -Wahlstrom -Wahly -Wahneta -Wahnita -Wahoo -Wahroonga -Waiana -Waibel -Waikiki -Waiku -Wailing -Waima -Waimea -Waincliffe -Waine -Wainewright -Wainfleet -Waingels -Wainman -Wainscot -Wainscott -Wainsford -Wainwright -Waiola -Waiport -Wairoa -Wait -Waitaki -Waitara -Waite -Waite Davies -Waithlands -Waithman -Waitkus -Waitovu -Waitt -Waitville -Waiwera -Wake -Wake Field -Wake Forest -Wake Island -Wake Robin -Wakeby -Wakefield -Wakefield Chapel -Wakefield Park -Wakefield Pond -Wakeford -Wakeham -Wakehams Green -Wakehurst -Wakeland -Wakelee -Wakeley -Wakelin -Wakeling -Wakely -Wakeman -Wakemans Hill -Wakemen -Wakemore -Wakering -Wakerobin -Wakes -Wakestone -Wakeview -Wakley -Wakonade -Wakooka -Wakullah -Walace -Walada -Walavista -Walbern -Walberswick -Walbridge -Walbrook -Walbrooke -Walburgh -Walburton -Walbury -Walbutton -Walcorde -Walcot -Walcott -Wald -Waldeberg -Waldeck -Waldemar -Walden -Walden Clubhouse -Walden Farms -Walden Hill -Walden House -Walden Pond -Walden Shores -Walden Square -Waldenhurst -Waldens -Waldens Park -Waldenshaw -Waldenstrom -Walder -Walderslade -Walderton -Waldheim -Walding Field -Waldingfield -Waldman -Waldo -Waldoln -Waldon -Waldor -Waldorf -Waldorf Forest -Waldorn -Waldran -Waldren -Waldrew Heights -Waldroff Farm -Waldrohe -Waldron -Waldstock -Waldwick -Waleco -Walenore -Walerand -Walerga -Wales -Waley -Walford -Walford Park -Walfrid -Walgrave -Walgrove -Walhaven -Walhonding -Waling -Walizer -Walk -Walk Hill -Walk Mill -Walkabout -Walkden -Walkdens -Walke -Walker -Walker Choice -Walker Farm -Walker Fold -Walker Hill -Walker House -Walker Mill -Walker Ranch -Walker Valley -Walker Woods -Walkern -Walkers -Walkers Brook -Walkers Choice -Walkerton -Walkerville -Walkfield -Walkhill -Walkhurst -Walking -Walking Ridge -Walkingfern -Walkley -Walkom -Walkup -Wall -Wall End -Wall Hall -Wall Hill -Wall Park -Wall Pt. -Walla Walla -Wallabout -Wallace -Wallace Creek -Wallace Cross -Wallace Hill -Wallace Manor -Wallacks -Wallaga -Wallage -Wallami -Wallan -Walland -Wallangra -Wallaringa -Wallaroy -Wallasey -Wallbank -Wallberg -Wallbridge -Wallcote -Walldown -Wallea -Wallen -Wallendbeen -Wallenger -Wallens -Waller -Waller Clough -Wallers -Walley -Walleye -Wallflower -Wallgrave -Wallgrove -Wallhead -Wallhouse -Wallice -Wallin -Walling -Wallingford -Wallington -Wallis -Wallis Ann -Wallis Close Holgate -Wallis Oak -Wallmark -Wallmark Lake -Wallner -Wallness -Walloon -Wallowa -Wallpole -Walls -Wallshaw -Wallum Beach -Wallum Lake -Wallum Pond -Wallumatta -Wallwood -Wallwork -Wally -Walman -Walman Buckley -Walmea -Walmer -Walmers -Walmersley -Walmersley Old -Walmesley -Walmgate -Walmort -Walmsley -Walney -Walney Park -Walnut -Walnut Acres -Walnut Bayou -Walnut Blossom -Walnut Branch -Walnut Creek -Walnut Grove -Walnut Haven -Walnut Heights -Walnut Hill -Walnut Hollow -Walnut Knoll -Walnut Meadows -Walnut Oaks -Walnut Park -Walnut Place -Walnut Pointe -Walnut Ridge -Walnut Tree -Walnut Woods -Walnutgrove -Walnuts -Walnutwood -Walona -Walper -Walpert -Walpole -Walport -Walraven -Walray -Walredon -Walrond -Walsall -Walsby -Walsden -Walsh -Walsham -Walshaw -Walshes -Walsingham -Walsworth -Walt -Walt Whitman -Walter -Walter Adamic -Walter Bowie -Walter Breton -Walter Burke -Walter Faunce -Walter Hagen -Walter Hays -Walter Johnson -Walter Morse -Walter Reed -Walter Scott -Walter Thompson -Walter Wheeler -Walter Zimny -Waltermire -Walters -Walters Green -Walters Port -Walters Woods -Walterton -Waltham -Waltham Cross -Waltham Park -Walther -Walthery -Walti -Waltoffer -Walton -Walton Av -Walton Bridge -Walton Hall -Walton Hall Farm -Walton Heath -Walton New -Walton Oaks -Walton Park -Waltons Hall -Waltonway -Waltrip -Waltrous -Waltuma -Waltz -Waltzer -Walworth -Walwyn -Walz -Wamasquid -Wambold -Wambool -Wamburg -Wamesit -Wamesite -Waminda -Wampanaw -Wampanoag -Wampatuck -Wampum -Wampus -Wamsutta -Wanamaker -Wanaque -Wanari -Wanawong -Wanborough -Wanbourne -Wand -Wanda -Wandabury -Wandana -Wandarri -Wandeen -Wandel -Wandell -Wandella -Wanden -Wander -Wanderer -Wandering -Wandering Creek -Wandering Trail -Wanders -Wandle -Wandobah -Wandon -Wandoo -Wandsworth -Wandsworth Ram -Wanegarden -Waner -Waneta -Wangalla -Wanganella -Wanganui -Wangara -Wangee -Wanger -Wangi -Waninga -Wanlass -Wanless -Wanley -Wanlip -Wannalancit -Wannamaker -Wannas -Wanniti -Wannyl -Wano -Wanoosnoc -Wansbeck -Wanser -Wansers -Wansey -Wanskuck -Wansor -Wanstead -Wansunt -Want -Wantage -Wantagh -Wantagh Park -Wanto Shipyard -Wantz -Wanzer -Wanzia -Wapakoneta -Wapella -Wapello -Wapiti -Waple -Waples Mill -Wapoo -Wapoo Hill -Wappanoca -Wappanocca -Wapping -Wapping Dock -Wappo -Wapseys -Wapshott -War Admiral -War Coppice -War Office -War Wagon -Warabin -Waragal -Warana -Waratah -Warawee -Warbank -Warbeck -Warberry -Warbick -Warbler -Warbler Springs -Warbleton -Warborough -Warboys -Warbreck -Warbrook -Warburton -Warburton Bridge -Warburton Oaks -Warbury -Warby -Warcock -Warcoo -Ward -Ward Park -Ward Witty -Wardang -Warde -Wardell -Warden -Wardia -Wardle -Wardlebrook -Wardley -Wardlow -Wardman -Wardour -Wardrobes -Wardrop -Wards -Wards Chapel -Wards Hill -Wards Hill Minster -Wards Point -Wardsbrook -Wardsworth -Wardwell -Ware -Ware Park -Ware Woods -Wareemba -Wareham -Warehams -Warehill -Warehorne -Warehouse -Warehouse Creek -Warehouse Hill -Warehouse Landing -Wareing -Warejee -Warekila -Wareland -Waremead -Warenne -Warepoint -Wares -Warescot -Warewoods -Warf -Warfield -Warford -Wargrave -Wargrove -Warham -Wari -Warialda -Warilda -Warili -Warin -Warinanco Park -Waring -Warington -Warish Hall -Wark -Warkworth -Warlencourt -Warley -Warley Hall -Warlingham -Warlock -Warlow -Warltersville -Warm -Warm Granite -Warm Springs -Warman -Warmbrook -Warmington -Warminster -Warminster Way Clay -Warmke -Warmlake -Warmley -Warmscombe -Warmsley -Warmsprings -Warmstone -Warmwell -Warmwood -Warndon -Warne -Warneford -Warner -Warner Range -Warner Trail -Warners -Warners End -Warnford -Warnham -Warnham Court -Warninglid -Warnke -Warnock -Warooga -Waroon -Warra -Warraba -Warrabina -Warragal -Warrah -Warramill -Warramunga -Warrana -Warrane -Warrangarree -Warrangi -Warrant Officer Bauer -Warraroon -Warraroong -Warratah -Warrawee -Warrawidgee -Warrawong -Warrego -Warrels -Warren -Warren Ball -Warren Bruce -Warren Farm -Warren Gibson -Warren Hagstrom -Warren House -Warren Lodge -Warren Park -Warren Row -Warren Wood -Warrendene -Warrender -Warrener -Warreners -Warrengate -Warrenne -Warrens -Warrens Shawe -Warrensgreen -Warrenton -Warrenville -Warrick -Warriewood -Warrigal -Warrigo -Warrimoo -Warrina -Warriner -Warring -Warringa -Warringah -Warrington -Warrior -Warrior Brook -Warrior Square -Warriston -Warrumbungle -Warrung -Warsaw -Warslow -Wartburg -Warth -Warth Fold -Warthen -Warton -Waruda -Warumbui -Warumbul -Warung -Warwich -Warwick -Warwick House -Warwick Wold -Warwicks Bench -Warwickshire -Warwilla -Warwillah -Wasatch -Wasche -Wasco -Wascussee -Wasdale -Wasdale Head -Waseca -Waselchuk -Wasena -Wash -Wash Brook -Wash Hollow -Washall -Washburn -Washer -Washford -Washford Farm -Washington -Washington Brice -Washington Grove -Washington Park -Washington Rock -Washington Spring -Washington Square -Washington Valley -Washington Woods -Washingtonian -Washingtonn -Washitay -Washneys -Washo -Washoe -Washta Bay -Washtenaw -Washway -Wasilla -Waskow -Wasno -Wason -Wasp -Wasp Green -Wasp Mill -Wass -Wassall -Wassell -Wasson -Wastdale -Waste -Wastwater -Wasylenko -Watburn -Watch -Watch Hill -Watch Tower -Watchbell -Watchers -Watchet -Watchetts -Watchfield -Watchhouse -Watchmoor -Watchogue -Watchouse -Watchtower -Watchung -Watchung Crest -Watchung Heights -Watchwood -Watcombe -Water -Water Brook -Water Dog Lake -Water Edge -Water Elm -Water End -Water Fall -Water Grant -Water Grove -Water Hall -Water Lily -Water Locust -Water Mill -Water Oak -Water Oak Point -Water Pointe -Water Reserve -Water Ridge -Water Row -Water Tank -Water Tower -Water View -Water Works -Waterbank -Waterbeach -Waterberry -Waterbrook -Waterbury -Waterbury Heights -Watercourse -Watercress -Watercroft -Watercure -Waterdale -Waterdell -Waterden -Waterditch -Waterdock -Waterdown -Wateredge -Wateree -Waterend -Waterfall -Waterfall Glen -Waterfield -Waterflower -Waterfold -Waterfoot -Waterford -Waterfowl -Waterfront -Watergate -Watergate Embleton -Watergum -Waterhall -Waterham -Waterhaven -Waterhill -Waterhouse -Wateridge -Wateringbury -Waterlands -Waterlily -Waterline -Waterloo -Waterlot -Waterlow -Waterman -Watermans -Watermead -Watermeadow -Watermeetings -Watermill -Waterous -Waterpark -Waterperry -Waters -Waters Creek -Waters Discovery -Waters Edge -Waters Edge Landing -Waters Hollow -Waters Landing -Waters Meeting -Waters Nook -Waters Park -Waters Point -Watersedge -Watershed -Watersheddings -Waterside -Waterslea -Watersleigh -Watersmead -Waterson -Watersong -Watersplash -Waterston -Waterswallows -Waterton -Watertower -Watertown -Watertrough -Watervale -Waterview -Waterville -Watervliet -Waterway -Waterwheel -Waterwillow -Waterwitch -Waterwood -Waterworks -Waterworld -Waterworth -Watery -Watford -Watford Bridge -Watford High -Wathen -Watkin -Watkins -Watkins Meadow -Watkins Mill -Watkins Park -Watkins Pond -Watkins View -Watkinson -Watkiss -Watling -Watlington -Watmore -Watney -Watnong -Watoquadoc -Watrous -Watsam -Watseka -Watsessing -Watsford -Watson -Watson Farm -Watsonia -Watsonville -Watt -Wattamolla -Wattendon -Watters -Watterson -Watting -Wattle -Wattle Creek -Wattle Grove -Wattles -Wattleton -Wattling -Watton -Watts -Watts Branch -Watts Mine -Watts Palace -Waubansee -Waubansie -Wauboksee -Waubonsee -Waubonsee Circle -Waubonsie -Waucantuck -Wauchope -Wauconda -Waudman -Waugh -Waugh Chapel -Waughaw -Waugoola -Waukeena -Waukegan -Waukena -Waukesha -Waukon -Wauluds Bank -Waumbeck -Wauponsee -Wausau -Waushacum -Waushakum -Wavaney -Wave -Wave Crest -Wavecrest -Wavehill -Waveland -Wavell -Wavemey -Wavendene -Wavendon -Waveney -Waverleigh -Waverley -Waverley Oaks -Waverly -Waverly Crossing -Waverly Park -Waverton -Wavertree -Wavy -Wawapek -Wawecus -Wawela -Wawona -Waxberg -Waxen -Waxon -Waxpool -Waxwell -Waxwing -Way -Way Lene -Way Points -Wayaawi -Waybridge -Wayburn -Waybury -Waycott -Waycross -Waydale -Waydell -Waye -Wayella -Wayfair -Wayfarer -Wayfarers -Wayfaring -Wayfield -Wayford -Waygrove -Wayjack -Wayland -Wayland Hills -Waylen -Wayles -Wayletts -Waylon -Waylor -Wayman -Waymond -Wayne -Wayne Gibson -Wayne Oaks -Wayneflete Tower -Waynelete -Wayneridge -Waynesburg -Waynesford -Wayneswood -Waynewood -Waynflete -Waypark -Wayre -Wayridge -Wayside -Wayside Inn -Wayson -Wayte -Waytemore -Wayvern -Wayville -Wayward -Waywood -Wayword -WayzAta -Wayzata -Wazir -Wd Prop. Off Pleasant -Weagle Farm -Weald -Weald Bridge -Weald Hall -Weald View -Wealden -Wealdstone -Wealdview -Weale -Wealtheasy -Weambie -Weant -Wear -Weardale -Wearden -Weardley -Weare -Wearimus -Wearish -Wearne -Wearside -Weart -Weasel -Weaste -Weather Hill -Weather Service -Weather Vane -Weatherbee -Weatherby -Weatherhill -Weatherington -Weatherley -Weatherly -Weathers -Weathersfield -Weatherstone -Weathervane -Weatherwood -Weaver -Weaver Lake -Weaver Lk -Weaverham -Weaverhead -Weavering -Weaverly -Weavers -Weavers Rock -Weaverthorpe -Weaving -Web -Webb -Webb Brook -Webb Canyon -Webb Hill -Webbacowitt -Webber -Webber Hills -Webbs -Webbscroft -Webcowet -Webdale -Weber -Weberfield -Webford -Webley -Webro -Webster -Webster Creek -Webster Valley -Websters -Weddell -Wedderburn -Weddle -Wedel -Wedeman -Wedemeyer -Weden -Wedge -Wedge Pond -Wedge Wood -Wedgedale -Wedgefield -Wedgemere -Wedgeport -Wedgewood -Wedgwood -Wedhurst -Wedmore -Wednesbury -Wedo -Wedow -Wee -Wee Burn -Weech -Weed -Weedington -Weedon -Weeds Wood -Weehawken -Weeks -Weel -Weelsby Park -Weemala -Weemalah -Weems -Weeney -Weep Birch -Weeping Cherry -Weeping Willow -Weepinggate -Weequahic -Weequahic Park -Weerona -Weeroona -Weetamoe -Weetawa -Weetawaa -Weeth -Weetman -Weeton -Weetucket -Weetwood -Weetwood Mill -Weetwood Park -Wegat -Wegg -Wegman -Wegworth -Wehlow -Wehner -Wehrheim -Wehrli -Wehrman -Weibel -Weible -Weich -Weichert -Weide -Weiden -Weider -Weidner -Weigands -Weigel -Weighhouse -Weighton -Weigum -Weikert -Weil -Weiland -Weill -Weimar -Weimer -Weinhold -Weinmann -Weinmanns -Weinschel -Weir -Weir Farm -Weir Hall -Weir Hill -Weir Pond -Weir River -Weirberly -Weirdale -Weirfield -Weirich -Weirs -Weirupp -Weirwood -Weis -Weisch -Weise -Weisiger -Weisman -Weiss -Weitz -Wekiva -Welaka -Welbeck -Welborn -Welbourne Woods -Welburn -Welbury -Welby -Welch -Welch Creek -Welch Hill -Welches -Welclose -Welcomb -Welcome -Welcome Home -Welcomes -Welcomeway -Welcroft -Weld -Weld Gilder -Weld Hill -Weldale -Welden -Welder -Welders -Weldin -Welding -Weldon -Weldwood -Welesley -Welfare -Welfield -Welfleet -Welford -Welgate -Welham -Welham Green -Welhouse -Well -Well Bank -Well End -Well Hall -Well Head -Well Hill -Well House -Well Penn -Well Place -Well Spring -Well hall -Wella -Wellacre -Welland -Wellbank -Wellbeck -Wellbrock -Wellbrook -Wellclose -Wellcome -Wellcroft -Welle -Weller -Wellerburn -Welles -Wellesbourne -Wellesey -Wellesley -Welley -Wellfield -Wellfit -Wellfleet -Wellford -Wellgarth -Wellgate -Wellham -Wellhouse -Welling -Welling High -Welling Way Sherwood -Wellingford -Wellingham -Wellings -Wellington -Wellington Branch -Wellington Bridge -Wellington Commons -Wellington Hill -Wellington Park -Wellington Ranch -Wellington Town -Wellington Woods -Wellingtonia -Wellman -Wellmeade -Wellmeadow -Wellner -Wells -Wells Fargo -Wells House -Wellsboro -Wellsey -Wellsley -Wellsmere -Wellstead -Wellstone -Wellswood -Wellumba -Wellwinch -Wellwood -Wellworth -Wellyhole -Wellyn -Welney -Welsford -Welsh -Welshire -Welshmans -Welshpool -Welsley -Welter -Weltham -Weltje -Weltmore -Welton -Welty -Welwyn -Welwyn By Pass -Welzel -Wembley -Wembley High -Wembley Hill -Wembley Park -Wembly -Wemborough -Wembrough -Wembury -Wemple -Wemyss -Wenberg -Wenborough -Wenc -Wendal -Wendall -Wendell -Wendell Holmes -Wendell Howard -Wendeller -Wenden -Wendhurst -Wendley -Wendling -Wendon -Wendover -Wendover Hills -Wendt -Wendy -Wendy Hope -Wendy Ridge -Wengate -Wengeo -Wenham -Wenholz -Wenk -Wenlock -Wenlocks -Wenlow -Wenman -Wenmore -Wenmoth -Wennamacher -Wennerberg -Wennergreen -Wennington -Wenona -Wenonah -Wensley -Wensleydale -Wensum -Wentbridge -Wente -Wenthorpe -Wentick -Wentland -Wentlock -Wenton -Wentwood -Wentworh -Wentworth -Wentworth Park -Wentz -Wentzell -Wenvoe -Wenwood -Wenz -Wenzel -Wenzell -Weona -Weonga -Werbe -Werch -Werden -Werimus -Werimus Brook -Weringa -Werline -Wermes -Wernbrook -Werndee -Werner -Werneth -Werneth Hall -Werneth Low -Werombi -Werona -Werrington -Wert -Werter -Werth -Wertz -Wesby -Wesch -Wesche -Wescoat -Wescoe Hill -Wescot -Wescott -Wescroft -Wesemann -Weser -Wesgate -Wesglen -Weshaven -Weslake -Wesleigh -Wesley -Wesley Commons -Wesley School -Wesley Tyler -Wesley White -Wesleyan -Wesmacott -Wesmere -Wesmere Lakes -Wesmond -Wesmur -Wespark -Wessagusett -Wessco -Wessen -Wessenden Head -Wessex -Wessington -Wesskum Wood -Wessling -Wesson -West -West A -West Access -West Acre -West Acres -West Acton -West Adams -West Agua Caliente -West Ahwanee -West Airmount -West Alameda -West Albert -West Aldea -West Alden -West Aldridge -West Algonquin -West Allendale -West Alley -West Alma -West Aloha -West American Canyon -West Anderson -West Angela -West Ann -West Anza -West Arbor -West Arbour -West Area -West Argand -West Arm -West Armour -West Arthington -West Ascot -West Ash -West Ashland -West Atherton -West Atlantic -West Augusta -West Avalon -West Avondale -West B -West Bacon -West Bagwell -West Balsam -West Baltimore -West Banbury -West Bank -West Bare Hill -West Barham -West Barn -West Barnes -West Barrett -West Barry -West Baxter -West Bay -West Beach -West Beacon -West Beamer -West Beech -West Beeches -West Bel Mar -West Belcher -West Belle Plaine -West Bellevue -West Bellflower -West Benjamin Holt -West Berlin -West Berry -West Berteau -West Bertona -West Birch -West Bird -West Bissell -West Blackhawk -West Blaine -West Blithedale -West Blue Lake -West Boardwalk -West Bolivar -West Bolton -West Bond -West Bonita -West Border -West Bostian -West Boston -West Botany -West Bothwell -West Boundary -West Bowers -West Boyd -West Boylston -West Bradstreet -West Branch -West Brannan Island -West Bridgewater -West Briggsmore -West Brighton -West Broad -West Broadmoor -West Broadway -West Brodview -West Brokaw -West Brook -West Brooke -West Brookline -West Brookwood -West Bruns -West Brush Hill -West Brygger -West Buchanan -West Burnham -West Burns Valley -West Burnside -West Busk -West Byron -West C -West C Meyer -West Cabrini -West Calaveras -West California -West Camden -West Camino -West Camino Diablo -West Campbell -West Campus -West Canton -West Canyon -West Capitol -West Carboy -West Cardinal -West Carey -West Caroline -West Carolyn -West Carr -West Carriage -West Carroll -West Casa Linda -West Castlewood -West Caswell -West Catino -West Cavendish -West Cavour -West Cedar -West Center -West Central -West Channel -West Chanslor -West Chapel -West Chardon -West Charleston -West Charlotte -West Cherry -West Chester -West Chestnut -West Chevin -West Chicago -West Chiles -West Chiltington -West Church -West Cintura -West Clark -West Clay -West Cliff -West Cloudy -West Clover -West Colfax -West Colony -West Comfort -West Commercial -West Common -West Comstock -West Concord -West Congress -West Cornelia -West Cortez -West Cotati -West Cottage -West Country Club -West Court -West Cove -West Covell -West Cramer -West Creek -West Cremona -West Crescent -West Crockett -West Cromwell -West Crook -West Crooked Hill -West Cross -West Cullom -West Curtis -West Cutting -West Cypress -West D -West Dalton -West Dam -West Dana -West Danbury -West Dane -West Dares Beach -West Day -West Dayton -West Dean -West Dedham -West Deerhaven -West Delano -West Dempster -West Dene -West Denver -West Deodara -West Derby -West Diamond -West Diane -West Diehl -West Dike -West Division -West Don Pedro -West Douglas -West Dover -West Downs -West Duane -West Dunaweal -West Dundee -West Dunne -West Dupont -West E -West Eagle -West Eagle Lake -West Eaglewood -West Earleigh Heights -West Eaton -West Eden -West Edith -West Edmonston -West Edmundson -West Eight Mile -West Eighth -West Eleventh -West Elkhorn -West Ella -West Elliot -West Elm -West Elmore -West Elverta -West Emerson -West End -West End Farm -West Englewood -West Entwistle -West Essex -West Estates -West Estudillo -West Etruria -West Euclid -West Eugenie -West Evelyn -West Evergreen -West Ewing -West F -West Fabyan -West Fairview -West Falkland -West Fargo -West Farm -West Farms -West Federal -West Fedora -West Ferdinand -West Ferndale -West Ferry -West Field -West Fifth -West First -West Flexford -West Flora -West Florentia -West Fordham -West Forest -West Forest Lake -West Forrest -West Fort -West Foster -West Fountain -West Fourth -West Foxwood -West Frances -West Franklin -West Frederick -West Fremont -West Front -West Fulkerth -West Fullerton -West Fulton -West Fyffe -West G -West Gaffery -West Galer -West Garfield -West Gate -West Geary -West Geneva -West George -West Gertrude -West Gibson -West Gilardy -West Gilbert -West Gish -West Glen -West Glencannon -West Glenmont -West Go Wanda -West Golf -West Golfview -West Gowe -West Grace -West Grand -West Grange -West Grant -West Grant Line -West Grantline -West Grayson -West Green -West Greenbriar -West Greenthorn -West Groton -West Grove -West Grover -West Gun Hill -West H -West Hacienda -West Halkin -West Halleck -West Ham -West Hamilton -West Hammer -West Hampton -West Hancock -West Hangar -West Hanningfield -West Harbor -West Harder -West Harding -West Harley -West Harney -West Harris -West Harrison -West Harting -West Harvard -West Hatch -West Haven -West Hawley -West Hawthorne -West Hayden Lake -West Hayes -West Hays -West Hazelton -West Head -West Health Sciences -West Hearn -West Heath -West Hedding -West Hendy -West Hensley -West Hidden Hills -West Higgins -West High -West Highland -West Hilderbrand -West Hill -West Hill Beaumont -West Hill Beaumont -West Hill Dam -West Hillgrove -West Hills -West Hillsdale -West Hillside -West Hilltop -West Hilton -West Hirsch -West Hoathly -West Holly -West Home -West Homestead -West Hookston -West Hornet -West Hospital -West House -West Houston -West Howard -West Howe -West Howell -West Hubbard -West Humboldt -West Hunter -West Hurd -West Hutchinson -West Hyde -West I -West Ike Crow -West Imola -West India -West India Dock -West Ingram -West Inman -West Interurban -West Iowa -West Iris -West Irving Park -West Island -West Ivy -West J -West Jack London -West Jackson -West Jacobs -West Jahant -West Jamaica -West James -West Jameson -West Jamestown -West Jasper -West Java -West Jefferson -West Jenness -West Jennifer -West Jersey -West Joan -West Joaquin -West John -West Joliet -West Juana -West Julian -West Juniper -West Kavanagh -West Keating -West Kelly -West Kelso -West Kendal -West Kendall -West Kenner -West Kenneth -West Kent -West Kentucky -West Kersey -West Keslinger -West Kettleman -West Keyes -West Keystone -West Kim -West Kingdon -West Kingsbridge -West Kingston School -West Kinzie -West Kirchhoff -West Klein -West Knickerbocker -West Knoll -West Kohler -West L -West LaSalle -West Lafayette -West Lagoon -West Lake -West Lake Kayak -West Lakeshore -West Lanark -West Lancaster County -West Land Park -West Lanram -West Larch -West Las Animas -West Las Palmas -West Las Positas -West Latimer -West Lauffer -West Laurel -West Lawn -West Lawrence -West Lawton -West Le Moyne -West Lea -West Leach -West Lehman -West Leland -West Leonard -West Leslie -West Lewis -West Liberty -West Lincoln -West Linden -West Linden Church -West Lindsay -West Link -West Linne -West Live Oak -West Livingston -West Livorna -West Lockeford -West Lockport -West Locust -West Lodge -West Lodi -West Logan -West Lomond -West London -West Longview -West Lonnquist -West Loop -West Lorenzen -West Loretta -West Los Felis -West Lost Lake -West Louise -West Lowell -West Lower Jones -West Lucas -West Lucerne -West Lupton -West Lynch -West Lynda -West Lynn -West Mac Donald -West MacArthur -West Macarthur -West Madill -West Madison -West Magnolia -West Main -West Mall -West Mallory -West Manchester -West Manor -West Mansell -West Maple -West March -West Mare -West Mariposa -West Maritime -West Market -West Marshall -West Martha -West Mather Field -West Matheson -West Mathews -West Maude -West Mayes -West Mayfair -West Mc Donald -West Mc Graw -West Mc Kenzie -West Mc Laren -West McKinley -West Meadow -West Meadows -West Medill -West Meeker -West Mel -West Melrose -West Mendocino -West Mercer -West Michigan -West Middle -West Middle School -West Middlefield -West Milgeo -West Mill -West Millbury -West Milton -West Miner -West Miramonte -West Mission -West Modoc -West Moffett Park -West Mohelumne -West Moltke -West Monee Manhattan -West Monroe -West Montara -West Monte Vista -West Monterey -West Montesanto -West Montgomery -West Monticello -West Montrose -West Moreland -West Morrison -West Morton -West Mosley -West Mount Diablo -West Mountain -West Mozart -West Muller -West Myrtle -West N -West Napa -West Naughton -West Nauraushaun -West Neal -West Nelson -West Neptune -West Nettle Tree -West Neugerbauer -West Nevin -West Newell -West Newlands -West Newport -West Newton -West Nickerson -West Ninth -West Noble -West North -West Norwalk -West Norwich -West Noyes -West Nursery -West Oak -West Oak Knoll -West Oakdale -West Oakland -West Oaks -West Oakton -West Oakwood -West Oberlin -West Ogden -West Ohio -West Olive -West Olivet -West Ontario -West Orange -West Orangeburg -West Orchard -West Oriskany -West Ott -West Ox -West Pacific -West Palatine -West Palmer -West Panorama -West Pardee -West Parish -West Park -West Parker -West Parr -West Partridge -West Passaic -West Patapsco -West Patrol -West Patterson -West Patterson Pass -West Pauling -West Payran -West Pearl -West Peder -West Peltier -West Penn -West Pensacola -West Peregrine -West Perimeter -West Pescadero -West Pickering -West Pickwick -West Pine -West Pine Haven -West Plain -West Platti -West Plumeria -West Plymouth -West Point -West Pointe -West Polk -West Pond -West Poplar -West Portola -West Poultry -West Prahser -West Prospect -West Prosper -West Pueblo -West Q -West Quay -West Quincy -West Railroad -West Raleigh -West Ramapo -West Ranch -West Rand -West Randolph -West Ravensbury -West Raye -West Red Line -West Redwood -West Reed -West Remington -West Renee -West Republican -West Revere -West Rianda -West Richmond -West Ridge -West Ridge View -West Rincon -West Rindge -West Ripon -West River -West River Grove -West Riverside -West Riverview -West Riviera -West Robbie -West Robert -West Robinhood -West Robles -West Rockport -West Rockwell -West Rode -West Roosevelt -West Rose -West Rosemary -West Rosseter -West Roxbury -West Roy -West Royd -West Ruby -West Ruby Hill -West Ruffner -West Rumble -West Running Brook -West Rusty -West Rutherford -West Saddle River -West Saint Andrews -West Saint Charles -West Saint James -West Saint John -West Salt Creek -West Sam -West San Carlos -West San Marco -West San Martin -West San Salvador -West San Tomas Aquino -West Sanches -West Sandralee -West Santa Clara -West Santa Fe -West Santa Inez -West Sargent -West Sausal -West Savona -West Scenic -West Schaumburg -West School -West Schulte -West Seaview -West Second -West Seegers -West Selby -West Selden -West Semple -West Service -West Seventh -West Sexton -West Shadowgraph -West Shell -West Sheridan -West Shore -West Shoreline -West Shoreview -West Shorewood -West Shure -West Side -West Sierra -West Sigourney -West Sigwalt -West Siino -West Silver Eagle -West Sixth -West Slaithwaite -West Smith -West Sneed -West Soda Rock -West Soffel -West Sonoma -West Sonora -West Sorrento -West South -West Southwood -West Spain -West Spring -West Springfield -West Spruce -West Squantum -West Sst -West Sugar -West Summit -West Sunnyoaks -West Sunnyside -West Sunset -West Surf -West Sutter -West Sutton -West Swain -West Tapley -West Taron -West Tasman -West Taylor -West Telegraph -West Temperence -West Temple -West Tennys -West Tennyson -West Tenter -West Tenth -West Terminous -West Terra Cotta -West Texas -West Thames -West Third -West Thomas -West Thomson -West Thorndale -West Thurman -West Ticonderoga -West Tilden -West Tokay -West Toleri -West Tower -West Tregallas -West Tremlett -West Tremont -West Trident -West Trimble -West Trinity -West Tulare -West Turner -West Twitchell Island -West U -West Undine -West Union -West University -West Upsala -West Vale -West Valley -West Van Buren -West Vanston -West Vein -West Verde -West Victoria -West View -West Vine Hill -West Virginia -West Vomac -West Wacker -West Wahington -West Walbrook -West Walker Landing -West Walnut -West Walnut Grove -West Warren -West Washington -West Water -West Watmaugh -West Waveland -West Weber -West Weddell -West Wellington -West Wendell -West West -West West la Frontage -West Wetmore -West Wheeler -West White Oak -West Whitmore -West Whittier -West Wilchard -West Wilderness Lakes -West William -West Willow -West Willow Creek -West Wilson -West Wimbolton -West Wind -West Winds -West Winesap -West Wing -West Winton -West Wise -West Wood -West Woodbridge -West Woods -West Worth -West Wright -West Wyandotte -West Wycombe -West Wycombe Hill -West Wyoming -West Yoke -West Yokuts -West Yorkshire -West Younger -West Zayante -West Zeering -West el Camino -West el Campo -West el Dorado -West el Rose -West la Chiquita -West la Loma -West la Mesa -Westacott -Westacre -Westacres -Westage -Westaire -Westall -Westamerica -Westanley -Westar -Westaway -Westbank -Westbard -Westbay -Westbeech -Westbend -Westbere -Westberg -Westberry -Westborder -Westboro -Westboro Hospital -Westborough -Westbourne -Westbourne Park -Westbourne Terrace -Westbrae -Westbranch -Westbreeze -Westbridge -Westbrook -Westbrook Mill -Westbrooke -Westbury -Westbury Hicksville -Westcamp -Westcar -Westchester -Westchester Park -Westchester View -Westcliff -Westcliff Park -Westcliffe -Westcombe -Westcombe Park -Westcote -Westcott -Westcourt -Westcroft -Westdale -Westdean -Westdel -Wested -Westedge -Westell -Westend -Westentry -Wester -Wester Hill -Westerbeke Ranch -Westerdale -Westerfield -Westergate -Westerham -Westerhill -Westerhoff -Westerholt -Westerland -Westerleigh -Westerly -Western -Western Elms -Western Farms Ranch -Western Gailes -Western Hills -Western Link -Western Mine -Western Oak -Western Park -Western Perimeter -Western Perimiter -Western Shore -Western View -Westers -Westerton -Westervelt -Westfarm -Westfax -Westferry -Westfield -Westfield Park -Westfield Sole -Westfields -Westford -Westgate -Westgate Hill -Westgate Valley -Westglen -Westglow -Westgrove -Westhall -Westhampton -Westhatch -Westhaven -Westhead -Westhelp -Westhill -Westhills -Westholme -Westhorpe -Westhoughton -Westhulme -Westhumble -Westhurst -Westin -Westinghouse -Westings -Westknoll -Westlake -Westland -Westland Farm -Westland Ranch -Westlands -Westlawn -Westlea -Westleigh -Westley -Westline -Westlock -Westlund -Westly Garden -Westmacott -Westmaher -Westman -Westmead -Westmeadow -Westmeath -Westmere -Westmill -Westminister -Westminster -Westminster Marsham -Westminster Bridge -Westminster Hill -Westmont -Westmoor -Westmoorland -Westmora -Westmore -Westmore Grove -Westmoreland -Westmorland -Westmount -Westnedge -Westoe -Weston -Weston Bay -Weston Green -Weston Hill -Weston Hills -Weston Ridge -Westonbirt -Westoning -Westons Mill -Westospect -Westover -Westow -Westpark -Westphalia -Westphall -Westpointe -Westpole -Westport -Westporter -Westray -Westree -Westridge -Westringa -Westringia -Westrow -Westshire -Westshore -Westside -Westside Park -Weststar -Westthorpe -Westup -Westvale -Westvalley -Westview -Westview Forest -Westville -Westward -Westwater Point -Westway -Westwell -Westwich -Westwind -Westwood -Westwood Center -Westwood Forest -Westwood Glen -Westwood Hills -Westwood Park -Westwoods -Westy -Wet Gate -Wetheral -Wetherall -Wetherbee -Wetherbees -Wetherburn -Wetherby -Wetherden -Wethered -Wetherell -Wetherfield -Wetherill -Wetherole -Wethersfield -Wethington -Wethral -Wetlands -Wetmore -Wetumpka -Wetzel -Wewak -Wewanna -Wewers -Wexford -Wexford Heights -Wexford Hts -Wexhall -Wexham -Wexham Park -Wey -Wey Gates -Weyand -Weyanoke -Weyant -Weybosset -Weybossett -Weybourne -Weybridge -Weybrook -Weyburn -Weycombe -Weydon -Weydon Farm -Weydon Hill -Weydown -Weyerhaeuser -Weyham -Weyhill -Weyland -Weylea -Weyman -Weymanor -Weymisset -Weymoth -Weymouth -Weymouth Hill -Weynton -Weyrauch -Weyraugh -Weyside -Weystone -Weythorne -Weywood -Whack House -Whadcoat -Whaddon -Whalans -Whale -Whale Cove -Whaleboat -Whalebone -Whalebone Gulch -Whalen -Whaleneck -Whaler -Whalers Cove -Whales -Whaleship -Whalewood -Whaley -Whaling -Whalley -Whalom -Whalon -Wham -Wham Bar -Whann -Wharf -Wharfdale -Wharfe -Wharfedale -Wharff -Wharfside -Wharncliffe -Wharton -Whatcom -Whateley -Whately -Whatley -Whatlington -Whatman -Whatmore -Whays -Wheat -Wheat Fall -Wheatash -Wheatberry -Wheatfield -Wheatgrain -Wheathampstead -Wheathelds -Wheathill -Wheatland -Wheatland Farms -Wheatlands -Wheatleigh -Wheatley -Wheatley Terrace -Wheaton -Wheaton Hills -Wheaton Oaks -Wheatridge -Wheatsheaf -Wheatstone -Wheatwheel -Whedbee -Wheedon -Wheel Farm -Wheel House -Wheelbarrow -Wheeldon -Wheeler -Wheeler Hills -Wheeler Knoll -Wheeler Peak -Wheeler Point -Wheelhouse -Wheeling -Wheelock -Wheelock Ridge -Wheelon -Wheelwright -Wheelwright Park -Wheelwrights -Whelan -Whelden -Wheldon -Wheler -Wheller -Whellock -Whempstead -Whenman -Whernside -Wherry -Wherwell -Whetmorhurst -Whetsted -Whetstone -Whetstone Hill -Whewell -Wheystone -Whibley -Whichcote -Whichita -Whidborne -Whidden -Whielden -Whiffle Tree -Whiffletree -Whig -Whigam -Whilaway -Whiley -Whiltshire -Whimberry -Whimbrel -Whimsey -Whinberry -Whinbush -Whincover -Whinfell -Whingate -Whingate Tong -Whingate Wortley -Whingate near Wortley -Whinneys -Whins -Whinslee -Whinyates -Whip -Whip Hill -Whip Owill -Whipoorwill -Whippany -Whippendell -Whippet -Whipple -Whipples -Whippletree -Whippoorwill -Whipporwill -Whipporwill Valley -Whipps Cross -Whipps Cross Wood -Whipsnade -Whirlaway -Whirley -Whiskey -Whiskey Bottom -Whiskey Creek -Whiskey Flat -Whiskey Hill -Whiskey Run -Whiskey Slough -Whiskin -Whisman Park -Whisper -Whisper Creek -Whisper Glen -Whisper Hill -Whisper Oaks -Whisper Willow -Whispering -Whispering Bay -Whispering Brook -Whispering Creek -Whispering Fields -Whispering Hill -Whispering Hills -Whispering Lake -Whispering Leaves -Whispering Oak -Whispering Oaks -Whispering Palms -Whispering Pine -Whispering Pines -Whispering River -Whispering Trails -Whispering Tree -Whispering Willow -Whispering Willows -Whispering Wind -Whispering Winds -Whispering Wood -Whispering Woods -Whisperwillow -Whisperwood -Whisperwood Glen -Whist -Whisterfield -Whistlepost -Whistler -Whistlerhill -Whistlers -Whistley Mill -Whistling Duck -Whistling Pine -Whistling Valley -Whiston -Whit -Whitacre -Whitaker -Whitaker Bluff -Whitall -Whitbarrow -Whitbourne -Whitbread -Whitbreads Farm -Whitburn -Whitby -Whitchurch -Whitclem -Whitcomb -White -White Acre -White Acres -White Ash -White Bagley -White Bank -White Barn -White Barns -White Beach -White Bear -White Beech -White Beeches -White Birch -White Bread -White Bridge -White Butts -White Carr -White Cedar -White Chapel -White Chappel -White Chimney -White Chimneys -White Church -White City -White Cliffs -White Cloud -White Conduit -White Cornus -White Cottage -White Creek -White Deer -White Dove -White Duck -White Eagle -White Elm -White Feather -White Fence -White Ferry -White Fir -White Flint -White Forge -White Fox -White Gate -White Gates -White Granite -White Ground -White Hall -White Hart -White Hart Greenford -White Haven -White Hawk -White Heart -White Heron -White Hill -White Hill Fire -White Holme -White Horn -White Horse -White House -White House Canyon -White Ibis -White Island -White Kennett -White Knights -White Knowle -White Laith -White Laithe -White Lee -White Leghorn Farm -White Lion -White Lyons -White Marsh Park -White Moss -White Mountain -White Oak -White Oak Ridge -White Oak Tree -White Oaks -White Owl -White Pine -White Pine Knoll -White Pines -White Plains -White Pond -White Post -White Ridge -White Rock -White Rock Spring -White Rose -White Rose Access -White Saddle -White Sands -White Space -White Spots -White Sulphur Spring -White Surf -White Swan -White Tail -White Tailed -White Thorn -White Water -White Willow -White Wing -Whiteacre -Whitebank -Whitebark -Whitebarn -Whitebarns -Whitebeam -Whitebick -Whitebirch -Whitebridge -Whitebrook -Whitebroom -Whitecap -Whitecarr -Whitechapel -Whitechapel High -Whitecliff -Whitecliffe -Whitecombe -Whitecote -Whitecroft -Whitecroft Heath -Whitecross -Whited -Whitedown -Whitefence -Whitefield -Whitefields -Whitefir -Whiteford -Whitefriars -Whitefur -Whitegate -Whitegates -Whitehall -Whitehall Beach -Whitehall Farm -Whitehall Park -Whitehall Plains -Whitehave -Whitehaven -Whitehead -Whiteheads -Whiteheath -Whitehill -Whitehills -Whiteholm -Whiteholme -Whitehorse -Whitehough Head -Whitehouse -Whitehurst -Whitekirk -Whiteknights -Whitelake -Whiteland -Whitelands -Whitelaw -Whitelawn -Whitelea -Whiteleaf -Whitelegg -Whitelegge -Whiteley -Whiteley Croft -Whitelock -Whitelow -Whitely -Whiteman -Whitemarsh -Whitemore -Whitenack -Whiteoak -Whiteoaks -Whitepine -Whitepit -Whitepost -Whitepost Wood -Whiterim -Whiteriver -Whiterock -Whiterose -Whites -Whites Cove -Whites Creek -Whites Ferry -Whites Landing -Whites Pond -Whites Ridge -Whitesail -Whitesand -Whitesands -Whitesell -Whiteside -Whitesides -Whitesmead -Whitesmith -Whitespruce -Whitestile -Whitestone -Whitesurf -Whitetail -Whitethorn -Whitethorne -Whitetire -Whitewall -Whitewater -Whiteway -Whitewaybottom -Whitewebbs -Whitewell -Whitewillow -Whitewood -Whitfeld -Whitfield -Whitfield Chapel -Whitford -Whitgift -Whitham -Whithouse -Whitin -Whiting -Whiting Beach -Whitingham -Whitings -Whitington -Whitins -Whitkirk -Whitla -Whitlam -Whitland -Whitlars -Whitlatch -Whitlers Creek -Whitley -Whitley Park -Whitley Wood -Whitling -Whitlock -Whitlowe -Whitman -Whitman Ridge -Whitmarsh -Whitmer -Whitmoor -Whitmoor Vale -Whitmor -Whitmore -Whitmore Brook -Whitmore Vale -Whitnall -Whitnell -Whitney -Whitney Pond -Whitney Tavern -Whitneys Landing -Whiton -Whitridge -Whits -Whits End -Whitsbury -Whitsell -Whitsett -Whitson -Whitstable -Whitstone -Whitta -Whittaker -Whittall -Whitteck -Whittell -Whittemore -Whitten -Whittham -Whittier -Whitting -Whittingham -Whittingstall -Whittington -Whittle -Whittles -Whittlesey -Whittman -Whittney -Whittock -Whitton -Whitton Dene Whitton -Whitton Dene Whitton -Whitton Gladstone -Whitton Lincoln -Whitton Manor -Whittredge -Whitwell -Whitwood -Whitwood Common -Whitworth -Whiznan -WhizzGo Tariff -Whli -Wholfords -Whomerley -Whomsoever -Whoolden -Whopshott -Whorlong -Whorlton -Whortleberry -Whowell -Why Worry -Whyman -Whynstones -Whyse -Whyte -Whyte Park -Whytecliff -Whyteladyes -Whyteleaf -Whyteleafe -Whyteville -Whytingham -Wiak -Wianamatta -Wianno -Wibird -Wiblen -Wicasse -Wichard -Wichbrook -Wichern -Wichett -Wichita -Wichitaw -Wichkam -Wichman -Wick -Wick Beech -Wick Farm -Wick Hill -Wicke -Wickell -Wicken -Wickenby -Wickenden -Wickens -Wickentree -Wicker -Wicker Park -Wickersham -Wickersley -Wicket -Wickett -Wickford -Wickham -Wickham Bishops -Wickhurst -Wicklands -Wickley -Wickliffe -Wicklow -Wicklund -Wicks -Wickshire -Wickson -Wickstead -Wickwood -Wicomico -Wicomoco -Widberg -Widbrook -Widcombe -Widden -Widdenham -Widdicombe -Widdin -Widdington -Widdop -Wide -Widebranch -Widecroft -Widegate -Widemere -Wideview -Widewater -Widford -Widgeon -Widger -Widget -Widgiewa -Widicombe -Widley -Widmer -Widmere -Widmore -Widmore Lodge -Widnell -Widnes -Widows Mite -Wieboldt -Wiebusch -Wieczorkowski -Wiedemann -Wiedner -Wiegman -Wiehle -Wieland -Wield -Wierimus -Wiers -Wierton -Wiesbrock -Wiesbrook -Wiese -Wieuca -Wigan -Wigans -Wigborough -Wigens -Wigeon -Wiget -Wiggenhall -Wiggie -Wiggin -Wiggington -Wiggins -Wigginton -Wiggles -Wigglesworth -Wiggs -Wight -Wight Farm -Wightman -Wigle -Wigley -Wigley Bush -Wigmore -Wigram -Wigsby -Wigsey -Wigshaw -Wigston -Wigton -Wigwam -Wigwam Hill -Wihtred -Wike -Wike Ridge -Wikiup -Wikiup Meadows -Wilandra -Wilaneta -Wilart -Wilbanks -Wilbeam -Wilber -Wilberforce -Wilbert -Wilberta -Wilbr -Wilbraham -Wilbrandt -Wilbung -Wilbur -Wilburdale -Wilburn -Wilburne -Wilbury -Wilbury Hills -Wilby -Wilcarra -Wilco -Wilcock -Wilcot -Wilcott -Wilcox -Wilcoxen -Wilcoxson -Wilcutt -Wild -Wild Acre -Wild Acres -Wild Ash -Wild Bees -Wild Briar -Wild Canyon -Wild Cherry -Wild Cranberry -Wild Creek -Wild Duck -Wild Fire -Wild Flower -Wild Flower Park -Wild Forest -Wild Game -Wild Ginger -Wild Goose -Wild Hedge -Wild Holly -Wild Horse -Wild Horse Valley -Wild Hunt -Wild Indigo -Wild Iris -Wild Ivy -Wild Lilac -Wild Meadow -Wild Meadows -Wild Oak -Wild Olive -Wild Plum -Wild Prairie -Wild River -Wild Rose -Wild Spruce -Wild Timothy -Wild Turkey -Wilda -Wildara -Wildberry -Wildbriar -Wildbrook -Wildcat -Wildcat Canyon -Wildcliff -Wildcrest -Wildcroft -Wilde -Wilde Willow -Wilden -Wilden Park -Wilder -Wilder Point -Wilderfield -Wilderhold -Wildermuth -Wilderness -Wilderness Run -Wilderness Walk -Wildernesse -Wilderswood -Wilderton -Wilderwick -Wilderwood -Wildes -Wildewood -Wildey -Wildfell -Wildfire -Wildflower -Wildgoose -Wildhawk -Wildhawk West -Wildhedge -Wildhill -Wildhorse -Wildhouse -Wildhurst -Wilding -Wildish -Wildley -Wildlife -Wildlife Loop -Wildman -Wildmeadow -Wildmere -Wildmoor -Wildoak -Wildomar -Wildon -Wildpark -Wildpines -Wildridge -Wildridings -Wildrose -Wildrose Springs -Wilds -Wildspring -Wildthorn -Wildview -Wildwing -Wildwood -Wildwood Bay -Wildwood Beach -Wildwood Mountain -Wileden -Wilelinor -Wiles -Wiles Farm -Wiley -Wileys -Wilfield -Wilford -Wilfred -Wilga -Wilgarth -Wilgate Green -Wilgus -Wilhaggin -Wilhaggin Park -Wilhelm -Wilhelmi -Wilhelmina -Wilhemina -Wilhern -Wilk -Wilke -Wilken -Wilkening -Wilkens -Wilker -Wilkerson -Wilkes -Wilkes Barre -Wilkesboro -Wilkie -Wilkin -Wilkins -Wilkins Glen -Wilkinson -Wilks -Wilksch -Wilkshire -Will -Will Cook -Will Merry -Will Rogers -Will Sawyer -Will Scarlet -Will Scarlett -Will Wool -Willa -Willaburra -Willada -Willamette -Willan -Willand -Willandale -Willandra -Willans -Willara -Willarch -Willard -Willard Dunham -Willard Grant -Willard Point -Willarong -Willaroo -Willawa -Willben -Willborough -Willbutts -Willcott -Willcrest -Wille -Willee -Willement -Willems -Willen -Willen Field -Willenhall -Willens -Willerby -Willeroo -Willers -Willersley -Willerval -Willes -Willesden -Willester -Willet -Willets -Willets Point -Willett -Willett Pond -Willetts -Willetts Crossing -Willever -Willey -Willey Broom -Willeys -Willfox -William -William Allen -William B Long Jr -William B Terry -William Beanes -William Berry -William Bird -William Booth -William Campbell -William Carr -William Chambers Jr -William Cunningham -William D Bliss -William Day -William Delameter -William Downes -William Edgar -William Edward -William Evans -William Fairfield -William Foster -William G -William Gooding -William Harrington -William Henry -William Howell -William IV -William Joseph -William Kelley -William Kirk -William Lake Shore -William Mahoney -William Mannix -William May Park -William Mosby -William Moss -William Penn -William Pishner Jr -William Reed -William Rigby -William Shakespeare -William T Morrissey -William Tanner -William Tell -William Terry -William Wade -William Ward -William Wood -Williamo -Williams -Williams Port -Williams Wood -Williams Woods -Williamsberg -Williamsborough -Williamsbridge -Williamsburg -Williamsburgh -Williamson -Williamson Ranch -Williamsport -Williamstown -Willian -Willian Church -Williar -Williard -Willick -Willie -Willie B Kennedy -Willie Johnson -Willie Johnsone -Williford -Willig -Willigan -Willingale -Willingdon -Willington -Willis -Willis Holden -Willis Lake -Willis Miller -Willison -Williston -Williton -Willits -Willius -Willmar -Willmohr -Willmonton -Willmot -Willmott -Willo Mar -Willobrook -Willoby -Willock -Willora -Willotta -Willougby -Willoughby -Willoughby Newton -Willoughby Park -Willoughby Point -Willow -Willow Bank -Willow Bay -Willow Bend -Willow Bottom -Willow Bridge -Willow Brook -Willow Camp Fire -Willow Circle -Willow Creek -Willow Crescent -Willow Cresent -Willow Crest -Willow Dale -Willow Edge -Willow Falls -Willow Farm -Willow Forge -Willow Gate -Willow Glade -Willow Glen -Willow Grove -Willow Hill -Willow Hills -Willow Knoll -Willow Lake -Willow Lakes -Willow Leaf -Willow Oak -Willow Oaks -Willow Oaks Corporate -Willow Park -Willow Pass -Willow Point -Willow Pond -Willow Ridge -Willow River -Willow Run -Willow Shore -Willow Spring -Willow Springs -Willow Springs School -Willow Switch -Willow Terrace -Willow Tree -Willow Valley -Willow View -Willow Way Long -Willow Well -Willow West -Willow Wood -Willow Woods -Willowan -Willoway -Willowbank -Willowbend -Willowbrae -Willowbridge -Willowbrook -Willowcreek -Willowcrest -Willowcroft -Willowdale -Willowdean -Willowdene -Willowfield -Willowgate -Willowgrove -Willowhaven -Willowhayne -Willowhill -Willowhurst -Willowick -Willowie -Willowleaf -Willowmead -Willowmeade -Willowmere -Willowmere Woods -Willowmont -Willowood -Willowpark -Willowpond -Willowridge -Willows -Willows Edge -Willowside -Willowside Ranch -Willowthree -Willowtree -Willowview -Willowwick -Willowwood -Willrush -Willry -Wills -Willshaw -Willshire -Willson -Willston -Willunga -Willvail -Willy -Willyama -Willys -Wilma -Wilmac -Wilman -Wilmar -Wilmarth -Wilmcote -Wilmer -Wilmerding -Wilmerhatch -Wilmett -Wilmette -Wilmington -Wilmington Court -Wilmont -Wilmor -Wilmore -Wilmot -Wilmoth -Wilmott -Wilmount -Wilms -Wilmslow -Wilmslow Old -Wilmur -Wilogreen -Wilona -Wiloughby -Wilpshire -Wilrose -Wilroy -Wilryan -Wilscot -Wilsey -Wilsham -Wilshaw -Wilshere -Wilshire -Wilsman -Wilsmere -Wilsom -Wilson -Wilson Bridge -Wilson Farm -Wilson Fold -Wilson Hall -Wilson Hill -Wilson Park -Wilson Pond -Wilson Ridge -Wilson Valley -Wilson Wood -Wilson Woods Park -Wilsondale -Wilsons -Wilsons Creek -Wilsons Grove -Wilsonville -Wilstone -Wilstrode -Wilt -Wilton -Wilton Croft -Wilton Oaks -Wilton South -Wiltonshire -Wiltsey -Wiltshire -Wilwade -Wilward -Wilwick -Wilwood -Wilzette -Wiman -Wimbart -Wimberry Hill -Wimbledon -Wimbledon Park -Wimblehurst -Wimbleton -Wimbley -Wimblington -Wimborne -Wimbourne -Wimland -Wimlands -Wimmer -Wimple -Wimpole -Wimpory -Wims -Wimsatt -Wimslow -Win Haven -Winafred -Winamac -Winans -Winant -Winberie -Winbolt -Winborne -Winborough -Winbourne -Winburn -Winburndale -Wincanton -Winch -Winch Park -Wincham -Winchat -Winchbottom -Winchcombe -Winchell -Winchelsea -Winchendon -Winchester -Winchester Beach -Winchfield -Winchgrove -Winchmore -Winchmore Hill -Wincliff -Winco -Wincoat -Wincoma -Wincombe -Winconsin -Wincott -Wincrest -Wincroft -Wincrofts -Wind -Wind Creek -Wind Crest -Wind Flower -Wind Hill -Wind Meadow -Wind Mill -Wind Ridge -Wind River -Wind Sock -Wind Song -Windabout -Windamere -Windarra -Windbeam -Windblown -Windborough -Windbreak -Windbridge -Windbrook -Windbrooke -Windchime -Windcliff -Windcloud -Windcrest -Windeler -Windell -Windemere -Winder -Windermere -Winders -Windett -Windett Ridge -Windette -Windeyer -Windfall -Windfeldt -Windfield -Windflower -Windgate -Windham -Windham Cove -Windhaven -Windhill -Windhill Old -Windhorn -Windimer -Winding -Winding Bluff -Winding Branch -Winding Brook -Winding Brooke -Winding Canyon -Winding Creek -Winding Farm -Winding Glenn -Winding Hill -Winding Hills -Winding Lakes -Winding Meadow -Winding Oak -Winding Ridge -Winding River -Winding Rose -Winding Run -Winding Trail -Winding Way -Winding Waye -Winding Wood -Winding Woods -Windjammer -Windkist Farm -Windlass -Windle -Windleaf -Windlehurst -Windlesham -Windley -Windmeadows -Windmere -Windmill -Windmill Canyon -Windmill Cove -Windmill Farms -Windmill Field -Windmill Hill -Windmill Park -Windmill Quay -Windolf -Windom -Windong Wood -Windorra -Windouree -Windover -Windplay -Windrew -Windridge -Windrift -Windrock -Windrose -Windrow -Windrunner -Windrush -Windrush Farm -Windsail -Windscale -Windshire -Windsmere Hill -Windsock -Windsong -Windsong South -Windsor -Windsor Bridge Brocas -Windsor Brook -Windsor Court -Windsor Farm -Windsor Gate -Windsor Hill -Windsor Hills -Windsor Knoll -Windsor Lake -Windsor Manor -Windsor Palms -Windsor Park -Windsor Ridge -Windsor River -Windsor View -Windsor Village -Windspoint -Windspun -Windstar -Windstone -Windstream -Windswept -Windtree -Windus -Windward -Windward Key -Windwhisper -Windwood -Windwood Farms -Windy -Windy Bank -Windy Cove -Windy Creek -Windy Field -Windy Harbour -Windy Hill -Windy Hollow -Windy Knoll -Windy Knolls -Windy Oak -Windy Oaks -Windy Pine -Windy Point -Windy Prairie -Windy Ridge -Windy River -Windy Springs -Windy Valley -Windybush -Windyhill -Wine -Wine Barrel -Wine Country -Wine Creek -Wine Garden -Wine Master -Wineberry -Winedale -Wineham -Winer -Winery -Wines -Winesap -Winewood -Winexburg Manor -Winfal -Winfell -Winfield -Winfield Scott -Winfields -Winfisky -Winford -Winforton -Winfred -Winfrith -Wing -Wing Park -Wing Pointe -Wingara -Wingard -Wingate -Wingates -Winged Cove -Winged Foot -Wingello -Winger -Wingfield -Wingflash -Wingfoot -Wingford -Wingham -Wingle Tye -Wingletye -Wingmore -Wingpointe -Wingra -Wingrave -Wingrove -Wings -Wingsong -Wingstem -Winham -Winiebago -Winifred -Winje -Winkel -Winkelman -Winkers -Winkfield -Winkin -Winkle -Winkle Point -Winklebleck -Winkler -Winkley -Winkurra -Winkworth -Winlock -Winmarith -Winmeade -Winmeyer -Winmill -Winmoor -Winn -Winn Common -Winn Moor -Winn Valley -Winnaleah -Winne -Winnebago -Winnecomac -Winneconnett -Winnegance -Winnemac -Winnemay -Winnemere -Winnepeg -Winnepog -Winnepurkit -Winners -Winnetaska -Winnetka -Winnetka Heights -Winnetka Hts -Winnetou -Winnett -Winnetuxett -Winnie -Winnifred -Winning -Winnington -Winnington Old -Winnipeg -Winnisemette -Winnisimmet -Winnmere -Winnock -Winnow Down -Winnpenny -Winns -Winnsboro -Winnunga -Winoka -Winona -Winonah -Winpark -Winrock -Winrose -Winsby -Winscar -Winscombe -Winsdale -Winsdon -Winser -Winsfield -Winsford -Winshaw -Winship -Winside -Winskill -Winsland -Winslea -Winsley -Winslow -Winslow Cemetery -Winslow Farm -Winslowe -Winsmoor -Winsom -Winsome -Winsor -Winspear -Winstanley -Winstead -Winstead Manor -Winsted -Winsten -Winster -Winston -Winston Forest -Winstone Scott -Winstre -Winstree -Winta -Winten -Winter -Winter Brook -Winter Corn -Winter Creek -Winter Crest -Winter Garden -Winter Haven -Winter Hey -Winter Hill -Winter Hunt -Winter Island -Winter Laurel -Winter Park -Winter Sun -Winter Thicket -Winter View -Winter Walk -Winter Willow -Winterberry -Winterborne -Winterbottom -Winterbourne -Winterbrook -Wintercorn -Wintercress -Winterdown -Winterfield -Winterford -Wintergate -Wintergreen -Wintergrove -Wintergull -Winterhaven -Wintermans -Winterpit -Winterrun -Winters -Winterscroft -Wintersells -Winterset -Wintershutt -Winterslow -Winterson -Winterspoon -Winterstein -Winterstoke -Winterswyk -Winterthur -Winterton -Winterway -Winterwell -Winterwind -Winterwood -Winthorpe -Winthrop -Winthrop New -Winthrop Shore -Winthrope -Wintney -Winton -Wintree -Wintun -Winward -Winwick Link -Winwood -Winyah -Wiobata -Wire -Wire Mill -Wirega -Wireless -Wireton -Wirksmoor -Wirling -Wirrabara -Wirralee -Wirralie -Wirraway -Wirreanda -Wirrinda -Wirruna -Wirt -Wirth -Wirthman -Wirthmore -Wirtz -Wisbeach -Wisbech -Wisbeck -Wisborough -Wiscasset -Wisconsin -Wisden -Wisdom -Wise -Wisely Sq -Wiseman -Wiser -Wises -Wiseton -Wish -Wishanger -Wishart -Wishbone -Wishing -Wishing Rock -Wishing Well -Wishkah -Wishmoor -Wishon -Wisley -Wisner -Wisnev -Wisnom -Wisp -Wispering Hollow -Wiss -Wissahican -Wisse -Wisseman -Wissenden -Wisser -Wissing -Wissioming -Wissman -Wistar -Wistaria -Wisteria -Wiston -Wistow -Wiswall -Witan -Witanhurst -Witby -Witch -Witch Hill -Witchcraft -Witcher -Witches -Witcom -Witek -Witham -Withan -Withenfield -Withens -Witherall -Witherbee -Witherenden -Witheridge -Witherington -Witherly -Withers -Withers Harbor -Withersed -Witherspoon -Witherwin -Withey -Withey Heights -Witheygate -Withies -Withington -Withinlee -Withins -Withins Hall -Withnell -Withorn -Withy -Withyfold -Withyham -Withypool -Witley -Witmer -Witney -Wits End -Witt -Wittama -Witte -Wittem -Wittenberg -Wittenbury -Wittenham -Witter -Wittersham -Wittes -Witthill -Witthoff -Wittington -Wittmead -Witton -Witty -Wituwamat -Wium -Wivelrod -Wivelsfield -Wivenhoe -Wiverton -Wix -Wixon -Wizard -Wm Clifford -Wo Udall -Wobbly -Woburn -Woburn Abbey -Wodecroft -Wodehouse -Woden -Woehrle -Woelfe -Woerd -Wofford -Wogshead -Wohler -Wohseepee -Woids -Woild Goose -Wokindon -Woking -Wokingham -Wokomis -Wolbach -Wolcott -Wolcutt -Woldham -Woldhuis -Woldingham -Woldingham School -Woldzienski -Wolesey -Wolf -Wolf Creek -Wolf Crossing -Wolf Den -Wolf Hill -Wolf Pond -Wolf Ridge -Wolf River -Wolf Rock -Wolf Run -Wolf Run Hills -Wolf Run Shoals -Wolf Valley -Wolfberry -Wolfe -Wolfe Canyon -Wolfe Hill -Wolfeboro -Wolfenden -Wolff -Wolfhill -Wolfington -Wolfle -Wolford -Wolfs -Wolfskill -Wolfson -Wolftrap -Wolftrap Run -Wolftree -Wolger -Wolkoff -Wolkow -Wollam -Wollaston -Wolley -Wolli -Wolli Creek -Wollitzer -Wollmington -Wollombi -Wollondilly -Wollongbar -Wollongong -Wollun -Wollybutt -Wolombi -Wolomolopoag -Wolpers -Wolseley -Wolsey -Wolsfeld -Wolski -Wolsten -Wolstenholme -Wolters -Wolton -Wolumba -Wolvens -Wolver Hollow -Wolvercote -Wolverine -Wolverns -Wolverton -Wolves -Womack -Womantam -Womantum -Wombat -Wombeyan -Wombidgee -Womboyne -Womerah -Womersley -Wompanoag -Wompatuck -Wonder -Wonderama -Wondercolor -Wonderland -Wong -Wonga -Wonga Wonga -Wongala -Wongalee -Wonham -Woniora -Wonston -Wontford -Wontner -Woobly -Wooburn Common -Wood -Wood Acers -Wood Acres -Wood Bridge -Wood Brook -Wood Court -Wood Creek -Wood Duck -Wood Ember -Wood End -Wood End Green -Wood Farm -Wood Glade -Wood Glen -Wood Green -Wood Hampton -Wood Haven -Wood Hill -Wood Hollow -Wood Home -Wood House -Wood Island -Wood Knoll -Wood Lake -Wood Lark -Wood Lily -Wood Lodge -Wood Lot Trail -Wood Mar -Wood Mist -Wood Oak -Wood Park -Wood Pointe -Wood Ranch -Wood Ridge -Wood Rock -Wood Sage -Wood Side -Wood Sorrel -Wood Sorrels -Wood Spice -Wood Thrush -Wood Top -Wood Valley -Wood View -Woodacre -Woodacres -Woodale -Woodall -Woodands -Woodard -Woodbank -Woodbanke -Woodbastwick -Woodbent -Woodberry -Woodbine -Woodbole -Woodboro -Woodborough -Woodbourne -Woodbrae -Woodbray -Woodbriar -Woodbridge -Woodbridge Centre -Woodbrier -Woodbrook -Woodbrooke -Woodbrrok -Woodburn -Woodburn Village -Woodbury -Woodbury Farms -Woodbury Lakes -Woodbury Park -Woodby -Woodchase -Woodchester -Woodchuck -Woodchuck Hill -Woodchuck Hollow -Woodcleft -Woodcliff -Woodcliff Lake -Woodcliffe -Woodclyffe -Woodcock -Woodcock Dell -Woodcote -Woodcote Green -Woodcote Grove -Woodcote Park -Woodcourt -Woodcox -Woodcreek -Woodcrest -Woodcroft -Woodcut -Woodcutter -Woodcutters -Wooddale -Woodduck -Wooded -Wooded Branch -Wooded Brook -Wooded Creek -Wooded Glen -Wooded Hills -Wooded Lake -Wooded Path -Wooded Ridge -Wooded Run -Wooded Trace -Wooded View -Woodedge -Woodelf -Wooden -Wooden Bridge -Wooden Hawk -Wooden Path -Wooden Spoke -Wooden Valley -Wooden Valley Cross -Woodend -Woodewind -Woodfair -Woodfall -Woodfarm -Woodfern -Woodfield -Woodfield Estates -Woodfield Park -Woodfield School -Woodfold -Woodford -Woodford New -Woodforest -Woodgarth -Woodgate -Woodgate Hill -Woodger -Woodglade -Woodglen -Woodglenn -Woodgrange -Woodgreen -Woodgrove -Woodhail -Woodhall -Woodhall Park -Woodhalt -Woodham -Woodham Park -Woodhams -Woodhatch -Woodhaven -Woodhayes -Woodhead -Woodhey -Woodheys -Woodhill -Woodhill Common -Woodhollow -Woodholm -Woodhouse -Woodhouse Hill -Woodhue -Woodhull -Woodhurst -Wooding -Woodington -Woodinville -Woodiris -Woodkirk -Woodknoll -Woodlake -Woodlake Hills -Woodland -Woodland Beach -Woodland Crossing -Woodland Estates -Woodland Falls -Woodland Forest -Woodland Heights -Woodland Hills -Woodland Lake -Woodland Meadow -Woodland Park -Woodland Pond -Woodland Run -Woodland Valley -Woodland Way Abbey -Woodlands -Woodlands Hill -Woodlands Park -Woodlane -Woodlark -Woodlawn -Woodlawn East -Woodlawn Gable -Woodlawn Green -Woodlawn West -Woodlawnd -Woodlea -Woodlea Mill -Woodleaf -Woodledge -Woodlee -Woodleigh -Woodlet -Woodley -Woodley Woods -Woodliffe -Woodloch -Woodlock -Woodloo -Woodlore -Woodlot -Woodlow -Woodlyn -Woodlynn -Woodman -Woodmanhurst -Woodmans -Woodmansterne -Woodmar -Woodmark -Woodmeadow -Woodmere -Woodmill -Woodminister -Woodminster -Woodmire -Woodmont -Woodmoor -Woodmore -Woodmore Oaks -Woodnook -Woodnote -Woodoak -Woodoaks -Woodpark -Woodpath -Woodpecker -Woodpecker Ridge -Woodpiece -Woodplace -Woodpoint -Woodpond -Woodrail -Woodranch -Woodredon Farm -Woodreeve -Woodrest -Woodridge -Woodridings -Woodriff -Woodriffe -Woodring -Woodrock -Woodroe -Woodrolfe -Woodrolfe Farm -Woodrose -Woodrow -Woodrow Wilson -Woodroyd -Woodruff -Woodrush -Woods -Woods Center -Woods Chapel -Woods Cove -Woods Creek -Woods Edge -Woods End -Woods Hill -Woods Hole -Woods Landing -Woods Moor -Woods On Mass. -Woods Pond -Woods Wharf -Woods of Arden -Woodsboro -Woodsbury -Woodscape -Woodsdale -Woodseats -Woodseer -Woodsend -Woodsend Crescent -Woodshire -Woodshole -Woodside -Woodside Court -Woodside Grange -Woodside Meadows -Woodside Park -Woodside Tavern Low -Woodside View -Woodsley -Woodsman -Woodsmoor -Woodsome -Woodson -Woodsong -Woodstock -Woodston -Woodstone -Woodstown -Woodstream -Woodsum -Woodsview -Woodsworth -Woodthorpe -Woodthrush -Woodtree -Woodvale -Woodvale Pond -Woodvalley -Woodview -Woodview Terrace -Woodvill -Woodville -Woodward -Woodwarde -Woodwardia -Woodwards -Woodway -Woodway Park -Woodwaye -Woodwell -Woodwild -Woodwillow -Woodwind -Woodwinds -Woodwise -Woodworth -Woodwren -Woody -Woody Creek -Woody Island -Woody Wolfe -Woodyard -Woodycrest -Wool -Wool Creek -Woolacombe -Woolaroc -Woolbeding -Woolborough -Woolbrook -Woolcott -Wooldeys -Wooldridge -Wooldrige -Wooler -Wooley -Wooleys -Wooleytown -Woolf -Woolfenden -Woolfield -Woolford -Woolgen Park -Woolgoolga -Woolgrove -Woolifers -Woolington -Woollands -Woollard -Woollaston -Woollett -Woolley -Woolley Bridge -Woolley Mill -Woollin -Woolman -Woolmead -Woolmer -Woolmer Hill -Woolmers -Woolmongers -Woolmore -Woolneigh -Woolner -Woolpack -Woolpert -Woolreeds -Woolsey -Woolson -Woolsthorpe -Woolston -Woolstone -Woolsy -Woolwash -Woolwich -Woolwich Burrage -Woolwich Hare -Woolwich Church -Woolwich New -Woolworth -Woomera -Woongarra -Woonsocket Hill -Woonsockett -Woorail -Woorang -Woorarra -Woosehill -Woosley -Wooster -Wooten -Wooton -Wootten -Woottens -Wootton -Woowich -Worbeck -Worbler -Worcester -Worcester County Jail -Worcester Park -Worcester Providence -Worcesters -Worchester -Worden -Wordoo -Wordsworth -Wordswotrh -Wordworth -Worfield -Workesleigh -Workhouse -Workman -Works -Worland -World -World Trade Center -Worldgate -Worlds End -Worley -Worleys -Worlidge -Worlingham -Wormald -Worman -Wormdale -Worminghall -Wormley -Wormstead -Wormwood -Worn Springs Fire -Wornington -Woronoco -Woronora -Woronora Dam -Woronzow -Woropieff -Worple -Worplesdon -Worral -Worrall -Worrel -Worrell -Worrin -Worrobil -Worsefold -Worsel -Worsester -Worsham -Worship -Worslade -Worsley -Worsley Bridge -Worsopp -Worsted -Worster -Worston -Wortendyke -Worth -Worth Park -Wortham -Worthen -Worthern -Worthing -Worthington -Worthley -Worthmor -Worting -Wortley -Wortley Moor -Wortman -Worton -Worts Hill -Wortylko -Worwood -Wostbrock -Wote -Wotton -Wotton Green Sandway -Wouldham -Wounded Knee -Woverley -Wragby -Wragg Canyon -Wraight -Wrangell -Wrangleden -Wrangler -Wrangling -Wrangthorn -Wrath Fold -Wray -Wray Common -Wray Field -Wray Park -Wrayfield -Wraylands -Wraysbury -Wrecclesham -Wreden -Wrekin -Wren -Wren Hollow -Wren Nest -Wrenbeck -Wrenbrook -Wrenbury -Wrench -Wrendale -Wrenfield -Wrenn -Wrenn House -Wrens -Wrenshot -Wrentham -Wrenthorpe -Wrentmore -Wrenwood -Wrexhall -Wrexham -Wricklemarsh -Wride -Wrigglesworth -Wright -Wright Brothers -Wrighton -Wrights -Wrights Endeavor -Wrights Hollow -Wrights Meadow -Wrightsbridge -Wrightson -Wrightwood -Wrigley -Wrin -Writtle -Wrotham -Wrotham Hill -Wrotham Water -Wrottesley -Wroughton -Wroxeter -Wroxham -Wroxton -Wrythe -Wssc Treatment Plant -Wudgong -Wuester -Wulff -Wulfstan -Wunaquit -Wunda -Wunderlich -Wunulla -Wurley -Wurr -Wuthering Heights -Wyaconda -Wyadra -Wyagara -Wyagdon -Wyalong -Wyanbah -Wyandanch -Wyandemere -Wyandot -Wyandotte -Wyanet -Wyanga -Wyanoke -Wyargine -Wyatt -Wyatt Park -Wyatts -Wyatts Green -Wyatts Ridge -Wyatville -Wybalena -Wybeck Valley -Wyberlye -Wybersley -Wybournes -Wyburn -Wych -Wych Elm -Wych Hill -Wychbury -Wychelm -Wychewood -Wychford -Wychperry -Wychview -Wychwood -Wyck -Wycke -Wyckland -Wyckoff -Wyckwood -Wyclif -Wycliff -Wycliffe -Wycoff -Wycomb -Wycombe -Wycombe Park -Wyddial -Wydehurst -Wydeville Manor -Wydown -Wye -Wye Oak -Wyee -Wyena -Wyeth -Wyfold -Wygal -Wykagyl -Wyke -Wykebeck Valley -Wykeham -Wykehurst -Wykoff -Wylands -Wyld -Wyld Green -Wylde -Wyldewood -Wylds -Wyldwood -Wyles -Wyleu -Wylie -Wylie Hill -Wyllie -Wyllis -Wyllyotts -Wylmar -Wylo -Wylvale -Wyman -Wymans Beach -Wymar -Wymering -Wymond -Wymondley -Wymston -Wynan -Wynbrook -Wynbrooke -Wynbury -Wyncham -Wynches Farm -Wynchgate -Wyncrest -Wyndale -Wyndam -Wyndbrook -Wyndcliff -Wyndcliffe -Wyndcrest -Wyndehurst -Wyndemere -Wyndgate -Wyndham -Wyndham Cove -Wyndham Hill -Wyndham Oak -Wyndhill -Wyndhurst -Wyndmere -Wyndmoor -Wyndmuir -Wyndora -Wyndover -Wyndover Woods -Wyndstone -Wyndwood -Wyneham -Wynell -Wyness -Wynford -Wyngaard -Wyngate -Wynhurst -Wynkoop -Wynmore -Wynn -Wynndale -Wynne -Wynnewood -Wynnfield -Wynnleigh -Wynns -Wynnstay -Wynnstay Access -Wynnswick -Wynnwood -Wynot -Wynridge -Wynstone -Wynsum -Wynter -Wynwood -Wynyard -Wynyatt -Wyola -Wyoma -Wyomee -Wyoming -Wyona -Wyong -Wyphurst -Wyralla -Wyre -Wyreema -Wyres -Wyresdale -Wyrick -Wysteria -Wythal -Wythburn -Wythburne -Wythe -Wythens -Wythenshawe -Wyther -Wyther Park -Wythes -Wythfield -Wyton -Wyuna -Wyvern -Wyvil -Wyvile -Wyvill -Wyville -Wyvis -Wyx -Xanadu -Xandria -Xanthippe -Xanthus -Xaveria -Xavier -Xaviers -Xavis -Xebec -Xene -Xenia -Xenium -Xenwood -Xeon -Xerxes -Ximines -Xkimo -Xylon -Y Creek -Y D -YMCA -Yabsley -Yacenda -Yacht -Yacht Club -Yacht Harbor -Yachthaven -Yachtsman -Yachtview -Yackley -Yaffe -Yaffle -Yagar -Yager -Yagoona -Yahara -Yajome -Yakima -Yala -Yaldara -Yalding -Yale -Yalkin -Yallambee -Yallara -Yallaroi -Yalleroi -Yalta -Yamada -Yamane -Yamato -Yamba -Yamburg -Yamma -Yampa -Yampi -Yancey -Yanco -Yancy -Yandarlo -Yanderra -Yangalla -Yangang -Yangoora -Yanilla -Yankee -Yankee Division -Yankee Doodle -Yankee Harbor -Yankee Ridge -Yanko -Yankton -Yankton College -Yannina -Yantacaw Brook -Yantecaw -Yantlet -Yantz -Yapole -Yara -Yaraan -Yarabah -Yaralla -Yarberry -Yarbon -Yarborough -Yarburgh -Yard -Yardarm -Yardley -Yardley Hall -Yardley Manor -Yardley Park -Yare -Yargo -Yaringa -Yarland -Yarm Court -Yarmouth -Yarn -Yarnall -Yarnell -Yarnick -Yarnton Way Norman -Yarra -Yarra Burn -Yarra Burra -Yarrabee -Yarrabin -Yarrabung -Yarralumla -Yarram -Yarraman -Yarramundi -Yarran -Yarranbee -Yarrandale -Yarrangobilly -Yarrara -Yarrawa -Yarren -Yarrennan -Yarrow -Yarrowee -Yarrunga -Yarwood -Yasmar -Yatala -Yatama -Yate -Yateley -Yately -Yates -Yates Ford -Yattendon -Yaugher -Yaverland -Yawl -Yawpo -Yawung -Yeading -Yeadon -Yeadon Harper -Yeadon High -Yeadon Moor -Yeager -Yealand -Yeaman -Yeamans -Yeandle -Yeardon -Yeardsley -Yearling -Yearling Crossing -Yeasted -Yeate -Yeates -Yeatman -Yeaton -Yeats -Yednak -Yeend -Yeldall Manor Service -Yeldham -Yeldman -Yell -Yellambie -Yellow Bank -Yellow Bank Farm -Yellow Bell -Yellow Birch -Yellow Brick -Yellow Brook -Yellow Cab Access -Yellow Circle -Yellow Cote -Yellow Flower -Yellow Jacket Ranch -Yellow Lodge -Yellow Pine -Yellow Poplar -Yellow Rock -Yellow Rose -Yellow Tavern -Yellow Twig -Yellowbrick -Yellowcross -Yellowhammer -Yellowknife -Yellowood -Yellowpine -Yellowstar -Yellowstone -Yellowwood -Yelsted -Yelverton -Yenda -Yender -Yennicock -Yennora -Yeo -Yeoford -Yeomalt -Yeoman -Yeomans -Yeomans Acre Fore -Yeonas -Yeovil -Yeramba -Yeran -Yerba Buena -Yerba Santa -Yerbury -Yerby -Yereance -Yerger -Yerona -Yerong -Yerrick -Yerroulbin -Yerxa -Yeshiva -Yester -Yetholme -Yethonga -Yetman -Yetminster -Yetta -Yettner -Yew -Yew Tree -Yew Tree Bottom -Yew Tree Green -Yew Tree Park -Yewbarrow -Yewdale -Yewdall -Yewfield -Yewlands -Yews -Yewtree -Ygnacio -Ygnacio Valley -Yield Hall -Yillowra -Yimbala -Yindela -Yirak -Yirgella -Yirra -Yoakes -Yoakim -Yoakim Bridge -Yoakley -Yoakum -Yodalla -Yoder -Yoerg -Yoho -Yoke -Yokuts -Yola -Yolanda -Yolande -Yolane -Yolano -Yolano Mills -Yolo -Yolo Creek -Yon -Yona Vista -Yonkers -Yorba -York -York Gardens Lombard -York Mill -York Mills -York River -Yorkdale -Yorke -Yorkfield -Yorkie -Yorknolls -Yorks -Yorkshire -Yorkshire Woods -Yorkton -Yorkton Ridge -Yorktonw -Yorktown -Yorktown Mall -Yorktowne -Yorkview -Yorkville -Yorman -Yorton -Yosefa -Yosemite -Yosemite Park -Yoshida -Yosko -Yosocomico -Yost -Youd -Youens -Youghal -Youlden -Youle -Young -Young Bar -Youngberg -Youngblood -Younger -Younger Creek -Youngfield -Youngheart -Younglove -Youngs -Youngs Branch -Youngs Cliff -Youngs Farm -Youngs Hill -Youngs Valley -Youngsbury -Youngsdale -Youngsters -Youngstown -Youngstroat -Youngwood -Yount -Yountville Cross -Youse -Youth Center -Yovonovitz -Yowie -Yoxley -Ypres -Yreka -Yribarren -Ysabel -Yuba -Yuba Canal -Yucatan -Yucca -Yuhas -Yukka -Yukon -Yulan -Yule -Yule Tree -Yulong -Yuloni -Yulupa -Yuma -Yunga -Yunga Burra -Yurgel -Yurick -Yuro -Yuroka -Yurong -Yuruga -Yurunga -Yutan -Yvette -Yvonne -Yy -Z Line -ZAchary -ZAnzIbar -ZEnith -ZIegler -ZInnia -ZIon -ZOo -Zabelle -Zabriskie -Zabrosky -Zaca -Zacate -Zaccheus Mead -Zacharias -Zachary -Zachery -Zachman -Zack -Zadig -Zafra -Zaft -Zagora -Zahel -Zaininger -Zaleski -Zalman -Zambesi -Zambezie -Zambory -Zambrano -Zamia -Zammit -Zamora -Zampa -Zampatti -Zanco -Zand -Zander -Zane -Zange -Zangwill -Zanibar -Zanker -Zanni -Zanoni -Zanthus -Zanzibar -Zapata -Zapotec -Zara -Zaragosa -Zaragoza -Zardo -Zareh -Zarick -Zarita -Zarlee -Zartop -Zato -Zaton -Zatopeck -Zaunerowicz -Zauratsky -Zausa -Zavatt -Zayante -Zayante Lakes -Zayante School -Zaydee -Zazzetti -Zealand -Zealander -Zeally -Zebedee -Zebra -Zebulon Pike -Zeckendorf -Zeek -Zeeland -Zehnder -Zeigert -Zeigler -Zeim -Zeka -Zekan -Zekiah -Zela -Zelah -Zelda -Zelham -Zeliff -Zelinda -Zelkova -Zeller -Zellerbach -Zelma -Zeman -Zemble -Zemek -Zena -Zenas -Zendzian -Zengele -Zenia -Zenith -Zenith Ridge -Zenner -Zennia -Zennor -Zeno -Zenoria -Zephyr -Zephyr Ranch -Zeppelen -Zeppelin -Zeppi -Zerega -Zerman -Zermat -Zermatt -Zero -Zeta -Zetland -Zetta -Zetts -Zeus -Zieber -Ziegler -Ziele Creek -Zig Zag -Ziggy -Zileman -Zillah -Zils -Zimborski -Zimbro -Zimmer -Zimmerman -Zimpher -Zina -Zindaus -Zinder -Zinfandel -Zinfindel -Zinn -Zinnia -Zinran -Zinzan -Zion -Zion Chapel -Zions -Zipf -Zircon -Zirkel -Zisch -Ziska -Zita -Zito -Zoar -Zodiac -Zoe -Zoeller -Zoffany -Zola -Zoll -Zoller -Zompetti -Zona -Zoo -Zook -Zorah -Zoranne -Zoria Farms -Zorka -Zorrane -Zotti -Zottoli -Zouave -Zouch -Zoumar -Zuelke -Zug -Zulette -Zulmida -Zulu -Zumbra -Zumbro -Zumstein -Zumwalt -Zuni -Zunic -Zurich -Zuttion -Zutton -Zweber -Zwicky -Zygmunt -Zygouras -Zylonite \ No newline at end of file diff --git a/splunk_eventgen/samples/streetSuffixes.sample b/splunk_eventgen/samples/streetSuffixes.sample deleted file mode 100644 index 7520a47c..00000000 --- a/splunk_eventgen/samples/streetSuffixes.sample +++ /dev/null @@ -1,24 +0,0 @@ -Blvd. -Blvd. -St. -St. -St. -St. -St. -St. -Pkwy. -Pkwy. -Pkwy. -Ln. -Ln. -Ln. -Dr. -Dr. -Dr. -Dr. -Way -Way -Ave. -Ave. -Ave. -Hwy. \ No newline at end of file diff --git a/splunk_eventgen/samples/streets b/splunk_eventgen/samples/streets deleted file mode 100644 index d25bf1ad..00000000 --- a/splunk_eventgen/samples/streets +++ /dev/null @@ -1,168 +0,0 @@ -Acres -Amber -Anchor -Apple -Arbor -Autumn -Avenue -Bank -Barn -Beacon -Bear -Bend -Berry -Blossom -Blue -Bluff -Branch -Bright -Broad -Brook -Burning -Butterfly -Canyon -Chase -Cider -Cinder -Circle -Clear -Cloud -Colonial -Corner -Cotton -Court -Cove -Cozy -Creek -Crest -Crystal -Dale -Dale -Deer -Dell -Dewy -Dusty -Easy -Edge -Elk -Embers -Emerald -Estates -Fallen -Falls -Farms -Fawn -Foggy -Forest -Fox -Gardens -Gate -Gate -Gentle -Glade -Glen -Golden -Goose -Grand -Green -Grove -Grove -Harvest -Hazy -Heather -Hickory -Hidden -High -Highlands -Hills -Hollow -Honey -Horse -Indian -Iron -Island -Isle -Jagged -Jetty -Knoll -Lagoon -Lake -Landing -Lane -Lazy -Leaf -Ledge -Little -Log -Lost -Manor -Meadow -Merry -Mews -Middle -Misty -Mountain -Nectar -Noble -Nook -Oak -Old -Orchard -Panda -Park -Path -Pike -Pine -Pioneer -Place -Pleasant -Point -Pond -Pony -Prairie -Promenade -Quail -Quaking -Quiet -Rabbit -Red -Ridge -Rise -River -Robin -Rocky -Round -Round -Run -Rustic -Shadow -Shady -Silent -Silver -Sky -Sleepy -Spring -Stead -Stony -Sunny -Swale -Tawny -Terrace -Thunder -Timber -Trace -Trail -Treasure -Umber -Vale -Valley -Velvet -View -View -Vista -Wagon -Way -Willow -Wishing -Woods -Zephyr \ No newline at end of file diff --git a/splunk_eventgen/samples/trackIDs.sample b/splunk_eventgen/samples/trackIDs.sample deleted file mode 100644 index a8f20f78..00000000 --- a/splunk_eventgen/samples/trackIDs.sample +++ /dev/null @@ -1,23 +0,0 @@ -01011207201000005652000000000021 -01011207201000005652000000000047 -01011207201000005652000000000068 -01011207201000005652000000000018 -01011207201000005652000000000031 -01011207201000005652000000000007 -01011207201000005652000000000013 -01011207201000005652000000000041 -01011207201000005652000000000053 -01011207201000005652000000000023 -01011207201000005652000000000029 -01011207201000005652000000000037 -01011207201000005652000000000011 -01011207201000005652000000000003 -01011207201000005652000000000083 -01011207201000005652000000000017 -01011207201000005652000000000071 -01011207201000005652000000000026 -01011207201000005652000000000055 -01011207201000005652000000000084 -01011207201000005652000000000014 -01011207201000005652000000000025 -01011207201000005652000000000049 \ No newline at end of file diff --git a/splunk_eventgen/samples/transType.sample b/splunk_eventgen/samples/transType.sample deleted file mode 100644 index 61c7b11d..00000000 --- a/splunk_eventgen/samples/transType.sample +++ /dev/null @@ -1,6 +0,0 @@ -New -New -Change -Change -Change -Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/uris.sample b/splunk_eventgen/samples/uris.sample deleted file mode 100644 index 27d17be4..00000000 --- a/splunk_eventgen/samples/uris.sample +++ /dev/null @@ -1,5 +0,0 @@ -GET /browse/search -GET /browse/tracks -POST /sync/createplaylist -POST /playhistory/uploadhistory -POST /auth \ No newline at end of file diff --git a/splunk_eventgen/samples/userHostIp.sample b/splunk_eventgen/samples/userHostIp.sample deleted file mode 100644 index f33cf601..00000000 --- a/splunk_eventgen/samples/userHostIp.sample +++ /dev/null @@ -1,1000 +0,0 @@ -TAYLOR_DYE,TAYLOR_DYE-MPBR16,10.0.0.0 -ARMAND_ARAIZA,ARMAND_ARAIZA-MPBR16,10.0.0.1 -BENJAMIN_VANDEUSEN,BENJAMIN_VANDEUSEN-MPBR16,10.0.0.2 -SHANNON_BERNARDI,SHANNON_BERNARDI-MPBR16,10.0.0.3 -VIRGIL_FOUQUETTE,VIRGIL_FOUQUETTE-MPBR16,10.0.0.4 -LEANN_CHISUM,LEANN_CHISUM-MPBR16,10.0.0.5 -MEGHAN_BIONDI,MEGHAN_BIONDI-MPBR16,10.0.0.6 -JAKE_SPELL,JAKE_SPELL-MPBR16,10.0.0.7 -MIRTHA_SILVESTRI,MIRTHA_SILVESTRI-MPBR16,10.0.0.8 -ORPHA_BLANKS,ORPHA_BLANKS-MPBR16,10.0.0.9 -TOMMY_HENNEY,TOMMY_HENNEY-MPBR16,10.0.0.10 -HORACE_WELSCH,HORACE_WELSCH-MPBR16,10.0.0.11 -JAMAAL_BOEPPLE,JAMAAL_BOEPPLE-MPBR16,10.0.0.12 -JULIE_BLOXHAM,JULIE_BLOXHAM-MPBR16,10.0.0.13 -FREDERICA_SLAYDEN,FREDERICA_SLAYDEN-MPBR16,10.0.0.14 -SEAN_TARLOW,SEAN_TARLOW-MPBR16,10.0.0.15 -ELIZABETH_GAUKEL,ELIZABETH_GAUKEL-MPBR16,10.0.0.16 -HASSAN_SPERIER,HASSAN_SPERIER-MPBR16,10.0.0.17 -MARISELA_COLSTON,MARISELA_COLSTON-MPBR16,10.0.0.18 -LOWELL_SOLBERG,LOWELL_SOLBERG-MPBR16,10.0.0.19 -PAMALA_MUMPER,PAMALA_MUMPER-MPBR16,10.0.0.20 -BREANNE_STEFANIAK,BREANNE_STEFANIAK-MPBR16,10.0.0.21 -WINNIFRED_HARTS,WINNIFRED_HARTS-MPBR16,10.0.0.22 -CASIE_GEMME,CASIE_GEMME-MPBR16,10.0.0.23 -JUSTINE_TAPP,JUSTINE_TAPP-MPBR16,10.0.0.24 -SIDNEY_DRAPKIN,SIDNEY_DRAPKIN-MPBR16,10.0.0.25 -RAY_ETHRIDGE,RAY_ETHRIDGE-MPBR16,10.0.0.26 -GARFIELD_LOSECCO,GARFIELD_LOSECCO-MPBR16,10.0.0.27 -IRVING_HAVARD,IRVING_HAVARD-MPBR16,10.0.0.28 -GRETCHEN_BRIES,GRETCHEN_BRIES-MPBR16,10.0.0.29 -CLETUS_DAY,CLETUS_DAY-MPBR16,10.0.0.30 -SONNY_PAGLINAWAN,SONNY_PAGLINAWAN-MPBR16,10.0.0.31 -BREANNA_EMMER,BREANNA_EMMER-MPBR16,10.0.0.32 -GENARO_EVERSOLE,GENARO_EVERSOLE-MPBR16,10.0.0.33 -HILDA_POLLARO,HILDA_POLLARO-MPBR16,10.0.0.34 -DAMION_VESPIA,DAMION_VESPIA-MPBR16,10.0.0.35 -GROVER_REMALEY,GROVER_REMALEY-MPBR16,10.0.0.36 -EVERETT_SPRIGG,EVERETT_SPRIGG-MPBR16,10.0.0.37 -OLLIE_BEDNARCZYK,OLLIE_BEDNARCZYK-MPBR16,10.0.0.38 -LUPE_GUE,LUPE_GUE-MPBR16,10.0.0.39 -JANN_PITHAN,JANN_PITHAN-MPBR16,10.0.0.40 -TIARA_CEPEDA,TIARA_CEPEDA-MPBR16,10.0.0.41 -ZINA_HOLOM,ZINA_HOLOM-MPBR16,10.0.0.42 -LOUISE_CARLILE,LOUISE_CARLILE-MPBR16,10.0.0.43 -MADGE_EFAW,MADGE_EFAW-MPBR16,10.0.0.44 -OUIDA_RUGGIERI,OUIDA_RUGGIERI-MPBR16,10.0.0.45 -PANDORA_CONNIFF,PANDORA_CONNIFF-MPBR16,10.0.0.46 -CRAIG_BULLERS,CRAIG_BULLERS-MPBR16,10.0.0.47 -RYAN_FRASCA,RYAN_FRASCA-MPBR16,10.0.0.48 -NOVELLA_KASTEL,NOVELLA_KASTEL-MPBR16,10.0.0.49 -AURORE_AHLMAN,AURORE_AHLMAN-MPBR16,10.0.0.50 -CARLTON_KURAMOTO,CARLTON_KURAMOTO-MPBR16,10.0.0.51 -GARY_STINEHELFER,GARY_STINEHELFER-MPBR16,10.0.0.52 -NICHOL_FALKER,NICHOL_FALKER-MPBR16,10.0.0.53 -EVELYN_SCHIER,EVELYN_SCHIER-MPBR16,10.0.0.54 -JARRETT_HUXHOLD,JARRETT_HUXHOLD-MPBR16,10.0.0.55 -JONAS_HEITLAND,JONAS_HEITLAND-MPBR16,10.0.0.56 -ANTONIO_WOLSKI,ANTONIO_WOLSKI-MPBR16,10.0.0.57 -BILLY_PEDLAR,BILLY_PEDLAR-MPBR16,10.0.0.58 -GLADYS_SINNING,GLADYS_SINNING-MPBR16,10.0.0.59 -PAUL_LEHNER,PAUL_LEHNER-MPBR16,10.0.0.60 -MARTHA_KEENEY,MARTHA_KEENEY-MPBR16,10.0.0.61 -JUAN_CURBEAM,JUAN_CURBEAM-MPBR16,10.0.0.62 -ROSITA_DEBELLIS,ROSITA_DEBELLIS-MPBR16,10.0.0.63 -WILFRED_DRAKE,WILFRED_DRAKE-MPBR16,10.0.0.64 -ISIAH_HANAWAY,ISIAH_HANAWAY-MPBR16,10.0.0.65 -INEZ_GREENLER,INEZ_GREENLER-MPBR16,10.0.0.66 -CHARISSA_CAPEZZUTO,CHARISSA_CAPEZZUTO-MPBR16,10.0.0.67 -ARMANDO_MCGRAY,ARMANDO_MCGRAY-MPBR16,10.0.0.68 -JUNIOR_LAFLAMME,JUNIOR_LAFLAMME-MPBR16,10.0.0.69 -RENE_HOUGE,RENE_HOUGE-MPBR16,10.0.0.70 -CARY_RODAL,CARY_RODAL-MPBR16,10.0.0.71 -ERIC_MORITZ,ERIC_MORITZ-MPBR16,10.0.0.72 -TOBY_LAFRANCE,TOBY_LAFRANCE-MPBR16,10.0.0.73 -LUANNE_ESKRIDGE,LUANNE_ESKRIDGE-MPBR16,10.0.0.74 -FREDERICK_PONTORIERO,FREDERICK_PONTORIERO-MPBR16,10.0.0.75 -NIGEL_NEACE,NIGEL_NEACE-MPBR16,10.0.0.76 -ADAM_BUEHRING,ADAM_BUEHRING-MPBR16,10.0.0.77 -IVORY_BONIER,IVORY_BONIER-MPBR16,10.0.0.78 -ISIDRO_ALBANESE,ISIDRO_ALBANESE-MPBR16,10.0.0.79 -ARLENE_SHEEDY,ARLENE_SHEEDY-MPBR16,10.0.0.80 -JAKE_BRADY,JAKE_BRADY-MPBR16,10.0.0.81 -CRYSTAL_CURZ,CRYSTAL_CURZ-MPBR16,10.0.0.82 -ANTOINE_BOWYER,ANTOINE_BOWYER-MPBR16,10.0.0.83 -FANNY_MAULTSBY,FANNY_MAULTSBY-MPBR16,10.0.0.84 -ERIK_KOSS,ERIK_KOSS-MPBR16,10.0.0.85 -DION_GILLOTTI,DION_GILLOTTI-MPBR16,10.0.0.86 -NILDA_SORATOS,NILDA_SORATOS-MPBR16,10.0.0.87 -AMY_WHINERY,AMY_WHINERY-MPBR16,10.0.0.88 -MYLES_RAIL,MYLES_RAIL-MPBR16,10.0.0.89 -JEREMY_PEMBER,JEREMY_PEMBER-MPBR16,10.0.0.90 -CHRISTIN_MINZEL,CHRISTIN_MINZEL-MPBR16,10.0.0.91 -NINA_OKUDA,NINA_OKUDA-MPBR16,10.0.0.92 -LACEY_IANNUCCI,LACEY_IANNUCCI-MPBR16,10.0.0.93 -KIMBERLI_CASALMAN,KIMBERLI_CASALMAN-MPBR16,10.0.0.94 -KIZZY_SOLGOVIC,KIZZY_SOLGOVIC-MPBR16,10.0.0.95 -ROGELIO_KOTERA,ROGELIO_KOTERA-MPBR16,10.0.0.96 -IN_SODHI,IN_SODHI-MPBR16,10.0.0.97 -ZENAIDA_KNIGHTER,ZENAIDA_KNIGHTER-MPBR16,10.0.0.98 -SERINA_WOODELL,SERINA_WOODELL-MPBR16,10.0.0.99 -KRISTEN_LUNEAU,KRISTEN_LUNEAU-MPBR16,10.0.0.100 -JEFFREY_ALVARENGA,JEFFREY_ALVARENGA-MPBR16,10.0.0.101 -CARIDAD_DOUGHTIE,CARIDAD_DOUGHTIE-MPBR16,10.0.0.102 -ISAURA_LUDGOOD,ISAURA_LUDGOOD-MPBR16,10.0.0.103 -ARLENA_FREUDENBURG,ARLENA_FREUDENBURG-MPBR16,10.0.0.104 -MATTHEW_FERRE,MATTHEW_FERRE-MPBR16,10.0.0.105 -WM_RUSH,WM_RUSH-MPBR16,10.0.0.106 -BOBBY_MOON,BOBBY_MOON-MPBR16,10.0.0.107 -KATY_HIPPERT,KATY_HIPPERT-MPBR16,10.0.0.108 -BRENDAN_WAREING,BRENDAN_WAREING-MPBR16,10.0.0.109 -RUSSELL_LEDDON,RUSSELL_LEDDON-MPBR16,10.0.0.110 -DONOVAN_MAHER,DONOVAN_MAHER-MPBR16,10.0.0.111 -MONICA_FRANCESE,MONICA_FRANCESE-MPBR16,10.0.0.112 -CATALINA_DURON,CATALINA_DURON-MPBR16,10.0.0.113 -NIDA_ROMAR,NIDA_ROMAR-MPBR16,10.0.0.114 -LYLE_MIECZKOWSKI,LYLE_MIECZKOWSKI-MPBR16,10.0.0.115 -ARON_HIPP,ARON_HIPP-MPBR16,10.0.0.116 -ORVILLE_NIELAND,ORVILLE_NIELAND-MPBR16,10.0.0.117 -BLYTHE_SHOUN,BLYTHE_SHOUN-MPBR16,10.0.0.118 -JOSEPH_SPADY,JOSEPH_SPADY-MPBR16,10.0.0.119 -JAMEY_STONEBRAKER,JAMEY_STONEBRAKER-MPBR16,10.0.0.120 -JIMMY_LISONBEE,JIMMY_LISONBEE-MPBR16,10.0.0.121 -BELINDA_MISKO,BELINDA_MISKO-MPBR16,10.0.0.122 -IRMA_ROSE,IRMA_ROSE-MPBR16,10.0.0.123 -TAWANNA_FRANZONI,TAWANNA_FRANZONI-MPBR16,10.0.0.124 -HALLIE_DINKIN,HALLIE_DINKIN-MPBR16,10.0.0.125 -SIDNEY_BRUN,SIDNEY_BRUN-MPBR16,10.0.0.126 -NIKI_CHAPIN,NIKI_CHAPIN-MPBR16,10.0.0.127 -TERESA_MORAIS,TERESA_MORAIS-MPBR16,10.0.0.128 -SIMON_SABO,SIMON_SABO-MPBR16,10.0.0.129 -REGINALD_LACHERMEIER,REGINALD_LACHERMEIER-MPBR16,10.0.0.130 -SIMONE_SCHAEFER,SIMONE_SCHAEFER-MPBR16,10.0.0.131 -COREY_SCHAMP,COREY_SCHAMP-MPBR16,10.0.0.132 -CLAYTON_MESZAROS,CLAYTON_MESZAROS-MPBR16,10.0.0.133 -CARLOS_DALLMEYER,CARLOS_DALLMEYER-MPBR16,10.0.0.134 -HUGO_LOUIE,HUGO_LOUIE-MPBR16,10.0.0.135 -FRAN_FANN,FRAN_FANN-MPBR16,10.0.0.136 -DUANE_BENINCASE,DUANE_BENINCASE-MPBR16,10.0.0.137 -ARNOLD_DONAHOE,ARNOLD_DONAHOE-MPBR16,10.0.0.138 -WILLIAM_SHERLEY,WILLIAM_SHERLEY-MPBR16,10.0.0.139 -MALIA_GFELLER,MALIA_GFELLER-MPBR16,10.0.0.140 -LOVIE_TOMERLIN,LOVIE_TOMERLIN-MPBR16,10.0.0.141 -LILLIA_SIMMONEAU,LILLIA_SIMMONEAU-MPBR16,10.0.0.142 -HAILEY_ABDUR,HAILEY_ABDUR-MPBR16,10.0.0.143 -JACOB_ROBICHAUD,JACOB_ROBICHAUD-MPBR16,10.0.0.144 -TAMAR_BALLADARES,TAMAR_BALLADARES-MPBR16,10.0.0.145 -LEEANN_STEMM,LEEANN_STEMM-MPBR16,10.0.0.146 -WINIFRED_STELLMACHER,WINIFRED_STELLMACHER-MPBR16,10.0.0.147 -FELIPE_HAMSHER,FELIPE_HAMSHER-MPBR16,10.0.0.148 -MALORIE_PAULUS,MALORIE_PAULUS-MPBR16,10.0.0.149 -LOUANN_MARESCO,LOUANN_MARESCO-MPBR16,10.0.0.150 -ANTWAN_MOWERS,ANTWAN_MOWERS-MPBR16,10.0.0.151 -WM_IRELAND,WM_IRELAND-MPBR16,10.0.0.152 -JOE_HEYER,JOE_HEYER-MPBR16,10.0.0.153 -KENNETH_BUNDREN,KENNETH_BUNDREN-MPBR16,10.0.0.154 -ANGEL_KILMARTIN,ANGEL_KILMARTIN-MPBR16,10.0.0.155 -HAYDEN_BROADNAX,HAYDEN_BROADNAX-MPBR16,10.0.0.156 -HYON_BOREN,HYON_BOREN-MPBR16,10.0.0.157 -FRANKIE_METCALF,FRANKIE_METCALF-MPBR16,10.0.0.158 -JONATHAN_NETHERLAND,JONATHAN_NETHERLAND-MPBR16,10.0.0.159 -ODILIA_ONEIL,ODILIA_ONEIL-MPBR16,10.0.0.160 -RONNI_DOROUGH,RONNI_DOROUGH-MPBR16,10.0.0.161 -DEIDRA_MANZO,DEIDRA_MANZO-MPBR16,10.0.0.162 -KARL_ALSBROOK,KARL_ALSBROOK-MPBR16,10.0.0.163 -MOHAMED_MCMANAMY,MOHAMED_MCMANAMY-MPBR16,10.0.0.164 -AGATHA_TOLEDO,AGATHA_TOLEDO-MPBR16,10.0.0.165 -CARMEN_FATCHETT,CARMEN_FATCHETT-MPBR16,10.0.0.166 -ANITA_PICKRELL,ANITA_PICKRELL-MPBR16,10.0.0.167 -GLENDA_YEATS,GLENDA_YEATS-MPBR16,10.0.0.168 -ALFREDO_EK,ALFREDO_EK-MPBR16,10.0.0.169 -MARLON_GIRST,MARLON_GIRST-MPBR16,10.0.0.170 -ALISON_GRUNDER,ALISON_GRUNDER-MPBR16,10.0.0.171 -BERT_DEFRANCESCO,BERT_DEFRANCESCO-MPBR16,10.0.0.172 -LAWANDA_VOGELGESANG,LAWANDA_VOGELGESANG-MPBR16,10.0.0.173 -HA_SILBERBERG,HA_SILBERBERG-MPBR16,10.0.0.174 -SANDI_DIMICCO,SANDI_DIMICCO-MPBR16,10.0.0.175 -VINCE_STANDING,VINCE_STANDING-MPBR16,10.0.0.176 -ROBERT_MONTAS,ROBERT_MONTAS-MPBR16,10.0.0.177 -ADOLFO_CHUONG,ADOLFO_CHUONG-MPBR16,10.0.0.178 -LORE_LINGG,LORE_LINGG-MPBR16,10.0.0.179 -KRYSTLE_PENNYPACKER,KRYSTLE_PENNYPACKER-MPBR16,10.0.0.180 -RACHELLE_SCHANER,RACHELLE_SCHANER-MPBR16,10.0.0.181 -VIOLETA_PRATCHER,VIOLETA_PRATCHER-MPBR16,10.0.0.182 -KARI_SHOVER,KARI_SHOVER-MPBR16,10.0.0.183 -DUNG_ENTRIKEN,DUNG_ENTRIKEN-MPBR16,10.0.0.184 -JAQUELINE_VILLALVAZO,JAQUELINE_VILLALVAZO-MPBR16,10.0.0.185 -RUDOLPH_PINELO,RUDOLPH_PINELO-MPBR16,10.0.0.186 -BRET_KURDZIEL,BRET_KURDZIEL-MPBR16,10.0.0.187 -JESSE_WAUCH,JESSE_WAUCH-MPBR16,10.0.0.188 -CINDA_CANUPP,CINDA_CANUPP-MPBR16,10.0.0.189 -JOEL_MCALARNEY,JOEL_MCALARNEY-MPBR16,10.0.0.190 -STEVEN_SVENNUNGSEN,STEVEN_SVENNUNGSEN-MPBR16,10.0.0.191 -FRED_ROZEK,FRED_ROZEK-MPBR16,10.0.0.192 -TERA_ANDRUSS,TERA_ANDRUSS-MPBR16,10.0.0.193 -ESTA_WILHIDE,ESTA_WILHIDE-MPBR16,10.0.0.194 -JEREMY_OLIVERES,JEREMY_OLIVERES-MPBR16,10.0.0.195 -GAIL_HARRELSON,GAIL_HARRELSON-MPBR16,10.0.0.196 -JEWELL_CARNAHAN,JEWELL_CARNAHAN-MPBR16,10.0.0.197 -TYRON_REAVIS,TYRON_REAVIS-MPBR16,10.0.0.198 -JAMAR_SANJOSE,JAMAR_SANJOSE-MPBR16,10.0.0.199 -PENELOPE_ANNIS,PENELOPE_ANNIS-MPBR16,10.0.0.200 -TONY_CASTANON,TONY_CASTANON-MPBR16,10.0.0.201 -RHONDA_HANNAFORD,RHONDA_HANNAFORD-MPBR16,10.0.0.202 -DARYL_BOGUE,DARYL_BOGUE-MPBR16,10.0.0.203 -MARLON_RENOLLET,MARLON_RENOLLET-MPBR16,10.0.0.204 -MARITA_KEYTON,MARITA_KEYTON-MPBR16,10.0.0.205 -DEWEY_WERTHEIMER,DEWEY_WERTHEIMER-MPBR16,10.0.0.206 -CAROLE_SCHIEFFER,CAROLE_SCHIEFFER-MPBR16,10.0.0.207 -RHONDA_SCHAMS,RHONDA_SCHAMS-MPBR16,10.0.0.208 -LENA_MOLTZ,LENA_MOLTZ-MPBR16,10.0.0.209 -LARUE_GENS,LARUE_GENS-MPBR16,10.0.0.210 -DANITA_TEJADA,DANITA_TEJADA-MPBR16,10.0.0.211 -SHERMAN_BEUS,SHERMAN_BEUS-MPBR16,10.0.0.212 -LOURA_BLANCHE,LOURA_BLANCHE-MPBR16,10.0.0.213 -STEVE_TREMBLEY,STEVE_TREMBLEY-MPBR16,10.0.0.214 -KIM_MONTIE,KIM_MONTIE-MPBR16,10.0.0.215 -JULIAN_DEKLE,JULIAN_DEKLE-MPBR16,10.0.0.216 -LONNY_CIRAOLO,LONNY_CIRAOLO-MPBR16,10.0.0.217 -RUSSEL_BOHMER,RUSSEL_BOHMER-MPBR16,10.0.0.218 -LINDSAY_NASCA,LINDSAY_NASCA-MPBR16,10.0.0.219 -CHASITY_FONGER,CHASITY_FONGER-MPBR16,10.0.0.220 -STEPHAINE_HITTMAN,STEPHAINE_HITTMAN-MPBR16,10.0.0.221 -FELICE_DEROSIA,FELICE_DEROSIA-MPBR16,10.0.0.222 -REX_VAINE,REX_VAINE-MPBR16,10.0.0.223 -MERRILEE_OSTERGREN,MERRILEE_OSTERGREN-MPBR16,10.0.0.224 -MAXIMINA_KOLASA,MAXIMINA_KOLASA-MPBR16,10.0.0.225 -RANDA_REMSEN,RANDA_REMSEN-MPBR16,10.0.0.226 -ALEX_MOLOCK,ALEX_MOLOCK-MPBR16,10.0.0.227 -KELLI_LEANOS,KELLI_LEANOS-MPBR16,10.0.0.228 -BOB_GERACE,BOB_GERACE-MPBR16,10.0.0.229 -ALVARO_MONT,ALVARO_MONT-MPBR16,10.0.0.230 -SON_HEDQUIST,SON_HEDQUIST-MPBR16,10.0.0.231 -WELDON_ROSS,WELDON_ROSS-MPBR16,10.0.0.232 -JACKIE_REINBOLD,JACKIE_REINBOLD-MPBR16,10.0.0.233 -DEVIN_BEAUMONTE,DEVIN_BEAUMONTE-MPBR16,10.0.0.234 -MICHELLE_WILLIBRAND,MICHELLE_WILLIBRAND-MPBR16,10.0.0.235 -BERNIE_HYMAS,BERNIE_HYMAS-MPBR16,10.0.0.236 -ADAM_PINGLETON,ADAM_PINGLETON-MPBR16,10.0.0.237 -BETTE_MADRIZ,BETTE_MADRIZ-MPBR16,10.0.0.238 -BRUNO_HARRIOTT,BRUNO_HARRIOTT-MPBR16,10.0.0.239 -ROCKY_SHUTTER,ROCKY_SHUTTER-MPBR16,10.0.0.240 -FAUSTINO_HERSCHELMAN,FAUSTINO_HERSCHELMAN-MPBR16,10.0.0.241 -LENORA_HALLMARK,LENORA_HALLMARK-MPBR16,10.0.0.242 -ALVA_LANDRETH,ALVA_LANDRETH-MPBR16,10.0.0.243 -HIROKO_LANDRIGAN,HIROKO_LANDRIGAN-MPBR16,10.0.0.244 -ROSETTA_PROVINE,ROSETTA_PROVINE-MPBR16,10.0.0.245 -MARLON_DOUBET,MARLON_DOUBET-MPBR16,10.0.0.246 -ROB_WILLINSKY,ROB_WILLINSKY-MPBR16,10.0.0.247 -CESAR_LOCUST,CESAR_LOCUST-MPBR16,10.0.0.248 -ELENORA_GUESS,ELENORA_GUESS-MPBR16,10.0.0.249 -DEVON_HERBOLD,DEVON_HERBOLD-MPBR16,10.0.0.250 -ALTON_BENBOW,ALTON_BENBOW-MPBR16,10.0.0.251 -CARMEN_MILNE,CARMEN_MILNE-MPBR16,10.0.0.252 -OLIN_MAVITY,OLIN_MAVITY-MPBR16,10.0.0.253 -LORENA_WELFORD,LORENA_WELFORD-MPBR16,10.0.0.254 -HUNTER_MARSCH,HUNTER_MARSCH-MPBR16,10.0.0.255 -AUBREY_JANOSIK,AUBREY_JANOSIK-MPBR16,10.0.1.0 -ALLINE_WAGG,ALLINE_WAGG-MPBR16,10.0.1.1 -BRIDGETT_BADDER,BRIDGETT_BADDER-MPBR16,10.0.1.2 -JOSEPH_MARTI,JOSEPH_MARTI-MPBR16,10.0.1.3 -VEDA_COTTEW,VEDA_COTTEW-MPBR16,10.0.1.4 -HOLLEY_FLOREZ,HOLLEY_FLOREZ-MPBR16,10.0.1.5 -CHARLIE_HOLLOMON,CHARLIE_HOLLOMON-MPBR16,10.0.1.6 -DANNY_PITTMAN,DANNY_PITTMAN-MPBR16,10.0.1.7 -ELANOR_DAGG,ELANOR_DAGG-MPBR16,10.0.1.8 -MARGART_TOURIGNY,MARGART_TOURIGNY-MPBR16,10.0.1.9 -MOHAMMAD_PEDROTTI,MOHAMMAD_PEDROTTI-MPBR16,10.0.1.10 -CHRISTIN_VENEMAN,CHRISTIN_VENEMAN-MPBR16,10.0.1.11 -JUSTIN_KER,JUSTIN_KER-MPBR16,10.0.1.12 -LOUIE_VERBECK,LOUIE_VERBECK-MPBR16,10.0.1.13 -BARRETT_CARLOCK,BARRETT_CARLOCK-MPBR16,10.0.1.14 -YVETTE_DEMARS,YVETTE_DEMARS-MPBR16,10.0.1.15 -JAYNA_SYBOUNHEUAN,JAYNA_SYBOUNHEUAN-MPBR16,10.0.1.16 -LYLE_GILYARD,LYLE_GILYARD-MPBR16,10.0.1.17 -ALAYNA_DAVITO,ALAYNA_DAVITO-MPBR16,10.0.1.18 -SIMONNE_ALLBRITTON,SIMONNE_ALLBRITTON-MPBR16,10.0.1.19 -CLINT_SANTACRUZ,CLINT_SANTACRUZ-MPBR16,10.0.1.20 -CHERYLE_FENNELL,CHERYLE_FENNELL-MPBR16,10.0.1.21 -SHARLA_WINDHAM,SHARLA_WINDHAM-MPBR16,10.0.1.22 -EFRAIN_MONTEVERDE,EFRAIN_MONTEVERDE-MPBR16,10.0.1.23 -DAYNA_SOBEY,DAYNA_SOBEY-MPBR16,10.0.1.24 -THEODORE_FARINO,THEODORE_FARINO-MPBR16,10.0.1.25 -FELISA_MERRIFIELD,FELISA_MERRIFIELD-MPBR16,10.0.1.26 -HILMA_DEMENT,HILMA_DEMENT-MPBR16,10.0.1.27 -TRENTON_OSMAN,TRENTON_OSMAN-MPBR16,10.0.1.28 -VINA_PARRENT,VINA_PARRENT-MPBR16,10.0.1.29 -ABDUL_OKUN,ABDUL_OKUN-MPBR16,10.0.1.30 -BOBBY_CERNY,BOBBY_CERNY-MPBR16,10.0.1.31 -JODEE_MAGARELLI,JODEE_MAGARELLI-MPBR16,10.0.1.32 -NADA_TREFF,NADA_TREFF-MPBR16,10.0.1.33 -TYESHA_MATSKO,TYESHA_MATSKO-MPBR16,10.0.1.34 -MOLLY_KOZAR,MOLLY_KOZAR-MPBR16,10.0.1.35 -MELODEE_TRIPPI,MELODEE_TRIPPI-MPBR16,10.0.1.36 -CLARK_BATEY,CLARK_BATEY-MPBR16,10.0.1.37 -KATIE_SMUIN,KATIE_SMUIN-MPBR16,10.0.1.38 -DELPHINE_MATAS,DELPHINE_MATAS-MPBR16,10.0.1.39 -ALVIN_BYRN,ALVIN_BYRN-MPBR16,10.0.1.40 -ALENE_YAWN,ALENE_YAWN-MPBR16,10.0.1.41 -BECKY_KOSAKOWSKI,BECKY_KOSAKOWSKI-MPBR16,10.0.1.42 -JUNG_KVAM,JUNG_KVAM-MPBR16,10.0.1.43 -TAWNY_PALOS,TAWNY_PALOS-MPBR16,10.0.1.44 -JERILYN_SKATTEBO,JERILYN_SKATTEBO-MPBR16,10.0.1.45 -RIGOBERTO_MANJARREZ,RIGOBERTO_MANJARREZ-MPBR16,10.0.1.46 -SONYA_PIERRE,SONYA_PIERRE-MPBR16,10.0.1.47 -KITTY_FANNINGS,KITTY_FANNINGS-MPBR16,10.0.1.48 -MARLIN_FLINT,MARLIN_FLINT-MPBR16,10.0.1.49 -RICHELLE_CARLEW,RICHELLE_CARLEW-MPBR16,10.0.1.50 -MELISSA_PIFER,MELISSA_PIFER-MPBR16,10.0.1.51 -ISRAEL_MASSO,ISRAEL_MASSO-MPBR16,10.0.1.52 -CARLOTTA_ENCISO,CARLOTTA_ENCISO-MPBR16,10.0.1.53 -KACIE_MARSHA,KACIE_MARSHA-MPBR16,10.0.1.54 -NANETTE_CISNEROS,NANETTE_CISNEROS-MPBR16,10.0.1.55 -LILY_MENCER,LILY_MENCER-MPBR16,10.0.1.56 -ANDREW_LABRADA,ANDREW_LABRADA-MPBR16,10.0.1.57 -ALEXIS_PORCH,ALEXIS_PORCH-MPBR16,10.0.1.58 -JOEL_MCKITRICK,JOEL_MCKITRICK-MPBR16,10.0.1.59 -FERN_PETTWAY,FERN_PETTWAY-MPBR16,10.0.1.60 -REID_FEEMSTER,REID_FEEMSTER-MPBR16,10.0.1.61 -MARIA_ARNS,MARIA_ARNS-MPBR16,10.0.1.62 -ALBA_GUMMO,ALBA_GUMMO-MPBR16,10.0.1.63 -JEFFREY_HEIT,JEFFREY_HEIT-MPBR16,10.0.1.64 -JERMAINE_CRESPI,JERMAINE_CRESPI-MPBR16,10.0.1.65 -ODIS_PINCOCK,ODIS_PINCOCK-MPBR16,10.0.1.66 -OLIN_HANKEY,OLIN_HANKEY-MPBR16,10.0.1.67 -EMMANUEL_TAUER,EMMANUEL_TAUER-MPBR16,10.0.1.68 -DETRA_VIVIANI,DETRA_VIVIANI-MPBR16,10.0.1.69 -GORDON_BANCROFT,GORDON_BANCROFT-MPBR16,10.0.1.70 -JENA_ALLOWAY,JENA_ALLOWAY-MPBR16,10.0.1.71 -BRUCE_KARCICH,BRUCE_KARCICH-MPBR16,10.0.1.72 -TITUS_HINCHMAN,TITUS_HINCHMAN-MPBR16,10.0.1.73 -BART_FORDHAM,BART_FORDHAM-MPBR16,10.0.1.74 -ROSIE_GILDERSLEEVE,ROSIE_GILDERSLEEVE-MPBR16,10.0.1.75 -CORAZON_MATKOVIC,CORAZON_MATKOVIC-MPBR16,10.0.1.76 -EDWIN_FADLEY,EDWIN_FADLEY-MPBR16,10.0.1.77 -FRED_HUDDLESTON,FRED_HUDDLESTON-MPBR16,10.0.1.78 -STEWART_MACKYNEN,STEWART_MACKYNEN-MPBR16,10.0.1.79 -OUIDA_HEUNG,OUIDA_HEUNG-MPBR16,10.0.1.80 -FLOYD_DYCE,FLOYD_DYCE-MPBR16,10.0.1.81 -GLEN_JEFFERDS,GLEN_JEFFERDS-MPBR16,10.0.1.82 -BROCK_COGBURN,BROCK_COGBURN-MPBR16,10.0.1.83 -LEONOR_WILKS,LEONOR_WILKS-MPBR16,10.0.1.84 -LAURICE_BELLINGHAM,LAURICE_BELLINGHAM-MPBR16,10.0.1.85 -PENELOPE_PLATH,PENELOPE_PLATH-MPBR16,10.0.1.86 -MARYLOU_KANGAS,MARYLOU_KANGAS-MPBR16,10.0.1.87 -APRIL_KROTZ,APRIL_KROTZ-MPBR16,10.0.1.88 -CARLOTTA_MATTERS,CARLOTTA_MATTERS-MPBR16,10.0.1.89 -KIRA_MCCONNEY,KIRA_MCCONNEY-MPBR16,10.0.1.90 -CARLEY_NERO,CARLEY_NERO-MPBR16,10.0.1.91 -GILBERTO_DESHA,GILBERTO_DESHA-MPBR16,10.0.1.92 -GRISELDA_RAGER,GRISELDA_RAGER-MPBR16,10.0.1.93 -ALLEEN_KANE,ALLEEN_KANE-MPBR16,10.0.1.94 -KATHARINE_NISHIO,KATHARINE_NISHIO-MPBR16,10.0.1.95 -TABATHA_TOMASINO,TABATHA_TOMASINO-MPBR16,10.0.1.96 -ROXANA_POLOSKY,ROXANA_POLOSKY-MPBR16,10.0.1.97 -CODY_SHABAZZ,CODY_SHABAZZ-MPBR16,10.0.1.98 -CHANTELL_HITZEMAN,CHANTELL_HITZEMAN-MPBR16,10.0.1.99 -ALEXANDER_RUTT,ALEXANDER_RUTT-MPBR16,10.0.1.100 -MAYRA_JERNSTROM,MAYRA_JERNSTROM-MPBR16,10.0.1.101 -AMBER_SAUCEDA,AMBER_SAUCEDA-MPBR16,10.0.1.102 -LOUIS_DENLEY,LOUIS_DENLEY-MPBR16,10.0.1.103 -CANDY_ROSER,CANDY_ROSER-MPBR16,10.0.1.104 -WILFORD_TINKLENBERG,WILFORD_TINKLENBERG-MPBR16,10.0.1.105 -ARRON_BOOKWALTER,ARRON_BOOKWALTER-MPBR16,10.0.1.106 -ERNEST_HOUTS,ERNEST_HOUTS-MPBR16,10.0.1.107 -MARIO_KOSIN,MARIO_KOSIN-MPBR16,10.0.1.108 -BESSIE_GILCREST,BESSIE_GILCREST-MPBR16,10.0.1.109 -CHARLES_SCHROEPFER,CHARLES_SCHROEPFER-MPBR16,10.0.1.110 -VIVIENNE_LIERMAN,VIVIENNE_LIERMAN-MPBR16,10.0.1.111 -TAMMIE_GUSCIORA,TAMMIE_GUSCIORA-MPBR16,10.0.1.112 -BERNARDO_BALDER,BERNARDO_BALDER-MPBR16,10.0.1.113 -HANG_BACKMON,HANG_BACKMON-MPBR16,10.0.1.114 -JESSE_ARGUETA,JESSE_ARGUETA-MPBR16,10.0.1.115 -KENNY_TEST,KENNY_TEST-MPBR16,10.0.1.116 -PATTY_FANTON,PATTY_FANTON-MPBR16,10.0.1.117 -DRUSILLA_WINCHENBACH,DRUSILLA_WINCHENBACH-MPBR16,10.0.1.118 -FORREST_DEBARDELABEN,FORREST_DEBARDELABEN-MPBR16,10.0.1.119 -VINCE_MENTO,VINCE_MENTO-MPBR16,10.0.1.120 -KARIE_COUTCHER,KARIE_COUTCHER-MPBR16,10.0.1.121 -NED_SCHULDER,NED_SCHULDER-MPBR16,10.0.1.122 -NIKOLE_TELEP,NIKOLE_TELEP-MPBR16,10.0.1.123 -JUSTINA_NAES,JUSTINA_NAES-MPBR16,10.0.1.124 -MAGDALENA_TONG,MAGDALENA_TONG-MPBR16,10.0.1.125 -FLOYD_SWOPE,FLOYD_SWOPE-MPBR16,10.0.1.126 -SHASTA_MICHITSCH,SHASTA_MICHITSCH-MPBR16,10.0.1.127 -ASHLYN_KNEIP,ASHLYN_KNEIP-MPBR16,10.0.1.128 -OLIMPIA_MANDERS,OLIMPIA_MANDERS-MPBR16,10.0.1.129 -ANTHONY_STANSBERRY,ANTHONY_STANSBERRY-MPBR16,10.0.1.130 -GILBERT_KLEIFGEN,GILBERT_KLEIFGEN-MPBR16,10.0.1.131 -KELLY_APPLEGARTH,KELLY_APPLEGARTH-MPBR16,10.0.1.132 -ANDREA_RATHROCK,ANDREA_RATHROCK-MPBR16,10.0.1.133 -KEN_WEIST,KEN_WEIST-MPBR16,10.0.1.134 -ALLIE_LIND,ALLIE_LIND-MPBR16,10.0.1.135 -BERNIE_GALLISHAW,BERNIE_GALLISHAW-MPBR16,10.0.1.136 -RUBEN_CHAUHAN,RUBEN_CHAUHAN-MPBR16,10.0.1.137 -TIMMY_SHRAMEK,TIMMY_SHRAMEK-MPBR16,10.0.1.138 -DIEDRA_NEUMAYER,DIEDRA_NEUMAYER-MPBR16,10.0.1.139 -SHERMAN_MALIS,SHERMAN_MALIS-MPBR16,10.0.1.140 -LORIE_DELASBOUR,LORIE_DELASBOUR-MPBR16,10.0.1.141 -NEVA_LAMPHIER,NEVA_LAMPHIER-MPBR16,10.0.1.142 -CARMEL_RUHNKE,CARMEL_RUHNKE-MPBR16,10.0.1.143 -CHIN_SACHE,CHIN_SACHE-MPBR16,10.0.1.144 -MINNIE_BURNSWORTH,MINNIE_BURNSWORTH-MPBR16,10.0.1.145 -CORINNE_DANA,CORINNE_DANA-MPBR16,10.0.1.146 -ROSINA_MARANDER,ROSINA_MARANDER-MPBR16,10.0.1.147 -ELINOR_RUDASILL,ELINOR_RUDASILL-MPBR16,10.0.1.148 -JACKIE_SEMPLE,JACKIE_SEMPLE-MPBR16,10.0.1.149 -ADELLA_READNOUR,ADELLA_READNOUR-MPBR16,10.0.1.150 -MARLON_GARNETTE,MARLON_GARNETTE-MPBR16,10.0.1.151 -DOROTHEA_ZENG,DOROTHEA_ZENG-MPBR16,10.0.1.152 -EMILY_MCCLINE,EMILY_MCCLINE-MPBR16,10.0.1.153 -RUBEN_BUSUTTIL,RUBEN_BUSUTTIL-MPBR16,10.0.1.154 -NISHA_BUIST,NISHA_BUIST-MPBR16,10.0.1.155 -ASA_HUTTEN,ASA_HUTTEN-MPBR16,10.0.1.156 -STEPHAN_CASTILO,STEPHAN_CASTILO-MPBR16,10.0.1.157 -SYLVIA_ZAUSCH,SYLVIA_ZAUSCH-MPBR16,10.0.1.158 -JOE_GRAHAM,JOE_GRAHAM-MPBR16,10.0.1.159 -CARRI_DETOMMASO,CARRI_DETOMMASO-MPBR16,10.0.1.160 -FRANCISCO_COLGROVE,FRANCISCO_COLGROVE-MPBR16,10.0.1.161 -CESAR_KOURI,CESAR_KOURI-MPBR16,10.0.1.162 -ALFONSO_BROSEY,ALFONSO_BROSEY-MPBR16,10.0.1.163 -MALCOLM_SWEITZER,MALCOLM_SWEITZER-MPBR16,10.0.1.164 -CLYDE_GIGANTE,CLYDE_GIGANTE-MPBR16,10.0.1.165 -JOYCELYN_ROMANSKI,JOYCELYN_ROMANSKI-MPBR16,10.0.1.166 -CAITLYN_WEST,CAITLYN_WEST-MPBR16,10.0.1.167 -WILLIAM_ENGELKEMIER,WILLIAM_ENGELKEMIER-MPBR16,10.0.1.168 -VIVIANA_INGERSON,VIVIANA_INGERSON-MPBR16,10.0.1.169 -MANUELA_NEISLER,MANUELA_NEISLER-MPBR16,10.0.1.170 -QUENTIN_GOELDNER,QUENTIN_GOELDNER-MPBR16,10.0.1.171 -ALISHA_LATSON,ALISHA_LATSON-MPBR16,10.0.1.172 -NATHAN_LORENZANA,NATHAN_LORENZANA-MPBR16,10.0.1.173 -EDMUND_GIZA,EDMUND_GIZA-MPBR16,10.0.1.174 -KENDRICK_TURRENTINE,KENDRICK_TURRENTINE-MPBR16,10.0.1.175 -BUDDY_CRATCH,BUDDY_CRATCH-MPBR16,10.0.1.176 -ALIA_LITCHFORD,ALIA_LITCHFORD-MPBR16,10.0.1.177 -IESHA_MEDEZ,IESHA_MEDEZ-MPBR16,10.0.1.178 -GABRIELLA_GRINDSTAFF,GABRIELLA_GRINDSTAFF-MPBR16,10.0.1.179 -MARGARITE_BESSARD,MARGARITE_BESSARD-MPBR16,10.0.1.180 -MILTON_WNUK,MILTON_WNUK-MPBR16,10.0.1.181 -CASEY_BARTONE,CASEY_BARTONE-MPBR16,10.0.1.182 -PEGGY_SORUM,PEGGY_SORUM-MPBR16,10.0.1.183 -MARCIA_PECKINPAUGH,MARCIA_PECKINPAUGH-MPBR16,10.0.1.184 -WILLA_BLASETTI,WILLA_BLASETTI-MPBR16,10.0.1.185 -JAVIER_DURALL,JAVIER_DURALL-MPBR16,10.0.1.186 -GAIL_SCHOBER,GAIL_SCHOBER-MPBR16,10.0.1.187 -TRACEY_HEARL,TRACEY_HEARL-MPBR16,10.0.1.188 -TORRIE_LABER,TORRIE_LABER-MPBR16,10.0.1.189 -DEVIN_BALINT,DEVIN_BALINT-MPBR16,10.0.1.190 -ANNALISA_RUF,ANNALISA_RUF-MPBR16,10.0.1.191 -LON_DEJOHN,LON_DEJOHN-MPBR16,10.0.1.192 -SANG_MCDUFFIE,SANG_MCDUFFIE-MPBR16,10.0.1.193 -TONY_AMAYA,TONY_AMAYA-MPBR16,10.0.1.194 -SERGIO_SADOWSKY,SERGIO_SADOWSKY-MPBR16,10.0.1.195 -THOMAS_DUBREUIL,THOMAS_DUBREUIL-MPBR16,10.0.1.196 -NICOLAS_SEIDL,NICOLAS_SEIDL-MPBR16,10.0.1.197 -IRA_JEFFRESS,IRA_JEFFRESS-MPBR16,10.0.1.198 -MELVIN_VILLEDA,MELVIN_VILLEDA-MPBR16,10.0.1.199 -DOMINICK_CAUTHON,DOMINICK_CAUTHON-MPBR16,10.0.1.200 -CLEORA_OGUIN,CLEORA_OGUIN-MPBR16,10.0.1.201 -ANNETTA_SAINTLOUIS,ANNETTA_SAINTLOUIS-MPBR16,10.0.1.202 -KARIE_ALCALDE,KARIE_ALCALDE-MPBR16,10.0.1.203 -EDMUND_FAIRLESS,EDMUND_FAIRLESS-MPBR16,10.0.1.204 -GARTH_TRAMBLE,GARTH_TRAMBLE-MPBR16,10.0.1.205 -PAOLA_SUAREZ,PAOLA_SUAREZ-MPBR16,10.0.1.206 -AUSTIN_LUPTON,AUSTIN_LUPTON-MPBR16,10.0.1.207 -MIGUEL_FANG,MIGUEL_FANG-MPBR16,10.0.1.208 -MELIDA_HEROD,MELIDA_HEROD-MPBR16,10.0.1.209 -NOAH_GALIK,NOAH_GALIK-MPBR16,10.0.1.210 -DENNA_ROLFE,DENNA_ROLFE-MPBR16,10.0.1.211 -MERI_HODA,MERI_HODA-MPBR16,10.0.1.212 -HARLAN_ODONALD,HARLAN_ODONALD-MPBR16,10.0.1.213 -ALLYSON_HENION,ALLYSON_HENION-MPBR16,10.0.1.214 -GARY_LARCH,GARY_LARCH-MPBR16,10.0.1.215 -PRINCE_PEARY,PRINCE_PEARY-MPBR16,10.0.1.216 -LURA_BARINGER,LURA_BARINGER-MPBR16,10.0.1.217 -DARNELL_TABER,DARNELL_TABER-MPBR16,10.0.1.218 -NORBERT_COCUZZA,NORBERT_COCUZZA-MPBR16,10.0.1.219 -DEVIN_GAYLORD,DEVIN_GAYLORD-MPBR16,10.0.1.220 -MAMIE_MACKEN,MAMIE_MACKEN-MPBR16,10.0.1.221 -ARLINE_HODGE,ARLINE_HODGE-MPBR16,10.0.1.222 -LESLIE_URBANO,LESLIE_URBANO-MPBR16,10.0.1.223 -KARISSA_OBERT,KARISSA_OBERT-MPBR16,10.0.1.224 -FREDERICK_ARBALLO,FREDERICK_ARBALLO-MPBR16,10.0.1.225 -STEWART_NOBLIN,STEWART_NOBLIN-MPBR16,10.0.1.226 -DEIRDRE_MIJARES,DEIRDRE_MIJARES-MPBR16,10.0.1.227 -GISELA_WESTBERG,GISELA_WESTBERG-MPBR16,10.0.1.228 -HAL_FRANCES,HAL_FRANCES-MPBR16,10.0.1.229 -JEAN_ZAYAC,JEAN_ZAYAC-MPBR16,10.0.1.230 -TODD_LATTRELL,TODD_LATTRELL-MPBR16,10.0.1.231 -AMPARO_SIRES,AMPARO_SIRES-MPBR16,10.0.1.232 -ROLAND_SHEROD,ROLAND_SHEROD-MPBR16,10.0.1.233 -LOUISE_ELSHANT,LOUISE_ELSHANT-MPBR16,10.0.1.234 -DOREEN_KAUTZ,DOREEN_KAUTZ-MPBR16,10.0.1.235 -ROGELIO_CHIULLI,ROGELIO_CHIULLI-MPBR16,10.0.1.236 -DARIO_GLIDEWELL,DARIO_GLIDEWELL-MPBR16,10.0.1.237 -LESLIE_VANSCOY,LESLIE_VANSCOY-MPBR16,10.0.1.238 -LEE_NIEVES,LEE_NIEVES-MPBR16,10.0.1.239 -LANDON_WIECK,LANDON_WIECK-MPBR16,10.0.1.240 -SIMONE_JUUL,SIMONE_JUUL-MPBR16,10.0.1.241 -REDA_DIETRICK,REDA_DIETRICK-MPBR16,10.0.1.242 -AKILAH_MAIETTA,AKILAH_MAIETTA-MPBR16,10.0.1.243 -RAYE_KINMAN,RAYE_KINMAN-MPBR16,10.0.1.244 -DELFINA_MIKKELSON,DELFINA_MIKKELSON-MPBR16,10.0.1.245 -ORVILLE_SETZLER,ORVILLE_SETZLER-MPBR16,10.0.1.246 -RHODA_MOLDAN,RHODA_MOLDAN-MPBR16,10.0.1.247 -TRISH_SCHILLINGER,TRISH_SCHILLINGER-MPBR16,10.0.1.248 -RODRIGO_SCROGGIN,RODRIGO_SCROGGIN-MPBR16,10.0.1.249 -STERLING_SHRINER,STERLING_SHRINER-MPBR16,10.0.1.250 -HARVEY_TAUBER,HARVEY_TAUBER-MPBR16,10.0.1.251 -CLIFF_MONTOUR,CLIFF_MONTOUR-MPBR16,10.0.1.252 -KURTIS_YARK,KURTIS_YARK-MPBR16,10.0.1.253 -COLLEEN_SLATE,COLLEEN_SLATE-MPBR16,10.0.1.254 -TEQUILA_GROSKREUTZ,TEQUILA_GROSKREUTZ-MPBR16,10.0.1.255 -RUBEN_ALGARIN,RUBEN_ALGARIN-MPBR16,10.0.2.0 -KENNETH_INNOCENTI,KENNETH_INNOCENTI-MPBR16,10.0.2.1 -CHARMAINE_ALTERMATT,CHARMAINE_ALTERMATT-MPBR16,10.0.2.2 -JOHN_MOJICA,JOHN_MOJICA-MPBR16,10.0.2.3 -FREDDY_DELORE,FREDDY_DELORE-MPBR16,10.0.2.4 -FLORENTINO_BLAY,FLORENTINO_BLAY-MPBR16,10.0.2.5 -LANE_ALEXNDER,LANE_ALEXNDER-MPBR16,10.0.2.6 -CAROLINA_FINICAL,CAROLINA_FINICAL-MPBR16,10.0.2.7 -COY_CASHION,COY_CASHION-MPBR16,10.0.2.8 -LISA_ERB,LISA_ERB-MPBR16,10.0.2.9 -NORENE_HODNETT,NORENE_HODNETT-MPBR16,10.0.2.10 -RENE_EDINGER,RENE_EDINGER-MPBR16,10.0.2.11 -LINCOLN_LUCIER,LINCOLN_LUCIER-MPBR16,10.0.2.12 -COLETTE_SLOVER,COLETTE_SLOVER-MPBR16,10.0.2.13 -WILBUR_DEDECKER,WILBUR_DEDECKER-MPBR16,10.0.2.14 -MARTHA_CHESSER,MARTHA_CHESSER-MPBR16,10.0.2.15 -FRANCOISE_LAVINE,FRANCOISE_LAVINE-MPBR16,10.0.2.16 -MARLEN_PAULSHOCK,MARLEN_PAULSHOCK-MPBR16,10.0.2.17 -JULENE_MOUSLEY,JULENE_MOUSLEY-MPBR16,10.0.2.18 -RUFUS_TREZZA,RUFUS_TREZZA-MPBR16,10.0.2.19 -SONNY_DEHNERT,SONNY_DEHNERT-MPBR16,10.0.2.20 -JON_PARVIN,JON_PARVIN-MPBR16,10.0.2.21 -TRINIDAD_SEEVERS,TRINIDAD_SEEVERS-MPBR16,10.0.2.22 -MYRON_WINFREY,MYRON_WINFREY-MPBR16,10.0.2.23 -TASHIA_KNOLTON,TASHIA_KNOLTON-MPBR16,10.0.2.24 -VERNON_CRIVELLO,VERNON_CRIVELLO-MPBR16,10.0.2.25 -CHANA_FRINK,CHANA_FRINK-MPBR16,10.0.2.26 -CHARLIE_REETZ,CHARLIE_REETZ-MPBR16,10.0.2.27 -OSVALDO_GANDY,OSVALDO_GANDY-MPBR16,10.0.2.28 -HONG_SEYMORE,HONG_SEYMORE-MPBR16,10.0.2.29 -CAROLA_RATTRAY,CAROLA_RATTRAY-MPBR16,10.0.2.30 -LANNY_VANDENBERGHE,LANNY_VANDENBERGHE-MPBR16,10.0.2.31 -LAVERN_LONGBOTHAM,LAVERN_LONGBOTHAM-MPBR16,10.0.2.32 -PATRICK_PELT,PATRICK_PELT-MPBR16,10.0.2.33 -MEREDITH_VANLUVEN,MEREDITH_VANLUVEN-MPBR16,10.0.2.34 -WILBUR_PALADINO,WILBUR_PALADINO-MPBR16,10.0.2.35 -CHESTER_STANKO,CHESTER_STANKO-MPBR16,10.0.2.36 -NANNIE_MONTS,NANNIE_MONTS-MPBR16,10.0.2.37 -SCOT_ROOD,SCOT_ROOD-MPBR16,10.0.2.38 -LILLY_WANK,LILLY_WANK-MPBR16,10.0.2.39 -ANTONIO_FATE,ANTONIO_FATE-MPBR16,10.0.2.40 -CARMINA_RIBAUDO,CARMINA_RIBAUDO-MPBR16,10.0.2.41 -DIAMOND_STAUCH,DIAMOND_STAUCH-MPBR16,10.0.2.42 -BRAD_LANDAVERDE,BRAD_LANDAVERDE-MPBR16,10.0.2.43 -FRANK_MICKLES,FRANK_MICKLES-MPBR16,10.0.2.44 -NELLIE_KAMIMURA,NELLIE_KAMIMURA-MPBR16,10.0.2.45 -TAWNY_KURIGER,TAWNY_KURIGER-MPBR16,10.0.2.46 -LAWRENCE_THORELL,LAWRENCE_THORELL-MPBR16,10.0.2.47 -TYLER_FONDOW,TYLER_FONDOW-MPBR16,10.0.2.48 -RUTH_ARMS,RUTH_ARMS-MPBR16,10.0.2.49 -ROMELIA_WIXTED,ROMELIA_WIXTED-MPBR16,10.0.2.50 -ROSALINDA_MINNIEFIELD,ROSALINDA_MINNIEFIELD-MPBR16,10.0.2.51 -HAL_GREAVER,HAL_GREAVER-MPBR16,10.0.2.52 -LARHONDA_GWALTNEY,LARHONDA_GWALTNEY-MPBR16,10.0.2.53 -DARLENE_REIAL,DARLENE_REIAL-MPBR16,10.0.2.54 -CLAUDE_ALLWARDT,CLAUDE_ALLWARDT-MPBR16,10.0.2.55 -FREDDY_PLITT,FREDDY_PLITT-MPBR16,10.0.2.56 -HORACIO_TRISKA,HORACIO_TRISKA-MPBR16,10.0.2.57 -JEFFREY_PETRILLA,JEFFREY_PETRILLA-MPBR16,10.0.2.58 -ROSEMARIE_PEAY,ROSEMARIE_PEAY-MPBR16,10.0.2.59 -EDDIE_MCCANTS,EDDIE_MCCANTS-MPBR16,10.0.2.60 -RON_JACKIEWICZ,RON_JACKIEWICZ-MPBR16,10.0.2.61 -DEE_GENZ,DEE_GENZ-MPBR16,10.0.2.62 -CHARLIE_CRONKHITE,CHARLIE_CRONKHITE-MPBR16,10.0.2.63 -ARDELL_NINKE,ARDELL_NINKE-MPBR16,10.0.2.64 -SHAWN_ASCENCIO,SHAWN_ASCENCIO-MPBR16,10.0.2.65 -MEGAN_REIGH,MEGAN_REIGH-MPBR16,10.0.2.66 -MIRA_NORRELL,MIRA_NORRELL-MPBR16,10.0.2.67 -JAKE_GALLAGHER,JAKE_GALLAGHER-MPBR16,10.0.2.68 -CAROLINA_MCDALE,CAROLINA_MCDALE-MPBR16,10.0.2.69 -BERRY_PHILLPS,BERRY_PHILLPS-MPBR16,10.0.2.70 -ROSEMARIE_FOUTCH,ROSEMARIE_FOUTCH-MPBR16,10.0.2.71 -ERNEST_RIDDER,ERNEST_RIDDER-MPBR16,10.0.2.72 -SIMON_DRAHEIM,SIMON_DRAHEIM-MPBR16,10.0.2.73 -ELMER_DAGNAN,ELMER_DAGNAN-MPBR16,10.0.2.74 -KYLE_ESAW,KYLE_ESAW-MPBR16,10.0.2.75 -KIRA_MADAGAN,KIRA_MADAGAN-MPBR16,10.0.2.76 -HANS_WIBBENS,HANS_WIBBENS-MPBR16,10.0.2.77 -RAY_CAVALIER,RAY_CAVALIER-MPBR16,10.0.2.78 -BEATRICE_CULBERT,BEATRICE_CULBERT-MPBR16,10.0.2.79 -KENNY_LEINONEN,KENNY_LEINONEN-MPBR16,10.0.2.80 -ESTER_CARRIER,ESTER_CARRIER-MPBR16,10.0.2.81 -BRIGETTE_HICIANO,BRIGETTE_HICIANO-MPBR16,10.0.2.82 -DOMINICK_GIRONDA,DOMINICK_GIRONDA-MPBR16,10.0.2.83 -DANA_KUHL,DANA_KUHL-MPBR16,10.0.2.84 -MARVEL_RYKERT,MARVEL_RYKERT-MPBR16,10.0.2.85 -TERRELL_SLY,TERRELL_SLY-MPBR16,10.0.2.86 -ANGELINA_DESROSIERS,ANGELINA_DESROSIERS-MPBR16,10.0.2.87 -MICHELLE_SEELIGER,MICHELLE_SEELIGER-MPBR16,10.0.2.88 -SCOTTY_SIGLIN,SCOTTY_SIGLIN-MPBR16,10.0.2.89 -ISAIAH_PANITZ,ISAIAH_PANITZ-MPBR16,10.0.2.90 -MATILDA_VASCONCELLOS,MATILDA_VASCONCELLOS-MPBR16,10.0.2.91 -VANDA_GILBERTSON,VANDA_GILBERTSON-MPBR16,10.0.2.92 -LARUE_ORTEGO,LARUE_ORTEGO-MPBR16,10.0.2.93 -JOYE_MICHELLI,JOYE_MICHELLI-MPBR16,10.0.2.94 -RICARDO_GOWERS,RICARDO_GOWERS-MPBR16,10.0.2.95 -STAR_SWEENY,STAR_SWEENY-MPBR16,10.0.2.96 -LOVIE_CONNOLLY,LOVIE_CONNOLLY-MPBR16,10.0.2.97 -SON_SCHRADER,SON_SCHRADER-MPBR16,10.0.2.98 -NICK_BONKOWSKI,NICK_BONKOWSKI-MPBR16,10.0.2.99 -SHANTAY_DEGRAVE,SHANTAY_DEGRAVE-MPBR16,10.0.2.100 -MICHELLE_MCCRACKER,MICHELLE_MCCRACKER-MPBR16,10.0.2.101 -MICHEAL_FINLAY,MICHEAL_FINLAY-MPBR16,10.0.2.102 -NELL_LOCKEN,NELL_LOCKEN-MPBR16,10.0.2.103 -REBECKA_AMSDELL,REBECKA_AMSDELL-MPBR16,10.0.2.104 -RUBIN_GREENLY,RUBIN_GREENLY-MPBR16,10.0.2.105 -ARCELIA_VILLANEUVA,ARCELIA_VILLANEUVA-MPBR16,10.0.2.106 -DANIKA_VANWAGNER,DANIKA_VANWAGNER-MPBR16,10.0.2.107 -BONNIE_TESTA,BONNIE_TESTA-MPBR16,10.0.2.108 -AUBREY_LAUTT,AUBREY_LAUTT-MPBR16,10.0.2.109 -JAY_STRATTON,JAY_STRATTON-MPBR16,10.0.2.110 -EDWIN_KAUPHUSMAN,EDWIN_KAUPHUSMAN-MPBR16,10.0.2.111 -IRA_GODLESKI,IRA_GODLESKI-MPBR16,10.0.2.112 -MIKE_TADLOCK,MIKE_TADLOCK-MPBR16,10.0.2.113 -MINNIE_MACHO,MINNIE_MACHO-MPBR16,10.0.2.114 -MARCOS_AMENT,MARCOS_AMENT-MPBR16,10.0.2.115 -ALETA_RODERICK,ALETA_RODERICK-MPBR16,10.0.2.116 -LOUIE_SCUDDER,LOUIE_SCUDDER-MPBR16,10.0.2.117 -ANTOINETTE_GIL,ANTOINETTE_GIL-MPBR16,10.0.2.118 -MAE_VICARS,MAE_VICARS-MPBR16,10.0.2.119 -TODD_ARMAS,TODD_ARMAS-MPBR16,10.0.2.120 -ASHLIE_FLING,ASHLIE_FLING-MPBR16,10.0.2.121 -JAKE_ALEKNA,JAKE_ALEKNA-MPBR16,10.0.2.122 -MICHELLE_HAROLDSON,MICHELLE_HAROLDSON-MPBR16,10.0.2.123 -JON_COLELLO,JON_COLELLO-MPBR16,10.0.2.124 -GILBERTO_SEK,GILBERTO_SEK-MPBR16,10.0.2.125 -HELLEN_BALESTRIERI,HELLEN_BALESTRIERI-MPBR16,10.0.2.126 -PERCY_SANTORE,PERCY_SANTORE-MPBR16,10.0.2.127 -NAOMI_OVERHULSER,NAOMI_OVERHULSER-MPBR16,10.0.2.128 -GERTUDE_RICHARDS,GERTUDE_RICHARDS-MPBR16,10.0.2.129 -GRETA_LASKEY,GRETA_LASKEY-MPBR16,10.0.2.130 -JOHNATHAN_MOBLEY,JOHNATHAN_MOBLEY-MPBR16,10.0.2.131 -LYNETTE_SCHAUMAN,LYNETTE_SCHAUMAN-MPBR16,10.0.2.132 -ROMA_TAMBLYN,ROMA_TAMBLYN-MPBR16,10.0.2.133 -EUGENIO_MANNELLA,EUGENIO_MANNELLA-MPBR16,10.0.2.134 -LANCE_SLOTEMAKER,LANCE_SLOTEMAKER-MPBR16,10.0.2.135 -JANELLE_PERRYMAN,JANELLE_PERRYMAN-MPBR16,10.0.2.136 -LAKESHA_KUYPER,LAKESHA_KUYPER-MPBR16,10.0.2.137 -MICKEY_BALLENSKY,MICKEY_BALLENSKY-MPBR16,10.0.2.138 -REYNALDO_FEDE,REYNALDO_FEDE-MPBR16,10.0.2.139 -KELLY_WEDLOCK,KELLY_WEDLOCK-MPBR16,10.0.2.140 -MOSES_TAPLEY,MOSES_TAPLEY-MPBR16,10.0.2.141 -BIANCA_GANGADYAL,BIANCA_GANGADYAL-MPBR16,10.0.2.142 -MILTON_DARGIN,MILTON_DARGIN-MPBR16,10.0.2.143 -IMOGENE_STENERSON,IMOGENE_STENERSON-MPBR16,10.0.2.144 -ARTIE_BADE,ARTIE_BADE-MPBR16,10.0.2.145 -WILFRED_DEGAETANO,WILFRED_DEGAETANO-MPBR16,10.0.2.146 -ANDRES_PEDROTTI,ANDRES_PEDROTTI-MPBR16,10.0.2.147 -TORY_PESTANO,TORY_PESTANO-MPBR16,10.0.2.148 -FRED_ZANGARA,FRED_ZANGARA-MPBR16,10.0.2.149 -IRA_BLILER,IRA_BLILER-MPBR16,10.0.2.150 -ALLAN_KYTE,ALLAN_KYTE-MPBR16,10.0.2.151 -LAVERNE_CALLICOAT,LAVERNE_CALLICOAT-MPBR16,10.0.2.152 -ARTURO_KILMARTIN,ARTURO_KILMARTIN-MPBR16,10.0.2.153 -TYLER_DERRICK,TYLER_DERRICK-MPBR16,10.0.2.154 -CARMELA_GRITSCH,CARMELA_GRITSCH-MPBR16,10.0.2.155 -CHRISTIAN_DARTER,CHRISTIAN_DARTER-MPBR16,10.0.2.156 -TESSIE_GOLDSBY,TESSIE_GOLDSBY-MPBR16,10.0.2.157 -ALLEGRA_MARAGNO,ALLEGRA_MARAGNO-MPBR16,10.0.2.158 -JEFFERSON_SIEWERS,JEFFERSON_SIEWERS-MPBR16,10.0.2.159 -LEO_HOOGLAND,LEO_HOOGLAND-MPBR16,10.0.2.160 -NANA_BEBEAU,NANA_BEBEAU-MPBR16,10.0.2.161 -ROBYN_HOLROYD,ROBYN_HOLROYD-MPBR16,10.0.2.162 -BETTE_UMBERGER,BETTE_UMBERGER-MPBR16,10.0.2.163 -RACHELL_LAYMON,RACHELL_LAYMON-MPBR16,10.0.2.164 -JERMAINE_DECOSTA,JERMAINE_DECOSTA-MPBR16,10.0.2.165 -DARRYL_THORESEN,DARRYL_THORESEN-MPBR16,10.0.2.166 -FRIEDA_MARANGONI,FRIEDA_MARANGONI-MPBR16,10.0.2.167 -CHONG_GIVENS,CHONG_GIVENS-MPBR16,10.0.2.168 -VERN_STEINER,VERN_STEINER-MPBR16,10.0.2.169 -JOSEPH_KINGTON,JOSEPH_KINGTON-MPBR16,10.0.2.170 -ANDRES_BJORNBERG,ANDRES_BJORNBERG-MPBR16,10.0.2.171 -DOYLE_EVERSMEYER,DOYLE_EVERSMEYER-MPBR16,10.0.2.172 -JAVIER_RACETTE,JAVIER_RACETTE-MPBR16,10.0.2.173 -DARRELL_MIHOR,DARRELL_MIHOR-MPBR16,10.0.2.174 -MYLES_TEDDER,MYLES_TEDDER-MPBR16,10.0.2.175 -RALPH_SKULTETY,RALPH_SKULTETY-MPBR16,10.0.2.176 -ART_GOLDFARB,ART_GOLDFARB-MPBR16,10.0.2.177 -BRYCE_AUGUSTIN,BRYCE_AUGUSTIN-MPBR16,10.0.2.178 -TRACY_OLSEN,TRACY_OLSEN-MPBR16,10.0.2.179 -JODEE_ZIRBEL,JODEE_ZIRBEL-MPBR16,10.0.2.180 -KIRSTEN_SMILER,KIRSTEN_SMILER-MPBR16,10.0.2.181 -CARYN_COMSTOCK,CARYN_COMSTOCK-MPBR16,10.0.2.182 -NANCY_ABERLE,NANCY_ABERLE-MPBR16,10.0.2.183 -DELENA_TATTERSHALL,DELENA_TATTERSHALL-MPBR16,10.0.2.184 -TRACEY_ATCHESON,TRACEY_ATCHESON-MPBR16,10.0.2.185 -KAYLEIGH_COURTEMANCHE,KAYLEIGH_COURTEMANCHE-MPBR16,10.0.2.186 -DONA_DADLANI,DONA_DADLANI-MPBR16,10.0.2.187 -MARCO_MAHA,MARCO_MAHA-MPBR16,10.0.2.188 -MALINDA_VALLIN,MALINDA_VALLIN-MPBR16,10.0.2.189 -ALLIE_MCENTYRE,ALLIE_MCENTYRE-MPBR16,10.0.2.190 -JASPER_GOLDSTON,JASPER_GOLDSTON-MPBR16,10.0.2.191 -BRYNN_GIST,BRYNN_GIST-MPBR16,10.0.2.192 -KIRBY_WICKEY,KIRBY_WICKEY-MPBR16,10.0.2.193 -RACHEL_WENTZ,RACHEL_WENTZ-MPBR16,10.0.2.194 -KIMIKO_ROOD,KIMIKO_ROOD-MPBR16,10.0.2.195 -LEISA_ESPOSTO,LEISA_ESPOSTO-MPBR16,10.0.2.196 -CHERI_BRINKMANN,CHERI_BRINKMANN-MPBR16,10.0.2.197 -VITO_PACHERO,VITO_PACHERO-MPBR16,10.0.2.198 -KRYSTYNA_TANNEHILL,KRYSTYNA_TANNEHILL-MPBR16,10.0.2.199 -TAYLOR_ESSARY,TAYLOR_ESSARY-MPBR16,10.0.2.200 -JOSEFINA_CRALL,JOSEFINA_CRALL-MPBR16,10.0.2.201 -THOMAS_PANNING,THOMAS_PANNING-MPBR16,10.0.2.202 -GRANT_MORREALE,GRANT_MORREALE-MPBR16,10.0.2.203 -EDWIN_VORWERK,EDWIN_VORWERK-MPBR16,10.0.2.204 -RANDALL_NIEHAUS,RANDALL_NIEHAUS-MPBR16,10.0.2.205 -MARTY_PORCHE,MARTY_PORCHE-MPBR16,10.0.2.206 -NERISSA_BEAUCAGE,NERISSA_BEAUCAGE-MPBR16,10.0.2.207 -ALTAGRACIA_SEDBERRY,ALTAGRACIA_SEDBERRY-MPBR16,10.0.2.208 -SERGIO_RAYSON,SERGIO_RAYSON-MPBR16,10.0.2.209 -TRACY_SNELLING,TRACY_SNELLING-MPBR16,10.0.2.210 -SANJUANA_TRINGALI,SANJUANA_TRINGALI-MPBR16,10.0.2.211 -LUTHER_THRAN,LUTHER_THRAN-MPBR16,10.0.2.212 -DANITA_BLOSS,DANITA_BLOSS-MPBR16,10.0.2.213 -RUFUS_WESLEY,RUFUS_WESLEY-MPBR16,10.0.2.214 -CAROLINE_LIVERMORE,CAROLINE_LIVERMORE-MPBR16,10.0.2.215 -LIZZIE_HERSH,LIZZIE_HERSH-MPBR16,10.0.2.216 -SHIRLEY_SANCE,SHIRLEY_SANCE-MPBR16,10.0.2.217 -ARON_PIGNATELLO,ARON_PIGNATELLO-MPBR16,10.0.2.218 -MICHEAL_CASKEY,MICHEAL_CASKEY-MPBR16,10.0.2.219 -NOEL_MELLOTT,NOEL_MELLOTT-MPBR16,10.0.2.220 -MARINA_MATO,MARINA_MATO-MPBR16,10.0.2.221 -ISIDRO_FANNING,ISIDRO_FANNING-MPBR16,10.0.2.222 -JOVITA_BEACHY,JOVITA_BEACHY-MPBR16,10.0.2.223 -KAREEM_SAYLER,KAREEM_SAYLER-MPBR16,10.0.2.224 -VINNIE_GILLUND,VINNIE_GILLUND-MPBR16,10.0.2.225 -KELSEY_SILVERHORN,KELSEY_SILVERHORN-MPBR16,10.0.2.226 -JERROLD_BOGUE,JERROLD_BOGUE-MPBR16,10.0.2.227 -ALECIA_WASOWSKI,ALECIA_WASOWSKI-MPBR16,10.0.2.228 -CLAUDE_SAGGESE,CLAUDE_SAGGESE-MPBR16,10.0.2.229 -KEELY_SMOLINSKY,KEELY_SMOLINSKY-MPBR16,10.0.2.230 -ALVIN_FINNELL,ALVIN_FINNELL-MPBR16,10.0.2.231 -FELIX_MAZZARIELLO,FELIX_MAZZARIELLO-MPBR16,10.0.2.232 -ARLA_KOTTERNA,ARLA_KOTTERNA-MPBR16,10.0.2.233 -EDMUND_LIVINGSTON,EDMUND_LIVINGSTON-MPBR16,10.0.2.234 -MAXWELL_CALCAGNO,MAXWELL_CALCAGNO-MPBR16,10.0.2.235 -CLAIR_HULCY,CLAIR_HULCY-MPBR16,10.0.2.236 -JOHN_SEVIGNY,JOHN_SEVIGNY-MPBR16,10.0.2.237 -KATELYN_SHAPPELL,KATELYN_SHAPPELL-MPBR16,10.0.2.238 -JOYE_NAVARETTE,JOYE_NAVARETTE-MPBR16,10.0.2.239 -IVA_KAPLAN,IVA_KAPLAN-MPBR16,10.0.2.240 -RONALD_SERVISS,RONALD_SERVISS-MPBR16,10.0.2.241 -FORREST_VALDES,FORREST_VALDES-MPBR16,10.0.2.242 -WARREN_GOLLNICK,WARREN_GOLLNICK-MPBR16,10.0.2.243 -VIOLA_BEDDOME,VIOLA_BEDDOME-MPBR16,10.0.2.244 -MARLANA_SAMMER,MARLANA_SAMMER-MPBR16,10.0.2.245 -ODESSA_CORLEW,ODESSA_CORLEW-MPBR16,10.0.2.246 -ORVILLE_PERINO,ORVILLE_PERINO-MPBR16,10.0.2.247 -JEFFRY_WHIPPS,JEFFRY_WHIPPS-MPBR16,10.0.2.248 -DARREN_CAMBRIDGE,DARREN_CAMBRIDGE-MPBR16,10.0.2.249 -KERRIE_MILAND,KERRIE_MILAND-MPBR16,10.0.2.250 -JOHNIE_EASTERDAY,JOHNIE_EASTERDAY-MPBR16,10.0.2.251 -DAN_DESPER,DAN_DESPER-MPBR16,10.0.2.252 -CARMEN_BEDSOLE,CARMEN_BEDSOLE-MPBR16,10.0.2.253 -RUTHIE_EICHNER,RUTHIE_EICHNER-MPBR16,10.0.2.254 -HOWARD_BERSON,HOWARD_BERSON-MPBR16,10.0.2.255 -SON_COSTALES,SON_COSTALES-MPBR16,10.0.3.0 -FANNIE_SCHARFF,FANNIE_SCHARFF-MPBR16,10.0.3.1 -ANDRE_MCKINNIS,ANDRE_MCKINNIS-MPBR16,10.0.3.2 -BARBRA_STAUDE,BARBRA_STAUDE-MPBR16,10.0.3.3 -CARROLL_MCMAKIN,CARROLL_MCMAKIN-MPBR16,10.0.3.4 -ANN_AUMEND,ANN_AUMEND-MPBR16,10.0.3.5 -PATRICK_FACEMIRE,PATRICK_FACEMIRE-MPBR16,10.0.3.6 -CAROLINE_HAKKILA,CAROLINE_HAKKILA-MPBR16,10.0.3.7 -JAMAR_HATKE,JAMAR_HATKE-MPBR16,10.0.3.8 -HUGH_HOVE,HUGH_HOVE-MPBR16,10.0.3.9 -SOPHIA_PAVLOV,SOPHIA_PAVLOV-MPBR16,10.0.3.10 -ANTON_VERMILLION,ANTON_VERMILLION-MPBR16,10.0.3.11 -KYRA_TWEED,KYRA_TWEED-MPBR16,10.0.3.12 -ELLIOT_GIBBON,ELLIOT_GIBBON-MPBR16,10.0.3.13 -DEIDRE_ANDROLEWICZ,DEIDRE_ANDROLEWICZ-MPBR16,10.0.3.14 -NORMAN_GERRITY,NORMAN_GERRITY-MPBR16,10.0.3.15 -JUNITA_TRUEHEART,JUNITA_TRUEHEART-MPBR16,10.0.3.16 -OFELIA_LOCKET,OFELIA_LOCKET-MPBR16,10.0.3.17 -SHIRLENE_VANDEHEY,SHIRLENE_VANDEHEY-MPBR16,10.0.3.18 -KATRICE_THIBEAULT,KATRICE_THIBEAULT-MPBR16,10.0.3.19 -EMORY_FIATO,EMORY_FIATO-MPBR16,10.0.3.20 -KRISTY_BACKLUND,KRISTY_BACKLUND-MPBR16,10.0.3.21 -ALEXANDRIA_LESSLEY,ALEXANDRIA_LESSLEY-MPBR16,10.0.3.22 -MICAELA_BRENES,MICAELA_BRENES-MPBR16,10.0.3.23 -ELFRIEDE_SCHMELZER,ELFRIEDE_SCHMELZER-MPBR16,10.0.3.24 -MAXWELL_TOBIN,MAXWELL_TOBIN-MPBR16,10.0.3.25 -LARISA_RANSFORD,LARISA_RANSFORD-MPBR16,10.0.3.26 -GUY_BALDINI,GUY_BALDINI-MPBR16,10.0.3.27 -JACQUELINE_BROOMFIELD,JACQUELINE_BROOMFIELD-MPBR16,10.0.3.28 -JENAE_NYHUS,JENAE_NYHUS-MPBR16,10.0.3.29 -CASSANDRA_GONSER,CASSANDRA_GONSER-MPBR16,10.0.3.30 -LAMONT_DAIRE,LAMONT_DAIRE-MPBR16,10.0.3.31 -WILLETTE_COOLBAUGH,WILLETTE_COOLBAUGH-MPBR16,10.0.3.32 -EULA_EICHHORST,EULA_EICHHORST-MPBR16,10.0.3.33 -CAROLYN_SCHERPING,CAROLYN_SCHERPING-MPBR16,10.0.3.34 -RICK_FLOYD,RICK_FLOYD-MPBR16,10.0.3.35 -ALANA_HINCHLIFFE,ALANA_HINCHLIFFE-MPBR16,10.0.3.36 -GONZALO_WIRTANEN,GONZALO_WIRTANEN-MPBR16,10.0.3.37 -UTE_PUEBLA,UTE_PUEBLA-MPBR16,10.0.3.38 -SUSIE_SILGUERO,SUSIE_SILGUERO-MPBR16,10.0.3.39 -AARON_BRAMAN,AARON_BRAMAN-MPBR16,10.0.3.40 -TENA_HARTLEN,TENA_HARTLEN-MPBR16,10.0.3.41 -ISSAC_SZWEJBKA,ISSAC_SZWEJBKA-MPBR16,10.0.3.42 -LEVI_ROTERMUND,LEVI_ROTERMUND-MPBR16,10.0.3.43 -MAUDIE_UNTERSEHER,MAUDIE_UNTERSEHER-MPBR16,10.0.3.44 -VELLA_POINTER,VELLA_POINTER-MPBR16,10.0.3.45 -MOLLY_GIESSLER,MOLLY_GIESSLER-MPBR16,10.0.3.46 -SCARLETT_BRINK,SCARLETT_BRINK-MPBR16,10.0.3.47 -BRENDAN_WONDER,BRENDAN_WONDER-MPBR16,10.0.3.48 -JUSTIN_CIRA,JUSTIN_CIRA-MPBR16,10.0.3.49 -NISHA_DYCHES,NISHA_DYCHES-MPBR16,10.0.3.50 -LESTER_MONAHAN,LESTER_MONAHAN-MPBR16,10.0.3.51 -DENIS_TAJ,DENIS_TAJ-MPBR16,10.0.3.52 -DAISEY_GOVIN,DAISEY_GOVIN-MPBR16,10.0.3.53 -TIMMY_DUL,TIMMY_DUL-MPBR16,10.0.3.54 -LEANDRO_KOBACK,LEANDRO_KOBACK-MPBR16,10.0.3.55 -FRED_BASSIL,FRED_BASSIL-MPBR16,10.0.3.56 -JANIE_LAMOREAUX,JANIE_LAMOREAUX-MPBR16,10.0.3.57 -ALLAN_GRANDSTAFF,ALLAN_GRANDSTAFF-MPBR16,10.0.3.58 -NOLAN_REMPE,NOLAN_REMPE-MPBR16,10.0.3.59 -LOREEN_FORRESTER,LOREEN_FORRESTER-MPBR16,10.0.3.60 -LINCOLN_COLLAZO,LINCOLN_COLLAZO-MPBR16,10.0.3.61 -LEVI_ECKLER,LEVI_ECKLER-MPBR16,10.0.3.62 -DARRIN_HAMMERLE,DARRIN_HAMMERLE-MPBR16,10.0.3.63 -TOSHA_EAGLE,TOSHA_EAGLE-MPBR16,10.0.3.64 -GARY_CISCO,GARY_CISCO-MPBR16,10.0.3.65 -TOBY_ROSKE,TOBY_ROSKE-MPBR16,10.0.3.66 -ROXANA_HOBGOOD,ROXANA_HOBGOOD-MPBR16,10.0.3.67 -NANNIE_BALDERSON,NANNIE_BALDERSON-MPBR16,10.0.3.68 -CARMA_KRACKER,CARMA_KRACKER-MPBR16,10.0.3.69 -ARRON_DENISTON,ARRON_DENISTON-MPBR16,10.0.3.70 -NORINE_BRADDOCK,NORINE_BRADDOCK-MPBR16,10.0.3.71 -RENE_LYDIA,RENE_LYDIA-MPBR16,10.0.3.72 -JERALD_SNELLEN,JERALD_SNELLEN-MPBR16,10.0.3.73 -KATRINA_BACOTE,KATRINA_BACOTE-MPBR16,10.0.3.74 -MACK_STEINKUEHLER,MACK_STEINKUEHLER-MPBR16,10.0.3.75 -AJA_WITRY,AJA_WITRY-MPBR16,10.0.3.76 -ALEC_ROBLEDO,ALEC_ROBLEDO-MPBR16,10.0.3.77 -TEQUILA_EBBIGHAUSEN,TEQUILA_EBBIGHAUSEN-MPBR16,10.0.3.78 -KENNETH_LANGILLE,KENNETH_LANGILLE-MPBR16,10.0.3.79 -MABLE_HUBBARD,MABLE_HUBBARD-MPBR16,10.0.3.80 -HIRAM_KELLERHOUSE,HIRAM_KELLERHOUSE-MPBR16,10.0.3.81 -MARLENE_NOLLORA,MARLENE_NOLLORA-MPBR16,10.0.3.82 -LOWELL_CRADDOCK,LOWELL_CRADDOCK-MPBR16,10.0.3.83 -FLOSSIE_ADORNO,FLOSSIE_ADORNO-MPBR16,10.0.3.84 -CARMEL_STEGEMANN,CARMEL_STEGEMANN-MPBR16,10.0.3.85 -VANITA_FOLKERS,VANITA_FOLKERS-MPBR16,10.0.3.86 -ANGELIKA_AHLF,ANGELIKA_AHLF-MPBR16,10.0.3.87 -DELORES_MALPHURS,DELORES_MALPHURS-MPBR16,10.0.3.88 -JAMIE_SIEG,JAMIE_SIEG-MPBR16,10.0.3.89 -JONATHAN_SUMBERA,JONATHAN_SUMBERA-MPBR16,10.0.3.90 -WONDA_WOLAVER,WONDA_WOLAVER-MPBR16,10.0.3.91 -CATHERINE_HUGGINS,CATHERINE_HUGGINS-MPBR16,10.0.3.92 -TAJUANA_GODFREY,TAJUANA_GODFREY-MPBR16,10.0.3.93 -ROSALIA_MCCLURE,ROSALIA_MCCLURE-MPBR16,10.0.3.94 -OTTO_MCCULLAH,OTTO_MCCULLAH-MPBR16,10.0.3.95 -DORTHA_WILDHABER,DORTHA_WILDHABER-MPBR16,10.0.3.96 -MARTHA_RICHARDT,MARTHA_RICHARDT-MPBR16,10.0.3.97 -EILEEN_BOEHMAN,EILEEN_BOEHMAN-MPBR16,10.0.3.98 -KATHRINE_SPAKE,KATHRINE_SPAKE-MPBR16,10.0.3.99 -HANNA_LAPLAUNT,HANNA_LAPLAUNT-MPBR16,10.0.3.100 -BILL_DALES,BILL_DALES-MPBR16,10.0.3.101 -EMILIE_CHONG,EMILIE_CHONG-MPBR16,10.0.3.102 -DENNIS_BARRETTE,DENNIS_BARRETTE-MPBR16,10.0.3.103 -ELISE_DONA,ELISE_DONA-MPBR16,10.0.3.104 -ORVILLE_MILITANO,ORVILLE_MILITANO-MPBR16,10.0.3.105 -FREDERICKA_SUH,FREDERICKA_SUH-MPBR16,10.0.3.106 -GARRY_DEZENZO,GARRY_DEZENZO-MPBR16,10.0.3.107 -LAVONDA_LEBLOND,LAVONDA_LEBLOND-MPBR16,10.0.3.108 -DARWIN_CAHEE,DARWIN_CAHEE-MPBR16,10.0.3.109 -LESLIE_SCHADE,LESLIE_SCHADE-MPBR16,10.0.3.110 -JENNY_FRAIZER,JENNY_FRAIZER-MPBR16,10.0.3.111 -LUCINA_GENIS,LUCINA_GENIS-MPBR16,10.0.3.112 -DANE_FENNELL,DANE_FENNELL-MPBR16,10.0.3.113 -STEFAN_SPEYRER,STEFAN_SPEYRER-MPBR16,10.0.3.114 -JUSTIN_GROMER,JUSTIN_GROMER-MPBR16,10.0.3.115 -JAE_MATTIX,JAE_MATTIX-MPBR16,10.0.3.116 -SAMUEL_KENEBREW,SAMUEL_KENEBREW-MPBR16,10.0.3.117 -ELVA_ARLINGHAUS,ELVA_ARLINGHAUS-MPBR16,10.0.3.118 -OSCAR_KEARSLEY,OSCAR_KEARSLEY-MPBR16,10.0.3.119 -LINETTE_ROHLING,LINETTE_ROHLING-MPBR16,10.0.3.120 -SHELA_SEGOUIA,SHELA_SEGOUIA-MPBR16,10.0.3.121 -PABLO_LINEWEAVER,PABLO_LINEWEAVER-MPBR16,10.0.3.122 -LAURENCE_GROSCLAUDE,LAURENCE_GROSCLAUDE-MPBR16,10.0.3.123 -DAVIS_COOLIDGE,DAVIS_COOLIDGE-MPBR16,10.0.3.124 -NIKKI_INGRASSIA,NIKKI_INGRASSIA-MPBR16,10.0.3.125 -JUDITH_DULIN,JUDITH_DULIN-MPBR16,10.0.3.126 -LANITA_REINEKE,LANITA_REINEKE-MPBR16,10.0.3.127 -NAOMA_LY,NAOMA_LY-MPBR16,10.0.3.128 -SHERRY_NEHER,SHERRY_NEHER-MPBR16,10.0.3.129 -WILSON_MANHART,WILSON_MANHART-MPBR16,10.0.3.130 -BRYCE_JEE,BRYCE_JEE-MPBR16,10.0.3.131 -HUNTER_HOLLIDAY,HUNTER_HOLLIDAY-MPBR16,10.0.3.132 -GARRY_MLENAR,GARRY_MLENAR-MPBR16,10.0.3.133 -DANE_DAVIS,DANE_DAVIS-MPBR16,10.0.3.134 -KIRBY_LOUDEN,KIRBY_LOUDEN-MPBR16,10.0.3.135 -LUZ_JIGGETTS,LUZ_JIGGETTS-MPBR16,10.0.3.136 -RICHARD_HAWKE,RICHARD_HAWKE-MPBR16,10.0.3.137 -THADDEUS_FOLLANSBEE,THADDEUS_FOLLANSBEE-MPBR16,10.0.3.138 -KARI_NESHEIM,KARI_NESHEIM-MPBR16,10.0.3.139 -YADIRA_BRASFIELD,YADIRA_BRASFIELD-MPBR16,10.0.3.140 -DEWAYNE_EREDIA,DEWAYNE_EREDIA-MPBR16,10.0.3.141 -CARMEL_WILL,CARMEL_WILL-MPBR16,10.0.3.142 -TRACIE_WILKERS,TRACIE_WILKERS-MPBR16,10.0.3.143 -DELANA_BEEDLE,DELANA_BEEDLE-MPBR16,10.0.3.144 -SAMMY_GRIPPI,SAMMY_GRIPPI-MPBR16,10.0.3.145 -ELOY_ATES,ELOY_ATES-MPBR16,10.0.3.146 -SANTOS_BLANKENSHIP,SANTOS_BLANKENSHIP-MPBR16,10.0.3.147 -ANNEMARIE_MURRI,ANNEMARIE_MURRI-MPBR16,10.0.3.148 -SALVADOR_LEATH,SALVADOR_LEATH-MPBR16,10.0.3.149 -KESHA_JARDIN,KESHA_JARDIN-MPBR16,10.0.3.150 -JANELL_HILLYARD,JANELL_HILLYARD-MPBR16,10.0.3.151 -DEIRDRE_DERANEY,DEIRDRE_DERANEY-MPBR16,10.0.3.152 -ELLIOTT_TRILL,ELLIOTT_TRILL-MPBR16,10.0.3.153 -EUGENIO_FEINSTEIN,EUGENIO_FEINSTEIN-MPBR16,10.0.3.154 -PAMALA_RONE,PAMALA_RONE-MPBR16,10.0.3.155 -TIMOTHY_NIEMCZYK,TIMOTHY_NIEMCZYK-MPBR16,10.0.3.156 -TERRENCE_AVANCE,TERRENCE_AVANCE-MPBR16,10.0.3.157 -ANNIE_BARRE,ANNIE_BARRE-MPBR16,10.0.3.158 -WADE_GROUNDS,WADE_GROUNDS-MPBR16,10.0.3.159 -SALVATORE_GOLDY,SALVATORE_GOLDY-MPBR16,10.0.3.160 -KENDAL_TACKITT,KENDAL_TACKITT-MPBR16,10.0.3.161 -CONSUELO_BUNN,CONSUELO_BUNN-MPBR16,10.0.3.162 -GILBERTO_METROKA,GILBERTO_METROKA-MPBR16,10.0.3.163 -KELVIN_JACQUIER,KELVIN_JACQUIER-MPBR16,10.0.3.164 -TORRIE_DAVI,TORRIE_DAVI-MPBR16,10.0.3.165 -MARCO_PECKA,MARCO_PECKA-MPBR16,10.0.3.166 -RICARDO_WILLIE,RICARDO_WILLIE-MPBR16,10.0.3.167 -CARMA_WILLIAMSEN,CARMA_WILLIAMSEN-MPBR16,10.0.3.168 -DORIS_SUCHECKI,DORIS_SUCHECKI-MPBR16,10.0.3.169 -DAVE_LEAN,DAVE_LEAN-MPBR16,10.0.3.170 -IAN_QUINTELA,IAN_QUINTELA-MPBR16,10.0.3.171 -SOLOMON_SIMCOE,SOLOMON_SIMCOE-MPBR16,10.0.3.172 -MERLE_ROKER,MERLE_ROKER-MPBR16,10.0.3.173 -DANIEL_ORELLANO,DANIEL_ORELLANO-MPBR16,10.0.3.174 -LORINDA_LYALLS,LORINDA_LYALLS-MPBR16,10.0.3.175 -GENA_KIRCHER,GENA_KIRCHER-MPBR16,10.0.3.176 -MOISES_TSUKAMOTO,MOISES_TSUKAMOTO-MPBR16,10.0.3.177 -CHAD_CUESTAS,CHAD_CUESTAS-MPBR16,10.0.3.178 -TIMMY_GEACH,TIMMY_GEACH-MPBR16,10.0.3.179 -ADRIENE_BRANDNER,ADRIENE_BRANDNER-MPBR16,10.0.3.180 -ZOFIA_HALLAHAN,ZOFIA_HALLAHAN-MPBR16,10.0.3.181 -EVANGELINE_NEAVE,EVANGELINE_NEAVE-MPBR16,10.0.3.182 -DWAIN_MADARIAGA,DWAIN_MADARIAGA-MPBR16,10.0.3.183 -CHRIS_FLEWELLEN,CHRIS_FLEWELLEN-MPBR16,10.0.3.184 -VICTOR_MUNKBERG,VICTOR_MUNKBERG-MPBR16,10.0.3.185 -ELDORA_MANFREDONIA,ELDORA_MANFREDONIA-MPBR16,10.0.3.186 -LEONARDO_WEILER,LEONARDO_WEILER-MPBR16,10.0.3.187 -CELIA_MALONE,CELIA_MALONE-MPBR16,10.0.3.188 -BROCK_ECKERT,BROCK_ECKERT-MPBR16,10.0.3.189 -ARDITH_JUNIUS,ARDITH_JUNIUS-MPBR16,10.0.3.190 -LEONEL_LEAVELL,LEONEL_LEAVELL-MPBR16,10.0.3.191 -LAVINIA_MEINERS,LAVINIA_MEINERS-MPBR16,10.0.3.192 -KERRIE_WITTKE,KERRIE_WITTKE-MPBR16,10.0.3.193 -META_COZZONE,META_COZZONE-MPBR16,10.0.3.194 -LINDSAY_HENK,LINDSAY_HENK-MPBR16,10.0.3.195 -DAPHNE_TAI,DAPHNE_TAI-MPBR16,10.0.3.196 -ABBEY_MORREN,ABBEY_MORREN-MPBR16,10.0.3.197 -BONITA_NJOKU,BONITA_NJOKU-MPBR16,10.0.3.198 -HERSCHEL_LABORDE,HERSCHEL_LABORDE-MPBR16,10.0.3.199 -DUSTIN_SCAGGS,DUSTIN_SCAGGS-MPBR16,10.0.3.200 -BETHANN_COYER,BETHANN_COYER-MPBR16,10.0.3.201 -LLOYD_LEDSOME,LLOYD_LEDSOME-MPBR16,10.0.3.202 -CHET_TERZO,CHET_TERZO-MPBR16,10.0.3.203 -KYLE_PICARELLO,KYLE_PICARELLO-MPBR16,10.0.3.204 -DARIN_CORKRAN,DARIN_CORKRAN-MPBR16,10.0.3.205 -PETE_STOKE,PETE_STOKE-MPBR16,10.0.3.206 -ROSELLA_MORRISROE,ROSELLA_MORRISROE-MPBR16,10.0.3.207 -LEONARDO_KOGAN,LEONARDO_KOGAN-MPBR16,10.0.3.208 -JAYSON_STUNKARD,JAYSON_STUNKARD-MPBR16,10.0.3.209 -CECIL_BURGHER,CECIL_BURGHER-MPBR16,10.0.3.210 -HORTENCIA_KISH,HORTENCIA_KISH-MPBR16,10.0.3.211 -KINDRA_PUNG,KINDRA_PUNG-MPBR16,10.0.3.212 -JOSHUA_KYM,JOSHUA_KYM-MPBR16,10.0.3.213 -BILLY_ZAHN,BILLY_ZAHN-MPBR16,10.0.3.214 -ADRIAN_SCHELLMAN,ADRIAN_SCHELLMAN-MPBR16,10.0.3.215 -OLA_LENOCH,OLA_LENOCH-MPBR16,10.0.3.216 -EARNEST_PALERMO,EARNEST_PALERMO-MPBR16,10.0.3.217 -SUZIE_HUCKABAY,SUZIE_HUCKABAY-MPBR16,10.0.3.218 -QUINN_STUBBLEFIELD,QUINN_STUBBLEFIELD-MPBR16,10.0.3.219 -LUE_MAROHL,LUE_MAROHL-MPBR16,10.0.3.220 -CECIL_FRAPPIER,CECIL_FRAPPIER-MPBR16,10.0.3.221 -JERALD_DIKEMAN,JERALD_DIKEMAN-MPBR16,10.0.3.222 -DEANNA_DECARLO,DEANNA_DECARLO-MPBR16,10.0.3.223 -NICKOLAS_ALBERTO,NICKOLAS_ALBERTO-MPBR16,10.0.3.224 -BENITA_GORENFLO,BENITA_GORENFLO-MPBR16,10.0.3.225 -EUGENIA_VERIATO,EUGENIA_VERIATO-MPBR16,10.0.3.226 -DARIUS_PORTZ,DARIUS_PORTZ-MPBR16,10.0.3.227 -JULES_FANE,JULES_FANE-MPBR16,10.0.3.228 -CLIFFORD_ROBY,CLIFFORD_ROBY-MPBR16,10.0.3.229 -KARLA_RIEL,KARLA_RIEL-MPBR16,10.0.3.230 -ELAINE_RUCKER,ELAINE_RUCKER-MPBR16,10.0.3.231 diff --git a/splunk_eventgen/samples/userName.sample b/splunk_eventgen/samples/userName.sample deleted file mode 100644 index 73f1b6a7..00000000 --- a/splunk_eventgen/samples/userName.sample +++ /dev/null @@ -1,1000 +0,0 @@ -birodivulga162 -nildajcbonanno -ivettaadelima -pckomono -Looreeto -JooPedro1591 -claaarecurlingg -acciokcavote -JungD -InaraAllves -Haroldmcaol -xNessaa -stylesdofunk -meltemmeltemm -emapujig -cellphones4deal -amisisuvi -MegSeecharran95 -MargueritaYociu -MarcioBFasano -LeonoreKamelame -xecuwace -digufenob -celal1231 -TWOKeyyy -RolandeOkoye2 -Harriettapuum -oieps -mozzaSclavino -loverebeldesxd -livjeffries -keisanm -jaemchaney -ewequfu -alixscottx -Nathanssexyhats -JimmieElbahtity -ItsEmeline -Harrietsdeyj -AndreeOcheltree -AlizeRylieo -AiLuCanch -mandinfortson -erichforever -edukusisot -cuibefuz76 -WorldSophiaA -SharronSuyama54 -SadieTWx -SYKESorSTYLES -RachalLevering4 -McnicolNan3613 -MargariteGreide -LlewlynSa5ai629 -JustSoIssi -ItsGeovana -FatimahFlore472 -DoraAke7703 -Clorindarozne -BradieBeee -BeckieAnfinson5 -tanbasil -saubluchid75 -ribathfunk70 -onderaytac -never7112 -naathaanTW -mylovelyletter -mariaTW20041 -imjosev -georgiabethox -finleyfancy -elafufu -duhamor85 -chlosian -chloeh5595 -chaylamoro -ashlitleatherma -angelmunguia4 -aldawar14fb -aannadavidsson -oGuedes -LegallyBlonde -WilliamsTda -ValeskaAcevedo -TheTeaPartyRat -StevenAbdelaziz -SophieElise13 -SamiiHoran -RicardaSulejman -RetaThoeny3197 -NatoshaSherio -NaimaRandyy3 -FernandaHoran1D -Dannawpyrt -Daniellzeiro -Collenevbunk -CMSulistyo -BridgettVanslan -AlienConsulate -yofranzo -xGlitzMissMia -vivienxqrobison -vidaja87 -shania1D -ruemunnett81 -reactcore -rachelcurryTW -pedrod3001 -nathansykesluv -mariekxjwz -marbellagolden -malyon5a6er -malikmymonkey -keskinozlem -karolynfprbodna -jestrella04 -jessgoodisonx -iloveAMOJ -habkingtram73 -gobarep87 -ferryfbrndk -fapadoranonimo -ceturuxup -cathyorangeTW -ayunarolita -akumezopi -abiefebyan -franlindinhax -BrunoVinicius -Zoe98TW -TomsGoodgirl -ThatWhiteHoe -TasminChloee -TWAreMyStrength -SophiePeppinTW -Sofizamoloo -SharonKatner -Santosyzkir -SambaLivre -Rosemariegfbis -RichelleHirschy -Renitaikjzq -PortiaDiclaudio -PlanetaDoBieber -PhlyAhhSlim -NickieWillibran -NathanMyBF -MonikaByrdieu -MarenDobine9208 -MARIECAEN -LydaWarnack3486 -LuaTodaMinha -LeandroBoyligan -KonevelDaniele8 -KazukoGodfray69 -GoftonSi0bhan45 -GearldineMazurk -GaynellHannai -FlaviaKordas383 -FCOLuanRafael -EllieSykes2012 -DjDabPhlyte -DeneenGraciana5 -Deadraxfuam -Cyndyidorr -Contessasosdx -Colleenanaqe -CodyMartinn -Cinthiafanbx -Chayawkjpg -CasimiraSaam253 -BellinMa5hta461 -AyooCandyy -AlenKarabegovic -xoxoDIANEEExoxo -wizardQi -wh0thehellishe -vilmaramb88 -vestefi86 -thatsjoesmile -sungsik1 -smileinmyworld -sksduf8shf -semakrglu -saelkanderi -roonixr -roetracgil88 -rionm9 -rebeccass3 -realplanetkway -pokannews -piasihu82 -optima20004 -onehysoc -nisehorrrrn -mishatar -mindy135 -megaanbennett -mayu1128 -mahra1998 -ludulcete -liraro85 -kagaminbot -jessPmartinez -javiarduengo -inroebhuv76 -iGOTthatASS -iAmRoc -hrkztiharu -heframi84 -harrysbrilliant -givemethismile -favstar50es -fantasylakegolf -fablede72 -estriquilinawq -ericaholtwhite -currieeeee -clevpunto81 -clairedakin -cierraj2k11 -chelseaTWparker -captainmari -btobdi6 -brendamachado9 -bracuaskey74 -birodivulga163 -betaniacastillo -beautboutique -aziz7217 -asagrou84 -annacdr -angusbcfc -angletz -anecimiq -alzain247 -alyssaTW -aiz3319 -loveDrea -Soiceybaby -KellesahhBOSS -ItsTaeMina -YvonneSykesTW -YoungTaffer7377 -WazzupChile -TudoPelaMel -ThisISMama -Templos90 -TaynaPinkowski8 -SykesTWLover -Stevie0205TW -Stephanygfs -SheeiLaHdeez -SertorisJustina -RubiGautsch1987 -RociolovesJB -ReynaGotay9918 -Rapiika -PetraCredell667 -PerlaaSulvaran -NathanSexyBody -Naeex3 -MyLiifeDiegoM -MrBvlgari -MissMollyTW -MirianVittone30 -MexicoTrafico -MegaLestary -Mcveigh5ickie11 -Mansun4eva -MAUROAMAYA7 -Luv3liiSwagg -Lorieln5 -LizyFigueiredo -LittleMBR -LightfordTien86 -Lesleezouk2526 -LeenaLocatelli8 -LaurenTW1D -LauraBechara07 -LarisaMarcil334 -LICKonSAM -KoloN0na3020 -KidoChild22 -JungHosterman48 -JuliaJayTW -JerilynCuddihee -JaythanLarry -JasmineTWsykes -JacqueseAnn -JDBiebsNavy -Iwanthisblueyes -IrmgardOvington -HermineAbajian5 -HazzasNo1Girl -HardHouseDj -GrlzCalMeSwavey -Glennqxz -Geniocatil -GNJP -FredCuper -FernandoMoehrin -FeltA5line7388 -FatimaQuiroz -FCLoveyouHarry -EmelyMedina -Dinahvxq -DennyHEART -Daniellskkqv -DGAFLiveLife -CruzStrotman959 -CruddyKidd -Credunut -CourtnieQ -Clydexkvqv -ClaudiaSGerpe -Clarawbsbt -Claaricortazar -Christenawyzp -CherSwag -CharXTheWantedX -CatrinaCudmore6 -Carlyvazfb -CakesBieberTW -CCCStunnaRico -Brittenybji -BrianaAmisano69 -AshleighWinterh -ArdeliaWilridge -Annabellew5 -AngelsOfBiebs -AndreaRamos0621 -Aljannah1433H -AleenSavely -ALiaALanziQ8 -693yk -3faryBieber -1DMegC -zainelmohra -yqerexyno -xxlouiseexx -xreplacemyheart -xkuwaitya -xXlautjuuhhhXx -xJvdw -xFillizzx -xDelilaah -xBieberUSmile -winatawira98 -whojaaaxD -wendelpereira -vomafym -viiccttoorriia -vawanitix -vanessaLUVShg -uralekb -uptownworld -unerib75 -transformers89 -tonicruzgon -toafferan83 -tertibi83 -temordia -taigaca83 -taanisefossatti -supcaca77 -sukaeRTe -straatratx -stilcica72 -stelladsouz -stefou1 -spirovin82 -soulmate22 -slaykatart -sigbanan89 -shorouk93 -serotoninetkisi -samaradusj -saarahmartinez -saadromeh -rourkestudio -replaythepast -rbknews -raphaelandria -profhelder -privanun73 -phobubbfoun74 -parasemprebeld -pamellatainara -oupah -otacran89 -orawokuzu -oqree -onoxozo -omarneto12 -okytixabo -odDeneikerM -nohaduc83 -nanashiisapii -mnaay -misskleintjemoi -mishellear -mildmildmild -michsydis86 -melaniemelu -mdfernando -maysasantos17 -matorlo72 -maryannibrahim -marlonbukoski -magranefan90210 -mabalue -luzaliram -loveyoulikeido -lolabatista91 -litlversli77 -lisboami -lelegagaliam -leees0601 -lauprowac76 -lastapk -laristump -larissagoretti -laianerafaela -laahfactum -kurdispba79 -koltl17 -kinqsuperman -kinkindno82 -karolNjc -kakusei -justinAce -juniorfluzaoooo -jooydiz -joassis3 -joannaonthelake -jinkiey -jevysworld -jayshockad -jaquesk8 -j3nni3j -iugossip -itymagibus -itsvinilopes -itsMAM -imThugginThoo -ikhouvanjexp -iiAmDomo -iamDayshaLee -iadoreparade -itoninho -iTeamRebelde -iImagineJB -iHoop4Polo -iCarlaLecaro -hucohika -hospyoura75 -hlooy17 -himajin5589 -hercai87 -hellyeahsykes -head0rheart -hassanalghalia -haerica -habredealcanzar -gyufolra78 -grecolucas -geovanad -gemmaleighTW -gdf10 -gabiewn -gabeAlfassy -foreverwithchay -flexardum89 -ferryfebrian2 -fernandGiancarl -favstar100celeb -fatihbarin -fanningh5 -evengx1 -eternalloveJB -epucahiniw -emilybudgeTW -ellebTW -elizabethwise -edemewe -drumstick155 -drisoouzaa -dlo3a501 -dimspirit -dangerm0use -daddydoo -da7awii -countrygurl1112 -checkupmv -camilasst -businesskent -bubysq -britishsick -blakebritton -bigu -bethsinden -beribi83 -barberaalexpro -banaam1 -axoxynuc -awlule70 -apysesil -anjinha7 -andrypinheiro -anaismr132 -amorXputaria -amandagamer -amandiota -alunes71 -alexogugu -abreulemos -abosalah14 -abbahmakama -abapiwa -a7bk28 -sarahlynnX -robertoT -nacamadademi -mesnina -kimchee -iRoCkHolliSteR -dOUBLeDeeeez -flyGuuy -LoveHer -JellyyBeann -YvdW -YourDreams -SUPERMIKEx -PUREBlondiee -LucasButtowski -JacobsGirl -GuinhoTerrivel -DntGive2FUCKS -Buttabby -BabyJayy -AnaLorenzoniES -1234569 -Yulyuha1983 -Yulemerlodt9 -Yowsa777 -YouDamnDummy -YesungBread -Yassinekx4 -YHateJamarcus -XxRosanneeee -Wuichan -WorldOfMattL -VeroRivas -VannityBolwerk -VaniEscuDiosa -TyishaWeidower4 -Twittyfooty -TurQu -Trungx -TroolATK -TriiciiaBV -ToshikoP -Tishox6 -TheIconicBoyz -TheWanted4Life -TheBeowulf -ThatYouBeMe -ThatNiggJSwagg -TeddyMinnie1104 -TeamBoogGIFI -TeamPhlytePromo -TashaTheTurtle -TalkinToU -TWAbbieL -TW1DGMD3 -THCSports -SyriaFnn -SybilHalbrooks2 -Swannounnet -SwaggRick -StashYourWeed -SrtaPera -SpankyHanky123 -SpainbiebsBTR1D -SoyLoQeQuieres -Sosanxx -SophiaMarieify -Smileforstyles -SincerelyCashe -SinPasadoSV -SimonFurne5290 -SimonFudd -Shirleeyre -ShebaDavtyan362 -ShannonTWanted -ShannanTheard82 -ShaneEstelae -SexyBiebsBitch -SegurosBH -SamellaDetzel36 -SamanaLeanne -SabrinaMimii -SELFMADESKAT -Rosemaryhclnf -Roselynvgskn -RochiCalderini -RoAlvarenga -RideOfMyLife -RetweetsKWT -RekliSpor -ReganTW -RaffoTaffo -RachelBiipolar -QDSmilesPretty -PringleMe5ilyn2 -PhyliciaBaisa -Philomenafdqci -PeteMcVries -Paulaortjim -PatriciaDreamer -ParkersLaugh -Orlanee3 -Ok202o -OdeioFalsidades -ObsessWithZayn -Nohemiiy977 -Nm6 -Nikolasol -Nessagoregous -Naysilva -NaturalliBad -MszKeysha -MrDCsports -MooreTHEWANTED -MikaFreakazoid -MiguelFreitas -MigDT -MeuGuu -MeluchiMendez -Melissa13x -MelanieFUruguay -MeganeWerner -Mcanelly50MCWfq -MayaCeee -Maudiekgr -MattGotTheJuice -Mathioluiz -Mathbelliin -MarianaaNuunes -MariSaysSWAG -Marcelavms -MadlyOdd -MERTOS -LydiaHumess -LuablancofansFC -LuaMeuPeDeMulek -LoveMyTweeets -LoveKiidrauhl -LookAtTheStarss -Liluprieto -Lidipitoko -Leo4ss -LeiLeiyolo -LatinGirlSWAAG -Latias619bot -LadyTripz1 -LOEMPIAk -LKJPhotography -KulkeLashanda76 -KittenCh5ista66 -KimburleyD -KaysTWSykes -KatrineAasland -KarlyPraes -KaiserGDL -JuuhPiano -JuanJo7V -Jorgiit0oRG -JinCourt -JessicaaSykesTW -JazzBEENPretty -JayyBasilio -JaylenneIvanna -JRNoCricket -ItsSara1D -ItbieberOrDiie -IssacBEENRICH -Israhelldid911 -IsiahDearruda33 -ImWhoUWant -Ilovethose5boys -IwearTIArAs -IIrraaMcFly -Hulkanator -HollyWolff201 -HisAddiktion -HeroesRestart -HernettKaylene3 -Hedygicfp -HeCrazyOverTAM -HayleighGMD3x -HausOfMrYessCer -HassanAliQuresh -HPPatrono -GwenaaelleR -GuttaBtchLea -GuiiApolinario -GleudeCe0la8549 -GlennieBby -GiovannaPiccini -Ginaloveyou1 -GhadaMN -Gertietzi -GeritaMija3s -GabiReberte -GAMEX0VER -FreakyyB -FrasesGirlStar -Flykidjames -FloorrAlvarez -Flavio58 -FinleyJaedai -FcFamiliaGL -FarahBlackwater -FansDonJediondo -FLBieberTeam -FCchaysexyS2 -FCLuAr -EuQuisVcRestart -EstherWAYNE -EsAmorBelieber -Erickasxm -Epihk -EminemxKim -ElenaTwiterok -EleaseRulon3998 -DupontRene123 -DritJames -DoooshiiiI -DontCallMeBrah -DominiqueTineo2 -DizBruno -DivulgaKeizy2 -DiscoPanda -DieEnormous -Diamondsda -Deedraznjqn -DearOldBitter -DanielaCuellarr -DaisyyTheWanted -DaantjeKaspers -DaaniKM -CurlsRunDaworld -CreuDaRestart -Coriegjubp -ContessaCleven6 -ConcettaVannorm -CodyXBurguer -CienoBlanche491 -ChocoolaThii -CheutinVella421 -CheneePretty -CharlotteTW -ChantelHorsman4 -CeCeDaaatsMe -Catheyaaeml -Caseykidrauhl -CarolineFerra14 -CarleyTW -CaitGibbonsX -CachinhosDaMel -Bu2FulMASSACRE -BrigidaHoffmann -BriennaLee -BrendaGalea -BobbieStier6590 -BlessYaSoul -BlancESTdopant -BingoPlayersFan -BiinAjeel -BigDudechi -BiancaRaasch -BeylessMa5celen -Bethndwwg -Beforemylife -BeceneLaticia82 -BarbzloveNicki -BadGiiirl -BONECOINFRAVEL -BClementine -BBMQ8 -ArnitaLeys5788 -ArielDemo1 -ApoioOABR2 -AnnikenBrox -AndreaGlasche -Anastasia1905GS -Anais2610 -AmorAubrey -AmieeShaffner48 -AmandaZnz -Alansari42 -Airnais -AirAgenciesLtd -Adorethickems -AMOSORTILEGIO -A7maD25 -25SaRo0n45 -1literofvodka -1Girlciumenta -1Directionarry -1Darethesexxx -19abz -zyLvixD -zumbisemteta -zulu149er -zulfikarADNANI -zoeGmackay -zatchbell555 -yuko125s -youngnay113 -yosem7 -yeyo105 -yesikaMANZANO -yddubhaey -yassofsaad -xxLotjaa -xtyrzagioya -xrudoxod89 -xoxoCLO -xochloxo -xoNayyxo -xfleurtjeeeee -xcamilleloveyou -xbukeet -xLivingVintage -xXWHTNYXx -xTLMN -xSuzann01 -xShannaS -xSSEDDA -xRyaaannnnnn -xPaullaa -xNora -xJSV -xGivanoArnhem -xElevateGrande -xBrokenFake -x3CoOki3zx3 -x0xoMelanie -wzyrenato -wowitskidrauhl -worldrankin -wldkw -wikwikdy -wicovanO -whatsnextdaddy -welove1Dthemost -wcntv -watansport -wardah2020 -walkinthelena -waikhamon71 -voldemortbot -viihmedeirosED -viihkr -vicustarna -victoriaaarose -vemkTeeh -varavale -vanmathiias -v0iceoftreason -utesre81 -upovote -unmikerosas -unicornskingdom -undrgroundking -umsalman12 -umiushi1102 -ultimatezhanee -ulrhinoc82 -udonmarunomi -tweetinyamouth -tryfelynn -trueloka -trueShtOnly -triperim74 -tremyn -tradticha87 -tracitla81 -tororo72 -titdemon84 -timmacy -tigerhzthun -tiffanyvaleria1 -tiffanyhomie -thmovturin83 -thinkerlik -theycallmetara -thecomeUP -thekauaigirl -thatsbeth -thatgirlpinkey -thatMODELtype -thasonvez -thamiigomes -tfi1233 -termpapersonlin -taylorjamieson -talitaestudante -takerui -tahDeetz -tacbadec89 -tablope71 -swarsuschild85 -swaglikebiebs69 -suzanefurst -sunskysun -sunshinekissess -sualilit -stobypinz -stefanyilv -stefaniskil -staystrrrong -staystrongnsn -statweestics -startriotinme -srtabrunaevans -squaidslikewoe -sponhana89 -spicYtRoll -sophmayo -sophieeeeeeex -sonwarnings -smrivieri -smiledrauhl -slemanQ8 -sleekamna87 -skylar0158 -skotic -skittzylicious -sincerelyshella -simplyyjerrika -shyKassie1076 -shogal3yon -servantblessing -senann -seenCHRISnaked -seduKtiveKharm -sealine01 -sdewilde7 -schomwilo81 -scholexef80 -sayyykayleee -savaburry -sarittaa -sarahchancer -saraa31 -sanchezjuanelo -sanjack2001 -samwoote70 -sammi098 -sammiamm -samelahaheuil -samcostello1 -samarkandya -sadybamfx3 -sabrinagoularts -sshauna -ruanmt -roscentno87 -rorroAsdf -rooaguiar -ronnocharas -romerluc -rojonikanta -roisiningle -rissyrisss -rirakkunaX -rienoonpa81 -richieboyswag -riasleekit83 -reutersMarketN -renverbto71 -rentacoderuk -reinventellie -reikazannge -reginexybeer -raymondoesit -rarityguide -raganmckenzi -rafatoda -rafaela1352 -radheam -rachiebabyxo -rabialex -queissorapaiz -purrttykitty \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents.sample b/splunk_eventgen/samples/useragents.sample deleted file mode 100644 index 5f021476..00000000 --- a/splunk_eventgen/samples/useragents.sample +++ /dev/null @@ -1,84 +0,0 @@ -Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 -BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ -Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 -Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] -BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 -Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents_desktop.sample b/splunk_eventgen/samples/useragents_desktop.sample deleted file mode 100644 index 46d79f71..00000000 --- a/splunk_eventgen/samples/useragents_desktop.sample +++ /dev/null @@ -1,75 +0,0 @@ -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) -Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0) -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9) AppleWebKit/537.71 (KHTML, like Gecko) Version/7.0 Safari/537.71 -Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 -Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 -Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Firefox/24.0 -Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 -Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 -Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 -Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 -Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 diff --git a/splunk_eventgen/samples/useragents_mobile.sample b/splunk_eventgen/samples/useragents_mobile.sample deleted file mode 100644 index 5f021476..00000000 --- a/splunk_eventgen/samples/useragents_mobile.sample +++ /dev/null @@ -1,84 +0,0 @@ -Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] -Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 -BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ -Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 -Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 -Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 -Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] -BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 -Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ -Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 -Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 -Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 -Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 -Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] -Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 -Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 -Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 -BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 -Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv deleted file mode 100644 index 383a15ae..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv +++ /dev/null @@ -1,847 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"2490.000000","40.695000","2490.000000","40.695000","2490.000000","40.695000","852.000000","0.000000",,,,,,,,,,,,"0.000000","334.500000","669.000000","15.000000","334.500000","334.500000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073320.000000","0.000000","2092704.000000","129468.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","100.000000","103.000000","115.000000","115.000000","115.000000","0.000000","0.000000","0.000000","95.000000","97.000000","97.000000","113.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","738083.000000",,,,, -"2638.000000","41.390000","2638.000000","41.390000","2638.000000","41.390000","1101.000000","0.000000",,,,,,,,,,,,"7.000000","480.000000","952.000000","10.000000","480.000000","480.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073100.000000","0.000000","2092704.000000","129468.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","101.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","96.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738103.000000",,,,, -"2310.000000","39.850000","2310.000000","39.850000","2310.000000","39.850000","766.000000","0.000000",,,,,,,,,,,,"0.000000","476.000000","950.000000","19.000000","476.000000","476.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073000.000000","0.000000","2092704.000000","129468.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","98.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","98.000000","93.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738123.000000",,,,, -"976.000000","30.580000","976.000000","30.580000","976.000000","30.580000","473.000000","0.000000",,,,,,,,,,,,"0.000000","257.000000","514.000000","6526.000000","257.000000","257.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2073184.000000","0.000000","2092704.000000","129468.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","81.000000","99.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","76.000000","93.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738143.000000",,,,, -"1399.000000","32.570000","1399.000000","32.570000","1399.000000","32.570000","611.000000","0.000000",,,,,,,,,,,,"27.000000","331.500000","636.000000","4477.000000","331.500000","331.500000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072828.000000","0.000000","2092704.000000","129468.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","65.000000","94.000000","115.000000","103.000000","109.000000","0.000000","0.000000","0.000000","96.000000","58.000000","88.000000","113.000000","95.000000","106.000000","160.000000","6000.000000","0.000000","738163.000000",,,,, -"2530.000000","37.880000","2530.000000","37.880000","2530.000000","37.880000","602.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","913.000000","460.000000","458.000000","458.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","67.000000","95.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","97.000000","60.000000","89.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738183.000000",,,,, -"1764.000000","32.285000","1764.000000","32.285000","1764.000000","32.285000","662.000000","0.000000",,,,,,,,,,,,"53.000000","11367.000000","22679.000000","167.000000","11367.000000","11367.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","79.000000","93.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","96.000000","71.000000","88.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738203.000000",,,,, -"2557.000000","36.010000","2557.000000","36.010000","2557.000000","36.010000","526.000000","0.000000",,,,,,,,,,,,"9.000000","1922.500000","3828.000000","17.000000","1922.500000","1922.500000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2073048.000000","0.000000","2092704.000000","129468.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","104.000000","92.000000","93.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","87.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738223.000000",,,,, -"1743.000000","32.185000","1743.000000","32.185000","1743.000000","32.185000","581.000000","0.000000",,,,,,,,,,,,"828.000000","5305.000000","9768.000000","22.000000","5305.000000","5305.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072736.000000","0.000000","2092704.000000","129468.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","104.000000","81.000000","91.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","76.000000","85.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738243.000000",,,,, -"2762.000000","36.475000","2762.000000","36.475000","2762.000000","36.475000","703.000000","0.000000",,,,,,,,,,,,"0.000000","620.500000","1241.000000","7.000000","620.500000","620.500000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072552.000000","0.000000","2092704.000000","129468.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","91.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738263.000000",,,,, -"2488.000000","35.190000","2488.000000","35.190000","2488.000000","35.190000","760.000000","0.000000",,,,,,,,,,,,"319.000000","486.000000","653.000000","13.000000","486.000000","486.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072232.000000","0.000000","2092704.000000","129468.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","87.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738283.000000",,,,, -"2542.000000","35.440000","2542.000000","35.440000","2542.000000","35.440000","739.000000","0.000000",,,,,,,,,,,,"1443.000000","1058.000000","673.000000","7.000000","1058.000000","1058.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2071664.000000","0.000000","2092704.000000","129468.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","103.000000","90.000000","114.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","97.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738303.000000",,,,, -"2921.000000","39.720000","2921.000000","39.720000","2921.000000","39.720000","439.000000","0.000000",,,,,,,,,,,,"822.000000","1148.000000","1473.000000","18.000000","1148.000000","1148.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071668.000000","0.000000","2092704.000000","129468.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","104.000000","91.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","98.000000","86.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738323.000000",,,,, -"1933.000000","35.075000","1933.000000","35.075000","1933.000000","35.075000","630.000000","0.000000",,,,,,,,,,,,"3822.000000","2383.000000","944.000000","3.000000","2383.000000","2383.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","92.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738343.000000",,,,, -"2517.000000","37.820000","2517.000000","37.820000","2517.000000","37.820000","498.000000","0.000000",,,,,,,,,,,,"1862.000000","1160.000000","458.000000","1.000000","1160.000000","1160.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","93.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738363.000000",,,,, -"2278.000000","42.200000","2278.000000","42.200000","2278.000000","42.200000","640.000000","0.000000",,,,,,,,,,,,"1684.000000","1041.000000","398.000000","4.000000","1041.000000","1041.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070756.000000","0.000000","2092704.000000","129468.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","94.000000","90.000000","115.000000","108.000000","109.000000","0.000000","0.000000","0.000000","96.000000","85.000000","83.000000","113.000000","97.000000","107.000000","160.000000","6000.000000","0.000000","738383.000000",,,,, -"1994.000000","40.870000","1994.000000","40.870000","1994.000000","40.870000","1052.000000","0.000000",,,,,,,,,,,,"1308.000000","831.000000","354.000000","3.000000","831.000000","831.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070720.000000","0.000000","2092704.000000","129468.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","88.000000","115.000000","108.000000","107.000000","0.000000","0.000000","0.000000","96.000000","85.000000","82.000000","113.000000","97.000000","104.000000","160.000000","6000.000000","0.000000","738403.000000",,,,, -"2356.000000","42.570000","2356.000000","42.570000","2356.000000","42.570000","785.000000","0.000000",,,,,,,,,,,,"87.000000","111.500000","135.000000","8.000000","111.500000","111.500000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070256.000000","0.000000","2092704.000000","129468.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","96.000000","83.000000","82.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738423.000000",,,,, -"1843.000000","45.155000","1843.000000","45.155000","1843.000000","45.155000","1227.000000","0.000000",,,,,,,,,,,,"506.000000","711.500000","914.000000","2.000000","711.500000","711.500000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069912.000000","0.000000","2092704.000000","129468.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","104.000000","88.000000","91.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","78.000000","84.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738443.000000",,,,, -"2522.000000","48.350000","2522.000000","48.350000","2522.000000","48.350000","753.000000","0.000000",,,,,,,,,,,,"0.000000","126.000000","251.000000","10.000000","126.000000","126.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069700.000000","0.000000","2092704.000000","129468.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","94.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","84.000000","87.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738463.000000",,,,, -"3579.000000","53.315000","3579.000000","53.315000","3579.000000","53.315000","729.000000","0.000000",,,,,,,,,,,,"190.000000","751.000000","1306.000000","4.000000","751.000000","751.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069508.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","105.000000","103.000000","96.000000","115.000000","204.000000","108.000000","0.000000","0.000000","0.000000","96.000000","95.000000","89.000000","114.000000","204.000000","107.000000","160.000000","6000.000000","0.000000","738483.000000",,,,, -"4342.000000","48.900000","4342.000000","48.900000","4342.000000","48.900000","1260.000000","0.000000",,,,,,,,,,,,"206.000000","859.000000","1510.000000","6.000000","859.000000","859.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070624.000000","0.000000","2092704.000000","129468.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","132.000000","102.000000","120.000000","204.000000","116.000000","0.000000","0.000000","0.000000","97.000000","123.000000","94.000000","116.000000","204.000000","116.000000","160.000000","6000.000000","0.000000","738503.000000",,,,, -"4402.000000","49.180000","4402.000000","49.180000","4402.000000","49.180000","920.000000","0.000000",,,,,,,,,,,,"3.000000","579.500000","1155.000000","20.000000","579.500000","579.500000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","108.000000","164.000000","109.000000","162.000000","204.000000","178.000000","0.000000","0.000000","0.000000","99.000000","154.000000","100.000000","145.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","738523.000000",,,,, -"3748.000000","46.110000","3748.000000","46.110000","3748.000000","46.110000","593.000000","0.000000",,,,,,,,,,,,"0.000000","577.000000","1153.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070820.000000","0.000000","2092704.000000","129468.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","109.000000","174.000000","115.000000","170.000000","201.000000","178.000000","0.000000","0.000000","0.000000","100.000000","157.000000","105.000000","148.000000","191.000000","159.000000","160.000000","6000.000000","0.000000","738542.000000",,,,, -"4747.000000","49.800000","4747.000000","49.800000","4747.000000","49.800000","853.000000","0.000000",,,,,,,,,,,,"121.000000","1635.000000","3148.000000","17.000000","1635.000000","1635.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","179.000000","120.000000","171.000000","201.000000","187.000000","0.000000","0.000000","0.000000","101.000000","162.000000","109.000000","155.000000","191.000000","179.000000","160.000000","6000.000000","0.000000","738563.000000",,,,, -"4843.000000","50.255000","4843.000000","50.255000","4843.000000","50.255000","776.000000","0.000000",,,,,,,,,,,,"124.000000","588.000000","1051.000000","8.000000","588.000000","588.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071272.000000","0.000000","2092704.000000","129468.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","184.000000","127.000000","176.000000","206.000000","196.000000","0.000000","0.000000","0.000000","102.000000","167.000000","116.000000","158.000000","193.000000","187.000000","160.000000","6000.000000","0.000000","738583.000000",,,,, -"4740.000000","49.770000","4740.000000","49.770000","4740.000000","49.770000","880.000000","0.000000",,,,,,,,,,,,"202.000000","2118.000000","4033.000000","25.000000","2118.000000","2118.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","111.000000","191.000000","132.000000","179.000000","206.000000","197.000000","0.000000","0.000000","0.000000","103.000000","178.000000","121.000000","166.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738603.000000",,,,, -"4778.000000","49.445000","4778.000000","49.445000","4778.000000","49.445000","880.000000","0.000000",,,,,,,,,,,,"1.000000","513.000000","1023.000000","21.000000","513.000000","513.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070612.000000","0.000000","2092704.000000","129468.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","189.000000","137.000000","184.000000","206.000000","197.000000","0.000000","0.000000","0.000000","105.000000","177.000000","125.000000","170.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738623.000000",,,,, -"5030.000000","50.635000","5030.000000","50.635000","5030.000000","50.635000","967.000000","0.000000",,,,,,,,,,,,"1.000000","732.000000","1462.000000","19.000000","732.000000","732.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070224.000000","0.000000","2092704.000000","129468.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","193.000000","146.000000","188.000000","211.000000","201.000000","0.000000","0.000000","0.000000","105.000000","181.000000","134.000000","171.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738643.000000",,,,, -"4714.000000","49.150000","4714.000000","49.150000","4714.000000","49.150000","725.000000","0.000000",,,,,,,,,,,,"0.000000","450.500000","900.000000","29.000000","450.500000","450.500000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070060.000000","0.000000","2092704.000000","129468.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","195.000000","152.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","107.000000","182.000000","139.000000","173.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738663.000000",,,,, -"4943.000000","49.725000","4943.000000","49.725000","4943.000000","49.725000","955.000000","0.000000",,,,,,,,,,,,"0.000000","678.500000","1356.000000","61.000000","678.500000","678.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2070072.000000","0.000000","2092704.000000","129468.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","198.000000","157.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","109.000000","185.000000","145.000000","179.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738683.000000",,,,, -"4142.000000","45.960000","4142.000000","45.960000","4142.000000","45.960000","960.000000","0.000000",,,,,,,,,,,,"0.000000","579.500000","1159.000000","18.000000","579.500000","579.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069740.000000","0.000000","2092704.000000","129468.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","190.000000","165.000000","195.000000","202.000000","202.000000","0.000000","0.000000","0.000000","110.000000","173.000000","152.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738703.000000",,,,, -"3651.000000","43.655000","3651.000000","43.655000","3651.000000","43.655000","1227.000000","0.000000",,,,,,,,,,,,"1.000000","385.000000","769.000000","16.000000","385.000000","385.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069296.000000","0.000000","2092704.000000","129468.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","185.000000","170.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","111.000000","161.000000","155.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738723.000000",,,,, -"3442.000000","42.670000","3442.000000","42.670000","3442.000000","42.670000","1396.000000","0.000000",,,,,,,,,,,,"0.000000","377.500000","755.000000","11.000000","377.500000","377.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2069040.000000","0.000000","2092704.000000","129468.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","122.000000","181.000000","176.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","144.000000","158.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738743.000000",,,,, -"4002.000000","45.300000","4002.000000","45.300000","4002.000000","45.300000","1442.000000","0.000000",,,,,,,,,,,,"1.000000","822.000000","1643.000000","36.000000","822.000000","822.000000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068752.000000","0.000000","2092704.000000","129468.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","182.000000","183.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","139.000000","163.000000","182.000000","187.000000","199.000000","160.000000","6000.000000","0.000000","738763.000000",,,,, -"4596.000000","48.095000","4596.000000","48.095000","4596.000000","48.095000","2221.000000","0.000000",,,,,,,,,,,,"0.000000","525.500000","1050.000000","32.000000","525.500000","525.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068660.000000","0.000000","2092704.000000","129468.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","126.000000","184.000000","186.000000","196.000000","197.000000","202.000000","0.000000","0.000000","0.000000","114.000000","147.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738783.000000",,,,, -"4316.000000","50.275000","4316.000000","50.275000","4316.000000","50.275000","1720.000000","0.000000",,,,,,,,,,,,"8.000000","437.000000","866.000000","24.000000","437.000000","437.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","189.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","116.000000","159.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738803.000000",,,,, -"3743.000000","47.585000","3743.000000","47.585000","3743.000000","47.585000","1112.000000","0.000000",,,,,,,,,,,,"4.000000","485.500000","965.000000","18.000000","485.500000","485.500000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072720.000000","0.000000","2092704.000000","129468.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","186.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","117.000000","158.000000","164.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738823.000000",,,,, -"4026.000000","48.915000","4026.000000","48.915000","4026.000000","48.915000","927.000000","0.000000",,,,,,,,,,,,"4.000000","578.000000","1152.000000","24.000000","578.000000","578.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","185.000000","188.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","118.000000","152.000000","164.000000","185.000000","177.000000","194.000000","160.000000","6000.000000","0.000000","738843.000000",,,,, -"4860.000000","50.835000","4860.000000","50.835000","4860.000000","50.835000","711.000000","0.000000",,,,,,,,,,,,"2.000000","565.000000","1127.000000","24.000000","565.000000","565.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072452.000000","0.000000","2092704.000000","129468.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","133.000000","184.000000","188.000000","198.000000","205.000000","204.000000","0.000000","0.000000","0.000000","119.000000","155.000000","164.000000","186.000000","191.000000","194.000000","160.000000","6000.000000","0.000000","738863.000000",,,,, -"4618.000000","49.695000","4618.000000","49.695000","4618.000000","49.695000","808.000000","0.000000",,,,,,,,,,,,"2.000000","548.000000","1094.000000","20.000000","548.000000","548.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072380.000000","0.000000","2092704.000000","129468.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","135.000000","193.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","122.000000","168.000000","164.000000","187.000000","204.000000","199.000000","160.000000","6000.000000","0.000000","738883.000000",,,,, -"5095.000000","51.940000","5095.000000","51.940000","5095.000000","51.940000","866.000000","0.000000",,,,,,,,,,,,"2.000000","501.000000","999.000000","20.000000","501.000000","501.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","137.000000","196.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","124.000000","181.000000","164.000000","188.000000","204.000000","197.000000","160.000000","6000.000000","0.000000","738902.000000",,,,, -"5609.000000","54.355000","5609.000000","54.355000","5609.000000","54.355000","587.000000","0.000000",,,,,,,,,,,,"2.000000","688.500000","1373.000000","24.000000","688.500000","688.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072300.000000","0.000000","2092704.000000","129468.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","201.000000","191.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","126.000000","192.000000","167.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738923.000000",,,,, -"4313.000000","48.265000","4313.000000","48.265000","4313.000000","48.265000","1361.000000","0.000000",,,,,,,,,,,,"3.000000","540.500000","1077.000000","47.000000","540.500000","540.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072344.000000","0.000000","2092704.000000","129468.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","197.000000","190.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","128.000000","188.000000","165.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738943.000000",,,,, -"4995.000000","51.465000","4995.000000","51.465000","4995.000000","51.465000","578.000000","0.000000",,,,,,,,,,,,"2.000000","520.000000","1038.000000","18.000000","520.000000","520.000000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","144.000000","198.000000","190.000000","202.000000","215.000000","207.000000","0.000000","0.000000","0.000000","129.000000","186.000000","165.000000","192.000000","215.000000","206.000000","160.000000","6000.000000","0.000000","738963.000000",,,,, -"4719.000000","48.675000","4719.000000","48.675000","4719.000000","48.675000","836.000000","0.000000",,,,,,,,,,,,"4.000000","669.500000","1334.000000","19.000000","669.500000","669.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072384.000000","0.000000","2092704.000000","129468.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","146.000000","192.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","131.000000","177.000000","165.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","738983.000000",,,,, -"4315.000000","46.770000","4315.000000","46.770000","4315.000000","46.770000","1524.000000","0.000000",,,,,,,,,,,,"2.000000","536.000000","1070.000000","19.000000","536.000000","536.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072120.000000","0.000000","2092704.000000","129468.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","190.000000","189.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","133.000000","175.000000","166.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739003.000000",,,,, -"4192.000000","46.195000","4192.000000","46.195000","4192.000000","46.195000","1229.000000","0.000000",,,,,,,,,,,,"5.000000","837.500000","1670.000000","26.000000","837.500000","837.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","149.000000","186.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","134.000000","167.000000","167.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739023.000000",,,,, -"4681.000000","47.000000","4681.000000","47.000000","4681.000000","47.000000","779.000000","0.000000",,,,,,,,,,,,"14.000000","595.000000","1174.000000","27.000000","595.000000","595.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072064.000000","0.000000","2092704.000000","129468.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","186.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","137.000000","168.000000","170.000000","194.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739043.000000",,,,, -"4614.000000","46.685000","4614.000000","46.685000","4614.000000","46.685000","779.000000","0.000000",,,,,,,,,,,,"6.000000","520.500000","1033.000000","20.000000","520.500000","520.500000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","188.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","140.000000","169.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739062.000000",,,,, -"4836.000000","47.725000","4836.000000","47.725000","4836.000000","47.725000","1031.000000","0.000000",,,,,,,,,,,,"6.000000","748.000000","1490.000000","32.000000","748.000000","748.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072592.000000","0.000000","2092704.000000","129468.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","190.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","142.000000","176.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739082.000000",,,,, -"5162.000000","49.750000","5162.000000","49.750000","5162.000000","49.750000","1246.000000","0.000000",,,,,,,,,,,,"7.000000","1318.500000","2630.000000","25.000000","1318.500000","1318.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072488.000000","0.000000","2092704.000000","129468.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","194.000000","191.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","145.000000","179.000000","174.000000","198.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739103.000000",,,,, -"4937.000000","48.695000","4937.000000","48.695000","4937.000000","48.695000","973.000000","0.000000",,,,,,,,,,,,"32.000000","5722.000000","11411.000000","58.000000","5722.000000","5722.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072740.000000","0.000000","2092704.000000","129468.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","197.000000","193.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","147.000000","186.000000","177.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739122.000000",,,,, -"5218.000000","53.515000","5218.000000","53.515000","5218.000000","53.515000","1141.000000","0.000000",,,,,,,,,,,,"7.000000","624.000000","1241.000000","29.000000","624.000000","624.000000",,,,,,,,,,,"1090516.000000","1216348.000000","0.000000","0.000000","2073024.000000","0.000000","2092704.000000","129468.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","201.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","150.000000","192.000000","180.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739143.000000",,,,, -"4709.000000","56.125000","4709.000000","56.125000","4709.000000","56.125000","1074.000000","0.000000",,,,,,,,,,,,"60.000000","902.000000","1742.000000","25.000000","902.000000","902.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","197.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","151.000000","186.000000","181.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739162.000000",,,,, -"4164.000000","53.560000","4164.000000","53.560000","4164.000000","53.560000","1224.000000","0.000000",,,,,,,,,,,,"4712.000000","13172.500000","21633.000000","54.000000","13172.500000","13172.500000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072948.000000","0.000000","2092704.000000","129468.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","188.000000","192.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","153.000000","176.000000","179.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739182.000000",,,,, -"4805.000000","56.575000","4805.000000","56.575000","4805.000000","56.575000","1034.000000","0.000000",,,,,,,,,,,,"17.000000","488.000000","958.000000","11.000000","488.000000","488.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072904.000000","0.000000","2092704.000000","129468.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","184.000000","192.000000","205.000000","201.000000","209.000000","0.000000","0.000000","0.000000","155.000000","170.000000","178.000000","199.000000","197.000000","208.000000","160.000000","6000.000000","0.000000","739202.000000",,,,, -"4420.000000","54.765000","4420.000000","54.765000","4420.000000","54.765000","697.000000","0.000000",,,,,,,,,,,,"5.000000","381.000000","756.000000","8.000000","381.000000","381.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","188.000000","191.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","156.000000","171.000000","176.000000","199.000000","204.000000","204.000000","160.000000","6000.000000","0.000000","739222.000000",,,,, -"4214.000000","59.300000","4214.000000","59.300000","4214.000000","59.300000","778.000000","0.000000",,,,,,,,,,,,"2.000000","560.000000","1118.000000","12.000000","560.000000","560.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072744.000000","0.000000","2092704.000000","129468.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","189.000000","190.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","158.000000","169.000000","175.000000","200.000000","204.000000","201.000000","160.000000","6000.000000","0.000000","739242.000000",,,,, -"4482.000000","60.555000","4482.000000","60.555000","4482.000000","60.555000","682.000000","0.000000",,,,,,,,,,,,"2.000000","398.000000","794.000000","16.000000","398.000000","398.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072660.000000","0.000000","2092704.000000","129468.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","187.000000","190.000000","205.000000","209.000000","205.000000","0.000000","0.000000","0.000000","159.000000","163.000000","174.000000","200.000000","204.000000","200.000000","160.000000","6000.000000","0.000000","739262.000000",,,,, -"4657.000000","61.880000","4657.000000","61.880000","4657.000000","61.880000","1073.000000","0.000000",,,,,,,,,,,,"13.000000","292.000000","570.000000","15.000000","292.000000","292.000000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","184.000000","190.000000","205.000000","208.000000","205.000000","0.000000","0.000000","0.000000","161.000000","162.000000","173.000000","200.000000","200.000000","199.000000","160.000000","6000.000000","0.000000","739282.000000",,,,, -"4548.000000","61.370000","4548.000000","61.370000","4548.000000","61.370000","770.000000","0.000000",,,,,,,,,,,,"18.000000","561.500000","1105.000000","18.000000","561.500000","561.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","181.000000","187.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","164.000000","170.000000","174.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739302.000000",,,,, -"4457.000000","60.940000","4457.000000","60.940000","4457.000000","60.940000","923.000000","0.000000",,,,,,,,,,,,"915.000000","2446.500000","3976.000000","20.000000","2446.500000","2446.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072728.000000","0.000000","2092704.000000","129468.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","189.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","165.000000","172.000000","175.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739322.000000",,,,, -"4602.000000","61.625000","4602.000000","61.625000","4602.000000","61.625000","1564.000000","0.000000",,,,,,,,,,,,"2.000000","644.500000","1287.000000","20.000000","644.500000","644.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","168.000000","173.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739342.000000",,,,, -"4478.000000","61.040000","4478.000000","61.040000","4478.000000","61.040000","1824.000000","0.000000",,,,,,,,,,,,"8.000000","378.000000","748.000000","14.000000","378.000000","378.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","170.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739362.000000",,,,, -"4201.000000","59.735000","4201.000000","59.735000","4201.000000","59.735000","1506.000000","0.000000",,,,,,,,,,,,"2.000000","451.000000","899.000000","17.000000","451.000000","451.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","184.000000","189.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","167.000000","173.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739382.000000",,,,, -"4286.000000","60.140000","4286.000000","60.140000","4286.000000","60.140000","943.000000","0.000000",,,,,,,,,,,,"30.000000","1213.000000","2395.000000","19.000000","1213.000000","1213.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072376.000000","0.000000","2092704.000000","129468.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","180.000000","188.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","170.000000","161.000000","171.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739402.000000",,,,, -"3519.000000","56.530000","3519.000000","56.530000","3519.000000","56.530000","897.000000","0.000000",,,,,,,,,,,,"6.000000","351.500000","697.000000","10.000000","351.500000","351.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072308.000000","0.000000","2092704.000000","129468.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","175.000000","186.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","169.000000","150.000000","167.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739422.000000",,,,, -"5069.000000","63.815000","5069.000000","63.815000","5069.000000","63.815000","981.000000","0.000000",,,,,,,,,,,,"4.000000","703.000000","1402.000000","27.000000","703.000000","703.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","182.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","159.000000","166.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739443.000000",,,,, -"4774.000000","62.430000","4774.000000","62.430000","4774.000000","62.430000","889.000000","0.000000",,,,,,,,,,,,"2185.000000","2329.000000","2471.000000","20.000000","2329.000000","2329.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072348.000000","0.000000","2092704.000000","129468.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","186.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","167.000000","167.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739463.000000",,,,, -"3333.000000","50.655000","3333.000000","50.655000","3333.000000","50.655000","1163.000000","0.000000",,,,,,,,,,,,"6579.000000","6708.500000","6837.000000","34.000000","6708.500000","6708.500000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","183.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","169.000000","165.000000","165.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739482.000000",,,,, -"3565.000000","51.750000","3565.000000","51.750000","3565.000000","51.750000","650.000000","0.000000",,,,,,,,,,,,"388.000000","2851.000000","5313.000000","22.000000","2851.000000","2851.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072860.000000","0.000000","2092704.000000","129468.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","170.000000","182.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","168.000000","150.000000","162.000000","199.000000","195.000000","199.000000","160.000000","6000.000000","0.000000","739502.000000",,,,, -"4392.000000","55.635000","4392.000000","55.635000","4392.000000","55.635000","905.000000","0.000000",,,,,,,,,,,,"4897.000000","9654.000000","14409.000000","107.000000","9654.000000","9654.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","164.000000","181.000000","207.000000","184.000000","202.000000","0.000000","0.000000","0.000000","168.000000","141.000000","161.000000","199.000000","171.000000","196.000000","160.000000","6000.000000","0.000000","739522.000000",,,,, -"4429.000000","60.810000","4429.000000","60.810000","4429.000000","60.810000","932.000000","0.000000",,,,,,,,,,,,"628.000000","4518.500000","8407.000000","62.000000","4518.500000","4518.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","181.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","154.000000","162.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739542.000000",,,,, -"3683.000000","57.300000","3683.000000","57.300000","3683.000000","57.300000","873.000000","0.000000",,,,,,,,,,,,"5406.000000","9346.000000","13285.000000","20.000000","9346.000000","9346.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072584.000000","0.000000","2092704.000000","129468.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","186.000000","173.000000","179.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","159.000000","161.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739562.000000",,,,, -"2890.000000","53.575000","2890.000000","53.575000","2890.000000","53.575000","983.000000","0.000000",,,,,,,,,,,,"14981.000000","9604.000000","4227.000000","22.000000","9604.000000","9604.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072684.000000","0.000000","2092704.000000","129468.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","153.000000","174.000000","205.000000","201.000000","201.000000","0.000000","0.000000","0.000000","165.000000","141.000000","157.000000","199.000000","191.000000","191.000000","160.000000","6000.000000","0.000000","739582.000000",,,,, -"2773.000000","54.030000","2773.000000","54.030000","2773.000000","54.030000","962.000000","0.000000",,,,,,,,,,,,"13438.000000","10948.500000","8458.000000","9.000000","10948.500000","10948.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072724.000000","0.000000","2092704.000000","129468.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","127.000000","169.000000","205.000000","181.000000","201.000000","0.000000","0.000000","0.000000","164.000000","117.000000","151.000000","199.000000","180.000000","191.000000","160.000000","6000.000000","0.000000","739602.000000",,,,, -"2556.000000","53.005000","2556.000000","53.005000","2556.000000","53.005000","1566.000000","0.000000",,,,,,,,,,,,"9579.000000","7310.000000","5040.000000","19.000000","7310.000000","7310.000000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072676.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","119.000000","165.000000","205.000000","147.000000","201.000000","0.000000","0.000000","0.000000","163.000000","98.000000","147.000000","199.000000","135.000000","191.000000","160.000000","6000.000000","0.000000","739622.000000",,,,, -"3540.000000","57.630000","3540.000000","57.630000","3540.000000","57.630000","657.000000","0.000000",,,,,,,,,,,,"56.000000","6209.500000","12363.000000","45.000000","6209.500000","6209.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","138.000000","164.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","163.000000","109.000000","144.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739642.000000",,,,, -"3557.000000","57.715000","3557.000000","57.715000","3557.000000","57.715000","792.000000","0.000000",,,,,,,,,,,,"259.000000","2335.000000","4408.000000","61.000000","2335.000000","2335.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","181.000000","160.000000","163.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","162.000000","120.000000","141.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739662.000000",,,,, -"3087.000000","55.505000","3087.000000","55.505000","3087.000000","55.505000","1388.000000","0.000000",,,,,,,,,,,,"265.000000","2670.000000","5073.000000","23.000000","2670.000000","2670.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","180.000000","164.000000","161.000000","205.000000","190.000000","196.000000","0.000000","0.000000","0.000000","161.000000","127.000000","138.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739682.000000",,,,, -"3099.000000","55.560000","3099.000000","55.560000","3099.000000","55.560000","1464.000000","0.000000",,,,,,,,,,,,"217.000000","2940.500000","5662.000000","50.000000","2940.500000","2940.500000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","180.000000","163.000000","161.000000","205.000000","186.000000","196.000000","0.000000","0.000000","0.000000","160.000000","122.000000","136.000000","199.000000","153.000000","183.000000","160.000000","6000.000000","0.000000","739702.000000",,,,, -"3109.000000","56.105000","3109.000000","56.105000","3109.000000","56.105000","587.000000","0.000000",,,,,,,,,,,,"385.000000","8774.500000","17162.000000","33.000000","8774.500000","8774.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071980.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","179.000000","156.000000","159.000000","205.000000","176.000000","196.000000","0.000000","0.000000","0.000000","160.000000","116.000000","135.000000","199.000000","133.000000","183.000000","160.000000","6000.000000","0.000000","739722.000000",,,,, -"3324.000000","57.115000","3324.000000","57.115000","3324.000000","57.115000","694.000000","0.000000",,,,,,,,,,,,"445.000000","9452.000000","18459.000000","34.000000","9452.000000","9452.000000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","158.000000","157.000000","205.000000","176.000000","188.000000","0.000000","0.000000","0.000000","159.000000","119.000000","131.000000","199.000000","136.000000","178.000000","160.000000","6000.000000","0.000000","739742.000000",,,,, -"3383.000000","57.395000","3383.000000","57.395000","3383.000000","57.395000","705.000000","0.000000",,,,,,,,,,,,"1364.000000","5928.500000","10493.000000","53.000000","5928.500000","5928.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071804.000000","0.000000","2092704.000000","129468.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","154.000000","154.000000","205.000000","178.000000","184.000000","0.000000","0.000000","0.000000","158.000000","123.000000","127.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739762.000000",,,,, -"2190.000000","48.785000","2190.000000","48.785000","2190.000000","48.785000","770.000000","0.000000",,,,,,,,,,,,"11461.000000","10816.500000","10171.000000","21.000000","10816.500000","10816.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","152.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","156.000000","111.000000","124.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739782.000000",,,,, -"2287.000000","49.245000","2287.000000","49.245000","2287.000000","49.245000","809.000000","0.000000",,,,,,,,,,,,"15130.000000","8328.500000","1527.000000","3.000000","8328.500000","8328.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","131.000000","149.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","154.000000","102.000000","121.000000","199.000000","134.000000","163.000000","160.000000","6000.000000","0.000000","739802.000000",,,,, -"2401.000000","49.780000","2401.000000","49.780000","2401.000000","49.780000","667.000000","0.000000",,,,,,,,,,,,"13564.000000","11656.500000","9748.000000","33.000000","11656.500000","11656.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","122.000000","146.000000","202.000000","169.000000","181.000000","0.000000","0.000000","0.000000","151.000000","88.000000","117.000000","197.000000","125.000000","160.000000","160.000000","6000.000000","0.000000","739822.000000",,,,, -"3429.000000","56.110000","3429.000000","56.110000","3429.000000","56.110000","680.000000","0.000000",,,,,,,,,,,,"1129.000000","1602.000000","2075.000000","27.000000","1602.000000","1602.000000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071756.000000","0.000000","2092704.000000","129468.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","141.000000","145.000000","202.000000","194.000000","178.000000","0.000000","0.000000","0.000000","150.000000","101.000000","113.000000","197.000000","159.000000","152.000000","160.000000","6000.000000","0.000000","739842.000000",,,,, -"3383.000000","55.895000","3383.000000","55.895000","3383.000000","55.895000","606.000000","0.000000",,,,,,,,,,,,"290.000000","457.500000","625.000000","16.000000","457.500000","457.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071692.000000","0.000000","2092704.000000","129468.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","146.000000","201.000000","194.000000","182.000000","0.000000","0.000000","0.000000","149.000000","112.000000","112.000000","196.000000","159.000000","135.000000","160.000000","6000.000000","0.000000","739862.000000",,,,, -"3713.000000","57.445000","3713.000000","57.445000","3713.000000","57.445000","1088.000000","0.000000",,,,,,,,,,,,"10342.000000","5557.500000","772.000000","4.000000","5557.500000","5557.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","171.000000","150.000000","201.000000","194.000000","183.000000","0.000000","0.000000","0.000000","148.000000","131.000000","115.000000","196.000000","177.000000","147.000000","160.000000","6000.000000","0.000000","739882.000000",,,,, -"3452.000000","54.220000","3452.000000","54.220000","3452.000000","54.220000","713.000000","0.000000",,,,,,,,,,,,"22184.000000","11377.500000","569.000000","3.000000","11377.500000","11377.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071620.000000","0.000000","2092704.000000","129468.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","158.000000","151.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","147.000000","132.000000","116.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739902.000000",,,,, -"2954.000000","51.880000","2954.000000","51.880000","2954.000000","51.880000","1777.000000","0.000000",,,,,,,,,,,,"17443.000000","13003.000000","8563.000000","24.000000","13003.000000","13003.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","142.000000","150.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","146.000000","128.000000","118.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739922.000000",,,,, -"3519.000000","54.535000","3519.000000","54.535000","3519.000000","54.535000","1406.000000","0.000000",,,,,,,,,,,,"9508.000000","8017.500000","6527.000000","31.000000","8017.500000","8017.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","135.000000","149.000000","201.000000","188.000000","183.000000","0.000000","0.000000","0.000000","145.000000","119.000000","117.000000","195.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739942.000000",,,,, -"4168.000000","59.080000","4168.000000","59.080000","4168.000000","59.080000","1057.000000","0.000000",,,,,,,,,,,,"5.000000","276.000000","547.000000","11.000000","276.000000","276.000000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071184.000000","0.000000","2092704.000000","129468.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","157.000000","150.000000","201.000000","201.000000","188.000000","0.000000","0.000000","0.000000","145.000000","132.000000","118.000000","192.000000","178.000000","164.000000","160.000000","6000.000000","0.000000","739962.000000",,,,, -"4947.000000","62.745000","4947.000000","62.745000","4947.000000","62.745000","1030.000000","0.000000",,,,,,,,,,,,"8.000000","335.500000","663.000000","15.000000","335.500000","335.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","178.000000","153.000000","201.000000","210.000000","194.000000","0.000000","0.000000","0.000000","145.000000","153.000000","123.000000","195.000000","210.000000","175.000000","160.000000","6000.000000","0.000000","739982.000000",,,,, -"4595.000000","61.085000","4595.000000","61.085000","4595.000000","61.085000","957.000000","0.000000",,,,,,,,,,,,"27.000000","484.500000","942.000000","16.000000","484.500000","484.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071028.000000","0.000000","2092704.000000","129468.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","193.000000","155.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","144.000000","171.000000","127.000000","192.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740002.000000",,,,, -"3356.000000","53.765000","3356.000000","53.765000","3356.000000","53.765000","1270.000000","0.000000",,,,,,,,,,,,"6.000000","574.500000","1142.000000","23.000000","574.500000","574.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070932.000000","0.000000","2092704.000000","129468.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","184.000000","156.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","143.000000","162.000000","128.000000","191.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740022.000000",,,,, -"3894.000000","56.290000","3894.000000","56.290000","3894.000000","56.290000","1136.000000","0.000000",,,,,,,,,,,,"15.000000","375.500000","735.000000","17.000000","375.500000","375.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070852.000000","0.000000","2092704.000000","129468.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","177.000000","157.000000","200.000000","206.000000","197.000000","0.000000","0.000000","0.000000","142.000000","150.000000","129.000000","185.000000","199.000000","177.000000","160.000000","6000.000000","0.000000","740042.000000",,,,, -"3034.000000","52.255000","3034.000000","52.255000","3034.000000","52.255000","1177.000000","0.000000",,,,,,,,,,,,"14545.000000","7711.000000","876.000000","4.000000","7711.000000","7711.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070908.000000","0.000000","2092704.000000","129468.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","162.000000","157.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","141.000000","137.000000","129.000000","183.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740062.000000",,,,, -"1211.000000","43.685000","1211.000000","43.685000","1211.000000","43.685000","630.000000","0.000000",,,,,,,,,,,,"20303.000000","10183.000000","62.000000","2.000000","10183.000000","10183.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071384.000000","0.000000","2092704.000000","129468.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","115.000000","151.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","138.000000","102.000000","126.000000","182.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740082.000000",,,,, -"1365.000000","44.410000","1365.000000","44.410000","1365.000000","44.410000","698.000000","0.000000",,,,,,,,,,,,"18097.000000","14246.000000","10395.000000","29.000000","14246.000000","14246.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","159.000000","79.000000","147.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","136.000000","73.000000","123.000000","181.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740102.000000",,,,, -"991.000000","42.655000","991.000000","42.655000","991.000000","42.655000","838.000000","0.000000",,,,,,,,,,,,"7845.000000","6704.000000","5533.000000","25.000000","6704.000000","6704.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071476.000000","0.000000","2092704.000000","129468.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"0.000000","30.000000",,,,,,,,,,,"0.000000","156.000000","48.000000","142.000000","196.000000","75.000000","197.000000","0.000000","0.000000","0.000000","133.000000","44.000000","121.000000","180.000000","72.000000","178.000000","160.000000","6000.000000","0.000000","740122.000000",,,,, -"662.000000","43.605000","662.000000","43.605000","662.000000","43.605000","538.000000","0.000000",,,,,,,,,,,,"25832.000000","24908.000000","23974.000000","11.000000","24908.000000","24908.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"0.000000","10.000000",,,,,,,,,,,"0.000000","152.000000","40.000000","131.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","129.000000","37.000000","113.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740142.000000",,,,, -"720.000000","43.880000","720.000000","43.880000","720.000000","43.880000","820.000000","0.000000",,,,,,,,,,,,"23145.000000","25480.000000","27787.000000","15.000000","25480.000000","25480.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","149.000000","32.000000","122.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","127.000000","30.000000","107.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740162.000000",,,,, -"554.000000","43.100000","554.000000","43.100000","554.000000","43.100000","586.000000","0.000000",,,,,,,,,,,,"1665.000000","1037.000000","408.000000","3.000000","1037.000000","1037.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071848.000000","0.000000","2092704.000000","129468.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","146.000000","26.000000","113.000000","196.000000","32.000000","197.000000","0.000000","0.000000","0.000000","124.000000","24.000000","99.000000","178.000000","28.000000","178.000000","160.000000","6000.000000","0.000000","740182.000000",,,,, -"531.000000","41.990000","531.000000","41.990000","531.000000","41.990000","857.000000","0.000000",,,,,,,,,,,,"121.000000","221.000000","282.000000","4.000000","221.000000","221.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","0.000000","0.000000",,,,,,"27.000000","11.000000",,,,,,,,,,,"0.000000","141.000000","24.000000","104.000000","195.000000","34.000000","197.000000","0.000000","0.000000","0.000000","119.000000","22.000000","91.000000","178.000000","30.000000","175.000000","160.000000","6000.000000","0.000000","740202.000000",,,,, -"1094.000000","44.635000","1094.000000","44.635000","1094.000000","44.635000","937.000000","0.000000",,,,,,,,,,,,"72.000000","6377.000000","10677.000000","33.000000","6377.000000","6377.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","0.000000","0.000000",,,,,,"1986.000000","19.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","99.000000","195.000000","57.000000","197.000000","0.000000","0.000000","0.000000","117.000000","28.000000","87.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740222.000000",,,,, -"561.000000","42.130000","561.000000","42.130000","561.000000","42.130000","644.000000","0.000000",,,,,,,,,,,,"41.000000","292.000000","541.000000","6.000000","292.000000","292.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","135.000000","30.000000","92.000000","194.000000","57.000000","197.000000","0.000000","0.000000","0.000000","114.000000","28.000000","81.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740242.000000",,,,, -"812.000000","42.310000","812.000000","42.310000","812.000000","42.310000","678.000000","0.000000",,,,,,,,,,,,"18.000000","182.000000","346.000000","4.000000","182.000000","182.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071420.000000","0.000000","2092704.000000","129468.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","32.000000","79.000000","193.000000","57.000000","195.000000","0.000000","0.000000","0.000000","110.000000","30.000000","71.000000","177.000000","55.000000","174.000000","160.000000","6000.000000","0.000000","740262.000000",,,,, -"441.000000","40.570000","441.000000","40.570000","441.000000","40.570000","677.000000","0.000000",,,,,,,,,,,,"6.000000","96.000000","186.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071312.000000","0.000000","2092704.000000","129468.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","23.000000","68.000000","193.000000","51.000000","186.000000","0.000000","0.000000","0.000000","107.000000","22.000000","61.000000","175.000000","49.000000","170.000000","160.000000","6000.000000","0.000000","740282.000000",,,,, -"244.000000","39.640000","244.000000","39.640000","244.000000","39.640000","564.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071400.000000","0.000000","2092704.000000","129468.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","19.000000","57.000000","191.000000","39.000000","177.000000","0.000000","0.000000","0.000000","104.000000","18.000000","50.000000","175.000000","39.000000","146.000000","160.000000","6000.000000","0.000000","740302.000000",,,,, -"274.000000","41.285000","274.000000","41.285000","274.000000","41.285000","414.000000","0.000000",,,,,,,,,,,,"0.000000","59.000000","117.000000","1.000000","59.000000","59.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2071132.000000","0.000000","2092704.000000","129468.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","12.000000","45.000000","191.000000","31.000000","158.000000","0.000000","0.000000","0.000000","101.000000","12.000000","41.000000","175.000000","31.000000","134.000000","160.000000","6000.000000","0.000000","740322.000000",,,,, -"244.000000","41.145000","244.000000","41.145000","244.000000","41.145000","386.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","23.000000","27.500000","27.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","9.000000","35.000000","190.000000","13.000000","57.000000","0.000000","0.000000","0.000000","97.000000","9.000000","33.000000","173.000000","13.000000","55.000000","160.000000","6000.000000","0.000000","740342.000000",,,,, -"240.000000","41.125000","240.000000","41.125000","240.000000","41.125000","453.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","48.000000","153.000000","24.500000","24.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070304.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","112.000000","9.000000","26.000000","188.000000","13.000000","55.000000","0.000000","0.000000","0.000000","94.000000","9.000000","25.000000","166.000000","13.000000","53.000000","160.000000","6000.000000","0.000000","740362.000000",,,,, -"288.000000","41.845000","288.000000","41.845000","288.000000","41.845000","406.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","1.000000","48.500000","48.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","109.000000","9.000000","24.000000","188.000000","13.000000","54.000000","0.000000","0.000000","0.000000","91.000000","9.000000","22.000000","166.000000","13.000000","51.000000","160.000000","6000.000000","0.000000","740382.000000",,,,, -"243.000000","41.640000","243.000000","41.640000","243.000000","41.640000","506.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069776.000000","0.000000","2092704.000000","129468.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","21.000000","188.000000","13.000000","46.000000","0.000000","0.000000","0.000000","88.000000","9.000000","20.000000","166.000000","13.000000","45.000000","160.000000","6000.000000","0.000000","740402.000000",,,,, -"237.000000","41.610000","237.000000","41.610000","237.000000","41.610000","472.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","0.000000","23.000000","23.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069544.000000","0.000000","2092704.000000","129468.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","9.000000","19.000000","188.000000","13.000000","34.000000","0.000000","0.000000","0.000000","85.000000","9.000000","18.000000","166.000000","13.000000","31.000000","160.000000","6000.000000","0.000000","740422.000000",,,,, -"358.000000","34.675000","358.000000","34.675000","358.000000","34.675000","448.000000","0.000000",,,,,,,,,,,,"0.000000","122.000000","243.000000","1.000000","122.000000","122.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069432.000000","0.000000","2092704.000000","129468.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","98.000000","10.000000","18.000000","186.000000","14.000000","34.000000","0.000000","0.000000","0.000000","81.000000","10.000000","17.000000","160.000000","14.000000","31.000000","160.000000","6000.000000","0.000000","740442.000000",,,,, -"711.000000","36.340000","711.000000","36.340000","711.000000","36.340000","688.000000","0.000000",,,,,,,,,,,,"44.000000","237.500000","425.000000","2.000000","237.500000","237.500000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069264.000000","0.000000","2092704.000000","129468.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","95.000000","16.000000","18.000000","186.000000","50.000000","39.000000","0.000000","0.000000","0.000000","78.000000","15.000000","17.000000","159.000000","49.000000","39.000000","160.000000","6000.000000","0.000000","740463.000000",,,,, -"1026.000000","37.815000","1026.000000","37.815000","1026.000000","37.815000","724.000000","0.000000",,,,,,,,,,,,"39.000000","466.000000","848.000000","5.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"30.000000","15.000000",,,,,,,,,,,"0.000000","94.000000","27.000000","19.000000","186.000000","58.000000","50.000000","0.000000","0.000000","0.000000","77.000000","25.000000","18.000000","159.000000","57.000000","49.000000","160.000000","6000.000000","0.000000","740482.000000",,,,, -"976.000000","32.580000","976.000000","32.580000","976.000000","32.580000","495.000000","0.000000",,,,,,,,,,,,"1.000000","4386.000000","8755.000000","39.000000","4386.000000","4386.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071468.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"10.000000","5.000000",,,,,,,,,,,"0.000000","92.000000","37.000000","20.000000","186.000000","68.000000","56.000000","0.000000","0.000000","0.000000","75.000000","34.000000","19.000000","159.000000","68.000000","49.000000","160.000000","6000.000000","0.000000","740502.000000",,,,, -"722.000000","31.390000","722.000000","31.390000","722.000000","31.390000","1146.000000","0.000000",,,,,,,,,,,,"2.000000","293.000000","583.000000","5.000000","293.000000","293.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071820.000000","0.000000","2092704.000000","129468.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","90.000000","37.000000","19.000000","186.000000","68.000000","50.000000","0.000000","0.000000","0.000000","74.000000","34.000000","18.000000","159.000000","68.000000","41.000000","160.000000","6000.000000","0.000000","740522.000000",,,,, -"455.000000","30.135000","455.000000","30.135000","455.000000","30.135000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","120.500000","241.000000","7.000000","120.500000","120.500000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071380.000000","0.000000","2092704.000000","129468.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","87.000000","29.000000","19.000000","185.000000","68.000000","43.000000","0.000000","0.000000","0.000000","72.000000","27.000000","18.000000","154.000000","68.000000","40.000000","160.000000","6000.000000","0.000000","740542.000000",,,,, -"612.000000","27.370000","612.000000","27.370000","612.000000","27.370000","853.000000","0.000000",,,,,,,,,,,,"0.000000","134.500000","269.000000","2.000000","134.500000","134.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070860.000000","0.000000","2092704.000000","129468.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","83.000000","24.000000","19.000000","183.000000","43.000000","43.000000","0.000000","0.000000","0.000000","69.000000","22.000000","17.000000","154.000000","40.000000","40.000000","160.000000","6000.000000","0.000000","740562.000000",,,,, -"243.000000","25.640000","243.000000","25.640000","243.000000","25.640000","695.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","4.000000","61.500000","61.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070356.000000","0.000000","2092704.000000","129468.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","19.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","67.000000","17.000000","17.000000","154.000000","35.000000","40.000000","160.000000","6000.000000","0.000000","740582.000000",,,,, -"247.000000","25.655000","247.000000","25.655000","247.000000","25.655000","709.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","1.000000","22.000000","22.000000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2069884.000000","0.000000","2092704.000000","129468.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","15.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","65.000000","13.000000","17.000000","154.000000","30.000000","40.000000","160.000000","6000.000000","0.000000","740602.000000",,,,, -"261.000000","22.220000","261.000000","22.220000","261.000000","22.220000","641.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2069480.000000","0.000000","2092704.000000","129468.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","62.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740622.000000",,,,, -"236.000000","22.105000","236.000000","22.105000","236.000000","22.105000","449.000000","0.000000",,,,,,,,,,,,"0.000000","18.500000","37.000000","2.000000","18.500000","18.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068928.000000","0.000000","2092704.000000","129468.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","70.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","59.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740643.000000",,,,, -"222.000000","22.040000","222.000000","22.040000","222.000000","22.040000","765.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068240.000000","0.000000","2092704.000000","129468.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","57.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740662.000000",,,,, -"258.000000","20.210000","258.000000","20.210000","258.000000","20.210000","475.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","2.000000","55.500000","55.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067808.000000","0.000000","2092704.000000","129468.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","55.000000","9.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740682.000000",,,,, -"219.000000","20.025000","219.000000","20.025000","219.000000","20.025000","527.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","0.000000","11.000000","11.000000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067324.000000","0.000000","2092704.000000","129468.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","62.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","53.000000","8.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740702.000000",,,,, -"220.000000","20.030000","220.000000","20.030000","220.000000","20.030000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","1.000000","20.500000","20.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2066748.000000","0.000000","2092704.000000","129468.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","59.000000","8.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","52.000000","8.000000","16.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740722.000000",,,,, -"268.000000","16.755000","268.000000","16.755000","268.000000","16.755000","529.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","3.000000","65.000000","65.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066584.000000","0.000000","2092704.000000","129468.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","55.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","49.000000","8.000000","16.000000","149.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740742.000000",,,,, -"587.000000","18.255000","587.000000","18.255000","587.000000","18.255000","447.000000","0.000000",,,,,,,,,,,,"1.000000","233.000000","458.000000","2.000000","233.000000","233.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066568.000000","0.000000","2092704.000000","129468.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","52.000000","12.000000","17.000000","182.000000","23.000000","42.000000","0.000000","0.000000","0.000000","46.000000","11.000000","16.000000","149.000000","20.000000","37.000000","160.000000","6000.000000","0.000000","740762.000000",,,,, -"625.000000","18.435000","625.000000","18.435000","625.000000","18.435000","596.000000","0.000000",,,,,,,,,,,,"141.000000","188.500000","236.000000","1.000000","188.500000","188.500000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066452.000000","0.000000","2092704.000000","129468.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","49.000000","19.000000","16.000000","177.000000","48.000000","42.000000","0.000000","0.000000","0.000000","44.000000","18.000000","15.000000","146.000000","46.000000","37.000000","160.000000","6000.000000","0.000000","740782.000000",,,,, -"395.000000","15.850000","395.000000","15.850000","395.000000","15.850000","914.000000","0.000000",,,,,,,,,,,,"33.000000","104.500000","175.000000","4.000000","104.500000","104.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2065992.000000","0.000000","2092704.000000","129468.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","46.000000","21.000000","14.000000","175.000000","48.000000","36.000000","0.000000","0.000000","0.000000","41.000000","19.000000","13.000000","145.000000","46.000000","32.000000","160.000000","6000.000000","0.000000","740802.000000",,,,, -"515.000000","16.415000","515.000000","16.415000","515.000000","16.415000","481.000000","0.000000",,,,,,,,,,,,"13.000000","174.000000","333.000000","4.000000","174.000000","174.000000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066112.000000","0.000000","2092704.000000","129468.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","44.000000","22.000000","14.000000","175.000000","48.000000","34.000000","0.000000","0.000000","0.000000","39.000000","21.000000","13.000000","137.000000","46.000000","29.000000","160.000000","6000.000000","0.000000","740822.000000",,,,, -"455.000000","16.130000","455.000000","16.130000","455.000000","16.130000","626.000000","0.000000",,,,,,,,,,,,"0.000000","74.500000","149.000000","2.000000","74.500000","74.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066080.000000","0.000000","2092704.000000","129468.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","14.000000","173.000000","26.000000","26.000000","0.000000","0.000000","0.000000","37.000000","16.000000","13.000000","134.000000","23.000000","23.000000","160.000000","6000.000000","0.000000","740842.000000",,,,, -"226.000000","13.565000","226.000000","13.565000","226.000000","13.565000","568.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","2.000000","52.500000","52.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065568.000000","0.000000","2092704.000000","129468.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","16.000000","13.000000","140.000000","25.000000","23.000000","0.000000","0.000000","0.000000","33.000000","15.000000","12.000000","112.000000","23.000000","21.000000","160.000000","6000.000000","0.000000","740862.000000",,,,, -"244.000000","13.645000","244.000000","13.645000","244.000000","13.645000","630.000000","0.000000",,,,,,,,,,,,"42.000000","46.500000","50.000000","1.000000","46.500000","46.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065016.000000","0.000000","2092704.000000","129468.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","12.000000","13.000000","68.000000","23.000000","23.000000","0.000000","0.000000","0.000000","30.000000","11.000000","12.000000","68.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","740882.000000",,,,, -"277.000000","13.805000","277.000000","13.805000","277.000000","13.805000","660.000000","0.000000",,,,,,,,,,,,"635.000000","365.000000","93.000000","2.000000","365.000000","365.000000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2064928.000000","0.000000","2092704.000000","129468.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","29.000000","10.000000","13.000000","56.000000","16.000000","23.000000","0.000000","0.000000","0.000000","26.000000","10.000000","12.000000","54.000000","16.000000","21.000000","160.000000","6000.000000","0.000000","740902.000000",,,,, -"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","567.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064284.000000","0.000000","2092704.000000","129468.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","13.000000","54.000000","15.000000","23.000000","0.000000","0.000000","0.000000","23.000000","9.000000","12.000000","49.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740922.000000",,,,, -"224.000000","11.550000","224.000000","11.550000","224.000000","11.550000","426.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064100.000000","0.000000","2092704.000000","129468.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","13.000000","50.000000","15.000000","23.000000","0.000000","0.000000","0.000000","20.000000","9.000000","12.000000","45.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740942.000000",,,,, -"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","458.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2063432.000000","0.000000","2092704.000000","129468.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","43.000000","10.000000","23.000000","0.000000","0.000000","0.000000","18.000000","8.000000","12.000000","40.000000","9.000000","21.000000","160.000000","6000.000000","0.000000","740962.000000",,,,, -"233.000000","11.590000","233.000000","11.590000","233.000000","11.590000","444.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2062148.000000","0.000000","2092704.000000","129468.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","42.000000","10.000000","23.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","39.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","740982.000000",,,,, -"241.000000","11.625000","241.000000","11.625000","241.000000","11.625000","410.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2061624.000000","0.000000","2092704.000000","129468.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","13.000000","39.000000","10.000000","23.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","35.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741002.000000",,,,, -"228.000000","11.570000","228.000000","11.570000","228.000000","11.570000","500.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2060900.000000","0.000000","2092704.000000","129468.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","13.000000","36.000000","10.000000","23.000000","0.000000","0.000000","0.000000","15.000000","8.000000","12.000000","31.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741022.000000",,,,, -"438.000000","11.555000","438.000000","11.555000","438.000000","11.555000","509.000000","0.000000",,,,,,,,,,,,"7.000000","179.000000","346.000000","9.000000","179.000000","179.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060984.000000","0.000000","2092704.000000","129468.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","11.000000","13.000000","36.000000","24.000000","24.000000","0.000000","0.000000","0.000000","15.000000","11.000000","12.000000","31.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","741042.000000",,,,, -"649.000000","12.545000","649.000000","12.545000","649.000000","12.545000","578.000000","0.000000",,,,,,,,,,,,"5.000000","168.500000","329.000000","59.000000","168.500000","168.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061052.000000","0.000000","2092704.000000","129468.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","16.000000","14.000000","38.000000","39.000000","26.000000","0.000000","0.000000","0.000000","15.000000","16.000000","13.000000","32.000000","38.000000","23.000000","160.000000","6000.000000","0.000000","741062.000000",,,,, -"896.000000","13.705000","896.000000","13.705000","896.000000","13.705000","471.000000","0.000000",,,,,,,,,,,,"0.000000","407.500000","792.000000","17.000000","407.500000","407.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061072.000000","0.000000","2092704.000000","129468.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"13.000000","9.000000",,,,,,,,,,,"0.000000","16.000000","27.000000","14.000000","39.000000","66.000000","26.000000","0.000000","0.000000","0.000000","15.000000","24.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741082.000000",,,,, -"282.000000","9.820000","282.000000","9.820000","282.000000","9.820000","555.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","95.000000","7.000000","54.000000","54.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060564.000000","0.000000","2092704.000000","129468.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","0.000000","0.000000",,,,,,"9.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","25.000000","14.000000","39.000000","66.000000","25.000000","0.000000","0.000000","0.000000","15.000000","22.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741102.000000",,,,, -"262.000000","9.725000","262.000000","9.725000","262.000000","9.725000","957.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","8.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060444.000000","0.000000","2092704.000000","129468.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","0.000000","0.000000",,,,,,"10.000000","4.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","13.000000","38.000000","66.000000","24.000000","0.000000","0.000000","0.000000","14.000000","18.000000","12.000000","32.000000","50.000000","20.000000","160.000000","6000.000000","0.000000","741122.000000",,,,, -"916.000000","12.800000","916.000000","12.800000","916.000000","12.800000","756.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4782.000000","33.000000","2918.000000","2918.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","0.000000","0.000000",,,,,,"1035.000000","13.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","15.000000","39.000000","57.000000","39.000000","0.000000","0.000000","0.000000","15.000000","18.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741142.000000",,,,, -"493.000000","13.815000","493.000000","13.815000","493.000000","13.815000","991.000000","0.000000",,,,,,,,,,,,"6.000000","173.000000","338.000000","2.000000","173.000000","173.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062296.000000","0.000000","2092704.000000","129468.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","20.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741162.000000",,,,, -"270.000000","12.765000","270.000000","12.765000","270.000000","12.765000","730.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","1.000000","39.500000","39.500000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062556.000000","0.000000","2092704.000000","129468.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","21.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741182.000000",,,,, -"283.000000","12.825000","283.000000","12.825000","283.000000","12.825000","640.000000","0.000000",,,,,,,,,,,,"994.000000","532.000000","65.000000","3.000000","532.000000","532.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062660.000000","0.000000","2092704.000000","129468.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","15.000000","13.000000","15.000000","38.000000","36.000000","39.000000","0.000000","0.000000","0.000000","14.000000","13.000000","14.000000","35.000000","35.000000","38.000000","160.000000","6000.000000","0.000000","741202.000000",,,,, -"654.000000","13.070000","654.000000","13.070000","654.000000","13.070000","591.000000","0.000000",,,,,,,,,,,,"1550.000000","845.500000","140.000000","1.000000","845.500000","845.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2062344.000000","0.000000","2092704.000000","129468.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","15.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741222.000000",,,,, -"228.000000","11.065000","228.000000","11.065000","228.000000","11.065000","473.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061836.000000","0.000000","2092704.000000","129468.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","14.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741242.000000",,,,, -"221.000000","11.035000","221.000000","11.035000","221.000000","11.035000","462.000000","0.000000",,,,,,,,,,,,"0.000000","49.000000","98.000000","5.000000","49.000000","49.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061248.000000","0.000000","2092704.000000","129468.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","13.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741262.000000",,,,, -"266.000000","11.745000","266.000000","11.745000","266.000000","11.745000","499.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","1.000000","61.500000","61.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061208.000000","0.000000","2092704.000000","129468.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741282.000000",,,,, -"219.000000","11.525000","219.000000","11.525000","219.000000","11.525000","454.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","21.000000","37.500000","37.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2060644.000000","0.000000","2092704.000000","129468.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741302.000000",,,,, -"217.000000","11.515000","217.000000","11.515000","217.000000","11.515000","434.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061188.000000","0.000000","2092704.000000","129468.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741322.000000",,,,, -"275.000000","12.790000","275.000000","12.790000","275.000000","12.790000","505.000000","0.000000",,,,,,,,,,,,"0.000000","73.000000","146.000000","1.000000","73.000000","73.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061252.000000","0.000000","2092704.000000","129468.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741342.000000",,,,, -"640.000000","14.505000","640.000000","14.505000","640.000000","14.505000","586.000000","0.000000",,,,,,,,,,,,"18.000000","322.500000","614.000000","1.000000","322.500000","322.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061020.000000","0.000000","2092704.000000","129468.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"6.000000","7.000000",,,,,,,,,,,"0.000000","15.000000","14.000000","16.000000","38.000000","45.000000","43.000000","0.000000","0.000000","0.000000","14.000000","13.000000","15.000000","35.000000","36.000000","37.000000","160.000000","6000.000000","0.000000","741362.000000",,,,, -"595.000000","14.290000","595.000000","14.290000","595.000000","14.290000","522.000000","0.000000",,,,,,,,,,,,"4.000000","194.500000","382.000000","2.000000","194.500000","194.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061120.000000","0.000000","2092704.000000","129468.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","15.000000","36.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","35.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741382.000000",,,,, -"267.000000","12.750000","267.000000","12.750000","267.000000","12.750000","483.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","3.000000","40.500000","40.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2060612.000000","0.000000","2092704.000000","129468.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","20.000000","15.000000","34.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","30.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741402.000000",,,,, -"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","614.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2060332.000000","0.000000","2092704.000000","129468.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","15.000000","15.000000","31.000000","54.000000","37.000000","0.000000","0.000000","0.000000","13.000000","14.000000","14.000000","29.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741422.000000",,,,, -"234.000000","13.095000","234.000000","13.095000","234.000000","13.095000","378.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","15.000000","33.000000","33.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059608.000000","0.000000","2092704.000000","129468.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","13.000000","27.000000","13.000000","31.000000","0.000000","0.000000","0.000000","13.000000","9.000000","12.000000","26.000000","12.000000","29.000000","160.000000","6000.000000","0.000000","741442.000000",,,,, -"472.000000","14.210000","472.000000","14.210000","472.000000","14.210000","501.000000","0.000000",,,,,,,,,,,,"423.000000","296.000000","167.000000","1.000000","296.000000","296.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059276.000000","0.000000","2092704.000000","129468.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741462.000000",,,,, -"218.000000","10.520000","218.000000","10.520000","218.000000","10.520000","899.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","4.000000","31.000000","31.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2059400.000000","0.000000","2092704.000000","129468.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741482.000000",,,,, -"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","761.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058808.000000","0.000000","2092704.000000","129468.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","12.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741502.000000",,,,, -"270.000000","10.760000","270.000000","10.760000","270.000000","10.760000","640.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","5.000000","61.000000","61.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058228.000000","0.000000","2092704.000000","129468.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741522.000000",,,,, -"210.000000","9.485000","210.000000","9.485000","210.000000","9.485000","523.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056560.000000","0.000000","2092704.000000","129468.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741542.000000",,,,, -"227.000000","9.560000","227.000000","9.560000","227.000000","9.560000","498.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","2.000000","33.500000","33.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056100.000000","0.000000","2092704.000000","129468.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741562.000000",,,,, -"594.000000","11.285000","594.000000","11.285000","594.000000","11.285000","606.000000","0.000000",,,,,,,,,,,,"2.000000","159.500000","317.000000","2.000000","159.500000","159.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057572.000000","0.000000","2092704.000000","129468.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","13.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","12.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741582.000000",,,,, -"318.000000","9.990000","318.000000","9.990000","318.000000","9.990000","554.000000","0.000000",,,,,,,,,,,,"0.000000","77.000000","154.000000","1.000000","77.000000","77.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057164.000000","0.000000","2092704.000000","129468.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741602.000000",,,,, -"239.000000","9.615000","239.000000","9.615000","239.000000","9.615000","495.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","7.000000","40.500000","40.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056424.000000","0.000000","2092704.000000","129468.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741622.000000",,,,, -"276.000000","9.790000","276.000000","9.790000","276.000000","9.790000","484.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","0.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056620.000000","0.000000","2092704.000000","129468.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","10.000000","12.000000","27.000000","18.000000","18.000000","0.000000","0.000000","0.000000","13.000000","10.000000","12.000000","26.000000","18.000000","18.000000","160.000000","6000.000000","0.000000","741642.000000",,,,, -"227.000000","8.560000","227.000000","8.560000","227.000000","8.560000","622.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","2.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056112.000000","0.000000","2092704.000000","129468.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","27.000000","13.000000","18.000000","0.000000","0.000000","0.000000","13.000000","9.000000","11.000000","26.000000","13.000000","18.000000","160.000000","6000.000000","0.000000","741662.000000",,,,, -"233.000000","8.590000","233.000000","8.590000","233.000000","8.590000","458.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","14.000000","27.500000","27.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2055144.000000","0.000000","2092704.000000","129468.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741682.000000",,,,, -"268.000000","8.750000","268.000000","8.750000","268.000000","8.750000","518.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","31.000000","61.000000","61.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2053592.000000","0.000000","2092704.000000","129468.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741702.000000",,,,, -"222.000000","8.540000","222.000000","8.540000","222.000000","8.540000","758.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","2.000000","27.500000","27.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2053108.000000","0.000000","2092704.000000","129468.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","23.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741722.000000",,,,, -"213.000000","8.495000","213.000000","8.495000","213.000000","8.495000","1046.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","3.000000","15.000000","15.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2052256.000000","0.000000","2092704.000000","129468.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741742.000000",,,,, -"271.000000","8.770000","271.000000","8.770000","271.000000","8.770000","1246.000000","0.000000",,,,,,,,,,,,"9.000000","73.500000","137.000000","22.000000","73.500000","73.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2051816.000000","0.000000","2092704.000000","129468.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741762.000000",,,,, -"414.000000","8.440000","414.000000","8.440000","414.000000","8.440000","1385.000000","0.000000",,,,,,,,,,,,"0.000000","83.000000","165.000000","3.000000","83.000000","83.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050752.000000","0.000000","2092704.000000","129468.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741782.000000",,,,, -"481.000000","8.755000","481.000000","8.755000","481.000000","8.755000","1153.000000","0.000000",,,,,,,,,,,,"5.000000","178.500000","352.000000","2.000000","178.500000","178.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051660.000000","0.000000","2092704.000000","129468.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741802.000000",,,,, -"261.000000","7.720000","261.000000","7.720000","261.000000","7.720000","748.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","51.000000","39.500000","39.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051240.000000","0.000000","2092704.000000","129468.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741822.000000",,,,, -"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","602.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2050668.000000","0.000000","2092704.000000","129468.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741842.000000",,,,, -"244.000000","7.640000","244.000000","7.640000","244.000000","7.640000","513.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","70.000000","4.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048652.000000","0.000000","2092704.000000","129468.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","24.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741862.000000",,,,, -"288.000000","7.850000","288.000000","7.850000","288.000000","7.850000","497.000000","0.000000",,,,,,,,,,,,"1.000000","70.000000","138.000000","6.000000","70.000000","70.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048272.000000","0.000000","2092704.000000","129468.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741882.000000",,,,, -"214.000000","7.000000","214.000000","7.000000","214.000000","7.000000","683.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","1.000000","21.500000","21.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2047596.000000","0.000000","2092704.000000","129468.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741902.000000",,,,, -"225.000000","7.050000","225.000000","7.050000","225.000000","7.050000","484.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","1.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2045296.000000","0.000000","2092704.000000","129468.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741922.000000",,,,, -"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","814.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2044360.000000","0.000000","2092704.000000","129468.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741942.000000",,,,, -"223.000000","6.040000","223.000000","6.040000","223.000000","6.040000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","1.000000","12.000000","12.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2043788.000000","0.000000","2092704.000000","129468.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","17.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741962.000000",,,,, -"225.000000","6.050000","225.000000","6.050000","225.000000","6.050000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","1.000000","33.000000","33.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044092.000000","0.000000","2092704.000000","129468.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741982.000000",,,,, -"683.000000","8.205000","683.000000","8.205000","683.000000","8.205000","2058.000000","0.000000",,,,,,,,,,,,"6.000000","191.000000","375.000000","1.000000","191.000000","191.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044916.000000","0.000000","2092704.000000","129468.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","17.000000","47.000000","14.000000","160.000000","6000.000000","0.000000","742002.000000",,,,, -"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","1697.000000","0.000000",,,,,,,,,,,,"0.000000","139.500000","278.000000","2.000000","139.500000","139.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044504.000000","0.000000","2092704.000000","129468.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","12.000000","18.000000","48.000000","18.000000","0.000000","0.000000","0.000000","12.000000","17.000000","11.000000","18.000000","47.000000","17.000000","160.000000","6000.000000","0.000000","742022.000000",,,,, -"585.000000","7.745000","585.000000","7.745000","585.000000","7.745000","938.000000","0.000000",,,,,,,,,,,,"0.000000","142.000000","284.000000","3.000000","142.000000","142.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2042156.000000","0.000000","2092704.000000","129468.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","13.000000","18.000000","51.000000","24.000000","0.000000","0.000000","0.000000","11.000000","21.000000","12.000000","17.000000","47.000000","19.000000","160.000000","6000.000000","0.000000","742042.000000",,,,, -"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","967.000000","0.000000",,,,,,,,,,,,"0.000000","121.500000","242.000000","2.000000","121.500000","121.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2040940.000000","0.000000","2092704.000000","129468.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","13.000000","18.000000","51.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","13.000000","17.000000","43.000000","32.000000","160.000000","6000.000000","0.000000","742062.000000",,,,, -"609.000000","7.355000","609.000000","7.355000","609.000000","7.355000","1601.000000","0.000000",,,,,,,,,,,,"3.000000","158.500000","314.000000","2.000000","158.500000","158.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040444.000000","0.000000","2092704.000000","129468.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","21.000000","14.000000","18.000000","51.000000","34.000000","0.000000","0.000000","0.000000","12.000000","20.000000","13.000000","18.000000","44.000000","33.000000","160.000000","6000.000000","0.000000","742082.000000",,,,, -"290.000000","5.860000","290.000000","5.860000","290.000000","5.860000","1237.000000","0.000000",,,,,,,,,,,,"1.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040508.000000","0.000000","2092704.000000","129468.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","18.000000","45.000000","32.000000","0.000000","0.000000","0.000000","12.000000","17.000000","13.000000","18.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742102.000000",,,,, -"268.000000","5.755000","268.000000","5.755000","268.000000","5.755000","873.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2039968.000000","0.000000","2092704.000000","129468.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","13.000000","16.000000","45.000000","32.000000","0.000000","0.000000","0.000000","11.000000","14.000000","13.000000","16.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742122.000000",,,,, -"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","1069.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2037416.000000","0.000000","2092704.000000","129468.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","13.000000","16.000000","16.000000","32.000000","0.000000","0.000000","0.000000","11.000000","10.000000","13.000000","16.000000","16.000000","32.000000","160.000000","6000.000000","0.000000","742142.000000",,,,, -"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","944.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038888.000000","0.000000","2092704.000000","129468.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","14.000000","32.000000","160.000000","6000.000000","0.000000","742162.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","883.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","3.000000","55.000000","55.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038200.000000","0.000000","2092704.000000","129468.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742182.000000",,,,, -"212.000000","6.990000","212.000000","6.990000","212.000000","6.990000","644.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2037592.000000","0.000000","2092704.000000","129468.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742202.000000",,,,, -"228.000000","7.065000","228.000000","7.065000","228.000000","7.065000","584.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","1.000000","39.000000","39.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036008.000000","0.000000","2092704.000000","129468.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742222.000000",,,,, -"263.000000","7.230000","263.000000","7.230000","263.000000","7.230000","1013.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","1.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036300.000000","0.000000","2092704.000000","129468.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742242.000000",,,,, -"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035644.000000","0.000000","2092704.000000","129468.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","15.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742262.000000",,,,, -"224.000000","7.050000","224.000000","7.050000","224.000000","7.050000","1058.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","0.000000","46.000000","46.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035856.000000","0.000000","2092704.000000","129468.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","14.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742282.000000",,,,, -"249.000000","7.165000","249.000000","7.165000","249.000000","7.165000","1616.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","1.000000","64.500000","64.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035188.000000","0.000000","2092704.000000","129468.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","14.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","742302.000000",,,,, -"248.000000","7.160000","248.000000","7.160000","248.000000","7.160000","785.000000","0.000000",,,,,,,,,,,,"1.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035064.000000","0.000000","2092704.000000","129468.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742322.000000",,,,, -"220.000000","7.025000","220.000000","7.025000","220.000000","7.025000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","3.000000","28.500000","28.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034460.000000","0.000000","2092704.000000","129468.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742342.000000",,,,, -"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","2190.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","1.000000","53.000000","53.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034168.000000","0.000000","2092704.000000","129468.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","742362.000000",,,,, -"207.000000","8.465000","207.000000","8.465000","207.000000","8.465000","2339.000000","0.000000",,,,,,,,,,,,"0.000000","30.500000","61.000000","3.000000","30.500000","30.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2033568.000000","0.000000","2092704.000000","129468.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742382.000000",,,,, -"200.000000","8.435000","200.000000","8.435000","200.000000","8.435000","2176.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2035532.000000","0.000000","2092704.000000","129468.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742402.000000",,,,, -"268.000000","8.755000","268.000000","8.755000","268.000000","8.755000","1217.000000","0.000000",,,,,,,,,,,,"0.000000","46.500000","93.000000","6.000000","46.500000","46.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2032736.000000","0.000000","2092704.000000","129468.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742422.000000",,,,, -"234.000000","7.095000","234.000000","7.095000","234.000000","7.095000","699.000000","0.000000",,,,,,,,,,,,"0.000000","36.000000","72.000000","1.000000","36.000000","36.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2032156.000000","0.000000","2092704.000000","129468.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742442.000000",,,,, -"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","916.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","1.000000","13.500000","13.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2033892.000000","0.000000","2092704.000000","129468.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742462.000000",,,,, -"270.000000","7.265000","270.000000","7.265000","270.000000","7.265000","582.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2031628.000000","0.000000","2092704.000000","129468.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742482.000000",,,,, -"278.000000","6.300000","278.000000","6.300000","278.000000","6.300000","668.000000","0.000000",,,,,,,,,,,,"0.000000","100.500000","201.000000","1.000000","100.500000","100.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2031172.000000","0.000000","2092704.000000","129468.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742502.000000",,,,, -"682.000000","9.700000","682.000000","9.700000","682.000000","9.700000","936.000000","0.000000",,,,,,,,,,,,"7.000000","204.500000","401.000000","1.000000","204.500000","204.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2032424.000000","0.000000","2092704.000000","129468.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","14.000000","57.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742522.000000",,,,, -"275.000000","8.290000","275.000000","8.290000","275.000000","8.290000","746.000000","0.000000",,,,,,,,,,,,"0.000000","81.500000","163.000000","2.000000","81.500000","81.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2031088.000000","0.000000","2092704.000000","129468.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742542.000000",,,,, -"208.000000","7.970000","208.000000","7.970000","208.000000","7.970000","751.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","5.000000","17.500000","17.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030528.000000","0.000000","2092704.000000","129468.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742562.000000",,,,, -"228.000000","8.065000","228.000000","8.065000","228.000000","8.065000","733.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028792.000000","0.000000","2092704.000000","129468.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","18.000000","14.000000","160.000000","6000.000000","0.000000","742582.000000",,,,, -"258.000000","8.205000","258.000000","8.205000","258.000000","8.205000","1172.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030492.000000","0.000000","2092704.000000","129468.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742602.000000",,,,, -"215.000000","7.505000","215.000000","7.505000","215.000000","7.505000","1008.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","1.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030260.000000","0.000000","2092704.000000","129468.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742622.000000",,,,, -"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","826.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","7.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030992.000000","0.000000","2092704.000000","129468.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742642.000000",,,,, -"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","900.000000","0.000000",,,,,,,,,,,,"0.000000","56.000000","112.000000","1.000000","56.000000","56.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742662.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","3.000000","20.500000","20.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2027308.000000","0.000000","2092704.000000","129468.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742682.000000",,,,, -"228.000000","7.070000","228.000000","7.070000","228.000000","7.070000","528.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","1.000000","29.000000","29.000000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2028028.000000","0.000000","2092704.000000","129468.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742702.000000",,,,, -"344.000000","7.610000","344.000000","7.610000","344.000000","7.610000","863.000000","0.000000",,,,,,,,,,,,"0.000000","147.500000","295.000000","1.000000","147.500000","147.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2029432.000000","0.000000","2092704.000000","129468.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","18.000000","15.000000","160.000000","6000.000000","0.000000","742722.000000",,,,, -"866.000000","16.065000","866.000000","16.065000","866.000000","16.065000","1393.000000","0.000000",,,,,,,,,,,,"13526.000000","13915.500000","14303.000000","18.000000","13915.500000","13915.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047976.000000","0.000000","2092704.000000","129468.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","11.000000","18.000000","12.000000","16.000000","53.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","52.000000","18.000000","160.000000","6000.000000","0.000000","742742.000000",,,,, -"827.000000","15.880000","827.000000","15.880000","827.000000","15.880000","1622.000000","0.000000",,,,,,,,,,,,"1407.000000","1192.000000","722.000000","8.000000","1192.000000","1192.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047880.000000","0.000000","2092704.000000","129468.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"7.000000","246.000000",,,,,,,,,,,"0.000000","12.000000","28.000000","14.000000","18.000000","53.000000","31.000000","0.000000","0.000000","0.000000","11.000000","24.000000","13.000000","18.000000","52.000000","29.000000","160.000000","6000.000000","0.000000","742762.000000",,,,, -"704.000000","15.300000","704.000000","15.300000","704.000000","15.300000","1779.000000","0.000000",,,,,,,,,,,,"817.000000","2030.500000","573.000000","3.000000","2030.500000","2030.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2050152.000000","0.000000","2092704.000000","129468.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","0.000000","0.000000",,,,,,"2632.000000","38.000000",,,,,,,,,,,"0.000000","13.000000","35.000000","16.000000","24.000000","55.000000","44.000000","0.000000","0.000000","0.000000","12.000000","30.000000","14.000000","20.000000","52.000000","35.000000","160.000000","6000.000000","0.000000","742782.000000",,,,, -"1369.000000","30.430000","1369.000000","30.430000","1369.000000","30.430000","2678.000000","0.000000",,,,,,,,,,,,"0.000000","21091.500000","21618.000000","65.000000","21091.500000","21091.500000",,,,,,,,,,,"713028.000000","1006632.000000","0.000000","0.000000","2057144.000000","0.000000","2092704.000000","129468.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"20487.000000","78.000000",,,,,,,,,,,"0.000000","14.000000","44.000000","19.000000","30.000000","72.000000","53.000000","0.000000","0.000000","0.000000","13.000000","35.000000","17.000000","24.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742802.000000",,,,, -"1160.000000","29.445000","1160.000000","29.445000","1160.000000","29.445000","4176.000000","0.000000",,,,,,,,,,,,"0.000000","19993.000000","30537.000000","43.000000","19993.000000","19993.000000",,,,,,,,,,,"817888.000000","1006632.000000","0.000000","0.000000","2071676.000000","0.000000","2092704.000000","129468.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","0.000000","0.000000",,,,,,"9414.000000","34.000000",,,,,,,,,,,"0.000000","15.000000","49.000000","21.000000","34.000000","72.000000","55.000000","0.000000","0.000000","0.000000","13.000000","39.000000","18.000000","33.000000","54.000000","48.000000","160.000000","6000.000000","0.000000","742822.000000",,,,, -"1118.000000","32.245000","1118.000000","32.245000","1118.000000","32.245000","2371.000000","0.000000",,,,,,,,,,,,"17.000000","19813.500000","26206.000000","39.000000","19813.500000","19813.500000",,,,,,,,,,,"1090516.000000","1132460.000000","0.000000","0.000000","2071432.000000","0.000000","2092704.000000","129468.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"13348.000000","54.000000",,,,,,,,,,,"0.000000","16.000000","58.000000","24.000000","45.000000","72.000000","59.000000","0.000000","0.000000","0.000000","14.000000","45.000000","20.000000","38.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742842.000000",,,,, -"1385.000000","43.500000","1385.000000","43.500000","1385.000000","43.500000","2499.000000","0.000000",,,,,,,,,,,,"5046.000000","14525.000000","20558.000000","16.000000","14525.000000","14525.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","0.000000","0.000000",,,,,,"3430.000000","16.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","27.000000","47.000000","90.000000","68.000000","0.000000","0.000000","0.000000","15.000000","45.000000","23.000000","40.000000","76.000000","49.000000","160.000000","6000.000000","0.000000","742862.000000",,,,, -"2107.000000","46.895000","2107.000000","46.895000","2107.000000","46.895000","1998.000000","0.000000",,,,,,,,,,,,"627.000000","1466.500000","2305.000000","13.000000","1466.500000","1466.500000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","63.000000","31.000000","51.000000","105.000000","71.000000","0.000000","0.000000","0.000000","16.000000","52.000000","26.000000","43.000000","91.000000","54.000000","160.000000","6000.000000","0.000000","742882.000000",,,,, -"1880.000000","45.830000","1880.000000","45.830000","1880.000000","45.830000","3078.000000","0.000000",,,,,,,,,,,,"118.000000","172.000000","226.000000","4.000000","172.000000","172.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072508.000000","0.000000","2092704.000000","129468.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","78.000000","38.000000","55.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","67.000000","32.000000","48.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742902.000000",,,,, -"1607.000000","50.045000","1607.000000","50.045000","1607.000000","50.045000","2461.000000","0.000000",,,,,,,,,,,,"123.000000","492.500000","857.000000","3.000000","492.500000","492.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072304.000000","0.000000","2092704.000000","129468.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","21.000000","81.000000","41.000000","62.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","69.000000","35.000000","50.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742922.000000",,,,, -"1827.000000","51.080000","1827.000000","51.080000","1827.000000","51.080000","2217.000000","0.000000",,,,,,,,,,,,"0.000000","110.500000","221.000000","4.000000","110.500000","110.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072076.000000","0.000000","2092704.000000","129468.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","87.000000","47.000000","68.000000","107.000000","96.000000","0.000000","0.000000","0.000000","19.000000","70.000000","39.000000","54.000000","99.000000","76.000000","160.000000","6000.000000","0.000000","742942.000000",,,,, -"2392.000000","53.735000","2392.000000","53.735000","2392.000000","53.735000","2052.000000","0.000000",,,,,,,,,,,,"100.000000","422.000000","739.000000","5.000000","422.000000","422.000000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2071840.000000","0.000000","2092704.000000","129468.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","85.000000","52.000000","72.000000","106.000000","96.000000","0.000000","0.000000","0.000000","21.000000","68.000000","43.000000","59.000000","80.000000","78.000000","160.000000","6000.000000","0.000000","742962.000000",,,,, -"3168.000000","58.380000","3168.000000","58.380000","3168.000000","58.380000","2186.000000","0.000000",,,,,,,,,,,,"86.000000","753.500000","1417.000000","4.000000","753.500000","753.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","120.000000","64.000000","82.000000","166.000000","107.000000","0.000000","0.000000","0.000000","23.000000","91.000000","51.000000","64.000000","125.000000","99.000000","160.000000","6000.000000","0.000000","742982.000000",,,,, -"3690.000000","60.835000","3690.000000","60.835000","3690.000000","60.835000","2161.000000","0.000000",,,,,,,,,,,,"0.000000","506.000000","1011.000000","18.000000","506.000000","506.000000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071160.000000","0.000000","2092704.000000","129468.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","31.000000","142.000000","74.000000","90.000000","181.000000","163.000000","0.000000","0.000000","0.000000","26.000000","109.000000","59.000000","76.000000","167.000000","115.000000","160.000000","6000.000000","0.000000","743002.000000",,,,, -"3225.000000","58.650000","3225.000000","58.650000","3225.000000","58.650000","2356.000000","0.000000",,,,,,,,,,,,"3.000000","412.500000","821.000000","16.000000","412.500000","412.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","169.000000","86.000000","105.000000","184.000000","169.000000","0.000000","0.000000","0.000000","29.000000","126.000000","68.000000","79.000000","167.000000","120.000000","160.000000","6000.000000","0.000000","743022.000000",,,,, -"3561.000000","54.730000","3561.000000","54.730000","3561.000000","54.730000","2718.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","965.000000","28.000000","483.000000","483.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070704.000000","0.000000","2092704.000000","129468.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","38.000000","171.000000","94.000000","107.000000","194.000000","173.000000","0.000000","0.000000","0.000000","31.000000","131.000000","74.000000","99.000000","167.000000","125.000000","160.000000","6000.000000","0.000000","743042.000000",,,,, -"4761.000000","60.365000","4761.000000","60.365000","4761.000000","60.365000","2452.000000","0.000000",,,,,,,,,,,,"214.000000","1401.000000","2587.000000","21.000000","1401.000000","1401.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070636.000000","0.000000","2092704.000000","129468.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","176.000000","103.000000","153.000000","207.000000","181.000000","0.000000","0.000000","0.000000","35.000000","145.000000","83.000000","113.000000","204.000000","152.000000","160.000000","6000.000000","0.000000","743062.000000",,,,, -"4219.000000","57.820000","4219.000000","57.820000","4219.000000","57.820000","2166.000000","0.000000",,,,,,,,,,,,"2.000000","467.500000","932.000000","17.000000","467.500000","467.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","45.000000","180.000000","113.000000","163.000000","207.000000","184.000000","0.000000","0.000000","0.000000","38.000000","153.000000","91.000000","117.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","743082.000000",,,,, -"4549.000000","59.370000","4549.000000","59.370000","4549.000000","59.370000","1426.000000","0.000000",,,,,,,,,,,,"18.000000","1601.000000","3183.000000","58.000000","1601.000000","1601.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","187.000000","123.000000","168.000000","213.000000","194.000000","0.000000","0.000000","0.000000","42.000000","169.000000","101.000000","125.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743102.000000",,,,, -"3758.000000","55.655000","3758.000000","55.655000","3758.000000","55.655000","1738.000000","0.000000",,,,,,,,,,,,"0.000000","496.500000","992.000000","33.000000","496.500000","496.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071968.000000","0.000000","2092704.000000","129468.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","182.000000","130.000000","173.000000","213.000000","194.000000","0.000000","0.000000","0.000000","45.000000","158.000000","107.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743122.000000",,,,, -"3842.000000","56.050000","3842.000000","56.050000","3842.000000","56.050000","1464.000000","0.000000",,,,,,,,,,,,"1.000000","895.500000","1788.000000","53.000000","895.500000","895.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","178.000000","137.000000","174.000000","213.000000","194.000000","0.000000","0.000000","0.000000","47.000000","151.000000","112.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743142.000000",,,,, -"3334.000000","46.665000","3334.000000","46.665000","3334.000000","46.665000","1707.000000","0.000000",,,,,,,,,,,,"122.000000","526.000000","929.000000","17.000000","526.000000","526.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071960.000000","0.000000","2092704.000000","129468.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","174.000000","147.000000","179.000000","194.000000","194.000000","0.000000","0.000000","0.000000","51.000000","137.000000","119.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743162.000000",,,,, -"3524.000000","47.555000","3524.000000","47.555000","3524.000000","47.555000","2030.000000","0.000000",,,,,,,,,,,,"0.000000","422.500000","845.000000","24.000000","422.500000","422.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","169.000000","151.000000","180.000000","194.000000","194.000000","0.000000","0.000000","0.000000","53.000000","132.000000","123.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743182.000000",,,,, -"4222.000000","50.835000","4222.000000","50.835000","4222.000000","50.835000","2990.000000","0.000000",,,,,,,,,,,,"0.000000","517.000000","1032.000000","20.000000","517.000000","517.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2072036.000000","0.000000","2092704.000000","129468.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","176.000000","157.000000","180.000000","208.000000","200.000000","0.000000","0.000000","0.000000","56.000000","141.000000","128.000000","150.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743202.000000",,,,, -"3176.000000","45.920000","3176.000000","45.920000","3176.000000","45.920000","2618.000000","0.000000",,,,,,,,,,,,"0.000000","379.500000","759.000000","12.000000","379.500000","379.500000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071952.000000","0.000000","2092704.000000","129468.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","72.000000","175.000000","165.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","59.000000","137.000000","133.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743222.000000",,,,, -"2639.000000","43.395000","2639.000000","43.395000","2639.000000","43.395000","3957.000000","0.000000",,,,,,,,,,,,"0.000000","384.000000","768.000000","26.000000","384.000000","384.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071768.000000","0.000000","2092704.000000","129468.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","75.000000","171.000000","168.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","61.000000","129.000000","135.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743242.000000",,,,, -"3197.000000","46.020000","3197.000000","46.020000","3197.000000","46.020000","4861.000000","0.000000",,,,,,,,,,,,"0.000000","444.000000","888.000000","17.000000","444.000000","444.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","78.000000","165.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","63.000000","113.000000","137.000000","150.000000","140.000000","170.000000","160.000000","6000.000000","0.000000","743262.000000",,,,, -"2422.000000","42.380000","2422.000000","42.380000","2422.000000","42.380000","8036.000000","0.000000",,,,,,,,,,,,"0.000000","320.000000","640.000000","15.000000","320.000000","320.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","82.000000","157.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","65.000000","103.000000","135.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743282.000000",,,,, -"2919.000000","44.210000","2919.000000","44.210000","2919.000000","44.210000","11295.000000","0.000000",,,,,,,,,,,,"0.000000","311.000000","622.000000","17.000000","311.000000","311.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071516.000000","0.000000","2092704.000000","129468.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","68.000000","106.000000","134.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743302.000000",,,,, -"2960.000000","44.405000","2960.000000","44.405000","2960.000000","44.405000","10479.000000","0.000000",,,,,,,,,,,,"1.000000","260.000000","519.000000","22.000000","260.000000","260.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","69.000000","107.000000","133.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743322.000000",,,,, -"2669.000000","43.040000","2669.000000","43.040000","2669.000000","43.040000","5276.000000","0.000000",,,,,,,,,,,,"0.000000","202.000000","403.000000","5.000000","202.000000","202.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","169.000000","172.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","72.000000","105.000000","130.000000","150.000000","137.000000","170.000000","160.000000","6000.000000","0.000000","743342.000000",,,,, -"2449.000000","40.005000","2449.000000","40.005000","2449.000000","40.005000","11881.000000","0.000000",,,,,,,,,,,,"1.000000","623.000000","1245.000000","39.000000","623.000000","623.000000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","171.000000","172.000000","184.000000","199.000000","194.000000","0.000000","0.000000","0.000000","74.000000","100.000000","125.000000","150.000000","121.000000","167.000000","160.000000","6000.000000","0.000000","743362.000000",,,,, -"3373.000000","44.350000","3373.000000","44.350000","3373.000000","44.350000","8398.000000","0.000000",,,,,,,,,,,,"0.000000","392.500000","785.000000","25.000000","392.500000","392.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071464.000000","0.000000","2092704.000000","129468.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","100.000000","174.000000","172.000000","186.000000","199.000000","194.000000","0.000000","0.000000","0.000000","76.000000","105.000000","123.000000","151.000000","156.000000","167.000000","160.000000","6000.000000","0.000000","743382.000000",,,,, -"3609.000000","45.455000","3609.000000","45.455000","3609.000000","45.455000","8569.000000","0.000000",,,,,,,,,,,,"0.000000","176.500000","352.000000","12.000000","176.500000","176.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071688.000000","0.000000","2092704.000000","129468.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","184.000000","172.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","79.000000","119.000000","120.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743402.000000",,,,, -"2393.000000","40.240000","2393.000000","40.240000","2393.000000","40.240000","12932.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","916.000000","50.000000","458.000000","458.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","173.000000","170.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","81.000000","118.000000","117.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743422.000000",,,,, -"3004.000000","43.115000","3004.000000","43.115000","3004.000000","43.115000","11131.000000","0.000000",,,,,,,,,,,,"0.000000","283.000000","565.000000","8.000000","283.000000","283.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071780.000000","0.000000","2092704.000000","129468.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","110.000000","165.000000","170.000000","186.000000","201.000000","190.000000","0.000000","0.000000","0.000000","83.000000","115.000000","116.000000","152.000000","152.000000","152.000000","160.000000","6000.000000","0.000000","743442.000000",,,,, -"3259.000000","44.310000","3259.000000","44.310000","3259.000000","44.310000","8248.000000","0.000000",,,,,,,,,,,,"0.000000","398.000000","796.000000","23.000000","398.000000","398.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071748.000000","0.000000","2092704.000000","129468.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","166.000000","170.000000","189.000000","200.000000","192.000000","0.000000","0.000000","0.000000","86.000000","109.000000","115.000000","152.000000","137.000000","147.000000","160.000000","6000.000000","0.000000","743462.000000",,,,, -"3703.000000","47.895000","3703.000000","47.895000","3703.000000","47.895000","6019.000000","0.000000",,,,,,,,,,,,"0.000000","401.000000","802.000000","20.000000","401.000000","401.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","118.000000","176.000000","172.000000","190.000000","200.000000","193.000000","0.000000","0.000000","0.000000","88.000000","121.000000","115.000000","152.000000","172.000000","152.000000","160.000000","6000.000000","0.000000","743482.000000",,,,, -"2590.000000","42.665000","2590.000000","42.665000","2590.000000","42.665000","8615.000000","0.000000",,,,,,,,,,,,"0.000000","288.000000","575.000000","11.000000","288.000000","288.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","175.000000","169.000000","190.000000","200.000000","192.000000","0.000000","0.000000","0.000000","90.000000","116.000000","111.000000","152.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743502.000000",,,,, -"3504.000000","46.960000","3504.000000","46.960000","3504.000000","46.960000","2617.000000","0.000000",,,,,,,,,,,,"1.000000","415.000000","826.000000","26.000000","415.000000","415.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","125.000000","170.000000","169.000000","190.000000","193.000000","192.000000","0.000000","0.000000","0.000000","93.000000","120.000000","111.000000","153.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743522.000000",,,,, -"2636.000000","41.380000","2636.000000","41.380000","2636.000000","41.380000","5320.000000","0.000000",,,,,,,,,,,,"0.000000","452.500000","905.000000","19.000000","452.500000","452.500000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","163.000000","170.000000","190.000000","186.000000","189.000000","0.000000","0.000000","0.000000","95.000000","112.000000","112.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743542.000000",,,,, -"2957.000000","42.890000","2957.000000","42.890000","2957.000000","42.890000","5685.000000","0.000000",,,,,,,,,,,,"0.000000","387.000000","774.000000","92.000000","387.000000","387.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","132.000000","168.000000","170.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","97.000000","113.000000","111.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743562.000000",,,,, -"3797.000000","46.840000","3797.000000","46.840000","3797.000000","46.840000","3520.000000","0.000000",,,,,,,,,,,,"1.000000","515.000000","1029.000000","20.000000","515.000000","515.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071064.000000","0.000000","2092704.000000","129468.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","172.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","100.000000","117.000000","114.000000","154.000000","158.000000","153.000000","160.000000","6000.000000","0.000000","743582.000000",,,,, -"3881.000000","47.235000","3881.000000","47.235000","3881.000000","47.235000","2934.000000","0.000000",,,,,,,,,,,,"0.000000","466.000000","932.000000","17.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071136.000000","0.000000","2092704.000000","129468.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","178.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","103.000000","127.000000","116.000000","156.000000","158.000000","154.000000","160.000000","6000.000000","0.000000","743602.000000",,,,, -"4735.000000","51.245000","4735.000000","51.245000","4735.000000","51.245000","1357.000000","0.000000",,,,,,,,,,,,"0.000000","471.000000","941.000000","19.000000","471.000000","471.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070972.000000","0.000000","2092704.000000","129468.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","143.000000","186.000000","174.000000","194.000000","202.000000","198.000000","0.000000","0.000000","0.000000","106.000000","148.000000","119.000000","158.000000","178.000000","158.000000","160.000000","6000.000000","0.000000","743622.000000",,,,, -"4628.000000","50.740000","4628.000000","50.740000","4628.000000","50.740000","1563.000000","0.000000",,,,,,,,,,,,"0.000000","594.000000","1187.000000","37.000000","594.000000","594.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070884.000000","0.000000","2092704.000000","129468.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","192.000000","177.000000","195.000000","210.000000","199.000000","0.000000","0.000000","0.000000","110.000000","164.000000","126.000000","162.000000","205.000000","172.000000","160.000000","6000.000000","0.000000","743642.000000",,,,, -"4789.000000","51.500000","4789.000000","51.500000","4789.000000","51.500000","1711.000000","0.000000",,,,,,,,,,,,"0.000000","442.500000","885.000000","37.000000","442.500000","442.500000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070896.000000","0.000000","2092704.000000","129468.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","151.000000","197.000000","177.000000","198.000000","210.000000","201.000000","0.000000","0.000000","0.000000","113.000000","177.000000","131.000000","167.000000","205.000000","178.000000","160.000000","6000.000000","0.000000","743662.000000",,,,, -"4795.000000","51.030000","4795.000000","51.030000","4795.000000","51.030000","1946.000000","0.000000",,,,,,,,,,,,"0.000000","555.500000","1109.000000","46.000000","555.500000","555.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","199.000000","179.000000","199.000000","210.000000","202.000000","0.000000","0.000000","0.000000","116.000000","183.000000","135.000000","172.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","743682.000000",,,,, -"3338.000000","44.180000","3338.000000","44.180000","3338.000000","44.180000","959.000000","0.000000",,,,,,,,,,,,"1.000000","364.000000","726.000000","22.000000","364.000000","364.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070596.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","192.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","119.000000","164.000000","135.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743702.000000",,,,, -"3159.000000","43.340000","3159.000000","43.340000","3159.000000","43.340000","866.000000","0.000000",,,,,,,,,,,,"0.000000","559.000000","1118.000000","19.000000","559.000000","559.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070460.000000","0.000000","2092704.000000","129468.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","177.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","120.000000","145.000000","136.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743722.000000",,,,, -"3239.000000","43.220000","3239.000000","43.220000","3239.000000","43.220000","1889.000000","0.000000",,,,,,,,,,,,"0.000000","285.500000","570.000000","20.000000","285.500000","285.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070392.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","164.000000","179.000000","199.000000","190.000000","202.000000","0.000000","0.000000","0.000000","121.000000","121.000000","136.000000","172.000000","147.000000","184.000000","160.000000","6000.000000","0.000000","743742.000000",,,,, -"3103.000000","42.575000","3103.000000","42.575000","3103.000000","42.575000","1391.000000","0.000000",,,,,,,,,,,,"1.000000","380.000000","758.000000","12.000000","380.000000","380.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070324.000000","0.000000","2092704.000000","129468.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","158.000000","177.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","124.000000","119.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743762.000000",,,,, -"3145.000000","42.775000","3145.000000","42.775000","3145.000000","42.775000","1284.000000","0.000000",,,,,,,,,,,,"15.000000","5220.000000","10424.000000","46.000000","5220.000000","5220.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","163.000000","176.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","125.000000","118.000000","136.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743782.000000",,,,, -"3305.000000","43.525000","3305.000000","43.525000","3305.000000","43.525000","1718.000000","0.000000",,,,,,,,,,,,"3.000000","376.500000","750.000000","19.000000","376.500000","376.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2070124.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","168.000000","177.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","125.000000","122.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743802.000000",,,,, -"3116.000000","42.635000","3116.000000","42.635000","3116.000000","42.635000","1617.000000","0.000000",,,,,,,,,,,,"16.000000","10448.500000","20881.000000","46.000000","10448.500000","10448.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","166.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","127.000000","120.000000","137.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743822.000000",,,,, -"3783.000000","45.775000","3783.000000","45.775000","3783.000000","45.775000","2242.000000","0.000000",,,,,,,,,,,,"38.000000","2202.500000","4365.000000","46.000000","2202.500000","2202.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2072004.000000","0.000000","2092704.000000","129468.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","167.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","128.000000","124.000000","138.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743842.000000",,,,, -"3152.000000","47.305000","3152.000000","47.305000","3152.000000","47.305000","2052.000000","0.000000",,,,,,,,,,,,"44.000000","951.500000","1858.000000","42.000000","951.500000","951.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","161.000000","176.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","127.000000","140.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743862.000000",,,,, -"3057.000000","46.865000","3057.000000","46.865000","3057.000000","46.865000","1879.000000","0.000000",,,,,,,,,,,,"3.000000","580.500000","1157.000000","28.000000","580.500000","580.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072204.000000","0.000000","2092704.000000","129468.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","124.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743882.000000",,,,, -"3577.000000","49.305000","3577.000000","49.305000","3577.000000","49.305000","1444.000000","0.000000",,,,,,,,,,,,"0.000000","479.000000","958.000000","19.000000","479.000000","479.000000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","126.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743902.000000",,,,, -"3555.000000","52.205000","3555.000000","52.205000","3555.000000","52.205000","1706.000000","0.000000",,,,,,,,,,,,"1.000000","677.500000","1353.000000","29.000000","677.500000","677.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072100.000000","0.000000","2092704.000000","129468.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","163.000000","171.000000","199.000000","181.000000","200.000000","0.000000","0.000000","0.000000","129.000000","124.000000","135.000000","172.000000","141.000000","184.000000","160.000000","6000.000000","0.000000","743922.000000",,,,, -"3403.000000","51.485000","3403.000000","51.485000","3403.000000","51.485000","1428.000000","0.000000",,,,,,,,,,,,"92.000000","2309.500000","4525.000000","39.000000","2309.500000","2309.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072028.000000","0.000000","2092704.000000","129468.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","175.000000","170.000000","200.000000","202.000000","200.000000","0.000000","0.000000","0.000000","129.000000","132.000000","132.000000","172.000000","147.000000","177.000000","160.000000","6000.000000","0.000000","743942.000000",,,,, -"3741.000000","53.075000","3741.000000","53.075000","3741.000000","53.075000","1499.000000","0.000000",,,,,,,,,,,,"2268.000000","1792.500000","1316.000000","17.000000","1792.500000","1792.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2071728.000000","0.000000","2092704.000000","129468.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","173.000000","173.000000","168.000000","198.000000","202.000000","196.000000","0.000000","0.000000","0.000000","128.000000","133.000000","129.000000","169.000000","162.000000","152.000000","160.000000","6000.000000","0.000000","743962.000000",,,,, -"4139.000000","54.950000","4139.000000","54.950000","4139.000000","54.950000","2321.000000","0.000000",,,,,,,,,,,,"3816.000000","4616.000000","5415.000000","13.000000","4616.000000","4616.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072108.000000","0.000000","2092704.000000","129468.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","202.000000","187.000000","0.000000","0.000000","0.000000","128.000000","141.000000","127.000000","170.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","743982.000000",,,,, -"3588.000000","52.355000","3588.000000","52.355000","3588.000000","52.355000","1315.000000","0.000000",,,,,,,,,,,,"101.000000","2767.000000","5432.000000","20.000000","2767.000000","2767.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072320.000000","0.000000","2092704.000000","129468.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","196.000000","188.000000","0.000000","0.000000","0.000000","127.000000","142.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744002.000000",,,,, -"3026.000000","49.715000","3026.000000","49.715000","3026.000000","49.715000","1891.000000","0.000000",,,,,,,,,,,,"16.000000","390.000000","764.000000","31.000000","390.000000","390.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072416.000000","0.000000","2092704.000000","129468.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","175.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","135.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744022.000000",,,,, -"3614.000000","53.975000","3614.000000","53.975000","3614.000000","53.975000","1116.000000","0.000000",,,,,,,,,,,,"2.000000","408.000000","814.000000","53.000000","408.000000","408.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","172.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","128.000000","167.000000","149.000000","150.000000","160.000000","6000.000000","0.000000","744042.000000",,,,, -"3623.000000","54.020000","3623.000000","54.020000","3623.000000","54.020000","1252.000000","0.000000",,,,,,,,,,,,"2.000000","373.000000","744.000000","18.000000","373.000000","373.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072352.000000","0.000000","2092704.000000","129468.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","171.000000","169.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","129.000000","162.000000","151.000000","151.000000","160.000000","6000.000000","0.000000","744062.000000",,,,, -"3791.000000","54.810000","3791.000000","54.810000","3791.000000","54.810000","1636.000000","0.000000",,,,,,,,,,,,"6.000000","461.500000","917.000000","23.000000","461.500000","461.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072604.000000","0.000000","2092704.000000","129468.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","166.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744082.000000",,,,, -"3988.000000","58.235000","3988.000000","58.235000","3988.000000","58.235000","1852.000000","0.000000",,,,,,,,,,,,"2.000000","317.500000","632.000000","37.000000","317.500000","317.500000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","178.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","162.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744102.000000",,,,, -"3827.000000","57.480000","3827.000000","57.480000","3827.000000","57.480000","1512.000000","0.000000",,,,,,,,,,,,"21.000000","431.000000","840.000000","22.000000","431.000000","431.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","183.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","127.000000","147.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744122.000000",,,,, -"3622.000000","56.515000","3622.000000","56.515000","3622.000000","56.515000","2034.000000","0.000000",,,,,,,,,,,,"4.000000","1117.000000","2229.000000","51.000000","1117.000000","1117.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","183.000000","173.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","143.000000","135.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744142.000000",,,,, -"3255.000000","55.795000","3255.000000","55.795000","3255.000000","55.795000","1931.000000","0.000000",,,,,,,,,,,,"1243.000000","1317.000000","1391.000000","47.000000","1317.000000","1317.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072752.000000","0.000000","2092704.000000","129468.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","184.000000","174.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","129.000000","142.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744162.000000",,,,, -"2560.000000","52.525000","2560.000000","52.525000","2560.000000","52.525000","1557.000000","0.000000",,,,,,,,,,,,"9365.000000","5795.000000","2225.000000","13.000000","5795.000000","5795.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072916.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","159.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","118.000000","133.000000","166.000000","160.000000","162.000000","160.000000","6000.000000","0.000000","744182.000000",,,,, -"3235.000000","55.695000","3235.000000","55.695000","3235.000000","55.695000","1845.000000","0.000000",,,,,,,,,,,,"3843.000000","7886.500000","11930.000000","21.000000","7886.500000","7886.500000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","145.000000","170.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","109.000000","132.000000","166.000000","128.000000","162.000000","160.000000","6000.000000","0.000000","744202.000000",,,,, -"3267.000000","55.850000","3267.000000","55.850000","3267.000000","55.850000","1706.000000","0.000000",,,,,,,,,,,,"2244.000000","3148.500000","4052.000000","20.000000","3148.500000","3148.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073196.000000","0.000000","2092704.000000","129468.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","140.000000","170.000000","198.000000","181.000000","196.000000","0.000000","0.000000","0.000000","129.000000","114.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744222.000000",,,,, -"3604.000000","57.430000","3604.000000","57.430000","3604.000000","57.430000","1729.000000","0.000000",,,,,,,,,,,,"57.000000","5524.000000","10990.000000","30.000000","5524.000000","5524.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073156.000000","0.000000","2092704.000000","129468.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","169.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","126.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744242.000000",,,,, -"2759.000000","53.460000","2759.000000","53.460000","2759.000000","53.460000","1574.000000","0.000000",,,,,,,,,,,,"480.000000","2911.500000","5339.000000","64.000000","2911.500000","2911.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073368.000000","0.000000","2092704.000000","129468.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","171.000000","156.000000","166.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","123.000000","130.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744262.000000",,,,, -"3597.000000","57.395000","3597.000000","57.395000","3597.000000","57.395000","1187.000000","0.000000",,,,,,,,,,,,"251.000000","3973.500000","7694.000000","55.000000","3973.500000","3973.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073188.000000","0.000000","2092704.000000","129468.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","170.000000","155.000000","166.000000","198.000000","190.000000","195.000000","0.000000","0.000000","0.000000","130.000000","122.000000","128.000000","166.000000","150.000000","160.000000","160.000000","6000.000000","0.000000","744282.000000",,,,, -"3072.000000","54.930000","3072.000000","54.930000","3072.000000","54.930000","1074.000000","0.000000",,,,,,,,,,,,"272.000000","8873.500000","17474.000000","33.000000","8873.500000","8873.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073312.000000","0.000000","2092704.000000","129468.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","169.000000","148.000000","164.000000","198.000000","174.000000","194.000000","0.000000","0.000000","0.000000","130.000000","118.000000","127.000000","166.000000","137.000000","160.000000","160.000000","6000.000000","0.000000","744302.000000",,,,, -"3450.000000","56.710000","3450.000000","56.710000","3450.000000","56.710000","1837.000000","0.000000",,,,,,,,,,,,"140.000000","7954.000000","15767.000000","36.000000","7954.000000","7954.000000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073116.000000","0.000000","2092704.000000","129468.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","162.000000","164.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","131.000000","126.000000","128.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744322.000000",,,,, -"2592.000000","52.680000","2592.000000","52.680000","2592.000000","52.680000","2072.000000","0.000000",,,,,,,,,,,,"8645.000000","11137.000000","13629.000000","46.000000","11137.000000","11137.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073080.000000","0.000000","2092704.000000","129468.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","153.000000","162.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","117.000000","126.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744342.000000",,,,, -"3015.000000","54.665000","3015.000000","54.665000","3015.000000","54.665000","1312.000000","0.000000",,,,,,,,,,,,"1516.000000","11797.000000","22076.000000","51.000000","11797.000000","11797.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","151.000000","160.000000","197.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","114.000000","125.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744362.000000",,,,, -"3096.000000","55.040000","3096.000000","55.040000","3096.000000","55.040000","1794.000000","0.000000",,,,,,,,,,,,"333.000000","7155.500000","13978.000000","33.000000","7155.500000","7155.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072792.000000","0.000000","2092704.000000","129468.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","141.000000","157.000000","197.000000","169.000000","188.000000","0.000000","0.000000","0.000000","130.000000","109.000000","122.000000","164.000000","133.000000","155.000000","160.000000","6000.000000","0.000000","744382.000000",,,,, -"3331.000000","56.150000","3331.000000","56.150000","3331.000000","56.150000","1820.000000","0.000000",,,,,,,,,,,,"1799.000000","3938.000000","6077.000000","18.000000","3938.000000","3938.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072512.000000","0.000000","2092704.000000","129468.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","150.000000","156.000000","197.000000","176.000000","188.000000","0.000000","0.000000","0.000000","130.000000","113.000000","121.000000","164.000000","133.000000","150.000000","160.000000","6000.000000","0.000000","744402.000000",,,,, -"2534.000000","52.400000","2534.000000","52.400000","2534.000000","52.400000","1408.000000","0.000000",,,,,,,,,,,,"7824.000000","10464.000000","13103.000000","84.000000","10464.000000","10464.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072464.000000","0.000000","2092704.000000","129468.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","139.000000","151.000000","197.000000","176.000000","183.000000","0.000000","0.000000","0.000000","130.000000","113.000000","118.000000","164.000000","144.000000","145.000000","160.000000","6000.000000","0.000000","744422.000000",,,,, -"1798.000000","48.945000","1798.000000","48.945000","1798.000000","48.945000","1310.000000","0.000000",,,,,,,,,,,,"10924.000000","8664.000000","6403.000000","64.000000","8664.000000","8664.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072468.000000","0.000000","2092704.000000","129468.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","122.000000","145.000000","197.000000","176.000000","181.000000","0.000000","0.000000","0.000000","129.000000","100.000000","114.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744442.000000",,,,, -"1359.000000","45.380000","1359.000000","45.380000","1359.000000","45.380000","1413.000000","0.000000",,,,,,,,,,,,"14270.000000","12067.500000","9865.000000","8.000000","12067.500000","12067.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072824.000000","0.000000","2092704.000000","129468.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","93.000000","138.000000","196.000000","152.000000","180.000000","0.000000","0.000000","0.000000","128.000000","81.000000","109.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744462.000000",,,,, -"1710.000000","47.030000","1710.000000","47.030000","1710.000000","47.030000","1541.000000","0.000000",,,,,,,,,,,,"12476.000000","9800.500000","7124.000000","9.000000","9800.500000","9800.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","69.000000","133.000000","196.000000","105.000000","180.000000","0.000000","0.000000","0.000000","126.000000","58.000000","106.000000","164.000000","80.000000","138.000000","160.000000","6000.000000","0.000000","744482.000000",,,,, -"1551.000000","46.285000","1551.000000","46.285000","1551.000000","46.285000","2795.000000","0.000000",,,,,,,,,,,,"20492.000000","13573.000000","6652.000000","53.000000","13573.000000","13573.000000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2073168.000000","0.000000","2092704.000000","129468.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","157.000000","67.000000","130.000000","196.000000","129.000000","180.000000","0.000000","0.000000","0.000000","124.000000","56.000000","103.000000","164.000000","107.000000","138.000000","160.000000","6000.000000","0.000000","744502.000000",,,,, -"2678.000000","51.580000","2678.000000","51.580000","2678.000000","51.580000","1434.000000","0.000000",,,,,,,,,,,,"9138.000000","10579.000000","12020.000000","49.000000","10579.000000","10579.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073400.000000","0.000000","2092704.000000","129468.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","82.000000","126.000000","196.000000","129.000000","174.000000","0.000000","0.000000","0.000000","122.000000","66.000000","100.000000","162.000000","107.000000","137.000000","160.000000","6000.000000","0.000000","744522.000000",,,,, -"2799.000000","52.145000","2799.000000","52.145000","2799.000000","52.145000","1383.000000","0.000000",,,,,,,,,,,,"5576.000000","3555.500000","1535.000000","7.000000","3555.500000","3555.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073292.000000","0.000000","2092704.000000","129468.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","124.000000","126.000000","194.000000","189.000000","174.000000","0.000000","0.000000","0.000000","121.000000","88.000000","98.000000","156.000000","125.000000","135.000000","160.000000","6000.000000","0.000000","744542.000000",,,,, -"3318.000000","54.590000","3318.000000","54.590000","3318.000000","54.590000","883.000000","0.000000",,,,,,,,,,,,"197.000000","2913.000000","5629.000000","38.000000","2913.000000","2913.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2072920.000000","0.000000","2092704.000000","129468.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","153.000000","129.000000","190.000000","198.000000","176.000000","0.000000","0.000000","0.000000","119.000000","105.000000","99.000000","151.000000","134.000000","135.000000","160.000000","6000.000000","0.000000","744562.000000",,,,, -"3036.000000","54.260000","3036.000000","54.260000","3036.000000","54.260000","1511.000000","0.000000",,,,,,,,,,,,"9290.000000","4985.500000","680.000000","18.000000","4985.500000","4985.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072836.000000","0.000000","2092704.000000","129468.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","163.000000","128.000000","188.000000","198.000000","176.000000","0.000000","0.000000","0.000000","118.000000","116.000000","99.000000","150.000000","134.000000","133.000000","160.000000","6000.000000","0.000000","744582.000000",,,,, -"3164.000000","54.865000","3164.000000","54.865000","3164.000000","54.865000","1816.000000","0.000000",,,,,,,,,,,,"3971.000000","6502.500000","9033.000000","57.000000","6502.500000","6502.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","153.000000","127.000000","188.000000","198.000000","178.000000","0.000000","0.000000","0.000000","118.000000","119.000000","98.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744602.000000",,,,, -"2829.000000","53.290000","2829.000000","53.290000","2829.000000","53.290000","1530.000000","0.000000",,,,,,,,,,,,"839.000000","784.500000","729.000000","20.000000","784.500000","784.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072716.000000","0.000000","2092704.000000","129468.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","146.000000","126.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","118.000000","117.000000","97.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744622.000000",,,,, -"1050.000000","44.930000","1050.000000","44.930000","1050.000000","44.930000","1220.000000","0.000000",,,,,,,,,,,,"13517.000000","7970.000000","2423.000000","5.000000","7970.000000","7970.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072784.000000","0.000000","2092704.000000","129468.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","116.000000","121.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","116.000000","94.000000","94.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744642.000000",,,,, -"1107.000000","45.195000","1107.000000","45.195000","1107.000000","45.195000","1564.000000","0.000000",,,,,,,,,,,,"5707.000000","7605.000000","9501.000000","12.000000","7605.000000","7605.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072760.000000","0.000000","2092704.000000","129468.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","147.000000","79.000000","113.000000","188.000000","180.000000","178.000000","0.000000","0.000000","0.000000","114.000000","64.000000","88.000000","149.000000","134.000000","134.000000","160.000000","6000.000000","0.000000","744662.000000",,,,, -"726.000000","43.405000","726.000000","43.405000","726.000000","43.405000","1211.000000","0.000000",,,,,,,,,,,,"12789.000000","17614.500000","22400.000000","11.000000","17614.500000","17614.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072868.000000","0.000000","2092704.000000","129468.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","39.000000",,,,,,,,,,,"0.000000","144.000000","44.000000","106.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","112.000000","38.000000","83.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744682.000000",,,,, -"723.000000","43.895000","723.000000","43.895000","723.000000","43.895000","1861.000000","0.000000",,,,,,,,,,,,"9391.000000","10150.500000","10882.000000","9.000000","10150.500000","10150.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073436.000000","0.000000","2092704.000000","129468.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","142.000000","41.000000","99.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","110.000000","34.000000","78.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744702.000000",,,,, -"542.000000","43.045000","542.000000","43.045000","542.000000","43.045000","1364.000000","0.000000",,,,,,,,,,,,"375.000000","388.500000","380.000000","2.000000","388.500000","388.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073412.000000","0.000000","2092704.000000","129468.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","0.000000","0.000000",,,,,,"14.000000","7.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","91.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","108.000000","25.000000","71.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744722.000000",,,,, -"376.000000","42.265000","376.000000","42.265000","376.000000","42.265000","1429.000000","0.000000",,,,,,,,,,,,"1047.000000","616.000000","157.000000","3.000000","616.000000","616.000000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073520.000000","0.000000","2092704.000000","129468.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","0.000000","0.000000",,,,,,"21.000000","7.000000",,,,,,,,,,,"0.000000","135.000000","24.000000","87.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","105.000000","20.000000","67.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744742.000000",,,,, -"1111.000000","45.215000","1111.000000","45.215000","1111.000000","45.215000","1513.000000","0.000000",,,,,,,,,,,,"765.000000","4216.500000","7663.000000","20.000000","4216.500000","4216.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073572.000000","0.000000","2092704.000000","129468.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","133.000000","28.000000","86.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","103.000000","24.000000","67.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744762.000000",,,,, -"655.000000","43.070000","655.000000","43.070000","655.000000","43.070000","1890.000000","0.000000",,,,,,,,,,,,"51.000000","385.000000","717.000000","8.000000","385.000000","385.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073452.000000","0.000000","2092704.000000","129468.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","129.000000","30.000000","83.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","101.000000","27.000000","65.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744782.000000",,,,, -"599.000000","42.810000","599.000000","42.810000","599.000000","42.810000","1702.000000","0.000000",,,,,,,,,,,,"993.000000","608.000000","219.000000","7.000000","608.000000","608.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073216.000000","0.000000","2092704.000000","129468.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","126.000000","32.000000","80.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","99.000000","28.000000","62.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744802.000000",,,,, -"875.000000","42.605000","875.000000","42.605000","875.000000","42.605000","1457.000000","0.000000",,,,,,,,,,,,"1709.000000","990.000000","266.000000","3.000000","990.000000","990.000000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2073180.000000","0.000000","2092704.000000","129468.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","124.000000","27.000000","75.000000","188.000000","39.000000","178.000000","0.000000","0.000000","0.000000","97.000000","24.000000","58.000000","149.000000","38.000000","128.000000","160.000000","6000.000000","0.000000","744822.000000",,,,, -"242.000000","39.630000","242.000000","39.630000","242.000000","39.630000","1087.000000","0.000000",,,,,,,,,,,,"0.000000","99.500000","199.000000","5.000000","99.500000","99.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072944.000000","0.000000","2092704.000000","129468.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","23.000000","63.000000","187.000000","50.000000","162.000000","0.000000","0.000000","0.000000","94.000000","21.000000","51.000000","149.000000","48.000000","128.000000","160.000000","6000.000000","0.000000","744842.000000",,,,, -"210.000000","39.480000","210.000000","39.480000","210.000000","39.480000","921.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","94.000000","5.000000","47.500000","47.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072480.000000","0.000000","2092704.000000","129468.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","19.000000","53.000000","187.000000","50.000000","135.000000","0.000000","0.000000","0.000000","91.000000","18.000000","44.000000","146.000000","48.000000","115.000000","160.000000","6000.000000","0.000000","744862.000000",,,,, -"260.000000","42.720000","260.000000","42.720000","260.000000","42.720000","941.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","2.000000","66.500000","66.500000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071900.000000","0.000000","2092704.000000","129468.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","13.000000","45.000000","187.000000","50.000000","133.000000","0.000000","0.000000","0.000000","88.000000","13.000000","38.000000","144.000000","48.000000","109.000000","160.000000","6000.000000","0.000000","744882.000000",,,,, -"229.000000","42.570000","229.000000","42.570000","229.000000","42.570000","723.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071624.000000","0.000000","2092704.000000","129468.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","108.000000","9.000000","34.000000","183.000000","13.000000","69.000000","0.000000","0.000000","0.000000","85.000000","8.000000","29.000000","138.000000","12.000000","48.000000","160.000000","6000.000000","0.000000","744902.000000",,,,, -"257.000000","42.700000","257.000000","42.700000","257.000000","42.700000","1004.000000","0.000000",,,,,,,,,,,,"13.000000","44.000000","75.000000","3.000000","44.000000","44.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071472.000000","0.000000","2092704.000000","129468.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","26.000000","182.000000","13.000000","52.000000","0.000000","0.000000","0.000000","83.000000","8.000000","23.000000","138.000000","12.000000","46.000000","160.000000","6000.000000","0.000000","744922.000000",,,,, -"635.000000","44.480000","635.000000","44.480000","635.000000","44.480000","1254.000000","0.000000",,,,,,,,,,,,"10.000000","181.000000","344.000000","1.000000","181.000000","181.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071336.000000","0.000000","2092704.000000","129468.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","102.000000","15.000000","25.000000","182.000000","47.000000","50.000000","0.000000","0.000000","0.000000","81.000000","14.000000","22.000000","138.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","744942.000000",,,,, -"1112.000000","38.225000","1112.000000","38.225000","1112.000000","38.225000","1594.000000","0.000000",,,,,,,,,,,,"72.000000","551.000000","1011.000000","2.000000","551.000000","551.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071628.000000","0.000000","2092704.000000","129468.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"10.000000","8.000000",,,,,,,,,,,"0.000000","99.000000","27.000000","24.000000","181.000000","67.000000","50.000000","0.000000","0.000000","0.000000","78.000000","24.000000","21.000000","137.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744962.000000",,,,, -"296.000000","34.390000","296.000000","34.390000","296.000000","34.390000","804.000000","0.000000",,,,,,,,,,,,"0.000000","59.500000","101.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071512.000000","0.000000","2092704.000000","129468.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"13.000000","4.000000",,,,,,,,,,,"0.000000","95.000000","27.000000","22.000000","180.000000","67.000000","50.000000","0.000000","0.000000","0.000000","75.000000","25.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744982.000000",,,,, -"940.000000","37.410000","940.000000","37.410000","940.000000","37.410000","1805.000000","0.000000",,,,,,,,,,,,"0.000000","3811.000000","7594.000000","30.000000","3811.000000","3811.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"18.000000","8.000000",,,,,,,,,,,"0.000000","92.000000","27.000000","22.000000","178.000000","67.000000","50.000000","0.000000","0.000000","0.000000","73.000000","24.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","745002.000000",,,,, -"747.000000","31.505000","747.000000","31.505000","747.000000","31.505000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","313.500000","627.000000","5.000000","313.500000","313.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072080.000000","0.000000","2092704.000000","129468.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","88.000000","27.000000","23.000000","176.000000","58.000000","57.000000","0.000000","0.000000","0.000000","70.000000","25.000000","21.000000","133.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745022.000000",,,,, -"340.000000","29.590000","340.000000","29.590000","340.000000","29.590000","1721.000000","0.000000",,,,,,,,,,,,"0.000000","112.500000","224.000000","1.000000","112.500000","112.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","85.000000","28.000000","23.000000","172.000000","58.000000","57.000000","0.000000","0.000000","0.000000","67.000000","24.000000","21.000000","132.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745042.000000",,,,, -"779.000000","31.655000","779.000000","31.655000","779.000000","31.655000","1498.000000","0.000000",,,,,,,,,,,,"565.000000","474.000000","382.000000","2.000000","474.000000","474.000000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","82.000000","29.000000","22.000000","169.000000","58.000000","50.000000","0.000000","0.000000","0.000000","65.000000","27.000000","20.000000","132.000000","53.000000","47.000000","160.000000","6000.000000","0.000000","745062.000000",,,,, -"480.000000","25.750000","480.000000","25.750000","480.000000","25.750000","1454.000000","0.000000",,,,,,,,,,,,"14.000000","96.000000","178.000000","5.000000","96.000000","96.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","79.000000","22.000000","22.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","63.000000","20.000000","20.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745082.000000",,,,, -"215.000000","24.505000","215.000000","24.505000","215.000000","24.505000","1360.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070776.000000","0.000000","2092704.000000","129468.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","21.000000","21.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","61.000000","19.000000","19.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745102.000000",,,,, -"220.000000","24.525000","220.000000","24.525000","220.000000","24.525000","1333.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","74.000000","13.000000","19.000000","167.000000","35.000000","50.000000","0.000000","0.000000","0.000000","59.000000","12.000000","18.000000","131.000000","34.000000","47.000000","160.000000","6000.000000","0.000000","745122.000000",,,,, -"253.000000","22.185000","253.000000","22.185000","253.000000","22.185000","1374.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2070240.000000","0.000000","2092704.000000","129468.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","69.000000","9.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","55.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745142.000000",,,,, -"211.000000","21.990000","211.000000","21.990000","211.000000","21.990000","1237.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2069512.000000","0.000000","2092704.000000","129468.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","8.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","54.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745162.000000",,,,, -"210.000000","21.980000","210.000000","21.980000","210.000000","21.980000","1417.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","3.000000","10.000000","10.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2068924.000000","0.000000","2092704.000000","129468.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","8.000000","18.000000","164.000000","13.000000","48.000000","0.000000","0.000000","0.000000","51.000000","8.000000","17.000000","123.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745182.000000",,,,, -"242.000000","20.135000","242.000000","20.135000","242.000000","20.135000","1204.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","5.000000","33.000000","33.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068524.000000","0.000000","2092704.000000","129468.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","60.000000","8.000000","19.000000","162.000000","12.000000","48.000000","0.000000","0.000000","0.000000","48.000000","8.000000","17.000000","118.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745202.000000",,,,, -"221.000000","20.035000","221.000000","20.035000","221.000000","20.035000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","3.000000","8.500000","8.500000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068260.000000","0.000000","2092704.000000","129468.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","8.000000","18.000000","155.000000","12.000000","48.000000","0.000000","0.000000","0.000000","46.000000","8.000000","17.000000","115.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745222.000000",,,,, -"221.000000","20.030000","221.000000","20.030000","221.000000","20.030000","1249.000000","0.000000",,,,,,,,,,,,"1.000000","24.000000","47.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068640.000000","0.000000","2092704.000000","129468.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","8.000000","17.000000","154.000000","12.000000","48.000000","0.000000","0.000000","0.000000","44.000000","8.000000","16.000000","114.000000","11.000000","38.000000","160.000000","6000.000000","0.000000","745242.000000",,,,, -"353.000000","17.150000","353.000000","17.150000","353.000000","17.150000","1486.000000","0.000000",,,,,,,,,,,,"15.000000","96.000000","175.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2068132.000000","0.000000","2092704.000000","129468.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","51.000000","10.000000","15.000000","150.000000","17.000000","35.000000","0.000000","0.000000","0.000000","41.000000","9.000000","14.000000","113.000000","17.000000","34.000000","160.000000","6000.000000","0.000000","745262.000000",,,,, -"575.000000","18.195000","575.000000","18.195000","575.000000","18.195000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","160.000000","313.000000","1.000000","160.000000","160.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067844.000000","0.000000","2092704.000000","129468.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","48.000000","15.000000","16.000000","143.000000","54.000000","47.000000","0.000000","0.000000","0.000000","39.000000","14.000000","15.000000","112.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745282.000000",,,,, -"637.000000","18.490000","637.000000","18.490000","637.000000","18.490000","1866.000000","0.000000",,,,,,,,,,,,"0.000000","186.500000","371.000000","3.000000","186.500000","186.500000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067620.000000","0.000000","2092704.000000","129468.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","46.000000","20.000000","16.000000","135.000000","54.000000","40.000000","0.000000","0.000000","0.000000","37.000000","18.000000","15.000000","109.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745302.000000",,,,, -"539.000000","16.025000","539.000000","16.025000","539.000000","16.025000","1200.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067912.000000","0.000000","2092704.000000","129468.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","43.000000","22.000000","14.000000","129.000000","54.000000","35.000000","0.000000","0.000000","0.000000","35.000000","21.000000","13.000000","104.000000","48.000000","34.000000","160.000000","6000.000000","0.000000","745322.000000",,,,, -"499.000000","15.840000","499.000000","15.840000","499.000000","15.840000","1748.000000","0.000000",,,,,,,,,,,,"15.000000","133.500000","251.000000","4.000000","133.500000","133.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067972.000000","0.000000","2092704.000000","129468.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","42.000000","22.000000","15.000000","129.000000","40.000000","35.000000","0.000000","0.000000","0.000000","34.000000","20.000000","14.000000","104.000000","40.000000","34.000000","160.000000","6000.000000","0.000000","745342.000000",,,,, -"272.000000","14.775000","272.000000","14.775000","272.000000","14.775000","1982.000000","0.000000",,,,,,,,,,,,"9.000000","38.500000","67.000000","2.000000","38.500000","38.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067184.000000","0.000000","2092704.000000","129468.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","13.000000","129.000000","40.000000","34.000000","0.000000","0.000000","0.000000","33.000000","17.000000","13.000000","104.000000","39.000000","30.000000","160.000000","6000.000000","0.000000","745362.000000",,,,, -"226.000000","13.055000","226.000000","13.055000","226.000000","13.055000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","130.000000","2.000000","65.500000","65.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066756.000000","0.000000","2092704.000000","129468.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","14.000000","13.000000","129.000000","34.000000","32.000000","0.000000","0.000000","0.000000","32.000000","13.000000","12.000000","104.000000","30.000000","28.000000","160.000000","6000.000000","0.000000","745382.000000",,,,, -"211.000000","12.985000","211.000000","12.985000","211.000000","12.985000","1784.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","5.000000","13.500000","13.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066684.000000","0.000000","2092704.000000","129468.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","13.000000","129.000000","16.000000","32.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","101.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","745402.000000",,,,, -"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","946.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","33.000000","2.000000","17.000000","17.000000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066324.000000","0.000000","2092704.000000","129468.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","13.000000","129.000000","10.000000","32.000000","0.000000","0.000000","0.000000","29.000000","8.000000","12.000000","101.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745422.000000",,,,, -"219.000000","12.025000","219.000000","12.025000","219.000000","12.025000","767.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","5.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065884.000000","0.000000","2092704.000000","129468.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","8.000000","13.000000","69.000000","10.000000","32.000000","0.000000","0.000000","0.000000","27.000000","8.000000","12.000000","66.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745442.000000",,,,, -"239.000000","12.120000","239.000000","12.120000","239.000000","12.120000","602.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","14.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065068.000000","0.000000","2092704.000000","129468.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","13.000000","57.000000","10.000000","32.000000","0.000000","0.000000","0.000000","24.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745462.000000",,,,, -"225.000000","12.050000","225.000000","12.050000","225.000000","12.050000","560.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","2.000000","19.000000","19.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2064604.000000","0.000000","2092704.000000","129468.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","13.000000","54.000000","10.000000","32.000000","0.000000","0.000000","0.000000","22.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745482.000000",,,,, -"234.000000","12.090000","234.000000","12.090000","234.000000","12.090000","538.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","4.000000","19.000000","19.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063468.000000","0.000000","2092704.000000","129468.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","13.000000","50.000000","9.000000","32.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","43.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745502.000000",,,,, -"217.000000","12.015000","217.000000","12.015000","217.000000","12.015000","564.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","3.000000","14.000000","14.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063212.000000","0.000000","2092704.000000","129468.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","40.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745522.000000",,,,, -"288.000000","12.350000","288.000000","12.350000","288.000000","12.350000","699.000000","0.000000",,,,,,,,,,,,"8.000000","39.500000","70.000000","3.000000","39.500000","39.500000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063196.000000","0.000000","2092704.000000","129468.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745542.000000",,,,, -"598.000000","12.805000","598.000000","12.805000","598.000000","12.805000","928.000000","0.000000",,,,,,,,,,,,"0.000000","181.500000","356.000000","1.000000","181.500000","181.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2063188.000000","0.000000","2092704.000000","129468.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","17.000000","15.000000","14.000000","40.000000","55.000000","34.000000","0.000000","0.000000","0.000000","16.000000","13.000000","13.000000","37.000000","45.000000","30.000000","160.000000","6000.000000","0.000000","745562.000000",,,,, -"1052.000000","14.940000","1052.000000","14.940000","1052.000000","14.940000","1200.000000","0.000000",,,,,,,,,,,,"5.000000","493.000000","965.000000","1.000000","493.000000","493.000000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062944.000000","0.000000","2092704.000000","129468.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","0.000000","0.000000",,,,,,"8.000000","7.000000",,,,,,,,,,,"0.000000","18.000000","24.000000","14.000000","47.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","21.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745582.000000",,,,, -"219.000000","11.025000","219.000000","11.025000","219.000000","11.025000","1114.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","26.000000","1.000000","14.500000","14.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062500.000000","0.000000","2092704.000000","129468.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","27.000000","14.000000","40.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745602.000000",,,,, -"229.000000","10.070000","229.000000","10.070000","229.000000","10.070000","886.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","92.000000","4.000000","47.500000","47.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2062048.000000","0.000000","2092704.000000","129468.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","21.000000","13.000000","40.000000","65.000000","32.000000","0.000000","0.000000","0.000000","15.000000","18.000000","12.000000","38.000000","59.000000","28.000000","160.000000","6000.000000","0.000000","745622.000000",,,,, -"228.000000","10.065000","228.000000","10.065000","228.000000","10.065000","668.000000","0.000000",,,,,,,,,,,,"0.000000","7.500000","11.000000","0.000000","7.500000","7.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2061444.000000","0.000000","2092704.000000","129468.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","11.000000","12.000000","40.000000","36.000000","25.000000","0.000000","0.000000","0.000000","15.000000","10.000000","11.000000","38.000000","35.000000","19.000000","160.000000","6000.000000","0.000000","745642.000000",,,,, -"245.000000","10.150000","245.000000","10.150000","245.000000","10.150000","732.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","10.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2060896.000000","0.000000","2092704.000000","129468.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","12.000000","38.000000","10.000000","25.000000","0.000000","0.000000","0.000000","15.000000","8.000000","11.000000","36.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745662.000000",,,,, -"226.000000","10.560000","226.000000","10.560000","226.000000","10.560000","783.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060284.000000","0.000000","2092704.000000","129468.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745682.000000",,,,, -"215.000000","10.505000","215.000000","10.505000","215.000000","10.505000","742.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","5.000000","5.500000","5.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060172.000000","0.000000","2092704.000000","129468.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745702.000000",,,,, -"226.000000","10.555000","226.000000","10.555000","226.000000","10.555000","619.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","9.000000","0.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059312.000000","0.000000","2092704.000000","129468.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","35.000000","9.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745722.000000",,,,, -"241.000000","12.125000","241.000000","12.125000","241.000000","12.125000","544.000000","0.000000",,,,,,,,,,,,"0.000000","9.000000","12.000000","1.000000","9.000000","9.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058812.000000","0.000000","2092704.000000","129468.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"4.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","8.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745742.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","498.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058316.000000","0.000000","2092704.000000","129468.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745762.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","596.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","2.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2057376.000000","0.000000","2092704.000000","129468.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745782.000000",,,,, -"220.000000","9.530000","220.000000","9.530000","220.000000","9.530000","657.000000","0.000000",,,,,,,,,,,,"0.000000","6.500000","10.000000","1.000000","6.500000","6.500000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2056920.000000","0.000000","2092704.000000","129468.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745802.000000",,,,, -"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","625.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","3.000000","6.000000","6.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057116.000000","0.000000","2092704.000000","129468.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745822.000000",,,,, -"227.000000","9.565000","227.000000","9.565000","227.000000","9.565000","575.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","12.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057084.000000","0.000000","2092704.000000","129468.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","34.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","31.000000","8.000000","19.000000","160.000000","6000.000000","0.000000","745842.000000",,,,, -"840.000000","10.940000","840.000000","10.940000","840.000000","10.940000","695.000000","0.000000",,,,,,,,,,,,"944.000000","2276.000000","3596.000000","21.000000","2276.000000","2276.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2059604.000000","0.000000","2092704.000000","129468.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","0.000000","0.000000",,,,,,"6.000000","4.000000",,,,,,,,,,,"0.000000","14.000000","17.000000","13.000000","34.000000","62.000000","31.000000","0.000000","0.000000","0.000000","13.000000","15.000000","12.000000","28.000000","60.000000","24.000000","160.000000","6000.000000","0.000000","745862.000000",,,,, -"509.000000","9.385000","509.000000","9.385000","509.000000","9.385000","495.000000","0.000000",,,,,,,,,,,,"7.000000","170.000000","331.000000","9.000000","170.000000","170.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2060928.000000","0.000000","2092704.000000","129468.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","21.000000","12.000000","34.000000","62.000000","16.000000","0.000000","0.000000","0.000000","13.000000","19.000000","11.000000","30.000000","60.000000","16.000000","160.000000","6000.000000","0.000000","745882.000000",,,,, -"264.000000","8.235000","264.000000","8.235000","264.000000","8.235000","974.000000","0.000000",,,,,,,,,,,,"0.000000","64.000000","128.000000","2.000000","64.000000","64.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","22.000000","11.000000","34.000000","62.000000","15.000000","0.000000","0.000000","0.000000","13.000000","20.000000","10.000000","28.000000","60.000000","15.000000","160.000000","6000.000000","0.000000","745902.000000",,,,, -"218.000000","8.520000","218.000000","8.520000","218.000000","8.520000","449.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","9.000000","48.500000","48.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2061608.000000","0.000000","2092704.000000","129468.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","11.000000","31.000000","37.000000","15.000000","0.000000","0.000000","0.000000","12.000000","13.000000","10.000000","24.000000","35.000000","15.000000","160.000000","6000.000000","0.000000","745922.000000",,,,, -"232.000000","8.585000","232.000000","8.585000","232.000000","8.585000","837.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","79.000000","1.000000","40.000000","40.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060576.000000","0.000000","2092704.000000","129468.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","31.000000","12.000000","15.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","24.000000","12.000000","15.000000","160.000000","6000.000000","0.000000","745942.000000",,,,, -"261.000000","8.720000","261.000000","8.720000","261.000000","8.720000","1135.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","3.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060168.000000","0.000000","2092704.000000","129468.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","25.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","19.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745962.000000",,,,, -"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","1093.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","3.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059716.000000","0.000000","2092704.000000","129468.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745982.000000",,,,, -"223.000000","10.540000","223.000000","10.540000","223.000000","10.540000","981.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","5.000000","27.500000","27.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058392.000000","0.000000","2092704.000000","129468.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746002.000000",,,,, -"247.000000","10.655000","247.000000","10.655000","247.000000","10.655000","508.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","4.000000","44.000000","44.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058020.000000","0.000000","2092704.000000","129468.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746022.000000",,,,, -"220.000000","8.530000","220.000000","8.530000","220.000000","8.530000","624.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","6.000000","10.000000","10.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2057600.000000","0.000000","2092704.000000","129468.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746042.000000",,,,, -"240.000000","8.620000","240.000000","8.620000","240.000000","8.620000","494.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","6.000000","38.000000","38.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056600.000000","0.000000","2092704.000000","129468.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746062.000000",,,,, -"480.000000","9.750000","480.000000","9.750000","480.000000","9.750000","537.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","339.000000","5.000000","172.500000","172.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2058168.000000","0.000000","2092704.000000","129468.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746082.000000",,,,, -"691.000000","10.740000","691.000000","10.740000","691.000000","10.740000","837.000000","0.000000",,,,,,,,,,,,"17.000000","243.500000","459.000000","3.000000","243.500000","243.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057872.000000","0.000000","2092704.000000","129468.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","0.000000","0.000000",,,,,,"4.000000","5.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746102.000000",,,,, -"284.000000","8.830000","284.000000","8.830000","284.000000","8.830000","449.000000","0.000000",,,,,,,,,,,,"3.000000","91.500000","180.000000","2.000000","91.500000","91.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057300.000000","0.000000","2092704.000000","129468.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","18.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746122.000000",,,,, -"234.000000","8.595000","234.000000","8.595000","234.000000","8.595000","502.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057252.000000","0.000000","2092704.000000","129468.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746142.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","524.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","7.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056832.000000","0.000000","2092704.000000","129468.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","31.000000","17.000000","17.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","24.000000","16.000000","16.000000","160.000000","6000.000000","0.000000","746162.000000",,,,, -"245.000000","8.645000","245.000000","8.645000","245.000000","8.645000","371.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","29.000000","2.000000","14.500000","14.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056416.000000","0.000000","2092704.000000","129468.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","26.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","22.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746182.000000",,,,, -"212.000000","8.490000","212.000000","8.490000","212.000000","8.490000","713.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2055744.000000","0.000000","2092704.000000","129468.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746202.000000",,,,, -"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","807.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","6.000000","37.000000","37.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2055244.000000","0.000000","2092704.000000","129468.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746222.000000",,,,, -"237.000000","7.110000","237.000000","7.110000","237.000000","7.110000","490.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2054168.000000","0.000000","2092704.000000","129468.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746242.000000",,,,, -"219.000000","7.020000","219.000000","7.020000","219.000000","7.020000","653.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","4.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2052588.000000","0.000000","2092704.000000","129468.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746262.000000",,,,, -"272.000000","8.775000","272.000000","8.775000","272.000000","8.775000","556.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","4.000000","36.500000","36.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2052180.000000","0.000000","2092704.000000","129468.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746282.000000",,,,, -"547.000000","10.065000","547.000000","10.065000","547.000000","10.065000","521.000000","0.000000",,,,,,,,,,,,"2.000000","59.500000","116.000000","3.000000","59.500000","59.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2051480.000000","0.000000","2092704.000000","129468.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","11.000000","16.000000","21.000000","17.000000","0.000000","0.000000","0.000000","11.000000","10.000000","11.000000","15.000000","18.000000","16.000000","160.000000","6000.000000","0.000000","746302.000000",,,,, -"292.000000","8.865000","292.000000","8.865000","292.000000","8.865000","666.000000","0.000000",,,,,,,,,,,,"0.000000","92.500000","185.000000","7.000000","92.500000","92.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746322.000000",,,,, -"264.000000","7.735000","264.000000","7.735000","264.000000","7.735000","389.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","3.000000","71.000000","71.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050140.000000","0.000000","2092704.000000","129468.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746342.000000",,,,, -"227.000000","7.565000","227.000000","7.565000","227.000000","7.565000","483.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","1.000000","26.500000","26.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050032.000000","0.000000","2092704.000000","129468.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","13.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","12.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746362.000000",,,,, -"240.000000","7.625000","240.000000","7.625000","240.000000","7.625000","469.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049260.000000","0.000000","2092704.000000","129468.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","12.000000","16.000000","14.000000","21.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","18.000000","160.000000","6000.000000","0.000000","746382.000000",,,,, -"259.000000","9.710000","259.000000","9.710000","259.000000","9.710000","465.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048696.000000","0.000000","2092704.000000","129468.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","746402.000000",,,,, -"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","315.000000","0.000000",,,,,,,,,,,,"0.000000","15.500000","31.000000","4.000000","15.500000","15.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048224.000000","0.000000","2092704.000000","129468.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746422.000000",,,,, -"223.000000","9.545000","223.000000","9.545000","223.000000","9.545000","439.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049652.000000","0.000000","2092704.000000","129468.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746442.000000",,,,, -"265.000000","7.740000","265.000000","7.740000","265.000000","7.740000","371.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","7.000000","29.000000","29.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049236.000000","0.000000","2092704.000000","129468.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746462.000000",,,,, -"224.000000","7.550000","224.000000","7.550000","224.000000","7.550000","414.000000","0.000000",,,,,,,,,,,,"0.000000","16.500000","33.000000","12.000000","16.500000","16.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2047088.000000","0.000000","2092704.000000","129468.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746482.000000",,,,, -"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","725.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","13.000000","47.500000","47.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2045500.000000","0.000000","2092704.000000","129468.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746502.000000",,,,, -"584.000000","8.740000","584.000000","8.740000","584.000000","8.740000","693.000000","0.000000",,,,,,,,,,,,"6.000000","106.000000","206.000000","9.000000","106.000000","106.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045596.000000","0.000000","2092704.000000","129468.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746522.000000",,,,, -"230.000000","7.075000","230.000000","7.075000","230.000000","7.075000","739.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","6.000000","65.000000","65.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045888.000000","0.000000","2092704.000000","129468.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746542.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","667.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2046312.000000","0.000000","2092704.000000","129468.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746562.000000",,,,, -"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","886.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045872.000000","0.000000","2092704.000000","129468.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","13.000000","16.000000","160.000000","6000.000000","0.000000","746582.000000",,,,, -"246.000000","8.650000","246.000000","8.650000","246.000000","8.650000","564.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044336.000000","0.000000","2092704.000000","129468.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","746602.000000",,,,, -"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","766.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2043240.000000","0.000000","2092704.000000","129468.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746622.000000",,,,, -"275.000000","7.785000","275.000000","7.785000","275.000000","7.785000","620.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042700.000000","0.000000","2092704.000000","129468.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746642.000000",,,,, -"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","680.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042560.000000","0.000000","2092704.000000","129468.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746662.000000",,,,, -"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","754.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","5.000000","13.000000","13.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042448.000000","0.000000","2092704.000000","129468.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746682.000000",,,,, -"276.000000","7.290000","276.000000","7.290000","276.000000","7.290000","506.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","4.000000","43.000000","43.000000",,,,,,,,,,,"167772.000000","251656.000000","0.000000","0.000000","2042020.000000","0.000000","2092704.000000","129468.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746702.000000",,,,, -"587.000000","9.255000","587.000000","9.255000","587.000000","9.255000","843.000000","0.000000",,,,,,,,,,,,"32.000000","84.500000","137.000000","5.000000","84.500000","84.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2042600.000000","0.000000","2092704.000000","129468.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","11.000000","16.000000","65.000000","14.000000","0.000000","0.000000","0.000000","11.000000","13.000000","10.000000","16.000000","42.000000","13.000000","160.000000","6000.000000","0.000000","746722.000000",,,,, -"470.000000","9.205000","470.000000","9.205000","470.000000","9.205000","564.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","4.000000","154.500000","154.500000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2041640.000000","0.000000","2092704.000000","129468.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","19.000000","12.000000","16.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","16.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746742.000000",,,,, -"260.000000","8.220000","260.000000","8.220000","260.000000","8.220000","463.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","5.000000","42.000000","42.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041228.000000","0.000000","2092704.000000","129468.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","15.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","15.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746762.000000",,,,, -"276.000000","8.295000","276.000000","8.295000","276.000000","8.295000","436.000000","0.000000",,,,,,,,,,,,"0.000000","100.000000","200.000000","4.000000","100.000000","100.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039672.000000","0.000000","2092704.000000","129468.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","12.000000","13.000000","34.000000","16.000000","0.000000","0.000000","0.000000","10.000000","12.000000","11.000000","13.000000","34.000000","16.000000","160.000000","6000.000000","0.000000","746782.000000",,,,, -"593.000000","9.785000","593.000000","9.785000","593.000000","9.785000","908.000000","0.000000",,,,,,,,,,,,"0.000000","129.000000","258.000000","6.000000","129.000000","129.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2037544.000000","0.000000","2092704.000000","129468.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","14.000000","29.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","14.000000","28.000000","25.000000","160.000000","6000.000000","0.000000","746802.000000",,,,, -"411.000000","7.430000","411.000000","7.430000","411.000000","7.430000","859.000000","0.000000",,,,,,,,,,,,"0.000000","54.500000","108.000000","6.000000","54.500000","54.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2036936.000000","0.000000","2092704.000000","129468.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","17.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746822.000000",,,,, -"246.000000","6.650000","246.000000","6.650000","246.000000","6.650000","437.000000","0.000000",,,,,,,,,,,,"0.000000","85.000000","170.000000","6.000000","85.000000","85.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034024.000000","0.000000","2092704.000000","129468.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","16.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746842.000000",,,,, -"567.000000","8.160000","567.000000","8.160000","567.000000","8.160000","577.000000","0.000000",,,,,,,,,,,,"2.000000","52.500000","102.000000","4.000000","52.500000","52.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033620.000000","0.000000","2092704.000000","129468.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","17.000000","25.000000","25.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","16.000000","22.000000","22.000000","160.000000","6000.000000","0.000000","746862.000000",,,,, -"304.000000","6.925000","304.000000","6.925000","304.000000","6.925000","606.000000","0.000000",,,,,,,,,,,,"1.000000","116.500000","232.000000","8.000000","116.500000","116.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033232.000000","0.000000","2092704.000000","129468.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","14.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746882.000000",,,,, -"224.000000","6.550000","224.000000","6.550000","224.000000","6.550000","464.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2032932.000000","0.000000","2092704.000000","129468.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746902.000000",,,,, -"267.000000","6.750000","267.000000","6.750000","267.000000","6.750000","476.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034120.000000","0.000000","2092704.000000","129468.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","12.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","11.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746922.000000",,,,, -"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","481.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033572.000000","0.000000","2092704.000000","129468.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746942.000000",,,,, -"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","602.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033528.000000","0.000000","2092704.000000","129468.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746962.000000",,,,, -"258.000000","10.705000","258.000000","10.705000","258.000000","10.705000","430.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","4.000000","17.000000","17.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2031944.000000","0.000000","2092704.000000","129468.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746982.000000",,,,, -"247.000000","9.155000","247.000000","9.155000","247.000000","9.155000","424.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","5.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2031416.000000","0.000000","2092704.000000","129468.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","13.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","160.000000","6000.000000","0.000000","747002.000000",,,,, -"225.000000","9.050000","225.000000","9.050000","225.000000","9.050000","519.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2029764.000000","0.000000","2092704.000000","129468.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","0.000000","0.000000","0.000000","10.000000","9.000000","12.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747022.000000",,,,, -"277.000000","9.295000","277.000000","9.295000","277.000000","9.295000","378.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2027712.000000","0.000000","2092704.000000","129468.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747042.000000",,,,, -"252.000000","7.180000","252.000000","7.180000","252.000000","7.180000","427.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2027092.000000","0.000000","2092704.000000","129468.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747062.000000",,,,, -"222.000000","7.035000","222.000000","7.035000","222.000000","7.035000","397.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","3.000000","42.000000","42.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2029612.000000","0.000000","2092704.000000","129468.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747082.000000",,,,, -"283.000000","7.325000","283.000000","7.325000","283.000000","7.325000","562.000000","0.000000",,,,,,,,,,,,"1.000000","40.500000","80.000000","2.000000","40.500000","40.500000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2031248.000000","0.000000","2092704.000000","129468.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","747102.000000",,,,, -"207.000000","6.465000","207.000000","6.465000","207.000000","6.465000","985.000000","0.000000",,,,,,,,,,,,"0.000000","34.500000","69.000000","3.000000","34.500000","34.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2031080.000000","0.000000","2092704.000000","129468.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747122.000000",,,,, -"257.000000","6.700000","257.000000","6.700000","257.000000","6.700000","418.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","3.000000","33.000000","33.000000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030692.000000","0.000000","2092704.000000","129468.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747142.000000",,,,, -"269.000000","6.760000","269.000000","6.760000","269.000000","6.760000","461.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","3.000000","31.500000","31.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030252.000000","0.000000","2092704.000000","129468.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747162.000000",,,,, -"221.000000","6.035000","221.000000","6.035000","221.000000","6.035000","576.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","5.000000","38.000000","38.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029488.000000","0.000000","2092704.000000","129468.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747182.000000",,,,, -"215.000000","6.005000","215.000000","6.005000","215.000000","6.005000","535.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747202.000000",,,,, -"263.000000","6.230000","263.000000","6.230000","263.000000","6.230000","540.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029996.000000","0.000000","2092704.000000","129468.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747222.000000",,,,, -"216.000000","8.010000","216.000000","8.010000","216.000000","8.010000","449.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029456.000000","0.000000","2092704.000000","129468.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747242.000000",,,,, -"222.000000","8.040000","222.000000","8.040000","222.000000","8.040000","504.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","38.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2031016.000000","0.000000","2092704.000000","129468.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747262.000000",,,,, -"325.000000","8.525000","325.000000","8.525000","325.000000","8.525000","383.000000","0.000000",,,,,,,,,,,,"0.000000","67.000000","134.000000","2.000000","67.000000","67.000000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029904.000000","0.000000","2092704.000000","129468.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747282.000000",,,,, -"656.000000","8.580000","656.000000","8.580000","656.000000","8.580000","509.000000","0.000000",,,,,,,,,,,,"6.000000","160.500000","314.000000","3.000000","160.500000","160.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2029988.000000","0.000000","2092704.000000","129468.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747302.000000",,,,, -"222.000000","6.540000","222.000000","6.540000","222.000000","6.540000","427.000000","0.000000",,,,,,,,,,,,"1.000000","57.500000","113.000000","2.000000","57.500000","57.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2030240.000000","0.000000","2092704.000000","129468.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747322.000000",,,,, -"205.000000","6.455000","205.000000","6.455000","205.000000","6.455000","570.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2031584.000000","0.000000","2092704.000000","129468.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747342.000000",,,,, -"275.000000","7.290000","275.000000","7.290000","275.000000","7.290000","410.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","35.000000","54.000000","54.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2031500.000000","0.000000","2092704.000000","129468.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747362.000000",,,,, -"224.000000","7.045000","224.000000","7.045000","224.000000","7.045000","422.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2030172.000000","0.000000","2092704.000000","129468.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747382.000000",,,,, -"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","392.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","12.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747402.000000",,,,, -"277.000000","7.295000","277.000000","7.295000","277.000000","7.295000","694.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","4.000000","42.000000","42.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2028208.000000","0.000000","2092704.000000","129468.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747422.000000",,,,, -"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","423.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","5.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2024908.000000","0.000000","2092704.000000","129468.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747442.000000",,,,, -"231.000000","7.080000","231.000000","7.080000","231.000000","7.080000","503.000000","0.000000",,,,,,,,,,,,"0.000000","11.500000","23.000000","2.000000","11.500000","11.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2021248.000000","0.000000","2092704.000000","129468.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747462.000000",,,,, -"290.000000","6.355000","290.000000","6.355000","290.000000","6.355000","563.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2020788.000000","0.000000","2092704.000000","129468.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747482.000000",,,,, -"309.000000","6.445000","309.000000","6.445000","309.000000","6.445000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2019568.000000","0.000000","2092704.000000","129468.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","15.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","19.000000","15.000000","160.000000","6000.000000","0.000000","747502.000000",,,,, -"887.000000","18.665000","887.000000","18.665000","887.000000","18.665000","1100.000000","0.000000",,,,,,,,,,,,"11704.000000","12116.000000","12338.000000","32.000000","12116.000000","12116.000000",,,,,,,,,,,"461372.000000","608172.000000","0.000000","0.000000","2043504.000000","0.000000","2092704.000000","129468.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","0.000000","0.000000",,,,,,"1.000000","188.000000",,,,,,,,,,,"0.000000","11.000000","20.000000","12.000000","17.000000","64.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","17.000000","46.000000","19.000000","160.000000","6000.000000","0.000000","747522.000000",,,,, -"1057.000000","24.460000","1057.000000","24.460000","1057.000000","24.460000","858.000000","0.000000",,,,,,,,,,,,"332.000000","11614.000000","10071.000000","49.000000","11614.000000","11614.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2049828.000000","0.000000","2092704.000000","129468.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"12759.000000","65.000000",,,,,,,,,,,"0.000000","12.000000","33.000000","15.000000","21.000000","64.000000","38.000000","0.000000","0.000000","0.000000","11.000000","27.000000","13.000000","20.000000","51.000000","32.000000","160.000000","6000.000000","0.000000","747542.000000",,,,, -"1284.000000","25.525000","1284.000000","25.525000","1284.000000","25.525000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","20819.000000","21350.000000","52.000000","20819.000000","20819.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2054784.000000","0.000000","2092704.000000","129468.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"20208.000000","80.000000",,,,,,,,,,,"0.000000","13.000000","50.000000","18.000000","25.000000","75.000000","62.000000","0.000000","0.000000","0.000000","12.000000","38.000000","16.000000","22.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747562.000000",,,,, -"1222.000000","31.740000","1222.000000","31.740000","1222.000000","31.740000","1331.000000","0.000000",,,,,,,,,,,,"0.000000","20673.500000","32382.000000","52.000000","20673.500000","20673.500000",,,,,,,,,,,"1048576.000000","1090516.000000","0.000000","0.000000","2069584.000000","0.000000","2092704.000000","129468.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"8932.000000","31.000000",,,,,,,,,,,"0.000000","15.000000","56.000000","22.000000","29.000000","75.000000","64.000000","0.000000","0.000000","0.000000","13.000000","42.000000","18.000000","28.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747582.000000",,,,, -"1072.000000","42.030000","1072.000000","42.030000","1072.000000","42.030000","887.000000","0.000000",,,,,,,,,,,,"24.000000","20193.500000","25790.000000","22.000000","20193.500000","20193.500000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069968.000000","0.000000","2092704.000000","129468.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"14509.000000","63.000000",,,,,,,,,,,"0.000000","16.000000","59.000000","24.000000","49.000000","75.000000","64.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","39.000000","50.000000","46.000000","160.000000","6000.000000","0.000000","747602.000000",,,,, -"1121.000000","42.260000","1121.000000","42.260000","1121.000000","42.260000","703.000000","0.000000",,,,,,,,,,,,"1468.000000","2351.000000","3222.000000","5.000000","2351.000000","2351.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069712.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","16.000000","52.000000","26.000000","49.000000","79.000000","64.000000","0.000000","0.000000","0.000000","14.000000","42.000000","21.000000","39.000000","65.000000","46.000000","160.000000","6000.000000","0.000000","747622.000000",,,,, -"1808.000000","45.490000","1808.000000","45.490000","1808.000000","45.490000","820.000000","0.000000",,,,,,,,,,,,"845.000000","1243.000000","1626.000000","12.000000","1243.000000","1243.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069368.000000","0.000000","2092704.000000","129468.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","30.000000","51.000000","90.000000","70.000000","0.000000","0.000000","0.000000","15.000000","47.000000","25.000000","42.000000","77.000000","50.000000","160.000000","6000.000000","0.000000","747642.000000",,,,, -"2368.000000","52.620000","2368.000000","52.620000","2368.000000","52.620000","757.000000","0.000000",,,,,,,,,,,,"109.000000","519.000000","920.000000","4.000000","519.000000","519.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069384.000000","0.000000","2092704.000000","129468.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","19.000000","71.000000","36.000000","56.000000","104.000000","79.000000","0.000000","0.000000","0.000000","17.000000","65.000000","31.000000","46.000000","100.000000","71.000000","160.000000","6000.000000","0.000000","747662.000000",,,,, -"2429.000000","52.910000","2429.000000","52.910000","2429.000000","52.910000","696.000000","0.000000",,,,,,,,,,,,"49.000000","756.500000","1458.000000","9.000000","756.500000","756.500000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069288.000000","0.000000","2092704.000000","129468.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","21.000000","85.000000","41.000000","64.000000","108.000000","84.000000","0.000000","0.000000","0.000000","19.000000","81.000000","36.000000","49.000000","107.000000","81.000000","160.000000","6000.000000","0.000000","747682.000000",,,,, -"2529.000000","53.380000","2529.000000","53.380000","2529.000000","53.380000","815.000000","0.000000",,,,,,,,,,,,"6.000000","346.000000","682.000000","5.000000","346.000000","346.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069036.000000","0.000000","2092704.000000","129468.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","93.000000","47.000000","70.000000","108.000000","99.000000","0.000000","0.000000","0.000000","20.000000","90.000000","41.000000","51.000000","107.000000","92.000000","160.000000","6000.000000","0.000000","747702.000000",,,,, -"2291.000000","52.260000","2291.000000","52.260000","2291.000000","52.260000","1569.000000","0.000000",,,,,,,,,,,,"179.000000","558.000000","926.000000","13.000000","558.000000","558.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2068880.000000","0.000000","2092704.000000","129468.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","24.000000","93.000000","53.000000","78.000000","108.000000","102.000000","0.000000","0.000000","0.000000","22.000000","89.000000","47.000000","71.000000","107.000000","94.000000","160.000000","6000.000000","0.000000","747722.000000",,,,, -"2266.000000","52.645000","2266.000000","52.645000","2266.000000","52.645000","1448.000000","0.000000",,,,,,,,,,,,"0.000000","238.500000","469.000000","6.000000","238.500000","238.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068904.000000","0.000000","2092704.000000","129468.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","26.000000","94.000000","58.000000","84.000000","105.000000","102.000000","0.000000","0.000000","0.000000","24.000000","89.000000","52.000000","77.000000","103.000000","94.000000","160.000000","6000.000000","0.000000","747742.000000",,,,, -"2699.000000","54.680000","2699.000000","54.680000","2699.000000","54.680000","759.000000","0.000000",,,,,,,,,,,,"21.000000","348.500000","667.000000","8.000000","348.500000","348.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068692.000000","0.000000","2092704.000000","129468.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","28.000000","96.000000","64.000000","89.000000","108.000000","104.000000","0.000000","0.000000","0.000000","25.000000","91.000000","57.000000","85.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","747762.000000",,,,, -"2345.000000","53.015000","2345.000000","53.015000","2345.000000","53.015000","1128.000000","0.000000",,,,,,,,,,,,"1028.000000","5992.500000","10947.000000","29.000000","5992.500000","5992.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","30.000000","98.000000","71.000000","93.000000","113.000000","105.000000","0.000000","0.000000","0.000000","27.000000","92.000000","64.000000","87.000000","111.000000","103.000000","160.000000","6000.000000","0.000000","747782.000000",,,,, -"2726.000000","53.805000","2726.000000","53.805000","2726.000000","53.805000","875.000000","0.000000",,,,,,,,,,,,"267.000000","1066.000000","1858.000000","12.000000","1066.000000","1066.000000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070348.000000","0.000000","2092704.000000","129468.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","32.000000","102.000000","77.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","29.000000","96.000000","69.000000","87.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747802.000000",,,,, -"2414.000000","52.335000","2414.000000","52.335000","2414.000000","52.335000","850.000000","0.000000",,,,,,,,,,,,"0.000000","485.500000","970.000000","8.000000","485.500000","485.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","99.000000","80.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","31.000000","93.000000","72.000000","89.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747822.000000",,,,, -"2425.000000","52.390000","2425.000000","52.390000","2425.000000","52.390000","749.000000","0.000000",,,,,,,,,,,,"21.000000","587.500000","1147.000000","12.000000","587.500000","587.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2069908.000000","0.000000","2092704.000000","129468.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","36.000000","99.000000","84.000000","97.000000","120.000000","108.000000","0.000000","0.000000","0.000000","33.000000","95.000000","77.000000","92.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747842.000000",,,,, -"2267.000000","38.650000","2267.000000","38.650000","2267.000000","38.650000","924.000000","0.000000",,,,,,,,,,,,"0.000000","835.000000","1667.000000","10.000000","835.000000","835.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2069348.000000","0.000000","2092704.000000","129468.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","38.000000","94.000000","85.000000","97.000000","107.000000","108.000000","0.000000","0.000000","0.000000","35.000000","90.000000","79.000000","92.000000","106.000000","107.000000","160.000000","6000.000000","0.000000","747862.000000",,,,, -"2604.000000","40.230000","2604.000000","40.230000","2604.000000","40.230000","543.000000","0.000000",,,,,,,,,,,,"0.000000","486.500000","971.000000","7.000000","486.500000","486.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068932.000000","0.000000","2092704.000000","129468.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","39.000000","93.000000","87.000000","97.000000","104.000000","108.000000","0.000000","0.000000","0.000000","36.000000","89.000000","82.000000","93.000000","104.000000","107.000000","160.000000","6000.000000","0.000000","747882.000000",,,,, -"2655.000000","40.475000","2655.000000","40.475000","2655.000000","40.475000","919.000000","0.000000",,,,,,,,,,,,"0.000000","1322.000000","2643.000000","36.000000","1322.000000","1322.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068800.000000","0.000000","2092704.000000","129468.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","95.000000","91.000000","102.000000","113.000000","112.000000","0.000000","0.000000","0.000000","39.000000","93.000000","87.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747902.000000",,,,, -"2639.000000","37.895000","2639.000000","37.895000","2639.000000","37.895000","449.000000","0.000000",,,,,,,,,,,,"1.000000","498.000000","993.000000","7.000000","498.000000","498.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068512.000000","0.000000","2092704.000000","129468.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","44.000000","99.000000","95.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","40.000000","97.000000","90.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747922.000000",,,,, -"2473.000000","37.115000","2473.000000","37.115000","2473.000000","37.115000","940.000000","0.000000",,,,,,,,,,,,"186.000000","5576.000000","10947.000000","30.000000","5576.000000","5576.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068608.000000","0.000000","2092704.000000","129468.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","45.000000","100.000000","96.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","42.000000","98.000000","92.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747942.000000",,,,, -"2583.000000","37.635000","2583.000000","37.635000","2583.000000","37.635000","556.000000","0.000000",,,,,,,,,,,,"1.000000","255.000000","497.000000","3.000000","255.000000","255.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068496.000000","0.000000","2092704.000000","129468.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","48.000000","99.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","45.000000","97.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747962.000000",,,,, -"2270.000000","36.165000","2270.000000","36.165000","2270.000000","36.165000","770.000000","0.000000",,,,,,,,,,,,"61.000000","415.500000","763.000000","7.000000","415.500000","415.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067892.000000","0.000000","2092704.000000","129468.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","49.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","46.000000","93.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747982.000000",,,,, -"2497.000000","37.230000","2497.000000","37.230000","2497.000000","37.230000","1118.000000","0.000000",,,,,,,,,,,,"32.000000","198.500000","360.000000","5.000000","198.500000","198.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067420.000000","0.000000","2092704.000000","129468.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","51.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","48.000000","93.000000","93.000000","102.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","748002.000000",,,,, -"2008.000000","34.930000","2008.000000","34.930000","2008.000000","34.930000","1895.000000","0.000000",,,,,,,,,,,,"16.000000","136.000000","240.000000","3.000000","136.000000","136.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067244.000000","0.000000","2092704.000000","129468.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","53.000000","92.000000","97.000000","105.000000","109.000000","112.000000","0.000000","0.000000","0.000000","50.000000","85.000000","92.000000","102.000000","102.000000","110.000000","160.000000","6000.000000","0.000000","748022.000000",,,,, -"2417.000000","34.355000","2417.000000","34.355000","2417.000000","34.355000","971.000000","0.000000",,,,,,,,,,,,"582.000000","2388.000000","4178.000000","19.000000","2388.000000","2388.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2067144.000000","0.000000","2092704.000000","129468.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","55.000000","94.000000","97.000000","106.000000","115.000000","112.000000","0.000000","0.000000","0.000000","51.000000","86.000000","92.000000","103.000000","105.000000","110.000000","160.000000","6000.000000","0.000000","748042.000000",,,,, -"5654.000000","49.570000","5654.000000","49.570000","5654.000000","49.570000","879.000000","0.000000",,,,,,,,,,,,"12.000000","413.000000","805.000000","7.000000","413.000000","413.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2072016.000000","0.000000","2092704.000000","129468.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","58.000000","117.000000","101.000000","106.000000","339.000000","113.000000","0.000000","0.000000","0.000000","54.000000","105.000000","96.000000","104.000000","291.000000","111.000000","160.000000","6000.000000","0.000000","748062.000000",,,,, -"2422.000000","34.875000","2422.000000","34.875000","2422.000000","34.875000","1433.000000","0.000000",,,,,,,,,,,,"8.000000","714.000000","1416.000000","13.000000","714.000000","714.000000",,,,,,,,,,,"943716.000000","985660.000000","0.000000","0.000000","2071892.000000","0.000000","2092704.000000","129468.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","63.000000","150.000000","107.000000","107.000000","400.000000","113.000000","0.000000","0.000000","0.000000","58.000000","130.000000","100.000000","105.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748082.000000",,,,, -"2617.000000","45.290000","2617.000000","45.290000","2617.000000","45.290000","985.000000","0.000000",,,,,,,,,,,,"720.000000","2480.000000","4166.000000","17.000000","2480.000000","2480.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2072116.000000","0.000000","2092704.000000","129468.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","0.000000","0.000000",,,,,,"2.000000","72.000000",,,,,,,,,,,"0.000000","65.000000","152.000000","107.000000","108.000000","400.000000","112.000000","0.000000","0.000000","0.000000","60.000000","133.000000","100.000000","105.000000","309.000000","110.000000","160.000000","6000.000000","0.000000","748102.000000",,,,, -"4310.000000","53.250000","4310.000000","53.250000","4310.000000","53.250000","1219.000000","0.000000",,,,,,,,,,,,"324.000000","3148.500000","5945.000000","12.000000","3148.500000","3148.500000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071856.000000","0.000000","2092704.000000","129468.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","0.000000","0.000000",,,,,,"0.000000","26.000000",,,,,,,,,,,"0.000000","68.000000","154.000000","112.000000","108.000000","400.000000","113.000000","0.000000","0.000000","0.000000","62.000000","132.000000","103.000000","106.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748122.000000",,,,, -"3058.000000","47.365000","3058.000000","47.365000","3058.000000","47.365000","710.000000","0.000000",,,,,,,,,,,,"280.000000","2332.000000","4356.000000","10.000000","2332.000000","2332.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","72.000000","156.000000","118.000000","109.000000","378.000000","179.000000","0.000000","0.000000","0.000000","65.000000","124.000000","106.000000","107.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748142.000000",,,,, -"2509.000000","44.785000","2509.000000","44.785000","2509.000000","44.785000","891.000000","0.000000",,,,,,,,,,,,"180.000000","1414.500000","2644.000000","15.000000","1414.500000","1414.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","75.000000","157.000000","120.000000","111.000000","378.000000","179.000000","0.000000","0.000000","0.000000","67.000000","124.000000","107.000000","108.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748162.000000",,,,, -"2849.000000","46.385000","2849.000000","46.385000","2849.000000","46.385000","603.000000","0.000000",,,,,,,,,,,,"0.000000","88.000000","176.000000","10.000000","88.000000","88.000000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","135.000000","121.000000","111.000000","328.000000","179.000000","0.000000","0.000000","0.000000","69.000000","108.000000","107.000000","109.000000","166.000000","149.000000","160.000000","6000.000000","0.000000","748182.000000",,,,, -"2471.000000","44.605000","2471.000000","44.605000","2471.000000","44.605000","613.000000","0.000000",,,,,,,,,,,,"371.000000","2221.500000","4028.000000","14.000000","2221.500000","2221.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071524.000000","0.000000","2092704.000000","129468.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","44.000000",,,,,,,,,,,"0.000000","79.000000","106.000000","121.000000","111.000000","115.000000","179.000000","0.000000","0.000000","0.000000","71.000000","99.000000","107.000000","109.000000","115.000000","149.000000","160.000000","6000.000000","0.000000","748202.000000",,,,, -"2306.000000","39.330000","2306.000000","39.330000","2306.000000","39.330000","813.000000","0.000000",,,,,,,,,,,,"19.000000","576.000000","1120.000000","15.000000","576.000000","576.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","80.000000","99.000000","120.000000","111.000000","112.000000","179.000000","0.000000","0.000000","0.000000","73.000000","94.000000","106.000000","109.000000","111.000000","149.000000","160.000000","6000.000000","0.000000","748222.000000",,,,, -"2854.000000","41.905000","2854.000000","41.905000","2854.000000","41.905000","866.000000","0.000000",,,,,,,,,,,,"489.000000","1535.000000","2563.000000","10.000000","1535.000000","1535.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","17.000000",,,,,,,,,,,"0.000000","82.000000","93.000000","119.000000","111.000000","111.000000","179.000000","0.000000","0.000000","0.000000","74.000000","88.000000","105.000000","109.000000","108.000000","149.000000","160.000000","6000.000000","0.000000","748242.000000",,,,, -"2556.000000","40.505000","2556.000000","40.505000","2556.000000","40.505000","581.000000","0.000000",,,,,,,,,,,,"42.000000","1013.000000","1968.000000","12.000000","1013.000000","1013.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071200.000000","0.000000","2092704.000000","129468.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","15.000000",,,,,,,,,,,"0.000000","85.000000","102.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","77.000000","95.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748262.000000",,,,, -"2257.000000","45.105000","2257.000000","45.105000","2257.000000","45.105000","823.000000","0.000000",,,,,,,,,,,,"269.000000","1074.500000","1867.000000","19.000000","1074.500000","1074.500000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071196.000000","0.000000","2092704.000000","129468.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","87.000000","104.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","78.000000","97.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748282.000000",,,,, -"1956.000000","43.690000","1956.000000","43.690000","1956.000000","43.690000","909.000000","0.000000",,,,,,,,,,,,"40.000000","400.000000","727.000000","5.000000","400.000000","400.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071176.000000","0.000000","2092704.000000","129468.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","0.000000","0.000000",,,,,,"0.000000","31.000000",,,,,,,,,,,"0.000000","88.000000","103.000000","120.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","80.000000","95.000000","106.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748302.000000",,,,, -"2576.000000","46.600000","2576.000000","46.600000","2576.000000","46.600000","791.000000","0.000000",,,,,,,,,,,,"604.000000","2436.000000","4261.000000","30.000000","2436.000000","2436.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","90.000000","94.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","82.000000","86.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748322.000000",,,,, -"2453.000000","47.025000","2453.000000","47.025000","2453.000000","47.025000","808.000000","0.000000",,,,,,,,,,,,"10.000000","549.500000","1087.000000","5.000000","549.500000","549.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071364.000000","0.000000","2092704.000000","129468.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","92.000000","93.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","84.000000","84.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748342.000000",,,,, -"2445.000000","46.985000","2445.000000","46.985000","2445.000000","46.985000","1018.000000","0.000000",,,,,,,,,,,,"0.000000","505.500000","1010.000000","23.000000","505.500000","505.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071232.000000","0.000000","2092704.000000","129468.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","94.000000","96.000000","116.000000","112.000000","115.000000","179.000000","0.000000","0.000000","0.000000","85.000000","90.000000","103.000000","110.000000","112.000000","149.000000","160.000000","6000.000000","0.000000","748362.000000",,,,, -"2560.000000","47.525000","2560.000000","47.525000","2560.000000","47.525000","866.000000","0.000000",,,,,,,,,,,,"0.000000","492.500000","984.000000","19.000000","492.500000","492.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071168.000000","0.000000","2092704.000000","129468.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","96.000000","99.000000","111.000000","112.000000","112.000000","115.000000","0.000000","0.000000","0.000000","88.000000","93.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748382.000000",,,,, -"2655.000000","42.975000","2655.000000","42.975000","2655.000000","42.975000","977.000000","0.000000",,,,,,,,,,,,"995.000000","850.500000","701.000000","44.000000","850.500000","850.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071416.000000","0.000000","2092704.000000","129468.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","98.000000","102.000000","111.000000","112.000000","117.000000","117.000000","0.000000","0.000000","0.000000","89.000000","96.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748402.000000",,,,, -"3104.000000","45.085000","3104.000000","45.085000","3104.000000","45.085000","700.000000","0.000000",,,,,,,,,,,,"1551.000000","1248.500000","943.000000","3.000000","1248.500000","1248.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071496.000000","0.000000","2092704.000000","129468.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","100.000000","111.000000","108.000000","113.000000","155.000000","117.000000","0.000000","0.000000","0.000000","91.000000","105.000000","97.000000","111.000000","155.000000","115.000000","160.000000","6000.000000","0.000000","748422.000000",,,,, -"2998.000000","44.585000","2998.000000","44.585000","2998.000000","44.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","465.000000","929.000000","46.000000","465.000000","465.000000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","114.000000","103.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","93.000000","108.000000","96.000000","112.000000","155.000000","114.000000","160.000000","6000.000000","0.000000","748442.000000",,,,, -"2463.000000","41.070000","2463.000000","41.070000","2463.000000","41.070000","661.000000","0.000000",,,,,,,,,,,,"0.000000","530.500000","1059.000000","28.000000","530.500000","530.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071488.000000","0.000000","2092704.000000","129468.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","112.000000","102.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","94.000000","108.000000","96.000000","112.000000","155.000000","113.000000","160.000000","6000.000000","0.000000","748462.000000",,,,, -"2685.000000","42.110000","2685.000000","42.110000","2685.000000","42.110000","779.000000","0.000000",,,,,,,,,,,,"2.000000","341.500000","680.000000","17.000000","341.500000","341.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071904.000000","0.000000","2092704.000000","129468.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","105.000000","102.000000","114.000000","116.000000","115.000000","0.000000","0.000000","0.000000","95.000000","99.000000","96.000000","112.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","748482.000000",,,,, -"2621.000000","41.815000","2621.000000","41.815000","2621.000000","41.815000","751.000000","0.000000",,,,,,,,,,,,"6.000000","568.500000","1130.000000","26.000000","568.500000","568.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071792.000000","0.000000","2092704.000000","129468.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","102.000000","102.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","97.000000","98.000000","96.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748502.000000",,,,, -"2537.000000","39.420000","2537.000000","39.420000","2537.000000","39.420000","705.000000","0.000000",,,,,,,,,,,,"1.000000","738.000000","1474.000000","30.000000","738.000000","738.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071424.000000","0.000000","2092704.000000","129468.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","104.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","99.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748522.000000",,,,, -"2528.000000","39.375000","2528.000000","39.375000","2528.000000","39.375000","649.000000","0.000000",,,,,,,,,,,,"0.000000","503.500000","1006.000000","41.000000","503.500000","503.500000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","106.000000","102.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","96.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748542.000000",,,,, -"2579.000000","39.615000","2579.000000","39.615000","2579.000000","39.615000","639.000000","0.000000",,,,,,,,,,,,"25.000000","577.000000","1127.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748562.000000",,,,, -"2581.000000","37.625000","2581.000000","37.625000","2581.000000","37.625000","810.000000","0.000000",,,,,,,,,,,,"29.000000","7316.000000","14600.000000","63.000000","7316.000000","7316.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071388.000000","0.000000","2092704.000000","129468.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748582.000000",,,,, -"2340.000000","36.490000","2340.000000","36.490000","2340.000000","36.490000","912.000000","0.000000",,,,,,,,,,,,"725.000000","6886.000000","13027.000000","12.000000","6886.000000","6886.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","97.000000","98.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748602.000000",,,,, -"2801.000000","38.655000","2801.000000","38.655000","2801.000000","38.655000","668.000000","0.000000",,,,,,,,,,,,"129.000000","712.500000","1295.000000","10.000000","712.500000","712.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","96.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748622.000000",,,,, -"2475.000000","41.125000","2475.000000","41.125000","2475.000000","41.125000","456.000000","0.000000",,,,,,,,,,,,"941.000000","678.000000","414.000000","18.000000","678.000000","678.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070480.000000","0.000000","2092704.000000","129468.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","100.000000","104.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","94.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748642.000000",,,,, -"2359.000000","40.580000","2359.000000","40.580000","2359.000000","40.580000","1076.000000","0.000000",,,,,,,,,,,,"1582.000000","1147.000000","711.000000","7.000000","1147.000000","1147.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070120.000000","0.000000","2092704.000000","129468.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","104.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","99.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748662.000000",,,,, -"2142.000000","39.560000","2142.000000","39.560000","2142.000000","39.560000","1022.000000","0.000000",,,,,,,,,,,,"1611.000000","1347.000000","1083.000000","38.000000","1347.000000","1347.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","103.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","88.000000","97.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748682.000000",,,,, -"2311.000000","39.355000","2311.000000","39.355000","2311.000000","39.355000","1645.000000","0.000000",,,,,,,,,,,,"1601.000000","1340.000000","1079.000000","29.000000","1340.000000","1340.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069472.000000","0.000000","2092704.000000","129468.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","97.000000","103.000000","114.000000","116.000000","114.000000","0.000000","0.000000","0.000000","98.000000","85.000000","96.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748702.000000",,,,, -"1921.000000","37.520000","1921.000000","37.520000","1921.000000","37.520000","724.000000","0.000000",,,,,,,,,,,,"2948.000000","1837.000000","726.000000","9.000000","1837.000000","1837.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069256.000000","0.000000","2092704.000000","129468.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","90.000000","100.000000","114.000000","109.000000","113.000000","0.000000","0.000000","0.000000","98.000000","77.000000","93.000000","112.000000","99.000000","112.000000","160.000000","6000.000000","0.000000","748722.000000",,,,, -"2511.000000","40.295000","2511.000000","40.295000","2511.000000","40.295000","529.000000","0.000000",,,,,,,,,,,,"1831.000000","1130.500000","429.000000","16.000000","1130.500000","1130.500000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2068820.000000","0.000000","2092704.000000","129468.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","84.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748742.000000",,,,, -"2422.000000","42.880000","2422.000000","42.880000","2422.000000","42.880000","521.000000","0.000000",,,,,,,,,,,,"1787.000000","1115.500000","444.000000","51.000000","1115.500000","1115.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","108.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748762.000000",,,,, -"2283.000000","42.225000","2283.000000","42.225000","2283.000000","42.225000","760.000000","0.000000",,,,,,,,,,,,"576.000000","352.500000","128.000000","3.000000","352.500000","352.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068948.000000","0.000000","2092704.000000","129468.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","98.000000","98.000000","114.000000","105.000000","110.000000","0.000000","0.000000","0.000000","98.000000","89.000000","91.000000","112.000000","100.000000","106.000000","160.000000","6000.000000","0.000000","748782.000000",,,,, -"2151.000000","41.605000","2151.000000","41.605000","2151.000000","41.605000","719.000000","0.000000",,,,,,,,,,,,"236.000000","248.500000","261.000000","2.000000","248.500000","248.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068892.000000","0.000000","2092704.000000","129468.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","98.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","90.000000","112.000000","100.000000","105.000000","160.000000","6000.000000","0.000000","748802.000000",,,,, -"2417.000000","46.355000","2417.000000","46.355000","2417.000000","46.355000","523.000000","0.000000",,,,,,,,,,,,"382.000000","620.500000","854.000000","8.000000","620.500000","620.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068688.000000","0.000000","2092704.000000","129468.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","106.000000","91.000000","97.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","97.000000","84.000000","89.000000","112.000000","107.000000","105.000000","160.000000","6000.000000","0.000000","748822.000000",,,,, -"2886.000000","48.560000","2886.000000","48.560000","2886.000000","48.560000","848.000000","0.000000",,,,,,,,,,,,"134.000000","508.500000","878.000000","5.000000","508.500000","508.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068400.000000","0.000000","2092704.000000","129468.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","97.000000","114.000000","111.000000","110.000000","0.000000","0.000000","0.000000","97.000000","90.000000","90.000000","112.000000","108.000000","107.000000","160.000000","6000.000000","0.000000","748842.000000",,,,, -"4560.000000","56.425000","4560.000000","56.425000","4560.000000","56.425000","998.000000","0.000000",,,,,,,,,,,,"245.000000","853.500000","1459.000000","4.000000","853.500000","853.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068544.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","109.000000","130.000000","103.000000","115.000000","197.000000","116.000000","0.000000","0.000000","0.000000","99.000000","120.000000","95.000000","113.000000","189.000000","112.000000","160.000000","6000.000000","0.000000","748862.000000",,,,, -"4207.000000","47.765000","4207.000000","47.765000","4207.000000","47.765000","984.000000","0.000000",,,,,,,,,,,,"0.000000","675.000000","1349.000000","17.000000","675.000000","675.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068684.000000","0.000000","2092704.000000","129468.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","157.000000","108.000000","117.000000","200.000000","172.000000","0.000000","0.000000","0.000000","101.000000","143.000000","99.000000","115.000000","189.000000","154.000000","160.000000","6000.000000","0.000000","748882.000000",,,,, -"4612.000000","49.670000","4612.000000","49.670000","4612.000000","49.670000","2901.000000","0.000000",,,,,,,,,,,,"6.000000","650.000000","1292.000000","10.000000","650.000000","650.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068336.000000","0.000000","2092704.000000","129468.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","112.000000","183.000000","114.000000","163.000000","203.000000","186.000000","0.000000","0.000000","0.000000","102.000000","167.000000","104.000000","149.000000","196.000000","175.000000","160.000000","6000.000000","0.000000","748902.000000",,,,, -"4527.000000","49.265000","4527.000000","49.265000","4527.000000","49.265000","908.000000","0.000000",,,,,,,,,,,,"9.000000","573.000000","1135.000000","19.000000","573.000000","573.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068024.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","183.000000","120.000000","179.000000","203.000000","189.000000","0.000000","0.000000","0.000000","105.000000","166.000000","109.000000","155.000000","196.000000","178.000000","160.000000","6000.000000","0.000000","748922.000000",,,,, -"4990.000000","50.945000","4990.000000","50.945000","4990.000000","50.945000","767.000000","0.000000",,,,,,,,,,,,"236.000000","1692.500000","3147.000000","16.000000","1692.500000","1692.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068476.000000","0.000000","2092704.000000","129468.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","125.000000","180.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","175.000000","115.000000","166.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748942.000000",,,,, -"4418.000000","48.260000","4418.000000","48.260000","4418.000000","48.260000","910.000000","0.000000",,,,,,,,,,,,"61.000000","1808.000000","3555.000000","44.000000","1808.000000","1808.000000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","186.000000","130.000000","185.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","173.000000","119.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748962.000000",,,,, -"4310.000000","47.750000","4310.000000","47.750000","4310.000000","47.750000","1200.000000","0.000000",,,,,,,,,,,,"162.000000","666.500000","1170.000000","29.000000","666.500000","666.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","138.000000","186.000000","211.000000","195.000000","0.000000","0.000000","0.000000","107.000000","172.000000","126.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748982.000000",,,,, -"4985.000000","53.420000","4985.000000","53.420000","4985.000000","53.420000","916.000000","0.000000",,,,,,,,,,,,"0.000000","590.000000","1178.000000","18.000000","590.000000","590.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2068068.000000","0.000000","2092704.000000","129468.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","119.000000","188.000000","144.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","171.000000","132.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749002.000000",,,,, -"4211.000000","49.785000","4211.000000","49.785000","4211.000000","49.785000","2143.000000","0.000000",,,,,,,,,,,,"0.000000","490.000000","980.000000","27.000000","490.000000","490.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067656.000000","0.000000","2092704.000000","129468.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","189.000000","150.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","170.000000","138.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749022.000000",,,,, -"4596.000000","51.590000","4596.000000","51.590000","4596.000000","51.590000","1290.000000","0.000000",,,,,,,,,,,,"1.000000","616.500000","1231.000000","19.000000","616.500000","616.500000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067452.000000","0.000000","2092704.000000","129468.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","187.000000","156.000000","187.000000","209.000000","200.000000","0.000000","0.000000","0.000000","111.000000","174.000000","144.000000","175.000000","205.000000","190.000000","160.000000","6000.000000","0.000000","749042.000000",,,,, -"4377.000000","48.065000","4377.000000","48.065000","4377.000000","48.065000","962.000000","0.000000",,,,,,,,,,,,"0.000000","644.500000","1288.000000","25.000000","644.500000","644.500000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2067056.000000","0.000000","2092704.000000","129468.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","181.000000","161.000000","189.000000","202.000000","200.000000","0.000000","0.000000","0.000000","112.000000","165.000000","148.000000","175.000000","201.000000","190.000000","160.000000","6000.000000","0.000000","749062.000000",,,,, -"5237.000000","52.105000","5237.000000","52.105000","5237.000000","52.105000","943.000000","0.000000",,,,,,,,,,,,"2.000000","615.000000","1227.000000","21.000000","615.000000","615.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066912.000000","0.000000","2092704.000000","129468.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","123.000000","185.000000","167.000000","191.000000","213.000000","202.000000","0.000000","0.000000","0.000000","114.000000","171.000000","154.000000","177.000000","213.000000","196.000000","160.000000","6000.000000","0.000000","749082.000000",,,,, -"5077.000000","51.355000","5077.000000","51.355000","5077.000000","51.355000","786.000000","0.000000",,,,,,,,,,,,"1.000000","651.000000","1301.000000","21.000000","651.000000","651.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066876.000000","0.000000","2092704.000000","129468.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","194.000000","176.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","116.000000","183.000000","163.000000","184.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749102.000000",,,,, -"4878.000000","53.920000","4878.000000","53.920000","4878.000000","53.920000","558.000000","0.000000",,,,,,,,,,,,"1.000000","665.000000","1328.000000","23.000000","665.000000","665.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2067136.000000","0.000000","2092704.000000","129468.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","127.000000","198.000000","182.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","118.000000","190.000000","169.000000","187.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749122.000000",,,,, -"5149.000000","55.190000","5149.000000","55.190000","5149.000000","55.190000","679.000000","0.000000",,,,,,,,,,,,"6.000000","495.500000","985.000000","19.000000","495.500000","495.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069248.000000","0.000000","2092704.000000","129468.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","196.000000","188.000000","196.000000","208.000000","204.000000","0.000000","0.000000","0.000000","120.000000","189.000000","174.000000","188.000000","205.000000","203.000000","160.000000","6000.000000","0.000000","749142.000000",,,,, -"4683.000000","53.005000","4683.000000","53.005000","4683.000000","53.005000","881.000000","0.000000",,,,,,,,,,,,"5.000000","754.500000","1504.000000","66.000000","754.500000","754.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069080.000000","0.000000","2092704.000000","129468.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","193.000000","189.000000","198.000000","208.000000","208.000000","0.000000","0.000000","0.000000","122.000000","183.000000","175.000000","188.000000","200.000000","203.000000","160.000000","6000.000000","0.000000","749162.000000",,,,, -"5484.000000","59.765000","5484.000000","59.765000","5484.000000","59.765000","1039.000000","0.000000",,,,,,,,,,,,"5.000000","543.000000","1081.000000","17.000000","543.000000","543.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068884.000000","0.000000","2092704.000000","129468.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","134.000000","198.000000","191.000000","200.000000","213.000000","208.000000","0.000000","0.000000","0.000000","124.000000","190.000000","178.000000","190.000000","213.000000","205.000000","160.000000","6000.000000","0.000000","749182.000000",,,,, -"4817.000000","56.635000","4817.000000","56.635000","4817.000000","56.635000","898.000000","0.000000",,,,,,,,,,,,"2.000000","877.500000","1753.000000","31.000000","877.500000","877.500000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","201.000000","191.000000","200.000000","218.000000","209.000000","0.000000","0.000000","0.000000","127.000000","192.000000","179.000000","192.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749202.000000",,,,, -"4453.000000","54.920000","4453.000000","54.920000","4453.000000","54.920000","1616.000000","0.000000",,,,,,,,,,,,"1.000000","576.000000","1151.000000","26.000000","576.000000","576.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","138.000000","198.000000","192.000000","202.000000","218.000000","209.000000","0.000000","0.000000","0.000000","129.000000","184.000000","179.000000","193.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749222.000000",,,,, -"4907.000000","52.055000","4907.000000","52.055000","4907.000000","52.055000","1009.000000","0.000000",,,,,,,,,,,,"2.000000","632.000000","1262.000000","27.000000","632.000000","632.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068460.000000","0.000000","2092704.000000","129468.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","194.000000","192.000000","202.000000","218.000000","208.000000","0.000000","0.000000","0.000000","131.000000","178.000000","179.000000","193.000000","218.000000","205.000000","160.000000","6000.000000","0.000000","749242.000000",,,,, -"5263.000000","53.730000","5263.000000","53.730000","5263.000000","53.730000","434.000000","0.000000",,,,,,,,,,,,"2.000000","468.000000","934.000000","48.000000","468.000000","468.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068312.000000","0.000000","2092704.000000","129468.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","193.000000","193.000000","202.000000","205.000000","208.000000","0.000000","0.000000","0.000000","133.000000","178.000000","180.000000","193.000000","200.000000","205.000000","160.000000","6000.000000","0.000000","749262.000000",,,,, -"4974.000000","52.370000","4974.000000","52.370000","4974.000000","52.370000","940.000000","0.000000",,,,,,,,,,,,"4.000000","607.000000","1209.000000","22.000000","607.000000","607.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068216.000000","0.000000","2092704.000000","129468.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","145.000000","199.000000","194.000000","203.000000","216.000000","209.000000","0.000000","0.000000","0.000000","135.000000","190.000000","183.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749282.000000",,,,, -"4725.000000","52.200000","4725.000000","52.200000","4725.000000","52.200000","1142.000000","0.000000",,,,,,,,,,,,"2.000000","549.000000","1095.000000","21.000000","549.000000","549.000000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067956.000000","0.000000","2092704.000000","129468.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","147.000000","196.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","188.000000","182.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749302.000000",,,,, -"4487.000000","51.080000","4487.000000","51.080000","4487.000000","51.080000","1028.000000","0.000000",,,,,,,,,,,,"4.000000","504.500000","1004.000000","18.000000","504.500000","504.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067856.000000","0.000000","2092704.000000","129468.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","191.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","177.000000","181.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749322.000000",,,,, -"4644.000000","51.820000","4644.000000","51.820000","4644.000000","51.820000","1226.000000","0.000000",,,,,,,,,,,,"3.000000","668.500000","1334.000000","27.000000","668.500000","668.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067876.000000","0.000000","2092704.000000","129468.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","191.000000","195.000000","204.000000","210.000000","210.000000","0.000000","0.000000","0.000000","139.000000","173.000000","183.000000","200.000000","207.000000","207.000000","160.000000","6000.000000","0.000000","749342.000000",,,,, -"5158.000000","52.735000","5158.000000","52.735000","5158.000000","52.735000","972.000000","0.000000",,,,,,,,,,,,"10.000000","671.000000","1331.000000","22.000000","671.000000","671.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067952.000000","0.000000","2092704.000000","129468.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","198.000000","197.000000","205.000000","212.000000","212.000000","0.000000","0.000000","0.000000","141.000000","178.000000","185.000000","201.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","749362.000000",,,,, -"5152.000000","52.705000","5152.000000","52.705000","5152.000000","52.705000","1007.000000","0.000000",,,,,,,,,,,,"15.000000","600.000000","1184.000000","20.000000","600.000000","600.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","203.000000","197.000000","205.000000","212.000000","210.000000","0.000000","0.000000","0.000000","143.000000","188.000000","185.000000","201.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","749382.000000",,,,, -"4716.000000","50.660000","4716.000000","50.660000","4716.000000","50.660000","1169.000000","0.000000",,,,,,,,,,,,"7.000000","576.500000","1145.000000","23.000000","576.500000","576.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2068060.000000","0.000000","2092704.000000","129468.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","197.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","145.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749402.000000",,,,, -"5008.000000","51.530000","5008.000000","51.530000","5008.000000","51.530000","1149.000000","0.000000",,,,,,,,,,,,"5.000000","551.500000","1097.000000","14.000000","551.500000","551.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071144.000000","0.000000","2092704.000000","129468.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","196.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","147.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749422.000000",,,,, -"4624.000000","49.725000","4624.000000","49.725000","4624.000000","49.725000","1052.000000","0.000000",,,,,,,,,,,,"21.000000","2230.500000","4439.000000","44.000000","2230.500000","2230.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071148.000000","0.000000","2092704.000000","129468.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","193.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","149.000000","182.000000","183.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749442.000000",,,,, -"4676.000000","50.470000","4676.000000","50.470000","4676.000000","50.470000","743.000000","0.000000",,,,,,,,,,,,"20.000000","4493.000000","8964.000000","76.000000","4493.000000","4493.000000",,,,,,,,,,,"1132460.000000","1195376.000000","0.000000","0.000000","2071048.000000","0.000000","2092704.000000","129468.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","190.000000","195.000000","206.000000","219.000000","213.000000","0.000000","0.000000","0.000000","151.000000","178.000000","183.000000","203.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749462.000000",,,,, -"5090.000000","58.915000","5090.000000","58.915000","5090.000000","58.915000","1147.000000","0.000000",,,,,,,,,,,,"45.000000","651.500000","1257.000000","26.000000","651.500000","651.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","191.000000","195.000000","208.000000","219.000000","213.000000","0.000000","0.000000","0.000000","153.000000","179.000000","182.000000","205.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749482.000000",,,,, -"4654.000000","56.865000","4654.000000","56.865000","4654.000000","56.865000","1000.000000","0.000000",,,,,,,,,,,,"1523.000000","1798.500000","2072.000000","18.000000","1798.500000","1798.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","191.000000","194.000000","208.000000","219.000000","212.000000","0.000000","0.000000","0.000000","155.000000","182.000000","181.000000","205.000000","219.000000","208.000000","160.000000","6000.000000","0.000000","749502.000000",,,,, -"3573.000000","51.785000","3573.000000","51.785000","3573.000000","51.785000","1791.000000","0.000000",,,,,,,,,,,,"2660.000000","15507.000000","28354.000000","37.000000","15507.000000","15507.000000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","184.000000","192.000000","208.000000","217.000000","212.000000","0.000000","0.000000","0.000000","156.000000","168.000000","179.000000","205.000000","217.000000","208.000000","160.000000","6000.000000","0.000000","749522.000000",,,,, -"4112.000000","58.820000","4112.000000","58.820000","4112.000000","58.820000","914.000000","0.000000",,,,,,,,,,,,"15.000000","465.000000","915.000000","31.000000","465.000000","465.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","177.000000","191.000000","208.000000","205.000000","212.000000","0.000000","0.000000","0.000000","157.000000","157.000000","178.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749542.000000",,,,, -"3809.000000","57.395000","3809.000000","57.395000","3809.000000","57.395000","1231.000000","0.000000",,,,,,,,,,,,"10.000000","397.500000","784.000000","11.000000","397.500000","397.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","174.000000","190.000000","208.000000","204.000000","212.000000","0.000000","0.000000","0.000000","158.000000","144.000000","175.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749562.000000",,,,, -"4371.000000","60.040000","4371.000000","60.040000","4371.000000","60.040000","1233.000000","0.000000",,,,,,,,,,,,"3.000000","650.000000","1297.000000","38.000000","650.000000","650.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","184.000000","189.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","160.000000","154.000000","172.000000","205.000000","200.000000","207.000000","160.000000","6000.000000","0.000000","749582.000000",,,,, -"3595.000000","56.390000","3595.000000","56.390000","3595.000000","56.390000","817.000000","0.000000",,,,,,,,,,,,"5.000000","303.500000","601.000000","19.000000","303.500000","303.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071396.000000","0.000000","2092704.000000","129468.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","179.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","161.000000","146.000000","170.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749602.000000",,,,, -"4116.000000","62.840000","4116.000000","62.840000","4116.000000","62.840000","589.000000","0.000000",,,,,,,,,,,,"2.000000","356.500000","710.000000","17.000000","356.500000","356.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071356.000000","0.000000","2092704.000000","129468.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","180.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","163.000000","150.000000","169.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749622.000000",,,,, -"3382.000000","59.385000","3382.000000","59.385000","3382.000000","59.385000","655.000000","0.000000",,,,,,,,,,,,"5.000000","309.500000","614.000000","32.000000","309.500000","309.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","171.000000","185.000000","208.000000","191.000000","209.000000","0.000000","0.000000","0.000000","164.000000","138.000000","165.000000","205.000000","162.000000","205.000000","160.000000","6000.000000","0.000000","749642.000000",,,,, -"3543.000000","60.145000","3543.000000","60.145000","3543.000000","60.145000","605.000000","0.000000",,,,,,,,,,,,"7.000000","539.500000","1072.000000","27.000000","539.500000","539.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","174.000000","183.000000","208.000000","192.000000","206.000000","0.000000","0.000000","0.000000","165.000000","139.000000","162.000000","205.000000","162.000000","200.000000","160.000000","6000.000000","0.000000","749662.000000",,,,, -"3628.000000","59.045000","3628.000000","59.045000","3628.000000","59.045000","509.000000","0.000000",,,,,,,,,,,,"925.000000","2231.500000","3537.000000","36.000000","2231.500000","2231.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071276.000000","0.000000","2092704.000000","129468.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","182.000000","208.000000","202.000000","206.000000","0.000000","0.000000","0.000000","166.000000","133.000000","158.000000","205.000000","151.000000","200.000000","160.000000","6000.000000","0.000000","749682.000000",,,,, -"3429.000000","58.110000","3429.000000","58.110000","3429.000000","58.110000","657.000000","0.000000",,,,,,,,,,,,"54.000000","511.000000","967.000000","17.000000","511.000000","511.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071500.000000","0.000000","2092704.000000","129468.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","180.000000","182.000000","208.000000","202.000000","205.000000","0.000000","0.000000","0.000000","167.000000","132.000000","154.000000","205.000000","152.000000","196.000000","160.000000","6000.000000","0.000000","749702.000000",,,,, -"3430.000000","58.110000","3430.000000","58.110000","3430.000000","58.110000","626.000000","0.000000",,,,,,,,,,,,"2.000000","397.000000","792.000000","17.000000","397.000000","397.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","177.000000","180.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","131.000000","151.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749722.000000",,,,, -"3539.000000","58.625000","3539.000000","58.625000","3539.000000","58.625000","716.000000","0.000000",,,,,,,,,,,,"5.000000","305.500000","606.000000","12.000000","305.500000","305.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","174.000000","178.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","128.000000","147.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749742.000000",,,,, -"4637.000000","63.785000","4637.000000","63.785000","4637.000000","63.785000","1277.000000","0.000000",,,,,,,,,,,,"6.000000","545.000000","1084.000000","31.000000","545.000000","545.000000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","176.000000","179.000000","208.000000","212.000000","204.000000","0.000000","0.000000","0.000000","169.000000","144.000000","147.000000","205.000000","199.000000","195.000000","160.000000","6000.000000","0.000000","749762.000000",,,,, -"5071.000000","65.825000","5071.000000","65.825000","5071.000000","65.825000","848.000000","0.000000",,,,,,,,,,,,"30.000000","1264.500000","2498.000000","42.000000","1264.500000","1264.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","186.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","162.000000","147.000000","205.000000","210.000000","195.000000","160.000000","6000.000000","0.000000","749782.000000",,,,, -"4446.000000","57.890000","4446.000000","57.890000","4446.000000","57.890000","2008.000000","0.000000",,,,,,,,,,,,"5.000000","449.500000","894.000000","21.000000","449.500000","449.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2071172.000000","0.000000","2092704.000000","129468.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","177.000000","146.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749802.000000",,,,, -"4419.000000","57.760000","4419.000000","57.760000","4419.000000","57.760000","646.000000","0.000000",,,,,,,,,,,,"3.000000","730.500000","1457.000000","30.000000","730.500000","730.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070804.000000","0.000000","2092704.000000","129468.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","181.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","173.000000","148.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749822.000000",,,,, -"4423.000000","57.780000","4423.000000","57.780000","4423.000000","57.780000","1051.000000","0.000000",,,,,,,,,,,,"5983.000000","4288.500000","2592.000000","11.000000","4288.500000","4288.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070584.000000","0.000000","2092704.000000","129468.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","191.000000","181.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","169.000000","171.000000","150.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749842.000000",,,,, -"4272.000000","56.575000","4272.000000","56.575000","4272.000000","56.575000","1508.000000","0.000000",,,,,,,,,,,,"3918.000000","4704.500000","5490.000000","12.000000","4704.500000","4704.500000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","182.000000","180.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","168.000000","165.000000","151.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749862.000000",,,,, -"4565.000000","57.945000","4565.000000","57.945000","4565.000000","57.945000","753.000000","0.000000",,,,,,,,,,,,"1649.000000","5228.000000","8806.000000","36.000000","5228.000000","5228.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071056.000000","0.000000","2092704.000000","129468.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","179.000000","180.000000","208.000000","206.000000","202.000000","0.000000","0.000000","0.000000","169.000000","166.000000","151.000000","205.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","749882.000000",,,,, -"3685.000000","53.810000","3685.000000","53.810000","3685.000000","53.810000","1607.000000","0.000000",,,,,,,,,,,,"4372.000000","7706.000000","11040.000000","23.000000","7706.000000","7706.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2070864.000000","0.000000","2092704.000000","129468.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","181.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","168.000000","155.000000","151.000000","205.000000","179.000000","184.000000","160.000000","6000.000000","0.000000","749902.000000",,,,, -"3936.000000","55.995000","3936.000000","55.995000","3936.000000","55.995000","1110.000000","0.000000",,,,,,,,,,,,"631.000000","3126.500000","5621.000000","30.000000","3126.500000","3126.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070924.000000","0.000000","2092704.000000","129468.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","180.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","167.000000","152.000000","151.000000","205.000000","175.000000","184.000000","160.000000","6000.000000","0.000000","749922.000000",,,,, -"4106.000000","56.795000","4106.000000","56.795000","4106.000000","56.795000","731.000000","0.000000",,,,,,,,,,,,"6712.000000","10478.500000","14244.000000","22.000000","10478.500000","10478.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070904.000000","0.000000","2092704.000000","129468.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","187.000000","171.000000","180.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","167.000000","149.000000","153.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749942.000000",,,,, -"3257.000000","52.805000","3257.000000","52.805000","3257.000000","52.805000","599.000000","0.000000",,,,,,,,,,,,"12746.000000","8306.500000","3866.000000","14.000000","8306.500000","8306.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","150.000000","176.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","166.000000","139.000000","151.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749962.000000",,,,, -"2970.000000","52.955000","2970.000000","52.955000","2970.000000","52.955000","819.000000","0.000000",,,,,,,,,,,,"12855.000000","10446.500000","8037.000000","17.000000","10446.500000","10446.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","184.000000","142.000000","174.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","165.000000","133.000000","151.000000","203.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749982.000000",,,,, -"3689.000000","56.330000","3689.000000","56.330000","3689.000000","56.330000","875.000000","0.000000",,,,,,,,,,,,"10992.000000","9034.000000","7076.000000","17.000000","9034.000000","9034.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","134.000000","171.000000","206.000000","177.000000","202.000000","0.000000","0.000000","0.000000","163.000000","122.000000","151.000000","201.000000","162.000000","187.000000","160.000000","6000.000000","0.000000","750002.000000",,,,, -"4569.000000","60.465000","4569.000000","60.465000","4569.000000","60.465000","1130.000000","0.000000",,,,,,,,,,,,"44.000000","7173.500000","14302.000000","30.000000","7173.500000","7173.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","183.000000","156.000000","172.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","163.000000","140.000000","153.000000","201.000000","173.000000","187.000000","160.000000","6000.000000","0.000000","750022.000000",,,,, -"4555.000000","61.900000","4555.000000","61.900000","4555.000000","61.900000","1350.000000","0.000000",,,,,,,,,,,,"493.000000","2970.500000","5444.000000","20.000000","2970.500000","2970.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070700.000000","0.000000","2092704.000000","129468.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","173.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","162.000000","154.000000","156.000000","201.000000","174.000000","187.000000","160.000000","6000.000000","0.000000","750042.000000",,,,, -"4588.000000","62.055000","4588.000000","62.055000","4588.000000","62.055000","1390.000000","0.000000",,,,,,,,,,,,"545.000000","7811.000000","15075.000000","23.000000","7811.000000","7811.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070744.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","173.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","171.000000","156.000000","201.000000","184.000000","184.000000","160.000000","6000.000000","0.000000","750062.000000",,,,, -"4749.000000","62.815000","4749.000000","62.815000","4749.000000","62.815000","1013.000000","0.000000",,,,,,,,,,,,"486.000000","14987.500000","29488.000000","36.000000","14987.500000","14987.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071120.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","172.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","173.000000","155.000000","200.000000","184.000000","182.000000","160.000000","6000.000000","0.000000","750082.000000",,,,, -"4548.000000","61.870000","4548.000000","61.870000","4548.000000","61.870000","949.000000","0.000000",,,,,,,,,,,,"2061.000000","8930.000000","15797.000000","37.000000","8930.000000","8930.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070816.000000","0.000000","2092704.000000","129468.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","171.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","161.000000","176.000000","156.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750102.000000",,,,, -"3011.000000","54.645000","3011.000000","54.645000","3011.000000","54.645000","1760.000000","0.000000",,,,,,,,,,,,"20331.000000","10637.500000","942.000000","5.000000","10637.500000","10637.500000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070796.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","168.000000","167.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","160.000000","155.000000","153.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750122.000000",,,,, -"3525.000000","57.060000","3525.000000","57.060000","3525.000000","57.060000","1146.000000","0.000000",,,,,,,,,,,,"10774.000000","8118.000000","5461.000000","17.000000","8118.000000","8118.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2071236.000000","0.000000","2092704.000000","129468.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","151.000000","164.000000","206.000000","209.000000","196.000000","0.000000","0.000000","0.000000","159.000000","141.000000","149.000000","200.000000","207.000000","181.000000","160.000000","6000.000000","0.000000","750142.000000",,,,, -"3642.000000","55.610000","3642.000000","55.610000","3642.000000","55.610000","1129.000000","0.000000",,,,,,,,,,,,"10114.000000","8836.500000","7559.000000","23.000000","8836.500000","8836.500000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071088.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","138.000000","163.000000","206.000000","173.000000","196.000000","0.000000","0.000000","0.000000","158.000000","126.000000","148.000000","199.000000","151.000000","181.000000","160.000000","6000.000000","0.000000","750162.000000",,,,, -"3089.000000","53.010000","3089.000000","53.010000","3089.000000","53.010000","822.000000","0.000000",,,,,,,,,,,,"15789.000000","8326.000000","862.000000","3.000000","8326.000000","8326.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2070824.000000","0.000000","2092704.000000","129468.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","160.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","156.000000","128.000000","145.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750182.000000",,,,, -"3215.000000","53.605000","3215.000000","53.605000","3215.000000","53.605000","1415.000000","0.000000",,,,,,,,,,,,"17195.000000","8894.000000","592.000000","3.000000","8894.000000","8894.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071004.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","141.000000","157.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","155.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750202.000000",,,,, -"3409.000000","54.515000","3409.000000","54.515000","3409.000000","54.515000","1688.000000","0.000000",,,,,,,,,,,,"16558.000000","12636.500000","8715.000000","20.000000","12636.500000","12636.500000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070992.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","140.000000","155.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","154.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750222.000000",,,,, -"4152.000000","58.005000","4152.000000","58.005000","4152.000000","58.005000","900.000000","0.000000",,,,,,,,,,,,"9129.000000","7963.000000","6797.000000","11.000000","7963.000000","7963.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","146.000000","155.000000","204.000000","173.000000","194.000000","0.000000","0.000000","0.000000","153.000000","133.000000","142.000000","194.000000","166.000000","179.000000","160.000000","6000.000000","0.000000","750242.000000",,,,, -"5214.000000","63.000000","5214.000000","63.000000","5214.000000","63.000000","1238.000000","0.000000",,,,,,,,,,,,"14.000000","440.000000","865.000000","6.000000","440.000000","440.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070748.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","165.000000","160.000000","204.000000","211.000000","196.000000","0.000000","0.000000","0.000000","153.000000","155.000000","147.000000","194.000000","209.000000","182.000000","160.000000","6000.000000","0.000000","750262.000000",,,,, -"5252.000000","66.675000","5252.000000","66.675000","5252.000000","66.675000","1677.000000","0.000000",,,,,,,,,,,,"5.000000","335.500000","666.000000","19.000000","335.500000","335.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070828.000000","0.000000","2092704.000000","129468.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","185.000000","164.000000","204.000000","212.000000","205.000000","0.000000","0.000000","0.000000","154.000000","178.000000","152.000000","196.000000","210.000000","198.000000","160.000000","6000.000000","0.000000","750282.000000",,,,, -"5041.000000","65.685000","5041.000000","65.685000","5041.000000","65.685000","1004.000000","0.000000",,,,,,,,,,,,"17.000000","427.500000","838.000000","13.000000","427.500000","427.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","202.000000","168.000000","204.000000","212.000000","206.000000","0.000000","0.000000","0.000000","154.000000","194.000000","156.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750302.000000",,,,, -"4679.000000","63.985000","4679.000000","63.985000","4679.000000","63.985000","1045.000000","0.000000",,,,,,,,,,,,"8.000000","561.000000","1113.000000","23.000000","561.000000","561.000000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070712.000000","0.000000","2092704.000000","129468.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","199.000000","168.000000","204.000000","212.000000","207.000000","0.000000","0.000000","0.000000","154.000000","191.000000","157.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750322.000000",,,,, -"5233.000000","63.585000","5233.000000","63.585000","5233.000000","63.585000","929.000000","0.000000",,,,,,,,,,,,"27.000000","565.500000","1103.000000","15.000000","565.500000","565.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","197.000000","169.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","154.000000","186.000000","158.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750342.000000",,,,, -"1309.000000","45.145000","1309.000000","45.145000","1309.000000","45.145000","615.000000","0.000000",,,,,,,,,,,,"19203.000000","9812.000000","420.000000","3.000000","9812.000000","9812.000000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","151.000000","161.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","151.000000","142.000000","150.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750362.000000",,,,, -"1164.000000","44.465000","1164.000000","44.465000","1164.000000","44.465000","628.000000","0.000000",,,,,,,,,,,,"14997.000000","8677.500000","2358.000000","5.000000","8677.500000","8677.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070600.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","108.000000","153.000000","204.000000","214.000000","207.000000","0.000000","0.000000","0.000000","148.000000","101.000000","143.000000","196.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750382.000000",,,,, -"1236.000000","46.805000","1236.000000","46.805000","1236.000000","46.805000","1178.000000","0.000000",,,,,,,,,,,,"17245.000000","13168.500000","9091.000000","17.000000","13168.500000","13168.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","62.000000","144.000000","204.000000","201.000000","207.000000","0.000000","0.000000","0.000000","146.000000","58.000000","135.000000","196.000000","198.000000","206.000000","160.000000","6000.000000","0.000000","750402.000000",,,,, -"933.000000","45.380000","933.000000","45.380000","933.000000","45.380000","641.000000","0.000000",,,,,,,,,,,,"7575.000000","6296.500000","4979.000000","10.000000","6296.500000","6296.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070876.000000","0.000000","2092704.000000","129468.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","38.000000",,,,,,,,,,,"0.000000","162.000000","46.000000","137.000000","204.000000","68.000000","207.000000","0.000000","0.000000","0.000000","143.000000","42.000000","128.000000","196.000000","67.000000","206.000000","160.000000","6000.000000","0.000000","750422.000000",,,,, -"591.000000","43.770000","591.000000","43.770000","591.000000","43.770000","599.000000","0.000000",,,,,,,,,,,,"23649.000000","22438.500000","21225.000000","13.000000","22438.500000","22438.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070980.000000","0.000000","2092704.000000","129468.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","159.000000","39.000000","130.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","140.000000","36.000000","122.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750442.000000",,,,, -"588.000000","43.255000","588.000000","43.255000","588.000000","43.255000","688.000000","0.000000",,,,,,,,,,,,"19488.000000","20747.000000","22006.000000","16.000000","20747.000000","20747.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071128.000000","0.000000","2092704.000000","129468.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","32.000000","123.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","138.000000","29.000000","115.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750462.000000",,,,, -"648.000000","43.540000","648.000000","43.540000","648.000000","43.540000","706.000000","0.000000",,,,,,,,,,,,"6846.000000","7643.000000","8411.000000","18.000000","7643.000000","7643.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","151.000000","24.000000","114.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","134.000000","23.000000","107.000000","191.000000","30.000000","206.000000","160.000000","6000.000000","0.000000","750482.000000",,,,, -"665.000000","43.620000","665.000000","43.620000","665.000000","43.620000","1234.000000","0.000000",,,,,,,,,,,,"467.000000","440.000000","367.000000","2.000000","440.000000","440.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071224.000000","0.000000","2092704.000000","129468.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"32.000000","14.000000",,,,,,,,,,,"0.000000","148.000000","24.000000","107.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","132.000000","23.000000","101.000000","191.000000","31.000000","206.000000","160.000000","6000.000000","0.000000","750502.000000",,,,, -"1108.000000","45.700000","1108.000000","45.700000","1108.000000","45.700000","589.000000","0.000000",,,,,,,,,,,,"94.000000","6456.000000","10816.000000","39.000000","6456.000000","6456.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","0.000000","0.000000",,,,,,"1982.000000","18.000000",,,,,,,,,,,"0.000000","146.000000","34.000000","102.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","130.000000","31.000000","96.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750522.000000",,,,, -"802.000000","44.265000","802.000000","44.265000","802.000000","44.265000","355.000000","0.000000",,,,,,,,,,,,"41.000000","319.000000","594.000000","3.000000","319.000000","319.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071320.000000","0.000000","2092704.000000","129468.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","142.000000","34.000000","91.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","127.000000","32.000000","87.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750542.000000",,,,, -"564.000000","43.145000","564.000000","43.145000","564.000000","43.145000","348.000000","0.000000",,,,,,,,,,,,"18.000000","146.500000","275.000000","2.000000","146.500000","146.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071080.000000","0.000000","2092704.000000","129468.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","34.000000","81.000000","202.000000","77.000000","206.000000","0.000000","0.000000","0.000000","125.000000","32.000000","76.000000","191.000000","71.000000","198.000000","160.000000","6000.000000","0.000000","750562.000000",,,,, -"429.000000","43.010000","429.000000","43.010000","429.000000","43.010000","433.000000","0.000000",,,,,,,,,,,,"5.000000","98.000000","190.000000","2.000000","98.000000","98.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2071152.000000","0.000000","2092704.000000","129468.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","22.000000","69.000000","202.000000","49.000000","201.000000","0.000000","0.000000","0.000000","123.000000","22.000000","65.000000","191.000000","49.000000","197.000000","160.000000","6000.000000","0.000000","750582.000000",,,,, -"238.000000","42.110000","238.000000","42.110000","238.000000","42.110000","329.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070976.000000","0.000000","2092704.000000","129468.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","15.000000","54.000000","201.000000","32.000000","190.000000","0.000000","0.000000","0.000000","119.000000","15.000000","51.000000","191.000000","32.000000","173.000000","160.000000","6000.000000","0.000000","750602.000000",,,,, -"223.000000","42.045000","223.000000","42.045000","223.000000","42.045000","458.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","3.000000","23.500000","23.500000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070412.000000","0.000000","2092704.000000","129468.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","11.000000","43.000000","201.000000","26.000000","84.000000","0.000000","0.000000","0.000000","117.000000","11.000000","40.000000","191.000000","25.000000","82.000000","160.000000","6000.000000","0.000000","750622.000000",,,,, -"284.000000","43.330000","284.000000","43.330000","284.000000","43.330000","436.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","3.000000","53.000000","53.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2070144.000000","0.000000","2092704.000000","129468.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","9.000000","32.000000","201.000000","13.000000","53.000000","0.000000","0.000000","0.000000","115.000000","9.000000","30.000000","191.000000","13.000000","52.000000","160.000000","6000.000000","0.000000","750642.000000",,,,, -"222.000000","43.040000","222.000000","43.040000","222.000000","43.040000","369.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069736.000000","0.000000","2092704.000000","129468.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","9.000000","26.000000","201.000000","13.000000","51.000000","0.000000","0.000000","0.000000","110.000000","9.000000","24.000000","188.000000","13.000000","49.000000","160.000000","6000.000000","0.000000","750662.000000",,,,, -"277.000000","43.295000","277.000000","43.295000","277.000000","43.295000","746.000000","0.000000",,,,,,,,,,,,"0.000000","53.500000","107.000000","8.000000","53.500000","53.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069708.000000","0.000000","2092704.000000","129468.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","10.000000","24.000000","199.000000","13.000000","49.000000","0.000000","0.000000","0.000000","107.000000","9.000000","22.000000","187.000000","13.000000","46.000000","160.000000","6000.000000","0.000000","750682.000000",,,,, -"595.000000","39.790000","595.000000","39.790000","595.000000","39.790000","1514.000000","0.000000",,,,,,,,,,,,"10.000000","205.000000","394.000000","1.000000","205.000000","205.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069492.000000","0.000000","2092704.000000","129468.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","113.000000","14.000000","22.000000","199.000000","53.000000","49.000000","0.000000","0.000000","0.000000","104.000000","13.000000","21.000000","187.000000","51.000000","40.000000","160.000000","6000.000000","0.000000","750702.000000",,,,, -"969.000000","41.550000","969.000000","41.550000","969.000000","41.550000","1975.000000","0.000000",,,,,,,,,,,,"72.000000","500.000000","918.000000","3.000000","500.000000","500.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069996.000000","0.000000","2092704.000000","129468.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"5.000000","5.000000",,,,,,,,,,,"0.000000","109.000000","25.000000","21.000000","199.000000","67.000000","49.000000","0.000000","0.000000","0.000000","100.000000","22.000000","20.000000","187.000000","58.000000","40.000000","160.000000","6000.000000","0.000000","750722.000000",,,,, -"1237.000000","42.805000","1237.000000","42.805000","1237.000000","42.805000","2987.000000","0.000000",,,,,,,,,,,,"3.000000","4383.500000","8711.000000","26.000000","4383.500000","4383.500000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"36.000000","16.000000",,,,,,,,,,,"0.000000","106.000000","38.000000","23.000000","198.000000","67.000000","53.000000","0.000000","0.000000","0.000000","97.000000","32.000000","21.000000","182.000000","63.000000","49.000000","160.000000","6000.000000","0.000000","750742.000000",,,,, -"672.000000","33.650000","672.000000","33.650000","672.000000","33.650000","1739.000000","0.000000",,,,,,,,,,,,"2.000000","350.500000","699.000000","7.000000","350.500000","350.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","41.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","95.000000","35.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750762.000000",,,,, -"519.000000","32.935000","519.000000","32.935000","519.000000","32.935000","1160.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","220.000000","3.000000","111.000000","111.000000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","99.000000","35.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","91.000000","31.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750782.000000",,,,, -"600.000000","33.315000","600.000000","33.315000","600.000000","33.315000","1210.000000","0.000000",,,,,,,,,,,,"0.000000","135.500000","271.000000","5.000000","135.500000","135.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070648.000000","0.000000","2092704.000000","129468.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","23.000000","23.000000","198.000000","65.000000","61.000000","0.000000","0.000000","0.000000","89.000000","22.000000","21.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750802.000000",,,,, -"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","884.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2070216.000000","0.000000","2092704.000000","129468.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","18.000000","21.000000","198.000000","36.000000","53.000000","0.000000","0.000000","0.000000","86.000000","17.000000","19.000000","182.000000","36.000000","49.000000","160.000000","6000.000000","0.000000","750822.000000",,,,, -"261.000000","27.725000","261.000000","27.725000","261.000000","27.725000","598.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","4.000000","61.000000","61.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069852.000000","0.000000","2092704.000000","129468.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","14.000000","20.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","82.000000","13.000000","18.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750842.000000",,,,, -"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","548.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","2.000000","24.500000","24.500000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069396.000000","0.000000","2092704.000000","129468.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","11.000000","19.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","80.000000","11.000000","17.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750862.000000",,,,, -"259.000000","24.210000","259.000000","24.210000","259.000000","24.210000","524.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068572.000000","0.000000","2092704.000000","129468.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","84.000000","9.000000","18.000000","196.000000","13.000000","53.000000","0.000000","0.000000","0.000000","78.000000","9.000000","17.000000","181.000000","13.000000","36.000000","160.000000","6000.000000","0.000000","750882.000000",,,,, -"207.000000","23.965000","207.000000","23.965000","207.000000","23.965000","587.000000","0.000000",,,,,,,,,,,,"0.000000","25.500000","51.000000","2.000000","25.500000","25.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","9.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","75.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750902.000000",,,,, -"215.000000","24.005000","215.000000","24.005000","215.000000","24.005000","730.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","8.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","71.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750922.000000",,,,, -"248.000000","22.160000","248.000000","22.160000","248.000000","22.160000","859.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","1.000000","46.000000","46.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","8.000000","18.000000","194.000000","13.000000","53.000000","0.000000","0.000000","0.000000","68.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750942.000000",,,,, -"232.000000","22.085000","232.000000","22.085000","232.000000","22.085000","530.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","1.000000","12.500000","12.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067284.000000","0.000000","2092704.000000","129468.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","9.000000","18.000000","192.000000","13.000000","53.000000","0.000000","0.000000","0.000000","64.000000","8.000000","16.000000","179.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750962.000000",,,,, -"225.000000","22.050000","225.000000","22.050000","225.000000","22.050000","1024.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2066820.000000","0.000000","2092704.000000","129468.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","65.000000","9.000000","18.000000","190.000000","13.000000","53.000000","0.000000","0.000000","0.000000","60.000000","8.000000","16.000000","173.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750982.000000",,,,, -"361.000000","19.690000","361.000000","19.690000","361.000000","19.690000","716.000000","0.000000",,,,,,,,,,,,"0.000000","152.000000","302.000000","3.000000","152.000000","152.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2066352.000000","0.000000","2092704.000000","129468.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","10.000000","17.000000","187.000000","17.000000","40.000000","0.000000","0.000000","0.000000","57.000000","9.000000","16.000000","168.000000","16.000000","36.000000","160.000000","6000.000000","0.000000","751002.000000",,,,, -"653.000000","21.065000","653.000000","21.065000","653.000000","21.065000","1031.000000","0.000000",,,,,,,,,,,,"0.000000","168.500000","332.000000","1.000000","168.500000","168.500000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065944.000000","0.000000","2092704.000000","129468.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","58.000000","16.000000","16.000000","187.000000","50.000000","40.000000","0.000000","0.000000","0.000000","54.000000","14.000000","15.000000","168.000000","37.000000","36.000000","160.000000","6000.000000","0.000000","751022.000000",,,,, -"492.000000","20.305000","492.000000","20.305000","492.000000","20.305000","758.000000","0.000000",,,,,,,,,,,,"2.000000","156.000000","308.000000","4.000000","156.000000","156.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065588.000000","0.000000","2092704.000000","129468.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","56.000000","21.000000","14.000000","187.000000","50.000000","34.000000","0.000000","0.000000","0.000000","52.000000","18.000000","14.000000","168.000000","41.000000","34.000000","160.000000","6000.000000","0.000000","751042.000000",,,,, -"641.000000","18.005000","641.000000","18.005000","641.000000","18.005000","837.000000","0.000000",,,,,,,,,,,,"13.000000","135.500000","258.000000","8.000000","135.500000","135.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2065076.000000","0.000000","2092704.000000","129468.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","22.000000","13.000000","187.000000","50.000000","31.000000","0.000000","0.000000","0.000000","50.000000","20.000000","13.000000","168.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","751062.000000",,,,, -"396.000000","16.855000","396.000000","16.855000","396.000000","16.855000","745.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","4.000000","76.500000","76.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064648.000000","0.000000","2092704.000000","129468.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","20.000000","14.000000","187.000000","42.000000","29.000000","0.000000","0.000000","0.000000","47.000000","19.000000","13.000000","168.000000","41.000000","29.000000","160.000000","6000.000000","0.000000","751082.000000",,,,, -"280.000000","16.310000","280.000000","16.310000","280.000000","16.310000","723.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","2.000000","46.000000","46.000000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064008.000000","0.000000","2092704.000000","129468.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","48.000000","17.000000","13.000000","187.000000","35.000000","29.000000","0.000000","0.000000","0.000000","45.000000","16.000000","12.000000","168.000000","35.000000","29.000000","160.000000","6000.000000","0.000000","751102.000000",,,,, -"224.000000","15.045000","224.000000","15.045000","224.000000","15.045000","570.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","3.000000","35.500000","35.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2064004.000000","0.000000","2092704.000000","129468.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","45.000000","13.000000","13.000000","187.000000","29.000000","29.000000","0.000000","0.000000","0.000000","42.000000","13.000000","12.000000","168.000000","29.000000","28.000000","160.000000","6000.000000","0.000000","751122.000000",,,,, -"211.000000","14.990000","211.000000","14.990000","211.000000","14.990000","622.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","2.000000","19.500000","19.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2063532.000000","0.000000","2092704.000000","129468.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","9.000000","12.000000","187.000000","16.000000","29.000000","0.000000","0.000000","0.000000","39.000000","8.000000","12.000000","168.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","751142.000000",,,,, -"226.000000","15.055000","226.000000","15.055000","226.000000","15.055000","462.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","1.000000","27.500000","27.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2062560.000000","0.000000","2092704.000000","129468.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","12.000000","84.000000","9.000000","29.000000","0.000000","0.000000","0.000000","35.000000","8.000000","12.000000","82.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751162.000000",,,,, -"224.000000","14.045000","224.000000","14.045000","224.000000","14.045000","595.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","0.000000","21.000000","21.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061992.000000","0.000000","2092704.000000","129468.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","8.000000","12.000000","67.000000","9.000000","29.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","63.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751182.000000",,,,, -"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","475.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061744.000000","0.000000","2092704.000000","129468.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","12.000000","53.000000","9.000000","29.000000","0.000000","0.000000","0.000000","26.000000","8.000000","12.000000","51.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751202.000000",,,,, -"213.000000","13.995000","213.000000","13.995000","213.000000","13.995000","636.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","4.000000","22.500000","22.500000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061344.000000","0.000000","2092704.000000","129468.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","12.000000","51.000000","9.000000","29.000000","0.000000","0.000000","0.000000","23.000000","8.000000","12.000000","46.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751222.000000",,,,, -"232.000000","12.085000","232.000000","12.085000","232.000000","12.085000","496.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2060732.000000","0.000000","2092704.000000","129468.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","8.000000","12.000000","49.000000","9.000000","29.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751242.000000",,,,, -"234.000000","12.095000","234.000000","12.095000","234.000000","12.095000","432.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","1.000000","15.000000","15.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2059256.000000","0.000000","2092704.000000","129468.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","12.000000","45.000000","9.000000","29.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751262.000000",,,,, -"320.000000","12.500000","320.000000","12.500000","320.000000","12.500000","784.000000","0.000000",,,,,,,,,,,,"7.000000","105.500000","203.000000","2.000000","105.500000","105.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2058700.000000","0.000000","2092704.000000","129468.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","9.000000","12.000000","44.000000","17.000000","29.000000","0.000000","0.000000","0.000000","17.000000","9.000000","12.000000","37.000000","16.000000","28.000000","160.000000","6000.000000","0.000000","751282.000000",,,,, -"528.000000","12.475000","528.000000","12.475000","528.000000","12.475000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","169.000000","333.000000","3.000000","169.000000","169.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058192.000000","0.000000","2092704.000000","129468.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","14.000000","13.000000","40.000000","33.000000","29.000000","0.000000","0.000000","0.000000","16.000000","13.000000","12.000000","36.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","751302.000000",,,,, -"1131.000000","15.310000","1131.000000","15.310000","1131.000000","15.310000","1405.000000","0.000000",,,,,,,,,,,,"5.000000","527.000000","1013.000000","4.000000","527.000000","527.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058484.000000","0.000000","2092704.000000","129468.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","0.000000","0.000000",,,,,,"23.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","26.000000","14.000000","38.000000","73.000000","35.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","36.000000","63.000000","32.000000","160.000000","6000.000000","0.000000","751322.000000",,,,, -"942.000000","14.420000","942.000000","14.420000","942.000000","14.420000","1286.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4767.000000","56.000000","2918.000000","2918.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2060328.000000","0.000000","2092704.000000","129468.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","0.000000","0.000000",,,,,,"1046.000000","16.000000",,,,,,,,,,,"0.000000","18.000000","37.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","17.000000","33.000000","15.000000","37.000000","73.000000","35.000000","160.000000","6000.000000","0.000000","751342.000000",,,,, -"471.000000","12.210000","471.000000","12.210000","471.000000","12.210000","1366.000000","0.000000",,,,,,,,,,,,"5.000000","182.500000","358.000000","4.000000","182.500000","182.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060600.000000","0.000000","2092704.000000","129468.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","36.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","31.000000","15.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751362.000000",,,,, -"262.000000","11.230000","262.000000","11.230000","262.000000","11.230000","578.000000","0.000000",,,,,,,,,,,,"0.000000","41.500000","83.000000","6.000000","41.500000","41.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060760.000000","0.000000","2092704.000000","129468.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","24.000000","15.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","21.000000","14.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751382.000000",,,,, -"224.000000","11.045000","224.000000","11.045000","224.000000","11.045000","870.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","2.000000","39.000000","39.000000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060868.000000","0.000000","2092704.000000","129468.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","15.000000","40.000000","30.000000","35.000000","0.000000","0.000000","0.000000","16.000000","12.000000","14.000000","37.000000","29.000000","32.000000","160.000000","6000.000000","0.000000","751402.000000",,,,, -"254.000000","10.690000","254.000000","10.690000","254.000000","10.690000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","56.500000","113.000000","1.000000","56.500000","56.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2060280.000000","0.000000","2092704.000000","129468.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","10.000000","15.000000","36.000000","13.000000","35.000000","0.000000","0.000000","0.000000","15.000000","9.000000","14.000000","35.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751422.000000",,,,, -"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","2.000000","33.000000","33.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059824.000000","0.000000","2092704.000000","129468.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751442.000000",,,,, -"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","747.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","7.000000","11.000000","11.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059988.000000","0.000000","2092704.000000","129468.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751462.000000",,,,, -"266.000000","13.750000","266.000000","13.750000","266.000000","13.750000","484.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059428.000000","0.000000","2092704.000000","129468.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751482.000000",,,,, -"222.000000","13.545000","222.000000","13.545000","222.000000","13.545000","715.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","5.000000","24.000000","24.000000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059264.000000","0.000000","2092704.000000","129468.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751502.000000",,,,, -"218.000000","13.525000","218.000000","13.525000","218.000000","13.525000","891.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","4.000000","26.500000","26.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059588.000000","0.000000","2092704.000000","129468.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751522.000000",,,,, -"260.000000","11.715000","260.000000","11.715000","260.000000","11.715000","891.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059012.000000","0.000000","2092704.000000","129468.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751542.000000",,,,, -"587.000000","13.255000","587.000000","13.255000","587.000000","13.255000","1003.000000","0.000000",,,,,,,,,,,,"18.000000","310.000000","590.000000","1.000000","310.000000","310.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2058464.000000","0.000000","2092704.000000","129468.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","0.000000","0.000000",,,,,,"5.000000","6.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","35.000000","40.000000","40.000000","0.000000","0.000000","0.000000","14.000000","12.000000","15.000000","32.000000","32.000000","32.000000","160.000000","6000.000000","0.000000","751562.000000",,,,, -"600.000000","13.315000","600.000000","13.315000","600.000000","13.315000","679.000000","0.000000",,,,,,,,,,,,"146.000000","253.000000","356.000000","3.000000","253.000000","253.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059204.000000","0.000000","2092704.000000","129468.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","18.000000","36.000000","61.000000","43.000000","0.000000","0.000000","0.000000","15.000000","18.000000","16.000000","34.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751582.000000",,,,, -"253.000000","9.680000","253.000000","9.680000","253.000000","9.680000","957.000000","0.000000",,,,,,,,,,,,"32.000000","81.000000","130.000000","2.000000","81.000000","81.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058552.000000","0.000000","2092704.000000","129468.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","17.000000","35.000000","61.000000","43.000000","0.000000","0.000000","0.000000","14.000000","18.000000","15.000000","32.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751602.000000",,,,, -"209.000000","9.475000","209.000000","9.475000","209.000000","9.475000","1053.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","17.000000","31.500000","31.500000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058992.000000","0.000000","2092704.000000","129468.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","15.000000","14.000000","35.000000","61.000000","30.000000","0.000000","0.000000","0.000000","14.000000","13.000000","13.000000","32.000000","50.000000","29.000000","160.000000","6000.000000","0.000000","751622.000000",,,,, -"223.000000","9.540000","223.000000","9.540000","223.000000","9.540000","668.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2059140.000000","0.000000","2092704.000000","129468.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","31.000000","14.000000","18.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","29.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","751642.000000",,,,, -"253.000000","9.685000","253.000000","9.685000","253.000000","9.685000","926.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","3.000000","54.000000","54.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058528.000000","0.000000","2092704.000000","129468.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","29.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751662.000000",,,,, -"212.000000","9.990000","212.000000","9.990000","212.000000","9.990000","784.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058204.000000","0.000000","2092704.000000","129468.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751682.000000",,,,, -"269.000000","10.260000","269.000000","10.260000","269.000000","10.260000","1187.000000","0.000000",,,,,,,,,,,,"673.000000","369.000000","62.000000","5.000000","369.000000","369.000000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058060.000000","0.000000","2092704.000000","129468.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","28.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751702.000000",,,,, -"252.000000","10.180000","252.000000","10.180000","252.000000","10.180000","1539.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","3.000000","76.500000","76.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2057700.000000","0.000000","2092704.000000","129468.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751722.000000",,,,, -"230.000000","10.575000","230.000000","10.575000","230.000000","10.575000","737.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","3.000000","13.500000","13.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059248.000000","0.000000","2092704.000000","129468.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751742.000000",,,,, -"240.000000","10.620000","240.000000","10.620000","240.000000","10.620000","878.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059584.000000","0.000000","2092704.000000","129468.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751762.000000",,,,, -"571.000000","12.175000","571.000000","12.175000","571.000000","12.175000","1123.000000","0.000000",,,,,,,,,,,,"2.000000","147.000000","291.000000","2.000000","147.000000","147.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059724.000000","0.000000","2092704.000000","129468.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","15.000000","160.000000","6000.000000","0.000000","751782.000000",,,,, -"295.000000","9.380000","295.000000","9.380000","295.000000","9.380000","944.000000","0.000000",,,,,,,,,,,,"0.000000","96.000000","192.000000","4.000000","96.000000","96.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2058560.000000","0.000000","2092704.000000","129468.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751802.000000",,,,, -"232.000000","9.085000","232.000000","9.085000","232.000000","9.085000","817.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","3.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2057276.000000","0.000000","2092704.000000","129468.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751822.000000",,,,, -"260.000000","9.215000","260.000000","9.215000","260.000000","9.215000","1306.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","1.000000","40.500000","40.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2056828.000000","0.000000","2092704.000000","129468.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","29.000000","18.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","28.000000","17.000000","17.000000","160.000000","6000.000000","0.000000","751842.000000",,,,, -"219.000000","9.020000","219.000000","9.020000","219.000000","9.020000","1055.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056272.000000","0.000000","2092704.000000","129468.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751862.000000",,,,, -"279.000000","9.305000","279.000000","9.305000","279.000000","9.305000","665.000000","0.000000",,,,,,,,,,,,"0.000000","48.000000","96.000000","4.000000","48.000000","48.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056972.000000","0.000000","2092704.000000","129468.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751883.000000",,,,, -"188.000000","8.880000","188.000000","8.880000","188.000000","8.880000","1030.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","3.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056552.000000","0.000000","2092704.000000","129468.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751902.000000",,,,, -"227.000000","10.060000","227.000000","10.060000","227.000000","10.060000","850.000000","0.000000",,,,,,,,,,,,"1.000000","38.000000","74.000000","1.000000","38.000000","38.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2053924.000000","0.000000","2092704.000000","129468.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","22.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751922.000000",,,,, -"213.000000","9.995000","213.000000","9.995000","213.000000","9.995000","880.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2052348.000000","0.000000","2092704.000000","129468.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","22.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","18.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751942.000000",,,,, -"275.000000","10.285000","275.000000","10.285000","275.000000","10.285000","573.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","1.000000","58.000000","58.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2051868.000000","0.000000","2092704.000000","129468.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","17.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751962.000000",,,,, -"286.000000","9.340000","286.000000","9.340000","286.000000","9.340000","609.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","2.000000","71.000000","71.000000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2048948.000000","0.000000","2092704.000000","129468.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","17.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","751982.000000",,,,, -"631.000000","10.960000","631.000000","10.960000","631.000000","10.960000","834.000000","0.000000",,,,,,,,,,,,"1002.000000","688.500000","369.000000","2.000000","688.500000","688.500000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2049356.000000","0.000000","2092704.000000","129468.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","46.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","17.000000","44.000000","14.000000","160.000000","6000.000000","0.000000","752002.000000",,,,, -"675.000000","11.665000","675.000000","11.665000","675.000000","11.665000","771.000000","0.000000",,,,,,,,,,,,"1553.000000","819.000000","83.000000","1.000000","819.000000","819.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049884.000000","0.000000","2092704.000000","129468.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","20.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752022.000000",,,,, -"226.000000","11.560000","226.000000","11.560000","226.000000","11.560000","679.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","3.000000","71.500000","71.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2051604.000000","0.000000","2092704.000000","129468.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752042.000000",,,,, -"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","570.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","1.000000","31.000000","31.000000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2049544.000000","0.000000","2092704.000000","129468.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","22.000000","38.000000","21.000000","0.000000","0.000000","0.000000","12.000000","14.000000","12.000000","21.000000","37.000000","21.000000","160.000000","6000.000000","0.000000","752062.000000",,,,, -"271.000000","11.770000","271.000000","11.770000","271.000000","11.770000","574.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","3.000000","64.500000","64.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2048892.000000","0.000000","2092704.000000","129468.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","17.000000","160.000000","6000.000000","0.000000","752082.000000",,,,, -"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","517.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752102.000000",,,,, -"240.000000","11.625000","240.000000","11.625000","240.000000","11.625000","646.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2047320.000000","0.000000","2092704.000000","129468.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752122.000000",,,,, -"287.000000","11.840000","287.000000","11.840000","287.000000","11.840000","607.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","3.000000","66.500000","66.500000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046732.000000","0.000000","2092704.000000","129468.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752142.000000",,,,, -"227.000000","10.560000","227.000000","10.560000","227.000000","10.560000","611.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","2.000000","12.500000","12.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2045920.000000","0.000000","2092704.000000","129468.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752162.000000",,,,, -"246.000000","10.650000","246.000000","10.650000","246.000000","10.650000","505.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2043404.000000","0.000000","2092704.000000","129468.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752182.000000",,,,, -"411.000000","11.425000","411.000000","11.425000","411.000000","11.425000","786.000000","0.000000",,,,,,,,,,,,"6.000000","129.500000","253.000000","2.000000","129.500000","129.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2042844.000000","0.000000","2092704.000000","129468.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","11.000000","18.000000","15.000000","15.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","17.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752202.000000",,,,, -"720.000000","13.375000","720.000000","13.375000","720.000000","13.375000","583.000000","0.000000",,,,,,,,,,,,"0.000000","161.500000","323.000000","4.000000","161.500000","161.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2043112.000000","0.000000","2092704.000000","129468.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","13.000000","18.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","16.000000","12.000000","17.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752222.000000",,,,, -"280.000000","11.310000","280.000000","11.310000","280.000000","11.310000","466.000000","0.000000",,,,,,,,,,,,"0.000000","91.500000","182.000000","4.000000","91.500000","91.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2042328.000000","0.000000","2092704.000000","129468.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","17.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","17.000000","13.000000","15.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752242.000000",,,,, -"794.000000","13.725000","794.000000","13.725000","794.000000","13.725000","1116.000000","0.000000",,,,,,,,,,,,"425.000000","432.000000","438.000000","2.000000","432.000000","432.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2041820.000000","0.000000","2092704.000000","129468.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","14.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","22.000000","14.000000","16.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752262.000000",,,,, -"426.000000","10.000000","426.000000","10.000000","426.000000","10.000000","656.000000","0.000000",,,,,,,,,,,,"0.000000","87.000000","173.000000","5.000000","87.000000","87.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2041608.000000","0.000000","2092704.000000","129468.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","15.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","14.000000","17.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752282.000000",,,,, -"593.000000","10.785000","593.000000","10.785000","593.000000","10.785000","657.000000","0.000000",,,,,,,,,,,,"3.000000","174.500000","345.000000","2.000000","174.500000","174.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042416.000000","0.000000","2092704.000000","129468.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","24.000000","15.000000","19.000000","64.000000","32.000000","0.000000","0.000000","0.000000","12.000000","22.000000","14.000000","18.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752302.000000",,,,, -"299.000000","9.400000","299.000000","9.400000","299.000000","9.400000","804.000000","0.000000",,,,,,,,,,,,"1.000000","98.000000","195.000000","33.000000","98.000000","98.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042184.000000","0.000000","2092704.000000","129468.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","16.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752322.000000",,,,, -"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","1173.000000","0.000000",,,,,,,,,,,,"0.000000","47.000000","94.000000","7.000000","47.000000","47.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044708.000000","0.000000","2092704.000000","129468.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","14.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752342.000000",,,,, -"209.000000","8.475000","209.000000","8.475000","209.000000","8.475000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","4.000000","22.000000","22.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2046268.000000","0.000000","2092704.000000","129468.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","14.000000","19.000000","16.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752362.000000",,,,, -"250.000000","8.670000","250.000000","8.670000","250.000000","8.670000","1249.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","7.000000","58.000000","58.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045732.000000","0.000000","2092704.000000","129468.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752382.000000",,,,, -"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","1036.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","4.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2043984.000000","0.000000","2092704.000000","129468.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752402.000000",,,,, -"216.000000","8.510000","216.000000","8.510000","216.000000","8.510000","732.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041524.000000","0.000000","2092704.000000","129468.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752422.000000",,,,, -"263.000000","8.730000","263.000000","8.730000","263.000000","8.730000","1040.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","3.000000","61.500000","61.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041052.000000","0.000000","2092704.000000","129468.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752442.000000",,,,, -"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","744.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","1.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040036.000000","0.000000","2092704.000000","129468.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","18.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","17.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752462.000000",,,,, -"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","763.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040792.000000","0.000000","2092704.000000","129468.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","14.000000","16.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752482.000000",,,,, -"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","1153.000000","0.000000",,,,,,,,,,,,"0.000000","75.500000","151.000000","2.000000","75.500000","75.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040232.000000","0.000000","2092704.000000","129468.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","15.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752502.000000",,,,, -"201.000000","7.940000","201.000000","7.940000","201.000000","7.940000","1652.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2040180.000000","0.000000","2092704.000000","129468.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","12.000000","16.000000","15.000000","17.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","16.000000","160.000000","6000.000000","0.000000","752522.000000",,,,, -"221.000000","8.030000","221.000000","8.030000","221.000000","8.030000","1098.000000","0.000000",,,,,,,,,,,,"1.000000","43.500000","86.000000","3.000000","43.500000","43.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041620.000000","0.000000","2092704.000000","129468.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","15.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752542.000000",,,,, -"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","1440.000000","0.000000",,,,,,,,,,,,"9.000000","59.500000","109.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041056.000000","0.000000","2092704.000000","129468.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752562.000000",,,,, -"236.000000","8.100000","236.000000","8.100000","236.000000","8.100000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039892.000000","0.000000","2092704.000000","129468.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752582.000000",,,,, -"215.000000","8.005000","215.000000","8.005000","215.000000","8.005000","1457.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","1.000000","33.500000","33.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038840.000000","0.000000","2092704.000000","129468.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","752602.000000",,,,, -"246.000000","8.150000","246.000000","8.150000","246.000000","8.150000","1579.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","1.000000","43.000000","43.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038300.000000","0.000000","2092704.000000","129468.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","752622.000000",,,,, -"236.000000","7.605000","236.000000","7.605000","236.000000","7.605000","698.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037436.000000","0.000000","2092704.000000","129468.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752642.000000",,,,, -"213.000000","7.495000","213.000000","7.495000","213.000000","7.495000","780.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","0.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037276.000000","0.000000","2092704.000000","129468.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752662.000000",,,,, -"268.000000","7.755000","268.000000","7.755000","268.000000","7.755000","638.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2036856.000000","0.000000","2092704.000000","129468.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752682.000000",,,,, -"223.000000","6.545000","223.000000","6.545000","223.000000","6.545000","599.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2035764.000000","0.000000","2092704.000000","129468.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752702.000000",,,,, -"583.000000","8.235000","583.000000","8.235000","583.000000","8.235000","1262.000000","0.000000",,,,,,,,,,,,"5.000000","125.000000","245.000000","2.000000","125.000000","125.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2038484.000000","0.000000","2092704.000000","129468.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","8.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","752722.000000",,,,, -"337.000000","7.080000","337.000000","7.080000","337.000000","7.080000","1013.000000","0.000000",,,,,,,,,,,,"1.000000","214.500000","426.000000","4.000000","214.500000","214.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034456.000000","0.000000","2092704.000000","129468.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752742.000000",,,,, -"260.000000","8.215000","260.000000","8.215000","260.000000","8.215000","1219.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","2.000000","45.000000","45.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2034216.000000","0.000000","2092704.000000","129468.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752762.000000",,,,, -"207.000000","7.970000","207.000000","7.970000","207.000000","7.970000","1035.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","4.000000","25.000000","25.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032580.000000","0.000000","2092704.000000","129468.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752782.000000",,,,, -"265.000000","8.240000","265.000000","8.240000","265.000000","8.240000","1161.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","1.000000","61.000000","61.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032272.000000","0.000000","2092704.000000","129468.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752802.000000",,,,, -"206.000000","9.465000","206.000000","9.465000","206.000000","9.465000","1395.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","2.000000","35.500000","35.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031756.000000","0.000000","2092704.000000","129468.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752822.000000",,,,, -"195.000000","9.410000","195.000000","9.410000","195.000000","9.410000","1131.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031192.000000","0.000000","2092704.000000","129468.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752842.000000",,,,, -"258.000000","9.705000","258.000000","9.705000","258.000000","9.705000","1164.000000","0.000000",,,,,,,,,,,,"0.000000","60.500000","121.000000","1.000000","60.500000","60.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031332.000000","0.000000","2092704.000000","129468.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752862.000000",,,,, -"197.000000","7.420000","197.000000","7.420000","197.000000","7.420000","1772.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","3.000000","30.000000","30.000000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2030748.000000","0.000000","2092704.000000","129468.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752882.000000",,,,, -"200.000000","7.435000","200.000000","7.435000","200.000000","7.435000","1621.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","0.000000","8.500000","8.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2029136.000000","0.000000","2092704.000000","129468.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752902.000000",,,,, -"255.000000","7.695000","255.000000","7.695000","255.000000","7.695000","1707.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","2.000000","71.500000","71.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2028672.000000","0.000000","2092704.000000","129468.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752922.000000",,,,, -"382.000000","8.290000","382.000000","8.290000","382.000000","8.290000","1483.000000","0.000000",,,,,,,,,,,,"1393.000000","1458.500000","1522.000000","4.000000","1458.500000","1458.500000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2026888.000000","0.000000","2092704.000000","129468.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","14.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","17.000000","14.000000","160.000000","6000.000000","0.000000","752942.000000",,,,, -"801.000000","17.260000","801.000000","17.260000","801.000000","17.260000","1638.000000","0.000000",,,,,,,,,,,,"12530.000000","12847.500000","13163.000000","16.000000","12847.500000","12847.500000",,,,,,,,,,,"356512.000000","566228.000000","0.000000","0.000000","2042860.000000","0.000000","2092704.000000","129468.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","17.000000","59.000000","18.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","53.000000","17.000000","160.000000","6000.000000","0.000000","752962.000000",,,,, -"665.000000","18.120000","665.000000","18.120000","665.000000","18.120000","1883.000000","0.000000",,,,,,,,,,,,"1055.000000","887.500000","465.000000","3.000000","887.500000","887.500000",,,,,,,,,,,"419428.000000","629144.000000","0.000000","0.000000","2043312.000000","0.000000","2092704.000000","129468.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"7.000000","248.000000",,,,,,,,,,,"0.000000","12.000000","25.000000","13.000000","18.000000","59.000000","25.000000","0.000000","0.000000","0.000000","11.000000","22.000000","12.000000","17.000000","53.000000","21.000000","160.000000","6000.000000","0.000000","752982.000000",,,,, -"594.000000","21.285000","594.000000","21.285000","594.000000","21.285000","1239.000000","0.000000",,,,,,,,,,,,"709.000000","1585.000000","902.000000","5.000000","1585.000000","1585.000000",,,,,,,,,,,"440400.000000","775944.000000","0.000000","0.000000","2044032.000000","0.000000","2092704.000000","129468.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"1515.000000","43.000000",,,,,,,,,,,"0.000000","12.000000","30.000000","14.000000","20.000000","59.000000","31.000000","0.000000","0.000000","0.000000","11.000000","25.000000","13.000000","18.000000","53.000000","28.000000","160.000000","6000.000000","0.000000","753002.000000",,,,, -"1248.000000","24.360000","1248.000000","24.360000","1248.000000","24.360000","2625.000000","0.000000",,,,,,,,,,,,"0.000000","20814.000000","21156.000000","78.000000","20814.000000","20814.000000",,,,,,,,,,,"650116.000000","775944.000000","0.000000","0.000000","2053436.000000","0.000000","2092704.000000","129468.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"20399.000000","72.000000",,,,,,,,,,,"0.000000","13.000000","41.000000","18.000000","25.000000","75.000000","54.000000","0.000000","0.000000","0.000000","12.000000","30.000000","15.000000","21.000000","51.000000","43.000000","160.000000","6000.000000","0.000000","753022.000000",,,,, -"1164.000000","30.965000","1164.000000","30.965000","1164.000000","30.965000","2201.000000","0.000000",,,,,,,,,,,,"0.000000","19665.500000","23179.000000","66.000000","19665.500000","19665.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067944.000000","0.000000","2092704.000000","129468.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"16094.000000","58.000000",,,,,,,,,,,"0.000000","15.000000","52.000000","20.000000","31.000000","75.000000","68.000000","0.000000","0.000000","0.000000","13.000000","35.000000","16.000000","28.000000","51.000000","44.000000","160.000000","6000.000000","0.000000","753042.000000",,,,, -"1131.000000","41.810000","1131.000000","41.810000","1131.000000","41.810000","1844.000000","0.000000",,,,,,,,,,,,"7.000000","24063.500000","38208.000000","35.000000","24063.500000","24063.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2071392.000000","0.000000","2092704.000000","129468.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"9871.000000","41.000000",,,,,,,,,,,"0.000000","16.000000","66.000000","25.000000","45.000000","75.000000","69.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","32.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","753062.000000",,,,, -"682.000000","39.700000","682.000000","39.700000","682.000000","39.700000","1590.000000","0.000000",,,,,,,,,,,,"681.000000","8960.500000","8687.000000","15.000000","8960.500000","8960.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072044.000000","0.000000","2092704.000000","129468.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"8517.000000","36.000000",,,,,,,,,,,"0.000000","16.000000","54.000000","26.000000","45.000000","70.000000","69.000000","0.000000","0.000000","0.000000","14.000000","38.000000","20.000000","35.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","753082.000000",,,,, -"1467.000000","43.390000","1467.000000","43.390000","1467.000000","43.390000","2267.000000","0.000000",,,,,,,,,,,,"123.000000","17364.500000","26118.000000","65.000000","17364.500000","17364.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072184.000000","0.000000","2092704.000000","129468.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","0.000000","0.000000",,,,,,"8454.000000","34.000000",,,,,,,,,,,"0.000000","17.000000","50.000000","29.000000","53.000000","70.000000","69.000000","0.000000","0.000000","0.000000","15.000000","39.000000","22.000000","40.000000","59.000000","47.000000","160.000000","6000.000000","0.000000","753102.000000",,,,, -"966.000000","46.035000","966.000000","46.035000","966.000000","46.035000","1909.000000","0.000000",,,,,,,,,,,,"6.000000","3669.000000","7329.000000","17.000000","3669.000000","3669.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","46.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","39.000000","25.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753122.000000",,,,, -"403.000000","43.385000","403.000000","43.385000","403.000000","43.385000","2033.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","4.000000","66.000000","66.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071580.000000","0.000000","2092704.000000","129468.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","41.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","35.000000","26.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753142.000000",,,,, -"266.000000","42.745000","266.000000","42.745000","266.000000","42.745000","2295.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","0.000000","31.500000","31.500000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","28.000000","33.000000","54.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","25.000000","26.000000","40.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753162.000000",,,,, -"449.000000","44.105000","449.000000","44.105000","449.000000","44.105000","2345.000000","0.000000",,,,,,,,,,,,"0.000000","72.500000","145.000000","4.000000","72.500000","72.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2071108.000000","0.000000","2092704.000000","129468.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","15.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","13.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753182.000000",,,,, -"223.000000","43.040000","223.000000","43.040000","223.000000","43.040000","2358.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070724.000000","0.000000","2092704.000000","129468.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753202.000000",,,,, -"231.000000","43.080000","231.000000","43.080000","231.000000","43.080000","2191.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","4.000000","33.500000","33.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070296.000000","0.000000","2092704.000000","129468.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753222.000000",,,,, -"229.000000","43.570000","229.000000","43.570000","229.000000","43.570000","1664.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069796.000000","0.000000","2092704.000000","129468.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","33.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","26.000000","40.000000","9.000000","52.000000","160.000000","6000.000000","0.000000","753242.000000",,,,, -"248.000000","43.660000","248.000000","43.660000","248.000000","43.660000","948.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","2.000000","31.500000","31.500000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069308.000000","0.000000","2092704.000000","129468.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","31.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","25.000000","40.000000","9.000000","51.000000","160.000000","6000.000000","0.000000","753262.000000",,,,, -"535.000000","45.010000","535.000000","45.010000","535.000000","45.010000","1478.000000","0.000000",,,,,,,,,,,,"0.000000","95.000000","190.000000","3.000000","95.000000","95.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2068920.000000","0.000000","2092704.000000","129468.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","31.000000","54.000000","42.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","24.000000","40.000000","30.000000","51.000000","160.000000","6000.000000","0.000000","753282.000000",,,,, -"766.000000","38.595000","766.000000","38.595000","766.000000","38.595000","1335.000000","0.000000",,,,,,,,,,,,"4.000000","198.000000","392.000000","3.000000","198.000000","198.000000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","21.000000","31.000000","54.000000","48.000000","70.000000","0.000000","0.000000","0.000000","15.000000","19.000000","25.000000","40.000000","43.000000","51.000000","160.000000","6000.000000","0.000000","753302.000000",,,,, -"882.000000","39.140000","882.000000","39.140000","882.000000","39.140000","1178.000000","0.000000",,,,,,,,,,,,"46.000000","258.500000","471.000000","7.000000","258.500000","258.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068796.000000","0.000000","2092704.000000","129468.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","29.000000","29.000000","59.000000","60.000000","68.000000","0.000000","0.000000","0.000000","16.000000","24.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753322.000000",,,,, -"676.000000","38.175000","676.000000","38.175000","676.000000","38.175000","1302.000000","0.000000",,,,,,,,,,,,"0.000000","87.500000","174.000000","5.000000","87.500000","87.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068128.000000","0.000000","2092704.000000","129468.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","32.000000","27.000000","59.000000","60.000000","64.000000","0.000000","0.000000","0.000000","16.000000","28.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753342.000000",,,,, -"876.000000","29.120000","876.000000","29.120000","876.000000","29.120000","1505.000000","0.000000",,,,,,,,,,,,"2163.000000","1493.000000","772.000000","3.000000","1493.000000","1493.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067748.000000","0.000000","2092704.000000","129468.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","0.000000","0.000000",,,,,,"35.000000","15.000000",,,,,,,,,,,"0.000000","20.000000","34.000000","25.000000","59.000000","60.000000","60.000000","0.000000","0.000000","0.000000","17.000000","30.000000","22.000000","43.000000","48.000000","48.000000","160.000000","6000.000000","0.000000","753362.000000",,,,, -"1000.000000","29.700000","1000.000000","29.700000","1000.000000","29.700000","1341.000000","0.000000",,,,,,,,,,,,"7.000000","4211.000000","8409.000000","26.000000","4211.000000","4211.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067396.000000","0.000000","2092704.000000","129468.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","20.000000","37.000000","26.000000","60.000000","67.000000","64.000000","0.000000","0.000000","0.000000","17.000000","34.000000","22.000000","43.000000","53.000000","52.000000","160.000000","6000.000000","0.000000","753382.000000",,,,, -"760.000000","28.570000","760.000000","28.570000","760.000000","28.570000","1798.000000","0.000000",,,,,,,,,,,,"3.000000","432.000000","859.000000","4.000000","432.000000","432.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067096.000000","0.000000","2092704.000000","129468.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","21.000000","39.000000","24.000000","60.000000","73.000000","60.000000","0.000000","0.000000","0.000000","18.000000","34.000000","22.000000","44.000000","65.000000","51.000000","160.000000","6000.000000","0.000000","753402.000000",,,,, -"532.000000","24.495000","532.000000","24.495000","532.000000","24.495000","1234.000000","0.000000",,,,,,,,,,,,"0.000000","118.000000","236.000000","5.000000","118.000000","118.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066516.000000","0.000000","2092704.000000","129468.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","31.000000","22.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","18.000000","28.000000","20.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753422.000000",,,,, -"740.000000","25.475000","740.000000","25.475000","740.000000","25.475000","1076.000000","0.000000",,,,,,,,,,,,"0.000000","146.000000","291.000000","2.000000","146.000000","146.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066052.000000","0.000000","2092704.000000","129468.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","28.000000","23.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","19.000000","26.000000","21.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753442.000000",,,,, -"235.000000","23.095000","235.000000","23.095000","235.000000","23.095000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","70.500000","140.000000","3.000000","70.500000","70.500000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2065436.000000","0.000000","2092704.000000","129468.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","20.000000","23.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","19.000000","19.000000","21.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753462.000000",,,,, -"216.000000","20.510000","216.000000","20.510000","216.000000","20.510000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","80.000000","2.000000","40.000000","40.000000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064708.000000","0.000000","2092704.000000","129468.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","16.000000","22.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","18.000000","15.000000","20.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753482.000000",,,,, -"231.000000","20.580000","231.000000","20.580000","231.000000","20.580000","1179.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064316.000000","0.000000","2092704.000000","129468.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","19.000000","8.000000","20.000000","44.000000","10.000000","43.000000","160.000000","6000.000000","0.000000","753502.000000",,,,, -"219.000000","20.520000","219.000000","20.520000","219.000000","20.520000","1510.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2063692.000000","0.000000","2092704.000000","129468.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753522.000000",,,,, -"214.000000","19.500000","214.000000","19.500000","214.000000","19.500000","1223.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","3.000000","42.500000","42.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062896.000000","0.000000","2092704.000000","129468.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753542.000000",,,,, -"541.000000","21.035000","541.000000","21.035000","541.000000","21.035000","949.000000","0.000000",,,,,,,,,,,,"6.000000","209.500000","407.000000","1.000000","209.500000","209.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062588.000000","0.000000","2092704.000000","129468.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","11.000000","23.000000","60.000000","26.000000","48.000000","0.000000","0.000000","0.000000","19.000000","10.000000","20.000000","44.000000","19.000000","43.000000","160.000000","6000.000000","0.000000","753562.000000",,,,, -"674.000000","21.665000","674.000000","21.665000","674.000000","21.665000","1381.000000","0.000000",,,,,,,,,,,,"1.000000","138.000000","275.000000","2.000000","138.000000","138.000000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2061872.000000","0.000000","2092704.000000","129468.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","17.000000","23.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","16.000000","21.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753582.000000",,,,, -"499.000000","19.840000","499.000000","19.840000","499.000000","19.840000","1229.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","344.000000","4.000000","172.500000","172.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060988.000000","0.000000","2092704.000000","129468.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","22.000000","22.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","20.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753602.000000",,,,, -"535.000000","20.010000","535.000000","20.010000","535.000000","20.010000","1016.000000","0.000000",,,,,,,,,,,,"0.000000","108.000000","216.000000","12.000000","108.000000","108.000000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060288.000000","0.000000","2092704.000000","129468.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","23.000000","22.000000","60.000000","40.000000","44.000000","0.000000","0.000000","0.000000","19.000000","21.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753622.000000",,,,, -"641.000000","20.505000","641.000000","20.505000","641.000000","20.505000","1413.000000","0.000000",,,,,,,,,,,,"0.000000","277.500000","549.000000","3.000000","277.500000","277.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2059488.000000","0.000000","2092704.000000","129468.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","23.000000","21.000000","21.000000","60.000000","47.000000","47.000000","0.000000","0.000000","0.000000","19.000000","19.000000","19.000000","44.000000","45.000000","45.000000","160.000000","6000.000000","0.000000","753642.000000",,,,, -"727.000000","18.915000","727.000000","18.915000","727.000000","18.915000","1570.000000","0.000000",,,,,,,,,,,,"0.000000","150.000000","288.000000","6.000000","150.000000","150.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2058680.000000","0.000000","2092704.000000","129468.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","0.000000","0.000000",,,,,,"10.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","26.000000","21.000000","60.000000","52.000000","47.000000","0.000000","0.000000","0.000000","20.000000","24.000000","19.000000","45.000000","46.000000","45.000000","160.000000","6000.000000","0.000000","753662.000000",,,,, -"445.000000","17.585000","445.000000","17.585000","445.000000","17.585000","1082.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","2.000000","154.500000","154.500000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2057680.000000","0.000000","2092704.000000","129468.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","24.000000","19.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","39.000000","160.000000","6000.000000","0.000000","753682.000000",,,,, -"570.000000","18.175000","570.000000","18.175000","570.000000","18.175000","1796.000000","0.000000",,,,,,,,,,,,"0.000000","125.000000","250.000000","7.000000","125.000000","125.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2056988.000000","0.000000","2092704.000000","129468.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","24.000000","18.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","38.000000","160.000000","6000.000000","0.000000","753702.000000",,,,, -"493.000000","15.810000","493.000000","15.810000","493.000000","15.810000","1821.000000","0.000000",,,,,,,,,,,,"0.000000","104.000000","207.000000","5.000000","104.000000","104.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2056080.000000","0.000000","2092704.000000","129468.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","20.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","17.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753722.000000",,,,, -"225.000000","14.550000","225.000000","14.550000","225.000000","14.550000","1426.000000","0.000000",,,,,,,,,,,,"0.000000","63.500000","126.000000","24.000000","63.500000","63.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2054420.000000","0.000000","2092704.000000","129468.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","19.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753742.000000",,,,, -"204.000000","14.450000","204.000000","14.450000","204.000000","14.450000","1647.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2053676.000000","0.000000","2092704.000000","129468.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","15.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","13.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753762.000000",,,,, -"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2052716.000000","0.000000","2092704.000000","129468.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","10.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753782.000000",,,,, -"223.000000","14.040000","223.000000","14.040000","223.000000","14.040000","966.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","0.000000","25.000000","25.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051720.000000","0.000000","2092704.000000","129468.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","9.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753802.000000",,,,, -"487.000000","15.285000","487.000000","15.285000","487.000000","15.285000","1001.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","222.000000","1.000000","111.000000","111.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051056.000000","0.000000","2092704.000000","129468.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","9.000000","17.000000","60.000000","15.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","15.000000","38.000000","160.000000","6000.000000","0.000000","753822.000000",,,,, -"544.000000","14.055000","544.000000","14.055000","544.000000","14.055000","1339.000000","0.000000",,,,,,,,,,,,"0.000000","195.000000","384.000000","2.000000","195.000000","195.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","25.000000","16.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","15.000000","17.000000","45.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","753842.000000",,,,, -"586.000000","14.250000","586.000000","14.250000","586.000000","14.250000","716.000000","0.000000",,,,,,,,,,,,"0.000000","136.000000","270.000000","1.000000","136.000000","136.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2049504.000000","0.000000","2092704.000000","129468.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","24.000000","21.000000","19.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","20.000000","18.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753862.000000",,,,, -"444.000000","13.585000","444.000000","13.585000","444.000000","13.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","85.500000","171.000000","5.000000","85.500000","85.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2048680.000000","0.000000","2092704.000000","129468.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","23.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","22.000000","17.000000","45.000000","45.000000","38.000000","160.000000","6000.000000","0.000000","753882.000000",,,,, -"709.000000","12.825000","709.000000","12.825000","709.000000","12.825000","432.000000","0.000000",,,,,,,,,,,,"0.000000","113.500000","227.000000","1.000000","113.500000","113.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2047468.000000","0.000000","2092704.000000","129468.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","22.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","21.000000","17.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753902.000000",,,,, -"253.000000","10.685000","253.000000","10.685000","253.000000","10.685000","510.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","6.000000","45.000000","45.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","17.000000","18.000000","52.000000","39.000000","40.000000","0.000000","0.000000","0.000000","20.000000","17.000000","17.000000","45.000000","39.000000","39.000000","160.000000","6000.000000","0.000000","753922.000000",,,,, -"221.000000","10.535000","221.000000","10.535000","221.000000","10.535000","491.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046084.000000","0.000000","2092704.000000","129468.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","15.000000","17.000000","48.000000","39.000000","40.000000","0.000000","0.000000","0.000000","19.000000","14.000000","16.000000","43.000000","39.000000","38.000000","160.000000","6000.000000","0.000000","753942.000000",,,,, -"224.000000","9.045000","224.000000","9.045000","224.000000","9.045000","441.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","1.000000","31.500000","31.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2045520.000000","0.000000","2092704.000000","129468.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","9.000000","37.000000","160.000000","6000.000000","0.000000","753962.000000",,,,, -"422.000000","9.980000","422.000000","9.980000","422.000000","9.980000","479.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","3.000000","52.500000","52.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2044384.000000","0.000000","2092704.000000","129468.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","10.000000","37.000000","160.000000","6000.000000","0.000000","753982.000000",,,,, -"534.000000","10.505000","534.000000","10.505000","534.000000","10.505000","765.000000","0.000000",,,,,,,,,,,,"0.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2043532.000000","0.000000","2092704.000000","129468.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","14.000000","15.000000","42.000000","39.000000","39.000000","0.000000","0.000000","0.000000","18.000000","13.000000","14.000000","39.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754002.000000",,,,, -"533.000000","10.000000","533.000000","10.000000","533.000000","10.000000","909.000000","0.000000",,,,,,,,,,,,"0.000000","215.500000","425.000000","1.000000","215.500000","215.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2041684.000000","0.000000","2092704.000000","129468.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","19.000000","15.000000","40.000000","39.000000","38.000000","0.000000","0.000000","0.000000","17.000000","17.000000","14.000000","38.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754022.000000",,,,, -"821.000000","11.355000","821.000000","11.355000","821.000000","11.355000","619.000000","0.000000",,,,,,,,,,,,"7.000000","388.500000","764.000000","3.000000","388.500000","388.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2039608.000000","0.000000","2092704.000000","129468.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","19.000000","26.000000","16.000000","42.000000","59.000000","39.000000","0.000000","0.000000","0.000000","17.000000","23.000000","15.000000","39.000000","50.000000","38.000000","160.000000","6000.000000","0.000000","754042.000000",,,,, -"1321.000000","13.700000","1321.000000","13.700000","1321.000000","13.700000","746.000000","0.000000",,,,,,,,,,,,"0.000000","208.500000","416.000000","4.000000","208.500000","208.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040120.000000","0.000000","2092704.000000","129468.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","19.000000","30.000000","18.000000","42.000000","69.000000","40.000000","0.000000","0.000000","0.000000","18.000000","28.000000","17.000000","39.000000","68.000000","39.000000","160.000000","6000.000000","0.000000","754062.000000",,,,, -"3092.000000","24.025000","3092.000000","24.025000","3092.000000","24.025000","901.000000","0.000000",,,,,,,,,,,,"0.000000","739.000000","1477.000000","3.000000","739.000000","739.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2042144.000000","0.000000","2092704.000000","129468.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","22.000000","73.000000","28.000000","46.000000","182.000000","69.000000","0.000000","0.000000","0.000000","20.000000","65.000000","25.000000","43.000000","165.000000","68.000000","160.000000","6000.000000","0.000000","754082.000000",,,,, -"2229.000000","19.970000","2229.000000","19.970000","2229.000000","19.970000","1079.000000","0.000000",,,,,,,,,,,,"0.000000","825.000000","1647.000000","0.000000","825.000000","825.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2040344.000000","0.000000","2092704.000000","129468.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","89.000000","32.000000","48.000000","182.000000","87.000000","0.000000","0.000000","0.000000","22.000000","80.000000","30.000000","45.000000","165.000000","84.000000","160.000000","6000.000000","0.000000","754102.000000",,,,, -"2212.000000","19.890000","2212.000000","19.890000","2212.000000","19.890000","978.000000","0.000000",,,,,,,,,,,,"0.000000","864.500000","1727.000000","1.000000","864.500000","864.500000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2039468.000000","0.000000","2092704.000000","129468.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","25.000000","104.000000","37.000000","59.000000","182.000000","94.000000","0.000000","0.000000","0.000000","23.000000","94.000000","34.000000","50.000000","165.000000","90.000000","160.000000","6000.000000","0.000000","754122.000000",,,,, -"1829.000000","16.590000","1829.000000","16.590000","1829.000000","16.590000","816.000000","0.000000",,,,,,,,,,,,"0.000000","636.500000","1271.000000","1.000000","636.500000","636.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038572.000000","0.000000","2092704.000000","129468.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","27.000000","83.000000","41.000000","69.000000","107.000000","101.000000","0.000000","0.000000","0.000000","25.000000","79.000000","38.000000","65.000000","106.000000","92.000000","160.000000","6000.000000","0.000000","754142.000000",,,,, -"1233.000000","13.790000","1233.000000","13.790000","1233.000000","13.790000","557.000000","0.000000",,,,,,,,,,,,"0.000000","112.000000","216.000000","4.000000","112.000000","112.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038256.000000","0.000000","2092704.000000","129468.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","0.000000","0.000000",,,,,,"1.000000","7.000000",,,,,,,,,,,"0.000000","28.000000","73.000000","43.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","70.000000","40.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754162.000000",,,,, -"237.000000","9.110000","237.000000","9.110000","237.000000","9.110000","551.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","4.000000","71.500000","71.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2037468.000000","0.000000","2092704.000000","129468.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","48.000000","42.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","47.000000","39.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754182.000000",,,,, -"221.000000","9.035000","221.000000","9.035000","221.000000","9.035000","525.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2036852.000000","0.000000","2092704.000000","129468.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","21.000000","41.000000","73.000000","101.000000","101.000000","0.000000","0.000000","0.000000","25.000000","21.000000","38.000000","68.000000","101.000000","93.000000","160.000000","6000.000000","0.000000","754202.000000",,,,, -"221.000000","8.530000","221.000000","8.530000","221.000000","8.530000","456.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","2.000000","20.500000","20.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035836.000000","0.000000","2092704.000000","129468.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","8.000000","41.000000","73.000000","10.000000","101.000000","0.000000","0.000000","0.000000","25.000000","8.000000","38.000000","68.000000","10.000000","93.000000","160.000000","6000.000000","0.000000","754222.000000",,,,, -"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","407.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","39.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035008.000000","0.000000","2092704.000000","129468.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","26.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754242.000000",,,,, -"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","513.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2034208.000000","0.000000","2092704.000000","129468.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754262.000000",,,,, -"573.000000","10.685000","573.000000","10.685000","573.000000","10.685000","621.000000","0.000000",,,,,,,,,,,,"0.000000","163.000000","325.000000","1.000000","163.000000","163.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2033288.000000","0.000000","2092704.000000","129468.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","41.000000","73.000000","17.000000","101.000000","0.000000","0.000000","0.000000","23.000000","9.000000","38.000000","68.000000","17.000000","93.000000","160.000000","6000.000000","0.000000","754282.000000",,,,, -"2602.000000","20.220000","2602.000000","20.220000","2602.000000","20.220000","2202.000000","0.000000",,,,,,,,,,,,"0.000000","946.500000","1890.000000","4.000000","946.500000","946.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2032872.000000","0.000000","2092704.000000","129468.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","26.000000","38.000000","46.000000","87.000000","105.000000","104.000000","0.000000","0.000000","0.000000","24.000000","35.000000","42.000000","81.000000","100.000000","100.000000","160.000000","6000.000000","0.000000","754302.000000",,,,, -"2372.000000","19.145000","2372.000000","19.145000","2372.000000","19.145000","1973.000000","0.000000",,,,,,,,,,,,"0.000000","918.000000","1833.000000","3.000000","918.000000","918.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2031076.000000","0.000000","2092704.000000","129468.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","74.000000","52.000000","91.000000","110.000000","105.000000","0.000000","0.000000","0.000000","26.000000","68.000000","48.000000","85.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754322.000000",,,,, -"2467.000000","20.590000","2467.000000","20.590000","2467.000000","20.590000","680.000000","0.000000",,,,,,,,,,,,"0.000000","740.500000","1479.000000","4.000000","740.500000","740.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031324.000000","0.000000","2092704.000000","129468.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","30.000000","99.000000","56.000000","94.000000","110.000000","105.000000","0.000000","0.000000","0.000000","28.000000","92.000000","52.000000","90.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754342.000000",,,,, -"2474.000000","20.620000","2474.000000","20.620000","2474.000000","20.620000","681.000000","0.000000",,,,,,,,,,,,"0.000000","489.500000","979.000000","3.000000","489.500000","489.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2030624.000000","0.000000","2092704.000000","129468.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","96.000000","59.000000","98.000000","110.000000","105.000000","0.000000","0.000000","0.000000","29.000000","91.000000","55.000000","91.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754362.000000",,,,, -"2462.000000","20.565000","2462.000000","20.565000","2462.000000","20.565000","632.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","966.000000","1.000000","483.000000","483.000000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031092.000000","0.000000","2092704.000000","129468.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","95.000000","56.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","92.000000","54.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754382.000000",,,,, -"601.000000","9.820000","601.000000","9.820000","601.000000","9.820000","649.000000","0.000000",,,,,,,,,,,,"0.000000","248.500000","486.000000","1.000000","248.500000","248.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2029480.000000","0.000000","2092704.000000","129468.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","0.000000","0.000000",,,,,,"6.000000","5.000000",,,,,,,,,,,"0.000000","34.000000","77.000000","53.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","73.000000","50.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754402.000000",,,,, -"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","519.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","62.000000","1.000000","35.500000","35.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028640.000000","0.000000","2092704.000000","129468.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","0.000000","0.000000",,,,,,"7.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","51.000000","48.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","48.000000","46.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754422.000000",,,,, -"241.000000","8.130000","241.000000","8.130000","241.000000","8.130000","376.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","26.000000","5.500000","5.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028088.000000","0.000000","2092704.000000","129468.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","16.000000","43.000000","98.000000","43.000000","103.000000","0.000000","0.000000","0.000000","32.000000","15.000000","41.000000","92.000000","43.000000","100.000000","160.000000","6000.000000","0.000000","754442.000000",,,,, -"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","449.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","9.000000","1.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2025096.000000","0.000000","2092704.000000","129468.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","0.000000","0.000000",,,,,,"5.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","13.000000","103.000000","0.000000","0.000000","0.000000","32.000000","9.000000","38.000000","92.000000","13.000000","97.000000","160.000000","6000.000000","0.000000","754462.000000",,,,, -"238.000000","7.115000","238.000000","7.115000","238.000000","7.115000","462.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","13.000000","0.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024296.000000","0.000000","2092704.000000","129468.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754482.000000",,,,, -"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","557.000000","0.000000",,,,,,,,,,,,"0.000000","5.000000","7.000000","0.000000","5.000000","5.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024544.000000","0.000000","2092704.000000","129468.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","33.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754502.000000",,,,, -"999.000000","12.190000","999.000000","12.190000","999.000000","12.190000","821.000000","0.000000",,,,,,,,,,,,"0.000000","4304.000000","8588.000000","19.000000","4304.000000","4304.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","0.000000","0.000000",,,,,,"13.000000","6.000000",,,,,,,,,,,"0.000000","34.000000","21.000000","43.000000","98.000000","68.000000","103.000000","0.000000","0.000000","0.000000","32.000000","18.000000","40.000000","92.000000","68.000000","97.000000","160.000000","6000.000000","0.000000","754522.000000",,,,, -"2004.000000","21.415000","2004.000000","21.415000","2004.000000","21.415000","1226.000000","0.000000",,,,,,,,,,,,"0.000000","421.000000","842.000000","10.000000","421.000000","421.000000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2029164.000000","0.000000","2092704.000000","129468.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","36.000000","46.000000","98.000000","149.000000","104.000000","0.000000","0.000000","0.000000","32.000000","29.000000","43.000000","92.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","754542.000000",,,,, -"1618.000000","19.600000","1618.000000","19.600000","1618.000000","19.600000","838.000000","0.000000",,,,,,,,,,,,"0.000000","648.500000","1296.000000","4.000000","648.500000","648.500000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2028456.000000","0.000000","2092704.000000","129468.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","36.000000","74.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","33.000000","57.000000","48.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754562.000000",,,,, -"721.000000","18.380000","721.000000","18.380000","721.000000","18.380000","541.000000","0.000000",,,,,,,,,,,,"0.000000","115.500000","231.000000","6.000000","115.500000","115.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2029660.000000","0.000000","2092704.000000","129468.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","67.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","34.000000","53.000000","49.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754582.000000",,,,, -"245.000000","16.145000","245.000000","16.145000","245.000000","16.145000","486.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","3.000000","66.000000","66.000000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2028740.000000","0.000000","2092704.000000","129468.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","53.000000","49.000000","100.000000","234.000000","104.000000","0.000000","0.000000","0.000000","34.000000","42.000000","44.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754602.000000",,,,, -"233.000000","16.090000","233.000000","16.090000","233.000000","16.090000","586.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","17.000000","24.500000","24.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2026664.000000","0.000000","2092704.000000","129468.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","15.000000","42.000000","100.000000","46.000000","100.000000","0.000000","0.000000","0.000000","33.000000","15.000000","37.000000","95.000000","41.000000","100.000000","160.000000","6000.000000","0.000000","754622.000000",,,,, -"219.000000","15.525000","219.000000","15.525000","219.000000","15.525000","467.000000","0.000000",,,,,,,,,,,,"0.000000","32.500000","65.000000","1.000000","32.500000","32.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2027632.000000","0.000000","2092704.000000","129468.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","10.000000","37.000000","100.000000","20.000000","98.000000","0.000000","0.000000","0.000000","33.000000","9.000000","32.000000","95.000000","20.000000","97.000000","160.000000","6000.000000","0.000000","754642.000000",,,,, -"222.000000","15.540000","222.000000","15.540000","222.000000","15.540000","679.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","2.000000","22.500000","22.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026620.000000","0.000000","2092704.000000","129468.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","31.000000","100.000000","9.000000","98.000000","0.000000","0.000000","0.000000","33.000000","8.000000","27.000000","95.000000","9.000000","97.000000","160.000000","6000.000000","0.000000","754662.000000",,,,, -"223.000000","15.540000","223.000000","15.540000","223.000000","15.540000","736.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","0.000000","13.000000","13.000000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026760.000000","0.000000","2092704.000000","129468.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","24.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","21.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754682.000000",,,,, -"226.000000","18.555000","226.000000","18.555000","226.000000","18.555000","594.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","46.000000","23.000000","23.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2026204.000000","0.000000","2092704.000000","129468.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","8.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754702.000000",,,,, -"218.000000","18.520000","218.000000","18.520000","218.000000","18.520000","663.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","19.000000","20.500000","20.500000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2025288.000000","0.000000","2092704.000000","129468.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754722.000000",,,,, -"229.000000","18.570000","229.000000","18.570000","229.000000","18.570000","519.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","41.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754742.000000",,,,, -"236.000000","18.105000","236.000000","18.105000","236.000000","18.105000","438.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","1.000000","36.500000","36.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2024276.000000","0.000000","2092704.000000","129468.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","32.000000","8.000000","19.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754762.000000",,,,, -"412.000000","18.930000","412.000000","18.930000","412.000000","18.930000","574.000000","0.000000",,,,,,,,,,,,"0.000000","143.000000","284.000000","0.000000","143.000000","143.000000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2023432.000000","0.000000","2092704.000000","129468.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","35.000000","10.000000","23.000000","100.000000","25.000000","66.000000","0.000000","0.000000","0.000000","32.000000","10.000000","20.000000","95.000000","24.000000","43.000000","160.000000","6000.000000","0.000000","754782.000000",,,,, -"886.000000","21.160000","886.000000","21.160000","886.000000","21.160000","671.000000","0.000000",,,,,,,,,,,,"0.000000","226.500000","448.000000","2.000000","226.500000","226.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2022828.000000","0.000000","2092704.000000","129468.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","35.000000","19.000000","25.000000","100.000000","47.000000","66.000000","0.000000","0.000000","0.000000","32.000000","18.000000","21.000000","95.000000","44.000000","44.000000","160.000000","6000.000000","0.000000","754802.000000",,,,, -"2615.000000","26.285000","2615.000000","26.285000","2615.000000","26.285000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","518.500000","1036.000000","8.000000","518.500000","518.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026560.000000","0.000000","2092704.000000","129468.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","60.000000","31.000000","101.000000","264.000000","123.000000","0.000000","0.000000","0.000000","34.000000","49.000000","25.000000","97.000000","185.000000","108.000000","160.000000","6000.000000","0.000000","754822.000000",,,,, -"617.000000","16.895000","617.000000","16.895000","617.000000","16.895000","641.000000","0.000000",,,,,,,,,,,,"0.000000","286.500000","573.000000","94.000000","286.500000","286.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026092.000000","0.000000","2092704.000000","129468.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","62.000000","28.000000","101.000000","264.000000","47.000000","0.000000","0.000000","0.000000","35.000000","50.000000","24.000000","97.000000","185.000000","44.000000","160.000000","6000.000000","0.000000","754842.000000",,,,, -"634.000000","16.975000","634.000000","16.975000","634.000000","16.975000","533.000000","0.000000",,,,,,,,,,,,"0.000000","119.500000","239.000000","1.000000","119.500000","119.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026132.000000","0.000000","2092704.000000","129468.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","60.000000","22.000000","101.000000","264.000000","46.000000","0.000000","0.000000","0.000000","35.000000","49.000000","19.000000","97.000000","185.000000","41.000000","160.000000","6000.000000","0.000000","754862.000000",,,,, -"249.000000","12.665000","249.000000","12.665000","249.000000","12.665000","434.000000","0.000000",,,,,,,,,,,,"0.000000","73.500000","147.000000","35.000000","73.500000","73.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2026272.000000","0.000000","2092704.000000","129468.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","19.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","18.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754882.000000",,,,, -"222.000000","12.535000","222.000000","12.535000","222.000000","12.535000","830.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","13.000000","30.000000","30.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2025336.000000","0.000000","2092704.000000","129468.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","15.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","15.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754902.000000",,,,, -"230.000000","12.575000","230.000000","12.575000","230.000000","12.575000","549.000000","0.000000",,,,,,,,,,,,"0.000000","43.500000","87.000000","2.000000","43.500000","43.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","21.000000","101.000000","9.000000","41.000000","0.000000","0.000000","0.000000","35.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754922.000000",,,,, -"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","545.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","3.000000","29.000000","29.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2025392.000000","0.000000","2092704.000000","129468.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754942.000000",,,,, -"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","911.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2024356.000000","0.000000","2092704.000000","129468.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754962.000000",,,,, -"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","632.000000","0.000000",,,,,,,,,,,,"0.000000","38.500000","77.000000","3.000000","38.500000","38.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2023372.000000","0.000000","2092704.000000","129468.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","8.000000","21.000000","98.000000","10.000000","41.000000","0.000000","0.000000","0.000000","31.000000","8.000000","18.000000","95.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754982.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv deleted file mode 100644 index 95854863..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv +++ /dev/null @@ -1,847 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"621.250000",,"621.250000",,"621.250000",,"213.000000","0.000000",,,,,,,,,"4.250000","4675.000000","14395.250000","0.000000",,"250.875000",,,,"1.600000","0.000000","2.333333","10.333333","3.000000","0.000000","33.800000","0.000000","0.400000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.500000",,"658.500000",,"658.500000",,"275.250000","0.000000",,,,,,,,,"7.500000","4953.250000","14349.750000","2.625000",,"356.875000",,,,"4.800000","0.000000","0.333333","5.000000","8.500000","0.000000","96.600000","0.000000","1.600000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"576.500000",,"576.500000",,"576.500000",,"191.250000","0.000000",,,,,,,,,"6.250000","4338.750000","14378.250000","0.000000",,"356.125000",,,,"3.000000","0.000000","6.333333","7.000000","5.500000","0.000000","62.600000","0.000000","0.800000","61.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"243.000000",,"243.000000",,"243.000000",,"118.250000","0.000000",,,,,,,,,"4.750000","1830.000000","17188.750000","0.000000",,"192.750000",,,,"1.600000","0.000000","4.666667","3078.000000","2.875000","0.000000","34.400000","0.000000","0.200000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"348.750000",,"348.750000",,"348.750000",,"153.000000","0.000000",,,,,,,,,"5.750000","2627.000000","16510.250000","10.125000",,"238.375000",,,,"1.600000","0.375000","852.333333","1623.000000","2.125000","0.000000","33.200000","0.000000","7.800000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"79.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"631.000000",,"631.000000",,"631.000000",,"150.250000","0.000000",,,,,,,,,"4.750000","4749.250000","14454.500000","0.000000",,"342.375000",,,,"1.800000","0.000000","3.333333","304.000000","3.375000","0.000000","38.600000","0.000000","0.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"317.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"439.750000",,"439.750000",,"439.750000",,"165.750000","0.000000",,,,,,,,,"112.250000","3312.250000","15687.500000","19.875000",,"8504.625000",,,,"30.000000","0.750000","61.666667","94.000000","55.125000","0.000000","601.400000","0.000000","10.000000","591.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"131.500000","0.000000",,,,,,,,,"25.250000","4801.750000","14476.500000","3.375000",,"1435.375000",,,,"13.400000","0.000000","3.666667","9.666667","24.750000","0.000000","268.400000","0.000000","3.800000","264.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"73.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"434.500000",,"434.500000",,"434.500000",,"145.000000","0.000000",,,,,,,,,"103.000000","3271.500000","16027.500000","310.500000",,"3663.000000",,,,"56.600000","13.500000","4.333333","14.333333","92.250000","0.000000","1134.200000","0.000000","147.600000","986.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"92.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"689.000000",,"689.000000",,"689.000000",,"176.000000","0.000000",,,,,,,,,"8.750000","5185.750000","14445.000000","0.000000",,"465.375000",,,,"7.600000","0.000000","0.000000","3.000000","14.125000","0.000000","152.600000","0.000000","0.000000","152.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"620.750000",,"620.750000",,"620.750000",,"189.750000","0.000000",,,,,,,,,"7.750000","4672.250000","14427.500000","118.875000",,"244.750000",,,,"1.800000","1.500000","1.333333","10.333333","1.500000","0.000000","39.200000","0.000000","19.400000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"634.250000",,"634.250000",,"634.250000",,"184.750000","0.000000",,,,,,,,,"24.500000","4772.250000","14526.000000","538.500000",,"252.375000",,,,"3.600000","6.000000","2.000000","7.000000","0.750000","0.000000","75.000000","0.000000","65.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"728.750000",,"728.750000",,"728.750000",,"110.000000","0.000000",,,,,,,,,"21.500000","5484.000000","14597.500000","311.500000",,"552.375000",,,,"4.800000","3.000000","2.000000","6.000000","6.000000","0.000000","98.800000","0.000000","33.200000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"482.000000",,"482.000000",,"482.000000",,"157.250000","0.000000",,,,,,,,,"73.750000","3628.750000","15599.000000","1432.750000",,"354.000000",,,,"23.200000","41.625000","1.333333","7.000000","1.875000","0.000000","465.800000","0.000000","445.600000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"628.000000",,"628.000000",,"628.000000",,"124.500000","0.000000",,,,,,,,,"46.000000","4725.500000","14656.500000","698.000000",,"171.625000",,,,"10.400000","16.875000","0.333333","2.666667","2.250000","0.000000","208.200000","0.000000","180.800000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"568.250000",,"568.250000",,"568.250000",,"160.000000","0.000000",,,,,,,,,"33.500000","4275.750000","14718.000000","630.375000",,"149.250000",,,,"9.800000","16.125000","1.000000","3.000000","2.250000","0.000000","199.600000","0.000000","173.400000","26.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"497.250000",,"497.250000",,"497.250000",,"263.000000","0.000000",,,,,,,,,"38.250000","3743.750000","14730.750000","492.125000",,"132.625000",,,,"15.200000","25.500000","1.000000","2.333333","2.500000","0.000000","304.800000","0.000000","275.200000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"588.000000",,"588.000000",,"588.000000",,"196.500000","0.000000",,,,,,,,,"11.500000","4423.500000","14710.500000","32.625000",,"50.625000",,,,"5.400000","4.875000","1.333333","4.666667","4.875000","0.000000","110.800000","0.000000","55.400000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"459.500000",,"459.500000",,"459.500000",,"306.750000","0.000000",,,,,,,,,"39.750000","3458.750000","15256.750000","190.000000",,"342.750000",,,,"30.200000","45.750000","0.333333","2.666667","10.875000","0.000000","606.800000","0.000000","489.000000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"63.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"629.500000",,"629.500000",,"629.500000",,"188.000000","0.000000",,,,,,,,,"6.750000","4737.500000","14473.000000","0.000000",,"94.125000",,,,"4.400000","0.000000","0.000000","3.666667","8.250000","0.000000","90.000000","0.000000","0.200000","89.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"893.750000",,"893.750000",,"893.750000",,"182.750000","0.000000",,,,,,,,,"18.250000","6722.750000","12448.750000","71.250000",,"489.750000",,,,"14.600000","5.625000","1.000000","1.666667","21.375000","0.000000","293.200000","0.000000","63.200000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"84.000000","97.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1084.500000",,"1084.500000",,"1084.500000",,"314.500000","0.000000",,,,,,,,,"22.000000","8157.250000","9744.250000","77.250000",,"566.125000",,,,"12.800000","7.500000","1.000000","3.666667","16.500000","0.000000","259.200000","0.000000","80.200000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"56.000000","62.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1099.500000",,"1099.500000",,"1099.500000",,"230.000000","0.000000",,,,,,,,,"6.500000","8271.000000","9508.750000","1.125000",,"433.125000",,,,"2.200000","0.000000","5.333333","7.000000","4.125000","0.000000","46.200000","0.000000","1.200000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"82.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"936.250000",,"936.250000",,"936.250000",,"148.500000","0.000000",,,,,,,,,"7.750000","7041.500000","9505.750000","0.000000",,"432.375000",,,,"2.600000","0.000000","0.000000","6.000000","4.875000","0.000000","54.200000","0.000000","0.600000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"85.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1185.250000",,"1185.250000",,"1185.250000",,"212.750000","0.000000",,,,,,,,,"27.000000","8916.500000","9777.250000","42.125000",,"1180.375000",,,,"9.600000","5.000000","2.333333","12.333333","12.750000","0.000000","195.400000","0.000000","56.400000","139.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1209.750000",,"1209.750000",,"1209.750000",,"194.500000","0.000000",,,,,,,,,"13.750000","9099.000000","9606.500000","49.750000",,"394.125000",,,,"4.800000","4.500000","0.333333","5.666667","4.500000","0.000000","96.200000","0.000000","48.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1184.000000",,"1184.000000",,"1184.000000",,"220.000000","0.000000",,,,,,,,,"35.000000","8904.250000","9743.000000","75.750000",,"1512.250000",,,,"14.800000","7.500000","2.666667","19.333333","20.125000","0.000000","299.600000","0.000000","81.000000","218.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1193.250000",,"1193.250000",,"1193.250000",,"220.000000","0.000000",,,,,,,,,"7.250000","8977.000000","9522.750000","0.375000",,"383.625000",,,,"1.600000","0.000000","0.000000","11.666667","3.000000","0.000000","35.400000","0.000000","0.800000","34.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1256.750000",,"1256.750000",,"1256.750000",,"241.500000","0.000000",,,,,,,,,"8.500000","9451.250000","9538.000000","0.375000",,"548.250000",,,,"4.800000","0.000000","0.666667","11.666667","9.000000","0.000000","99.600000","0.000000","1.000000","98.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1177.500000",,"1177.500000",,"1177.500000",,"181.500000","0.000000",,,,,,,,,"2.750000","8856.500000","9524.000000","0.000000",,"337.375000",,,,"1.600000","0.000000","4.000000","18.666667","2.875000","0.000000","33.200000","0.000000","0.400000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1234.750000",,"1234.750000",,"1234.750000",,"238.500000","0.000000",,,,,,,,,"5.750000","9288.000000","9527.500000","0.000000",,"508.375000",,,,"2.400000","0.000000","0.000000","27.333333","4.500000","0.000000","51.200000","0.000000","0.000000","51.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1034.500000",,"1034.500000",,"1034.500000",,"240.000000","0.000000",,,,,,,,,"4.750000","7780.750000","9435.250000","0.000000",,"434.625000",,,,"3.000000","0.000000","0.000000","11.000000","5.625000","0.000000","61.200000","0.000000","0.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"911.750000",,"911.750000",,"911.750000",,"307.000000","0.000000",,,,,,,,,"6.000000","6859.000000","9366.000000","0.375000",,"288.250000",,,,"1.200000","0.000000","2.666667","11.000000","2.125000","0.000000","26.000000","0.000000","1.200000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"859.250000",,"859.250000",,"859.250000",,"348.750000","0.000000",,,,,,,,,"4.500000","6465.000000","9312.500000","0.000000",,"283.000000",,,,"2.000000","0.000000","6.666667","7.333333","3.750000","0.000000","43.200000","0.000000","0.400000","42.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"999.250000",,"999.250000",,"999.250000",,"360.750000","0.000000",,,,,,,,,"7.250000","7518.750000","9253.750000","0.125000",,"616.125000",,,,"2.800000","0.000000","1.333333","22.000000","5.250000","0.000000","59.800000","0.000000","0.600000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1148.000000",,"1148.000000",,"1148.000000",,"554.750000","0.000000",,,,,,,,,"6.250000","8635.750000","9197.000000","0.000000",,"393.625000",,,,"3.000000","0.000000","0.000000","21.000000","5.500000","0.000000","60.400000","0.000000","0.000000","60.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.750000",,"1077.750000",,"1077.750000",,"430.250000","0.000000",,,,,,,,,"4.250000","8109.250000","9216.750000","3.000000",,"324.750000",,,,"2.200000","0.000000","1.333333","13.666667","3.750000","0.000000","45.000000","0.000000","2.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"935.000000",,"935.000000",,"935.000000",,"278.250000","0.000000",,,,,,,,,"4.250000","7031.750000","9361.750000","1.500000",,"361.875000",,,,"2.200000","0.000000","1.000000","8.666667","4.000000","0.000000","47.200000","0.000000","2.600000","44.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"71.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1005.750000",,"1005.750000",,"1005.750000",,"231.750000","0.000000",,,,,,,,,"4.500000","7564.750000","9449.750000","1.500000",,"431.875000",,,,"2.600000","0.000000","5.666667","14.666667","4.750000","0.000000","55.400000","0.000000","1.400000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1214.000000",,"1214.000000",,"1214.000000",,"177.500000","0.000000",,,,,,,,,"4.000000","9132.500000","9522.000000","0.750000",,"422.500000",,,,"1.000000","0.000000","1.666667","16.666667","1.750000","0.000000","22.200000","0.000000","1.200000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"69.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1153.500000",,"1153.500000",,"1153.500000",,"202.000000","0.000000",,,,,,,,,"5.250000","8677.500000","9519.750000","0.750000",,"410.125000",,,,"2.200000","0.000000","6.000000","11.666667","4.000000","0.000000","47.200000","0.000000","1.200000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1273.000000",,"1273.000000",,"1273.000000",,"216.750000","0.000000",,,,,,,,,"4.500000","9574.500000","9517.750000","0.750000",,"337.000000",,,,"1.400000","0.000000","1.000000","14.000000","2.000000","0.000000","30.200000","0.000000","1.400000","28.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1401.000000",,"1401.000000",,"1401.000000",,"146.500000","0.000000",,,,,,,,,"9.000000","10537.750000","9641.750000","0.750000",,"552.375000",,,,"3.200000","0.000000","2.666667","12.666667","6.375000","0.000000","67.800000","0.000000","1.400000","66.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.250000",,"1077.250000",,"1077.250000",,"340.250000","0.000000",,,,,,,,,"6.250000","8103.250000","9389.500000","1.125000",,"403.875000",,,,"1.200000","0.000000","1.666667","28.333333","2.250000","0.000000","27.600000","0.000000","1.200000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1247.500000",,"1247.500000",,"1247.500000",,"144.500000","0.000000",,,,,,,,,"4.500000","9384.500000","9593.750000","0.750000",,"389.250000",,,,"1.600000","0.000000","2.333333","10.333333","2.875000","0.000000","34.000000","0.000000","0.800000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1179.000000",,"1179.000000",,"1179.000000",,"209.000000","0.000000",,,,,,,,,"4.500000","8866.750000","9529.500000","1.500000",,"500.250000",,,,"3.200000","0.000000","2.000000","10.000000","5.875000","0.000000","66.200000","0.000000","1.200000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"68.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1077.500000",,"1077.500000",,"1077.500000",,"381.500000","0.000000",,,,,,,,,"4.500000","8105.750000","9426.750000","0.750000",,"401.125000",,,,"1.600000","0.000000","2.666667","13.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1047.000000",,"1047.000000",,"1047.000000",,"306.750000","0.000000",,,,,,,,,"9.500000","7875.000000","9445.250000","1.875000",,"626.125000",,,,"2.800000","0.000000","15.333333","15.333333","5.250000","0.000000","59.200000","0.000000","2.200000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1169.500000",,"1169.500000",,"1169.500000",,"194.750000","0.000000",,,,,,,,,"7.000000","8796.000000","9571.000000","5.250000",,"440.250000",,,,"1.800000","0.375000","2.000000","16.000000","3.000000","0.000000","37.600000","0.000000","5.000000","32.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1152.000000",,"1152.000000",,"1152.000000",,"194.750000","0.000000",,,,,,,,,"6.500000","8668.250000","9542.500000","2.250000",,"387.375000",,,,"2.200000","0.250000","3.000000","14.000000","3.375000","0.000000","44.000000","0.000000","4.200000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"90.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1208.000000",,"1208.000000",,"1208.000000",,"258.000000","0.000000",,,,,,,,,"7.250000","9085.250000","9518.250000","2.125000",,"558.625000",,,,"2.200000","0.375000","3.666667","22.666667","3.625000","0.000000","46.200000","0.000000","5.200000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1289.500000",,"1289.500000",,"1289.500000",,"311.250000","0.000000",,,,,,,,,"14.000000","9698.250000","9481.750000","2.625000",,"954.250000",,,,"4.800000","0.375000","2.333333","15.333333","8.625000","0.000000","98.600000","0.000000","5.200000","93.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1233.000000",,"1233.000000",,"1233.000000",,"243.500000","0.000000",,,,,,,,,"50.000000","9275.500000","9567.250000","12.000000",,"4311.000000",,,,"16.200000","0.750000","1.333333","29.666667","29.375000","0.000000","326.400000","0.000000","11.000000","315.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1303.250000",,"1303.250000",,"1303.250000",,"285.000000","0.000000",,,,,,,,,"4.750000","9803.500000","9431.000000","2.625000",,"465.250000",,,,"1.600000","0.000000","2.000000","18.333333","3.000000","0.000000","35.000000","0.000000","1.400000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1176.250000",,"1176.250000",,"1176.250000",,"268.750000","0.000000",,,,,,,,,"21.500000","8848.500000","9592.250000","22.500000",,"653.250000",,,,"5.400000","2.250000","3.333333","17.666667","7.750000","0.000000","109.200000","0.000000","24.800000","84.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1040.000000",,"1040.000000",,"1040.000000",,"306.000000","0.000000",,,,,,,,,"164.750000","7822.750000","11172.250000","1767.000000",,"8112.375000",,,,"41.200000","31.875000","4.000000","28.000000","44.875000","0.000000","825.600000","0.000000","342.800000","482.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1200.250000",,"1200.250000",,"1200.250000",,"258.500000","0.000000",,,,,,,,,"8.750000","9026.750000","9451.500000","6.375000",,"359.250000",,,,"5.400000","0.375000","1.000000","5.000000","9.625000","0.000000","110.600000","0.000000","5.800000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.750000",,"1103.750000",,"1103.750000",,"174.000000","0.000000",,,,,,,,,"4.250000","8303.250000","9487.750000","1.875000",,"283.500000",,,,"3.000000","0.000000","0.333333","3.000000","5.625000","0.000000","63.800000","0.000000","2.800000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1052.500000",,"1052.500000",,"1052.500000",,"194.500000","0.000000",,,,,,,,,"6.000000","7917.500000","9537.000000","0.750000",,"419.250000",,,,"3.600000","0.000000","1.000000","6.333333","6.750000","0.000000","74.400000","0.000000","1.400000","73.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1119.250000",,"1119.250000",,"1119.250000",,"170.500000","0.000000",,,,,,,,,"4.250000","8421.500000","9519.750000","0.750000",,"297.625000",,,,"2.000000","0.000000","1.000000","5.666667","3.375000","0.000000","41.000000","0.000000","1.400000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1163.000000",,"1163.000000",,"1163.000000",,"268.250000","0.000000",,,,,,,,,"4.000000","8750.000000","9688.500000","4.875000",,"213.750000",,,,"2.000000","0.375000","1.000000","6.000000","3.000000","0.000000","42.200000","0.000000","6.800000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1135.750000",,"1135.750000",,"1135.750000",,"192.500000","0.000000",,,,,,,,,"5.250000","8544.250000","9544.250000","6.750000",,"414.250000",,,,"2.000000","0.375000","1.000000","7.000000","3.000000","0.000000","40.200000","0.000000","5.800000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1113.000000",,"1113.000000",,"1113.000000",,"230.750000","0.000000",,,,,,,,,"30.000000","8372.750000","9744.000000","343.125000",,"1490.875000",,,,"13.600000","11.875000","2.333333","14.666667","13.500000","0.000000","275.000000","0.000000","129.800000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1149.500000",,"1149.500000",,"1149.500000",,"391.000000","0.000000",,,,,,,,,"7.750000","8647.500000","9332.000000","0.750000",,"482.500000",,,,"2.600000","0.000000","1.000000","10.666667","4.875000","0.000000","55.000000","0.000000","0.800000","54.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1118.500000",,"1118.500000",,"1118.500000",,"456.250000","0.000000",,,,,,,,,"3.750000","8413.750000","9287.000000","3.000000",,"280.500000",,,,"1.600000","0.000000","0.666667","5.333333","2.625000","0.000000","33.000000","0.000000","3.800000","29.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1049.250000",,"1049.250000",,"1049.250000",,"376.500000","0.000000",,,,,,,,,"4.750000","7892.000000","9375.000000","0.750000",,"337.000000",,,,"1.600000","0.000000","0.666667","11.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1070.500000",,"1070.500000",,"1070.500000",,"235.750000","0.000000",,,,,,,,,"13.000000","8053.000000","9540.750000","11.250000",,"898.125000",,,,"6.200000","1.125000","1.000000","13.000000","10.125000","0.000000","126.600000","0.000000","14.800000","111.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"879.000000",,"879.000000",,"879.000000",,"224.250000","0.000000",,,,,,,,,"3.250000","6611.250000","9439.250000","2.250000",,"261.375000",,,,"1.400000","0.000000","0.666667","3.666667","2.625000","0.000000","30.800000","0.000000","1.400000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1266.000000",,"1266.000000",,"1266.000000",,"245.250000","0.000000",,,,,,,,,"5.750000","9523.000000","9497.500000","1.500000",,"525.625000",,,,"2.800000","0.000000","1.000000","17.000000","5.250000","0.000000","58.400000","0.000000","1.600000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1192.250000",,"1192.250000",,"1192.250000",,"222.000000","0.000000",,,,,,,,,"39.500000","8970.000000","10132.750000","800.000000",,"926.500000",,,,"12.200000","17.125000","3.000000","24.333333","5.125000","0.000000","246.600000","0.000000","190.400000","56.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.250000",,"832.250000",,"832.250000",,"290.750000","0.000000",,,,,,,,,"138.750000","6261.000000","11618.250000","2486.375000",,"2502.125000",,,,"48.400000","63.125000","4.333333","17.000000","27.250000","0.000000","969.400000","0.000000","670.000000","299.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"890.250000",,"890.250000",,"890.250000",,"162.750000","0.000000",,,,,,,,,"37.500000","6698.000000","9728.250000","145.500000",,"2053.875000",,,,"13.200000","4.750000","2.666667","16.666667","20.500000","0.000000","267.200000","0.000000","52.000000","215.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1097.000000",,"1097.000000",,"1097.000000",,"226.000000","0.000000",,,,,,,,,"132.250000","8252.000000","10489.000000","1836.375000",,"5403.375000",,,,"32.000000","28.875000","4.000000","54.333333","30.625000","0.000000","641.600000","0.000000","310.400000","331.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1106.000000",,"1106.000000",,"1106.000000",,"233.250000","0.000000",,,,,,,,,"59.750000","8320.750000","9779.500000","235.375000",,"3152.500000",,,,"14.800000","6.000000","7.333333","26.000000","21.750000","0.000000","298.000000","0.000000","65.400000","232.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"919.500000",,"919.500000",,"919.500000",,"218.000000","0.000000",,,,,,,,,"132.750000","6918.250000","11311.000000","2017.875000",,"4981.875000",,,,"52.800000","42.500000","3.333333","14.333333","56.250000","0.000000","1058.800000","0.000000","456.400000","602.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"721.500000",,"721.500000",,"721.500000",,"245.750000","0.000000",,,,,,,,,"199.250000","5428.500000","13670.500000","5626.000000",,"1585.000000",,,,"75.600000","124.000000","3.000000","14.666667","17.500000","0.000000","1513.400000","0.000000","1324.800000","188.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"692.500000",,"692.500000",,"692.500000",,"240.750000","0.000000",,,,,,,,,"185.250000","5208.500000","13591.750000","5036.625000",,"3171.750000",,,,"67.800000","103.875000","2.333333","40.000000","22.875000","0.000000","1356.600000","0.000000","1111.000000","245.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"391.250000","0.000000",,,,,,,,,"118.000000","4800.750000","11860.500000","3595.750000",,"1887.250000",,,,"57.200000","83.125000","3.333333","18.666667","23.750000","0.000000","1145.600000","0.000000","887.800000","257.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.250000",,"884.250000",,"884.250000",,"164.500000","0.000000",,,,,,,,,"60.500000","6650.750000","9566.000000","20.875000",,"4638.875000",,,,"19.600000","2.250000","4.000000","23.333333","34.375000","0.000000","394.400000","0.000000","26.600000","367.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"888.500000",,"888.500000",,"888.500000",,"198.000000","0.000000",,,,,,,,,"29.750000","6684.250000","9823.250000","97.125000",,"1653.000000",,,,"11.600000","8.125000","3.000000","26.333333","13.125000","0.000000","233.400000","0.000000","90.000000","143.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"49.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"770.750000",,"770.750000",,"770.750000",,"347.000000","0.000000",,,,,,,,,"35.500000","5800.750000","9857.250000","99.250000",,"1902.375000",,,,"20.200000","11.500000","3.333333","14.333333","26.250000","0.000000","406.600000","0.000000","124.000000","282.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"773.750000",,"773.750000",,"773.750000",,"366.000000","0.000000",,,,,,,,,"36.250000","5821.250000","9557.250000","81.375000",,"2123.125000",,,,"9.800000","6.625000","3.666667","21.666667","11.625000","0.000000","198.200000","0.000000","72.000000","126.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"776.000000",,"776.000000",,"776.000000",,"146.500000","0.000000",,,,,,,,,"97.500000","5839.500000","9938.250000","144.375000",,"6435.750000",,,,"43.800000","7.750000","2.666667","16.666667","74.125000","0.000000","878.400000","0.000000","84.800000","793.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"830.000000",,"830.000000",,"830.000000",,"173.500000","0.000000",,,,,,,,,"96.000000","6245.000000","9766.500000","166.625000",,"6922.000000",,,,"37.000000","5.500000","3.333333","14.333333","63.625000","0.000000","740.600000","0.000000","60.600000","680.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"845.000000",,"845.000000",,"845.000000",,"176.250000","0.000000",,,,,,,,,"61.500000","6355.500000","9618.000000","511.500000",,"3904.125000",,,,"21.800000","15.000000","2.333333","30.666667","25.125000","0.000000","436.000000","0.000000","161.200000","274.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"546.500000",,"546.500000",,"546.500000",,"192.750000","0.000000",,,,,,,,,"152.000000","4113.250000","13040.250000","4297.875000",,"3844.875000",,,,"65.600000","83.250000","1.666667","19.666667","39.750000","0.000000","1312.800000","0.000000","891.000000","421.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"571.000000",,"571.000000",,"571.000000",,"202.000000","0.000000",,,,,,,,,"153.500000","4297.250000","12469.250000","5664.375000",,"572.500000",,,,"77.400000","137.750000","1.666667","10.666667","6.375000","0.000000","1549.400000","0.000000","1478.000000","71.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"16.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"599.000000",,"599.000000",,"599.000000",,"167.000000","0.000000",,,,,,,,,"170.000000","4509.000000","12168.500000","5083.000000",,"3655.375000",,,,"65.000000","99.500000","2.000000","61.000000","22.000000","0.000000","1300.800000","0.000000","1061.200000","239.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.500000",,"856.500000",,"856.500000",,"170.000000","0.000000",,,,,,,,,"34.250000","6444.250000","9763.500000","436.000000",,"778.125000",,,,"16.600000","20.875000","1.333333","19.666667","10.375000","0.000000","335.600000","0.000000","221.400000","114.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"844.750000",,"844.750000",,"844.750000",,"151.250000","0.000000",,,,,,,,,"9.000000","6356.000000","9453.000000","108.625000",,"234.375000",,,,"3.400000","1.875000","2.333333","6.666667","4.375000","0.000000","70.600000","0.000000","22.600000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"927.250000",,"927.250000",,"927.250000",,"272.000000","0.000000",,,,,,,,,"92.500000","6976.000000","10669.250000","3851.000000",,"289.375000",,,,"32.800000","59.000000","1.666667","8.666667","2.125000","0.000000","658.600000","0.000000","634.600000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"92.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"862.250000",,"862.250000",,"862.250000",,"178.500000","0.000000",,,,,,,,,"233.000000","6485.750000","13051.000000","8340.375000",,"213.375000",,,,"90.000000","164.250000","1.666667","3.000000","4.125000","0.000000","1800.600000","0.000000","1754.200000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"152.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"738.000000",,"738.000000",,"738.000000",,"443.750000","0.000000",,,,,,,,,"192.500000","5551.000000","11826.750000","6543.750000",,"3211.125000",,,,"77.200000","128.625000","1.666667","26.666667","16.125000","0.000000","1545.600000","0.000000","1369.800000","175.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"879.000000",,"879.000000",,"879.000000",,"351.750000","0.000000",,,,,,,,,"123.000000","6611.750000","10663.500000","3568.500000",,"2447.625000",,,,"51.600000","73.875000","2.333333","14.000000","22.500000","0.000000","1033.800000","0.000000","790.600000","243.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1041.250000",,"1041.250000",,"1041.250000",,"264.000000","0.000000",,,,,,,,,"2.000000","7831.500000","9382.250000","1.875000",,"205.125000",,,,"2.000000","0.000000","0.333333","4.666667","3.375000","0.000000","41.200000","0.000000","2.800000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1236.000000",,"1236.000000",,"1236.000000",,"258.000000","0.000000",,,,,,,,,"4.000000","9296.000000","9467.250000","3.000000",,"248.500000",,,,"1.000000","0.375000","1.000000","6.333333","1.375000","0.000000","21.600000","0.000000","4.400000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1147.500000",,"1147.500000",,"1147.500000",,"239.250000","0.000000",,,,,,,,,"9.000000","8632.750000","9486.000000","10.125000",,"353.250000",,,,"3.400000","1.125000","2.666667","7.000000","4.875000","0.000000","70.600000","0.000000","15.200000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"838.000000",,"838.000000",,"838.000000",,"317.500000","0.000000",,,,,,,,,"7.000000","6305.750000","9348.750000","2.250000",,"428.250000",,,,"2.400000","0.250000","3.333333","12.000000","4.000000","0.000000","49.200000","0.000000","4.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"972.250000",,"972.250000",,"972.250000",,"284.000000","0.000000",,,,,,,,,"5.250000","7314.250000","9480.000000","5.375000",,"275.625000",,,,"1.800000","0.750000","3.000000","8.000000","2.500000","0.000000","39.600000","0.000000","11.600000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"757.500000",,"757.500000",,"757.500000",,"294.250000","0.000000",,,,,,,,,"128.250000","5700.250000","13223.750000","5434.500000",,"328.500000",,,,"54.800000","99.375000","1.666667","9.333333","2.250000","0.000000","1096.200000","0.000000","1068.600000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"301.750000",,"301.750000",,"301.750000",,"157.250000","0.000000",,,,,,,,,"201.000000","2272.500000","17358.750000","7626.250000",,"23.250000",,,,"83.200000","153.750000","1.666667","0.666667","2.250000","0.000000","1665.400000","0.000000","1638.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"340.250000",,"340.250000",,"340.250000",,"174.500000","0.000000",,,,,,,,,"219.000000","2562.250000","16424.250000","6782.375000",,"3898.125000",,,,"74.000000","122.500000","1.666667","47.666667","15.750000","0.000000","1482.400000","0.000000","1311.000000","171.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"246.750000",,"246.750000",,"246.750000",,"209.750000","0.000000",,,,,,,,,"137.750000","1859.500000","16981.500000","2947.875000",,"2074.875000",,,,"73.800000","120.125000","2.666667","15.333333","17.625000","0.000000","1479.800000","0.000000","1288.400000","191.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","30.000000",,,,,,,,,"145.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"164.250000",,"164.250000",,"164.250000",,"134.000000","0.000000",,,,,,,,,"336.000000","1238.500000","18437.250000","9678.250000",,"8990.250000",,,,"137.200000","222.500000","3.000000","23.000000","34.750000","0.000000","2746.400000","0.000000","2372.200000","374.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","10.000000",,,,,,,,,"64.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.250000",,"179.250000",,"179.250000",,"205.250000","0.000000",,,,,,,,,"318.750000","1351.000000","17913.500000","8686.125000",,"10420.000000",,,,"127.600000","208.750000","1.666667","34.000000","30.375000","0.000000","2552.400000","0.000000","2226.400000","326.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"114.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"137.750000",,"137.750000",,"137.750000",,"147.000000","0.000000",,,,,,,,,"38.250000","1037.750000","18180.000000","631.625000",,"152.750000",,,,"23.200000","31.250000","2.000000","1.666667","11.875000","0.000000","465.600000","0.000000","334.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"89.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"131.750000",,"131.750000",,"131.750000",,"214.000000","0.000000",,,,,,,,,"18.750000","994.250000","17890.000000","45.250000",,"106.000000",,,,"6.400000","3.375000","1.333333","1.666667","8.625000","0.000000","131.800000","0.000000","37.600000","94.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","11.000000",,,,,,,,,"2409.000000","2501.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"272.750000",,"272.750000",,"272.750000",,"234.000000","0.000000",,,,,,,,,"77.250000","2053.250000","16793.000000","27.000000",,"4003.875000",,,,"23.800000","1.500000","7.666667","23.000000","43.000000","0.000000","479.400000","0.000000","18.600000","460.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1986.000000","19.000000",,,,,,,,,"27730.000000","3613.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"139.000000",,"139.000000",,"139.000000",,"160.750000","0.000000",,,,,,,,,"6.250000","1049.000000","18475.000000","15.375000",,"202.750000",,,,"4.000000","0.750000","3.333333","2.666667","6.250000","0.000000","80.000000","0.000000","10.400000","69.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"202.000000",,"202.000000",,"202.000000",,"169.750000","0.000000",,,,,,,,,"4.750000","1521.250000","17906.250000","6.750000",,"129.750000",,,,"5.400000","0.000000","3.333333","1.666667","9.750000","0.000000","109.800000","0.000000","2.200000","107.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"109.250000",,"109.250000",,"109.250000",,"169.500000","0.000000",,,,,,,,,"4.250000","825.500000","18638.750000","2.250000",,"69.750000",,,,"2.200000","0.000000","1.333333","1.333333","4.125000","0.000000","46.800000","0.000000","0.400000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"140.750000","0.000000",,,,,,,,,"1.250000","453.500000","19198.500000","0.000000",,"42.625000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"103.500000","0.000000",,,,,,,,,"1.750000","510.750000","19209.750000","0.000000",,"43.875000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.600000","0.000000","0.400000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"96.500000","0.000000",,,,,,,,,"1.250000","453.750000","19397.250000","0.000000",,"20.625000",,,,"0.800000","0.000000","0.000000","13.666667","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"113.250000","0.000000",,,,,,,,,"1.000000","445.750000","19323.000000","0.000000",,"18.000000",,,,"0.800000","0.000000","0.000000","87.333333","1.500000","0.000000","19.800000","0.000000","0.200000","19.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.750000",,"70.750000",,"70.750000",,"101.500000","0.000000",,,,,,,,,"1.250000","536.750000","19283.250000","0.000000",,"36.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"126.500000","0.000000",,,,,,,,,"0.750000","452.750000","19248.250000","0.000000",,"27.625000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"118.250000","0.000000",,,,,,,,,"0.750000","441.750000","19263.250000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","0.000000","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"88.250000",,"88.250000",,"88.250000",,"112.000000","0.000000",,,,,,,,,"3.250000","667.500000","19030.000000","0.000000",,"88.125000",,,,"3.800000","0.000000","0.000000","0.333333","7.125000","0.000000","79.800000","0.000000","0.200000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"106.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"177.000000",,"177.000000",,"177.000000",,"171.750000","0.000000",,,,,,,,,"10.500000","1333.750000","17748.750000","16.500000",,"162.250000",,,,"7.400000","1.375000","2.333333","1.333333","12.250000","0.000000","148.000000","0.000000","16.400000","131.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"455.000000","544.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"255.250000",,"255.250000",,"255.250000",,"181.250000","0.000000",,,,,,,,,"19.750000","1923.000000","16834.000000","14.500000",,"317.875000",,,,"9.000000","0.625000","1.333333","3.000000","16.000000","0.000000","181.800000","0.000000","8.200000","173.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","15.000000",,,,,,,,,"2880.000000","3071.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"242.500000",,"242.500000",,"242.500000",,"123.750000","0.000000",,,,,,,,,"42.750000","1827.250000","17293.500000","0.250000",,"3283.000000",,,,"15.600000","0.000000","2.666667","19.000000","28.875000","0.000000","313.000000","0.000000","1.200000","311.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","5.000000",,,,,,,,,"1035.000000","1113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.250000",,"179.250000",,"179.250000",,"286.500000","0.000000",,,,,,,,,"3.750000","1353.000000","17748.250000","0.625000",,"218.625000",,,,"4.000000","0.000000","4.333333","2.333333","7.375000","0.000000","82.200000","0.000000","2.000000","80.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"108.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"112.750000",,"112.750000",,"112.750000",,"301.000000","0.000000",,,,,,,,,"2.500000","850.750000","18167.250000","0.000000",,"90.375000",,,,"3.800000","0.000000","0.333333","4.333333","7.000000","0.000000","77.800000","0.000000","0.200000","77.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"151.750000",,"151.750000",,"151.750000",,"213.500000","0.000000",,,,,,,,,"2.500000","1145.750000","17743.750000","0.000000",,"100.875000",,,,"3.600000","0.000000","0.000000","1.000000","6.625000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"173.500000","0.000000",,,,,,,,,"1.500000","452.500000","19107.750000","0.000000",,"46.125000",,,,"2.000000","0.000000","0.000000","3.000000","3.625000","0.000000","42.600000","0.000000","0.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"177.250000","0.000000",,,,,,,,,"0.500000","460.000000","19198.000000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"160.250000","0.000000",,,,,,,,,"1.250000","486.250000","19026.000000","0.000000",,"37.500000",,,,"1.400000","0.000000","0.000000","0.333333","2.625000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"112.250000","0.000000",,,,,,,,,"0.750000","438.000000","19373.000000","0.000000",,"13.875000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"191.250000","0.000000",,,,,,,,,"0.500000","412.750000","18993.500000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"118.750000","0.000000",,,,,,,,,"2.000000","480.000000","19166.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.000000","2.875000","0.000000","35.200000","0.000000","0.200000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"132.000000","0.000000",,,,,,,,,"0.250000","404.000000","19248.000000","0.000000",,"8.125000",,,,"0.200000","0.000000","0.000000","0.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"157.000000","0.000000",,,,,,,,,"0.750000","408.500000","19278.250000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"132.250000","0.000000",,,,,,,,,"2.000000","497.750000","19234.000000","0.000000",,"48.750000",,,,"2.000000","0.000000","0.000000","1.333333","3.750000","0.000000","42.200000","0.000000","0.000000","42.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"111.750000","0.000000",,,,,,,,,"7.750000","1097.750000","18184.750000","0.250000",,"156.625000",,,,"7.000000","0.000000","6.000000","1.333333","12.000000","0.000000","142.000000","0.000000","1.400000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"488.000000","586.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"154.750000",,"154.750000",,"154.750000",,"149.250000","0.000000",,,,,,,,,"6.000000","1169.500000","17919.750000","52.875000",,"103.375000",,,,"5.400000","3.000000","0.333333","1.000000","7.625000","0.000000","110.200000","0.000000","35.800000","74.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"97.500000",,"97.500000",,"97.500000",,"228.250000","0.000000",,,,,,,,,"2.000000","735.750000","18442.500000","12.375000",,"65.625000",,,,"2.600000","0.375000","1.666667","2.333333","4.125000","0.000000","54.200000","0.000000","7.600000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"127.500000",,"127.500000",,"127.500000",,"120.250000","0.000000",,,,,,,,,"6.500000","963.000000","18459.500000","4.875000",,"124.750000",,,,"5.600000","0.000000","4.666667","2.000000","10.375000","0.000000","112.800000","0.000000","0.800000","112.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"64.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"112.500000",,"112.500000",,"112.500000",,"156.750000","0.000000",,,,,,,,,"3.250000","850.250000","18498.250000","0.000000",,"55.875000",,,,"1.800000","0.000000","0.000000","1.000000","3.375000","0.000000","39.000000","0.000000","0.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","419.500000","19175.750000","0.000000",,"39.375000",,,,"2.000000","0.000000","1.333333","1.333333","3.750000","0.000000","42.800000","0.000000","0.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"157.500000","0.000000",,,,,,,,,"1.250000","452.750000","19200.500000","12.625000",,"18.750000",,,,"1.600000","1.000000","2.000000","1.000000","1.375000","0.000000","34.800000","0.000000","15.800000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"164.500000","0.000000",,,,,,,,,"13.250000","516.500000","19016.500000","241.000000",,"34.875000",,,,"6.600000","10.625000","1.666667","0.333333","1.375000","0.000000","133.000000","0.000000","114.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"246.000000","302.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","422.000000","19207.750000","0.000000",,"33.375000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","38.400000","0.000000","0.000000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"106.500000","0.000000",,,,,,,,,"0.750000","416.750000","19279.250000","0.000000",,"13.500000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.400000","0.000000","0.000000","10.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"114.250000","0.000000",,,,,,,,,"2.000000","427.000000","19296.000000","0.000000",,"19.500000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"111.000000","0.000000",,,,,,,,,"4.000000","433.000000","19307.500000","0.000000",,"16.125000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.600000","0.000000","0.000000","11.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"102.750000","0.000000",,,,,,,,,"1.750000","447.750000","19294.000000","0.000000",,"16.000000",,,,"0.800000","0.000000","2.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.200000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"125.250000","0.000000",,,,,,,,,"0.750000","423.500000","19229.250000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"108.250000",,"108.250000",,"108.250000",,"127.000000","0.000000",,,,,,,,,"7.500000","817.750000","18757.500000","2.625000",,"126.000000",,,,"5.600000","0.000000","6.000000","6.333333","9.875000","0.000000","112.400000","0.000000","0.800000","111.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"405.000000","480.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"160.750000",,"160.750000",,"160.750000",,"144.500000","0.000000",,,,,,,,,"4.750000","1212.750000","17988.000000","1.875000",,"127.125000",,,,"5.000000","0.000000","0.666667","22.333333","9.500000","0.000000","103.600000","0.000000","2.000000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"245.000000","290.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"222.750000",,"222.750000",,"222.750000",,"117.750000","0.000000",,,,,,,,,"15.750000","1680.250000","17308.250000","0.000000",,"297.000000",,,,"8.200000","0.000000","1.000000","7.666667","15.250000","0.000000","165.000000","0.000000","0.400000","164.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","9.000000",,,,,,,,,"1570.000000","1763.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.750000",,"68.750000",,"68.750000",,"138.750000","0.000000",,,,,,,,,"5.000000","523.000000","19175.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","3.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.000000","3.000000",,,,,,,,,"732.000000","729.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.500000",,"64.500000",,"64.500000",,"239.250000","0.000000",,,,,,,,,"4.000000","487.250000","18849.250000","0.000000",,"3.000000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","4.000000",,,,,,,,,"842.000000","842.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"228.000000",,"228.000000",,"228.000000",,"189.500000","0.000000",,,,,,,,,"35.000000","1717.250000","17721.000000","1.875000",,"1793.250000",,,,"10.200000","0.000000","2.666667","21.000000","18.750000","0.000000","206.600000","0.000000","3.600000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1035.000000","13.000000",,,,,,,,,"14803.000000","2489.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"122.250000",,"122.250000",,"122.250000",,"247.500000","0.000000",,,,,,,,,"5.250000","922.750000","18285.250000","2.250000",,"126.750000",,,,"5.800000","0.000000","0.666667","1.666667","10.750000","0.000000","119.600000","0.000000","1.800000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"158.000000","188.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"182.500000","0.000000",,,,,,,,,"0.750000","501.750000","19063.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.800000","0.000000","0.000000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.750000",,"69.750000",,"69.750000",,"160.000000","0.000000",,,,,,,,,"11.500000","527.250000","19121.250000","372.750000",,"24.375000",,,,"4.400000","6.000000","2.333333","1.000000","2.250000","0.000000","91.400000","0.000000","66.200000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"386.000000","433.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.500000",,"162.500000",,"162.500000",,"147.500000","0.000000",,,,,,,,,"28.250000","1224.000000","18232.250000","581.125000",,"52.375000",,,,"25.600000","44.500000","0.666667","1.000000","3.250000","0.000000","512.800000","0.000000","476.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"160.000000","175.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"118.250000","0.000000",,,,,,,,,"1.000000","422.250000","19271.500000","0.000000",,"28.000000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"115.500000","0.000000",,,,,,,,,"0.500000","410.500000","19302.000000","0.000000",,"36.625000",,,,"0.600000","0.000000","0.000000","1.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"124.750000","0.000000",,,,,,,,,"2.250000","495.000000","19173.250000","0.000000",,"46.000000",,,,"1.600000","0.000000","0.000000","0.333333","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"113.500000","0.000000",,,,,,,,,"0.750000","405.250000","19295.750000","0.000000",,"28.000000",,,,"1.200000","0.000000","0.000000","11.333333","2.125000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"108.750000","0.000000",,,,,,,,,"0.500000","402.750000","19357.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.666667","0.625000","0.000000","9.200000","0.000000","0.000000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"126.250000","0.000000",,,,,,,,,"1.500000","511.000000","19204.500000","0.000000",,"54.750000",,,,"2.200000","0.000000","1.333333","0.666667","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"146.500000","0.000000",,,,,,,,,"15.750000","1197.000000","18123.250000","6.750000",,"230.125000",,,,"10.200000","0.375000","0.333333","0.333333","18.375000","0.000000","206.400000","0.000000","7.400000","199.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","7.000000",,,,,,,,,"929.000000","1171.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"130.500000","0.000000",,,,,,,,,"5.750000","1113.250000","18286.500000","1.500000",,"143.125000",,,,"5.400000","0.000000","2.666667","1.000000","10.000000","0.000000","109.800000","0.000000","0.400000","109.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"212.000000","244.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"120.750000","0.000000",,,,,,,,,"1.000000","497.000000","19167.000000","0.000000",,"30.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"153.500000","0.000000",,,,,,,,,"1.000000","406.500000","19257.500000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"94.250000","0.000000",,,,,,,,,"1.000000","434.250000","19351.750000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","5.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.500000",,"116.500000",,"116.500000",,"125.250000","0.000000",,,,,,,,,"14.250000","881.000000","18691.500000","158.625000",,"62.625000",,,,"9.800000","15.000000","0.333333","0.666667","2.875000","0.000000","197.000000","0.000000","163.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"224.500000","0.000000",,,,,,,,,"1.000000","405.500000","19090.750000","0.000000",,"23.250000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"190.500000","0.000000",,,,,,,,,"0.500000","413.750000","19097.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","2.666667","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"160.500000","0.000000",,,,,,,,,"1.000000","500.000000","19105.000000","0.000000",,"45.750000",,,,"1.800000","0.000000","0.000000","3.000000","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"130.250000","0.000000",,,,,,,,,"0.500000","389.750000","19273.750000","0.000000",,"10.375000",,,,"0.200000","0.000000","0.000000","6.666667","0.375000","0.000000","7.400000","0.000000","0.000000","7.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"124.500000","0.000000",,,,,,,,,"1.000000","420.500000","19223.500000","0.000000",,"25.000000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.200000","0.000000","0.000000","24.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.000000",,"147.000000",,"147.000000",,"151.500000","0.000000",,,,,,,,,"6.250000","1111.500000","18403.250000","0.750000",,"118.750000",,,,"5.000000","0.000000","1.666667","1.000000","9.250000","0.000000","100.800000","0.000000","0.600000","100.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"78.250000",,"78.250000",,"78.250000",,"139.000000","0.000000",,,,,,,,,"2.500000","591.250000","19009.500000","0.000000",,"57.750000",,,,"1.800000","0.000000","0.000000","0.666667","3.250000","0.000000","36.800000","0.000000","0.000000","36.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.500000",,"58.500000",,"58.500000",,"123.250000","0.000000",,,,,,,,,"1.000000","443.500000","19295.500000","0.000000",,"30.375000",,,,"1.200000","0.000000","0.000000","3.666667","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"121.000000","0.000000",,,,,,,,,"1.000000","512.500000","19125.250000","0.000000",,"33.000000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"155.500000","0.000000",,,,,,,,,"3.250000","421.250000","19143.000000","0.000000",,"23.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"114.500000","0.000000",,,,,,,,,"0.500000","431.000000","19341.000000","0.000000",,"20.625000",,,,"0.600000","0.000000","0.000000","5.000000","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"129.500000","0.000000",,,,,,,,,"2.000000","497.000000","19211.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","12.333333","2.500000","0.000000","29.400000","0.000000","0.000000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"189.500000","0.000000",,,,,,,,,"5.000000","412.250000","19131.250000","0.000000",,"20.625000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.400000","0.000000","0.000000","23.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"261.750000","0.000000",,,,,,,,,"1.250000","394.250000","19025.000000","0.000000",,"11.125000",,,,"0.200000","0.000000","0.000000","1.333333","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.750000",,"66.750000",,"66.750000",,"311.750000","0.000000",,,,,,,,,"1.750000","506.000000","18766.000000","3.375000",,"51.375000",,,,"2.200000","0.375000","0.666667","9.000000","3.750000","0.000000","45.800000","0.000000","4.400000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"102.250000",,"102.250000",,"102.250000",,"346.000000","0.000000",,,,,,,,,"3.250000","772.750000","18513.500000","0.000000",,"61.875000",,,,"3.000000","0.000000","1.000000","1.333333","5.625000","0.000000","63.000000","0.000000","0.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"288.000000","0.000000",,,,,,,,,"5.250000","897.500000","18532.750000","1.875000",,"131.875000",,,,"4.400000","0.000000","2.000000","1.333333","8.250000","0.000000","91.000000","0.000000","0.600000","90.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"187.250000","0.000000",,,,,,,,,"1.250000","486.500000","19063.500000","0.000000",,"29.625000",,,,"1.000000","0.000000","0.000000","18.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"150.500000","0.000000",,,,,,,,,"0.500000","413.000000","19210.000000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.500000",,"59.500000",,"59.500000",,"128.250000","0.000000",,,,,,,,,"2.000000","452.250000","19229.000000","0.000000",,"26.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.000000",,"71.000000",,"71.000000",,"124.250000","0.000000",,,,,,,,,"2.250000","535.750000","19193.250000","0.375000",,"51.750000",,,,"2.000000","0.000000","2.666667","3.666667","3.750000","0.000000","40.800000","0.000000","0.200000","40.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.250000",,"52.250000",,"52.250000",,"171.000000","0.000000",,,,,,,,,"1.250000","396.250000","19177.500000","0.000000",,"16.000000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","16.200000","0.000000","0.000000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"120.500000","0.000000",,,,,,,,,"0.250000","415.500000","19324.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","14.000000","0.000000","0.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"203.500000","0.000000",,,,,,,,,"1.750000","504.750000","19065.000000","0.000000",,"45.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","34.200000","0.000000","0.000000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"387.000000","0.000000",,,,,,,,,"0.500000","413.750000","18961.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.200000","0.000000","0.000000","5.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"285.000000","0.000000",,,,,,,,,"0.750000","417.750000","19037.250000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"514.750000","0.000000",,,,,,,,,"6.500000","1279.000000","17760.500000","2.125000",,"140.625000",,,,"4.800000","0.000000","8.333333","0.666667","8.875000","0.000000","98.400000","0.000000","1.600000","96.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"115.250000",,"115.250000",,"115.250000",,"424.500000","0.000000",,,,,,,,,"3.000000","871.250000","18358.250000","0.000000",,"104.250000",,,,"4.200000","0.000000","0.000000","1.333333","7.875000","0.000000","86.200000","0.000000","0.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.000000",,"145.000000",,"145.000000",,"234.000000","0.000000",,,,,,,,,"5.000000","1094.750000","18246.250000","0.000000",,"106.500000",,,,"4.400000","0.000000","0.000000","1.666667","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"115.500000",,"115.500000",,"115.500000",,"241.750000","0.000000",,,,,,,,,"2.250000","871.750000","18636.250000","0.000000",,"90.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","55.400000","0.000000","0.000000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"140.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"151.000000",,"151.000000",,"151.000000",,"400.500000","0.000000",,,,,,,,,"4.250000","1139.750000","17702.000000","1.125000",,"117.750000",,,,"4.600000","0.000000","0.666667","1.333333","8.500000","0.000000","94.000000","0.000000","1.400000","92.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.750000",,"71.750000",,"71.750000",,"309.250000","0.000000",,,,,,,,,"1.750000","540.000000","18743.000000","0.375000",,"73.875000",,,,"2.200000","0.000000","2.000000","1.000000","4.000000","0.000000","45.000000","0.000000","0.200000","44.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"218.000000","0.000000",,,,,,,,,"1.750000","499.250000","19000.500000","0.000000",,"49.000000",,,,"2.200000","0.000000","0.000000","2.000000","4.000000","0.000000","45.000000","0.000000","0.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"267.250000","0.000000",,,,,,,,,"0.500000","411.750000","19043.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"236.000000","0.000000",,,,,,,,,"0.500000","413.500000","19090.750000","0.000000",,"27.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"221.000000","0.000000",,,,,,,,,"3.000000","492.250000","18910.000000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","35.400000","0.000000","0.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"160.500000","0.000000",,,,,,,,,"0.250000","393.250000","19235.250000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"146.250000","0.000000",,,,,,,,,"1.000000","421.750000","19215.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"253.000000","0.000000",,,,,,,,,"0.750000","490.000000","18851.750000","0.000000",,"33.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"285.250000","0.000000",,,,,,,,,"0.500000","401.250000","19002.750000","0.000000",,"15.625000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","15.600000","0.000000","0.000000","15.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"265.000000","0.000000",,,,,,,,,"1.500000","416.000000","19001.750000","0.000000",,"34.500000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.500000",,"61.500000",,"61.500000",,"403.500000","0.000000",,,,,,,,,"1.250000","464.250000","18667.500000","0.000000",,"48.250000",,,,"2.200000","0.000000","0.000000","0.666667","4.000000","0.000000","45.200000","0.000000","0.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"196.500000","0.000000",,,,,,,,,"1.250000","460.500000","19128.000000","0.375000",,"25.875000",,,,"1.000000","0.000000","2.333333","1.000000","1.750000","0.000000","21.800000","0.000000","0.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"414.250000","0.000000",,,,,,,,,"0.500000","407.750000","18876.250000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"547.750000","0.000000",,,,,,,,,"1.250000","478.250000","18546.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","34.400000","0.000000","0.000000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"584.750000","0.000000",,,,,,,,,"0.750000","385.250000","18552.500000","0.000000",,"22.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"49.000000",,"49.000000",,"49.000000",,"543.750000","0.000000",,,,,,,,,"0.500000","370.750000","18663.250000","0.000000",,"16.000000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"304.250000","0.000000",,,,,,,,,"1.750000","498.250000","18846.500000","0.000000",,"34.875000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"174.750000","0.000000",,,,,,,,,"2.250000","433.750000","19198.000000","0.000000",,"26.875000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","28.200000","0.000000","0.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"229.250000","0.000000",,,,,,,,,"0.500000","401.500000","19091.000000","0.000000",,"10.125000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.250000",,"66.250000",,"66.250000",,"145.500000","0.000000",,,,,,,,,"1.250000","502.750000","19121.000000","0.000000",,"42.750000",,,,"1.800000","0.000000","0.000000","1.333333","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"166.750000","0.000000",,,,,,,,,"2.500000","516.500000","19013.500000","0.000000",,"75.250000",,,,"4.200000","0.000000","0.000000","0.666667","7.750000","0.000000","87.200000","0.000000","0.000000","87.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"234.000000","0.000000",,,,,,,,,"5.000000","1277.250000","18109.250000","2.625000",,"150.375000",,,,"4.800000","0.000000","0.333333","0.666667","8.875000","0.000000","99.400000","0.000000","3.200000","96.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"41.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"186.500000","0.000000",,,,,,,,,"2.000000","512.250000","19046.000000","0.000000",,"61.125000",,,,"2.600000","0.000000","0.000000","1.333333","4.750000","0.000000","53.400000","0.000000","0.000000","53.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"187.750000","0.000000",,,,,,,,,"0.500000","384.750000","19146.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","2.000000","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"183.250000","0.000000",,,,,,,,,"0.750000","423.000000","19142.750000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"293.000000","0.000000",,,,,,,,,"1.000000","479.750000","18797.250000","0.000000",,"37.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"252.000000","0.000000",,,,,,,,,"1.250000","399.250000","19075.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"206.500000","0.000000",,,,,,,,,"1.000000","413.000000","19127.250000","0.000000",,"18.000000",,,,"0.400000","0.000000","0.000000","2.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"225.000000","0.000000",,,,,,,,,"1.000000","497.500000","18920.250000","0.000000",,"42.000000",,,,"1.800000","0.000000","0.000000","0.666667","3.375000","0.000000","37.600000","0.000000","0.000000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"157.250000","0.000000",,,,,,,,,"0.750000","405.250000","19162.750000","0.000000",,"15.375000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"132.250000","0.000000",,,,,,,,,"0.750000","424.000000","19264.000000","0.000000",,"21.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"85.000000",,"85.000000",,"85.000000",,"215.750000","0.000000",,,,,,,,,"4.000000","641.250000","18636.500000","0.000000",,"110.500000",,,,"5.600000","0.000000","0.000000","0.666667","10.500000","0.000000","115.600000","0.000000","0.000000","115.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"215.500000",,"215.500000",,"215.500000",,"348.250000","0.000000",,,,,,,,,"224.000000","1623.500000","17417.500000","5071.500000",,"5363.625000",,,,"66.000000","100.625000","1.666667","23.000000","22.500000","0.000000","1321.400000","0.000000","1077.600000","243.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"69.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"205.750000",,"205.750000",,"205.750000",,"405.750000","0.000000",,,,,,,,,"108.750000","1549.000000","17077.250000","527.625000",,"270.750000",,,,"70.000000","121.000000","1.000000","18.666667","9.625000","0.000000","1400.000000","0.000000","1293.600000","106.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","246.000000",,,,,,,,,"2313.000000","4488.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"175.000000",,"175.000000",,"175.000000",,"444.250000","0.000000",,,,,,,,,"102.000000","1318.250000","17540.000000","306.875000",,"214.875000",,,,"40.200000","73.625000","2.000000","2.666667","1.500000","0.000000","805.400000","0.000000","786.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2632.000000","38.000000",,,,,,,,,"36123.000000","4025.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"341.250000",,"341.250000",,"341.250000",,"669.500000","0.000000",,,,,,,,,"285.250000","2569.500000","15648.250000","0.000000",,"8106.750000",,,,"18.800000","0.000000","0.000000","25.666667","35.125000","0.000000","377.800000","0.000000","0.000000","377.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20487.000000","78.000000",,,,,,,,,"277561.000000","24215.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"289.000000",,"289.000000",,"289.000000",,"1043.750000","0.000000",,,,,,,,,"238.750000","2176.750000","15862.000000","0.000000",,"11451.375000",,,,"36.800000","0.000000","4.000000","21.000000","68.875000","0.000000","737.200000","0.000000","0.600000","736.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9414.000000","34.000000",,,,,,,,,"127566.000000","10574.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"278.500000",,"278.500000",,"278.500000",,"593.000000","0.000000",,,,,,,,,"265.750000","2097.500000","16540.750000","6.375000",,"9827.250000",,,,"41.200000","1.125000","2.666667","15.333333","76.125000","0.000000","827.600000","0.000000","12.800000","814.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13348.000000","54.000000",,,,,,,,,"180882.000000","16401.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"345.000000",,"345.000000",,"345.000000",,"625.000000","0.000000",,,,,,,,,"224.250000","2598.500000","16045.000000","1891.875000",,"7637.500000",,,,"80.000000","63.875000","1.333333","10.666667","85.375000","0.000000","1600.000000","0.000000","684.000000","916.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3430.000000","16.000000",,,,,,,,,"46545.000000","4395.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"525.500000",,"525.500000",,"525.500000",,"499.250000","0.000000",,,,,,,,,"36.250000","3956.250000","14345.500000","235.375000",,"936.125000",,,,"15.600000","10.500000","0.666667","8.000000","18.750000","0.000000","312.400000","0.000000","112.800000","199.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"469.000000",,"469.000000",,"469.000000",,"769.750000","0.000000",,,,,,,,,"18.000000","3529.750000","14101.500000","44.250000",,"84.625000",,,,"8.200000","7.500000","1.000000","3.333333","7.500000","0.000000","165.400000","0.000000","82.800000","82.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"400.500000",,"400.500000",,"400.500000",,"615.250000","0.000000",,,,,,,,,"14.750000","3016.750000","13997.750000","46.125000",,"321.375000",,,,"10.000000","10.125000","0.333333","2.333333","8.250000","0.000000","200.600000","0.000000","110.000000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"93.000000","74.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"455.750000",,"455.750000",,"455.750000",,"554.250000","0.000000",,,,,,,,,"3.500000","3430.750000","13868.250000","0.000000",,"82.875000",,,,"4.000000","0.000000","0.000000","1.333333","7.500000","0.000000","81.400000","0.000000","0.000000","81.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"102.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"596.750000",,"596.750000",,"596.750000",,"513.000000","0.000000",,,,,,,,,"8.250000","4491.250000","12623.500000","37.500000",,"277.125000",,,,"6.800000","3.000000","0.666667","2.666667","9.750000","0.000000","139.000000","0.000000","34.200000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"66.000000","78.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"791.000000",,"791.000000",,"791.000000",,"546.250000","0.000000",,,,,,,,,"15.500000","5951.500000","9203.000000","32.250000",,"531.375000",,,,"14.000000","2.250000","1.333333","2.333333","23.625000","0.000000","281.200000","0.000000","25.400000","255.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"76.000000","77.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"921.500000",,"921.500000",,"921.500000",,"540.500000","0.000000",,,,,,,,,"4.750000","6932.500000","9118.500000","0.000000",,"379.125000",,,,"2.800000","0.000000","0.000000","10.333333","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"46.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"805.500000",,"805.500000",,"805.500000",,"589.000000","0.000000",,,,,,,,,"3.250000","6059.250000","9056.500000","1.125000",,"307.750000",,,,"2.000000","0.000000","0.000000","10.333333","3.625000","0.000000","43.600000","0.000000","1.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"889.250000",,"889.250000",,"889.250000",,"679.250000","0.000000",,,,,,,,,"3.000000","6690.250000","9006.000000","0.000000",,"361.750000",,,,"2.000000","0.000000","0.000000","15.333333","3.625000","0.000000","42.400000","0.000000","0.400000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1189.250000",,"1189.250000",,"1189.250000",,"613.000000","0.000000",,,,,,,,,"22.500000","8945.250000","9404.750000","80.250000",,"970.000000",,,,"7.200000","8.625000","0.333333","26.333333","4.750000","0.000000","145.800000","0.000000","92.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1053.500000",,"1053.500000",,"1053.500000",,"541.500000","0.000000",,,,,,,,,"8.500000","7924.750000","9234.250000","0.750000",,"349.375000",,,,"3.000000","0.000000","0.666667","10.000000","5.500000","0.000000","63.800000","0.000000","2.200000","61.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1136.250000",,"1136.250000",,"1136.250000",,"356.500000","0.000000",,,,,,,,,"12.750000","8547.250000","9346.500000","6.750000",,"1193.625000",,,,"4.000000","0.375000","0.666667","28.666667","6.625000","0.000000","80.200000","0.000000","7.800000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"938.500000",,"938.500000",,"938.500000",,"435.000000","0.000000",,,,,,,,,"3.750000","7061.000000","9166.250000","0.000000",,"371.875000",,,,"1.800000","0.000000","2.666667","17.000000","3.250000","0.000000","39.400000","0.000000","0.200000","39.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"959.500000",,"959.500000",,"959.500000",,"365.750000","0.000000",,,,,,,,,"6.750000","7218.500000","9310.250000","0.375000",,"670.500000",,,,"1.600000","0.000000","4.000000","32.666667","3.000000","0.000000","35.400000","0.000000","1.400000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.750000",,"832.750000",,"832.750000",,"426.500000","0.000000",,,,,,,,,"5.750000","6264.750000","9285.750000","45.750000",,"348.375000",,,,"4.800000","4.125000","0.333333","9.333333","4.500000","0.000000","99.400000","0.000000","47.800000","51.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"880.000000",,"880.000000",,"880.000000",,"507.750000","0.000000",,,,,,,,,"2.750000","6621.250000","9099.750000","0.000000",,"316.750000",,,,"1.800000","0.000000","6.000000","14.333333","3.250000","0.000000","36.800000","0.000000","0.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1054.250000",,"1054.250000",,"1054.250000",,"747.500000","0.000000",,,,,,,,,"5.250000","7931.000000","9011.000000","0.000000",,"387.000000",,,,"2.000000","0.000000","1.000000","10.000000","3.750000","0.000000","43.200000","0.000000","0.800000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"793.250000",,"793.250000",,"793.250000",,"654.500000","0.000000",,,,,,,,,"5.000000","5966.750000","9039.000000","0.000000",,"284.500000",,,,"2.200000","0.000000","2.333333","7.333333","4.000000","0.000000","46.400000","0.000000","0.200000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"659.000000",,"659.000000",,"659.000000",,"989.000000","0.000000",,,,,,,,,"3.250000","4957.750000","8746.750000","0.000000",,"288.000000",,,,"1.200000","0.000000","10.333333","13.666667","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"798.250000",,"798.250000",,"798.250000",,"1215.500000","0.000000",,,,,,,,,"4.750000","6007.000000","8648.500000","0.000000",,"333.000000",,,,"1.600000","0.000000","0.666667","9.666667","3.000000","0.000000","35.400000","0.000000","0.200000","35.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.750000",,"604.750000",,"604.750000",,"2008.500000","0.000000",,,,,,,,,"2.750000","4550.000000","8218.750000","0.000000",,"239.875000",,,,"0.800000","0.000000","1.666667","9.666667","1.375000","0.000000","17.400000","0.000000","0.400000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"728.750000",,"728.750000",,"728.750000",,"2824.250000","0.000000",,,,,,,,,"3.000000","5483.500000","7714.250000","0.000000",,"233.250000",,,,"1.200000","0.000000","0.000000","10.333333","2.250000","0.000000","27.200000","0.000000","0.000000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"739.250000",,"739.250000",,"739.250000",,"2619.750000","0.000000",,,,,,,,,"3.250000","5560.750000","7874.750000","0.375000",,"194.500000",,,,"0.800000","0.000000","0.666667","14.000000","1.125000","0.000000","16.600000","0.000000","0.800000","15.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"666.500000",,"666.500000",,"666.500000",,"1319.000000","0.000000",,,,,,,,,"2.500000","5014.250000","8548.500000","0.000000",,"151.125000",,,,"1.200000","0.000000","1.000000","3.333333","2.250000","0.000000","24.800000","0.000000","0.400000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"611.500000",,"611.500000",,"611.500000",,"2970.000000","0.000000",,,,,,,,,"5.750000","4600.250000","7585.000000","0.250000",,"466.875000",,,,"1.800000","0.000000","3.000000","19.333333","3.250000","0.000000","38.400000","0.000000","0.600000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"842.000000",,"842.000000",,"842.000000",,"2099.500000","0.000000",,,,,,,,,"2.750000","6337.000000","8152.500000","0.000000",,"294.375000",,,,"0.800000","0.000000","3.000000","17.000000","1.500000","0.000000","17.400000","0.000000","0.200000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"901.000000",,"901.000000",,"901.000000",,"2142.250000","0.000000",,,,,,,,,"2.750000","6780.000000","8180.250000","0.000000",,"132.000000",,,,"1.200000","0.000000","0.000000","7.333333","2.250000","0.000000","27.200000","0.000000","0.200000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"597.000000",,"597.000000",,"597.000000",,"3233.000000","0.000000",,,,,,,,,"2.750000","4494.250000","7318.500000","0.000000",,"343.375000",,,,"1.000000","0.000000","3.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"11.000000","8.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"750.250000",,"750.250000",,"750.250000",,"2783.000000","0.000000",,,,,,,,,"2.500000","5644.250000","7714.500000","0.000000",,"211.750000",,,,"1.200000","0.000000","2.000000","5.000000","2.250000","0.000000","24.600000","0.000000","0.200000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"814.000000",,"814.000000",,"814.000000",,"2062.250000","0.000000",,,,,,,,,"6.000000","6124.250000","8049.500000","0.000000",,"298.375000",,,,"0.800000","0.000000","0.000000","14.666667","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"924.750000",,"924.750000",,"924.750000",,"1504.500000","0.000000",,,,,,,,,"4.750000","6956.000000","8562.750000","0.000000",,"300.750000",,,,"1.200000","0.000000","0.000000","11.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"646.750000",,"646.750000",,"646.750000",,"2153.750000","0.000000",,,,,,,,,"4.250000","4866.250000","8053.750000","0.000000",,"215.625000",,,,"1.200000","0.000000","4.666667","6.333333","2.250000","0.000000","27.800000","0.000000","0.600000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"875.000000",,"875.000000",,"875.000000",,"653.750000","0.000000",,,,,,,,,"3.000000","6582.750000","9037.250000","0.375000",,"309.625000",,,,"0.800000","0.000000","1.666667","15.000000","1.375000","0.000000","18.200000","0.000000","0.400000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"152.000000","143.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.000000",,"658.000000",,"658.000000",,"1330.500000","0.000000",,,,,,,,,"3.250000","4951.750000","8637.000000","0.000000",,"339.375000",,,,"1.800000","0.000000","0.000000","9.666667","3.250000","0.000000","36.400000","0.000000","0.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"738.250000",,"738.250000",,"738.250000",,"1421.250000","0.000000",,,,,,,,,"7.250000","5555.000000","8678.750000","0.000000",,"290.125000",,,,"0.800000","0.000000","5.333333","35.666667","1.375000","0.000000","16.600000","0.000000","0.400000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"948.250000",,"948.250000",,"948.250000",,"880.000000","0.000000",,,,,,,,,"4.250000","7134.000000","8969.500000","0.375000",,"385.750000",,,,"1.600000","0.000000","0.666667","11.333333","3.000000","0.000000","35.000000","0.000000","0.600000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"969.500000",,"969.500000",,"969.500000",,"733.500000","0.000000",,,,,,,,,"10.500000","7292.750000","9084.000000","0.000000",,"349.375000",,,,"1.600000","0.000000","6.666667","11.000000","2.875000","0.000000","33.600000","0.000000","0.400000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1182.750000",,"1182.750000",,"1182.750000",,"339.250000","0.000000",,,,,,,,,"4.750000","8896.000000","9404.000000","0.000000",,"352.875000",,,,"1.600000","0.000000","0.000000","11.333333","2.875000","0.000000","32.600000","0.000000","0.200000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1155.750000",,"1155.750000",,"1155.750000",,"390.500000","0.000000",,,,,,,,,"6.500000","8694.000000","9356.750000","0.000000",,"445.000000",,,,"1.800000","0.000000","10.000000","23.666667","3.375000","0.000000","38.000000","0.000000","0.400000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1196.250000",,"1196.250000",,"1196.250000",,"427.750000","0.000000",,,,,,,,,"4.750000","8998.500000","9282.000000","0.000000",,"331.875000",,,,"1.000000","0.000000","23.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1197.750000",,"1197.750000",,"1197.750000",,"486.250000","0.000000",,,,,,,,,"4.000000","9009.750000","9251.500000","0.000000",,"415.875000",,,,"1.800000","0.000000","1.000000","26.333333","3.000000","0.000000","36.000000","0.000000","0.400000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"833.750000",,"833.750000",,"833.750000",,"240.000000","0.000000",,,,,,,,,"2.750000","6271.000000","9370.500000","0.250000",,"272.250000",,,,"1.400000","0.000000","3.333333","12.666667","2.250000","0.000000","28.800000","0.000000","1.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"789.000000",,"789.000000",,"789.000000",,"216.500000","0.000000",,,,,,,,,"5.750000","5935.500000","9442.000000","0.000000",,"419.125000",,,,"1.600000","0.000000","2.333333","11.666667","2.875000","0.000000","32.400000","0.000000","0.200000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"809.000000",,"809.000000",,"809.000000",,"472.250000","0.000000",,,,,,,,,"2.000000","6086.250000","9185.250000","0.000000",,"213.750000",,,,"0.600000","0.000000","3.000000","11.333333","1.000000","0.000000","15.200000","0.000000","0.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"774.750000",,"774.750000",,"774.750000",,"348.250000","0.000000",,,,,,,,,"3.250000","5829.250000","9281.500000","0.250000",,"284.250000",,,,"1.400000","0.000000","7.666667","8.333333","2.500000","0.000000","29.200000","0.000000","1.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"785.250000",,"785.250000",,"785.250000",,"320.500000","0.000000",,,,,,,,,"47.750000","5908.750000","9309.750000","5.500000",,"3908.875000",,,,"14.800000","0.750000","6.666667","24.000000","26.625000","0.000000","296.800000","0.000000","11.800000","285.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"825.000000",,"825.000000",,"825.000000",,"429.750000","0.000000",,,,,,,,,"2.500000","6209.500000","9160.000000","1.125000",,"281.250000",,,,"0.600000","0.000000","2.666667","11.666667","1.125000","0.000000","15.400000","0.000000","1.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"778.000000",,"778.000000",,"778.000000",,"404.000000","0.000000",,,,,,,,,"83.750000","5853.250000","9461.750000","5.750000",,"7830.250000",,,,"30.400000","0.750000","6.000000","16.333333","55.875000","0.000000","610.200000","0.000000","11.400000","598.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"945.000000",,"945.000000",,"945.000000",,"560.750000","0.000000",,,,,,,,,"19.500000","7109.000000","9162.250000","14.500000",,"1636.750000",,,,"7.400000","1.375000","2.666667","29.000000","12.250000","0.000000","149.600000","0.000000","15.600000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"787.250000",,"787.250000",,"787.250000",,"513.000000","0.000000",,,,,,,,,"11.250000","5921.750000","9364.250000","16.500000",,"696.750000",,,,"5.000000","1.500000","6.000000","26.666667","7.375000","0.000000","100.400000","0.000000","18.000000","82.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"763.750000",,"763.750000",,"763.750000",,"470.000000","0.000000",,,,,,,,,"5.000000","5745.500000","9151.500000","1.125000",,"433.875000",,,,"1.400000","0.000000","2.666667","12.000000","2.625000","0.000000","31.800000","0.000000","1.400000","30.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"893.250000",,"893.250000",,"893.250000",,"360.500000","0.000000",,,,,,,,,"3.750000","6720.250000","9274.000000","0.000000",,"359.125000",,,,"1.600000","0.000000","0.000000","8.666667","3.000000","0.000000","35.800000","0.000000","0.000000","35.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"888.000000",,"888.000000",,"888.000000",,"426.750000","0.000000",,,,,,,,,"5.250000","6680.250000","9217.750000","0.375000",,"507.375000",,,,"1.600000","0.000000","6.000000","13.333333","2.625000","0.000000","32.800000","0.000000","1.600000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"850.000000",,"850.000000",,"850.000000",,"356.750000","0.000000",,,,,,,,,"25.500000","6393.500000","9354.000000","34.500000",,"1696.875000",,,,"8.200000","3.375000","2.333333","27.333333","11.875000","0.000000","165.600000","0.000000","36.800000","128.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"934.500000",,"934.500000",,"934.500000",,"374.500000","0.000000",,,,,,,,,"32.250000","7029.250000","9829.000000","843.500000",,"493.500000",,,,"13.000000","18.750000","2.333333","14.000000","5.250000","0.000000","263.600000","0.000000","205.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1034.000000",,"1034.000000",,"1034.000000",,"580.750000","0.000000",,,,,,,,,"86.250000","7778.000000","9981.500000","1437.750000",,"2006.250000",,,,"28.800000","37.000000","1.333333","18.666667","16.375000","0.000000","579.400000","0.000000","394.600000","184.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"895.750000",,"895.750000",,"895.750000",,"328.750000","0.000000",,,,,,,,,"36.000000","6740.500000","9422.250000","37.875000",,"2061.625000",,,,"16.600000","3.000000","6.333333","12.666667","28.500000","0.000000","332.800000","0.000000","34.600000","298.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"755.500000",,"755.500000",,"755.500000",,"472.500000","0.000000",,,,,,,,,"4.750000","5684.500000","9128.750000","6.000000",,"286.500000",,,,"1.000000","0.375000","0.666667","13.000000","1.125000","0.000000","22.400000","0.000000","7.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"902.750000",,"902.750000",,"902.750000",,"279.250000","0.000000",,,,,,,,,"3.750000","6789.500000","9328.250000","0.750000",,"305.125000",,,,"1.400000","0.000000","0.666667","21.666667","2.500000","0.000000","31.200000","0.000000","1.200000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"905.000000",,"905.000000",,"905.000000",,"312.750000","0.000000",,,,,,,,,"6.000000","6807.500000","9281.000000","0.750000",,"279.000000",,,,"1.400000","0.000000","0.666667","8.333333","2.250000","0.000000","28.400000","0.000000","0.800000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"946.750000",,"946.750000",,"946.750000",,"409.250000","0.000000",,,,,,,,,"2.750000","7123.250000","9284.000000","2.250000",,"343.750000",,,,"1.000000","0.000000","1.000000","12.000000","1.500000","0.000000","22.600000","0.000000","2.800000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"996.000000",,"996.000000",,"996.000000",,"462.750000","0.000000",,,,,,,,,"2.000000","7493.250000","9215.000000","0.750000",,"236.875000",,,,"1.000000","0.000000","2.666667","13.666667","1.500000","0.000000","21.000000","0.000000","2.400000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"955.750000",,"955.750000",,"955.750000",,"377.750000","0.000000",,,,,,,,,"6.000000","7191.000000","9389.750000","7.875000",,"315.000000",,,,"1.400000","0.750000","5.000000","10.333333","1.375000","0.000000","28.000000","0.000000","9.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"904.500000",,"904.500000",,"904.500000",,"508.750000","0.000000",,,,,,,,,"9.250000","6805.000000","9144.250000","1.500000",,"835.750000",,,,"4.200000","0.000000","1.000000","33.000000","7.875000","0.000000","87.800000","0.000000","1.600000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"812.750000",,"812.750000",,"812.750000",,"483.000000","0.000000",,,,,,,,,"13.000000","6115.750000","9536.250000","462.125000",,"521.625000",,,,"6.600000","8.250000","5.000000","36.666667","3.750000","0.000000","133.800000","0.000000","90.200000","43.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"639.250000",,"639.250000",,"639.250000",,"389.250000","0.000000",,,,,,,,,"116.750000","4808.000000","12682.750000","3511.875000",,"834.250000",,,,"49.400000","81.625000","3.000000","15.666667","10.500000","0.000000","990.000000","0.000000","874.200000","115.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"807.750000",,"807.750000",,"807.750000",,"461.000000","0.000000",,,,,,,,,"109.500000","6076.750000","10908.000000","1444.625000",,"4473.625000",,,,"45.800000","33.375000","4.333333","12.000000","52.125000","0.000000","916.000000","0.000000","358.400000","557.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"80.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"815.750000",,"815.750000",,"815.750000",,"426.500000","0.000000",,,,,,,,,"46.500000","6137.750000","10134.750000","841.375000",,"1519.500000",,,,"20.600000","19.000000","2.333333","17.666667","19.125000","0.000000","412.000000","0.000000","205.600000","206.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"135.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"900.000000",,"900.000000",,"900.000000",,"432.500000","0.000000",,,,,,,,,"64.250000","6770.500000","9303.000000","21.125000",,"4121.125000",,,,"26.000000","3.250000","1.666667","15.333333","45.375000","0.000000","521.400000","0.000000","36.400000","485.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"60.000000","59.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"689.000000",,"689.000000",,"689.000000",,"393.500000","0.000000",,,,,,,,,"44.500000","5183.500000","10051.500000","179.875000",,"2002.125000",,,,"14.400000","14.500000","3.000000","39.666667","12.000000","0.000000","289.600000","0.000000","158.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"73.000000","79.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"898.250000",,"898.250000",,"898.250000",,"296.750000","0.000000",,,,,,,,,"48.750000","6756.750000","10050.500000","94.125000",,"2885.125000",,,,"16.600000","6.375000","4.000000","30.333333","24.375000","0.000000","335.200000","0.000000","71.600000","263.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"62.000000","72.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"767.000000",,"767.000000",,"767.000000",,"268.500000","0.000000",,,,,,,,,"102.500000","5770.750000","9989.750000","101.875000",,"6552.750000",,,,"39.400000","5.625000","13.333333","21.666667","67.875000","0.000000","788.800000","0.000000","62.400000","726.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"861.750000",,"861.750000",,"861.750000",,"459.000000","0.000000",,,,,,,,,"89.750000","6482.500000","9393.500000","52.375000",,"5912.500000",,,,"33.000000","3.250000","2.333333","21.666667","58.125000","0.000000","662.600000","0.000000","39.000000","623.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"647.250000",,"647.250000",,"647.250000",,"518.000000","0.000000",,,,,,,,,"138.750000","4870.250000","11437.500000","3230.750000",,"5110.750000",,,,"54.200000","64.500000","3.333333","21.666667","36.750000","0.000000","1086.600000","0.000000","691.800000","394.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"752.750000",,"752.750000",,"752.750000",,"328.250000","0.000000",,,,,,,,,"130.750000","5664.250000","10341.500000","579.500000",,"8278.500000",,,,"40.800000","15.875000","2.666667","31.000000","60.375000","0.000000","816.400000","0.000000","170.200000","646.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"773.250000",,"773.250000",,"773.250000",,"448.250000","0.000000",,,,,,,,,"72.000000","5816.250000","9486.750000","118.750000",,"5241.750000",,,,"29.400000","8.000000","2.000000","13.333333","46.875000","0.000000","590.800000","0.000000","88.200000","502.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"832.000000",,"832.000000",,"832.000000",,"455.250000","0.000000",,,,,,,,,"46.500000","6258.750000","9854.750000","680.625000",,"2278.750000",,,,"20.800000","17.625000","3.333333","16.000000","21.250000","0.000000","419.400000","0.000000","189.400000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"632.500000",,"632.500000",,"632.500000",,"352.000000","0.000000",,,,,,,,,"148.000000","4759.000000","12859.000000","2922.750000",,"4913.500000",,,,"48.000000","53.625000","4.666667","51.000000","36.000000","0.000000","963.800000","0.000000","576.200000","387.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"448.500000",,"448.500000",,"448.500000",,"327.500000","0.000000",,,,,,,,,"142.500000","3376.000000","14242.000000","4097.875000",,"2401.125000",,,,"56.800000","90.625000","2.000000","30.333333","15.375000","0.000000","1137.000000","0.000000","971.000000","166.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"339.000000",,"339.000000",,"339.000000",,"353.250000","0.000000",,,,,,,,,"182.750000","2551.500000","15131.250000","5350.750000",,"3699.375000",,,,"88.200000","130.625000","2.666667","9.666667","34.500000","0.000000","1764.000000","0.000000","1395.400000","368.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"426.500000",,"426.500000",,"426.500000",,"385.250000","0.000000",,,,,,,,,"148.000000","3211.500000","14538.750000","4682.125000",,"2671.375000",,,,"66.000000","95.750000","3.000000","11.000000","27.625000","0.000000","1320.400000","0.000000","1024.000000","296.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"386.500000",,"386.500000",,"386.500000",,"698.750000","0.000000",,,,,,,,,"230.250000","2911.750000","14820.750000","7682.000000",,"2494.500000",,,,"98.200000","169.000000","1.666667","26.666667","14.875000","0.000000","1964.200000","0.000000","1803.800000","160.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"260.000000","305.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"668.500000",,"668.500000",,"668.500000",,"358.250000","0.000000",,,,,,,,,"150.250000","5030.500000","11157.250000","3435.750000",,"4507.375000",,,,"65.000000","94.125000","1.666667","18.333333","27.375000","0.000000","1301.000000","0.000000","1006.400000","294.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"698.750000",,"698.750000",,"698.750000",,"345.750000","0.000000",,,,,,,,,"60.250000","5257.250000","10241.000000","2090.875000",,"575.625000",,,,"30.000000","43.000000","2.000000","8.333333","13.125000","0.000000","600.600000","0.000000","460.000000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"828.750000",,"828.750000",,"828.750000",,"220.750000","0.000000",,,,,,,,,"40.000000","6234.500000","9744.250000","73.875000",,"2110.875000",,,,"13.600000","7.750000","3.666667","15.666667","17.500000","0.000000","272.600000","0.000000","84.400000","188.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"757.750000",,"757.750000",,"757.750000",,"378.000000","0.000000",,,,,,,,,"88.000000","5701.750000","10899.250000","3475.500000",,"255.000000",,,,"41.200000","75.000000","3.666667","13.666667","1.875000","0.000000","827.200000","0.000000","805.600000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"790.250000",,"790.250000",,"790.250000",,"454.000000","0.000000",,,,,,,,,"94.250000","5944.250000","10262.750000","1497.625000",,"3387.375000",,,,"34.000000","40.625000","2.333333","22.666667","22.875000","0.000000","680.000000","0.000000","433.400000","246.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"706.500000",,"706.500000",,"706.500000",,"382.250000","0.000000",,,,,,,,,"15.750000","5315.000000","11143.000000","305.625000",,"273.250000",,,,"5.400000","6.625000","1.000000","11.000000","2.875000","0.000000","111.800000","0.000000","78.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"261.500000",,"261.500000",,"261.500000",,"305.000000","0.000000",,,,,,,,,"131.250000","1969.500000","16286.500000","5075.000000",,"907.500000",,,,"55.400000","94.750000","2.000000","9.000000","9.375000","0.000000","1111.600000","0.000000","1008.400000","103.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"275.750000",,"275.750000",,"275.750000",,"391.250000","0.000000",,,,,,,,,"121.000000","2077.250000","15922.250000","2141.875000",,"3563.875000",,,,"55.200000","71.125000","2.666667","11.666667","32.250000","0.000000","1107.000000","0.000000","760.600000","346.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.250000",,"180.250000",,"180.250000",,"302.750000","0.000000",,,,,,,,,"240.000000","1360.500000","17389.250000","4779.375000",,"8399.875000",,,,"123.600000","177.000000","2.000000","13.666667","54.375000","0.000000","2474.400000","0.000000","1892.200000","582.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","39.000000",,,,,,,,,"180.000000","195.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.000000",,"180.000000",,"180.000000",,"465.250000","0.000000",,,,,,,,,"156.250000","1356.750000","17227.000000","3538.750000",,"4080.750000",,,,"81.400000","122.750000","2.666667","13.000000","29.625000","0.000000","1628.600000","0.000000","1309.400000","319.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"126.000000","138.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"134.500000",,"134.500000",,"134.500000",,"341.000000","0.000000",,,,,,,,,"28.500000","1014.500000","17791.750000","140.625000",,"142.500000",,,,"12.000000","11.875000","1.666667","0.666667","10.375000","0.000000","242.200000","0.000000","128.200000","114.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.000000","7.000000",,,,,,,,,"1397.000000","1510.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"93.000000",,"93.000000",,"93.000000",,"357.000000","0.000000",,,,,,,,,"13.500000","703.750000","18228.750000","359.750000",,"58.875000",,,,"5.200000","3.500000","2.333333","2.000000","5.625000","0.000000","105.600000","0.000000","42.200000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","7.000000",,,,,,,,,"1645.000000","1659.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.750000",,"276.750000",,"276.750000",,"378.500000","0.000000",,,,,,,,,"54.250000","2084.500000","16409.500000","319.625000",,"2873.625000",,,,"21.800000","5.375000","2.333333","14.666667","35.250000","0.000000","437.600000","0.000000","57.800000","379.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"438.000000","512.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.750000",,"162.750000",,"162.750000",,"472.250000","0.000000",,,,,,,,,"12.750000","1227.250000","17394.250000","19.000000",,"268.875000",,,,"9.400000","1.125000","23.000000","5.333333","16.125000","0.000000","188.600000","0.000000","15.400000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"146.000000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.500000",,"148.500000",,"148.500000",,"425.750000","0.000000",,,,,,,,,"14.000000","1121.750000","17488.750000","372.375000",,"82.125000",,,,"6.600000","7.375000","4.000000","2.666667","4.750000","0.000000","134.000000","0.000000","80.400000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"191.000000","224.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"217.500000",,"217.500000",,"217.500000",,"364.500000","0.000000",,,,,,,,,"36.500000","1640.500000","17236.500000","640.875000",,"99.750000",,,,"28.000000","46.500000","1.000000","12.666667","5.875000","0.000000","562.600000","0.000000","497.000000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"382.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"271.500000","0.000000",,,,,,,,,"6.250000","449.750000","18923.000000","0.000000",,"74.500000",,,,"3.200000","0.000000","0.000000","2.666667","6.000000","0.000000","66.000000","0.000000","0.000000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"230.000000","0.000000",,,,,,,,,"0.500000","389.750000","19017.250000","0.000000",,"35.250000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","14.200000","0.000000","0.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.000000",,"64.000000",,"64.000000",,"235.250000","0.000000",,,,,,,,,"3.250000","485.750000","18865.500000","0.000000",,"49.875000",,,,"2.200000","0.000000","0.000000","1.000000","4.125000","0.000000","46.600000","0.000000","0.000000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"181.000000","0.000000",,,,,,,,,"0.750000","424.000000","19168.000000","0.000000",,"19.500000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"250.750000","0.000000",,,,,,,,,"1.000000","477.250000","18872.500000","4.875000",,"28.125000",,,,"1.400000","0.000000","2.000000","1.333333","2.125000","0.000000","29.000000","0.000000","3.200000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"157.750000",,"157.750000",,"157.750000",,"313.750000","0.000000",,,,,,,,,"10.000000","1189.000000","18168.000000","3.750000",,"129.000000",,,,"5.200000","0.000000","0.666667","0.666667","9.250000","0.000000","105.200000","0.000000","2.800000","102.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"512.000000","609.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.750000",,"276.750000",,"276.750000",,"398.500000","0.000000",,,,,,,,,"27.500000","2086.000000","16548.750000","27.000000",,"379.125000",,,,"12.800000","1.750000","3.666667","1.000000","22.000000","0.000000","257.400000","0.000000","21.400000","236.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","8.000000",,,,,,,,,"1409.000000","1609.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"73.000000",,"73.000000",,"73.000000",,"201.000000","0.000000",,,,,,,,,"5.500000","551.500000","18948.750000","0.000000",,"37.750000",,,,"1.600000","0.000000","0.000000","2.333333","2.875000","0.000000","32.400000","0.000000","0.000000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","4.000000",,,,,,,,,"1000.000000","990.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"233.750000",,"233.750000",,"233.750000",,"451.000000","0.000000",,,,,,,,,"41.750000","1762.000000","16370.250000","0.000000",,"2847.750000",,,,"16.800000","0.000000","1.000000","19.333333","31.375000","0.000000","338.800000","0.000000","0.400000","338.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","8.000000",,,,,,,,,"1676.000000","1746.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"185.750000",,"185.750000",,"185.750000",,"401.750000","0.000000",,,,,,,,,"4.750000","1399.250000","17040.250000","0.000000",,"235.000000",,,,"8.200000","0.000000","0.000000","2.333333","15.250000","0.000000","165.600000","0.000000","0.000000","165.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"84.000000",,"84.000000",,"84.000000",,"430.000000","0.000000",,,,,,,,,"2.000000","634.750000","18358.750000","0.000000",,"84.000000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","49.800000","0.000000","0.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"102.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"193.750000",,"193.750000",,"193.750000",,"374.750000","0.000000",,,,,,,,,"24.000000","1459.500000","16929.500000","211.875000",,"143.125000",,,,"15.200000","17.875000","1.333333","1.666667","10.375000","0.000000","305.200000","0.000000","193.000000","112.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"65.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"363.250000","0.000000",,,,,,,,,"1.750000","897.750000","18335.500000","5.250000",,"66.625000",,,,"1.800000","0.375000","4.666667","1.666667","3.000000","0.000000","38.800000","0.000000","5.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"340.000000","0.000000",,,,,,,,,"1.250000","398.750000","18840.750000","0.000000",,"41.125000",,,,"2.200000","0.000000","0.000000","2.666667","4.000000","0.000000","44.600000","0.000000","0.200000","44.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"333.500000","0.000000",,,,,,,,,"1.250000","407.750000","18953.250000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.333333","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"343.250000","0.000000",,,,,,,,,"0.500000","471.000000","18825.250000","0.000000",,"22.125000",,,,"0.600000","0.000000","0.000000","1.000000","1.000000","0.000000","14.200000","0.000000","0.000000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"309.250000","0.000000",,,,,,,,,"3.750000","392.000000","18945.750000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.250000",,"51.250000",,"51.250000",,"354.500000","0.000000",,,,,,,,,"0.750000","388.750000","18913.750000","0.000000",,"7.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.600000","0.000000","0.000000","4.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.250000",,"59.250000",,"59.250000",,"301.000000","0.000000",,,,,,,,,"0.500000","450.750000","18876.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"301.000000","0.000000",,,,,,,,,"0.500000","409.750000","19065.250000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","3.200000","0.000000","0.000000","3.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"312.500000","0.000000",,,,,,,,,"0.750000","410.000000","19038.750000","0.250000",,"17.500000",,,,"0.800000","0.000000","1.000000","2.000000","1.375000","0.000000","18.000000","0.000000","1.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"86.750000",,"86.750000",,"86.750000",,"371.250000","0.000000",,,,,,,,,"1.750000","658.000000","18475.000000","5.625000",,"65.625000",,,,"2.600000","0.375000","3.666667","1.333333","4.125000","0.000000","53.800000","0.000000","6.400000","47.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"101.000000","113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"142.500000",,"142.500000",,"142.500000",,"325.500000","0.000000",,,,,,,,,"5.000000","1076.250000","17891.000000","0.000000",,"117.375000",,,,"4.800000","0.000000","0.666667","1.000000","8.875000","0.000000","99.200000","0.000000","0.800000","98.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"465.000000","542.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.000000",,"158.000000",,"158.000000",,"466.500000","0.000000",,,,,,,,,"3.250000","1193.750000","17703.500000","0.000000",,"139.000000",,,,"4.800000","0.000000","0.000000","2.000000","8.875000","0.000000","98.200000","0.000000","0.200000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"125.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"133.750000",,"133.750000",,"133.750000",,"299.750000","0.000000",,,,,,,,,"1.500000","1008.250000","18117.000000","0.000000",,"42.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.400000","0.000000","0.200000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"123.750000",,"123.750000",,"123.750000",,"437.000000","0.000000",,,,,,,,,"2.750000","933.750000","17881.500000","5.625000",,"94.125000",,,,"3.800000","0.000000","2.666667","2.000000","7.125000","0.000000","77.600000","0.000000","1.000000","76.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.000000",,"67.000000",,"67.000000",,"495.750000","0.000000",,,,,,,,,"1.000000","507.750000","18506.500000","3.375000",,"25.125000",,,,"0.800000","0.375000","2.333333","2.000000","1.000000","0.000000","19.800000","0.000000","4.600000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"386.750000","0.000000",,,,,,,,,"1.750000","419.500000","18887.250000","0.000000",,"48.750000",,,,"2.200000","0.000000","0.000000","1.666667","4.125000","0.000000","45.800000","0.000000","0.200000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"445.750000","0.000000",,,,,,,,,"0.500000","392.250000","18772.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","10.600000","0.000000","0.000000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"236.500000","0.000000",,,,,,,,,"0.750000","407.750000","19047.500000","0.000000",,"12.250000",,,,"0.400000","0.000000","0.000000","1.333333","0.625000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"191.500000","0.000000",,,,,,,,,"3.250000","407.250000","19174.250000","0.000000",,"14.875000",,,,"0.600000","0.000000","0.000000","2.000000","1.000000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"150.750000","0.000000",,,,,,,,,"0.250000","443.500000","19314.500000","0.000000",,"5.125000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"140.000000","0.000000",,,,,,,,,"1.000000","415.000000","19258.000000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"135.000000","0.000000",,,,,,,,,"0.500000","432.750000","19234.000000","0.000000",,"14.250000",,,,"0.400000","0.000000","0.000000","1.666667","0.625000","0.000000","9.600000","0.000000","0.000000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","403.000000","19230.750000","0.000000",,"10.500000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.750000",,"70.750000",,"70.750000",,"174.750000","0.000000",,,,,,,,,"0.750000","536.750000","19004.500000","3.000000",,"26.250000",,,,"1.000000","0.000000","4.000000","1.666667","1.375000","0.000000","20.200000","0.000000","0.800000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.500000",,"148.500000",,"148.500000",,"231.750000","0.000000",,,,,,,,,"6.500000","1118.500000","17781.500000","0.000000",,"133.500000",,,,"5.400000","0.000000","0.333333","0.666667","10.125000","0.000000","109.200000","0.000000","0.200000","109.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"516.000000","607.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"262.000000",,"262.000000",,"262.000000",,"300.250000","0.000000",,,,,,,,,"15.750000","1974.000000","16448.750000","1.875000",,"360.000000",,,,"12.000000","0.000000","1.333333","1.000000","21.875000","0.000000","240.200000","0.000000","3.400000","236.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8.000000","7.000000",,,,,,,,,"1200.000000","1406.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"278.750000","0.000000",,,,,,,,,"1.500000","405.750000","18963.750000","0.000000",,"11.375000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"223.000000","226.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"221.000000","0.000000",,,,,,,,,"1.750000","425.500000","19112.750000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","2.333333","2.500000","0.000000","29.600000","0.000000","0.000000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","185.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"167.250000","0.000000",,,,,,,,,"1.500000","423.250000","19179.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"233.000000","234.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.750000",,"59.750000",,"59.750000",,"183.000000","0.000000",,,,,,,,,"3.500000","454.750000","19156.000000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"249.000000","240.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"195.750000","0.000000",,,,,,,,,"3.250000","420.000000","19151.500000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"185.250000","0.000000",,,,,,,,,"0.750000","398.750000","19145.500000","0.000000",,"3.375000",,,,"0.200000","0.000000","1.333333","2.000000","0.000000","0.000000","4.000000","0.000000","0.200000","3.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"154.750000","0.000000",,,,,,,,,"1.000000","418.750000","19232.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"59.000000",,"59.000000",,"59.000000",,"136.250000","0.000000",,,,,,,,,"2.500000","446.500000","19214.750000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.600000","0.000000","0.000000","3.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","1.000000",,,,,,,,,"356.000000","338.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"124.250000","0.000000",,,,,,,,,"1.250000","429.000000","19292.000000","0.000000",,"4.125000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"207.000000","193.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"148.750000","0.000000",,,,,,,,,"2.000000","426.500000","19267.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"227.000000","207.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"164.750000","0.000000",,,,,,,,,"0.750000","408.250000","19164.750000","0.000000",,"3.750000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"215.000000","202.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"156.000000","0.000000",,,,,,,,,"0.750000","417.250000","19142.750000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.200000","0.000000","0.000000","2.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"151.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"144.000000","0.000000",,,,,,,,,"1.250000","422.000000","19188.000000","0.000000",,"4.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"167.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"208.750000",,"208.750000",,"208.750000",,"173.500000","0.000000",,,,,,,,,"33.500000","1573.500000","17366.500000","354.000000",,"1348.375000",,,,"13.000000","3.250000","1.333333","7.666667","20.875000","0.000000","262.000000","0.000000","37.400000","224.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","4.000000",,,,,,,,,"759.000000","863.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"126.000000",,"126.000000",,"126.000000",,"123.750000","0.000000",,,,,,,,,"9.750000","951.000000","18806.500000","2.625000",,"124.125000",,,,"5.000000","0.000000","8.333333","4.000000","9.250000","0.000000","103.200000","0.000000","2.000000","101.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"169.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"244.000000","0.000000",,,,,,,,,"1.000000","490.750000","18937.250000","0.000000",,"47.875000",,,,"1.400000","0.000000","0.000000","1.333333","2.500000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"112.000000","0.000000",,,,,,,,,"2.750000","403.500000","19249.750000","0.000000",,"36.250000",,,,"2.000000","0.000000","0.000000","5.333333","3.625000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"209.250000","0.000000",,,,,,,,,"1.250000","430.500000","19159.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","1.333333","0.666667","1.875000","0.000000","22.800000","0.000000","0.600000","22.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.000000",,"64.000000",,"64.000000",,"283.500000","0.000000",,,,,,,,,"0.750000","484.250000","18995.000000","0.000000",,"23.125000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"273.500000","0.000000",,,,,,,,,"0.750000","401.000000","19017.250000","0.000000",,"14.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"245.250000","0.000000",,,,,,,,,"1.750000","413.500000","18978.500000","0.000000",,"20.500000",,,,"0.600000","0.000000","0.000000","2.333333","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"127.000000","0.000000",,,,,,,,,"1.000000","460.000000","19111.000000","0.000000",,"32.875000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"155.750000","0.000000",,,,,,,,,"2.500000","406.750000","19224.250000","0.000000",,"7.375000",,,,"0.200000","0.000000","0.000000","2.000000","0.250000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.500000",,"58.500000",,"58.500000",,"123.500000","0.000000",,,,,,,,,"1.750000","445.000000","19215.250000","0.000000",,"28.500000",,,,"1.200000","0.000000","0.000000","3.333333","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"118.750000",,"118.750000",,"118.750000",,"134.500000","0.000000",,,,,,,,,"7.250000","895.250000","18545.750000","0.000000",,"127.000000",,,,"6.000000","0.000000","0.000000","2.000000","11.250000","0.000000","123.600000","0.000000","0.000000","123.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"461.000000","545.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"171.500000",,"171.500000",,"171.500000",,"209.000000","0.000000",,,,,,,,,"13.750000","1293.000000","17640.500000","6.375000",,"172.125000",,,,"6.600000","0.750000","5.666667","1.333333","11.625000","0.000000","135.600000","0.000000","8.200000","127.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","5.000000",,,,,,,,,"715.000000","915.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.500000",,"69.500000",,"69.500000",,"112.250000","0.000000",,,,,,,,,"2.500000","527.000000","19159.250000","1.125000",,"67.375000",,,,"3.000000","0.000000","3.000000","1.333333","5.500000","0.000000","62.200000","0.000000","1.400000","60.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"125.500000","0.000000",,,,,,,,,"1.000000","434.500000","19269.250000","0.000000",,"25.375000",,,,"0.600000","0.000000","0.000000","1.333333","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"131.500000","0.000000",,,,,,,,,"1.250000","489.750000","19147.750000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","3.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"92.750000","0.000000",,,,,,,,,"0.500000","454.750000","19351.750000","0.000000",,"10.875000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.250000",,"51.250000",,"51.250000",,"177.750000","0.000000",,,,,,,,,"0.750000","391.250000","19218.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","2.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"202.000000","0.000000",,,,,,,,,"1.000000","477.000000","19027.500000","0.000000",,"27.625000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.000000",,"58.000000",,"58.000000",,"122.500000","0.000000",,,,,,,,,"0.750000","439.750000","19317.250000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"163.000000","0.000000",,,,,,,,,"1.000000","406.000000","19183.750000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.000000",,"67.000000",,"67.000000",,"139.250000","0.000000",,,,,,,,,"0.500000","507.000000","19199.000000","0.000000",,"27.375000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"135.250000",,"135.250000",,"135.250000",,"130.250000","0.000000",,,,,,,,,"1.500000","1022.250000","18306.750000","0.750000",,"43.500000",,,,"1.200000","0.000000","1.333333","1.333333","2.250000","0.000000","27.800000","0.000000","1.200000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.500000",,"71.500000",,"71.500000",,"166.500000","0.000000",,,,,,,,,"1.750000","543.000000","18887.000000","0.000000",,"69.375000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","35.600000","0.000000","0.000000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"97.000000","0.000000",,,,,,,,,"4.250000","490.500000","19262.750000","0.000000",,"53.250000",,,,"2.400000","0.000000","0.000000","1.666667","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"120.750000","0.000000",,,,,,,,,"1.000000","422.000000","19276.750000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"117.250000","0.000000",,,,,,,,,"0.750000","446.000000","19261.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"116.500000","0.000000",,,,,,,,,"0.750000","480.250000","19228.250000","0.000000",,"21.000000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"78.750000","0.000000",,,,,,,,,"1.000000","418.500000","19397.250000","0.000000",,"11.625000",,,,"0.600000","0.000000","0.000000","2.000000","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"109.500000","0.000000",,,,,,,,,"1.250000","413.500000","19277.250000","0.000000",,"29.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"92.750000","0.000000",,,,,,,,,"0.750000","492.000000","19323.500000","0.000000",,"21.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"103.750000","0.000000",,,,,,,,,"0.500000","415.500000","19306.250000","0.000000",,"12.375000",,,,"0.600000","0.000000","0.000000","4.000000","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"181.250000","0.000000",,,,,,,,,"1.000000","495.000000","19124.250000","0.000000",,"35.500000",,,,"1.000000","0.000000","0.000000","5.000000","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.000000",,"145.000000",,"145.000000",,"173.250000","0.000000",,,,,,,,,"1.750000","1092.750000","18288.250000","2.250000",,"77.250000",,,,"2.000000","0.000000","10.666667","4.000000","3.625000","0.000000","43.800000","0.000000","1.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"184.750000","0.000000",,,,,,,,,"1.500000","425.250000","19109.500000","0.000000",,"48.750000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","30.000000","0.000000","0.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"166.750000","0.000000",,,,,,,,,"1.250000","407.750000","19259.250000","0.000000",,"28.125000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"221.500000","0.000000",,,,,,,,,"1.500000","494.000000","19014.750000","0.000000",,"41.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"140.750000","0.000000",,,,,,,,,"0.750000","455.750000","19282.250000","0.000000",,"17.500000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.250000",,"53.250000",,"53.250000",,"191.750000","0.000000",,,,,,,,,"0.750000","402.000000","19154.750000","0.000000",,"13.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"154.750000","0.000000",,,,,,,,,"0.750000","512.000000","19213.000000","0.000000",,"28.000000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"170.000000","0.000000",,,,,,,,,"0.500000","401.500000","19127.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","18.000000","0.000000","0.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"188.500000","0.000000",,,,,,,,,"0.500000","400.750000","19228.500000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","2.666667","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.500000",,"67.500000",,"67.500000",,"126.750000","0.000000",,,,,,,,,"0.750000","511.750000","19195.250000","0.000000",,"32.125000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.750000",,"145.750000",,"145.750000",,"210.250000","0.000000",,,,,,,,,"2.250000","1097.500000","17905.750000","12.000000",,"51.375000",,,,"1.400000","0.375000","2.333333","2.000000","2.125000","0.000000","30.400000","0.000000","5.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.250000",,"116.250000",,"116.250000",,"141.500000","0.000000",,,,,,,,,"3.000000","878.000000","18597.250000","0.000000",,"115.125000",,,,"4.000000","0.000000","1.666667","2.000000","7.375000","0.000000","81.000000","0.000000","0.200000","80.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"115.500000","0.000000",,,,,,,,,"0.750000","482.250000","19267.750000","0.000000",,"31.375000",,,,"1.000000","0.000000","0.000000","2.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"109.250000","0.000000",,,,,,,,,"3.000000","512.250000","19157.500000","0.000000",,"75.000000",,,,"3.000000","0.000000","0.000000","2.666667","5.500000","0.000000","62.200000","0.000000","0.000000","62.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.000000",,"147.000000",,"147.000000",,"227.000000","0.000000",,,,,,,,,"2.000000","1110.500000","17759.750000","0.000000",,"96.750000",,,,"3.400000","0.000000","0.000000","3.333333","6.375000","0.000000","70.800000","0.000000","0.000000","70.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"214.500000","0.000000",,,,,,,,,"1.250000","766.750000","18571.250000","0.000000",,"40.375000",,,,"1.000000","0.000000","2.000000","2.666667","1.875000","0.000000","21.000000","0.000000","0.200000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"149.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"109.500000","0.000000",,,,,,,,,"2.750000","456.250000","19301.500000","0.000000",,"63.625000",,,,"2.600000","0.000000","0.000000","3.333333","4.750000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"140.500000",,"140.500000",,"140.500000",,"144.000000","0.000000",,,,,,,,,"1.000000","1060.000000","18089.750000","0.750000",,"38.250000",,,,"1.000000","0.000000","1.666667","2.000000","1.750000","0.000000","22.000000","0.000000","1.400000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"75.000000",,"75.000000",,"75.000000",,"151.750000","0.000000",,,,,,,,,"2.500000","565.000000","19028.000000","0.375000",,"86.875000",,,,"3.400000","0.000000","2.333333","4.333333","6.250000","0.000000","68.400000","0.000000","0.200000","68.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"115.750000","0.000000",,,,,,,,,"1.250000","416.000000","19305.750000","0.000000",,"31.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"119.250000","0.000000",,,,,,,,,"1.250000","496.250000","19229.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","30.600000","0.000000","0.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"120.000000","0.000000",,,,,,,,,"0.500000","425.500000","19252.500000","0.000000",,"22.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","11.200000","0.000000","0.000000","11.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"150.750000","0.000000",,,,,,,,,"1.250000","426.000000","19223.500000","0.000000",,"21.375000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.000000",,"63.000000",,"63.000000",,"107.500000","0.000000",,,,,,,,,"0.500000","478.000000","19149.000000","0.000000",,"12.625000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.250000",,"60.250000",,"60.250000",,"106.000000","0.000000",,,,,,,,,"0.750000","456.750000","19356.500000","0.000000",,"33.000000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"129.750000","0.000000",,,,,,,,,"1.000000","417.250000","19185.250000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.750000",,"67.750000",,"67.750000",,"94.500000","0.000000",,,,,,,,,"0.750000","513.750000","19315.250000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.750000",,"61.750000",,"61.750000",,"106.500000","0.000000",,,,,,,,,"1.000000","467.250000","19338.250000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"99.250000","0.000000",,,,,,,,,"0.750000","411.500000","19256.000000","0.000000",,"31.500000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.500000",,"69.500000",,"69.500000",,"140.500000","0.000000",,,,,,,,,"0.750000","526.750000","19188.500000","0.375000",,"29.875000",,,,"1.200000","0.000000","2.666667","1.333333","2.250000","0.000000","27.800000","0.000000","0.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"246.250000","0.000000",,,,,,,,,"1.000000","384.750000","19001.500000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","26.600000","0.000000","0.000000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"104.750000","0.000000",,,,,,,,,"0.750000","477.000000","19339.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"115.250000","0.000000",,,,,,,,,"1.000000","500.750000","19152.250000","0.000000",,"23.500000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"144.000000","0.000000",,,,,,,,,"1.000000","410.750000","19272.000000","0.000000",,"28.375000",,,,"0.800000","0.000000","2.666667","2.000000","1.375000","0.000000","17.600000","0.000000","0.200000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"133.500000","0.000000",,,,,,,,,"1.000000","400.000000","19236.750000","0.000000",,"15.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"135.000000","0.000000",,,,,,,,,"0.750000","487.250000","19095.250000","0.000000",,"29.625000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"112.250000","0.000000",,,,,,,,,"1.250000","398.500000","19310.000000","0.000000",,"33.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"126.500000","0.000000",,,,,,,,,"0.750000","411.750000","19243.750000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"137.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"80.000000",,"80.000000",,"80.000000",,"95.750000","0.000000",,,,,,,,,"1.250000","604.000000","19050.000000","0.000000",,"50.125000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","32.200000","0.000000","0.000000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.750000",,"162.750000",,"162.750000",,"127.000000","0.000000",,,,,,,,,"4.250000","1227.250000","18244.500000","2.250000",,"117.625000",,,,"3.800000","0.250000","2.666667","1.666667","6.750000","0.000000","78.600000","0.000000","4.000000","74.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"106.750000","0.000000",,,,,,,,,"3.000000","411.250000","19277.500000","0.375000",,"42.375000",,,,"1.200000","0.000000","0.333333","1.333333","1.875000","0.000000","24.000000","0.000000","0.200000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.000000",,"50.000000",,"50.000000",,"142.500000","0.000000",,,,,,,,,"0.500000","379.500000","19221.750000","0.000000",,"22.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"102.500000","0.000000",,,,,,,,,"1.000000","512.000000","19201.750000","0.000000",,"36.625000",,,,"1.200000","0.000000","0.000000","22.000000","2.000000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"105.250000","0.000000",,,,,,,,,"0.750000","412.750000","19358.000000","0.000000",,"25.875000",,,,"1.000000","0.000000","0.000000","1.333333","2.125000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"98.250000","0.000000",,,,,,,,,"0.000000","419.250000","19382.500000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.000000",,"68.000000",,"68.000000",,"173.500000","0.000000",,,,,,,,,"1.000000","514.250000","19135.250000","0.000000",,"31.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.500000",,"55.500000",,"55.500000",,"105.750000","0.000000",,,,,,,,,"0.750000","420.750000","19295.750000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.666667","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"125.500000","0.000000",,,,,,,,,"0.750000","429.750000","19313.500000","0.000000",,"8.625000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"71.250000",,"71.250000",,"71.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","539.000000","19101.750000","0.000000",,"35.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"76.000000",,"76.000000",,"76.000000",,"159.000000","0.000000",,,,,,,,,"1.000000","574.750000","19064.750000","0.000000",,"25.000000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.800000","0.000000","0.000000","11.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"220.500000",,"220.500000",,"220.500000",,"275.000000","0.000000",,,,,,,,,"197.750000","1661.500000","16991.000000","4387.875000",,"4626.625000",,,,"82.000000","120.500000","2.333333","28.000000","32.500000","0.000000","1640.400000","0.000000","1291.800000","348.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","188.000000",,,,,,,,,"379.000000","514.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"263.000000",,"263.000000",,"263.000000",,"214.500000","0.000000",,,,,,,,,"159.000000","1980.000000","16686.750000","125.500000",,"3776.625000",,,,"21.400000","28.375000","1.666667","47.666667","11.875000","0.000000","431.600000","0.000000","302.400000","129.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12759.000000","65.000000",,,,,,,,,"173238.000000","17013.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"319.750000",,"319.750000",,"319.750000",,"325.250000","0.000000",,,,,,,,,"228.000000","2408.000000","15818.000000","0.000000",,"8006.125000",,,,"20.200000","0.000000","5.000000","18.666667","37.750000","0.000000","405.800000","0.000000","0.200000","405.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20208.000000","80.000000",,,,,,,,,"273864.000000","24810.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"304.750000",,"304.750000",,"304.750000",,"333.000000","0.000000",,,,,,,,,"217.750000","2293.500000","16005.750000","0.000000",,"12143.250000",,,,"32.400000","0.000000","8.666667","17.666667","60.750000","0.000000","649.200000","0.000000","0.800000","648.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8932.000000","31.000000",,,,,,,,,"121054.000000","9597.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"267.250000",,"267.250000",,"267.250000",,"221.750000","0.000000",,,,,,,,,"272.000000","2010.500000","16706.500000","9.000000",,"9623.625000",,,,"64.800000","1.375000","3.666667","8.333333","119.750000","0.000000","1296.600000","0.000000","16.000000","1280.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14509.000000","63.000000",,,,,,,,,"196715.000000","18309.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"279.000000",,"279.000000",,"279.000000",,"175.750000","0.000000",,,,,,,,,"80.500000","2102.500000","16644.000000","550.375000",,"1256.000000",,,,"44.400000","71.625000","1.000000","10.333333","11.625000","0.000000","891.800000","0.000000","766.200000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"104.000000","127.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"451.000000",,"451.000000",,"451.000000",,"205.000000","0.000000",,,,,,,,,"19.750000","3393.000000","14934.000000","316.875000",,"609.625000",,,,"11.600000","7.875000","0.666667","7.666667","13.875000","0.000000","234.600000","0.000000","86.000000","148.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","13.000000",,,,,,,,,"97.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"590.750000",,"590.750000",,"590.750000",,"189.000000","0.000000",,,,,,,,,"19.500000","4446.250000","14343.750000","40.875000",,"344.875000",,,,"7.800000","3.250000","0.666667","2.000000","11.125000","0.000000","156.800000","0.000000","35.800000","121.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"82.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"606.250000",,"606.250000",,"606.250000",,"174.250000","0.000000",,,,,,,,,"11.000000","4561.750000","14862.000000","18.375000",,"546.625000",,,,"7.400000","0.375000","0.666667","4.333333","13.125000","0.000000","148.200000","0.000000","5.800000","142.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"63.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"631.250000",,"631.250000",,"631.250000",,"203.500000","0.000000",,,,,,,,,"3.750000","4748.500000","14850.250000","2.250000",,"255.625000",,,,"3.000000","0.000000","1.333333","3.000000","5.125000","0.000000","61.000000","0.000000","2.400000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"57.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"572.000000",,"572.000000",,"572.000000",,"392.500000","0.000000",,,,,,,,,"8.250000","4302.000000","13463.250000","67.125000",,"347.250000",,,,"5.000000","0.750000","0.666667","5.333333","8.500000","0.000000","103.600000","0.000000","11.600000","92.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"83.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"565.500000",,"565.500000",,"565.500000",,"361.750000","0.000000",,,,,,,,,"4.250000","4256.000000","14062.000000","0.000000",,"175.875000",,,,"3.800000","0.000000","0.000000","3.000000","7.125000","0.000000","79.000000","0.000000","0.200000","78.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"98.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"673.500000",,"673.500000",,"673.500000",,"190.000000","0.000000",,,,,,,,,"4.250000","5068.000000","14375.250000","7.875000",,"250.125000",,,,"3.400000","0.000000","1.333333","3.000000","6.375000","0.000000","70.000000","0.000000","1.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"75.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"585.250000",,"585.250000",,"585.250000",,"282.000000","0.000000",,,,,,,,,"71.000000","4405.000000","14286.250000","385.500000",,"4105.125000",,,,"24.400000","4.125000","1.000000","10.666667","41.625000","0.000000","491.200000","0.000000","46.600000","444.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"85.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"680.500000",,"680.500000",,"680.500000",,"218.750000","0.000000",,,,,,,,,"12.750000","5120.500000","13514.750000","100.000000",,"696.750000",,,,"7.600000","3.000000","1.333333","5.333333","10.875000","0.000000","154.400000","0.000000","35.000000","119.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"602.500000",,"602.500000",,"602.500000",,"212.500000","0.000000",,,,,,,,,"6.500000","4532.500000","14356.750000","0.000000",,"363.750000",,,,"8.600000","0.000000","0.000000","3.000000","16.125000","0.000000","174.400000","0.000000","0.000000","174.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"605.250000",,"605.250000",,"605.250000",,"187.000000","0.000000",,,,,,,,,"8.750000","4554.000000","14375.750000","7.875000",,"430.000000",,,,"4.000000","1.500000","0.333333","5.333333","5.625000","0.000000","82.000000","0.000000","19.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"565.250000",,"565.250000",,"565.250000",,"231.000000","0.000000",,,,,,,,,"10.250000","4254.750000","14320.250000","0.000000",,"625.125000",,,,"7.000000","0.000000","0.666667","3.666667","13.125000","0.000000","142.000000","0.000000","0.800000","141.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"73.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"649.500000",,"649.500000",,"649.500000",,"136.000000","0.000000",,,,,,,,,"7.000000","4888.500000","14453.750000","0.000000",,"364.125000",,,,"4.200000","0.000000","0.666667","2.666667","7.875000","0.000000","87.400000","0.000000","0.400000","87.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"662.750000",,"662.750000",,"662.750000",,"229.500000","0.000000",,,,,,,,,"10.500000","4986.750000","14373.000000","0.000000",,"991.125000",,,,"3.600000","0.000000","0.000000","12.000000","6.750000","0.000000","72.600000","0.000000","0.000000","72.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"658.500000",,"658.500000",,"658.500000",,"112.250000","0.000000",,,,,,,,,"7.750000","4955.250000","14495.000000","0.375000",,"372.375000",,,,"5.000000","0.000000","2.000000","6.000000","9.375000","0.000000","103.200000","0.000000","1.600000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","60.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"617.000000",,"617.000000",,"617.000000",,"235.000000","0.000000",,,,,,,,,"55.500000","4642.750000","14210.250000","69.750000",,"4105.000000",,,,"20.800000","0.750000","0.666667","12.333333","38.250000","0.000000","419.600000","0.000000","8.000000","411.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"107.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"644.750000",,"644.750000",,"644.750000",,"139.250000","0.000000",,,,,,,,,"5.500000","4851.000000","14433.500000","0.375000",,"186.375000",,,,"5.800000","0.000000","0.000000","1.333333","10.875000","0.000000","119.800000","0.000000","0.800000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"112.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"566.500000",,"566.500000",,"566.500000",,"192.250000","0.000000",,,,,,,,,"5.250000","4261.750000","14338.250000","22.875000",,"286.125000",,,,"3.600000","1.875000","0.333333","3.000000","4.875000","0.000000","75.800000","0.000000","22.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"82.000000","103.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"622.750000",,"622.750000",,"622.750000",,"279.750000","0.000000",,,,,,,,,"3.750000","4687.250000","14300.000000","12.000000",,"134.875000",,,,"3.400000","0.375000","0.333333","2.333333","5.625000","0.000000","68.200000","0.000000","7.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"77.000000","91.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"500.750000",,"500.750000",,"500.750000",,"473.500000","0.000000",,,,,,,,,"4.500000","3769.750000","13729.250000","6.000000",,"90.000000",,,,"3.000000","0.375000","0.333333","1.333333","5.250000","0.000000","63.600000","0.000000","6.800000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"120.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"603.250000",,"603.250000",,"603.250000",,"243.000000","0.000000",,,,,,,,,"34.000000","4538.000000","13894.750000","218.250000",,"1566.750000",,,,"11.800000","2.625000","0.666667","11.000000","19.000000","0.000000","237.000000","0.000000","29.600000","207.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"108.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1413.000000",,"1413.000000",,"1413.000000",,"219.750000","0.000000",,,,,,,,,"10.500000","10625.250000","6999.000000","4.500000",,"301.750000",,,,"10.600000","0.375000","1.000000","4.666667","19.000000","0.000000","212.400000","0.000000","7.200000","205.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"76.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.750000",,"604.750000",,"604.750000",,"357.750000","0.000000",,,,,,,,,"9.750000","4549.750000","12845.750000","3.000000",,"530.875000",,,,"4.600000","0.375000","3.333333","7.333333","7.875000","0.000000","94.200000","0.000000","7.600000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"65.000000","80.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"653.250000",,"653.250000",,"653.250000",,"246.750000","0.000000",,,,,,,,,"37.250000","4914.250000","14143.250000","269.625000",,"1562.125000",,,,"15.800000","13.000000","1.333333","9.666667","16.000000","0.000000","316.200000","0.000000","143.000000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","72.000000",,,,,,,,,"480.000000","555.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1076.500000",,"1076.500000",,"1076.500000",,"304.500000","0.000000",,,,,,,,,"52.500000","8097.250000","7812.250000","121.750000",,"2161.625000",,,,"34.200000","3.250000","3.666667","7.000000","59.625000","0.000000","684.600000","0.000000","37.400000","647.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","26.000000",,,,,,,,,"177.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"763.500000",,"763.500000",,"763.500000",,"177.500000","0.000000",,,,,,,,,"38.500000","5743.500000","12866.250000","105.000000",,"1701.125000",,,,"24.400000","2.250000","1.333333","4.333333","43.875000","0.000000","488.400000","0.000000","25.600000","462.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"167.000000","176.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"626.000000",,"626.000000",,"626.000000",,"222.750000","0.000000",,,,,,,,,"21.000000","4710.250000","14315.750000","67.375000",,"991.500000",,,,"9.600000","1.000000","2.000000","10.000000","16.500000","0.000000","192.000000","0.000000","12.400000","179.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"47.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"711.250000",,"711.250000",,"711.250000",,"151.000000","0.000000",,,,,,,,,"1.750000","5350.000000","14462.250000","0.000000",,"65.875000",,,,"0.000000","0.000000","0.000000","3.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"616.500000",,"616.500000",,"616.500000",,"153.250000","0.000000",,,,,,,,,"32.000000","4640.250000","14400.250000","137.375000",,"1510.500000",,,,"15.000000","3.000000","0.666667","6.666667","24.625000","0.000000","303.000000","0.000000","35.800000","267.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","44.000000",,,,,,,,,"182.000000","196.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"575.250000",,"575.250000",,"575.250000",,"203.250000","0.000000",,,,,,,,,"6.750000","4329.750000","14509.500000","8.875000",,"419.875000",,,,"3.400000","0.000000","0.333333","9.666667","6.000000","0.000000","68.400000","0.000000","1.000000","67.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"77.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"712.250000",,"712.250000",,"712.250000",,"216.500000","0.000000",,,,,,,,,"29.750000","5360.250000","12809.750000","183.375000",,"961.125000",,,,"15.200000","4.125000","2.666667","6.000000","24.375000","0.000000","307.200000","0.000000","45.000000","262.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","17.000000",,,,,,,,,"113.000000","141.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.000000",,"638.000000",,"638.000000",,"145.000000","0.000000",,,,,,,,,"18.750000","4800.500000","14352.000000","15.750000",,"680.875000",,,,"11.400000","1.125000","1.666667","5.666667","19.875000","0.000000","231.600000","0.000000","15.600000","216.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","15.000000",,,,,,,,,"106.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"563.250000",,"563.250000",,"563.250000",,"205.750000","0.000000",,,,,,,,,"26.750000","4239.250000","14578.000000","101.000000",,"757.125000",,,,"11.000000","1.250000","1.666667","9.000000","19.250000","0.000000","220.200000","0.000000","15.800000","204.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"103.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"488.000000",,"488.000000",,"488.000000",,"227.250000","0.000000",,,,,,,,,"8.250000","3672.750000","14196.250000","15.000000",,"272.625000",,,,"7.200000","0.375000","0.666667","3.333333","13.000000","0.000000","147.200000","0.000000","6.800000","140.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","31.000000",,,,,,,,,"153.000000","173.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"643.000000",,"643.000000",,"643.000000",,"198.000000","0.000000",,,,,,,,,"31.500000","4838.250000","13767.500000","226.625000",,"1597.750000",,,,"11.400000","4.000000","3.000000","14.333333","17.250000","0.000000","230.400000","0.000000","45.200000","185.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"612.500000",,"612.500000",,"612.500000",,"201.750000","0.000000",,,,,,,,,"10.750000","4608.000000","14363.500000","3.750000",,"407.625000",,,,"7.400000","0.375000","0.666667","3.666667","13.375000","0.000000","151.400000","0.000000","5.800000","145.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"610.000000",,"610.000000",,"610.000000",,"254.750000","0.000000",,,,,,,,,"3.500000","4591.500000","14285.000000","0.000000",,"378.625000",,,,"1.000000","0.000000","0.000000","8.666667","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"638.750000",,"638.750000",,"638.750000",,"216.250000","0.000000",,,,,,,,,"3.750000","4808.000000","14369.500000","0.000000",,"369.000000",,,,"1.600000","0.000000","0.000000","8.666667","2.875000","0.000000","33.000000","0.000000","0.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"662.750000",,"662.750000",,"662.750000",,"244.500000","0.000000",,,,,,,,,"14.500000","4986.500000","14234.500000","373.125000",,"262.875000",,,,"4.200000","6.250000","2.000000","50.000000","1.375000","0.000000","84.600000","0.000000","68.000000","16.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"364.000000","389.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"775.000000",,"775.000000",,"775.000000",,"174.750000","0.000000",,,,,,,,,"38.250000","5831.000000","13690.750000","581.500000",,"353.625000",,,,"25.200000","44.250000","1.000000","10.000000","2.625000","0.000000","505.600000","0.000000","475.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"249.000000","250.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"748.250000",,"748.250000",,"748.250000",,"132.500000","0.000000",,,,,,,,,"9.750000","5630.750000","14530.750000","0.000000",,"348.375000",,,,"1.600000","0.000000","3.000000","19.000000","3.000000","0.000000","34.600000","0.000000","0.400000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"614.250000",,"614.250000",,"614.250000",,"165.500000","0.000000",,,,,,,,,"4.250000","4623.750000","14368.750000","0.000000",,"397.125000",,,,"1.200000","0.000000","0.000000","12.333333","2.125000","0.000000","24.800000","0.000000","0.800000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"670.250000",,"670.250000",,"670.250000",,"194.750000","0.000000",,,,,,,,,"2.750000","5041.750000","14411.750000","0.750000",,"254.875000",,,,"1.200000","0.000000","2.333333","7.000000","2.125000","0.000000","25.400000","0.000000","0.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"65.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"654.000000",,"654.000000",,"654.000000",,"187.500000","0.000000",,,,,,,,,"5.250000","4921.000000","14423.500000","2.250000",,"423.625000",,,,"1.600000","0.000000","1.666667","11.000000","2.500000","0.000000","32.200000","0.000000","1.600000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"70.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"633.250000",,"633.250000",,"633.250000",,"176.500000","0.000000",,,,,,,,,"7.250000","4766.250000","14431.250000","0.375000",,"552.750000",,,,"1.600000","0.000000","1.666667","13.000000","2.625000","0.000000","32.000000","0.000000","1.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"630.500000",,"630.500000",,"630.500000",,"162.250000","0.000000",,,,,,,,,"3.250000","4746.750000","14410.000000","0.000000",,"377.250000",,,,"1.200000","0.000000","0.000000","15.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"63.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"643.500000",,"643.500000",,"643.500000",,"159.750000","0.000000",,,,,,,,,"5.000000","4843.750000","14467.250000","9.375000",,"353.625000",,,,"2.000000","0.000000","0.666667","6.000000","3.125000","0.000000","40.600000","0.000000","2.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"61.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"644.250000",,"644.250000",,"644.250000",,"202.500000","0.000000",,,,,,,,,"82.750000","4846.500000","14300.000000","10.750000",,"5538.875000",,,,"19.200000","0.375000","4.000000","22.666667","35.250000","0.000000","384.400000","0.000000","6.400000","378.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"59.000000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"584.000000",,"584.000000",,"584.000000",,"228.000000","0.000000",,,,,,,,,"113.750000","4393.500000","15089.500000","268.125000",,"4890.250000",,,,"67.000000","15.375000","4.666667","8.000000","110.250000","0.000000","1343.600000","0.000000","166.600000","1177.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"113.000000","129.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"698.750000",,"698.750000",,"698.750000",,"167.000000","0.000000",,,,,,,,,"12.750000","5258.500000","14454.250000","52.125000",,"480.000000",,,,"8.400000","0.750000","1.000000","4.333333","14.500000","0.000000","169.200000","0.000000","11.200000","158.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"617.500000",,"617.500000",,"617.500000",,"114.000000","0.000000",,,,,,,,,"20.750000","4647.250000","14828.250000","352.875000",,"161.000000",,,,"9.400000","16.875000","1.333333","7.000000","0.375000","0.000000","188.400000","0.000000","182.200000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"588.500000",,"588.500000",,"588.500000",,"269.000000","0.000000",,,,,,,,,"30.250000","4429.500000","13849.750000","593.250000",,"266.625000",,,,"14.400000","22.500000","1.000000","4.000000","4.000000","0.000000","288.600000","0.000000","243.600000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"75.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"534.250000",,"534.250000",,"534.250000",,"255.250000","0.000000",,,,,,,,,"23.000000","4021.250000","14328.250000","604.125000",,"406.125000",,,,"4.000000","6.000000","1.000000","14.333333","1.000000","0.000000","80.200000","0.000000","66.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"577.000000",,"577.000000",,"577.000000",,"411.500000","0.000000",,,,,,,,,"21.250000","4340.750000","14195.750000","596.625000",,"404.625000",,,,"4.200000","5.375000","0.666667","10.666667","2.125000","0.000000","85.600000","0.000000","60.400000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"82.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"479.250000",,"479.250000",,"479.250000",,"180.500000","0.000000",,,,,,,,,"72.250000","3605.500000","15726.500000","1109.125000",,"272.250000",,,,"26.400000","47.500000","1.000000","13.000000","1.500000","0.000000","528.400000","0.000000","508.600000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"60.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"626.250000",,"626.250000",,"626.250000",,"132.750000","0.000000",,,,,,,,,"41.250000","4713.250000","14864.000000","686.625000",,"160.875000",,,,"9.400000","16.875000","1.000000","7.000000","0.625000","0.000000","190.000000","0.000000","180.800000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"72.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"604.250000",,"604.250000",,"604.250000",,"129.750000","0.000000",,,,,,,,,"37.750000","4547.500000","14743.500000","670.125000",,"166.500000",,,,"9.600000","16.875000","0.333333","17.666667","0.625000","0.000000","192.000000","0.000000","182.400000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"569.750000",,"569.750000",,"569.750000",,"190.500000","0.000000",,,,,,,,,"25.000000","4287.500000","14658.500000","216.000000",,"47.875000",,,,"10.000000","18.000000","0.333333","1.666667","0.750000","0.000000","203.600000","0.000000","192.600000","11.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"181.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"536.750000",,"536.750000",,"536.750000",,"179.500000","0.000000",,,,,,,,,"25.250000","4038.500000","15069.500000","88.000000",,"97.875000",,,,"14.200000","18.000000","2.000000","1.333333","8.250000","0.000000","286.800000","0.000000","195.600000","91.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"603.000000",,"603.000000",,"603.000000",,"131.000000","0.000000",,,,,,,,,"28.250000","4537.750000","15078.500000","143.625000",,"320.250000",,,,"23.600000","34.875000","1.666667","5.666667","9.375000","0.000000","475.000000","0.000000","372.200000","102.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"103.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"720.500000",,"720.500000",,"720.500000",,"211.750000","0.000000",,,,,,,,,"12.000000","5420.000000","13650.500000","50.250000",,"329.250000",,,,"10.600000","4.125000","0.666667","3.333333","15.625000","0.000000","214.000000","0.000000","44.200000","169.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"107.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1139.000000",,"1139.000000",,"1139.000000",,"249.500000","0.000000",,,,,,,,,"32.250000","8567.000000","9664.500000","91.875000",,"547.000000",,,,"17.200000","8.625000","0.333333","2.333333","23.125000","0.000000","344.200000","0.000000","95.600000","248.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"60.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1050.500000",,"1050.500000",,"1050.500000",,"246.250000","0.000000",,,,,,,,,"9.500000","7903.500000","9529.750000","0.000000",,"505.875000",,,,"2.600000","0.000000","2.333333","7.333333","4.500000","0.000000","52.000000","0.000000","0.200000","51.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"49.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1152.000000",,"1152.000000",,"1152.000000",,"725.000000","0.000000",,,,,,,,,"8.500000","8664.250000","9172.250000","2.250000",,"484.500000",,,,"6.400000","0.000000","0.000000","4.333333","11.500000","0.000000","129.000000","0.000000","2.400000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"88.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1130.250000",,"1130.250000",,"1130.250000",,"227.000000","0.000000",,,,,,,,,"6.500000","8503.250000","9482.750000","3.375000",,"425.625000",,,,"2.000000","0.000000","0.333333","8.000000","3.750000","0.000000","43.200000","0.000000","3.000000","40.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1246.500000",,"1246.500000",,"1246.500000",,"192.000000","0.000000",,,,,,,,,"33.000000","9376.250000","9891.500000","88.500000",,"1180.125000",,,,"12.200000","9.375000","0.666667","16.000000","13.375000","0.000000","246.600000","0.000000","101.400000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.500000",,"1103.500000",,"1103.500000",,"227.250000","0.000000",,,,,,,,,"22.000000","8301.750000","9499.250000","22.750000",,"1333.125000",,,,"5.400000","1.875000","3.000000","16.333333","7.875000","0.000000","108.800000","0.000000","23.800000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1076.500000",,"1076.500000",,"1076.500000",,"300.250000","0.000000",,,,,,,,,"12.250000","8098.750000","9617.000000","60.750000",,"438.750000",,,,"4.800000","5.625000","5.333333","15.666667","2.875000","0.000000","96.600000","0.000000","63.800000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1244.750000",,"1244.750000",,"1244.750000",,"228.500000","0.000000",,,,,,,,,"6.500000","9366.000000","9500.250000","0.000000",,"441.750000",,,,"2.600000","0.000000","0.666667","7.333333","4.750000","0.000000","52.600000","0.000000","0.600000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1051.750000",,"1051.750000",,"1051.750000",,"536.000000","0.000000",,,,,,,,,"3.000000","7911.750000","9218.000000","0.000000",,"367.500000",,,,"1.200000","0.000000","1.333333","11.333333","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1147.750000",,"1147.750000",,"1147.750000",,"322.500000","0.000000",,,,,,,,,"9.250000","8635.000000","9436.500000","0.375000",,"461.625000",,,,"2.200000","0.000000","8.333333","10.000000","4.125000","0.000000","47.000000","0.000000","1.600000","45.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"15.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1093.250000",,"1093.250000",,"1093.250000",,"240.500000","0.000000",,,,,,,,,"5.250000","8224.250000","9486.750000","0.000000",,"482.875000",,,,"1.800000","0.000000","7.333333","16.666667","3.375000","0.000000","39.600000","0.000000","0.200000","39.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1307.750000",,"1307.750000",,"1307.750000",,"236.000000","0.000000",,,,,,,,,"5.500000","9838.000000","9526.750000","0.625000",,"460.125000",,,,"3.400000","0.000000","2.333333","12.666667","6.000000","0.000000","68.800000","0.000000","1.800000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1268.000000",,"1268.000000",,"1268.000000",,"196.500000","0.000000",,,,,,,,,"6.000000","9537.000000","9543.250000","0.250000",,"487.750000",,,,"2.800000","0.000000","2.000000","13.333333","5.125000","0.000000","57.400000","0.000000","1.000000","56.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1218.500000",,"1218.500000",,"1218.500000",,"139.250000","0.000000",,,,,,,,,"4.500000","9166.250000","9578.250000","0.375000",,"497.875000",,,,"2.600000","0.000000","1.333333","14.333333","4.875000","0.000000","55.600000","0.000000","0.600000","55.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1285.750000",,"1285.750000",,"1285.750000",,"170.000000","0.000000",,,,,,,,,"5.250000","9671.250000","9619.750000","2.250000",,"369.250000",,,,"2.200000","0.000000","2.000000","11.000000","4.000000","0.000000","46.200000","0.000000","0.600000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1169.500000",,"1169.500000",,"1169.500000",,"220.250000","0.000000",,,,,,,,,"6.750000","8797.750000","9545.500000","1.875000",,"563.875000",,,,"1.400000","0.000000","1.333333","38.000000","2.250000","0.000000","30.600000","0.000000","3.400000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1369.500000",,"1369.500000",,"1369.500000",,"259.750000","0.000000",,,,,,,,,"4.750000","10302.500000","9550.500000","1.875000",,"405.375000",,,,"2.600000","0.000000","2.666667","11.000000","4.375000","0.000000","53.400000","0.000000","2.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1203.250000",,"1203.250000",,"1203.250000",,"224.250000","0.000000",,,,,,,,,"7.250000","9049.750000","9516.000000","0.750000",,"657.250000",,,,"3.200000","0.000000","1.333333","20.333333","6.000000","0.000000","65.600000","0.000000","1.000000","64.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1112.250000",,"1112.250000",,"1112.250000",,"404.250000","0.000000",,,,,,,,,"6.500000","8367.750000","9385.000000","0.375000",,"431.625000",,,,"1.600000","0.000000","3.000000","15.333333","3.000000","0.000000","34.800000","0.000000","1.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1225.500000",,"1225.500000",,"1225.500000",,"252.000000","0.000000",,,,,,,,,"4.750000","9219.500000","9517.750000","0.750000",,"473.250000",,,,"1.800000","0.000000","2.666667","17.333333","3.000000","0.000000","36.400000","0.000000","1.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1314.750000",,"1314.750000",,"1314.750000",,"108.500000","0.000000",,,,,,,,,"6.250000","9888.500000","9642.000000","0.750000",,"350.125000",,,,"1.000000","0.000000","1.666667","30.000000","1.375000","0.000000","20.000000","0.000000","1.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1242.500000",,"1242.500000",,"1242.500000",,"235.250000","0.000000",,,,,,,,,"6.750000","9344.250000","9527.000000","1.375000",,"453.375000",,,,"2.400000","0.000000","2.333333","14.000000","4.125000","0.000000","48.200000","0.000000","1.800000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1180.000000",,"1180.000000",,"1180.000000",,"285.250000","0.000000",,,,,,,,,"6.250000","8876.250000","9440.000000","0.750000",,"410.625000",,,,"2.400000","0.000000","0.666667","14.333333","4.125000","0.000000","49.200000","0.000000","1.600000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1120.750000",,"1120.750000",,"1120.750000",,"257.000000","0.000000",,,,,,,,,"7.000000","8429.500000","9474.250000","1.500000",,"376.375000",,,,"2.400000","0.000000","1.333333","12.000000","4.500000","0.000000","50.000000","0.000000","1.200000","48.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1160.000000",,"1160.000000",,"1160.000000",,"306.500000","0.000000",,,,,,,,,"5.000000","8725.750000","9412.500000","1.125000",,"500.250000",,,,"1.800000","0.000000","1.333333","17.333333","3.250000","0.000000","37.400000","0.000000","1.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1288.500000",,"1288.500000",,"1288.500000",,"243.000000","0.000000",,,,,,,,,"7.500000","9691.750000","9507.000000","3.625000",,"499.000000",,,,"2.400000","0.000000","5.000000","12.333333","4.375000","0.000000","51.200000","0.000000","3.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1286.500000",,"1286.500000",,"1286.500000",,"251.750000","0.000000",,,,,,,,,"9.750000","9676.750000","9559.250000","5.500000",,"444.000000",,,,"2.800000","0.375000","3.000000","11.333333","4.375000","0.000000","56.800000","0.000000","7.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1178.250000",,"1178.250000",,"1178.250000",,"292.250000","0.000000",,,,,,,,,"6.000000","8862.000000","9494.750000","2.500000",,"429.250000",,,,"1.800000","0.375000","2.333333","13.333333","2.875000","0.000000","39.000000","0.000000","5.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1250.750000",,"1250.750000",,"1250.750000",,"287.500000","0.000000",,,,,,,,,"5.000000","9409.250000","9473.500000","1.750000",,"411.250000",,,,"2.400000","0.000000","2.666667","9.333333","4.125000","0.000000","49.800000","0.000000","3.800000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1154.750000",,"1154.750000",,"1154.750000",,"262.500000","0.000000",,,,,,,,,"24.500000","8688.000000","9617.750000","7.875000",,"1664.625000",,,,"6.400000","0.625000","10.000000","24.333333","11.125000","0.000000","128.400000","0.000000","8.000000","120.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1167.750000",,"1167.750000",,"1167.750000",,"186.000000","0.000000",,,,,,,,,"52.000000","8786.000000","9567.250000","7.500000",,"3361.500000",,,,"10.800000","0.375000","3.000000","43.000000","19.500000","0.000000","217.200000","0.000000","7.400000","209.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1271.500000",,"1271.500000",,"1271.500000",,"287.000000","0.000000",,,,,,,,,"7.500000","9563.750000","9609.750000","16.875000",,"471.375000",,,,"4.600000","1.375000","4.000000","19.000000","7.000000","0.000000","94.200000","0.000000","18.200000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1162.250000",,"1162.250000",,"1162.250000",,"250.000000","0.000000",,,,,,,,,"27.000000","8742.750000","9915.000000","544.750000",,"777.000000",,,,"10.400000","12.125000","3.333333","25.333333","7.000000","0.000000","210.000000","0.000000","134.000000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"892.250000",,"892.250000",,"892.250000",,"447.500000","0.000000",,,,,,,,,"176.250000","6713.250000","10175.500000","1023.750000",,"10632.750000",,,,"49.400000","15.875000","3.333333","18.000000","76.750000","0.000000","989.400000","0.000000","168.800000","820.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1027.250000",,"1027.250000",,"1027.250000",,"228.750000","0.000000",,,,,,,,,"5.500000","7726.750000","9456.250000","5.625000",,"343.125000",,,,"1.000000","0.375000","0.666667","13.666667","1.375000","0.000000","22.400000","0.000000","4.400000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"951.000000",,"951.000000",,"951.000000",,"307.500000","0.000000",,,,,,,,,"4.500000","7156.000000","9368.500000","3.750000",,"293.875000",,,,"2.800000","0.375000","0.666667","4.333333","4.500000","0.000000","56.800000","0.000000","5.800000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1092.000000",,"1092.000000",,"1092.000000",,"308.500000","0.000000",,,,,,,,,"4.250000","8213.500000","9404.250000","1.125000",,"486.375000",,,,"1.000000","0.000000","0.666667","14.000000","1.750000","0.000000","22.800000","0.000000","1.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"898.000000",,"898.000000",,"898.000000",,"204.250000","0.000000",,,,,,,,,"2.250000","6754.250000","9402.000000","1.875000",,"225.375000",,,,"0.800000","0.000000","0.333333","8.666667","1.500000","0.000000","18.800000","0.000000","2.400000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1028.250000",,"1028.250000",,"1028.250000",,"147.250000","0.000000",,,,,,,,,"3.250000","7733.250000","9503.500000","0.750000",,"266.250000",,,,"0.800000","0.000000","0.666667","6.333333","1.125000","0.000000","17.000000","0.000000","2.800000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"844.500000",,"844.500000",,"844.500000",,"163.750000","0.000000",,,,,,,,,"6.500000","6353.750000","9458.250000","1.875000",,"230.250000",,,,"1.800000","0.000000","0.333333","13.333333","3.250000","0.000000","38.400000","0.000000","2.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.500000",,"884.500000",,"884.500000",,"151.250000","0.000000",,,,,,,,,"4.500000","6656.250000","9499.000000","2.625000",,"401.875000",,,,"1.000000","0.000000","1.333333","10.333333","1.750000","0.000000","23.800000","0.000000","2.600000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"906.000000",,"906.000000",,"906.000000",,"127.250000","0.000000",,,,,,,,,"25.250000","6816.750000","9766.750000","346.875000",,"1326.375000",,,,"8.600000","5.875000","4.000000","20.666667","10.000000","0.000000","174.200000","0.000000","64.400000","109.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.250000",,"856.250000",,"856.250000",,"164.000000","0.000000",,,,,,,,,"9.000000","6442.250000","9504.250000","20.250000",,"362.625000",,,,"3.400000","2.125000","2.333333","7.000000","4.000000","0.000000","69.200000","0.000000","24.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"856.250000",,"856.250000",,"856.250000",,"156.500000","0.000000",,,,,,,,,"3.750000","6442.250000","9418.000000","0.625000",,"297.000000",,,,"1.000000","0.000000","3.000000","8.000000","1.750000","0.000000","22.400000","0.000000","0.800000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"884.000000",,"884.000000",,"884.000000",,"179.000000","0.000000",,,,,,,,,"3.500000","6648.750000","9448.000000","1.875000",,"227.250000",,,,"1.600000","0.000000","0.666667","6.666667","2.500000","0.000000","32.200000","0.000000","2.600000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1158.250000",,"1158.250000",,"1158.250000",,"319.250000","0.000000",,,,,,,,,"3.250000","8712.250000","9407.000000","2.125000",,"406.375000",,,,"1.000000","0.000000","3.333333","12.000000","1.750000","0.000000","23.600000","0.000000","2.600000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1266.500000",,"1266.500000",,"1266.500000",,"212.250000","0.000000",,,,,,,,,"16.750000","9526.750000","9583.250000","11.250000",,"936.625000",,,,"3.800000","1.000000","3.000000","33.333333","5.625000","0.000000","76.000000","0.000000","14.600000","61.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1110.500000",,"1110.500000",,"1110.500000",,"501.500000","0.000000",,,,,,,,,"2.750000","8354.000000","9211.250000","1.875000",,"335.125000",,,,"0.800000","0.000000","0.333333","7.666667","1.375000","0.000000","18.200000","0.000000","0.600000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1103.500000",,"1103.500000",,"1103.500000",,"162.000000","0.000000",,,,,,,,,"9.000000","8302.750000","9535.500000","1.125000",,"546.375000",,,,"2.000000","0.000000","2.666667","11.000000","3.375000","0.000000","40.600000","0.000000","1.000000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1104.500000",,"1104.500000",,"1104.500000",,"262.500000","0.000000",,,,,,,,,"79.250000","8309.500000","10911.000000","2243.625000",,"972.000000",,,,"32.600000","54.375000","1.666667","14.000000","6.375000","0.000000","654.000000","0.000000","583.800000","70.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1067.000000",,"1067.000000",,"1067.000000",,"377.000000","0.000000",,,,,,,,,"87.500000","8026.500000","10848.000000","1455.250000",,"2058.750000",,,,"28.800000","33.125000","3.333333","18.666667","20.125000","0.000000","576.800000","0.000000","358.400000","218.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1140.000000",,"1140.000000",,"1140.000000",,"188.500000","0.000000",,,,,,,,,"78.750000","8576.250000","9930.250000","632.375000",,"3302.250000",,,,"20.200000","13.500000","3.000000","14.333333","24.375000","0.000000","406.600000","0.000000","144.200000","262.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"920.000000",,"920.000000",,"920.000000",,"401.500000","0.000000",,,,,,,,,"94.250000","6922.000000","10113.500000","1639.500000",,"4139.875000",,,,"25.000000","20.250000","2.333333","16.333333","26.250000","0.000000","500.600000","0.000000","219.800000","280.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"983.000000",,"983.000000",,"983.000000",,"277.500000","0.000000",,,,,,,,,"33.250000","7394.250000","9668.250000","236.625000",,"2107.750000",,,,"15.200000","6.625000","3.666667","11.333333","21.750000","0.000000","307.600000","0.000000","72.400000","235.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1025.500000",,"1025.500000",,"1025.500000",,"183.000000","0.000000",,,,,,,,,"157.750000","7713.750000","11370.750000","2502.875000",,"5341.375000",,,,"47.400000","48.750000","2.333333","12.666667","39.625000","0.000000","949.400000","0.000000","525.000000","424.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"813.000000",,"813.000000",,"813.000000",,"149.750000","0.000000",,,,,,,,,"180.500000","6116.500000","13406.250000","4792.625000",,"1449.750000",,,,"60.400000","101.500000","2.666667","17.333333","11.500000","0.000000","1208.200000","0.000000","1083.400000","124.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"741.500000",,"741.500000",,"741.500000",,"204.750000","0.000000",,,,,,,,,"188.750000","5577.750000","13380.250000","4820.250000",,"3013.875000",,,,"63.800000","104.875000","2.666667","36.333333","14.500000","0.000000","1277.200000","0.000000","1120.000000","157.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"921.250000",,"921.250000",,"921.250000",,"218.500000","0.000000",,,,,,,,,"153.000000","6930.500000","11504.250000","4123.375000",,"2653.250000",,,,"56.400000","86.000000","1.666667","13.666667","19.500000","0.000000","1129.000000","0.000000","918.800000","210.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1141.250000",,"1141.250000",,"1141.250000",,"282.500000","0.000000",,,,,,,,,"81.500000","8584.750000","9455.000000","16.375000",,"5363.125000",,,,"24.400000","2.625000","2.333333","14.000000","43.000000","0.000000","491.800000","0.000000","31.600000","460.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1137.250000",,"1137.250000",,"1137.250000",,"337.250000","0.000000",,,,,,,,,"59.500000","8555.500000","10272.500000","182.875000",,"2041.375000",,,,"24.000000","17.500000","2.000000","19.333333","27.375000","0.000000","483.000000","0.000000","189.200000","293.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"64.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1145.750000",,"1145.750000",,"1145.750000",,"347.750000","0.000000",,,,,,,,,"98.750000","8619.250000","9979.250000","206.375000",,"5645.625000",,,,"41.400000","12.000000","2.666667","18.000000","65.250000","0.000000","830.200000","0.000000","130.800000","699.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1186.250000",,"1186.250000",,"1186.250000",,"253.500000","0.000000",,,,,,,,,"187.000000","8922.750000","9698.000000","182.125000",,"11065.375000",,,,"48.600000","7.875000","2.666667","24.666667","83.000000","0.000000","974.400000","0.000000","87.000000","887.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1136.250000",,"1136.250000",,"1136.250000",,"237.250000","0.000000",,,,,,,,,"124.000000","8544.500000","10460.750000","772.875000",,"5834.375000",,,,"39.200000","24.375000","2.333333","23.000000","47.750000","0.000000","784.600000","0.000000","261.200000","523.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"751.750000",,"751.750000",,"751.750000",,"440.250000","0.000000",,,,,,,,,"225.500000","5655.500000","13179.250000","7608.500000",,"442.750000",,,,"77.000000","136.500000","2.000000","12.666667","8.250000","0.000000","1543.400000","0.000000","1463.800000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"168.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"880.250000",,"880.250000",,"880.250000",,"286.250000","0.000000",,,,,,,,,"172.500000","6622.000000","12222.250000","4045.500000",,"2047.750000",,,,"59.200000","102.375000","2.666667","41.666667","8.250000","0.000000","1184.000000","0.000000","1093.400000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"909.500000",,"909.500000",,"909.500000",,"282.000000","0.000000",,,,,,,,,"160.000000","6842.000000","11520.750000","3802.875000",,"2834.625000",,,,"58.600000","83.000000","1.666667","16.333333","26.625000","0.000000","1172.000000","0.000000","886.000000","286.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"771.250000",,"771.250000",,"771.250000",,"205.500000","0.000000",,,,,,,,,"147.500000","5802.500000","12124.000000","5920.875000",,"323.250000",,,,"57.400000","104.625000","2.000000","8.000000","3.000000","0.000000","1150.000000","0.000000","1116.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"802.750000",,"802.750000",,"802.750000",,"354.000000","0.000000",,,,,,,,,"197.500000","6040.000000","12625.000000","6441.750000",,"222.000000",,,,"83.000000","152.625000","2.000000","4.000000","2.625000","0.000000","1663.600000","0.000000","1631.800000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"851.250000",,"851.250000",,"851.250000",,"422.000000","0.000000",,,,,,,,,"229.000000","6403.000000","12501.000000","6186.750000",,"3268.000000",,,,"72.400000","115.000000","2.333333","33.333333","19.875000","0.000000","1448.600000","0.000000","1233.600000","215.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1036.750000",,"1036.750000",,"1036.750000",,"224.750000","0.000000",,,,,,,,,"148.500000","7798.750000","11141.250000","3452.125000",,"2548.750000",,,,"55.400000","72.250000","1.333333","10.000000","31.875000","0.000000","1109.800000","0.000000","767.800000","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1302.500000",,"1302.500000",,"1302.500000",,"310.000000","0.000000",,,,,,,,,"5.000000","9796.500000","9418.250000","5.250000",,"324.250000",,,,"2.200000","0.375000","0.333333","3.666667","3.375000","0.000000","47.600000","0.000000","7.800000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1312.000000",,"1312.000000",,"1312.000000",,"418.750000","0.000000",,,,,,,,,"4.750000","9868.000000","9420.500000","1.875000",,"249.750000",,,,"2.600000","0.250000","2.666667","11.000000","4.500000","0.000000","54.200000","0.000000","4.200000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1259.000000",,"1259.000000",,"1259.000000",,"251.000000","0.000000",,,,,,,,,"7.250000","9471.500000","9510.250000","6.250000",,"314.125000",,,,"2.200000","0.375000","2.000000","5.666667","3.250000","0.000000","46.400000","0.000000","7.800000","38.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1168.750000",,"1168.750000",,"1168.750000",,"261.500000","0.000000",,,,,,,,,"4.250000","8791.500000","9463.250000","3.000000",,"417.375000",,,,"1.400000","0.375000","2.666667","12.333333","1.875000","0.000000","29.400000","0.000000","5.600000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"1307.000000",,"1307.000000",,"1307.000000",,"232.250000","0.000000",,,,,,,,,"9.250000","9831.000000","9566.750000","10.000000",,"413.625000",,,,"3.600000","1.125000","4.333333","8.333333","5.125000","0.000000","72.000000","0.000000","14.600000","57.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"326.000000",,"326.000000",,"326.000000",,"153.500000","0.000000",,,,,,,,,"168.750000","2455.250000","16998.250000","7192.125000",,"157.500000",,,,"66.800000","123.750000","2.000000","11.333333","1.125000","0.000000","1337.400000","0.000000","1324.200000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"290.000000",,"290.000000",,"290.000000",,"157.000000","0.000000",,,,,,,,,"151.750000","2184.500000","16750.000000","5627.125000",,"884.125000",,,,"69.400000","122.750000","2.000000","10.666667","7.125000","0.000000","1391.400000","0.000000","1311.600000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"307.750000",,"307.750000",,"307.750000",,"294.500000","0.000000",,,,,,,,,"209.500000","2319.250000","16349.750000","6461.875000",,"3409.125000",,,,"81.000000","120.250000","2.000000","10.666667","31.125000","0.000000","1622.400000","0.000000","1286.600000","335.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"232.000000",,"232.000000",,"232.000000",,"160.500000","0.000000",,,,,,,,,"124.500000","1749.750000","17097.500000","2848.750000",,"1853.375000",,,,"74.600000","122.500000","2.333333","15.666667","16.375000","0.000000","1492.600000","0.000000","1311.000000","181.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","38.000000",,,,,,,,,"183.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"146.500000",,"146.500000",,"146.500000",,"149.500000","0.000000",,,,,,,,,"293.500000","1106.000000","18391.000000","8867.250000",,"7972.875000",,,,"123.800000","203.125000","3.666667","28.000000","29.375000","0.000000","2479.600000","0.000000","2168.000000","311.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.750000",,"145.750000",,"145.750000",,"172.250000","0.000000",,,,,,,,,"289.500000","1100.250000","18472.000000","7309.625000",,"8228.875000",,,,"101.800000","170.250000","2.666667","37.666667","20.500000","0.000000","2038.800000","0.000000","1817.200000","221.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"161.000000",,"161.000000",,"161.000000",,"176.250000","0.000000",,,,,,,,,"127.000000","1215.750000","18137.000000","2569.375000",,"3177.625000",,,,"56.800000","87.625000","2.333333","26.333333","19.000000","0.000000","1139.800000","0.000000","936.000000","203.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"135.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"165.000000",,"165.000000",,"165.000000",,"308.500000","0.000000",,,,,,,,,"33.500000","1246.000000","17550.250000","175.000000",,"137.625000",,,,"13.200000","13.500000","3.000000","0.666667","10.875000","0.000000","265.000000","0.000000","146.800000","118.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","14.000000",,,,,,,,,"2795.000000","2920.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"276.000000",,"276.000000",,"276.000000",,"147.250000","0.000000",,,,,,,,,"82.750000","2078.250000","17108.500000","35.250000",,"4056.000000",,,,"31.200000","2.875000","4.333333","20.333333","55.125000","0.000000","625.200000","0.000000","34.000000","591.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1982.000000","18.000000",,,,,,,,,"27405.000000","3560.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"199.500000",,"199.500000",,"199.500000",,"88.750000","0.000000",,,,,,,,,"8.000000","1502.250000","18195.000000","15.250000",,"222.750000",,,,"5.000000","0.750000","3.333333","1.666667","8.250000","0.000000","100.600000","0.000000","9.800000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"139.000000","171.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"139.750000",,"139.750000",,"139.750000",,"87.000000","0.000000",,,,,,,,,"3.250000","1055.000000","18501.000000","6.625000",,"103.000000",,,,"4.600000","0.000000","5.333333","1.333333","8.250000","0.000000","93.000000","0.000000","2.200000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"106.000000",,"106.000000",,"106.000000",,"108.250000","0.000000",,,,,,,,,"2.500000","800.500000","18757.750000","1.875000",,"71.250000",,,,"3.000000","0.000000","5.000000","1.000000","5.250000","0.000000","60.000000","0.000000","0.200000","59.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.000000",,"58.000000",,"58.000000",,"82.250000","0.000000",,,,,,,,,"1.250000","440.000000","19448.750000","0.000000",,"24.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.625000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"114.750000","0.000000",,,,,,,,,"1.000000","413.500000","19216.750000","0.000000",,"21.125000",,,,"0.800000","0.000000","0.000000","1.666667","2.000000","0.000000","19.400000","0.000000","0.200000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.000000",,"70.000000",,"70.000000",,"109.000000","0.000000",,,,,,,,,"1.250000","528.250000","19195.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","33.400000","0.000000","0.000000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"92.250000","0.000000",,,,,,,,,"0.750000","412.500000","19283.500000","0.000000",,"21.000000",,,,"1.000000","0.000000","0.000000","2.000000","1.875000","0.000000","23.600000","0.000000","0.000000","23.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.250000",,"68.250000",,"68.250000",,"186.250000","0.000000",,,,,,,,,"1.250000","516.750000","19108.750000","0.000000",,"40.125000",,,,"1.800000","0.000000","0.000000","4.666667","3.250000","0.000000","37.000000","0.000000","0.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"378.750000","0.000000",,,,,,,,,"7.000000","1114.000000","17781.000000","3.750000",,"147.625000",,,,"6.200000","0.000000","1.000000","0.666667","11.250000","0.000000","125.400000","0.000000","2.600000","122.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"479.000000","566.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"241.500000",,"241.500000",,"241.500000",,"493.750000","0.000000",,,,,,,,,"18.250000","1818.000000","16396.000000","27.000000",,"343.875000",,,,"9.400000","1.875000","2.333333","1.666667","15.250000","0.000000","189.800000","0.000000","22.800000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","5.000000",,,,,,,,,"781.000000","914.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"308.250000",,"308.250000",,"308.250000",,"746.500000","0.000000",,,,,,,,,"51.500000","2320.750000","15488.750000","1.125000",,"3266.875000",,,,"22.800000","0.000000","0.666667","9.333333","42.250000","0.000000","456.200000","0.000000","3.000000","453.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","16.000000",,,,,,,,,"3224.000000","3381.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.000000",,"167.000000",,"167.000000",,"435.000000","0.000000",,,,,,,,,"5.250000","1258.250000","17547.000000","0.625000",,"259.500000",,,,"8.400000","0.000000","4.000000","2.666667","15.375000","0.000000","169.200000","0.000000","2.000000","167.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"128.750000",,"128.750000",,"128.750000",,"289.750000","0.000000",,,,,,,,,"3.250000","971.000000","18250.250000","0.000000",,"85.125000",,,,"2.600000","0.000000","0.000000","1.666667","4.875000","0.000000","53.000000","0.000000","0.200000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"149.000000",,"149.000000",,"149.000000",,"302.750000","0.000000",,,,,,,,,"4.500000","1123.250000","17899.250000","0.000000",,"101.500000",,,,"4.400000","0.000000","0.000000","2.333333","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"220.750000","0.000000",,,,,,,,,"0.750000","444.000000","19068.250000","0.000000",,"25.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.250000",,"64.250000",,"64.250000",,"149.750000","0.000000",,,,,,,,,"2.000000","485.750000","19164.000000","0.000000",,"45.625000",,,,"2.200000","0.000000","0.000000","2.000000","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"136.750000","0.000000",,,,,,,,,"2.250000","444.500000","19193.250000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"131.000000","0.000000",,,,,,,,,"1.250000","480.250000","19231.500000","0.000000",,"31.750000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.500000",,"50.500000",,"50.500000",,"147.000000","0.000000",,,,,,,,,"0.750000","382.250000","19094.750000","0.000000",,"19.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"182.500000","0.000000",,,,,,,,,"0.500000","398.500000","19155.750000","0.000000",,"15.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","9.400000","0.000000","0.000000","9.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.750000",,"60.750000",,"60.750000",,"214.500000","0.000000",,,,,,,,,"1.250000","461.500000","18973.250000","0.000000",,"34.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.400000","0.000000","0.200000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.750000",,"56.750000",,"56.750000",,"132.750000","0.000000",,,,,,,,,"0.250000","429.250000","19274.750000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","6.000000","0.000000","0.000000","6.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"255.750000","0.000000",,,,,,,,,"0.750000","416.500000","18995.500000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.800000","0.000000","0.000000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"89.250000",,"89.250000",,"89.250000",,"179.250000","0.000000",,,,,,,,,"4.250000","673.500000","18695.000000","0.000000",,"113.125000",,,,"5.200000","0.000000","5.666667","1.666667","9.625000","0.000000","105.000000","0.000000","0.800000","104.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"162.250000",,"162.250000",,"162.250000",,"257.500000","0.000000",,,,,,,,,"7.500000","1223.250000","17510.750000","0.000000",,"124.375000",,,,"4.800000","0.000000","0.000000","1.000000","9.000000","0.000000","99.200000","0.000000","0.200000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"434.000000","499.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"121.500000",,"121.500000",,"121.500000",,"189.500000","0.000000",,,,,,,,,"3.750000","918.000000","18342.750000","0.750000",,"115.500000",,,,"5.000000","0.000000","3.333333","2.333333","9.000000","0.000000","100.200000","0.000000","2.400000","97.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"116.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"209.250000","0.000000",,,,,,,,,"2.750000","1198.000000","18132.500000","4.875000",,"96.750000",,,,"3.400000","0.000000","7.333333","3.333333","6.250000","0.000000","69.600000","0.000000","0.600000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"97.750000",,"97.750000",,"97.750000",,"186.500000","0.000000",,,,,,,,,"3.250000","740.250000","18561.750000","0.000000",,"57.375000",,,,"2.600000","0.000000","0.333333","2.666667","4.750000","0.000000","52.400000","0.000000","0.200000","52.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"69.000000",,"69.000000",,"69.000000",,"180.750000","0.000000",,,,,,,,,"1.250000","521.500000","19070.000000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"142.500000","0.000000",,,,,,,,,"1.000000","413.250000","19252.500000","0.000000",,"26.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.500000",,"51.500000",,"51.500000",,"155.500000","0.000000",,,,,,,,,"0.750000","392.000000","19174.250000","0.000000",,"14.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"115.250000","0.000000",,,,,,,,,"0.750000","417.000000","19361.500000","0.000000",,"20.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"149.000000","0.000000",,,,,,,,,"1.000000","415.000000","19183.750000","0.000000",,"15.750000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","16.200000","0.000000","0.200000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"118.750000","0.000000",,,,,,,,,"0.250000","398.250000","19309.250000","0.000000",,"8.875000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.200000","0.000000","0.000000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"159.000000","0.000000",,,,,,,,,"0.500000","394.750000","19145.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.000000",,"57.000000",,"57.000000",,"124.000000","0.000000",,,,,,,,,"0.750000","430.500000","19269.000000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"108.000000","0.000000",,,,,,,,,"1.250000","433.500000","19325.750000","0.000000",,"11.250000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"78.750000",,"78.750000",,"78.750000",,"196.000000","0.000000",,,,,,,,,"4.000000","595.500000","18793.750000","2.625000",,"76.125000",,,,"3.200000","0.000000","3.000000","1.333333","6.000000","0.000000","66.600000","0.000000","0.600000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","96.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"130.750000",,"130.750000",,"130.750000",,"387.250000","0.000000",,,,,,,,,"5.500000","988.000000","17671.000000","0.000000",,"124.750000",,,,"5.800000","0.000000","0.000000","1.666667","10.750000","0.000000","118.200000","0.000000","0.200000","118.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"426.000000","505.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"281.750000",,"281.750000",,"281.750000",,"351.000000","0.000000",,,,,,,,,"24.500000","2121.250000","16324.750000","1.875000",,"379.750000",,,,"12.200000","0.000000","6.333333","1.666667","22.875000","0.000000","247.800000","0.000000","2.800000","245.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","13.000000",,,,,,,,,"2376.000000","2596.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"234.250000",,"234.250000",,"234.250000",,"321.500000","0.000000",,,,,,,,,"37.250000","1765.500000","17281.500000","1.875000",,"1787.625000",,,,"10.800000","0.000000","2.000000","32.666667","19.750000","0.000000","218.400000","0.000000","3.800000","214.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1046.000000","16.000000",,,,,,,,,"15655.000000","3207.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"116.500000",,"116.500000",,"116.500000",,"341.250000","0.000000",,,,,,,,,"6.250000","880.750000","18048.500000","1.875000",,"134.125000",,,,"6.200000","0.000000","4.000000","1.666667","11.625000","0.000000","127.000000","0.000000","1.400000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"162.000000","187.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"144.750000","0.000000",,,,,,,,,"1.000000","488.750000","19086.000000","0.000000",,"31.125000",,,,"1.000000","0.000000","0.000000","2.333333","1.875000","0.000000","22.200000","0.000000","0.200000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"217.250000","0.000000",,,,,,,,,"1.250000","414.750000","19086.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"275.000000","0.000000",,,,,,,,,"1.250000","472.250000","18870.750000","0.000000",,"42.250000",,,,"1.600000","0.000000","0.000000","0.666667","2.875000","0.000000","32.000000","0.000000","0.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"158.750000","0.000000",,,,,,,,,"1.000000","401.000000","19134.500000","0.000000",,"24.750000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"186.750000","0.000000",,,,,,,,,"0.250000","411.000000","19139.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","2.333333","0.375000","0.000000","6.600000","0.000000","0.000000","6.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"121.250000","0.000000",,,,,,,,,"1.750000","495.500000","19232.250000","0.000000",,"49.125000",,,,"2.200000","0.000000","1.333333","1.666667","4.000000","0.000000","44.200000","0.000000","0.200000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"178.750000","0.000000",,,,,,,,,"0.750000","411.250000","19221.500000","0.000000",,"17.875000",,,,"0.800000","0.000000","0.000000","2.333333","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"222.750000","0.000000",,,,,,,,,"0.750000","405.000000","19148.000000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.750000",,"63.750000",,"63.750000",,"222.750000","0.000000",,,,,,,,,"1.500000","482.250000","19057.500000","0.000000",,"45.625000",,,,"2.000000","0.000000","0.000000","1.000000","3.625000","0.000000","42.600000","0.000000","0.000000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"250.750000","0.000000",,,,,,,,,"13.750000","1097.750000","17822.250000","6.625000",,"218.750000",,,,"9.600000","0.625000","1.666667","0.333333","16.750000","0.000000","192.000000","0.000000","8.400000","183.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","6.000000",,,,,,,,,"826.000000","1039.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"148.750000",,"148.750000",,"148.750000",,"169.500000","0.000000",,,,,,,,,"7.500000","1122.000000","17912.500000","54.625000",,"136.250000",,,,"7.600000","3.375000","1.333333","1.333333","11.000000","0.000000","154.000000","0.000000","36.200000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"299.000000","366.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.750000",,"61.750000",,"61.750000",,"239.250000","0.000000",,,,,,,,,"1.500000","468.250000","19080.000000","12.000000",,"48.750000",,,,"1.800000","0.375000","1.666667","0.666667","2.625000","0.000000","37.200000","0.000000","7.000000","30.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.750000",,"50.750000",,"50.750000",,"263.500000","0.000000",,,,,,,,,"0.750000","386.750000","19093.750000","0.000000",,"23.500000",,,,"1.000000","0.000000","0.000000","8.666667","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"166.750000","0.000000",,,,,,,,,"0.500000","413.500000","19170.500000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.000000",,"62.000000",,"62.000000",,"231.750000","0.000000",,,,,,,,,"1.500000","470.500000","18971.250000","0.000000",,"40.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.750000",,"51.750000",,"51.750000",,"196.000000","0.000000",,,,,,,,,"0.750000","392.250000","19102.500000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.000000",,"66.000000",,"66.000000",,"296.500000","0.000000",,,,,,,,,"18.000000","500.000000","18913.750000","252.375000",,"23.250000",,,,"6.800000","12.000000","1.333333","22.666667","0.750000","0.000000","139.400000","0.000000","129.800000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"258.000000","301.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.250000",,"62.250000",,"62.250000",,"385.000000","0.000000",,,,,,,,,"1.750000","469.250000","18764.000000","0.000000",,"57.375000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"184.250000","0.000000",,,,,,,,,"0.750000","426.750000","19292.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"219.500000","0.000000",,,,,,,,,"0.750000","445.000000","19045.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.500000",,"141.500000",,"141.500000",,"280.750000","0.000000",,,,,,,,,"3.000000","1067.500000","18014.500000","0.750000",,"109.125000",,,,"4.000000","0.000000","1.666667","0.666667","7.125000","0.000000","80.800000","0.000000","1.000000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"72.500000",,"72.500000",,"72.500000",,"236.000000","0.000000",,,,,,,,,"2.250000","547.750000","18784.250000","0.000000",,"71.875000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.800000","0.000000","0.000000","63.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.750000",,"56.750000",,"56.750000",,"204.000000","0.000000",,,,,,,,,"1.250000","431.750000","19150.250000","0.000000",,"27.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"326.500000","0.000000",,,,,,,,,"1.250000","482.000000","18921.750000","0.000000",,"30.375000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"264.250000","0.000000",,,,,,,,,"0.750000","405.750000","19030.250000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.500000",,"68.500000",,"68.500000",,"165.750000","0.000000",,,,,,,,,"1.500000","518.500000","20362.250000","0.000000",,"36.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"46.000000",,"46.000000",,"46.000000",,"257.500000","0.000000",,,,,,,,,"0.500000","349.000000","17803.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.500000","0.000000","18.600000","0.000000","0.000000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"212.500000","0.000000",,,,,,,,,"0.750000","420.000000","19057.750000","0.375000",,"27.750000",,,,"1.000000","0.000000","1.666667","0.333333","1.750000","0.000000","21.800000","0.000000","1.200000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"220.250000","0.000000",,,,,,,,,"0.750000","395.500000","19072.000000","0.000000",,"14.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"67.250000",,"67.250000",,"67.250000",,"143.500000","0.000000",,,,,,,,,"1.250000","510.750000","19216.500000","0.000000",,"43.375000",,,,"1.800000","0.000000","0.000000","0.333333","3.375000","0.000000","37.200000","0.000000","0.000000","37.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.750000","532.250000","19072.000000","0.000000",,"53.125000",,,,"2.600000","0.000000","0.000000","0.666667","4.750000","0.000000","52.800000","0.000000","0.000000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"156.750000",,"156.750000",,"156.750000",,"208.250000","0.000000",,,,,,,,,"15.000000","1182.250000","17896.500000","375.750000",,"138.375000",,,,"8.200000","6.250000","1.666667","1.000000","8.875000","0.000000","167.600000","0.000000","70.000000","97.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"372.000000","428.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.250000",,"167.250000",,"167.250000",,"192.750000","0.000000",,,,,,,,,"25.500000","1263.500000","18166.500000","582.250000",,"31.125000",,,,"24.800000","44.250000","0.666667","0.333333","1.875000","0.000000","497.000000","0.000000","475.800000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"184.000000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"170.000000","0.000000",,,,,,,,,"1.750000","417.750000","19208.250000","0.000000",,"53.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.800000","0.000000","0.000000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"142.250000","0.000000",,,,,,,,,"0.750000","422.500000","19228.750000","0.000000",,"23.250000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","19.000000","0.000000","0.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"143.500000","0.000000",,,,,,,,,"1.500000","503.250000","19154.250000","0.000000",,"48.250000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","37.800000","0.000000","0.000000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"129.500000","0.000000",,,,,,,,,"0.500000","424.500000","19341.750000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"161.250000","0.000000",,,,,,,,,"0.500000","444.500000","19246.750000","0.000000",,"18.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.250000","533.500000","19221.750000","0.000000",,"49.875000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"152.500000","0.000000",,,,,,,,,"0.500000","419.250000","19240.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"126.500000","0.000000",,,,,,,,,"1.000000","455.750000","19299.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"196.500000","0.000000",,,,,,,,,"3.500000","765.750000","18777.250000","2.125000",,"94.875000",,,,"4.400000","0.000000","4.000000","1.000000","7.750000","0.000000","88.200000","0.000000","2.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"178.500000",,"178.500000",,"178.500000",,"145.500000","0.000000",,,,,,,,,"3.250000","1347.000000","18115.750000","0.000000",,"121.000000",,,,"4.000000","0.000000","0.000000","1.666667","7.375000","0.000000","80.600000","0.000000","0.000000","80.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"68.500000",,"68.500000",,"68.500000",,"116.750000","0.000000",,,,,,,,,"2.750000","519.250000","19257.500000","0.000000",,"68.125000",,,,"2.200000","0.000000","0.000000","1.333333","4.125000","0.000000","47.600000","0.000000","0.000000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"197.250000",,"197.250000",,"197.250000",,"279.000000","0.000000",,,,,,,,,"22.250000","1487.000000","17346.000000","159.250000",,"164.125000",,,,"14.400000","15.250000","2.333333","1.666667","11.625000","0.000000","291.200000","0.000000","164.400000","126.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"63.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"105.250000",,"105.250000",,"105.250000",,"163.750000","0.000000",,,,,,,,,"4.750000","796.500000","18592.500000","0.000000",,"64.875000",,,,"3.000000","0.000000","0.000000","2.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"193.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.250000",,"147.250000",,"147.250000",,"164.250000","0.000000",,,,,,,,,"5.500000","1109.500000","18225.250000","1.125000",,"129.375000",,,,"4.200000","0.000000","1.333333","0.666667","7.750000","0.000000","87.000000","0.000000","1.800000","85.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"153.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"73.250000",,"73.250000",,"73.250000",,"201.250000","0.000000",,,,,,,,,"2.250000","556.000000","18887.250000","0.375000",,"73.125000",,,,"3.200000","0.000000","3.000000","20.333333","6.000000","0.000000","67.800000","0.000000","0.200000","67.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.000000",,"65.000000",,"65.000000",,"293.250000","0.000000",,,,,,,,,"1.250000","493.500000","18930.000000","0.000000",,"35.250000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"51.000000",,"51.000000",,"51.000000",,"324.750000","0.000000",,,,,,,,,"0.500000","387.750000","18960.500000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.500000",,"61.500000",,"61.500000",,"312.000000","0.000000",,,,,,,,,"1.500000","466.000000","18739.000000","0.000000",,"43.375000",,,,"1.600000","0.000000","0.000000","2.666667","2.875000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"259.000000","0.000000",,,,,,,,,"0.500000","400.000000","18935.750000","0.000000",,"18.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"183.000000","0.000000",,,,,,,,,"0.750000","401.250000","19144.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"64.750000",,"64.750000",,"64.750000",,"260.000000","0.000000",,,,,,,,,"1.750000","490.000000","18922.250000","0.000000",,"46.000000",,,,"2.000000","0.000000","0.000000","1.666667","3.625000","0.000000","42.000000","0.000000","0.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"185.750000","0.000000",,,,,,,,,"0.500000","400.500000","19128.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.250000",,"52.250000",,"52.250000",,"191.000000","0.000000",,,,,,,,,"0.500000","397.750000","19199.500000","0.000000",,"10.500000",,,,"0.000000","0.000000","0.000000","3.666667","0.000000","0.000000","3.400000","0.000000","0.000000","3.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.000000",,"65.000000",,"65.000000",,"288.250000","0.000000",,,,,,,,,"2.250000","492.500000","18967.000000","0.000000",,"56.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"49.250000",,"49.250000",,"49.250000",,"413.250000","0.000000",,,,,,,,,"0.250000","372.000000","18771.750000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"274.250000","0.000000",,,,,,,,,"1.000000","410.500000","18897.000000","0.375000",,"32.250000",,,,"1.400000","0.000000","2.666667","1.333333","2.625000","0.000000","31.800000","0.000000","0.200000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.000000",,"63.000000",,"63.000000",,"360.250000","0.000000",,,,,,,,,"1.500000","476.500000","18722.250000","3.375000",,"40.875000",,,,"1.800000","0.375000","1.000000","2.333333","2.875000","0.000000","36.600000","0.000000","4.400000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"274.750000","0.000000",,,,,,,,,"0.750000","437.000000","19069.250000","0.000000",,"22.125000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.500000",,"52.500000",,"52.500000",,"364.250000","0.000000",,,,,,,,,"0.750000","399.250000","18990.750000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.800000","0.000000","0.000000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.250000",,"60.250000",,"60.250000",,"394.750000","0.000000",,,,,,,,,"0.750000","456.250000","18710.000000","0.000000",,"32.250000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","25.800000","0.000000","0.000000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"70.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.750000",,"57.750000",,"57.750000",,"174.500000","0.000000",,,,,,,,,"1.000000","438.500000","19223.000000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"248.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"195.000000","0.000000",,,,,,,,,"0.500000","395.500000","19119.000000","0.000000",,"18.250000",,,,"0.600000","0.000000","0.000000","0.000000","1.000000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"108.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.750000",,"65.750000",,"65.750000",,"159.500000","0.000000",,,,,,,,,"1.750000","498.250000","19073.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"149.500000","0.000000",,,,,,,,,"0.750000","413.500000","19206.500000","0.000000",,"14.625000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","10.800000","0.000000","0.000000","10.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"144.500000",,"144.500000",,"144.500000",,"315.750000","0.000000",,,,,,,,,"2.750000","1090.250000","18005.000000","1.875000",,"91.750000",,,,"4.400000","0.000000","2.666667","1.000000","7.750000","0.000000","89.400000","0.000000","2.800000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"83.250000",,"83.250000",,"83.250000",,"253.250000","0.000000",,,,,,,,,"4.500000","629.250000","18626.250000","0.375000",,"159.625000",,,,"6.400000","0.000000","2.666667","1.666667","11.875000","0.000000","129.400000","0.000000","1.000000","128.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.500000",,"63.500000",,"63.500000",,"304.500000","0.000000",,,,,,,,,"1.000000","481.750000","18891.250000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.250000",,"50.250000",,"50.250000",,"259.000000","0.000000",,,,,,,,,"0.500000","383.000000","19155.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.250000",,"65.250000",,"65.250000",,"290.250000","0.000000",,,,,,,,,"1.000000","494.250000","18933.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.250000",,"50.250000",,"50.250000",,"348.500000","0.000000",,,,,,,,,"0.750000","383.250000","18885.000000","0.000000",,"26.625000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"47.500000",,"47.500000",,"47.500000",,"283.000000","0.000000",,,,,,,,,"0.250000","362.250000","18954.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"63.250000",,"63.250000",,"63.250000",,"291.000000","0.000000",,,,,,,,,"1.250000","478.750000","18789.750000","0.000000",,"45.250000",,,,"2.000000","0.000000","0.000000","0.666667","3.625000","0.000000","40.000000","0.000000","0.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"48.250000",,"48.250000",,"48.250000",,"442.750000","0.000000",,,,,,,,,"0.750000","364.250000","18750.750000","0.000000",,"22.375000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"48.750000",,"48.750000",,"48.750000",,"405.250000","0.000000",,,,,,,,,"0.250000","370.500000","18868.000000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"426.750000","0.000000",,,,,,,,,"1.250000","475.500000","18686.250000","0.000000",,"53.625000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"94.250000",,"94.250000",,"94.250000",,"370.500000","0.000000",,,,,,,,,"23.000000","712.750000","18413.000000","479.000000",,"570.750000",,,,"16.200000","16.375000","2.000000","2.666667","13.500000","0.000000","326.600000","0.000000","180.200000","146.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"52.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"199.000000",,"199.000000",,"199.000000",,"410.000000","0.000000",,,,,,,,,"207.250000","1499.750000","16897.250000","4741.250000",,"4936.125000",,,,"82.800000","119.750000","1.666667","15.000000","35.625000","0.000000","1659.400000","0.000000","1276.600000","382.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"165.000000",,"165.000000",,"165.000000",,"470.500000","0.000000",,,,,,,,,"80.250000","1245.250000","17120.500000","396.125000",,"174.250000",,,,"51.200000","94.500000","2.000000","3.000000","1.125000","0.000000","1024.200000","0.000000","1009.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","248.000000",,,,,,,,,"2093.000000","4453.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"147.500000",,"147.500000",,"147.500000",,"309.750000","0.000000",,,,,,,,,"80.500000","1111.750000","17801.250000","266.000000",,"338.250000",,,,"37.400000","63.000000","2.666667","6.666667","6.750000","0.000000","750.400000","0.000000","675.200000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1515.000000","43.000000",,,,,,,,,"21066.000000","2702.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"311.000000",,"311.000000",,"311.000000",,"656.500000","0.000000",,,,,,,,,"238.500000","2340.750000","14923.750000","0.000000",,"7933.375000",,,,"19.200000","0.000000","3.666667","32.333333","35.875000","0.000000","384.800000","0.000000","0.400000","384.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20399.000000","72.000000",,,,,,,,,"276338.000000","22547.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"290.000000",,"290.000000",,"290.000000",,"550.000000","0.000000",,,,,,,,,"166.000000","2185.500000","15213.250000","0.000000",,"8692.125000",,,,"20.200000","0.000000","0.000000","22.000000","37.875000","0.000000","404.800000","0.000000","0.000000","404.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16094.000000","58.000000",,,,,,,,,"218025.000000","18044.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"281.750000",,"281.750000",,"281.750000",,"461.250000","0.000000",,,,,,,,,"229.250000","2122.500000","15662.750000","2.625000",,"14321.625000",,,,"67.400000","0.000000","5.666667","12.333333","125.750000","0.000000","1348.800000","0.000000","3.200000","1345.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9871.000000","41.000000",,,,,,,,,"133843.000000","11478.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"169.500000",,"169.500000",,"169.500000",,"397.250000","0.000000",,,,,,,,,"151.000000","1279.000000","17194.500000","254.625000",,"3263.500000",,,,"50.400000","53.625000","2.000000","9.666667","40.750000","0.000000","1011.600000","0.000000","576.200000","435.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8517.000000","36.000000",,,,,,,,,"115454.000000","10844.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"366.250000",,"366.250000",,"366.250000",,"566.500000","0.000000",,,,,,,,,"174.250000","2755.250000","14565.750000","46.875000",,"9737.000000",,,,"37.600000","7.375000","2.333333","49.333333","62.875000","0.000000","755.800000","0.000000","79.800000","676.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8454.000000","34.000000",,,,,,,,,"114129.000000","10578.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"240.250000",,"240.250000",,"240.250000",,"477.500000","0.000000",,,,,,,,,"46.000000","1811.500000","16916.000000","2.250000",,"2805.500000",,,,"32.600000","0.000000","10.333333","10.333333","61.250000","0.000000","652.000000","0.000000","3.400000","648.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"99.500000",,"99.500000",,"99.500000",,"508.250000","0.000000",,,,,,,,,"1.250000","752.250000","18093.500000","0.000000",,"49.500000",,,,"2.400000","0.000000","0.000000","2.000000","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"65.500000",,"65.500000",,"65.500000",,"573.500000","0.000000",,,,,,,,,"1.250000","497.000000","18496.250000","0.000000",,"23.625000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"111.750000",,"111.750000",,"111.750000",,"586.500000","0.000000",,,,,,,,,"1.250000","842.000000","17692.000000","0.000000",,"54.375000",,,,"2.200000","0.000000","0.000000","2.333333","4.000000","0.000000","44.000000","0.000000","0.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"589.750000","0.000000",,,,,,,,,"0.750000","414.750000","18523.250000","0.000000",,"22.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"547.500000","0.000000",,,,,,,,,"0.500000","429.750000","18665.500000","0.000000",,"25.000000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"416.250000","0.000000",,,,,,,,,"0.500000","425.250000","18690.500000","0.000000",,"17.250000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.000000",,"61.000000",,"61.000000",,"236.750000","0.000000",,,,,,,,,"0.750000","461.250000","19024.000000","0.000000",,"23.625000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.500000",,"132.500000",,"132.500000",,"369.500000","0.000000",,,,,,,,,"2.750000","999.500000","17743.250000","0.000000",,"71.250000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.600000","0.000000","0.000000","63.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"190.250000",,"190.250000",,"190.250000",,"333.750000","0.000000",,,,,,,,,"3.750000","1433.250000","17368.750000","1.375000",,"147.000000",,,,"4.400000","0.000000","1.000000","2.333333","7.750000","0.000000","88.400000","0.000000","3.400000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"219.500000",,"219.500000",,"219.500000",,"294.500000","0.000000",,,,,,,,,"4.500000","1653.750000","17064.000000","17.250000",,"175.750000",,,,"4.800000","1.125000","0.666667","3.000000","7.500000","0.000000","96.800000","0.000000","13.400000","83.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"168.000000",,"168.000000",,"168.000000",,"325.750000","0.000000",,,,,,,,,"3.500000","1265.750000","17719.500000","0.000000",,"66.125000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","41.000000","0.000000","0.200000","40.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"218.000000",,"218.000000",,"218.000000",,"376.000000","0.000000",,,,,,,,,"40.250000","1642.250000","16982.500000","811.000000",,"262.625000",,,,"14.400000","11.875000","2.000000","1.333333","14.625000","0.000000","291.400000","0.000000","129.800000","161.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","15.000000",,,,,,,,,"3037.000000","3153.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"248.750000",,"248.750000",,"248.750000",,"335.500000","0.000000",,,,,,,,,"56.000000","1874.000000","16884.250000","2.625000",,"3180.375000",,,,"20.600000","0.375000","0.666667","9.333333","38.125000","0.000000","413.000000","0.000000","6.000000","407.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"385.000000","451.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"188.750000",,"188.750000",,"188.750000",,"449.500000","0.000000",,,,,,,,,"8.000000","1424.000000","17720.500000","1.000000",,"322.000000",,,,"11.000000","0.000000","2.000000","2.333333","20.125000","0.000000","221.400000","0.000000","3.200000","218.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"143.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"131.750000",,"131.750000",,"131.750000",,"308.250000","0.000000",,,,,,,,,"2.250000","995.000000","18026.500000","0.000000",,"88.500000",,,,"3.800000","0.000000","0.000000","2.333333","7.125000","0.000000","79.600000","0.000000","0.000000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"184.000000",,"184.000000",,"184.000000",,"269.250000","0.000000",,,,,,,,,"2.250000","1386.750000","17620.500000","0.000000",,"109.000000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.500000",,"57.500000",,"57.500000",,"324.750000","0.000000",,,,,,,,,"1.750000","436.250000","18815.500000","0.000000",,"52.500000",,,,"2.600000","0.000000","0.000000","1.666667","4.750000","0.000000","53.600000","0.000000","0.000000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.000000",,"53.000000",,"53.000000",,"401.250000","0.000000",,,,,,,,,"1.250000","401.000000","18790.750000","0.000000",,"30.000000",,,,"1.400000","0.000000","0.000000","1.000000","2.500000","0.000000","31.000000","0.000000","0.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"294.750000","0.000000",,,,,,,,,"0.500000","428.500000","18954.750000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"377.750000","0.000000",,,,,,,,,"1.250000","405.750000","18870.750000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.000000",,"52.000000",,"52.000000",,"305.500000","0.000000",,,,,,,,,"0.750000","396.000000","18975.500000","0.000000",,"31.875000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","36.600000","0.000000","0.000000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"134.250000",,"134.250000",,"134.250000",,"237.500000","0.000000",,,,,,,,,"7.750000","1011.750000","18019.250000","2.250000",,"152.500000",,,,"7.800000","0.000000","0.666667","0.666667","14.125000","0.000000","156.200000","0.000000","1.400000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"483.000000","573.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"167.250000",,"167.250000",,"167.250000",,"345.000000","0.000000",,,,,,,,,"2.500000","1262.750000","17313.250000","0.375000",,"103.000000",,,,"2.800000","0.000000","2.000000","1.000000","5.250000","0.000000","57.400000","0.000000","0.400000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"123.500000",,"123.500000",,"123.500000",,"307.500000","0.000000",,,,,,,,,"4.750000","933.500000","18124.250000","0.000000",,"129.000000",,,,"5.400000","0.000000","0.000000","2.333333","10.000000","0.000000","109.600000","0.000000","0.000000","109.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"145.000000","152.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.750000",,"132.750000",,"132.750000",,"253.750000","0.000000",,,,,,,,,"2.500000","1000.750000","17994.000000","0.000000",,"81.000000",,,,"2.400000","0.000000","0.000000","6.333333","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"158.750000",,"158.750000",,"158.750000",,"353.500000","0.000000",,,,,,,,,"8.750000","1199.250000","17422.000000","0.000000",,"205.750000",,,,"9.000000","0.000000","0.000000","1.333333","16.750000","0.000000","180.000000","0.000000","0.000000","180.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"480.000000","570.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"180.750000",,"180.750000",,"180.750000",,"392.000000","0.000000",,,,,,,,,"4.500000","1362.500000","17111.250000","0.000000",,"107.875000",,,,"3.000000","0.000000","0.000000","3.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","1.000000",,,,,,,,,"557.000000","445.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"110.000000",,"110.000000",,"110.000000",,"271.000000","0.000000",,,,,,,,,"3.500000","831.000000","18357.250000","0.000000",,"115.125000",,,,"5.200000","0.000000","0.000000","1.333333","9.750000","0.000000","105.000000","0.000000","0.000000","105.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"130.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.500000",,"141.500000",,"141.500000",,"449.000000","0.000000",,,,,,,,,"2.750000","1066.750000","17684.250000","0.000000",,"93.625000",,,,"3.600000","0.000000","0.000000","3.000000","6.750000","0.000000","75.200000","0.000000","0.000000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"122.250000",,"122.250000",,"122.250000",,"455.250000","0.000000",,,,,,,,,"1.500000","922.750000","17728.000000","0.000000",,"77.625000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","43.000000","0.000000","0.400000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.000000",,"55.000000",,"55.000000",,"356.250000","0.000000",,,,,,,,,"1.500000","417.500000","18876.500000","0.000000",,"47.125000",,,,"2.400000","0.000000","0.000000","10.000000","4.375000","0.000000","48.600000","0.000000","0.000000","48.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"50.000000",,"50.000000",,"50.000000",,"412.000000","0.000000",,,,,,,,,"0.500000","379.000000","18798.500000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"52.750000",,"52.750000",,"52.750000",,"414.250000","0.000000",,,,,,,,,"1.250000","399.250000","18874.250000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"241.750000","0.000000",,,,,,,,,"1.000000","412.750000","19130.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"120.500000",,"120.500000",,"120.500000",,"249.750000","0.000000",,,,,,,,,"2.500000","910.750000","18273.500000","0.000000",,"83.250000",,,,"3.600000","0.000000","0.000000","0.333333","6.750000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"135.000000",,"135.000000",,"135.000000",,"335.250000","0.000000",,,,,,,,,"6.250000","1018.250000","17851.000000","0.000000",,"144.000000",,,,"6.200000","0.000000","0.000000","1.333333","11.625000","0.000000","126.600000","0.000000","0.000000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"473.000000","567.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"145.500000",,"145.500000",,"145.500000",,"179.000000","0.000000",,,,,,,,,"3.750000","1096.250000","18212.000000","0.000000",,"101.125000",,,,"3.200000","0.000000","0.000000","0.666667","6.000000","0.000000","65.800000","0.000000","0.000000","65.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","168.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"109.750000",,"109.750000",,"109.750000",,"132.750000","0.000000",,,,,,,,,"1.500000","829.000000","18719.250000","0.000000",,"64.000000",,,,"2.800000","0.000000","0.000000","3.333333","5.250000","0.000000","58.600000","0.000000","0.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"176.250000",,"176.250000",,"176.250000",,"107.750000","0.000000",,,,,,,,,"2.500000","1326.750000","18077.750000","0.000000",,"85.125000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.800000","0.000000","0.200000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.000000",,"62.000000",,"62.000000",,"127.250000","0.000000",,,,,,,,,"1.500000","469.500000","19226.500000","0.000000",,"33.750000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","34.800000","0.000000","0.000000","34.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"123.000000","0.000000",,,,,,,,,"0.500000","410.250000","19295.250000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.750000",,"54.750000",,"54.750000",,"110.000000","0.000000",,,,,,,,,"1.250000","414.250000","19291.250000","0.000000",,"23.500000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"104.000000",,"104.000000",,"104.000000",,"119.750000","0.000000",,,,,,,,,"2.000000","787.000000","18949.000000","0.000000",,"39.375000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.000000","0.000000","0.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.250000",,"132.250000",,"132.250000",,"191.250000","0.000000",,,,,,,,,"3.500000","998.750000","18252.750000","0.000000",,"73.875000",,,,"2.400000","0.000000","0.000000","0.666667","4.375000","0.000000","48.400000","0.000000","0.000000","48.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"86.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"132.000000",,"132.000000",,"132.000000",,"227.500000","0.000000",,,,,,,,,"7.250000","996.250000","18291.000000","0.000000",,"159.375000",,,,"7.600000","0.000000","0.000000","0.666667","14.125000","0.000000","154.800000","0.000000","0.000000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"490.000000","583.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"204.500000",,"204.500000",,"204.500000",,"154.500000","0.000000",,,,,,,,,"9.500000","1538.750000","17675.000000","2.625000",,"284.750000",,,,"6.400000","0.000000","1.000000","1.333333","11.875000","0.000000","131.400000","0.000000","1.400000","130.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"496.000000","585.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"328.750000",,"328.750000",,"328.750000",,"186.250000","0.000000",,,,,,,,,"4.750000","2477.250000","16665.000000","0.000000",,"157.750000",,,,"5.800000","0.000000","0.000000","2.333333","10.875000","0.000000","117.600000","0.000000","0.000000","117.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"118.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"771.750000",,"771.750000",,"771.750000",,"225.500000","0.000000",,,,,,,,,"19.500000","5806.500000","12497.250000","0.000000",,"553.750000",,,,"23.000000","0.000000","0.000000","1.666667","43.125000","0.000000","462.400000","0.000000","0.000000","462.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"51.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"556.000000",,"556.000000",,"556.000000",,"270.000000","0.000000",,,,,,,,,"35.500000","4185.000000","14859.750000","0.000000",,"617.625000",,,,"29.800000","0.000000","0.000000","0.000000","55.875000","0.000000","597.600000","0.000000","0.000000","597.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"99.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"551.750000",,"551.750000",,"551.750000",,"244.250000","0.000000",,,,,,,,,"31.250000","4153.000000","14291.500000","0.000000",,"646.750000",,,,"26.400000","0.000000","0.000000","0.333333","49.375000","0.000000","531.000000","0.000000","0.000000","531.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"86.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"455.750000",,"455.750000",,"455.750000",,"204.250000","0.000000",,,,,,,,,"21.500000","3431.000000","15639.000000","0.000000",,"477.375000",,,,"17.200000","0.000000","0.000000","0.333333","32.250000","0.000000","344.000000","0.000000","0.000000","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"66.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"307.000000",,"307.000000",,"307.000000",,"139.000000","0.000000",,,,,,,,,"3.750000","2311.750000","17139.500000","0.000000",,"81.000000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","7.000000",,,,,,,,,"228.000000","425.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"138.000000","0.000000",,,,,,,,,"0.750000","439.500000","19215.500000","0.000000",,"53.625000",,,,"1.000000","0.000000","0.000000","1.666667","1.750000","0.000000","21.600000","0.000000","0.000000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"130.750000","0.000000",,,,,,,,,"1.000000","409.000000","19322.500000","0.000000",,"17.500000",,,,"1.000000","0.000000","0.000000","3.333333","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"114.750000","0.000000",,,,,,,,,"1.500000","408.250000","19292.250000","0.000000",,"15.375000",,,,"0.400000","0.000000","4.000000","0.666667","0.750000","0.000000","10.800000","0.000000","0.200000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"101.250000","0.000000",,,,,,,,,"0.750000","412.250000","19373.500000","0.000000",,"14.625000",,,,"0.600000","0.000000","2.000000","0.666667","1.000000","0.000000","15.200000","0.000000","0.200000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.500000",,"54.500000",,"54.500000",,"128.500000","0.000000",,,,,,,,,"0.500000","413.750000","19201.000000","0.000000",,"9.375000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.200000","0.000000","0.000000","10.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"141.750000",,"141.750000",,"141.750000",,"155.000000","0.000000",,,,,,,,,"4.750000","1070.750000","18063.500000","0.000000",,"119.125000",,,,"4.800000","0.000000","0.000000","0.333333","8.875000","0.000000","98.000000","0.000000","0.000000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"649.250000",,"649.250000",,"649.250000",,"550.750000","0.000000",,,,,,,,,"25.250000","4884.500000","13552.750000","0.000000",,"708.250000",,,,"29.200000","0.000000","0.000000","2.000000","54.500000","0.000000","584.200000","0.000000","0.000000","584.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"107.000000","159.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"592.000000",,"592.000000",,"592.000000",,"493.250000","0.000000",,,,,,,,,"26.500000","4454.250000","13974.250000","0.000000",,"690.250000",,,,"30.000000","0.000000","0.000000","1.666667","56.500000","0.000000","603.600000","0.000000","0.000000","603.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"105.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"615.500000",,"615.500000",,"615.500000",,"170.000000","0.000000",,,,,,,,,"28.250000","4631.250000","14865.250000","0.000000",,"554.625000",,,,"25.800000","0.000000","0.000000","2.000000","48.375000","0.000000","517.800000","0.000000","0.000000","517.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"76.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"616.750000",,"616.750000",,"616.750000",,"170.000000","0.000000",,,,,,,,,"13.500000","4642.250000","14448.000000","0.000000",,"367.125000",,,,"11.200000","0.000000","0.000000","1.000000","21.000000","0.000000","224.800000","0.000000","0.000000","224.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"614.000000",,"614.000000",,"614.000000",,"158.250000","0.000000",,,,,,,,,"12.500000","4619.000000","14511.750000","0.000000",,"362.250000",,,,"12.000000","0.000000","0.000000","0.333333","22.375000","0.000000","240.400000","0.000000","0.000000","240.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"149.250000",,"149.250000",,"149.250000",,"162.250000","0.000000",,,,,,,,,"13.250000","1125.750000","17969.750000","0.000000",,"182.250000",,,,"8.200000","0.000000","0.000000","0.333333","15.250000","0.000000","164.200000","0.000000","0.000000","164.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","5.000000",,,,,,,,,"837.000000","949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"62.750000",,"62.750000",,"62.750000",,"129.500000","0.000000",,,,,,,,,"3.500000","476.500000","19109.000000","0.000000",,"23.125000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","33.800000","0.000000","0.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","2.000000",,,,,,,,,"532.000000","525.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.750000",,"58.750000",,"58.750000",,"94.250000","0.000000",,,,,,,,,"1.250000","445.750000","19366.250000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","8.666667","0.000000","0.000000","2.400000","0.000000","0.000000","2.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"172.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"66.500000",,"66.500000",,"66.500000",,"112.000000","0.000000",,,,,,,,,"2.500000","503.250000","19235.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","2.000000",,,,,,,,,"408.000000","406.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"58.250000",,"58.250000",,"58.250000",,"115.500000","0.000000",,,,,,,,,"1.250000","441.750000","19286.250000","0.000000",,"4.875000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"221.000000","218.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"139.250000","0.000000",,,,,,,,,"0.750000","406.500000","19147.500000","0.000000",,"2.625000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"175.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"248.500000",,"248.500000",,"248.500000",,"205.500000","0.000000",,,,,,,,,"49.750000","1871.000000","17059.250000","0.000000",,"3220.500000",,,,"23.800000","0.000000","3.000000","7.333333","44.625000","0.000000","476.600000","0.000000","0.200000","476.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","6.000000",,,,,,,,,"1222.000000","1295.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"499.750000",,"499.750000",,"499.750000",,"306.250000","0.000000",,,,,,,,,"4.000000","3761.750000","13128.750000","0.000000",,"315.750000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","54.000000","0.000000","0.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"403.250000",,"403.250000",,"403.250000",,"209.750000","0.000000",,,,,,,,,"12.000000","3035.500000","15031.000000","0.000000",,"486.000000",,,,"12.200000","0.000000","0.000000","2.000000","22.750000","0.000000","246.200000","0.000000","0.000000","246.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"91.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"179.000000",,"179.000000",,"179.000000",,"135.000000","0.000000",,,,,,,,,"2.500000","1349.250000","18012.500000","0.000000",,"86.500000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"60.000000",,"60.000000",,"60.000000",,"121.500000","0.000000",,,,,,,,,"1.750000","454.500000","19139.000000","0.000000",,"49.375000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.250000",,"57.250000",,"57.250000",,"146.750000","0.000000",,,,,,,,,"1.000000","434.250000","19224.750000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","8.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.750000",,"53.750000",,"53.750000",,"116.750000","0.000000",,,,,,,,,"1.000000","407.250000","19252.000000","0.000000",,"24.375000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"169.500000","0.000000",,,,,,,,,"1.000000","413.000000","19130.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.250000",,"54.250000",,"54.250000",,"184.250000","0.000000",,,,,,,,,"0.500000","412.500000","19168.000000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","5.000000","0.000000","0.000000","5.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.250000",,"55.250000",,"55.250000",,"148.500000","0.000000",,,,,,,,,"0.750000","419.250000","19254.500000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","15.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"53.500000",,"53.500000",,"53.500000",,"165.500000","0.000000",,,,,,,,,"1.000000","405.250000","19159.500000","0.000000",,"15.375000",,,,"0.400000","0.000000","0.000000","6.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"55.750000",,"55.750000",,"55.750000",,"129.750000","0.000000",,,,,,,,,"1.750000","424.000000","19202.000000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"129.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"57.500000",,"57.500000",,"57.500000",,"109.500000","0.000000",,,,,,,,,"1.000000","435.500000","19307.250000","0.000000",,"27.375000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"101.500000",,"101.500000",,"101.500000",,"143.750000","0.000000",,,,,,,,,"4.000000","767.750000","18547.750000","0.000000",,"106.500000",,,,"4.800000","0.000000","0.000000","0.000000","8.875000","0.000000","96.400000","0.000000","0.000000","96.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"171.000000","205.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"220.000000",,"220.000000",,"220.000000",,"167.500000","0.000000",,,,,,,,,"7.250000","1659.750000","17234.500000","0.000000",,"168.000000",,,,"7.000000","0.000000","0.000000","1.000000","13.125000","0.000000","143.600000","0.000000","0.000000","143.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"350.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"652.750000",,"652.750000",,"652.750000",,"386.750000","0.000000",,,,,,,,,"6.500000","4910.250000","11891.750000","0.000000",,"388.375000",,,,"4.400000","0.000000","0.000000","3.000000","8.125000","0.000000","88.400000","0.000000","0.000000","88.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"153.250000",,"153.250000",,"153.250000",,"160.250000","0.000000",,,,,,,,,"5.500000","1155.000000","17940.500000","0.000000",,"214.875000",,,,"4.400000","0.000000","0.000000","35.000000","8.250000","0.000000","91.800000","0.000000","0.000000","91.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"157.250000",,"157.250000",,"157.250000",,"133.500000","0.000000",,,,,,,,,"2.500000","1185.750000","18387.750000","0.000000",,"89.625000",,,,"2.800000","0.000000","0.000000","0.333333","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"61.000000",,"61.000000",,"61.000000",,"108.500000","0.000000",,,,,,,,,"2.000000","462.500000","19305.500000","0.000000",,"55.000000",,,,"2.400000","0.000000","0.000000","18.333333","4.500000","0.000000","51.400000","0.000000","0.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"54.000000",,"54.000000",,"54.000000",,"207.000000","0.000000",,,,,,,,,"1.000000","411.750000","19046.750000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","4.333333","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.000000",,"56.000000",,"56.000000",,"138.000000","0.000000",,,,,,,,,"1.250000","424.250000","19253.250000","0.000000",,"32.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"135.750000","0.000000",,,,,,,,,"0.750000","426.250000","19260.750000","0.000000",,"21.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.500000",,"56.500000",,"56.500000",,"228.000000","0.000000",,,,,,,,,"1.250000","428.500000","19079.000000","0.000000",,"18.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, -"56.250000",,"56.250000",,"56.250000",,"157.750000","0.000000",,,,,,,,,"0.750000","425.250000","19201.750000","0.000000",,"28.875000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.600000","0.000000","0.000000","28.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest.csv b/splunk_eventgen/samples/vmware-actuals-guest.csv deleted file mode 100644 index f00a6563..00000000 --- a/splunk_eventgen/samples/vmware-actuals-guest.csv +++ /dev/null @@ -1,2 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"25.671795","0.662692","25.671795","0.662692","25.671795","0.662692","64.307692","0.000000",,,,,,,,,"0.653846","117.378205","19747.538462","0.051282","8.423077","11.162393","8.423077","8.423077","1.358974","0.606838","0.000000","0.179487","0.705128","1.092308","0.000000","15.145299","0.000000","0.051282","15.094017","54848.102564","87111.692308","0.000000","0.000000","3331793.846154","0.000000","12296292.000000","257584.000000","178164.000000","9886095.076923","0.000000","24.000000","0.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,"2.217949","1.012821","0.000000","2.000000","2.102564","2.000000","4.000000","5.897436","4.666667","0.000000","0.000000","0.000000","2.000000","2.051282","2.000000","3.538462","5.333333","4.153846","160.000000","6000.000000","0.000000","848369.846154",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv deleted file mode 100644 index c9c1a8d1..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv +++ /dev/null @@ -1,860 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"14663.000000","57.145000","14663.000000","57.145000","14663.000000","57.145000",,,,,,,,,,,,,,"147.000000","5737.500000","5417.000000","15.000000","5737.500000","5737.500000",,,,,,,,,,,"5619536.000000","7171660.000000","478908.000000","0.000000","68805268.000000","0.000000","89467956.000000",,"3778240.000000","24606548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000",,,,,,,,"135.000000","5775.000000",,,,,,,,,,,"4025.000000","574.000000","584.000000","603.000000","720.000000","690.000000","732.000000","0.000000","0.000000","0.000000","505.000000","516.000000","538.000000","612.000000","572.000000","652.000000","160.000000","6000.000000",,"8959154.000000",,,,, -"14351.000000","56.650000","14351.000000","56.650000","14351.000000","56.650000",,,,,,,,,,,,,,"58.000000","4990.000000","4848.000000","9.000000","4990.000000","4990.000000",,,,,,,,,,,"5325952.000000","7003900.000000","478908.000000","0.000000","68792720.000000","0.000000","89467972.000000",,"3778240.000000","24679496.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000",,,,,,,,"174.000000","4899.000000",,,,,,,,,,,"4093.000000","574.000000","582.000000","599.000000","716.000000","690.000000","732.000000","0.000000","0.000000","0.000000","506.000000","515.000000","532.000000","612.000000","587.000000","617.000000","160.000000","6000.000000",,"8959174.000000",,,,, -"14265.000000","56.510000","14265.000000","56.510000","14265.000000","56.510000",,,,,,,,,,,,,,"50.000000","4583.000000","4322.000000","1502.000000","4583.000000","4583.000000",,,,,,,,,,,"5389088.000000","7311632.000000","478908.000000","0.000000","68779064.000000","0.000000","89467972.000000",,"3778240.000000","24692344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000",,,,,,,,"107.000000","4687.000000",,,,,,,,,,,"4122.000000","576.000000","586.000000","590.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","509.000000","516.000000","525.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959194.000000",,,,, -"10021.000000","49.860000","10021.000000","49.860000","10021.000000","49.860000",,,,,,,,,,,,,,"325.000000","1687.500000","1518.000000","3513.000000","1687.500000","1687.500000",,,,,,,,,,,"5493948.000000","7353568.000000","478908.000000","0.000000","68774340.000000","0.000000","89467972.000000",,"3778240.000000","24746656.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000",,,,,,,,"81.000000","1450.000000",,,,,,,,,,,"3802.000000","574.000000","527.000000","579.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","508.000000","471.000000","514.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959214.000000",,,,, -"13086.000000","54.655000","13086.000000","54.655000","13086.000000","54.655000",,,,,,,,,,,,,,"79.000000","5175.000000","4788.000000","1670.000000","5175.000000","5175.000000",,,,,,,,,,,"5242292.000000","7143856.000000","478908.000000","0.000000","68773128.000000","0.000000","89467972.000000",,"3778240.000000","24733028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000",,,,,,,,"369.000000","5114.000000",,,,,,,,,,,"3825.000000","573.000000","495.000000","563.000000","720.000000","819.000000","716.000000","0.000000","0.000000","0.000000","507.000000","436.000000","500.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959234.000000",,,,, -"13340.000000","55.065000","13340.000000","55.065000","13340.000000","55.065000",,,,,,,,,,,,,,"43.000000","1858.000000","1722.000000","447.000000","1858.000000","1858.000000",,,,,,,,,,,"5340312.000000","7039224.000000","478908.000000","0.000000","68783896.000000","0.000000","89467972.000000",,"3778240.000000","24718808.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000",,,,,,,,"90.000000","1860.000000",,,,,,,,,,,"3946.000000","571.000000","479.000000","552.000000","720.000000","585.000000","675.000000","0.000000","0.000000","0.000000","506.000000","422.000000","493.000000","613.000000","528.000000","574.000000","160.000000","6000.000000",,"8959254.000000",,,,, -"11080.000000","51.515000","11080.000000","51.515000","11080.000000","51.515000",,,,,,,,,,,,,,"91.000000","23524.000000","23875.000000","487.000000","23524.000000","23524.000000",,,,,,,,,,,"5004764.000000","6598824.000000","478908.000000","0.000000","68767452.000000","0.000000","89467972.000000",,"3778240.000000","24730784.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000",,,,,,,,"282.000000","22800.000000",,,,,,,,,,,"3824.000000","569.000000","489.000000","538.000000","720.000000","585.000000","664.000000","0.000000","0.000000","0.000000","505.000000","433.000000","481.000000","613.000000","528.000000","570.000000","160.000000","6000.000000",,"8959274.000000",,,,, -"12052.000000","53.030000","12052.000000","53.030000","12052.000000","53.030000",,,,,,,,,,,,,,"54.000000","8894.500000","6927.000000","22.000000","8894.500000","8894.500000",,,,,,,,,,,"5151352.000000","6703472.000000","478908.000000","0.000000","68753228.000000","0.000000","89467768.000000",,"3778240.000000","24718316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000",,,,,,,,"611.000000","10196.000000",,,,,,,,,,,"3835.000000","564.000000","470.000000","524.000000","715.000000","583.000000","644.000000","0.000000","0.000000","0.000000","501.000000","425.000000","469.000000","613.000000","528.000000","560.000000","160.000000","6000.000000",,"8959294.000000",,,,, -"11178.000000","51.660000","11178.000000","51.660000","11178.000000","51.660000",,,,,,,,,,,,,,"871.000000","15082.000000","13390.000000","58.000000","15082.000000","15082.000000",,,,,,,,,,,"5410076.000000","7080036.000000","478908.000000","0.000000","68749612.000000","0.000000","89467768.000000",,"3778240.000000","24723388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000",,,,,,,,"1067.000000","14836.000000",,,,,,,,,,,"3801.000000","563.000000","439.000000","518.000000","715.000000","511.000000","644.000000","0.000000","0.000000","0.000000","500.000000","399.000000","464.000000","613.000000","455.000000","560.000000","160.000000","6000.000000",,"8959314.000000",,,,, -"14207.000000","56.400000","14207.000000","56.400000","14207.000000","56.400000",,,,,,,,,,,,,,"58.000000","7853.500000","7654.000000","42.000000","7853.500000","7853.500000",,,,,,,,,,,"5578600.000000","7101756.000000","478908.000000","0.000000","68741120.000000","0.000000","89468516.000000",,"3778240.000000","24765000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000",,,,,,,,"201.000000","7793.000000",,,,,,,,,,,"4006.000000","563.000000","462.000000","522.000000","715.000000","536.000000","644.000000","0.000000","0.000000","0.000000","501.000000","429.000000","468.000000","613.000000","529.000000","560.000000","160.000000","6000.000000",,"8959334.000000",,,,, -"13810.000000","55.770000","13810.000000","55.770000","13810.000000","55.770000",,,,,,,,,,,,,,"359.000000","7443.000000","6731.000000","11.000000","7443.000000","7443.000000",,,,,,,,,,,"5431060.000000","6744500.000000","478908.000000","0.000000","68725116.000000","0.000000","89467768.000000",,"3778240.000000","24786688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000",,,,,,,,"482.000000","7312.000000",,,,,,,,,,,"3912.000000","564.000000","494.000000","521.000000","715.000000","562.000000","644.000000","0.000000","0.000000","0.000000","502.000000","463.000000","468.000000","613.000000","529.000000","559.000000","160.000000","6000.000000",,"8959354.000000",,,,, -"13305.000000","54.970000","13305.000000","54.970000","13305.000000","54.970000",,,,,,,,,,,,,,"1552.000000","6984.000000","5645.000000","7.000000","6984.000000","6984.000000",,,,,,,,,,,"5158240.000000","6639448.000000","478908.000000","0.000000","68709108.000000","0.000000","89467804.000000",,"3778240.000000","24801052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000",,,,,,,,"1236.000000","5534.000000",,,,,,,,,,,"3912.000000","566.000000","532.000000","519.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","504.000000","490.000000","466.000000","613.000000","529.000000","555.000000","160.000000","6000.000000",,"8959374.000000",,,,, -"12125.000000","53.130000","12125.000000","53.130000","12125.000000","53.130000",,,,,,,,,,,,,,"863.000000","6061.000000","4935.000000","14.000000","6061.000000","6061.000000",,,,,,,,,,,"5116300.000000","6954020.000000","478908.000000","0.000000","68724184.000000","0.000000","89467804.000000",,"3778240.000000","24702340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000",,,,,,,,"1344.000000","4980.000000",,,,,,,,,,,"3931.000000","564.000000","506.000000","513.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","503.000000","466.000000","463.000000","613.000000","521.000000","555.000000","160.000000","6000.000000",,"8959394.000000",,,,, -"12008.000000","52.950000","12008.000000","52.950000","12008.000000","52.950000",,,,,,,,,,,,,,"3867.000000","9876.500000","5735.000000","3.000000","9876.500000","9876.500000",,,,,,,,,,,"5053508.000000","6954148.000000","478908.000000","0.000000","68724000.000000","0.000000","89467924.000000",,"3778240.000000","24701416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000",,,,,,,,"3944.000000","6207.000000",,,,,,,,,,,"3916.000000","563.000000","481.000000","504.000000","715.000000","586.000000","604.000000","0.000000","0.000000","0.000000","502.000000","442.000000","456.000000","613.000000","487.000000","529.000000","160.000000","6000.000000",,"8959414.000000",,,,, -"12855.000000","54.270000","12855.000000","54.270000","12855.000000","54.270000",,,,,,,,,,,,,,"2180.000000","7716.000000","5536.000000","5.000000","7716.000000","7716.000000",,,,,,,,,,,"4703832.000000","6570524.000000","478908.000000","0.000000","68714564.000000","0.000000","89467924.000000",,"3778240.000000","24709328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000",,,,,,,,"2319.000000",,,,,,,,,,,,"3782.000000","564.000000","463.000000","500.000000","715.000000","539.000000","604.000000","0.000000","0.000000","0.000000","503.000000","435.000000","452.000000","613.000000","484.000000","528.000000","160.000000","6000.000000",,"8959434.000000",,,,, -"11780.000000","52.575000","11780.000000","52.575000","11780.000000","52.575000",,,,,,,,,,,,,,"1771.000000","6804.000000","4776.000000","7.000000","6804.000000","6804.000000",,,,,,,,,,,"4598972.000000","7052864.000000","478904.000000","0.000000","68700380.000000","0.000000","89467928.000000",,"3778240.000000","24738968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000",,,,,,,,"1849.000000","5210.000000",,,,,,,,,,,"3894.000000","563.000000","478.000000","492.000000","715.000000","607.000000","586.000000","0.000000","0.000000","0.000000","502.000000","437.000000","447.000000","613.000000","530.000000","528.000000","160.000000","6000.000000",,"8959454.000000",,,,, -"14169.000000","56.315000","14169.000000","56.315000","14169.000000","56.315000",,,,,,,,,,,,,,"1345.000000","8281.500000","6850.000000","13.000000","8281.500000","8281.500000",,,,,,,,,,,"4515084.000000","6801204.000000","478904.000000","0.000000","68687572.000000","0.000000","89467928.000000",,"3778240.000000","24776804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000",,,,,,,,"1530.000000","6836.000000",,,,,,,,,,,"3946.000000","561.000000","516.000000","491.000000","708.000000","736.000000","585.000000","0.000000","0.000000","0.000000","502.000000","460.000000","445.000000","612.000000","574.000000","528.000000","160.000000","6000.000000",,"8959474.000000",,,,, -"14237.000000","56.415000","14237.000000","56.415000","14237.000000","56.415000",,,,,,,,,,,,,,"137.000000","6098.500000","4883.000000","5.000000","6098.500000","6098.500000",,,,,,,,,,,"4682856.000000","6801204.000000","478904.000000","0.000000","68682800.000000","0.000000","89467928.000000",,"3778240.000000","24780992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000",,,,,,,,"359.000000","6816.000000",,,,,,,,,,,"4160.000000","564.000000","551.000000","493.000000","715.000000","736.000000","585.000000","0.000000","0.000000","0.000000","504.000000","482.000000","445.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959494.000000",,,,, -"14008.000000","56.060000","14008.000000","56.060000","14008.000000","56.060000",,,,,,,,,,,,,,"546.000000","4951.500000","3658.000000","15.000000","4951.500000","4951.500000",,,,,,,,,,,"4787716.000000","6801204.000000","478904.000000","0.000000","68692708.000000","0.000000","89467928.000000",,"3778240.000000","24768280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000",,,,,,,,"726.000000","4973.000000",,,,,,,,,,,"3906.000000","564.000000","578.000000","503.000000","716.000000","736.000000","586.000000","0.000000","0.000000","0.000000","502.000000","489.000000","451.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959514.000000",,,,, -"14367.000000","56.620000","14367.000000","56.620000","14367.000000","56.620000",,,,,,,,,,,,,,"56.000000","6582.500000","6323.000000","29.000000","6582.500000","6582.500000",,,,,,,,,,,"4871408.000000","7031692.000000","478904.000000","0.000000","68682312.000000","0.000000","89467732.000000",,"3778240.000000","24712780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000",,,,,,,,"163.000000","6621.000000",,,,,,,,,,,"4001.000000","562.000000","587.000000","510.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","502.000000","500.000000","458.000000","612.000000","602.000000","530.000000","160.000000","6000.000000",,"8959534.000000",,,,, -"14250.000000","56.430000","14250.000000","56.430000","14250.000000","56.430000",,,,,,,,,,,,,,"453.000000","5567.000000","4911.000000","6.000000","5567.000000","5567.000000",,,,,,,,,,,"5256664.000000","7485776.000000","478904.000000","0.000000","68671868.000000","0.000000","89467984.000000",,"3778240.000000","24721716.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000",,,,,,,,"774.000000","4995.000000",,,,,,,,,,,"3955.000000","561.000000","573.000000","512.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","501.000000","493.000000","460.000000","603.000000","585.000000","558.000000","160.000000","6000.000000",,"8959554.000000",,,,, -"17611.000000","61.705000","17611.000000","61.705000","17611.000000","61.705000",,,,,,,,,,,,,,"255.000000","8405.500000","7976.000000","6.000000","8405.500000","8405.500000",,,,,,,,,,,"5277632.000000","7338980.000000","478904.000000","0.000000","68683340.000000","0.000000","89467984.000000",,"3778240.000000","24828548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000",,,,,,,,"441.000000","8138.000000",,,,,,,,,,,"4085.000000","564.000000","623.000000","529.000000","720.000000","816.000000","720.000000","0.000000","0.000000","0.000000","504.000000","540.000000","472.000000","612.000000","668.000000","574.000000","160.000000","6000.000000",,"8959574.000000",,,,, -"16265.000000","59.585000","16265.000000","59.585000","16265.000000","59.585000",,,,,,,,,,,,,,"51.000000","7048.000000","6907.000000","29.000000","7048.000000","7048.000000",,,,,,,,,,,"4774316.000000","6814696.000000","478904.000000","0.000000","68666968.000000","0.000000","89467984.000000",,"3778240.000000","24799284.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000",,,,,,,,"164.000000","6973.000000",,,,,,,,,,,"4165.000000","568.000000","659.000000","547.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","506.000000","568.000000","487.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959594.000000",,,,, -"13889.000000","55.865000","13889.000000","55.865000","13889.000000","55.865000",,,,,,,,,,,,,,"49.000000","5748.000000","5580.000000","17.000000","5748.000000","5748.000000",,,,,,,,,,,"4655100.000000","6500824.000000","478904.000000","0.000000","68664244.000000","0.000000","89467984.000000",,"3778240.000000","24800524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000",,,,,,,,"148.000000","5719.000000",,,,,,,,,,,"3877.000000","568.000000","662.000000","556.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","507.000000","566.000000","493.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959614.000000",,,,, -"16137.000000","59.380000","16137.000000","59.380000","16137.000000","59.380000",,,,,,,,,,,,,,"160.000000","7943.000000","8628.000000","17.000000","7943.000000","7943.000000",,,,,,,,,,,"4634132.000000","6437904.000000","478904.000000","0.000000","68657148.000000","0.000000","89467984.000000",,"3778240.000000","24851140.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000",,,,,,,,"231.000000","6866.000000",,,,,,,,,,,"3970.000000","570.000000","635.000000","564.000000","722.000000","767.000000","731.000000","0.000000","0.000000","0.000000","508.000000","560.000000","499.000000","615.000000","654.000000","602.000000","160.000000","6000.000000",,"8959634.000000",,,,, -"15709.000000","58.705000","15709.000000","58.705000","15709.000000","58.705000",,,,,,,,,,,,,,"183.000000","7354.500000","5850.000000","9.000000","7354.500000","7354.500000",,,,,,,,,,,"4675808.000000","6458596.000000","478904.000000","0.000000","68643296.000000","0.000000","89467712.000000",,"3778240.000000","24878444.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000",,,,,,,,"363.000000","8311.000000",,,,,,,,,,,"4089.000000","567.000000","604.000000","569.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","509.000000","548.000000","504.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959654.000000",,,,, -"14640.000000","57.020000","14640.000000","57.020000","14640.000000","57.020000",,,,,,,,,,,,,,"240.000000","8711.500000","8581.000000","22.000000","8711.500000","8711.500000",,,,,,,,,,,"4592248.000000","6458924.000000","478904.000000","0.000000","68626592.000000","0.000000","89468040.000000",,"3778240.000000","24894356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000",,,,,,,,"345.000000","8257.000000",,,,,,,,,,,"4184.000000","567.000000","606.000000","571.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","508.000000","556.000000","506.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959674.000000",,,,, -"15295.000000","58.040000","15295.000000","58.040000","15295.000000","58.040000",,,,,,,,,,,,,,"35.000000","5974.500000","5657.000000","18.000000","5974.500000","5974.500000",,,,,,,,,,,"4969404.000000","6290824.000000","478904.000000","0.000000","68610916.000000","0.000000","89467712.000000",,"3778240.000000","24903780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000",,,,,,,,"131.000000","6124.000000",,,,,,,,,,,"4105.000000","567.000000","584.000000","580.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","508.000000","533.000000","512.000000","615.000000","621.000000","610.000000","160.000000","6000.000000",,"8959694.000000",,,,, -"14994.000000","57.560000","14994.000000","57.560000","14994.000000","57.560000",,,,,,,,,,,,,,"117.000000","5964.000000","5259.000000","16.000000","5964.000000","5964.000000",,,,,,,,,,,"5325912.000000","6752200.000000","478904.000000","0.000000","68595508.000000","0.000000","89467712.000000",,"3778240.000000","24917672.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000",,,,,,,,"200.000000","6350.000000",,,,,,,,,,,"4227.000000","565.000000","584.000000","590.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","507.000000","533.000000","522.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959714.000000",,,,, -"13940.000000","55.910000","13940.000000","55.910000","13940.000000","55.910000",,,,,,,,,,,,,,"330.000000","6138.500000","4442.000000","24.000000","6138.500000","6138.500000",,,,,,,,,,,"5542948.000000","6983364.000000","478904.000000","0.000000","68594600.000000","0.000000","89467964.000000",,"3778240.000000","24916736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000",,,,,,,,"563.000000","6941.000000",,,,,,,,,,,"4079.000000","565.000000","586.000000","595.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","506.000000","532.000000","526.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959734.000000",,,,, -"15783.000000","58.790000","15783.000000","58.790000","15783.000000","58.790000",,,,,,,,,,,,,,"38.000000","7028.500000","6947.000000","47.000000","7028.500000","7028.500000",,,,,,,,,,,"5501004.000000","7193080.000000","478904.000000","0.000000","68591984.000000","0.000000","89467964.000000",,"3778240.000000","24854896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000",,,,,,,,"158.000000","6914.000000",,,,,,,,,,,"4056.000000","566.000000","591.000000","602.000000","720.000000","689.000000","731.000000","0.000000","0.000000","0.000000","506.000000","541.000000","533.000000","610.000000","632.000000","621.000000","160.000000","6000.000000",,"8959754.000000",,,,, -"13966.000000","55.945000","13966.000000","55.945000","13966.000000","55.945000",,,,,,,,,,,,,,"55.000000","5918.500000","5732.000000","16.000000","5918.500000","5918.500000",,,,,,,,,,,"5102228.000000","6752360.000000","478904.000000","0.000000","68586904.000000","0.000000","89467648.000000",,"3778240.000000","24838792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000",,,,,,,,"162.000000","5888.000000",,,,,,,,,,,"4002.000000","564.000000","582.000000","603.000000","720.000000","689.000000","729.000000","0.000000","0.000000","0.000000","504.000000","523.000000","534.000000","605.000000","605.000000","621.000000","160.000000","6000.000000",,"8959774.000000",,,,, -"17060.000000","60.805000","17060.000000","60.805000","17060.000000","60.805000",,,,,,,,,,,,,,"48.000000","6689.000000","6519.000000","60.000000","6689.000000","6689.000000",,,,,,,,,,,"4787428.000000","6436188.000000","478904.000000","0.000000","68614968.000000","0.000000","89467648.000000",,"3778240.000000","24821848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000",,,,,,,,"144.000000","6666.000000",,,,,,,,,,,"4076.000000","570.000000","707.000000","626.000000","720.000000","1537.000000","767.000000","0.000000","0.000000","0.000000","503.000000","548.000000","539.000000","603.000000","755.000000","632.000000","160.000000","6000.000000",,"8959794.000000",,,,, -"20076.000000","65.525000","20076.000000","65.525000","20076.000000","65.525000",,,,,,,,,,,,,,"55.000000","8553.000000","8189.000000","16.000000","8553.000000","8553.000000",,,,,,,,,,,"5249028.000000","6974828.000000","478904.000000","0.000000","68605460.000000","0.000000","89467648.000000",,"3778240.000000","24809764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000",,,,,,,,"170.000000","8690.000000",,,,,,,,,,,"4151.000000","577.000000","815.000000","650.000000","729.000000","1537.000000","821.000000","0.000000","0.000000","0.000000","506.000000","596.000000","554.000000","615.000000","755.000000","661.000000","160.000000","6000.000000",,"8959814.000000",,,,, -"24384.000000","72.295000","24384.000000","72.295000","24384.000000","72.295000",,,,,,,,,,,,,,"40.000000","5887.500000","5842.000000","31.000000","5887.500000","5887.500000",,,,,,,,,,,"5577992.000000","6996280.000000","478904.000000","0.000000","68646004.000000","0.000000","89467900.000000",,"3778240.000000","24759156.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000",,,,,,,,"116.000000","5776.000000",,,,,,,,,,,"4448.000000","592.000000","1094.000000","705.000000","736.000000","1537.000000","1081.000000","0.000000","0.000000","0.000000","513.000000","739.000000","582.000000","621.000000","1058.000000","755.000000","160.000000","6000.000000",,"8959834.000000",,,,, -"23928.000000","71.600000","23928.000000","71.600000","23928.000000","71.600000",,,,,,,,,,,,,,"63.000000","11244.500000","10490.000000","31.000000","11244.500000","11244.500000",,,,,,,,,,,"5787708.000000","7331824.000000","478904.000000","0.000000","68689856.000000","0.000000","89467900.000000",,"3778240.000000","24718336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000",,,,,,,,"573.000000","11363.000000",,,,,,,,,,,"4474.000000","606.000000","1219.000000","756.000000","771.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","519.000000","818.000000","604.000000","654.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959854.000000",,,,, -"20882.000000","66.825000","20882.000000","66.825000","20882.000000","66.825000",,,,,,,,,,,,,,"182.000000","7143.500000","5949.000000","34.000000","7143.500000","7143.500000",,,,,,,,,,,"5787708.000000","7331820.000000","478904.000000","0.000000","68678300.000000","0.000000","89467900.000000",,"3778240.000000","24696696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000",,,,,,,,"309.000000","7847.000000",,,,,,,,,,,"4378.000000","615.000000","1263.000000","778.000000","821.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","522.000000","838.000000","614.000000","706.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959874.000000",,,,, -"18709.000000","63.415000","18709.000000","63.415000","18709.000000","63.415000",,,,,,,,,,,,,,"69.000000","8820.000000","7475.000000","12.000000","8820.000000","8820.000000",,,,,,,,,,,"6647244.000000","8233300.000000","478904.000000","0.000000","68667484.000000","0.000000","89467608.000000",,"3778240.000000","24707256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000",,,,,,,,"273.000000","9822.000000",,,,,,,,,,,"4178.000000","624.000000","1139.000000","801.000000","958.000000","1508.000000","1330.000000","0.000000","0.000000","0.000000","526.000000","766.000000","622.000000","709.000000","917.000000","810.000000","160.000000","6000.000000",,"8959894.000000",,,,, -"16786.000000","60.395000","16786.000000","60.395000","16786.000000","60.395000",,,,,,,,,,,,,,"45.000000","7295.500000","6077.000000","41.000000","7295.500000","7295.500000",,,,,,,,,,,"6437816.000000","8013960.000000","478904.000000","0.000000","68651952.000000","0.000000","89467892.000000",,"3778240.000000","24784152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000",,,,,,,,"242.000000","8227.000000",,,,,,,,,,,"4102.000000","629.000000","942.000000","812.000000","958.000000","1207.000000","1330.000000","0.000000","0.000000","0.000000","528.000000","689.000000","629.000000","709.000000","798.000000","810.000000","160.000000","6000.000000",,"8959914.000000",,,,, -"16822.000000","60.455000","16822.000000","60.455000","16822.000000","60.455000",,,,,,,,,,,,,,"50.000000","8288.000000","7052.000000","64.000000","8288.000000","8288.000000",,,,,,,,,,,"6409780.000000","8020800.000000","478904.000000","0.000000","68653440.000000","0.000000","89467892.000000",,"3778240.000000","24773352.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000",,,,,,,,"288.000000","9185.000000",,,,,,,,,,,"4171.000000","633.000000","816.000000","814.000000","958.000000","1093.000000","1330.000000","0.000000","0.000000","0.000000","532.000000","634.000000","628.000000","709.000000","760.000000","810.000000","160.000000","6000.000000",,"8959934.000000",,,,, -"15420.000000","58.255000","15420.000000","58.255000","15420.000000","58.255000",,,,,,,,,,,,,,"43.000000","7885.500000","6645.000000","18.000000","7885.500000","7885.500000",,,,,,,,,,,"6493668.000000","8230520.000000","478904.000000","0.000000","68648060.000000","0.000000","89467892.000000",,"3778240.000000","24750700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000",,,,,,,,"255.000000","8827.000000",,,,,,,,,,,"4273.000000","635.000000","677.000000","815.000000","958.000000","840.000000","1330.000000","0.000000","0.000000","0.000000","534.000000","584.000000","629.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959954.000000",,,,, -"16162.000000","59.415000","16162.000000","59.415000","16162.000000","59.415000",,,,,,,,,,,,,,"41.000000","7883.500000","6353.000000","20.000000","7883.500000","7883.500000",,,,,,,,,,,"6524548.000000","8303344.000000","478904.000000","0.000000","68645200.000000","0.000000","89467892.000000",,"3778240.000000","24752372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000",,,,,,,,"258.000000","9114.000000",,,,,,,,,,,"4238.000000","636.000000","641.000000","819.000000","958.000000","730.000000","1330.000000","0.000000","0.000000","0.000000","535.000000","579.000000","633.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959974.000000",,,,, -"16507.000000","59.950000","16507.000000","59.950000","16507.000000","59.950000",,,,,,,,,,,,,,"54.000000","8160.500000","6703.000000","15.000000","8160.500000","8160.500000",,,,,,,,,,,"6664728.000000","8485472.000000","478904.000000","0.000000","68634596.000000","0.000000","89467892.000000",,"3778240.000000","24784888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000",,,,,,,,"256.000000","9307.000000",,,,,,,,,,,"4369.000000","638.000000","625.000000","822.000000","958.000000","694.000000","1330.000000","0.000000","0.000000","0.000000","538.000000","587.000000","639.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8959994.000000",,,,, -"16438.000000","59.845000","16438.000000","59.845000","16438.000000","59.845000",,,,,,,,,,,,,,"104.000000","7906.500000","6751.000000","39.000000","7906.500000","7906.500000",,,,,,,,,,,"6853344.000000","8443400.000000","478904.000000","0.000000","68632984.000000","0.000000","89467764.000000",,"3778240.000000","24782868.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000",,,,,,,,"246.000000","8710.000000",,,,,,,,,,,"4047.000000","640.000000","637.000000","826.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","539.000000","588.000000","640.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8960014.000000",,,,, -"15969.000000","59.105000","15969.000000","59.105000","15969.000000","59.105000",,,,,,,,,,,,,,"336.000000","9609.500000","8002.000000","31.000000","9609.500000","9609.500000",,,,,,,,,,,"6937228.000000","8569232.000000","478904.000000","0.000000","68623876.000000","0.000000","89467764.000000",,"3778240.000000","24788348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000",,,,,,,,"544.000000","10336.000000",,,,,,,,,,,"4038.000000","641.000000","629.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","540.000000","579.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960034.000000",,,,, -"15475.000000","58.315000","15475.000000","58.315000","15475.000000","58.315000",,,,,,,,,,,,,,"60.000000","7516.000000","6095.000000","12.000000","7516.000000","7516.000000",,,,,,,,,,,"7049156.000000","8800140.000000","478904.000000","0.000000","68602580.000000","0.000000","89467764.000000",,"3778240.000000","24828580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000",,,,,,,,"290.000000","8586.000000",,,,,,,,,,,"4134.000000","641.000000","619.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","541.000000","562.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960054.000000",,,,, -"16529.000000","59.965000","16529.000000","59.965000","16529.000000","59.965000",,,,,,,,,,,,,,"47.000000","6099.000000","6051.000000","26.000000","6099.000000","6099.000000",,,,,,,,,,,"6440976.000000","8653340.000000","478904.000000","0.000000","68598164.000000","0.000000","89467764.000000",,"3778240.000000","24801760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000",,,,,,,,"232.000000",,,,,,,,,,,,"4185.000000","643.000000","626.000000","834.000000","958.000000","735.000000","1330.000000","0.000000","0.000000","0.000000","543.000000","570.000000","649.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960074.000000",,,,, -"20894.000000","66.845000","20894.000000","66.845000","20894.000000","66.845000",,,,,,,,,,,,,,"76.000000","10636.000000","9384.000000","24.000000","10636.000000","10636.000000",,,,,,,,,,,"6598836.000000","8957992.000000","478904.000000","0.000000","68674136.000000","0.000000","89467764.000000",,"3778240.000000","24738076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000",,,,,,,,"312.000000","11500.000000",,,,,,,,,,,"4340.000000","653.000000","773.000000","841.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","548.000000","631.000000","659.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960094.000000",,,,, -"14945.000000","57.520000","14945.000000","57.520000","14945.000000","57.520000",,,,,,,,,,,,,,"60.000000","5605.500000","4219.000000","33.000000","5605.500000","5605.500000",,,,,,,,,,,"6532872.000000","9080144.000000","478904.000000","0.000000","68669820.000000","0.000000","89457204.000000",,"3778240.000000","24784848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000",,,,,,,,"251.000000","6679.000000",,,,,,,,,,,"4308.000000","658.000000","782.000000","821.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","552.000000","637.000000","651.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960114.000000",,,,, -"15027.000000","57.650000","15027.000000","57.650000","15027.000000","57.650000",,,,,,,,,,,,,,"45.000000","9811.000000","6327.000000","68.000000","9811.000000","9811.000000",,,,,,,,,,,"6197312.000000","8451080.000000","478904.000000","0.000000","68666100.000000","0.000000","89457096.000000",,"3778240.000000","24757968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000",,,,,,,,"4460.000000","8789.000000",,,,,,,,,,,"3875.000000","660.000000","749.000000","766.000000","1015.000000","1444.000000","1207.000000","0.000000","0.000000","0.000000","554.000000","607.000000","623.000000","732.000000","857.000000","779.000000","160.000000","6000.000000",,"8960134.000000",,,,, -"16680.000000","60.235000","16680.000000","60.235000","16680.000000","60.235000",,,,,,,,,,,,,,"132.000000","7142.000000","6448.000000","29.000000","7142.000000","7142.000000",,,,,,,,,,,"6071484.000000","8094568.000000","478904.000000","0.000000","68670848.000000","0.000000","89457096.000000",,"3778240.000000","24753944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000",,,,,,,,"621.000000","7081.000000",,,,,,,,,,,"3956.000000","663.000000","618.000000","721.000000","1015.000000","813.000000","1041.000000","0.000000","0.000000","0.000000","556.000000","551.000000","606.000000","732.000000","719.000000","748.000000","160.000000","6000.000000",,"8960154.000000",,,,, -"19314.000000","64.365000","19314.000000","64.365000","19314.000000","64.365000",,,,,,,,,,,,,,"72.000000","13982.000000","12695.000000","29.000000","13982.000000","13982.000000",,,,,,,,,,,"6316004.000000","7870744.000000","478904.000000","0.000000","68667796.000000","0.000000","89457096.000000",,"3778240.000000","24742076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000",,,,,,,,"309.000000","14886.000000",,,,,,,,,,,"4330.000000","669.000000","659.000000","700.000000","1015.000000","813.000000","915.000000","0.000000","0.000000","0.000000","562.000000","580.000000","600.000000","732.000000","719.000000","697.000000","160.000000","6000.000000",,"8960174.000000",,,,, -"18384.000000","62.900000","18384.000000","62.900000","18384.000000","62.900000",,,,,,,,,,,,,,"92.000000","21775.500000","19425.000000","57.000000","21775.500000","21775.500000",,,,,,,,,,,"6798540.000000","7996764.000000","478892.000000","0.000000","68659660.000000","0.000000","89457300.000000",,"3778240.000000","24783560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000",,,,,,,,"379.000000","23655.000000",,,,,,,,,,,"4372.000000","678.000000","737.000000","685.000000","1015.000000","930.000000","831.000000","0.000000","0.000000","0.000000","569.000000","644.000000","599.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960194.000000",,,,, -"19239.000000","64.230000","19239.000000","64.230000","19239.000000","64.230000",,,,,,,,,,,,,,"52.000000","20982.000000","20357.000000","61.000000","20982.000000","20982.000000",,,,,,,,,,,"7332736.000000","8635824.000000","478892.000000","0.000000","68641356.000000","0.000000","89457300.000000",,"3778240.000000","24796780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000",,,,,,,,"360.000000","21195.000000",,,,,,,,,,,"4432.000000","684.000000","764.000000","685.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","575.000000","677.000000","603.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960214.000000",,,,, -"16759.000000","60.340000","16759.000000","60.340000","16759.000000","60.340000",,,,,,,,,,,,,,"100.000000","28408.000000","26724.000000","75.000000","28408.000000","28408.000000",,,,,,,,,,,"7521936.000000","9013764.000000","478892.000000","0.000000","68626408.000000","0.000000","89457756.000000",,"3778240.000000","24839200.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000",,,,,,,,"420.000000","29571.000000",,,,,,,,,,,"4219.000000","689.000000","755.000000","688.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","578.000000","667.000000","606.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960234.000000",,,,, -"16894.000000","60.545000","16894.000000","60.545000","16894.000000","60.545000",,,,,,,,,,,,,,"4761.000000","50778.500000","43503.000000","82.000000","50778.500000","50778.500000",,,,,,,,,,,"7521396.000000","8964324.000000","478892.000000","0.000000","68611328.000000","0.000000","89457216.000000",,"3778240.000000","24870036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000",,,,,,,,"5268.000000","48025.000000",,,,,,,,,,,"4173.000000","692.000000","708.000000","691.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","580.000000","632.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960254.000000",,,,, -"17063.000000","60.805000","17063.000000","60.805000","17063.000000","60.805000",,,,,,,,,,,,,,"67.000000","27770.000000","26749.000000","67.000000","27770.000000","27770.000000",,,,,,,,,,,"7071084.000000","8534980.000000","478892.000000","0.000000","68597192.000000","0.000000","89457216.000000",,"3778240.000000","24883368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000",,,,,,,,"405.000000","28317.000000",,,,,,,,,,,"4295.000000","695.000000","685.000000","694.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","582.000000","601.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960274.000000",,,,, -"15804.000000","58.830000","15804.000000","58.830000","15804.000000","58.830000",,,,,,,,,,,,,,"50.000000","26687.000000","25170.000000","77.000000","26687.000000","26687.000000",,,,,,,,,,,"7071224.000000","8535120.000000","478892.000000","0.000000","68594824.000000","0.000000","89457356.000000",,"3778240.000000","24784184.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000",,,,,,,,"393.000000","27760.000000",,,,,,,,,,,"4412.000000","700.000000","673.000000","697.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","586.000000","595.000000","608.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960294.000000",,,,, -"15400.000000","58.190000","15400.000000","58.190000","15400.000000","58.190000",,,,,,,,,,,,,,"101.000000","24373.000000","24271.000000","84.000000","24373.000000","24373.000000",,,,,,,,,,,"6868556.000000","8346380.000000","478892.000000","0.000000","68586776.000000","0.000000","89457356.000000",,"3778240.000000","24871204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000",,,,,,,,"337.000000",,,,,,,,,,,,"4079.000000","705.000000","671.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","589.000000","578.000000","606.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960314.000000",,,,, -"15174.000000","57.840000","15174.000000","57.840000","15174.000000","57.840000",,,,,,,,,,,,,,"329.000000","11168.500000","8524.000000","65.000000","11168.500000","11168.500000",,,,,,,,,,,"6826612.000000","8209496.000000","478892.000000","0.000000","68587124.000000","0.000000","89457356.000000",,"3778240.000000","24871236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000",,,,,,,,"595.000000","12889.000000",,,,,,,,,,,"4050.000000","707.000000","649.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","591.000000","560.000000","604.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960334.000000",,,,, -"15305.000000","58.040000","15305.000000","58.040000","15305.000000","58.040000",,,,,,,,,,,,,,"68.000000","6133.000000","5533.000000","15.000000","6133.000000","6133.000000",,,,,,,,,,,"6910500.000000","8545040.000000","478892.000000","0.000000","68577276.000000","0.000000","89457356.000000",,"3778240.000000","24897356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000",,,,,,,,"215.000000","6448.000000",,,,,,,,,,,"4066.000000","709.000000","622.000000","698.000000","1015.000000","738.000000","813.000000","0.000000","0.000000","0.000000","593.000000","541.000000","604.000000","732.000000","588.000000","721.000000","160.000000","6000.000000",,"8960354.000000",,,,, -"17607.000000","61.635000","17607.000000","61.635000","17607.000000","61.635000",,,,,,,,,,,,,,"66.000000","7071.000000","6945.000000","19.000000","7071.000000","7071.000000",,,,,,,,,,,"6225380.000000","7838940.000000","478892.000000","0.000000","68562364.000000","0.000000","89457148.000000",,"3778240.000000","24909928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000",,,,,,,,"163.000000","6966.000000",,,,,,,,,,,"4236.000000","713.000000","645.000000","702.000000","1015.000000","783.000000","813.000000","0.000000","0.000000","0.000000","597.000000","572.000000","607.000000","732.000000","676.000000","721.000000","160.000000","6000.000000",,"8960374.000000",,,,, -"17649.000000","61.695000","17649.000000","61.695000","17649.000000","61.695000",,,,,,,,,,,,,,"967.000000","18309.000000","17423.000000","31.000000","18309.000000","18309.000000",,,,,,,,,,,"6120520.000000","7682228.000000","478892.000000","0.000000","68551056.000000","0.000000","89457148.000000",,"3778240.000000","24922212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000",,,,,,,,"1136.000000","17090.000000",,,,,,,,,,,"4243.000000","716.000000","685.000000","680.000000","1015.000000","838.000000","786.000000","0.000000","0.000000","0.000000","599.000000","605.000000","599.000000","737.000000","759.000000","719.000000","160.000000","6000.000000",,"8960394.000000",,,,, -"20086.000000","65.515000","20086.000000","65.515000","20086.000000","65.515000",,,,,,,,,,,,,,"55.000000","7514.000000","6844.000000","20.000000","7514.000000","7514.000000",,,,,,,,,,,"5952748.000000","7577372.000000","478892.000000","0.000000","68562052.000000","0.000000","89457148.000000",,"3778240.000000","24851796.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000",,,,,,,,"157.000000","7972.000000",,,,,,,,,,,"4380.000000","721.000000","757.000000","693.000000","1036.000000","1038.000000","804.000000","0.000000","0.000000","0.000000","604.000000","652.000000","607.000000","748.000000","759.000000","725.000000","160.000000","6000.000000",,"8960414.000000",,,,, -"19803.000000","65.080000","19803.000000","65.080000","19803.000000","65.080000",,,,,,,,,,,,,,"70.000000","5896.500000","5785.000000","16.000000","5896.500000","5896.500000",,,,,,,,,,,"5743124.000000","7451636.000000","478892.000000","0.000000","68562628.000000","0.000000","89457148.000000",,"3778240.000000","24828344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000",,,,,,,,"162.000000","5776.000000",,,,,,,,,,,"4279.000000","730.000000","832.000000","719.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","610.000000","693.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960434.000000",,,,, -"16291.000000","59.580000","16291.000000","59.580000","16291.000000","59.580000",,,,,,,,,,,,,,"56.000000","4438.500000","3935.000000","15.000000","4438.500000","4438.500000",,,,,,,,,,,"5596328.000000","7357844.000000","478892.000000","0.000000","68563360.000000","0.000000","89457148.000000",,"3778240.000000","24827460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000",,,,,,,,"428.000000","4457.000000",,,,,,,,,,,"4134.000000","733.000000","828.000000","722.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","611.000000","673.000000","623.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960454.000000",,,,, -"18171.000000","62.520000","18171.000000","62.520000","18171.000000","62.520000",,,,,,,,,,,,,,"132.000000","10073.500000","9786.000000","18.000000","10073.500000","10073.500000",,,,,,,,,,,"5595020.000000","7335344.000000","478892.000000","0.000000","68557660.000000","0.000000","89449972.000000",,"3778240.000000","24830260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000",,,,,,,,"306.000000","9923.000000",,,,,,,,,,,"4135.000000","735.000000","830.000000","727.000000","1038.000000","1080.000000","897.000000","0.000000","0.000000","0.000000","612.000000","664.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960474.000000",,,,, -"17053.000000","60.765000","17053.000000","60.765000","17053.000000","60.765000",,,,,,,,,,,,,,"62.000000","6870.500000","6611.000000","17.000000","6870.500000","6870.500000",,,,,,,,,,,"6538548.000000","8222832.000000","478892.000000","0.000000","68561300.000000","0.000000","89449772.000000",,"3778240.000000","24882940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000",,,,,,,,"170.000000","6896.000000",,,,,,,,,,,"4189.000000","736.000000","761.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","613.000000","613.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960494.000000",,,,, -"19157.000000","64.060000","19157.000000","64.060000","19157.000000","64.060000",,,,,,,,,,,,,,"70.000000","17513.500000","17493.000000","23.000000","17513.500000","17513.500000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68553188.000000","0.000000","89449772.000000",,"3778240.000000","24889580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000",,,,,,,,"319.000000","17145.000000",,,,,,,,,,,"4284.000000","740.000000","774.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","616.000000","643.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960514.000000",,,,, -"17289.000000","61.125000","17289.000000","61.125000","17289.000000","61.125000",,,,,,,,,,,,,,"2198.000000","18126.000000","15512.000000","13.000000","18126.000000","18126.000000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68538632.000000","0.000000","89449772.000000",,"3778240.000000","24888848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000",,,,,,,,"1856.000000","16685.000000",,,,,,,,,,,"4373.000000","741.000000","731.000000","723.000000","1038.000000","839.000000","874.000000","0.000000","0.000000","0.000000","617.000000","632.000000","617.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960534.000000",,,,, -"15447.000000","58.235000","15447.000000","58.235000","15447.000000","58.235000",,,,,,,,,,,,,,"7103.000000","27817.000000","19069.000000","28.000000","27817.000000","27817.000000",,,,,,,,,,,"5972840.000000","7457316.000000","478892.000000","0.000000","68531808.000000","0.000000","89449984.000000",,"3778240.000000","24897304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000",,,,,,,,"8204.000000","21257.000000",,,,,,,,,,,"4177.000000","743.000000","697.000000","721.000000","1038.000000","806.000000","874.000000","0.000000","0.000000","0.000000","617.000000","621.000000","615.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960554.000000",,,,, -"15526.000000","58.355000","15526.000000","58.355000","15526.000000","58.355000",,,,,,,,,,,,,,"429.000000","18144.500000","17434.000000","22.000000","18144.500000","18144.500000",,,,,,,,,,,"6182556.000000","7646064.000000","478892.000000","0.000000","68518620.000000","0.000000","89449984.000000",,"3778240.000000","24929948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000",,,,,,,,"638.000000","17788.000000",,,,,,,,,,,"4046.000000","744.000000","667.000000","721.000000","1038.000000","762.000000","874.000000","0.000000","0.000000","0.000000","618.000000","583.000000","613.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960574.000000",,,,, -"16614.000000","60.050000","16614.000000","60.050000","16614.000000","60.050000",,,,,,,,,,,,,,"4952.000000","26766.500000","21092.000000","60.000000","26766.500000","26766.500000",,,,,,,,,,,"6138972.000000","7718032.000000","478892.000000","0.000000","68494956.000000","0.000000","89440852.000000",,"3778240.000000","24946840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000",,,,,,,,"5278.000000","22210.000000",,,,,,,,,,,"4110.000000","746.000000","656.000000","719.000000","1038.000000","724.000000","874.000000","0.000000","0.000000","0.000000","620.000000","571.000000","612.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960594.000000",,,,, -"16589.000000","60.000000","16589.000000","60.000000","16589.000000","60.000000",,,,,,,,,,,,,,"700.000000","19892.000000","18922.000000","43.000000","19892.000000","19892.000000",,,,,,,,,,,"6096872.000000","7550104.000000","478892.000000","0.000000","68479028.000000","0.000000","89440636.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000",,,,,,,,"927.000000","19234.000000",,,,,,,,,,,"4021.000000","748.000000","671.000000","721.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","580.000000","616.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960614.000000",,,,, -"14492.000000","56.710000","14492.000000","56.710000","14492.000000","56.710000",,,,,,,,,,,,,,"5777.000000","22797.000000","17019.000000","14.000000","22797.000000","22797.000000",,,,,,,,,,,"5739672.000000","7297612.000000","478892.000000","0.000000","68463460.000000","0.000000","89436844.000000",,"3778240.000000","25006840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"4204.000000","750.000000","663.000000","723.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","582.000000","617.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960634.000000",,,,, -"15202.000000","57.820000","15202.000000","57.820000","15202.000000","57.820000",,,,,,,,,,,,,,"15052.000000","25747.500000","10061.000000","9.000000","25747.500000","25747.500000",,,,,,,,,,,"5759376.000000","7379916.000000","478892.000000","0.000000","68463492.000000","0.000000","89429148.000000",,"3778240.000000","24993404.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000",,,,,,,,"16217.000000","10164.000000",,,,,,,,,,,"3967.000000","749.000000","638.000000","722.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","558.000000","615.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960654.000000",,,,, -"14965.000000","57.445000","14965.000000","57.445000","14965.000000","57.445000",,,,,,,,,,,,,,"13476.000000","30102.000000","16574.000000","86.000000","30102.000000","30102.000000",,,,,,,,,,,"5641160.000000","7156840.000000","478892.000000","0.000000","68459400.000000","0.000000","89429148.000000",,"3778240.000000","24999384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000",,,,,,,,"13341.000000","16813.000000",,,,,,,,,,,"4065.000000","751.000000","621.000000","716.000000","1038.000000","936.000000","897.000000","0.000000","0.000000","0.000000","621.000000","534.000000","608.000000","755.000000","626.000000","727.000000","160.000000","6000.000000",,"8960674.000000",,,,, -"16429.000000","59.750000","16429.000000","59.750000","16429.000000","59.750000",,,,,,,,,,,,,,"9661.000000","23058.000000","12989.000000","12.000000","23058.000000","23058.000000",,,,,,,,,,,"6269364.000000","7555300.000000","478892.000000","0.000000","68475632.000000","0.000000","89429148.000000",,"3778240.000000","24983112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000",,,,,,,,"10389.000000","13077.000000",,,,,,,,,,,"4071.000000","748.000000","679.000000","722.000000","1038.000000","1042.000000","921.000000","0.000000","0.000000","0.000000","621.000000","541.000000","604.000000","749.000000","636.000000","725.000000","160.000000","6000.000000",,"8960694.000000",,,,, -"14782.000000","57.170000","14782.000000","57.170000","14782.000000","57.170000",,,,,,,,,,,,,,"118.000000","16021.500000","15706.000000","40.000000","16021.500000","16021.500000",,,,,,,,,,,"6269364.000000","7603920.000000","478888.000000","0.000000","68478092.000000","0.000000","89429152.000000",,"3778240.000000","24993176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000",,,,,,,,"269.000000","15949.000000",,,,,,,,,,,"4215.000000","741.000000","689.000000","709.000000","1038.000000","1042.000000","897.000000","0.000000","0.000000","0.000000","618.000000","551.000000","595.000000","749.000000","636.000000","696.000000","160.000000","6000.000000",,"8960714.000000",,,,, -"15591.000000","58.435000","15591.000000","58.435000","15591.000000","58.435000",,,,,,,,,,,,,,"312.000000","8063.500000","7271.000000","31.000000","8063.500000","8063.500000",,,,,,,,,,,"6122444.000000","7680076.000000","478888.000000","0.000000","68472940.000000","0.000000","89429032.000000",,"3778240.000000","24969712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000",,,,,,,,"415.000000","8129.000000",,,,,,,,,,,"4090.000000","724.000000","682.000000","686.000000","930.000000","1042.000000","839.000000","0.000000","0.000000","0.000000","609.000000","552.000000","580.000000","728.000000","636.000000","686.000000","160.000000","6000.000000",,"8960734.000000",,,,, -"17832.000000","61.955000","17832.000000","61.955000","17832.000000","61.955000",,,,,,,,,,,,,,"319.000000","13451.500000","12792.000000","15.000000","13451.500000","13451.500000",,,,,,,,,,,"5891760.000000","7281616.000000","478888.000000","0.000000","68492216.000000","0.000000","89429032.000000",,"3778240.000000","24954112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000",,,,,,,,"828.000000","12962.000000",,,,,,,,,,,"4229.000000","713.000000","691.000000","695.000000","905.000000","905.000000","874.000000","0.000000","0.000000","0.000000","604.000000","566.000000","583.000000","721.000000","643.000000","686.000000","160.000000","6000.000000",,"8960754.000000",,,,, -"15395.000000","58.130000","15395.000000","58.130000","15395.000000","58.130000",,,,,,,,,,,,,,"269.000000","11304.000000","10468.000000","31.000000","11304.000000","11304.000000",,,,,,,,,,,"5912732.000000","7281616.000000","478888.000000","0.000000","68477144.000000","0.000000","89429032.000000",,"3778240.000000","24925236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000",,,,,,,,"460.000000","11410.000000",,,,,,,,,,,"4022.000000","705.000000","716.000000","686.000000","861.000000","905.000000","843.000000","0.000000","0.000000","0.000000","600.000000","572.000000","577.000000","711.000000","664.000000","674.000000","160.000000","6000.000000",,"8960774.000000",,,,, -"12823.000000","54.090000","12823.000000","54.090000","12823.000000","54.090000",,,,,,,,,,,,,,"491.000000","21369.000000","19724.000000","22.000000","21369.000000","21369.000000",,,,,,,,,,,"6353136.000000","7736316.000000","478888.000000","0.000000","68460708.000000","0.000000","89429032.000000",,"3778240.000000","24812360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000",,,,,,,,"724.000000","21798.000000",,,,,,,,,,,"3977.000000","693.000000","683.000000","671.000000","840.000000","905.000000","843.000000","0.000000","8.000000","0.000000","594.000000","545.000000","566.000000","706.000000","664.000000","674.000000","160.000000","6000.000000",,"8960794.000000",,,,, -"13588.000000","55.290000","13588.000000","55.290000","13588.000000","55.290000",,,,,,,,,,,,,,"2272.000000","25670.000000","23398.000000","30.000000","25670.000000","25670.000000",,,,,,,,,,,"6080504.000000","7736312.000000","478888.000000","0.000000","68455040.000000","0.000000","89429032.000000",,"3778240.000000","24818960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000",,,,,,,,,"26055.000000",,,,,,,,,,,"3941.000000","689.000000","594.000000","659.000000","839.000000","843.000000","843.000000","0.000000","8.000000","0.000000","592.000000","506.000000","556.000000","706.000000","664.000000","643.000000","160.000000","6000.000000",,"8960814.000000",,,,, -"13844.000000","55.700000","13844.000000","55.700000","13844.000000","55.700000",,,,,,,,,,,,,,"3818.000000","20290.500000","15160.000000","29.000000","20290.500000","20290.500000",,,,,,,,,,,"6038484.000000","7694292.000000","478888.000000","0.000000","68474060.000000","0.000000","89428956.000000",,"3778240.000000","24878240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000",,,,,,,,"4066.000000","17537.000000",,,,,,,,,,,"4028.000000","686.000000","546.000000","649.000000","839.000000","673.000000","843.000000","0.000000","8.000000","0.000000","590.000000","480.000000","546.000000","706.000000","575.000000","640.000000","160.000000","6000.000000",,"8960834.000000",,,,, -"11139.000000","51.465000","11139.000000","51.465000","11139.000000","51.465000",,,,,,,,,,,,,,"13943.000000","28985.000000","13748.000000","10.000000","28985.000000","28985.000000",,,,,,,,,,,"6373040.000000","8259532.000000","478888.000000","0.000000","68487440.000000","0.000000","89428912.000000",,"3778240.000000","24935712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000",,,,,,,,"13487.000000","16791.000000",,,,,,,,,,,"3863.000000","683.000000","519.000000","635.000000","839.000000","620.000000","843.000000","0.000000","0.000000","0.000000","586.000000","454.000000","533.000000","706.000000","565.000000","636.000000","160.000000","6000.000000",,"8960854.000000",,,,, -"13031.000000","54.430000","13031.000000","54.430000","13031.000000","54.430000",,,,,,,,,,,,,,"17739.000000","26951.500000","7538.000000","6.000000","26951.500000","26951.500000",,,,,,,,,,,"6918296.000000","8678964.000000","478888.000000","0.000000","68491668.000000","0.000000","89428912.000000",,"3778240.000000","24929944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000",,,,,,,,"18210.000000","10415.000000",,,,,,,,,,,"3806.000000","681.000000","517.000000","629.000000","839.000000","580.000000","843.000000","0.000000","0.000000","0.000000","583.000000","449.000000","529.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960874.000000",,,,, -"11749.000000","52.420000","11749.000000","52.420000","11749.000000","52.420000",,,,,,,,,,,,,,"14342.000000","28587.000000","13389.000000","25.000000","28587.000000","28587.000000",,,,,,,,,,,"7002180.000000","8657992.000000","478888.000000","0.000000","68472972.000000","0.000000","89428912.000000",,"3778240.000000","24985000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000",,,,,,,,"14543.000000","14900.000000",,,,,,,,,,,"3841.000000","679.000000","508.000000","619.000000","839.000000","569.000000","843.000000","0.000000","0.000000","0.000000","579.000000","430.000000","518.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960894.000000",,,,, -"14026.000000","55.975000","14026.000000","55.975000","14026.000000","55.975000",,,,,,,,,,,,,,"1244.000000","8996.500000","7161.000000","22.000000","8996.500000","8996.500000",,,,,,,,,,,"6806016.000000","8195876.000000","478888.000000","0.000000","68459076.000000","0.000000","89429112.000000",,"3778240.000000","25016252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000",,,,,,,,"2169.000000","7418.000000",,,,,,,,,,,"4052.000000","676.000000","541.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","577.000000","459.000000","509.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960914.000000",,,,, -"13959.000000","55.865000","13959.000000","55.865000","13959.000000","55.865000",,,,,,,,,,,,,,"622.000000","7405.500000","6595.000000","6.000000","7405.500000","7405.500000",,,,,,,,,,,"6281736.000000","7566728.000000","478888.000000","0.000000","68445972.000000","0.000000","89429112.000000",,"3778240.000000","25029196.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000",,,,,,,,"713.000000","6880.000000",,,,,,,,,,,"4040.000000","677.000000","563.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","576.000000","470.000000","506.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960934.000000",,,,, -"15191.000000","57.795000","15191.000000","57.795000","15191.000000","57.795000",,,,,,,,,,,,,,"10423.000000","15823.000000","5399.000000","3.000000","15823.000000","15823.000000",,,,,,,,,,,"6344652.000000","7650616.000000","478888.000000","0.000000","68448712.000000","0.000000","89429112.000000",,"3778240.000000","24990228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000",,,,,,,,"9095.000000",,,,,,,,,,,,"4015.000000","676.000000","585.000000","609.000000","839.000000","714.000000","843.000000","0.000000","0.000000","0.000000","575.000000","503.000000","507.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960954.000000",,,,, -"14373.000000","56.510000","14373.000000","56.510000","14373.000000","56.510000",,,,,,,,,,,,,,"22245.000000","29379.000000","6197.000000","14.000000","29379.000000","29379.000000",,,,,,,,,,,"5947144.000000","7420868.000000","478888.000000","0.000000","68438172.000000","0.000000","89429112.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000",,,,,,,,"23902.000000","6413.000000",,,,,,,,,,,"3935.000000","674.000000","587.000000","602.000000","839.000000","714.000000","799.000000","0.000000","0.000000","0.000000","573.000000","517.000000","505.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960974.000000",,,,, -"20617.000000","66.290000","20617.000000","66.290000","20617.000000","66.290000",,,,,,,,,,,,,,"17519.000000","33595.500000","16012.000000","18.000000","33595.500000","33595.500000",,,,,,,,,,,"6072972.000000","7693504.000000","478888.000000","0.000000","68433336.000000","0.000000","89429112.000000",,"3778240.000000","25020440.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000",,,,,,,,"17284.000000","16375.000000",,,,,,,,,,,"4433.000000","677.000000","771.000000","627.000000","843.000000","1649.000000","855.000000","0.000000","0.000000","0.000000","573.000000","594.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8960994.000000",,,,, -"15667.000000","58.545000","15667.000000","58.545000","15667.000000","58.545000",,,,,,,,,,,,,,"9565.000000","25514.500000","10927.000000","14.000000","25514.500000","25514.500000",,,,,,,,,,,"6156816.000000","7630552.000000","478888.000000","0.000000","68454000.000000","0.000000","89429076.000000",,"3778240.000000","24995436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000",,,,,,,,"10692.000000","19844.000000",,,,,,,,,,,"4021.000000","679.000000","825.000000","636.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","573.000000","605.000000","518.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961014.000000",,,,, -"15146.000000","57.725000","15146.000000","57.725000","15146.000000","57.725000",,,,,,,,,,,,,,"49.000000","6901.000000","4425.000000","26.000000","6901.000000","6901.000000",,,,,,,,,,,"6408468.000000","8024628.000000","478888.000000","0.000000","68445000.000000","0.000000","89429076.000000",,"3778240.000000","25004856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000",,,,,,,,"234.000000","9093.000000",,,,,,,,,,,"3965.000000","681.000000","859.000000","638.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","574.000000","611.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961034.000000",,,,, -"17198.000000","60.955000","17198.000000","60.955000","17198.000000","60.955000",,,,,,,,,,,,,,"74.000000","6900.000000","6677.000000","10.000000","6900.000000","6900.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68473348.000000","0.000000","89429076.000000",,"3778240.000000","24980628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000",,,,,,,,"540.000000","6509.000000",,,,,,,,,,,"4144.000000","682.000000","697.000000","628.000000","855.000000","1052.000000","852.000000","0.000000","0.000000","0.000000","574.000000","563.000000","516.000000","701.000000","699.000000","664.000000","160.000000","6000.000000",,"8961054.000000",,,,, -"16364.000000","59.640000","16364.000000","59.640000","16364.000000","59.640000",,,,,,,,,,,,,,"144.000000","5734.000000","5444.000000","7.000000","5734.000000","5734.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68461532.000000","0.000000","89429076.000000",,"3778240.000000","24984448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000",,,,,,,,"228.000000","5651.000000",,,,,,,,,,,"4364.000000","680.000000","672.000000","627.000000","855.000000","852.000000","852.000000","0.000000","0.000000","0.000000","573.000000","573.000000","518.000000","701.000000","699.000000","662.000000","160.000000","6000.000000",,"8961074.000000",,,,, -"17080.000000","60.760000","17080.000000","60.760000","17080.000000","60.760000",,,,,,,,,,,,,,"60.000000","6209.000000","5738.000000","38.000000","6209.000000","6209.000000",,,,,,,,,,,"6616308.000000","8477436.000000","478888.000000","0.000000","68461100.000000","0.000000","89429076.000000",,"3778240.000000","24922628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000",,,,,,,,"180.000000","6438.000000",,,,,,,,,,,"4089.000000","680.000000","718.000000","645.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","571.000000","602.000000","529.000000","696.000000","699.000000","662.000000","160.000000","6000.000000",,"8961094.000000",,,,, -"14338.000000","56.460000","14338.000000","56.460000","14338.000000","56.460000",,,,,,,,,,,,,,"127.000000","4596.000000","4499.000000","11.000000","4596.000000","4596.000000",,,,,,,,,,,"6275972.000000","8143776.000000","478888.000000","0.000000","68447552.000000","0.000000","89429076.000000",,"3778240.000000","24934904.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000",,,,,,,,"154.000000","4412.000000",,,,,,,,,,,"4080.000000","677.000000","686.000000","647.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","567.000000","568.000000","529.000000","686.000000","647.000000","662.000000","160.000000","6000.000000",,"8961114.000000",,,,, -"13650.000000","55.375000","13650.000000","55.375000","13650.000000","55.375000",,,,,,,,,,,,,,"14569.000000","19336.000000","5250.000000","8.000000","19336.000000","19336.000000",,,,,,,,,,,"6275972.000000","8174660.000000","478888.000000","0.000000","68434736.000000","0.000000","89429076.000000",,"3778240.000000","24963428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000",,,,,,,,"13084.000000","5767.000000",,,,,,,,,,,"4088.000000","675.000000","671.000000","652.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","565.000000","557.000000","534.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961134.000000",,,,, -"11267.000000","51.630000","11267.000000","51.630000","11267.000000","51.630000",,,,,,,,,,,,,,"20366.000000","25325.000000","4206.000000","4.000000","25325.000000","25325.000000",,,,,,,,,,,"6569572.000000","8636032.000000","478888.000000","0.000000","68420732.000000","0.000000","89429076.000000",,"3778240.000000","24879836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000",,,,,,,,"22015.000000","4061.000000",,,,,,,,,,,"3795.000000","669.000000","540.000000","649.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","560.000000","464.000000","531.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961154.000000",,,,, -"10200.000000","49.965000","10200.000000","49.965000","10200.000000","49.965000",,,,,,,,,,,,,,"18164.000000","32954.000000","14689.000000","9.000000","32954.000000","32954.000000",,,,,,,,,,,"6234024.000000","8233192.000000","478888.000000","0.000000","68422364.000000","0.000000","89429076.000000",,"3778240.000000","24878364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000",,,,,,,,"17585.000000","15469.000000",,,,,,,,,,,"3866.000000","664.000000","496.000000","642.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","555.000000","425.000000","524.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961174.000000",,,,, -"10460.000000","50.375000","10460.000000","50.375000","10460.000000","50.375000",,,,,,,,,,,,,,"7903.000000","17929.000000","9799.000000","30.000000","17929.000000","17929.000000",,,,,,,,,,,"6192088.000000","8212228.000000","478888.000000","0.000000","68425120.000000","0.000000","89429084.000000",,"3778240.000000","24963024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000",,,,,,,,"8776.000000","9379.000000",,,,,,,,,,,"3813.000000","658.000000","420.000000","634.000000","855.000000","644.000000","892.000000","0.000000","0.000000","0.000000","550.000000","356.000000","519.000000","684.000000","474.000000","682.000000","160.000000","6000.000000",,"8961194.000000",,,,, -"9221.000000","48.415000","9221.000000","48.415000","9221.000000","48.415000",,,,,,,,,,,,,,"25855.000000","54017.000000","27985.000000","21.000000","54017.000000","54017.000000",,,,,,,,,,,"6737136.000000","8547568.000000","478888.000000","0.000000","68400916.000000","0.000000","89428880.000000",,"3778240.000000","24949236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000",,,,,,,,"26318.000000","27874.000000",,,,,,,,,,,"3682.000000","651.000000","405.000000","622.000000","855.000000","509.000000","892.000000","0.000000","0.000000","0.000000","544.000000","347.000000","508.000000","684.000000","429.000000","682.000000","160.000000","6000.000000",,"8961214.000000",,,,, -"10276.000000","50.085000","10276.000000","50.085000","10276.000000","50.085000",,,,,,,,,,,,,,"23510.000000","56052.000000","32542.000000","46.000000","56052.000000","56052.000000",,,,,,,,,,,"6903972.000000","8993712.000000","478888.000000","0.000000","68424412.000000","0.000000","89428880.000000",,"3778240.000000","24925668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000",,,,,,,,,"33520.000000",,,,,,,,,,,"3733.000000","648.000000","410.000000","612.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","541.000000","344.000000","499.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961234.000000",,,,, -"9437.000000","48.760000","9437.000000","48.760000","9437.000000","48.760000",,,,,,,,,,,,,,"1718.000000","7001.000000","4025.000000","11.000000","7001.000000","7001.000000",,,,,,,,,,,"6924944.000000","8890000.000000","478888.000000","0.000000","68410544.000000","0.000000","89428880.000000",,"3778240.000000","25015960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000",,,,,,,,"2423.000000","5836.000000",,,,,,,,,,,"3637.000000","643.000000","409.000000","599.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","536.000000","342.000000","487.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961254.000000",,,,, -"12247.000000","53.165000","12247.000000","53.165000","12247.000000","53.165000",,,,,,,,,,,,,,"227.000000","8992.000000","7595.000000","8.000000","8992.000000","8992.000000",,,,,,,,,,,"6883180.000000","8848228.000000","478888.000000","0.000000","68401376.000000","0.000000","89429052.000000",,"3778240.000000","24982300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000",,,,,,,,"656.000000","9505.000000",,,,,,,,,,,"3771.000000","639.000000","471.000000","599.000000","855.000000","793.000000","892.000000","0.000000","0.000000","0.000000","531.000000","373.000000","479.000000","684.000000","573.000000","682.000000","160.000000","6000.000000",,"8961274.000000",,,,, -"11975.000000","52.735000","11975.000000","52.735000","11975.000000","52.735000",,,,,,,,,,,,,,"143.000000","17900.500000","16196.000000","52.000000","17900.500000","17900.500000",,,,,,,,,,,"6799292.000000","8324876.000000","478888.000000","0.000000","68391708.000000","0.000000","89429052.000000",,"3778240.000000","24993660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000",,,,,,,,"2303.000000","17158.000000",,,,,,,,,,,"3840.000000","635.000000","485.000000","555.000000","855.000000","793.000000","793.000000","0.000000","0.000000","0.000000","527.000000","398.000000","460.000000","682.000000","573.000000","644.000000","160.000000","6000.000000",,"8961294.000000",,,,, -"12465.000000","53.500000","12465.000000","53.500000","12465.000000","53.500000",,,,,,,,,,,,,,"87.000000","5461.500000","5426.000000","46.000000","5461.500000","5461.500000",,,,,,,,,,,"6911708.000000","8437288.000000","478888.000000","0.000000","68392648.000000","0.000000","89436608.000000",,"3778240.000000","24998892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000",,,,,,,,"178.000000","5231.000000",,,,,,,,,,,"3843.000000","627.000000","510.000000","536.000000","852.000000","793.000000","774.000000","0.000000","7.000000","0.000000","521.000000","421.000000","450.000000","674.000000","573.000000","635.000000","160.000000","6000.000000",,"8961314.000000",,,,, -"13378.000000","54.930000","13378.000000","54.930000","13378.000000","54.930000",,,,,,,,,,,,,,"77.000000","3794.500000","3453.000000","33.000000","3794.500000","3794.500000",,,,,,,,,,,"6618012.000000","8143596.000000","478888.000000","0.000000","68396768.000000","0.000000","89436516.000000",,"3778240.000000","25043612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000",,,,,,,,"133.000000","3925.000000",,,,,,,,,,,"3915.000000","617.000000","500.000000","527.000000","806.000000","600.000000","774.000000","0.000000","7.000000","0.000000","514.000000","438.000000","445.000000","656.000000","506.000000","635.000000","160.000000","6000.000000",,"8961334.000000",,,,, -"14055.000000","55.990000","14055.000000","55.990000","14055.000000","55.990000",,,,,,,,,,,,,,"108.000000","8475.000000","8030.000000","15.000000","8475.000000","8475.000000",,,,,,,,,,,"6219556.000000","7710812.000000","478888.000000","0.000000","68395340.000000","0.000000","89436516.000000",,"3778240.000000","25050556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000",,,,,,,,"582.000000","8229.000000",,,,,,,,,,,"3988.000000","615.000000","525.000000","520.000000","806.000000","633.000000","765.000000","0.000000","7.000000","0.000000","512.000000","456.000000","438.000000","656.000000","538.000000","630.000000","160.000000","6000.000000",,"8961354.000000",,,,, -"12909.000000","54.195000","12909.000000","54.195000","12909.000000","54.195000",,,,,,,,,,,,,,"76.000000","5306.500000","5227.000000","9.000000","5306.500000","5306.500000",,,,,,,,,,,"6155520.000000","7708552.000000","478888.000000","0.000000","68396572.000000","0.000000","89436548.000000",,"3778240.000000","25053348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000",,,,,,,,"209.000000","5100.000000",,,,,,,,,,,"3812.000000","607.000000","531.000000","508.000000","793.000000","633.000000","765.000000","0.000000","0.000000","0.000000","508.000000","466.000000","429.000000","647.000000","538.000000","583.000000","160.000000","6000.000000",,"8961374.000000",,,,, -"11021.000000","51.230000","11021.000000","51.230000","11021.000000","51.230000",,,,,,,,,,,,,,"44.000000","4459.000000","4415.000000","6.000000","4459.000000","4459.000000",,,,,,,,,,,"5673192.000000","7813436.000000","478888.000000","0.000000","68382116.000000","0.000000","89436568.000000",,"3778240.000000","25058984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000",,,,,,,,"121.000000",,,,,,,,,,,,"3772.000000","599.000000","495.000000","482.000000","793.000000","633.000000","644.000000","0.000000","0.000000","0.000000","503.000000","443.000000","413.000000","644.000000","538.000000","525.000000","160.000000","6000.000000",,"8961394.000000",,,,, -"11680.000000","52.265000","11680.000000","52.265000","11680.000000","52.265000",,,,,,,,,,,,,,"56.000000","5561.500000","5537.000000","65.000000","5561.500000","5561.500000",,,,,,,,,,,"5783788.000000","8175688.000000","478888.000000","0.000000","68390656.000000","0.000000","89436568.000000",,"3778240.000000","25105408.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000",,,,,,,,"171.000000","5358.000000",,,,,,,,,,,"4008.000000","593.000000","452.000000","473.000000","774.000000","579.000000","644.000000","0.000000","0.000000","0.000000","498.000000","419.000000","408.000000","640.000000","487.000000","515.000000","160.000000","6000.000000",,"8961414.000000",,,,, -"12237.000000","53.140000","12237.000000","53.140000","12237.000000","53.140000",,,,,,,,,,,,,,"123.000000","6875.500000","6623.000000","129.000000","6875.500000","6875.500000",,,,,,,,,,,"5868772.000000","8260672.000000","478888.000000","0.000000","68385152.000000","0.000000","89437664.000000",,"3778240.000000","25061400.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000",,,,,,,,"187.000000","6816.000000",,,,,,,,,,,"3945.000000","588.000000","441.000000","462.000000","774.000000","579.000000","623.000000","0.000000","0.000000","0.000000","493.000000","412.000000","400.000000","636.000000","487.000000","505.000000","160.000000","6000.000000",,"8961434.000000",,,,, -"10626.000000","50.605000","10626.000000","50.605000","10626.000000","50.605000",,,,,,,,,,,,,,"46.000000","4849.000000","4530.000000","68.000000","4849.000000","4849.000000",,,,,,,,,,,"6007060.000000","8000504.000000","478888.000000","0.000000","68362384.000000","0.000000","89429152.000000",,"3778240.000000","24903168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000",,,,,,,,"127.000000","4994.000000",,,,,,,,,,,"4004.000000","581.000000","427.000000","460.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","488.000000","403.000000","401.000000","635.000000","464.000000","505.000000","160.000000","6000.000000",,"8961454.000000",,,,, -"11575.000000","52.080000","11575.000000","52.080000","11575.000000","52.080000",,,,,,,,,,,,,,"48.000000","6997.000000","6565.000000","35.000000","6997.000000","6997.000000",,,,,,,,,,,"6078528.000000","8106304.000000","478888.000000","0.000000","68349660.000000","0.000000","89429152.000000",,"3778240.000000","24913816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000",,,,,,,,"205.000000","7174.000000",,,,,,,,,,,"3919.000000","577.000000","420.000000","458.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","485.000000","399.000000","403.000000","635.000000","458.000000","505.000000","160.000000","6000.000000",,"8961474.000000",,,,, -"10217.000000","49.950000","10217.000000","49.950000","10217.000000","49.950000",,,,,,,,,,,,,,"56.000000","6941.500000","5946.000000","121.000000","6941.500000","6941.500000",,,,,,,,,,,"6119324.000000","8115064.000000","478888.000000","0.000000","68337052.000000","0.000000","89429152.000000",,"3778240.000000","24968836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000",,,,,,,,"239.000000","7640.000000",,,,,,,,,,,"3777.000000","571.000000","406.000000","459.000000","774.000000","486.000000","600.000000","0.000000","0.000000","0.000000","481.000000","385.000000","405.000000","635.000000","450.000000","505.000000","160.000000","6000.000000",,"8961494.000000",,,,, -"10785.000000","50.835000","10785.000000","50.835000","10785.000000","50.835000",,,,,,,,,,,,,,"57.000000","6043.500000","5484.000000","34.000000","6043.500000","6043.500000",,,,,,,,,,,"5699896.000000","7464944.000000","478888.000000","0.000000","68323340.000000","0.000000","89429152.000000",,"3778240.000000","25102636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000",,,,,,,,"175.000000","6369.000000",,,,,,,,,,,"3876.000000","563.000000","402.000000","459.000000","774.000000","453.000000","600.000000","0.000000","0.000000","0.000000","475.000000","382.000000","408.000000","633.000000","419.000000","505.000000","160.000000","6000.000000",,"8961514.000000",,,,, -"10851.000000","50.930000","10851.000000","50.930000","10851.000000","50.930000",,,,,,,,,,,,,,"411.000000","6938.000000","5950.000000","27.000000","6938.000000","6938.000000",,,,,,,,,,,"5518772.000000","7178964.000000","478888.000000","0.000000","68311168.000000","0.000000","89429152.000000",,"3778240.000000","25113336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000",,,,,,,,"561.000000","6953.000000",,,,,,,,,,,"3791.000000","560.000000","413.000000","459.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","472.000000","378.000000","410.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961534.000000",,,,, -"10770.000000","50.810000","10770.000000","50.810000","10770.000000","50.810000",,,,,,,,,,,,,,"91.000000","6921.000000","5576.000000","24.000000","6921.000000","6921.000000",,,,,,,,,,,"5404996.000000","7128108.000000","478888.000000","0.000000","68329580.000000","0.000000","89429000.000000",,"3778240.000000","25150188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000",,,,,,,,"347.000000","7827.000000",,,,,,,,,,,"3772.000000","556.000000","418.000000","461.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","469.000000","378.000000","413.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961554.000000",,,,, -"10438.000000","50.290000","10438.000000","50.290000","10438.000000","50.290000",,,,,,,,,,,,,,"142.000000","13981.500000","13246.000000","29.000000","13981.500000","13981.500000",,,,,,,,,,,"5300084.000000","6960284.000000","478888.000000","0.000000","68323544.000000","0.000000","89428952.000000",,"3778240.000000","25139824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000",,,,,,,,"268.000000","14307.000000",,,,,,,,,,,"3754.000000","549.000000","412.000000","447.000000","768.000000","565.000000","573.000000","0.000000","0.000000","0.000000","464.000000","374.000000","408.000000","633.000000","458.000000","487.000000","160.000000","6000.000000",,"8961574.000000",,,,, -"17217.000000","60.910000","17217.000000","60.910000","17217.000000","60.910000",,,,,,,,,,,,,,"94.000000","10711.000000","10449.000000","34.000000","10711.000000","10711.000000",,,,,,,,,,,"5272440.000000","6988876.000000","478888.000000","0.000000","68328384.000000","0.000000","89428952.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000",,,,,,,,"219.000000","10659.000000",,,,,,,,,,,"4126.000000","549.000000","509.000000","464.000000","774.000000","977.000000","600.000000","0.000000","0.000000","0.000000","465.000000","443.000000","419.000000","635.000000","766.000000","506.000000","160.000000","6000.000000",,"8961594.000000",,,,, -"15256.000000","57.830000","15256.000000","57.830000","15256.000000","57.830000",,,,,,,,,,,,,,"79.000000","10194.500000","9698.000000","42.000000","10194.500000","10194.500000",,,,,,,,,,,"5261380.000000","6957992.000000","478888.000000","0.000000","68320268.000000","0.000000","89428952.000000",,"3778240.000000","25156764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000",,,,,,,,"206.000000","10404.000000",,,,,,,,,,,"3996.000000","551.000000","612.000000","482.000000","793.000000","977.000000","686.000000","0.000000","0.000000","0.000000","465.000000","497.000000","428.000000","635.000000","766.000000","534.000000","160.000000","6000.000000",,"8961614.000000",,,,, -"14354.000000","56.415000","14354.000000","56.415000","14354.000000","56.415000",,,,,,,,,,,,,,"43.000000","5034.000000","5085.000000","8.000000","5034.000000","5034.000000",,,,,,,,,,,"4723744.000000","6391760.000000","478888.000000","0.000000","68308516.000000","0.000000","89429896.000000",,"3778240.000000","25161856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000",,,,,,,,"139.000000","4801.000000",,,,,,,,,,,"3963.000000","552.000000","719.000000","491.000000","793.000000","977.000000","694.000000","0.000000","0.000000","0.000000","464.000000","555.000000","431.000000","635.000000","766.000000","538.000000","160.000000","6000.000000",,"8961634.000000",,,,, -"14148.000000","56.085000","14148.000000","56.085000","14148.000000","56.085000",,,,,,,,,,,,,,"72.000000","6442.500000","6059.000000","5.000000","6442.500000","6442.500000",,,,,,,,,,,"4806892.000000","6286164.000000","478888.000000","0.000000","68297484.000000","0.000000","89429164.000000",,"3778240.000000","25164884.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000",,,,,,,,"514.000000","6239.000000",,,,,,,,,,,"3911.000000","546.000000","655.000000","490.000000","765.000000","881.000000","694.000000","0.000000","0.000000","0.000000","462.000000","514.000000","431.000000","617.000000","617.000000","534.000000","160.000000","6000.000000",,"8961654.000000",,,,, -"16438.000000","59.680000","16438.000000","59.680000","16438.000000","59.680000",,,,,,,,,,,,,,"47.000000","6811.000000","6410.000000","6.000000","6811.000000","6811.000000",,,,,,,,,,,"4745128.000000","6224396.000000","478888.000000","0.000000","68310372.000000","0.000000","89429164.000000",,"3778240.000000","25105640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000",,,,,,,,"151.000000","7014.000000",,,,,,,,,,,"4181.000000","547.000000","648.000000","505.000000","753.000000","753.000000","731.000000","0.000000","0.000000","0.000000","463.000000","532.000000","441.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961674.000000",,,,, -"13816.000000","55.565000","13816.000000","55.565000","13816.000000","55.565000",,,,,,,,,,,,,,"60.000000","6851.000000","6758.000000","6.000000","6851.000000","6851.000000",,,,,,,,,,,"4891856.000000","6350156.000000","478888.000000","0.000000","68297076.000000","0.000000","89429092.000000",,"3778240.000000","25031504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000",,,,,,,,"156.000000","6727.000000",,,,,,,,,,,"4054.000000","549.000000","634.000000","519.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","463.000000","524.000000","447.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961694.000000",,,,, -"12163.000000","52.970000","12163.000000","52.970000","12163.000000","52.970000",,,,,,,,,,,,,,"58.000000","6849.000000","6388.000000","14.000000","6849.000000","6849.000000",,,,,,,,,,,"5394232.000000","6768644.000000","478888.000000","0.000000","68283044.000000","0.000000","89429092.000000",,"3778240.000000","25044752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000",,,,,,,,"175.000000","7075.000000",,,,,,,,,,,"3795.000000","548.000000","622.000000","524.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","462.000000","507.000000","448.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961714.000000",,,,, -"11954.000000","52.650000","11954.000000","52.650000","11954.000000","52.650000",,,,,,,,,,,,,,"101.000000","6733.000000","5921.000000","16.000000","6733.000000","6733.000000",,,,,,,,,,,"5813580.000000","7136136.000000","478888.000000","0.000000","68292920.000000","0.000000","89429008.000000",,"3778240.000000","25104392.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000",,,,,,,,"261.000000","7181.000000",,,,,,,,,,,"3759.000000","547.000000","550.000000","527.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","460.000000","446.000000","448.000000","616.000000","591.000000","613.000000","160.000000","6000.000000",,"8961734.000000",,,,, -"11429.000000","51.820000","11429.000000","51.820000","11429.000000","51.820000",,,,,,,,,,,,,,"78.000000","4938.000000","4154.000000","28.000000","4938.000000","4938.000000",,,,,,,,,,,"5540952.000000","7157104.000000","478888.000000","0.000000","68286288.000000","0.000000","89429008.000000",,"3778240.000000","25086900.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000",,,,,,,,"230.000000","5414.000000",,,,,,,,,,,"3807.000000","547.000000","494.000000","532.000000","765.000000","590.000000","753.000000","0.000000","0.000000","0.000000","461.000000","418.000000","450.000000","616.000000","469.000000","613.000000","160.000000","6000.000000",,"8961754.000000",,,,, -"12151.000000","52.955000","12151.000000","52.955000","12151.000000","52.955000",,,,,,,,,,,,,,"52.000000","5558.500000","5175.000000","95.000000","5558.500000","5558.500000",,,,,,,,,,,"5422744.000000","6990276.000000","478888.000000","0.000000","68292980.000000","0.000000","89429008.000000",,"3778240.000000","25078592.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000",,,,,,,,"157.000000","5733.000000",,,,,,,,,,,"3864.000000","546.000000","490.000000","538.000000","765.000000","576.000000","753.000000","0.000000","0.000000","0.000000","460.000000","421.000000","453.000000","616.000000","495.000000","613.000000","160.000000","6000.000000",,"8961774.000000",,,,, -"13717.000000","55.400000","13717.000000","55.400000","13717.000000","55.400000",,,,,,,,,,,,,,"70.000000","5832.000000","5776.000000","13.000000","5832.000000","5832.000000",,,,,,,,,,,"5348764.000000","7032220.000000","478888.000000","0.000000","68277392.000000","0.000000","89429008.000000",,"3778240.000000","25069720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000",,,,,,,,"178.000000","5640.000000",,,,,,,,,,,"3894.000000","547.000000","514.000000","548.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","439.000000","459.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961794.000000",,,,, -"13393.000000","54.890000","13393.000000","54.890000","13393.000000","54.890000",,,,,,,,,,,,,,"59.000000","6284.500000","5915.000000","20.000000","6284.500000","6284.500000",,,,,,,,,,,"5222788.000000","6927216.000000","478888.000000","0.000000","68269568.000000","0.000000","89428860.000000",,"3778240.000000","25108152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000",,,,,,,,"168.000000","6426.000000",,,,,,,,,,,"4074.000000","547.000000","541.000000","560.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","465.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961814.000000",,,,, -"11555.000000","52.005000","11555.000000","52.005000","11555.000000","52.005000",,,,,,,,,,,,,,"328.000000","4211.500000","3861.000000","30.000000","4211.500000","4211.500000",,,,,,,,,,,"4921708.000000","6821556.000000","478888.000000","0.000000","68255140.000000","0.000000","89429000.000000",,"3778240.000000","25122004.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000",,,,,,,,"118.000000","4115.000000",,,,,,,,,,,"4096.000000","543.000000","518.000000","559.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","458.000000","448.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961835.000000",,,,, -"10549.000000","50.430000","10549.000000","50.430000","10549.000000","50.430000",,,,,,,,,,,,,,"203.000000","4260.500000","3723.000000","4.000000","4260.500000","4260.500000",,,,,,,,,,,"4911800.000000","6821556.000000","478888.000000","0.000000","68250944.000000","0.000000","89429000.000000",,"3778240.000000","25139316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000",,,,,,,,"466.000000","4128.000000",,,,,,,,,,,"3718.000000","541.000000","496.000000","564.000000","768.000000","606.000000","784.000000","0.000000","0.000000","0.000000","456.000000","432.000000","469.000000","613.000000","542.000000","613.000000","160.000000","6000.000000",,"8961854.000000",,,,, -"15120.000000","57.585000","15120.000000","57.585000","15120.000000","57.585000",,,,,,,,,,,,,,"91.000000","8647.500000","8528.000000","8.000000","8647.500000","8647.500000",,,,,,,,,,,"5247348.000000","6947388.000000","478888.000000","0.000000","68242072.000000","0.000000","89429000.000000",,"3778240.000000","25170684.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000",,,,,,,,"285.000000","8390.000000",,,,,,,,,,,"3908.000000","544.000000","541.000000","586.000000","784.000000","824.000000","795.000000","0.000000","0.000000","0.000000","456.000000","442.000000","481.000000","616.000000","637.000000","616.000000","160.000000","6000.000000",,"8961874.000000",,,,, -"11168.000000","51.395000","11168.000000","51.395000","11168.000000","51.395000",,,,,,,,,,,,,,"135.000000","8788.000000","8418.000000","22.000000","8788.000000","8788.000000",,,,,,,,,,,"5115780.000000","6466920.000000","478888.000000","0.000000","68249708.000000","0.000000","89429000.000000",,"3778240.000000","25163700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000",,,,,,,,"169.000000","8853.000000",,,,,,,,,,,"3877.000000","528.000000","538.000000","564.000000","765.000000","824.000000","784.000000","0.000000","0.000000","0.000000","449.000000","447.000000","467.000000","603.000000","637.000000","606.000000","160.000000","6000.000000",,"8961894.000000",,,,, -"13341.000000","54.800000","13341.000000","54.800000","13341.000000","54.800000",,,,,,,,,,,,,,"111.000000","5116.500000","5070.000000","26.000000","5116.500000","5116.500000",,,,,,,,,,,"5073836.000000","6445948.000000","478888.000000","0.000000","68256536.000000","0.000000","89429000.000000",,"3778240.000000","25091876.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000",,,,,,,,"165.000000","4886.000000",,,,,,,,,,,"3801.000000","523.000000","546.000000","551.000000","753.000000","824.000000","753.000000","0.000000","0.000000","0.000000","446.000000","453.000000","460.000000","597.000000","637.000000","591.000000","160.000000","6000.000000",,"8961914.000000",,,,, -"12151.000000","52.935000","12151.000000","52.935000","12151.000000","52.935000",,,,,,,,,,,,,,"44.000000","5187.000000","4969.000000","30.000000","5187.000000","5187.000000",,,,,,,,,,,"4969224.000000","6194536.000000","478888.000000","0.000000","68251412.000000","0.000000","89429248.000000",,"3778240.000000","25131724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000",,,,,,,,"124.000000","5235.000000",,,,,,,,,,,"3852.000000","519.000000","485.000000","539.000000","731.000000","601.000000","753.000000","0.000000","0.000000","0.000000","444.000000","424.000000","455.000000","591.000000","500.000000","591.000000","160.000000","6000.000000",,"8961934.000000",,,,, -"13564.000000","55.150000","13564.000000","55.150000","13564.000000","55.150000",,,,,,,,,,,,,,"89.000000","7838.000000","7097.000000","12.000000","7838.000000","7838.000000",,,,,,,,,,,"5396032.000000","6495520.000000","478888.000000","0.000000","68256308.000000","0.000000","89429012.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000",,,,,,,,"487.000000","8002.000000",,,,,,,,,,,"3791.000000","516.000000","518.000000","537.000000","723.000000","601.000000","753.000000","0.000000","0.000000","0.000000","441.000000","446.000000","454.000000","583.000000","498.000000","591.000000","160.000000","6000.000000",,"8961954.000000",,,,, -"12987.000000","54.240000","12987.000000","54.240000","12987.000000","54.240000",,,,,,,,,,,,,,"698.000000","9536.500000","7676.000000","5.000000","9536.500000","9536.500000",,,,,,,,,,,"5521864.000000","6800184.000000","478888.000000","0.000000","68243504.000000","0.000000","89429012.000000",,"3778240.000000","25088872.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000",,,,,,,,"1071.000000","9626.000000",,,,,,,,,,,"3847.000000","514.000000","535.000000","528.000000","723.000000","607.000000","607.000000","0.000000","0.000000","0.000000","438.000000","459.000000","446.000000","554.000000","505.000000","516.000000","160.000000","6000.000000",,"8961974.000000",,,,, -"12345.000000","53.245000","12345.000000","53.245000","12345.000000","53.245000",,,,,,,,,,,,,,"62.000000","5982.500000","5751.000000","6.000000","5982.500000","5982.500000",,,,,,,,,,,"4913836.000000","6443808.000000","478888.000000","0.000000","68262384.000000","0.000000","89429152.000000",,"3778240.000000","25080504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000",,,,,,,,"187.000000","5964.000000",,,,,,,,,,,"3760.000000","507.000000","532.000000","519.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","434.000000","453.000000","440.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8961994.000000",,,,, -"11180.000000","51.420000","11180.000000","51.420000","11180.000000","51.420000",,,,,,,,,,,,,,"49.000000","5273.500000","4930.000000","2.000000","5273.500000","5273.500000",,,,,,,,,,,"4667872.000000","6316988.000000","478888.000000","0.000000","68266012.000000","0.000000","89429104.000000",,"3778240.000000","25075136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000",,,,,,,,"112.000000","5455.000000",,,,,,,,,,,"3944.000000","503.000000","503.000000","513.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","432.000000","430.000000","438.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8962014.000000",,,,, -"12072.000000","52.815000","12072.000000","52.815000","12072.000000","52.815000",,,,,,,,,,,,,,"38.000000","6997.000000","5571.000000","3.000000","6997.000000","6997.000000",,,,,,,,,,,"4604960.000000","6137004.000000","478888.000000","0.000000","68254152.000000","0.000000","89429104.000000",,"3778240.000000","25011436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000",,,,,,,,"2804.000000","5580.000000",,,,,,,,,,,"3845.000000","501.000000","481.000000","514.000000","667.000000","563.000000","606.000000","0.000000","0.000000","0.000000","429.000000","417.000000","440.000000","518.000000","487.000000","505.000000","160.000000","6000.000000",,"8962034.000000",,,,, -"12359.000000","53.260000","12359.000000","53.260000","12359.000000","53.260000",,,,,,,,,,,,,,"181.000000","7008.000000","6826.000000","3.000000","7008.000000","7008.000000",,,,,,,,,,,"5003232.000000","6493336.000000","478888.000000","0.000000","68242252.000000","0.000000","89428920.000000",,"3778240.000000","25008832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000",,,,,,,,"5560.000000",,,,,,,,,,,,"3929.000000","502.000000","476.000000","515.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","418.000000","441.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962054.000000",,,,, -"10899.000000","50.985000","10899.000000","50.985000","10899.000000","50.985000",,,,,,,,,,,,,,"51.000000","6882.000000","5312.000000","53.000000","6882.000000","6882.000000",,,,,,,,,,,"5191912.000000","6619108.000000","478888.000000","0.000000","68272596.000000","0.000000","89428860.000000",,"3778240.000000","25001632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000",,,,,,,,"2783.000000","5616.000000",,,,,,,,,,,"3784.000000","502.000000","473.000000","510.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","417.000000","438.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962074.000000",,,,, -"12069.000000","52.820000","12069.000000","52.820000","12069.000000","52.820000",,,,,,,,,,,,,,"49.000000","6256.000000","6022.000000","11.000000","6256.000000","6256.000000",,,,,,,,,,,"5094924.000000","6578568.000000","478888.000000","0.000000","68277556.000000","0.000000","89429112.000000",,"3778240.000000","24998320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000",,,,,,,,"161.000000","6278.000000",,,,,,,,,,,"3888.000000","505.000000","478.000000","507.000000","667.000000","603.000000","603.000000","0.000000","0.000000","0.000000","434.000000","423.000000","437.000000","518.000000","507.000000","506.000000","160.000000","6000.000000",,"8962094.000000",,,,, -"10785.000000","50.805000","10785.000000","50.805000","10785.000000","50.805000",,,,,,,,,,,,,,"82.000000","8109.000000","7963.000000","190.000000","8109.000000","8109.000000",,,,,,,,,,,"5073952.000000","6725364.000000","478888.000000","0.000000","68266380.000000","0.000000","89429112.000000",,"3778240.000000","25106736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000",,,,,,,,"200.000000","7971.000000",,,,,,,,,,,"3923.000000","505.000000","441.000000","495.000000","667.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","397.000000","427.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962114.000000",,,,, -"10809.000000","50.845000","10809.000000","50.845000","10809.000000","50.845000",,,,,,,,,,,,,,"55.000000","5568.500000","5230.000000","34.000000","5568.500000","5568.500000",,,,,,,,,,,"4739348.000000","6411932.000000","478888.000000","0.000000","68277576.000000","0.000000","89434064.000000",,"3778240.000000","25097432.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000",,,,,,,,"169.000000","5682.000000",,,,,,,,,,,"3797.000000","504.000000","439.000000","494.000000","656.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","391.000000","426.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962134.000000",,,,, -"10246.000000","49.965000","10246.000000","49.965000","10246.000000","49.965000",,,,,,,,,,,,,,"343.000000","4539.500000","4272.000000","64.000000","4539.500000","4539.500000",,,,,,,,,,,"4669760.000000","6360144.000000","478888.000000","0.000000","68277524.000000","0.000000","89443808.000000",,"3778240.000000","25111424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000",,,,,,,,"406.000000","4057.000000",,,,,,,,,,,"3688.000000","504.000000","399.000000","488.000000","656.000000","515.000000","601.000000","0.000000","0.000000","0.000000","435.000000","361.000000","422.000000","518.000000","449.000000","505.000000","160.000000","6000.000000",,"8962154.000000",,,,, -"14508.000000","56.640000","14508.000000","56.640000","14508.000000","56.640000",,,,,,,,,,,,,,"65.000000","7258.000000","6842.000000","30.000000","7258.000000","7258.000000",,,,,,,,,,,"4522960.000000","5919744.000000","478888.000000","0.000000","68276188.000000","0.000000","89443808.000000",,"3778240.000000","25110068.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000",,,,,,,,"181.000000","7428.000000",,,,,,,,,,,"3889.000000","505.000000","475.000000","482.000000","656.000000","863.000000","599.000000","0.000000","0.000000","0.000000","437.000000","418.000000","422.000000","518.000000","688.000000","500.000000","160.000000","6000.000000",,"8962174.000000",,,,, -"16375.000000","59.565000","16375.000000","59.565000","16375.000000","59.565000",,,,,,,,,,,,,,"55.000000","7927.000000","7812.000000","7.000000","7927.000000","7927.000000",,,,,,,,,,,"4440360.000000","6110168.000000","478888.000000","0.000000","68274216.000000","0.000000","89451504.000000",,"3778240.000000","25204356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000",,,,,,,,"179.000000","7806.000000",,,,,,,,,,,"4104.000000","512.000000","608.000000","508.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","440.000000","487.000000","434.000000","538.000000","709.000000","507.000000","160.000000","6000.000000",,"8962194.000000",,,,, -"13316.000000","54.785000","13316.000000","54.785000","13316.000000","54.785000",,,,,,,,,,,,,,"261.000000","8756.500000","6792.000000","31.000000","8756.500000","8756.500000",,,,,,,,,,,"4866944.000000","6475120.000000","478888.000000","0.000000","68300212.000000","0.000000","89488184.000000",,"3778240.000000","25207012.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000",,,,,,,,"1493.000000","8965.000000",,,,,,,,,,,"3982.000000","514.000000","653.000000","509.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","442.000000","527.000000","437.000000","538.000000","709.000000","524.000000","160.000000","6000.000000",,"8962214.000000",,,,, -"14104.000000","56.015000","14104.000000","56.015000","14104.000000","56.015000",,,,,,,,,,,,,,"114.000000","6854.500000","6093.000000","3.000000","6854.500000","6854.500000",,,,,,,,,,,"5307348.000000","6831644.000000","478888.000000","0.000000","68292320.000000","0.000000","89488184.000000",,"3778240.000000","25213964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000",,,,,,,,"219.000000","7283.000000",,,,,,,,,,,"3985.000000","515.000000","657.000000","516.000000","703.000000","1124.000000","633.000000","0.000000","0.000000","0.000000","442.000000","516.000000","441.000000","542.000000","709.000000","525.000000","160.000000","6000.000000",,"8962234.000000",,,,, -"14397.000000","56.470000","14397.000000","56.470000","14397.000000","56.470000",,,,,,,,,,,,,,"51.000000","7541.500000","7204.000000","5.000000","7541.500000","7541.500000",,,,,,,,,,,"5139572.000000","6873588.000000","478888.000000","0.000000","68284004.000000","0.000000","89488184.000000",,"3778240.000000","25217692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000",,,,,,,,"508.000000","7319.000000",,,,,,,,,,,"3845.000000","515.000000","563.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","442.000000","485.000000","442.000000","542.000000","556.000000","536.000000","160.000000","6000.000000",,"8962254.000000",,,,, -"14179.000000","56.135000","14179.000000","56.135000","14179.000000","56.135000",,,,,,,,,,,,,,"1047.000000","6638.000000","5384.000000","4.000000","6638.000000","6638.000000",,,,,,,,,,,"5062308.000000","7020940.000000","478888.000000","0.000000","68293804.000000","0.000000","89488184.000000",,"3778240.000000","25235524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000",,,,,,,,"1188.000000","5655.000000",,,,,,,,,,,"4074.000000","517.000000","576.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","444.000000","496.000000","445.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962274.000000",,,,, -"12487.000000","53.485000","12487.000000","53.485000","12487.000000","53.485000",,,,,,,,,,,,,,"1601.000000","8434.000000","6682.000000","4.000000","8434.000000","8434.000000",,,,,,,,,,,"4936476.000000","7083848.000000","478888.000000","0.000000","68295888.000000","0.000000","89488184.000000",,"3778240.000000","25211388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000",,,,,,,,"1725.000000","6859.000000",,,,,,,,,,,"3940.000000","519.000000","548.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","445.000000","482.000000","446.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962294.000000",,,,, -"10970.000000","51.105000","10970.000000","51.105000","10970.000000","51.105000",,,,,,,,,,,,,,"56.000000","6236.500000","6020.000000","4.000000","6236.500000","6236.500000",,,,,,,,,,,"4978376.000000","6853120.000000","478888.000000","0.000000","68299296.000000","0.000000","89488136.000000",,"3778240.000000","25206076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000",,,,,,,,"170.000000","6227.000000",,,,,,,,,,,"3736.000000","519.000000","512.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","444.000000","455.000000","447.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962314.000000",,,,, -"10166.000000","49.840000","10166.000000","49.840000","10166.000000","49.840000",,,,,,,,,,,,,,"51.000000","5111.500000","4886.000000","6.000000","5111.500000","5111.500000",,,,,,,,,,,"4747472.000000","6299812.000000","478888.000000","0.000000","68282376.000000","0.000000","89484636.000000",,"3778240.000000","25177120.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000",,,,,,,,"147.000000","5139.000000",,,,,,,,,,,"3775.000000","518.000000","464.000000","514.000000","703.000000","601.000000","633.000000","0.000000","0.000000","0.000000","443.000000","401.000000","442.000000","549.000000","516.000000","549.000000","160.000000","6000.000000",,"8962334.000000",,,,, -"10004.000000","49.590000","10004.000000","49.590000","10004.000000","49.590000",,,,,,,,,,,,,,"36.000000","4308.000000","4090.000000","2.000000","4308.000000","4308.000000",,,,,,,,,,,"4369984.000000","5796488.000000","478888.000000","0.000000","68284036.000000","0.000000","89484636.000000",,"3778240.000000","25084596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000",,,,,,,,"125.000000","4363.000000",,,,,,,,,,,"3740.000000","519.000000","422.000000","509.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","442.000000","363.000000","435.000000","549.000000","437.000000","549.000000","160.000000","6000.000000",,"8962354.000000",,,,, -"9902.000000","49.410000","9902.000000","49.410000","9902.000000","49.410000",,,,,,,,,,,,,,"47.000000","3860.000000","3645.000000","43.000000","3860.000000","3860.000000",,,,,,,,,,,"4489756.000000","5915436.000000","478888.000000","0.000000","68243272.000000","0.000000","89456948.000000",,"3778240.000000","25096880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000",,,,,,,,"137.000000","3890.000000",,,,,,,,,,,"3799.000000","518.000000","410.000000","506.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","441.000000","350.000000","433.000000","549.000000","432.000000","549.000000","160.000000","6000.000000",,"8962374.000000",,,,, -"11067.000000","51.225000","11067.000000","51.225000","11067.000000","51.225000",,,,,,,,,,,,,,"129.000000","4789.000000","4641.000000","3.000000","4789.000000","4789.000000",,,,,,,,,,,"4944268.000000","6369948.000000","478888.000000","0.000000","68229968.000000","0.000000","89456948.000000",,"3778240.000000","25185764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000",,,,,,,,"124.000000","4684.000000",,,,,,,,,,,"3944.000000","519.000000","413.000000","501.000000","703.000000","511.000000","633.000000","0.000000","0.000000","0.000000","442.000000","365.000000","430.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962394.000000",,,,, -"10953.000000","51.040000","10953.000000","51.040000","10953.000000","51.040000",,,,,,,,,,,,,,"53.000000","5608.000000","5405.000000","16.000000","5608.000000","5608.000000",,,,,,,,,,,"5049124.000000","6475092.000000","478888.000000","0.000000","68214524.000000","0.000000","89456948.000000",,"3778240.000000","25269452.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000",,,,,,,,"140.000000","5618.000000",,,,,,,,,,,"3898.000000","519.000000","413.000000","503.000000","703.000000","510.000000","633.000000","0.000000","0.000000","0.000000","442.000000","374.000000","431.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962414.000000",,,,, -"11092.000000","51.255000","11092.000000","51.255000","11092.000000","51.255000",,,,,,,,,,,,,,"65.000000","7863.000000","6799.000000","3.000000","7863.000000","7863.000000",,,,,,,,,,,"5216848.000000","6831552.000000","478888.000000","0.000000","68200444.000000","0.000000","89456900.000000",,"3778240.000000","25282944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000",,,,,,,,"277.000000","8585.000000",,,,,,,,,,,"3854.000000","519.000000","429.000000","505.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","432.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962434.000000",,,,, -"10776.000000","50.760000","10776.000000","50.760000","10776.000000","50.760000",,,,,,,,,,,,,,"334.000000","6444.000000","5325.000000","3.000000","6444.000000","6444.000000",,,,,,,,,,,"5119532.000000","6468856.000000","478888.000000","0.000000","68201584.000000","0.000000","89457196.000000",,"3778240.000000","25265084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000",,,,,,,,"531.000000","6696.000000",,,,,,,,,,,"3727.000000","519.000000","423.000000","506.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","441.000000","374.000000","433.000000","549.000000","460.000000","549.000000","160.000000","6000.000000",,"8962454.000000",,,,, -"11008.000000","51.115000","11008.000000","51.115000","11008.000000","51.115000",,,,,,,,,,,,,,"46.000000","6576.000000","6386.000000","26.000000","6576.000000","6576.000000",,,,,,,,,,,"4972740.000000","6447596.000000","478888.000000","0.000000","68196704.000000","0.000000","89457196.000000",,"3778240.000000","25269348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000",,,,,,,,"143.000000","6576.000000",,,,,,,,,,,"3850.000000","521.000000","433.000000","495.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","424.000000","549.000000","459.000000","545.000000","160.000000","6000.000000",,"8962474.000000",,,,, -"13935.000000","55.715000","13935.000000","55.715000","13935.000000","55.715000",,,,,,,,,,,,,,"60.000000","7997.000000","7783.000000","14.000000","7997.000000","7997.000000",,,,,,,,,,,"4658168.000000","5839424.000000","478884.000000","0.000000","68211040.000000","0.000000","89457200.000000",,"3778240.000000","25274372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000",,,,,,,,"192.000000","7958.000000",,,,,,,,,,,"4051.000000","517.000000","480.000000","479.000000","694.000000","707.000000","633.000000","0.000000","0.000000","0.000000","440.000000","423.000000","419.000000","549.000000","573.000000","545.000000","160.000000","6000.000000",,"8962494.000000",,,,, -"12109.000000","52.840000","12109.000000","52.840000","12109.000000","52.840000",,,,,,,,,,,,,,"98.000000","3494.000000","3308.000000","20.000000","3494.000000","3494.000000",,,,,,,,,,,"4539204.000000","5866872.000000","478884.000000","0.000000","68199608.000000","0.000000","89457200.000000",,"3778240.000000","25302000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000",,,,,,,,"101.000000","3481.000000",,,,,,,,,,,"3842.000000","511.000000","489.000000","473.000000","635.000000","707.000000","633.000000","0.000000","0.000000","0.000000","437.000000","434.000000","414.000000","545.000000","573.000000","545.000000","160.000000","6000.000000",,"8962514.000000",,,,, -"12449.000000","53.430000","12449.000000","53.430000","12449.000000","53.430000",,,,,,,,,,,,,,"559.000000","13424.000000","8656.000000","9.000000","13424.000000","13424.000000",,,,,,,,,,,"4392396.000000","5615220.000000","478884.000000","0.000000","68302196.000000","0.000000","89503924.000000",,"3778240.000000","25302756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000",,,,,,,,"8688.000000","8945.000000",,,,,,,,,,,"3955.000000","507.000000","507.000000","465.000000","633.000000","707.000000","603.000000","0.000000","0.000000","0.000000","435.000000","446.000000","410.000000","542.000000","573.000000","536.000000","160.000000","6000.000000",,"8962534.000000",,,,, -"14909.000000","57.460000","14909.000000","57.460000","14909.000000","57.460000",,,,,,,,,,,,,,"138.000000","33119.000000","24738.000000","15.000000","33119.000000","33119.000000",,,,,,,,,,,"4790608.000000","5887600.000000","478884.000000","0.000000","68658380.000000","0.000000","89846920.000000",,"3778240.000000","25268652.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000",,,,,,,,"14753.000000","26608.000000",,,,,,,,,,,"3994.000000","509.000000","525.000000","471.000000","635.000000","748.000000","633.000000","0.000000","0.000000","0.000000","436.000000","448.000000","412.000000","542.000000","538.000000","538.000000","160.000000","6000.000000",,"8962554.000000",,,,, -"14170.000000","56.495000","14170.000000","56.495000","14170.000000","56.495000",,,,,,,,,,,,,,"194.000000","28579.000000","22406.000000","11.000000","28579.000000","28579.000000",,,,,,,,,,,"4902716.000000","6538100.000000","478884.000000","0.000000","69051420.000000","0.000000","90245440.000000",,"3778240.000000","25269236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000",,,,,,,,"9650.000000","24907.000000",,,,,,,,,,,"3850.000000","507.000000","587.000000","475.000000","633.000000","748.000000","635.000000","0.000000","0.000000","0.000000","433.000000","473.000000","409.000000","532.000000","538.000000","516.000000","160.000000","6000.000000",,"8962574.000000",,,,, -"13556.000000","55.755000","13556.000000","55.755000","13556.000000","55.755000",,,,,,,,,,,,,,"199.000000","31499.000000","31300.000000","13.000000","31499.000000","31499.000000",,,,,,,,,,,"5049516.000000","6757728.000000","478884.000000","0.000000","69488452.000000","0.000000","90628368.000000",,"3778240.000000","25275660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"3910.000000","507.000000","643.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","433.000000","499.000000","413.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962594.000000",,,,, -"10707.000000","51.425000","10707.000000","51.425000","10707.000000","51.425000",,,,,,,,,,,,,,"738.000000","27646.000000","22778.000000","11.000000","27646.000000","27646.000000",,,,,,,,,,,"5447976.000000","7093272.000000","478884.000000","0.000000","69761852.000000","0.000000","90958392.000000",,"3778240.000000","25270492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000",,,,,,,,"6531.000000","25243.000000",,,,,,,,,,,"3896.000000","505.000000","575.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","452.000000","411.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962614.000000",,,,, -"11213.000000","52.240000","11213.000000","52.240000","11213.000000","52.240000",,,,,,,,,,,,,,"95.000000","7160.000000","5816.000000","6.000000","7160.000000","7160.000000",,,,,,,,,,,"5734860.000000","7072444.000000","478884.000000","0.000000","69801216.000000","0.000000","90986888.000000",,"3778240.000000","25182836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000",,,,,,,,"310.000000","8099.000000",,,,,,,,,,,"3864.000000","505.000000","530.000000","488.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","431.000000","415.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962634.000000",,,,, -"12522.000000","54.290000","12522.000000","54.290000","12522.000000","54.290000",,,,,,,,,,,,,,"156.000000","7968.000000","6599.000000","6.000000","7968.000000","7968.000000",,,,,,,,,,,"6139996.000000","7240032.000000","478884.000000","0.000000","69807392.000000","0.000000","90994512.000000",,"3778240.000000","25207528.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000",,,,,,,,"351.000000","8828.000000",,,,,,,,,,,"4028.000000","506.000000","477.000000","494.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","403.000000","422.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962654.000000",,,,, -"11854.000000","53.260000","11854.000000","53.260000","11854.000000","53.260000",,,,,,,,,,,,,,"522.000000","7978.500000","6225.000000","10.000000","7978.500000","7978.500000",,,,,,,,,,,"6119060.000000","7386872.000000","478884.000000","0.000000","69845284.000000","0.000000","91029560.000000",,"3778240.000000","25202932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000",,,,,,,,"732.000000","8477.000000",,,,,,,,,,,"3762.000000","505.000000","488.000000","499.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","418.000000","425.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962674.000000",,,,, -"11154.000000","52.185000","11154.000000","52.185000","11154.000000","52.185000",,,,,,,,,,,,,,"301.000000","5348.500000","3896.000000","5.000000","5348.500000","5348.500000",,,,,,,,,,,"6817596.000000","8211240.000000","478884.000000","0.000000","69885108.000000","0.000000","91062444.000000",,"3778240.000000","25258076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000",,,,,,,,"414.000000","6085.000000",,,,,,,,,,,"3767.000000","502.000000","463.000000","498.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","430.000000","401.000000","423.000000","532.000000","554.000000","538.000000","160.000000","6000.000000",,"8962694.000000",,,,, -"10492.000000","51.160000","10492.000000","51.160000","10492.000000","51.160000",,,,,,,,,,,,,,"101.000000","5746.500000","4326.000000","7.000000","5746.500000","5746.500000",,,,,,,,,,,"6943708.000000","8568040.000000","478884.000000","0.000000","69909564.000000","0.000000","91105336.000000",,"3778240.000000","25231320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000",,,,,,,,"305.000000","6760.000000",,,,,,,,,,,"3827.000000","499.000000","441.000000","500.000000","633.000000","562.000000","656.000000","0.000000","0.000000","0.000000","428.000000","390.000000","425.000000","525.000000","481.000000","538.000000","160.000000","6000.000000",,"8962714.000000",,,,, -"11630.000000","52.935000","11630.000000","52.935000","11630.000000","52.935000",,,,,,,,,,,,,,"53.000000","7473.500000","6060.000000","12.000000","7473.500000","7473.500000",,,,,,,,,,,"6587196.000000","8316384.000000","478884.000000","0.000000","69895068.000000","0.000000","91105336.000000",,"3778240.000000","25244940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000",,,,,,,,"276.000000","8558.000000",,,,,,,,,,,"3753.000000","501.000000","447.000000","503.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","428.000000","391.000000","426.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962734.000000",,,,, -"12829.000000","54.820000","12829.000000","54.820000","12829.000000","54.820000",,,,,,,,,,,,,,"365.000000","7064.000000","5370.000000","10.000000","7064.000000","7064.000000",,,,,,,,,,,"6608552.000000","8355664.000000","478884.000000","0.000000","69902524.000000","0.000000","91105336.000000",,"3778240.000000","25228984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000",,,,,,,,"575.000000","7816.000000",,,,,,,,,,,"3928.000000","501.000000","473.000000","508.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","429.000000","417.000000","431.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962754.000000",,,,, -"12219.000000","53.865000","12219.000000","53.865000","12219.000000","53.865000",,,,,,,,,,,,,,"133.000000","6128.500000","4791.000000","27.000000","6128.500000","6128.500000",,,,,,,,,,,"6838956.000000","8607320.000000","478884.000000","0.000000","69906088.000000","0.000000","91107608.000000",,"3778240.000000","25188740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000",,,,,,,,"308.000000","7023.000000",,,,,,,,,,,"3971.000000","496.000000","486.000000","511.000000","623.000000","620.000000","656.000000","0.000000","0.000000","0.000000","427.000000","431.000000","434.000000","524.000000","523.000000","538.000000","160.000000","6000.000000",,"8962774.000000",,,,, -"17055.000000","61.435000","17055.000000","61.435000","17055.000000","61.435000",,,,,,,,,,,,,,"90.000000","12522.000000","11192.000000","46.000000","12522.000000","12522.000000",,,,,,,,,,,"7111536.000000","8754072.000000","478884.000000","0.000000","69894992.000000","0.000000","91107560.000000",,"3778240.000000","25200044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000",,,,,,,,"304.000000","13457.000000",,,,,,,,,,,"4105.000000","503.000000","575.000000","522.000000","633.000000","847.000000","715.000000","0.000000","0.000000","0.000000","431.000000","493.000000","440.000000","532.000000","683.000000","538.000000","160.000000","6000.000000",,"8962794.000000",,,,, -"16891.000000","61.175000","16891.000000","61.175000","16891.000000","61.175000",,,,,,,,,,,,,,"54.000000","11334.500000","10187.000000","47.000000","11334.500000","11334.500000",,,,,,,,,,,"6922464.000000","8491404.000000","478884.000000","0.000000","69895848.000000","0.000000","91110464.000000",,"3778240.000000","25226936.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000",,,,,,,,"308.000000","12119.000000",,,,,,,,,,,"4254.000000","507.000000","639.000000","538.000000","656.000000","847.000000","748.000000","0.000000","0.000000","0.000000","434.000000","533.000000","451.000000","538.000000","683.000000","573.000000","160.000000","6000.000000",,"8962814.000000",,,,, -"18270.000000","63.335000","18270.000000","63.335000","18270.000000","63.335000",,,,,,,,,,,,,,"161.000000","7375.000000","6204.000000","18.000000","7375.000000","7375.000000",,,,,,,,,,,"6649836.000000","8113636.000000","478884.000000","0.000000","69893040.000000","0.000000","91110464.000000",,"3778240.000000","25230328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000",,,,,,,,"301.000000","8083.000000",,,,,,,,,,,"4233.000000","515.000000","777.000000","565.000000","709.000000","934.000000","804.000000","0.000000","0.000000","0.000000","440.000000","620.000000","469.000000","556.000000","683.000000","641.000000","160.000000","6000.000000",,"8962834.000000",,,,, -"16695.000000","60.885000","16695.000000","60.885000","16695.000000","60.885000",,,,,,,,,,,,,,"125.000000","21957.000000","15282.000000","25.000000","21957.000000","21957.000000",,,,,,,,,,,"6922464.000000","8281408.000000","478884.000000","0.000000","69926028.000000","0.000000","91110464.000000",,"3778240.000000","25232844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000",,,,,,,,"10886.000000","17619.000000",,,,,,,,,,,"4171.000000","519.000000","750.000000","567.000000","715.000000","934.000000","804.000000","0.000000","0.000000","0.000000","442.000000","611.000000","473.000000","571.000000","681.000000","645.000000","160.000000","6000.000000",,"8962854.000000",,,,, -"16947.000000","61.360000","16947.000000","61.360000","16947.000000","61.360000",,,,,,,,,,,,,,"89.000000","34448.500000","29353.000000","83.000000","34448.500000","34448.500000",,,,,,,,,,,"6956768.000000","8322584.000000","478884.000000","0.000000","70083000.000000","0.000000","91185084.000000",,"3778240.000000","25150104.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000",,,,,,,,"7313.000000","32141.000000",,,,,,,,,,,"4213.000000","522.000000","762.000000","573.000000","728.000000","934.000000","804.000000","0.000000","0.000000","0.000000","445.000000","625.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962874.000000",,,,, -"14205.000000","57.140000","14205.000000","57.140000","14205.000000","57.140000",,,,,,,,,,,,,,"240.000000","29860.500000","28067.000000","259.000000","29860.500000","29860.500000",,,,,,,,,,,"6726080.000000","8154808.000000","478884.000000","0.000000","70233964.000000","0.000000","91313728.000000",,"3778240.000000","25035048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000",,,,,,,,"624.000000","30790.000000",,,,,,,,,,,"3947.000000","525.000000","676.000000","571.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","447.000000","564.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962894.000000",,,,, -"12501.000000","54.545000","12501.000000","54.545000","12501.000000","54.545000",,,,,,,,,,,,,,"212.000000","14022.000000","12148.000000","126.000000","14022.000000","14022.000000",,,,,,,,,,,"6747048.000000","8133832.000000","478884.000000","0.000000","70386032.000000","0.000000","91471928.000000",,"3778240.000000","25030632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000",,,,,,,,"931.000000","14752.000000",,,,,,,,,,,"3850.000000","526.000000","616.000000","575.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","448.000000","519.000000","486.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962914.000000",,,,, -"12721.000000","54.920000","12721.000000","54.920000","12721.000000","54.920000",,,,,,,,,,,,,,"102.000000","4926.000000","3563.000000","53.000000","4926.000000","4926.000000",,,,,,,,,,,"6160620.000000","7889808.000000","478884.000000","0.000000","70444560.000000","0.000000","91522104.000000",,"3778240.000000","25042348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000",,,,,,,,"248.000000","5937.000000",,,,,,,,,,,"3903.000000","526.000000","548.000000","577.000000","728.000000","665.000000","804.000000","0.000000","0.000000","0.000000","448.000000","465.000000","488.000000","573.000000","557.000000","667.000000","160.000000","6000.000000",,"8962934.000000",,,,, -"12852.000000","55.135000","12852.000000","55.135000","12852.000000","55.135000",,,,,,,,,,,,,,"55.000000","5003.000000","3805.000000","15.000000","5003.000000","5003.000000",,,,,,,,,,,"6663992.000000","8015704.000000","478884.000000","0.000000","70468960.000000","0.000000","91559512.000000",,"3778240.000000","24985180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000",,,,,,,,"194.000000","5951.000000",,,,,,,,,,,"3977.000000","527.000000","514.000000","579.000000","728.000000","585.000000","804.000000","0.000000","0.000000","0.000000","449.000000","449.000000","491.000000","573.000000","512.000000","667.000000","160.000000","6000.000000",,"8962954.000000",,,,, -"13105.000000","55.525000","13105.000000","55.525000","13105.000000","55.525000",,,,,,,,,,,,,,"66.000000","2945.000000","2879.000000","18.000000","2945.000000","2945.000000",,,,,,,,,,,"6716108.000000","8099892.000000","478884.000000","0.000000","70463412.000000","0.000000","91560776.000000",,"3778240.000000","24991108.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000",,,,,,,,"171.000000",,,,,,,,,,,,"3890.000000","530.000000","531.000000","584.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","459.000000","495.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962974.000000",,,,, -"12787.000000","55.040000","12787.000000","55.040000","12787.000000","55.040000",,,,,,,,,,,,,,"90.000000","5076.500000","4567.000000","21.000000","5076.500000","5076.500000",,,,,,,,,,,"7806840.000000","9218208.000000","478884.000000","0.000000","70479640.000000","0.000000","91561824.000000",,"3778240.000000","24998264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000",,,,,,,,"204.000000","5290.000000",,,,,,,,,,,"4013.000000","529.000000","525.000000","589.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","461.000000","500.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962994.000000",,,,, -"15735.000000","59.700000","15735.000000","59.700000","15735.000000","59.700000",,,,,,,,,,,,,,"109.000000","7774.500000","6573.000000","54.000000","7774.500000","7774.500000",,,,,,,,,,,"7513236.000000","8987520.000000","478884.000000","0.000000","70565956.000000","0.000000","91641952.000000",,"3778240.000000","25023052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000",,,,,,,,"232.000000","8633.000000",,,,,,,,,,,"3884.000000","535.000000","563.000000","603.000000","748.000000","793.000000","804.000000","0.000000","0.000000","0.000000","456.000000","494.000000","512.000000","581.000000","700.000000","681.000000","160.000000","6000.000000",,"8963014.000000",,,,, -"19420.000000","65.480000","19420.000000","65.480000","19420.000000","65.480000",,,,,,,,,,,,,,"312.000000","10633.000000","9107.000000","37.000000","10633.000000","10633.000000",,,,,,,,,,,"7429304.000000","8840672.000000","478884.000000","0.000000","70576332.000000","0.000000","91642416.000000",,"3778240.000000","25010532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000",,,,,,,,"562.000000","11284.000000",,,,,,,,,,,"4402.000000","544.000000","654.000000","625.000000","783.000000","909.000000","816.000000","0.000000","0.000000","0.000000","462.000000","562.000000","529.000000","609.000000","750.000000","683.000000","160.000000","6000.000000",,"8963034.000000",,,,, -"19856.000000","66.195000","19856.000000","66.195000","19856.000000","66.195000",,,,,,,,,,,,,,"341.000000","11153.500000","9602.000000","92.000000","11153.500000","11153.500000",,,,,,,,,,,"7135708.000000","8652240.000000","478884.000000","0.000000","70648244.000000","0.000000","91643440.000000",,"3778240.000000","25027172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000",,,,,,,,"584.000000","11778.000000",,,,,,,,,,,"4300.000000","556.000000","799.000000","655.000000","793.000000","1141.000000","905.000000","0.000000","0.000000","0.000000","469.000000","637.000000","544.000000","641.000000","759.000000","698.000000","160.000000","6000.000000",,"8963054.000000",,,,, -"21610.000000","68.950000","21610.000000","68.950000","21610.000000","68.950000",,,,,,,,,,,,,,"101.000000","14058.500000","13429.000000","12.000000","14058.500000","14058.500000",,,,,,,,,,,"6632396.000000","8295720.000000","478884.000000","0.000000","70662368.000000","0.000000","91643440.000000",,"3778240.000000","25018700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000",,,,,,,,"298.000000","14289.000000",,,,,,,,,,,"4482.000000","571.000000","1007.000000","707.000000","804.000000","1402.000000","1028.000000","0.000000","0.000000","0.000000","477.000000","736.000000","573.000000","667.000000","904.000000","750.000000","160.000000","6000.000000",,"8963074.000000",,,,, -"20061.000000","66.520000","20061.000000","66.520000","20061.000000","66.520000",,,,,,,,,,,,,,"46.000000","10445.000000","10186.000000","13.000000","10445.000000","10445.000000",,,,,,,,,,,"6716336.000000","8400636.000000","478884.000000","0.000000","70646660.000000","0.000000","91645016.000000",,"3778240.000000","25034532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000",,,,,,,,"176.000000","10481.000000",,,,,,,,,,,"4333.000000","575.000000","1073.000000","725.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","749.000000","580.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963094.000000",,,,, -"14279.000000","57.505000","14279.000000","57.505000","14279.000000","57.505000",,,,,,,,,,,,,,"113.000000","19248.500000","18693.000000","23.000000","19248.500000","19248.500000",,,,,,,,,,,"7055748.000000","8463552.000000","478884.000000","0.000000","70737636.000000","0.000000","91749072.000000",,"3778240.000000","25028972.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000",,,,,,,,"344.000000","19345.000000",,,,,,,,,,,"4016.000000","576.000000","956.000000","718.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","690.000000","576.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963114.000000",,,,, -"16080.000000","60.320000","16080.000000","60.320000","16080.000000","60.320000",,,,,,,,,,,,,,"122.000000","8354.500000","8023.000000","11.000000","8354.500000","8354.500000",,,,,,,,,,,"7076716.000000","8442576.000000","478884.000000","0.000000","70727172.000000","0.000000","91754600.000000",,"3778240.000000","25093300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000",,,,,,,,"239.000000","8324.000000",,,,,,,,,,,"4042.000000","578.000000","767.000000","705.000000","814.000000","1239.000000","1125.000000","0.000000","0.000000","0.000000","483.000000","599.000000","569.000000","681.000000","825.000000","759.000000","160.000000","6000.000000",,"8963134.000000",,,,, -"16797.000000","61.440000","16797.000000","61.440000","16797.000000","61.440000",,,,,,,,,,,,,,"109.000000","9881.500000","9511.000000","63.000000","9881.500000","9881.500000",,,,,,,,,,,"7013656.000000","8337568.000000","478884.000000","0.000000","70717152.000000","0.000000","91754452.000000",,"3778240.000000","25102092.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000",,,,,,,,"287.000000","9856.000000",,,,,,,,,,,"4094.000000","582.000000","659.000000","707.000000","816.000000","818.000000","1125.000000","0.000000","0.000000","0.000000","485.000000","556.000000","569.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963154.000000",,,,, -"16334.000000","60.710000","16334.000000","60.710000","16334.000000","60.710000",,,,,,,,,,,,,,"56.000000","10935.000000","10493.000000","5.000000","10935.000000","10935.000000",,,,,,,,,,,"7114176.000000","8749024.000000","478884.000000","0.000000","70712572.000000","0.000000","91756136.000000",,"3778240.000000","25055968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000",,,,,,,,"498.000000","10822.000000",,,,,,,,,,,"3979.000000","585.000000","713.000000","708.000000","818.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","486.000000","579.000000","566.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963174.000000",,,,, -"15386.000000","59.230000","15386.000000","59.230000","15386.000000","59.230000",,,,,,,,,,,,,,"40.000000","8124.500000","7884.000000","16.000000","8124.500000","8124.500000",,,,,,,,,,,"7554692.000000","9546056.000000","478884.000000","0.000000","70720116.000000","0.000000","91762900.000000",,"3778240.000000","25061316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000",,,,,,,,"151.000000","8173.000000",,,,,,,,,,,"3919.000000","591.000000","733.000000","717.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","489.000000","575.000000","571.000000","681.000000","639.000000","759.000000","160.000000","6000.000000",,"8963194.000000",,,,, -"15692.000000","59.715000","15692.000000","59.715000","15692.000000","59.715000",,,,,,,,,,,,,,"60.000000","10242.500000","10020.000000","9.000000","10242.500000","10242.500000",,,,,,,,,,,"7638576.000000","9650916.000000","478884.000000","0.000000","70731944.000000","0.000000","91794132.000000",,"3778240.000000","25011360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000",,,,,,,,"196.000000","10209.000000",,,,,,,,,,,"3927.000000","597.000000","745.000000","732.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","492.000000","564.000000","578.000000","681.000000","632.000000","759.000000","160.000000","6000.000000",,"8963214.000000",,,,, -"15214.000000","58.965000","15214.000000","58.965000","15214.000000","58.965000",,,,,,,,,,,,,,"53.000000","10876.500000","9266.000000","11.000000","10876.500000","10876.500000",,,,,,,,,,,"7261700.000000","9162608.000000","478884.000000","0.000000","70730840.000000","0.000000","91794132.000000",,"3778240.000000","24972668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000",,,,,,,,"2876.000000","9558.000000",,,,,,,,,,,"4191.000000","602.000000","714.000000","741.000000","820.000000","851.000000","1125.000000","0.000000","0.000000","0.000000","497.000000","565.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963234.000000",,,,, -"13902.000000","56.905000","13902.000000","56.905000","13902.000000","56.905000",,,,,,,,,,,,,,"72.000000","12629.000000","9636.000000","12.000000","12629.000000","12629.000000",,,,,,,,,,,"6821300.000000","8554432.000000","478884.000000","0.000000","70721112.000000","0.000000","91794132.000000",,"3778240.000000","25008160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000",,,,,,,,"5564.000000","9985.000000",,,,,,,,,,,"3906.000000","606.000000","659.000000","746.000000","820.000000","813.000000","1125.000000","0.000000","0.000000","0.000000","500.000000","536.000000","588.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963254.000000",,,,, -"12489.000000","54.715000","12489.000000","54.715000","12489.000000","54.715000",,,,,,,,,,,,,,"120.000000","15124.500000","13418.000000","17.000000","15124.500000","15124.500000",,,,,,,,,,,"6884444.000000","8575636.000000","478884.000000","0.000000","70775488.000000","0.000000","91853628.000000",,"3778240.000000","25018924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000",,,,,,,,"2953.000000","13757.000000",,,,,,,,,,,"3882.000000","609.000000","585.000000","743.000000","820.000000","743.000000","1125.000000","0.000000","0.000000","0.000000","502.000000","501.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963274.000000",,,,, -"13219.000000","55.905000","13219.000000","55.905000","13219.000000","55.905000",,,,,,,,,,,,,,"47.000000","9561.000000","9244.000000","25.000000","9561.000000","9561.000000",,,,,,,,,,,"6993132.000000","8736172.000000","478884.000000","0.000000","70859532.000000","0.000000","91953320.000000",,"3778240.000000","25061516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000",,,,,,,,"174.000000","9656.000000",,,,,,,,,,,"3774.000000","610.000000","537.000000","744.000000","820.000000","650.000000","1125.000000","0.000000","0.000000","0.000000","503.000000","455.000000","585.000000","681.000000","565.000000","759.000000","160.000000","6000.000000",,"8963294.000000",,,,, -"16321.000000","60.800000","16321.000000","60.800000","16321.000000","60.800000",,,,,,,,,,,,,,"144.000000","12688.000000","11503.000000","4.000000","12688.000000","12688.000000",,,,,,,,,,,"6636616.000000","8568400.000000","478884.000000","0.000000","70929072.000000","0.000000","92035680.000000",,"3778240.000000","25078016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000",,,,,,,,"358.000000","13370.000000",,,,,,,,,,,"4037.000000","621.000000","637.000000","760.000000","847.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","508.000000","497.000000","589.000000","681.000000","628.000000","759.000000","160.000000","6000.000000",,"8963314.000000",,,,, -"14767.000000","58.360000","14767.000000","58.360000","14767.000000","58.360000",,,,,,,,,,,,,,"54.000000","11711.000000","10897.000000","18.000000","11711.000000","11711.000000",,,,,,,,,,,"6699536.000000","8610340.000000","478884.000000","0.000000","70925852.000000","0.000000","92035680.000000",,"3778240.000000","25078700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000",,,,,,,,"294.000000","12176.000000",,,,,,,,,,,"3991.000000","627.000000","701.000000","753.000000","851.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","512.000000","530.000000","580.000000","681.000000","653.000000","759.000000","160.000000","6000.000000",,"8963334.000000",,,,, -"14464.000000","57.885000","14464.000000","57.885000","14464.000000","57.885000",,,,,,,,,,,,,,"379.000000","13414.500000","12782.000000","3.000000","13414.500000","13414.500000",,,,,,,,,,,"6483668.000000","8447476.000000","478884.000000","0.000000","70923980.000000","0.000000","92036412.000000",,"3778240.000000","25045744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000",,,,,,,,"582.000000","13085.000000",,,,,,,,,,,"3850.000000","631.000000","726.000000","729.000000","851.000000","972.000000","1028.000000","0.000000","0.000000","0.000000","514.000000","546.000000","567.000000","681.000000","653.000000","723.000000","160.000000","6000.000000",,"8963354.000000",,,,, -"20036.000000","66.610000","20036.000000","66.610000","20036.000000","66.610000",,,,,,,,,,,,,,"33.000000","10495.500000","10286.000000","27.000000","10495.500000","10495.500000",,,,,,,,,,,"6399328.000000","7754972.000000","478884.000000","0.000000","70909332.000000","0.000000","92035680.000000",,"3778240.000000","25034008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000",,,,,,,,"166.000000","10504.000000",,,,,,,,,,,"4083.000000","651.000000","885.000000","736.000000","905.000000","1713.000000","972.000000","0.000000","0.000000","0.000000","522.000000","593.000000","560.000000","683.000000","837.000000","676.000000","160.000000","6000.000000",,"8963374.000000",,,,, -"14116.000000","57.330000","14116.000000","57.330000","14116.000000","57.330000",,,,,,,,,,,,,,"82.000000","9328.000000","9246.000000","7.000000","9328.000000","9328.000000",,,,,,,,,,,"6231708.000000","7650264.000000","478884.000000","0.000000","70903772.000000","0.000000","92035832.000000",,"3778240.000000","25040488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000",,,,,,,,"207.000000",,,,,,,,,,,,"3915.000000","651.000000","838.000000","706.000000","905.000000","1713.000000","860.000000","0.000000","0.000000","0.000000","522.000000","583.000000","547.000000","683.000000","837.000000","653.000000","160.000000","6000.000000",,"8963394.000000",,,,, -"19335.000000","65.510000","19335.000000","65.510000","19335.000000","65.510000",,,,,,,,,,,,,,"35.000000","7945.500000","7728.000000","16.000000","7945.500000","7945.500000",,,,,,,,,,,"6105880.000000","7524436.000000","478884.000000","0.000000","70912960.000000","0.000000","92035832.000000",,"3778240.000000","25115360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000",,,,,,,,"166.000000","7961.000000",,,,,,,,,,,"4159.000000","660.000000","936.000000","725.000000","934.000000","1713.000000","959.000000","0.000000","0.000000","0.000000","527.000000","622.000000","553.000000","687.000000","837.000000","667.000000","160.000000","6000.000000",,"8963414.000000",,,,, -"21196.000000","68.420000","21196.000000","68.420000","21196.000000","68.420000",,,,,,,,,,,,,,"125.000000","7995.000000","7737.000000","4.000000","7995.000000","7995.000000",,,,,,,,,,,"5986960.000000","7909116.000000","478884.000000","0.000000","70902656.000000","0.000000","92035832.000000",,"3778240.000000","25073920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000",,,,,,,,"231.000000","7896.000000",,,,,,,,,,,"4312.000000","682.000000","966.000000","776.000000","988.000000","1559.000000","1243.000000","0.000000","0.000000","0.000000","536.000000","654.000000","571.000000","702.000000","858.000000","725.000000","160.000000","6000.000000",,"8963434.000000",,,,, -"21659.000000","69.145000","21659.000000","69.145000","21659.000000","69.145000",,,,,,,,,,,,,,"41.000000","5788.000000","5588.000000","6.000000","5788.000000","5788.000000",,,,,,,,,,,"6070848.000000","8195528.000000","478884.000000","0.000000","70906016.000000","0.000000","92035832.000000",,"3778240.000000","25068612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000",,,,,,,,"137.000000","5809.000000",,,,,,,,,,,"4505.000000","693.000000","1158.000000","806.000000","1102.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","542.000000","739.000000","583.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963454.000000",,,,, -"19037.000000","65.035000","19037.000000","65.035000","19037.000000","65.035000",,,,,,,,,,,,,,"100.000000","10284.500000","9876.000000","33.000000","10284.500000","10284.500000",,,,,,,,,,,"6315304.000000","8335136.000000","478884.000000","0.000000","70891916.000000","0.000000","92035832.000000",,"3778240.000000","25007892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000",,,,,,,,"529.000000","10062.000000",,,,,,,,,,,"4122.000000","703.000000","1224.000000","827.000000","1135.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","546.000000","761.000000","590.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963474.000000",,,,, -"17504.000000","62.615000","17504.000000","62.615000","17504.000000","62.615000",,,,,,,,,,,,,,"41.000000","7695.000000","7423.000000","14.000000","7695.000000","7695.000000",,,,,,,,,,,"5797908.000000","7859392.000000","478884.000000","0.000000","70866880.000000","0.000000","92035832.000000",,"3778240.000000","25171964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000",,,,,,,,"167.000000","7757.000000",,,,,,,,,,,"4114.000000","708.000000","1033.000000","836.000000","1135.000000","1259.000000","1259.000000","0.000000","0.000000","0.000000","549.000000","698.000000","596.000000","725.000000","815.000000","807.000000","160.000000","6000.000000",,"8963494.000000",,,,, -"14229.000000","57.485000","14229.000000","57.485000","14229.000000","57.485000",,,,,,,,,,,,,,"41.000000","5376.000000","5241.000000","45.000000","5376.000000","5376.000000",,,,,,,,,,,"5797704.000000","7922104.000000","478884.000000","0.000000","70850888.000000","0.000000","92035632.000000",,"3778240.000000","25186488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000",,,,,,,,"131.000000","5337.000000",,,,,,,,,,,"3919.000000","711.000000","846.000000","826.000000","1135.000000","1216.000000","1259.000000","0.000000","0.000000","0.000000","552.000000","610.000000","593.000000","725.000000","721.000000","807.000000","160.000000","6000.000000",,"8963514.000000",,,,, -"14547.000000","57.980000","14547.000000","57.980000","14547.000000","57.980000",,,,,,,,,,,,,,"40.000000","8692.500000","8326.000000","7.000000","8692.500000","8692.500000",,,,,,,,,,,"5734792.000000","7901132.000000","478884.000000","0.000000","70856632.000000","0.000000","92035632.000000",,"3778240.000000","25235760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000",,,,,,,,"328.000000","8690.000000",,,,,,,,,,,"3881.000000","713.000000","680.000000","821.000000","1135.000000","888.000000","1259.000000","0.000000","0.000000","0.000000","554.000000","554.000000","588.000000","725.000000","668.000000","807.000000","160.000000","6000.000000",,"8963534.000000",,,,, -"13098.000000","55.705000","13098.000000","55.705000","13098.000000","55.705000",,,,,,,,,,,,,,"38.000000","9513.500000","9122.000000","19.000000","9513.500000","9513.500000",,,,,,,,,,,"5916388.000000","7978176.000000","478884.000000","0.000000","70838960.000000","0.000000","92035680.000000",,"3778240.000000","25215464.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000",,,,,,,,"400.000000","9467.000000",,,,,,,,,,,"3935.000000","714.000000","571.000000","819.000000","1135.000000","635.000000","1259.000000","0.000000","0.000000","0.000000","556.000000","497.000000","588.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963554.000000",,,,, -"13222.000000","55.895000","13222.000000","55.895000","13222.000000","55.895000",,,,,,,,,,,,,,"39.000000","8136.000000","7299.000000","28.000000","8136.000000","8136.000000",,,,,,,,,,,"5832504.000000","7768456.000000","478884.000000","0.000000","70835528.000000","0.000000","92035680.000000",,"3778240.000000","25217776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000",,,,,,,,"224.000000","8710.000000",,,,,,,,,,,"3887.000000","716.000000","559.000000","820.000000","1135.000000","630.000000","1259.000000","0.000000","0.000000","0.000000","557.000000","489.000000","590.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963574.000000",,,,, -"14124.000000","57.310000","14124.000000","57.310000","14124.000000","57.310000",,,,,,,,,,,,,,"48.000000","7765.000000","6725.000000","25.000000","7765.000000","7765.000000",,,,,,,,,,,"6189016.000000","7999140.000000","478884.000000","0.000000","70833580.000000","0.000000","92035680.000000",,"3778240.000000","25239908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000",,,,,,,,"273.000000","8483.000000",,,,,,,,,,,"4018.000000","720.000000","564.000000","826.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","560.000000","483.000000","593.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963594.000000",,,,, -"12669.000000","55.025000","12669.000000","55.025000","12669.000000","55.025000",,,,,,,,,,,,,,"40.000000","6177.000000","5955.000000","4.000000","6177.000000","6177.000000",,,,,,,,,,,"6140188.000000","8208864.000000","478884.000000","0.000000","70826080.000000","0.000000","92035680.000000",,"3778240.000000","25245584.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000",,,,,,,,"143.000000","6215.000000",,,,,,,,,,,"3813.000000","723.000000","570.000000","805.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","561.000000","475.000000","583.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963614.000000",,,,, -"13176.000000","55.815000","13176.000000","55.815000","13176.000000","55.815000",,,,,,,,,,,,,,"99.000000","9337.500000","9126.000000","23.000000","9337.500000","9337.500000",,,,,,,,,,,"6119224.000000","8145960.000000","478884.000000","0.000000","70813256.000000","0.000000","92035688.000000",,"3778240.000000","25258224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000",,,,,,,,"173.000000","9277.000000",,,,,,,,,,,"3855.000000","724.000000","570.000000","794.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","562.000000","471.000000","578.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963634.000000",,,,, -"14110.000000","57.270000","14110.000000","57.270000","14110.000000","57.270000",,,,,,,,,,,,,,"368.000000","14582.000000","13897.000000","10.000000","14582.000000","14582.000000",,,,,,,,,,,"5846600.000000","7873336.000000","478884.000000","0.000000","70806552.000000","0.000000","92035688.000000",,"3778240.000000","25262116.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000",,,,,,,,"570.000000","14328.000000",,,,,,,,,,,"3924.000000","726.000000","566.000000","794.000000","1135.000000","725.000000","1259.000000","0.000000","0.000000","0.000000","563.000000","475.000000","579.000000","725.000000","528.000000","807.000000","160.000000","6000.000000",,"8963654.000000",,,,, -"15180.000000","58.945000","15180.000000","58.945000","15180.000000","58.945000",,,,,,,,,,,,,,"119.000000","14077.000000","13670.000000","12.000000","14077.000000","14077.000000",,,,,,,,,,,"6063200.000000","7726220.000000","478884.000000","0.000000","70790912.000000","0.000000","92035688.000000",,"3778240.000000","25314268.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000",,,,,,,,"298.000000","14066.000000",,,,,,,,,,,"3999.000000","732.000000","618.000000","752.000000","1135.000000","825.000000","1243.000000","0.000000","0.000000","0.000000","566.000000","506.000000","566.000000","725.000000","618.000000","777.000000","160.000000","6000.000000",,"8963674.000000",,,,, -"17514.000000","62.615000","17514.000000","62.615000","17514.000000","62.615000",,,,,,,,,,,,,,"308.000000","10700.500000","10145.000000","25.000000","10700.500000","10700.500000",,,,,,,,,,,"6335832.000000","8292448.000000","478884.000000","0.000000","70822340.000000","0.000000","92036712.000000",,"3778240.000000","25238188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000",,,,,,,,"450.000000","10497.000000",,,,,,,,,,,"3909.000000","734.000000","718.000000","770.000000","1135.000000","1108.000000","1243.000000","0.000000","0.000000","0.000000","567.000000","556.000000","573.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963694.000000",,,,, -"14837.000000","58.445000","14837.000000","58.445000","14837.000000","58.445000",,,,,,,,,,,,,,"238.000000","14732.500000","14303.000000","41.000000","14732.500000","14732.500000",,,,,,,,,,,"6148216.000000","8105116.000000","478884.000000","0.000000","70867608.000000","0.000000","92037840.000000",,"3778240.000000","25232836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000",,,,,,,,"368.000000","14556.000000",,,,,,,,,,,"4171.000000","734.000000","762.000000","759.000000","1135.000000","1108.000000","1216.000000","0.000000","0.000000","0.000000","566.000000","572.000000","569.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963714.000000",,,,, -"14620.000000","58.110000","14620.000000","58.110000","14620.000000","58.110000",,,,,,,,,,,,,,"119.000000","9540.500000","9142.000000","31.000000","9540.500000","9540.500000",,,,,,,,,,,"6454456.000000","8250784.000000","478884.000000","0.000000","70884844.000000","0.000000","92036704.000000",,"3778240.000000","25222252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000",,,,,,,,"293.000000","9526.000000",,,,,,,,,,,"3909.000000","729.000000","731.000000","705.000000","1135.000000","1108.000000","1135.000000","0.000000","0.000000","0.000000","562.000000","556.000000","546.000000","725.000000","705.000000","716.000000","160.000000","6000.000000",,"8963734.000000",,,,, -"13115.000000","55.760000","13115.000000","55.760000","13115.000000","55.760000",,,,,,,,,,,,,,"55.000000","9905.000000","9411.000000","30.000000","9905.000000","9905.000000",,,,,,,,,,,"6397208.000000","8102568.000000","478884.000000","0.000000","70901164.000000","0.000000","92031908.000000",,"3778240.000000","25155008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000",,,,,,,,"556.000000","9788.000000",,,,,,,,,,,"3892.000000","726.000000","635.000000","665.000000","1135.000000","952.000000","952.000000","0.000000","0.000000","0.000000","560.000000","505.000000","526.000000","725.000000","617.000000","668.000000","160.000000","6000.000000",,"8963754.000000",,,,, -"13643.000000","56.595000","13643.000000","56.595000","13643.000000","56.595000",,,,,,,,,,,,,,"117.000000","9112.000000","8777.000000","49.000000","9112.000000","9112.000000",,,,,,,,,,,"5893892.000000","7473424.000000","478884.000000","0.000000","70908124.000000","0.000000","92031908.000000",,"3778240.000000","25155616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000",,,,,,,,"260.000000","9068.000000",,,,,,,,,,,"3843.000000","722.000000","575.000000","629.000000","1135.000000","653.000000","872.000000","0.000000","0.000000","0.000000","556.000000","474.000000","512.000000","725.000000","537.000000","644.000000","160.000000","6000.000000",,"8963774.000000",,,,, -"13715.000000","56.715000","13715.000000","56.715000","13715.000000","56.715000",,,,,,,,,,,,,,"46.000000","7845.000000","7588.000000","177.000000","7845.000000","7845.000000",,,,,,,,,,,"5873064.000000","7410656.000000","478884.000000","0.000000","70935908.000000","0.000000","92032052.000000",,"3778240.000000","25130180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000",,,,,,,,"176.000000","7879.000000",,,,,,,,,,,"3947.000000","722.000000","579.000000","614.000000","1135.000000","692.000000","825.000000","0.000000","0.000000","0.000000","556.000000","474.000000","502.000000","725.000000","520.000000","617.000000","160.000000","6000.000000",,"8963794.000000",,,,, -"14262.000000","57.585000","14262.000000","57.585000","14262.000000","57.585000",,,,,,,,,,,,,,"13654.000000","37151.000000","23496.000000","20.000000","37151.000000","37151.000000",,,,,,,,,,,"6319860.000000","7955020.000000","478884.000000","0.000000","70950068.000000","0.000000","92032056.000000",,"3778240.000000","25117712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000",,,,,,,,"13939.000000",,,,,,,,,,,,"3991.000000","725.000000","598.000000","616.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","557.000000","484.000000","501.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963814.000000",,,,, -"13501.000000","56.390000","13501.000000","56.390000","13501.000000","56.390000",,,,,,,,,,,,,,"1486.000000","20323.000000","17417.000000","13.000000","20323.000000","20323.000000",,,,,,,,,,,"6277896.000000","8185684.000000","478884.000000","0.000000","70940056.000000","0.000000","92032036.000000",,"3778240.000000","25166424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000",,,,,,,,"1897.000000","19846.000000",,,,,,,,,,,"3840.000000","726.000000","616.000000","617.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","558.000000","492.000000","499.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963834.000000",,,,, -"15948.000000","60.215000","15948.000000","60.215000","15948.000000","60.215000",,,,,,,,,,,,,,"921.000000","17901.500000","14732.000000","49.000000","17901.500000","17901.500000",,,,,,,,,,,"6340812.000000","8584140.000000","478884.000000","0.000000","70929596.000000","0.000000","92032036.000000",,"3778240.000000","25139064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000",,,,,,,,"3897.000000","16251.000000",,,,,,,,,,,"3906.000000","732.000000","667.000000","633.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","561.000000","519.000000","506.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963854.000000",,,,, -"14827.000000","58.455000","14827.000000","58.455000","14827.000000","58.455000",,,,,,,,,,,,,,"123.000000","40355.000000","29535.000000","60.000000","40355.000000","40355.000000",,,,,,,,,,,"6725944.000000","9147400.000000","478884.000000","0.000000","70927596.000000","0.000000","92031936.000000",,"3778240.000000","25141984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000",,,,,,,,"20816.000000","30235.000000",,,,,,,,,,,"4002.000000","734.000000","676.000000","639.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","562.000000","528.000000","509.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963874.000000",,,,, -"17543.000000","62.715000","17543.000000","62.715000","17543.000000","62.715000",,,,,,,,,,,,,,"66.000000","44525.000000","39332.000000","44.000000","44525.000000","44525.000000",,,,,,,,,,,"7103436.000000","9336144.000000","478884.000000","0.000000","70933556.000000","0.000000","92031936.000000",,"3778240.000000","25134460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000",,,,,,,,"9775.000000","39875.000000",,,,,,,,,,,"4138.000000","741.000000","746.000000","653.000000","1135.000000","879.000000","877.000000","0.000000","0.000000","0.000000","565.000000","574.000000","518.000000","725.000000","688.000000","621.000000","160.000000","6000.000000",,"8963894.000000",,,,, -"16932.000000","61.760000","16932.000000","61.760000","16932.000000","61.760000",,,,,,,,,,,,,,"121.000000","41506.000000","34277.000000","47.000000","41506.000000","41506.000000",,,,,,,,,,,"7816464.000000","9734600.000000","478884.000000","0.000000","70937756.000000","0.000000","92031936.000000",,"3778240.000000","25113644.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000",,,,,,,,"13748.000000","34865.000000",,,,,,,,,,,"4017.000000","744.000000","738.000000","667.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","567.000000","588.000000","529.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963914.000000",,,,, -"17260.000000","62.270000","17260.000000","62.270000","17260.000000","62.270000",,,,,,,,,,,,,,"5112.000000","34096.000000","27104.000000","15.000000","34096.000000","34096.000000",,,,,,,,,,,"8445160.000000","10768600.000000","478884.000000","0.000000","70930596.000000","0.000000","92031936.000000",,"3778240.000000","25121492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000",,,,,,,,"8814.000000","27160.000000",,,,,,,,,,,"4354.000000","742.000000","763.000000","678.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","565.000000","614.000000","537.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963934.000000",,,,, -"16146.000000","60.525000","16146.000000","60.525000","16146.000000","60.525000",,,,,,,,,,,,,,"1077.000000","13145.500000","11650.000000","11.000000","13145.500000","13145.500000",,,,,,,,,,,"7795040.000000","10097512.000000","478884.000000","0.000000","70928112.000000","0.000000","92031936.000000",,"3778240.000000","25009480.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000",,,,,,,,"1188.000000","12376.000000",,,,,,,,,,,"4030.000000","738.000000","751.000000","690.000000","1125.000000","968.000000","901.000000","0.000000","0.000000","0.000000","563.000000","606.000000","544.000000","723.000000","725.000000","666.000000","160.000000","6000.000000",,"8963954.000000",,,,, -"19704.000000","66.095000","19704.000000","66.095000","19704.000000","66.095000",,,,,,,,,,,,,,"183.000000","13959.000000","13550.000000","24.000000","13959.000000","13959.000000",,,,,,,,,,,"7585324.000000","9887512.000000","478884.000000","0.000000","70925516.000000","0.000000","92031936.000000",,"3778240.000000","25002896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000",,,,,,,,"338.000000","13846.000000",,,,,,,,,,,"4160.000000","735.000000","865.000000","716.000000","1135.000000","1344.000000","963.000000","0.000000","0.000000","0.000000","561.000000","640.000000","556.000000","721.000000","776.000000","696.000000","160.000000","6000.000000",,"8963974.000000",,,,, -"19188.000000","65.280000","19188.000000","65.280000","19188.000000","65.280000",,,,,,,,,,,,,,"243.000000","13792.500000","13334.000000","32.000000","13792.500000","13792.500000",,,,,,,,,,,"7446388.000000","9825624.000000","478884.000000","0.000000","70915720.000000","0.000000","92032060.000000",,"3778240.000000","25011560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000",,,,,,,,"404.000000","13604.000000",,,,,,,,,,,"4178.000000","734.000000","959.000000","726.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","560.000000","663.000000","559.000000","717.000000","776.000000","717.000000","160.000000","6000.000000",,"8963994.000000",,,,, -"18836.000000","64.725000","18836.000000","64.725000","18836.000000","64.725000",,,,,,,,,,,,,,"94.000000","6398.000000","6303.000000","17.000000","6398.000000","6398.000000",,,,,,,,,,,"7656100.000000","9993400.000000","478884.000000","0.000000","70902764.000000","0.000000","92032060.000000",,"3778240.000000","24972208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000",,,,,,,,"199.000000",,,,,,,,,,,,"4105.000000","740.000000","996.000000","737.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","563.000000","687.000000","567.000000","721.000000","776.000000","725.000000","160.000000","6000.000000",,"8964014.000000",,,,, -"22218.000000","70.015000","22218.000000","70.015000","22218.000000","70.015000",,,,,,,,,,,,,,"144.000000","7090.500000","6813.000000","14.000000","7090.500000","7090.500000",,,,,,,,,,,"7781932.000000","10077288.000000","478884.000000","0.000000","70893544.000000","0.000000","92032060.000000",,"3778240.000000","25030524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000",,,,,,,,"240.000000","6983.000000",,,,,,,,,,,"4464.000000","751.000000","1011.000000","772.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","569.000000","725.000000","589.000000","725.000000","867.000000","764.000000","160.000000","6000.000000",,"8964034.000000",,,,, -"20862.000000","67.895000","20862.000000","67.895000","20862.000000","67.895000",,,,,,,,,,,,,,"141.000000","10370.500000","9803.000000","21.000000","10370.500000","10370.500000",,,,,,,,,,,"7838008.000000","9958748.000000","478884.000000","0.000000","70895844.000000","0.000000","92032060.000000",,"3778240.000000","25025008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000",,,,,,,,"636.000000","10159.000000",,,,,,,,,,,"4256.000000","758.000000","1024.000000","804.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","572.000000","742.000000","606.000000","733.000000","867.000000","776.000000","160.000000","6000.000000",,"8964054.000000",,,,, -"21777.000000","69.325000","21777.000000","69.325000","21777.000000","69.325000",,,,,,,,,,,,,,"43.000000","9099.500000","8565.000000","13.000000","9099.500000","9099.500000",,,,,,,,,,,"8089668.000000","10231372.000000","478884.000000","0.000000","70891416.000000","0.000000","92032060.000000",,"3778240.000000","25096832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000",,,,,,,,"212.000000","9378.000000",,,,,,,,,,,"4405.000000","768.000000","1121.000000","846.000000","1203.000000","1473.000000","1216.000000","0.000000","0.000000","0.000000","576.000000","772.000000","626.000000","754.000000","873.000000","790.000000","160.000000","6000.000000",,"8964074.000000",,,,, -"19644.000000","65.985000","19644.000000","65.985000","19644.000000","65.985000",,,,,,,,,,,,,,"52.000000","8491.000000","7533.000000","16.000000","8491.000000","8491.000000",,,,,,,,,,,"8120428.000000","10419992.000000","478884.000000","0.000000","70892932.000000","0.000000","92031940.000000",,"3778240.000000","25209924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000",,,,,,,,"265.000000","9131.000000",,,,,,,,,,,"4217.000000","781.000000","1184.000000","893.000000","1216.000000","1569.000000","1301.000000","0.000000","0.000000","0.000000","581.000000","750.000000","645.000000","764.000000","873.000000","790.000000","160.000000","6000.000000",,"8964094.000000",,,,, -"20739.000000","67.695000","20739.000000","67.695000","20739.000000","67.695000",,,,,,,,,,,,,,"115.000000","10309.500000","9713.000000","18.000000","10309.500000","10309.500000",,,,,,,,,,,"7952664.000000","10126400.000000","478884.000000","0.000000","70886184.000000","0.000000","92031948.000000",,"3778240.000000","25213944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000",,,,,,,,"229.000000","10561.000000",,,,,,,,,,,"4169.000000","794.000000","1285.000000","941.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","585.000000","757.000000","661.000000","776.000000","873.000000","806.000000","160.000000","6000.000000",,"8964114.000000",,,,, -"20059.000000","66.630000","20059.000000","66.630000","20059.000000","66.630000",,,,,,,,,,,,,,"261.000000","5702.000000","5267.000000","54.000000","5702.000000","5702.000000",,,,,,,,,,,"8021972.000000","10279592.000000","478884.000000","0.000000","70883292.000000","0.000000","92031948.000000",,"3778240.000000","25194920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000",,,,,,,,"347.000000","5528.000000",,,,,,,,,,,"4395.000000","799.000000","1183.000000","960.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","588.000000","739.000000","676.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964134.000000",,,,, -"18410.000000","64.040000","18410.000000","64.040000","18410.000000","64.040000",,,,,,,,,,,,,,"90.000000","4670.000000","4434.000000","13.000000","4670.000000","4670.000000",,,,,,,,,,,"8063916.000000","10237648.000000","478884.000000","0.000000","70866136.000000","0.000000","92031948.000000",,"3778240.000000","25120348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000",,,,,,,,"167.000000","4648.000000",,,,,,,,,,,"4008.000000","804.000000","1046.000000","965.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","590.000000","710.000000","682.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964154.000000",,,,, -"21531.000000","68.925000","21531.000000","68.925000","21531.000000","68.925000",,,,,,,,,,,,,,"90.000000","10544.000000","10264.000000","58.000000","10544.000000","10544.000000",,,,,,,,,,,"7980168.000000","9797384.000000","478880.000000","0.000000","70859644.000000","0.000000","92032092.000000",,"3778240.000000","25129472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000",,,,,,,,"221.000000","10512.000000",,,,,,,,,,,"4563.000000","818.000000","940.000000","994.000000","1243.000000","1149.000000","1344.000000","0.000000","0.000000","0.000000","600.000000","727.000000","701.000000","780.000000","897.000000","829.000000","160.000000","6000.000000",,"8964174.000000",,,,, -"20467.000000","67.250000","20467.000000","67.250000","20467.000000","67.250000",,,,,,,,,,,,,,"80.000000","8175.000000","7963.000000","21.000000","8175.000000","8175.000000",,,,,,,,,,,"8154780.000000","10048588.000000","478876.000000","0.000000","70844920.000000","0.000000","92032096.000000",,"3778240.000000","25209396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000",,,,,,,,"169.000000","8137.000000",,,,,,,,,,,"4307.000000","830.000000","1011.000000","1013.000000","1243.000000","1183.000000","1344.000000","0.000000","0.000000","0.000000","606.000000","736.000000","708.000000","790.000000","897.000000","840.000000","160.000000","6000.000000",,"8964194.000000",,,,, -"19949.000000","66.435000","19949.000000","66.435000","19949.000000","66.435000",,,,,,,,,,,,,,"62.000000","8879.000000","8616.000000","50.000000","8879.000000","8879.000000",,,,,,,,,,,"8354584.000000","10069564.000000","478872.000000","0.000000","70833168.000000","0.000000","92032100.000000",,"3778240.000000","25096136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000",,,,,,,,"173.000000","8906.000000",,,,,,,,,,,"4254.000000","840.000000","1127.000000","1048.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","610.000000","752.000000","717.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964214.000000",,,,, -"19000.000000","64.940000","19000.000000","64.940000","19000.000000","64.940000",,,,,,,,,,,,,,"241.000000","6321.000000","5988.000000","17.000000","6321.000000","6321.000000",,,,,,,,,,,"7914032.000000","9608040.000000","478872.000000","0.000000","70822068.000000","0.000000","92031948.000000",,"3778240.000000","25106076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000",,,,,,,,"321.000000","6092.000000",,,,,,,,,,,"4500.000000","844.000000","1088.000000","1059.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","613.000000","720.000000","722.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964234.000000",,,,, -"21752.000000","69.245000","21752.000000","69.245000","21752.000000","69.245000",,,,,,,,,,,,,,"389.000000","8987.000000","8411.000000","18.000000","8987.000000","8987.000000",,,,,,,,,,,"7858408.000000","9322184.000000","478872.000000","0.000000","70808924.000000","0.000000","92031948.000000",,"3778240.000000","25257144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000",,,,,,,,"461.000000","8712.000000",,,,,,,,,,,"4439.000000","859.000000","1154.000000","1093.000000","1301.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","619.000000","736.000000","734.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964254.000000",,,,, -"22130.000000","69.860000","22130.000000","69.860000","22130.000000","69.860000",,,,,,,,,,,,,,"158.000000","8859.500000","8578.000000","12.000000","8859.500000","8859.500000",,,,,,,,,,,"7648828.000000","9122516.000000","478872.000000","0.000000","70853280.000000","0.000000","92032084.000000",,"3778240.000000","25172468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000",,,,,,,,"276.000000","8707.000000",,,,,,,,,,,"4485.000000","855.000000","1199.000000","1108.000000","1259.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","620.000000","774.000000","742.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964274.000000",,,,, -"21468.000000","68.840000","21468.000000","68.840000","21468.000000","68.840000",,,,,,,,,,,,,,"152.000000","8904.000000","8624.000000","11.000000","8904.000000","8904.000000",,,,,,,,,,,"7921452.000000","9520972.000000","478868.000000","0.000000","70888072.000000","0.000000","92032088.000000",,"3778240.000000","25150448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000",,,,,,,,"253.000000","8778.000000",,,,,,,,,,,"4365.000000","884.000000","1437.000000","1155.000000","1333.000000","2103.000000","1569.000000","0.000000","0.000000","0.000000","627.000000","794.000000","748.000000","816.000000","876.000000","867.000000","160.000000","6000.000000",,"8964294.000000",,,,, -"21192.000000","68.420000","21192.000000","68.420000","21192.000000","68.420000",,,,,,,,,,,,,,"77.000000","8814.500000","8525.000000","21.000000","8814.500000","8814.500000",,,,,,,,,,,"8131168.000000","9646800.000000","478868.000000","0.000000","70913076.000000","0.000000","92032088.000000",,"3778240.000000","25131212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000",,,,,,,,"219.000000","8807.000000",,,,,,,,,,,"4506.000000","898.000000","1522.000000","1198.000000","1343.000000","2103.000000","1720.000000","0.000000","0.000000","0.000000","630.000000","789.000000","754.000000","817.000000","877.000000","873.000000","160.000000","6000.000000",,"8964314.000000",,,,, -"20942.000000","68.030000","20942.000000","68.030000","20942.000000","68.030000",,,,,,,,,,,,,,"166.000000","7981.000000","7624.000000","17.000000","7981.000000","7981.000000",,,,,,,,,,,"7801768.000000","9339076.000000","478868.000000","0.000000","70910056.000000","0.000000","92032088.000000",,"3778240.000000","25137272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000",,,,,,,,"218.000000","7954.000000",,,,,,,,,,,"4288.000000","908.000000","1713.000000","1246.000000","1410.000000","2103.000000","1971.000000","0.000000","0.000000","0.000000","629.000000","770.000000","751.000000","815.000000","877.000000","873.000000","160.000000","6000.000000",,"8964334.000000",,,,, -"18637.000000","64.405000","18637.000000","64.405000","18637.000000","64.405000",,,,,,,,,,,,,,"57.000000","9389.500000","8234.000000","67.000000","9389.500000","9389.500000",,,,,,,,,,,"7675964.000000","9213268.000000","478868.000000","0.000000","70879884.000000","0.000000","92032108.000000",,"3778240.000000","25145844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000",,,,,,,,"279.000000","10209.000000",,,,,,,,,,,"4161.000000","910.000000","1551.000000","1260.000000","1418.000000","2076.000000","1971.000000","0.000000","0.000000","0.000000","626.000000","732.000000","746.000000","806.000000","877.000000","873.000000","160.000000","6000.000000",,"8964354.000000",,,,, -"20313.000000","67.030000","20313.000000","67.030000","20313.000000","67.030000",,,,,,,,,,,,,,"123.000000","10104.000000","9114.000000","15.000000","10104.000000","10104.000000",,,,,,,,,,,"7990532.000000","9569780.000000","478868.000000","0.000000","70882516.000000","0.000000","92032108.000000",,"3778240.000000","25124596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000",,,,,,,,"652.000000","10318.000000",,,,,,,,,,,"4299.000000","912.000000","1433.000000","1261.000000","1434.000000","2013.000000","1971.000000","0.000000","0.000000","0.000000","627.000000","716.000000","743.000000","806.000000","793.000000","864.000000","160.000000","6000.000000",,"8964374.000000",,,,, -"21050.000000","68.190000","21050.000000","68.190000","21050.000000","68.190000",,,,,,,,,,,,,,"57.000000","8725.000000","8437.000000","34.000000","8725.000000","8725.000000",,,,,,,,,,,"8019488.000000","9857972.000000","478868.000000","0.000000","70889300.000000","0.000000","92032108.000000",,"3778240.000000","25188756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000",,,,,,,,"169.000000","8785.000000",,,,,,,,,,,"4361.000000","921.000000","1296.000000","1263.000000","1458.000000","1823.000000","1971.000000","0.000000","6.000000","0.000000","629.000000","721.000000","743.000000","806.000000","795.000000","864.000000","160.000000","6000.000000",,"8964394.000000",,,,, -"20051.000000","66.605000","20051.000000","66.605000","20051.000000","66.605000",,,,,,,,,,,,,,"313.000000","11101.500000","10773.000000","33.000000","11101.500000","11101.500000",,,,,,,,,,,"8355028.000000","9825936.000000","478868.000000","0.000000","70860328.000000","0.000000","92032108.000000",,"3778240.000000","25201640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000",,,,,,,,"364.000000","10752.000000",,,,,,,,,,,"4205.000000","943.000000","1340.000000","1271.000000","1474.000000","1613.000000","1971.000000","0.000000","6.000000","0.000000","634.000000","734.000000","741.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964414.000000",,,,, -"20459.000000","67.240000","20459.000000","67.240000","20459.000000","67.240000",,,,,,,,,,,,,,"77.000000","10129.000000","9866.000000","29.000000","10129.000000","10129.000000",,,,,,,,,,,"8480856.000000","9909828.000000","478868.000000","0.000000","70854752.000000","0.000000","92032108.000000",,"3778240.000000","25112980.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000",,,,,,,,"195.000000","10118.000000",,,,,,,,,,,"4338.000000","960.000000","1396.000000","1303.000000","1485.000000","1817.000000","1971.000000","0.000000","6.000000","0.000000","640.000000","743.000000","744.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964434.000000",,,,, -"19677.000000","66.020000","19677.000000","66.020000","19677.000000","66.020000",,,,,,,,,,,,,,"129.000000","7633.500000","7320.000000","25.000000","7633.500000","7633.500000",,,,,,,,,,,"8767452.000000","10126384.000000","478868.000000","0.000000","70860344.000000","0.000000","92032108.000000",,"3778240.000000","25069888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000",,,,,,,,"244.000000","7573.000000",,,,,,,,,,,"4221.000000","970.000000","1318.000000","1318.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","643.000000","725.000000","746.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964454.000000",,,,, -"22365.000000","70.230000","22365.000000","70.230000","22365.000000","70.230000",,,,,,,,,,,,,,"117.000000","9774.500000","9438.000000","12.000000","9774.500000","9774.500000",,,,,,,,,,,"9018908.000000","10524640.000000","478864.000000","0.000000","70848632.000000","0.000000","92031908.000000",,"3778240.000000","25080800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000",,,,,,,,"260.000000","9733.000000",,,,,,,,,,,"4517.000000","988.000000","1245.000000","1332.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","653.000000","761.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964474.000000",,,,, -"19796.000000","66.210000","19796.000000","66.210000","19796.000000","66.210000",,,,,,,,,,,,,,"66.000000","9739.500000","8481.000000","36.000000","9739.500000","9739.500000",,,,,,,,,,,"8955972.000000","10335872.000000","478860.000000","0.000000","70857604.000000","0.000000","92031888.000000",,"3778240.000000","25146856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000",,,,,,,,"302.000000","10630.000000",,,,,,,,,,,"4469.000000","1002.000000","1204.000000","1342.000000","1485.000000","1411.000000","1971.000000","0.000000","0.000000","0.000000","658.000000","757.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964494.000000",,,,, -"20903.000000","67.945000","20903.000000","67.945000","20903.000000","67.945000",,,,,,,,,,,,,,"127.000000","8302.000000","8174.000000","35.000000","8302.000000","8302.000000",,,,,,,,,,,"9270292.000000","10660380.000000","478856.000000","0.000000","70876908.000000","0.000000","92031916.000000",,"3778240.000000","25156168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000",,,,,,,,"333.000000",,,,,,,,,,,,"4319.000000","1019.000000","1219.000000","1343.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","665.000000","764.000000","750.000000","819.000000","848.000000","844.000000","160.000000","6000.000000",,"8964514.000000",,,,, -"19932.000000","66.420000","19932.000000","66.420000","19932.000000","66.420000",,,,,,,,,,,,,,"130.000000","7484.000000","7096.000000","22.000000","7484.000000","7484.000000",,,,,,,,,,,"9123604.000000","10904408.000000","478856.000000","0.000000","70862832.000000","0.000000","92032028.000000",,"3778240.000000","25169640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000",,,,,,,,"248.000000","7493.000000",,,,,,,,,,,"4278.000000","1030.000000","1199.000000","1354.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","670.000000","730.000000","750.000000","819.000000","844.000000","844.000000","160.000000","6000.000000",,"8964534.000000",,,,, -"22066.000000","69.760000","22066.000000","69.760000","22066.000000","69.760000",,,,,,,,,,,,,,"453.000000","10033.000000","9377.000000","15.000000","10033.000000","10033.000000",,,,,,,,,,,"9312344.000000","11051204.000000","478856.000000","0.000000","70851192.000000","0.000000","92032028.000000",,"3778240.000000","25177256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000",,,,,,,,"572.000000","9663.000000",,,,,,,,,,,"4662.000000","1044.000000","1189.000000","1349.000000","1549.000000","1620.000000","1971.000000","0.000000","0.000000","0.000000","676.000000","751.000000","751.000000","820.000000","930.000000","838.000000","160.000000","6000.000000",,"8964554.000000",,,,, -"22543.000000","70.500000","22543.000000","70.500000","22543.000000","70.500000",,,,,,,,,,,,,,"122.000000","8789.000000","8680.000000","49.000000","8789.000000","8789.000000",,,,,,,,,,,"9459144.000000","11104208.000000","478852.000000","0.000000","70841592.000000","0.000000","92032032.000000",,"3778240.000000","25179692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000",,,,,,,,"155.000000","8621.000000",,,,,,,,,,,"4537.000000","1066.000000","1373.000000","1391.000000","1554.000000","2227.000000","2023.000000","0.000000","0.000000","0.000000","680.000000","763.000000","752.000000","829.000000","930.000000","844.000000","160.000000","6000.000000",,"8964574.000000",,,,, -"23159.000000","71.470000","23159.000000","71.470000","23159.000000","71.470000",,,,,,,,,,,,,,"113.000000","9016.000000","8681.000000","32.000000","9016.000000","9016.000000",,,,,,,,,,,"9633748.000000","11167116.000000","478844.000000","0.000000","70849524.000000","0.000000","92032032.000000",,"3778240.000000","25174856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000",,,,,,,,"241.000000","8996.000000",,,,,,,,,,,"4491.000000","1092.000000","1646.000000","1396.000000","1620.000000","2227.000000","2013.000000","0.000000","0.000000","0.000000","688.000000","830.000000","758.000000","844.000000","932.000000","877.000000","160.000000","6000.000000",,"8964594.000000",,,,, -"21085.000000","68.230000","21085.000000","68.230000","21085.000000","68.230000",,,,,,,,,,,,,,"698.000000","9397.000000","8698.000000","115.000000","9397.000000","9397.000000",,,,,,,,,,,"9696664.000000","11188092.000000","478844.000000","0.000000","70870196.000000","0.000000","92032032.000000",,"3778240.000000","25168848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000",,,,,,,,"1357.000000",,,,,,,,,,,,"4520.000000","1111.000000","1761.000000","1397.000000","1720.000000","2227.000000","1971.000000","0.000000","0.000000","0.000000","693.000000","824.000000","758.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964614.000000",,,,, -"19118.000000","65.180000","19118.000000","65.180000","19118.000000","65.180000",,,,,,,,,,,,,,"568.000000","73948.000000","11791.000000","98.000000","73948.000000","73948.000000",,,,,,,,,,,"9738656.000000","11796032.000000","478844.000000","0.000000","70936452.000000","0.000000","92032084.000000",,"3778240.000000","25054504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000",,,,,,,,"4279.000000","131256.000000",,,,,,,,,,,"4160.000000","1125.000000","1469.000000","1356.000000","1720.000000","2039.000000","1923.000000","0.000000","0.000000","0.000000","698.000000","761.000000","752.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964634.000000",,,,, -"20650.000000","67.655000","20650.000000","67.655000","20650.000000","67.655000",,,,,,,,,,,,,,"524.000000","28227.000000","27702.000000","114.000000","28227.000000","28227.000000",,,,,,,,,,,"9466480.000000","11607744.000000","478844.000000","0.000000","71087800.000000","0.000000","92032084.000000",,"3778240.000000","24956988.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000",,,,,,,,"6370.000000",,,,,,,,,,,,"4477.000000","1136.000000","1287.000000","1343.000000","1720.000000","1923.000000","1923.000000","0.000000","0.000000","0.000000","703.000000","729.000000","757.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964654.000000",,,,, -"17769.000000","61.215000","17769.000000","61.215000","17769.000000","61.215000",,,,,,,,,,,,,,"306.000000","56962.500000","30038.000000","75.000000","56962.500000","56962.500000",,,,,,,,,,,"7243500.000000","9426704.000000","478844.000000","0.000000","67206604.000000","0.000000","87856740.000000",,"3623976.000000","24587332.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000",,,,,,,,"6320.000000","77260.000000",,,,,,,,,,,"4097.000000","1141.000000","1032.000000","1316.000000","1720.000000","1228.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","676.000000","750.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964674.000000",,,,, -"17412.000000","60.710000","17412.000000","60.710000","17412.000000","60.710000",,,,,,,,,,,,,,"43.000000","34630.500000","31058.000000","241.000000","34630.500000","34630.500000",,,,,,,,,,,"9130940.000000","11020540.000000","478844.000000","0.000000","67313532.000000","0.000000","87856740.000000",,"3623976.000000","24420768.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000",,,,,,,,"5671.000000","32488.000000",,,,,,,,,,,"4240.000000","1143.000000","907.000000","1280.000000","1720.000000","1160.000000","1923.000000","0.000000","0.000000","0.000000","709.000000","666.000000","742.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964694.000000",,,,, -"17492.000000","60.880000","17492.000000","60.880000","17492.000000","60.880000",,,,,,,,,,,,,,"49.000000","35413.500000","31294.000000","156.000000","35413.500000","35413.500000",,,,,,,,,,,"9101004.000000","10940512.000000","478844.000000","0.000000","67397008.000000","0.000000","87824020.000000",,"3623976.000000","24337056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000",,,,,,,,"7359.000000","32124.000000",,,,,,,,,,,"4298.000000","1146.000000","748.000000","1225.000000","1720.000000","885.000000","1923.000000","0.000000","0.000000","0.000000","712.000000","624.000000","735.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964714.000000",,,,, -"15765.000000","58.170000","15765.000000","58.170000","15765.000000","58.170000",,,,,,,,,,,,,,"45.000000","37097.000000","37051.000000","76.000000","37097.000000","37097.000000",,,,,,,,,,,"9381348.000000","11260768.000000","478844.000000","0.000000","67390668.000000","0.000000","87773120.000000",,"3623976.000000","24288384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000",,,,,,,,,,,,,,,,,,,,"4280.000000","1146.000000","695.000000","1176.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","607.000000","723.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964734.000000",,,,, -"16328.000000","59.055000","16328.000000","59.055000","16328.000000","59.055000",,,,,,,,,,,,,,"42.000000","30677.500000","23599.000000","39.000000","30677.500000","30677.500000",,,,,,,,,,,"10304092.000000","12048064.000000","478844.000000","0.000000","67399392.000000","0.000000","87773120.000000",,"3623976.000000","24296164.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000",,,,,,,,"13462.000000","24250.000000",,,,,,,,,,,"4406.000000","1145.000000","676.000000","1151.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","716.000000","610.000000","719.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964754.000000",,,,, -"13490.000000","54.630000","13490.000000","54.630000","13490.000000","54.630000",,,,,,,,,,,,,,"52.000000","31231.000000","28061.000000","22.000000","31231.000000","31231.000000",,,,,,,,,,,"10241176.000000","11775432.000000","478840.000000","0.000000","67436152.000000","0.000000","87773124.000000",,"3623976.000000","24261260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000",,,,,,,,"5631.000000","28717.000000",,,,,,,,,,,"3994.000000","1142.000000","622.000000","1101.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","553.000000","693.000000","845.000000","652.000000","887.000000","160.000000","6000.000000",,"8964774.000000",,,,, -"13003.000000","53.855000","13003.000000","53.855000","13003.000000","53.855000",,,,,,,,,,,,,,"37.000000","7612.500000","7456.000000","17.000000","7612.500000","7612.500000",,,,,,,,,,,"9802376.000000","11588052.000000","478840.000000","0.000000","67418396.000000","0.000000","87767220.000000",,"3623976.000000","24295180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000",,,,,,,,"122.000000","7610.000000",,,,,,,,,,,"4038.000000","1136.000000","592.000000","1054.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","711.000000","521.000000","676.000000","845.000000","633.000000","887.000000","160.000000","6000.000000",,"8964794.000000",,,,, -"14951.000000","56.915000","14951.000000","56.915000","14951.000000","56.915000",,,,,,,,,,,,,,"118.000000","5147.500000","4942.000000","16.000000","5147.500000","5147.500000",,,,,,,,,,,"10347632.000000","12100984.000000","478840.000000","0.000000","67428312.000000","0.000000","87767216.000000",,"3623976.000000","24263912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000",,,,,,,,"162.000000","5072.000000",,,,,,,,,,,"4029.000000","1135.000000","582.000000","1017.000000","1720.000000","763.000000","1923.000000","0.000000","0.000000","0.000000","710.000000","490.000000","662.000000","845.000000","578.000000","887.000000","160.000000","6000.000000",,"8964814.000000",,,,, -"15562.000000","57.855000","15562.000000","57.855000","15562.000000","57.855000",,,,,,,,,,,,,,"52.000000","7253.000000","7123.000000","13.000000","7253.000000","7253.000000",,,,,,,,,,,"10364188.000000","12116796.000000","478840.000000","0.000000","67399400.000000","0.000000","87748424.000000",,"3623976.000000","24275880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000",,,,,,,,"152.000000","7179.000000",,,,,,,,,,,"4157.000000","1133.000000","618.000000","984.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","514.000000","650.000000","845.000000","614.000000","887.000000","160.000000","6000.000000",,"8964834.000000",,,,, -"14436.000000","56.090000","14436.000000","56.090000","14436.000000","56.090000",,,,,,,,,,,,,,"439.000000","15222.500000","14492.000000","45.000000","15222.500000","15222.500000",,,,,,,,,,,"10131436.000000","11800156.000000","478840.000000","0.000000","67396496.000000","0.000000","87748424.000000",,"3623976.000000","24302552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000",,,,,,,,"586.000000","14927.000000",,,,,,,,,,,"4018.000000","1129.000000","649.000000","946.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","705.000000","526.000000","631.000000","845.000000","614.000000","845.000000","160.000000","6000.000000",,"8964854.000000",,,,, -"18777.000000","62.895000","18777.000000","62.895000","18777.000000","62.895000",,,,,,,,,,,,,,"494.000000","10767.500000","9618.000000","31.000000","10767.500000","10767.500000",,,,,,,,,,,"10466980.000000","11832196.000000","478840.000000","0.000000","67407620.000000","0.000000","87748424.000000",,"3623976.000000","24306748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000",,,,,,,,"698.000000","10723.000000",,,,,,,,,,,"4155.000000","1130.000000","749.000000","892.000000","1720.000000","1123.000000","1684.000000","0.000000","0.000000","0.000000","706.000000","578.000000","625.000000","845.000000","720.000000","793.000000","160.000000","6000.000000",,"8964874.000000",,,,, -"20174.000000","65.090000","20174.000000","65.090000","20174.000000","65.090000",,,,,,,,,,,,,,"1631.000000","31377.000000","28593.000000","46.000000","31377.000000","31377.000000",,,,,,,,,,,"10634892.000000","11874276.000000","478840.000000","0.000000","67418980.000000","0.000000","87748564.000000",,"3623976.000000","24295560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000",,,,,,,,"1993.000000","30537.000000",,,,,,,,,,,"4378.000000","1134.000000","978.000000","851.000000","1725.000000","1725.000000","1329.000000","0.000000","0.000000","0.000000","706.000000","643.000000","613.000000","845.000000","793.000000","782.000000","160.000000","6000.000000",,"8964894.000000",,,,, -"23433.000000","70.190000","23433.000000","70.190000","23433.000000","70.190000",,,,,,,,,,,,,,"81.000000","13906.500000","13331.000000","36.000000","13906.500000","13906.500000",,,,,,,,,,,"10491788.000000","11563400.000000","478840.000000","0.000000","67409532.000000","0.000000","87748564.000000",,"3623976.000000","24275560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000",,,,,,,,"269.000000","14131.000000",,,,,,,,,,,"4498.000000","1146.000000","1252.000000","844.000000","1725.000000","1725.000000","1421.000000","0.000000","0.000000","0.000000","708.000000","727.000000","612.000000","848.000000","861.000000","781.000000","160.000000","6000.000000",,"8964914.000000",,,,, -"22995.000000","69.505000","22995.000000","69.505000","22995.000000","69.505000",,,,,,,,,,,,,,"144.000000","11218.500000","10950.000000","41.000000","11218.500000","11218.500000",,,,,,,,,,,"10596648.000000","12055652.000000","478840.000000","0.000000","67411316.000000","0.000000","87748564.000000",,"3623976.000000","24277072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000",,,,,,,,"251.000000","11092.000000",,,,,,,,,,,"4808.000000","1153.000000","1398.000000","862.000000","1725.000000","1725.000000","1462.000000","0.000000","0.000000","0.000000","710.000000","800.000000","629.000000","854.000000","1011.000000","793.000000","160.000000","6000.000000",,"8964934.000000",,,,, -"22729.000000","69.080000","22729.000000","69.080000","22729.000000","69.080000",,,,,,,,,,,,,,"54.000000","12000.000000","11462.000000","23.000000","12000.000000","12000.000000",,,,,,,,,,,"10554548.000000","12076468.000000","478840.000000","0.000000","67402148.000000","0.000000","87748408.000000",,"3623976.000000","24286996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000",,,,,,,,"561.000000","11923.000000",,,,,,,,,,,"4521.000000","1166.000000","1505.000000","894.000000","1725.000000","1612.000000","1539.000000","0.000000","0.000000","0.000000","712.000000","829.000000","633.000000","861.000000","1011.000000","842.000000","160.000000","6000.000000",,"8964954.000000",,,,, -"22134.000000","68.145000","22134.000000","68.145000","22134.000000","68.145000",,,,,,,,,,,,,,"44.000000","9592.500000","9349.000000","16.000000","9592.500000","9592.500000",,,,,,,,,,,"10601900.000000","12305536.000000","478840.000000","0.000000","67393644.000000","0.000000","87744176.000000",,"3623976.000000","24297204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000",,,,,,,,"176.000000","9615.000000",,,,,,,,,,,"4423.000000","1172.000000","1501.000000","938.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","836.000000","644.000000","854.000000","1011.000000","852.000000","160.000000","6000.000000",,"8964974.000000",,,,, -"22793.000000","69.190000","22793.000000","69.190000","22793.000000","69.190000",,,,,,,,,,,,,,"117.000000","11742.500000","11529.000000","25.000000","11742.500000","11742.500000",,,,,,,,,,,"10307292.000000","12062776.000000","478840.000000","0.000000","67411228.000000","0.000000","87744316.000000",,"3623976.000000","24286000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000",,,,,,,,"222.000000","11616.000000",,,,,,,,,,,"4459.000000","1170.000000","1428.000000","966.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","795.000000","654.000000","861.000000","896.000000","861.000000","160.000000","6000.000000",,"8964994.000000",,,,, -"21547.000000","67.230000","21547.000000","67.230000","21547.000000","67.230000",,,,,,,,,,,,,,"156.000000","15739.500000","15346.000000","32.000000","15739.500000","15739.500000",,,,,,,,,,,"10244376.000000","12209576.000000","478840.000000","0.000000","67395176.000000","0.000000","87744316.000000",,"3623976.000000","24298520.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000",,,,,,,,"347.000000","15630.000000",,,,,,,,,,,"4706.000000","1165.000000","1263.000000","997.000000","1720.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","808.000000","670.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965014.000000",,,,, -"19386.000000","63.845000","19386.000000","63.845000","19386.000000","63.845000",,,,,,,,,,,,,,"2291.000000","12822.000000","10530.000000","10.000000","12822.000000","12822.000000",,,,,,,,,,,"8502588.000000","10515444.000000","478840.000000","0.000000","67399884.000000","0.000000","87745056.000000",,"3623976.000000","24296168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000",,,,,,,,"2307.000000",,,,,,,,,,,,"4290.000000","1166.000000","1107.000000","1020.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","779.000000","678.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965034.000000",,,,, -"20361.000000","65.380000","20361.000000","65.380000","20361.000000","65.380000",,,,,,,,,,,,,,"3888.000000","21597.000000","17326.000000","12.000000","21597.000000","21597.000000",,,,,,,,,,,"8417964.000000","10735480.000000","478840.000000","0.000000","67406404.000000","0.000000","87744316.000000",,"3623976.000000","24313248.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000",,,,,,,,"4286.000000","17693.000000",,,,,,,,,,,"4463.000000","1170.000000","1050.000000","1041.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","717.000000","760.000000","685.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965054.000000",,,,, -"18921.000000","63.110000","18921.000000","63.110000","18921.000000","63.110000",,,,,,,,,,,,,,"140.000000","22579.500000","22135.000000","27.000000","22579.500000","22579.500000",,,,,,,,,,,"8277608.000000","10484556.000000","478840.000000","0.000000","67394392.000000","0.000000","87745048.000000",,"3623976.000000","24325688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000",,,,,,,,"357.000000","22525.000000",,,,,,,,,,,"4327.000000","1165.000000","948.000000","1063.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","715.000000","702.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965074.000000",,,,, -"17829.000000","61.400000","17829.000000","61.400000","17829.000000","61.400000",,,,,,,,,,,,,,"66.000000","9963.000000","9682.000000","16.000000","9963.000000","9963.000000",,,,,,,,,,,"8844996.000000","10912760.000000","478840.000000","0.000000","67389520.000000","0.000000","87744316.000000",,"3623976.000000","24263572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000",,,,,,,,"208.000000","9969.000000",,,,,,,,,,,"4100.000000","1164.000000","977.000000","1097.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","695.000000","713.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965094.000000",,,,, -"19716.000000","64.355000","19716.000000","64.355000","19716.000000","64.355000",,,,,,,,,,,,,,"53.000000","11291.000000","10996.000000","32.000000","11291.000000","11291.000000",,,,,,,,,,,"8804016.000000","10473328.000000","478840.000000","0.000000","67381248.000000","0.000000","87744132.000000",,"3623976.000000","24313468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000",,,,,,,,"192.000000","11340.000000",,,,,,,,,,,"4287.000000","1163.000000","962.000000","1117.000000","1720.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","688.000000","724.000000","854.000000","839.000000","874.000000","160.000000","6000.000000",,"8965114.000000",,,,, -"19884.000000","64.610000","19884.000000","64.610000","19884.000000","64.610000",,,,,,,,,,,,,,"76.000000","12530.500000","11835.000000","12.000000","12530.500000","12530.500000",,,,,,,,,,,"8846148.000000","10725164.000000","478840.000000","0.000000","67364968.000000","0.000000","87744316.000000",,"3623976.000000","24327372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000",,,,,,,,"296.000000","12853.000000",,,,,,,,,,,"4321.000000","1161.000000","1025.000000","1144.000000","1704.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","686.000000","736.000000","852.000000","839.000000","874.000000","160.000000","6000.000000",,"8965134.000000",,,,, -"18343.000000","62.190000","18343.000000","62.190000","18343.000000","62.190000",,,,,,,,,,,,,,"393.000000","12405.000000","10930.000000","16.000000","12405.000000","12405.000000",,,,,,,,,,,"8821356.000000","10509732.000000","478840.000000","0.000000","67358224.000000","0.000000","87744316.000000",,"3623976.000000","24343916.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000",,,,,,,,"621.000000","12864.000000",,,,,,,,,,,"4289.000000","1152.000000","974.000000","1162.000000","1704.000000","1181.000000","1602.000000","0.000000","0.000000","0.000000","710.000000","700.000000","748.000000","845.000000","839.000000","874.000000","160.000000","6000.000000",,"8965154.000000",,,,, -"21580.000000","67.270000","21580.000000","67.270000","21580.000000","67.270000",,,,,,,,,,,,,,"54.000000","15714.000000","15232.000000","25.000000","15714.000000","15714.000000",,,,,,,,,,,"8674556.000000","10288956.000000","478840.000000","0.000000","67371276.000000","0.000000","87744316.000000",,"3623976.000000","24331708.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000",,,,,,,,"249.000000","15892.000000",,,,,,,,,,,"4329.000000","1156.000000","1091.000000","1186.000000","1704.000000","1645.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","705.000000","750.000000","845.000000","845.000000","874.000000","160.000000","6000.000000",,"8965174.000000",,,,, -"22989.000000","69.475000","22989.000000","69.475000","22989.000000","69.475000",,,,,,,,,,,,,,"72.000000","14572.500000","14316.000000","58.000000","14572.500000","14572.500000",,,,,,,,,,,"8422764.000000","9869396.000000","478840.000000","0.000000","67365784.000000","0.000000","87744184.000000",,"3623976.000000","24334948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000",,,,,,,,"218.000000","14537.000000",,,,,,,,,,,"4660.000000","1149.000000","1256.000000","1200.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","711.000000","769.000000","762.000000","861.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965194.000000",,,,, -"20178.000000","65.075000","20178.000000","65.075000","20178.000000","65.075000",,,,,,,,,,,,,,"56.000000","9925.000000","9680.000000","47.000000","9925.000000","9925.000000",,,,,,,,,,,"8632480.000000","9995220.000000","478840.000000","0.000000","67376492.000000","0.000000","87744184.000000",,"3623976.000000","24310516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000",,,,,,,,"191.000000","9921.000000",,,,,,,,,,,"4349.000000","1139.000000","1330.000000","1178.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","779.000000","758.000000","852.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965214.000000",,,,, -"22779.000000","69.145000","22779.000000","69.145000","22779.000000","69.145000",,,,,,,,,,,,,,"1318.000000","13088.000000","11585.000000","36.000000","13088.000000","13088.000000",,,,,,,,,,,"8678240.000000","10226676.000000","478840.000000","0.000000","67364876.000000","0.000000","87744184.000000",,"3623976.000000","24331416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000",,,,,,,,"1426.000000","11845.000000",,,,,,,,,,,"4427.000000","1137.000000","1425.000000","1191.000000","1684.000000","1970.000000","1686.000000","0.000000","0.000000","0.000000","711.000000","805.000000","751.000000","852.000000","1015.000000","884.000000","160.000000","6000.000000",,"8965234.000000",,,,, -"23124.000000","69.675000","23124.000000","69.675000","23124.000000","69.675000",,,,,,,,,,,,,,"9409.000000","23507.500000","13633.000000","9.000000","23507.500000","23507.500000",,,,,,,,,,,"8741152.000000","10289592.000000","478840.000000","0.000000","67347184.000000","0.000000","87744184.000000",,"3623976.000000","24345676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000",,,,,,,,"9979.000000","13992.000000",,,,,,,,,,,"4539.000000","1134.000000","1326.000000","1164.000000","1684.000000","1904.000000","1696.000000","0.000000","0.000000","0.000000","715.000000","798.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965254.000000",,,,, -"22362.000000","68.480000","22362.000000","68.480000","22362.000000","68.480000",,,,,,,,,,,,,,"3888.000000","27573.500000","23244.000000","32.000000","27573.500000","27573.500000",,,,,,,,,,,"8322880.000000","9955464.000000","478840.000000","0.000000","67334616.000000","0.000000","87749440.000000",,"3623976.000000","24389676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000",,,,,,,,"4271.000000","23742.000000",,,,,,,,,,,"4404.000000","1133.000000","1335.000000","1145.000000","1684.000000","1904.000000","1686.000000","0.000000","0.000000","0.000000","716.000000","822.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965274.000000",,,,, -"22521.000000","68.710000","22521.000000","68.710000","22521.000000","68.710000",,,,,,,,,,,,,,"2300.000000","17586.000000","15000.000000","20.000000","17586.000000","17586.000000",,,,,,,,,,,"8155104.000000","9753136.000000","478840.000000","0.000000","67306308.000000","0.000000","87749440.000000",,"3623976.000000","24364304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000",,,,,,,,"2508.000000","15363.000000",,,,,,,,,,,"4629.000000","1133.000000","1240.000000","1154.000000","1684.000000","1696.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","836.000000","759.000000","874.000000","956.000000","896.000000","160.000000","6000.000000",,"8965294.000000",,,,, -"21424.000000","66.990000","21424.000000","66.990000","21424.000000","66.990000",,,,,,,,,,,,,,"96.000000","22483.000000","22387.000000","51.000000","22483.000000","22483.000000",,,,,,,,,,,"7966224.000000","9794948.000000","478840.000000","0.000000","67294236.000000","0.000000","87749300.000000",,"3623976.000000","24378484.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000",,,,,,,,"313.000000",,,,,,,,,,,,"4353.000000","1125.000000","1204.000000","1152.000000","1684.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","720.000000","805.000000","755.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965314.000000",,,,, -"19240.000000","63.565000","19240.000000","63.565000","19240.000000","63.565000",,,,,,,,,,,,,,"524.000000","18280.000000","17320.000000","29.000000","18280.000000","18280.000000",,,,,,,,,,,"7631132.000000","9501804.000000","478840.000000","0.000000","67291652.000000","0.000000","87749756.000000",,"3623976.000000","24378604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000",,,,,,,,"1103.000000","17611.000000",,,,,,,,,,,"4192.000000","1118.000000","1179.000000","1159.000000","1645.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","776.000000","754.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965334.000000",,,,, -"22323.000000","68.390000","22323.000000","68.390000","22323.000000","68.390000",,,,,,,,,,,,,,"296.000000","18261.500000","17642.000000","39.000000","18261.500000","18261.500000",,,,,,,,,,,"7928092.000000","9597336.000000","478840.000000","0.000000","67291440.000000","0.000000","87749452.000000",,"3623976.000000","24413636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000",,,,,,,,"503.000000","18082.000000",,,,,,,,,,,"4619.000000","1119.000000","1109.000000","1166.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","721.000000","758.000000","758.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965354.000000",,,,, -"19720.000000","64.320000","19720.000000","64.320000","19720.000000","64.320000",,,,,,,,,,,,,,"321.000000","28277.500000","27665.000000","32.000000","28277.500000","28277.500000",,,,,,,,,,,"8200724.000000","9765100.000000","478840.000000","0.000000","67294692.000000","0.000000","87749452.000000",,"3623976.000000","24410136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000",,,,,,,,"591.000000","27977.000000",,,,,,,,,,,"4365.000000","1113.000000","1062.000000","1175.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","744.000000","761.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965374.000000",,,,, -"20325.000000","65.265000","20325.000000","65.265000","20325.000000","65.265000",,,,,,,,,,,,,,"191.000000","24800.000000","24248.000000","29.000000","24800.000000","24800.000000",,,,,,,,,,,"8200724.000000","9828012.000000","478840.000000","0.000000","67296340.000000","0.000000","87749452.000000",,"3623976.000000","24375032.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000",,,,,,,,"431.000000","24729.000000",,,,,,,,,,,"4367.000000","1107.000000","1033.000000","1170.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","759.000000","767.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965394.000000",,,,, -"20975.000000","66.285000","20975.000000","66.285000","20975.000000","66.285000",,,,,,,,,,,,,,"8745.000000","32989.000000","24039.000000","18.000000","32989.000000","32989.000000",,,,,,,,,,,"7541168.000000","9389708.000000","478840.000000","0.000000","67297880.000000","0.000000","87749452.000000",,"3623976.000000","24388360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000",,,,,,,,"8811.000000","24382.000000",,,,,,,,,,,"4194.000000","1105.000000","1035.000000","1180.000000","1645.000000","1231.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","740.000000","769.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965414.000000",,,,, -"20127.000000","64.945000","20127.000000","64.945000","20127.000000","64.945000",,,,,,,,,,,,,,"1583.000000","34497.000000","31214.000000","40.000000","34497.000000","34497.000000",,,,,,,,,,,"7447336.000000","9139156.000000","478840.000000","0.000000","67282040.000000","0.000000","87749416.000000",,"3623976.000000","24402028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000",,,,,,,,"2204.000000","33992.000000",,,,,,,,,,,"4462.000000","1103.000000","1060.000000","1182.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","737.000000","771.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965434.000000",,,,, -"20122.000000","64.935000","20122.000000","64.935000","20122.000000","64.935000",,,,,,,,,,,,,,"667.000000","25513.000000","24331.000000","32.000000","25513.000000","25513.000000",,,,,,,,,,,"7447388.000000","9118236.000000","478840.000000","0.000000","67269820.000000","0.000000","87749468.000000",,"3623976.000000","24433940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000",,,,,,,,"807.000000","25220.000000",,,,,,,,,,,"4429.000000","1101.000000","1096.000000","1195.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","735.000000","774.000000","874.000000","772.000000","896.000000","160.000000","6000.000000",,"8965454.000000",,,,, -"21932.000000","67.765000","21932.000000","67.765000","21932.000000","67.765000",,,,,,,,,,,,,,"1844.000000","16545.500000","14418.000000","19.000000","16545.500000","16545.500000",,,,,,,,,,,"7342528.000000","8866576.000000","478828.000000","0.000000","67263556.000000","0.000000","87749480.000000",,"3623976.000000","24414912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000",,,,,,,,"2126.000000","14702.000000",,,,,,,,,,,"4554.000000","1093.000000","1201.000000","1202.000000","1612.000000","2000.000000","1696.000000","0.000000","0.000000","0.000000","717.000000","746.000000","777.000000","874.000000","860.000000","896.000000","160.000000","6000.000000",,"8965474.000000",,,,, -"18947.000000","63.095000","18947.000000","63.095000","18947.000000","63.095000",,,,,,,,,,,,,,"7864.000000","36961.000000","29096.000000","69.000000","36961.000000","36961.000000",,,,,,,,,,,"7209360.000000","8908996.000000","478828.000000","0.000000","67269840.000000","0.000000","87749480.000000",,"3623976.000000","24407688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000",,,,,,,,"8155.000000",,,,,,,,,,,,"4361.000000","1073.000000","1193.000000","1169.000000","1589.000000","2000.000000","1686.000000","0.000000","0.000000","0.000000","714.000000","748.000000","767.000000","860.000000","861.000000","860.000000","160.000000","6000.000000",,"8965494.000000",,,,, -"19902.000000","64.590000","19902.000000","64.590000","19902.000000","64.590000",,,,,,,,,,,,,,"11021.000000","28991.000000","16694.000000","12.000000","28991.000000","28991.000000",,,,,,,,,,,"7587760.000000","9245604.000000","478828.000000","0.000000","67269988.000000","0.000000","87753140.000000",,"3623976.000000","24383920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000",,,,,,,,"11216.000000","19050.000000",,,,,,,,,,,"4373.000000","1059.000000","1129.000000","1154.000000","1543.000000","2000.000000","1589.000000","0.000000","0.000000","0.000000","712.000000","737.000000","766.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965514.000000",,,,, -"18103.000000","61.770000","18103.000000","61.770000","18103.000000","61.770000",,,,,,,,,,,,,,"14319.000000","35316.000000","19667.000000","8.000000","35316.000000","35316.000000",,,,,,,,,,,"7818448.000000","9350460.000000","478828.000000","0.000000","67266780.000000","0.000000","87753140.000000",,"3623976.000000","24442396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000",,,,,,,,"14677.000000","21968.000000",,,,,,,,,,,"4324.000000","1052.000000","929.000000","1103.000000","1543.000000","1553.000000","1337.000000","0.000000","0.000000","0.000000","712.000000","698.000000","756.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965534.000000",,,,, -"20337.000000","65.270000","20337.000000","65.270000","20337.000000","65.270000",,,,,,,,,,,,,,"12592.000000","36000.500000","21888.000000","38.000000","36000.500000","36000.500000",,,,,,,,,,,"8069964.000000","9952684.000000","478828.000000","0.000000","67267976.000000","0.000000","87752992.000000",,"3623976.000000","24440064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000",,,,,,,,"13151.000000","24369.000000",,,,,,,,,,,"4241.000000","1048.000000","914.000000","1087.000000","1543.000000","1239.000000","1300.000000","0.000000","0.000000","0.000000","711.000000","688.000000","745.000000","856.000000","776.000000","860.000000","160.000000","6000.000000",,"8965554.000000",,,,, -"20978.000000","66.290000","20978.000000","66.290000","20978.000000","66.290000",,,,,,,,,,,,,,"20547.000000","43035.000000","20864.000000","21.000000","43035.000000","43035.000000",,,,,,,,,,,"8028020.000000","9826852.000000","478828.000000","0.000000","67299084.000000","0.000000","87752992.000000",,"3623976.000000","24393256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000",,,,,,,,"21418.000000","23240.000000",,,,,,,,,,,"4436.000000","1054.000000","967.000000","1081.000000","1543.000000","1338.000000","1337.000000","0.000000","0.000000","0.000000","714.000000","710.000000","743.000000","856.000000","849.000000","860.000000","160.000000","6000.000000",,"8965574.000000",,,,, -"22341.000000","68.415000","22341.000000","68.415000","22341.000000","68.415000",,,,,,,,,,,,,,"9217.000000","37180.000000","26319.000000","41.000000","37180.000000","37180.000000",,,,,,,,,,,"8300792.000000","10183792.000000","478828.000000","0.000000","67278240.000000","0.000000","87753132.000000",,"3623976.000000","24429280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000",,,,,,,,"9845.000000","28979.000000",,,,,,,,,,,"4534.000000","1060.000000","1019.000000","1059.000000","1543.000000","1338.000000","1300.000000","0.000000","0.000000","0.000000","717.000000","745.000000","738.000000","857.000000","857.000000","849.000000","160.000000","6000.000000",,"8965594.000000",,,,, -"19414.000000","63.820000","19414.000000","63.820000","19414.000000","63.820000",,,,,,,,,,,,,,"5640.000000","22766.000000","17125.000000","50.000000","22766.000000","22766.000000",,,,,,,,,,,"8088832.000000","9815668.000000","478828.000000","0.000000","67258108.000000","0.000000","87753132.000000",,"3623976.000000","24445160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000",,,,,,,,,"19276.000000",,,,,,,,,,,"4281.000000","1069.000000","1057.000000","1057.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","720.000000","761.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965614.000000",,,,, -"19932.000000","64.615000","19932.000000","64.615000","19932.000000","64.615000",,,,,,,,,,,,,,"239.000000","19682.000000","18430.000000","34.000000","19682.000000","19682.000000",,,,,,,,,,,"8319532.000000","9878592.000000","478828.000000","0.000000","67224652.000000","0.000000","87753140.000000",,"3623976.000000","24459664.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000",,,,,,,,"530.000000","20164.000000",,,,,,,,,,,"4375.000000","1075.000000","998.000000","1045.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","723.000000","737.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965634.000000",,,,, -"19438.000000","63.840000","19438.000000","63.840000","19438.000000","63.840000",,,,,,,,,,,,,,"9334.000000","28557.500000","17807.000000","24.000000","28557.500000","28557.500000",,,,,,,,,,,"8151756.000000","9605676.000000","478828.000000","0.000000","67231212.000000","0.000000","87753140.000000",,"3623976.000000","24454028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000",,,,,,,,"9611.000000","20363.000000",,,,,,,,,,,"4342.000000","1079.000000","961.000000","1029.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","725.000000","723.000000","731.000000","860.000000","860.000000","849.000000","160.000000","6000.000000",,"8965654.000000",,,,, -"19749.000000","64.325000","19749.000000","64.325000","19749.000000","64.325000",,,,,,,,,,,,,,"4090.000000","25298.500000","19650.000000","20.000000","25298.500000","25298.500000",,,,,,,,,,,"7764768.000000","9223948.000000","478828.000000","0.000000","67218852.000000","0.000000","87753000.000000",,"3623976.000000","24465744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000",,,,,,,,"4462.000000","22394.000000",,,,,,,,,,,"4342.000000","1092.000000","968.000000","1039.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","731.000000","716.000000","730.000000","860.000000","841.000000","849.000000","160.000000","6000.000000",,"8965674.000000",,,,, -"19231.000000","63.510000","19231.000000","63.510000","19231.000000","63.510000",,,,,,,,,,,,,,"904.000000","12927.000000","10993.000000","6.000000","12927.000000","12927.000000",,,,,,,,,,,"7701852.000000","9161036.000000","478828.000000","0.000000","67208468.000000","0.000000","87753000.000000",,"3623976.000000","24420752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000",,,,,,,,"738.000000","13219.000000",,,,,,,,,,,"4193.000000","1102.000000","1000.000000","1038.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","736.000000","715.000000","727.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965694.000000",,,,, -"16486.000000","59.210000","16486.000000","59.210000","16486.000000","59.210000",,,,,,,,,,,,,,"13563.000000","27741.000000","14178.000000","7.000000","27741.000000","27741.000000",,,,,,,,,,,"7827820.000000","9307980.000000","478828.000000","0.000000","67207568.000000","0.000000","87753140.000000",,"3623976.000000","24430696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000",,,,,,,,"14339.000000",,,,,,,,,,,,"4120.000000","1104.000000","957.000000","1013.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","737.000000","679.000000","718.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965714.000000",,,,, -"16789.000000","59.680000","16789.000000","59.680000","16789.000000","59.680000",,,,,,,,,,,,,,"5747.000000","27894.500000","20817.000000","12.000000","27894.500000","27894.500000",,,,,,,,,,,"8376640.000000","9992532.000000","478828.000000","0.000000","67198968.000000","0.000000","87753140.000000",,"3623976.000000","24435160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000",,,,,,,,"6162.000000","23062.000000",,,,,,,,,,,"4093.000000","1108.000000","853.000000","997.000000","1543.000000","1152.000000","1337.000000","0.000000","0.000000","0.000000","738.000000","628.000000","708.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965734.000000",,,,, -"17978.000000","61.540000","17978.000000","61.540000","17978.000000","61.540000",,,,,,,,,,,,,,"13126.000000","48753.500000","34300.000000","11.000000","48753.500000","48753.500000",,,,,,,,,,,"8376640.000000","10076416.000000","478828.000000","0.000000","67197628.000000","0.000000","87753140.000000",,"3623976.000000","24513368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000",,,,,,,,"13317.000000","36764.000000",,,,,,,,,,,"4184.000000","1111.000000","789.000000","977.000000","1543.000000","951.000000","1337.000000","0.000000","0.000000","0.000000","742.000000","623.000000","704.000000","860.000000","744.000000","849.000000","160.000000","6000.000000",,"8965754.000000",,,,, -"18273.000000","62.000000","18273.000000","62.000000","18273.000000","62.000000",,,,,,,,,,,,,,"9442.000000","32568.500000","21357.000000","10.000000","32568.500000","32568.500000",,,,,,,,,,,"8166924.000000","9929896.000000","478828.000000","0.000000","67192796.000000","0.000000","87753140.000000",,"3623976.000000","24477508.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000",,,,,,,,"10268.000000","24070.000000",,,,,,,,,,,"4049.000000","1109.000000","831.000000","939.000000","1543.000000","1036.000000","1207.000000","0.000000","0.000000","0.000000","741.000000","633.000000","696.000000","860.000000","744.000000","841.000000","160.000000","6000.000000",,"8965774.000000",,,,, -"19087.000000","63.270000","19087.000000","63.270000","19087.000000","63.270000",,,,,,,,,,,,,,"427.000000","13213.000000","11570.000000","14.000000","13213.000000","13213.000000",,,,,,,,,,,"7615856.000000","9515720.000000","478828.000000","0.000000","67186984.000000","0.000000","87753132.000000",,"3623976.000000","24483860.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000",,,,,,,,"677.000000","13751.000000",,,,,,,,,,,"4217.000000","1103.000000","901.000000","939.000000","1539.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","740.000000","666.000000","692.000000","860.000000","803.000000","821.000000","160.000000","6000.000000",,"8965794.000000",,,,, -"18360.000000","62.135000","18360.000000","62.135000","18360.000000","62.135000",,,,,,,,,,,,,,"1070.000000","12349.000000","10504.000000","5.000000","12349.000000","12349.000000",,,,,,,,,,,"7616464.000000","9516460.000000","478828.000000","0.000000","67187404.000000","0.000000","87756348.000000",,"3623976.000000","24526056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000",,,,,,,,"476.000000","12646.000000",,,,,,,,,,,"4165.000000","1091.000000","946.000000","940.000000","1498.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","738.000000","664.000000","690.000000","857.000000","803.000000","821.000000","160.000000","6000.000000",,"8965814.000000",,,,, -"17084.000000","60.130000","17084.000000","60.130000","17084.000000","60.130000",,,,,,,,,,,,,,"848.000000","19231.500000","16740.000000","20.000000","19231.500000","19231.500000",,,,,,,,,,,"7660192.000000","9623476.000000","478828.000000","0.000000","67178056.000000","0.000000","87765724.000000",,"3623976.000000","24561800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000",,,,,,,,"1975.000000","18898.000000",,,,,,,,,,,"4014.000000","1077.000000","923.000000","938.000000","1453.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","731.000000","654.000000","687.000000","852.000000","803.000000","821.000000","160.000000","6000.000000",,"8965834.000000",,,,, -"18532.000000","62.410000","18532.000000","62.410000","18532.000000","62.410000",,,,,,,,,,,,,,"93.000000","12235.500000","10749.000000","8.000000","12235.500000","12235.500000",,,,,,,,,,,"7516576.000000","9816076.000000","478828.000000","0.000000","67194228.000000","0.000000","87782500.000000",,"3623976.000000","24562008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000",,,,,,,,"686.000000","12941.000000",,,,,,,,,,,"4207.000000","1062.000000","901.000000","936.000000","1362.000000","1027.000000","1206.000000","0.000000","0.000000","0.000000","727.000000","640.000000","682.000000","850.000000","712.000000","821.000000","160.000000","6000.000000",,"8965854.000000",,,,, -"18686.000000","62.650000","18686.000000","62.650000","18686.000000","62.650000",,,,,,,,,,,,,,"1057.000000","15062.500000","12796.000000","23.000000","15062.500000","15062.500000",,,,,,,,,,,"7426592.000000","9726092.000000","478828.000000","0.000000","67195620.000000","0.000000","87782500.000000",,"3623976.000000","24534556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000",,,,,,,,"1318.000000","14953.000000",,,,,,,,,,,"4232.000000","1049.000000","868.000000","920.000000","1338.000000","1027.000000","1152.000000","0.000000","0.000000","0.000000","725.000000","642.000000","676.000000","849.000000","768.000000","803.000000","160.000000","6000.000000",,"8965874.000000",,,,, -"17972.000000","61.540000","17972.000000","61.540000","17972.000000","61.540000",,,,,,,,,,,,,,"1762.000000","14729.500000","11631.000000","37.000000","14729.500000","14729.500000",,,,,,,,,,,"7195900.000000","9662892.000000","478828.000000","0.000000","67217092.000000","0.000000","87782500.000000",,"3623976.000000","24505728.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000",,,,,,,,"2057.000000","14008.000000",,,,,,,,,,,"4098.000000","1043.000000","910.000000","916.000000","1338.000000","1129.000000","1152.000000","0.000000","0.000000","0.000000","722.000000","662.000000","670.000000","849.000000","768.000000","790.000000","160.000000","6000.000000",,"8965894.000000",,,,, -"16521.000000","59.265000","16521.000000","59.265000","16521.000000","59.265000",,,,,,,,,,,,,,"57.000000","12663.000000","11479.000000","17.000000","12663.000000","12663.000000",,,,,,,,,,,"6629540.000000","8760996.000000","478828.000000","0.000000","67206032.000000","0.000000","87782376.000000",,"3623976.000000","24511648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000",,,,,,,,"289.000000","13500.000000",,,,,,,,,,,"4069.000000","1035.000000","849.000000","895.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","716.000000","639.000000","658.000000","845.000000","768.000000","775.000000","160.000000","6000.000000",,"8965914.000000",,,,, -"16782.000000","59.670000","16782.000000","59.670000","16782.000000","59.670000",,,,,,,,,,,,,,"124.000000","12825.000000","11718.000000","5.000000","12825.000000","12825.000000",,,,,,,,,,,"6683684.000000","8836108.000000","478828.000000","0.000000","67207664.000000","0.000000","87782376.000000",,"3623976.000000","24508272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000",,,,,,,,"343.000000","13464.000000",,,,,,,,,,,"4200.000000","1031.000000","840.000000","889.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","715.000000","626.000000","654.000000","845.000000","701.000000","768.000000","160.000000","6000.000000",,"8965934.000000",,,,, -"16178.000000","58.720000","16178.000000","58.720000","16178.000000","58.720000",,,,,,,,,,,,,,"68.000000","12629.500000","11572.000000","3.000000","12629.500000","12629.500000",,,,,,,,,,,"6641744.000000","8919988.000000","478828.000000","0.000000","67196920.000000","0.000000","87782376.000000",,"3623976.000000","24488052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000",,,,,,,,"308.000000","13310.000000",,,,,,,,,,,"3896.000000","1024.000000","758.000000","876.000000","1337.000000","1006.000000","1121.000000","0.000000","0.000000","0.000000","711.000000","589.000000","643.000000","845.000000","701.000000","744.000000","160.000000","6000.000000",,"8965954.000000",,,,, -"16237.000000","58.815000","16237.000000","58.815000","16237.000000","58.815000",,,,,,,,,,,,,,"45.000000","9012.000000","8917.000000","25.000000","9012.000000","9012.000000",,,,,,,,,,,"6793836.000000","8978184.000000","478828.000000","0.000000","67198656.000000","0.000000","87808824.000000",,"3623976.000000","24511548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000",,,,,,,,"157.000000","8905.000000",,,,,,,,,,,"4133.000000","1020.000000","730.000000","847.000000","1337.000000","1006.000000","1027.000000","0.000000","0.000000","0.000000","708.000000","596.000000","634.000000","845.000000","701.000000","712.000000","160.000000","6000.000000",,"8965974.000000",,,,, -"15510.000000","57.675000","15510.000000","57.675000","15510.000000","57.675000",,,,,,,,,,,,,,"84.000000","12597.000000","12513.000000","28.000000","12597.000000","12597.000000",,,,,,,,,,,"6745672.000000","8881716.000000","478828.000000","0.000000","67200340.000000","0.000000","87808964.000000",,"3623976.000000","24419016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000",,,,,,,,"228.000000",,,,,,,,,,,,"4083.000000","1012.000000","699.000000","829.000000","1337.000000","819.000000","1019.000000","0.000000","0.000000","0.000000","706.000000","571.000000","625.000000","845.000000","659.000000","706.000000","160.000000","6000.000000",,"8965994.000000",,,,, -"17348.000000","60.550000","17348.000000","60.550000","17348.000000","60.550000",,,,,,,,,,,,,,"59.000000","8706.000000","8435.000000","7.000000","8706.000000","8706.000000",,,,,,,,,,,"6473040.000000","8734920.000000","478828.000000","0.000000","67187924.000000","0.000000","87808964.000000",,"3623976.000000","24406024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000",,,,,,,,"175.000000","8742.000000",,,,,,,,,,,"4137.000000","1009.000000","748.000000","834.000000","1337.000000","942.000000","1019.000000","0.000000","0.000000","0.000000","705.000000","601.000000","628.000000","845.000000","688.000000","706.000000","160.000000","6000.000000",,"8966014.000000",,,,, -"18837.000000","62.870000","18837.000000","62.870000","18837.000000","62.870000",,,,,,,,,,,,,,"116.000000","12471.000000","12118.000000","10.000000","12471.000000","12471.000000",,,,,,,,,,,"6336152.000000","8441324.000000","478828.000000","0.000000","67165792.000000","0.000000","87808968.000000",,"3623976.000000","24418764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000",,,,,,,,"280.000000","12427.000000",,,,,,,,,,,"4211.000000","1005.000000","798.000000","836.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","704.000000","622.000000","633.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966034.000000",,,,, -"17218.000000","60.330000","17218.000000","60.330000","17218.000000","60.330000",,,,,,,,,,,,,,"338.000000","10804.500000","10251.000000","3.000000","10804.500000","10804.500000",,,,,,,,,,,"6384456.000000","8537932.000000","478828.000000","0.000000","67153424.000000","0.000000","87808968.000000",,"3623976.000000","24609348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000",,,,,,,,"498.000000","10521.000000",,,,,,,,,,,"4270.000000","1002.000000","818.000000","834.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","702.000000","639.000000","628.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966054.000000",,,,, -"18803.000000","62.820000","18803.000000","62.820000","18803.000000","62.820000",,,,,,,,,,,,,,"174.000000","20841.500000","20313.000000","30.000000","20841.500000","20841.500000",,,,,,,,,,,"6531252.000000","8579876.000000","478828.000000","0.000000","67171696.000000","0.000000","87808968.000000",,"3623976.000000","24546732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000",,,,,,,,"452.000000","20742.000000",,,,,,,,,,,"4130.000000","993.000000","854.000000","839.000000","1279.000000","1064.000000","1019.000000","0.000000","0.000000","0.000000","701.000000","652.000000","632.000000","844.000000","783.000000","712.000000","160.000000","6000.000000",,"8966074.000000",,,,, -"17791.000000","61.235000","17791.000000","61.235000","17791.000000","61.235000",,,,,,,,,,,,,,"57.000000","12250.000000","10956.000000","6.000000","12250.000000","12250.000000",,,,,,,,,,,"6416484.000000","8056740.000000","478828.000000","0.000000","67170744.000000","0.000000","87808968.000000",,"3623976.000000","24545932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000",,,,,,,,"313.000000","13172.000000",,,,,,,,,,,"4098.000000","979.000000","860.000000","828.000000","1254.000000","1064.000000","1015.000000","0.000000","0.000000","0.000000","696.000000","645.000000","629.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966094.000000",,,,, -"19099.000000","63.285000","19099.000000","63.285000","19099.000000","63.285000",,,,,,,,,,,,,,"52.000000","14912.500000","13795.000000","12.000000","14912.500000","14912.500000",,,,,,,,,,,"6416484.000000","8224512.000000","478828.000000","0.000000","67182688.000000","0.000000","87808968.000000",,"3623976.000000","24523828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000",,,,,,,,"353.000000","15624.000000",,,,,,,,,,,"4133.000000","978.000000","973.000000","840.000000","1254.000000","1276.000000","1027.000000","0.000000","0.000000","0.000000","694.000000","661.000000","628.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966114.000000",,,,, -"19800.000000","64.380000","19800.000000","64.380000","19800.000000","64.380000",,,,,,,,,,,,,,"623.000000","13260.000000","11401.000000","11.000000","13260.000000","13260.000000",,,,,,,,,,,"6018032.000000","7826056.000000","478828.000000","0.000000","67172760.000000","0.000000","87808968.000000",,"3623976.000000","24534228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000",,,,,,,,"879.000000","13617.000000",,,,,,,,,,,"4224.000000","964.000000","976.000000","849.000000","1239.000000","1276.000000","1053.000000","0.000000","0.000000","0.000000","693.000000","678.000000","636.000000","824.000000","757.000000","729.000000","160.000000","6000.000000",,"8966134.000000",,,,, -"18784.000000","62.790000","18784.000000","62.790000","18784.000000","62.790000",,,,,,,,,,,,,,"61.000000","14703.500000","13503.000000","12.000000","14703.500000","14703.500000",,,,,,,,,,,"6363320.000000","8213280.000000","478828.000000","0.000000","67167084.000000","0.000000","87808804.000000",,"3623976.000000","24573620.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000",,,,,,,,"665.000000","15176.000000",,,,,,,,,,,"4135.000000","959.000000","1027.000000","853.000000","1236.000000","1276.000000","1118.000000","0.000000","0.000000","0.000000","688.000000","689.000000","638.000000","811.000000","757.000000","733.000000","160.000000","6000.000000",,"8966154.000000",,,,, -"19696.000000","64.220000","19696.000000","64.220000","19696.000000","64.220000",,,,,,,,,,,,,,"204.000000","9854.500000","9594.000000","29.000000","9854.500000","9854.500000",,,,,,,,,,,"6508376.000000","8358336.000000","478828.000000","0.000000","67181368.000000","0.000000","87808944.000000",,"3623976.000000","24597340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000",,,,,,,,"215.000000","9694.000000",,,,,,,,,,,"4272.000000","955.000000","983.000000","863.000000","1231.000000","1236.000000","1118.000000","0.000000","0.000000","0.000000","687.000000","706.000000","641.000000","803.000000","757.000000","733.000000","160.000000","6000.000000",,"8966174.000000",,,,, -"18028.000000","61.605000","18028.000000","61.605000","18028.000000","61.605000",,,,,,,,,,,,,,"54.000000","11208.500000","10939.000000","15.000000","11208.500000","11208.500000",,,,,,,,,,,"7305292.000000","9071364.000000","478828.000000","0.000000","67168224.000000","0.000000","87808944.000000",,"3623976.000000","24581896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000",,,,,,,,"203.000000","11221.000000",,,,,,,,,,,"4155.000000","943.000000","933.000000","854.000000","1216.000000","1236.000000","1064.000000","0.000000","0.000000","0.000000","682.000000","678.000000","640.000000","790.000000","752.000000","733.000000","160.000000","6000.000000",,"8966194.000000",,,,, -"19914.000000","64.560000","19914.000000","64.560000","19914.000000","64.560000",,,,,,,,,,,,,,"42.000000","12820.000000","12512.000000","10.000000","12820.000000","12820.000000",,,,,,,,,,,"6822952.000000","8661848.000000","478828.000000","0.000000","67168700.000000","0.000000","87808944.000000",,"3623976.000000","24579016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000",,,,,,,,"210.000000","12876.000000",,,,,,,,,,,"4169.000000","941.000000","935.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","681.000000","690.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966214.000000",,,,, -"17008.000000","60.000000","17008.000000","60.000000","17008.000000","60.000000",,,,,,,,,,,,,,"69.000000","12710.000000","12412.000000","20.000000","12710.000000","12710.000000",,,,,,,,,,,"6869320.000000","8707892.000000","478828.000000","0.000000","67162580.000000","0.000000","87800868.000000",,"3623976.000000","24572792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000",,,,,,,,"236.000000","12702.000000",,,,,,,,,,,"4100.000000","934.000000","877.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","679.000000","660.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966234.000000",,,,, -"18335.000000","62.085000","18335.000000","62.085000","18335.000000","62.085000",,,,,,,,,,,,,,"47.000000","12348.000000","12172.000000","5.000000","12348.000000","12348.000000",,,,,,,,,,,"6659604.000000","8498464.000000","478828.000000","0.000000","67164636.000000","0.000000","87800868.000000",,"3623976.000000","24570836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000",,,,,,,,"222.000000","12255.000000",,,,,,,,,,,"3983.000000","929.000000","906.000000","883.000000","1202.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","676.000000","662.000000","654.000000","783.000000","780.000000","752.000000","160.000000","6000.000000",,"8966254.000000",,,,, -"18978.000000","63.085000","18978.000000","63.085000","18978.000000","63.085000",,,,,,,,,,,,,,"64.000000","10024.500000","9787.000000","16.000000","10024.500000","10024.500000",,,,,,,,,,,"6869180.000000","8928824.000000","478828.000000","0.000000","67158472.000000","0.000000","87800732.000000",,"3623976.000000","24597924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000",,,,,,,,"200.000000","9996.000000",,,,,,,,,,,"4126.000000","931.000000","913.000000","906.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","675.000000","656.000000","660.000000","783.000000","811.000000","757.000000","160.000000","6000.000000",,"8966274.000000",,,,, -"17816.000000","61.260000","17816.000000","61.260000","17816.000000","61.260000",,,,,,,,,,,,,,"49.000000","12400.000000","12047.000000","13.000000","12400.000000","12400.000000",,,,,,,,,,,"6556732.000000","8771588.000000","478828.000000","0.000000","67150976.000000","0.000000","87800732.000000",,"3623976.000000","24603176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000",,,,,,,,"226.000000","12477.000000",,,,,,,,,,,"4274.000000","927.000000","922.000000","915.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","673.000000","670.000000","667.000000","783.000000","811.000000","759.000000","160.000000","6000.000000",,"8966294.000000",,,,, -"19215.000000","63.450000","19215.000000","63.450000","19215.000000","63.450000",,,,,,,,,,,,,,"42.000000","12655.500000","12428.000000","7.000000","12655.500000","12655.500000",,,,,,,,,,,"6221188.000000","8373128.000000","478828.000000","0.000000","67138336.000000","0.000000","87800732.000000",,"3623976.000000","24595940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000",,,,,,,,"213.000000","12626.000000",,,,,,,,,,,"4283.000000","921.000000","914.000000","917.000000","1164.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","672.000000","686.000000","671.000000","789.000000","811.000000","780.000000","160.000000","6000.000000",,"8966314.000000",,,,, -"18354.000000","62.095000","18354.000000","62.095000","18354.000000","62.095000",,,,,,,,,,,,,,"70.000000","12529.000000","12458.000000","3.000000","12529.000000","12529.000000",,,,,,,,,,,"6032444.000000","8037584.000000","478828.000000","0.000000","67126084.000000","0.000000","87800732.000000",,"3623976.000000","24658084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000",,,,,,,,"234.000000",,,,,,,,,,,,"4241.000000","922.000000","924.000000","931.000000","1164.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","671.000000","674.000000","671.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966334.000000",,,,, -"17603.000000","60.905000","17603.000000","60.905000","17603.000000","60.905000",,,,,,,,,,,,,,"399.000000","12465.500000","11711.000000","3.000000","12465.500000","12465.500000",,,,,,,,,,,"5900400.000000","7821656.000000","478828.000000","0.000000","67113004.000000","0.000000","87800800.000000",,"3623976.000000","24661360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000",,,,,,,,"527.000000","12293.000000",,,,,,,,,,,"4080.000000","916.000000","926.000000","936.000000","1152.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","668.000000","663.000000","672.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966354.000000",,,,, -"22167.000000","68.055000","22167.000000","68.055000","22167.000000","68.055000",,,,,,,,,,,,,,"62.000000","14109.500000","12913.000000","32.000000","14109.500000","14109.500000",,,,,,,,,,,"5858460.000000","7821372.000000","478828.000000","0.000000","67104204.000000","0.000000","87800800.000000",,"3623976.000000","24669016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000",,,,,,,,"325.000000","14919.000000",,,,,,,,,,,"4491.000000","916.000000","1112.000000","968.000000","1152.000000","1881.000000","1202.000000","0.000000","0.000000","0.000000","669.000000","697.000000","680.000000","789.000000","973.000000","788.000000","160.000000","6000.000000",,"8966374.000000",,,,, -"17990.000000","61.510000","17990.000000","61.510000","17990.000000","61.510000",,,,,,,,,,,,,,"53.000000","18263.000000","17512.000000","25.000000","18263.000000","18263.000000",,,,,,,,,,,"6005120.000000","7758312.000000","478828.000000","0.000000","67096036.000000","0.000000","87800660.000000",,"3623976.000000","24657300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000",,,,,,,,"289.000000","18671.000000",,,,,,,,,,,"4283.000000","914.000000","1086.000000","977.000000","1152.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","696.000000","681.000000","783.000000","973.000000","788.000000","160.000000","6000.000000",,"8966394.000000",,,,, -"20122.000000","64.845000","20122.000000","64.845000","20122.000000","64.845000",,,,,,,,,,,,,,"108.000000","10569.000000","10231.000000","14.000000","10569.000000","10569.000000",,,,,,,,,,,"6508440.000000","8219688.000000","478828.000000","0.000000","67085876.000000","0.000000","87800660.000000",,"3623976.000000","24655052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000",,,,,,,,"244.000000","10555.000000",,,,,,,,,,,"4174.000000","921.000000","1203.000000","982.000000","1202.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","720.000000","684.000000","788.000000","973.000000","791.000000","160.000000","6000.000000",,"8966414.000000",,,,, -"19566.000000","63.980000","19566.000000","63.980000","19566.000000","63.980000",,,,,,,,,,,,,,"184.000000","9621.000000","9421.000000","12.000000","9621.000000","9621.000000",,,,,,,,,,,"6676348.000000","8219828.000000","478828.000000","0.000000","67096052.000000","0.000000","87800800.000000",,"3623976.000000","24674172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000",,,,,,,,"254.000000","9382.000000",,,,,,,,,,,"4251.000000","935.000000","1221.000000","1017.000000","1207.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","695.000000","684.000000","788.000000","791.000000","791.000000","160.000000","6000.000000",,"8966434.000000",,,,, -"20937.000000","66.125000","20937.000000","66.125000","20937.000000","66.125000",,,,,,,,,,,,,,"52.000000","11039.500000","10714.000000","9.000000","11039.500000","11039.500000",,,,,,,,,,,"6068172.000000","7527772.000000","478828.000000","0.000000","67098604.000000","0.000000","87800800.000000",,"3623976.000000","24670888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000",,,,,,,,"193.000000","11119.000000",,,,,,,,,,,"4336.000000","941.000000","1309.000000","1033.000000","1217.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","670.000000","728.000000","689.000000","789.000000","837.000000","796.000000","160.000000","6000.000000",,"8966454.000000",,,,, -"20516.000000","65.480000","20516.000000","65.480000","20516.000000","65.480000",,,,,,,,,,,,,,"70.000000","13105.500000","12617.000000","7.000000","13105.500000","13105.500000",,,,,,,,,,,"6319828.000000","7779428.000000","478828.000000","0.000000","67128664.000000","0.000000","87800800.000000",,"3623976.000000","24615536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000",,,,,,,,"614.000000","12910.000000",,,,,,,,,,,"4295.000000","945.000000","1332.000000","1052.000000","1223.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","742.000000","691.000000","783.000000","837.000000","796.000000","160.000000","6000.000000",,"8966474.000000",,,,, -"16190.000000","58.700000","16190.000000","58.700000","16190.000000","58.700000",,,,,,,,,,,,,,"280.000000","16458.000000","15573.000000","18.000000","16458.000000","16458.000000",,,,,,,,,,,"6101708.000000","7937924.000000","478828.000000","0.000000","67119672.000000","0.000000","87800800.000000",,"3623976.000000","24628648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000",,,,,,,,"455.000000","16608.000000",,,,,,,,,,,"4135.000000","942.000000","1120.000000","1055.000000","1223.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","666.000000","702.000000","688.000000","781.000000","837.000000","796.000000","160.000000","6000.000000",,"8966494.000000",,,,, -"14336.000000","55.790000","14336.000000","55.790000","14336.000000","55.790000",,,,,,,,,,,,,,"131.000000","8518.500000","8122.000000","35.000000","8518.500000","8518.500000",,,,,,,,,,,"6111480.000000","7979724.000000","478828.000000","0.000000","67105136.000000","0.000000","87800660.000000",,"3623976.000000","24640880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000",,,,,,,,"247.000000","8536.000000",,,,,,,,,,,"4059.000000","929.000000","887.000000","1024.000000","1217.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","660.000000","616.000000","674.000000","775.000000","781.000000","796.000000","160.000000","6000.000000",,"8966514.000000",,,,, -"14371.000000","55.840000","14371.000000","55.840000","14371.000000","55.840000",,,,,,,,,,,,,,"55.000000","5995.500000","5914.000000","13.000000","5995.500000","5995.500000",,,,,,,,,,,"6573748.000000","8525876.000000","478828.000000","0.000000","67093524.000000","0.000000","87801552.000000",,"3623976.000000","24638812.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000",,,,,,,,"143.000000","5879.000000",,,,,,,,,,,"4073.000000","922.000000","657.000000","1008.000000","1217.000000","1155.000000","1472.000000","0.000000","0.000000","0.000000","656.000000","540.000000","667.000000","768.000000","727.000000","796.000000","160.000000","6000.000000",,"8966534.000000",,,,, -"11980.000000","52.090000","11980.000000","52.090000","11980.000000","52.090000",,,,,,,,,,,,,,"57.000000","4134.500000","3988.000000","9.000000","4134.500000","4134.500000",,,,,,,,,,,"7598472.000000","9814544.000000","478828.000000","0.000000","67084104.000000","0.000000","87800800.000000",,"3623976.000000","24650892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000",,,,,,,,"134.000000","4088.000000",,,,,,,,,,,"3977.000000","915.000000","556.000000","985.000000","1217.000000","644.000000","1472.000000","0.000000","0.000000","0.000000","651.000000","493.000000","655.000000","762.000000","570.000000","796.000000","160.000000","6000.000000",,"8966554.000000",,,,, -"12678.000000","53.175000","12678.000000","53.175000","12678.000000","53.175000",,,,,,,,,,,,,,"56.000000","6150.500000","5695.000000","4.000000","6150.500000","6150.500000",,,,,,,,,,,"7347964.000000","9647928.000000","478828.000000","0.000000","67071532.000000","0.000000","87800800.000000",,"3623976.000000","24689820.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000",,,,,,,,"141.000000","6407.000000",,,,,,,,,,,"3963.000000","900.000000","530.000000","947.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","644.000000","466.000000","636.000000","759.000000","560.000000","791.000000","160.000000","6000.000000",,"8966574.000000",,,,, -"13298.000000","54.145000","13298.000000","54.145000","13298.000000","54.145000",,,,,,,,,,,,,,"52.000000","5455.500000","5361.000000","25.000000","5455.500000","5455.500000",,,,,,,,,,,"7012424.000000","9312388.000000","478828.000000","0.000000","67065940.000000","0.000000","87800800.000000",,"3623976.000000","24717072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000",,,,,,,,"136.000000","5361.000000",,,,,,,,,,,"4035.000000","891.000000","538.000000","931.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","639.000000","460.000000","625.000000","759.000000","560.000000","788.000000","160.000000","6000.000000",,"8966594.000000",,,,, -"12596.000000","53.045000","12596.000000","53.045000","12596.000000","53.045000",,,,,,,,,,,,,,"116.000000","5522.500000","5005.000000","3.000000","5522.500000","5522.500000",,,,,,,,,,,"6800576.000000","8774908.000000","478828.000000","0.000000","67070000.000000","0.000000","87800800.000000",,"3623976.000000","24702996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000",,,,,,,,"205.000000","5718.000000",,,,,,,,,,,"3976.000000","886.000000","521.000000","906.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","636.000000","451.000000","608.000000","759.000000","560.000000","781.000000","160.000000","6000.000000",,"8966614.000000",,,,, -"12446.000000","52.810000","12446.000000","52.810000","12446.000000","52.810000",,,,,,,,,,,,,,"61.000000","5831.500000","4780.000000","3.000000","5831.500000","5831.500000",,,,,,,,,,,"6590812.000000","8669996.000000","478828.000000","0.000000","67069088.000000","0.000000","87800752.000000",,"3623976.000000","24704368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000",,,,,,,,"266.000000","6556.000000",,,,,,,,,,,"3746.000000","879.000000","541.000000","871.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","632.000000","449.000000","591.000000","759.000000","547.000000","781.000000","160.000000","6000.000000",,"8966634.000000",,,,, -"16241.000000","58.760000","16241.000000","58.760000","16241.000000","58.760000",,,,,,,,,,,,,,"350.000000","13565.000000","12752.000000","24.000000","13565.000000","13565.000000",,,,,,,,,,,"6506924.000000","8753876.000000","478828.000000","0.000000","67079968.000000","0.000000","87800752.000000",,"3623976.000000","24696264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000",,,,,,,,"538.000000","13488.000000",,,,,,,,,,,"4022.000000","878.000000","585.000000","863.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","630.000000","483.000000","589.000000","759.000000","658.000000","781.000000","160.000000","6000.000000",,"8966654.000000",,,,, -"17283.000000","60.395000","17283.000000","60.395000","17283.000000","60.395000",,,,,,,,,,,,,,"37.000000","8774.500000","8567.000000","23.000000","8774.500000","8774.500000",,,,,,,,,,,"5980608.000000","8290476.000000","478828.000000","0.000000","67083712.000000","0.000000","87800752.000000",,"3623976.000000","24697060.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000",,,,,,,,"144.000000","8800.000000",,,,,,,,,,,"4032.000000","875.000000","678.000000","819.000000","1217.000000","998.000000","1417.000000","0.000000","0.000000","0.000000","629.000000","530.000000","574.000000","759.000000","663.000000","759.000000","160.000000","6000.000000",,"8966674.000000",,,,, -"15454.000000","57.525000","15454.000000","57.525000","15454.000000","57.525000",,,,,,,,,,,,,,"88.000000","27832.500000","27853.000000","84.000000","27832.500000","27832.500000",,,,,,,,,,,"6064496.000000","8069704.000000","478828.000000","0.000000","67075088.000000","0.000000","87800752.000000",,"3623976.000000","24704364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000",,,,,,,,"314.000000","27409.000000",,,,,,,,,,,"4259.000000","870.000000","761.000000","806.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","627.000000","593.000000","570.000000","759.000000","767.000000","762.000000","160.000000","6000.000000",,"8966694.000000",,,,, -"13294.000000","54.135000","13294.000000","54.135000","13294.000000","54.135000",,,,,,,,,,,,,,"184.000000","22602.000000","22418.000000","87.000000","22602.000000","22602.000000",,,,,,,,,,,"6274260.000000","8363352.000000","478828.000000","0.000000","67061364.000000","0.000000","87800800.000000",,"3623976.000000","24690628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000",,,,,,,,"363.000000",,,,,,,,,,,,"3889.000000","863.000000","721.000000","767.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","623.000000","556.000000","556.000000","759.000000","767.000000","759.000000","160.000000","6000.000000",,"8966714.000000",,,,, -"14892.000000","56.670000","14892.000000","56.670000","14892.000000","56.670000",,,,,,,,,,,,,,"134.000000","25709.000000","24519.000000","128.000000","25709.000000","25709.000000",,,,,,,,,,,"6718816.000000","8499620.000000","478828.000000","0.000000","67127268.000000","0.000000","87800800.000000",,"3623976.000000","24666476.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000",,,,,,,,"359.000000","26404.000000",,,,,,,,,,,"3958.000000","859.000000","679.000000","711.000000","1206.000000","1206.000000","1206.000000","0.000000","0.000000","0.000000","621.000000","542.000000","544.000000","759.000000","767.000000","750.000000","160.000000","6000.000000",,"8966734.000000",,,,, -"15418.000000","57.515000","15418.000000","57.515000","15418.000000","57.515000",,,,,,,,,,,,,,"65.000000","29759.000000","29387.000000","121.000000","29759.000000","29759.000000",,,,,,,,,,,"7391540.000000","8984740.000000","478828.000000","0.000000","67169992.000000","0.000000","87802432.000000",,"3623976.000000","24590604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000",,,,,,,,"320.000000","29746.000000",,,,,,,,,,,"4076.000000","851.000000","620.000000","668.000000","1206.000000","765.000000","1145.000000","0.000000","0.000000","0.000000","618.000000","512.000000","527.000000","759.000000","610.000000","727.000000","160.000000","6000.000000",,"8966754.000000",,,,, -"13208.000000","54.035000","13208.000000","54.035000","13208.000000","54.035000",,,,,,,,,,,,,,"135.000000","27167.000000","26509.000000","132.000000","27167.000000","27167.000000",,,,,,,,,,,"7641428.000000","9234628.000000","478828.000000","0.000000","67134148.000000","0.000000","87800660.000000",,"3623976.000000","24617396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000",,,,,,,,"720.000000","26968.000000",,,,,,,,,,,"3952.000000","846.000000","615.000000","623.000000","1206.000000","765.000000","791.000000","0.000000","0.000000","0.000000","614.000000","511.000000","510.000000","757.000000","610.000000","610.000000","160.000000","6000.000000",,"8966774.000000",,,,, -"13471.000000","54.430000","13471.000000","54.430000","13471.000000","54.430000",,,,,,,,,,,,,,"72.000000","27039.500000","26584.000000","116.000000","27039.500000","27039.500000",,,,,,,,,,,"7318608.000000","8886680.000000","478828.000000","0.000000","67098324.000000","0.000000","87800824.000000",,"3623976.000000","24608296.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000",,,,,,,,"316.000000","27106.000000",,,,,,,,,,,"3857.000000","838.000000","594.000000","606.000000","1206.000000","765.000000","765.000000","0.000000","0.000000","0.000000","610.000000","487.000000","501.000000","757.000000","610.000000","597.000000","160.000000","6000.000000",,"8966794.000000",,,,, -"11434.000000","51.225000","11434.000000","51.225000","11434.000000","51.225000",,,,,,,,,,,,,,"47.000000","26897.500000","26555.000000","124.000000","26897.500000","26897.500000",,,,,,,,,,,"7957744.000000","10050104.000000","478828.000000","0.000000","67068380.000000","0.000000","87800904.000000",,"3623976.000000","24637396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000",,,,,,,,"261.000000","26931.000000",,,,,,,,,,,"4097.000000","830.000000","527.000000","596.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","606.000000","450.000000","494.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966814.000000",,,,, -"12475.000000","52.840000","12475.000000","52.840000","12475.000000","52.840000",,,,,,,,,,,,,,"120.000000","25088.500000","25189.000000","126.000000","25088.500000","25088.500000",,,,,,,,,,,"7874608.000000","10134740.000000","478828.000000","0.000000","67036204.000000","0.000000","87801656.000000",,"3623976.000000","24674964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000",,,,,,,,"294.000000","24574.000000",,,,,,,,,,,"3991.000000","823.000000","495.000000","591.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","601.000000","436.000000","489.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966834.000000",,,,, -"13222.000000","53.990000","13222.000000","53.990000","13222.000000","53.990000",,,,,,,,,,,,,,"67.000000","34680.500000","33595.000000","67.000000","34680.500000","34680.500000",,,,,,,,,,,"7456556.000000","9513252.000000","478828.000000","0.000000","67000704.000000","0.000000","87800904.000000",,"3623976.000000","24681648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000",,,,,,,,"347.000000","35352.000000",,,,,,,,,,,"4014.000000","821.000000","500.000000","594.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","600.000000","451.000000","492.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966854.000000",,,,, -"12451.000000","52.765000","12451.000000","52.765000","12451.000000","52.765000",,,,,,,,,,,,,,"62.000000","22429.000000","22367.000000","71.000000","22429.000000","22429.000000",,,,,,,,,,,"7917932.000000","9817912.000000","478824.000000","0.000000","66969888.000000","0.000000","87800908.000000",,"3623976.000000","24712128.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000",,,,,,,,"342.000000",,,,,,,,,,,,"3884.000000","815.000000","511.000000","592.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","596.000000","452.000000","491.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966874.000000",,,,, -"11363.000000","51.050000","11363.000000","51.050000","11363.000000","51.050000",,,,,,,,,,,,,,"70.000000","24537.000000","23454.000000","106.000000","24537.000000","24537.000000",,,,,,,,,,,"7959820.000000","9733972.000000","478820.000000","0.000000","66932996.000000","0.000000","87800856.000000",,"3623976.000000","24735804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000",,,,,,,,"364.000000","25185.000000",,,,,,,,,,,"3848.000000","811.000000","522.000000","587.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","593.000000","447.000000","487.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966894.000000",,,,, -"10900.000000","50.305000","10900.000000","50.305000","10900.000000","50.305000",,,,,,,,,,,,,,"70.000000","15666.000000","15687.000000","29.000000","15666.000000","15666.000000",,,,,,,,,,,"7854964.000000","9698316.000000","478820.000000","0.000000","66901428.000000","0.000000","87800856.000000",,"3623976.000000","24789348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000",,,,,,,,"209.000000","15366.000000",,,,,,,,,,,"3727.000000","804.000000","491.000000","588.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","588.000000","410.000000","484.000000","757.000000","504.000000","597.000000","160.000000","6000.000000",,"8966914.000000",,,,, -"11735.000000","51.605000","11735.000000","51.605000","11735.000000","51.605000",,,,,,,,,,,,,,"1016.000000","20944.500000","19346.000000","62.000000","20944.500000","20944.500000",,,,,,,,,,,"7729128.000000","9509580.000000","478820.000000","0.000000","66886012.000000","0.000000","87800856.000000",,"3623976.000000","24806176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000",,,,,,,,"1212.000000","20314.000000",,,,,,,,,,,"3865.000000","795.000000","493.000000","582.000000","1206.000000","611.000000","740.000000","0.000000","0.000000","0.000000","581.000000","402.000000","482.000000","752.000000","482.000000","597.000000","160.000000","6000.000000",,"8966934.000000",,,,, -"12085.000000","52.140000","12085.000000","52.140000","12085.000000","52.140000",,,,,,,,,,,,,,"338.000000","9518.500000","9041.000000","43.000000","9518.500000","9518.500000",,,,,,,,,,,"7645060.000000","9425512.000000","478820.000000","0.000000","66853052.000000","0.000000","87800672.000000",,"3623976.000000","24785492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000",,,,,,,,"454.000000","9204.000000",,,,,,,,,,,"3934.000000","789.000000","490.000000","569.000000","1206.000000","611.000000","652.000000","0.000000","0.000000","0.000000","577.000000","407.000000","471.000000","752.000000","482.000000","565.000000","160.000000","6000.000000",,"8966954.000000",,,,, -"15193.000000","57.000000","15193.000000","57.000000","15193.000000","57.000000",,,,,,,,,,,,,,"49.000000","7103.000000","6951.000000","12.000000","7103.000000","7103.000000",,,,,,,,,,,"7375308.000000","9092848.000000","478820.000000","0.000000","66839480.000000","0.000000","87800856.000000",,"3623976.000000","24752628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000",,,,,,,,"170.000000","7036.000000",,,,,,,,,,,"3991.000000","783.000000","538.000000","560.000000","1206.000000","900.000000","652.000000","0.000000","7.000000","0.000000","573.000000","434.000000","465.000000","750.000000","575.000000","565.000000","160.000000","6000.000000",,"8966974.000000",,,,, -"12048.000000","52.055000","12048.000000","52.055000","12048.000000","52.055000",,,,,,,,,,,,,,"74.000000","7662.000000","7312.000000","16.000000","7662.000000","7662.000000",,,,,,,,,,,"6987868.000000","8831228.000000","478820.000000","0.000000","66808224.000000","0.000000","87800808.000000",,"3623976.000000","24782224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000",,,,,,,,"195.000000","7743.000000",,,,,,,,,,,"3973.000000","775.000000","564.000000","543.000000","1206.000000","900.000000","629.000000","0.000000","7.000000","0.000000","569.000000","467.000000","456.000000","750.000000","712.000000","556.000000","160.000000","6000.000000",,"8966994.000000",,,,, -"14991.000000","56.655000","14991.000000","56.655000","14991.000000","56.655000",,,,,,,,,,,,,,"36.000000","2766.500000","2629.000000","33.000000","2766.500000","2766.500000",,,,,,,,,,,"7384152.000000","9420408.000000","478820.000000","0.000000","66784116.000000","0.000000","87800760.000000",,"3623976.000000","24866504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000",,,,,,,,"97.000000","2769.000000",,,,,,,,,,,"3940.000000","764.000000","599.000000","544.000000","1202.000000","900.000000","633.000000","0.000000","7.000000","0.000000","566.000000","492.000000","459.000000","750.000000","712.000000","565.000000","160.000000","6000.000000",,"8967014.000000",,,,, -"18747.000000","62.530000","18747.000000","62.530000","18747.000000","62.530000",,,,,,,,,,,,,,"68.000000","5449.000000","5294.000000","3.000000","5449.000000","5449.000000",,,,,,,,,,,"7215812.000000","9300572.000000","478820.000000","0.000000","66766724.000000","0.000000","87800760.000000",,"3623976.000000","24919992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000",,,,,,,,"225.000000","5310.000000",,,,,,,,,,,"4100.000000","762.000000","670.000000","559.000000","1202.000000","954.000000","837.000000","0.000000","0.000000","0.000000","564.000000","544.000000","465.000000","741.000000","730.000000","610.000000","160.000000","6000.000000",,"8967034.000000",,,,, -"16493.000000","58.985000","16493.000000","58.985000","16493.000000","58.985000",,,,,,,,,,,,,,"104.000000","8463.500000","8111.000000","3.000000","8463.500000","8463.500000",,,,,,,,,,,"6397920.000000","8272972.000000","478820.000000","0.000000","66738320.000000","0.000000","87800760.000000",,"3623976.000000","24953428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000",,,,,,,,"459.000000","8253.000000",,,,,,,,,,,"4178.000000","758.000000","775.000000","574.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","563.000000","588.000000","472.000000","741.000000","730.000000","660.000000","160.000000","6000.000000",,"8967054.000000",,,,, -"15192.000000","56.940000","15192.000000","56.940000","15192.000000","56.940000",,,,,,,,,,,,,,"92.000000","6764.000000","6479.000000","6.000000","6764.000000","6764.000000",,,,,,,,,,,"6314080.000000","7937476.000000","478820.000000","0.000000","66726904.000000","0.000000","87800808.000000",,"3623976.000000","24909208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000",,,,,,,,"192.000000","6765.000000",,,,,,,,,,,"3815.000000","754.000000","827.000000","587.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","559.000000","597.000000","476.000000","734.000000","730.000000","660.000000","160.000000","6000.000000",,"8967074.000000",,,,, -"10965.000000","50.310000","10965.000000","50.310000","10965.000000","50.310000",,,,,,,,,,,,,,"49.000000","2677.000000","2469.000000","5.000000","2677.000000","2677.000000",,,,,,,,,,,"6425216.000000","7903664.000000","478820.000000","0.000000","66701176.000000","0.000000","87800808.000000",,"3623976.000000","24937724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000",,,,,,,,"86.000000","2748.000000",,,,,,,,,,,"3946.000000","749.000000","730.000000","586.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","555.000000","541.000000","476.000000","734.000000","729.000000","660.000000","160.000000","6000.000000",,"8967094.000000",,,,, -"10826.000000","50.085000","10826.000000","50.085000","10826.000000","50.085000",,,,,,,,,,,,,,"1642.000000","8049.500000","6264.000000","10.000000","8049.500000","8049.500000",,,,,,,,,,,"6173560.000000","7505212.000000","478820.000000","0.000000","66689824.000000","0.000000","87800808.000000",,"3623976.000000","24948272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000",,,,,,,,"1754.000000","6439.000000",,,,,,,,,,,"3770.000000","733.000000","558.000000","580.000000","1155.000000","832.000000","873.000000","0.000000","0.000000","0.000000","546.000000","443.000000","470.000000","730.000000","583.000000","660.000000","160.000000","6000.000000",,"8967114.000000",,,,, -"10385.000000","49.380000","10385.000000","49.380000","10385.000000","49.380000",,,,,,,,,,,,,,"44.000000","6349.500000","5817.000000","5.000000","6349.500000","6349.500000",,,,,,,,,,,"6005648.000000","7505072.000000","478820.000000","0.000000","66668940.000000","0.000000","87800668.000000",,"3623976.000000","24922572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000",,,,,,,,"194.000000","6643.000000",,,,,,,,,,,"3755.000000","725.000000","449.000000","577.000000","1155.000000","731.000000","873.000000","0.000000","0.000000","0.000000","541.000000","387.000000","466.000000","730.000000","566.000000","660.000000","160.000000","6000.000000",,"8967134.000000",,,,, -"10301.000000","49.255000","10301.000000","49.255000","10301.000000","49.255000",,,,,,,,,,,,,,"50.000000","6442.000000","5522.000000","13.000000","6442.000000","6442.000000",,,,,,,,,,,"6211112.000000","7662300.000000","478820.000000","0.000000","66673412.000000","0.000000","87800668.000000",,"3623976.000000","24938412.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000",,,,,,,,"264.000000","7048.000000",,,,,,,,,,,"3854.000000","716.000000","416.000000","569.000000","1155.000000","521.000000","873.000000","0.000000","0.000000","0.000000","535.000000","363.000000","458.000000","730.000000","442.000000","660.000000","160.000000","6000.000000",,"8967154.000000",,,,, -"12649.000000","52.920000","12649.000000","52.920000","12649.000000","52.920000",,,,,,,,,,,,,,"79.000000","11152.000000","10820.000000","35.000000","11152.000000","11152.000000",,,,,,,,,,,"5917652.000000","7243008.000000","478820.000000","0.000000","66652912.000000","0.000000","87800808.000000",,"3623976.000000","24958816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000",,,,,,,,"219.000000","11184.000000",,,,,,,,,,,"3851.000000","703.000000","456.000000","569.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","528.000000","391.000000","458.000000","730.000000","521.000000","660.000000","160.000000","6000.000000",,"8967174.000000",,,,, -"9726.000000","48.330000","9726.000000","48.330000","9726.000000","48.330000",,,,,,,,,,,,,,"51.000000","7134.000000","6917.000000","17.000000","7134.000000","7134.000000",,,,,,,,,,,"6022508.000000","7536608.000000","478820.000000","0.000000","66621496.000000","0.000000","87800840.000000",,"3623976.000000","24982788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000",,,,,,,,"151.000000","7149.000000",,,,,,,,,,,"3883.000000","693.000000","440.000000","561.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","522.000000","384.000000","453.000000","729.000000","521.000000","660.000000","160.000000","6000.000000",,"8967194.000000",,,,, -"11940.000000","51.780000","11940.000000","51.780000","11940.000000","51.780000",,,,,,,,,,,,,,"47.000000","8478.000000","8222.000000","19.000000","8478.000000","8478.000000",,,,,,,,,,,"6085420.000000","7708544.000000","478820.000000","0.000000","66596196.000000","0.000000","87800840.000000",,"3623976.000000","25134896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000",,,,,,,,"177.000000","8510.000000",,,,,,,,,,,"3950.000000","687.000000","475.000000","566.000000","1155.000000","609.000000","873.000000","0.000000","0.000000","0.000000","517.000000","407.000000","458.000000","720.000000","521.000000","660.000000","160.000000","6000.000000",,"8967214.000000",,,,, -"11641.000000","51.330000","11641.000000","51.330000","11641.000000","51.330000",,,,,,,,,,,,,,"67.000000","9655.000000","9443.000000","16.000000","9655.000000","9655.000000",,,,,,,,,,,"5771460.000000","7421116.000000","478820.000000","0.000000","66627168.000000","0.000000","87870452.000000",,"3623976.000000","25171740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000",,,,,,,,"171.000000","9628.000000",,,,,,,,,,,"3817.000000","671.000000","454.000000","561.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","510.000000","390.000000","456.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967234.000000",,,,, -"8580.000000","46.515000","8580.000000","46.515000","8580.000000","46.515000",,,,,,,,,,,,,,"391.000000","2757.000000","2393.000000","3.000000","2757.000000","2757.000000",,,,,,,,,,,"5645628.000000","7001684.000000","478820.000000","0.000000","66588096.000000","0.000000","87870452.000000",,"3623976.000000","25245616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000",,,,,,,,"374.000000","2355.000000",,,,,,,,,,,"3843.000000","661.000000","448.000000","552.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","503.000000","387.000000","449.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967254.000000",,,,, -"12589.000000","52.785000","12589.000000","52.785000","12589.000000","52.785000",,,,,,,,,,,,,,"56.000000","10555.500000","10279.000000","26.000000","10555.500000","10555.500000",,,,,,,,,,,"5093468.000000","6396556.000000","478820.000000","0.000000","66566464.000000","0.000000","87870452.000000",,"3623976.000000","25281304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000",,,,,,,,"179.000000","10597.000000",,,,,,,,,,,"3898.000000","641.000000","423.000000","543.000000","1096.000000","634.000000","869.000000","0.000000","0.000000","0.000000","495.000000","372.000000","445.000000","712.000000","502.000000","660.000000","160.000000","6000.000000",,"8967274.000000",,,,, -"12696.000000","52.955000","12696.000000","52.955000","12696.000000","52.955000",,,,,,,,,,,,,,"53.000000","5177.000000","4927.000000","9.000000","5177.000000","5177.000000",,,,,,,,,,,"5369800.000000","6630948.000000","478820.000000","0.000000","66571348.000000","0.000000","87874160.000000",,"3623976.000000","25299696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000",,,,,,,,"138.000000","5235.000000",,,,,,,,,,,"3888.000000","630.000000","461.000000","541.000000","1021.000000","672.000000","837.000000","0.000000","0.000000","0.000000","490.000000","401.000000","443.000000","710.000000","549.000000","631.000000","160.000000","6000.000000",,"8967294.000000",,,,, -"11692.000000","51.355000","11692.000000","51.355000","11692.000000","51.355000",,,,,,,,,,,,,,"105.000000","5473.000000","5203.000000","14.000000","5473.000000","5473.000000",,,,,,,,,,,"5282204.000000","6606264.000000","478820.000000","0.000000","66517724.000000","0.000000","87870452.000000",,"3623976.000000","25321244.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000",,,,,,,,"159.000000","5479.000000",,,,,,,,,,,"3877.000000","613.000000","485.000000","530.000000","990.000000","672.000000","832.000000","0.000000","0.000000","0.000000","483.000000","419.000000","435.000000","676.000000","549.000000","583.000000","160.000000","6000.000000",,"8967314.000000",,,,, -"12428.000000","52.500000","12428.000000","52.500000","12428.000000","52.500000",,,,,,,,,,,,,,"62.000000","5729.000000","5666.000000","5.000000","5729.000000","5729.000000",,,,,,,,,,,"5296196.000000","6578312.000000","478820.000000","0.000000","66501136.000000","0.000000","87870452.000000",,"3623976.000000","25290932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000",,,,,,,,"182.000000",,,,,,,,,,,,"3901.000000","594.000000","518.000000","513.000000","873.000000","672.000000","731.000000","0.000000","0.000000","0.000000","478.000000","438.000000","424.000000","660.000000","549.000000","549.000000","160.000000","6000.000000",,"8967334.000000",,,,, -"13638.000000","54.380000","13638.000000","54.380000","13638.000000","54.380000",,,,,,,,,,,,,,"48.000000","8280.500000","7889.000000","10.000000","8280.500000","8280.500000",,,,,,,,,,,"4709000.000000","5897312.000000","478820.000000","0.000000","66476892.000000","0.000000","87870452.000000",,"3623976.000000","25314276.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000",,,,,,,,"521.000000","8102.000000",,,,,,,,,,,"3904.000000","576.000000","497.000000","485.000000","816.000000","614.000000","672.000000","0.000000","0.000000","0.000000","470.000000","434.000000","412.000000","597.000000","538.000000","538.000000","160.000000","6000.000000",,"8967354.000000",,,,, -"11664.000000","51.260000","11664.000000","51.260000","11664.000000","51.260000",,,,,,,,,,,,,,"37.000000","4794.000000","3887.000000","7.000000","4794.000000","4794.000000",,,,,,,,,,,"4621092.000000","5850508.000000","478820.000000","0.000000","66414684.000000","0.000000","87853432.000000",,"3623976.000000","25366512.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000",,,,,,,,"210.000000","5453.000000",,,,,,,,,,,"3913.000000","559.000000","511.000000","466.000000","765.000000","614.000000","609.000000","0.000000","0.000000","0.000000","463.000000","440.000000","404.000000","576.000000","538.000000","521.000000","160.000000","6000.000000",,"8967374.000000",,,,, -"10981.000000","50.180000","10981.000000","50.180000","10981.000000","50.180000",,,,,,,,,,,,,,"49.000000","6164.000000","5595.000000","8.000000","6164.000000","6164.000000",,,,,,,,,,,"4523840.000000","5648404.000000","478820.000000","0.000000","66395240.000000","0.000000","87853684.000000",,"3623976.000000","25358732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000",,,,,,,,"197.000000","6485.000000",,,,,,,,,,,"3741.000000","552.000000","498.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","460.000000","431.000000","402.000000","570.000000","538.000000","504.000000","160.000000","6000.000000",,"8967394.000000",,,,, -"10288.000000","49.080000","10288.000000","49.080000","10288.000000","49.080000",,,,,,,,,,,,,,"54.000000","5498.000000","5400.000000","3.000000","5498.000000","5498.000000",,,,,,,,,,,"4607728.000000","5837148.000000","478820.000000","0.000000","66363524.000000","0.000000","87853684.000000",,"3623976.000000","25392204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000",,,,,,,,"136.000000","5405.000000",,,,,,,,,,,"3855.000000","546.000000","444.000000","463.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","455.000000","384.000000","400.000000","566.000000","466.000000","504.000000","160.000000","6000.000000",,"8967414.000000",,,,, -"10870.000000","49.975000","10870.000000","49.975000","10870.000000","49.975000",,,,,,,,,,,,,,"36.000000","7411.500000","7242.000000","15.000000","7411.500000","7411.500000",,,,,,,,,,,"4524600.000000","6173448.000000","478820.000000","0.000000","66331604.000000","0.000000","87854440.000000",,"3623976.000000","25493928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000",,,,,,,,"151.000000","7393.000000",,,,,,,,,,,"3810.000000","544.000000","444.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","453.000000","381.000000","402.000000","566.000000","464.000000","504.000000","160.000000","6000.000000",,"8967434.000000",,,,, -"10712.000000","49.710000","10712.000000","49.710000","10712.000000","49.710000",,,,,,,,,,,,,,"52.000000","6503.000000","6188.000000","8.000000","6503.000000","6503.000000",,,,,,,,,,,"4544820.000000","6207828.000000","478820.000000","0.000000","66293944.000000","0.000000","87853688.000000",,"3623976.000000","25440836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000",,,,,,,,"152.000000","6613.000000",,,,,,,,,,,"3690.000000","543.000000","418.000000","466.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","451.000000","368.000000","403.000000","566.000000","405.000000","504.000000","160.000000","6000.000000",,"8967454.000000",,,,, -"10792.000000","49.820000","10792.000000","49.820000","10792.000000","49.820000",,,,,,,,,,,,,,"32.000000","6038.500000","4909.000000","30.000000","6038.500000","6038.500000",,,,,,,,,,,"4963464.000000","6804012.000000","478820.000000","0.000000","66262272.000000","0.000000","87849984.000000",,"3623976.000000","25467536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000",,,,,,,,"229.000000","6907.000000",,,,,,,,,,,"3843.000000","539.000000","430.000000","457.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","449.000000","378.000000","397.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967474.000000",,,,, -"9334.000000","47.525000","9334.000000","47.525000","9334.000000","47.525000",,,,,,,,,,,,,,"100.000000","4140.000000","3488.000000","80.000000","4140.000000","4140.000000",,,,,,,,,,,"4994228.000000","6699040.000000","478820.000000","0.000000","66239128.000000","0.000000","87849868.000000",,"3623976.000000","25373720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000",,,,,,,,"152.000000","4540.000000",,,,,,,,,,,"3774.000000","535.000000","391.000000","456.000000","740.000000","472.000000","608.000000","0.000000","0.000000","0.000000","446.000000","355.000000","396.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967494.000000",,,,, -"7998.000000","45.425000","7998.000000","45.425000","7998.000000","45.425000",,,,,,,,,,,,,,"48.000000","3174.000000","2973.000000","40.000000","3174.000000","3174.000000",,,,,,,,,,,"4945516.000000","6650324.000000","478820.000000","0.000000","66231912.000000","0.000000","87849868.000000",,"3623976.000000","25435964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000",,,,,,,,"124.000000","3202.000000",,,,,,,,,,,"3731.000000","533.000000","367.000000","445.000000","740.000000","445.000000","605.000000","0.000000","0.000000","0.000000","444.000000","337.000000","389.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967514.000000",,,,, -"11281.000000","50.560000","11281.000000","50.560000","11281.000000","50.560000",,,,,,,,,,,,,,"36.000000","6385.000000","6333.000000","12.000000","6385.000000","6385.000000",,,,,,,,,,,"4358316.000000","5979240.000000","478820.000000","0.000000","66211888.000000","0.000000","87849868.000000",,"3623976.000000","25452824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000",,,,,,,,"136.000000","6264.000000",,,,,,,,,,,"3771.000000","528.000000","369.000000","440.000000","731.000000","495.000000","599.000000","0.000000","0.000000","0.000000","441.000000","337.000000","387.000000","566.000000","448.000000","495.000000","160.000000","6000.000000",,"8967534.000000",,,,, -"8572.000000","46.305000","8572.000000","46.305000","8572.000000","46.305000",,,,,,,,,,,,,,"318.000000","3452.500000","3031.000000","14.000000","3452.500000","3452.500000",,,,,,,,,,,"3917920.000000","5790500.000000","478820.000000","0.000000","66192312.000000","0.000000","87849868.000000",,"3623976.000000","25614016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000",,,,,,,,"376.000000","3178.000000",,,,,,,,,,,"3733.000000","520.000000","362.000000","439.000000","711.000000","495.000000","599.000000","0.000000","0.000000","0.000000","435.000000","326.000000","384.000000","559.000000","448.000000","495.000000","160.000000","6000.000000",,"8967554.000000",,,,, -"14927.000000","56.315000","14927.000000","56.315000","14927.000000","56.315000",,,,,,,,,,,,,,"48.000000","9044.500000","8952.000000","15.000000","9044.500000","9044.500000",,,,,,,,,,,"4274780.000000","5895708.000000","478820.000000","0.000000","66307388.000000","0.000000","87850216.000000",,"3623976.000000","25514036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000",,,,,,,,"176.000000","8912.000000",,,,,,,,,,,"4017.000000","518.000000","447.000000","450.000000","707.000000","686.000000","608.000000","0.000000","0.000000","0.000000","434.000000","387.000000","392.000000","558.000000","558.000000","528.000000","160.000000","6000.000000",,"8967574.000000",,,,, -"13174.000000","53.565000","13174.000000","53.565000","13174.000000","53.565000",,,,,,,,,,,,,,"48.000000","12146.500000","11717.000000","26.000000","12146.500000","12146.500000",,,,,,,,,,,"4270640.000000","6576852.000000","478820.000000","0.000000","66290108.000000","0.000000","87849868.000000",,"3623976.000000","25530144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000",,,,,,,,"186.000000","12341.000000",,,,,,,,,,,"4042.000000","510.000000","494.000000","447.000000","690.000000","686.000000","587.000000","0.000000","0.000000","0.000000","430.000000","429.000000","392.000000","549.000000","558.000000","504.000000","160.000000","6000.000000",,"8967594.000000",,,,, -"15060.000000","56.510000","15060.000000","56.510000","15060.000000","56.510000",,,,,,,,,,,,,,"48.000000","7737.500000","7021.000000","17.000000","7737.500000","7737.500000",,,,,,,,,,,"4354524.000000","6607732.000000","478820.000000","0.000000","66271380.000000","0.000000","87849868.000000",,"3623976.000000","25570712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000",,,,,,,,"222.000000","8182.000000",,,,,,,,,,,"4029.000000","511.000000","593.000000","460.000000","704.000000","716.000000","614.000000","0.000000","0.000000","0.000000","432.000000","508.000000","402.000000","555.000000","564.000000","538.000000","160.000000","6000.000000",,"8967614.000000",,,,, -"15684.000000","57.475000","15684.000000","57.475000","15684.000000","57.475000",,,,,,,,,,,,,,"51.000000","5488.500000","4655.000000","9.000000","5488.500000","5488.500000",,,,,,,,,,,"4249664.000000","6523844.000000","478820.000000","0.000000","66249104.000000","0.000000","87849868.000000",,"3623976.000000","25571044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000",,,,,,,,"210.000000","6060.000000",,,,,,,,,,,"3898.000000","512.000000","592.000000","464.000000","704.000000","716.000000","641.000000","0.000000","0.000000","0.000000","432.000000","511.000000","407.000000","554.000000","564.000000","549.000000","160.000000","6000.000000",,"8967634.000000",,,,, -"15315.000000","56.900000","15315.000000","56.900000","15315.000000","56.900000",,,,,,,,,,,,,,"35.000000","8737.500000","8573.000000","6.000000","8737.500000","8737.500000",,,,,,,,,,,"3607628.000000","5532068.000000","478820.000000","0.000000","66248520.000000","0.000000","87849868.000000",,"3623976.000000","25575264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000",,,,,,,,"513.000000","8352.000000",,,,,,,,,,,"4115.000000","512.000000","644.000000","476.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","432.000000","540.000000","414.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967654.000000",,,,, -"14183.000000","55.105000","14183.000000","55.105000","14183.000000","55.105000",,,,,,,,,,,,,,"95.000000","6812.500000","6489.000000","19.000000","6812.500000","6812.500000",,,,,,,,,,,"3775404.000000","5217496.000000","478820.000000","0.000000","66210468.000000","0.000000","87849868.000000",,"3623976.000000","25592028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000",,,,,,,,"128.000000","6912.000000",,,,,,,,,,,"4031.000000","512.000000","622.000000","483.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","433.000000","526.000000","419.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967674.000000",,,,, -"13099.000000","53.405000","13099.000000","53.405000","13099.000000","53.405000",,,,,,,,,,,,,,"55.000000","6356.500000","6076.000000","17.000000","6356.500000","6356.500000",,,,,,,,,,,"3901232.000000","5301664.000000","478820.000000","0.000000","66203544.000000","0.000000","87849868.000000",,"3623976.000000","25616976.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000",,,,,,,,"167.000000","6414.000000",,,,,,,,,,,"3994.000000","514.000000","622.000000","489.000000","704.000000","775.000000","670.000000","0.000000","0.000000","0.000000","434.000000","523.000000","425.000000","555.000000","597.000000","555.000000","160.000000","6000.000000",,"8967694.000000",,,,, -"13518.000000","54.055000","13518.000000","54.055000","13518.000000","54.055000",,,,,,,,,,,,,,"38.000000","11105.500000","10855.000000","28.000000","11105.500000","11105.500000",,,,,,,,,,,"4945520.000000","6182468.000000","478820.000000","0.000000","66190404.000000","0.000000","87849868.000000",,"3623976.000000","25628252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000",,,,,,,,"169.000000","11147.000000",,,,,,,,,,,"3968.000000","515.000000","568.000000","501.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","435.000000","490.000000","435.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967714.000000",,,,, -"12668.000000","52.705000","12668.000000","52.705000","12668.000000","52.705000",,,,,,,,,,,,,,"34.000000","5754.500000","5531.000000","5.000000","5754.500000","5754.500000",,,,,,,,,,,"4882464.000000","6182324.000000","478820.000000","0.000000","66164976.000000","0.000000","87849728.000000",,"3623976.000000","25665984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000",,,,,,,,"160.000000","5783.000000",,,,,,,,,,,"4008.000000","516.000000","559.000000","505.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","436.000000","479.000000","439.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967734.000000",,,,, -"12957.000000","53.160000","12957.000000","53.160000","12957.000000","53.160000",,,,,,,,,,,,,,"54.000000","6243.000000","5878.000000","8.000000","6243.000000","6243.000000",,,,,,,,,,,"4903436.000000","6098440.000000","478820.000000","0.000000","66162728.000000","0.000000","87849728.000000",,"3623976.000000","25638800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000",,,,,,,,"177.000000","6377.000000",,,,,,,,,,,"3799.000000","515.000000","519.000000","509.000000","704.000000","569.000000","670.000000","0.000000","0.000000","0.000000","434.000000","450.000000","441.000000","554.000000","514.000000","555.000000","160.000000","6000.000000",,"8967754.000000",,,,, -"11634.000000","51.085000","11634.000000","51.085000","11634.000000","51.085000",,,,,,,,,,,,,,"36.000000","3772.000000","3561.000000","28.000000","3772.000000","3772.000000",,,,,,,,,,,"4641876.000000","6021324.000000","478820.000000","0.000000","66147680.000000","0.000000","87849728.000000",,"3623976.000000","25652628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000",,,,,,,,"108.000000","3838.000000",,,,,,,,,,,"3964.000000","514.000000","506.000000","516.000000","704.000000","611.000000","670.000000","0.000000","0.000000","0.000000","434.000000","438.000000","447.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967774.000000",,,,, -"13363.000000","53.775000","13363.000000","53.775000","13363.000000","53.775000",,,,,,,,,,,,,,"86.000000","6921.000000","6622.000000","9.000000","6921.000000","6921.000000",,,,,,,,,,,"4600072.000000","5937580.000000","478820.000000","0.000000","66120256.000000","0.000000","87849868.000000",,"3623976.000000","25687888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000",,,,,,,,"186.000000","6947.000000",,,,,,,,,,,"4022.000000","516.000000","524.000000","532.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","449.000000","458.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967794.000000",,,,, -"11976.000000","51.590000","11976.000000","51.590000","11976.000000","51.590000",,,,,,,,,,,,,,"36.000000","5718.000000","5575.000000","14.000000","5718.000000","5718.000000",,,,,,,,,,,"4516184.000000","5916612.000000","478820.000000","0.000000","66093600.000000","0.000000","87849868.000000",,"3623976.000000","25714908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000",,,,,,,,"115.000000","5709.000000",,,,,,,,,,,"3946.000000","517.000000","520.000000","540.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","437.000000","451.000000","464.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967814.000000",,,,, -"10442.000000","49.175000","10442.000000","49.175000","10442.000000","49.175000",,,,,,,,,,,,,,"51.000000","11694.500000","11114.000000","62.000000","11694.500000","11694.500000",,,,,,,,,,,"4274432.000000","5811756.000000","478820.000000","0.000000","66075464.000000","0.000000","87849868.000000",,"3623976.000000","25732240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000",,,,,,,,"202.000000","12021.000000",,,,,,,,,,,"3913.000000","514.000000","495.000000","541.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","431.000000","466.000000","554.000000","545.000000","555.000000","160.000000","6000.000000",,"8967834.000000",,,,, -"8853.000000","46.670000","8853.000000","46.670000","8853.000000","46.670000",,,,,,,,,,,,,,"319.000000","4361.500000","3101.000000","5.000000","4361.500000","4361.500000",,,,,,,,,,,"4169532.000000","5664912.000000","478820.000000","0.000000","66044904.000000","0.000000","87849824.000000",,"3623976.000000","25773748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000",,,,,,,,"486.000000","4816.000000",,,,,,,,,,,"3778.000000","511.000000","414.000000","542.000000","704.000000","542.000000","685.000000","0.000000","0.000000","0.000000","433.000000","369.000000","466.000000","554.000000","462.000000","555.000000","160.000000","6000.000000",,"8967854.000000",,,,, -"13358.000000","53.730000","13358.000000","53.730000","13358.000000","53.730000",,,,,,,,,,,,,,"103.000000","6442.500000","6322.000000","6.000000","6442.500000","6442.500000",,,,,,,,,,,"4085648.000000","5664628.000000","478820.000000","0.000000","66037096.000000","0.000000","87849824.000000",,"3623976.000000","25797256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000",,,,,,,,"162.000000","6297.000000",,,,,,,,,,,"3727.000000","509.000000","423.000000","535.000000","690.000000","632.000000","664.000000","0.000000","0.000000","0.000000","432.000000","361.000000","459.000000","554.000000","462.000000","554.000000","160.000000","6000.000000",,"8967874.000000",,,,, -"13508.000000","53.945000","13508.000000","53.945000","13508.000000","53.945000",,,,,,,,,,,,,,"199.000000","8706.000000","8249.000000","18.000000","8706.000000","8706.000000",,,,,,,,,,,"4224960.000000","5656268.000000","478820.000000","0.000000","65999752.000000","0.000000","87828216.000000",,"3623976.000000","25814048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000",,,,,,,,"335.000000","8628.000000",,,,,,,,,,,"3876.000000","512.000000","529.000000","548.000000","704.000000","986.000000","690.000000","0.000000","0.000000","0.000000","433.000000","417.000000","463.000000","554.000000","677.000000","555.000000","160.000000","6000.000000",,"8967894.000000",,,,, -"11892.000000","51.395000","11892.000000","51.395000","11892.000000","51.395000",,,,,,,,,,,,,,"90.000000","3874.500000","3762.000000","15.000000","3874.500000","3874.500000",,,,,,,,,,,"4644392.000000","6243468.000000","478820.000000","0.000000","65971960.000000","0.000000","87828216.000000",,"3623976.000000","25835552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000",,,,,,,,"97.000000","3798.000000",,,,,,,,,,,"3936.000000","508.000000","557.000000","535.000000","690.000000","986.000000","685.000000","0.000000","0.000000","0.000000","430.000000","448.000000","454.000000","550.000000","677.000000","554.000000","160.000000","6000.000000",,"8967914.000000",,,,, -"12535.000000","52.400000","12535.000000","52.400000","12535.000000","52.400000",,,,,,,,,,,,,,"49.000000","5684.000000","5565.000000","8.000000","5684.000000","5684.000000",,,,,,,,,,,"4728280.000000","6285412.000000","478816.000000","0.000000","65964764.000000","0.000000","87828220.000000",,"3623976.000000","25810316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000",,,,,,,,"134.000000","5619.000000",,,,,,,,,,,"3861.000000","502.000000","560.000000","529.000000","685.000000","986.000000","685.000000","0.000000","0.000000","0.000000","427.000000","468.000000","450.000000","549.000000","677.000000","550.000000","160.000000","6000.000000",,"8967934.000000",,,,, -"13866.000000","54.475000","13866.000000","54.475000","13866.000000","54.475000",,,,,,,,,,,,,,"43.000000","9066.000000","8537.000000","8.000000","9066.000000","9066.000000",,,,,,,,,,,"4503648.000000","6055844.000000","478816.000000","0.000000","65935488.000000","0.000000","87819552.000000",,"3623976.000000","25831692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000",,,,,,,,"537.000000","9015.000000",,,,,,,,,,,"3901.000000","494.000000","503.000000","520.000000","660.000000","636.000000","660.000000","0.000000","0.000000","0.000000","423.000000","442.000000","444.000000","544.000000","531.000000","537.000000","160.000000","6000.000000",,"8967954.000000",,,,, -"11118.000000","50.145000","11118.000000","50.145000","11118.000000","50.145000",,,,,,,,,,,,,,"36.000000","2657.000000","2657.000000","10.000000","2657.000000","2657.000000",,,,,,,,,,,"3892684.000000","5276376.000000","478816.000000","0.000000","65885172.000000","0.000000","87804884.000000",,"3623976.000000","25767356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000",,,,,,,,"79.000000","2542.000000",,,,,,,,,,,"3873.000000","487.000000","504.000000","512.000000","636.000000","636.000000","660.000000","0.000000","0.000000","0.000000","420.000000","437.000000","437.000000","538.000000","531.000000","531.000000","160.000000","6000.000000",,"8967974.000000",,,,, -"10956.000000","49.870000","10956.000000","49.870000","10956.000000","49.870000",,,,,,,,,,,,,,"49.000000","5939.500000","5600.000000","18.000000","5939.500000","5939.500000",,,,,,,,,,,"3955596.000000","5318604.000000","478816.000000","0.000000","65854352.000000","0.000000","87804884.000000",,"3623976.000000","25845340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000",,,,,,,,"162.000000","6066.000000",,,,,,,,,,,"3923.000000","486.000000","488.000000","502.000000","636.000000","636.000000","636.000000","0.000000","0.000000","0.000000","419.000000","425.000000","431.000000","537.000000","531.000000","518.000000","160.000000","6000.000000",,"8967994.000000",,,,, -"10419.000000","49.020000","10419.000000","49.020000","10419.000000","49.020000",,,,,,,,,,,,,,"35.000000","6299.000000","6263.000000","5.000000","6299.000000","6299.000000",,,,,,,,,,,"3974568.000000","5192772.000000","478816.000000","0.000000","65825412.000000","0.000000","87804884.000000",,"3623976.000000","25872800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000",,,,,,,,"141.000000",,,,,,,,,,,,"3687.000000","485.000000","433.000000","493.000000","636.000000","548.000000","636.000000","0.000000","0.000000","0.000000","419.000000","383.000000","422.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968014.000000",,,,, -"11342.000000","50.465000","11342.000000","50.465000","11342.000000","50.465000",,,,,,,,,,,,,,"37.000000","7009.000000","6667.000000","3.000000","7009.000000","7009.000000",,,,,,,,,,,"3996292.000000","5487124.000000","478816.000000","0.000000","65833848.000000","0.000000","87805636.000000",,"3623976.000000","25921028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000",,,,,,,,"184.000000","7129.000000",,,,,,,,,,,"3720.000000","487.000000","445.000000","489.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","420.000000","389.000000","419.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968034.000000",,,,, -"10118.000000","48.555000","10118.000000","48.555000","10118.000000","48.555000",,,,,,,,,,,,,,"51.000000","5584.000000","5459.000000","8.000000","5584.000000","5584.000000",,,,,,,,,,,"4184284.000000","5612200.000000","478816.000000","0.000000","65846336.000000","0.000000","87804884.000000",,"3623976.000000","25931788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000",,,,,,,,"169.000000","5488.000000",,,,,,,,,,,"3817.000000","486.000000","419.000000","482.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","419.000000","365.000000","414.000000","537.000000","491.000000","518.000000","160.000000","6000.000000",,"8968054.000000",,,,, -"9994.000000","48.350000","9994.000000","48.350000","9994.000000","48.350000",,,,,,,,,,,,,,"100.000000","4551.500000","4384.000000","4.000000","4551.500000","4551.500000",,,,,,,,,,,"3954452.000000","5525584.000000","478816.000000","0.000000","65824024.000000","0.000000","87804884.000000",,"3623976.000000","25951828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000",,,,,,,,"119.000000","4500.000000",,,,,,,,,,,"3889.000000","483.000000","416.000000","475.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","417.000000","366.000000","408.000000","537.000000","491.000000","515.000000","160.000000","6000.000000",,"8968074.000000",,,,, -"9813.000000","48.055000","9813.000000","48.055000","9813.000000","48.055000",,,,,,,,,,,,,,"38.000000","6231.500000","5114.000000","3.000000","6231.500000","6231.500000",,,,,,,,,,,"3996368.000000","5399728.000000","478804.000000","0.000000","65801584.000000","0.000000","87804868.000000",,"3623976.000000","25977636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000",,,,,,,,"225.000000","7086.000000",,,,,,,,,,,"3735.000000","484.000000","402.000000","465.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","418.000000","356.000000","400.000000","537.000000","438.000000","500.000000","160.000000","6000.000000",,"8968094.000000",,,,, -"10511.000000","49.145000","10511.000000","49.145000","10511.000000","49.145000",,,,,,,,,,,,,,"33.000000","5589.500000","5302.000000","6.000000","5589.500000","5589.500000",,,,,,,,,,,"4059280.000000","5357500.000000","478804.000000","0.000000","65787580.000000","0.000000","87804868.000000",,"3623976.000000","26014472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000",,,,,,,,"164.000000","5679.000000",,,,,,,,,,,"3880.000000","481.000000","408.000000","459.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","417.000000","365.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968114.000000",,,,, -"10858.000000","49.675000","10858.000000","49.675000","10858.000000","49.675000",,,,,,,,,,,,,,"40.000000","5510.000000","5280.000000","3.000000","5510.000000","5510.000000",,,,,,,,,,,"3815092.000000","5284672.000000","478804.000000","0.000000","65766724.000000","0.000000","87804868.000000",,"3623976.000000","26034348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000",,,,,,,,"137.000000","5563.000000",,,,,,,,,,,"3869.000000","480.000000","408.000000","458.000000","636.000000","508.000000","632.000000","0.000000","0.000000","0.000000","416.000000","367.000000","395.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968134.000000",,,,, -"9614.000000","47.720000","9614.000000","47.720000","9614.000000","47.720000",,,,,,,,,,,,,,"316.000000","5480.500000","5092.000000","7.000000","5480.500000","5480.500000",,,,,,,,,,,"3479684.000000","4928296.000000","478804.000000","0.000000","65749604.000000","0.000000","87805008.000000",,"3623976.000000","26010844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000",,,,,,,,"397.000000","5155.000000",,,,,,,,,,,"3746.000000","480.000000","390.000000","460.000000","636.000000","497.000000","632.000000","0.000000","0.000000","0.000000","416.000000","355.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968154.000000",,,,, -"11861.000000","51.370000","11861.000000","51.370000","11861.000000","51.370000",,,,,,,,,,,,,,"33.000000","4718.000000","4410.000000","10.000000","4718.000000","4718.000000",,,,,,,,,,,"3647456.000000","5075100.000000","478804.000000","0.000000","66006064.000000","0.000000","87805008.000000",,"3623976.000000","25781772.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000",,,,,,,,"133.000000","4858.000000",,,,,,,,,,,"3994.000000","480.000000","407.000000","456.000000","636.000000","497.000000","585.000000","0.000000","0.000000","0.000000","416.000000","366.000000","398.000000","537.000000","454.000000","500.000000","160.000000","6000.000000",,"8968174.000000",,,,, -"18266.000000","61.410000","18266.000000","61.410000","18266.000000","61.410000",,,,,,,,,,,,,,"51.000000","8352.000000","8224.000000","3.000000","8352.000000","8352.000000",,,,,,,,,,,"4583268.000000","5695828.000000","478804.000000","0.000000","66029144.000000","0.000000","87779372.000000",,"3623976.000000","25696700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000",,,,,,,,"176.000000","8252.000000",,,,,,,,,,,"4111.000000","489.000000","595.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","472.000000","406.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968194.000000",,,,, -"11136.000000","50.235000","11136.000000","50.235000","11136.000000","50.235000",,,,,,,,,,,,,,"51.000000","3388.500000","3212.000000","5.000000","3388.500000","3388.500000",,,,,,,,,,,"4646048.000000","5706752.000000","478800.000000","0.000000","66017400.000000","0.000000","87779236.000000",,"3623976.000000","25739568.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000",,,,,,,,"101.000000","3412.000000",,,,,,,,,,,"3779.000000","489.000000","615.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","490.000000","405.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968214.000000",,,,, -"10831.000000","49.755000","10831.000000","49.755000","10831.000000","49.755000",,,,,,,,,,,,,,"94.000000","1560.000000","1350.000000","7.000000","1560.000000","1560.000000",,,,,,,,,,,"4646048.000000","5748976.000000","478796.000000","0.000000","66006616.000000","0.000000","87779240.000000",,"3623976.000000","25747880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000",,,,,,,,"114.000000","1561.000000",,,,,,,,,,,"3903.000000","486.000000","604.000000","465.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","419.000000","482.000000","400.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968234.000000",,,,, -"13443.000000","53.835000","13443.000000","53.835000","13443.000000","53.835000",,,,,,,,,,,,,,"40.000000","8005.500000","7738.000000","24.000000","8005.500000","8005.500000",,,,,,,,,,,"5116848.000000","6327928.000000","478796.000000","0.000000","65987492.000000","0.000000","87779300.000000",,"3623976.000000","25746776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000",,,,,,,,"501.000000","7730.000000",,,,,,,,,,,"3871.000000","486.000000","459.000000","462.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","419.000000","410.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968254.000000",,,,, -"11103.000000","50.160000","11103.000000","50.160000","11103.000000","50.160000",,,,,,,,,,,,,,"37.000000","4755.000000","4317.000000","2.000000","4755.000000","4755.000000",,,,,,,,,,,"4991032.000000","6212024.000000","478796.000000","0.000000","65967172.000000","0.000000","87779312.000000",,"3623976.000000","25780384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000",,,,,,,,"124.000000","5031.000000",,,,,,,,,,,"3911.000000","486.000000","464.000000","463.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","406.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968274.000000",,,,, -"10948.000000","49.915000","10948.000000","49.915000","10948.000000","49.915000",,,,,,,,,,,,,,"44.000000","7369.000000","6145.000000","3.000000","7369.000000","7369.000000",,,,,,,,,,,"4991020.000000","6211724.000000","478796.000000","0.000000","65962192.000000","0.000000","87779300.000000",,"3623976.000000","25802416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000",,,,,,,,"255.000000","8294.000000",,,,,,,,,,,"3754.000000","485.000000","480.000000","464.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","411.000000","398.000000","544.000000","507.000000","501.000000","160.000000","6000.000000",,"8968294.000000",,,,, -"9892.000000","48.250000","9892.000000","48.250000","9892.000000","48.250000",,,,,,,,,,,,,,"38.000000","6923.500000","5440.000000","23.000000","6923.500000","6923.500000",,,,,,,,,,,"4748196.000000","5986584.000000","478796.000000","0.000000","65938664.000000","0.000000","87779300.000000",,"3623976.000000","25823152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000",,,,,,,,"231.000000","8138.000000",,,,,,,,,,,"3699.000000","486.000000","438.000000","463.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","418.000000","371.000000","397.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968314.000000",,,,, -"10013.000000","48.425000","10013.000000","48.425000","10013.000000","48.425000",,,,,,,,,,,,,,"37.000000","6928.000000","5541.000000","8.000000","6928.000000","6928.000000",,,,,,,,,,,"4685248.000000","5955668.000000","478796.000000","0.000000","65905692.000000","0.000000","87779272.000000",,"3623976.000000","25861316.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000",,,,,,,,"222.000000","8055.000000",,,,,,,,,,,"3803.000000","485.000000","428.000000","460.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","417.000000","366.000000","395.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968334.000000",,,,, -"9216.000000","47.155000","9216.000000","47.155000","9216.000000","47.155000",,,,,,,,,,,,,,"37.000000","3885.000000","2578.000000","24.000000","3885.000000","3885.000000",,,,,,,,,,,"4685248.000000","5986832.000000","478796.000000","0.000000","65873052.000000","0.000000","87779272.000000",,"3623976.000000","25868948.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000",,,,,,,,"199.000000","4955.000000",,,,,,,,,,,"3784.000000","483.000000","392.000000","458.000000","641.000000","492.000000","589.000000","0.000000","0.000000","0.000000","416.000000","345.000000","394.000000","544.000000","390.000000","501.000000","160.000000","6000.000000",,"8968354.000000",,,,, -"10887.000000","49.770000","10887.000000","49.770000","10887.000000","49.770000",,,,,,,,,,,,,,"41.000000","7413.500000","6096.000000","3.000000","7413.500000","7413.500000",,,,,,,,,,,"4496504.000000","5714200.000000","478796.000000","0.000000","65860044.000000","0.000000","87779272.000000",,"3623976.000000","25881684.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000",,,,,,,,"228.000000","8461.000000",,,,,,,,,,,"3797.000000","483.000000","393.000000","459.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","353.000000","394.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968374.000000",,,,, -"8372.000000","45.815000","8372.000000","45.815000","8372.000000","45.815000",,,,,,,,,,,,,,"36.000000","3980.500000","2952.000000","3.000000","3980.500000","3980.500000",,,,,,,,,,,"4412616.000000","5735172.000000","478796.000000","0.000000","65841604.000000","0.000000","87779272.000000",,"3623976.000000","25739328.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000",,,,,,,,"189.000000","4784.000000",,,,,,,,,,,"3659.000000","483.000000","363.000000","452.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968394.000000",,,,, -"9974.000000","48.325000","9974.000000","48.325000","9974.000000","48.325000",,,,,,,,,,,,,,"101.000000","6768.000000","5480.000000","21.000000","6768.000000","6768.000000",,,,,,,,,,,"4517476.000000","5944604.000000","478796.000000","0.000000","65826148.000000","0.000000","87779272.000000",,"3623976.000000","25774492.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000",,,,,,,,"259.000000","7695.000000",,,,,,,,,,,"3696.000000","485.000000","393.000000","455.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","341.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968414.000000",,,,, -"10347.000000","48.895000","10347.000000","48.895000","10347.000000","48.895000",,,,,,,,,,,,,,"34.000000","6960.000000","5696.000000","27.000000","6960.000000","6960.000000",,,,,,,,,,,"4259752.000000","5651000.000000","478796.000000","0.000000","65810924.000000","0.000000","87779272.000000",,"3623976.000000","25788980.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000",,,,,,,,"232.000000","7957.000000",,,,,,,,,,,"3741.000000","484.000000","385.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","387.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968434.000000",,,,, -"10656.000000","49.370000","10656.000000","49.370000","10656.000000","49.370000",,,,,,,,,,,,,,"318.000000","5996.500000","4448.000000","2.000000","5996.500000","5996.500000",,,,,,,,,,,"4175728.000000","5650860.000000","478796.000000","0.000000","65787132.000000","0.000000","87779132.000000",,"3623976.000000","25821488.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000",,,,,,,,"490.000000","6737.000000",,,,,,,,,,,"3829.000000","485.000000","401.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","352.000000","389.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968454.000000",,,,, -"10049.000000","48.410000","10049.000000","48.410000","10049.000000","48.410000",,,,,,,,,,,,,,"35.000000","5981.000000","4496.000000","4.000000","5981.000000","5981.000000",,,,,,,,,,,"4259612.000000","5755716.000000","478796.000000","0.000000","65770904.000000","0.000000","87779132.000000",,"3623976.000000","25970604.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000",,,,,,,,"242.000000","7187.000000",,,,,,,,,,,"3844.000000","481.000000","394.000000","453.000000","636.000000","500.000000","589.000000","0.000000","0.000000","0.000000","415.000000","363.000000","388.000000","533.000000","461.000000","501.000000","160.000000","6000.000000",,"8968474.000000",,,,, -"13333.000000","53.545000","13333.000000","53.545000","13333.000000","53.545000",,,,,,,,,,,,,,"41.000000","9188.500000","7961.000000","9.000000","9188.500000","9188.500000",,,,,,,,,,,"4211600.000000","5267308.000000","478796.000000","0.000000","65744812.000000","0.000000","87779132.000000",,"3623976.000000","25995508.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000",,,,,,,,"279.000000","10095.000000",,,,,,,,,,,"3974.000000","481.000000","437.000000","422.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","414.000000","403.000000","373.000000","537.000000","589.000000","461.000000","160.000000","6000.000000",,"8968494.000000",,,,, -"9926.000000","48.195000","9926.000000","48.195000","9926.000000","48.195000",,,,,,,,,,,,,,"40.000000","4515.500000","3166.000000","11.000000","4515.500000","4515.500000",,,,,,,,,,,"3792172.000000","5183424.000000","478792.000000","0.000000","65725256.000000","0.000000","87779136.000000",,"3623976.000000","26031632.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000",,,,,,,,"197.000000","5627.000000",,,,,,,,,,,"3796.000000","475.000000","439.000000","419.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","410.000000","401.000000","371.000000","531.000000","589.000000","461.000000","160.000000","6000.000000",,"8968514.000000",,,,, -"12976.000000","52.960000","12976.000000","52.960000","12976.000000","52.960000",,,,,,,,,,,,,,"93.000000","6296.000000","4949.000000","13.000000","6296.000000","6296.000000",,,,,,,,,,,"3771372.000000","5225536.000000","478788.000000","0.000000","65701384.000000","0.000000","87779308.000000",,"3623976.000000","26024872.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000",,,,,,,,"220.000000","7330.000000",,,,,,,,,,,"3812.000000","472.000000","448.000000","422.000000","632.000000","714.000000","530.000000","0.000000","0.000000","0.000000","408.000000","399.000000","372.000000","518.000000","589.000000","477.000000","160.000000","6000.000000",,"8968534.000000",,,,, -"13921.000000","54.430000","13921.000000","54.430000","13921.000000","54.430000",,,,,,,,,,,,,,"29.000000","10092.500000","8599.000000","24.000000","10092.500000","10092.500000",,,,,,,,,,,"3798416.000000","5267484.000000","478788.000000","0.000000","65680220.000000","0.000000","87779308.000000",,"3623976.000000","26045584.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000",,,,,,,,"615.000000","10941.000000",,,,,,,,,,,"3977.000000","469.000000","478.000000","426.000000","593.000000","606.000000","559.000000","0.000000","0.000000","0.000000","407.000000","425.000000","376.000000","514.000000","535.000000","493.000000","160.000000","6000.000000",,"8968554.000000",,,,, -"12973.000000","52.935000","12973.000000","52.935000","12973.000000","52.935000",,,,,,,,,,,,,,"38.000000","6355.000000","5332.000000","2.000000","6355.000000","6355.000000",,,,,,,,,,,"3756304.000000","4993540.000000","478788.000000","0.000000","65654328.000000","0.000000","87779140.000000",,"3623976.000000","26100836.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000",,,,,,,,"207.000000","7132.000000",,,,,,,,,,,"3936.000000","468.000000","510.000000","428.000000","589.000000","606.000000","559.000000","0.000000","0.000000","0.000000","405.000000","451.000000","380.000000","507.000000","535.000000","493.000000","160.000000","6000.000000",,"8968574.000000",,,,, -"10408.000000","48.925000","10408.000000","48.925000","10408.000000","48.925000",,,,,,,,,,,,,,"11817.000000","29523.000000","17376.000000","11.000000","29523.000000","29523.000000",,,,,,,,,,,"4008124.000000","5266336.000000","478788.000000","0.000000","65673344.000000","0.000000","87779304.000000",,"3623976.000000","26102704.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000",,,,,,,,"12036.000000","17815.000000",,,,,,,,,,,"3726.000000","465.000000","524.000000","430.000000","589.000000","606.000000","560.000000","0.000000","0.000000","0.000000","403.000000","455.000000","381.000000","501.000000","535.000000","493.000000","160.000000","6000.000000",,"8968594.000000",,,,, -"11125.000000","50.045000","11125.000000","50.045000","11125.000000","50.045000",,,,,,,,,,,,,,"367.000000","23800.000000","16267.000000","42.000000","23800.000000","23800.000000",,,,,,,,,,,"4502684.000000","6246520.000000","478788.000000","0.000000","65667436.000000","0.000000","87779384.000000",,"3623976.000000","26110896.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000",,,,,,,,"13402.000000","17564.000000",,,,,,,,,,,"3799.000000","464.000000","481.000000","435.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","401.000000","402.000000","383.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968614.000000",,,,, -"10437.000000","48.965000","10437.000000","48.965000","10437.000000","48.965000",,,,,,,,,,,,,,"37.000000","26318.000000","26281.000000","50.000000","26318.000000","26318.000000",,,,,,,,,,,"4785220.000000","6895488.000000","478788.000000","0.000000","65655288.000000","0.000000","87779384.000000",,"3623976.000000","26076004.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000",,,,,,,,,,,,,,,,,,,,"3705.000000","462.000000","467.000000","436.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","398.000000","377.000000","382.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968634.000000",,,,, -"10978.000000","49.810000","10978.000000","49.810000","10978.000000","49.810000",,,,,,,,,,,,,,"40.000000","43050.000000","38221.000000","53.000000","43050.000000","43050.000000",,,,,,,,,,,"5204652.000000","7252004.000000","478788.000000","0.000000","65657664.000000","0.000000","87779384.000000",,"3623976.000000","26015120.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000",,,,,,,,"9253.000000","38585.000000",,,,,,,,,,,"3664.000000","461.000000","453.000000","443.000000","589.000000","549.000000","560.000000","0.000000","0.000000","0.000000","397.000000","366.000000","385.000000","501.000000","428.000000","493.000000","160.000000","6000.000000",,"8968654.000000",,,,, -"9512.000000","47.510000","9512.000000","47.510000","9512.000000","47.510000",,,,,,,,,,,,,,"59.000000","36825.500000","29936.000000","23.000000","36825.500000","36825.500000",,,,,,,,,,,"5216780.000000","7252012.000000","478788.000000","0.000000","65649204.000000","0.000000","87779384.000000",,"3623976.000000","26024644.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000",,,,,,,,"14770.000000","28884.000000",,,,,,,,,,,"3639.000000","459.000000","440.000000","444.000000","585.000000","558.000000","560.000000","0.000000","0.000000","0.000000","395.000000","358.000000","384.000000","500.000000","462.000000","493.000000","160.000000","6000.000000",,"8968674.000000",,,,, -"11179.000000","50.110000","11179.000000","50.110000","11179.000000","50.110000",,,,,,,,,,,,,,"1510.000000","12407.000000","9826.000000","16.000000","12407.000000","12407.000000",,,,,,,,,,,"5110644.000000","7092868.000000","478788.000000","0.000000","65628896.000000","0.000000","87779252.000000",,"3623976.000000","25998596.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000",,,,,,,,"1671.000000","11807.000000",,,,,,,,,,,"3615.000000","457.000000","452.000000","454.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","394.000000","376.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968694.000000",,,,, -"10792.000000","49.495000","10792.000000","49.495000","10792.000000","49.495000",,,,,,,,,,,,,,"881.000000","6898.500000","5824.000000","7.000000","6898.500000","6898.500000",,,,,,,,,,,"5152624.000000","6799304.000000","478788.000000","0.000000","65607692.000000","0.000000","87779288.000000",,"3623976.000000","25986144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000",,,,,,,,"968.000000","6123.000000",,,,,,,,,,,"3678.000000","455.000000","433.000000","451.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","392.000000","372.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968714.000000",,,,, -"12843.000000","52.695000","12843.000000","52.695000","12843.000000","52.695000",,,,,,,,,,,,,,"185.000000","7695.500000","7323.000000","4.000000","7695.500000","7695.500000",,,,,,,,,,,"5431316.000000","7029992.000000","478788.000000","0.000000","65590484.000000","0.000000","87779288.000000",,"3623976.000000","26003420.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000",,,,,,,,"297.000000","7586.000000",,,,,,,,,,,"4037.000000","457.000000","462.000000","460.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","394.000000","411.000000","400.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968734.000000",,,,, -"12393.000000","51.985000","12393.000000","51.985000","12393.000000","51.985000",,,,,,,,,,,,,,"587.000000","6962.500000","6365.000000","8.000000","6962.500000","6962.500000",,,,,,,,,,,"5431316.000000","7052116.000000","478788.000000","0.000000","65577620.000000","0.000000","87779288.000000",,"3623976.000000","25929092.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000",,,,,,,,"633.000000","6339.000000",,,,,,,,,,,"3920.000000","460.000000","460.000000","466.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","397.000000","417.000000","404.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968754.000000",,,,, -"14332.000000","55.025000","14332.000000","55.025000","14332.000000","55.025000",,,,,,,,,,,,,,"50.000000","5887.500000","5636.000000","12.000000","5887.500000","5887.500000",,,,,,,,,,,"5368400.000000","7198916.000000","478788.000000","0.000000","65578952.000000","0.000000","87779288.000000",,"3623976.000000","25978516.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000",,,,,,,,"149.000000","5940.000000",,,,,,,,,,,"4073.000000","460.000000","493.000000","470.000000","566.000000","562.000000","562.000000","0.000000","0.000000","0.000000","398.000000","453.000000","409.000000","500.000000","528.000000","501.000000","160.000000","6000.000000",,"8968774.000000",,,,, -"17878.000000","60.600000","17878.000000","60.600000","17878.000000","60.600000",,,,,,,,,,,,,,"214.000000","16476.500000","16119.000000","25.000000","16476.500000","16476.500000",,,,,,,,,,,"5702172.000000","7343720.000000","478788.000000","0.000000","65618164.000000","0.000000","87772580.000000",,"3623976.000000","25951940.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000",,,,,,,,"382.000000","16237.000000",,,,,,,,,,,"4520.000000","465.000000","653.000000","503.000000","569.000000","1274.000000","569.000000","0.000000","0.000000","0.000000","401.000000","528.000000","425.000000","501.000000","741.000000","528.000000","160.000000","6000.000000",,"8968794.000000",,,,, -"16141.000000","57.850000","16141.000000","57.850000","16141.000000","57.850000",,,,,,,,,,,,,,"32.000000","3779.500000","3455.000000","10.000000","3779.500000","3779.500000",,,,,,,,,,,"5531040.000000","7119944.000000","478788.000000","0.000000","65566880.000000","0.000000","87745912.000000",,"3623976.000000","25984272.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000",,,,,,,,"121.000000","3950.000000",,,,,,,,,,,"4203.000000","471.000000","724.000000","523.000000","589.000000","1274.000000","671.000000","0.000000","0.000000","0.000000","405.000000","574.000000","439.000000","507.000000","741.000000","572.000000","160.000000","6000.000000",,"8968814.000000",,,,, -"16985.000000","59.180000","16985.000000","59.180000","16985.000000","59.180000",,,,,,,,,,,,,,"257.000000","3152.000000","2823.000000","16.000000","3152.000000","3152.000000",,,,,,,,,,,"5426180.000000","7036060.000000","478788.000000","0.000000","65576756.000000","0.000000","87745912.000000",,"3623976.000000","25961336.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000",,,,,,,,"307.000000","2917.000000",,,,,,,,,,,"4196.000000","475.000000","784.000000","537.000000","616.000000","1274.000000","750.000000","0.000000","0.000000","0.000000","408.000000","617.000000","453.000000","528.000000","741.000000","638.000000","160.000000","6000.000000",,"8968834.000000",,,,, -"15333.000000","56.585000","15333.000000","56.585000","15333.000000","56.585000",,,,,,,,,,,,,,"1109.000000","18599.500000","16281.000000","29.000000","18599.500000","18599.500000",,,,,,,,,,,"5593948.000000","7098980.000000","478788.000000","0.000000","65562916.000000","0.000000","87745912.000000",,"3623976.000000","25976144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000",,,,,,,,"1744.000000","18064.000000",,,,,,,,,,,"3936.000000","477.000000","679.000000","543.000000","608.000000","832.000000","775.000000","0.000000","0.000000","0.000000","410.000000","572.000000","454.000000","529.000000","688.000000","638.000000","160.000000","6000.000000",,"8968854.000000",,,,, -"15359.000000","56.615000","15359.000000","56.615000","15359.000000","56.615000",,,,,,,,,,,,,,"315.000000","7614.500000","6116.000000","13.000000","7614.500000","7614.500000",,,,,,,,,,,"5815296.000000","7178740.000000","478788.000000","0.000000","65540260.000000","0.000000","87740472.000000",,"3623976.000000","26120752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000",,,,,,,,"523.000000","8273.000000",,,,,,,,,,,"4053.000000","482.000000","667.000000","554.000000","616.000000","786.000000","786.000000","0.000000","0.000000","0.000000","414.000000","563.000000","461.000000","535.000000","688.000000","649.000000","160.000000","6000.000000",,"8968874.000000",,,,, -"15233.000000","56.405000","15233.000000","56.405000","15233.000000","56.405000",,,,,,,,,,,,,,"37.000000","8353.500000","7297.000000","43.000000","8353.500000","8353.500000",,,,,,,,,,,"5941176.000000","7325592.000000","478788.000000","0.000000","65518472.000000","0.000000","87740520.000000",,"3623976.000000","26118284.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000",,,,,,,,"239.000000","9134.000000",,,,,,,,,,,"4115.000000","486.000000","652.000000","563.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","416.000000","539.000000","469.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968894.000000",,,,, -"13682.000000","53.965000","13682.000000","53.965000","13682.000000","53.965000",,,,,,,,,,,,,,"61.000000","7190.500000","6962.000000","28.000000","7190.500000","7190.500000",,,,,,,,,,,"6150892.000000","7661136.000000","478788.000000","0.000000","65501680.000000","0.000000","87740520.000000",,"3623976.000000","26135752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000",,,,,,,,"172.000000","7186.000000",,,,,,,,,,,"4055.000000","490.000000","628.000000","572.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","420.000000","531.000000","480.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968914.000000",,,,, -"13589.000000","53.810000","13589.000000","53.810000","13589.000000","53.810000",,,,,,,,,,,,,,"100.000000","7215.000000","7111.000000","13.000000","7215.000000","7215.000000",,,,,,,,,,,"5184572.000000","6727144.000000","478788.000000","0.000000","65482156.000000","0.000000","87740928.000000",,"3623976.000000","26085772.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000",,,,,,,,"149.000000","7070.000000",,,,,,,,,,,"3969.000000","492.000000","598.000000","580.000000","671.000000","735.000000","786.000000","0.000000","0.000000","0.000000","421.000000","508.000000","487.000000","570.000000","570.000000","649.000000","160.000000","6000.000000",,"8968934.000000",,,,, -"12989.000000","52.870000","12989.000000","52.870000","12989.000000","52.870000",,,,,,,,,,,,,,"38.000000","5182.000000","4994.000000","8.000000","5182.000000","5182.000000",,,,,,,,,,,"5205088.000000","6999316.000000","478788.000000","0.000000","65476916.000000","0.000000","87740472.000000",,"3623976.000000","26044352.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000",,,,,,,,"131.000000","5199.000000",,,,,,,,,,,"3989.000000","496.000000","569.000000","586.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","424.000000","484.000000","493.000000","570.000000","537.000000","649.000000","160.000000","6000.000000",,"8968954.000000",,,,, -"14491.000000","55.220000","14491.000000","55.220000","14491.000000","55.220000",,,,,,,,,,,,,,"36.000000","7694.000000","7446.000000","36.000000","7694.000000","7694.000000",,,,,,,,,,,"5121252.000000","6810624.000000","478788.000000","0.000000","65463160.000000","0.000000","87740520.000000",,"3623976.000000","26056460.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000",,,,,,,,"139.000000","7765.000000",,,,,,,,,,,"4100.000000","500.000000","567.000000","598.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","428.000000","484.000000","505.000000","570.000000","553.000000","649.000000","160.000000","6000.000000",,"8968974.000000",,,,, -"12772.000000","52.515000","12772.000000","52.515000","12772.000000","52.515000",,,,,,,,,,,,,,"36.000000","4411.000000","4226.000000","8.000000","4411.000000","4411.000000",,,,,,,,,,,"5548400.000000","6949844.000000","478788.000000","0.000000","65445396.000000","0.000000","87740520.000000",,"3623976.000000","26195756.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000",,,,,,,,"98.000000","4462.000000",,,,,,,,,,,"4112.000000","502.000000","553.000000","600.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","430.000000","479.000000","508.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8968994.000000",,,,, -"13759.000000","54.055000","13759.000000","54.055000","13759.000000","54.055000",,,,,,,,,,,,,,"231.000000","16475.000000","15985.000000","30.000000","16475.000000","16475.000000",,,,,,,,,,,"5716172.000000","6865960.000000","478788.000000","0.000000","65441184.000000","0.000000","87740520.000000",,"3623976.000000","26271160.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000",,,,,,,,"406.000000","16326.000000",,,,,,,,,,,"4116.000000","507.000000","572.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","433.000000","497.000000","518.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969014.000000",,,,, -"12684.000000","52.370000","12684.000000","52.370000","12684.000000","52.370000",,,,,,,,,,,,,,"36.000000","3341.000000","3165.000000","31.000000","3341.000000","3341.000000",,,,,,,,,,,"5443536.000000","6656232.000000","478788.000000","0.000000","65422392.000000","0.000000","87740528.000000",,"3623976.000000","26289096.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000",,,,,,,,"118.000000","3361.000000",,,,,,,,,,,"3954.000000","509.000000","543.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","434.000000","469.000000","517.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969034.000000",,,,, -"13410.000000","53.490000","13410.000000","53.490000","13410.000000","53.490000",,,,,,,,,,,,,,"380.000000","6805.000000","6424.000000","6.000000","6805.000000","6805.000000",,,,,,,,,,,"4911396.000000","6385664.000000","478788.000000","0.000000","65401792.000000","0.000000","87740388.000000",,"3623976.000000","26264364.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000",,,,,,,,"476.000000",,,,,,,,,,,,"4030.000000","514.000000","571.000000","623.000000","677.000000","680.000000","786.000000","0.000000","0.000000","0.000000","438.000000","478.000000","520.000000","570.000000","527.000000","649.000000","160.000000","6000.000000",,"8969054.000000",,,,, -"15908.000000","57.405000","15908.000000","57.405000","15908.000000","57.405000",,,,,,,,,,,,,,"76.000000","7782.500000","7497.000000","29.000000","7782.500000","7782.500000",,,,,,,,,,,"4974452.000000","6155116.000000","478788.000000","0.000000","65410668.000000","0.000000","87740532.000000",,"3623976.000000","26165064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000",,,,,,,,"210.000000","7782.000000",,,,,,,,,,,"4063.000000","518.000000","582.000000","632.000000","680.000000","719.000000","786.000000","0.000000","0.000000","0.000000","441.000000","488.000000","525.000000","572.000000","605.000000","649.000000","160.000000","6000.000000",,"8969074.000000",,,,, -"17121.000000","59.305000","17121.000000","59.305000","17121.000000","59.305000",,,,,,,,,,,,,,"66.000000","8342.000000","7418.000000","4.000000","8342.000000","8342.000000",,,,,,,,,,,"5393884.000000","6763292.000000","478788.000000","0.000000","65406344.000000","0.000000","87740532.000000",,"3623976.000000","26170980.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000",,,,,,,,"258.000000","8941.000000",,,,,,,,,,,"4139.000000","517.000000","711.000000","626.000000","680.000000","1093.000000","775.000000","0.000000","0.000000","0.000000","440.000000","553.000000","522.000000","570.000000","656.000000","640.000000","160.000000","6000.000000",,"8969094.000000",,,,, -"14695.000000","55.490000","14695.000000","55.490000","14695.000000","55.490000",,,,,,,,,,,,,,"683.000000","11612.000000","10604.000000","21.000000","11612.000000","11612.000000",,,,,,,,,,,"6289980.000000","7848136.000000","478788.000000","0.000000","65379984.000000","0.000000","87740532.000000",,"3623976.000000","26254736.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000",,,,,,,,"798.000000","11138.000000",,,,,,,,,,,"3935.000000","522.000000","727.000000","623.000000","687.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","443.000000","571.000000","520.000000","572.000000","656.000000","605.000000","160.000000","6000.000000",,"8969114.000000",,,,, -"16199.000000","57.865000","16199.000000","57.865000","16199.000000","57.865000",,,,,,,,,,,,,,"51.000000","6903.000000","6532.000000","58.000000","6903.000000","6903.000000",,,,,,,,,,,"6373868.000000","8078816.000000","478788.000000","0.000000","65404484.000000","0.000000","87740532.000000",,"3623976.000000","26205084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000",,,,,,,,"147.000000","7074.000000",,,,,,,,,,,"4050.000000","525.000000","705.000000","616.000000","714.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","446.000000","559.000000","513.000000","572.000000","662.000000","605.000000","160.000000","6000.000000",,"8969134.000000",,,,, -"15656.000000","57.005000","15656.000000","57.005000","15656.000000","57.005000",,,,,,,,,,,,,,"97.000000","8521.000000","8060.000000","16.000000","8521.000000","8521.000000",,,,,,,,,,,"6164148.000000","7701332.000000","478788.000000","0.000000","65389700.000000","0.000000","87740532.000000",,"3623976.000000","26217412.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000",,,,,,,,"523.000000","8362.000000",,,,,,,,,,,"4153.000000","531.000000","667.000000","623.000000","735.000000","860.000000","764.000000","0.000000","0.000000","0.000000","449.000000","549.000000","517.000000","579.000000","691.000000","640.000000","160.000000","6000.000000",,"8969154.000000",,,,, -"15203.000000","56.290000","15203.000000","56.290000","15203.000000","56.290000",,,,,,,,,,,,,,"764.000000","12567.000000","11626.000000","16.000000","12567.000000","12567.000000",,,,,,,,,,,"6137452.000000","7952648.000000","478788.000000","0.000000","65390028.000000","0.000000","87740484.000000",,"3623976.000000","26215156.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000",,,,,,,,"902.000000","11841.000000",,,,,,,,,,,"4240.000000","534.000000","653.000000","620.000000","735.000000","860.000000","759.000000","0.000000","0.000000","0.000000","453.000000","548.000000","517.000000","589.000000","691.000000","605.000000","160.000000","6000.000000",,"8969174.000000",,,,, -"15683.000000","57.045000","15683.000000","57.045000","15683.000000","57.045000",,,,,,,,,,,,,,"366.000000","11045.500000","10536.000000","11.000000","11045.500000","11045.500000",,,,,,,,,,,"6054092.000000","7470832.000000","478788.000000","0.000000","65382616.000000","0.000000","87741008.000000",,"3623976.000000","26188616.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000",,,,,,,,"511.000000","10677.000000",,,,,,,,,,,"4236.000000","538.000000","673.000000","620.000000","741.000000","860.000000","764.000000","0.000000","0.000000","0.000000","456.000000","560.000000","517.000000","589.000000","691.000000","640.000000","160.000000","6000.000000",,"8969194.000000",,,,, -"11447.000000","50.400000","11447.000000","50.400000","11447.000000","50.400000",,,,,,,,,,,,,,"320.000000","8308.500000","7564.000000","9.000000","8308.500000","8308.500000",,,,,,,,,,,"5927884.000000","7470452.000000","478788.000000","0.000000","65365216.000000","0.000000","87740628.000000",,"3623976.000000","26204320.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000",,,,,,,,"436.000000","8296.000000",,,,,,,,,,,"3966.000000","541.000000","595.000000","617.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","458.000000","507.000000","512.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969214.000000",,,,, -"12885.000000","52.645000","12885.000000","52.645000","12885.000000","52.645000",,,,,,,,,,,,,,"219.000000","8899.500000","8505.000000","15.000000","8899.500000","8899.500000",,,,,,,,,,,"5382624.000000","7276324.000000","478788.000000","0.000000","65345136.000000","0.000000","87740628.000000",,"3623976.000000","26224096.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000",,,,,,,,"352.000000","8722.000000",,,,,,,,,,,"4055.000000","543.000000","556.000000","612.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","460.000000","480.000000","511.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969234.000000",,,,, -"12788.000000","52.480000","12788.000000","52.480000","12788.000000","52.480000",,,,,,,,,,,,,,"42.000000","4631.000000","4476.000000","6.000000","4631.000000","4631.000000",,,,,,,,,,,"5634212.000000","7695684.000000","478788.000000","0.000000","65325620.000000","0.000000","87740560.000000",,"3623976.000000","26346572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000",,,,,,,,"125.000000","4619.000000",,,,,,,,,,,"4057.000000","545.000000","507.000000","607.000000","750.000000","842.000000","791.000000","0.000000","6.000000","0.000000","463.000000","448.000000","510.000000","589.000000","566.000000","640.000000","160.000000","6000.000000",,"8969254.000000",,,,, -"11884.000000","51.055000","11884.000000","51.055000","11884.000000","51.055000",,,,,,,,,,,,,,"404.000000","9759.000000","9134.000000","13.000000","9759.000000","9759.000000",,,,,,,,,,,"5529348.000000","7695684.000000","478788.000000","0.000000","65304048.000000","0.000000","87740560.000000",,"3623976.000000","26366792.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000",,,,,,,,"491.000000","9488.000000",,,,,,,,,,,"4109.000000","547.000000","481.000000","600.000000","750.000000","541.000000","791.000000","0.000000","0.000000","0.000000","465.000000","449.000000","505.000000","589.000000","505.000000","640.000000","160.000000","6000.000000",,"8969274.000000",,,,, -"12568.000000","52.115000","12568.000000","52.115000","12568.000000","52.115000",,,,,,,,,,,,,,"126.000000","6899.500000","6764.000000","26.000000","6899.500000","6899.500000",,,,,,,,,,,"5361504.000000","7165648.000000","478788.000000","0.000000","65286120.000000","0.000000","87740484.000000",,"3623976.000000","26441124.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000",,,,,,,,"191.000000","6718.000000",,,,,,,,,,,"3947.000000","551.000000","484.000000","598.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","468.000000","444.000000","504.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969294.000000",,,,, -"12970.000000","52.750000","12970.000000","52.750000","12970.000000","52.750000",,,,,,,,,,,,,,"535.000000","9316.500000","8071.000000","10.000000","9316.500000","9316.500000",,,,,,,,,,,"5361504.000000","7249536.000000","478788.000000","0.000000","65297344.000000","0.000000","87740484.000000",,"3623976.000000","26249812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000",,,,,,,,"735.000000","9291.000000",,,,,,,,,,,"3800.000000","552.000000","485.000000","590.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","469.000000","438.000000","498.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969314.000000",,,,, -"11064.000000","49.755000","11064.000000","49.755000","11064.000000","49.755000",,,,,,,,,,,,,,"80.000000","5113.500000","4468.000000","12.000000","5113.500000","5113.500000",,,,,,,,,,,"5382528.000000","7291528.000000","478788.000000","0.000000","65279968.000000","0.000000","87740532.000000",,"3623976.000000","26267080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000",,,,,,,,"244.000000","5435.000000",,,,,,,,,,,"3883.000000","554.000000","481.000000","587.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","471.000000","429.000000","497.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969334.000000",,,,, -"12420.000000","51.870000","12420.000000","51.870000","12420.000000","51.870000",,,,,,,,,,,,,,"596.000000","8222.000000","7213.000000","11.000000","8222.000000","8222.000000",,,,,,,,,,,"5434084.000000","6997624.000000","478788.000000","0.000000","65261096.000000","0.000000","87740532.000000",,"3623976.000000","26247292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000",,,,,,,,"721.000000","7912.000000",,,,,,,,,,,"3952.000000","556.000000","476.000000","579.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","473.000000","432.000000","495.000000","589.000000","525.000000","640.000000","160.000000","6000.000000",,"8969354.000000",,,,, -"14927.000000","55.795000","14927.000000","55.795000","14927.000000","55.795000",,,,,,,,,,,,,,"76.000000","7352.500000","7271.000000","7.000000","7352.500000","7352.500000",,,,,,,,,,,"5014656.000000","6494308.000000","478788.000000","0.000000","65259260.000000","0.000000","87740532.000000",,"3623976.000000","26343444.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000",,,,,,,,"186.000000","7170.000000",,,,,,,,,,,"4023.000000","560.000000","516.000000","577.000000","755.000000","791.000000","791.000000","0.000000","0.000000","0.000000","476.000000","463.000000","494.000000","598.000000","647.000000","647.000000","160.000000","6000.000000",,"8969374.000000",,,,, -"14943.000000","55.820000","14943.000000","55.820000","14943.000000","55.820000",,,,,,,,,,,,,,"659.000000","9461.500000","8494.000000","23.000000","9461.500000","9461.500000",,,,,,,,,,,"4721060.000000","6053912.000000","478788.000000","0.000000","65251168.000000","0.000000","87740532.000000",,"3623976.000000","26351060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000",,,,,,,,"792.000000","8976.000000",,,,,,,,,,,"4045.000000","562.000000","565.000000","558.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","478.000000","503.000000","487.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969394.000000",,,,, -"14640.000000","55.335000","14640.000000","55.335000","14640.000000","55.335000",,,,,,,,,,,,,,"48.000000","7387.000000","7127.000000","33.000000","7387.000000","7387.000000",,,,,,,,,,,"4709708.000000","6288540.000000","478788.000000","0.000000","65235112.000000","0.000000","87740532.000000",,"3623976.000000","26426572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000",,,,,,,,"148.000000","7450.000000",,,,,,,,,,,"4025.000000","566.000000","589.000000","552.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","481.000000","520.000000","485.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969414.000000",,,,, -"14933.000000","55.790000","14933.000000","55.790000","14933.000000","55.790000",,,,,,,,,,,,,,"44.000000","5617.500000","5537.000000","21.000000","5617.500000","5617.500000",,,,,,,,,,,"4646792.000000","6204652.000000","478788.000000","0.000000","65223732.000000","0.000000","87740532.000000",,"3623976.000000","26362656.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000",,,,,,,,"128.000000","5525.000000",,,,,,,,,,,"3922.000000","568.000000","575.000000","551.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","483.000000","512.000000","484.000000","605.000000","661.000000","598.000000","160.000000","6000.000000",,"8969434.000000",,,,, -"14779.000000","55.540000","14779.000000","55.540000","14779.000000","55.540000",,,,,,,,,,,,,,"103.000000","7467.000000","7029.000000","17.000000","7467.000000","7467.000000",,,,,,,,,,,"4772616.000000","6309508.000000","478788.000000","0.000000","65210220.000000","0.000000","87740532.000000",,"3623976.000000","26377084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000",,,,,,,,"499.000000","7303.000000",,,,,,,,,,,"4235.000000","570.000000","589.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","484.000000","522.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969454.000000",,,,, -"15799.000000","57.135000","15799.000000","57.135000","15799.000000","57.135000",,,,,,,,,,,,,,"1032.000000","8544.500000","7347.000000","18.000000","8544.500000","8544.500000",,,,,,,,,,,"4652464.000000","5979640.000000","478788.000000","0.000000","65191580.000000","0.000000","87740532.000000",,"3623976.000000","26417140.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000",,,,,,,,"1152.000000","7557.000000",,,,,,,,,,,"3999.000000","572.000000","606.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","487.000000","535.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969474.000000",,,,, -"14882.000000","55.695000","14882.000000","55.695000","14882.000000","55.695000",,,,,,,,,,,,,,"1593.000000","7873.500000","6128.000000","33.000000","7873.500000","7873.500000",,,,,,,,,,,"4568580.000000","5917012.000000","478788.000000","0.000000","65193768.000000","0.000000","87740532.000000",,"3623976.000000","26468820.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000",,,,,,,,"1727.000000","6297.000000",,,,,,,,,,,"4170.000000","574.000000","614.000000","540.000000","759.000000","712.000000","707.000000","0.000000","0.000000","0.000000","490.000000","552.000000","483.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969494.000000",,,,, -"13838.000000","54.050000","13838.000000","54.050000","13838.000000","54.050000",,,,,,,,,,,,,,"43.000000","6360.000000","6134.000000","42.000000","6360.000000","6360.000000",,,,,,,,,,,"4229944.000000","5473088.000000","478788.000000","0.000000","65174068.000000","0.000000","87726476.000000",,"3623976.000000","26473636.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000",,,,,,,,"161.000000","6381.000000",,,,,,,,,,,"4032.000000","575.000000","569.000000","537.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","493.000000","525.000000","486.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969514.000000",,,,, -"11811.000000","50.865000","11811.000000","50.865000","11811.000000","50.865000",,,,,,,,,,,,,,"42.000000","6139.000000","4893.000000","22.000000","6139.000000","6139.000000",,,,,,,,,,,"3961532.000000","5084388.000000","478784.000000","0.000000","65157356.000000","0.000000","87726340.000000",,"3623976.000000","26452296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000",,,,,,,,"253.000000","7090.000000",,,,,,,,,,,"4040.000000","576.000000","525.000000","536.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","494.000000","491.000000","484.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969534.000000",,,,, -"12947.000000","52.640000","12947.000000","52.640000","12947.000000","52.640000",,,,,,,,,,,,,,"41.000000","5582.500000","5339.000000","12.000000","5582.500000","5582.500000",,,,,,,,,,,"4213192.000000","5167984.000000","478784.000000","0.000000","65148768.000000","0.000000","87726340.000000",,"3623976.000000","26465932.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000",,,,,,,,"170.000000","5615.000000",,,,,,,,,,,"3961.000000","577.000000","500.000000","538.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","496.000000","462.000000","485.000000","620.000000","539.000000","616.000000","160.000000","6000.000000",,"8969554.000000",,,,, -"13037.000000","52.775000","13037.000000","52.775000","13037.000000","52.775000",,,,,,,,,,,,,,"47.000000","6647.000000","6350.000000","23.000000","6647.000000","6647.000000",,,,,,,,,,,"4129304.000000","5105068.000000","478784.000000","0.000000","65134304.000000","0.000000","87726340.000000",,"3623976.000000","26479816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000",,,,,,,,"160.000000","6737.000000",,,,,,,,,,,"4045.000000","579.000000","490.000000","539.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","454.000000","487.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969574.000000",,,,, -"12325.000000","51.650000","12325.000000","51.650000","12325.000000","51.650000",,,,,,,,,,,,,,"130.000000","5808.500000","5766.000000","28.000000","5808.500000","5808.500000",,,,,,,,,,,"4440692.000000","5616280.000000","478784.000000","0.000000","65115576.000000","0.000000","87726340.000000",,"3623976.000000","26575832.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000",,,,,,,,"134.000000","5586.000000",,,,,,,,,,,"3951.000000","578.000000","487.000000","536.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","450.000000","486.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969594.000000",,,,, -"11768.000000","50.770000","11768.000000","50.770000","11768.000000","50.770000",,,,,,,,,,,,,,"42.000000","5073.500000","4916.000000","37.000000","5073.500000","5073.500000",,,,,,,,,,,"4440976.000000","5532680.000000","478784.000000","0.000000","65099724.000000","0.000000","87726624.000000",,"3623976.000000","26578200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000",,,,,,,,"113.000000","5075.000000",,,,,,,,,,,"3760.000000","580.000000","471.000000","535.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","433.000000","485.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969614.000000",,,,, -"12344.000000","51.665000","12344.000000","51.665000","12344.000000","51.665000",,,,,,,,,,,,,,"73.000000","5855.000000","5781.000000","16.000000","5855.000000","5855.000000",,,,,,,,,,,"4713608.000000","5784344.000000","478784.000000","0.000000","65081780.000000","0.000000","87726624.000000",,"3623976.000000","26595112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000",,,,,,,,"155.000000",,,,,,,,,,,,"3966.000000","579.000000","470.000000","536.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","430.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969634.000000",,,,, -"13161.000000","52.935000","13161.000000","52.935000","13161.000000","52.935000",,,,,,,,,,,,,,"354.000000","20761.000000","19979.000000","52.000000","20761.000000","20761.000000",,,,,,,,,,,"4402768.000000","5625824.000000","478784.000000","0.000000","65066032.000000","0.000000","87727172.000000",,"3623976.000000","26623612.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000",,,,,,,,"543.000000","20645.000000",,,,,,,,,,,"3901.000000","580.000000","484.000000","538.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","501.000000","441.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969654.000000",,,,, -"14237.000000","54.620000","14237.000000","54.620000","14237.000000","54.620000",,,,,,,,,,,,,,"763.000000","18125.500000","17265.000000","11.000000","18125.500000","18125.500000",,,,,,,,,,,"4234992.000000","5709708.000000","478784.000000","0.000000","65067712.000000","0.000000","87727172.000000",,"3623976.000000","26565356.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000",,,,,,,,"944.000000","17278.000000",,,,,,,,,,,"4007.000000","582.000000","521.000000","536.000000","764.000000","924.000000","666.000000","0.000000","0.000000","0.000000","501.000000","470.000000","486.000000","622.000000","713.000000","616.000000","160.000000","6000.000000",,"8969674.000000",,,,, -"14018.000000","54.275000","14018.000000","54.275000","14018.000000","54.275000",,,,,,,,,,,,,,"175.000000","7571.500000","7171.000000","25.000000","7571.500000","7571.500000",,,,,,,,,,,"4088444.000000","5416356.000000","478784.000000","0.000000","65060080.000000","0.000000","87727424.000000",,"3623976.000000","26572884.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000",,,,,,,,"308.000000","7488.000000",,,,,,,,,,,"4135.000000","572.000000","544.000000","532.000000","750.000000","924.000000","665.000000","0.000000","0.000000","0.000000","498.000000","491.000000","484.000000","605.000000","713.000000","572.000000","160.000000","6000.000000",,"8969694.000000",,,,, -"12631.000000","52.095000","12631.000000","52.095000","12631.000000","52.095000",,,,,,,,,,,,,,"978.000000","3491.000000","2267.000000","5.000000","3491.000000","3491.000000",,,,,,,,,,,"4135924.000000","5296064.000000","478784.000000","0.000000","65045084.000000","0.000000","87727424.000000",,"3623976.000000","26621704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000",,,,,,,,"1030.000000","2706.000000",,,,,,,,,,,"4027.000000","567.000000","532.000000","527.000000","741.000000","924.000000","632.000000","0.000000","0.000000","0.000000","495.000000","482.000000","480.000000","605.000000","713.000000","564.000000","160.000000","6000.000000",,"8969714.000000",,,,, -"13065.000000","52.785000","13065.000000","52.785000","13065.000000","52.785000",,,,,,,,,,,,,,"1628.000000","5913.000000","3475.000000","9.000000","5913.000000","5913.000000",,,,,,,,,,,"4303696.000000","5631612.000000","478784.000000","0.000000","65064576.000000","0.000000","87727424.000000",,"3623976.000000","26598104.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000",,,,,,,,"1848.000000","4874.000000",,,,,,,,,,,"3918.000000","564.000000","514.000000","524.000000","735.000000","564.000000","632.000000","0.000000","0.000000","0.000000","492.000000","469.000000","477.000000","589.000000","518.000000","564.000000","160.000000","6000.000000",,"8969734.000000",,,,, -"14033.000000","54.290000","14033.000000","54.290000","14033.000000","54.290000",,,,,,,,,,,,,,"1653.000000","10614.000000","8516.000000","13.000000","10614.000000","10614.000000",,,,,,,,,,,"4031068.000000","5463836.000000","478784.000000","0.000000","65049572.000000","0.000000","87727424.000000",,"3623976.000000","26608804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000",,,,,,,,"1836.000000","9223.000000",,,,,,,,,,,"3777.000000","562.000000","533.000000","521.000000","719.000000","638.000000","625.000000","0.000000","0.000000","0.000000","491.000000","464.000000","473.000000","579.000000","531.000000","548.000000","160.000000","6000.000000",,"8969754.000000",,,,, -"14722.000000","55.375000","14722.000000","55.375000","14722.000000","55.375000",,,,,,,,,,,,,,"1703.000000","9723.500000","7724.000000","7.000000","9723.500000","9723.500000",,,,,,,,,,,"4172564.000000","5373472.000000","478784.000000","0.000000","65050652.000000","0.000000","87726480.000000",,"3623976.000000","26588280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000",,,,,,,,"2051.000000","7967.000000",,,,,,,,,,,"3963.000000","561.000000","579.000000","521.000000","712.000000","684.000000","638.000000","0.000000","0.000000","0.000000","490.000000","489.000000","471.000000","572.000000","572.000000","539.000000","160.000000","6000.000000",,"8969774.000000",,,,, -"14538.000000","55.080000","14538.000000","55.080000","14538.000000","55.080000",,,,,,,,,,,,,,"2997.000000","10109.500000","6883.000000","4.000000","10109.500000","10109.500000",,,,,,,,,,,"4256448.000000","5625132.000000","478784.000000","0.000000","65040440.000000","0.000000","87726480.000000",,"3623976.000000","26621172.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000",,,,,,,,"3157.000000","7180.000000",,,,,,,,,,,"4002.000000","560.000000","595.000000","520.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","489.000000","504.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969794.000000",,,,, -"12527.000000","51.925000","12527.000000","51.925000","12527.000000","51.925000",,,,,,,,,,,,,,"1870.000000","6917.000000","4936.000000","53.000000","6917.000000","6917.000000",,,,,,,,,,,"4780736.000000","6380108.000000","478784.000000","0.000000","65038320.000000","0.000000","87726480.000000",,"3623976.000000","26622748.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000",,,,,,,,"1950.000000","5077.000000",,,,,,,,,,,"4021.000000","558.000000","560.000000","519.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","488.000000","495.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969814.000000",,,,, -"12079.000000","51.220000","12079.000000","51.220000","12079.000000","51.220000",,,,,,,,,,,,,,"1829.000000","6554.000000","4549.000000","12.000000","6554.000000","6554.000000",,,,,,,,,,,"4860260.000000","6695860.000000","478784.000000","0.000000","65020712.000000","0.000000","87726480.000000",,"3623976.000000","26642900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000",,,,,,,,"1965.000000","4765.000000",,,,,,,,,,,"3869.000000","555.000000","511.000000","518.000000","707.000000","621.000000","621.000000","0.000000","0.000000","0.000000","487.000000","464.000000","465.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969834.000000",,,,, -"11593.000000","50.455000","11593.000000","50.455000","11593.000000","50.455000",,,,,,,,,,,,,,"627.000000","5474.000000","4631.000000","5.000000","5474.000000","5474.000000",,,,,,,,,,,"5111920.000000","7115288.000000","478784.000000","0.000000","65017516.000000","0.000000","87726480.000000",,"3623976.000000","26657296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000",,,,,,,,"781.000000","4907.000000",,,,,,,,,,,"3935.000000","555.000000","494.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","487.000000","445.000000","464.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969854.000000",,,,, -"13167.000000","52.920000","13167.000000","52.920000","13167.000000","52.920000",,,,,,,,,,,,,,"308.000000","6196.500000","5716.000000","9.000000","6196.500000","6196.500000",,,,,,,,,,,"5174828.000000","7073344.000000","478784.000000","0.000000","65010484.000000","0.000000","87726480.000000",,"3623976.000000","26663032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000",,,,,,,,"403.000000","5965.000000",,,,,,,,,,,"3936.000000","552.000000","488.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","436.000000","463.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969874.000000",,,,, -"12314.000000","51.575000","12314.000000","51.575000","12314.000000","51.575000",,,,,,,,,,,,,,"488.000000","5682.000000","4937.000000","4.000000","5682.000000","5682.000000",,,,,,,,,,,"5359308.000000","7278788.000000","478784.000000","0.000000","64994012.000000","0.000000","87726572.000000",,"3623976.000000","26666292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000",,,,,,,,"558.000000","5379.000000",,,,,,,,,,,"3957.000000","551.000000","494.000000","520.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","442.000000","464.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969894.000000",,,,, -"13428.000000","53.325000","13428.000000","53.325000","13428.000000","53.325000",,,,,,,,,,,,,,"180.000000","6272.500000","6094.000000","4.000000","6272.500000","6272.500000",,,,,,,,,,,"5023764.000000","6985188.000000","478780.000000","0.000000","64999472.000000","0.000000","87726576.000000",,"3623976.000000","26630496.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000",,,,,,,,"299.000000","5971.000000",,,,,,,,,,,"3970.000000","549.000000","484.000000","522.000000","707.000000","557.000000","629.000000","0.000000","0.000000","0.000000","483.000000","448.000000","467.000000","572.000000","516.000000","531.000000","160.000000","6000.000000",,"8969914.000000",,,,, -"14210.000000","54.540000","14210.000000","54.540000","14210.000000","54.540000",,,,,,,,,,,,,,"296.000000","6461.000000","5850.000000","6.000000","6461.000000","6461.000000",,,,,,,,,,,"5149596.000000","6985188.000000","478780.000000","0.000000","64980680.000000","0.000000","87726576.000000",,"3623976.000000","26648040.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000",,,,,,,,"399.000000","6377.000000",,,,,,,,,,,"4162.000000","551.000000","521.000000","529.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","485.000000","475.000000","472.000000","572.000000","553.000000","532.000000","160.000000","6000.000000",,"8969934.000000",,,,, -"14066.000000","54.305000","14066.000000","54.305000","14066.000000","54.305000",,,,,,,,,,,,,,"324.000000","7525.000000","6472.000000","16.000000","7525.000000","7525.000000",,,,,,,,,,,"5007148.000000","6764400.000000","478780.000000","0.000000","64963712.000000","0.000000","87726576.000000",,"3623976.000000","26633152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000",,,,,,,,"513.000000","7740.000000",,,,,,,,,,,"4054.000000","550.000000","544.000000","532.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","486.000000","493.000000","474.000000","572.000000","553.000000","533.000000","160.000000","6000.000000",,"8969954.000000",,,,, -"17093.000000","59.250000","17093.000000","59.250000","17093.000000","59.250000",,,,,,,,,,,,,,"241.000000","5989.000000","5165.000000","8.000000","5989.000000","5989.000000",,,,,,,,,,,"5552316.000000","7435400.000000","478780.000000","0.000000","65380004.000000","0.000000","87726484.000000",,"3623976.000000","26323072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000",,,,,,,,"388.000000","6182.000000",,,,,,,,,,,"4172.000000","550.000000","598.000000","537.000000","707.000000","785.000000","644.000000","0.000000","0.000000","0.000000","486.000000","531.000000","479.000000","572.000000","646.000000","553.000000","160.000000","6000.000000",,"8969974.000000",,,,, -"19788.000000","63.465000","19788.000000","63.465000","19788.000000","63.465000",,,,,,,,,,,,,,"52.000000","12885.500000","12637.000000","148.000000","12885.500000","12885.500000",,,,,,,,,,,"6181464.000000","8190376.000000","478780.000000","0.000000","65366212.000000","0.000000","87726484.000000",,"3623976.000000","26338720.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000",,,,,,,,"190.000000","12890.000000",,,,,,,,,,,"4547.000000","550.000000","692.000000","559.000000","707.000000","900.000000","684.000000","0.000000","0.000000","0.000000","489.000000","608.000000","496.000000","598.000000","856.000000","604.000000","160.000000","6000.000000",,"8969994.000000",,,,, -"18474.000000","61.400000","18474.000000","61.400000","18474.000000","61.400000",,,,,,,,,,,,,,"286.000000","9984.000000","9432.000000","32.000000","9984.000000","9984.000000",,,,,,,,,,,"5761016.000000","7512724.000000","478780.000000","0.000000","65352800.000000","0.000000","87726636.000000",,"3623976.000000","26368640.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000",,,,,,,,"382.000000","9868.000000",,,,,,,,,,,"4379.000000","551.000000","744.000000","574.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","491.000000","659.000000","509.000000","620.000000","856.000000","647.000000","160.000000","6000.000000",,"8970014.000000",,,,, -"17232.000000","59.450000","17232.000000","59.450000","17232.000000","59.450000",,,,,,,,,,,,,,"180.000000","6142.000000","5937.000000","29.000000","6142.000000","6142.000000",,,,,,,,,,,"5762368.000000","7556016.000000","478776.000000","0.000000","65347860.000000","0.000000","87727992.000000",,"3623976.000000","26344060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000",,,,,,,,"195.000000","5971.000000",,,,,,,,,,,"4209.000000","553.000000","749.000000","584.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","494.000000","672.000000","520.000000","622.000000","856.000000","656.000000","160.000000","6000.000000",,"8970034.000000",,,,, -"17680.000000","60.150000","17680.000000","60.150000","17680.000000","60.150000",,,,,,,,,,,,,,"263.000000","8234.500000","7612.000000","12.000000","8234.500000","8234.500000",,,,,,,,,,,"5089856.000000","6694756.000000","478776.000000","0.000000","65338812.000000","0.000000","87726568.000000",,"3623976.000000","26351480.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000",,,,,,,,"685.000000","7909.000000",,,,,,,,,,,"4155.000000","553.000000","719.000000","596.000000","712.000000","810.000000","785.000000","0.000000","0.000000","0.000000","495.000000","634.000000","530.000000","640.000000","684.000000","662.000000","160.000000","6000.000000",,"8970054.000000",,,,, -"20499.000000","64.560000","20499.000000","64.560000","20499.000000","64.560000",,,,,,,,,,,,,,"53.000000","7673.500000","7506.000000","25.000000","7673.500000","7673.500000",,,,,,,,,,,"5446368.000000","7066716.000000","478776.000000","0.000000","65321752.000000","0.000000","87726568.000000",,"3623976.000000","26324468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000",,,,,,,,"165.000000","7622.000000",,,,,,,,,,,"4453.000000","557.000000","746.000000","607.000000","752.000000","877.000000","788.000000","0.000000","0.000000","0.000000","499.000000","657.000000","543.000000","647.000000","780.000000","717.000000","160.000000","6000.000000",,"8970074.000000",,,,, -"18402.000000","61.375000","18402.000000","61.375000","18402.000000","61.375000",,,,,,,,,,,,,,"4789.000000","12107.000000","7137.000000","24.000000","12107.000000","12107.000000",,,,,,,,,,,"5278596.000000","6961856.000000","478776.000000","0.000000","65529668.000000","0.000000","87726568.000000",,"3623976.000000","26101588.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000",,,,,,,,"4970.000000","7317.000000",,,,,,,,,,,"4285.000000","560.000000","778.000000","621.000000","778.000000","877.000000","823.000000","0.000000","0.000000","0.000000","501.000000","673.000000","554.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970094.000000",,,,, -"16313.000000","58.150000","16313.000000","58.150000","16313.000000","58.150000",,,,,,,,,,,,,,"93.000000","7041.000000","6408.000000","18.000000","7041.000000","7041.000000",,,,,,,,,,,"5991628.000000","7465176.000000","478776.000000","0.000000","65625120.000000","0.000000","87726568.000000",,"3623976.000000","26005564.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000",,,,,,,,"218.000000","7362.000000",,,,,,,,,,,"4125.000000","564.000000","757.000000","635.000000","752.000000","877.000000","823.000000","0.000000","0.000000","0.000000","506.000000","668.000000","564.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970114.000000",,,,, -"15224.000000","56.430000","15224.000000","56.430000","15224.000000","56.430000",,,,,,,,,,,,,,"43.000000","6387.000000","5188.000000","25.000000","6387.000000","6387.000000",,,,,,,,,,,"6075364.000000","7402116.000000","478776.000000","0.000000","65601996.000000","0.000000","87726420.000000",,"3623976.000000","25981532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000",,,,,,,,"222.000000","7319.000000",,,,,,,,,,,"3932.000000","566.000000","696.000000","645.000000","752.000000","848.000000","823.000000","0.000000","0.000000","0.000000","507.000000","600.000000","570.000000","647.000000","758.000000","726.000000","160.000000","6000.000000",,"8970134.000000",,,,, -"16372.000000","58.220000","16372.000000","58.220000","16372.000000","58.220000",,,,,,,,,,,,,,"43.000000","5389.500000","5050.000000","17.000000","5389.500000","5389.500000",,,,,,,,,,,"6159316.000000","7606360.000000","478776.000000","0.000000","65580336.000000","0.000000","87726488.000000",,"3623976.000000","26104452.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000",,,,,,,,"125.000000","5560.000000",,,,,,,,,,,"4204.000000","570.000000","652.000000","652.000000","752.000000","733.000000","823.000000","0.000000","0.000000","0.000000","510.000000","577.000000","580.000000","647.000000","626.000000","726.000000","160.000000","6000.000000",,"8970154.000000",,,,, -"17393.000000","59.810000","17393.000000","59.810000","17393.000000","59.810000",,,,,,,,,,,,,,"51.000000","6649.500000","6222.000000","19.000000","6649.500000","6649.500000",,,,,,,,,,,"6369032.000000","7920932.000000","478776.000000","0.000000","65560140.000000","0.000000","87726488.000000",,"3623976.000000","26123692.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000",,,,,,,,"171.000000","6854.000000",,,,,,,,,,,"4360.000000","575.000000","645.000000","667.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","515.000000","584.000000","594.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970174.000000",,,,, -"15954.000000","57.550000","15954.000000","57.550000","15954.000000","57.550000",,,,,,,,,,,,,,"47.000000","6627.000000","5604.000000","21.000000","6627.000000","6627.000000",,,,,,,,,,,"6159320.000000","7846956.000000","478776.000000","0.000000","65547728.000000","0.000000","87726488.000000",,"3623976.000000","26161860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000",,,,,,,,"251.000000","7350.000000",,,,,,,,,,,"4182.000000","577.000000","648.000000","675.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","517.000000","599.000000","602.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970194.000000",,,,, -"16716.000000","58.750000","16716.000000","58.750000","16716.000000","58.750000",,,,,,,,,,,,,,"52.000000","4941.000000","4888.000000","15.000000","4941.000000","4941.000000",,,,,,,,,,,"6564492.000000","8394572.000000","478776.000000","0.000000","65557180.000000","0.000000","87726488.000000",,"3623976.000000","26149540.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000",,,,,,,,"166.000000",,,,,,,,,,,,"4419.000000","581.000000","649.000000","685.000000","752.000000","710.000000","823.000000","0.000000","0.000000","0.000000","521.000000","605.000000","611.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970214.000000",,,,, -"15563.000000","56.935000","15563.000000","56.935000","15563.000000","56.935000",,,,,,,,,,,,,,"119.000000","5666.000000","5567.000000","51.000000","5666.000000","5666.000000",,,,,,,,,,,"6249784.000000","7975004.000000","478776.000000","0.000000","65536392.000000","0.000000","87726348.000000",,"3623976.000000","26168072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000",,,,,,,,"139.000000","5507.000000",,,,,,,,,,,"4089.000000","585.000000","636.000000","690.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","525.000000","579.000000","615.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970234.000000",,,,, -"16319.000000","58.105000","16319.000000","58.105000","16319.000000","58.105000",,,,,,,,,,,,,,"329.000000","4742.000000","4228.000000","34.000000","4742.000000","4742.000000",,,,,,,,,,,"6375700.000000","7997216.000000","478776.000000","0.000000","65513436.000000","0.000000","87726440.000000",,"3623976.000000","26184808.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000",,,,,,,,"411.000000","4515.000000",,,,,,,,,,,"4377.000000","588.000000","634.000000","693.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","527.000000","589.000000","621.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970254.000000",,,,, -"13003.000000","52.905000","13003.000000","52.905000","13003.000000","52.905000",,,,,,,,,,,,,,"46.000000","8229.500000","8077.000000","54.000000","8229.500000","8229.500000",,,,,,,,,,,"6339300.000000","7876924.000000","478776.000000","0.000000","65507988.000000","0.000000","87726440.000000",,"3623976.000000","26193752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000",,,,,,,,"145.000000","8191.000000",,,,,,,,,,,"4150.000000","585.000000","584.000000","682.000000","743.000000","725.000000","823.000000","0.000000","0.000000","0.000000","526.000000","545.000000","614.000000","650.000000","625.000000","726.000000","160.000000","6000.000000",,"8970274.000000",,,,, -"18547.000000","61.590000","18547.000000","61.590000","18547.000000","61.590000",,,,,,,,,,,,,,"81.000000","7082.500000","6889.000000","22.000000","7082.500000","7082.500000",,,,,,,,,,,"6297352.000000","7751092.000000","478776.000000","0.000000","65503120.000000","0.000000","87726440.000000",,"3623976.000000","26213864.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000",,,,,,,,"176.000000","7018.000000",,,,,,,,,,,"4233.000000","590.000000","638.000000","679.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","529.000000","575.000000","608.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970294.000000",,,,, -"15410.000000","56.670000","15410.000000","56.670000","15410.000000","56.670000",,,,,,,,,,,,,,"68.000000","6507.000000","6237.000000","25.000000","6507.000000","6507.000000",,,,,,,,,,,"6108612.000000","7593232.000000","478776.000000","0.000000","65492420.000000","0.000000","87726440.000000",,"3623976.000000","26202020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000",,,,,,,,"150.000000","6558.000000",,,,,,,,,,,"4244.000000","591.000000","637.000000","672.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","563.000000","602.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970314.000000",,,,, -"14745.000000","55.620000","14745.000000","55.620000","14745.000000","55.620000",,,,,,,,,,,,,,"53.000000","2073.000000","1918.000000","43.000000","2073.000000","2073.000000",,,,,,,,,,,"6318376.000000","7614252.000000","478776.000000","0.000000","65473556.000000","0.000000","87726488.000000",,"3623976.000000","26221604.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000",,,,,,,,"99.000000","2075.000000",,,,,,,,,,,"4191.000000","590.000000","654.000000","663.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","571.000000","594.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970334.000000",,,,, -"15791.000000","57.250000","15791.000000","57.250000","15791.000000","57.250000",,,,,,,,,,,,,,"57.000000","5451.500000","5099.000000","20.000000","5451.500000","5451.500000",,,,,,,,,,,"5815056.000000","7099876.000000","478776.000000","0.000000","65454560.000000","0.000000","87726488.000000",,"3623976.000000","26204668.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000",,,,,,,,"492.000000","5254.000000",,,,,,,,,,,"4222.000000","591.000000","597.000000","655.000000","743.000000","673.000000","782.000000","0.000000","0.000000","0.000000","531.000000","544.000000","590.000000","650.000000","629.000000","717.000000","160.000000","6000.000000",,"8970354.000000",,,,, -"16613.000000","58.530000","16613.000000","58.530000","16613.000000","58.530000",,,,,,,,,,,,,,"51.000000","6115.000000","6005.000000","21.000000","6115.000000","6115.000000",,,,,,,,,,,"5951444.000000","7100624.000000","478776.000000","0.000000","65444068.000000","0.000000","87728584.000000",,"3623976.000000","26226408.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000",,,,,,,,"138.000000","6035.000000",,,,,,,,,,,"4069.000000","591.000000","610.000000","645.000000","743.000000","696.000000","733.000000","0.000000","0.000000","0.000000","531.000000","550.000000","580.000000","650.000000","637.000000","650.000000","160.000000","6000.000000",,"8970374.000000",,,,, -"14821.000000","55.725000","14821.000000","55.725000","14821.000000","55.725000",,,,,,,,,,,,,,"51.000000","5686.500000","4605.000000","18.000000","5686.500000","5686.500000",,,,,,,,,,,"5621576.000000","6986040.000000","478776.000000","0.000000","65444408.000000","0.000000","87728784.000000",,"3623976.000000","26225264.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000",,,,,,,,"261.000000","6456.000000",,,,,,,,,,,"3965.000000","592.000000","636.000000","635.000000","743.000000","696.000000","711.000000","0.000000","0.000000","0.000000","531.000000","558.000000","571.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970394.000000",,,,, -"14756.000000","55.630000","14756.000000","55.630000","14756.000000","55.630000",,,,,,,,,,,,,,"51.000000","6384.500000","5990.000000","25.000000","6384.500000","6384.500000",,,,,,,,,,,"6177880.000000","7712540.000000","478776.000000","0.000000","65460764.000000","0.000000","87764408.000000",,"3623976.000000","26249284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000",,,,,,,,"161.000000","6565.000000",,,,,,,,,,,"4132.000000","594.000000","625.000000","628.000000","743.000000","696.000000","702.000000","0.000000","0.000000","0.000000","532.000000","548.000000","566.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970414.000000",,,,, -"14613.000000","55.400000","14613.000000","55.400000","14613.000000","55.400000",,,,,,,,,,,,,,"63.000000","5010.000000","4911.000000","19.000000","5010.000000","5010.000000",,,,,,,,,,,"6198864.000000","7817412.000000","478776.000000","0.000000","65443124.000000","0.000000","87764420.000000",,"3623976.000000","26286804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000",,,,,,,,"133.000000","4912.000000",,,,,,,,,,,"4179.000000","596.000000","592.000000","624.000000","743.000000","695.000000","702.000000","0.000000","0.000000","0.000000","533.000000","523.000000","565.000000","650.000000","591.000000","646.000000","160.000000","6000.000000",,"8970434.000000",,,,, -"16089.000000","57.705000","16089.000000","57.705000","16089.000000","57.705000",,,,,,,,,,,,,,"152.000000","7417.500000","7087.000000","17.000000","7417.500000","7417.500000",,,,,,,,,,,"5863848.000000","7386684.000000","478776.000000","0.000000","65438364.000000","0.000000","87764420.000000",,"3623976.000000","26289516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000",,,,,,,,"176.000000","7419.000000",,,,,,,,,,,"4367.000000","598.000000","597.000000","624.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","536.000000","547.000000","565.000000","656.000000","683.000000","649.000000","160.000000","6000.000000",,"8970454.000000",,,,, -"14933.000000","55.890000","14933.000000","55.890000","14933.000000","55.890000",,,,,,,,,,,,,,"60.000000","6719.500000","6644.000000","17.000000","6719.500000","6719.500000",,,,,,,,,,,"5234704.000000","6946284.000000","478776.000000","0.000000","65425044.000000","0.000000","87764420.000000",,"3623976.000000","26311328.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000",,,,,,,,"170.000000","6564.000000",,,,,,,,,,,"4047.000000","601.000000","589.000000","617.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","538.000000","546.000000","558.000000","656.000000","683.000000","646.000000","160.000000","6000.000000",,"8970474.000000",,,,, -"15058.000000","56.080000","15058.000000","56.080000","15058.000000","56.080000",,,,,,,,,,,,,,"39.000000","6464.500000","6211.000000","32.000000","6464.500000","6464.500000",,,,,,,,,,,"5046956.000000","6832512.000000","478776.000000","0.000000","65413676.000000","0.000000","87764268.000000",,"3623976.000000","26321180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000",,,,,,,,"137.000000","6541.000000",,,,,,,,,,,"4155.000000","603.000000","601.000000","615.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","541.000000","562.000000","557.000000","656.000000","683.000000","639.000000","160.000000","6000.000000",,"8970494.000000",,,,, -"14597.000000","55.350000","14597.000000","55.350000","14597.000000","55.350000",,,,,,,,,,,,,,"73.000000","9394.500000","9084.000000","40.000000","9394.500000","9394.500000",,,,,,,,,,,"5178760.000000","7026940.000000","478776.000000","0.000000","65394196.000000","0.000000","87764324.000000",,"3623976.000000","26340208.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000",,,,,,,,"203.000000","9429.000000",,,,,,,,,,,"4137.000000","606.000000","584.000000","611.000000","743.000000","631.000000","696.000000","0.000000","0.000000","0.000000","543.000000","536.000000","552.000000","656.000000","605.000000","629.000000","160.000000","6000.000000",,"8970514.000000",,,,, -"14061.000000","54.505000","14061.000000","54.505000","14061.000000","54.505000",,,,,,,,,,,,,,"77.000000","14021.500000","13801.000000","63.000000","14021.500000","14021.500000",,,,,,,,,,,"5220700.000000","6880148.000000","478776.000000","0.000000","65390696.000000","0.000000","87764324.000000",,"3623976.000000","26337004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000",,,,,,,,"217.000000","13947.000000",,,,,,,,,,,"4047.000000","609.000000","588.000000","607.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","545.000000","524.000000","547.000000","656.000000","595.000000","629.000000","160.000000","6000.000000",,"8970534.000000",,,,, -"15058.000000","56.060000","15058.000000","56.060000","15058.000000","56.060000",,,,,,,,,,,,,,"382.000000","5720.000000","5320.000000","22.000000","5720.000000","5720.000000",,,,,,,,,,,"5430416.000000","7151624.000000","478776.000000","0.000000","65372456.000000","0.000000","87764324.000000",,"3623976.000000","26376740.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000",,,,,,,,"438.000000","5299.000000",,,,,,,,,,,"4118.000000","609.000000","574.000000","603.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","514.000000","542.000000","656.000000","550.000000","629.000000","160.000000","6000.000000",,"8970554.000000",,,,, -"13477.000000","53.580000","13477.000000","53.580000","13477.000000","53.580000",,,,,,,,,,,,,,"1543.000000","7325.000000","5991.000000","25.000000","7325.000000","7325.000000",,,,,,,,,,,"5155096.000000","6630556.000000","478776.000000","0.000000","65365580.000000","0.000000","87764324.000000",,"3623976.000000","26382484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000",,,,,,,,"677.000000","6437.000000",,,,,,,,,,,"4118.000000","609.000000","564.000000","607.000000","733.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","517.000000","546.000000","650.000000","630.000000","630.000000","160.000000","6000.000000",,"8970574.000000",,,,, -"18520.000000","61.475000","18520.000000","61.475000","18520.000000","61.475000",,,,,,,,,,,,,,"2740.000000","38507.000000","34859.000000","35.000000","38507.000000","38507.000000",,,,,,,,,,,"5343840.000000","6630552.000000","478776.000000","0.000000","65355420.000000","0.000000","87764324.000000",,"3623976.000000","26373872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000",,,,,,,,"4072.000000","35341.000000",,,,,,,,,,,"4119.000000","616.000000","647.000000","609.000000","778.000000","1092.000000","696.000000","0.000000","0.000000","0.000000","550.000000","564.000000","545.000000","659.000000","768.000000","634.000000","160.000000","6000.000000",,"8970594.000000",,,,, -"18741.000000","61.810000","18741.000000","61.810000","18741.000000","61.810000",,,,,,,,,,,,,,"60.000000","6559.000000","5378.000000","22.000000","6559.000000","6559.000000",,,,,,,,,,,"5520340.000000","6871116.000000","478760.000000","0.000000","65333124.000000","0.000000","87764304.000000",,"3623976.000000","26368488.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000",,,,,,,,"250.000000","7430.000000",,,,,,,,,,,"4178.000000","622.000000","729.000000","621.000000","785.000000","1092.000000","797.000000","0.000000","0.000000","0.000000","554.000000","610.000000","551.000000","662.000000","779.000000","637.000000","160.000000","6000.000000",,"8970614.000000",,,,, -"21977.000000","66.870000","21977.000000","66.870000","21977.000000","66.870000",,,,,,,,,,,,,,"51.000000","3018.500000","2744.000000","6.000000","3018.500000","3018.500000",,,,,,,,,,,"5520160.000000","7185792.000000","478760.000000","0.000000","65321152.000000","0.000000","87764120.000000",,"3623976.000000","26379716.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000",,,,,,,,"128.000000","3114.000000",,,,,,,,,,,"4355.000000","633.000000","883.000000","653.000000","797.000000","1247.000000","900.000000","0.000000","0.000000","0.000000","560.000000","678.000000","567.000000","672.000000","868.000000","713.000000","160.000000","6000.000000",,"8970634.000000",,,,, -"21223.000000","65.685000","21223.000000","65.685000","21223.000000","65.685000",,,,,,,,,,,,,,"60.000000","7292.000000","6874.000000","30.000000","7292.000000","7292.000000",,,,,,,,,,,"5142856.000000","7269864.000000","478760.000000","0.000000","65305336.000000","0.000000","87764304.000000",,"3623976.000000","26308196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000",,,,,,,,"546.000000","7104.000000",,,,,,,,,,,"4468.000000","647.000000","1003.000000","691.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","568.000000","742.000000","585.000000","717.000000","868.000000","765.000000","160.000000","6000.000000",,"8970654.000000",,,,, -"19746.000000","63.375000","19746.000000","63.375000","19746.000000","63.375000",,,,,,,,,,,,,,"54.000000","7183.000000","6997.000000","14.000000","7183.000000","7183.000000",,,,,,,,,,,"5092148.000000","7156244.000000","478760.000000","0.000000","65313480.000000","0.000000","87764304.000000",,"3623976.000000","26273372.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000",,,,,,,,"153.000000","7161.000000",,,,,,,,,,,"4291.000000","652.000000","1019.000000","703.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","572.000000","756.000000","593.000000","726.000000","868.000000","768.000000","160.000000","6000.000000",,"8970674.000000",,,,, -"17637.000000","60.060000","17637.000000","60.060000","17637.000000","60.060000",,,,,,,,,,,,,,"121.000000","5487.500000","5324.000000","12.000000","5487.500000","5487.500000",,,,,,,,,,,"5059368.000000","6808616.000000","478760.000000","0.000000","65296348.000000","0.000000","87764332.000000",,"3623976.000000","26288184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000",,,,,,,,"137.000000","5391.000000",,,,,,,,,,,"4412.000000","656.000000","932.000000","712.000000","857.000000","1184.000000","1092.000000","0.000000","0.000000","0.000000","575.000000","730.000000","602.000000","727.000000","852.000000","776.000000","160.000000","6000.000000",,"8970694.000000",,,,, -"13666.000000","53.840000","13666.000000","53.840000","13666.000000","53.840000",,,,,,,,,,,,,,"581.000000","7151.000000","6472.000000","17.000000","7151.000000","7151.000000",,,,,,,,,,,"5122280.000000","6577928.000000","478760.000000","0.000000","65297512.000000","0.000000","87764332.000000",,"3623976.000000","26253144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000",,,,,,,,"672.000000","6577.000000",,,,,,,,,,,"3981.000000","657.000000","710.000000","707.000000","857.000000","913.000000","1092.000000","0.000000","0.000000","0.000000","576.000000","611.000000","597.000000","727.000000","830.000000","776.000000","160.000000","6000.000000",,"8970714.000000",,,,, -"13301.000000","53.260000","13301.000000","53.260000","13301.000000","53.260000",,,,,,,,,,,,,,"60.000000","4931.500000","4850.000000","22.000000","4931.500000","4931.500000",,,,,,,,,,,"5206920.000000","6725480.000000","478760.000000","0.000000","65278336.000000","0.000000","87765084.000000",,"3623976.000000","26422524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000",,,,,,,,"137.000000","4815.000000",,,,,,,,,,,"4140.000000","659.000000","612.000000","707.000000","857.000000","857.000000","1092.000000","0.000000","0.000000","0.000000","577.000000","536.000000","595.000000","727.000000","776.000000","776.000000","160.000000","6000.000000",,"8970734.000000",,,,, -"13782.000000","54.010000","13782.000000","54.010000","13782.000000","54.010000",,,,,,,,,,,,,,"968.000000","11337.000000","10137.000000","26.000000","11337.000000","11337.000000",,,,,,,,,,,"5433632.000000","6862384.000000","478760.000000","0.000000","65269480.000000","0.000000","87764332.000000",,"3623976.000000","26429364.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000",,,,,,,,"1138.000000","10429.000000",,,,,,,,,,,"4033.000000","660.000000","550.000000","703.000000","857.000000","594.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","479.000000","588.000000","727.000000","511.000000","776.000000","160.000000","6000.000000",,"8970754.000000",,,,, -"12716.000000","52.330000","12716.000000","52.330000","12716.000000","52.330000",,,,,,,,,,,,,,"104.000000","4438.500000","4074.000000","8.000000","4438.500000","4438.500000",,,,,,,,,,,"5119060.000000","6505864.000000","478760.000000","0.000000","65260124.000000","0.000000","87764332.000000",,"3623976.000000","26476576.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000",,,,,,,,"188.000000","4510.000000",,,,,,,,,,,"3995.000000","661.000000","554.000000","700.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","475.000000","583.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970774.000000",,,,, -"13041.000000","52.835000","13041.000000","52.835000","13041.000000","52.835000",,,,,,,,,,,,,,"53.000000","5975.000000","5921.000000","16.000000","5975.000000","5975.000000",,,,,,,,,,,"5202980.000000","6526868.000000","478760.000000","0.000000","65242600.000000","0.000000","87764364.000000",,"3623976.000000","26486088.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000",,,,,,,,"205.000000",,,,,,,,,,,,"3888.000000","663.000000","557.000000","698.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","478.000000","579.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970794.000000",,,,, -"12890.000000","52.595000","12890.000000","52.595000","12890.000000","52.595000",,,,,,,,,,,,,,"56.000000","6023.000000","4717.000000","9.000000","6023.000000","6023.000000",,,,,,,,,,,"5514332.000000","6821240.000000","478760.000000","0.000000","65236200.000000","0.000000","87764364.000000",,"3623976.000000","26490704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000",,,,,,,,"246.000000","7026.000000",,,,,,,,,,,"3860.000000","663.000000","534.000000","693.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","455.000000","572.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970814.000000",,,,, -"15270.000000","56.315000","15270.000000","56.315000","15270.000000","56.315000",,,,,,,,,,,,,,"65.000000","8485.500000","7069.000000","25.000000","8485.500000","8485.500000",,,,,,,,,,,"5556280.000000","6936012.000000","478760.000000","0.000000","65214124.000000","0.000000","87764364.000000",,"3623976.000000","26522796.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000",,,,,,,,"261.000000","9576.000000",,,,,,,,,,,"4105.000000","664.000000","556.000000","694.000000","857.000000","621.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","488.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970834.000000",,,,, -"14576.000000","55.220000","14576.000000","55.220000","14576.000000","55.220000",,,,,,,,,,,,,,"358.000000","8269.500000","6616.000000","39.000000","8269.500000","8269.500000",,,,,,,,,,,"5577076.000000","7082640.000000","478760.000000","0.000000","65203628.000000","0.000000","87764192.000000",,"3623976.000000","26530856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000",,,,,,,,"536.000000","9029.000000",,,,,,,,,,,"4064.000000","664.000000","561.000000","696.000000","857.000000","681.000000","1092.000000","0.000000","0.000000","0.000000","580.000000","501.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970854.000000",,,,, -"15993.000000","57.430000","15993.000000","57.430000","15993.000000","57.430000",,,,,,,,,,,,,,"55.000000","7285.000000","5957.000000","18.000000","7285.000000","7285.000000",,,,,,,,,,,"5349748.000000","7013948.000000","478760.000000","0.000000","65190440.000000","0.000000","87764388.000000",,"3623976.000000","26546468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000",,,,,,,,"241.000000","8315.000000",,,,,,,,,,,"4227.000000","663.000000","598.000000","699.000000","857.000000","737.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","540.000000","576.000000","727.000000","621.000000","776.000000","160.000000","6000.000000",,"8970874.000000",,,,, -"17219.000000","59.345000","17219.000000","59.345000","17219.000000","59.345000",,,,,,,,,,,,,,"49.000000","10588.000000","9133.000000","22.000000","10588.000000","10588.000000",,,,,,,,,,,"5790148.000000","7475324.000000","478760.000000","0.000000","65172840.000000","0.000000","87764388.000000",,"3623976.000000","26535876.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000",,,,,,,,"271.000000","11722.000000",,,,,,,,,,,"4145.000000","661.000000","649.000000","694.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","577.000000","572.000000","578.000000","726.000000","726.000000","776.000000","160.000000","6000.000000",,"8970894.000000",,,,, -"14678.000000","55.360000","14678.000000","55.360000","14678.000000","55.360000",,,,,,,,,,,,,,"6058.000000","11017.500000","3886.000000","8.000000","11017.500000","11017.500000",,,,,,,,,,,"5790148.000000","7412412.000000","478760.000000","0.000000","65164092.000000","0.000000","87764388.000000",,"3623976.000000","26462568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000",,,,,,,,"5805.000000","6284.000000",,,,,,,,,,,"4194.000000","658.000000","658.000000","681.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","574.000000","580.000000","570.000000","726.000000","726.000000","765.000000","160.000000","6000.000000",,"8970914.000000",,,,, -"16621.000000","58.405000","16621.000000","58.405000","16621.000000","58.405000",,,,,,,,,,,,,,"4001.000000","15921.500000","10755.000000","20.000000","15921.500000","15921.500000",,,,,,,,,,,"5828872.000000","7298412.000000","478760.000000","0.000000","65169132.000000","0.000000","87764388.000000",,"3623976.000000","26384032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000",,,,,,,,"3877.000000","13209.000000",,,,,,,,,,,"4032.000000","657.000000","664.000000","656.000000","848.000000","806.000000","910.000000","0.000000","0.000000","0.000000","573.000000","584.000000","558.000000","726.000000","726.000000","762.000000","160.000000","6000.000000",,"8970934.000000",,,,, -"14528.000000","55.115000","14528.000000","55.115000","14528.000000","55.115000",,,,,,,,,,,,,,"1750.000000","12482.500000","10221.000000","23.000000","12482.500000","12482.500000",,,,,,,,,,,"5535824.000000","6858564.000000","478760.000000","0.000000","65149108.000000","0.000000","87764944.000000",,"3623976.000000","26402544.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000",,,,,,,,"2738.000000","10256.000000",,,,,,,,,,,"4113.000000","654.000000","611.000000","616.000000","848.000000","727.000000","818.000000","0.000000","0.000000","0.000000","571.000000","540.000000","537.000000","726.000000","659.000000","659.000000","160.000000","6000.000000",,"8970954.000000",,,,, -"16287.000000","57.880000","16287.000000","57.880000","16287.000000","57.880000",,,,,,,,,,,,,,"4429.000000","25275.000000","18213.000000","23.000000","25275.000000","25275.000000",,,,,,,,,,,"5430364.000000","6984940.000000","478760.000000","0.000000","65166916.000000","0.000000","87764340.000000",,"3623976.000000","26388880.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000",,,,,,,,"5109.000000","22799.000000",,,,,,,,,,,"4076.000000","652.000000","654.000000","608.000000","839.000000","780.000000","780.000000","0.000000","0.000000","0.000000","568.000000","555.000000","530.000000","683.000000","659.000000","657.000000","160.000000","6000.000000",,"8970974.000000",,,,, -"15332.000000","56.390000","15332.000000","56.390000","15332.000000","56.390000",,,,,,,,,,,,,,"701.000000","12795.000000","10710.000000","24.000000","12795.000000","12795.000000",,,,,,,,,,,"5256672.000000","6958056.000000","478760.000000","0.000000","65172744.000000","0.000000","87764340.000000",,"3623976.000000","26398520.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000",,,,,,,,"925.000000","13254.000000",,,,,,,,,,,"3974.000000","649.000000","648.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","564.000000","545.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8970994.000000",,,,, -"13337.000000","53.255000","13337.000000","53.255000","13337.000000","53.255000",,,,,,,,,,,,,,"6718.000000","25426.000000","17751.000000","16.000000","25426.000000","25426.000000",,,,,,,,,,,"5318156.000000","7061216.000000","478760.000000","0.000000","65152752.000000","0.000000","87757936.000000",,"3623976.000000","26452556.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000",,,,,,,,"6273.000000","20108.000000",,,,,,,,,,,"4185.000000","645.000000","625.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","561.000000","531.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8971014.000000",,,,, -"13002.000000","52.720000","13002.000000","52.720000","13002.000000","52.720000",,,,,,,,,,,,,,"12831.000000","23631.500000","8879.000000","31.000000","23631.500000","23631.500000",,,,,,,,,,,"5423016.000000","6850352.000000","478760.000000","0.000000","65137676.000000","0.000000","87757936.000000",,"3623976.000000","26483464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000",,,,,,,,"13889.000000","11664.000000",,,,,,,,,,,"3989.000000","642.000000","551.000000","596.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","560.000000","490.000000","521.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971034.000000",,,,, -"13260.000000","53.115000","13260.000000","53.115000","13260.000000","53.115000",,,,,,,,,,,,,,"12906.000000","27727.500000","13426.000000","19.000000","27727.500000","27727.500000",,,,,,,,,,,"5527816.000000","7206800.000000","478760.000000","0.000000","65119288.000000","0.000000","87757876.000000",,"3623976.000000","26498764.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000",,,,,,,,"13005.000000","16118.000000",,,,,,,,,,,"4107.000000","640.000000","519.000000","593.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","558.000000","477.000000","520.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971054.000000",,,,, -"13493.000000","53.475000","13493.000000","53.475000","13493.000000","53.475000",,,,,,,,,,,,,,"11038.000000","22479.000000","11440.000000","86.000000","22479.000000","22479.000000",,,,,,,,,,,"5360044.000000","7329212.000000","478760.000000","0.000000","65101964.000000","0.000000","87757876.000000",,"3623976.000000","26521312.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000",,,,,,,,,"12374.000000",,,,,,,,,,,"3954.000000","636.000000","508.000000","590.000000","837.000000","571.000000","737.000000","0.000000","0.000000","0.000000","554.000000","471.000000","520.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971074.000000",,,,, -"14068.000000","54.370000","14068.000000","54.370000","14068.000000","54.370000",,,,,,,,,,,,,,"100.000000","19217.500000","18033.000000","28.000000","19217.500000","19217.500000",,,,,,,,,,,"5255248.000000","7245388.000000","478760.000000","0.000000","65093328.000000","0.000000","87757936.000000",,"3623976.000000","26560116.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000",,,,,,,,"327.000000","19975.000000",,,,,,,,,,,"4032.000000","635.000000","535.000000","592.000000","837.000000","605.000000","737.000000","0.000000","0.000000","0.000000","553.000000","485.000000","522.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971094.000000",,,,, -"14613.000000","55.220000","14613.000000","55.220000","14613.000000","55.220000",,,,,,,,,,,,,,"539.000000","11285.000000","9409.000000","17.000000","11285.000000","11285.000000",,,,,,,,,,,"5510324.000000","7033248.000000","478760.000000","0.000000","65085004.000000","0.000000","87757936.000000",,"3623976.000000","26594856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000",,,,,,,,"809.000000","11813.000000",,,,,,,,,,,"4170.000000","633.000000","547.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","551.000000","496.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971114.000000",,,,, -"15480.000000","56.575000","15480.000000","56.575000","15480.000000","56.575000",,,,,,,,,,,,,,"597.000000","21656.500000","21138.000000","23.000000","21656.500000","21656.500000",,,,,,,,,,,"5678092.000000","7096160.000000","478760.000000","0.000000","65074268.000000","0.000000","87757936.000000",,"3623976.000000","26605000.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000",,,,,,,,"818.000000","20760.000000",,,,,,,,,,,"4105.000000","632.000000","573.000000","593.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","550.000000","525.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971134.000000",,,,, -"14994.000000","55.800000","14994.000000","55.800000","14994.000000","55.800000",,,,,,,,,,,,,,"874.000000","35984.000000","35110.000000","33.000000","35984.000000","35984.000000",,,,,,,,,,,"5573144.000000","7223044.000000","478760.000000","0.000000","65054976.000000","0.000000","87757844.000000",,"3623976.000000","26657388.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000",,,,,,,,"1100.000000",,,,,,,,,,,,"4104.000000","631.000000","577.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","549.000000","536.000000","529.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971154.000000",,,,, -"14603.000000","55.185000","14603.000000","55.185000","14603.000000","55.185000",,,,,,,,,,,,,,"2100.000000","21709.500000","20628.000000","44.000000","21709.500000","21709.500000",,,,,,,,,,,"5162988.000000","7274264.000000","478760.000000","0.000000","65048320.000000","0.000000","87757844.000000",,"3623976.000000","26705580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000",,,,,,,,"2339.000000","18351.000000",,,,,,,,,,,"4247.000000","633.000000","585.000000","593.000000","837.000000","620.000000","733.000000","0.000000","0.000000","0.000000","551.000000","548.000000","530.000000","674.000000","592.000000","637.000000","160.000000","6000.000000",,"8971174.000000",,,,, -"17388.000000","59.540000","17388.000000","59.540000","17388.000000","59.540000",,,,,,,,,,,,,,"20396.000000","32420.500000","10753.000000","15.000000","32420.500000","32420.500000",,,,,,,,,,,"5142020.000000","7379120.000000","478760.000000","0.000000","65030248.000000","0.000000","87757844.000000",,"3623976.000000","26723340.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000",,,,,,,,"19967.000000","13724.000000",,,,,,,,,,,"4248.000000","631.000000","628.000000","589.000000","837.000000","995.000000","709.000000","0.000000","0.000000","0.000000","550.000000","563.000000","526.000000","674.000000","787.000000","628.000000","160.000000","6000.000000",,"8971194.000000",,,,, -"17613.000000","59.890000","17613.000000","59.890000","17613.000000","59.890000",,,,,,,,,,,,,,"10834.000000","26108.500000","14996.000000","42.000000","26108.500000","26108.500000",,,,,,,,,,,"4974108.000000","6896640.000000","478760.000000","0.000000","65027824.000000","0.000000","87757704.000000",,"3623976.000000","26731200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000",,,,,,,,"11059.000000","15327.000000",,,,,,,,,,,"4379.000000","634.000000","674.000000","598.000000","837.000000","995.000000","733.000000","0.000000","0.000000","0.000000","551.000000","587.000000","531.000000","683.000000","787.000000","628.000000","160.000000","6000.000000",,"8971214.000000",,,,, -"20111.000000","63.795000","20111.000000","63.795000","20111.000000","63.795000",,,,,,,,,,,,,,"10192.000000","24541.000000","13620.000000","11.000000","24541.000000","24541.000000",,,,,,,,,,,"4806292.000000","6561048.000000","478760.000000","0.000000","65011788.000000","0.000000","87757660.000000",,"3623976.000000","26745872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000",,,,,,,,"11264.000000","14004.000000",,,,,,,,,,,"4321.000000","639.000000","739.000000","608.000000","839.000000","995.000000","780.000000","0.000000","0.000000","0.000000","555.000000","629.000000","539.000000","687.000000","787.000000","662.000000","160.000000","6000.000000",,"8971234.000000",,,,, -"15542.000000","56.635000","15542.000000","56.635000","15542.000000","56.635000",,,,,,,,,,,,,,"15852.000000","19185.000000","3382.000000","8.000000","19185.000000","19185.000000",,,,,,,,,,,"5088372.000000","6753404.000000","478760.000000","0.000000","65006264.000000","0.000000","87757844.000000",,"3623976.000000","26730732.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000",,,,,,,,"15348.000000","3787.000000",,,,,,,,,,,"4220.000000","641.000000","749.000000","617.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","555.000000","632.000000","544.000000","713.000000","770.000000","667.000000","160.000000","6000.000000",,"8971254.000000",,,,, -"17628.000000","59.890000","17628.000000","59.890000","17628.000000","59.890000",,,,,,,,,,,,,,"17248.000000","26331.000000","8457.000000","11.000000","26331.000000","26331.000000",,,,,,,,,,,"4962544.000000","6616512.000000","478760.000000","0.000000","64986884.000000","0.000000","87757844.000000",,"3623976.000000","26772816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000",,,,,,,,"18405.000000","8551.000000",,,,,,,,,,,"4129.000000","643.000000","755.000000","618.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","556.000000","630.000000","546.000000","713.000000","770.000000","674.000000","160.000000","6000.000000",,"8971274.000000",,,,, -"17862.000000","60.270000","17862.000000","60.270000","17862.000000","60.270000",,,,,,,,,,,,,,"16570.000000","32625.500000","15950.000000","35.000000","32625.500000","32625.500000",,,,,,,,,,,"4857684.000000","6616512.000000","478760.000000","0.000000","65005972.000000","0.000000","87757844.000000",,"3623976.000000","26754284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000",,,,,,,,"16307.000000","16423.000000",,,,,,,,,,,"4302.000000","645.000000","734.000000","625.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","558.000000","614.000000","553.000000","713.000000","725.000000","680.000000","160.000000","6000.000000",,"8971294.000000",,,,, -"16952.000000","58.830000","16952.000000","58.830000","16952.000000","58.830000",,,,,,,,,,,,,,"9218.000000","22607.500000","12733.000000","15.000000","22607.500000","22607.500000",,,,,,,,,,,"4995216.000000","6391676.000000","478760.000000","0.000000","64978860.000000","0.000000","87757844.000000",,"3623976.000000","26742524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000",,,,,,,,"10318.000000","12945.000000",,,,,,,,,,,"4314.000000","647.000000","718.000000","635.000000","848.000000","793.000000","794.000000","0.000000","0.000000","0.000000","560.000000","623.000000","563.000000","713.000000","697.000000","687.000000","160.000000","6000.000000",,"8971314.000000",,,,, -"18299.000000","60.940000","18299.000000","60.940000","18299.000000","60.940000",,,,,,,,,,,,,,"82.000000","7079.000000","6028.000000","25.000000","7079.000000","7079.000000",,,,,,,,,,,"5183916.000000","6570464.000000","478760.000000","0.000000","64971260.000000","0.000000","87757796.000000",,"3623976.000000","26736064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000",,,,,,,,"282.000000","7765.000000",,,,,,,,,,,"4252.000000","651.000000","701.000000","648.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","563.000000","631.000000","574.000000","713.000000","713.000000","697.000000","160.000000","6000.000000",,"8971334.000000",,,,, -"17053.000000","58.980000","17053.000000","58.980000","17053.000000","58.980000",,,,,,,,,,,,,,"762.000000","5353.500000","4206.000000","14.000000","5353.500000","5353.500000",,,,,,,,,,,"5519460.000000","6864064.000000","478760.000000","0.000000","64962188.000000","0.000000","87757796.000000",,"3623976.000000","26753628.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000",,,,,,,,"895.000000","4843.000000",,,,,,,,,,,"4411.000000","650.000000","675.000000","656.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","564.000000","629.000000","583.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971354.000000",,,,, -"17376.000000","59.475000","17376.000000","59.475000","17376.000000","59.475000",,,,,,,,,,,,,,"85.000000","6413.500000","6214.000000","7.000000","6413.500000","6413.500000",,,,,,,,,,,"5399480.000000","6801148.000000","478760.000000","0.000000","64943472.000000","0.000000","87757796.000000",,"3623976.000000","26770580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000",,,,,,,,"172.000000","6355.000000",,,,,,,,,,,"4342.000000","653.000000","677.000000","669.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","566.000000","636.000000","596.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971374.000000",,,,, -"16612.000000","58.275000","16612.000000","58.275000","16612.000000","58.275000",,,,,,,,,,,,,,"71.000000","6436.500000","6078.000000","17.000000","6436.500000","6436.500000",,,,,,,,,,,"5273648.000000","6465600.000000","478760.000000","0.000000","64934948.000000","0.000000","87757796.000000",,"3623976.000000","26770528.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000",,,,,,,,"148.000000","6575.000000",,,,,,,,,,,"4241.000000","656.000000","677.000000","677.000000","848.000000","789.000000","794.000000","0.000000","0.000000","0.000000","568.000000","632.000000","603.000000","713.000000","706.000000","706.000000","160.000000","6000.000000",,"8971394.000000",,,,, -"17535.000000","59.710000","17535.000000","59.710000","17535.000000","59.710000",,,,,,,,,,,,,,"131.000000","6562.000000","6366.000000","15.000000","6562.000000","6562.000000",,,,,,,,,,,"5105924.000000","6276904.000000","478760.000000","0.000000","64918120.000000","0.000000","87757844.000000",,"3623976.000000","26784464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000",,,,,,,,"158.000000","6468.000000",,,,,,,,,,,"4300.000000","658.000000","696.000000","686.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","570.000000","630.000000","610.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971414.000000",,,,, -"11303.000000","49.950000","11303.000000","49.950000","11303.000000","49.950000",,,,,,,,,,,,,,"19260.000000","29763.500000","10184.000000","81.000000","29763.500000","29763.500000",,,,,,,,,,,"5531204.000000","6759244.000000","478760.000000","0.000000","64917712.000000","0.000000","87757844.000000",,"3623976.000000","26820548.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000",,,,,,,,"19472.000000","10609.000000",,,,,,,,,,,"4006.000000","655.000000","612.000000","677.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","568.000000","545.000000","600.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971434.000000",,,,, -"9802.000000","47.595000","9802.000000","47.595000","9802.000000","47.595000",,,,,,,,,,,,,,"15321.000000","22219.500000","5840.000000","5.000000","22219.500000","22219.500000",,,,,,,,,,,"5363292.000000","6591332.000000","478760.000000","0.000000","64899916.000000","0.000000","87757704.000000",,"3623976.000000","26848292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000",,,,,,,,"15194.000000","8082.000000",,,,,,,,,,,"3744.000000","652.000000","524.000000","666.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","565.000000","463.000000","589.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971454.000000",,,,, -"13594.000000","53.540000","13594.000000","53.540000","13594.000000","53.540000",,,,,,,,,,,,,,"17289.000000","34131.500000","16242.000000","16.000000","34131.500000","34131.500000",,,,,,,,,,,"5426208.000000","6591336.000000","478760.000000","0.000000","64909528.000000","0.000000","87757704.000000",,"3623976.000000","26790416.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000",,,,,,,,"17579.000000","17152.000000",,,,,,,,,,,"3885.000000","654.000000","507.000000","670.000000","857.000000","970.000000","842.000000","0.000000","0.000000","0.000000","564.000000","420.000000","585.000000","713.000000","576.000000","713.000000","160.000000","6000.000000",,"8971474.000000",,,,, -"11184.000000","49.750000","11184.000000","49.750000","11184.000000","49.750000",,,,,,,,,,,,,,"7651.000000","16161.500000","8158.000000","8.000000","16161.500000","16161.500000",,,,,,,,,,,"5282828.000000","6501600.000000","478760.000000","0.000000","64893416.000000","0.000000","87757704.000000",,"3623976.000000","26805776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000",,,,,,,,"8256.000000","8258.000000",,,,,,,,,,,"3766.000000","645.000000","496.000000","651.000000","842.000000","970.000000","811.000000","0.000000","0.000000","0.000000","557.000000","408.000000","569.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971494.000000",,,,, -"10649.000000","48.910000","10649.000000","48.910000","10649.000000","48.910000",,,,,,,,,,,,,,"23708.000000","48739.000000","25031.000000","14.000000","48739.000000","48739.000000",,,,,,,,,,,"5178112.000000","6480772.000000","478760.000000","0.000000","64882768.000000","0.000000","87757844.000000",,"3623976.000000","26854460.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000",,,,,,,,"23616.000000",,,,,,,,,,,,"3835.000000","638.000000","510.000000","634.000000","839.000000","970.000000","811.000000","0.000000","0.000000","0.000000","552.000000","414.000000","554.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971514.000000",,,,, -"13349.000000","53.135000","13349.000000","53.135000","13349.000000","53.135000",,,,,,,,,,,,,,"19552.000000","47865.000000","28313.000000","28.000000","47865.000000","47865.000000",,,,,,,,,,,"5309792.000000","6543684.000000","478760.000000","0.000000","64875588.000000","0.000000","87757844.000000",,"3623976.000000","26864184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000",,,,,,,,,"28811.000000",,,,,,,,,,,"3796.000000","627.000000","479.000000","618.000000","811.000000","632.000000","789.000000","0.000000","0.000000","0.000000","546.000000","407.000000","540.000000","687.000000","522.000000","697.000000","160.000000","6000.000000",,"8971534.000000",,,,, -"11005.000000","49.465000","11005.000000","49.465000","11005.000000","49.465000",,,,,,,,,,,,,,"6901.000000","22293.500000","13851.000000","26.000000","22293.500000","22293.500000",,,,,,,,,,,"5609240.000000","6723156.000000","478760.000000","0.000000","64876956.000000","0.000000","87757844.000000",,"3623976.000000","26865196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000",,,,,,,,"12680.000000","11154.000000",,,,,,,,,,,"3819.000000","610.000000","480.000000","597.000000","789.000000","632.000000","781.000000","0.000000","0.000000","0.000000","535.000000","401.000000","523.000000","672.000000","522.000000","680.000000","160.000000","6000.000000",,"8971554.000000",,,,, -"12967.000000","52.580000","12967.000000","52.580000","12967.000000","52.580000",,,,,,,,,,,,,,"514.000000","28766.000000","19256.000000","130.000000","28766.000000","28766.000000",,,,,,,,,,,"5525212.000000","6723016.000000","478760.000000","0.000000","64959840.000000","0.000000","87757704.000000",,"3623976.000000","26710532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000",,,,,,,,"13335.000000","24426.000000",,,,,,,,,,,"3921.000000","604.000000","515.000000","585.000000","780.000000","632.000000","748.000000","0.000000","0.000000","0.000000","530.000000","429.000000","514.000000","671.000000","552.000000","680.000000","160.000000","6000.000000",,"8971574.000000",,,,, -"10679.000000","49.000000","10679.000000","49.000000","10679.000000","49.000000",,,,,,,,,,,,,,"159.000000","32484.500000","30560.000000","303.000000","32484.500000","32484.500000",,,,,,,,,,,"5966044.000000","7121900.000000","478756.000000","0.000000","64977548.000000","0.000000","87757848.000000",,"3623976.000000","26680572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000",,,,,,,,"2380.000000","31869.000000",,,,,,,,,,,"3815.000000","598.000000","487.000000","569.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","524.000000","405.000000","498.000000","662.000000","552.000000","672.000000","160.000000","6000.000000",,"8971594.000000",,,,, -"8712.000000","45.920000","8712.000000","45.920000","8712.000000","45.920000",,,,,,,,,,,,,,"107.000000","8184.500000","7322.000000","148.000000","8184.500000","8184.500000",,,,,,,,,,,"6019688.000000","7280404.000000","478756.000000","0.000000","64973904.000000","0.000000","87757848.000000",,"3623976.000000","26686860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000",,,,,,,,"648.000000","8291.000000",,,,,,,,,,,"3829.000000","592.000000","447.000000","542.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","519.000000","379.000000","474.000000","662.000000","552.000000","671.000000","160.000000","6000.000000",,"8971614.000000",,,,, -"8069.000000","44.915000","8069.000000","44.915000","8069.000000","44.915000",,,,,,,,,,,,,,"69.000000","6469.500000","6259.000000","137.000000","6469.500000","6469.500000",,,,,,,,,,,"6188200.000000","7239196.000000","478756.000000","0.000000","64972556.000000","0.000000","87758588.000000",,"3623976.000000","26760348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000",,,,,,,,"134.000000","6476.000000",,,,,,,,,,,"3797.000000","587.000000","361.000000","517.000000","764.000000","499.000000","694.000000","0.000000","0.000000","0.000000","516.000000","321.000000","452.000000","662.000000","403.000000","649.000000","160.000000","6000.000000",,"8971634.000000",,,,, -"9367.000000","46.955000","9367.000000","46.955000","9367.000000","46.955000",,,,,,,,,,,,,,"133.000000","3991.500000","3728.000000","46.000000","3991.500000","3991.500000",,,,,,,,,,,"6061344.000000","7154288.000000","478756.000000","0.000000","64997144.000000","0.000000","87757848.000000",,"3623976.000000","26713708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000",,,,,,,,"151.000000","3970.000000",,,,,,,,,,,"3737.000000","583.000000","339.000000","502.000000","764.000000","421.000000","693.000000","0.000000","0.000000","0.000000","513.000000","309.000000","435.000000","662.000000","367.000000","646.000000","160.000000","6000.000000",,"8971654.000000",,,,, -"7508.000000","44.040000","7508.000000","44.040000","7508.000000","44.040000",,,,,,,,,,,,,,"303.000000","1322.500000","999.000000","17.000000","1322.500000","1322.500000",,,,,,,,,,,"5809684.000000","6725584.000000","478756.000000","0.000000","64980220.000000","0.000000","87757848.000000",,"3623976.000000","26728568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000",,,,,,,,"324.000000","1018.000000",,,,,,,,,,,"3769.000000","576.000000","309.000000","469.000000","764.000000","421.000000","683.000000","0.000000","0.000000","0.000000","507.000000","288.000000","404.000000","662.000000","367.000000","576.000000","160.000000","6000.000000",,"8971674.000000",,,,, -"10016.000000","47.950000","10016.000000","47.950000","10016.000000","47.950000",,,,,,,,,,,,,,"46.000000","3684.000000","3622.000000","45.000000","3684.000000","3684.000000",,,,,,,,,,,"6275176.000000","7652448.000000","478756.000000","0.000000","64948772.000000","0.000000","87761964.000000",,"3623976.000000","26777940.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000",,,,,,,,"105.000000","3594.000000",,,,,,,,,,,"3690.000000","573.000000","336.000000","449.000000","764.000000","490.000000","624.000000","0.000000","0.000000","0.000000","504.000000","308.000000","387.000000","662.000000","442.000000","543.000000","160.000000","6000.000000",,"8971694.000000",,,,, -"10143.000000","48.135000","10143.000000","48.135000","10143.000000","48.135000",,,,,,,,,,,,,,"65.000000","4999.000000","4721.000000","29.000000","4999.000000","4999.000000",,,,,,,,,,,"6292128.000000","7711332.000000","478756.000000","0.000000","64921524.000000","0.000000","87757940.000000",,"3623976.000000","26802704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000",,,,,,,,"162.000000","5050.000000",,,,,,,,,,,"3834.000000","571.000000","344.000000","431.000000","764.000000","490.000000","550.000000","0.000000","0.000000","0.000000","503.000000","317.000000","372.000000","662.000000","442.000000","473.000000","160.000000","6000.000000",,"8971714.000000",,,,, -"8798.000000","46.025000","8798.000000","46.025000","8798.000000","46.025000",,,,,,,,,,,,,,"52.000000","4172.500000","3973.000000","26.000000","4172.500000","4172.500000",,,,,,,,,,,"6292128.000000","7962996.000000","478756.000000","0.000000","64912340.000000","0.000000","87757940.000000",,"3623976.000000","26841952.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000",,,,,,,,"122.000000","4197.000000",,,,,,,,,,,"3748.000000","564.000000","373.000000","421.000000","764.000000","490.000000","545.000000","0.000000","0.000000","0.000000","497.000000","339.000000","363.000000","662.000000","442.000000","451.000000","160.000000","6000.000000",,"8971734.000000",,,,, -"12195.000000","51.335000","12195.000000","51.335000","12195.000000","51.335000",,,,,,,,,,,,,,"341.000000","5383.000000","5044.000000","13.000000","5383.000000","5383.000000",,,,,,,,,,,"7193900.000000","8969632.000000","478756.000000","0.000000","64896984.000000","0.000000","87757940.000000",,"3623976.000000","26844128.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000",,,,,,,,"423.000000","4958.000000",,,,,,,,,,,"3882.000000","562.000000","404.000000","425.000000","764.000000","750.000000","560.000000","0.000000","0.000000","0.000000","495.000000","363.000000","367.000000","662.000000","626.000000","473.000000","160.000000","6000.000000",,"8971754.000000",,,,, -"18145.000000","60.860000","18145.000000","60.860000","18145.000000","60.860000",,,,,,,,,,,,,,"56.000000","9620.000000","9369.000000","8.000000","9620.000000","9620.000000",,,,,,,,,,,"7403932.000000","9620068.000000","478756.000000","0.000000","65305996.000000","0.000000","87757972.000000",,"3623976.000000","26434160.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000",,,,,,,,"187.000000","9627.000000",,,,,,,,,,,"3919.000000","566.000000","523.000000","435.000000","765.000000","1179.000000","620.000000","0.000000","0.000000","0.000000","496.000000","428.000000","373.000000","667.000000","751.000000","522.000000","160.000000","6000.000000",,"8971774.000000",,,,, -"21634.000000","66.350000","21634.000000","66.350000","21634.000000","66.350000",,,,,,,,,,,,,,"129.000000","10191.000000","9453.000000","9.000000","10191.000000","10191.000000",,,,,,,,,,,"7652172.000000","9616648.000000","478756.000000","0.000000","65352164.000000","0.000000","87757972.000000",,"3623976.000000","26377672.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000",,,,,,,,"314.000000","10485.000000",,,,,,,,,,,"4373.000000","581.000000","903.000000","502.000000","781.000000","1333.000000","1179.000000","0.000000","0.000000","0.000000","500.000000","617.000000","405.000000","674.000000","802.000000","751.000000","160.000000","6000.000000",,"8971794.000000",,,,, -"19601.000000","63.680000","19601.000000","63.680000","19601.000000","63.680000",,,,,,,,,,,,,,"449.000000","45245.000000","16714.000000","23.000000","45245.000000","45245.000000",,,,,,,,,,,"8323788.000000","10036600.000000","478756.000000","0.000000","66395552.000000","0.000000","90460164.000000",,"3761520.000000","27975252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000",,,,,,,,"54746.000000","18580.000000",,,,,,,,,,,"4202.000000","593.000000","1120.000000","547.000000","794.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","503.000000","695.000000","423.000000","680.000000","802.000000","751.000000","160.000000","6000.000000",,"8971814.000000",,,,, -"23008.000000","69.020000","23008.000000","69.020000","23008.000000","69.020000",,,,,,,,,,,,,,"92.000000","6666.500000","5294.000000","22.000000","6666.500000","6666.500000",,,,,,,,,,,"8050176.000000","9993676.000000","478756.000000","0.000000","66397860.000000","0.000000","90471840.000000",,"3754376.000000","27987776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000",,,,,,,,"2210.000000","5737.000000",,,,,,,,,,,"4371.000000","601.000000","1196.000000","578.000000","891.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","507.000000","752.000000","442.000000","706.000000","806.000000","782.000000","160.000000","6000.000000",,"8971834.000000",,,,, -"20170.000000","64.575000","20170.000000","64.575000","20170.000000","64.575000",,,,,,,,,,,,,,"79.000000","6557.500000","6400.000000","34.000000","6557.500000","6557.500000",,,,,,,,,,,"7981676.000000","9739852.000000","478756.000000","0.000000","66392424.000000","0.000000","90472108.000000",,"3754376.000000","27997428.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000",,,,,,,,"253.000000","6383.000000",,,,,,,,,,,"4668.000000","609.000000","1043.000000","615.000000","950.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","514.000000","749.000000","474.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971854.000000",,,,, -"19393.000000","63.340000","19393.000000","63.340000","19393.000000","63.340000",,,,,,,,,,,,,,"42.000000","12075.000000","11818.000000","29.000000","12075.000000","12075.000000",,,,,,,,,,,"7981556.000000","9655848.000000","478756.000000","0.000000","66360932.000000","0.000000","90471988.000000",,"3754376.000000","28077572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000",,,,,,,,"474.000000","11815.000000",,,,,,,,,,,"4319.000000","610.000000","917.000000","628.000000","950.000000","1170.000000","1257.000000","0.000000","0.000000","0.000000","516.000000","755.000000","488.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971874.000000",,,,, -"17637.000000","60.580000","17637.000000","60.580000","17637.000000","60.580000",,,,,,,,,,,,,,"70.000000","8997.000000","8619.000000","8.000000","8997.000000","8997.000000",,,,,,,,,,,"7834760.000000","9403328.000000","478756.000000","0.000000","66339184.000000","0.000000","90471988.000000",,"3754376.000000","28099768.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000",,,,,,,,"198.000000","9106.000000",,,,,,,,,,,"4308.000000","613.000000","821.000000","645.000000","950.000000","1068.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","717.000000","505.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971894.000000",,,,, -"14425.000000","55.545000","14425.000000","55.545000","14425.000000","55.545000",,,,,,,,,,,,,,"60.000000","9182.000000","9122.000000","13.000000","9182.000000","9182.000000",,,,,,,,,,,"7676256.000000","9202888.000000","478756.000000","0.000000","66335416.000000","0.000000","90471988.000000",,"3753872.000000","28141152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000",,,,,,,,"229.000000",,,,,,,,,,,,"4071.000000","614.000000","701.000000","666.000000","950.000000","809.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","617.000000","522.000000","713.000000","710.000000","789.000000","160.000000","6000.000000",,"8971914.000000",,,,, -"13205.000000","53.625000","13205.000000","53.625000","13205.000000","53.625000",,,,,,,,,,,,,,"49.000000","6798.500000","6574.000000","12.000000","6798.500000","6798.500000",,,,,,,,,,,"7550428.000000","9119000.000000","478756.000000","0.000000","66313700.000000","0.000000","90471988.000000",,"3753872.000000","28171516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000",,,,,,,,"158.000000","6815.000000",,,,,,,,,,,"3967.000000","615.000000","623.000000","680.000000","950.000000","780.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","544.000000","533.000000","713.000000","668.000000","789.000000","160.000000","6000.000000",,"8971934.000000",,,,, -"13497.000000","54.075000","13497.000000","54.075000","13497.000000","54.075000",,,,,,,,,,,,,,"62.000000","8339.500000","8095.000000","21.000000","8339.500000","8339.500000",,,,,,,,,,,"6585632.000000","8301004.000000","478756.000000","0.000000","66299188.000000","0.000000","90471884.000000",,"3753872.000000","28175572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000",,,,,,,,"192.000000","8329.000000",,,,,,,,,,,"4055.000000","616.000000","569.000000","691.000000","950.000000","662.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","492.000000","541.000000","713.000000","551.000000","789.000000","160.000000","6000.000000",,"8971954.000000",,,,, -"12618.000000","52.695000","12618.000000","52.695000","12618.000000","52.695000",,,,,,,,,,,,,,"62.000000","8976.500000","8771.000000","5.000000","8976.500000","8976.500000",,,,,,,,,,,"6839724.000000","8539964.000000","478756.000000","0.000000","66287820.000000","0.000000","90471884.000000",,"3753872.000000","28184708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000",,,,,,,,"194.000000","8924.000000",,,,,,,,,,,"3922.000000","616.000000","538.000000","712.000000","950.000000","613.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","465.000000","557.000000","713.000000","534.000000","789.000000","160.000000","6000.000000",,"8971974.000000",,,,, -"14653.000000","55.865000","14653.000000","55.865000","14653.000000","55.865000",,,,,,,,,,,,,,"61.000000","10934.000000","10622.000000","10.000000","10934.000000","10934.000000",,,,,,,,,,,"6986524.000000","8581912.000000","478752.000000","0.000000","66265948.000000","0.000000","90471888.000000",,"3753872.000000","28230196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000",,,,,,,,"213.000000","10971.000000",,,,,,,,,,,"3924.000000","617.000000","566.000000","726.000000","950.000000","626.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","486.000000","568.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8971994.000000",,,,, -"14644.000000","55.850000","14644.000000","55.850000","14644.000000","55.850000",,,,,,,,,,,,,,"116.000000","9671.500000","9517.000000","5.000000","9671.500000","9671.500000",,,,,,,,,,,"6713892.000000","8226264.000000","478752.000000","0.000000","66256400.000000","0.000000","90471888.000000",,"3753872.000000","28234912.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000",,,,,,,,"214.000000","9496.000000",,,,,,,,,,,"3975.000000","618.000000","567.000000","735.000000","950.000000","685.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","485.000000","575.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8972014.000000",,,,, -"14249.000000","55.225000","14249.000000","55.225000","14249.000000","55.225000",,,,,,,,,,,,,,"54.000000","10680.500000","10298.000000","3.000000","10680.500000","10680.500000",,,,,,,,,,,"6444680.000000","7804408.000000","478752.000000","0.000000","66241444.000000","0.000000","90471888.000000",,"3753872.000000","28257536.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000",,,,,,,,"220.000000","10787.000000",,,,,,,,,,,"4027.000000","618.000000","604.000000","758.000000","950.000000","792.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","521.000000","594.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972034.000000",,,,, -"15867.000000","57.750000","15867.000000","57.750000","15867.000000","57.750000",,,,,,,,,,,,,,"417.000000","13164.500000","11655.000000","7.000000","13164.500000","13164.500000",,,,,,,,,,,"6360796.000000","7930236.000000","478752.000000","0.000000","66221700.000000","0.000000","90471888.000000",,"3753872.000000","28145132.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000",,,,,,,,"686.000000","13570.000000",,,,,,,,,,,"4132.000000","622.000000","642.000000","774.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","536.000000","603.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972054.000000",,,,, -"13950.000000","54.735000","13950.000000","54.735000","13950.000000","54.735000",,,,,,,,,,,,,,"51.000000","8931.000000","8585.000000","32.000000","8931.000000","8931.000000",,,,,,,,,,,"5878312.000000","7049292.000000","478752.000000","0.000000","66205932.000000","0.000000","90471748.000000",,"3753872.000000","28138180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000",,,,,,,,"188.000000","9036.000000",,,,,,,,,,,"4034.000000","622.000000","650.000000","761.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","518.000000","540.000000","597.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972074.000000",,,,, -"16979.000000","59.500000","16979.000000","59.500000","16979.000000","59.500000",,,,,,,,,,,,,,"47.000000","11209.000000","10939.000000","17.000000","11209.000000","11209.000000",,,,,,,,,,,"5717700.000000","6966352.000000","478752.000000","0.000000","66240804.000000","0.000000","90453616.000000",,"3753872.000000","28097964.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000",,,,,,,,"238.000000","11193.000000",,,,,,,,,,,"4099.000000","622.000000","676.000000","712.000000","947.000000","810.000000","1068.000000","0.000000","0.000000","0.000000","518.000000","558.000000","582.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972094.000000",,,,, -"14851.000000","56.165000","14851.000000","56.165000","14851.000000","56.165000",,,,,,,,,,,,,,"36.000000","8421.000000","8276.000000","39.000000","8421.000000","8421.000000",,,,,,,,,,,"5597912.000000","7035184.000000","478752.000000","0.000000","66246240.000000","0.000000","90455156.000000",,"3753872.000000","28091960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000",,,,,,,,"152.000000","8376.000000",,,,,,,,,,,"4005.000000","619.000000","631.000000","676.000000","947.000000","747.000000","947.000000","0.000000","6.000000","0.000000","517.000000","541.000000","572.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972114.000000",,,,, -"15796.000000","57.635000","15796.000000","57.635000","15796.000000","57.635000",,,,,,,,,,,,,,"63.000000","6358.500000","5923.000000","8.000000","6358.500000","6358.500000",,,,,,,,,,,"5221280.000000","6762544.000000","478752.000000","0.000000","66226364.000000","0.000000","90456012.000000",,"3753872.000000","28177664.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000",,,,,,,,"169.000000","6562.000000",,,,,,,,,,,"4127.000000","616.000000","648.000000","651.000000","947.000000","747.000000","795.000000","0.000000","6.000000","0.000000","514.000000","561.000000","559.000000","710.000000","707.000000","706.000000","160.000000","6000.000000",,"8972134.000000",,,,, -"15349.000000","56.925000","15349.000000","56.925000","15349.000000","56.925000",,,,,,,,,,,,,,"54.000000","5258.000000","4971.000000","46.000000","5258.000000","5258.000000",,,,,,,,,,,"4952064.000000","6767424.000000","478752.000000","0.000000","66206544.000000","0.000000","90455280.000000",,"3753872.000000","28195080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000",,,,,,,,"431.000000","5059.000000",,,,,,,,,,,"3902.000000","613.000000","624.000000","629.000000","842.000000","680.000000","780.000000","0.000000","6.000000","0.000000","512.000000","537.000000","539.000000","707.000000","591.000000","669.000000","160.000000","6000.000000",,"8972154.000000",,,,, -"17742.000000","60.670000","17742.000000","60.670000","17742.000000","60.670000",,,,,,,,,,,,,,"36.000000","9572.000000","9401.000000","10.000000","9572.000000","9572.000000",,,,,,,,,,,"5191512.000000","6857780.000000","478752.000000","0.000000","66190668.000000","0.000000","90455280.000000",,"3753872.000000","28242004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000",,,,,,,,"222.000000","9483.000000",,,,,,,,,,,"4196.000000","613.000000","667.000000","626.000000","842.000000","752.000000","752.000000","0.000000","0.000000","0.000000","513.000000","574.000000","536.000000","707.000000","674.000000","658.000000","160.000000","6000.000000",,"8972174.000000",,,,, -"14762.000000","56.000000","14762.000000","56.000000","14762.000000","56.000000",,,,,,,,,,,,,,"59.000000","8688.000000","8430.000000","5.000000","8688.000000","8688.000000",,,,,,,,,,,"5107432.000000","6647584.000000","478752.000000","0.000000","66191936.000000","0.000000","90455084.000000",,"3753872.000000","28288960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000",,,,,,,,"200.000000","8687.000000",,,,,,,,,,,"4020.000000","611.000000","657.000000","618.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","510.000000","560.000000","528.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972194.000000",,,,, -"12815.000000","52.945000","12815.000000","52.945000","12815.000000","52.945000",,,,,,,,,,,,,,"35.000000","6029.000000","5774.000000","23.000000","6029.000000","6029.000000",,,,,,,,,,,"5048956.000000","6509368.000000","478752.000000","0.000000","66171044.000000","0.000000","90455376.000000",,"3753872.000000","28309064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000",,,,,,,,"128.000000","6121.000000",,,,,,,,,,,"3967.000000","608.000000","633.000000","615.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","507.000000","541.000000","524.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972214.000000",,,,, -"13579.000000","54.130000","13579.000000","54.130000","13579.000000","54.130000",,,,,,,,,,,,,,"118.000000","6824.000000","6658.000000","3.000000","6824.000000","6824.000000",,,,,,,,,,,"5048956.000000","6614228.000000","478752.000000","0.000000","66149272.000000","0.000000","90455376.000000",,"3753872.000000","28271812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000",,,,,,,,"129.000000","6742.000000",,,,,,,,,,,"4068.000000","605.000000","575.000000","616.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","504.000000","495.000000","526.000000","706.000000","623.000000","623.000000","160.000000","6000.000000",,"8972234.000000",,,,, -"14379.000000","55.370000","14379.000000","55.370000","14379.000000","55.370000",,,,,,,,,,,,,,"46.000000","7641.500000","7470.000000","14.000000","7641.500000","7641.500000",,,,,,,,,,,"5030356.000000","6670748.000000","478752.000000","0.000000","66118936.000000","0.000000","90447836.000000",,"3753872.000000","28291676.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000",,,,,,,,"182.000000","7584.000000",,,,,,,,,,,"4070.000000","603.000000","567.000000","618.000000","842.000000","656.000000","752.000000","0.000000","0.000000","0.000000","501.000000","493.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972254.000000",,,,, -"12669.000000","52.685000","12669.000000","52.685000","12669.000000","52.685000",,,,,,,,,,,,,,"33.000000","6826.500000","6397.000000","5.000000","6826.500000","6826.500000",,,,,,,,,,,"5115704.000000","6986784.000000","478752.000000","0.000000","66112516.000000","0.000000","90447836.000000",,"3753872.000000","28355180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000",,,,,,,,"163.000000","7058.000000",,,,,,,,,,,"3990.000000","599.000000","554.000000","618.000000","842.000000","651.000000","752.000000","0.000000","0.000000","0.000000","497.000000","485.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972274.000000",,,,, -"14323.000000","55.275000","14323.000000","55.275000","14323.000000","55.275000",,,,,,,,,,,,,,"59.000000","7843.000000","6803.000000","5.000000","7843.000000","7843.000000",,,,,,,,,,,"5031820.000000","6860956.000000","478752.000000","0.000000","66106996.000000","0.000000","90447836.000000",,"3753872.000000","28223888.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000",,,,,,,,"293.000000","8530.000000",,,,,,,,,,,"3985.000000","597.000000","567.000000","616.000000","842.000000","635.000000","752.000000","0.000000","0.000000","0.000000","494.000000","483.000000","526.000000","706.000000","568.000000","623.000000","160.000000","6000.000000",,"8972294.000000",,,,, -"13389.000000","53.800000","13389.000000","53.800000","13389.000000","53.800000",,,,,,,,,,,,,,"37.000000","7181.000000","6756.000000","9.000000","7181.000000","7181.000000",,,,,,,,,,,"4739164.000000","6516452.000000","478752.000000","0.000000","66086596.000000","0.000000","90447636.000000",,"3753872.000000","28242784.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000",,,,,,,,"138.000000","7430.000000",,,,,,,,,,,"3913.000000","594.000000","563.000000","617.000000","810.000000","655.000000","752.000000","0.000000","0.000000","0.000000","491.000000","483.000000","527.000000","698.000000","570.000000","623.000000","160.000000","6000.000000",,"8972314.000000",,,,, -"13211.000000","53.510000","13211.000000","53.510000","13211.000000","53.510000",,,,,,,,,,,,,,"106.000000","4929.000000","4723.000000","49.000000","4929.000000","4929.000000",,,,,,,,,,,"4361824.000000","6076196.000000","478752.000000","0.000000","66065084.000000","0.000000","90447784.000000",,"3753872.000000","28423972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000",,,,,,,,"178.000000","4850.000000",,,,,,,,,,,"4109.000000","595.000000","548.000000","607.000000","810.000000","655.000000","747.000000","0.000000","0.000000","0.000000","493.000000","484.000000","521.000000","698.000000","579.000000","615.000000","160.000000","6000.000000",,"8972334.000000",,,,, -"14361.000000","55.305000","14361.000000","55.305000","14361.000000","55.305000",,,,,,,,,,,,,,"324.000000","8214.500000","7803.000000","11.000000","8214.500000","8214.500000",,,,,,,,,,,"4641524.000000","6546108.000000","478752.000000","0.000000","66055168.000000","0.000000","90447784.000000",,"3753872.000000","28432112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000",,,,,,,,"439.000000","7861.000000",,,,,,,,,,,"4091.000000","599.000000","553.000000","599.000000","810.000000","737.000000","737.000000","0.000000","0.000000","0.000000","496.000000","491.000000","517.000000","698.000000","611.000000","615.000000","160.000000","6000.000000",,"8972354.000000",,,,, -"18615.000000","61.985000","18615.000000","61.985000","18615.000000","61.985000",,,,,,,,,,,,,,"43.000000","14905.000000","14564.000000","22.000000","14905.000000","14905.000000",,,,,,,,,,,"5070872.000000","6815292.000000","478752.000000","0.000000","66083500.000000","0.000000","90447784.000000",,"3753872.000000","28405712.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000",,,,,,,,"227.000000","14975.000000",,,,,,,,,,,"4393.000000","608.000000","707.000000","628.000000","904.000000","1469.000000","752.000000","0.000000","0.000000","0.000000","500.000000","546.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972374.000000",,,,, -"16728.000000","59.020000","16728.000000","59.020000","16728.000000","59.020000",,,,,,,,,,,,,,"54.000000","11334.000000","10943.000000","49.000000","11334.000000","11334.000000",,,,,,,,,,,"5385444.000000","7486380.000000","478752.000000","0.000000","66063456.000000","0.000000","90447784.000000",,"3753872.000000","28343968.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000",,,,,,,,"196.000000","11474.000000",,,,,,,,,,,"4159.000000","615.000000","796.000000","631.000000","904.000000","1469.000000","755.000000","0.000000","0.000000","0.000000","505.000000","596.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972394.000000",,,,, -"17482.000000","60.200000","17482.000000","60.200000","17482.000000","60.200000",,,,,,,,,,,,,,"127.000000","18573.000000","18445.000000","58.000000","18573.000000","18573.000000",,,,,,,,,,,"5025988.000000","7173016.000000","478752.000000","0.000000","66060348.000000","0.000000","90447776.000000",,"3753872.000000","28305704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000",,,,,,,,"1384.000000",,,,,,,,,,,,"4176.000000","621.000000","840.000000","640.000000","904.000000","1469.000000","812.000000","0.000000","0.000000","0.000000","510.000000","629.000000","535.000000","707.000000","786.000000","656.000000","160.000000","6000.000000",,"8972414.000000",,,,, -"18219.000000","61.350000","18219.000000","61.350000","18219.000000","61.350000",,,,,,,,,,,,,,"132.000000","11357.500000","10894.000000","33.000000","11357.500000","11357.500000",,,,,,,,,,,"4828348.000000","6809904.000000","478752.000000","0.000000","66050692.000000","0.000000","90447648.000000",,"3753872.000000","28316516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000",,,,,,,,"257.000000","11431.000000",,,,,,,,,,,"4185.000000","628.000000","783.000000","655.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","513.000000","610.000000","539.000000","707.000000","680.000000","666.000000","160.000000","6000.000000",,"8972434.000000",,,,, -"14622.000000","55.705000","14622.000000","55.705000","14622.000000","55.705000",,,,,,,,,,,,,,"43.000000","9004.000000","8769.000000","9.000000","9004.000000","9004.000000",,,,,,,,,,,"4996128.000000","6977676.000000","478752.000000","0.000000","66039188.000000","0.000000","90447648.000000",,"3753872.000000","28326648.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000",,,,,,,,"281.000000","8913.000000",,,,,,,,,,,"4221.000000","634.000000","764.000000","659.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","518.000000","596.000000","540.000000","707.000000","680.000000","674.000000","160.000000","6000.000000",,"8972454.000000",,,,, -"17658.000000","60.455000","17658.000000","60.455000","17658.000000","60.455000",,,,,,,,,,,,,,"94.000000","13642.000000","13235.000000","24.000000","13642.000000","13642.000000",,,,,,,,,,,"5007584.000000","6894028.000000","478752.000000","0.000000","66022028.000000","0.000000","90447884.000000",,"3753872.000000","28359468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000",,,,,,,,"503.000000","13451.000000",,,,,,,,,,,"4449.000000","637.000000","752.000000","657.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","521.000000","595.000000","539.000000","707.000000","695.000000","677.000000","160.000000","6000.000000",,"8972474.000000",,,,, -"16511.000000","58.650000","16511.000000","58.650000","16511.000000","58.650000",,,,,,,,,,,,,,"55.000000","11579.000000","11162.000000","40.000000","11579.000000","11579.000000",,,,,,,,,,,"4954344.000000","6422504.000000","478752.000000","0.000000","66000728.000000","0.000000","90447648.000000",,"3753872.000000","28378028.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000",,,,,,,,"214.000000","11727.000000",,,,,,,,,,,"4202.000000","644.000000","723.000000","669.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","526.000000","595.000000","545.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972494.000000",,,,, -"16258.000000","58.240000","16258.000000","58.240000","16258.000000","58.240000",,,,,,,,,,,,,,"52.000000","12724.500000","12528.000000","5.000000","12724.500000","12724.500000",,,,,,,,,,,"4534968.000000","5982160.000000","478752.000000","0.000000","65984352.000000","0.000000","90447708.000000",,"3753872.000000","28440972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000",,,,,,,,"214.000000","12654.000000",,,,,,,,,,,"4061.000000","652.000000","717.000000","676.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","533.000000","600.000000","552.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972514.000000",,,,, -"17030.000000","59.445000","17030.000000","59.445000","17030.000000","59.445000",,,,,,,,,,,,,,"51.000000","15008.000000","14646.000000","17.000000","15008.000000","15008.000000",,,,,,,,,,,"4389632.000000","5931928.000000","478752.000000","0.000000","65967392.000000","0.000000","90447708.000000",,"3753872.000000","28445280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000",,,,,,,,"259.000000","15059.000000",,,,,,,,,,,"4199.000000","662.000000","733.000000","689.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","540.000000","604.000000","561.000000","707.000000","687.000000","680.000000","160.000000","6000.000000",,"8972534.000000",,,,, -"15785.000000","57.500000","15785.000000","57.500000","15785.000000","57.500000",,,,,,,,,,,,,,"34.000000","10462.000000","9310.000000","4.000000","10462.000000","10462.000000",,,,,,,,,,,"5228480.000000","7201264.000000","478752.000000","0.000000","65976820.000000","0.000000","90447692.000000",,"3753872.000000","28434552.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000",,,,,,,,"306.000000","11273.000000",,,,,,,,,,,"4283.000000","666.000000","673.000000","690.000000","956.000000","797.000000","898.000000","0.000000","0.000000","0.000000","544.000000","579.000000","563.000000","707.000000","652.000000","680.000000","160.000000","6000.000000",,"8972554.000000",,,,, -"16106.000000","57.995000","16106.000000","57.995000","16106.000000","57.995000",,,,,,,,,,,,,,"33.000000","7149.000000","6707.000000","11.000000","7149.000000","7149.000000",,,,,,,,,,,"5270428.000000","7033496.000000","478752.000000","0.000000","65957912.000000","0.000000","90447692.000000",,"3753872.000000","28529136.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000",,,,,,,,"173.000000","7384.000000",,,,,,,,,,,"4179.000000","678.000000","693.000000","704.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","553.000000","584.000000","572.000000","710.000000","720.000000","687.000000","160.000000","6000.000000",,"8972574.000000",,,,, -"17438.000000","60.070000","17438.000000","60.070000","17438.000000","60.070000",,,,,,,,,,,,,,"35.000000","9487.000000","9122.000000","13.000000","9487.000000","9487.000000",,,,,,,,,,,"5442532.000000","7430676.000000","478752.000000","0.000000","65939884.000000","0.000000","90447876.000000",,"3753872.000000","28517432.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000",,,,,,,,"190.000000","9625.000000",,,,,,,,,,,"4423.000000","685.000000","681.000000","712.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","559.000000","587.000000","581.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972594.000000",,,,, -"17112.000000","59.550000","17112.000000","59.550000","17112.000000","59.550000",,,,,,,,,,,,,,"44.000000","9235.500000","8992.000000","10.000000","9235.500000","9235.500000",,,,,,,,,,,"4929304.000000","6927360.000000","478752.000000","0.000000","65921796.000000","0.000000","90447876.000000",,"3753872.000000","28534200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000",,,,,,,,"178.000000","9257.000000",,,,,,,,,,,"4176.000000","691.000000","721.000000","721.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","563.000000","611.000000","588.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972614.000000",,,,, -"15796.000000","57.490000","15796.000000","57.490000","15796.000000","57.490000",,,,,,,,,,,,,,"52.000000","9463.500000","9557.000000","116.000000","9463.500000","9463.500000",,,,,,,,,,,"4908328.000000","6780552.000000","478752.000000","0.000000","65929732.000000","0.000000","90447876.000000",,"3753872.000000","28551012.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000",,,,,,,,"179.000000","9138.000000",,,,,,,,,,,"4155.000000","699.000000","695.000000","733.000000","956.000000","756.000000","904.000000","0.000000","0.000000","0.000000","570.000000","602.000000","596.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972634.000000",,,,, -"15193.000000","56.535000","15193.000000","56.535000","15193.000000","56.535000",,,,,,,,,,,,,,"462.000000","9366.500000","8608.000000","49.000000","9366.500000","9366.500000",,,,,,,,,,,"4971240.000000","6649116.000000","478752.000000","0.000000","65912664.000000","0.000000","90447876.000000",,"3753872.000000","28436192.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000",,,,,,,,"512.000000","9150.000000",,,,,,,,,,,"4027.000000","702.000000","668.000000","735.000000","956.000000","770.000000","904.000000","0.000000","0.000000","0.000000","573.000000","579.000000","599.000000","717.000000","666.000000","695.000000","160.000000","6000.000000",,"8972654.000000",,,,, -"17678.000000","60.425000","17678.000000","60.425000","17678.000000","60.425000",,,,,,,,,,,,,,"69.000000","8593.500000","8301.000000","5.000000","8593.500000","8593.500000",,,,,,,,,,,"5075768.000000","6397124.000000","478752.000000","0.000000","65895904.000000","0.000000","90447544.000000",,"3753872.000000","28451368.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000",,,,,,,,"256.000000","8559.000000",,,,,,,,,,,"4365.000000","703.000000","701.000000","720.000000","956.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","574.000000","585.000000","596.000000","717.000000","774.000000","687.000000","160.000000","6000.000000",,"8972674.000000",,,,, -"18225.000000","61.280000","18225.000000","61.280000","18225.000000","61.280000",,,,,,,,,,,,,,"47.000000","9509.500000","9255.000000","16.000000","9509.500000","9509.500000",,,,,,,,,,,"5159904.000000","6544180.000000","478752.000000","0.000000","65897940.000000","0.000000","90447796.000000",,"3753872.000000","28518020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000",,,,,,,,"179.000000","9538.000000",,,,,,,,,,,"4120.000000","690.000000","769.000000","728.000000","898.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","570.000000","614.000000","599.000000","698.000000","774.000000","688.000000","160.000000","6000.000000",,"8972694.000000",,,,, -"15501.000000","57.005000","15501.000000","57.005000","15501.000000","57.005000",,,,,,,,,,,,,,"108.000000","6539.000000","6491.000000","3.000000","6539.000000","6539.000000",,,,,,,,,,,"5001888.000000","6433708.000000","478752.000000","0.000000","65879072.000000","0.000000","90447796.000000",,"3753872.000000","28512484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000",,,,,,,,"141.000000","6337.000000",,,,,,,,,,,"4051.000000","678.000000","761.000000","719.000000","868.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","567.000000","610.000000","595.000000","695.000000","774.000000","688.000000","160.000000","6000.000000",,"8972714.000000",,,,, -"17242.000000","59.730000","17242.000000","59.730000","17242.000000","59.730000",,,,,,,,,,,,,,"47.000000","9239.500000","8932.000000","11.000000","9239.500000","9239.500000",,,,,,,,,,,"4918004.000000","6203020.000000","478752.000000","0.000000","65880960.000000","0.000000","90447796.000000",,"3753872.000000","28511228.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000",,,,,,,,"344.000000","9155.000000",,,,,,,,,,,"4136.000000","672.000000","725.000000","709.000000","836.000000","856.000000","868.000000","0.000000","0.000000","0.000000","564.000000","600.000000","594.000000","680.000000","688.000000","688.000000","160.000000","6000.000000",,"8972734.000000",,,,, -"15715.000000","57.335000","15715.000000","57.335000","15715.000000","57.335000",,,,,,,,,,,,,,"32.000000","8178.000000","7836.000000","8.000000","8178.000000","8178.000000",,,,,,,,,,,"4897032.000000","6328848.000000","478752.000000","0.000000","65869852.000000","0.000000","90447796.000000",,"3753872.000000","28391468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000",,,,,,,,"361.000000","8127.000000",,,,,,,,,,,"4059.000000","665.000000","670.000000","709.000000","812.000000","791.000000","856.000000","0.000000","0.000000","0.000000","558.000000","573.000000","595.000000","674.000000","635.000000","688.000000","160.000000","6000.000000",,"8972754.000000",,,,, -"18136.000000","61.135000","18136.000000","61.135000","18136.000000","61.135000",,,,,,,,,,,,,,"710.000000","9008.500000","8002.000000","13.000000","9008.500000","9008.500000",,,,,,,,,,,"4765588.000000","6412728.000000","478752.000000","0.000000","65877196.000000","0.000000","90447788.000000",,"3753872.000000","28555024.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000",,,,,,,,"855.000000","8449.000000",,,,,,,,,,,"4124.000000","666.000000","729.000000","714.000000","830.000000","848.000000","856.000000","0.000000","0.000000","0.000000","558.000000","610.000000","598.000000","672.000000","691.000000","688.000000","160.000000","6000.000000",,"8972774.000000",,,,, -"18445.000000","61.605000","18445.000000","61.605000","18445.000000","61.605000",,,,,,,,,,,,,,"42.000000","8819.000000","8777.000000","10.000000","8819.000000","8819.000000",,,,,,,,,,,"4933328.000000","6717360.000000","478752.000000","0.000000","65863516.000000","0.000000","90447756.000000",,"3753872.000000","28566300.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000",,,,,,,,"282.000000",,,,,,,,,,,,"4123.000000","668.000000","765.000000","717.000000","848.000000","1001.000000","856.000000","0.000000","0.000000","0.000000","557.000000","619.000000","599.000000","674.000000","709.000000","691.000000","160.000000","6000.000000",,"8972794.000000",,,,, -"16642.000000","58.780000","16642.000000","58.780000","16642.000000","58.780000",,,,,,,,,,,,,,"35.000000","6596.000000","6028.000000","4.000000","6596.000000","6596.000000",,,,,,,,,,,"5164060.000000","7157812.000000","478752.000000","0.000000","65858796.000000","0.000000","90447804.000000",,"3753872.000000","28631296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000",,,,,,,,"179.000000","6950.000000",,,,,,,,,,,"4350.000000","670.000000","766.000000","718.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","560.000000","638.000000","602.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972814.000000",,,,, -"16346.000000","58.310000","16346.000000","58.310000","16346.000000","58.310000",,,,,,,,,,,,,,"36.000000","7877.000000","7840.000000","5.000000","7877.000000","7877.000000",,,,,,,,,,,"5446440.000000","7482140.000000","478752.000000","0.000000","65840880.000000","0.000000","90447804.000000",,"3753872.000000","28599424.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000",,,,,,,,"235.000000",,,,,,,,,,,,"4033.000000","673.000000","732.000000","714.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","562.000000","609.000000","599.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972834.000000",,,,, -"16909.000000","59.180000","16909.000000","59.180000","16909.000000","59.180000",,,,,,,,,,,,,,"55.000000","9226.500000","8649.000000","5.000000","9226.500000","9226.500000",,,,,,,,,,,"5278668.000000","7398256.000000","478752.000000","0.000000","65824056.000000","0.000000","90447804.000000",,"3753872.000000","28615900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000",,,,,,,,"198.000000","9550.000000",,,,,,,,,,,"4111.000000","676.000000","694.000000","721.000000","851.000000","860.000000","860.000000","0.000000","2.000000","0.000000","564.000000","595.000000","602.000000","678.000000","697.000000","697.000000","160.000000","6000.000000",,"8972854.000000",,,,, -"16342.000000","58.310000","16342.000000","58.310000","16342.000000","58.310000",,,,,,,,,,,,,,"39.000000","7346.000000","6921.000000","5.000000","7346.000000","7346.000000",,,,,,,,,,,"5299512.000000","7188416.000000","478752.000000","0.000000","65845904.000000","0.000000","90447676.000000",,"3753872.000000","28638112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000",,,,,,,,"162.000000","7569.000000",,,,,,,,,,,"4097.000000","682.000000","724.000000","725.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","568.000000","595.000000","604.000000","683.000000","768.000000","697.000000","160.000000","6000.000000",,"8972874.000000",,,,, -"17150.000000","59.565000","17150.000000","59.565000","17150.000000","59.565000",,,,,,,,,,,,,,"56.000000","8032.500000","7807.000000","5.000000","8032.500000","8032.500000",,,,,,,,,,,"5305120.000000","7062584.000000","478752.000000","0.000000","65833792.000000","0.000000","90447676.000000",,"3753872.000000","28633400.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000",,,,,,,,"164.000000","8038.000000",,,,,,,,,,,"4440.000000","685.000000","742.000000","726.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","571.000000","619.000000","605.000000","687.000000","768.000000","691.000000","160.000000","6000.000000",,"8972894.000000",,,,, -"17486.000000","60.090000","17486.000000","60.090000","17486.000000","60.090000",,,,,,,,,,,,,,"56.000000","9345.000000","9129.000000","3.000000","9345.000000","9345.000000",,,,,,,,,,,"5388960.000000","7398084.000000","478752.000000","0.000000","65831196.000000","0.000000","90447632.000000",,"3753872.000000","28634752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000",,,,,,,,"221.000000","9283.000000",,,,,,,,,,,"4097.000000","688.000000","751.000000","727.000000","868.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","617.000000","603.000000","688.000000","768.000000","697.000000","160.000000","6000.000000",,"8972914.000000",,,,, -"16600.000000","58.700000","16600.000000","58.700000","16600.000000","58.700000",,,,,,,,,,,,,,"98.000000","21054.500000","20849.000000","9.000000","21054.500000","21054.500000",,,,,,,,,,,"4996108.000000","7595360.000000","478752.000000","0.000000","65826140.000000","0.000000","90447632.000000",,"3753872.000000","28663516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000",,,,,,,,"245.000000","20915.000000",,,,,,,,,,,"4251.000000","692.000000","745.000000","735.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","575.000000","616.000000","607.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972934.000000",,,,, -"14611.000000","55.575000","14611.000000","55.575000","14611.000000","55.575000",,,,,,,,,,,,,,"352.000000","5812.000000","5105.000000","9.000000","5812.000000","5812.000000",,,,,,,,,,,"5029968.000000","7332844.000000","478752.000000","0.000000","65805868.000000","0.000000","90447840.000000",,"3753872.000000","28673360.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000",,,,,,,,"426.000000","5739.000000",,,,,,,,,,,"4362.000000","688.000000","691.000000","731.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","565.000000","603.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972955.000000",,,,, -"16890.000000","59.140000","16890.000000","59.140000","16890.000000","59.140000",,,,,,,,,,,,,,"49.000000","4328.500000","4173.000000","65.000000","4328.500000","4328.500000",,,,,,,,,,,"5365512.000000","7500616.000000","478752.000000","0.000000","65798940.000000","0.000000","90447840.000000",,"3753872.000000","28678348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000",,,,,,,,"105.000000","4330.000000",,,,,,,,,,,"4021.000000","694.000000","732.000000","733.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","576.000000","585.000000","603.000000","689.000000","789.000000","697.000000","160.000000","6000.000000",,"8972974.000000",,,,, -"15547.000000","57.040000","15547.000000","57.040000","15547.000000","57.040000",,,,,,,,,,,,,,"36.000000","5892.000000","5707.000000","46.000000","5892.000000","5892.000000",,,,,,,,,,,"5659116.000000","7542556.000000","478752.000000","0.000000","65806068.000000","0.000000","90447840.000000",,"3753872.000000","28650632.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000",,,,,,,,"129.000000","5910.000000",,,,,,,,,,,"4117.000000","694.000000","713.000000","724.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","575.000000","565.000000","598.000000","688.000000","789.000000","697.000000","160.000000","6000.000000",,"8972994.000000",,,,, -"15283.000000","56.630000","15283.000000","56.630000","15283.000000","56.630000",,,,,,,,,,,,,,"45.000000","4952.000000","4666.000000","40.000000","4952.000000","4952.000000",,,,,,,,,,,"5990520.000000","7736912.000000","478752.000000","0.000000","65806224.000000","0.000000","90447840.000000",,"3753872.000000","28688252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000",,,,,,,,"122.000000","5069.000000",,,,,,,,,,,"3990.000000","696.000000","753.000000","729.000000","887.000000","1190.000000","916.000000","0.000000","0.000000","0.000000","576.000000","582.000000","597.000000","689.000000","789.000000","709.000000","160.000000","6000.000000",,"8973014.000000",,,,, -"15936.000000","57.640000","15936.000000","57.640000","15936.000000","57.640000",,,,,,,,,,,,,,"90.000000","2566.000000","2463.000000","24.000000","2566.000000","2566.000000",,,,,,,,,,,"5696624.000000","7631752.000000","478752.000000","0.000000","65787688.000000","0.000000","90447540.000000",,"3753872.000000","28706060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000",,,,,,,,"87.000000","2491.000000",,,,,,,,,,,"4084.000000","695.000000","659.000000","720.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","544.000000","592.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973034.000000",,,,, -"13998.000000","54.595000","13998.000000","54.595000","13998.000000","54.595000",,,,,,,,,,,,,,"41.000000","3205.000000","2019.000000","80.000000","3205.000000","3205.000000",,,,,,,,,,,"5487080.000000","7296384.000000","478752.000000","0.000000","65772584.000000","0.000000","90447712.000000",,"3753872.000000","28674144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000",,,,,,,,"550.000000","3800.000000",,,,,,,,,,,"4074.000000","695.000000","635.000000","717.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","532.000000","589.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973054.000000",,,,, -"16054.000000","57.815000","16054.000000","57.815000","16054.000000","57.815000",,,,,,,,,,,,,,"1051.000000","5513.500000","4035.000000","58.000000","5513.500000","5513.500000",,,,,,,,,,,"5656312.000000","7722892.000000","478740.000000","0.000000","65771880.000000","0.000000","90447728.000000",,"3753872.000000","28727588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000",,,,,,,,"1173.000000","4767.000000",,,,,,,,,,,"4026.000000","694.000000","627.000000","709.000000","887.000000","854.000000","916.000000","0.000000","0.000000","0.000000","573.000000","542.000000","583.000000","689.000000","654.000000","709.000000","160.000000","6000.000000",,"8973074.000000",,,,, -"15845.000000","57.495000","15845.000000","57.495000","15845.000000","57.495000",,,,,,,,,,,,,,"1617.000000","5345.000000","3631.000000","68.000000","5345.000000","5345.000000",,,,,,,,,,,"5677624.000000","7429636.000000","478740.000000","0.000000","65778860.000000","0.000000","90448072.000000",,"3753872.000000","28721708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000",,,,,,,,"1715.000000","3726.000000",,,,,,,,,,,"4107.000000","694.000000","643.000000","696.000000","887.000000","854.000000","891.000000","0.000000","0.000000","0.000000","574.000000","544.000000","577.000000","689.000000","654.000000","697.000000","160.000000","6000.000000",,"8973094.000000",,,,, -"15233.000000","56.525000","15233.000000","56.525000","15233.000000","56.525000",,,,,,,,,,,,,,"45.000000","6494.000000","6225.000000","17.000000","6494.000000","6494.000000",,,,,,,,,,,"5928940.000000","7534148.000000","478736.000000","0.000000","65758964.000000","0.000000","90447728.000000",,"3753872.000000","28732644.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000",,,,,,,,"132.000000","6586.000000",,,,,,,,,,,"4362.000000","696.000000","654.000000","694.000000","887.000000","782.000000","891.000000","0.000000","0.000000","0.000000","576.000000","559.000000","573.000000","689.000000","654.000000","690.000000","160.000000","6000.000000",,"8973114.000000",,,,, -"14075.000000","54.700000","14075.000000","54.700000","14075.000000","54.700000",,,,,,,,,,,,,,"48.000000","3546.000000","3577.000000","52.000000","3546.000000","3546.000000",,,,,,,,,,,"5930408.000000","7552436.000000","478736.000000","0.000000","65735472.000000","0.000000","90447732.000000",,"3753872.000000","28714692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000",,,,,,,,"94.000000","3372.000000",,,,,,,,,,,"4121.000000","696.000000","607.000000","684.000000","887.000000","757.000000","891.000000","0.000000","0.000000","0.000000","576.000000","530.000000","568.000000","689.000000","646.000000","690.000000","160.000000","6000.000000",,"8973134.000000",,,,, -"14789.000000","55.820000","14789.000000","55.820000","14789.000000","55.820000",,,,,,,,,,,,,,"72.000000","9800.000000","8690.000000","23.000000","9800.000000","9800.000000",,,,,,,,,,,"5825476.000000","7657220.000000","478736.000000","0.000000","65734344.000000","0.000000","90447660.000000",,"3753872.000000","28716284.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000",,,,,,,,"218.000000","10620.000000",,,,,,,,,,,"4237.000000","697.000000","613.000000","680.000000","887.000000","814.000000","891.000000","0.000000","0.000000","0.000000","577.000000","540.000000","566.000000","689.000000","667.000000","690.000000","160.000000","6000.000000",,"8973154.000000",,,,, -"13144.000000","53.320000","13144.000000","53.320000","13144.000000","53.320000",,,,,,,,,,,,,,"60.000000","24042.500000","20791.000000","136.000000","24042.500000","24042.500000",,,,,,,,,,,"5951304.000000","7720140.000000","478736.000000","0.000000","65893572.000000","0.000000","90447660.000000",,"3753872.000000","28591396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000",,,,,,,,"6002.000000","21231.000000",,,,,,,,,,,"4264.000000","696.000000","554.000000","660.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","577.000000","498.000000","554.000000","689.000000","667.000000","687.000000","160.000000","6000.000000",,"8973174.000000",,,,, -"12966.000000","53.115000","12966.000000","53.115000","12966.000000","53.115000",,,,,,,,,,,,,,"65.000000","35014.500000","31958.000000","206.000000","35014.500000","35014.500000",,,,,,,,,,,"5774996.000000","7212432.000000","478736.000000","0.000000","66044460.000000","0.000000","90447660.000000",,"3753872.000000","28310752.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000",,,,,,,,"5949.000000","32056.000000",,,,,,,,,,,"4015.000000","695.000000","548.000000","645.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","576.000000","490.000000","542.000000","689.000000","667.000000","667.000000","160.000000","6000.000000",,"8973194.000000",,,,, -"15546.000000","57.210000","15546.000000","57.210000","15546.000000","57.210000",,,,,,,,,,,,,,"48.000000","35013.000000","31799.000000","113.000000","35013.000000","35013.000000",,,,,,,,,,,"5816944.000000","7191460.000000","478736.000000","0.000000","66152636.000000","0.000000","90447660.000000",,"3753872.000000","28223132.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000",,,,,,,,"5731.000000","32446.000000",,,,,,,,,,,"4332.000000","695.000000","538.000000","637.000000","887.000000","663.000000","814.000000","0.000000","0.000000","0.000000","577.000000","488.000000","540.000000","689.000000","582.000000","654.000000","160.000000","6000.000000",,"8973214.000000",,,,, -"13412.000000","53.875000","13412.000000","53.875000","13412.000000","53.875000",,,,,,,,,,,,,,"34.000000","32461.000000","32426.000000","102.000000","32461.000000","32461.000000",,,,,,,,,,,"7169096.000000","8646884.000000","478736.000000","0.000000","66176764.000000","0.000000","90408232.000000",,"3753872.000000","28036916.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000",,,,,,,,"5672.000000",,,,,,,,,,,,"4219.000000","697.000000","555.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","496.000000","530.000000","689.000000","582.000000","649.000000","160.000000","6000.000000",,"8973234.000000",,,,, -"14934.000000","56.265000","14934.000000","56.265000","14934.000000","56.265000",,,,,,,,,,,,,,"46.000000","38786.000000","31375.000000","30.000000","38786.000000","38786.000000",,,,,,,,,,,"7074448.000000","8513252.000000","478736.000000","0.000000","66167008.000000","0.000000","90362948.000000",,"3753872.000000","28018276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000",,,,,,,,"13836.000000","32314.000000",,,,,,,,,,,"4239.000000","696.000000","573.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","522.000000","533.000000","689.000000","590.000000","649.000000","160.000000","6000.000000",,"8973254.000000",,,,, -"17815.000000","60.790000","17815.000000","60.790000","17815.000000","60.790000",,,,,,,,,,,,,,"321.000000","36929.500000","29046.000000","45.000000","36929.500000","36929.500000",,,,,,,,,,,"7074384.000000","8387360.000000","478736.000000","0.000000","66201532.000000","0.000000","90362884.000000",,"3753872.000000","27990628.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000",,,,,,,,"15207.000000","29284.000000",,,,,,,,,,,"4319.000000","686.000000","570.000000","605.000000","868.000000","663.000000","757.000000","0.000000","0.000000","0.000000","576.000000","522.000000","527.000000","687.000000","620.000000","646.000000","160.000000","6000.000000",,"8973274.000000",,,,, -"16975.000000","59.485000","16975.000000","59.485000","16975.000000","59.485000",,,,,,,,,,,,,,"36.000000","31944.000000","27573.000000","102.000000","31944.000000","31944.000000",,,,,,,,,,,"8710160.000000","10169940.000000","478736.000000","0.000000","66220808.000000","0.000000","90362884.000000",,"3753872.000000","28013292.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000",,,,,,,,"4502.000000","31777.000000",,,,,,,,,,,"4669.000000","686.000000","640.000000","608.000000","874.000000","935.000000","782.000000","0.000000","0.000000","0.000000","577.000000","594.000000","536.000000","688.000000","835.000000","649.000000","160.000000","6000.000000",,"8973294.000000",,,,, -"17195.000000","59.825000","17195.000000","59.825000","17195.000000","59.825000",,,,,,,,,,,,,,"52.000000","8784.500000","8407.000000","34.000000","8784.500000","8784.500000",,,,,,,,,,,"8449160.000000","9862240.000000","478736.000000","0.000000","66209712.000000","0.000000","90363068.000000",,"3753872.000000","28054512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000",,,,,,,,"595.000000","8513.000000",,,,,,,,,,,"4481.000000","684.000000","664.000000","604.000000","874.000000","935.000000","757.000000","0.000000","0.000000","0.000000","577.000000","615.000000","540.000000","688.000000","835.000000","646.000000","160.000000","6000.000000",,"8973314.000000",,,,, -"18531.000000","61.905000","18531.000000","61.905000","18531.000000","61.905000",,,,,,,,,,,,,,"459.000000","6856.500000","6109.000000","10.000000","6856.500000","6856.500000",,,,,,,,,,,"8449160.000000","9872152.000000","478736.000000","0.000000","66190820.000000","0.000000","90363068.000000",,"3753872.000000","28067152.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000",,,,,,,,"545.000000","6599.000000",,,,,,,,,,,"4389.000000","682.000000","720.000000","617.000000","868.000000","972.000000","782.000000","0.000000","0.000000","0.000000","578.000000","642.000000","547.000000","689.000000","835.000000","649.000000","160.000000","6000.000000",,"8973334.000000",,,,, -"18176.000000","61.345000","18176.000000","61.345000","18176.000000","61.345000",,,,,,,,,,,,,,"114.000000","4934.000000","4650.000000","8.000000","4934.000000","4934.000000",,,,,,,,,,,"8113616.000000","9515636.000000","478736.000000","0.000000","66183572.000000","0.000000","90363068.000000",,"3753872.000000","28126660.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000",,,,,,,,"514.000000","4590.000000",,,,,,,,,,,"4433.000000","683.000000","716.000000","624.000000","860.000000","972.000000","782.000000","0.000000","0.000000","0.000000","580.000000","637.000000","557.000000","691.000000","724.000000","667.000000","160.000000","6000.000000",,"8973354.000000",,,,, -"13581.000000","54.155000","13581.000000","54.155000","13581.000000","54.155000",,,,,,,,,,,,,,"175.000000","2228.500000","1874.000000","3.000000","2228.500000","2228.500000",,,,,,,,,,,"8108856.000000","9406016.000000","478736.000000","0.000000","66202488.000000","0.000000","90363068.000000",,"3753872.000000","28145632.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000",,,,,,,,"218.000000","2189.000000",,,,,,,,,,,"4315.000000","680.000000","688.000000","616.000000","860.000000","972.000000","757.000000","0.000000","0.000000","0.000000","577.000000","598.000000","551.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973374.000000",,,,, -"16798.000000","59.195000","16798.000000","59.195000","16798.000000","59.195000",,,,,,,,,,,,,,"41.000000","5921.000000","6003.000000","35.000000","5921.000000","5921.000000",,,,,,,,,,,"8381220.000000","9658560.000000","478736.000000","0.000000","66190772.000000","0.000000","90362804.000000",,"3753872.000000","28157588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000",,,,,,,,"127.000000","5669.000000",,,,,,,,,,,"4016.000000","678.000000","667.000000","622.000000","854.000000","798.000000","788.000000","0.000000","0.000000","0.000000","577.000000","579.000000","554.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973394.000000",,,,, -"20990.000000","65.765000","20990.000000","65.765000","20990.000000","65.765000",,,,,,,,,,,,,,"36.000000","8922.500000","8650.000000","16.000000","8922.500000","8922.500000",,,,,,,,,,,"8276612.000000","9491328.000000","478736.000000","0.000000","66199684.000000","0.000000","90363056.000000",,"3753872.000000","28177756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000",,,,,,,,"166.000000","8992.000000",,,,,,,,,,,"4233.000000","687.000000","781.000000","649.000000","860.000000","1253.000000","814.000000","0.000000","0.000000","0.000000","581.000000","612.000000","567.000000","695.000000","902.000000","711.000000","160.000000","6000.000000",,"8973414.000000",,,,, -"19347.000000","63.205000","19347.000000","63.205000","19347.000000","63.205000",,,,,,,,,,,,,,"72.000000","9185.000000","8795.000000","5.000000","9185.000000","9185.000000",,,,,,,,,,,"8206288.000000","9549412.000000","478736.000000","0.000000","66228592.000000","0.000000","90427636.000000",,"3753872.000000","28196900.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000",,,,,,,,"201.000000","9302.000000",,,,,,,,,,,"4258.000000","693.000000","935.000000","682.000000","891.000000","1281.000000","972.000000","0.000000","0.000000","0.000000","583.000000","682.000000","581.000000","709.000000","902.000000","724.000000","160.000000","6000.000000",,"8973434.000000",,,,, -"21485.000000","66.570000","21485.000000","66.570000","21485.000000","66.570000",,,,,,,,,,,,,,"37.000000","8755.500000","7743.000000","6.000000","8755.500000","8755.500000",,,,,,,,,,,"8101436.000000","9967976.000000","478736.000000","0.000000","66267148.000000","0.000000","90427636.000000",,"3753872.000000","28156520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000",,,,,,,,"238.000000","9492.000000",,,,,,,,,,,"4352.000000","703.000000","1046.000000","708.000000","916.000000","1281.000000","1124.000000","0.000000","0.000000","0.000000","587.000000","738.000000","594.000000","711.000000","902.000000","784.000000","160.000000","6000.000000",,"8973454.000000",,,,, -"17868.000000","60.905000","17868.000000","60.905000","17868.000000","60.905000",,,,,,,,,,,,,,"39.000000","10935.500000","9541.000000","10.000000","10935.500000","10935.500000",,,,,,,,,,,"8080464.000000","10219632.000000","478736.000000","0.000000","66257584.000000","0.000000","90427636.000000",,"3753872.000000","28196460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000",,,,,,,,"294.000000","11995.000000",,,,,,,,,,,"4162.000000","709.000000","1015.000000","742.000000","935.000000","1281.000000","1155.000000","0.000000","0.000000","0.000000","590.000000","715.000000","611.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973474.000000",,,,, -"14848.000000","56.160000","14848.000000","56.160000","14848.000000","56.160000",,,,,,,,,,,,,,"50.000000","9321.500000","8080.000000","11.000000","9321.500000","9321.500000",,,,,,,,,,,"8710924.000000","10613996.000000","478736.000000","0.000000","66244960.000000","0.000000","90427636.000000",,"3753872.000000","28199912.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000",,,,,,,,"274.000000","10238.000000",,,,,,,,,,,"4119.000000","707.000000","880.000000","748.000000","935.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","587.000000","660.000000","615.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973494.000000",,,,, -"17721.000000","60.660000","17721.000000","60.660000","17721.000000","60.660000",,,,,,,,,,,,,,"39.000000","11777.500000","10219.000000","17.000000","11777.500000","11777.500000",,,,,,,,,,,"8857460.000000","10487336.000000","478736.000000","0.000000","66227668.000000","0.000000","90427372.000000",,"3753872.000000","28215488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000",,,,,,,,"298.000000","12997.000000",,,,,,,,,,,"4127.000000","709.000000","807.000000","762.000000","943.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","621.000000","620.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973514.000000",,,,, -"15358.000000","56.945000","15358.000000","56.945000","15358.000000","56.945000",,,,,,,,,,,,,,"36.000000","7929.000000","6550.000000","60.000000","7929.000000","7929.000000",,,,,,,,,,,"9046204.000000","10466368.000000","478736.000000","0.000000","66216328.000000","0.000000","90427372.000000",,"3753872.000000","28169536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000",,,,,,,,"258.000000","9013.000000",,,,,,,,,,,"3975.000000","709.000000","705.000000","771.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","573.000000","626.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973534.000000",,,,, -"15860.000000","57.720000","15860.000000","57.720000","15860.000000","57.720000",,,,,,,,,,,,,,"41.000000","11415.500000","10096.000000","11.000000","11415.500000","11415.500000",,,,,,,,,,,"7934056.000000","9548368.000000","478736.000000","0.000000","66196544.000000","0.000000","90427372.000000",,"3753872.000000","28182244.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000",,,,,,,,"276.000000","12416.000000",,,,,,,,,,,"4044.000000","710.000000","725.000000","778.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","589.000000","629.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973554.000000",,,,, -"20011.000000","64.360000","20011.000000","64.360000","20011.000000","64.360000",,,,,,,,,,,,,,"395.000000","11714.000000","11318.000000","68.000000","11714.000000","11714.000000",,,,,,,,,,,"8668056.000000","10115748.000000","478736.000000","0.000000","66467460.000000","0.000000","90427372.000000",,"3753872.000000","27926784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000",,,,,,,,"544.000000",,,,,,,,,,,,"4432.000000","713.000000","773.000000","803.000000","943.000000","1454.000000","1173.000000","0.000000","0.000000","0.000000","589.000000","600.000000","636.000000","711.000000","817.000000","812.000000","160.000000","6000.000000",,"8973574.000000",,,,, -"19556.000000","63.750000","19556.000000","63.750000","19556.000000","63.750000",,,,,,,,,,,,,,"148.000000","13750.500000","12543.000000","26.000000","13750.500000","13750.500000",,,,,,,,,,,"8771464.000000","10197932.000000","478736.000000","0.000000","66672260.000000","0.000000","90421136.000000",,"3753872.000000","27730564.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000",,,,,,,,"371.000000","14438.000000",,,,,,,,,,,"4259.000000","727.000000","1028.000000","849.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","591.000000","668.000000","641.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973594.000000",,,,, -"19346.000000","63.415000","19346.000000","63.415000","19346.000000","63.415000",,,,,,,,,,,,,,"42.000000","11603.000000","10380.000000","20.000000","11603.000000","11603.000000",,,,,,,,,,,"8352036.000000","9799472.000000","478736.000000","0.000000","66654820.000000","0.000000","90421136.000000",,"3753872.000000","27779876.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000",,,,,,,,"258.000000","12525.000000",,,,,,,,,,,"4178.000000","731.000000","1073.000000","860.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","594.000000","696.000000","645.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973614.000000",,,,, -"20337.000000","64.960000","20337.000000","64.960000","20337.000000","64.960000",,,,,,,,,,,,,,"117.000000","7854.500000","6572.000000","40.000000","7854.500000","7854.500000",,,,,,,,,,,"8178760.000000","9647448.000000","478736.000000","0.000000","66649380.000000","0.000000","90421092.000000",,"3753872.000000","27787696.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000",,,,,,,,"263.000000","8756.000000",,,,,,,,,,,"4380.000000","739.000000","1113.000000","881.000000","1006.000000","1743.000000","1281.000000","0.000000","0.000000","0.000000","597.000000","725.000000","653.000000","736.000000","795.000000","795.000000","160.000000","6000.000000",,"8973634.000000",,,,, -"19869.000000","64.215000","19869.000000","64.215000","19869.000000","64.215000",,,,,,,,,,,,,,"37.000000","10468.500000","8944.000000","20.000000","10468.500000","10468.500000",,,,,,,,,,,"8157956.000000","9710468.000000","478736.000000","0.000000","66626104.000000","0.000000","90420148.000000",,"3753872.000000","27816068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000",,,,,,,,"599.000000","11355.000000",,,,,,,,,,,"4381.000000","743.000000","915.000000","889.000000","1006.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","600.000000","709.000000","655.000000","742.000000","792.000000","795.000000","160.000000","6000.000000",,"8973654.000000",,,,, -"19594.000000","63.770000","19594.000000","63.770000","19594.000000","63.770000",,,,,,,,,,,,,,"36.000000","9981.000000","8797.000000","65.000000","9981.000000","9981.000000",,,,,,,,,,,"7924184.000000","9643936.000000","478736.000000","0.000000","66598840.000000","0.000000","90406268.000000",,"3753872.000000","27779068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000",,,,,,,,"245.000000","10883.000000",,,,,,,,,,,"4289.000000","745.000000","935.000000","910.000000","1035.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","720.000000","669.000000","754.000000","792.000000","795.000000","160.000000","6000.000000",,"8973674.000000",,,,, -"18152.000000","61.510000","18152.000000","61.510000","18152.000000","61.510000",,,,,,,,,,,,,,"38.000000","8409.500000","7119.000000","59.000000","8409.500000","8409.500000",,,,,,,,,,,"7399616.000000","9327924.000000","478736.000000","0.000000","66580244.000000","0.000000","90406268.000000",,"3753872.000000","27798788.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000",,,,,,,,"244.000000","9416.000000",,,,,,,,,,,"4184.000000","748.000000","891.000000","926.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","602.000000","689.000000","675.000000","754.000000","758.000000","795.000000","160.000000","6000.000000",,"8973694.000000",,,,, -"15823.000000","57.855000","15823.000000","57.855000","15823.000000","57.855000",,,,,,,,,,,,,,"41.000000","8512.000000","7007.000000","47.000000","8512.000000","8512.000000",,,,,,,,,,,"7125864.000000","8928124.000000","478736.000000","0.000000","66573612.000000","0.000000","90400660.000000",,"3753872.000000","27829844.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000",,,,,,,,"262.000000","9714.000000",,,,,,,,,,,"4078.000000","747.000000","832.000000","899.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","642.000000","661.000000","754.000000","758.000000","792.000000","160.000000","6000.000000",,"8973714.000000",,,,, -"15444.000000","57.250000","15444.000000","57.250000","15444.000000","57.250000",,,,,,,,,,,,,,"45.000000","6705.000000","5485.000000","52.000000","6705.000000","6705.000000",,,,,,,,,,,"7084376.000000","8634976.000000","478736.000000","0.000000","66557184.000000","0.000000","90401116.000000",,"3753872.000000","27844976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000",,,,,,,,"210.000000","7668.000000",,,,,,,,,,,"4082.000000","747.000000","764.000000","876.000000","1061.000000","1116.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","595.000000","652.000000","754.000000","693.000000","784.000000","160.000000","6000.000000",,"8973734.000000",,,,, -"15909.000000","57.970000","15909.000000","57.970000","15909.000000","57.970000",,,,,,,,,,,,,,"41.000000","6989.500000","5938.000000","45.000000","6989.500000","6989.500000",,,,,,,,,,,"6554424.000000","8069380.000000","478736.000000","0.000000","66534020.000000","0.000000","90400596.000000",,"3753872.000000","27866756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000",,,,,,,,"212.000000","7787.000000",,,,,,,,,,,"3977.000000","746.000000","667.000000","850.000000","1061.000000","742.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","562.000000","639.000000","754.000000","635.000000","764.000000","160.000000","6000.000000",,"8973754.000000",,,,, -"17603.000000","60.615000","17603.000000","60.615000","17603.000000","60.615000",,,,,,,,,,,,,,"37.000000","8031.000000","7193.000000","40.000000","8031.000000","8031.000000",,,,,,,,,,,"6785296.000000","8384128.000000","478736.000000","0.000000","66514552.000000","0.000000","90400780.000000",,"3753872.000000","27906332.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000",,,,,,,,"224.000000","8607.000000",,,,,,,,,,,"4201.000000","746.000000","695.000000","835.000000","1061.000000","826.000000","1135.000000","0.000000","0.000000","0.000000","600.000000","586.000000","636.000000","742.000000","731.000000","764.000000","160.000000","6000.000000",,"8973774.000000",,,,, -"19648.000000","63.805000","19648.000000","63.805000","19648.000000","63.805000",,,,,,,,,,,,,,"43.000000","9555.500000","9254.000000","14.000000","9555.500000","9555.500000",,,,,,,,,,,"7036952.000000","8656760.000000","478736.000000","0.000000","66498300.000000","0.000000","90400780.000000",,"3753872.000000","27917764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000",,,,,,,,"169.000000","9645.000000",,,,,,,,,,,"4113.000000","749.000000","767.000000","853.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","601.000000","638.000000","647.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973794.000000",,,,, -"17387.000000","60.270000","17387.000000","60.270000","17387.000000","60.270000",,,,,,,,,,,,,,"42.000000","9569.000000","9510.000000","85.000000","9569.000000","9569.000000",,,,,,,,,,,"7382776.000000","8887160.000000","478736.000000","0.000000","66501864.000000","0.000000","90400780.000000",,"3753872.000000","27929560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000",,,,,,,,"190.000000","9396.000000",,,,,,,,,,,"4216.000000","748.000000","787.000000","846.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","602.000000","648.000000","645.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973814.000000",,,,, -"19858.000000","64.130000","19858.000000","64.130000","19858.000000","64.130000",,,,,,,,,,,,,,"100.000000","10929.500000","10646.000000","9.000000","10929.500000","10929.500000",,,,,,,,,,,"7382776.000000","8803276.000000","478736.000000","0.000000","66488180.000000","0.000000","90400780.000000",,"3753872.000000","27942036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000",,,,,,,,"222.000000","10891.000000",,,,,,,,,,,"4344.000000","753.000000","861.000000","866.000000","1061.000000","996.000000","1135.000000","0.000000","0.000000","0.000000","605.000000","688.000000","658.000000","758.000000","795.000000","784.000000","160.000000","6000.000000",,"8973834.000000",,,,, -"19171.000000","63.045000","19171.000000","63.045000","19171.000000","63.045000",,,,,,,,,,,,,,"47.000000","10929.000000","9672.000000","20.000000","10929.000000","10929.000000",,,,,,,,,,,"7089868.000000","8657172.000000","478736.000000","0.000000","66461556.000000","0.000000","90401472.000000",,"3753872.000000","27922104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000",,,,,,,,"292.000000","11846.000000",,,,,,,,,,,"4361.000000","758.000000","832.000000","874.000000","1061.000000","1011.000000","1135.000000","0.000000","0.000000","0.000000","609.000000","685.000000","666.000000","759.000000","824.000000","792.000000","160.000000","6000.000000",,"8973854.000000",,,,, -"18785.000000","62.430000","18785.000000","62.430000","18785.000000","62.430000",,,,,,,,,,,,,,"323.000000","14527.000000","13857.000000","28.000000","14527.000000","14527.000000",,,,,,,,,,,"6276576.000000","7938048.000000","478736.000000","0.000000","66443380.000000","0.000000","90400516.000000",,"3753872.000000","27992316.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000",,,,,,,,"521.000000","14352.000000",,,,,,,,,,,"4239.000000","758.000000","881.000000","868.000000","1035.000000","1011.000000","1116.000000","0.000000","0.000000","0.000000","610.000000","704.000000","666.000000","758.000000","824.000000","784.000000","160.000000","6000.000000",,"8973874.000000",,,,, -"19888.000000","64.150000","19888.000000","64.150000","19888.000000","64.150000",,,,,,,,,,,,,,"40.000000","12011.500000","11763.000000","8.000000","12011.500000","12011.500000",,,,,,,,,,,"6129772.000000","7822132.000000","478736.000000","0.000000","66434964.000000","0.000000","90400516.000000",,"3753872.000000","27999556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000",,,,,,,,"215.000000","12005.000000",,,,,,,,,,,"4461.000000","763.000000","854.000000","832.000000","1035.000000","1011.000000","1018.000000","0.000000","0.000000","0.000000","614.000000","699.000000","665.000000","763.000000","824.000000","774.000000","160.000000","6000.000000",,"8973894.000000",,,,, -"21815.000000","67.160000","21815.000000","67.160000","21815.000000","67.160000",,,,,,,,,,,,,,"36.000000","10039.500000","9719.000000","11.000000","10039.500000","10039.500000",,,,,,,,,,,"5962008.000000","7486596.000000","478736.000000","0.000000","66413840.000000","0.000000","90400524.000000",,"3753872.000000","28019336.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000",,,,,,,,"172.000000","10151.000000",,,,,,,,,,,"4634.000000","770.000000","933.000000","846.000000","1069.000000","1123.000000","1069.000000","0.000000","0.000000","0.000000","619.000000","721.000000","672.000000","769.000000","823.000000","792.000000","160.000000","6000.000000",,"8973914.000000",,,,, -"21180.000000","66.155000","21180.000000","66.155000","21180.000000","66.155000",,,,,,,,,,,,,,"43.000000","10062.500000","9899.000000","6.000000","10062.500000","10062.500000",,,,,,,,,,,"5642296.000000","7250756.000000","478736.000000","0.000000","66395192.000000","0.000000","90400516.000000",,"3753872.000000","28001924.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000",,,,,,,,"172.000000","10011.000000",,,,,,,,,,,"4587.000000","778.000000","960.000000","837.000000","1069.000000","1123.000000","1045.000000","0.000000","0.000000","0.000000","624.000000","762.000000","673.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973934.000000",,,,, -"20150.000000","64.535000","20150.000000","64.535000","20150.000000","64.535000",,,,,,,,,,,,,,"41.000000","12700.500000","12448.000000","32.000000","12700.500000","12700.500000",,,,,,,,,,,"5873232.000000","7586552.000000","478736.000000","0.000000","66384188.000000","0.000000","90400768.000000",,"3753872.000000","28012104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000",,,,,,,,"556.000000","12354.000000",,,,,,,,,,,"4095.000000","789.000000","1022.000000","853.000000","1084.000000","1221.000000","1045.000000","0.000000","0.000000","0.000000","629.000000","757.000000","674.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973954.000000",,,,, -"21027.000000","65.905000","21027.000000","65.905000","21027.000000","65.905000",,,,,,,,,,,,,,"127.000000","11650.000000","11007.000000","4.000000","11650.000000","11650.000000",,,,,,,,,,,"5726432.000000","7565576.000000","478736.000000","0.000000","66377820.000000","0.000000","90400768.000000",,"3753872.000000","28017196.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000",,,,,,,,"296.000000","11869.000000",,,,,,,,,,,"4228.000000","797.000000","1024.000000","864.000000","1123.000000","1221.000000","1116.000000","0.000000","0.000000","0.000000","633.000000","751.000000","678.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973974.000000",,,,, -"19201.000000","63.045000","19201.000000","63.045000","19201.000000","63.045000",,,,,,,,,,,,,,"44.000000","11861.000000","11817.000000","47.000000","11861.000000","11861.000000",,,,,,,,,,,"6055828.000000","7727204.000000","478736.000000","0.000000","66373492.000000","0.000000","90400596.000000",,"3753872.000000","28021692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000",,,,,,,,"222.000000",,,,,,,,,,,,"4343.000000","805.000000","1046.000000","868.000000","1124.000000","1221.000000","1123.000000","0.000000","0.000000","0.000000","637.000000","728.000000","681.000000","784.000000","794.000000","803.000000","160.000000","6000.000000",,"8973994.000000",,,,, -"20270.000000","64.715000","20270.000000","64.715000","20270.000000","64.715000",,,,,,,,,,,,,,"1394.000000","14765.500000","14284.000000","10.000000","14765.500000","14765.500000",,,,,,,,,,,"6139968.000000","7685520.000000","478736.000000","0.000000","66358664.000000","0.000000","90400848.000000",,"3753872.000000","28045232.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000",,,,,,,,"369.000000","13483.000000",,,,,,,,,,,"4326.000000","814.000000","1034.000000","893.000000","1124.000000","1178.000000","1123.000000","0.000000","0.000000","0.000000","640.000000","730.000000","692.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974014.000000",,,,, -"19160.000000","62.970000","19160.000000","62.970000","19160.000000","62.970000",,,,,,,,,,,,,,"12606.000000","38870.500000","24791.000000","12.000000","38870.500000","38870.500000",,,,,,,,,,,"6098024.000000","8000088.000000","478736.000000","0.000000","66354808.000000","0.000000","90400848.000000",,"3753872.000000","28075248.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000",,,,,,,,"14163.000000","26179.000000",,,,,,,,,,,"4257.000000","820.000000","956.000000","903.000000","1124.000000","1138.000000","1123.000000","0.000000","0.000000","0.000000","644.000000","701.000000","699.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974034.000000",,,,, -"18168.000000","61.415000","18168.000000","61.415000","18168.000000","61.415000",,,,,,,,,,,,,,"1158.000000","14030.000000","12237.000000","3.000000","14030.000000","14030.000000",,,,,,,,,,,"5972568.000000","7843752.000000","478736.000000","0.000000","66340876.000000","0.000000","90400800.000000",,"3753872.000000","28023964.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000",,,,,,,,"1368.000000","13295.000000",,,,,,,,,,,"4168.000000","826.000000","925.000000","920.000000","1124.000000","1075.000000","1123.000000","0.000000","0.000000","0.000000","646.000000","687.000000","706.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974054.000000",,,,, -"18140.000000","61.365000","18140.000000","61.365000","18140.000000","61.365000",,,,,,,,,,,,,,"755.000000","13540.000000","11884.000000","5.000000","13540.000000","13540.000000",,,,,,,,,,,"5804796.000000","7800652.000000","478736.000000","0.000000","66337688.000000","0.000000","90400800.000000",,"3753872.000000","28027636.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000",,,,,,,,"2511.000000","11929.000000",,,,,,,,,,,"4278.000000","835.000000","865.000000","927.000000","1124.000000","1060.000000","1123.000000","0.000000","0.000000","0.000000","652.000000","668.000000","708.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974074.000000",,,,, -"18893.000000","62.545000","18893.000000","62.545000","18893.000000","62.545000",,,,,,,,,,,,,,"34.000000","44033.500000","33021.000000","74.000000","44033.500000","44033.500000",,,,,,,,,,,"5993540.000000","7653852.000000","478736.000000","0.000000","66330992.000000","0.000000","90400800.000000",,"3753872.000000","28050320.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000",,,,,,,,"20719.000000","34292.000000",,,,,,,,,,,"4087.000000","844.000000","913.000000","932.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","656.000000","675.000000","706.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974094.000000",,,,, -"18231.000000","61.500000","18231.000000","61.500000","18231.000000","61.500000",,,,,,,,,,,,,,"39.000000","42689.500000","33547.000000","66.000000","42689.500000","42689.500000",,,,,,,,,,,"6491116.000000","7947268.000000","478736.000000","0.000000","66326492.000000","0.000000","90400616.000000",,"3753872.000000","28045376.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000",,,,,,,,"16475.000000","35318.000000",,,,,,,,,,,"4286.000000","848.000000","860.000000","934.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","658.000000","656.000000","707.000000","792.000000","733.000000","803.000000","160.000000","6000.000000",,"8974114.000000",,,,, -"19226.000000","63.065000","19226.000000","63.065000","19226.000000","63.065000",,,,,,,,,,,,,,"47.000000","53591.500000","49114.000000","35.000000","53591.500000","53591.500000",,,,,,,,,,,"7099456.000000","8681440.000000","478736.000000","0.000000","66328416.000000","0.000000","90400788.000000",,"3753872.000000","28022012.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000",,,,,,,,"10296.000000","47725.000000",,,,,,,,,,,"4371.000000","858.000000","904.000000","936.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","664.000000","679.000000","707.000000","794.000000","821.000000","805.000000","160.000000","6000.000000",,"8974134.000000",,,,, -"18973.000000","62.660000","18973.000000","62.660000","18973.000000","62.660000",,,,,,,,,,,,,,"726.000000","27290.000000","20867.000000","14.000000","27290.000000","27290.000000",,,,,,,,,,,"6826828.000000","8366868.000000","478736.000000","0.000000","66313964.000000","0.000000","90400788.000000",,"3753872.000000","27954716.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000",,,,,,,,"9430.000000","23556.000000",,,,,,,,,,,"4329.000000","863.000000","861.000000","938.000000","1135.000000","1118.000000","1138.000000","0.000000","0.000000","0.000000","667.000000","681.000000","706.000000","794.000000","821.000000","803.000000","160.000000","6000.000000",,"8974154.000000",,,,, -"21758.000000","67.020000","21758.000000","67.020000","21758.000000","67.020000",,,,,,,,,,,,,,"442.000000","38118.000000","37676.000000","55.000000","38118.000000","38118.000000",,,,,,,,,,,"6675316.000000","8110860.000000","478736.000000","0.000000","66311236.000000","0.000000","90400800.000000",,"3753872.000000","28006372.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000",,,,,,,,"9281.000000",,,,,,,,,,,,"4365.000000","874.000000","964.000000","951.000000","1138.000000","1353.000000","1152.000000","0.000000","0.000000","0.000000","671.000000","719.000000","710.000000","795.000000","861.000000","805.000000","160.000000","6000.000000",,"8974174.000000",,,,, -"21069.000000","65.935000","21069.000000","65.935000","21069.000000","65.935000",,,,,,,,,,,,,,"48.000000","20954.000000","19654.000000","14.000000","20954.000000","20954.000000",,,,,,,,,,,"6906000.000000","8173768.000000","478736.000000","0.000000","66300124.000000","0.000000","90400788.000000",,"3753872.000000","28015492.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000",,,,,,,,"296.000000","21908.000000",,,,,,,,,,,"4547.000000","884.000000","1031.000000","971.000000","1152.000000","1434.000000","1178.000000","0.000000","0.000000","0.000000","674.000000","750.000000","717.000000","795.000000","923.000000","823.000000","160.000000","6000.000000",,"8974194.000000",,,,, -"19536.000000","63.525000","19536.000000","63.525000","19536.000000","63.525000",,,,,,,,,,,,,,"95.000000","10344.500000","10132.000000","16.000000","10344.500000","10344.500000",,,,,,,,,,,"6654340.000000","8006000.000000","478736.000000","0.000000","66284512.000000","0.000000","90400788.000000",,"3753872.000000","28128024.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000",,,,,,,,"179.000000","10282.000000",,,,,,,,,,,"4211.000000","894.000000","1116.000000","974.000000","1173.000000","1434.000000","1221.000000","0.000000","0.000000","0.000000","676.000000","745.000000","711.000000","795.000000","923.000000","821.000000","160.000000","6000.000000",,"8974214.000000",,,,, -"22583.000000","68.295000","22583.000000","68.295000","22583.000000","68.295000",,,,,,,,,,,,,,"93.000000","11792.500000","11442.000000","2.000000","11792.500000","11792.500000",,,,,,,,,,,"6868988.000000","8163660.000000","478736.000000","0.000000","66268764.000000","0.000000","90400584.000000",,"3753872.000000","28096188.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000",,,,,,,,"252.000000","11797.000000",,,,,,,,,,,"4399.000000","907.000000","1218.000000","1003.000000","1220.000000","1510.000000","1353.000000","0.000000","0.000000","0.000000","679.000000","763.000000","711.000000","796.000000","923.000000","821.000000","160.000000","6000.000000",,"8974234.000000",,,,, -"21071.000000","65.925000","21071.000000","65.925000","21071.000000","65.925000",,,,,,,,,,,,,,"121.000000","12970.000000","12580.000000","4.000000","12970.000000","12970.000000",,,,,,,,,,,"6952452.000000","8456844.000000","478736.000000","0.000000","66268872.000000","0.000000","90400584.000000",,"3753872.000000","28094164.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000",,,,,,,,"483.000000","12755.000000",,,,,,,,,,,"4456.000000","929.000000","1389.000000","1045.000000","1281.000000","1694.000000","1496.000000","0.000000","0.000000","0.000000","682.000000","759.000000","717.000000","812.000000","919.000000","828.000000","160.000000","6000.000000",,"8974254.000000",,,,, -"21323.000000","66.320000","21323.000000","66.320000","21323.000000","66.320000",,,,,,,,,,,,,,"36.000000","10835.000000","10555.000000","4.000000","10835.000000","10835.000000",,,,,,,,,,,"7036336.000000","8876276.000000","478736.000000","0.000000","66277172.000000","0.000000","90400584.000000",,"3753872.000000","28061908.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000",,,,,,,,"274.000000","10804.000000",,,,,,,,,,,"4292.000000","947.000000","1489.000000","1067.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","688.000000","789.000000","718.000000","817.000000","919.000000","828.000000","160.000000","6000.000000",,"8974274.000000",,,,, -"24477.000000","71.250000","24477.000000","71.250000","24477.000000","71.250000",,,,,,,,,,,,,,"43.000000","12026.500000","11522.000000","14.000000","12026.500000","12026.500000",,,,,,,,,,,"7057308.000000","8917068.000000","478736.000000","0.000000","66251640.000000","0.000000","90400584.000000",,"3753872.000000","28057168.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000",,,,,,,,"216.000000","12270.000000",,,,,,,,,,,"4807.000000","958.000000","1432.000000","1080.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","694.000000","813.000000","728.000000","820.000000","980.000000","861.000000","160.000000","6000.000000",,"8974294.000000",,,,, -"20439.000000","64.915000","20439.000000","64.915000","20439.000000","64.915000",,,,,,,,,,,,,,"44.000000","12644.500000","11522.000000","7.000000","12644.500000","12644.500000",,,,,,,,,,,"6832316.000000","8733596.000000","478736.000000","0.000000","66233040.000000","0.000000","90400720.000000",,"3753872.000000","28074708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000",,,,,,,,"300.000000","13423.000000",,,,,,,,,,,"4121.000000","966.000000","1335.000000","1105.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","695.000000","802.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974314.000000",,,,, -"18532.000000","61.930000","18532.000000","61.930000","18532.000000","61.930000",,,,,,,,,,,,,,"39.000000","13940.000000","13021.000000","15.000000","13940.000000","13940.000000",,,,,,,,,,,"6350720.000000","7979368.000000","478736.000000","0.000000","66229136.000000","0.000000","90401464.000000",,"3753872.000000","28056656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000",,,,,,,,"630.000000","14188.000000",,,,,,,,,,,"4375.000000","961.000000","1142.000000","1104.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","694.000000","771.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974334.000000",,,,, -"19674.000000","63.710000","19674.000000","63.710000","19674.000000","63.710000",,,,,,,,,,,,,,"37.000000","14132.000000","14020.000000","7.000000","14132.000000","14132.000000",,,,,,,,,,,"6224024.000000","7800816.000000","478736.000000","0.000000","66220316.000000","0.000000","90400596.000000",,"3753872.000000","28067036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000",,,,,,,,"269.000000","13937.000000",,,,,,,,,,,"4319.000000","957.000000","1026.000000","1100.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","692.000000","706.000000","731.000000","817.000000","795.000000","861.000000","160.000000","6000.000000",,"8974354.000000",,,,, -"19194.000000","62.955000","19194.000000","62.955000","19194.000000","62.955000",,,,,,,,,,,,,,"44.000000","13790.500000","12837.000000","3.000000","13790.500000","13790.500000",,,,,,,,,,,"5783624.000000","7350140.000000","478736.000000","0.000000","66215984.000000","0.000000","90400596.000000",,"3753872.000000","28121452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000",,,,,,,,"299.000000","14399.000000",,,,,,,,,,,"4291.000000","959.000000","906.000000","1113.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","693.000000","689.000000","736.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974374.000000",,,,, -"17271.000000","59.940000","17271.000000","59.940000","17271.000000","59.940000",,,,,,,,,,,,,,"90.000000","12372.500000","11466.000000","8.000000","12372.500000","12372.500000",,,,,,,,,,,"6244996.000000","7790544.000000","478736.000000","0.000000","66199796.000000","0.000000","90400596.000000",,"3753872.000000","28098984.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000",,,,,,,,"328.000000","12860.000000",,,,,,,,,,,"4092.000000","962.000000","900.000000","1102.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","678.000000","733.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974394.000000",,,,, -"19407.000000","63.275000","19407.000000","63.275000","19407.000000","63.275000",,,,,,,,,,,,,,"63.000000","13680.500000","13328.000000","44.000000","13680.500000","13680.500000",,,,,,,,,,,"6454756.000000","7927484.000000","478736.000000","0.000000","66186112.000000","0.000000","90400644.000000",,"3753872.000000","28114512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000",,,,,,,,"234.000000","13735.000000",,,,,,,,,,,"4268.000000","964.000000","919.000000","1112.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","683.000000","737.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974414.000000",,,,, -"18209.000000","61.395000","18209.000000","61.395000","18209.000000","61.395000",,,,,,,,,,,,,,"2207.000000","13459.000000","12029.000000","4.000000","13459.000000","13459.000000",,,,,,,,,,,"6260032.000000","7827344.000000","478736.000000","0.000000","66182724.000000","0.000000","90400644.000000",,"3753872.000000","28116556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000",,,,,,,,"611.000000","12071.000000",,,,,,,,,,,"4250.000000","969.000000","861.000000","1105.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","699.000000","663.000000","732.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974434.000000",,,,, -"17456.000000","60.210000","17456.000000","60.210000","17456.000000","60.210000",,,,,,,,,,,,,,"47.000000","19418.000000","19371.000000","26.000000","19418.000000","19418.000000",,,,,,,,,,,"5861576.000000","7312960.000000","478736.000000","0.000000","66163652.000000","0.000000","90400644.000000",,"3753872.000000","28155648.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000",,,,,,,,"2105.000000",,,,,,,,,,,,"4367.000000","971.000000","855.000000","1100.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","701.000000","665.000000","730.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974454.000000",,,,, -"22443.000000","68.020000","22443.000000","68.020000","22443.000000","68.020000",,,,,,,,,,,,,,"329.000000","15043.500000","14413.000000","5.000000","15043.500000","15043.500000",,,,,,,,,,,"5693752.000000","7208052.000000","478736.000000","0.000000","66165924.000000","0.000000","90400592.000000",,"3753872.000000","28161480.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000",,,,,,,,"539.000000","14806.000000",,,,,,,,,,,"4441.000000","973.000000","914.000000","1102.000000","1353.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","703.000000","695.000000","732.000000","819.000000","873.000000","866.000000","160.000000","6000.000000",,"8974474.000000",,,,, -"19048.000000","62.695000","19048.000000","62.695000","19048.000000","62.695000",,,,,,,,,,,,,,"103.000000","12770.000000","12457.000000","6.000000","12770.000000","12770.000000",,,,,,,,,,,"5589020.000000","7438856.000000","478736.000000","0.000000","66149564.000000","0.000000","90400712.000000",,"3753872.000000","28134092.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000",,,,,,,,"207.000000","12771.000000",,,,,,,,,,,"4291.000000","966.000000","982.000000","1095.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","714.000000","725.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974494.000000",,,,, -"18933.000000","62.510000","18933.000000","62.510000","18933.000000","62.510000",,,,,,,,,,,,,,"52.000000","11522.500000","11427.000000","3.000000","11522.500000","11522.500000",,,,,,,,,,,"5924564.000000","7711488.000000","478736.000000","0.000000","66141936.000000","0.000000","90400712.000000",,"3753872.000000","28109444.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000",,,,,,,,"203.000000","11363.000000",,,,,,,,,,,"4357.000000","966.000000","1001.000000","1077.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","719.000000","724.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974514.000000",,,,, -"20299.000000","64.650000","20299.000000","64.650000","20299.000000","64.650000",,,,,,,,,,,,,,"43.000000","14504.000000","14141.000000","7.000000","14504.000000","14504.000000",,,,,,,,,,,"6323020.000000","8068004.000000","478736.000000","0.000000","66139132.000000","0.000000","90400760.000000",,"3753872.000000","28111000.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000",,,,,,,,"228.000000","14595.000000",,,,,,,,,,,"4392.000000","961.000000","932.000000","1044.000000","1330.000000","1274.000000","1496.000000","0.000000","0.000000","0.000000","701.000000","701.000000","720.000000","819.000000","797.000000","828.000000","160.000000","6000.000000",,"8974534.000000",,,,, -"22465.000000","68.040000","22465.000000","68.040000","22465.000000","68.040000",,,,,,,,,,,,,,"42.000000","15298.500000","14752.000000","8.000000","15298.500000","15298.500000",,,,,,,,,,,"6406900.000000","7984124.000000","478736.000000","0.000000","66135552.000000","0.000000","90400760.000000",,"3753872.000000","28264520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000",,,,,,,,"634.000000","15168.000000",,,,,,,,,,,"4372.000000","969.000000","958.000000","1009.000000","1330.000000","1129.000000","1330.000000","0.000000","0.000000","0.000000","704.000000","738.000000","721.000000","821.000000","833.000000","828.000000","160.000000","6000.000000",,"8974554.000000",,,,, -"18826.000000","62.335000","18826.000000","62.335000","18826.000000","62.335000",,,,,,,,,,,,,,"36.000000","12201.500000","12084.000000","6.000000","12201.500000","12201.500000",,,,,,,,,,,"6454400.000000","8052592.000000","478736.000000","0.000000","66118764.000000","0.000000","90400760.000000",,"3753872.000000","28290404.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000",,,,,,,,"215.000000","12067.000000",,,,,,,,,,,"4193.000000","968.000000","960.000000","972.000000","1330.000000","1129.000000","1274.000000","0.000000","0.000000","0.000000","704.000000","743.000000","715.000000","821.000000","833.000000","823.000000","160.000000","6000.000000",,"8974574.000000",,,,, -"20902.000000","65.575000","20902.000000","65.575000","20902.000000","65.575000",,,,,,,,,,,,,,"52.000000","12493.500000","12005.000000","36.000000","12493.500000","12493.500000",,,,,,,,,,,"6328460.000000","7926648.000000","478736.000000","0.000000","66103288.000000","0.000000","90400648.000000",,"3753872.000000","28303364.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000",,,,,,,,"219.000000","12709.000000",,,,,,,,,,,"4300.000000","969.000000","999.000000","958.000000","1330.000000","1154.000000","1235.000000","0.000000","0.000000","0.000000","705.000000","753.000000","708.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974594.000000",,,,, -"19178.000000","62.875000","19178.000000","62.875000","19178.000000","62.875000",,,,,,,,,,,,,,"40.000000","12376.000000","12156.000000","8.000000","12376.000000","12376.000000",,,,,,,,,,,"5972092.000000","7958820.000000","478736.000000","0.000000","66099072.000000","0.000000","90400788.000000",,"3753872.000000","28314460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000",,,,,,,,"233.000000","12322.000000",,,,,,,,,,,"4369.000000","977.000000","950.000000","931.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","709.000000","707.000000","702.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974614.000000",,,,, -"16589.000000","58.825000","16589.000000","58.825000","16589.000000","58.825000",,,,,,,,,,,,,,"52.000000","12705.500000","12285.000000","2.000000","12705.500000","12705.500000",,,,,,,,,,,"5569372.000000","7566380.000000","478732.000000","0.000000","66114772.000000","0.000000","90401256.000000",,"3753872.000000","28329764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000",,,,,,,,"242.000000","12831.000000",,,,,,,,,,,"4177.000000","977.000000","904.000000","924.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","710.000000","681.000000","697.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974634.000000",,,,, -"20327.000000","64.675000","20327.000000","64.675000","20327.000000","64.675000",,,,,,,,,,,,,,"41.000000","13142.500000","12219.000000","28.000000","13142.500000","13142.500000",,,,,,,,,,,"5652792.000000","7691744.000000","478732.000000","0.000000","66105824.000000","0.000000","90400792.000000",,"3753872.000000","28338252.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000",,,,,,,,"299.000000","13726.000000",,,,,,,,,,,"4398.000000","983.000000","889.000000","930.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","712.000000","667.000000","700.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974654.000000",,,,, -"18482.000000","61.780000","18482.000000","61.780000","18482.000000","61.780000",,,,,,,,,,,,,,"48.000000","11704.500000","11120.000000","3.000000","11704.500000","11704.500000",,,,,,,,,,,"5338208.000000","7596784.000000","478732.000000","0.000000","66088376.000000","0.000000","90400784.000000",,"3753872.000000","28357712.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000",,,,,,,,"229.000000","12012.000000",,,,,,,,,,,"4296.000000","989.000000","886.000000","927.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","670.000000","698.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974674.000000",,,,, -"16048.000000","57.955000","16048.000000","57.955000","16048.000000","57.955000",,,,,,,,,,,,,,"40.000000","10826.000000","10635.000000","11.000000","10826.000000","10826.000000",,,,,,,,,,,"5426816.000000","7622476.000000","478732.000000","0.000000","66072740.000000","0.000000","90400784.000000",,"3753872.000000","28324028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000",,,,,,,,"195.000000","10781.000000",,,,,,,,,,,"4103.000000","985.000000","887.000000","921.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","711.000000","667.000000","695.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974694.000000",,,,, -"20692.000000","65.225000","20692.000000","65.225000","20692.000000","65.225000",,,,,,,,,,,,,,"47.000000","11596.500000","11291.000000","4.000000","11596.500000","11596.500000",,,,,,,,,,,"5258892.000000","7580384.000000","478732.000000","0.000000","66061664.000000","0.000000","90400632.000000",,"3753872.000000","28387452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000",,,,,,,,"222.000000","11631.000000",,,,,,,,,,,"4323.000000","991.000000","895.000000","926.000000","1330.000000","1150.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","679.000000","699.000000","823.000000","880.000000","823.000000","160.000000","6000.000000",,"8974714.000000",,,,, -"20784.000000","65.370000","20784.000000","65.370000","20784.000000","65.370000",,,,,,,,,,,,,,"106.000000","12928.500000","12807.000000","10.000000","12928.500000","12928.500000",,,,,,,,,,,"4839464.000000","7077072.000000","478732.000000","0.000000","66063360.000000","0.000000","90400632.000000",,"3753872.000000","28361852.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000",,,,,,,,"261.000000","12682.000000",,,,,,,,,,,"4315.000000","993.000000","915.000000","938.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","715.000000","695.000000","705.000000","824.000000","880.000000","833.000000","160.000000","6000.000000",,"8974734.000000",,,,, -"17543.000000","60.285000","17543.000000","60.285000","17543.000000","60.285000",,,,,,,,,,,,,,"48.000000","11144.500000","10757.000000","4.000000","11144.500000","11144.500000",,,,,,,,,,,"4761136.000000","7244848.000000","478732.000000","0.000000","66038548.000000","0.000000","90400632.000000",,"3753872.000000","28385508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000",,,,,,,,"201.000000","11282.000000",,,,,,,,,,,"4143.000000","993.000000","950.000000","940.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","714.000000","715.000000","705.000000","823.000000","880.000000","833.000000","160.000000","6000.000000",,"8974754.000000",,,,, -"20011.000000","64.145000","20011.000000","64.145000","20011.000000","64.145000",,,,,,,,,,,,,,"333.000000","15312.000000","14979.000000","14.000000","15312.000000","15312.000000",,,,,,,,,,,"5138692.000000","7391716.000000","478732.000000","0.000000","66026244.000000","0.000000","90400700.000000",,"3753872.000000","28397936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000",,,,,,,,"524.000000",,,,,,,,,,,,"4051.000000","996.000000","956.000000","934.000000","1330.000000","1214.000000","1154.000000","0.000000","0.000000","0.000000","714.000000","703.000000","700.000000","823.000000","854.000000","823.000000","160.000000","6000.000000",,"8974774.000000",,,,, -"19742.000000","63.725000","19742.000000","63.725000","19742.000000","63.725000",,,,,,,,,,,,,,"47.000000","14213.500000","13658.000000","122.000000","14213.500000","14213.500000",,,,,,,,,,,"5285496.000000","7056168.000000","478732.000000","0.000000","66026388.000000","0.000000","90400700.000000",,"3753872.000000","28370516.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000",,,,,,,,"213.000000","14507.000000",,,,,,,,,,,"4264.000000","1010.000000","1105.000000","963.000000","1353.000000","1726.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","695.000000","701.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974794.000000",,,,, -"20689.000000","65.195000","20689.000000","65.195000","20689.000000","65.195000",,,,,,,,,,,,,,"217.000000","12624.500000","11847.000000","23.000000","12624.500000","12624.500000",,,,,,,,,,,"5426744.000000","6977836.000000","478732.000000","0.000000","66012668.000000","0.000000","90400700.000000",,"3753872.000000","28382724.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000",,,,,,,,"336.000000","12848.000000",,,,,,,,,,,"4316.000000","1010.000000","1197.000000","980.000000","1353.000000","1726.000000","1232.000000","0.000000","0.000000","0.000000","713.000000","718.000000","705.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974814.000000",,,,, -"20624.000000","65.095000","20624.000000","65.095000","20624.000000","65.095000",,,,,,,,,,,,,,"45.000000","9517.500000","9619.000000","8.000000","9517.500000","9517.500000",,,,,,,,,,,"5300936.000000","6956884.000000","478732.000000","0.000000","66012964.000000","0.000000","90400724.000000",,"3753872.000000","28385580.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000",,,,,,,,"159.000000","9212.000000",,,,,,,,,,,"4282.000000","1014.000000","1240.000000","996.000000","1353.000000","1726.000000","1233.000000","0.000000","0.000000","0.000000","712.000000","730.000000","706.000000","821.000000","788.000000","823.000000","160.000000","6000.000000",,"8974834.000000",,,,, -"22552.000000","68.120000","22552.000000","68.120000","22552.000000","68.120000",,,,,,,,,,,,,,"42.000000","13303.000000","12556.000000","8.000000","13303.000000","13303.000000",,,,,,,,,,,"5384816.000000","7187568.000000","478732.000000","0.000000","66023192.000000","0.000000","90400724.000000",,"3753872.000000","28376192.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000",,,,,,,,"572.000000","13436.000000",,,,,,,,,,,"4360.000000","1021.000000","1190.000000","1009.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","715.000000","768.000000","707.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974854.000000",,,,, -"18429.000000","61.655000","18429.000000","61.655000","18429.000000","61.655000",,,,,,,,,,,,,,"48.000000","7702.000000","7618.000000","14.000000","7702.000000","7702.000000",,,,,,,,,,,"5243568.000000","7119520.000000","478732.000000","0.000000","66007376.000000","0.000000","90400724.000000",,"3753872.000000","28392452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000",,,,,,,,"153.000000","7584.000000",,,,,,,,,,,"4185.000000","1016.000000","1103.000000","1008.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","713.000000","746.000000","706.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974874.000000",,,,, -"16889.000000","59.245000","16889.000000","59.245000","16889.000000","59.245000",,,,,,,,,,,,,,"71.000000","16661.000000","15814.000000","13.000000","16661.000000","16661.000000",,,,,,,,,,,"5243568.000000","7329236.000000","478732.000000","0.000000","66007952.000000","0.000000","90400724.000000",,"3753872.000000","28398952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000",,,,,,,,"278.000000","17158.000000",,,,,,,,,,,"4142.000000","1010.000000","988.000000","994.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","711.000000","713.000000","698.000000","825.000000","855.000000","815.000000","160.000000","6000.000000",,"8974894.000000",,,,, -"16040.000000","57.920000","16040.000000","57.920000","16040.000000","57.920000",,,,,,,,,,,,,,"273.000000","9545.000000","7982.000000","19.000000","9545.000000","9545.000000",,,,,,,,,,,"5348424.000000","7245356.000000","478732.000000","0.000000","66019916.000000","0.000000","90400724.000000",,"3753872.000000","28384328.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000",,,,,,,,"562.000000","10273.000000",,,,,,,,,,,"4119.000000","1003.000000","775.000000","974.000000","1353.000000","977.000000","1260.000000","0.000000","0.000000","0.000000","707.000000","613.000000","688.000000","825.000000","734.000000","815.000000","160.000000","6000.000000",,"8974914.000000",,,,, -"14565.000000","55.600000","14565.000000","55.600000","14565.000000","55.600000",,,,,,,,,,,,,,"47.000000","6716.000000","6478.000000","17.000000","6716.000000","6716.000000",,,,,,,,,,,"5961316.000000","8293512.000000","478732.000000","0.000000","66002992.000000","0.000000","90400724.000000",,"3753872.000000","28335236.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000",,,,,,,,"159.000000","6747.000000",,,,,,,,,,,"4055.000000","999.000000","712.000000","970.000000","1353.000000","803.000000","1260.000000","0.000000","0.000000","0.000000","704.000000","570.000000","683.000000","825.000000","646.000000","815.000000","160.000000","6000.000000",,"8974934.000000",,,,, -"15675.000000","57.335000","15675.000000","57.335000","15675.000000","57.335000",,,,,,,,,,,,,,"113.000000","6189.500000","5940.000000","5.000000","6189.500000","6189.500000",,,,,,,,,,,"5961244.000000","8314416.000000","478732.000000","0.000000","65986496.000000","0.000000","90400652.000000",,"3753872.000000","28349048.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000",,,,,,,,"141.000000","6185.000000",,,,,,,,,,,"4313.000000","992.000000","651.000000","946.000000","1353.000000","788.000000","1260.000000","0.000000","0.000000","0.000000","702.000000","547.000000","674.000000","825.000000","599.000000","815.000000","160.000000","6000.000000",,"8974954.000000",,,,, -"14210.000000","55.025000","14210.000000","55.025000","14210.000000","55.025000",,,,,,,,,,,,,,"46.000000","4683.000000","4573.000000","4.000000","4683.000000","4683.000000",,,,,,,,,,,"5793476.000000","8000128.000000","478732.000000","0.000000","65975356.000000","0.000000","90400652.000000",,"3753872.000000","28441832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000",,,,,,,,"129.000000","4616.000000",,,,,,,,,,,"4010.000000","986.000000","598.000000","917.000000","1353.000000","711.000000","1260.000000","0.000000","0.000000","0.000000","698.000000","529.000000","660.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974974.000000",,,,, -"14296.000000","55.160000","14296.000000","55.160000","14296.000000","55.160000",,,,,,,,,,,,,,"53.000000","4920.000000","4712.000000","6.000000","4920.000000","4920.000000",,,,,,,,,,,"5977504.000000","7790836.000000","478732.000000","0.000000","65957492.000000","0.000000","90400652.000000",,"3753872.000000","28492036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000",,,,,,,,"124.000000","4950.000000",,,,,,,,,,,"4252.000000","978.000000","589.000000","910.000000","1353.000000","655.000000","1260.000000","0.000000","0.000000","0.000000","695.000000","530.000000","656.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974994.000000",,,,, -"14639.000000","55.685000","14639.000000","55.685000","14639.000000","55.685000",,,,,,,,,,,,,,"60.000000","6342.000000","6140.000000","5.000000","6342.000000","6342.000000",,,,,,,,,,,"6061392.000000","7811804.000000","478732.000000","0.000000","65941184.000000","0.000000","90400652.000000",,"3753872.000000","28507688.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000",,,,,,,,"146.000000","6338.000000",,,,,,,,,,,"4245.000000","975.000000","598.000000","886.000000","1353.000000","685.000000","1260.000000","0.000000","0.000000","0.000000","693.000000","526.000000","644.000000","825.000000","578.000000","810.000000","160.000000","6000.000000",,"8975014.000000",,,,, -"16389.000000","58.415000","16389.000000","58.415000","16389.000000","58.415000",,,,,,,,,,,,,,"43.000000","6495.000000","6498.000000","4.000000","6495.000000","6495.000000",,,,,,,,,,,"5935712.000000","7455440.000000","478732.000000","0.000000","65924356.000000","0.000000","90400800.000000",,"3753872.000000","28483148.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000",,,,,,,,"145.000000","6303.000000",,,,,,,,,,,"4102.000000","966.000000","610.000000","856.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","689.000000","541.000000","629.000000","825.000000","684.000000","809.000000","160.000000","6000.000000",,"8975034.000000",,,,, -"14824.000000","55.960000","14824.000000","55.960000","14824.000000","55.960000",,,,,,,,,,,,,,"47.000000","4612.000000","4747.000000","10.000000","4612.000000","4612.000000",,,,,,,,,,,"4745892.000000","6328524.000000","478732.000000","0.000000","65908200.000000","0.000000","90400800.000000",,"3753872.000000","28544812.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000",,,,,,,,"126.000000","4304.000000",,,,,,,,,,,"4268.000000","960.000000","595.000000","839.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","685.000000","534.000000","620.000000","825.000000","684.000000","788.000000","160.000000","6000.000000",,"8975054.000000",,,,, -"14754.000000","55.840000","14754.000000","55.840000","14754.000000","55.840000",,,,,,,,,,,,,,"332.000000","11483.500000","10425.000000","19.000000","11483.500000","11483.500000",,,,,,,,,,,"4703800.000000","6265468.000000","478732.000000","0.000000","65891432.000000","0.000000","90400652.000000",,"3753872.000000","28552504.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000",,,,,,,,"481.000000","11727.000000",,,,,,,,,,,"4228.000000","951.000000","603.000000","816.000000","1352.000000","733.000000","1260.000000","0.000000","0.000000","0.000000","681.000000","544.000000","612.000000","823.000000","684.000000","762.000000","160.000000","6000.000000",,"8975074.000000",,,,, -"17904.000000","60.780000","17904.000000","60.780000","17904.000000","60.780000",,,,,,,,,,,,,,"47.000000","7723.500000","7459.000000","7.000000","7723.500000","7723.500000",,,,,,,,,,,"5301280.000000","6731984.000000","478732.000000","0.000000","65899992.000000","0.000000","90400652.000000",,"3753872.000000","28494560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000",,,,,,,,"199.000000","7741.000000",,,,,,,,,,,"4287.000000","940.000000","645.000000","764.000000","1339.000000","939.000000","1233.000000","0.000000","0.000000","0.000000","677.000000","569.000000","604.000000","819.000000","716.000000","762.000000","160.000000","6000.000000",,"8975094.000000",,,,, -"13576.000000","53.995000","13576.000000","53.995000","13576.000000","53.995000",,,,,,,,,,,,,,"55.000000","4659.000000","4336.000000","5.000000","4659.000000","4659.000000",,,,,,,,,,,"5730976.000000","7439456.000000","478732.000000","0.000000","65886948.000000","0.000000","90400652.000000",,"3753872.000000","28542784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000",,,,,,,,"147.000000","4779.000000",,,,,,,,,,,"4052.000000","928.000000","642.000000","728.000000","1330.000000","939.000000","1200.000000","0.000000","0.000000","0.000000","673.000000","568.000000","590.000000","819.000000","716.000000","759.000000","160.000000","6000.000000",,"8975114.000000",,,,, -"15570.000000","57.115000","15570.000000","57.115000","15570.000000","57.115000",,,,,,,,,,,,,,"43.000000","4601.000000","3597.000000","4.000000","4601.000000","4601.000000",,,,,,,,,,,"5647276.000000","7418384.000000","478732.000000","0.000000","65876308.000000","0.000000","90400840.000000",,"3753872.000000","28554340.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000",,,,,,,,"217.000000","5344.000000",,,,,,,,,,,"4133.000000","910.000000","607.000000","689.000000","1280.000000","939.000000","977.000000","0.000000","0.000000","0.000000","667.000000","540.000000","574.000000","815.000000","716.000000","734.000000","160.000000","6000.000000",,"8975134.000000",,,,, -"18470.000000","61.650000","18470.000000","61.650000","18470.000000","61.650000",,,,,,,,,,,,,,"51.000000","9233.500000","8781.000000","23.000000","9233.500000","9233.500000",,,,,,,,,,,"5437560.000000","7250608.000000","478732.000000","0.000000","65874136.000000","0.000000","90400840.000000",,"3753872.000000","28477776.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000",,,,,,,,"551.000000","9083.000000",,,,,,,,,,,"4406.000000","889.000000","623.000000","650.000000","1246.000000","825.000000","803.000000","0.000000","0.000000","0.000000","664.000000","560.000000","563.000000","809.000000","741.000000","684.000000","160.000000","6000.000000",,"8975154.000000",,,,, -"16946.000000","59.260000","16946.000000","59.260000","16946.000000","59.260000",,,,,,,,,,,,,,"258.000000","7689.000000","7210.000000","3.000000","7689.000000","7689.000000",,,,,,,,,,,"4546812.000000","6103060.000000","478732.000000","0.000000","65863444.000000","0.000000","90401168.000000",,"3753872.000000","28402112.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000",,,,,,,,"327.000000","7581.000000",,,,,,,,,,,"4149.000000","874.000000","676.000000","643.000000","1233.000000","825.000000","795.000000","0.000000","0.000000","0.000000","660.000000","595.000000","559.000000","806.000000","741.000000","683.000000","160.000000","6000.000000",,"8975174.000000",,,,, -"14698.000000","55.735000","14698.000000","55.735000","14698.000000","55.735000",,,,,,,,,,,,,,"58.000000","6530.500000","6377.000000","6.000000","6530.500000","6530.500000",,,,,,,,,,,"4693152.000000","6291620.000000","478732.000000","0.000000","65854812.000000","0.000000","90400704.000000",,"3753872.000000","28409512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000",,,,,,,,"158.000000","6467.000000",,,,,,,,,,,"4190.000000","861.000000","698.000000","631.000000","1224.000000","825.000000","788.000000","0.000000","0.000000","0.000000","653.000000","612.000000","554.000000","795.000000","741.000000","683.000000","160.000000","6000.000000",,"8975194.000000",,,,, -"14571.000000","55.530000","14571.000000","55.530000","14571.000000","55.530000",,,,,,,,,,,,,,"49.000000","6825.500000","6772.000000","3.000000","6825.500000","6825.500000",,,,,,,,,,,"4546416.000000","6207796.000000","478732.000000","0.000000","65839916.000000","0.000000","90400764.000000",,"3753872.000000","28272768.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000",,,,,,,,"146.000000","6683.000000",,,,,,,,,,,"4257.000000","842.000000","624.000000","620.000000","1200.000000","804.000000","748.000000","0.000000","0.000000","0.000000","647.000000","550.000000","550.000000","788.000000","658.000000","683.000000","160.000000","6000.000000",,"8975214.000000",,,,, -"13856.000000","54.405000","13856.000000","54.405000","13856.000000","54.405000",,,,,,,,,,,,,,"49.000000","5170.000000","4826.000000","3.000000","5170.000000","5170.000000",,,,,,,,,,,"4263512.000000","5956140.000000","478728.000000","0.000000","65832732.000000","0.000000","90400768.000000",,"3753872.000000","28365620.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000",,,,,,,,"149.000000","5315.000000",,,,,,,,,,,"4211.000000","836.000000","572.000000","615.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","643.000000","515.000000","548.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975234.000000",,,,, -"12379.000000","52.090000","12379.000000","52.090000","12379.000000","52.090000",,,,,,,,,,,,,,"40.000000","5059.500000","4740.000000","4.000000","5059.500000","5059.500000",,,,,,,,,,,"4305452.000000","5956144.000000","478728.000000","0.000000","65828844.000000","0.000000","90400768.000000",,"3753872.000000","28367832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000",,,,,,,,"147.000000","5191.000000",,,,,,,,,,,"4136.000000","830.000000","555.000000","612.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","639.000000","496.000000","544.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975254.000000",,,,, -"13295.000000","53.520000","13295.000000","53.520000","13295.000000","53.520000",,,,,,,,,,,,,,"52.000000","6168.500000","6151.000000","8.000000","6168.500000","6168.500000",,,,,,,,,,,"4357304.000000","5913056.000000","478728.000000","0.000000","65821468.000000","0.000000","90400768.000000",,"3753872.000000","28589508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000",,,,,,,,"164.000000","5969.000000",,,,,,,,,,,"4011.000000","816.000000","523.000000","605.000000","1180.000000","675.000000","748.000000","0.000000","0.000000","0.000000","632.000000","469.000000","538.000000","787.000000","615.000000","683.000000","160.000000","6000.000000",,"8975274.000000",,,,, -"12982.000000","53.025000","12982.000000","53.025000","12982.000000","53.025000",,,,,,,,,,,,,,"53.000000","5785.500000","5557.000000","3.000000","5785.500000","5785.500000",,,,,,,,,,,"4309388.000000","5865136.000000","478728.000000","0.000000","65804804.000000","0.000000","90400768.000000",,"3753872.000000","28617396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000",,,,,,,,"146.000000","5815.000000",,,,,,,,,,,"4021.000000","810.000000","509.000000","599.000000","1180.000000","631.000000","748.000000","0.000000","0.000000","0.000000","628.000000","456.000000","533.000000","787.000000","540.000000","683.000000","160.000000","6000.000000",,"8975294.000000",,,,, -"12599.000000","52.420000","12599.000000","52.420000","12599.000000","52.420000",,,,,,,,,,,,,,"34.000000","5371.500000","5080.000000","2.000000","5371.500000","5371.500000",,,,,,,,,,,"4330308.000000","5864796.000000","478728.000000","0.000000","65796504.000000","0.000000","90400720.000000",,"3753872.000000","28628452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000",,,,,,,,"118.000000","5510.000000",,,,,,,,,,,"4233.000000","801.000000","492.000000","591.000000","1180.000000","587.000000","748.000000","0.000000","0.000000","0.000000","624.000000","449.000000","528.000000","787.000000","526.000000","683.000000","160.000000","6000.000000",,"8975314.000000",,,,, -"12073.000000","51.585000","12073.000000","51.585000","12073.000000","51.585000",,,,,,,,,,,,,,"52.000000","6416.000000","5738.000000","3.000000","6416.000000","6416.000000",,,,,,,,,,,"4383312.000000","5991772.000000","478728.000000","0.000000","65780080.000000","0.000000","90400720.000000",,"3753872.000000","28640968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000",,,,,,,,"201.000000","6841.000000",,,,,,,,,,,"4004.000000","792.000000","500.000000","583.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","618.000000","446.000000","519.000000","787.000000","511.000000","658.000000","160.000000","6000.000000",,"8975334.000000",,,,, -"12674.000000","52.525000","12674.000000","52.525000","12674.000000","52.525000",,,,,,,,,,,,,,"35.000000","5496.000000","5461.000000","2.000000","5496.000000","5496.000000",,,,,,,,,,,"4100816.000000","5515404.000000","478728.000000","0.000000","65781260.000000","0.000000","90400720.000000",,"3753872.000000","28662936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000",,,,,,,,"234.000000",,,,,,,,,,,,"3923.000000","787.000000","507.000000","581.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","614.000000","446.000000","516.000000","787.000000","493.000000","658.000000","160.000000","6000.000000",,"8975354.000000",,,,, -"20842.000000","65.480000","20842.000000","65.480000","20842.000000","65.480000",,,,,,,,,,,,,,"394.000000","7050.000000","6614.000000","4.000000","7050.000000","7050.000000",,,,,,,,,,,"4466336.000000","5812684.000000","478728.000000","0.000000","66106536.000000","0.000000","90394628.000000",,"3753872.000000","28317656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000",,,,,,,,"432.000000","6659.000000",,,,,,,,,,,"4394.000000","781.000000","610.000000","592.000000","1154.000000","1073.000000","804.000000","0.000000","0.000000","0.000000","611.000000","513.000000","522.000000","784.000000","920.000000","658.000000","160.000000","6000.000000",,"8975374.000000",,,,, -"19176.000000","62.935000","19176.000000","62.935000","19176.000000","62.935000",,,,,,,,,,,,,,"53.000000","9572.500000","9151.000000","35.000000","9572.500000","9572.500000",,,,,,,,,,,"4881476.000000","6210432.000000","478728.000000","0.000000","66235640.000000","0.000000","90331680.000000",,"3753872.000000","28088488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000",,,,,,,,"212.000000","9729.000000",,,,,,,,,,,"4522.000000","777.000000","750.000000","604.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","612.000000","632.000000","531.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975394.000000",,,,, -"15809.000000","57.660000","15809.000000","57.660000","15809.000000","57.660000",,,,,,,,,,,,,,"53.000000","2673.500000","2426.000000","5.000000","2673.500000","2673.500000",,,,,,,,,,,"5095648.000000","6277784.000000","478728.000000","0.000000","66219360.000000","0.000000","90331680.000000",,"3753872.000000","28113976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000",,,,,,,,"108.000000","2759.000000",,,,,,,,,,,"4307.000000","772.000000","769.000000","607.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","610.000000","664.000000","535.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975414.000000",,,,, -"14859.000000","56.160000","14859.000000","56.160000","14859.000000","56.160000",,,,,,,,,,,,,,"45.000000","1882.000000","1672.000000","38.000000","1882.000000","1882.000000",,,,,,,,,,,"5053652.000000","6361616.000000","478728.000000","0.000000","66207164.000000","0.000000","90331628.000000",,"3753872.000000","28125804.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000",,,,,,,,"98.000000","1948.000000",,,,,,,,,,,"4149.000000","765.000000","698.000000","611.000000","1150.000000","1057.000000","825.000000","0.000000","0.000000","0.000000","606.000000","616.000000","537.000000","787.000000","874.000000","730.000000","160.000000","6000.000000",,"8975434.000000",,,,, -"15093.000000","56.525000","15093.000000","56.525000","15093.000000","56.525000",,,,,,,,,,,,,,"49.000000","3138.500000","2819.000000","4.000000","3138.500000","3138.500000",,,,,,,,,,,"5010764.000000","6381568.000000","478728.000000","0.000000","66199440.000000","0.000000","90327692.000000",,"3753872.000000","28120808.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000",,,,,,,,"477.000000","2931.000000",,,,,,,,,,,"4255.000000","752.000000","590.000000","597.000000","1150.000000","633.000000","808.000000","0.000000","0.000000","0.000000","599.000000","535.000000","526.000000","762.000000","621.000000","658.000000","160.000000","6000.000000",,"8975454.000000",,,,, -"15613.000000","57.330000","15613.000000","57.330000","15613.000000","57.330000",,,,,,,,,,,,,,"45.000000","7734.500000","7541.000000","6.000000","7734.500000","7734.500000",,,,,,,,,,,"5241444.000000","6696148.000000","478728.000000","0.000000","66179740.000000","0.000000","90327692.000000",,"3753872.000000","28117624.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000",,,,,,,,"156.000000","7727.000000",,,,,,,,,,,"4226.000000","748.000000","604.000000","592.000000","1150.000000","641.000000","808.000000","0.000000","0.000000","0.000000","596.000000","540.000000","524.000000","762.000000","586.000000","621.000000","160.000000","6000.000000",,"8975474.000000",,,,, -"12397.000000","52.285000","12397.000000","52.285000","12397.000000","52.285000",,,,,,,,,,,,,,"45.000000","6719.000000","6597.000000","25.000000","6719.000000","6719.000000",,,,,,,,,,,"5204088.000000","6692988.000000","478728.000000","0.000000","66166040.000000","0.000000","90327868.000000",,"3753872.000000","28132280.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000",,,,,,,,"148.000000","6648.000000",,,,,,,,,,,"3977.000000","738.000000","587.000000","588.000000","1146.000000","641.000000","808.000000","0.000000","0.000000","0.000000","590.000000","520.000000","519.000000","761.000000","586.000000","621.000000","160.000000","6000.000000",,"8975494.000000",,,,, -"12513.000000","52.455000","12513.000000","52.455000","12513.000000","52.455000",,,,,,,,,,,,,,"50.000000","5044.000000","4815.000000","26.000000","5044.000000","5044.000000",,,,,,,,,,,"5057288.000000","6263644.000000","478728.000000","0.000000","66146408.000000","0.000000","90327868.000000",,"3753872.000000","28186536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000",,,,,,,,"132.000000","5089.000000",,,,,,,,,,,"4083.000000","725.000000","543.000000","581.000000","1117.000000","641.000000","808.000000","0.000000","0.000000","0.000000","584.000000","483.000000","513.000000","761.000000","582.000000","621.000000","160.000000","6000.000000",,"8975514.000000",,,,, -"13977.000000","54.750000","13977.000000","54.750000","13977.000000","54.750000",,,,,,,,,,,,,,"44.000000","6543.500000","6484.000000","4.000000","6543.500000","6543.500000",,,,,,,,,,,"4826604.000000","5928096.000000","478724.000000","0.000000","66137988.000000","0.000000","90327872.000000",,"3753872.000000","28153368.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000",,,,,,,,"183.000000","6375.000000",,,,,,,,,,,"4160.000000","722.000000","515.000000","581.000000","1117.000000","559.000000","808.000000","0.000000","0.000000","0.000000","581.000000","457.000000","512.000000","761.000000","511.000000","621.000000","160.000000","6000.000000",,"8975534.000000",,,,, -"12436.000000","52.325000","12436.000000","52.325000","12436.000000","52.325000",,,,,,,,,,,,,,"40.000000","6087.500000","5252.000000","5.000000","6087.500000","6087.500000",,,,,,,,,,,"4910076.000000","5876924.000000","478724.000000","0.000000","66119612.000000","0.000000","90327460.000000",,"3753872.000000","28171036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000",,,,,,,,"192.000000","6691.000000",,,,,,,,,,,"4040.000000","713.000000","513.000000","580.000000","1114.000000","562.000000","808.000000","0.000000","0.000000","0.000000","577.000000","465.000000","512.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975554.000000",,,,, -"12567.000000","52.525000","12567.000000","52.525000","12567.000000","52.525000",,,,,,,,,,,,,,"51.000000","6029.500000","5213.000000","4.000000","6029.500000","6029.500000",,,,,,,,,,,"5078248.000000","6013064.000000","478724.000000","0.000000","66113852.000000","0.000000","90327860.000000",,"3753872.000000","28145464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000",,,,,,,,"213.000000","6582.000000",,,,,,,,,,,"3992.000000","700.000000","514.000000","579.000000","1087.000000","585.000000","808.000000","0.000000","0.000000","0.000000","570.000000","458.000000","511.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975574.000000",,,,, -"14336.000000","55.290000","14336.000000","55.290000","14336.000000","55.290000",,,,,,,,,,,,,,"110.000000","14842.500000","14514.000000","19.000000","14842.500000","14842.500000",,,,,,,,,,,"4973388.000000","5845296.000000","478724.000000","0.000000","66100572.000000","0.000000","90327860.000000",,"3753872.000000","28240156.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000",,,,,,,,"243.000000","14817.000000",,,,,,,,,,,"4123.000000","698.000000","523.000000","584.000000","1087.000000","649.000000","808.000000","0.000000","0.000000","0.000000","568.000000","468.000000","515.000000","759.000000","584.000000","621.000000","160.000000","6000.000000",,"8975594.000000",,,,, -"13198.000000","53.510000","13198.000000","53.510000","13198.000000","53.510000",,,,,,,,,,,,,,"57.000000","5434.500000","5290.000000","10.000000","5434.500000","5434.500000",,,,,,,,,,,"5196328.000000","6026292.000000","478724.000000","0.000000","66101272.000000","0.000000","90327860.000000",,"3753872.000000","28239424.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000",,,,,,,,"137.000000","5383.000000",,,,,,,,,,,"4073.000000","688.000000","522.000000","586.000000","1073.000000","678.000000","808.000000","0.000000","0.000000","0.000000","562.000000","455.000000","514.000000","752.000000","584.000000","621.000000","160.000000","6000.000000",,"8975614.000000",,,,, -"13950.000000","54.680000","13950.000000","54.680000","13950.000000","54.680000",,,,,,,,,,,,,,"49.000000","6232.500000","6044.000000","12.000000","6232.500000","6232.500000",,,,,,,,,,,"5259240.000000","6047268.000000","478724.000000","0.000000","66093716.000000","0.000000","90327860.000000",,"3753872.000000","28252172.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000",,,,,,,,"173.000000","6197.000000",,,,,,,,,,,"4112.000000","677.000000","571.000000","594.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","556.000000","493.000000","520.000000","741.000000","620.000000","621.000000","160.000000","6000.000000",,"8975634.000000",,,,, -"12855.000000","52.960000","12855.000000","52.960000","12855.000000","52.960000",,,,,,,,,,,,,,"35.000000","6091.500000","5948.000000","23.000000","6091.500000","6091.500000",,,,,,,,,,,"5133416.000000","6026292.000000","478724.000000","0.000000","66083820.000000","0.000000","90327860.000000",,"3753872.000000","28249708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000",,,,,,,,"124.000000","6076.000000",,,,,,,,,,,"4195.000000","671.000000","553.000000","593.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","552.000000","474.000000","521.000000","734.000000","620.000000","621.000000","160.000000","6000.000000",,"8975654.000000",,,,, -"12159.000000","51.865000","12159.000000","51.865000","12159.000000","51.865000",,,,,,,,,,,,,,"336.000000","5644.500000","5157.000000","3.000000","5644.500000","5644.500000",,,,,,,,,,,"4817524.000000","5836232.000000","478724.000000","0.000000","66068668.000000","0.000000","90327612.000000",,"3753872.000000","28263960.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000",,,,,,,,"425.000000","5370.000000",,,,,,,,,,,"3922.000000","661.000000","556.000000","575.000000","977.000000","805.000000","678.000000","0.000000","0.000000","0.000000","547.000000","481.000000","507.000000","730.000000","620.000000","620.000000","160.000000","6000.000000",,"8975674.000000",,,,, -"14553.000000","55.600000","14553.000000","55.600000","14553.000000","55.600000",,,,,,,,,,,,,,"47.000000","9475.500000","8321.000000","16.000000","9475.500000","9475.500000",,,,,,,,,,,"4649752.000000","5637576.000000","478724.000000","0.000000","66045288.000000","0.000000","90327612.000000",,"3753872.000000","28300572.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000",,,,,,,,"256.000000","10326.000000",,,,,,,,,,,"3969.000000","640.000000","550.000000","554.000000","903.000000","757.000000","647.000000","0.000000","0.000000","0.000000","541.000000","468.000000","488.000000","716.000000","601.000000","584.000000","160.000000","6000.000000",,"8975694.000000",,,,, -"11104.000000","50.195000","11104.000000","50.195000","11104.000000","50.195000",,,,,,,,,,,,,,"55.000000","3076.000000","2376.000000","36.000000","3076.000000","3076.000000",,,,,,,,,,,"4356152.000000","5490780.000000","478724.000000","0.000000","66030236.000000","0.000000","90327612.000000",,"3753872.000000","28263972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000",,,,,,,,"163.000000","3558.000000",,,,,,,,,,,"3891.000000","627.000000","530.000000","545.000000","825.000000","757.000000","647.000000","0.000000","0.000000","0.000000","534.000000","449.000000","478.000000","684.000000","601.000000","582.000000","160.000000","6000.000000",,"8975714.000000",,,,, -"15315.000000","56.785000","15315.000000","56.785000","15315.000000","56.785000",,,,,,,,,,,,,,"47.000000","6384.000000","6212.000000","4.000000","6384.000000","6384.000000",,,,,,,,,,,"4368308.000000","5587100.000000","478724.000000","0.000000","66020992.000000","0.000000","90327612.000000",,"3753872.000000","28272500.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000",,,,,,,,"146.000000","6363.000000",,,,,,,,,,,"3981.000000","616.000000","560.000000","548.000000","804.000000","757.000000","674.000000","0.000000","0.000000","0.000000","529.000000","465.000000","477.000000","668.000000","601.000000","582.000000","160.000000","6000.000000",,"8975734.000000",,,,, -"16056.000000","57.940000","16056.000000","57.940000","16056.000000","57.940000",,,,,,,,,,,,,,"56.000000","7235.500000","6740.000000","34.000000","7235.500000","7235.500000",,,,,,,,,,,"4683920.000000","6091448.000000","478724.000000","0.000000","66007688.000000","0.000000","90328648.000000",,"3753872.000000","28333088.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000",,,,,,,,"547.000000","7128.000000",,,,,,,,,,,"4199.000000","600.000000","585.000000","553.000000","788.000000","714.000000","689.000000","0.000000","0.000000","0.000000","523.000000","497.000000","480.000000","636.000000","630.000000","582.000000","160.000000","6000.000000",,"8975754.000000",,,,, -"16684.000000","58.915000","16684.000000","58.915000","16684.000000","58.915000",,,,,,,,,,,,,,"51.000000","8111.500000","7884.000000","46.000000","8111.500000","8111.500000",,,,,,,,,,,"4734948.000000","6141332.000000","478724.000000","0.000000","65989984.000000","0.000000","90327824.000000",,"3753872.000000","28340276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000",,,,,,,,"188.000000","8099.000000",,,,,,,,,,,"4209.000000","596.000000","648.000000","554.000000","771.000000","721.000000","690.000000","0.000000","0.000000","0.000000","521.000000","555.000000","481.000000","630.000000","672.000000","601.000000","160.000000","6000.000000",,"8975774.000000",,,,, -"13417.000000","53.790000","13417.000000","53.790000","13417.000000","53.790000",,,,,,,,,,,,,,"52.000000","7777.500000","6720.000000","246.000000","7777.500000","7777.500000",,,,,,,,,,,"4944620.000000","6254676.000000","478724.000000","0.000000","65985284.000000","0.000000","90327780.000000",,"3753872.000000","28350264.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000",,,,,,,,"292.000000","8490.000000",,,,,,,,,,,"4059.000000","592.000000","634.000000","557.000000","733.000000","721.000000","690.000000","0.000000","0.000000","0.000000","519.000000","553.000000","484.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975794.000000",,,,, -"12031.000000","51.620000","12031.000000","51.620000","12031.000000","51.620000",,,,,,,,,,,,,,"53.000000","6347.500000","5765.000000","35.000000","6347.500000","6347.500000",,,,,,,,,,,"4598020.000000","6200536.000000","478724.000000","0.000000","65982208.000000","0.000000","90327788.000000",,"3753872.000000","28379396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000",,,,,,,,"214.000000","6663.000000",,,,,,,,,,,"3878.000000","587.000000","580.000000","560.000000","721.000000","721.000000","690.000000","0.000000","1.000000","0.000000","515.000000","499.000000","483.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975814.000000",,,,, -"13415.000000","53.785000","13415.000000","53.785000","13415.000000","53.785000",,,,,,,,,,,,,,"97.000000","6025.000000","5859.000000","19.000000","6025.000000","6025.000000",,,,,,,,,,,"4368068.000000","6033500.000000","478724.000000","0.000000","65973668.000000","0.000000","90328528.000000",,"3753872.000000","28370840.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000",,,,,,,,"132.000000","5961.000000",,,,,,,,,,,"4039.000000","585.000000","540.000000","559.000000","721.000000","660.000000","690.000000","0.000000","1.000000","0.000000","514.000000","465.000000","482.000000","627.000000","585.000000","601.000000","160.000000","6000.000000",,"8975834.000000",,,,, -"12897.000000","52.965000","12897.000000","52.965000","12897.000000","52.965000",,,,,,,,,,,,,,"59.000000","8169.000000","7981.000000","38.000000","8169.000000","8169.000000",,,,,,,,,,,"4456668.000000","5831840.000000","478724.000000","0.000000","65959600.000000","0.000000","90327768.000000",,"3753872.000000","28384312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000",,,,,,,,"160.000000","8138.000000",,,,,,,,,,,"4065.000000","584.000000","528.000000","560.000000","721.000000","562.000000","690.000000","0.000000","1.000000","0.000000","513.000000","456.000000","482.000000","627.000000","504.000000","601.000000","160.000000","6000.000000",,"8975854.000000",,,,, -"13402.000000","53.745000","13402.000000","53.745000","13402.000000","53.745000",,,,,,,,,,,,,,"52.000000","6454.500000","6276.000000","32.000000","6454.500000","6454.500000",,,,,,,,,,,"4059692.000000","5320092.000000","478724.000000","0.000000","65943304.000000","0.000000","90328096.000000",,"3753872.000000","28363360.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000",,,,,,,,"156.000000","6424.000000",,,,,,,,,,,"4120.000000","583.000000","530.000000","563.000000","721.000000","562.000000","690.000000","0.000000","0.000000","0.000000","511.000000","466.000000","485.000000","627.000000","505.000000","601.000000","160.000000","6000.000000",,"8975874.000000",,,,, -"14524.000000","55.505000","14524.000000","55.505000","14524.000000","55.505000",,,,,,,,,,,,,,"43.000000","6854.500000","6631.000000","7.000000","6854.500000","6854.500000",,,,,,,,,,,"3681880.000000","5151996.000000","478724.000000","0.000000","65942040.000000","0.000000","90327768.000000",,"3753872.000000","28393976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000",,,,,,,,"176.000000","6859.000000",,,,,,,,,,,"3981.000000","584.000000","571.000000","568.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","512.000000","490.000000","487.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975894.000000",,,,, -"12588.000000","52.465000","12588.000000","52.465000","12588.000000","52.465000",,,,,,,,,,,,,,"50.000000","5718.000000","5531.000000","16.000000","5718.000000","5718.000000",,,,,,,,,,,"3387004.000000","5134160.000000","478724.000000","0.000000","65926568.000000","0.000000","90327564.000000",,"3753872.000000","28408136.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000",,,,,,,,"142.000000","5713.000000",,,,,,,,,,,"3892.000000","582.000000","569.000000","569.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","510.000000","483.000000","488.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975914.000000",,,,, -"13448.000000","53.805000","13448.000000","53.805000","13448.000000","53.805000",,,,,,,,,,,,,,"57.000000","5242.000000","5013.000000","5.000000","5242.000000","5242.000000",,,,,,,,,,,"3815192.000000","5499436.000000","478724.000000","0.000000","65910024.000000","0.000000","90327564.000000",,"3753872.000000","28390540.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000",,,,,,,,"163.000000","5250.000000",,,,,,,,,,,"4137.000000","579.000000","563.000000","562.000000","733.000000","852.000000","690.000000","0.000000","0.000000","0.000000","507.000000","484.000000","483.000000","627.000000","676.000000","601.000000","160.000000","6000.000000",,"8975934.000000",,,,, -"12917.000000","52.965000","12917.000000","52.965000","12917.000000","52.965000",,,,,,,,,,,,,,"56.000000","5233.000000","5054.000000","21.000000","5233.000000","5233.000000",,,,,,,,,,,"3668536.000000","5226956.000000","478724.000000","0.000000","65900664.000000","0.000000","90327712.000000",,"3753872.000000","28319972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000",,,,,,,,"138.000000","5217.000000",,,,,,,,,,,"4089.000000","578.000000","514.000000","561.000000","733.000000","640.000000","690.000000","0.000000","0.000000","0.000000","506.000000","456.000000","483.000000","627.000000","539.000000","601.000000","160.000000","6000.000000",,"8975954.000000",,,,, -"15504.000000","57.020000","15504.000000","57.020000","15504.000000","57.020000",,,,,,,,,,,,,,"317.000000","7192.500000","6726.000000","11.000000","7192.500000","7192.500000",,,,,,,,,,,"3932356.000000","5306432.000000","478720.000000","0.000000","65898268.000000","0.000000","90327716.000000",,"3753872.000000","28319968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000",,,,,,,,"420.000000","6921.000000",,,,,,,,,,,"4034.000000","578.000000","545.000000","567.000000","733.000000","884.000000","714.000000","0.000000","0.000000","0.000000","505.000000","467.000000","485.000000","621.000000","577.000000","601.000000","160.000000","6000.000000",,"8975974.000000",,,,, -"16076.000000","57.910000","16076.000000","57.910000","16076.000000","57.910000",,,,,,,,,,,,,,"56.000000","14948.000000","14891.000000","30.000000","14948.000000","14948.000000",,,,,,,,,,,"3649816.000000","4772236.000000","478720.000000","0.000000","65889080.000000","0.000000","90327716.000000",,"3753872.000000","28333308.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000",,,,,,,,"241.000000",,,,,,,,,,,,"4303.000000","581.000000","667.000000","585.000000","733.000000","1361.000000","714.000000","0.000000","0.000000","0.000000","505.000000","532.000000","496.000000","620.000000","792.000000","617.000000","160.000000","6000.000000",,"8975994.000000",,,,, -"18156.000000","61.165000","18156.000000","61.165000","18156.000000","61.165000",,,,,,,,,,,,,,"58.000000","5549.500000","5380.000000","11.000000","5549.500000","5549.500000",,,,,,,,,,,"3780056.000000","4948828.000000","478716.000000","0.000000","65875864.000000","0.000000","90327720.000000",,"3753872.000000","28336428.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000",,,,,,,,"135.000000","5525.000000",,,,,,,,,,,"4342.000000","584.000000","721.000000","599.000000","748.000000","1361.000000","721.000000","0.000000","0.000000","0.000000","507.000000","583.000000","510.000000","621.000000","792.000000","630.000000","160.000000","6000.000000",,"8976014.000000",,,,, -"17872.000000","60.710000","17872.000000","60.710000","17872.000000","60.710000",,,,,,,,,,,,,,"104.000000","6486.500000","5622.000000","8.000000","6486.500000","6486.500000",,,,,,,,,,,"3784316.000000","5151216.000000","478716.000000","0.000000","65861956.000000","0.000000","90327572.000000",,"3753872.000000","28349116.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000",,,,,,,,"228.000000","7018.000000",,,,,,,,,,,"4529.000000","590.000000","778.000000","611.000000","795.000000","1361.000000","852.000000","0.000000","0.000000","0.000000","512.000000","642.000000","520.000000","643.000000","792.000000","676.000000","160.000000","6000.000000",,"8976034.000000",,,,, -"16428.000000","58.435000","16428.000000","58.435000","16428.000000","58.435000",,,,,,,,,,,,,,"54.000000","5499.000000","4860.000000","11.000000","5499.000000","5499.000000",,,,,,,,,,,"3932268.000000","5195452.000000","478716.000000","0.000000","65843528.000000","0.000000","90327572.000000",,"3753872.000000","28393076.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000",,,,,,,,"332.000000","5751.000000",,,,,,,,,,,"4133.000000","587.000000","717.000000","611.000000","748.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","520.000000","627.000000","791.000000","676.000000","160.000000","6000.000000",,"8976054.000000",,,,, -"17381.000000","59.930000","17381.000000","59.930000","17381.000000","59.930000",,,,,,,,,,,,,,"59.000000","8578.000000","8140.000000","12.000000","8578.000000","8578.000000",,,,,,,,,,,"3953240.000000","5300308.000000","478716.000000","0.000000","65836776.000000","0.000000","90327572.000000",,"3753872.000000","28400124.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000",,,,,,,,"436.000000","8520.000000",,,,,,,,,,,"4333.000000","588.000000","749.000000","619.000000","757.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","523.000000","621.000000","734.000000","676.000000","160.000000","6000.000000",,"8976074.000000",,,,, -"15687.000000","57.270000","15687.000000","57.270000","15687.000000","57.270000",,,,,,,,,,,,,,"460.000000","8076.000000","7461.000000","13.000000","8076.000000","8076.000000",,,,,,,,,,,"4360516.000000","5820964.000000","478712.000000","0.000000","65833308.000000","0.000000","90327576.000000",,"3753872.000000","28405352.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000",,,,,,,,"576.000000","7655.000000",,,,,,,,,,,"4196.000000","590.000000","695.000000","623.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","587.000000","527.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976094.000000",,,,, -"14398.000000","55.250000","14398.000000","55.250000","14398.000000","55.250000",,,,,,,,,,,,,,"66.000000","4858.000000","4662.000000","5.000000","4858.000000","4858.000000",,,,,,,,,,,"4612176.000000","6387196.000000","478712.000000","0.000000","65817948.000000","0.000000","90327576.000000",,"3753872.000000","28436140.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000",,,,,,,,"143.000000","4844.000000",,,,,,,,,,,"4023.000000","590.000000","668.000000","629.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","568.000000","534.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976114.000000",,,,, -"13780.000000","54.270000","13780.000000","54.270000","13780.000000","54.270000",,,,,,,,,,,,,,"48.000000","5593.000000","5408.000000","15.000000","5593.000000","5593.000000",,,,,,,,,,,"4780092.000000","6429288.000000","478712.000000","0.000000","65802764.000000","0.000000","90327724.000000",,"3753872.000000","28460456.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000",,,,,,,,"130.000000","5599.000000",,,,,,,,,,,"3994.000000","591.000000","613.000000","634.000000","757.000000","687.000000","852.000000","0.000000","0.000000","0.000000","510.000000","526.000000","535.000000","621.000000","605.000000","676.000000","160.000000","6000.000000",,"8976133.000000",,,,, -"16853.000000","59.090000","16853.000000","59.090000","16853.000000","59.090000",,,,,,,,,,,,,,"54.000000","6214.000000","6022.000000","6.000000","6214.000000","6214.000000",,,,,,,,,,,"4142032.000000","5689428.000000","478712.000000","0.000000","65805508.000000","0.000000","90327624.000000",,"3753872.000000","28462996.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000",,,,,,,,"148.000000","6203.000000",,,,,,,,,,,"4250.000000","595.000000","644.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","513.000000","542.000000","544.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976154.000000",,,,, -"14298.000000","55.085000","14298.000000","55.085000","14298.000000","55.085000",,,,,,,,,,,,,,"50.000000","4735.500000","4507.000000","6.000000","4735.500000","4735.500000",,,,,,,,,,,"4299160.000000","5910628.000000","478712.000000","0.000000","65804908.000000","0.000000","90328052.000000",,"3753872.000000","28522296.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000",,,,,,,,"161.000000","4752.000000",,,,,,,,,,,"3978.000000","597.000000","629.000000","649.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","514.000000","536.000000","548.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976173.000000",,,,, -"15093.000000","56.325000","15093.000000","56.325000","15093.000000","56.325000",,,,,,,,,,,,,,"41.000000","6169.000000","5983.000000","4.000000","6169.000000","6169.000000",,,,,,,,,,,"4466508.000000","6015056.000000","478712.000000","0.000000","65795524.000000","0.000000","90327624.000000",,"3753872.000000","28542888.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000",,,,,,,,"144.000000","6169.000000",,,,,,,,,,,"4194.000000","600.000000","635.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","516.000000","552.000000","547.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976194.000000",,,,, -"14034.000000","54.655000","14034.000000","54.655000","14034.000000","54.655000",,,,,,,,,,,,,,"56.000000","5221.500000","5049.000000","6.000000","5221.500000","5221.500000",,,,,,,,,,,"4723728.000000","6448860.000000","478712.000000","0.000000","65779708.000000","0.000000","90327708.000000",,"3753872.000000","28557680.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000",,,,,,,,"146.000000","5190.000000",,,,,,,,,,,"3967.000000","601.000000","582.000000","649.000000","784.000000","698.000000","872.000000","0.000000","0.000000","0.000000","517.000000","510.000000","550.000000","630.000000","566.000000","678.000000","160.000000","6000.000000",,"8976213.000000",,,,, -"14513.000000","55.395000","14513.000000","55.395000","14513.000000","55.395000",,,,,,,,,,,,,,"52.000000","11713.000000","11430.000000","47.000000","11713.000000","11713.000000",,,,,,,,,,,"4891500.000000","6563636.000000","478712.000000","0.000000","65762076.000000","0.000000","90327708.000000",,"3753872.000000","28580028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000",,,,,,,,"207.000000","11735.000000",,,,,,,,,,,"4167.000000","604.000000","604.000000","657.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","519.000000","520.000000","555.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976234.000000",,,,, -"13197.000000","53.335000","13197.000000","53.335000","13197.000000","53.335000",,,,,,,,,,,,,,"121.000000","6919.000000","5809.000000","8.000000","6919.000000","6919.000000",,,,,,,,,,,"4828584.000000","6374896.000000","478712.000000","0.000000","65763272.000000","0.000000","90327708.000000",,"3753872.000000","28573952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000",,,,,,,,"308.000000","7598.000000",,,,,,,,,,,"4157.000000","604.000000","572.000000","658.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","520.000000","501.000000","556.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976253.000000",,,,, -"14599.000000","55.530000","14599.000000","55.530000","14599.000000","55.530000",,,,,,,,,,,,,,"392.000000","8179.000000","6641.000000","5.000000","8179.000000","8179.000000",,,,,,,,,,,"4801996.000000","6260304.000000","478708.000000","0.000000","65754900.000000","0.000000","90327572.000000",,"3753872.000000","28582464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000",,,,,,,,"557.000000","8768.000000",,,,,,,,,,,"4075.000000","599.000000","572.000000","654.000000","729.000000","652.000000","837.000000","0.000000","0.000000","0.000000","516.000000","502.000000","557.000000","621.000000","584.000000","678.000000","160.000000","6000.000000",,"8976274.000000",,,,, -"16687.000000","58.805000","16687.000000","58.805000","16687.000000","58.805000",,,,,,,,,,,,,,"75.000000","9394.500000","8011.000000","27.000000","9394.500000","9394.500000",,,,,,,,,,,"4603344.000000","6113500.000000","478708.000000","0.000000","65757556.000000","0.000000","90327572.000000",,"3753872.000000","28571312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000",,,,,,,,"273.000000","10429.000000",,,,,,,,,,,"4183.000000","596.000000","629.000000","649.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","513.000000","528.000000","554.000000","617.000000","752.000000","678.000000","160.000000","6000.000000",,"8976294.000000",,,,, -"13518.000000","53.830000","13518.000000","53.830000","13518.000000","53.830000",,,,,,,,,,,,,,"109.000000","4267.000000","3029.000000","16.000000","4267.000000","4267.000000",,,,,,,,,,,"4582624.000000","6218608.000000","478708.000000","0.000000","65742504.000000","0.000000","90327824.000000",,"3753872.000000","28440044.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000",,,,,,,,"205.000000","5191.000000",,,,,,,,,,,"4062.000000","595.000000","638.000000","641.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","511.000000","527.000000","545.000000","610.000000","752.000000","667.000000","160.000000","6000.000000",,"8976313.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-instance.csv b/splunk_eventgen/samples/vmware-actuals-host-instance.csv deleted file mode 100644 index 1ac2f32d..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host-instance.csv +++ /dev/null @@ -1,852 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -,"22.964583",,"22.964583",,"22.964583",,,,,,,"3837.916667",,,,,"4593.916667",,"11.311111",,"372.177778",,,,"29.600000","1.422222","1.177778","1.400000","31.422222","0.000000","344.925926","0.000000","13.444444","328.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","721.625000",,,,,"0.000000","0.000000",,,"2147.375000","2729.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.476250",,"22.476250",,"22.476250",,,,,,,"4239.833333",,,,,"4496.125000",,"4.200000",,"330.977778",,,,"24.714286","0.866667","0.488889","1.533333","26.977778","0.000000","300.037037","0.000000","8.888889","289.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","612.125000",,,,,"0.000000","0.000000",,,"1756.500000","2189.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.342917",,"22.342917",,"22.342917",,,,,,,"4169.291667",,,,,"4469.250000",,"3.488889",,"292.155556",,,,"18.857143","0.977778","2.733333","127.733333","19.977778","0.000000","221.296296","0.074074","9.592593","210.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","585.625000",,,,,"0.000000","0.000000",,,"1627.625000","2008.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.693333",,"15.693333",,"15.693333",,,,,,,"5570.625000",,,,,"3139.666667",,"19.466667",,"102.533333",,,,"2117.485714","1.177778","56.377778","636.888889","6.533333","0.000000","86.777778","0.259259","14.481481","70.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","181.125000",,,,,"0.000000","0.000000",,,"695.625000","761.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.493333",,"20.493333",,"20.493333",,,,,,,"4138.666667",,,,,"4099.791667",,"4.377778",,"328.400000",,,,"2540.085714","0.888889","9.888889","329.422222","28.222222","0.000000","307.851852","0.111111","10.333333","296.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","638.875000",,,,,"0.000000","0.000000",,,"1909.000000","2327.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.892917",,"20.892917",,"20.892917",,,,,,,"4545.208333",,,,,"4179.416667",,"3.111111",,"117.088889",,,,"2007.628571","0.800000","0.711111","45.266667","5.800000","0.000000","72.592593","0.000000","8.481481","62.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.000000","232.250000",,,,,"0.000000","0.000000",,,"910.375000","983.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.351667",,"17.351667",,"17.351667",,,,,,,"5112.958333",,,,,"3471.541667",,"6.200000",,"1594.355556",,,,"1545.714286","1.000000","3.444444","41.822222","20.733333","0.000000","210.851852","0.000000","10.000000","199.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","2849.875000",,,,,"0.000000","0.000000",,,"5832.375000","8092.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.875417",,"18.875417",,"18.875417",,,,,,,"5122.458333",,,,,"3776.083333",,"3.822222",,"465.133333",,,,"852.114286","0.977778","0.333333","3.400000","16.111111","0.000000","178.925926","0.000000","9.925926","167.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.250000","1274.375000",,,,,"0.000000","0.000000",,,"6969.625000","7389.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.506667",,"17.506667",,"17.506667",,,,,,,"5386.166667",,,,,"3502.125000",,"58.266667",,"900.933333",,,,"42.371429","3.377778","0.600000","8.222222","44.355556","0.000000","502.333333","0.000000","36.481481","464.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"132.875000","1854.250000",,,,,"0.000000","0.000000",,,"6107.625000","7459.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.251667",,"22.251667",,"22.251667",,,,,,,"4570.833333",,,,,"4451.208333",,"4.400000",,"525.377778",,,,"45.314286","1.177778","0.444444","2.377778","49.311111","0.000000","521.592593","0.000000","11.148148","508.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","974.000000",,,,,"0.000000","0.000000",,,"2777.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.629583",,"21.629583",,"21.629583",,,,,,,"4419.291667",,,,,"4326.625000",,"24.133333",,"461.222222",,,,"38.057143","1.155556","0.266667","1.733333","41.555556","0.000000","445.777778","0.000000","11.555556","433.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.000000","913.750000",,,,,"0.000000","0.000000",,,"2767.000000","3537.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.837917",,"20.837917",,"20.837917",,,,,,,"4725.791667",,,,,"4168.458333",,"105.177778",,"389.488889",,,,"33.942857","2.733333","0.288889","2.066667","35.044444","0.000000","392.518519","0.000000","26.777778","363.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"154.125000","691.500000",,,,,"0.000000","0.000000",,,"2393.375000","2793.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.988750",,"18.988750",,"18.988750",,,,,,,"5670.541667",,,,,"3798.583333",,"57.800000",,"337.444444",,,,"23.685714","1.333333","0.400000","1.555556","25.111111","0.000000","277.222222","0.000000","14.555556","261.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"167.750000","622.250000",,,,,"0.000000","0.000000",,,"2163.125000","2381.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.806250",,"18.806250",,"18.806250",,,,,,,"5040.250000",,,,,"3762.166667",,"257.888889",,"394.177778",,,,"37.542857","8.200000","0.355556","1.400000","33.911111","0.000000","438.925926","0.000000","89.851852","347.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"492.750000","775.625000",,,,,"0.000000","0.000000",,,"3455.500000","3576.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.132917",,"20.132917",,"20.132917",,,,,,,"4924.583333",,,,,"4027.625000",,"145.488889",,"387.755556",,,,"40.114286","4.911111","0.177778","1.088889","39.111111","0.000000","450.333333","0.000000","54.666667","391.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"289.625000","8.285714",,,,,"0.000000","0.000000",,,"2861.250000","3031.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.448750",,"18.448750",,"18.448750",,,,,,,"5074.125000",,,,,"3690.750000",,"118.133333",,"331.933333",,,,"32.285714","4.022222","0.644444","1.400000","31.911111","0.000000","370.703704","0.000000","43.703704","325.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.875000","651.000000",,,,,"0.000000","0.000000",,,"2537.000000","2851.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.191667",,"22.191667",,"22.191667",,,,,,,"3835.208333",,,,,"4439.166667",,"89.844444",,"472.755556",,,,"41.514286","5.422222","0.266667","1.755556","40.755556","0.000000","473.000000","0.000000","59.148148","412.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"191.000000","854.375000",,,,,"0.000000","0.000000",,,"2865.250000","3436.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.297917",,"22.297917",,"22.297917",,,,,,,"4117.208333",,,,,"4460.500000",,"9.377778",,"338.533333",,,,"30.800000","1.844444","0.333333","1.377778","32.222222","0.000000","349.407407","0.000000","19.666667","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","851.875000",,,,,"0.000000","0.000000",,,"5608.125000","6200.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.939167",,"21.939167",,"21.939167",,,,,,,"3914.291667",,,,,"4388.708333",,"36.644444",,"251.800000",,,,"2011.342857","9.066667","0.333333","1.977778","20.200000","0.000000","308.185185","0.000000","99.666667","207.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.625000","621.375000",,,,,"0.000000","0.000000",,,"4747.250000","5122.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.502083",,"22.502083",,"22.502083",,,,,,,"4223.416667",,,,,"4501.333333",,"3.977778",,"436.200000",,,,"2518.285714","0.955556","0.555556","2.533333","28.400000","0.000000","300.444444","0.000000","9.296296","289.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","827.375000",,,,,"0.000000","0.000000",,,"2245.250000","2863.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.317500",,"22.317500",,"22.317500",,,,,,,"4361.833333",,,,,"4464.500000",,"31.844444",,"334.466667",,,,"1829.628571","2.755556","1.822222","1.733333","19.377778","0.000000","233.296296","0.000000","28.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"96.625000","624.250000",,,,,"0.000000","0.000000",,,"2522.000000","2492.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.582500",,"27.582500",,"27.582500",,,,,,,"2615.625000",,,,,"5517.666667",,"17.266667",,"553.600000",,,,"1514.142857","2.177778","0.377778","1.422222","49.777778","0.000000","524.222222","0.000000","23.370370","499.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.000000","1017.125000",,,,,"0.000000","0.000000",,,"3092.125000","3738.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.474167",,"25.474167",,"25.474167",,,,,,,"3153.583333",,,,,"5095.666667",,"3.600000",,"479.800000",,,,"1274.600000","0.977778","1.022222","3.155556","43.333333","0.000000","443.851852","0.000000","9.703704","432.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","871.500000",,,,,"0.000000","0.000000",,,"2500.625000","3097.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.752083",,"21.752083",,"21.752083",,,,,,,"4219.750000",,,,,"4351.375000",,"3.488889",,"386.511111",,,,"32.400000","1.022222","0.133333","2.222222","34.600000","0.000000","358.481481","0.000000","9.851852","347.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","714.750000",,,,,"0.000000","0.000000",,,"2142.625000","2569.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.273750",,"25.273750",,"25.273750",,,,,,,"3686.666667",,,,,"5055.708333",,"11.066667",,"594.377778",,,,"41.942857","1.844444","0.266667","1.733333","44.244444","0.000000","462.000000","0.000000","19.555556","440.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","858.125000",,,,,"0.000000","0.000000",,,"2565.250000","3305.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.602917",,"24.602917",,"24.602917",,,,,,,"3892.000000",,,,,"4921.583333",,"12.266667",,"406.244444",,,,"34.800000","1.577778","0.200000","1.777778","36.666667","0.000000","385.222222","0.000000","17.222222","366.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","1038.625000",,,,,"0.000000","0.000000",,,"2794.000000","3562.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.929583",,"22.929583",,"22.929583",,,,,,,"4382.750000",,,,,"4586.875000",,"16.155556",,"587.400000",,,,"35.485714","2.266667","0.266667","3.800000","37.000000","0.000000","398.222222","0.000000","23.666667","373.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1032.000000",,,,,"0.000000","0.000000",,,"2702.250000","3407.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.956250",,"23.956250",,"23.956250",,,,,,,"4120.625000",,,,,"4792.125000",,"2.577778",,"394.711111",,,,"36.142857","0.888889","0.177778","1.244444","38.755556","0.000000","394.629630","0.000000","8.444444","384.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","765.375000",,,,,"0.000000","0.000000",,,"2260.875000","2818.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.483750",,"23.483750",,"23.483750",,,,,,,"4405.833333",,,,,"4697.625000",,"9.466667",,"365.266667",,,,"27.057143","1.488889","0.777778","2.555556","27.977778","0.000000","297.333333","0.000000","14.222222","280.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","793.625000",,,,,"0.000000","0.000000",,,"4382.875000","4854.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.832083",,"21.832083",,"21.832083",,,,,,,"4539.750000",,,,,"4367.541667",,"22.111111",,"306.777778",,,,"26.828571","1.911111","0.244444","1.866667","27.377778","0.000000","302.925926","0.000000","21.333333","277.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.125000","867.375000",,,,,"0.000000","0.000000",,,"5982.750000","6615.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.718750",,"24.718750",,"24.718750",,,,,,,"4033.958333",,,,,"4944.666667",,"2.711111",,"482.800000",,,,"40.400000","0.933333","0.133333","2.511111","43.555556","0.000000","444.185185","0.000000","8.666667","434.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","864.125000",,,,,"0.000000","0.000000",,,"2486.125000","3033.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.872917",,"21.872917",,"21.872917",,,,,,,"3919.375000",,,,,"4375.583333",,"3.888889",,"396.533333",,,,"32.342857","0.955556","0.133333","2.022222","34.666667","0.000000","358.703704","0.000000","9.518519","347.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","735.625000",,,,,"0.000000","0.000000",,,"2147.625000","2750.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.719583",,"26.719583",,"26.719583",,,,,,,"2485.583333",,,,,"5344.791667",,"3.444444",,"443.533333",,,,"23.828571","1.044444","0.422222","4.200000","25.266667","0.000000","268.629630","0.000000","9.629630","257.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","833.000000",,,,,"0.000000","0.000000",,,"2137.500000","2744.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.444167",,"31.444167",,"31.444167",,,,,,,"1250.958333",,,,,"6289.916667",,"3.866667",,"561.933333",,,,"1557.628571","0.866667","0.622222","1.488889","40.866667","0.000000","425.666667","0.000000","8.444444","416.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","1086.250000",,,,,"0.000000","0.000000",,,"2836.000000","3618.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"38.192917",,"38.192917",,"38.192917",,,,,,,"665.458333",,,,,"7639.458333",,"2.822222",,"401.244444",,,,"2194.857143","0.844444","0.622222","2.066667","26.155556","0.000000","275.074074","0.000000","8.444444","265.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","721.750000",,,,,"0.000000","0.000000",,,"1910.750000","2503.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"37.478333",,"37.478333",,"37.478333",,,,,,,"430.583333",,,,,"7496.791667",,"4.422222",,"711.511111",,,,"1416.285714","0.955556","2.266667","3.088889","39.177778","0.000000","411.592593","0.000000","9.814815","400.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.375000","1420.000000",,,,,"0.000000","0.000000",,,"4759.250000","5401.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.707500",,"32.707500",,"32.707500",,,,,,,"1046.333333",,,,,"6542.458333",,"13.688889",,"412.977778",,,,"1384.228571","1.533333","1.222222","3.488889","29.733333","0.000000","318.407407","0.000000","14.148148","301.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","980.625000",,,,,"0.000000","0.000000",,,"5406.750000","6490.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.303333",,"29.303333",,"29.303333",,,,,,,"1384.750000",,,,,"5861.583333",,"4.755556",,"514.822222",,,,"1464.542857","1.000000","0.577778","1.955556","42.911111","0.000000","449.296296","0.000000","10.296296","437.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1227.625000",,,,,"0.000000","0.000000",,,"5596.750000","6783.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.291667",,"26.291667",,"26.291667",,,,,,,"2767.208333",,,,,"5259.166667",,"3.200000",,"420.111111",,,,"1171.257143","0.933333","0.355556","3.088889","37.155556","0.000000","387.259259","0.000000","9.407407","376.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1028.125000",,,,,"0.000000","0.000000",,,"5272.375000","6411.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.346250",,"26.346250",,"26.346250",,,,,,,"3580.500000",,,,,"5270.208333",,"3.533333",,"486.088889",,,,"39.600000","0.955556","0.355556","4.333333","42.866667","0.000000","446.740741","0.000000","9.703704","435.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.750000","1147.875000",,,,,"0.000000","0.000000",,,"6006.625000","7280.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.151667",,"24.151667",,"24.151667",,,,,,,"3947.916667",,,,,"4831.208333",,"3.066667",,"457.511111",,,,"37.971429","0.800000","0.666667","2.533333","41.266667","0.000000","431.259259","0.000000","8.629630","421.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1103.250000",,,,,"0.000000","0.000000",,,"5842.500000","7036.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.313333",,"25.313333",,"25.313333",,,,,,,"3857.875000",,,,,"5063.500000",,"2.977778",,"436.466667",,,,"30.857143","0.933333","0.288889","2.288889","33.377778","0.000000","353.370370","0.000000","8.851852","343.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1139.000000",,,,,"0.000000","0.000000",,,"5929.000000","7105.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.853750",,"25.853750",,"25.853750",,,,,,,"4312.583333",,,,,"5171.833333",,"3.822222",,"458.933333",,,,"35.800000","0.955556","0.311111","1.777778","38.622222","0.000000","403.074074","0.000000","9.629630","392.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1163.250000",,,,,"0.000000","0.000000",,,"6204.500000","7375.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.745417",,"25.745417",,"25.745417",,,,,,,"3276.208333",,,,,"5150.083333",,"8.555556",,"465.933333",,,,"38.228571","1.466667","0.222222","2.444444","40.755556","0.000000","433.444444","0.000000","13.555556","417.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","1088.625000",,,,,"0.000000","0.000000",,,"5674.125000","6719.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.011250",,"25.011250",,"25.011250",,,,,,,"4086.708333",,,,,"5003.083333",,"22.644444",,"548.977778",,,,"39.171429","2.111111","0.244444","2.533333","40.955556","0.000000","440.296296","0.000000","23.148148","413.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.875000","1291.750000",,,,,"0.000000","0.000000",,,"6326.500000","7610.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.236667",,"24.236667",,"24.236667",,,,,,,"3924.333333",,,,,"4848.250000",,"4.200000",,"419.888889",,,,"34.828571","0.955556","0.311111","1.466667","37.533333","0.000000","392.185185","0.000000","9.296296","381.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1073.125000",,,,,"0.000000","0.000000",,,"5831.125000","7042.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.887500",,"25.887500",,"25.887500",,,,,,,"3637.375000",,,,,"5178.583333",,"3.333333",,"416.911111",,,,"33.400000","0.933333","0.755556","2.200000","36.088889","0.000000","377.370370","0.000000","8.888889","367.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","312.000000",,,,,"0.000000","0.000000",,,"5630.625000","6643.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.725833",,"32.725833",,"32.725833",,,,,,,"1537.458333",,,,,"6546.083333",,"5.333333",,"643.022222",,,,"44.342857","1.044444","1.177778","2.000000","48.111111","0.000000","501.777778","0.000000","10.740741","489.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.625000","1437.375000",,,,,"0.000000","0.000000",,,"6435.500000","7798.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.407083",,"23.407083",,"23.407083",,,,,,,"4021.708333",,,,,"4682.291667",,"4.133333",,"288.022222",,,,"1927.628571","0.844444","0.333333","2.222222","18.355556","0.000000","198.333333","0.000000","8.666667","188.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","834.625000",,,,,"0.000000","0.000000",,,"5070.500000","6029.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.535833",,"23.535833",,"23.535833",,,,,,,"3934.625000",,,,,"4708.000000",,"3.222222",,"424.888889",,,,"2305.514286","1.000000","0.244444","4.422222","10.288889","0.000000","114.259259","0.000000","9.296296","103.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.125000","1098.500000",,,,,"0.000000","0.000000",,,"12402.375000","7026.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.125833",,"26.125833",,"26.125833",,,,,,,"3436.583333",,,,,"5225.708333",,"10.533333",,"439.733333",,,,"1775.428571","1.911111","0.400000","3.355556","26.066667","0.000000","286.111111","0.000000","18.074074","264.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.375000","885.000000",,,,,"0.000000","0.000000",,,"6061.375000","6468.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.251250",,"30.251250",,"30.251250",,,,,,,"2742.750000",,,,,"6051.208333",,"5.555556",,"869.511111",,,,"1563.600000","2.244444","0.466667","2.733333","50.377778","0.000000","525.148148","0.000000","20.407407","499.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.500000","1860.625000",,,,,"0.000000","0.000000",,,"7328.750000","9043.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.794167",,"28.794167",,"28.794167",,,,,,,"2946.666667",,,,,"5759.958333",,"6.311111",,"1305.400000",,,,"1410.028571","1.044444","0.666667","6.377778","37.111111","0.000000","380.555556","0.000000","10.703704","368.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.000000","2956.750000",,,,,"0.000000","0.000000",,,"8895.000000","11428.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.132500",,"30.132500",,"30.132500",,,,,,,"2985.083333",,,,,"6027.416667",,"3.733333",,"1372.088889",,,,"185.800000","0.955556","0.311111","3.933333","46.666667","0.000000","473.296296","0.000000","9.518519","462.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","2649.125000",,,,,"0.000000","0.000000",,,"8579.250000","10945.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.247917",,"26.247917",,"26.247917",,,,,,,"3586.083333",,,,,"5250.541667",,"6.822222",,"1792.822222",,,,"35.971429","1.333333","0.377778","6.400000","37.555556","0.000000","372.888889","0.000000","13.148148","358.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.250000","3696.250000",,,,,"0.000000","0.000000",,,"9983.625000","13190.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.460833",,"26.460833",,"26.460833",,,,,,,"3610.125000",,,,,"5293.166667",,"317.622222",,"2913.555556",,,,"52.485714","6.688889","1.822222","7.688889","50.155556","0.000000","544.481481","0.000000","71.888889","471.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"658.125000","6003.000000",,,,,"0.000000","0.000000",,,"15490.125000","19691.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.725833",,"26.725833",,"26.725833",,,,,,,"3503.375000",,,,,"5345.958333",,"4.688889",,"1796.844444",,,,"34.428571","1.111111","0.733333","4.933333","35.866667","0.000000","353.259259","0.000000","11.000000","340.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","3539.375000",,,,,"0.000000","0.000000",,,"9893.250000","12720.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.754167",,"24.754167",,"24.754167",,,,,,,"3637.333333",,,,,"4951.666667",,"3.466667",,"1687.288889",,,,"33.714286","0.933333","0.311111","4.622222","35.488889","0.000000","349.666667","0.000000","9.000000","339.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.875000","3469.750000",,,,,"0.000000","0.000000",,,"9989.125000","12468.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.119583",,"24.119583",,"24.119583",,,,,,,"3458.333333",,,,,"4824.625000",,"8.288889",,"1632.711111",,,,"34.657143","1.466667","0.333333","4.688889","35.844444","0.000000","359.592593","0.000000","13.407407","343.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","223.285714",,,,,"0.000000","0.000000",,,"8630.125000","10818.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.765833",,"23.765833",,"23.765833",,,,,,,"3944.208333",,,,,"4754.208333",,"22.155556",,"582.155556",,,,"38.714286","2.044444","0.177778","3.133333","40.577778","0.000000","436.888889","0.000000","22.111111","410.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.000000","1610.875000",,,,,"0.000000","0.000000",,,"7299.500000","8270.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.970833",,"23.970833",,"23.970833",,,,,,,"3990.666667",,,,,"4795.333333",,"4.777778",,"385.822222",,,,"35.142857","1.133333","0.266667","1.777778","37.533333","0.000000","388.370370","0.000000","11.185185","375.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","805.875000",,,,,"0.000000","0.000000",,,"3684.125000","4286.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.576250",,"27.576250",,"27.576250",,,,,,,"3005.833333",,,,,"5516.291667",,"4.622222",,"478.844444",,,,"36.142857","1.022222","0.222222","2.622222","38.911111","0.000000","403.814815","0.000000","10.000000","392.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","870.500000",,,,,"0.000000","0.000000",,,"2351.750000","3019.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.643333",,"27.643333",,"27.643333",,,,,,,"3044.541667",,,,,"5529.541667",,"64.644444",,"1175.955556",,,,"37.742857","3.133333","0.488889","4.355556","38.111111","0.000000","406.444444","0.000000","33.037037","371.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.750000","2135.875000",,,,,"0.000000","0.000000",,,"4715.250000","6257.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.459167",,"31.459167",,"31.459167",,,,,,,"1749.458333",,,,,"6293.083333",,"3.844444",,"469.777778",,,,"1581.542857","0.866667","0.422222","2.288889","34.444444","0.000000","358.666667","0.000000","8.703704","348.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","996.250000",,,,,"0.000000","0.000000",,,"2569.875000","3386.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.017500",,"31.017500",,"31.017500",,,,,,,"1735.458333",,,,,"6204.125000",,"4.866667",,"399.711111",,,,"2372.742857","1.088889","0.222222","2.222222","33.177778","0.000000","346.444444","0.000000","10.703704","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","721.625000",,,,,"0.000000","0.000000",,,"2048.250000","2611.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.515417",,"25.515417",,"25.515417",,,,,,,"2905.333333",,,,,"5104.291667",,"3.955556",,"269.333333",,,,"1807.171429","0.955556","0.466667","1.888889","18.200000","0.000000","197.629630","0.000000","9.666667","186.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.250000","557.000000",,,,,"0.000000","0.000000",,,"2262.625000","2340.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.461250",,"28.461250",,"28.461250",,,,,,,"2376.708333",,,,,"5693.041667",,"10.377778",,"666.755556",,,,"1566.885714","1.711111","1.888889","2.488889","41.088889","0.000000","438.000000","0.000000","16.333333","418.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1240.000000",,,,,"0.000000","0.000000",,,"3354.000000","4094.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.708750",,"26.708750",,"26.708750",,,,,,,"2640.333333",,,,,"5342.791667",,"4.511111",,"455.866667",,,,"1565.000000","0.977778","0.133333","2.266667","32.866667","0.000000","337.370370","0.000000","9.481481","326.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","862.000000",,,,,"0.000000","0.000000",,,"2340.500000","3036.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.004167",,"30.004167",,"30.004167",,,,,,,"2952.875000",,,,,"6001.833333",,"4.822222",,"1185.377778",,,,"347.628571","0.911111","0.777778","2.822222","116.111111","0.000000","1251.925926","0.000000","9.185185","1241.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.625000","2143.000000",,,,,"0.000000","0.000000",,,"5799.125000","7420.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.079167",,"27.079167",,"27.079167",,,,,,,"3543.291667",,,,,"5416.833333",,"146.888889",,"1047.355556",,,,"102.657143","3.933333","0.355556","2.644444","113.800000","0.000000","1274.148148","0.000000","42.481481","1230.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"231.875000","2085.500000",,,,,"0.000000","0.000000",,,"7827.500000","9313.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.192083",,"24.192083",,"24.192083",,,,,,,"3570.375000",,,,,"4839.541667",,"473.533333",,"1289.311111",,,,"109.228571","14.022222","0.466667","2.911111","110.777778","0.000000","1342.148148","0.000000","153.777778","1186.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1025.250000","2656.875000",,,,,"0.000000","0.000000",,,"12709.125000","13609.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.317917",,"24.317917",,"24.317917",,,,,,,"3180.750000",,,,,"4864.416667",,"28.755556",,"1176.911111",,,,"92.971429","1.822222","0.333333","2.000000","104.222222","0.000000","1132.703704","0.000000","18.222222","1113.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.500000","2223.250000",,,,,"0.000000","0.000000",,,"6840.875000","8657.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.021667",,"26.021667",,"26.021667",,,,,,,"3431.416667",,,,,"5205.208333",,"330.777778",,"1422.577778",,,,"59.485714","6.133333","0.422222","5.488889","60.200000","0.000000","680.148148","0.000000","65.851852","612.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"659.500000","2776.000000",,,,,"0.000000","0.000000",,,"7590.000000","9186.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.982917",,"25.982917",,"25.982917",,,,,,,"3354.541667",,,,,"5197.375000",,"46.866667",,"1277.155556",,,,"79.514286","2.155556","0.444444","3.533333","87.755556","0.000000","948.629630","0.000000","22.555556","924.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.625000","2404.125000",,,,,"0.000000","0.000000",,,"5945.500000","7793.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.697083",,"22.697083",,"22.697083",,,,,,,"3838.000000",,,,,"4540.291667",,"386.800000",,"1148.755556",,,,"44.628571","10.266667","0.444444","2.177778","38.866667","0.000000","505.000000","0.000000","111.185185","388.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.500000","27.285714",,,,,"0.000000","0.000000",,,"6327.500000","7327.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.809167",,"23.809167",,"23.809167",,,,,,,"3817.083333",,,,,"4762.708333",,"1003.533333",,"689.311111",,,,"58.600000","23.200000","0.444444","2.155556","42.400000","0.000000","678.925926","0.000000","254.814815","422.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2026.875000","1270.375000",,,,,"0.000000","0.000000",,,"8425.750000","7120.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.437500",,"23.437500",,"23.437500",,,,,,,"3851.333333",,,,,"4688.625000",,"898.688889",,"1114.688889",,,,"44.114286","19.466667","0.644444","5.266667","29.755556","0.000000","507.259259","0.000000","214.148148","291.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1667.250000","2101.500000",,,,,"0.000000","0.000000",,,"8415.000000","8224.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.730833",,"25.730833",,"25.730833",,,,,,,"2614.333333",,,,,"5147.291667",,"644.177778",,"882.088889",,,,"58.171429","15.888889","0.711111","3.533333","49.422222","0.000000","682.296296","0.000000","174.296296","506.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1298.375000","1634.375000",,,,,"0.000000","0.000000",,,"7154.750000","7115.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.152083",,"23.152083",,"23.152083",,,,,,,"3951.166667",,,,,"4631.208333",,"7.977778",,"1052.466667",,,,"2694.857143","1.311111","0.711111","4.355556","22.222222","0.000000","234.444444","0.000000","13.666667","219.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.250000","1993.500000",,,,,"0.000000","0.000000",,,"3985.250000","5608.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.417917",,"24.417917",,"24.417917",,,,,,,"3591.208333",,,,,"4884.708333",,"21.022222",,"495.022222",,,,"2548.657143","2.511111","0.488889","3.888889","23.444444","0.000000","261.370370","0.000000","26.592593","233.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","1015.875000",,,,,"0.000000","0.000000",,,"2540.000000","3241.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.929583",,"27.929583",,"27.929583",,,,,,,"2147.083333",,,,,"5586.708333",,"21.533333",,"868.666667",,,,"1876.285714","3.022222","0.533333","1.977778","47.066667","0.000000","515.185185","0.000000","32.481481","481.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"103.375000","1620.125000",,,,,"0.000000","0.000000",,,"4532.250000","5284.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.112500",,"24.112500",,"24.112500",,,,,,,"3121.958333",,,,,"4823.291667",,"18.111111",,"709.733333",,,,"1661.142857","2.066667","0.333333","3.177778","35.377778","0.000000","380.666667","0.000000","21.851852","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1426.000000",,,,,"0.000000","0.000000",,,"4878.250000","5970.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.082500",,"20.082500",,"20.082500",,,,,,,"4590.208333",,,,,"4017.583333",,"34.311111",,"1322.733333",,,,"363.428571","2.977778","0.266667","2.422222","32.333333","0.000000","358.444444","0.000000","30.111111","325.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.250000","2724.625000",,,,,"0.000000","0.000000",,,"9158.750000","11000.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.281667",,"21.281667",,"21.281667",,,,,,,"4209.166667",,,,,"4257.250000",,"151.733333",,"1575.933333",,,,"47.514286","3.622222","1.111111","3.377778","48.733333","0.000000","524.037037","0.000000","38.740741","483.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.142857","3256.750000",,,,,"0.000000","0.000000",,,"7761.250000","12288.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.682083",,"21.682083",,"21.682083",,,,,,,"4104.000000",,,,,"4337.208333",,"254.688889",,"1027.733333",,,,"42.685714","5.488889","0.911111","3.111111","41.422222","0.000000","467.592593","0.000000","60.518519","405.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.000000","2192.000000",,,,,"0.000000","0.000000",,,"5907.750000","10556.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.445417",,"17.445417",,"17.445417",,,,,,,"4937.250000",,,,,"3489.875000",,"929.755556",,"924.733333",,,,"43.942857","17.711111","0.822222","2.600000","31.600000","0.000000","515.814815","0.000000","195.185185","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1685.625000","2098.750000",,,,,"0.000000","0.000000",,,"8524.875000","11662.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.408750",,"20.408750",,"20.408750",,,,,,,"4209.791667",,,,,"4082.750000",,"1182.800000",,"520.133333",,,,"63.685714","27.777778","6.955556","1.377778","43.911111","0.000000","753.740741","0.000000","306.111111","446.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2276.000000","1301.625000",,,,,"0.000000","0.000000",,,"9281.250000","11322.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.401250",,"18.401250",,"18.401250",,,,,,,"4867.000000",,,,,"3681.041667",,"956.844444",,"901.733333",,,,"44.428571","19.400000","1.000000","6.666667","30.333333","0.000000","517.407407","0.000000","212.814815","303.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1817.500000","1862.375000",,,,,"0.000000","0.000000",,,"8540.375000","9110.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.967500",,"21.967500",,"21.967500",,,,,,,"4266.583333",,,,,"4394.375000",,"82.644444",,"495.577778",,,,"39.457143","4.644444","0.377778","2.933333","38.800000","0.000000","440.000000","0.000000","51.370370","387.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"270.875000","927.125000",,,,,"0.000000","0.000000",,,"3152.625000","3856.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.862917",,"21.862917",,"21.862917",,,,,,,"4124.875000",,,,,"4373.541667",,"41.488889",,"458.800000",,,,"42.200000","2.222222","0.244444","1.377778","44.266667","0.000000","471.703704","0.000000","24.888889","443.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"88.875000","859.875000",,,,,"0.000000","0.000000",,,"2630.250000","3163.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.792500",,"23.792500",,"23.792500",,,,,,,"3762.458333",,,,,"4759.291667",,"697.288889",,"374.155556",,,,"41.314286","12.177778","0.222222","1.244444","33.800000","0.000000","479.962963","0.000000","131.185185","345.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1136.500000","27.571429",,,,,"0.000000","0.000000",,,"4971.625000","4275.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.510417",,"22.510417",,"22.510417",,,,,,,"4407.416667",,,,,"4503.166667",,"1482.488889",,"425.577778",,,,"58.971429","30.177778","0.622222","1.600000","36.844444","0.000000","716.111111","0.000000","332.148148","382.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2987.625000","801.375000",,,,,"0.000000","0.000000",,,"10085.375000","7308.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.292083",,"32.292083",,"32.292083",,,,,,,"1454.958333",,,,,"6459.333333",,"1168.111111",,"1076.311111",,,,"56.114286","23.911111","0.222222","4.200000","39.400000","0.000000","668.740741","0.000000","263.259259","404.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2160.125000","2046.750000",,,,,"0.000000","0.000000",,,"9864.500000","8941.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.538333",,"24.538333",,"24.538333",,,,,,,"2955.875000",,,,,"4908.625000",,"637.911111",,"737.133333",,,,"1997.085714","14.244444","0.911111","3.111111","32.355556","0.000000","490.259259","0.000000","156.814815","331.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1336.375000","2480.375000",,,,,"0.000000","0.000000",,,"12365.875000","21627.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.722083",,"23.722083",,"23.722083",,,,,,,"3415.291667",,,,,"4745.166667",,"3.488889",,"300.644444",,,,"2256.542857","0.888889","0.200000","3.355556","21.711111","0.000000","238.074074","0.000000","9.111111","227.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","1136.375000",,,,,"0.000000","0.000000",,,"5967.875000","10321.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.935833",,"26.935833",,"26.935833",,,,,,,"3320.791667",,,,,"5388.166667",,"5.200000",,"453.044444",,,,"1802.257143","1.022222","0.244444","1.622222","32.755556","0.000000","355.851852","0.000000","10.148148","344.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.125000","813.375000",,,,,"0.000000","0.000000",,,"2965.875000","3033.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.629583",,"25.629583",,"25.629583",,,,,,,"3299.666667",,,,,"5127.083333",,"9.888889",,"370.622222",,,,"1583.600000","1.355556","0.444444","1.022222","32.711111","0.000000","359.407407","0.000000","13.925926","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","706.125000",,,,,"0.000000","0.000000",,,"2131.625000","2673.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.751250",,"26.751250",,"26.751250",,,,,,,"2614.166667",,,,,"5351.125000",,"4.155556",,"388.822222",,,,"1465.571429","0.844444","0.288889","3.111111","31.644444","0.000000","345.333333","0.000000","8.851852","335.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.375000","804.625000",,,,,"0.000000","0.000000",,,"2357.000000","2940.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.454583",,"22.454583",,"22.454583",,,,,,,"3617.291667",,,,,"4491.958333",,"9.977778",,"308.288889",,,,"59.342857","1.911111","0.444444","1.555556","26.200000","0.000000","293.851852","0.000000","17.555556","273.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","551.375000",,,,,"0.000000","0.000000",,,"1697.500000","2222.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.379583",,"21.379583",,"21.379583",,,,,,,"4372.916667",,,,,"4276.791667",,"972.311111",,"356.955556",,,,"42.457143","18.755556","0.222222","1.666667","29.533333","0.000000","520.000000","0.000000","205.703704","312.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1635.250000","720.875000",,,,,"0.000000","0.000000",,,"6365.000000","5111.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.645417",,"17.645417",,"17.645417",,,,,,,"5236.208333",,,,,"3529.750000",,"1357.600000",,"286.355556",,,,"48.714286","28.511111","0.466667","0.933333","27.044444","0.000000","602.037037","0.000000","313.296296","287.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2751.500000","507.625000",,,,,"0.000000","0.000000",,,"8790.125000","6191.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.974167",,"15.974167",,"15.974167",,,,,,,"5382.916667",,,,,"3195.750000",,"1210.733333",,"989.000000",,,,"52.285714","22.844444","0.288889","3.933333","35.866667","0.000000","613.037037","0.000000","251.370370","360.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.875000","1933.500000",,,,,"0.000000","0.000000",,,"9652.000000","8786.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.382083",,"16.382083",,"16.382083",,,,,,,"5057.666667",,,,,"3277.291667",,"527.066667",,"662.311111",,,,"50.885714","22.377778","0.288889","3.688889","35.088889","0.000000","609.777778","0.000000","247.777778","360.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1096.750000","1172.250000",,,,,"0.000000","0.000000",,,"5754.000000","5650.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.439167",,"14.439167",,"14.439167",,,,,,,"5829.458333",,,,,"2888.916667",,"1724.355556",,"1871.288889",,,,"67.457143","40.777778","0.400000","4.866667","35.244444","0.000000","795.148148","0.000000","448.555556","345.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3289.500000","3484.125000",,,,,"0.000000","0.000000",,,"15080.375000","14269.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.093750",,"16.093750",,"16.093750",,,,,,,"4969.333333",,,,,"3219.666667",,"1567.200000",,"2178.755556",,,,"73.171429","39.355556","0.511111","6.577778","42.311111","0.000000","847.259259","0.000000","434.851852","408.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.142857","4189.750000",,,,,"0.000000","0.000000",,,"15556.875000","15637.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.780000",,"14.780000",,"14.780000",,,,,,,"5772.666667",,,,,"2956.708333",,"114.488889",,"275.200000",,,,"30.285714","6.488889","1.400000","1.822222","27.644444","0.000000","362.777778","0.000000","70.777778","290.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"302.625000","729.250000",,,,,"0.000000","0.000000",,,"4848.000000","5096.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.180417",,"19.180417",,"19.180417",,,,,,,"4019.833333",,,,,"3837.166667",,"16.777778",,"518.066667",,,,"45.600000","2.111111","0.266667","1.422222","49.044444","0.000000","540.333333","0.000000","20.777778","516.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.750000","1187.875000",,,,,"0.000000","0.000000",,,"6836.375000","7633.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.755000",,"18.755000",,"18.755000",,,,,,,"4642.625000",,,,,"3751.958333",,"9.977778",,"1090.666667",,,,"40.857143","1.177778","0.622222","6.844444","44.200000","0.000000","468.592593","0.000000","12.629630","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"287.500000","2144.625000",,,,,"0.000000","0.000000",,,"8776.250000","7374.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.521250",,"19.521250",,"19.521250",,,,,,,"4656.666667",,,,,"3905.416667",,"5.933333",,"369.044444",,,,"2215.828571","1.000000","0.288889","3.511111","33.466667","0.000000","367.592593","0.000000","10.296296","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","653.750000",,,,,"0.000000","0.000000",,,"2033.375000","2523.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.953333",,"20.953333",,"20.953333",,,,,,,"4080.000000",,,,,"4191.500000",,"5.244444",,"234.822222",,,,"2557.285714","0.977778","0.777778","3.822222","21.400000","0.000000","239.222222","0.000000","9.370370","228.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","490.500000",,,,,"0.000000","0.000000",,,"1515.250000","1820.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.012917",,"22.012917",,"22.012917",,,,,,,"3810.583333",,,,,"4403.375000",,"7.355556",,"544.022222",,,,"1976.657143","1.022222","0.755556","1.822222","43.800000","0.000000","476.592593","0.000000","10.222222","464.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1028.375000",,,,,"0.000000","0.000000",,,"3528.625000","3749.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.217500",,"20.217500",,"20.217500",,,,,,,"4423.333333",,,,,"4044.416667",,"5.333333",,"357.711111",,,,"1749.857143","0.977778","0.311111","1.133333","35.933333","0.000000","388.259259","0.000000","10.185185","376.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","637.375000",,,,,"0.000000","0.000000",,,"2064.000000","2502.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.260417",,"17.260417",,"17.260417",,,,,,,"5597.166667",,,,,"3452.958333",,"3.177778",,"301.333333",,,,"639.971429","0.933333","0.133333","0.866667","31.088889","0.000000","338.888889","0.000000","8.740741","328.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","22.571429",,,,,"0.000000","0.000000",,,"1906.625000","2458.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.290417",,"18.290417",,"18.290417",,,,,,,"5549.000000",,,,,"3659.250000",,"3.888889",,"379.377778",,,,"36.028571","0.955556","0.088889","7.022222","39.555556","0.000000","425.370370","0.000000","9.148148","414.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","669.625000",,,,,"0.000000","0.000000",,,"2161.250000","2645.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.166250",,"19.166250",,"19.166250",,,,,,,"5151.791667",,,,,"3834.000000",,"9.888889",,"458.266667",,,,"44.428571","1.666667","0.355556","9.600000","47.800000","0.000000","514.296296","0.000000","14.962963","496.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","851.875000",,,,,"0.000000","0.000000",,,"2580.000000","3283.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.640000",,"16.640000",,"16.640000",,,,,,,"5680.958333",,,,,"3329.291667",,"3.244444",,"311.733333",,,,"30.085714","0.844444","0.177778","6.111111","32.533333","0.000000","345.703704","0.000000","8.222222","336.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","624.000000",,,,,"0.000000","0.000000",,,"1951.000000","2508.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.127500",,"18.127500",,"18.127500",,,,,,,"5104.958333",,,,,"3626.458333",,"3.466667",,"452.044444",,,,"45.028571","0.844444","0.088889","2.577778","49.466667","0.000000","523.148148","0.000000","8.444444","513.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","896.625000",,,,,"0.000000","0.000000",,,"3703.875000","4271.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.001667",,"16.001667",,"16.001667",,,,,,,"5675.250000",,,,,"3201.166667",,"4.022222",,"409.888889",,,,"27.142857","1.044444","0.133333","8.688889","29.133333","0.000000","313.000000","0.000000","9.777778","301.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","954.875000",,,,,"0.000000","0.000000",,,"5902.750000","6507.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.890833",,"16.890833",,"16.890833",,,,,,,"5484.541667",,,,,"3379.166667",,"3.911111",,"376.466667",,,,"36.257143","0.777778","7.444444","2.688889","39.755556","0.000000","424.296296","0.000000","8.111111","414.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","796.000000",,,,,"0.000000","0.000000",,,"3694.250000","4214.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.994583",,"16.994583",,"16.994583",,,,,,,"5031.416667",,,,,"3399.791667",,"27.622222",,"409.288889",,,,"42.971429","2.800000","0.200000","1.911111","44.911111","0.000000","502.555556","0.000000","31.111111","467.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.875000","869.000000",,,,,"0.000000","0.000000",,,"3538.250000","4143.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.867083",,"16.867083",,"16.867083",,,,,,,"5025.000000",,,,,"3374.333333",,"6.311111",,"379.844444",,,,"33.371429","1.022222","0.244444","2.400000","36.488889","0.000000","396.333333","0.000000","10.259259","384.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","978.125000",,,,,"0.000000","0.000000",,,"6206.000000","7067.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.347500",,"16.347500",,"16.347500",,,,,,,"5591.750000",,,,,"3270.458333",,"11.444444",,"892.644444",,,,"38.171429","2.755556","0.466667","3.666667","38.866667","0.000000","428.518519","0.000000","24.814815","397.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.125000","1788.250000",,,,,"0.000000","0.000000",,,"6107.750000","7474.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.967083",,"26.967083",,"26.967083",,,,,,,"2652.458333",,,,,"5394.250000",,"6.622222",,"704.444444",,,,"29.885714","1.133333","0.488889","4.311111","32.133333","0.000000","346.111111","0.000000","11.111111","333.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.125000","1332.125000",,,,,"0.000000","0.000000",,,"3085.000000","4097.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.894583",,"23.894583",,"23.894583",,,,,,,"2993.291667",,,,,"4779.791667",,"5.511111",,"656.777778",,,,"2058.657143","0.955556","0.333333","2.622222","33.977778","0.000000","361.000000","0.000000","9.703704","349.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","1300.500000",,,,,"0.000000","0.000000",,,"3112.250000","4170.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.480833",,"22.480833",,"22.480833",,,,,,,"3264.125000",,,,,"4497.041667",,"3.111111",,"351.533333",,,,"2416.285714","0.844444","0.088889","1.044444","31.511111","0.000000","331.851852","0.000000","8.370370","322.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","600.125000",,,,,"0.000000","0.000000",,,"1822.250000","2352.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.159583",,"22.159583",,"22.159583",,,,,,,"3800.250000",,,,,"4432.708333",,"5.066667",,"412.044444",,,,"1905.314286","1.044444","0.577778","1.066667","28.177778","0.000000","303.962963","0.000000","10.444444","292.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","779.750000",,,,,"0.000000","0.000000",,,"2819.500000","2903.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.746667",,"25.746667",,"25.746667",,,,,,,"3184.875000",,,,,"5150.166667",,"3.377778",,"443.311111",,,,"1794.971429","0.933333","0.555556","1.222222","43.888889","0.000000","459.407407","0.000000","8.777778","449.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","876.500000",,,,,"0.000000","0.000000",,,"2633.625000","3233.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.638333",,"21.638333",,"21.638333",,,,,,,"3609.583333",,,,,"4328.708333",,"4.244444",,"466.200000",,,,"980.828571","1.044444","0.622222","0.933333","44.688889","0.000000","468.555556","0.000000","10.037037","457.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","840.750000",,,,,"0.000000","0.000000",,,"2431.250000","2968.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.048333",,"19.048333",,"19.048333",,,,,,,"4727.583333",,,,,"3810.583333",,"4.044444",,"438.711111",,,,"36.514286","0.866667","0.377778","1.200000","39.644444","0.000000","417.481481","0.000000","8.592593","407.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","884.125000",,,,,"0.000000","0.000000",,,"2901.625000","3521.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.721250",,"18.721250",,"18.721250",,,,,,,"4237.916667",,,,,"3745.208333",,"8.377778",,"410.244444",,,,"34.142857","1.555556","0.244444","1.000000","36.111111","0.000000","384.629630","0.000000","14.074074","367.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","897.625000",,,,,"0.000000","0.000000",,,"5899.375000","6469.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.900000",,"17.900000",,"17.900000",,,,,,,"5318.458333",,,,,"3580.958333",,"5.422222",,"285.444444",,,,"24.600000","0.866667","0.311111","3.133333","26.466667","0.000000","284.407407","0.000000","9.444444","273.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","676.500000",,,,,"0.000000","0.000000",,,"3943.375000","4411.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.029167",,"19.029167",,"19.029167",,,,,,,"4767.000000",,,,,"3806.958333",,"3.600000",,"359.444444",,,,"35.914286","0.933333","0.333333","7.622222","38.844444","0.000000","404.666667","0.000000","9.407407","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","716.500000",,,,,"0.000000","0.000000",,,"2229.000000","2659.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.484167",,"21.484167",,"21.484167",,,,,,,"4425.125000",,,,,"4297.625000",,"4.911111",,"400.600000",,,,"39.285714","1.044444","0.266667","1.288889","42.533333","0.000000","444.777778","0.000000","10.000000","433.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","704.875000",,,,,"0.000000","0.000000",,,"2210.000000","2776.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.976250",,"20.976250",,"20.976250",,,,,,,"4695.791667",,,,,"4196.041667",,"4.222222",,"407.800000",,,,"39.171429","0.955556","0.088889","1.422222","42.800000","0.000000","454.518519","0.000000","9.851852","443.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","803.000000",,,,,"0.000000","0.000000",,,"2422.375000","3400.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.095833",,"18.095833",,"18.095833",,,,,,,"5400.208333",,,,,"3620.250000",,"22.000000",,"265.066667",,,,"25.542857","1.822222","0.466667","2.066667","26.311111","0.000000","298.555556","0.000000","21.037037","273.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","514.375000",,,,,"0.000000","0.000000",,,"1679.125000","2027.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.520000",,"16.520000",,"16.520000",,,,,,,"4888.833333",,,,,"3305.041667",,"13.711111",,"256.822222",,,,"25.371429","1.533333","0.311111","0.800000","26.666667","0.000000","295.111111","0.000000","16.074074","277.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"58.125000","516.000000",,,,,"0.000000","0.000000",,,"1783.750000","2113.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.681250",,"23.681250",,"23.681250",,,,,,,"3077.416667",,,,,"4736.958333",,"6.288889",,"584.177778",,,,"44.371429","1.044444","0.355556","1.244444","48.466667","0.000000","510.296296","0.000000","10.555556","498.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.250000","1048.500000",,,,,"0.000000","0.000000",,,"2854.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.489583",,"17.489583",,"17.489583",,,,,,,"5439.500000",,,,,"3499.291667",,"10.533333",,"568.933333",,,,"26.514286","1.600000","0.311111","2.266667","27.822222","0.000000","305.407407","0.000000","14.518519","288.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1106.375000",,,,,"0.000000","0.000000",,,"2615.000000","3403.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.895417",,"20.895417",,"20.895417",,,,,,,"4113.708333",,,,,"4179.791667",,"5.377778",,"346.377778",,,,"2389.600000","0.888889","0.133333","3.466667","29.533333","0.000000","325.074074","0.000000","11.444444","312.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","610.375000",,,,,"0.000000","0.000000",,,"1899.625000","2370.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.029583",,"19.029583",,"19.029583",,,,,,,"4612.375000",,,,,"3807.041667",,"3.111111",,"339.755556",,,,"2454.742857","0.844444","0.311111","2.155556","33.933333","0.000000","368.740741","0.000000","8.185185","359.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","654.250000",,,,,"0.000000","0.000000",,,"2012.250000","2376.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.242917",,"21.242917",,"21.242917",,,,,,,"4067.625000",,,,,"4249.458333",,"6.177778",,"486.333333",,,,"1955.485714","1.088889","0.355556","1.755556","45.911111","0.000000","498.666667","0.000000","11.037037","486.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","1000.250000",,,,,"0.000000","0.000000",,,"4929.500000","5223.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.339583",,"20.339583",,"20.339583",,,,,,,"4154.458333",,,,,"4069.041667",,"46.688889",,"520.844444",,,,"1620.628571","2.933333","0.222222","1.088889","43.244444","0.000000","490.962963","0.000000","31.555556","457.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"133.625000","1203.125000",,,,,"0.000000","0.000000",,,"7230.250000","7737.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.332917",,"19.332917",,"19.332917",,,,,,,"4467.208333",,,,,"3867.666667",,"4.266667",,"391.688889",,,,"743.857143","0.955556","1.288889","1.133333","39.533333","0.000000","429.592593","0.000000","9.296296","418.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","745.375000",,,,,"0.000000","0.000000",,,"2823.875000","3396.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.508333",,"17.508333",,"17.508333",,,,,,,"4986.541667",,,,,"3502.750000",,"3.422222",,"337.711111",,,,"29.885714","0.755556","0.333333","0.733333","32.711111","0.000000","351.259259","0.000000","8.074074","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","681.750000",,,,,"0.000000","0.000000",,,"1968.500000","2470.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.907083",,"18.907083",,"18.907083",,,,,,,"4721.833333",,,,,"3782.250000",,"2.733333",,"380.422222",,,,"35.771429","0.933333","0.733333","0.933333","39.311111","0.000000","424.074074","0.000000","9.074074","413.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"350.125000","697.250000",,,,,"0.000000","0.000000",,,"6989.625000","2715.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.355417",,"19.355417",,"19.355417",,,,,,,"4653.541667",,,,,"3872.125000",,"13.777778",,"469.200000",,,,"43.400000","1.577778","1.377778","0.800000","46.800000","0.000000","504.259259","0.000000","14.629630","486.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"694.750000","9.285714",,,,,"0.000000","0.000000",,,"12139.875000","3149.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.069167",,"17.069167",,"17.069167",,,,,,,"5198.500000",,,,,"3414.666667",,"3.600000",,"362.666667",,,,"30.771429","0.955556","0.266667","4.000000","33.644444","0.000000","367.814815","0.000000","9.481481","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"347.500000","701.875000",,,,,"0.000000","0.000000",,,"6761.750000","2765.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.901667",,"18.901667",,"18.901667",,,,,,,"4823.291667",,,,,"3781.250000",,"3.466667",,"410.711111",,,,"34.285714","0.933333","0.955556","1.733333","37.577778","0.000000","405.518519","0.000000","8.888889","395.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","784.625000",,,,,"0.000000","0.000000",,,"2300.500000","2782.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.889583",,"16.889583",,"16.889583",,,,,,,"5516.916667",,,,,"3379.000000",,"5.577778",,"539.577778",,,,"36.485714","0.955556","0.622222","8.933333","40.066667","0.000000","433.740741","0.000000","9.555556","422.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","996.375000",,,,,"0.000000","0.000000",,,"2664.750000","3528.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.927083",,"16.927083",,"16.927083",,,,,,,"5165.500000",,,,,"3386.416667",,"3.911111",,"354.755556",,,,"31.942857","0.866667","0.155556","3.977778","35.266667","0.000000","389.777778","0.000000","8.740741","379.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","710.000000",,,,,"0.000000","0.000000",,,"2202.625000","2630.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.045833",,"16.045833",,"16.045833",,,,,,,"5484.125000",,,,,"3210.041667",,"23.311111",,"292.377778",,,,"28.571429","2.244444","0.377778","3.800000","29.422222","0.000000","337.592593","0.000000","24.333333","308.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","507.000000",,,,,"0.000000","0.000000",,,"1902.125000","2261.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.724167",,"22.724167",,"22.724167",,,,,,,"3898.916667",,,,,"4545.625000",,"4.555556",,"471.066667",,,,"40.714286","0.911111","1.644444","4.733333","44.377778","0.000000","469.333333","0.000000","9.555556","458.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","928.375000",,,,,"0.000000","0.000000",,,"2699.750000","3358.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.647500",,"25.647500",,"25.647500",,,,,,,"2344.416667",,,,,"5130.250000",,"3.755556",,"531.911111",,,,"39.600000","0.955556","1.666667","1.133333","43.577778","0.000000","470.000000","0.000000","9.555556","458.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.250000","975.750000",,,,,"0.000000","0.000000",,,"2741.000000","3469.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.855417",,"20.855417",,"20.855417",,,,,,,"4416.916667",,,,,"4172.166667",,"17.688889",,"457.200000",,,,"2304.742857","2.066667","0.244444","2.511111","15.711111","0.000000","182.333333","0.000000","21.222222","159.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"186.375000","1120.375000",,,,,"0.000000","0.000000",,,"7955.250000","7187.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.089167",,"22.089167",,"22.089167",,,,,,,"3299.625000",,,,,"4418.833333",,"9.200000",,"418.466667",,,,"2290.428571","1.577778","0.133333","1.000000","38.888889","0.000000","425.333333","0.000000","14.629630","407.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","910.125000",,,,,"0.000000","0.000000",,,"4879.000000","5460.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.548333",,"22.548333",,"22.548333",,,,,,,"3683.750000",,,,,"4510.500000",,"3.688889",,"489.133333",,,,"2029.371429","0.844444","0.266667","1.022222","35.955556","0.000000","391.851852","0.000000","8.666667","381.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.125000","914.750000",,,,,"0.000000","0.000000",,,"3228.750000","3400.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.208333",,"22.208333",,"22.208333",,,,,,,"3911.958333",,,,,"4442.541667",,"70.066667",,"366.866667",,,,"1816.542857","2.066667","0.866667","0.755556","37.066667","0.000000","415.555556","0.000000","21.592593","392.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","706.750000",,,,,"0.000000","0.000000",,,"2609.750000","3049.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.555417",,"19.555417",,"19.555417",,,,,,,"4517.833333",,,,,"3912.333333",,"107.000000",,"457.866667",,,,"714.342857","8.977778","0.711111","0.866667","44.866667","0.000000","568.407407","0.000000","98.000000","468.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.500000","857.375000",,,,,"0.000000","0.000000",,,"3131.625000","3656.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.178750",,"17.178750",,"17.178750",,,,,,,"5252.416667",,,,,"3436.833333",,"3.933333",,"414.755556",,,,"38.942857","0.955556","1.022222","1.177778","42.400000","0.000000","448.370370","0.000000","9.555556","437.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","778.125000",,,,,"0.000000","0.000000",,,"2386.375000","2984.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.921667",,"15.921667",,"15.921667",,,,,,,"5532.750000",,,,,"3185.000000",,"3.622222",,"335.955556",,,,"31.514286","0.933333","0.133333","1.088889","34.244444","0.000000","368.222222","0.000000","9.333333","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","642.125000",,,,,"0.000000","0.000000",,,"1990.250000","2511.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.666667",,"15.666667",,"15.666667",,,,,,,"5535.166667",,,,,"3134.166667",,"2.688889",,"279.644444",,,,"27.028571","1.022222","0.088889","0.555556","29.400000","0.000000","321.629630","0.000000","9.296296","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","545.125000",,,,,"0.000000","0.000000",,,"1776.375000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.507917",,"15.507917",,"15.507917",,,,,,,"5821.500000",,,,,"3102.666667",,"3.266667",,"251.311111",,,,"25.257143","0.755556","0.088889","3.600000","27.288889","0.000000","293.962963","0.000000","7.777778","284.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","486.125000",,,,,"0.000000","0.000000",,,"1646.125000","2064.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.332500",,"17.332500",,"17.332500",,,,,,,"5562.416667",,,,,"3467.375000",,"10.600000",,"320.911111",,,,"30.685714","1.555556","0.222222","1.000000","32.466667","0.000000","353.148148","0.000000","13.962963","336.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","585.375000",,,,,"0.000000","0.000000",,,"1896.250000","2292.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.153750",,"17.153750",,"17.153750",,,,,,,"5376.625000",,,,,"3431.750000",,"3.777778",,"371.244444",,,,"34.542857","0.977778","0.266667","1.600000","37.644444","0.000000","404.555556","0.000000","10.074074","392.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","702.125000",,,,,"0.000000","0.000000",,,"2215.500000","2736.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.369583",,"17.369583",,"17.369583",,,,,,,"5201.416667",,,,,"3474.875000",,"4.466667",,"465.800000",,,,"36.257143","1.044444","0.333333","0.888889","39.711111","0.000000","427.481481","0.000000","10.185185","415.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1073.000000",,,,,"0.000000","0.000000",,,"6210.000000","6879.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.876250",,"16.876250",,"16.876250",,,,,,,"5399.541667",,,,,"3376.208333",,"22.444444",,"363.066667",,,,"34.714286","1.911111","0.600000","0.533333","36.777778","0.000000","415.703704","0.000000","21.703704","390.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.250000","836.875000",,,,,"0.000000","0.000000",,,"5151.500000","5560.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.239167",,"17.239167",,"17.239167",,,,,,,"5334.416667",,,,,"3448.791667",,"3.222222",,"437.244444",,,,"39.114286","0.844444","0.466667","1.866667","43.244444","0.000000","464.222222","0.000000","8.407407","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","821.750000",,,,,"0.000000","0.000000",,,"2449.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.825417",,"21.825417",,"21.825417",,,,,,,"3945.958333",,,,,"4366.041667",,"4.244444",,"528.711111",,,,"40.028571","0.955556","0.133333","1.222222","44.133333","0.000000","473.888889","0.000000","9.111111","463.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","994.625000",,,,,"0.000000","0.000000",,,"2731.875000","3423.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.965417",,"18.965417",,"18.965417",,,,,,,"5115.083333",,,,,"3793.958333",,"4.444444",,"226.977778",,,,"2657.028571","0.911111","0.244444","3.000000","21.155556","0.000000","234.962963","0.000000","11.666667","221.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","435.000000",,,,,"0.000000","0.000000",,,"1420.125000","1769.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.496250",,"19.496250",,"19.496250",,,,,,,"4834.833333",,,,,"3900.208333",,"37.488889",,"584.266667",,,,"2533.228571","3.844444","0.844444","1.266667","24.288889","0.000000","292.814815","0.000000","42.629630","248.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1085.750000","1117.875000",,,,,"0.000000","0.000000",,,"16312.750000","4906.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.350833",,"23.350833",,"23.350833",,,,,,,"3144.541667",,,,,"4671.000000",,"10.911111",,"1665.377778",,,,"1814.400000","1.533333","0.733333","2.533333","53.355556","0.000000","558.703704","0.000000","14.888889","540.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1843.875000","3325.750000",,,,,"0.000000","0.000000",,,"33192.875000","13694.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.192083",,"22.192083",,"22.192083",,,,,,,"3385.708333",,,,,"4439.375000",,"13.177778",,"1502.222222",,,,"1583.057143","1.533333","1.044444","2.555556","44.333333","0.000000","469.444444","0.000000","16.333333","451.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1206.000000","3113.250000",,,,,"0.000000","0.000000",,,"24731.750000","13626.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.230833",,"21.230833",,"21.230833",,,,,,,"4000.000000",,,,,"4247.125000",,"13.422222",,"2097.800000",,,,"595.542857","1.466667","0.977778","1.711111","63.977778","0.000000","669.333333","0.000000","15.592593","651.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.625000","327.428571",,,,,"0.000000","0.000000",,,"18969.000000","15797.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.767500",,"16.767500",,"16.767500",,,,,,,"5232.125000",,,,,"3354.750000",,"49.422222",,"1525.511111",,,,"40.257143","3.333333","1.000000","1.866667","41.377778","0.000000","458.555556","0.000000","35.703704","421.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"816.125000","3155.250000",,,,,"0.000000","0.000000",,,"18560.250000","12837.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.559583",,"17.559583",,"17.559583",,,,,,,"4945.166667",,,,,"3513.000000",,"6.400000",,"398.177778",,,,"30.828571","1.288889","0.666667","1.044444","33.044444","0.000000","355.296296","0.000000","13.370370","340.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1012.125000",,,,,"0.000000","0.000000",,,"5606.500000","6623.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.611667",,"19.611667",,"19.611667",,,,,,,"4356.458333",,,,,"3923.291667",,"10.666667",,"454.755556",,,,"43.142857","1.400000","0.622222","0.933333","46.688889","0.000000","496.148148","0.000000","14.518519","480.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.750000","1103.250000",,,,,"0.000000","0.000000",,,"5888.750000","6988.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.563333",,"18.563333",,"18.563333",,,,,,,"4752.666667",,,,,"3713.791667",,"35.044444",,"433.244444",,,,"37.800000","2.111111","0.688889","1.200000","39.288889","0.000000","413.148148","0.000000","22.037037","389.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.250000","1059.500000",,,,,"0.000000","0.000000",,,"5820.000000","6828.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.468333",,"17.468333",,"17.468333",,,,,,,"5227.083333",,,,,"3494.583333",,"21.733333",,"272.200000",,,,"24.657143","2.200000","0.488889","1.066667","24.755556","0.000000","274.851852","0.000000","21.259259","250.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","760.375000",,,,,"0.000000","0.000000",,,"5123.000000","5947.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.432500",,"16.432500",,"16.432500",,,,,,,"5336.291667",,,,,"3287.291667",,"6.933333",,"297.555556",,,,"25.171429","1.133333","0.288889","0.977778","26.844444","0.000000","289.518519","0.000000","11.666667","276.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","844.875000",,,,,"0.000000","0.000000",,,"5391.000000","6423.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.214167",,"18.214167",,"18.214167",,,,,,,"4625.041667",,,,,"3643.708333",,"3.733333",,"418.977778",,,,"36.971429","0.911111","0.755556","1.622222","40.000000","0.000000","415.888889","0.000000","8.962963","405.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1069.625000",,,,,"0.000000","0.000000",,,"5982.625000","7132.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.092500",,"20.092500",,"20.092500",,,,,,,"4672.916667",,,,,"4019.333333",,"24.533333",,"373.000000",,,,"37.314286","2.244444","0.333333","1.155556","38.733333","0.000000","421.629630","0.000000","24.407407","393.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.625000","977.000000",,,,,"0.000000","0.000000",,,"5869.750000","6938.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.136667",,"19.136667",,"19.136667",,,,,,,"4772.791667",,,,,"3828.083333",,"9.088889",,"331.577778",,,,"30.314286","1.288889","1.000000","2.644444","32.244444","0.000000","343.111111","0.000000","13.296296","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","877.750000",,,,,"0.000000","0.000000",,,"5381.125000","6228.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.710417",,"26.710417",,"26.710417",,,,,,,"2685.250000",,,,,"5343.375000",,"6.066667",,"757.888889",,,,"31.114286","0.911111","0.311111","3.200000","33.266667","0.000000","345.518519","0.000000","9.888889","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","1682.000000",,,,,"0.000000","0.000000",,,"6559.375000","8033.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.454583",,"26.454583",,"26.454583",,,,,,,"2795.541667",,,,,"5292.000000",,"3.755556",,"696.866667",,,,"1970.914286","0.844444","0.555556","3.911111","41.444444","0.000000","421.222222","0.000000","8.666667","411.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1514.750000",,,,,"0.000000","0.000000",,,"6970.250000","7983.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.613750",,"28.613750",,"28.613750",,,,,,,"2077.041667",,,,,"5723.750000",,"7.933333",,"432.022222",,,,"2310.028571","1.311111","0.377778","3.733333","39.222222","0.000000","412.333333","0.000000","17.000000","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1010.250000",,,,,"0.000000","0.000000",,,"5913.750000","6604.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.148750",,"26.148750",,"26.148750",,,,,,,"2855.958333",,,,,"5230.625000",,"9.888889",,"1033.800000",,,,"1823.200000","1.511111","0.644444","3.400000","38.933333","0.000000","406.259259","0.000000","14.888889","388.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1360.625000","2202.250000",,,,,"0.000000","0.000000",,,"25491.625000","10754.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.542500",,"26.542500",,"26.542500",,,,,,,"2980.583333",,,,,"5309.708333",,"6.266667",,"1967.400000",,,,"1694.885714","1.177778","8.711111","9.844444","45.777778","0.000000","470.555556","0.000000","12.518519","452.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"913.875000","4017.500000",,,,,"0.000000","0.000000",,,"22199.250000","14736.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.247500",,"22.247500",,"22.247500",,,,,,,"3643.000000",,,,,"4450.500000",,"16.177778",,"1875.044444",,,,"1410.428571","1.622222","6.777778","33.177778","72.866667","0.000000","797.407407","0.000000","17.814815","772.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.750000","3848.625000",,,,,"0.000000","0.000000",,,"10782.000000","13969.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.577500",,"19.577500",,"19.577500",,,,,,,"4489.583333",,,,,"3916.541667",,"14.311111",,"818.177778",,,,"48.942857","1.533333","2.822222","11.666667","53.800000","0.000000","589.740741","0.000000","16.000000","571.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"116.125000","1843.875000",,,,,"0.000000","0.000000",,,"8022.375000","9154.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.922500",,"19.922500",,"19.922500",,,,,,,"4614.791667",,,,,"3985.625000",,"6.977778",,"239.977778",,,,"14.057143","1.200000","1.200000","8.422222","14.444444","0.000000","171.481481","0.000000","11.962963","156.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.750000","742.000000",,,,,"0.000000","0.000000",,,"4685.125000","5707.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.128333",,"20.128333",,"20.128333",,,,,,,"4614.708333",,,,,"4026.750000",,"3.866667",,"253.533333",,,,"7.914286","0.977778","1.933333","2.733333","7.644444","0.000000","92.962963","0.000000","9.888889","81.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","743.750000",,,,,"0.000000","0.000000",,,"4617.750000","5487.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.524167",,"20.524167",,"20.524167",,,,,,,"4101.541667",,,,,"4105.916667",,"4.644444",,"193.555556",,,,"8.657143","1.044444","0.644444","2.377778","8.355556","0.000000","100.740741","0.000000","10.814815","88.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","161.714286",,,,,"0.000000","0.000000",,,"2633.125000","3333.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.025833",,"20.025833",,"20.025833",,,,,,,"4754.666667",,,,,"4006.333333",,"6.200000",,"314.088889",,,,"22.857143","1.111111","0.488889","2.288889","23.955556","0.000000","256.481481","0.000000","11.481481","243.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","661.000000",,,,,"0.000000","0.000000",,,"2745.500000","3257.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.644583",,"24.644583",,"24.644583",,,,,,,"3385.083333",,,,,"4929.791667",,"9.000000",,"455.888889",,,,"32.742857","1.866667","1.711111","4.066667","33.533333","0.000000","353.333333","0.000000","16.888889","332.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1079.000000",,,,,"0.000000","0.000000",,,"5806.500000","6764.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.417500",,"30.417500",,"30.417500",,,,,,,"1968.125000",,,,,"6084.416667",,"20.977778",,"620.866667",,,,"39.228571","1.377778","0.755556","3.777778","42.177778","0.000000","446.481481","0.000000","13.592593","431.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1410.375000",,,,,"0.000000","0.000000",,,"6647.000000","7766.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.099583",,"31.099583",,"31.099583",,,,,,,"1622.750000",,,,,"6220.833333",,"22.844444",,"641.511111",,,,"21.457143","1.933333","0.466667","4.711111","21.844444","0.000000","258.333333","0.000000","21.962963","232.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.750000","1472.000000",,,,,"0.000000","0.000000",,,"7079.125000","8198.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.846667",,"33.846667",,"33.846667",,,,,,,"1231.583333",,,,,"6770.291667",,"6.911111",,"910.488889",,,,"55.028571","1.177778","0.977778","2.266667","60.666667","0.000000","644.222222","0.000000","11.629630","631.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.875000","1786.000000",,,,,"0.000000","0.000000",,,"5228.000000","6764.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.419167",,"31.419167",,"31.419167",,,,,,,"1479.583333",,,,,"6285.000000",,"3.311111",,"692.777778",,,,"48.771429","1.022222","0.622222","1.933333","53.666667","0.000000","571.740741","0.000000","10.037037","560.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1310.125000",,,,,"0.000000","0.000000",,,"3380.000000","4489.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.363750",,"22.363750",,"22.363750",,,,,,,"3868.875000",,,,,"4473.625000",,"7.711111",,"1251.933333",,,,"2186.285714","1.155556","0.555556","3.066667","50.711111","0.000000","551.333333","0.000000","11.740741","538.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","2418.000000",,,,,"0.000000","0.000000",,,"5303.000000","7458.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.183750",,"25.183750",,"25.183750",,,,,,,"3059.625000",,,,,"5037.708333",,"8.288889",,"543.155556",,,,"2521.771429","1.266667","0.666667","1.577778","46.088889","0.000000","505.666667","0.000000","12.370370","491.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1040.375000",,,,,"0.000000","0.000000",,,"2897.000000","3725.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.307917",,"26.307917",,"26.307917",,,,,,,"2410.375000",,,,,"5262.416667",,"8.777778",,"649.511111",,,,"1824.571429","1.577778","0.888889","4.066667","52.444444","0.000000","566.407407","0.000000","14.555556","549.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.625000","1231.750000",,,,,"0.000000","0.000000",,,"3575.000000","4529.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.582083",,"25.582083",,"25.582083",,,,,,,"2500.291667",,,,,"5117.583333",,"4.022222",,"706.711111",,,,"1493.371429","0.866667","0.333333","1.400000","50.177778","0.000000","552.111111","0.000000","8.962963","541.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1352.625000",,,,,"0.000000","0.000000",,,"4100.500000","4841.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.095833",,"24.095833",,"24.095833",,,,,,,"2980.208333",,,,,"4820.375000",,"2.844444",,"529.311111",,,,"1179.485714","0.888889","3.466667","1.600000","41.222222","0.000000","458.629630","0.000000","9.037037","448.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","1021.375000",,,,,"0.000000","0.000000",,,"2753.625000","3604.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.577500",,"24.577500",,"24.577500",,,,,,,"2553.458333",,,,,"4916.333333",,"4.266667",,"679.088889",,,,"53.571429","1.000000","0.311111","1.511111","59.755556","0.000000","646.814815","0.000000","9.629630","635.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1276.000000",,,,,"0.000000","0.000000",,,"3411.625000","4392.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.827083",,"23.827083",,"23.827083",,,,,,,"3250.500000",,,,,"4766.500000",,"3.711111",,"628.044444",,,,"50.114286","1.000000","0.733333","1.644444","55.955556","0.000000","609.222222","0.000000","9.703704","598.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"359.250000","1194.500000",,,,,"0.000000","0.000000",,,"8165.375000","4259.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.772500",,"21.772500",,"21.772500",,,,,,,"3418.916667",,,,,"4355.541667",,"4.977778",,"654.266667",,,,"50.228571","1.022222","0.200000","1.733333","55.688889","0.000000","597.222222","0.000000","9.777778","586.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"695.250000","1248.000000",,,,,"0.000000","0.000000",,,"12918.500000","4447.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.560417",,"19.560417",,"19.560417",,,,,,,"4301.541667",,,,,"3912.750000",,"8.288889",,"904.622222",,,,"53.485714","1.355556","0.488889","2.555556","59.177778","0.000000","645.592593","0.000000","13.888889","630.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"368.875000","1719.375000",,,,,"0.000000","0.000000",,,"8976.375000","5812.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.701667",,"20.701667",,"20.701667",,,,,,,"4155.500000",,,,,"4141.458333",,"3.355556",,"618.866667",,,,"37.000000","0.955556","0.600000","2.111111","41.355556","0.000000","460.555556","0.000000","9.037037","450.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1206.875000",,,,,"0.000000","0.000000",,,"3358.250000","4272.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.562917",,"25.562917",,"25.562917",,,,,,,"2528.791667",,,,,"5113.500000",,"11.066667",,"779.911111",,,,"56.657143","1.644444","0.266667","1.044444","62.333333","0.000000","682.370370","0.000000","16.000000","663.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.500000","1671.125000",,,,,"0.000000","0.000000",,,"7806.375000","8922.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.128750",,"23.128750",,"23.128750",,,,,,,"3025.750000",,,,,"4626.625000",,"3.866667",,"741.066667",,,,"58.942857","1.044444","0.622222","1.911111","65.577778","0.000000","704.148148","0.000000","9.777778","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1521.875000",,,,,"0.000000","0.000000",,,"5949.750000","7233.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.652917",,"22.652917",,"22.652917",,,,,,,"3202.041667",,,,,"4531.750000",,"25.377778",,"866.800000",,,,"69.342857","2.200000","0.488889","0.866667","76.133333","0.000000","836.851852","0.000000","24.555556","808.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1635.500000",,,,,"0.000000","0.000000",,,"4478.000000","5761.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.381250",,"31.381250",,"31.381250",,,,,,,"864.000000",,,,,"6277.458333",,"2.422222",,"693.111111",,,,"43.571429","0.844444","0.311111","2.000000","48.622222","0.000000","528.111111","0.000000","7.777778","519.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","1312.875000",,,,,"0.000000","0.000000",,,"3301.250000","4305.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.107917",,"22.107917",,"22.107917",,,,,,,"3755.541667",,,,,"4422.291667",,"5.711111",,"629.600000",,,,"49.114286","1.177778","0.355556","1.244444","54.066667","0.000000","581.296296","0.000000","11.518519","568.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","18.285714",,,,,"0.000000","0.000000",,,"3203.375000","4236.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.283333",,"30.283333",,"30.283333",,,,,,,"1823.416667",,,,,"6057.583333",,"2.444444",,"527.488889",,,,"1741.428571","0.844444","0.088889","1.622222","44.733333","0.000000","479.296296","0.000000","8.222222","469.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","994.875000",,,,,"0.000000","0.000000",,,"2765.875000","3521.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.199583",,"33.199583",,"33.199583",,,,,,,"646.166667",,,,,"6640.875000",,"8.555556",,"529.400000",,,,"1804.371429","1.044444","0.200000","1.088889","42.288889","0.000000","451.037037","0.000000","10.370370","439.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","986.875000",,,,,"0.000000","0.000000",,,"2669.625000","3409.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.924583",,"33.924583",,"33.924583",,,,,,,"729.041667",,,,,"6785.625000",,"2.911111",,"379.888889",,,,"1513.685714","0.933333","0.377778","1.200000","31.533333","0.000000","345.592593","0.000000","9.111111","335.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","726.000000",,,,,"0.000000","0.000000",,,"2076.875000","2626.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.816250",,"29.816250",,"29.816250",,,,,,,"1044.666667",,,,,"5964.166667",,"8.311111",,"673.066667",,,,"1393.685714","1.511111","0.200000","3.200000","48.888889","0.000000","529.555556","0.000000","13.925926","512.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","1257.500000",,,,,"0.000000","0.000000",,,"3963.000000","4588.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.416250",,"27.416250",,"27.416250",,,,,,,"2214.708333",,,,,"5484.083333",,"2.888889",,"507.088889",,,,"1647.171429","0.933333","0.088889","2.200000","45.111111","0.000000","482.962963","0.000000","8.592593","473.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","969.500000",,,,,"0.000000","0.000000",,,"2697.500000","3520.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.286250",,"22.286250",,"22.286250",,,,,,,"3742.500000",,,,,"4458.041667",,"3.000000",,"352.377778",,,,"1107.057143","1.022222","1.066667","2.577778","27.955556","0.000000","315.925926","0.000000","9.629630","304.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","667.000000",,,,,"0.000000","0.000000",,,"1935.500000","2416.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.783750",,"22.783750",,"22.783750",,,,,,,"3420.125000",,,,,"4557.583333",,"2.933333",,"566.088889",,,,"47.000000","1.022222","0.333333","1.111111","51.955556","0.000000","560.814815","0.000000","9.629630","549.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.875000","1085.875000",,,,,"0.000000","0.000000",,,"3340.625000","4170.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.514167",,"20.514167",,"20.514167",,,,,,,"4038.958333",,,,,"4103.625000",,"2.777778",,"615.511111",,,,"41.657143","0.933333","0.244444","2.333333","46.333333","0.000000","505.111111","0.000000","8.555556","495.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.875000","1183.125000",,,,,"0.000000","0.000000",,,"3507.375000","4086.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.709167",,"20.709167",,"20.709167",,,,,,,"4036.000000",,,,,"4142.750000",,"2.755556",,"495.666667",,,,"39.428571","0.844444","1.533333","1.911111","43.711111","0.000000","473.851852","0.000000","8.444444","464.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.750000","1088.375000",,,,,"0.000000","0.000000",,,"5306.375000","6071.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.121250",,"22.121250",,"22.121250",,,,,,,"3625.458333",,,,,"4425.041667",,"3.444444",,"457.955556",,,,"36.742857","0.977778","0.755556","2.622222","40.488889","0.000000","439.148148","0.000000","9.259259","428.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1060.250000",,,,,"0.000000","0.000000",,,"6181.750000","6834.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.841667",,"19.841667",,"19.841667",,,,,,,"4161.083333",,,,,"3969.250000",,"2.933333",,"406.800000",,,,"33.800000","0.933333","0.266667","1.311111","36.977778","0.000000","398.851852","0.000000","9.222222","388.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","776.750000",,,,,"0.000000","0.000000",,,"2275.875000","2937.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.635000",,"20.635000",,"20.635000",,,,,,,"3833.291667",,,,,"4128.208333",,"8.200000",,"617.644444",,,,"53.342857","1.466667","0.533333","2.244444","59.200000","0.000000","653.962963","0.000000","13.222222","638.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","1159.375000",,,,,"0.000000","0.000000",,,"3220.000000","4121.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.099583",,"22.099583",,"22.099583",,,,,,,"3646.958333",,,,,"4420.666667",,"24.688889",,"938.511111",,,,"68.200000","2.155556","0.444444","1.355556","75.333333","0.000000","837.888889","0.000000","23.777778","809.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.000000","1791.000000",,,,,"0.000000","0.000000",,,"4781.625000","6406.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.775833",,"23.775833",,"23.775833",,,,,,,"2577.041667",,,,,"4756.041667",,"8.133333",,"919.377778",,,,"54.714286","1.222222","1.400000","1.955556","60.933333","0.000000","665.222222","0.000000","12.555556","651.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1758.125000",,,,,"0.000000","0.000000",,,"4222.875000","5750.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.430417",,"27.430417",,"27.430417",,,,,,,"2251.708333",,,,,"5487.166667",,"20.644444",,"679.755556",,,,"44.257143","1.377778","1.822222","3.044444","49.222222","0.000000","553.555556","0.000000","15.037037","537.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.875000","1312.000000",,,,,"0.000000","0.000000",,,"3398.500000","4433.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.236667",,"23.236667",,"23.236667",,,,,,,"3140.750000",,,,,"4648.458333",,"13.777778",,"966.288889",,,,"2062.971429","1.600000","1.844444","3.644444","71.533333","0.000000","778.851852","0.000000","19.037037","758.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.750000","1819.375000",,,,,"0.000000","0.000000",,,"4505.000000","6075.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.897917",,"22.897917",,"22.897917",,,,,,,"3251.375000",,,,,"4580.416667",,"8.111111",,"617.911111",,,,"2478.342857","1.222222","0.600000","2.533333","51.177778","0.000000","562.407407","0.000000","12.851852","548.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1190.500000",,,,,"0.000000","0.000000",,,"3268.500000","4282.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.540000",,"20.540000",,"20.540000",,,,,,,"3960.583333",,,,,"4109.000000",,"3.844444",,"629.777778",,,,"1955.257143","0.800000","0.688889","3.333333","44.333333","0.000000","497.000000","0.000000","8.777778","486.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.125000","1223.375000",,,,,"0.000000","0.000000",,,"3866.750000","4379.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.366250",,"21.366250",,"21.366250",,,,,,,"4388.791667",,,,,"4274.291667",,"7.955556",,"587.577778",,,,"1843.771429","1.133333","0.911111","3.933333","44.600000","0.000000","503.777778","0.000000","11.777778","490.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.125000","1133.250000",,,,,"0.000000","0.000000",,,"3004.625000","3850.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.480000",,"21.480000",,"21.480000",,,,,,,"3391.333333",,,,,"4296.875000",,"3.266667",,"507.666667",,,,"879.400000","0.933333","1.755556","7.688889","47.400000","0.000000","533.518519","0.000000","9.296296","522.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","984.625000",,,,,"0.000000","0.000000",,,"2846.625000","3636.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.337917",,"22.337917",,"22.337917",,,,,,,"3325.125000",,,,,"4468.458333",,"911.911111",,"1579.977778",,,,"62.971429","19.622222","4.311111","5.577778","50.933333","0.000000","736.444444","0.000000","214.518519","519.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1742.125000","22.142857",,,,,"0.000000","0.000000",,,"10691.750000","11008.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.145417",,"21.145417",,"21.145417",,,,,,,"3489.166667",,,,,"4229.958333",,"99.066667",,"1169.822222",,,,"101.000000","22.533333","2.800000","3.044444","93.622222","0.000000","1266.851852","0.000000","249.814815","1015.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"236.750000","2480.625000",,,,,"0.000000","0.000000",,,"10582.250000","12976.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.977083",,"24.977083",,"24.977083",,,,,,,"2530.041667",,,,,"4996.458333",,"61.511111",,"997.266667",,,,"88.028571","14.111111","0.666667","3.000000","86.311111","0.000000","1077.629630","0.000000","156.296296","919.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"486.875000","2031.250000",,,,,"0.000000","0.000000",,,"12616.500000","10272.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.223750",,"23.223750",,"23.223750",,,,,,,"3329.250000",,,,,"4645.500000",,"8.266667",,"1975.133333",,,,"42.314286","1.155556","1.222222","7.111111","45.555556","0.000000","472.555556","0.000000","12.296296","458.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2601.750000","3779.250000",,,,,"0.000000","0.000000",,,"41947.875000","13184.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.477083",,"27.477083",,"27.477083",,,,,,,"2298.875000",,,,,"5496.250000",,"4.555556",,"2633.977778",,,,"58.371429","1.022222","4.044444","6.177778","63.466667","0.000000","646.962963","0.000000","10.000000","635.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1221.625000","4984.125000",,,,,"0.000000","0.000000",,,"25319.625000","14496.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.519583",,"26.519583",,"26.519583",,,,,,,"2772.916667",,,,,"5304.916667",,"8.222222",,"2293.466667",,,,"57.542857","1.355556","1.400000","5.155556","62.800000","0.000000","658.888889","0.000000","13.814815","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1718.125000","4357.875000",,,,,"0.000000","0.000000",,,"31134.375000","13854.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.034167",,"27.034167",,"27.034167",,,,,,,"2525.416667",,,,,"5407.625000",,"340.911111",,"1819.200000",,,,"59.142857","12.288889","1.311111","3.244444","53.844444","0.000000","686.037037","0.000000","136.074074","548.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.500000","3394.875000",,,,,"0.000000","0.000000",,,"14205.500000","10987.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.288333",,"25.288333",,"25.288333",,,,,,,"2882.833333",,,,,"5058.708333",,"73.222222",,"786.288889",,,,"49.971429","4.644444","0.488889","1.977778","51.044444","0.000000","590.037037","0.000000","50.740741","533.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","1546.750000",,,,,"0.000000","0.000000",,,"4060.500000","5173.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.862500",,"30.862500",,"30.862500",,,,,,,"1119.000000",,,,,"6173.333333",,"12.488889",,"910.422222",,,,"37.914286","2.466667","1.577778","3.022222","40.177778","0.000000","450.703704","0.000000","25.814815","423.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.000000","1730.500000",,,,,"0.000000","0.000000",,,"3889.000000","5331.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.054583",,"30.054583",,"30.054583",,,,,,,"1365.833333",,,,,"6011.708333",,"16.377778",,"904.244444",,,,"48.200000","2.955556","0.688889","3.200000","50.822222","0.000000","554.962963","0.000000","32.185185","521.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.375000","1700.250000",,,,,"0.000000","0.000000",,,"4050.625000","5338.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.501667",,"29.501667",,"29.501667",,,,,,,"1614.500000",,,,,"5901.416667",,"6.511111",,"426.422222",,,,"1887.628571","1.000000","0.733333","2.488889","30.622222","0.000000","333.703704","0.000000","10.518519","321.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","26.000000",,,,,"0.000000","0.000000",,,"2306.500000","3044.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.798750",,"34.798750",,"34.798750",,,,,,,"1268.666667",,,,,"6960.875000",,"9.733333",,"462.111111",,,,"2528.771429","1.400000","0.600000","1.844444","29.022222","0.000000","319.370370","0.000000","14.925926","303.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","872.750000",,,,,"0.000000","0.000000",,,"2287.500000","2917.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.674583",,"32.674583",,"32.674583",,,,,,,"886.250000",,,,,"6536.083333",,"9.622222",,"669.466667",,,,"1606.342857","1.377778","0.977778","2.444444","45.200000","0.000000","474.111111","0.000000","14.111111","458.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1269.750000",,,,,"0.000000","0.000000",,,"3955.750000","4441.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.110000",,"34.110000",,"34.110000",,,,,,,"630.333333",,,,,"6822.875000",,"3.111111",,"585.355556",,,,"1182.571429","0.844444","0.444444","3.044444","40.022222","0.000000","418.185185","0.000000","8.518519","407.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1172.000000",,,,,"0.000000","0.000000",,,"4308.375000","5161.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.767917",,"30.767917",,"30.767917",,,,,,,"872.875000",,,,,"6154.458333",,"3.644444",,"513.133333",,,,"1160.657143","0.955556","0.755556","2.644444","30.911111","0.000000","324.370370","0.000000","9.666667","313.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.875000","1141.375000",,,,,"0.000000","0.000000",,,"5756.625000","6475.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.483750",,"32.483750",,"32.483750",,,,,,,"497.583333",,,,,"6497.625000",,"9.266667",,"666.266667",,,,"825.085714","1.488889","1.666667","2.577778","42.288889","0.000000","443.000000","0.000000","14.074074","426.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1320.000000",,,,,"0.000000","0.000000",,,"4641.125000","5600.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.417500",,"31.417500",,"31.417500",,,,,,,"2240.541667",,,,,"6284.250000",,"17.577778",,"353.911111",,,,"13.285714","2.422222","0.600000","5.022222","12.088889","0.000000","152.259259","0.000000","25.962963","124.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.125000","690.875000",,,,,"0.000000","0.000000",,,"1791.750000","2369.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.835000",,"28.835000",,"28.835000",,,,,,,"2035.291667",,,,,"5768.041667",,"6.155556",,"302.155556",,,,"18.857143","0.977778","2.511111","1.577778","19.777778","0.000000","212.888889","0.000000","9.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","580.875000",,,,,"0.000000","0.000000",,,"1622.250000","2139.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.724167",,"33.724167",,"33.724167",,,,,,,"1191.250000",,,,,"6745.875000",,"6.155556",,"700.222222",,,,"37.028571","1.155556","0.688889","4.355556","39.511111","0.000000","409.185185","0.000000","12.259259","395.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1313.750000",,,,,"0.000000","0.000000",,,"3159.125000","4151.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.057500",,"32.057500",,"32.057500",,,,,,,"1108.583333",,,,,"6412.250000",,"5.888889",,"545.311111",,,,"33.685714","1.022222","0.311111","1.955556","36.111111","0.000000","374.259259","0.000000","9.814815","363.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1017.000000",,,,,"0.000000","0.000000",,,"2623.625000","3456.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.245417",,"31.245417",,"31.245417",,,,,,,"1439.041667",,,,,"6250.208333",,"4.266667",,"589.777778",,,,"39.057143","1.022222","2.511111","3.377778","42.133333","0.000000","437.222222","0.000000","10.777778","424.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1113.125000",,,,,"0.000000","0.000000",,,"2812.750000","3640.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.758750",,"29.758750",,"29.758750",,,,,,,"2148.500000",,,,,"5952.583333",,"16.222222",,"408.466667",,,,"25.914286","2.000000","1.333333","2.444444","26.711111","0.000000","294.629630","0.000000","21.000000","272.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.875000","761.375000",,,,,"0.000000","0.000000",,,"2076.000000","2635.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.070000",,"34.070000",,"34.070000",,,,,,,"768.208333",,,,,"6814.958333",,"27.422222",,"577.822222",,,,"41.057143","2.533333","0.622222","2.222222","42.222222","0.000000","456.407407","0.000000","26.629630","424.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.375000","1088.875000",,,,,"0.000000","0.000000",,,"2943.500000","3833.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.662917",,"34.662917",,"34.662917",,,,,,,"958.041667",,,,,"6933.291667",,"10.800000",,"580.333333",,,,"29.742857","1.422222","0.711111","1.933333","31.644444","0.000000","345.851852","0.000000","14.962963","328.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.125000","1088.125000",,,,,"0.000000","0.000000",,,"2698.750000","3447.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.625417",,"33.625417",,"33.625417",,,,,,,"418.875000",,,,,"6726.000000",,"10.355556",,"582.133333",,,,"29.228571","1.400000","0.777778","1.888889","31.266667","0.000000","340.888889","0.000000","14.037037","325.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","1097.125000",,,,,"0.000000","0.000000",,,"2659.625000","3453.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.192917",,"33.192917",,"33.192917",,,,,,,"472.000000",,,,,"6639.541667",,"5.266667",,"582.622222",,,,"1468.085714","0.977778","1.844444","1.911111","38.822222","0.000000","403.407407","0.000000","9.888889","391.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1100.750000",,,,,"0.000000","0.000000",,,"2841.125000","3732.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.800417",,"32.800417",,"32.800417",,,,,,,"491.083333",,,,,"6561.125000",,"8.933333",,"513.466667",,,,"1923.257143","1.244444","1.022222","3.533333","22.066667","0.000000","246.481481","0.000000","15.222222","229.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","994.125000",,,,,"0.000000","0.000000",,,"2639.500000","3461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.190417",,"29.190417",,"29.190417",,,,,,,"622.666667",,,,,"5839.000000",,"3.933333",,"552.111111",,,,"1284.800000","0.955556","1.466667","6.955556","15.422222","0.000000","170.518519","0.000000","9.777778","159.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.500000","1276.000000",,,,,"0.000000","0.000000",,,"6158.125000","7177.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.815000",,"31.815000",,"31.815000",,,,,,,"717.375000",,,,,"6364.083333",,"8.444444",,"614.000000",,,,"1324.971429","1.222222","0.577778","1.644444","27.688889","0.000000","304.629630","0.000000","12.814815","290.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.250000","1289.625000",,,,,"0.000000","0.000000",,,"5829.000000","6304.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.971667",,"32.971667",,"32.971667",,,,,,,"511.125000",,,,,"6594.916667",,"3.955556",,"572.488889",,,,"1196.600000","0.777778","1.622222","2.844444","36.488889","0.000000","388.629630","0.000000","8.592593","378.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1098.000000",,,,,"0.000000","0.000000",,,"2750.625000","3606.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.404583",,"31.404583",,"31.404583",,,,,,,"535.041667",,,,,"6281.791667",,"22.533333",,"729.488889",,,,"1016.600000","2.711111","0.600000","2.466667","37.600000","0.000000","418.444444","0.000000","27.592593","387.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.250000","1343.875000",,,,,"0.000000","0.000000",,,"3156.000000","4089.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.044583",,"32.044583",,"32.044583",,,,,,,"442.541667",,,,,"6410.125000",,"5.422222",,"669.044444",,,,"926.114286","1.111111","0.955556","2.888889","40.200000","0.000000","430.703704","0.000000","11.222222","417.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1264.750000",,,,,"0.000000","0.000000",,,"3095.000000","4031.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.820000",,"30.820000",,"30.820000",,,,,,,"1355.458333",,,,,"6164.833333",,"8.755556",,"493.400000",,,,"81.114286","1.355556","1.200000","2.133333","30.888889","0.000000","336.407407","0.000000","13.666667","321.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","946.375000",,,,,"0.000000","0.000000",,,"2457.250000","3165.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.031667",,"35.031667",,"35.031667",,,,,,,"1027.208333",,,,,"7007.000000",,"8.000000",,"642.822222",,,,"37.685714","1.133333","0.466667","1.777778","40.644444","0.000000","427.592593","0.000000","11.777778","414.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1216.375000",,,,,"0.000000","0.000000",,,"3062.750000","4018.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.005833",,"31.005833",,"31.005833",,,,,,,"678.958333",,,,,"6202.250000",,"4.577778",,"571.111111",,,,"28.028571","0.933333","1.111111","2.533333","30.466667","0.000000","331.074074","0.000000","9.555556","319.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.625000","1328.375000",,,,,"0.000000","0.000000",,,"6042.250000","7186.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.740000",,"32.740000",,"32.740000",,,,,,,"779.791667",,,,,"6549.000000",,"8.666667",,"554.266667",,,,"34.828571","1.355556","1.533333","1.266667","37.555556","0.000000","405.740741","0.000000","13.666667","390.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","10.500000",,,,,"0.000000","0.000000",,,"6098.250000","7130.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.219167",,"31.219167",,"31.219167",,,,,,,"1296.125000",,,,,"6244.666667",,"8.822222",,"479.933333",,,,"28.542857","1.000000","0.688889","2.133333","30.955556","0.000000","335.666667","0.000000","9.592593","324.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","936.500000",,,,,"0.000000","0.000000",,,"2687.750000","3473.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.560000",,"34.560000",,"34.560000",,,,,,,"1094.375000",,,,,"6913.041667",,"30.444444",,"635.133333",,,,"35.514286","2.577778","0.955556","2.600000","36.555556","0.000000","410.592593","0.000000","28.888889","377.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1207.750000",,,,,"0.000000","0.000000",,,"3148.375000","3969.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.308750",,"35.308750",,"35.308750",,,,,,,"286.541667",,,,,"7062.750000",,"9.711111",,"585.800000",,,,"26.828571","1.533333","0.688889","4.644444","28.311111","0.000000","314.888889","0.000000","14.000000","298.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","1077.375000",,,,,"0.000000","0.000000",,,"2533.625000","3336.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.273750",,"36.273750",,"36.273750",,,,,,,"468.208333",,,,,"7255.875000",,"7.644444",,"583.200000",,,,"29.257143","1.111111","3.088889","5.088889","31.911111","0.000000","353.518519","0.000000","11.740741","340.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","1124.250000",,,,,"0.000000","0.000000",,,"2907.500000","3695.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.025417",,"33.025417",,"33.025417",,,,,,,"503.625000",,,,,"6605.916667",,"46.888889",,"585.000000",,,,"1134.428571","41.022222","0.711111","9.844444","37.288889","0.000000","855.148148","0.000000","453.666667","398.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"169.375000","1496.714286",,,,,"0.000000","0.000000",,,"21587.750000","119410.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.943750",,"29.943750",,"29.943750",,,,,,,"938.333333",,,,,"5989.833333",,"39.422222",,"793.400000",,,,"1912.828571","60.311111","1.666667","9.177778","44.111111","0.000000","1139.444444","0.000000","667.037037","469.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"534.625000","16406.750000",,,,,"0.000000","0.000000",,,"41495.875000","208729.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.342917",,"32.342917",,"32.342917",,,,,,,"1141.291667",,,,,"6469.666667",,"35.088889",,"1849.866667",,,,"1755.685714","57.977778","0.800000","11.511111","37.200000","0.000000","1018.814815","0.000000","643.592593","373.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"796.000000","4216.571429",,,,,"0.000000","0.000000",,,"51769.375000","217458.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.830000",,"27.830000",,"27.830000",,,,,,,"2595.166667",,,,,"5566.875000",,"22.000000",,"2006.288889",,,,"1664.285714","28.355556","0.711111","9.888889","28.666667","0.000000","590.814815","0.000000","312.666667","274.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"789.625000","9657.250000",,,,,"0.000000","0.000000",,,"34359.000000","92411.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.271250",,"27.271250",,"27.271250",,,,,,,"3392.541667",,,,,"5455.208333",,"3.133333",,"2074.133333",,,,"1521.685714","0.888889","1.133333","25.577778","15.844444","0.000000","139.333333","0.000000","8.962963","128.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.625000","4060.750000",,,,,"0.000000","0.000000",,,"16335.500000","11084.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.397083",,"27.397083",,"27.397083",,,,,,,"3225.625000",,,,,"5480.208333",,"3.422222",,"2088.333333",,,,"1331.371429","0.866667","1.688889","19.622222","21.933333","0.000000","206.333333","0.000000","8.888889","196.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"919.750000","4015.375000",,,,,"0.000000","0.000000",,,"19097.750000","10986.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.691667",,"24.691667",,"24.691667",,,,,,,"4195.958333",,,,,"4939.250000",,"3.222222",,"2475.555556",,,,"37.114286","0.844444","10.177778","12.422222","39.466667","0.000000","392.148148","0.000000","8.407407","382.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.857143","24.000000",,,,,"0.000000","0.000000",,,"27660.500000","13296.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.572917",,"25.572917",,"25.572917",,,,,,,"4134.333333",,,,,"5115.500000",,"2.977778",,"1577.377778",,,,"23.114286","0.911111","0.577778","4.688889","23.911111","0.000000","238.851852","0.000000","8.888889","228.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1682.500000","3031.000000",,,,,"0.000000","0.000000",,,"27958.875000","9299.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.127917",,"21.127917",,"21.127917",,,,,,,"4327.416667",,,,,"4226.583333",,"3.733333",,"1874.422222",,,,"31.685714","0.955556","0.444444","3.377778","33.755556","0.000000","346.851852","0.000000","9.259259","336.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"703.625000","3589.500000",,,,,"0.000000","0.000000",,,"15764.000000","10077.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.364167",,"20.364167",,"20.364167",,,,,,,"4632.125000",,,,,"4073.708333",,"2.666667",,"501.533333",,,,"20.428571","0.888889","0.844444","2.911111","21.755556","0.000000","236.370370","0.000000","8.518519","226.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","951.125000",,,,,"0.000000","0.000000",,,"2175.500000","2894.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.416250",,"23.416250",,"23.416250",,,,,,,"3664.958333",,,,,"4684.041667",,"9.311111",,"337.177778",,,,"18.142857","1.600000","0.466667","1.600000","18.133333","0.000000","203.333333","0.000000","14.888889","185.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","633.875000",,,,,"0.000000","0.000000",,,"1813.000000","2229.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.372917",,"24.372917",,"24.372917",,,,,,,"3211.208333",,,,,"4875.625000",,"3.755556",,"486.555556",,,,"29.457143","0.933333","0.422222","2.311111","31.844444","0.000000","338.666667","0.000000","8.851852","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","897.125000",,,,,"0.000000","0.000000",,,"2431.250000","2974.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.609583",,"22.609583",,"22.609583",,,,,,,"3603.500000",,,,,"4523.041667",,"29.288889",,"974.377778",,,,"29.857143","2.355556","1.066667","3.644444","30.311111","0.000000","335.037037","0.000000","26.222222","305.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.000000","1865.750000",,,,,"0.000000","0.000000",,,"4163.875000","5610.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.408750",,"29.408750",,"29.408750",,,,,,,"1839.291667",,,,,"5882.750000",,"33.066667",,"651.866667",,,,"45.142857","1.488889","2.333333","1.800000","49.400000","0.000000","539.518519","0.000000","15.703704","522.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"87.000000","1340.250000",,,,,"0.000000","0.000000",,,"5396.250000","6344.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.597500",,"31.597500",,"31.597500",,,,,,,"975.541667",,,,,"6320.541667",,"108.933333",,"1912.866667",,,,"54.114286","4.422222","3.488889","3.866667","56.355556","0.000000","636.370370","0.000000","47.851852","586.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"248.875000","3817.000000",,,,,"0.000000","0.000000",,,"11269.625000","13672.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.703333",,"36.703333",,"36.703333",,,,,,,"771.583333",,,,,"7341.625000",,"5.644444",,"898.755556",,,,"2214.857143","1.266667","1.177778","2.466667","51.488889","0.000000","556.148148","0.000000","12.444444","542.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.500000","1766.125000",,,,,"0.000000","0.000000",,,"4972.375000","6286.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.016250",,"36.016250",,"36.016250",,,,,,,"467.416667",,,,,"7204.291667",,"7.466667",,"738.288889",,,,"1993.428571","1.400000","1.822222","4.266667","48.955556","0.000000","539.777778","0.000000","16.000000","522.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1386.375000",,,,,"0.000000","0.000000",,,"3427.875000","4618.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.599583",,"35.599583",,"35.599583",,,,,,,"437.125000",,,,,"7120.875000",,"3.755556",,"773.266667",,,,"1612.000000","0.977778","0.422222","1.688889","46.933333","0.000000","508.111111","0.000000","9.444444","497.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.750000","1490.125000",,,,,"0.000000","0.000000",,,"4225.250000","5007.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.667917",,"34.667917",,"34.667917",,,,,,,"423.250000",,,,,"6934.416667",,"3.200000",,"629.533333",,,,"1201.200000","0.933333","0.288889","1.488889","44.844444","0.000000","490.074074","0.000000","8.703704","479.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1201.625000",,,,,"0.000000","0.000000",,,"3088.125000","4113.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.700000",,"35.700000",,"35.700000",,,,,,,"617.666667",,,,,"7141.041667",,"9.266667",,"781.288889",,,,"1195.428571","1.577778","0.466667","1.977778","57.955556","0.000000","631.851852","0.000000","14.740741","614.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1451.750000",,,,,"0.000000","0.000000",,,"3704.875000","4850.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.749167",,"33.749167",,"33.749167",,,,,,,"1212.541667",,,,,"6750.666667",,"10.733333",,"1030.800000",,,,"1051.200000","1.644444","0.644444","3.777778","59.444444","0.000000","656.592593","0.000000","16.629630","638.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","1953.500000",,,,,"0.000000","0.000000",,,"4607.625000","6157.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.363750",,"30.363750",,"30.363750",,,,,,,"1798.083333",,,,,"6073.791667",,"153.066667",,"708.622222",,,,"50.714286","4.288889","0.400000","2.311111","53.555556","0.000000","623.814815","0.000000","46.481481","575.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"288.000000","15.571429",,,,,"0.000000","0.000000",,,"4208.500000","4986.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.891667",,"31.891667",,"31.891667",,,,,,,"2290.625000",,,,,"6379.208333",,"259.244444",,"1167.977778",,,,"67.885714","7.533333","0.311111","2.355556","69.822222","0.000000","827.222222","0.000000","82.296296","743.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"535.375000","2211.375000",,,,,"0.000000","0.000000",,,"6375.500000","7729.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.634583",,"29.634583",,"29.634583",,,,,,,"2263.416667",,,,,"5927.708333",,"9.622222",,"1564.866667",,,,"54.000000","1.422222","0.444444","4.933333","59.577778","0.000000","645.666667","0.000000","15.259259","629.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.375000","2815.375000",,,,,"0.000000","0.000000",,,"5985.500000","8082.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.924583",,"27.924583",,"27.924583",,,,,,,"1249.875000",,,,,"5585.916667",,"4.622222",,"652.488889",,,,"43.942857","0.911111","0.444444","1.600000","48.977778","0.000000","538.555556","0.000000","9.777778","527.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.750000","1246.000000",,,,,"0.000000","0.000000",,,"3252.750000","4279.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.880000",,"30.880000",,"30.880000",,,,,,,"1665.875000",,,,,"6176.958333",,"3.755556",,"737.533333",,,,"48.142857","1.044444","0.688889","2.088889","54.000000","0.000000","599.185185","0.000000","10.111111","587.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1417.375000",,,,,"0.000000","0.000000",,,"3551.250000","4709.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.144167",,"31.144167",,"31.144167",,,,,,,"1336.041667",,,,,"6229.875000",,"5.266667",,"799.000000",,,,"56.657143","1.288889","0.444444","1.488889","63.177778","0.000000","692.740741","0.000000","13.629630","677.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1606.500000",,,,,"0.000000","0.000000",,,"5676.750000","6903.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.730000",,"28.730000",,"28.730000",,,,,,,"2083.208333",,,,,"5747.000000",,"27.622222",,"738.333333",,,,"52.914286","2.622222","0.577778","1.755556","57.311111","0.000000","649.666667","0.000000","27.148148","617.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.500000","1608.000000",,,,,"0.000000","0.000000",,,"7864.000000","9061.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.800000",,"33.800000",,"33.800000",,,,,,,"959.208333",,,,,"6761.000000",,"3.844444",,"1029.200000",,,,"49.542857","0.866667","0.466667","2.422222","54.666667","0.000000","580.111111","0.000000","8.962963","569.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","1986.250000",,,,,"0.000000","0.000000",,,"4975.125000","6502.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.007500",,"36.007500",,"36.007500",,,,,,,"991.666667",,,,,"7202.291667",,"5.000000",,"960.444444",,,,"37.142857","1.022222","0.600000","3.622222","40.666667","0.000000","440.111111","0.000000","10.666667","428.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1816.875000",,,,,"0.000000","0.000000",,,"3914.250000","5339.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.603333",,"31.603333",,"31.603333",,,,,,,"1405.750000",,,,,"6321.875000",,"3.866667",,"649.955556",,,,"1535.485714","0.955556","0.600000","3.022222","35.444444","0.000000","392.666667","0.000000","9.259259","382.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1239.875000",,,,,"0.000000","0.000000",,,"3018.375000","3938.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.679167",,"35.679167",,"35.679167",,,,,,,"346.125000",,,,,"7136.666667",,"88.022222",,"784.888889",,,,"1911.114286","2.533333","1.866667","4.155556","54.155556","0.000000","596.518519","0.000000","26.592593","568.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"178.125000","1480.500000",,,,,"0.000000","0.000000",,,"4033.500000","5036.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.220000",,"36.220000",,"36.220000",,,,,,,"1105.541667",,,,,"7244.791667",,"627.555556",,"914.400000",,,,"1882.714286","15.622222","1.777778","2.822222","52.311111","0.000000","736.407407","0.000000","171.074074","564.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1247.125000","1749.000000",,,,,"0.000000","0.000000",,,"7899.000000","7413.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.024583",,"35.024583",,"35.024583",,,,,,,"696.375000",,,,,"7005.916667",,"259.222222",,"1560.311111",,,,"1443.457143","6.844444","0.622222","4.311111","71.244444","0.000000","828.555556","0.000000","74.518519","752.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"533.500000","2967.625000",,,,,"0.000000","0.000000",,,"7694.750000","9411.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.274583",,"35.274583",,"35.274583",,,,,,,"885.208333",,,,,"7055.958333",,"153.511111",,"1012.444444",,,,"1364.200000","4.400000","0.577778","3.133333","61.022222","0.000000","689.666667","0.000000","47.037037","641.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.250000","1920.375000",,,,,"0.000000","0.000000",,,"5219.125000","6458.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.555000",,"33.555000",,"33.555000",,,,,,,"1087.666667",,,,,"6712.083333",,"6.622222",,"1507.111111",,,,"1179.942857","1.444444","0.333333","4.155556","66.333333","0.000000","703.444444","0.000000","15.148148","687.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","13.000000",,,,,"0.000000","0.000000",,,"6080.750000","8271.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.135417",,"30.135417",,"30.135417",,,,,,,"1023.625000",,,,,"6028.041667",,"35.177778",,"1164.044444",,,,"54.428571","3.533333","0.600000","4.222222","57.888889","0.000000","648.444444","0.000000","38.296296","608.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.750000","2201.250000",,,,,"0.000000","0.000000",,,"5785.875000","7110.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.964167",,"34.964167",,"34.964167",,,,,,,"1404.250000",,,,,"6993.875000",,"19.911111",,"1187.444444",,,,"55.571429","1.955556","0.666667","3.755556","60.911111","0.000000","661.333333","0.000000","20.888889","639.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","2260.000000",,,,,"0.000000","0.000000",,,"5160.000000","6909.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.886667",,"30.886667",,"30.886667",,,,,,,"1519.750000",,,,,"6178.083333",,"21.622222",,"1854.577778",,,,"64.714286","1.977778","1.422222","3.777778","70.866667","0.000000","761.518519","0.000000","20.888889","739.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.500000","3496.875000",,,,,"0.000000","0.000000",,,"7184.000000","9790.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.833333",,"31.833333",,"31.833333",,,,,,,"1585.916667",,,,,"6367.833333",,"12.866667",,"1622.800000",,,,"53.257143","1.577778","0.822222","3.044444","58.644444","0.000000","635.370370","0.000000","16.074074","617.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.625000","3091.000000",,,,,"0.000000","0.000000",,,"6370.000000","8596.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.854167",,"32.854167",,"32.854167",,,,,,,"1132.125000",,,,,"6571.458333",,"584.577778",,"1616.622222",,,,"69.171429","13.111111","0.644444","4.177778","64.355556","0.000000","804.666667","0.000000","141.592593","660.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.000000","3047.625000",,,,,"0.000000","0.000000",,,"10069.625000","11215.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.522917",,"31.522917",,"31.522917",,,,,,,"1468.916667",,,,,"6305.625000",,"105.800000",,"2088.644444",,,,"58.657143","3.733333","2.155556","4.200000","62.200000","0.000000","687.666667","0.000000","40.592593","645.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.250000","4248.750000",,,,,"0.000000","0.000000",,,"12468.375000","15294.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.516667",,"31.516667",,"31.516667",,,,,,,"1139.000000",,,,,"6304.375000",,"44.511111",,"1635.355556",,,,"63.914286","3.400000","0.977778","3.111111","67.933333","0.000000","741.888889","0.000000","37.888889","700.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.625000","3152.375000",,,,,"0.000000","0.000000",,,"7792.250000","10154.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.352500",,"34.352500",,"34.352500",,,,,,,"948.791667",,,,,"6871.375000",,"123.066667",,"968.577778",,,,"41.771429","4.000000","1.066667","3.222222","43.044444","0.000000","494.777778","0.000000","43.333333","450.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"265.500000","1837.750000",,,,,"0.000000","0.000000",,,"4645.250000","5821.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.675833",,"29.675833",,"29.675833",,,,,,,"1876.125000",,,,,"5936.291667",,"524.466667",,"1955.977778",,,,"75.571429","10.444444","1.177778","8.644444","74.466667","0.000000","882.925926","0.000000","114.592593","767.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1019.125000","12.428571",,,,,"0.000000","0.000000",,,"10030.500000","11806.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.172083",,"31.172083",,"31.172083",,,,,,,"1666.333333",,,,,"6235.291667",,"735.333333",,"1117.066667",,,,"1968.914286","17.222222","0.888889","3.644444","53.555556","0.000000","759.481481","0.000000","188.629630","569.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1401.875000","2380.875000",,,,,"0.000000","0.000000",,,"10245.500000","10741.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.352917",,"28.352917",,"28.352917",,,,,,,"2065.125000",,,,,"5671.666667",,"954.444444",,"1317.800000",,,,"2448.571429","24.266667","0.466667","2.622222","59.555556","0.000000","903.296296","0.000000","266.777778","635.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1834.375000","2745.875000",,,,,"0.000000","0.000000",,,"13139.625000","13652.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.853750",,"31.853750",,"31.853750",,,,,,,"1553.083333",,,,,"6371.541667",,"837.422222",,"1468.377778",,,,"1856.342857","18.155556","1.155556","4.733333","61.866667","0.000000","853.703704","0.000000","201.703704","650.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1643.750000","3046.000000",,,,,"0.000000","0.000000",,,"13156.625000","13992.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.857083",,"32.857083",,"32.857083",,,,,,,"1128.458333",,,,,"6572.333333",,"1369.844444",,"1407.422222",,,,"1433.857143","31.266667","7.355556","3.955556","68.711111","0.000000","1054.740741","0.000000","343.518519","709.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2677.000000","2904.875000",,,,,"0.000000","0.000000",,,"16369.250000","15606.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.992917",,"34.992917",,"34.992917",,,,,,,"1188.875000",,,,,"6999.500000",,"614.488889",,"1761.888889",,,,"1348.171429","17.733333","1.133333","4.577778","58.000000","0.000000","800.333333","0.000000","195.148148","603.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1230.375000","3622.250000",,,,,"0.000000","0.000000",,,"13131.875000","15031.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.407083",,"30.407083",,"30.407083",,,,,,,"1482.875000",,,,,"6082.250000",,"376.422222",,"1158.777778",,,,"357.714286","8.755556","0.822222","4.888889","63.777778","0.000000","752.370370","0.000000","94.925926","655.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.857143","2409.375000",,,,,"0.000000","0.000000",,,"9898.500000","11360.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.220000",,"31.220000",,"31.220000",,,,,,,"1798.541667",,,,,"6244.833333",,"16.088889",,"1239.755556",,,,"52.114286","2.244444","1.066667","5.844444","56.800000","0.000000","626.370370","0.000000","23.666667","601.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","2520.375000",,,,,"0.000000","0.000000",,,"8286.625000","10444.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.444583",,"30.444583",,"30.444583",,,,,,,"1555.375000",,,,,"6090.041667",,"622.377778",,"1201.488889",,,,"74.542857","14.488889","0.511111","2.644444","69.422222","0.000000","875.074074","0.000000","157.851852","715.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1201.000000","2545.125000",,,,,"0.000000","0.000000",,,"11376.875000","12334.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.931667",,"30.931667",,"30.931667",,,,,,,"1552.166667",,,,,"6187.208333",,"274.266667",,"1325.177778",,,,"57.200000","8.644444","0.266667","3.844444","55.288889","0.000000","665.407407","0.000000","93.629630","569.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.500000","2799.125000",,,,,"0.000000","0.000000",,,"9916.375000","11715.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.120417",,"30.120417",,"30.120417",,,,,,,"1712.250000",,,,,"6025.125000",,"60.644444",,"746.111111",,,,"53.314286","2.177778","0.822222","1.600000","58.200000","0.000000","640.259259","0.000000","23.296296","615.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.875000","1652.125000",,,,,"0.000000","0.000000",,,"7027.375000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.821667",,"25.821667",,"25.821667",,,,,,,"2845.666667",,,,,"5165.083333",,"904.177778",,"960.977778",,,,"76.828571","17.733333","1.355556","2.111111","69.666667","0.000000","930.333333","0.000000","194.259259","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1792.125000","293.857143",,,,,"0.000000","0.000000",,,"12381.000000","12246.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.296250",,"26.296250",,"26.296250",,,,,,,"2050.083333",,,,,"5260.166667",,"383.355556",,"1398.911111",,,,"74.457143","13.622222","1.022222","2.377778","71.088889","0.000000","902.925926","0.000000","149.666667","751.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"769.875000","2882.625000",,,,,"0.000000","0.000000",,,"10859.375000","12460.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.159167",,"28.159167",,"28.159167",,,,,,,"2489.583333",,,,,"5632.791667",,"875.577778",,"2303.733333",,,,"105.000000","33.622222","0.422222","3.177778","85.022222","0.000000","1252.111111","0.000000","372.111111","876.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1664.375000","4595.375000",,,,,"0.000000","0.000000",,,"16504.750000","18804.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.620000",,"28.620000",,"28.620000",,,,,,,"1938.916667",,,,,"5724.875000",,"629.133333",,"1436.488889",,,,"74.657143","22.622222","0.666667","3.222222","62.022222","0.000000","897.185185","0.000000","250.148148","645.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1283.000000","3008.625000",,,,,"0.000000","0.000000",,,"12472.125000","13888.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.895000",,"29.895000",,"29.895000",,,,,,,"1525.625000",,,,,"5979.958333",,"28.755556",,"782.911111",,,,"53.942857","2.977778","0.222222","1.444444","58.066667","0.000000","650.037037","0.000000","32.185185","616.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","1718.625000",,,,,"0.000000","0.000000",,,"7075.750000","8657.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.756250",,"28.756250",,"28.756250",,,,,,,"1323.833333",,,,,"5752.500000",,"72.155556",,"713.422222",,,,"1721.371429","1.644444","0.288889","1.022222","59.222222","0.000000","647.000000","0.000000","17.222222","628.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","1580.500000",,,,,"0.000000","0.000000",,,"6754.750000","8203.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.757500",,"26.757500",,"26.757500",,,,,,,"2210.708333",,,,,"5352.250000",,"56.266667",,"1120.977778",,,,"2291.028571","1.888889","0.400000","2.400000","55.711111","0.000000","623.888889","0.000000","20.111111","602.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"246.625000","2362.125000",,,,,"0.000000","0.000000",,,"8426.375000","10123.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.025833",,"29.025833",,"29.025833",,,,,,,"1341.833333",,,,,"5806.208333",,"6.400000",,"729.288889",,,,"1639.228571","1.177778","0.733333","1.733333","60.733333","0.000000","656.518519","0.000000","11.481481","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.625000","1617.375000",,,,,"0.000000","0.000000",,,"7303.125000","8401.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.267917",,"29.267917",,"29.267917",,,,,,,"1709.500000",,,,,"5854.416667",,"70.600000",,"865.711111",,,,"1516.800000","2.466667","0.577778","2.200000","64.422222","0.000000","711.629630","0.000000","25.555556","684.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"164.625000","1868.875000",,,,,"0.000000","0.000000",,,"7501.375000","9091.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.148333",,"28.148333",,"28.148333",,,,,,,"1930.750000",,,,,"5630.625000",,"117.666667",,"789.600000",,,,"1491.000000","9.222222","1.044444","3.333333","66.111111","0.000000","800.592593","0.000000","100.814815","698.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.750000","1750.875000",,,,,"0.000000","0.000000",,,"7688.625000","9246.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.875417",,"25.875417",,"25.875417",,,,,,,"2405.125000",,,,,"5176.041667",,"3.977778",,"780.355556",,,,"670.200000","0.955556","0.911111","1.755556","64.333333","0.000000","689.444444","0.000000","9.666667","678.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1687.250000",,,,,"0.000000","0.000000",,,"6771.250000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.283333",,"26.283333",,"26.283333",,,,,,,"2668.833333",,,,,"5257.708333",,"9.933333",,"797.644444",,,,"60.171429","1.600000","0.933333","1.400000","66.088889","0.000000","716.000000","0.000000","14.925926","698.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","1682.875000",,,,,"0.000000","0.000000",,,"7456.125000","8730.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.337917",,"25.337917",,"25.337917",,,,,,,"2538.083333",,,,,"5068.500000",,"4.600000",,"789.133333",,,,"59.085714","0.688889","0.466667","1.177778","65.800000","0.000000","695.666667","0.000000","7.703704","686.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1663.750000",,,,,"0.000000","0.000000",,,"6800.500000","8101.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.430417",,"25.430417",,"25.430417",,,,,,,"3079.166667",,,,,"5087.250000",,"3.200000",,"599.977778",,,,"42.714286","0.933333","0.755556","1.622222","47.911111","0.000000","529.740741","0.000000","9.222222","519.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","1112.875000",,,,,"0.000000","0.000000",,,"2870.750000","3700.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.291250",,"24.291250",,"24.291250",,,,,,,"2798.416667",,,,,"4859.125000",,"6.155556",,"850.755556",,,,"66.371429","0.911111","0.422222","1.644444","74.088889","0.000000","791.111111","0.000000","9.703704","780.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","15.428571",,,,,"0.000000","0.000000",,,"4078.500000","5420.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.172500",,"27.172500",,"27.172500",,,,,,,"2495.000000",,,,,"5435.375000",,"4.200000",,"567.177778",,,,"36.971429","0.911111","0.400000","1.444444","41.111111","0.000000","457.666667","0.000000","9.666667","446.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","1092.500000",,,,,"0.000000","0.000000",,,"2884.125000","3807.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.502917",,"29.502917",,"29.502917",,,,,,,"2226.375000",,,,,"5901.583333",,"7.911111",,"821.911111",,,,"61.228571","1.200000","0.422222","1.333333","68.066667","0.000000","729.666667","0.000000","12.037037","716.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1553.250000",,,,,"0.000000","0.000000",,,"4097.875000","5404.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.967500",,"26.967500",,"26.967500",,,,,,,"2845.916667",,,,,"5394.500000",,"22.688889",,"687.955556",,,,"53.514286","2.000000","0.111111","1.111111","59.022222","0.000000","672.370370","0.000000","22.740741","645.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1315.000000",,,,,"0.000000","0.000000",,,"3882.125000","4865.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.450417",,"29.450417",,"29.450417",,,,,,,"1569.583333",,,,,"5890.833333",,"11.777778",,"1370.555556",,,,"68.057143","1.022222","0.511111","3.044444","75.711111","0.000000","803.296296","0.000000","10.185185","791.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.250000","2592.625000",,,,,"0.000000","0.000000",,,"6762.375000","8755.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.865417",,"27.865417",,"27.865417",,,,,,,"1758.708333",,,,,"5574.125000",,"3.955556",,"742.088889",,,,"53.000000","0.600000","0.333333","1.533333","59.466667","0.000000","639.444444","0.000000","6.888889","631.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.750000","1646.500000",,,,,"0.000000","0.000000",,,"7368.375000","8525.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.913333",,"29.913333",,"29.913333",,,,,,,"1079.791667",,,,,"5983.708333",,"3.688889",,"941.133333",,,,"1652.200000","0.866667","0.400000","1.177778","78.377778","0.000000","834.555556","0.000000","8.555556","824.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.875000","1952.875000",,,,,"0.000000","0.000000",,,"7825.250000","9406.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.011667",,"31.011667",,"31.011667",,,,,,,"1406.250000",,,,,"6203.416667",,"41.800000",,"766.666667",,,,"2286.228571","4.177778","0.533333","1.533333","62.555556","0.000000","723.148148","0.000000","45.148148","676.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"109.500000","1702.000000",,,,,"0.000000","0.000000",,,"7427.000000","8866.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.420833",,"29.420833",,"29.420833",,,,,,,"1792.250000",,,,,"5885.000000",,"4.311111",,"916.444444",,,,"1761.742857","1.000000","0.644444","1.755556","69.711111","0.000000","747.111111","0.000000","9.592593","736.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"82.875000","1896.875000",,,,,"0.000000","0.000000",,,"7386.250000","8546.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.850417",,"30.850417",,"30.850417",,,,,,,"1424.041667",,,,,"6170.958333",,"13.000000",,"645.088889",,,,"1473.971429","1.777778","0.711111","3.000000","52.266667","0.000000","593.629630","0.000000","19.111111","571.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1211.625000",,,,,"0.000000","0.000000",,,"3209.125000","4171.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.236667",,"28.236667",,"28.236667",,,,,,,"1981.416667",,,,,"5648.291667",,"3.777778",,"741.266667",,,,"1476.057143","0.866667","0.288889","1.466667","61.822222","0.000000","668.222222","0.000000","8.333333","658.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1402.250000",,,,,"0.000000","0.000000",,,"3729.125000","4964.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.190417",,"31.190417",,"31.190417",,,,,,,"1629.625000",,,,,"6238.958333",,"2.977778",,"848.466667",,,,"695.314286","0.755556","0.133333","1.177778","72.400000","0.000000","779.333333","0.000000","7.629630","770.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1609.250000",,,,,"0.000000","0.000000",,,"4168.750000","5444.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.638333",,"26.638333",,"26.638333",,,,,,,"2278.416667",,,,,"5328.833333",,"4.777778",,"842.044444",,,,"61.857143","0.955556","0.977778","1.844444","69.266667","0.000000","747.703704","0.000000","9.666667","736.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1587.750000",,,,,"0.000000","0.000000",,,"4070.375000","5358.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.717500",,"28.717500",,"28.717500",,,,,,,"1467.125000",,,,,"5744.416667",,"3.377778",,"827.644444",,,,"61.685714","1.111111","0.088889","0.911111","68.600000","0.000000","733.370370","0.000000","10.074074","721.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1531.625000",,,,,"0.000000","0.000000",,,"3996.750000","5177.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.725417",,"29.725417",,"29.725417",,,,,,,"1802.791667",,,,,"5946.000000",,"4.511111",,"664.022222",,,,"48.771429","0.866667","0.200000","2.066667","54.511111","0.000000","591.111111","0.000000","8.703704","581.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1249.375000",,,,,"0.000000","0.000000",,,"3295.000000","4284.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.903333",,"27.903333",,"27.903333",,,,,,,"2625.375000",,,,,"5581.708333",,"3.488889",,"816.800000",,,,"62.771429","0.844444","0.355556","1.244444","70.333333","0.000000","758.592593","0.000000","8.518519","748.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","1559.500000",,,,,"0.000000","0.000000",,,"4141.625000","5265.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.096250",,"30.096250",,"30.096250",,,,,,,"1892.916667",,,,,"6019.958333",,"3.066667",,"843.755556",,,,"63.600000","0.800000","0.311111","1.222222","71.200000","0.000000","764.222222","0.000000","8.444444","754.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1578.125000",,,,,"0.000000","0.000000",,,"4053.375000","5346.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.745833",,"28.745833",,"28.745833",,,,,,,"1493.041667",,,,,"5750.333333",,"4.822222",,"845.755556",,,,"61.857143","0.955556","0.377778","0.933333","69.000000","0.000000","739.074074","0.000000","9.629630","728.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","13.285714",,,,,"0.000000","0.000000",,,"4043.375000","5334.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.570000",,"27.570000",,"27.570000",,,,,,,"2028.208333",,,,,"5514.958333",,"28.066667",,"797.933333",,,,"62.685714","2.644444","0.244444","1.088889","67.711111","0.000000","745.703704","0.000000","27.666667","712.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.500000","1536.375000",,,,,"0.000000","0.000000",,,"4516.125000","5835.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.720000",,"34.720000",,"34.720000",,,,,,,"602.458333",,,,,"6944.791667",,"4.333333",,"874.600000",,,,"47.028571","0.777778","0.311111","3.111111","52.155556","0.000000","554.888889","0.000000","8.000000","545.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.375000","1864.750000",,,,,"0.000000","0.000000",,,"7968.500000","9324.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.176667",,"28.176667",,"28.176667",,,,,,,"2246.916667",,,,,"5636.208333",,"3.755556",,"1181.733333",,,,"51.685714","0.866667","0.266667","1.844444","57.266667","0.000000","609.629630","0.000000","8.851852","599.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","2333.875000",,,,,"0.000000","0.000000",,,"6837.000000","8522.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.516667",,"31.516667",,"31.516667",,,,,,,"796.541667",,,,,"6304.208333",,"7.400000",,"693.000000",,,,"1657.171429","0.844444","0.977778","1.600000","50.377778","0.000000","541.518519","0.000000","8.962963","531.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1319.125000",,,,,"0.000000","0.000000",,,"3373.625000","4335.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.645833",,"30.645833",,"30.645833",,,,,,,"696.375000",,,,,"6130.041667",,"9.466667",,"641.688889",,,,"2068.171429","1.444444","0.755556","2.155556","49.422222","0.000000","533.888889","0.000000","18.148148","514.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1172.625000",,,,,"0.000000","0.000000",,,"3114.500000","4007.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.793333",,"32.793333",,"32.793333",,,,,,,"792.666667",,,,,"6559.458333",,"3.644444",,"725.200000",,,,"1829.257143","0.933333","0.600000","1.400000","55.977778","0.000000","602.111111","0.000000","8.888889","591.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1389.625000",,,,,"0.000000","0.000000",,,"3540.000000","4582.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.132917",,"32.132917",,"32.132917",,,,,,,"679.750000",,,,,"6427.541667",,"4.844444",,"857.800000",,,,"1348.200000","0.955556","0.288889","1.511111","62.444444","0.000000","659.407407","0.000000","9.370370","648.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1613.625000",,,,,"0.000000","0.000000",,,"4757.000000","5548.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.356250",,"25.356250",,"25.356250",,,,,,,"2976.458333",,,,,"5072.375000",,"18.755556",,"1047.822222",,,,"1543.771429","2.200000","0.444444","2.622222","39.622222","0.000000","426.740741","0.000000","24.000000","401.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","2075.875000",,,,,"0.000000","0.000000",,,"4736.750000","7634.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.453333",,"22.453333",,"22.453333",,,,,,,"3901.791667",,,,,"4491.583333",,"8.977778",,"563.377778",,,,"823.085714","1.088889","0.444444","5.555556","49.733333","0.000000","506.814815","0.000000","11.592593","493.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.625000","1066.750000",,,,,"0.000000","0.000000",,,"2944.875000","3669.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.507500",,"22.507500",,"22.507500",,,,,,,"4598.458333",,,,,"4502.375000",,"3.866667",,"413.866667",,,,"36.971429","1.044444","0.133333","1.444444","39.288889","0.000000","397.962963","0.000000","9.851852","386.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","734.750000",,,,,"0.000000","0.000000",,,"2163.250000","2677.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.762917",,"18.762917",,"18.762917",,,,,,,"5041.916667",,,,,"3753.500000",,"4.000000",,"277.777778",,,,"22.571429","0.866667","0.333333","1.444444","23.822222","0.000000","248.000000","0.000000","8.814815","238.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","510.875000",,,,,"0.000000","0.000000",,,"1678.625000","2422.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.855833",,"19.855833",,"19.855833",,,,,,,"4403.791667",,,,,"3972.041667",,"3.911111",,"393.088889",,,,"31.285714","0.777778","0.355556","1.044444","33.600000","0.000000","348.444444","0.000000","8.111111","339.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","800.750000",,,,,"0.000000","0.000000",,,"2230.000000","2697.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.825833",,"20.825833",,"20.825833",,,,,,,"4391.000000",,,,,"4166.500000",,"3.711111",,"374.133333",,,,"35.314286","0.800000","0.133333","1.422222","38.066667","0.000000","390.851852","0.000000","8.444444","381.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","670.000000",,,,,"0.000000","0.000000",,,"2038.375000","2416.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.725833",,"19.725833",,"19.725833",,,,,,,"4732.208333",,,,,"3946.166667",,"9.355556",,"352.511111",,,,"34.257143","1.466667","0.466667","0.755556","35.777778","0.000000","372.481481","0.000000","13.925926","355.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.250000","714.500000",,,,,"0.000000","0.000000",,,"3640.875000","4009.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.491250",,"19.491250",,"19.491250",,,,,,,"4325.250000",,,,,"3899.333333",,"4.244444",,"333.977778",,,,"30.742857","0.955556","0.155556","0.844444","32.733333","0.000000","337.296296","0.000000","9.481481","326.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.000000","819.250000",,,,,"0.000000","0.000000",,,"5880.625000","6300.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.437083",,"25.437083",,"25.437083",,,,,,,"2994.083333",,,,,"5088.375000",,"23.533333",,"869.000000",,,,"44.971429","2.044444","0.222222","1.511111","46.955556","0.000000","494.777778","0.000000","23.370370","467.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1685.750000",,,,,"0.000000","0.000000",,,"4987.000000","6139.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.069583",,"27.069583",,"27.069583",,,,,,,"2464.333333",,,,,"5414.708333",,"2.733333",,"583.755556",,,,"29.057143","0.933333","0.288889","1.555556","30.866667","0.000000","317.666667","0.000000","8.962963","307.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1100.000000",,,,,"0.000000","0.000000",,,"2665.250000","3452.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.204167",,"24.204167",,"24.204167",,,,,,,"3602.166667",,,,,"4841.916667",,"6.377778",,"1882.222222",,,,"50.428571","1.133333","0.644444","5.622222","53.288889","0.000000","520.777778","0.000000","11.333333","507.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.875000","3425.875000",,,,,"0.000000","0.000000",,,"6800.625000","9337.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.820417",,"20.820417",,"20.820417",,,,,,,"4006.500000",,,,,"4165.125000",,"12.533333",,"1496.600000",,,,"1957.285714","1.200000","1.200000","4.977778","21.800000","0.000000","222.222222","0.000000","12.037037","208.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","14.142857",,,,,"0.000000","0.000000",,,"5365.875000","7516.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.324583",,"23.324583",,"23.324583",,,,,,,"4029.791667",,,,,"4665.625000",,"9.133333",,"1642.688889",,,,"2325.628571","1.000000","0.888889","6.377778","24.088889","0.000000","235.592593","0.000000","9.777778","224.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","3300.375000",,,,,"0.000000","0.000000",,,"6345.500000","9176.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.148333",,"24.148333",,"24.148333",,,,,,,"3176.833333",,,,,"4830.375000",,"4.488889",,"1973.688889",,,,"1902.400000","0.977778","0.444444","5.666667","49.955556","0.000000","495.407407","0.000000","9.481481","484.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.750000","3718.000000",,,,,"0.000000","0.000000",,,"7273.625000","9946.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.685833",,"20.685833",,"20.685833",,,,,,,"4068.708333",,,,,"4138.000000",,"9.244444",,"1780.177778",,,,"1603.600000","1.955556","0.600000","5.711111","36.155556","0.000000","362.481481","0.000000","20.296296","340.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"89.750000","3370.875000",,,,,"0.000000","0.000000",,,"7153.500000","9290.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.097500",,"21.097500",,"21.097500",,,,,,,"4415.166667",,,,,"4220.416667",,"4.977778",,"1786.333333",,,,"1362.028571","0.866667","0.133333","5.733333","37.777778","0.000000","366.777778","0.000000","8.925926","356.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.250000","3388.000000",,,,,"0.000000","0.000000",,,"6533.375000","9043.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.907083",,"17.907083",,"17.907083",,,,,,,"5216.166667",,,,,"3582.416667",,"3.333333",,"1780.533333",,,,"32.142857","0.933333","0.733333","5.777778","33.666667","0.000000","328.555556","0.000000","9.111111","317.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","3366.250000",,,,,"0.000000","0.000000",,,"6341.500000","8849.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.537083",,"19.537083",,"19.537083",,,,,,,"5090.291667",,,,,"3908.375000",,"9.577778",,"1692.911111",,,,"33.485714","1.511111","0.288889","8.777778","34.111111","0.000000","336.777778","0.000000","14.259259","319.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","3071.500000",,,,,"0.000000","0.000000",,,"5974.250000","8371.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.708750",,"20.708750",,"20.708750",,,,,,,"4542.625000",,,,,"4142.666667",,"4.800000",,"2252.711111",,,,"37.800000","1.044444","0.444444","4.488889","39.377778","0.000000","378.666667","0.000000","9.851852","367.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.000000","4418.750000",,,,,"0.000000","0.000000",,,"8257.750000","11664.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.500417",,"19.500417",,"19.500417",,,,,,,"4522.833333",,,,,"3900.791667",,"4.377778",,"1501.422222",,,,"26.514286","0.955556","0.200000","4.600000","27.200000","0.000000","262.851852","0.000000","9.518519","252.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.375000","220.285714",,,,,"0.000000","0.000000",,,"8831.875000","10903.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.796667",,"17.796667",,"17.796667",,,,,,,"4638.500000",,,,,"3560.208333",,"4.933333",,"1582.933333",,,,"41.800000","1.000000","0.200000","5.155556","44.044444","0.000000","428.370370","0.000000","9.925926","417.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.375000","3148.000000",,,,,"0.000000","0.000000",,,"8976.625000","11168.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.070417",,"17.070417",,"17.070417",,,,,,,"4887.166667",,,,,"3415.166667",,"4.911111",,"1053.400000",,,,"25.600000","1.044444","0.666667","3.022222","26.755556","0.000000","273.370370","0.000000","10.222222","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","1920.625000",,,,,"0.000000","0.000000",,,"3970.875000","5474.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.378750",,"18.378750",,"18.378750",,,,,,,"4504.291667",,,,,"3676.583333",,"67.933333",,"1308.200000",,,,"42.485714","1.600000","0.511111","3.555556","44.711111","0.000000","452.740741","0.000000","16.481481","434.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"151.375000","2539.000000",,,,,"0.000000","0.000000",,,"5534.375000","7250.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.925833",,"18.925833",,"18.925833",,,,,,,"5157.375000",,,,,"3786.333333",,"22.666667",,"621.133333",,,,"37.285714","2.022222","0.866667","2.111111","38.444444","0.000000","404.370370","0.000000","22.481481","377.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","1150.250000",,,,,"0.000000","0.000000",,,"2972.500000","3829.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.795417",,"23.795417",,"23.795417",,,,,,,"3119.083333",,,,,"4760.166667",,"3.422222",,"479.488889",,,,"37.371429","0.844444","0.177778","1.244444","40.600000","0.000000","421.777778","0.000000","8.333333","412.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","879.375000",,,,,"0.000000","0.000000",,,"2511.750000","3093.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.869167",,"18.869167",,"18.869167",,,,,,,"4801.083333",,,,,"3774.666667",,"5.244444",,"505.333333",,,,"38.342857","1.044444","0.133333","1.622222","41.400000","0.000000","431.888889","0.000000","10.407407","420.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","967.625000",,,,,"0.000000","0.000000",,,"2655.125000","3409.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.479583",,"23.479583",,"23.479583",,,,,,,"3359.625000",,,,,"4696.875000",,"2.644444",,"180.400000",,,,"2023.171429","0.933333","0.177778","2.488889","15.044444","0.000000","167.814815","0.000000","8.518519","158.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","346.000000",,,,,"0.000000","0.000000",,,"1189.875000","1432.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.362917",,"29.362917",,"29.362917",,,,,,,"2060.750000",,,,,"5873.458333",,"4.733333",,"373.044444",,,,"2292.142857","0.955556","0.133333","1.022222","34.422222","0.000000","348.000000","0.000000","9.814815","336.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.000000","663.625000",,,,,"0.000000","0.000000",,,"2108.125000","2482.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.831667",,"25.831667",,"25.831667",,,,,,,"2430.083333",,,,,"5167.375000",,"8.333333",,"565.866667",,,,"1721.857143","1.377778","0.133333","1.066667","47.355556","0.000000","483.555556","0.000000","12.592593","468.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1031.250000",,,,,"0.000000","0.000000",,,"3312.625000","3701.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.794167",,"23.794167",,"23.794167",,,,,,,"2934.041667",,,,,"4759.750000",,"6.377778",,"456.866667",,,,"1600.514286","0.933333","0.088889","1.066667","45.733333","0.000000","461.000000","0.000000","9.037037","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","845.375000",,,,,"0.000000","0.000000",,,"2517.125000","3221.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.172083",,"17.172083",,"17.172083",,,,,,,"5485.541667",,,,,"3435.208333",,"3.466667",,"170.666667",,,,"1497.057143","0.933333","0.088889","1.022222","13.266667","0.000000","145.370370","0.000000","9.333333","134.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","343.375000",,,,,"0.000000","0.000000",,,"1130.375000","1451.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.955417",,"16.955417",,"16.955417",,,,,,,"5183.666667",,,,,"3392.125000",,"109.666667",,"433.955556",,,,"40.257143","3.977778","0.466667","1.266667","40.711111","0.000000","457.074074","0.000000","43.296296","412.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"219.000000","804.750000",,,,,"0.000000","0.000000",,,"2838.750000","3191.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.264167",,"16.264167",,"16.264167",,,,,,,"5416.708333",,,,,"3253.541667",,"3.200000",,"405.111111",,,,"37.828571","0.888889","0.088889","0.822222","40.822222","0.000000","419.555556","0.000000","8.407407","409.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","830.250000",,,,,"0.000000","0.000000",,,"4113.250000","4674.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.130833",,"16.130833",,"16.130833",,,,,,,"5390.416667",,,,,"3227.208333",,"3.511111",,"384.822222",,,,"36.742857","0.933333","0.133333","1.200000","39.600000","0.000000","408.740741","0.000000","9.296296","398.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.750000","880.750000",,,,,"0.000000","0.000000",,,"5049.250000","5846.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.808750",,"19.808750",,"19.808750",,,,,,,"4472.583333",,,,,"3963.041667",,"5.422222",,"736.666667",,,,"40.800000","1.088889","0.311111","3.466667","43.955556","0.000000","457.111111","0.000000","11.037037","444.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1397.750000",,,,,"0.000000","0.000000",,,"3463.375000","4536.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.232083",,"15.232083",,"15.232083",,,,,,,"5952.375000",,,,,"3047.250000",,"3.644444",,"472.555556",,,,"29.028571","0.955556","0.400000","1.377778","31.088889","0.000000","325.629630","0.000000","8.962963","315.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","893.500000",,,,,"0.000000","0.000000",,,"2303.125000","3007.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.699167",,"18.699167",,"18.699167",,,,,,,"4859.291667",,,,,"3740.958333",,"3.311111",,"566.822222",,,,"40.428571","0.933333","0.133333","1.488889","43.600000","0.000000","445.407407","0.000000","8.703704","435.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1063.375000",,,,,"0.000000","0.000000",,,"2806.125000","3550.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.230417",,"18.230417",,"18.230417",,,,,,,"4888.166667",,,,,"3647.083333",,"4.688889",,"642.311111",,,,"32.542857","1.000000","0.133333","1.311111","34.866667","0.000000","359.814815","0.000000","9.740741","348.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","1203.375000",,,,,"0.000000","0.000000",,,"2880.875000","3761.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.436667",,"13.436667",,"13.436667",,,,,,,"6628.500000",,,,,"2688.291667",,"27.600000",,"166.422222",,,,"16.685714","2.533333","0.133333","0.911111","15.377778","0.000000","191.962963","0.000000","26.888889","159.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.375000","294.250000",,,,,"0.000000","0.000000",,,"1199.750000","1329.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.715833",,"19.715833",,"19.715833",,,,,,,"4473.083333",,,,,"3944.083333",,"4.066667",,"698.333333",,,,"35.685714","0.933333","0.177778","2.111111","38.688889","0.000000","405.037037","0.000000","9.148148","394.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1324.375000",,,,,"0.000000","0.000000",,,"3139.125000","4367.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.884167",,"19.884167",,"19.884167",,,,,,,"4239.083333",,,,,"3977.791667",,"3.755556",,"335.533333",,,,"24.085714","0.844444","1.111111","1.333333","26.088889","0.000000","283.370370","0.000000","8.740741","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","654.250000",,,,,"0.000000","0.000000",,,"1885.125000","2607.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.310417",,"18.310417",,"18.310417",,,,,,,"5189.416667",,,,,"3663.000000",,"4.933333",,"358.466667",,,,"2420.400000","1.111111","0.311111","1.822222","32.800000","0.000000","352.925926","0.000000","13.037037","338.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","684.750000",,,,,"0.000000","0.000000",,,"2000.875000","2632.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.465000",,"19.465000",,"19.465000",,,,,,,"4358.958333",,,,,"3893.833333",,"4.333333",,"393.911111",,,,"2362.314286","0.777778","0.177778","1.200000","38.000000","0.000000","394.629630","0.000000","8.370370","384.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","16.428571",,,,,"0.000000","0.000000",,,"2190.000000","2697.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.359583",,"21.359583",,"21.359583",,,,,,,"4336.250000",,,,,"4272.750000",,"3.422222",,"541.200000",,,,"2060.228571","0.933333","0.133333","1.777778","43.777778","0.000000","459.148148","0.000000","9.333333","448.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1012.500000",,,,,"0.000000","0.000000",,,"3425.625000","3691.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.265833",,"18.265833",,"18.265833",,,,,,,"5036.083333",,,,,"3654.333333",,"2.666667",,"269.133333",,,,"1648.057143","0.844444","0.200000","0.977778","26.288889","0.000000","277.333333","0.000000","8.185185","267.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","681.500000",,,,,"0.000000","0.000000",,,"5373.250000","5685.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.197083",,"17.197083",,"17.197083",,,,,,,"4896.041667",,,,,"3440.416667",,"3.422222",,"386.355556",,,,"663.171429","0.844444","0.266667","1.355556","38.800000","0.000000","407.740741","0.000000","8.740741","397.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","810.625000",,,,,"0.000000","0.000000",,,"3328.375000","3915.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.111667",,"16.111667",,"16.111667",,,,,,,"5782.125000",,,,,"3223.458333",,"3.800000",,"374.088889",,,,"34.771429","0.866667","0.133333","1.022222","37.555556","0.000000","391.518519","0.000000","8.555556","381.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","675.250000",,,,,"0.000000","0.000000",,,"2003.125000","2493.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.023750",,"17.023750",,"17.023750",,,,,,,"5190.541667",,,,,"3405.791667",,"2.600000",,"503.044444",,,,"43.371429","0.933333","0.088889","1.511111","46.822222","0.000000","477.296296","0.000000","8.925926","466.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","923.875000",,,,,"0.000000","0.000000",,,"2566.500000","3336.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.775417",,"16.775417",,"16.775417",,,,,,,"5300.708333",,,,,"3356.000000",,"3.666667",,"434.644444",,,,"43.600000","0.933333","0.133333","1.333333","46.866667","0.000000","473.592593","0.000000","9.185185","463.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","826.375000",,,,,"0.000000","0.000000",,,"2465.375000","3035.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.901667",,"16.901667",,"16.901667",,,,,,,"5474.875000",,,,,"3381.458333",,"2.422222",,"343.911111",,,,"32.742857","0.955556","0.155556","1.844444","34.888889","0.000000","355.962963","0.000000","9.074074","345.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","863.125000",,,,,"0.000000","0.000000",,,"5283.375000","6053.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.617500",,"14.617500",,"14.617500",,,,,,,"6402.583333",,,,,"2924.500000",,"8.377778",,"246.955556",,,,"25.257143","1.466667","0.133333","6.466667","25.955556","0.000000","273.111111","0.000000","13.333333","257.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","567.125000",,,,,"0.000000","0.000000",,,"3326.000000","3883.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"12.524583",,"12.524583",,"12.524583",,,,,,,"6376.166667",,,,,"2505.833333",,"3.466667",,"208.688889",,,,"20.228571","0.933333","0.533333","2.200000","21.088889","0.000000","219.370370","0.000000","8.740741","209.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","400.000000",,,,,"0.000000","0.000000",,,"1370.375000","1596.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.667917",,"17.667917",,"17.667917",,,,,,,"5635.708333",,,,,"3534.458333",,"2.622222",,"445.577778",,,,"42.200000","0.933333","0.155556","1.533333","45.311111","0.000000","456.333333","0.000000","8.481481","446.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","782.750000",,,,,"0.000000","0.000000",,,"2283.250000","2742.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.422917",,"13.422917",,"13.422917",,,,,,,"6330.041667",,,,,"2685.500000",,"21.400000",,"210.844444",,,,"20.285714","2.000000","0.111111","1.555556","20.066667","0.000000","228.740741","0.000000","22.111111","202.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.625000","397.250000",,,,,"0.000000","0.000000",,,"1391.750000","1606.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.380417",,"23.380417",,"23.380417",,,,,,,"3806.125000",,,,,"4676.708333",,"3.400000",,"617.177778",,,,"40.771429","0.933333","0.088889","2.377778","43.888889","0.000000","445.370370","0.000000","8.740741","435.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1113.875000",,,,,"0.000000","0.000000",,,"2844.125000","3666.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.631250",,"20.631250",,"20.631250",,,,,,,"4556.416667",,,,,"4127.375000",,"3.400000",,"792.688889",,,,"31.514286","0.933333","1.133333","2.688889","33.800000","0.000000","349.740741","0.000000","8.888889","339.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1542.375000",,,,,"0.000000","0.000000",,,"3396.500000","4612.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.587917",,"23.587917",,"23.587917",,,,,,,"3373.375000",,,,,"4718.166667",,"3.400000",,"481.755556",,,,"1997.800000","0.844444","0.133333","1.377778","41.155556","0.000000","433.370370","0.000000","8.259259","423.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1022.625000",,,,,"0.000000","0.000000",,,"4399.750000","5086.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.564583",,"24.564583",,"24.564583",,,,,,,"3519.416667",,,,,"4914.041667",,"3.688889",,"320.777778",,,,"2565.085714","0.933333","0.133333","1.311111","27.955556","0.000000","298.259259","0.000000","9.333333","287.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","757.375000",,,,,"0.000000","0.000000",,,"4743.500000","5232.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.986667",,"23.986667",,"23.986667",,,,,,,"3394.833333",,,,,"4798.291667",,"2.533333",,"586.377778",,,,"1801.600000","0.933333","0.133333","1.200000","46.400000","0.000000","487.888889","0.000000","8.666667","477.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.875000","1043.875000",,,,,"0.000000","0.000000",,,"3518.250000","3739.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.213750",,"22.213750",,"22.213750",,,,,,,"4269.083333",,,,,"4443.416667",,"7.844444",,"450.377778",,,,"1599.828571","1.466667","0.244444","1.600000","37.266667","0.000000","393.777778","0.000000","13.222222","377.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","863.875000",,,,,"0.000000","0.000000",,,"2342.500000","2918.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.515417",,"20.515417",,"20.515417",,,,,,,"4089.000000",,,,,"4104.250000",,"4.111111",,"420.466667",,,,"1199.285714","1.022222","0.088889","1.444444","37.066667","0.000000","386.555556","0.000000","9.592593","375.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","801.500000",,,,,"0.000000","0.000000",,,"2276.125000","3109.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.172917",,"21.172917",,"21.172917",,,,,,,"4421.125000",,,,,"4235.250000",,"2.755556",,"739.733333",,,,"42.800000","1.022222","0.088889","1.866667","46.222222","0.000000","476.555556","0.000000","9.518519","465.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1393.125000",,,,,"0.000000","0.000000",,,"3344.625000","4535.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.840417",,"19.840417",,"19.840417",,,,,,,"4291.666667",,,,,"3968.791667",,"2.511111",,"385.177778",,,,"32.885714","0.844444","0.088889","0.866667","35.488889","0.000000","366.407407","0.000000","8.037037","356.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","722.750000",,,,,"0.000000","0.000000",,,"2183.125000","3037.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.291667",,"20.291667",,"20.291667",,,,,,,"4614.333333",,,,,"4059.541667",,"3.755556",,"411.244444",,,,"35.628571","0.933333","0.311111","1.155556","38.266667","0.000000","396.074074","0.000000","9.518519","385.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","796.875000",,,,,"0.000000","0.000000",,,"2363.375000","3096.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.220833",,"18.220833",,"18.220833",,,,,,,"5276.166667",,,,,"3645.041667",,"2.644444",,"249.022222",,,,"21.485714","0.888889","0.088889","3.133333","22.688889","0.000000","239.111111","0.000000","8.333333","229.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.250000","479.500000",,,,,"0.000000","0.000000",,,"1498.500000","1986.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.927917",,"20.927917",,"20.927917",,,,,,,"4277.875000",,,,,"4186.791667",,"6.355556",,"462.155556",,,,"38.742857","1.088889","0.355556","1.266667","41.666667","0.000000","430.740741","0.000000","10.148148","419.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","868.125000",,,,,"0.000000","0.000000",,,"2488.375000","3269.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.755417",,"18.755417",,"18.755417",,,,,,,"4936.833333",,,,,"3752.083333",,"2.622222",,"389.022222",,,,"30.171429","0.933333","0.200000","1.644444","32.200000","0.000000","334.037037","0.000000","9.000000","323.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","713.375000",,,,,"0.000000","0.000000",,,"2006.250000","2515.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.352917",,"16.352917",,"16.352917",,,,,,,"5814.666667",,,,,"3271.625000",,"3.711111",,"752.666667",,,,"32.628571","0.933333","0.088889","2.711111","34.755556","0.000000","355.222222","0.000000","9.333333","344.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1502.375000",,,,,"0.000000","0.000000",,,"4342.125000","5370.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.863333",,"13.863333",,"13.863333",,,,,,,"6080.000000",,,,,"2773.791667",,"21.444444",,"215.333333",,,,"21.714286","2.000000","0.133333","0.977778","21.688889","0.000000","248.333333","0.000000","21.962963","222.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","601.750000",,,,,"0.000000","0.000000",,,"5200.875000","5453.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.919167",,"20.919167",,"20.919167",,,,,,,"3703.416667",,,,,"4185.000000",,"8.555556",,"442.866667",,,,"38.428571","1.644444","0.088889","1.311111","40.533333","0.000000","424.888889","0.000000","14.481481","407.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","787.000000",,,,,"0.000000","0.000000",,,"2339.000000","2837.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.155417",,"21.155417",,"21.155417",,,,,,,"4054.458333",,,,,"4232.041667",,"13.577778",,"567.955556",,,,"40.971429","1.400000","0.222222","2.155556","44.111111","0.000000","465.592593","0.000000","13.481481","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.625000","1078.375000",,,,,"0.000000","0.000000",,,"2940.250000","3752.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.623750",,"18.623750",,"18.623750",,,,,,,"5099.750000",,,,,"3725.791667",,"3.844444",,"262.911111",,,,"2491.600000","1.044444","0.222222","2.644444","23.955556","0.000000","259.962963","0.000000","12.444444","245.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.750000","474.500000",,,,,"0.000000","0.000000",,,"1468.250000","1861.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.632083",,"19.632083",,"19.632083",,,,,,,"4507.583333",,,,,"3927.250000",,"3.355556",,"388.755556",,,,"2334.228571","0.777778","0.288889","1.355556","35.022222","0.000000","362.296296","0.000000","7.851852","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","702.125000",,,,,"0.000000","0.000000",,,"2038.000000","2476.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.717500",,"21.717500",,"21.717500",,,,,,,"4268.333333",,,,,"4344.250000",,"3.066667",,"587.377778",,,,"1993.600000","0.933333","0.355556","1.444444","46.733333","0.000000","487.407407","0.000000","8.629630","477.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1126.625000",,,,,"0.000000","0.000000",,,"3664.000000","4042.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.412083",,"17.412083",,"17.412083",,,,,,,"5486.708333",,,,,"3483.375000",,"2.688889",,"184.688889",,,,"1771.457143","0.933333","0.133333","1.288889","17.755556","0.000000","195.185185","0.000000","8.481481","185.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.625000","317.625000",,,,,"0.000000","0.000000",,,"1094.625000","1296.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.158750",,"17.158750",,"17.158750",,,,,,,"5362.958333",,,,,"3432.541667",,"3.422222",,"386.377778",,,,"546.400000","0.844444","0.133333","1.177778","37.866667","0.000000","401.259259","0.000000","8.259259","391.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","758.125000",,,,,"0.000000","0.000000",,,"2327.750000","2918.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.318333",,"16.318333",,"16.318333",,,,,,,"5400.041667",,,,,"3264.291667",,"2.600000",,"435.333333",,,,"38.657143","0.933333","0.088889","1.000000","42.044444","0.000000","438.851852","0.000000","8.444444","429.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","18.000000",,,,,"0.000000","0.000000",,,"2272.375000","2846.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.762917",,"17.762917",,"17.762917",,,,,,,"5038.375000",,,,,"3553.416667",,"2.711111",,"460.022222",,,,"36.942857","0.933333","0.088889","1.000000","40.244444","0.000000","424.407407","0.000000","8.888889","414.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.750000","891.000000",,,,,"0.000000","0.000000",,,"2885.375000","3305.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.845000",,"15.845000",,"15.845000",,,,,,,"5632.000000",,,,,"3169.958333",,"3.688889",,"377.311111",,,,"34.485714","0.844444","0.133333","1.000000","37.488889","0.000000","396.296296","0.000000","8.703704","386.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","685.875000",,,,,"0.000000","0.000000",,,"2427.750000","2545.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.650833",,"15.650833",,"15.650833",,,,,,,"5921.583333",,,,,"3131.333333",,"8.333333",,"306.066667",,,,"28.171429","1.555556","0.088889","0.822222","29.511111","0.000000","319.740741","0.000000","14.000000","302.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.500000","562.250000",,,,,"0.000000","0.000000",,,"2005.875000","2331.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.367917",,"15.367917",,"15.367917",,,,,,,"5492.416667",,,,,"3074.583333",,"2.711111",,"354.377778",,,,"32.885714","0.955556","0.133333","0.822222","35.577778","0.000000","376.222222","0.000000","9.444444","365.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","885.500000",,,,,"0.000000","0.000000",,,"5734.125000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.462500",,"16.462500",,"16.462500",,,,,,,"5792.791667",,,,,"3293.291667",,"2.422222",,"365.822222",,,,"34.285714","0.800000","0.088889","0.977778","37.666667","0.000000","402.444444","0.000000","7.518519","393.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","709.625000",,,,,"0.000000","0.000000",,,"3024.375000","3443.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.004583",,"17.004583",,"17.004583",,,,,,,"5650.916667",,,,,"3401.791667",,"2.822222",,"367.355556",,,,"33.714286","0.844444","0.177778","1.044444","36.666667","0.000000","384.629630","0.000000","8.037037","375.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","695.000000",,,,,"0.000000","0.000000",,,"2123.375000","2659.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.058333",,"15.058333",,"15.058333",,,,,,,"5794.625000",,,,,"3012.291667",,"21.222222",,"351.400000",,,,"32.457143","1.911111","0.088889","1.000000","34.133333","0.000000","380.407407","0.000000","21.000000","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.375000","644.125000",,,,,"0.000000","0.000000",,,"2016.500000","2425.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.575417",,"18.575417",,"18.575417",,,,,,,"4860.833333",,,,,"3716.083333",,"2.466667",,"305.688889",,,,"28.000000","0.888889","0.422222","1.377778","30.155556","0.000000","321.629630","0.000000","8.851852","311.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","607.125000",,,,,"0.000000","0.000000",,,"1918.250000","2419.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.607917",,"28.607917",,"28.607917",,,,,,,"1975.791667",,,,,"5722.500000",,"3.555556",,"559.844444",,,,"38.742857","0.866667","0.444444","1.022222","42.666667","0.000000","458.851852","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1031.375000",,,,,"0.000000","0.000000",,,"2735.375000","3532.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.440417",,"17.440417",,"17.440417",,,,,,,"5369.708333",,,,,"3489.166667",,"3.600000",,"220.911111",,,,"2510.228571","1.066667","1.822222","1.111111","16.377778","0.000000","181.444444","0.000000","10.148148","169.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","426.375000",,,,,"0.000000","0.000000",,,"1293.625000","1583.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.963750",,"16.963750",,"16.963750",,,,,,,"5512.583333",,,,,"3393.458333",,"7.755556",,"95.866667",,,,"2484.657143","1.377778","0.088889","1.266667","9.600000","0.000000","114.444444","0.000000","12.703704","99.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","195.000000",,,,,"0.000000","0.000000",,,"893.000000","1139.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.052500",,"21.052500",,"21.052500",,,,,,,"4310.166667",,,,,"4211.666667",,"3.066667",,"531.488889",,,,"1968.885714","1.022222","0.911111","2.444444","41.044444","0.000000","437.370370","0.000000","9.222222","426.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.375000","966.125000",,,,,"0.000000","0.000000",,,"3288.000000","3481.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.387083",,"17.387083",,"17.387083",,,,,,,"4945.458333",,,,,"3478.541667",,"2.733333",,"299.400000",,,,"1527.000000","1.022222","0.222222","0.555556","29.777778","0.000000","317.592593","0.000000","9.518519","306.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.125000","628.625000",,,,,"0.000000","0.000000",,,"2489.125000","2953.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.143750",,"17.143750",,"17.143750",,,,,,,"5214.708333",,,,,"3429.875000",,"3.133333",,"422.422222",,,,"626.114286","0.933333","0.133333","0.711111","41.000000","0.000000","437.555556","0.000000","9.074074","427.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1036.625000",,,,,"0.000000","0.000000",,,"5725.875000","6731.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.491667",,"15.491667",,"15.491667",,,,,,,"5783.000000",,,,,"3099.166667",,"2.777778",,"375.088889",,,,"29.542857","1.111111","0.088889","2.066667","31.688889","0.000000","335.185185","0.000000","9.851852","323.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1017.125000",,,,,"0.000000","0.000000",,,"5505.750000","6864.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.681250",,"15.681250",,"15.681250",,,,,,,"5588.458333",,,,,"3137.000000",,"2.666667",,"384.377778",,,,"34.971429","1.022222","0.777778","1.022222","37.733333","0.000000","395.518519","0.000000","9.555556","384.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1006.750000",,,,,"0.000000","0.000000",,,"5475.125000","6928.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.431667",,"14.431667",,"14.431667",,,,,,,"6280.291667",,,,,"2887.666667",,"2.688889",,"180.755556",,,,"17.571429","1.022222","0.133333","1.311111","18.177778","0.000000","193.296296","0.000000","9.370370","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","619.125000",,,,,"0.000000","0.000000",,,"4520.375000","5739.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.050417",,"17.050417",,"17.050417",,,,,,,"5428.875000",,,,,"3411.000000",,"2.955556",,"427.400000",,,,"39.400000","0.911111","0.244444","0.844444","42.488889","0.000000","433.666667","0.000000","8.777778","423.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1057.375000",,,,,"0.000000","0.000000",,,"5564.125000","6850.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.108750",,"13.108750",,"13.108750",,,,,,,"6305.708333",,,,,"2622.916667",,"2.555556",,"205.844444",,,,"18.514286","0.844444","0.111111","0.866667","19.311111","0.000000","205.370370","0.000000","8.407407","195.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","597.875000",,,,,"0.000000","0.000000",,,"4809.375000","5457.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.620000",,"15.620000",,"15.620000",,,,,,,"5381.750000",,,,,"3125.041667",,"8.377778",,"387.577778",,,,"37.371429","1.644444","0.155556","1.155556","39.155556","0.000000","405.481481","0.000000","14.333333","388.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","961.750000",,,,,"0.000000","0.000000",,,"5608.875000","6570.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.203750",,"16.203750",,"16.203750",,,,,,,"5696.291667",,,,,"3241.875000",,"2.555556",,"398.711111",,,,"36.714286","0.844444","0.088889","2.444444","39.466667","0.000000","403.296296","0.000000","7.925926","394.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","994.500000",,,,,"0.000000","0.000000",,,"5465.625000","6645.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.687500",,"16.687500",,"16.687500",,,,,,,"5753.208333",,,,,"3338.583333",,"21.377778",,"309.777778",,,,"31.571429","2.000000","0.088889","0.644444","32.577778","0.000000","357.851852","0.000000","22.074074","331.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.875000","842.000000",,,,,"0.000000","0.000000",,,"5259.375000","6447.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.737083",,"15.737083",,"15.737083",,,,,,,"6035.666667",,,,,"3148.250000",,"2.600000",,"315.600000",,,,"29.857143","0.933333","0.088889","0.777778","31.888889","0.000000","328.444444","0.000000","8.518519","318.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","898.250000",,,,,"0.000000","0.000000",,,"5282.875000","6509.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.880417",,"20.880417",,"20.880417",,,,,,,"4238.750000",,,,,"4177.250000",,"2.911111",,"552.444444",,,,"47.200000","0.933333","0.177778","1.111111","51.377778","0.000000","529.444444","0.000000","8.666667","519.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","1261.750000",,,,,"0.000000","0.000000",,,"6176.625000","7568.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.545833",,"15.545833",,"15.545833",,,,,,,"5818.916667",,,,,"3109.750000",,"2.888889",,"221.844444",,,,"2243.600000","0.933333","0.177778","1.222222","20.200000","0.000000","214.148148","0.000000","9.148148","203.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","703.250000",,,,,"0.000000","0.000000",,,"4779.125000","5535.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.322083",,"20.322083",,"20.322083",,,,,,,"4711.833333",,,,,"4065.416667",,"4.111111",,"346.800000",,,,"2537.142857","1.111111","0.288889","1.622222","33.177778","0.000000","346.592593","0.000000","12.555556","332.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","916.000000",,,,,"0.000000","0.000000",,,"5456.250000","6426.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.803750",,"21.803750",,"21.803750",,,,,,,"4158.708333",,,,,"4361.416667",,"2.066667",,"594.377778",,,,"2051.657143","0.688889","0.155556","1.977778","49.333333","0.000000","502.629630","0.000000","6.888889","494.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1367.375000",,,,,"0.000000","0.000000",,,"7055.500000","7801.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.318333",,"20.318333",,"20.318333",,,,,,,"4452.500000",,,,,"4064.500000",,"2.800000",,"374.711111",,,,"1718.685714","0.933333","0.088889","0.600000","36.888889","0.000000","377.111111","0.000000","9.037037","366.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","891.375000",,,,,"0.000000","0.000000",,,"5062.125000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.300417",,"16.300417",,"16.300417",,,,,,,"4973.041667",,,,,"3261.083333",,"789.822222",,"1180.177778",,,,"628.085714","23.911111","0.244444","2.933333","43.177778","0.000000","684.629630","0.000000","259.666667","419.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1504.375000","2226.750000",,,,,"0.000000","0.000000",,,"8786.500000","8950.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.422917",,"17.422917",,"17.422917",,,,,,,"4840.875000",,,,,"3485.458333",,"24.644444",,"1105.666667",,,,"47.714286","5.800000","0.333333","7.177778","46.444444","0.000000","516.000000","0.000000","63.555556","451.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1675.000000","2195.250000",,,,,"0.000000","0.000000",,,"27946.625000","10134.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.345417",,"16.345417",,"16.345417",,,,,,,"5041.166667",,,,,"3270.125000",,"2.733333",,"1768.200000",,,,"40.771429","0.933333","0.511111","3.888889","43.022222","0.000000","420.666667","0.000000","9.037037","410.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.000000","238.000000",,,,,"0.000000","0.000000",,,"43937.375000","15437.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.193750",,"17.193750",,"17.193750",,,,,,,"4734.041667",,,,,"3439.500000",,"2.866667",,"2564.222222",,,,"46.057143","1.022222","0.888889","5.466667","48.533333","0.000000","467.814815","0.000000","9.555556","456.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1156.500000","4823.000000",,,,,"0.000000","0.000000",,,"24010.750000","13897.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.897500",,"14.897500",,"14.897500",,,,,,,"5484.708333",,,,,"2980.375000",,"4.222222",,"2010.866667",,,,"50.114286","1.200000","0.466667","2.555556","53.955556","0.000000","549.000000","0.000000","11.481481","536.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1846.000000","3610.375000",,,,,"0.000000","0.000000",,,"31614.125000","12006.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.507500",,"17.507500",,"17.507500",,,,,,,"4920.958333",,,,,"3502.416667",,"100.888889",,"678.422222",,,,"56.114286","13.711111","0.622222","2.577778","48.511111","0.000000","632.111111","0.000000","151.074074","479.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"208.750000","1475.625000",,,,,"0.000000","0.000000",,,"4179.000000","5150.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.901250",,"16.901250",,"16.901250",,,,,,,"5194.208333",,,,,"3381.208333",,"59.000000",,"402.600000",,,,"30.514286","2.244444","0.200000","1.155556","31.466667","0.000000","342.296296","0.000000","23.888889","317.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"120.875000","765.125000",,,,,"0.000000","0.000000",,,"2402.875000","2836.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.112083",,"20.112083",,"20.112083",,,,,,,"4601.166667",,,,,"4023.583333",,"12.600000",,"510.444444",,,,"45.685714","2.111111","0.155556","0.844444","48.155556","0.000000","501.925926","0.000000","22.296296","478.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","948.125000",,,,,"0.000000","0.000000",,,"2719.875000","3382.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.409583",,"19.409583",,"19.409583",,,,,,,"5240.000000",,,,,"3882.875000",,"40.488889",,"442.333333",,,,"36.428571","2.933333","0.422222","1.111111","36.511111","0.000000","400.666667","0.000000","30.740741","364.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.000000","792.250000",,,,,"0.000000","0.000000",,,"2400.125000","3078.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.445833",,"22.445833",,"22.445833",,,,,,,"4604.875000",,,,,"4490.166667",,"3.688889",,"394.222222",,,,"34.057143","0.977778","0.266667","1.511111","36.311111","0.000000","371.444444","0.000000","9.333333","360.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","742.375000",,,,,"0.000000","0.000000",,,"2211.625000","2644.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.001667",,"28.001667",,"28.001667",,,,,,,"2361.875000",,,,,"5601.291667",,"14.488889",,"1090.866667",,,,"42.771429","1.111111","0.533333","2.577778","46.000000","0.000000","470.555556","0.000000","10.703704","458.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.250000","2029.500000",,,,,"0.000000","0.000000",,,"4422.875000","5966.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.278750",,"25.278750",,"25.278750",,,,,,,"2888.458333",,,,,"5056.958333",,"2.422222",,"237.044444",,,,"2097.857143","0.888889","0.088889","1.377778","15.511111","0.000000","170.740741","0.000000","8.777778","160.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","493.625000",,,,,"0.000000","0.000000",,,"1526.250000","1966.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.602083",,"26.602083",,"26.602083",,,,,,,"3488.958333",,,,,"5321.250000",,"17.377778",,"194.244444",,,,"2865.685714","2.088889","0.511111","1.733333","12.222222","0.000000","149.888889","0.000000","21.740741","126.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.000000","364.375000",,,,,"0.000000","0.000000",,,"1261.875000","1533.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.015833",,"24.015833",,"24.015833",,,,,,,"3501.000000",,,,,"4804.041667",,"74.111111",,"1094.555556",,,,"1873.057143","1.888889","0.488889","3.000000","34.088889","0.000000","365.518519","0.000000","19.592593","344.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"217.750000","2257.875000",,,,,"0.000000","0.000000",,,"8083.750000","9344.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.054583",,"24.054583",,"24.054583",,,,,,,"3640.375000",,,,,"4812.250000",,"21.222222",,"419.911111",,,,"1652.714286","1.600000","0.822222","1.755556","29.200000","0.000000","311.851852","0.000000","16.259259","294.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1034.000000",,,,,"0.000000","0.000000",,,"6098.750000","6925.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.857083",,"23.857083",,"23.857083",,,,,,,"3570.666667",,,,,"4772.291667",,"2.644444",,"507.066667",,,,"628.314286","0.844444","0.133333","2.266667","44.622222","0.000000","455.037037","0.000000","8.148148","445.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1141.625000",,,,,"0.000000","0.000000",,,"6010.625000","6730.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.429583",,"21.429583",,"21.429583",,,,,,,"4309.666667",,,,,"4286.666667",,"4.288889",,"482.644444",,,,"35.771429","1.333333","0.177778","2.311111","37.800000","0.000000","389.518519","0.000000","13.148148","374.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","898.000000",,,,,"0.000000","0.000000",,,"2436.375000","3083.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.282500",,"21.282500",,"21.282500",,,,,,,"4127.250000",,,,,"4257.583333",,"8.222222",,"492.355556",,,,"34.000000","1.466667","0.266667","1.644444","35.555556","0.000000","370.259259","0.000000","13.814815","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","883.625000",,,,,"0.000000","0.000000",,,"2379.875000","3081.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.342500",,"20.342500",,"20.342500",,,,,,,"4774.916667",,,,,"4069.458333",,"2.666667",,"347.800000",,,,"28.257143","0.844444","0.133333","1.533333","30.177778","0.000000","311.148148","0.000000","8.000000","301.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","649.750000",,,,,"0.000000","0.000000",,,"1917.875000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.695833",,"22.695833",,"22.695833",,,,,,,"4217.333333",,,,,"4540.250000",,"2.622222",,"512.644444",,,,"31.657143","0.933333","0.133333","2.377778","33.666667","0.000000","343.851852","0.000000","9.037037","333.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","970.375000",,,,,"0.000000","0.000000",,,"2499.625000","3209.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.001667",,"20.001667",,"20.001667",,,,,,,"4967.208333",,,,,"4001.250000",,"2.622222",,"291.577778",,,,"22.457143","0.844444","0.177778","1.111111","23.955556","0.000000","252.703704","0.000000","8.259259","243.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","557.500000",,,,,"0.000000","0.000000",,,"1609.500000","1970.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.548750",,"21.548750",,"21.548750",,,,,,,"4231.958333",,,,,"4310.625000",,"15.666667",,"1081.222222",,,,"39.485714","1.066667","0.333333","2.733333","42.244444","0.000000","432.222222","0.000000","10.370370","420.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.625000","2040.625000",,,,,"0.000000","0.000000",,,"4484.625000","5878.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.865833",,"19.865833",,"19.865833",,,,,,,"4847.375000",,,,,"3974.041667",,"2.600000",,"219.888889",,,,"18.800000","0.844444","0.133333","2.977778","19.822222","0.000000","209.370370","0.000000","8.222222","199.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.625000","420.000000",,,,,"0.000000","0.000000",,,"1358.250000","1717.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.002917",,"21.002917",,"21.002917",,,,,,,"4095.375000",,,,,"4201.458333",,"25.488889",,"446.800000",,,,"39.600000","2.355556","0.133333","1.222222","41.000000","0.000000","439.629630","0.000000","25.888889","409.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","13.000000",,,,,"0.000000","0.000000",,,"2438.375000","2934.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.914167",,"24.914167",,"24.914167",,,,,,,"3470.000000",,,,,"4984.000000",,"5.311111",,"523.800000",,,,"46.371429","1.044444","7.488889","1.755556","49.800000","0.000000","505.962963","0.000000","10.518519","494.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.000000","972.500000",,,,,"0.000000","0.000000",,,"2792.375000","3615.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.814583",,"26.814583",,"26.814583",,,,,,,"2215.000000",,,,,"5363.791667",,"4.644444",,"510.155556",,,,"36.114286","1.222222","1.955556","1.311111","38.822222","0.000000","406.555556","0.000000","11.555556","393.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1117.500000",,,,,"0.000000","0.000000",,,"5327.125000","6162.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.013333",,"23.013333",,"23.013333",,,,,,,"3520.833333",,,,,"4603.916667",,"47.044444",,"723.644444",,,,"2166.971429","2.044444","0.400000","2.355556","35.311111","0.000000","375.925926","0.000000","19.814815","353.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"99.375000","1392.125000",,,,,"0.000000","0.000000",,,"5113.125000","6090.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.370833",,"25.370833",,"25.370833",,,,,,,"3870.541667",,,,,"5075.208333",,"3.777778",,"443.511111",,,,"2219.714286","0.955556","0.200000","2.666667","20.288889","0.000000","215.666667","0.000000","9.518519","204.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","884.125000",,,,,"0.000000","0.000000",,,"2080.625000","2711.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.520000",,"24.520000",,"24.520000",,,,,,,"2946.083333",,,,,"4905.083333",,"4.288889",,"559.688889",,,,"1835.571429","1.133333","0.244444","2.355556","48.377778","0.000000","499.740741","0.000000","12.925926","485.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1045.125000",,,,,"0.000000","0.000000",,,"3576.625000","3894.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.810417",,"23.810417",,"23.810417",,,,,,,"3926.291667",,,,,"4762.875000",,"51.200000",,"794.244444",,,,"1706.714286","3.311111","0.222222","2.777778","46.044444","0.000000","496.222222","0.000000","35.740741","459.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"112.500000","1479.875000",,,,,"0.000000","0.000000",,,"3789.125000","4876.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.562083",,"24.562083",,"24.562083",,,,,,,"3507.500000",,,,,"4913.416667",,"24.577778",,"722.066667",,,,"1244.571429","1.533333","0.533333","1.622222","45.444444","0.000000","480.148148","0.000000","16.185185","462.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.625000","1334.375000",,,,,"0.000000","0.000000",,,"3403.125000","4346.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.928333",,"17.928333",,"17.928333",,,,,,,"5468.125000",,,,,"3586.458333",,"21.555556",,"511.911111",,,,"28.342857","1.244444","0.466667","1.777778","30.000000","0.000000","320.629630","0.000000","13.000000","306.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1036.750000",,,,,"0.000000","0.000000",,,"2689.625000","3525.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.181667",,"20.181667",,"20.181667",,,,,,,"4778.958333",,,,,"4037.125000",,"14.888889",,"585.133333",,,,"40.800000","1.222222","0.377778","1.711111","43.822222","0.000000","451.666667","0.000000","11.444444","438.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.625000","1090.125000",,,,,"0.000000","0.000000",,,"2918.000000","3766.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.027083",,"20.027083",,"20.027083",,,,,,,"5287.833333",,,,,"4006.458333",,"3.044444",,"313.311111",,,,"28.714286","0.933333","0.133333","0.955556","30.422222","0.000000","314.740741","0.000000","9.185185","304.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","577.375000",,,,,"0.000000","0.000000",,,"1805.375000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.611250",,"18.611250",,"18.611250",,,,,,,"5161.208333",,,,,"3723.250000",,"26.977778",,"624.600000",,,,"37.171429","1.244444","0.311111","1.555556","39.844444","0.000000","415.370370","0.000000","12.925926","401.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","1185.875000",,,,,"0.000000","0.000000",,,"3044.875000","3880.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.683750",,"19.683750",,"19.683750",,,,,,,"4790.583333",,,,,"3937.666667",,"10.044444",,"470.111111",,,,"38.485714","1.488889","0.200000","1.977778","40.711111","0.000000","425.333333","0.000000","13.888889","408.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","839.625000",,,,,"0.000000","0.000000",,,"2389.000000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.312917",,"20.312917",,"20.312917",,,,,,,"4590.666667",,,,,"4063.416667",,"35.800000",,"556.355556",,,,"39.685714","1.577778","0.444444","1.533333","42.200000","0.000000","440.888889","0.000000","16.814815","422.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.625000","1161.250000",,,,,"0.000000","0.000000",,,"5508.625000","6181.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.327083",,"17.327083",,"17.327083",,,,,,,"5647.041667",,,,,"3466.250000",,"5.533333",,"307.466667",,,,"20.600000","1.177778","0.422222","1.600000","21.422222","0.000000","230.222222","0.000000","11.518519","217.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","679.125000",,,,,"0.000000","0.000000",,,"3901.500000","4401.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.451667",,"19.451667",,"19.451667",,,,,,,"4898.166667",,,,,"3891.333333",,"39.933333",,"499.666667",,,,"42.200000","2.244444","0.222222","1.577778","43.933333","0.000000","468.851852","0.000000","25.407407","439.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.000000","988.875000",,,,,"0.000000","0.000000",,,"2928.125000","3617.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.379583",,"23.379583",,"23.379583",,,,,,,"3589.416667",,,,,"4676.833333",,"5.266667",,"504.844444",,,,"38.685714","0.933333","0.311111","1.288889","41.822222","0.000000","431.111111","0.000000","9.296296","420.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.875000","896.125000",,,,,"0.000000","0.000000",,,"2474.750000","3144.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.403750",,"23.403750",,"23.403750",,,,,,,"3931.666667",,,,,"4681.666667",,"44.177778",,"575.222222",,,,"26.628571","1.688889","0.355556","2.555556","27.755556","0.000000","301.888889","0.000000","17.481481","282.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"98.875000","1121.750000",,,,,"0.000000","0.000000",,,"2903.625000","3741.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.928750",,"22.928750",,"22.928750",,,,,,,"3864.666667",,,,,"4586.750000",,"3.355556",,"496.977778",,,,"1953.200000","1.000000","0.222222","3.244444","45.600000","0.000000","464.666667","0.000000","9.592593","453.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","931.125000",,,,,"0.000000","0.000000",,,"2628.875000","3230.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.387917",,"23.387917",,"23.387917",,,,,,,"3819.583333",,,,,"4678.583333",,"3.200000",,"384.622222",,,,"2469.571429","0.933333","0.133333","1.888889","32.044444","0.000000","331.037037","0.000000","8.888889","320.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","690.375000",,,,,"0.000000","0.000000",,,"1968.250000","2558.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.147083",,"23.147083",,"23.147083",,,,,,,"4048.125000",,,,,"4630.333333",,"8.511111",,"486.000000",,,,"1986.257143","1.511111","0.133333","1.511111","33.222222","0.000000","349.111111","0.000000","14.481481","331.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.125000","912.750000",,,,,"0.000000","0.000000",,,"3127.125000","3271.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.745000",,"24.745000",,"24.745000",,,,,,,"3739.000000",,,,,"4949.916667",,"68.977778",,"513.822222",,,,"1688.514286","2.088889","0.422222","10.333333","48.333333","0.000000","499.777778","0.000000","21.074074","477.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"143.750000","944.500000",,,,,"0.000000","0.000000",,,"3030.125000","3541.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.308333",,"23.308333",,"23.308333",,,,,,,"4263.875000",,,,,"4662.708333",,"106.377778",,"426.022222",,,,"1081.914286","8.866667","0.333333","4.155556","37.088889","0.000000","466.888889","0.000000","97.074074","368.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.625000","787.000000",,,,,"0.000000","0.000000",,,"2832.875000","3240.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.671250",,"21.671250",,"21.671250",,,,,,,"5130.041667",,,,,"4335.333333",,"3.044444",,"426.688889",,,,"34.228571","0.933333","1.200000","4.666667","36.600000","0.000000","373.148148","0.000000","9.037037","362.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","797.375000",,,,,"0.000000","0.000000",,,"2765.000000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.496667",,"18.496667",,"18.496667",,,,,,,"5174.750000",,,,,"3700.500000",,"2.977778",,"338.577778",,,,"26.485714","0.755556","0.244444","2.622222","28.244444","0.000000","291.777778","0.000000","8.000000","282.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","886.250000",,,,,"0.000000","0.000000",,,"5908.625000","6575.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.277083",,"20.277083",,"20.277083",,,,,,,"5021.291667",,,,,"4056.291667",,"2.933333",,"373.111111",,,,"33.942857","0.844444","0.288889","1.244444","36.288889","0.000000","369.296296","0.000000","8.444444","359.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","701.750000",,,,,"0.000000","0.000000",,,"2372.500000","2867.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.418750",,"20.418750",,"20.418750",,,,,,,"4930.708333",,,,,"4084.750000",,"3.311111",,"442.777778",,,,"39.057143","0.955556","0.377778","1.977778","41.844444","0.000000","423.555556","0.000000","9.111111","413.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","842.000000",,,,,"0.000000","0.000000",,,"2423.250000","3121.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.302917",,"19.302917",,"19.302917",,,,,,,"5050.833333",,,,,"3861.500000",,"10.622222",,"403.133333",,,,"32.914286","1.577778","0.266667","2.355556","34.088889","0.000000","352.370370","0.000000","14.333333","335.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","698.000000",,,,,"0.000000","0.000000",,,"1987.000000","2465.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.429583",,"18.429583",,"18.429583",,,,,,,"5284.041667",,,,,"3687.000000",,"3.111111",,"343.066667",,,,"27.657143","0.844444","0.177778","1.822222","29.422222","0.000000","299.037037","0.000000","7.888889","289.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","634.250000",,,,,"0.000000","0.000000",,,"1873.375000","2320.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.332917",,"19.332917",,"19.332917",,,,,,,"5159.375000",,,,,"3867.416667",,"5.088889",,"403.977778",,,,"33.685714","0.977778","0.155556","1.355556","35.933333","0.000000","368.666667","0.000000","9.851852","357.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","16.571429",,,,,"0.000000","0.000000",,,"2105.500000","2652.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.611250",,"20.611250",,"20.611250",,,,,,,"4681.875000",,,,,"4123.458333",,"23.733333",,"1348.466667",,,,"47.028571","2.066667","0.355556","3.866667","49.111111","0.000000","506.925926","0.000000","23.037037","479.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.500000","2580.375000",,,,,"0.000000","0.000000",,,"5369.375000","7326.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.296667",,"22.296667",,"22.296667",,,,,,,"4524.791667",,,,,"4460.291667",,"51.088889",,"1164.355556",,,,"47.028571","3.600000","0.600000","2.111111","48.911111","0.000000","539.925926","0.000000","38.777778","499.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"117.875000","2159.625000",,,,,"0.000000","0.000000",,,"4862.250000","6444.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.955000",,"21.955000",,"21.955000",,,,,,,"4732.000000",,,,,"4391.916667",,"11.955556",,"491.666667",,,,"37.257143","1.200000","0.333333","2.711111","40.222222","0.000000","427.037037","0.000000","11.777778","413.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","935.625000",,,,,"0.000000","0.000000",,,"2645.500000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.781250",,"19.781250",,"19.781250",,,,,,,"4926.541667",,,,,"3957.250000",,"65.400000",,"155.577778",,,,"2099.600000","3.866667","0.333333","1.533333","10.355556","0.000000","150.925926","0.000000","41.555556","108.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"128.625000","338.250000",,,,,"0.000000","0.000000",,,"1353.375000","1542.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.461250",,"20.461250",,"20.461250",,,,,,,"4190.166667",,,,,"4093.083333",,"108.755556",,"237.866667",,,,"2259.885714","4.933333","1.111111","1.311111","16.088889","0.000000","223.444444","0.000000","53.888889","168.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.625000","609.125000",,,,,"0.000000","0.000000",,,"5263.875000","5494.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.978750",,"21.978750",,"21.978750",,,,,,,"3665.166667",,,,,"4396.541667",,"110.444444",,"582.111111",,,,"1797.857143","2.111111","0.266667","2.288889","38.155556","0.000000","418.333333","0.000000","21.666667","395.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"229.250000","1152.625000",,,,,"0.000000","0.000000",,,"4748.625000","5321.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.058333",,"23.058333",,"23.058333",,,,,,,"3673.916667",,,,,"4612.583333",,"115.222222",,"529.311111",,,,"1644.285714","2.644444","0.377778","1.688889","36.955556","0.000000","408.074074","0.000000","25.666667","379.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.125000","995.750000",,,,,"0.000000","0.000000",,,"3815.625000","3853.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.770000",,"22.770000",,"22.770000",,,,,,,"4052.916667",,,,,"4554.750000",,"199.977778",,"475.488889",,,,"1337.200000","9.244444","0.288889","1.600000","44.111111","0.000000","554.851852","0.000000","102.148148","451.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"394.250000","897.375000",,,,,"0.000000","0.000000",,,"3574.125000","3955.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.617500",,"19.617500",,"19.617500",,,,,,,"5295.583333",,,,,"3924.750000",,"124.866667",,"341.777778",,,,"32.371429","3.800000","0.222222","3.177778","32.333333","0.000000","374.296296","0.000000","41.074074","332.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"243.625000","634.625000",,,,,"0.000000","0.000000",,,"2470.375000","2752.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.918750",,"18.918750",,"18.918750",,,,,,,"5183.291667",,,,,"3784.458333",,"122.177778",,"313.577778",,,,"29.971429","3.977778","0.177778","2.222222","29.466667","0.000000","347.592593","0.000000","43.000000","303.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"245.500000","595.250000",,,,,"0.000000","0.000000",,,"2370.750000","2631.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.155417",,"18.155417",,"18.155417",,,,,,,"5161.291667",,,,,"3631.958333",,"42.066667",,"321.600000",,,,"33.314286","4.133333","0.155556","1.177778","32.844444","0.000000","382.259259","0.000000","45.037037","335.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"97.250000","613.125000",,,,,"0.000000","0.000000",,,"2246.625000","2691.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.621667",,"20.621667",,"20.621667",,,,,,,"4642.333333",,,,,"4125.375000",,"20.844444",,"396.044444",,,,"41.742857","5.666667","0.666667","1.022222","40.844444","0.000000","482.962963","0.000000","60.555556","420.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.250000","745.500000",,,,,"0.000000","0.000000",,,"2427.375000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.285000",,"19.285000",,"19.285000",,,,,,,"5316.500000",,,,,"3858.083333",,"34.133333",,"341.177778",,,,"35.028571","7.755556","0.155556","1.111111","31.288889","0.000000","409.185185","0.000000","83.222222","323.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.500000","672.375000",,,,,"0.000000","0.000000",,,"2312.125000","2894.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.031667",,"21.031667",,"21.031667",,,,,,,"4721.416667",,,,,"4207.083333",,"12.177778",,"419.200000",,,,"36.314286","1.666667","0.200000","0.800000","38.933333","0.000000","422.074074","0.000000","17.111111","403.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","746.250000",,,,,"0.000000","0.000000",,,"2353.875000","2799.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.256250",,"22.256250",,"22.256250",,,,,,,"4469.041667",,,,,"4452.208333",,"19.933333",,"401.955556",,,,"33.971429","2.511111","0.200000","0.933333","35.222222","0.000000","391.259259","0.000000","27.000000","362.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.625000","797.000000",,,,,"0.000000","0.000000",,,"2391.125000","3007.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.030000",,"22.030000",,"22.030000",,,,,,,"4128.125000",,,,,"4407.000000",,"21.711111",,"445.400000",,,,"37.228571","2.000000","0.266667","1.133333","39.000000","0.000000","426.333333","0.000000","22.333333","399.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.750000","967.375000",,,,,"0.000000","0.000000",,,"5382.875000","5977.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.772083",,"26.772083",,"26.772083",,,,,,,"3155.500000",,,,,"5355.333333",,"16.333333",,"355.155556",,,,"25.342857","1.666667","0.933333","1.666667","26.466667","0.000000","292.333333","0.000000","17.666667","273.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.375000","772.625000",,,,,"0.000000","0.000000",,,"3880.625000","4363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.993750",,"30.993750",,"30.993750",,,,,,,"2489.625000",,,,,"6199.458333",,"3.600000",,"853.111111",,,,"32.457143","0.977778","0.266667","9.711111","34.955556","0.000000","367.740741","0.000000","9.555556","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1611.000000",,,,,"0.000000","0.000000",,,"3485.875000","4789.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.934167",,"28.934167",,"28.934167",,,,,,,"2990.500000",,,,,"5787.833333",,"19.288889",,"635.600000",,,,"1886.085714","2.555556","0.466667","3.222222","23.000000","0.000000","262.629630","0.000000","27.370370","233.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.375000","1233.250000",,,,,"0.000000","0.000000",,,"2735.000000","3695.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.990417",,"26.990417",,"26.990417",,,,,,,"2782.541667",,,,,"5398.750000",,"9.200000",,"400.511111",,,,"2459.628571","1.444444","0.422222","4.533333","15.088889","0.000000","175.444444","0.000000","18.703704","155.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","746.375000",,,,,"0.000000","0.000000",,,"1820.250000","2331.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.690000",,"27.690000",,"27.690000",,,,,,,"2734.083333",,,,,"5539.041667",,"19.111111",,"519.577778",,,,"1731.657143","2.444444","0.311111","2.711111","30.400000","0.000000","338.777778","0.000000","25.111111","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.375000","988.375000",,,,,"0.000000","0.000000",,,"3288.625000","3676.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.105833",,"32.105833",,"32.105833",,,,,,,"2585.583333",,,,,"6422.250000",,"3.866667",,"516.022222",,,,"1737.000000","0.866667","0.044444","1.955556","39.266667","0.000000","411.703704","0.000000","8.666667","401.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","952.500000",,,,,"0.000000","0.000000",,,"2538.250000","3243.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.821667",,"28.821667",,"28.821667",,,,,,,"2430.958333",,,,,"5765.458333",,"319.444444",,"489.933333",,,,"1317.257143","7.844444","2.088889","2.866667","35.977778","0.000000","449.259259","0.000000","81.814815","365.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"621.125000","914.625000",,,,,"0.000000","0.000000",,,"4071.000000","4154.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.548333",,"25.548333",,"25.548333",,,,,,,"3626.416667",,,,,"5110.625000",,"6.400000",,"440.111111",,,,"30.857143","1.044444","1.244444","1.777778","33.177778","0.000000","348.666667","0.000000","10.333333","337.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","920.125000",,,,,"0.000000","0.000000",,,"3585.375000","4280.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.844583",,"23.844583",,"23.844583",,,,,,,"3946.166667",,,,,"4769.958333",,"3.111111",,"355.755556",,,,"25.000000","0.933333","0.866667","2.511111","26.666667","0.000000","283.592593","0.000000","9.333333","272.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","914.750000",,,,,"0.000000","0.000000",,,"5480.500000","6309.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.641667",,"25.641667",,"25.641667",,,,,,,"3980.291667",,,,,"5129.416667",,"3.133333",,"345.644444",,,,"25.742857","1.022222","0.444444","1.800000","27.555556","0.000000","296.148148","0.000000","9.851852","284.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","694.875000",,,,,"0.000000","0.000000",,,"2156.000000","2752.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.242500",,"27.242500",,"27.242500",,,,,,,"3602.958333",,,,,"5449.250000",,"3.600000",,"426.177778",,,,"31.685714","0.955556","0.288889","1.577778","34.355556","0.000000","365.296296","0.000000","9.629630","354.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","856.625000",,,,,"0.000000","0.000000",,,"3376.125000","4004.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.987917",,"24.987917",,"24.987917",,,,,,,"3892.250000",,,,,"4998.375000",,"3.266667",,"384.622222",,,,"28.800000","0.688889","0.977778","1.777778","31.155556","0.000000","327.333333","0.000000","7.407407","318.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","918.625000",,,,,"0.000000","0.000000",,,"5638.625000","6171.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.180833",,"26.180833",,"26.180833",,,,,,,"3954.333333",,,,,"5237.250000",,"3.666667",,"336.822222",,,,"26.628571","0.933333","0.355556","1.755556","28.400000","0.000000","299.518519","0.000000","9.407407","288.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","17.571429",,,,,"0.000000","0.000000",,,"1933.875000","2362.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.375417",,"24.375417",,"24.375417",,,,,,,"3811.041667",,,,,"4875.875000",,"9.488889",,"384.800000",,,,"27.657143","1.600000","0.222222","4.333333","28.488889","0.000000","303.888889","0.000000","14.925926","286.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","688.125000",,,,,"0.000000","0.000000",,,"1897.375000","2363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.558333",,"25.558333",,"25.558333",,,,,,,"4546.125000",,,,,"5112.875000",,"22.066667",,"290.377778",,,,"19.800000","1.911111","0.644444","3.000000","19.400000","0.000000","221.777778","0.000000","21.740741","196.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.125000","564.125000",,,,,"0.000000","0.000000",,,"1678.125000","2137.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.363333",,"20.363333",,"20.363333",,,,,,,"5021.291667",,,,,"4073.833333",,"3.266667",,"544.933333",,,,"17.828571","0.777778","0.488889","4.511111","18.577778","0.000000","195.962963","0.000000","8.037037","186.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1023.625000",,,,,"0.000000","0.000000",,,"2298.125000","3142.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.050417",,"29.050417",,"29.050417",,,,,,,"2981.791667",,,,,"5810.958333",,"5.600000",,"471.577778",,,,"31.600000","1.022222","0.422222","2.488889","34.177778","0.000000","362.259259","0.000000","9.814815","351.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","876.875000",,,,,"0.000000","0.000000",,,"2333.750000","3005.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.135833",,"24.135833",,"24.135833",,,,,,,"4103.583333",,,,,"4827.875000",,"4.800000",,"427.222222",,,,"1936.885714","0.955556","0.444444","5.266667","31.044444","0.000000","330.555556","0.000000","9.629630","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","819.500000",,,,,"0.000000","0.000000",,,"2187.250000","2764.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.093333",,"23.093333",,"23.093333",,,,,,,"4516.666667",,,,,"4619.666667",,"3.733333",,"131.222222",,,,"2343.942857","0.800000","0.755556","4.933333","6.511111","0.000000","77.370370","0.000000","8.370370","67.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","259.125000",,,,,"0.000000","0.000000",,,"854.625000","1107.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.731667",,"24.731667",,"24.731667",,,,,,,"3873.416667",,,,,"4947.375000",,"4.311111",,"345.377778",,,,"1820.628571","0.977778","0.311111","2.266667","17.577778","0.000000","194.111111","0.000000","10.148148","181.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","656.500000",,,,,"0.000000","0.000000",,,"2409.625000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.020000",,"26.020000",,"26.020000",,,,,,,"3419.833333",,,,,"5204.916667",,"3.511111",,"409.622222",,,,"1622.628571","0.777778","0.155556","2.022222","31.466667","0.000000","339.296296","0.000000","8.148148","329.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","754.000000",,,,,"0.000000","0.000000",,,"2048.375000","2616.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.212083",,"23.212083",,"23.212083",,,,,,,"3907.083333",,,,,"4643.416667",,"3.577778",,"316.200000",,,,"1369.000000","0.866667","0.555556","1.733333","25.355556","0.000000","271.481481","0.000000","8.481481","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","807.000000",,,,,"0.000000","0.000000",,,"5782.500000","6142.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.110417",,"23.110417",,"23.110417",,,,,,,"4242.791667",,,,,"4623.250000",,"3.577778",,"409.088889",,,,"29.571429","0.866667","0.266667","1.933333","32.111111","0.000000","342.148148","0.000000","8.444444","332.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","820.500000",,,,,"0.000000","0.000000",,,"2967.375000","3440.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.886667",,"22.886667",,"22.886667",,,,,,,"4692.750000",,,,,"4578.291667",,"4.422222",,"338.311111",,,,"24.485714","0.977778","0.444444","1.377778","26.000000","0.000000","276.222222","0.000000","10.074074","264.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","613.750000",,,,,"0.000000","0.000000",,,"1764.500000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.199167",,"25.199167",,"25.199167",,,,,,,"4138.750000",,,,,"5040.583333",,"12.288889",,"486.866667",,,,"41.514286","3.266667","0.711111","1.733333","41.977778","0.000000","465.148148","0.000000","29.185185","428.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","927.375000",,,,,"0.000000","0.000000",,,"2607.250000","3191.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.387917",,"23.387917",,"23.387917",,,,,,,"4200.000000",,,,,"4678.791667",,"4.355556",,"459.266667",,,,"35.485714","1.133333","0.200000","1.488889","38.200000","0.000000","400.925926","0.000000","10.629630","388.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","820.375000",,,,,"0.000000","0.000000",,,"2342.250000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.585000",,"23.585000",,"23.585000",,,,,,,"4408.333333",,,,,"4717.833333",,"2.844444",,"427.600000",,,,"33.800000","0.977778","0.333333","2.377778","36.688889","0.000000","386.814815","0.000000","9.037037","376.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","817.500000",,,,,"0.000000","0.000000",,,"2398.875000","2851.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.860833",,"22.860833",,"22.860833",,,,,,,"4273.875000",,,,,"4573.208333",,"5.000000",,"617.400000",,,,"32.800000","0.977778","0.755556","2.800000","35.311111","0.000000","369.111111","0.000000","9.814815","358.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1178.375000",,,,,"0.000000","0.000000",,,"2931.375000","3814.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.021250",,"22.021250",,"22.021250",,,,,,,"4434.583333",,,,,"4405.208333",,"5.355556",,"931.066667",,,,"34.314286","1.066667","0.311111","4.022222","37.000000","0.000000","390.333333","0.000000","10.962963","377.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1743.125000",,,,,"0.000000","0.000000",,,"3817.250000","5044.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.584583",,"23.584583",,"23.584583",,,,,,,"4611.833333",,,,,"4717.833333",,"25.622222",,"365.155556",,,,"29.542857","2.311111","0.711111","1.888889","30.177778","0.000000","340.407407","0.000000","25.555556","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.500000","662.125000",,,,,"0.000000","0.000000",,,"2009.875000","2430.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.106250",,"21.106250",,"21.106250",,,,,,,"4887.875000",,,,,"4222.250000",,"103.400000",,"408.311111",,,,"27.400000","2.977778","0.422222","3.000000","27.511111","0.000000","319.222222","0.000000","32.370370","285.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","804.625000",,,,,"0.000000","0.000000",,,"2537.375000","2837.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.006667",,"29.006667",,"29.006667",,,,,,,"2160.541667",,,,,"5802.166667",,"182.555556",,"2337.155556",,,,"50.028571","3.911111","0.422222","3.888889","51.355556","0.000000","553.962963","0.000000","41.444444","511.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.750000","4417.375000",,,,,"0.000000","0.000000",,,"10063.375000","12718.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.353333",,"29.353333",,"29.353333",,,,,,,"2219.166667",,,,,"5871.708333",,"4.311111",,"367.688889",,,,"1833.342857","1.088889","0.266667","1.777778","24.555556","0.000000","264.111111","0.000000","10.111111","252.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","928.500000",,,,,"0.000000","0.000000",,,"5671.625000","6342.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.422083",,"34.422083",,"34.422083",,,,,,,"1030.708333",,,,,"6885.250000",,"3.488889",,"189.155556",,,,"2206.657143","0.844444","0.266667","1.288889","12.288889","0.000000","135.740741","0.000000","8.481481","126.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","389.125000",,,,,"0.000000","0.000000",,,"1684.000000","1917.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.240833",,"33.240833",,"33.240833",,,,,,,"1358.458333",,,,,"6649.250000",,"4.177778",,"470.688889",,,,"1726.771429","0.955556","0.222222","1.888889","38.022222","0.000000","404.814815","0.000000","9.296296","394.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","887.875000",,,,,"0.000000","0.000000",,,"3387.125000","3392.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.927500",,"30.927500",,"30.927500",,,,,,,"2188.666667",,,,,"6186.416667",,"3.777778",,"477.244444",,,,"1989.428571","0.911111","0.111111","1.622222","34.533333","0.000000","368.148148","0.000000","9.000000","357.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","894.875000",,,,,"0.000000","0.000000",,,"2517.500000","2988.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.624583",,"27.624583",,"27.624583",,,,,,,"3653.875000",,,,,"5525.583333",,"9.755556",,"369.333333",,,,"1366.742857","1.777778","0.222222","1.511111","34.488889","0.000000","370.000000","0.000000","16.777778","349.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","673.750000",,,,,"0.000000","0.000000",,,"2012.500000","2480.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.403750",,"21.403750",,"21.403750",,,,,,,"4175.625000",,,,,"4281.791667",,"39.111111",,"447.355556",,,,"38.914286","1.200000","2.577778","1.844444","41.933333","0.000000","442.592593","0.000000","11.481481","429.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"83.625000","822.000000",,,,,"0.000000","0.000000",,,"2578.375000","3057.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.831250",,"20.831250",,"20.831250",,,,,,,"4506.458333",,,,,"4167.416667",,"4.177778",,"332.466667",,,,"24.942857","0.888889","0.266667","1.466667","26.666667","0.000000","283.703704","0.000000","9.074074","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","601.625000",,,,,"0.000000","0.000000",,,"1725.000000","2297.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.585833",,"21.585833",,"21.585833",,,,,,,"4385.916667",,,,,"4317.916667",,"64.755556",,"690.622222",,,,"40.771429","1.955556","0.688889","2.977778","43.200000","0.000000","460.111111","0.000000","20.518519","438.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.875000","1303.500000",,,,,"0.000000","0.000000",,,"3527.625000","4381.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.914583",,"19.914583",,"19.914583",,,,,,,"4630.958333",,,,,"3984.125000",,"7.133333",,"279.466667",,,,"22.000000","1.333333","0.244444","1.088889","22.844444","0.000000","249.851852","0.000000","13.740741","234.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","563.625000",,,,,"0.000000","0.000000",,,"1700.250000","2185.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.425417",,"20.425417",,"20.425417",,,,,,,"4162.375000",,,,,"4085.833333",,"3.777778",,"408.511111",,,,"34.771429","0.977778","0.222222","1.422222","37.466667","0.000000","391.740741","0.000000","9.592593","380.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","216.714286",,,,,"0.000000","0.000000",,,"4464.375000","5315.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.187917",,"20.187917",,"20.187917",,,,,,,"4513.583333",,,,,"4038.583333",,"3.888889",,"325.111111",,,,"28.485714","0.800000","0.244444","1.022222","30.755556","0.000000","324.074074","0.000000","8.333333","314.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","878.000000",,,,,"0.000000","0.000000",,,"5278.500000","6432.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.915833",,"23.915833",,"23.915833",,,,,,,"4044.875000",,,,,"4784.166667",,"4.511111",,"484.955556",,,,"38.000000","0.977778","0.400000","2.200000","41.288889","0.000000","434.481481","0.000000","9.666667","423.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1196.875000",,,,,"0.000000","0.000000",,,"5820.000000","7306.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.827917",,"22.827917",,"22.827917",,,,,,,"4715.666667",,,,,"4566.708333",,"24.000000",,"452.733333",,,,"30.628571","2.244444","0.222222","2.577778","31.377778","0.000000","347.259259","0.000000","24.592593","318.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.625000","1128.500000",,,,,"0.000000","0.000000",,,"5632.000000","7114.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.049583",,"25.049583",,"25.049583",,,,,,,"3711.625000",,,,,"5010.541667",,"3.844444",,"411.133333",,,,"31.314286","0.688889","0.155556","1.555556","33.933333","0.000000","351.481481","0.000000","7.333333","343.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1039.375000",,,,,"0.000000","0.000000",,,"5402.000000","6802.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.970000",,"26.970000",,"26.970000",,,,,,,"3415.541667",,,,,"5394.833333",,"3.488889",,"627.511111",,,,"46.371429","1.022222","0.288889","1.600000","50.333333","0.000000","522.222222","0.000000","10.185185","510.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.750000","1465.125000",,,,,"0.000000","0.000000",,,"6322.000000","7983.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.988333",,"22.988333",,"22.988333",,,,,,,"4584.083333",,,,,"4598.666667",,"404.111111",,"262.288889",,,,"1861.200000","10.800000","0.377778","2.600000","9.666667","0.000000","218.888889","0.000000","118.518519","98.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"725.375000","785.250000",,,,,"0.000000","0.000000",,,"6485.750000","7040.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.033333",,"26.033333",,"26.033333",,,,,,,"3534.041667",,,,,"5207.458333",,"268.933333",,"734.266667",,,,"2347.085714","8.244444","0.555556","4.000000","43.244444","0.000000","523.185185","0.000000","86.111111","432.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"484.250000","1650.875000",,,,,"0.000000","0.000000",,,"7747.875000","9121.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.753333",,"22.753333",,"22.753333",,,,,,,"4215.791667",,,,,"4551.625000",,"116.533333",,"686.733333",,,,"1781.085714","3.422222","0.533333","3.088889","14.111111","0.000000","175.666667","0.000000","36.518519","137.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"342.000000","1281.750000",,,,,"0.000000","0.000000",,,"6225.625000","7415.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.508750",,"25.508750",,"25.508750",,,,,,,"3113.041667",,,,,"5102.541667",,"295.533333",,"1229.333333",,,,"1659.000000","4.711111","0.622222","2.800000","45.266667","0.000000","504.481481","0.000000","50.518519","452.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"638.500000","2849.750000",,,,,"0.000000","0.000000",,,"10561.875000","12131.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.012917",,"24.012917",,"24.012917",,,,,,,"3588.500000",,,,,"4803.500000",,"46.933333",,"726.111111",,,,"1502.542857","2.200000","0.533333","2.088889","38.222222","0.000000","412.814815","0.000000","22.777778","388.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.375000","1656.625000",,,,,"0.000000","0.000000",,,"6671.875000","8329.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.888750",,"20.888750",,"20.888750",,,,,,,"4954.666667",,,,,"4178.583333",,"449.111111",,"1191.933333",,,,"36.714286","9.555556","0.577778","2.644444","31.200000","0.000000","416.518519","0.000000","104.777778","310.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"784.000000","2513.250000",,,,,"0.000000","0.000000",,,"9665.500000","11292.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.364583",,"20.364583",,"20.364583",,,,,,,"5137.708333",,,,,"4073.708333",,"854.622222",,"604.288889",,,,"47.000000","19.133333","0.355556","3.844444","33.533333","0.000000","549.444444","0.000000","210.296296","337.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1735.875000","1457.875000",,,,,"0.000000","0.000000",,,"10736.375000","10653.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.767917",,"20.767917",,"20.767917",,,,,,,"4757.625000",,,,,"4154.500000",,"860.577778",,"908.533333",,,,"53.685714","19.555556","0.622222","4.244444","40.577778","0.000000","623.925926","0.000000","215.370370","407.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1625.375000","2014.500000",,,,,"0.000000","0.000000",,,"11235.875000","11732.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.132500",,"21.132500",,"21.132500",,,,,,,"4617.833333",,,,,"4227.541667",,"736.066667",,"774.977778",,,,"45.657143","16.355556","0.377778","4.422222","34.755556","0.000000","529.518519","0.000000","178.814815","349.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.285714","1546.625000",,,,,"0.000000","0.000000",,,"10344.000000","9835.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.032500",,"22.032500",,"22.032500",,,,,,,"4439.125000",,,,,"4407.500000",,"6.955556",,"1212.955556",,,,"33.200000","1.444444","0.266667","2.533333","35.044444","0.000000","367.185185","0.000000","14.888889","350.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.625000","2496.750000",,,,,"0.000000","0.000000",,,"6941.375000","8642.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.887083",,"22.887083",,"22.887083",,,,,,,"4623.125000",,,,,"4578.166667",,"36.111111",,"639.933333",,,,"33.885714","4.066667","0.288889","2.244444","33.533333","0.000000","384.777778","0.000000","44.148148","339.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.875000","1476.375000",,,,,"0.000000","0.000000",,,"7324.875000","8542.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.245000",,"24.245000",,"24.245000",,,,,,,"4126.791667",,,,,"4850.000000",,"40.022222",,"1423.977778",,,,"53.914286","3.088889","0.511111","2.844444","56.822222","0.000000","613.888889","0.000000","33.629630","578.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"102.000000","2594.875000",,,,,"0.000000","0.000000",,,"5679.000000","7386.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.482917",,"23.482917",,"23.482917",,,,,,,"4209.791667",,,,,"4697.541667",,"59.688889",,"2362.977778",,,,"59.542857","3.977778","0.422222","2.933333","60.444444","0.000000","631.888889","0.000000","42.629630","584.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.250000","11.571429",,,,,"0.000000","0.000000",,,"8825.000000","11966.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.870833",,"22.870833",,"22.870833",,,,,,,"4536.250000",,,,,"4575.208333",,"140.377778",,"1395.600000",,,,"47.342857","5.200000","0.400000","4.711111","46.800000","0.000000","513.518519","0.000000","56.444444","455.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"292.250000","2293.625000",,,,,"0.000000","0.000000",,,"5536.625000","6930.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.235000",,"27.235000",,"27.235000",,,,,,,"3163.125000",,,,,"5447.750000",,"1359.911111",,"734.088889",,,,"55.457143","25.533333","1.000000","1.911111","36.444444","0.000000","641.185185","0.000000","280.333333","359.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2495.500000","1715.250000",,,,,"0.000000","0.000000",,,"10135.250000","8688.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.585417",,"27.585417",,"27.585417",,,,,,,"3161.750000",,,,,"5518.000000",,"722.422222",,"1016.733333",,,,"2006.200000","19.288889","0.422222","5.555556","35.800000","0.000000","560.555556","0.000000","211.629630","347.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1381.875000","1915.750000",,,,,"0.000000","0.000000",,,"7565.500000","7570.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.499167",,"31.499167",,"31.499167",,,,,,,"1918.166667",,,,,"6300.625000",,"679.711111",,"926.866667",,,,"2397.942857","15.866667","0.377778","2.800000","45.822222","0.000000","626.740741","0.000000","173.740741","451.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1407.875000","1750.500000",,,,,"0.000000","0.000000",,,"7460.375000","7272.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.340833",,"24.340833",,"24.340833",,,,,,,"3643.541667",,,,,"4869.291667",,"1056.933333",,"231.400000",,,,"2063.371429","19.688889","0.333333","1.488889","13.733333","0.000000","357.777778","0.000000","215.925926","140.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1918.250000","473.250000",,,,,"0.000000","0.000000",,,"6299.750000","4447.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.610417",,"27.610417",,"27.610417",,,,,,,"2806.791667",,,,,"5523.000000",,"1150.311111",,"584.244444",,,,"1536.857143","28.400000","0.311111","1.466667","43.444444","0.000000","745.814815","0.000000","312.185185","432.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2300.125000","1068.750000",,,,,"0.000000","0.000000",,,"9381.375000","7172.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.976667",,"27.976667",,"27.976667",,,,,,,"2958.166667",,,,,"5596.125000",,"1105.111111",,"1086.511111",,,,"1245.657143","21.488889","0.400000","4.555556","48.955556","0.000000","716.444444","0.000000","236.592593","478.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2038.250000","2052.750000",,,,,"0.000000","0.000000",,,"9701.125000","8926.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.550000",,"26.550000",,"26.550000",,,,,,,"3721.500000",,,,,"5310.958333",,"614.377778",,"868.866667",,,,"54.228571","13.822222","0.222222","2.333333","46.288889","0.000000","609.629630","0.000000","151.851852","456.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1289.500000","1618.125000",,,,,"0.000000","0.000000",,,"7066.375000","6734.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.659583",,"28.659583",,"28.659583",,,,,,,"3554.125000",,,,,"5733.166667",,"5.666667",,"418.644444",,,,"34.000000","1.066667","0.244444","1.800000","36.266667","0.000000","373.740741","0.000000","11.296296","361.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.125000","970.375000",,,,,"0.000000","0.000000",,,"5646.625000","6314.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.708333",,"26.708333",,"26.708333",,,,,,,"4164.916667",,,,,"5342.708333",,"51.022222",,"291.755556",,,,"24.428571","1.844444","1.800000","1.288889","24.955556","0.000000","269.703704","0.000000","19.333333","249.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"111.625000","605.125000",,,,,"0.000000","0.000000",,,"3260.125000","3502.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.214583",,"27.214583",,"27.214583",,,,,,,"3649.208333",,,,,"5443.875000",,"5.866667",,"431.933333",,,,"35.114286","1.066667","0.266667","0.955556","37.444444","0.000000","384.111111","0.000000","11.222222","371.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","794.125000",,,,,"0.000000","0.000000",,,"2245.375000","2754.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.018333",,"26.018333",,"26.018333",,,,,,,"3707.875000",,,,,"5204.541667",,"5.355556",,"423.355556",,,,"34.085714","1.022222","0.200000","1.422222","36.111111","0.000000","364.629630","0.000000","9.814815","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","821.750000",,,,,"0.000000","0.000000",,,"2301.375000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.464167",,"27.464167",,"27.464167",,,,,,,"3884.833333",,,,,"5493.750000",,"10.155556",,"442.866667",,,,"34.485714","1.622222","0.355556","1.622222","35.777778","0.000000","368.407407","0.000000","15.222222","350.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","808.250000",,,,,"0.000000","0.000000",,,"2240.000000","2816.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.701250",,"17.701250",,"17.701250",,,,,,,"5011.291667",,,,,"3541.208333",,"1284.777778",,"695.266667",,,,"53.142857","23.266667","0.355556","3.688889","36.022222","0.000000","611.407407","0.000000","255.370370","354.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2433.625000","1326.125000",,,,,"0.000000","0.000000",,,"9949.000000","8372.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.350417",,"15.350417",,"15.350417",,,,,,,"5382.250000",,,,,"3071.000000",,"1021.622222",,"401.822222",,,,"47.142857","24.044444","0.311111","1.733333","28.466667","0.000000","552.148148","0.000000","265.185185","283.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1899.125000","1010.125000",,,,,"0.000000","0.000000",,,"10457.625000","9363.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.290833",,"21.290833",,"21.290833",,,,,,,"3619.541667",,,,,"4259.166667",,"1152.755556",,"1107.355556",,,,"66.057143","22.422222","0.288889","2.755556","51.244444","0.000000","752.481481","0.000000","246.555556","504.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.000000","2143.750000",,,,,"0.000000","0.000000",,,"11082.375000","10263.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.514583",,"17.514583",,"17.514583",,,,,,,"5009.291667",,,,,"3503.916667",,"509.822222",,"551.244444",,,,"39.342857","22.688889","0.466667","2.733333","21.822222","0.000000","474.296296","0.000000","251.000000","222.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1031.750000","1032.000000",,,,,"0.000000","0.000000",,,"5165.250000","5015.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.677083",,"16.677083",,"16.677083",,,,,,,"4875.791667",,,,,"3336.375000",,"1580.733333",,"1680.155556",,,,"2085.142857","37.311111","0.688889","4.422222","31.422222","0.000000","706.518519","0.000000","410.666667","294.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2951.750000","14.000000",,,,,"0.000000","0.000000",,,"13374.875000","12946.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.907917",,"20.907917",,"20.907917",,,,,,,"3977.750000",,,,,"4182.583333",,"1303.755556",,"1908.777778",,,,"2471.485714","31.622222","1.066667","7.533333","51.777778","0.000000","838.925926","0.000000","347.185185","490.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.714286","3601.125000",,,,,"0.000000","0.000000",,,"13378.000000","13419.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.235000",,"17.235000",,"17.235000",,,,,,,"5147.250000",,,,,"3447.916667",,"460.266667",,"927.022222",,,,"1903.028571","16.422222","0.466667","4.577778","14.866667","0.000000","325.148148","0.000000","180.962963","143.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1584.750000","1394.000000",,,,,"0.000000","0.000000",,,"14222.625000","6818.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.307083",,"20.307083",,"20.307083",,,,,,,"3968.958333",,,,,"4062.708333",,"34.555556",,"1291.622222",,,,"1599.142857","3.355556","1.266667","14.333333","28.288889","0.000000","316.296296","0.000000","36.407407","278.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1666.625000","3053.125000",,,,,"0.000000","0.000000",,,"30891.750000","13841.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"16.724167",,"16.724167",,"16.724167",,,,,,,"5358.458333",,,,,"3345.833333",,"10.844444",,"2037.777778",,,,"1145.828571","1.466667","6.844444","39.977778","22.822222","0.000000","233.962963","0.000000","16.037037","215.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"297.250000","3983.375000",,,,,"0.000000","0.000000",,,"11017.000000","11143.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.643750",,"13.643750",,"13.643750",,,,,,,"6606.375000",,,,,"2729.666667",,"7.400000",,"491.866667",,,,"17.371429","1.177778","1.022222","19.600000","17.777778","0.000000","197.666667","0.000000","11.962963","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"80.750000","1036.250000",,,,,"0.000000","0.000000",,,"3139.000000","3352.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"12.636667",,"12.636667",,"12.636667",,,,,,,"6646.916667",,,,,"2528.291667",,"4.911111",,"421.444444",,,,"18.114286","1.044444","0.733333","15.133333","19.000000","0.000000","209.444444","0.000000","10.148148","197.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","809.375000",,,,,"0.000000","0.000000",,,"1915.125000","2591.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"14.670000",,"14.670000",,"14.670000",,,,,,,"6072.541667",,,,,"2934.791667",,"10.488889",,"254.955556",,,,"17.685714","1.533333","1.000000","4.444444","17.533333","0.000000","197.592593","0.000000","14.518519","180.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","496.125000",,,,,"0.000000","0.000000",,,"1451.375000","1772.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"11.757083",,"11.757083",,"11.757083",,,,,,,"7023.958333",,,,,"2352.333333",,"20.555556",,"68.733333",,,,"5.800000","1.222222","1.866667","3.222222","5.088889","0.000000","69.037037","0.000000","11.962963","55.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.250000","127.000000",,,,,"0.000000","0.000000",,,"654.750000","682.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.686667",,"15.686667",,"15.686667",,,,,,,"5678.291667",,,,,"3138.208333",,"3.288889",,"249.177778",,,,"19.171429","0.844444","0.088889","3.266667","20.266667","0.000000","216.296296","0.000000","8.296296","206.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","449.250000",,,,,"0.000000","0.000000",,,"1368.250000","1697.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"15.884167",,"15.884167",,"15.884167",,,,,,,"5630.000000",,,,,"3177.666667",,"4.577778",,"322.666667",,,,"23.400000","1.044444","0.244444","2.533333","24.955556","0.000000","269.629630","0.000000","10.333333","257.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","631.000000",,,,,"0.000000","0.000000",,,"1798.125000","2281.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"13.777083",,"13.777083",,"13.777083",,,,,,,"6263.291667",,,,,"2756.500000",,"3.622222",,"273.755556",,,,"24.514286","0.777778","0.200000","1.844444","26.466667","0.000000","281.518519","0.000000","7.888889","272.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","524.375000",,,,,"0.000000","0.000000",,,"1628.125000","1966.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.099583",,"19.099583",,"19.099583",,,,,,,"4743.125000",,,,,"3820.875000",,"22.844444",,"342.533333",,,,"24.914286","2.000000","0.244444","2.400000","25.577778","0.000000","294.444444","0.000000","22.111111","268.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.625000","619.500000",,,,,"0.000000","0.000000",,,"1884.375000","2355.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.419583",,"28.419583",,"28.419583",,,,,,,"2169.083333",,,,,"5684.875000",,"3.866667",,"646.266667",,,,"43.714286","0.866667","0.244444","1.511111","48.311111","0.000000","517.074074","0.000000","9.148148","506.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1203.250000",,,,,"0.000000","0.000000",,,"3161.125000","4220.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.884167",,"33.884167",,"33.884167",,,,,,,"793.750000",,,,,"6777.958333",,"8.777778",,"642.777778",,,,"41.171429","1.133333","0.311111","1.755556","45.088889","0.000000","485.407407","0.000000","12.185185","472.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","1310.375000",,,,,"0.000000","0.000000",,,"5276.625000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.700417",,"30.700417",,"30.700417",,,,,,,"936.666667",,,,,"6141.000000",,"34.133333",,"1127.155556",,,,"1465.457143","30.133333","0.333333","4.622222","57.044444","0.000000","840.851852","0.000000","255.481481","580.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6842.875000","2322.125000",,,,,"0.000000","0.000000",,,"100165.250000","24503.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"36.037083",,"36.037083",,"36.037083",,,,,,,"1285.083333",,,,,"7208.291667",,"6.844444",,"357.155556",,,,"2660.600000","4.355556","0.488889","2.800000","24.822222","0.000000","307.777778","0.000000","38.370370","266.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.875000","716.875000",,,,,"0.000000","0.000000",,,"5619.750000","3289.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.591667",,"31.591667",,"31.591667",,,,,,,"2267.666667",,,,,"6319.208333",,"5.622222",,"432.044444",,,,"2012.942857","1.288889","0.622222","2.577778","34.755556","0.000000","385.925926","0.000000","12.296296","372.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","797.750000",,,,,"0.000000","0.000000",,,"2391.000000","2918.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.374167",,"30.374167",,"30.374167",,,,,,,"2500.583333",,,,,"6075.875000",,"3.000000",,"800.622222",,,,"1996.600000","0.800000","0.244444","2.311111","65.066667","0.000000","696.111111","0.000000","8.148148","686.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.000000","1476.750000",,,,,"0.000000","0.000000",,,"4373.250000","5211.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.625000",,"27.625000",,"27.625000",,,,,,,"2838.000000",,,,,"5525.750000",,"4.866667",,"582.488889",,,,"1094.257143","0.955556","0.844444","1.311111","49.822222","0.000000","544.370370","0.000000","9.814815","533.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.500000","1138.000000",,,,,"0.000000","0.000000",,,"3051.875000","3931.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.592917",,"22.592917",,"22.592917",,,,,,,"4276.833333",,,,,"4519.416667",,"4.111111",,"618.711111",,,,"50.828571","0.688889","0.088889","1.533333","56.888889","0.000000","611.925926","0.000000","7.592593","603.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","16.428571",,,,,"0.000000","0.000000",,,"3246.625000","4274.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.680417",,"20.680417",,"20.680417",,,,,,,"4539.083333",,,,,"4137.166667",,"3.555556",,"443.822222",,,,"33.485714","1.022222","0.088889","1.733333","37.000000","0.000000","408.629630","0.000000","9.481481","397.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","851.750000",,,,,"0.000000","0.000000",,,"2333.375000","3082.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.137917",,"21.137917",,"21.137917",,,,,,,"4639.083333",,,,,"4228.583333",,"4.333333",,"548.533333",,,,"46.228571","0.911111","0.244444","2.377778","51.600000","0.000000","560.703704","0.000000","8.851852","550.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1040.875000",,,,,"0.000000","0.000000",,,"2947.625000","3860.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.762083",,"19.762083",,"19.762083",,,,,,,"4567.791667",,,,,"3953.291667",,"4.400000",,"592.800000",,,,"52.542857","0.955556","0.733333","1.066667","58.977778","0.000000","646.222222","0.000000","9.074074","635.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","1115.500000",,,,,"0.000000","0.000000",,,"3134.750000","4069.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.950417",,"22.950417",,"22.950417",,,,,,,"3818.916667",,,,,"4590.958333",,"4.222222",,"721.133333",,,,"62.342857","0.955556","0.622222","1.155556","69.733333","0.000000","749.629630","0.000000","9.222222","738.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1371.125000",,,,,"0.000000","0.000000",,,"3664.750000","4854.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.935000",,"22.935000",,"22.935000",,,,,,,"3686.208333",,,,,"4588.125000",,"9.288889",,"644.888889",,,,"54.342857","1.577778","0.133333","1.066667","59.955556","0.000000","658.296296","0.000000","14.703704","640.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1186.750000",,,,,"0.000000","0.000000",,,"3322.000000","4221.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.317500",,"22.317500",,"22.317500",,,,,,,"4577.541667",,,,,"4464.333333",,"3.977778",,"697.644444",,,,"58.885714","0.844444","0.133333","0.911111","66.133333","0.000000","717.814815","0.000000","8.629630","707.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1348.000000",,,,,"0.000000","0.000000",,,"4048.625000","5124.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.851250",,"24.851250",,"24.851250",,,,,,,"2913.458333",,,,,"4971.041667",,"28.022222",,"791.111111",,,,"67.771429","2.555556","0.466667","1.333333","73.977778","0.000000","815.259259","0.000000","27.814815","783.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.500000","1696.125000",,,,,"0.000000","0.000000",,,"7658.250000","8914.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.849167",,"21.849167",,"21.849167",,,,,,,"3987.916667",,,,,"4370.666667",,"3.600000",,"575.622222",,,,"37.514286","0.955556","0.444444","3.311111","42.044444","0.000000","469.851852","0.000000","9.148148","459.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","1129.250000",,,,,"0.000000","0.000000",,,"3691.625000","4527.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.592500",,"26.592500",,"26.592500",,,,,,,"2948.541667",,,,,"5319.500000",,"3.333333",,"741.222222",,,,"60.942857","0.844444","0.088889","1.977778","68.688889","0.000000","744.370370","0.000000","8.074074","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.375000","1399.125000",,,,,"0.000000","0.000000",,,"3833.875000","5015.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.259583",,"23.259583",,"23.259583",,,,,,,"3991.458333",,,,,"4652.958333",,"2.577778",,"560.288889",,,,"2218.914286","0.844444","0.266667","2.666667","46.711111","0.000000","510.814815","0.000000","8.222222","501.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.750000","1046.875000",,,,,"0.000000","0.000000",,,"2781.750000","3624.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.740833",,"24.740833",,"24.740833",,,,,,,"3841.958333",,,,,"4948.833333",,"4.466667",,"399.466667",,,,"2771.942857","0.933333","0.688889","1.844444","33.444444","0.000000","374.666667","0.000000","9.037037","364.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","820.125000",,,,,"0.000000","0.000000",,,"2336.500000","3055.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.040000",,"24.040000",,"24.040000",,,,,,,"3610.625000",,,,,"4808.833333",,"3.800000",,"336.311111",,,,"2002.485714","0.777778","0.244444","2.755556","27.955556","0.000000","312.222222","0.000000","8.222222","302.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.750000","632.250000",,,,,"0.000000","0.000000",,,"2360.500000","2502.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.786250",,"27.786250",,"27.786250",,,,,,,"3126.375000",,,,,"5558.375000",,"2.622222",,"636.155556",,,,"1834.285714","0.933333","0.177778","1.288889","48.844444","0.000000","529.444444","0.000000","8.518519","519.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1185.375000",,,,,"0.000000","0.000000",,,"3201.125000","3944.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.118750",,"23.118750",,"23.118750",,,,,,,"4047.208333",,,,,"4624.875000",,"4.155556",,"575.622222",,,,"348.000000","0.955556","0.577778","1.066667","51.466667","0.000000","548.111111","0.000000","9.444444","537.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","1085.750000",,,,,"0.000000","0.000000",,,"2990.000000","3775.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.070000",,"20.070000",,"20.070000",,,,,,,"4379.375000",,,,,"4015.125000",,"2.511111",,"394.911111",,,,"32.657143","0.933333","0.088889","2.288889","35.666667","0.000000","382.518519","0.000000","8.444444","372.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","764.875000",,,,,"0.000000","0.000000",,,"2210.875000","2806.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.266667",,"21.266667",,"21.266667",,,,,,,"4952.750000",,,,,"4254.208333",,"9.755556",,"455.800000",,,,"39.028571","1.955556","0.088889","1.022222","41.488889","0.000000","458.370370","0.000000","17.925926","436.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","842.500000",,,,,"0.000000","0.000000",,,"2332.500000","3041.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.521250",,"22.521250",,"22.521250",,,,,,,"3924.583333",,,,,"4505.041667",,"3.155556",,"508.266667",,,,"38.942857","0.688889","0.177778","1.666667","43.111111","0.000000","462.259259","0.000000","7.259259","453.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","947.750000",,,,,"0.000000","0.000000",,,"2600.125000","3304.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.841667",,"19.841667",,"19.841667",,,,,,,"4871.375000",,,,,"3969.250000",,"2.422222",,"438.422222",,,,"35.085714","0.755556","0.133333","1.133333","38.400000","0.000000","406.370370","0.000000","7.444444","397.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","882.250000",,,,,"0.000000","0.000000",,,"2997.250000","3664.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.432500",,"22.432500",,"22.432500",,,,,,,"3864.625000",,,,,"4487.416667",,"4.111111",,"463.488889",,,,"36.971429","0.955556","0.177778","1.266667","40.644444","0.000000","436.444444","0.000000","9.185185","425.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1066.125000",,,,,"0.000000","0.000000",,,"6484.625000","7204.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.970417",,"20.970417",,"20.970417",,,,,,,"4753.125000",,,,,"4194.791667",,"2.688889",,"459.222222",,,,"34.342857","0.933333","0.088889","1.622222","37.666667","0.000000","406.037037","0.000000","8.888889","395.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","928.625000",,,,,"0.000000","0.000000",,,"2739.125000","3488.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.691250",,"20.691250",,"20.691250",,,,,,,"5296.250000",,,,,"4139.166667",,"7.311111",,"322.377778",,,,"24.971429","1.711111","0.288889","3.511111","26.222222","0.000000","294.777778","0.000000","18.296296","275.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","606.000000",,,,,"0.000000","0.000000",,,"1736.375000","2189.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.491250",,"22.491250",,"22.491250",,,,,,,"3847.916667",,,,,"4499.541667",,"21.822222",,"531.533333",,,,"43.971429","2.000000","0.644444","1.977778","47.311111","0.000000","523.925926","0.000000","21.629630","498.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.625000","982.500000",,,,,"0.000000","0.000000",,,"2818.875000","3579.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.157083",,"29.157083",,"29.157083",,,,,,,"1794.333333",,,,,"5832.166667",,"3.000000",,"983.066667",,,,"43.771429","0.666667","0.311111","2.822222","48.266667","0.000000","506.740741","0.000000","7.296296","498.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1871.625000",,,,,"0.000000","0.000000",,,"4207.875000","5711.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.200417",,"26.200417",,"26.200417",,,,,,,"2723.375000",,,,,"5240.833333",,"3.844444",,"740.444444",,,,"32.028571","0.888889","0.288889","4.933333","35.022222","0.000000","375.370370","0.000000","8.888889","365.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1434.000000",,,,,"0.000000","0.000000",,,"3506.250000","4709.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.379167",,"27.379167",,"27.379167",,,,,,,"2607.666667",,,,,"5477.125000",,"8.666667",,"1239.644444",,,,"2014.057143","1.111111","0.822222","5.688889","58.355556","0.000000","625.740741","0.000000","11.629630","611.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"172.750000","42.857143",,,,,"0.000000","0.000000",,,"7086.875000","7615.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.535833",,"28.535833",,"28.535833",,,,,,,"1791.083333",,,,,"5708.250000",,"6.666667",,"738.977778",,,,"2322.228571","0.888889","1.022222","3.377778","70.377778","0.000000","760.740741","0.000000","11.629630","747.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1428.625000",,,,,"0.000000","0.000000",,,"3970.250000","5284.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.900000",,"22.900000",,"22.900000",,,,,,,"3955.416667",,,,,"4581.000000",,"2.977778",,"589.822222",,,,"2179.457143","0.711111","0.177778","1.466667","60.066667","0.000000","667.111111","0.000000","7.481481","658.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1113.875000",,,,,"0.000000","0.000000",,,"3451.500000","4167.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.657083",,"27.657083",,"27.657083",,,,,,,"3029.833333",,,,,"5532.208333",,"7.755556",,"894.844444",,,,"1867.257143","1.555556","0.088889","1.555556","73.177778","0.000000","799.037037","0.000000","13.629630","782.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","1681.125000",,,,,"0.000000","0.000000",,,"4914.125000","5990.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.860417",,"25.860417",,"25.860417",,,,,,,"2995.125000",,,,,"5172.875000",,"4.044444",,"757.755556",,,,"897.942857","0.933333","0.155556","1.888889","65.511111","0.000000","703.370370","0.000000","9.111111","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1465.625000",,,,,"0.000000","0.000000",,,"3812.375000","5269.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.463750",,"25.463750",,"25.463750",,,,,,,"3348.583333",,,,,"5093.958333",,"3.644444",,"852.466667",,,,"70.685714","0.844444","0.088889","1.022222","79.111111","0.000000","842.777778","0.000000","8.370370","833.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1581.500000",,,,,"0.000000","0.000000",,,"4110.375000","5472.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.671667",,"26.671667",,"26.671667",,,,,,,"3050.958333",,,,,"5335.500000",,"3.600000",,"994.933333",,,,"83.571429","0.933333","0.088889","1.666667","93.733333","0.000000","1001.851852","0.000000","9.000000","991.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1882.250000",,,,,"0.000000","0.000000",,,"4988.500000","6539.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.721250",,"24.721250",,"24.721250",,,,,,,"4267.291667",,,,,"4945.291667",,"2.444444",,"629.577778",,,,"52.057143","0.844444","0.177778","1.044444","58.377778","0.000000","634.296296","0.000000","7.925926","625.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1409.000000",,,,,"0.000000","0.000000",,,"7282.500000","8152.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.225000",,"25.225000",,"25.225000",,,,,,,"3514.500000",,,,,"5046.083333",,"2.422222",,"457.977778",,,,"37.514286","0.755556","0.088889","1.377778","41.244444","0.000000","439.259259","0.000000","7.370370","430.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","922.875000",,,,,"0.000000","0.000000",,,"3304.125000","4008.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.312500",,"27.312500",,"27.312500",,,,,,,"3346.750000",,,,,"5463.375000",,"2.600000",,"626.200000",,,,"53.828571","1.022222","0.088889","1.555556","59.200000","0.000000","619.814815","0.000000","9.074074","609.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","1202.875000",,,,,"0.000000","0.000000",,,"3281.125000","4236.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.802083",,"26.802083",,"26.802083",,,,,,,"3114.541667",,,,,"5361.166667",,"3.155556",,"613.600000",,,,"48.285714","0.755556","0.200000","1.288889","53.488889","0.000000","564.481481","0.000000","7.851852","555.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1157.000000",,,,,"0.000000","0.000000",,,"3078.625000","3986.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.740000",,"24.740000",,"24.740000",,,,,,,"3631.708333",,,,,"4948.916667",,"3.644444",,"642.755556",,,,"32.400000","0.977778","0.333333","5.088889","35.644444","0.000000","387.629630","0.000000","9.296296","377.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1142.250000",,,,,"0.000000","0.000000",,,"2838.250000","3666.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.794583",,"23.794583",,"23.794583",,,,,,,"4113.250000",,,,,"4759.916667",,"30.955556",,"587.666667",,,,"45.800000","2.511111","0.288889","2.044444","48.311111","0.000000","529.222222","0.000000","28.111111","497.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.500000","1143.500000",,,,,"0.000000","0.000000",,,"3186.125000","3999.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.688333",,"27.688333",,"27.688333",,,,,,,"2641.000000",,,,,"5538.375000",,"4.777778",,"559.355556",,,,"34.942857","0.777778","0.311111","1.155556","38.844444","0.000000","424.037037","0.000000","8.222222","414.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1069.750000",,,,,"0.000000","0.000000",,,"2778.125000","3568.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.544583",,"28.544583",,"28.544583",,,,,,,"2194.875000",,,,,"5710.000000",,"3.244444",,"639.377778",,,,"51.971429","0.844444","0.244444","1.888889","56.777778","0.000000","585.777778","0.000000","8.259259","576.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.125000","1192.125000",,,,,"0.000000","0.000000",,,"3251.625000","4120.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.278333",,"24.278333",,"24.278333",,,,,,,"3850.500000",,,,,"4856.416667",,"8.888889",,"445.688889",,,,"2322.685714","1.555556","0.177778","0.933333","37.911111","0.000000","413.814815","0.000000","13.777778","397.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","792.000000",,,,,"0.000000","0.000000",,,"2225.625000","2836.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.004583",,"27.004583",,"27.004583",,,,,,,"2876.166667",,,,,"5401.791667",,"3.311111",,"612.866667",,,,"2405.428571","0.844444","0.244444","1.000000","55.577778","0.000000","581.629630","0.000000","8.481481","571.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1144.250000",,,,,"0.000000","0.000000",,,"3469.250000","4078.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.611250",,"24.611250",,"24.611250",,,,,,,"3367.208333",,,,,"4923.291667",,"2.333333",,"531.511111",,,,"1936.628571","0.755556","0.088889","1.311111","37.666667","0.000000","403.703704","0.000000","7.222222","395.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.875000","1015.625000",,,,,"0.000000","0.000000",,,"3026.375000","3505.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.404583",,"28.404583",,"28.404583",,,,,,,"2404.625000",,,,,"5682.166667",,"47.577778",,"550.155556",,,,"1658.428571","3.066667","0.177778","1.711111","50.022222","0.000000","549.259259","0.000000","33.074074","514.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"106.625000","1055.875000",,,,,"0.000000","0.000000",,,"3570.000000","4385.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.889167",,"28.889167",,"28.889167",,,,,,,"2060.666667",,,,,"5778.708333",,"2.933333",,"602.466667",,,,"877.057143","0.800000","0.088889","1.333333","49.155556","0.000000","510.925926","0.000000","7.962963","501.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","1294.000000",,,,,"0.000000","0.000000",,,"7080.500000","7990.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.065000",,"26.065000",,"26.065000",,,,,,,"3938.458333",,,,,"5214.000000",,"2.533333",,"414.844444",,,,"30.657143","0.933333","0.266667","1.066667","32.911111","0.000000","341.962963","0.000000","8.407407","332.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","868.500000",,,,,"0.000000","0.000000",,,"3374.375000","4006.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.601667",,"25.601667",,"25.601667",,,,,,,"3118.291667",,,,,"5121.125000",,"2.622222",,"541.133333",,,,"41.685714","1.022222","0.266667","0.955556","45.088889","0.000000","465.333333","0.000000","9.370370","454.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","297.714286",,,,,"0.000000","0.000000",,,"5959.250000","7060.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.481667",,"26.481667",,"26.481667",,,,,,,"3014.833333",,,,,"5297.541667",,"3.888889",,"595.222222",,,,"46.685714","0.866667","0.733333","0.955556","50.866667","0.000000","525.370370","0.000000","8.703704","515.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","1193.625000",,,,,"0.000000","0.000000",,,"3891.250000","4759.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.595833",,"25.595833",,"25.595833",,,,,,,"3289.916667",,,,,"5119.958333",,"2.822222",,"476.755556",,,,"36.800000","0.844444","0.266667","1.066667","39.866667","0.000000","413.888889","0.000000","8.037037","404.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","946.000000",,,,,"0.000000","0.000000",,,"2643.625000","3394.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.859583",,"26.859583",,"26.859583",,,,,,,"3504.875000",,,,,"5373.041667",,"3.933333",,"537.200000",,,,"42.714286","0.955556","0.355556","0.933333","46.466667","0.000000","482.962963","0.000000","9.037037","472.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","1004.625000",,,,,"0.000000","0.000000",,,"2698.875000","3407.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.387083",,"27.387083",,"27.387083",,,,,,,"2532.375000",,,,,"5478.375000",,"3.888889",,"630.800000",,,,"47.828571","0.866667","0.333333","0.977778","51.822222","0.000000","530.000000","0.000000","8.814815","519.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1160.250000",,,,,"0.000000","0.000000",,,"3123.750000","4036.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.999583",,"25.999583",,"25.999583",,,,,,,"2951.708333",,,,,"5201.041667",,"8.133333",,"1532.377778",,,,"41.085714","1.288889","0.355556","2.222222","43.222222","0.000000","434.000000","0.000000","12.222222","419.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","2614.250000",,,,,"0.000000","0.000000",,,"5101.625000","7566.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.884167",,"22.884167",,"22.884167",,,,,,,"4429.625000",,,,,"4577.791667",,"23.888889",,"347.333333",,,,"24.228571","2.355556","0.533333","1.933333","24.044444","0.000000","276.518519","0.000000","25.444444","246.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.000000","717.125000",,,,,"0.000000","0.000000",,,"2099.125000","2604.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.453750",,"26.453750",,"26.453750",,,,,,,"2846.916667",,,,,"5291.500000",,"3.422222",,"292.266667",,,,"17.400000","0.844444","1.911111","8.400000","18.244444","0.000000","197.444444","0.000000","8.703704","187.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","541.000000",,,,,"0.000000","0.000000",,,"1433.625000","1861.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.348333",,"24.348333",,"24.348333",,,,,,,"3485.041667",,,,,"4871.000000",,"2.688889",,"390.422222",,,,"26.057143","0.933333","1.244444","5.644444","27.888889","0.000000","293.962963","0.000000","8.703704","283.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","738.625000",,,,,"0.000000","0.000000",,,"2005.875000","2539.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.935000",,"23.935000",,"23.935000",,,,,,,"3494.500000",,,,,"4787.875000",,"3.288889",,"323.422222",,,,"1929.114286","0.888889","0.200000","4.177778","26.866667","0.000000","283.000000","0.000000","9.037037","272.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","633.500000",,,,,"0.000000","0.000000",,,"1818.625000","2331.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.958750",,"24.958750",,"24.958750",,,,,,,"4265.208333",,,,,"4992.625000",,"3.866667",,"165.533333",,,,"2919.914286","1.022222","0.155556","4.533333","9.977778","0.000000","121.370370","0.000000","12.074074","107.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","311.250000",,,,,"0.000000","0.000000",,,"981.250000","1250.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.922500",,"21.922500",,"21.922500",,,,,,,"4518.375000",,,,,"4385.708333",,"2.844444",,"136.933333",,,,"2077.485714","0.844444","0.155556","8.111111","7.488889","0.000000","89.592593","0.000000","8.111111","80.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","474.750000",,,,,"0.000000","0.000000",,,"5130.125000","4933.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.143333",,"25.143333",,"25.143333",,,,,,,"3648.875000",,,,,"5029.708333",,"70.333333",,"270.688889",,,,"1713.971429","2.200000","0.822222","5.111111","13.800000","0.000000","173.111111","0.000000","22.444444","149.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"146.375000","595.625000",,,,,"0.000000","0.000000",,,"3168.250000","3487.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.817917",,"24.817917",,"24.817917",,,,,,,"3659.250000",,,,,"4964.333333",,"107.955556",,"244.666667",,,,"423.114286","8.777778","0.466667","4.666667","12.177778","0.000000","225.962963","0.000000","96.814815","127.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"214.250000","465.625000",,,,,"0.000000","0.000000",,,"1908.875000","2119.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.857917",,"23.857917",,"23.857917",,,,,,,"3939.541667",,,,,"4772.416667",,"3.400000",,"429.488889",,,,"34.542857","1.000000","0.088889","1.822222","37.022222","0.000000","383.148148","0.000000","9.111111","372.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","823.000000",,,,,"0.000000","0.000000",,,"2292.750000","2906.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.044583",,"22.044583",,"22.044583",,,,,,,"4753.916667",,,,,"4410.041667",,"3.400000",,"244.088889",,,,"15.114286","0.933333","0.177778","4.977778","15.711111","0.000000","172.629630","0.000000","8.851852","162.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.625000","421.375000",,,,,"0.000000","0.000000",,,"1198.500000","1610.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.162500",,"23.162500",,"23.162500",,,,,,,"4451.041667",,,,,"4633.375000",,"6.200000",,"594.333333",,,,"38.828571","1.311111","0.133333","1.955556","41.444444","0.000000","430.925926","0.000000","11.962963","416.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1327.375000",,,,,"0.000000","0.000000",,,"3326.125000","5989.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.587083",,"20.587083",,"20.587083",,,,,,,"5333.083333",,,,,"4118.250000",,"4.444444",,"1394.266667",,,,"19.342857","0.955556","0.644444","16.111111","19.466667","0.000000","192.074074","0.000000","9.000000","181.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"750.000000","2653.500000",,,,,"0.000000","0.000000",,,"14715.375000","7716.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.306250",,"20.306250",,"20.306250",,,,,,,"4969.416667",,,,,"4062.375000",,"4.933333",,"2136.555556",,,,"20.771429","0.933333","5.466667","24.244444","20.488889","0.000000","186.666667","0.000000","8.925926","176.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"743.375000","4007.000000",,,,,"0.000000","0.000000",,,"16784.875000","10950.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.348333",,"24.348333",,"24.348333",,,,,,,"4729.041667",,,,,"4870.791667",,"3.466667",,"2132.400000",,,,"33.742857","1.022222","1.044444","7.466667","34.644444","0.000000","326.296296","0.000000","9.925926","314.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"716.250000","4055.625000",,,,,"0.000000","0.000000",,,"16677.875000","11120.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.004583",,"21.004583",,"21.004583",,,,,,,"4808.916667",,,,,"4201.958333",,"2.511111",,"2160.288889",,,,"15.000000","0.844444","0.466667","9.866667","14.111111","0.000000","120.814815","0.000000","8.296296","111.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.750000","16.142857",,,,,"0.000000","0.000000",,,"16379.375000","10856.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.390833",,"23.390833",,"23.390833",,,,,,,"5002.750000",,,,,"4679.000000",,"3.311111",,"2092.666667",,,,"28.285714","0.888889","2.600000","5.688889","29.844444","0.000000","304.000000","0.000000","9.000000","293.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1729.125000","4039.000000",,,,,"0.000000","0.000000",,,"30124.500000","11668.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.902500",,"27.902500",,"27.902500",,,,,,,"3641.875000",,,,,"5581.333333",,"21.422222",,"1938.888889",,,,"30.142857","1.800000","0.555556","7.466667","30.733333","0.000000","326.370370","0.000000","20.555556","302.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1900.750000","3660.250000",,,,,"0.000000","0.000000",,,"33411.250000","13702.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.585833",,"26.585833",,"26.585833",,,,,,,"4063.625000",,,,,"5318.250000",,"2.577778",,"1843.733333",,,,"27.257143","0.844444","0.955556","17.355556","28.488889","0.000000","282.444444","0.000000","8.444444","272.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"562.500000","3971.875000",,,,,"0.000000","0.000000",,,"16900.375000","13646.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.931250",,"26.931250",,"26.931250",,,,,,,"4304.833333",,,,,"5387.041667",,"3.755556",,"571.666667",,,,"2511.285714","1.022222","0.422222","3.955556","29.977778","0.000000","317.370370","0.000000","9.925926","305.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.125000","1064.000000",,,,,"0.000000","0.000000",,,"3233.750000","3417.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.023750",,"29.023750",,"29.023750",,,,,,,"2811.541667",,,,,"5805.791667",,"30.777778",,"414.911111",,,,"2518.314286","3.488889","0.422222","1.800000","29.777778","0.000000","352.777778","0.000000","37.851852","313.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","824.625000",,,,,"0.000000","0.000000",,,"2297.750000","2933.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.469583",,"28.469583",,"28.469583",,,,,,,"3577.375000",,,,,"5694.666667",,"9.111111",,"314.155556",,,,"2078.828571","1.488889","1.000000","2.222222","12.800000","0.000000","150.851852","0.000000","13.962963","134.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","573.500000",,,,,"0.000000","0.000000",,,"2394.250000","2328.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.269583",,"21.269583",,"21.269583",,,,,,,"4297.791667",,,,,"4255.000000",,"11.844444",,"126.333333",,,,"1667.885714","1.133333","0.533333","0.977778","7.533333","0.000000","94.703704","0.000000","12.111111","81.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","273.500000",,,,,"0.000000","0.000000",,,"945.750000","1102.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.310417",,"26.310417",,"26.310417",,,,,,,"3404.041667",,,,,"5262.833333",,"3.200000",,"407.244444",,,,"324.714286","0.888889","0.288889","2.755556","38.200000","0.000000","421.296296","0.000000","8.555556","411.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","708.625000",,,,,"0.000000","0.000000",,,"2145.875000","2728.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.875000",,"32.875000",,"32.875000",,,,,,,"1576.583333",,,,,"6576.083333",,"2.577778",,"590.266667",,,,"47.742857","0.888889","0.177778","2.044444","52.688889","0.000000","559.925926","0.000000","8.814815","549.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","1123.875000",,,,,"0.000000","0.000000",,,"3096.000000","4114.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.302083",,"30.302083",,"30.302083",,,,,,,"1547.208333",,,,,"6061.291667",,"5.022222",,"596.666667",,,,"45.800000","0.955556","0.622222","1.288889","50.733333","0.000000","548.000000","0.000000","9.925926","536.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1162.500000",,,,,"0.000000","0.000000",,,"3087.875000","4237.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.652500",,"33.652500",,"33.652500",,,,,,,"1314.916667",,,,,"6731.416667",,"2.666667",,"522.355556",,,,"36.200000","0.933333","0.088889","1.333333","40.044444","0.000000","439.000000","0.000000","8.592593","428.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1186.375000",,,,,"0.000000","0.000000",,,"5157.250000","6392.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.986250",,"27.986250",,"27.986250",,,,,,,"2059.291667",,,,,"5597.875000",,"2.755556",,"643.422222",,,,"48.800000","0.844444","1.311111","1.422222","54.911111","0.000000","602.185185","0.000000","7.962963","593.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1499.375000",,,,,"0.000000","0.000000",,,"6739.750000","8336.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.255000",,"23.255000",,"23.255000",,,,,,,"3861.416667",,,,,"4651.916667",,"3.466667",,"542.466667",,,,"42.742857","0.777778","0.844444","1.333333","48.155556","0.000000","535.296296","0.000000","8.111111","525.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1279.500000",,,,,"0.000000","0.000000",,,"6223.875000","7580.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.756250",,"27.756250",,"27.756250",,,,,,,"2520.875000",,,,,"5552.208333",,"2.822222",,"696.777778",,,,"52.971429","0.933333","0.844444","1.644444","58.755556","0.000000","623.407407","0.000000","8.777778","613.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1624.500000",,,,,"0.000000","0.000000",,,"6874.375000","8664.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.053333",,"24.053333",,"24.053333",,,,,,,"3446.083333",,,,,"4811.708333",,"2.555556",,"441.844444",,,,"29.828571","0.844444","0.133333","3.488889","32.911111","0.000000","362.814815","0.000000","7.962963","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1126.375000",,,,,"0.000000","0.000000",,,"5723.750000","7076.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.840000",,"24.840000",,"24.840000",,,,,,,"3417.333333",,,,,"4968.916667",,"2.933333",,"687.888889",,,,"56.800000","0.933333","0.511111","1.800000","63.022222","0.000000","671.925926","0.000000","9.185185","661.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1551.750000",,,,,"0.000000","0.000000",,,"6780.375000","8581.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.343333",,"31.343333",,"31.343333",,,,,,,"1672.708333",,,,,"6269.416667",,"28.088889",,"759.377778",,,,"34.171429","2.711111","0.422222","5.533333","35.333333","0.000000","412.296296","0.000000","28.037037","378.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.625000","313.857143",,,,,"0.000000","0.000000",,,"6845.250000","8412.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.628750",,"30.628750",,"30.628750",,,,,,,"909.833333",,,,,"6126.750000",,"10.177778",,"846.466667",,,,"36.685714","1.400000","0.066667","2.311111","39.644444","0.000000","425.518519","0.000000","13.814815","410.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.125000","1804.500000",,,,,"0.000000","0.000000",,,"6479.250000","8253.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.300417",,"30.300417",,"30.300417",,,,,,,"1946.500000",,,,,"6061.041667",,"3.022222",,"704.822222",,,,"2137.514286","0.844444","0.444444","2.155556","53.133333","0.000000","569.333333","0.000000","8.407407","559.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1565.375000",,,,,"0.000000","0.000000",,,"6322.000000","8005.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.853750",,"31.853750",,"31.853750",,,,,,,"1271.791667",,,,,"6371.666667",,"5.000000",,"442.288889",,,,"1980.057143","1.244444","1.066667","3.733333","30.200000","0.000000","343.666667","0.000000","15.222222","326.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.625000","1094.500000",,,,,"0.000000","0.000000",,,"5333.000000","6509.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.118750",,"31.118750",,"31.118750",,,,,,,"2255.250000",,,,,"6225.000000",,"2.666667",,"602.222222",,,,"2159.114286","0.844444","3.955556","2.755556","35.622222","0.000000","389.814815","0.000000","8.074074","380.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.625000","1419.250000",,,,,"0.000000","0.000000",,,"6795.500000","7806.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.689583",,"30.689583",,"30.689583",,,,,,,"1582.458333",,,,,"6138.916667",,"2.577778",,"595.733333",,,,"1548.228571","0.800000","0.200000","4.200000","46.600000","0.000000","501.592593","0.000000","8.296296","492.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1360.250000",,,,,"0.000000","0.000000",,,"6043.125000","7440.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.430417",,"28.430417",,"28.430417",,,,,,,"1871.833333",,,,,"5686.916667",,"2.755556",,"483.822222",,,,"1253.857143","0.933333","0.400000","4.688889","34.177778","0.000000","366.037037","0.000000","8.629630","355.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","1176.875000",,,,,"0.000000","0.000000",,,"5504.375000","6791.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.781250",,"24.781250",,"24.781250",,,,,,,"3682.041667",,,,,"4957.416667",,"2.955556",,"472.377778",,,,"122.171429","0.844444","0.177778","3.600000","35.155556","0.000000","382.740741","0.000000","8.222222","373.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1214.000000",,,,,"0.000000","0.000000",,,"6057.250000","7318.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.189167",,"24.189167",,"24.189167",,,,,,,"3443.708333",,,,,"4838.500000",,"3.222222",,"368.133333",,,,"21.971429","0.933333","0.288889","4.311111","23.977778","0.000000","270.074074","0.000000","9.111111","259.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","958.125000",,,,,"0.000000","0.000000",,,"5098.875000","6192.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.917500",,"24.917500",,"24.917500",,,,,,,"3779.083333",,,,,"4984.458333",,"2.977778",,"399.733333",,,,"26.742857","0.933333","0.288889","3.155556","29.355556","0.000000","327.148148","0.000000","8.814815","316.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","973.375000",,,,,"0.000000","0.000000",,,"5188.500000","6061.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.570000",,"27.570000",,"27.570000",,,,,,,"3142.833333",,,,,"5515.083333",,"2.666667",,"485.644444",,,,"33.485714","0.844444","0.133333","3.688889","37.155556","0.000000","407.518519","0.000000","8.407407","397.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","1075.750000",,,,,"0.000000","0.000000",,,"5554.375000","6317.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.775000",,"30.775000",,"30.775000",,,,,,,"1832.166667",,,,,"6155.708333",,"3.022222",,"629.888889",,,,"46.571429","0.888889","0.400000","1.800000","51.466667","0.000000","546.111111","0.000000","8.592593","536.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1205.375000",,,,,"0.000000","0.000000",,,"3166.625000","4096.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.232500",,"27.232500",,"27.232500",,,,,,,"2628.166667",,,,,"5447.333333",,"3.088889",,"642.577778",,,,"46.600000","1.111111","0.355556","3.866667","51.600000","0.000000","561.592593","0.000000","10.518519","549.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1174.125000",,,,,"0.000000","0.000000",,,"3067.000000","3923.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.102500",,"31.102500",,"31.102500",,,,,,,"1794.916667",,,,,"6221.250000",,"8.355556",,"725.177778",,,,"53.571429","1.600000","0.244444","1.577778","58.377778","0.000000","629.111111","0.000000","14.370370","611.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1361.250000",,,,,"0.000000","0.000000",,,"3959.500000","5059.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.027083",,"30.027083",,"30.027083",,,,,,,"2266.791667",,,,,"6006.333333",,"3.377778",,"655.355556",,,,"47.257143","0.933333","0.133333","1.755556","52.444444","0.000000","566.518519","0.000000","9.407407","555.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1480.625000",,,,,"0.000000","0.000000",,,"7369.500000","8343.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.421250",,"29.421250",,"29.421250",,,,,,,"2396.833333",,,,,"5885.333333",,"21.733333",,"934.222222",,,,"50.685714","2.088889","0.088889","2.666667","54.622222","0.000000","600.888889","0.000000","23.037037","573.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1793.750000",,,,,"0.000000","0.000000",,,"4624.500000","6034.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.149583",,"31.149583",,"31.149583",,,,,,,"1854.791667",,,,,"6231.000000",,"2.888889",,"800.600000",,,,"58.514286","0.933333","0.133333","1.155556","65.111111","0.000000","691.407407","0.000000","8.629630","681.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1500.375000",,,,,"0.000000","0.000000",,,"3942.875000","5165.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.168333",,"34.168333",,"34.168333",,,,,,,"1540.291667",,,,,"6834.458333",,"2.577778",,"657.644444",,,,"1816.714286","0.844444","0.133333","1.311111","52.755556","0.000000","575.777778","0.000000","8.370370","566.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1268.750000",,,,,"0.000000","0.000000",,,"3332.500000","4276.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.174167",,"33.174167",,"33.174167",,,,,,,"1695.416667",,,,,"6635.791667",,"3.088889",,"667.644444",,,,"2403.057143","1.022222","0.177778","1.022222","53.400000","0.000000","588.148148","0.000000","9.703704","576.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1251.250000",,,,,"0.000000","0.000000",,,"3253.250000","4200.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.559583",,"31.559583",,"31.559583",,,,,,,"953.291667",,,,,"6312.833333",,"2.955556",,"845.622222",,,,"1480.371429","0.755556","0.244444","2.333333","61.888889","0.000000","657.518519","0.000000","7.666667","648.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.250000","1544.125000",,,,,"0.000000","0.000000",,,"4676.250000","5461.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.934167",,"32.934167",,"32.934167",,,,,,,"1100.458333",,,,,"6587.875000",,"8.666667",,"745.733333",,,,"1498.400000","1.933333","1.088889","1.044444","66.422222","0.000000","729.777778","0.000000","19.740741","708.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1483.375000",,,,,"0.000000","0.000000",,,"4103.625000","5163.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.075000",,"30.075000",,"30.075000",,,,,,,"1260.750000",,,,,"6015.833333",,"3.155556",,"802.888889",,,,"1296.457143","0.933333","0.088889","2.400000","69.555556","0.000000","745.592593","0.000000","9.148148","734.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","10.428571",,,,,"0.000000","0.000000",,,"3867.250000","5102.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.748333",,"31.748333",,"31.748333",,,,,,,"1287.333333",,,,,"6350.500000",,"93.888889",,"968.666667",,,,"837.028571","3.911111","0.444444","1.533333","77.088889","0.000000","855.555556","0.000000","41.740741","812.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","1685.125000",,,,,"0.000000","0.000000",,,"4430.000000","5954.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.010000",,"30.010000",,"30.010000",,,,,,,"2276.333333",,,,,"6002.916667",,"839.888889",,"1663.400000",,,,"87.314286","22.066667","0.311111","3.177778","77.355556","0.000000","1063.222222","0.000000","244.148148","817.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1770.250000","3272.250000",,,,,"0.000000","0.000000",,,"11430.625000","12084.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.455000",,"28.455000",,"28.455000",,,,,,,"1816.750000",,,,,"5692.083333",,"78.844444",,"831.177778",,,,"76.171429","18.288889","0.266667","1.155556","68.244444","0.000000","927.518519","0.000000","200.555556","724.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"170.750000","1661.750000",,,,,"0.000000","0.000000",,,"5195.125000","6927.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.411667",,"28.411667",,"28.411667",,,,,,,"2500.041667",,,,,"5683.083333",,"50.577778",,"801.755556",,,,"68.457143","12.266667","0.511111","1.266667","66.155556","0.000000","848.370370","0.000000","134.370370","712.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.500000","1490.875000",,,,,"0.000000","0.000000",,,"6999.375000","5901.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.591667",,"29.591667",,"29.591667",,,,,,,"1833.708333",,,,,"5919.166667",,"2.466667",,"2215.866667",,,,"73.771429","0.977778","0.577778","5.333333","81.600000","0.000000","849.333333","0.000000","9.185185","838.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2589.875000","4286.500000",,,,,"0.000000","0.000000",,,"44002.375000","15611.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.555000",,"28.555000",,"28.555000",,,,,,,"2332.750000",,,,,"5711.708333",,"2.777778",,"2244.644444",,,,"62.971429","0.933333","0.155556","6.666667","69.755556","0.000000","732.185185","0.000000","8.703704","722.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2059.250000","4414.500000",,,,,"0.000000","0.000000",,,"39366.625000","17783.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.111667",,"30.111667",,"30.111667",,,,,,,"1826.958333",,,,,"6023.500000",,"3.377778",,"3284.600000",,,,"80.600000","0.977778","0.666667","3.733333","89.466667","0.000000","937.814815","0.000000","9.444444","927.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1286.625000","5965.500000",,,,,"0.000000","0.000000",,,"28162.750000","17576.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.715833",,"29.715833",,"29.715833",,,,,,,"2492.666667",,,,,"5944.250000",,"48.688889",,"1402.777778",,,,"82.942857","10.511111","0.711111","2.355556","83.888889","0.000000","1009.074074","0.000000","115.814815","891.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1178.500000","2944.375000",,,,,"0.000000","0.000000",,,"21345.875000","10680.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"34.078333",,"34.078333",,"34.078333",,,,,,,"1127.125000",,,,,"6816.583333",,"29.533333",,"2529.266667",,,,"71.628571","3.244444","0.911111","5.200000","76.266667","0.000000","815.148148","0.000000","36.000000","775.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1159.750000","21.714286",,,,,"0.000000","0.000000",,,"23473.500000","14184.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.000000",,"33.000000",,"33.000000",,,,,,,"1680.916667",,,,,"6601.000000",,"3.333333",,"1331.155556",,,,"68.171429","0.888889","0.600000","2.044444","75.911111","0.000000","804.592593","0.000000","9.148148","794.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","2738.375000",,,,,"0.000000","0.000000",,,"6028.250000","8233.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.597083",,"30.597083",,"30.597083",,,,,,,"1134.916667",,,,,"6120.583333",,"4.311111",,"686.288889",,,,"1505.257143","1.111111","1.266667","2.311111","54.644444","0.000000","596.703704","0.000000","12.481481","582.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1285.000000",,,,,"0.000000","0.000000",,,"3351.500000","4390.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.371667",,"35.371667",,"35.371667",,,,,,,"385.416667",,,,,"7075.250000",,"6.355556",,"774.644444",,,,"1871.942857","0.977778","0.133333","0.844444","62.755556","0.000000","677.037037","0.000000","9.407407","666.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1474.375000",,,,,"0.000000","0.000000",,,"3813.875000","5180.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.002500",,"33.002500",,"33.002500",,,,,,,"318.750000",,,,,"6601.625000",,"10.088889",,"855.600000",,,,"1426.600000","2.355556","0.244444","1.222222","66.644444","0.000000","727.185185","0.000000","20.925926","701.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.250000","1594.250000",,,,,"0.000000","0.000000",,,"4575.000000","5659.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"33.398333",,"33.398333",,"33.398333",,,,,,,"471.291667",,,,,"6680.541667",,"2.622222",,"706.777778",,,,"1365.942857","0.888889","0.133333","1.000000","49.955556","0.000000","553.740741","0.000000","8.296296","543.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.000000","1350.375000",,,,,"0.000000","0.000000",,,"3569.875000","4521.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"38.337917",,"38.337917",,"38.337917",,,,,,,"748.541667",,,,,"7668.541667",,"3.111111",,"780.555556",,,,"1466.657143","0.933333","0.088889","1.400000","66.644444","0.000000","718.407407","0.000000","8.962963","708.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1533.625000",,,,,"0.000000","0.000000",,,"4392.250000","5788.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.012917",,"32.012917",,"32.012917",,,,,,,"940.041667",,,,,"6403.625000",,"3.133333",,"780.711111",,,,"1211.857143","0.933333","0.177778","1.155556","64.688889","0.000000","695.962963","0.000000","9.148148","685.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1677.625000",,,,,"0.000000","0.000000",,,"6891.375000","8580.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.025833",,"29.025833",,"29.025833",,,,,,,"2310.000000",,,,,"5806.208333",,"2.844444",,"878.422222",,,,"532.285714","0.844444","0.133333","1.466667","71.866667","0.000000","778.777778","0.000000","8.111111","769.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"78.375000","1773.375000",,,,,"0.000000","0.000000",,,"6653.250000","7744.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.813750",,"30.813750",,"30.813750",,,,,,,"1670.041667",,,,,"6163.750000",,"2.711111",,"955.288889",,,,"76.857143","0.844444","0.088889","1.111111","86.000000","0.000000","910.777778","0.000000","8.000000","901.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.375000","1742.000000",,,,,"0.000000","0.000000",,,"4622.250000","6201.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.061667",,"30.061667",,"30.061667",,,,,,,"1918.333333",,,,,"6013.333333",,"3.133333",,"871.444444",,,,"69.228571","0.888889","1.000000","0.955556","77.555556","0.000000","829.555556","0.000000","8.666667","819.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1799.625000",,,,,"0.000000","0.000000",,,"6847.875000","8292.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.050833",,"27.050833",,"27.050833",,,,,,,"2461.041667",,,,,"5411.291667",,"6.288889",,"778.355556",,,,"63.342857","1.244444","0.244444","1.133333","70.511111","0.000000","761.074074","0.000000","12.222222","747.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","1607.250000",,,,,"0.000000","0.000000",,,"6460.500000","7611.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.396667",,"30.396667",,"30.396667",,,,,,,"1823.208333",,,,,"6080.291667",,"4.755556",,"911.222222",,,,"72.657143","1.200000","0.333333","3.555556","80.266667","0.000000","845.296296","0.000000","11.185185","832.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1716.750000",,,,,"0.000000","0.000000",,,"4594.625000","5944.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.520000",,"28.520000",,"28.520000",,,,,,,"2259.125000",,,,,"5705.000000",,"147.288889",,"816.822222",,,,"67.228571","3.088889","0.333333","1.111111","73.200000","0.000000","809.851852","0.000000","32.666667","775.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.000000","1508.750000",,,,,"0.000000","0.000000",,,"4714.875000","5707.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.341250",,"27.341250",,"27.341250",,,,,,,"2862.458333",,,,,"5469.250000",,"3.266667",,"1302.022222",,,,"67.571429","0.933333","0.222222","2.200000","75.866667","0.000000","817.407407","0.000000","9.037037","807.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"262.875000","11.571429",,,,,"0.000000","0.000000",,,"6388.375000","7902.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.151667",,"35.151667",,"35.151667",,,,,,,"1238.083333",,,,,"7031.416667",,"22.022222",,"986.511111",,,,"74.800000","2.044444","0.222222","1.288889","81.355556","0.000000","862.925926","0.000000","22.518519","836.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.000000","1850.500000",,,,,"0.000000","0.000000",,,"4897.375000","6423.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.833750",,"29.833750",,"29.833750",,,,,,,"1607.583333",,,,,"5967.625000",,"8.444444",,"850.800000",,,,"63.285714","1.555556","0.311111","1.266667","69.377778","0.000000","739.074074","0.000000","13.888889","722.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","1596.250000",,,,,"0.000000","0.000000",,,"4254.500000","5428.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.653750",,"29.653750",,"29.653750",,,,,,,"2351.625000",,,,,"5931.791667",,"3.688889",,"772.488889",,,,"2176.542857","0.755556","0.133333","1.066667","67.577778","0.000000","734.370370","0.000000","7.925926","725.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1420.250000",,,,,"0.000000","0.000000",,,"3947.000000","4949.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.793750",,"31.793750",,"31.793750",,,,,,,"1689.333333",,,,,"6359.625000",,"3.022222",,"956.711111",,,,"2378.857143","0.844444","0.155556","1.155556","72.822222","0.000000","782.703704","0.000000","8.222222","773.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1824.250000",,,,,"0.000000","0.000000",,,"4660.000000","6084.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.185833",,"35.185833",,"35.185833",,,,,,,"1006.750000",,,,,"7038.291667",,"2.977778",,"1001.800000",,,,"1682.428571","0.933333","0.377778","1.400000","79.644444","0.000000","846.037037","0.000000","8.740741","835.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1895.875000",,,,,"0.000000","0.000000",,,"5729.500000","6730.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"29.486250",,"29.486250",,"29.486250",,,,,,,"2281.541667",,,,,"5898.166667",,"2.600000",,"817.244444",,,,"1808.971429","0.800000","0.177778","1.155556","77.244444","0.000000","839.000000","0.000000","8.037037","829.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1508.125000",,,,,"0.000000","0.000000",,,"4106.625000","5500.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.737917",,"32.737917",,"32.737917",,,,,,,"1318.458333",,,,,"6548.500000",,"3.666667",,"814.288889",,,,"1264.942857","0.955556","0.222222","1.733333","66.133333","0.000000","711.111111","0.000000","9.629630","700.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","1588.375000",,,,,"0.000000","0.000000",,,"4145.250000","5561.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.037500",,"30.037500",,"30.037500",,,,,,,"1938.291667",,,,,"6008.625000",,"2.911111",,"826.888889",,,,"66.771429","0.844444","0.133333","1.155556","74.644444","0.000000","795.629630","0.000000","8.185185","786.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1540.125000",,,,,"0.000000","0.000000",,,"4343.500000","5458.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.982500",,"25.982500",,"25.982500",,,,,,,"3138.875000",,,,,"5197.500000",,"3.688889",,"834.333333",,,,"69.742857","0.777778","0.200000","0.688889","78.288889","0.000000","839.629630","0.000000","8.037037","830.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1603.750000",,,,,"0.000000","0.000000",,,"4754.000000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.836250",,"31.836250",,"31.836250",,,,,,,"1522.583333",,,,,"6368.333333",,"2.888889",,"827.800000",,,,"56.885714","0.844444","0.288889","2.266667","63.533333","0.000000","679.962963","0.000000","8.111111","670.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1715.625000",,,,,"0.000000","0.000000",,,"7846.625000","9012.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.947917",,"28.947917",,"28.947917",,,,,,,"2074.791667",,,,,"5790.333333",,"3.400000",,"750.400000",,,,"57.542857","1.044444","0.600000","0.933333","64.377778","0.000000","703.000000","0.000000","10.407407","691.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.500000","1501.250000",,,,,"0.000000","0.000000",,,"4575.250000","5826.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.134583",,"25.134583",,"25.134583",,,,,,,"3087.250000",,,,,"5028.083333",,"2.911111",,"728.800000",,,,"60.885714","0.844444","0.088889","1.111111","67.555556","0.000000","710.000000","0.000000","8.000000","700.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1347.375000",,,,,"0.000000","0.000000",,,"3774.875000","4760.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.408750",,"32.408750",,"32.408750",,,,,,,"1631.333333",,,,,"6482.791667",,"3.377778",,"763.666667",,,,"55.342857","0.844444","0.177778","1.133333","61.844444","0.000000","667.703704","0.000000","8.666667","657.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1453.625000",,,,,"0.000000","0.000000",,,"4052.625000","5108.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.552917",,"32.552917",,"32.552917",,,,,,,"1410.416667",,,,,"6511.541667",,"8.555556",,"873.955556",,,,"67.257143","1.466667","0.266667","1.266667","74.177778","0.000000","792.407407","0.000000","13.407407","776.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.500000","1585.000000",,,,,"0.000000","0.000000",,,"4488.750000","5543.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.477917",,"27.477917",,"27.477917",,,,,,,"2718.041667",,,,,"5496.375000",,"3.511111",,"728.333333",,,,"56.600000","1.022222","0.155556","0.977778","63.222222","0.000000","686.703704","0.000000","9.888889","675.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1410.125000",,,,,"0.000000","0.000000",,,"3838.000000","4916.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"31.341250",,"31.341250",,"31.341250",,,,,,,"1204.708333",,,,,"6269.291667",,"22.244444",,"1012.444444",,,,"57.114286","1.911111","0.844444","1.577778","61.866667","0.000000","669.222222","0.000000","21.592593","643.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.250000","27.571429",,,,,"0.000000","0.000000",,,"4484.750000","6083.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.920417",,"30.920417",,"30.920417",,,,,,,"775.583333",,,,,"6185.208333",,"3.355556",,"926.422222",,,,"44.971429","0.955556","0.844444","4.911111","49.222222","0.000000","512.333333","0.000000","8.962963","502.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1813.250000",,,,,"0.000000","0.000000",,,"4092.875000","5454.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.404167",,"32.404167",,"32.404167",,,,,,,"1014.166667",,,,,"6481.875000",,"12.311111",,"804.377778",,,,"1658.571429","1.444444","0.622222","3.111111","63.444444","0.000000","684.296296","0.000000","17.222222","665.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","1605.875000",,,,,"0.000000","0.000000",,,"4137.875000","5451.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.302083",,"32.302083",,"32.302083",,,,,,,"575.833333",,,,,"6461.333333",,"3.133333",,"651.155556",,,,"1839.942857","0.933333","0.777778","1.155556","50.666667","0.000000","549.444444","0.000000","8.777778","539.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","1151.250000",,,,,"0.000000","0.000000",,,"3005.125000","3937.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"35.322083",,"35.322083",,"35.322083",,,,,,,"549.625000",,,,,"7065.625000",,"2.955556",,"853.377778",,,,"1553.742857","0.844444","1.200000","1.288889","63.688889","0.000000","673.777778","0.000000","8.296296","664.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1679.250000",,,,,"0.000000","0.000000",,,"4901.375000","5783.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.864167",,"28.864167",,"28.864167",,,,,,,"2372.125000",,,,,"5773.750000",,"3.422222",,"525.822222",,,,"1845.142857","0.800000","0.733333","1.533333","40.155556","0.000000","408.296296","0.000000","8.148148","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","947.875000",,,,,"0.000000","0.000000",,,"2498.500000","3216.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.451250",,"26.451250",,"26.451250",,,,,,,"2704.958333",,,,,"5291.250000",,"4.933333",,"1069.311111",,,,"1604.457143","1.311111","0.311111","1.577778","53.644444","0.000000","561.222222","0.000000","13.962963","546.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","2144.500000",,,,,"0.000000","0.000000",,,"6584.500000","8275.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.121250",,"25.121250",,"25.121250",,,,,,,"2822.208333",,,,,"5025.291667",,"18.400000",,"552.822222",,,,"777.714286","1.888889","0.288889","1.666667","47.177778","0.000000","490.407407","0.000000","19.370370","469.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1283.875000",,,,,"0.000000","0.000000",,,"6367.125000","8245.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.812083",,"22.812083",,"22.812083",,,,,,,"4040.666667",,,,,"4563.166667",,"3.444444",,"448.888889",,,,"36.600000","1.022222","0.133333","1.200000","39.155556","0.000000","402.518519","0.000000","9.740741","391.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","843.125000",,,,,"0.000000","0.000000",,,"2391.625000","3147.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.550833",,"24.550833",,"24.550833",,,,,,,"4018.583333",,,,,"4911.041667",,"9.333333",,"417.822222",,,,"40.514286","2.000000","0.133333","0.933333","42.044444","0.000000","440.185185","0.000000","18.074074","418.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","773.000000",,,,,"0.000000","0.000000",,,"2304.500000","2846.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.255417",,"22.255417",,"22.255417",,,,,,,"4698.041667",,,,,"4451.916667",,"3.311111",,"316.044444",,,,"28.600000","0.844444","0.177778","1.044444","30.866667","0.000000","324.074074","0.000000","8.037037","314.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","576.750000",,,,,"0.000000","0.000000",,,"1798.375000","2150.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.390833",,"22.390833",,"22.390833",,,,,,,"4463.041667",,,,,"4478.916667",,"4.111111",,"328.444444",,,,"32.142857","0.933333","0.088889","0.888889","34.555556","0.000000","357.333333","0.000000","8.592593","347.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","618.500000",,,,,"0.000000","0.000000",,,"1935.500000","2339.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.926250",,"22.926250",,"22.926250",,,,,,,"4142.458333",,,,,"4586.541667",,"4.400000",,"429.888889",,,,"40.885714","1.000000","0.222222","0.822222","43.755556","0.000000","444.740741","0.000000","9.740741","433.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","792.125000",,,,,"0.000000","0.000000",,,"2370.250000","2891.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.670000",,"25.670000",,"25.670000",,,,,,,"4274.166667",,,,,"5134.666667",,"3.066667",,"454.711111",,,,"44.428571","0.844444","0.333333","0.800000","48.022222","0.000000","488.407407","0.000000","8.259259","478.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","787.625000",,,,,"0.000000","0.000000",,,"2393.250000","3008.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.218750",,"23.218750",,"23.218750",,,,,,,"4665.208333",,,,,"4644.583333",,"3.377778",,"330.466667",,,,"27.400000","0.933333","0.133333","1.177778","29.177778","0.000000","303.481481","0.000000","8.814815","293.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","537.625000",,,,,"0.000000","0.000000",,,"1730.375000","2085.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.106667",,"23.106667",,"23.106667",,,,,,,"4031.125000",,,,,"4622.208333",,"22.311111",,"711.066667",,,,"38.771429","2.022222","0.088889","1.622222","40.177778","0.000000","425.444444","0.000000","22.555556","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.750000","1465.750000",,,,,"0.000000","0.000000",,,"3581.875000","4638.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.040417",,"28.040417",,"28.040417",,,,,,,"3055.708333",,,,,"5609.416667",,"3.377778",,"522.133333",,,,"45.285714","1.111111","0.177778","1.022222","48.711111","0.000000","495.962963","0.000000","10.148148","484.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","967.500000",,,,,"0.000000","0.000000",,,"2865.750000","3621.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.262083",,"21.262083",,"21.262083",,,,,,,"4511.083333",,,,,"4253.416667",,"3.911111",,"299.377778",,,,"1994.485714","0.866667","0.244444","0.933333","23.000000","0.000000","242.666667","0.000000","8.555556","232.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","597.125000",,,,,"0.000000","0.000000",,,"2550.875000","3009.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.385000",,"24.385000",,"24.385000",,,,,,,"4324.958333",,,,,"4878.041667",,"3.088889",,"252.022222",,,,"2961.371429","0.844444","0.200000","1.088889","24.088889","0.000000","252.592593","0.000000","8.296296","242.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","668.000000",,,,,"0.000000","0.000000",,,"5413.000000","5703.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.927917",,"28.927917",,"28.927917",,,,,,,"3277.666667",,,,,"5786.458333",,"3.622222",,"601.200000",,,,"2216.371429","0.866667","0.177778","1.711111","47.177778","0.000000","494.629630","0.000000","8.851852","484.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","1135.250000",,,,,"0.000000","0.000000",,,"3768.250000","4117.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.540833",,"26.540833",,"26.540833",,,,,,,"3469.208333",,,,,"5309.125000",,"18.688889",,"499.777778",,,,"1735.285714","1.977778","0.222222","0.777778","49.866667","0.000000","532.370370","0.000000","19.555556","510.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","947.500000",,,,,"0.000000","0.000000",,,"2813.375000","3731.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.020417",,"23.020417",,"23.020417",,,,,,,"4317.541667",,,,,"4605.041667",,"4.155556",,"439.266667",,,,"251.200000","0.955556","0.133333","0.933333","40.111111","0.000000","426.370370","0.000000","9.296296","415.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","808.125000",,,,,"0.000000","0.000000",,,"2370.625000","2977.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.820417",,"22.820417",,"22.820417",,,,,,,"4684.416667",,,,,"4565.083333",,"3.511111",,"468.577778",,,,"41.457143","1.022222","0.133333","0.755556","44.955556","0.000000","470.592593","0.000000","9.629630","459.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","835.250000",,,,,"0.000000","0.000000",,,"2458.000000","3103.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.700417",,"21.700417",,"21.700417",,,,,,,"4974.625000",,,,,"4341.000000",,"3.444444",,"334.955556",,,,"31.085714","0.933333","0.088889","0.911111","33.444444","0.000000","349.222222","0.000000","8.740741","339.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","664.250000",,,,,"0.000000","0.000000",,,"2103.250000","2671.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.388333",,"19.388333",,"19.388333",,,,,,,"5157.041667",,,,,"3878.416667",,"2.866667",,"331.111111",,,,"31.257143","0.888889","0.088889","0.911111","33.466667","0.000000","347.777778","0.000000","8.851852","337.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","648.625000",,,,,"0.000000","0.000000",,,"2018.375000","2517.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.821250",,"20.821250",,"20.821250",,,,,,,"4882.625000",,,,,"4165.541667",,"3.755556",,"428.866667",,,,"39.628571","0.955556","0.177778","1.066667","42.733333","0.000000","441.222222","0.000000","9.407407","430.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","745.875000",,,,,"0.000000","0.000000",,,"2245.125000","2736.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.332500",,"20.332500",,"20.332500",,,,,,,"5124.375000",,,,,"4067.250000",,"3.777778",,"389.533333",,,,"37.771429","0.866667","0.422222","0.666667","40.644444","0.000000","417.148148","0.000000","8.703704","406.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","726.625000",,,,,"0.000000","0.000000",,,"2221.375000","2682.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.732500",,"19.732500",,"19.732500",,,,,,,"5277.000000",,,,,"3947.375000",,"2.444444",,"356.533333",,,,"33.542857","0.933333","0.222222","0.577778","36.022222","0.000000","371.629630","0.000000","8.407407","361.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","688.500000",,,,,"0.000000","0.000000",,,"2068.250000","2572.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.907083",,"18.907083",,"18.907083",,,,,,,"5005.208333",,,,,"3782.541667",,"3.688889",,"399.088889",,,,"36.742857","0.955556","0.355556","0.955556","39.777778","0.000000","412.074074","0.000000","8.925926","401.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","855.000000",,,,,"0.000000","0.000000",,,"4384.125000","4844.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.850417",,"19.850417",,"19.850417",,,,,,,"4846.750000",,,,,"3970.708333",,"2.600000",,"382.266667",,,,"36.428571","0.933333","0.088889","0.888889","39.222222","0.000000","402.518519","0.000000","8.444444","392.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.750000","184.857143",,,,,"0.000000","0.000000",,,"4871.000000","5392.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"32.644167",,"32.644167",,"32.644167",,,,,,,"2276.541667",,,,,"6529.958333",,"27.666667",,"453.911111",,,,"34.828571","2.377778","0.111111","1.155556","36.222222","0.000000","408.518519","0.000000","25.259259","378.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.875000","832.375000",,,,,"0.000000","0.000000",,,"2430.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"30.033333",,"30.033333",,"30.033333",,,,,,,"2902.500000",,,,,"6007.666667",,"3.888889",,"627.688889",,,,"45.828571","1.022222","0.133333","2.266667","50.288889","0.000000","534.814815","0.000000","10.074074","523.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1216.000000",,,,,"0.000000","0.000000",,,"3295.125000","4802.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.760833",,"24.760833",,"24.760833",,,,,,,"4648.333333",,,,,"4953.083333",,"3.711111",,"163.200000",,,,"2598.342857","0.933333","0.133333","1.311111","14.466667","0.000000","169.074074","0.000000","9.296296","158.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","344.750000",,,,,"0.000000","0.000000",,,"1145.500000","1842.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.272083",,"23.272083",,"23.272083",,,,,,,"4352.625000",,,,,"4655.333333",,"3.111111",,"112.888889",,,,"2558.228571","0.844444","0.088889","3.711111","7.977778","0.000000","96.740741","0.000000","8.407407","86.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","243.250000",,,,,"0.000000","0.000000",,,"859.000000","1164.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.639167",,"23.639167",,"23.639167",,,,,,,"4382.666667",,,,,"4728.583333",,"3.466667",,"191.755556",,,,"2051.714286","0.755556","0.155556","0.800000","12.711111","0.000000","145.000000","0.000000","8.037037","135.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.250000","366.125000",,,,,"0.000000","0.000000",,,"1871.000000","1665.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.453333",,"24.453333",,"24.453333",,,,,,,"4011.000000",,,,,"4891.625000",,"3.200000",,"520.244444",,,,"1856.257143","0.933333","0.377778","1.177778","46.555556","0.000000","483.259259","0.000000","8.740741","473.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","965.750000",,,,,"0.000000","0.000000",,,"2767.500000","3457.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.415833",,"19.415833",,"19.415833",,,,,,,"4672.458333",,,,,"3884.083333",,"3.288889",,"457.355556",,,,"42.314286","0.933333","0.577778","1.488889","46.133333","0.000000","482.185185","0.000000","9.000000","471.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","830.875000",,,,,"0.000000","0.000000",,,"2505.125000","3053.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.596667",,"19.596667",,"19.596667",,,,,,,"5570.583333",,,,,"3920.291667",,"3.600000",,"333.911111",,,,"31.342857","0.933333","0.177778","1.666667","33.777778","0.000000","353.925926","0.000000","9.000000","343.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","636.000000",,,,,"0.000000","0.000000",,,"1952.625000","2377.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.889167",,"21.889167",,"21.889167",,,,,,,"4982.875000",,,,,"4379.041667",,"3.088889",,"453.888889",,,,"45.285714","0.844444","0.177778","0.711111","49.066667","0.000000","498.777778","0.000000","8.370370","489.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.625000","796.625000",,,,,"0.000000","0.000000",,,"2519.250000","3130.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.477083",,"19.477083",,"19.477083",,,,,,,"5169.333333",,,,,"3896.375000",,"2.888889",,"365.555556",,,,"34.171429","0.888889","0.133333","0.955556","36.777778","0.000000","380.185185","0.000000","8.407407","370.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.875000","836.125000",,,,,"0.000000","0.000000",,,"4260.000000","4784.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.681667",,"19.681667",,"19.681667",,,,,,,"4811.208333",,,,,"3937.416667",,"3.577778",,"365.933333",,,,"36.828571","0.933333","0.088889","0.866667","39.466667","0.000000","401.444444","0.000000","8.888889","391.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","822.625000",,,,,"0.000000","0.000000",,,"4842.000000","5380.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.451667",,"22.451667",,"22.451667",,,,,,,"4657.416667",,,,,"4491.416667",,"8.933333",,"989.200000",,,,"48.942857","1.466667","0.400000","2.000000","52.311111","0.000000","539.666667","0.000000","13.370370","523.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","1852.000000",,,,,"0.000000","0.000000",,,"4468.250000","5832.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.670417",,"20.670417",,"20.670417",,,,,,,"4318.000000",,,,,"4135.083333",,"4.222222",,"365.200000",,,,"29.057143","0.955556","0.088889","1.422222","31.222222","0.000000","329.777778","0.000000","8.962963","319.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","672.625000",,,,,"0.000000","0.000000",,,"1964.250000","2379.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.848333",,"21.848333",,"21.848333",,,,,,,"4754.458333",,,,,"4370.666667",,"3.488889",,"416.133333",,,,"33.628571","0.755556","0.088889","1.311111","36.577778","0.000000","385.370370","0.000000","7.888889","376.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","774.500000",,,,,"0.000000","0.000000",,,"2277.875000","2721.875000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.132500",,"20.132500",,"20.132500",,,,,,,"4891.333333",,,,,"4027.625000",,"2.511111",,"414.666667",,,,"37.742857","0.844444","0.088889","2.288889","40.933333","0.000000","423.481481","0.000000","7.888889","414.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","759.375000",,,,,"0.000000","0.000000",,,"2231.375000","2711.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.042500",,"19.042500",,"19.042500",,,,,,,"5084.208333",,,,,"3809.416667",,"22.577778",,"357.044444",,,,"34.028571","1.933333","0.088889","0.866667","35.422222","0.000000","386.259259","0.000000","21.592593","360.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.875000","671.125000",,,,,"0.000000","0.000000",,,"2145.500000","2604.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.792500",,"22.792500",,"22.792500",,,,,,,"3789.166667",,,,,"4559.541667",,"3.333333",,"574.711111",,,,"48.800000","0.844444","0.555556","2.177778","53.400000","0.000000","557.148148","0.000000","8.296296","547.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1290.500000",,,,,"0.000000","0.000000",,,"6051.125000","7196.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"17.390417",,"17.390417",,"17.390417",,,,,,,"5659.458333",,,,,"3478.958333",,"3.844444",,"162.977778",,,,"2511.142857","0.955556","0.088889","2.533333","8.644444","0.000000","100.518519","0.000000","8.888889","90.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","444.625000",,,,,"0.000000","0.000000",,,"2839.625000","3327.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"23.985833",,"23.985833",,"23.985833",,,,,,,"3771.666667",,,,,"4798.208333",,"3.333333",,"433.133333",,,,"2620.000000","0.844444","0.177778","0.955556","44.466667","0.000000","458.925926","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","795.250000",,,,,"0.000000","0.000000",,,"2395.375000","2897.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.147500",,"25.147500",,"25.147500",,,,,,,"3449.375000",,,,,"5030.291667",,"4.000000",,"474.977778",,,,"2032.428571","0.955556","0.133333","1.822222","48.311111","0.000000","488.185185","0.000000","9.074074","477.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.125000","890.750000",,,,,"0.000000","0.000000",,,"3437.375000","3818.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.130417",,"26.130417",,"26.130417",,,,,,,"3912.291667",,,,,"5227.291667",,"3.555556",,"546.422222",,,,"1902.000000","0.755556","0.088889","2.533333","47.333333","0.000000","480.481481","0.000000","7.814815","471.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","1012.250000",,,,,"0.000000","0.000000",,,"2820.625000","3614.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.012917",,"21.012917",,"21.012917",,,,,,,"4422.583333",,,,,"4203.416667",,"3.666667",,"468.777778",,,,"105.428571","0.933333","0.133333","6.933333","48.444444","0.000000","498.925926","0.000000","9.370370","488.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1061.125000",,,,,"0.000000","0.000000",,,"6045.125000","6859.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"18.842083",,"18.842083",,"18.842083",,,,,,,"4652.875000",,,,,"3769.333333",,"3.733333",,"403.377778",,,,"38.285714","0.933333","0.088889","4.244444","41.244444","0.000000","424.000000","0.000000","9.333333","413.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","832.625000",,,,,"0.000000","0.000000",,,"3866.500000","4384.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.010417",,"21.010417",,"21.010417",,,,,,,"5120.166667",,,,,"4203.166667",,"8.111111",,"407.933333",,,,"39.428571","1.555556","0.088889","1.622222","42.111111","0.000000","447.000000","0.000000","13.518519","430.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","744.875000",,,,,"0.000000","0.000000",,,"2250.125000","2797.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.200000",,"20.200000",,"20.200000",,,,,,,"4722.708333",,,,,"4040.875000",,"4.288889",,"549.155556",,,,"40.542857","1.133333","0.133333","2.711111","44.022222","0.000000","465.629630","0.000000","10.666667","453.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","1017.125000",,,,,"0.000000","0.000000",,,"2748.875000","3460.375000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.990417",,"20.990417",,"20.990417",,,,,,,"4582.750000",,,,,"4198.666667",,"3.577778",,"437.977778",,,,"42.342857","0.844444","0.133333","2.844444","45.844444","0.000000","470.592593","0.000000","8.407407","460.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","802.750000",,,,,"0.000000","0.000000",,,"2460.250000","3028.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.747500",,"22.747500",,"22.747500",,,,,,,"4071.875000",,,,,"4550.541667",,"3.088889",,"464.311111",,,,"41.142857","0.844444","0.088889","1.066667","44.066667","0.000000","440.111111","0.000000","8.185185","430.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","857.250000",,,,,"0.000000","0.000000",,,"2492.250000","3075.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"19.713750",,"19.713750",,"19.713750",,,,,,,"4839.208333",,,,,"3943.750000",,"3.622222",,"389.844444",,,,"36.685714","0.977778","0.133333","1.466667","38.888889","0.000000","390.111111","0.000000","9.333333","379.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","714.000000",,,,,"0.000000","0.000000",,,"2135.750000","2635.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.062500",,"21.062500",,"21.062500",,,,,,,"5098.583333",,,,,"4213.583333",,"4.000000",,"353.933333",,,,"34.314286","0.955556","0.133333","0.844444","36.400000","0.000000","367.740741","0.000000","9.518519","356.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","656.000000",,,,,"0.000000","0.000000",,,"2067.750000","2605.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"20.229167",,"20.229167",,"20.229167",,,,,,,"5227.708333",,,,,"4046.708333",,"4.111111",,"355.111111",,,,"33.714286","1.111111","0.088889","1.355556","35.800000","0.000000","367.333333","0.000000","10.370370","355.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","651.750000",,,,,"0.000000","0.000000",,,"1999.375000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.282500",,"24.282500",,"24.282500",,,,,,,"3031.916667",,,,,"4857.416667",,"21.266667",,"473.577778",,,,"43.342857","1.911111","0.200000","1.266667","45.111111","0.000000","465.555556","0.000000","20.962963","440.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.125000","865.000000",,,,,"0.000000","0.000000",,,"2582.875000","3175.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.178750",,"25.178750",,"25.178750",,,,,,,"3900.000000",,,,,"5036.666667",,"3.977778",,"1013.777778",,,,"41.400000","0.955556","0.088889","4.066667","44.177778","0.000000","440.222222","0.000000","9.518519","429.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","15.714286",,,,,"0.000000","0.000000",,,"4154.375000","5611.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"28.437083",,"28.437083",,"28.437083",,,,,,,"3638.250000",,,,,"5688.375000",,"4.111111",,"373.711111",,,,"2527.771429","0.955556","0.088889","1.377778","30.044444","0.000000","311.259259","0.000000","9.629630","300.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","690.375000",,,,,"0.000000","0.000000",,,"1967.625000","2452.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.992500",,"27.992500",,"27.992500",,,,,,,"2436.458333",,,,,"5599.416667",,"8.577778",,"393.066667",,,,"2317.057143","1.466667","0.133333","1.022222","36.933333","0.000000","386.592593","0.000000","13.629630","370.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","876.875000",,,,,"0.000000","0.000000",,,"5075.125000","5665.500000",,,,,,,,,,,,,,,,,,,,,,,,, -,"25.729583",,"25.729583",,"25.729583",,,,,,,"3772.458333",,,,,"5146.875000",,"3.866667",,"338.377778",,,,"2118.114286","0.777778","0.088889","1.066667","30.777778","0.000000","316.740741","0.000000","8.074074","307.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","718.750000",,,,,"0.000000","0.000000",,,"4018.750000","4291.250000",,,,,,,,,,,,,,,,,,,,,,,,, -,"27.221667",,"27.221667",,"27.221667",,,,,,,"3001.833333",,,,,"5445.416667",,"4.311111",,"559.244444",,,,"1728.000000","0.955556","0.088889","1.155556","39.400000","0.000000","408.851852","0.000000","9.296296","398.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1064.875000",,,,,"0.000000","0.000000",,,"3247.625000","3960.125000",,,,,,,,,,,,,,,,,,,,,,,,, -,"24.568333",,"24.568333",,"24.568333",,,,,,,"3822.875000",,,,,"4914.708333",,"30.800000",,"519.644444",,,,"470.400000","2.155556","0.577778","1.333333","47.133333","0.000000","495.666667","0.000000","22.629630","471.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.750000","956.500000",,,,,"0.000000","0.000000",,,"2842.250000","3512.750000",,,,,,,,,,,,,,,,,,,,,,,,, -,"22.550417",,"22.550417",,"22.550417",,,,,,,"4712.500000",,,,,"4511.041667",,"4.688889",,"322.711111",,,,"29.285714","0.955556","0.111111","0.977778","31.288889","0.000000","328.888889","0.000000","9.851852","317.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","605.375000",,,,,"0.000000","0.000000",,,"1876.125000","2323.000000",,,,,,,,,,,,,,,,,,,,,,,,, -,"21.582917",,"21.582917",,"21.582917",,,,,,,"4338.750000",,,,,"4317.333333",,"3.400000",,"379.088889",,,,"36.371429","1.022222","0.133333","1.266667","38.933333","0.000000","398.740741","0.000000","9.740741","387.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","699.750000",,,,,"0.000000","0.000000",,,"2141.375000","2700.625000",,,,,,,,,,,,,,,,,,,,,,,,, -,"26.396250",,"26.396250",,"26.396250",,,,,,,"3317.000000",,,,,"5280.041667",,"3.800000",,"417.822222",,,,"35.114286","0.955556","0.088889","1.088889","37.622222","0.000000","385.555556","0.000000","9.185185","374.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","775.250000",,,,,"0.000000","0.000000",,,"2226.125000","2770.625000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host.csv b/splunk_eventgen/samples/vmware-actuals-host.csv deleted file mode 100644 index 905a7128..00000000 --- a/splunk_eventgen/samples/vmware-actuals-host.csv +++ /dev/null @@ -1,2 +0,0 @@ -"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO -"18541.239130","32.019766","18541.239130","32.019766","18541.239130","32.019766",,,,,,,"2242.192935",,,,,"5808.996377",,"6.022360","2932.263736","62.349689","2932.263736","2932.263736","23.152174","355.736183","3.348771","0.904537","3.174543","5.590737","0.000000","121.281804","0.000000","43.718196","75.482287","2907027.826087","4960558.086957","1689211.739130","0.000000","77973470.260870","0.000000","135369925.826087",,"6709144.695652","62702811.217391","0.000000","6249914.173913","0.000000","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783",,,,,,,,"433.638350","655.997585",,,,,"0.000000","0.000000",,,"11695.883152","6019.548913","4219.326087","908.260870","907.608696","904.739130","987.565217","981.000000","983.130435","0.000000","0.847826","0.000000","684.347826","676.326087","677.608696","786.978261","775.304348","777.804348","160.000000","6000.000000",,"8894531.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-fields.csv b/splunk_eventgen/samples/vmware-fields.csv deleted file mode 100644 index 45b52ed8..00000000 --- a/splunk_eventgen/samples/vmware-fields.csv +++ /dev/null @@ -1,136 +0,0 @@ -perftype,instance,fieldssplit -cpu,no,"AvgUsg_mhz" -cpu,no,"AvgUsg_pct" -cpu,no,"MaxUsg_mhz" -cpu,no,"MaxUsg_pct" -cpu,no,"MinUsg_mhz" -cpu,no,"MinUsg_pct" -cpu,no,"SumRdy_ms" -cpu,no,"SumSwpWait_ms" -cpu,no,"AvgDemand_MHz" -cpu,no,"AvgLat_pct" -cpu,no,"Entitle_MHz" -cpu,no,"SumCostop_ms" -cpu,no,"SumIdle_ms" -cpu,no,"SumMaxLtd_ms" -cpu,no,"SumOverlap_ms" -cpu,no,"SumRun_ms" -cpu,yes,"SumSys_ms" -cpu,yes,"SumUsd_ms" -cpu,yes,"SumWait_ms" -disk,no,"AvgRd_KBps" -disk,no,"AvgUsg_KBps" -disk,no,"AvgWr_KBps" -disk,no,"MaxUsg_KBps" -disk,no,"MinUsg_KBps" -disk,no,"MaxTotLat_ms" -disk,yes,AvgCmds -disk,yes,AvgRd -disk,yes,"AvgTotRdLat_ms" -disk,yes,"AvgTotWrLat_ms" -disk,yes,AvgWr -disk,yes,SumBusResets -disk,yes,SumCmds -disk,yes,SumCmdsAbort -disk,yes,SumRd -disk,yes,SumWr -mem,no,"AvgActWr_KB" -mem,no,"AvgAct_KB" -mem,no,"AvgCmpd_KB" -mem,no,"AvgCmpnRate_KBps" -mem,no,"AvgConsum_KB" -mem,no,"AvgDecmpnRate_KBps" -mem,no,"AvgGrtd_KB" -mem,no,"AvgOvrhdMax_KB" -mem,no,"AvgOvrhd_KB" -mem,no,"AvgShrd_KB" -mem,no,"AvgSwpIRate_KBps" -mem,no,"AvgSwpIn_KB" -mem,no,"AvgSwpORate_KBps" -mem,no,"AvgSwpOut_KB" -mem,no,"AvgSwpTarg_KB" -mem,no,"AvgSwpd_KB" -mem,no,"AvgUsg_pct" -mem,no,"AvgVmctlTarg_KB" -mem,no,"AvgVmctl_KB" -mem,no,"AvgZero_KB" -mem,no,"MaxAct_KB" -mem,no,"MaxConsum_KB" -mem,no,"MaxGrtd_KB" -mem,no,"MaxOvrhd_KB" -mem,no,"MaxShrd_KB" -mem,no,"MaxSwpIn_KB" -mem,no,"MaxSwpOut_KB" -mem,no,"MaxSwpTarg_KB" -mem,no,"MaxSwpd_KB" -mem,no,"MaxUsg_pct" -mem,no,"MaxVmctlTarg_KB" -mem,no,"MaxVmctl_KB" -mem,no,"MaxZero_KB" -mem,no,"MinAct_KB" -mem,no,"MinConsum_KB" -mem,no,"MinGrtd_KB" -mem,no,"MinOvrhd_KB" -mem,no,"MinShrd_KB" -mem,no,"MinSwpIn_KB" -mem,no,"MinSwpOut_KB" -mem,no,"MinSwpTarg_KB" -mem,no,"MinSwpd_KB" -mem,no,"MinUsg_pct" -mem,no,"MinVmctlTarg_KB" -mem,no,"MinVmctl_KB" -mem,no,"MinZero_KB" -mem,no,"ZipSaved_KB" -mem,no,"Zipped_KB" -mem,no,"AvgEntitle_KB" -mem,no,"AvgLat_pct" -mem,no,"AvgLlSwapUsd_KB" -mem,no,"AvgLlSwpIRate_KBps" -mem,no,"AvgLlSwpORate_KBps" -mem,no,"AvgOvrhdTouch_KB" -net,no,"AvgRvcd_KBps" -net,no,"AvgUsg_KBps" -net,no,"AvgXmit_KBps" -net,no,"MaxUsg_KBps" -net,no,"MinUsg_KBps" -net,no,"AvgBRx_KBps" -net,no,"AvgBTx_KBps" -net,no,SumBroadcastRx -net,no,SumBroadcastTx -net,no,SumDropRx -net,no,SumDropTx -net,no,SumMulticastRx -net,no,SumMulticastTx -net,yes,SumPktsRx -net,yes,SumPktsTx -power,no,"SumEnergy_j" -resCpu,no,"ActAvg15m_pct" -resCpu,no,"ActAvg1m_pct" -resCpu,no,"ActAvg5m_pct" -resCpu,no,"ActPk15m_pct" -resCpu,no,"ActPk1m_pct" -resCpu,no,"ActPk5m_pct" -resCpu,no,"MaxLtd15_pct" -resCpu,no,"MaxLtd1_pct" -resCpu,no,"MaxLtd5_pct" -resCpu,no,"RunAvg15m_pct" -resCpu,no,"RunAvg1m_pct" -resCpu,no,"RunAvg5m_pct" -resCpu,no,"RunPk15m_pct" -resCpu,no,"RunPk1m_pct" -resCpu,no,"RunPk5m_pct" -resCpu,no,SmplCnt -resCpu,no,"SmplPrd_ms" -sys,no,SumHeartbeat -sys,no,"Uptime_sec" -sys,no,"OsUptime_sec" -vDisk,yes,AvgRd -vDisk,yes,"AvgRd_KBps" -vDisk,yes,"AvgTotRdLat_ms" -vDisk,yes,"AvgTotWrLat_ms" -vDisk,yes,AvgWr -vDisk,yes,"AvgWr_KBps" -vDisk,yes,RdLoadMetric -vDisk,yes,RdOIO -vDisk,yes,WrLoadMetric -vDisk,yes,WrOIO diff --git a/splunk_eventgen/samples/vmware-hierarchy.csv b/splunk_eventgen/samples/vmware-hierarchy.csv deleted file mode 100644 index 40e68dac..00000000 --- a/splunk_eventgen/samples/vmware-hierarchy.csv +++ /dev/null @@ -1,9 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 03:30:26 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ross-datagens/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"" instanceUuid=""5012c4f6-e0b3-9daf-62a0-a1b47e67265e"" uuid=""4212c080-295c-e11e-0eba-a1b41060ae79"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ross-datagens/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ross-datagens/"" moid=""vm-2179"" type=""VirtualMachine"" name=""ross-datagen0044"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435026 -"2012-05-31 03:30:02 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"" instanceUuid=""501200a4-4da4-bfaa-f6d0-d5ce6fa6a913"" uuid=""42124cd4-7654-72f6-a95a-dbbb19b76626"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/QA/"" moid=""vm-1447"" type=""VirtualMachine"" name=""qasvwin7x64-HK1"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435002 -"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"" instanceUuid=""50127041-04d4-7c04-b381-7daa333399b9"" uuid=""4212c9c0-4b5e-d434-7498-3b17b0605b4e"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-1647"" type=""VirtualMachine"" name=""ANTIVIR01"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 -"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host10.foobar.com"" physicalhost=""host10.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-18"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"" instanceUuid=""5277badb-1342-e933-7dda-3d982779747d"" uuid=""564dc31d-0089-1fbb-57cd-a5373ac9c1db"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-16"" type=""VirtualMachine"" name=""vCenter41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 -"2012-05-31 03:29:45 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"" uuid=""44454c4c-5800-1052-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-20"" type=""HostSystem"" name=""host2.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434985 -"2012-05-31 03:29:44 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-19"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"" uuid=""44454c4c-5800-1051-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-19"" type=""HostSystem"" name=""host6.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434984 -"2012-05-31 03:29:40 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"" instanceUuid=""593E6A61-A674-478C-82C2-8EDB92A22906"" typeduipath=""/"" uipath=""/"" moid=""group-d1"" type=""VirtualCenter"" name=""VCENTER41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434980 -"2012-05-31 03:15:55 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/Solutions/VMware/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"" instanceUuid=""5012c9a3-1157-774d-6d43-7620a2a399de"" uuid=""4212765e-9013-6bca-547d-4b57f7add71f"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:Solutions/ResourcePool:VMware/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Solutions/VMware/QA/"" moid=""vm-744"" type=""VirtualMachine"" name=""io-qa-splunk"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434155 diff --git a/splunk_eventgen/samples/vmware-inventory.csv b/splunk_eventgen/samples/vmware-inventory.csv deleted file mode 100644 index 94492c00..00000000 --- a/splunk_eventgen/samples/vmware-inventory.csv +++ /dev/null @@ -1 +0,0 @@ -_raw,index,host,source,sourcetype "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=yellow, time=2012-05-31T03:53:31Z,subpath=triggeredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2029, overallStatus=yellow, time=2012-05-31T03:50:39Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1105, overallStatus=yellow, time=2012-05-31T03:44:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-141, overallStatus=yellow, time=2012-05-31T03:50:19Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-5.host-19, overallStatus=green, time=2012-04-27T22:57:23Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-4.host-19, overallStatus=green, time=2012-05-12T02:11:41Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-38.host-19, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-37.host-19, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-36.host-19, overallStatus=green, time=2011-12-01T19:48:26Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-35.host-19, overallStatus=green, time=2011-03-30T23:04:48Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-32.host-19, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-31.host-19, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-3.host-19, overallStatus=green, time=2012-05-14T01:06:22Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-29.host-19, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-27.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-26.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-24.host-19, overallStatus=gray, time=2012-05-29T16:00:41Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-23.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-22.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-21.host-19, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-20.host-19, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-19.host-19, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-18.host-19, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-17.host-19, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-16.host-19, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-15.host-19, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-14.host-19, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-13.host-19, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-12.host-19, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-1.host-19, overallStatus=green, time=2012-04-27T22:56:31Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=red, time=2012-05-31T03:20:51Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=yellow, time=2012-05-31T03:23:38Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2090, overallStatus=yellow, time=2012-05-31T03:26:21Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338242306, pnicDevice=vmnic4, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338241606, pnicDevice=vmnic0, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338297110, pnicDevice=vmnic5, uplinkPortKey=264, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338296399, pnicDevice=vmnic1, uplinkPortKey=263, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914974341, pnicDevice=vmnic6, uplinkPortKey=140, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914972820, pnicDevice=vmnic2, uplinkPortKey=138, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4103-35b23908, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",faultToleranceEnabled=True, name=host6.foobar.com, port=443, sslThumbprint=25:53:43:4A:E9:D8:2A:56:10:4A:6D:35:90:BB:82:8D:FC:F3:6E:F4, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",hz=2659999620, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4103, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=234, distributedMemoryFairness=291, overallCpuUsage=12881, overallMemoryUsage=65416, uptime=8915576,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=138, distributedMemoryFairness=380, overallCpuUsage=15011, overallMemoryUsage=46562, uptime=8911411,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=134, distributedMemoryFairness=379, overallCpuUsage=12645, overallMemoryUsage=46582, uptime=8910871,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=162, distributedMemoryFairness=286, overallCpuUsage=12131, overallMemoryUsage=68594, uptime=8914976,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=126, distributedMemoryFairness=288, overallCpuUsage=20193, overallMemoryUsage=68599, uptime=8913956,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=153, distributedMemoryFairness=382, overallCpuUsage=21654, overallMemoryUsage=46582, uptime=8909791,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf55e8-44794690-b3e8-842b2b76f183,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lunNumber=0, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"", device=[key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:73:10:77], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:7d:3e:c4], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=233, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[263:dvUplink1;264:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=235, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[137:dvUplink1;138:dvUplink2;139:dvUplink3;140:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=234, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.500000e116f4aa60, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa604d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-1664;vm-2022;vm-744;vm-1667;vm-385;vm-1836;vm-1001;vm-687;vm-1647;vm-480;vm-874;vm-281;vm-885;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1715;vm-1493;vm-1447;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;SC-WIN7-CLEAN;sc-centos-pciContRT-Current;io-qa-splunk;sushant_sandbox_centos2;perfy22;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;soln-am-centos-pm;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;soln_vmware_centos_5.6;qasvwin8r2x64-1;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;perfy67;jyun_test_empty;qasvwin7x64-HK1;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host6.foobar.com, overallStatus=green,vms=""vm-237;vm-1528;vm-1079;vm-1678;vm-1400;vm-975;vm-2502;vm-2556;vm-1522;vm-1375;vm-1187;vm-2498;vm-1934;vm-408;vm-2307;vm-1953;vm-1760;vm-1731;vm-1823;vm-824;vm-358;vm-1971;vm-1478;vm-2303;vm-1960;vm-1309;vm-1492;vm-1931;vm-985;vm-1970"",vmnames=""SOLN-W2008R2-5;beer.sv.splunk.com;soln-essNightly-BieberLR;tlee-rh5;soln-es2.0.0-4.3;VMware HealthAnalyzer;Centos6.2-64Sh01;testad;ivanhook-centos;bamboo-24;rhel6-64bit-p;Centos6.2-64Idx01;gen-win2008r2x64-CN-Trad;perfy39;se-vcenter;iv-wintest;qatwwin3rx64-3;ADH-W2k8R2-TPL;gen-fbsd81x86;soln-am-centos-dev2;perfy03;jason-ubuntu-2;btan_clone_nightly2n2b_FA;splunk_for_vmware_forwarder_appliance_ga-1.0-120502aLEAVE;splunk_for_vmware_forwarder_appliance_beta2-1.0-120403a;qa-vcent42x86;jtsai_fa_1;gen-win7x32-ultimate;soln-btsay-sandbox;jason-ubuntu-1"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-2022;vm-1664;vm-744;vm-1667;vm-385;vm-687;vm-1836;vm-1001;vm-1647;vm-480;vm-874;vm-885;vm-281;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1493;vm-1447;vm-1715;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;sc-centos-pciContRT-Current;SC-WIN7-CLEAN;io-qa-splunk;sushant_sandbox_centos2;perfy22;soln-am-centos-pm;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;qasvwin8r2x64-1;soln_vmware_centos_5.6;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;jyun_test_empty;qasvwin7x64-HK1;perfy67;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",model=PowerEdge R710, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt/net-lbt.5224,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman/openwsmand.5425,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp/slpd.5338,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa/vpxa.5453,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/nssquery.5463,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/hostd.5202,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/esxcfg-rescan.5626,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5486,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5444,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5415,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vprobed.5319,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5309,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vobd.5292,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5282,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/storageRM.5270,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5260,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sensord.5248,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5238,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5214,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5192,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/ntpd.5168,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5115,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4103-STD, type=VMFS, uuid=4daf55e8-44794690-b3e8-842b2b76f183, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:91:2e:9d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:91:2e:9c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:91:2e:99, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:91:2e:98, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:f1:85, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:f1:83, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:f1:81, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:f1:7f, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=22:131094:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=6:106:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=60:131132:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=636:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.500000e116f4aa60, deviceName=/vmfs/devices/disks/naa.500000e116f4aa60, devicePath=/vmfs/devices/disks/naa.500000e116f4aa60, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa60)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa604d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.500000e116f4aa60, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;96;80;0;0;-31;22;-12;-86;98;80;0;0;-31;22;-12;-86;99;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;67;75;81;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;49;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;65;81;75;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;51;54;54;51;55;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;54;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;97], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;98], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[68;53;65;52;80;66;49;48;49;49;56;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=summary/config/product",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2448, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=655, hostMemoryUsage=6043, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4904, sharedMemory=3287, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=115605,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=691, distributedMemoryEntitlement=1747, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=983, hostMemoryUsage=3980, overallCpuDemand=930, overallCpuUsage=664, privateMemory=3789, sharedMemory=307, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=41069,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=500, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=122, hostMemoryUsage=1192, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1074, sharedMemory=966, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=123280,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=657, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=436766,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=114, distributedCpuEntitlement=2712, distributedMemoryEntitlement=3842, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=1802, hostMemoryUsage=8101, overallCpuDemand=3775, overallCpuUsage=2978, privateMemory=7821, sharedMemory=370, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2514768,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=491, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=163, hostMemoryUsage=1185, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1076, sharedMemory=964, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=122620,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2560, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=409, hostMemoryUsage=6135, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4912, sharedMemory=3279, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=114585,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=239, distributedMemoryEntitlement=1642, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=573, hostMemoryUsage=4002, overallCpuDemand=239, overallCpuUsage=212, privateMemory=3827, sharedMemory=269, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=40109,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=678, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435986,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=112, distributedCpuEntitlement=3031, distributedMemoryEntitlement=4199, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2867, hostMemoryUsage=8118, overallCpuDemand=3084, overallCpuUsage=2206, privateMemory=7827, sharedMemory=364, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513988,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=677, overallCpuDemand=79, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435686,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=2579, distributedMemoryEntitlement=3882, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2621, hostMemoryUsage=8123, overallCpuDemand=2579, overallCpuUsage=2206, privateMemory=7828, sharedMemory=363, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513688,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=514, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=81, hostMemoryUsage=1194, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1078, sharedMemory=962, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=121660,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2446, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=327, hostMemoryUsage=6139, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4923, sharedMemory=3268, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=113625,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=638, distributedMemoryEntitlement=1760, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=614, hostMemoryUsage=4009, overallCpuDemand=824, overallCpuUsage=664, privateMemory=3872, sharedMemory=224, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=39149,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-migration.csv b/splunk_eventgen/samples/vmware-migration.csv deleted file mode 100644 index 240b52ef..00000000 --- a/splunk_eventgen/samples/vmware-migration.csv +++ /dev/null @@ -1 +0,0 @@ -host6.foobar.com,host-16 host2.foobar.com,host-20 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv deleted file mode 100644 index bef02f21..00000000 --- a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv +++ /dev/null @@ -1,29 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-guest-instance.csv b/splunk_eventgen/samples/vmware-perf-guest-instance.csv deleted file mode 100644 index da3f27a7..00000000 --- a/splunk_eventgen/samples/vmware-perf-guest-instance.csv +++ /dev/null @@ -1,34 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv deleted file mode 100644 index 5e7651b3..00000000 --- a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv +++ /dev/null @@ -1,15 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf-host-instance.csv b/splunk_eventgen/samples/vmware-perf-host-instance.csv deleted file mode 100644 index bca11490..00000000 --- a/splunk_eventgen/samples/vmware-perf-host-instance.csv +++ /dev/null @@ -1,211 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf.csv b/splunk_eventgen/samples/vmware-perf.csv deleted file mode 100644 index 56022b24..00000000 --- a/splunk_eventgen/samples/vmware-perf.csv +++ /dev/null @@ -1,286 +0,0 @@ -"_raw",index,host,source,sourcetype,"_time" -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 -"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/webhosts.sample b/splunk_eventgen/samples/webhosts.sample deleted file mode 100644 index 66e7e32b..00000000 --- a/splunk_eventgen/samples/webhosts.sample +++ /dev/null @@ -1,3 +0,0 @@ -10.2.1.33 -10.2.1.34 -10.2.1.35 \ No newline at end of file diff --git a/splunk_eventgen/samples/windbag b/splunk_eventgen/samples/windbag deleted file mode 100644 index c9b52d7d..00000000 --- a/splunk_eventgen/samples/windbag +++ /dev/null @@ -1,5 +0,0 @@ -2014-01-04 20:54:34 WINDBAG Event 1 of 5 -2014-01-04 20:54:35 WINDBAG Event 2 of 5 -2014-01-04 20:54:36 WINDBAG Event 3 of 5 -2014-01-04 20:54:37 WINDBAG Event 4 of 5 -2014-01-04 20:54:38 WINDBAG Event 5 of 5 \ No newline at end of file diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py deleted file mode 100644 index 528209ef..00000000 --- a/tests/unit/conftest.py +++ /dev/null @@ -1,17 +0,0 @@ -from os import path as op - -import pytest - -from splunk_eventgen.lib.eventgenconfig import Config - - -@pytest.fixture -def eventgen_config(): - """Returns a function to create config instance based on config file""" - - def _make_eventgen_config_instance(configfile=None): - if configfile is not None: - configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) - return Config(configfile=configfile) - - return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py deleted file mode 100644 index b0391ef6..00000000 --- a/tests/unit/test_eventgenconfig.py +++ /dev/null @@ -1,277 +0,0 @@ -import json -import os -from ConfigParser import ConfigParser - -import pytest - -from splunk_eventgen.lib.eventgensamples import Sample - - -def test_makeSplunkEmbedded(eventgen_config): - """Test makeSplunkEmbedded works""" - config_instance = eventgen_config() - session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' - config_instance.makeSplunkEmbedded(session_key) - assert config_instance.splunkEmbedded - # reset splunkEmbedded since all instances share the attribute - config_instance.splunkEmbedded = False - - -def test_buildConfDict(eventgen_config): - """Test buildConfDict returns the same as reading directly from file""" - config_instance = eventgen_config() - config_instance._buildConfDict() - configparser = ConfigParser() - splunk_eventgen_folder = os.path.join( - os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') - configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) - configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) - - for key, value in config_instance._confDict['global'].items(): - assert value == configparser.get('global', key) - - -def test_validate_setting_count(eventgen_config): - """Test count config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'count', '0')) == int - assert config_instance._validateSetting('sample', 'count', '0') == 0 - - -def test_validate_setting_delay(eventgen_config): - """Test delay config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'delay', '10')) == int - assert config_instance._validateSetting('sample', 'delay', '10') == 10 - - -def test_validate_setting_interval(eventgen_config): - """Test interval config is int with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'interval', '3')) == int - assert config_instance._validateSetting('sample', 'interval', '3') == 3 - - -def test_validate_setting_perdayvolume(eventgen_config): - """Test perdayvolume config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float - assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 - - -def test_validate_setting_randomizeCount(eventgen_config): - """Test randomizeCount config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float - assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 - - -def test_validate_setting_timeMultiple(eventgen_config): - """Test timeMultiple config is float with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float - assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 - - -def test_validate_setting_disabled(eventgen_config): - """Test disabled config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'disabled', 'false')) == bool - assert config_instance._validateSetting('sample', 'disabled', 'false') is False - - -def test_validate_setting_profiler(eventgen_config): - """Test profiler config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool - assert config_instance._validateSetting('sample', 'profiler', 'false') is False - - -def test_validate_setting_useOutputQueue(eventgen_config): - """Test useOutputQueue config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool - assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False - - -def test_validate_setting_bundlelines(eventgen_config): - """Test bundlelines config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool - assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False - - -def test_validate_setting_httpeventWaitResponse(eventgen_config): - """Test httpeventWaitResponse config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool - assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False - - -def test_validate_setting_sequentialTimestamp(eventgen_config): - """Test sequentialTimestamp config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool - assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False - - -def test_validate_setting_autotimestamp(eventgen_config): - """Test autotimestamp config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool - assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False - - -def test_validate_setting_randomizeEvents(eventgen_config): - """Test randomizeEvents config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool - assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False - - -def test_validate_setting_outputCounter(eventgen_config): - """Test outputCounter config is bool with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool - assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False - - -def test_validate_setting_minuteOfHourRate(eventgen_config): - """Test minuteOfHourRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ - ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ - ' "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1,' \ - ' "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1,' \ - ' "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1,' \ - ' "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1,' \ - ' "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 }' - assert type(config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate)) == dict - result = json.loads(minuteOfHourRate) - assert config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate) == result - - -def test_validate_setting_hourOfDayRate(eventgen_config): - """Test hourOfDayRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ - ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ - ' "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70,' \ - ' "22": 0.60, "23": 0.45 }' - assert type(config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate)) == dict - result = json.loads(hourOfDayRate) - assert config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate) == result - - -def test_validate_setting_dayOfWeekRate(eventgen_config): - """Test dayOfWeekRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' - assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict - result = json.loads(dayOfWeekRate) - assert config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate) == result - - -def test_validate_setting_dayOfMonthRate(eventgen_config): - """Test dayOfMonthRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ - ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ - ' "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1,' \ - ' "31": 1 }' - assert type(config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate)) == dict - result = json.loads(dayOfMonthRate) - assert config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate) == result - - -def test_validate_setting_monthOfYearRate(eventgen_config): - """Test monthOfYearRate config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ - ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' - assert type(config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate)) == dict - result = json.loads(monthOfYearRate) - assert config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate) == result - - -def test_validate_setting_httpeventServers(eventgen_config): - """Test httpeventServers config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ - ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' - assert type(config_instance._validateSetting('sample', 'httpeventServers', httpeventServers)) == dict - result = json.loads(httpeventServers) - assert config_instance._validateSetting('sample', 'httpeventServers', httpeventServers) == result - - -def test_validate_setting_autotimestamps(eventgen_config): - """Test autotimestamps config is dict with right value""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ - r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ - r'["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ - r'["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ' \ - r'["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ - r'["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ' \ - r'["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ' \ - r'["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ' \ - r'["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ' \ - r'["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ' \ - r'["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ' \ - r'["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ' \ - r'",%m/%d/%Y %I:%M:%S %p,"], ' \ - r'["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ' \ - r'["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ' \ - r'["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"],' \ - r'["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ - r'["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ' \ - r'["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ' \ - r'["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", ' \ - r'"%Y-%m-%dT%H:%M:%S"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ' \ - r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]]' - assert type(config_instance._validateSetting('sample', 'autotimestamps', autotimestamps)) == list - result = json.loads(autotimestamps) - assert config_instance._validateSetting('sample', 'autotimestamps', autotimestamps) == result - - -def test_getPlugin(eventgen_config): - """Test getPlugin method without loading any plugins""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - with pytest.raises(KeyError): - config_instance.getPlugin('output.awss3') - - -def test_getSplunkUrl(eventgen_config): - """Test getSplunkUrl with provided sample object""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - sample = Sample('test') - sample.splunkHost = 'localhost' - sample.splunkMethod = 'https' - sample.splunkPort = '8088' - - assert ('https://localhost:8088', 'https', 'localhost', '8088') == config_instance.getSplunkUrl(sample) - - -def test_validateTimeZone(eventgen_config): - """Test _validateTimeZone method""" - pass - - -def test_validateSeed(eventgen_config): - """Test _validateSeed method""" - pass - - -def test_punct(eventgen_config): - """Test _punct method with given string""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - assert '--:\n$^' == config_instance._punct('this-is-a: test \ntest $^') - - -def test_parse(eventgen_config): - """Test parse method with given evengen config""" - config_instance = eventgen_config(configfile='eventgen.conf.config') - config_instance.parse() - assert len(config_instance.samples) == 1 diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py deleted file mode 100644 index 4dc7d13d..00000000 --- a/tests/unit/test_timeparser.py +++ /dev/null @@ -1,105 +0,0 @@ -import datetime - -import pytest - -from splunk_eventgen.lib import timeparser - -time_delta_test_params = [(datetime.timedelta(days=1), 86400), - (datetime.timedelta(days=1, hours=3, minutes=15, seconds=32), 98132), - (datetime.timedelta(hours=1, minutes=10), 4200), (datetime.timedelta(hours=-1), -3600), - (None, 0)] - - -@pytest.mark.parametrize('delta,expect', time_delta_test_params) -def test_time_delta_2_second(delta, expect): - ''' Test timeDelta2secs function, convert time delta object to seconds - Normal cases: - case 1: time delta is 1 day, expect is 86400 - case 2: time delta is 1 day 3 hour 15 minutes 32 seconds, expect is 98132 - case 3: time delta is less than 1 day, only 1 hour 10 minutes, expect is 4200 - case 4: time delta is 1 hour ago, expect is -3600 - - Corner cases: - case 1: delta object is None -- invalid input, expect is - ''' - assert timeparser.timeDelta2secs(delta) == expect - - -def check_datetime_equal(d1, d2): - assert d1.year == d2.year - assert d1.month == d2.month - assert d1.day == d2.day - assert d1.hour == d2.hour - assert d1.minute == d2.minute - assert d1.second == d2.second - - -parse_time_math_params = [('+', '100', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 12, 0)), - ('-', '20', 'm', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2017, 7, 8, 4, 10, 20)), - ('', '3', 'w', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 29, 4, 10, 20)), - ('', '0', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 10, 20)), - ('', '123', '', datetime.datetime(2019, 3, 8, 4, 10, 20), - datetime.datetime(2019, 3, 8, 4, 10, 20))] - - -@pytest.mark.parametrize('plusminus,num,unit,ret,expect', parse_time_math_params) -def test_time_parser_time_math(plusminus, num, unit, ret, expect): - ''' - test timeParserTimeMath function, parse the time modifier - Normal Case: - Case 1: input "+100s" -- the parser should translate it as 100 seconds later. - Case 2: input "-20m" -- the parser should handle the month larger than 12 and translate as 20 months ago - Case 3: input '3w' -- the parser should translate as 21 days later. - - Corner Cases: - Case 1: input "0s" -- the time parser should return now - Case 2: input "123" -- unit is the empty string, behavior - ''' - check_datetime_equal(timeparser.timeParserTimeMath(plusminus, num, unichr, ret), expect) - - -def mock_now(): - return datetime.datetime(2019, 3, 10, 13, 20, 15) - - -def mock_utc_now(): - return datetime.datetime(2019, 3, 10, 5, 20, 15) - - -timeparser_params = [ - ('now', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), - ('now', datetime.timedelta(days=0), datetime.datetime(2019, 3, 10, 5, 20, 15)), - ('now', datetime.timedelta(hours=2), datetime.datetime(2019, 3, 10, 7, 20, 15)), - ('now', datetime.timedelta(hours=-3), datetime.datetime(2019, 3, 10, 2, 20, 15)), - ('-7d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 3, 13, 20, 15)), - ('-0mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 3, 1, 0, 0, 0)), - ('-1mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 2, 1, 0, 0, 0)), - ('-3d@d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 7, 0, 0, 0)), - ('+5d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 15, 13, 20, 15)), - ('', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), ] - - -@pytest.mark.parametrize('ts,tz,expect', timeparser_params) -def test_timeparser(ts, tz, expect): - ''' - test timeParser function, parse splunk time modifier - Normal Cases: - Case 1: get now timestamp - Case 2: get utc now timestamp - Case 3: get utc+2 timezone timestamp - Case 4: get utc-2 timezone timestamp - Case 5: get the 7 days ago timestamp - Case 5: get the beginning of this month. check the snap to month - Case 6: get the beginning of last month. check the snap to last month - Case 7: get 3 days ago, snap to day - Case 8: get 5 days later - - Corner Cases: - Case 1: empty string as input. behavior - ''' - r = timeparser.timeParser(ts, tz, mock_now, mock_utc_now) - check_datetime_equal(r, expect) From b6a3dba8f4fa4be4f723cc589be47a8247fc697b Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:53:06 +0800 Subject: [PATCH 60/68] restore samples file --- .../samples/anomalous.hostname.sample | 1 + .../samples/anomalous.ip_address.sample | 1 + .../samples/anomalous.mac_address.sample | 1 + splunk_eventgen/samples/artIDs.sample | 21 + splunk_eventgen/samples/artists.sample | 0 splunk_eventgen/samples/city.state.zipcode | 29470 +++++ splunk_eventgen/samples/dist.all.last | 88799 +++++++++++++++ splunk_eventgen/samples/dist.female.first | 4275 + splunk_eventgen/samples/dist.male.first | 1219 + splunk_eventgen/samples/external_ips.sample | 150 + splunk_eventgen/samples/firstNames.sample | 2000 + splunk_eventgen/samples/hostname.sample | 50 + splunk_eventgen/samples/iana_domains.sample | 316 + splunk_eventgen/samples/internal_ips.sample | 951 + splunk_eventgen/samples/ip_address.sample | 50 + splunk_eventgen/samples/lastNames.sample | 1002 + splunk_eventgen/samples/linux_arch.sample | 25 + splunk_eventgen/samples/mac_address.sample | 50 + .../samples/malicious_domains.sample | 5 + splunk_eventgen/samples/markets.sample | 1 + splunk_eventgen/samples/mdn.sample | 815 + .../samples/networkProvider.sample | 39 + .../samples/oracle11.action.sample | 20 + .../samples/oracleUserNames.sample | 24 + splunk_eventgen/samples/orderType.sample | 6 + .../samples/orig.sample.mobilemusic.csv | 1 + splunk_eventgen/samples/phones.sample | 69 + splunk_eventgen/samples/plans.sample | 24 + splunk_eventgen/samples/radPIDs.sample | 3 + splunk_eventgen/samples/radhosts.sample | 3 + splunk_eventgen/samples/random_domains.sample | 73 + splunk_eventgen/samples/sample.businessevent | 1 + splunk_eventgen/samples/sample.mobilemusic | 3 + .../samples/sample.mobilemusic.csv | 6 + splunk_eventgen/samples/sample.tutorial1 | 2020 + splunk_eventgen/samples/sample.tutorial2 | 274 + splunk_eventgen/samples/sample.tutorial3 | 1 + splunk_eventgen/samples/sample.tutorial4 | 4 + splunk_eventgen/samples/searchArtists.sample | 21 + splunk_eventgen/samples/sha1_checksums.sample | 1000 + splunk_eventgen/samples/states | 50 + splunk_eventgen/samples/states.abbrev | 59 + splunk_eventgen/samples/street.types | 59 + splunk_eventgen/samples/streetNames.sample | 91670 ++++++++++++++++ splunk_eventgen/samples/streetSuffixes.sample | 24 + splunk_eventgen/samples/streets | 168 + splunk_eventgen/samples/trackIDs.sample | 23 + splunk_eventgen/samples/transType.sample | 6 + splunk_eventgen/samples/uris.sample | 5 + splunk_eventgen/samples/userHostIp.sample | 1000 + splunk_eventgen/samples/userName.sample | 1000 + splunk_eventgen/samples/useragents.sample | 84 + .../samples/useragents_desktop.sample | 75 + .../samples/useragents_mobile.sample | 84 + .../vmware-actuals-guest-aggregate.csv | 847 + .../samples/vmware-actuals-guest-instance.csv | 847 + .../samples/vmware-actuals-guest.csv | 2 + .../samples/vmware-actuals-host-aggregate.csv | 860 + .../samples/vmware-actuals-host-instance.csv | 852 + .../samples/vmware-actuals-host.csv | 2 + splunk_eventgen/samples/vmware-fields.csv | 136 + splunk_eventgen/samples/vmware-hierarchy.csv | 9 + splunk_eventgen/samples/vmware-inventory.csv | 1 + splunk_eventgen/samples/vmware-migration.csv | 1 + .../samples/vmware-perf-guest-aggregate.csv | 29 + .../samples/vmware-perf-guest-instance.csv | 34 + .../samples/vmware-perf-host-aggregate.csv | 15 + .../samples/vmware-perf-host-instance.csv | 211 + splunk_eventgen/samples/vmware-perf.csv | 286 + splunk_eventgen/samples/webhosts.sample | 3 + splunk_eventgen/samples/windbag | 5 + 71 files changed, 231241 insertions(+) create mode 100644 splunk_eventgen/samples/anomalous.hostname.sample create mode 100644 splunk_eventgen/samples/anomalous.ip_address.sample create mode 100644 splunk_eventgen/samples/anomalous.mac_address.sample create mode 100644 splunk_eventgen/samples/artIDs.sample create mode 100644 splunk_eventgen/samples/artists.sample create mode 100644 splunk_eventgen/samples/city.state.zipcode create mode 100644 splunk_eventgen/samples/dist.all.last create mode 100644 splunk_eventgen/samples/dist.female.first create mode 100644 splunk_eventgen/samples/dist.male.first create mode 100644 splunk_eventgen/samples/external_ips.sample create mode 100644 splunk_eventgen/samples/firstNames.sample create mode 100644 splunk_eventgen/samples/hostname.sample create mode 100644 splunk_eventgen/samples/iana_domains.sample create mode 100644 splunk_eventgen/samples/internal_ips.sample create mode 100644 splunk_eventgen/samples/ip_address.sample create mode 100644 splunk_eventgen/samples/lastNames.sample create mode 100644 splunk_eventgen/samples/linux_arch.sample create mode 100644 splunk_eventgen/samples/mac_address.sample create mode 100644 splunk_eventgen/samples/malicious_domains.sample create mode 100644 splunk_eventgen/samples/markets.sample create mode 100644 splunk_eventgen/samples/mdn.sample create mode 100644 splunk_eventgen/samples/networkProvider.sample create mode 100644 splunk_eventgen/samples/oracle11.action.sample create mode 100644 splunk_eventgen/samples/oracleUserNames.sample create mode 100644 splunk_eventgen/samples/orderType.sample create mode 100644 splunk_eventgen/samples/orig.sample.mobilemusic.csv create mode 100644 splunk_eventgen/samples/phones.sample create mode 100644 splunk_eventgen/samples/plans.sample create mode 100644 splunk_eventgen/samples/radPIDs.sample create mode 100644 splunk_eventgen/samples/radhosts.sample create mode 100644 splunk_eventgen/samples/random_domains.sample create mode 100644 splunk_eventgen/samples/sample.businessevent create mode 100644 splunk_eventgen/samples/sample.mobilemusic create mode 100644 splunk_eventgen/samples/sample.mobilemusic.csv create mode 100644 splunk_eventgen/samples/sample.tutorial1 create mode 100644 splunk_eventgen/samples/sample.tutorial2 create mode 100644 splunk_eventgen/samples/sample.tutorial3 create mode 100644 splunk_eventgen/samples/sample.tutorial4 create mode 100644 splunk_eventgen/samples/searchArtists.sample create mode 100644 splunk_eventgen/samples/sha1_checksums.sample create mode 100644 splunk_eventgen/samples/states create mode 100644 splunk_eventgen/samples/states.abbrev create mode 100644 splunk_eventgen/samples/street.types create mode 100644 splunk_eventgen/samples/streetNames.sample create mode 100644 splunk_eventgen/samples/streetSuffixes.sample create mode 100644 splunk_eventgen/samples/streets create mode 100644 splunk_eventgen/samples/trackIDs.sample create mode 100644 splunk_eventgen/samples/transType.sample create mode 100644 splunk_eventgen/samples/uris.sample create mode 100644 splunk_eventgen/samples/userHostIp.sample create mode 100644 splunk_eventgen/samples/userName.sample create mode 100644 splunk_eventgen/samples/useragents.sample create mode 100644 splunk_eventgen/samples/useragents_desktop.sample create mode 100644 splunk_eventgen/samples/useragents_mobile.sample create mode 100644 splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-guest-instance.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-guest.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host-instance.csv create mode 100644 splunk_eventgen/samples/vmware-actuals-host.csv create mode 100644 splunk_eventgen/samples/vmware-fields.csv create mode 100644 splunk_eventgen/samples/vmware-hierarchy.csv create mode 100644 splunk_eventgen/samples/vmware-inventory.csv create mode 100644 splunk_eventgen/samples/vmware-migration.csv create mode 100644 splunk_eventgen/samples/vmware-perf-guest-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-perf-guest-instance.csv create mode 100644 splunk_eventgen/samples/vmware-perf-host-aggregate.csv create mode 100644 splunk_eventgen/samples/vmware-perf-host-instance.csv create mode 100644 splunk_eventgen/samples/vmware-perf.csv create mode 100644 splunk_eventgen/samples/webhosts.sample create mode 100644 splunk_eventgen/samples/windbag diff --git a/splunk_eventgen/samples/anomalous.hostname.sample b/splunk_eventgen/samples/anomalous.hostname.sample new file mode 100644 index 00000000..be935ae0 --- /dev/null +++ b/splunk_eventgen/samples/anomalous.hostname.sample @@ -0,0 +1 @@ +HOST-001 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.ip_address.sample b/splunk_eventgen/samples/anomalous.ip_address.sample new file mode 100644 index 00000000..5c34a96d --- /dev/null +++ b/splunk_eventgen/samples/anomalous.ip_address.sample @@ -0,0 +1 @@ +10.11.36.20 \ No newline at end of file diff --git a/splunk_eventgen/samples/anomalous.mac_address.sample b/splunk_eventgen/samples/anomalous.mac_address.sample new file mode 100644 index 00000000..4750e3b7 --- /dev/null +++ b/splunk_eventgen/samples/anomalous.mac_address.sample @@ -0,0 +1 @@ +19:61:3c:3e:20:84 \ No newline at end of file diff --git a/splunk_eventgen/samples/artIDs.sample b/splunk_eventgen/samples/artIDs.sample new file mode 100644 index 00000000..73029f91 --- /dev/null +++ b/splunk_eventgen/samples/artIDs.sample @@ -0,0 +1,21 @@ +0019 +0018 +0014 +006 +0026 +0017 +0016 +0015 +0027 +007 +0021 +0011 +0012 +0013 +0020 +005 +0044 +001 +0032 +008 +0022 \ No newline at end of file diff --git a/splunk_eventgen/samples/artists.sample b/splunk_eventgen/samples/artists.sample new file mode 100644 index 00000000..e69de29b diff --git a/splunk_eventgen/samples/city.state.zipcode b/splunk_eventgen/samples/city.state.zipcode new file mode 100644 index 00000000..100bb1dd --- /dev/null +++ b/splunk_eventgen/samples/city.state.zipcode @@ -0,0 +1,29470 @@ +Acmar,AL,35004 +Adamsville,AL,35005 +Adger,AL,35006 +Keystone,AL,35007 +New Site,AL,35010 +Alpine,AL,35014 +Arab,AL,35016 +Baileyton,AL,35019 +Bessemer,AL,35020 +Hueytown,AL,35023 +Blountsville,AL,35031 +Bremen,AL,35033 +Brent,AL,35034 +Brierfield,AL,35035 +Calera,AL,35040 +Centreville,AL,35042 +Chelsea,AL,35043 +Coosa Pines,AL,35044 +Clanton,AL,35045 +Cleveland,AL,35049 +Columbiana,AL,35051 +Crane Hill,AL,35053 +Cropwell,AL,35054 +Cullman,AL,35055 +Dolomite,AL,35061 +Dora,AL,35062 +Empire,AL,35063 +Fairfield,AL,35064 +Coalburg,AL,35068 +Gardendale,AL,35071 +Goodwater,AL,35072 +Alden,AL,35073 +Hanceville,AL,35077 +Harpersville,AL,35078 +Hayden,AL,35079 +Helena,AL,35080 +Holly Pond,AL,35083 +Jemison,AL,35085 +Joppa,AL,35087 +Kellyton,AL,35089 +Kimberly,AL,35091 +Leeds,AL,35094 +Lincoln,AL,35096 +Logan,AL,35098 +Mc Calla,AL,35111 +Maylene,AL,35114 +Montevallo,AL,35115 +Morris,AL,35116 +Mount Olive,AL,35117 +Sylvan Springs,AL,35118 +Odenville,AL,35120 +Oneonta,AL,35121 +Indian Springs,AL,35124 +Pell City,AL,35125 +Dixiana,AL,35126 +Pleasant Grove,AL,35127 +Quinton,AL,35130 +Ragland,AL,35131 +Remlap,AL,35133 +Riverside,AL,35135 +Rockford,AL,35136 +Shelby,AL,35143 +Springville,AL,35146 +Sterrett,AL,35147 +Sumiton,AL,35148 +Sylacauga,AL,35150 +Talladega,AL,35160 +Thorsby,AL,35171 +Trafford,AL,35172 +Trussville,AL,35173 +Union Grove,AL,35175 +Vandiver,AL,35176 +Vincent,AL,35178 +Vinemont,AL,35179 +Warrior,AL,35180 +Weogufka,AL,35183 +West Blocton,AL,35184 +Wilsonville,AL,35186 +Woodstock,AL,35188 +Birmingham,AL,35203 +Birmingham,AL,35204 +Birmingham,AL,35205 +Birmingham,AL,35206 +Birmingham,AL,35207 +Birmingham,AL,35208 +Homewood,AL,35209 +Irondale,AL,35210 +Birmingham,AL,35211 +Birmingham,AL,35212 +Crestline Height,AL,35213 +Birmingham,AL,35214 +Center Point,AL,35215 +Vestavia Hills,AL,35216 +Birmingham,AL,35217 +Birmingham,AL,35218 +Birmingham,AL,35221 +Birmingham,AL,35222 +Mountain Brook,AL,35223 +Birmingham,AL,35224 +Bluff Park,AL,35226 +Midfield,AL,35228 +Birmingham,AL,35233 +Birmingham,AL,35234 +Center Point,AL,35235 +Shoal Creek,AL,35242 +Cahaba Heights,AL,35243 +Hoover,AL,35244 +Tuscaloosa,AL,35401 +Holt,AL,35404 +Tuscaloosa,AL,35405 +Tuscaloosa,AL,35406 +Stewart,AL,35441 +Aliceville,AL,35442 +Boligee,AL,35443 +Brookwood,AL,35444 +Buhl,AL,35446 +Carrollton,AL,35447 +Coker,AL,35452 +Cottondale,AL,35453 +Duncanville,AL,35456 +Echola,AL,35457 +Elrod,AL,35458 +Emelle,AL,35459 +Epes,AL,35460 +Ethelsville,AL,35461 +Eutaw,AL,35462 +Fosters,AL,35463 +Gainesville,AL,35464 +Gordo,AL,35466 +Knoxville,AL,35469 +Coatopa,AL,35470 +Cypress,AL,35474 +Northport,AL,35476 +Ralph,AL,35480 +Reform,AL,35481 +Vance,AL,35490 +Jasper,AL,35501 +Addison,AL,35540 +Arley,AL,35541 +Bankston,AL,35542 +Bear Creek,AL,35543 +Beaverton,AL,35544 +Berry,AL,35546 +Brilliant,AL,35548 +Carbon Hill,AL,35549 +Cordova,AL,35550 +Detroit,AL,35552 +Double Springs,AL,35553 +Eldridge,AL,35554 +Fayette,AL,35555 +Guin,AL,35563 +Hackleburg,AL,35564 +Haleyville,AL,35565 +Hamilton,AL,35570 +Hodges,AL,35571 +Houston,AL,35572 +Kennedy,AL,35574 +Lynn,AL,35575 +Millport,AL,35576 +Nauvoo,AL,35578 +Oakman,AL,35579 +Parrish,AL,35580 +Phil Campbell,AL,35581 +Red Bay,AL,35582 +Spruce Pine,AL,35585 +Sulligent,AL,35586 +Townley,AL,35587 +Vernon,AL,35592 +Vina,AL,35593 +Winfield,AL,35594 +Decatur,AL,35601 +Decatur,AL,35603 +Anderson,AL,35610 +Athens,AL,35611 +Cherokee,AL,35616 +Courtland,AL,35618 +Danville,AL,35619 +Elkmont,AL,35620 +Eva,AL,35621 +Falkville,AL,35622 +Florence,AL,35630 +Florence,AL,35633 +Hartselle,AL,35640 +Hillsboro,AL,35643 +Killen,AL,35645 +Leighton,AL,35646 +Lester,AL,35647 +Lexington,AL,35648 +Moulton,AL,35650 +Mount Hope,AL,35651 +Rogersville,AL,35652 +Russellville,AL,35653 +Sheffield,AL,35660 +Muscle Shoals,AL,35661 +Somerville,AL,35670 +Tanner,AL,35671 +Town Creek,AL,35672 +Trinity,AL,35673 +Tuscumbia,AL,35674 +Waterloo,AL,35677 +Ardmore,AL,35739 +Bridgeport,AL,35740 +Brownsboro,AL,35741 +Dutton,AL,35744 +Estillfork,AL,35745 +Fackler,AL,35746 +Grant,AL,35747 +Gurley,AL,35748 +Harvest,AL,35749 +Hazel Green,AL,35750 +Hollytree,AL,35751 +Hollywood,AL,35752 +Laceys Spring,AL,35754 +Langston,AL,35755 +Triana,AL,35758 +Meridianville,AL,35759 +New Hope,AL,35760 +New Market,AL,35761 +Big Cove,AL,35763 +Paint Rock,AL,35764 +Pisgah,AL,35765 +Princeton,AL,35766 +Hytop,AL,35768 +Section,AL,35771 +Stevenson,AL,35772 +Toney,AL,35773 +Trenton,AL,35774 +Valhermoso Sprin,AL,35775 +Woodville,AL,35776 +Huntsville,AL,35801 +Huntsville,AL,35802 +Huntsville,AL,35803 +Huntsville,AL,35805 +Huntsville,AL,35806 +Huntsville,AL,35808 +Huntsville,AL,35810 +Huntsville,AL,35811 +Huntsville,AL,35816 +Huntsville,AL,35824 +Southside,AL,35901 +Hokes Bluff,AL,35903 +Gadsden,AL,35904 +Glencoe,AL,35905 +Albertville,AL,35950 +Snead,AL,35952 +Ashville,AL,35953 +Attalla,AL,35954 +Boaz,AL,35957 +Bryant,AL,35958 +Cedar Bluff,AL,35959 +Centre,AL,35960 +Collinsville,AL,35961 +Crossville,AL,35962 +Dawson,AL,35963 +Flat Rock,AL,35966 +Fort Payne,AL,35967 +Fyffe,AL,35971 +Gallant,AL,35972 +Gaylesville,AL,35973 +Geraldine,AL,35974 +Groveoak,AL,35975 +Guntersville,AL,35976 +Henagar,AL,35978 +Higdon,AL,35979 +Horton,AL,35980 +Ider,AL,35981 +Leesburg,AL,35983 +Mentone,AL,35984 +Rainsville,AL,35986 +Steele,AL,35987 +Sylvania,AL,35988 +Valley Head,AL,35989 +Autaugaville,AL,36003 +Eufaula,AL,36004 +Banks,AL,36005 +Billingsley,AL,36006 +Brantley,AL,36009 +Brundidge,AL,36010 +Cecil,AL,36013 +Clayton,AL,36016 +Clio,AL,36017 +Deatsville,AL,36022 +Eclectic,AL,36024 +Elmore,AL,36025 +Equality,AL,36026 +Eufaula,AL,36027 +Dozier,AL,36028 +Fitzpatrick,AL,36029 +Forest Home,AL,36030 +Fort Davis,AL,36031 +Fort Deposit,AL,36032 +Georgiana,AL,36033 +Glenwood,AL,36034 +Goshen,AL,36035 +Grady,AL,36036 +Greenville,AL,36037 +Gantt,AL,36038 +Hardaway,AL,36039 +Hayneville,AL,36040 +Highland Home,AL,36041 +Honoraville,AL,36042 +Hope Hull,AL,36043 +Lapine,AL,36046 +Letohatchee,AL,36047 +Louisville,AL,36048 +Luverne,AL,36049 +Marbury,AL,36051 +Mathews,AL,36052 +Midway,AL,36053 +Millbrook,AL,36054 +Perote,AL,36061 +Pike Road,AL,36064 +Prattville,AL,36066 +Prattville,AL,36067 +Ramer,AL,36069 +Rutledge,AL,36071 +Shorter,AL,36075 +Tallassee,AL,36078 +Titus,AL,36080 +Troy,AL,36081 +Tuskegee,AL,36083 +Tuskegee Institu,AL,36088 +Union Springs,AL,36089 +Verbena,AL,36091 +Wetumpka,AL,36092 +Montgomery,AL,36104 +Montgomery,AL,36105 +Montgomery,AL,36106 +Montgomery,AL,36107 +Montgomery,AL,36108 +Montgomery,AL,36109 +Montgomery,AL,36110 +Montgomery,AL,36111 +Maxwell A F B,AL,36113 +Gunter Afs,AL,36115 +Montgomery,AL,36116 +Montgomery,AL,36117 +Anniston,AL,36201 +Oxford,AL,36203 +Fort Mc Clellan,AL,36205 +Anniston,AL,36206 +Alexandria,AL,36250 +Ashland,AL,36251 +Cragford,AL,36255 +Daviston,AL,36256 +Delta,AL,36258 +Eastaboga,AL,36260 +Fruithurst,AL,36262 +Graham,AL,36263 +Heflin,AL,36264 +Jacksonville,AL,36265 +Lineville,AL,36266 +Millerville,AL,36267 +Munford,AL,36268 +Muscadine,AL,36269 +Newell,AL,36270 +Ohatchee,AL,36271 +Piedmont,AL,36272 +Ranburne,AL,36273 +Rock Mills,AL,36274 +Wadley,AL,36276 +Weaver,AL,36277 +Wedowee,AL,36278 +Wellington,AL,36279 +Woodland,AL,36280 +Taylor,AL,36301 +Napier Field,AL,36303 +Abbeville,AL,36310 +Ariton,AL,36311 +Ashford,AL,36312 +Black,AL,36314 +Chancellor,AL,36316 +Clopton,AL,36317 +Coffee Springs,AL,36318 +Columbia,AL,36319 +Cottonwood,AL,36320 +Daleville,AL,36322 +Elba,AL,36323 +Enterprise,AL,36330 +Geneva,AL,36340 +Gordon,AL,36343 +Hartford,AL,36344 +Headland,AL,36345 +Jack,AL,36346 +Malvern,AL,36349 +Midland City,AL,36350 +New Brockton,AL,36351 +Newton,AL,36352 +Newville,AL,36353 +Ozark,AL,36360 +Fort Rucker,AL,36362 +Pansey,AL,36370 +Shorterville,AL,36373 +Skipperville,AL,36374 +Slocomb,AL,36375 +Webb,AL,36376 +Evergreen,AL,36401 +Allen,AL,36419 +Andalusia,AL,36420 +Beatrice,AL,36425 +East Brewton,AL,36426 +Castleberry,AL,36432 +Coy,AL,36435 +Dickinson,AL,36436 +Flomaton,AL,36441 +Florala,AL,36442 +Franklin,AL,36444 +Frisco City,AL,36445 +Fulton,AL,36446 +Grove Hill,AL,36451 +Kinston,AL,36453 +Lenox,AL,36454 +Mc Kenzie,AL,36456 +Monroeville,AL,36460 +Opp,AL,36467 +Peterman,AL,36471 +Range,AL,36473 +Red Level,AL,36474 +Repton,AL,36475 +Samson,AL,36477 +Uriah,AL,36480 +Vredenburgh,AL,36481 +Whatley,AL,36482 +Wing,AL,36483 +Atmore,AL,36502 +Axis,AL,36505 +Bay Minette,AL,36507 +Bayou La Batre,AL,36509 +Bigbee,AL,36510 +Bon Secour,AL,36511 +Carlton,AL,36515 +Chatom,AL,36518 +Chunchula,AL,36521 +Citronelle,AL,36522 +Coden,AL,36523 +Coffeeville,AL,36524 +Creola,AL,36525 +Daphne,AL,36526 +Spanish Fort,AL,36527 +Dauphin Island,AL,36528 +Deer Park,AL,36529 +Elberta,AL,36530 +Fairhope,AL,36532 +Foley,AL,36535 +Frankville,AL,36538 +Fruitdale,AL,36539 +Gainestown,AL,36540 +Grand Bay,AL,36541 +Fort Morgan,AL,36542 +Irvington,AL,36544 +Jackson,AL,36545 +Leroy,AL,36548 +Lillian,AL,36549 +Little River,AL,36550 +Loxley,AL,36551 +Mc Intosh,AL,36553 +Magnolia Springs,AL,36555 +Millry,AL,36558 +Mount Vernon,AL,36560 +Orange Beach,AL,36561 +Perdido,AL,36562 +Robertsdale,AL,36567 +Saint Stephens,AL,36569 +Salitpa,AL,36570 +Saraland,AL,36571 +Satsuma,AL,36572 +Seminole,AL,36574 +Semmes,AL,36575 +Silverhill,AL,36576 +Stockton,AL,36579 +Summerdale,AL,36580 +Theodore,AL,36582 +Tibbie,AL,36583 +Vinegar Bend,AL,36584 +Wagarville,AL,36585 +Walker Springs,AL,36586 +Wilmer,AL,36587 +Mobile,AL,36602 +Mobile,AL,36603 +Mobile,AL,36604 +Mobile,AL,36605 +Mobile,AL,36606 +Mobile,AL,36607 +Mobile,AL,36608 +Mobile,AL,36609 +Prichard,AL,36610 +Chickasaw,AL,36611 +Mobile,AL,36612 +Eight Mile,AL,36613 +Brookley Field,AL,36615 +Mobile,AL,36617 +Mobile,AL,36618 +Mobile,AL,36619 +Mobile,AL,36693 +Mobile,AL,36695 +Selma,AL,36701 +Selma,AL,36703 +Alberta,AL,36720 +Arlington,AL,36722 +Camden,AL,36726 +Campbell,AL,36727 +Catherine,AL,36728 +Demopolis,AL,36732 +Dixons Mills,AL,36736 +Faunsdale,AL,36738 +Forkland,AL,36740 +Gallion,AL,36742 +Greensboro,AL,36744 +Linden,AL,36748 +Jones,AL,36749 +Maplesville,AL,36750 +Lower Peach Tree,AL,36751 +Burkville,AL,36752 +Magnolia,AL,36754 +Marion,AL,36756 +Plantersville,AL,36758 +Marion Junction,AL,36759 +Boys Ranch,AL,36761 +Morvin,AL,36762 +Newbern,AL,36765 +Orrville,AL,36767 +Pine Apple,AL,36768 +Pine Hill,AL,36769 +Prairie,AL,36771 +Safford,AL,36773 +Sardis,AL,36775 +Sawyerville,AL,36776 +Sprott,AL,36779 +Sweet Water,AL,36782 +Thomaston,AL,36783 +Thomasville,AL,36784 +Benton,AL,36785 +Uniontown,AL,36786 +Stanton,AL,36790 +Randolph,AL,36792 +Lawley,AL,36793 +Opelika,AL,36801 +Auburn,AL,36830 +Camp Hill,AL,36850 +Cusseta,AL,36852 +Dadeville,AL,36853 +Valley,AL,36854 +Five Points,AL,36855 +Hatchechubbee,AL,36858 +Hurtsboro,AL,36860 +Jacksons Gap,AL,36861 +Lafayette,AL,36862 +Lanett,AL,36863 +Notasulga,AL,36866 +Phenix City,AL,36867 +Phenix City,AL,36869 +Pittsview,AL,36871 +Salem,AL,36874 +Seale,AL,36875 +Smiths,AL,36877 +Waverly,AL,36879 +Butler,AL,36904 +Cuba,AL,36907 +Gilbertown,AL,36908 +Jachin,AL,36910 +Lisman,AL,36912 +Needham,AL,36915 +Pennington,AL,36916 +Silas,AL,36919 +Toxey,AL,36921 +Ward,AL,36922 +York,AL,36925 +98791,AK,98791 +Anchorage,AK,99501 +Anchorage,AK,99502 +Anchorage,AK,99503 +Anchorage,AK,99504 +Fort Richardson,AK,99505 +Elmendorf Afb,AK,99506 +Anchorage,AK,99507 +Anchorage,AK,99508 +Anchorage,AK,99515 +Anchorage,AK,99516 +Anchorage,AK,99517 +Anchorage,AK,99518 +Port Heiden,AK,99549 +Akiachak,AK,99551 +Akiak,AK,99552 +Akutan,AK,99553 +Alakanuk,AK,99554 +Aleknagik,AK,99555 +Nikolaevsk,AK,99556 +Chuathbaluk,AK,99557 +Anvik,AK,99558 +Atmautluak,AK,99559 +Chefornak,AK,99561 +Chevak,AK,99563 +Chignik,AK,99564 +Chignik Lagoon,AK,99565 +Chugiak,AK,99567 +Clam Gulch,AK,99568 +Clarks Point,AK,99569 +Nelson Lagoon,AK,99571 +Cooper Landing,AK,99572 +Copper Center,AK,99573 +Chenega Bay,AK,99574 +Crooked Creek,AK,99575 +Koliganek,AK,99576 +Eagle River,AK,99577 +Eek,AK,99578 +Egegik,AK,99579 +Ekwok,AK,99580 +Emmonak,AK,99581 +False Pass,AK,99583 +Marshall,AK,99585 +Slana,AK,99586 +Glennallen,AK,99588 +Goodnews Bay,AK,99589 +Grayling,AK,99590 +Saint George Isl,AK,99591 +Holy Cross,AK,99602 +Port Graham,AK,99603 +Hooper Bay,AK,99604 +Kokhanok,AK,99606 +Kalskag,AK,99607 +Kasilof,AK,99610 +Kenai,AK,99611 +King Cove,AK,99612 +Igiugig,AK,99613 +Kipnuk,AK,99614 +Akhiok,AK,99615 +Kotlik,AK,99620 +Kwethluk,AK,99621 +Kwigillingok,AK,99622 +Levelock,AK,99625 +Lower Kalskag,AK,99626 +Mc Grath,AK,99627 +Manokotak,AK,99628 +Mekoryuk,AK,99630 +Moose Pass,AK,99631 +Mountain Village,AK,99632 +Naknek,AK,99633 +Napakiak,AK,99634 +New Stuyahok,AK,99636 +Nikolski,AK,99638 +Ninilchik,AK,99639 +Nondalton,AK,99640 +Butte,AK,99645 +Pedro Bay,AK,99647 +Perryville,AK,99648 +Pilot Point,AK,99649 +Pilot Station,AK,99650 +Platinum,AK,99651 +Port Alsworth,AK,99653 +Wasilla,AK,99654 +Quinhagak,AK,99655 +Red Devil,AK,99656 +Russian Mission,AK,99657 +Saint Marys,AK,99658 +Saint Michael,AK,99659 +Saint Paul Islan,AK,99660 +Sand Point,AK,99661 +Scammon Bay,AK,99662 +Seward,AK,99664 +Shageluk,AK,99665 +Sleetmute,AK,99668 +Soldotna,AK,99669 +South Naknek,AK,99670 +Stebbins,AK,99671 +Sterling,AK,99672 +Talkeetna,AK,99676 +Tuluksak,AK,99679 +Tununak,AK,99681 +Tyonek,AK,99682 +Trapper Creek,AK,99683 +Unalakleet,AK,99684 +Unalaska,AK,99685 +Valdez,AK,99686 +Wasilla,AK,99687 +Willow,AK,99688 +Yakutat,AK,99689 +Nikolai,AK,99691 +Dutch Harbor,AK,99692 +Coldfoot,AK,99701 +Eielson Afb,AK,99702 +Fort Wainwright,AK,99703 +Clear,AK,99704 +North Pole,AK,99705 +Fairbanks,AK,99709 +Fairbanks,AK,99712 +Salcha,AK,99714 +Allakaket,AK,99720 +Anaktuvuk Pass,AK,99721 +Arctic Village,AK,99722 +Barrow,AK,99723 +Beaver,AK,99724 +Bettles Field,AK,99726 +Buckland,AK,99727 +Cantwell,AK,99729 +Central,AK,99730 +Circle,AK,99733 +Prudhoe Bay,AK,99734 +Deering,AK,99736 +Dot Lake,AK,99737 +Elim,AK,99739 +Fort Yukon,AK,99740 +Galena,AK,99741 +Gambell,AK,99742 +Healy,AK,99743 +Anderson,AK,99744 +Hughes,AK,99745 +Huslia,AK,99746 +Kaktovik,AK,99747 +Kaltag,AK,99748 +Kiana,AK,99749 +Kivalina,AK,99750 +Kobuk,AK,99751 +Kotzebue,AK,99752 +Koyuk,AK,99753 +Denali National,AK,99755 +Manley Hot Sprin,AK,99756 +Lake Minchumina,AK,99757 +Minto,AK,99758 +Point Lay,AK,99759 +Nenana,AK,99760 +Noatak,AK,99761 +Golovin,AK,99762 +Noorvik,AK,99763 +Nulato,AK,99765 +Point Hope,AK,99766 +Rampart,AK,99767 +Ruby,AK,99768 +Savoonga,AK,99769 +Selawik,AK,99770 +Shaktoolik,AK,99771 +Shishmaref,AK,99772 +Shungnak,AK,99773 +Stevens Village,AK,99774 +Tanana,AK,99777 +Teller,AK,99778 +Border,AK,99780 +Venetie,AK,99781 +Wainwright,AK,99782 +Wales,AK,99783 +White Mountain,AK,99784 +Brevig Mission,AK,99785 +Ambler,AK,99786 +Chalkyitsik,AK,99788 +Nuiqsut,AK,99789 +Juneau,AK,99801 +Angoon,AK,99820 +Douglas,AK,99824 +Gustavus,AK,99826 +Haines,AK,99827 +Hoonah,AK,99829 +Petersburg,AK,99833 +Sitka,AK,99835 +Skagway,AK,99840 +Ketchikan,AK,99901 +Thorne Bay,AK,99919 +Craig,AK,99921 +Hydaburg,AK,99922 +Hyder,AK,99923 +Klawock,AK,99925 +Metlakatla,AK,99926 +Point Baker,AK,99927 +Wrangell,AK,99929 +Ketchikan,AK,99950 +Phoenix,AZ,85003 +Phoenix,AZ,85004 +Phoenix,AZ,85006 +Phoenix,AZ,85007 +Phoenix,AZ,85008 +Phoenix,AZ,85009 +Phoenix,AZ,85012 +Phoenix,AZ,85013 +Phoenix,AZ,85014 +Phoenix,AZ,85015 +Phoenix,AZ,85016 +Phoenix,AZ,85017 +Phoenix,AZ,85018 +Phoenix,AZ,85019 +Phoenix,AZ,85020 +Phoenix,AZ,85021 +Phoenix,AZ,85022 +Phoenix,AZ,85023 +Phoenix,AZ,85024 +New River Stage,AZ,85027 +Phoenix,AZ,85028 +Phoenix,AZ,85029 +Phoenix,AZ,85031 +Phoenix,AZ,85032 +Phoenix,AZ,85033 +Phoenix,AZ,85034 +Phoenix,AZ,85035 +Phoenix,AZ,85037 +Phoenix,AZ,85039 +Phoenix,AZ,85040 +Phoenix,AZ,85041 +Phoenix,AZ,85043 +Phoenix,AZ,85044 +Phoenix,AZ,85051 +Mesa,AZ,85201 +Mesa,AZ,85202 +Mesa,AZ,85203 +Mesa,AZ,85204 +Mesa,AZ,85205 +Mesa,AZ,85206 +Mesa,AZ,85207 +Mesa,AZ,85208 +Mesa,AZ,85210 +Mesa,AZ,85213 +Gold Canyon,AZ,85219 +Apache Junction,AZ,85220 +Eleven Mile Corn,AZ,85222 +Chandler,AZ,85224 +Chandler,AZ,85225 +Chandler,AZ,85226 +Coolidge,AZ,85228 +Eloy,AZ,85231 +Florence,AZ,85232 +Gilbert,AZ,85234 +Higley,AZ,85236 +Kearny,AZ,85237 +Mobile,AZ,85239 +Williams Afb,AZ,85240 +Arizona Boys Ran,AZ,85242 +Sacaton,AZ,85247 +Sun Lakes,AZ,85248 +Chandler,AZ,85249 +Scottsdale,AZ,85250 +Scottsdale,AZ,85251 +Paradise Valley,AZ,85253 +Scottsdale,AZ,85254 +Scottsdale,AZ,85255 +Scottsdale,AZ,85256 +Scottsdale,AZ,85257 +Scottsdale,AZ,85258 +Scottsdale,AZ,85259 +Scottsdale,AZ,85260 +Scottsdale,AZ,85262 +Fort Mcdowell,AZ,85264 +Fountain Hills,AZ,85268 +Stanfield,AZ,85272 +Superior,AZ,85273 +Tempe,AZ,85281 +Tempe,AZ,85282 +Tempe,AZ,85283 +Tempe,AZ,85284 +Winkelman,AZ,85292 +Glendale,AZ,85301 +Glendale,AZ,85302 +Glendale,AZ,85303 +Glendale,AZ,85304 +Glendale,AZ,85305 +Glendale,AZ,85306 +Luke Afb,AZ,85307 +Glendale,AZ,85308 +Luke Afb,AZ,85309 +Glendale,AZ,85310 +Why,AZ,85321 +Arlington,AZ,85322 +Avondale,AZ,85323 +Rock Springs,AZ,85324 +Buckeye,AZ,85326 +Cibola,AZ,85328 +Cave Creek,AZ,85331 +Congress,AZ,85332 +Dateland,AZ,85333 +El Mirage,AZ,85335 +Gila Bend,AZ,85337 +Goodyear,AZ,85338 +Laveen,AZ,85339 +Litchfield Park,AZ,85340 +Morristown,AZ,85342 +Palo Verde,AZ,85343 +Empire Landing,AZ,85344 +Peoria,AZ,85345 +Roll,AZ,85347 +Salome,AZ,85348 +Somerton,AZ,85350 +Sun City,AZ,85351 +Tolleson,AZ,85353 +Tonopah,AZ,85354 +Waddell,AZ,85355 +Wellton,AZ,85356 +Wittmann,AZ,85361 +Yarnell,AZ,85362 +Youngtown,AZ,85363 +Yuma,AZ,85364 +Yuma Proving Gro,AZ,85365 +Sun City,AZ,85373 +Surprise,AZ,85374 +Sun City West,AZ,85375 +Peoria,AZ,85381 +Peoria,AZ,85382 +Wickenburg,AZ,85390 +Globe,AZ,85501 +Bylas,AZ,85530 +Clifton,AZ,85533 +Franklin,AZ,85534 +Eden,AZ,85535 +Miami,AZ,85539 +Morenci,AZ,85540 +Payson,AZ,85541 +Peridot,AZ,85542 +Pima,AZ,85543 +Strawberry,AZ,85544 +Roosevelt,AZ,85545 +Safford,AZ,85546 +San Carlos,AZ,85550 +Thatcher,AZ,85552 +Benson,AZ,85602 +Bisbee,AZ,85603 +Cochise,AZ,85606 +Douglas,AZ,85607 +Elfrida,AZ,85610 +Elgin,AZ,85611 +Fort Huachuca,AZ,85613 +Green Valley,AZ,85614 +Hereford,AZ,85615 +Huachuca City,AZ,85616 +Mc Neal,AZ,85617 +Mammoth,AZ,85618 +Nogales,AZ,85621 +Oracle,AZ,85623 +Patagonia,AZ,85624 +Pearce,AZ,85625 +Sahuarita,AZ,85629 +Saint David,AZ,85630 +San Manuel,AZ,85631 +Portal,AZ,85632 +Pisinemo,AZ,85634 +Sierra Vista,AZ,85635 +Sonoita,AZ,85637 +Tombstone,AZ,85638 +Amado,AZ,85640 +Vail,AZ,85641 +Willcox,AZ,85643 +Amado,AZ,85645 +Marana,AZ,85653 +Tucson,AZ,85701 +Casas Adobes,AZ,85704 +Tucson,AZ,85705 +Tucson,AZ,85706 +Tucson,AZ,85708 +Tucson,AZ,85710 +Tucson,AZ,85711 +Tucson,AZ,85712 +Tucson,AZ,85713 +Tucson,AZ,85714 +Tucson,AZ,85715 +Tucson,AZ,85716 +Tucson,AZ,85718 +Tucson,AZ,85719 +Tucson,AZ,85730 +Tucson,AZ,85735 +Tucson,AZ,85736 +Oro Valley,AZ,85737 +Tucson,AZ,85741 +Tucson,AZ,85743 +Tucson,AZ,85745 +Tucson,AZ,85746 +Tucson,AZ,85747 +Tucson,AZ,85748 +Tucson,AZ,85749 +Show Low,AZ,85901 +Alpine,AZ,85920 +Blue,AZ,85922 +Concho,AZ,85924 +Eagar,AZ,85925 +Heber,AZ,85928 +Lakeside,AZ,85929 +Pinetop,AZ,85935 +Saint Johns,AZ,85936 +Snowflake,AZ,85937 +Springerville,AZ,85938 +Flagstaff,AZ,86001 +Flagstaff,AZ,86004 +Colorado City,AZ,86021 +Fredonia,AZ,86022 +Holbrook,AZ,86025 +Hotevilla,AZ,86030 +Kayenta,AZ,86033 +Keams Canyon,AZ,86034 +Leupp,AZ,86035 +Marble Canyon,AZ,86036 +Mormon Lake,AZ,86038 +Kykotsmovi Villa,AZ,86039 +Greenehaven,AZ,86040 +Polacca,AZ,86042 +Second Mesa,AZ,86043 +Tonalea,AZ,86044 +Tuba City,AZ,86045 +Williams,AZ,86046 +Winslow,AZ,86047 +Kaibito,AZ,86053 +Shonto,AZ,86054 +Prescott,AZ,86301 +Groom Creek,AZ,86303 +Prescott Valley,AZ,86314 +Ash Fork,AZ,86320 +Bagdad,AZ,86321 +Camp Verde,AZ,86322 +Chino Valley,AZ,86323 +Clarkdale,AZ,86324 +Cornville,AZ,86325 +Cottonwood,AZ,86326 +Dewey,AZ,86327 +Kirkland,AZ,86332 +Mayer,AZ,86333 +Paulden,AZ,86334 +Rimrock,AZ,86335 +Sedona,AZ,86336 +Seligman,AZ,86337 +Crown King,AZ,86343 +Kingman,AZ,86401 +Desert Hills,AZ,86403 +Hualapai,AZ,86412 +Bullhead City,AZ,86430 +Littlefield,AZ,86432 +Peach Springs,AZ,86434 +Supai,AZ,86435 +Topock,AZ,86436 +Mohave Valley,AZ,86440 +Dolan Springs,AZ,86441 +Bullhead City,AZ,86442 +Meadview,AZ,86444 +Chambers,AZ,86502 +Chinle,AZ,86503 +Ganado,AZ,86505 +Lukachukai,AZ,86507 +Navajo,AZ,86509 +Pinon,AZ,86510 +Teec Nos Pos,AZ,86514 +Dennehotso,AZ,86535 +Many Farms,AZ,86538 +Tsaile,AZ,86556 +North Cedar,AR,71601 +Dollarway,AR,71602 +Pine Bluff,AR,71603 +Arkansas City,AR,71630 +Banks,AR,71631 +North,AR,71635 +Dermott,AR,71638 +Dumas,AR,71639 +Eudora,AR,71640 +Fountain Hill,AR,71642 +Gould,AR,71643 +Tamo,AR,71644 +Hamburg,AR,71646 +Ingalls,AR,71647 +Jersey,AR,71651 +Kingsland,AR,71652 +Lake Village,AR,71653 +Mc Gehee,AR,71654 +Monticello,AR,71655 +Montrose,AR,71658 +New Edinburg,AR,71660 +Parkdale,AR,71661 +Pickens,AR,71662 +Portland,AR,71663 +Rison,AR,71665 +Rohwer,AR,71666 +Star City,AR,71667 +Reed,AR,71670 +Warren,AR,71671 +Watson,AR,71674 +Wilmar,AR,71675 +Wilmot,AR,71676 +Winchester,AR,71677 +Yorktown,AR,71678 +East Camden,AR,71701 +Bearden,AR,71720 +Bluff City,AR,71722 +Carthage,AR,71725 +Reader,AR,71726 +El Dorado,AR,71730 +Emerson,AR,71740 +Fordyce,AR,71742 +Gurdon,AR,71743 +Hampton,AR,71744 +Harrell,AR,71745 +Huttig,AR,71747 +Ivan,AR,71748 +Junction City,AR,71749 +Louann,AR,71751 +Mc Neil,AR,71752 +Magnolia,AR,71753 +Mount Holly,AR,71758 +Norphlet,AR,71759 +Smackover,AR,71762 +Manning,AR,71763 +Stephens,AR,71764 +Strong,AR,71765 +Thornton,AR,71766 +Tinsman,AR,71767 +Village,AR,71769 +Waldo,AR,71770 +Perrytown,AR,71801 +Ashdown,AR,71822 +Blevins,AR,71825 +Bradley,AR,71826 +Buckner,AR,71827 +Cale,AR,71828 +Columbus,AR,71831 +De Queen,AR,71832 +Dierks,AR,71833 +Doddridge,AR,71834 +Emmet,AR,71835 +Foreman,AR,71836 +Fouke,AR,71837 +Fulton,AR,71838 +Garland City,AR,71839 +Gillham,AR,71841 +Horatio,AR,71842 +Lewisville,AR,71845 +Lockesburg,AR,71846 +Mc Caskill,AR,71847 +Mineral Springs,AR,71851 +Nashville,AR,71852 +Ogden,AR,71853 +Ozan,AR,71855 +Prescott,AR,71857 +Rosston,AR,71858 +Saratoga,AR,71859 +Stamps,AR,71860 +Taylor,AR,71861 +Washington,AR,71862 +Willisville,AR,71864 +Wilton,AR,71865 +Winthrop,AR,71866 +Lake Catherine,AR,71901 +Hot Springs Vill,AR,71909 +Lake Hamilton,AR,71913 +Amity,AR,71921 +Antoine,AR,71922 +Arkadelphia,AR,71923 +Bismarck,AR,71929 +Blakely,AR,71931 +Bonnerdale,AR,71933 +Caddo Gap,AR,71935 +Cove,AR,71937 +Delight,AR,71940 +Donaldson,AR,71941 +Friendship,AR,71942 +Glenwood,AR,71943 +Grannis,AR,71944 +Hatfield,AR,71945 +Jessieville,AR,71949 +Kirby,AR,71950 +Langley,AR,71952 +Mena,AR,71953 +Buckville,AR,71956 +Mount Ida,AR,71957 +Murfreesboro,AR,71958 +Newhope,AR,71959 +Norman,AR,71960 +Oden,AR,71961 +Okolona,AR,71962 +Pearcy,AR,71964 +Pencil Bluff,AR,71965 +Royal,AR,71968 +Sims,AR,71969 +Story,AR,71970 +Umpire,AR,71971 +Vandervoort,AR,71972 +Wickes,AR,71973 +Adona,AR,72001 +Alexander,AR,72002 +Almyra,AR,72003 +Altheimer,AR,72004 +Amagon,AR,72005 +Augusta,AR,72006 +Austin,AR,72007 +Bald Knob,AR,72010 +Bauxite,AR,72011 +Beebe,AR,72012 +Bee Branch,AR,72013 +Beedeville,AR,72014 +Benton,AR,72015 +Bigelow,AR,72016 +Biscoe,AR,72017 +Bradford,AR,72020 +Brinkley,AR,72021 +Bryant,AR,72022 +Cabot,AR,72023 +Carlisle,AR,72024 +Casa,AR,72025 +Casscoe,AR,72026 +Center Ridge,AR,72027 +Choctaw,AR,72028 +Clarendon,AR,72029 +Cleveland,AR,72030 +Clinton,AR,72031 +Conway,AR,72032 +Cotton Plant,AR,72036 +Crocketts Bluff,AR,72038 +Twin Groves,AR,72039 +Des Arc,AR,72040 +De Valls Bluff,AR,72041 +De Witt,AR,72042 +Edgemont,AR,72044 +El Paso,AR,72045 +England,AR,72046 +Enola,AR,72047 +Ethel,AR,72048 +Fox,AR,72051 +Garner,AR,72052 +Gillett,AR,72055 +Grapevine,AR,72057 +Greenbrier,AR,72058 +Griffithville,AR,72060 +Guy,AR,72061 +Hattieville,AR,72063 +Hazen,AR,72064 +Hensley,AR,72065 +Hickory Plains,AR,72066 +Greers Ferry,AR,72067 +Higginson,AR,72068 +Holly Grove,AR,72069 +Houston,AR,72070 +Humnoke,AR,72072 +Humphrey,AR,72073 +Gravel Ridge,AR,72076 +Jefferson,AR,72079 +Jerusalem,AR,72080 +Judsonia,AR,72081 +Kensett,AR,72082 +Keo,AR,72083 +Leola,AR,72084 +Lonoke,AR,72086 +Lonsdale,AR,72087 +Mc Crory,AR,72101 +Mc Rae,AR,72102 +Shannon Hills,AR,72103 +Malvern,AR,72104 +Jones Mills,AR,72105 +Mayflower,AR,72106 +Morrilton,AR,72110 +Mount Vernon,AR,72111 +Newport,AR,72112 +Maumelle,AR,72113 +North Little Roc,AR,72114 +Sherwood,AR,72116 +North Little Roc,AR,72117 +Camp Joseph T Ro,AR,72118 +North Little Roc,AR,72120 +Pangburn,AR,72121 +Paron,AR,72122 +Perry,AR,72125 +Perryville,AR,72126 +Plumerville,AR,72127 +Poyen,AR,72128 +Prattsville,AR,72129 +Prim,AR,72130 +Quitman,AR,72131 +Redfield,AR,72132 +Reydell,AR,72133 +Roe,AR,72134 +Roland,AR,72135 +Romance,AR,72136 +Rose Bud,AR,72137 +Saint Charles,AR,72140 +Scotland,AR,72141 +Scott,AR,72142 +Georgetown,AR,72143 +Sheridan,AR,72150 +Sherrill,AR,72152 +Shirley,AR,72153 +Solgohachia,AR,72156 +Springfield,AR,72157 +Stuttgart,AR,72160 +Thida,AR,72165 +Tichnor,AR,72166 +Traskwood,AR,72167 +Tucker,AR,72168 +Ulm,AR,72170 +Vilonia,AR,72173 +Wabbaseka,AR,72175 +Ward,AR,72176 +Wilburn,AR,72179 +Wooster,AR,72181 +Wright,AR,72182 +Little Rock,AR,72201 +Little Rock,AR,72202 +Little Rock,AR,72204 +Little Rock,AR,72205 +Little Rock,AR,72206 +Little Rock,AR,72207 +Ferndale,AR,72208 +Little Rock,AR,72209 +Little Rock,AR,72210 +Little Rock,AR,72211 +Little Rock,AR,72212 +West Memphis,AR,72301 +Armorel,AR,72310 +Aubrey,AR,72311 +Bassett,AR,72313 +Birdeye,AR,72314 +Blytheville A F,AR,72315 +Brickeys,AR,72320 +Burdette,AR,72321 +Cherry Valley,AR,72324 +Colt,AR,72326 +Crawfordsville,AR,72327 +Crumrod,AR,72328 +Driver,AR,72329 +Dyess,AR,72330 +Earle,AR,72331 +Edmondson,AR,72332 +Elaine,AR,72333 +Forrest City,AR,72335 +Frenchmans Bayou,AR,72338 +Gilmore,AR,72339 +Goodwin,AR,72340 +Haynes,AR,72341 +Helena,AR,72342 +Heth,AR,72346 +Hickory Ridge,AR,72347 +Hughes,AR,72348 +Joiner,AR,72350 +Keiser,AR,72351 +Lepanto,AR,72354 +Lexa,AR,72355 +Luxora,AR,72358 +Marianna,AR,72360 +Marion,AR,72364 +Marked Tree,AR,72365 +Marvell,AR,72366 +Mellwood,AR,72367 +Moro,AR,72368 +Oneida,AR,72369 +Osceola,AR,72370 +Palestine,AR,72372 +Parkin,AR,72373 +Poplar Grove,AR,72374 +Proctor,AR,72376 +Snow Lake,AR,72379 +Tomato,AR,72381 +Turrell,AR,72384 +Tyronza,AR,72386 +West Helena,AR,72390 +Wheatley,AR,72392 +Widener,AR,72394 +Wilson,AR,72395 +Wynne,AR,72396 +Fair Oaks,AR,72397 +Jonesboro,AR,72401 +Alicia,AR,72410 +Bay,AR,72411 +Beech Grove,AR,72412 +Biggers,AR,72413 +Black Oak,AR,72414 +Black Rock,AR,72415 +Bono,AR,72416 +Brookland,AR,72417 +Caraway,AR,72419 +Cash,AR,72421 +Corning,AR,72422 +Datto,AR,72424 +Delaplaine,AR,72425 +Dell,AR,72426 +Etowah,AR,72428 +Fisher,AR,72429 +Greenway,AR,72430 +Harrisburg,AR,72432 +Hoxie,AR,72433 +Imboden,AR,72434 +Knobel,AR,72435 +Lafe,AR,72436 +Lake City,AR,72437 +Leachville,AR,72438 +Lynn,AR,72440 +Mc Dougal,AR,72441 +Roseland,AR,72442 +Marmaduke,AR,72443 +Maynard,AR,72444 +Minturn,AR,72445 +Monette,AR,72447 +O Kean,AR,72449 +Paragould,AR,72450 +Peach Orchard,AR,72453 +Piggott,AR,72454 +Pocahontas,AR,72455 +Pollard,AR,72456 +Portia,AR,72457 +Powhatan,AR,72458 +Ravenden,AR,72459 +Ravenden Springs,AR,72460 +Rector,AR,72461 +Saint Francis,AR,72464 +Sedgwick,AR,72465 +Smithville,AR,72466 +State University,AR,72467 +Calamine,AR,72469 +Success,AR,72470 +Swifton,AR,72471 +Payneway,AR,72472 +Tuckerman,AR,72473 +College City,AR,72476 +Warm Springs,AR,72478 +Weiner,AR,72479 +Williford,AR,72482 +Batesville,AR,72501 +Horseshoe Bend,AR,72512 +Agnos,AR,72513 +Bexar,AR,72515 +Boswell,AR,72516 +Brockwell,AR,72517 +Jordan,AR,72519 +Camp,AR,72520 +Cave City,AR,72521 +Charlotte,AR,72522 +Concord,AR,72523 +Cord,AR,72524 +Cushman,AR,72526 +Desha,AR,72527 +Dolph,AR,72528 +Cherokee Village,AR,72529 +Drasco,AR,72530 +Elizabeth,AR,72531 +Evening Shade,AR,72532 +Fifty Six,AR,72533 +Floral,AR,72534 +Franklin,AR,72536 +Gamaliel,AR,72537 +Gepp,AR,72538 +Glencoe,AR,72539 +Guion,AR,72540 +Hardy,AR,72542 +Heber Springs,AR,72543 +Henderson,AR,72544 +Ida,AR,72546 +Locust Grove,AR,72550 +Magness,AR,72553 +Mammoth Spring,AR,72554 +Marcella,AR,72555 +Zion,AR,72556 +Moko,AR,72557 +Hanover,AR,72560 +Mount Pleasant,AR,72561 +Newark,AR,72562 +Oil Trough,AR,72564 +Oxford,AR,72565 +Pineville,AR,72566 +Pleasant Grove,AR,72567 +Pleasant Plains,AR,72568 +Poughkeepsie,AR,72569 +Rosie,AR,72571 +Saffell,AR,72572 +Sage,AR,72573 +Salado,AR,72575 +Byron,AR,72576 +Sidney,AR,72577 +Sturkie,AR,72578 +Sulphur Rock,AR,72579 +Tumbling Shoals,AR,72581 +Viola,AR,72583 +Violet Hill,AR,72584 +Wideman,AR,72585 +Wiseman,AR,72587 +Harrison,AR,72601 +Alco,AR,72610 +Alpena,AR,72611 +Bass,AR,72612 +Berryville,AR,72616 +Big Flat,AR,72617 +Bruno,AR,72618 +Bull Shoals,AR,72619 +Clarkridge,AR,72623 +Compton,AR,72624 +Cotter,AR,72626 +Deer,AR,72628 +Dennard,AR,72629 +Eureka Springs,AR,72632 +Everton,AR,72633 +Flippin,AR,72634 +Gassville,AR,72635 +Green Forest,AR,72638 +Harriet,AR,72639 +Hasty,AR,72640 +Jasper,AR,72641 +Lakeview,AR,72642 +Lead Hill,AR,72644 +Leslie,AR,72645 +Dogpatch,AR,72648 +Marshall,AR,72650 +Midway,AR,72651 +Mountain Home,AR,72653 +Mount Judea,AR,72655 +Timbo,AR,72657 +Norfork,AR,72658 +Oak Grove,AR,72660 +Oakland,AR,72661 +Omaha,AR,72662 +Onia,AR,72663 +Parthenon,AR,72666 +Peel,AR,72668 +Pindall,AR,72669 +Ponca,AR,72670 +Saint Joe,AR,72675 +Tilly,AR,72679 +Newnata,AR,72680 +Valley Springs,AR,72682 +Vendor,AR,72683 +Western Grove,AR,72685 +Witts Springs,AR,72686 +Yellville,AR,72687 +Fayetteville,AR,72701 +Fayetteville,AR,72703 +Bentonville,AR,72712 +Bella Vista,AR,72714 +Wal-Mart Inc,AR,72716 +Canehill,AR,72717 +Cave Springs,AR,72718 +Centerton,AR,72719 +Combs,AR,72721 +Decatur,AR,72722 +Elkins,AR,72727 +Evansville,AR,72729 +Farmington,AR,72730 +Garfield,AR,72732 +Gateway,AR,72733 +Gentry,AR,72734 +Goshen,AR,72735 +Gravette,AR,72736 +Hindsville,AR,72738 +Hiwasse,AR,72739 +Huntsville,AR,72740 +Kingston,AR,72742 +Lincoln,AR,72744 +Lowell,AR,72745 +Maysville,AR,72747 +Morrow,AR,72749 +Pea Ridge,AR,72751 +Pettigrew,AR,72752 +Prairie Grove,AR,72753 +Rogers,AR,72756 +Saint Paul,AR,72760 +Siloam Springs,AR,72761 +Springdale,AR,72762 +Bethel Heights,AR,72764 +Sulphur Springs,AR,72768 +Summers,AR,72769 +Wesley,AR,72773 +West Fork,AR,72774 +Witter,AR,72776 +Russellville,AR,72801 +Alix,AR,72820 +Altus,AR,72821 +Atkins,AR,72823 +Belleville,AR,72824 +Blue Mountain,AR,72826 +Bluffton,AR,72827 +Briggsville,AR,72828 +Clarksville,AR,72830 +Coal Hill,AR,72832 +Danville,AR,72833 +Dardanelle,AR,72834 +Delaware,AR,72835 +Dover,AR,72837 +Gravelly,AR,72838 +Hagarville,AR,72839 +Hartman,AR,72840 +Harvey,AR,72841 +Waveland,AR,72842 +Hector,AR,72843 +Knoxville,AR,72845 +Lamar,AR,72846 +London,AR,72847 +New Blaine,AR,72851 +Oark,AR,72852 +Ola,AR,72853 +Ozone,AR,72854 +Paris,AR,72855 +Pelsor,AR,72856 +Plainview,AR,72857 +Pottsville,AR,72858 +Rover,AR,72860 +Scranton,AR,72863 +Subiaco,AR,72865 +Fort Smith,AR,72901 +Fort Smith,AR,72903 +Fort Smith,AR,72904 +Fort Chaffee,AR,72905 +Fort Smith,AR,72916 +Alma,AR,72921 +Barling,AR,72923 +Bates,AR,72924 +Boles,AR,72926 +Booneville,AR,72927 +Branch,AR,72928 +Cecil,AR,72930 +Cedarville,AR,72932 +Charleston,AR,72933 +Chester,AR,72934 +Greenwood,AR,72936 +Hackett,AR,72937 +Hartford,AR,72938 +Huntington,AR,72940 +Central City,AR,72941 +Magazine,AR,72943 +Mansfield,AR,72944 +Mountainburg,AR,72946 +Mulberry,AR,72947 +Natural Dam,AR,72948 +Ozark,AR,72949 +Parks,AR,72950 +Ratcliff,AR,72951 +Rudy,AR,72952 +Uniontown,AR,72955 +Van Buren,AR,72956 +Waldron,AR,72958 +Winslow,AR,72959 +Texarkana,AR,75502 +Los Angeles,CA,90001 +Los Angeles,CA,90002 +Los Angeles,CA,90003 +Los Angeles,CA,90004 +Los Angeles,CA,90005 +Los Angeles,CA,90006 +Los Angeles,CA,90007 +Los Angeles,CA,90008 +Los Angeles,CA,90010 +Los Angeles,CA,90011 +Los Angeles,CA,90012 +Los Angeles,CA,90013 +Los Angeles,CA,90014 +Los Angeles,CA,90015 +Los Angeles,CA,90016 +Los Angeles,CA,90017 +Los Angeles,CA,90018 +Los Angeles,CA,90019 +Los Angeles,CA,90020 +Los Angeles,CA,90021 +East Los Angeles,CA,90022 +Los Angeles,CA,90023 +Los Angeles,CA,90024 +Los Angeles,CA,90025 +Los Angeles,CA,90026 +Los Angeles,CA,90027 +Los Angeles,CA,90028 +Los Angeles,CA,90029 +Los Angeles,CA,90031 +Los Angeles,CA,90032 +Los Angeles,CA,90033 +Los Angeles,CA,90034 +Los Angeles,CA,90035 +Los Angeles,CA,90036 +Los Angeles,CA,90037 +Los Angeles,CA,90038 +Los Angeles,CA,90039 +City Of Commerce,CA,90040 +Los Angeles,CA,90041 +Los Angeles,CA,90042 +Los Angeles,CA,90043 +Los Angeles,CA,90044 +Los Angeles,CA,90045 +Cole,CA,90046 +Los Angeles,CA,90047 +Los Angeles,CA,90048 +Los Angeles,CA,90049 +Los Angeles,CA,90056 +Los Angeles,CA,90057 +Vernon,CA,90058 +Los Angeles,CA,90059 +Los Angeles,CA,90061 +Los Angeles,CA,90062 +Hazard,CA,90063 +Los Angeles,CA,90064 +Los Angeles,CA,90065 +Los Angeles,CA,90066 +Los Angeles,CA,90067 +Los Angeles,CA,90068 +West Hollywood,CA,90069 +Los Angeles,CA,90071 +Los Angeles,CA,90077 +Bell Gardens,CA,90201 +Beverly Hills,CA,90210 +Beverly Hills,CA,90211 +Beverly Hills,CA,90212 +Rancho Dominguez,CA,90220 +East Rancho Domi,CA,90221 +Rosewood,CA,90222 +Culver City,CA,90230 +Culver City,CA,90232 +Downey,CA,90240 +Downey,CA,90241 +Downey,CA,90242 +El Segundo,CA,90245 +Gardena,CA,90247 +Gardena,CA,90248 +Gardena,CA,90249 +Holly Park,CA,90250 +Hermosa Beach,CA,90254 +Huntington Park,CA,90255 +Lawndale,CA,90260 +Lynwood,CA,90262 +Malibu,CA,90265 +Manhattan Beach,CA,90266 +Maywood,CA,90270 +Pacific Palisade,CA,90272 +Palos Verdes Est,CA,90274 +Redondo Beach,CA,90277 +Redondo Beach,CA,90278 +South Gate,CA,90280 +Topanga,CA,90290 +Venice,CA,90291 +Marina Del Rey,CA,90292 +Playa Del Rey,CA,90293 +Inglewood,CA,90301 +Inglewood,CA,90302 +Inglewood,CA,90303 +Lennox,CA,90304 +Inglewood,CA,90305 +Santa Monica,CA,90401 +Santa Monica,CA,90402 +Santa Monica,CA,90403 +Santa Monica,CA,90404 +Santa Monica,CA,90405 +Torrance,CA,90501 +Torrance,CA,90502 +Torrance,CA,90503 +Torrance,CA,90504 +Torrance,CA,90505 +Torrance,CA,90506 +Whittier,CA,90601 +Whittier,CA,90602 +Whittier,CA,90603 +Whittier,CA,90604 +Whittier,CA,90605 +Los Nietos,CA,90606 +Buena Park,CA,90620 +Buena Park,CA,90621 +Cerritos,CA,90623 +Cypress,CA,90630 +La Habra Heights,CA,90631 +La Mirada,CA,90638 +Montebello,CA,90640 +Norwalk,CA,90650 +Pico Rivera,CA,90660 +Santa Fe Springs,CA,90670 +Stanton,CA,90680 +Cerritos,CA,90701 +Avalon,CA,90704 +Bellflower,CA,90706 +Harbor City,CA,90710 +Lakewood,CA,90712 +Lakewood,CA,90713 +Lakewood,CA,90715 +Hawaiian Gardens,CA,90716 +Rancho Palos Ver,CA,90717 +Rossmoor,CA,90720 +Paramount,CA,90723 +San Pedro,CA,90731 +Rancho Palos Ver,CA,90732 +Seal Beach,CA,90740 +Wilmington,CA,90744 +Carson,CA,90745 +Carson,CA,90746 +Long Beach,CA,90802 +Long Beach,CA,90803 +Signal Hill,CA,90804 +Long Beach,CA,90805 +Signal Hill,CA,90806 +Signal Hill,CA,90807 +Long Beach,CA,90808 +Carson,CA,90810 +Long Beach,CA,90813 +Long Beach,CA,90814 +Long Beach,CA,90815 +Long Beach,CA,90822 +Altadena,CA,91001 +Arcadia,CA,91006 +Arcadia,CA,91007 +Bradbury,CA,91010 +Flintridge,CA,91011 +Monrovia,CA,91016 +Montrose,CA,91020 +Sierra Madre,CA,91024 +South Pasadena,CA,91030 +Shadow Hills,CA,91040 +Tujunga,CA,91042 +Pasadena,CA,91101 +Pasadena,CA,91103 +Pasadena,CA,91104 +Pasadena,CA,91105 +Pasadena,CA,91106 +Pasadena,CA,91107 +San Marino,CA,91108 +Glendale,CA,91201 +Glendale,CA,91202 +Glendale,CA,91203 +Glendale,CA,91204 +Glendale,CA,91205 +Glendale,CA,91206 +Glendale,CA,91207 +Glendale,CA,91208 +La Crescenta,CA,91214 +Oak Park,CA,91301 +Calabasas,CA,91302 +Canoga Park,CA,91303 +Canoga Park,CA,91304 +Winnetka,CA,91306 +West Hills,CA,91307 +Chatsworth,CA,91311 +Encino,CA,91316 +Newbury Park,CA,91320 +Newhall,CA,91321 +Northridge,CA,91324 +Northridge,CA,91325 +Porter Ranch,CA,91326 +California State,CA,91330 +Arleta,CA,91331 +Reseda,CA,91335 +San Fernando,CA,91340 +Sylmar,CA,91342 +North Hills,CA,91343 +Granada Hills,CA,91344 +Mission Hills,CA,91345 +Agua Dulce,CA,91350 +Canyon Country,CA,91351 +Sun Valley,CA,91352 +Valencia,CA,91354 +Valencia,CA,91355 +Tarzana,CA,91356 +Thousand Oaks,CA,91360 +Westlake Village,CA,91361 +Westlake Village,CA,91362 +Woodland Hills,CA,91364 +Woodland Hills,CA,91367 +Newhall,CA,91381 +Castaic,CA,91384 +Van Nuys,CA,91401 +Panorama City,CA,91402 +Sherman Oaks,CA,91403 +Van Nuys,CA,91405 +Van Nuys,CA,91406 +Van Nuys,CA,91411 +Sherman Oaks,CA,91423 +Encino,CA,91436 +Burbank,CA,91501 +Burbank,CA,91502 +Burbank,CA,91504 +Burbank,CA,91505 +Burbank,CA,91506 +North Hollywood,CA,91601 +Toluca Lake,CA,91602 +Studio City,CA,91604 +North Hollywood,CA,91605 +North Hollywood,CA,91606 +Valley Village,CA,91607 +Alta Loma,CA,91701 +Azusa,CA,91702 +Irwindale,CA,91706 +Chino Hills,CA,91709 +Chino,CA,91710 +Claremont,CA,91711 +Corona,CA,91719 +Corona,CA,91720 +Covina,CA,91722 +Covina,CA,91723 +Covina,CA,91724 +Rancho Cucamonga,CA,91730 +El Monte,CA,91731 +El Monte,CA,91732 +South El Monte,CA,91733 +Alta Loma,CA,91737 +Etiwanda,CA,91739 +Glendora,CA,91740 +Industry,CA,91744 +Hacienda Heights,CA,91745 +Bassett,CA,91746 +Rowland Heights,CA,91748 +La Verne,CA,91750 +Mira Loma,CA,91752 +Monterey Park,CA,91754 +Mt Baldy,CA,91759 +Norco,CA,91760 +Ontario,CA,91761 +Ontario,CA,91762 +Montclair,CA,91763 +Ontario,CA,91764 +Diamond Bar,CA,91765 +Phillips Ranch,CA,91766 +Pomona,CA,91767 +Pomona,CA,91768 +Rosemead,CA,91770 +San Dimas,CA,91773 +San Gabriel,CA,91775 +San Gabriel,CA,91776 +Temple City,CA,91780 +Upland,CA,91786 +Diamond Bar,CA,91789 +West Covina,CA,91790 +West Covina,CA,91791 +West Covina,CA,91792 +Alhambra,CA,91801 +Alhambra,CA,91803 +Alpine,CA,91901 +Bonita,CA,91902 +Boulevard,CA,91905 +Campo,CA,91906 +Chula Vista,CA,91910 +Chula Vista,CA,91911 +Chula Vista,CA,91913 +Chula Vista,CA,91914 +Chula Vista,CA,91915 +Descanso,CA,91916 +Dulzura,CA,91917 +Imperial Beach,CA,91932 +Jacumba,CA,91934 +Jamul,CA,91935 +La Mesa,CA,91941 +La Mesa,CA,91942 +Lemon Grove,CA,91945 +National City,CA,91950 +Pine Valley,CA,91962 +Potrero,CA,91963 +Spring Valley,CA,91977 +Spring Valley,CA,91978 +Tecate,CA,91980 +Bonsall,CA,92003 +Borrego Springs,CA,92004 +Cardiff By The S,CA,92007 +Carlsbad,CA,92008 +Carlsbad,CA,92009 +Del Mar,CA,92014 +El Cajon,CA,92019 +El Cajon,CA,92020 +El Cajon,CA,92021 +Encinitas,CA,92024 +Escondido,CA,92025 +Escondido,CA,92026 +Escondido,CA,92027 +Fallbrook,CA,92028 +Escondido,CA,92029 +Julian,CA,92036 +La Jolla,CA,92037 +Lakeside,CA,92040 +Oceanside,CA,92054 +Marine Corp Base,CA,92055 +Oceanside,CA,92056 +Oceanside,CA,92057 +Pala,CA,92059 +Pauma Valley,CA,92061 +Poway,CA,92064 +Ramona,CA,92065 +Ranchita,CA,92066 +San Luis Rey,CA,92068 +San Marcos,CA,92069 +Santa Ysabel,CA,92070 +Santee,CA,92071 +Solana Beach,CA,92075 +Valley Center,CA,92082 +Vista,CA,92083 +Vista,CA,92084 +Warner Springs,CA,92086 +San Diego,CA,92101 +San Diego,CA,92102 +San Diego,CA,92103 +San Diego,CA,92104 +San Diego,CA,92105 +San Diego,CA,92106 +San Diego,CA,92107 +San Diego,CA,92108 +San Diego,CA,92109 +San Diego,CA,92110 +San Diego,CA,92111 +San Diego,CA,92113 +San Diego,CA,92114 +San Diego,CA,92115 +San Diego,CA,92116 +San Diego,CA,92117 +Coronado,CA,92118 +San Diego,CA,92119 +San Diego,CA,92120 +San Diego,CA,92121 +San Diego,CA,92122 +San Diego,CA,92123 +San Diego,CA,92124 +San Diego,CA,92126 +San Diego,CA,92127 +San Diego,CA,92128 +San Diego,CA,92129 +San Diego,CA,92130 +San Diego,CA,92131 +San Diego,CA,92135 +San Diego,CA,92136 +San Diego,CA,92139 +San Diego,CA,92145 +San Diego,CA,92154 +San Diego,CA,92155 +San Ysidro,CA,92173 +Chiriaco Summit,CA,92201 +Indian Wells,CA,92210 +Banning,CA,92220 +Beaumont,CA,92223 +Lost Lake,CA,92225 +Brawley,CA,92227 +Cabazon,CA,92230 +Calexico,CA,92231 +Calipatria,CA,92233 +Cathedral City,CA,92234 +Coachella,CA,92236 +Eagle Mountain,CA,92239 +Desert Hot Sprin,CA,92240 +Big River,CA,92242 +El Centro,CA,92243 +Heber,CA,92249 +Holtville,CA,92250 +Imperial,CA,92251 +Joshua Tree,CA,92252 +La Quinta,CA,92253 +Morongo Valley,CA,92256 +Niland,CA,92257 +Palm City,CA,92260 +Palm Springs,CA,92262 +Palm Springs,CA,92264 +Parker Dam,CA,92267 +Rancho Mirage,CA,92270 +Blythe,CA,92272 +Salton City,CA,92274 +Thousand Palms,CA,92276 +Twentynine Palms,CA,92277 +Twentynine Palms,CA,92278 +Vidal,CA,92280 +Westmorland,CA,92281 +White Water,CA,92282 +Felicity,CA,92283 +Yucca Valley,CA,92284 +Adelanto,CA,92301 +Amboy,CA,92304 +Angelus Oaks,CA,92305 +Apple Valley,CA,92307 +Apple Valley,CA,92308 +Baker,CA,92309 +Fort Irwin,CA,92310 +Barstow,CA,92311 +Big Bear City,CA,92314 +Bloomington,CA,92316 +Calimesa,CA,92320 +Grand Terrace,CA,92324 +Daggett,CA,92327 +Death Valley,CA,92328 +Essex,CA,92332 +Fontana,CA,92335 +Fontana,CA,92336 +Ludlow,CA,92338 +Forest Falls,CA,92339 +Helendale,CA,92342 +Hesperia,CA,92345 +East Highland,CA,92346 +Hinkley,CA,92347 +Kelso,CA,92351 +Loma Linda,CA,92354 +Lucerne Valley,CA,92356 +Lytle Creek,CA,92358 +Mentone,CA,92359 +Needles,CA,92363 +Nipton,CA,92364 +Newberry Springs,CA,92365 +Oro Grande,CA,92368 +Phelan,CA,92371 +Pinon Hills,CA,92372 +Redlands,CA,92373 +Redlands,CA,92374 +Rialto,CA,92376 +Shoshone,CA,92384 +Tecopa,CA,92389 +Spring Valley La,CA,92392 +George Afb,CA,92394 +Wrightwood,CA,92397 +Yucaipa,CA,92399 +San Bernardino,CA,92401 +San Bernardino,CA,92404 +Muscoy,CA,92405 +San Bernardino,CA,92407 +San Bernardino,CA,92408 +San Bernardino,CA,92409 +San Bernardino,CA,92410 +San Bernardino,CA,92411 +Riverside,CA,92501 +Riverside,CA,92503 +Riverside,CA,92504 +Riverside,CA,92505 +Riverside,CA,92506 +Riverside,CA,92507 +Riverside,CA,92508 +Rubidoux,CA,92509 +Lake Elsinore,CA,92530 +Lake Elsinore,CA,92532 +Aguanga,CA,92536 +Anza,CA,92539 +Hemet,CA,92543 +Hemet,CA,92544 +Hemet,CA,92545 +Homeland,CA,92548 +Idyllwild,CA,92549 +Moreno Valley,CA,92553 +Moreno Valley,CA,92555 +Moreno Valley,CA,92557 +Mountain Center,CA,92561 +Murrieta,CA,92562 +Murrieta,CA,92563 +Lakeview,CA,92567 +Mead Valley,CA,92570 +Perris,CA,92571 +San Jacinto,CA,92582 +Gilman Hot Sprin,CA,92583 +Menifee,CA,92584 +Romoland,CA,92585 +Sun City,CA,92586 +Canyon Lake,CA,92587 +Temecula,CA,92590 +Temecula,CA,92591 +Temecula,CA,92592 +Wildomar,CA,92595 +Winchester,CA,92596 +Foothill Ranch,CA,92610 +Brea,CA,92621 +Capistrano Beach,CA,92624 +Corona Del Mar,CA,92625 +Costa Mesa,CA,92626 +Costa Mesa,CA,92627 +Monarch Bay,CA,92629 +Lake Forest,CA,92630 +Fullerton,CA,92631 +Fullerton,CA,92632 +Fullerton,CA,92633 +Fullerton,CA,92635 +Garden Grove,CA,92640 +Garden Grove,CA,92641 +Garden Grove,CA,92643 +Garden Grove,CA,92644 +Garden Grove,CA,92645 +Huntington Beach,CA,92646 +Huntington Beach,CA,92647 +Huntington Beach,CA,92648 +Huntington Beach,CA,92649 +Laguna Niguel,CA,92651 +Laguna Hills,CA,92653 +Midway City,CA,92655 +Aliso Viejo,CA,92656 +Newport Beach,CA,92657 +Newport Beach,CA,92660 +Newport Beach,CA,92661 +Newport Beach,CA,92662 +Newport Beach,CA,92663 +Orange,CA,92665 +Orange,CA,92666 +Villa Park,CA,92667 +Orange,CA,92668 +Orange,CA,92669 +Placentia,CA,92670 +San Clemente,CA,92672 +Mission Viejo,CA,92675 +Laguna Niguel,CA,92677 +Coto De Caza,CA,92679 +Tustin,CA,92680 +Westminster,CA,92683 +Yorba Linda,CA,92686 +Yorba Linda,CA,92687 +Rancho Santa Mar,CA,92688 +Mission Viejo,CA,92691 +Mission Viejo,CA,92692 +Santa Ana,CA,92701 +Santa Ana,CA,92703 +Santa Ana,CA,92704 +Cowan Heights,CA,92705 +Santa Ana,CA,92706 +Santa Ana Height,CA,92707 +Fountain Valley,CA,92708 +El Toro Marine C,CA,92709 +Irvine,CA,92714 +Irvine,CA,92715 +Irvine,CA,92718 +Irvine,CA,92720 +Anaheim,CA,92801 +Anaheim,CA,92802 +Anaheim,CA,92804 +Anaheim,CA,92805 +Anaheim,CA,92806 +Anaheim,CA,92807 +Anaheim,CA,92808 +San Buenaventura,CA,93001 +San Buenaventura,CA,93003 +San Buenaventura,CA,93004 +Camarillo,CA,93010 +Camarillo,CA,93012 +Carpinteria,CA,93013 +Bardsdale,CA,93015 +Moorpark,CA,93021 +Oak View,CA,93022 +Ojai,CA,93023 +Oxnard,CA,93030 +Oxnard,CA,93033 +Oxnard,CA,93035 +Port Hueneme,CA,93041 +Point Mugu Nawc,CA,93042 +Port Hueneme Cbc,CA,93043 +Santa Paula,CA,93060 +Santa Susana,CA,93063 +Simi Valley,CA,93065 +Somis,CA,93066 +Summerland,CA,93067 +Santa Barbara,CA,93101 +Santa Barbara,CA,93103 +Santa Barbara,CA,93105 +Montecito,CA,93108 +Santa Barbara,CA,93109 +Santa Barbara,CA,93110 +Santa Barbara,CA,93111 +Goleta,CA,93117 +Armona,CA,93202 +Arvin,CA,93203 +Avenal,CA,93204 +Bodfish,CA,93205 +Buttonwillow,CA,93206 +California Hot S,CA,93207 +Coalinga,CA,93210 +Corcoran,CA,93212 +Cuyama,CA,93214 +Delano,CA,93215 +Di Giorgio,CA,93217 +Earlimart,CA,93219 +Exeter,CA,93221 +Farmersville,CA,93223 +Fellows,CA,93224 +Frazier Park,CA,93225 +Glennville,CA,93226 +Hanford,CA,93230 +Huron,CA,93234 +Ivanhoe,CA,93235 +Kernville,CA,93238 +Kettleman City,CA,93239 +Mountain Mesa,CA,93240 +Lamont,CA,93241 +Laton,CA,93242 +Gorman,CA,93243 +Lemoncove,CA,93244 +Lemoore Naval Ai,CA,93245 +Lindsay,CA,93247 +Lost Hills,CA,93249 +Mc Farland,CA,93250 +Mc Kittrick,CA,93251 +Maricopa,CA,93252 +New Cuyama,CA,93254 +Onyx,CA,93255 +Pixley,CA,93256 +Porterville,CA,93257 +Posey,CA,93260 +Giant Forest,CA,93262 +Shafter,CA,93263 +Springville,CA,93265 +Stratford,CA,93266 +Strathmore,CA,93267 +Taft,CA,93268 +Terra Bella,CA,93270 +Three Rivers,CA,93271 +Tipton,CA,93272 +Tulare,CA,93274 +Tupman,CA,93276 +Visalia,CA,93277 +Pond,CA,93280 +Weldon,CA,93283 +Wofford Heights,CA,93285 +Woodlake,CA,93286 +Woody,CA,93287 +Visalia,CA,93291 +Bakersfield,CA,93301 +Bakersfield,CA,93304 +College Heights,CA,93305 +Bakersfield,CA,93306 +Bakersfield,CA,93307 +Bakersfield,CA,93308 +Bakersfield,CA,93309 +Bakersfield,CA,93311 +Greenacres,CA,93312 +Bakersfield,CA,93313 +San Luis Obispo,CA,93401 +Los Osos,CA,93402 +San Luis Obispo,CA,93405 +Halcyon,CA,93420 +Atascadero,CA,93422 +Bradley,CA,93426 +Buellton,CA,93427 +Cambria,CA,93428 +Cayucos,CA,93430 +Cholame,CA,93431 +Creston,CA,93432 +Grover Beach,CA,93433 +Guadalupe,CA,93434 +Lompoc,CA,93436 +Lompoc,CA,93437 +Morro Bay,CA,93442 +Nipomo,CA,93444 +Oceano,CA,93445 +Adelaide,CA,93446 +Shell Beach,CA,93449 +San Ardo,CA,93450 +Parkfield,CA,93451 +San Simeon,CA,93452 +California Valle,CA,93453 +Santa Maria,CA,93454 +Orcutt,CA,93455 +Santa Ynez,CA,93460 +Shandon,CA,93461 +Ballard,CA,93463 +Templeton,CA,93465 +Mojave,CA,93501 +California City,CA,93505 +Acton,CA,93510 +Benton,CA,93512 +Big Pine,CA,93513 +Toms Place,CA,93514 +Boron,CA,93516 +Bridgeport,CA,93517 +Havilah,CA,93518 +Cantil,CA,93519 +North Edwards,CA,93523 +Independence,CA,93526 +Pearsonville,CA,93527 +Johannesburg,CA,93528 +June Lake,CA,93529 +Keene,CA,93531 +Elizabeth Lake,CA,93532 +Lancaster,CA,93534 +Hi Vista,CA,93535 +Quartz Hill,CA,93536 +Lee Vining,CA,93541 +Juniper Hills,CA,93543 +Crystalaire,CA,93544 +Lone Pine,CA,93545 +Crowley Lake,CA,93546 +Lake Los Angeles,CA,93550 +Leona Valley,CA,93551 +Juniper Hills,CA,93553 +Randsburg,CA,93554 +China Lake Nwc,CA,93555 +Willow Springs,CA,93560 +Bear Valley Spri,CA,93561 +Argus,CA,93562 +Valyermo,CA,93563 +Ahwahnee,CA,93601 +Auberry,CA,93602 +Bass Lake,CA,93604 +Cantua Creek,CA,93608 +Caruthers,CA,93609 +Chowchilla,CA,93610 +Clovis,CA,93612 +Coarsegold,CA,93614 +Cutler,CA,93615 +Del Rey,CA,93616 +Dinuba,CA,93618 +Dos Palos,CA,93620 +Dunlap,CA,93621 +Firebaugh,CA,93622 +Fish Camp,CA,93623 +Fowler,CA,93625 +Friant,CA,93626 +Helm,CA,93627 +Kerman,CA,93630 +Kingsburg,CA,93631 +Kings Canyon Nat,CA,93633 +Los Banos,CA,93635 +Madera,CA,93637 +Madera,CA,93638 +Mendota,CA,93640 +Miramonte,CA,93641 +North Fork,CA,93643 +Oakhurst,CA,93644 +O Neals,CA,93645 +Orange Cove,CA,93646 +Orosi,CA,93647 +Parlier,CA,93648 +Pinedale,CA,93650 +Prather,CA,93651 +Raisin,CA,93652 +Raymond,CA,93653 +Reedley,CA,93654 +Riverdale,CA,93656 +Sanger,CA,93657 +San Joaquin,CA,93660 +Selma,CA,93662 +Shaver Lake,CA,93664 +Tollhouse,CA,93667 +Tranquillity,CA,93668 +Wishon,CA,93669 +Squaw Valley,CA,93675 +Fresno,CA,93701 +Fresno,CA,93702 +Fresno,CA,93703 +Fig Garden Villa,CA,93704 +Fresno,CA,93705 +Easton,CA,93706 +Fresno,CA,93710 +Fresno,CA,93711 +Fresno,CA,93720 +Fresno,CA,93721 +Fresno,CA,93722 +Calwa,CA,93725 +Fresno,CA,93726 +Fresno,CA,93727 +Fresno,CA,93728 +Salinas,CA,93901 +Salinas,CA,93905 +Salinas,CA,93906 +Prunedale,CA,93907 +Salinas,CA,93908 +Big Sur,CA,93920 +Carmel,CA,93923 +Carmel Valley,CA,93924 +Chualar,CA,93925 +Gonzales,CA,93926 +Greenfield,CA,93927 +King City,CA,93930 +Lockwood,CA,93932 +Marina,CA,93933 +Del Rey Oaks,CA,93940 +Fort Ord,CA,93941 +Pacific Grove,CA,93950 +Pebble Beach,CA,93953 +Sand City,CA,93955 +Soledad,CA,93960 +Belmont,CA,94002 +Brisbane,CA,94005 +Hillsborough,CA,94010 +Colma,CA,94014 +Daly City,CA,94015 +Half Moon Bay,CA,94019 +La Honda,CA,94020 +Loma Mar,CA,94021 +Los Altos,CA,94022 +Los Altos,CA,94024 +West Menlo Park,CA,94025 +Atherton,CA,94027 +Ladera,CA,94028 +Millbrae,CA,94030 +Moffett Field,CA,94035 +Moss Beach,CA,94038 +Mountain View,CA,94040 +Mountain View,CA,94041 +Mountain View,CA,94043 +Pacifica,CA,94044 +Pescadero,CA,94060 +Redwood City,CA,94061 +Woodside,CA,94062 +Redwood City,CA,94063 +Redwood City,CA,94065 +San Bruno,CA,94066 +San Carlos,CA,94070 +San Gregorio,CA,94074 +South San Franci,CA,94080 +Sunnyvale,CA,94086 +Sunnyvale,CA,94087 +Sunnyvale,CA,94089 +San Francisco,CA,94102 +San Francisco,CA,94103 +San Francisco,CA,94104 +San Francisco,CA,94105 +San Francisco,CA,94107 +San Francisco,CA,94108 +San Francisco,CA,94109 +San Francisco,CA,94110 +San Francisco,CA,94111 +San Francisco,CA,94112 +San Francisco,CA,94114 +San Francisco,CA,94115 +San Francisco,CA,94116 +San Francisco,CA,94117 +San Francisco,CA,94118 +San Francisco,CA,94121 +San Francisco,CA,94122 +San Francisco,CA,94123 +San Francisco,CA,94124 +San Francisco,CA,94127 +San Francisco,CA,94129 +San Francisco,CA,94130 +San Francisco,CA,94131 +San Francisco,CA,94132 +San Francisco,CA,94133 +San Francisco,CA,94134 +Palo Alto,CA,94301 +East Palo Alto,CA,94303 +Palo Alto,CA,94304 +Stanford,CA,94305 +Palo Alto,CA,94306 +Russian River,CA,94401 +San Mateo,CA,94402 +San Mateo,CA,94403 +Foster City,CA,94404 +Coast Guard Isla,CA,94501 +Alamo,CA,94507 +Angwin,CA,94508 +Antioch,CA,94509 +Benicia,CA,94510 +Birds Landing,CA,94512 +Brentwood,CA,94513 +Byron,CA,94514 +Calistoga,CA,94515 +Clayton,CA,94517 +Concord,CA,94518 +Concord,CA,94519 +Concord,CA,94520 +Concord,CA,94521 +Pleasant Hill,CA,94523 +Crockett,CA,94525 +Danville,CA,94526 +Diablo,CA,94528 +El Cerrito,CA,94530 +Fairfield,CA,94533 +Travis Afb,CA,94535 +Fremont,CA,94536 +Fremont,CA,94538 +Fremont,CA,94539 +Hayward,CA,94541 +Hayward,CA,94542 +Hayward,CA,94544 +Hayward,CA,94545 +Castro Valley,CA,94546 +Hercules,CA,94547 +Knightsen,CA,94548 +Lafayette,CA,94549 +Livermore,CA,94550 +Castro Valley,CA,94552 +Pacheco,CA,94553 +Fremont,CA,94555 +Moraga,CA,94556 +Spanish Flat,CA,94558 +Napa,CA,94559 +Newark,CA,94560 +Oakley,CA,94561 +Orinda,CA,94563 +Pinole,CA,94564 +Shore Acres,CA,94565 +Pleasanton,CA,94566 +Pope Valley,CA,94567 +Dublin,CA,94568 +Port Costa,CA,94569 +Rio Vista,CA,94571 +Rodeo,CA,94572 +Saint Helena,CA,94574 +San Leandro,CA,94577 +San Leandro,CA,94578 +San Leandro,CA,94579 +San Lorenzo,CA,94580 +San Ramon,CA,94583 +Suisun City,CA,94585 +Sunol,CA,94586 +Union City,CA,94587 +Pleasanton,CA,94588 +American Canyon,CA,94589 +Vallejo,CA,94590 +Vallejo,CA,94591 +Mare Island,CA,94592 +Walnut Creek,CA,94595 +Walnut Creek,CA,94596 +Walnut Creek,CA,94598 +Yountville,CA,94599 +Oakland,CA,94601 +Oakland,CA,94602 +Oakland,CA,94603 +Oakland,CA,94605 +Oakland,CA,94606 +Oakland,CA,94607 +Emeryville,CA,94608 +Oakland,CA,94609 +Oakland,CA,94610 +Piedmont,CA,94611 +Oakland,CA,94612 +Oakland,CA,94613 +Piedmont,CA,94618 +Oakland,CA,94619 +Oakland,CA,94621 +Berkeley,CA,94702 +Berkeley,CA,94703 +Berkeley,CA,94704 +Berkeley,CA,94705 +Albany,CA,94706 +Kensington,CA,94707 +Kensington,CA,94708 +Berkeley,CA,94709 +Berkeley,CA,94710 +Richmond,CA,94801 +El Sobrante,CA,94803 +Richmond,CA,94804 +Richmond,CA,94805 +San Pablo,CA,94806 +San Rafael,CA,94901 +Civic Center,CA,94903 +Kentfield,CA,94904 +Belvedere,CA,94920 +Bodega,CA,94922 +Bodega Bay,CA,94923 +Bolinas,CA,94924 +Corte Madera,CA,94925 +Rohnert Park,CA,94928 +Fairfax,CA,94930 +Cotati,CA,94931 +Forest Knolls,CA,94933 +Inverness,CA,94937 +Lagunitas,CA,94938 +Larkspur,CA,94939 +Marshall,CA,94940 +Mill Valley,CA,94941 +Novato,CA,94945 +Nicasio,CA,94946 +Novato,CA,94947 +Novato,CA,94949 +Penngrove,CA,94951 +Petaluma,CA,94952 +Petaluma,CA,94954 +Point Reyes Stat,CA,94956 +San Anselmo,CA,94960 +San Geronimo,CA,94963 +Sausalito,CA,94965 +Stinson Beach,CA,94970 +Valley Ford,CA,94972 +Woodacre,CA,94973 +Alviso,CA,95002 +Aptos,CA,95003 +Aromas,CA,95004 +Ben Lomond,CA,95005 +Boulder Creek,CA,95006 +Campbell,CA,95008 +Capitola,CA,95010 +Castroville,CA,95012 +Coyote,CA,95013 +Monte Vista,CA,95014 +Davenport,CA,95017 +Felton,CA,95018 +Freedom,CA,95019 +Gilroy,CA,95020 +Hollister,CA,95023 +Monte Sereno,CA,95030 +Los Gatos,CA,95032 +Milpitas,CA,95035 +Morgan Hill,CA,95037 +Paicines,CA,95043 +San Juan Bautist,CA,95045 +San Martin,CA,95046 +Santa Clara,CA,95050 +Santa Clara,CA,95051 +Santa Clara,CA,95054 +Scotts Valley,CA,95060 +Santa Cruz,CA,95062 +Santa Cruz,CA,95064 +Santa Cruz,CA,95065 +Scotts Valley,CA,95066 +Saratoga,CA,95070 +Soquel,CA,95073 +La Selva Beach,CA,95076 +San Jose,CA,95110 +San Jose,CA,95111 +San Jose,CA,95112 +San Jose,CA,95113 +San Jose,CA,95116 +San Jose,CA,95117 +San Jose,CA,95118 +San Jose,CA,95119 +San Jose,CA,95120 +San Jose,CA,95121 +San Jose,CA,95122 +San Jose,CA,95123 +San Jose,CA,95124 +San Jose,CA,95125 +San Jose,CA,95126 +San Jose,CA,95127 +San Jose,CA,95128 +San Jose,CA,95129 +San Jose,CA,95130 +San Jose,CA,95131 +San Jose,CA,95132 +San Jose,CA,95133 +San Jose,CA,95134 +San Jose,CA,95135 +San Jose,CA,95136 +San Jose,CA,95138 +San Jose,CA,95139 +Mount Hamilton,CA,95140 +San Jose,CA,95141 +San Jose,CA,95148 +Stockton,CA,95202 +Stockton,CA,95203 +Stockton,CA,95204 +Stockton,CA,95205 +Stockton,CA,95206 +Stockton,CA,95207 +Stockton,CA,95209 +Stockton,CA,95210 +Univ Of The Paci,CA,95211 +Stockton,CA,95212 +Stockton,CA,95215 +Stockton,CA,95219 +Acampo,CA,95220 +Angels Camp,CA,95222 +Bear Valley,CA,95223 +Copperopolis,CA,95228 +Farmington,CA,95230 +French Camp,CA,95231 +Glencoe,CA,95232 +Linden,CA,95236 +Lockeford,CA,95237 +Lodi,CA,95240 +Lodi,CA,95242 +Mokelumne Hill,CA,95245 +Mountain Ranch,CA,95246 +Murphys,CA,95247 +San Andreas,CA,95249 +Vallecito,CA,95251 +Valley Springs,CA,95252 +West Point,CA,95255 +Wilseyville,CA,95257 +Woodbridge,CA,95258 +Atwater,CA,95301 +Ballico,CA,95303 +Catheys Valley,CA,95306 +Ceres,CA,95307 +Chinese Camp,CA,95309 +Columbia,CA,95310 +Coulterville,CA,95311 +Crows Landing,CA,95313 +Delhi,CA,95315 +Denair,CA,95316 +El Nido,CA,95317 +Escalon,CA,95320 +Groveland,CA,95321 +Gustine,CA,95322 +Hickman,CA,95323 +Hilmar,CA,95324 +Hornitos,CA,95325 +Hughson,CA,95326 +Jamestown,CA,95327 +La Grange,CA,95329 +Lathrop,CA,95330 +Le Grand,CA,95333 +Livingston,CA,95334 +Cold Springs,CA,95335 +Manteca,CA,95336 +Mariposa,CA,95338 +Red Top,CA,95340 +Midpines,CA,95345 +Mi Wuk Village,CA,95346 +Merced,CA,95348 +Modesto,CA,95350 +Modesto,CA,95351 +Modesto,CA,95354 +Modesto,CA,95355 +Modesto,CA,95356 +Newman,CA,95360 +Knights Ferry,CA,95361 +Patterson,CA,95363 +Pinecrest,CA,95364 +Ripon,CA,95366 +Riverbank,CA,95367 +Salida,CA,95368 +Snelling,CA,95369 +Sonora,CA,95370 +Soulsbyville,CA,95372 +Stevinson,CA,95374 +Tracy,CA,95376 +Tuolumne,CA,95379 +Turlock,CA,95380 +Twain Harte,CA,95383 +Waterford,CA,95386 +Winton,CA,95388 +Santa Rosa,CA,95401 +Santa Rosa,CA,95403 +Santa Rosa,CA,95404 +Santa Rosa,CA,95405 +Santa Rosa,CA,95407 +Santa Rosa,CA,95409 +Albion,CA,95410 +95411,CA,95411 +Annapolis,CA,95412 +95414,CA,95414 +Boonville,CA,95415 +Branscomb,CA,95417 +Caspar,CA,95420 +Cazadero,CA,95421 +Clearlake,CA,95422 +Clearlake Oaks,CA,95423 +Cloverdale,CA,95425 +Comptche,CA,95427 +Covelo,CA,95428 +Dos Rios,CA,95429 +Elk,CA,95432 +Forestville,CA,95436 +Fort Bragg,CA,95437 +Fulton,CA,95439 +95440,CA,95440 +Geyserville,CA,95441 +Glen Ellen,CA,95442 +Glenhaven,CA,95443 +Graton,CA,95444 +Gualala,CA,95445 +Guerneville,CA,95446 +Healdsburg,CA,95448 +Hopland,CA,95449 +Jenner,CA,95450 +Kelseyville,CA,95451 +Kenwood,CA,95452 +Lakeport,CA,95453 +Laytonville,CA,95454 +95455,CA,95455 +Littleriver,CA,95456 +Lower Lake,CA,95457 +Lucerne,CA,95458 +Manchester,CA,95459 +Mendocino,CA,95460 +Middletown,CA,95461 +Russian River Md,CA,95462 +Nice,CA,95464 +Occidental,CA,95465 +Philo,CA,95466 +95467,CA,95467 +Point Arena,CA,95468 +Potter Valley,CA,95469 +Redwood Valley,CA,95470 +Freestone,CA,95472 +Sonoma,CA,95476 +Ukiah,CA,95482 +Upper Lake,CA,95485 +Westport,CA,95488 +95489,CA,95489 +Willits,CA,95490 +Windsor,CA,95492 +Witter Springs,CA,95493 +Yorkville,CA,95494 +95495,CA,95495 +The Sea Ranch,CA,95497 +Eureka,CA,95501 +Mc Kinleyville,CA,95521 +Bayside,CA,95524 +Blue Lake,CA,95525 +Ruth,CA,95526 +Burnt Ranch,CA,95527 +Carlotta,CA,95528 +Crescent City,CA,95531 +Ferndale,CA,95536 +Fortuna,CA,95540 +Gasquet,CA,95543 +Hoopa,CA,95546 +Hydesville,CA,95547 +Klamath,CA,95548 +Kneeland,CA,95549 +Korbel,CA,95550 +Loleta,CA,95551 +Mad River,CA,95552 +Myers Flat,CA,95554 +Orick,CA,95555 +Orleans,CA,95556 +Petrolia,CA,95558 +Redway,CA,95560 +Rio Dell,CA,95562 +Salyer,CA,95563 +Samoa,CA,95564 +Scotia,CA,95565 +Smith River,CA,95567 +Somes Bar,CA,95568 +Redcrest,CA,95569 +Westhaven,CA,95570 +Willow Creek,CA,95573 +Auburn,CA,95603 +Bryte,CA,95605 +Brooks,CA,95606 +Capay,CA,95607 +Carmichael,CA,95608 +Citrus Heights,CA,95610 +Clarksburg,CA,95612 +Cool,CA,95614 +Courtland,CA,95615 +Davis,CA,95616 +El Macero,CA,95618 +Diamond Springs,CA,95619 +Liberty Farms,CA,95620 +Citrus Heights,CA,95621 +Elk Grove,CA,95624 +Elverta,CA,95626 +Esparto,CA,95627 +Fair Oaks,CA,95628 +Fiddletown,CA,95629 +El Dorado Hills,CA,95630 +Foresthill,CA,95631 +Galt,CA,95632 +Garden Valley,CA,95633 +Georgetown,CA,95634 +Greenwood,CA,95635 +Grizzly Flats,CA,95636 +Guinda,CA,95637 +Herald,CA,95638 +Ione,CA,95640 +Isleton,CA,95641 +Jackson,CA,95642 +Kelsey,CA,95643 +Knights Landing,CA,95645 +Lincoln,CA,95648 +Loomis,CA,95650 +Lotus,CA,95651 +Mcclellan Afb,CA,95652 +Madison,CA,95653 +Mather Afb,CA,95655 +Newcastle,CA,95658 +Trowbridge,CA,95659 +North Highlands,CA,95660 +Roseville,CA,95661 +Orangevale,CA,95662 +Penryn,CA,95663 +Pilot Hill,CA,95664 +Pine Grove,CA,95665 +Pioneer,CA,95666 +Placerville,CA,95667 +Pleasant Grove,CA,95668 +Plymouth,CA,95669 +Gold River,CA,95670 +Rescue,CA,95672 +Rio Linda,CA,95673 +Rio Oso,CA,95674 +Rocklin,CA,95677 +Roseville,CA,95678 +Rumsey,CA,95679 +Sheridan,CA,95681 +Cameron Park,CA,95682 +Rancho Murieta,CA,95683 +Somerset,CA,95684 +Sutter Creek,CA,95685 +Vacaville,CA,95687 +Vacaville,CA,95688 +Volcano,CA,95689 +Walnut Grove,CA,95690 +West Sacramento,CA,95691 +Wheatland,CA,95692 +Wilton,CA,95693 +Winters,CA,95694 +Woodland,CA,95695 +Zamora,CA,95698 +Alta,CA,95701 +Applegate,CA,95703 +Camino,CA,95709 +Iowa Hill,CA,95713 +Dutch Flat,CA,95714 +Emigrant Gap,CA,95715 +Gold Run,CA,95717 +Kyburz,CA,95720 +Echo Lake,CA,95721 +Meadow Vista,CA,95722 +Norden,CA,95724 +Pacific House,CA,95726 +Soda Springs,CA,95728 +Twin Bridges,CA,95735 +Rancho Cordova,CA,95742 +Elk Grove,CA,95758 +Sacramento,CA,95814 +Sacramento,CA,95815 +Sacramento,CA,95816 +Sacramento,CA,95817 +Sacramento,CA,95818 +Sacramento,CA,95819 +Sacramento,CA,95820 +Sacramento,CA,95821 +Sacramento,CA,95822 +Sacramento,CA,95823 +Sacramento,CA,95824 +Sacramento,CA,95825 +Sacramento,CA,95826 +Sacramento,CA,95827 +Sacramento,CA,95828 +Sacramento,CA,95829 +Sacramento,CA,95830 +Sacramento,CA,95831 +Sacramento,CA,95832 +Sacramento,CA,95833 +Sacramento,CA,95834 +Sacramento,CA,95835 +Sacramento,CA,95836 +Sacramento,CA,95837 +Sacramento,CA,95838 +Sacramento,CA,95841 +Sacramento,CA,95842 +Sacramento,CA,95864 +Marysville,CA,95901 +Alleghany,CA,95910 +Arbuckle,CA,95912 +Bangor,CA,95914 +Belden,CA,95915 +Berry Creek,CA,95916 +Biggs,CA,95917 +Browns Valley,CA,95918 +Brownsville,CA,95919 +Butte City,CA,95920 +Camptonville,CA,95922 +Canyondam,CA,95923 +Cohasset,CA,95926 +Chico,CA,95928 +Colusa,CA,95932 +Crescent Mills,CA,95934 +Dobbins,CA,95935 +Downieville,CA,95936 +Dunnigan,CA,95937 +Durham,CA,95938 +Elk Creek,CA,95939 +Forbestown,CA,95941 +Butte Meadows,CA,95942 +Glenn,CA,95943 +Goodyears Bar,CA,95944 +Grass Valley,CA,95945 +Penn Valley,CA,95946 +Greenville,CA,95947 +Gridley,CA,95948 +Grass Valley,CA,95949 +Live Oak,CA,95953 +Magalia,CA,95954 +Maxwell,CA,95955 +Meadow Valley,CA,95956 +Meridian,CA,95957 +Nevada City,CA,95959 +North San Juan,CA,95960 +Olivehurst,CA,95961 +Oregon House,CA,95962 +Orland,CA,95963 +Pulga,CA,95965 +Oroville,CA,95966 +Palermo,CA,95968 +Paradise,CA,95969 +Princeton,CA,95970 +Quincy,CA,95971 +Rackerby,CA,95972 +Rough And Ready,CA,95975 +Smartville,CA,95977 +Stonyford,CA,95979 +La Porte,CA,95981 +Sutter,CA,95982 +Taylorsville,CA,95983 +Twain,CA,95984 +Williams,CA,95987 +Willows,CA,95988 +Yuba City,CA,95991 +Yuba City,CA,95993 +Redding,CA,96001 +Redding,CA,96002 +Redding,CA,96003 +Adin,CA,96006 +Anderson,CA,96007 +Bella Vista,CA,96008 +Big Bar,CA,96010 +Burney,CA,96013 +Callahan,CA,96014 +Canby,CA,96015 +Cassel,CA,96016 +Shasta Lake,CA,96019 +Chester,CA,96020 +Corning,CA,96021 +Cottonwood,CA,96022 +Douglas City,CA,96024 +Dunsmuir,CA,96025 +Sawyers Bar,CA,96027 +Fall River Mills,CA,96028 +Forks Of Salmon,CA,96031 +Fort Jones,CA,96032 +French Gulch,CA,96033 +Gazelle,CA,96034 +Gerber,CA,96035 +Grenada,CA,96038 +Happy Camp,CA,96039 +Hat Creek,CA,96040 +Hayfork,CA,96041 +Hornbrook,CA,96044 +Horse Creek,CA,96045 +Igo,CA,96047 +Helena,CA,96048 +Klamath River,CA,96050 +Lakehead,CA,96051 +Lewiston,CA,96052 +Los Molinos,CA,96055 +Mcarthur,CA,96056 +Mccloud,CA,96057 +Macdoel,CA,96058 +Manton,CA,96059 +Millville,CA,96062 +Mineral,CA,96063 +Montague,CA,96064 +Montgomery Creek,CA,96065 +Mount Shasta,CA,96067 +Oak Run,CA,96069 +Old Station,CA,96071 +Palo Cedro,CA,96073 +Paynes Creek,CA,96075 +Wildwood,CA,96076 +Red Bluff,CA,96080 +Scott Bar,CA,96085 +Seiad Valley,CA,96086 +Shasta,CA,96087 +Shingletown,CA,96088 +Trinity Center,CA,96091 +Weaverville,CA,96093 +Edgewood,CA,96094 +Whitmore,CA,96096 +Yreka,CA,96097 +Alturas,CA,96101 +Cromberg,CA,96103 +Cedarville,CA,96104 +Chilcoot,CA,96105 +Clio,CA,96106 +Coleville,CA,96107 +Davis Creek,CA,96108 +Doyle,CA,96109 +Floriston,CA,96111 +Fort Bidwell,CA,96112 +Herlong,CA,96113 +Janesville,CA,96114 +Lake City,CA,96115 +Litchfield,CA,96117 +Loyalton,CA,96118 +Hope Valley,CA,96120 +Milford,CA,96121 +Portola,CA,96122 +Ravendale,CA,96123 +Calpine,CA,96124 +Sierra City,CA,96125 +Sierraville,CA,96126 +Standish,CA,96128 +Susanville,CA,96130 +Termo,CA,96132 +Topaz,CA,96133 +Tulelake,CA,96134 +Vinton,CA,96135 +Wendel,CA,96136 +Peninsula Villag,CA,96137 +Carnelian Bay,CA,96140 +Homewood,CA,96141 +Tahoma,CA,96142 +Kings Beach,CA,96143 +Tahoe City,CA,96145 +Tahoe Vista,CA,96148 +South Lake Tahoe,CA,96150 +Truckee,CA,96161 +Truckee,CA,96162 +Arvada,CO,80002 +Arvada,CO,80003 +Arvada,CO,80004 +Arvada,CO,80005 +Aurora,CO,80010 +Aurora,CO,80011 +Aurora,CO,80012 +Aurora,CO,80013 +Aurora,CO,80014 +Aurora,CO,80015 +Aurora,CO,80016 +Aurora,CO,80017 +Aurora,CO,80018 +Aurora,CO,80019 +Broomfield,CO,80020 +Westminster,CO,80021 +Commerce City,CO,80022 +Lafayette,CO,80026 +Louisville,CO,80027 +Westminster,CO,80030 +Wheat Ridge,CO,80033 +Aurora,CO,80045 +Agate,CO,80101 +Bennett,CO,80102 +Byers,CO,80103 +Castle Rock,CO,80104 +Deer Trail,CO,80105 +Elbert,CO,80106 +Elizabeth,CO,80107 +Cherry Hills Vil,CO,80110 +Cherry Hills Vil,CO,80111 +Englewood,CO,80112 +Franktown,CO,80116 +Kiowa,CO,80117 +Larkspur,CO,80118 +Littleton,CO,80120 +Greenwood Villag,CO,80121 +Littleton,CO,80122 +Bow Mar,CO,80123 +Littleton,CO,80124 +Littleton,CO,80125 +Highlands Ranch,CO,80126 +Littleton,CO,80127 +Monument,CO,80132 +Palmer Lake,CO,80133 +Parker,CO,80134 +Deckers,CO,80135 +Strasburg,CO,80136 +Watkins,CO,80137 +Denver,CO,80202 +Denver,CO,80203 +Denver,CO,80204 +Denver,CO,80205 +Denver,CO,80206 +Denver,CO,80207 +Denver,CO,80209 +Denver,CO,80210 +Denver,CO,80211 +Mountain View,CO,80212 +Edgewater,CO,80214 +Lakewood,CO,80215 +Denver,CO,80216 +Denver,CO,80218 +Denver,CO,80219 +Denver,CO,80220 +Federal Heights,CO,80221 +Glendale,CO,80222 +Denver,CO,80223 +Denver,CO,80224 +Lakewood,CO,80226 +Denver,CO,80227 +Lakewood,CO,80228 +Thornton,CO,80229 +Denver,CO,80231 +Lakewood,CO,80232 +Northglenn,CO,80233 +Northglenn,CO,80234 +Denver,CO,80235 +Denver,CO,80236 +Denver,CO,80237 +Denver,CO,80239 +Northglenn,CO,80241 +Denver,CO,80249 +Boulder,CO,80301 +Boulder,CO,80302 +Boulder,CO,80303 +Boulder,CO,80304 +Golden,CO,80401 +Golden,CO,80403 +Bailey,CO,80421 +Black Hawk,CO,80422 +Bond,CO,80423 +Clark,CO,80428 +Climax,CO,80429 +Coalmont,CO,80430 +Conifer,CO,80433 +Keystone,CO,80435 +Evergreen,CO,80439 +Fairplay,CO,80440 +Foxton,CO,80441 +Granby,CO,80446 +Grand Lake,CO,80447 +Idaho Springs,CO,80452 +Jamestown,CO,80455 +Jefferson,CO,80456 +Kremmling,CO,80459 +Leadville,CO,80461 +Mc Coy,CO,80463 +Morrison,CO,80465 +Nederland,CO,80466 +Oak Creek,CO,80467 +Parshall,CO,80468 +Pine,CO,80470 +Pinecliffe,CO,80471 +Rollinsville,CO,80474 +Toponas,CO,80479 +Walden,CO,80480 +Ward,CO,80481 +Steamboat Spring,CO,80487 +Longmont,CO,80501 +Longmont,CO,80503 +Longmont,CO,80504 +Allenspark,CO,80510 +Bellvue,CO,80512 +Berthoud,CO,80513 +Dacono,CO,80514 +Drake,CO,80515 +Erie,CO,80516 +Estes Park,CO,80517 +Fort Collins,CO,80521 +Fort Collins,CO,80524 +Fort Collins,CO,80525 +Fort Collins,CO,80526 +Johnstown,CO,80534 +Laporte,CO,80535 +Virginia Dale,CO,80536 +Loveland,CO,80537 +Loveland,CO,80538 +Lyons,CO,80540 +Milliken,CO,80543 +Red Feather Lake,CO,80545 +Wellington,CO,80549 +Windsor,CO,80550 +Lochbui,CO,80601 +Ault,CO,80610 +Briggsdale,CO,80611 +Carr,CO,80612 +Eaton,CO,80615 +Evans,CO,80620 +Wattenburg,CO,80621 +Galeton,CO,80622 +Gill,CO,80624 +Garden City,CO,80631 +Greeley,CO,80634 +Henderson,CO,80640 +Hudson,CO,80642 +Keenesburg,CO,80643 +Kersey,CO,80644 +La Salle,CO,80645 +Nunn,CO,80648 +Orchard,CO,80649 +Pierce,CO,80650 +Platteville,CO,80651 +Roggen,CO,80652 +Weldona,CO,80653 +Hoyt,CO,80654 +Fort Morgan,CO,80701 +Akron,CO,80720 +Amherst,CO,80721 +Atwood,CO,80722 +Brush,CO,80723 +Crook,CO,80726 +Eckley,CO,80727 +Fleming,CO,80728 +Grover,CO,80729 +Haxtun,CO,80731 +Hillrose,CO,80733 +Holyoke,CO,80734 +Hale,CO,80735 +Iliff,CO,80736 +Julesburg,CO,80737 +Lindon,CO,80740 +Willard,CO,80741 +New Raymer,CO,80742 +Otis,CO,80743 +Ovid,CO,80744 +Padroni,CO,80745 +Peetz,CO,80747 +Sedgwick,CO,80749 +Snyder,CO,80750 +Sterling,CO,80751 +Stoneham,CO,80754 +Vernon,CO,80755 +Last Chance,CO,80757 +Laird,CO,80758 +Yuma,CO,80759 +Anton,CO,80801 +Arapahoe,CO,80802 +Arriba,CO,80804 +Bethune,CO,80805 +Burlington,CO,80807 +Calhan,CO,80808 +North Pole,CO,80809 +Cheyenne Wells,CO,80810 +Cope,CO,80812 +Divide,CO,80814 +Flagler,CO,80815 +Florissant,CO,80816 +Fountain,CO,80817 +Genoa,CO,80818 +Guffey,CO,80820 +Hugo,CO,80821 +Joes,CO,80822 +Karval,CO,80823 +Kirk,CO,80824 +Kit Carson,CO,80825 +Lake George,CO,80827 +Limon,CO,80828 +Manitou Springs,CO,80829 +Matheson,CO,80830 +Peyton,CO,80831 +Ramah,CO,80832 +Rush,CO,80833 +Seibert,CO,80834 +Simla,CO,80835 +Stratton,CO,80836 +United States Ai,CO,80840 +Vona,CO,80861 +Woodland Park,CO,80863 +Yoder,CO,80864 +Colorado Springs,CO,80903 +Colorado Springs,CO,80904 +Colorado Springs,CO,80905 +Colorado Springs,CO,80906 +Colorado Springs,CO,80907 +Colorado Springs,CO,80908 +Colorado Springs,CO,80909 +Colorado Springs,CO,80910 +Colorado Springs,CO,80911 +Fort Carson,CO,80913 +Cheyenne Mtn Afb,CO,80914 +Colorado Springs,CO,80915 +Colorado Springs,CO,80916 +Colorado Springs,CO,80917 +Colorado Springs,CO,80918 +Colorado Springs,CO,80919 +Colorado Springs,CO,80920 +Colorado Springs,CO,80921 +Colorado Springs,CO,80922 +Colorado Springs,CO,80925 +Colorado Springs,CO,80926 +Colorado Springs,CO,80928 +Colorado Springs,CO,80929 +Colorado Springs,CO,80930 +Pueblo,CO,81001 +Pueblo,CO,81003 +Pueblo,CO,81004 +Pueblo,CO,81005 +Pueblo,CO,81006 +Pueblo West,CO,81007 +Pueblo,CO,81008 +Aguilar,CO,81020 +Arlington,CO,81021 +North Avondale,CO,81022 +Beulah,CO,81023 +Boone,CO,81025 +Brandon,CO,81026 +Branson,CO,81027 +Bristol,CO,81028 +Campo,CO,81029 +Chivington,CO,81036 +Fowler,CO,81039 +Farisita,CO,81040 +Granada,CO,81041 +Hartman,CO,81043 +Caddoa,CO,81044 +Haswell,CO,81045 +Holly,CO,81047 +Villegreen,CO,81049 +Timpas,CO,81050 +Lamar,CO,81052 +Deora,CO,81054 +Cuchara,CO,81055 +Mc Clave,CO,81057 +Manzanola,CO,81058 +Delhi,CO,81059 +Olney Springs,CO,81062 +Ordway,CO,81063 +Utleyville,CO,81064 +Rocky Ford,CO,81067 +Rye,CO,81069 +Towner,CO,81071 +Springfield,CO,81073 +Sugar City,CO,81076 +81080,CO,81080 +Trinchera,CO,81081 +Jansen,CO,81082 +Lycan,CO,81084 +Vilas,CO,81087 +Farista,CO,81089 +Walsh,CO,81090 +Weston,CO,81091 +Wiley,CO,81092 +Alamosa,CO,81101 +Antonito,CO,81120 +Arboles,CO,81121 +Bayfield,CO,81122 +Blanca,CO,81123 +Center,CO,81125 +Creede,CO,81130 +La Garita,CO,81132 +Fort Garland,CO,81133 +Hooper,CO,81136 +Ignacio,CO,81137 +La Jara,CO,81140 +Moffat,CO,81143 +Monte Vista,CO,81144 +Mosca,CO,81146 +Pagosa Springs,CO,81147 +Saguache,CO,81149 +San Acacio,CO,81150 +Sanford,CO,81151 +Mesita,CO,81152 +San Pablo,CO,81153 +South Fork,CO,81154 +Villa Grove,CO,81155 +Salida,CO,81201 +Almont,CO,81210 +Buena Vista,CO,81211 +Canon City,CO,81212 +Cimarron,CO,81220 +Crested Butte,CO,81224 +Florence,CO,81226 +Granite,CO,81228 +Gunnison,CO,81230 +Howard,CO,81233 +Lake City,CO,81235 +Nathrop,CO,81236 +Parlin,CO,81239 +Penrose,CO,81240 +Pitkin,CO,81241 +Powderhorn,CO,81243 +81250,CO,81250 +Twin Lakes,CO,81251 +Westcliffe,CO,81252 +Wetmore,CO,81253 +Durango,CO,81301 +Cahone,CO,81320 +Cortez,CO,81321 +Dolores,CO,81323 +Dove Creek,CO,81324 +Egnar,CO,81325 +Hesperus,CO,81326 +Lewis,CO,81327 +Mancos,CO,81328 +Pleasant View,CO,81331 +Towaoc,CO,81334 +Yellow Jacket,CO,81335 +Montrose,CO,81401 +Austin,CO,81410 +Bedrock,CO,81411 +Cedaredge,CO,81413 +Crawford,CO,81415 +Delta,CO,81416 +Eckert,CO,81418 +Hotchkiss,CO,81419 +Naturita,CO,81422 +Norwood,CO,81423 +Nucla,CO,81424 +Olathe,CO,81425 +Ophir,CO,81426 +Ouray,CO,81427 +Paonia,CO,81428 +Placerville,CO,81430 +Redvale,CO,81431 +Ridgway,CO,81432 +Silverton,CO,81433 +Somerset,CO,81434 +Telluride,CO,81435 +Grand Junction,CO,81501 +Grand Junction,CO,81503 +Fruitvale,CO,81504 +Grand Junction,CO,81505 +Grand Junction,CO,81506 +Clifton,CO,81520 +Fruita,CO,81521 +Gateway,CO,81522 +Loma,CO,81524 +Mack,CO,81525 +Palisade,CO,81526 +Whitewater,CO,81527 +Glenwood Springs,CO,81601 +Dinosaur,CO,81610 +Aspen,CO,81611 +Basalt,CO,81621 +Marble,CO,81623 +Collbran,CO,81624 +Craig,CO,81625 +De Beque,CO,81630 +Eagle,CO,81631 +Elk Springs,CO,81633 +Battlement Mesa,CO,81635 +Gypsum,CO,81637 +Hamilton,CO,81638 +Hayden,CO,81639 +Maybell,CO,81640 +Meeker,CO,81641 +Meredith,CO,81642 +Mesa,CO,81643 +New Castle,CO,81647 +Rangely,CO,81648 +Rifle,CO,81650 +Silt,CO,81652 +Slater,CO,81653 +Snowmass,CO,81654 +Vail,CO,81657 +Avon,CT,6001 +Bloomfield,CT,6002 +Bristol,CT,6010 +Burlington,CT,6013 +Windsorville,CT,6016 +Canaan,CT,6018 +Canton,CT,6019 +Canton Center,CT,6020 +Colebrook,CT,6021 +Collinsville,CT,6022 +East Berlin,CT,6023 +East Canaan,CT,6024 +East Granby,CT,6026 +East Hartland,CT,6027 +Ellington,CT,6029 +Falls Village,CT,6031 +Farmington,CT,6032 +Glastonbury,CT,6033 +Granby,CT,6035 +Berlin,CT,6037 +Lakeville,CT,6039 +Manchester,CT,6040 +Bolton,CT,6043 +New Britain,CT,6051 +New Britain,CT,6052 +New Britain,CT,6053 +New Hartford,CT,6057 +Norfolk,CT,6058 +North Canton,CT,6059 +North Granby,CT,6060 +Plainville,CT,6062 +Pleasant Valley,CT,6063 +Riverton,CT,6065 +Vernon Rockville,CT,6066 +Rocky Hill,CT,6067 +Salisbury,CT,6068 +Sharon,CT,6069 +Simsbury,CT,6070 +Somers,CT,6071 +South Glastonbur,CT,6073 +South Windsor,CT,6074 +Stafford Springs,CT,6076 +Suffield,CT,6078 +Tariffville,CT,6081 +Enfield,CT,6082 +Tolland,CT,6084 +Unionville,CT,6085 +East Windsor,CT,6088 +Weatogue,CT,6089 +West Granby,CT,6090 +West Simsbury,CT,6092 +West Suffield,CT,6093 +Windsor,CT,6095 +Windsor Locks,CT,6096 +Winsted,CT,6098 +Hartford,CT,6103 +Hartford,CT,6105 +Hartford,CT,6106 +W Hartford,CT,6107 +East Hartford,CT,6108 +Wethersfield,CT,6109 +W Hartford,CT,6110 +Maple Hill,CT,6111 +Hartford,CT,6112 +Hartford,CT,6114 +W Hartford,CT,6117 +East Hartford,CT,6118 +W Hartford,CT,6119 +Hartford,CT,6120 +Willimantic,CT,6226 +Amston,CT,6231 +Andover,CT,6232 +Brooklyn,CT,6234 +Chaplin,CT,6235 +Columbia,CT,6237 +Coventry,CT,6238 +Danielson,CT,6239 +Dayville,CT,6241 +Eastford,CT,6242 +East Killingly,CT,6243 +Hampton,CT,6247 +Hebron,CT,6248 +Lebanon,CT,6249 +Mansfield Center,CT,6250 +North Franklin,CT,6254 +North Grosvenord,CT,6255 +North Windham,CT,6256 +Pomfret Center,CT,6259 +Putnam,CT,6260 +Quinebaug,CT,6262 +Scotland,CT,6264 +South Windham,CT,6266 +Storrs Mansfield,CT,6268 +Thompson,CT,6277 +Warrenville,CT,6278 +West Willington,CT,6279 +Windham,CT,6280 +Woodstock,CT,6281 +Woodstock Valley,CT,6282 +New London,CT,6320 +Baltic,CT,6330 +Canterbury,CT,6331 +East Lyme,CT,6333 +Bozrah,CT,6334 +Gales Ferry,CT,6335 +Gilman,CT,6336 +Ledyard,CT,6339 +Groton,CT,6340 +Groton,CT,6349 +Jewett City,CT,6351 +Montville,CT,6353 +Moosup,CT,6354 +Mystic,CT,6355 +Niantic,CT,6357 +North Stonington,CT,6359 +Norwich,CT,6360 +Preston,CT,6365 +Oakdale,CT,6370 +Old Lyme,CT,6371 +Plainfield,CT,6374 +Quaker Hill,CT,6375 +Sterling,CT,6377 +Stonington,CT,6378 +Pawcatuck,CT,6379 +Taftville,CT,6380 +Uncasville,CT,6382 +Voluntown,CT,6384 +Waterford,CT,6385 +Ansonia,CT,6401 +Beacon Falls,CT,6403 +Branford,CT,6405 +Centerbrook,CT,6409 +Cheshire,CT,6410 +Chester,CT,6412 +Clinton,CT,6413 +Colchester,CT,6415 +Cromwell,CT,6416 +Deep River,CT,6417 +Derby,CT,6418 +Killingworth,CT,6419 +Salem,CT,6420 +Durham,CT,6422 +East Haddam,CT,6423 +East Hampton,CT,6424 +Essex,CT,6426 +Fairfield,CT,6430 +Fairfield,CT,6432 +Guilford,CT,6437 +Haddam,CT,6438 +Higganum,CT,6441 +Ivoryton,CT,6442 +Madison,CT,6443 +Marlborough,CT,6447 +Meriden,CT,6450 +Middlefield,CT,6455 +Middletown,CT,6457 +Milford,CT,6460 +Monroe,CT,6468 +Moodus,CT,6469 +Newtown,CT,6470 +North Branford,CT,6471 +Northford,CT,6472 +North Haven,CT,6473 +Old Saybrook,CT,6475 +Orange,CT,6477 +Oxford,CT,6478 +Plantsville,CT,6479 +Portland,CT,6480 +Rockfall,CT,6481 +Sandy Hook,CT,6482 +Seymour,CT,6483 +Shelton,CT,6484 +Southbury,CT,6488 +Southington,CT,6489 +Southport,CT,6490 +Wallingford,CT,6492 +Stratford,CT,6497 +Westbrook,CT,6498 +New Haven,CT,6510 +New Haven,CT,6511 +East Haven,CT,6512 +East Haven,CT,6513 +Hamden,CT,6514 +New Haven,CT,6515 +West Haven,CT,6516 +Hamden,CT,6517 +Hamden,CT,6518 +New Haven,CT,6519 +Bethany,CT,6524 +Woodbridge,CT,6525 +Bridgeport,CT,6604 +Bridgeport,CT,6605 +Bridgeport,CT,6606 +Bridgeport,CT,6607 +Bridgeport,CT,6608 +Bridgeport,CT,6610 +Trumbull,CT,6611 +Easton,CT,6612 +Waterbury,CT,6702 +Waterbury,CT,6704 +Waterbury,CT,6705 +Waterbury,CT,6706 +Waterbury,CT,6708 +Waterbury,CT,6710 +Prospect,CT,6712 +Wolcott,CT,6716 +Bantam,CT,6750 +Bethlehem,CT,6751 +Bridgewater,CT,6752 +Warren,CT,6754 +Gaylordsville,CT,6755 +Goshen,CT,6756 +Kent,CT,6757 +Lakeside,CT,6758 +Litchfield,CT,6759 +Middlebury,CT,6762 +Morris,CT,6763 +Naugatuck,CT,6770 +New Milford,CT,6776 +New Preston Marb,CT,6777 +Northfield,CT,6778 +Oakville,CT,6779 +Plymouth,CT,6782 +Roxbury,CT,6783 +Sherman,CT,6784 +South Kent,CT,6785 +Terryville,CT,6786 +Thomaston,CT,6787 +Torrington,CT,6790 +Harwinton,CT,6791 +Washington Depot,CT,6793 +Washington Depot,CT,6794 +Watertown,CT,6795 +West Cornwall,CT,6796 +Woodbury,CT,6798 +Bethel,CT,6801 +Brookfield,CT,6804 +Cos Cob,CT,6807 +Danbury,CT,6810 +Danbury,CT,6811 +New Fairfield,CT,6812 +Darien,CT,6820 +Byram,CT,6830 +Greenwich,CT,6831 +New Canaan,CT,6840 +Norwalk,CT,6850 +Norwalk,CT,6851 +Norwalk,CT,6853 +Norwalk,CT,6854 +Norwalk,CT,6855 +Old Greenwich,CT,6870 +Ridgefield,CT,6877 +Riverside,CT,6878 +Westport,CT,6880 +Weston,CT,6883 +West Redding,CT,6896 +Wilton,CT,6897 +Stamford,CT,6901 +Stamford,CT,6902 +Stamford,CT,6903 +Ridgeway,CT,6905 +Stamford,CT,6906 +Stamford,CT,6907 +Bear,DE,19701 +Newark,DE,19702 +Claymont,DE,19703 +Hockessin,DE,19707 +Middletown,DE,19709 +Newark,DE,19711 +Newark,DE,19713 +Manor,DE,19720 +Townsend,DE,19734 +Wilmington,DE,19801 +Wilmington,DE,19802 +Talleyville,DE,19803 +Newport,DE,19804 +Wilmington,DE,19805 +Wilmington,DE,19806 +Greenville,DE,19807 +Marshallton,DE,19808 +Edgemoor,DE,19809 +Edgemoor,DE,19810 +Dover,DE,19901 +Dover Afb,DE,19902 +Bethany Beach,DE,19930 +Bethel,DE,19931 +Bridgeville,DE,19933 +Camden Wyoming,DE,19934 +Clayton,DE,19938 +Dagsboro,DE,19939 +Delmar,DE,19940 +Ellendale,DE,19941 +Felton,DE,19943 +Frankford,DE,19945 +Frederica,DE,19946 +Georgetown,DE,19947 +Greenwood,DE,19950 +Harbeson,DE,19951 +Harrington,DE,19952 +Hartly,DE,19953 +Houston,DE,19954 +Laurel,DE,19956 +Lewes,DE,19958 +Lincoln,DE,19960 +Magnolia,DE,19962 +Milford,DE,19963 +Marydel,DE,19964 +Long Neck,DE,19966 +Millville,DE,19967 +Milton,DE,19968 +Millville,DE,19970 +Dewey Beach,DE,19971 +Seaford,DE,19973 +Selbyville,DE,19975 +Smyrna,DE,19977 +Viola,DE,19979 +Washington,DC,20001 +Washington,DC,20002 +Washington,DC,20003 +Washington,DC,20004 +Washington,DC,20005 +Washington,DC,20006 +Washington,DC,20007 +Washington,DC,20008 +Washington,DC,20009 +Washington,DC,20010 +Washington,DC,20011 +Washington,DC,20012 +Washington,DC,20015 +Washington,DC,20016 +Washington,DC,20017 +Washington,DC,20018 +Washington,DC,20019 +Washington,DC,20020 +Washington,DC,20024 +Washington,DC,20032 +Washington,DC,20036 +Washington,DC,20037 +Pentagon,DC,20301 +Washington,DC,20336 +Branford,FL,32008 +Bryceville,FL,32009 +Callahan,FL,32011 +Day,FL,32013 +Elkton,FL,32033 +Amelia Island,FL,32034 +Fort White,FL,32038 +Glen Saint Mary,FL,32040 +Green Cove Sprin,FL,32043 +Hampton,FL,32044 +Hilliard,FL,32046 +Jasper,FL,32052 +Jennings,FL,32053 +Lake Butler,FL,32054 +Lake City,FL,32055 +Lawtey,FL,32058 +Lee,FL,32059 +Boys Ranch,FL,32060 +Lulu,FL,32061 +Mc Alpin,FL,32062 +Macclenny,FL,32063 +Orange Park,FL,32065 +Mayo,FL,32066 +Middleburg,FL,32068 +O Brien,FL,32071 +Orange Park,FL,32073 +Ponte Vedra Beac,FL,32082 +Raiford,FL,32083 +Saint Augustine,FL,32084 +Saint Augustine,FL,32086 +Sanderson,FL,32087 +Starke,FL,32091 +Saint Augustine,FL,32092 +Wellborn,FL,32094 +Saint Augustine,FL,32095 +White Springs,FL,32096 +Yulee,FL,32097 +Astor,FL,32102 +Bunnell,FL,32110 +Crescent City,FL,32112 +Citra,FL,32113 +Daytona Beach,FL,32114 +Holly Hill,FL,32117 +Daytona Beach,FL,32118 +Dunlawton,FL,32119 +Port Orange,FL,32124 +Port Orange,FL,32127 +De Leon Springs,FL,32130 +East Palatka,FL,32131 +Edgewater,FL,32132 +Salt Springs,FL,32134 +Flagler Beach,FL,32136 +Palm Coast,FL,32137 +Georgetown,FL,32139 +Florahome,FL,32140 +Edgewater,FL,32141 +Hastings,FL,32145 +Interlachen,FL,32148 +Lady Lake,FL,32159 +New Smyrna Beach,FL,32168 +New Smyrna Beach,FL,32169 +Ormond Beach,FL,32174 +Ormond Beach,FL,32176 +Palatka,FL,32177 +Ocklawaha,FL,32179 +Pierson,FL,32180 +Pomona Park,FL,32181 +San Mateo,FL,32187 +Satsuma,FL,32189 +Seville,FL,32190 +Weirsdale,FL,32195 +Jacksonville,FL,32202 +Jacksonville,FL,32204 +Jacksonville,FL,32205 +Jacksonville,FL,32206 +Jacksonville,FL,32207 +Jacksonville,FL,32208 +Jacksonville,FL,32209 +Jacksonville,FL,32210 +Jacksonville,FL,32211 +Jacksonville N A,FL,32212 +Cecil Field Nas,FL,32215 +Jacksonville,FL,32216 +Jacksonville,FL,32217 +Jacksonville,FL,32218 +Jacksonville,FL,32219 +Jacksonville,FL,32220 +Jacksonville,FL,32221 +Jacksonville,FL,32222 +Jacksonville,FL,32223 +Jacksonville,FL,32224 +Jacksonville,FL,32225 +Jacksonville,FL,32226 +Jacksonville Bea,FL,32227 +Atlantic Beach,FL,32233 +Baldwin,FL,32234 +Jacksonville,FL,32244 +Jacksonville Bea,FL,32250 +Jacksonville,FL,32256 +Jacksonville,FL,32257 +Jacksonville,FL,32258 +Jacksonville,FL,32259 +Neptune Beach,FL,32266 +Tallahassee,FL,32301 +Tallahassee,FL,32303 +Tallahassee,FL,32304 +Tallahassee,FL,32306 +Tallahassee,FL,32308 +Tallahassee,FL,32310 +Tallahassee,FL,32311 +Tallahassee,FL,32312 +Apalachicola,FL,32320 +Bristol,FL,32321 +Carrabelle,FL,32322 +Chattahoochee,FL,32324 +Crawfordville,FL,32327 +Saint George Isl,FL,32328 +Greenville,FL,32331 +Havana,FL,32333 +Hosford,FL,32334 +Lamont,FL,32336 +Madison,FL,32340 +Monticello,FL,32344 +Panacea,FL,32346 +Perry,FL,32347 +Pinetta,FL,32350 +Quincy,FL,32351 +Salem,FL,32356 +Sopchoppy,FL,32358 +Steinhatchee,FL,32359 +Panama City,FL,32401 +Panama City,FL,32403 +Panama City,FL,32404 +Panama City,FL,32405 +Panama City Beac,FL,32407 +Panama City Beac,FL,32408 +Southport,FL,32409 +Panama City Beac,FL,32413 +Alford,FL,32420 +Altha,FL,32421 +Bascom,FL,32423 +Blountstown,FL,32424 +Bonifay,FL,32425 +Campbellton,FL,32426 +Caryville,FL,32427 +Chipley,FL,32428 +Clarksville,FL,32430 +Cottondale,FL,32431 +De Funiak Spring,FL,32433 +Ebro,FL,32437 +Fountain,FL,32438 +Freeport,FL,32439 +Graceville,FL,32440 +Grand Ridge,FL,32442 +Greenwood,FL,32443 +Lynn Haven,FL,32444 +Malone,FL,32445 +Marianna,FL,32446 +Kinard,FL,32449 +Ponce De Leon,FL,32455 +Port Saint Joe,FL,32456 +Santa Rosa Beach,FL,32459 +Sneads,FL,32460 +Vernon,FL,32462 +Westville,FL,32464 +Wewahitchka,FL,32465 +Youngstown,FL,32466 +Pensacola,FL,32501 +Pensacola,FL,32503 +Pensacola,FL,32504 +Pensacola,FL,32505 +Pensacola,FL,32506 +Pensacola,FL,32507 +Pensacola,FL,32508 +Pensacola,FL,32514 +Pensacola,FL,32526 +Baker,FL,32531 +Cantonment,FL,32533 +Pensacola,FL,32534 +Century,FL,32535 +Crestview,FL,32536 +Sandestin,FL,32541 +Eglin A F B,FL,32542 +Fort Walton Beac,FL,32547 +Fort Walton Beac,FL,32548 +Gulf Breeze,FL,32561 +Holt,FL,32564 +Jay,FL,32565 +Navarre,FL,32566 +Laurel Hill,FL,32567 +Walnut Hill,FL,32568 +Mary Esther,FL,32569 +Milton,FL,32570 +Pace,FL,32571 +Niceville,FL,32578 +Shalimar,FL,32579 +Valparaiso,FL,32580 +Milton,FL,32583 +Gainesville,FL,32601 +Gainesville,FL,32603 +Gainesville,FL,32605 +Gainesville,FL,32606 +Gainesville,FL,32607 +Gainesville,FL,32608 +Gainesville,FL,32609 +Gainesville,FL,32611 +Santa Fe,FL,32615 +Anthony,FL,32617 +Archer,FL,32618 +Bell,FL,32619 +32620,FL,32620 +Bronson,FL,32621 +Brooker,FL,32622 +Cedar Key,FL,32625 +Chiefland,FL,32626 +32629,FL,32629 +32630,FL,32630 +Earleton,FL,32631 +32636,FL,32636 +Hawthorne,FL,32640 +32642,FL,32642 +High Springs,FL,32643 +32646,FL,32646 +Horseshoe Beach,FL,32648 +32649,FL,32649 +32650,FL,32650 +32652,FL,32652 +Keystone Heights,FL,32656 +32661,FL,32661 +32665,FL,32665 +Melrose,FL,32666 +Micanopy,FL,32667 +Morriston,FL,32668 +Newberry,FL,32669 +32670,FL,32670 +32671,FL,32671 +32672,FL,32672 +32673,FL,32673 +32674,FL,32674 +32675,FL,32675 +32676,FL,32676 +Old Town,FL,32680 +32684,FL,32684 +Reddick,FL,32686 +32688,FL,32688 +32691,FL,32691 +Trenton,FL,32693 +Waldo,FL,32694 +Williston,FL,32696 +32698,FL,32698 +Altamonte Spring,FL,32701 +Altoona,FL,32702 +Hunt Club,FL,32703 +Casselberry,FL,32707 +Winter Springs,FL,32708 +Christmas,FL,32709 +Apopka,FL,32712 +Debary,FL,32713 +Forest City,FL,32714 +Deland,FL,32720 +Deland,FL,32724 +Deltona,FL,32725 +Eustis,FL,32726 +Fern Park,FL,32730 +Geneva,FL,32732 +Grand Island,FL,32735 +Deltona,FL,32738 +Lake Helen,FL,32744 +Heathrow,FL,32746 +Longwood,FL,32750 +Eatonville,FL,32751 +Mims,FL,32754 +Mount Dora,FL,32757 +Oak Hill,FL,32759 +Orange City,FL,32763 +Osteen,FL,32764 +Oviedo,FL,32765 +Chuluota,FL,32766 +Paisley,FL,32767 +Sanford,FL,32771 +Sanford,FL,32773 +Sorrento,FL,32776 +Tavares,FL,32778 +Springs Plaza,FL,32779 +Titusville,FL,32780 +Dona Vista,FL,32784 +Winter Park,FL,32789 +Aloma,FL,32792 +Titusville,FL,32796 +Zellwood,FL,32798 +Orlando,FL,32801 +Orlando,FL,32803 +Fairvilla,FL,32804 +Orlando,FL,32805 +Orlando,FL,32806 +Azalea Park,FL,32807 +Pine Hills,FL,32808 +Pine Castle,FL,32809 +Lockhart,FL,32810 +Orlo Vista,FL,32811 +Orlando,FL,32812 +Naval Training C,FL,32813 +Kennedy Space Ce,FL,32815 +Union Park,FL,32817 +Orlando,FL,32818 +Sand Lake,FL,32819 +Union Park,FL,32820 +Orlando,FL,32821 +Ventura,FL,32822 +Orlando,FL,32824 +Orlando,FL,32825 +Orlando,FL,32826 +Orlando,FL,32827 +Orlando,FL,32828 +Orlando,FL,32829 +Lake Buena Vista,FL,32830 +Orlando,FL,32831 +Orlando,FL,32832 +Union Park,FL,32833 +Orlando,FL,32835 +Orlando,FL,32836 +Orlando,FL,32837 +Orlando,FL,32839 +Melbourne,FL,32901 +Indialantic,FL,32903 +Melbourne Villag,FL,32904 +Palm Bay,FL,32905 +Palm Bay,FL,32907 +Palm Bay,FL,32908 +Palm Bay,FL,32909 +Cape Canaveral,FL,32920 +Cocoa,FL,32922 +Patrick A F B,FL,32925 +Cocoa,FL,32926 +Port Saint John,FL,32927 +Cocoa Beach,FL,32931 +Eau Gallie,FL,32934 +Melbourne,FL,32935 +Indian Harbor Be,FL,32937 +Melbourne,FL,32940 +Fellsmere,FL,32948 +Melbourne Beach,FL,32951 +Merritt Island,FL,32952 +Merritt Island,FL,32953 +Rockledge,FL,32955 +Sebastian,FL,32958 +Vero Beach,FL,32960 +Vero Beach,FL,32962 +Indian River Sho,FL,32963 +Vero Beach,FL,32966 +Vero Beach,FL,32967 +Vero Beach,FL,32968 +Barefoot Bay,FL,32976 +Dania,FL,33004 +Hallandale,FL,33009 +Hialeah,FL,33010 +Hialeah,FL,33012 +Hialeah,FL,33013 +Hialeah,FL,33014 +Hialeah,FL,33015 +Hialeah,FL,33016 +Hollywood,FL,33019 +Hollywood,FL,33020 +Hollywood,FL,33021 +Miramar,FL,33023 +Pembroke Pines,FL,33024 +Hollywood,FL,33025 +Hollywood,FL,33026 +Hollywood,FL,33027 +Hollywood,FL,33028 +Pembroke Pines,FL,33029 +Homestead,FL,33030 +Homestead,FL,33031 +Princeton,FL,33032 +Homestead,FL,33033 +Florida City,FL,33034 +Homestead,FL,33035 +Islamorada,FL,33036 +Ocean Reef,FL,33037 +Homestead Air Fo,FL,33039 +Naval Air Statio,FL,33040 +Summerland Key,FL,33042 +Big Pine Key,FL,33043 +Marathon,FL,33050 +Opa Locka,FL,33054 +Carol City,FL,33055 +Carol City,FL,33056 +Pompano Beach,FL,33060 +Pompano Beach,FL,33062 +Margate,FL,33063 +Lighthouse Point,FL,33064 +Coral Springs,FL,33065 +Margate,FL,33066 +North Coral Spri,FL,33067 +Pompano Beach,FL,33068 +Pompano Beach,FL,33069 +Tavernier,FL,33070 +Pompano Beach,FL,33071 +Pompano Beach,FL,33073 +Pompano Beach,FL,33076 +Miami,FL,33122 +Miami,FL,33125 +Miami,FL,33126 +Miami,FL,33127 +Miami,FL,33128 +Miami,FL,33129 +Miami,FL,33130 +Miami,FL,33131 +Miami,FL,33132 +Coral Gables,FL,33133 +Coral Gables,FL,33134 +Miami,FL,33135 +Miami,FL,33136 +Miami,FL,33137 +Miami Shores,FL,33138 +Carl Fisher,FL,33139 +Miami,FL,33140 +North Bay Villag,FL,33141 +Miami,FL,33142 +South Miami,FL,33143 +Miami,FL,33144 +Coral Gables,FL,33145 +Coral Gables,FL,33146 +Miami,FL,33147 +Key Biscayne,FL,33149 +Miami,FL,33150 +Bal Harbour,FL,33154 +Miami,FL,33155 +Kendall,FL,33156 +Perrine,FL,33157 +Miami,FL,33158 +North Miami Beac,FL,33160 +North Miami,FL,33161 +North Miami Beac,FL,33162 +Olympia Heights,FL,33165 +Miami Springs,FL,33166 +Miami,FL,33167 +Miami,FL,33168 +Miami,FL,33169 +Quail Heights,FL,33170 +Miami,FL,33172 +Miami,FL,33173 +Miami,FL,33174 +Olympia Heights,FL,33175 +Miami,FL,33176 +Quail Heights,FL,33177 +Miami,FL,33178 +Miami,FL,33179 +Ojus,FL,33180 +North Miami Beac,FL,33181 +Miami,FL,33182 +Miami,FL,33183 +Miami,FL,33184 +Olympia Heights,FL,33185 +Miami,FL,33186 +Quail Heights,FL,33187 +Quail Heights,FL,33189 +Quail Heights,FL,33190 +Miami,FL,33193 +Miami,FL,33196 +Fort Lauderdale,FL,33301 +Oakland Park,FL,33304 +Oakland Park,FL,33305 +Oakland Park,FL,33306 +Oakland Park,FL,33308 +Fort Lauderdale,FL,33309 +Fort Lauderdale,FL,33311 +Fort Lauderdale,FL,33312 +City Of Sunrise,FL,33313 +Davie,FL,33314 +Fort Lauderdale,FL,33315 +Fort Lauderdale,FL,33316 +Plantation,FL,33317 +Tamarac,FL,33319 +Tamarac,FL,33321 +Sunrise,FL,33322 +Sunrise,FL,33323 +Plantation,FL,33324 +Davie,FL,33325 +Davie,FL,33326 +Fort Lauderdale,FL,33327 +Davie,FL,33328 +Davie,FL,33330 +Davie,FL,33331 +Davie,FL,33332 +Oakland Park,FL,33334 +Tamarac,FL,33351 +Fort Lauderdale,FL,33388 +West Palm Beach,FL,33401 +Lake Park,FL,33403 +Riviera Beach,FL,33404 +West Palm Beach,FL,33405 +Glen Ridge,FL,33406 +West Palm Beach,FL,33407 +North Palm Beach,FL,33408 +Haverhill,FL,33409 +Palm Beach Garde,FL,33410 +Royal Palm Beach,FL,33411 +West Palm Beach,FL,33412 +West Palm Beach,FL,33413 +West Palm Beach,FL,33414 +Haverhill,FL,33415 +Haverhill,FL,33417 +Palm Beach Garde,FL,33418 +Boynton Beach,FL,33426 +Boca Raton,FL,33428 +Belle Glade,FL,33430 +Boca Raton,FL,33431 +Boca Raton,FL,33432 +Boca Raton,FL,33433 +Boca Raton,FL,33434 +Briny Breezes,FL,33435 +Village Of Golf,FL,33436 +Boynton Beach,FL,33437 +Canal Point,FL,33438 +Clewiston,FL,33440 +Deerfield Beach,FL,33441 +Deerfield Beach,FL,33442 +Delray Beach,FL,33444 +Delray Beach,FL,33445 +Delray Beach,FL,33446 +Hobe Sound,FL,33455 +Jupiter,FL,33458 +Lake Worth,FL,33460 +Lake Worth,FL,33461 +Lantana,FL,33462 +Greenacres,FL,33463 +Lake Worth,FL,33467 +Tequesta,FL,33469 +Loxahatchee,FL,33470 +Moore Haven,FL,33471 +Pahokee,FL,33476 +Jupiter,FL,33477 +Jupiter,FL,33478 +Palm Beach,FL,33480 +Delray Beach,FL,33483 +Delray Beach,FL,33484 +Boca Raton,FL,33486 +Highland Beach,FL,33487 +South Bay,FL,33493 +Boca Raton,FL,33496 +Boca Raton,FL,33498 +Brandon,FL,33510 +Brandon,FL,33511 +Bushnell,FL,33513 +Center Hill,FL,33514 +Ridge Manor,FL,33525 +Dover,FL,33527 +Gibsonton,FL,33534 +Lake Panasoffkee,FL,33538 +Zephyrhills,FL,33540 +Zephyrhills,FL,33541 +Wesley Chapel,FL,33543 +Zephyrhills,FL,33544 +Lithia,FL,33547 +Lutz,FL,33549 +Odessa,FL,33556 +Plant City,FL,33565 +Plant City,FL,33566 +Plant City,FL,33567 +Riverview,FL,33569 +Ruskin,FL,33570 +Apollo Beach,FL,33572 +Sun City Center,FL,33573 +San Antonio,FL,33576 +Seffner,FL,33584 +Thonotosassa,FL,33592 +Valrico,FL,33594 +Ridge Manor Esta,FL,33597 +Wimauma,FL,33598 +Tampa,FL,33602 +Tampa,FL,33603 +Tampa,FL,33604 +Tampa,FL,33605 +Tampa,FL,33606 +Tampa,FL,33607 +Tampa,FL,33608 +Tampa,FL,33609 +Tampa,FL,33610 +Tampa,FL,33611 +Tampa,FL,33612 +Tampa,FL,33613 +Tampa,FL,33614 +Tampa,FL,33615 +Tampa,FL,33616 +Tampa,FL,33617 +Carrollwood,FL,33618 +Tampa,FL,33619 +Tampa,FL,33620 +Carrollwood,FL,33624 +Tampa,FL,33625 +Tampa,FL,33626 +Tampa,FL,33629 +Tampa,FL,33634 +Tampa,FL,33635 +Tampa,FL,33637 +Tampa,FL,33647 +Saint Petersburg,FL,33701 +Saint Petersburg,FL,33702 +Saint Petersburg,FL,33703 +Saint Petersburg,FL,33704 +Saint Petersburg,FL,33705 +Saint Petersburg,FL,33706 +Saint Petersburg,FL,33707 +Madeira Beach,FL,33708 +Kenneth City,FL,33709 +Saint Petersburg,FL,33710 +Saint Petersburg,FL,33711 +Saint Petersburg,FL,33712 +Saint Petersburg,FL,33713 +Saint Petersburg,FL,33714 +Tierra Verde,FL,33715 +Saint Petersburg,FL,33716 +Lakeland,FL,33801 +Lakeland,FL,33803 +Lakeland,FL,33805 +Lakeland,FL,33809 +Southside,FL,33811 +Southside,FL,33813 +Arcadia,FL,33821 +Auburndale,FL,33823 +Avon Park,FL,33825 +Babson Park,FL,33827 +Bartow,FL,33830 +Duette,FL,33834 +Davenport,FL,33837 +Dundee,FL,33838 +Eagle Lake,FL,33839 +Fort Meade,FL,33841 +Frostproof,FL,33843 +Grenelefe,FL,33844 +Kathleen,FL,33849 +Lake Alfred,FL,33850 +Lake Placid,FL,33852 +Lake Wales,FL,33853 +Lorida,FL,33857 +Mulberry,FL,33860 +Ona,FL,33865 +Polk City,FL,33868 +Sebring,FL,33870 +Sebring,FL,33872 +Wauchula,FL,33873 +Eloise,FL,33880 +Winter Haven,FL,33881 +Cypress Gardens,FL,33884 +Zolfo Springs,FL,33890 +Fort Myers,FL,33901 +Fort Myers,FL,33903 +Cape Coral Centr,FL,33904 +Tice,FL,33905 +Fort Myers,FL,33907 +Fort Myers,FL,33908 +Cape Coral Centr,FL,33909 +Fort Myers,FL,33912 +Fort Myers,FL,33913 +Cape Coral Centr,FL,33914 +Fort Myers,FL,33916 +Fort Myers,FL,33917 +College Parkway,FL,33919 +Alva,FL,33920 +Bokeelia,FL,33922 +Bonita Springs,FL,33923 +Captiva,FL,33924 +El Jobean,FL,33927 +Estero,FL,33928 +Fort Myers Beach,FL,33931 +Immokalee,FL,33934 +Labelle,FL,33935 +Lehigh Acres,FL,33936 +Marco Island,FL,33937 +Naples,FL,33940 +Naples,FL,33942 +Ochopee,FL,33943 +Placida,FL,33946 +Placida,FL,33947 +Port Charlotte,FL,33948 +Punta Gorda,FL,33950 +Port Charlotte,FL,33952 +Port Charlotte,FL,33953 +Port Charlotte,FL,33954 +Punta Gorda,FL,33955 +Saint James City,FL,33956 +Sanibel,FL,33957 +Venus,FL,33960 +Naples,FL,33961 +Naples,FL,33962 +Naples,FL,33963 +Naples,FL,33964 +Lehigh Acres,FL,33971 +Port Charlotte,FL,33980 +Port Charlotte,FL,33981 +Punta Gorda,FL,33982 +Punta Gorda,FL,33983 +Cape Coral Centr,FL,33990 +Cape Coral Centr,FL,33991 +Naples,FL,33999 +Braden River,FL,34202 +Braden River,FL,34203 +Westgate,FL,34205 +College Plaza,FL,34207 +Braden River,FL,34208 +Palma Sola,FL,34209 +Bradenton,FL,34210 +Cortez,FL,34215 +Bradenton Beach,FL,34217 +Parrish,FL,34219 +Palmetto,FL,34221 +Ellenton,FL,34222 +Englewood,FL,34223 +Grove City,FL,34224 +Whitney Beach,FL,34228 +Osprey,FL,34229 +South Trail,FL,34231 +Forest Lakes,FL,34232 +Sarasota,FL,34233 +Meadows Village,FL,34234 +Sarasota,FL,34235 +Sarasota,FL,34236 +Sarasota,FL,34237 +Sarasota Square,FL,34238 +Sarasota,FL,34239 +Sarasota,FL,34240 +Sarasota,FL,34241 +Crescent Beach,FL,34242 +Sarasota,FL,34243 +Myakka City,FL,34251 +Nokomis,FL,34275 +Venice,FL,34285 +North Port,FL,34287 +Mid Venice,FL,34292 +South Venice,FL,34293 +Brooksville,FL,34601 +Ridge Manor West,FL,34602 +Spring Hill,FL,34606 +Spring Hill,FL,34607 +Spring Hill,FL,34608 +Spring Hill,FL,34609 +Shady Hills,FL,34610 +Brooksville,FL,34613 +Brooksville,FL,34614 +Clearwater,FL,34615 +Clearwater,FL,34616 +Clearwater,FL,34619 +Clearwater,FL,34620 +Clearwater,FL,34621 +Airport,FL,34622 +Clearwater,FL,34623 +Clearwater,FL,34624 +Clearwater,FL,34625 +Clearwater,FL,34630 +Belleair Beach,FL,34635 +Land O Lakes,FL,34639 +Belleair Bluffs,FL,34640 +Largo,FL,34641 +Seminole,FL,34642 +Largo,FL,34643 +Largo,FL,34644 +Largo,FL,34646 +Largo,FL,34647 +Largo,FL,34648 +New Port Richey,FL,34652 +New Port Richey,FL,34653 +New Port Richey,FL,34654 +New Port Richey,FL,34655 +Pinellas Park,FL,34665 +Pinellas Park,FL,34666 +Hudson,FL,34667 +Port Richey,FL,34668 +Hudson,FL,34669 +Oldsmar,FL,34677 +Palm Harbor,FL,34683 +Lake Tarpon,FL,34684 +Palm Harbor,FL,34685 +Tarpon Springs,FL,34689 +Holiday,FL,34690 +Holiday,FL,34691 +Safety Harbor,FL,34695 +Dunedin,FL,34698 +Astatula,FL,34705 +Clermont,FL,34711 +Fruitland Park,FL,34731 +Groveland,FL,34736 +Howey In The Hil,FL,34737 +Kenansville,FL,34739 +Kissimmee,FL,34741 +Buena Ventura La,FL,34743 +Kissimmee,FL,34744 +Kissimmee,FL,34746 +Leesburg,FL,34748 +Montverde,FL,34756 +Kissimmee,FL,34758 +Poinciana,FL,34759 +Ocoee,FL,34761 +Okahumpka,FL,34762 +Saint Cloud,FL,34769 +Saint Cloud,FL,34771 +Saint Cloud,FL,34772 +Saint Cloud,FL,34773 +Wildwood,FL,34785 +Windermere,FL,34786 +Winter Garden,FL,34787 +Haines Creek,FL,34788 +Yalaha,FL,34797 +Fort Pierce,FL,34945 +Fort Pierce,FL,34946 +Fort Pierce,FL,34947 +Fort Pierce,FL,34949 +Fort Pierce,FL,34950 +Fort Pierce,FL,34951 +Port Saint Lucie,FL,34952 +Port Saint Lucie,FL,34953 +Indiantown,FL,34956 +Jensen Beach,FL,34957 +Basinger,FL,34972 +Okeechobee,FL,34974 +Fort Pierce,FL,34981 +Fort Pierce,FL,34982 +Port Saint Lucie,FL,34983 +Port Saint Lucie,FL,34984 +Port Saint Lucie,FL,34986 +Port Saint Lucie,FL,34987 +Port Saint Lucie,FL,34988 +Palm City,FL,34990 +Stuart,FL,34994 +Stuart,FL,34996 +Stuart,FL,34997 +Austell,GA,30001 +Avondale Estates,GA,30002 +Clarkston,GA,30021 +Conley,GA,30027 +Decatur,GA,30030 +Decatur,GA,30032 +Decatur,GA,30033 +Decatur,GA,30034 +Decatur,GA,30035 +Lithonia,GA,30038 +Ellenwood,GA,30049 +Forest Park,GA,30050 +Lithia Springs,GA,30057 +Centerville Gwin,GA,30058 +Mableton,GA,30059 +Marietta,GA,30060 +Marietta,GA,30062 +Marietta,GA,30064 +Marietta,GA,30066 +Marietta,GA,30067 +Marietta,GA,30068 +Norcross,GA,30071 +Powder Springs,GA,30073 +Roswell,GA,30075 +Roswell,GA,30076 +Scottdale,GA,30079 +Smyrna,GA,30080 +Smyrna,GA,30082 +Stone Mountain,GA,30083 +Tucker,GA,30084 +Stone Mountain,GA,30087 +Stone Mountain,GA,30088 +Norcross,GA,30092 +Norcross,GA,30093 +Acworth,GA,30101 +Adairsville,GA,30103 +Aragon,GA,30104 +Armuchee,GA,30105 +Ball Ground,GA,30107 +Bowdon,GA,30108 +Bremen,GA,30110 +Buchanan,GA,30113 +Canton,GA,30114 +Carrollton,GA,30117 +Cartersville,GA,30120 +Cave Spring,GA,30124 +Cedartown,GA,30125 +Cumming,GA,30130 +Dallas,GA,30132 +Douglasville,GA,30134 +Douglasville,GA,30135 +Duluth,GA,30136 +Emerson,GA,30137 +Fairmount,GA,30139 +Felton,GA,30140 +Hiram,GA,30141 +Jasper,GA,30143 +Kennesaw,GA,30144 +Kingston,GA,30145 +Lindale,GA,30147 +Marble Hill,GA,30148 +Rockmart,GA,30153 +Rome,GA,30161 +Rome,GA,30165 +Roopville,GA,30170 +Pine Log,GA,30171 +Silver Creek,GA,30173 +Suwanee,GA,30174 +Talking Rock,GA,30175 +Tallapoosa,GA,30176 +Tate,GA,30177 +Taylorsville,GA,30178 +Temple,GA,30179 +Villa Rica,GA,30180 +Waco,GA,30182 +Waleska,GA,30183 +White,GA,30184 +Whitesburg,GA,30185 +Winston,GA,30187 +Woodstock,GA,30188 +Alpharetta,GA,30201 +Alpharetta,GA,30202 +Auburn,GA,30203 +Barnesville,GA,30204 +Brooks,GA,30205 +Concord,GA,30206 +Conyers,GA,30207 +Conyers,GA,30208 +Starrsville,GA,30209 +Dacula,GA,30211 +Fairburn,GA,30213 +Woolsey,GA,30214 +Flovilla,GA,30216 +Glenn,GA,30217 +Alvaton,GA,30218 +Grantville,GA,30220 +Grayson,GA,30221 +Stovall,GA,30222 +Griffin,GA,30223 +Hampton,GA,30228 +Hogansville,GA,30230 +Jackson,GA,30233 +Jenkinsburg,GA,30234 +Jonesboro,GA,30236 +La Grange,GA,30240 +Lawrenceville,GA,30243 +Lawrenceville,GA,30244 +Lawrenceville,GA,30245 +Lilburn,GA,30247 +Locust Grove,GA,30248 +Loganville,GA,30249 +Luthersville,GA,30251 +Mc Donough,GA,30253 +Mansfield,GA,30255 +Meansville,GA,30256 +Milner,GA,30257 +Molena,GA,30258 +Moreland,GA,30259 +Morrow,GA,30260 +Newborn,GA,30262 +Raymond,GA,30263 +Newnan,GA,30265 +Oxford,GA,30267 +Palmetto,GA,30268 +Peachtree City,GA,30269 +Rex,GA,30273 +Riverdale,GA,30274 +Senoia,GA,30276 +Sharpsburg,GA,30277 +Snellville,GA,30278 +Social Circle,GA,30279 +Stockbridge,GA,30281 +The Rock,GA,30285 +Thomaston,GA,30286 +Tyrone,GA,30290 +Union City,GA,30291 +Williamson,GA,30292 +Woodbury,GA,30293 +Zebulon,GA,30295 +Riverdale,GA,30296 +Atlanta,GA,30303 +Atlanta,GA,30305 +Atlanta,GA,30306 +Atlanta,GA,30307 +Atlanta,GA,30308 +Atlanta,GA,30309 +Atlanta,GA,30310 +Atlanta,GA,30311 +Atlanta,GA,30312 +Atlanta,GA,30313 +Atlanta,GA,30314 +Atlanta,GA,30315 +Atlanta,GA,30316 +Atlanta,GA,30317 +Atlanta,GA,30318 +Atlanta,GA,30319 +Atlanta,GA,30324 +Atlanta,GA,30326 +Atlanta,GA,30327 +Sandy Springs,GA,30328 +Atlanta,GA,30329 +Atlanta,GA,30330 +Atlanta,GA,30331 +Atlanta,GA,30334 +Atlanta,GA,30336 +College Park,GA,30337 +Dunwoody,GA,30338 +Atlanta,GA,30339 +Doraville,GA,30340 +Chamblee,GA,30341 +Atlanta,GA,30342 +East Point,GA,30344 +Atlanta,GA,30345 +Atlanta,GA,30346 +Atlanta,GA,30349 +Atlanta,GA,30350 +Hapeville,GA,30354 +Atlanta,GA,30360 +Oak Park,GA,30401 +Ailey,GA,30410 +Alamo,GA,30411 +Bartow,GA,30413 +Brooklet,GA,30415 +Claxton,GA,30417 +Cobbtown,GA,30420 +Collins,GA,30421 +Garfield,GA,30425 +Girard,GA,30426 +Glennville,GA,30427 +Glenwood,GA,30428 +Louisville,GA,30434 +Lyons,GA,30436 +Manassas,GA,30438 +Metter,GA,30439 +Midville,GA,30441 +Millen,GA,30442 +Mount Vernon,GA,30445 +Newington,GA,30446 +Portal,GA,30450 +Register,GA,30452 +Reidsville,GA,30453 +Rockledge,GA,30454 +Rocky Ford,GA,30455 +Sardis,GA,30456 +Soperton,GA,30457 +Statesboro,GA,30458 +Hiltonia,GA,30467 +Tarrytown,GA,30470 +Twin City,GA,30471 +Uvalda,GA,30473 +Vidalia,GA,30474 +Wadley,GA,30477 +Gainesville,GA,30501 +Gainesville,GA,30504 +Gainesville,GA,30506 +Gainesville,GA,30507 +Alto,GA,30510 +Baldwin,GA,30511 +Blairsville,GA,30512 +Blue Ridge,GA,30513 +Bowersville,GA,30516 +Braselton,GA,30517 +Buford,GA,30518 +Canon,GA,30520 +Carnesville,GA,30521 +Cherrylog,GA,30522 +Clarkesville,GA,30523 +Clayton,GA,30525 +Clermont,GA,30527 +Cleveland,GA,30528 +Commerce,GA,30529 +Cornelia,GA,30531 +Dahlonega,GA,30533 +Juno,GA,30534 +Demorest,GA,30535 +Sky Valley,GA,30537 +Eastanollee,GA,30538 +East Ellijay,GA,30539 +Ellijay,GA,30540 +Epworth,GA,30541 +Flowery Branch,GA,30542 +Gillsville,GA,30543 +Helen,GA,30545 +Hiawassee,GA,30546 +Homer,GA,30547 +Hoschton,GA,30548 +Jefferson,GA,30549 +Lakemont,GA,30552 +Lavonia,GA,30553 +Lula,GA,30554 +Mc Caysville,GA,30555 +Martin,GA,30557 +Maysville,GA,30558 +Mineral Bluff,GA,30559 +Morganton,GA,30560 +Mount Airy,GA,30563 +Murrayville,GA,30564 +Nicholson,GA,30565 +Oakwood,GA,30566 +Pendergrass,GA,30567 +Rabun Gap,GA,30568 +Sautee Nacoochee,GA,30571 +Suches,GA,30572 +Talmo,GA,30575 +Tiger,GA,30576 +Toccoa,GA,30577 +Young Harris,GA,30582 +Athens,GA,30601 +Athens,GA,30605 +Athens,GA,30606 +Athens,GA,30607 +Arnoldsville,GA,30619 +Bethlehem,GA,30620 +Bishop,GA,30621 +Bogart,GA,30622 +Bowman,GA,30624 +Buckhead,GA,30625 +Carlton,GA,30627 +Colbert,GA,30628 +Comer,GA,30629 +Crawford,GA,30630 +Crawfordville,GA,30631 +Danielsville,GA,30633 +Dewy Rose,GA,30634 +Elberton,GA,30635 +Good Hope,GA,30641 +Greensboro,GA,30642 +Hartwell,GA,30643 +Hull,GA,30646 +Lexington,GA,30648 +Madison,GA,30650 +Monroe,GA,30655 +Philomath,GA,30660 +Royston,GA,30662 +Rutledge,GA,30663 +Statham,GA,30666 +Stephens,GA,30667 +Danburg,GA,30668 +Union Point,GA,30669 +Washington,GA,30673 +Watkinsville,GA,30677 +White Plains,GA,30678 +Winder,GA,30680 +Winterville,GA,30683 +Calhoun,GA,30701 +Chatsworth,GA,30705 +Chickamauga,GA,30707 +Cisco,GA,30708 +Cohutta,GA,30710 +Crandall,GA,30711 +Dalton,GA,30720 +Dalton,GA,30721 +Flintstone,GA,30725 +La Fayette,GA,30728 +Lyerly,GA,30730 +Cloudland,GA,30731 +Plainville,GA,30733 +Ranger,GA,30734 +Hill City,GA,30735 +Ringgold,GA,30736 +Rising Fawn,GA,30738 +Rock Spring,GA,30739 +Rocky Face,GA,30740 +Rossville,GA,30741 +Fort Oglethorpe,GA,30742 +Sugar Valley,GA,30746 +Summerville,GA,30747 +Lookout Mountain,GA,30750 +Trenton,GA,30752 +Trion,GA,30753 +Tunnel Hill,GA,30755 +Wildwood,GA,30757 +Appling,GA,30802 +Avera,GA,30803 +Blythe,GA,30805 +Dearing,GA,30808 +Evans,GA,30809 +Gibson,GA,30810 +Grovetown,GA,30813 +Harlem,GA,30814 +Hephzibah,GA,30815 +Keysville,GA,30816 +Lincolnton,GA,30817 +Matthews,GA,30818 +Mitchell,GA,30820 +Norwood,GA,30821 +Perkins,GA,30822 +Stapleton,GA,30823 +Thomson,GA,30824 +Warrenton,GA,30828 +Waynesboro,GA,30830 +Wrens,GA,30833 +Augusta,GA,30901 +Augusta,GA,30904 +Fort Gordon,GA,30905 +Peach Orchard,GA,30906 +Martinez,GA,30907 +Forest Hills,GA,30909 +Abbeville,GA,31001 +Adrian,GA,31002 +Allentown,GA,31003 +Bonaire,GA,31005 +Butler,GA,31006 +Byromville,GA,31007 +Powersville,GA,31008 +Cadwell,GA,31009 +Chauncey,GA,31011 +Chester,GA,31012 +Cochran,GA,31014 +Cordele,GA,31015 +Culloden,GA,31016 +Danville,GA,31017 +Davisboro,GA,31018 +Dexter,GA,31019 +Dry Branch,GA,31020 +East Dublin,GA,31021 +Dudley,GA,31022 +Eastman,GA,31023 +Eatonton,GA,31024 +Elko,GA,31025 +Centerville,GA,31028 +Forsyth,GA,31029 +Fort Valley,GA,31030 +Stevens Pottery,GA,31031 +Gray,GA,31032 +Haddock,GA,31033 +Harrison,GA,31035 +Hawkinsville,GA,31036 +Helena,GA,31037 +Round Oak,GA,31038 +Ideal,GA,31041 +Irwinton,GA,31042 +Jeffersonville,GA,31044 +Jewell,GA,31045 +Juliette,GA,31046 +Kathleen,GA,31047 +Kite,GA,31049 +Knoxville,GA,31050 +Lizella,GA,31052 +Mc Intyre,GA,31054 +Mc Rae,GA,31055 +Marshallville,GA,31057 +Mauk,GA,31058 +Milan,GA,31060 +Milledgeville,GA,31061 +Montezuma,GA,31063 +Monticello,GA,31064 +Montrose,GA,31065 +Musella,GA,31066 +Oglethorpe,GA,31068 +Perry,GA,31069 +Pinehurst,GA,31070 +Pineview,GA,31071 +Pitts,GA,31072 +Rentz,GA,31075 +Reynolds,GA,31076 +Rhine,GA,31077 +Roberta,GA,31078 +Rochelle,GA,31079 +Rupert,GA,31081 +Deepstep,GA,31082 +Shady Dale,GA,31085 +Devereux,GA,31087 +Warner Robins,GA,31088 +Tennille,GA,31089 +Toomsboro,GA,31090 +Unadilla,GA,31091 +Vienna,GA,31092 +Warner Robins,GA,31093 +Warthen,GA,31094 +Wrightsville,GA,31096 +Yatesville,GA,31097 +Robins A F B,GA,31098 +Huber,GA,31201 +Macon,GA,31204 +Wilson Airport,GA,31206 +Macon,GA,31210 +Macon,GA,31211 +Allenhurst,GA,31301 +Bloomingdale,GA,31302 +Clyo,GA,31303 +Crescent,GA,31304 +Darien,GA,31305 +Ellabell,GA,31308 +Fleming,GA,31309 +Guyton,GA,31312 +Hinesville,GA,31313 +Fort Stewart,GA,31314 +Ludowici,GA,31316 +Meridian,GA,31319 +Midway,GA,31320 +Pembroke,GA,31321 +Pooler,GA,31322 +Riceboro,GA,31323 +Richmond Hill,GA,31324 +Rincon,GA,31326 +Sapelo Island,GA,31327 +Tybee Island,GA,31328 +Stillwell,GA,31329 +Townsend,GA,31331 +Savannah,GA,31401 +State College,GA,31404 +Savannah,GA,31405 +Savannah,GA,31406 +Port Wentworth,GA,31407 +Garden City,GA,31408 +Savannah,GA,31409 +Savannah,GA,31410 +Savannah,GA,31411 +M M,GA,31419 +Okefenokee,GA,31501 +Alma,GA,31510 +Ambrose,GA,31512 +Baxley,GA,31513 +Blackshear,GA,31516 +Bristol,GA,31518 +Broxton,GA,31519 +Glynco,GA,31520 +Saint Simons Isl,GA,31522 +Brunswick,GA,31525 +Jekyll Island,GA,31527 +Denton,GA,31532 +Douglas,GA,31533 +Folkston,GA,31537 +Hazlehurst,GA,31539 +Hoboken,GA,31542 +Hortense,GA,31543 +Jacksonville,GA,31544 +Jesup,GA,31545 +Kingsland,GA,31548 +Lumber City,GA,31549 +Manor,GA,31550 +Mershon,GA,31551 +Millwood,GA,31552 +Nahunta,GA,31553 +Nicholls,GA,31554 +Odum,GA,31555 +Patterson,GA,31557 +Saint Marys,GA,31558 +Screven,GA,31560 +Surrency,GA,31563 +Waverly,GA,31565 +Waynesville,GA,31566 +West Green,GA,31567 +White Oak,GA,31568 +Woodbine,GA,31569 +Clyattville,GA,31601 +Bemiss,GA,31602 +Adel,GA,31620 +Alapaha,GA,31622 +Axson,GA,31624 +Barney,GA,31625 +Boston,GA,31626 +Dixie,GA,31629 +Du Pont,GA,31630 +Fargo,GA,31631 +Hahira,GA,31632 +Cogdell,GA,31634 +Lakeland,GA,31635 +Lake Park,GA,31636 +Lenox,GA,31637 +Morven,GA,31638 +Nashville,GA,31639 +Naylor,GA,31641 +Pearson,GA,31642 +Quitman,GA,31643 +Ray City,GA,31645 +Saint George,GA,31646 +Sparks,GA,31647 +Statenville,GA,31648 +Stockton,GA,31649 +Willacoochee,GA,31650 +Albany,GA,31701 +Marine Corps Log,GA,31704 +Bridgeboro,GA,31705 +Albany,GA,31707 +Georgia Southwes,GA,31709 +Andersonville,GA,31711 +Arabi,GA,31712 +Arlington,GA,31713 +Ashburn,GA,31714 +Attapulgus,GA,31715 +Baconton,GA,31716 +Bainbridge,GA,31717 +Blakely,GA,31723 +Bluffton,GA,31724 +Brinson,GA,31725 +Bronwood,GA,31726 +Cairo,GA,31728 +Calvary,GA,31729 +Camilla,GA,31730 +Chula,GA,31733 +Climax,GA,31734 +Cobb,GA,31735 +Coleman,GA,31736 +Colquitt,GA,31737 +Coolidge,GA,31738 +Cuthbert,GA,31740 +Damascus,GA,31741 +Graves,GA,31742 +De Soto,GA,31743 +Doerun,GA,31744 +Donalsonville,GA,31745 +Edison,GA,31746 +Enigma,GA,31749 +Fitzgerald,GA,31750 +Fort Gaines,GA,31751 +Georgetown,GA,31754 +Hartsfield,GA,31756 +Iron City,GA,31759 +Irwinville,GA,31760 +Jakin,GA,31761 +Leary,GA,31762 +Leesburg,GA,31763 +Leslie,GA,31764 +Meigs,GA,31765 +Morgan,GA,31766 +Springvale,GA,31767 +Moultrie,GA,31768 +Newton,GA,31770 +Norman Park,GA,31771 +Oakfield,GA,31772 +Ochlocknee,GA,31773 +Ocilla,GA,31774 +Omega,GA,31775 +Parrott,GA,31777 +Pavo,GA,31778 +Pelham,GA,31779 +Plains,GA,31780 +Poulan,GA,31781 +Rebecca,GA,31783 +Sale City,GA,31784 +Shellman,GA,31786 +Smithville,GA,31787 +Sumner,GA,31789 +Sycamore,GA,31790 +Sylvester,GA,31791 +Thomasville,GA,31792 +Abac,GA,31794 +Ty Ty,GA,31795 +Warwick,GA,31796 +Whigham,GA,31797 +Wray,GA,31798 +Juniper,GA,31801 +Tazewell,GA,31803 +Cataula,GA,31804 +Cusseta,GA,31805 +Ellaville,GA,31806 +Ellerslie,GA,31807 +Fortson,GA,31808 +Hamilton,GA,31811 +Junction City,GA,31812 +Lumpkin,GA,31815 +Manchester,GA,31816 +Midland,GA,31820 +Omaha,GA,31821 +Pine Mountain,GA,31822 +Pine Mountain Va,GA,31823 +Preston,GA,31824 +Richland,GA,31825 +Shiloh,GA,31826 +Talbotton,GA,31827 +Upatoi,GA,31829 +Warm Springs,GA,31830 +Waverly Hall,GA,31831 +Weston,GA,31832 +West Point,GA,31833 +Woodland,GA,31836 +Columbus,GA,31901 +Columbus,GA,31903 +Columbus,GA,31904 +Custer Terrace,GA,31905 +Columbus,GA,31906 +Columbus,GA,31907 +Columbus,GA,31909 +Pinetta,GA,32350 +Aiea,HI,96701 +Captain Cook,HI,96704 +Eleele,HI,96705 +Ewa Beach,HI,96706 +Kapolei,HI,96707 +Haiku,HI,96708 +Hakalau,HI,96710 +Haleiwa,HI,96712 +Hana,HI,96713 +Hanapepe,HI,96716 +Hauula,HI,96717 +Hawaii National,HI,96718 +Hawi,HI,96719 +Hilo,HI,96720 +Princeville,HI,96722 +Holualoa,HI,96725 +Honaunau,HI,96726 +Honokaa,HI,96727 +Honomu,HI,96728 +Hoolehua,HI,96729 +Kaaawa,HI,96730 +Kahului,HI,96732 +Kailua,HI,96734 +Kailua Kona,HI,96740 +Kalaupapa,HI,96742 +Kamuela,HI,96743 +Kaneohe,HI,96744 +Kapaa,HI,96746 +Kaumakani,HI,96747 +Kaunakakai,HI,96748 +Keaau,HI,96749 +Kealakekua,HI,96750 +Kekaha,HI,96752 +Kihei,HI,96753 +Kapaau,HI,96755 +Koloa,HI,96756 +Kualapuu,HI,96757 +Kurtistown,HI,96760 +Lahaina,HI,96761 +Laie,HI,96762 +Lanai City,HI,96763 +Laupahoehoe,HI,96764 +Lihue,HI,96766 +Makawao,HI,96768 +Makaweli,HI,96769 +Maunaloa,HI,96770 +Mountain View,HI,96771 +Naalehu,HI,96772 +Ninole,HI,96773 +Ookala,HI,96774 +Paauhau,HI,96775 +Paauilo,HI,96776 +Pahala,HI,96777 +Pahoa,HI,96778 +Paia,HI,96779 +Papaaloa,HI,96780 +Papaikou,HI,96781 +Pearl City,HI,96782 +Pepeekeo,HI,96783 +Volcano,HI,96785 +Wahiawa,HI,96786 +Mililani,HI,96789 +Kula,HI,96790 +Waialua,HI,96791 +Waianae,HI,96792 +Wailuku,HI,96793 +Waimanalo,HI,96795 +Waimea,HI,96796 +Waipahu,HI,96797 +Honolulu,HI,96813 +Honolulu,HI,96814 +Honolulu,HI,96815 +Honolulu,HI,96816 +Honolulu,HI,96817 +Honolulu,HI,96818 +Honolulu,HI,96819 +Honolulu,HI,96821 +Honolulu,HI,96822 +Honolulu,HI,96825 +Honolulu,HI,96826 +Pocatello,ID,83201 +Chubbuck,ID,83202 +Fort Hall,ID,83203 +Pocatello,ID,83204 +Sterling,ID,83210 +American Falls,ID,83211 +Arbon,ID,83212 +Arco,ID,83213 +Arimo,ID,83214 +Bancroft,ID,83217 +Bern,ID,83220 +Blackfoot,ID,83221 +Challis,ID,83226 +Clayton,ID,83227 +Clifton,ID,83228 +Conda,ID,83230 +Darlington,ID,83231 +Dayton,ID,83232 +Downey,ID,83234 +Ellis,ID,83235 +Firth,ID,83236 +Franklin,ID,83237 +Geneva,ID,83238 +Grace,ID,83241 +Holbrook,ID,83243 +Inkom,ID,83245 +Lava Hot Springs,ID,83246 +Mc Cammon,ID,83250 +Mackay,ID,83251 +Malad City,ID,83252 +Patterson,ID,83253 +Montpelier,ID,83254 +Moore,ID,83255 +Ovid,ID,83260 +Paris,ID,83261 +Pingree,ID,83262 +Preston,ID,83263 +Rockland,ID,83271 +Saint Charles,ID,83272 +Shelley,ID,83274 +Soda Springs,ID,83276 +Stanley,ID,83278 +Stone,ID,83280 +Thatcher,ID,83283 +Wayan,ID,83285 +Weston,ID,83286 +Fish Haven,ID,83287 +Twin Falls,ID,83301 +Rogerson,ID,83302 +Bellevue,ID,83313 +Bliss,ID,83314 +Buhl,ID,83316 +Burley,ID,83318 +Carey,ID,83320 +Castleford,ID,83321 +Corral,ID,83322 +Declo,ID,83323 +Dietrich,ID,83324 +Eden,ID,83325 +Elba,ID,83326 +Fairfield,ID,83327 +Filer,ID,83328 +Gooding,ID,83330 +Hagerman,ID,83332 +Hailey,ID,83333 +Hansen,ID,83334 +Hazelton,ID,83335 +Heyburn,ID,83336 +Jerome,ID,83338 +Obsidian,ID,83340 +Kimberly,ID,83341 +Naf,ID,83342 +Minidoka,ID,83343 +Murtaugh,ID,83344 +Oakley,ID,83346 +Paul,ID,83347 +Picabo,ID,83348 +Richfield,ID,83349 +Acequia,ID,83350 +Shoshone,ID,83352 +Wendell,ID,83355 +Ammon,ID,83401 +Idaho Falls,ID,83402 +Idaho Falls,ID,83404 +Idaho Falls,ID,83406 +Ashton,ID,83420 +Driggs,ID,83422 +Dubois,ID,83423 +Felt,ID,83424 +Hamer,ID,83425 +Iona,ID,83427 +Island Park,ID,83429 +Lewisville,ID,83431 +Menan,ID,83434 +Monteview,ID,83435 +Newdale,ID,83436 +Rexburg,ID,83440 +Rigby,ID,83442 +Ririe,ID,83443 +Roberts,ID,83444 +Saint Anthony,ID,83445 +Spencer,ID,83446 +Sugar City,ID,83448 +Swan Valley,ID,83449 +Terreton,ID,83450 +Teton,ID,83451 +Tetonia,ID,83452 +Victor,ID,83455 +Carmen,ID,83462 +Gibbonsville,ID,83463 +Leadore,ID,83464 +North Fork,ID,83466 +Salmon,ID,83467 +Shoup,ID,83469 +South Gate Plaza,ID,83501 +Ahsahka,ID,83520 +Cottonwood,ID,83522 +Craigmont,ID,83523 +Culdesac,ID,83524 +Dixie,ID,83525 +Ferdinand,ID,83526 +Grangeville,ID,83530 +Greencreek,ID,83533 +Juliaetta,ID,83535 +Kamiah,ID,83536 +Kendrick,ID,83537 +Keuterville,ID,83538 +Clearwater,ID,83539 +Lapwai,ID,83540 +Lenore,ID,83541 +Lucile,ID,83542 +Nezperce,ID,83543 +Orofino,ID,83544 +Peck,ID,83545 +Pierce,ID,83546 +Pollock,ID,83547 +Reubens,ID,83548 +Riggins,ID,83549 +Weippe,ID,83553 +White Bird,ID,83554 +Winchester,ID,83555 +Atlanta,ID,83601 +Banks,ID,83602 +Grasmere,ID,83604 +Caldwell,ID,83605 +Cambridge,ID,83610 +West Mountain,ID,83611 +Council,ID,83612 +Donnelly,ID,83615 +Eagle,ID,83616 +Montour,ID,83617 +Fruitland,ID,83619 +Garden Valley,ID,83622 +Glenns Ferry,ID,83623 +Grand View,ID,83624 +Hammett,ID,83627 +Homedale,ID,83628 +Horseshoe Bend,ID,83629 +Idaho City,ID,83631 +Indian Valley,ID,83632 +King Hill,ID,83633 +Kuna,ID,83634 +Letha,ID,83636 +Lowman,ID,83637 +Mc Call,ID,83638 +Marsing,ID,83639 +Melba,ID,83641 +Meridian,ID,83642 +Mesa,ID,83643 +Middleton,ID,83644 +Midvale,ID,83645 +Mountain Home,ID,83647 +Mountain Home A,ID,83648 +Oreana,ID,83650 +Nampa,ID,83651 +New Meadows,ID,83654 +New Plymouth,ID,83655 +Ola,ID,83657 +Parma,ID,83660 +Payette,ID,83661 +Star,ID,83669 +Sweet,ID,83670 +Weiser,ID,83672 +Wilder,ID,83676 +Yellow Pine,ID,83677 +Nampa,ID,83686 +Nampa,ID,83687 +Boise,ID,83702 +Boise,ID,83703 +Boise,ID,83704 +Boise,ID,83705 +Boise,ID,83706 +Boise,ID,83709 +Boise,ID,83712 +Garden City,ID,83714 +Athol,ID,83801 +Avery,ID,83802 +Bayview,ID,83803 +Blanchard,ID,83804 +Bonners Ferry,ID,83805 +Calder,ID,83808 +Careywood,ID,83809 +Cataldo,ID,83810 +Clark Fork,ID,83811 +Clarkia,ID,83812 +Cocolalla,ID,83813 +Coeur D Alene,ID,83814 +Coolin,ID,83821 +Old Town,ID,83822 +Deary,ID,83823 +Desmet,ID,83824 +Elk River,ID,83827 +Fernwood,ID,83830 +Genesee,ID,83832 +Harrison,ID,83833 +Harvard,ID,83834 +Hayden Lake,ID,83835 +Hope,ID,83836 +Kellogg,ID,83837 +Kingston,ID,83839 +Medimont,ID,83842 +Moscow,ID,83843 +Moyie Springs,ID,83845 +Mullan,ID,83846 +Naples,ID,83847 +Nordman,ID,83848 +Pinehurst,ID,83850 +Plummer,ID,83851 +Porthill,ID,83853 +Post Falls,ID,83854 +Potlatch,ID,83855 +Priest River,ID,83856 +Princeton,ID,83857 +Rathdrum,ID,83858 +Sagle,ID,83860 +Saint Maries,ID,83861 +Sandpoint,ID,83864 +Smelterville,ID,83868 +Spirit Lake,ID,83869 +Tensed,ID,83870 +Troy,ID,83871 +Viola,ID,83872 +Wallace,ID,83873 +Worley,ID,83876 +Antioch,IL,60002 +Arlington Height,IL,60004 +Arlington Height,IL,60005 +Elk Grove Villag,IL,60007 +Rolling Meadows,IL,60008 +Barrington,IL,60010 +Crystal Lake,IL,60012 +Cary,IL,60013 +Crystal Lake,IL,60014 +Deerfield,IL,60015 +Des Plaines,IL,60016 +Rosemont,IL,60018 +Fox Lake,IL,60020 +Fox River Grove,IL,60021 +Glencoe,IL,60022 +Glenview,IL,60025 +Glenview Nas,IL,60026 +Gages Lake,IL,60030 +Gurnee,IL,60031 +Harvard,IL,60033 +Hebron,IL,60034 +Highland Park,IL,60035 +Fort Sheridan,IL,60037 +Highwood,IL,60040 +Ingleside,IL,60041 +Island Lake,IL,60042 +Kenilworth,IL,60043 +Lake Bluff,IL,60044 +Lake Forest,IL,60045 +Lindenhurst,IL,60046 +Long Grove,IL,60047 +Libertyville,IL,60048 +Mc Henry,IL,60050 +Morton Grove,IL,60053 +Mount Prospect,IL,60056 +Mundelein,IL,60060 +Vernon Hills,IL,60061 +Northbrook,IL,60062 +Abbott Park,IL,60064 +Palatine,IL,60067 +Park Ridge,IL,60068 +Prairie View,IL,60069 +Prospect Heights,IL,60070 +Richmond,IL,60071 +Ringwood,IL,60072 +Round Lake,IL,60073 +Palatine,IL,60074 +Skokie,IL,60076 +Skokie,IL,60077 +Spring Grove,IL,60081 +Techny,IL,60082 +Wadsworth,IL,60083 +Wauconda,IL,60084 +Mc Gaw Park,IL,60085 +Waukegan,IL,60087 +Great Lakes,IL,60088 +Buffalo Grove,IL,60089 +Wheeling,IL,60090 +Wilmette,IL,60091 +Northfield,IL,60093 +Winthrop Harbor,IL,60096 +Wonder Lake,IL,60097 +Woodstock,IL,60098 +Zion,IL,60099 +Addison,IL,60101 +Lake In The Hill,IL,60102 +Hanover Park,IL,60103 +Bellwood,IL,60104 +Bensenville,IL,60106 +Streamwood,IL,60107 +Bloomingdale,IL,60108 +Carpentersville,IL,60110 +Clare,IL,60111 +De Kalb,IL,60115 +Dundee,IL,60118 +Elburn,IL,60119 +Elgin,IL,60120 +Elgin,IL,60123 +Elmhurst,IL,60126 +Esmond,IL,60129 +Forest Park,IL,60130 +Franklin Park,IL,60131 +Geneva,IL,60134 +Genoa,IL,60135 +Gilberts,IL,60136 +Glen Ellyn,IL,60137 +Glendale Heights,IL,60139 +Hampshire,IL,60140 +Hines,IL,60141 +Huntley,IL,60142 +Itasca,IL,60143 +Kingston,IL,60145 +Kirkland,IL,60146 +Lombard,IL,60148 +Malta,IL,60150 +Maple Park,IL,60151 +Marengo,IL,60152 +Broadview,IL,60153 +Westchester,IL,60154 +Medinah,IL,60157 +Melrose Park,IL,60160 +Hillside,IL,60162 +Hillside,IL,60163 +Northlake,IL,60164 +Stone Park,IL,60165 +River Grove,IL,60171 +Roselle,IL,60172 +Schaumburg,IL,60173 +Saint Charles,IL,60174 +Saint Charles,IL,60175 +Schiller Park,IL,60176 +South Elgin,IL,60177 +Sycamore,IL,60178 +Union,IL,60180 +Villa Park,IL,60181 +West Chicago,IL,60185 +Wheaton,IL,60187 +Carol Stream,IL,60188 +Winfield,IL,60190 +Wood Dale,IL,60191 +Schaumburg,IL,60193 +Hoffman Estates,IL,60194 +Hoffman Estates,IL,60195 +Evanston,IL,60201 +Evanston,IL,60202 +Evanston,IL,60203 +Oak Park,IL,60301 +Oak Park,IL,60302 +Oak Park,IL,60304 +River Forest,IL,60305 +Beecher,IL,60401 +Stickney,IL,60402 +Blue Island,IL,60406 +Braceville,IL,60407 +Braidwood,IL,60408 +Calumet City,IL,60409 +Channahon,IL,60410 +Sauk Village,IL,60411 +Chicago Ridge,IL,60415 +Coal City,IL,60416 +Crete,IL,60417 +Dolton,IL,60419 +Dwight,IL,60420 +Elwood,IL,60421 +Flossmoor,IL,60422 +Frankfort,IL,60423 +Gardner,IL,60424 +Glenwood,IL,60425 +Markham,IL,60426 +Hazel Crest,IL,60429 +Homewood,IL,60430 +Joliet,IL,60431 +Joliet,IL,60432 +Joliet,IL,60433 +Shorewood,IL,60435 +Rockdale,IL,60436 +Kinsman,IL,60437 +Lansing,IL,60438 +Argonne,IL,60439 +Bolingbrook,IL,60440 +Romeoville,IL,60441 +Manhattan,IL,60442 +Matteson,IL,60443 +Mazon,IL,60444 +Crestwood,IL,60445 +Minooka,IL,60447 +Mokena,IL,60448 +Monee,IL,60449 +Morris,IL,60450 +New Lenox,IL,60451 +Oak Forest,IL,60452 +Oak Lawn,IL,60453 +Bridgeview,IL,60455 +Hometown,IL,60456 +Hickory Hills,IL,60457 +Justice,IL,60458 +Burbank,IL,60459 +Odell,IL,60460 +Olympia Fields,IL,60461 +Orland Park,IL,60462 +Palos Heights,IL,60463 +Palos Park,IL,60464 +Palos Hills,IL,60465 +University Park,IL,60466 +Peotone,IL,60468 +Posen,IL,60469 +Ransom,IL,60470 +Richton Park,IL,60471 +Robbins,IL,60472 +South Holland,IL,60473 +Steger,IL,60475 +Thornton,IL,60476 +Tinley Park,IL,60477 +Country Club Hil,IL,60478 +Verona,IL,60479 +Willow Springs,IL,60480 +Custer Park,IL,60481 +Worth,IL,60482 +Argo,IL,60501 +Aurora,IL,60504 +Aurora,IL,60505 +Aurora,IL,60506 +Batavia,IL,60510 +Big Rock,IL,60511 +Bristol,IL,60512 +Brookfield,IL,60513 +Clarendon Hills,IL,60514 +Downers Grove,IL,60515 +Downers Grove,IL,60516 +Woodridge,IL,60517 +Earlville,IL,60518 +Hinckley,IL,60520 +Oak Brook,IL,60521 +Hodgkins,IL,60525 +Lee,IL,60530 +Leland,IL,60531 +Lisle,IL,60532 +Lyons,IL,60534 +Montgomery,IL,60538 +Mooseheart,IL,60539 +Naperville,IL,60540 +Newark,IL,60541 +North Aurora,IL,60542 +Oswego,IL,60543 +Plainfield,IL,60544 +Plano,IL,60545 +North Riverside,IL,60546 +Sandwich,IL,60548 +Serena,IL,60549 +Shabbona,IL,60550 +Sheridan,IL,60551 +Somonauk,IL,60552 +Steward,IL,60553 +Sugar Grove,IL,60554 +Warrenville,IL,60555 +Waterman,IL,60556 +Western Springs,IL,60558 +Westmont,IL,60559 +Yorkville,IL,60560 +Naperville,IL,60563 +Naperville,IL,60564 +Naperville,IL,60565 +Chicago,IL,60601 +Chicago,IL,60602 +Chicago,IL,60603 +Chicago,IL,60604 +Chicago,IL,60605 +Chicago,IL,60606 +Chicago,IL,60607 +Chicago,IL,60608 +Chicago,IL,60609 +Chicago,IL,60610 +Chicago,IL,60611 +Chicago,IL,60612 +Chicago,IL,60613 +Chicago,IL,60614 +Chicago,IL,60615 +Chicago,IL,60616 +Chicago,IL,60617 +Chicago,IL,60618 +Chicago,IL,60619 +Chicago,IL,60620 +Chicago,IL,60621 +Chicago,IL,60622 +Chicago,IL,60623 +Chicago,IL,60624 +Chicago,IL,60625 +Chicago,IL,60626 +Riverdale,IL,60627 +Chicago,IL,60628 +Chicago,IL,60629 +Chicago,IL,60630 +Chicago,IL,60631 +Chicago,IL,60632 +Burnham,IL,60633 +Norridge,IL,60634 +Elmwood Park,IL,60635 +Chicago,IL,60636 +Chicago,IL,60637 +Bedford Park,IL,60638 +Chicago,IL,60639 +Chicago,IL,60640 +Chicago,IL,60641 +Evergreen Park,IL,60642 +Calumet Park,IL,60643 +Chicago,IL,60644 +Lincolnwood,IL,60645 +Lincolnwood,IL,60646 +Chicago,IL,60647 +Chicago,IL,60648 +Chicago,IL,60649 +Cicero,IL,60650 +Chicago,IL,60651 +Chicago,IL,60652 +Chicago,IL,60653 +Chicago,IL,60654 +Merrionette Park,IL,60655 +Harwood Heights,IL,60656 +Chicago,IL,60657 +Alsip,IL,60658 +Lincolnwood,IL,60659 +Chicago,IL,60660 +Chicago,IL,60661 +Amf Ohare,IL,60666 +Kankakee,IL,60901 +Aroma Park,IL,60910 +Ashkum,IL,60911 +Beaverville,IL,60912 +Bonfield,IL,60913 +Bourbonnais,IL,60914 +Bradley,IL,60915 +Buckingham,IL,60917 +Buckley,IL,60918 +Cabery,IL,60919 +Chatsworth,IL,60921 +Chebanse,IL,60922 +Cissna Park,IL,60924 +Clifton,IL,60927 +Crescent City,IL,60928 +Cullom,IL,60929 +Danforth,IL,60930 +Donovan,IL,60931 +Emington,IL,60934 +Essex,IL,60935 +Gibson City,IL,60936 +Gilman,IL,60938 +Grant Park,IL,60940 +Herscher,IL,60941 +Hoopeston,IL,60942 +Kempton,IL,60946 +Loda,IL,60948 +Ludlow,IL,60949 +Manteno,IL,60950 +Martinton,IL,60951 +Melvin,IL,60952 +Milford,IL,60953 +Momence,IL,60954 +Onarga,IL,60955 +Paxton,IL,60957 +Piper City,IL,60959 +Rankin,IL,60960 +Reddick,IL,60961 +Roberts,IL,60962 +Rossville,IL,60963 +Saint Anne,IL,60964 +Sheldon,IL,60966 +Thawville,IL,60968 +Watseka,IL,60970 +Wellington,IL,60973 +Apple River,IL,61001 +Ashton,IL,61006 +Baileyville,IL,61007 +Belvidere,IL,61008 +Byron,IL,61010 +Caledonia,IL,61011 +Capron,IL,61012 +Chadwick,IL,61014 +Chana,IL,61015 +Cherry Valley,IL,61016 +Dakota,IL,61018 +Davis,IL,61019 +Davis Junction,IL,61020 +Dixon,IL,61021 +Durand,IL,61024 +East Dubuque,IL,61025 +Elizabeth,IL,61028 +Forreston,IL,61030 +Franklin Grove,IL,61031 +Freeport,IL,61032 +Galena,IL,61036 +Garden Prairie,IL,61038 +German Valley,IL,61039 +Hanover,IL,61041 +Harmon,IL,61042 +Kent,IL,61044 +Kings,IL,61045 +Lanark,IL,61046 +Egan,IL,61047 +Lena,IL,61048 +Lindenwood,IL,61049 +Mc Connell,IL,61050 +Milledgeville,IL,61051 +Monroe Center,IL,61052 +Mount Carroll,IL,61053 +Mount Morris,IL,61054 +Orangeville,IL,61060 +Oregon,IL,61061 +Pearl City,IL,61062 +Pecatonica,IL,61063 +Polo,IL,61064 +Poplar Grove,IL,61065 +Ridott,IL,61067 +Rochelle,IL,61068 +Rock City,IL,61070 +Rock Falls,IL,61071 +Rockton,IL,61072 +Roscoe,IL,61073 +Savanna,IL,61074 +Scales Mound,IL,61075 +Shannon,IL,61078 +South Beloit,IL,61080 +Sterling,IL,61081 +Stillman Valley,IL,61084 +Stockton,IL,61085 +Warren,IL,61087 +Winnebago,IL,61088 +Winslow,IL,61089 +Rockford,IL,61101 +Rockford,IL,61102 +Rockford,IL,61103 +Rockford,IL,61104 +Rockford,IL,61107 +Rockford,IL,61108 +Rockford,IL,61109 +Loves Park,IL,61111 +Rockford,IL,61112 +Rock Island,IL,61201 +Albany,IL,61230 +Aledo,IL,61231 +Andalusia,IL,61232 +Annawan,IL,61234 +Atkinson,IL,61235 +Cambridge,IL,61238 +Coal Valley,IL,61240 +Green Rock,IL,61241 +Cordova,IL,61242 +Deer Grove,IL,61243 +East Moline,IL,61244 +Erie,IL,61250 +Fenton,IL,61251 +Fulton,IL,61252 +Geneseo,IL,61254 +Hampton,IL,61256 +Hillsdale,IL,61257 +Illinois City,IL,61259 +Joy,IL,61260 +Lyndon,IL,61261 +Lynn Center,IL,61262 +Matherville,IL,61263 +Milan,IL,61264 +Moline,IL,61265 +Morrison,IL,61270 +New Boston,IL,61272 +Orion,IL,61273 +Osco,IL,61274 +Port Byron,IL,61275 +Prophetstown,IL,61277 +Reynolds,IL,61279 +Sherrard,IL,61281 +Silvis,IL,61282 +Tampico,IL,61283 +Taylor Ridge,IL,61284 +Thomson,IL,61285 +La Salle,IL,61301 +Amboy,IL,61310 +Ancona,IL,61311 +Arlington,IL,61312 +Blackstone,IL,61313 +Buda,IL,61314 +Compton,IL,61318 +Manville,IL,61319 +Dalzell,IL,61320 +Dana,IL,61321 +Grand Ridge,IL,61325 +Granville,IL,61326 +Hennepin,IL,61327 +La Moille,IL,61330 +Leonore,IL,61332 +Long Point,IL,61333 +Lostant,IL,61334 +Mc Nabb,IL,61335 +Magnolia,IL,61336 +Malden,IL,61337 +Marseilles,IL,61341 +Mendota,IL,61342 +Mineral,IL,61344 +Neponset,IL,61345 +New Bedford,IL,61346 +Oglesby,IL,61348 +Ohio,IL,61349 +Ottawa,IL,61350 +Paw Paw,IL,61353 +Peru,IL,61354 +Princeton,IL,61356 +Rutland,IL,61358 +Seneca,IL,61360 +Sheffield,IL,61361 +Spring Valley,IL,61362 +Streator,IL,61364 +Sublette,IL,61367 +Tiskilwa,IL,61368 +Toluca,IL,61369 +Tonica,IL,61370 +Utica,IL,61373 +Varna,IL,61375 +Normandy,IL,61376 +Wenona,IL,61377 +West Brooklyn,IL,61378 +Wyanet,IL,61379 +Galesburg,IL,61401 +Abingdon,IL,61410 +Adair,IL,61411 +Alexis,IL,61412 +Alpha,IL,61413 +Altona,IL,61414 +Avon,IL,61415 +Bardolph,IL,61416 +Berwick,IL,61417 +Biggsville,IL,61418 +Blandinsville,IL,61420 +Bradford,IL,61421 +Bushnell,IL,61422 +Cameron,IL,61423 +Carman,IL,61425 +Cuba,IL,61427 +Dahinda,IL,61428 +Ellisville,IL,61431 +Fairview,IL,61432 +Fiatt,IL,61433 +Galva,IL,61434 +Gerlaw,IL,61435 +Gilson,IL,61436 +Gladstone,IL,61437 +Good Hope,IL,61438 +Industry,IL,61440 +Ipava,IL,61441 +Keithsburg,IL,61442 +Kewanee,IL,61443 +Kirkwood,IL,61447 +Knoxville,IL,61448 +La Fayette,IL,61449 +La Harpe,IL,61450 +Laura,IL,61451 +Littleton,IL,61452 +Little York,IL,61453 +Lomax,IL,61454 +Macomb,IL,61455 +Maquon,IL,61458 +Marietta,IL,61459 +Media,IL,61460 +Monmouth,IL,61462 +New Windsor,IL,61465 +North Henderson,IL,61466 +Oneida,IL,61467 +Oquawka,IL,61469 +Prairie City,IL,61470 +Raritan,IL,61471 +Rio,IL,61472 +Roseville,IL,61473 +Saint Augustine,IL,61474 +Sciota,IL,61475 +Seaton,IL,61476 +Smithfield,IL,61477 +Smithshire,IL,61478 +Speer,IL,61479 +Stronghurst,IL,61480 +Table Grove,IL,61482 +Toulon,IL,61483 +Vermont,IL,61484 +Victoria,IL,61485 +Viola,IL,61486 +Wataga,IL,61488 +Williamsfield,IL,61489 +Woodhull,IL,61490 +Wyoming,IL,61491 +Astoria,IL,61501 +Benson,IL,61516 +Brimfield,IL,61517 +Oak Hill,IL,61518 +Bryant,IL,61519 +Canton,IL,61520 +Chillicothe,IL,61523 +Dunfermline,IL,61524 +Dunlap,IL,61525 +Edelstein,IL,61526 +Edwards,IL,61528 +Elmwood,IL,61529 +Eureka,IL,61530 +Middlegrove,IL,61531 +Forest City,IL,61532 +Glasford,IL,61533 +Green Valley,IL,61534 +Hanna City,IL,61536 +Henry,IL,61537 +Kingston Mines,IL,61539 +Lacon,IL,61540 +Lewistown,IL,61542 +Liverpool,IL,61543 +London Mills,IL,61544 +Cazenovia,IL,61545 +Manito,IL,61546 +Mapleton,IL,61547 +Metamora,IL,61548 +Morton,IL,61550 +Pekin,IL,61554 +Princeville,IL,61559 +Putnam,IL,61560 +Roanoke,IL,61561 +Saint David,IL,61563 +Sparland,IL,61565 +Topeka,IL,61567 +Tremont,IL,61568 +Trivoli,IL,61569 +Washburn,IL,61570 +Sunnyland,IL,61571 +Yates City,IL,61572 +Peoria,IL,61602 +Peoria Heights,IL,61603 +Peoria,IL,61604 +Peoria,IL,61605 +Peoria,IL,61606 +Bartonville,IL,61607 +East Peoria,IL,61611 +Peoria Heights,IL,61614 +Peoria,IL,61615 +Bloomington,IL,61701 +Bloomington,IL,61704 +Anchor,IL,61720 +Armington,IL,61721 +Arrowsmith,IL,61722 +Atlanta,IL,61723 +Bellflower,IL,61724 +Carlock,IL,61725 +Chenoa,IL,61726 +Clinton,IL,61727 +Colfax,IL,61728 +Congerville,IL,61729 +Cooksville,IL,61730 +Cropsey,IL,61731 +Danvers,IL,61732 +Deer Creek,IL,61733 +Delavan,IL,61734 +Dewitt,IL,61735 +Holder,IL,61736 +Ellsworth,IL,61737 +El Paso,IL,61738 +Fairbury,IL,61739 +Flanagan,IL,61740 +Forrest,IL,61741 +Graymont,IL,61743 +Gridley,IL,61744 +Heyworth,IL,61745 +Hopedale,IL,61747 +Hudson,IL,61748 +Kenney,IL,61749 +Le Roy,IL,61752 +Lexington,IL,61753 +Mc Lean,IL,61754 +Mackinaw,IL,61755 +Maroa,IL,61756 +Minier,IL,61759 +Minonk,IL,61760 +Normal,IL,61761 +Pontiac,IL,61764 +Saunemin,IL,61769 +Saybrook,IL,61770 +Secor,IL,61771 +Shirley,IL,61772 +Sibley,IL,61773 +Stanford,IL,61774 +Strawn,IL,61775 +Towanda,IL,61776 +Wapella,IL,61777 +Waynesville,IL,61778 +Urbana,IL,61801 +Allerton,IL,61810 +Alvin,IL,61811 +Armstrong,IL,61812 +Bement,IL,61813 +Bismarck,IL,61814 +Broadlands,IL,61816 +Catlin,IL,61817 +Cerro Gordo,IL,61818 +Champaign,IL,61820 +Champaign,IL,61821 +Cisco,IL,61830 +Collison,IL,61831 +Danville,IL,61832 +Tilton,IL,61833 +De Land,IL,61839 +Dewey,IL,61840 +Fairmount,IL,61841 +Farmer City,IL,61842 +Fisher,IL,61843 +Fithian,IL,61844 +Foosland,IL,61845 +Georgetown,IL,61846 +Gifford,IL,61847 +Homer,IL,61849 +Indianola,IL,61850 +Ivesdale,IL,61851 +Longview,IL,61852 +Mahomet,IL,61853 +Mansfield,IL,61854 +Milmine,IL,61855 +Monticello,IL,61856 +Oakwood,IL,61858 +Ogden,IL,61859 +Penfield,IL,61862 +Pesotum,IL,61863 +Philo,IL,61864 +Potomac,IL,61865 +Rantoul,IL,61866 +Rantoul,IL,61868 +Ridge Farm,IL,61870 +Sadorus,IL,61872 +Saint Joseph,IL,61873 +Savoy,IL,61874 +Seymour,IL,61875 +Sidell,IL,61876 +Sidney,IL,61877 +Thomasboro,IL,61878 +Tolono,IL,61880 +Weldon,IL,61882 +Westville,IL,61883 +White Heath,IL,61884 +Arcola,IL,61910 +Arthur,IL,61911 +Ashmore,IL,61912 +Atwood,IL,61913 +Bethany,IL,61914 +Brocton,IL,61917 +Camargo,IL,61919 +Charleston,IL,61920 +Chrisman,IL,61924 +Dalton City,IL,61925 +Gays,IL,61928 +Hammond,IL,61929 +Hindsboro,IL,61930 +Humboldt,IL,61931 +Hume,IL,61932 +Kansas,IL,61933 +Lovington,IL,61937 +Mattoon,IL,61938 +Metcalf,IL,61940 +Newman,IL,61942 +Oakland,IL,61943 +Paris,IL,61944 +Sullivan,IL,61951 +Tuscola,IL,61953 +Villa Grove,IL,61956 +Windsor,IL,61957 +Alhambra,IL,62001 +Alton,IL,62002 +Batchtown,IL,62006 +Benld,IL,62009 +Bethalto,IL,62010 +Bingham,IL,62011 +Brighton,IL,62012 +Meppen,IL,62013 +Bunker Hill,IL,62014 +Butler,IL,62015 +Carrollton,IL,62016 +Coffeen,IL,62017 +Cottage Hills,IL,62018 +Donnellson,IL,62019 +62020,IL,62020 +Dorsey,IL,62021 +Dow,IL,62022 +East Alton,IL,62024 +Edwardsville,IL,62025 +Eldred,IL,62027 +Elsah,IL,62028 +Fidelity,IL,62030 +Fieldon,IL,62031 +Fillmore,IL,62032 +Dorchester,IL,62033 +Glen Carbon,IL,62034 +Godfrey,IL,62035 +Golden Eagle,IL,62036 +Grafton,IL,62037 +Mitchell,IL,62040 +Greenfield,IL,62044 +Hamburg,IL,62045 +Hamel,IL,62046 +Hardin,IL,62047 +Hartford,IL,62048 +Hillsboro,IL,62049 +Hillview,IL,62050 +Irving,IL,62051 +Jerseyville,IL,62052 +Kampsville,IL,62053 +Kane,IL,62054 +Litchfield,IL,62056 +Madison,IL,62060 +Marine,IL,62061 +Medora,IL,62063 +62064,IL,62064 +Michael,IL,62065 +Moro,IL,62067 +Mount Olive,IL,62069 +Mozier,IL,62070 +New Douglas,IL,62074 +Nokomis,IL,62075 +Piasa,IL,62079 +Ramsey,IL,62080 +Rockbridge,IL,62081 +Roodhouse,IL,62082 +Rosamond,IL,62083 +Roxana,IL,62084 +Sorento,IL,62086 +Staunton,IL,62088 +Venice,IL,62090 +Walshville,IL,62091 +White Hall,IL,62092 +Witt,IL,62094 +Wood River,IL,62095 +Worden,IL,62097 +Sauget,IL,62201 +East Saint Louis,IL,62203 +Washington Park,IL,62204 +East Saint Louis,IL,62205 +Cahokia,IL,62206 +Alorton,IL,62207 +Fairview Heights,IL,62208 +Venedy,IL,62214 +Albers,IL,62215 +Baldwin,IL,62217 +Bartelso,IL,62218 +Belleville,IL,62220 +Belleville,IL,62221 +Belleville,IL,62223 +Scott A F B,IL,62225 +Breese,IL,62230 +Carlyle,IL,62231 +Caseyville,IL,62232 +Chester,IL,62233 +Collinsville,IL,62234 +Columbia,IL,62236 +Swanwick,IL,62237 +Cutler,IL,62238 +Dupo,IL,62239 +East Carondelet,IL,62240 +Ellis Grove,IL,62241 +Evansville,IL,62242 +Freeburg,IL,62243 +Fults,IL,62244 +Germantown,IL,62245 +Greenville,IL,62246 +Hecker,IL,62248 +Highland,IL,62249 +Keyesport,IL,62253 +Lebanon,IL,62254 +Lenzburg,IL,62255 +Maeystown,IL,62256 +Marissa,IL,62257 +Mascoutah,IL,62258 +Millstadt,IL,62260 +Modoc,IL,62261 +Mulberry Grove,IL,62262 +Nashville,IL,62263 +New Athens,IL,62264 +New Baden,IL,62265 +Oakdale,IL,62268 +Shiloh,IL,62269 +Okawville,IL,62271 +Percy,IL,62272 +Pinckneyville,IL,62274 +Pocahontas,IL,62275 +Prairie Du Roche,IL,62277 +Red Bud,IL,62278 +Renault,IL,62279 +Rockwood,IL,62280 +Saint Jacob,IL,62281 +Shattuc,IL,62283 +Smithboro,IL,62284 +Smithton,IL,62285 +Sparta,IL,62286 +Steeleville,IL,62288 +Trenton,IL,62293 +Troy,IL,62294 +Valmeyer,IL,62295 +62296,IL,62296 +Walsh,IL,62297 +Waterloo,IL,62298 +Quincy,IL,62301 +Augusta,IL,62311 +Barry,IL,62312 +Basco,IL,62313 +Baylis,IL,62314 +Bowen,IL,62316 +Burnside,IL,62318 +Camden,IL,62319 +Camp Point,IL,62320 +Carthage,IL,62321 +Chambersburg,IL,62323 +Clayton,IL,62324 +Coatsburg,IL,62325 +Colchester,IL,62326 +Pontoosuc,IL,62330 +Detroit,IL,62332 +Elvaston,IL,62334 +Fowler,IL,62338 +Golden,IL,62339 +Griggsville,IL,62340 +Hamilton,IL,62341 +Hull,IL,62343 +Huntsville,IL,62344 +Kinderhook,IL,62345 +La Prairie,IL,62346 +Liberty,IL,62347 +Lima,IL,62348 +Loraine,IL,62349 +Mendon,IL,62351 +Milton,IL,62352 +Mount Sterling,IL,62353 +Nebo,IL,62355 +New Canton,IL,62356 +New Salem,IL,62357 +Niota,IL,62358 +Paloma,IL,62359 +Payson,IL,62360 +Pearl,IL,62361 +Perry,IL,62362 +Pittsfield,IL,62363 +Plainville,IL,62365 +Pleasant Hill,IL,62366 +Colmar,IL,62367 +Rockport,IL,62370 +Sutter,IL,62373 +Tennessee,IL,62374 +Timewell,IL,62375 +Ursa,IL,62376 +Versailles,IL,62378 +Warsaw,IL,62379 +West Point,IL,62380 +Effingham,IL,62401 +Allendale,IL,62410 +Altamont,IL,62411 +Annapolis,IL,62413 +Beecher City,IL,62414 +Birds,IL,62415 +Bridgeport,IL,62417 +Brownstown,IL,62418 +Calhoun,IL,62419 +Casey,IL,62420 +Claremont,IL,62421 +Cowden,IL,62422 +Dennison,IL,62423 +Dieterich,IL,62424 +Dundas,IL,62425 +Laclede,IL,62426 +Flat Rock,IL,62427 +Hazel Dell,IL,62428 +Herrick,IL,62431 +Hidalgo,IL,62432 +Hutsonville,IL,62433 +Ingraham,IL,62434 +Jewett,IL,62436 +Lakewood,IL,62438 +Lawrenceville,IL,62439 +Lerna,IL,62440 +Marshall,IL,62441 +Martinsville,IL,62442 +Mason,IL,62443 +Montrose,IL,62445 +Mount Erie,IL,62446 +Neoga,IL,62447 +Newton,IL,62448 +Oblong,IL,62449 +Olney,IL,62450 +Palestine,IL,62451 +Parkersburg,IL,62452 +Robinson,IL,62454 +Saint Elmo,IL,62458 +Saint Francisvil,IL,62460 +Shumway,IL,62461 +Sigel,IL,62462 +Stewardson,IL,62463 +Strasburg,IL,62465 +Sumner,IL,62466 +Teutopolis,IL,62467 +Toledo,IL,62468 +Trilla,IL,62469 +Vandalia,IL,62471 +Watson,IL,62473 +Westfield,IL,62474 +West Liberty,IL,62475 +West Salem,IL,62476 +West Union,IL,62477 +West York,IL,62478 +Wheeler,IL,62479 +Willow Hill,IL,62480 +Yale,IL,62481 +Newburg,IL,62501 +Assumption,IL,62510 +Atwater,IL,62511 +Beason,IL,62512 +Blue Mound,IL,62513 +Boody,IL,62514 +Buffalo Hart,IL,62515 +Chestnut,IL,62518 +Dawson,IL,62520 +Decatur,IL,62521 +Decatur,IL,62522 +Decatur,IL,62523 +Bearsdale,IL,62526 +Cimic,IL,62530 +Edinburg,IL,62531 +Thomasville,IL,62533 +Brunswick,IL,62534 +Glenarm,IL,62536 +Harvel,IL,62538 +Illiopolis,IL,62539 +Latham,IL,62543 +Macon,IL,62544 +Bolivia,IL,62545 +Morrisonville,IL,62546 +Mount Auburn,IL,62547 +Mount Pulaski,IL,62548 +Hervey City,IL,62549 +Radford,IL,62550 +Niantic,IL,62551 +Casner,IL,62552 +Oconee,IL,62553 +Oreana,IL,62554 +Owaneco,IL,62555 +Clarksdale,IL,62556 +Dunkel,IL,62557 +Sicily,IL,62558 +Raymond,IL,62560 +Spaulding,IL,62561 +Berry,IL,62563 +Clarksburg,IL,62565 +Stonington,IL,62567 +Hewittsville,IL,62568 +Dollville,IL,62571 +Waggoner,IL,62572 +Heman,IL,62573 +Orleans,IL,62601 +Arenzville,IL,62611 +Newmansville,IL,62612 +Fancy Prairie,IL,62613 +Auburn,IL,62615 +Lynchburg,IL,62617 +Beardstown,IL,62618 +Exeter,IL,62621 +Bader,IL,62624 +Cantrall,IL,62625 +Comer,IL,62626 +Panther Creek,IL,62627 +Chapin,IL,62628 +Chatham,IL,62629 +Hagaman,IL,62630 +Concord,IL,62631 +Biggs,IL,62633 +Broadwell,IL,62634 +Emden,IL,62635 +Clements,IL,62638 +Frederick,IL,62639 +Mcvey,IL,62640 +Hubly,IL,62642 +Hartsburg,IL,62643 +Eckard,IL,62644 +Hettick,IL,62649 +Arcadia,IL,62650 +Kilbourne,IL,62655 +Lincoln,IL,62656 +Loami,IL,62661 +Luther,IL,62664 +Naples,IL,62665 +Middletown,IL,62666 +Modesto,IL,62667 +Nortonville,IL,62668 +Bates,IL,62670 +New Holland,IL,62671 +Nilwood,IL,62672 +Oakford,IL,62673 +Barr,IL,62674 +Atterbury,IL,62675 +Plainview,IL,62676 +Farmingdale,IL,62677 +Layton,IL,62681 +Allen,IL,62682 +Scottville,IL,62683 +Barclay,IL,62684 +Royal Lakes,IL,62685 +Tallula,IL,62688 +Virden,IL,62690 +Little Indian,IL,62691 +Waverly,IL,62692 +Williamsville,IL,62693 +Glasgow,IL,62694 +Springfield,IL,62701 +Grandview,IL,62702 +Southern View,IL,62703 +Jerome,IL,62704 +Andrew,IL,62707 +Centralia,IL,62801 +Hoyleton,IL,62803 +Albion,IL,62806 +Alma,IL,62807 +Ashley,IL,62808 +Barnhill,IL,62809 +Belle Rive,IL,62810 +Benton,IL,62812 +Bluford,IL,62814 +Bone Gap,IL,62815 +Bonnie,IL,62816 +Broughton,IL,62817 +Browns,IL,62818 +Buckner,IL,62819 +Burnt Prairie,IL,62820 +Carmi,IL,62821 +Christopher,IL,62822 +Cisne,IL,62823 +Clay City,IL,62824 +Crossville,IL,62827 +Dahlgren,IL,62828 +Dale,IL,62829 +Dix,IL,62830 +Du Bois,IL,62831 +Du Quoin,IL,62832 +Ellery,IL,62833 +Enfield,IL,62835 +Ewing,IL,62836 +Fairfield,IL,62837 +Farina,IL,62838 +Flora,IL,62839 +Frankfort Height,IL,62840 +Geff,IL,62842 +Golden Gate,IL,62843 +Grayville,IL,62844 +Herald,IL,62845 +Ina,IL,62846 +Iuka,IL,62849 +Johnsonville,IL,62850 +Keenes,IL,62851 +Kell,IL,62853 +Kinmundy,IL,62854 +Lancaster,IL,62855 +Bible Grove,IL,62858 +Mc Leansboro,IL,62859 +Macedonia,IL,62860 +Mill Shoals,IL,62862 +Mount Carmel,IL,62863 +Mount Vernon,IL,62864 +Mulkeytown,IL,62865 +Nason,IL,62866 +New Haven,IL,62867 +Noble,IL,62868 +Norris City,IL,62869 +Odin,IL,62870 +Omaha,IL,62871 +Opdyke,IL,62872 +Patoka,IL,62875 +Richview,IL,62877 +Rinard,IL,62878 +Saint Peter,IL,62880 +Salem,IL,62881 +Sandoval,IL,62882 +Scheller,IL,62883 +Sesser,IL,62884 +Shobonier,IL,62885 +Sims,IL,62886 +Springerton,IL,62887 +Tamaroa,IL,62888 +Texico,IL,62889 +Thompsonville,IL,62890 +Vernon,IL,62892 +Walnut Hill,IL,62893 +Waltonville,IL,62894 +Wayne City,IL,62895 +West Frankfort,IL,62896 +Whittington,IL,62897 +Woodlawn,IL,62898 +Xenia,IL,62899 +Carbondale,IL,62901 +Alto Pass,IL,62905 +Anna,IL,62906 +Ava,IL,62907 +Belknap,IL,62908 +New Liberty,IL,62910 +Buncombe,IL,62912 +Cache,IL,62913 +Cairo,IL,62914 +Campbell Hill,IL,62916 +Carrier Mills,IL,62917 +Carterville,IL,62918 +Cave In Rock,IL,62919 +Cobden,IL,62920 +Creal Springs,IL,62922 +Cypress,IL,62923 +De Soto,IL,62924 +Dongola,IL,62926 +Eddyville,IL,62928 +Eldorado,IL,62930 +Elizabethtown,IL,62931 +Elkville,IL,62932 +Equality,IL,62934 +Galatia,IL,62935 +Brownfield,IL,62938 +Goreville,IL,62939 +Gorham,IL,62940 +Grand Chain,IL,62941 +Grand Tower,IL,62942 +Grantsburg,IL,62943 +Harrisburg,IL,62946 +Herod,IL,62947 +Herrin,IL,62948 +Jacob,IL,62950 +Johnston City,IL,62951 +Jonesboro,IL,62952 +Joppa,IL,62953 +Junction,IL,62954 +Karbers Ridge,IL,62955 +Karnak,IL,62956 +Mc Clure,IL,62957 +Makanda,IL,62958 +Marion,IL,62959 +Metropolis,IL,62960 +Millcreek,IL,62961 +Miller City,IL,62962 +Mound City,IL,62963 +Mounds,IL,62964 +Murphysboro,IL,62966 +New Burnside,IL,62967 +Olmsted,IL,62970 +Ozark,IL,62972 +Pittsburg,IL,62974 +Pomona,IL,62975 +Pulaski,IL,62976 +Raleigh,IL,62977 +Ridgway,IL,62979 +Rosiclare,IL,62982 +Royalton,IL,62983 +Shawneetown,IL,62984 +Robbs,IL,62985 +Stonefort,IL,62987 +Tamms,IL,62988 +Gale,IL,62990 +Tunnel Hill,IL,62991 +Ullin,IL,62992 +Vergennes,IL,62994 +Vienna,IL,62995 +Villa Ridge,IL,62996 +Willisville,IL,62997 +Wolf Lake,IL,62998 +Zeigler,IL,62999 +Saint Mary,IL,63673 +Alexandria,IN,46001 +Anderson,IN,46011 +Anderson,IN,46012 +Anderson,IN,46013 +Anderson,IN,46016 +Chesterfield,IN,46017 +Arcadia,IN,46030 +Atlanta,IN,46031 +Carmel,IN,46032 +Cicero,IN,46034 +Colfax,IN,46035 +Elwood,IN,46036 +Fishers,IN,46038 +Forest,IN,46039 +Fortville,IN,46040 +Hillisburg,IN,46041 +Frankton,IN,46044 +Ingalls,IN,46048 +Kempton,IN,46049 +Kirklin,IN,46050 +Lapel,IN,46051 +Lebanon,IN,46052 +Mc Cordsville,IN,46055 +Markleville,IN,46056 +Michigantown,IN,46057 +Mulberry,IN,46058 +Noblesville,IN,46060 +Pendleton,IN,46064 +Rossville,IN,46065 +Sharpsville,IN,46068 +Sheridan,IN,46069 +Summitville,IN,46070 +Thorntown,IN,46071 +Tipton,IN,46072 +Westfield,IN,46074 +Whitestown,IN,46075 +Windfall,IN,46076 +Zionsville,IN,46077 +Arlington,IN,46104 +Bainbridge,IN,46105 +Bargersville,IN,46106 +Beech Grove,IN,46107 +Boggstown,IN,46110 +Brownsburg,IN,46112 +Camby,IN,46113 +Carthage,IN,46115 +Charlottesville,IN,46117 +Clayton,IN,46118 +Cloverdale,IN,46120 +Coatesville,IN,46121 +Danville,IN,46122 +Edinburgh,IN,46124 +Fairland,IN,46126 +Falmouth,IN,46127 +Fillmore,IN,46128 +Fountaintown,IN,46130 +Franklin,IN,46131 +Glenwood,IN,46133 +Greencastle,IN,46135 +Greenfield,IN,46140 +Greenwood,IN,46142 +Greenwood,IN,46143 +Jamestown,IN,46147 +Knightstown,IN,46148 +Lizton,IN,46149 +Manilla,IN,46150 +Centerton,IN,46151 +Milroy,IN,46156 +Monrovia,IN,46157 +Mooresville,IN,46158 +Morgantown,IN,46160 +Morristown,IN,46161 +Needham,IN,46162 +New Palestine,IN,46163 +Nineveh,IN,46164 +North Salem,IN,46165 +Paragon,IN,46166 +Pittsboro,IN,46167 +Avon,IN,46168 +Reelsville,IN,46171 +Roachdale,IN,46172 +Rushville,IN,46173 +Russellville,IN,46175 +Shelbyville,IN,46176 +Stilesville,IN,46180 +Trafalgar,IN,46181 +Waldron,IN,46182 +New Whiteland,IN,46184 +Wilkinson,IN,46186 +Indianapolis,IN,46201 +Indianapolis,IN,46202 +Indianapolis,IN,46203 +Indianapolis,IN,46204 +Indianapolis,IN,46205 +Indianapolis,IN,46208 +Eagle Creek,IN,46214 +Fort Benjamin Ha,IN,46216 +Southport,IN,46217 +Indianapolis,IN,46218 +Indianapolis,IN,46219 +Indianapolis,IN,46220 +Indianapolis,IN,46221 +Indianapolis,IN,46222 +Speedway,IN,46224 +Indianapolis,IN,46225 +Lawrence,IN,46226 +Southport,IN,46227 +Cumberland,IN,46229 +Bridgeport,IN,46231 +Clermont,IN,46234 +Oaklandon,IN,46236 +Southport,IN,46237 +Wanamaker,IN,46239 +Nora,IN,46240 +Park Fletcher,IN,46241 +Castleton,IN,46250 +Eagle Creek,IN,46254 +Castleton,IN,46256 +Acton,IN,46259 +Nora,IN,46260 +New Augusta,IN,46268 +New Augusta,IN,46278 +Nora,IN,46280 +Nora,IN,46290 +East Cedar Lake,IN,46303 +Porter,IN,46304 +Crown Point,IN,46307 +Demotte,IN,46310 +Dyer,IN,46311 +East Chicago,IN,46312 +Griffith,IN,46319 +Hammond,IN,46320 +Munster,IN,46321 +Highland,IN,46322 +Hammond,IN,46323 +Hammond,IN,46324 +Hammond,IN,46327 +Hanna,IN,46340 +Hebron,IN,46341 +Hobart,IN,46342 +Kouts,IN,46347 +La Crosse,IN,46348 +Lake Village,IN,46349 +La Porte,IN,46350 +Lowell,IN,46356 +Michigan City,IN,46360 +Mill Creek,IN,46365 +North Judson,IN,46366 +Portage,IN,46368 +Rolling Prairie,IN,46371 +Saint John,IN,46373 +San Pierre,IN,46374 +Schererville,IN,46375 +Union Mills,IN,46382 +Valparaiso,IN,46383 +Wanatah,IN,46390 +Westville,IN,46391 +Wheatfield,IN,46392 +Whiting,IN,46394 +Gary,IN,46402 +Gary,IN,46403 +Gary,IN,46404 +Lake Station,IN,46405 +Gary,IN,46406 +Gary,IN,46407 +Gary,IN,46408 +Gary,IN,46409 +Merrillville,IN,46410 +Argos,IN,46501 +Bourbon,IN,46504 +Bremen,IN,46506 +Bristol,IN,46507 +Claypool,IN,46510 +Culver Military,IN,46511 +Elkhart,IN,46514 +Elkhart,IN,46516 +Elkhart,IN,46517 +Etna Green,IN,46524 +Foraker,IN,46526 +Granger,IN,46530 +Grovertown,IN,46531 +Hamlet,IN,46532 +Ober,IN,46534 +Lakeville,IN,46536 +Leesburg,IN,46538 +Mentone,IN,46539 +Middlebury,IN,46540 +Milford,IN,46542 +Millersburg,IN,46543 +Mishawaka,IN,46544 +Mishawaka,IN,46545 +Nappanee,IN,46550 +New Carlisle,IN,46552 +New Paris,IN,46553 +North Liberty,IN,46554 +North Webster,IN,46555 +Saint Marys,IN,46556 +Osceola,IN,46561 +Pierceton,IN,46562 +Inwood,IN,46563 +Shipshewana,IN,46565 +Syracuse,IN,46567 +Tippecanoe,IN,46570 +Topeka,IN,46571 +Wakarusa,IN,46573 +Walkerton,IN,46574 +Warsaw,IN,46580 +Winona Lake,IN,46590 +South Bend,IN,46601 +South Bend,IN,46613 +South Bend,IN,46614 +South Bend,IN,46615 +South Bend,IN,46616 +South Bend,IN,46617 +South Bend,IN,46619 +South Bend,IN,46628 +South Bend,IN,46635 +South Bend,IN,46637 +Albion,IN,46701 +Andrews,IN,46702 +Angola,IN,46703 +Ashley,IN,46705 +Auburn,IN,46706 +Avilla,IN,46710 +Linn Grove,IN,46711 +Bluffton,IN,46714 +Butler,IN,46721 +Churubusco,IN,46723 +Columbia City,IN,46725 +Corunna,IN,46730 +Craigville,IN,46731 +Cromwell,IN,46732 +Decatur,IN,46733 +Fremont,IN,46737 +Garrett,IN,46738 +Geneva,IN,46740 +Grabill,IN,46741 +Hamilton,IN,46742 +Harlan,IN,46743 +Hoagland,IN,46745 +Howe,IN,46746 +Helmer,IN,46747 +Huntertown,IN,46748 +Huntington,IN,46750 +Kendallville,IN,46755 +Keystone,IN,46759 +Kimmell,IN,46760 +Lagrange,IN,46761 +Laotto,IN,46763 +Larwill,IN,46764 +Leo,IN,46765 +Liberty Center,IN,46766 +Ligonier,IN,46767 +Markle,IN,46770 +Monroe,IN,46772 +Monroeville,IN,46773 +New Haven,IN,46774 +Orland,IN,46776 +Ossian,IN,46777 +Pleasant Lake,IN,46779 +Poneto,IN,46781 +Roanoke,IN,46783 +Rome City,IN,46784 +Saint Joe,IN,46785 +South Whitley,IN,46787 +Spencerville,IN,46788 +Uniondale,IN,46791 +Warren,IN,46792 +Waterloo,IN,46793 +Wawaka,IN,46794 +Wolcottville,IN,46795 +Woodburn,IN,46797 +Yoder,IN,46798 +Fort Wayne,IN,46802 +Fort Wayne,IN,46803 +Fort Wayne,IN,46804 +Fort Wayne,IN,46805 +Fort Wayne,IN,46806 +Fort Wayne,IN,46807 +Fort Wayne,IN,46808 +Fort Wayne,IN,46809 +Fort Wayne,IN,46815 +Fort Wayne,IN,46816 +Fort Wayne,IN,46818 +Fort Wayne,IN,46819 +Fort Wayne,IN,46825 +Fort Wayne,IN,46835 +Fort Wayne,IN,46845 +Kokomo,IN,46901 +Kokomo,IN,46902 +Akron,IN,46910 +Amboy,IN,46911 +Bringhurst,IN,46913 +Bunker Hill,IN,46914 +Camden,IN,46917 +Converse,IN,46919 +Cutler,IN,46920 +Delphi,IN,46923 +Chili,IN,46926 +Fairmount,IN,46928 +Flora,IN,46929 +Galveston,IN,46932 +Gas City,IN,46933 +Greentown,IN,46936 +Jonesboro,IN,46938 +Kewanna,IN,46939 +La Fontaine,IN,46940 +Lagro,IN,46941 +Logansport,IN,46947 +Lucerne,IN,46950 +Macy,IN,46951 +Marion,IN,46952 +Marion,IN,46953 +Monterey,IN,46960 +North Manchester,IN,46962 +Peru,IN,46970 +Grissom Air Forc,IN,46971 +Roann,IN,46974 +Rochester,IN,46975 +Royal Center,IN,46978 +Russiaville,IN,46979 +Silver Lake,IN,46982 +Star City,IN,46985 +Swayzee,IN,46986 +Twelve Mile,IN,46988 +Upland,IN,46989 +Urbana,IN,46990 +Landess,IN,46991 +Wabash,IN,46992 +Walton,IN,46994 +Winamac,IN,46996 +Aurora,IN,47001 +Batesville,IN,47006 +Bath,IN,47010 +Bennington,IN,47011 +Brookville,IN,47012 +Cedar Grove,IN,47016 +Cross Plains,IN,47017 +Dillsboro,IN,47018 +Florence,IN,47020 +Friendship,IN,47021 +Guilford,IN,47022 +Holton,IN,47023 +Laurel,IN,47024 +Lawrenceburg,IN,47025 +Metamora,IN,47030 +Milan,IN,47031 +Moores Hill,IN,47032 +Oldenburg,IN,47036 +Osgood,IN,47037 +Patriot,IN,47038 +Rising Sun,IN,47040 +Sunman,IN,47041 +Versailles,IN,47042 +Vevay,IN,47043 +W Harrison,IN,47060 +Austin,IN,47102 +Borden,IN,47106 +Campbellsburg,IN,47108 +Central,IN,47110 +Charlestown,IN,47111 +Corydon,IN,47112 +Crandall,IN,47114 +Depauw,IN,47115 +Eckerty,IN,47116 +Elizabeth,IN,47117 +English,IN,47118 +Floyds Knobs,IN,47119 +Fredericksburg,IN,47120 +Georgetown,IN,47122 +Grantsburg,IN,47123 +Greenville,IN,47124 +Hardinsburg,IN,47125 +Henryville,IN,47126 +Clarksville,IN,47129 +Jeffersonville,IN,47130 +Laconia,IN,47135 +Lanesville,IN,47136 +Leavenworth,IN,47137 +Lexington,IN,47138 +Marengo,IN,47140 +Marysville,IN,47141 +Mauckport,IN,47142 +Memphis,IN,47143 +Milltown,IN,47145 +Nabb,IN,47147 +New Albany,IN,47150 +New Middletown,IN,47160 +New Salisbury,IN,47161 +New Washington,IN,47162 +Otisco,IN,47163 +Palmyra,IN,47164 +Pekin,IN,47165 +Ramsey,IN,47166 +Salem,IN,47167 +Scottsburg,IN,47170 +Speed,IN,47172 +Sulphur,IN,47174 +Taswell,IN,47175 +Underwood,IN,47177 +Columbus,IN,47201 +Columbus,IN,47203 +Brownstown,IN,47220 +Butlerville,IN,47223 +Canaan,IN,47224 +Commiskey,IN,47227 +Cortland,IN,47228 +Crothersville,IN,47229 +Deputy,IN,47230 +Dupont,IN,47231 +Elizabethtown,IN,47232 +Flat Rock,IN,47234 +Freetown,IN,47235 +Grammer,IN,47236 +Adams,IN,47240 +Hanover,IN,47243 +Hartsville,IN,47244 +Hope,IN,47246 +Madison,IN,47250 +Medora,IN,47260 +Norman,IN,47264 +North Vernon,IN,47265 +Paris Crossing,IN,47270 +Saint Paul,IN,47272 +Scipio,IN,47273 +Seymour,IN,47274 +Vallonia,IN,47281 +Vernon,IN,47282 +Westport,IN,47283 +Muncie,IN,47302 +Muncie,IN,47303 +Muncie,IN,47304 +Muncie,IN,47305 +Ball State Unive,IN,47306 +Albany,IN,47320 +Brownsville,IN,47325 +Bryant,IN,47326 +Cambridge City,IN,47327 +Centerville,IN,47330 +Connersville,IN,47331 +Daleville,IN,47334 +Dunkirk,IN,47336 +Eaton,IN,47338 +Economy,IN,47339 +Farmland,IN,47340 +Fountain City,IN,47341 +Gaston,IN,47342 +Greens Fork,IN,47345 +Hagerstown,IN,47346 +Hartford City,IN,47348 +Lewisville,IN,47352 +Liberty,IN,47353 +Losantville,IN,47354 +Lynn,IN,47355 +Middletown,IN,47356 +Milton,IN,47357 +Modoc,IN,47358 +Montpelier,IN,47359 +Mooreland,IN,47360 +New Castle,IN,47362 +Parker City,IN,47368 +Pennville,IN,47369 +Portland,IN,47371 +Redkey,IN,47373 +Richmond,IN,47374 +Ridgeville,IN,47380 +Salamonia,IN,47381 +Saratoga,IN,47382 +Selma,IN,47383 +Shirley,IN,47384 +Spiceland,IN,47385 +Springport,IN,47386 +Straughn,IN,47387 +Sulphur Springs,IN,47388 +Union City,IN,47390 +Webster,IN,47392 +Williamsburg,IN,47393 +Winchester,IN,47394 +Yorktown,IN,47396 +Bloomington,IN,47401 +Bloomington,IN,47403 +Bloomington,IN,47404 +Woodbridge,IN,47408 +Bedford,IN,47421 +Bloomfield,IN,47424 +Coal City,IN,47427 +Ellettsville,IN,47429 +Freedom,IN,47431 +French Lick,IN,47432 +Gosport,IN,47433 +Heltonville,IN,47436 +Jasonville,IN,47438 +Linton,IN,47441 +Lyons,IN,47443 +Mitchell,IN,47446 +Nashville,IN,47448 +Newberry,IN,47449 +Oolitic,IN,47451 +Orleans,IN,47452 +Owensburg,IN,47453 +Paoli,IN,47454 +Quincy,IN,47456 +Solsberry,IN,47459 +Spencer,IN,47460 +Springville,IN,47462 +Switz City,IN,47465 +Unionville,IN,47468 +West Baden Sprin,IN,47469 +Williams,IN,47470 +Worthington,IN,47471 +Washington,IN,47501 +Bicknell,IN,47512 +Birdseye,IN,47513 +Branchville,IN,47514 +Siberia,IN,47515 +Bruceville,IN,47516 +Cannelburg,IN,47519 +Mount Pleasant,IN,47520 +Celestine,IN,47521 +Crane Naval Depo,IN,47522 +Dale,IN,47523 +Decker,IN,47524 +Derby,IN,47525 +Dubois,IN,47527 +Edwardsport,IN,47528 +Elnora,IN,47529 +Evanston,IN,47531 +Ferdinand,IN,47532 +Gentryville,IN,47537 +Holland,IN,47541 +Huntingburg,IN,47542 +Haysville,IN,47546 +Buffaloville,IN,47550 +Leopold,IN,47551 +Lincoln City,IN,47552 +Loogootee,IN,47553 +Magnet,IN,47555 +Mariah Hill,IN,47556 +Monroe City,IN,47557 +Montgomery,IN,47558 +47559,IN,47559 +Oaktown,IN,47561 +Odon,IN,47562 +Otwell,IN,47564 +Petersburg,IN,47567 +Plainville,IN,47568 +Rome,IN,47574 +Kyana,IN,47575 +Saint Croix,IN,47576 +Saint Meinrad,IN,47577 +Sandborn,IN,47578 +Santa Claus,IN,47579 +Schnellville,IN,47580 +Shoals,IN,47581 +Stendal,IN,47585 +Tell City,IN,47586 +Tobinsport,IN,47587 +Troy,IN,47588 +Velpen,IN,47590 +Vincennes,IN,47591 +Wheatland,IN,47597 +Winslow,IN,47598 +Boonville,IN,47601 +Chandler,IN,47610 +Chrisney,IN,47611 +Cynthiana,IN,47612 +Elberfeld,IN,47613 +Grandview,IN,47615 +Griffin,IN,47616 +Lynnville,IN,47619 +Mount Vernon,IN,47620 +Newburgh,IN,47630 +New Harmony,IN,47631 +Poseyville,IN,47633 +Richland,IN,47634 +Rockport,IN,47635 +Tennyson,IN,47637 +Wadesville,IN,47638 +Haubstadt,IN,47639 +Hazleton,IN,47640 +Buckskin,IN,47647 +Fort Branch,IN,47648 +Francisco,IN,47649 +Oakland City,IN,47660 +Owensville,IN,47665 +Patoka,IN,47666 +Princeton,IN,47670 +Evansville,IN,47708 +Evansville,IN,47710 +Evansville,IN,47711 +Evansville,IN,47712 +Evansville,IN,47713 +Evansville,IN,47714 +Evansville,IN,47715 +Evansville,IN,47720 +Terre Haute,IN,47802 +Terre Haute,IN,47803 +Terre Haute,IN,47804 +North Terre Haut,IN,47805 +Terre Haute,IN,47807 +Bloomingdale,IN,47832 +Bowling Green,IN,47833 +Brazil,IN,47834 +Bridgeton,IN,47836 +Carbon,IN,47837 +Carlisle,IN,47838 +Centerpoint,IN,47840 +Clay City,IN,47841 +Clinton,IN,47842 +Cory,IN,47846 +Dana,IN,47847 +Dugger,IN,47848 +Fairbanks,IN,47849 +Farmersburg,IN,47850 +Hillsdale,IN,47854 +Lewis,IN,47858 +Marshall,IN,47859 +Merom,IN,47861 +Montezuma,IN,47862 +Pimento,IN,47866 +Poland,IN,47868 +Rockville,IN,47872 +Rosedale,IN,47874 +Shelburn,IN,47879 +Sullivan,IN,47882 +Sandford,IN,47885 +Lafayette,IN,47901 +Lafayette,IN,47904 +Lafayette,IN,47905 +West Lafayette,IN,47906 +Ambia,IN,47917 +Attica,IN,47918 +Battle Ground,IN,47920 +Boswell,IN,47921 +Brook,IN,47922 +Brookston,IN,47923 +Burnettsville,IN,47926 +Cayuga,IN,47928 +Chalmers,IN,47929 +Clarks Hill,IN,47930 +Covington,IN,47932 +Crawfordsville,IN,47933 +Darlington,IN,47940 +Earl Park,IN,47942 +Fair Oaks,IN,47943 +Fowler,IN,47944 +Francesville,IN,47946 +Goodland,IN,47948 +Hillsboro,IN,47949 +Idaville,IN,47950 +Kentland,IN,47951 +Cates,IN,47952 +Ladoga,IN,47954 +Linden,IN,47955 +Medaryville,IN,47957 +Monon,IN,47959 +Monticello,IN,47960 +Morocco,IN,47963 +New Richmond,IN,47967 +New Ross,IN,47968 +Otterbein,IN,47970 +Oxford,IN,47971 +Perrysville,IN,47974 +Pine Village,IN,47975 +Remington,IN,47977 +Collegeville,IN,47978 +Reynolds,IN,47980 +Romney,IN,47981 +Tangier,IN,47985 +Veedersburg,IN,47987 +Waveland,IN,47989 +Waynetown,IN,47990 +West Lebanon,IN,47991 +Westpoint,IN,47992 +Marshfield,IN,47993 +Wingate,IN,47994 +Wolcott,IN,47995 +Ackworth,IA,50001 +Adair,IA,50002 +Adel,IA,50003 +Albion,IA,50005 +Alden,IA,50006 +Alleman,IA,50007 +Allerton,IA,50008 +Altoona,IA,50009 +Ames,IA,50010 +Anita,IA,50020 +Ankeny,IA,50021 +Atlantic,IA,50022 +Audubon,IA,50025 +Bagley,IA,50026 +Barnes City,IA,50027 +Baxter,IA,50028 +Bayard,IA,50029 +Beaconsfield,IA,50030 +Beaver,IA,50031 +Bevington,IA,50033 +Blairsburg,IA,50034 +Bondurant,IA,50035 +Boone,IA,50036 +Booneville,IA,50038 +Bouton,IA,50039 +Boxholm,IA,50040 +Bradford,IA,50041 +Brayton,IA,50042 +Bussey,IA,50044 +Cambridge,IA,50046 +Carlisle,IA,50047 +Casey,IA,50048 +Chariton,IA,50049 +Churdan,IA,50050 +Clemons,IA,50051 +Clio,IA,50052 +Colfax,IA,50054 +Collins,IA,50055 +Colo,IA,50056 +Columbia,IA,50057 +Coon Rapids,IA,50058 +Cooper,IA,50059 +Sewal,IA,50060 +Cumming,IA,50061 +Dallas,IA,50062 +Dallas Center,IA,50063 +Dana,IA,50064 +Pleasanton,IA,50065 +Dawson,IA,50066 +Decatur,IA,50067 +Derby,IA,50068 +De Soto,IA,50069 +Dexter,IA,50070 +Dows,IA,50071 +Earlham,IA,50072 +Elkhart,IA,50073 +Ellston,IA,50074 +Ellsworth,IA,50075 +Exira,IA,50076 +Galt,IA,50101 +Garden City,IA,50102 +Garden Grove,IA,50103 +Gibson,IA,50104 +Gilman,IA,50106 +Grand Junction,IA,50107 +Grand River,IA,50108 +Granger,IA,50109 +Gray,IA,50110 +Grimes,IA,50111 +Grinnell,IA,50112 +Guthrie Center,IA,50115 +Hamilton,IA,50116 +Hamlin,IA,50117 +Hartford,IA,50118 +Harvey,IA,50119 +Haverhill,IA,50120 +Hubbard,IA,50122 +Humeston,IA,50123 +Huxley,IA,50124 +Spring Hill,IA,50125 +Iowa Falls,IA,50126 +Ira,IA,50127 +Jamaica,IA,50128 +Jefferson,IA,50129 +Jewell,IA,50130 +Johnston,IA,50131 +Kamrar,IA,50132 +Kellerton,IA,50133 +Kelley,IA,50134 +Kellogg,IA,50135 +Keswick,IA,50136 +Knoxville,IA,50138 +Lacona,IA,50139 +Lamoni,IA,50140 +Laurel,IA,50141 +Leighton,IA,50143 +Leon,IA,50144 +Liberty Center,IA,50145 +Linden,IA,50146 +Lineville,IA,50147 +Liscomb,IA,50148 +Lorimor,IA,50149 +Lovilia,IA,50150 +Lucas,IA,50151 +Luther,IA,50152 +Lynnville,IA,50153 +Mc Callsburg,IA,50154 +Macksburg,IA,50155 +Madrid,IA,50156 +Malcom,IA,50157 +Marshalltown,IA,50158 +Maxwell,IA,50161 +Melbourne,IA,50162 +Melcher-Dallas,IA,50163 +Menlo,IA,50164 +Millerton,IA,50165 +Milo,IA,50166 +Minburn,IA,50167 +Mingo,IA,50168 +Mitchellville,IA,50169 +Monroe,IA,50170 +Montezuma,IA,50171 +Guernsey,IA,50172 +Montour,IA,50173 +Murray,IA,50174 +Nevada,IA,50201 +New Providence,IA,50206 +New Sharon,IA,50207 +Newton,IA,50208 +New Virginia,IA,50210 +Norwalk,IA,50211 +Ogden,IA,50212 +Osceola,IA,50213 +Otley,IA,50214 +Panora,IA,50216 +Paton,IA,50217 +Patterson,IA,50218 +Pella,IA,50219 +Perry,IA,50220 +Peru,IA,50222 +Pilot Mound,IA,50223 +Pleasantville,IA,50225 +Polk City,IA,50226 +Popejoy,IA,50227 +Prairie City,IA,50228 +Prole,IA,50229 +Radcliffe,IA,50230 +Randall,IA,50231 +Reasnor,IA,50232 +Redfield,IA,50233 +Rhodes,IA,50234 +Rippey,IA,50235 +Roland,IA,50236 +Runnells,IA,50237 +Russell,IA,50238 +Saint Anthony,IA,50239 +Saint Charles,IA,50240 +Saint Marys,IA,50241 +Searsboro,IA,50242 +Slater,IA,50244 +Stanhope,IA,50246 +State Center,IA,50247 +Story City,IA,50248 +Stratford,IA,50249 +Stuart,IA,50250 +Sully,IA,50251 +Swan,IA,50252 +Thayer,IA,50254 +Tracy,IA,50256 +Truro,IA,50257 +Union,IA,50258 +Van Meter,IA,50261 +Van Wert,IA,50262 +Waukee,IA,50263 +Weldon,IA,50264 +West Des Moines,IA,50265 +What Cheer,IA,50268 +Williams,IA,50271 +Williamson,IA,50272 +Winterset,IA,50273 +Wiota,IA,50274 +Woodburn,IA,50275 +Woodward,IA,50276 +Yale,IA,50277 +Zearing,IA,50278 +Des Moines,IA,50309 +Des Moines,IA,50310 +Windsor Heights,IA,50311 +Des Moines,IA,50312 +Des Moines,IA,50313 +Des Moines,IA,50314 +Des Moines,IA,50315 +Des Moines,IA,50316 +Pleasant Hill,IA,50317 +Des Moines,IA,50320 +Des Moines,IA,50321 +Urbandale,IA,50322 +Clive,IA,50325 +Mason City,IA,50401 +Alexander,IA,50420 +Belmond,IA,50421 +Britt,IA,50423 +Buffalo Center,IA,50424 +Clear Lake,IA,50428 +Corwith,IA,50430 +Crystal Lake,IA,50432 +Dougherty,IA,50433 +Fertile,IA,50434 +Floyd,IA,50435 +Forest City,IA,50436 +Garner,IA,50438 +Goodell,IA,50439 +Grafton,IA,50440 +Hampton,IA,50441 +Hanlontown,IA,50444 +Joice,IA,50446 +Kanawha,IA,50447 +Kensett,IA,50448 +Klemme,IA,50449 +Lake Mills,IA,50450 +Lakota,IA,50451 +Latimer,IA,50452 +Leland,IA,50453 +Little Cedar,IA,50454 +Mc Intire,IA,50455 +Manly,IA,50456 +Meservey,IA,50457 +Nora Springs,IA,50458 +Northwood,IA,50459 +Orchard,IA,50460 +Osage,IA,50461 +Plymouth,IA,50464 +Rake,IA,50465 +Riceville,IA,50466 +Rock Falls,IA,50467 +Rockford,IA,50468 +Rockwell,IA,50469 +Rowan,IA,50470 +Rudd,IA,50471 +Saint Ansgar,IA,50472 +Scarville,IA,50473 +Sheffield,IA,50475 +Stacyville,IA,50476 +Swaledale,IA,50477 +Thompson,IA,50478 +Thornton,IA,50479 +Titonka,IA,50480 +Ventura,IA,50482 +Wesley,IA,50483 +Woden,IA,50484 +Fort Dodge,IA,50501 +Albert City,IA,50510 +Algona,IA,50511 +Armstrong,IA,50514 +Ayrshire,IA,50515 +Badger,IA,50516 +Bancroft,IA,50517 +Barnum,IA,50518 +Bode,IA,50519 +Bradgate,IA,50520 +Burnside,IA,50521 +Burt,IA,50522 +Callender,IA,50523 +Clare,IA,50524 +Clarion,IA,50525 +Curlew,IA,50527 +Cylinder,IA,50528 +Dayton,IA,50530 +Dolliver,IA,50531 +Duncombe,IA,50532 +Eagle Grove,IA,50533 +Early,IA,50535 +Emmetsburg,IA,50536 +Farnhamville,IA,50538 +Fenton,IA,50539 +Fonda,IA,50540 +Gilmore City,IA,50541 +Goldfield,IA,50542 +Gowrie,IA,50543 +Harcourt,IA,50544 +Hardy,IA,50545 +Havelock,IA,50546 +Humboldt,IA,50548 +Jolley,IA,50551 +Knierim,IA,50552 +Knoke,IA,50553 +Laurens,IA,50554 +Ledyard,IA,50556 +Lehigh,IA,50557 +Livermore,IA,50558 +Lone Rock,IA,50559 +Lu Verne,IA,50560 +Lytton,IA,50561 +Mallard,IA,50562 +Manson,IA,50563 +Marathon,IA,50565 +Moorland,IA,50566 +Nemaha,IA,50567 +Newell,IA,50568 +Otho,IA,50569 +Ottosen,IA,50570 +Palmer,IA,50571 +Plover,IA,50573 +Pocahontas,IA,50574 +Pomeroy,IA,50575 +Rembrandt,IA,50576 +Renwick,IA,50577 +Ringsted,IA,50578 +Rockwell City,IA,50579 +Rodman,IA,50580 +Rolfe,IA,50581 +Rutland,IA,50582 +Sac City,IA,50583 +Sioux Rapids,IA,50585 +Somers,IA,50586 +Storm Lake,IA,50588 +Swea City,IA,50590 +Thor,IA,50591 +Vincent,IA,50594 +Webster City,IA,50595 +West Bend,IA,50597 +Whittemore,IA,50598 +Woolstock,IA,50599 +Ackley,IA,50601 +Allison,IA,50602 +Alta Vista,IA,50603 +Aplington,IA,50604 +Aredale,IA,50605 +Arlington,IA,50606 +Aurora,IA,50607 +Austinville,IA,50608 +Beaman,IA,50609 +Bristow,IA,50611 +Buckingham,IA,50612 +Cedar Falls,IA,50613 +Charles City,IA,50616 +Clarksville,IA,50619 +Conrad,IA,50621 +Denver,IA,50622 +Dike,IA,50624 +Dumont,IA,50625 +Dunkerton,IA,50626 +Eldora,IA,50627 +Elma,IA,50628 +Fairbank,IA,50629 +Fredericksburg,IA,50630 +Garwin,IA,50632 +Geneva,IA,50633 +Gladbrook,IA,50635 +Greene,IA,50636 +Grundy Center,IA,50638 +Hansell,IA,50640 +Hazleton,IA,50641 +Holland,IA,50642 +Hudson,IA,50643 +Independence,IA,50644 +Ionia,IA,50645 +Janesville,IA,50647 +Jesup,IA,50648 +Kesley,IA,50649 +Lamont,IA,50650 +La Porte City,IA,50651 +Lincoln,IA,50652 +Marble Rock,IA,50653 +Masonville,IA,50654 +Maynard,IA,50655 +Nashua,IA,50658 +New Hampton,IA,50659 +New Hartford,IA,50660 +Oelwein,IA,50662 +Parkersburg,IA,50665 +Plainfield,IA,50666 +Raymond,IA,50667 +Readlyn,IA,50668 +Reinbeck,IA,50669 +Shell Rock,IA,50670 +Stanley,IA,50671 +Steamboat Rock,IA,50672 +Sumner,IA,50674 +Traer,IA,50675 +Tripoli,IA,50676 +Bremer,IA,50677 +Wellsburg,IA,50680 +Westgate,IA,50681 +Winthrop,IA,50682 +Waterloo,IA,50701 +Waterloo,IA,50702 +Waterloo,IA,50703 +Washburn,IA,50706 +Evansdale,IA,50707 +Nevinville,IA,50801 +Afton,IA,50830 +Bedford,IA,50833 +Benton,IA,50835 +Blockton,IA,50836 +Bridgewater,IA,50837 +Clearfield,IA,50840 +Corning,IA,50841 +Cumberland,IA,50843 +Delphos,IA,50844 +Diagonal,IA,50845 +Fontanelle,IA,50846 +Grant,IA,50847 +Gravity,IA,50848 +Greenfield,IA,50849 +Kent,IA,50850 +Lenox,IA,50851 +Maloy,IA,50852 +Massena,IA,50853 +Mount Ayr,IA,50854 +50855,IA,50855 +Nodaway,IA,50857 +Orient,IA,50858 +Prescott,IA,50859 +Redding,IA,50860 +Shannon City,IA,50861 +Sharpsburg,IA,50862 +Tingley,IA,50863 +Villisca,IA,50864 +Akron,IA,51001 +Alta,IA,51002 +Alton,IA,51003 +Anthon,IA,51004 +Aurelia,IA,51005 +Battle Creek,IA,51006 +Bronson,IA,51007 +Calumet,IA,51009 +Castana,IA,51010 +Cherokee,IA,51012 +Cleghorn,IA,51014 +Correctionville,IA,51016 +Cushing,IA,51018 +Danbury,IA,51019 +Galva,IA,51020 +Granville,IA,51022 +Hawarden,IA,51023 +Hinton,IA,51024 +Holstein,IA,51025 +Hornick,IA,51026 +Ireton,IA,51027 +Kingsley,IA,51028 +Larrabee,IA,51029 +Lawton,IA,51030 +Le Mars,IA,51031 +Linn Grove,IA,51033 +Mapleton,IA,51034 +Marcus,IA,51035 +Maurice,IA,51036 +Meriden,IA,51037 +Merrill,IA,51038 +Moville,IA,51039 +Onawa,IA,51040 +Orange City,IA,51041 +Oto,IA,51044 +Paullina,IA,51046 +Peterson,IA,51047 +Pierson,IA,51048 +Quimby,IA,51049 +Remsen,IA,51050 +Rodney,IA,51051 +Salix,IA,51052 +Schaller,IA,51053 +Sergeant Bluff,IA,51054 +Sloan,IA,51055 +Smithland,IA,51056 +Sutherland,IA,51058 +Turin,IA,51059 +Ute,IA,51060 +Washta,IA,51061 +Westfield,IA,51062 +Whiting,IA,51063 +Sioux City,IA,51101 +Sioux City,IA,51103 +Sioux City,IA,51104 +Sioux City,IA,51105 +Sioux City,IA,51106 +Sioux City,IA,51107 +Sioux City,IA,51108 +Sioux City,IA,51109 +Sioux City,IA,51110 +Sioux City,IA,51111 +Sheldon,IA,51201 +Alvord,IA,51230 +Archer,IA,51231 +Ashton,IA,51232 +Boyden,IA,51234 +Doon,IA,51235 +George,IA,51237 +Hospers,IA,51238 +Hull,IA,51239 +Inwood,IA,51240 +Larchwood,IA,51241 +Little Rock,IA,51243 +Primghar,IA,51245 +Rock Rapids,IA,51246 +Rock Valley,IA,51247 +Sanborn,IA,51248 +Sibley,IA,51249 +Sioux Center,IA,51250 +Spencer,IA,51301 +Arnolds Park,IA,51331 +Dickens,IA,51333 +Estherville,IA,51334 +Everly,IA,51338 +Fostoria,IA,51340 +Graettinger,IA,51342 +Greenville,IA,51343 +Harris,IA,51345 +Hartley,IA,51346 +Lake Park,IA,51347 +Melvin,IA,51350 +Milford,IA,51351 +Ocheyedan,IA,51354 +Okoboji,IA,51355 +Royal,IA,51357 +Ruthven,IA,51358 +Spirit Lake,IA,51360 +Superior,IA,51363 +Terril,IA,51364 +Wallingford,IA,51365 +Webb,IA,51366 +Carroll,IA,51401 +Arcadia,IA,51430 +Arthur,IA,51431 +Aspinwall,IA,51432 +Yetter,IA,51433 +Breda,IA,51436 +Charter Oak,IA,51439 +Dedham,IA,51440 +Deloit,IA,51441 +Denison,IA,51442 +Glidden,IA,51443 +Halbur,IA,51444 +Ida Grove,IA,51445 +Irwin,IA,51446 +Kirkman,IA,51447 +Kiron,IA,51448 +Lake City,IA,51449 +Lake View,IA,51450 +Lanesboro,IA,51451 +Lidderdale,IA,51452 +Lohrville,IA,51453 +Manilla,IA,51454 +Manning,IA,51455 +Odebolt,IA,51458 +Ralston,IA,51459 +Ricketts,IA,51460 +Schleswig,IA,51461 +Scranton,IA,51462 +Templeton,IA,51463 +Vail,IA,51465 +Wall Lake,IA,51466 +Westside,IA,51467 +Manawa,IA,51501 +Council Bluffs,IA,51503 +Carter Lake,IA,51510 +Arion,IA,51520 +Avoca,IA,51521 +Blencoe,IA,51523 +Carson,IA,51525 +Crescent,IA,51526 +Earling,IA,51527 +Dow City,IA,51528 +Earling,IA,51529 +Earling,IA,51530 +Elk Horn,IA,51531 +Elliott,IA,51532 +Emerson,IA,51533 +Glenwood,IA,51534 +Griswold,IA,51535 +Hancock,IA,51536 +Harlan,IA,51537 +Hastings,IA,51540 +Henderson,IA,51541 +Honey Creek,IA,51542 +Kimballton,IA,51543 +Lewis,IA,51544 +Little Sioux,IA,51545 +Logan,IA,51546 +Mc Clelland,IA,51548 +Macedonia,IA,51549 +Magnolia,IA,51550 +Malvern,IA,51551 +Marne,IA,51552 +Minden,IA,51553 +Mineola,IA,51554 +Missouri Valley,IA,51555 +Modale,IA,51556 +Mondamin,IA,51557 +Moorhead,IA,51558 +Neola,IA,51559 +Oakland,IA,51560 +Pacific Junction,IA,51561 +Panama,IA,51562 +Persia,IA,51563 +Pisgah,IA,51564 +Portsmouth,IA,51565 +Red Oak,IA,51566 +Shelby,IA,51570 +Silver City,IA,51571 +Soldier,IA,51572 +Stanton,IA,51573 +Treynor,IA,51575 +Underwood,IA,51576 +Walnut,IA,51577 +Westphalia,IA,51578 +Woodbine,IA,51579 +Shenandoah,IA,51601 +Blanchard,IA,51630 +Braddyville,IA,51631 +Clarinda,IA,51632 +Coin,IA,51636 +College Springs,IA,51637 +Essex,IA,51638 +Farragut,IA,51639 +Hamburg,IA,51640 +Imogene,IA,51645 +New Market,IA,51646 +Northboro,IA,51647 +Percival,IA,51648 +Randolph,IA,51649 +Riverton,IA,51650 +Shambaugh,IA,51651 +Sidney,IA,51652 +Tabor,IA,51653 +Thurman,IA,51654 +Yorktown,IA,51656 +Dubuque,IA,52001 +Dubuque,IA,52002 +Dubuque,IA,52003 +Andrew,IA,52030 +Bellevue,IA,52031 +Bernard,IA,52032 +Cascade,IA,52033 +Colesburg,IA,52035 +Delaware,IA,52036 +Delmar,IA,52037 +Dundee,IA,52038 +Durango,IA,52039 +Dyersville,IA,52040 +Earlville,IA,52041 +Edgewood,IA,52042 +Elkader,IA,52043 +Elkport,IA,52044 +Epworth,IA,52045 +Farley,IA,52046 +Farmersburg,IA,52047 +Garber,IA,52048 +Garnavillo,IA,52049 +Greeley,IA,52050 +Guttenberg,IA,52052 +Holy Cross,IA,52053 +La Motte,IA,52054 +Manchester,IA,52057 +Maquoketa,IA,52060 +Miles,IA,52064 +New Vienna,IA,52065 +North Buena Vist,IA,52066 +Peosta,IA,52068 +Preston,IA,52069 +Sabula,IA,52070 +Saint Donatus,IA,52071 +Saint Olaf,IA,52072 +Sherrill,IA,52073 +Spragueville,IA,52074 +Springbrook,IA,52075 +Strawberry Point,IA,52076 +Volga,IA,52077 +Worthington,IA,52078 +Zwingle,IA,52079 +Decorah,IA,52101 +Burr Oak,IA,52131 +Calmar,IA,52132 +Castalia,IA,52133 +Chester,IA,52134 +Clermont,IA,52135 +Cresco,IA,52136 +Dorchester,IA,52140 +Elgin,IA,52141 +Fayette,IA,52142 +Fort Atkinson,IA,52144 +Harpers Ferry,IA,52146 +Hawkeye,IA,52147 +Jackson Junction,IA,52150 +Lansing,IA,52151 +Lawler,IA,52154 +Lime Springs,IA,52155 +Luana,IA,52156 +Mc Gregor,IA,52157 +Marquette,IA,52158 +Monona,IA,52159 +New Albin,IA,52160 +Ossian,IA,52161 +Postville,IA,52162 +Randalia,IA,52164 +Ridgeway,IA,52165 +Saint Lucas,IA,52166 +Wadena,IA,52169 +Waterville,IA,52170 +Waucoma,IA,52171 +Waukon,IA,52172 +Eldorado,IA,52175 +Ainsworth,IA,52201 +Alburnett,IA,52202 +Amana,IA,52203 +Anamosa,IA,52205 +Atkins,IA,52206 +Baldwin,IA,52207 +Belle Plaine,IA,52208 +Blairstown,IA,52209 +Brandon,IA,52210 +Brooklyn,IA,52211 +Center Junction,IA,52212 +Center Point,IA,52213 +Central City,IA,52214 +Chelsea,IA,52215 +Clarence,IA,52216 +Clutier,IA,52217 +Coggon,IA,52218 +Conroy,IA,52220 +Deep River,IA,52222 +Delhi,IA,52223 +Dysart,IA,52224 +Elberon,IA,52225 +Elwood,IA,52226 +Ely,IA,52227 +Fairfax,IA,52228 +Garrison,IA,52229 +Harper,IA,52231 +Hartwick,IA,52232 +Hiawatha,IA,52233 +Homestead,IA,52236 +Hopkinton,IA,52237 +Iowa City,IA,52240 +Coralville,IA,52241 +Iowa City,IA,52245 +Iowa City,IA,52246 +Kalona,IA,52247 +Keota,IA,52248 +Keystone,IA,52249 +Kinross,IA,52250 +Ladora,IA,52251 +Lisbon,IA,52253 +Lost Nation,IA,52254 +Lowden,IA,52255 +Luzerne,IA,52257 +Marengo,IA,52301 +Marion,IA,52302 +Martelle,IA,52305 +Mechanicsville,IA,52306 +Middle Amana,IA,52307 +Millersburg,IA,52308 +Monmouth,IA,52309 +Monticello,IA,52310 +Mount Auburn,IA,52313 +Mount Vernon,IA,52314 +Newhall,IA,52315 +North English,IA,52316 +North Liberty,IA,52317 +Norway,IA,52318 +Olin,IA,52320 +Onslow,IA,52321 +Oxford,IA,52322 +Oxford Junction,IA,52323 +Palo,IA,52324 +Parnell,IA,52325 +Quasqueton,IA,52326 +Riverside,IA,52327 +Robins,IA,52328 +Rowley,IA,52329 +Ryan,IA,52330 +Scotch Grove,IA,52331 +Shellsburg,IA,52332 +Solon,IA,52333 +South Amana,IA,52334 +South English,IA,52335 +Springville,IA,52336 +Stanwood,IA,52337 +Swisher,IA,52338 +Tama,IA,52339 +Toddville,IA,52341 +Toledo,IA,52342 +Toronto,IA,52343 +Van Horne,IA,52346 +Victor,IA,52347 +Vining,IA,52348 +Vinton,IA,52349 +Walker,IA,52352 +Washington,IA,52353 +Watkins,IA,52354 +Webster,IA,52355 +Wellman,IA,52356 +West Amana,IA,52357 +West Branch,IA,52358 +West Chester,IA,52359 +Williamsburg,IA,52361 +Wyoming,IA,52362 +Cedar Rapids,IA,52401 +Cedar Rapids,IA,52402 +Cedar Rapids,IA,52403 +Cedar Rapids,IA,52404 +Cedar Rapids,IA,52405 +Highland Center,IA,52501 +Agency,IA,52530 +Albia,IA,52531 +Batavia,IA,52533 +Beacon,IA,52534 +Birmingham,IA,52535 +Blakesburg,IA,52536 +Bloomfield,IA,52537 +West Grove,IA,52538 +Brighton,IA,52540 +Cantril,IA,52542 +Cedar,IA,52543 +Centerville,IA,52544 +Chillicothe,IA,52548 +Cincinnati,IA,52549 +Delta,IA,52550 +Douds,IA,52551 +Drakesville,IA,52552 +Eddyville,IA,52553 +Eldon,IA,52554 +Exline,IA,52555 +Fairfield,IA,52556 +Floris,IA,52560 +Fremont,IA,52561 +Hedrick,IA,52563 +Keosauqua,IA,52565 +Kirkville,IA,52566 +Libertyville,IA,52567 +Melrose,IA,52569 +Milton,IA,52570 +Moravia,IA,52571 +Moulton,IA,52572 +Mount Sterling,IA,52573 +Mystic,IA,52574 +Numa,IA,52575 +Ollie,IA,52576 +Oskaloosa,IA,52577 +Packwood,IA,52580 +Plano,IA,52581 +Promise City,IA,52583 +Pulaski,IA,52584 +Richland,IA,52585 +Rose Hill,IA,52586 +Selma,IA,52588 +Seymour,IA,52590 +Sigourney,IA,52591 +Udell,IA,52593 +Unionville,IA,52594 +Burlington,IA,52601 +Argyle,IA,52619 +Bonaparte,IA,52620 +Crawfordsville,IA,52621 +Danville,IA,52623 +Denmark,IA,52624 +Donnellson,IA,52625 +Farmington,IA,52626 +Fort Madison,IA,52627 +Hillsboro,IA,52630 +Houghton,IA,52631 +Keokuk,IA,52632 +Lockridge,IA,52635 +Mediapolis,IA,52637 +Middletown,IA,52638 +Montrose,IA,52639 +Morning Sun,IA,52640 +Mount Pleasant,IA,52641 +Mount Union,IA,52644 +New London,IA,52645 +Oakville,IA,52646 +Olds,IA,52647 +Salem,IA,52649 +Sperry,IA,52650 +Stockport,IA,52651 +Wapello,IA,52653 +Wayland,IA,52654 +West Burlington,IA,52655 +West Point,IA,52656 +Saint Paul,IA,52657 +Wever,IA,52658 +Winfield,IA,52659 +Yarmouth,IA,52660 +Andover,IA,52701 +Atalissa,IA,52720 +Bennett,IA,52721 +Bettendorf,IA,52722 +Blue Grass,IA,52726 +Bryant,IA,52727 +Calamus,IA,52729 +Camanche,IA,52730 +Charlotte,IA,52731 +Clinton,IA,52732 +Columbus Junctio,IA,52738 +Conesville,IA,52739 +De Witt,IA,52742 +Big Rock,IA,52745 +Donahue,IA,52746 +Durant,IA,52747 +Eldridge,IA,52748 +Goose Lake,IA,52750 +Grand Mound,IA,52751 +Le Claire,IA,52753 +Letts,IA,52754 +Lone Tree,IA,52755 +Long Grove,IA,52756 +Moscow,IA,52760 +Muscatine,IA,52761 +New Liberty,IA,52765 +Nichols,IA,52766 +Princeton,IA,52768 +Stockton,IA,52769 +Tipton,IA,52772 +Walcott,IA,52773 +Welton,IA,52774 +West Liberty,IA,52776 +Wheatland,IA,52777 +Wilton,IA,52778 +Davenport,IA,52802 +Davenport,IA,52803 +Davenport,IA,52804 +Davenport,IA,52806 +Davenport,IA,52807 +Atchison,KS,66002 +Baldwin City,KS,66006 +Basehor,KS,66007 +Bendena,KS,66008 +Blue Mound,KS,66010 +Lake Of The Fore,KS,66012 +Bucyrus,KS,66013 +Centerville,KS,66014 +Colony,KS,66015 +Cummings,KS,66016 +Denton,KS,66017 +De Soto,KS,66018 +Easton,KS,66020 +Edgerton,KS,66021 +Effingham,KS,66023 +Eudora,KS,66025 +Fontana,KS,66026 +Fort Leavenworth,KS,66027 +Gardner,KS,66030 +Industrial Airpo,KS,66031 +Garnett,KS,66032 +Greeley,KS,66033 +Highland,KS,66035 +Hillsdale,KS,66036 +Mildred,KS,66039 +La Cygne,KS,66040 +Huron,KS,66041 +Lane,KS,66042 +Lansing,KS,66043 +Lawrence,KS,66044 +Lawrence,KS,66046 +Lawrence,KS,66047 +Leavenworth,KS,66048 +Lawrence,KS,66049 +Lecompton,KS,66050 +Linwood,KS,66052 +Louisburg,KS,66053 +Mc Louth,KS,66054 +Mound City,KS,66056 +Muscotah,KS,66058 +Nortonville,KS,66060 +Olathe,KS,66061 +Olathe,KS,66062 +Osawatomie,KS,66064 +Oskaloosa,KS,66066 +Ottawa,KS,66067 +Ozawkie,KS,66070 +Paola,KS,66071 +Parker,KS,66072 +Perry,KS,66073 +Pleasanton,KS,66075 +Pomona,KS,66076 +Princeton,KS,66078 +Rantoul,KS,66079 +Richmond,KS,66080 +66081,KS,66081 +Spring Hill,KS,66083 +Stilwell,KS,66085 +Tonganoxie,KS,66086 +Severance,KS,66087 +Valley Falls,KS,66088 +Wathena,KS,66090 +Welda,KS,66091 +Wellsville,KS,66092 +Westphalia,KS,66093 +White Cloud,KS,66094 +Williamsburg,KS,66095 +Winchester,KS,66097 +Kansas City,KS,66101 +Kansas City,KS,66102 +Rosedale,KS,66103 +Kansas City,KS,66104 +Kansas City,KS,66105 +Lake Quivira,KS,66106 +Kansas City,KS,66109 +Kansas City,KS,66111 +Kansas City,KS,66112 +Kansas City,KS,66115 +Kansas City,KS,66118 +Countryside,KS,66202 +Shawnee,KS,66203 +Overland Park,KS,66204 +Mission,KS,66205 +Leawood,KS,66206 +Shawnee Mission,KS,66207 +Prairie Village,KS,66208 +Leawood,KS,66209 +Lenexa,KS,66210 +Leawood,KS,66211 +Overland Park,KS,66212 +Overland Park,KS,66213 +Lenexa,KS,66214 +Lenexa,KS,66215 +Shawnee,KS,66216 +Shawnee,KS,66217 +Shawnee,KS,66218 +Lenexa,KS,66219 +Lenexa,KS,66220 +Stanley,KS,66221 +Stanley,KS,66223 +Stanley,KS,66224 +Shawnee,KS,66226 +Lenexa,KS,66227 +Alma,KS,66401 +Auburn,KS,66402 +Axtell,KS,66403 +Baileyville,KS,66404 +Beattie,KS,66406 +Belvue,KS,66407 +Bern,KS,66408 +Berryton,KS,66409 +Blue Rapids,KS,66411 +Bremen,KS,66412 +Burlingame,KS,66413 +Carbondale,KS,66414 +Centralia,KS,66415 +Circleville,KS,66416 +Corning,KS,66417 +Delia,KS,66418 +Denison,KS,66419 +Dover,KS,66420 +Emmett,KS,66422 +Eskridge,KS,66423 +Everest,KS,66424 +Fairview,KS,66425 +Winifred,KS,66427 +Goff,KS,66428 +Grantville,KS,66429 +Harveyville,KS,66431 +Havensville,KS,66432 +Herkimer,KS,66433 +Reserve,KS,66434 +Holton,KS,66436 +Home,KS,66438 +Horton,KS,66439 +Hoyt,KS,66440 +Junction City,KS,66441 +Fort Riley,KS,66442 +Leonardville,KS,66449 +Louisville,KS,66450 +Lyndon,KS,66451 +Manhattan,KS,66502 +Maple Hill,KS,66507 +Marysville,KS,66508 +Mayetta,KS,66509 +Melvern,KS,66510 +Meriden,KS,66512 +Milford,KS,66514 +Morrill,KS,66515 +Netawaka,KS,66516 +Ogden,KS,66517 +Oketo,KS,66518 +Olsburg,KS,66520 +Duluth,KS,66521 +Oneida,KS,66522 +Osage City,KS,66523 +Overbrook,KS,66524 +Paxico,KS,66526 +Powhattan,KS,66527 +Quenemo,KS,66528 +Riley,KS,66531 +Leona,KS,66532 +Rossville,KS,66533 +Sabetha,KS,66534 +Saint George,KS,66535 +Saint Marys,KS,66536 +Scranton,KS,66537 +Kelly,KS,66538 +Silver Lake,KS,66539 +Soldier,KS,66540 +Summerfield,KS,66541 +Tecumseh,KS,66542 +Vassar,KS,66543 +Vliets,KS,66544 +66545,KS,66545 +Wakarusa,KS,66546 +Wamego,KS,66547 +Waterville,KS,66548 +Blaine,KS,66549 +Wetmore,KS,66550 +Onaga,KS,66551 +Whiting,KS,66552 +Randolph,KS,66554 +Topeka,KS,66603 +Topeka,KS,66604 +Topeka,KS,66605 +Topeka,KS,66606 +Topeka,KS,66607 +Topeka,KS,66608 +Topeka,KS,66609 +Topeka,KS,66610 +Topeka,KS,66611 +Topeka,KS,66612 +Topeka,KS,66614 +Topeka,KS,66615 +Topeka,KS,66616 +Topeka,KS,66617 +Topeka,KS,66618 +Pauline,KS,66619 +Hiattville,KS,66701 +Altoona,KS,66710 +Arcadia,KS,66711 +Baxter Springs,KS,66713 +Benedict,KS,66714 +Bronson,KS,66716 +Buffalo,KS,66717 +Chanute,KS,66720 +Cherokee,KS,66724 +Hallowell,KS,66725 +Coyville,KS,66727 +Crestline,KS,66728 +Elsmore,KS,66732 +Erie,KS,66733 +Farlington,KS,66734 +Lafontaine,KS,66736 +Fulton,KS,66738 +Galena,KS,66739 +Galesburg,KS,66740 +Garland,KS,66741 +Girard,KS,66743 +Hepler,KS,66746 +Humboldt,KS,66748 +Carlyle,KS,66749 +La Harpe,KS,66751 +Mc Cune,KS,66753 +Mapleton,KS,66754 +Moran,KS,66755 +Mulberry,KS,66756 +Neodesha,KS,66757 +Neosho Falls,KS,66758 +New Albany,KS,66759 +Piqua,KS,66761 +Radley,KS,66762 +Prescott,KS,66767 +Redfield,KS,66769 +Riverton,KS,66770 +Saint Paul,KS,66771 +Savonburg,KS,66772 +Carona,KS,66773 +Stark,KS,66775 +Thayer,KS,66776 +Toronto,KS,66777 +Treece,KS,66778 +Uniontown,KS,66779 +Walnut,KS,66780 +Lawton,KS,66781 +Yates Center,KS,66783 +Emporia,KS,66801 +Admire,KS,66830 +Bushong,KS,66833 +Alta Vista,KS,66834 +Americus,KS,66835 +Burdick,KS,66838 +Strawn,KS,66839 +Burns,KS,66840 +Cassoday,KS,66842 +Clements,KS,66843 +Cottonwood Falls,KS,66845 +Dunlap,KS,66846 +66847,KS,66847 +Dwight,KS,66849 +Elmdale,KS,66850 +Florence,KS,66851 +Gridley,KS,66852 +Hamilton,KS,66853 +Hartford,KS,66854 +Lebo,KS,66856 +Le Roy,KS,66857 +Antelope,KS,66858 +Lost Springs,KS,66859 +Madison,KS,66860 +Marion,KS,66861 +Matfield Green,KS,66862 +Neosho Rapids,KS,66864 +Olpe,KS,66865 +Peabody,KS,66866 +Reading,KS,66868 +Strong City,KS,66869 +Virgil,KS,66870 +Waverly,KS,66871 +White City,KS,66872 +Wilsey,KS,66873 +Rice,KS,66901 +Agenda,KS,66930 +Ames,KS,66931 +Athol,KS,66932 +Barnes,KS,66933 +Belleville,KS,66935 +Burr Oak,KS,66936 +Clifton,KS,66937 +Clyde,KS,66938 +Courtland,KS,66939 +Cuba,KS,66940 +Esbon,KS,66941 +Formoso,KS,66942 +Greenleaf,KS,66943 +Haddam,KS,66944 +Hanover,KS,66945 +Hollenberg,KS,66946 +Jamestown,KS,66948 +Ionia,KS,66949 +Kensington,KS,66951 +Bellaire,KS,66952 +Linn,KS,66953 +Mahaska,KS,66955 +Mankato,KS,66956 +Morrowville,KS,66958 +Munden,KS,66959 +Narka,KS,66960 +Norway,KS,66961 +Palmer,KS,66962 +Randall,KS,66963 +Republic,KS,66964 +Scandia,KS,66966 +Smith Center,KS,66967 +Washington,KS,66968 +Webber,KS,66970 +Andale,KS,67001 +Andover,KS,67002 +Anthony,KS,67003 +Argonia,KS,67004 +Arkansas City,KS,67005 +Atlanta,KS,67008 +Attica,KS,67009 +Augusta,KS,67010 +Beaumont,KS,67012 +Belle Plaine,KS,67013 +67014,KS,67014 +Bentley,KS,67016 +Benton,KS,67017 +Bluff City,KS,67018 +Burden,KS,67019 +Burrton,KS,67020 +Byers,KS,67021 +Caldwell,KS,67022 +Cambridge,KS,67023 +Cedar Vale,KS,67024 +Cheney,KS,67025 +Clearwater,KS,67026 +Coats,KS,67028 +Coldwater,KS,67029 +Colwich,KS,67030 +Conway Springs,KS,67031 +Corbin,KS,67032 +Penalosa,KS,67035 +Danville,KS,67036 +Derby,KS,67037 +Dexter,KS,67038 +Douglass,KS,67039 +Elbing,KS,67041 +El Dorado,KS,67042 +Eureka,KS,67045 +Fall River,KS,67047 +Freeport,KS,67049 +Garden Plain,KS,67050 +Geuda Springs,KS,67051 +Goddard,KS,67052 +Goessel,KS,67053 +Greensburg,KS,67054 +Halstead,KS,67056 +Hardtner,KS,67057 +Harper,KS,67058 +Haviland,KS,67059 +Haysville,KS,67060 +Hazelton,KS,67061 +Hesston,KS,67062 +Hillsboro,KS,67063 +Isabel,KS,67065 +Iuka,KS,67066 +Belmont,KS,67068 +Kiowa,KS,67070 +Lake City,KS,67071 +Latham,KS,67072 +Lehigh,KS,67073 +Leon,KS,67074 +Maize,KS,67101 +Maple City,KS,67102 +Mayfield,KS,67103 +Medicine Lodge,KS,67104 +Milan,KS,67105 +Milton,KS,67106 +Moundridge,KS,67107 +Mount Hope,KS,67108 +Mullinville,KS,67109 +Mulvane,KS,67110 +Murdock,KS,67111 +Nashville,KS,67112 +Newton,KS,67114 +North Newton,KS,67117 +Norwich,KS,67118 +Oxford,KS,67119 +Peck,KS,67120 +Piedmont,KS,67122 +Potwin,KS,67123 +Pratt,KS,67124 +Protection,KS,67127 +Rago,KS,67128 +Rock,KS,67131 +Rosalia,KS,67132 +Rose Hill,KS,67133 +Sawyer,KS,67134 +Sedgwick,KS,67135 +Climax,KS,67137 +Sharon,KS,67138 +South Haven,KS,67140 +Spivey,KS,67142 +Sun City,KS,67143 +Towanda,KS,67144 +Udall,KS,67146 +Valley Center,KS,67147 +Viola,KS,67149 +Waldron,KS,67150 +Walton,KS,67151 +Wellington,KS,67152 +Whitewater,KS,67154 +Wilmore,KS,67155 +Winfield,KS,67156 +Zenda,KS,67159 +Wichita,KS,67202 +Wichita,KS,67203 +Wichita,KS,67204 +Wichita,KS,67205 +Eastborough,KS,67206 +Eastborough,KS,67207 +Wichita,KS,67208 +Wichita,KS,67209 +Wichita,KS,67210 +Wichita,KS,67211 +Wichita,KS,67212 +Wichita,KS,67213 +Wichita,KS,67214 +Wichita,KS,67215 +Wichita,KS,67216 +Wichita,KS,67217 +Wichita,KS,67218 +Park City,KS,67219 +Bel Aire,KS,67220 +Mc Connell A F B,KS,67221 +Wichita,KS,67223 +Wichita,KS,67226 +Wichita,KS,67227 +Wichita,KS,67228 +Wichita,KS,67230 +Wichita,KS,67231 +Wichita,KS,67232 +Wichita,KS,67233 +Wichita,KS,67235 +Wichita,KS,67236 +Independence,KS,67301 +Altamont,KS,67330 +Bartlett,KS,67332 +Caney,KS,67333 +Cherryvale,KS,67335 +Chetopa,KS,67336 +Coffeyville,KS,67337 +Dennis,KS,67341 +Edna,KS,67342 +Elk City,KS,67344 +Elk Falls,KS,67345 +Grenola,KS,67346 +Havana,KS,67347 +Howard,KS,67349 +Liberty,KS,67351 +Longton,KS,67352 +Moline,KS,67353 +Mound Valley,KS,67354 +Niotaze,KS,67355 +Oswego,KS,67356 +Parsons,KS,67357 +Peru,KS,67360 +Sedan,KS,67361 +Bavaria,KS,67401 +Abilene,KS,67410 +Ada,KS,67414 +Assaria,KS,67416 +Aurora,KS,67417 +Barnard,KS,67418 +Scottsville,KS,67420 +Bennington,KS,67422 +Beverly,KS,67423 +Brookville,KS,67425 +Bushton,KS,67427 +Canton,KS,67428 +Carlton,KS,67429 +Cawker City,KS,67430 +Chapman,KS,67431 +Clay Center,KS,67432 +Delphos,KS,67436 +Downs,KS,67437 +Durham,KS,67438 +Ellsworth,KS,67439 +Enterprise,KS,67441 +Falun,KS,67442 +Galva,KS,67443 +Geneseo,KS,67444 +Glasco,KS,67445 +Glen Elder,KS,67446 +Green,KS,67447 +Gypsum,KS,67448 +Delavan,KS,67449 +Holyrood,KS,67450 +Hope,KS,67451 +Hunter,KS,67452 +Kanopolis,KS,67454 +Westfall,KS,67455 +Lindsborg,KS,67456 +Little River,KS,67457 +Longford,KS,67458 +Lorraine,KS,67459 +Conway,KS,67460 +Manchester,KS,67463 +Marquette,KS,67464 +Mentor,KS,67465 +Miltonvale,KS,67466 +Minneapolis,KS,67467 +Morganville,KS,67468 +Navarre,KS,67469 +New Cambria,KS,67470 +Oakhill,KS,67472 +Osborne,KS,67473 +Portis,KS,67474 +Ramona,KS,67475 +Roxbury,KS,67476 +Simpson,KS,67478 +Smolan,KS,67479 +Solomon,KS,67480 +Sylvan Grove,KS,67481 +Talmage,KS,67482 +Tampa,KS,67483 +Culver,KS,67484 +Tipton,KS,67485 +Wakefield,KS,67487 +Wells,KS,67488 +Wilson,KS,67490 +Windom,KS,67491 +Woodbine,KS,67492 +Hutchinson,KS,67501 +Medora,KS,67502 +South Hutchinson,KS,67505 +Abbyville,KS,67510 +Albert,KS,67511 +Alden,KS,67512 +Alexander,KS,67513 +Arlington,KS,67514 +Arnold,KS,67515 +Bazine,KS,67516 +Beaver,KS,67517 +Beeler,KS,67518 +Belpre,KS,67519 +Bison,KS,67520 +Brownell,KS,67521 +Buhler,KS,67522 +Burdett,KS,67523 +Chase,KS,67524 +Claflin,KS,67525 +Ellinwood,KS,67526 +Garfield,KS,67529 +Heizer,KS,67530 +Haven,KS,67543 +Susank,KS,67544 +Hudson,KS,67545 +Inman,KS,67546 +Kinsley,KS,67547 +La Crosse,KS,67548 +67549,KS,67549 +Radium,KS,67550 +Lewis,KS,67552 +Liebenthal,KS,67553 +Lyons,KS,67554 +Mc Cracken,KS,67556 +Macksville,KS,67557 +Nekoma,KS,67559 +Ness City,KS,67560 +Nickerson,KS,67561 +Odin,KS,67562 +Offerle,KS,67563 +Galatia,KS,67564 +Galatia,KS,67565 +Partridge,KS,67566 +Pawnee Rock,KS,67567 +Plevna,KS,67568 +Pretty Prairie,KS,67570 +Ransom,KS,67572 +Raymond,KS,67573 +Rozel,KS,67574 +Rush Center,KS,67575 +Saint John,KS,67576 +Seward,KS,67577 +Stafford,KS,67578 +Sterling,KS,67579 +67580,KS,67580 +Sylvia,KS,67581 +Timken,KS,67582 +Langdon,KS,67583 +Utica,KS,67584 +Antonino,KS,67601 +Agra,KS,67621 +Almena,KS,67622 +Alton,KS,67623 +Bogue,KS,67625 +Bunker Hill,KS,67626 +Catharine,KS,67627 +Cedar,KS,67628 +Clayton,KS,67629 +Codell,KS,67630 +Collyer,KS,67631 +Damar,KS,67632 +67633,KS,67633 +Dorrance,KS,67634 +Dresden,KS,67635 +Edmond,KS,67636 +Ellis,KS,67637 +Gaylord,KS,67638 +Glade,KS,67639 +Gorham,KS,67640 +Harlan,KS,67641 +Hill City,KS,67642 +Jennings,KS,67643 +Kirwin,KS,67644 +Densmore,KS,67645 +Logan,KS,67646 +Long Island,KS,67647 +Lucas,KS,67648 +Luray,KS,67649 +Morland,KS,67650 +Natoma,KS,67651 +New Almelo,KS,67652 +Norcatur,KS,67653 +Norton,KS,67654 +Ogallah,KS,67656 +Palco,KS,67657 +Paradise,KS,67658 +Penokee,KS,67659 +Pfeifer,KS,67660 +Phillipsburg,KS,67661 +Plainville,KS,67663 +Prairie View,KS,67664 +Russell,KS,67665 +Schoenchen,KS,67667 +Stockton,KS,67669 +Victoria,KS,67671 +Wa Keeney,KS,67672 +Waldo,KS,67673 +Woodston,KS,67675 +Zurich,KS,67676 +Colby,KS,67701 +Atwood,KS,67730 +Bird City,KS,67731 +Brewster,KS,67732 +Edson,KS,67733 +Gem,KS,67734 +Goodland,KS,67735 +Gove,KS,67736 +Grainfield,KS,67737 +Grinnell,KS,67738 +Herndon,KS,67739 +Hoxie,KS,67740 +Kanorado,KS,67741 +Levant,KS,67743 +Ludell,KS,67744 +Mc Donald,KS,67745 +67746,KS,67746 +Monument,KS,67747 +Oakley,KS,67748 +Oberlin,KS,67749 +Park,KS,67751 +Quinter,KS,67752 +Menlo,KS,67753 +Russell Springs,KS,67755 +Wheeler,KS,67756 +Selden,KS,67757 +Sharon Springs,KS,67758 +Studley,KS,67759 +Wallace,KS,67761 +Weskan,KS,67762 +Winona,KS,67764 +Dodge City,KS,67801 +67830,KS,67830 +Ashland,KS,67831 +67833,KS,67833 +Bucklin,KS,67834 +Cimarron,KS,67835 +Copeland,KS,67837 +Deerfield,KS,67838 +Alamota,KS,67839 +Englewood,KS,67840 +Ensign,KS,67841 +Ford,KS,67842 +Fort Dodge,KS,67843 +Fowler,KS,67844 +Garden City,KS,67846 +Hanston,KS,67849 +Healy,KS,67850 +Holcomb,KS,67851 +Ingalls,KS,67853 +Jetmore,KS,67854 +Johnson,KS,67855 +Kalvesta,KS,67856 +Kendall,KS,67857 +Kingsdown,KS,67858 +Kismet,KS,67859 +Lakin,KS,67860 +Leoti,KS,67861 +Manter,KS,67862 +Modoc,KS,67863 +Meade,KS,67864 +Bloom,KS,67865 +67866,KS,67866 +Montezuma,KS,67867 +Pierceville,KS,67868 +Plains,KS,67869 +Satanta,KS,67870 +Friend,KS,67871 +Shields,KS,67874 +Spearville,KS,67876 +Sublette,KS,67877 +Syracuse,KS,67878 +Tribune,KS,67879 +Ulysses,KS,67880 +Wright,KS,67882 +Liberal,KS,67901 +Elkhart,KS,67950 +Hugoton,KS,67951 +Moscow,KS,67952 +Richfield,KS,67953 +Rolla,KS,67954 +Bagdad,KY,40003 +Bardstown,KY,40004 +Bedford,KY,40006 +Bethlehem,KY,40007 +Bloomfield,KY,40008 +Bradfordsville,KY,40009 +Buckner,KY,40010 +Campbellsburg,KY,40011 +Chaplin,KY,40012 +Deatsville,KY,40013 +Crestwood,KY,40014 +Eminence,KY,40019 +Finchville,KY,40022 +Fisherville,KY,40023 +Goshen,KY,40026 +Howardstown,KY,40028 +La Grange,KY,40031 +Lebanon,KY,40033 +Lockport,KY,40036 +Loretto,KY,40037 +Mackville,KY,40040 +Milton,KY,40045 +Mount Eden,KY,40046 +Mount Washington,KY,40047 +New Castle,KY,40050 +Trappist,KY,40051 +Pendleton,KY,40055 +Pewee Valley,KY,40056 +Cropper,KY,40057 +Prospect,KY,40059 +Raywick,KY,40060 +Saint Catharine,KY,40061 +Saint Francis,KY,40062 +Shelbyville,KY,40065 +Simpsonville,KY,40067 +Smithfield,KY,40068 +Maud,KY,40069 +Sulphur,KY,40070 +Taylorsville,KY,40071 +Turners Station,KY,40075 +Waddy,KY,40076 +Westport,KY,40077 +Willisburg,KY,40078 +40103,KY,40103 +Battletown,KY,40104 +Big Spring,KY,40106 +Boston,KY,40107 +Brandenburg,KY,40108 +Brooks,KY,40109 +Cloverport,KY,40111 +Constantine,KY,40114 +Custer,KY,40115 +Ekron,KY,40117 +Fairdale,KY,40118 +Glen Dean,KY,40119 +Fort Knox,KY,40121 +Garfield,KY,40140 +40141,KY,40141 +Guston,KY,40142 +Mooleyville,KY,40143 +Locust Hill,KY,40144 +Hudson,KY,40145 +Irvington,KY,40146 +Lebanon Junction,KY,40150 +Mc Daniels,KY,40152 +Payneville,KY,40157 +Radcliff,KY,40160 +Rhodelia,KY,40161 +Rineyville,KY,40162 +40163,KY,40163 +Se Ree,KY,40164 +Shepherdsville,KY,40165 +Stephensport,KY,40170 +Union Star,KY,40171 +Vine Grove,KY,40175 +Webster,KY,40176 +West Point,KY,40177 +Westview,KY,40178 +Louisville,KY,40202 +Louisville,KY,40203 +Louisville,KY,40204 +Louisville,KY,40205 +Saint Matthews,KY,40206 +Saint Matthews,KY,40207 +Louisville,KY,40208 +Louisville,KY,40209 +Louisville,KY,40210 +Louisville,KY,40211 +Louisville,KY,40212 +Louisville,KY,40213 +Louisville,KY,40214 +Louisville,KY,40215 +Shively,KY,40216 +Louisville,KY,40217 +Buechel,KY,40218 +Okolona,KY,40219 +Louisville,KY,40220 +Lyndon,KY,40222 +Anchorage,KY,40223 +Buechel,KY,40228 +Okolona,KY,40229 +Lyndon,KY,40241 +Lyndon,KY,40242 +Middletown,KY,40243 +Louisville,KY,40245 +Pleasure Ridge P,KY,40258 +Valley Station,KY,40272 +Fern Creek,KY,40291 +Jeffersontown,KY,40299 +Carlisle,KY,40311 +Westbend,KY,40312 +Clearfield,KY,40313 +Denniston,KY,40316 +Scranton,KY,40322 +Georgetown,KY,40324 +Gratz,KY,40327 +Gravel Switch,KY,40328 +Cornishville,KY,40330 +Jinks,KY,40336 +Jeffersonville,KY,40337 +Keene,KY,40339 +Lamero,KY,40341 +Lawrenceburg,KY,40342 +Mariba,KY,40345 +Means,KY,40346 +Midway,KY,40347 +Moorefield,KY,40350 +Morehead,KY,40351 +Mount Sterling,KY,40353 +New Liberty,KY,40355 +Nicholasville,KY,40356 +Olympia,KY,40358 +Owenton,KY,40359 +Owingsville,KY,40360 +Paris,KY,40361 +Pomeroyton,KY,40365 +Sadieville,KY,40370 +Salt Lick,KY,40371 +Bondville,KY,40372 +Sharpsburg,KY,40374 +Slade,KY,40376 +Stamping Ground,KY,40379 +Patsey,KY,40380 +Versailles,KY,40383 +Bybee,KY,40385 +Korea,KY,40387 +High Bridge,KY,40390 +Winchester,KY,40391 +Moores Creek,KY,40402 +Berea,KY,40403 +Brodhead,KY,40409 +Cobhill,KY,40415 +Conway,KY,40417 +Crab Orchard,KY,40419 +Danville,KY,40422 +Dreyfus,KY,40426 +Hustonville,KY,40437 +Junction City,KY,40440 +Kings Mountain,KY,40442 +Lancaster,KY,40444 +Livingston,KY,40445 +Clover Bottom,KY,40447 +Climax,KY,40456 +Orlando,KY,40460 +Paint Lick,KY,40461 +Parksville,KY,40464 +Perryville,KY,40468 +Pryse,KY,40471 +Ravenna,KY,40472 +Richmond,KY,40475 +Sandgap,KY,40481 +Stanford,KY,40484 +Elias,KY,40486 +Waynesburg,KY,40489 +Lexington,KY,40502 +Lexington,KY,40503 +Lexington,KY,40504 +Lexington,KY,40505 +Lexington,KY,40507 +Lexington,KY,40508 +Lexington,KY,40509 +Lexington,KY,40510 +Lexington,KY,40511 +Lexington,KY,40513 +Lexington,KY,40514 +Lexington,KY,40515 +Lexington,KY,40516 +Lexington,KY,40517 +Hatton,KY,40601 +Corbin,KY,40701 +Bush,KY,40724 +Symbol,KY,40729 +Gray,KY,40734 +Keavy,KY,40737 +Lily,KY,40740 +Sasser,KY,40741 +Nevisdale,KY,40754 +Rockholds,KY,40759 +Siler,KY,40763 +Pleasant View,KY,40769 +Woodbine,KY,40771 +Ages Brookside,KY,40801 +Baxter,KY,40806 +Benham,KY,40807 +Big Laurel,KY,40808 +Lewis Creek,KY,40810 +Calvin,KY,40813 +Crummies,KY,40815 +40817,KY,40817 +Coalgood,KY,40818 +Coldiron,KY,40819 +Cranks,KY,40820 +Cumberland,KY,40823 +Dayhoit,KY,40824 +Dizney,KY,40825 +Eolia,KY,40826 +Louellen,KY,40828 +Grays Knob,KY,40829 +Gulston,KY,40830 +Chevrolet,KY,40831 +Holmes Mill,KY,40843 +Hulen,KY,40845 +Keith,KY,40846 +Kenvir,KY,40847 +Lejunior,KY,40849 +Lynch,KY,40855 +Mozelle,KY,40858 +Oven Fork,KY,40861 +Partridge,KY,40862 +Pathfork,KY,40863 +Putney,KY,40865 +Smith,KY,40867 +Stinnett,KY,40868 +Totz,KY,40870 +Wallins Creek,KY,40873 +Arjay,KY,40902 +Artemus,KY,40903 +40905,KY,40905 +Bailey Switch,KY,40906 +Beverly,KY,40913 +Big Creek,KY,40914 +Bimble,KY,40915 +Bryants Store,KY,40921 +Cannon,KY,40923 +Closplint,KY,40927 +Dewitt,KY,40930 +Salt Gum,KY,40935 +Fonde,KY,40940 +Girdler,KY,40943 +Green Road,KY,40946 +Heidrick,KY,40949 +Hinkle,KY,40953 +Kettle Island,KY,40958 +Bright Shade,KY,40962 +Mary Alice,KY,40964 +Middlesboro,KY,40965 +Mills,KY,40970 +Oneida,KY,40972 +Callaway,KY,40977 +Roark,KY,40979 +40980,KY,40980 +Scalf,KY,40982 +Sextons Creek,KY,40983 +Stoney Fork,KY,40988 +Trosper,KY,40995 +Walker,KY,40997 +Woollum,KY,40999 +Alexandria,KY,41001 +Augusta,KY,41002 +Berry,KY,41003 +Brooksville,KY,41004 +Rabbit Hash,KY,41005 +Butler,KY,41006 +California,KY,41007 +Carrollton,KY,41008 +Corinth,KY,41010 +Covington,KY,41011 +Rouse,KY,41014 +Latonia,KY,41015 +Ludlow,KY,41016 +Dixie,KY,41017 +Erlanger,KY,41018 +Crittenden,KY,41030 +Cynthiana,KY,41031 +Demossville,KY,41033 +Dover,KY,41034 +Dry Ridge,KY,41035 +Ewing,KY,41039 +Falmouth,KY,41040 +Flemingsburg,KY,41041 +Florence,KY,41042 +Foster,KY,41043 +Germantown,KY,41044 +Ghent,KY,41045 +Glencoe,KY,41046 +Hebron,KY,41048 +Hillsboro,KY,41049 +Independence,KY,41051 +Jonesville,KY,41052 +Mays Lick,KY,41055 +Limestone Sq,KY,41056 +Melbourne,KY,41059 +Morning View,KY,41063 +Mount Olivet,KY,41064 +Southgate,KY,41071 +Bellevue,KY,41073 +Dayton,KY,41074 +Fort Thomas,KY,41075 +Newport,KY,41076 +Petersburg,KY,41080 +Sanders,KY,41083 +Silver Grove,KY,41085 +Sparta,KY,41086 +Union,KY,41091 +Verona,KY,41092 +Wallingford,KY,41093 +Walton,KY,41094 +Warsaw,KY,41095 +Williamstown,KY,41097 +Worthville,KY,41098 +Westwood,KY,41101 +Ashland,KY,41102 +Argillite,KY,41121 +Blaine,KY,41124 +Camp Dix,KY,41127 +Catlettsburg,KY,41129 +Denton,KY,41132 +Head Of Grassy,KY,41135 +Firebrick,KY,41137 +Flatwoods,KY,41139 +Garrison,KY,41141 +Fultz,KY,41143 +Lynn,KY,41144 +Hitchins,KY,41146 +Isonville,KY,41149 +Martha,KY,41159 +Oldtown,KY,41163 +Lawton,KY,41164 +Quincy,KY,41166 +Rush,KY,41168 +Raceland,KY,41169 +Saint Paul,KY,41170 +Burke,KY,41171 +South Portsmouth,KY,41174 +Maloneton,KY,41175 +Stephens,KY,41177 +41178,KY,41178 +Trinity,KY,41179 +Webbville,KY,41180 +Worthington,KY,41183 +Tollesboro,KY,41189 +Adams,KY,41201 +Boons Camp,KY,41204 +Davella,KY,41214 +Denver,KY,41215 +East Point,KY,41216 +Elna,KY,41219 +Fuget,KY,41220 +Hagerhill,KY,41222 +Job,KY,41224 +41225,KY,41225 +Keaton,KY,41226 +Leander,KY,41228 +Clifford,KY,41230 +Lovely,KY,41231 +Meally,KY,41234 +Offutt,KY,41237 +Manila,KY,41238 +Nippa,KY,41240 +Laura,KY,41250 +River,KY,41254 +Sitka,KY,41255 +Barnetts Creek,KY,41256 +Stambaugh,KY,41257 +Riceville,KY,41258 +Thelma,KY,41260 +Davisport,KY,41262 +Tutor Key,KY,41263 +Van Lear,KY,41265 +Fuget,KY,41266 +Hode,KY,41267 +Whitehouse,KY,41269 +Williamsport,KY,41271 +Wittensville,KY,41274 +Flat,KY,41301 +Altro,KY,41306 +Vada,KY,41311 +Morris Fork,KY,41314 +Burkhart,KY,41315 +41316,KY,41316 +Clayhole,KY,41317 +Decoy,KY,41321 +Gillmore,KY,41327 +Green Hall,KY,41328 +Haddix,KY,41331 +Grassy Creek,KY,41332 +Island City,KY,41338 +Canoe,KY,41339 +Lambric,KY,41340 +Lee City,KY,41342 +Leeco,KY,41343 +Little,KY,41346 +Hardshell,KY,41348 +Mistletoe,KY,41351 +Noctor,KY,41357 +Old Landing,KY,41358 +41359,KY,41359 +Pine Ridge,KY,41360 +Quicksand,KY,41363 +Ricetown,KY,41364 +Rogers,KY,41365 +Rousseau,KY,41366 +Rowdy,KY,41367 +Saldee,KY,41369 +41370,KY,41370 +Talbert,KY,41377 +Vancleve,KY,41385 +Vincent,KY,41386 +Whick,KY,41390 +41393,KY,41393 +Zachariah,KY,41396 +Zoe,KY,41397 +41401,KY,41401 +Caney,KY,41407 +Carver,KY,41409 +Cottle,KY,41412 +Edna,KY,41419 +Elkfork,KY,41421 +Elsie,KY,41422 +Ezel,KY,41425 +41429,KY,41429 +41431,KY,41431 +Hendricks,KY,41441 +Lenox,KY,41447 +Royalton,KY,41464 +Bethanna,KY,41465 +Seitz,KY,41466 +Blairs Mill,KY,41472 +White Oak,KY,41474 +Broad Bottom,KY,41501 +South Williamson,KY,41503 +Ashcamp,KY,41512 +Belcher,KY,41513 +Belfry,KY,41514 +Canada,KY,41519 +Senterville,KY,41522 +Biggs,KY,41524 +Forest Hills,KY,41527 +Freeburn,KY,41528 +Aflex,KY,41529 +Hardy,KY,41531 +Huddy,KY,41535 +Jamboree,KY,41536 +Payne Gap,KY,41537 +Kimper,KY,41539 +Lick Creek,KY,41540 +Mc Andrews,KY,41543 +Mc Carr,KY,41544 +Mc Combs,KY,41545 +Mc Veigh,KY,41546 +Mouthcard,KY,41548 +Paw Paw,KY,41551 +Phelps,KY,41553 +Phyllis,KY,41554 +Pinsonfork,KY,41555 +Fishtrap,KY,41557 +Regina,KY,41559 +Robinson Creek,KY,41560 +Shelbiana,KY,41562 +Shelby Gap,KY,41563 +Sidney,KY,41564 +Speight,KY,41565 +Steele,KY,41566 +Stone,KY,41567 +Argo,KY,41568 +Turkey Creek,KY,41570 +Varney,KY,41571 +Etty,KY,41572 +Allen,KY,41601 +Auxier,KY,41602 +Banner,KY,41603 +Ligon,KY,41604 +Betsy Layne,KY,41605 +Bevinsville,KY,41606 +Blue River,KY,41607 +Craynor,KY,41614 +Dana,KY,41615 +David,KY,41616 +Eastern,KY,41622 +Endicott,KY,41626 +Estill,KY,41627 +Galveston,KY,41629 +Garrett,KY,41630 +Grethel,KY,41631 +Waldo,KY,41632 +Halo,KY,41633 +Harold,KY,41635 +Buckingham,KY,41636 +Pyrmid,KY,41637 +Honaker,KY,41639 +Elmrock,KY,41640 +Ivel,KY,41642 +Lackey,KY,41643 +Langley,KY,41645 +East Mc Dowell,KY,41647 +41648,KY,41648 +Hite,KY,41649 +Emma,KY,41653 +Printer,KY,41655 +Stanville,KY,41659 +Teaberry,KY,41660 +Wayland,KY,41666 +Darfork,KY,41701 +Ary,KY,41712 +Bear Branch,KY,41714 +Blue Diamond,KY,41719 +Buckhorn,KY,41721 +Tribbey,KY,41722 +Busy,KY,41723 +Carrie,KY,41725 +Chavies,KY,41727 +Cinda,KY,41728 +Combs,KY,41729 +Confluence,KY,41730 +Ulvah,KY,41731 +Cutshin,KY,41732 +Daisy,KY,41733 +Delphia,KY,41735 +Dice,KY,41736 +Bearville,KY,41740 +Fisty,KY,41743 +Gays Creek,KY,41745 +Happy,KY,41746 +Dryhill,KY,41749 +Napfor,KY,41754 +Leatherwood,KY,41756 +Anco,KY,41759 +Scuddy,KY,41760 +Slemp,KY,41763 +Smilax,KY,41764 +Talcum,KY,41765 +Vest,KY,41772 +Vicco,KY,41773 +Farler,KY,41774 +Wendover,KY,41775 +Frew,KY,41776 +Big Rock,KY,41777 +Amburgey,KY,41801 +Carcassonne,KY,41804 +Brinkley,KY,41805 +Crown,KY,41811 +Deane,KY,41812 +Ermine,KY,41815 +Larkslane,KY,41817 +Gilly,KY,41819 +Skyline,KY,41821 +Hindman,KY,41822 +Hollybush,KY,41823 +Isom,KY,41824 +Jackhorn,KY,41825 +Jeremiah,KY,41826 +Puncheon,KY,41828 +Kona,KY,41829 +Soft Shell,KY,41831 +Letcher,KY,41832 +Linefork,KY,41833 +Littcarr,KY,41834 +Mallie,KY,41836 +Millstone,KY,41838 +Mousie,KY,41839 +Fleming Neon,KY,41840 +Omaha,KY,41843 +Raven,KY,41844 +Premium,KY,41845 +Redfox,KY,41847 +Roxana,KY,41848 +Seco,KY,41849 +Thornton,KY,41855 +Day Rural,KY,41858 +Dema,KY,41859 +Raven,KY,41861 +Dry Creek,KY,41862 +Paducah,KY,42001 +Paducah,KY,42003 +Almo,KY,42020 +Arlington,KY,42021 +Bardwell,KY,42023 +Barlow,KY,42024 +Benton,KY,42025 +Boaz,KY,42027 +Burna,KY,42028 +Calvert City,KY,42029 +Clinton,KY,42031 +Columbus,KY,42032 +Cunningham,KY,42035 +Dexter,KY,42036 +Eddyville,KY,42038 +Fancy Farm,KY,42039 +Farmington,KY,42040 +Crutchfield,KY,42041 +Gilbertsville,KY,42044 +Iuka,KY,42045 +Hampton,KY,42047 +Hardin,KY,42048 +Hazel,KY,42049 +Hickman,KY,42050 +Hickory,KY,42051 +Kevil,KY,42053 +Kirksey,KY,42054 +Kuttawa,KY,42055 +La Center,KY,42056 +Ledbetter,KY,42058 +Marion,KY,42064 +Mayfield,KY,42066 +Melber,KY,42069 +Murray,KY,42071 +New Concord,KY,42076 +Salem,KY,42078 +Sedalia,KY,42079 +Carrsville,KY,42081 +Symsonia,KY,42082 +Tiline,KY,42083 +Water Valley,KY,42085 +West Paducah,KY,42086 +Wickliffe,KY,42087 +Wingo,KY,42088 +Plum Springs,KY,42101 +Bowling Green,KY,42103 +Bowling Green,KY,42104 +Adolphus,KY,42120 +Alvaton,KY,42122 +Austin,KY,42123 +Beaumont,KY,42124 +Cave City,KY,42127 +Subtle,KY,42129 +Eighty Eight,KY,42130 +Etoile,KY,42131 +Fountain Run,KY,42133 +Franklin,KY,42134 +Gamaliel,KY,42140 +Glasgow,KY,42141 +Hestand,KY,42151 +Holland,KY,42153 +Knob Lick,KY,42154 +Lamb,KY,42155 +Lucas,KY,42156 +Mount Herman,KY,42157 +Oakland,KY,42159 +Park City,KY,42160 +Rocky Hill,KY,42163 +Scottsville,KY,42164 +Summer Shade,KY,42166 +T Ville,KY,42167 +Willow Shade,KY,42169 +Woodburn,KY,42170 +Smiths Grove,KY,42171 +Adairville,KY,42202 +Allensville,KY,42204 +Auburn,KY,42206 +Bee Spring,KY,42207 +Reedyville,KY,42210 +Golden Pond,KY,42211 +Center,KY,42214 +Cerulean,KY,42215 +Crofton,KY,42217 +Elkton,KY,42220 +Fort Campbell,KY,42223 +Gracey,KY,42232 +Tiny Town,KY,42234 +Herndon,KY,42236 +Hopkinsville,KY,42240 +Huff,KY,42250 +Jetson,KY,42252 +La Fayette,KY,42254 +Lewisburg,KY,42256 +Lindseyville,KY,42257 +Mammoth Cave Nat,KY,42259 +Logansport,KY,42261 +Oak Grove,KY,42262 +Olmstead,KY,42265 +Pembroke,KY,42266 +Quality,KY,42268 +Rochester,KY,42273 +Browning,KY,42274 +Roundhill,KY,42275 +Daysville,KY,42276 +Sharon Grove,KY,42280 +Sunfish,KY,42284 +Kyrock,KY,42285 +Trenton,KY,42286 +Welchs Creek,KY,42287 +Owensboro,KY,42301 +Owensboro,KY,42303 +Beaver Dam,KY,42320 +Beech Creek,KY,42321 +Beechmont,KY,42323 +Belton,KY,42324 +Bremen,KY,42325 +Browder,KY,42326 +Calhoun,KY,42327 +Centertown,KY,42328 +Central City,KY,42330 +Cromwell,KY,42333 +Drakesboro,KY,42337 +Dundee,KY,42338 +Dunmor,KY,42339 +42340,KY,42340 +Fordsville,KY,42343 +Graham,KY,42344 +Greenville,KY,42345 +Hartford,KY,42347 +Hawesville,KY,42348 +Horse Branch,KY,42349 +Island,KY,42350 +Lewisport,KY,42351 +Livermore,KY,42352 +Maceo,KY,42355 +Narrows,KY,42358 +Olaton,KY,42361 +Penrod,KY,42365 +Philpot,KY,42366 +Reynolds Station,KY,42368 +Rockport,KY,42369 +Rumsey,KY,42371 +Sacramento,KY,42372 +Utica,KY,42376 +Whitesville,KY,42378 +Clay,KY,42404 +Corydon,KY,42406 +Dawson Springs,KY,42408 +Dixon,KY,42409 +Earlington,KY,42410 +Fredonia,KY,42411 +Hanson,KY,42413 +Henderson,KY,42420 +Madisonville,KY,42431 +Manitou,KY,42436 +Henshaw,KY,42437 +Nebo,KY,42441 +Nortonville,KY,42442 +Princeton,KY,42445 +Providence,KY,42450 +Reed,KY,42451 +Robards,KY,42452 +Saint Charles,KY,42453 +Sebree,KY,42455 +Slaughters,KY,42456 +Spottsville,KY,42458 +Sturgis,KY,42459 +Uniontown,KY,42461 +Waverly,KY,42462 +White Plains,KY,42464 +Alcalde,KY,42501 +Bethelridge,KY,42516 +Bronston,KY,42518 +Sloans Valley,KY,42519 +Dunnville,KY,42528 +Jabez,KY,42532 +Liberty,KY,42539 +Middleburg,KY,42541 +Pointer,KY,42544 +Science Hill,KY,42553 +Shopville,KY,42554 +Sloans Valley,KY,42555 +Tateville,KY,42558 +Yosemite,KY,42566 +Pulaski,KY,42567 +Aaron,KY,42601 +Albany,KY,42602 +Alpha,KY,42603 +Coopersville,KY,42611 +Delta,KY,42613 +Jamestown,KY,42629 +Pueblo,KY,42633 +Parkers Lake,KY,42634 +Hollyhill,KY,42635 +Revelo,KY,42638 +Rockybranch,KY,42640 +Webbs Cross Road,KY,42642 +Sawyer,KY,42643 +Stearns,KY,42647 +Strunk,KY,42649 +Wiborg,KY,42653 +Windy,KY,42655 +E Town,KY,42701 +Bakerton,KY,42711 +Big Clifty,KY,42712 +Bonnieville,KY,42713 +Bow,KY,42714 +Breeding,KY,42715 +Buffalo,KY,42716 +Burkesville,KY,42717 +Campbellsville,KY,42718 +Caneyville,KY,42721 +Canmer,KY,42722 +Casey Creek,KY,42723 +Stephensburg,KY,42724 +Wax,KY,42726 +Montpelier,KY,42728 +Cub Run,KY,42729 +Cundiff,KY,42730 +Dubre,KY,42731 +E View,KY,42732 +Elk Horn,KY,42733 +Fairplay,KY,42735 +Finley,KY,42736 +Glendale,KY,42740 +Glens Fork,KY,42741 +Gradyville,KY,42742 +Greensburg,KY,42743 +Hardyville,KY,42746 +Hodgenville,KY,42748 +Horse Cave,KY,42749 +Kettle,KY,42752 +Knifley,KY,42753 +Sadler,KY,42754 +Magnolia,KY,42757 +Milltown,KY,42761 +Millwood,KY,42762 +Mount Sherman,KY,42764 +Munfordville,KY,42765 +Peytonsburg,KY,42768 +Sonora,KY,42776 +Summersville,KY,42782 +Upton,KY,42784 +White Mills,KY,42788 +Metairie,LA,70001 +Metairie,LA,70002 +Metairie,LA,70003 +Metairie,LA,70005 +Metairie,LA,70006 +Des Allemands,LA,70030 +Ama,LA,70031 +Arabi,LA,70032 +Barataria,LA,70036 +Belle Chasse,LA,70037 +Boutte,LA,70039 +Braithwaite,LA,70040 +Buras,LA,70041 +Chalmette,LA,70043 +New Sarpy,LA,70047 +Edgard,LA,70049 +Garyville,LA,70051 +Gramercy,LA,70052 +Gretna,LA,70053 +Terrytown,LA,70056 +Hahnville,LA,70057 +Harvey,LA,70058 +Kenner,LA,70062 +Kenner,LA,70065 +Lafitte,LA,70067 +La Place,LA,70068 +Luling,LA,70070 +Lutcher,LA,70071 +Marrero,LA,70072 +Meraux,LA,70075 +Norco,LA,70079 +Paradis,LA,70080 +Port Sulphur,LA,70083 +Reserve,LA,70084 +Saint Bernard,LA,70085 +Saint James,LA,70086 +Saint Rose,LA,70087 +Vacherie,LA,70090 +Venice,LA,70091 +Violet,LA,70092 +Bridge City,LA,70094 +New Orleans,LA,70112 +New Orleans,LA,70113 +New Orleans,LA,70114 +New Orleans,LA,70115 +New Orleans,LA,70116 +New Orleans,LA,70117 +New Orleans,LA,70118 +New Orleans,LA,70119 +Jefferson,LA,70121 +New Orleans,LA,70122 +Harahan,LA,70123 +New Orleans,LA,70124 +New Orleans,LA,70125 +New Orleans,LA,70126 +New Orleans,LA,70127 +New Orleans,LA,70128 +New Orleans,LA,70129 +New Orleans,LA,70130 +New Orleans,LA,70131 +Thibodaux,LA,70301 +Pierre Part,LA,70339 +Amelia,LA,70340 +Belle Rose,LA,70341 +Berwick,LA,70342 +Bourg,LA,70343 +Chauvin,LA,70344 +Cut Off,LA,70345 +Donaldsonville,LA,70346 +Dulac,LA,70353 +Galliano,LA,70354 +Gheens,LA,70355 +Gibson,LA,70356 +Golden Meadow,LA,70357 +Grand Isle,LA,70358 +Gray,LA,70359 +Houma,LA,70360 +Houma,LA,70363 +Houma,LA,70364 +Labadieville,LA,70372 +Lockport,LA,70374 +Mathews,LA,70375 +Montegut,LA,70377 +Morgan City,LA,70380 +Napoleonville,LA,70390 +Patterson,LA,70392 +Raceland,LA,70394 +Schriever,LA,70395 +Theriot,LA,70397 +Hammond,LA,70401 +Hammond,LA,70403 +Abita Springs,LA,70420 +Amite,LA,70422 +Angie,LA,70426 +Bogalusa,LA,70427 +Bush,LA,70431 +Covington,LA,70433 +Fluker,LA,70436 +Folsom,LA,70437 +Franklinton,LA,70438 +Greensburg,LA,70441 +Independence,LA,70443 +Kentwood,LA,70444 +Lacombe,LA,70445 +Loranger,LA,70446 +Madisonville,LA,70447 +Mandeville,LA,70448 +Maurepas,LA,70449 +Mount Hermon,LA,70450 +Pearl River,LA,70452 +Pine Grove,LA,70453 +Ponchatoula,LA,70454 +Robert,LA,70455 +Roseland,LA,70456 +Slidell,LA,70458 +Slidell,LA,70460 +Slidell,LA,70461 +Springfield,LA,70462 +Tickfaw,LA,70466 +Varnado,LA,70467 +Lafayette,LA,70501 +Lafayette,LA,70503 +Lafayette,LA,70506 +Lafayette,LA,70507 +Lafayette,LA,70508 +Forked Island,LA,70510 +Arnaudville,LA,70512 +Baldwin,LA,70514 +Basile,LA,70515 +Branch,LA,70516 +Henderson,LA,70517 +Broussard,LA,70518 +Carencro,LA,70520 +Church Point,LA,70525 +Crowley,LA,70526 +Delcambre,LA,70528 +Duson,LA,70529 +Egan,LA,70531 +Elton,LA,70532 +Erath,LA,70533 +Eunice,LA,70535 +Evangeline,LA,70537 +Franklin,LA,70538 +Gueydan,LA,70542 +Iota,LA,70543 +Jeanerette,LA,70544 +Jennings,LA,70546 +Kaplan,LA,70548 +Lake Arthur,LA,70549 +Loreauville,LA,70552 +Mamou,LA,70554 +Maurice,LA,70555 +Midland,LA,70559 +New Iberia,LA,70560 +Opelousas,LA,70570 +Port Barre,LA,70577 +Rayne,LA,70578 +Roanoke,LA,70581 +Saint Martinvill,LA,70582 +Scott,LA,70583 +Cankton,LA,70584 +Ville Platte,LA,70586 +Washington,LA,70589 +Welsh,LA,70591 +Youngsville,LA,70592 +Lake Charles,LA,70601 +Lake Charles,LA,70605 +Lake Charles,LA,70611 +Bell City,LA,70630 +Cameron,LA,70631 +Creole,LA,70632 +Dequincy,LA,70633 +Deridder,LA,70634 +Dry Creek,LA,70637 +Evans,LA,70639 +Grand Chenier,LA,70643 +Hackberry,LA,70645 +Iowa,LA,70647 +Kinder,LA,70648 +Lacassine,LA,70650 +Longville,LA,70652 +Fields,LA,70653 +Mittie,LA,70654 +Oberlin,LA,70655 +Pitkin,LA,70656 +Ragley,LA,70657 +Reeves,LA,70658 +Singer,LA,70660 +Starks,LA,70661 +Sugartown,LA,70662 +Sulphur,LA,70663 +Vinton,LA,70668 +Westlake,LA,70669 +Addis,LA,70710 +Albany,LA,70711 +Angola,LA,70712 +Baker,LA,70714 +Batchelor,LA,70715 +Blanks,LA,70717 +Brusly,LA,70719 +Bueche,LA,70720 +Point Clair,LA,70721 +Clinton,LA,70722 +Convent,LA,70723 +Darrow,LA,70725 +Port Vincent,LA,70726 +Erwinville,LA,70729 +Ethel,LA,70730 +Fordoche,LA,70732 +French Settlemen,LA,70733 +Geismar,LA,70734 +Glynn,LA,70736 +Gonzales,LA,70737 +Greenwell Spring,LA,70739 +Grosse Tete,LA,70740 +Holden,LA,70744 +The Bluffs,LA,70748 +Jarreau,LA,70749 +Krotz Springs,LA,70750 +Lakeland,LA,70752 +Lettsworth,LA,70753 +Livingston,LA,70754 +Livonia,LA,70755 +Lottie,LA,70756 +Ramah,LA,70757 +Morganza,LA,70759 +New Roads,LA,70760 +Norwood,LA,70761 +Oscar,LA,70762 +Paulina,LA,70763 +Plaquemine,LA,70764 +Port Allen,LA,70767 +Galvez,LA,70769 +Pride,LA,70770 +Rosedale,LA,70772 +Rougon,LA,70773 +Saint Amant,LA,70774 +Bains,LA,70775 +Iberville,LA,70776 +Slaughter,LA,70777 +Sorrento,LA,70778 +Sunshine,LA,70780 +Torbert,LA,70781 +Ventress,LA,70783 +Walker,LA,70785 +White Castle,LA,70788 +Wilson,LA,70789 +Zachary,LA,70791 +Uncle Sam,LA,70792 +Baton Rouge,LA,70801 +Baton Rouge,LA,70802 +Baton Rouge,LA,70805 +Baton Rouge,LA,70806 +Scotlandville,LA,70807 +Baton Rouge,LA,70808 +Baton Rouge,LA,70809 +Baton Rouge,LA,70810 +Greenwood,LA,70811 +Baton Rouge,LA,70812 +Baton Rouge,LA,70814 +Baton Rouge,LA,70815 +Baton Rouge,LA,70816 +Baton Rouge,LA,70817 +Baton Rouge,LA,70818 +Baton Rouge,LA,70819 +Baton Rouge,LA,70820 +Arcadia,LA,71001 +Athens,LA,71003 +Belcher,LA,71004 +Benton,LA,71006 +Bethany,LA,71007 +Bienville,LA,71008 +Castor,LA,71016 +Cotton Valley,LA,71018 +Hanna,LA,71019 +Doyline,LA,71023 +Dubberly,LA,71024 +Frierson,LA,71027 +Gibsland,LA,71028 +Gilliam,LA,71029 +Gloster,LA,71030 +Goldonna,LA,71031 +Grand Cane,LA,71032 +Greenwood,LA,71033 +Hall Summit,LA,71034 +Haughton,LA,71037 +Haynesville,LA,71038 +Heflin,LA,71039 +Homer,LA,71040 +Hosston,LA,71043 +Ida,LA,71044 +Jamestown,LA,71045 +Keatchie,LA,71046 +Keithville,LA,71047 +Lisbon,LA,71048 +Logansport,LA,71049 +Elm Grove,LA,71051 +Mansfield,LA,71052 +Minden,LA,71055 +Mira,LA,71059 +Mooringsport,LA,71060 +Oil City,LA,71061 +Pelican,LA,71063 +Plain Dealing,LA,71064 +Pleasant Hill,LA,71065 +Princeton,LA,71067 +Ringgold,LA,71068 +Rodessa,LA,71069 +Chestnut,LA,71070 +Sarepta,LA,71071 +Shongaloo,LA,71072 +Sibley,LA,71073 +Springhill,LA,71075 +Stonewall,LA,71078 +Summerfield,LA,71079 +Trees,LA,71082 +Shreveport,LA,71101 +Shreveport,LA,71103 +Shreveport,LA,71104 +Shreveport,LA,71105 +Forbing,LA,71106 +Dixie,LA,71107 +Shreveport,LA,71108 +Shreveport,LA,71109 +Barksdale A F B,LA,71110 +Bossier City,LA,71111 +Bossier City,LA,71112 +Caspiana,LA,71115 +Shreveport,LA,71118 +Shreveport,LA,71119 +Shreveport,LA,71129 +Monroe,LA,71201 +Richwood,LA,71202 +Monroe,LA,71203 +Baskin,LA,71219 +Bastrop,LA,71220 +Bernice,LA,71222 +Bonita,LA,71223 +Calhoun,LA,71225 +Chatham,LA,71226 +Choudrant,LA,71227 +Collinston,LA,71229 +Warden,LA,71232 +Downsville,LA,71234 +Dubach,LA,71235 +Epps,LA,71237 +Eros,LA,71238 +Extension,LA,71239 +Farmerville,LA,71241 +Fort Necessity,LA,71243 +Grambling,LA,71245 +Jones,LA,71250 +Jonesboro,LA,71251 +Lake Providence,LA,71254 +Lillie,LA,71256 +Mangham,LA,71259 +Linville,LA,71260 +Mer Rouge,LA,71261 +Terry,LA,71263 +Oak Ridge,LA,71264 +Pioneer,LA,71266 +Quitman,LA,71268 +Alto,LA,71269 +Ruston,LA,71270 +Simsboro,LA,71275 +Sondheimer,LA,71276 +Spearsville,LA,71277 +Spencer,LA,71280 +Mound,LA,71282 +Transylvania,LA,71286 +West Monroe,LA,71291 +West Monroe,LA,71292 +Winnsboro,LA,71295 +Alexandria,LA,71301 +Alexandria,LA,71302 +Alexandria,LA,71303 +Acme,LA,71316 +Big Bend,LA,71318 +Eola,LA,71322 +Center Point,LA,71323 +Cheneyville,LA,71325 +Clayton,LA,71326 +Cottonport,LA,71327 +Buckeye,LA,71328 +Vick,LA,71331 +Goudeau,LA,71333 +Frogmore,LA,71334 +Gilbert,LA,71336 +Hamburg,LA,71339 +Harrisonburg,LA,71340 +Hessmer,LA,71341 +Jena,LA,71342 +Larto,LA,71343 +71344,LA,71344 +Lecompte,LA,71346 +Mansura,LA,71350 +Marksville,LA,71351 +Melville,LA,71353 +Monterey,LA,71354 +Moreauville,LA,71355 +Le Moyen,LA,71356 +Newellton,LA,71357 +Palmetto,LA,71358 +Kolin,LA,71360 +Plaucheville,LA,71362 +Saint Joseph,LA,71366 +Saint Landry,LA,71367 +Sicily Island,LA,71368 +Simmesport,LA,71369 +Trout,LA,71371 +71372,LA,71372 +Vidalia,LA,71373 +Waterproof,LA,71375 +Wisner,LA,71378 +Aimwell,LA,71401 +Anacoco,LA,71403 +Atlanta,LA,71404 +Belmont,LA,71406 +Bentley,LA,71407 +Boyce,LA,71409 +Campti,LA,71411 +Chopin,LA,71412 +Derry,LA,71416 +Colfax,LA,71417 +Hebert,LA,71418 +Mitchell,LA,71419 +71421,LA,71421 +Dodson,LA,71422 +Dry Prong,LA,71423 +Elmer,LA,71424 +Enterprise,LA,71425 +Fisher,LA,71426 +Flatwoods,LA,71427 +Florien,LA,71429 +Forest Hill,LA,71430 +Georgetown,LA,71432 +Calcasieu,LA,71433 +Grayson,LA,71435 +71436,LA,71436 +Leander,LA,71438 +Hornbeck,LA,71439 +Kelly,LA,71441 +Lacamp,LA,71444 +71445,LA,71445 +Hicks,LA,71446 +Chopin,LA,71447 +Many,LA,71449 +Marthaville,LA,71450 +Melder,LA,71451 +Montgomery,LA,71454 +Clifton,LA,71455 +Natchez,LA,71456 +Natchitoches,LA,71457 +Fort Polk,LA,71459 +Newllano,LA,71461 +Noble,LA,71462 +Oakdale,LA,71463 +Olla,LA,71465 +Otis,LA,71466 +Pollock,LA,71467 +Provencal,LA,71468 +Robeline,LA,71469 +Sieper,LA,71472 +Sikes,LA,71473 +Tioga,LA,71477 +Tullos,LA,71479 +Winnfield,LA,71483 +Woodworth,LA,71485 +Zwolle,LA,71486 +Berwick,ME,3901 +Cape Neddick,ME,3902 +Eliot,ME,3903 +Kittery,ME,3904 +Kittery Point,ME,3905 +North Berwick,ME,3906 +Ogunquit,ME,3907 +South Berwick,ME,3908 +York,ME,3909 +Acton,ME,4001 +Alfred,ME,4002 +Bailey Island,ME,4003 +Arundel,ME,4005 +Biddeford Pool,ME,4006 +Bowdoinham,ME,4008 +Bridgton,ME,4009 +Brownfield,ME,4010 +Birch Island,ME,4011 +Bustins Island,ME,4013 +Casco,ME,4015 +Center Lovell,ME,4016 +Chebeague Island,ME,4017 +Cliff Island,ME,4019 +Cornish,ME,4020 +Cumberland Cente,ME,4021 +Denmark,ME,4022 +East Baldwin,ME,4024 +West Lebanon,ME,4027 +North Sebago,ME,4029 +East Waterboro,ME,4030 +Freeport,ME,4032 +Fryeburg,ME,4037 +Gorham,ME,4038 +Gray,ME,4039 +Harrison,ME,4040 +Hiram,ME,4041 +Hollis Center,ME,4042 +Kennebunk,ME,4043 +Kennebunkport,ME,4046 +Kezar Falls,ME,4047 +Limerick,ME,4048 +Limington,ME,4049 +Long Island,ME,4050 +Lovell,ME,4051 +Merepoint,ME,4053 +Naples,ME,4055 +North Fryeburg,ME,4058 +North Shapleigh,ME,4060 +North Waterboro,ME,4061 +Windham,ME,4062 +Old Orchard Beac,ME,4064 +Orrs Island,ME,4066 +Porter,ME,4068 +Pownal,ME,4069 +Raymond,ME,4071 +Saco,ME,4072 +Sanford,ME,4073 +Scarborough,ME,4074 +Sebago Lake,ME,4075 +Shapleigh,ME,4076 +South Casco,ME,4077 +South Harpswell,ME,4079 +South Waterford,ME,4081 +Springvale,ME,4083 +Standish,ME,4084 +Steep Falls,ME,4085 +Pejepscot,ME,4086 +Waterboro,ME,4087 +Wells,ME,4090 +West Baldwin,ME,4091 +Westbrook,ME,4092 +West Buxton,ME,4093 +Maplewood,ME,4095 +Yarmouth,ME,4096 +Portland,ME,4101 +Portland,ME,4102 +Portland,ME,4103 +Falmouth,ME,4105 +South Portland,ME,4106 +Cape Elizabeth,ME,4107 +Peaks Island,ME,4108 +Cushing Island,ME,4109 +Cumberland Fores,ME,4110 +Auburn,ME,4210 +Andover,ME,4216 +Bethel,ME,4217 +Bryant Pond,ME,4219 +Buckfield,ME,4220 +Canton,ME,4221 +Danville,ME,4223 +Dixfield,ME,4224 +Dryden,ME,4225 +East Andover,ME,4226 +East Livermore,ME,4228 +East Stoneham,ME,4231 +Frye,ME,4235 +Greene,ME,4236 +Hanover,ME,4237 +Hebron,ME,4238 +Jay,ME,4239 +Lewiston,ME,4240 +Lisbon,ME,4250 +Lisbon Falls,ME,4252 +Livermore Falls,ME,4254 +Mechanic Falls,ME,4256 +Mexico,ME,4257 +Monmouth,ME,4259 +New Gloucester,ME,4260 +Newry,ME,4261 +Leeds,ME,4263 +North Monmouth,ME,4265 +North Turner,ME,4266 +North Waterford,ME,4267 +Norway,ME,4268 +Oxford,ME,4270 +Poland,ME,4273 +Poland Spring,ME,4274 +Roxbury,ME,4275 +Rumford,ME,4276 +Rumford Center,ME,4278 +Rumford Point,ME,4279 +Sabattus,ME,4280 +South Paris,ME,4281 +Turner,ME,4282 +Wayne,ME,4284 +Weld,ME,4285 +West Paris,ME,4289 +Peru,ME,4290 +West Poland,ME,4291 +West Sumner,ME,4292 +Wilton,ME,4294 +Augusta,ME,4330 +Coopers Mills,ME,4341 +Dresden,ME,4342 +Farmingdale,ME,4344 +Gardiner,ME,4345 +Randolph,ME,4346 +Hallowell,ME,4347 +Jefferson,ME,4348 +Kents Hill,ME,4349 +Litchfield,ME,4350 +Manchester,ME,4351 +Mount Vernon,ME,4352 +North Whitefield,ME,4353 +Palermo,ME,4354 +Readfield,ME,4355 +Richmond,ME,4357 +South China,ME,4358 +Weeks Mills,ME,4361 +Windsor,ME,4363 +Winthrop,ME,4364 +Bangor,ME,4401 +Abbot Village,ME,4406 +Aurora,ME,4408 +Bradford,ME,4410 +Bradley,ME,4411 +Brewer,ME,4412 +Brookton,ME,4413 +Brownville,ME,4414 +Bucksport,ME,4416 +Burlington,ME,4417 +Cardville,ME,4418 +Carmel,ME,4419 +Charleston,ME,4422 +Costigan,ME,4423 +Danforth,ME,4424 +Dover Foxcroft,ME,4426 +East Corinth,ME,4427 +East Eddington,ME,4428 +East Holden,ME,4429 +East Millinocket,ME,4430 +East Orland,ME,4431 +Enfield,ME,4433 +Etna,ME,4434 +Exeter,ME,4435 +Frankfort,ME,4438 +Greenville,ME,4441 +Greenville Junct,ME,4442 +Guilford,ME,4443 +Hampden,ME,4444 +Haynesville,ME,4446 +Seboeis,ME,4448 +Hudson,ME,4449 +Kenduskeag,ME,4450 +Kingman,ME,4451 +Lagrange,ME,4453 +Lee,ME,4455 +Levant,ME,4456 +Lincoln,ME,4457 +Lincoln Center,ME,4458 +Mattawamkeag,ME,4459 +Medway,ME,4460 +Milford,ME,4461 +Millinocket,ME,4462 +Derby,ME,4463 +Monson,ME,4464 +4465,ME,4465 +Old Town,ME,4468 +North Amity,ME,4471 +Orland,ME,4472 +Orono,ME,4473 +Orrington,ME,4474 +Passadumkeag,ME,4475 +Penobscot,ME,4476 +Rockwood,ME,4478 +Sangerville,ME,4479 +Springfield,ME,4487 +Stetson,ME,4488 +Topsfield,ME,4490 +Vanceboro,ME,4491 +Waite,ME,4492 +Winn,ME,4495 +Winterport,ME,4496 +Wytopitlock,ME,4497 +Bath,ME,4530 +Boothbay,ME,4537 +Capitol Island,ME,4538 +Bristol,ME,4539 +Chamberlain,ME,4541 +Damariscotta,ME,4543 +East Boothbay,ME,4544 +Friendship,ME,4547 +Mac Mahan,ME,4548 +Medomak,ME,4551 +Newcastle,ME,4553 +New Harbor,ME,4554 +Nobleboro,ME,4555 +Edgecomb,ME,4556 +Pemaquid,ME,4558 +Phippsburg,ME,4562 +Cushing,ME,4563 +Round Pond,ME,4564 +Sebasco Estates,ME,4565 +Small Point,ME,4567 +South Bristol,ME,4568 +Squirrel Island,ME,4570 +Trevett,ME,4571 +Waldoboro,ME,4572 +Walpole,ME,4573 +Washington,ME,4574 +West Southport,ME,4576 +Wiscasset,ME,4578 +Woolwich,ME,4579 +Ellsworth,ME,4605 +Addison,ME,4606 +Gouldsboro,ME,4607 +Bar Harbor,ME,4609 +Beals,ME,4611 +Bernard,ME,4612 +Birch Harbor,ME,4613 +Blue Hill,ME,4614 +Blue Hill Falls,ME,4615 +Brooklin,ME,4616 +Brooksville,ME,4617 +Bucks Harbor,ME,4618 +Calais,ME,4619 +Cherryfield,ME,4622 +Columbia Falls,ME,4623 +Corea,ME,4624 +Cutler,ME,4626 +Deer Isle,ME,4627 +Dennysville,ME,4628 +East Machias,ME,4630 +Eastport,ME,4631 +Franklin,ME,4634 +Hancock,ME,4640 +Harborside,ME,4642 +Harrington,ME,4643 +Isle Au Haut,ME,4645 +Jonesboro,ME,4648 +Jonesport,ME,4649 +Little Deer Isle,ME,4650 +Lubec,ME,4652 +Bass Harbor,ME,4653 +Machias,ME,4654 +Machiasport,ME,4655 +Manset,ME,4656 +Meddybemps,ME,4657 +Milbridge,ME,4658 +Mount Desert,ME,4660 +North Brooklin,ME,4661 +Pembroke,ME,4666 +Perry,ME,4667 +Princeton,ME,4668 +Prospect Harbor,ME,4669 +Robbinston,ME,4671 +Sargentville,ME,4673 +Sedgwick,ME,4676 +Sorrento,ME,4677 +South Gouldsboro,ME,4678 +Southwest Harbor,ME,4679 +Steuben,ME,4680 +Stonington,ME,4681 +Sunset,ME,4683 +Surry,ME,4684 +4689,ME,4689 +West Tremont,ME,4690 +Winter Harbor,ME,4693 +Woodland,ME,4694 +Houlton,ME,4730 +Ashland,ME,4732 +Benedicta,ME,4733 +Bridgewater,ME,4735 +Caribou,ME,4736 +Clayton Lake,ME,4737 +Easton,ME,4740 +Fort Fairfield,ME,4742 +Fort Kent,ME,4743 +Grand Isle,ME,4746 +Island Falls,ME,4747 +Lille,ME,4749 +Limestone,ME,4750 +Loring Afb,ME,4751 +Madawaska,ME,4756 +Mapleton,ME,4757 +Mars Hill,ME,4758 +Monticello,ME,4760 +New Sweden,ME,4762 +Oakfield,ME,4763 +Oxbow,ME,4764 +Patten,ME,4765 +Portage,ME,4768 +Presque Isle,ME,4769 +Saint Agatha,ME,4772 +Saint David,ME,4773 +Saint Francis,ME,4774 +Sherman Mills,ME,4776 +Sherman Station,ME,4777 +Sinclair,ME,4779 +Smyrna Mills,ME,4780 +Soldier Pond,ME,4781 +Stockholm,ME,4783 +Van Buren,ME,4785 +Washburn,ME,4786 +Westfield,ME,4787 +Rockland,ME,4841 +Camden,ME,4843 +Hope,ME,4847 +Islesboro,ME,4848 +Lincolnville,ME,4849 +Monhegan,ME,4852 +North Haven,ME,4853 +Owls Head,ME,4854 +Rockport,ME,4856 +Saint George,ME,4857 +South Thomaston,ME,4858 +Spruce Head,ME,4859 +Tenants Harbor,ME,4860 +Thomaston,ME,4861 +Union,ME,4862 +Vinalhaven,ME,4863 +Warren,ME,4864 +West Rockport,ME,4865 +Winslow,ME,4901 +Albion,ME,4910 +Anson,ME,4911 +Athens,ME,4912 +Belfast,ME,4915 +Belgrade,ME,4917 +Belgrade Lakes,ME,4918 +Bingham,ME,4920 +Brooks,ME,4921 +Burnham,ME,4922 +Cambridge,ME,4923 +Canaan,ME,4924 +Caratunk,ME,4925 +Clinton,ME,4927 +Corinna,ME,4928 +Detroit,ME,4929 +Dexter,ME,4930 +Dixmont,ME,4932 +Eustis,ME,4936 +Benton Station,ME,4937 +Farmington,ME,4938 +Freedom,ME,4941 +Wellington,ME,4942 +Hartland,ME,4943 +Jackman,ME,4945 +Kingfield,ME,4947 +Liberty,ME,4949 +Madison,ME,4950 +Monroe,ME,4951 +Morrill,ME,4952 +Newport,ME,4953 +New Portland,ME,4954 +New Sharon,ME,4955 +New Vineyard,ME,4956 +Norridgewock,ME,4957 +North Anson,ME,4958 +North New Portla,ME,4961 +North Vassalboro,ME,4962 +Oakland,ME,4963 +Palmyra,ME,4965 +Phillips,ME,4966 +Pittsfield,ME,4967 +Plymouth,ME,4969 +Rangeley,ME,4970 +Saint Albans,ME,4971 +Searsmont,ME,4973 +Searsport,ME,4974 +Skowhegan,ME,4976 +Smithfield,ME,4978 +Solon,ME,4979 +Stockton Springs,ME,4981 +Stratton,ME,4982 +Strong,ME,4983 +Temple,ME,4984 +West Forks,ME,4985 +Thorndike,ME,4986 +Troy,ME,4987 +Unity,ME,4988 +Vassalboro,ME,4989 +Andrews Afb,MD,20331 +Waldorf,MD,20601 +Saint Charles,MD,20602 +Saint Charles,MD,20603 +Abell,MD,20606 +Accokeek,MD,20607 +Aquasco,MD,20608 +Avenue,MD,20609 +Bel Alton,MD,20611 +Brandywine,MD,20613 +Broomes Island,MD,20615 +Bryans Road,MD,20616 +Bryantown,MD,20617 +Bushwood,MD,20618 +California,MD,20619 +Callaway,MD,20620 +Maddox,MD,20621 +Charlotte Hall,MD,20622 +Cheltenham,MD,20623 +Clements,MD,20624 +Coltons Point,MD,20626 +Dameron,MD,20628 +Drayden,MD,20630 +Faulkner,MD,20632 +Great Mills,MD,20634 +Hollywood,MD,20636 +Hughesville,MD,20637 +Huntingtown,MD,20639 +Pisgah,MD,20640 +Issue,MD,20645 +La Plata,MD,20646 +Leonardtown,MD,20650 +Lexington Park,MD,20653 +Loveville,MD,20656 +Lusby,MD,20657 +Rison,MD,20658 +Mechanicsville,MD,20659 +Nanjemoy,MD,20662 +Newburg,MD,20664 +Park Hall,MD,20667 +Patuxent River,MD,20670 +Piney Point,MD,20674 +Pomfret,MD,20675 +Port Republic,MD,20676 +Port Tobacco,MD,20677 +Prince Frederick,MD,20678 +Ridge,MD,20680 +Saint Inigoes,MD,20684 +Saint Leonard,MD,20685 +Scotland,MD,20687 +Solomons,MD,20688 +Sunderland,MD,20689 +Tall Timbers,MD,20690 +Valley Lee,MD,20692 +Welcome,MD,20693 +White Plains,MD,20695 +Annapolis Juncti,MD,20701 +Beltsville,MD,20705 +Lanham,MD,20706 +Laurel,MD,20707 +Montpelier,MD,20708 +Bladensburg,MD,20710 +Lothian,MD,20711 +Mount Rainier,MD,20712 +North Beach,MD,20714 +Bowie,MD,20715 +Mitchellville,MD,20716 +Bowie,MD,20720 +Mitchellville,MD,20721 +Brentwood,MD,20722 +Laurel,MD,20723 +Laurel,MD,20724 +Chesapeake Beach,MD,20732 +Churchton,MD,20733 +Clinton,MD,20735 +Owings,MD,20736 +Riverdale,MD,20737 +College Park,MD,20740 +Capital Heights,MD,20743 +Fort Washington,MD,20744 +Oxon Hill,MD,20745 +Suitland,MD,20746 +District Heights,MD,20747 +Temple Hills,MD,20748 +Deale,MD,20751 +Dunkirk,MD,20754 +Fort George G Me,MD,20755 +Friendship,MD,20758 +Fulton,MD,20759 +Savage,MD,20763 +Shady Side,MD,20764 +Glenn Dale,MD,20769 +Greenbelt,MD,20770 +Upper Marlboro,MD,20772 +Harwood,MD,20776 +Highland,MD,20777 +West River,MD,20778 +Tracys Landing,MD,20779 +Hyattsville,MD,20781 +West Hyattsville,MD,20782 +Adelphi,MD,20783 +Landover Hills,MD,20784 +Landover,MD,20785 +Jessup,MD,20794 +Glen Echo,MD,20812 +Bethesda,MD,20814 +Chevy Chase,MD,20815 +Bethesda,MD,20816 +West Bethesda,MD,20817 +Cabin John,MD,20818 +Olney,MD,20832 +Brookeville,MD,20833 +Poolesville,MD,20837 +Barnesville,MD,20838 +Beallsville,MD,20839 +Boyds,MD,20841 +Dickerson,MD,20842 +Rockville,MD,20850 +Rockville,MD,20851 +Rockville,MD,20852 +Rockville,MD,20853 +Potomac,MD,20854 +Derwood,MD,20855 +Sandy Spring,MD,20860 +Ashton,MD,20861 +Brinklow,MD,20862 +Burtonsville,MD,20866 +Spencerville,MD,20868 +Clarksburg,MD,20871 +Damascus,MD,20872 +Darnestown,MD,20874 +Germantown,MD,20876 +Gaithersburg,MD,20877 +Darnestown,MD,20878 +Laytonsville,MD,20879 +Laytonsville,MD,20882 +Kensington,MD,20895 +Silver Spring,MD,20901 +Wheaton,MD,20902 +Silver Spring,MD,20903 +Colesville,MD,20904 +Colesville,MD,20905 +Aspen Hill,MD,20906 +Silver Spring,MD,20910 +Takoma Park,MD,20912 +Aberdeen,MD,21001 +Aberdeen Proving,MD,21005 +Abingdon,MD,21009 +Gunpowder,MD,21010 +Arnold,MD,21012 +Baldwin,MD,21013 +Bel Air,MD,21014 +Bel Air,MD,21015 +Belcamp,MD,21017 +Bradshaw,MD,21021 +Churchville,MD,21028 +Clarksville,MD,21029 +Cockeysville Hun,MD,21030 +Cockeysville Hun,MD,21031 +Crownsville,MD,21032 +Darlington,MD,21034 +Davidsonville,MD,21035 +Dayton,MD,21036 +Edgewater Beach,MD,21037 +Edgewood,MD,21040 +Ellicott City,MD,21042 +Daniels,MD,21043 +Columbia,MD,21044 +Columbia,MD,21045 +Columbia,MD,21046 +Fallston,MD,21047 +Patapsco,MD,21048 +Forest Hill,MD,21050 +Fork,MD,21051 +Freeland,MD,21053 +Gambrills,MD,21054 +Gibson Island,MD,21056 +Glen Arm,MD,21057 +Glen Burnie,MD,21061 +Glyndon,MD,21071 +Greenmount,MD,21074 +Hanover,MD,21076 +Havre De Grace,MD,21078 +Hydes,MD,21082 +Jarrettsville,MD,21084 +Joppa,MD,21085 +Kingsville,MD,21087 +Lineboro,MD,21088 +Linthicum Height,MD,21090 +Lutherville,MD,21093 +Manchester,MD,21102 +Marriottsville,MD,21104 +Millers,MD,21107 +Millersville,MD,21108 +Hereford,MD,21111 +Odenton,MD,21113 +Crofton,MD,21114 +Owings Mills,MD,21117 +Bentley Springs,MD,21120 +Riviera Beach,MD,21122 +Perry Hall,MD,21128 +Jacksonville,MD,21131 +Pylesville,MD,21132 +Randallstown,MD,21133 +Reisterstown,MD,21136 +Riva,MD,21140 +Severn,MD,21144 +Severna Park,MD,21146 +Glencoe,MD,21152 +Rocks,MD,21154 +Fowbelsburg,MD,21155 +Upper Falls,MD,21156 +Carrollton,MD,21157 +Uniontown,MD,21158 +Whiteford,MD,21160 +White Hall,MD,21161 +White Marsh,MD,21162 +Granite,MD,21163 +Baltimore,MD,21201 +Baltimore,MD,21202 +Eudowood,MD,21204 +Baltimore,MD,21205 +Baltimore,MD,21206 +Gwynn Oak,MD,21207 +Pikesville,MD,21208 +Baltimore,MD,21209 +Baltimore,MD,21210 +Baltimore,MD,21211 +Baltimore,MD,21212 +Baltimore,MD,21213 +Baltimore,MD,21214 +Baltimore,MD,21215 +Baltimore,MD,21216 +Baltimore,MD,21217 +Baltimore,MD,21218 +Dundalk Sparrows,MD,21219 +Middle River,MD,21220 +Essex,MD,21221 +Dundalk Sparrows,MD,21222 +Baltimore,MD,21223 +Baltimore,MD,21224 +Brooklyn Curtis,MD,21225 +Brooklyn Curtis,MD,21226 +Halethorpe,MD,21227 +Catonsville,MD,21228 +Baltimore,MD,21229 +Baltimore,MD,21230 +Baltimore,MD,21231 +Parkville,MD,21234 +Nottingham,MD,21236 +Rosedale,MD,21237 +Baltimore,MD,21239 +Baltimore,MD,21240 +Cape Saint Clair,MD,21401 +Naval Academy,MD,21402 +Annapolis,MD,21403 +Cresaptown,MD,21502 +Accident,MD,21520 +Barton,MD,21521 +Bittinger,MD,21522 +Bloomington,MD,21523 +Flintstone,MD,21530 +Friendsville,MD,21531 +Frostburg,MD,21532 +Jennings,MD,21536 +Shallmar,MD,21538 +Lonaconing,MD,21539 +Luke,MD,21540 +Sang Run,MD,21541 +Mount Savage,MD,21545 +Deer Park,MD,21550 +Oldtown,MD,21555 +Rawlings,MD,21557 +Swanton,MD,21561 +Mccoole,MD,21562 +Easton,MD,21601 +Barclay,MD,21607 +Betterton,MD,21610 +Bozman,MD,21612 +Cambridge,MD,21613 +Centreville,MD,21617 +Chester,MD,21619 +Chestertown,MD,21620 +Church Creek,MD,21622 +Church Hill,MD,21623 +Cordova,MD,21625 +Crapo,MD,21626 +Crumpton,MD,21628 +Denton,MD,21629 +East New Market,MD,21631 +Federalsburg,MD,21632 +Fishing Creek,MD,21634 +Galena,MD,21635 +Goldsboro,MD,21636 +Golts,MD,21637 +Grasonville,MD,21638 +Greensboro,MD,21639 +Henderson,MD,21640 +Williamsburg,MD,21643 +Ingleside,MD,21644 +Kennedyville,MD,21645 +Mcdaniel,MD,21647 +Marydel,MD,21649 +Massey,MD,21650 +Millington,MD,21651 +Oxford,MD,21654 +Preston,MD,21655 +Queen Anne,MD,21657 +Queenstown,MD,21658 +Rhodesdale,MD,21659 +Ridgely,MD,21660 +Rock Hall,MD,21661 +Royal Oak,MD,21662 +Saint Michaels,MD,21663 +Sherwood,MD,21665 +Stevensville,MD,21666 +Still Pond,MD,21667 +Sudlersville,MD,21668 +Taylors Island,MD,21669 +Tilghman,MD,21671 +Toddville,MD,21672 +Trappe,MD,21673 +Wingate,MD,21675 +Wittman,MD,21676 +Woolford,MD,21677 +Worton,MD,21678 +Wye Mills,MD,21679 +Lewistown,MD,21701 +Fort Detrick,MD,21702 +Doubs,MD,21710 +Big Pool,MD,21711 +Fahrney Keedy Me,MD,21713 +Brunswick,MD,21716 +Burkittsville,MD,21718 +Fort Ritchie,MD,21719 +Big Spring,MD,21722 +Cooksville,MD,21723 +Detour,MD,21725 +Emmitsburg,MD,21727 +Fair Play,MD,21733 +Glenelg,MD,21737 +Glenwood,MD,21738 +Hagerstown,MD,21740 +Hagerstown,MD,21742 +Hancock,MD,21750 +Ijamsville,MD,21754 +Jefferson,MD,21755 +Keedysville,MD,21756 +Keymar,MD,21757 +Knoxville,MD,21758 +Linwood,MD,21764 +Little Orleans,MD,21766 +Maugansville,MD,21767 +Middletown,MD,21769 +Monrovia,MD,21770 +Mount Airy,MD,21771 +Myersville,MD,21773 +New Windsor,MD,21776 +Point Of Rocks,MD,21777 +Rocky Ridge,MD,21778 +Rohrersville,MD,21779 +Sabillasville,MD,21780 +Sharpsburg,MD,21782 +Smithsburg,MD,21783 +Carrolltowne,MD,21784 +Taneytown,MD,21787 +Graceham,MD,21788 +Tuscarora,MD,21790 +Unionville,MD,21791 +Walkersville,MD,21793 +West Friendship,MD,21794 +Williamsport,MD,21795 +Woodbine,MD,21797 +Woodsboro,MD,21798 +Salisbury,MD,21801 +Berlin,MD,21811 +Bishopville,MD,21813 +Bivalve,MD,21814 +Chance,MD,21816 +Crisfield,MD,21817 +Dames Quarter,MD,21820 +Deal Island,MD,21821 +Eden,MD,21822 +Ewell,MD,21824 +Fruitland,MD,21826 +Girdletree,MD,21829 +Hebron,MD,21830 +Linkwood,MD,21835 +Mardela Springs,MD,21837 +Marion Station,MD,21838 +Nanticoke,MD,21840 +Newark,MD,21841 +Ocean City,MD,21842 +Parsonsburg,MD,21849 +Pittsville,MD,21850 +Pocomoke City,MD,21851 +Princess Anne,MD,21853 +Quantico,MD,21856 +21858,MD,21858 +Snow Hill,MD,21863 +Stockton,MD,21864 +Tyaskin,MD,21865 +Tylerton,MD,21866 +Vienna,MD,21869 +Wenona,MD,21870 +Westover,MD,21871 +Whaleysville,MD,21872 +Willards,MD,21874 +Delmar,MD,21875 +North East,MD,21901 +Perryville,MD,21903 +Bainbridge,MD,21904 +Rising Sun,MD,21911 +Warwick,MD,21912 +Cecilton,MD,21913 +Charlestown,MD,21914 +Chesapeake City,MD,21915 +Colora,MD,21917 +Conowingo,MD,21918 +Earleville,MD,21919 +Elkton,MD,21921 +Agawam,MA,1001 +Cushman,MA,1002 +Barre,MA,1005 +Belchertown,MA,1007 +Blandford,MA,1008 +Brimfield,MA,1010 +Chester,MA,1011 +Chesterfield,MA,1012 +Chicopee,MA,1013 +Chicopee,MA,1020 +Westover Afb,MA,1022 +Cummington,MA,1026 +Mount Tom,MA,1027 +East Longmeadow,MA,1028 +Feeding Hills,MA,1030 +Gilbertville,MA,1031 +Goshen,MA,1032 +Granby,MA,1033 +Tolland,MA,1034 +Hadley,MA,1035 +Hampden,MA,1036 +Hatfield,MA,1038 +Haydenville,MA,1039 +Holyoke,MA,1040 +Huntington,MA,1050 +Leeds,MA,1053 +Leverett,MA,1054 +Ludlow,MA,1056 +Monson,MA,1057 +Florence,MA,1060 +Oakham,MA,1068 +Palmer,MA,1069 +Plainfield,MA,1070 +Russell,MA,1071 +Shutesbury,MA,1072 +Southampton,MA,1073 +South Hadley,MA,1075 +Southwick,MA,1077 +Three Rivers,MA,1080 +Wales,MA,1081 +Ware,MA,1082 +Montgomery,MA,1085 +West Springfield,MA,1089 +West Warren,MA,1092 +Wilbraham,MA,1095 +Williamsburg,MA,1096 +Worthington,MA,1098 +Springfield,MA,1103 +Springfield,MA,1104 +Springfield,MA,1105 +Longmeadow,MA,1106 +Springfield,MA,1107 +Springfield,MA,1108 +Springfield,MA,1109 +Springfield,MA,1118 +Springfield,MA,1119 +Springfield,MA,1128 +Springfield,MA,1129 +Indian Orchard,MA,1151 +Pittsfield,MA,1201 +Adams,MA,1220 +Ashley Falls,MA,1222 +Becket,MA,1223 +Cheshire,MA,1225 +Dalton,MA,1226 +Great Barrington,MA,1230 +Peru,MA,1235 +Housatonic,MA,1236 +Hancock,MA,1237 +Lee,MA,1238 +Lenox,MA,1240 +Middlefield,MA,1243 +West Otis,MA,1245 +Clarksburg,MA,1247 +Otis,MA,1253 +Richmond,MA,1254 +Sandisfield,MA,1255 +Savoy,MA,1256 +Sheffield,MA,1257 +South Egremont,MA,1258 +Southfield,MA,1259 +Stockbridge,MA,1262 +West Stockbridge,MA,1266 +Williamstown,MA,1267 +Windsor,MA,1270 +Leyden,MA,1301 +Ashfield,MA,1330 +New Salem,MA,1331 +Leyden,MA,1337 +Buckland,MA,1338 +Hawley,MA,1339 +Colrain,MA,1340 +Conway,MA,1341 +Deerfield,MA,1342 +Erving,MA,1344 +Heath,MA,1346 +Millers Falls,MA,1349 +Monroe,MA,1350 +Montague,MA,1351 +New Salem,MA,1355 +Northfield,MA,1360 +New Salem,MA,1364 +Petersham,MA,1366 +Rowe,MA,1367 +Shelburne Falls,MA,1370 +South Deerfield,MA,1373 +Sunderland,MA,1375 +Turners Falls,MA,1376 +Wendell,MA,1379 +Fitchburg,MA,1420 +Ashburnham,MA,1430 +Ashby,MA,1431 +Ayer,MA,1432 +Ft Devens,MA,1433 +Baldwinville,MA,1436 +Gardner,MA,1440 +Groton,MA,1450 +Harvard,MA,1451 +Hubbardston,MA,1452 +Leominster,MA,1453 +Littleton,MA,1460 +Lunenburg,MA,1462 +Pepperell,MA,1463 +Shirley Center,MA,1464 +Templeton,MA,1468 +Townsend,MA,1469 +Westminster,MA,1473 +W Townsend,MA,1474 +Winchendon,MA,1475 +Auburn,MA,1501 +Berlin,MA,1503 +Blackstone,MA,1504 +Boylston,MA,1505 +Brookfield,MA,1506 +Charlton,MA,1507 +Clinton,MA,1510 +East Brookfield,MA,1515 +East Douglas,MA,1516 +Fiskdale,MA,1518 +Grafton,MA,1519 +Holden,MA,1520 +Holland,MA,1521 +Jefferson,MA,1522 +Lancaster,MA,1523 +Leicester,MA,1524 +Millbury,MA,1527 +Millville,MA,1529 +New Braintree,MA,1531 +Northborough,MA,1532 +Northbridge,MA,1534 +North Brookfield,MA,1535 +North Grafton,MA,1536 +North Oxford,MA,1537 +Oxford,MA,1540 +Princeton,MA,1541 +Rochdale,MA,1542 +Rutland,MA,1543 +Shrewsbury,MA,1545 +Southbridge,MA,1550 +South Grafton,MA,1560 +Spencer,MA,1562 +Sterling,MA,1564 +Sturbridge,MA,1566 +West Upton,MA,1568 +Uxbridge,MA,1569 +Dudley Hill,MA,1570 +Dudley,MA,1571 +Westborough,MA,1581 +West Boylston,MA,1583 +West Brookfield,MA,1585 +Whitinsville,MA,1588 +Wilkinsonville,MA,1590 +Worcester,MA,1602 +Worcester,MA,1603 +Worcester,MA,1604 +Worcester,MA,1605 +Worcester,MA,1606 +Worcester,MA,1607 +Worcester,MA,1608 +Worcester,MA,1609 +Worcester,MA,1610 +Cherry Valley,MA,1611 +Paxton,MA,1612 +Framingham,MA,1701 +Village Of Nagog,MA,1718 +Boxboro,MA,1719 +Acton,MA,1720 +Ashland,MA,1721 +Bedford,MA,1730 +Bolton,MA,1740 +Carlisle,MA,1741 +Concord,MA,1742 +Southborough,MA,1745 +Holliston,MA,1746 +Hopedale,MA,1747 +Hopkinton,MA,1748 +Hudson,MA,1749 +Marlborough,MA,1752 +Maynard,MA,1754 +Mendon,MA,1756 +Milford,MA,1757 +Natick,MA,1760 +Sherborn,MA,1770 +Southborough,MA,1772 +Lincoln,MA,1773 +Stow,MA,1775 +Sudbury,MA,1776 +Wayland,MA,1778 +Woburn,MA,1801 +Burlington,MA,1803 +Andover,MA,1810 +Billerica,MA,1821 +South Chelmsford,MA,1824 +Dracut,MA,1826 +Dunstable,MA,1827 +Haverhill,MA,1830 +Haverhill,MA,1832 +Georgetown,MA,1833 +Groveland,MA,1834 +Bradford,MA,1835 +Lawrence,MA,1840 +Lawrence,MA,1841 +Lawrence,MA,1843 +Methuen,MA,1844 +North Andover,MA,1845 +Lowell,MA,1850 +Lowell,MA,1851 +Lowell,MA,1852 +Lowell,MA,1854 +Merrimac,MA,1860 +North Billerica,MA,1862 +North Chelmsford,MA,1863 +North Reading,MA,1864 +Reading,MA,1867 +Tewksbury,MA,1876 +Tyngsboro,MA,1879 +Wakefield,MA,1880 +Graniteville,MA,1886 +Wilmington,MA,1887 +Winchester,MA,1890 +Lynn,MA,1901 +Lynn,MA,1902 +East Lynn,MA,1904 +West Lynn,MA,1905 +Saugus,MA,1906 +Swampscott,MA,1907 +Nahant,MA,1908 +Amesbury,MA,1913 +Beverly,MA,1915 +Boxford,MA,1921 +Byfield,MA,1922 +Danvers,MA,1923 +Essex,MA,1929 +Gloucester,MA,1930 +Ipswich,MA,1938 +Lynnfield,MA,1940 +Manchester,MA,1944 +Marblehead,MA,1945 +Middleton,MA,1949 +Newburyport,MA,1950 +Newbury,MA,1951 +Salisbury,MA,1952 +Peabody,MA,1960 +Rockport,MA,1966 +Rowley,MA,1969 +Salem,MA,1970 +South Hamilton,MA,1982 +Topsfield,MA,1983 +Wenham,MA,1984 +West Newbury,MA,1985 +Bellingham,MA,2019 +Canton,MA,2021 +Cohasset,MA,2025 +Dedham,MA,2026 +Dover,MA,2030 +East Walpole,MA,2032 +Foxboro,MA,2035 +Franklin,MA,2038 +Hingham,MA,2043 +Hull,MA,2045 +Mansfield,MA,2048 +Marshfield,MA,2050 +Medfield,MA,2052 +Medway,MA,2053 +Millis,MA,2054 +Norfolk,MA,2056 +Norwell,MA,2061 +Norwood,MA,2062 +Scituate,MA,2066 +Sharon,MA,2067 +South Walpole,MA,2071 +Stoughton,MA,2072 +Walpole,MA,2081 +Westwood,MA,2090 +Wrentham,MA,2093 +Boston,MA,2108 +Boston,MA,2109 +Boston,MA,2110 +Boston,MA,2111 +Boston,MA,2113 +Boston,MA,2114 +Boston,MA,2115 +Boston,MA,2116 +Roxbury,MA,2118 +Roxbury,MA,2119 +Roxbury,MA,2120 +Dorchester,MA,2121 +Dorchester,MA,2122 +Dorchester,MA,2124 +Dorchester,MA,2125 +Mattapan,MA,2126 +South Boston,MA,2127 +East Boston,MA,2128 +Charlestown,MA,2129 +Jamaica Plain,MA,2130 +Roslindale,MA,2131 +West Roxbury,MA,2132 +Allston,MA,2134 +Brighton,MA,2135 +Hyde Park,MA,2136 +Cambridge,MA,2138 +Cambridge,MA,2139 +North Cambridge,MA,2140 +East Cambridge,MA,2141 +Cambridge,MA,2142 +Somerville,MA,2143 +Somerville,MA,2144 +Somerville,MA,2145 +Brookline,MA,2146 +Malden,MA,2148 +Everett,MA,2149 +Chelsea,MA,2150 +Revere,MA,2151 +Winthrop,MA,2152 +North Waltham,MA,2154 +Medford,MA,2155 +Newtonville,MA,2158 +Newton Center,MA,2159 +Newtonville,MA,2160 +Newton Highlands,MA,2161 +Newtonville,MA,2162 +Cambridge,MA,2163 +Newton Upper Fal,MA,2164 +Newtonville,MA,2165 +Auburndale,MA,2166 +Boston College,MA,2167 +Waban,MA,2168 +Quincy,MA,2169 +Quincy,MA,2170 +Quincy,MA,2171 +East Watertown,MA,2172 +Lexington,MA,2173 +Arlington,MA,2174 +Melrose,MA,2176 +Belmont,MA,2178 +Stoneham,MA,2180 +Wellesley,MA,2181 +Braintree,MA,2184 +Milton,MA,2186 +Weymouth,MA,2188 +Weymouth,MA,2189 +Weymouth,MA,2190 +Weymouth,MA,2191 +Needham,MA,2192 +Weston,MA,2193 +Needham,MA,2194 +Boston,MA,2199 +Boston,MA,2210 +Boston,MA,2215 +Avon,MA,2322 +Bridgewater,MA,2324 +Carver,MA,2330 +Duxbury,MA,2332 +East Bridgewater,MA,2333 +Halifax,MA,2338 +Hanover,MA,2339 +Hanson,MA,2341 +Holbrook,MA,2343 +Middleboro,MA,2346 +Lakeville,MA,2347 +Abington,MA,2351 +North Easton,MA,2356 +Pembroke,MA,2359 +Plymouth,MA,2360 +Kingston,MA,2364 +Plympton,MA,2367 +Randolph,MA,2368 +Rockland,MA,2370 +South Easton,MA,2375 +West Bridgewater,MA,2379 +Whitman,MA,2382 +Brockton,MA,2401 +Brockton,MA,2402 +Onset,MA,2532 +Chilmark,MA,2535 +Teaticket,MA,2536 +East Sandwich,MA,2537 +East Wareham,MA,2538 +Edgartown,MA,2539 +Falmouth,MA,2540 +Otis A F B,MA,2542 +Woods Hole,MA,2543 +Nantucket,MA,2554 +North Falmouth,MA,2556 +Pocasset,MA,2559 +Sandwich,MA,2563 +Vineyard Haven,MA,2568 +Wareham,MA,2571 +West Tisbury,MA,2575 +West Wareham,MA,2576 +West Yarmouth,MA,2601 +Barnstable,MA,2630 +Brewster,MA,2631 +Centerville,MA,2632 +South Chatham,MA,2633 +Cotuit,MA,2635 +Dennis,MA,2638 +Dennis Port,MA,2639 +Eastham,MA,2642 +Forestdale,MA,2644 +Harwich,MA,2645 +Harwich Port,MA,2646 +Marstons Mills,MA,2648 +Mashpee,MA,2649 +North Chatham,MA,2650 +North Truro,MA,2652 +Orleans,MA,2653 +Osterville,MA,2655 +Provincetown,MA,2657 +South Chatham,MA,2659 +South Dennis,MA,2660 +Bass River,MA,2664 +Truro,MA,2666 +Wellfleet,MA,2667 +West Barnstable,MA,2668 +West Dennis,MA,2670 +West Harwich,MA,2671 +West Yarmouth,MA,2673 +Yarmouth Port,MA,2675 +Assonet,MA,2702 +Attleboro,MA,2703 +Cuttyhunk,MA,2713 +Dighton,MA,2715 +East Freetown,MA,2717 +East Taunton,MA,2718 +Fairhaven,MA,2719 +Fall River,MA,2720 +Fall River,MA,2721 +Fall River,MA,2723 +Fall River,MA,2724 +Somerset,MA,2725 +Somerset,MA,2726 +Marion,MA,2738 +Mattapoisett,MA,2739 +New Bedford,MA,2740 +Acushnet,MA,2743 +New Bedford,MA,2744 +New Bedford,MA,2745 +New Bedford,MA,2746 +North Dartmouth,MA,2747 +Padanaram Villag,MA,2748 +North Attleboro,MA,2760 +Plainville,MA,2762 +North Attleboro,MA,2763 +North Dighton,MA,2764 +Norton,MA,2766 +Raynham,MA,2767 +Rehoboth,MA,2769 +Rochester,MA,2770 +Seekonk,MA,2771 +Swansea,MA,2777 +Berkley,MA,2779 +Taunton,MA,2780 +Westport,MA,2790 +Pearl Beach,MI,48001 +Berlin,MI,48002 +Almont,MI,48003 +Anchorville,MI,48004 +Armada,MI,48005 +Greenwood,MI,48006 +Birmingham,MI,48009 +Mussey,MI,48014 +Center Line,MI,48015 +Clawson,MI,48017 +Eastpointe,MI,48021 +Emmett,MI,48022 +Ira,MI,48023 +Franklin,MI,48025 +Fraser,MI,48026 +Wales,MI,48027 +Harsens Island,MI,48028 +Hazel Park,MI,48030 +Grant Township,MI,48032 +Southfield,MI,48034 +Cottrellville,MI,48039 +Marysville,MI,48040 +Riley,MI,48041 +Mount Clemens,MI,48043 +Macomb,MI,48044 +Selfridge A N G,MI,48045 +Chesterfield,MI,48047 +Lenox,MI,48048 +Ruby,MI,48049 +Port Huron,MI,48060 +Richmond,MI,48062 +Bruce,MI,48065 +Roseville,MI,48066 +Royal Oak,MI,48067 +Pleasant Ridge,MI,48069 +Huntington Woods,MI,48070 +Madison Heights,MI,48071 +Berkley,MI,48072 +Royal Oak,MI,48073 +Kimball,MI,48074 +Southfield,MI,48075 +Lathrup Village,MI,48076 +Saint Clair,MI,48079 +Saint Clair Shor,MI,48080 +Saint Clair Shor,MI,48081 +Saint Clair Shor,MI,48082 +Troy,MI,48083 +Troy,MI,48084 +Warren,MI,48089 +Warren,MI,48091 +Warren,MI,48092 +Warren,MI,48093 +Washington,MI,48094 +Brockway,MI,48097 +Troy,MI,48098 +Allen Park,MI,48101 +Ann Arbor,MI,48103 +Ann Arbor,MI,48104 +Ann Arbor,MI,48105 +Ann Arbor,MI,48108 +Ann Arbor,MI,48109 +Belleville,MI,48111 +Brighton,MI,48116 +Carleton,MI,48117 +Chelsea,MI,48118 +Dearborn,MI,48120 +Melvindale,MI,48122 +Dearborn,MI,48124 +Dearborn Heights,MI,48125 +Dearborn,MI,48126 +Dearborn Heights,MI,48127 +Dearborn,MI,48128 +Dexter,MI,48130 +Dundee,MI,48131 +Erie,MI,48133 +Flat Rock,MI,48134 +Garden City,MI,48135 +Gregory,MI,48137 +Grosse Ile,MI,48138 +Ida,MI,48140 +Inkster,MI,48141 +Lambertville,MI,48144 +La Salle,MI,48145 +Lincoln Park,MI,48146 +Livonia,MI,48150 +Livonia,MI,48152 +Livonia,MI,48154 +Luna Pier,MI,48157 +Manchester,MI,48158 +Maybee,MI,48159 +Milan,MI,48160 +Detroit Beach,MI,48161 +New Boston,MI,48164 +New Hudson,MI,48165 +Newport,MI,48166 +Northville,MI,48167 +Pinckney,MI,48169 +Plymouth,MI,48170 +Gibraltar,MI,48173 +Romulus,MI,48174 +Saline,MI,48176 +South Lyon,MI,48178 +South Rockwood,MI,48179 +Taylor,MI,48180 +Temperance,MI,48182 +Woodhaven,MI,48183 +Wayne,MI,48184 +Westland,MI,48185 +Canton,MI,48187 +Canton,MI,48188 +Whitmore Lake,MI,48189 +Willis,MI,48191 +Riverview,MI,48192 +Southgate,MI,48195 +Ypsilanti,MI,48197 +Ypsilanti,MI,48198 +Detroit,MI,48201 +Detroit,MI,48202 +Highland Park,MI,48203 +Detroit,MI,48204 +Detroit,MI,48205 +Detroit,MI,48206 +Detroit,MI,48207 +Detroit,MI,48208 +Detroit,MI,48209 +Detroit,MI,48210 +Detroit,MI,48211 +Hamtramck,MI,48212 +Detroit,MI,48213 +Detroit,MI,48214 +Detroit,MI,48215 +Detroit,MI,48216 +Detroit,MI,48217 +River Rouge,MI,48218 +Detroit,MI,48219 +Ferndale,MI,48220 +Detroit,MI,48221 +Detroit,MI,48223 +Detroit,MI,48224 +Harper Woods,MI,48225 +Detroit,MI,48226 +Detroit,MI,48227 +Detroit,MI,48228 +Ecorse,MI,48229 +Grosse Pointe,MI,48230 +Detroit,MI,48234 +Detroit,MI,48235 +Grosse Pointe,MI,48236 +Oak Park,MI,48237 +Detroit,MI,48238 +Redford,MI,48239 +Redford,MI,48240 +Detroit,MI,48242 +Bloomfield Towns,MI,48301 +Bloomfield Towns,MI,48302 +Bloomfield Towns,MI,48304 +Rochester Hills,MI,48306 +Rochester Hills,MI,48307 +Rochester Hills,MI,48309 +Sterling Heights,MI,48310 +Sterling Heights,MI,48312 +Sterling Heights,MI,48313 +Sterling Heights,MI,48314 +Shelby Township,MI,48315 +Shelby Township,MI,48316 +Shelby Township,MI,48317 +Sylvan Lake,MI,48320 +West Bloomfield,MI,48322 +Orchard Lake,MI,48323 +Orchard Lake,MI,48324 +Auburn Hills,MI,48326 +Waterford,MI,48327 +Waterford,MI,48328 +Waterford,MI,48329 +Farmington Hills,MI,48331 +Farmington Hills,MI,48334 +Farmington Hills,MI,48335 +Farmington Hills,MI,48336 +Pontiac,MI,48340 +Pontiac,MI,48341 +Pontiac,MI,48342 +Independence,MI,48346 +Independence,MI,48348 +Springfield,MI,48350 +Hartland,MI,48353 +Highland,MI,48356 +Highland,MI,48357 +Orion,MI,48359 +Orion,MI,48360 +Orion,MI,48362 +Oakland,MI,48363 +Addison Township,MI,48367 +Oxford,MI,48370 +Oxford,MI,48371 +Novi,MI,48374 +Novi,MI,48375 +Novi,MI,48377 +Milford,MI,48380 +Milford,MI,48381 +Commerce Townshi,MI,48382 +White Lake,MI,48383 +White Lake,MI,48386 +Wolverine Lake,MI,48390 +Wixom,MI,48393 +Applegate,MI,48401 +Attica,MI,48412 +Bad Axe,MI,48413 +Bancroft,MI,48414 +Birch Run,MI,48415 +Brown City,MI,48416 +Burt,MI,48417 +Byron,MI,48418 +Carsonville,MI,48419 +Clio,MI,48420 +Columbiaville,MI,48421 +Croswell,MI,48422 +Davison,MI,48423 +Decker,MI,48426 +Deckerville,MI,48427 +Dryden,MI,48428 +Durand,MI,48429 +Fenton,MI,48430 +Filion,MI,48432 +Flushing,MI,48433 +Fostoria,MI,48435 +Gaines,MI,48436 +Goodrich,MI,48438 +Grand Blanc,MI,48439 +Harbor Beach,MI,48441 +Holly,MI,48442 +Imlay City,MI,48444 +Kinde,MI,48445 +Lapeer,MI,48446 +Lennon,MI,48449 +Lexington,MI,48450 +Linden,MI,48451 +Marlette,MI,48453 +Melvin,MI,48454 +Metamora,MI,48455 +Minden City,MI,48456 +Montrose,MI,48457 +Mount Morris,MI,48458 +New Lothrop,MI,48460 +North Branch,MI,48461 +Ortonville,MI,48462 +Otisville,MI,48463 +Otter Lake,MI,48464 +Palms,MI,48465 +Peck,MI,48466 +Port Austin,MI,48467 +Port Hope,MI,48468 +Port Sanilac,MI,48469 +Ruth,MI,48470 +Sandusky,MI,48471 +Snover,MI,48472 +Swartz Creek,MI,48473 +Ubly,MI,48475 +Flint,MI,48502 +Flint,MI,48503 +Northwest,MI,48504 +Flint,MI,48505 +Northeast,MI,48506 +Flint,MI,48507 +Northeast,MI,48509 +Southeast,MI,48519 +Southeast,MI,48529 +Northwest,MI,48532 +Saginaw,MI,48601 +Saginaw,MI,48602 +Saginaw,MI,48603 +Saginaw,MI,48604 +Saginaw,MI,48607 +Alger,MI,48610 +Auburn,MI,48611 +Beaverton,MI,48612 +Bentley,MI,48613 +Brant,MI,48614 +Breckenridge,MI,48615 +Chesaning,MI,48616 +Clare,MI,48617 +Coleman,MI,48618 +Comins,MI,48619 +Edenville,MI,48620 +Fairview,MI,48621 +Farwell,MI,48622 +Freeland,MI,48623 +Gladwin,MI,48624 +Harrison,MI,48625 +Hemlock,MI,48626 +Hope,MI,48628 +Houghton Lake,MI,48629 +Kawkawlin,MI,48631 +Lake,MI,48632 +Linwood,MI,48634 +Lupton,MI,48635 +Luzerne,MI,48636 +Merrill,MI,48637 +Midland,MI,48640 +Midland,MI,48642 +Mio,MI,48647 +Oakley,MI,48649 +Pinconning,MI,48650 +Prudenville,MI,48651 +Rhodes,MI,48652 +Roscommon,MI,48653 +Rose City,MI,48654 +Saint Charles,MI,48655 +Saint Helen,MI,48656 +Sanford,MI,48657 +Standish,MI,48658 +Sterling,MI,48659 +West Branch,MI,48661 +Wheeler,MI,48662 +Akron,MI,48701 +Au Gres,MI,48703 +Barton City,MI,48705 +University Cente,MI,48706 +Bay City,MI,48708 +Bay Port,MI,48720 +Black River,MI,48721 +Bridgeport,MI,48722 +Caro,MI,48723 +Caseville,MI,48725 +Cass City,MI,48726 +Clifford,MI,48727 +Curran,MI,48728 +Deford,MI,48729 +East Tawas,MI,48730 +Elkton,MI,48731 +Essexville,MI,48732 +Fairgrove,MI,48733 +Frankenmuth,MI,48734 +Gagetown,MI,48735 +Glennie,MI,48737 +Greenbush,MI,48738 +Hale,MI,48739 +Harrisville,MI,48740 +Kingston,MI,48741 +Lincoln,MI,48742 +Long Lake,MI,48743 +Mayville,MI,48744 +Mikado,MI,48745 +Millington,MI,48746 +Munger,MI,48747 +National City,MI,48748 +Omer,MI,48749 +Oscoda,MI,48750 +Owendale,MI,48754 +Pigeon,MI,48755 +Prescott,MI,48756 +Reese,MI,48757 +Sebewaing,MI,48759 +Silverwood,MI,48760 +South Branch,MI,48761 +Spruce,MI,48762 +Tawas City,MI,48763 +Turner,MI,48765 +Twining,MI,48766 +Unionville,MI,48767 +Vassar,MI,48768 +Whittemore,MI,48770 +Alma,MI,48801 +Ashley,MI,48806 +Bannister,MI,48807 +Bath,MI,48808 +Belding,MI,48809 +Carson City,MI,48811 +Charlotte,MI,48813 +Clarksville,MI,48815 +Corunna,MI,48817 +Crystal,MI,48818 +Dansville,MI,48819 +Dewitt,MI,48820 +Dimondale,MI,48821 +Eagle,MI,48822 +East Lansing,MI,48823 +Eaton Rapids,MI,48827 +Edmore,MI,48829 +Carland,MI,48831 +Elwell,MI,48832 +Fenwick,MI,48834 +Fowler,MI,48835 +Fowlerville,MI,48836 +Grand Ledge,MI,48837 +Greenville,MI,48838 +Haslett,MI,48840 +Henderson,MI,48841 +Holt,MI,48842 +Howell,MI,48843 +Hubbardston,MI,48845 +Ionia,MI,48846 +Ithaca,MI,48847 +Laingsburg,MI,48848 +Lake Odessa,MI,48849 +Lakeview,MI,48850 +Lyons,MI,48851 +Mason,MI,48854 +Middleton,MI,48856 +Morrice,MI,48857 +Mount Pleasant,MI,48858 +Muir,MI,48860 +Mulliken,MI,48861 +Okemos,MI,48864 +Orleans,MI,48865 +Ovid,MI,48866 +Owosso,MI,48867 +Perrinton,MI,48871 +Perry,MI,48872 +Pewamo,MI,48873 +Portland,MI,48875 +Potterville,MI,48876 +Riverdale,MI,48877 +Rosebush,MI,48878 +Saint Johns,MI,48879 +Saint Louis,MI,48880 +Saranac,MI,48881 +Shepherd,MI,48883 +Sheridan,MI,48884 +Sidney,MI,48885 +Six Lakes,MI,48886 +Stanton,MI,48888 +Sumner,MI,48889 +Sunfield,MI,48890 +Vestaburg,MI,48891 +Webberville,MI,48892 +Weidman,MI,48893 +Westphalia,MI,48894 +Williamston,MI,48895 +Woodland,MI,48897 +Lansing,MI,48906 +Lansing,MI,48910 +Lansing,MI,48911 +Lansing,MI,48912 +Lansing,MI,48915 +Lansing,MI,48917 +Lansing,MI,48933 +Kalamazoo,MI,49001 +Kalamazoo,MI,49002 +Parchment,MI,49004 +Kalamazoo,MI,49007 +Kalamazoo,MI,49008 +Kalamazoo,MI,49009 +Allegan,MI,49010 +Athens,MI,49011 +Augusta,MI,49012 +Bangor,MI,49013 +Battle Creek,MI,49015 +Battle Creek,MI,49017 +Bellevue,MI,49021 +Benton Harbor,MI,49022 +Bloomingdale,MI,49026 +Bronson,MI,49028 +Burlington,MI,49029 +Burr Oak,MI,49030 +Cassopolis,MI,49031 +Centreville,MI,49032 +Ceresco,MI,49033 +Climax,MI,49034 +Coldwater,MI,49036 +Coloma,MI,49038 +Colon,MI,49040 +Constantine,MI,49042 +Covert,MI,49043 +Decatur,MI,49045 +Delton,MI,49046 +Dowagiac,MI,49047 +Dowling,MI,49050 +East Leroy,MI,49051 +Fulton,MI,49052 +Galesburg,MI,49053 +Gobles,MI,49055 +Grand Junction,MI,49056 +Hartford,MI,49057 +Hastings,MI,49058 +Hickory Corners,MI,49060 +Jones,MI,49061 +Lawrence,MI,49064 +Lawton,MI,49065 +Leonidas,MI,49066 +Marcellus,MI,49067 +Marshall,MI,49068 +Martin,MI,49070 +Mattawan,MI,49071 +Mendon,MI,49072 +Nashville,MI,49073 +Olivet,MI,49076 +Otsego,MI,49078 +Paw Paw,MI,49079 +Plainwell,MI,49080 +Quincy,MI,49082 +Richland,MI,49083 +Saint Joseph,MI,49085 +Schoolcraft,MI,49087 +Scotts,MI,49088 +Sherwood,MI,49089 +South Haven,MI,49090 +Sturgis,MI,49091 +Tekonsha,MI,49092 +Three Rivers,MI,49093 +Union City,MI,49094 +Vandalia,MI,49095 +Vermontville,MI,49096 +Vicksburg,MI,49097 +Watervliet,MI,49098 +White Pigeon,MI,49099 +Baroda,MI,49101 +Berrien Center,MI,49102 +Berrien Springs,MI,49103 +Bridgman,MI,49106 +Buchanan,MI,49107 +Eau Claire,MI,49111 +Edwardsburg,MI,49112 +Galien,MI,49113 +Lakeside,MI,49116 +Grand Beach,MI,49117 +Niles,MI,49120 +Sawyer,MI,49125 +Sodus,MI,49126 +Stevensville,MI,49127 +Three Oaks,MI,49128 +Union Pier,MI,49129 +Union,MI,49130 +Jackson,MI,49201 +Jackson,MI,49202 +Jackson,MI,49203 +Addison,MI,49220 +Adrian,MI,49221 +Albion,MI,49224 +Allen,MI,49227 +Blissfield,MI,49228 +Britton,MI,49229 +Brooklyn,MI,49230 +Camden,MI,49232 +Cement City,MI,49233 +Clarklake,MI,49234 +Clayton,MI,49235 +Clinton,MI,49236 +Concord,MI,49237 +Deerfield,MI,49238 +Grass Lake,MI,49240 +Hanover,MI,49241 +Hillsdale,MI,49242 +Homer,MI,49245 +Horton,MI,49246 +Hudson,MI,49247 +Jasper,MI,49248 +Jerome,MI,49249 +Jonesville,MI,49250 +Leslie,MI,49251 +Litchfield,MI,49252 +Manitou Beach,MI,49253 +Michigan Center,MI,49254 +Montgomery,MI,49255 +Morenci,MI,49256 +Munith,MI,49259 +North Adams,MI,49262 +Onondaga,MI,49264 +Onsted,MI,49265 +Osseo,MI,49266 +Ottawa Lake,MI,49267 +Palmyra,MI,49268 +Parma,MI,49269 +Petersburg,MI,49270 +Pittsford,MI,49271 +Pleasant Lake,MI,49272 +Reading,MI,49274 +Ridgeway,MI,49275 +Riga,MI,49276 +Rives Junction,MI,49277 +Sand Creek,MI,49279 +Somerset,MI,49281 +Spring Arbor,MI,49283 +Springport,MI,49284 +Stockbridge,MI,49285 +Tecumseh,MI,49286 +Tipton,MI,49287 +Waldron,MI,49288 +Ada,MI,49301 +Alto,MI,49302 +Bailey,MI,49303 +Baldwin,MI,49304 +Barryton,MI,49305 +Belmont,MI,49306 +Big Rapids,MI,49307 +Bitely,MI,49309 +Blanchard,MI,49310 +Byron Center,MI,49315 +Dutton,MI,49316 +Casnovia,MI,49318 +Cedar Springs,MI,49319 +Comstock Park,MI,49321 +Coral,MI,49322 +Dorr,MI,49323 +Freeport,MI,49325 +Gowen,MI,49326 +Grant,MI,49327 +Hopkins,MI,49328 +Howard City,MI,49329 +Kent City,MI,49330 +Lowell,MI,49331 +Mecosta,MI,49332 +Middleville,MI,49333 +Morley,MI,49336 +Newaygo,MI,49337 +Paris,MI,49338 +Pierson,MI,49339 +Remus,MI,49340 +Rockford,MI,49341 +Rodney,MI,49342 +Sand Lake,MI,49343 +Shelbyville,MI,49344 +Sparta,MI,49345 +Stanwood,MI,49346 +Trufant,MI,49347 +Wayland,MI,49348 +White Cloud,MI,49349 +Allendale,MI,49401 +Branch,MI,49402 +Conklin,MI,49403 +Coopersville,MI,49404 +Custer,MI,49405 +Fennville,MI,49408 +Fountain,MI,49410 +Free Soil,MI,49411 +Fremont,MI,49412 +Fruitport,MI,49415 +Grand Haven,MI,49417 +Grandville,MI,49418 +Hamilton,MI,49419 +Hart,MI,49420 +Hesperia,MI,49421 +Holland,MI,49423 +Holland,MI,49424 +Holton,MI,49425 +Hudsonville,MI,49426 +Jenison,MI,49428 +Ludington,MI,49431 +Marne,MI,49435 +Mears,MI,49436 +Montague,MI,49437 +Muskegon,MI,49440 +Muskegon,MI,49441 +Muskegon,MI,49442 +Muskegon Heights,MI,49444 +North Muskegon,MI,49445 +New Era,MI,49446 +New Richmond,MI,49447 +Nunica,MI,49448 +Pentwater,MI,49449 +Pullman,MI,49450 +Ravenna,MI,49451 +Rothbury,MI,49452 +Saugatuck,MI,49453 +Scottville,MI,49454 +Shelby,MI,49455 +Spring Lake,MI,49456 +Twin Lake,MI,49457 +Walkerville,MI,49459 +West Olive,MI,49460 +Whitehall,MI,49461 +Zeeland,MI,49464 +Grand Rapids,MI,49503 +Walker,MI,49504 +Grand Rapids,MI,49505 +Grand Rapids,MI,49506 +Grand Rapids,MI,49507 +Kentwood,MI,49508 +Wyoming,MI,49509 +Kentwood,MI,49512 +Grand Rapids,MI,49546 +Kentwood,MI,49548 +Cadillac,MI,49601 +Alden,MI,49612 +Arcadia,MI,49613 +Bear Lake,MI,49614 +Bellaire,MI,49615 +Benzonia,MI,49616 +Beulah,MI,49617 +Boon,MI,49618 +Brethren,MI,49619 +Buckley,MI,49620 +Cedar,MI,49621 +Central Lake,MI,49622 +Chase,MI,49623 +Copemish,MI,49625 +Elk Rapids,MI,49629 +Empire,MI,49630 +Evart,MI,49631 +Falmouth,MI,49632 +Fife Lake,MI,49633 +Frankfort,MI,49635 +Glen Arbor,MI,49636 +Grawn,MI,49637 +Harrietta,MI,49638 +Hersey,MI,49639 +Honor,MI,49640 +Idlewild,MI,49642 +Interlochen,MI,49643 +Irons,MI,49644 +Kaleva,MI,49645 +Kalkaska,MI,49646 +Karlin,MI,49647 +Kewadin,MI,49648 +Kingsley,MI,49649 +Lake Ann,MI,49650 +Moorestown,MI,49651 +Lake Leelanau,MI,49653 +Leland,MI,49654 +Leroy,MI,49655 +Luther,MI,49656 +Mc Bain,MI,49657 +Mancelona,MI,49659 +Stronach,MI,49660 +Manton,MI,49663 +Maple City,MI,49664 +Marion,MI,49665 +Merritt,MI,49667 +Mesick,MI,49668 +Northport,MI,49670 +Onekama,MI,49675 +Rapid City,MI,49676 +Reed City,MI,49677 +Sears,MI,49679 +South Boardman,MI,49680 +Suttons Bay,MI,49682 +Thompsonville,MI,49683 +Traverse City,MI,49684 +Tustin,MI,49688 +Wellston,MI,49689 +Williamsburg,MI,49690 +Afton,MI,49705 +Alanson,MI,49706 +Alpena,MI,49707 +Atlanta,MI,49709 +Barbeau,MI,49710 +Boyne City,MI,49712 +Boyne Falls,MI,49713 +Raco,MI,49715 +Brutus,MI,49716 +Carp Lake,MI,49718 +Cedarville,MI,49719 +Charlevoix,MI,49720 +Cheboygan,MI,49721 +Dafter,MI,49724 +De Tour Village,MI,49725 +Drummond Island,MI,49726 +East Jordan,MI,49727 +Eckerman,MI,49728 +Ellsworth,MI,49729 +Elmira,MI,49730 +Frederic,MI,49733 +Gaylord,MI,49735 +Goetzville,MI,49736 +Grayling,MI,49738 +Harbor Point,MI,49740 +Hawks,MI,49743 +Herron,MI,49744 +Hillman,MI,49746 +Hubbard Lake,MI,49747 +Indian River,MI,49749 +Johannesburg,MI,49751 +Kinross,MI,49752 +Lachine,MI,49753 +Levering,MI,49755 +Lewiston,MI,49756 +Mackinac Island,MI,49757 +Millersburg,MI,49759 +Moran,MI,49760 +Naubinway,MI,49762 +Onaway,MI,49765 +Ossineke,MI,49766 +Paradise,MI,49768 +Pellston,MI,49769 +Bay View,MI,49770 +Pickford,MI,49774 +Pointe Aux Pins,MI,49775 +Posen,MI,49776 +Rogers City,MI,49779 +Fibre,MI,49780 +Saint Ignace,MI,49781 +Saint James,MI,49782 +Sault Sainte Mar,MI,49783 +Kincheloe,MI,49788 +Stalwart,MI,49789 +Tower,MI,49792 +Vanderbilt,MI,49795 +Wolverine,MI,49799 +Iron Mountain,MI,49801 +Au Train,MI,49806 +Hardwood,MI,49807 +Carney,MI,49812 +Cedar River,MI,49813 +Champion,MI,49814 +Channing,MI,49815 +Limestone,MI,49816 +Cooks,MI,49817 +Cornell,MI,49818 +Curtis,MI,49820 +Daggett,MI,49821 +Deerton,MI,49822 +Eben Junction,MI,49825 +Rumely,MI,49826 +Engadine,MI,49827 +Escanaba,MI,49829 +Little Lake,MI,49833 +Foster City,MI,49834 +Garden,MI,49835 +Germfask,MI,49836 +Brampton,MI,49837 +Gould City,MI,49838 +Grand Marais,MI,49839 +Gulliver,MI,49840 +Princeton,MI,49841 +K I Sawyer A F B,MI,49843 +Hermansville,MI,49847 +Ingalls,MI,49848 +North Lake,MI,49849 +Mc Millan,MI,49853 +Thompson,MI,49854 +Beaver Grove,MI,49855 +Menominee,MI,49858 +Michigamme,MI,49861 +Christmas,MI,49862 +Negaunee,MI,49866 +Newberry,MI,49868 +Norway,MI,49870 +Perronville,MI,49873 +Powers,MI,49874 +Quinnesec,MI,49876 +Rapid River,MI,49878 +Republic,MI,49879 +Rock,MI,49880 +Sagola,MI,49881 +Seney,MI,49883 +Shingleton,MI,49884 +Skandia,MI,49885 +Spalding,MI,49886 +Stephenson,MI,49887 +Traunik,MI,49890 +Trenary,MI,49891 +Vulcan,MI,49892 +Wallace,MI,49893 +Wells,MI,49894 +Wetmore,MI,49895 +Wilson,MI,49896 +Atlantic Mine,MI,49905 +Keweenaw Bay,MI,49908 +Bergland,MI,49910 +Bessemer,MI,49911 +Bruce Crossing,MI,49912 +Laurium,MI,49913 +Chassell,MI,49916 +Covington,MI,49919 +Crystal Falls,MI,49920 +Dodgeville,MI,49921 +Ewen,MI,49925 +Gaastra,MI,49927 +Hancock,MI,49930 +Houghton,MI,49931 +Iron River,MI,49935 +Ironwood,MI,49938 +Kenton,MI,49943 +Gay,MI,49945 +Lanse,MI,49946 +Marenisco,MI,49947 +Mass City,MI,49948 +Eagle Harbor,MI,49950 +Nisula,MI,49952 +Ontonagon,MI,49953 +Pelkie,MI,49958 +Skanee,MI,49962 +Toivola,MI,49965 +Trout Creek,MI,49967 +Wakefield,MI,49968 +Watersmeet,MI,49969 +Watton,MI,49970 +Afton,MN,55001 +Bayport,MN,55003 +East Bethel,MN,55005 +Braham,MN,55006 +Quamba,MN,55007 +Cambridge,MN,55008 +Cannon Falls,MN,55009 +Castle Rock,MN,55010 +Cedar East Bethe,MN,55011 +Chisago City,MN,55013 +Circle Pines,MN,55014 +Cottage Grove,MN,55016 +Dalbo,MN,55017 +Stanton,MN,55018 +Dundas,MN,55019 +Elko,MN,55020 +Faribault,MN,55021 +Farmington,MN,55024 +Forest Lake,MN,55025 +Frontenac,MN,55026 +Goodhue,MN,55027 +Grasston,MN,55030 +Hampton,MN,55031 +Harris,MN,55032 +Welch,MN,55033 +Hinckley,MN,55037 +Centerville,MN,55038 +Isanti,MN,55040 +Lake City,MN,55041 +Lake Elmo,MN,55042 +Lakeland,MN,55043 +Lakeville,MN,55044 +Lindstrom,MN,55045 +Veseli,MN,55046 +Marine On Saint,MN,55047 +55048,MN,55048 +Medford,MN,55049 +Mora,MN,55051 +Morristown,MN,55052 +Nerstrand,MN,55053 +Newport,MN,55055 +North Branch,MN,55056 +Northfield,MN,55057 +Owatonna,MN,55060 +Beroun,MN,55063 +Randolph,MN,55065 +Red Wing,MN,55066 +Rock Creek,MN,55067 +Rosemount,MN,55068 +Rush City,MN,55069 +Saint Francis,MN,55070 +Saint Paul Park,MN,55071 +Markville,MN,55072 +Scandia,MN,55073 +Shafer,MN,55074 +South Saint Paul,MN,55075 +Inver Grove Heig,MN,55076 +Inver Grove Heig,MN,55077 +Stacy,MN,55079 +Stanchfield,MN,55080 +Oak Park Heights,MN,55082 +Taylors Falls,MN,55084 +Warsaw,MN,55087 +Webster,MN,55088 +Welch,MN,55089 +East Bethel,MN,55092 +Saint Paul,MN,55101 +Saint Paul,MN,55102 +Saint Paul,MN,55103 +Saint Paul,MN,55104 +Saint Paul,MN,55105 +Saint Paul,MN,55106 +West Saint Paul,MN,55107 +Lauderdale,MN,55108 +North Saint Paul,MN,55109 +White Bear Lake,MN,55110 +Fort Snelling,MN,55111 +New Brighton,MN,55112 +Roseville,MN,55113 +Saint Paul,MN,55114 +White Bear Lake,MN,55115 +Saint Paul,MN,55116 +Little Canada,MN,55117 +West Saint Paul,MN,55118 +Maplewood,MN,55119 +Eagan,MN,55120 +Eagan,MN,55121 +Eagan,MN,55122 +Eagan,MN,55123 +Apple Valley,MN,55124 +Woodbury,MN,55125 +Shoreview,MN,55126 +Vadnais Heights,MN,55127 +Oakdale,MN,55128 +Mendota,MN,55150 +Albertville,MN,55301 +Annandale,MN,55302 +Ramsey,MN,55303 +Ham Lake,MN,55304 +Arlington,MN,55307 +Becker,MN,55308 +Big Lake,MN,55309 +Bird Island,MN,55310 +Brownton,MN,55312 +Buffalo,MN,55313 +Buffalo Lake,MN,55314 +Carver,MN,55315 +Champlin,MN,55316 +Chanhassen,MN,55317 +Chaska,MN,55318 +Clear Lake,MN,55319 +Clearwater,MN,55320 +Cokato,MN,55321 +Cologne,MN,55322 +Darwin,MN,55324 +Dassel,MN,55325 +Dayton,MN,55327 +Delano,MN,55328 +Eden Valley,MN,55329 +Elk River,MN,55330 +Excelsior,MN,55331 +Fairfax,MN,55332 +Franklin,MN,55333 +Gaylord,MN,55334 +Gibbon,MN,55335 +Glencoe,MN,55336 +Burnsville,MN,55337 +Green Isle,MN,55338 +Hamburg,MN,55339 +Hamel,MN,55340 +Hector,MN,55342 +Eden Prairie,MN,55343 +Eden Prairie,MN,55344 +Minnetonka,MN,55345 +Eden Prairie,MN,55346 +Eden Prairie,MN,55347 +Howard Lake,MN,55349 +Hutchinson,MN,55350 +Jordan,MN,55352 +Kimball,MN,55353 +Lester Prairie,MN,55354 +Litchfield,MN,55355 +Long Lake,MN,55356 +Loretto,MN,55357 +Maple Lake,MN,55358 +Maple Plain,MN,55359 +Mayer,MN,55360 +Monticello,MN,55362 +Montrose,MN,55363 +Mound,MN,55364 +New Auburn,MN,55366 +New Germany,MN,55367 +Norwood,MN,55368 +Maple Grove,MN,55369 +Plato,MN,55370 +Princeton,MN,55371 +Prior Lake,MN,55372 +Rockford,MN,55373 +Rogers,MN,55374 +Saint Michael,MN,55376 +Savage,MN,55378 +Shakopee,MN,55379 +Silver Creek,MN,55380 +Silver Lake,MN,55381 +South Haven,MN,55382 +Spring Park,MN,55384 +Stewart,MN,55385 +Victoria,MN,55386 +Waconia,MN,55387 +Watertown,MN,55388 +Watkins,MN,55389 +Waverly,MN,55390 +Wayzata,MN,55391 +Winsted,MN,55395 +Winthrop,MN,55396 +Young America,MN,55397 +Zimmerman,MN,55398 +Minneapolis,MN,55401 +Minneapolis,MN,55402 +Minneapolis,MN,55403 +Minneapolis,MN,55404 +Minneapolis,MN,55405 +Minneapolis,MN,55406 +Minneapolis,MN,55407 +Minneapolis,MN,55408 +Minneapolis,MN,55409 +Edina,MN,55410 +Minneapolis,MN,55411 +Minneapolis,MN,55412 +Minneapolis,MN,55413 +Minneapolis,MN,55414 +Minneapolis,MN,55415 +Saint Louis Park,MN,55416 +Minneapolis,MN,55417 +Minneapolis,MN,55418 +Minneapolis,MN,55419 +Bloomington,MN,55420 +Columbia Heights,MN,55421 +Robbinsdale,MN,55422 +Richfield,MN,55423 +Edina,MN,55424 +Bloomington,MN,55425 +Saint Louis Park,MN,55426 +Golden Valley,MN,55427 +Crystal,MN,55428 +Brooklyn Center,MN,55429 +Brooklyn Center,MN,55430 +Bloomington,MN,55431 +Fridley,MN,55432 +Coon Rapids,MN,55433 +Blaine,MN,55434 +Edina,MN,55435 +Edina,MN,55436 +Bloomington,MN,55437 +Bloomington,MN,55438 +Edina,MN,55439 +Plymouth,MN,55441 +Plymouth,MN,55442 +Brooklyn Center,MN,55443 +Brooklyn Center,MN,55444 +Brooklyn Park,MN,55445 +Plymouth,MN,55446 +Plymouth,MN,55447 +Coon Rapids,MN,55448 +Minneapolis,MN,55450 +Minneapolis,MN,55454 +Minneapolis,MN,55455 +Loretto,MN,55599 +Brimson,MN,55602 +Finland,MN,55603 +Grand Marais,MN,55604 +Grand Portage,MN,55605 +Hovland,MN,55606 +Isabella,MN,55607 +Lutsen,MN,55612 +Schroeder,MN,55613 +Little Marais,MN,55614 +Tofte,MN,55615 +Two Harbors,MN,55616 +Alborn,MN,55702 +Angora,MN,55703 +Askov,MN,55704 +Aurora,MN,55705 +Babbitt,MN,55706 +Barnum,MN,55707 +Bovey,MN,55709 +Britt,MN,55710 +Brookston,MN,55711 +Bruno,MN,55712 +Canyon,MN,55717 +Carlton,MN,55718 +Chisholm,MN,55719 +Cloquet,MN,55720 +Cohasset,MN,55721 +Cook,MN,55723 +Kelsey,MN,55724 +Crane Lake,MN,55725 +Cromwell,MN,55726 +Culver,MN,55727 +Ely,MN,55731 +Embarrass,MN,55732 +Esko,MN,55733 +Eveleth,MN,55734 +Finlayson,MN,55735 +Floodwood,MN,55736 +Gheen,MN,55740 +Gilbert,MN,55741 +Goodland,MN,55742 +La Prairie,MN,55744 +Hibbing,MN,55746 +Hill City,MN,55748 +Holyoke,MN,55749 +Hoyt Lakes,MN,55750 +Iron,MN,55751 +Jacobson,MN,55752 +55755,MN,55755 +Kerrick,MN,55756 +Kettle River,MN,55757 +Mc Gregor,MN,55760 +Mahtowa,MN,55762 +Makinen,MN,55763 +Meadowlands,MN,55765 +Melrude,MN,55766 +Moose Lake,MN,55767 +Mountain Iron,MN,55768 +Nashwauk,MN,55769 +Buyck,MN,55771 +Parkville,MN,55773 +Pengilly,MN,55775 +Saginaw,MN,55779 +Sawyer,MN,55780 +Sturgeon Lake,MN,55783 +Swan River,MN,55784 +Swatara,MN,55785 +Tamarack,MN,55787 +Togo,MN,55788 +Tower,MN,55790 +Virginia,MN,55792 +Warba,MN,55793 +Willow River,MN,55795 +Wrenshall,MN,55797 +Wright,MN,55798 +Zim,MN,55799 +Duluth,MN,55801 +Duluth,MN,55802 +Duluth,MN,55803 +Duluth,MN,55804 +Duluth,MN,55805 +Duluth,MN,55806 +Duluth,MN,55807 +Duluth,MN,55808 +Proctor,MN,55810 +Hermantown,MN,55811 +Duluth,MN,55812 +Rochester,MN,55901 +Rochester,MN,55902 +Rochester,MN,55904 +Rochester,MN,55906 +Adams,MN,55909 +Altura,MN,55910 +Austin,MN,55912 +Blooming Prairie,MN,55917 +Brownsdale,MN,55918 +Brownsville,MN,55919 +Byron,MN,55920 +Caledonia,MN,55921 +Canton,MN,55922 +Chatfield,MN,55923 +Claremont,MN,55924 +Dakota,MN,55925 +Dexter,MN,55926 +Dodge Center,MN,55927 +Dover,MN,55929 +Elgin,MN,55932 +Elkton,MN,55933 +Viola,MN,55934 +Fountain,MN,55935 +Grand Meadow,MN,55936 +Granger,MN,55937 +Harmony,MN,55939 +Hayfield,MN,55940 +Hokah,MN,55941 +Houston,MN,55943 +Kasson,MN,55944 +Theilman,MN,55945 +Kenyon,MN,55946 +La Crescent,MN,55947 +Lanesboro,MN,55949 +Le Roy,MN,55951 +Lewiston,MN,55952 +Lyle,MN,55953 +Mabel,MN,55954 +Mantorville,MN,55955 +Mazeppa,MN,55956 +Millville,MN,55957 +Minnesota City,MN,55959 +Oronoco,MN,55960 +Ostrander,MN,55961 +Peterson,MN,55962 +Pine Island,MN,55963 +Plainview,MN,55964 +Preston,MN,55965 +Racine,MN,55967 +Rollingstone,MN,55969 +Rose Creek,MN,55970 +Rushford,MN,55971 +Saint Charles,MN,55972 +Sargeant,MN,55973 +Spring Grove,MN,55974 +Spring Valley,MN,55975 +Stewartville,MN,55976 +Taopi,MN,55977 +Theilman,MN,55978 +Utica,MN,55979 +Wabasha,MN,55981 +Waltham,MN,55982 +Wanamingo,MN,55983 +West Concord,MN,55985 +Whalan,MN,55986 +Goodview,MN,55987 +Wykoff,MN,55990 +Hammond,MN,55991 +Zumbrota,MN,55992 +Mankato,MN,56001 +North Mankato,MN,56003 +Albert Lea,MN,56007 +Alden,MN,56009 +Amboy,MN,56010 +Belle Plaine,MN,56011 +Blue Earth,MN,56013 +Bricelyn,MN,56014 +Clarks Grove,MN,56016 +Cleveland,MN,56017 +Comfrey,MN,56019 +Conger,MN,56020 +Courtland,MN,56021 +Darfur,MN,56022 +Delavan,MN,56023 +Eagle Lake,MN,56024 +Easton,MN,56025 +Ellendale,MN,56026 +Elmore,MN,56027 +Elysian,MN,56028 +Emmons,MN,56029 +Essig,MN,56030 +Fairmont,MN,56031 +Freeborn,MN,56032 +Frost,MN,56033 +Garden City,MN,56034 +Geneva,MN,56035 +Glenville,MN,56036 +Good Thunder,MN,56037 +Granada,MN,56039 +Hanska,MN,56041 +Hartland,MN,56042 +Hayward,MN,56043 +Henderson,MN,56044 +Hollandale,MN,56045 +Hope,MN,56046 +Huntley,MN,56047 +Janesville,MN,56048 +Kasota,MN,56050 +Kiester,MN,56051 +Kilkenny,MN,56052 +Lafayette,MN,56054 +Lake Crystal,MN,56055 +Le Center,MN,56057 +Le Sueur,MN,56058 +Lewisville,MN,56060 +London,MN,56061 +Madelia,MN,56062 +Madison Lake,MN,56063 +Manchester,MN,56064 +Mapleton,MN,56065 +Meriden,MN,56067 +Minnesota Lake,MN,56068 +Montgomery,MN,56069 +New Prague,MN,56071 +New Richland,MN,56072 +New Ulm,MN,56073 +Nicollet,MN,56074 +Northrop,MN,56075 +Oakland,MN,56076 +Otisco,MN,56077 +Pemberton,MN,56078 +Saint Clair,MN,56080 +Saint James,MN,56081 +Saint Peter,MN,56082 +Sanborn,MN,56083 +Sleepy Eye,MN,56085 +Springfield,MN,56087 +Truman,MN,56088 +Twin Lakes,MN,56089 +Vernon Center,MN,56090 +Waldorf,MN,56091 +Walters,MN,56092 +Waseca,MN,56093 +Waterville,MN,56096 +Wells,MN,56097 +Winnebago,MN,56098 +Wilder,MN,56101 +Adrian,MN,56110 +Alpha,MN,56111 +Amiret,MN,56112 +Arco,MN,56113 +Avoca,MN,56114 +Balaton,MN,56115 +Beaver Creek,MN,56116 +Bigelow,MN,56117 +Bingham Lake,MN,56118 +Brewster,MN,56119 +Butterfield,MN,56120 +Ceylon,MN,56121 +Chandler,MN,56122 +Currie,MN,56123 +Delft,MN,56124 +Dovray,MN,56125 +Dundee,MN,56126 +Dunnell,MN,56127 +Edgerton,MN,56128 +Ellsworth,MN,56129 +56130,MN,56130 +Fulda,MN,56131 +Garvin,MN,56132 +Hadley,MN,56133 +Hardwick,MN,56134 +56135,MN,56135 +Hendricks,MN,56136 +Heron Lake,MN,56137 +Hills,MN,56138 +Holland,MN,56139 +Iona,MN,56141 +Ivanhoe,MN,56142 +Jackson,MN,56143 +Jasper,MN,56144 +Jeffers,MN,56145 +Kanaranzi,MN,56146 +Kenneth,MN,56147 +Lake Benton,MN,56149 +Lakefield,MN,56150 +Lake Wilson,MN,56151 +Lamberton,MN,56152 +Leota,MN,56153 +Lismore,MN,56155 +Luverne,MN,56156 +Lynd,MN,56157 +Magnolia,MN,56158 +Mountain Lake,MN,56159 +Odin,MN,56160 +Okabena,MN,56161 +Ormsby,MN,56162 +Hatfield,MN,56164 +Reading,MN,56165 +Revere,MN,56166 +Round Lake,MN,56167 +Rushmore,MN,56168 +Russell,MN,56169 +Florence,MN,56170 +Sherburn,MN,56171 +Slayton,MN,56172 +Steen,MN,56173 +Storden,MN,56174 +Tracy,MN,56175 +Trimont,MN,56176 +Tyler,MN,56178 +Verdi,MN,56179 +Walnut Grove,MN,56180 +Welcome,MN,56181 +Westbrook,MN,56183 +Wilmont,MN,56185 +Woodstock,MN,56186 +Worthington,MN,56187 +Willmar,MN,56201 +Alberta,MN,56207 +Appleton,MN,56208 +Atwater,MN,56209 +Barry,MN,56210 +Beardsley,MN,56211 +Bellingham,MN,56212 +Belview,MN,56214 +Benson,MN,56215 +Svea,MN,56216 +Boyd,MN,56218 +Browns Valley,MN,56219 +Canby,MN,56220 +Chokio,MN,56221 +Clara City,MN,56222 +Clarkfield,MN,56223 +Clements,MN,56224 +Clinton,MN,56225 +Clontarf,MN,56226 +Correll,MN,56227 +Cosmos,MN,56228 +Cottonwood,MN,56229 +Danube,MN,56230 +Danvers,MN,56231 +Dawson,MN,56232 +De Graff,MN,56233 +Donnelly,MN,56235 +Dumont,MN,56236 +Echo,MN,56237 +Evan,MN,56238 +Ghent,MN,56239 +Graceville,MN,56240 +Granite Falls,MN,56241 +Grove City,MN,56243 +Hancock,MN,56244 +Hanley Falls,MN,56245 +Hawick,MN,56246 +Hazel Run,MN,56247 +Herman,MN,56248 +Holloway,MN,56249 +Johnson,MN,56250 +Kandiyohi,MN,56251 +Kerkhoven,MN,56252 +Lake Lillian,MN,56253 +Louisburg,MN,56254 +Lucan,MN,56255 +Madison,MN,56256 +Marietta,MN,56257 +Marshall,MN,56258 +Maynard,MN,56260 +Milan,MN,56262 +Milroy,MN,56263 +Minneota,MN,56264 +Montevideo,MN,56265 +Morgan,MN,56266 +Morris,MN,56267 +Morton,MN,56270 +Murdock,MN,56271 +Nassau,MN,56272 +New London,MN,56273 +Norcross,MN,56274 +Odessa,MN,56276 +Olivia,MN,56277 +Ortonville,MN,56278 +Pennock,MN,56279 +Porter,MN,56280 +Prinsburg,MN,56281 +Raymond,MN,56282 +Delhi,MN,56283 +Renville,MN,56284 +Sacred Heart,MN,56285 +Saint Leo,MN,56286 +Seaforth,MN,56287 +Spicer,MN,56288 +Sunburg,MN,56289 +56290,MN,56290 +Taunton,MN,56291 +Vesta,MN,56292 +Wabasso,MN,56293 +Wanda,MN,56294 +Watson,MN,56295 +Wheaton,MN,56296 +Wood Lake,MN,56297 +Saint Cloud,MN,56301 +Saint Cloud,MN,56303 +Saint Cloud,MN,56304 +Albany,MN,56307 +Alexandria,MN,56308 +Ashby,MN,56309 +Avon,MN,56310 +Barrett,MN,56311 +Belgrade,MN,56312 +Bock,MN,56313 +Bowlus,MN,56314 +Brandon,MN,56315 +Brooten,MN,56316 +Burtrum,MN,56318 +Carlos,MN,56319 +Cold Spring,MN,56320 +Cyrus,MN,56323 +Dalton,MN,56324 +Evansville,MN,56326 +Farwell,MN,56327 +Flensburg,MN,56328 +Foley,MN,56329 +Foreston,MN,56330 +Freeport,MN,56331 +Garfield,MN,56332 +Gilman,MN,56333 +Glenwood,MN,56334 +Grey Eagle,MN,56336 +Hillman,MN,56338 +Hoffman,MN,56339 +Holdingford,MN,56340 +Holmes City,MN,56341 +Isle,MN,56342 +Kensington,MN,56343 +Little Falls,MN,56345 +Little Sauk,MN,56347 +Lowry,MN,56349 +Mc Grath,MN,56350 +Melrose,MN,56352 +Milaca,MN,56353 +Miltona,MN,56354 +Nelson,MN,56355 +Oak Park,MN,56357 +Ogilvie,MN,56358 +Onamia,MN,56359 +Osakis,MN,56360 +Parkers Prairie,MN,56361 +Paynesville,MN,56362 +Pease,MN,56363 +Pierz,MN,56364 +Rice,MN,56367 +Richmond,MN,56368 +Royalton,MN,56373 +Saint Joseph,MN,56374 +Saint Stephen,MN,56375 +Sartell,MN,56377 +Sauk Centre,MN,56378 +Sauk Rapids,MN,56379 +Sedan,MN,56380 +Starbuck,MN,56381 +Swanville,MN,56382 +Upsala,MN,56384 +Villard,MN,56385 +Wahkon,MN,56386 +Waite Park,MN,56387 +West Union,MN,56389 +East Gull Lake,MN,56401 +Aitkin,MN,56431 +Akeley,MN,56433 +Aldrich,MN,56434 +Backus,MN,56435 +Bertha,MN,56437 +Browerville,MN,56438 +Clarissa,MN,56440 +Crosby,MN,56441 +Crosslake,MN,56442 +Cushing,MN,56443 +Deerwood,MN,56444 +Eagle Bend,MN,56446 +Emily,MN,56447 +Fifty Lakes,MN,56448 +Fort Ripley,MN,56449 +Garrison,MN,56450 +Hackensack,MN,56452 +Hewitt,MN,56453 +Ironton,MN,56455 +Jenkins,MN,56456 +Lake George,MN,56458 +Lake Itasca,MN,56460 +Laporte,MN,56461 +Manhattan Beach,MN,56463 +Menahga,MN,56464 +Merrifield,MN,56465 +Leader,MN,56466 +Nevis,MN,56467 +Lake Shore,MN,56468 +Palisade,MN,56469 +Park Rapids,MN,56470 +Pequot Lakes,MN,56472 +Pillager,MN,56473 +Pine River,MN,56474 +Randall,MN,56475 +Sebeka,MN,56477 +Staples,MN,56479 +Verndale,MN,56481 +Wadena,MN,56482 +Walker,MN,56484 +Whipholt,MN,56485 +Detroit Lakes,MN,56501 +Lockhart,MN,56510 +Audubon,MN,56511 +Baker,MN,56513 +Downer,MN,56514 +Battle Lake,MN,56515 +Bejou,MN,56516 +Beltrami,MN,56517 +Bluffton,MN,56518 +Borup,MN,56519 +Breckenridge,MN,56520 +Callaway,MN,56521 +Doran,MN,56522 +Eldred,MN,56523 +Clitherall,MN,56524 +Comstock,MN,56525 +Deer Creek,MN,56527 +Dent,MN,56528 +Dilworth,MN,56529 +Elbow Lake,MN,56531 +Elizabeth,MN,56533 +Erhard,MN,56534 +Erskine,MN,56535 +Felton,MN,56536 +Carlisle,MN,56537 +Fertile,MN,56540 +Fosston,MN,56542 +Foxhome,MN,56543 +Frazee,MN,56544 +Gary,MN,56545 +Georgetown,MN,56546 +Glyndon,MN,56547 +Halstad,MN,56548 +Rollag,MN,56549 +Hendrum,MN,56550 +Henning,MN,56551 +Hitterdal,MN,56552 +Kent,MN,56553 +Lake Park,MN,56554 +Mcintosh,MN,56556 +Mahnomen,MN,56557 +Moorhead,MN,56560 +Nashua,MN,56565 +Naytahwaush,MN,56566 +New York Mills,MN,56567 +Nielsville,MN,56568 +Ogema,MN,56569 +Osage,MN,56570 +Ottertail,MN,56571 +Pelican Rapids,MN,56572 +Perham,MN,56573 +Perley,MN,56574 +Ponsford,MN,56575 +Richville,MN,56576 +Richwood,MN,56577 +Rochert,MN,56578 +Rothsay,MN,56579 +Sabin,MN,56580 +Shelly,MN,56581 +Tenney,MN,56583 +Twin Valley,MN,56584 +Ulen,MN,56585 +Underwood,MN,56586 +Vergas,MN,56587 +Vining,MN,56588 +Waubun,MN,56589 +Wendell,MN,56590 +Winger,MN,56592 +Wolf Lake,MN,56593 +Wolverton,MN,56594 +Bemidji,MN,56601 +Bagley,MN,56621 +Baudette,MN,56623 +56625,MN,56625 +Bena,MN,56626 +Big Falls,MN,56627 +Bigfork,MN,56628 +Birchdale,MN,56629 +Blackduck,MN,56630 +Boy River,MN,56632 +Cass Lake,MN,56633 +Clearbrook,MN,56634 +Deer River,MN,56636 +Talmoon,MN,56637 +Effie,MN,56639 +Federal Dam,MN,56641 +Gonvick,MN,56644 +Gully,MN,56646 +Hines,MN,56647 +International Fa,MN,56649 +Kelliher,MN,56650 +Lengby,MN,56651 +Leonard,MN,56652 +Littlefork,MN,56653 +Loman,MN,56654 +Longville,MN,56655 +Marcell,MN,56657 +Max,MN,56659 +Mizpah,MN,56660 +Northome,MN,56661 +Outing,MN,56662 +Pennington,MN,56663 +Pitt,MN,56665 +Ponemah,MN,56666 +Puposky,MN,56667 +Ranier,MN,56668 +Ray,MN,56669 +Redby,MN,56670 +Redlake,MN,56671 +Remer,MN,56672 +Roosevelt,MN,56673 +Saum,MN,56674 +Shevlin,MN,56676 +Solway,MN,56678 +Spring Lake,MN,56680 +Squaw Lake,MN,56681 +Swift,MN,56682 +Tenstrike,MN,56683 +Trail,MN,56684 +Waskish,MN,56685 +Williams,MN,56686 +Wilton,MN,56687 +Wirt,MN,56688 +Thief River Fall,MN,56701 +Alvarado,MN,56710 +Angle Inlet,MN,56711 +Angus,MN,56712 +Argyle,MN,56713 +Badger,MN,56714 +Brooks,MN,56715 +Crookston,MN,56716 +Donaldson,MN,56720 +East Grand Forks,MN,56721 +Euclid,MN,56722 +Fisher,MN,56723 +Gatzke,MN,56724 +Goodridge,MN,56725 +Greenbush,MN,56726 +Grygla,MN,56727 +Hallock,MN,56728 +Halma,MN,56729 +Karlstad,MN,56732 +Kennedy,MN,56733 +Lake Bronson,MN,56734 +Orleans,MN,56735 +Mentor,MN,56736 +Middle River,MN,56737 +Newfolden,MN,56738 +Noyes,MN,56740 +Oak Island,MN,56741 +Oklee,MN,56742 +Oslo,MN,56744 +Plummer,MN,56748 +Red Lake Falls,MN,56750 +Pencer,MN,56751 +Saint Hilaire,MN,56754 +Saint Vincent,MN,56755 +Salol,MN,56756 +Stephen,MN,56757 +Strandquist,MN,56758 +Strathcona,MN,56759 +Viking,MN,56760 +Wannaska,MN,56761 +Radium,MN,56762 +Warroad,MN,56763 +Abbeville,MS,38601 +Cannon,MS,38603 +Batesville,MS,38606 +Blue Mountain,MS,38610 +Byhalia,MS,38611 +Stovall,MS,38614 +Coahoma,MS,38617 +Coldwater,MS,38618 +Como,MS,38619 +Courtland,MS,38620 +Askew,MS,38621 +Dumas,MS,38625 +Dundee,MS,38626 +Etta,MS,38627 +Falkner,MS,38629 +Hernando,MS,38632 +Hickory Flat,MS,38633 +Holly Springs,MS,38635 +Horn Lake,MS,38637 +Lake Cormorant,MS,38641 +Lamar,MS,38642 +Lambert,MS,38643 +Lyon,MS,38645 +Marks,MS,38646 +Michigan City,MS,38647 +Myrtle,MS,38650 +Nesbit,MS,38651 +New Albany,MS,38652 +Olive Branch,MS,38654 +Lafayette,MS,38655 +Pleasant Grove,MS,38657 +Pope,MS,38658 +Potts Camp,MS,38659 +Red Banks,MS,38661 +Ripley,MS,38663 +Robinsonville,MS,38664 +Savage,MS,38665 +Sardis,MS,38666 +Senatobia,MS,38668 +Sledge,MS,38670 +Southaven,MS,38671 +Taylor,MS,38673 +Tiplersville,MS,38674 +Tunica,MS,38676 +University,MS,38677 +Walls,MS,38680 +Walnut,MS,38683 +Waterford,MS,38685 +Greenville,MS,38701 +Greenville,MS,38703 +Alligator,MS,38720 +Anguilla,MS,38721 +Benoit,MS,38725 +Beulah,MS,38726 +Boyle,MS,38730 +Cleveland,MS,38732 +Doddsville,MS,38736 +Drew,MS,38737 +Duncan,MS,38740 +Glen Allan,MS,38744 +Gunnison,MS,38746 +Percy,MS,38748 +Baird,MS,38751 +Inverness,MS,38753 +Isola,MS,38754 +Elizabeth,MS,38756 +Merigold,MS,38759 +Moorhead,MS,38761 +Mound Bayou,MS,38762 +Rosedale,MS,38769 +Ruleville,MS,38771 +Shaw,MS,38773 +Shelby,MS,38774 +Sunflower,MS,38778 +Wayside,MS,38780 +Tupelo,MS,38801 +Amory,MS,38821 +Baldwyn,MS,38824 +Belden,MS,38826 +Belmont,MS,38827 +Blue Springs,MS,38828 +Booneville,MS,38829 +Burnsville,MS,38833 +Kossuth,MS,38834 +Dennis,MS,38838 +Ecru,MS,38841 +Fulton,MS,38843 +Gattman,MS,38844 +Glen,MS,38846 +Golden,MS,38847 +Greenwood Spring,MS,38848 +Guntown,MS,38849 +Houlka,MS,38850 +Houston,MS,38851 +Iuka,MS,38852 +Mantachie,MS,38855 +Marietta,MS,38856 +Mooreville,MS,38857 +Nettleton,MS,38858 +New Site,MS,38859 +Egypt,MS,38860 +Plantersville,MS,38862 +Pontotoc,MS,38863 +Sarepta,MS,38864 +Rienzi,MS,38865 +Saltillo,MS,38866 +Shannon,MS,38868 +Smithville,MS,38870 +Thaxton,MS,38871 +Tishomingo,MS,38873 +Tremont,MS,38876 +Vardaman,MS,38878 +Grenada,MS,38901 +Avalon,MS,38912 +Banner,MS,38913 +Big Creek,MS,38914 +Bruce,MS,38915 +Calhoun City,MS,38916 +Carrollton,MS,38917 +Cascilla,MS,38920 +Charleston,MS,38921 +Coffeeville,MS,38922 +Coila,MS,38923 +Cruger,MS,38924 +Duck Hill,MS,38925 +Enid,MS,38927 +Gore Springs,MS,38929 +Greenwood,MS,38930 +Holcomb,MS,38940 +Itta Bena,MS,38941 +Mc Carley,MS,38943 +Minter City,MS,38944 +Oakland,MS,38948 +Water Valley,MS,38949 +Philipp,MS,38950 +Pittsboro,MS,38951 +Schlater,MS,38952 +Scobey,MS,38953 +Sidon,MS,38954 +Tillatoba,MS,38961 +Tutwiler,MS,38963 +Vance,MS,38964 +Water Valley,MS,38965 +Winona,MS,38967 +Belzoni,MS,39038 +Benton,MS,39039 +Bentonia,MS,39040 +Bolton,MS,39041 +Brandon,MS,39042 +Braxton,MS,39044 +Camden,MS,39045 +Canton,MS,39046 +Carlisle,MS,39049 +Edinburg,MS,39051 +Church Hill,MS,39055 +Clinton,MS,39056 +Conehatta,MS,39057 +Crystal Springs,MS,39059 +Durant,MS,39063 +Edwards,MS,39066 +Ethel,MS,39067 +Fayette,MS,39069 +Flora,MS,39071 +Florence,MS,39073 +Forest,MS,39074 +Georgetown,MS,39078 +Goodman,MS,39079 +Harrisville,MS,39082 +Hazlehurst,MS,39083 +Hermanville,MS,39086 +Holly Bluff,MS,39088 +Kosciusko,MS,39090 +Lake,MS,39092 +Lena,MS,39094 +Lexington,MS,39095 +Lorman,MS,39096 +Louise,MS,39097 +Mc Cool,MS,39108 +Madden,MS,39109 +Madison,MS,39110 +Magee,MS,39111 +Mayersville,MS,39113 +Mendenhall,MS,39114 +Mize,MS,39116 +Morton,MS,39117 +Mount Olive,MS,39119 +Natchez,MS,39120 +Newhebron,MS,39140 +Pattison,MS,39144 +Pelahatchie,MS,39145 +Pickens,MS,39146 +Pinola,MS,39149 +Port Gibson,MS,39150 +Pulaski,MS,39152 +Raleigh,MS,39153 +Learned,MS,39154 +Redwood,MS,39156 +Ridgeland,MS,39157 +Rolling Fork,MS,39159 +Sallis,MS,39160 +Satartia,MS,39162 +Silver City,MS,39166 +Taylorsville,MS,39168 +Tchula,MS,39169 +Terry,MS,39170 +Utica,MS,39175 +Vaiden,MS,39176 +Valley Park,MS,39177 +Pickens,MS,39179 +Vicksburg,MS,39180 +Walnut Grove,MS,39189 +Wesson,MS,39191 +West,MS,39192 +Yazoo City,MS,39194 +Jackson,MS,39201 +Jackson,MS,39202 +Jackson,MS,39203 +Jackson,MS,39204 +Jackson,MS,39206 +Pearl,MS,39208 +Jackson,MS,39209 +Jackson,MS,39211 +Jackson,MS,39212 +Jackson,MS,39213 +Jackson,MS,39216 +Richland,MS,39218 +Jackson,MS,39269 +Meridian,MS,39301 +Meridian,MS,39305 +Meridian,MS,39307 +Bailey,MS,39320 +Buckatunna,MS,39322 +Chunky,MS,39323 +Collinsville,MS,39325 +Daleville,MS,39326 +Decatur,MS,39327 +De Kalb,MS,39328 +Enterprise,MS,39330 +Hickory,MS,39332 +Lauderdale,MS,39335 +Lawrence,MS,39336 +Little Rock,MS,39337 +Louin,MS,39338 +Louisville,MS,39339 +Macon,MS,39341 +Newton,MS,39345 +Noxapater,MS,39346 +Pachuta,MS,39347 +Paulding,MS,39348 +Philadelphia,MS,39350 +Porterville,MS,39352 +Preston,MS,39354 +Quitman,MS,39355 +Rose Hill,MS,39356 +Scooba,MS,39358 +Matherville,MS,39360 +Shuqualak,MS,39361 +State Line,MS,39362 +Stonewall,MS,39363 +Toomsuba,MS,39364 +Union,MS,39365 +Vossburg,MS,39366 +Waynesboro,MS,39367 +Hattiesburg,MS,39401 +Hattiesburg,MS,39402 +Bassfield,MS,39421 +Bay Springs,MS,39422 +Beaumont,MS,39423 +Brooklyn,MS,39425 +Carriere,MS,39426 +Carson,MS,39427 +Collins,MS,39428 +Columbia,MS,39429 +Ellisville,MS,39437 +Heidelberg,MS,39439 +Laurel,MS,39440 +Leakesville,MS,39451 +Agricola,MS,39452 +Lumberton,MS,39455 +Leaf,MS,39456 +Moselle,MS,39459 +Neely,MS,39461 +New Augusta,MS,39462 +Ovett,MS,39464 +Petal,MS,39465 +Picayune,MS,39466 +Poplarville,MS,39470 +Prentiss,MS,39474 +Purvis,MS,39475 +Richton,MS,39476 +Sandy Hook,MS,39478 +Seminary,MS,39479 +Soso,MS,39480 +Stringer,MS,39481 +Sumrall,MS,39482 +Foxworth,MS,39483 +Gulfport,MS,39501 +Gulfport,MS,39503 +Gulfport,MS,39507 +Diamondhead,MS,39520 +Biloxi,MS,39530 +Biloxi,MS,39531 +North Bay,MS,39532 +Gautier,MS,39553 +Long Beach,MS,39560 +Mc Henry,MS,39561 +Kreole,MS,39563 +Ocean Springs,MS,39564 +Pascagoula,MS,39567 +Pass Christian,MS,39571 +Perkinston,MS,39573 +Saucier,MS,39574 +Waveland,MS,39576 +Wiggins,MS,39577 +Pascagoula,MS,39581 +Brookhaven,MS,39601 +Bogue Chitto,MS,39629 +Centreville,MS,39631 +Crosby,MS,39633 +Gloster,MS,39638 +Jayess,MS,39641 +Kokomo,MS,39643 +Liberty,MS,39645 +Mc Call Creek,MS,39647 +Mc Comb,MS,39648 +Magnolia,MS,39652 +Meadville,MS,39653 +Monticello,MS,39654 +Oak Vale,MS,39656 +Osyka,MS,39657 +Roxie,MS,39661 +Ruth,MS,39662 +Silver Creek,MS,39663 +Smithdale,MS,39664 +Sontag,MS,39665 +Summit,MS,39666 +Tylertown,MS,39667 +Union Church,MS,39668 +Woodville,MS,39669 +Columbus,MS,39701 +Columbus,MS,39702 +Aberdeen,MS,39730 +Ackerman,MS,39735 +Brooksville,MS,39739 +Caledonia,MS,39740 +Cedarbluff,MS,39741 +Crawford,MS,39743 +Tomnolen,MS,39744 +French Camp,MS,39745 +Hamilton,MS,39746 +Kilmichael,MS,39747 +Maben,MS,39750 +Mantee,MS,39751 +Mathiston,MS,39752 +Pheba,MS,39755 +Prairie,MS,39756 +Sessums,MS,39759 +Steens,MS,39766 +Stewart,MS,39767 +Sturgis,MS,39769 +Weir,MS,39772 +West Point,MS,39773 +Woodland,MS,39776 +Chesterfield,MO,63005 +Arnold,MO,63010 +Manchester,MO,63011 +Barnhart,MO,63012 +Beaufort,MO,63013 +Berger,MO,63014 +Catawissa,MO,63015 +Cedar Hill,MO,63016 +Town And Country,MO,63017 +Crystal City,MO,63019 +De Soto,MO,63020 +Ballwin,MO,63021 +Dittmer,MO,63023 +Crescent,MO,63025 +Fenton,MO,63026 +Festus,MO,63028 +Fletcher,MO,63030 +Florissant,MO,63031 +Florissant,MO,63033 +Florissant,MO,63034 +French Village,MO,63036 +Gerald,MO,63037 +Glencoe,MO,63038 +Gray Summit,MO,63039 +Grover,MO,63040 +Hazelwood,MO,63042 +Maryland Heights,MO,63043 +Bridgeton,MO,63044 +Bridgeton,MO,63045 +Herculaneum,MO,63048 +High Ridge,MO,63049 +Hillsboro,MO,63050 +House Springs,MO,63051 +Antonia,MO,63052 +Labadie,MO,63055 +Leslie,MO,63056 +Lonedell,MO,63060 +Luebbering,MO,63061 +New Haven,MO,63068 +Pacific,MO,63069 +Pevely,MO,63070 +Richwoods,MO,63071 +Robertsville,MO,63072 +Saint Ann,MO,63074 +Saint Clair,MO,63077 +Sullivan,MO,63080 +Union,MO,63084 +Valley Park,MO,63088 +Villa Ridge,MO,63089 +Washington,MO,63090 +Rosebud,MO,63091 +Saint Louis,MO,63101 +Saint Louis,MO,63102 +Saint Louis,MO,63103 +Saint Louis,MO,63104 +Clayton,MO,63105 +Saint Louis,MO,63106 +Saint Louis,MO,63107 +Saint Louis,MO,63108 +Saint Louis,MO,63109 +Saint Louis,MO,63110 +Saint Louis,MO,63111 +Saint Louis,MO,63112 +Saint Louis,MO,63113 +Overland,MO,63114 +Saint Louis,MO,63115 +Saint Louis,MO,63116 +Richmond Heights,MO,63117 +Saint Louis,MO,63118 +Webster Groves,MO,63119 +Saint Louis,MO,63120 +Normandy,MO,63121 +Kirkwood,MO,63122 +Affton,MO,63123 +Ladue,MO,63124 +Lemay,MO,63125 +Sappington,MO,63126 +Sappington,MO,63127 +Sappington,MO,63128 +South County,MO,63129 +University City,MO,63130 +Des Peres,MO,63131 +Olivette,MO,63132 +Saint Louis,MO,63133 +Berkeley,MO,63134 +Ferguson,MO,63135 +Jennings,MO,63136 +North County,MO,63137 +North County,MO,63138 +Saint Louis,MO,63139 +Berkeley,MO,63140 +Creve Coeur,MO,63141 +Maplewood,MO,63143 +Brentwood,MO,63144 +West County,MO,63146 +Saint Louis,MO,63147 +Saint Charles,MO,63301 +Saint Charles,MO,63303 +Saint Charles,MO,63304 +Annada,MO,63330 +Augusta,MO,63332 +Bellflower,MO,63333 +Bowling Green,MO,63334 +Clarksville,MO,63336 +Curryville,MO,63339 +Defiance,MO,63341 +Elsberry,MO,63343 +Eolia,MO,63344 +Farber,MO,63345 +Foley,MO,63347 +Foristell,MO,63348 +Hawk Point,MO,63349 +High Hill,MO,63350 +Jonesburg,MO,63351 +Laddonia,MO,63352 +Louisiana,MO,63353 +Lake Sherwood,MO,63357 +Middletown,MO,63359 +Montgomery City,MO,63361 +Moscow Mills,MO,63362 +New Florence,MO,63363 +New Hartford,MO,63364 +Saint Paul,MO,63366 +Lake Saint Louis,MO,63367 +Old Monroe,MO,63369 +Olney,MO,63370 +Paynesville,MO,63371 +Portage Des Siou,MO,63373 +Saint Peters,MO,63376 +Silex,MO,63377 +Troy,MO,63379 +Truxton,MO,63381 +Vandalia,MO,63382 +Warrenton,MO,63383 +Wellsville,MO,63384 +Wentzville,MO,63385 +West Alton,MO,63386 +Williamsburg,MO,63388 +Winfield,MO,63389 +Wright City,MO,63390 +Hannibal,MO,63401 +Alexandria,MO,63430 +Anabel,MO,63431 +Arbela,MO,63432 +Ashburn,MO,63433 +Bethel,MO,63434 +Canton,MO,63435 +Center,MO,63436 +Clarence,MO,63437 +Durham,MO,63438 +Emden,MO,63439 +Ewing,MO,63440 +Frankford,MO,63441 +Hunnewell,MO,63443 +Kahoka,MO,63445 +Knox City,MO,63446 +La Belle,MO,63447 +La Grange,MO,63448 +Lentner,MO,63450 +Leonard,MO,63451 +Lewistown,MO,63452 +Luray,MO,63453 +Maywood,MO,63454 +Monroe City,MO,63456 +Monticello,MO,63457 +Newark,MO,63458 +New London,MO,63459 +Novelty,MO,63460 +Palmyra,MO,63461 +Perry,MO,63462 +Philadelphia,MO,63463 +Plevna,MO,63464 +Saint Patrick,MO,63466 +Shelbina,MO,63468 +Shelbyville,MO,63469 +Steffenville,MO,63470 +Taylor,MO,63471 +Wayland,MO,63472 +Williamstown,MO,63473 +Wyaconda,MO,63474 +Kirksville,MO,63501 +Atlanta,MO,63530 +Baring,MO,63531 +Bevier,MO,63532 +Brashear,MO,63533 +Callao,MO,63534 +Coatsville,MO,63535 +Downing,MO,63536 +Edina,MO,63537 +Elmer,MO,63538 +Ethel,MO,63539 +Gibbs,MO,63540 +Glenwood,MO,63541 +Gorin,MO,63543 +Green Castle,MO,63544 +Green City,MO,63545 +Greentop,MO,63546 +Hurdland,MO,63547 +Lancaster,MO,63548 +La Plata,MO,63549 +Livonia,MO,63551 +Macon,MO,63552 +Memphis,MO,63555 +Milan,MO,63556 +New Boston,MO,63557 +New Cambria,MO,63558 +Novinger,MO,63559 +Pollock,MO,63560 +Queen City,MO,63561 +Rutledge,MO,63563 +Unionville,MO,63565 +Winigan,MO,63566 +Worthington,MO,63567 +Desloge,MO,63601 +Annapolis,MO,63620 +Arcadia,MO,63621 +Belgrade,MO,63622 +Belleview,MO,63623 +Desloge,MO,63624 +Black,MO,63625 +Blackwell,MO,63626 +Bloomsdale,MO,63627 +Bonne Terre,MO,63628 +Bunker,MO,63629 +Cadet,MO,63630 +Caledonia,MO,63631 +Centerville,MO,63633 +Des Arc,MO,63636 +Doe Run,MO,63637 +Ellington,MO,63638 +Farmington,MO,63640 +Millcreek,MO,63645 +Irondale,MO,63648 +Iron Mountain,MO,63650 +Leadwood,MO,63653 +Lesterville,MO,63654 +Marquand,MO,63655 +Middle Brook,MO,63656 +Mineral Point,MO,63660 +Patton,MO,63662 +Potosi,MO,63664 +Redford,MO,63665 +Lake Forest Esta,MO,63670 +Saint Mary,MO,63673 +Vulcan,MO,63675 +Cape Girardeau,MO,63701 +Advance,MO,63730 +New Wells,MO,63732 +Arab,MO,63733 +Bell City,MO,63735 +Benton,MO,63736 +Burfordville,MO,63739 +Chaffee,MO,63740 +Daisy,MO,63743 +Delta,MO,63744 +Friedheim,MO,63747 +Frohna,MO,63748 +Gipsy,MO,63750 +Glenallen,MO,63751 +Grassy,MO,63753 +Jackson,MO,63755 +Leopold,MO,63760 +Mc Gee,MO,63763 +Scopus,MO,63764 +Millersville,MO,63766 +63768,MO,63768 +Oak Ridge,MO,63769 +Old Appleton,MO,63770 +Oran,MO,63771 +Perryville,MO,63775 +Scott City,MO,63780 +Sedgewickville,MO,63781 +Sturdivant,MO,63782 +Uniontown,MO,63783 +Whitewater,MO,63785 +Wittenberg,MO,63786 +Zalma,MO,63787 +Sikeston,MO,63801 +Arbyrd,MO,63821 +Bernie,MO,63822 +Bertrand,MO,63823 +Bloomfield,MO,63825 +Bragg City,MO,63827 +Cardwell,MO,63829 +Caruthersville,MO,63830 +Catron,MO,63833 +Charleston,MO,63834 +Clarkton,MO,63837 +Dexter,MO,63841 +East Prairie,MO,63845 +Essex,MO,63846 +Gideon,MO,63848 +Gobler,MO,63849 +Hayti Heights,MO,63851 +Holcomb,MO,63852 +Hornersville,MO,63855 +Kennett,MO,63857 +Lilbourn,MO,63862 +Malden,MO,63863 +Marston,MO,63866 +Matthews,MO,63867 +Morehouse,MO,63868 +New Madrid,MO,63869 +Parma,MO,63870 +Portageville,MO,63873 +Senath,MO,63876 +Steele,MO,63877 +Homestown,MO,63879 +Poplar Bluff,MO,63901 +Briar,MO,63931 +Broseley,MO,63932 +Campbell,MO,63933 +Clubb,MO,63934 +Poynor,MO,63935 +Dudley,MO,63936 +Ellsinore,MO,63937 +Fairdealing,MO,63939 +Fisk,MO,63940 +Fremont,MO,63941 +Gatewood,MO,63942 +Grandin,MO,63943 +Greenville,MO,63944 +Harviell,MO,63945 +Hiram,MO,63947 +Lodi,MO,63950 +Lowndes,MO,63951 +Mill Spring,MO,63952 +Naylor,MO,63953 +Neelyville,MO,63954 +Oxly,MO,63955 +Patterson,MO,63956 +Piedmont,MO,63957 +63959,MO,63959 +Puxico,MO,63960 +Qulin,MO,63961 +Shook,MO,63963 +Silva,MO,63964 +Van Buren,MO,63965 +Wappapello,MO,63966 +Williamsville,MO,63967 +Alma,MO,64001 +Bates City,MO,64011 +Belton,MO,64012 +Blue Springs,MO,64014 +Lake Tapawingo,MO,64015 +Buckner,MO,64016 +Camden,MO,64017 +Camden Point,MO,64018 +Centerview,MO,64019 +Concordia,MO,64020 +Corder,MO,64021 +Dover,MO,64022 +Excelsior Spring,MO,64024 +Grain Valley,MO,64029 +Grandview,MO,64030 +Lake Winnebago,MO,64034 +Hardin,MO,64035 +Henrietta,MO,64036 +Higginsville,MO,64037 +Holden,MO,64040 +Holt,MO,64048 +Independence,MO,64050 +Independence,MO,64052 +Independence,MO,64053 +Sugar Creek,MO,64054 +Independence,MO,64055 +Independence,MO,64056 +Independence,MO,64057 +Independence,MO,64058 +Kearney,MO,64060 +Kingsville,MO,64061 +Lawson,MO,64062 +Lake Lotawana,MO,64063 +Lees Summit,MO,64064 +Lexington,MO,64067 +Pleasant Valley,MO,64068 +Lone Jack,MO,64070 +Mayview,MO,64071 +Napoleon,MO,64074 +Oak Grove,MO,64075 +Odessa,MO,64076 +Orrick,MO,64077 +Peculiar,MO,64078 +Platte City,MO,64079 +Pleasant Hill,MO,64080 +Lees Summit,MO,64081 +Lees Summit,MO,64082 +Raymore,MO,64083 +Rayville,MO,64084 +Richmond,MO,64085 +Sibley,MO,64088 +Smithville,MO,64089 +Warrensburg,MO,64093 +Waverly,MO,64096 +Wellington,MO,64097 +Weston,MO,64098 +Kansas City,MO,64101 +Kansas City,MO,64102 +Kansas City,MO,64105 +Kansas City,MO,64106 +Kansas City,MO,64108 +Kansas City,MO,64109 +Kansas City,MO,64110 +Kansas City,MO,64111 +Kansas City,MO,64112 +Kansas City,MO,64113 +Kansas City,MO,64114 +North Kansas Cit,MO,64116 +Randolph,MO,64117 +Gladstone,MO,64118 +Kansas City,MO,64119 +Kansas City,MO,64120 +Kansas City,MO,64123 +Kansas City,MO,64124 +Kansas City,MO,64125 +Kansas City,MO,64126 +Kansas City,MO,64127 +Kansas City,MO,64128 +Kansas City,MO,64129 +Kansas City,MO,64130 +Kansas City,MO,64131 +Kansas City,MO,64132 +Raytown,MO,64133 +Kansas City,MO,64134 +Kansas City,MO,64136 +Kansas City,MO,64137 +Raytown,MO,64138 +Kansas City,MO,64139 +Kansas City,MO,64145 +Kansas City,MO,64146 +Martin City,MO,64147 +Kansas City,MO,64149 +Kansas City,MO,64150 +Lake Waukomis,MO,64151 +Parkville,MO,64152 +Kansas City,MO,64153 +Kansas City,MO,64154 +Kansas City,MO,64155 +Kansas City,MO,64156 +Kansas City,MO,64157 +Kansas City,MO,64158 +Randolph,MO,64161 +Ferrelview,MO,64163 +Kansas City,MO,64164 +Kansas City,MO,64165 +Kansas City,MO,64166 +Kansas City,MO,64167 +Agency,MO,64401 +Albany,MO,64402 +Amazonia,MO,64421 +Amity,MO,64422 +Barnard,MO,64423 +Bethany,MO,64424 +64425,MO,64425 +Blythedale,MO,64426 +Bolckow,MO,64427 +Burlington Junct,MO,64428 +Cameron,MO,64429 +Clarksdale,MO,64430 +Clearmont,MO,64431 +Clyde,MO,64432 +Conception,MO,64433 +Conception Junct,MO,64434 +Corning,MO,64435 +Cosby,MO,64436 +Bigelow,MO,64437 +Darlington,MO,64438 +Dearborn,MO,64439 +De Kalb,MO,64440 +Denver,MO,64441 +Eagleville,MO,64442 +Easton,MO,64443 +Edgerton,MO,64444 +Elmo,MO,64445 +Fairfax,MO,64446 +Faucett,MO,64448 +Fillmore,MO,64449 +Forest City,MO,64451 +Fortescue,MO,64452 +Gentry,MO,64453 +Gower,MO,64454 +Graham,MO,64455 +Grant City,MO,64456 +Guilford,MO,64457 +Hatfield,MO,64458 +Helena,MO,64459 +Hopkins,MO,64461 +King City,MO,64463 +Lathrop,MO,64465 +Maitland,MO,64466 +Martinsville,MO,64467 +Maryville,MO,64468 +Maysville,MO,64469 +Mound City,MO,64470 +New Hampton,MO,64471 +Oregon,MO,64473 +Osborn,MO,64474 +Parnell,MO,64475 +Pickering,MO,64476 +Plattsburg,MO,64477 +Quitman,MO,64478 +Ravenwood,MO,64479 +Rea,MO,64480 +Ridgeway,MO,64481 +Rock Port,MO,64482 +Rosendale,MO,64483 +Rushville,MO,64484 +Savannah,MO,64485 +Sheridan,MO,64486 +Skidmore,MO,64487 +Stanberry,MO,64489 +Hemple,MO,64490 +Tarkio,MO,64491 +Trimble,MO,64492 +Turney,MO,64493 +Union Star,MO,64494 +Watson,MO,64496 +Weatherby,MO,64497 +Westboro,MO,64498 +Worth,MO,64499 +Saint Joseph,MO,64501 +Saint Joseph,MO,64503 +Saint Joseph,MO,64504 +Saint Joseph,MO,64505 +Saint Joseph,MO,64506 +Saint Joseph,MO,64507 +Chillicothe,MO,64601 +Altamont,MO,64620 +Avalon,MO,64621 +Bogard,MO,64622 +Bosworth,MO,64623 +Braymer,MO,64624 +Breckenridge,MO,64625 +Brookfield,MO,64628 +Browning,MO,64630 +Bucklin,MO,64631 +Cainsville,MO,64632 +Carrollton,MO,64633 +Chula,MO,64635 +Coffey,MO,64636 +Cowgill,MO,64637 +Dawn,MO,64638 +De Witt,MO,64639 +Gallatin,MO,64640 +Galt,MO,64641 +Gilman City,MO,64642 +Hale,MO,64643 +Hamilton,MO,64644 +Harris,MO,64645 +Humphreys,MO,64646 +Jameson,MO,64647 +Jamesport,MO,64648 +Kidder,MO,64649 +Kingston,MO,64650 +Laclede,MO,64651 +Laredo,MO,64652 +Linneus,MO,64653 +Lock Springs,MO,64654 +Lucerne,MO,64655 +Ludlow,MO,64656 +Mc Fall,MO,64657 +Marceline,MO,64658 +Meadville,MO,64659 +Mendon,MO,64660 +Mercer,MO,64661 +Mooresville,MO,64664 +Mount Moriah,MO,64665 +Newtown,MO,64667 +Norborne,MO,64668 +Pattonsburg,MO,64670 +Polo,MO,64671 +Powersville,MO,64672 +Princeton,MO,64673 +Purdin,MO,64674 +Rothville,MO,64676 +Saint Catharine,MO,64677 +Spickard,MO,64679 +Sumner,MO,64681 +Tina,MO,64682 +Trenton,MO,64683 +Utica,MO,64686 +Wheeling,MO,64688 +Winston,MO,64689 +Harrisonville,MO,64701 +Adrian,MO,64720 +Amoret,MO,64722 +Amsterdam,MO,64723 +Appleton City,MO,64724 +Archie,MO,64725 +Blairstown,MO,64726 +Bronaugh,MO,64728 +Butler,MO,64730 +Chilhowee,MO,64733 +Cleveland,MO,64734 +Tightwad,MO,64735 +Collins,MO,64738 +Creighton,MO,64739 +Deepwater,MO,64740 +Deerfield,MO,64741 +Drexel,MO,64742 +El Dorado Spring,MO,64744 +Foster,MO,64745 +Freeman,MO,64746 +Garden City,MO,64747 +Golden City,MO,64748 +Harwood,MO,64750 +Horton,MO,64751 +Stotesbury,MO,64752 +Jasper,MO,64755 +Jerico Springs,MO,64756 +Iantha,MO,64759 +Latour,MO,64760 +Leeton,MO,64761 +Liberal,MO,64762 +Lowry City,MO,64763 +Milo,MO,64767 +Mindenmines,MO,64769 +Montrose,MO,64770 +Moundville,MO,64771 +Nevada,MO,64772 +Osceola,MO,64776 +Richards,MO,64778 +Rich Hill,MO,64779 +Rockville,MO,64780 +Schell City,MO,64783 +Sheldon,MO,64784 +Urich,MO,64788 +Walker,MO,64790 +Joplin,MO,64801 +Joplin,MO,64804 +Anderson,MO,64831 +Asbury,MO,64832 +Avilla,MO,64833 +Carl Junction,MO,64834 +Carterville,MO,64835 +Carthage,MO,64836 +Diamond,MO,64840 +Fairview,MO,64842 +Goodman,MO,64843 +Granby,MO,64844 +Lanagan,MO,64847 +La Russell,MO,64848 +Neosho,MO,64850 +Noel,MO,64854 +Oronogo,MO,64855 +Jane,MO,64856 +Reeds,MO,64859 +Rocky Comfort,MO,64861 +Sarcoxie,MO,64862 +South West City,MO,64863 +Seneca,MO,64865 +Stark City,MO,64866 +Stella,MO,64867 +Tiff City,MO,64868 +Webb City,MO,64870 +Wentworth,MO,64873 +Wheaton,MO,64874 +Argyle,MO,65001 +Ashland,MO,65010 +Barnett,MO,65011 +Belle,MO,65013 +Bland,MO,65014 +Bonnots Mill,MO,65016 +Brumley,MO,65017 +California,MO,65018 +Camdenton,MO,65020 +Centertown,MO,65023 +Chamois,MO,65024 +Clarksburg,MO,65025 +Eldon,MO,65026 +Eugene,MO,65032 +Fortuna,MO,65034 +Freeburg,MO,65035 +Gravois Mills,MO,65037 +Hartsburg,MO,65039 +Henley,MO,65040 +Bay,MO,65041 +High Point,MO,65042 +Holts Summit,MO,65043 +Jamestown,MO,65046 +Kaiser,MO,65047 +Koeltztown,MO,65048 +Four Seasons,MO,65049 +Latham,MO,65050 +Linn,MO,65051 +Linn Creek,MO,65052 +Lohman,MO,65053 +Loose Creek,MO,65054 +Meta,MO,65058 +Mokane,MO,65059 +Morrison,MO,65061 +Mount Sterling,MO,65062 +New Bloomfield,MO,65063 +Olean,MO,65064 +Osage Beach,MO,65065 +Owensville,MO,65066 +Portland,MO,65067 +Prairie Home,MO,65068 +Rhineland,MO,65069 +Rocky Mount,MO,65072 +Russellville,MO,65074 +Saint Elizabeth,MO,65075 +Saint Thomas,MO,65076 +Steedman,MO,65077 +Stover,MO,65078 +Sunrise Beach,MO,65079 +Tebbetts,MO,65080 +Tipton,MO,65081 +Tuscumbia,MO,65082 +Ulman,MO,65083 +Versailles,MO,65084 +Westphalia,MO,65085 +Jefferson City,MO,65101 +Jefferson City,MO,65109 +Columbia,MO,65201 +Columbia,MO,65202 +Columbia,MO,65203 +Armstrong,MO,65230 +Auxvasse,MO,65231 +Benton City,MO,65232 +Boonville,MO,65233 +Brunswick,MO,65236 +Bunceton,MO,65237 +Cairo,MO,65239 +Centralia,MO,65240 +Clark,MO,65243 +Clifton Hill,MO,65244 +Dalton,MO,65246 +Excello,MO,65247 +Fayette,MO,65248 +Franklin,MO,65250 +Fulton,MO,65251 +Glasgow,MO,65254 +Hallsville,MO,65255 +Harrisburg,MO,65256 +Higbee,MO,65257 +Holliday,MO,65258 +Huntsville,MO,65259 +Jacksonville,MO,65260 +Keytesville,MO,65261 +Kingdom City,MO,65262 +Madison,MO,65263 +Martinsburg,MO,65264 +Mexico,MO,65265 +Moberly,MO,65270 +New Franklin,MO,65274 +Paris,MO,65275 +Pilot Grove,MO,65276 +Rocheport,MO,65279 +Rush Hill,MO,65280 +Salisbury,MO,65281 +Santa Fe,MO,65282 +Stoutsville,MO,65283 +Sturgeon,MO,65284 +Thompson,MO,65285 +Triplett,MO,65286 +Wooldridge,MO,65287 +Sedalia,MO,65301 +Whiteman Afb,MO,65305 +Blackburn,MO,65321 +Blackwater,MO,65322 +Calhoun,MO,65323 +Climax Springs,MO,65324 +Cole Camp,MO,65325 +Edwards,MO,65326 +Florence,MO,65329 +Gilliam,MO,65330 +Green Ridge,MO,65332 +Houstonia,MO,65333 +Hughesville,MO,65334 +Ionia,MO,65335 +Knob Noster,MO,65336 +La Monte,MO,65337 +Lincoln,MO,65338 +Grand Pass,MO,65339 +Napton,MO,65340 +Miami,MO,65344 +Mora,MO,65345 +Nelson,MO,65347 +Otterville,MO,65348 +Slater,MO,65349 +Smithton,MO,65350 +Sweet Springs,MO,65351 +Syracuse,MO,65354 +Warsaw,MO,65355 +Windsor,MO,65360 +Rolla,MO,65401 +Bendavis,MO,65433 +Beulah,MO,65436 +Birch Tree,MO,65438 +Bixby,MO,65439 +Boss,MO,65440 +Bourbon,MO,65441 +Brinktown,MO,65443 +Bucyrus,MO,65444 +Cherryville,MO,65446 +Cook Station,MO,65449 +65451,MO,65451 +Crocker,MO,65452 +Cuba,MO,65453 +Davisville,MO,65456 +Devils Elbow,MO,65457 +Dixon,MO,65459 +Duke,MO,65461 +Edgar Springs,MO,65462 +Eldridge,MO,65463 +Elk Creek,MO,65464 +Eminence,MO,65466 +Eunice,MO,65468 +Falcon,MO,65470 +Fort Leonard Woo,MO,65473 +Hartshorn,MO,65479 +Houston,MO,65483 +Huggins,MO,65484 +Iberia,MO,65486 +Jadwin,MO,65501 +Jerome,MO,65529 +Laquey,MO,65534 +Leasburg,MO,65535 +Lebanon,MO,65536 +Anutt,MO,65540 +Lenox,MO,65541 +Licking,MO,65542 +Lynchburg,MO,65543 +Mountain View,MO,65548 +Newburg,MO,65550 +Plato,MO,65552 +Raymondville,MO,65555 +Richland,MO,65556 +Roby,MO,65557 +Saint James,MO,65559 +Salem,MO,65560 +Solo,MO,65564 +Berryman,MO,65565 +Viburnum,MO,65566 +Stoutland,MO,65567 +Success,MO,65570 +Summersville,MO,65571 +Teresita,MO,65573 +Vichy,MO,65580 +Vienna,MO,65582 +Saint Robert,MO,65583 +Wesco,MO,65586 +Winona,MO,65588 +Yukon,MO,65589 +Long Lane,MO,65590 +Montreal,MO,65591 +Aldrich,MO,65601 +Arcola,MO,65603 +Ash Grove,MO,65604 +Jenkins,MO,65605 +Riverton,MO,65606 +Ava,MO,65608 +Bakersfield,MO,65609 +Billings,MO,65610 +Blue Eye,MO,65611 +Bois D Arc,MO,65612 +Bolivar,MO,65613 +Bradleyville,MO,65614 +Marvel Cave Park,MO,65616 +Brighton,MO,65617 +Brixey,MO,65618 +Brookline Statio,MO,65619 +Bruner,MO,65620 +Buffalo,MO,65622 +Butterfield,MO,65623 +Cape Fair,MO,65624 +Cassville,MO,65625 +Caulfield,MO,65626 +Cedarcreek,MO,65627 +Chadwick,MO,65629 +Chestnutridge,MO,65630 +Clever,MO,65631 +Conway,MO,65632 +Crane,MO,65633 +Cross Timbers,MO,65634 +Dadeville,MO,65635 +Dora,MO,65637 +Drury,MO,65638 +Dunnegan,MO,65640 +Eagle Rock,MO,65641 +Elkland,MO,65644 +Everton,MO,65646 +Exeter,MO,65647 +Fair Grove,MO,65648 +Fair Play,MO,65649 +Flemington,MO,65650 +Fordland,MO,65652 +Forsyth,MO,65653 +Freistatt,MO,65654 +Gainesville,MO,65655 +Galena,MO,65656 +Garrison,MO,65657 +Golden,MO,65658 +Goodson,MO,65659 +Graff,MO,65660 +Greenfield,MO,65661 +Grovespring,MO,65662 +Half Way,MO,65663 +Hardenville,MO,65666 +Hartville,MO,65667 +Hermitage,MO,65668 +Highlandville,MO,65669 +Hollister,MO,65672 +Humansville,MO,65674 +Hurley,MO,65675 +Isabella,MO,65676 +Kirbyville,MO,65679 +Kissee Mills,MO,65680 +Lampe,MO,65681 +Lockwood,MO,65682 +Louisburg,MO,65685 +Kimberling City,MO,65686 +Brandsville,MO,65688 +Cabool,MO,65689 +Couch,MO,65690 +Koshkonong,MO,65692 +Mc Clurg,MO,65701 +Macomb,MO,65702 +Mansfield,MO,65704 +Marionville,MO,65705 +Marshfield,MO,65706 +Miller,MO,65707 +Monett,MO,65708 +Morrisville,MO,65710 +Mountain Grove,MO,65711 +Mount Vernon,MO,65712 +Niangua,MO,65713 +Nixa,MO,65714 +Noble,MO,65715 +Norwood,MO,65717 +Oldfield,MO,65720 +Ozark,MO,65721 +Phillipsburg,MO,65722 +Pierce City,MO,65723 +Pittsburg,MO,65724 +Pleasant Hope,MO,65725 +Polk,MO,65727 +Ponce De Leon,MO,65728 +Pontiac,MO,65729 +Powell,MO,65730 +Powersite,MO,65731 +Preston,MO,65732 +Protem,MO,65733 +Purdy,MO,65734 +Quincy,MO,65735 +Branson West,MO,65737 +Republic,MO,65738 +Ridgedale,MO,65739 +Rockaway Beach,MO,65740 +Rogersville,MO,65742 +Rueter,MO,65744 +Seligman,MO,65745 +Seymour,MO,65746 +Shell Knob,MO,65747 +65751,MO,65751 +South Greenfield,MO,65752 +Sparta,MO,65753 +Spokane,MO,65754 +Squires,MO,65755 +Stotts City,MO,65756 +Strafford,MO,65757 +Sycamore,MO,65758 +Taneyville,MO,65759 +Tecumseh,MO,65760 +Dugginsville,MO,65761 +Nottinghill,MO,65762 +Tunas,MO,65764 +Udall,MO,65766 +Urbana,MO,65767 +Vanzant,MO,65768 +Verona,MO,65769 +Walnut Grove,MO,65770 +Walnut Shade,MO,65771 +Washburn,MO,65772 +Souder,MO,65773 +Weaubleau,MO,65774 +West Plains,MO,65775 +South Fork,MO,65776 +Moody,MO,65777 +Myrtle,MO,65778 +Wheatland,MO,65779 +Willard,MO,65781 +Windyville,MO,65783 +Zanoni,MO,65784 +Stockton,MO,65785 +Macks Creek,MO,65786 +Roach,MO,65787 +Peace Valley,MO,65788 +Pomona,MO,65789 +Pottersville,MO,65790 +Thayer,MO,65791 +Willow Springs,MO,65793 +Springfield,MO,65802 +Springfield,MO,65803 +Springfield,MO,65804 +Springfield,MO,65806 +Springfield,MO,65807 +Springfield,MO,65809 +Springfield,MO,65810 +Absarokee,MT,59001 +Acton,MT,59002 +Ashland,MT,59003 +Ballantine,MT,59006 +Bearcreek,MT,59007 +Belfry,MT,59008 +Bighorn,MT,59010 +Big Timber,MT,59011 +Birney,MT,59012 +Bridger,MT,59014 +Broadview,MT,59015 +Busby,MT,59016 +Cat Creek,MT,59017 +Columbus,MT,59019 +Crow Agency,MT,59022 +Custer,MT,59024 +Decker,MT,59025 +Emigrant,MT,59027 +Fishtail,MT,59028 +Fromberg,MT,59029 +Gardiner,MT,59030 +Garryowen,MT,59031 +Grass Range,MT,59032 +Greycliff,MT,59033 +Hardin,MT,59034 +Huntley,MT,59037 +Hysham,MT,59038 +Ingomar,MT,59039 +Silesia,MT,59041 +Lame Deer,MT,59043 +Laurel,MT,59044 +Lavina,MT,59046 +Livingston,MT,59047 +Lodge Grass,MT,59050 +Luther,MT,59051 +Mc Leod,MT,59052 +Martinsdale,MT,59053 +Melville,MT,59055 +Molt,MT,59057 +Mosby,MT,59058 +Musselshell,MT,59059 +Nye,MT,59061 +Otter,MT,59062 +Park City,MT,59063 +Pompeys Pillar,MT,59064 +Pray,MT,59065 +Rapelje,MT,59067 +Red Lodge,MT,59068 +Reedpoint,MT,59069 +Roberts,MT,59070 +Roscoe,MT,59071 +Roundup,MT,59072 +Ryegate,MT,59074 +Saint Xavier,MT,59075 +Sand Springs,MT,59077 +Shawmut,MT,59078 +Shepherd,MT,59079 +59080,MT,59080 +Twodot,MT,59085 +Wilsall,MT,59086 +Winnett,MT,59087 +Worden,MT,59088 +Wyola,MT,59089 +Billings,MT,59101 +Billings,MT,59102 +Billings Heights,MT,59105 +Billings,MT,59106 +Wolf Point,MT,59201 +Antelope,MT,59211 +Bainville,MT,59212 +Brockton,MT,59213 +Brockway,MT,59214 +Circle,MT,59215 +Culbertson,MT,59218 +Dagmar,MT,59219 +Fairview,MT,59221 +Flaxville,MT,59222 +Fort Peck,MT,59223 +Lustre,MT,59225 +Froid,MT,59226 +Glasgow,MT,59230 +Hinsdale,MT,59241 +Homestead,MT,59242 +Lambert,MT,59243 +Larslan,MT,59244 +Medicine Lake,MT,59247 +Nashua,MT,59248 +Opheim,MT,59250 +Outlook,MT,59252 +Peerless,MT,59253 +Plentywood,MT,59254 +Poplar,MT,59255 +Raymond,MT,59256 +Redstone,MT,59257 +Reserve,MT,59258 +Richey,MT,59259 +Richland,MT,59260 +Saco,MT,59261 +Savage,MT,59262 +Scobey,MT,59263 +Sidney,MT,59270 +Vida,MT,59274 +Westby,MT,59275 +Whitetail,MT,59276 +Miles City,MT,59301 +Alzada,MT,59311 +Angela,MT,59312 +Baker,MT,59313 +Biddle,MT,59314 +Bloomfield,MT,59315 +Boyes,MT,59316 +Belle Creek,MT,59317 +Brusett,MT,59318 +Capitol,MT,59319 +Cohagen,MT,59322 +Ekalaka,MT,59324 +Fallon,MT,59326 +Forsyth,MT,59327 +Glendive,MT,59330 +Hammond,MT,59332 +Ismay,MT,59336 +Jordan,MT,59337 +Kinsey,MT,59338 +Lindsay,MT,59339 +Mildred,MT,59341 +Olive,MT,59343 +Plevna,MT,59344 +Powderville,MT,59345 +Rosebud,MT,59347 +Terry,MT,59349 +Volborg,MT,59351 +Wibaux,MT,59353 +Willard,MT,59354 +Great Falls,MT,59401 +Great Falls,MT,59404 +Great Falls,MT,59405 +Augusta,MT,59410 +Babb,MT,59411 +Belt,MT,59412 +Black Eagle,MT,59414 +Brady,MT,59416 +Saint Mary,MT,59417 +Buffalo,MT,59418 +Bynum,MT,59419 +Carter,MT,59420 +Cascade,MT,59421 +Choteau,MT,59422 +Coffee Creek,MT,59424 +Conrad,MT,59425 +Cut Bank,MT,59427 +Denton,MT,59430 +Dutton,MT,59433 +East Glacier Par,MT,59434 +Fairfield,MT,59436 +Floweree,MT,59440 +Forestgrove,MT,59441 +Fort Benton,MT,59442 +Fort Shaw,MT,59443 +Galata,MT,59444 +Geraldine,MT,59446 +Geyser,MT,59447 +Heart Butte,MT,59448 +Highwood,MT,59450 +Hilger,MT,59451 +Utica,MT,59452 +Judith Gap,MT,59453 +Kevin,MT,59454 +Ledger,MT,59456 +Lewistown,MT,59457 +Loma,MT,59460 +Moccasin,MT,59462 +Monarch,MT,59463 +Moore,MT,59464 +Neihart,MT,59465 +Pendroy,MT,59467 +Power,MT,59468 +Raynesford,MT,59469 +Roy,MT,59471 +Sand Coulee,MT,59472 +Shelby,MT,59474 +Stanford,MT,59479 +Stockett,MT,59480 +Sunburst,MT,59482 +Sun River,MT,59483 +Sweetgrass,MT,59484 +Valier,MT,59486 +Vaughn,MT,59487 +Winifred,MT,59489 +Havre,MT,59501 +Big Sandy,MT,59520 +Box Elder,MT,59521 +Chester,MT,59522 +Chinook,MT,59523 +Dodson,MT,59524 +Gildford,MT,59525 +Harlem,MT,59526 +Hays,MT,59527 +Hingham,MT,59528 +Hogeland,MT,59529 +Inverness,MT,59530 +Joplin,MT,59531 +Kremlin,MT,59532 +Lloyd,MT,59535 +Loring,MT,59537 +Malta,MT,59538 +Rudyard,MT,59540 +Turner,MT,59542 +Whitewater,MT,59544 +Whitlash,MT,59545 +Zortman,MT,59546 +Helena,MT,59601 +Boulder,MT,59632 +Canyon Creek,MT,59633 +Montana City,MT,59634 +East Helena,MT,59635 +Lincoln,MT,59639 +Radersburg,MT,59641 +Ringling,MT,59642 +Toston,MT,59643 +Townsend,MT,59644 +White Sulphur Sp,MT,59645 +Winston,MT,59647 +Wolf Creek,MT,59648 +Walkerville,MT,59701 +Anaconda,MT,59711 +Belgrade,MT,59714 +Bozeman,MT,59715 +Cameron,MT,59720 +Cardwell,MT,59721 +Deer Lodge,MT,59722 +Dell,MT,59724 +Dillon,MT,59725 +Divide,MT,59727 +Ennis,MT,59729 +Gallatin Gateway,MT,59730 +Garrison,MT,59731 +Gold Creek,MT,59733 +Harrison,MT,59735 +Jackson,MT,59736 +Lima,MT,59739 +Manhattan,MT,59741 +Norris,MT,59745 +Pony,MT,59747 +Ramsay,MT,59748 +Sheridan,MT,59749 +Butte,MT,59750 +Silver Star,MT,59751 +Three Forks,MT,59752 +Twin Bridges,MT,59754 +Virginia City,MT,59755 +Warmsprings,MT,59756 +West Yellowstone,MT,59758 +Whitehall,MT,59759 +Wisdom,MT,59761 +Wise River,MT,59762 +Missoula,MT,59801 +Missoula,MT,59802 +Missoula,MT,59803 +Alberton,MT,59820 +Arlee,MT,59821 +Bonner,MT,59823 +Moiese,MT,59824 +Clinton,MT,59825 +Condon,MT,59826 +Conner,MT,59827 +Corvallis,MT,59828 +Darby,MT,59829 +Dixon,MT,59831 +Drummond,MT,59832 +Florence,MT,59833 +Frenchtown,MT,59834 +Greenough,MT,59836 +Hall,MT,59837 +Hamilton,MT,59840 +Helmville,MT,59843 +Heron,MT,59844 +Hot Springs,MT,59845 +Huson,MT,59846 +Lolo,MT,59847 +Lonepine,MT,59848 +Niarada,MT,59852 +Noxon,MT,59853 +Ovando,MT,59854 +Philipsburg,MT,59858 +Plains,MT,59859 +Polson,MT,59860 +Ronan,MT,59864 +Saint Ignatius,MT,59865 +Saint Regis,MT,59866 +Seeley Lake,MT,59868 +Stevensville,MT,59870 +Sula,MT,59871 +Superior,MT,59872 +Thompson Falls,MT,59873 +Trout Creek,MT,59874 +Victor,MT,59875 +Evergreen,MT,59901 +Big Arm,MT,59910 +Swan Lake,MT,59911 +Columbia Falls,MT,59912 +Dayton,MT,59914 +Elmo,MT,59915 +Essex,MT,59916 +Eureka,MT,59917 +Kila,MT,59920 +Lakeside,MT,59922 +Libby,MT,59923 +Marion,MT,59925 +Polebridge,MT,59928 +Proctor,MT,59929 +Rexford,MT,59930 +Rollins,MT,59931 +Somers,MT,59932 +Troy,MT,59935 +Whitefish,MT,59937 +Abie,NE,68001 +Arlington,NE,68002 +Ashland,NE,68003 +Bancroft,NE,68004 +Bellevue,NE,68005 +Bennington,NE,68007 +Blair,NE,68008 +Bruno,NE,68014 +Cedar Bluffs,NE,68015 +Ceresco,NE,68017 +Colon,NE,68018 +Craig,NE,68019 +Decatur,NE,68020 +Elkhorn,NE,68022 +Fort Calhoun,NE,68023 +Fremont,NE,68025 +Gretna,NE,68028 +Herman,NE,68029 +Hooper,NE,68031 +Ithaca,NE,68033 +Kennard,NE,68034 +Leshara,NE,68035 +Linwood,NE,68036 +Louisville,NE,68037 +Lyons,NE,68038 +Macy,NE,68039 +Malmo,NE,68040 +Mead,NE,68041 +Nickerson,NE,68044 +Oakland,NE,68045 +Papillion,NE,68046 +Pender,NE,68047 +Plattsmouth,NE,68048 +Prague,NE,68050 +Richfield,NE,68054 +Rosalie,NE,68055 +Scribner,NE,68057 +Springfield,NE,68059 +Tekamah,NE,68061 +Thurston,NE,68062 +Valley,NE,68064 +Valparaiso,NE,68065 +Wahoo,NE,68066 +Walthill,NE,68067 +Waterloo,NE,68069 +Weston,NE,68070 +Winnebago,NE,68071 +Yutan,NE,68073 +Omaha,NE,68102 +Omaha,NE,68104 +Omaha,NE,68105 +Omaha,NE,68106 +Omaha,NE,68107 +Omaha,NE,68108 +Omaha,NE,68110 +Omaha,NE,68111 +Omaha,NE,68112 +Offutt A F B,NE,68113 +Omaha,NE,68114 +Omaha,NE,68116 +Omaha,NE,68117 +Omaha,NE,68118 +Omaha,NE,68122 +Omaha,NE,68123 +Omaha,NE,68124 +Ralston,NE,68127 +Papillion,NE,68128 +Omaha,NE,68130 +Omaha,NE,68131 +Omaha,NE,68132 +Papillion,NE,68133 +Omaha,NE,68134 +Omaha,NE,68135 +Omaha,NE,68136 +Millard,NE,68137 +Papillion,NE,68138 +Omaha,NE,68142 +Millard,NE,68144 +Omaha,NE,68147 +Omaha,NE,68152 +Omaha,NE,68154 +Papillion,NE,68157 +Omaha,NE,68164 +Adams,NE,68301 +Alexandria,NE,68303 +Alvo,NE,68304 +Auburn,NE,68305 +Avoca,NE,68307 +Beatrice,NE,68310 +Beaver Crossing,NE,68313 +Bee,NE,68314 +Belvidere,NE,68315 +Benedict,NE,68316 +Bennet,NE,68317 +Blue Springs,NE,68318 +Bradshaw,NE,68319 +Brock,NE,68320 +Brownville,NE,68321 +Bruning,NE,68322 +Burchard,NE,68323 +Burr,NE,68324 +Byron,NE,68325 +Carleton,NE,68326 +Chester,NE,68327 +Clatonia,NE,68328 +Cook,NE,68329 +Cordova,NE,68330 +Cortland,NE,68331 +Crab Orchard,NE,68332 +Crete,NE,68333 +Davenport,NE,68335 +Davey,NE,68336 +Dawson,NE,68337 +Daykin,NE,68338 +Denton,NE,68339 +Deshler,NE,68340 +De Witt,NE,68341 +Diller,NE,68342 +Dorchester,NE,68343 +Douglas,NE,68344 +Du Bois,NE,68345 +Dunbar,NE,68346 +Eagle,NE,68347 +Elk Creek,NE,68348 +Elmwood,NE,68349 +Endicott,NE,68350 +Exeter,NE,68351 +Fairbury,NE,68352 +Fairmont,NE,68354 +Falls City,NE,68355 +Filley,NE,68357 +Firth,NE,68358 +Friend,NE,68359 +Garland,NE,68360 +Geneva,NE,68361 +Gilead,NE,68362 +Goehner,NE,68364 +Grafton,NE,68365 +Greenwood,NE,68366 +Gresham,NE,68367 +Hallam,NE,68368 +Hebron,NE,68370 +Henderson,NE,68371 +Holland,NE,68372 +Holmesville,NE,68374 +Hubbell,NE,68375 +Humboldt,NE,68376 +Jansen,NE,68377 +Johnson,NE,68378 +Julian,NE,68379 +Lewiston,NE,68380 +Liberty,NE,68381 +Mc Cool Junction,NE,68401 +Malcolm,NE,68402 +Martell,NE,68404 +Milford,NE,68405 +Milligan,NE,68406 +Murdock,NE,68407 +Murray,NE,68409 +Nebraska City,NE,68410 +Nehawka,NE,68413 +Nemaha,NE,68414 +Odell,NE,68415 +Ohiowa,NE,68416 +Otoe,NE,68417 +Palmyra,NE,68418 +Pawnee City,NE,68420 +Peru,NE,68421 +Pickrell,NE,68422 +Pleasant Dale,NE,68423 +Plymouth,NE,68424 +Agnew,NE,68428 +Reynolds,NE,68429 +Roca,NE,68430 +Rulo,NE,68431 +Saint Mary,NE,68432 +Salem,NE,68433 +Seward,NE,68434 +Shickley,NE,68436 +Shubert,NE,68437 +Staplehurst,NE,68439 +Steele City,NE,68440 +Steinauer,NE,68441 +Stella,NE,68442 +Sterling,NE,68443 +Strang,NE,68444 +Swanton,NE,68445 +Syracuse,NE,68446 +Table Rock,NE,68447 +Talmage,NE,68448 +Tecumseh,NE,68450 +Ong,NE,68452 +Tobias,NE,68453 +Unadilla,NE,68454 +Union,NE,68455 +Utica,NE,68456 +Verdon,NE,68457 +Virginia,NE,68458 +Waco,NE,68460 +Walton,NE,68461 +Waverly,NE,68462 +Weeping Water,NE,68463 +Western,NE,68464 +Wilber,NE,68465 +Wymore,NE,68466 +York,NE,68467 +Lincoln,NE,68502 +Lincoln,NE,68503 +Lincoln,NE,68504 +Lincoln,NE,68505 +Lincoln,NE,68506 +Lincoln,NE,68507 +Lincoln,NE,68508 +Lincoln,NE,68510 +Lincoln,NE,68512 +Lincoln,NE,68514 +Lincoln,NE,68516 +Lincoln,NE,68517 +Lincoln,NE,68520 +Lincoln,NE,68521 +Lincoln,NE,68522 +Lincoln,NE,68523 +Lincoln,NE,68524 +Lincoln,NE,68526 +Lincoln,NE,68527 +Lincoln,NE,68528 +Lincoln,NE,68531 +Lincoln,NE,68532 +Richland,NE,68601 +Albion,NE,68620 +Ames,NE,68621 +Bartlett,NE,68622 +Belgrade,NE,68623 +Bellwood,NE,68624 +Brainard,NE,68626 +Cedar Rapids,NE,68627 +Clarks,NE,68628 +Clarkson,NE,68629 +Creston,NE,68631 +Garrison,NE,68632 +Dodge,NE,68633 +Dwight,NE,68635 +Elgin,NE,68636 +Ericson,NE,68637 +Fullerton,NE,68638 +Genoa,NE,68640 +Howells,NE,68641 +Humphrey,NE,68642 +Leigh,NE,68643 +Lindsay,NE,68644 +Monroe,NE,68647 +Morse Bluff,NE,68648 +North Bend,NE,68649 +Octavia,NE,68650 +Osceola,NE,68651 +Petersburg,NE,68652 +Platte Center,NE,68653 +Polk,NE,68654 +Primrose,NE,68655 +Rising City,NE,68658 +Rogers,NE,68659 +Saint Edward,NE,68660 +Schuyler,NE,68661 +Shelby,NE,68662 +Silver Creek,NE,68663 +Spalding,NE,68665 +Stromsburg,NE,68666 +Ulysses,NE,68667 +Ulysses,NE,68669 +Norfolk,NE,68701 +Allen,NE,68710 +Amelia,NE,68711 +Atkinson,NE,68713 +Bassett,NE,68714 +Battle Creek,NE,68715 +Beemer,NE,68716 +Belden,NE,68717 +Bloomfield,NE,68718 +Bristow,NE,68719 +Brunswick,NE,68720 +Butte,NE,68722 +Carroll,NE,68723 +Center,NE,68724 +Chambers,NE,68725 +Clearwater,NE,68726 +Coleridge,NE,68727 +Concord,NE,68728 +Creighton,NE,68729 +Crofton,NE,68730 +Dakota City,NE,68731 +Dixon,NE,68732 +Emerson,NE,68733 +Emmet,NE,68734 +Ewing,NE,68735 +Fordyce,NE,68736 +Foster,NE,68737 +Hartington,NE,68739 +Hoskins,NE,68740 +Hubbard,NE,68741 +Inman,NE,68742 +Jackson,NE,68743 +Laurel,NE,68745 +Lynch,NE,68746 +Mclean,NE,68747 +Madison,NE,68748 +Magnet,NE,68749 +Maskell,NE,68751 +Meadow Grove,NE,68752 +Mills,NE,68753 +Naper,NE,68755 +Neligh,NE,68756 +Newcastle,NE,68757 +Newman Grove,NE,68758 +Newport,NE,68759 +Verdel,NE,68760 +Oakdale,NE,68761 +Obert,NE,68762 +Oneill,NE,68763 +Orchard,NE,68764 +Osmond,NE,68765 +Page,NE,68766 +Pierce,NE,68767 +Pilger,NE,68768 +Plainview,NE,68769 +Ponca,NE,68770 +Randolph,NE,68771 +Rose,NE,68772 +Royal,NE,68773 +Saint Helena,NE,68774 +South Sioux City,NE,68776 +Spencer,NE,68777 +Springview,NE,68778 +Stanton,NE,68779 +Stuart,NE,68780 +Tilden,NE,68781 +68782,NE,68782 +Verdigre,NE,68783 +Wakefield,NE,68784 +Waterbury,NE,68785 +Wausa,NE,68786 +Wayne,NE,68787 +West Point,NE,68788 +Winnetoon,NE,68789 +Winside,NE,68790 +Wisner,NE,68791 +Wynot,NE,68792 +Grand Island,NE,68801 +Grand Island,NE,68803 +Alda,NE,68810 +Amherst,NE,68812 +Milburn,NE,68813 +Ansley,NE,68814 +Arcadia,NE,68815 +Archer,NE,68816 +Ashton,NE,68817 +Aurora,NE,68818 +Berwyn,NE,68819 +Boelus,NE,68820 +Brewster,NE,68821 +Broken Bow,NE,68822 +Burwell,NE,68823 +Cairo,NE,68824 +Callaway,NE,68825 +Central City,NE,68826 +Chapman,NE,68827 +Comstock,NE,68828 +Cotesfield,NE,68829 +Dannebrog,NE,68831 +Doniphan,NE,68832 +Dunning,NE,68833 +Eddyville,NE,68834 +Elba,NE,68835 +Elm Creek,NE,68836 +Elyria,NE,68837 +Farwell,NE,68838 +Gibbon,NE,68840 +Giltner,NE,68841 +Greeley,NE,68842 +Hampton,NE,68843 +Hazard,NE,68844 +Hordville,NE,68846 +Kearney,NE,68847 +Lexington,NE,68850 +Litchfield,NE,68852 +Loup City,NE,68853 +Marquette,NE,68854 +Mason City,NE,68855 +Merna,NE,68856 +Miller,NE,68858 +North Loup,NE,68859 +Oconto,NE,68860 +Odessa,NE,68861 +Ord,NE,68862 +Overton,NE,68863 +Palmer,NE,68864 +Phillips,NE,68865 +Pleasanton,NE,68866 +Prosser,NE,68868 +Ravenna,NE,68869 +Riverdale,NE,68870 +Rockville,NE,68871 +Saint Libory,NE,68872 +Saint Paul,NE,68873 +Sargent,NE,68874 +Scotia,NE,68875 +Shelton,NE,68876 +Sumner,NE,68878 +Almeria,NE,68879 +Westerville,NE,68881 +Wolbach,NE,68882 +Wood River,NE,68883 +Hastings,NE,68901 +Alma,NE,68920 +Arapahoe,NE,68922 +Atlanta,NE,68923 +Axtell,NE,68924 +Ayr,NE,68925 +Beaver City,NE,68926 +Bertrand,NE,68927 +Bladen,NE,68928 +Bloomington,NE,68929 +Blue Hill,NE,68930 +Campbell,NE,68932 +Clay Center,NE,68933 +Deweese,NE,68934 +Edgar,NE,68935 +Edison,NE,68936 +Elwood,NE,68937 +Fairfield,NE,68938 +Franklin,NE,68939 +Funk,NE,68940 +Glenvil,NE,68941 +Guide Rock,NE,68942 +Hardy,NE,68943 +Harvard,NE,68944 +Heartwell,NE,68945 +Hendley,NE,68946 +Hildreth,NE,68947 +Holbrook,NE,68948 +Holdrege,NE,68949 +Holstein,NE,68950 +Huntley,NE,68951 +Inavale,NE,68952 +Inland,NE,68954 +Juniata,NE,68955 +Kenesaw,NE,68956 +Lawrence,NE,68957 +Loomis,NE,68958 +Minden,NE,68959 +Naponee,NE,68960 +Nora,NE,68961 +Oak,NE,68964 +Orleans,NE,68966 +Oxford,NE,68967 +Ragan,NE,68969 +Red Cloud,NE,68970 +Republican City,NE,68971 +Riverton,NE,68972 +Roseland,NE,68973 +Ruskin,NE,68974 +Saronville,NE,68975 +Smithfield,NE,68976 +Stamford,NE,68977 +Superior,NE,68978 +Sutton,NE,68979 +Trumbull,NE,68980 +Upland,NE,68981 +Wilcox,NE,68982 +Mc Cook,NE,69001 +Bartley,NE,69020 +Benkelman,NE,69021 +Cambridge,NE,69022 +Champion,NE,69023 +Culbertson,NE,69024 +Curtis,NE,69025 +Danbury,NE,69026 +Enders,NE,69027 +Eustis,NE,69028 +Farnam,NE,69029 +Haigler,NE,69030 +Hamlet,NE,69031 +Hayes Center,NE,69032 +Imperial,NE,69033 +Indianola,NE,69034 +Lamar,NE,69035 +Lebanon,NE,69036 +Max,NE,69037 +Maywood,NE,69038 +Moorefield,NE,69039 +Palisade,NE,69040 +Parks,NE,69041 +Stockville,NE,69042 +Stratton,NE,69043 +Trenton,NE,69044 +Wauneta,NE,69045 +Wilsonville,NE,69046 +North Platte,NE,69101 +Arnold,NE,69120 +Arthur,NE,69121 +Big Springs,NE,69122 +Brady,NE,69123 +Broadwater,NE,69125 +Brule,NE,69127 +Bushnell,NE,69128 +Chappell,NE,69129 +Cozad,NE,69130 +Dalton,NE,69131 +Dickens,NE,69132 +Dix,NE,69133 +Elsie,NE,69134 +Elsmere,NE,69135 +Gothenburg,NE,69138 +Grant,NE,69140 +Gurley,NE,69141 +Halsey,NE,69142 +Hershey,NE,69143 +Keystone,NE,69144 +Kimball,NE,69145 +Lemoyne,NE,69146 +Lewellen,NE,69147 +Lisco,NE,69148 +Lodgepole,NE,69149 +Madrid,NE,69150 +Maxwell,NE,69151 +Mullen,NE,69152 +Ogallala,NE,69153 +Oshkosh,NE,69154 +Paxton,NE,69155 +Potter,NE,69156 +Purdum,NE,69157 +Seneca,NE,69161 +Sidney,NE,69162 +Stapleton,NE,69163 +Sutherland,NE,69165 +Brownlee,NE,69166 +Tryon,NE,69167 +Venango,NE,69168 +Wallace,NE,69169 +Wellfleet,NE,69170 +Valentine,NE,69201 +Ainsworth,NE,69210 +Cody,NE,69211 +Crookston,NE,69212 +Johnstown,NE,69214 +Kilgore,NE,69216 +Long Pine,NE,69217 +Merriman,NE,69218 +Wood Lake,NE,69221 +Alliance,NE,69301 +Angora,NE,69331 +Ashby,NE,69333 +Bayard,NE,69334 +Bingham,NE,69335 +Bridgeport,NE,69336 +Chadron,NE,69337 +Crawford,NE,69339 +Ellsworth,NE,69340 +Gering,NE,69341 +Gordon,NE,69343 +Harrisburg,NE,69345 +Harrison,NE,69346 +Hay Springs,NE,69347 +Hemingford,NE,69348 +Henry,NE,69349 +Hyannis,NE,69350 +Lakeside,NE,69351 +Lyman,NE,69352 +Marsland,NE,69354 +Minatare,NE,69356 +Mitchell,NE,69357 +Morrill,NE,69358 +Rushville,NE,69360 +Scottsbluff,NE,69361 +Whitman,NE,69366 +Whitney,NE,69367 +Alamo,NV,89001 +Boulder City,NV,89005 +Caliente,NV,89008 +Goldfield,NV,89013 +Henderson,NV,89014 +Henderson,NV,89015 +Hiko,NV,89017 +Indian Springs,NV,89018 +Goodsprings,NV,89019 +Amargosa Valley,NV,89020 +Laughlin,NV,89029 +North Las Vegas,NV,89030 +North Las Vegas,NV,89031 +Overton,NV,89040 +Pahrump,NV,89041 +Pioche,NV,89043 +Round Mountain,NV,89045 +Cottonwood Cove,NV,89046 +Silverpeak,NV,89047 +Tonopah,NV,89049 +Las Vegas,NV,89101 +Las Vegas,NV,89102 +Las Vegas,NV,89103 +Las Vegas,NV,89104 +Las Vegas,NV,89106 +Las Vegas,NV,89107 +Las Vegas,NV,89108 +Las Vegas,NV,89109 +Las Vegas,NV,89110 +Las Vegas,NV,89113 +Las Vegas,NV,89115 +Las Vegas,NV,89117 +Las Vegas,NV,89118 +Las Vegas,NV,89119 +Las Vegas,NV,89120 +Las Vegas,NV,89121 +Las Vegas,NV,89122 +Las Vegas,NV,89123 +Las Vegas,NV,89124 +Las Vegas,NV,89128 +Las Vegas,NV,89129 +Las Vegas,NV,89130 +Las Vegas,NV,89131 +Las Vegas,NV,89134 +Ely,NV,89301 +Austin,NV,89310 +Baker,NV,89311 +Eureka,NV,89316 +Lund,NV,89317 +Dayton,NV,89403 +Denio,NV,89404 +Empire,NV,89405 +Fallon,NV,89406 +Fernley,NV,89408 +Gabbs,NV,89409 +Gardnerville,NV,89410 +Gerlach,NV,89412 +Glenbrook,NV,89413 +Golconda,NV,89414 +Hawthorne,NV,89415 +Unionville,NV,89418 +Lovelock,NV,89419 +Luning,NV,89420 +Minden,NV,89423 +Nixon,NV,89424 +Orovada,NV,89425 +Paradise Valley,NV,89426 +Schurz,NV,89427 +Silver Springs,NV,89429 +Smith,NV,89430 +Sparks,NV,89431 +Sun Valley,NV,89433 +Sparks,NV,89434 +Sparks,NV,89436 +Virginia City,NV,89440 +Wadsworth,NV,89442 +Wellington,NV,89444 +Winnemucca,NV,89445 +Yerington,NV,89447 +Incline Village,NV,89451 +Reno,NV,89501 +Reno,NV,89502 +Reno,NV,89503 +Reno,NV,89506 +Reno,NV,89509 +Reno,NV,89510 +Reno,NV,89511 +Reno,NV,89512 +Reno,NV,89523 +Carson City,NV,89701 +Carson City,NV,89703 +Carson City,NV,89704 +Carson City,NV,89705 +Moundhouse,NV,89706 +Jiggs,NV,89801 +Battle Mountain,NV,89820 +Beowawe,NV,89821 +Carlin,NV,89822 +Deeth,NV,89823 +Jackpot,NV,89825 +Mountain City,NV,89831 +Ruby Valley,NV,89833 +Tuscarora,NV,89834 +Oasis,NV,89835 +Amherst,NH,3031 +Auburn,NH,3032 +Brookline,NH,3033 +Candia,NH,3034 +Chester,NH,3036 +Deerfield,NH,3037 +Derry,NH,3038 +Epping,NH,3042 +Francestown,NH,3043 +Fremont,NH,3044 +Dunbarton,NH,3045 +Greenfield,NH,3047 +Mason,NH,3048 +Hollis,NH,3049 +Hudson,NH,3051 +Londonderry,NH,3053 +Merrimack,NH,3054 +Milford,NH,3055 +Mont Vernon,NH,3057 +Nashua,NH,3060 +Nashua,NH,3062 +Nashua,NH,3063 +New Boston,NH,3070 +New Ipswich,NH,3071 +Pelham,NH,3076 +Raymond,NH,3077 +Salem,NH,3079 +Lyndeborough,NH,3082 +Temple,NH,3084 +Wilton,NH,3086 +Windham,NH,3087 +Manchester,NH,3101 +Manchester,NH,3102 +Manchester,NH,3103 +Manchester,NH,3104 +Hooksett,NH,3106 +Manchester,NH,3109 +Bedford,NH,3110 +Andover,NH,3216 +Ashland,NH,3217 +Barnstead,NH,3218 +Belmont,NH,3220 +Bradford,NH,3221 +Bristol,NH,3222 +Beebe River,NH,3223 +Canterbury,NH,3224 +Center Barnstead,NH,3225 +Center Harbor,NH,3226 +Center Sandwich,NH,3227 +Hopkinton,NH,3229 +Danbury,NH,3230 +East Andover,NH,3231 +East Hebron,NH,3232 +Epsom,NH,3234 +Franklin,NH,3235 +Gilmanton,NH,3237 +Grafton,NH,3240 +Hebron,NH,3241 +Henniker,NH,3242 +Hill,NH,3243 +Hillsboro,NH,3244 +Gilford,NH,3246 +Lincoln,NH,3251 +Meredith,NH,3253 +Moultonborough,NH,3254 +New Hampton,NH,3256 +New London,NH,3257 +North Sandwich,NH,3259 +Northwood,NH,3261 +North Woodstock,NH,3262 +Pittsfield,NH,3263 +Plymouth,NH,3264 +Rumney,NH,3266 +Salisbury,NH,3268 +Sanbornton,NH,3269 +Allenstown,NH,3275 +Tilton,NH,3276 +Warner,NH,3278 +Warren,NH,3279 +Washington,NH,3280 +Weare,NH,3281 +Wentworth,NH,3282 +West Springfield,NH,3284 +Wilmot Flat,NH,3287 +Nottingham,NH,3290 +West Nottingham,NH,3291 +Concord,NH,3301 +Boscawen,NH,3303 +Bow,NH,3304 +Surry,NH,3431 +Antrim,NH,3440 +Ashuelot,NH,3441 +Bennington,NH,3442 +Chesterfield,NH,3443 +Dublin,NH,3444 +East Sullivan,NH,3445 +East Swanzey,NH,3446 +Fitzwilliam,NH,3447 +Gilsum,NH,3448 +Hancock,NH,3449 +Harrisville,NH,3450 +Hinsdale,NH,3451 +Jaffrey,NH,3452 +Marlborough,NH,3455 +Marlow,NH,3456 +Munsonville,NH,3457 +Peterborough,NH,3458 +Rindge,NH,3461 +Spofford,NH,3462 +Stoddard,NH,3464 +Troy,NH,3465 +West Chesterfiel,NH,3466 +Westmoreland,NH,3467 +West Swanzey,NH,3469 +Richmond,NH,3470 +Littleton,NH,3561 +Berlin,NH,3570 +Bethlehem,NH,3574 +Colebrook,NH,3576 +Errol,NH,3579 +Franconia,NH,3580 +Gorham,NH,3581 +Groveton,NH,3582 +Jefferson,NH,3583 +Lancaster,NH,3584 +Lisbon,NH,3585 +Milan,NH,3588 +North Stratford,NH,3590 +Pittsburg,NH,3592 +Whitefield,NH,3598 +Alstead,NH,3602 +Charlestown,NH,3603 +East Lempster,NH,3605 +South Acworth,NH,3607 +Walpole,NH,3608 +North Walpole,NH,3609 +Bath,NH,3740 +Canaan,NH,3741 +Claremont,NH,3743 +Cornish,NH,3745 +Enfield,NH,3748 +Etna,NH,3750 +Goshen,NH,3752 +Grantham,NH,3753 +Hanover,NH,3755 +Haverhill,NH,3765 +Lebanon,NH,3766 +Lyme,NH,3768 +Meriden,NH,3770 +Monroe,NH,3771 +Newport,NH,3773 +North Haverhill,NH,3774 +Orford,NH,3777 +Piermont,NH,3779 +Pike,NH,3780 +Plainfield,NH,3781 +Sunapee,NH,3782 +West Lebanon,NH,3784 +Woodsville,NH,3785 +Newington,NH,3801 +Alton,NH,3809 +Alton Bay,NH,3810 +Atkinson,NH,3811 +Bartlett,NH,3812 +Center Conway,NH,3813 +Center Ossipee,NH,3814 +Center Strafford,NH,3815 +Center Tuftonbor,NH,3816 +Chocorua,NH,3817 +Conway,NH,3818 +Danville,NH,3819 +Madbury,NH,3820 +Lee,NH,3824 +Barrington,NH,3825 +East Hampstead,NH,3826 +South Hampton,NH,3827 +East Wakefield,NH,3830 +Brentwood,NH,3833 +Farmington,NH,3835 +Freedom,NH,3836 +Gilmanton Iron W,NH,3837 +Glen,NH,3838 +Gonic,NH,3839 +Greenland,NH,3840 +Hampstead,NH,3841 +Hampton,NH,3842 +Hampton Falls,NH,3844 +Intervale,NH,3845 +Jackson,NH,3846 +Kingston,NH,3848 +Madison,NH,3849 +Milton Mills,NH,3852 +Mirror Lake,NH,3853 +New Castle,NH,3854 +New Durham,NH,3855 +Newmarket,NH,3857 +Newton,NH,3858 +North Conway,NH,3860 +North Hampton,NH,3862 +Ossipee,NH,3864 +Plaistow,NH,3865 +Rochester,NH,3867 +East Rochester,NH,3868 +Rollinsford,NH,3869 +Rye,NH,3870 +Sanbornville,NH,3872 +Sandown,NH,3873 +Seabrook,NH,3874 +Silver Lake,NH,3875 +Somersworth,NH,3878 +South Effingham,NH,3882 +South Tamworth,NH,3883 +Strafford,NH,3884 +Stratham,NH,3885 +Tamworth,NH,3886 +Union,NH,3887 +West Ossipee,NH,3890 +Wolfeboro,NH,3894 +Avenel,NJ,7001 +Bayonne,NJ,7002 +Bloomfield,NJ,7003 +Fairfield,NJ,7004 +Boonton,NJ,7005 +West Caldwell,NJ,7006 +Carteret,NJ,7008 +Cedar Grove,NJ,7009 +Cliffside Park,NJ,7010 +Clifton,NJ,7011 +Clifton,NJ,7012 +Clifton,NJ,7013 +Clifton,NJ,7014 +Cranford,NJ,7016 +East Orange,NJ,7017 +East Orange,NJ,7018 +Edgewater,NJ,7020 +Essex Fells,NJ,7021 +Fairview,NJ,7022 +Fanwood,NJ,7023 +Fort Lee,NJ,7024 +Garfield,NJ,7026 +Garwood,NJ,7027 +Glen Ridge,NJ,7028 +Kearny,NJ,7029 +Hoboken,NJ,7030 +North Arlington,NJ,7031 +Kearny,NJ,7032 +Kenilworth,NJ,7033 +Lake Hiawatha,NJ,7034 +Lincoln Park,NJ,7035 +Linden,NJ,7036 +Livingston,NJ,7039 +Maplewood,NJ,7040 +Millburn,NJ,7041 +Montclair,NJ,7042 +Montclair,NJ,7043 +Verona,NJ,7044 +Montville,NJ,7045 +Mountain Lakes,NJ,7046 +North Bergen,NJ,7047 +Orange,NJ,7050 +West Orange,NJ,7052 +Parsippany,NJ,7054 +Passaic,NJ,7055 +Wallington,NJ,7057 +Pine Brook,NJ,7058 +Warren,NJ,7059 +North Plainfield,NJ,7060 +North Plainfield,NJ,7062 +North Plainfield,NJ,7063 +Port Reading,NJ,7064 +Rahway,NJ,7065 +Clark,NJ,7066 +Colonia,NJ,7067 +Roseland,NJ,7068 +Rutherford,NJ,7070 +Lyndhurst,NJ,7071 +Carlstadt,NJ,7072 +East Rutherford,NJ,7073 +Moonachie,NJ,7074 +Wood Ridge,NJ,7075 +Scotch Plains,NJ,7076 +Sewaren,NJ,7077 +Short Hills,NJ,7078 +South Orange,NJ,7079 +South Plainfield,NJ,7080 +Springfield,NJ,7081 +Towaco,NJ,7082 +Union,NJ,7083 +Weehawken,NJ,7087 +Vauxhall,NJ,7088 +Westfield,NJ,7090 +Mountainside,NJ,7092 +Guttenberg,NJ,7093 +Secaucus,NJ,7094 +Woodbridge,NJ,7095 +Newark,NJ,7102 +Newark,NJ,7103 +Newark,NJ,7104 +Newark,NJ,7105 +Newark,NJ,7106 +Newark,NJ,7107 +Newark,NJ,7108 +Belleville,NJ,7109 +Nutley,NJ,7110 +Irvington,NJ,7111 +Newark,NJ,7112 +Newark,NJ,7114 +Elizabeth,NJ,7201 +Elizabeth,NJ,7202 +Roselle,NJ,7203 +Roselle Park,NJ,7204 +Hillside,NJ,7205 +Elizabeth,NJ,7206 +Elizabeth,NJ,7208 +Jersey City,NJ,7302 +Jersey City,NJ,7304 +Jersey City,NJ,7305 +Jersey City,NJ,7306 +Jersey City,NJ,7307 +Jersey City,NJ,7310 +Allendale,NJ,7401 +Bloomingdale,NJ,7403 +Kinnelon,NJ,7405 +Elmwood Park,NJ,7407 +Fair Lawn,NJ,7410 +Franklin,NJ,7416 +Franklin Lakes,NJ,7417 +Glenwood,NJ,7418 +Hamburg,NJ,7419 +Haskell,NJ,7420 +Hewitt,NJ,7421 +Highland Lakes,NJ,7422 +Ho Ho Kus,NJ,7423 +West Paterson,NJ,7424 +Mahwah,NJ,7430 +Midland Park,NJ,7432 +Newfoundland,NJ,7435 +Oakland,NJ,7436 +Milton,NJ,7438 +Ogdensburg,NJ,7439 +Pequannock,NJ,7440 +Pompton Lakes,NJ,7442 +Pompton Plains,NJ,7444 +Ramsey,NJ,7446 +Ridgewood,NJ,7450 +Glen Rock,NJ,7452 +Ringwood,NJ,7456 +Riverdale,NJ,7457 +Upper Saddle Riv,NJ,7458 +Stockholm,NJ,7460 +Sussex,NJ,7461 +Vernon,NJ,7462 +Waldwick,NJ,7463 +Wanaque,NJ,7465 +Wayne,NJ,7470 +West Milford,NJ,7480 +Wyckoff,NJ,7481 +Paterson,NJ,7501 +Paterson,NJ,7502 +Paterson,NJ,7503 +Paterson,NJ,7504 +Paterson,NJ,7505 +Hawthorne,NJ,7506 +Haledon,NJ,7508 +Totowa,NJ,7512 +Paterson,NJ,7513 +Paterson,NJ,7514 +Paterson,NJ,7522 +Paterson,NJ,7524 +Hackensack,NJ,7601 +Bogota,NJ,7603 +Hasbrouck Height,NJ,7604 +Leonia,NJ,7605 +South Hackensack,NJ,7606 +Maywood,NJ,7607 +Teterboro,NJ,7608 +Alpine,NJ,7620 +Bergenfield,NJ,7621 +Closter,NJ,7624 +Cresskill,NJ,7626 +Demarest,NJ,7627 +Dumont,NJ,7628 +Emerson,NJ,7630 +Englewood,NJ,7631 +Englewood Cliffs,NJ,7632 +Harrington Park,NJ,7640 +Haworth,NJ,7641 +Hillsdale,NJ,7642 +Little Ferry,NJ,7643 +Lodi,NJ,7644 +Montvale,NJ,7645 +New Milford,NJ,7646 +Rockleigh,NJ,7647 +Norwood,NJ,7648 +Oradell,NJ,7649 +Palisades Park,NJ,7650 +Paramus,NJ,7652 +Park Ridge,NJ,7656 +Ridgefield,NJ,7657 +Ridgefield Park,NJ,7660 +River Edge,NJ,7661 +Saddle Brook,NJ,7662 +Teaneck,NJ,7666 +Tenafly,NJ,7670 +Old Tappan,NJ,7675 +Suburban,NJ,7701 +Shrewsbury,NJ,7702 +Fort Monmouth,NJ,7703 +Fair Haven,NJ,7704 +Allenhurst,NJ,7711 +Ocean,NJ,7712 +Atlantic Highlan,NJ,7716 +Avon By The Sea,NJ,7717 +Belford,NJ,7718 +Wall,NJ,7719 +Bradley Beach,NJ,7720 +Cliffwood,NJ,7721 +Colts Neck,NJ,7722 +Deal,NJ,7723 +Eatontown,NJ,7724 +Manalapan,NJ,7726 +Farmingdale,NJ,7727 +Freehold,NJ,7728 +Hazlet,NJ,7730 +Howell,NJ,7731 +Fort Hancock,NJ,7732 +Holmdel,NJ,7733 +Keansburg,NJ,7734 +Keyport,NJ,7735 +Leonardo,NJ,7737 +Lincroft,NJ,7738 +Little Silver,NJ,7739 +Long Branch,NJ,7740 +Marlboro,NJ,7746 +Matawan,NJ,7747 +New Monmouth,NJ,7748 +Monmouth Beach,NJ,7750 +Morganville,NJ,7751 +Neptune City,NJ,7753 +Oakhurst,NJ,7755 +Ocean Grove,NJ,7756 +Oceanport,NJ,7757 +Port Monmouth,NJ,7758 +Sea Bright,NJ,7760 +Spring Lake,NJ,7762 +West Long Branch,NJ,7764 +Mine Hill,NJ,7801 +Andover,NJ,7821 +Augusta,NJ,7822 +Belvidere,NJ,7823 +Blairstown,NJ,7825 +Branchville,NJ,7826 +Montague,NJ,7827 +Budd Lake,NJ,7828 +Califon,NJ,7830 +Columbia,NJ,7832 +Denville,NJ,7834 +Flanders,NJ,7836 +Great Meadows,NJ,7838 +Hackettstown,NJ,7840 +Hopatcong,NJ,7843 +Kenvil,NJ,7847 +Lafayette,NJ,7848 +Lake Hopatcong,NJ,7849 +Landing,NJ,7850 +Layton,NJ,7851 +Ledgewood,NJ,7852 +Long Valley,NJ,7853 +Mount Arlington,NJ,7856 +Netcong,NJ,7857 +Fredon Township,NJ,7860 +Oxford,NJ,7863 +Port Murray,NJ,7865 +Rockaway,NJ,7866 +Randolph,NJ,7869 +Sparta,NJ,7871 +Stanhope,NJ,7874 +Succasunna,NJ,7876 +Wallpack Center,NJ,7881 +Washington,NJ,7882 +Wharton,NJ,7885 +Summit,NJ,7901 +Basking Ridge,NJ,7920 +Bedminster,NJ,7921 +Berkeley Heights,NJ,7922 +Bernardsville,NJ,7924 +Cedar Knolls,NJ,7927 +Chatham,NJ,7928 +Chester,NJ,7930 +Far Hills,NJ,7931 +Florham Park,NJ,7932 +Gillette,NJ,7933 +Gladstone,NJ,7934 +Green Village,NJ,7935 +East Hanover,NJ,7936 +Madison,NJ,7940 +Mendham,NJ,7945 +Millington,NJ,7946 +Greystone Park,NJ,7950 +Morristown,NJ,7960 +New Providence,NJ,7974 +New Vernon,NJ,7976 +Stirling,NJ,7980 +Whippany,NJ,7981 +Cherry Hill,NJ,8002 +Cherry Hill,NJ,8003 +Winslow,NJ,8004 +Barnegat,NJ,8005 +Barrington,NJ,8007 +Harvey Cedars,NJ,8008 +Berlin,NJ,8009 +Beverly,NJ,8010 +Washington,NJ,8012 +Bridgeport,NJ,8014 +Browns Mills,NJ,8015 +Burlington,NJ,8016 +Chatsworth,NJ,8019 +Clarksboro,NJ,8020 +Laurel Springs,NJ,8021 +Columbus,NJ,8022 +Gibbsboro,NJ,8026 +Gibbstown,NJ,8027 +Glassboro,NJ,8028 +Glendora,NJ,8029 +Gloucester City,NJ,8030 +Bellmawr,NJ,8031 +Haddonfield,NJ,8033 +Cherry Hill,NJ,8034 +Haddon Heights,NJ,8035 +Batsto,NJ,8037 +Jobstown,NJ,8041 +Voorhees,NJ,8043 +Lawnside,NJ,8045 +Willingboro,NJ,8046 +Lumberton,NJ,8048 +Magnolia,NJ,8049 +Manahawkin,NJ,8050 +Mantua,NJ,8051 +Maple Shade,NJ,8052 +Marlton,NJ,8053 +Mount Laurel,NJ,8054 +Medford Lakes,NJ,8055 +Mickleton,NJ,8056 +Moorestown,NJ,8057 +Mount Ephraim,NJ,8059 +Eastampton Twp,NJ,8060 +Mount Royal,NJ,8061 +Mullica Hill,NJ,8062 +National Park,NJ,8063 +Palmyra,NJ,8065 +Paulsboro,NJ,8066 +Pedricktown,NJ,8067 +Pemberton,NJ,8068 +Carneys Point,NJ,8069 +Pennsville,NJ,8070 +Pitman,NJ,8071 +Delanco,NJ,8075 +Cinnaminson,NJ,8077 +Runnemede,NJ,8078 +Salem,NJ,8079 +Sewell,NJ,8080 +Sicklerville,NJ,8081 +Somerdale,NJ,8083 +Stratford,NJ,8084 +Swedesboro,NJ,8085 +Thorofare,NJ,8086 +Tuckerton,NJ,8087 +Southampton,NJ,8088 +Waterford Works,NJ,8089 +Wenonah,NJ,8090 +West Berlin,NJ,8091 +West Creek,NJ,8092 +Westville,NJ,8093 +Williamstown,NJ,8094 +Deptford,NJ,8096 +Woodbury Heights,NJ,8097 +Woodstown,NJ,8098 +Camden,NJ,8102 +Camden,NJ,8103 +Camden,NJ,8104 +Camden,NJ,8105 +Audubon,NJ,8106 +Oaklyn,NJ,8107 +Collingswood,NJ,8108 +Merchantville,NJ,8109 +Delair,NJ,8110 +Smithville,NJ,8201 +Avalon,NJ,8202 +Brigantine,NJ,8203 +North Cape May,NJ,8204 +Cape May Court H,NJ,8210 +Egg Harbor City,NJ,8215 +Linwood,NJ,8221 +Marmora,NJ,8223 +Northfield,NJ,8225 +Ocean City,NJ,8226 +Ocean View,NJ,8230 +Pleasantville,NJ,8232 +Port Republic,NJ,8241 +Rio Grande,NJ,8242 +Townsends Inlet,NJ,8243 +Somers Point,NJ,8244 +Stone Harbor,NJ,8247 +Strathmere,NJ,8248 +Villas,NJ,8251 +North Wildwood,NJ,8260 +Corbin City,NJ,8270 +Seabrook,NJ,8302 +Buena,NJ,8310 +Cedarville,NJ,8311 +Clayton,NJ,8312 +Delmont,NJ,8314 +Dorothy,NJ,8317 +Elmer,NJ,8318 +Estell Manor,NJ,8319 +Franklinville,NJ,8322 +Heislerville,NJ,8324 +Landisville,NJ,8326 +Leesburg,NJ,8327 +Malaga,NJ,8328 +Mays Landing,NJ,8330 +Millville,NJ,8332 +Milmay,NJ,8340 +Minotola,NJ,8341 +Monroeville,NJ,8343 +Newfield,NJ,8344 +Newport,NJ,8345 +Newtonville,NJ,8346 +Port Norris,NJ,8349 +Richland,NJ,8350 +Vineland,NJ,8360 +Atlantic City,NJ,8401 +Margate City,NJ,8402 +Longport,NJ,8403 +Ventnor City,NJ,8406 +Allentown,NJ,8501 +Belle Mead,NJ,8502 +Bordentown,NJ,8505 +Clarksburg,NJ,8510 +Cookstown,NJ,8511 +Cranbury,NJ,8512 +Creamridge,NJ,8514 +Crosswicks,NJ,8515 +Florence,NJ,8518 +Hightstown,NJ,8520 +Hopewell,NJ,8525 +Imlaystown,NJ,8526 +Jackson,NJ,8527 +Kingston,NJ,8528 +Lambertville,NJ,8530 +New Egypt,NJ,8533 +Pennington,NJ,8534 +Perrineville,NJ,8535 +Plainsboro,NJ,8536 +Princeton,NJ,8540 +Princeton,NJ,8542 +Princeton Univer,NJ,8544 +Princeton Juncti,NJ,8550 +Ringoes,NJ,8551 +Rocky Hill,NJ,8553 +Roebling,NJ,8554 +Rosemont,NJ,8556 +Skillman,NJ,8558 +Stockton,NJ,8559 +Titusville,NJ,8560 +Wrightstown,NJ,8562 +Trenton,NJ,8608 +Hamilton,NJ,8609 +Hamilton,NJ,8610 +Hamilton,NJ,8611 +Trenton,NJ,8618 +Mercerville,NJ,8619 +Yardville,NJ,8620 +West Trenton,NJ,8628 +Hamilton,NJ,8629 +Trenton,NJ,8638 +Fort Dix,NJ,8640 +Mc Guire Afb,NJ,8641 +Lawrenceville,NJ,8648 +Hamilton,NJ,8690 +Hamilton,NJ,8691 +Lakewood,NJ,8701 +Bayville,NJ,8721 +Beachwood,NJ,8722 +Osbornsville,NJ,8723 +Brick,NJ,8724 +Brielle,NJ,8730 +Forked River,NJ,8731 +Island Heights,NJ,8732 +Lakehurst Naec,NJ,8733 +Lanoka Harbor,NJ,8734 +Lavallette,NJ,8735 +Manasquan,NJ,8736 +Mantoloking,NJ,8738 +Ocean Gate,NJ,8740 +Pine Beach,NJ,8741 +Bay Head,NJ,8742 +Sea Girt,NJ,8750 +Seaside Heights,NJ,8751 +Seaside Park,NJ,8752 +Toms River,NJ,8753 +Toms River,NJ,8755 +Toms River,NJ,8757 +Waretown,NJ,8758 +Whiting,NJ,8759 +Annandale,NJ,8801 +Pattenburg,NJ,8802 +Bloomsbury,NJ,8804 +Bound Brook,NJ,8805 +Bridgewater,NJ,8807 +Clinton,NJ,8809 +Dayton,NJ,8810 +Green Brook,NJ,8812 +East Brunswick,NJ,8816 +Edison,NJ,8817 +Edison,NJ,8820 +Flemington,NJ,8822 +Franklin Park,NJ,8823 +Kendall Park,NJ,8824 +Frenchtown,NJ,8825 +Glen Gardner,NJ,8826 +Hampton,NJ,8827 +Helmetta,NJ,8828 +High Bridge,NJ,8829 +Iselin,NJ,8830 +Jamesburg,NJ,8831 +Keasbey,NJ,8832 +Lebanon,NJ,8833 +Manville,NJ,8835 +Martinsville,NJ,8836 +Edison,NJ,8837 +Metuchen,NJ,8840 +Middlesex,NJ,8846 +Milford,NJ,8848 +Milltown,NJ,8850 +Monmouth Junctio,NJ,8852 +Neshanic Station,NJ,8853 +Piscataway,NJ,8854 +Old Bridge,NJ,8857 +Parlin,NJ,8859 +Perth Amboy,NJ,8861 +Fords,NJ,8863 +Alpha,NJ,8865 +Pittstown,NJ,8867 +Raritan,NJ,8869 +Sayreville,NJ,8872 +Somerset,NJ,8873 +North Branch,NJ,8876 +Laurence Harbor,NJ,8879 +South Bound Broo,NJ,8880 +South River,NJ,8882 +Spotswood,NJ,8884 +Stewartsville,NJ,8886 +Three Bridges,NJ,8887 +Whitehouse Stati,NJ,8889 +New Brunswick,NJ,8901 +North Brunswick,NJ,8902 +Highland Park,NJ,8904 +Algodones,NM,87001 +Boys Ranch,NM,87002 +Bernalillo,NM,87004 +Bluewater,NM,87005 +Bosque,NM,87006 +Casa Blanca,NM,87007 +Cedar Crest,NM,87008 +Cedarvale,NM,87009 +Cerrillos,NM,87010 +Cuba,NM,87013 +Cubero,NM,87014 +Edgewood,NM,87015 +Estancia,NM,87016 +Gallina,NM,87017 +Counselor,NM,87018 +Grants,NM,87020 +Jarales,NM,87023 +Jemez Pueblo,NM,87024 +Jemez Springs,NM,87025 +Canoncito,NM,87026 +La Jara,NM,87027 +Lajoya,NM,87028 +Lindrith,NM,87029 +Los Lunas,NM,87031 +Moriarty,NM,87035 +Mountainair,NM,87036 +Cochiti Pueblo,NM,87041 +Peralta,NM,87042 +Placitas,NM,87043 +Ponderosa,NM,87044 +Prewitt,NM,87045 +Regina,NM,87046 +Sandia Park,NM,87047 +Corrales,NM,87048 +San Mateo,NM,87050 +Santo Domingo Pu,NM,87052 +Zia Pueblo,NM,87053 +Seboyeta,NM,87055 +Stanley,NM,87056 +Tijeras,NM,87059 +Veguita,NM,87062 +Willard,NM,87063 +Bosque Farms,NM,87068 +Albuquerque,NM,87102 +Albuquerque,NM,87104 +Albuquerque,NM,87105 +Albuquerque,NM,87106 +Albuquerque,NM,87107 +Albuquerque,NM,87108 +Albuquerque,NM,87109 +Albuquerque,NM,87110 +Albuquerque,NM,87111 +Albuquerque,NM,87112 +Albuquerque,NM,87113 +Alameda,NM,87114 +Kirtland A F B E,NM,87115 +Albuquerque,NM,87116 +Albuquerque,NM,87118 +Albuquerque,NM,87120 +Albuquerque,NM,87121 +Albuquerque,NM,87122 +Albuquerque,NM,87123 +Rio Rancho,NM,87124 +Gallup,NM,87301 +Brimhall,NM,87310 +Continental Divi,NM,87312 +Crownpoint,NM,87313 +Fence Lake,NM,87315 +Mexican Springs,NM,87320 +Ramah,NM,87321 +Thoreau,NM,87323 +Toadlena,NM,87324 +Tohatchi,NM,87325 +Zuni,NM,87327 +Navajo,NM,87328 +Farmington,NM,87401 +Farmington,NM,87402 +Aztec,NM,87410 +Blanco,NM,87412 +Bloomfield,NM,87413 +Flora Vista,NM,87415 +Fruitland,NM,87416 +Kirtland,NM,87417 +La Plata,NM,87418 +Navajo Dam,NM,87419 +Shiprock,NM,87420 +Waterflow,NM,87421 +Pojoaque Valley,NM,87501 +Santa Fe,NM,87505 +Abiquiu,NM,87510 +Arroyo Hondo,NM,87513 +Arroyo Seco,NM,87514 +Chama,NM,87520 +Chamisal,NM,87521 +Cundiyo,NM,87522 +Costilla,NM,87524 +Dixon,NM,87527 +Dulce,NM,87528 +El Rito,NM,87530 +Embudo,NM,87531 +Espanola,NM,87532 +Glorieta,NM,87535 +Hernandez,NM,87537 +La Madera,NM,87539 +Lamy,NM,87540 +Los Alamos,NM,87544 +Ojo Caliente,NM,87549 +Pecos,NM,87552 +Penasco,NM,87553 +Questa,NM,87556 +Ranchos De Taos,NM,87557 +Ribera,NM,87560 +Rutheron,NM,87563 +San Cristobal,NM,87564 +San Jose,NM,87565 +San Juan Pueblo,NM,87566 +Santa Cruz,NM,87567 +Taos,NM,87571 +Tererro,NM,87573 +Tierra Amarilla,NM,87575 +Vadito,NM,87579 +Valdez,NM,87580 +Vallecitos,NM,87581 +Las Vegas,NM,87701 +Anton Chico,NM,87711 +Chacon,NM,87713 +Cimarron,NM,87714 +Cleveland,NM,87715 +Eagle Nest,NM,87718 +Guadalupita,NM,87722 +La Loma,NM,87724 +Ledoux,NM,87725 +Maxwell,NM,87728 +Miami,NM,87729 +Mills,NM,87730 +Montezuma,NM,87731 +Mora,NM,87732 +Albert,NM,87733 +Ocate,NM,87734 +Raton,NM,87740 +Rociada,NM,87742 +Roy,NM,87743 +Sapello,NM,87745 +Solano,NM,87746 +Springer,NM,87747 +Valmora,NM,87750 +Wagon Mound,NM,87752 +Socorro,NM,87801 +Bingham,NM,87815 +Aragon,NM,87820 +Datil,NM,87821 +Lemitar,NM,87823 +Alamo,NM,87825 +Pie Town,NM,87827 +Polvadera,NM,87828 +Quemado,NM,87829 +Reserve,NM,87830 +San Acacia,NM,87831 +Truth Or Consequ,NM,87901 +Arrey,NM,87930 +Caballo,NM,87931 +Cuchillo,NM,87932 +Derry,NM,87933 +Garfield,NM,87936 +Hatch,NM,87937 +Rincon,NM,87940 +Salem,NM,87941 +Williamsburg,NM,87942 +Winston,NM,87943 +Las Cruces,NM,88001 +White Sands Miss,NM,88002 +Las Cruces,NM,88005 +Animas,NM,88020 +Chaparral,NM,88021 +Vanadium,NM,88023 +Buckhorn,NM,88025 +Central,NM,88026 +Deming,NM,88030 +Glenwood,NM,88039 +San Lorenzo,NM,88041 +Hillsboro,NM,88042 +Hurley,NM,88043 +La Mesa,NM,88044 +Road Forks,NM,88045 +Mesilla Park,NM,88047 +Mesquite,NM,88048 +Mimbres,NM,88049 +Silver City,NM,88061 +Clovis,NM,88101 +Broadview,NM,88112 +Causey,NM,88113 +Crossroads,NM,88114 +Elida,NM,88116 +Floyd,NM,88118 +Fort Sumner,NM,88119 +Grady,NM,88120 +House,NM,88121 +Lingo,NM,88123 +Melrose,NM,88124 +Milnesand,NM,88125 +Pep,NM,88126 +Portales,NM,88130 +Rogers,NM,88132 +Saint Vrain,NM,88133 +Taiban,NM,88134 +Texico,NM,88135 +Yeso,NM,88136 +Roswell,NM,88201 +Artesia,NM,88210 +Caprock,NM,88213 +Carlsbad,NM,88220 +Dexter,NM,88230 +Eunice,NM,88231 +Hagerman,NM,88232 +Hobbs,NM,88240 +Hope,NM,88250 +Jal,NM,88252 +Lake Arthur,NM,88253 +Loving,NM,88256 +Lovington,NM,88260 +Maljamar,NM,88264 +Monument,NM,88265 +Oil Center,NM,88266 +Tatum,NM,88267 +Carrizozo,NM,88301 +Alamogordo,NM,88310 +Bent,NM,88314 +Capitan,NM,88316 +Cloudcroft,NM,88317 +Corona,NM,88318 +Encino,NM,88321 +Glencoe,NM,88324 +Holloman Air For,NM,88330 +Hondo,NM,88336 +La Luz,NM,88337 +Lincoln,NM,88338 +Mayhill,NM,88339 +Mescalero,NM,88340 +Nogal,NM,88341 +Picacho,NM,88343 +Pinon,NM,88344 +Ruidoso,NM,88345 +Ruidoso Downs,NM,88346 +Sacramento,NM,88347 +San Patricio,NM,88348 +Tinnie,NM,88351 +Tularosa,NM,88352 +Vaughn,NM,88353 +Weed,NM,88354 +Tucumcari,NM,88401 +Amistad,NM,88410 +Bard,NM,88411 +Bueyeros,NM,88412 +Capulin,NM,88414 +Clayton,NM,88415 +Conchas Dam,NM,88416 +Cuervo,NM,88417 +Des Moines,NM,88418 +Folsom,NM,88419 +Garita,NM,88421 +Gladstone,NM,88422 +Grenville,NM,88424 +Logan,NM,88426 +Mc Alister,NM,88427 +Mount Dora,NM,88429 +Nara Visa,NM,88430 +Newkirk,NM,88431 +Puerto De Luna,NM,88432 +Quay,NM,88433 +San Jon,NM,88434 +Pastura,NM,88435 +Sedan,NM,88436 +Seneca,NM,88437 +Stead,NM,88438 +Trementina,NM,88439 +Bell Ranch,NM,88441 +Fishers Island,NY,6390 +New York,NY,10001 +New York,NY,10002 +New York,NY,10003 +Governors Island,NY,10004 +New York,NY,10005 +New York,NY,10006 +New York,NY,10007 +New York,NY,10009 +New York,NY,10010 +New York,NY,10011 +New York,NY,10012 +New York,NY,10013 +New York,NY,10014 +New York,NY,10016 +New York,NY,10017 +New York,NY,10018 +New York,NY,10019 +New York,NY,10020 +New York,NY,10021 +New York,NY,10022 +New York,NY,10023 +New York,NY,10024 +New York,NY,10025 +New York,NY,10026 +New York,NY,10027 +New York,NY,10028 +New York,NY,10029 +New York,NY,10030 +New York,NY,10031 +New York,NY,10032 +New York,NY,10033 +New York,NY,10034 +New York,NY,10035 +New York,NY,10036 +New York,NY,10037 +New York,NY,10038 +New York,NY,10039 +New York,NY,10040 +New York,NY,10044 +New York,NY,10128 +New York,NY,10280 +Staten Island,NY,10301 +Staten Island,NY,10302 +Staten Island,NY,10303 +Staten Island,NY,10304 +Staten Island,NY,10305 +Staten Island,NY,10306 +Staten Island,NY,10307 +Staten Island,NY,10308 +Staten Island,NY,10309 +Staten Island,NY,10310 +Staten Island,NY,10312 +Staten Island,NY,10314 +Bronx,NY,10451 +Bronx,NY,10452 +Bronx,NY,10453 +Bronx,NY,10454 +Bronx,NY,10455 +Bronx,NY,10456 +Bronx,NY,10457 +Bronx,NY,10458 +Bronx,NY,10459 +Bronx,NY,10460 +Bronx,NY,10461 +Bronx,NY,10462 +Bronx,NY,10463 +Bronx,NY,10464 +Bronx,NY,10465 +Bronx,NY,10466 +Bronx,NY,10467 +Bronx,NY,10468 +Bronx,NY,10469 +Bronx,NY,10470 +Bronx,NY,10471 +Bronx,NY,10472 +Bronx,NY,10473 +Bronx,NY,10474 +Bronx,NY,10475 +Amawalk,NY,10501 +Ardsley,NY,10502 +Armonk,NY,10504 +Bedford,NY,10506 +Bedford Hills,NY,10507 +Brewster,NY,10509 +Briarcliff Manor,NY,10510 +Buchanan,NY,10511 +Carmel,NY,10512 +Chappaqua,NY,10514 +Cold Spring,NY,10516 +Cross River,NY,10518 +Croton On Hudson,NY,10520 +Dobbs Ferry,NY,10522 +Elmsford,NY,10523 +Garrison,NY,10524 +Granite Springs,NY,10527 +Harrison,NY,10528 +Hartsdale,NY,10530 +Hawthorne,NY,10532 +Irvington,NY,10533 +Jefferson Valley,NY,10535 +Katonah,NY,10536 +Lake Peekskill,NY,10537 +Larchmont,NY,10538 +Mahopac,NY,10541 +Mamaroneck,NY,10543 +Millwood,NY,10546 +Mohegan Lake,NY,10547 +Montrose,NY,10548 +Mount Kisco,NY,10549 +Mount Vernon,NY,10550 +Mount Vernon,NY,10552 +Mount Vernon,NY,10553 +North Salem,NY,10560 +Ossining,NY,10562 +Cortlandt Manor,NY,10566 +Pleasantville,NY,10570 +Rye Brook,NY,10573 +Pound Ridge,NY,10576 +Purchase,NY,10577 +Purdys,NY,10578 +Putnam Valley,NY,10579 +Rye,NY,10580 +Heathcote,NY,10583 +Shrub Oak,NY,10588 +Somers,NY,10589 +South Salem,NY,10590 +North Tarrytown,NY,10591 +Thornwood,NY,10594 +Valhalla,NY,10595 +Waccabuc,NY,10597 +Yorktown Heights,NY,10598 +White Plains,NY,10601 +White Plains,NY,10603 +East White Plain,NY,10604 +White Plains,NY,10605 +White Plains,NY,10606 +White Plains,NY,10607 +Yonkers,NY,10701 +Yonkers,NY,10703 +Yonkers,NY,10704 +Yonkers,NY,10705 +Hastings On Huds,NY,10706 +Tuckahoe,NY,10707 +Bronxville,NY,10708 +Eastchester,NY,10709 +Yonkers,NY,10710 +New Rochelle,NY,10801 +Pelham,NY,10803 +New Rochelle,NY,10804 +New Rochelle,NY,10805 +Suffern,NY,10901 +Bear Mountain,NY,10911 +Blauvelt,NY,10913 +Campbell Hall,NY,10916 +Central Valley,NY,10917 +Chester,NY,10918 +Circleville,NY,10919 +Congers,NY,10920 +Florida,NY,10921 +Garnerville,NY,10923 +Goshen,NY,10924 +Greenwood Lake,NY,10925 +Harriman,NY,10926 +Haverstraw,NY,10927 +Highland Falls,NY,10928 +Highland Mills,NY,10930 +Hillburn,NY,10931 +Scotchtown,NY,10940 +Monroe,NY,10950 +Monsey,NY,10952 +Bardonia,NY,10954 +New City,NY,10956 +New Hampton,NY,10958 +Nyack,NY,10960 +Orangeburg,NY,10962 +Otisville,NY,10963 +Palisades,NY,10964 +Pearl River,NY,10965 +Piermont,NY,10968 +Pine Island,NY,10969 +Pomona,NY,10970 +Slate Hill,NY,10973 +Sterlington,NY,10974 +Southfields,NY,10975 +Sparkill,NY,10976 +Chestnut Ridge,NY,10977 +Stony Point,NY,10980 +Tappan,NY,10983 +Thiells,NY,10984 +Thompson Ridge,NY,10985 +Tomkins Cove,NY,10986 +Tuxedo Park,NY,10987 +Valley Cottage,NY,10989 +Warwick,NY,10990 +Washingtonville,NY,10992 +West Haverstraw,NY,10993 +West Nyack,NY,10994 +West Point,NY,10996 +Westtown,NY,10998 +Floral Park,NY,11001 +Alden Manor,NY,11003 +Glen Oaks,NY,11004 +Franklin Square,NY,11010 +Great Neck,NY,11020 +Great Neck,NY,11021 +Great Neck,NY,11023 +Kings Point Cont,NY,11024 +Plandome,NY,11030 +Hillside Manor,NY,11040 +New Hyde Park,NY,11042 +Port Washington,NY,11050 +Astoria,NY,11101 +Astoria,NY,11102 +Astoria,NY,11103 +Sunnyside,NY,11104 +Astoria,NY,11105 +Astoria,NY,11106 +Brooklyn,NY,11201 +Brooklyn,NY,11203 +Brooklyn,NY,11204 +Brooklyn,NY,11205 +Brooklyn,NY,11206 +Brooklyn,NY,11207 +Brooklyn,NY,11208 +Brooklyn,NY,11209 +Brooklyn,NY,11210 +Brooklyn,NY,11211 +Brooklyn,NY,11212 +Brooklyn,NY,11213 +Brooklyn,NY,11214 +Brooklyn,NY,11215 +Brooklyn,NY,11216 +Brooklyn,NY,11217 +Brooklyn,NY,11218 +Brooklyn,NY,11219 +Brooklyn,NY,11220 +Brooklyn,NY,11221 +Brooklyn,NY,11222 +Brooklyn,NY,11223 +Brooklyn,NY,11224 +Brooklyn,NY,11225 +Brooklyn,NY,11226 +Brooklyn,NY,11228 +Brooklyn,NY,11229 +Brooklyn,NY,11230 +Brooklyn,NY,11231 +Brooklyn,NY,11232 +Brooklyn,NY,11233 +Brooklyn,NY,11234 +Brooklyn,NY,11235 +Brooklyn,NY,11236 +Brooklyn,NY,11237 +Brooklyn,NY,11238 +Brooklyn,NY,11239 +Brooklyn Navy Ya,NY,11251 +Flushing,NY,11354 +Flushing,NY,11355 +College Point,NY,11356 +Whitestone,NY,11357 +Flushing,NY,11358 +Fort Totten,NY,11359 +Bayside,NY,11360 +Bayside,NY,11361 +Little Neck,NY,11362 +Little Neck,NY,11363 +Flushing,NY,11364 +Fresh Meadows,NY,11365 +Fresh Meadows,NY,11366 +Flushing,NY,11367 +Corona,NY,11368 +East Elmhurst,NY,11369 +East Elmhurst,NY,11370 +Flushing,NY,11371 +Jackson Heights,NY,11372 +Jackson Heights,NY,11373 +Rego Park,NY,11374 +Forest Hills,NY,11375 +Woodside,NY,11377 +Maspeth,NY,11378 +Middle Village,NY,11379 +Ridgewood,NY,11385 +Cambria Heights,NY,11411 +Kew Gardens,NY,11412 +Springfield Gard,NY,11413 +Kew Gardens,NY,11414 +Kew Gardens,NY,11415 +Ozone Park,NY,11416 +Ozone Park,NY,11417 +Richmond Hill,NY,11418 +S Richmond Hill,NY,11419 +S Ozone Park,NY,11420 +Woodhaven,NY,11421 +Rosedale,NY,11422 +Hollis,NY,11423 +Bellerose,NY,11426 +Queens Village,NY,11427 +Queens Village,NY,11428 +Queens Village,NY,11429 +Jamaica,NY,11430 +Jamaica,NY,11432 +Jamaica,NY,11433 +Jamaica,NY,11434 +Jamaica,NY,11435 +Jamaica,NY,11436 +Mineola,NY,11501 +Albertson,NY,11507 +Atlantic Beach,NY,11509 +Baldwin,NY,11510 +Carle Place,NY,11514 +Cedarhurst,NY,11516 +East Rockaway,NY,11518 +Freeport,NY,11520 +Garden City,NY,11530 +Glen Cove,NY,11542 +Glen Head,NY,11545 +Greenvale,NY,11548 +Hempstead,NY,11550 +West Hempstead,NY,11552 +Uniondale,NY,11553 +East Meadow,NY,11554 +Hewlett,NY,11557 +Island Park,NY,11558 +Lawrence,NY,11559 +Locust Valley,NY,11560 +Long Beach,NY,11561 +Lynbrook,NY,11563 +Malverne,NY,11565 +North Merrick,NY,11566 +Old Westbury,NY,11568 +Rockville Centre,NY,11570 +Oceanside,NY,11572 +Roosevelt,NY,11575 +Roslyn,NY,11576 +Roslyn Heights,NY,11577 +Sea Cliff,NY,11579 +Valley Stream,NY,11580 +North Woodmere,NY,11581 +Westbury,NY,11590 +Williston Park,NY,11596 +Woodmere,NY,11598 +Far Rockaway,NY,11691 +Far Rockaway,NY,11692 +Far Rockaway,NY,11693 +Far Rockaway,NY,11694 +Inwood,NY,11696 +Far Rockaway,NY,11697 +Amityville,NY,11701 +Oak Beach,NY,11702 +North Babylon,NY,11703 +West Babylon,NY,11704 +Bayport,NY,11705 +Kismet,NY,11706 +Bayville,NY,11709 +North Bellmore,NY,11710 +Bellport,NY,11713 +Bethpage,NY,11714 +Blue Point,NY,11715 +Bohemia,NY,11716 +West Brentwood,NY,11717 +Brightwaters,NY,11718 +Brookhaven,NY,11719 +Centereach,NY,11720 +Centerport,NY,11721 +Central Islip,NY,11722 +Cold Spring Harb,NY,11724 +Commack,NY,11725 +Copiague,NY,11726 +Coram,NY,11727 +Deer Park,NY,11729 +East Islip,NY,11730 +Elwood,NY,11731 +East Norwich,NY,11732 +Setauket,NY,11733 +South Farmingdal,NY,11735 +Farmingville,NY,11738 +Greenlawn,NY,11740 +Holbrook,NY,11741 +Holtsville,NY,11742 +Halesite,NY,11743 +Dix Hills,NY,11746 +Melville,NY,11747 +Islip,NY,11751 +Islip Terrace,NY,11752 +Jericho,NY,11753 +Kings Park,NY,11754 +Lake Grove,NY,11755 +Levittown,NY,11756 +Lindenhurst,NY,11757 +North Massapequa,NY,11758 +Massapequa Park,NY,11762 +Medford,NY,11763 +Miller Place,NY,11764 +Mill Neck,NY,11765 +Mount Sinai,NY,11766 +Nesconset,NY,11767 +Northport,NY,11768 +Oakdale,NY,11769 +Oyster Bay,NY,11771 +Davis Park,NY,11772 +Port Jefferson S,NY,11776 +Port Jefferson,NY,11777 +Rocky Point,NY,11778 +Lake Ronkonkoma,NY,11779 +Saint James,NY,11780 +Cherry Grove,NY,11782 +Seaford,NY,11783 +Selden,NY,11784 +Shoreham,NY,11786 +Smithtown,NY,11787 +Hauppauge,NY,11788 +Sound Beach,NY,11789 +Stony Brook,NY,11790 +Syosset,NY,11791 +Wading River,NY,11792 +Wantagh,NY,11793 +Suny Stony Brook,NY,11794 +West Islip,NY,11795 +West Sayville,NY,11796 +Woodbury,NY,11797 +Wheatley Heights,NY,11798 +Hicksville,NY,11801 +Plainview,NY,11803 +Old Bethpage,NY,11804 +Riverhead,NY,11901 +Calverton,NY,11933 +Center Moriches,NY,11934 +Cutchogue,NY,11935 +East Hampton,NY,11937 +East Marion,NY,11939 +East Moriches,NY,11940 +Eastport,NY,11941 +East Quogue,NY,11942 +Greenport,NY,11944 +Hampton Bays,NY,11946 +Laurel,NY,11948 +Manorville,NY,11949 +Mastic,NY,11950 +Mastic Beach,NY,11951 +Mattituck,NY,11952 +Middle Island,NY,11953 +Montauk,NY,11954 +Moriches,NY,11955 +Orient,NY,11957 +Ridge,NY,11961 +Sag Harbor,NY,11963 +Shelter Island,NY,11964 +Shelter Island H,NY,11965 +Shirley,NY,11967 +Southampton,NY,11968 +Southold,NY,11971 +Water Mill,NY,11976 +Westhampton,NY,11977 +Westhampton Beac,NY,11978 +Yaphank,NY,11980 +Alcove,NY,12007 +Alplaus,NY,12008 +Altamont,NY,12009 +West Charlton,NY,12010 +Athens,NY,12015 +Austerlitz,NY,12017 +Averill Park,NY,12018 +Ballston Lake,NY,12019 +Ballston Spa,NY,12020 +Berlin,NY,12022 +Berne,NY,12023 +Brainard,NY,12024 +Broadalbin,NY,12025 +Burnt Hills,NY,12027 +Buskirk,NY,12028 +Canaan,NY,12029 +Carlisle,NY,12031 +Caroga Lake,NY,12032 +Castleton On Hud,NY,12033 +Central Bridge,NY,12035 +Charlotteville,NY,12036 +Chatham,NY,12037 +Clarksville,NY,12041 +Climax,NY,12042 +Cobleskill,NY,12043 +Coeymans Hollow,NY,12046 +Cohoes,NY,12047 +Coxsackie,NY,12051 +Cropseyville,NY,12052 +Delanson,NY,12053 +Delmar,NY,12054 +Dormansville,NY,12055 +Duanesburg,NY,12056 +White Creek,NY,12057 +Earlton,NY,12058 +East Berne,NY,12059 +East Chatham,NY,12060 +East Greenbush,NY,12061 +East Nassau,NY,12062 +East Worcester,NY,12064 +Clifton Park,NY,12065 +Esperance,NY,12066 +Feura Bush,NY,12067 +Fonda,NY,12068 +Fort Johnson,NY,12070 +Fultonham,NY,12071 +Fultonville,NY,12072 +Galway,NY,12074 +Ghent,NY,12075 +Gilboa,NY,12076 +Glenmont,NY,12077 +Gloversville,NY,12078 +Greenville,NY,12083 +Guilderland,NY,12084 +Hagaman,NY,12086 +Hannacroix,NY,12087 +Hoosick Falls,NY,12090 +Howes Cave,NY,12092 +Jefferson,NY,12093 +Johnsonville,NY,12094 +Johnstown,NY,12095 +Kinderhook,NY,12106 +Lake Pleasant,NY,12108 +Latham,NY,12110 +Lawyersville,NY,12113 +Malden Bridge,NY,12115 +Maryland,NY,12116 +Mayfield,NY,12117 +Mechanicville,NY,12118 +Medusa,NY,12120 +Melrose,NY,12121 +Middleburgh,NY,12122 +Nassau,NY,12123 +New Lebanon,NY,12125 +Niverville,NY,12130 +North Blenheim,NY,12131 +Edinburg,NY,12134 +Norton Hill,NY,12135 +Old Chatham,NY,12136 +Pattersonville,NY,12137 +Taconic Lake,NY,12138 +Piseco,NY,12139 +Poestenkill,NY,12140 +Ravena,NY,12143 +Rensselaer,NY,12144 +Rensselaerville,NY,12147 +Rexford,NY,12148 +Richmondville,NY,12149 +Rotterdam Juncti,NY,12150 +Round Lake,NY,12151 +Sand Lake,NY,12153 +Schaghticoke,NY,12154 +Schenevus,NY,12155 +Schodack Landing,NY,12156 +Schoharie,NY,12157 +Selkirk,NY,12158 +Slingerlands,NY,12159 +Sloansville,NY,12160 +Speculator,NY,12164 +Spencertown,NY,12165 +Sprakers,NY,12166 +Stamford,NY,12167 +Stephentown,NY,12168 +Stephentown,NY,12169 +Stillwater,NY,12170 +Stuyvesant,NY,12173 +Summit,NY,12175 +Surprise,NY,12176 +Troy,NY,12180 +Troy,NY,12182 +Green Island,NY,12183 +Valatie,NY,12184 +Valley Falls,NY,12185 +Voorheesville,NY,12186 +Warnerville,NY,12187 +Waterford,NY,12188 +Watervliet,NY,12189 +Wells,NY,12190 +West Coxsackie,NY,12192 +Westerlo,NY,12193 +West Fulton,NY,12194 +West Sand Lake,NY,12196 +Worcester,NY,12197 +Wynantskill,NY,12198 +Albany,NY,12202 +Mc Kownville,NY,12203 +Albany,NY,12204 +Roessleville,NY,12205 +Albany,NY,12206 +Albany,NY,12207 +Albany,NY,12208 +Albany,NY,12209 +Albany,NY,12210 +Loudonville,NY,12211 +Mayfair,NY,12302 +Rotterdam,NY,12303 +Schenectady,NY,12304 +Schenectady,NY,12305 +Schenectady,NY,12306 +Schenectady,NY,12307 +Schenectady,NY,12308 +Niskayuna,NY,12309 +Eddyville,NY,12401 +Accord,NY,12404 +Acra,NY,12405 +Arkville,NY,12406 +Ashland,NY,12407 +Shady,NY,12409 +Oliverea,NY,12410 +Bloomington,NY,12411 +Boiceville,NY,12412 +Cairo,NY,12413 +Catskill,NY,12414 +Chichester,NY,12416 +Cornwallville,NY,12418 +Cottekill,NY,12419 +Denver,NY,12421 +Durham,NY,12422 +East Durham,NY,12423 +East Jewett,NY,12424 +Elka Park,NY,12427 +Ellenville,NY,12428 +Halcott Center,NY,12430 +Freehold,NY,12431 +Glenford,NY,12433 +Grand Gorge,NY,12434 +Greenfield Park,NY,12435 +East Windham,NY,12439 +High Falls,NY,12440 +Hunter,NY,12442 +Hurley,NY,12443 +Jewett,NY,12444 +Kerhonkson,NY,12446 +Lake Hill,NY,12448 +Lake Katrine,NY,12449 +Lanesville,NY,12450 +Leeds,NY,12451 +Maplecrest,NY,12454 +Kelly Corners,NY,12455 +Mount Marion,NY,12456 +Mount Tremper,NY,12457 +Napanoch,NY,12458 +Oak Hill,NY,12460 +Krumville,NY,12461 +12462,NY,12462 +Palenville,NY,12463 +Phoenicia,NY,12464 +Pine Hill,NY,12465 +Port Ewen,NY,12466 +Prattsville,NY,12468 +Preston Hollow,NY,12469 +Purling,NY,12470 +Rosendale,NY,12472 +Round Top,NY,12473 +Roxbury,NY,12474 +Saugerties,NY,12477 +Shandaken,NY,12480 +Shokan,NY,12481 +South Cairo,NY,12482 +Stone Ridge,NY,12484 +Tannersville,NY,12485 +Tillson,NY,12486 +Ulster Park,NY,12487 +West Hurley,NY,12491 +West Kill,NY,12492 +West Shokan,NY,12494 +Willow,NY,12495 +Windham,NY,12496 +Woodstock,NY,12498 +Amenia,NY,12501 +Ancram,NY,12502 +Ancramdale,NY,12503 +Barrytown,NY,12507 +Beacon,NY,12508 +Claverack,NY,12513 +Clinton Corners,NY,12514 +Clintondale,NY,12515 +Copake,NY,12516 +Copake Falls,NY,12517 +Cornwall,NY,12518 +Cornwall On Huds,NY,12520 +Craryville,NY,12521 +Dover Plains,NY,12522 +Elizaville,NY,12523 +Fishkill,NY,12524 +Gardiner,NY,12525 +Germantown,NY,12526 +Highland,NY,12528 +Hillsdale,NY,12529 +Holmes,NY,12531 +Hopewell Junctio,NY,12533 +Hudson,NY,12534 +Hyde Park,NY,12538 +Lagrangeville,NY,12540 +Marlboro,NY,12542 +Maybrook,NY,12543 +Millbrook,NY,12545 +Millerton,NY,12546 +Milton,NY,12547 +Modena,NY,12548 +Montgomery,NY,12549 +Middle Hope,NY,12550 +New Windsor,NY,12553 +Mohonk Lake,NY,12561 +Patterson,NY,12563 +Pawling,NY,12564 +Pine Bush,NY,12566 +Pine Plains,NY,12567 +Pleasant Valley,NY,12569 +Poughquag,NY,12570 +Red Hook,NY,12571 +Rhinebeck,NY,12572 +Rock Tavern,NY,12575 +Salisbury Mills,NY,12577 +Salt Point,NY,12578 +Staatsburg,NY,12580 +Stanfordville,NY,12581 +Stormville,NY,12582 +Tivoli,NY,12583 +Verbank,NY,12585 +Walden,NY,12586 +Wallkill,NY,12589 +New Hamburg,NY,12590 +Wassaic,NY,12592 +Wingdale,NY,12594 +South Road,NY,12601 +Arlington,NY,12603 +Monticello,NY,12701 +Barryville,NY,12719 +Bethel,NY,12720 +Bloomingburg,NY,12721 +Callicoon,NY,12723 +Claryville,NY,12725 +Fosterdale,NY,12726 +Cochecton Center,NY,12727 +Cuddebackville,NY,12729 +Eldred,NY,12732 +Fallsburg,NY,12733 +Grossinger,NY,12734 +Fremont Center,NY,12736 +Glen Spey,NY,12737 +Glen Wild,NY,12738 +Godeffroy,NY,12739 +Grahamsville,NY,12740 +Mileses,NY,12741 +Harris,NY,12742 +Highland Lake,NY,12743 +Hortonville,NY,12745 +Huguenot,NY,12746 +Hurleyville,NY,12747 +Jeffersonville,NY,12748 +Kenoza Lake,NY,12750 +Kiamesha Lake,NY,12751 +Lake Huntington,NY,12752 +Lew Beach,NY,12753 +Liberty,NY,12754 +Livingston Manor,NY,12758 +Loch Sheldrake,NY,12759 +Long Eddy,NY,12760 +Mongaup Valley,NY,12762 +Mountain Dale,NY,12763 +Narrowsburg,NY,12764 +Neversink,NY,12765 +North Branch,NY,12766 +Parksville,NY,12768 +Pond Eddy,NY,12770 +Port Jervis,NY,12771 +Rock Hill,NY,12775 +Cook Falls,NY,12776 +Forestburgh,NY,12777 +South Fallsburg,NY,12779 +Sparrowbush,NY,12780 +Sundown,NY,12782 +Swan Lake,NY,12783 +White Lake,NY,12786 +White Sulphur Sp,NY,12787 +Woodbourne,NY,12788 +Woodridge,NY,12789 +Wurtsboro,NY,12790 +Youngsville,NY,12791 +Yulan,NY,12792 +Queensbury,NY,12801 +South Glens Fall,NY,12803 +Queensbury,NY,12804 +Adirondack,NY,12808 +Argyle,NY,12809 +Athol,NY,12810 +Blue Mountain La,NY,12812 +Bolton Landing,NY,12814 +Brant Lake,NY,12815 +Cambridge,NY,12816 +Chestertown,NY,12817 +Clemons,NY,12819 +Comstock,NY,12821 +Corinth,NY,12822 +Cossayuna,NY,12823 +Diamond Point,NY,12824 +East Greenwich,NY,12826 +Fort Ann,NY,12827 +Fort Edward,NY,12828 +Gansevoort,NY,12831 +Granville,NY,12832 +Greenfield Cente,NY,12833 +Thomson,NY,12834 +Hadley,NY,12835 +Hague,NY,12836 +Hampton,NY,12837 +Hartford,NY,12838 +Hudson Falls,NY,12839 +Indian Lake,NY,12842 +Johnsburg,NY,12843 +Pilot Knob,NY,12844 +Lake George,NY,12845 +Lake Luzerne,NY,12846 +Long Lake,NY,12847 +Middle Granville,NY,12849 +Middle Grove,NY,12850 +Minerva,NY,12851 +Newcomb,NY,12852 +North Creek,NY,12853 +North Granville,NY,12854 +North Hudson,NY,12855 +Olmstedville,NY,12857 +Paradox,NY,12858 +Porter Corners,NY,12859 +Pottersville,NY,12860 +Putnam Station,NY,12861 +Rock City Falls,NY,12863 +Salem,NY,12865 +Wilton,NY,12866 +Schroon Lake,NY,12870 +Schuylerville,NY,12871 +Severance,NY,12872 +Shushan,NY,12873 +Silver Bay,NY,12874 +Stony Creek,NY,12878 +Ticonderoga,NY,12883 +Warrensburg,NY,12885 +Wevertown,NY,12886 +Whitehall,NY,12887 +Plattsburgh,NY,12901 +Altona,NY,12910 +Au Sable Chasm,NY,12911 +Au Sable Forks,NY,12912 +Bloomingdale,NY,12913 +Bombay,NY,12914 +Brushton,NY,12916 +Burke,NY,12917 +Cadyville,NY,12918 +Champlain,NY,12919 +Chateaugay,NY,12920 +Chazy,NY,12921 +Childwold,NY,12922 +Churubusco,NY,12923 +Keeseville,NY,12924 +Constable,NY,12926 +Crown Point,NY,12928 +Dickinson Center,NY,12930 +Elizabethtown,NY,12932 +Ellenburg Center,NY,12934 +Ellenburg Depot,NY,12935 +Essex,NY,12936 +Fort Covington,NY,12937 +Nicholville,NY,12938 +Jay,NY,12941 +Keene,NY,12942 +Saint Huberts,NY,12943 +Keeseville,NY,12944 +Upper Saint Regi,NY,12945 +North Pole,NY,12946 +Lawrenceville,NY,12949 +Lewis,NY,12950 +Lyon Mountain,NY,12952 +Malone,NY,12953 +Merrill,NY,12955 +Mineville,NY,12956 +Moira,NY,12957 +Mooers,NY,12958 +Mooers Forks,NY,12959 +Moriah,NY,12960 +Moriah Center,NY,12961 +Morrisonville,NY,12962 +New Russia,NY,12964 +Nicholville,NY,12965 +Bangor,NY,12966 +North Lawrence,NY,12967 +Onchiota,NY,12968 +Owls Head,NY,12969 +Paul Smiths,NY,12970 +Peru,NY,12972 +Piercefield,NY,12973 +Port Henry,NY,12974 +Redford,NY,12978 +Rouses Point,NY,12979 +Saint Regis Fall,NY,12980 +Saranac,NY,12981 +Saranac Lake,NY,12983 +Schuyler Falls,NY,12985 +Sunmount,NY,12986 +Upper Jay,NY,12987 +Vermontville,NY,12989 +West Chazy,NY,12992 +Westport,NY,12993 +Whallonsburg,NY,12994 +Willsboro,NY,12996 +Wilmington,NY,12997 +Auburn,NY,13021 +Aurora,NY,13026 +Baldwinsville,NY,13027 +Bernhards Bay,NY,13028 +Brewerton,NY,13029 +Bridgeport,NY,13030 +Camillus,NY,13031 +Canastota,NY,13032 +Cato,NY,13033 +Cayuga,NY,13034 +Cazenovia,NY,13035 +Central Square,NY,13036 +Chittenango,NY,13037 +Cicero,NY,13039 +Cincinnatus,NY,13040 +Clay,NY,13041 +Cleveland,NY,13042 +Constantia,NY,13044 +Cortland,NY,13045 +Cuyler,NY,13050 +De Ruyter,NY,13052 +Dryden,NY,13053 +Durhamville,NY,13054 +East Freetown,NY,13055 +East Syracuse,NY,13057 +Elbridge,NY,13060 +Erieville,NY,13061 +Fabius,NY,13063 +Fayetteville,NY,13066 +Freeville,NY,13068 +Fulton,NY,13069 +Genoa,NY,13071 +Georgetown,NY,13072 +Groton,NY,13073 +Hannibal,NY,13074 +Hastings,NY,13076 +Homer,NY,13077 +Jamesville,NY,13078 +Jordan,NY,13080 +King Ferry,NY,13081 +Kirkville,NY,13082 +Lacona,NY,13083 +La Fayette,NY,13084 +Lebanon,NY,13085 +Liverpool,NY,13088 +Bayberry,NY,13090 +Locke,NY,13092 +Mc Graw,NY,13101 +Mallory,NY,13103 +Manlius,NY,13104 +Marcellus,NY,13108 +Marietta,NY,13110 +Martville,NY,13111 +Memphis,NY,13112 +Mexico,NY,13114 +Minoa,NY,13116 +Moravia,NY,13118 +Nedrow,NY,13120 +New Woodstock,NY,13122 +North Pitcher,NY,13124 +Oswego,NY,13126 +Parish,NY,13131 +Pennellville,NY,13132 +Phoenix,NY,13135 +Pitcher,NY,13136 +Port Byron,NY,13140 +Preble,NY,13141 +Pulaski,NY,13142 +Red Creek,NY,13143 +Richland,NY,13144 +Sandy Creek,NY,13145 +Savannah,NY,13146 +Venice Center,NY,13147 +Seneca Falls,NY,13148 +Skaneateles,NY,13152 +South Otselic,NY,13155 +Sterling,NY,13156 +Truxton,NY,13158 +Tully,NY,13159 +Union Springs,NY,13160 +Warners,NY,13164 +Waterloo,NY,13165 +Weedsport,NY,13166 +West Monroe,NY,13167 +Syracuse,NY,13202 +Syracuse,NY,13203 +Syracuse,NY,13204 +Syracuse,NY,13205 +Syracuse,NY,13206 +Syracuse,NY,13207 +Syracuse,NY,13208 +Solvay,NY,13209 +Syracuse,NY,13210 +Mattydale,NY,13211 +North Syracuse,NY,13212 +De Witt,NY,13214 +Onondaga,NY,13215 +Syracuse,NY,13219 +Syracuse,NY,13224 +Alder Creek,NY,13301 +Altmar,NY,13302 +Ava,NY,13303 +Barneveld,NY,13304 +Blossvale,NY,13308 +Boonville,NY,13309 +Bouckville,NY,13310 +Brookfield,NY,13314 +Burlington Flats,NY,13315 +Camden,NY,13316 +Ames,NY,13317 +Cassville,NY,13318 +Chadwicks,NY,13319 +Cherry Valley,NY,13320 +Clayville,NY,13322 +Clinton,NY,13323 +Cold Brook,NY,13324 +Constableville,NY,13325 +Cooperstown,NY,13326 +Croghan,NY,13327 +Deansboro,NY,13328 +Dolgeville,NY,13329 +Eagle Bay,NY,13331 +Earlville,NY,13332 +East Springfield,NY,13333 +Eaton,NY,13334 +Edmeston,NY,13335 +Fly Creek,NY,13337 +Forestport,NY,13338 +Fort Plain,NY,13339 +Frankfort,NY,13340 +Garrattsville,NY,13342 +Glenfield,NY,13343 +Greig,NY,13345 +Hamilton,NY,13346 +Hartwick,NY,13348 +Herkimer,NY,13350 +Hoffmeister,NY,13353 +Holland Patent,NY,13354 +Hubbardsville,NY,13355 +Ilion,NY,13357 +Inlet,NY,13360 +Jordanville,NY,13361 +Lee Center,NY,13363 +Little Falls,NY,13365 +Beaver River,NY,13367 +Lyons Falls,NY,13368 +Mc Connellsville,NY,13401 +Madison,NY,13402 +Marcy,NY,13403 +Middleville,NY,13406 +Mohawk,NY,13407 +Morrisville,NY,13408 +Munnsville,NY,13409 +New Berlin,NY,13411 +New Hartford,NY,13413 +New Lisbon,NY,13415 +Newport,NY,13416 +New York Mills,NY,13417 +North Brookfield,NY,13418 +Old Forge,NY,13420 +Oneida,NY,13421 +Oriskany,NY,13424 +Oriskany Falls,NY,13425 +Palatine Bridge,NY,13428 +Poland,NY,13431 +Port Leyden,NY,13433 +Raquette Lake,NY,13436 +Redfield,NY,13437 +Remsen,NY,13438 +Richfield Spring,NY,13439 +Rome,NY,13440 +Roseboom,NY,13450 +Saint Johnsville,NY,13452 +Salisbury Center,NY,13454 +Sauquoit,NY,13456 +Sharon Springs,NY,13459 +Sherburne,NY,13460 +Sherrill,NY,13461 +Smyrna,NY,13464 +South Edmeston,NY,13466 +Springfield Cent,NY,13468 +Stittville,NY,13469 +Stratford,NY,13470 +Taberg,NY,13471 +Turin,NY,13473 +Van Hornesville,NY,13475 +Vernon,NY,13476 +Vernon Center,NY,13477 +Verona,NY,13478 +Waterville,NY,13480 +West Burlington,NY,13482 +Westdale,NY,13483 +West Edmeston,NY,13485 +Westernville,NY,13486 +Westford,NY,13488 +West Leyden,NY,13489 +Westmoreland,NY,13490 +West Winfield,NY,13491 +Whitesboro,NY,13492 +Williamstown,NY,13493 +Woodgate,NY,13494 +Yorkville,NY,13495 +Utica,NY,13501 +Utica,NY,13502 +Watertown,NY,13601 +Fort Drum,NY,13602 +Fort Drum,NY,13603 +Smithville,NY,13605 +Adams Center,NY,13606 +Point Vivian,NY,13607 +Antwerp,NY,13608 +Belleville,NY,13611 +Black River,NY,13612 +Brasher Falls,NY,13613 +Brier Hill,NY,13614 +Calcium,NY,13616 +Canton,NY,13617 +Cape Vincent,NY,13618 +Carthage,NY,13619 +Castorland,NY,13620 +Chase Mills,NY,13621 +Chaumont,NY,13622 +Frontenac,NY,13624 +Colton,NY,13625 +Copenhagen,NY,13626 +De Kalb Junction,NY,13630 +De Peyster,NY,13633 +Dexter,NY,13634 +Edwards,NY,13635 +Ellisburg,NY,13636 +Evans Mills,NY,13637 +Felts Mills,NY,13638 +Gouverneur,NY,13642 +Hammond,NY,13646 +Harrisville,NY,13648 +Henderson,NY,13650 +Hermon,NY,13652 +Heuvelton,NY,13654 +Hogansburg,NY,13655 +La Fargeville,NY,13656 +Lisbon,NY,13658 +Lorraine,NY,13659 +Madrid,NY,13660 +Mannsville,NY,13661 +Massena,NY,13662 +Natural Bridge,NY,13665 +Newton Falls,NY,13666 +Norfolk,NY,13667 +Norwood,NY,13668 +Ogdensburg,NY,13669 +Oswegatchie,NY,13670 +Parishville,NY,13672 +Philadelphia,NY,13673 +Plessis,NY,13675 +Potsdam,NY,13676 +Redwood,NY,13679 +Rensselaer Falls,NY,13680 +Richville,NY,13681 +Rodman,NY,13682 +Degrasse,NY,13684 +Sackets Harbor,NY,13685 +South Colton,NY,13687 +Star Lake,NY,13690 +Theresa,NY,13691 +Three Mile Bay,NY,13693 +Waddington,NY,13694 +Wanakena,NY,13695 +West Stockholm,NY,13696 +Winthrop,NY,13697 +Woodville,NY,13698 +Afton,NY,13730 +Andes,NY,13731 +Apalachin,NY,13732 +Bainbridge,NY,13733 +Barton,NY,13734 +Berkshire,NY,13736 +Bloomville,NY,13739 +Bovina Center,NY,13740 +Candor,NY,13743 +Castle Creek,NY,13744 +Chenango Forks,NY,13746 +Conklin,NY,13748 +Davenport,NY,13750 +Davenport Center,NY,13751 +De Lancey,NY,13752 +Meredith,NY,13753 +Deposit,NY,13754 +Downsville,NY,13755 +East Branch,NY,13756 +East Meredith,NY,13757 +Endwell,NY,13760 +Franklin,NY,13775 +Gilbertsville,NY,13776 +Glen Aubrey,NY,13777 +Greene,NY,13778 +Guilford,NY,13780 +Hamden,NY,13782 +Cadosia,NY,13783 +Harpersfield,NY,13786 +Harpursville,NY,13787 +Hobart,NY,13788 +Johnson City,NY,13790 +Kirkwood,NY,13795 +Laurens,NY,13796 +Lisle,NY,13797 +Mc Donough,NY,13801 +Maine,NY,13802 +Marathon,NY,13803 +Masonville,NY,13804 +Meridale,NY,13806 +Milford,NY,13807 +Morris,NY,13808 +Mount Upton,NY,13809 +Mount Vision,NY,13810 +Newark Valley,NY,13811 +Nichols,NY,13812 +Nineveh,NY,13813 +Norwich,NY,13815 +Oneonta,NY,13820 +Otego,NY,13825 +Ouaquaga,NY,13826 +Owego,NY,13827 +Brisben,NY,13830 +Plymouth,NY,13832 +Sanitaria Spring,NY,13833 +Portlandville,NY,13834 +Richford,NY,13835 +Sidney,NY,13838 +Sidney Center,NY,13839 +Smithville Flats,NY,13841 +South Kortright,NY,13842 +South New Berlin,NY,13843 +South Plymouth,NY,13844 +Treadwell,NY,13846 +Unadilla,NY,13849 +Vestal,NY,13850 +Walton,NY,13856 +Wells Bridge,NY,13859 +West Oneonta,NY,13861 +Whitney Point,NY,13862 +Willet,NY,13863 +Willseyville,NY,13864 +Windsor,NY,13865 +Binghamton,NY,13901 +Binghamton,NY,13903 +Binghamton,NY,13904 +Binghamton,NY,13905 +Akron,NY,14001 +Alabama,NY,14003 +Alden,NY,14004 +Alexander,NY,14005 +Angola,NY,14006 +Appleton,NY,14008 +Arcade,NY,14009 +Attica,NY,14011 +Barker,NY,14012 +Basom,NY,14013 +Batavia,NY,14020 +Bliss,NY,14024 +Boston,NY,14025 +Bowmansville,NY,14026 +Burt,NY,14028 +Chaffee,NY,14030 +Clarence,NY,14031 +Clarence Center,NY,14032 +Colden,NY,14033 +Collins,NY,14034 +Corfu,NY,14036 +Cowlesville,NY,14037 +Dale,NY,14039 +Darien Center,NY,14040 +Dayton,NY,14041 +Delevan,NY,14042 +Depew,NY,14043 +Derby,NY,14047 +Van Buren Bay,NY,14048 +Swormville,NY,14051 +East Aurora,NY,14052 +East Bethany,NY,14054 +East Concord,NY,14055 +Eden,NY,14057 +Elba,NY,14058 +Elma,NY,14059 +Farmersville Sta,NY,14060 +Forestville,NY,14062 +Fredonia,NY,14063 +Freedom,NY,14065 +Gainesville,NY,14066 +Gasport,NY,14067 +Getzville,NY,14068 +Glenwood,NY,14069 +Gowanda,NY,14070 +Grand Island,NY,14072 +Hamburg,NY,14075 +Holland,NY,14080 +Irving,NY,14081 +Java Center,NY,14082 +Java Village,NY,14083 +Lake View,NY,14085 +Lancaster,NY,14086 +Lawtons,NY,14091 +Lewiston,NY,14092 +Lockport,NY,14094 +Lyndonville,NY,14098 +Machias,NY,14101 +Marilla,NY,14102 +Medina,NY,14103 +Middleport,NY,14105 +Newfane,NY,14108 +North Collins,NY,14111 +North Java,NY,14113 +North Tonawanda,NY,14120 +Oakfield,NY,14125 +Orchard Park,NY,14127 +Perrysburg,NY,14129 +Ransomville,NY,14131 +Sanborn,NY,14132 +Sardinia,NY,14134 +Silver Creek,NY,14136 +South Dayton,NY,14138 +South Wales,NY,14139 +Springville,NY,14141 +Stafford,NY,14143 +Strykersville,NY,14145 +Tonawanda,NY,14150 +Varysburg,NY,14167 +West Falls,NY,14170 +West Valley,NY,14171 +Wilson,NY,14172 +Youngstown,NY,14174 +Buffalo,NY,14201 +Buffalo,NY,14202 +Buffalo,NY,14203 +Buffalo,NY,14204 +Buffalo,NY,14206 +Buffalo,NY,14207 +Buffalo,NY,14208 +Buffalo,NY,14209 +Buffalo,NY,14210 +Buffalo,NY,14211 +Buffalo,NY,14212 +Buffalo,NY,14213 +Buffalo,NY,14214 +Buffalo,NY,14215 +Buffalo,NY,14216 +Kenmore,NY,14217 +Lackawanna,NY,14218 +Blasdell,NY,14219 +Buffalo,NY,14220 +Williamsville,NY,14221 +Buffalo,NY,14222 +Buffalo,NY,14223 +West Seneca,NY,14224 +Cheektowaga,NY,14225 +Amherst,NY,14226 +Cheektowaga,NY,14227 +Amherst,NY,14228 +Niagara Falls,NY,14301 +Niagara Falls,NY,14303 +Niagara Falls,NY,14304 +Niagara Falls,NY,14305 +Adams Basin,NY,14410 +Albion,NY,14411 +Avon,NY,14414 +Bellona,NY,14415 +Bergen,NY,14416 +Branchport,NY,14418 +Brockport,NY,14420 +Byron,NY,14422 +Caledonia,NY,14423 +Canandaigua,NY,14424 +Canandaigua,NY,14425 +Castile,NY,14427 +Clifton,NY,14428 +Clifton Springs,NY,14432 +Clyde,NY,14433 +Conesus,NY,14435 +Dansville,NY,14437 +Dresden,NY,14441 +East Rochester,NY,14445 +Fairport,NY,14450 +Geneseo,NY,14454 +Geneva,NY,14456 +Groveland,NY,14462 +Hamlin,NY,14464 +Hemlock,NY,14466 +Henrietta,NY,14467 +Hilton,NY,14468 +Bloomfield,NY,14469 +Hulberton,NY,14470 +Honeoye,NY,14471 +Honeoye Falls,NY,14472 +Ionia,NY,14475 +Kendall,NY,14476 +Kent,NY,14477 +Bluff Point,NY,14478 +Lakeville,NY,14480 +Leicester,NY,14481 +Le Roy,NY,14482 +Lima,NY,14485 +Linwood,NY,14486 +Livonia,NY,14487 +Lyons,NY,14489 +Macedon,NY,14502 +Manchester,NY,14504 +Marion,NY,14505 +Mendon,NY,14506 +Middlesex,NY,14507 +Tuscarora,NY,14510 +Naples,NY,14512 +Newark,NY,14513 +North Chili,NY,14514 +North Rose,NY,14516 +Nunda,NY,14517 +Ontario,NY,14519 +Hayt Corners,NY,14521 +Palmyra,NY,14522 +Linwood,NY,14525 +Penfield,NY,14526 +Penn Yan,NY,14527 +Perry,NY,14530 +Phelps,NY,14532 +Wadsworth,NY,14533 +Pittsford,NY,14534 +Portageville,NY,14536 +Mac Dougall,NY,14541 +West Rush,NY,14543 +Rushville,NY,14544 +Scottsburg,NY,14545 +Scottsville,NY,14546 +Shortsville,NY,14548 +Rock Glen,NY,14550 +Sodus,NY,14551 +Sodus Point,NY,14555 +Spencerport,NY,14559 +Springwater,NY,14560 +Stanley,NY,14561 +Victor,NY,14564 +Walworth,NY,14568 +Warsaw,NY,14569 +Waterport,NY,14571 +Wayland,NY,14572 +Webster,NY,14580 +West Henrietta,NY,14586 +Williamson,NY,14589 +Wolcott,NY,14590 +Wyoming,NY,14591 +Rochester,NY,14604 +Rochester,NY,14605 +Rochester,NY,14606 +Rochester,NY,14607 +Rochester,NY,14608 +Rochester,NY,14609 +Rochester,NY,14610 +Rochester,NY,14611 +Rochester,NY,14612 +Rochester,NY,14613 +Rochester,NY,14614 +Rochester,NY,14615 +Greece,NY,14616 +Rochester,NY,14617 +Twelve Corners,NY,14618 +Rochester,NY,14619 +Rochester,NY,14620 +Rochester,NY,14621 +Rochester,NY,14622 +Rochester,NY,14623 +Westgate,NY,14624 +Panorama,NY,14625 +Rochester,NY,14626 +Jamestown,NY,14701 +Allegany,NY,14706 +Alma,NY,14708 +Angelica,NY,14709 +Ashville,NY,14710 +Belfast,NY,14711 +Bemus Point,NY,14712 +Black Creek,NY,14714 +Bolivar,NY,14715 +Brocton,NY,14716 +Caneadea,NY,14717 +Cassadaga,NY,14718 +Cattaraugus,NY,14719 +Ceres,NY,14721 +Cherry Creek,NY,14723 +Clymer,NY,14724 +Conewango Valley,NY,14726 +Cuba,NY,14727 +Dewittville,NY,14728 +East Otto,NY,14729 +Ellicottville,NY,14731 +Falconer,NY,14733 +Fillmore,NY,14735 +Findley Lake,NY,14736 +Franklinville,NY,14737 +Frewsburg,NY,14738 +Friendship,NY,14739 +Gerry,NY,14740 +Great Valley,NY,14741 +Ischua,NY,14743 +Houghton,NY,14744 +Kennedy,NY,14747 +Kill Buck,NY,14748 +Lakewood,NY,14750 +Limestone,NY,14753 +Little Genesee,NY,14754 +Little Valley,NY,14755 +Mayville,NY,14757 +Olean,NY,14760 +Panama,NY,14767 +Portland,NY,14769 +Portville,NY,14770 +Randolph,NY,14772 +Ripley,NY,14775 +Rushford,NY,14777 +Salamanca,NY,14779 +Sherman,NY,14781 +Sinclairville,NY,14782 +Stockton,NY,14784 +Westfield,NY,14787 +Addison,NY,14801 +Alfred,NY,14802 +Alfred Station,NY,14803 +Almond,NY,14804 +Alpine,NY,14805 +Andover,NY,14806 +Arkport,NY,14807 +Atlanta,NY,14808 +Wallace,NY,14809 +Veterans Adminis,NY,14810 +Beaver Dams,NY,14812 +Belmont,NY,14813 +Big Flats,NY,14814 +Bradford,NY,14815 +Breesport,NY,14816 +Brooktondale,NY,14817 +Burdett,NY,14818 +Cameron,NY,14819 +Cameron Mills,NY,14820 +Campbell,NY,14821 +Canaseraga,NY,14822 +Canisteo,NY,14823 +Cayuta,NY,14824 +Chemung,NY,14825 +Cohocton,NY,14826 +Corning,NY,14830 +Dalton,NY,14836 +Dundee,NY,14837 +Erin,NY,14838 +Greenwood,NY,14839 +Hammondsport,NY,14840 +Hector,NY,14841 +Himrod,NY,14842 +Hornell,NY,14843 +Horseheads,NY,14845 +Hunt,NY,14846 +Interlaken,NY,14847 +Ithaca College,NY,14850 +Ithaca,NY,14853 +Jasper,NY,14855 +Lindley,NY,14858 +Lockwood,NY,14859 +Lodi,NY,14860 +Lowman,NY,14861 +Millport,NY,14864 +Montour Falls,NY,14865 +Newfield,NY,14867 +Odessa,NY,14869 +Painted Post,NY,14870 +Pine City,NY,14871 +Pine Valley,NY,14872 +Prattsburg,NY,14873 +Pulteney,NY,14874 +Rexville,NY,14877 +Rock Stream,NY,14878 +Savona,NY,14879 +Scio,NY,14880 +Slaterville Spri,NY,14881 +Lansing,NY,14882 +Spencer,NY,14883 +Swain,NY,14884 +Troupsburg,NY,14885 +Trumansburg,NY,14886 +Valois,NY,14888 +Van Etten,NY,14889 +Watkins Glen,NY,14891 +Waverly,NY,14892 +Wellsburg,NY,14894 +Wellsville,NY,14895 +Whitesville,NY,14897 +Woodhull,NY,14898 +Elmira,NY,14901 +Elmira Heights,NY,14903 +Elmira,NY,14904 +Elmira,NY,14905 +Advance,NC,27006 +Ararat,NC,27007 +Belews Creek,NC,27009 +Boonville,NC,27011 +Clemmons,NC,27012 +Cleveland,NC,27013 +Danbury,NC,27016 +Dobson,NC,27017 +East Bend,NC,27018 +Germanton,NC,27019 +Hamptonville,NC,27020 +King,NC,27021 +Lawsonville,NC,27022 +Lewisville,NC,27023 +Lowgap,NC,27024 +Madison,NC,27025 +Mayodan,NC,27027 +Mocksville,NC,27028 +Mount Airy,NC,27030 +Pfafftown,NC,27040 +Pilot Mountain,NC,27041 +Pine Hall,NC,27042 +Pinnacle,NC,27043 +Rural Hall,NC,27045 +Sandy Ridge,NC,27046 +Siloam,NC,27047 +Stoneville,NC,27048 +Tobaccoville,NC,27050 +Walkertown,NC,27051 +Walnut Cove,NC,27052 +Westfield,NC,27053 +Woodleaf,NC,27054 +Yadkinville,NC,27055 +Winston Salem,NC,27101 +Winston Salem,NC,27103 +Winston Salem,NC,27104 +Winston Salem,NC,27105 +Winston Salem,NC,27106 +Winston Salem,NC,27107 +Winston Salem,NC,27127 +Farmer,NC,27203 +Bear Creek,NC,27207 +Bennett,NC,27208 +Biscoe,NC,27209 +Blanch,NC,27212 +Browns Summit,NC,27214 +Glen Raven,NC,27215 +Burlington,NC,27217 +Candor,NC,27229 +Cedar Grove,NC,27231 +Climax,NC,27233 +Colfax,NC,27235 +Denton,NC,27239 +Eagle Springs,NC,27242 +Efland,NC,27243 +Elon College,NC,27244 +Franklinville,NC,27248 +Gibsonville,NC,27249 +Goldston,NC,27252 +Graham,NC,27253 +Haw River,NC,27258 +High Point,NC,27260 +High Point,NC,27262 +Archdale,NC,27263 +High Point,NC,27265 +Hillsborough,NC,27278 +Jackson Springs,NC,27281 +Jamestown,NC,27282 +Julian,NC,27283 +Kernersville,NC,27284 +Eden,NC,27288 +Leasburg,NC,27291 +Lexington,NC,27292 +Liberty,NC,27298 +Linwood,NC,27299 +Mc Leansville,NC,27301 +Mebane,NC,27302 +Milton,NC,27305 +Mount Gilead,NC,27306 +Oak Ridge,NC,27310 +Pelham,NC,27311 +Pittsboro,NC,27312 +Pleasant Garden,NC,27313 +Prospect Hill,NC,27314 +Providence,NC,27315 +Coleridge,NC,27316 +Randleman,NC,27317 +Reidsville,NC,27320 +Robbins,NC,27325 +Ruffin,NC,27326 +Colon,NC,27330 +Seagrove,NC,27341 +Semora,NC,27343 +Siler City,NC,27344 +Snow Camp,NC,27349 +Sophia,NC,27350 +Staley,NC,27355 +Star,NC,27356 +Stokesdale,NC,27357 +Summerfield,NC,27358 +Thomasville,NC,27360 +Trinity,NC,27370 +Troy,NC,27371 +West End,NC,27376 +Whitsett,NC,27377 +Yanceyville,NC,27379 +Greensboro,NC,27401 +Greensboro,NC,27403 +Greensboro,NC,27405 +Greensboro,NC,27406 +Greensboro,NC,27407 +Greensboro,NC,27408 +Greensboro,NC,27409 +Greensboro,NC,27410 +Angier,NC,27501 +Apex,NC,27502 +Bahama,NC,27503 +Benson,NC,27504 +Broadway,NC,27505 +Bullock,NC,27507 +Butner,NC,27509 +Carrboro,NC,27510 +Cary,NC,27511 +Cary,NC,27513 +Chapel Hill,NC,27514 +Chapel Hill,NC,27516 +Clayton,NC,27520 +Coats,NC,27521 +Creedmoor,NC,27522 +Four Oaks,NC,27524 +Franklinton,NC,27525 +Fuquay Varina,NC,27526 +Garner,NC,27529 +Grantham,NC,27530 +Seymour Johnson,NC,27531 +Goldsboro,NC,27534 +Henderson,NC,27536 +Holly Springs,NC,27540 +Hurdle Mills,NC,27541 +Kenly,NC,27542 +Kittrell,NC,27544 +Knightdale,NC,27545 +Lillington,NC,27546 +Louisburg,NC,27549 +Macon,NC,27551 +Manson,NC,27553 +Middlesex,NC,27557 +Moncure,NC,27559 +Morrisville,NC,27560 +New Hill,NC,27562 +Norlina,NC,27563 +Oxford,NC,27565 +Princeton,NC,27569 +Rolesville,NC,27571 +Rougemont,NC,27572 +Roxboro,NC,27573 +Selma,NC,27576 +Smithfield,NC,27577 +Stem,NC,27581 +Timberlake,NC,27583 +Wake Forest,NC,27587 +Warrenton,NC,27589 +Wendell,NC,27591 +Willow Spring,NC,27592 +Youngsville,NC,27596 +Zebulon,NC,27597 +Raleigh,NC,27601 +Raleigh,NC,27603 +Raleigh,NC,27604 +Raleigh,NC,27605 +Raleigh,NC,27606 +Raleigh,NC,27607 +Raleigh,NC,27608 +Raleigh,NC,27609 +Raleigh,NC,27610 +Raleigh,NC,27612 +Raleigh,NC,27613 +Raleigh,NC,27614 +Raleigh,NC,27615 +Durham,NC,27701 +Durham,NC,27703 +Durham,NC,27704 +Durham,NC,27705 +Durham,NC,27706 +Durham,NC,27707 +Durham,NC,27712 +Research Triangl,NC,27713 +Rocky Mount,NC,27801 +Rocky Mount,NC,27803 +Wesleyan College,NC,27804 +Aulander,NC,27805 +Aurora,NC,27806 +Bailey,NC,27807 +Bath,NC,27808 +Battleboro,NC,27809 +Belhaven,NC,27810 +Bethel,NC,27812 +Blounts Creek,NC,27814 +Castalia,NC,27816 +Chocowinity,NC,27817 +Como,NC,27818 +Conway,NC,27820 +Edward,NC,27821 +Elm City,NC,27822 +Enfield,NC,27823 +Middletown,NC,27824 +Fairfield,NC,27826 +Farmville,NC,27828 +Fountain,NC,27829 +Eureka,NC,27830 +Garysburg,NC,27831 +Gaston,NC,27832 +Greenville,NC,27834 +Grimesland,NC,27837 +Halifax,NC,27839 +Hamilton,NC,27840 +Henrico,NC,27842 +Hobgood,NC,27843 +Hollister,NC,27844 +Jackson,NC,27845 +Jamesville,NC,27846 +Kelford,NC,27847 +Lasker,NC,27848 +Lewiston Woodvil,NC,27849 +Littleton,NC,27850 +Lucama,NC,27851 +Crisp,NC,27852 +Margarettsville,NC,27853 +Murfreesboro,NC,27855 +Nashville,NC,27856 +Oak City,NC,27857 +Greenville,NC,27858 +Palmyra,NC,27859 +Pantego,NC,27860 +Pendleton,NC,27862 +Pikeville,NC,27863 +Pinetops,NC,27864 +Pinetown,NC,27865 +Pleasant Hill,NC,27866 +Rich Square,NC,27869 +Roanoke Rapids,NC,27870 +Robersonville,NC,27871 +Roxobel,NC,27872 +Saratoga,NC,27873 +Scotland Neck,NC,27874 +Scranton,NC,27875 +Seaboard,NC,27876 +Sims,NC,27880 +Spring Hope,NC,27882 +Stantonsburg,NC,27883 +Stokes,NC,27884 +Swanquarter,NC,27885 +Tarboro,NC,27886 +Walstonburg,NC,27888 +Washington,NC,27889 +Weldon,NC,27890 +Whitakers,NC,27891 +Williamston,NC,27892 +Wilson,NC,27893 +George,NC,27897 +Elizabeth City,NC,27909 +Ahoskie,NC,27910 +Aydlett,NC,27916 +Barco,NC,27917 +Belvidere,NC,27919 +Camden,NC,27921 +Cofield,NC,27922 +Coinjock,NC,27923 +Colerain,NC,27924 +Columbia,NC,27925 +Corapeake,NC,27926 +Corolla,NC,27927 +Creswell,NC,27928 +Currituck,NC,27929 +Edenton,NC,27932 +Eure,NC,27935 +Gates,NC,27937 +Gatesville,NC,27938 +Grandy,NC,27939 +Harbinger,NC,27941 +Harrellsville,NC,27942 +Durants Neck,NC,27944 +Hobbsville,NC,27946 +Jarvisburg,NC,27947 +Kill Devil Hills,NC,27948 +Southern Shores,NC,27949 +Knotts Island,NC,27950 +East Lake,NC,27953 +Manteo,NC,27954 +Maple,NC,27956 +Merry Hill,NC,27957 +Moyock,NC,27958 +Nags Head,NC,27959 +Plymouth,NC,27962 +Point Harbor,NC,27964 +Poplar Branch,NC,27965 +Powells Point,NC,27966 +Roper,NC,27970 +Shawboro,NC,27973 +Shiloh,NC,27974 +South Mills,NC,27976 +Stumpy Point,NC,27978 +Sunbury,NC,27979 +Tyner,NC,27980 +Windsor,NC,27983 +Winton,NC,27986 +Albemarle,NC,28001 +Alexis,NC,28006 +Belmont,NC,28012 +Bessemer City,NC,28016 +Bostic,NC,28018 +Casar,NC,28020 +Cherryville,NC,28021 +China Grove,NC,28023 +Concord,NC,28025 +Concord,NC,28027 +Cramerton,NC,28032 +Crouse,NC,28033 +Dallas,NC,28034 +Cornelius,NC,28036 +Denver,NC,28037 +Ellenboro,NC,28040 +Alexander Mills,NC,28043 +Gastonia,NC,28052 +Gastonia,NC,28054 +Gastonia,NC,28056 +Gold Hill,NC,28071 +Grover,NC,28073 +Harrisburg,NC,28075 +Cornelius,NC,28078 +Indian Trail,NC,28079 +Iron Station,NC,28080 +Kannapolis,NC,28081 +Kannapolis,NC,28083 +Kings Mountain,NC,28086 +Landis,NC,28088 +Lawndale,NC,28090 +Lilesville,NC,28091 +Boger City,NC,28092 +Locust,NC,28097 +Lowell,NC,28098 +Marshville,NC,28103 +Stallings,NC,28105 +Midland,NC,28107 +Monroe,NC,28110 +Monroe,NC,28112 +Mooresboro,NC,28114 +Mooresville,NC,28115 +Morven,NC,28119 +Mount Holly,NC,28120 +Mount Pleasant,NC,28124 +Mount Ulla,NC,28125 +New London,NC,28127 +Norwood,NC,28128 +Oakboro,NC,28129 +Peachland,NC,28133 +Pineville,NC,28134 +Polkton,NC,28135 +Richfield,NC,28137 +Rockwell,NC,28138 +Rutherfordton,NC,28139 +Salisbury,NC,28144 +Salisbury,NC,28146 +Kingstown,NC,28150 +Shelby,NC,28152 +Spencer,NC,28159 +Spindale,NC,28160 +Stanfield,NC,28163 +Stanley,NC,28164 +Troutman,NC,28166 +Union Mills,NC,28167 +Vale,NC,28168 +Wadesboro,NC,28170 +Weddington,NC,28173 +Wingate,NC,28174 +Charlotte,NC,28202 +Charlotte,NC,28203 +Charlotte,NC,28204 +Charlotte,NC,28205 +Charlotte,NC,28206 +Charlotte,NC,28207 +Charlotte,NC,28208 +Charlotte,NC,28209 +Charlotte,NC,28210 +Charlotte,NC,28211 +Charlotte,NC,28212 +Charlotte,NC,28213 +Charlotte,NC,28214 +Charlotte,NC,28215 +Charlotte,NC,28216 +Charlotte,NC,28217 +Charlotte,NC,28226 +Charlotte,NC,28227 +Charlotte,NC,28262 +Charlotte,NC,28269 +Charlotte,NC,28270 +Charlotte,NC,28273 +Charlotte,NC,28277 +Charlotte,NC,28278 +East Fayettevill,NC,28301 +Bonnie Doone,NC,28303 +Fayetteville,NC,28304 +Fayetteville,NC,28305 +Fayetteville,NC,28306 +Fort Bragg,NC,28307 +Fayetteville,NC,28311 +Fayetteville,NC,28314 +Aberdeen,NC,28315 +Autryville,NC,28318 +Bladenboro,NC,28320 +Bunnlevel,NC,28323 +Johnsonville,NC,28326 +Carthage,NC,28327 +Clinton,NC,28328 +Dudley,NC,28333 +Dunn,NC,28334 +Elizabethtown,NC,28337 +Ellerbe,NC,28338 +Erwin,NC,28339 +Mcdonald,NC,28340 +Faison,NC,28341 +Gibson,NC,28343 +Godwin,NC,28344 +Hamlet,NC,28345 +Hoffman,NC,28347 +Hope Mills,NC,28348 +Kenansville,NC,28349 +Laurel Hill,NC,28351 +Laurinburg,NC,28352 +Linden,NC,28356 +Lumber Bridge,NC,28357 +Lumberton,NC,28358 +Marston,NC,28363 +Maxton,NC,28364 +Mount Olive,NC,28365 +Newton Grove,NC,28366 +Orrum,NC,28369 +Parkton,NC,28371 +Pembroke,NC,28372 +Pinehurst,NC,28374 +Raeford,NC,28376 +Red Springs,NC,28377 +Rockingham,NC,28379 +Roseboro,NC,28382 +Rowland,NC,28383 +Saint Pauls,NC,28384 +Salemburg,NC,28385 +Shannon,NC,28386 +Southern Pines,NC,28387 +Spring Lake,NC,28390 +Stedman,NC,28391 +Tar Heel,NC,28392 +Turkey,NC,28393 +Vass,NC,28394 +Wade,NC,28395 +Wagram,NC,28396 +Bowdens,NC,28398 +White Oak,NC,28399 +Cape Fear,NC,28401 +Wilmington,NC,28403 +Ogden,NC,28405 +Wilmington,NC,28409 +Wilmington,NC,28412 +Ash,NC,28420 +Atkinson,NC,28421 +Bolivia,NC,28422 +Bolton,NC,28423 +Burgaw,NC,28425 +Carolina Beach,NC,28428 +Castle Hayne,NC,28429 +Cerro Gordo,NC,28430 +Chadbourn,NC,28431 +Clarendon,NC,28432 +Clarkton,NC,28433 +Council,NC,28434 +Currie,NC,28435 +Delco,NC,28436 +Evergreen,NC,28438 +Fair Bluff,NC,28439 +Garland,NC,28441 +Hallsboro,NC,28442 +Hampstead,NC,28443 +Harrells,NC,28444 +Surf City,NC,28445 +Ivanhoe,NC,28447 +Kelly,NC,28448 +Kure Beach,NC,28449 +Lake Waccamaw,NC,28450 +Leland,NC,28451 +Longwood,NC,28452 +Magnolia,NC,28453 +Maple Hill,NC,28454 +Nakina,NC,28455 +Riegelwood,NC,28456 +Rocky Point,NC,28457 +Rose Hill,NC,28458 +Shallotte,NC,28459 +Sneads Ferry,NC,28460 +Boiling Spring L,NC,28461 +Holden Beach,NC,28462 +Tabor City,NC,28463 +Teachey,NC,28464 +Oak Island,NC,28465 +Wallace,NC,28466 +Calabash,NC,28467 +Sunset Beach,NC,28468 +Ocean Isle Beach,NC,28469 +Watha,NC,28471 +Whiteville,NC,28472 +Willard,NC,28478 +Winnabow,NC,28479 +Wrightsville Bea,NC,28480 +Kinston,NC,28501 +Albertson,NC,28508 +Arapahoe,NC,28510 +Atlantic,NC,28511 +Pine Knoll Shore,NC,28512 +Ayden,NC,28513 +Bayboro,NC,28515 +Beaufort,NC,28516 +Beulaville,NC,28518 +Cedar Island,NC,28520 +Chinquapin,NC,28521 +Cove City,NC,28523 +Deep Run,NC,28525 +Dover,NC,28526 +Ernul,NC,28527 +Gloucester,NC,28528 +Grantsboro,NC,28529 +Grifton,NC,28530 +Harkers Island,NC,28531 +Havelock,NC,28532 +Hobucken,NC,28537 +Hookerton,NC,28538 +Hubert,NC,28539 +Jacksonville,NC,28540 +Camp Lejeune,NC,28542 +Tarawa Terrace,NC,28543 +Midway Park,NC,28544 +Jacksonville,NC,28546 +La Grange,NC,28551 +Lowland,NC,28552 +Marshallberg,NC,28553 +Maysville,NC,28555 +Merritt,NC,28556 +Morehead City,NC,28557 +New Bern,NC,28560 +New Bern,NC,28562 +Newport,NC,28570 +Oriental,NC,28571 +Pink Hill,NC,28572 +Pollocksville,NC,28573 +Richlands,NC,28574 +Sealevel,NC,28577 +Seven Springs,NC,28578 +Smyrna,NC,28579 +Snow Hill,NC,28580 +Stacy,NC,28581 +Stella,NC,28582 +Swansboro,NC,28584 +Trenton,NC,28585 +Vanceboro,NC,28586 +Vandemere,NC,28587 +Winterville,NC,28590 +Emerald Isle,NC,28594 +Hickory,NC,28601 +Hickory,NC,28602 +Banner Elk,NC,28604 +Blowing Rock,NC,28605 +Boomer,NC,28606 +Boone,NC,28607 +Catawba,NC,28609 +Claremont,NC,28610 +Collettsville,NC,28611 +Connellys Spring,NC,28612 +Conover,NC,28613 +Creston,NC,28615 +Crumpler,NC,28617 +Deep Gap,NC,28618 +Elkin,NC,28621 +Elk Park,NC,28622 +Ennice,NC,28623 +Ferguson,NC,28624 +Fleetwood,NC,28626 +Glade Valley,NC,28627 +Granite Falls,NC,28630 +Grassy Creek,NC,28631 +Harmony,NC,28634 +Hays,NC,28635 +Hiddenite,NC,28636 +Hudson,NC,28638 +Jefferson,NC,28640 +Jonesville,NC,28642 +Lansing,NC,28643 +Laurel Springs,NC,28644 +Lenoir,NC,28645 +Longisland,NC,28648 +Mc Grady,NC,28649 +Maiden,NC,28650 +Millers Creek,NC,28651 +Moravian Falls,NC,28654 +Morganton,NC,28655 +Frank,NC,28657 +Newton,NC,28658 +North Wilkesboro,NC,28659 +Olin,NC,28660 +Purlear,NC,28665 +Roaring Gap,NC,28668 +Roaring River,NC,28669 +Ronda,NC,28670 +Sherrills Ford,NC,28673 +Sparta,NC,28675 +State Road,NC,28676 +Statesville,NC,28677 +Stony Point,NC,28678 +Sugar Grove,NC,28679 +Taylorsville,NC,28681 +Terrell,NC,28682 +Thurmond,NC,28683 +Todd,NC,28684 +Traphill,NC,28685 +Triplett,NC,28686 +Union Grove,NC,28689 +Valdese,NC,28690 +Valle Crucis,NC,28691 +Vilas,NC,28692 +Warrensville,NC,28693 +West Jefferson,NC,28694 +Wilkesboro,NC,28697 +Zionville,NC,28698 +Alexander,NC,28701 +Almond,NC,28702 +Aquone,NC,28703 +Arden,NC,28704 +Bakersville,NC,28705 +Balsam Grove,NC,28708 +Barnardsville,NC,28709 +Black Mountain S,NC,28711 +Brevard,NC,28712 +Bryson City,NC,28713 +Burnsville,NC,28714 +Candler,NC,28715 +Canton,NC,28716 +Cashiers,NC,28717 +Cherokee,NC,28719 +Clyde,NC,28721 +Columbus,NC,28722 +Cullowhee,NC,28723 +East Flat Rock,NC,28726 +Etowah,NC,28729 +Fairview,NC,28730 +Flat Rock,NC,28731 +Fletcher,NC,28732 +Fontana Dam,NC,28733 +Franklin,NC,28734 +Gerton,NC,28735 +Glenville,NC,28736 +Hazelwood,NC,28738 +Hendersonville,NC,28739 +Greenmountain,NC,28740 +Highlands,NC,28741 +Horse Shoe,NC,28742 +Hot Springs,NC,28743 +Lake Junaluska,NC,28745 +Lake Lure,NC,28746 +Lake Toxaway,NC,28747 +Leicester,NC,28748 +Maggie Valley,NC,28751 +Marion,NC,28752 +Walnut,NC,28753 +Mars Hill,NC,28754 +Mill Spring,NC,28756 +Nebo,NC,28761 +Old Fort,NC,28762 +Otto,NC,28763 +Penrose,NC,28766 +Pisgah Forest,NC,28768 +Robbinsville,NC,28771 +Rosman,NC,28772 +Saluda,NC,28773 +Sapphire,NC,28774 +Scaly Mountain,NC,28775 +Spruce Pine,NC,28777 +Warren Wilson Co,NC,28778 +Sylva,NC,28779 +Tapoco,NC,28780 +Topton,NC,28781 +Tryon,NC,28782 +Tuckasegee,NC,28783 +Waynesville,NC,28786 +Weaverville,NC,28787 +Whittier,NC,28789 +Zirconia,NC,28790 +Hendersonville,NC,28792 +Asheville,NC,28801 +Asheville,NC,28803 +Asheville,NC,28804 +Asheville,NC,28805 +Asheville,NC,28806 +Andrews,NC,28901 +Brasstown,NC,28902 +Hayesville,NC,28904 +Marble,NC,28905 +Unaka,NC,28906 +Warne,NC,28909 +Absaraka,ND,58002 +Alice,ND,58003 +Amenia,ND,58004 +Argusville,ND,58005 +Arthur,ND,58006 +Ayr,ND,58007 +Barney,ND,58008 +Blanchard,ND,58009 +Buffalo,ND,58011 +Casselton,ND,58012 +Cayuga,ND,58013 +Chaffee,ND,58014 +Christine,ND,58015 +Clifford,ND,58016 +Brampton,ND,58017 +Colfax,ND,58018 +Davenport,ND,58021 +Enderlin,ND,58027 +Erie,ND,58029 +Fairmount,ND,58030 +Fingal,ND,58031 +Forman,ND,58032 +Englevale,ND,58033 +Galesburg,ND,58035 +Gardner,ND,58036 +Grandin,ND,58038 +Great Bend,ND,58039 +Crete,ND,58040 +Hankinson,ND,58041 +Prosper,ND,58042 +Havana,ND,58043 +Kelso,ND,58045 +Colgate,ND,58046 +Hickson,ND,58047 +Hunter,ND,58048 +Hastings,ND,58049 +Kindred,ND,58051 +Leonard,ND,58052 +Geneseo,ND,58053 +Elliott,ND,58054 +Luverne,ND,58056 +Mcleod,ND,58057 +Mantador,ND,58058 +Durbin,ND,58059 +Delamere,ND,58060 +Mooreton,ND,58061 +Nome,ND,58062 +Oriska,ND,58063 +Page,ND,58064 +Rutland,ND,58067 +Sheldon,ND,58068 +Stirum,ND,58069 +Tower City,ND,58071 +Valley City,ND,58072 +Dwight,ND,58075 +Walcott,ND,58077 +Riverside,ND,58078 +Embden,ND,58079 +Wyndmere,ND,58081 +North River,ND,58102 +Fargo,ND,58103 +Briarwood,ND,58104 +Grand Forks,ND,58201 +Grand Forks,ND,58203 +Grand Forks,ND,58205 +Adams,ND,58210 +Aneta,ND,58212 +Ardoch,ND,58213 +Arvilla,ND,58214 +Bathgate,ND,58216 +Buxton,ND,58218 +Caledonia,ND,58219 +Concrete,ND,58220 +Crystal,ND,58222 +Cummings,ND,58223 +Dahlen,ND,58224 +Bowesmont,ND,58225 +Gardar,ND,58227 +Emerado,ND,58228 +Fairdale,ND,58229 +Finley,ND,58230 +Fordville,ND,58231 +Forest River,ND,58233 +Honeyford,ND,58235 +Nash,ND,58237 +Hamilton,ND,58238 +Hannah,ND,58239 +Hatton,ND,58240 +Hensel,ND,58241 +Hoople,ND,58243 +Orr,ND,58244 +58245,ND,58245 +58246,ND,58246 +Langdon,ND,58249 +Lankin,ND,58250 +Mccanna,ND,58251 +Kloten,ND,58254 +Maida,ND,58255 +Manvel,ND,58256 +Mayville,ND,58257 +Mekinock,ND,58258 +Whitman,ND,58259 +Milton,ND,58260 +Voss,ND,58261 +Mountain,ND,58262 +58264,ND,58264 +Neche,ND,58265 +Niagara,ND,58266 +Kempton,ND,58267 +Osnabrock,ND,58269 +Park River,ND,58270 +Joliette,ND,58271 +Petersburg,ND,58272 +Pisek,ND,58273 +Portland,ND,58274 +Reynolds,ND,58275 +Saint Thomas,ND,58276 +Sharon,ND,58277 +Thompson,ND,58278 +Wales,ND,58281 +Backoo,ND,58282 +Devils Lake,ND,58301 +Loma,ND,58311 +Barton,ND,58315 +Belcourt,ND,58316 +Bisbee,ND,58317 +Bottineau,ND,58318 +Bremen,ND,58319 +Brinsmade,ND,58320 +Brocket,ND,58321 +Calvin,ND,58323 +Maza,ND,58324 +Churchs Ferry,ND,58325 +Southam,ND,58327 +Doyon,ND,58328 +San Haven,ND,58329 +Edmore,ND,58330 +Egeland,ND,58331 +Fillmore,ND,58332 +Hamberg,ND,58337 +Hampden,ND,58338 +Hansboro,ND,58339 +Manfred,ND,58341 +Heimdal,ND,58342 +Knox,ND,58343 +Mapes,ND,58344 +Lawton,ND,58345 +Harlow,ND,58346 +Flora,ND,58348 +Minnewaukan,ND,58351 +Calio,ND,58352 +Mylo,ND,58353 +Brantford,ND,58356 +Oberon,ND,58357 +Overly,ND,58360 +Pekin,ND,58361 +Penn,ND,58362 +Perth,ND,58363 +Rocklake,ND,58365 +Nanson,ND,58366 +Rolla,ND,58367 +Pleasant Lake,ND,58368 +Saint John,ND,58369 +Saint Michael,ND,58370 +Sarles,ND,58372 +58373,ND,58373 +Sheyenne,ND,58374 +Starkweather,ND,58377 +Hamar,ND,58380 +Warwick,ND,58381 +Webster,ND,58382 +Willow City,ND,58384 +Wolford,ND,58385 +Baker,ND,58386 +Eldridge,ND,58401 +Alfred,ND,58411 +Arena,ND,58412 +Ashley,ND,58413 +Berlin,ND,58415 +Binford,ND,58416 +Bowdon,ND,58418 +Buchanan,ND,58420 +Bordulac,ND,58421 +Emrick,ND,58422 +Chaseley,ND,58423 +Windsor,ND,58424 +Cooperstown,ND,58425 +Courtenay,ND,58426 +Dawson,ND,58428 +Sibley,ND,58429 +Denhoff,ND,58430 +Dickey,ND,58431 +Eckelson,ND,58432 +Merricourt,ND,58433 +Ellendale,ND,58436 +Fessenden,ND,58438 +Forbes,ND,58439 +Fredonia,ND,58440 +Fullerton,ND,58441 +Gackle,ND,58442 +Juanita,ND,58443 +Goodrich,ND,58444 +Grace City,ND,58445 +Walum,ND,58448 +Heaton,ND,58450 +Hurdsfield,ND,58451 +Nortonville,ND,58454 +Kensal,ND,58455 +Kulm,ND,58456 +Grand Rapids,ND,58458 +Lehr,ND,58460 +Litchville,ND,58461 +Mcclusky,ND,58463 +Mchenry,ND,58464 +Manfred,ND,58465 +Marion,ND,58466 +Medina,ND,58467 +Monango,ND,58471 +Adrian,ND,58472 +Guelph,ND,58474 +Pettibone,ND,58475 +Edmunds,ND,58476 +Regan,ND,58477 +Lake Williams,ND,58478 +Leal,ND,58479 +Sanborn,ND,58480 +Spiritwood,ND,58481 +Steele,ND,58482 +Streeter,ND,58483 +Sutton,ND,58484 +Sykeston,ND,58486 +Tappen,ND,58487 +Tuttle,ND,58488 +Venturia,ND,58489 +Verona,ND,58490 +Wimbledon,ND,58492 +Wing,ND,58494 +Burnstad,ND,58495 +Woodworth,ND,58496 +Ypsilanti,ND,58497 +Bismarck,ND,58501 +Lincoln,ND,58504 +Almont,ND,58520 +Baldwin,ND,58521 +Beulah,ND,58523 +Braddock,ND,58524 +Cannon Ball,ND,58528 +Carson,ND,58529 +Fort Clark,ND,58530 +Coleharbor,ND,58531 +Driscoll,ND,58532 +Heil,ND,58533 +Lark,ND,58535 +Huff,ND,58537 +Fort Yates,ND,58538 +Emmet,ND,58540 +Golden Valley,ND,58541 +Hague,ND,58542 +Hazelton,ND,58544 +Hazen,ND,58545 +Kintyre,ND,58549 +Leith,ND,58551 +Temvik,ND,58552 +Mckenzie,ND,58553 +Mandan,ND,58554 +Menoken,ND,58558 +Mercer,ND,58559 +Moffit,ND,58560 +Napoleon,ND,58561 +Bentley,ND,58562 +Hannover,ND,58563 +Raleigh,ND,58564 +Riverdale,ND,58565 +Saint Anthony,ND,58566 +Selfridge,ND,58568 +Shields,ND,58569 +Breien,ND,58570 +Stanton,ND,58571 +Sterling,ND,58572 +Strasburg,ND,58573 +Turtle Lake,ND,58575 +Underwood,ND,58576 +Washburn,ND,58577 +Wilton,ND,58579 +Zap,ND,58580 +Zeeland,ND,58581 +New Hradec,ND,58601 +Amidon,ND,58620 +Beach,ND,58621 +Fryburg,ND,58622 +Bowman,ND,58623 +Dodge,ND,58625 +Dunn Center,ND,58626 +Gorham,ND,58627 +Gladstone,ND,58630 +Glen Ullin,ND,58631 +Golva,ND,58632 +Grassy Butte,ND,58634 +Werner,ND,58636 +Hebron,ND,58638 +Bucyrus,ND,58639 +Killdeer,ND,58640 +Lefor,ND,58641 +Manning,ND,58642 +Marmarth,ND,58643 +Medora,ND,58645 +Burt,ND,58646 +New England,ND,58647 +Reeder,ND,58649 +Regent,ND,58650 +Rhame,ND,58651 +Richardton,ND,58652 +Gascoyne,ND,58653 +Sentinel Butte,ND,58654 +South Heart,ND,58655 +Taylor,ND,58656 +Trotters,ND,58657 +Minot,ND,58701 +Minot Afb,ND,58704 +Anamoose,ND,58710 +Antler,ND,58711 +Balfour,ND,58712 +Bantry,ND,58713 +Benedict,ND,58716 +Blaisdell,ND,58718 +Coteau,ND,58721 +Burlington,ND,58722 +Butte,ND,58723 +Carpio,ND,58725 +Larson,ND,58727 +Crosby,ND,58730 +Deering,ND,58731 +Des Lacs,ND,58733 +Donnybrook,ND,58734 +Douglas,ND,58735 +Drake,ND,58736 +Northgate,ND,58737 +Foxholm,ND,58738 +Gardena,ND,58739 +Wolseth,ND,58740 +Granville,ND,58741 +Karlsruhe,ND,58744 +Coulee,ND,58746 +Kief,ND,58747 +Kramer,ND,58748 +Lansford,ND,58750 +Lignite,ND,58752 +Mcgregor,ND,58755 +Makoti,ND,58756 +Mandaree,ND,58757 +Martin,ND,58758 +Max,ND,58759 +Maxbass,ND,58760 +Loraine,ND,58761 +Newburg,ND,58762 +Charlson,ND,58763 +Noonan,ND,58765 +Norwich,ND,58768 +Palermo,ND,58769 +Parshall,ND,58770 +Plaza,ND,58771 +Portal,ND,58772 +Battleview,ND,58773 +Roseglen,ND,58775 +Ross,ND,58776 +Ruso,ND,58778 +Raub,ND,58779 +Sawyer,ND,58781 +Sherwood,ND,58782 +Carbury,ND,58783 +Belden,ND,58784 +Surrey,ND,58785 +Tolley,ND,58787 +Berwick,ND,58788 +Upham,ND,58789 +Velva,ND,58790 +Bergen,ND,58792 +Westhope,ND,58793 +White Earth,ND,58794 +Hamlet,ND,58795 +Bonetraill,ND,58801 +Appam,ND,58830 +Rawson,ND,58831 +Ambrose,ND,58833 +Arnegard,ND,58835 +Cartwright,ND,58838 +Springbrook,ND,58843 +Colgan,ND,58844 +Alkabo,ND,58845 +Keene,ND,58847 +Wheelock,ND,58849 +Temple,ND,58852 +Trenton,ND,58853 +Watford City,ND,58854 +Zahl,ND,58856 +Alexandria,OH,43001 +Amlin,OH,43002 +Ashley,OH,43003 +Blacklick,OH,43004 +Brinkhaven,OH,43006 +Cable,OH,43009 +Centerburg,OH,43011 +Croton,OH,43013 +Danville,OH,43014 +Delaware,OH,43015 +Dublin,OH,43017 +Fredericktown,OH,43019 +Galena,OH,43021 +Gambier,OH,43022 +Granville,OH,43023 +Hebron,OH,43025 +Hilliard,OH,43026 +Howard,OH,43028 +Irwin,OH,43029 +Johnstown,OH,43031 +Magnetic Springs,OH,43036 +Martinsburg,OH,43037 +Marysville,OH,43040 +Mechanicsburg,OH,43044 +Milford Center,OH,43045 +Millersport,OH,43046 +Mount Vernon,OH,43050 +New Albany,OH,43054 +Newark,OH,43055 +Heath,OH,43056 +North Lewisburg,OH,43060 +Ostrander,OH,43061 +Pataskala,OH,43062 +Plain City,OH,43064 +Shawnee Hills,OH,43065 +Radnor,OH,43066 +Raymond,OH,43067 +Reynoldsburg,OH,43068 +Saint Louisville,OH,43071 +Saint Paris,OH,43072 +Sunbury,OH,43074 +Thornville,OH,43076 +Urbana,OH,43078 +Utica,OH,43080 +Westerville,OH,43081 +Woodstock,OH,43084 +Worthington,OH,43085 +Amanda,OH,43102 +Ashville,OH,43103 +Baltimore,OH,43105 +Bloomingburg,OH,43106 +Hide A Way Hills,OH,43107 +Canal Winchester,OH,43110 +Carroll,OH,43112 +Circleville,OH,43113 +Clarksburg,OH,43115 +Galloway,OH,43119 +Grove City,OH,43123 +Groveport,OH,43125 +Jeffersonville,OH,43128 +Lancaster,OH,43130 +Laurelville,OH,43135 +Lockbourne,OH,43137 +Logan,OH,43138 +London,OH,43140 +Mount Sterling,OH,43143 +New Holland,OH,43145 +Orient,OH,43146 +Pickerington,OH,43147 +Pleasantville,OH,43148 +Rockbridge,OH,43149 +Rushville,OH,43150 +South Bloomingvi,OH,43152 +South Solon,OH,43153 +Stoutsville,OH,43154 +Sugar Grove,OH,43155 +Washington Court,OH,43160 +West Jefferson,OH,43162 +Williamsport,OH,43164 +Columbus,OH,43201 +Columbus,OH,43202 +Columbus,OH,43203 +Columbus,OH,43204 +Columbus,OH,43205 +Columbus,OH,43206 +Columbus,OH,43207 +Bexley,OH,43209 +Columbus,OH,43210 +Columbus,OH,43211 +Columbus,OH,43212 +Whitehall,OH,43213 +Columbus,OH,43214 +Columbus,OH,43215 +Columbus,OH,43217 +Shepard,OH,43219 +Columbus,OH,43220 +Upper Arlington,OH,43221 +Columbus,OH,43222 +Columbus,OH,43223 +Columbus,OH,43224 +Columbus,OH,43227 +Lincoln Village,OH,43228 +Columbus,OH,43229 +Gahanna,OH,43230 +Columbus,OH,43231 +Columbus,OH,43232 +West Worthington,OH,43235 +Marion,OH,43302 +Belle Center,OH,43310 +Bellefontaine,OH,43311 +Caledonia,OH,43314 +Cardington,OH,43315 +Carey,OH,43316 +De Graff,OH,43318 +East Liberty,OH,43319 +Edison,OH,43320 +Fulton,OH,43321 +Harpster,OH,43323 +Huntsville,OH,43324 +Kenton,OH,43326 +Lakeview,OH,43331 +La Rue,OH,43332 +Lewistown,OH,43333 +Marengo,OH,43334 +Martel,OH,43335 +Morral,OH,43337 +Mount Gilead,OH,43338 +Mount Victory,OH,43340 +New Bloomington,OH,43341 +Prospect,OH,43342 +Quincy,OH,43343 +Richwood,OH,43344 +Ridgeway,OH,43345 +Roundhead,OH,43346 +Rushsylvania,OH,43347 +Russells Point,OH,43348 +Sparta,OH,43350 +Upper Sandusky,OH,43351 +Waldo,OH,43356 +West Liberty,OH,43357 +West Mansfield,OH,43358 +Wharton,OH,43359 +Zanesfield,OH,43360 +Bowling Green,OH,43402 +Bradner,OH,43406 +Burgoon,OH,43407 +Clyde,OH,43410 +Curtice,OH,43412 +Cygnet,OH,43413 +Elmore,OH,43416 +Fremont,OH,43420 +Genoa,OH,43430 +Gibsonburg,OH,43431 +Elliston,OH,43432 +Millersville,OH,43435 +Isle Saint Georg,OH,43436 +Kelleys Island,OH,43438 +Lacarne,OH,43439 +Lakeside,OH,43440 +Lindsey,OH,43442 +Luckey,OH,43443 +Bono,OH,43445 +Millbury,OH,43447 +Oak Harbor,OH,43449 +Pemberville,OH,43450 +Portage,OH,43451 +Port Clinton,OH,43452 +Put In Bay,OH,43456 +Risingsun,OH,43457 +Rossford,OH,43460 +Rudolph,OH,43462 +Vickery,OH,43464 +Walbridge,OH,43465 +Wayne,OH,43466 +Woodville,OH,43469 +Alvordton,OH,43501 +Archbold,OH,43502 +Berkey,OH,43504 +Bryan,OH,43506 +Custar,OH,43511 +Defiance,OH,43512 +Delta,OH,43515 +Deshler,OH,43516 +Edgerton,OH,43517 +Edon,OH,43518 +Fayette,OH,43521 +Grand Rapids,OH,43522 +Hamler,OH,43524 +Haskins,OH,43525 +Hicksville,OH,43526 +Holgate,OH,43527 +Holland,OH,43528 +Liberty Center,OH,43532 +Lyons,OH,43533 +Mc Clure,OH,43534 +Malinta,OH,43535 +Mark Center,OH,43536 +Maumee,OH,43537 +Metamora,OH,43540 +Monclova,OH,43542 +Montpelier,OH,43543 +Napoleon,OH,43545 +New Bavaria,OH,43548 +Ney,OH,43549 +Perrysburg,OH,43551 +Pioneer,OH,43554 +Sherwood,OH,43556 +Stryker,OH,43557 +Swanton,OH,43558 +Sylvania,OH,43560 +Waterville,OH,43566 +Wauseon,OH,43567 +Weston,OH,43569 +West Unity,OH,43570 +Whitehouse,OH,43571 +Toledo,OH,43602 +Toledo,OH,43604 +Oregon,OH,43605 +Toledo,OH,43606 +Toledo,OH,43607 +Toledo,OH,43608 +Toledo,OH,43609 +Toledo,OH,43610 +Toledo,OH,43611 +Toledo,OH,43612 +Toledo,OH,43613 +Toledo,OH,43614 +Toledo,OH,43615 +Oregon,OH,43616 +Toledo,OH,43617 +Oregon,OH,43618 +Northwood,OH,43619 +Toledo,OH,43620 +Toledo,OH,43623 +Toledo,OH,43624 +Sonora,OH,43701 +Somerton,OH,43713 +Beallsville,OH,43716 +Belmont,OH,43718 +Bethesda,OH,43719 +Blue Rock,OH,43720 +Byesville,OH,43723 +Caldwell,OH,43724 +Claysville,OH,43725 +Chandlersville,OH,43727 +Chesterhill,OH,43728 +Hemlock,OH,43730 +Crooksville,OH,43731 +Cumberland,OH,43732 +Duncan Falls,OH,43734 +Glenford,OH,43739 +Hopewell,OH,43746 +Jerusalem,OH,43747 +Junction City,OH,43748 +Guernsey,OH,43749 +Lewisville,OH,43754 +Lore City,OH,43755 +Mc Connelsville,OH,43756 +Malta,OH,43758 +Mount Perry,OH,43760 +New Concord,OH,43762 +New Lexington,OH,43764 +New Straitsville,OH,43766 +Norwich,OH,43767 +Philo,OH,43771 +Pleasant City,OH,43772 +Quaker City,OH,43773 +Roseville,OH,43777 +Salesville,OH,43778 +Sarahsville,OH,43779 +Senecaville,OH,43780 +Shawnee,OH,43782 +Somerset,OH,43783 +Pennsville,OH,43787 +Summerfield,OH,43788 +Antioch,OH,43793 +Adamsville,OH,43802 +Baltic,OH,43804 +Conesville,OH,43811 +Coshocton,OH,43812 +Adams Mills,OH,43821 +Frazeysburg,OH,43822 +Fresno,OH,43824 +Nashport,OH,43830 +Newcomerstown,OH,43832 +Port Washington,OH,43837 +Stone Creek,OH,43840 +Walhonding,OH,43843 +Warsaw,OH,43844 +West Lafayette,OH,43845 +Adena,OH,43901 +Alledonia,OH,43902 +Amsterdam,OH,43903 +Bellaire,OH,43906 +Moorefield,OH,43907 +Bergholz,OH,43908 +Bloomingdale,OH,43910 +Bridgeport,OH,43912 +Brilliant,OH,43913 +Clarington,OH,43915 +Dillonvale,OH,43917 +Calcutta,OH,43920 +Hammondsville,OH,43930 +Irondale,OH,43932 +Armstrong Mills,OH,43933 +Martins Ferry,OH,43935 +Mingo Junction,OH,43938 +Powhatan Point,OH,43942 +Rayland,OH,43943 +Richmond,OH,43944 +Salineville,OH,43945 +Sardis,OH,43946 +Shadyside,OH,43947 +Saint Clairsvill,OH,43950 +Wintersville,OH,43952 +Tiltonsville,OH,43963 +Toronto,OH,43964 +Wellsville,OH,43968 +Yorkville,OH,43971 +Freeport,OH,43973 +Hopedale,OH,43976 +Flushing,OH,43977 +Piedmont,OH,43983 +Jewett,OH,43986 +Scio,OH,43988 +South Amherst,OH,44001 +Andover,OH,44003 +Ashtabula,OH,44004 +Austinburg,OH,44010 +Avon,OH,44011 +Avon Lake,OH,44012 +Berea,OH,44017 +Burton,OH,44021 +Chagrin Falls,OH,44022 +Chardon,OH,44024 +Chesterland,OH,44026 +Columbia Station,OH,44028 +Conneaut,OH,44030 +Dorset,OH,44032 +Elyria,OH,44035 +North Ridgeville,OH,44039 +Gates Mills,OH,44040 +Geneva,OH,44041 +Grafton,OH,44044 +Huntsburg,OH,44046 +Jefferson,OH,44047 +Kingsville,OH,44048 +Lagrange,OH,44050 +Lorain,OH,44052 +Lorain,OH,44053 +Sheffield Lake,OH,44054 +Lorain,OH,44055 +Macedonia,OH,44056 +Madison,OH,44057 +Mentor,OH,44060 +Middlefield,OH,44062 +Montville,OH,44064 +Newbury,OH,44065 +Northfield,OH,44067 +North Olmsted,OH,44070 +Novelty,OH,44072 +Oberlin,OH,44074 +East Orwell,OH,44076 +Fairport Harbor,OH,44077 +Perry,OH,44081 +Pierpont,OH,44082 +Roaming Shores,OH,44084 +Roaming Shores,OH,44085 +Thompson,OH,44086 +Twinsburg,OH,44087 +Vermilion,OH,44089 +Wellington,OH,44090 +Wickliffe,OH,44092 +Williamsfield,OH,44093 +Willoughby,OH,44094 +Willowick,OH,44095 +Windsor,OH,44099 +Cleveland,OH,44102 +Cleveland,OH,44103 +Cleveland,OH,44104 +Cleveland,OH,44105 +Cleveland,OH,44106 +Edgewater,OH,44107 +Cleveland,OH,44108 +Cleveland,OH,44109 +Cleveland,OH,44110 +Cleveland,OH,44111 +East Cleveland,OH,44112 +Cleveland,OH,44113 +Cleveland,OH,44114 +Cleveland,OH,44115 +Rocky River,OH,44116 +Euclid,OH,44117 +Cleveland Height,OH,44118 +Cleveland,OH,44119 +Cleveland,OH,44120 +South Euclid,OH,44121 +Beachwood,OH,44122 +Shore,OH,44123 +Lyndhurst Mayfie,OH,44124 +Garfield Heights,OH,44125 +Fairview Park,OH,44126 +Cleveland,OH,44127 +Cleveland,OH,44128 +Parma,OH,44129 +Midpark,OH,44130 +Independence,OH,44131 +Noble,OH,44132 +North Royalton,OH,44133 +Parma,OH,44134 +Cleveland,OH,44135 +Strongsville,OH,44136 +Maple Heights,OH,44137 +Olmsted Falls,OH,44138 +Solon,OH,44139 +Bay Village,OH,44140 +Brecksville,OH,44141 +Brookpark,OH,44142 +Richmond Heights,OH,44143 +Brooklyn,OH,44144 +Westlake,OH,44145 +Bedford,OH,44146 +Broadview Height,OH,44147 +Atwater,OH,44201 +Reminderville,OH,44202 +Norton,OH,44203 +Brunswick,OH,44212 +Burbank,OH,44214 +Chippewa Lake,OH,44215 +Clinton,OH,44216 +Creston,OH,44217 +Cuyahoga Falls,OH,44221 +Cuyahoga Falls,OH,44223 +Stow,OH,44224 +Doylestown,OH,44230 +Garrettsville,OH,44231 +Hinckley,OH,44233 +Hiram,OH,44234 +Homerville,OH,44235 +Hudson,OH,44236 +Kent,OH,44240 +Streetsboro,OH,44241 +Litchfield,OH,44253 +Lodi,OH,44254 +Mantua,OH,44255 +Medina,OH,44256 +Mogadore,OH,44260 +Munroe Falls,OH,44262 +Peninsula,OH,44264 +Ravenna,OH,44266 +Rittman,OH,44270 +Rootstown,OH,44272 +Seville,OH,44273 +Spencer,OH,44275 +Sterling,OH,44276 +Tallmadge,OH,44278 +Valley City,OH,44280 +Wadsworth,OH,44281 +Richfield,OH,44286 +West Salem,OH,44287 +Windham,OH,44288 +Akron,OH,44301 +Akron,OH,44302 +Akron,OH,44303 +Akron,OH,44304 +Akron,OH,44305 +Akron,OH,44306 +Akron,OH,44307 +Akron,OH,44308 +Akron,OH,44310 +Akron,OH,44311 +Akron,OH,44312 +Akron,OH,44313 +Akron,OH,44314 +Akron,OH,44319 +Akron,OH,44320 +Copley,OH,44321 +Fairlawn,OH,44333 +Berlin Center,OH,44401 +Bristolville,OH,44402 +Brookfield,OH,44403 +Burghill,OH,44404 +Campbell,OH,44405 +Canfield,OH,44406 +Columbiana,OH,44408 +Cortland,OH,44410 +Deerfield,OH,44411 +Diamond,OH,44412 +East Palestine,OH,44413 +Farmdale,OH,44417 +Fowler,OH,44418 +Girard,OH,44420 +Hanoverton,OH,44423 +Hubbard,OH,44425 +Kensington,OH,44427 +Kinsman,OH,44428 +Lake Milton,OH,44429 +Leavittsburg,OH,44430 +Leetonia,OH,44431 +Lisbon,OH,44432 +Lowellville,OH,44436 +Mc Donald,OH,44437 +Masury,OH,44438 +Mineral Ridge,OH,44440 +Negley,OH,44441 +New Middletown,OH,44442 +New Springfield,OH,44443 +Newton Falls,OH,44444 +New Waterford,OH,44445 +Niles,OH,44446 +North Benton,OH,44449 +North Bloomfield,OH,44450 +North Jackson,OH,44451 +North Lima,OH,44452 +Petersburg,OH,44454 +Rogers,OH,44455 +Salem,OH,44460 +Southington,OH,44470 +Struthers,OH,44471 +Vienna,OH,44473 +Warren,OH,44481 +Warren,OH,44483 +Warren,OH,44484 +Warren,OH,44485 +Washingtonville,OH,44490 +West Farmington,OH,44491 +Youngstown,OH,44502 +Youngstown,OH,44503 +Youngstown,OH,44504 +Youngstown,OH,44505 +Youngstown,OH,44506 +Youngstown,OH,44507 +Youngstown,OH,44509 +Youngstown,OH,44510 +Youngstown,OH,44511 +Boardman,OH,44512 +Poland,OH,44514 +Austintown,OH,44515 +Alliance,OH,44601 +Apple Creek,OH,44606 +Beach City,OH,44608 +Beloit,OH,44609 +Big Prairie,OH,44611 +Bolivar,OH,44612 +Brewster,OH,44613 +Canal Fulton,OH,44614 +Carrollton,OH,44615 +Dalton,OH,44618 +Dellroy,OH,44620 +Dennison,OH,44621 +Dover,OH,44622 +Dundee,OH,44624 +East Rochester,OH,44625 +East Sparta,OH,44626 +Fredericksburg,OH,44627 +Glenmont,OH,44628 +Gnadenhutten,OH,44629 +Hartville,OH,44632 +Holmesville,OH,44633 +Homeworth,OH,44634 +Killbuck,OH,44637 +Lakeville,OH,44638 +Louisville,OH,44641 +Magnolia,OH,44643 +Malvern,OH,44644 +Marshallville,OH,44645 +Massillon,OH,44646 +Massillon,OH,44647 +Mechanicstown,OH,44651 +Millersburg,OH,44654 +Zoarville,OH,44656 +Minerva,OH,44657 +Navarre,OH,44662 +New Philadelphia,OH,44663 +North Lawrence,OH,44666 +Orrville,OH,44667 +Paris,OH,44669 +Sebring,OH,44672 +Sherrodsville,OH,44675 +Shreve,OH,44676 +Smithville,OH,44677 +Strasburg,OH,44680 +Sugarcreek,OH,44681 +Uhrichsville,OH,44683 +Uniontown,OH,44685 +Waynesburg,OH,44688 +Wilmot,OH,44689 +Wooster,OH,44691 +Bowerston,OH,44695 +Tippecanoe,OH,44699 +Canton,OH,44702 +Canton,OH,44703 +Canton,OH,44704 +Canton,OH,44705 +Canton,OH,44706 +North Industry,OH,44707 +Canton,OH,44708 +North Canton,OH,44709 +Canton,OH,44710 +Canton,OH,44714 +Jackson Belden,OH,44718 +North Canton,OH,44720 +Canton,OH,44721 +East Canton,OH,44730 +Alvada,OH,44802 +Arcadia,OH,44804 +Ashland,OH,44805 +Carrothers,OH,44807 +Bellevue,OH,44811 +Bellville,OH,44813 +Berlin Heights,OH,44814 +Bloomdale,OH,44817 +Bloomville,OH,44818 +Bucyrus,OH,44820 +Butler,OH,44822 +Castalia,OH,44824 +Chatfield,OH,44825 +Collins,OH,44826 +Crestline,OH,44827 +Fostoria,OH,44830 +Galion,OH,44833 +Green Springs,OH,44836 +Greenwich,OH,44837 +Shinrock,OH,44839 +Jeromesville,OH,44840 +Kansas,OH,44841 +Loudonville,OH,44842 +Lucas,OH,44843 +Mc Cutchenville,OH,44844 +Melmore,OH,44845 +Milan,OH,44846 +Monroeville,OH,44847 +Nevada,OH,44849 +New London,OH,44851 +New Riegel,OH,44853 +New Washington,OH,44854 +North Fairfield,OH,44855 +Norwalk,OH,44857 +Nova,OH,44859 +Perrysville,OH,44864 +Plymouth,OH,44865 +Polk,OH,44866 +Republic,OH,44867 +Sandusky,OH,44870 +Savannah,OH,44874 +Shelby,OH,44875 +Shiloh,OH,44878 +Sullivan,OH,44880 +Sycamore,OH,44882 +Tiffin,OH,44883 +Tiro,OH,44887 +Wakeman,OH,44889 +Willard,OH,44890 +Mansfield,OH,44902 +Mansfield,OH,44903 +Lexington,OH,44904 +Lincoln,OH,44905 +Mansfield,OH,44906 +Mansfield,OH,44907 +Addyston,OH,45001 +Cleves,OH,45002 +College Corner,OH,45003 +Carlisle,OH,45005 +Hamilton,OH,45011 +Rossville,OH,45013 +Fairfield,OH,45014 +Lindenwald,OH,45015 +Harrison,OH,45030 +Otterbien Home,OH,45036 +Maineville,OH,45039 +Mason,OH,45040 +Middletown,OH,45042 +Excello,OH,45044 +Monroe,OH,45050 +North Bend,OH,45052 +Okeana,OH,45053 +Oregonia,OH,45054 +Miami University,OH,45056 +Somerville,OH,45064 +South Lebanon,OH,45065 +Springboro,OH,45066 +Trenton,OH,45067 +Waynesville,OH,45068 +West Chester,OH,45069 +Aberdeen,OH,45101 +Amelia,OH,45102 +Batavia,OH,45103 +Bethel,OH,45106 +Blanchester,OH,45107 +Camp Dennison,OH,45111 +Clarksville,OH,45113 +Fayetteville,OH,45118 +Felicity,OH,45120 +Georgetown,OH,45121 +Goshen,OH,45122 +Greenfield,OH,45123 +Hamersville,OH,45130 +Hillsboro,OH,45133 +Leesburg,OH,45135 +Loveland,OH,45140 +Lynchburg,OH,45142 +Manchester,OH,45144 +Martinsville,OH,45146 +Midland,OH,45148 +Day Heights,OH,45150 +Morrow,OH,45152 +Moscow,OH,45153 +Mount Orab,OH,45154 +New Richmond,OH,45157 +New Vienna,OH,45159 +Pleasant Plain,OH,45162 +Ripley,OH,45167 +Russellville,OH,45168 +Sabina,OH,45169 +Sardinia,OH,45171 +Terrace Park,OH,45174 +Williamsburg,OH,45176 +Wilmington,OH,45177 +Cincinnati,OH,45202 +Cincinnati,OH,45203 +Cincinnati,OH,45204 +Cincinnati,OH,45205 +Cincinnati,OH,45206 +Cincinnati,OH,45207 +Cincinnati,OH,45208 +Cincinnati,OH,45209 +Cincinnati,OH,45210 +Cincinnati,OH,45211 +Norwood,OH,45212 +Taft,OH,45213 +Cincinnati,OH,45214 +Lockland,OH,45215 +Elmwood Place,OH,45216 +Saint Bernard,OH,45217 +Greenhills,OH,45218 +Cincinnati,OH,45219 +Cincinnati,OH,45220 +Cincinnati,OH,45223 +College Hill,OH,45224 +Cincinnati,OH,45225 +Cincinnati,OH,45226 +Madisonville,OH,45227 +Cincinnati,OH,45228 +Cincinnati,OH,45229 +Anderson,OH,45230 +Cincinnati,OH,45231 +Cincinnati,OH,45232 +Saylor Park,OH,45233 +Taft,OH,45236 +Cincinnati,OH,45237 +Western Hills,OH,45238 +Groesbeck,OH,45239 +Parkdale,OH,45240 +Sharonville,OH,45241 +Sycamore,OH,45242 +Madeira,OH,45243 +Newtown,OH,45244 +Newtown,OH,45245 +Glendale,OH,45246 +Groesbeck,OH,45247 +Westwood,OH,45248 +Sycamore,OH,45249 +Groesbeck,OH,45251 +Cincinnati,OH,45252 +Anderson,OH,45255 +Anna,OH,45302 +Ansonia,OH,45303 +Castine,OH,45304 +Bellbrook,OH,45305 +Botkins,OH,45306 +Bradford,OH,45308 +Brookville,OH,45309 +Camden,OH,45311 +Casstown,OH,45312 +Cedarville,OH,45314 +Clayton,OH,45315 +Conover,OH,45317 +Covington,OH,45318 +Eaton,OH,45320 +Eldorado,OH,45321 +Union,OH,45322 +Enon,OH,45323 +Fairborn,OH,45324 +Farmersville,OH,45325 +Fletcher,OH,45326 +Germantown,OH,45327 +Greenville,OH,45331 +Hollansburg,OH,45332 +Houston,OH,45333 +Jackson Center,OH,45334 +Jamestown,OH,45335 +Laura,OH,45337 +Lewisburg,OH,45338 +Ludlow Falls,OH,45339 +Maplewood,OH,45340 +Medway,OH,45341 +Miamisburg,OH,45342 +New Carlisle,OH,45344 +New Lebanon,OH,45345 +New Madison,OH,45346 +New Paris,OH,45347 +New Weston,OH,45348 +Piqua,OH,45356 +Pleasant Hill,OH,45359 +Rossburg,OH,45362 +Russia,OH,45363 +Sidney,OH,45365 +Selma,OH,45368 +South Vienna,OH,45369 +Spring Valley,OH,45370 +Phoneton,OH,45371 +Troy,OH,45373 +Vandalia,OH,45377 +Versailles,OH,45380 +West Alexandria,OH,45381 +West Manchester,OH,45382 +West Milton,OH,45383 +Xenia,OH,45385 +Yellow Springs,OH,45387 +Yorkshire,OH,45388 +Union City,OH,45390 +Dayton,OH,45402 +Dayton,OH,45403 +Dayton,OH,45404 +Dayton,OH,45405 +Dayton,OH,45406 +Dayton,OH,45407 +Dayton,OH,45408 +Dayton,OH,45409 +Dayton,OH,45410 +Dayton,OH,45414 +Dayton,OH,45415 +Trotwood,OH,45416 +Dayton,OH,45417 +Dayton,OH,45418 +Dayton,OH,45419 +Kettering,OH,45420 +Huber Heights,OH,45424 +Trotwood,OH,45426 +Dayton,OH,45427 +Kettering,OH,45429 +Beavercreek,OH,45430 +Beavercreek,OH,45431 +Beavercreek,OH,45432 +Dayton,OH,45433 +Beavercreek,OH,45434 +West Carrollton,OH,45439 +Dayton,OH,45440 +West Carrollton,OH,45449 +Centerville,OH,45458 +Centerville,OH,45459 +Springfield,OH,45502 +Springfield,OH,45503 +Springfield,OH,45504 +Springfield,OH,45505 +Springfield,OH,45506 +Chillicothe,OH,45601 +Bainbridge,OH,45612 +Beaver,OH,45613 +Bidwell,OH,45614 +Blue Creek,OH,45616 +Chesapeake,OH,45619 +Cheshire,OH,45620 +Creola,OH,45622 +Crown City,OH,45623 +Frankfort,OH,45628 +Franklin Furnace,OH,45629 +Gallipolis,OH,45631 +Hamden,OH,45634 +Ironton,OH,45638 +Jackson,OH,45640 +Kingston,OH,45644 +Kitts Hill,OH,45645 +Latham,OH,45646 +Londonderry,OH,45647 +Lucasville,OH,45648 +Allensville,OH,45651 +Mc Dermott,OH,45652 +Minford,OH,45653 +New Plymouth,OH,45654 +Oak Hill,OH,45656 +Otway,OH,45657 +Patriot,OH,45658 +Pedro,OH,45659 +Peebles,OH,45660 +Idaho,OH,45661 +New Boston,OH,45662 +Portsmouth,OH,45663 +Proctorville,OH,45669 +Radcliff,OH,45670 +Rarden,OH,45671 +Ray,OH,45672 +Richmond Dale,OH,45673 +Rock Camp,OH,45675 +Scottown,OH,45678 +Seaman,OH,45679 +South Point,OH,45680 +South Salem,OH,45681 +South Webster,OH,45682 +Stout,OH,45684 +Thurman,OH,45685 +Vinton,OH,45686 +Waterloo,OH,45688 +Waverly,OH,45690 +Wellston,OH,45692 +West Union,OH,45693 +Wheelersburg,OH,45694 +Willow Wood,OH,45696 +Winchester,OH,45697 +Athens,OH,45701 +Albany,OH,45710 +Amesville,OH,45711 +Belpre,OH,45714 +Beverly,OH,45715 +Coolville,OH,45723 +Cutler,OH,45724 +Dexter City,OH,45727 +Fleming,OH,45729 +Glouster,OH,45732 +Rinard Mills,OH,45734 +Guysville,OH,45735 +Dexter,OH,45741 +Little Hocking,OH,45742 +Long Bottom,OH,45743 +Lowell,OH,45744 +Warner,OH,45745 +Macksburg,OH,45746 +Marietta,OH,45750 +Middleport,OH,45760 +Millfield,OH,45761 +Nelsonville,OH,45764 +New Marshfield,OH,45766 +New Matamoras,OH,45767 +Newport,OH,45768 +Pomeroy,OH,45769 +Portland,OH,45770 +Racine,OH,45771 +Reedsville,OH,45772 +Reno,OH,45773 +45774,OH,45774 +Rutland,OH,45775 +Shade,OH,45776 +Stewart,OH,45778 +The Plains,OH,45780 +Vincent,OH,45784 +Waterford,OH,45786 +Whipple,OH,45788 +Wingett Run,OH,45789 +Lima,OH,45801 +Lima,OH,45804 +Lima,OH,45805 +Cridersville,OH,45806 +Elida,OH,45807 +Ada,OH,45810 +Alger,OH,45812 +Antwerp,OH,45813 +Arlington,OH,45814 +Bluffton,OH,45817 +Cecil,OH,45821 +Carthagena,OH,45822 +Cloverdale,OH,45827 +Coldwater,OH,45828 +Columbus Grove,OH,45830 +Continental,OH,45831 +Convoy,OH,45832 +Delphos,OH,45833 +Dola,OH,45835 +Dunkirk,OH,45836 +Findlay,OH,45840 +Jenera,OH,45841 +Patterson,OH,45843 +Fort Jennings,OH,45844 +Fort Loramie,OH,45845 +Fort Recovery,OH,45846 +Grover Hill,OH,45849 +Harrod,OH,45850 +Haviland,OH,45851 +Leipsic,OH,45856 +Mc Comb,OH,45858 +Maria Stein,OH,45860 +Mendon,OH,45862 +Middle Point,OH,45863 +Minster,OH,45865 +Mount Blanchard,OH,45867 +Mount Cory,OH,45868 +New Bremen,OH,45869 +New Knoxville,OH,45871 +North Baltimore,OH,45872 +Oakwood,OH,45873 +Ohio City,OH,45874 +Gilboa,OH,45875 +Ottoville,OH,45876 +Pandora,OH,45877 +Paulding,OH,45879 +Payne,OH,45880 +Rawson,OH,45881 +Rockford,OH,45882 +Saint Henry,OH,45883 +Saint Marys,OH,45885 +Scott,OH,45886 +Spencerville,OH,45887 +Van Buren,OH,45889 +Vanlue,OH,45890 +Van Wert,OH,45891 +Venedocia,OH,45894 +Wapakoneta,OH,45895 +Waynesfield,OH,45896 +Willshire,OH,45898 +Alex,OK,73002 +Amber,OK,73004 +Anadarko,OK,73005 +Apache,OK,73006 +Arcadia,OK,73007 +Bethany,OK,73008 +Binger,OK,73009 +Blanchard,OK,73010 +Bradley,OK,73011 +Edmond,OK,73013 +Calumet,OK,73014 +Carnegie,OK,73015 +Cashion,OK,73016 +Cement,OK,73017 +Chickasha,OK,73018 +Choctaw,OK,73020 +Colony,OK,73021 +Corn,OK,73024 +Coyle,OK,73027 +Crescent,OK,73028 +Cyril,OK,73029 +Davis,OK,73030 +Edmond,OK,73034 +Elmore City,OK,73035 +El Reno,OK,73036 +Fort Cobb,OK,73038 +Foster,OK,73039 +Geary,OK,73040 +Gotebo,OK,73041 +Gracemont,OK,73042 +Greenfield,OK,73043 +Guthrie,OK,73044 +Harrah,OK,73045 +Hennepin,OK,73046 +Hinton,OK,73047 +Hydro,OK,73048 +Jones,OK,73049 +Lexington,OK,73051 +Lindsay,OK,73052 +Lookeba,OK,73053 +Luther,OK,73054 +Marlow,OK,73055 +Marshall,OK,73056 +Maysville,OK,73057 +Meridian,OK,73058 +Minco,OK,73059 +Morrison,OK,73061 +Mountain View,OK,73062 +Mulhall,OK,73063 +Mustang,OK,73064 +Newcastle,OK,73065 +Ninnekah,OK,73067 +Noble,OK,73068 +Norman,OK,73069 +Norman,OK,73071 +Norman,OK,73072 +Orlando,OK,73073 +Paoli,OK,73074 +Pauls Valley,OK,73075 +Perry,OK,73077 +Piedmont,OK,73078 +Pocasset,OK,73079 +Purcell,OK,73080 +Ratliff City,OK,73081 +Rush Springs,OK,73082 +Spencer,OK,73084 +Sulphur,OK,73086 +Tussy,OK,73088 +Tuttle,OK,73089 +Union City,OK,73090 +Verden,OK,73092 +Washington,OK,73093 +Wayne,OK,73095 +Weatherford,OK,73096 +Wynnewood,OK,73098 +Yukon,OK,73099 +Oklahoma City,OK,73102 +Oklahoma City,OK,73103 +Oklahoma City,OK,73104 +Oklahoma City,OK,73105 +Oklahoma City,OK,73106 +Oklahoma City,OK,73107 +Oklahoma City,OK,73108 +Oklahoma City,OK,73109 +Midwest City,OK,73110 +Oklahoma City,OK,73111 +Oklahoma City,OK,73112 +Oklahoma City,OK,73114 +Del City,OK,73115 +Nichols Hills,OK,73116 +Oklahoma City,OK,73117 +Oklahoma City,OK,73118 +Oklahoma City,OK,73119 +Oklahoma City,OK,73120 +Oklahoma City,OK,73121 +Warr Acres,OK,73122 +Oklahoma City,OK,73127 +Oklahoma City,OK,73128 +Oklahoma City,OK,73129 +Midwest City,OK,73130 +Oklahoma City,OK,73131 +Warr Acres,OK,73132 +Oklahoma City,OK,73134 +Oklahoma City,OK,73135 +Oklahoma City,OK,73139 +Oklahoma City,OK,73141 +Oklahoma City,OK,73142 +Tinker Afb,OK,73145 +Oklahoma City,OK,73149 +Oklahoma City,OK,73150 +Oklahoma City,OK,73151 +Oklahoma City,OK,73159 +Moore,OK,73160 +Oklahoma City,OK,73162 +Moore,OK,73165 +Oklahoma City,OK,73169 +Moore,OK,73170 +Oklahoma City,OK,73173 +Oklahoma City,OK,73179 +Milo,OK,73401 +Burneyville,OK,73430 +Coleman,OK,73432 +Graham,OK,73437 +Healdton,OK,73438 +Kingston,OK,73439 +Lebanon,OK,73440 +Leon,OK,73441 +Loco,OK,73442 +Lone Grove,OK,73443 +Mc Millan,OK,73446 +Mannsville,OK,73447 +Marietta,OK,73448 +Mead,OK,73449 +Milburn,OK,73450 +Overbrook,OK,73453 +Ringling,OK,73456 +Springer,OK,73458 +Thackerville,OK,73459 +Tishomingo,OK,73460 +Wapanucka,OK,73461 +Rubottom,OK,73463 +Lawton,OK,73501 +Fort Sill,OK,73503 +Lawton,OK,73505 +Lawton,OK,73507 +Altus,OK,73521 +Blair,OK,73526 +Cache,OK,73527 +Chattanooga,OK,73528 +Comanche,OK,73529 +Davidson,OK,73530 +Devol,OK,73531 +Duke,OK,73532 +Duncan,OK,73533 +Eldorado,OK,73537 +Elgin,OK,73538 +Elmer,OK,73539 +Faxon,OK,73540 +Fletcher,OK,73541 +Frederick,OK,73542 +Geronimo,OK,73543 +Gould,OK,73544 +Grandfield,OK,73546 +Granite,OK,73547 +Hastings,OK,73548 +Headrick,OK,73549 +Hollis,OK,73550 +Hollister,OK,73551 +Indiahoma,OK,73552 +Loveland,OK,73553 +Reed,OK,73554 +Mountain Park,OK,73559 +Olustee,OK,73560 +Oscar,OK,73561 +Randlett,OK,73562 +Roosevelt,OK,73564 +Ryan,OK,73565 +Snyder,OK,73566 +Temple,OK,73568 +Grady,OK,73569 +Tipton,OK,73570 +Vinson,OK,73571 +Walters,OK,73572 +Waurika,OK,73573 +Clinton,OK,73601 +Arapaho,OK,73620 +Bessie,OK,73622 +Butler,OK,73625 +Canute,OK,73626 +Carter,OK,73627 +Strong City,OK,73628 +Cordell,OK,73632 +Crawford,OK,73638 +Custer City,OK,73639 +Dill City,OK,73641 +Durham,OK,73642 +Elk City,OK,73644 +Erick,OK,73645 +Fay,OK,73646 +Foss,OK,73647 +Hammon,OK,73650 +Hobart,OK,73651 +Leedey,OK,73654 +Lone Wolf,OK,73655 +Eagle City,OK,73658 +Putnam,OK,73659 +Reydon,OK,73660 +Rocky,OK,73661 +Sayre,OK,73662 +Seiling,OK,73663 +Sentinel,OK,73664 +Sweetwater,OK,73666 +Taloga,OK,73667 +Texola,OK,73668 +Thomas,OK,73669 +Willow,OK,73673 +Enid,OK,73701 +Enid,OK,73703 +Aline,OK,73716 +Alva,OK,73717 +Ames,OK,73718 +Amorita,OK,73719 +Bison,OK,73720 +Burlington,OK,73722 +Byron,OK,73723 +Canton,OK,73724 +Capron,OK,73725 +Carmen,OK,73726 +Carrier,OK,73727 +Cherokee,OK,73728 +Cleo Springs,OK,73729 +Covington,OK,73730 +Dacoma,OK,73731 +Douglas,OK,73733 +Dover,OK,73734 +Drummond,OK,73735 +Fairmont,OK,73736 +Orienta,OK,73737 +Garber,OK,73738 +Goltry,OK,73739 +Helena,OK,73741 +Hennessey,OK,73742 +Hitchcock,OK,73744 +Isabella,OK,73747 +Jet,OK,73749 +Kingfisher,OK,73750 +Kremlin,OK,73753 +Lahoma,OK,73754 +Longdale,OK,73755 +Loyal,OK,73756 +Lucien,OK,73757 +Manchester,OK,73758 +Medford,OK,73759 +Meno,OK,73760 +Nash,OK,73761 +Okarche,OK,73762 +Okeene,OK,73763 +Omega,OK,73764 +Pond Creek,OK,73766 +Ringwood,OK,73768 +Southard,OK,73770 +Wakita,OK,73771 +Watonga,OK,73772 +Waukomis,OK,73773 +Woodward,OK,73801 +Harmon,OK,73832 +Selman,OK,73834 +Camargo,OK,73835 +Chester,OK,73838 +Fargo,OK,73840 +Fort Supply,OK,73841 +Freedom,OK,73842 +Gage,OK,73843 +Gate,OK,73844 +Knowles,OK,73847 +Laverne,OK,73848 +Logan,OK,73849 +May,OK,73851 +Mooreland,OK,73852 +Mutual,OK,73853 +Rosston,OK,73855 +Sharon,OK,73857 +Shattuck,OK,73858 +Vici,OK,73859 +Waynoka,OK,73860 +Balko,OK,73931 +Elmwood,OK,73932 +Boise City,OK,73933 +Felt,OK,73937 +Forgan,OK,73938 +Goodwell,OK,73939 +Guymon,OK,73942 +Hardesty,OK,73944 +Optima,OK,73945 +Kenton,OK,73946 +Keyes,OK,73947 +Texhoma,OK,73949 +Baker,OK,73950 +Tyrone,OK,73951 +Barnsdall,OK,74002 +Bartlesville,OK,74003 +Bartlesville,OK,74006 +Bixby,OK,74008 +Bristow,OK,74010 +Broken Arrow,OK,74011 +Broken Arrow,OK,74012 +Broken Arrow,OK,74014 +Catoosa,OK,74015 +Chelsea,OK,74016 +Claremore,OK,74017 +Cleveland,OK,74020 +Collinsville,OK,74021 +Copan,OK,74022 +Cushing,OK,74023 +Delaware,OK,74027 +Depew,OK,74028 +Dewey,OK,74029 +Drumright,OK,74030 +Glencoe,OK,74032 +Glenpool,OK,74033 +Hominy,OK,74035 +Inola,OK,74036 +Jenks,OK,74037 +Jennings,OK,74038 +Kellyville,OK,74039 +Lenapah,OK,74042 +Mannford,OK,74044 +Maramec,OK,74045 +Mounds,OK,74047 +Nowata,OK,74048 +Ochelata,OK,74051 +Oologah,OK,74053 +Osage,OK,74054 +Owasso,OK,74055 +Pawhuska,OK,74056 +Pawnee,OK,74058 +Perkins,OK,74059 +Prue,OK,74060 +Ramona,OK,74061 +Ripley,OK,74062 +Sand Springs,OK,74063 +Sapulpa,OK,74066 +Skiatook,OK,74070 +S Coffeyville,OK,74072 +Sperry,OK,74073 +Stillwater,OK,74074 +Stillwater,OK,74075 +Kendrick,OK,74079 +Talala,OK,74080 +Terlton,OK,74081 +Wann,OK,74083 +Wynona,OK,74084 +Yale,OK,74085 +Tulsa,OK,74103 +Tulsa,OK,74104 +Tulsa,OK,74105 +Tulsa,OK,74106 +Tulsa,OK,74107 +Tulsa,OK,74108 +Tulsa,OK,74110 +Tulsa,OK,74112 +Tulsa,OK,74114 +Tulsa,OK,74115 +Tulsa,OK,74116 +Tulsa,OK,74117 +Tulsa,OK,74119 +Tulsa,OK,74120 +Tulsa,OK,74126 +Tulsa,OK,74127 +Tulsa,OK,74128 +Tulsa,OK,74129 +Tulsa,OK,74130 +Tulsa,OK,74131 +Tulsa,OK,74132 +Tulsa,OK,74133 +Tulsa,OK,74134 +Tulsa,OK,74135 +Tulsa,OK,74136 +Tulsa,OK,74137 +Tulsa,OK,74145 +Tulsa,OK,74146 +Vinita,OK,74301 +Adair,OK,74330 +Bernice,OK,74331 +Big Cabin,OK,74332 +Bluejacket,OK,74333 +Chouteau,OK,74337 +Colcord,OK,74338 +Commerce,OK,74339 +Eucha,OK,74342 +Fairland,OK,74343 +Grove,OK,74344 +Jay,OK,74346 +Kansas,OK,74347 +Locust Grove,OK,74352 +Miami,OK,74354 +Oaks,OK,74359 +Picher,OK,74360 +Pryor,OK,74361 +Quapaw,OK,74363 +Leach,OK,74364 +Salina,OK,74365 +Spavinaw,OK,74366 +Strang,OK,74367 +Twin Oaks,OK,74368 +Welch,OK,74369 +Wyandotte,OK,74370 +Muskogee,OK,74401 +Muskogee,OK,74403 +Beggs,OK,74421 +Boynton,OK,74422 +Braggs,OK,74423 +Canadian,OK,74425 +Checotah,OK,74426 +Cookson,OK,74427 +Council Hill,OK,74428 +Coweta,OK,74429 +Eufaula,OK,74432 +Fort Gibson,OK,74434 +Gore,OK,74435 +Haskell,OK,74436 +Hoffman,OK,74437 +Hoyt,OK,74440 +Hulbert,OK,74441 +Indianola,OK,74442 +Morris,OK,74445 +Okmulgee,OK,74447 +Oktaha,OK,74450 +Park Hill,OK,74451 +Peggs,OK,74452 +Porter,OK,74454 +Porum,OK,74455 +Proctor,OK,74457 +Stidham,OK,74461 +Stigler,OK,74462 +Taft,OK,74463 +Tahlequah,OK,74464 +Wagoner,OK,74467 +Warner,OK,74469 +Webbers Falls,OK,74470 +Welling,OK,74471 +Whitefield,OK,74472 +Mcalester,OK,74501 +Antlers,OK,74523 +Atoka,OK,74525 +Blanco,OK,74528 +Calvin,OK,74531 +Caney,OK,74533 +Centrahoma,OK,74534 +Clayton,OK,74536 +Coalgate,OK,74538 +Daisy,OK,74540 +Farris,OK,74542 +Finley,OK,74543 +Hartshorne,OK,74547 +Haywood,OK,74548 +Honobia,OK,74549 +Kinta,OK,74552 +Kiowa,OK,74553 +Lane,OK,74555 +Moyers,OK,74557 +Nashoba,OK,74558 +Pittsburg,OK,74560 +Quinton,OK,74561 +Rattan,OK,74562 +Red Oak,OK,74563 +Snow,OK,74567 +Stringtown,OK,74569 +Stuart,OK,74570 +Talihina,OK,74571 +Tupelo,OK,74572 +Tuskahoma,OK,74574 +Wardville,OK,74576 +Whitesboro,OK,74577 +Wilburton,OK,74578 +Ponca City,OK,74601 +Ponca City,OK,74604 +Billings,OK,74630 +Blackwell,OK,74631 +Braman,OK,74632 +Burbank,OK,74633 +Deer Creek,OK,74636 +Fairfax,OK,74637 +Hunter,OK,74640 +Kaw City,OK,74641 +Lamont,OK,74643 +Marland,OK,74644 +Nardin,OK,74646 +Peckham,OK,74647 +Ralston,OK,74650 +Red Rock,OK,74651 +Foraker,OK,74652 +Tonkawa,OK,74653 +Durant,OK,74701 +Bennington,OK,74723 +Bethel,OK,74724 +Bokchito,OK,74726 +Boswell,OK,74727 +Broken Bow,OK,74728 +Caddo,OK,74729 +Calera,OK,74730 +Cartwright,OK,74731 +Colbert,OK,74733 +Eagletown,OK,74734 +Fort Towson,OK,74735 +Garvin,OK,74736 +Grant,OK,74738 +Tom,OK,74740 +Hendrix,OK,74741 +Hugo,OK,74743 +Idabel,OK,74745 +Kenefic,OK,74748 +Ringold,OK,74754 +Rufe,OK,74755 +Sawyer,OK,74756 +Soper,OK,74759 +Spencerville,OK,74760 +Valliant,OK,74764 +Wright City,OK,74766 +Shawnee,OK,74801 +Ada,OK,74820 +Agra,OK,74824 +Allen,OK,74825 +Asher,OK,74826 +Atwood,OK,74827 +Boley,OK,74829 +Byars,OK,74831 +Carney,OK,74832 +Castle,OK,74833 +Chandler,OK,74834 +Clearview,OK,74835 +Dustin,OK,74839 +Earlsboro,OK,74840 +Fittstown,OK,74842 +Fitzhugh,OK,74843 +Vernon,OK,74845 +Holdenville,OK,74848 +Konawa,OK,74849 +Lamar,OK,74850 +Mc Loud,OK,74851 +Macomb,OK,74852 +Maud,OK,74854 +Meeker,OK,74855 +Mill Creek,OK,74856 +Newalla,OK,74857 +Bearden,OK,74859 +Paden,OK,74860 +Prague,OK,74864 +Roff,OK,74865 +Sasakwa,OK,74867 +Seminole,OK,74868 +Sparks,OK,74869 +Harden City,OK,74871 +Stratford,OK,74872 +Tecumseh,OK,74873 +Tryon,OK,74875 +Wanette,OK,74878 +Weleetka,OK,74880 +Wellston,OK,74881 +Welty,OK,74882 +Wetumka,OK,74883 +New Lima,OK,74884 +Arkoma,OK,74901 +Pocola,OK,74902 +Bokoshe,OK,74930 +Bunch,OK,74931 +Cameron,OK,74932 +Heavener,OK,74937 +Hodgen,OK,74939 +Howe,OK,74940 +Keota,OK,74941 +Mccurtain,OK,74944 +Muldrow,OK,74948 +Muse,OK,74949 +Poteau,OK,74953 +Roland,OK,74954 +Sallisaw,OK,74955 +Shady Point,OK,74956 +Octavia,OK,74957 +Spiro,OK,74959 +Stilwell,OK,74960 +Vian,OK,74962 +Watson,OK,74963 +Watts,OK,74964 +Westville,OK,74965 +Wister,OK,74966 +Antelope,OR,97001 +Aurora,OR,97002 +Beavercreek,OR,97004 +Beaverton,OR,97005 +Aloha,OR,97006 +Aloha,OR,97007 +Boring,OR,97009 +Bridal Veil,OR,97010 +Brightwood,OR,97011 +Canby,OR,97013 +Bonneville,OR,97014 +Clackamas,OR,97015 +Westport,OR,97016 +Colton,OR,97017 +Columbia City,OR,97018 +Corbett,OR,97019 +Friend,OR,97021 +Eagle Creek,OR,97022 +Estacada,OR,97023 +Gervais,OR,97026 +Gladstone,OR,97027 +Timberline Lodge,OR,97028 +Grass Valley,OR,97029 +Gresham,OR,97030 +Hood River,OR,97031 +Hubbard,OR,97032 +Kent,OR,97033 +Lake Oswego,OR,97034 +Lake Oswego,OR,97035 +Maupin,OR,97037 +Molalla,OR,97038 +Moro,OR,97039 +Mosier,OR,97040 +Mount Hood Parkd,OR,97041 +Mulino,OR,97042 +Odell,OR,97044 +Oregon City,OR,97045 +Rainier,OR,97048 +Zigzag,OR,97049 +Rufus,OR,97050 +Saint Helens,OR,97051 +Warren,OR,97053 +Deer Island,OR,97054 +Sandy,OR,97055 +Scappoose,OR,97056 +Shaniko,OR,97057 +The Dalles,OR,97058 +Troutdale,OR,97060 +Tualatin,OR,97062 +Wamic,OR,97063 +Vernonia,OR,97064 +Wasco,OR,97065 +Welches,OR,97067 +West Linn,OR,97068 +Wilsonville,OR,97070 +Woodburn,OR,97071 +Gresham,OR,97080 +Amity,OR,97101 +Astoria,OR,97103 +Banks,OR,97106 +Bay City,OR,97107 +Beaver,OR,97108 +Buxton,OR,97109 +Carlton,OR,97111 +Cloverdale,OR,97112 +Cornelius,OR,97113 +Dayton,OR,97114 +Dundee,OR,97115 +Glenwood,OR,97116 +Gales Creek,OR,97117 +Gaston,OR,97119 +Hammond,OR,97121 +Hebo,OR,97122 +Hillsboro,OR,97123 +Hillsboro,OR,97124 +Manning,OR,97125 +Lafayette,OR,97127 +Mcminnville,OR,97128 +Nehalem,OR,97131 +Newberg,OR,97132 +Rockaway,OR,97136 +Saint Paul,OR,97137 +Gearhart,OR,97138 +Sherwood,OR,97140 +Tillamook,OR,97141 +Timber,OR,97144 +Tolovana Park,OR,97145 +Warrenton,OR,97146 +Yamhill,OR,97148 +Neskowin,OR,97149 +Portland,OR,97201 +Portland,OR,97202 +Portland,OR,97203 +Portland,OR,97204 +Portland,OR,97205 +Portland,OR,97206 +Portland,OR,97209 +Portland,OR,97210 +Portland,OR,97211 +Portland,OR,97212 +Portland,OR,97213 +Portland,OR,97214 +Portland,OR,97215 +Portland,OR,97216 +Portland,OR,97217 +Portland,OR,97218 +Portland,OR,97219 +Portland,OR,97220 +Portland,OR,97221 +Milwaukie,OR,97222 +Garden Home,OR,97223 +Tigard,OR,97224 +Cedar Hills,OR,97225 +Portland,OR,97227 +Portland,OR,97229 +Rockwood Corners,OR,97230 +Portland,OR,97231 +Portland,OR,97232 +Portland,OR,97233 +Portland,OR,97236 +Portland,OR,97266 +Oak Grove,OR,97267 +Salem,OR,97301 +Salem,OR,97302 +Keizer,OR,97303 +Salem,OR,97304 +Brooks,OR,97305 +Salem,OR,97306 +Albany,OR,97321 +Alsea,OR,97324 +West Stayton,OR,97325 +Blodgett,OR,97326 +Brownsville,OR,97327 +Cascadia,OR,97329 +Corvallis,OR,97330 +Corvallis,OR,97331 +Corvallis,OR,97333 +Dallas,OR,97338 +Depoe Bay,OR,97341 +Detroit,OR,97342 +Eddyville,OR,97343 +Falls City,OR,97344 +Foster,OR,97345 +Gates,OR,97346 +Grand Ronde,OR,97347 +Halsey,OR,97348 +Idanha,OR,97350 +Independence,OR,97351 +Jefferson,OR,97352 +Lebanon,OR,97355 +Logsden,OR,97357 +Lyons,OR,97358 +Mill City,OR,97360 +Monmouth,OR,97361 +Mount Angel,OR,97362 +Neotsu,OR,97364 +Newport,OR,97365 +South Beach,OR,97366 +Lincoln City,OR,97367 +Otis,OR,97368 +Philomath,OR,97370 +Rickreall,OR,97371 +Scio,OR,97374 +Scotts Mills,OR,97375 +Seal Rock,OR,97376 +Shedd,OR,97377 +Sheridan,OR,97378 +Siletz,OR,97380 +Silverton,OR,97381 +Stayton,OR,97383 +Sublimity,OR,97385 +Sweet Home,OR,97386 +Tangent,OR,97389 +Tidewater,OR,97390 +Toledo,OR,97391 +Turner,OR,97392 +Waldport,OR,97394 +Willamina,OR,97396 +Coburg,OR,97401 +Eugene,OR,97402 +Eugene,OR,97403 +Eugene,OR,97404 +Eugene,OR,97405 +Agness,OR,97406 +Azalea,OR,97410 +Bandon,OR,97411 +Blachly,OR,97412 +Mc Kenzie Bridge,OR,97413 +Broadbent,OR,97414 +Harbor,OR,97415 +Camas Valley,OR,97416 +Canyonville,OR,97417 +Cheshire,OR,97419 +Charleston,OR,97420 +Coquille,OR,97423 +Cottage Grove,OR,97424 +Creswell,OR,97426 +Culp Creek,OR,97427 +Days Creek,OR,97429 +Greenleaf,OR,97430 +Dexter,OR,97431 +Dorena,OR,97434 +Drain,OR,97435 +Elkton,OR,97436 +Elmira,OR,97437 +Fall Creek,OR,97438 +Florence,OR,97439 +Gardiner,OR,97441 +Glendale,OR,97442 +Glide,OR,97443 +Pistol River,OR,97444 +Harrisburg,OR,97446 +Idleyld Park,OR,97447 +Junction City,OR,97448 +Lakeside,OR,97449 +Langlois,OR,97450 +Lorane,OR,97451 +Lowell,OR,97452 +Mapleton,OR,97453 +Marcola,OR,97454 +Pleasant Hill,OR,97455 +Monroe,OR,97456 +Myrtle Creek,OR,97457 +Myrtle Point,OR,97458 +North Bend,OR,97459 +Noti,OR,97461 +Oakland,OR,97462 +Oakridge,OR,97463 +Port Orford,OR,97465 +Powers,OR,97466 +Winchester Bay,OR,97467 +Remote,OR,97468 +Riddle,OR,97469 +Roseburg,OR,97470 +Scottsburg,OR,97473 +Sixes,OR,97476 +Springfield,OR,97477 +Springfield,OR,97478 +Sutherlin,OR,97479 +Swisshome,OR,97480 +Tenmile,OR,97481 +Tiller,OR,97484 +Umpqua,OR,97486 +Veneta,OR,97487 +Vida,OR,97488 +Leaburg,OR,97489 +Walton,OR,97490 +Westfir,OR,97492 +Westlake,OR,97493 +Winston,OR,97496 +Sunny Valley,OR,97497 +Yachats,OR,97498 +Yoncalla,OR,97499 +West Main,OR,97501 +Central Point,OR,97502 +White City,OR,97503 +Medford,OR,97504 +Ashland,OR,97520 +Butte Falls,OR,97522 +Cave Junction,OR,97523 +Eagle Point,OR,97524 +Gold Hill,OR,97525 +Grants Pass,OR,97526 +Grants Pass,OR,97527 +Applegate,OR,97530 +Kerby,OR,97531 +Merlin,OR,97532 +O Brien,OR,97534 +Phoenix,OR,97535 +Prospect,OR,97536 +Rogue River,OR,97537 +Selma,OR,97538 +Shady Cove,OR,97539 +Talent,OR,97540 +Trail,OR,97541 +Wilderville,OR,97543 +Williams,OR,97544 +Oretech,OR,97601 +Klamath Falls,OR,97603 +Adel,OR,97620 +Beatty,OR,97621 +Bonanza,OR,97623 +Chiloquin,OR,97624 +Dairy,OR,97625 +Keno,OR,97627 +Lakeview,OR,97630 +Malin,OR,97632 +Merrill,OR,97633 +New Pine Creek,OR,97635 +Paisley,OR,97636 +Plush,OR,97637 +Silver Lake,OR,97638 +Summer Lake,OR,97640 +Bend,OR,97701 +Bend,OR,97702 +Sunriver,OR,97707 +Ashwood,OR,97711 +Brothers,OR,97712 +Burns,OR,97720 +Camp Sherman,OR,97730 +Diamond Lake,OR,97731 +Crane,OR,97732 +Crescent,OR,97733 +Culver,OR,97734 +Fort Rock,OR,97735 +Gilchrist,OR,97737 +La Pine,OR,97739 +Lawen,OR,97740 +Madras,OR,97741 +Mitchell,OR,97750 +Paulina,OR,97751 +Post,OR,97752 +Powell Butte,OR,97753 +Prineville,OR,97754 +Redmond,OR,97756 +Riley,OR,97758 +Black Butte Ranc,OR,97759 +Crooked River Ra,OR,97760 +Warm Springs,OR,97761 +Pendleton,OR,97801 +Adams,OR,97810 +Arlington,OR,97812 +Athena,OR,97813 +Medical Springs,OR,97814 +Boardman,OR,97818 +Canyon City,OR,97820 +Condon,OR,97823 +Cove,OR,97824 +Dayville,OR,97825 +Echo,OR,97826 +Elgin,OR,97827 +Enterprise,OR,97828 +Kinzua,OR,97830 +Fox,OR,97831 +Haines,OR,97833 +Halfway,OR,97834 +Helix,OR,97835 +Heppner,OR,97836 +Hereford,OR,97837 +Hermiston,OR,97838 +Lexington,OR,97839 +Imbler,OR,97841 +Imnaha,OR,97842 +Ione,OR,97843 +Irrigon,OR,97844 +John Day,OR,97845 +Joseph,OR,97846 +Kimberly,OR,97848 +La Grande,OR,97850 +Long Creek,OR,97856 +Lostine,OR,97857 +Milton Freewater,OR,97862 +Monument,OR,97864 +Mount Vernon,OR,97865 +North Powder,OR,97867 +Pilot Rock,OR,97868 +Prairie City,OR,97869 +Richland,OR,97870 +Ritter,OR,97872 +Seneca,OR,97873 +Spray,OR,97874 +Stanfield,OR,97875 +Summerville,OR,97876 +Sumpter,OR,97877 +Mcnary,OR,97882 +Union,OR,97883 +Unity,OR,97884 +Wallowa,OR,97885 +Weston,OR,97886 +Adrian,OR,97901 +Arock,OR,97902 +Brogan,OR,97903 +Drewsey,OR,97904 +Harper,OR,97906 +Huntington,OR,97907 +Ironside,OR,97908 +Jamieson,OR,97909 +Jordan Valley,OR,97910 +Juntura,OR,97911 +Nyssa,OR,97913 +Ontario,OR,97914 +Riverside,OR,97917 +Vale,OR,97918 +Westfall,OR,97920 +Macarthur,PA,15001 +Fairoaks,PA,15003 +Baden,PA,15005 +Bakerstown,PA,15007 +Beaver,PA,15009 +Racine,PA,15010 +Rostraver,PA,15012 +Brackenridge,PA,15014 +Bradfordwoods,PA,15015 +Bridgeville,PA,15017 +Buena Vista,PA,15018 +Bulger,PA,15019 +Paris,PA,15021 +Charleroi,PA,15022 +Cheswick,PA,15024 +Large,PA,15025 +Clinton,PA,15026 +Conway,PA,15027 +Creighton,PA,15030 +Cuddy,PA,15031 +Donora,PA,15033 +Dravosburg,PA,15034 +East Mc Keesport,PA,15035 +Elizabeth,PA,15037 +Freedom,PA,15042 +Georgetown,PA,15043 +Gibsonia,PA,15044 +Glassport,PA,15045 +Harwick,PA,15049 +Hookstown,PA,15050 +Indianola,PA,15051 +Industry,PA,15052 +Joffre,PA,15053 +Lawrence,PA,15055 +Leetsdale,PA,15056 +Mc Donald,PA,15057 +Midland,PA,15059 +Midway,PA,15060 +Monaca,PA,15061 +Monessen,PA,15062 +Monongahela,PA,15063 +Morgan,PA,15064 +Natrona,PA,15065 +New Brighton,PA,15066 +New Eagle,PA,15067 +Arnold,PA,15068 +Noblestown,PA,15071 +Rochester,PA,15074 +Russellton,PA,15076 +Shippingport,PA,15077 +Slovan,PA,15078 +Sutersville,PA,15083 +Tarentum,PA,15084 +Level Green,PA,15085 +Warrendale,PA,15086 +West Newton,PA,15089 +Wexford,PA,15090 +Allison Park,PA,15101 +Bethel Park,PA,15102 +Rankin,PA,15104 +Carnegie,PA,15106 +Moon Twp,PA,15108 +Duquesne,PA,15110 +East Pittsburgh,PA,15112 +Glenshaw,PA,15116 +Munhall,PA,15120 +W Mifflin Fin,PA,15122 +Imperial,PA,15126 +Library,PA,15129 +White Oak,PA,15131 +Mc Keesport,PA,15132 +Mc Keesport,PA,15133 +Boston,PA,15135 +Mc Kees Rocks,PA,15136 +North Versailles,PA,15137 +Oakmont,PA,15139 +Pitcairn,PA,15140 +Presto,PA,15142 +Sewickley,PA,15143 +Springdale,PA,15144 +Turtle Creek,PA,15145 +Monroeville,PA,15146 +Verona,PA,15147 +Wall,PA,15148 +Arsenal,PA,15201 +Bellevue,PA,15202 +Carson,PA,15203 +Corliss,PA,15204 +Crafton,PA,15205 +East Liberty,PA,15206 +Hazelwood,PA,15207 +Homewood,PA,15208 +Millvale,PA,15209 +Mount Oliver,PA,15210 +Mount Washington,PA,15211 +Allegheny,PA,15212 +Oakland,PA,15213 +Observatory,PA,15214 +Aspinwall,PA,15215 +South Hills,PA,15216 +Squirrel Hill,PA,15217 +Swissvale,PA,15218 +Uptown,PA,15219 +Parkway Center,PA,15220 +Wilkinsburg,PA,15221 +Downtown,PA,15222 +Etna,PA,15223 +Bloomfield,PA,15224 +Neville Island,PA,15225 +Brookline,PA,15226 +Brentwood,PA,15227 +Mount Lebanon,PA,15228 +West View,PA,15229 +Shadyside,PA,15232 +Kilbuck,PA,15233 +Castle Shannon,PA,15234 +Penn Hills,PA,15235 +Caste Village,PA,15236 +Mc Knight,PA,15237 +Blawnox,PA,15238 +Plum,PA,15239 +Upper Saint Clai,PA,15241 +Cedarhurst,PA,15243 +Washington,PA,15301 +Aleppo,PA,15310 +Amity,PA,15311 +Avella,PA,15312 +Beallsville,PA,15313 +Bentleyville,PA,15314 +Mc Murray,PA,15317 +Carmichaels,PA,15320 +Cecil,PA,15321 +Clarksville,PA,15322 +Claysville,PA,15323 +Cokeburg,PA,15324 +Dilliner,PA,15327 +Prosperity,PA,15329 +Eighty Four,PA,15330 +Ellsworth,PA,15331 +Finleyville,PA,15332 +Fredericktown,PA,15333 +Graysville,PA,15337 +Greensboro,PA,15338 +Hickory,PA,15340 +Holbrook,PA,15341 +Houston,PA,15342 +Jefferson,PA,15344 +Marianna,PA,15345 +Mather,PA,15346 +Davistown,PA,15349 +New Freeport,PA,15352 +Nineveh,PA,15353 +Rices Landing,PA,15357 +Rogersville,PA,15359 +Scenery Hill,PA,15360 +Spraggs,PA,15362 +Strabane,PA,15363 +Sycamore,PA,15364 +Venetia,PA,15367 +Waynesburg,PA,15370 +West Alexander,PA,15376 +West Finley,PA,15377 +Wind Ridge,PA,15380 +Uniontown,PA,15401 +Adah,PA,15410 +Addison,PA,15411 +Allenport,PA,15412 +Allison,PA,15413 +West Brownsville,PA,15417 +California,PA,15419 +Coal Center,PA,15423 +Listonburg,PA,15424 +South Connellsvi,PA,15425 +Daisytown,PA,15427 +Dawson,PA,15428 +Dunbar,PA,15431 +Dunlevy,PA,15432 +East Millsboro,PA,15433 +Elco,PA,15434 +Fairchance,PA,15436 +Farmington,PA,15437 +Fayette City,PA,15438 +Gibbon Glade,PA,15440 +Grindstone,PA,15442 +Hiller,PA,15444 +Hopwood,PA,15445 +Indian Head,PA,15446 +La Belle,PA,15450 +Lake Lynn,PA,15451 +Lemont Furnace,PA,15456 +Lamberton,PA,15458 +Markleysburg,PA,15459 +Grays Landing,PA,15461 +Melcroft,PA,15462 +Merrittstown,PA,15463 +Mill Run,PA,15464 +New Salem,PA,15468 +Normalville,PA,15469 +Ohiopyle,PA,15470 +Oliver,PA,15472 +Layton,PA,15473 +Point Marion,PA,15474 +Republic,PA,15475 +Roscoe,PA,15477 +Smithfield,PA,15478 +Van Meter,PA,15479 +Smock,PA,15480 +Star Junction,PA,15482 +Stockdale,PA,15483 +Vanderbilt,PA,15486 +Waltersburg,PA,15488 +White,PA,15490 +Somerset,PA,15501 +Alum Bank,PA,15521 +Bedford,PA,15522 +Berlin,PA,15530 +Boswell,PA,15531 +Breezewood,PA,15533 +Buffalo Mills,PA,15534 +Clearville,PA,15535 +Crystal Spring,PA,15536 +Everett,PA,15537 +Glencoe,PA,15538 +Fort Hill,PA,15540 +Friedens,PA,15541 +Garrett,PA,15542 +Hyndman,PA,15545 +Jenners,PA,15546 +Manns Choice,PA,15550 +Markleton,PA,15551 +Meyersdale,PA,15552 +New Paris,PA,15554 +Rockwood,PA,15557 +Salisbury,PA,15558 +Schellsburg,PA,15559 +Springs,PA,15562 +Stoystown,PA,15563 +Greensburg,PA,15601 +Acme,PA,15610 +Adamsburg,PA,15611 +Alverton,PA,15612 +Apollo,PA,15613 +Ardara,PA,15615 +Armbrust,PA,15616 +Arona,PA,15617 +Avonmore,PA,15618 +Bradenville,PA,15620 +Champion,PA,15622 +Darragh,PA,15625 +Delmont,PA,15626 +Derry,PA,15627 +Donegal,PA,15628 +Everson,PA,15631 +Export,PA,15632 +Grapeville,PA,15634 +Harrison City,PA,15636 +Herminie,PA,15637 +Hunker,PA,15639 +Hyde Park,PA,15641 +North Huntingdon,PA,15642 +Jeannette,PA,15644 +Jones Mills,PA,15646 +Larimer,PA,15647 +Latrobe,PA,15650 +Laughlintown,PA,15655 +Leechburg,PA,15656 +Wilpen,PA,15658 +Loyalhanna,PA,15661 +Madison,PA,15663 +Manor,PA,15665 +Mount Pleasant,PA,15666 +Murrysville,PA,15668 +New Alexandria,PA,15670 +New Derry,PA,15671 +New Stanton,PA,15672 +Penn,PA,15675 +Rector,PA,15677 +Rillton,PA,15678 +Ruffs Dale,PA,15679 +Saltsburg,PA,15681 +Scottdale,PA,15683 +Slickville,PA,15684 +Spring Church,PA,15686 +Stahlstown,PA,15687 +Tarrs,PA,15688 +Park,PA,15690 +Westmoreland Cit,PA,15692 +Youngwood,PA,15697 +Yukon,PA,15698 +Indiana,PA,15701 +Anita,PA,15711 +Aultman,PA,15713 +Barnesboro,PA,15714 +Black Lick,PA,15716 +Blairsville,PA,15717 +Brush Valley,PA,15720 +Burnside,PA,15721 +Carrolltown,PA,15722 +Cherry Tree,PA,15724 +Clarksburg,PA,15725 +Clymer,PA,15728 +Commodore,PA,15729 +Coolspring,PA,15730 +Creekside,PA,15732 +Ernest,PA,15739 +Glen Campbell,PA,15742 +Hamilton,PA,15744 +Home,PA,15747 +Graceton,PA,15748 +La Jose,PA,15753 +Lucernemines,PA,15754 +Mc Gees Mills,PA,15757 +Marchand,PA,15758 +Marion Center,PA,15759 +Marsteller,PA,15760 +Nicktown,PA,15762 +Northpoint,PA,15763 +Oliveburg,PA,15764 +Penn Run,PA,15765 +Punxsutawney,PA,15767 +Ringgold,PA,15770 +Rochester Mills,PA,15771 +Rossiter,PA,15772 +Saint Benedict,PA,15773 +Shelocta,PA,15774 +Spangler,PA,15775 +Sprankle Mills,PA,15776 +Starford,PA,15777 +Timblin,PA,15778 +Valier,PA,15780 +Worthville,PA,15784 +Du Bois,PA,15801 +Benezett,PA,15821 +Brockport,PA,15823 +Brockway,PA,15824 +Hazen,PA,15825 +Byrnedale,PA,15827 +Clarington,PA,15828 +Corsica,PA,15829 +Driftwood,PA,15832 +Emporium,PA,15834 +Falls Creek,PA,15840 +Johnsonburg,PA,15845 +Kersey,PA,15846 +Luthersburg,PA,15848 +Penfield,PA,15849 +Reynoldsville,PA,15851 +Portland Mills,PA,15853 +Rockton,PA,15856 +Saint Marys,PA,15857 +Sigel,PA,15860 +Sinnamahoning,PA,15861 +Summerville,PA,15864 +Sykesville,PA,15865 +Weedville,PA,15868 +Wilcox,PA,15870 +Johnstown,PA,15901 +Johnstown,PA,15902 +Johnstown,PA,15904 +Johnstown,PA,15905 +Johnstown,PA,15906 +Johnstown,PA,15909 +Armagh,PA,15920 +Bolivar,PA,15923 +Cairnbrook,PA,15924 +Central City,PA,15926 +Colver,PA,15927 +Davidsville,PA,15928 +Ebensburg,PA,15931 +Hollsopple,PA,15935 +Hooversville,PA,15936 +Lilly,PA,15938 +Loretto,PA,15940 +Mineral Point,PA,15942 +Nanty Glo,PA,15943 +New Florence,PA,15944 +Parkhill,PA,15945 +Puritan,PA,15946 +Robinson,PA,15949 +Saint Michael,PA,15951 +Salix,PA,15952 +Seanor,PA,15953 +Seward,PA,15954 +Sidman,PA,15955 +South Fork,PA,15956 +Strongstown,PA,15957 +Summerhill,PA,15958 +Twin Rocks,PA,15960 +Vintondale,PA,15961 +Windber,PA,15963 +Bon Aire,PA,16001 +Boyers,PA,16020 +Bruin,PA,16022 +Marwood,PA,16023 +Chicora,PA,16025 +East Brady,PA,16028 +Eau Claire,PA,16030 +Evans City,PA,16033 +Fenelton,PA,16034 +Foxburg,PA,16036 +Harmony,PA,16037 +Harrisville,PA,16038 +Hilliards,PA,16040 +Karns City,PA,16041 +Lyndora,PA,16045 +Mars,PA,16046 +Parker,PA,16049 +Petrolia,PA,16050 +Portersville,PA,16051 +Prospect,PA,16052 +Renfrew,PA,16053 +Sarver,PA,16055 +Saxonburg,PA,16056 +Slippery Rock,PA,16057 +Valencia,PA,16059 +West Sunbury,PA,16061 +Zelienople,PA,16063 +New Castle,PA,16101 +New Castle,PA,16102 +Neshannock,PA,16105 +Adamsville,PA,16110 +Atlantic,PA,16111 +Bessemer,PA,16112 +Clarks Mills,PA,16114 +Darlington,PA,16115 +Edinburg,PA,16116 +Ellport,PA,16117 +Enon Valley,PA,16120 +Farrell,PA,16121 +Fombell,PA,16123 +Fredonia,PA,16124 +Shenango,PA,16125 +Grove City,PA,16127 +Hadley,PA,16130 +Hartstown,PA,16131 +Jackson Center,PA,16133 +Westford,PA,16134 +Mercer,PA,16137 +New Galilee,PA,16141 +New Wilmington,PA,16142 +Pulaski,PA,16143 +Sandy Lake,PA,16145 +Sharon,PA,16146 +Hermitage,PA,16148 +Sharpsville,PA,16150 +Stoneboro,PA,16153 +Transfer,PA,16154 +Volant,PA,16156 +Wampum,PA,16157 +West Middlesex,PA,16159 +Kittanning,PA,16201 +Adrian,PA,16210 +Cadogan,PA,16212 +Callensburg,PA,16213 +Clarion,PA,16214 +Cooksburg,PA,16217 +Cowansville,PA,16218 +Dayton,PA,16222 +Fairmount City,PA,16224 +Fisher,PA,16225 +Ford City,PA,16226 +Freeport,PA,16229 +Knox,PA,16232 +Leeper,PA,16233 +Limestone,PA,16234 +Lucinda,PA,16235 +Mc Grann,PA,16236 +Manorville,PA,16238 +Marienville,PA,16239 +Mayport,PA,16240 +New Bethlehem,PA,16242 +Huey,PA,16248 +Rural Valley,PA,16249 +Shippenville,PA,16254 +Sligo,PA,16255 +Smicksburg,PA,16256 +Strattanville,PA,16258 +Templeton,PA,16259 +Vowinckel,PA,16260 +Craigsville,PA,16262 +Oil City,PA,16301 +Carlton,PA,16311 +Clarendon,PA,16313 +Cochranton,PA,16314 +Conneaut Lake,PA,16316 +Cooperstown,PA,16317 +Cranberry,PA,16319 +East Hickory,PA,16321 +Franklin,PA,16323 +Fryburg,PA,16326 +Guys Mills,PA,16327 +Irvine,PA,16329 +Kossuth,PA,16331 +Lickingville,PA,16332 +Ludlow,PA,16333 +Marble,PA,16334 +Meadville,PA,16335 +Pittsfield,PA,16340 +Pleasantville,PA,16341 +Polk,PA,16342 +Russell,PA,16345 +Seneca,PA,16346 +Sheffield,PA,16347 +Sugar Grove,PA,16350 +Tidioute,PA,16351 +Tionesta,PA,16353 +Titusville,PA,16354 +Townville,PA,16360 +Utica,PA,16362 +Venus,PA,16364 +North Warren,PA,16365 +Youngsville,PA,16371 +Clintonville,PA,16372 +Emlenton,PA,16373 +Kennerdell,PA,16374 +Lundys Lane,PA,16401 +Bear Lake,PA,16402 +Cambridge Spring,PA,16403 +Centerville,PA,16404 +Columbus,PA,16405 +Conneautville,PA,16406 +Corry,PA,16407 +Cranesville,PA,16410 +East Springfield,PA,16411 +Edinboro,PA,16412 +Fairview,PA,16415 +Girard,PA,16417 +Grand Valley,PA,16420 +Harborcreek,PA,16421 +Lake City,PA,16423 +Espyville,PA,16424 +Mc Kean,PA,16426 +North East,PA,16428 +Saegertown,PA,16433 +Spartansburg,PA,16434 +Springboro,PA,16435 +Spring Creek,PA,16436 +Union City,PA,16438 +Venango,PA,16440 +Waterford,PA,16441 +Wattsburg,PA,16442 +West Springfield,PA,16443 +Erie,PA,16501 +Erie,PA,16502 +Erie,PA,16503 +Erie,PA,16504 +Presque Isle,PA,16505 +Erie,PA,16506 +Erie,PA,16507 +Erie,PA,16508 +Erie,PA,16509 +Wesleyville,PA,16510 +Erie,PA,16511 +Erie,PA,16565 +Altoona,PA,16601 +Altoona,PA,16602 +Barree,PA,16611 +Ashville,PA,16613 +Beccaria,PA,16616 +Bellwood,PA,16617 +Brisbin,PA,16620 +Broad Top,PA,16621 +Calvin,PA,16622 +Cassville,PA,16623 +Claysburg,PA,16625 +Coalport,PA,16627 +Cresson,PA,16630 +Dudley,PA,16634 +Duncansville,PA,16635 +Dysart,PA,16636 +East Freedom,PA,16637 +Fallentimber,PA,16639 +Flinton,PA,16640 +Gallitzin,PA,16641 +Glen Hope,PA,16645 +Hastings,PA,16646 +Hesston,PA,16647 +Hollidaysburg,PA,16648 +Hopewell,PA,16650 +Houtzdale,PA,16651 +Huntingdon,PA,16652 +Imler,PA,16655 +Irvona,PA,16656 +James Creek,PA,16657 +Loysburg,PA,16659 +Madera,PA,16661 +Martinsburg,PA,16662 +New Enterprise,PA,16664 +Osceola Mills,PA,16666 +St Clairsville,PA,16667 +Patton,PA,16668 +Petersburg,PA,16669 +Ramey,PA,16671 +Roaring Spring,PA,16673 +Robertsdale,PA,16674 +Saxton,PA,16678 +Six Mile Run,PA,16679 +Smithmill,PA,16680 +Spruce Creek,PA,16683 +Todd,PA,16685 +Tyrone,PA,16686 +Waterfall,PA,16689 +Wells Tannery,PA,16691 +Westover,PA,16692 +Ganister,PA,16693 +Woodbury,PA,16695 +Bradford,PA,16701 +Austin,PA,16720 +Crosby,PA,16724 +Ormsby,PA,16726 +Derrick City,PA,16727 +Duke Center,PA,16729 +Eldred,PA,16731 +Gifford,PA,16732 +James City,PA,16734 +Kane,PA,16735 +Lewis Run,PA,16738 +Mount Jewett,PA,16740 +Port Allegany,PA,16743 +Rew,PA,16744 +Rixford,PA,16745 +Roulette,PA,16746 +Shinglehouse,PA,16748 +Smethport,PA,16749 +Turtlepoint,PA,16750 +State College,PA,16801 +State College,PA,16803 +Aaronsburg,PA,16820 +Allport,PA,16821 +Beech Creek,PA,16822 +Pleasant Gap,PA,16823 +Boalsburg,PA,16827 +Centre Hall,PA,16828 +Clarence,PA,16829 +Clearfield,PA,16830 +Coburn,PA,16832 +Curwensville,PA,16833 +Frenchville,PA,16836 +Glen Richey,PA,16837 +Grampian,PA,16838 +Grassflat,PA,16839 +Hawk Run,PA,16840 +Howard,PA,16841 +Julian,PA,16844 +Karthaus,PA,16845 +Madisonburg,PA,16852 +Millheim,PA,16854 +Morrisdale,PA,16858 +Moshannon,PA,16859 +Munson,PA,16860 +New Millport,PA,16861 +Olanta,PA,16863 +Orviston,PA,16864 +Pennsylvania Fur,PA,16865 +Philipsburg,PA,16866 +Port Matilda,PA,16870 +Pottersdale,PA,16871 +Rebersburg,PA,16872 +Snow Shoe,PA,16874 +Spring Mills,PA,16875 +Warriors Mark,PA,16877 +West Decatur,PA,16878 +Winburne,PA,16879 +Woodland,PA,16881 +Woodward,PA,16882 +Wellsboro,PA,16901 +Blossburg,PA,16912 +Columbia Cross R,PA,16914 +Oswayo,PA,16915 +Covington,PA,16917 +Elkland,PA,16920 +Gaines,PA,16921 +Galeton,PA,16922 +North Bingham,PA,16923 +Gillett,PA,16925 +Granville Summit,PA,16926 +Harrison Valley,PA,16927 +Knoxville,PA,16928 +Lawrenceville,PA,16929 +Liberty,PA,16930 +Mainesburg,PA,16932 +Mansfield,PA,16933 +Middlebury Cente,PA,16935 +Millerton,PA,16936 +Mills,PA,16937 +Morris,PA,16938 +Morris Run,PA,16939 +Nelson,PA,16940 +Genesee,PA,16941 +Osceola,PA,16942 +Sabinsville,PA,16943 +Tioga,PA,16946 +Troy,PA,16947 +Ulysses,PA,16948 +Little Marsh,PA,16950 +Allensville,PA,17002 +Annville,PA,17003 +Belleville,PA,17004 +Berrysburg,PA,17005 +Blain,PA,17006 +Boiling Springs,PA,17007 +Burnham,PA,17009 +Shiremanstown,PA,17011 +Carlisle Barrack,PA,17013 +Cocolamus,PA,17014 +Dalmatia,PA,17017 +Dauphin,PA,17018 +Dillsburg,PA,17019 +Duncannon,PA,17020 +East Waterford,PA,17021 +Elizabethtown,PA,17022 +Elizabethville,PA,17023 +Elliottsburg,PA,17024 +Enola,PA,17025 +Fredericksburg,PA,17026 +Grantville,PA,17028 +Granville,PA,17029 +Gratz,PA,17030 +Green Park,PA,17031 +Halifax,PA,17032 +Hershey,PA,17033 +Highspire,PA,17034 +Honey Grove,PA,17035 +Hummelstown,PA,17036 +Ickesburg,PA,17037 +Jonestown,PA,17038 +Landisburg,PA,17040 +Cleona,PA,17042 +Wormleysburg,PA,17043 +Lewistown,PA,17044 +Liverpool,PA,17045 +Loysville,PA,17047 +Lykens,PA,17048 +Mc Alisterville,PA,17049 +Mc Veytown,PA,17051 +Mapleton Depot,PA,17052 +Marysville,PA,17053 +Hampden,PA,17055 +Middletown,PA,17057 +Mifflin,PA,17058 +Mifflintown,PA,17059 +Mill Creek,PA,17060 +Millersburg,PA,17061 +Millerstown,PA,17062 +Milroy,PA,17063 +Mount Holly Spri,PA,17065 +Mount Union,PA,17066 +Myerstown,PA,17067 +New Bloomfield,PA,17068 +New Cumberland,PA,17070 +New Germantown,PA,17071 +Newmanstown,PA,17073 +Newport,PA,17074 +Oakland Mills,PA,17076 +Palmyra,PA,17078 +Port Royal,PA,17082 +Reedsville,PA,17084 +Richfield,PA,17086 +Richland,PA,17087 +Shermans Dale,PA,17090 +Thompsontown,PA,17094 +Wiconisco,PA,17097 +Williamstown,PA,17098 +Yeagertown,PA,17099 +Harrisburg,PA,17101 +Harrisburg,PA,17102 +Penbrook,PA,17103 +Harrisburg,PA,17104 +Colonial Park,PA,17109 +Harrisburg,PA,17110 +Swatara,PA,17111 +Harrisburg,PA,17112 +Steelton,PA,17113 +Chambersburg,PA,17201 +Artemas,PA,17211 +Big Cove Tannery,PA,17212 +Blairs Mills,PA,17213 +Blue Ridge Summi,PA,17214 +Burnt Cabins,PA,17215 +Concord,PA,17217 +Doylesburg,PA,17219 +Dry Run,PA,17220 +Fannettsburg,PA,17221 +Fayetteville,PA,17222 +Fort Littleton,PA,17223 +Fort Loudon,PA,17224 +Greencastle,PA,17225 +Harrisonville,PA,17228 +Hustontown,PA,17229 +Lurgan,PA,17232 +Mc Connellsburg,PA,17233 +Mercersburg,PA,17236 +Mont Alto,PA,17237 +Needmore,PA,17238 +Neelyton,PA,17239 +Newburg,PA,17240 +Newville,PA,17241 +Orbisonia,PA,17243 +Orrstown,PA,17244 +Pleasant Hall,PA,17246 +Saint Thomas,PA,17252 +Shade Gap,PA,17255 +Shippensburg,PA,17257 +Shirleysburg,PA,17260 +Spring Run,PA,17262 +Three Springs,PA,17264 +Upperstrasburg,PA,17265 +Walnut Bottom,PA,17266 +Warfordsburg,PA,17267 +Waynesboro,PA,17268 +Willow Hill,PA,17271 +Abbottstown,PA,17301 +Airville,PA,17302 +Aspers,PA,17304 +Biglerville,PA,17307 +Brogue,PA,17309 +Yoe,PA,17313 +Delta,PA,17314 +Dover,PA,17315 +East Berlin,PA,17316 +Etters,PA,17319 +Greenstone,PA,17320 +Fawn Grove,PA,17321 +Felton,PA,17322 +Gardners,PA,17324 +Gettysburg,PA,17325 +Glen Rock,PA,17327 +Brodbecks,PA,17329 +Hanover,PA,17331 +Lewisberry,PA,17339 +Littlestown,PA,17340 +Mc Sherrystown,PA,17344 +Manchester,PA,17345 +Mount Wolf,PA,17347 +New Freedom,PA,17349 +New Oxford,PA,17350 +New Park,PA,17352 +Orrtanna,PA,17353 +Red Lion,PA,17356 +Seven Valleys,PA,17360 +Shrewsbury,PA,17361 +Spring Grove,PA,17362 +Stewartstown,PA,17363 +Thomasville,PA,17364 +Wellsville,PA,17365 +Windsor,PA,17366 +Wrightsville,PA,17368 +York Haven,PA,17370 +York Springs,PA,17372 +York,PA,17401 +East York,PA,17402 +York,PA,17403 +West York,PA,17404 +Hellam,PA,17406 +Jacobus,PA,17407 +Akron,PA,17501 +Bainbridge,PA,17502 +Bird In Hand,PA,17505 +Ninepoints,PA,17509 +Columbia,PA,17512 +Conestoga,PA,17516 +Denver,PA,17517 +Drumore,PA,17518 +East Earl,PA,17519 +East Petersburg,PA,17520 +Ephrata,PA,17522 +Gap,PA,17527 +Gordonville,PA,17529 +Holtwood,PA,17532 +Kinzers,PA,17535 +Kirkwood,PA,17536 +Salunga,PA,17538 +Leola,PA,17540 +Brunnerville,PA,17543 +Manheim,PA,17545 +Marietta,PA,17547 +Millersville,PA,17551 +Florin,PA,17552 +Mountville,PA,17554 +Narvon,PA,17555 +New Holland,PA,17557 +New Providence,PA,17560 +Paradise,PA,17562 +Peach Bottom,PA,17563 +Pequea,PA,17565 +Quarryville,PA,17566 +Reinholds,PA,17569 +Ronks,PA,17572 +Smoketown,PA,17576 +Stevens,PA,17578 +Strasburg,PA,17579 +Terre Hill,PA,17581 +Washington Boro,PA,17582 +Willow Street,PA,17584 +Neffsville,PA,17601 +Lancaster,PA,17602 +Rohrerstown,PA,17603 +South Williamspo,PA,17701 +Cammal,PA,17723 +Canton,PA,17724 +Cedar Run,PA,17727 +Cogan Station,PA,17728 +Cross Fork,PA,17729 +Hughesville,PA,17737 +Salladasburg,PA,17740 +Lairdsville,PA,17742 +Linden,PA,17744 +Lock Haven,PA,17745 +Loganton,PA,17747 +Mill Hall,PA,17751 +Montgomery,PA,17752 +Montoursville,PA,17754 +Muncy,PA,17756 +Muncy Valley,PA,17758 +Ralston,PA,17763 +Renovo,PA,17764 +Roaring Branch,PA,17765 +Shunk,PA,17768 +Trout Run,PA,17771 +Turbotville,PA,17772 +Unityville,PA,17774 +Waterville,PA,17776 +Watsontown,PA,17777 +Westport,PA,17778 +Woolrich,PA,17779 +Sunbury,PA,17801 +Allenwood,PA,17810 +Beaver Springs,PA,17812 +Beavertown,PA,17813 +Benton,PA,17814 +Bloomsburg,PA,17815 +Catawissa,PA,17820 +Danville,PA,17821 +Dornsife,PA,17823 +Elysburg,PA,17824 +Freeburg,PA,17827 +Gowen City,PA,17828 +Herndon,PA,17830 +Marion Heights,PA,17832 +Kulpmont,PA,17834 +Laurelton,PA,17835 +Leck Kill,PA,17836 +Lewisburg,PA,17837 +Mc Clure,PA,17841 +Middleburg,PA,17842 +Beaver Springs,PA,17843 +Mifflinburg,PA,17844 +Millmont,PA,17845 +Millville,PA,17846 +Milton,PA,17847 +Montandon,PA,17850 +Mount Carmel,PA,17851 +Mount Pleasant M,PA,17853 +New Berlin,PA,17855 +New Columbia,PA,17856 +Northumberland,PA,17857 +Orangeville,PA,17859 +Paxinos,PA,17860 +Port Trevorton,PA,17864 +Ranshaw,PA,17866 +Rebuck,PA,17867 +Riverside,PA,17868 +Selinsgrove,PA,17870 +Excelsior,PA,17872 +Snydertown,PA,17877 +Stillwater,PA,17878 +Trevorton,PA,17881 +Wilburton,PA,17888 +Winfield,PA,17889 +Pottsville,PA,17901 +Ashland,PA,17921 +Auburn,PA,17922 +Branchdale,PA,17923 +Brockton,PA,17925 +Centralia,PA,17927 +Cressona,PA,17929 +Frackville,PA,17931 +Girardville,PA,17935 +Hegins,PA,17938 +Klingerstown,PA,17941 +Mahanoy City,PA,17948 +Minersville,PA,17954 +Muir,PA,17957 +Kaska,PA,17959 +New Ringgold,PA,17960 +Orwigsburg,PA,17961 +Pine Grove,PA,17963 +Pitman,PA,17964 +Port Carbon,PA,17965 +Ringtown,PA,17967 +Sacramento,PA,17968 +Saint Clair,PA,17970 +Schuylkill Haven,PA,17972 +Shenandoah,PA,17976 +Spring Glen,PA,17978 +Tower City,PA,17980 +Donaldson,PA,17981 +Valley View,PA,17983 +Zion Grove,PA,17985 +Alburtis,PA,18011 +Roseto,PA,18013 +Bath,PA,18014 +Bethlehem,PA,18015 +Butztown,PA,18017 +Bethlehem,PA,18018 +Breinigsville,PA,18031 +Catasauqua,PA,18032 +Center Valley,PA,18034 +Cherryville,PA,18035 +Coopersburg,PA,18036 +Coplay,PA,18037 +Danielsville,PA,18038 +East Greenville,PA,18041 +Forks Township,PA,18042 +Emmaus,PA,18049 +Fogelsville,PA,18051 +Hokendauqua,PA,18052 +Germansville,PA,18053 +Green Lane,PA,18054 +Hellertown,PA,18055 +Hereford,PA,18056 +Kunkletown,PA,18058 +Macungie,PA,18062 +Nazareth,PA,18064 +New Tripoli,PA,18066 +Northampton,PA,18067 +Orefield,PA,18069 +Palm,PA,18070 +Palmerton,PA,18071 +Pen Argyl,PA,18072 +Pennsburg,PA,18073 +Perkiomenville,PA,18074 +Red Hill,PA,18076 +Riegelsville,PA,18077 +Schnecksville,PA,18078 +Emerald,PA,18080 +Trexlertown,PA,18087 +Walnutport,PA,18088 +Wind Gap,PA,18091 +Zionsville,PA,18092 +Allentown,PA,18101 +Allentown,PA,18102 +Allentown,PA,18103 +Allentown,PA,18104 +Wescosville,PA,18106 +West Hazleton,PA,18201 +Albrightsville,PA,18210 +Andreas,PA,18211 +Barnesville,PA,18214 +Beaver Meadows,PA,18216 +Coaldale,PA,18218 +Delano,PA,18220 +Drums,PA,18222 +Freeland,PA,18224 +Jim Thorpe,PA,18229 +Lansford,PA,18232 +Weissport,PA,18235 +Mcadoo,PA,18237 +Nesquehoning,PA,18240 +Quakake,PA,18245 +Rock Glen,PA,18246 +Sheppton,PA,18248 +Sugarloaf,PA,18249 +Summit Hill,PA,18250 +Tamaqua,PA,18252 +Weatherly,PA,18255 +East Stroudsburg,PA,18301 +Bartonsville,PA,18321 +Brodheadsville,PA,18322 +Bushkill,PA,18324 +Canadensis,PA,18325 +Cresco,PA,18326 +Delaware Water G,PA,18327 +Dingmans Ferry,PA,18328 +Effort,PA,18330 +Gilbert,PA,18331 +Henryville,PA,18332 +Kresgeville,PA,18333 +Long Pond,PA,18334 +Matamoras,PA,18336 +Milford,PA,18337 +Millrift,PA,18340 +Mount Bethel,PA,18343 +Mount Pocono,PA,18344 +Pocono Summit,PA,18346 +Pocono Lake,PA,18347 +Pocono Pines,PA,18350 +Reeders,PA,18352 +Saylorsburg,PA,18353 +Sciota,PA,18354 +Scotrun,PA,18355 +Stroudsburg,PA,18360 +Swiftwater,PA,18370 +Tamiment,PA,18371 +Tannersville,PA,18372 +Aldenville,PA,18401 +Eynon,PA,18403 +Beach Lake,PA,18405 +Simpson,PA,18407 +Clarks Summit,PA,18411 +Dalton,PA,18414 +Damascus,PA,18415 +Equinunk,PA,18417 +Factoryville,PA,18419 +Browndale,PA,18421 +Gouldsboro,PA,18424 +Greeley,PA,18425 +Greentown,PA,18426 +Hamlin,PA,18427 +Hawley,PA,18428 +Herrick Center,PA,18430 +Honesdale,PA,18431 +Mayfield,PA,18433 +Jessup,PA,18434 +Lackawaxen,PA,18435 +Lake Ariel,PA,18436 +Lake Como,PA,18437 +Lakeville,PA,18438 +Lakewood,PA,18439 +Lenoxville,PA,18441 +Milanville,PA,18443 +Moscow,PA,18444 +Newfoundland,PA,18445 +Nicholson,PA,18446 +Olyphant,PA,18447 +Paupack,PA,18451 +Peckville,PA,18452 +Pleasant Mount,PA,18453 +Preston Park,PA,18455 +Prompton,PA,18456 +Shohola,PA,18458 +South Sterling,PA,18460 +Starlight,PA,18461 +Starrucca,PA,18462 +Sterling,PA,18463 +Tafton,PA,18464 +Thompson,PA,18465 +Tobyhanna,PA,18466 +Tyler Hill,PA,18469 +Union Dale,PA,18470 +Waymart,PA,18472 +Scranton,PA,18503 +Scranton,PA,18504 +Scranton,PA,18505 +Moosic,PA,18507 +Scranton,PA,18508 +Scranton,PA,18509 +Scranton,PA,18510 +Dunmore,PA,18512 +Taylor,PA,18517 +Old Forge,PA,18518 +Dickson City,PA,18519 +Berwick,PA,18603 +Blakeslee,PA,18610 +College Miserico,PA,18612 +Dushore,PA,18614 +Falls,PA,18615 +Forksville,PA,18616 +Glen Lyon,PA,18617 +Harveys Lake,PA,18618 +Hillsgrove,PA,18619 +Hunlock Creek,PA,18621 +Huntington Mills,PA,18622 +Laceyville,PA,18623 +Lake Harmony,PA,18624 +Lopez,PA,18628 +Mehoopany,PA,18629 +Meshoppen,PA,18630 +Mifflinville,PA,18631 +Mildred,PA,18632 +Nanticoke,PA,18634 +Nescopeck,PA,18635 +Noxen,PA,18636 +Pittston,PA,18640 +Avoca,PA,18641 +Duryea,PA,18642 +West Pittston,PA,18643 +Wyoming,PA,18644 +Plymouth,PA,18651 +Mocanaqua,PA,18655 +Sweet Valley,PA,18656 +Center Moreland,PA,18657 +Wapwallopen,PA,18660 +White Haven,PA,18661 +Wilkes Barre,PA,18701 +Hanover Township,PA,18702 +Kingston,PA,18704 +Wilkes Barre,PA,18705 +Ashley,PA,18706 +Mountain Top,PA,18707 +Shavertown,PA,18708 +Luzerne,PA,18709 +Montrose,PA,18801 +Athens,PA,18810 +Brackney,PA,18812 +East Smithfield,PA,18817 +Friendsville,PA,18818 +Great Bend,PA,18821 +Hallstead,PA,18822 +Harford,PA,18823 +Hop Bottom,PA,18824 +Jackson,PA,18825 +Kingsley,PA,18826 +Lawton,PA,18828 +Le Raysville,PA,18829 +Little Meadows,PA,18830 +Milan,PA,18831 +Monroeton,PA,18832 +New Albany,PA,18833 +New Milford,PA,18834 +Rome,PA,18837 +Rushville,PA,18839 +Sayre,PA,18840 +South Gibson,PA,18842 +Springville,PA,18844 +Stevensville,PA,18845 +Sugar Run,PA,18846 +Susquehanna,PA,18847 +Towanda,PA,18848 +Ulster,PA,18850 +Warren Center,PA,18851 +Wyalusing,PA,18853 +Wysox,PA,18854 +New Britain,PA,18901 +Carversville,PA,18913 +Chalfont,PA,18914 +Colmar,PA,18915 +Dublin,PA,18917 +Erwinna,PA,18920 +Fountainville,PA,18923 +Furlong,PA,18925 +Hilltown,PA,18927 +Jamison,PA,18929 +Kintnersville,PA,18930 +Line Lexington,PA,18932 +Lumberville,PA,18933 +Mechanicsville,PA,18934 +Montgomeryville,PA,18936 +New Hope,PA,18938 +George School,PA,18940 +Ottsville,PA,18942 +Perkasie,PA,18944 +Pipersville,PA,18947 +Quakertown,PA,18951 +Richboro,PA,18954 +Richlandtown,PA,18955 +Sellersville,PA,18960 +Bethton,PA,18964 +Holland,PA,18966 +Telford,PA,18969 +Upper Black Eddy,PA,18972 +Warminster,PA,18974 +Warrington,PA,18976 +Washington Cross,PA,18977 +Ogontz Campus,PA,19001 +Maple Glen,PA,19002 +Ardmore,PA,19003 +Bala Cynwyd,PA,19004 +Huntingdon Valle,PA,19006 +Tullytown,PA,19007 +Broomall,PA,19008 +Bryn Mawr,PA,19010 +Cheltenham,PA,19012 +Chester,PA,19013 +Aston,PA,19014 +Brookhaven,PA,19015 +Primos Secane,PA,19018 +Bensalem,PA,19020 +Croydon,PA,19021 +Crum Lynne,PA,19022 +Collingdale,PA,19023 +Dresher,PA,19025 +Pilgrim Gardens,PA,19026 +Lester,PA,19029 +Fairless Hills,PA,19030 +Flourtown,PA,19031 +Folcroft,PA,19032 +Folsom,PA,19033 +Fort Washington,PA,19034 +Gladwyne,PA,19035 +Glenolden,PA,19036 +Glenside,PA,19038 +Hatboro,PA,19040 +Haverford,PA,19041 +Holmes,PA,19043 +Horsham,PA,19044 +Meadowbrook,PA,19046 +Penndel,PA,19047 +Yeadon,PA,19050 +Feasterville Tre,PA,19053 +Levittown,PA,19054 +Levittown,PA,19055 +Levittown,PA,19056 +Levittown,PA,19057 +Boothwyn,PA,19061 +Glen Riddle Lima,PA,19063 +Springfield,PA,19064 +Merion Station,PA,19066 +Yardley,PA,19067 +Morton,PA,19070 +Narberth,PA,19072 +Newtown Square,PA,19073 +Norwood,PA,19074 +Oreland,PA,19075 +Prospect Park,PA,19076 +Ridley Park,PA,19078 +Sharon Hill,PA,19079 +Swarthmore,PA,19081 +Upper Darby,PA,19082 +Havertown,PA,19083 +Villanova,PA,19085 +Wallingford,PA,19086 +Radnor,PA,19087 +Willow Grove Nas,PA,19090 +Woodlyn,PA,19094 +Wyncote,PA,19095 +Wynnewood,PA,19096 +Philadelphia,PA,19102 +Philadelphia,PA,19103 +Philadelphia,PA,19104 +Philadelphia,PA,19106 +Philadelphia,PA,19107 +Philadelphia,PA,19111 +Philadelphia,PA,19112 +Philadelphia,PA,19113 +Philadelphia,PA,19114 +Philadelphia,PA,19115 +Philadelphia,PA,19116 +Elkins Park,PA,19117 +Philadelphia,PA,19118 +Philadelphia,PA,19119 +Philadelphia,PA,19120 +Philadelphia,PA,19121 +Philadelphia,PA,19122 +Philadelphia,PA,19123 +Philadelphia,PA,19124 +Philadelphia,PA,19125 +Philadelphia,PA,19126 +Philadelphia,PA,19127 +Philadelphia,PA,19128 +Philadelphia,PA,19129 +Philadelphia,PA,19130 +Philadelphia,PA,19131 +Philadelphia,PA,19132 +Philadelphia,PA,19133 +Philadelphia,PA,19134 +Philadelphia,PA,19135 +Philadelphia,PA,19136 +Philadelphia,PA,19137 +Philadelphia,PA,19138 +Philadelphia,PA,19139 +Philadelphia,PA,19140 +Philadelphia,PA,19141 +Philadelphia,PA,19142 +Philadelphia,PA,19143 +Philadelphia,PA,19144 +Philadelphia,PA,19145 +Philadelphia,PA,19146 +Philadelphia,PA,19147 +Philadelphia,PA,19148 +Philadelphia,PA,19149 +Philadelphia,PA,19150 +Philadelphia,PA,19151 +Philadelphia,PA,19152 +Philadelphia,PA,19153 +Philadelphia,PA,19154 +Paoli,PA,19301 +Atglen,PA,19310 +Avondale,PA,19311 +Berwyn,PA,19312 +Chadds Ford,PA,19317 +Cheyney,PA,19319 +Coatesville,PA,19320 +Cochranville,PA,19330 +Devon,PA,19333 +Downingtown,PA,19335 +Exton,PA,19341 +Glen Mills,PA,19342 +Glenmoore,PA,19343 +Honey Brook,PA,19344 +Kelton,PA,19346 +Kennett Square,PA,19348 +Landenberg,PA,19350 +Lincoln Universi,PA,19352 +Frazer,PA,19355 +Nottingham,PA,19362 +Oxford,PA,19363 +Parkesburg,PA,19365 +Thorndale,PA,19372 +Thornton,PA,19373 +Toughkenamon,PA,19374 +West Chester,PA,19380 +West Chester,PA,19382 +West Grove,PA,19390 +Norristown,PA,19401 +Eagleville,PA,19403 +Bridgeport,PA,19405 +King Of Prussia,PA,19406 +Penllyn,PA,19422 +Chester Springs,PA,19425 +Collegeville,PA,19426 +West Conshohocke,PA,19428 +Frederick,PA,19435 +Gwynedd,PA,19436 +Harleysville,PA,19438 +Hatfield,PA,19440 +Lafayette Hill,PA,19444 +Lansdale,PA,19446 +Mont Clare,PA,19453 +North Wales,PA,19454 +Phoenixville,PA,19460 +Plymouth Meeting,PA,19462 +Sanatoga,PA,19464 +Limerick,PA,19468 +Schwenksville,PA,19473 +Spring City,PA,19475 +Spring House,PA,19477 +Zieglersville,PA,19492 +Adamstown,PA,19501 +Bally,PA,19503 +Barto,PA,19504 +Bechtelsville,PA,19505 +Bernville,PA,19506 +Bethel,PA,19507 +Birdsboro,PA,19508 +Blandon,PA,19510 +Boyertown,PA,19512 +Douglassville,PA,19518 +Elverson,PA,19520 +Evansville,PA,19522 +Gilbertsville,PA,19525 +Hamburg,PA,19526 +Kempton,PA,19529 +Kutztown,PA,19530 +Leesport,PA,19533 +Lenhartsville,PA,19534 +Mertztown,PA,19539 +Mohnton,PA,19540 +Mohrsville,PA,19541 +Morgantown,PA,19543 +Oley,PA,19547 +Port Clinton,PA,19549 +Robesonia,PA,19551 +Shoemakersville,PA,19555 +Temple,PA,19560 +Topton,PA,19562 +Wernersville,PA,19565 +Womelsdorf,PA,19567 +Reading,PA,19601 +Reading,PA,19602 +Reading,PA,19604 +Reading,PA,19605 +Mount Penn,PA,19606 +Shillington,PA,19607 +Sinking Spring,PA,19608 +West Lawn,PA,19609 +Wyomissing,PA,19610 +Reading,PA,19611 +Ashaway,RI,2804 +Barrington,RI,2806 +Block Island,RI,2807 +Bradford,RI,2808 +Bristol,RI,2809 +Richmond,RI,2812 +Charlestown,RI,2813 +Chepachet,RI,2814 +Clayville,RI,2815 +Coventry,RI,2816 +West Greenwich,RI,2817 +East Greenwich,RI,2818 +2821,RI,2821 +Exeter,RI,2822 +Foster,RI,2825 +Greene,RI,2827 +Greenville,RI,2828 +Harrisville,RI,2830 +Hope,RI,2831 +Richmond,RI,2832 +Jamestown,RI,2835 +Richmond,RI,2836 +Little Compton,RI,2837 +Manville,RI,2838 +Middletown,RI,2840 +North Kingstown,RI,2852 +North Scituate,RI,2857 +Oakland,RI,2858 +Pascoag,RI,2859 +Pawtucket,RI,2860 +Pawtucket,RI,2861 +Central Falls,RI,2863 +Cumberland,RI,2864 +Lincoln,RI,2865 +Portsmouth,RI,2871 +Prudence Island,RI,2872 +Saunderstown,RI,2874 +Slatersville,RI,2876 +Slocum,RI,2877 +Tiverton,RI,2878 +Narragansett,RI,2879 +Kingston,RI,2881 +Narragansett,RI,2882 +Peace Dale,RI,2883 +Warren,RI,2885 +Warwick,RI,2886 +Warwick,RI,2888 +Warwick,RI,2889 +Westerly,RI,2891 +Richmond,RI,2892 +West Warwick,RI,2893 +Wood River Junct,RI,2894 +North Smithfield,RI,2895 +Richmond,RI,2898 +Providence,RI,2903 +Centredale,RI,2904 +Cranston,RI,2905 +Providence,RI,2906 +Cranston,RI,2907 +Providence,RI,2908 +Cranston,RI,2909 +Cranston,RI,2910 +Centredale,RI,2911 +East Providence,RI,2914 +Riverside,RI,2915 +Rumford,RI,2916 +Smithfield,RI,2917 +Cranston,RI,2919 +Cranston,RI,2920 +Cranston,RI,2921 +Alcolu,SC,29001 +Bamberg,SC,29003 +Batesburg,SC,29006 +Bethune,SC,29009 +Bishopville,SC,29010 +Blackstock,SC,29014 +Blair,SC,29015 +Blythewood,SC,29016 +Bowman,SC,29018 +Camden,SC,29020 +Cameron,SC,29030 +Carlisle,SC,29031 +Cassatt,SC,29032 +Cayce,SC,29033 +Chapin,SC,29036 +Chappells,SC,29037 +Cope,SC,29038 +Cordova,SC,29039 +Dalzell,SC,29040 +Denmark,SC,29042 +Eastover,SC,29044 +Elgin,SC,29045 +Elliott,SC,29046 +Elloree,SC,29047 +Eutawville,SC,29048 +Gable,SC,29051 +Gadsden,SC,29052 +Gaston,SC,29053 +Gilbert,SC,29054 +Great Falls,SC,29055 +Greeleyville,SC,29056 +Heath Springs,SC,29058 +Holly Hill,SC,29059 +Hopkins,SC,29061 +Irmo,SC,29063 +Jenkinsville,SC,29065 +Kershaw,SC,29067 +Lamar,SC,29069 +Leesville,SC,29070 +Lexington,SC,29072 +Lexington,SC,29073 +Little Mountain,SC,29075 +Lone Star,SC,29077 +Lugoff,SC,29078 +Lynchburg,SC,29080 +Ehrhardt,SC,29081 +Lodge,SC,29082 +Mc Bee,SC,29101 +Paxville,SC,29102 +Saint Charles,SC,29104 +Monetta,SC,29105 +Neeses,SC,29107 +Newberry,SC,29108 +New Zion,SC,29111 +North,SC,29112 +Norway,SC,29113 +Olanta,SC,29114 +Orangeburg,SC,29115 +Pelion,SC,29123 +Pinewood,SC,29125 +Pomaria,SC,29126 +Prosperity,SC,29127 +Rembert,SC,29128 +Ridge Spring,SC,29129 +Ridgeway,SC,29130 +Rimini,SC,29131 +Rowesville,SC,29133 +Fort Motte,SC,29135 +Salley,SC,29137 +Saluda,SC,29138 +Santee,SC,29142 +Silverstreet,SC,29145 +Springfield,SC,29146 +Summerton,SC,29148 +Oswego,SC,29150 +Shaw A F B,SC,29152 +Sumter,SC,29154 +Swansea,SC,29160 +Timmonsville,SC,29161 +Turbeville,SC,29162 +Vance,SC,29163 +Wagener,SC,29164 +Ward,SC,29166 +Wedgefield,SC,29168 +West Columbia,SC,29169 +West Columbia,SC,29170 +West Columbia,SC,29172 +Westville,SC,29175 +Whitmire,SC,29178 +Winnsboro,SC,29180 +Columbia,SC,29201 +Columbia,SC,29203 +Columbia,SC,29204 +Columbia,SC,29205 +Columbia,SC,29206 +Columbia,SC,29209 +Columbia,SC,29210 +Columbia,SC,29212 +Columbia,SC,29223 +Spartanburg,SC,29301 +Spartanburg,SC,29302 +Valley Falls,SC,29303 +Buffalo,SC,29321 +Campobello,SC,29322 +Chesnee,SC,29323 +Clinton,SC,29325 +Cowpens,SC,29330 +Cross Hill,SC,29332 +Duncan,SC,29334 +Enoree,SC,29335 +Gaffney,SC,29340 +Inman,SC,29349 +Joanna,SC,29351 +Kelton,SC,29353 +Kinards,SC,29355 +Landrum,SC,29356 +Ora,SC,29360 +Lyman,SC,29365 +Moore,SC,29369 +Mountville,SC,29370 +Pacolet,SC,29372 +Glenn Springs,SC,29374 +Roebuck,SC,29376 +Union,SC,29379 +Waterloo,SC,29384 +Wellford,SC,29385 +Woodruff,SC,29388 +Charleston,SC,29401 +Charleston,SC,29403 +Charleston,SC,29404 +Charleston,SC,29405 +North Charleston,SC,29406 +Charleston,SC,29407 +Charleston,SC,29412 +Charleston,SC,29414 +Charleston,SC,29418 +Charleston,SC,29420 +Jericho,SC,29426 +Awendaw,SC,29429 +Bonneau,SC,29431 +Branchville,SC,29432 +Cordesville,SC,29434 +Cottageville,SC,29435 +Cross,SC,29436 +Dorchester,SC,29437 +Edisto Island,SC,29438 +Georgetown,SC,29440 +Mount Holly,SC,29445 +Green Pond,SC,29446 +Harleyville,SC,29448 +Meggett,SC,29449 +Huger,SC,29450 +Isle Of Palms,SC,29451 +Shulerville,SC,29453 +Johns Island,SC,29455 +Ladson,SC,29456 +Mc Clellanville,SC,29458 +Oakley,SC,29461 +Mount Pleasant,SC,29464 +Pineville,SC,29468 +Pinopolis,SC,29469 +Ravenel,SC,29470 +Reevesville,SC,29471 +Ridgeville,SC,29472 +Round O,SC,29474 +Ruffin,SC,29475 +Saint George,SC,29477 +Alvin,SC,29479 +Smoaks,SC,29481 +Sullivans Island,SC,29482 +Summerville,SC,29483 +Summerville,SC,29485 +Wadmalaw Island,SC,29487 +Ritter,SC,29488 +Wando,SC,29492 +Florence,SC,29501 +Florence,SC,29505 +Quinby,SC,29506 +Andrews,SC,29510 +Aynor,SC,29511 +Bennettsville,SC,29512 +Blenheim,SC,29516 +Cades,SC,29518 +Cheraw,SC,29520 +Clio,SC,29525 +Conway,SC,29526 +Bucksport,SC,29527 +Coward,SC,29530 +Darlington,SC,29532 +Dillon,SC,29536 +Effingham,SC,29541 +Fork,SC,29543 +Galivants Ferry,SC,29544 +Green Sea,SC,29545 +Gresham,SC,29546 +South Of The Bor,SC,29547 +Hartsville,SC,29550 +Hemingway,SC,29554 +Johnsonville,SC,29555 +Kingstree,SC,29556 +Lake City,SC,29560 +Lake View,SC,29563 +Lane,SC,29564 +Latta,SC,29565 +Little River,SC,29566 +Little Rock,SC,29567 +Longs,SC,29568 +Loris,SC,29569 +Mc Coll,SC,29570 +Marion,SC,29571 +Myrtle Beach,SC,29572 +Mullins,SC,29574 +Surfside Beach,SC,29575 +Murrells Inlet,SC,29576 +Myrtle Beach,SC,29577 +Nesmith,SC,29580 +Nichols,SC,29581 +Cherry Grove Bea,SC,29582 +Pamplico,SC,29583 +Patrick,SC,29584 +Pawleys Island,SC,29585 +Salters,SC,29590 +Scranton,SC,29591 +Sellers,SC,29592 +Society Hill,SC,29593 +Wallace,SC,29596 +Greenville,SC,29601 +Greenville,SC,29605 +Greenville,SC,29607 +Greenville,SC,29609 +Greenville,SC,29611 +Greenville,SC,29615 +Abbeville,SC,29620 +Anderson,SC,29621 +Anderson,SC,29624 +Anderson,SC,29625 +Belton,SC,29627 +Calhoun Falls,SC,29628 +Central,SC,29630 +Clemson,SC,29631 +Cleveland,SC,29635 +Shoals Junction,SC,29638 +Due West,SC,29639 +Easley,SC,29640 +Easley,SC,29642 +Fair Play,SC,29643 +Fountain Inn,SC,29644 +Ora,SC,29645 +Greenwood,SC,29646 +Greenwood,SC,29649 +Greer,SC,29650 +Greer,SC,29651 +Hodges,SC,29653 +Honea Path,SC,29654 +Iva,SC,29655 +Liberty,SC,29657 +Long Creek,SC,29658 +Lowndesville,SC,29659 +Marietta,SC,29661 +Mauldin,SC,29662 +Mountain Rest,SC,29664 +Ninety Six,SC,29666 +Cateechee,SC,29667 +Pelzer,SC,29669 +Pendleton,SC,29670 +Pickens,SC,29671 +Piedmont,SC,29673 +Salem,SC,29676 +Seneca,SC,29678 +Simpsonville,SC,29681 +Six Mile,SC,29682 +Starr,SC,29684 +Sunset,SC,29685 +Tamassee,SC,29686 +Taylors,SC,29687 +Tigerville,SC,29688 +Townville,SC,29689 +Travelers Rest,SC,29690 +Walhalla,SC,29691 +Ware Shoals,SC,29692 +Madison,SC,29693 +West Union,SC,29696 +Williamston,SC,29697 +Cherokee Falls,SC,29702 +Catawba,SC,29704 +Chester,SC,29706 +Chesterfield,SC,29709 +Lake Wylie,SC,29710 +Edgemoor,SC,29712 +Fort Lawn,SC,29714 +Tega Cay,SC,29715 +Hickory Grove,SC,29717 +Jefferson,SC,29718 +Lancaster,SC,29720 +Mc Connells,SC,29726 +Mount Croghan,SC,29727 +Pageland,SC,29728 +Richburg,SC,29729 +Rock Hill,SC,29730 +Rock Hill,SC,29732 +Ruby,SC,29741 +Sharon,SC,29742 +Smyrna,SC,29743 +York,SC,29745 +Aiken,SC,29801 +Aiken,SC,29803 +New Ellenton,SC,29809 +Allendale,SC,29810 +Barnwell,SC,29812 +Blackville,SC,29817 +Bradley,SC,29819 +Clarks Hill,SC,29821 +Edgefield,SC,29824 +Fairfax,SC,29827 +Graniteville,SC,29829 +Jackson,SC,29831 +Johnston,SC,29832 +Mc Cormick,SC,29835 +Martin,SC,29836 +Modoc,SC,29838 +Mount Carmel,SC,29840 +Beech Island,SC,29841 +Olar,SC,29843 +Plum Branch,SC,29845 +Trenton,SC,29847 +Troy,SC,29848 +Ulmer,SC,29849 +Warrenville,SC,29851 +Williston,SC,29853 +Windsor,SC,29856 +Burton,SC,29902 +Bluffton,SC,29910 +Brunson,SC,29911 +Early Branch,SC,29916 +Estill,SC,29918 +St Helena Island,SC,29920 +Garnett,SC,29922 +Hampton,SC,29924 +Hilton Head Isla,SC,29926 +Hardeeville,SC,29927 +Hilton Head Isla,SC,29928 +Islandton,SC,29929 +Luray,SC,29932 +Pineland,SC,29934 +Port Royal,SC,29935 +Coosawatchie,SC,29936 +Seabrook,SC,29940 +Tillman,SC,29943 +Varnville,SC,29944 +Yemassee,SC,29945 +Alcester,SD,57001 +Aurora,SD,57002 +Baltic,SD,57003 +Beresford,SD,57004 +Corson,SD,57005 +Brookings,SD,57006 +Burbank,SD,57010 +Canistota,SD,57012 +Canton,SD,57013 +Centerville,SD,57014 +Chancellor,SD,57015 +Chester,SD,57016 +Colman,SD,57017 +Colton,SD,57018 +Crooks,SD,57020 +Davis,SD,57021 +Dell Rapids,SD,57022 +Egan,SD,57024 +Elk Point,SD,57025 +Elkton,SD,57026 +Fairview,SD,57027 +Flandreau,SD,57028 +Freeman,SD,57029 +Garretson,SD,57030 +Gayville,SD,57031 +Harrisburg,SD,57032 +Hartford,SD,57033 +Hudson,SD,57034 +Humboldt,SD,57035 +Hurley,SD,57036 +Irene,SD,57037 +Jefferson,SD,57038 +Lennox,SD,57039 +Lesterville,SD,57040 +Madison,SD,57042 +Marion,SD,57043 +Meckling,SD,57044 +Menno,SD,57045 +Mission Hill,SD,57046 +Monroe,SD,57047 +Montrose,SD,57048 +Dakota Dunes,SD,57049 +Nunda,SD,57050 +Oldham,SD,57051 +Olivet,SD,57052 +Parker,SD,57053 +Ramona,SD,57054 +Renner,SD,57055 +Rutland,SD,57057 +Salem,SD,57058 +Scotland,SD,57059 +Sherman,SD,57060 +Sinai,SD,57061 +Springfield,SD,57062 +Tabor,SD,57063 +Tea,SD,57064 +Trent,SD,57065 +Tyndall,SD,57066 +Utica,SD,57067 +Valley Springs,SD,57068 +Vermillion,SD,57069 +Viborg,SD,57070 +Volga,SD,57071 +Volin,SD,57072 +Wakonda,SD,57073 +Ward,SD,57074 +Wentworth,SD,57075 +Winfred,SD,57076 +Worthing,SD,57077 +Yankton,SD,57078 +Sioux Falls,SD,57102 +Sioux Falls,SD,57103 +Sioux Falls,SD,57104 +Sioux Falls,SD,57105 +Sioux Falls,SD,57106 +Sioux Falls,SD,57107 +Buffalo Ridge,SD,57115 +Sioux Falls,SD,57116 +Watertown,SD,57201 +Waverly,SD,57202 +Arlington,SD,57212 +Astoria,SD,57213 +Badger,SD,57214 +Big Stone City,SD,57216 +Bradley,SD,57217 +Brandt,SD,57218 +Butler,SD,57219 +Bruce,SD,57220 +Bryant,SD,57221 +Castlewood,SD,57223 +Claire City,SD,57224 +Clark,SD,57225 +Altamont,SD,57226 +Corona,SD,57227 +57230,SD,57230 +De Smet,SD,57231 +Eden,SD,57232 +Erwin,SD,57233 +Dempster,SD,57234 +Florence,SD,57235 +Garden City,SD,57236 +Gary,SD,57237 +Bemis,SD,57238 +Grenville,SD,57239 +Hayti,SD,57241 +Hazel,SD,57242 +Henry,SD,57243 +Hetland,SD,57244 +Kranzburg,SD,57245 +Labolt,SD,57246 +Lake City,SD,57247 +Lake Norden,SD,57248 +Lake Preston,SD,57249 +Marvin,SD,57251 +Milbank,SD,57252 +New Effington,SD,57255 +Ortley,SD,57256 +Peever,SD,57257 +Raymond,SD,57258 +Albee,SD,57259 +Rosholt,SD,57260 +Roslyn,SD,57261 +Agency Village,SD,57262 +South Shore,SD,57263 +Stockholm,SD,57264 +Strandburg,SD,57265 +Summit,SD,57266 +Toronto,SD,57268 +Twin Brooks,SD,57269 +Veblen,SD,57270 +Vienna,SD,57271 +Wallace,SD,57272 +Waubay,SD,57273 +Lily,SD,57274 +White,SD,57276 +Willow Lake,SD,57278 +Wilmot,SD,57279 +Loomis,SD,57301 +Farmer,SD,57311 +Alpena,SD,57312 +Armour,SD,57313 +Forestburg,SD,57314 +Avon,SD,57315 +Bancroft,SD,57316 +Bonesteel,SD,57317 +Dolton,SD,57319 +Canova,SD,57321 +Carpenter,SD,57322 +Carthage,SD,57323 +Cavour,SD,57324 +Chamberlain,SD,57325 +Corsica,SD,57328 +Dante,SD,57329 +Delmont,SD,57330 +Dimock,SD,57331 +Emery,SD,57332 +Ethan,SD,57334 +Fairfax,SD,57335 +57336,SD,57336 +Fedora,SD,57337 +Fort Thompson,SD,57339 +Fulton,SD,57340 +Gann Valley,SD,57341 +Geddes,SD,57342 +Harrison,SD,57344 +Highmore,SD,57345 +Hitchcock,SD,57348 +Roswell,SD,57349 +Huron,SD,57350 +Iroquois,SD,57353 +Kaylor,SD,57354 +Kimball,SD,57355 +Lake Andes,SD,57356 +Ravinia,SD,57357 +Lane,SD,57358 +Letcher,SD,57359 +Marty,SD,57361 +Miller,SD,57362 +Mount Vernon,SD,57363 +New Holland,SD,57364 +Parkston,SD,57366 +Plankinton,SD,57368 +Academy,SD,57369 +Pukwana,SD,57370 +Ree Heights,SD,57371 +Saint Lawrence,SD,57373 +Spencer,SD,57374 +Stickney,SD,57375 +Tripp,SD,57376 +Virgil,SD,57379 +Wagner,SD,57380 +Wessington,SD,57381 +Wessington Sprin,SD,57382 +White Lake,SD,57383 +Wolsey,SD,57384 +Woonsocket,SD,57385 +Yale,SD,57386 +Aberdeen,SD,57401 +Akaska,SD,57420 +Amherst,SD,57421 +Andover,SD,57422 +Athol,SD,57424 +57425,SD,57425 +Barnard,SD,57426 +Bath,SD,57427 +Bowdle,SD,57428 +Brentford,SD,57429 +Britton,SD,57430 +Claremont,SD,57432 +Columbia,SD,57433 +Verdon,SD,57434 +Cresbard,SD,57435 +Doland,SD,57436 +Artas,SD,57437 +Miranda,SD,57438 +Frankfort,SD,57440 +Frederick,SD,57441 +Gettysburg,SD,57442 +Groton,SD,57445 +Hecla,SD,57446 +Hosmer,SD,57448 +Houghton,SD,57449 +Hoven,SD,57450 +Ipswich,SD,57451 +Java,SD,57452 +Langford,SD,57454 +Lebanon,SD,57455 +Leola,SD,57456 +Longlake,SD,57457 +Mansfield,SD,57460 +Mellette,SD,57461 +Mina,SD,57462 +Northville,SD,57465 +Onaka,SD,57466 +Orient,SD,57467 +Pierpont,SD,57468 +Redfield,SD,57469 +Rockham,SD,57470 +Roscoe,SD,57471 +Selby,SD,57472 +Seneca,SD,57473 +Stratford,SD,57474 +Tolstoy,SD,57475 +Tulare,SD,57476 +Turton,SD,57477 +Warner,SD,57479 +Wetonka,SD,57481 +Zell,SD,57483 +Pierre,SD,57501 +Agar,SD,57520 +Belvidere,SD,57521 +Blunt,SD,57522 +Lucas,SD,57523 +Carter,SD,57526 +Cedarbutte,SD,57527 +Colome,SD,57528 +Dallas,SD,57529 +Draper,SD,57531 +Fort Pierre,SD,57532 +Dixon,SD,57533 +Hamill,SD,57534 +Harrold,SD,57536 +Hayes,SD,57537 +Herrick,SD,57538 +Holabird,SD,57540 +Ideal,SD,57541 +Iona,SD,57542 +Kadoka,SD,57543 +Kennebec,SD,57544 +Keyapaha,SD,57545 +Long Valley,SD,57547 +Lower Brule,SD,57548 +Vetal,SD,57551 +Ottumwa,SD,57552 +Milesville,SD,57553 +Mission,SD,57555 +Mission Ridge,SD,57557 +Murdo,SD,57559 +Norris,SD,57560 +Okaton,SD,57562 +Onida,SD,57564 +Parmelee,SD,57566 +Philip,SD,57567 +Presho,SD,57568 +Reliance,SD,57569 +Saint Charles,SD,57571 +Saint Francis,SD,57572 +Tuthill,SD,57574 +Vivian,SD,57576 +Wanblee,SD,57577 +Wewela,SD,57578 +White River,SD,57579 +Clearfield,SD,57580 +Witten,SD,57584 +Wood,SD,57585 +Mobridge,SD,57601 +Bison,SD,57620 +Cherry Creek,SD,57622 +Dupree,SD,57623 +Faith,SD,57626 +Firesteel,SD,57628 +Glad Valley,SD,57629 +Glencross,SD,57630 +Glenham,SD,57631 +Herreid,SD,57632 +Isabel,SD,57633 +Keldron,SD,57634 +Lemmon,SD,57638 +Lodgepole,SD,57640 +Mc Intosh,SD,57641 +Mc Laughlin,SD,57642 +Mahto,SD,57643 +Meadow,SD,57644 +Morristown,SD,57645 +Mound City,SD,57646 +Parade,SD,57647 +Pollock,SD,57648 +Prairie City,SD,57649 +Ralph,SD,57650 +Reva,SD,57651 +Shadehill,SD,57653 +Timber Lake,SD,57656 +Trail City,SD,57657 +Wakpala,SD,57658 +Watauga,SD,57660 +Rockerville,SD,57701 +Silver City,SD,57702 +Ellsworth Afb,SD,57706 +Bethlehem,SD,57708 +Allen,SD,57714 +Denby,SD,57716 +Belle Fourche,SD,57717 +Black Hawk,SD,57718 +Box Elder,SD,57719 +Buffalo,SD,57720 +Buffalo Gap,SD,57722 +Sky Ranch,SD,57724 +Caputa,SD,57725 +Creighton,SD,57729 +Crazy Horse,SD,57730 +Deadwood,SD,57732 +Edgemont,SD,57735 +Elm Springs,SD,57736 +Enning,SD,57737 +Fairburn,SD,57738 +Fort Meade,SD,57741 +Fruitdale,SD,57742 +Hermosa,SD,57744 +Hill City,SD,57745 +Hot Springs,SD,57747 +Plainview,SD,57748 +Interior,SD,57750 +Keystone,SD,57751 +Kyle,SD,57752 +Spearfish Canyon,SD,57754 +Ludlow,SD,57755 +Manderson,SD,57756 +Marcus,SD,57757 +Mud Butte,SD,57758 +Nemo,SD,57759 +Newell,SD,57760 +New Underwood,SD,57761 +Nisland,SD,57762 +Oelrichs,SD,57763 +Opal,SD,57765 +Oral,SD,57766 +Owanka,SD,57767 +Piedmont,SD,57769 +Pine Ridge,SD,57770 +Porcupine,SD,57772 +Provo,SD,57774 +Cottonwood,SD,57775 +Redowl,SD,57777 +Rochford,SD,57778 +Saint Onge,SD,57779 +Scenic,SD,57780 +Smithwick,SD,57782 +Spearfish,SD,57783 +Hereford,SD,57785 +Stoneville,SD,57787 +Vale,SD,57788 +Wall,SD,57790 +Wasta,SD,57791 +White Owl,SD,57792 +Whitewood,SD,57793 +Wounded Knee,SD,57794 +Zeona,SD,57795 +Adams,TN,37010 +Alexandria,TN,37012 +Antioch,TN,37013 +Arrington,TN,37014 +Ashland City,TN,37015 +Auburntown,TN,37016 +Beechgrove,TN,37018 +Belfast,TN,37019 +Bell Buckle,TN,37020 +Bethpage,TN,37022 +Big Rock,TN,37023 +Bon Aqua,TN,37025 +Bradyville,TN,37026 +Brentwood,TN,37027 +Bumpus Mills,TN,37028 +Burns,TN,37029 +Defeated,TN,37030 +Castalian Spring,TN,37031 +Cedar Hill,TN,37032 +Centerville,TN,37033 +Chapel Hill,TN,37034 +Chapmansboro,TN,37035 +Charlotte,TN,37036 +Christiana,TN,37037 +Clarksville,TN,37040 +Clarksville,TN,37042 +Clarksville,TN,37043 +College Grove,TN,37046 +Cornersville,TN,37047 +Cottontown,TN,37048 +Cross Plains,TN,37049 +Cumberland City,TN,37050 +Cumberland Furna,TN,37051 +Cunningham,TN,37052 +Dickson,TN,37055 +Dixon Springs,TN,37057 +Dover,TN,37058 +Dowelltown,TN,37059 +Eagleville,TN,37060 +Erin,TN,37061 +Fairview,TN,37062 +Franklin,TN,37064 +Gallatin,TN,37066 +Goodlettsville,TN,37072 +Greenbrier,TN,37073 +Hartsville,TN,37074 +Hendersonville,TN,37075 +Hermitage,TN,37076 +Hurricane Mills,TN,37078 +Indian Mound,TN,37079 +Joelton,TN,37080 +Kingston Springs,TN,37082 +Lafayette,TN,37083 +Lascassas,TN,37085 +La Vergne,TN,37086 +Lebanon,TN,37087 +Lewisburg,TN,37091 +Gassaway,TN,37095 +Flatwoods,TN,37096 +Lobelville,TN,37097 +Wrigley,TN,37098 +Mc Ewen,TN,37101 +Plaza,TN,37110 +Madison,TN,37115 +Milton,TN,37118 +Mount Juliet,TN,37122 +Murfreesboro,TN,37129 +Murfreesboro,TN,37130 +New Johnsonville,TN,37134 +Nolensville,TN,37135 +Nunnelly,TN,37137 +Old Hickory,TN,37138 +Only,TN,37140 +Orlinda,TN,37141 +Palmyra,TN,37142 +Pegram,TN,37143 +Petersburg,TN,37144 +Pleasant Shade,TN,37145 +Pleasant View,TN,37146 +Pleasantville,TN,37147 +Portland,TN,37148 +Readyville,TN,37149 +Red Boiling Spri,TN,37150 +Riddleton,TN,37151 +Rockvale,TN,37153 +Royal,TN,37160 +Smithville,TN,37166 +Smyrna,TN,37167 +Southside,TN,37171 +Springfield,TN,37172 +Spring Hill,TN,37174 +Stewart,TN,37175 +Tennessee Ridge,TN,37178 +Thompsons Statio,TN,37179 +Unionville,TN,37180 +Vanleer,TN,37181 +Wartrace,TN,37183 +Watertown,TN,37184 +Waverly,TN,37185 +Westmoreland,TN,37186 +White Bluff,TN,37187 +White House,TN,37188 +Whites Creek,TN,37189 +Woodbury,TN,37190 +Woodlawn,TN,37191 +Nashville,TN,37201 +Nashville,TN,37203 +Melrose,TN,37204 +Nashville,TN,37205 +Nashville,TN,37206 +Nashville,TN,37207 +Nashville,TN,37208 +Nashville,TN,37209 +Nashville,TN,37210 +Nashville,TN,37211 +Nashville,TN,37212 +Nashville,TN,37213 +Nashville,TN,37214 +Nashville,TN,37215 +Nashville,TN,37216 +Nashville,TN,37217 +Nashville,TN,37218 +Nashville,TN,37219 +Nashville,TN,37220 +Bellevue,TN,37221 +Nashville,TN,37228 +Altamont,TN,37301 +Apison,TN,37302 +Athens,TN,37303 +Beersheba Spring,TN,37305 +Belvidere,TN,37306 +Benton,TN,37307 +Birchwood,TN,37308 +Calhoun,TN,37309 +Charleston,TN,37310 +Cleveland,TN,37311 +Cleveland,TN,37312 +Coalmont,TN,37313 +Postelle,TN,37317 +Cowan,TN,37318 +Dayton,TN,37321 +Decatur,TN,37322 +Decherd,TN,37324 +Delano,TN,37325 +Dunlap,TN,37327 +Elora,TN,37328 +Englewood,TN,37329 +Estill Springs,TN,37330 +Etowah,TN,37331 +Evensville,TN,37332 +Farner,TN,37333 +Fayetteville,TN,37334 +Flintville,TN,37335 +Georgetown,TN,37336 +Grandview,TN,37337 +Graysville,TN,37338 +Gruetli Laager,TN,37339 +Guild,TN,37340 +Harrison,TN,37341 +Hillsboro,TN,37342 +Hixson,TN,37343 +Huntland,TN,37345 +Kimball,TN,37347 +Kelso,TN,37348 +Lookout Mountain,TN,37350 +Lynchburg,TN,37352 +Mc Donald,TN,37353 +Hiwassee College,TN,37354 +Manchester,TN,37355 +Monteagle,TN,37356 +Morrison,TN,37357 +Mulberry,TN,37359 +Normandy,TN,37360 +Ocoee,TN,37361 +Oldfort,TN,37362 +Ooltewah,TN,37363 +Palmer,TN,37365 +Pelham,TN,37366 +Pikeville,TN,37367 +Reliance,TN,37369 +Riceville,TN,37370 +Sale Creek,TN,37373 +Sequatchie,TN,37374 +Sewanee,TN,37375 +Sherwood,TN,37376 +Signal Mountain,TN,37377 +Soddy Daisy,TN,37379 +South Pittsburg,TN,37380 +Spring City,TN,37381 +Tellico Plains,TN,37385 +Tracy City,TN,37387 +Dickel,TN,37388 +Turtletown,TN,37391 +Whiteside,TN,37396 +Whitwell,TN,37397 +Winchester,TN,37398 +Chattanooga,TN,37402 +Chattanooga,TN,37403 +Chattanooga,TN,37404 +Chattanooga,TN,37405 +Chattanooga,TN,37406 +Chattanooga,TN,37407 +Chattanooga,TN,37408 +Chattanooga,TN,37409 +Chattanooga,TN,37410 +Chattanooga,TN,37411 +East Ridge,TN,37412 +Red Bank,TN,37415 +Chattanooga,TN,37416 +Chattanooga,TN,37419 +Chattanooga,TN,37421 +Johnson City,TN,37601 +Johnson City,TN,37604 +Gray,TN,37615 +Afton,TN,37616 +Blountville,TN,37617 +Bluff City,TN,37618 +Bristol,TN,37620 +Butler,TN,37640 +Chuckey,TN,37641 +Church Hill,TN,37642 +Elizabethton,TN,37643 +Mount Carmel,TN,37645 +Erwin,TN,37650 +Fall Branch,TN,37656 +Flag Pond,TN,37657 +Hampton,TN,37658 +Jonesborough,TN,37659 +Bloomingdale,TN,37660 +Colonial Heights,TN,37663 +Kingsport,TN,37664 +Lynn Garden,TN,37665 +Laurel Bloomery,TN,37680 +Washington Colle,TN,37681 +Mountain City,TN,37683 +Piney Flats,TN,37686 +Roan Mountain,TN,37687 +Shady Valley,TN,37688 +Telford,TN,37690 +Trade,TN,37691 +Unicoi,TN,37692 +Watauga,TN,37694 +Alcoa,TN,37701 +Andersonville,TN,37705 +Bean Station,TN,37708 +Blaine,TN,37709 +Devonia,TN,37710 +Bulls Gap,TN,37711 +Bybee,TN,37713 +Caryville,TN,37714 +Clairfield,TN,37715 +Clinton,TN,37716 +Corryton,TN,37721 +Cosby,TN,37722 +Crab Orchard,TN,37723 +Cumberland Gap,TN,37724 +Dandridge,TN,37725 +Deer Lodge,TN,37726 +Del Rio,TN,37727 +Duff,TN,37729 +Eidson,TN,37731 +Friendsville,TN,37737 +Gatlinburg,TN,37738 +Greenback,TN,37742 +Baileyton,TN,37743 +Harriman,TN,37748 +Harrogate,TN,37752 +Hartford,TN,37753 +Heiskell,TN,37754 +Helenwood,TN,37755 +Huntsville,TN,37756 +Jacksboro,TN,37757 +Jefferson City,TN,37760 +Jellico,TN,37762 +Kingston,TN,37763 +Kodak,TN,37764 +Kyles Ford,TN,37765 +Morley,TN,37766 +Lake City,TN,37769 +Lancing,TN,37770 +Lenoir City,TN,37771 +Loudon,TN,37774 +Louisville,TN,37777 +Lowland,TN,37778 +Luttrell,TN,37779 +Maryville,TN,37801 +Maryville,TN,37804 +Mascot,TN,37806 +Maynardville,TN,37807 +Midway,TN,37809 +Mohawk,TN,37810 +Mooresburg,TN,37811 +Morristown,TN,37813 +Morristown,TN,37814 +Mosheim,TN,37818 +Newcomb,TN,37819 +New Market,TN,37820 +Newport,TN,37821 +New Tazewell,TN,37825 +Niota,TN,37826 +Oakdale,TN,37829 +Oak Ridge,TN,37830 +Oliver Springs,TN,37840 +Oneida,TN,37841 +Parrottsville,TN,37843 +Petros,TN,37845 +Philadelphia,TN,37846 +Pioneer,TN,37847 +Powder Springs,TN,37848 +Powell,TN,37849 +Robbins,TN,37852 +Rockford,TN,37853 +Rockwood,TN,37854 +Rogersville,TN,37857 +Russellville,TN,37860 +Rutledge,TN,37861 +Sevierville,TN,37862 +Pigeon Forge,TN,37863 +Seymour,TN,37865 +Sharps Chapel,TN,37866 +Sneedville,TN,37869 +Speedwell,TN,37870 +Strawberry Plain,TN,37871 +Sunbright,TN,37872 +Surgoinsville,TN,37873 +Sweetwater,TN,37874 +Talbott,TN,37877 +Tallassee,TN,37878 +Tazewell,TN,37879 +Ten Mile,TN,37880 +Thorn Hill,TN,37881 +Townsend,TN,37882 +Treadway,TN,37883 +Vonore,TN,37885 +Walland,TN,37886 +Wartburg,TN,37887 +Washburn,TN,37888 +Baneberry,TN,37890 +Whitesburg,TN,37891 +Winfield,TN,37892 +Knoxville,TN,37902 +Knoxville,TN,37909 +Knoxville,TN,37912 +Knoxville,TN,37914 +Knoxville,TN,37915 +Knoxville,TN,37916 +Knoxville,TN,37917 +Knoxville,TN,37918 +Knoxville,TN,37919 +Kimberlin Height,TN,37920 +Karns,TN,37921 +Concord,TN,37922 +Knoxville,TN,37923 +Knoxville,TN,37924 +Knoxville,TN,37931 +Concord Farragut,TN,37932 +Knoxville,TN,37938 +Alamo,TN,38001 +Arlington,TN,38002 +Atoka,TN,38004 +Bells,TN,38006 +Bolivar,TN,38008 +Brighton,TN,38011 +Brownsville,TN,38012 +Burlison,TN,38015 +Collierville,TN,38017 +Cordova,TN,38018 +Covington,TN,38019 +Drummonds,TN,38023 +Dyersburg,TN,38024 +Eads,TN,38028 +Finley,TN,38030 +Friendship,TN,38034 +Gates,TN,38037 +Grand Junction,TN,38039 +Halls,TN,38040 +Fort Pillow,TN,38041 +Hickory Valley,TN,38042 +Hornsby,TN,38044 +Mason,TN,38049 +Middleton,TN,38052 +Millington,TN,38053 +Moscow,TN,38057 +Newbern,TN,38059 +Oakland,TN,38060 +Pocahontas,TN,38061 +Ripley,TN,38063 +Rossville,TN,38066 +Saulsbury,TN,38067 +Somerville,TN,38068 +Stanton,TN,38069 +Whiteville,TN,38075 +Williston,TN,38076 +Tiptonville,TN,38079 +Ridgely,TN,38080 +Memphis,TN,38103 +Memphis,TN,38104 +Memphis,TN,38105 +Memphis,TN,38106 +Memphis,TN,38107 +Memphis,TN,38108 +Memphis,TN,38109 +Memphis,TN,38111 +Memphis,TN,38112 +Memphis,TN,38113 +Memphis,TN,38114 +Hickory Hill,TN,38115 +Memphis,TN,38116 +Memphis,TN,38117 +Memphis,TN,38118 +Memphis,TN,38119 +Memphis,TN,38120 +Memphis,TN,38122 +Memphis,TN,38125 +Memphis,TN,38126 +Memphis,TN,38127 +Memphis,TN,38128 +Memphis,TN,38131 +Memphis,TN,38132 +Memphis,TN,38133 +Bartlett,TN,38134 +Memphis,TN,38135 +Germantown,TN,38138 +Germantown,TN,38139 +Memphis,TN,38141 +Mc Kenzie,TN,38201 +Atwood,TN,38220 +Big Sandy,TN,38221 +Buchanan,TN,38222 +Cottage Grove,TN,38224 +Dresden,TN,38225 +Dukedom,TN,38226 +Gleason,TN,38229 +Greenfield,TN,38230 +Henry,TN,38231 +Hornbeak,TN,38232 +Kenton,TN,38233 +Mansfield,TN,38236 +Martin,TN,38237 +Obion,TN,38240 +Palmersville,TN,38241 +Paris,TN,38242 +Puryear,TN,38251 +Rives,TN,38253 +Sharon,TN,38255 +Springville,TN,38256 +South Fulton,TN,38257 +Trezevant,TN,38258 +Trimble,TN,38259 +Troy,TN,38260 +Union City,TN,38261 +Jackson,TN,38301 +Jackson,TN,38305 +Adamsville,TN,38310 +Bath Springs,TN,38311 +Beech Bluff,TN,38313 +Bethel Springs,TN,38315 +Bradford,TN,38316 +Bruceton,TN,38317 +Buena Vista,TN,38318 +Camden,TN,38320 +Cedar Grove,TN,38321 +Counce,TN,38326 +Crump,TN,38327 +Darden,TN,38328 +Decaturville,TN,38329 +Dyer,TN,38330 +Enville,TN,38332 +Eva,TN,38333 +Finger,TN,38334 +Gadsden,TN,38337 +Guys,TN,38339 +Henderson,TN,38340 +Holladay,TN,38341 +Hollow Rock,TN,38342 +Humboldt,TN,38343 +Huntingdon,TN,38344 +Huron,TN,38345 +Jacks Creek,TN,38347 +Lavinia,TN,38348 +Lexington,TN,38351 +Luray,TN,38352 +Medina,TN,38355 +Medon,TN,38356 +Michie,TN,38357 +Milan,TN,38358 +Milledgeville,TN,38359 +Morris Chapel,TN,38361 +Oakfield,TN,38362 +Parsons,TN,38363 +Pinson,TN,38366 +Ramer,TN,38367 +Reagan,TN,38368 +Rutherford,TN,38369 +Saltillo,TN,38370 +Sardis,TN,38371 +Savannah,TN,38372 +Scotts Hill,TN,38374 +Selmer,TN,38375 +Shiloh,TN,38376 +Stantonville,TN,38379 +Sugar Tree,TN,38380 +Toone,TN,38381 +Trenton,TN,38382 +Westport,TN,38387 +Wildersville,TN,38388 +Yuma,TN,38390 +Denmark,TN,38391 +Mercer,TN,38392 +Columbia,TN,38401 +Clifton,TN,38425 +Ardmore,TN,38449 +Collinwood,TN,38450 +Culleoka,TN,38451 +Cypress Inn,TN,38452 +Ardmore,TN,38453 +Duck River,TN,38454 +Ethridge,TN,38456 +Five Points,TN,38457 +Frankewing,TN,38459 +Goodspring,TN,38460 +Hampshire,TN,38461 +Kimmins,TN,38462 +Iron City,TN,38463 +Lawrenceburg,TN,38464 +Leoma,TN,38468 +Loretto,TN,38469 +Lutts,TN,38471 +Lynnville,TN,38472 +Minor Hill,TN,38473 +Mount Pleasant,TN,38474 +Olivehill,TN,38475 +Primm Springs,TN,38476 +Prospect,TN,38477 +Pulaski,TN,38478 +Saint Joseph,TN,38481 +Santa Fe,TN,38482 +Summertown,TN,38483 +Waynesboro,TN,38485 +Westpoint,TN,38486 +Williamsport,TN,38487 +Taft,TN,38488 +Algood,TN,38501 +Allardt,TN,38504 +Allons,TN,38541 +Allred,TN,38542 +Alpine,TN,38543 +Baxter,TN,38544 +Bloomington Spri,TN,38545 +Brush Creek,TN,38547 +Buffalo Valley,TN,38548 +Byrdstown,TN,38549 +Celina,TN,38551 +Chestnut Mound,TN,38552 +Clarkrange,TN,38553 +Crawford,TN,38554 +Fairfield Glade,TN,38555 +Jamestown,TN,38556 +Doyle,TN,38559 +Elmwood,TN,38560 +Gainesboro,TN,38562 +Gordonsville,TN,38563 +Granville,TN,38564 +Grimsley,TN,38565 +Hickman,TN,38567 +Hilham,TN,38568 +Lancaster,TN,38569 +Livingston,TN,38570 +Monroe,TN,38573 +Monterey,TN,38574 +Moss,TN,38575 +Pall Mall,TN,38577 +Pleasant Hill,TN,38578 +Quebeck,TN,38579 +Rickman,TN,38580 +Bone Cave,TN,38581 +Silver Point,TN,38582 +Ravenscroft,TN,38583 +Spencer,TN,38585 +Walling,TN,38587 +Whitleyville,TN,38588 +Wilder,TN,38589 +Fort Campbell,TN,42223 +Allen,TX,75002 +Carrollton,TX,75006 +Carrollton,TX,75007 +Carrollton,TX,75008 +Celina,TX,75009 +Carrollton,TX,75010 +Coppell,TX,75019 +Denison,TX,75020 +Plano,TX,75023 +Plano,TX,75024 +Plano,TX,75025 +Flower Mound,TX,75028 +Frisco,TX,75034 +Irving,TX,75038 +Irving,TX,75039 +Garland,TX,75040 +Garland,TX,75041 +Garland,TX,75042 +Garland,TX,75043 +Garland,TX,75044 +Sachse,TX,75048 +Grand Prairie,TX,75050 +Grand Prairie,TX,75051 +Grand Prairie,TX,75052 +The Colony,TX,75056 +Lewisville,TX,75057 +Gunter,TX,75058 +Irving,TX,75060 +Irving,TX,75061 +Irving,TX,75062 +Irving,TX,75063 +Lake Dallas,TX,75065 +Highland Village,TX,75067 +Lakewood Village,TX,75068 +Mc Kinney,TX,75069 +Mc Kinney,TX,75070 +Plano,TX,75074 +Plano,TX,75075 +Pottsboro,TX,75076 +Prosper,TX,75078 +Richardson,TX,75080 +Richardson,TX,75081 +Richardson,TX,75082 +Heath,TX,75087 +Rowlett,TX,75088 +Sherman,TX,75090 +Plano,TX,75093 +Murphy,TX,75094 +Wylie,TX,75098 +Barry,TX,75102 +Canton,TX,75103 +Cedar Hill,TX,75104 +Chatfield,TX,75105 +Corsicana,TX,75110 +Crandall,TX,75114 +De Soto,TX,75115 +Duncanville,TX,75116 +Edgewood,TX,75117 +Ennis,TX,75119 +Eustace,TX,75124 +Ferris,TX,75125 +Forney,TX,75126 +Fruitvale,TX,75127 +Lancaster,TX,75134 +Caddo Mills,TX,75135 +Duncanville,TX,75137 +Grand Saline,TX,75140 +Hutchins,TX,75141 +Kaufman,TX,75142 +Seven Points,TX,75143 +Kerens,TX,75144 +Lancaster,TX,75146 +Gun Barrel City,TX,75147 +Malakoff,TX,75148 +Mesquite,TX,75149 +Mesquite,TX,75150 +Palmer,TX,75152 +Powell,TX,75153 +Ovilla,TX,75154 +Rice,TX,75155 +Scurry,TX,75158 +Seagoville,TX,75159 +Terrell,TX,75160 +Trinidad,TX,75163 +Waxahachie,TX,75165 +Wills Point,TX,75169 +Wilmer,TX,75172 +Nevada,TX,75173 +Balch Springs,TX,75180 +Mesquite,TX,75181 +Mesquite,TX,75182 +Royse City,TX,75189 +Dallas,TX,75201 +Dallas,TX,75202 +Dallas,TX,75203 +Dallas,TX,75204 +Village,TX,75205 +Dallas,TX,75206 +Dallas,TX,75207 +Dallas,TX,75208 +Dallas,TX,75209 +Dallas,TX,75210 +Cockrell Hill,TX,75211 +Dallas,TX,75212 +Dallas,TX,75214 +Dallas,TX,75215 +Dallas,TX,75216 +Dallas,TX,75217 +Dallas,TX,75218 +Dallas,TX,75219 +Dallas,TX,75220 +Dallas,TX,75223 +Dallas,TX,75224 +Dallas,TX,75225 +Dallas,TX,75226 +Dallas,TX,75227 +Dallas,TX,75228 +Dallas,TX,75229 +Dallas,TX,75230 +Dallas,TX,75231 +Dallas,TX,75232 +Dallas,TX,75233 +Farmers Branch,TX,75234 +Dallas,TX,75235 +Dallas,TX,75236 +Dallas,TX,75237 +Dallas,TX,75238 +Dallas,TX,75239 +Dallas,TX,75240 +Dallas,TX,75241 +Dallas,TX,75243 +Farmers Branch,TX,75244 +Dallas,TX,75246 +Dallas,TX,75247 +Dallas,TX,75248 +Dallas,TX,75249 +Dallas,TX,75251 +Dallas,TX,75252 +Dallas,TX,75253 +Dallas,TX,75287 +Greenville,TX,75401 +Princeton,TX,75407 +Anna,TX,75409 +Alba,TX,75410 +Arthur City,TX,75411 +Bagwell,TX,75412 +Bells,TX,75414 +Ben Franklin,TX,75415 +Blossom,TX,75416 +Bogata,TX,75417 +Bonham,TX,75418 +Brashear,TX,75420 +Brookston,TX,75421 +Campbell,TX,75422 +Celeste,TX,75423 +Blue Ridge,TX,75424 +Clarksville,TX,75426 +Commerce,TX,75428 +Como,TX,75431 +Cooper,TX,75432 +Cumby,TX,75433 +Deport,TX,75435 +Detroit,TX,75436 +Dike,TX,75437 +Dodd City,TX,75438 +Ector,TX,75439 +Emory,TX,75440 +Farmersville,TX,75442 +Honey Grove,TX,75446 +Ivanhoe,TX,75447 +Klondike,TX,75448 +Ladonia,TX,75449 +Lake Creek,TX,75450 +Leesburg,TX,75451 +Leonard,TX,75452 +Lone Oak,TX,75453 +Melissa,TX,75454 +Mount Pleasant,TX,75455 +Mount Vernon,TX,75457 +Howe,TX,75459 +Paris,TX,75460 +Pattonville,TX,75468 +Pecan Gap,TX,75469 +Petty,TX,75470 +Pickton,TX,75471 +Point,TX,75472 +Powderly,TX,75473 +Quinlan,TX,75474 +Ravenna,TX,75476 +Roxton,TX,75477 +Saltillo,TX,75478 +Savoy,TX,75479 +Scroggins,TX,75480 +Sulphur Bluff,TX,75481 +Sulphur Springs,TX,75482 +Sumner,TX,75486 +Talco,TX,75487 +Telephone,TX,75488 +Trenton,TX,75490 +Whitewright,TX,75491 +Windom,TX,75492 +Winfield,TX,75493 +Winnsboro,TX,75494 +Van Alstyne,TX,75495 +Wolfe City,TX,75496 +Yantis,TX,75497 +Wake Village,TX,75501 +Texarkana,TX,75503 +Annona,TX,75550 +Atlanta,TX,75551 +Avery,TX,75554 +Bivins,TX,75555 +Bloomburg,TX,75556 +Cookville,TX,75558 +De Kalb,TX,75559 +Douglassville,TX,75560 +Leary,TX,75561 +Linden,TX,75563 +Marietta,TX,75566 +Maud,TX,75567 +Naples,TX,75568 +Nash,TX,75569 +Boston,TX,75570 +Omaha,TX,75571 +Queen City,TX,75572 +Simms,TX,75574 +Longview,TX,75601 +Longview,TX,75602 +Longview,TX,75603 +Longview,TX,75604 +Longview,TX,75605 +Avinger,TX,75630 +Beckville,TX,75631 +Carthage,TX,75633 +Daingerfield,TX,75638 +De Berry,TX,75639 +New Diana,TX,75640 +Gary,TX,75643 +Gilmer,TX,75644 +Gladewater,TX,75647 +Hallsville,TX,75650 +Harleton,TX,75651 +Henderson,TX,75652 +Hughes Springs,TX,75656 +Smithland,TX,75657 +Karnack,TX,75661 +Kilgore,TX,75662 +Laneville,TX,75667 +Lone Star,TX,75668 +Long Branch,TX,75669 +Marshall,TX,75670 +Mount Enterprise,TX,75681 +Ore City,TX,75683 +Overton,TX,75684 +Pittsburg,TX,75686 +Price,TX,75687 +Turnertown,TX,75689 +Tatum,TX,75691 +Waskom,TX,75692 +Clarksville City,TX,75693 +Tyler,TX,75701 +Tyler,TX,75702 +Tyler,TX,75703 +Tyler,TX,75704 +Tyler,TX,75705 +Tyler,TX,75706 +Tyler,TX,75707 +East Texas Cente,TX,75708 +Tyler,TX,75709 +Arp,TX,75750 +Athens,TX,75751 +Ben Wheeler,TX,75754 +Big Sandy,TX,75755 +Edom,TX,75756 +Mount Selman,TX,75757 +Chandler,TX,75758 +Cushing,TX,75760 +Flint,TX,75762 +Frankston,TX,75763 +Hawkins,TX,75765 +Jacksonville,TX,75766 +Larue,TX,75770 +Mt Sylvan,TX,75771 +Mineola,TX,75773 +Murchison,TX,75778 +Quitman,TX,75783 +Reklaw,TX,75784 +Dialville,TX,75785 +Troup,TX,75789 +Van,TX,75790 +Whitehouse,TX,75791 +Winona,TX,75792 +Palestine,TX,75801 +Freestone,TX,75831 +Centerville,TX,75833 +Austonio,TX,75835 +Donie,TX,75838 +Slocum,TX,75839 +Fairfield,TX,75840 +Grapeland,TX,75844 +Groveton,TX,75845 +Jewett,TX,75846 +Kennard,TX,75847 +Leona,TX,75850 +Lovelady,TX,75851 +Midway,TX,75852 +Montalba,TX,75853 +Oakwood,TX,75855 +Pennington,TX,75856 +Streetman,TX,75859 +Teague,TX,75860 +Tennessee Colony,TX,75861 +Trinity,TX,75862 +Keltys,TX,75901 +Forest,TX,75925 +Apple Springs,TX,75926 +Bon Wier,TX,75928 +Broaddus,TX,75929 +Bronson,TX,75930 +Brookeland,TX,75931 +Burkeville,TX,75932 +Call,TX,75933 +Center,TX,75935 +Chester,TX,75936 +Chireno,TX,75937 +Rockland,TX,75938 +Barnum,TX,75939 +Diboll,TX,75941 +Douglass,TX,75943 +Garrison,TX,75946 +Hemphill,TX,75948 +Huntington,TX,75949 +Sam Rayburn,TX,75951 +Joaquin,TX,75954 +Bon Ami,TX,75956 +Magnolia Springs,TX,75957 +Milam,TX,75959 +Moscow,TX,75960 +Appleby,TX,75961 +Newton,TX,75966 +Pineland,TX,75968 +Pollok,TX,75969 +San Augustine,TX,75972 +Shelbyville,TX,75973 +Tenaha,TX,75974 +Timpson,TX,75975 +Wells,TX,75976 +Wiergate,TX,75977 +Dogwood,TX,75979 +Zavalla,TX,75980 +Arlington,TX,76006 +Aledo,TX,76008 +Alvarado,TX,76009 +Arlington,TX,76010 +Arlington,TX,76011 +Arlington,TX,76012 +Arlington,TX,76013 +Arlington,TX,76014 +Arlington,TX,76015 +Arlington,TX,76016 +Arlington,TX,76017 +Arlington,TX,76018 +Azle,TX,76020 +Bedford,TX,76021 +Bedford,TX,76022 +Boyd,TX,76023 +Burleson,TX,76028 +Cleburne,TX,76031 +Colleyville,TX,76034 +Cresson,TX,76035 +Crowley,TX,76036 +Euless,TX,76039 +Euless,TX,76040 +Forreston,TX,76041 +Glen Rose,TX,76043 +Godley,TX,76044 +Granbury,TX,76048 +Granbury,TX,76049 +Grandview,TX,76050 +Grapevine,TX,76051 +Haslet,TX,76052 +Hurst,TX,76053 +Hurst,TX,76054 +Itasca,TX,76055 +Joshua,TX,76058 +Keene,TX,76059 +Kennedale,TX,76060 +Mansfield,TX,76063 +Maypearl,TX,76064 +Midlothian,TX,76065 +Millsap,TX,76066 +Mineral Wells,TX,76067 +Nemo,TX,76070 +Newark,TX,76071 +Paradise,TX,76073 +Rainbow,TX,76077 +Rhome,TX,76078 +Springtown,TX,76082 +Venus,TX,76084 +Weatherford,TX,76086 +Weatherford,TX,76087 +Grapevine,TX,76092 +Rio Vista,TX,76093 +Fort Worth,TX,76102 +Fort Worth,TX,76103 +Fort Worth,TX,76104 +Fort Worth,TX,76105 +Fort Worth,TX,76106 +Fort Worth,TX,76107 +White Settlement,TX,76108 +Fort Worth,TX,76109 +Fort Worth,TX,76110 +Fort Worth,TX,76111 +Fort Worth,TX,76112 +River Oaks,TX,76114 +Fort Worth,TX,76115 +Fort Worth,TX,76116 +Haltom City,TX,76117 +North Richland H,TX,76118 +Fort Worth,TX,76119 +Fort Worth,TX,76120 +Fort Worth,TX,76123 +Benbrook,TX,76126 +Carswell Afb,TX,76127 +Fort Worth,TX,76131 +Fort Worth,TX,76132 +Fort Worth,TX,76133 +Fort Worth,TX,76134 +Fort Worth,TX,76135 +Fort Worth,TX,76137 +Everman,TX,76140 +Watauga,TX,76148 +Fort Worth,TX,76155 +Fort Worth,TX,76177 +Saginaw,TX,76179 +North Richland H,TX,76180 +Denton,TX,76201 +Denton,TX,76205 +Alvord,TX,76225 +Argyle,TX,76226 +Aubrey,TX,76227 +Bellevue,TX,76228 +Bowie,TX,76230 +Collinsville,TX,76233 +Decatur,TX,76234 +Era,TX,76238 +Forestburg,TX,76239 +Lake Kiowa,TX,76240 +Gordonville,TX,76245 +Justin,TX,76247 +Keller,TX,76248 +Krum,TX,76249 +Lindsay,TX,76250 +Montague,TX,76251 +Muenster,TX,76252 +Nocona,TX,76255 +Pilot Point,TX,76258 +Ponder,TX,76259 +Ringgold,TX,76261 +Trophy Club,TX,76262 +Rosston,TX,76263 +Sadler,TX,76264 +Saint Jo,TX,76265 +Sanger,TX,76266 +Sunset,TX,76270 +Tioga,TX,76271 +Valley View,TX,76272 +Whitesboro,TX,76273 +Wichita Falls,TX,76301 +Wichita Falls,TX,76302 +Wichita Falls,TX,76303 +Wichita Falls,TX,76304 +Wichita Falls,TX,76305 +Wichita Falls,TX,76306 +Wichita Falls,TX,76308 +Wichita Falls,TX,76309 +Wichita Falls,TX,76310 +Sheppard Afb,TX,76311 +76350,TX,76350 +Burkburnett,TX,76354 +Byers,TX,76357 +Elbert,TX,76359 +Electra,TX,76360 +Goree,TX,76363 +Harrold,TX,76364 +Henrietta,TX,76365 +Holliday,TX,76366 +Iowa Park,TX,76367 +Munday,TX,76371 +Newcastle,TX,76372 +Oklaunion,TX,76373 +Olney,TX,76374 +Petrolia,TX,76377 +76378,TX,76378 +Scotland,TX,76379 +Seymour,TX,76380 +Vera,TX,76383 +Vernon,TX,76384 +Weinert,TX,76388 +Windthorst,TX,76389 +Stephenville,TX,76401 +Breckenridge,TX,76424 +Bridgeport,TX,76426 +Bryson,TX,76427 +Caddo,TX,76429 +Albany,TX,76430 +Chico,TX,76431 +Blanket,TX,76432 +Bluff Dale,TX,76433 +Carbon,TX,76435 +Carlton,TX,76436 +Cisco,TX,76437 +Comanche,TX,76442 +Cross Plains,TX,76443 +De Leon,TX,76444 +Desdemona,TX,76445 +Dublin,TX,76446 +76447,TX,76447 +Eastland,TX,76448 +Graford,TX,76449 +Graham,TX,76450 +Gordon,TX,76453 +Gorman,TX,76454 +Gustine,TX,76455 +Hico,TX,76457 +Jacksboro,TX,76458 +Jermyn,TX,76459 +Loving,TX,76460 +Lipan,TX,76462 +Mingus,TX,76463 +Moran,TX,76464 +Ranger,TX,76470 +Rising Star,TX,76471 +Santo,TX,76472 +Sidney,TX,76474 +Strawn,TX,76475 +Tolar,TX,76476 +Throckmorton,TX,76483 +Palo Pinto,TX,76484 +Perrin,TX,76486 +Poolville,TX,76487 +Whitt,TX,76490 +Woodson,TX,76491 +Temple,TX,76501 +Temple,TX,76502 +Temple,TX,76504 +Bartlett,TX,76511 +Belton,TX,76513 +Buckholts,TX,76518 +Burlington,TX,76519 +Cameron,TX,76520 +Izoro,TX,76522 +Davilla,TX,76523 +Eddy,TX,76524 +Bee House,TX,76525 +Flat,TX,76526 +Florence,TX,76527 +Turnersville,TX,76528 +Granger,TX,76530 +Hamilton,TX,76531 +Holland,TX,76534 +Jarrell,TX,76537 +Jonesboro,TX,76538 +Kempner,TX,76539 +Killeen,TX,76541 +Harker Heights,TX,76542 +Harker Heights,TX,76543 +Fort Hood,TX,76544 +Lampasas,TX,76550 +Milano,TX,76556 +Moody,TX,76557 +Nolanville,TX,76559 +Oglesby,TX,76561 +Pottsville,TX,76565 +Purmela,TX,76566 +Rockdale,TX,76567 +Rogers,TX,76569 +Rosebud,TX,76570 +Salado,TX,76571 +Taylor,TX,76574 +Thorndale,TX,76577 +Thrall,TX,76578 +Troy,TX,76579 +Abbott,TX,76621 +Aquilla,TX,76622 +Axtell,TX,76624 +Blooming Grove,TX,76626 +Blum,TX,76627 +Bremond,TX,76629 +Bruceville,TX,76630 +Bynum,TX,76631 +Chilton,TX,76632 +China Spring,TX,76633 +Laguna Park,TX,76634 +Coolidge,TX,76635 +Covington,TX,76636 +Cranfills Gap,TX,76637 +Crawford,TX,76638 +Dawson,TX,76639 +Elm Mott,TX,76640 +Frost,TX,76641 +Groesbeck,TX,76642 +Hewitt,TX,76643 +Hillsboro,TX,76645 +Hubbard,TX,76648 +Iredell,TX,76649 +Italy,TX,76651 +Kopperl,TX,76652 +Kosse,TX,76653 +Lorena,TX,76655 +Lott,TX,76656 +Mc Gregor,TX,76657 +Malone,TX,76660 +Marlin,TX,76661 +Mart,TX,76664 +Meridian,TX,76665 +Mertens,TX,76666 +Mexia,TX,76667 +Milford,TX,76670 +Morgan,TX,76671 +Mount Calm,TX,76673 +Otto,TX,76675 +Penelope,TX,76676 +Prairie Hill,TX,76678 +Purdon,TX,76679 +Reagan,TX,76680 +Richland,TX,76681 +Riesel,TX,76682 +Thornton,TX,76687 +Valley Mills,TX,76689 +Walnut Springs,TX,76690 +West,TX,76691 +Bonanza,TX,76692 +Wortham,TX,76693 +Waco,TX,76701 +Bellmead,TX,76704 +Bellmead,TX,76705 +Waco,TX,76706 +Waco,TX,76707 +Waco,TX,76708 +Waco,TX,76710 +Beverly Hills,TX,76711 +Woodway,TX,76712 +Early,TX,76801 +Art,TX,76820 +Ballinger,TX,76821 +Bangs,TX,76823 +Bend,TX,76824 +Fife,TX,76825 +Brookesmith,TX,76827 +Burkett,TX,76828 +Castell,TX,76831 +Cherokee,TX,76832 +Coleman,TX,76834 +Doole,TX,76836 +Eden,TX,76837 +Fort Mc Kavett,TX,76841 +Fredonia,TX,76842 +Goldthwaite,TX,76844 +Gouldbusk,TX,76845 +Hext,TX,76848 +Junction,TX,76849 +76850,TX,76850 +Lohn,TX,76852 +Lometa,TX,76853 +London,TX,76854 +Mason,TX,76856 +May,TX,76857 +Melvin,TX,76858 +Menard,TX,76859 +Miles,TX,76861 +Millersview,TX,76862 +Mullin,TX,76864 +Norton,TX,76865 +Paint Rock,TX,76866 +Pear Valley,TX,76867 +Pontotoc,TX,76869 +Priddy,TX,76870 +Richland Springs,TX,76871 +Rochelle,TX,76872 +Rockwood,TX,76873 +Roosevelt,TX,76874 +Rowena,TX,76875 +San Saba,TX,76877 +Santa Anna,TX,76878 +Star,TX,76880 +Talpa,TX,76882 +Telegraph,TX,76883 +Valera,TX,76884 +Valley Spring,TX,76885 +Voca,TX,76887 +Leaday,TX,76888 +Zephyr,TX,76890 +San Angelo,TX,76901 +San Angelo,TX,76903 +San Angelo,TX,76904 +San Angelo,TX,76905 +Barnhart,TX,76930 +Best,TX,76932 +Bronte,TX,76933 +Carlsbad,TX,76934 +Christoval,TX,76935 +Eldorado,TX,76936 +Eola,TX,76937 +Mereta,TX,76940 +Mertzon,TX,76941 +Ozona,TX,76943 +Robert Lee,TX,76945 +Silver,TX,76949 +Sonora,TX,76950 +Sterling City,TX,76951 +Vancourt,TX,76955 +Wall,TX,76957 +Houston,TX,77002 +Houston,TX,77003 +Houston,TX,77004 +Houston,TX,77005 +Houston,TX,77006 +Houston,TX,77007 +Houston,TX,77008 +Houston,TX,77009 +Houston,TX,77010 +Houston,TX,77011 +Houston,TX,77012 +Houston,TX,77013 +Houston,TX,77014 +Houston,TX,77015 +Houston,TX,77016 +Houston,TX,77017 +Houston,TX,77018 +Houston,TX,77019 +Houston,TX,77020 +Houston,TX,77021 +Houston,TX,77022 +Houston,TX,77023 +Houston,TX,77024 +Houston,TX,77025 +Houston,TX,77026 +Houston,TX,77027 +Houston,TX,77028 +Jacinto City,TX,77029 +V A Hospital,TX,77030 +Houston,TX,77031 +Houston,TX,77032 +Houston,TX,77033 +Houston,TX,77034 +Houston,TX,77035 +Houston,TX,77036 +Houston,TX,77037 +Houston,TX,77038 +Houston,TX,77039 +Jersey Village,TX,77040 +Houston,TX,77041 +Houston,TX,77042 +Houston,TX,77043 +Houston,TX,77044 +Houston,TX,77045 +Houston,TX,77046 +Houston,TX,77047 +Houston,TX,77048 +Houston,TX,77049 +Houston,TX,77050 +Houston,TX,77051 +Houston,TX,77053 +Houston,TX,77054 +Houston,TX,77055 +Houston,TX,77056 +Houston,TX,77057 +Houston,TX,77058 +Houston,TX,77059 +Houston,TX,77060 +Houston,TX,77061 +Houston,TX,77062 +Houston,TX,77063 +Houston,TX,77064 +Houston,TX,77065 +Houston,TX,77066 +Houston,TX,77067 +Houston,TX,77068 +Houston,TX,77069 +Houston,TX,77070 +Houston,TX,77071 +Houston,TX,77072 +Houston,TX,77073 +Houston,TX,77074 +Houston,TX,77075 +Houston,TX,77076 +Houston,TX,77077 +Houston,TX,77078 +Houston,TX,77079 +Houston,TX,77080 +Houston,TX,77081 +Houston,TX,77082 +Houston,TX,77083 +Houston,TX,77084 +Houston,TX,77085 +Houston,TX,77086 +Houston,TX,77087 +Houston,TX,77088 +Houston,TX,77089 +Houston,TX,77090 +Houston,TX,77091 +Houston,TX,77092 +Houston,TX,77093 +Houston,TX,77094 +Houston,TX,77095 +Houston,TX,77096 +Houston,TX,77098 +Houston,TX,77099 +Conroe,TX,77301 +Grangerland,TX,77302 +Cut And Shoot,TX,77303 +Panorama Village,TX,77304 +Cleveland,TX,77327 +Coldspring,TX,77331 +Goodrich,TX,77335 +Huffman,TX,77336 +Humble,TX,77338 +Humble,TX,77339 +Huntsville,TX,77340 +Humble,TX,77345 +Humble,TX,77346 +Segno,TX,77351 +Magnolia,TX,77355 +Montgomery,TX,77356 +New Caney,TX,77357 +New Waverly,TX,77358 +Oakhurst,TX,77359 +Pinehurst,TX,77362 +Plantersville,TX,77363 +Pointblank,TX,77364 +Porter,TX,77365 +Shepherd,TX,77371 +Splendora,TX,77372 +Spring,TX,77373 +Tomball,TX,77375 +Willis,TX,77378 +Klein,TX,77379 +The Woodlands,TX,77380 +The Woodlands,TX,77381 +Conroe,TX,77384 +Conroe,TX,77385 +Spring,TX,77386 +Spring,TX,77388 +Spring,TX,77389 +Humble,TX,77396 +Bellaire,TX,77401 +Sargent,TX,77414 +Beasley,TX,77417 +Bellville,TX,77418 +Blessing,TX,77419 +Boling,TX,77420 +Brazoria,TX,77422 +Brookshire,TX,77423 +Chappell Hill,TX,77426 +Cypress,TX,77429 +Damon,TX,77430 +Danevang,TX,77432 +Cypress,TX,77433 +Eagle Lake,TX,77434 +East Bernard,TX,77435 +El Campo,TX,77437 +Elmaton,TX,77440 +Fulshear,TX,77441 +Garwood,TX,77442 +Guy,TX,77444 +Hempstead,TX,77445 +Hockley,TX,77447 +Park Row,TX,77449 +Park Row,TX,77450 +Louise,TX,77455 +Markham,TX,77456 +Matagorda,TX,77457 +Midfield,TX,77458 +Missouri City,TX,77459 +Needville,TX,77461 +Palacios,TX,77465 +Pledger,TX,77468 +Clodine,TX,77469 +Rosenberg,TX,77471 +Sealy,TX,77474 +Stafford,TX,77477 +Sugar Land,TX,77478 +Sugar Land,TX,77479 +Sweeny,TX,77480 +Van Vleck,TX,77482 +Wadsworth,TX,77483 +Waller,TX,77484 +Wallis,TX,77485 +West Columbia,TX,77486 +Wharton,TX,77488 +Missouri City,TX,77489 +Park Row,TX,77493 +Park Row,TX,77494 +Pasadena,TX,77502 +Pasadena,TX,77503 +Pasadena,TX,77504 +Pasadena,TX,77505 +Pasadena,TX,77506 +Pasadena,TX,77507 +Alta Loma,TX,77510 +Alvin,TX,77511 +Monroe City,TX,77514 +Angleton,TX,77515 +Arcadia,TX,77517 +Bacliff,TX,77518 +Batson,TX,77519 +Baytown,TX,77520 +Baytown,TX,77521 +Channelview,TX,77530 +Clute,TX,77531 +Barrett,TX,77532 +Danbury,TX,77534 +Dayton,TX,77535 +Deer Park,TX,77536 +Devers,TX,77538 +San Leon,TX,77539 +Quintana,TX,77541 +Fresno,TX,77545 +Friendswood,TX,77546 +Galena Park,TX,77547 +Galveston,TX,77550 +Galveston,TX,77551 +Galveston,TX,77554 +Hankamer,TX,77560 +Highlands,TX,77562 +Hitchcock,TX,77563 +Hull,TX,77564 +Clear Lake Shore,TX,77565 +Lake Jackson,TX,77566 +La Marque,TX,77568 +Shoreacres,TX,77571 +League City,TX,77573 +Ames,TX,77575 +Liverpool,TX,77577 +Manvel,TX,77578 +Pearland,TX,77581 +Rosharon,TX,77583 +Pearland,TX,77584 +Saratoga,TX,77585 +El Lago,TX,77586 +South Houston,TX,77587 +Texas City,TX,77590 +Texas City,TX,77591 +Wallisville,TX,77597 +Webster,TX,77598 +Bridge City,TX,77611 +Buna,TX,77612 +Deweyville,TX,77614 +Fred,TX,77616 +Groves,TX,77619 +Hamshire,TX,77622 +Hillister,TX,77624 +Kountze,TX,77625 +Nederland,TX,77627 +West Orange,TX,77630 +Port Acres,TX,77640 +Port Arthur,TX,77642 +Crystal Beach,TX,77650 +Port Neches,TX,77651 +Silsbee,TX,77656 +Sour Lake,TX,77659 +Spurger,TX,77660 +Vidor,TX,77662 +Warren,TX,77664 +Winnie,TX,77665 +Beaumont,TX,77701 +Beaumont,TX,77702 +Beaumont,TX,77703 +Beaumont,TX,77705 +Beaumont,TX,77706 +Beaumont,TX,77707 +Beaumont,TX,77708 +Beaumont,TX,77713 +Bryan,TX,77801 +Bryan,TX,77802 +Bryan,TX,77803 +Anderson,TX,77830 +Singleton,TX,77831 +Brenham,TX,77833 +Burton,TX,77835 +Caldwell,TX,77836 +Calvert,TX,77837 +College Station,TX,77840 +College Station,TX,77843 +College Station,TX,77845 +Concord,TX,77850 +Dime Box,TX,77853 +Franklin,TX,77856 +Hearne,TX,77859 +Iola,TX,77861 +Madisonville,TX,77864 +Marquez,TX,77865 +Navasota,TX,77868 +Hilltop Lakes,TX,77871 +North Zulch,TX,77872 +Richards,TX,77873 +Somerville,TX,77879 +Washington,TX,77880 +Victoria,TX,77901 +Victoria,TX,77904 +Bloomington,TX,77951 +Cuero,TX,77954 +Edna,TX,77957 +Ganado,TX,77962 +Goliad,TX,77963 +Hallettsville,TX,77964 +Inez,TX,77968 +Lolita,TX,77971 +Meyersville,TX,77974 +Moulton,TX,77975 +Port Lavaca,TX,77979 +Port O Connor,TX,77982 +Seadrift,TX,77983 +Shiner,TX,77984 +Tivoli,TX,77990 +Westhoff,TX,77994 +Yoakum,TX,77995 +Atascosa,TX,78002 +Bandera,TX,78003 +Bergheim,TX,78004 +Bigfoot,TX,78005 +Sisterdale,TX,78006 +Calliham,TX,78007 +Campbellton,TX,78008 +Castroville,TX,78009 +Camp Verde,TX,78010 +Charlotte,TX,78011 +Comfort,TX,78013 +Cotulla,TX,78014 +Devine,TX,78016 +Dilley,TX,78017 +Encinal,TX,78019 +Fowlerton,TX,78021 +George West,TX,78022 +Grey Forest,TX,78023 +Hunt,TX,78024 +Ingram,TX,78025 +Jourdanton,TX,78026 +Kendalia,TX,78027 +Kerrville,TX,78028 +La Coste,TX,78039 +Laredo,TX,78040 +Laredo,TX,78041 +Rio Bravo,TX,78043 +Lytle,TX,78052 +Mc Coy,TX,78053 +Medina,TX,78055 +Mico,TX,78056 +Moore,TX,78057 +Mountain Home,TX,78058 +Natalia,TX,78059 +Oakville,TX,78060 +Pearsall,TX,78061 +Lakehills,TX,78063 +Pleasanton,TX,78064 +Poteet,TX,78065 +Riomedina,TX,78066 +San Ygnacio,TX,78067 +Somerset,TX,78069 +Spring Branch,TX,78070 +Three Rivers,TX,78071 +Tilden,TX,78072 +Von Ormy,TX,78073 +Whitsett,TX,78075 +Zapata,TX,78076 +Adkins,TX,78101 +Beeville,TX,78102 +Cibolo,TX,78108 +Converse,TX,78109 +Ecleto,TX,78111 +Elmendorf,TX,78112 +Falls City,TX,78113 +Floresville,TX,78114 +Gillett,TX,78116 +Hobson,TX,78117 +Karnes City,TX,78118 +Kenedy,TX,78119 +La Vernia,TX,78121 +Leesville,TX,78122 +Mc Queeney,TX,78123 +Marion,TX,78124 +Canyon Lake,TX,78130 +Canyon Lake,TX,78132 +Canyon Lake,TX,78133 +Nixon,TX,78140 +Nordheim,TX,78141 +Poth,TX,78147 +Randolph A F B,TX,78148 +Randolph A F B,TX,78150 +Runge,TX,78151 +Saint Hedwig,TX,78152 +Selma,TX,78154 +Seguin,TX,78155 +Smiley,TX,78159 +Stockdale,TX,78160 +Sutherland Sprin,TX,78161 +Wetmore,TX,78163 +Yorktown,TX,78164 +Balcones Heights,TX,78201 +San Antonio,TX,78202 +San Antonio,TX,78203 +San Antonio,TX,78204 +San Antonio,TX,78205 +San Antonio,TX,78207 +San Antonio,TX,78208 +Alamo Heights,TX,78209 +San Antonio,TX,78210 +San Antonio,TX,78211 +Olmos Park,TX,78212 +Castle Hills,TX,78213 +San Antonio,TX,78214 +San Antonio,TX,78215 +San Antonio,TX,78216 +San Antonio,TX,78217 +San Antonio,TX,78218 +Kirby,TX,78219 +San Antonio,TX,78220 +San Antonio,TX,78221 +San Antonio,TX,78222 +San Antonio,TX,78223 +San Antonio,TX,78224 +San Antonio,TX,78225 +San Antonio,TX,78226 +San Antonio,TX,78227 +San Antonio,TX,78228 +San Antonio,TX,78229 +San Antonio,TX,78230 +Shavano Park,TX,78231 +Hollywood Park,TX,78232 +Live Oak,TX,78233 +Fort Sam Houston,TX,78234 +Brooks A F B,TX,78235 +Wilford Hall U S,TX,78236 +San Antonio,TX,78237 +Leon Valley,TX,78238 +Windcrest,TX,78239 +San Antonio,TX,78240 +Kelly A F B,TX,78241 +San Antonio,TX,78242 +San Antonio,TX,78244 +San Antonio,TX,78245 +Wetmore,TX,78247 +San Antonio,TX,78248 +San Antonio,TX,78249 +San Antonio,TX,78250 +San Antonio,TX,78251 +San Antonio,TX,78252 +San Antonio,TX,78253 +San Antonio,TX,78254 +San Antonio,TX,78255 +San Antonio,TX,78256 +San Antonio,TX,78257 +San Antonio,TX,78258 +San Antonio,TX,78259 +San Antonio,TX,78260 +San Antonio,TX,78261 +San Antonio,TX,78263 +San Antonio,TX,78264 +Garden Ridge,TX,78266 +Alice,TX,78332 +Aransas Pass,TX,78336 +Armstrong,TX,78338 +Bayside,TX,78340 +Bishop,TX,78343 +Bruni,TX,78344 +Concepcion,TX,78349 +Encino,TX,78353 +Falfurrias,TX,78355 +Freer,TX,78357 +Fulton,TX,78358 +Guerra,TX,78360 +Hebbronville,TX,78361 +Ingleside,TX,78362 +Kingsville Naval,TX,78363 +Mathis,TX,78368 +Mirando City,TX,78369 +Odem,TX,78370 +Orange Grove,TX,78372 +Portland,TX,78374 +Premont,TX,78375 +Realitos,TX,78376 +Refugio,TX,78377 +Riviera,TX,78379 +Robstown,TX,78380 +Rockport,TX,78382 +Sandia,TX,78383 +San Diego,TX,78384 +Sarita,TX,78385 +Sinton,TX,78387 +Skidmore,TX,78389 +Taft,TX,78390 +Tynan,TX,78391 +Woodsboro,TX,78393 +Corpus Christi,TX,78401 +Corpus Christi,TX,78402 +Corpus Christi,TX,78404 +Corpus Christi,TX,78405 +Corpus Christi,TX,78406 +Corpus Christi,TX,78407 +Corpus Christi,TX,78408 +Corpus Christi,TX,78409 +Corpus Christi,TX,78410 +Corpus Christi,TX,78411 +Corpus Christi,TX,78412 +Corpus Christi,TX,78413 +Corpus Christi,TX,78414 +Corpus Christi,TX,78415 +Corpus Christi,TX,78416 +Corpus Christi,TX,78417 +Corpus Christi,TX,78418 +Corpus Christi,TX,78419 +Corpus Christi,TX,78473 +Mcallen,TX,78501 +Mcallen,TX,78503 +Mcallen,TX,78504 +Alamo,TX,78516 +Brownsville,TX,78520 +Brownsville,TX,78521 +Delmita,TX,78536 +Donna,TX,78537 +Monte Alto,TX,78538 +Edinburg,TX,78539 +Garciasville,TX,78547 +Grulla,TX,78548 +Hargill,TX,78549 +Harlingen,TX,78550 +Harlingen,TX,78552 +Hidalgo,TX,78557 +La Feria,TX,78559 +Linn,TX,78563 +Bayview,TX,78566 +Lyford,TX,78569 +Mercedes,TX,78570 +Alton,TX,78572 +Pharr,TX,78577 +Port Isabel,TX,78578 +Raymondville,TX,78580 +Rio Grande City,TX,78582 +Rio Hondo,TX,78583 +Roma,TX,78584 +San Benito,TX,78586 +San Isidro,TX,78588 +San Juan,TX,78589 +San Perlita,TX,78590 +Santa Elena,TX,78591 +Santa Rosa,TX,78593 +Sebastian,TX,78594 +Sullivan City,TX,78595 +Weslaco,TX,78596 +South Padre Isla,TX,78597 +Port Mansfield,TX,78598 +Bastrop,TX,78602 +Bebe,TX,78603 +Bertram,TX,78605 +Blanco,TX,78606 +Bluffton,TX,78607 +Briggs,TX,78608 +Buchanan Dam,TX,78609 +Buda,TX,78610 +Burnet,TX,78611 +Cedar Creek,TX,78612 +Cedar Park,TX,78613 +Cost,TX,78614 +Coupland,TX,78615 +Dale,TX,78616 +Del Valle,TX,78617 +Doss,TX,78618 +Driftwood,TX,78619 +Dripping Springs,TX,78620 +Elgin,TX,78621 +Fischer,TX,78623 +Fredericksburg,TX,78624 +Georgetown,TX,78626 +Andice,TX,78628 +Gonzales,TX,78629 +Harper,TX,78631 +Harwood,TX,78632 +Hutto,TX,78634 +Hye,TX,78635 +Johnson City,TX,78636 +Kingsbury,TX,78638 +Kingsland,TX,78639 +Uhland,TX,78640 +Leander,TX,78641 +Liberty Hill,TX,78642 +Sunrise Beach,TX,78643 +Lockhart,TX,78644 +Jonestown,TX,78645 +Luling,TX,78648 +Mc Dade,TX,78650 +Manchaca,TX,78652 +Manor,TX,78653 +Cypress Mill,TX,78654 +Martindale,TX,78655 +Maxwell,TX,78656 +Paige,TX,78659 +Pflugerville,TX,78660 +Red Rock,TX,78662 +Round Mountain,TX,78663 +Round Rock,TX,78664 +Sandy,TX,78665 +San Marcos,TX,78666 +Spicewood,TX,78669 +Albert,TX,78671 +Tow,TX,78672 +Willow City,TX,78675 +Wimberley,TX,78676 +Wrightsboro,TX,78677 +Round Rock,TX,78681 +Austin,TX,78701 +Austin,TX,78702 +Austin,TX,78703 +Austin,TX,78704 +Austin,TX,78705 +Austin,TX,78717 +Austin,TX,78719 +Austin,TX,78721 +Austin,TX,78722 +Austin,TX,78723 +Austin,TX,78724 +Austin,TX,78725 +Austin,TX,78726 +Austin,TX,78727 +Austin,TX,78728 +Austin,TX,78729 +Austin,TX,78730 +Austin,TX,78731 +Austin,TX,78732 +Austin,TX,78733 +Lakeway,TX,78734 +Austin,TX,78735 +Austin,TX,78736 +Austin,TX,78737 +Austin,TX,78738 +Austin,TX,78739 +Austin,TX,78741 +Austin,TX,78742 +Austin,TX,78744 +Austin,TX,78745 +West Lake Hills,TX,78746 +Creedmoor,TX,78747 +Austin,TX,78748 +Austin,TX,78749 +Austin,TX,78750 +Austin,TX,78751 +Austin,TX,78752 +Austin,TX,78753 +Austin,TX,78754 +Austin,TX,78756 +Austin,TX,78757 +Austin,TX,78758 +Austin,TX,78759 +Uvalde,TX,78801 +Asherton,TX,78827 +Barksdale,TX,78828 +Batesville,TX,78829 +Big Wells,TX,78830 +Brackettville,TX,78832 +Camp Wood,TX,78833 +Carrizo Springs,TX,78834 +Comstock,TX,78837 +Concan,TX,78838 +Crystal City,TX,78839 +Laughlin A F B,TX,78840 +D Hanis,TX,78850 +Dryden,TX,78851 +Eagle Pass,TX,78852 +Dunlay,TX,78861 +Knippa,TX,78870 +La Pryor,TX,78872 +Leakey,TX,78873 +Spofford,TX,78877 +Rio Frio,TX,78879 +Rocksprings,TX,78880 +Sabinal,TX,78881 +Tarpley,TX,78883 +Utopia,TX,78884 +Vanderpool,TX,78885 +Yancey,TX,78886 +Bleiblerville,TX,78931 +Carmine,TX,78932 +Cat Spring,TX,78933 +Columbus,TX,78934 +Alleyton,TX,78935 +Ellinger,TX,78938 +Fayetteville,TX,78940 +Flatonia,TX,78941 +Giddings,TX,78942 +Industry,TX,78944 +La Grange,TX,78945 +Ledbetter,TX,78946 +Lexington,TX,78947 +Lincoln,TX,78948 +Muldoon,TX,78949 +New Ulm,TX,78950 +Rosanky,TX,78953 +Round Top,TX,78954 +Schulenburg,TX,78956 +Smithville,TX,78957 +Waelder,TX,78959 +Weimar,TX,78962 +West Point,TX,78963 +Adrian,TX,79001 +Booker,TX,79005 +Phillips,TX,79007 +Bovina,TX,79009 +Briscoe,TX,79011 +Glazier,TX,79014 +Canyon,TX,79015 +Channing,TX,79018 +Claude,TX,79019 +Dalhart,TX,79022 +Dimmitt,TX,79027 +Dumas,TX,79029 +Earth,TX,79031 +Follett,TX,79034 +Black,TX,79035 +Fritch,TX,79036 +Groom,TX,79039 +Gruver,TX,79040 +Hale Center,TX,79041 +Happy,TX,79042 +Hart,TX,79043 +Hartley,TX,79044 +Hereford,TX,79045 +Higgins,TX,79046 +Kress,TX,79052 +Lipscomb,TX,79056 +Kellerville,TX,79057 +Miami,TX,79059 +Mobeetie,TX,79061 +Morse,TX,79062 +Nazareth,TX,79063 +Olton,TX,79064 +Pampa,TX,79065 +Panhandle,TX,79068 +Perryton,TX,79070 +Plainview,TX,79072 +Twitty,TX,79079 +Skellytown,TX,79080 +Spearman,TX,79081 +Springlake,TX,79082 +Stinnett,TX,79083 +Stratford,TX,79084 +Summerfield,TX,79085 +Sunray,TX,79086 +Texline,TX,79087 +Vigo Park,TX,79088 +Vega,TX,79092 +Wayside,TX,79094 +Wellington,TX,79095 +Wheeler,TX,79096 +White Deer,TX,79097 +Wildorado,TX,79098 +Amarillo,TX,79101 +Amarillo,TX,79102 +Amarillo,TX,79103 +Amarillo,TX,79104 +Amarillo,TX,79106 +Amarillo,TX,79107 +Amarillo,TX,79108 +Amarillo,TX,79109 +Amarillo,TX,79110 +Amarillo,TX,79111 +Amarillo,TX,79118 +Amarillo,TX,79119 +Amarillo,TX,79121 +Amarillo,TX,79124 +Kirkland,TX,79201 +Afton,TX,79220 +Chillicothe,TX,79225 +Clarendon,TX,79226 +Crowell,TX,79227 +Dickens,TX,79229 +Dodson,TX,79230 +Dumont,TX,79232 +Flomot,TX,79234 +Floydada,TX,79235 +Hedley,TX,79237 +Lakeview,TX,79239 +Lockney,TX,79241 +Mcadoo,TX,79243 +Matador,TX,79244 +Memphis,TX,79245 +Chalk,TX,79248 +Petersburg,TX,79250 +Quail,TX,79251 +Quanah,TX,79252 +Quitaque,TX,79255 +Roaring Springs,TX,79256 +Silverton,TX,79257 +Tell,TX,79259 +Truscott,TX,79260 +Turkey,TX,79261 +Abernathy,TX,79311 +Amherst,TX,79312 +Anton,TX,79313 +Brownfield,TX,79316 +Bula,TX,79320 +Crosbyton,TX,79322 +Denver City,TX,79323 +Enochs,TX,79324 +Farwell,TX,79325 +Fieldton,TX,79326 +Idalou,TX,79329 +Lamesa,TX,79331 +Levelland,TX,79336 +Littlefield,TX,79339 +Loop,TX,79342 +Lorenzo,TX,79343 +Maple,TX,79344 +Meadow,TX,79345 +Morton,TX,79346 +Muleshoe,TX,79347 +Odonnell,TX,79351 +Pep,TX,79353 +Plains,TX,79355 +Post,TX,79356 +Cone,TX,79357 +Ropesville,TX,79358 +Seagraves,TX,79359 +Seminole,TX,79360 +Shallowater,TX,79363 +Ransom Canyon,TX,79364 +Ransom Canyon,TX,79366 +Spur,TX,79370 +Sudan,TX,79371 +Tahoka,TX,79373 +Tokio,TX,79376 +Welch,TX,79377 +Whiteface,TX,79379 +Wilson,TX,79381 +Wolfforth,TX,79382 +Lubbock,TX,79401 +Lubbock,TX,79403 +Lubbock,TX,79404 +Lubbock,TX,79405 +Lubbock,TX,79406 +Lubbock,TX,79407 +Lubbock,TX,79410 +Lubbock,TX,79411 +Lubbock,TX,79412 +Lubbock,TX,79413 +Lubbock,TX,79414 +Lubbock,TX,79415 +Lubbock,TX,79416 +Lubbock,TX,79423 +Lubbock,TX,79424 +Reese Air Force,TX,79489 +Anson,TX,79501 +Aspermont,TX,79502 +Avoca,TX,79503 +Baird,TX,79504 +Blackwell,TX,79506 +Clyde,TX,79510 +Coahoma,TX,79511 +Colorado City,TX,79512 +Fluvanna,TX,79517 +Girard,TX,79518 +Goldsboro,TX,79519 +Hamlin,TX,79520 +Haskell,TX,79521 +Hawley,TX,79525 +Hermleigh,TX,79526 +Ira,TX,79527 +Jayton,TX,79528 +Knox City,TX,79529 +Lawn,TX,79530 +Loraine,TX,79532 +Lueders,TX,79533 +Mc Caulley,TX,79534 +Maryneal,TX,79535 +Merkel,TX,79536 +Nolan,TX,79537 +Novice,TX,79538 +O Brien,TX,79539 +Old Glory,TX,79540 +Ovalo,TX,79541 +79542,TX,79542 +Roby,TX,79543 +Rochester,TX,79544 +Roscoe,TX,79545 +Rotan,TX,79546 +Rule,TX,79547 +Sagerton,TX,79548 +Dermott,TX,79549 +Stamford,TX,79553 +Sweetwater,TX,79556 +Sylvester,TX,79560 +Trent,TX,79561 +Tuscola,TX,79562 +Tye,TX,79563 +Westbrook,TX,79565 +Wingate,TX,79566 +Winters,TX,79567 +Abilene,TX,79601 +Abilene,TX,79602 +Abilene,TX,79603 +Abilene,TX,79605 +Abilene,TX,79606 +Dyess Afb,TX,79607 +Midland,TX,79701 +Midland,TX,79703 +Midland,TX,79705 +Midland,TX,79707 +Ackerly,TX,79713 +Andrews,TX,79714 +Balmorhea,TX,79718 +Barstow,TX,79719 +Vealmoor,TX,79720 +Coyanosa,TX,79730 +Crane,TX,79731 +Fort Davis,TX,79734 +Fort Stockton,TX,79735 +Gail,TX,79738 +Garden City,TX,79739 +Goldsmith,TX,79741 +Grandfalls,TX,79742 +Imperial,TX,79743 +Iraan,TX,79744 +Kermit,TX,79745 +Knott,TX,79748 +Lenorah,TX,79749 +Mc Camey,TX,79752 +Mentone,TX,79754 +Midkiff,TX,79755 +Monahans,TX,79756 +Gardendale,TX,79758 +Odessa,TX,79761 +Odessa,TX,79762 +Odessa,TX,79763 +Odessa,TX,79764 +Odessa,TX,79765 +Odessa,TX,79766 +Verhalen,TX,79772 +Pyote,TX,79777 +Sheffield,TX,79781 +Stanton,TX,79782 +Tarzan,TX,79783 +Wink,TX,79789 +Anthony,TX,79821 +Alpine,TX,79830 +Big Bend Nationa,TX,79834 +Canutillo,TX,79835 +Clint,TX,79836 +Dell City,TX,79837 +Fort Hancock,TX,79839 +Marathon,TX,79842 +Marfa,TX,79843 +Presidio,TX,79845 +Salt Flat,TX,79847 +Sierra Blanca,TX,79851 +Terlingua,TX,79852 +Valentine,TX,79854 +Kent,TX,79855 +El Paso,TX,79901 +El Paso,TX,79902 +El Paso,TX,79903 +El Paso,TX,79904 +El Paso,TX,79905 +Fort Bliss,TX,79906 +El Paso,TX,79907 +Fort Bliss,TX,79908 +El Paso,TX,79912 +El Paso,TX,79915 +Fort Bliss,TX,79916 +El Paso,TX,79922 +El Paso,TX,79924 +El Paso,TX,79925 +Horizon City,TX,79927 +El Paso,TX,79930 +El Paso,TX,79932 +El Paso,TX,79934 +El Paso,TX,79935 +El Paso,TX,79936 +Altamont,UT,84001 +Altonah,UT,84002 +American Fork,UT,84003 +Alpine,UT,84004 +Bingham Canyon,UT,84006 +Bluebell,UT,84007 +Bountiful,UT,84010 +Bridgeland,UT,84012 +Cedar Valley,UT,84013 +Centerville,UT,84014 +Clearfield,UT,84015 +Coalville,UT,84017 +Croydon,UT,84018 +Draper,UT,84020 +Duchesne,UT,84021 +Dugway,UT,84022 +Dutch John,UT,84023 +Farmington,UT,84025 +Fort Duchesne,UT,84026 +Garden City,UT,84028 +Grantsville,UT,84029 +Hanna,UT,84031 +Heber City,UT,84032 +Jensen,UT,84035 +Kamas,UT,84036 +Kaysville,UT,84037 +Laketown,UT,84038 +Lapoint,UT,84039 +Layton,UT,84040 +Layton,UT,84041 +Lindon,UT,84042 +Lehi,UT,84043 +Magna,UT,84044 +Manila,UT,84046 +Midvale,UT,84047 +Midway,UT,84049 +Morgan,UT,84050 +Mountain Home,UT,84051 +Myton,UT,84052 +Neola,UT,84053 +North Salt Lake,UT,84054 +Hill Air Force B,UT,84056 +Orem,UT,84057 +Vineyard,UT,84058 +Park City,UT,84060 +Peoa,UT,84061 +Pleasant Grove,UT,84062 +Randlett,UT,84063 +Randolph,UT,84064 +Lark,UT,84065 +Roosevelt,UT,84066 +Roy,UT,84067 +Rush Valley,UT,84069 +Sandy,UT,84070 +Stockton,UT,84071 +Tabiona,UT,84072 +Talmage,UT,84073 +Tooele,UT,84074 +Syracuse,UT,84075 +Tridell,UT,84076 +Vernal,UT,84078 +Vernon,UT,84080 +Wallsburg,UT,84082 +Trout Creek,UT,84083 +West Jordan,UT,84084 +Whiterocks,UT,84085 +Woodruff,UT,84086 +Woods Cross,UT,84087 +West Jordan,UT,84088 +Alta,UT,84092 +Sandy,UT,84093 +Sandy,UT,84094 +Salt Lake City,UT,84101 +Salt Lake City,UT,84102 +Salt Lake City,UT,84103 +Salt Lake City,UT,84104 +Salt Lake City,UT,84105 +Salt Lake City,UT,84106 +Murray,UT,84107 +Salt Lake City,UT,84108 +Salt Lake City,UT,84109 +Salt Lake City,UT,84111 +Salt Lake City,UT,84112 +Salt Lake City,UT,84113 +South Salt Lake,UT,84115 +Salt Lake City,UT,84116 +Holladay,UT,84117 +Kearns,UT,84118 +West Valley City,UT,84119 +West Valley City,UT,84120 +Cottonwood,UT,84121 +Murray,UT,84123 +Holladay,UT,84124 +Brigham City,UT,84302 +Clarkston,UT,84305 +Collinston,UT,84306 +Corinne,UT,84307 +Cornish,UT,84308 +Deweyville,UT,84309 +Eden,UT,84310 +Fielding,UT,84311 +Garland,UT,84312 +Grouse Creek,UT,84313 +Honeyville,UT,84314 +Hooper,UT,84315 +Huntsville,UT,84317 +Hyrum,UT,84319 +Lewiston,UT,84320 +Logan,UT,84321 +Mantua,UT,84324 +Mendon,UT,84325 +Paradise,UT,84328 +Park Valley,UT,84329 +Providence,UT,84332 +Richmond,UT,84333 +Smithfield,UT,84335 +Snowville,UT,84336 +Tremonton,UT,84337 +Trenton,UT,84338 +Wellsville,UT,84339 +Willard,UT,84340 +Ogden,UT,84401 +Ogden,UT,84403 +Ogden,UT,84404 +Ogden,UT,84405 +Ogden,UT,84414 +Price,UT,84501 +Aneth,UT,84510 +Blanding,UT,84511 +East Carbon,UT,84520 +Ferron,UT,84523 +Green River,UT,84525 +Helper,UT,84526 +Huntington,UT,84528 +Mexican Hat,UT,84531 +Moab,UT,84532 +Bullfrog,UT,84533 +Monticello,UT,84535 +Monument Valley,UT,84536 +Thompson,UT,84540 +Wellington,UT,84542 +Provo,UT,84601 +Provo,UT,84604 +Provo,UT,84606 +Axtell,UT,84621 +Centerfield,UT,84622 +Delta,UT,84624 +Ephraim,UT,84627 +Eureka,UT,84628 +Fairview,UT,84629 +Fayette,UT,84630 +Fillmore,UT,84631 +Gunnison,UT,84634 +Hinckley,UT,84635 +Manti,UT,84642 +Mona,UT,84645 +Mount Pleasant,UT,84647 +Nephi,UT,84648 +Oasis,UT,84650 +Payson,UT,84651 +Woodland Hills,UT,84653 +Salina,UT,84654 +Genola,UT,84655 +Spanish Fork,UT,84660 +Springville,UT,84663 +Mapleton,UT,84664 +Venice,UT,84701 +Alton,UT,84710 +Antimony,UT,84712 +Beaver,UT,84713 +Beryl,UT,84714 +Boulder,UT,84716 +Bryce Canyon,UT,84717 +Brian Head,UT,84719 +Pintura,UT,84720 +Central,UT,84722 +Escalante,UT,84726 +Garrison,UT,84728 +Glendale,UT,84729 +Greenville,UT,84731 +Hanksville,UT,84734 +Hurricane,UT,84737 +Joseph,UT,84739 +Big Water,UT,84741 +Kingston,UT,84743 +Fremont,UT,84747 +Marysvale,UT,84750 +Milford,UT,84751 +Modena,UT,84753 +Austin,UT,84754 +Mount Carmel,UT,84755 +Newcastle,UT,84756 +Orderville,UT,84758 +Panguitch,UT,84759 +Paragonah,UT,84760 +Parowan,UT,84761 +Sevier,UT,84766 +St George,UT,84770 +Summit,UT,84772 +Teasdale,UT,84773 +Torrey,UT,84775 +Washington,UT,84780 +Pine Valley,UT,84781 +Veyo,UT,84782 +Dammeron Valley,UT,84783 +White River Junc,VT,5001 +Bethel,VT,5032 +Bradford,VT,5033 +Bridgewater,VT,5034 +Bridgewater Corn,VT,5035 +Brookfield,VT,5036 +Brownsville,VT,5037 +Chelsea,VT,5038 +Corinth,VT,5039 +East Corinth,VT,5040 +East Randolph,VT,5041 +Ryegate,VT,5042 +East Thetford,VT,5043 +Fairlee,VT,5045 +Groton,VT,5046 +Hartland,VT,5048 +Newbury,VT,5051 +North Hartland,VT,5052 +North Pomfret,VT,5053 +Norwich,VT,5055 +Plymouth,VT,5056 +Post Mills,VT,5058 +Randolph,VT,5060 +Randolph Center,VT,5061 +Reading,VT,5062 +Sharon,VT,5065 +South Pomfret,VT,5067 +South Royalton,VT,5068 +South Ryegate,VT,5069 +South Strafford,VT,5070 +South Woodstock,VT,5071 +Strafford,VT,5072 +Taftsville,VT,5073 +Thetford Center,VT,5075 +Tunbridge,VT,5077 +Vershire,VT,5079 +Wells River,VT,5081 +West Fairlee,VT,5083 +West Hartford,VT,5084 +West Topsham,VT,5086 +Windsor,VT,5089 +Woodstock,VT,5091 +Bellows Falls,VT,5101 +Cambridgeport,VT,5141 +Cavendish,VT,5142 +Chester,VT,5143 +Grafton,VT,5146 +Bromley Mtn,VT,5148 +Ludlow,VT,5149 +North Springfiel,VT,5150 +Perkinsville,VT,5151 +Peru,VT,5152 +Proctorsville,VT,5153 +Saxtons River,VT,5154 +South Londonderr,VT,5155 +Springfield,VT,5156 +Weston,VT,5161 +Bennington,VT,5201 +Arlington,VT,5250 +Dorset,VT,5251 +East Arlington,VT,5252 +East Dorset,VT,5253 +Manchester Cente,VT,5255 +North Bennington,VT,5257 +North Pownal,VT,5260 +Pownal,VT,5261 +Shaftsbury,VT,5262 +Brattleboro,VT,5301 +Bondville,VT,5340 +East Dover,VT,5341 +Jacksonville,VT,5342 +Jamaica,VT,5343 +Newfane,VT,5345 +Putney,VT,5346 +Readsboro,VT,5350 +Stamford,VT,5352 +Townshend,VT,5353 +Vernon,VT,5354 +Wardsboro,VT,5355 +Mount Snow,VT,5356 +West Halifax,VT,5358 +West Townshend,VT,5359 +West Wardsboro,VT,5360 +Whitingham,VT,5361 +Williamsville,VT,5362 +Wilmington,VT,5363 +Burlington,VT,5401 +South Burlington,VT,5403 +Winooski,VT,5404 +Univ Of Vermont,VT,5405 +Alburg,VT,5440 +Bakersfield,VT,5441 +Bristol,VT,5443 +Cambridge,VT,5444 +Charlotte,VT,5445 +Colchester,VT,5446 +East Berkshire,VT,5447 +East Fairfield,VT,5448 +Enosburg Falls,VT,5450 +Essex Junction,VT,5452 +Fairfax,VT,5454 +Fairfield,VT,5455 +Ferrisburg,VT,5456 +Franklin,VT,5457 +Grand Isle,VT,5458 +Highgate Center,VT,5459 +Hinesburg,VT,5461 +Huntington,VT,5462 +Isle La Motte,VT,5463 +Smugglers Notch,VT,5464 +Jericho Center,VT,5465 +Milton,VT,5468 +Montgomery Cente,VT,5471 +New Haven,VT,5472 +North Ferrisburg,VT,5473 +North Hero,VT,5474 +Richford,VT,5476 +Bolton Valley,VT,5477 +Saint Albans,VT,5478 +Shelburne,VT,5482 +Sheldon,VT,5483 +South Hero,VT,5486 +Starksboro,VT,5487 +Swanton,VT,5488 +Underhill,VT,5489 +Vergennes,VT,5491 +Waterville,VT,5492 +Westford,VT,5494 +Williston,VT,5495 +Montpelier,VT,5602 +Adamant,VT,5640 +Barre,VT,5641 +Cabot,VT,5647 +Calais,VT,5648 +East Barre,VT,5649 +East Calais,VT,5650 +East Montpelier,VT,5651 +Eden,VT,5652 +Eden Mills,VT,5653 +Graniteville,VT,5654 +Hyde Park,VT,5655 +Johnson,VT,5656 +Marshfield,VT,5658 +Moretown,VT,5660 +Morrisville,VT,5661 +Riverton,VT,5663 +North Montpelier,VT,5666 +Plainfield,VT,5667 +Roxbury,VT,5669 +Stowe,VT,5672 +Waitsfield,VT,5673 +Sugarbush Valley,VT,5674 +Washgtin,VT,5675 +Waterbury,VT,5676 +Waterbury Center,VT,5677 +Williamstown,VT,5679 +Wolcott,VT,5680 +Woodbury,VT,5681 +Worcester,VT,5682 +Rutland,VT,5701 +Belmont,VT,5730 +Hubbardton,VT,5732 +Brandon,VT,5733 +Bridport,VT,5734 +Castleton,VT,5735 +Center Rutland,VT,5736 +Chittenden,VT,5737 +Cuttingsville,VT,5738 +Danby,VT,5739 +East Wallingford,VT,5742 +Fair Haven,VT,5743 +Florence,VT,5744 +Gaysville,VT,5746 +Granville,VT,5747 +Hancock,VT,5748 +Killington,VT,5751 +Bread Loaf,VT,5753 +Middletown Sprin,VT,5757 +Mount Holly,VT,5758 +North Clarendon,VT,5759 +Orwell,VT,5760 +Pawlet,VT,5761 +Pittsfield,VT,5762 +Pittsford,VT,5763 +Poultney,VT,5764 +Proctor,VT,5765 +Ripton,VT,5766 +Rochester,VT,5767 +Salisbury,VT,5769 +Shoreham,VT,5770 +Stockbridge,VT,5772 +Wallingford,VT,5773 +Wells,VT,5774 +West Pawlet,VT,5775 +West Rupert,VT,5776 +West Rutland,VT,5777 +Leicester Juncti,VT,5778 +Saint Johnsbury,VT,5819 +Albany,VT,5820 +Barnet,VT,5821 +Barton,VT,5822 +Concord,VT,5824 +Coventry,VT,5825 +Craftsbury,VT,5826 +Craftsbury Commo,VT,5827 +Danville,VT,5828 +Derby,VT,5829 +Derby Line,VT,5830 +East Burke,VT,5832 +East Charleston,VT,5833 +East Hardwick,VT,5836 +East Haven,VT,5837 +Glover,VT,5839 +Greensboro,VT,5841 +Greensboro Bend,VT,5842 +Hardwick,VT,5843 +Irasburg,VT,5845 +Island Pond,VT,5846 +Lowell,VT,5847 +Lyndon Center,VT,5850 +Lyndonville,VT,5851 +Morgan Ctr,VT,5853 +Newport,VT,5855 +Newport Center,VT,5857 +North Concord,VT,5858 +Jay Peak,VT,5859 +Orleans,VT,5860 +Peacham,VT,5862 +Sheffield,VT,5866 +Sutton,VT,5867 +Troy,VT,5868 +West Burke,VT,5871 +West Charleston,VT,5872 +West Danville,VT,5873 +Westfield,VT,5874 +West Glover,VT,5875 +Averill,VT,5901 +Beecher Falls,VT,5902 +Canaan,VT,5903 +Gilman,VT,5904 +Guildhall,VT,5905 +Lunenburg,VT,5906 +Norton,VT,5907 +Aldie,VA,22001 +Amissville,VA,22002 +Annandale,VA,22003 +Arcola,VA,22010 +Ashburn,VA,22011 +Bluemont,VA,22012 +Bristow,VA,22013 +Broad Run,VA,22014 +Burke,VA,22015 +Catharpin,VA,22018 +Catlett,VA,22019 +Centreville,VA,22020 +Chantilly,VA,22021 +Clifton,VA,22024 +Delaplane,VA,22025 +Dumfries,VA,22026 +Dunn Loring,VA,22027 +Fairfax,VA,22030 +Fairfax,VA,22031 +Fairfax,VA,22032 +Fairfax,VA,22033 +Fairfax Station,VA,22039 +Baileys Crossroa,VA,22041 +Mosby,VA,22042 +Pimmit,VA,22043 +Seven Corners,VA,22044 +Falls Church,VA,22046 +Fort Belvoir,VA,22060 +Gainesville,VA,22065 +Great Falls,VA,22066 +Hamilton,VA,22068 +Haymarket,VA,22069 +Herndon,VA,22070 +Herndon,VA,22071 +Leesburg,VA,22075 +Mason Neck,VA,22079 +Lovettsville,VA,22080 +Lake Anne,VA,22090 +Reston,VA,22091 +Reston,VA,22094 +Mc Lean,VA,22101 +West Mclean,VA,22102 +Manassas,VA,22110 +Manassas Park,VA,22111 +Marshall,VA,22115 +Middleburg,VA,22117 +Nokesville,VA,22123 +Oakton,VA,22124 +Paeonian Springs,VA,22129 +Paris,VA,22130 +Hillsboro,VA,22132 +Quantico,VA,22134 +Round Hill,VA,22141 +Springfield,VA,22150 +North Springfiel,VA,22151 +West Springfield,VA,22152 +Springfield,VA,22153 +Sterling,VA,22170 +The Plains,VA,22171 +Triangle,VA,22172 +Upperville,VA,22176 +Vienna,VA,22180 +Vienna,VA,22181 +Vienna,VA,22182 +Airlie,VA,22186 +Waterford,VA,22190 +Woodbridge,VA,22191 +Lakeridge,VA,22192 +Dale City,VA,22193 +Arlington,VA,22201 +Arlington,VA,22202 +Arlington,VA,22203 +Arlington,VA,22204 +Arlington,VA,22205 +Arlington,VA,22206 +Arlington,VA,22207 +Arlington,VA,22209 +Arlington,VA,22211 +Arlington,VA,22213 +Alexandria,VA,22301 +Alexandria,VA,22302 +Jefferson Manor,VA,22303 +Alexandria,VA,22304 +Alexandria,VA,22305 +Community,VA,22306 +Belle View,VA,22307 +Wellington,VA,22308 +Engleside,VA,22309 +Franconia,VA,22310 +Alexandria,VA,22311 +Alexandria,VA,22312 +Alexandria,VA,22314 +Fredericksburg,VA,22401 +Falmouth,VA,22405 +Fredericksburg,VA,22406 +Fredericksburg,VA,22407 +Fredericksburg,VA,22408 +Bowling Green,VA,22427 +Burgess,VA,22432 +Burr Hill,VA,22433 +Callao,VA,22435 +Caret,VA,22436 +Center Cross,VA,22437 +Champlain,VA,22438 +Chance,VA,22439 +Oak Grove,VA,22443 +Dahlgren,VA,22448 +Howertons,VA,22454 +Farnham,VA,22460 +Hague,VA,22469 +Heathsville,VA,22473 +Hustle,VA,22476 +Irvington,VA,22480 +Kilmarnock,VA,22482 +King George,VA,22485 +Kinsale,VA,22488 +Lancaster,VA,22503 +Laneview,VA,22504 +Locust Grove,VA,22508 +Loretto,VA,22509 +Lottsburg,VA,22511 +Milford,VA,22514 +Montross,VA,22520 +Partlow,VA,22534 +Port Royal,VA,22535 +Rappahannock Aca,VA,22538 +Reedville,VA,22539 +Rhoadesville,VA,22542 +Ruther Glen,VA,22546 +Snell,VA,22553 +Stafford,VA,22554 +Supply,VA,22559 +Tappahannock,VA,22560 +Unionville,VA,22567 +Mine Run,VA,22568 +Nomini Grove,VA,22572 +Weems,VA,22576 +Windmill Point,VA,22578 +Wicomico Church,VA,22579 +Woodford,VA,22580 +Winchester,VA,22601 +Browntown,VA,22610 +Berryville,VA,22611 +Boyce,VA,22620 +Clear Brook,VA,22624 +Whitacre,VA,22625 +Flint Hill,VA,22627 +Front Royal,VA,22630 +Gore,VA,22637 +Hume,VA,22639 +Huntly,VA,22640 +Lebanon Church,VA,22641 +Linden,VA,22642 +Markham,VA,22643 +Maurertown,VA,22644 +Middletown,VA,22645 +Reliance,VA,22649 +Rileyville,VA,22650 +Saint Davids Chu,VA,22652 +Star Tannery,VA,22654 +Stephens City,VA,22655 +Stephenson,VA,22656 +Strasburg,VA,22657 +Toms Brook,VA,22660 +White Post,VA,22663 +Woodstock,VA,22664 +Raccoon Ford,VA,22701 +Aroda,VA,22709 +Morrisville,VA,22712 +Boston,VA,22713 +Brandy Station,VA,22714 +Brightwood,VA,22715 +Castleton,VA,22716 +Elkwood,VA,22718 +Etlan,VA,22719 +Goldvein,VA,22720 +Haywood,VA,22722 +Jeffersonton,VA,22724 +Leon,VA,22725 +Lignum,VA,22726 +Aylor,VA,22727 +Midland,VA,22728 +Mitchells,VA,22729 +Pratts,VA,22731 +Radiant,VA,22732 +Rapidan,VA,22733 +Remington,VA,22734 +Reva,VA,22735 +Richardsville,VA,22736 +Rixeyville,VA,22737 +Uno,VA,22738 +Sperryville,VA,22740 +Stevensburg,VA,22741 +Sumerduck,VA,22742 +Syria,VA,22743 +Viewtown,VA,22746 +Washington,VA,22747 +Woodville,VA,22749 +Harrisonburg,VA,22801 +Basye,VA,22810 +Bergton,VA,22811 +Bridgewater,VA,22812 +Broadway,VA,22815 +Criders,VA,22820 +Montezuma,VA,22821 +Edinburg,VA,22824 +Elkton,VA,22827 +Fulks Run,VA,22830 +Hinton,VA,22831 +Keezletown,VA,22832 +Linville,VA,22834 +Luray,VA,22835 +Mc Gaheysville,VA,22840 +Mount Crawford,VA,22841 +Conicville,VA,22842 +Mount Solon,VA,22843 +New Market,VA,22844 +Orkney Springs,VA,22845 +Montevideo,VA,22846 +Shenandoah Caver,VA,22847 +Shenandoah,VA,22849 +Stanley,VA,22851 +Timberville,VA,22853 +Charlottesville,VA,22901 +University,VA,22903 +Afton,VA,22920 +Tye River,VA,22922 +Burnleys,VA,22923 +Cobham,VA,22929 +Covesville,VA,22931 +Yancey Mills,VA,22932 +Boonesville,VA,22935 +Earlysville,VA,22936 +Esmont,VA,22937 +Faber,VA,22938 +Woodrow Wilson,VA,22939 +Mission Home,VA,22940 +Cashs Corner,VA,22942 +Greenwood,VA,22943 +Keene,VA,22946 +Boyd Tavern,VA,22947 +Locust Dale,VA,22948 +Lovingston,VA,22949 +Lowesville,VA,22951 +Sherando,VA,22952 +Wintergreen,VA,22958 +Alberene,VA,22959 +Montford,VA,22960 +Bybee,VA,22963 +Piney River,VA,22964 +Roseland,VA,22967 +Advance Mills,VA,22968 +Schuyler,VA,22969 +Rockfish,VA,22971 +Somerset,VA,22972 +Geer,VA,22973 +Troy,VA,22974 +Waynesboro,VA,22980 +Amelia Court Hou,VA,23002 +Arvonia,VA,23004 +Ashland,VA,23005 +Aylett,VA,23009 +Barhamsville,VA,23011 +23013,VA,23013 +Beaverdam,VA,23015 +Beaverlett,VA,23016 +23020,VA,23020 +Bohannon,VA,23021 +Bremo Bluff,VA,23022 +Bruington,VA,23023 +Bumpass,VA,23024 +Miles,VA,23025 +Tamworth,VA,23027 +Cauthornville,VA,23029 +Charles City,VA,23030 +Church View,VA,23032 +Cologne,VA,23037 +Columbia,VA,23038 +Crozier,VA,23039 +Cumberland,VA,23040 +23042,VA,23042 +Deltaville,VA,23043 +Diggs,VA,23045 +Doswell,VA,23047 +Dutton,VA,23050 +Fork Union,VA,23055 +Glen Allen,VA,23060 +Pinero,VA,23061 +Gloucester Point,VA,23062 +Goochland,VA,23063 +Gum Spring,VA,23065 +Gwynn,VA,23066 +Hanover,VA,23069 +Hardyville,VA,23070 +Hartfield,VA,23071 +Hayes,VA,23072 +Highland Springs,VA,23075 +Jamaica,VA,23079 +James Store,VA,23080 +Jetersville,VA,23083 +Kents Store,VA,23084 +King And Queen C,VA,23085 +King William,VA,23086 +Lanexa,VA,23089 +Little Plymouth,VA,23091 +Locust Hill,VA,23092 +Louisa,VA,23093 +Dabneys,VA,23102 +Manakin Sabot,VA,23103 +Manquin,VA,23106 +Mascot,VA,23108 +Mathews,VA,23109 +Shanghai,VA,23110 +Mechanicsville,VA,23111 +Midlothian,VA,23112 +Midlothian,VA,23113 +23114,VA,23114 +Mineral,VA,23117 +Mobjack,VA,23118 +Moon,VA,23119 +Moseley,VA,23120 +New Canton,VA,23123 +New Kent,VA,23124 +New Point,VA,23125 +Newtown,VA,23126 +North,VA,23128 +Oilville,VA,23129 +Onemo,VA,23130 +23137,VA,23137 +Bavon,VA,23138 +Powhatan,VA,23139 +Providence Forge,VA,23140 +Quinton,VA,23141 +Rockville,VA,23146 +Indian Neck,VA,23148 +Saluda,VA,23149 +Sandston,VA,23150 +Sandy Hook,VA,23153 +Plain View,VA,23156 +23157,VA,23157 +Stevensville,VA,23161 +Shadow,VA,23163 +Toano,VA,23168 +Syringa,VA,23169 +Remlik,VA,23175 +Wake,VA,23176 +Walkerton,VA,23177 +Warner,VA,23179 +Water View,VA,23180 +West Point,VA,23181 +Merrimac,VA,23185 +Williamsburg,VA,23188 +Montpelier,VA,23192 +Richmond,VA,23219 +Richmond,VA,23220 +Richmond,VA,23221 +Richmond,VA,23222 +Richmond,VA,23223 +Richmond,VA,23224 +Richmond,VA,23225 +Richmond,VA,23226 +Bellevue,VA,23227 +Lakeside,VA,23228 +Regency,VA,23229 +West End,VA,23230 +Richmond,VA,23231 +Ridge,VA,23233 +Ampthill,VA,23234 +Bon Air,VA,23235 +Richmond,VA,23236 +Richmond,VA,23237 +Richmond,VA,23294 +Accomac,VA,23301 +Assawoman,VA,23302 +Belle Haven,VA,23306 +Birdsnest,VA,23307 +Bloxom,VA,23308 +Cape Charles,VA,23310 +Carrollton,VA,23314 +Carrsville,VA,23315 +Chesapeake,VA,23320 +Bowers Hill,VA,23321 +Fentress,VA,23322 +Chesapeake,VA,23323 +Chesapeake,VA,23324 +Chesapeake,VA,23325 +Chincoteague,VA,23336 +Wallops Island,VA,23337 +Exmore,VA,23350 +Franktown,VA,23354 +Greenbackville,VA,23356 +Greenbush,VA,23357 +Hallwood,VA,23359 +Horntown,VA,23395 +Horsey,VA,23396 +Jenkins Bridge,VA,23399 +Locustville,VA,23404 +Machipongo,VA,23405 +Mappsville,VA,23407 +Mears,VA,23409 +Melfa,VA,23410 +New Church,VA,23415 +Oak Hall,VA,23416 +Onancock,VA,23417 +Onley,VA,23418 +Painter,VA,23420 +Parksley,VA,23421 +Sanford,VA,23426 +Smithfield,VA,23430 +Suffolk,VA,23432 +Suffolk,VA,23433 +Suffolk,VA,23434 +Suffolk,VA,23435 +Suffolk,VA,23436 +Suffolk,VA,23437 +Suffolk,VA,23438 +Tangier,VA,23440 +Temperanceville,VA,23442 +Virginia Beach,VA,23451 +Virginia Beach,VA,23452 +Virginia Beach,VA,23454 +Virginia Beach,VA,23455 +Virginia Beach,VA,23456 +Blackwater Bridg,VA,23457 +Virginia Beach,VA,23459 +Virginia Beach,VA,23462 +Virginia Beach,VA,23464 +Walters,VA,23481 +Windsor,VA,23487 +Norfolk,VA,23502 +Norfolk,VA,23503 +Norfolk,VA,23504 +Norfolk,VA,23505 +Norfolk,VA,23507 +Norfolk,VA,23508 +Norfolk,VA,23509 +Norfolk,VA,23510 +Fleet,VA,23511 +Norfolk,VA,23513 +Norfolk,VA,23517 +Norfolk,VA,23518 +Naval Amphibious,VA,23521 +Norfolk,VA,23523 +Newport News,VA,23601 +Newport News,VA,23602 +Newport News,VA,23603 +Newport News,VA,23604 +Newport News,VA,23605 +Newport News,VA,23606 +Newport News,VA,23607 +Hampton,VA,23651 +Hampton,VA,23661 +Poquoson,VA,23662 +Hampton,VA,23663 +Hampton,VA,23664 +Hampton,VA,23665 +Hampton,VA,23666 +Hampton,VA,23669 +Yorktown,VA,23690 +Grafton,VA,23692 +Tabb,VA,23693 +Seaford,VA,23696 +Portsmouth,VA,23701 +Portsmouth,VA,23702 +Portsmouth,VA,23703 +Portsmouth,VA,23704 +Portsmouth,VA,23707 +Portsmouth,VA,23709 +Fort Lee,VA,23801 +Ettrick,VA,23803 +Petersburg,VA,23805 +Alberta,VA,23821 +Blackstone,VA,23824 +Boykins,VA,23827 +Branchville,VA,23828 +Capron,VA,23829 +Carson,VA,23830 +Chester,VA,23831 +Chesterfield,VA,23832 +Church Road,VA,23833 +Colonial Heights,VA,23834 +Courtland,VA,23837 +Dendron,VA,23839 +Dewitt,VA,23840 +Dinwiddie,VA,23841 +Disputanta,VA,23842 +Dolphin,VA,23843 +Drewryville,VA,23844 +Ebony,VA,23845 +Elberon,VA,23846 +Emporia,VA,23847 +Ammon,VA,23850 +Franklin,VA,23851 +Freeman,VA,23856 +Gasburg,VA,23857 +Handsom,VA,23859 +Hopewell,VA,23860 +Ivor,VA,23866 +Jarratt,VA,23867 +Triplet,VA,23868 +Mc Kenney,VA,23872 +Newsoms,VA,23874 +Prince George,VA,23875 +Rawlings,VA,23876 +Sedley,VA,23878 +Skippers,VA,23879 +Spring Grove,VA,23881 +Stony Creek,VA,23882 +Surry,VA,23883 +Sutherland,VA,23885 +Valentines,VA,23887 +Wakefield,VA,23888 +Warfield,VA,23889 +Waverly,VA,23890 +White Plains,VA,23893 +Wilsons,VA,23894 +Yale,VA,23897 +Zuni,VA,23898 +Farmville,VA,23901 +Baskerville,VA,23915 +Boydton,VA,23917 +Bracey,VA,23919 +Brodnax,VA,23920 +Buckingham,VA,23921 +Burkeville,VA,23922 +Charlotte Court,VA,23923 +Chase City,VA,23924 +Clarksville,VA,23927 +Crewe,VA,23930 +Cullen,VA,23934 +Sprouses Corner,VA,23936 +Drakes Branch,VA,23937 +Dundas,VA,23938 +Green Bay,VA,23942 +Kenbridge,VA,23944 +Keysville,VA,23947 +Blackridge,VA,23950 +Lunenburg,VA,23952 +Meherrin,VA,23954 +Pamplin,VA,23958 +Phenix,VA,23959 +Prospect,VA,23960 +Randolph,VA,23962 +Red House,VA,23963 +Red Oak,VA,23964 +Rice,VA,23966 +Saxe,VA,23967 +Skipwith,VA,23968 +South Hill,VA,23970 +23973,VA,23973 +Victoria,VA,23974 +Wylliesburg,VA,23976 +Roanoke,VA,24011 +Roanoke,VA,24012 +Roanoke,VA,24013 +Roanoke,VA,24014 +Roanoke,VA,24015 +Roanoke,VA,24016 +Roanoke,VA,24017 +Cave Spring,VA,24018 +Hollins,VA,24019 +Ararat,VA,24053 +Axton,VA,24054 +Bassett,VA,24055 +Bent Mountain,VA,24059 +Whitethorne,VA,24060 +Blue Ridge,VA,24064 +Boones Mill,VA,24065 +Lithia,VA,24066 +Callaway,VA,24067 +Cascade,VA,24069 +Catawba,VA,24070 +Simpsons,VA,24072 +Christiansburg,VA,24073 +Claudville,VA,24076 +Cloverdale,VA,24077 +Collinsville,VA,24078 +Copper Hill,VA,24079 +Critz,VA,24082 +Daleville,VA,24083 +Dublin,VA,24084 +Eagle Rock,VA,24085 +Eggleston,VA,24086 +Ironto,VA,24087 +Ferrum,VA,24088 +Fieldale,VA,24089 +Fincastle,VA,24090 +Alum Ridge,VA,24091 +Gladehill,VA,24092 +Glen Lyn,VA,24093 +Goldbond,VA,24094 +Goodview,VA,24095 +Hardy,VA,24101 +Henry,VA,24102 +Huddleston,VA,24104 +Indian Valley,VA,24105 +Martinsville,VA,24112 +Meadows Of Dan,VA,24120 +Moneta,VA,24121 +Montvale,VA,24122 +Narrows,VA,24124 +New Castle,VA,24127 +Newport,VA,24128 +Paint Bank,VA,24131 +Patrick Springs,VA,24133 +Pearisburg,VA,24134 +Mountain Lake,VA,24136 +Penhook,VA,24137 +Pilot,VA,24138 +Pittsville,VA,24139 +Fairlawn,VA,24141 +Rich Creek,VA,24147 +Ridgeway,VA,24148 +Riner,VA,24149 +Ripplemead,VA,24150 +Rocky Mount,VA,24151 +Salem,VA,24153 +Sandy Level,VA,24161 +Shawsville,VA,24162 +Spencer,VA,24165 +Staffordsville,VA,24167 +Stanleytown,VA,24168 +Stuart,VA,24171 +Thaxton,VA,24174 +Troutville,VA,24175 +Union Hall,VA,24176 +Stewartsville,VA,24179 +Wirtz,VA,24184 +Woolwine,VA,24185 +Bristol,VA,24201 +Abingdon,VA,24210 +Exeter,VA,24216 +Bee,VA,24217 +Big Stone Gap,VA,24219 +Birchleaf,VA,24220 +Blackwater,VA,24221 +Castlewood,VA,24224 +Cleveland,VA,24225 +Clinchco,VA,24226 +Clintwood,VA,24228 +Coeburn,VA,24230 +Damascus,VA,24236 +Dante,VA,24237 +Davenport,VA,24239 +Dryden,VA,24243 +Clinchport,VA,24244 +Dungannon,VA,24245 +Ewing,VA,24248 +Fort Blackmore,VA,24250 +Gate City,VA,24251 +Haysi,VA,24256 +Hiltons,VA,24258 +Council,VA,24260 +Jonesville,VA,24263 +Keokee,VA,24265 +Lebanon,VA,24266 +Mc Clure,VA,24269 +Mendota,VA,24270 +Nickelsville,VA,24271 +Nora,VA,24272 +Norton,VA,24273 +Pennington Gap,VA,24277 +Pound,VA,24279 +Rosedale,VA,24280 +Rose Hill,VA,24281 +Saint Charles,VA,24282 +Saint Paul,VA,24283 +Stonega,VA,24285 +Trammel,VA,24289 +Weber City,VA,24290 +Whitetop,VA,24292 +Wise,VA,24293 +Pulaski,VA,24301 +Atkins,VA,24311 +Austinville,VA,24312 +Barren Springs,VA,24313 +Bastian,VA,24314 +Bland,VA,24315 +Broadford,VA,24316 +Cana,VA,24317 +Ceres,VA,24318 +Chilhowie,VA,24319 +Cripple Creek,VA,24322 +Crockett,VA,24323 +Draper,VA,24324 +Dugspur,VA,24325 +Elk Creek,VA,24326 +Fancy Gap,VA,24328 +24329,VA,24329 +Fries,VA,24330 +Galax,VA,24333 +Glade Spring,VA,24340 +Hillsville,VA,24343 +Allisonia,VA,24347 +Independence,VA,24348 +Ivanhoe,VA,24350 +Lambsburg,VA,24351 +Laurel Fork,VA,24352 +Marion,VA,24354 +Foster Falls,VA,24360 +Meadowview,VA,24361 +Mouth Of Wilson,VA,24363 +Rocky Gap,VA,24366 +Rural Retreat,VA,24368 +Saltville,VA,24370 +Seven Mile Ford,VA,24373 +Speedwell,VA,24374 +Sugar Grove,VA,24375 +Tannersville,VA,24377 +Trout Dale,VA,24378 +Willis,VA,24380 +Woodlawn,VA,24381 +Wytheville,VA,24382 +Woodrum,VA,24401 +Blue Grass,VA,24413 +Buena Vista,VA,24416 +Churchville,VA,24421 +Clifton Forge,VA,24422 +Alleghany,VA,24426 +Craigsville,VA,24430 +Crimora,VA,24431 +Deerfield,VA,24432 +Doe Hill,VA,24433 +Fairfield,VA,24435 +Fort Defiance,VA,24437 +Goshen,VA,24439 +Greenville,VA,24440 +Grottoes,VA,24441 +Head Waters,VA,24442 +Hightown,VA,24444 +Hot Springs,VA,24445 +Lexington,VA,24450 +Mc Dowell,VA,24458 +Middlebrook,VA,24459 +Millboro Spring,VA,24460 +Montebello,VA,24464 +Monterey,VA,24465 +Mount Sidney,VA,24467 +Mustoe,VA,24468 +Port Republic,VA,24471 +Raphine,VA,24472 +Rockbridge Baths,VA,24473 +Spottswood,VA,24475 +Stuarts Draft,VA,24477 +Swoope,VA,24479 +Verona,VA,24482 +Vesuvius,VA,24483 +Bolar,VA,24484 +West Augusta,VA,24485 +Weyers Cave,VA,24486 +Burnsville,VA,24487 +Lynchburg,VA,24501 +Timberlake,VA,24502 +Lynchburg,VA,24503 +Lynchburg,VA,24504 +Altavista,VA,24517 +Alton,VA,24520 +Amherst,VA,24521 +Appomattox,VA,24522 +Bedford,VA,24523 +Big Island,VA,24526 +Blairs,VA,24527 +Brookneal,VA,24528 +Buffalo Junction,VA,24529 +Callands,VA,24530 +Chatham,VA,24531 +Clover,VA,24534 +Coleman Falls,VA,24536 +Concord,VA,24538 +Crystal Hill,VA,24539 +Danville,VA,24540 +Danville,VA,24541 +Dry Fork,VA,24549 +Evington,VA,24550 +Forest,VA,24551 +Gladstone,VA,24553 +Gladys,VA,24554 +Glasgow,VA,24555 +Goode,VA,24556 +Gretna,VA,24557 +Halifax,VA,24558 +Howardsville,VA,24562 +Hurt,VA,24563 +Java,VA,24565 +Keeling,VA,24566 +Long Island,VA,24569 +Lowry,VA,24570 +Lynch Station,VA,24571 +Madison Heights,VA,24572 +Monroe,VA,24574 +Lennig,VA,24577 +Natural Bridge,VA,24578 +Natural Bridge S,VA,24579 +Nelson,VA,24580 +Ringgold,VA,24586 +Rustburg,VA,24588 +Scottsburg,VA,24589 +Scottsville,VA,24590 +South Boston,VA,24592 +Spout Spring,VA,24593 +Sutherlin,VA,24594 +Ingram,VA,24597 +Virgilina,VA,24598 +Wingina,VA,24599 +Bandy,VA,24602 +Conaway,VA,24603 +Bluefield,VA,24605 +Cedar Bluff,VA,24609 +Falls Mills,VA,24613 +Grundy,VA,24614 +Hurley,VA,24620 +Jewell Valley,VA,24622 +Mavisdale,VA,24627 +Tiptop,VA,24630 +Patterson,VA,24631 +24633,VA,24633 +Pilgrims Knob,VA,24634 +Pounding Mill,VA,24637 +Raven,VA,24639 +Richlands,VA,24641 +Rowe,VA,24646 +Swords Creek,VA,24649 +Tazewell,VA,24651 +Vansant,VA,24656 +Whitewood,VA,24657 +Algona,WA,98001 +Auburn,WA,98002 +Federal Way,WA,98003 +Beaux Arts,WA,98004 +Bellevue,WA,98005 +Bellevue,WA,98006 +Bellevue,WA,98007 +Bellevue,WA,98008 +Black Diamond,WA,98010 +Bothell,WA,98011 +Mill Creek,WA,98012 +Carnation,WA,98014 +Duvall,WA,98019 +Woodway,WA,98020 +Bothell,WA,98021 +Enumclaw,WA,98022 +Federal Way,WA,98023 +Fall City,WA,98024 +Edmonds,WA,98026 +Issaquah,WA,98027 +Kent,WA,98031 +Kent,WA,98032 +Kirkland,WA,98033 +Kirkland,WA,98034 +Brier,WA,98036 +Lynnwood,WA,98037 +Maple Valley,WA,98038 +Mercer Island,WA,98040 +Kent,WA,98042 +Mountlake Terrac,WA,98043 +North Bend,WA,98045 +Pacific,WA,98047 +Ravensdale,WA,98051 +Redmond,WA,98052 +Redmond,WA,98053 +Renton,WA,98055 +Renton,WA,98056 +Renton,WA,98058 +Renton,WA,98059 +Snoqualmie,WA,98065 +Vashon,WA,98070 +Woodinville,WA,98072 +Seattle,WA,98101 +Seattle,WA,98102 +Seattle,WA,98103 +Seattle,WA,98104 +Seattle,WA,98105 +Seattle,WA,98106 +Seattle,WA,98107 +Tukwila,WA,98108 +Seattle,WA,98109 +Bainbridge Islan,WA,98110 +Seattle,WA,98112 +Seattle,WA,98115 +Seattle,WA,98116 +Seattle,WA,98117 +Seattle,WA,98118 +Seattle,WA,98119 +Seattle,WA,98121 +Seattle,WA,98122 +Seattle,WA,98125 +Seattle,WA,98126 +Seattle,WA,98133 +Seattle,WA,98134 +Seattle,WA,98136 +Seattle,WA,98144 +Burien,WA,98146 +Normandy Park,WA,98148 +Lk Forest Park,WA,98155 +Seatac,WA,98158 +Normandy Park,WA,98166 +Tukwila,WA,98168 +Seattle,WA,98177 +Tukwila,WA,98178 +Tukwila,WA,98188 +Des Moines,WA,98198 +Seattle,WA,98199 +Everett,WA,98201 +Everett,WA,98203 +Everett,WA,98204 +Everett,WA,98205 +Everett,WA,98208 +Acme,WA,98220 +Anacortes,WA,98221 +Arlington,WA,98223 +Baring,WA,98224 +Bellingham,WA,98225 +Bellingham,WA,98226 +Blaine,WA,98230 +Bow,WA,98232 +Burlington,WA,98233 +Clinton,WA,98236 +Concrete,WA,98237 +Coupeville,WA,98239 +Custer,WA,98240 +Darrington,WA,98241 +Glacier,WA,98244 +Eastsound,WA,98245 +Everson,WA,98247 +Ferndale,WA,98248 +Freeland,WA,98249 +Friday Harbor,WA,98250 +Granite Falls,WA,98252 +Greenbank,WA,98253 +La Conner,WA,98257 +Lake Stevens,WA,98258 +Langley,WA,98260 +Lopez,WA,98261 +Lummi Island,WA,98262 +Lyman,WA,98263 +Lynden,WA,98264 +Marysville,WA,98270 +Marysville,WA,98271 +Monroe,WA,98272 +Mount Vernon,WA,98273 +Mukilteo,WA,98275 +Oak Harbor,WA,98277 +Whidbey Island N,WA,98278 +Olga,WA,98279 +Point Roberts,WA,98281 +Rockport,WA,98283 +Sedro Woolley,WA,98284 +Skykomish,WA,98288 +Snohomish,WA,98290 +Stanwood,WA,98292 +Sultan,WA,98294 +Sumas,WA,98295 +Anderson Island,WA,98303 +Ashford,WA,98304 +Beaver,WA,98305 +Bremerton,WA,98310 +Bremerton,WA,98312 +Puget Sound Nava,WA,98314 +Silverdale,WA,98315 +Brinnon,WA,98320 +Buckley,WA,98321 +Carbonado,WA,98323 +Chimacum,WA,98325 +Clallam Bay,WA,98326 +Eatonville,WA,98328 +Gig Harbor,WA,98329 +Elbe,WA,98330 +Forks,WA,98331 +Gig Harbor,WA,98332 +Fox Island,WA,98333 +Gig Harbor,WA,98335 +Glenoma,WA,98336 +Graham,WA,98338 +Port Hadlock,WA,98339 +Hansville,WA,98340 +Kingston,WA,98346 +Home,WA,98349 +Longbranch,WA,98351 +Milton,WA,98354 +Mineral,WA,98355 +Morton,WA,98356 +Nordland,WA,98358 +Olalla,WA,98359 +Orting,WA,98360 +Packwood,WA,98361 +Port Angeles,WA,98362 +Port Ludlow,WA,98365 +South Park Villa,WA,98366 +Port Townsend,WA,98368 +Poulsbo,WA,98370 +Puyallup,WA,98371 +Puyallup,WA,98372 +Puyallup,WA,98373 +Puyallup,WA,98374 +Quilcene,WA,98376 +Randle,WA,98377 +Seabeck,WA,98380 +Sekiu,WA,98381 +Sequim,WA,98382 +Silverdale,WA,98383 +Spanaway,WA,98387 +Steilacoom,WA,98388 +Bonney Lake,WA,98390 +Suquamish,WA,98392 +Vaughn,WA,98394 +Tacoma,WA,98402 +Tacoma,WA,98403 +Tacoma,WA,98404 +Tacoma,WA,98405 +Tacoma,WA,98406 +Tacoma,WA,98407 +Tacoma,WA,98408 +Tacoma,WA,98409 +Tacoma,WA,98421 +Tacoma,WA,98422 +Fife,WA,98424 +Fort Lewis,WA,98433 +Lakewood Center,WA,98439 +Tacoma,WA,98443 +Parkland,WA,98444 +Parkland,WA,98445 +Parkland,WA,98446 +Tacoma,WA,98465 +Fircrest,WA,98466 +Tacoma,WA,98467 +Lakewood Center,WA,98498 +Lakewood Center,WA,98499 +Olympia,WA,98501 +Olympia,WA,98502 +Lacey,WA,98503 +Lacey,WA,98506 +Aberdeen,WA,98520 +Allyn,WA,98524 +Amanda Park,WA,98526 +Bear Creek,WA,98528 +Centralia,WA,98531 +Chehalis,WA,98532 +Cinebar,WA,98533 +Copalis Beach,WA,98535 +Copalis Crossing,WA,98536 +Cosmopolis,WA,98537 +Curtis,WA,98538 +Elma,WA,98541 +Ethel,WA,98542 +Grapeview,WA,98546 +Grayland,WA,98547 +Hoodsport,WA,98548 +Hoquiam,WA,98550 +Humptulips,WA,98552 +Lilliwaup,WA,98555 +Mc Cleary,WA,98557 +Matlock,WA,98560 +Moclips,WA,98562 +Montesano,WA,98563 +Mossyrock,WA,98564 +Oakville,WA,98568 +Ocean City,WA,98569 +Onalaska,WA,98570 +Pacific Beach,WA,98571 +Pe Ell,WA,98572 +Quinault,WA,98575 +Rainier,WA,98576 +Raymond,WA,98577 +Rochester,WA,98579 +Roy,WA,98580 +Ryderwood,WA,98581 +Salkum,WA,98582 +Shelton,WA,98584 +Silver Creek,WA,98585 +South Bend,WA,98586 +Taholah,WA,98587 +Tahuya,WA,98588 +Tenino,WA,98589 +Tokeland,WA,98590 +Toledo,WA,98591 +Union,WA,98592 +Vader,WA,98593 +Westport,WA,98595 +Winlock,WA,98596 +Yelm,WA,98597 +Amboy,WA,98601 +Appleton,WA,98602 +Ariel,WA,98603 +Battle Ground,WA,98604 +Cook,WA,98605 +Brush Prairie,WA,98606 +Camas,WA,98607 +Carson,WA,98610 +Castle Rock,WA,98611 +Cathlamet,WA,98612 +Centerville,WA,98613 +Cougar,WA,98616 +Glenwood,WA,98619 +Goldendale,WA,98620 +Grays River,WA,98621 +Ilwaco,WA,98624 +Kalama,WA,98625 +Kelso,WA,98626 +Klickitat,WA,98628 +La Center,WA,98629 +Long Beach,WA,98631 +Longview,WA,98632 +Lyle,WA,98635 +Naselle,WA,98638 +Ocean Park,WA,98640 +Ridgefield,WA,98642 +Rosburg,WA,98643 +Silverlake,WA,98645 +Skamokawa,WA,98647 +Stevenson,WA,98648 +Toutle,WA,98649 +Trout Lake,WA,98650 +Underwood,WA,98651 +Vancouver,WA,98660 +Vancouver,WA,98661 +Orchards,WA,98662 +Vancouver,WA,98663 +Vancouver,WA,98664 +Hazel Dell,WA,98665 +Wahkiacus,WA,98670 +Washougal,WA,98671 +White Salmon,WA,98672 +Woodland,WA,98674 +Yacolt,WA,98675 +Vancouver,WA,98682 +Cascade Park,WA,98684 +Felida,WA,98685 +Vancouver,WA,98686 +Wenatchee,WA,98801 +East Wenatchee,WA,98802 +Brewster,WA,98812 +Bridgeport,WA,98813 +Carlton,WA,98814 +Cashmere,WA,98815 +Chelan,WA,98816 +Entiat,WA,98822 +Ephrata,WA,98823 +Leavenworth,WA,98826 +Loomis,WA,98827 +Malaga,WA,98828 +Mansfield,WA,98830 +Manson,WA,98831 +Marlin,WA,98832 +Mazama,WA,98833 +Methow,WA,98834 +Moses Lake,WA,98837 +Okanogan,WA,98840 +Omak,WA,98841 +Orondo,WA,98843 +Oroville,WA,98844 +Palisades,WA,98845 +Pateros,WA,98846 +Peshastin,WA,98847 +Quincy,WA,98848 +Riverside,WA,98849 +Rock Island,WA,98850 +Soap Lake,WA,98851 +Stehekin,WA,98852 +Tonasket,WA,98855 +Twisp,WA,98856 +Warden,WA,98857 +Waterville,WA,98858 +Wauconda,WA,98859 +Winthrop,WA,98862 +Terrace Heights,WA,98901 +Yakima,WA,98902 +Union Gap,WA,98903 +Wide Hollow,WA,98908 +Cle Elum,WA,98922 +Cowiche,WA,98923 +Ellensburg,WA,98926 +Grandview,WA,98930 +Granger,WA,98932 +Harrah,WA,98933 +Mabton,WA,98935 +Moxee,WA,98936 +White Pass,WA,98937 +Outlook,WA,98938 +Selah,WA,98942 +Sunnyside,WA,98944 +Thorp,WA,98946 +Tieton,WA,98947 +Toppenish,WA,98948 +Wapato,WA,98951 +White Swan,WA,98952 +Zillah,WA,98953 +Chattaroy,WA,99003 +Cheney,WA,99004 +Colbert,WA,99005 +Deer Park,WA,99006 +Edwall,WA,99008 +Elk,WA,99009 +Fairchild Air Fo,WA,99011 +Fairfield,WA,99012 +Ford,WA,99013 +Greenacres,WA,99016 +Lamont,WA,99017 +Latah,WA,99018 +Liberty Lake,WA,99019 +Mead,WA,99021 +Espanola,WA,99022 +Mica,WA,99023 +Newman Lake,WA,99025 +Nine Mile Falls,WA,99026 +Otis Orchards,WA,99027 +Reardan,WA,99029 +Rockford,WA,99030 +Spangle,WA,99031 +Sprague,WA,99032 +Tekoa,WA,99033 +Tumtum,WA,99034 +Valleyford,WA,99036 +Veradale,WA,99037 +Waverly,WA,99039 +Wellpinit,WA,99040 +Addy,WA,99101 +Almira,WA,99103 +Benge,WA,99105 +Boyds,WA,99107 +Chewelah,WA,99109 +Clayton,WA,99110 +Colfax,WA,99111 +Colton,WA,99113 +Colville,WA,99114 +Coulee City,WA,99115 +Coulee Dam,WA,99116 +Creston,WA,99117 +Curlew,WA,99118 +Cusick,WA,99119 +Danville,WA,99121 +Davenport,WA,99122 +Electric City,WA,99123 +Endicott,WA,99125 +Evans,WA,99126 +Farmington,WA,99128 +Fruitland,WA,99129 +Garfield,WA,99130 +Gifford,WA,99131 +Grand Coulee,WA,99133 +Harrington,WA,99134 +Hartline,WA,99135 +Hunters,WA,99137 +Inchelium,WA,99138 +Ione,WA,99139 +Keller,WA,99140 +Kettle Falls,WA,99141 +Lacrosse,WA,99143 +Lincoln,WA,99147 +Loon Lake,WA,99148 +Malo,WA,99150 +Metaline Falls,WA,99153 +Newport,WA,99156 +Northport,WA,99157 +Oakesdale,WA,99158 +Odessa,WA,99159 +Palouse,WA,99161 +Pullman,WA,99163 +Republic,WA,99166 +Rice,WA,99167 +Ritzville,WA,99169 +Rosalia,WA,99170 +Saint John,WA,99171 +Springdale,WA,99173 +Thornton,WA,99176 +Uniontown,WA,99179 +Usk,WA,99180 +Valley,WA,99181 +Wilbur,WA,99185 +Spokane,WA,99201 +Spokane,WA,99202 +Spokane,WA,99203 +Spokane,WA,99204 +Spokane,WA,99205 +Spokane,WA,99206 +Spokane,WA,99207 +Spokane,WA,99208 +Spokane,WA,99212 +Spokane,WA,99216 +Spokane,WA,99218 +Spokane,WA,99223 +Pasco,WA,99301 +Benton City,WA,99320 +Beverly,WA,99321 +Bickleton,WA,99322 +College Place,WA,99324 +Connell,WA,99326 +Cunningham,WA,99327 +Dayton,WA,99328 +Eltopia,WA,99330 +Kennewick,WA,99336 +Kennewick,WA,99337 +Lind,WA,99341 +Mesa,WA,99343 +Mattawa,WA,99344 +Paterson,WA,99345 +Plymouth,WA,99346 +Pomeroy,WA,99347 +Prescott,WA,99348 +Prosser,WA,99350 +Richland,WA,99352 +Roosevelt,WA,99356 +Royal City,WA,99357 +Lowden,WA,99360 +Waitsburg,WA,99361 +Walla Walla,WA,99362 +Washtucna,WA,99371 +Anatone,WA,99401 +Asotin,WA,99402 +Clarkston,WA,99403 +Bluewell,WV,24701 +Athens,WV,24712 +Beeson,WV,24714 +Bramwell,WV,24715 +Herndon,WV,24726 +Kegley,WV,24731 +Lashmeet,WV,24733 +Dott,WV,24736 +Elgood,WV,24740 +Duhring,WV,24747 +Welch,WV,24801 +Mc Dowell,WV,24810 +Brenton,WV,24818 +Vallscreek,WV,24819 +Clear Fork,WV,24822 +Coal Mountain,WV,24823 +Cyclone,WV,24827 +Asco,WV,24828 +Fanrock,WV,24834 +Hanover,WV,24839 +Iaeger,WV,24844 +Jesse,WV,24849 +Jolo,WV,24850 +Marianna,WV,24859 +Matheny,WV,24860 +Mohawk,WV,24862 +Algoma,WV,24868 +North Spring,WV,24869 +Oceana,WV,24870 +Paynesville,WV,24873 +Pineville,WV,24874 +Simon,WV,24882 +Squire,WV,24884 +Lewisburg,WV,24901 +Dawson,WV,24910 +Arbovale,WV,24915 +Asbury,WV,24916 +Auto,WV,24917 +Ballard,WV,24918 +Ballengee,WV,24919 +Bartow,WV,24920 +Bozoo,WV,24923 +Buckeye,WV,24924 +Caldwell,WV,24925 +Stony Bottom,WV,24927 +Clintonville,WV,24928 +Crawley,WV,24931 +Dunmore,WV,24934 +Indian Mills,WV,24935 +Fort Spring,WV,24936 +Anthony,WV,24938 +24939,WV,24939 +Gap Mills,WV,24941 +Glace,WV,24942 +Grassy Meadows,WV,24943 +Green Bank,WV,24944 +Greenville,WV,24945 +Droop,WV,24946 +Kieffer,WV,24950 +Lindside,WV,24951 +Minnehaha Spring,WV,24954 +Maxwelton,WV,24957 +Meadow Bluff,WV,24958 +Pence Springs,WV,24962 +Peterstown,WV,24963 +Renick,WV,24966 +Ronceverte,WV,24970 +Secondcreek,WV,24974 +Pickaway,WV,24976 +Smoot,WV,24977 +Sweet Springs,WV,24980 +Talcott,WV,24981 +Union,WV,24983 +Waiteville,WV,24984 +Wayside,WV,24985 +Neola,WV,24986 +Trout,WV,24991 +Wolfcreek,WV,24993 +Alum Creek,WV,25003 +Ameagle,WV,25004 +Amma,WV,25005 +Arnett,WV,25007 +Artie,WV,25008 +Ashford,WV,25009 +Bald Knob,WV,25010 +Barrett,WV,25013 +Diamond,WV,25015 +Bentree,WV,25018 +Fola,WV,25019 +Bim,WV,25021 +Bloomingrose,WV,25024 +Blount,WV,25025 +Bob White,WV,25028 +Bomont,WV,25030 +Buffalo,WV,25033 +Burnwell,WV,25034 +Cabin Creek,WV,25035 +Cedar Grove,WV,25039 +Clay,WV,25043 +Clear Creek,WV,25044 +Quick,WV,25045 +Clio,WV,25046 +Clothier,WV,25047 +Colcord,WV,25048 +Comfort,WV,25049 +Costa,WV,25051 +Danville,WV,25053 +Dixie,WV,25059 +Dorothy,WV,25060 +Dry Creek,WV,25062 +Duck,WV,25063 +Dunbar,WV,25064 +Frame,WV,25071 +Falling Rock,WV,25079 +Foster,WV,25081 +Fraziers Bottom,WV,25082 +Whittaker,WV,25083 +Gauley Bridge,WV,25085 +Glen,WV,25088 +Gordon,WV,25093 +Hansford,WV,25103 +Harrison,WV,25105 +Henderson,WV,25106 +Hernshaw,WV,25107 +Hewett,WV,25108 +Indore,WV,25111 +Big Otter,WV,25113 +Ramage,WV,25114 +Kanawha Falls,WV,25115 +Kimberly,WV,25118 +Kincaid,WV,25119 +Lake,WV,25121 +Carbon,WV,25122 +Arbuckle,WV,25123 +Liberty,WV,25124 +Lizemores,WV,25125 +Madison,WV,25130 +Mammoth,WV,25132 +Maysel,WV,25133 +Montgomery,WV,25136 +Mount Carbon,WV,25139 +Naoma,WV,25140 +Nebo,WV,25141 +Nellis,WV,25142 +Nitro,WV,25143 +Orgas,WV,25148 +Ovapa,WV,25150 +Peytona,WV,25154 +Pliny,WV,25158 +Lanham,WV,25159 +Pond Gap,WV,25160 +Powellton,WV,25161 +Williams Mountai,WV,25163 +Pigeon,WV,25164 +Racine,WV,25165 +Red House,WV,25168 +Ridgeview,WV,25169 +Robertsburg,WV,25172 +Robson,WV,25173 +Rock Creek,WV,25174 +Saint Albans,WV,25177 +Saxon,WV,25180 +Seth,WV,25181 +Southside,WV,25187 +Stickney,WV,25189 +Sylvester,WV,25193 +Tornado,WV,25202 +Turtle Creek,WV,25203 +Bandytown,WV,25204 +Van,WV,25206 +Garrison,WV,25209 +Winfield,WV,25213 +Winifrede,WV,25214 +Advent,WV,25231 +Arnoldsburg,WV,25234 +Floe,WV,25235 +Cottageville,WV,25239 +Evans,WV,25241 +25242,WV,25242 +Gandeeville,WV,25243 +Gay,WV,25244 +Given,WV,25245 +Harmony,WV,25246 +Romance,WV,25248 +Kentuck,WV,25249 +Left Hand,WV,25251 +Duncan,WV,25252 +Letart,WV,25253 +Letter Gap,WV,25255 +Linden,WV,25256 +Lockney,WV,25258 +Looneyville,WV,25259 +Mason,WV,25260 +Millstone,WV,25261 +Millwood,WV,25262 +Mount Alto,WV,25264 +Uler,WV,25266 +Normantown,WV,25267 +Minnora,WV,25268 +Reedy,WV,25270 +Ripley,WV,25271 +Rock Castle,WV,25272 +Sand Ridge,WV,25274 +Sandyville,WV,25275 +Spencer,WV,25276 +Statts Mills,WV,25279 +Stumptown,WV,25280 +Tariff,WV,25281 +Valley Fork,WV,25283 +Wallback,WV,25285 +Walton,WV,25286 +West Columbia,WV,25287 +Charleston,WV,25301 +Big Chimney,WV,25302 +South Charleston,WV,25303 +Charleston,WV,25304 +Malden,WV,25306 +South Charleston,WV,25309 +Charleston,WV,25311 +Charleston,WV,25312 +Cross Lanes,WV,25313 +Charleston,WV,25314 +Marmet,WV,25315 +Sissonville,WV,25320 +Martinsburg,WV,25401 +Hancock,WV,25411 +Bunker Hill,WV,25413 +Charles Town,WV,25414 +Falling Waters,WV,25419 +Gerrardstown,WV,25420 +Great Cacapon,WV,25422 +Harpers Ferry,WV,25425 +Cherry Run,WV,25427 +Inwood,WV,25428 +Kearneysville,WV,25430 +Levels,WV,25431 +Paw Paw,WV,25434 +Points,WV,25437 +Ranson,WV,25438 +Shenandoah Junct,WV,25442 +Shepherdstown,WV,25443 +Slanesville,WV,25444 +Summit Point,WV,25446 +Alkol,WV,25501 +Apple Grove,WV,25502 +Ashton,WV,25503 +Barboursville,WV,25504 +Big Creek,WV,25505 +Branchland,WV,25506 +Chapmanville,WV,25508 +Culloden,WV,25510 +Dunlow,WV,25511 +East Lynn,WV,25512 +Fort Gay,WV,25514 +Gallipolis Ferry,WV,25515 +Radnor,WV,25517 +Glenwood,WV,25520 +Griffithsville,WV,25521 +Hamlin,WV,25523 +Ferrellsburg,WV,25524 +Hurricane,WV,25526 +Julian,WV,25529 +Kenova,WV,25530 +Cove Gap,WV,25534 +Lavalette,WV,25535 +25536,WV,25536 +Lesage,WV,25537 +Midkiff,WV,25540 +Milton,WV,25541 +Myra,WV,25544 +Ona,WV,25545 +Palermo,WV,25546 +Pecks Mill,WV,25547 +Point Pleasant,WV,25550 +Prichard,WV,25555 +Ranger,WV,25557 +Salt Rock,WV,25559 +Scott Depot,WV,25560 +Sias,WV,25563 +Sod,WV,25564 +Morrisvale,WV,25565 +Sumerco,WV,25567 +Sweetland,WV,25568 +Wayne,WV,25570 +West Hamlin,WV,25571 +Woodville,WV,25572 +Yawkey,WV,25573 +West Logan,WV,25601 +Robinette,WV,25607 +Baisden,WV,25608 +Davin,WV,25617 +Gilbert,WV,25621 +Hampden,WV,25623 +Earling,WV,25632 +Hunt,WV,25635 +Barnabus,WV,25638 +Verner,WV,25650 +Wharncliffe,WV,25651 +Dehue,WV,25654 +Williamson,WV,25661 +Breeden,WV,25666 +Crum,WV,25669 +Myrtle,WV,25670 +Dingess,WV,25671 +Kermit,WV,25674 +Lenore,WV,25676 +Lobata,WV,25678 +Meador,WV,25682 +Thacker,WV,25694 +Wilsondale,WV,25699 +Huntington,WV,25701 +Huntington,WV,25702 +Huntington,WV,25703 +Huntington,WV,25704 +Huntington,WV,25705 +Beckley,WV,25801 +Amigo,WV,25811 +Ansted,WV,25812 +Beaver,WV,25813 +Bolt,WV,25817 +Camp Creek,WV,25820 +Cool Ridge,WV,25825 +Crab Orchard,WV,25827 +Clifftop,WV,25831 +Daniels,WV,25832 +Edmond,WV,25837 +Fairdale,WV,25839 +Cunard,WV,25840 +Flat Top,WV,25841 +Ghent,WV,25843 +Glen Daniel,WV,25844 +Glen Fork,WV,25845 +Sullivan,WV,25847 +Glen Rogers,WV,25848 +Hico,WV,25854 +Josephine,WV,25857 +Lansing,WV,25862 +Lawton,WV,25864 +Lester,WV,25865 +Lookout,WV,25868 +Maben,WV,25870 +Saulsville,WV,25876 +Mount Hope,WV,25880 +Mullens,WV,25882 +Harvey,WV,25901 +Odd,WV,25902 +Winding Gulf,WV,25908 +Ramsey,WV,25912 +Ravencliff,WV,25913 +East Gulf,WV,25915 +Scarbro,WV,25917 +Abraham,WV,25918 +Slab Fork,WV,25920 +Spanishburg,WV,25922 +Stephenson,WV,25928 +Surveyor,WV,25932 +Thurmond,WV,25936 +Victor,WV,25938 +Hinton,WV,25951 +Charmco,WV,25958 +Rainelle,WV,25962 +Elton,WV,25965 +Green Sulphur Sp,WV,25966 +Streeter,WV,25969 +Lerona,WV,25971 +Meadow Bridge,WV,25976 +Meadow Creek,WV,25977 +Nimitz,WV,25978 +Pipestem,WV,25979 +Marfrance,WV,25981 +Kessler,WV,25984 +Sandstone,WV,25985 +Spring Dale,WV,25986 +True,WV,25988 +White Oak,WV,25989 +Elm Grove,WV,26003 +Benwood,WV,26031 +Bethany,WV,26032 +Cameron,WV,26033 +Chester,WV,26034 +Colliers,WV,26035 +Dallas,WV,26036 +Follansbee,WV,26037 +Glen Dale,WV,26038 +Glen Easton,WV,26039 +Mc Mechen,WV,26040 +Moundsville,WV,26041 +New Cumberland,WV,26047 +Newell,WV,26050 +Proctor,WV,26055 +Triadelphia,WV,26059 +Valley Grove,WV,26060 +Weirton,WV,26062 +Wellsburg,WV,26070 +Parkersburg,WV,26101 +North Parkersbur,WV,26104 +Vienna,WV,26105 +Belleville,WV,26133 +Willow Island,WV,26134 +Bens Run,WV,26135 +Big Bend,WV,26136 +Nobe,WV,26137 +Brohard,WV,26138 +Creston,WV,26141 +Davisville,WV,26142 +Elizabeth,WV,26143 +Five Forks,WV,26145 +Friendly,WV,26146 +Grantsville,WV,26147 +Macfarlan,WV,26148 +Middlebourne,WV,26149 +Mineralwells,WV,26150 +Mount Zion,WV,26151 +Munday,WV,26152 +Murraysville,WV,26153 +New Martinsville,WV,26155 +Paden City,WV,26159 +Palestine,WV,26160 +Petroleum,WV,26161 +Ravenswood,WV,26164 +Reader,WV,26167 +Rockport,WV,26169 +Saint Marys,WV,26170 +Sherman,WV,26173 +Sistersville,WV,26175 +Smithville,WV,26178 +Tanner,WV,26179 +Walker,WV,26180 +New England,WV,26181 +Waverly,WV,26184 +Wick,WV,26185 +Wileyville,WV,26186 +Williamstown,WV,26187 +Tennerton,WV,26201 +Fenwick,WV,26202 +Erbacon,WV,26203 +Craigsville,WV,26205 +Cowen,WV,26206 +Gauley Mills,WV,26208 +Adrian,WV,26210 +Century,WV,26214 +Cleveland,WV,26215 +Diana,WV,26217 +Alexander,WV,26218 +Replete,WV,26222 +Helvetia,WV,26224 +Kanawha Head,WV,26228 +Pickens,WV,26230 +Rock Cave,WV,26234 +Selbyville,WV,26236 +Tallmansville,WV,26237 +Volga,WV,26238 +Elkins,WV,26241 +Belington,WV,26250 +Beverly,WV,26253 +Wymer,WV,26254 +Coalton,WV,26257 +Davis,WV,26260 +Richwood,WV,26261 +Dryfork,WV,26263 +Durbin,WV,26264 +Upperglade,WV,26266 +Ellamore,WV,26267 +Glady,WV,26268 +Hambleton,WV,26269 +Harman,WV,26270 +Hendricks,WV,26271 +Huttonsville,WV,26273 +Kerens,WV,26276 +Mabie,WV,26278 +Mill Creek,WV,26280 +Monterville,WV,26282 +Montrose,WV,26283 +Parsons,WV,26287 +Bolair,WV,26288 +Red Creek,WV,26289 +Slatyfork,WV,26291 +Thomas,WV,26292 +Valley Bend,WV,26293 +Mingo,WV,26294 +Job,WV,26296 +Boggs,WV,26299 +Nutter Fort Ston,WV,26301 +Wilbur,WV,26320 +Alum Bridge,WV,26321 +Alvy,WV,26322 +Auburn,WV,26325 +Berea,WV,26327 +Blandville,WV,26328 +Bridgeport,WV,26330 +Bristol,WV,26332 +Gem,WV,26335 +Cairo,WV,26337 +Camden,WV,26338 +Center Point,WV,26339 +Coxs Mills,WV,26342 +Crawford,WV,26343 +Highland,WV,26346 +Wendel,WV,26347 +Folsom,WV,26348 +Baldwin,WV,26351 +Grafton,WV,26354 +Greenwood,WV,26360 +Mahone,WV,26362 +Hazelgreen,WV,26367 +Horner,WV,26372 +Independence,WV,26374 +Wildcat,WV,26376 +Jacksonburg,WV,26377 +Jane Lew,WV,26378 +Lima,WV,26383 +Linn,WV,26384 +Lost Creek,WV,26385 +Lumberport,WV,26386 +Meadowbrook,WV,26404 +Kasson,WV,26405 +Mount Clare,WV,26408 +Newberne,WV,26409 +Newburg,WV,26410 +New Milton,WV,26411 +Orlando,WV,26412 +Toll Gate,WV,26415 +Broaddus,WV,26416 +Hastings,WV,26419 +Pullman,WV,26421 +Roanoke,WV,26423 +Manheim,WV,26425 +Salem,WV,26426 +Shinnston,WV,26431 +Smithfield,WV,26437 +Stouts Mills,WV,26439 +Thornton,WV,26440 +Troy,WV,26443 +Tunnelton,WV,26444 +Walkersville,WV,26447 +Wallace,WV,26448 +West Milford,WV,26451 +Weston,WV,26452 +West Union,WV,26456 +Wolf Summit,WV,26462 +Star City,WV,26505 +Albright,WV,26519 +Blacksville,WV,26521 +Bruceton Mills,WV,26525 +Core,WV,26529 +Kingwood,WV,26537 +Maidsville,WV,26541 +Cascade,WV,26542 +Pursglove,WV,26546 +Reedsville,WV,26547 +Monongah,WV,26554 +Baxter,WV,26560 +Big Run,WV,26561 +Coburn,WV,26562 +Enterprise,WV,26568 +Fairview,WV,26570 +Farmington,WV,26571 +Hundred,WV,26575 +Littleton,WV,26581 +Mannington,WV,26582 +Metz,WV,26585 +Rachel,WV,26587 +Rivesville,WV,26588 +Wadestown,WV,26589 +Wana,WV,26590 +Worthington,WV,26591 +Herold,WV,26601 +Birch River,WV,26610 +Flower,WV,26611 +Copen,WV,26615 +Dille,WV,26617 +Elmira,WV,26618 +Riffle,WV,26619 +Falls Mill,WV,26620 +Corley,WV,26621 +Clem,WV,26623 +Gassaway,WV,26624 +Glendon,WV,26626 +Heaters,WV,26627 +Tesla,WV,26629 +Napier,WV,26631 +Nicut,WV,26633 +Perkins,WV,26634 +Rosedale,WV,26636 +Shock,WV,26638 +Strange Creek,WV,26639 +Wilsie,WV,26641 +Summersville,WV,26651 +Belva,WV,26656 +Calvin,WV,26660 +Canvas,WV,26662 +Drennen,WV,26667 +Gilboa,WV,26671 +Jodie,WV,26674 +Keslers Cross La,WV,26675 +Leivasy,WV,26676 +Mount Lookout,WV,26678 +Runa,WV,26679 +Russelville,WV,26680 +Nettie,WV,26681 +Poe,WV,26683 +Pool,WV,26684 +Swiss,WV,26690 +Tioga,WV,26691 +Augusta,WV,26704 +Amboy,WV,26705 +Burlington,WV,26710 +Capon Bridge,WV,26711 +Corinth,WV,26713 +Delray,WV,26714 +Eglon,WV,26716 +Elk Garden,WV,26717 +Fort Ashby,WV,26719 +Gormania,WV,26720 +Green Spring,WV,26722 +Scherr,WV,26726 +Kirby,WV,26729 +Lahmansville,WV,26731 +Medley,WV,26734 +Mount Storm,WV,26739 +New Creek,WV,26743 +Piedmont,WV,26750 +Patterson Creek,WV,26753 +Rio,WV,26755 +Romney,WV,26757 +Shanks,WV,26761 +Springfield,WV,26763 +Hopemont,WV,26764 +Three Churches,WV,26765 +Wiley Ford,WV,26767 +Horse Shoe Run,WV,26769 +Baker,WV,26801 +Brandywine,WV,26802 +Circleville,WV,26804 +Fort Seybert,WV,26806 +Franklin,WV,26807 +High View,WV,26808 +Lost City,WV,26810 +Lost River,WV,26811 +Mathias,WV,26812 +Moyers,WV,26813 +Riverton,WV,26814 +Sugar Grove,WV,26815 +Arthur,WV,26816 +Bloomery,WV,26817 +Fisher,WV,26818 +Junction,WV,26824 +Maysville,WV,26833 +Rig,WV,26836 +Milam,WV,26838 +Old Fields,WV,26845 +Dorcas,WV,26847 +Wardensville,WV,26851 +Purgitsville,WV,26852 +Cabins,WV,26855 +Lehew,WV,26865 +Upper Tract,WV,26866 +Seneca Rocks,WV,26884 +Onego,WV,26886 +Adell,WI,53001 +Allenton,WI,53002 +Belgium,WI,53004 +Brookfield,WI,53005 +South Byron,WI,53006 +Butler,WI,53007 +Campbellsport,WI,53010 +Cascade,WI,53011 +Cedarburg,WI,53012 +Cedar Grove,WI,53013 +Chilton,WI,53014 +Cleveland,WI,53015 +Colgate,WI,53017 +Delafield,WI,53018 +Eden,WI,53019 +Elkhart Lake,WI,53020 +Waubeka,WI,53021 +Germantown,WI,53022 +Glenbeulah,WI,53023 +Grafton,WI,53024 +Hartford,WI,53027 +Hartland,WI,53029 +Horicon,WI,53032 +Hubertus,WI,53033 +Iron Ridge,WI,53035 +Ixonia,WI,53036 +Jackson,WI,53037 +Johnson Creek,WI,53038 +Juneau,WI,53039 +Kewaskum,WI,53040 +Kiel,WI,53042 +Kohler,WI,53044 +Brookfield,WI,53045 +Lannon,WI,53046 +Knowles,WI,53048 +Malone,WI,53049 +Mayville,WI,53050 +Menomonee Falls,WI,53051 +Mount Calvary,WI,53057 +Nashotah,WI,53058 +Neosho,WI,53059 +New Holstein,WI,53061 +Newton,WI,53063 +Oakfield,WI,53065 +Oconomowoc,WI,53066 +Okauchee,WI,53069 +Oostburg,WI,53070 +Pewaukee,WI,53072 +Plymouth,WI,53073 +Port Washington,WI,53074 +Random Lake,WI,53075 +Richfield,WI,53076 +Rubicon,WI,53078 +Saint Cloud,WI,53079 +Saukville,WI,53080 +Sheboygan,WI,53081 +Howards Grove,WI,53083 +Sheboygan Falls,WI,53085 +Slinger,WI,53086 +Sussex,WI,53089 +Theresa,WI,53091 +Mequon,WI,53092 +Waldo,WI,53093 +Watertown,WI,53094 +West Bend,WI,53095 +Big Bend,WI,53103 +Bristol,WI,53104 +Burlington,WI,53105 +Caledonia,WI,53108 +Cudahy,WI,53110 +Darien,WI,53114 +Delavan,WI,53115 +Dousman,WI,53118 +Eagle,WI,53119 +East Troy,WI,53120 +Elkhorn,WI,53121 +Elm Grove,WI,53122 +Fontana,WI,53125 +Franksville,WI,53126 +Genoa City,WI,53128 +Greendale,WI,53129 +Hales Corners,WI,53130 +Franklin,WI,53132 +Helenville,WI,53137 +Kansasville,WI,53139 +Kenosha,WI,53140 +Kenosha,WI,53142 +Kenosha,WI,53143 +Kenosha,WI,53144 +New Berlin,WI,53146 +Lake Geneva,WI,53147 +Mukwonago,WI,53149 +Muskego,WI,53150 +New Berlin,WI,53151 +North Prairie,WI,53153 +Oak Creek,WI,53154 +Palmyra,WI,53156 +Salem,WI,53168 +South Milwaukee,WI,53172 +Sturtevant,WI,53177 +Sullivan,WI,53178 +Trevor,WI,53179 +Twin Lakes,WI,53181 +Union Grove,WI,53182 +Wales,WI,53183 +Walworth,WI,53184 +Wind Lake,WI,53185 +Waukesha,WI,53186 +Waukesha,WI,53188 +Whitewater,WI,53190 +Williams Bay,WI,53191 +Milwaukee,WI,53202 +Milwaukee,WI,53203 +Milwaukee,WI,53204 +Milwaukee,WI,53205 +Milwaukee,WI,53206 +Bay View,WI,53207 +Milwaukee,WI,53208 +Milwaukee,WI,53209 +Milwaukee,WI,53210 +Shorewood,WI,53211 +Milwaukee,WI,53212 +Wauwatosa,WI,53213 +West Allis,WI,53214 +West Milwaukee,WI,53215 +Milwaukee,WI,53216 +Milwaukee,WI,53217 +Milwaukee,WI,53218 +Milwaukee,WI,53219 +Greenfield,WI,53220 +Milwaukee,WI,53221 +Milwaukee,WI,53222 +Milwaukee,WI,53223 +Milwaukee,WI,53224 +Milwaukee,WI,53225 +Wauwatosa,WI,53226 +Milwaukee,WI,53227 +Greenfield,WI,53228 +Milwaukee,WI,53233 +Racine,WI,53402 +Racine,WI,53403 +Racine,WI,53404 +Racine,WI,53405 +Racine,WI,53406 +Albany,WI,53502 +Arena,WI,53503 +Argyle,WI,53504 +Avalon,WI,53505 +Avoca,WI,53506 +Barneveld,WI,53507 +Belleville,WI,53508 +Belmont,WI,53510 +Shopiere,WI,53511 +Black Earth,WI,53515 +Blanchardville,WI,53516 +Blue Mounds,WI,53517 +Blue River,WI,53518 +Brodhead,WI,53520 +Brooklyn,WI,53521 +Browntown,WI,53522 +Cambridge,WI,53523 +Clinton,WI,53525 +Cobb,WI,53526 +Cottage Grove,WI,53527 +Cross Plains,WI,53528 +Dane,WI,53529 +Darlington,WI,53530 +Deerfield,WI,53531 +De Forest,WI,53532 +Dodgeville,WI,53533 +Edgerton,WI,53534 +Evansville,WI,53536 +Fort Atkinson,WI,53538 +Gratiot,WI,53541 +Highland,WI,53543 +Hollandale,WI,53544 +Janesville,WI,53545 +Janesville,WI,53546 +Jefferson,WI,53549 +Juda,WI,53550 +Lake Mills,WI,53551 +Linden,WI,53553 +Livingston,WI,53554 +Lodi,WI,53555 +Lone Rock,WI,53556 +Lowell,WI,53557 +Mc Farland,WI,53558 +Marshall,WI,53559 +Mazomanie,WI,53560 +Merrimac,WI,53561 +Middleton,WI,53562 +Milton,WI,53563 +Mineral Point,WI,53565 +Monroe,WI,53566 +Montfort,WI,53569 +Monticello,WI,53570 +Mount Horeb,WI,53572 +Muscoda,WI,53573 +New Glarus,WI,53574 +Oregon,WI,53575 +Orfordville,WI,53576 +Plain,WI,53577 +Prairie Du Sac,WI,53578 +Reeseville,WI,53579 +Rewey,WI,53580 +Gillingham,WI,53581 +Ridgeway,WI,53582 +Sauk City,WI,53583 +Sharon,WI,53585 +Shullsburg,WI,53586 +South Wayne,WI,53587 +Spring Green,WI,53588 +Stoughton,WI,53589 +Sun Prairie,WI,53590 +Verona,WI,53593 +Waterloo,WI,53594 +Waunakee,WI,53597 +Windsor,WI,53598 +Madison,WI,53703 +Madison,WI,53704 +Madison,WI,53705 +Madison,WI,53706 +Madison,WI,53711 +Fitchburg,WI,53713 +Madison,WI,53714 +Madison,WI,53715 +Monona,WI,53716 +Madison,WI,53717 +Madison,WI,53718 +Madison,WI,53719 +Bagley,WI,53801 +Benton,WI,53803 +Bloomington,WI,53804 +Boscobel,WI,53805 +Cassville,WI,53806 +Cuba City,WI,53807 +Fennimore,WI,53809 +Glen Haven,WI,53810 +Hazel Green,WI,53811 +Lancaster,WI,53813 +Mount Hope,WI,53816 +Platteville,WI,53818 +Potosi,WI,53820 +Prairie Du Chien,WI,53821 +Stitzer,WI,53825 +Wauzeka,WI,53826 +Woodman,WI,53827 +Portage,WI,53901 +Adams,WI,53910 +Arlington,WI,53911 +Baraboo,WI,53913 +Beaver Dam,WI,53916 +Brandon,WI,53919 +Briggsville,WI,53920 +Burnett,WI,53922 +Cambria,WI,53923 +Cazenovia,WI,53924 +Columbus,WI,53925 +Dalton,WI,53926 +Elroy,WI,53929 +Endeavor,WI,53930 +Fall River,WI,53932 +Fox Lake,WI,53933 +Friendship,WI,53934 +Grand Marsh,WI,53936 +Hillpoint,WI,53937 +Kingston,WI,53939 +La Valle,WI,53941 +Loganville,WI,53943 +Lyndon Station,WI,53944 +Markesan,WI,53946 +Marquette,WI,53947 +Mauston,WI,53948 +Montello,WI,53949 +New Lisbon,WI,53950 +North Freedom,WI,53951 +Oxford,WI,53952 +Pardeeville,WI,53954 +Poynette,WI,53955 +Randolph,WI,53956 +Reedsburg,WI,53959 +Rio,WI,53960 +Rock Springs,WI,53961 +Waupun,WI,53963 +Westfield,WI,53964 +Wisconsin Dells,WI,53965 +Wonewoc,WI,53968 +Deronda,WI,54001 +Baldwin,WI,54002 +Beldenville,WI,54003 +Clayton,WI,54004 +Clear Lake,WI,54005 +Cushing,WI,54006 +Deer Park,WI,54007 +Dresser,WI,54009 +Ellsworth,WI,54011 +Emerald,WI,54012 +Glenwood City,WI,54013 +Hager City,WI,54014 +Hammond,WI,54015 +Hudson,WI,54016 +New Richmond,WI,54017 +Osceola,WI,54020 +Prescott,WI,54021 +River Falls,WI,54022 +Roberts,WI,54023 +Saint Croix Fall,WI,54024 +Somerset,WI,54025 +Star Prairie,WI,54026 +Wilson,WI,54027 +Woodville,WI,54028 +Saint Joseph,WI,54082 +Abrams,WI,54101 +Amberg,WI,54102 +Armstrong Creek,WI,54103 +Athelstane,WI,54104 +Center Valley,WI,54106 +Navarino,WI,54107 +Brillion,WI,54110 +Cecil,WI,54111 +Coleman,WI,54112 +Combined Locks,WI,54113 +Beaver,WI,54114 +De Pere,WI,54115 +Dunbar,WI,54119 +Fence,WI,54120 +Florence,WI,54121 +Forest Junction,WI,54123 +Gillett,WI,54124 +Goodman,WI,54125 +Greenleaf,WI,54126 +Gresham,WI,54128 +Hilbert,WI,54129 +Kaukauna,WI,54130 +Keshena,WI,54135 +Kimberly,WI,54136 +Krakow,WI,54137 +Lakewood,WI,54138 +Stiles,WI,54139 +Little Chute,WI,54140 +Little Suamico,WI,54141 +Marinette,WI,54143 +Mountain,WI,54149 +Neopit,WI,54150 +Niagara,WI,54151 +Oconto,WI,54153 +Oconto Falls,WI,54154 +Oneida,WI,54155 +Pembine,WI,54156 +Peshtigo,WI,54157 +Porterfield,WI,54159 +Pound,WI,54161 +Pulaski,WI,54162 +Seymour,WI,54165 +Shawano,WI,54166 +Shiocton,WI,54170 +Sobieski,WI,54171 +Suring,WI,54174 +Townsend,WI,54175 +Underhill,WI,54176 +Wausaukee,WI,54177 +Wrightstown,WI,54180 +Algoma,WI,54201 +Baileys Harbor,WI,54202 +Brussels,WI,54204 +Casco,WI,54205 +Cato,WI,54206 +Denmark,WI,54208 +Egg Harbor,WI,54209 +Ellison Bay,WI,54210 +Fish Creek,WI,54212 +Forestville,WI,54213 +Francis Creek,WI,54214 +Kellnersville,WI,54215 +Kewaunee,WI,54216 +Luxemburg,WI,54217 +Manitowoc,WI,54220 +Maribel,WI,54227 +Mishicot,WI,54228 +New Franken,WI,54229 +Reedsville,WI,54230 +Saint Nazianz,WI,54232 +Sister Bay,WI,54234 +Sturgeon Bay,WI,54235 +Two Rivers,WI,54241 +Valders,WI,54245 +Washington Islan,WI,54246 +Whitelaw,WI,54247 +Allouez,WI,54301 +Green Bay,WI,54302 +Howard,WI,54303 +Ashwaubenon,WI,54304 +Green Bay,WI,54311 +Green Bay,WI,54313 +Wausau,WI,54401 +Abbotsford,WI,54405 +Amherst,WI,54406 +Amherst Junction,WI,54407 +Aniwa,WI,54408 +Antigo,WI,54409 +Arpin,WI,54410 +Hamburg,WI,54411 +Auburndale,WI,54412 +Babcock,WI,54413 +Birnamwood,WI,54414 +Bowler,WI,54416 +Bryant,WI,54418 +Chelsea,WI,54419 +Chili,WI,54420 +Colby,WI,54421 +Curtiss,WI,54422 +Custer,WI,54423 +Deerbrook,WI,54424 +Dorchester,WI,54425 +Fenwood,WI,54426 +Eland,WI,54427 +Elcho,WI,54428 +Elton,WI,54430 +Gilman,WI,54433 +Gleason,WI,54435 +Granton,WI,54436 +Greenwood,WI,54437 +Hatley,WI,54440 +Hewitt,WI,54441 +Irma,WI,54442 +Junction City,WI,54443 +Lily,WI,54445 +Loyal,WI,54446 +Lublin,WI,54447 +Marathon,WI,54448 +Marshfield,WI,54449 +Medford,WI,54451 +Merrill,WI,54452 +Milladore,WI,54454 +Mosinee,WI,54455 +Neillsville,WI,54456 +Nekoosa,WI,54457 +Ogema,WI,54459 +Owen,WI,54460 +Pearson,WI,54462 +Pelican Lake,WI,54463 +Pickerel,WI,54465 +Pittsville,WI,54466 +Plover,WI,54467 +Port Edwards,WI,54469 +Rib Lake,WI,54470 +Ringle,WI,54471 +Rosholt,WI,54473 +Rothschild,WI,54474 +Rudolph,WI,54475 +Schofield,WI,54476 +Spencer,WI,54479 +Stetsonville,WI,54480 +Stevens Point,WI,54481 +Stratford,WI,54484 +Summit Lake,WI,54485 +Tigerton,WI,54486 +Tomahawk,WI,54487 +Unity,WI,54488 +Vesper,WI,54489 +Westboro,WI,54490 +White Lake,WI,54491 +Willard,WI,54493 +Wisconsin Rapids,WI,54494 +Withee,WI,54498 +Wittenberg,WI,54499 +Monico,WI,54501 +Cavour,WI,54511 +Boulder Junction,WI,54512 +Brantwood,WI,54513 +Butternut,WI,54514 +Catawba,WI,54515 +Clam Lake,WI,54517 +Conover,WI,54519 +Crandon,WI,54520 +Eagle River,WI,54521 +Fifield,WI,54524 +Ingram,WI,54526 +Glidden,WI,54527 +Harshaw,WI,54529 +Hawkins,WI,54530 +Hazelhurst,WI,54531 +Hurley,WI,54534 +Iron Belt,WI,54536 +Kennan,WI,54537 +Lac Du Flambeau,WI,54538 +Lake Tomahawk,WI,54539 +Land O Lakes,WI,54540 +Laona,WI,54541 +Alvin,WI,54542 +Manitowish Water,WI,54545 +Mellen,WI,54546 +Mercer,WI,54547 +Minocqua,WI,54548 +Pence,WI,54550 +Park Falls,WI,54552 +Phelps,WI,54554 +Phillips,WI,54555 +Prentice,WI,54556 +Winchester,WI,54557 +Saint Germain,WI,54558 +Saxon,WI,54559 +Sayner,WI,54560 +Three Lakes,WI,54562 +Tony,WI,54563 +Tripoli,WI,54564 +Upson,WI,54565 +Wabeno,WI,54566 +Woodruff,WI,54568 +La Crosse,WI,54601 +La Crosse,WI,54603 +Alma,WI,54610 +Alma Center,WI,54611 +Arcadia,WI,54612 +Arkdale,WI,54613 +Bangor,WI,54614 +Black River Fall,WI,54615 +Blair,WI,54616 +Bloom City,WI,54617 +Cutler,WI,54618 +Cashton,WI,54619 +Chaseburg,WI,54621 +Waumandee,WI,54622 +Coon Valley,WI,54623 +Victory,WI,54624 +Dodge,WI,54625 +Eastman,WI,54626 +Ettrick,WI,54627 +Ferryville,WI,54628 +Fountain City,WI,54629 +Galesville,WI,54630 +Gays Mills,WI,54631 +Genoa,WI,54632 +Yuba,WI,54634 +Northfield,WI,54635 +Holmen,WI,54636 +Kendall,WI,54638 +West Lima,WI,54639 +Mather,WI,54641 +Melrose,WI,54642 +Mindoro,WI,54644 +Necedah,WI,54646 +Norwalk,WI,54648 +Onalaska,WI,54650 +Ontario,WI,54651 +Readstown,WI,54652 +Rockland,WI,54653 +Soldiers Grove,WI,54655 +Sparta,WI,54656 +Steuben,WI,54657 +Stoddard,WI,54658 +Taylor,WI,54659 +Wyeville,WI,54660 +Trempealeau,WI,54661 +Viola,WI,54664 +Viroqua,WI,54665 +Warrens,WI,54666 +Westby,WI,54667 +West Salem,WI,54669 +Wilton,WI,54670 +Eau Claire,WI,54701 +Eau Claire,WI,54703 +Altoona,WI,54720 +Arkansaw,WI,54721 +Augusta,WI,54722 +Bay City,WI,54723 +Bloomer,WI,54724 +Boyceville,WI,54725 +Boyd,WI,54726 +Cadott,WI,54727 +Chetek,WI,54728 +Chippewa Falls,WI,54729 +Colfax,WI,54730 +Conrath,WI,54731 +Cornell,WI,54732 +Dallas,WI,54733 +Downing,WI,54734 +Durand,WI,54736 +Eau Galle,WI,54737 +Eleva,WI,54738 +Elk Mound,WI,54739 +Elmwood,WI,54740 +Fairchild,WI,54741 +Fall Creek,WI,54742 +Hillsdale,WI,54744 +Holcombe,WI,54745 +Humbird,WI,54746 +Independence,WI,54747 +Jim Falls,WI,54748 +Knapp,WI,54749 +Maiden Rock,WI,54750 +Menomonie,WI,54751 +Merrillan,WI,54754 +Modena,WI,54755 +Nelson,WI,54756 +New Auburn,WI,54757 +Osseo,WI,54758 +Pepin,WI,54759 +Plum City,WI,54761 +Prairie Farm,WI,54762 +Ridgeland,WI,54763 +Sand Creek,WI,54765 +Sheldon,WI,54766 +Spring Valley,WI,54767 +Stanley,WI,54768 +Stockholm,WI,54769 +Strum,WI,54770 +Thorp,WI,54771 +Wheeler,WI,54772 +Whitehall,WI,54773 +Spooner,WI,54801 +Almena,WI,54805 +Moquah,WI,54806 +Balsam Lake,WI,54810 +Barron,WI,54812 +Barronett,WI,54813 +Bayfield,WI,54814 +Birchwood,WI,54817 +Bruce,WI,54819 +Brule,WI,54820 +Cable,WI,54821 +Cameron,WI,54822 +Centuria,WI,54824 +Comstock,WI,54826 +Cornucopia,WI,54827 +New Post,WI,54828 +Cumberland,WI,54829 +Dairyland,WI,54830 +Drummond,WI,54832 +Exeland,WI,54835 +Foxboro,WI,54836 +Clam Falls,WI,54837 +Gordon,WI,54838 +Grand View,WI,54839 +Evergreen,WI,54840 +North Woods Beac,WI,54843 +Herbster,WI,54844 +Hertel,WI,54845 +High Bridge,WI,54846 +Iron River,WI,54847 +Ladysmith,WI,54848 +Lake Nebagamon,WI,54849 +La Pointe,WI,54850 +Luck,WI,54853 +Maple,WI,54854 +Marengo,WI,54855 +Delta,WI,54856 +Milltown,WI,54858 +Minong,WI,54859 +Ojibwa,WI,54862 +Poplar,WI,54864 +Port Wing,WI,54865 +Radisson,WI,54867 +Canton,WI,54868 +Sarona,WI,54870 +Shell Lake,WI,54871 +Siren,WI,54872 +Barnes,WI,54873 +Wentworth,WI,54874 +Earl,WI,54875 +Stone Lake,WI,54876 +Superior,WI,54880 +Trego,WI,54888 +Turtle Lake,WI,54889 +Washburn,WI,54891 +Webster,WI,54893 +Weyerhaeuser,WI,54895 +Loretta,WI,54896 +Oshkosh,WI,54901 +Oshkosh,WI,54904 +Almond,WI,54909 +Appleton,WI,54911 +Appleton,WI,54914 +Appleton,WI,54915 +Bancroft,WI,54921 +Bear Creek,WI,54922 +Berlin,WI,54923 +Caroline,WI,54928 +Clintonville,WI,54929 +Coloma,WI,54930 +Eldorado,WI,54932 +Taycheedah,WI,54935 +North Fond Du La,WI,54937 +Fremont,WI,54940 +Green Lake,WI,54941 +Greenville,WI,54942 +Hancock,WI,54943 +Hortonville,WI,54944 +Iola,WI,54945 +King,WI,54946 +Larsen,WI,54947 +Leopolis,WI,54948 +Manawa,WI,54949 +Marion,WI,54950 +Menasha,WI,54952 +Neenah,WI,54956 +Neshkoro,WI,54960 +New London,WI,54961 +Ogdensburg,WI,54962 +Omro,WI,54963 +Pickett,WI,54964 +Pine River,WI,54965 +Plainfield,WI,54966 +Poy Sippi,WI,54967 +Princeton,WI,54968 +Redgranite,WI,54970 +Ripon,WI,54971 +Rosendale,WI,54974 +Scandinavia,WI,54977 +Tilleda,WI,54978 +Van Dyne,WI,54979 +Waupaca,WI,54981 +Wautoma,WI,54982 +Weyauwega,WI,54983 +Wild Rose,WI,54984 +Winneconne,WI,54986 +Cheyenne,WY,82001 +Cheyenne,WY,82007 +Cheyenne,WY,82009 +Albin,WY,82050 +Laramie,WY,82051 +Buford,WY,82052 +Burns,WY,82053 +Carpenter,WY,82054 +Centennial,WY,82055 +82057,WY,82057 +Garrett,WY,82058 +Jelm,WY,82063 +Laramie,WY,82070 +Mc Fadden,WY,82080 +Meriden,WY,82081 +Pine Bluffs,WY,82082 +Rock River,WY,82083 +Tie Siding,WY,82084 +Fishing Bridge,WY,82190 +Wheatland,WY,82201 +Chugwater,WY,82210 +Fort Laramie,WY,82212 +Glendo,WY,82213 +Guernsey,WY,82214 +Hartville,WY,82215 +Hawk Springs,WY,82217 +Jay Em,WY,82219 +Keeline,WY,82220 +Lagrange,WY,82221 +Lance Creek,WY,82222 +Lingle,WY,82223 +Lost Springs,WY,82224 +Lusk,WY,82225 +Shawnee,WY,82229 +Torrington,WY,82240 +Van Tassell,WY,82242 +Veteran,WY,82243 +Yoder,WY,82244 +Rawlins,WY,82301 +Jeffrey City,WY,82310 +Baggs,WY,82321 +Bairoil,WY,82322 +Dixon,WY,82323 +Encampment,WY,82325 +Hanna,WY,82327 +Medicine Bow,WY,82329 +Ryan Park,WY,82331 +Savery,WY,82332 +Sinclair,WY,82334 +Wamsutter,WY,82336 +Worland,WY,82401 +Basin,WY,82410 +Burlington,WY,82411 +Cody,WY,82414 +Deaver,WY,82421 +Greybull,WY,82426 +Hyattville,WY,82428 +Lovell,WY,82431 +Manderson,WY,82432 +Meeteetse,WY,82433 +Otto,WY,82434 +Powell,WY,82435 +Shell,WY,82441 +Ten Sleep,WY,82442 +Grass Creek,WY,82443 +Wapiti,WY,82450 +Gas Hills,WY,82501 +Arapahoe,WY,82510 +Crowheart,WY,82512 +Dubois,WY,82513 +Fort Washakie,WY,82514 +Kinnear,WY,82516 +Ethete,WY,82520 +Pavillion,WY,82523 +Casper,WY,82601 +Casper,WY,82604 +Casper,WY,82609 +Alcova,WY,82620 +Arminto,WY,82630 +Douglas,WY,82633 +Evansville,WY,82636 +Glenrock,WY,82637 +Kaycee,WY,82639 +Lysite,WY,82642 +Midwest,WY,82643 +Shoshoni,WY,82649 +Newcastle,WY,82701 +Aladdin,WY,82710 +Beulah,WY,82712 +Devils Tower,WY,82714 +Four Corners,WY,82715 +Gillette,WY,82716 +Hulett,WY,82720 +Pine Haven,WY,82721 +Osage,WY,82723 +Oshoto,WY,82724 +Recluse,WY,82725 +Rozet,WY,82727 +Sundance,WY,82729 +Upton,WY,82730 +Gillette,WY,82731 +Wright,WY,82732 +Sheridan,WY,82801 +Arvada,WY,82831 +Banner,WY,82832 +Buffalo,WY,82834 +Clearmont,WY,82835 +Dayton,WY,82836 +Parkman,WY,82838 +Acme,WY,82839 +Story,WY,82842 +Ranchester,WY,82844 +Rock Springs,WY,82901 +Bondurant,WY,82922 +Boulder,WY,82923 +Cora,WY,82925 +Evanston,WY,82930 +Fort Bridger,WY,82933 +Green River,WY,82935 +Lonetree,WY,82936 +Lyman,WY,82937 +Mc Kinnon,WY,82938 +Pinedale,WY,82941 +Colter Bay,WY,83001 +Kelly,WY,83011 +Moose,WY,83012 +Moran,WY,83013 +Wilson,WY,83014 +Kemmerer,WY,83101 +Afton,WY,83110 +Auburn,WY,83111 +Bedford,WY,83112 +Marbleton,WY,83113 +Cokeville,WY,83114 +Daniel,WY,83115 +Etna,WY,83118 +Freedom,WY,83120 +Grover,WY,83122 +La Barge,WY,83123 +Smoot,WY,83126 +Thayne,WY,83127 \ No newline at end of file diff --git a/splunk_eventgen/samples/dist.all.last b/splunk_eventgen/samples/dist.all.last new file mode 100644 index 00000000..75a994c1 --- /dev/null +++ b/splunk_eventgen/samples/dist.all.last @@ -0,0 +1,88799 @@ +smith +johnson +williams +jones +brown +davis +miller +wilson +moore +taylor +anderson +thomas +jackson +white +harris +martin +thompson +garcia +martinez +robinson +clark +rodriguez +lewis +lee +walker +hall +allen +young +hernandez +king +wright +lopez +hill +scott +green +adams +baker +gonzalez +nelson +carter +mitchell +perez +roberts +turner +phillips +campbell +parker +evans +edwards +collins +stewart +sanchez +morris +rogers +reed +cook +morgan +bell +murphy +bailey +rivera +cooper +richardson +cox +howard +ward +torres +peterson +gray +ramirez +james +watson +brooks +kelly +sanders +price +bennett +wood +barnes +ross +henderson +coleman +jenkins +perry +powell +long +patterson +hughes +flores +washington +butler +simmons +foster +gonzales +bryant +alexander +russell +griffin +diaz +hayes +myers +ford +hamilton +graham +sullivan +wallace +woods +cole +west +jordan +owens +reynolds +fisher +ellis +harrison +gibson +mcdonald +cruz +marshall +ortiz +gomez +murray +freeman +wells +webb +simpson +stevens +tucker +porter +hunter +hicks +crawford +henry +boyd +mason +morales +kennedy +warren +dixon +ramos +reyes +burns +gordon +shaw +holmes +rice +robertson +hunt +black +daniels +palmer +mills +nichols +grant +knight +ferguson +rose +stone +hawkins +dunn +perkins +hudson +spencer +gardner +stephens +payne +pierce +berry +matthews +arnold +wagner +willis +ray +watkins +olson +carroll +duncan +snyder +hart +cunningham +bradley +lane +andrews +ruiz +harper +fox +riley +armstrong +carpenter +weaver +greene +lawrence +elliott +chavez +sims +austin +peters +kelley +franklin +lawson +fields +gutierrez +ryan +schmidt +carr +vasquez +castillo +wheeler +chapman +oliver +montgomery +richards +williamson +johnston +banks +meyer +bishop +mccoy +howell +alvarez +morrison +hansen +fernandez +garza +harvey +little +burton +stanley +nguyen +george +jacobs +reid +kim +fuller +lynch +dean +gilbert +garrett +romero +welch +larson +frazier +burke +hanson +day +mendoza +moreno +bowman +medina +fowler +brewer +hoffman +carlson +silva +pearson +holland +douglas +fleming +jensen +vargas +byrd +davidson +hopkins +may +terry +herrera +wade +soto +walters +curtis +neal +caldwell +lowe +jennings +barnett +graves +jimenez +horton +shelton +barrett +obrien +castro +sutton +gregory +mckinney +lucas +miles +craig +rodriquez +chambers +holt +lambert +fletcher +watts +bates +hale +rhodes +pena +beck +newman +haynes +mcdaniel +mendez +bush +vaughn +parks +dawson +santiago +norris +hardy +love +steele +curry +powers +schultz +barker +guzman +page +munoz +ball +keller +chandler +weber +leonard +walsh +lyons +ramsey +wolfe +schneider +mullins +benson +sharp +bowen +daniel +barber +cummings +hines +baldwin +griffith +valdez +hubbard +salazar +reeves +warner +stevenson +burgess +santos +tate +cross +garner +mann +mack +moss +thornton +dennis +mcgee +farmer +delgado +aguilar +vega +glover +manning +cohen +harmon +rodgers +robbins +newton +todd +blair +higgins +ingram +reese +cannon +strickland +townsend +potter +goodwin +walton +rowe +hampton +ortega +patton +swanson +joseph +francis +goodman +maldonado +yates +becker +erickson +hodges +rios +conner +adkins +webster +norman +malone +hammond +flowers +cobb +moody +quinn +blake +maxwell +pope +floyd +osborne +paul +mccarthy +guerrero +lindsey +estrada +sandoval +gibbs +tyler +gross +fitzgerald +stokes +doyle +sherman +saunders +wise +colon +gill +alvarado +greer +padilla +simon +waters +nunez +ballard +schwartz +mcbride +houston +christensen +klein +pratt +briggs +parsons +mclaughlin +zimmerman +french +buchanan +moran +copeland +roy +pittman +brady +mccormick +holloway +brock +poole +frank +logan +owen +bass +marsh +drake +wong +jefferson +park +morton +abbott +sparks +patrick +norton +huff +clayton +massey +lloyd +figueroa +carson +bowers +roberson +barton +tran +lamb +harrington +casey +boone +cortez +clarke +mathis +singleton +wilkins +cain +bryan +underwood +hogan +mckenzie +collier +luna +phelps +mcguire +allison +bridges +wilkerson +nash +summers +atkins +wilcox +pitts +conley +marquez +burnett +richard +cochran +chase +davenport +hood +gates +clay +ayala +sawyer +roman +vazquez +dickerson +hodge +acosta +flynn +espinoza +nicholson +monroe +wolf +morrow +kirk +randall +anthony +whitaker +oconnor +skinner +ware +molina +kirby +huffman +bradford +charles +gilmore +dominguez +oneal +bruce +lang +combs +kramer +heath +hancock +gallagher +gaines +shaffer +short +wiggins +mathews +mcclain +fischer +wall +small +melton +hensley +bond +dyer +cameron +grimes +contreras +christian +wyatt +baxter +snow +mosley +shepherd +larsen +hoover +beasley +glenn +petersen +whitehead +meyers +keith +garrison +vincent +shields +horn +savage +olsen +schroeder +hartman +woodard +mueller +kemp +deleon +booth +patel +calhoun +wiley +eaton +cline +navarro +harrell +lester +humphrey +parrish +duran +hutchinson +hess +dorsey +bullock +robles +beard +dalton +avila +vance +rich +blackwell +york +johns +blankenship +trevino +salinas +campos +pruitt +moses +callahan +golden +montoya +hardin +guerra +mcdowell +carey +stafford +gallegos +henson +wilkinson +booker +merritt +miranda +atkinson +orr +decker +hobbs +preston +tanner +knox +pacheco +stephenson +glass +rojas +serrano +marks +hickman +english +sweeney +strong +prince +mcclure +conway +walter +roth +maynard +farrell +lowery +hurst +nixon +weiss +trujillo +ellison +sloan +juarez +winters +mclean +randolph +leon +boyer +villarreal +mccall +gentry +carrillo +kent +ayers +lara +shannon +sexton +pace +hull +leblanc +browning +velasquez +leach +chang +house +sellers +herring +noble +foley +bartlett +mercado +landry +durham +walls +barr +mckee +bauer +rivers +everett +bradshaw +pugh +velez +rush +estes +dodson +morse +sheppard +weeks +camacho +bean +barron +livingston +middleton +spears +branch +blevins +chen +kerr +mcconnell +hatfield +harding +ashley +solis +herman +frost +giles +blackburn +william +pennington +woodward +finley +mcintosh +koch +best +solomon +mccullough +dudley +nolan +blanchard +rivas +brennan +mejia +kane +benton +joyce +buckley +haley +valentine +maddox +russo +mcknight +buck +moon +mcmillan +crosby +berg +dotson +mays +roach +church +chan +richmond +meadows +faulkner +oneill +knapp +kline +barry +ochoa +jacobson +gay +avery +hendricks +horne +shepard +hebert +cherry +cardenas +mcintyre +whitney +waller +holman +donaldson +cantu +terrell +morin +gillespie +fuentes +tillman +sanford +bentley +peck +key +salas +rollins +gamble +dickson +battle +santana +cabrera +cervantes +howe +hinton +hurley +spence +zamora +yang +mcneil +suarez +case +petty +gould +mcfarland +sampson +carver +bray +rosario +macdonald +stout +hester +melendez +dillon +farley +hopper +galloway +potts +bernard +joyner +stein +aguirre +osborn +mercer +bender +franco +rowland +sykes +benjamin +travis +pickett +crane +sears +mayo +dunlap +hayden +wilder +mckay +coffey +mccarty +ewing +cooley +vaughan +bonner +cotton +holder +stark +ferrell +cantrell +fulton +lynn +lott +calderon +rosa +pollard +hooper +burch +mullen +fry +riddle +levy +david +duke +odonnell +guy +michael +britt +frederick +daugherty +berger +dillard +alston +jarvis +frye +riggs +chaney +odom +duffy +fitzpatrick +valenzuela +merrill +mayer +alford +mcpherson +acevedo +donovan +barrera +albert +cote +reilly +compton +raymond +mooney +mcgowan +craft +cleveland +clemons +wynn +nielsen +baird +stanton +snider +rosales +bright +witt +stuart +hays +holden +rutledge +kinney +clements +castaneda +slater +hahn +emerson +conrad +burks +delaney +pate +lancaster +sweet +justice +tyson +sharpe +whitfield +talley +macias +irwin +burris +ratliff +mccray +madden +kaufman +beach +goff +cash +bolton +mcfadden +levine +good +byers +kirkland +kidd +workman +carney +dale +mcleod +holcomb +england +finch +head +burt +hendrix +sosa +haney +franks +sargent +nieves +downs +rasmussen +bird +hewitt +lindsay +le +foreman +valencia +oneil +delacruz +vinson +dejesus +hyde +forbes +gilliam +guthrie +wooten +huber +barlow +boyle +mcmahon +buckner +rocha +puckett +langley +knowles +cooke +velazquez +whitley +noel +vang +shea +rouse +hartley +mayfield +elder +rankin +hanna +cowan +lucero +arroyo +slaughter +haas +oconnell +minor +kendrick +shirley +kendall +boucher +archer +boggs +odell +dougherty +andersen +newell +crowe +wang +friedman +bland +swain +holley +felix +pearce +childs +yarbrough +galvan +proctor +meeks +lozano +mora +rangel +bacon +villanueva +schaefer +rosado +helms +boyce +goss +stinson +smart +lake +ibarra +hutchins +covington +reyna +gregg +werner +crowley +hatcher +mackey +bunch +womack +polk +jamison +dodd +childress +childers +camp +villa +dye +springer +mahoney +dailey +belcher +lockhart +griggs +costa +connor +brandt +winter +walden +moser +tracy +tatum +mccann +akers +lutz +pryor +law +orozco +mcallister +lugo +davies +shoemaker +madison +rutherford +newsome +magee +chamberlain +blanton +simms +godfrey +flanagan +crum +cordova +escobar +downing +sinclair +donahue +krueger +mcginnis +gore +farris +webber +corbett +andrade +starr +lyon +yoder +hastings +mcgrath +spivey +krause +harden +crabtree +kirkpatrick +hollis +brandon +arrington +ervin +clifton +ritter +mcghee +bolden +maloney +gagnon +dunbar +ponce +pike +mayes +heard +beatty +mobley +kimball +butts +montes +herbert +grady +eldridge +braun +hamm +gibbons +seymour +moyer +manley +herron +plummer +elmore +cramer +gary +rucker +hilton +blue +pierson +fontenot +field +rubio +grace +goldstein +elkins +wills +novak +john +hickey +worley +gorman +katz +dickinson +broussard +fritz +woodruff +crow +christopher +britton +forrest +nance +lehman +bingham +zuniga +whaley +shafer +coffman +steward +delarosa +nix +neely +numbers +mata +manuel +davila +mccabe +kessler +emery +bowling +hinkle +welsh +pagan +goldberg +goins +crouch +cuevas +quinones +mcdermott +hendrickson +samuels +denton +bergeron +lam +ivey +locke +haines +thurman +snell +hoskins +byrne +milton +winston +arthur +arias +stanford +roe +corbin +beltran +chappell +hurt +downey +dooley +tuttle +couch +payton +mcelroy +crockett +groves +clement +leslie +cartwright +dickey +mcgill +dubois +muniz +erwin +self +tolbert +dempsey +cisneros +sewell +latham +garland +vigil +tapia +sterling +rainey +norwood +lacy +stroud +meade +amos +tipton +lord +kuhn +hilliard +bonilla +teague +courtney +gunn +ho +greenwood +correa +reece +weston +poe +trent +pineda +phipps +frey +kaiser +ames +paige +gunter +schmitt +milligan +espinosa +carlton +bowden +vickers +lowry +pritchard +costello +piper +mcclellan +lovell +drew +sheehan +quick +hatch +dobson +singh +jeffries +hollingsworth +sorensen +meza +fink +donnelly +burrell +bruno +tomlinson +colbert +billings +ritchie +helton +sutherland +peoples +mcqueen +gaston +thomason +mckinley +givens +crocker +vogel +robison +dunham +coker +swartz +keys +lilly +ladner +hannah +willard +richter +hargrove +edmonds +brantley +albright +murdock +boswell +muller +quintero +padgett +kenney +daly +connolly +pierre +inman +quintana +lund +barnard +villegas +simons +land +huggins +tidwell +sanderson +bullard +mcclendon +duarte +draper +meredith +marrero +dwyer +abrams +stover +goode +fraser +crews +bernal +smiley +godwin +fish +conklin +mcneal +baca +esparza +crowder +bower +nicholas +chung +brewster +mcneill +dick +rodrigues +leal +coates +raines +mccain +mccord +miner +holbrook +swift +dukes +carlisle +aldridge +ackerman +starks +ricks +holliday +ferris +hairston +sheffield +lange +fountain +marino +doss +betts +kaplan +carmichael +bloom +ruffin +penn +kern +bowles +sizemore +larkin +dupree +jewell +silver +seals +metcalf +hutchison +henley +farr +castle +mccauley +hankins +gustafson +deal +curran +ash +waddell +ramey +cates +pollock +major +irvin +cummins +messer +heller +dewitt +lin +funk +cornett +palacios +galindo +cano +hathaway +singer +pham +enriquez +aaron +salgado +pelletier +painter +wiseman +blount +hand +feliciano +temple +houser +doherty +mead +mcgraw +toney +swan +melvin +capps +blanco +blackmon +wesley +thomson +mcmanus +fair +burkett +post +gleason +rudolph +ott +dickens +cormier +voss +rushing +rosenberg +hurd +dumas +benitez +arellano +story +marin +caudill +bragg +jaramillo +huerta +gipson +colvin +biggs +vela +platt +cassidy +tompkins +mccollum +kay +gabriel +dolan +daley +crump +street +sneed +kilgore +grove +grimm +davison +brunson +prater +marcum +devine +kyle +dodge +stratton +rosas +choi +tripp +ledbetter +lay +hightower +haywood +feldman +epps +yeager +posey +sylvester +scruggs +cope +stubbs +richey +overton +trotter +sprague +cordero +butcher +burger +stiles +burgos +woodson +horner +bassett +purcell +haskins +gee +akins +abraham +hoyt +ziegler +spaulding +hadley +grubbs +sumner +murillo +zavala +shook +lockwood +jarrett +driscoll +dahl +thorpe +sheridan +redmond +putnam +mcwilliams +mcrae +cornell +felton +romano +joiner +sadler +hedrick +hager +hagen +fitch +coulter +thacker +mansfield +langston +guidry +ferreira +corley +conn +rossi +lackey +cody +baez +saenz +mcnamara +darnell +michel +mcmullen +mckenna +mcdonough +link +engel +browne +roper +peacock +eubanks +drummond +stringer +pritchett +parham +mims +landers +ham +grayson +stacy +schafer +egan +timmons +ohara +keen +hamlin +finn +cortes +mcnair +louis +clifford +nadeau +moseley +michaud +rosen +oakes +kurtz +jeffers +calloway +beal +bautista +winn +suggs +stern +stapleton +lyles +laird +montano +diamond +dawkins +roland +hagan +goldman +bryson +barajas +lovett +segura +metz +lockett +langford +hinson +eastman +rock +hooks +woody +smallwood +shapiro +crowell +whalen +triplett +hooker +chatman +aldrich +cahill +youngblood +ybarra +stallings +sheets +samuel +reeder +person +pack +lacey +connelly +bateman +abernathy +winkler +wilkes +masters +hackett +granger +gillis +schmitz +sapp +napier +souza +lanier +gomes +weir +otero +ledford +burroughs +babcock +ventura +siegel +dugan +clinton +christie +bledsoe +atwood +wray +varner +spangler +otto +anaya +staley +kraft +fournier +eddy +belanger +wolff +thorne +bynum +burnette +boykin +swenson +purvis +pina +khan +duvall +darby +xiong +kauffman +ali +yu +healy +engle +corona +benoit +valle +steiner +spicer +shaver +randle +lundy +dow +chin +calvert +staton +neff +kearney +darden +oakley +medeiros +mccracken +crenshaw +block +beaver +perdue +dill +whittaker +tobin +cornelius +washburn +hogue +goodrich +easley +bravo +dennison +vera +shipley +kerns +jorgensen +crain +abel +villalobos +maurer +longoria +keene +coon +sierra +witherspoon +staples +pettit +kincaid +eason +madrid +echols +lusk +wu +stahl +currie +thayer +shultz +sherwood +mcnally +seay +north +maher +kenny +hope +gagne +barrow +nava +myles +moreland +honeycutt +hearn +diggs +caron +whitten +westbrook +stovall +ragland +queen +munson +meier +looney +kimble +jolly +hobson +london +goddard +culver +burr +presley +negron +connell +tovar +marcus +huddleston +hammer +ashby +salter +root +pendleton +oleary +nickerson +myrick +judd +jacobsen +elliot +bain +adair +starnes +sheldon +matos +light +busby +herndon +hanley +bellamy +jack +doty +bartley +yazzie +rowell +parson +gifford +cullen +christiansen +benavides +barnhart +talbot +mock +crandall +connors +bonds +whitt +gage +bergman +arredondo +addison +marion +lujan +dowdy +jernigan +huynh +bouchard +dutton +rhoades +ouellette +kiser +rubin +herrington +hare +denny +blackman +babb +allred +rudd +paulson +ogden +koenig +jacob +irving +geiger +begay +parra +champion +lassiter +hawk +esposito +cho +waldron +vernon +ransom +prather +keenan +jean +grover +chacon +vick +sands +roark +parr +mayberry +greenberg +coley +bruner +whitman +skaggs +shipman +means +leary +hutton +romo +medrano +ladd +kruse +friend +darling +askew +valentin +schulz +alfaro +tabor +mohr +gallo +bermudez +pereira +isaac +bliss +reaves +flint +comer +boston +woodall +naquin +guevara +earl +delong +carrier +pickens +brand +tilley +schaffer +read +lim +knutson +fenton +doran +chu +vogt +vann +prescott +mclain +landis +corcoran +ambrose +zapata +hyatt +hemphill +faulk +call +dove +boudreaux +aragon +whitlock +trejo +tackett +shearer +saldana +hanks +gold +driver +mckinnon +koehler +champagne +bourgeois +pool +keyes +goodson +foote +early +lunsford +goldsmith +flood +winslow +sams +reagan +mccloud +hough +esquivel +naylor +loomis +coronado +ludwig +braswell +bearden +sherrill +huang +fagan +ezell +edmondson +cyr +cronin +nunn +lemon +guillory +grier +dubose +traylor +ryder +dobbins +coyle +aponte +whitmore +smalls +rowan +malloy +cardona +braxton +borden +humphries +carrasco +ruff +metzger +huntley +hinojosa +finney +madsen +hong +hills +ernst +dozier +burkhart +bowser +peralta +daigle +whittington +sorenson +saucedo +roche +redding +loyd +fugate +avalos +waite +lind +huston +hay +benedict +hawthorne +hamby +boyles +boles +regan +faust +crook +beam +barger +hinds +gallardo +elias +willoughby +willingham +wilburn +eckert +busch +zepeda +worthington +tinsley +russ +li +hoff +hawley +carmona +varela +rector +newcomb +mallory +kinsey +dube +whatley +strange +ragsdale +ivy +bernstein +becerra +yost +mattson +ly +felder +cheek +luke +handy +grossman +gauthier +escobedo +braden +beckman +mott +hillman +gil +flaherty +dykes +doe +stockton +stearns +lofton +kitchen +coats +cavazos +beavers +barrios +tang +parish +mosher +lincoln +cardwell +coles +burnham +weller +lemons +beebe +aguilera +ring +parnell +harman +couture +alley +schumacher +redd +dobbs +blum +blalock +merchant +ennis +denson +cottrell +chester +brannon +bagley +aviles +watt +sousa +rosenthal +rooney +dietz +blank +paquette +mcclelland +duff +velasco +lentz +grubb +burrows +barbour +ulrich +shockley +rader +german +beyer +mixon +layton +altman +alonzo +weathers +titus +stoner +squires +shipp +priest +lipscomb +cutler +caballero +zimmer +willett +thurston +storey +medley +lyle +epperson +shah +mcmillian +baggett +torrez +laws +hirsch +dent +corey +poirier +peachey +jacques +farrar +creech +barth +trimble +france +dupre +albrecht +sample +lawler +crisp +conroy +chadwick +wetzel +nesbitt +murry +jameson +wilhelm +patten +minton +matson +kimbrough +iverson +guinn +gale +fortune +croft +toth +pulliam +nugent +newby +littlejohn +dias +canales +bernier +baron +barney +singletary +renteria +pruett +mchugh +mabry +landrum +brower +weldon +stoddard +ruth +cagle +stjohn +scales +kohler +kellogg +hopson +gant +tharp +gann +zeigler +pringle +hammons +fairchild +deaton +chavis +carnes +rowley +matlock +libby +kearns +irizarry +carrington +starkey +pepper +lopes +jarrell +fay +craven +beverly +baum +spain +littlefield +linn +humphreys +hook +high +etheridge +cuellar +chastain +chance +bundy +speer +skelton +quiroz +pyle +portillo +ponder +moulton +machado +liu +killian +hutson +hitchcock +ellsworth +dowling +cloud +burdick +spann +pedersen +levin +leggett +hayward +hacker +dietrich +beaulieu +barksdale +wakefield +snowden +paris +briscoe +bowie +berman +ogle +mcgregor +laughlin +helm +burden +wheatley +schreiber +pressley +parris +ng +alaniz +agee +urban +swann +snodgrass +schuster +radford +monk +mattingly +main +lamar +harp +girard +cheney +yancey +wagoner +ridley +lombardo +lau +hudgins +gaskins +duckworth +coe +coburn +willey +prado +newberry +magana +hammonds +elam +whipple +slade +serna +ojeda +liles +dorman +diehl +angel +upton +reardon +michaels +kelsey +goetz +eller +bauman +baer +augustine +layne +hummel +brenner +amaya +adamson +ornelas +dowell +cloutier +christy +castellanos +wing +wellman +saylor +orourke +moya +montalvo +kilpatrick +harley +durbin +shell +oldham +kang +garvin +foss +branham +bartholomew +templeton +maguire +holton +alonso +rider +monahan +mccormack +beaty +anders +streeter +nieto +nielson +moffett +lankford +keating +heck +gatlin +delatorre +callaway +adcock +worrell +unger +robinette +nowak +jeter +brunner +ashton +steen +parrott +overstreet +nobles +montanez +luther +clevenger +brinkley +trahan +quarles +pickering +pederson +jansen +grantham +gilchrist +crespo +aiken +schell +schaeffer +lorenz +leyva +harms +dyson +wallis +pease +leavitt +hyman +cheng +cavanaugh +batts +warden +seaman +rockwell +quezada +paxton +linder +houck +fontaine +durant +caruso +adler +pimentel +mize +lytle +donald +cleary +cason +acker +switzer +salmon +isaacs +higginbotham +han +waterman +vandyke +stamper +sisk +shuler +riddick +redman +mcmahan +levesque +hatton +bronson +bollinger +arnett +okeefe +gerber +gannon +farnsworth +baughman +silverman +satterfield +royal +mccrary +kowalski +joy +grigsby +greco +cabral +trout +rinehart +mahon +linton +gooden +curley +baugh +wyman +weiner +schwab +schuler +morrissey +mahan +coy +bunn +andrew +thrasher +spear +waggoner +shelley +robert +qualls +purdy +mcwhorter +mauldin +mark +jordon +gilman +perryman +newsom +menard +martino +graf +billingsley +artis +simpkins +salisbury +quintanilla +gilliland +fraley +foust +crouse +scarborough +ngo +grissom +fultz +rico +marlow +markham +madrigal +lawton +barfield +whiting +varney +schwarz +huey +gooch +arce +wheat +truong +poulin +mackenzie +leone +hurtado +selby +gaither +fortner +culpepper +coughlin +brinson +boudreau +barkley +bales +stepp +holm +tan +schilling +morrell +kahn +heaton +gamez +douglass +causey +brothers +turpin +shanks +schrader +meek +isom +hardison +carranza +yanez +way +scroggins +schofield +runyon +ratcliff +murrell +moeller +irby +currier +butterfield +yee +ralston +pullen +pinson +estep +east +carbone +lance +hawks +ellington +casillas +spurlock +sikes +motley +mccartney +kruger +isbell +houle +francisco +burk +bone +tomlin +shelby +quigley +neumann +lovelace +fennell +colby +cheatham +bustamante +skidmore +hidalgo +forman +culp +bowens +betancourt +aquino +robb +rea +milner +martel +gresham +wiles +ricketts +gavin +dowd +collazo +bostic +blakely +sherrod +power +kenyon +gandy +ebert +deloach +cary +bull +allard +sauer +robins +olivares +gillette +chestnut +bourque +paine +lyman +hite +hauser +devore +crawley +chapa +vu +tobias +talbert +poindexter +millard +meador +mcduffie +mattox +kraus +harkins +choate +bess +wren +sledge +sanborn +outlaw +kinder +geary +cornwell +barclay +adam +abney +seward +rhoads +howland +fortier +easter +benner +vines +tubbs +troutman +rapp +noe +mccurdy +harder +deluca +westmoreland +south +havens +guajardo +ely +clary +seal +meehan +herzog +guillen +ashcraft +waugh +renner +milam +jung +elrod +churchill +buford +breaux +bolin +asher +windham +tirado +pemberton +nolen +noland +knott +emmons +cornish +christenson +brownlee +barbee +waldrop +pitt +olvera +lombardi +gruber +gaffney +eggleston +banda +archuleta +still +slone +prewitt +pfeiffer +nettles +mena +mcadams +henning +gardiner +cromwell +chisholm +burleson +box +vest +oglesby +mccarter +malcolm +lumpkin +larue +grey +wofford +vanhorn +thorn +teel +swafford +stclair +stanfield +ocampo +herrmann +hannon +arsenault +roush +mcalister +hiatt +gunderson +forsythe +duggan +delvalle +cintron +wilks +weinstein +uribe +rizzo +noyes +mclendon +gurley +bethea +winstead +maples +harry +guyton +giordano +alderman +valdes +polanco +pappas +lively +grogan +griffiths +bobo +arevalo +whitson +sowell +rendon +matthew +julian +fernandes +farrow +edmond +benavidez +ayres +alicea +stump +smalley +seitz +schulte +gilley +gallant +dewey +casper +canfield +wolford +omalley +mcnutt +mcnulty +mcgovern +hardman +harbin +cowart +chavarria +brink +beckett +bagwell +armstead +anglin +abreu +reynoso +krebs +jett +hoffmann +greenfield +forte +burney +broome +sisson +parent +jude +younger +trammell +partridge +marvin +mace +lomax +lemieux +gossett +frantz +fogle +cooney +broughton +pence +paulsen +neil +muncy +mcarthur +hollins +edward +beauchamp +withers +osorio +mulligan +hoyle +foy +dockery +cockrell +begley +amador +roby +rains +lindquist +gentile +everhart +bohannon +wylie +thao +sommers +purnell +palma +fortin +dunning +breeden +vail +phelan +phan +marx +cosby +colburn +chong +boling +biddle +ledesma +gaddis +denney +chow +bueno +berrios +wicker +tolliver +thibodeaux +nagle +lavoie +fisk +do +crist +barbosa +reedy +march +locklear +kolb +himes +behrens +beckwith +beckham +weems +wahl +shorter +shackelford +rees +muse +free +cerda +valadez +thibodeau +saavedra +ridgeway +reiter +mchenry +majors +lachance +keaton +israel +ferrara +falcon +clemens +blocker +applegate +paz +needham +mojica +kuykendall +hamel +escamilla +doughty +burchett +ainsworth +wilbur +vidal +upchurch +thigpen +strauss +spruill +sowers +riggins +ricker +mccombs +harlow +garnett +buffington +yi +sotelo +olivas +negrete +morey +macon +logsdon +lapointe +florence +cathey +bigelow +bello +westfall +stubblefield +peak +lindley +jeffrey +hein +hawes +farrington +edge +breen +birch +wilde +steed +sepulveda +reinhardt +proffitt +minter +messina +mcnabb +maier +keeler +gamboa +donohue +dexter +basham +shinn +orlando +crooks +cota +borders +bills +bachman +tisdale +tavares +schmid +pickard +jasper +gulley +fonseca +delossantos +condon +clancy +batista +wicks +wadsworth +new +martell +lo +littleton +ison +haag +folsom +brumfield +broyles +brito +mireles +mcdonnell +leclair +hamblin +gough +fanning +binder +winfield +whitworth +soriano +palumbo +newkirk +mangum +hutcherson +comstock +cecil +carlin +beall +bair +wendt +watters +walling +putman +otoole +oliva +morley +mares +lemus +keener +jeffery +hundley +dial +damico +billups +strother +mcfarlane +lamm +eaves +crutcher +caraballo +canty +atwell +taft +siler +rust +rawls +rawlings +prieto +niles +mcneely +mcafee +hulsey +harlan +hackney +galvez +escalante +delagarza +crider +charlton +bandy +wilbanks +stowe +steinberg +samson +renfro +masterson +massie +lanham +haskell +hamrick +fort +dehart +card +burdette +branson +bourne +babin +aleman +worthy +tibbs +sweat +smoot +slack +paradis +packard +mull +luce +houghton +gantt +furman +danner +christianson +burge +broderick +ashford +arndt +almeida +stallworth +shade +searcy +sager +noonan +mclemore +mcintire +maxey +lavigne +jobe +ireland +ferrer +falk +edgar +coffin +byrnes +aranda +apodaca +stamps +rounds +peek +olmstead +lewandowski +kaminski +her +dunaway +bruns +brackett +amato +reich +mcclung +lacroix +koontz +herrick +hardesty +flanders +cousins +close +cato +cade +vickery +shank +nagel +dupuis +croteau +cotter +cable +stuckey +stine +porterfield +pauley +nye +moffitt +lu +knudsen +hardwick +goforth +dupont +blunt +barrows +barnhill +shull +rash +ralph +penny +lorenzo +loftis +lemay +kitchens +horvath +grenier +fuchs +fairbanks +culbertson +calkins +burnside +beattie +ashworth +albertson +wertz +vo +vaught +vallejo +tyree +turk +tuck +tijerina +sage +picard +peterman +otis +marroquin +marr +lantz +hoang +demarco +daily +cone +berube +barnette +wharton +stinnett +slocum +scanlon +sander +pinto +mancuso +lima +judge +headley +epstein +counts +clarkson +carnahan +brice +boren +arteaga +adame +zook +whittle +whitehurst +wenzel +saxton +rhea +reddick +puente +hazel +handley +haggerty +earley +devlin +dallas +chaffin +cady +ahmed +acuna +solano +sigler +pollack +pendergrass +ostrander +janes +francois +fine +crutchfield +cordell +chamberlin +brubaker +baptiste +willson +reis +neeley +mullin +mercier +lira +layman +keeling +higdon +guest +forrester +espinal +dion +chapin +carl +warfield +toledo +pulido +peebles +nagy +montague +mello +lear +jaeger +hogg +graff +furr +derrick +cave +canada +soliz +poore +mendenhall +mclaurin +maestas +low +gable +belt +barraza +tillery +snead +pond +neill +mcculloch +mccorkle +lightfoot +hutchings +holloman +harness +dorn +council +bock +zielinski +turley +treadwell +stpierre +starling +somers +oswald +merrick +marquis +ivory +easterling +bivens +truitt +poston +parry +ontiveros +olivarez +neville +moreau +medlin +ma +lenz +knowlton +fairley +cobbs +chisolm +bannister +woodworth +toler +ocasio +noriega +neuman +moye +milburn +mcclanahan +lilley +hanes +flannery +dellinger +danielson +conti +blodgett +beers +weatherford +strain +karr +hitt +denham +custer +coble +clough +casteel +bolduc +batchelor +ammons +whitlow +tierney +staten +sibley +seifert +schubert +salcedo +mattison +laney +haggard +grooms +dix +dees +cromer +cooks +colson +caswell +zarate +swisher +stacey +shin +ragan +pridgen +mcvey +matheny +leigh +lafleur +franz +ferraro +dugger +whiteside +rigsby +mcmurray +lehmann +large +jacoby +hildebrand +hendrick +headrick +goad +fincher +drury +borges +archibald +albers +woodcock +trapp +soares +seaton +richie +monson +luckett +lindberg +kopp +keeton +hsu +healey +garvey +gaddy +fain +burchfield +badger +wentworth +strand +stack +spooner +saucier +sales +ruby +ricci +plunkett +pannell +ness +leger +hoy +freitas +fong +elizondo +duval +chun +calvin +beaudoin +urbina +stock +rickard +partin +moe +mcgrew +mcclintock +ledoux +forsyth +faison +devries +bertrand +wasson +tilton +scarbrough +pride +oh +leung +larry +irvine +garber +denning +corral +colley +castleberry +bowlin +bogan +beale +baines +true +trice +rayburn +parkinson +pak +nunes +mcmillen +leahy +lea +kimmel +higgs +fulmer +carden +bedford +taggart +spearman +register +prichard +morrill +koonce +heinz +hedges +guenther +grice +findley +earle +dover +creighton +boothe +bayer +arreola +vitale +valles +see +raney +peter +osgood +lowell +hanlon +burley +bounds +worden +weatherly +vetter +tanaka +stiltner +sell +nevarez +mosby +montero +melancon +harter +hamer +goble +gladden +gist +ginn +akin +zaragoza +towns +tarver +sammons +royster +oreilly +muir +morehead +luster +kingsley +kelso +grisham +glynn +baumann +alves +yount +tamayo +tam +paterson +oates +menendez +longo +hargis +greenlee +gillen +desantis +conover +breedlove +wayne +sumpter +scherer +rupp +reichert +heredia +fallon +creel +cohn +clemmons +casas +bickford +belton +bach +williford +whitcomb +tennant +sutter +stull +sessions +mccallum +manson +langlois +keel +keegan +emanuel +dangelo +dancy +damron +clapp +clanton +bankston +trinidad +oliveira +mintz +mcinnis +martens +mabe +laster +jolley +irish +hildreth +hefner +glaser +duckett +demers +brockman +blais +back +alcorn +agnew +toliver +tice +song +seeley +najera +musser +mcfall +laplante +galvin +fajardo +doan +coyne +copley +clawson +cheung +barone +wynne +woodley +tremblay +stoll +sparrow +sparkman +schweitzer +sasser +samples +roney +ramon +legg +lai +joe +heim +farias +concepcion +colwell +christman +bratcher +alba +winchester +upshaw +southerland +sorrell +shay +sells +mount +mccloskey +martindale +luttrell +loveless +lovejoy +linares +latimer +holly +embry +coombs +bratton +bostick +boss +venable +tuggle +toro +staggs +sandlin +jefferies +heckman +griffis +crayton +clem +button +browder +allan +thorton +sturgill +sprouse +royer +rousseau +ridenour +pogue +perales +peeples +metzler +mesa +mccutcheon +mcbee +jay +hornsby +heffner +corrigan +armijo +vue +romeo +plante +peyton +paredes +macklin +hussey +hodgson +granados +frias +carman +brent +becnel +batten +almanza +turney +teal +sturgeon +meeker +mcdaniels +limon +keeney +kee +hutto +holguin +gorham +fishman +fierro +blanchette +rodrigue +reddy +osburn +oden +lerma +kirkwood +keefer +haugen +hammett +chalmers +carlos +brinkman +baumgartner +zhang +valerio +tellez +steffen +shumate +sauls +ripley +kemper +jacks +guffey +evers +craddock +carvalho +blaylock +banuelos +balderas +wooden +wheaton +turnbull +shuman +pointer +mosier +mccue +ligon +kozlowski +johansen +ingle +herr +briones +southern +snipes +rickman +pipkin +peace +pantoja +orosco +moniz +lawless +kunkel +hibbard +galarza +enos +bussey +settle +schott +salcido +perreault +mcdougal +mccool +haight +garris +ferry +easton +conyers +atherton +wimberly +utley +stephen +spellman +smithson +slagle +skipper +ritchey +rand +petit +osullivan +oaks +nutt +mcvay +mccreary +mayhew +knoll +jewett +harwood +hailey +cardoza +ashe +arriaga +andres +zeller +wirth +whitmire +stauffer +spring +rountree +redden +mccaffrey +martz +loving +larose +langdon +humes +gaskin +faber +doll +devito +cass +almond +wingfield +wingate +villareal +tyner +smothers +severson +reno +pennell +maupin +leighton +janssen +hassell +hallman +halcomb +folse +fitzsimmons +fahey +cranford +bolen +battles +battaglia +wooldridge +weed +trask +rosser +regalado +mcewen +keefe +fuqua +echevarria +domingo +dang +caro +boynton +andrus +wild +viera +vanmeter +taber +spradlin +seibert +provost +prentice +oliphant +laporte +hwang +hatchett +hass +greiner +freedman +covert +chilton +byars +wiese +venegas +swank +shrader +roderick +roberge +mullis +mortensen +mccune +marlowe +kirchner +keck +isaacson +hostetler +halverson +gunther +griswold +gerard +fenner +durden +blackwood +bertram +ahrens +sawyers +savoy +nabors +mcswain +mackay +loy +lavender +lash +labbe +jessup +hubert +fullerton +donnell +cruse +crittenden +correia +centeno +caudle +canady +callender +alarcon +ahern +winfrey +tribble +tom +styles +salley +roden +musgrove +minnick +fortenberry +carrion +bunting +bethel +batiste +woo +whited +underhill +stillwell +silvia +rauch +pippin +perrin +messenger +mancini +lister +kinard +hartmann +fleck +broadway +wilt +treadway +thornhill +speed +spalding +sam +rafferty +pitre +patino +ordonez +linkous +kelleher +homan +holiday +galbraith +feeney +dorris +curtin +coward +camarillo +buss +bunnell +bolt +beeler +autry +alcala +witte +wentz +stidham +shively +nunley +meacham +martins +lemke +lefebvre +kaye +hynes +horowitz +hoppe +holcombe +estrella +dunne +derr +cochrane +brittain +bedard +beauregard +torrence +strunk +soria +simonson +shumaker +scoggins +packer +oconner +moriarty +leroy +kuntz +ives +hutcheson +horan +hales +garmon +fitts +dell +bohn +atchison +worth +wisniewski +will +vanwinkle +sturm +sallee +prosser +moen +lundberg +kunz +kohl +keane +jorgenson +jaynes +funderburk +freed +frame +durr +creamer +cosgrove +candelaria +berlin +batson +vanhoose +thomsen +teeter +sommer +smyth +sena +redmon +orellana +maness +lennon +heflin +goulet +frick +forney +dollar +bunker +asbury +aguiar +talbott +southard +pleasant +mowery +mears +lemmon +krieger +hickson +gracia +elston +duong +delgadillo +dayton +dasilva +conaway +catron +bruton +bradbury +bordelon +bivins +bittner +bergstrom +beals +abell +whelan +travers +tejada +pulley +pino +norfleet +nealy +maes +loper +held +gerald +gatewood +frierson +freund +finnegan +cupp +covey +catalano +boehm +bader +yoon +walston +tenney +sipes +roller +rawlins +medlock +mccaskill +mccallister +marcotte +maclean +hughey +henke +harwell +gladney +gilson +dew +chism +caskey +brandenburg +baylor +villasenor +veal +van +thatcher +stegall +shore +petrie +nowlin +navarrete +muhammad +lombard +loftin +lemaster +kroll +kovach +kimbrell +kidwell +hershberger +fulcher +eng +cantwell +bustos +boland +bobbitt +binkley +wester +weis +verdin +tong +tiller +sisco +sharkey +seymore +rosenbaum +rohr +quinonez +pinkston +nation +malley +logue +lessard +lerner +lebron +krauss +klinger +halstead +haller +getz +burrow +brant +alger +victor +shores +scully +pounds +pfeifer +perron +nelms +munn +mcmaster +mckenney +manns +knudson +hutchens +huskey +goebel +flagg +cushman +click +castellano +carder +bumgarner +blaine +bible +wampler +spinks +robson +neel +mcreynolds +mathias +maas +loera +kasper +jose +jenson +florez +coons +buckingham +brogan +berryman +wilmoth +wilhite +thrash +shephard +seidel +schulze +roldan +pettis +obryan +maki +mackie +hatley +frazer +fiore +falls +chesser +bui +bottoms +bisson +benefield +allman +wilke +trudeau +timm +shifflett +rau +mundy +milliken +mayers +leake +kohn +huntington +horsley +hermann +guerin +fryer +frizzell +foret +flemming +fife +criswell +carbajal +bozeman +boisvert +archie +antonio +angulo +wallen +tapp +silvers +ramsay +oshea +orta +moll +mckeever +mcgehee +luciano +linville +kiefer +ketchum +howerton +groce +gaylord +gass +fusco +corbitt +blythe +betz +bartels +amaral +aiello +yoo +weddle +troy +sun +sperry +seiler +runyan +raley +overby +osteen +olds +mckeown +mauro +matney +lauer +lattimore +hindman +hartwell +fredrickson +fredericks +espino +clegg +carswell +cambell +burkholder +august +woodbury +welker +totten +thornburg +theriault +stitt +stamm +stackhouse +simone +scholl +saxon +rife +razo +quinlan +pinkerton +olivo +nesmith +nall +mattos +leak +lafferty +justus +giron +geer +fielder +eagle +drayton +dortch +conners +conger +chau +boatwright +billiot +barden +armenta +antoine +tibbetts +steadman +slattery +sides +rinaldi +raynor +rayford +pinckney +pettigrew +nickel +milne +matteson +halsey +gonsalves +fellows +durand +desimone +cowley +cowles +brill +barham +barela +barba +ashmore +withrow +valenti +tejeda +spriggs +sayre +salerno +place +peltier +peel +merriman +matheson +lowman +lindstrom +hyland +homer +ha +giroux +fries +frasier +earls +dugas +damon +dabney +collado +briseno +baxley +andre +word +whyte +wenger +vanover +vanburen +thiel +schindler +schiller +rigby +pomeroy +passmore +marble +manzo +mahaffey +lindgren +laflamme +greathouse +fite +ferrari +calabrese +bayne +yamamoto +wick +townes +thames +steel +reinhart +peeler +naranjo +montez +mcdade +mast +markley +marchand +leeper +kong +kellum +hudgens +hennessey +hadden +guess +gainey +coppola +borrego +bolling +beane +ault +slaton +poland +pape +null +mulkey +lightner +langer +hillard +glasgow +fabian +ethridge +enright +derosa +baskin +alfred +weinberg +turman +tinker +somerville +pardo +noll +lashley +ingraham +hiller +hendon +glaze +flora +cothran +cooksey +conte +carrico +apple +abner +wooley +swope +summerlin +sturgis +sturdivant +stott +spurgeon +spillman +speight +roussel +popp +nutter +mckeon +mazza +magnuson +lanning +kozak +jankowski +heyward +forster +corwin +callaghan +bays +wortham +usher +theriot +sayers +sabo +rupert +poling +nathan +loya +lieberman +levi +laroche +labelle +howes +harr +garay +fogarty +everson +durkin +dominquez +chaves +chambliss +alfonso +witcher +wilber +vieira +vandiver +terrill +stoker +schreiner +nestor +moorman +liddell +lew +lawhorn +krug +irons +hylton +hollenbeck +herrin +hembree +hair +goolsby +goodin +gilmer +foltz +dinkins +daughtry +caban +brim +briley +bilodeau +bear +wyant +vergara +tallent +swearingen +stroup +sherry +scribner +roger +quillen +pitman +monaco +mccants +maxfield +martinson +landon +holtz +flournoy +brookins +brody +baumgardner +angelo +straub +sills +roybal +roundtree +oswalt +money +mcgriff +mcdougall +mccleary +maggard +gragg +gooding +godinez +doolittle +donato +cowell +cassell +bracken +appel +ahmad +zambrano +reuter +perea +olive +nakamura +monaghan +mickens +mcclinton +mcclary +marler +kish +judkins +gilbreath +freese +flanigan +felts +erdmann +dodds +chew +brownell +brazil +boatright +barreto +slayton +sandberg +saldivar +pettway +odum +narvaez +moultrie +montemayor +merrell +lees +keyser +hoke +hardaway +hannan +gilbertson +fogg +dumont +deberry +coggins +carrera +buxton +bucher +broadnax +beeson +araujo +appleton +amundson +aguayo +ackley +yocum +worsham +shivers +shelly +sanches +sacco +robey +rhoden +pender +ochs +mccurry +madera +luong +luis +knotts +jackman +heinrich +hargrave +gault +forest +comeaux +chitwood +child +caraway +boettcher +bernhardt +barrientos +zink +wickham +whiteman +thorp +stillman +settles +schoonover +roque +riddell +rey +pilcher +phifer +novotny +maple +macleod +hardee +haase +grider +fredrick +earnest +doucette +clausen +christmas +bevins +beamon +badillo +tolley +tindall +soule +snook +sebastian +seale +pitcher +pinkney +pellegrino +nowell +nemeth +nail +mondragon +mclane +lundgren +ingalls +hudspeth +hixson +gearhart +furlong +downes +dionne +dibble +deyoung +cornejo +camara +brookshire +boyette +wolcott +tracey +surratt +sellars +segal +salyer +reeve +rausch +philips +labonte +haro +gower +freeland +fawcett +eads +driggers +donley +collett +cage +bromley +boatman +ballinger +baldridge +volz +trombley +stonge +silas +shanahan +rivard +rhyne +pedroza +matias +mallard +jamieson +hedgepeth +hartnett +estevez +eskridge +denman +chiu +chinn +catlett +carmack +buie +book +bechtel +beardsley +bard +ballou +windsor +ulmer +storm +skeen +robledo +rincon +reitz +piazza +pearl +munger +moten +mcmichael +loftus +ledet +kersey +groff +fowlkes +folk +crumpton +collette +clouse +bettis +villagomez +timmerman +strom +saul +santoro +roddy +phillip +penrod +musselman +macpherson +leboeuf +harless +haddad +guido +golding +fulkerson +fannin +dulaney +dowdell +deane +cottle +ceja +cate +bosley +benge +albritton +voigt +trowbridge +soileau +seely +rome +rohde +pearsall +paulk +orth +nason +mota +mcmullin +marquardt +madigan +hoag +gillum +gayle +gabbard +fenwick +fender +eck +danforth +cushing +cress +creed +cazares +casanova +bey +bettencourt +barringer +baber +stansberry +schramm +rutter +rivero +race +oquendo +necaise +mouton +montenegro +miley +mcgough +marra +macmillan +lock +lamontagne +jasso +jaime +horst +hetrick +heilman +gaytan +gall +fried +fortney +eden +dingle +desjardins +dabbs +burbank +brigham +breland +beaman +banner +arriola +yarborough +wallin +treat +toscano +stowers +reiss +pichardo +orton +mitchel +michels +mcnamee +mccrory +leatherman +kell +keister +jerome +horning +hargett +guay +friday +ferro +deboer +dagostino +clemente +christ +carper +bowler +blanks +beaudry +willie +towle +tafoya +stricklin +strader +soper +sonnier +sigmon +schenk +saddler +rodman +pedigo +mendes +lunn +lohr +lahr +kingsbury +jarman +hume +holliman +hofmann +haworth +harrelson +hambrick +flick +edmunds +dacosta +crossman +colston +chaplin +carrell +budd +weiler +waits +viola +valentino +trantham +tarr +straight +solorio +roebuck +powe +plank +pettus +palm +pagano +mink +luker +leathers +joslin +hartzell +gambrell +fears +deutsch +cepeda +carty +caputo +brewington +bedell +ballew +applewhite +warnock +walz +urena +tudor +reel +pigg +parton +mickelson +meagher +mclellan +mcculley +mandel +leech +lavallee +kraemer +kling +kipp +kingston +kehoe +hochstetler +harriman +gregoire +grabowski +gosselin +gammon +fancher +edens +desai +butt +brannan +armendariz +woolsey +whitehouse +whetstone +ussery +towne +tower +testa +tallman +studer +strait +steinmetz +sorrells +sauceda +rolfe +rae +paddock +mitchem +mcginn +mccrea +luck +lovato +ling +hazen +gilpin +gaynor +fike +devoe +delrio +curiel +burkhardt +bristol +bode +backus +alton +zinn +watanabe +wachter +vanpelt +turnage +shaner +schroder +sato +riordan +quimby +portis +natale +mckoy +mccown +marker +lucio +kilmer +karl +hotchkiss +hesse +halbert +gwinn +godsey +desmond +delisle +chrisman +canter +brook +arbogast +angell +acree +yancy +woolley +wesson +weatherspoon +trainor +stockman +spiller +sipe +rooks +reavis +propst +porras +neilson +mullens +loucks +llewellyn +lamont +kumar +koester +klingensmith +kirsch +kester +honaker +hodson +hennessy +helmick +garrity +garibay +fee +drain +casarez +callis +botello +bay +aycock +avant +angle +wingard +wayman +tully +theisen +szymanski +stansbury +segovia +rudy +rainwater +preece +pirtle +padron +mincey +mckelvey +mathes +marty +larrabee +kornegay +klug +judy +ingersoll +hecht +germain +eggers +dykstra +denis +deering +decoteau +deason +dearing +cofield +carrigan +brush +bonham +bahr +aucoin +appleby +almonte +yager +womble +wimmer +weimer +vanderpool +stancil +sprinkle +romine +remington +pfaff +peckham +olivera +meraz +maze +lathrop +koehn +jonas +hazelton +halvorson +hallock +haddock +ducharme +dehaven +colton +caruthers +brehm +bosworth +bost +blow +bias +beeman +basile +bane +aikens +zachary +wold +walther +tabb +suber +strawn +stocks +stocker +shirey +schlosser +salvador +riedel +rembert +reimer +pyles +pickle +peele +merriweather +letourneau +latta +kidder +hixon +hillis +hight +herbst +henriquez +haygood +hamill +gabel +fritts +eubank +duty +dawes +correll +coffee +cha +bushey +buchholz +brotherton +bridge +botts +barnwell +auger +atchley +westphal +veilleux +ulloa +truman +stutzman +shriver +ryals +prior +pilkington +newport +moyers +miracle +marrs +mangrum +maddux +lockard +laing +kuhl +harney +hammock +hamlett +felker +doerr +depriest +carrasquillo +carothers +bogle +blood +bischoff +bergen +albanese +wyckoff +vermillion +vansickle +thibault +tetreault +stickney +shoemake +ruggiero +rawson +racine +philpot +paschal +mcelhaney +mathison +legrand +lapierre +kwan +kremer +jiles +hilbert +geyer +faircloth +ehlers +egbert +desrosiers +dalrymple +cotten +cashman +cadena +breeding +boardman +alcaraz +ahn +wyrick +therrien +tankersley +strickler +puryear +plourde +pattison +pardue +milan +mcginty +mcevoy +landreth +kuhns +koon +hewett +giddens +everette +emerick +eades +deangelis +cosme +ceballos +birdsong +benham +bemis +armour +anguiano +angeles +welborn +tsosie +storms +shoup +sessoms +samaniego +rood +rojo +rhinehart +raby +northcutt +myer +munguia +morehouse +more +mcdevitt +mateo +mallett +lozada +lemoine +kuehn +hallett +grim +gillard +gaylor +garman +gallaher +feaster +faris +darrow +dardar +coney +carreon +byron +braithwaite +boylan +boyett +born +bixler +bigham +benford +barragan +barnum +zuber +wyche +westcott +vining +stoltzfus +simonds +shupe +sabin +ruble +rittenhouse +richman +perrone +mulholland +millan +meister +mathew +lomeli +kite +jemison +hulett +holler +hickerson +herold +hazelwood +griffen +gause +forde +eisenberg +dilworth +charron +chaisson +brodie +bristow +breunig +brace +boutwell +bentz +belk +bayless +batchelder +baran +baeza +zimmermann +weathersby +volk +toole +theis +tedesco +shine +searle +schenck +satterwhite +sandy +ruelas +royce +rankins +partida +nesbit +morel +menchaca +levasseur +kaylor +johnstone +hulse +hollar +hersey +harrigan +harbison +guyer +gish +giese +gerlach +geller +geisler +falcone +ernest +elwell +doucet +deese +darr +corder +chafin +byler +bussell +burdett +brasher +bowe +bellinger +bastian +barner +alleyne +wilborn +weil +wegner +wales +tatro +spitzer +smithers +schoen +resendez +pete +parisi +overman +obrian +mudd +moy +mclaren +mahler +maggio +lindner +lalonde +lacasse +laboy +killion +kahl +jessen +jamerson +houk +henshaw +gustin +groom +graber +durst +duenas +davey +cundiff +conlon +colunga +coakley +chiles +capers +buell +bricker +bissonnette +birmingham +bartz +bagby +zayas +volpe +treece +toombs +thom +terrazas +swinney +skiles +silveira +shouse +senn +rambo +ramage +nez +moua +marlin +malik +langham +kyles +holston +hoagland +herd +hector +feller +emory +denison +corliss +carraway +burford +bickel +ambriz +abercrombie +yamada +winner +weidner +waddle +verduzco +thurmond +swindle +schrock +sanabria +rosenberger +probst +peabody +olinger +neighbors +nazario +mccafferty +mcbroom +mcabee +mazur +matherne +mapes +leverett +killingsworth +heisler +griego +grande +gosnell +frankel +franke +ferrante +fenn +elmer +ehrlich +christopherso +chick +chasse +chancellor +caton +brunelle +bly +bloomfield +babbitt +azevedo +abramson +ables +abeyta +youmans +wozniak +wainwright +summer +stowell +smitherman +sites +samuelson +runge +rule +rothman +rosenfeld +quan +peake +oxford +owings +olmos +munro +moreira +leatherwood +larkins +krantz +kovacs +kizer +kindred +karnes +jaffe +hubbell +hosey +hauck +harold +goodell +favors +erdman +dvorak +doane +cureton +cofer +buehler +bierman +berndt +banta +annis +abram +abdullah +warwick +waltz +turcotte +trinh +torrey +stith +seger +sachs +quesada +pinder +peppers +pascual +paschall +parkhurst +ozuna +oster +nicholls +mortimer +lheureux +lavalley +kimura +jablonski +haun +gourley +gilligan +fix +derby +croy +cotto +cargill +burwell +burgett +buckman +brett +booher +adorno +wrenn +whittemore +urias +szabo +sayles +saiz +rutland +rael +plant +pharr +penney +pelkey +ogrady +nickell +musick +moats +mather +massa +laurent +kirschner +kieffer +kellar +hendershot +gott +godoy +gadson +furtado +fiedler +erskine +edison +dutcher +dever +daggett +chevalier +chao +brake +ballesteros +amerson +alejandro +wingo +waldon +trott +spikes +silvey +showers +schlegel +rue +ritz +pepin +pelayo +parsley +palermo +moorehead +mchale +lett +kocher +kilburn +iglesias +humble +hulbert +huckaby +hix +haven +hartford +hardiman +gurney +grigg +grasso +goings +fillmore +farber +depew +dandrea +dame +cowen +covarrubias +cory +burrus +bracy +ardoin +thompkins +suzuki +standley +russel +radcliffe +pohl +persaud +percy +parenteau +pabon +newson +newhouse +napolitano +mulcahy +maya +malave +keim +hooten +hernandes +heffernan +hearne +greenleaf +glick +fuhrman +fetter +faria +dishman +dickenson +crites +criss +clapper +chenault +castor +casto +bugg +bove +bonney +blessing +ard +anderton +allgood +alderson +woodman +wisdom +warrick +toomey +tooley +tarrant +summerville +stebbins +sokol +sink +searles +schutz +schumann +scheer +remillard +raper +proulx +palmore +monroy +miguel +messier +melo +melanson +mashburn +manzano +lussier +lovely +lien +jenks +huneycutt +hartwig +grimsley +fulk +fielding +fidler +engstrom +eldred +dantzler +crandell +ching +calder +brumley +breton +brann +bramlett +boykins +bianco +bancroft +almaraz +alcantar +whitmer +whitener +welton +vineyard +su +rahn +paquin +mizell +mix +mcmillin +mckean +marston +maciel +lundquist +louie +liggins +lampkin +kranz +koski +kirkham +jiminez +hazzard +harrod +graziano +grammer +gendron +garrido +fordham +englert +elwood +dryden +demoss +deluna +crabb +comeau +claudio +brummett +blume +benally +wessel +vanbuskirk +thorson +stumpf +stockwell +rocco +reams +radtke +rackley +pelton +niemi +newland +nelsen +morrissette +miramontes +mcginley +mccluskey +marley +marchant +luevano +lampe +lail +jeffcoat +infante +hu +hinman +gaona +erb +eady +desmarais +decosta +dansby +cisco +choe +breckenridge +bostwick +borg +bianchi +beer +alberts +adrian +wilkie +whorton +vargo +tait +sylvia +soucy +schuman +ousley +mumford +lum +lippert +leath +lavergne +laliberte +kirksey +kenner +johnsen +izzo +hiles +gullett +greenwell +gaspar +galbreath +gaitan +ericson +duck +delapaz +croom +cottingham +clift +bushnell +boozer +bice +bernardo +beason +arrowood +waring +voorhees +truax +shreve +shockey +schatz +sandifer +rubino +rozier +roseberry +roll +player +pieper +peden +nester +nave +murphey +malinowski +macgregor +liang +lafrance +kunkle +kirkman +jorge +hipp +hasty +haddix +gervais +gerdes +garfield +gamache +fouts +fitzwater +dillingham +deming +deanda +cedeno +cannady +burson +bouldin +arceneaux +woodhouse +whitford +wescott +welty +weigel +torgerson +toms +surber +sunderland +sterner +setzer +salvatore +riojas +pumphrey +puga +pedro +patch +metts +mcgarry +mccandless +magill +lupo +loveland +llamas +leclerc +koons +kahler +huss +holbert +heintz +haupt +grimmett +gaskill +flower +ellingson +dorr +dingess +deweese +desilva +crossley +cordeiro +converse +conde +cheeks +caldera +cairns +burmeister +burkhalter +brawner +bott +youngs +vierra +valladares +tiffany +shrum +shropshire +sevilla +rusk +roof +rodarte +pedraza +nino +montana +merino +mcminn +markle +mapp +lucia +lajoie +koerner +kittrell +kato +hyder +hollifield +heiser +hazlett +greenwald +fant +eldredge +dreher +delafuente +cravens +claypool +beecher +aronson +alanis +worthen +wojcik +winger +whitacre +wellington +valverde +valdivia +troupe +thrower +swindell +suttles +suh +stroman +spires +slate +shealy +sarver +sartin +sadowski +rondeau +rolon +rick +rex +rascon +priddy +pine +paulino +nolte +munroe +molloy +mellon +mciver +lykins +loggins +lillie +lenoir +klotz +kempf +jone +hupp +hollowell +hollander +haynie +hassan +harkness +harker +gottlieb +frith +eddins +driskell +doggett +densmore +charette +cassady +carrol +byrum +burcham +buggs +benn +whitted +warrington +vandusen +vaillancourt +steger +spell +siebert +scofield +quirk +purser +plumb +orcutt +northern +nordstrom +mosely +michalski +mcphail +mcdavid +mccraw +martini +marchese +mannino +leo +lefevre +largent +lanza +kress +isham +hunsaker +hoch +hildebrandt +guarino +grijalva +graybill +fick +ewell +ewald +deangelo +cusick +crumley +coston +cathcart +carruthers +bullington +brian +bowes +blain +blackford +barboza +yingling +woodland +wert +weiland +varga +silverstein +sievers +shuster +shumway +scudder +runnels +rumsey +renfroe +provencher +polley +mohler +middlebrooks +kutz +koster +korn +grow +groth +glidden +fazio +deen +corn +copper +chipman +chenoweth +champlin +cedillo +carrero +carmody +buckles +brien +boutin +bosch +bill +berkowitz +altamirano +wilfong +wiegand +waites +truesdale +toussaint +tobey +tedder +steelman +sirois +schnell +robichaud +ridge +richburg +pray +plumley +pizarro +piercy +ortego +oberg +neace +music +mickey +mertz +mcnew +matta +lawyer +lapp +lair +kibler +jessie +howlett +hollister +hofer +hatten +hagler +germany +falgoust +engelhardt +eberle +eastwood +dombrowski +dinsmore +daye +cool +casares +capone +braud +balch +autrey +wendel +tyndall +toy +strobel +stoltz +spinelli +serrato +rochester +reber +real +rathbone +palomino +noah +nickels +mayle +mathers +mach +loeffler +littrell +levinson +leong +lemire +lejeune +lazo +lasley +koller +kennard +jester +hoelscher +hintz +hagerman +greaves +fore +eudy +engler +corrales +cordes +brunet +bidwell +bennet +bare +tyrrell +tharpe +swinton +stribling +steven +southworth +sisneros +shane +savoie +samons +ruvalcaba +roscoe +ries +ramer +omara +mosqueda +millar +mcpeak +macomber +luckey +litton +lehr +lavin +hubbs +hoard +hibbs +hagans +futrell +exum +evenson +dicks +culler +chou +carbaugh +callen +brashear +bloomer +blakeney +bigler +addington +woodford +witter +unruh +tolentino +sumrall +stgermain +smock +sherer +salem +rochelle +rayner +pooler +oquinn +nero +milano +mcglothlin +mars +linden +kowal +kerrigan +ibrahim +harvell +hanrahan +goodall +geist +fussell +fung +ferebee +federico +eley +eggert +dorsett +dingman +destefano +colucci +clemmer +caesar +burnell +brumbaugh +boddie +berryhill +avelar +alcantara +abbey +winder +winchell +vandenberg +trotman +thurber +thibeault +stlouis +stilwell +sperling +shattuck +sarmiento +ruppert +rumph +renaud +randazzo +rademacher +quiles +pearman +palomo +mercurio +lowrey +lindeman +lawlor +larosa +lander +labrecque +kimber +hovis +holifield +henninger +hawkes +hartfield +hann +hague +genovese +garrick +fudge +frink +eddings +dinh +dear +cutter +cribbs +constant +calvillo +bunton +brodeur +bolding +blanding +agosto +zahn +wiener +trussell +tew +tello +teixeira +stephan +speck +sharma +shanklin +sealy +scanlan +santamaria +roundy +robichaux +ringer +rigney +prevost +polson +philip +pass +nord +moxley +mohammed +medford +mccaslin +mcardle +macarthur +lewin +lasher +ketcham +keiser +heine +hackworth +grose +grizzle +grass +gillman +gartner +garth +frazee +fleury +fast +edson +edmonson +derry +deck +cronk +conant +burress +burgin +broom +brockington +bolick +boger +birchfield +billington +baily +bahena +armbruster +anson +yoho +wilcher +tinney +timberlake +thoma +thielen +sutphin +stultz +sikora +serra +schulman +scheffler +santillan +robin +rego +preciado +pinkham +monday +mickle +luu +lomas +lizotte +lent +lenard +kellerman +keil +juan +johanson +hernadez +hartsfield +hang +haber +gorski +farkas +eberhardt +duquette +delano +cropper +cozart +cockerham +chamblee +cartagena +cahoon +buzzell +brister +brewton +blackshear +benfield +aston +ashburn +arruda +wetmore +weise +vaccaro +tucci +sudduth +stromberg +stoops +showalter +shears +runion +rowden +rosenblum +riffle +renfrow +peres +obryant +nicolas +leftwich +lark +landeros +kistler +killough +kerley +kastner +hoggard +hartung +guertin +govan +gatling +gailey +fullmer +fulford +flatt +esquibel +endicott +edmiston +edelstein +dufresne +dressler +dickman +chee +busse +bonnett +bogart +berard +barrington +arena +anton +yoshida +velarde +veach +vanhouten +vachon +tolson +tolman +tennyson +stites +soler +shutt +ruggles +rhone +pegues +ong +neese +muro +moncrief +mefford +mcphee +mcmorris +mceachern +mcclurg +mansour +mai +mader +leija +lecompte +lafountain +labrie +jaquez +heald +hash +hartle +gainer +frisby +farina +eidson +edgerton +dyke +durrett +duhon +cuomo +cobos +cervantez +bybee +brockway +borowski +binion +beery +arguello +amaro +acton +yuen +winton +wigfall +weekley +vidrine +vannoy +tardiff +shoop +shilling +schick +sand +safford +prendergast +pilgrim +pellerin +osuna +nissen +nalley +moritz +moller +messner +messick +merry +merrifield +mcguinness +matherly +marcano +mahone +lemos +lebrun +jara +hoffer +hewlett +herren +hecker +haws +haug +hack +gwin +gober +gilliard +fredette +favela +echeverria +downer +donofrio +desrochers +dee +crozier +corson +clyde +bechtold +argueta +aparicio +zamudio +willette +westover +westerman +utter +troyer +thies +tapley +slavin +shirk +sandler +roop +rimmer +raymer +range +radcliff +otten +moorer +millet +mckibben +mccutchen +mcavoy +mcadoo +mayorga +mastin +martineau +marek +madore +leflore +kroeger +kennon +jimerson +javier +hostetter +hornback +hendley +hance +guardado +granado +gowen +goodale +flinn +fleetwood +fitz +durkee +duprey +dipietro +dilley +clyburn +brawley +beckley +arana +weatherby +vollmer +victoria +vestal +tunnell +trigg +tingle +takahashi +sweatt +storer +snapp +shiver +rooker +red +rathbun +poisson +perrine +perri +pastor +parmer +parke +pare +papa +palmieri +nottingham +midkiff +mecham +mccomas +mcalpine +lovelady +lillard +lally +knopp +kile +kiger +haile +gupta +goldsberry +gilreath +fulks +friesen +franzen +flack +findlay +ferland +dreyer +dore +dennard +deckard +debose +crim +coulombe +cork +chancey +cantor +branton +bissell +barns +woolard +witham +wasserman +waldo +spiegel +shoffner +scholz +ruch +rossman +ready +petry +palacio +paez +neary +mortenson +millsap +miele +mick +menke +mckim +mcanally +martines +manor +malcom +lemley +larochelle +klaus +klatt +kaufmann +kapp +helmer +hedge +halloran +glisson +frechette +fontana +enoch +eagan +drum +distefano +danley +creekmore +chartier +chaffee +carillo +burg +bolinger +berkley +benz +basso +bash +barrier +zelaya +woodring +witkowski +wilmot +wilkens +wieland +virgil +verdugo +urquhart +tsai +timms +swiger +swaim +sussman +scarlett +pires +molnar +mcatee +maurice +lowder +loos +linker +landes +kingery +keeley +hufford +higa +hendren +hammack +hamann +gillam +gerhardt +fell +eugene +edelman +eby +delk +deans +curl +constantine +cleaver +claar +casiano +carruth +carlyle +bump +brophy +bolanos +bibbs +bessette +beggs +baugher +bartel +averill +andresen +amin +alden +adames +wildman +via +valente +turnbow +tse +swink +sublett +stroh +stringfellow +ridgway +pugliese +poteat +pang +ohare +neubauer +murchison +mohamed +mingo +lucky +lemmons +kwon +kellam +kean +jarmon +hyden +hudak +hollinger +henkel +hemingway +hasson +hansel +halter +haire +goodnight +ginsberg +gillispie +fogel +flory +etter +elledge +eckman +deas +currin +crafton +coomer +colter +claxton +bulter +braddock +bowyer +blizzard +binns +bing +bellows +baskerville +barros +ansley +woolf +wight +waldman +wadley +tull +trull +tesch +struck +stouffer +stadler +slay +shubert +sedillo +santacruz +reinke +raleigh +poynter +neri +neale +natividad +mowry +moralez +monger +mitchum +merryman +manion +macdougall +lux +litchfield +ley +levitt +lepage +lasalle +laine +khoury +kavanagh +karns +ivie +huebner +hodgkins +halpin +garica +eversole +dutra +dunagan +duffey +dillman +dillion +deville +dearborn +damato +courson +coulson +burdine +bryce +bousquet +bonin +bish +atencio +westbrooks +wages +vaca +tye +toner +tomas +tillis +swett +surface +struble +stanfill +son +solorzano +slusher +sipple +sim +silvas +shults +schexnayder +saez +rodas +rager +pulver +plaza +penton +paniagua +meneses +mcfarlin +mcauley +matz +maloy +magruder +lohman +landa +lacombe +jaimes +hom +holzer +holst +heil +hackler +grundy +gregor +gilkey +farnham +durfee +dunton +dunston +duda +dews +dana +craver +corriveau +conwell +colella +chambless +bremer +boutte +bourassa +blaisdell +backman +babineaux +audette +alleman +towner +taveras +tarango +sullins +suiter +stallard +solberg +schlueter +poulos +pimental +owsley +olivier +okelley +nations +moffatt +metcalfe +meekins +medellin +mcglynn +mccowan +marriott +marable +lennox +lamoureux +koss +kerby +karp +jason +isenberg +howze +hockenberry +highsmith +harbour +hallmark +gusman +greeley +giddings +gaudet +gallup +fleenor +eicher +edington +dimaggio +dement +demello +decastro +cruise +bushman +brundage +brooker +brooke +bourg +board +blackstock +bergmann +beaton +banister +argo +appling +wortman +watterson +villalpando +tillotson +tighe +sundberg +sternberg +stamey +speaks +shipe +seeger +scarberry +sattler +sain +rothstein +poteet +plowman +pettiford +penland +peach +partain +pankey +oyler +ogletree +ogburn +moton +million +merkel +mask +markus +lucier +lazarus +lavelle +lakey +kratz +kinser +kershaw +josephson +jesse +imhoff +ibanez +hendry +hammon +frisbie +friedrich +frawley +fraga +forester +eskew +emmert +drennan +doyon +dominick +dandridge +cumming +cawley +carvajal +bracey +belisle +batey +ahner +wysocki +weiser +veliz +tincher +sherlock +santo +sansone +sankey +sandstrom +sale +rohrer +risner +pridemore +pfeffer +persinger +peery +oubre +orange +nowicki +musgrave +murdoch +mullinax +mccary +mathieu +livengood +leonardo +kyser +klink +kimes +kellner +kavanaugh +kasten +imes +hoey +hinshaw +halley +hake +gurule +grube +grillo +geter +gatto +garver +garretson +farwell +eiland +dunford +decarlo +corso +core +colman +collard +cleghorn +chasteen +cavender +carlile +calvo +byerly +brogdon +broadwater +breault +bono +bergin +behr +ballenger +amick +yan +vice +tamez +stiffler +steinke +simmon +shankle +schaller +salmons +sackett +saad +rideout +reader +ratcliffe +rao +ranson +randell +plascencia +petterson +olszewski +olney +olguin +nilsson +nevels +morelli +montiel +monge +michell +michaelson +mertens +mcchesney +mcalpin +mathewson +lower +loudermilk +lineberry +liggett +lamp +kinlaw +kight +just +jost +hereford +hardeman +halpern +halliday +hafer +gaul +friel +freitag +frances +forsberg +evangelista +doering +dicarlo +dendy +delp +deguzman +dameron +curtiss +cousin +cosper +charley +cauthen +cao +camper +bradberry +bouton +bonnell +bixby +bieber +beveridge +belle +bedwell +barhorst +bannon +baltazar +baier +ayotte +attaway +arenas +alex +abrego +watford +valley +turgeon +tunstall +thaxton +thai +tenorio +stotts +sthilaire +spiker +shedd +seng +seabolt +scalf +salyers +ruhl +rowlett +robinett +pfister +perlman +pepe +parkman +paradise +olin +nunnally +norvell +napper +modlin +mckellar +mcclean +mascarenas +manchester +leibowitz +ledezma +kuhlman +kobayashi +hunley +holmquist +hinkley +hazard +hartsell +gribble +gravely +fifield +eliason +doctor +doak +crossland +cover +clair +carleton +butters +bridgeman +bojorquez +boggess +banker +auten +woosley +wine +whiteley +wexler +twomey +tullis +townley +to +standridge +stamp +springs +santoyo +rueda +riendeau +revell +pless +ottinger +nigro +nickles +mulvey +menefee +mcshane +mcloughlin +mckinzie +marrow +markey +mariano +lockridge +lipsey +knisley +knepper +kitts +kiel +jinks +hathcock +godin +gallego +fikes +fecteau +estabrook +ellinger +dustin +dunlop +dudek +diego +countryman +chauvin +chatham +bullins +brownfield +boughton +bloodworth +bibb +baucom +barbieri +aubin +armitage +alessi +absher +abbate +zito +woolery +wiggs +wacker +violette +tynes +tolle +telles +tarter +swarey +strode +stockdale +stella +stalnaker +spina +schiff +saari +risley +reading +rameriz +rakes +pettaway +penner +paulus +palladino +omeara +montelongo +melnick +mehta +mcgary +mccourt +mccollough +marchetti +manzanares +lowther +leiva +lauderdale +lafontaine +kowalczyk +knighton +joubert +jaworski +ide +huth +hurdle +hung +housley +hackman +gulick +gordy +gilstrap +gehrke +gebhart +gaudette +foxworth +finger +essex +endres +dunkle +clare +cimino +cardinal +caddell +brauer +braley +bodine +blackmore +belden +backer +ayer +andress +alva +wisner +walk +vuong +valliere +twigg +tso +tavarez +strahan +steib +staub +sowder +shoulders +seiber +schutt +scharf +schade +rodriques +risinger +renshaw +rath +rahman +presnell +pillow +piatt +pasquale +nieman +nicol +nevins +milford +mcilwain +mcgaha +mccully +mccomb +maye +massengale +macedo +lines +lesher +leland +kearse +jauregui +husted +hudnall +holmberg +hertel +hershey +hardie +glidewell +frausto +fassett +dash +dalessandro +dahlgren +corum +constantino +conlin +colquitt +colombo +claycomb +carley +cardin +cancel +buller +boring +boney +bocanegra +blazer +biggers +benedetto +araiza +andino +albin +zorn +werth +weisman +walley +vanegas +ulibarri +towers +towe +tedford +teasley +suttle +steffens +stcyr +squire +smythe +singley +sifuentes +shuck +session +schram +sass +rieger +ridenhour +rickert +richerson +rayborn +rabe +raab +pendley +pastore +ordway +moynihan +mellott +mckissick +mcgann +mccready +mauney +marrufo +list +lenhart +lazar +lafave +keele +kautz +jardine +jahnke +jacobo +hord +hardcastle +hageman +griffey +giglio +gehring +fortson +duque +duplessis +donner +dicken +derosier +deitz +dalessio +cyrus +cram +chi +center +castleman +candelario +callison +caceres +bozarth +biles +bejarano +beech +bashaw +avina +armentrout +angus +alverez +acord +zack +waterhouse +vereen +vanlandingham +uhl +strawser +shotwell +severance +seltzer +schoonmaker +schock +schaub +schaffner +roeder +rodrigez +riffe +rhine +rasberry +rancourt +railey +quade +pursley +prouty +perdomo +oxley +osterman +nickens +murphree +mounts +monte +merida +maus +mattern +masse +martinelli +mangan +lutes +ludwick +loney +laureano +lasater +knighten +kissinger +kimsey +kessinger +honea +hollingshead +hockett +heyer +heron +gurrola +gove +glasscock +gillett +galan +featherstone +eckhardt +duron +dunson +dasher +culbreth +cowden +cowans +claypoole +churchwell +chabot +caviness +cater +caston +callan +byington +burkey +boden +beckford +atwater +arms +archambault +alvey +alsup +yon +whisenant +weese +voyles +verret +tsang +tessier +sweitzer +sherwin +shaughnessy +revis +remy +prine +philpott +peavy +paynter +parmenter +ovalle +offutt +nightingale +newlin +nakano +myatt +muth +mohan +mcmillon +mccarley +mccaleb +maxson +marinelli +maley +macy +liston +letendre +kain +huntsman +hirst +hagerty +gulledge +greenway +grajeda +gorton +goines +gittens +frederickson +fanelli +embree +eichelberger +dunkin +dull +dixson +dillow +defelice +chumley +burleigh +borkowski +binette +biggerstaff +berglund +beller +audet +arbuckle +allain +alfano +zander +youngman +wittman +weintraub +vanzant +vaden +twitty +trader +toon +till +stollings +standifer +spinner +sines +shope +scalise +saville +romans +posada +pisano +otte +nolasco +napoli +mier +merkle +mendiola +melcher +mejias +mcmurry +mccalla +markowitz +marine +manis +mallette +macfarlane +lough +looper +landin +kittle +kinsella +kinnard +hobart +herald +helman +hellman +hartsock +halford +hage +gordan +glasser +gayton +gattis +gastelum +gaspard +frisch +force +fitzhugh +eckstein +eberly +dowden +despain +crumpler +crotty +cornelison +collin +colin +chouinard +chamness +catlin +cann +bumgardner +budde +branum +bradfield +braddy +borst +birdwell +bent +bazan +bank +banas +bade +aubrey +arango +ahearn +addis +zumwalt +wurth +wilk +widener +wagstaff +vella +urrutia +terwilliger +tart +steinman +staats +sloat +rives +riggle +revels +reichard +prickett +poff +pitzer +petro +pell +northrup +nicks +moline +mielke +maynor +mallon +magness +lingle +lindell +lieb +lesko +lebeau +lammers +lafond +kiernan +ketron +jurado +holmgren +hilburn +hayashi +hashimoto +harbaugh +hans +guillot +gard +froehlich +felipe +feinberg +falco +dufour +drees +doney +diep +delao +daves +dail +cutting +crowson +coss +congdon +carner +camarena +butterworth +burlingame +bouffard +bloch +bilyeu +barta +bakke +baillargeon +avent +aquilar +ake +aho +zeringue +yeh +yarber +wolfson +wendell +vogler +voelker +truss +troxell +thrift +strouse +spielman +sistrunk +shows +sevigny +schuller +schaaf +ruffner +routh +roseman +ricciardi +peraza +pegram +overturf +olander +odaniel +neu +millner +melchor +maxie +marvel +maroney +machuca +macaluso +livesay +layfield +laskowski +kwiatkowski +ko +kiley +kilby +julien +hovey +heywood +hayman +havard +harville +haigh +hagood +grieco +glassman +gebhardt +garry +freeze +fleischer +fann +elson +eccles +cunha +crumb +crew +blakley +bardwell +abshire +woodham +wines +welter +wargo +varnado +tutt +traynor +swaney +svoboda +stricker +stoffel +stambaugh +sickler +shackleford +selman +seaver +sansom +sanmiguel +royston +rourke +rockett +rioux +puleo +pitchford +persons +normand +nardi +mulvaney +middaugh +manners +malek +lodge +leos +lathan +kujawa +kimbro +killebrew +joshua +houlihan +hobby +hinckley +herod +hepler +hamner +hammel +hallowell +gonsalez +gingerich +gambill +funkhouser +fricke +fewell +falkner +endsley +dulin +drennen +deaver +dambrosio +clover +chadwell +ceasar +castanon +canon +burkes +brune +brisco +brinker +bowker +boldt +berner +bee +beaumont +beaird +bazemore +barrick +arnette +albano +younts +wunderlich +weidman +vanness +tu +toland +theobald +stickler +steiger +stanger +spies +spector +sollars +smedley +seibel +scoville +saito +rye +rummel +rude +rowles +rouleau +roos +rogan +roemer +ream +raya +purkey +priester +perreira +penick +paulin +parkins +overcash +oleson +nicely +neves +muldrow +minard +midgett +michalak +melgar +mcentire +mcauliffe +marti +marte +lydon +lindholm +leyba +leader +langevin +lagasse +lafayette +kesler +kelton +kao +kaminsky +jump +jaggers +humbert +huck +howarth +hinrichs +higley +gupton +guimond +gravois +giguere +fretwell +fontes +feeley +faucher +fall +evan +eichhorn +ecker +earp +dole +dinger +derryberry +demars +deel +copenhaver +collinsworth +colangelo +cloyd +claiborne +caulfield +carlsen +calzada +caffey +broadus +brenneman +bouie +bodnar +blaney +blanc +blades +beltz +behling +begin +barahona +yun +yockey +winkle +windom +wimer +wilford +wash +villatoro +trexler +teran +taliaferro +sydnor +swinson +snelling +smtih +siu +simonton +simoneaux +simoneau +sherrer +seavey +scheel +rushton +rupe +ruano +rodney +rippy +reiner +reiff +rabinowitz +quach +penley +odle +nock +minnich +mckown +mccarver +mcandrew +longley +laux +lamothe +lafreniere +kropp +krick +kates +jepson +huie +howse +howie +henriques +haydon +haught +hatter +hartzog +harkey +grimaldo +goshorn +gormley +gluck +gilroy +gillenwater +giffin +folks +fluker +feder +eyre +eshelman +eakins +dryer +disney +detwiler +delrosario +davisson +celestine +catalan +canning +calton +buster +brammer +botelho +blakney +bartell +averett +askins +aker +zak +worcester +witmer +wiser +winkelman +widmer +whittier +western +weitzel +wardell +wagers +ullman +tupper +tingley +tilghman +talton +simard +seda +scheller +sala +rundell +rost +roa +ribeiro +rabideau +primm +porch +polite +pinon +peart +ostrom +ober +nystrom +nussbaum +nurse +naughton +murr +moorhead +monti +monteiro +melson +meissner +mclin +mcgruder +marotta +makowski +majewski +madewell +lunt +lukens +leininger +lebel +lakin +laguna +kepler +jaques +hunnicutt +hungerford +hoopes +hertz +heins +hammers +halliburton +grosso +gravitt +glasper +gideon +gallman +gallaway +funke +fulbright +falgout +eakin +dostie +dorado +dewberry +derose +cutshall +crampton +costanzo +colletti +cloninger +claytor +chiang +canterbury +campagna +burd +brokaw +broaddus +bretz +brainard +binford +bilbrey +alpert +aitken +ahlers +zajac +yale +woolfolk +witten +windle +wayland +tramel +tittle +talavera +suter +straley +stetson +specht +sommerville +soloman +so +skeens +sigman +sibert +shavers +schuck +schmit +sartain +sabol +rosenblatt +rollo +rashid +rabb +province +polston +nyberg +northrop +navarra +muldoon +mulder +mikesell +mcdougald +mcburney +mauricio +mariscal +lui +lozier +lingerfelt +legere +latour +lagunas +lacour +kurth +ku +killen +kiely +kayser +kahle +julius +isley +huertas +hower +hinz +haugh +gumm +given +galicia +fortunato +flake +dunleavy +duggins +doby +digiovanni +devaney +deltoro +cribb +crank +corpuz +coronel +comfort +coen +charbonneau +caine +burchette +blakey +blakemore +bergquist +beene +beaudette +bayles +ballance +bakker +bailes +asberry +arwood +zucker +willman +whitesell +wald +walcott +vancleave +trump +trail +strasser +simas +shorts +shick +schleicher +schaal +saleh +rotz +resnick +raphael +rainer +partee +ollis +oller +oday +noles +munday +mountain +mong +millican +merwin +mazzola +mansell +magallanes +llanes +lewellen +lepore +kisner +keesee +jim +jeanlouis +ingham +hornbeck +hermes +hawn +hartz +harber +haffner +gutshall +guth +grays +grams +gowan +finlay +finkelstein +eyler +enloe +dungan +diez +dearman +dann +cull +crosson +creek +chronister +cassity +campion +callihan +butz +breazeale +blumenthal +billy +berkey +batty +batton +barge +arvizu +alexis +alderete +aldana +albaugh +abernethy +work +wolter +wille +tweed +tollefson +thomasson +teter +testerman +sproul +spates +southwick +soukup +skelly +senter +sealey +sawicki +sargeant +rossiter +rosemond +repp +pound +pink +pifer +ormsby +nickelson +naumann +morabito +monzon +millsaps +millen +mcelrath +marcoux +mantooth +madson +macneil +mackinnon +louque +leister +lampley +kushner +krouse +kirwan +june +jessee +janson +jahn +jacquez +islas +hutt +holladay +hillyer +hepburn +hensel +harrold +guadalupe +gingrich +geis +gales +fults +finnell +ferri +featherston +epley +ebersole +eames +dunigan +drye +dismuke +devaughn +delorenzo +damiano +confer +collum +clower +clow +claussen +clack +caylor +cawthon +casias +carreno +carlo +bluhm +bingaman +bewley +belew +beckner +beamer +barefoot +auld +amey +wolfenbarger +wilkey +wicklund +waltman +villalba +valero +valdovinos +ung +ullrich +tyus +twyman +trost +tardif +tanguay +stripling +steinbach +shumpert +sasaki +sappington +sandusky +reinhold +reinert +quijano +pye +poor +placencia +pinkard +phinney +perrotta +pernell +parrett +oxendine +owensby +orman +nuno +mori +mcroberts +mcneese +mckamey +mccullum +markel +mardis +maines +lueck +lubin +lefler +leffler +lavery +larios +labarbera +kershner +josey +jeanbaptiste +izaguirre +hermosillo +haviland +hartshorn +hamlet +hafner +ginter +getty +franck +fiske +emmett +dufrene +doody +davie +dangerfield +dahlberg +cuthbertson +crone +coffelt +claus +chidester +chesson +cauley +caudell +cantara +campo +caines +bullis +bucci +brochu +bosco +bogard +bickerstaff +benning +arzola +antonelli +adkinson +zellers +wulf +worsley +woolridge +whitton +westerfield +walczak +vassar +truett +trueblood +trawick +townsley +topping +tobar +telford +sung +steverson +stagg +sitton +sill +sherrell +sergent +schoenfeld +sarabia +rutkowski +rubenstein +rigdon +prentiss +pomerleau +plumlee +phoenix +philbrick +peer +patty +patnode +oloughlin +obregon +nuss +napoleon +morell +moose +mikell +mele +mcinerney +mcguigan +mcbrayer +lore +lor +look +lollar +lakes +kuehl +kinzer +kamp +joplin +jacobi +howells +holstein +hedden +hassler +harty +halle +greig +granville +gouge +goodrum +gerhart +geier +geddes +gast +forehand +ferree +fendley +feltner +fang +esqueda +encarnacion +eichler +egger +edmundson +eatmon +dragon +doud +donohoe +donelson +dilorenzo +digiacomo +diggins +delozier +dejong +danford +crippen +coppage +cogswell +clardy +cioffi +cabe +brunette +bresnahan +bramble +blomquist +blackstone +biller +bevis +bevan +bethune +benbow +baty +basinger +balcom +andes +aman +aguero +adkisson +yandell +wilds +whisenhunt +weigand +weeden +voight +villar +trottier +tillett +suazo +setser +scurry +schuh +schreck +schauer +samora +roane +rinker +reimers +reason +ratchford +popovich +parkin +nichol +natal +melville +mcbryde +magdaleno +loehr +lockman +lingo +leduc +larocca +lao +lamere +laclair +krall +korte +koger +jumper +jalbert +hughs +higbee +henton +heaney +haith +gump +greeson +goodloe +gholston +gasper +gagliardi +fregoso +farthing +fabrizio +ensor +elswick +elgin +eklund +eaddy +drouin +dorton +dizon +derouen +delia +deherrera +davy +dark +dampier +cullum +culley +cowgill +cardoso +cardinale +brodsky +broadbent +brimmer +briceno +branscum +bolyard +boley +bennington +beadle +baur +ballentine +azure +aultman +augustus +asuncion +arciniega +aguila +aceves +yepez +yap +woodrum +wethington +weissman +veloz +trusty +troup +trammel +theodore +tarpley +stivers +steck +sprayberry +spraggins +spitler +spiers +sohn +seagraves +schiffman +rudnick +rizo +riccio +rennie +quinton +quackenbush +puma +plott +pearcy +parada +paiz +munford +moskowitz +mease +mcnary +mccusker +matt +lozoya +longmire +loesch +lasky +kuhlmann +krieg +koziol +kowalewski +konrad +kindle +jowers +jolin +jaco +hua +horgan +hine +hileman +hepner +heise +heady +hawkinson +hannigan +haberman +guilford +grimaldi +gilles +garton +gagliano +fruge +follett +fiscus +ferretti +ebner +easterday +eanes +dirks +dimarco +depalma +deforest +dance +cruce +craighead +christner +candler +cadwell +burchell +buettner +brinton +breed +brazier +brannen +brame +bova +bomar +blakeslee +belknap +bangs +balzer +athey +armes +alvis +alverson +alvardo +alter +zhao +yeung +yen +wheelock +westlund +wessels +volkman +threadgill +thelen +tandy +tague +ta +symons +swinford +sturtevant +straka +stier +stagner +segarra +seawright +sack +rutan +roux +ringler +riker +ramsdell +quattlebaum +purifoy +poulson +permenter +peloquin +pasley +pagel +osman +obannon +nygaard +nipper +newcomer +munos +motta +meadors +mcquiston +mcniel +mcmann +mccrae +mayne +matte +martine +lucy +legault +lechner +lack +kucera +krohn +kratzer +koopman +judson +jeske +horrocks +homes +hock +hibbler +hesson +hersh +harvin +halvorsen +griner +grindle +glen +gladstone +garofalo +frampton +forbis +fernando +eddington +diorio +dingus +dewar +desalvo +curcio +creasy +cortese +cordoba +connally +cluff +cascio +capuano +canaday +calabro +bussard +brayton +borja +bigley +arnone +arguelles +acuff +zamarripa +wooton +wolfgang +widner +wideman +threatt +thiele +templin +teeters +synder +swint +swick +sturges +stogner +stedman +spratt +six +siegfried +shetler +scull +savino +sather +rothwell +rook +rone +rolf +rhee +quevedo +privett +pouliot +poche +pickel +petrillo +pellegrini +peaslee +partlow +otey +nunnery +morelock +morello +meunier +messinger +mckie +mccubbin +mccarron +maria +lerch +lavine +laverty +lariviere +lamkin +kugler +krol +kissel +keeter +hummer +hubble +hickox +hetzel +hayner +hagy +hadlock +groh +gregorio +gottschalk +goodsell +gloria +gerry +gassaway +garrard +galligan +fye +firth +fenderson +feinstein +etienne +engleman +emrick +ellender +drews +doiron +degraw +deegan +dart +crissman +corr +cookson +coil +cleaves +charest +chapple +chaparro +castano +carpio +byer +bufford +bridgewater +bridgers +brandes +borrero +bonanno +aube +ancheta +abarca +abad +yung +yim +wooster +woodrow +wimbush +willhite +willams +wigley +weisberg +wardlaw +vigue +vanhook +unknow +torre +tasker +tarbox +strachan +standard +slover +shamblin +semple +schuyler +schrimsher +sayer +salzman +salomon +rubalcava +riles +rickey +reneau +reichel +rayfield +rabon +pyatt +prindle +poss +polito +plemmons +pesce +perrault +pereyra +ostrowski +nilsen +niemeyer +nick +munsey +mundell +moncada +miceli +meader +mcmasters +mckeehan +matsumoto +marron +marden +lizarraga +lingenfelter +lewallen +laurence +langan +lamanna +kovac +kinsler +kephart +keown +kass +kammerer +jeffreys +hysell +householder +hosmer +hardnett +hanner +guyette +greening +glazer +ginder +fromm +fortuna +fluellen +finkle +fey +fessler +essary +eisele +duren +dittmer +crochet +cosentino +cogan +coelho +cavin +carrizales +campuzano +brough +bow +bopp +bookman +bobb +blouin +beesley +battista +bascom +bakken +badgett +arneson +anselmo +albino +ahumada +agustin +woodyard +wolters +wireman +wilton +willison +warman +wan +waldrup +vowell +vantassel +vale +twombly +toomer +tennison +teets +tedeschi +swanner +swallow +stutz +stelly +sheehy +schermerhorn +scala +sandidge +salters +salo +saechao +roseboro +rolle +ressler +renz +renn +redford +raposa +rainbolt +pompey +pelfrey +orndorff +oney +nolin +nimmons +ney +nardone +myhre +morman +mines +menjivar +mcglone +mccammon +maxon +maris +marciano +manus +maiden +lowrance +lorenzen +lonergan +lollis +littles +lindahl +lansing +lamas +lach +kuster +krawczyk +knuth +knecht +kirkendall +keitt +keever +kantor +jarboe +hoye +houchens +holter +holsinger +hickok +herb +helwig +helgeson +heater +hassett +harner +hamman +hames +hadfield +goree +goldfarb +gaughan +gaudreau +gantz +gallion +frady +foti +flesher +ferrin +faught +engram +elbert +donegan +desouza +degroot +cutright +crowl +criner +coke +coan +clinkscales +chewning +chavira +catchings +carlock +bye +bulger +buenrostro +bramblett +brack +boulware +bordeaux +bookout +bitner +birt +baranowski +baisden +augustin +allmon +alberto +acklin +yoakum +wilbourn +whisler +weinberger +washer +vasques +vanzandt +vanatta +troxler +tomes +tindle +tims +throckmorton +thach +stpeter +stlaurent +stenson +spry +spitz +songer +snavely +sly +sleeper +shroyer +shortridge +shenk +sevier +seabrook +scrivner +saltzman +rosenberry +rockwood +robeson +roan +reiser +redwine +ramires +raber +profit +posner +popham +pipes +piotrowski +pinard +peterkin +pelham +peiffer +peay +peavey +nadler +musso +milo +millett +mestas +mcgowen +marques +marasco +manriquez +manos +mair +lipps +lesser +leiker +leeds +krumm +knorr +kinslow +kessel +kendricks +kelm +ito +irick +ickes +hurlburt +horta +hoekstra +heuer +helmuth +heatherly +hampson +hagar +haga +greenlaw +grau +godbey +gingras +gillies +gibb +gayden +gauvin +garrow +fontanez +florio +fleischman +finke +fasano +fan +faith +ezzell +ewers +eveland +eckenrode +duclos +drumm +dimmick +delancey +defazio +deacon +dashiell +damian +cusack +crowther +crigger +cray +coolidge +coldiron +cleland +chalfant +cassel +cape +camire +cabrales +broomfield +brittingham +brisson +brickey +braziel +brazell +bragdon +boulanger +bos +boman +bohannan +beem +barto +barre +barley +baptist +azar +ashbaugh +armistead +almazan +adamski +zendejas +winburn +willaims +wilhoit +westberry +wentzel +wendling +wager +visser +vanscoy +vankirk +vallee +tweedy +thornberry +sweeny +stalker +spradling +spano +smelser +shim +sechrist +schall +scaife +rugg +ruben +rothrock +roesler +riehl +ridings +render +ransdell +radke +pinero +petree +pendergast +peluso +pecoraro +pascoe +panek +oshiro +noon +navarrette +murguia +moores +moberg +mike +michaelis +mcwhirter +mcsweeney +mcquade +mccay +mauk +mariani +marceau +mandeville +maeda +lunde +ludlow +loeb +lindo +linderman +leveille +leith +larock +lambrecht +kulp +kinsley +kimberlin +kesterson +jacinto +ice +hui +hoyos +helfrich +hanke +hail +guillermo +grisby +goyette +gouveia +glazier +gile +gerena +gelinas +gasaway +garden +funches +fujimoto +flynt +fenske +fellers +fehr +eslinger +escalera +enciso +duley +dittman +dineen +diller +devault +dao +collings +clymer +clowers +chavers +charland +castorena +castello +camargo +bunce +bullen +boyes +borchers +borchardt +birnbaum +birdsall +billman +benites +bankhead +ange +ammerman +adkison +yuan +winegar +wickman +wear +warr +warnke +villeneuve +veasey +vassallo +vannatta +vadnais +twilley +truelove +towery +tomblin +tippett +theiss +talkington +talamantes +swart +swanger +streit +straw +stines +stabler +spurling +sobel +sine +simmers +shippy +shiflett +shearin +sauter +sanderlin +rusch +runkle +ruckman +rorie +roesch +roberto +richert +rehm +randel +ragin +quesenberry +puentes +plyler +plotkin +paugh +oshaughnessy +ohalloran +norsworthy +niemann +nader +moorefield +mooneyham +modica +miyamoto +mickel +mebane +mckinnie +mazurek +mancilla +lukas +lovins +loughlin +lotz +lindsley +liddle +levan +lederman +leclaire +lasseter +lapoint +lamoreaux +lafollette +kubiak +kirtley +keffer +kaczmarek +jennette +housman +honey +hiers +hibbert +herrod +hegarty +hathorn +harsh +greenhaw +grafton +govea +gardener +futch +furst +frisbee +fred +franko +forcier +foran +flickinger +fairfield +eure +emrich +embrey +edgington +ecklund +eckard +durante +deyo +delvecchio +deeds +dade +currey +cuff +creswell +cottrill +casavant +cartier +cargile +capel +cammack +calfee +buzzard +burse +burruss +brust +brousseau +bridwell +braaten +borkholder +bloomquist +bjork +bartelt +arp +amburgey +yeary +yao +whitefield +vinyard +vicente +vanvalkenburg +twitchell +timmins +tester +tapper +stringham +starcher +spotts +slaugh +simonsen +sheffer +sequeira +rosati +rode +rhymes +reza +record +quint +pollak +peirce +patillo +parkerson +paiva +nilson +nice +nevin +narcisse +nair +mitton +merriam +merced +meiners +mckain +mcelveen +mcbeth +marsden +marez +manke +mahurin +mabrey +luper +krull +kees +iles +hunsicker +hornbuckle +holtzclaw +hirt +hinnant +heston +hering +hemenway +hegwood +hearns +halterman +halls +guiterrez +grote +granillo +grainger +glasco +gilder +garren +garlock +garey +fu +fryar +fredricks +fraizer +foxx +foshee +ferrel +felty +feathers +everitt +evens +esser +elkin +eberhart +durso +duguay +driskill +doster +dewall +deveau +demps +demaio +delreal +deleo +delay +deem +darrah +cumberbatch +culberson +cranmer +cordle +colgan +chesley +cavallo +castellon +castelli +carreras +carnell +carmon +carmen +carlucci +bottom +bontrager +blumberg +blasingame +becton +ayon +artrip +arline +andujar +alkire +alder +agan +zukowski +zuckerman +zehr +wroblewski +wrigley +woodside +wigginton +westman +westgate +werts +washam +wardlow +walser +waiters +teller +tadlock +stuck +stringfield +stimpson +stickley +starbuck +standish +spurlin +spindler +speller +spaeth +sotomayor +sok +sluder +shryock +shepardson +shatley +scannell +santistevan +rosner +rolland +rhode +resto +reinhard +rathburn +prisco +poulsen +pinney +phares +pennock +pastrana +oviedo +ostler +noto +nauman +mulford +moise +moberly +mirabal +ming +metoyer +metheny +mentzer +meldrum +mcinturff +mcelyea +mcdougle +massaro +lumpkins +loveday +lofgren +loe +lirette +lesperance +lefkowitz +ledger +lauzon +lain +lachapelle +kurz +klassen +keough +kempton +kaelin +jeffords +im +huot +hsieh +hoyer +horwitz +hopp +hoeft +hennig +haskin +grill +gourdine +golightly +girouard +fulgham +fritsch +freer +frasher +foulk +firestone +fiorentino +fedor +feather +ensley +englehart +eells +ebel +dunphy +donahoe +dimas +dileo +dibenedetto +dabrowski +crick +coonrod +conder +coddington +chunn +choy +chaput +cerna +carreiro +calahan +braggs +bourdon +boner +bollman +bittle +ben +behm +bauder +batt +barreras +aubuchon +anzalone +adamo +zhou +zerbe +zachery +witty +wirt +willcox +westberg +weikel +waymire +vroman +vinci +vallejos +tutor +truesdell +troutt +trotta +tollison +toles +tichenor +tai +symonds +surles +sunday +strayer +stgeorge +sroka +sorrentino +solares +snelson +silvestri +sikorski +shawver +schumaker +schorr +schooley +scates +satterlee +satchell +sacks +rymer +roselli +robitaille +riegel +richer +regis +reames +provenzano +proper +priestley +plaisance +pettey +palomares +oman +nowakowski +nace +monette +minyard +mclamb +mchone +mccarroll +masson +marco +magoon +maddy +lundin +loza +licata +lesley +leonhardt +lema +landwehr +kircher +kinch +karpinski +johannsen +hussain +houghtaling +hoskinson +hollaway +holeman +hobgood +hilt +hiebert +gros +gram +goggin +gentle +geissler +gadbois +gabaldon +fleshman +flannigan +files +fairman +epp +eilers +dycus +dunmire +duffield +dowler +ditto +deloatch +dehaan +deemer +corner +clayborn +christofferso +chilson +chesney +chatfield +charlie +caster +carron +canale +camden +buff +brigman +branstetter +bosse +borton +bonar +blau +biron +beagle +barroso +arvin +arispe +zacharias +zabel +yaeger +works +woolford +whetzel +weakley +veatch +vandeusen +tufts +troxel +troche +traver +townsel +tosh +talarico +swilley +sterrett +stenger +springfield +speakman +sowards +sours +souders +souder +soles +sobers +snoddy +smither +sias +shute +shoaf +shahan +schuetz +scaggs +santini +rosson +rolen +robidoux +rentas +recio +pixley +pawlowski +pawlak +paull +pascal +overbey +orear +oliveri +oldenburg +nutting +naugle +mote +mossman +moor +misner +milazzo +michelson +mei +mcentee +mccullar +mccree +mcaleer +mazzone +maxim +marshal +mandell +manahan +malott +maisonet +mailloux +lumley +lowrie +louviere +lipinski +lindemann +leppert +leopold +leasure +leaf +labarge +kubik +knisely +knepp +kenworthy +kennelly +kelch +karg +kanter +ignacio +hyer +houchin +hosley +hosler +hollon +holleman +heitman +hebb +haggins +gwaltney +guin +greenman +goulding +gorden +goodyear +geraci +georges +gathers +frison +feagin +falconer +espada +erving +erikson +eisenhauer +eder +ebeling +durgin +drown +dowdle +dinwiddie +delcastillo +dedrick +crimmins +covell +cournoyer +coria +cohan +cataldo +carpentier +canas +campa +brode +brashears +blaser +bicknell +berk +bednar +barwick +ascencio +althoff +almodovar +alamo +zirkle +zabala +xu +wolverton +winebrenner +wetherell +westlake +wegener +weddington +vong +tuten +trosclair +trim +tressler +theroux +teske +sword +swinehart +swensen +sundquist +southall +socha +sizer +silverberg +shortt +shimizu +sherrard +shen +shaeffer +seth +scheid +scheetz +saravia +sanner +rubinstein +rozell +romer +ringo +rheaume +reisinger +raven +randles +pullum +petrella +payan +papp +pablo +nordin +norcross +nicoletti +nicholes +newbold +nakagawa +mraz +monteith +milstead +milliner +mellen +mccardle +matthias +marcy +luft +loo +locker +liptak +lipp +leitch +latimore +larrison +landau +laborde +koval +izquierdo +hymel +hoskin +holte +hoefer +hayworth +hausman +harrill +harrel +hardt +gully +groover +grinnell +greenspan +graver +grandberry +gorrell +goldenberg +goguen +gilleland +garr +fuson +foye +felt +feldmann +everly +dyess +dyal +dunnigan +downie +dolby +divine +deatherage +dates +danna +cosey +corrado +cheever +celaya +caver +cashion +caplinger +cansler +byrge +bruder +brew +breuer +breslin +brazelton +botkin +bonneau +bones +bondurant +bohanan +bogue +boes +bodner +boatner +blatt +bickley +belliveau +beiler +beier +beckstead +bart +bang +bachmann +atkin +aron +andreas +altizer +alloway +allaire +albro +abron +zellmer +yetter +yelverton +wiltshire +wiens +whidden +wait +viramontes +vanwormer +topper +tarantino +tanksley +sumlin +strauch +strang +stice +spahn +sosebee +sigala +shrout +seamon +schrum +schneck +schantz +said +ruddy +romig +roehl +renninger +reding +pyne +polak +pohlman +pasillas +oldfield +oldaker +ohanlon +ogilvie +norberg +nolette +nies +neufeld +nellis +mummert +mulvihill +mullaney +monteleone +mendonca +meisner +mcmullan +mccluney +mattis +massengill +manfredi +luedtke +lounsbury +lora +liberatore +leek +lease +lazaro +lamphere +laforge +kuo +koo +jourdan +ismail +iorio +iniguez +ikeda +hubler +hodgdon +hocking +heacock +haslam +haralson +hanshaw +hannum +hallam +haden +garnes +garces +gammage +gambino +finkel +faucett +fahy +esteban +ehrhardt +eggen +dusek +durrant +dubay +dones +dey +depasquale +delucia +degraff +deer +decamp +davalos +darwin +dan +cullins +conard +clouser +clontz +cifuentes +chico +chappel +chaffins +celis +carwile +byram +bruggeman +brick +bressler +brathwaite +brasfield +bradburn +boose +boon +bodie +blosser +blas +bise +bertsch +bernardi +bernabe +bengtson +barrette +astorga +armand +antone +alday +albee +abrahamson +yarnell +wiltse +wile +wiebe +waguespack +vasser +upham +tyre +turek +tune +traxler +torain +tomaszewski +tinnin +tiner +tindell +teed +styron +stahlman +staab +spoon +spells +skiba +shih +sheperd +seidl +secor +schutte +sanfilippo +ruder +rondon +reina +rearick +rank +procter +prochaska +pettengill +pauly +neilsen +nally +mutter +mullenax +morano +meads +mcnaughton +mcmurtry +mcmath +mckinsey +matthes +massenburg +marlar +margolis +marcos +malin +magallon +mackin +lovette +loughran +loring +longstreet +loiselle +lenihan +laub +kunze +kull +koepke +knights +kerwin +kalinowski +kagan +innis +innes +husband +holtzman +heinemann +harshman +haider +haack +guss +grondin +grissett +greenawalt +gravel +goudy +goodlett +goldston +gokey +goin +gardea +galaviz +gafford +gabrielson +furlow +fritch +fordyce +folger +elizalde +ehlert +eckhoff +eccleston +ealey +dubin +dolphin +dieter +diemer +deschamps +delapena +decicco +debolt +daum +cullinan +crittendon +crase +cossey +coppock +coots +colyer +columbus +cluck +chamberland +cane +burkhead +bumpus +buchan +borman +bork +boe +birkholz +berardi +benda +behnke +barter +auer +amezquita +wotring +wirtz +wingert +wiesner +whitesides +weyant +wainscott +vivian +venezia +varnell +tussey +trainer +toll +thurlow +tack +tabares +stiver +stell +starke +stanhope +stanek +sisler +sinnott +sidney +siciliano +shehan +selph +seager +scurlock +scranton +santucci +santangelo +saltsman +ruel +ropp +rolling +rogge +rettig +renwick +reidy +reider +redfield +quam +premo +port +pier +peet +parente +paolucci +pan +palmquist +orme +ohler +ogg +netherton +mutchler +morita +mistretta +minnis +middendorf +menzel +mendosa +mendelson +meaux +mcspadden +mcquaid +mcnatt +manigault +maney +mager +lung +lukes +lopresti +liriano +lipton +letson +lechuga +lazenby +lauria +larimore +kwok +kwak +krupp +krupa +krum +kopec +kinchen +kifer +kerney +kerner +kennison +kegley +kays +karcher +justis +johson +jellison +janke +isabell +huskins +holzman +hollie +hinojos +highland +hefley +he +hatmaker +harte +halloway +hallenbeck +goodwyn +glaspie +gillian +geise +fullwood +fryman +frew +frakes +fraire +farrer +enlow +engen +ellzey +eckles +earles +ealy +dunkley +drinkard +dreiling +draeger +dinardo +dills +desroches +desantiago +current +curlee +crumbley +critchlow +coury +courtright +coffield +cleek +christen +charpentier +cardone +caples +cantin +buntin +bugbee +brinkerhoff +brackin +bourland +bohl +bogdan +blassingame +beacham +banning +auguste +andreasen +amann +almon +alejo +adelman +abston +zeno +yerger +wymer +woodberry +windley +whiteaker +westfield +weibel +wanner +waldrep +vital +villani +vanarsdale +utterback +updike +triggs +topete +tolar +tigner +thoms +tauber +tarvin +tally +swiney +sweatman +studebaker +streets +stennett +states +starrett +stannard +stalvey +sonnenberg +smithey +sieber +sickles +shinault +segars +sanger +salmeron +rothe +rizzi +rine +ricard +restrepo +ralls +ragusa +quiroga +ping +phung +pero +pegg +pavlik +papenfuss +oropeza +omar +okane +neer +nee +nathaniel +mudge +mozingo +molinaro +mikel +mcvicker +mcgarvey +mcfalls +mccraney +matus +magers +llanos +livermore +liss +linehan +leto +leitner +laymon +lawing +lawerence +lacourse +kwong +kollar +kneeland +keo +kennett +kellett +kangas +janzen +hutter +huse +huling +hoss +hohn +hofmeister +hewes +hern +harjo +habib +gust +guice +grullon +greggs +grayer +granier +grable +gowdy +giannini +getchell +gartman +garnica +ganey +gallimore +fray +fetters +fergerson +farlow +fagundes +exley +esteves +enders +edenfield +easterwood +drakeford +dipasquale +desousa +deshields +deeter +dedmon +debord +daughtery +cutts +courtemanche +coursey +copple +coomes +collis +coll +cogburn +clopton +choquette +chaidez +castrejon +calhoon +burbach +bulloch +buchman +bruhn +bohon +blough +bien +belmont +baynes +barstow +zeman +zackery +yardley +yamashita +wulff +wilken +wiliams +wickersham +wible +whipkey +wedgeworth +walmsley +walkup +vreeland +verrill +valera +umana +traub +timothy +swingle +swing +summey +stroupe +stockstill +steffey +stefanski +statler +stapp +speights +sons +solari +soderberg +slick +shunk +shorey +shewmaker +sheilds +schiffer +schank +schaff +sagers +rodger +rochon +riser +rickett +reale +raglin +poon +polly +polen +plata +pitcock +percival +palen +pahl +orona +oberle +nocera +navas +nault +mullings +mouser +moos +montejano +monreal +minick +middlebrook +meece +mcmillion +mccullen +mauck +marshburn +maillet +mahaney +magner +maclin +lucey +litteral +lippincott +leite +leis +leaks +laurie +lamarre +kost +jurgens +jesus +jerkins +jager +hurwitz +hughley +hotaling +horstman +hohman +hocker +hively +hipps +hile +hessler +hermanson +hepworth +henn +helland +hedlund +harkless +haigler +gutierez +gum +grindstaff +glantz +giardina +gerken +gadsden +freda +finnerty +feld +farnum +encinas +elton +eager +drakes +dennie +cutlip +curtsinger +couto +cortinas +corby +choice +chiasson +carle +carballo +brindle +borum +bober +blagg +birk +berthiaume +beahm +batres +basnight +barbara +backes +axtell +aust +au +atterberry +alvares +alt +alegria +abe +yow +yip +woodell +wojciechowski +winfree +winbush +wiest +wesner +wax +wamsley +wakeman +verner +truex +trafton +toman +thorsen +thor +theus +tellier +tallant +szeto +strope +stills +stage +sorg +simkins +shuey +shaul +servin +serio +serafin +senior +sebring +salguero +saba +ryerson +rudder +ruark +rother +rohrbaugh +rohrbach +rohan +rogerson +risher +rigg +reeser +pryce +prokop +prins +priebe +prejean +pinheiro +petrone +petri +penson +pearlman +parikh +pal +pair +natoli +murakami +mullikin +mullane +motes +morningstar +monks +mcveigh +mcgrady +mcgaughey +mccurley +masi +marchan +manske +maine +maez +lusby +linde +lile +likens +licon +leroux +lemaire +legette +lax +laskey +laprade +laplant +lady +kolar +kittredge +kinley +kerber +kanagy +johannes +jetton +jayne +january +janik +ippolito +inouye +hunsinger +howley +howery +horrell +hoosier +holthaus +hiner +hilson +hilderbrand +hasan +hartzler +harnish +harada +hansford +halligan +hagedorn +gwynn +gudino +greenstein +greear +gracey +goudeau +gose +goodner +ginsburg +gerth +gerner +fyfe +fujii +frier +frenette +folmar +fleisher +fleischmann +fetzer +fern +eisenman +earhart +dupuy +dunkelberger +drummer +drexler +dillinger +dilbeck +diana +dewald +demby +deford +daniell +dake +craine +como +clever +chesnut +casady +carstens +carrick +carino +carignan +canchola +cale +bushong +burman +buono +brownlow +broach +britten +brickhouse +boyden +boulton +borne +borland +bohrer +blubaugh +bever +berggren +benevides +arocho +arends +amezcua +almendarez +zalewski +witzel +winkfield +wilhoite +vara +vangundy +vanfleet +vanetten +vandergriff +urbanski +tyrell +troiano +tickle +thibodaux +straus +stoneking +stjean +stillings +stiff +stange +square +speicher +speegle +sowa +smeltzer +slawson +simmonds +shuttleworth +serpa +senger +seidman +schweiger +schloss +schimmel +schechter +sayler +sabb +sabatini +ronan +rodiguez +riggleman +richins +reep +reamer +prunty +porath +plunk +piland +philbrook +pettitt +perna +peralez +pascale +padula +oboyle +nivens +nickols +murph +mundt +munden +montijo +mcmanis +mcgrane +mccrimmon +manzi +mangold +malick +mahar +maddock +lust +losey +loop +litten +liner +leff +leedy +leavell +ladue +krahn +kluge +junker +iversen +imler +hurtt +huizar +hubbert +howington +hollomon +holdren +hoisington +hise +heiden +hauge +hartigan +gutirrez +griffie +greenhill +gratton +granata +gottfried +gertz +gautreaux +furry +furey +funderburg +flippen +fitzgibbon +fergus +felice +eye +dyar +drucker +donoghue +dildy +devers +detweiler +despres +denby +degeorge +cueto +cranston +courville +clukey +cirillo +chon +chivers +caudillo +catt +butera +bulluck +buckmaster +braunstein +bracamonte +bourdeau +border +bonnette +bobadilla +boaz +blackledge +beshears +bernhard +bergeson +baver +barthel +balsamo +bak +aziz +awad +authement +altom +altieri +abels +zigler +zhu +younker +yeomans +yearwood +wurster +winget +whitsett +wechsler +weatherwax +wathen +warriner +wanamaker +walraven +viens +vandemark +vancamp +uchida +triana +tinoco +terpstra +tellis +tarin +taranto +takacs +studdard +struthers +strout +stiller +spataro +soderquist +sliger +silberman +shurtleff +sheetz +schillinger +ritch +reif +raybon +ratzlaff +radley +putt +putney +prime +press +pinette +piner +petrin +parise +osbourne +nyman +northington +noblitt +nishimura +nell +neher +nalls +naccarato +mucha +mounce +miron +millis +meaney +mcnichols +mckinnis +mcjunkin +mcduffy +max +marcello +manrique +mannion +mangual +malveaux +mains +lumsden +lucien +lohmann +lipe +lightsey +lemasters +leist +laxton +laverriere +latorre +lamons +kral +kopf +knauer +kitt +kaul +karas +kamps +jusino +janis +islam +hullinger +huges +hornung +hiser +hempel +helsel +hassinger +hargraves +hammes +hallberg +gutman +gumbs +gruver +graddy +gonsales +goncalves +glennon +gilford +geno +freshour +flippo +fifer +few +fermin +fason +farrish +fallin +ewert +estepp +escudero +ensminger +emmanuel +emberton +elms +ellerbe +eide +dysart +dougan +dierking +dicus +detrick +deroche +depue +demartino +delosreyes +dalke +culbreath +crownover +crisler +crass +corsi +chagnon +centers +cavanagh +casson +carollo +cadwallader +burnley +burciaga +burchard +broadhead +boris +booze +bolte +body +berens +bellman +bellard +baril +arden +antonucci +amado +allie +wolfgram +winsor +wimbish +wilbert +wier +wallach +viveros +vento +varley +vanslyke +vangorder +touchstone +tomko +tiemann +throop +tamura +talmadge +swayze +sturdevant +strauser +stolz +stenberg +stayton +spohn +spillers +spillane +sluss +sloane +slavens +simonetti +shofner +shead +senecal +seales +schueler +schley +schacht +sauve +sarno +salsbury +rothschild +rosier +rines +reveles +rein +redus +redfern +reck +ranney +raggs +prout +prill +preble +prager +plemons +pippen +pilon +piccirillo +pewitt +pesina +pecora +otani +orsini +ollie +oestreich +odea +ocallaghan +northup +niehaus +newberg +nasser +narron +monarrez +mishler +mcsherry +mcelfresh +mayon +mauer +mattice +mash +marrone +marmolejo +marini +marie +mara +malm +machen +lunceford +loewen +liverman +litwin +linscott +levins +lenox +legaspi +leeman +leavy +lannon +lamson +lambdin +labarre +knouse +klemm +kleinschmidt +kirklin +keels +juliano +howser +hott +hosier +hosea +hopwood +holyfield +hodnett +hirsh +heimann +height +heckel +harger +hamil +hajek +gurganus +gunning +grange +gonzalas +goggins +gerow +gaydos +garduno +ganley +galey +farner +ester +engles +emond +emert +ellenburg +edick +duell +dublin +dorazio +dong +dimond +diederich +dewalt +depuy +dempster +demaria +dehoyos +dearth +dealba +dane +czech +crose +crespin +cogdill +clinard +cipriano +chretien +chalk +cerny +ceniceros +celestin +caple +cacho +burrill +buhr +buckland +branam +boysen +bovee +boos +boler +blom +blasko +beyers +belz +belmonte +bednarz +beckmann +beaudin +bazile +barbeau +balentine +abrahams +able +zielke +yunker +yeates +wrobel +wike +whisnant +wherry +wagnon +vogan +vansant +vannest +vallo +ullery +towles +towell +tiger +thill +taormina +tannehill +taing +storrs +stickles +stetler +sparling +solt +silcox +sheard +shadle +seman +selleck +schlemmer +scher +sapien +sainz +rumble +roye +rosamond +romain +rizzuto +resch +rentz +rather +rasch +ranieri +purtell +primmer +portwood +pontius +pons +pletcher +pledger +pirkle +pillsbury +pentecost +peng +paxson +ortez +organ +oles +newborn +mullett +muirhead +mouzon +mork +mollett +mohn +mitcham +melillo +mee +medders +mcmiller +mccleery +mccaughey +manders +mak +maciejewski +macaulay +lute +lipman +lewter +larocque +langton +kriner +knipp +killeen +karn +kalish +kaczor +jonson +jerez +jarrard +janda +hymes +hollman +hollandsworth +holl +hobdy +hitch +hennen +hemmer +hagins +haddox +guitierrez +guernsey +gorsuch +gholson +genova +gazaway +gauna +gammons +freels +fonville +fly +florian +fleet +fetterman +fava +farquhar +farish +fabela +escoto +eisen +dossett +dority +dorfman +demmer +dehn +dawley +darbonne +damore +damm +crosley +cron +crompton +crichton +cotner +cordon +conerly +colvard +clauson +chess +cheeseman +charity +cavallaro +castille +cabello +burgan +buffum +bruss +brassfield +bowerman +bothwell +borgen +bonaparte +bombard +boivin +boissonneault +bogner +bodden +boan +blanche +bittinger +bickham +bedolla +bale +bainbridge +aybar +avendano +ashlock +amidon +almanzar +akridge +ackermann +zager +yong +xavier +worrall +winans +wilsey +wightman +westrick +wenner +warne +warford +verville +utecht +upson +tuma +tseng +troncoso +trollinger +torbert +taulbee +sutterfield +stough +storch +stonebraker +stolle +stilson +stiefel +steptoe +stepney +stender +stemple +staggers +spurrier +spray +spinney +spengler +smartt +skoog +silvis +sieg +shuford +selfridge +seguin +sedgwick +sease +scotti +schroer +schlenker +schill +savarese +sapienza +sanson +sandefur +salamone +rusnak +rudisill +royalty +rothermel +roca +resendiz +reliford +rasco +raiford +quisenberry +quijada +pullins +puccio +postell +poppe +pinter +piche +petrucci +pellegrin +pelaez +patti +paton +pasco +parkes +paden +pabst +orchard +olmsted +newlon +mynatt +mustafa +mower +morrone +moree +moffat +mixson +minner +min +millette +mederos +mcgahan +mcconville +maughan +massingill +marano +macri +lovern +lichtenstein +leonetti +lehner +lawley +laramie +lappin +lahti +lago +lacayo +kuester +knee +kincade +junior +juhl +joslyn +jiron +jessop +jerry +jarosz +jain +hults +hoge +hodgins +hoban +hinkson +hillyard +herzig +hervey +henriksen +hawker +hause +hard +hankerson +gregson +golliday +gilcrease +gessner +gerace +garwood +garst +gaillard +flinchum +fishel +fishback +filkins +fentress +fabre +ethier +espana +eisner +ehrhart +efird +drennon +dominy +dominique +domingue +dipaolo +dinan +dimartino +deskins +dengler +defreitas +defranco +dancer +dahlin +cutshaw +cuthbert +croyle +crothers +critchfield +cowie +costner +coppedge +copes +ciccone +champ +cesar +caufield +capo +cambron +cambridge +buser +burnes +buhl +buendia +brindley +brecht +bourgoin +boomer +blackshire +birge +benninger +bembry +beil +begaye +barrentine +barks +banton +balmer +baity +auerbach +ambler +alexandre +ackerson +zurcher +zell +wynkoop +wallick +waid +vos +vizcaino +vester +veale +vandermark +vanderford +tuthill +trivette +thiessen +tewksbury +tao +tabron +swim +swasey +swanigan +stoughton +stoudt +stimson +stecker +stead +stall +spady +souther +smoak +sklar +simcox +sidwell +sharon +seybert +sesco +seeman +seaborn +schwenk +schmeling +rossignol +robillard +robicheaux +riveria +rippeon +ridgley +remaley +rehkop +reddish +reach +rauscher +rachel +quirion +pusey +pruden +pressler +potvin +pospisil +paradiso +pangburn +palmateer +ownby +otwell +osterberg +osmond +olsson +old +oberlander +nusbaum +novack +nokes +nicastro +nehls +nay +naber +mulhern +motter +moretz +milian +mercedes +mckeel +mcclay +mccart +matsuda +mary +martucci +marple +marko +marciniak +manes +mancia +maker +macrae +lybarger +lint +lineberger +levingston +lecroy +lattimer +laseter +kulick +krier +knutsen +klem +kinne +kinkade +ketterman +kerstetter +kersten +karam +jury +joshi +jin +jent +jefcoat +hillier +hillhouse +hettinger +henthorn +henline +helzer +heitzman +heineman +heenan +haughton +haris +harbert +haman +grinstead +gremillion +gorby +giraldo +gioia +gerardi +geraghty +gaunt +gatson +gardin +gans +gammill +games +gain +friedlander +frahm +fossett +fosdick +forth +forbush +fondren +fleckenstein +fitchett +filer +feliz +feist +ewart +evelyn +esters +elsner +edgin +eddie +easterly +dussault +durazo +don +devereaux +deshotel +deckert +dargan +dare +cornman +conkle +condit +commander +claunch +clabaugh +chute +cheesman +chea +charney +charleston +casella +carone +carbonell +canipe +campana +calles +cabezas +cabell +buttram +bustillos +buskirk +boyland +bourke +blakeley +big +berumen +berrier +bench +belli +behrendt +baumbach +bartsch +baney +arambula +alldredge +allbritton +ziemba +zanders +youngquist +yoshioka +yohe +wunder +woodfin +wojtowicz +winkel +wilmore +willbanks +wesolowski +wendland +walko +votaw +vanek +uriarte +urbano +turnipseed +triche +trautman +towler +tokarz +temples +tefft +teegarden +syed +swigart +stryker +stoller +stapler +stansfield +smit +smelley +sicard +shulman +shew +shear +sheahan +sharpton +selvidge +schlesinger +savell +sandford +sabatino +rosenbloom +roepke +rish +rhames +renken +reger +rappaport +quarterman +puig +prasad +poplar +pizano +pigott +pick +phair +petrick +patt +pascua +paramore +papineau +olivieri +ogren +norden +noga +nisbet +munk +munch +mui +morvant +moro +moloney +merz +meng +meltzer +mellinger +mehl +mcnealy +mckernan +mchaney +mccleskey +mcandrews +mayton +mayor +markert +maresca +marcellus +maner +mandujano +malpass +macintyre +lytton +lyall +lummus +longshore +longfellow +lokey +locher +leverette +lepe +lefever +leeson +lederer +lampert +lagrone +la +kreider +korth +knopf +kleist +kiss +keltner +kelling +kaspar +kappler +justin +josephs +jiang +huckins +horace +holub +hofstetter +hoehn +higginson +hennings +heid +havel +hauer +harnden +hargreaves +hanger +guild +guidi +grate +grandy +grandstaff +goza +goodridge +goodfellow +goggans +godley +giusti +gilyard +geoghegan +galyon +gaeta +funes +font +flor +flanary +fales +erlandson +ellett +elia +edinger +dziedzic +duerr +draughn +donoho +dimatteo +devos +dematteo +degnan +darlington +danis +dam +dahlstrom +dahlke +czajkowski +cumbie +culbert +crosier +croley +corry +clinger +cheshire +chalker +cephas +caywood +cavalier +capehart +cales +cadiz +bussiere +burriss +burkart +brundidge +bronstein +breeze +bradt +boydston +bostrom +borel +bolles +blay +blackwelder +bissett +bevers +bester +bernardino +benefiel +belote +beedle +beckles +baysinger +bassler +bartee +barlett +bargas +barefield +baptista +arterburn +armas +apperson +amoroso +amedee +zullo +zellner +yelton +willems +wilkin +wiggin +widman +welk +weingarten +walla +viers +vess +verdi +veazey +vannote +tullos +trudell +trower +trosper +trimm +trew +tousignant +topp +tocco +thoreson +terhune +tatom +suniga +sumter +steeves +stansell +soltis +sloss +slaven +sing +shisler +sheriff +shanley +servantes +selders +segrest +seese +seeber +schaible +savala +sartor +rutt +rumbaugh +ruis +roten +roessler +ritenour +riney +restivo +rene +renard +rakestraw +rake +rachal +quiros +pullin +prudhomme +primeaux +prestridge +presswood +ponte +polzin +poarch +pittenger +piggott +pickell +phaneuf +parvin +parmley +palmeri +paisley +ozment +ormond +ordaz +ono +olea +obanion +oakman +novick +nicklas +nemec +nappi +mund +morfin +mera +melgoza +melby +mcgoldrick +mcelwain +mcchristian +mccaw +marquart +marlatt +markovich +mahr +lupton +lucus +lorusso +lerman +leddy +leaman +leachman +lavalle +laduke +kummer +koury +konopka +koh +koepp +kloss +klock +khalil +kernan +kappel +jakes +inoue +hutsell +howle +honore +hole +hockman +hockaday +hiltz +hetherington +hesser +hershman +heng +heffron +headen +haskett +hartline +harned +guillemette +guglielmo +guercio +greenbaum +goris +glines +gilmour +gardella +gadd +gabler +gabbert +fuselier +freudenburg +fragoso +follis +flemings +feltman +febus +farren +fallis +evert +ekstrom +eastridge +dyck +dufault +dubreuil +dresser +drapeau +domingues +dolezal +dinkel +didonato +devitt +devane +demott +daughtrey +daubert +das +darrell +creason +crary +costilla +chipps +cheatwood +carmean +canton +caffrey +burgher +buker +brunk +brodbeck +brantner +brandy +bolivar +boerner +bodkin +biel +betty +bencomo +bellino +beliveau +beauvais +beaupre +baylis +baskett +barcus +barbera +baltz +asay +arney +arcuri +ankney +agostini +addy +zwilling +zubia +zollinger +zeitz +yard +yanes +winship +winningham +wickline +webre +waddington +vosburgh +vessels +verrett +vedder +varnum +vandeventer +vacca +usry +towry +touchet +tookes +tonkin +timko +tibbitts +thedford +tarleton +talty +talamantez +tafolla +sugg +strecker +stirling +steffan +spiva +slape +siemens +shatzer +seyler +seamans +schmaltz +schipper +sasso +sailor +ruppe +runner +royals +roudebush +ripple +riemer +richarson +revilla +reichenbach +ratley +railsback +quayle +poplin +poorman +ponton +polo +pollitt +poitras +piscitelli +piedra +pickles +pew +perera +people +penwell +pelt +pauline +parkhill +paladino +ore +oram +olmo +oliveras +olivarria +ogorman +near +naron +na +muncie +mowbray +morones +moretti +monn +mitts +minks +minarik +mimms +milliron +millington +millhouse +messersmith +mcnett +mckinstry +mcgeorge +mcdill +mcateer +mazzeo +matchett +mahood +mabery +lundell +louden +losoya +lisk +lezama +leib +lebo +lanoue +lanford +lafortune +kump +krone +kreps +kott +kopecky +kolodziej +knuckles +kinman +kimmons +kelty +kaster +karlson +kania +jules +joyal +job +jenner +jasinski +jandreau +isenhour +hunziker +huhn +houde +houchins +holtman +hodo +heyman +hentges +hedberg +hayne +haycraft +harshbarger +harshaw +harriss +haring +hansell +hanford +handler +hamburg +hamblen +gunnell +groat +gorecki +gochenour +gleeson +genest +geiser +gabriele +fulghum +friese +fridley +freeborn +frailey +flaugher +fiala +ettinger +etheredge +espitia +eriksen +engelbrecht +engebretson +elie +eickhoff +edney +edelen +eberhard +eastin +eakes +driggs +doner +donaghy +disalvo +deshong +dahms +dahlquist +curren +cripe +cree +creager +corle +conatser +commons +coggin +coder +coaxum +closson +clodfelter +classen +chittenden +castilleja +casale +cartee +carriere +canup +canizales +burgoon +bunger +bugarin +buchanon +bruning +bruck +brookes +broadwell +brier +brekke +breese +bracero +bowley +bowersox +bose +bogar +blossom +blauser +blacker +bjorklund +belair +baumer +basler +barb +baltimore +baize +baden +auman +amundsen +amore +alvarenga +adan +adamczyk +yerkes +yerby +yawn +yamaguchi +worthey +wolk +wixom +wiersma +wieczorek +whiddon +weyer +wetherington +wein +watchman +warf +wansley +vesely +velazco +vannorman +valasquez +utz +urso +turco +turbeville +trivett +torrance +toothaker +toohey +tondreau +thaler +sylvain +swindler +swigert +swider +stiner +stever +steffes +stampley +stair +smidt +skeete +silvestre +shy +shutts +shock +shealey +seigler +schweizer +schuldt +schlichting +scherr +saulsberry +saner +rosin +rosato +roling +rohn +rix +rister +remley +remick +recinos +ramm +raabe +pursell +poythress +poli +pokorny +plum +pettry +petrey +petitt +penman +payson +paquet +pappalardo +outland +oscar +orenstein +nuttall +nuckols +nott +nimmo +murtagh +mousseau +moulder +mooneyhan +moak +minch +miera +mercuri +meighan +mcnelly +mcguffin +mccreery +mcclaskey +man +mainor +luongo +lundstrom +loughman +loose +lobo +lobb +linhart +liberty +lever +leu +leiter +lehoux +lehn +lares +lapan +langhorne +lamon +ladwig +ladson +kuzma +kreitzer +knop +keech +kea +kadlec +jo +jhonson +jantz +inglis +husk +hulme +housel +hofman +hillery +heidenreich +heaps +haslett +harting +hartig +hamler +halton +hallum +gutierres +guida +guerrier +grossi +gress +greenhalgh +gravelle +gow +goslin +gonyea +gipe +gerstner +gasser +garceau +gannaway +gama +gallop +gaiser +fullilove +foutz +fossum +flannagan +farrior +faller +ericksen +entrekin +enochs +englund +ellenberger +eastland +earwood +dudash +du +drozd +desoto +delph +dekker +dejohn +degarmo +defeo +defalco +deblois +dacus +cudd +crossen +crooms +cronan +costin +costanza +cordray +comerford +collie +colegrove +coldwell +claassen +chartrand +castiglione +carte +cardella +carberry +capp +capobianco +cangelosi +buch +brunell +brucker +brockett +brizendine +brinegar +brimer +brase +bosque +bonk +bolger +bohanon +bohan +blazek +berning +bergan +bennette +beauchemin +battiste +barra +balogh +avis +avallone +aubry +ashcroft +asencio +arledge +anchondo +amy +alvord +acheson +zaleski +yonker +wyss +wycoff +woodburn +wininger +winders +willmon +wiechmann +westley +weatherholt +warnick +wardle +warburton +volkert +virgin +villanveva +veit +vass +vanallen +tung +toribio +toothman +tiggs +thornsberry +thome +tepper +teeple +tebo +tassone +tann +sultan +stucker +stotler +stoneman +stehle +stanback +stallcup +spurr +speers +spada +solum +smolen +sinn +silvernail +sholes +shives +shain +secrest +seagle +schuette +schoch +schnieders +schild +schiavone +schiavo +scharff +santee +sandell +salvo +rollings +rollin +rivenburg +ritzman +rist +rio +ricardo +reynosa +retana +reiber +regnier +rarick +ransome +rall +propes +prall +poyner +ponds +poitra +plaster +pippins +pinion +piccolo +phu +perillo +penrose +pendergraft +pelchat +peed +patenaude +palko +odoms +oddo +novoa +noone +newburn +negri +nantz +mosser +moshier +molter +molinari +moler +millman +meurer +mendel +mcray +mcnicholas +mcnerney +mckillip +mcilvain +mcadory +matter +master +marmol +marinez +manzer +mankin +makris +majeski +magnus +maffei +luoma +luman +luebke +luby +lomonaco +loar +litchford +lintz +licht +levenson +legge +laughter +lanigan +krom +kreger +koop +kober +klima +kitterman +kinkead +kimbell +kilian +kibbe +kendig +kemmer +kash +jenkin +inniss +hurlbut +hunsucker +hugo +huckabee +hoxie +hoglund +hockensmith +hoadley +hinkel +higuera +herrman +heiner +hausmann +haubrich +hassen +hanlin +hallinan +haglund +hagberg +gullo +gullion +groner +greenwalt +grand +goodwill +gong +gobert +glowacki +glessner +gines +gildersleeve +gildea +gerke +gerhard +gebhard +gatton +gately +galasso +fralick +fouse +fluharty +faucette +fairfax +evanoff +elser +ellard +egerton +edie +ector +ebling +dunkel +duhart +drysdale +dostal +dorey +dolph +doles +dismukes +digregorio +digby +dewees +deramus +denniston +dennett +deloney +delaughter +darcy +cuneo +cumberland +crotts +crosswhite +cremeans +creasey +cottman +cothern +costales +cosner +corpus +cora +constable +colligan +cobble +clutter +chupp +chevez +chatmon +chaires +caplan +caffee +cabana +burrough +burditt +buckler +brunswick +brouillard +broady +bowlby +bouley +borgman +boltz +boddy +blackston +birdsell +bedgood +bate +basil +bartos +barriga +barrie +barna +barcenas +banach +baccus +auclair +ashman +arter +arendt +ansell +allums +allsop +allender +alber +albarran +adelson +zoll +wysong +wimbley +wildes +whitis +whitehill +whicker +weymouth +well +weldy +wark +wareham +waddy +viveiros +vito +vides +vecchio +vath +vandoren +vanderhoof +unrein +uecker +tsan +trepanier +tregre +torkelson +ton +tobler +tineo +timmer +swopes +swofford +sweeten +swarts +summerfield +sumler +stucky +strozier +stigall +stickel +stennis +stelzer +steely +solar +slayden +skillern +shurtz +shelor +shellenbarger +shand +shabazz +seo +scroggs +schwandt +schrecengost +schoenrock +schirmer +sandridge +ruzicka +rozek +rowlands +roser +rosendahl +romanowski +romaine +rolston +rink +riggio +reichman +redondo +reay +rawlinson +raskin +raine +quandt +purpura +purdue +pruneda +prevatte +prettyman +pinedo +pierro +pidgeon +phillippi +pfeil +penix +peasley +paro +overall +ospina +ortegon +ogata +ogara +normandin +nordman +nims +nassar +motz +morlan +mooring +moles +moir +mizrahi +mire +minaya +millwood +mikula +messmer +meikle +mctaggart +mcgonagle +mcewan +mccasland +mccane +mccaffery +mcalexander +mattocks +mattie +matranga +martone +markland +maravilla +manno +manly +mancha +mallery +magno +lorentz +locklin +livingstone +lipford +lininger +line +liao +lepley +leming +lemelin +leadbetter +lawhon +lattin +langworthy +lampman +lambeth +lamarr +lahey +krajewski +klopp +kinnison +kestner +kerry +kennell +karim +jozwiak +jakubowski +jagger +ivery +ishmael +iliff +iddings +hudkins +houseman +holz +holderman +hoehne +highfill +hiett +heskett +heldt +hedman +hayslett +hatchell +hasse +hamon +hamada +hakala +haislip +haffey +hackbarth +guo +gullickson +guerrette +guan +greenblatt +goudreau +gongora +godbout +glaude +gills +gillison +gigliotti +gargano +gallucci +galli +galante +frasure +fodor +fizer +fishburn +finkbeiner +finck +fager +estey +espiritu +eppinger +epperly +emig +eckley +dray +dorsch +dille +devita +deslauriers +demery +delorme +delbosque +dauphin +dantonio +curd +crume +crown +cozad +cossette +comacho +climer +chadbourne +cespedes +cayton +castaldo +carpino +carls +capozzi +canela +cadet +buzard +busick +burlison +brinkmann +bridgeforth +bourbeau +bornstein +boots +bonfiglio +boice +boese +biondi +bilski +betton +berwick +berlanga +behan +becraft +barrientez +banh +balke +balderrama +bahe +bachand +atlas +armer +arceo +aliff +alatorre +zermeno +zane +younce +you +yeoman +yamasaki +wroten +worm +woodby +winer +wilmer +willits +wilcoxon +wehmeyer +waterbury +wass +wann +wake +wachtel +vizcarra +vince +victory +veitch +vanderbilt +vallone +vallery +ureno +tyer +tipps +tiedeman +theberge +texeira +taub +tapscott +stutts +stults +stukes +staff +spink +sottile +smithwick +slane +simeone +silvester +siegrist +shiffer +sheedy +sheaffer +severin +sellman +scotto +schupp +schueller +schreier +schoolcraft +schoenberger +schnabel +sangster +samford +saliba +ryles +ryans +rossetti +rodriguz +risch +riel +rezendes +rester +rencher +recker +rathjen +profitt +poteete +polizzi +perrigo +patridge +osby +orvis +opperman +oppenheim +onorato +olaughlin +ohagan +ogles +oehler +obyrne +nuzzo +nickle +nease +neagle +navarette +nagata +musto +morning +morison +montz +mogensen +mizer +miraglia +mingus +migliore +merideth +menges +mellor +mcnear +mcnab +mcloud +mcelligott +mccollom +maynes +marquette +markowski +marcantonio +mar +maldanado +makin +macey +lundeen +lovin +longino +lisle +linthicum +limones +lesure +lesage +leisure +lauver +laubach +latshaw +lary +lapham +lacoste +lacher +kutcher +knickerbocker +klos +klingler +kleiman +kittleson +kimbrel +kimberly +kemmerer +kelson +keese +kam +kallas +jurgensen +junkins +juneau +juergens +jolliff +jelks +janicki +jang +innocent +ingles +inge +huguley +huggard +howton +hone +holford +holding +hogle +hipple +heimbach +heider +heidel +havener +hattaway +harrah +hanscom +hankinson +hamdan +gridley +goulette +goulart +goodspeed +goodrow +go +girardi +gent +gautreau +ganz +gandara +gamblin +galipeau +fyffe +furrow +fulp +fricks +frase +frandsen +fout +foulks +fouche +foskey +forgey +foor +fobbs +finklea +fincham +figueiredo +festa +ferrier +fellman +eslick +eilerman +eckart +eaglin +dunfee +dumond +drewry +douse +domino +dimick +diener +dickert +deines +degree +declue +daw +dattilo +danko +custodio +cuccia +crunk +crispin +corp +cornwall +corea +coppin +considine +coniglio +conboy +collar +cockrum +clute +clewis +claude +christiano +channell +channel +cerrato +cecere +catoe +castillon +castile +carstarphen +carmouche +caperton +buteau +bury +bumpers +brey +brenton +brazeal +brassard +brass +braga +bradham +bourget +borrelli +borba +boothby +bohr +bohm +boehme +bodin +bloss +blocher +bizzell +bieker +berthelot +bernardini +berends +benard +belser +baze +bartling +barrientes +barras +barcia +banfield +aurand +artman +arnott +arend +ardis +amon +almaguer +allee +albarado +alameda +abdo +zuehlke +zoeller +yokoyama +yocom +wyllie +woolum +wint +winland +wink +wilner +wilmes +whitlatch +westervelt +walthall +walkowiak +walburn +viviano +vanderhoff +valez +ugalde +trumbull +todaro +tilford +tidd +tibbits +terranova +templeman +tannenbaum +talmage +tabarez +swearengin +swartwood +svendsen +strum +strack +storie +stockard +steinbeck +starns +stanko +stankiewicz +stacks +stach +sproles +spenser +smotherman +slusser +sinha +silber +siefert +siddiqui +shuff +sherburne +seldon +seddon +schweigert +schroeter +schmucker +saffold +rutz +rundle +rosinski +rosenow +rogalski +ridout +rhymer +replogle +regina +reda +raygoza +ratner +rascoe +rahm +quincy +quast +pry +pressnell +predmore +pou +porto +pleasants +pigford +pavone +patnaude +parramore +papadopoulos +palmatier +ouzts +oshields +ortis +olmeda +olden +okamoto +norby +nitz +niebuhr +nevius +neiman +neidig +neece +murawski +mroz +moylan +moultry +mosteller +moring +morganti +mook +moffet +mettler +merlo +mengel +mendelsohn +meli +melchior +mcmeans +mcfaddin +mccullers +mccollister +mccloy +mcclaine +maury +maser +martelli +manthey +malkin +maio +magwood +maginnis +mabon +luton +lusher +lucht +lobato +levis +letellier +legendre +laurel +latson +larmon +largo +landreneau +landgraf +lamberson +kurland +kresge +korman +korando +klapper +kitson +kinyon +kincheloe +kawamoto +kawakami +jenney +jeanpierre +ivers +issa +ince +hugh +hug +honda +hollier +hollars +hoerner +hodgkinson +hiott +hibbitts +herlihy +henricks +heavner +hayhurst +harvill +harewood +hanselman +hanning +gwyn +gustavson +grounds +grizzard +grinder +graybeal +gravley +gorney +goll +goehring +godines +gobeil +glickman +giuliano +gimbel +gift +geib +gayhart +gatti +gains +gadberry +frei +fraise +fouch +forst +forsman +folden +fogleman +figaro +fetty +feely +fabry +eury +estill +epling +elamin +echavarria +dutil +duryea +dumais +drago +downard +douthit +doolin +dobos +dison +dinges +diebold +desilets +deshazo +depaz +degennaro +dall +cyphers +cryer +croce +crisman +credle +coriell +copp +coop +compos +colmenero +cogar +cliff +chapel +carnevale +campanella +caley +calderone +burtch +brouwer +brehmer +brassell +brafford +bourquin +bourn +bohnert +blewett +blass +blakes +bhakta +besser +berge +bellis +balfour +avera +austria +applin +ammon +alsop +aleshire +akbar +zoller +zapien +wymore +wyble +wolken +wix +wickstrom +whobrey +whigham +westerlund +welsch +weisser +weisner +weinstock +wehner +watlington +wakeland +wafer +virgen +victorino +veltri +veith +urich +uresti +umberger +twedt +tuohy +tschida +trumble +troia +tristan +trimmer +topps +tonn +tiernan +threet +thrall +thetford +teneyck +tartaglia +swords +strohl +streater +strausbaugh +stradley +stonecipher +steadham +stansel +stalcup +stabile +sprenger +spradley +speier +southwood +sorrels +slezak +skow +sirmans +simental +silk +sifford +sievert +shover +sheley +selzer +scriven +schwindt +schwan +schroth +saylors +saragosa +sant +salaam +saephan +routt +rousey +ros +rolfes +rieke +rieder +richeson +redinger +rasnick +rapoza +rambert +rafael +quist +pyron +punch +pullman +przybylski +pridmore +pooley +pines +perkinson +perine +perham +pecor +peavler +partington +panton +oliverio +olague +ohman +ohearn +noyola +nicolai +nebel +murtha +muff +mowrey +moroney +morgenstern +morant +monty +monsour +mohammad +moffit +mijares +meriwether +mendieta +melendrez +mejorado +mckittrick +mckey +mckenny +mckelvy +mckechnie +mcelvain +mccoin +mazzarella +mazon +maurin +matthies +maston +maske +marzano +marmon +marburger +mangus +mangino +mallet +luo +losada +londono +lobdell +lipson +lesniak +leighty +lei +league +lavallie +lareau +laperle +lape +laforce +laffey +kuehner +kravitz +kowalsky +kohr +kinsman +keppler +kennemer +keiper +keely +kaler +jun +jelinek +jarnagin +issac +isakson +hypes +hutzler +huls +horak +hitz +hice +herrell +henslee +heitz +heiss +heiman +hasting +hartwick +harmer +harland +hammontree +haldeman +hakes +guse +guillotte +guard +groleau +greve +greenough +golub +golson +goldschmidt +golder +godbolt +gilmartin +gies +gibby +geren +genthner +gendreau +gemmill +gaymon +galyean +galeano +friar +folkerts +fleeman +fitzgibbons +ferranti +felan +farrand +eoff +enger +engels +ducksworth +duby +dry +drumheller +douthitt +doris +donis +dixion +dittrich +dials +dessert +descoteaux +depaul +denker +demuth +demelo +delacerda +deforge +danos +dalley +daigneault +cybulski +crystal +cristobal +cothren +corns +corkery +copas +coco +clubb +clore +chitty +chichester +chery +charon +chamber +chace +catanzaro +castonguay +cassella +caroll +carlberg +cammarata +calle +cajigas +byas +buzbee +busey +burling +bufkin +brzezinski +brun +brickner +brabham +boller +bodily +bockman +bleich +blakeman +bisbee +bier +bezanson +bevilacqua +besaw +berrian +berkeley +bequette +beauford +baumgarten +baudoin +batie +basaldua +bardin +bangert +banes +backlund +avitia +artz +archey +apel +amico +alam +aden +zebrowski +yokota +wormley +wootton +woodie +womac +wiltz +wigington +whitehorn +whisman +weisgerber +weigle +weedman +watkin +wasilewski +wadlington +wadkins +viverette +vidaurri +vidales +vezina +vanleer +vanhoy +vanguilder +vanbrunt +uy +updegraff +tylor +trinkle +touchette +tilson +tilman +tengan +tarkington +surrett +super +summy +streetman +straughter +steere +stalling +spruell +spadaro +solley +smathers +silvera +siems +shreffler +sholar +selden +schaper +samayoa +ruggeri +rowen +rosso +rosenbalm +roosevelt +roose +ronquillo +rogowski +rexford +repass +renzi +renick +renda +rehberg +reaper +ranck +raffa +rackers +raap +pugsley +puglisi +prinz +primus +pounders +pon +pompa +plasencia +pipkins +pillar +petrosky +pelley +pauls +pauli +parkison +parisien +pangle +pancoast +palazzolo +owenby +overbay +orris +orlowski +nipp +newbern +nedd +nealon +najar +mysliwiec +myron +myres +musson +murrieta +munsell +mumma +muldowney +moyle +mowen +mose +morejon +moodie +monier +mikkelsen +miers +metzinger +melin +mcquay +mcpeek +mcneeley +mcglothin +mcghie +mcdonell +mccumber +mccranie +mcbean +mayhugh +marts +marenco +manges +lynam +lupien +luff +luebbert +loh +loflin +lococo +loch +lis +linke +lightle +lewellyn +leishman +lebow +lebouef +leanos +lanz +landy +landaverde +lacefield +kyler +kuebler +kropf +kroeker +kluesner +klass +kimberling +kilkenny +kiker +ketter +kelemen +keasler +kawamura +karst +kardos +jeremiah +jared +igo +huseman +huseby +hurlbert +huard +hottinger +hornberger +hopps +holdsworth +hensen +heilig +heeter +harpole +haak +gutowski +gunnels +grimmer +grieve +gravatt +granderson +gotcher +gleaves +genao +garfinkel +frerichs +foushee +flanery +finnie +feldt +fagin +ewalt +ellefson +eiler +eckhart +eastep +dwight +digirolamo +didomenico +devera +delavega +defilippo +debusk +daub +damiani +cupples +cuddy +crofoot +courter +coto +costigan +corning +corman +corlett +cooperman +collison +coghlan +cobbins +coady +coachman +clothier +client +clear +cipolla +chmielewski +chiodo +chatterton +chappelle +chairez +ceron +casperson +casler +casados +carrow +carolina +carlino +carico +cardillo +caouette +canto +canavan +cambra +byard +buterbaugh +buse +bucy +buckwalter +bubb +bryd +brissette +brault +bradwell +boshears +borchert +blansett +blanch +blade +biondo +bilbo +biehl +bessey +berta +belles +bella +beeks +beekman +beaufort +bayliss +bardsley +avilla +astudillo +ardito +anwar +antunez +amen +aderholt +abate +yowell +yin +yearby +ye +wurst +woolverton +woolbright +wildermuth +whittenburg +whitely +wetter +wetherbee +wenz +welliver +welling +welcome +wason +warrior +warlick +voorhies +vivier +villines +vida +verde +veiga +varghese +vanwyk +vanwingerden +vanhorne +umstead +twiggs +tusing +trego +tompson +tinkle +thoman +thole +tatman +tartt +suda +studley +strock +strawbridge +stokely +stec +stang +stalter +speidel +spafford +spade +sontag +sokolowski +skillman +skelley +skalski +sison +sippel +sinquefield +sin +siegle +sher +sharrow +setliff +sera +sellner +selig +seibold +seery +scriber +schull +schrupp +schippers +say +saulsbury +sao +santillo +sanor +sancho +rufus +rubalcaba +roosa +ronk +robbs +roache +river +riebe +reinoso +quin +prude +preuss +pottorff +pontiff +plouffe +picou +picklesimer +pettyjohn +petti +penaloza +parmelee +pardee +palazzo +overholt +ogawa +ofarrell +nova +nolting +noda +nicola +nickson +nevitt +neveu +navarre +nam +murrow +munz +mulloy +monzo +milliman +metivier +merlino +mcpeters +mckissack +mckeen +mcgurk +mcfee +mcfarren +mcelwee +mceachin +mcdonagh +mccarville +mayhall +mattoon +martello +marconi +marbury +mao +manzella +maly +malec +maitland +maheu +maclennan +lyke +luera +loyola +lowenstein +losh +lopiccolo +longacre +loman +loden +loaiza +lieber +libbey +lenhardt +lefebre +lauterbach +lauritsen +lass +larocco +larimer +lansford +lanclos +lamay +lal +kulikowski +kriebel +kosinski +kleinman +kleiner +kleckner +kistner +kissner +kissell +kilroy +kenna +keisler +keeble +keaney +kale +joly +jimison +jeans +ikner +hursey +hruska +hove +hou +host +hosking +hoose +holle +hoeppner +hittle +hitchens +hirth +hinerman +hilario +higby +hertzog +hentz +hensler +heist +heier +hegg +hassel +harpe +hara +hank +hain +hagopian +grimshaw +grado +gowin +gowans +googe +goodlow +goering +gleaton +gidley +giannone +gascon +garneau +gambrel +galaz +fuentez +frisina +fresquez +fraher +fitting +feuerstein +felten +everman +estell +ertel +erazo +ensign +endo +ellerman +eichorn +edgell +ebron +eaker +dundas +duncanson +duchene +ducan +dombroski +doman +dock +dickison +dewoody +deloera +delahoussaye +dejean +degroat +decaro +dearmond +dashner +dales +crossett +cressey +cowger +courts +court +cornette +corbo +coplin +coover +condie +cokley +cicero +ceaser +cannaday +callanan +cadle +buscher +bullion +bucklin +bruening +bruckner +brose +branan +bradway +botsford +bortz +borelli +bonetti +bolan +boerger +bloomberg +bingman +bilger +berns +beringer +beres +beets +beede +beaudet +beachum +baughn +bator +bastien +basquez +barreiro +barga +baratta +balser +baillie +axford +attebery +arakaki +annunziata +andrzejewski +ament +amendola +adcox +abril +zenon +zeitler +zang +zambrana +ybanez +yagi +wolak +wilcoxson +whitesel +whitehair +weyand +westendorf +welke +weinmann +wei +weesner +weekes +wedel +wedding +weatherall +warthen +vose +villalta +vila +viator +vaz +valtierra +urbanek +tulley +trojanowski +trapani +toups +torpey +tomita +tindal +tieman +tevis +tedrow +taul +tash +tammaro +sylva +swiderski +sweeting +sund +stutler +stocking +stich +sterns +stegner +stalder +splawn +speirs +southwell +soltys +smead +slye +skipworth +sipos +simmerman +sigmund +sidhu +shuffler +shingleton +shadwick +sermons +seefeldt +scipio +schwanke +schreffler +schiro +scheiber +sandoz +samsel +ruddell +royse +rouillard +rotella +rosalez +romriell +rommel +rizer +riner +rickards +rhoton +rhem +reppert +rayl +raulston +raposo +rapier +rainville +radel +quinney +purdie +puffer +pizzo +pincus +petrus +pendelton +pendarvis +peltz +peguero +peete +patricio +patchett +parrino +papke +pam +palafox +ottley +ostby +oritz +oren +ogan +odegaard +oatman +noell +nida +nicoll +newhall +newbill +netzer +nettleton +neblett +murley +mungo +mulhall +mosca +morissette +morford +montag +monsen +mitzel +miskell +minder +mehaffey +mcquillen +mclennan +mcgrail +mccreight +mayville +maysonet +maust +mathieson +mastrangelo +maskell +martina +manz +malmberg +makela +madruga +luz +lotts +longnecker +logston +littell +liska +lindauer +lillibridge +levron +letchworth +lesh +leffel +leday +leamon +laura +kulas +kula +kucharski +kromer +kraatz +konieczny +konen +komar +kivett +kirts +kinnear +kersh +keithley +keifer +judah +jimenes +jeppesen +jasmin +jansson +huntsberry +hund +huitt +huffine +hosford +hopes +holmstrom +hollen +hodgin +hirschman +hiltner +hilliker +hibner +hennis +helt +heidelberg +heger +heer +hartness +hardrick +halladay +gula +guillaume +guerriero +grunewald +grosse +griffeth +grenz +grassi +grandison +ginther +gimenez +gillingham +gillham +gess +gelman +gearheart +gaskell +gariepy +gamino +gallien +galentine +fuquay +froman +froelich +friedel +foos +fomby +focht +flythe +fiqueroa +filson +filip +fierros +fett +fedele +fasching +farney +fargo +everts +even +etzel +elzey +eichner +eger +eatman +ducker +duchesne +donati +domenech +dollard +dodrill +dinapoli +denn +delfino +delcid +delaune +delatte +deems +daluz +cusson +cullison +cue +cuadrado +crumrine +cruickshank +crosland +croll +criddle +crepeau +coutu +couey +cort +coppinger +collman +cockburn +coca +clayborne +claflin +cissell +chowdhury +chicoine +chenier +causby +caulder +cassano +casner +cardiel +burner +brunton +bruch +broxton +brosius +brooking +branco +bracco +bourgault +bosserman +books +bonet +bolds +bolander +bohman +boelter +blohm +blea +blaise +bischof +billie +beus +bellew +bastarache +bast +bartolome +bark +barcomb +barco +balls +balk +balas +bakos +avey +atnip +ashbrook +arno +arbour +aquirre +appell +aldaco +alcazar +alban +ahlstrom +abadie +zylstra +zick +zheng +yother +wyse +wunsch +whitty +weist +vrooman +vine +villalon +vidrio +vavra +vasbinder +vanmatre +vandorn +ugarte +turberville +tuel +trogdon +town +toupin +toone +tolleson +tinkham +tinch +tiano +teston +teer +tea +tawney +taplin +tant +tansey +swayne +sutcliffe +sunderman +suits +strothers +stromain +stork +stoneburner +stolte +stolp +stoehr +stingley +stegman +stangl +spinella +spier +soules +sommerfield +sipp +simek +siders +shufelt +shue +shor +shires +shellenberger +sheely +service +sepe +seaberg +schwing +scherrer +scalzo +saver +sasse +sarvis +santora +sansbury +salls +saleem +ryland +rybicki +ruggieri +rothenberg +rosenstein +roquemore +rollison +rodden +rivet +rita +ridlon +riche +riccardi +reiley +regner +rech +rayo +rawley +ranger +raff +radabaugh +quon +quill +privette +prange +pickrell +perino +penning +pankratz +orlandi +nyquist +norrell +noren +naples +nale +nakashima +musselwhite +murrin +murch +mullinix +mullican +mullan +morneau +mondor +molinar +mo +minjares +minix +mingle +minchew +mill +milewski +mikkelson +mifflin +messing +merkley +meis +meas +mcroy +mcphearson +mcneel +mcmunn +mcmorrow +mcdorman +mccroskey +mccoll +mcclusky +mcclaran +mccampbell +mazzariello +mauzy +mauch +mastro +martinek +marsala +marcantel +mahle +lyda +lucius +luciani +lubbers +louder +lobel +linsey +linch +liller +legros +layden +lapine +lansberry +lage +laforest +labriola +koga +knupp +klimek +kittinger +kirchoff +kinzel +killinger +kilbourne +ketner +kepley +kemble +kells +kear +kaya +karsten +kaneshiro +kamm +joines +joachim +janelle +jacobus +iler +holgate +hoar +hisey +hird +hilyard +heslin +herzberg +hennigan +hegland +hartl +haner +handel +gualtieri +greenly +grasser +gran +goetsch +godbold +gilland +gidney +gibney +giancola +gettinger +garzon +garret +galle +galgano +gaier +gaertner +fuston +freel +fortes +flock +fiorillo +figgs +fenstermacher +fedler +facer +fabiano +evins +eusebio +euler +esquer +enyeart +elem +eisenhower +eich +edgerly +durocher +durgan +duffin +drolet +drewes +dotts +dossantos +dolly +dockins +dirksen +difiore +dierks +dickerman +dice +dery +denault +demaree +delmonte +delcambre +days +daulton +darst +dahle +curnutt +cully +culligan +cueva +crosslin +croskey +cromartie +crofts +covin +coutee +countess +cost +coppa +coogan +condrey +concannon +coger +cloer +clatterbuck +cieslak +chumbley +choudhury +chiaramonte +charboneau +chai +carneal +cappello +campisi +callicoat +burgoyne +bucholz +brumback +brosnan +brogden +broder +brendle +breece +bown +bou +boser +bondy +bolster +boll +bluford +blandon +biscoe +bevill +bence +battin +basel +bartram +barnaby +barmore +balbuena +badgley +backstrom +auyeung +ater +arrellano +arant +ansari +alling +alejandre +alcock +alaimo +aguinaldo +aarons +zurita +zeiger +zawacki +yutzy +yarger +wygant +wurm +wuest +wolfram +witherell +wisneski +whitby +whelchel +weisz +weisinger +weishaar +wehr +wedge +waxman +waldschmidt +walck +waggener +vosburg +vita +villela +vercher +venters +vanscyoc +vandyne +valenza +utt +urick +ungar +ulm +tumlin +tsao +tryon +trudel +treiber +tow +tober +tipler +tillson +tiedemann +thornley +tetrault +temme +tarrance +tackitt +sykora +sweetman +swatzell +sutliff +suhr +sturtz +strub +strayhorn +stormer +steveson +stengel +steinfeldt +spiro +spieker +speth +spero +soza +souliere +soucie +snedeker +slifer +skillings +situ +siniard +simeon +signorelli +siggers +shultis +shrewsbury +shippee +shimp +sherron +shepler +sharpless +shadrick +severt +severs +semon +semmes +seiter +segers +sclafani +sciortino +schroyer +schrack +schoenberg +schober +scheidt +scheele +satter +sartori +sarris +sarratt +salvaggio +saladino +sakamoto +saine +ryman +rumley +ruggerio +rucks +roughton +room +robards +ricca +rexroad +resler +reny +rentschler +redrick +redick +reagle +raymo +rape +raker +racette +pyburn +pritt +presson +pressman +pough +plain +pisani +perz +perras +pelzer +pedrosa +palos +palmisano +paille +orem +orbison +oliveros +nourse +nordquist +newbury +nelligan +nawrocki +myler +mumaw +morphis +moldenhauer +miyashiro +mignone +mickelsen +michalec +mesta +mcree +mcqueary +mcninch +mcneilly +mclelland +mclawhorn +mcgreevy +mcconkey +mattes +maselli +marten +mart +marcucci +manseau +manjarrez +malbrough +machin +mabie +lynde +lykes +lueras +lokken +loken +linzy +lillis +lilienthal +levey +legler +leedom +lebowitz +lazzaro +larabee +lapinski +langner +langenfeld +lampkins +lamotte +lambright +lagarde +ladouceur +labrador +labounty +lablanc +laberge +kyte +kroon +kron +kraker +kouba +kirwin +kincer +kimbler +kegler +keach +katzman +katzer +kalman +journey +jimmerson +jenning +janus +iacovelli +hust +huson +husby +humphery +hufnagel +honig +holsey +holoman +hohl +hogge +hinderliter +hildebrant +hick +hey +hemby +helle +heintzelman +heidrick +hearon +heap +hazelip +hauk +hasbrouck +harton +hartin +harpster +hansley +hanchett +haar +guthridge +gulbranson +guill +guerrera +grund +grosvenor +grist +grell +grear +granberry +gonser +giunta +giuliani +gillon +gillmore +gillan +gibbon +gettys +gelb +gano +galliher +fullen +frese +frates +foxwell +fleishman +fleener +fielden +ferrera +feng +fells +feemster +fauntleroy +fails +evatt +espy +eno +emmerich +edwin +edler +eastham +dunavant +duca +drinnon +dowe +dorgan +dollinger +divers +dipalma +difranco +dietrick +denzer +demarest +delee +delariva +delany +decesare +debellis +deavers +deardorff +dawe +darosa +darley +dalzell +dahlen +curto +cupps +cunniff +cude +crivello +cripps +cresswell +cousar +cotta +compo +colorado +clyne +clayson +cearley +catania +carini +cargo +cantero +cali +buttrey +buttler +burpee +bulkley +buitron +buda +bublitz +bryer +bryden +brouillette +brott +brookman +bronk +breshears +brennen +brannum +brandl +braman +bracewell +boyter +bomberger +bold +bogen +boeding +bob +blauvelt +blandford +bigger +biermann +bielecki +bibby +berthold +berkman +belvin +bellomy +beland +behne +beecham +becher +beams +bax +bassham +barret +baley +bacchus +auxier +atkison +ary +arocha +arechiga +anspach +an +algarin +alcott +alberty +ager +adolph +ackman +abdul +abdallah +zwick +ziemer +zastrow +zajicek +yokum +yokley +wittrock +winebarger +wilker +wilham +whitham +wetzler +westling +westbury +wendler +wellborn +weitzman +weitz +weight +wallner +waldroup +vrabel +vowels +volker +vitiello +visconti +villicana +vibbert +vesey +vannatter +vangilder +vandervort +vandegrift +vanalstyne +vallecillo +usrey +tynan +turpen +tuller +trisler +townson +tillmon +threlkeld +thornell +terrio +taunton +tarry +tardy +swoboda +swihart +sustaita +suitt +stuber +strine +stookey +stmartin +stiger +stainbrook +solem +smail +sligh +siple +sieben +shumake +shriner +showman +shiner +sheen +sheckler +seim +secrist +scoggin +schultheis +schmalz +schendel +schacher +savard +saulter +santillanes +sandiford +sande +salzer +salvato +saltz +sakai +ryckman +ryant +ruck +ronald +rocker +rittenberry +ristau +risk +richart +rhynes +reyer +reulet +reser +redington +reddington +rebello +reasor +raftery +rabago +raasch +quintanar +pylant +purington +provencal +prom +prioleau +prestwood +pothier +popa +polster +politte +poffenberger +pinner +pietrzak +pettie +penaflor +pellot +pellham +paylor +payeur +papas +paik +oyola +osbourn +orzechowski +oppenheimer +olesen +oja +ohl +nuckolls +nordberg +noonkester +nold +nitta +niblett +neuhaus +nesler +ned +nanney +myrie +mutch +motto +mosquera +morena +montalto +montagna +mizelle +mincy +millikan +millay +miler +milbourn +mikels +migues +miesner +mershon +merrow +merlin +melia +meigs +mealey +mcraney +mcmartin +mclachlan +mcgeehan +mcferren +mcdole +mccaulley +mcanulty +maziarz +maul +mateer +martinsen +marson +mariotti +manna +mang +mance +malbon +mah +magnusson +maclachlan +macek +lurie +luc +lown +loranger +lonon +lisenby +linsley +linger +lenk +leavens +learned +lauritzen +lathem +lashbrook +landman +lamarche +lamantia +laguerre +lagrange +kogan +klingbeil +kist +kimpel +kime +kier +kerfoot +kennamer +kellems +kammer +kamen +jess +jepsen +jarnigan +isler +ishee +isabel +hux +hungate +hummell +hultgren +huffaker +hruby +hover +hornick +hooser +hooley +hoggan +hirano +hilley +higham +heuser +henrickson +henegar +hellwig +heide +hedley +hasegawa +hartt +hambright +halfacre +hafley +guion +guinan +grunwald +grothe +gries +greaney +granda +grabill +gothard +gossman +gosser +gossard +gosha +goldner +gobin +gloss +ginyard +gilkes +gilden +gerson +gephart +gengler +gautier +gassett +garon +gandhi +galusha +gallager +galdamez +fulmore +fritsche +fowles +foutch +forward +footman +fludd +flakes +ferriera +ferrero +ferreri +fenimore +fegley +fegan +fearn +farrier +fansler +fane +falzone +fairweather +etherton +elsberry +dykema +duppstadt +dunnam +dunklin +duet +due +dudgeon +dubuc +doxey +dory +donmoyer +dodgen +disanto +dingler +dimattia +dilday +digennaro +diedrich +derossett +deputy +depp +demasi +degraffenreid +deakins +deady +davin +daigre +daddario +czerwinski +cullens +cubbage +cracraft +constance +comes +combest +coletti +coghill +clerk +claybrooks +class +christofferse +chiesa +chason +chamorro +cessna +celentano +cayer +carolan +carnegie +capetillo +callier +cadogan +caba +byrom +byrns +burrowes +burket +burdge +burbage +bukowski +buchholtz +brunt +brungardt +brunetti +brumbelow +brugger +broadhurst +brigance +brandow +bouknight +bottorff +bottomley +bosarge +borger +bona +bombardier +bologna +boggan +blumer +blecha +birney +birkland +betances +beran +benny +benes +belin +belgrave +bealer +bauch +bath +bashir +bartow +baro +barnhouse +barile +ballweg +baisley +bains +baehr +badilla +bachus +bacher +bachelder +auzenne +aten +astle +allis +agarwal +adger +adamek +ziolkowski +zinke +zazueta +zamorano +younkin +won +wittig +witman +winsett +winkles +wiedman +whitner +whitcher +wetherby +westra +westhoff +wehrle +wee +wagaman +voris +vicknair +vegas +veasley +vaugh +vanish +vanderburg +valletta +tunney +trumbo +truluck +trueman +truby +trombly +trojan +tourville +tostado +tone +titcomb +timpson +tignor +thrush +thresher +thiede +tews +tamplin +taff +tacker +syverson +sylvestre +summerall +stumbaugh +strouth +straker +stradford +stoney +stokley +steinhoff +steinberger +stairs +spigner +soltero +snively +sletten +sinkler +sinegal +simoes +siller +sigel +shoe +shire +shinkle +shellman +sheller +sheats +sharer +selvage +sedlak +sea +schriver +schimke +scheuerman +schanz +savory +saulters +sauers +sais +rusin +rumfelt +ruhland +rozar +rosborough +ronning +rolph +roloff +rogue +robie +riviera +rimer +riehle +ricco +rhein +retzlaff +reisman +reimann +re +rayes +raub +raminez +quesinberry +pua +procopio +priolo +printz +prewett +preas +prahl +portugal +poovey +ploof +platz +plaisted +pinzon +pineiro +pickney +petrovich +perl +pehrson +peets +pavon +pautz +pascarella +paras +paolini +pals +pafford +oyer +ovellette +outten +outen +ours +orduna +odriscoll +oberlin +nosal +niven +nisbett +nevers +nathanson +mule +mukai +mozee +mowers +motyka +morency +montford +mollica +molden +mitten +miser +mina +millender +midgette +messerly +melendy +meisel +meidinger +meany +mcnitt +mcnemar +mcmakin +mcgaugh +mccaa +mauriello +maudlin +matzke +mattia +matteo +matsumura +masuda +mangels +maloof +malizia +mahmoud +maglione +maddix +lucchesi +lochner +linquist +lino +lietz +leventhal +leopard +lemanski +leiser +laury +lauber +lamberth +kuss +kung +kulik +kuiper +krout +kotter +kort +kohlmeier +koffler +koeller +knipe +knauss +kleiber +kissee +kirst +kirch +kilgo +kerlin +kellison +kehl +kalb +jorden +jantzen +jamar +inabinet +ikard +husman +hunsberger +hundt +hucks +houtz +houseknecht +hoots +hogsett +hogans +hintze +hession +henault +hemming +helsley +heinen +heffington +heberling +heasley +heal +hazley +hazeltine +hayton +hayse +hawke +haston +harward +harvard +harrow +hanneman +hafford +hadnot +guerro +graig +grahm +gowins +gordillo +goosby +glatt +gibbens +ghent +gerrard +germann +geil +gebo +gean +garling +gardenhire +garbutt +gagner +furguson +funchess +fujiwara +fujita +friley +frigo +forshee +folkes +filler +fernald +ferber +feingold +favorite +faul +farrelly +fairbank +failla +estelle +espey +eshleman +ertl +erhart +erhardt +erbe +elsea +ells +ellman +eisenhart +ehmann +earnhardt +duplantis +dulac +ducote +draves +dosch +dolce +divito +ditch +dimauro +derringer +demeo +demartini +delima +dehner +degen +defrancisco +defoor +dedeaux +debnam +cypert +cutrer +cusumano +custis +croker +courtois +costantino +cormack +corbeil +copher +conlan +conkling +cogdell +cilley +chapdelaine +cendejas +castiglia +cassette +cashin +carstensen +carol +caprio +calcote +calaway +byfield +butner +bushway +burritt +browner +brobst +briner +brighton +bridger +brickley +brendel +bratten +bratt +brainerd +brackman +bowne +bouck +borunda +bordner +bonenfant +boer +boehmer +bodiford +bleau +blankinship +blane +blaha +bitting +bissonette +bigby +bibeau +beverage +bermudes +berke +bergevin +bergerson +bendel +belville +bechard +bearce +beadles +batz +bartlow +barren +ayoub +avans +aumiller +arviso +arpin +arnwine +armwood +arent +arehart +arcand +antle +ambrosino +alongi +alm +allshouse +ahart +aguon +ziebarth +zeledon +zakrzewski +yuhas +yingst +yedinak +wommack +winnett +wingler +wilcoxen +whitmarsh +whistler +wayt +watley +wasser +warkentin +voll +vogelsang +voegele +vivanco +vinton +villafane +viles +versace +ver +venne +vanwagoner +vanwagenen +vanleuven +vanauken +uselton +uren +trumbauer +tritt +treadaway +tozier +tope +tomczak +tomberlin +tomasini +tollett +toller +titsworth +tirrell +tilly +tavera +tarnowski +tanouye +tall +swarthout +sutera +surette +styers +styer +stipe +stickland +steve +stembridge +stearn +starkes +stanberry +stahr +spino +spicher +sperber +speece +soo +sonntag +sneller +smalling +slowik +slocumb +sliva +slemp +slama +sitz +sisto +sisemore +sindelar +shipton +shillings +sheeley +sharber +shaddix +severns +severino +sever +sensabaugh +seder +seawell +seamons +schrantz +schooler +scheffer +scheerer +scalia +saum +santibanez +sano +sanjuan +sampley +sailer +sabella +sabbagh +royall +rottman +rivenbark +rikard +ricketson +rickel +rethman +reily +reddin +reasoner +reade +rast +ranallo +rana +quintal +pung +pucci +proto +prosperie +prim +preusser +preslar +powley +postma +pinnix +pilla +pietsch +pickerel +pica +pharris +petway +petillo +perin +pereda +pennypacker +pennebaker +pedrick +patin +patchell +parodi +parman +pantano +padua +padro +osterhout +orner +opp +olivar +ohlson +odonoghue +oceguera +oberry +novello +noguera +newquist +newcombe +neihoff +nehring +nees +nebeker +nau +mundo +mullenix +morrisey +moronta +morillo +morefield +mongillo +molino +minto +midgley +michie +menzies +medved +mechling +mealy +mcshan +mcquaig +mcnees +mcglade +mcgarity +mcgahey +mcduff +mayweather +mastropietro +masten +maranto +maniscalco +maize +mahmood +maddocks +maday +macha +maag +luken +lopp +lolley +llanas +litz +litherland +lindenberg +lieu +letcher +lentini +lemelle +leet +lecuyer +leber +laursen +latch +larrick +lantigua +langlinais +lalli +lafever +labat +labadie +kurt +krogman +kohut +knarr +klimas +klar +kittelson +kirschbaum +kintzel +kincannon +kimmell +killgore +kettner +kelsch +karle +kapoor +johansson +jock +jenkinson +janney +isabelle +iraheta +insley +hyslop +hy +human +huckstep +holleran +hoerr +hinze +hinnenkamp +hilger +higgin +hicklin +heroux +henkle +helfer +heikkinen +heckstall +heckler +heavener +haydel +haveman +haubert +harrop +harnois +hansard +hanover +hammitt +haliburton +haefner +hadsell +haakenson +guynn +guizar +grout +grosz +goo +gomer +golla +godby +glanz +glancy +givan +giesen +gerst +gayman +garraway +gabor +furness +frisk +fremont +frary +forand +fessenden +ferrigno +fearon +favreau +faulks +falbo +ewen +everton +eurich +etchison +esterly +entwistle +ellingsworth +elders +ek +eisenbarth +edelson +eckel +earnshaw +dunneback +doyal +donnellan +dolin +dibiase +deschenes +dermody +denmark +degregorio +darnall +dant +dansereau +danaher +dammann +dames +czarnecki +cuyler +custard +cummingham +cuffie +cuffee +cudney +cuadra +crigler +creger +coughlan +corvin +cortright +corchado +connery +conforti +condron +colosimo +colclough +cola +cohee +claire +ciotti +chill +chien +check +chacko +cevallos +cavitt +cavins +castagna +cashwell +carrozza +carrara +capra +campas +callas +caison +cai +caggiano +cabot +bynoe +buswell +burpo +burnam +burges +buerger +buelow +bueche +buckle +bruni +brummitt +brodersen +briese +breit +brakebill +braatz +boyers +boughner +borror +borquez +bonelli +bohner +blaze +blaker +blackmer +bissette +bibbins +bhatt +bhatia +bessler +bergh +beresford +bensen +benningfield +benito +bellantoni +behler +beehler +beazley +beauchesne +bargo +bannerman +baltes +balog +ballantyne +bad +axelson +apgar +aoki +anstett +alejos +alcocer +albury +aichele +ahl +ackles +zerangue +zehner +zank +zacarias +youngberg +yorke +yarbro +xie +wydra +worthley +wolbert +wittmer +witherington +wishart +wire +winnie +winkleman +willilams +willer +wiedeman +whittingham +whitbeck +whetsel +wheless +westerberg +welcher +wegman +waterfield +wasinger +warfel +wannamaker +walborn +wada +vogl +vizcarrondo +vitela +villeda +veras +venuti +veney +ulrey +uhlig +turcios +tremper +torian +torbett +thrailkill +terrones +teitelbaum +teems +tay +swoope +sunseri +stutes +stthomas +strohm +stroble +striegel +streicher +stodola +stinchcomb +steves +steppe +stem +steller +staudt +starner +stamant +stam +stackpole +sprankle +speciale +spahr +sowders +sova +soluri +soderlund +slinkard +skates +sjogren +sirianni +siewert +sickels +sica +shugart +shoults +shive +shimer +shier +shield +shepley +sheeran +sharper +sevin +severe +seto +segundo +sedlacek +scuderi +schurman +schuelke +scholten +schlater +schisler +schiefelbein +schalk +sanon +sae +sabala +ruyle +ruybal +ruf +rueb +rowsey +rosol +rocheleau +rishel +rippey +ringgold +rieves +ridinger +rew +retherford +rempe +reith +rafter +raffaele +quinto +putz +purdom +puls +pulaski +propp +principato +preiss +prada +polansky +poch +plath +pittard +pinnock +pfarr +pfannenstiel +penniman +pauling +patchen +paschke +parkey +pando +overly +ouimet +ottman +otter +ostlund +ormiston +occhipinti +nowacki +norred +noack +nishida +nilles +nicodemus +neth +nealey +myricks +murff +mungia +mullet +motsinger +moscato +mort +morado +moors +monnier +molyneux +modzelewski +miura +minich +militello +milbrandt +michalik +meserve +merle +mendivil +melara +meadow +mcnish +mcelhannon +mccroy +mccrady +mazzella +maule +mattera +mathena +matas +mass +mascorro +marone +marinello +marguez +marcell +manwaring +manhart +mangano +maggi +lymon +luter +luse +lukasik +luiz +ludlum +luczak +lowenthal +lossett +lorentzen +loredo +longworth +lomanto +lisi +lish +lipsky +linck +liedtke +levering +lessman +lemond +lembo +ledonne +leatham +laufer +lanphear +langlais +lando +lamphear +lamberton +lafon +lade +lacross +kyzer +krok +kring +krell +krehbiel +kratochvil +krach +kovar +kostka +knudtson +knaack +kliebert +klahn +kirkley +kimzey +kettle +kerrick +kennerson +keesler +karlin +kan +jenny +janousek +jan +imel +icenhour +hyler +hunger +hudock +houpt +hopping +hoops +holquin +holiman +holahan +hodapp +hires +hillen +hickmon +hersom +henrich +helvey +heidt +heideman +hedstrom +hedin +hebron +hayter +harn +hardage +harbor +halsted +hahne +hagemann +guzik +guel +groesbeck +gritton +grego +graziani +grasty +graney +gouin +gossage +golston +goheen +godina +glade +giorgi +giambrone +gerrity +gerrish +gero +gerling +gaulke +garlick +galiano +gaiter +gahagan +gagnier +friddle +fredericksen +franqui +follansbee +foerster +flury +fitzmaurice +fiorini +finlayson +fiecke +fickes +fichter +ferron +ferdinand +farrel +fackler +eyman +escarcega +errico +erler +erby +engman +engelmann +elsass +elliston +eddleman +eadie +dummer +drost +dorrough +dorrance +doolan +donalson +domenico +ditullio +dittmar +dishon +dionisio +dike +devinney +desir +deschamp +derrickson +delamora +deitch +dechant +dave +danek +dahmen +curci +cudjoe +crumble +croxton +creasman +craney +crader +cowling +coulston +cortina +corlew +corl +copland +convery +cohrs +clune +clausing +cipriani +cinnamon +cianciolo +chubb +chittum +chenard +charlesworth +charlebois +champine +chamlee +chagoya +casselman +cardello +capasso +cannella +calderwood +byford +buttars +bushee +burrage +buentello +brzozowski +bryner +brumit +brookover +bronner +bromberg +brixey +brinn +briganti +bremner +brawn +branscome +brannigan +bradsher +bozek +boulay +bormann +bongiorno +bollin +bohler +bogert +bodenhamer +blose +blind +bivona +bitter +billips +bibler +benfer +benedetti +belue +bellanger +belford +behn +beerman +barnhardt +baltzell +balling +balducci +bainter +babineau +babich +baade +attwood +asmus +asaro +artiaga +april +applebaum +ang +anding +amar +amaker +allsup +alligood +alers +agin +agar +achenbach +abramowitz +abbas +aasen +zehnder +yopp +yelle +yeldell +wynter +woodmansee +wooding +woll +winborne +willsey +willeford +widger +whiten +whitchurch +whang +wen +weissinger +weinman +weingartner +weidler +waltrip +walt +wagar +wafford +vitagliano +villalvazo +villacorta +vigna +vickrey +vicini +ventimiglia +vandenbosch +valvo +valazquez +utsey +urbaniak +unzueta +trombetta +trevizo +trembley +tremaine +traverso +tores +tolan +tillison +tietjen +tee +teachout +taube +tatham +tarwater +tarbell +sydow +sy +swims +swader +striplin +stops +stoltenberg +steinhauer +steil +steigerwald +starkweather +stallman +squier +sparacino +span +spadafora +shiflet +shibata +shevlin +sherrick +shake +sessums +servais +senters +seevers +seelye +searfoss +seabrooks +scoles +schwager +schrom +schmeltzer +scheffel +sax +sawin +saterfiel +sardina +sanroman +sane +sandin +salamanca +saladin +sak +sabia +rustin +rushin +ruley +rueter +row +rotter +rosenzweig +roles +rohe +roder +rockey +ro +riter +rieth +ried +riding +riddles +ridder +rennick +remmers +remer +relyea +reilley +reder +rasheed +rakowski +rabin +queener +pursel +prue +prowell +pritts +primo +presler +pouncy +porche +porcaro +pollman +pleas +planas +pinkley +pinegar +pilger +philson +petties +perrodin +pendergrast +patao +pasternak +passarelli +pasko +parshall +panos +panella +palombo +padillo +oyama +overlock +overbeck +otterson +orrell +ornellas +opitz +okelly +officer +obando +noggle +nicosia +netto +negrin +natali +nakayama +nagao +nadel +musial +murrill +murrah +munsch +mucci +mrozek +moyes +mowrer +moris +morais +moorhouse +monico +mone +mondy +moncayo +mole +miltenberger +milsap +milone +millikin +milardo +mika +micheals +micco +meyerson +mericle +mendell +meinhardt +meachum +mcleroy +mcgray +mcgonigal +maultsby +matis +matheney +matamoros +marro +marcil +marcial +mantz +mannings +maltby +malchow +maiorano +mahn +mahlum +maglio +mae +maberry +lustig +luellen +longwell +longenecker +lofland +locascio +linney +linneman +lighty +levell +levay +lenahan +lemen +lehto +lebaron +lanctot +lamy +lainez +laffoon +labombard +kujawski +kroger +kreutzer +korhonen +kondo +kollman +kohan +kogut +knaus +kivi +kittel +kinner +kindig +kindel +kiesel +kidney +kibby +khang +kettler +ketterer +kepner +kelliher +keenum +kanode +kail +july +juhasz +jowett +jolicoeur +jeon +iser +ingrassia +imai +hutchcraft +humiston +hulings +hukill +huizenga +hugley +huddle +hose +hornyak +hodder +hisle +hillenbrand +hille +higuchi +hertzler +herdon +heppner +hepp +heitmann +heckart +hazlewood +hayles +hayek +hawthorn +hawkin +haugland +hasler +harbuck +happel +hambly +hambleton +hagaman +guzzi +gullette +guinyard +grogg +grise +griffing +goto +gosney +goods +goley +goldblatt +gledhill +girton +giltner +gillock +gilham +gilfillan +giblin +gentner +gehlert +gehl +garten +garney +garlow +garett +galles +galeana +futral +fuhr +friedland +franson +fransen +foulds +follmer +foland +flax +flavin +firkins +fillion +figueredo +ferrill +fenster +fenley +fauver +farfan +factor +eustice +eppler +engelman +engelke +emmer +elzy +ellwood +ellerbee +elks +ehret +ebbert +durrah +dupras +dubuque +dragoo +donlon +dolloff +doi +dibella +derrico +demko +demar +darrington +czapla +crooker +creagh +cranor +craner +crafts +crabill +coyer +cowman +cowherd +cottone +costillo +coster +costas +cosenza +corker +collinson +coello +clingman +clingerman +claborn +citizen +chmura +chausse +chaudhry +chapell +chancy +cerrone +caves +caverly +caulkins +carn +campfield +campanelli +callaham +cadorette +butkovich +buske +burrier +burkley +bunyard +budge +buckelew +buchheit +broman +brescia +brasel +brain +boyster +booe +bonomo +bonnet +bondi +bohnsack +bobby +blomberg +blanford +bilderback +biggins +bently +behrends +beegle +bedoya +bechtol +beaubien +bayerl +baumgart +baumeister +barratt +barlowe +barkman +barbagallo +baldree +baine +bail +baggs +bacote +aylward +ashurst +arvidson +arthurs +arrieta +arrey +arreguin +arrant +arner +armor +arizmendi +anker +amis +amend +alphin +allbright +aikin +acres +zupan +zuchowski +zeolla +zanchez +zahradnik +zahler +younan +yeater +yearta +yarrington +yantis +woomer +wollard +wolfinger +woerner +witek +wishon +wisener +wingerter +willet +wilding +wiedemann +weisel +wedeking +weary +waybright +wardwell +walkins +waldorf +voth +voit +virden +viloria +villagran +vasta +vashon +vaquera +vantassell +vanderlinden +vandergrift +vancuren +valenta +underdahl +tyra +tygart +twining +twiford +turlington +tullius +tubman +trowell +trieu +transue +tousant +torgersen +tooker +tony +tome +toma +tocci +tippins +tinner +timlin +tillinghast +tidmore +teti +tedrick +tacey +swanberg +sunde +summitt +summerford +summa +sue +stratman +strandberg +storck +stober +steitz +stayer +stauber +staiger +sponaugle +spofford +sparano +spagnola +sokoloski +snay +slough +skowronski +sieck +shimkus +sheth +sherk +shankles +shakespeare +shahid +sevy +sergeant +senegal +seiden +seidell +searls +searight +schwalm +schug +schilke +schier +scheck +sawtelle +santore +santa +sanks +sandquist +sanden +saling +sabine +saathoff +ryberg +rustad +ruffing +rudnicki +ruane +rozzi +rowse +rosenau +rodes +risser +riggin +riess +riese +rhoten +reinecke +reigle +reichling +redner +rebelo +raynes +raimondi +rahe +rada +querry +quellette +pulsifer +prochnow +pretty +prato +poulton +poudrier +poll +policastro +polhemus +polasek +poissant +pohlmann +plotner +pitkin +pita +pio +pinkett +pilot +piekarski +pichon +philippe +pfau +petroff +petermann +peplinski +peller +pecinovsky +pearse +pattillo +patague +parlier +parenti +parchman +pane +paff +ota +ortner +oros +nolley +noakes +nigh +nicolosi +nicolay +newnam +netter +nass +napoles +nakata +nakamoto +muriel +muck +morlock +moraga +montilla +mongeau +molitor +mohney +mitchener +meyerhoff +medel +mcniff +mcmonagle +mcglown +mcglinchey +mcgarrity +mccright +mccorvey +mcconnel +mccargo +mazzei +matula +mastroianni +massingale +maring +maricle +marc +mans +mannon +mannix +manney +manger +manalo +malo +malan +mahony +madril +mackowiak +macko +macintosh +lurry +luczynski +lucke +lucarelli +luca +loud +lou +losee +lorence +loiacono +lohse +loder +lipari +linebarger +lindamood +limbaugh +letts +leleux +leep +leeder +leard +laxson +lawry +laverdiere +laughton +lastra +kurek +kriss +krishnan +kretschmer +krebsbach +kontos +knobel +knauf +klick +kleven +klawitter +kitchin +kirkendoll +kinkel +kingrey +kilbourn +kensinger +kennerly +kamin +justiniano +jurek +junkin +julia +judon +jordahl +jeanes +jarrells +jamal +iwamoto +isreal +ishida +ines +immel +iman +ihle +hyre +hurn +hunn +hultman +huffstetler +huffer +hubner +howey +horney +hooton +holts +holscher +holen +hoggatt +hilaire +herz +henne +helstrom +hellickson +heinlein +heckathorn +heckard +heather +heart +headlee +hauptman +haughey +hatt +harring +harford +hammill +hamed +halperin +haig +hagwood +hagstrom +gunnells +gundlach +guardiola +greeno +greenland +gonce +goldsby +gobel +gisi +gillins +gillie +germano +geibel +gauger +garriott +garbarino +gander +gajewski +funari +fullbright +fuell +fritzler +freshwater +freas +fortino +forbus +fonda +flohr +flemister +fisch +finks +fenstermaker +feldstein +faw +farhat +farah +fankhauser +fagg +fader +exline +emigh +eguia +edman +eckler +eastburn +dy +dunmore +dubuisson +dubinsky +drayer +doverspike +doubleday +doten +dorner +dolson +dohrmann +disla +direnzo +dipaola +dines +dickie +diblasi +dewolf +desanti +dennehy +demming +delker +decola +davilla +davids +daughtridge +darville +darland +danzy +dandy +dagenais +culotta +cruzado +crudup +croswell +coverdale +covelli +couts +corbell +coplan +coolbaugh +conyer +conlee +conigliaro +comiskey +coberly +clendening +clairmont +cienfuegos +chojnacki +chilcote +champney +cassara +casazza +casado +carew +carbin +carabajal +calcagni +cail +caddy +busbee +burts +burbridge +bunge +bundick +buhler +bucker +bucholtz +bruen +broce +brite +brignac +brierly +bridgman +braham +bradish +boyington +borjas +bonnie +bonn +bonhomme +bohlen +bogardus +bockelman +blick +blackerby +bizier +biro +binney +bertolini +bertin +berti +bert +bento +beno +belgarde +belding +beckel +becerril +bazaldua +bayes +bayard +barrus +barris +baros +bara +ballow +balboa +bakewell +baginski +badalamenti +backhaus +avilez +auvil +atteberry +ardon +anzaldua +anello +amsler +amo +ambrosio +althouse +alles +alix +alberti +alberson +aitchison +aguinaga +ziemann +zickefoose +zerr +zeh +zeck +zartman +zahm +zabriskie +yohn +yellowhair +yeaton +yarnall +yaple +wolski +wixon +winford +willner +willms +whitsitt +wheelwright +weyandt +wess +wengerd +weatherholtz +wattenbarger +walrath +walpole +waldrip +voges +violet +vinzant +viars +veres +veneziano +veillon +vawter +vaughns +vanwart +vanostrand +valiente +valderas +uhrig +tunison +tulloch +trostle +treaster +traywick +toye +tomson +tomasello +tomasek +tippit +tinajero +tift +tienda +thorington +thierry +thieme +thibeau +thakkar +tewell +test +telfer +sweetser +sum +stratford +stracener +stoke +stiverson +stelling +stefan +stavros +speaker +spatz +spagnoli +sorge +sober +slevin +slabaugh +simson +shupp +shoultz +shotts +shiroma +shetley +sherrow +sheffey +shawgo +shamburger +sester +segraves +seelig +seats +scioneaux +schwartzkopf +schwabe +scholes +schmuck +schluter +schlecht +schillaci +schildgen +schieber +schewe +schecter +scarpelli +scaglione +sautter +santelli +sandman +salmi +sabado +ryer +rydberg +ryba +rushford +running +runk +ruddick +rotondo +rote +rosenfield +roesner +rocchio +ritzer +rippel +rimes +riffel +richison +ribble +reynold +resh +rehn +ratti +rasor +rasnake +rappold +rando +radosevich +pulice +puff +prichett +pribble +poynor +plowden +pitzen +pittsley +pitter +pigeon +philyaw +philipps +petite +pestana +perro +perone +pera +peil +pedone +pawlowicz +pattee +parten +parlin +pariseau +paredez +pardon +panther +paek +pacifico +otts +ostrow +osornio +oslund +orso +ooten +onken +oniel +onan +ollison +ohlsen +ohlinger +odowd +niemiec +neubert +nembhard +neaves +neathery +nakasone +myerson +muto +muntz +munez +mumme +mumm +mujica +muise +muench +morriss +molock +mishoe +minier +metzgar +mero +meiser +meese +meals +mcsween +mcquire +mcquinn +mcpheeters +mckeller +mcilrath +mcgown +mcdavis +mccuen +mcclenton +maxham +matsui +marriner +marlette +mantle +mansur +mancino +maland +majka +maisch +maheux +madry +madriz +mackley +macke +lydick +lutterman +luppino +lundahl +lovingood +loudon +longmore +lippman +liefer +leveque +lescarbeau +lemmer +ledgerwood +lawver +lawrie +lattea +lasko +lahman +kulpa +kukowski +kukla +kubota +kubala +krizan +kriz +krikorian +kravetz +kramp +kowaleski +knobloch +klosterman +kloster +klepper +kirven +kinnaman +kinnaird +killam +kiesling +kesner +keebler +keagle +karls +kapinos +kantner +kaba +junious +jefferys +jacquet +izzi +ishii +irion +ifill +hyun +hotard +horman +hoppes +hopkin +hokanson +hoda +hocutt +hoaglin +hites +hirai +hindle +hinch +hilty +hild +hier +hickle +hibler +henrichs +hempstead +helmers +hellard +heims +heidler +hearst +hawbaker +hau +harkleroad +harari +hanney +hannaford +hamid +hamburger +haltom +hallford +guilliams +guerette +gryder +groseclose +groen +grimley +greenidge +greek +graffam +goucher +goodenough +goldsborough +goldie +gloster +glanton +gladson +gladding +ghee +gethers +gerstein +geesey +geddie +gayer +gaw +gaver +gauntt +gartland +garriga +garoutte +gao +gan +fronk +fritze +frenzel +forgione +fluitt +flinchbaugh +flach +fiorito +finan +finamore +fimbres +fillman +file +figeroa +ficklin +feher +feddersen +fambro +fairbairn +eves +esperanza +escalona +elsey +eisenstein +ehrenberg +eargle +dress +drane +dorothy +doria +dogan +dively +dewolfe +dettman +desiderio +desch +dennen +denk +demaris +delsignore +dejarnette +deere +dedman +daws +dawn +dauphinais +danz +dantin +dannenberg +dalby +currence +culwell +cuesta +croston +crossno +cromley +crisci +craw +coryell +cooter +condra +columbia +colpitts +colas +coach +clink +clevinger +clermont +cistrunk +cirilo +chirico +chiarello +cephus +cecena +cavaliere +caughey +casimir +carwell +carlon +carbonaro +caraveo +cantley +callejas +cagney +cadieux +cabaniss +bushard +burlew +buras +budzinski +bucklew +bruneau +brummer +brueggemann +brotzman +bross +broad +brittian +brimage +briles +brickman +breneman +breitenstein +brandel +brackins +boydstun +botta +bosket +boros +borgmann +bordeau +bonifacio +bolten +boehman +blundell +bloodsaw +bjerke +biffle +bickett +bickers +beville +bergren +bergey +benzing +belfiore +beirne +beckert +bebout +baumert +battey +bartman +barrs +barriere +barcelo +barbe +balliet +baham +babst +auton +asper +asbell +arzate +argento +arel +araki +arai +apo +antley +amodeo +ammann +allyn +allensworth +aldape +akey +abeita +zweifel +zeng +zeiler +zamor +zalenski +yzaguirre +yousef +yetman +yau +wyer +woolwine +wohlgemuth +wohlers +wittenberg +wingrove +wind +wimsatt +willimas +wilkenson +wildey +wilderman +wilczynski +wigton +whorley +wellons +welles +welle +weirich +weideman +weide +weekly +weast +wasmund +warshaw +walson +waldner +walch +walberg +wagener +wageman +vrieze +vossen +vorce +voorhis +vonderheide +viruet +vicari +verne +velasques +vautour +vartanian +varona +vankeuren +vandine +vandermeer +ursery +underdown +uhrich +uhlman +tworek +twine +twellman +tweedie +tutino +turmelle +tubb +troop +trivedi +triano +trevathan +treese +treanor +treacy +traina +topham +toenjes +tippetts +tieu +thomure +thatch +than +tetzlaff +tetterton +tena +tell +teamer +tappan +tank +talcott +tagg +szczepanski +syring +surace +sulzer +sugrue +sugarman +suess +styons +stwart +stupka +strey +straube +strate +stoddart +stockbridge +stjames +stinger +steimle +steenberg +start +stamand +staller +stahly +stager +spurgin +sprow +sponsler +speas +spainhour +sones +smits +smelcer +slovak +slaten +singleterry +simien +sidebottom +sibrian +shellhammer +shelburne +shambo +sepeda +seigel +scogin +scianna +schmoll +schmelzer +scheu +schachter +savant +sauseda +satcher +sandor +sampsell +rugh +rufener +rudolf +rotenberry +rossow +rossbach +roots +rollman +rodrique +rodreguez +rodkey +roda +rising +rini +riggan +rients +riedl +rhines +ress +reinbold +raschke +rardin +rain +racicot +quillin +pushard +primrose +pries +pressey +precourt +pratts +postel +poppell +plumer +pingree +pieroni +pflug +petre +petrarca +peterka +peru +perkin +pergande +peranio +penna +pekar +pea +paulhus +pasquariello +parras +parmentier +para +panzer +pamplin +oviatt +osterhoudt +ostendorf +osmun +ortman +orloff +orban +onofrio +olveda +oltman +okeeffe +ocana +nunemaker +novy +noffsinger +nish +niday +nethery +nestle +nemitz +neidert +nadal +nack +muszynski +munsterman +mulherin +mortimore +morter +montesino +montalvan +montalbano +momon +moman +mom +mogan +minns +millward +milling +michelsen +micheal +mewborn +metro +metayer +mensch +meloy +meggs +meaders +mcsorley +mcmenamin +mclead +mclauchlin +mcguffey +mcguckin +mcglaughlin +mcferron +mcentyre +mccrum +mccawley +mcbain +mayhue +mau +matzen +matton +marsee +marrin +marland +markum +mantilla +manfre +malta +makuch +madlock +maclaren +macauley +luzier +luthy +lufkin +lucena +loudin +lothrop +lorch +lona +loll +loadholt +lisa +lippold +likes +lichtman +liberto +liakos +lewicki +levett +level +lentine +leja +legree +lawhead +lauro +lauder +lard +lanman +lank +laning +lama +lalor +krob +kriger +kriegel +krejci +kreisel +kozel +kos +konkel +kolstad +koenen +kocsis +knoblock +knebel +klopfer +klee +kilday +kesten +kerbs +kempker +keathley +kazee +kawasaki +kaur +kamer +kamaka +kallenbach +kafka +jerrell +jehle +jaycox +jardin +jahns +ivester +hyppolite +hyche +husbands +hur +huppert +hulin +hubley +horsey +hornak +holzwarth +holmon +hollabaugh +holaway +hodes +hoak +hinesley +hillwig +hillebrand +highfield +heslop +herrada +hendryx +hellums +heit +heishman +heindel +hayslip +hayford +hastie +hartgrove +hanus +hakim +hains +hadnott +gundersen +gulino +guidroz +guebert +gressett +greenhouse +graydon +gramling +grahn +goupil +gory +gorelick +goodreau +goodnough +golay +going +goers +glatz +gillikin +gieseke +giammarino +getman +geronimo +gerardo +gensler +gazda +garibaldi +gahan +fury +funderburke +fukuda +fugitt +fuerst +fortman +forsgren +formica +fluke +flink +fitton +feltz +fekete +feit +fehrenbach +farone +farinas +faries +fagen +ewin +esquilin +esch +enderle +ellery +ellers +ekberg +egli +effinger +dymond +dulle +dula +duhe +dudney +duane +dowless +dower +dorminey +dopp +dooling +domer +disher +dillenbeck +difilippo +dibernardo +deyoe +devillier +denley +deland +defibaugh +deeb +debow +dauer +datta +darcangelo +daoust +damelio +dahm +dahlman +cypher +curling +curlin +cupit +culton +cuenca +cropp +croke +cremer +crace +cosio +corzine +coombe +coman +colone +coloma +collingwood +coletta +coderre +cocke +cobler +claybrook +circle +cincotta +cimmino +christoff +christina +chisum +chillemi +chevere +chae +chachere +cervone +cermak +cefalu +cauble +cather +caso +carns +carcamo +carbo +capoccia +capello +capell +canino +cambareri +calvi +cabiness +bushell +burtt +burstein +burkle +bunner +bundren +buechler +bryand +bruso +brownstein +brow +brouse +brodt +broaden +brisbin +brightman +bridgett +brenes +breitenbach +brazzell +brazee +bramwell +bramhall +bradstreet +boyton +bowland +boulter +bossert +bonura +bonebrake +bonacci +boeck +blystone +birchard +bilal +biddy +bibee +bevans +bethke +bertelsen +berney +bergfeld +benware +bellon +bellah +been +batterton +barberio +bamber +bagdon +badeaux +averitt +augsburger +ates +arvie +aronowitz +arens +arch +araya +angelos +andrada +amell +amante +alvin +almy +almquist +alls +aispuro +aguillon +agudelo +admire +acy +aceto +abbot +abalos +zdenek +zaremba +zaccaria +youssef +wrona +wrinkle +wrede +wotton +woolston +wolpert +wollman +wince +wimberley +willmore +willetts +wikoff +wieder +wickert +whitenack +wernick +welte +welden +weiskopf +weisenberger +weich +wallington +walder +vossler +vore +vigo +vierling +victorine +verdun +vencill +vena +vazguez +vassel +vanzile +vanvliet +vantrease +vannostrand +vanderveer +vanderveen +vancil +uyeda +umphrey +uhler +uber +tutson +turrentine +tullier +tugwell +trundy +tripodi +tomer +tomei +tomasi +tomaselli +tokarski +tisher +tibbets +thweatt +thistle +tharrington +tesar +telesco +teasdale +tatem +taniguchi +suriel +sudler +stutsman +sturman +strite +strelow +streight +strawder +stransky +strahl +stours +stong +stinebaugh +stilts +stillson +steyer +stelle +steffy +steffensmeier +statham +squillante +spiess +spargo +southward +soller +soden +snuggs +snellgrove +smyers +smiddy +slonaker +skyles +skowron +sivils +siqueiros +siers +siddall +shorty +shontz +shingler +shiley +shibley +sherard +shelnutt +shedrick +shasteen +sereno +selke +scovil +scola +schuett +schuessler +schreckengost +schranz +schoepp +schneiderman +schlanger +schiele +scheuermann +schertz +scheidler +scheff +schaner +schamber +scardina +savedra +saulnier +sater +sarro +sambrano +salomone +sabourin +ruud +rutten +ruffino +ruddock +rowser +roussell +rosengarten +rominger +rollinson +rohman +roeser +rodenberg +roberds +ridgell +rhodus +reynaga +rexrode +revelle +rempel +remigio +reising +reiling +reetz +rayos +ravenscroft +ravenell +raulerson +rasmusson +rask +rase +ragon +quesnel +quashie +puzo +puterbaugh +ptak +prost +prisbrey +principe +pricer +pratte +pouncey +portman +pontious +pomerantz +platter +planck +pilkenton +pilarski +piano +phegley +pertuit +perla +penta +pelc +peffer +pech +peagler +pavelka +pavao +patman +paskett +parrilla +pardini +papazian +panter +palin +paley +pai +pages +paetzold +packett +pacheo +ostrem +orsborn +olmedo +okamura +oiler +ohm +oglesbee +oatis +oakland +nuckles +notter +nordyke +nogueira +niswander +nibert +nesby +neloms +nading +naab +munns +mullarkey +moudy +moret +monnin +molder +modisette +moczygemba +moctezuma +mischke +miro +mings +milot +milledge +milhorn +milera +mieles +mickley +michelle +micek +metellus +mersch +merola +mercure +mencer +mellin +mell +meinke +mcquillan +mcmurtrie +mckillop +mckiernan +mckendrick +mckamie +mcilvaine +mcguffie +mcgonigle +mcgarrah +mcfetridge +mcenaney +mcdow +mccutchan +mccallie +mcadam +maycock +maybee +mattei +massi +masser +masiello +marth +marshell +marmo +marksberry +markell +marchal +manross +manganaro +mally +mallow +mailhot +magyar +madonna +madero +madding +maddalena +macfarland +lynes +lush +lugar +luckie +lucca +lovitt +loveridge +loux +loth +loso +lorenzana +lorance +lockley +lockamy +littler +litman +litke +liebel +lichtenberger +licea +leverich +letarte +lesesne +leno +legleiter +leffew +laurin +launius +laswell +lassen +lasala +laraway +laramore +landrith +lancon +lanahan +laiche +laford +lachermeier +kunst +kugel +kuck +kuchta +kube +korus +koppes +kolbe +koerber +kochan +knittel +kluck +kleve +kleine +kitch +kirton +kirker +kintz +kinghorn +kindell +kimrey +kilduff +kilcrease +kicklighter +kibble +kervin +keplinger +keogh +kellog +keeth +kealey +kazmierczak +karner +kamel +kalina +kaczynski +juel +joye +jerman +jeppson +jawad +jasik +jaqua +janusz +janco +island +inskeep +inks +ingold +ing +hyndman +hymer +hunte +hunkins +humber +huffstutler +huffines +hudon +hudec +hovland +houze +hout +hougland +hopf +hon +holsapple +holness +hollenbach +hoffmeister +hitchings +hirata +hieber +hickel +hewey +herriman +hermansen +herandez +henze +heffelfinger +hedgecock +hazlitt +hazelrigg +haycock +harren +harnage +harling +harcrow +hannold +hanline +hanel +hanberry +hammersley +hamernik +halliwell +hajduk +haithcock +haff +hadaway +haan +gullatt +guilbault +guidotti +gruner +grisson +grieves +granato +gracie +grabert +gover +gorka +glueck +girardin +giorgio +giesler +gersten +gering +geers +gaut +gaulin +gaskamp +garbett +gallivan +galland +gaeth +fullenkamp +fullam +friedrichs +freire +freeney +fredenburg +frappier +fowkes +foree +fleurant +fleig +fleagle +fitzsimons +fischetti +fiorenza +finneran +filippi +figueras +fesler +fertig +fennel +feltmann +felps +felmlee +faye +fannon +familia +fairall +fail +fadden +esslinger +enfinger +elsasser +elmendorf +ellisor +einhorn +ehrman +egner +edmisten +edlund +ebinger +dyment +dykeman +durling +dunstan +dunsmore +dugal +duer +drescher +doyel +down +dossey +donelan +dockstader +dobyns +divis +dilks +didier +desrosier +desanto +deppe +deng +delosh +delange +defrank +debo +dauber +dartez +daquila +dankert +dahn +cygan +cusic +curfman +croghan +croff +criger +creviston +crays +cravey +crandle +crail +crago +craghead +cousineau +couchman +cothron +corella +conine +coller +colberg +cogley +coatney +coale +clendenin +claywell +clagon +cifaldi +choiniere +chickering +chica +chennault +chavarin +chattin +chaloux +challis +cesario +certain +cazarez +caughman +catledge +casebolt +carrel +carra +carlow +capote +canez +camillo +caliendo +calbert +cairo +bylsma +bustle +buskey +buschman +burkhard +burghardt +burgard +buonocore +bunkley +bungard +bundrick +bumbrey +buice +buffkin +brundige +brockwell +brion +brin +briant +bredeson +bransford +brannock +brakefield +brackens +brabant +boxer +bowdoin +bouyer +bothe +boor +bonavita +bollig +blurton +blunk +blanke +blanck +birden +bierbaum +bevington +beutler +betters +bettcher +bera +benway +bengston +benesh +behar +bedsole +becenti +beachy +battersby +basta +bartmess +bartle +bartkowiak +barsky +barrio +barletta +barfoot +banegas +ballin +baldonado +bal +azcona +avants +austell +aungst +aune +aumann +audia +atterbury +asselin +asmussen +ashline +asbill +arvizo +arnot +ariola +ardrey +angstadt +anastasio +amsden +amor +amerman +alred +almeda +allington +alewine +alcina +alberico +alas +ahlgren +aguas +agrawal +agosta +adolphsen +addie +acre +acey +aburto +abler +zwiebel +zuk +zepp +zentz +ybarbo +yarberry +yamauchi +yamashiro +wurtz +wronski +worster +wootten +wool +wongus +woltz +wolanski +witzke +withey +wisecarver +wingham +wineinger +winegarden +windholz +wilgus +wiesen +wieck +widrick +wickliffe +whittenberg +westby +werley +wengert +wendorf +weimar +weick +weckerly +watrous +wasden +walford +wainright +wahlstrom +wadlow +vrba +voisin +vives +vivas +vitello +villescas +villavicencio +villanova +vialpando +vetrano +verona +vensel +vassell +varano +vanriper +vankleeck +vanduyne +vanderpol +vanantwerp +valenzula +udell +turnquist +tuff +trickett +tremble +tramble +tingey +ting +timbers +tietz +thon +thiem +then +tercero +tenner +tenaglia +teaster +tarlton +taitt +taggert +tabon +sward +swaby +suydam +surita +suman +sugar +suddeth +stumbo +studivant +strobl +stretch +streich +stow +stoodley +stoecker +stillwagon +stickle +stellmacher +stefanik +steedley +starbird +stake +stainback +stacker +speir +spath +sommerfeld +soltani +solie +sojka +sobota +sobieski +sobczak +smullen +sleeth +slaymaker +skolnick +skoglund +sires +singler +silliman +shrock +shott +shirah +shimek +shepperd +sheffler +sheeler +sharrock +sharman +shalash +seyfried +seybold +selander +seip +seifried +sedor +sedlock +sebesta +seago +scutt +scrivens +sciacca +schultze +schoemaker +schleifer +schlagel +schlachter +schempp +scheider +scarboro +santi +sang +sandhu +sally +salim +saia +rylander +ryburn +rutigliano +ruocco +ruland +rudloff +rott +rosenburg +rosenbeck +romberger +romanelli +rohloff +rohlfing +rodda +rodd +ritacco +rielly +rieck +rickles +rickenbacker +rhett +respass +reisner +reineck +reighard +rehbein +rega +redwood +reddix +razor +rawles +raver +rattler +ratledge +rathman +ramsburg +raisor +radovich +radigan +quail +puskar +purtee +priestly +prestidge +presti +pressly +pozo +pottinger +portier +porta +porcelli +poplawski +polin +points +poeppelman +pocock +plump +plantz +placek +piro +pinnell +pinkowski +pietz +picone +philbeck +pflum +peveto +perret +pentz +payer +paulette +patlan +paterno +papageorge +pae +overmyer +overland +osier +orwig +orum +orosz +oquin +opie +oda +ochsner +oathout +nygard +norville +northway +niver +nicolson +newhart +nery +neitzel +nath +nanez +mustard +murnane +mortellaro +morreale +morino +moriarity +morgado +moorehouse +mongiello +molton +mirza +minnix +millspaugh +milby +miland +miguez +mickles +michaux +mento +melugin +melrose +melito +meinecke +mehr +meares +mcneece +mckane +mcglasson +mcgirt +mcgilvery +mcculler +mccowen +mccook +mcclintic +mccallon +mazzotta +maza +mayse +mayeda +matousek +matley +martyn +maroon +marney +marnell +marling +marcelino +manuelito +maltos +malson +maire +mahi +maffucci +macken +maass +lyttle +lynd +lyden +lukasiewicz +luebbers +lovering +loveall +lords +longtin +lok +lobue +loberg +loan +lipka +lion +linen +lightbody +lichty +levert +lev +lettieri +letsinger +lepak +lemmond +lembke +leitz +lasso +lasiter +lango +landsman +lamirande +lamey +laber +kuta +kulesza +kua +krenz +kreiner +krein +kreiger +kraushaar +kottke +koser +kornreich +kopczynski +konecny +kok +koff +koehl +kocian +knaub +kmetz +kluender +klenke +kleeman +kitzmiller +kirsh +kilman +kildow +kielbasa +ketelsen +kesinger +kendra +kehr +keef +kauzlarich +karter +kahre +junk +jong +jobin +joaquin +jinkins +jines +jeffress +jaquith +jaillet +jablonowski +ishikawa +irey +ingerson +indelicato +in +huntzinger +huisman +huett +howson +houge +hosack +hora +hoobler +holtzen +holtsclaw +hollingworth +hollin +hoberg +hobaugh +hilker +hilgefort +higgenbotham +heyen +hetzler +hessel +hennessee +hendrie +hellmann +heft +heesch +haymond +haymon +haye +havlik +havis +haverland +haus +harstad +harriston +harm +harju +hardegree +hankey +hands +hampshire +hammell +hamaker +halbrook +halberg +guptill +guntrum +gunderman +gunder +gularte +guarnieri +gu +groll +grippo +greely +grave +gramlich +goh +goewey +goetzinger +goding +giraud +giefer +giberson +gennaro +gemmell +gearing +gayles +gaudin +gatz +gatts +gasca +garn +gandee +gammel +galindez +galati +gagliardo +fulop +fukushima +friedt +fretz +frenz +freeberg +frederic +fravel +fountaine +forry +forck +fonner +flippin +flewelling +flansburg +filippone +fettig +fenlon +felter +felkins +fein +faz +favor +favero +faulcon +farver +farless +fahnestock +facemire +faas +eyer +evett +every +esses +escareno +ensey +ennals +engelking +empey +emily +elvira +ellithorpe +effler +edling +edgley +durrell +dunkerson +draheim +domina +dombrosky +doescher +dobbin +divens +dinatale +dimitri +dieguez +diede +devivo +devilbiss +devaul +determan +desjardin +deshaies +demo +delpozo +delorey +delman +delapp +delamater +deibert +degroff +debelak +dapolito +dano +dacruz +dacanay +cushenberry +cruze +crosbie +cregan +cousino +corrie +corrao +corney +cookingham +conry +collingsworth +coldren +cobian +coate +clauss +chrysler +christine +christenberry +chmiel +chauez +charters +chait +cesare +cella +caya +castenada +cashen +captain +cantrelle +canova +candy +canary +campione +camel +calixte +caicedo +byerley +buttery +butter +burda +burchill +bun +bulmer +bulman +buesing +buczek +buckholz +buchner +buchler +buban +bryne +brutus +brunkhorst +brumsey +brumer +brownson +broker +brodnax +brezinski +brazile +braverman +brasil +branning +bradly +boye +boulden +bough +bossard +bosak +borth +borgmeyer +borge +blowers +blaschke +blann +blankenbaker +bisceglia +billingslea +bialek +beverlin +besecker +berquist +benigno +benavente +belizaire +beisner +behrman +beausoleil +bea +baylon +bayley +bassi +basnett +basilio +basden +basco +banerjee +balli +bake +bagnell +bady +averette +augusta +arzu +arn +archambeault +arboleda +arbaugh +arata +antrim +amrhein +amerine +alpers +alfrey +alcon +albus +albertini +aguiniga +aday +acquaviva +accardi +zygmont +zych +zollner +zobel +zinck +zertuche +zaragosa +zale +zaldivar +ying +yeadon +wykoff +woullard +wolfrum +wohlford +wison +wiseley +wisecup +winchenbach +wiltsie +whittlesey +whitelow +whiteford +wever +westrich +wertman +wensel +wenrich +weisbrod +weglarz +wedderburn +weatherhead +wease +warring +wand +wadleigh +voltz +vise +villano +vicario +vermeulen +vazques +vasko +varughese +vangieson +vanfossen +vanepps +vanderploeg +vancleve +valerius +uyehara +unsworth +twersky +turrell +tuner +tsui +trunzo +trousdale +trentham +traughber +torgrimson +toppin +tokar +tobia +tippens +tigue +thong +thiry +thackston +terhaar +tenny +tassin +tadeo +sweigart +sutherlin +sumrell +suen +stuhr +strzelecki +strosnider +streiff +stottlemyer +storment +storlie +stonesifer +stogsdill +stenzel +stemen +stellhorn +steidl +stecklein +statton +staple +stangle +spratling +spoor +spight +spelman +spece +spanos +spadoni +southers +sola +sobol +smyre +slaybaugh +sizelove +sirmons +simington +silversmith +siguenza +sieren +shelman +shawn +sharples +sharif +shack +seville +sessler +serrata +serino +serafini +semien +selvey +seedorf +seckman +seawood +screws +screen +scoby +scicchitano +schorn +schommer +schnitzer +schleusner +schlabach +schiel +schepers +schaber +scally +sautner +sartwell +santerre +sandage +salvia +salvetti +salsman +sallis +salais +saint +saeger +sable +sabat +saar +ruther +russom +ruoff +rumery +rubottom +rozelle +rowton +routon +rotolo +rostad +roseborough +rorick +ronco +rolls +roher +roberie +robare +ritts +rison +rippe +rinke +ringwood +righter +rieser +rideaux +rickerson +renfrew +releford +reinsch +reiman +reifsteck +reidhead +redfearn +reddout +reaux +rance +ram +rado +radebaugh +quinby +quigg +provo +provenza +provence +prophet +pridgeon +praylow +powel +poulter +portner +pontbriand +police +poirrier +poirer +platero +pixler +pintor +pigman +piersall +piel +pichette +phou +phillis +phillippe +pharis +phalen +petsche +perrier +penfield +pelosi +pebley +peat +pawloski +pawlik +pavlick +pavel +patz +patout +pascucci +pasch +parrinello +parekh +pantaleo +pannone +pankow +pangborn +pagani +pacelli +ort +orsi +oriley +orduno +oommen +olivero +okada +ocon +ocheltree +oberman +nyland +noss +norling +nolton +nobile +nitti +nishimoto +nghiem +neuner +neuberger +neifert +negus +naval +nagler +mullally +moulden +morra +morquecho +morocco +moots +monica +mizzell +mirsky +mirabito +minardi +milholland +mikus +mijangos +michener +michalek +methvin +merrit +menter +meneely +melody +meiers +mehring +mees +medal +mcwhirt +mcwain +mcphatter +mcnichol +mcnaught +mclarty +mcivor +mcginness +mcgaughy +mcferrin +mcfate +mcclenny +mcclard +mccaskey +mccallion +mcamis +mathisen +marton +marsico +mariner +marchi +mani +mangione +magda +macaraeg +lupi +lunday +lukowski +lucious +locicero +loach +littlewood +litt +litle +lipham +linley +lindon +lightford +lieser +leyendecker +lewey +lesane +lenzi +lenart +lena +leisinger +lehrman +lefebure +leandro +lazard +laycock +laver +launer +lastrapes +lastinger +lasker +larkey +larger +lanser +lanphere +landey +lan +lampton +lamark +lager +kumm +kullman +krzeminski +krasner +kram +koran +koning +kohls +kohen +kobel +kniffen +knick +kneip +knappenberger +knack +klumpp +klausner +kitamura +kisling +kirshner +kinloch +kingman +kin +kimery +kestler +kellen +keleher +keehn +kearley +kasprzak +kary +kampf +kamerer +kalis +kahan +kaestner +kadel +kabel +junge +juckett +joynt +jorstad +jetter +jelley +jefferis +jeff +jeansonne +janecek +jaffee +jacko +izzard +istre +isherwood +ipock +iannuzzi +hypolite +hussein +humfeld +huckleberry +hotz +hosein +honahni +holzworth +holdridge +holdaway +holaday +hodak +hitchman +hippler +hinchey +hillin +hiler +hibdon +hevey +heth +hepfer +henneman +hemsley +hemmings +hemminger +helbert +helberg +heinze +heeren +hee +heber +haver +hauff +haswell +harvison +hartson +harshberger +harryman +harries +hannibal +hane +hamsher +haggett +hagemeier +haecker +haddon +haberkorn +guttman +guttierrez +guthmiller +guillet +guilbert +gugino +grumbles +griffy +gregerson +greg +granada +grana +goya +goranson +gonsoulin +goettl +goertz +goe +godlewski +glandon +glad +gilsdorf +gillogly +gilkison +giard +giampaolo +gheen +gettings +gesell +gershon +gaumer +gartrell +garside +garrigan +garmany +garlitz +garlington +gamet +gail +fuss +furlough +funston +funaro +frix +frasca +francoeur +forshey +foose +flatley +flagler +fils +fillers +fickett +feth +fennelly +fencl +felch +fedrick +febres +fazekas +farnan +fairless +ewan +etsitty +enterline +elvin +elsworth +elliff +ell +eleby +eldreth +eidem +edgecomb +edds +ebarb +dworkin +dusenberry +durrance +duropan +durfey +dungy +dundon +dumbleton +duffel +dubon +dubberly +droz +drinkwater +dressel +doughtie +doshier +dorrell +dora +dople +doonan +donadio +dollison +doig +ditzler +dishner +discher +dimaio +digman +difalco +diem +devino +devens +derosia +deppen +depaola +deniz +denardo +demos +demay +delgiudice +davi +danielsen +dally +dais +dahmer +cutsforth +cusimano +curington +cumbee +cryan +crusoe +crowden +crete +cressman +crapo +cowens +coupe +councill +coty +cotnoir +correira +copen +consiglio +combes +coffer +cockrill +coad +clogston +clasen +chock +chesnutt +charrier +chain +chadburn +cerniglia +cebula +castruita +castilla +castaldi +casebeer +casagrande +carta +carrales +carnley +cardon +carasco +capshaw +capron +cappiello +capito +canney +candela +caminiti +califano +calico +calabria +caiazzo +cahall +buscemi +burtner +burgdorf +bureau +burdo +buffaloe +buchwald +brwon +brunke +brummond +brumm +broe +brocious +brocato +bro +britain +briski +brisker +brightwell +bresett +breiner +brazeau +braz +brayman +brandis +bramer +bradeen +boyko +bourbon +bossi +boshart +bortle +boniello +bomgardner +bolz +bolenbaugh +bohling +bohland +bochenek +blust +bloxham +blowe +blish +blackwater +bjelland +biros +birkhead +biederman +bickle +bialaszewski +bevil +beverley +beumer +bettinger +besse +bernett +bermejo +bement +belfield +beckler +beatrice +baxendale +batdorf +bastin +bashore +bascombe +bartlebaugh +barsh +ballantine +bahl +badon +bachelor +autin +audie +astin +askey +ascher +arrigo +arbeiter +antes +angers +amburn +amarante +alvidrez +althaus +allmond +alfieri +aldinger +akerley +akana +aikins +ader +acebedo +accardo +abila +aberle +abele +abboud +zollars +zimmerer +zieman +zerby +zelman +zellars +yule +yoshimura +yonts +yeats +yant +yamanaka +wyland +wuensche +worman +wordlaw +wohl +winslett +winberg +wilmeth +willcutt +wiers +wiemer +wickwire +wichman +whitting +whidbee +westergard +wemmer +wellner +weishaupt +weinert +weedon +waynick +wasielewski +waren +walworth +wallingford +walke +waechter +viviani +vitti +villagrana +vien +vicks +venema +varnes +varnadoe +varden +vanpatten +vanorden +vanderzee +vandenburg +vandehey +valls +vallarta +valderrama +valade +urman +ulery +tusa +tuft +tripoli +trimpe +trickey +tortora +torrens +torchia +toft +tjaden +tison +tindel +thurmon +thode +tardugno +tancredi +taketa +taillon +tagle +sytsma +symes +swindall +swicegood +swartout +sundstrom +sumners +sulton +studstill +student +stroop +stonerock +stmarie +stlawrence +stemm +steinhauser +steinert +steffensen +stefano +stefaniak +starck +stalzer +spidle +spake +sowinski +sosnowski +sorber +somma +soliday +soldner +soja +soderstrom +soder +sockwell +sobus +snowball +sloop +skeeter +sinner +sinkfield +simerly +silguero +sigg +siemers +siegmund +sidle +shum +sholtis +shkreli +sheikh +shattles +sharlow +shao +shambaugh +shaikh +serrao +serafino +selley +selle +seel +sedberry +secord +seat +schunk +schuch +schor +scholze +schnee +schmieder +schleich +schimpf +scherf +satterthwaite +sasson +sarkisian +sarinana +sanzone +salvas +salone +salido +saiki +sahr +rusher +rusek +ruse +ruppel +rubi +rubel +rough +rothfuss +rothenberger +rossell +rosenquist +rosebrook +romito +romines +rolando +rolan +roker +roehrig +rockhold +rocca +robuck +riss +rinaldo +right +riggenbach +rezentes +reuther +reuben +renolds +rench +remus +remsen +reller +relf +reitzel +reiher +rehder +redeker +ramero +rahaim +radice +quijas +qualey +purgason +prum +proudfoot +prock +probert +printup +primer +primavera +prenatt +pratico +polich +podkowka +podesta +plattner +plasse +plamondon +pittmon +pippenger +pineo +pierpont +petzold +petz +pettiway +petters +petroski +petrik +pesola +pershall +perlmutter +penepent +peevy +pechacek +pears +peaden +pazos +pavia +pascarelli +parm +parillo +parfait +paoletti +palomba +palencia +pagaduan +oxner +overfield +overcast +oullette +ouk +ostroff +osei +omarah +olenick +olah +odem +nygren +notaro +northcott +nodine +nilges +neyman +neve +neuendorf +neptune +neisler +neault +narciso +naff +muscarella +mun +most +morrisette +morphew +morein +mor +montville +montufar +montesinos +monterroso +mongold +mona +mojarro +moitoso +mode +mirarchi +mirando +minogue +milici +miga +midyett +michna +mey +meuser +messana +menzie +menz +mendicino +melone +mellish +meller +melle +meints +mechem +mealer +mcwilliam +mcwhite +mcquiggan +mcphillips +mcpartland +mcnellis +mcmackin +mclaughin +mckinny +mckeithan +mcguirk +mcgillivray +mcgarr +mcgahee +mcfaul +mcfadin +mceuen +mccullah +mcconico +mcclaren +mccaul +mccalley +mccalister +mazer +mayson +mayhan +maugeri +mauger +mattix +mattews +maslowski +masek +martir +marsch +marquess +maron +markwell +markow +marinaro +marietta +marcinek +manner +mannella +mango +mallen +majeed +mahnke +mahabir +magby +magallan +madere +machnik +lybrand +luque +lundholm +lueders +lucian +lubinski +lowy +loew +lippard +linson +lindblad +lightcap +levitsky +levens +leonardi +lenton +lengyel +leng +leitzel +leicht +leaver +laubscher +lashua +larusso +larrimore +lanterman +lanni +lanasa +lamoureaux +lambros +lamborn +lamberti +lall +lagos +lafuente +laferriere +laconte +kyger +kupiec +kunzman +kuehne +kuder +kubat +krogh +kreidler +krawiec +krauth +kratky +kottwitz +korb +kono +kolman +kolesar +koeppel +knapper +klingenberg +kjos +keppel +kennan +keltz +kealoha +kasel +karney +kanne +kamrowski +kagawa +joo +johnosn +joesph +jilek +jarvie +jarret +jansky +jacquemin +jacox +jacome +italiano +iriarte +ingwersen +imboden +iglesia +huyser +hurston +hursh +huntoon +hudman +hoying +horsman +horrigan +hornbaker +horiuchi +hopewell +hoop +hommel +homeyer +holzinger +holmer +hollow +hipsher +hinchman +hilts +higginbottom +hieb +heyne +hessling +hesler +hertlein +herford +heras +henricksen +hennemann +henery +hendershott +hemstreet +heiney +heckert +heatley +hazell +hazan +hayashida +hausler +hartsoe +harth +harriott +harriger +harpin +hardisty +hardge +hao +hannaman +hannahs +hamp +hammersmith +hamiton +halsell +halderman +hagge +habel +gusler +gushiken +gurr +gummer +gullick +grunden +grosch +greenburg +greb +greaver +gratz +grajales +gourlay +gotto +gorley +goodpasture +godard +glorioso +gloor +glascock +gizzi +giroir +gibeault +gauldin +gauer +gartin +garrels +gamber +gallogly +galley +gade +fusaro +fripp +freyer +freiberg +franzoni +fragale +foston +forti +forness +folts +followell +foard +flom +fling +flett +fleitas +flamm +fino +finnen +finchum +filippelli +fickel +feucht +feiler +feenstra +feagins +faver +faux +faulkenberry +farabaugh +fandel +fallen +faler +faivre +fairey +facey +exner +evensen +erion +erben +epting +epping +ephraim +engberg +elsen +ellingwood +ellen +eisenmann +eichman +ehle +edsall +eagles +durall +dupler +dunker +dumlao +duford +duffie +dudding +dries +doung +dorantes +donahoo +domenick +dollins +dobles +dipiazza +dino +dimeo +diehm +dicicco +devin +devenport +desormeaux +derrow +depaolo +denver +denise +demas +delpriore +delosantos +dela +degreenia +degenhardt +defrancesco +defenbaugh +deets +debonis +deary +dazey +dargie +dambrosia +dalal +dagen +cun +cuen +crupi +crossan +crichlow +creque +coutts +counce +coram +constante +connon +collelo +coit +cocklin +coblentz +cobey +coard +clutts +clingan +claw +clampitt +claeys +ciulla +cimini +ciampa +christon +choat +chiou +chenail +chavous +catto +catalfamo +casterline +cassinelli +caspers +carroway +carlen +carithers +cappel +calo +callow +calandra +cagley +cafferty +byun +byam +buttner +buth +burtenshaw +burget +burfield +buresh +bunt +bultman +bulow +buchta +buchmann +brunett +bruemmer +brueggeman +britto +briney +brimhall +bribiesca +bresler +brazan +brashier +brar +brandstetter +brandi +boze +boonstra +bluitt +blomgren +blattner +blasi +bladen +bitterman +bilby +bierce +biello +bettes +bertone +berrey +bernat +berberich +benshoof +bendickson +below +bellefeuille +bednarski +beddingfield +beckerman +beaston +bavaro +batalla +basye +baskins +bartolotta +bartkowski +barranco +barkett +band +banaszak +bame +bamberger +balsley +ballas +balicki +balding +bald +badura +aymond +aylor +aylesworth +axley +axelrod +aubert +armond +ariza +apicella +anstine +ankrom +angevine +anger +andreotti +andrea +alto +alspaugh +alpaugh +almada +allinder +alexandra +alequin +alan +aguillard +agron +agena +afanador +ackerley +abrev +abdalla +aaronson +zynda +zucco +zipp +zetina +zenz +zelinski +youngren +yochum +yearsley +yankey +woodfork +wohlwend +woelfel +wiste +wismer +winzer +winker +wilkison +wigger +wierenga +whipps +wheeling +westray +wesch +weld +weible +wedell +weddell +wawrzyniak +wasko +washinton +wantz +walts +wallander +wain +wahlen +wachowiak +voshell +viteri +vire +villafuerte +vieyra +viau +vescio +verrier +verhey +vause +vandermolen +vanderhorst +valois +valla +valcourt +vacek +uzzle +umland +um +ulman +ulland +turvey +tuley +trembath +trees +trabert +towsend +totman +toews +toby +tito +tisch +tisby +tipping +tierce +thivierge +tenenbaum +teagle +tacy +tabler +szewczyk +swearngin +suire +sturrock +stubbe +stronach +stoute +stoudemire +stoneberg +sterba +stejskal +steier +stehr +steckler +steckel +stearman +steakley +star +stanforth +stancill +stalls +srour +sprowl +spevak +sole +sokoloff +soderman +snover +sleeman +slaubaugh +sitzman +simpler +simmer +simes +siegal +sidoti +sidler +sider +sidener +siddiqi +shireman +shima +sheroan +shadduck +seyal +sentell +sennett +senko +seneca +sen +seligman +seipel +seekins +seabaugh +scouten +schweinsberg +schwartzberg +schurr +schult +schrick +schoening +schmitmeyer +schlicher +schlager +schack +schaar +scavuzzo +scarpa +sassano +santigo +sandavol +san +sampsel +samms +samet +salzano +salyards +salva +saidi +sabir +saam +saab +runions +rundquist +rousselle +round +rotunno +roses +rosch +romney +rohner +roff +rockhill +rockefeller +rocamora +rm +ringle +riggie +ricklefs +rexroat +reves +revel +reuss +reta +repka +rentfro +reineke +recore +recalde +rease +rawling +ravencraft +ravelo +rappa +randol +ramsier +ramerez +rahimi +rahim +radney +racey +raborn +rabalais +quebedeaux +pujol +puchalski +prothro +proffit +prigge +prideaux +prevo +portales +porco +popovic +popek +popejoy +pompei +plumber +plude +platner +plate +pizzuto +pizer +pistone +piller +pierri +piehl +pickert +piasecki +phong +philipp +peugh +pesqueira +perrett +perfetti +percell +penhollow +pelto +pellett +pavlak +paulo +paula +patricia +pastorius +parsell +parrales +pareja +parcell +pappan +pajak +owusu +ovitt +ory +orrick +oniell +olliff +olberding +oesterling +odwyer +ocegueda +obey +obermiller +nylander +nulph +nottage +northam +norgard +nodal +niel +nicols +newhard +nellum +neira +nazzaro +nassif +narducci +nalbandian +nails +musil +murga +muraoka +mumper +mulroy +mountjoy +mossey +moreton +morea +montoro +montesdeoca +montealegre +montanye +montandon +mok +moisan +mohl +modesto +modeste +mitra +mister +minson +minjarez +milbourne +michaelsen +metheney +mestre +mescher +mervis +mennenga +melgarejo +meisinger +meininger +mcwaters +mckern +mckendree +mchargue +mcglothlen +mcgibbon +mcgavock +mcduffee +mcclurkin +mccausland +mccardell +mccambridge +mazzoni +mayen +maxton +mawson +mauffray +mattinson +mattila +matsunaga +mater +mascia +marse +marotz +marois +markin +markee +marcinko +marcin +manville +mantyla +manser +manry +manderscheid +mallari +malia +malecha +malcomb +majerus +mailman +macinnis +mabey +lyford +luth +lupercio +luhman +luedke +lovick +lossing +loss +lorraine +lookabaugh +longway +lone +loisel +logiudice +loffredo +locust +lobe +lobaugh +lizaola +livers +littlepage +linnen +limmer +liebsch +liebman +leyden +levitan +levison +levier +leven +levalley +lettinga +lessley +lessig +lepine +leight +leick +leggio +leffingwell +leffert +lefevers +ledlow +leaton +leander +leaming +lazos +laviolette +lauffer +latz +lasorsa +lasch +larin +laporta +lanter +langstaff +landi +lamica +lambson +lambe +lamarca +laman +lamagna +lajeunesse +lafontant +lafler +labrum +laakso +kush +kuether +kuchar +kruk +kroner +kroh +kridler +kreuzer +kovats +koprowski +kohout +knicely +knell +klutts +kindrick +kiddy +khanna +ketcher +kerschner +kerfien +kensey +kenley +kenan +kemplin +kellerhouse +keesling +keep +keena +keas +kaplin +kanady +kampen +jutras +jungers +julio +jeschke +jen +janowski +janas +iskra +imperato +ikerd +igoe +hyneman +hynek +husain +hurrell +hultquist +hullett +hulen +huf +huberty +hoyte +hossain +hornstein +hori +hopton +holms +hollmann +holdman +holdeman +holben +hoffert +himel +hillsman +hillary +herdt +hellyer +hellen +heister +heimer +heidecker +hedgpeth +hedgepath +hebel +heatwole +hayer +hausner +haskew +haselden +hartranft +harsch +harres +harps +hardimon +halm +hallee +hallahan +hackley +hackenberg +hachey +haapala +guynes +gunnerson +gunby +gulotta +gudger +groman +grignon +griebel +gregori +greenan +grauer +gourd +gorin +gorgone +gooslin +goold +goltz +goldberger +gobble +glotfelty +glassford +glance +gladwin +giuffre +gilpatrick +germaine +gerdts +genna +geisel +gayler +gaunce +gaulding +gateley +gassman +gash +garson +garron +garand +gangestad +gallow +galbo +gabrielli +fullington +fucci +frum +frieden +friberg +frasco +francese +fowle +foucher +fothergill +foraker +fonder +foisy +fogal +flurry +flenniken +fitzhenry +fishbein +finton +filmore +filice +feola +felberbaum +fausnaught +fasciano +farrah +farquharson +faires +estridge +essman +enz +enriques +emmick +ekker +ekdahl +eisman +eggleton +eddinger +eakle +eagar +durio +dunwoody +duhaime +duenes +duden +dudas +dresher +dresel +doutt +donlan +donathan +domke +dobrowolski +dingee +dimmitt +dimery +dilullo +deveaux +devalle +desper +desnoyers +desautels +derouin +derbyshire +denmon +dena +demski +delucca +delpino +delmont +deller +dejulio +deibler +dehne +deharo +degner +defore +deerman +decuir +deckman +deasy +dease +deaner +dawdy +daughdrill +darrigo +darity +daniele +dalbey +dagenhart +daffron +curro +curnutte +curatolo +cruikshank +crosswell +croslin +croney +crofton +criado +crecelius +coscia +conniff +commodore +coltharp +colonna +collyer +collington +cobbley +coache +clonts +cloe +cliett +clemans +clara +cid +christo +chrisp +china +chiarini +chia +cheatam +cheadle +che +chauncey +chand +chadd +cervera +cerulli +cerezo +cedano +cayetano +cawthorne +cavalieri +cattaneo +caryl +cartlidge +carrithers +carreira +carranco +cargle +candanoza +camille +camburn +calender +calderin +calcagno +cahn +cadden +byham +buttry +burry +burruel +burkitt +burgio +burgener +buescher +buckalew +brymer +brumett +brugnoli +brugman +brosnahan +bronder +broeckel +broderson +brisbon +brinsfield +brinks +bresee +bregman +branner +brambila +brailsford +bouska +boster +borucki +bortner +boroughs +borgeson +bonier +bomba +bolender +boesch +boeke +bloyd +bley +binger +billing +bilbro +biery +bichrest +bezio +bevel +berrett +bermeo +bergdoll +bercier +benzel +bentler +bennetts +belnap +bellini +beitz +behrend +bednarczyk +bearse +batman +bartolini +bartol +barretta +barbero +barbaro +banvelos +bankes +ballengee +baldon +aye +ausmus +atilano +atienza +aschenbrenner +arora +armstong +aquilino +appleberry +applebee +apolinar +antos +angles +andrepont +ancona +amesquita +alvino +altschuler +allin +alire +ainslie +agular +aeschliman +accetta +abdulla +abbe +zwart +zufelt +zona +zirbel +zingaro +zilnicki +zenteno +zent +zemke +zayac +zarrella +yoshimoto +yearout +wrench +world +womer +woltman +wolin +wolery +woldt +witts +wittner +witherow +winward +winrow +wiemann +wichmann +whitwell +whitelaw +wheeless +whalley +wey +wessner +wenzl +wene +weatherbee +waye +wattles +wanke +walkes +waldeck +vonruden +voisine +vogus +vittetoe +villalva +villacis +victorian +verge +venturini +venturi +venson +vanloan +vanhooser +vanduzer +vandever +vanderwal +vanderheyden +vanbeek +vanbebber +vallance +vales +vahle +urbain +upshur +umfleet +twist +tsuji +trybus +triolo +trimarchi +trezza +trenholm +tovey +tourigny +torry +torrain +torgeson +tongue +tomey +tischler +tinkler +tinder +ticknor +tibbles +tibbals +throneberry +thormahlen +thibert +thibeaux +theurer +templet +tegeler +tavernier +taubman +tamashiro +tallon +tallarico +taboada +sypher +sybert +swyers +switalski +swinger +swedberg +suther +surprenant +sullen +sulik +sugden +suder +suchan +such +strube +stroope +strittmatter +streett +straughn +strasburg +stjacques +stimage +stimac +stifter +stgelais +steinhart +stehlik +steffenson +steenbergen +stanbery +stallone +sprung +spraggs +spoto +spilman +speno +spanbauer +spalla +spagnolo +soliman +solan +sobolik +snelgrove +snedden +smale +sliter +slankard +sircy +signor +shutter +shurtliff +shur +show +shirkey +shi +shewmake +shams +shadley +shaddox +sgro +serfass +seppala +segawa +segalla +seaberry +scruton +scism +schwein +schwartzman +schwantes +schomer +schoenborn +schlottmann +schissler +scheurer +schepis +scheidegger +saunier +sauders +sassman +sannicolas +sanderfur +salser +sagar +saffer +saeed +sadberry +saban +ryce +rybak +rux +rumore +rummell +rummage +rudasill +rozman +rota +rossin +rosell +rosel +romberg +rojero +rochin +rochell +robideau +robarge +roath +risko +ringel +ringdahl +riera +riemann +ribas +revard +renna +renegar +reinwald +rehman +regal +reels +ree +redel +reasons +raysor +rathke +rapozo +rampton +ramaker +rakow +raia +radin +raco +rackham +racca +racanelli +rabun +quaranta +purves +pundt +protsman +prosper +prezioso +presutti +president +presgraves +poydras +portnoy +portalatin +pop +pontes +poehler +poblete +poat +plumadore +pleiman +pizana +piscopo +piraino +pinelli +pillai +picken +picha +piccoli +philen +petteway +petros +peskin +perugini +perrella +pernice +peper +pensinger +pembleton +patron +passman +parrent +panetta +pancake +pallas +palka +pais +paglia +padmore +oum +ottesen +ost +oser +ortmann +ormand +oriol +orick +oler +okafor +ohair +obert +oberholtzer +number +nowland +nosek +nordeen +nolf +nogle +nobriga +nicley +niccum +newingham +neumeister +neugebauer +netherland +nerney +neiss +neis +neider +neeld +nailor +mustain +mussman +musante +murton +murden +munyon +muldrew +motton +moscoso +moschella +moroz +mormon +morelos +morace +moone +montesano +montemurro +montas +montalbo +molander +mleczko +miyake +mitschke +minger +minelli +minear +millener +mihelich +miedema +miah +metzer +mery +merrigan +merck +mennella +membreno +melecio +melder +mehling +mehler +medcalf +meche +mealing +mcqueeney +mcphaul +mcmickle +mcmeen +mcmains +mclees +mcgowin +mcfarlain +mcdivitt +mccotter +mcconn +mcclane +mccaster +mcbay +mcbath +mayoral +mayeux +matsuo +masur +massman +marzette +martensen +marlett +markie +markgraf +marcinkowski +marchbanks +marcella +mansir +mandez +mancil +malagon +magnani +madonia +madill +madia +mackiewicz +macgillivray +macdowell +macbeth +mabee +lundblad +lovvorn +lovings +loreto +linz +linwood +linnell +linebaugh +lindstedt +lindbloom +linda +limberg +liebig +lickteig +lichtenberg +licari +lex +lewison +levario +levar +lepper +lenzen +lenderman +lemarr +leinen +leider +legrande +lefort +lebleu +leask +learn +leacock +lazano +lawalin +laven +laplaca +lant +langsam +langone +landress +landen +lande +lamorte +lairsey +laidlaw +laffin +lackner +lacaze +labuda +labree +labella +labar +kyer +kuyper +kulinski +kulig +kuhnert +kuchera +kubicek +kruckeberg +kruchten +krider +kotch +kornfeld +koren +koogler +koll +kole +kohnke +kohli +kofoed +koelling +kluth +klump +klopfenstein +klippel +klinge +klett +klemp +kleis +klann +kitzman +kinnan +kingsberry +kind +kina +kilmon +killpack +kilbane +kijowski +kies +kierstead +kettering +kesselman +kenton +kennington +keniston +kehrer +kearl +keala +kassa +kasahara +kantz +kalin +kaina +jupin +juntunen +juares +joynes +jovel +joos +jn +jiggetts +jervis +jerabek +jennison +jaso +janz +izatt +ishibashi +iannotti +hymas +huneke +hulet +hougen +horvat +horstmann +hopple +holtkamp +holsten +hohenstein +hoefle +hoback +hiney +hiemstra +herwig +herter +herriott +hermsen +herdman +herder +herbig +hem +helper +helling +helbig +heitkamp +heinrichs +heinecke +heileman +heffley +heavrin +heaston +haymaker +hauenstein +hartlage +harlin +harig +hardenbrook +hankin +hamiter +hagens +hagel +grizzell +griest +griese +grief +grennan +graden +gosse +gorder +goldin +goatley +gillespi +gilbride +giel +gianni +ghoston +getter +gershman +geisinger +gehringer +gedeon +gebert +gaxiola +gawronski +gau +gathright +gatchell +gargiulo +garg +galang +gadison +fyock +furniss +furby +funnell +frizell +frenkel +freeburg +frankhouser +franchi +foulger +formby +forkey +fonte +folson +follette +flicker +flavors +flavell +finegan +fill +filippini +ferencz +ference +fennessey +feggins +feehan +fazzino +fazenbaker +fausto +faunce +farraj +farnell +farler +farabee +falkowski +facio +etzler +ethington +esterline +esper +esker +erxleben +ericsson +erick +engh +emling +elridge +ellenwood +elfrink +ekhoff +eisert +eis +eifert +eichenlaub +egnor +eggebrecht +edlin +edberg +eble +eber +easler +duwe +dutta +dutremble +dusseault +durney +dunworth +dumire +dukeman +dufner +duey +duble +dreese +dozal +douville +dougal +doom +done +diver +ditmore +distin +dimuzio +dildine +dignan +dieterich +dieckman +didonna +dhillon +dezern +devereux +devall +detty +detamore +derksen +deremer +deras +denslow +deno +denicola +denbow +demma +demille +delisa +delira +delawder +delara +delahanty +dejonge +deininger +dedios +dederick +decelles +debus +debruyn +deborde +deak +dauenhauer +darsey +daring +dansie +dalman +dakin +dagley +czaja +cybart +cutchin +currington +curbelo +croucher +crinklaw +cremin +cratty +cranfield +crafford +cowher +cowboy +couvillion +couturier +counter +corter +coombes +contos +consolini +connaughton +conely +coltrane +collom +cockett +clepper +cleavenger +claro +clarkin +ciriaco +ciesla +cichon +ciancio +cianci +chynoweth +chuang +chrzanowski +christion +cholewa +chipley +chilcott +cheyne +cheslock +chenevert +cheers +charlot +chagolla +chabolla +cesena +cerutti +cava +caul +cassone +cassin +cassese +casaus +casali +cartledge +carsten +cardamone +carcia +carbonneau +carboni +carabello +capozzoli +capella +cap +cannata +campoverde +campeau +cambre +camberos +calvery +calnan +calmes +calley +callery +calise +cacciotti +cacciatore +butterbaugh +burgo +burgamy +burell +bunde +bumbalough +buel +buechner +buchannon +bryon +brunn +brost +broadfoot +brittan +brevard +breda +brazel +brayboy +brasier +boyea +boxx +both +boso +bosio +boruff +borda +bongiovanni +bolerjack +boedeker +blye +blumstein +blumenfeld +blinn +bleakley +blatter +blan +bjornson +bisignano +billick +bieniek +bhatti +bevacqua +betterton +berra +berenbaum +bensinger +bennefield +belvins +belson +bellin +beighley +beecroft +beaudreau +baynard +bautch +bausch +basch +bartleson +barthelemy +barak +balzano +balistreri +bailer +bagnall +bagg +bae +auston +augustyn +aslinger +ashalintubbi +artist +arjona +arebalo +arab +appelbaum +anna +angst +angert +angelucci +andry +andersson +amorim +amavisca +alward +alvelo +alvear +alumbaugh +alsobrook +alli +allgeier +allende +aldrete +akiyama +ahlquist +adolphson +addario +acoff +abelson +abasta +zulauf +zirkind +zeoli +zemlicka +zawislak +zappia +zanella +yelvington +yeatman +yanni +wragg +wissing +wischmeier +wirta +wiren +wilmouth +williard +willert +willaert +wildt +whelpley +westwood +weingart +weidenbach +weidemann +weatherman +weakland +watwood +wattley +waterson +wambach +walzer +waldow +waag +vorpahl +volkmann +vitolo +visitacion +vincelette +vina +viggiano +vieth +vidana +vert +verna +verges +verdejo +venzon +velardi +varian +vargus +vandermeulen +vandam +vanasse +vanaman +utzinger +uriostegui +uplinger +twiss +tumlinson +tschanz +trunnell +troung +troublefield +trojacek +trial +treloar +tranmer +touchton +torsiello +torina +tootle +toki +toepfer +tippin +tippie +thronson +thomes +tezeno +texada +testani +tessmer +terrel +terra +terlizzi +tempel +temblador +tayler +tawil +tasch +tames +talor +talerico +swinderman +sweetland +swager +sulser +sullens +subia +sturgell +stumpff +stufflebeam +stucki +strohmeyer +strebel +straughan +strackbein +stobaugh +stetz +stelter +steinmann +steinfeld +stefani +stecher +stanwood +stanislawski +stander +speziale +soppe +soni +sol +sobotka +snipe +smuin +slider +slee +skerrett +sjoberg +sittig +simonelli +simo +sima +silvio +silverio +silveria +silsby +sillman +sienkiewicz +sick +sia +shomo +shoff +shoener +shiba +sherfey +shehane +shawl +sexson +setton +sergi +selvy +seiders +seegmiller +sebree +seabury +scroggin +sconyers +schwalb +schurg +schulenberg +schuld +schrage +schow +schon +schnur +schneller +schmidtke +schlatter +schieffer +schenkel +scheeler +schauwecker +schartz +schacherer +scafe +sayegh +savidge +saur +sarles +sarkissian +sarkis +sarcone +sagucio +saffell +saenger +sacher +rylee +ruvolo +ruston +ruple +rulison +ruge +ruffo +ruehl +rueckert +rudman +rudie +rubert +rozeboom +roysden +roylance +rothchild +rosse +rosecrans +rodrick +rodi +rockmore +robnett +roberti +rivett +riva +ritzel +rierson +ricotta +ricken +rezac +rendell +remo +reitman +reindl +reeb +reddic +reddell +rebuck +reali +raye +raso +ramthun +ramsden +rameau +ralphs +rak +rago +racz +quinteros +quinter +quinley +quiggle +quaid +purvines +purinton +purdum +pummill +puglia +puett +ptacek +przybyla +prowse +providence +prestwich +pracht +poutre +poucher +portera +polinsky +poage +platts +pineau +pinckard +pilson +pilling +pilkins +pili +pikes +pigram +pietila +pickron +pia +philippi +philhower +pflueger +pfalzgraf +pettibone +pett +petrosino +persing +perrino +perotti +periera +peri +peredo +peralto +pennywell +pennel +pen +pellegren +pella +pedroso +paulos +paulding +pates +pasek +paramo +paolino +panganiban +paneto +paluch +ozaki +ownbey +overfelt +outman +opper +onstad +oland +okuda +oertel +oelke +normandeau +nordby +nordahl +noecker +noblin +no +niswonger +nishioka +nett +nephew +negley +needles +nedeau +natera +nachman +naas +musich +mungin +mourer +mounsey +mottola +mothershed +moskal +mosbey +morini +moreles +mood +montaluo +moneypenny +monda +moench +moates +moad +mixer +missildine +misiewicz +mirabella +minott +minnifield +mincks +milum +milani +mikelson +mestayer +mess +mertes +merrihew +merlos +meritt +melnyk +medlen +meder +mean +mcvea +mcquarrie +mcquain +mclucas +mclester +mckitrick +mckennon +mcinnes +mcgrory +mcgranahan +mcglamery +mcgivney +mcgilvray +mccuiston +mccuin +mccrystal +mccolley +mcclerkin +mcclenon +mccamey +mcaninch +mazariegos +maynez +mattioli +mastronardi +masone +marzett +marsland +mari +margulies +margolin +malatesta +malachi +mainer +maietta +magrath +maese +madkins +madeiros +madamba +mackson +mac +maben +lytch +lundgreen +lumb +lukach +luick +luetkemeyer +luechtefeld +ludy +ludden +luckow +lubinsky +lowes +lout +lorenson +loran +lopinto +looby +lones +livsey +liskey +lisby +lintner +lindow +lindblom +liming +liechty +leth +lesniewski +lenig +lemonds +leisy +lehrer +lehnen +lehmkuhl +leeth +leer +leeks +lechler +lebsock +lavere +lautenschlage +laughridge +lauderback +laudenslager +lassonde +laroque +laramee +laracuente +lapeyrouse +lampron +lamers +lamer +laino +lague +laguardia +lafromboise +lafata +lacount +lachowicz +kysar +kwiecien +kuffel +kueter +kronenberg +kristensen +kristek +krings +kriesel +krey +krebbs +kreamer +krabbe +kossman +kosakowski +kosak +kopacz +konkol +koepsell +koening +koen +knerr +knapik +kluttz +klocke +klenk +klemme +klapp +kitchell +kita +kissane +kirkbride +kirchhoff +kinter +kinsel +kingsland +kimmer +kimler +killoran +kieser +khalsa +khalaf +kettel +kerekes +keplin +kentner +kennebrew +kenison +kellough +kellman +keatts +keasey +kauppi +katon +kari +kanner +kampa +kall +kai +kaczorowski +kaczmarski +juarbe +jordison +jonathan +jobst +jezierski +jeanbart +jarquin +janey +jagodzinski +ishak +isett +isa +infantino +imburgia +illingworth +hysmith +hynson +hydrick +hurla +hunton +hunnell +humbertson +housand +hottle +hosch +hoos +honn +hohlt +hodel +hochmuth +hixenbaugh +hislop +hisaw +hintzen +hilgendorf +hilchey +higgens +hersman +herrara +hendrixson +hendriks +hemond +hemmingway +heminger +helgren +heisey +heilmann +hehn +hegna +heffern +hawrylak +haverty +hauger +haslem +harnett +harb +happ +hanzlik +hanway +hanby +hanan +hamric +hammaker +halas +hagenbuch +hacking +habeck +gwozdz +gutter +gunia +guise +guadarrama +grubaugh +grivas +griffieth +grieb +grewell +gregorich +grazier +graeber +graciano +gowens +goodpaster +gondek +gohr +goffney +godbee +gitlin +gisler +gin +gillyard +gillooly +gilchrest +gilbo +gierlach +giebler +giang +geske +gervasio +gertner +gehling +geeter +gaus +gattison +gatica +gathings +gath +gassner +gassert +garabedian +gamon +gameros +galban +gabourel +gaal +fuoco +fullenwider +fudala +friscia +franceschini +foronda +fontanilla +florey +florentino +flore +flegle +flecha +fisler +fischbach +fiorita +fines +figura +figgins +fichera +fester +ferra +fear +fawley +fawbush +fausett +farnes +farago +fairclough +fahie +fabiani +everest +evanson +eutsey +eshbaugh +esh +ertle +eppley +englehardt +engelhard +emswiler +elza +elling +elderkin +eland +efaw +edstrom +edmund +edgemon +ecton +echeverri +ebright +earheart +dynes +dygert +dyches +dulmage +duhn +duhamel +dues +dubrey +dubray +dubbs +drone +drey +drewery +dreier +dorval +dorough +dorais +donlin +donatelli +doke +dohm +doetsch +dobek +ditty +disbrow +ding +dinardi +dillahunty +dillahunt +diers +dier +diekmann +diangelo +deskin +deschaine +depaoli +denner +demyan +demont +demaray +delillo +deleeuw +deibel +decato +deblasio +debartolo +daubenspeck +darner +dardon +danziger +danials +damewood +dalpiaz +dallman +dallaire +cunniffe +cumpston +cumbo +cubero +cruzan +cronkhite +critelli +crimi +creegan +crean +craycraft +crater +cranfill +coyt +courchesne +coufal +corradino +corprew +colville +cocco +coby +clinch +clickner +clavette +claggett +cirigliano +ciesielski +christain +chesbro +chavera +chard +casteneda +castanedo +cast +casseus +casa +caruana +carnero +cappelli +capellan +canedy +cancro +camilleri +calero +cada +burghart +burbidge +bulfer +buis +budniewski +bucko +bruney +brugh +brossard +brodmerkel +brockmann +bring +brigmond +briere +bremmer +breck +breau +brautigam +brasch +brandenberger +bran +bragan +bozell +bowsher +bosh +borgia +borey +boomhower +bonneville +bonam +bolland +boise +boeve +boettger +boersma +boateng +bliven +blazier +blanca +blahnik +bjornstad +bitton +biss +birkett +billingsly +biagioni +bettle +bertucci +bertolino +bermea +bergner +berber +bensley +bendixen +beltrami +bellone +belland +bein +behringer +begum +beans +bayona +batiz +bassin +baskette +bartolomeo +bartolo +bartholow +barkan +barish +barett +bardo +bamburg +ballerini +balla +balis +bakley +bailon +bachicha +babiarz +ayars +axton +axel +awong +awe +awalt +auslander +ausherman +aumick +athens +atha +atchinson +aslett +askren +arrowsmith +arras +arnhold +armagost +arey +arcos +archibeque +antunes +antilla +ann +andras +amyx +amison +amero +alzate +alphonse +alper +aller +alioto +alexandria +aigner +agtarap +agbayani +adami +achorn +aceuedo +acedo +abundis +aber +abee +zuccaro +ziglar +zier +ziebell +zieba +zamzow +zahl +yurko +yurick +yonkers +yerian +yeaman +yarman +yann +yahn +yadon +yadao +woodbridge +wolske +wollenberg +wojtczak +wnuk +witherite +winther +winick +widell +wickens +whichard +wheelis +wesely +wentzell +wenthold +wemple +weisenburger +wehling +weger +weaks +water +wassink +warn +walquist +wadman +wacaster +waage +voliva +vlcek +villafana +vigliotti +viger +viernes +viands +vey +veselka +versteeg +vero +verhoeven +vendetti +velardo +vatter +vasconcellos +varn +vanwagner +vanvoorhis +vanhecke +vanduyn +vandervoort +vanderslice +valone +vallier +vails +uvalle +ursua +urenda +upright +uphoff +tustin +turton +turnbough +turck +tullio +tuch +truehart +tropea +troester +trippe +tricarico +trevarthen +trembly +trace +trabue +traber +toto +tosi +toal +tinley +tingler +timoteo +tiffin +tien +ticer +thurgood +thorman +therriault +theel +tessman +tekulve +tejera +tebbs +tavernia +tarpey +tallmadge +takemoto +szot +sylvest +swindoll +swearinger +swantek +swaner +swainston +susi +surrette +sur +supple +sullenger +sudderth +suddarth +suckow +strider +strege +stream +strassburg +stoval +stotz +stoneham +stilley +stille +stierwalt +stfleur +steuck +stermer +stclaire +stano +staker +stahler +stablein +srinivasan +squillace +sprvill +sproull +sprau +sporer +spore +spittler +speelman +sparr +sparkes +spang +spagnuolo +sosinski +sorto +sorkin +sondag +sollers +socia +snarr +smrekar +smolka +slyter +slovinsky +sliwa +slavik +slatter +skiver +skeem +skala +sitzes +sitsler +sitler +sinko +simser +siegler +sideris +shrewsberry +shoopman +shoaff +shira +shindler +shimmin +shill +shenkel +shemwell +shehorn +severa +sergio +semones +selsor +seller +sekulski +segui +sechrest +scot +schwer +schwebach +schur +schmiesing +schlick +schlender +schebler +schear +schapiro +sauro +saunder +sauage +satterly +saraiva +saracino +saperstein +sanmartin +sanluis +sandt +sandrock +sammet +sama +salk +sakata +saini +sackrider +rys +russum +russi +russaw +rozzell +roza +rowlette +rothberg +rossano +rosebrock +romanski +romanik +romani +roma +roiger +roig +roehr +rodenberger +rodela +rod +rochford +ristow +rispoli +ripper +rigo +riesgo +riebel +ribera +ribaudo +rhoda +reys +resendes +repine +reisdorf +reisch +rebman +rasmus +raske +ranum +rames +rambin +raman +rajewski +raffield +rady +radich +raatz +quinnie +pyper +puthoff +prow +proehl +pribyl +pretti +prete +presby +poyer +powelson +porteous +poquette +pooser +pollan +ploss +plewa +plants +placide +pion +pinnick +pinales +pin +pillot +pille +pilato +piggee +pietrowski +piermarini +pickford +piccard +phenix +pevey +petrowski +petrillose +pesek +perrotti +perfecto +peppler +peppard +penfold +pellitier +pelland +pehowic +pedretti +paules +passero +pasha +panza +pallante +palau +pakele +pacetti +paavola +overy +overson +outler +osegueda +ord +oplinger +oldenkamp +ok +ohern +oetting +odums +oba +nowlen +nowack +nordlund +noblett +nobbe +nierman +nichelson +niblock +newbrough +nest +nemetz +neeson +needleman +necessary +navin +nastasi +naslund +naramore +nakken +nakanishi +najarro +mushrush +muma +mulero +morganfield +moreman +morain +moquin +montrose +monterrosa +monsivais +monroig +monje +monfort +moises +moffa +moeckel +mobbs +mitch +misiak +mires +mirelez +mineo +mineau +milnes +mikeska +michelin +michalowski +meszaros +messineo +meshell +merten +meola +menton +mends +mende +memmott +melius +mehan +mcnickle +mcmorran +mclennon +mcleish +mclaine +mckendry +mckell +mckeighan +mcisaac +mcie +mcguinn +mcgillis +mcfatridge +mcfarling +mcelravy +mcdonalds +mcculla +mcconnaughy +mcconnaughey +mcchriston +mcbeath +mayr +matyas +matthiesen +matsuura +matinez +mathys +matarazzo +masker +masden +mascio +martis +marrinan +marinucci +margerum +marengo +manthe +mansker +manoogian +mankey +manigo +manier +mangini +mandelbaum +maltese +malsam +mallo +maliszewski +mainolfi +maharaj +maggart +magar +maffett +macmaster +macky +macdonnell +mable +lyvers +lyn +luzzi +lutman +luk +lover +lovan +lonzo +longest +longerbeam +lofthouse +loethen +lodi +llorens +lizardo +lizama +liz +litscher +lisowski +lipski +lipsett +lipkin +linzey +lineman +limerick +limb +limas +lige +lierman +liebold +liberti +leverton +levene +lesueur +lenser +lenker +lemme +legnon +lefrancois +ledwell +lavecchia +laurich +lauricella +latino +lannigan +landor +lamprecht +lamountain +lamore +lamonica +lammert +lamboy +lamarque +lamacchia +lalley +lagace +lacorte +lacomb +kyllonen +kyker +kye +kuschel +kupfer +kunde +kucinski +kubacki +kuan +kroenke +krech +koziel +kovacich +kothari +koth +kotek +kostelnik +kosloski +knoles +knabe +kmiecik +klingman +kliethermes +kleffman +klees +klaiber +kittell +kissling +kisinger +kintner +kinoshita +kiener +khouri +kerman +kelii +keirn +keezer +kaup +kathan +kaser +karlsen +kapur +kandoll +kammel +kahele +justesen +jue +jonason +johnsrud +joerling +jochim +jespersen +jeong +jenness +jedlicka +jakob +isaman +inghram +ingenito +imperial +iadarola +hynd +huxtable +huwe +huron +hurless +humpal +hughston +hughart +huggett +hugar +huether +howdyshell +houtchens +houseworth +hoskie +holshouser +holmen +holloran +hohler +hoefler +hodsdon +hochman +hjort +hippert +hippe +hinzman +hillock +hilden +hilde +heyn +heyden +heyd +hergert +henrikson +henningsen +hendel +helget +helf +helbing +heintzman +heggie +hege +hecox +heatherington +heare +haxton +haverstock +haverly +hatler +haselton +hase +hartzfeld +harten +harken +hargrow +haran +hanton +hammar +hamamoto +halper +halko +hackathorn +haberle +haake +gunnoe +gunkel +gulyas +guiney +guilbeau +guider +guerrant +gudgel +guarisco +grossen +grossberg +gropp +groome +grobe +gremminger +greenley +grauberger +grabenstein +gowers +gostomski +gosier +goodenow +gonzoles +goliday +goettle +goens +goates +glymph +glavin +glassco +gladys +gladfelter +glackin +githens +girgis +gimpel +gilbreth +gilbeau +giffen +giannotti +gholar +gervasi +gertsch +gernatt +gephardt +genco +gehr +geddis +gear +gase +garrott +garrette +gapinski +ganter +ganser +gangi +gangemi +gang +gallina +galdi +gailes +gaetano +gadomski +gaccione +fuschetto +furtick +furfaro +fullman +frutos +fruchter +frogge +freytag +freudenthal +fregoe +franzone +frankum +francia +franceschi +fraction +forys +forero +folkers +foil +flug +flitter +flemons +fitzer +firpo +finizio +filiault +figg +fiddler +fichtner +fetterolf +ferringer +feil +fayne +farro +faddis +ezzo +ezelle +eynon +evitt +eutsler +euell +escovedo +erne +eriksson +enriguez +empson +elkington +elk +eisenmenger +eidt +eichenberger +ehrmann +ediger +earlywine +eacret +duzan +dunnington +duffer +ducasse +dubiel +drovin +drager +drage +donham +donat +dona +dolinger +dokken +doepke +dodwell +docherty +distasio +disandro +diniz +digangi +didion +dezzutti +devora +detmer +deshon +derrigo +dentler +demoura +demeter +demeritt +demayo +demark +demario +delzell +delnero +delgrosso +dejarnett +debernardi +dearmas +dau +dashnaw +daris +danks +danker +dangler +daignault +dafoe +dace +curet +cumberledge +culkin +cuba +crowner +crocket +crawshaw +craun +cranshaw +cragle +courser +costella +cornforth +corkill +cordy +coopersmith +conzemius +connett +connely +condict +condello +concha +comley +colt +collen +cohoon +coday +clugston +clowney +clippard +clinkenbeard +clines +clelland +clause +clapham +clancey +clabough +cichy +cicalese +chuck +chua +chittick +chisom +chisley +chino +chinchilla +cheramie +cerritos +cercone +cena +cawood +cavness +catanzarite +casada +carvell +carp +carmicheal +carll +cardozo +caplin +candia +canby +cammon +callister +calligan +calkin +caillouet +buzzelli +bute +bustillo +bursey +burgeson +bupp +bulson +bulls +buist +buffey +buczkowski +buckbee +bucio +brueckner +broz +brookhart +brong +brockmeyer +broberg +brittenham +brisbois +bridgmon +bride +breyer +brede +breakfield +breakey +brauner +branigan +brandewie +branche +brager +brader +bovell +bouthot +bostock +bosma +boseman +boschee +borthwick +borneman +borer +borek +boomershine +boni +bommarito +bolman +boleware +boisse +boehlke +bodle +blash +blasco +blakesley +blacklock +blackley +bittick +birks +birdin +bircher +bilbao +bick +biby +bertoni +bertino +bertini +berson +bern +berkebile +bergstresser +benne +benevento +belzer +beltre +bellomo +bellerose +beilke +begeman +bebee +beazer +beaven +beamish +baymon +baston +bastidas +basom +basket +basey +bartles +baroni +barocio +barnet +barclift +banville +balthazor +balleza +balkcom +baires +bailiff +bailie +baik +baggott +bagen +bachner +babington +babel +asmar +askin +arvelo +artega +arrendondo +arreaga +arrambide +arquette +aronoff +arico +argentieri +arevalos +archbold +apuzzo +antczak +ankeny +angelle +angelini +anfinson +amer +amberg +amarillas +altier +altenburg +alspach +alosa +allsbrook +alexopoulos +aleem +aldred +albertsen +akerson +ainsley +agler +adley +addams +acoba +achille +abplanalp +abella +abare +zwolinski +zollicoffer +zola +zins +ziff +zenner +zender +zelnick +zelenka +zeches +zaucha +zauala +zappa +zangari +zagorski +youtsey +yorker +yell +yasso +yarde +yarbough +xiao +woolever +woodsmall +woodfolk +wonders +wobig +wixson +wittwer +wirtanen +winson +wingerd +wilkening +wilhelms +wierzbicki +wiechman +whites +weyrick +wessell +wenrick +wenning +weltz +weinrich +weiand +wehunt +wareing +walth +waibel +wahlquist +vona +voelkel +vitek +vinsant +vincente +vilar +viel +vicars +vermette +verma +vent +venner +veazie +vayda +vashaw +varon +vardeman +vandevelde +vanbrocklin +valery +val +vaccarezza +urquidez +urie +urbach +uram +ungaro +umali +ulsh +tutwiler +turnbaugh +tumminello +tuite +tueller +trulove +troha +trivino +trisdale +trippett +tribbett +treptow +tremain +travelstead +trautwein +trautmann +tram +traeger +tonelli +tomsic +tomich +tomasulo +tomasino +tole +todhunter +toborg +tischer +tirpak +tircuit +tinnon +tinnel +tines +tina +timbs +tilden +tiede +thumm +throne +throgmorton +thorndike +thornburgh +thoren +thomann +therrell +thau +thammavong +tetrick +tessitore +tesreau +teicher +teaford +tauscher +tauer +tanabe +talamo +takeuchi +taite +tadych +sweeton +swecker +swartzentrube +swarner +surrell +surbaugh +suppa +sunshine +sumbry +suchy +stuteville +studt +stromer +strome +streng +stonestreet +stockley +stmichel +sticker +stfort +sternisha +stensrud +steinhardt +steinback +steichen +stauble +stasiak +starzyk +stango +standerfer +stachowiak +springston +spratlin +spracklen +sponseller +spilker +spiegelman +spellacy +speiser +spaziani +spader +spackman +space +sorum +sopha +sollis +sollenberger +solivan +solheim +sokolsky +sogge +smyser +smitley +sloas +slinker +skora +skiff +skare +siverd +sivels +siska +siordia +simmering +simko +sime +silmon +silano +sieger +siebold +shukla +shreves +shoun +shortle +shonkwiler +shoals +shimmel +shiel +shieh +sherbondy +shenkman +shein +shearon +shean +shatz +shanholtz +shafran +shaff +shackett +sgroi +sewall +severy +sethi +sessa +sequra +sepulvado +seper +senteno +sendejo +semmens +seipp +segler +seegers +sedwick +sedore +sechler +sebastiano +scovel +scotton +scopel +schwend +schwarting +schutter +schrier +schons +scholtes +schnetzer +schnelle +schmutz +schlichter +schelling +schams +schamp +scarber +scallan +scalisi +scaffidi +saxby +sawrey +sauvageau +sauder +sarrett +sanzo +santizo +santella +santander +sandez +sandel +sammon +salsedo +salge +sailors +sagun +safi +sader +sacchetti +sablan +saber +saade +runnion +runkel +rung +rumbo +ruesch +ruegg +ruckle +ruchti +rubens +rubano +rozycki +roupe +roufs +rossel +rosmarin +rosero +rosenwald +roselle +ronca +romos +rolla +rohling +rohleder +roell +roehm +rochefort +roch +robotham +rivenburgh +riopel +riederer +ridlen +rias +rhudy +reynard +retter +respess +reppond +repko +rengifo +reinking +reichelt +reeh +redenius +rebolledo +raymundo +rauh +ratajczak +rapley +ranalli +ramie +raitt +radloff +radle +rabbitt +quay +quant +pusateri +puffinberger +puerta +provencio +proano +privitera +prenger +prellwitz +pousson +potier +poster +portz +portlock +porth +portela +portee +porchia +pollick +polinski +polfer +polanski +polachek +pluta +plourd +plauche +pitner +piontkowski +pileggi +pierotti +pico +piacente +phinisee +phaup +pfost +pettinger +pettet +petrich +peto +persley +persad +perlstein +perko +pere +penders +peifer +peco +pear +pay +pawley +pash +parrack +parady +papen +pangilinan +pandolfo +palone +palmertree +padin +ou +ottey +ottem +ostroski +ornstein +ormonde +onstott +oncale +oltremari +olcott +olan +oishi +oien +odonell +odonald +ode +obeso +obeirne +oatley +nusser +novo +novicki +noreen +nora +nitschke +nistler +nim +nikkel +niese +nierenberg +nield +niedzwiecki +niebla +niebel +nicklin +neyhart +newsum +nevares +nageotte +nagai +myung +mutz +murata +muralles +munnerlyn +mumpower +muegge +muckle +muchmore +moulthrop +motl +moskos +mortland +morring +mormile +morimoto +morikawa +morgon +mordecai +montour +mont +mongan +monell +miyasato +mish +minshew +mimbs +millin +milliard +mihm +middlemiss +miano +mew +mesick +merlan +mendonsa +mench +melonson +melling +mecca +meachem +mctighe +mcnelis +mcmurtrey +mcmurphy +mckesson +mckenrick +mckelvie +mcjunkins +mcgory +mcgirr +mcgeever +mcfield +mcelhinney +mccrossen +mccommon +mccannon +mazyck +mawyer +maull +matute +mathies +maschino +marzan +martinie +marrotte +marmion +markarian +marinacci +margolies +margeson +marcia +marcel +marak +maraia +maracle +manygoats +mano +manker +mank +mandich +manderson +maltz +malmquist +malacara +majette +mais +magnan +magliocca +madina +madara +macwilliams +macqueen +maccallum +lyde +lyday +lutrick +lurz +lurvey +lumbreras +luhrs +luhr +lue +lowrimore +lowndes +lowers +lourenco +lougee +lorona +longstreth +loht +lofquist +loewenstein +lobos +lizardi +liverpool +lionberger +limoli +liljenquist +liguori +liebl +liburd +leukhardt +letizia +lesinski +lepisto +lenzini +leisenring +leipold +leier +leggitt +legare +leaphart +lazor +lazaga +lavey +laue +laudermilk +lauck +lassalle +larsson +larison +lanzo +lantzy +lanners +langtry +landford +lancour +lamour +lambertson +lalone +lairson +lainhart +lagreca +lacina +labranche +labate +kurtenbach +kuipers +kuechle +kue +kubo +krinsky +krauser +kraeger +kracht +kozeliski +kozar +kowalik +kotler +kotecki +koslosky +kosel +koob +kolasinski +koizumi +kohlman +koffman +knutt +knore +knaff +kmiec +klamm +kittler +kitner +kirkeby +kiper +kindler +kilmartin +killings +killin +kilbride +kerchner +kendell +keddy +keaveney +kearsley +karras +karlsson +karalis +kappes +kapadia +kallman +kallio +kalil +kader +jurkiewicz +joya +johann +jitchaku +jillson +jex +jeune +jarratt +jarchow +janak +ivins +ivans +isenhart +inocencio +inoa +imhof +iacono +hynds +hutching +hutchin +hulsman +hulsizer +hueston +huddleson +hrbek +howry +housey +hounshell +hosick +hortman +horseman +horky +horine +hootman +honeywell +honeyestewa +holste +holien +holbrooks +hoffmeyer +hof +hoese +hoenig +hirschfeld +hildenbrand +higson +higney +hibert +hibbetts +hewlin +hesley +herrold +hermon +heritage +hepker +henwood +helbling +heinzman +heidtbrink +hedger +havey +hatheway +hartshorne +harpel +haning +handelman +hamalainen +hamad +halt +halasz +haigwood +haggans +hackshaw +guzzo +gunner +gundrum +guilbeault +gugliuzza +guglielmi +gue +guderian +gruwell +grunow +grundman +gruen +grotzke +grossnickle +groomes +grode +grochowski +grob +grein +greif +greenwall +greenup +grassl +grannis +grandfield +grames +grabski +grabe +gouldsberry +gotham +gosch +goody +goodling +goodermote +gonzale +golebiowski +goldson +godlove +glanville +gillin +gilkerson +giessler +giambalvo +giacomini +giacobbe +ghio +gergen +gentz +genrich +gelormino +gelber +geitner +geimer +gauthreaux +gaultney +garvie +gareau +garbo +garbacz +ganoe +gangwer +gandarilla +galyen +galt +galluzzo +gallon +galardo +gager +gaddie +gaber +gabehart +gaarder +fusilier +furnari +furbee +fugua +fruth +frohman +friske +frilot +fridman +frescas +freier +frayer +franzese +franklyn +frankenberry +frain +fosse +foresman +forbess +foot +florida +flook +fletes +fleer +fleek +fleegle +fishburne +fiscalini +finnigan +fini +filipiak +figueira +fiero +ficek +fiaschetti +ferren +ferrando +ferman +fergusson +fenech +feiner +feig +fees +faulds +fate +fariss +fantasia +falor +falke +ewings +eversley +everding +eunice +etling +essen +erskin +enstrom +enrico +engebretsen +ender +emma +eitel +eichberger +ehler +eekhoff +edrington +edmonston +edgmon +edes +eberlein +dwinell +dux +dupee +dunklee +dunk +dungey +dunagin +dumoulin +duggar +duenez +dudzic +dudenhoeffer +ducey +dub +drouillard +dreibelbis +dreger +dreesman +draughon +downen +double +dorminy +dominic +dombeck +dolman +doebler +dittberner +dishaw +disanti +dinicola +dinham +dimino +dilling +difrancesco +dicello +dibert +deshazer +deserio +descoteau +deruyter +dering +depinto +dente +demus +demattos +demarsico +delude +dekok +debrito +debois +deakin +dea +dayley +dawsey +dauria +datson +darty +darsow +darragh +darensbourg +dalleva +dalbec +dadd +cutcher +curb +cung +cuello +cuadros +crute +crutchley +crispino +crislip +crisco +crevier +creekmur +crance +cragg +crager +cozby +coyan +coxon +covalt +couillard +costley +costilow +cossairt +corvino +corigliano +cordaro +corbridge +corban +coor +cooler +conkel +cong +conary +coltrain +collopy +colgin +colen +colbath +coiro +coffie +cochrum +cobbett +clopper +cliburn +clendenon +clemon +clementi +clausi +cirino +cina +churn +churchman +chilcutt +cherney +cheetham +cheatom +chatelain +chandra +chalifour +cesa +cervenka +cerullo +cerreta +cerbone +cecchini +ceccarelli +cawthorn +cavalero +catalina +castner +castlen +castine +casimiro +casdorph +cartmill +cartmell +carro +carriger +carlee +carias +caravella +cappas +capen +cantey +canedo +camuso +camps +campanaro +camero +cambria +calzado +callejo +caligiuri +cafaro +cadotte +cacace +byrant +busbey +burtle +burres +burnworth +burggraf +burback +bunte +bunke +bulle +bugos +budlong +buckhalter +buccellato +brummet +bruff +brubeck +brouk +broten +brosky +broner +brittle +brislin +brimm +brillhart +bridgham +brideau +brennecke +brenna +breer +breeland +bredesen +branden +brackney +brackeen +boza +boyum +bowdry +bowdish +bouwens +bouvier +bougie +bouche +bottenfield +bostian +bossie +bosler +boschert +boroff +borello +boom +bonser +bonfield +bon +bole +boldue +bogacz +boemer +bluth +bloxom +blickenstaff +blessinger +bleazard +blatz +blanchet +blacksher +birchler +binning +binkowski +biltz +bilotta +bilagody +bigbee +bieri +biehle +bidlack +betker +bethers +bethell +bertha +bero +bernacchi +bermingham +berkshire +benvenuto +bensman +benoff +bencivenga +beman +bellow +bellany +belflower +belch +bekker +bejar +beisel +beichner +began +beedy +beas +beanblossom +bawek +baus +baugus +battie +battershell +bateson +basque +basford +bartone +barritt +barko +bann +bamford +baltrip +balon +balliew +ballam +baldus +ayling +avelino +ashwell +ashland +arseneau +arroyos +armendarez +arita +argust +archuletta +arcement +antonacci +anthis +antal +annan +andree +anderman +amster +amiri +amadon +alveraz +altomari +altmann +altenhofen +allers +allbee +allaway +all +aleo +alcoser +alcorta +akhtar +ahuna +agramonte +agard +adkerson +achord +abt +abdi +abair +zurn +zoellner +zirk +zion +zee +zarro +zarco +zambo +zaiser +zaino +zachry +youd +yonan +yniguez +yepes +yeo +yellock +yellen +yeatts +yearling +yatsko +yannone +wyler +woodridge +wolfrom +wolaver +wolanin +wojnar +wojciak +wittmann +wittich +wiswell +wisser +wintersteen +wineland +willing +willford +wiginton +wigfield +wierman +wice +wiater +whitsel +whitbread +wheller +wettstein +werling +wente +wenig +wempe +welz +weinhold +weigelt +weichman +wedemeyer +weddel +ways +wayment +waycaster +wauneka +watzka +watton +warnell +warnecke +warmack +warder +wands +waldvogel +waldridge +wahs +wagganer +waddill +vyas +vought +votta +voiles +virga +viner +villella +villaverde +villaneda +viele +vickroy +vicencio +veve +vetere +vermilyea +verley +verburg +ventresca +veno +venard +venancio +velaquez +veenstra +vea +vasil +vanzee +vanwie +vantine +vant +vanschoyck +vannice +vankampen +vanicek +vandersloot +vanderpoel +vanderlinde +vallieres +uzzell +uzelac +uranga +uptain +updyke +uong +untiedt +umbrell +umbaugh +umbarger +ulysse +ullmann +ullah +tutko +turturro +turnmire +turnley +turcott +turbyfill +turano +tuminello +tumbleson +tsou +truscott +trulson +troutner +trone +troll +trinklein +tremmel +tredway +trease +traynham +traw +totty +torti +torregrossa +torok +tomkins +tomaino +tkach +tirey +tinsman +timpe +tiefenauer +tiedt +tidball +thwaites +thulin +throneburg +thorns +thorell +thorburn +thiemann +thieman +thesing +tham +terrien +terrance +telfair +taybron +tasson +tasso +tarro +tanenbaum +talent +tailor +taddeo +tada +taborn +tabios +szekely +szatkowski +sylve +swineford +swartzfager +swanton +swagerty +surrency +sunderlin +sumerlin +suero +suddith +sublette +stumpe +stueve +study +stuckert +strycker +struve +struss +strubbe +strough +strothmann +strahle +stoutner +stooksbury +stones +stonebarger +stokey +stoffer +stimmel +stief +stephans +stemper +steltenpohl +stellato +steinle +stegeman +steffler +steer +steege +steckman +stapel +stansbery +stanaland +stahley +stagnaro +stachowski +squibb +sprunger +sproule +sprehe +spreen +sprecher +sposato +spivery +souter +sopher +sommerfeldt +soffer +snowberger +snape +smylie +smyer +smack +slaydon +slatton +slaght +skovira +skeans +sjolund +sjodin +siragusa +singelton +sinatra +silis +siebenaler +shuffield +shobe +shiring +shimabukuro +shilts +sherley +sherbert +shelden +sheil +shedlock +shearn +shaub +sharbono +shapley +shands +shaheen +shaffner +servantez +sentz +seney +selin +seitzinger +seider +sehr +sego +segall +seeds +sebastien +scimeca +schwenck +schweiss +schwark +schwalbe +schucker +schronce +schrag +schouten +schoppe +schomaker +schnarr +schmied +schmader +schlicht +schlag +schield +schiano +scheve +scherbarth +schaumburg +schauman +scarpino +savinon +sassaman +sarah +saporito +sanville +santilli +santaana +sanda +salzmann +salman +saks +sagraves +safran +saccone +sa +rutty +russett +rupard +rump +rumbley +ruffins +ruacho +rozema +roxas +routson +rourk +rought +rotunda +rotermund +rosman +rosette +rork +rooke +rolin +rohm +rohlman +rohl +roeske +roecker +rober +robenson +riso +rinne +rima +riina +rigsbee +riggles +riester +rials +rhinehardt +reynaud +reyburn +rewis +revermann +reutzel +retz +rende +rendall +reistad +reinders +reichardt +rehrig +rehrer +recendez +reamy +raz +rauls +ratz +rattray +rasband +rapone +ragle +ragins +radican +raczka +rachels +raburn +rabren +raboin +ra +quesnell +quaintance +puccinelli +pruner +prouse +proud +prosise +proffer +prochazka +probasco +previte +prayer +pour +portell +porcher +popoca +poncho +pomroy +poma +polsky +polsgrove +polidore +podraza +plymale +plescia +pleau +platte +plato +pizzi +pinchon +picot +piccione +picazo +philibert +phebus +pfohl +petell +pesso +pesante +pervis +perrins +perley +perkey +pereida +penate +peloso +pellerito +peffley +peddicord +pecina +peale +peaks +payette +paxman +pawlikowski +pavy +pavlov +patry +patmon +patil +pater +patak +pasqua +pasche +partyka +parody +parmeter +pares +pardi +paonessa +pao +panozzo +panameno +paletta +pait +oyervides +ossman +oshima +ortlieb +orsak +orleans +onley +on +oldroyd +okano +ohora +offley +oestreicher +odonovan +odham +odegard +obst +obriant +obrecht +nuccio +nowling +nowden +novelli +novell +nost +norstrom +norfolk +nordgren +nopper +noller +nisonger +niskanen +nienhuis +nienaber +neuwirth +neumeyer +neice +naugher +naiman +nagamine +mustin +murrietta +murdaugh +munar +mulberry +muhlbauer +mroczkowski +mowdy +mouw +mousel +mountcastle +moscowitz +mosco +morro +moresi +morago +moomaw +montroy +montpas +montieth +montanaro +mongelli +mon +mollison +mollette +moldovan +mohar +mizuno +mitchelle +mishra +misenheimer +minshall +minozzi +minniefield +minion +milhous +migliaccio +migdal +mickell +meyering +methot +mester +mesler +meriweather +mensing +mensah +menge +mendola +mendibles +meloche +melnik +mellas +meinert +mehrhoff +medas +meckler +mctague +mcspirit +mcshea +mcquown +mcquiller +mclarney +mckiney +mckearney +mcguyer +mcfarlan +mcfadyen +mcdanial +mcdanel +mccurtis +mccrohan +mccorry +mcclune +mccant +mccanna +mccandlish +mcaloon +mayall +maver +maune +matza +matty +matsuzaki +matott +mathey +mateos +masoner +masino +mas +marzullo +marz +maryland +marsolek +marquard +mario +marchetta +marberry +manzione +many +manthei +manka +mangram +mangle +mangel +mandato +mancillas +mammen +malina +maletta +malecki +majkut +mages +maestre +macphail +maco +macneill +macadam +lysiak +lyne +luxton +luptak +lundmark +luginbill +lovallo +louthan +lousteau +loupe +lotti +lopresto +lonsdale +longsworth +lohnes +loghry +logemann +lofaro +loeber +locastro +livings +litzinger +litts +liotta +lingard +lineback +lindy +lindhorst +lill +lide +lickliter +liberman +lewinski +levandowski +leimbach +leifer +leidholt +leiby +leibel +leibee +lehrke +lehnherr +lego +leese +leen +ledo +lech +leblond +leap +leahey +lazzari +lawrance +lawlis +lawhorne +lawes +lavigna +lavell +lauzier +lauter +laumann +latsha +latourette +latona +latney +laska +larner +larmore +larke +larence +lapier +lanzarin +lands +lammey +lamke +laminack +lamastus +lamaster +lacewell +labarr +laabs +kutch +kuper +kuna +kubis +krzemien +krupinski +krepps +kreeger +kraner +krammer +kountz +kothe +korpela +komara +kolenda +kolek +kohnen +koelzer +koelsch +kocurek +knoke +knauff +knaggs +knab +kluver +klose +klien +klahr +kitagawa +kissler +kirstein +kinnon +kinnebrew +kinnamon +kimmins +kilgour +kilcoyne +kiester +kiehm +kha +kesselring +kerestes +kenniston +kennamore +kenebrew +kelderman +keitel +kefauver +katzenberger +katt +kast +kassel +kasey +karol +kamara +kalmbach +kaizer +kaiwi +kainz +jurczyk +jumonville +juliar +jourdain +johndrow +johanning +johannesen +joffrion +jobes +jerde +jentzsch +jenkens +jendro +jellerson +jefferds +jaure +jaquish +janeway +jago +iwasaki +ishman +isaza +inmon +inlow +inclan +ildefonso +ike +iezzi +ianni +iacovetto +hyldahl +huxhold +huser +humpherys +humburg +hult +hullender +hulburt +huckabay +howeth +hovermale +hoven +houtman +hourigan +hosek +hopgood +homrich +holstine +holsclaw +hokama +hoffpauir +hoffner +hochstein +hochstatter +hochberg +hjelm +hiscox +hinsley +hinks +hineman +hineline +hinck +hilbun +hewins +herzing +hertzberg +hertenstein +herrea +herington +hercules +henrie +henman +hengst +hemmen +helmke +helgerson +heinsohn +heigl +hegstad +heggen +hegge +hefti +heathcock +haylett +haupert +haufler +hatala +haslip +hartless +hartje +hartis +harpold +harmsen +harbach +hanten +hanington +hammen +hameister +hallstrom +habersham +habegger +gussman +gundy +guitterez +guisinger +guilfoyle +groulx +grismer +griesbach +grawe +grall +graft +graben +goulden +gornick +gori +gookin +gonzalaz +gonyer +gonder +golphin +goller +goergen +glosson +glor +gladin +girdler +gillim +gillians +gillaspie +gilhooly +gildon +gignac +gibler +gibbins +giardino +giampietro +gettman +gerringer +gerrald +gerlich +georgiou +georgia +georgi +geiselman +gehman +gauze +gangl +gamage +gallian +gallen +gallatin +galen +galea +gainor +gahr +furbush +fulfer +fuhrmann +fritter +friis +friendly +friedly +freudenberger +frees +freemon +fratus +frans +foulke +fosler +forquer +fontan +folwell +folds +foeller +fodge +fobes +florek +fliss +flight +flesner +flegel +fitzloff +fiser +first +firmin +firestine +finfrock +fineberg +figures +fiegel +fickling +fesperman +fernadez +felber +feimster +feazel +favre +faughn +fatula +fasone +farron +faron +farino +falvey +falkenberg +faley +faletti +faeth +fackrell +ezekiel +espe +eskola +escott +esaw +erps +erker +erath +enfield +emfinger +embury +embleton +emanuele +em +elvers +ellwanger +ellegood +einstein +eichinger +egge +egeland +edgett +echard +eblen +eastmond +duteau +durland +dure +dunlavy +dungee +dukette +dugay +duboise +dubey +dsouza +druck +dralle +doubek +dorta +dorch +dorce +dopson +dolney +dockter +distler +diss +dippel +diperna +dina +dichiara +dicerbo +dewindt +dewan +deveney +devargas +deutscher +deuel +detter +dess +derrington +deroberts +dern +deponte +denogean +denardi +denard +demary +demarcus +demarais +delucas +deloe +delmonico +delisi +delio +delduca +delaine +deihl +dehmer +deep +decoste +dechick +decatur +dec +debruce +debold +debell +deats +daunt +daquilante +dambrosi +damas +dalin +daisy +dahman +dahlem +daffin +dacquel +cutrell +cusano +curtner +currens +curnow +cuppett +cummiskey +cullers +culhane +crull +crossin +cropsey +cromie +crofford +criscuolo +crisafulli +crego +creeden +covello +covel +corse +correra +corners +cordner +cordier +coplen +copeman +contini +conteras +consalvo +conduff +condo +compher +comas +colliver +colan +cohill +cohenour +cogliano +codd +cockayne +clum +clowdus +clarida +clance +clairday +clagg +citron +citino +ciriello +cicciarelli +chrostowski +christley +christians +chrisco +chris +chrest +chisler +chieffo +cherne +cherico +cherian +cheirs +chauhan +charter +chamblin +cerra +cepero +cellini +celia +celeste +celedon +cejka +cavagnaro +cauffman +catanese +castrillo +castrellon +casserly +casino +caseres +carthen +carse +carragher +carpentieri +carmony +carmer +carlozzi +caradine +cappola +capece +capaldi +cantres +cantos +canevari +canete +calcaterra +cal +cadigan +cabbell +byrn +bykowski +butchko +busler +bushaw +buschmann +burow +buri +burgman +bunselmeyer +bunning +buhrman +budnick +buckson +buckhannon +brunjes +brummel +brumleve +bruckman +brouhard +brougham +brostrom +broerman +brocks +brison +brining +brindisi +brereton +breon +breitling +breedon +brasseaux +branaman +bramon +brackenridge +boyan +boxley +bouman +bouillion +botting +botti +bosshart +borup +borner +bordonaro +boot +bonsignore +bonsall +bolter +bojko +bohne +bohlmann +bogus +bogdon +boen +bodenschatz +bockoven +bobrow +blondin +blissett +bligen +blasini +blankenburg +bjorkman +bistline +bisset +birdow +biondolillo +bielski +biele +biddix +biddinger +bianchini +bevens +bevard +betancur +bernskoetter +bernet +bernardez +berliner +berland +berkheimer +berent +bensch +benesch +belleau +bedingfield +beckstrom +beckim +bechler +beachler +bazzell +basa +bartoszek +barsch +barrell +barnas +barnaba +barillas +barbier +baltodano +baltierra +balle +balint +baldi +balderson +balderama +baldauf +balcazar +balay +baiz +bairos +baba +azim +axe +aversa +avellaneda +ausburn +aurelio +auila +augusto +atwill +artiles +arterberry +aro +arnow +arnaud +arnall +armando +argyle +ares +arenz +arduini +archila +arakawa +appleman +aplin +antonini +anstey +anglen +andros +amweg +amstutz +amari +amadeo +aly +alteri +aloi +allebach +allah +aley +alamillo +airhart +ahrendt +africa +aegerter +adragna +admas +adderly +adderley +addair +abelar +abbamonte +abadi +zurek +zundel +zuidema +zuelke +zuck +zogg +zody +zets +zech +zecca +zavaleta +zarr +yousif +yoes +yoast +yeagley +yaney +yanda +yackel +wyles +wyke +woolman +woollard +woodis +woodin +wonderly +wombles +woloszyn +wollam +wnek +wms +wittie +withee +wissman +wisham +wintle +winthrop +winokur +winch +wilmarth +willhoite +wildner +wikel +wieser +wien +wicke +wiatrek +whitehall +whetstine +wheelus +weyrauch +weyers +westerling +wendelken +welner +welder +weinreb +weinheimer +weilbacher +weihe +weider +wecker +wead +watler +watkinson +wasmer +waskiewicz +wasik +warneke +wares +wangerin +wamble +walken +waker +wakeley +wahlgren +wahlberg +wagler +wachob +vorhies +vonseggern +vittitow +virgilio +vink +villarruel +villamil +villamar +villalovos +vidmar +victorero +vespa +vertrees +verissimo +veltman +vecchione +veals +varrone +varma +vanveen +vanterpool +vaneck +vandyck +vancise +vanausdal +vanalphen +valdiviezo +urton +urey +updegrove +unrue +ulbrich +tysinger +tyo +twiddy +tunson +trueheart +troyan +trier +traweek +trafford +tozzi +toulouse +touch +tosto +toste +torez +tooke +tonini +tonge +tomerlin +tolmie +tobe +tippen +tierno +tichy +thuss +threat +thran +thornbury +thone +theunissen +thelmon +theall +textor +teters +tesh +tennis +teng +tench +tekautz +tehrani +teat +teas +teare +te +tavenner +tartaglione +tanski +tanis +tanguma +tangeman +taney +tammen +tamburri +tamburello +talsma +tallie +takeda +taira +taheri +tademy +taddei +taaffe +szymczak +szczepaniak +szafranski +swygert +swem +swartzlander +sutley +supernaw +sundell +sullivant +suderman +sudbury +suares +stueber +stromme +striker +streeper +streck +strebe +stonehouse +stoia +stohr +stodghill +stirewalt +stick +sterry +stephanie +stenstrom +stene +steinbrecher +stear +stdenis +stanphill +staniszewski +stanard +stahlhut +stachowicz +srivastava +spong +spomer +spinosa +spindel +spera +spark +soward +sopp +sooter +sonnek +sonne +soland +sojourner +soeder +sobolewski +snellings +snare +smola +smetana +smeal +smarr +sloma +sligar +skenandore +skalsky +sitter +sissom +sirko +simkin +silverthorn +silman +sikkink +signorile +siddens +shumsky +shrider +shoulta +shonk +shomaker +shippey +shimada +shillingburg +shifflet +shiels +shepheard +sheerin +shedden +sheckles +sharrieff +sharpley +shappell +shaneyfelt +shampine +shaefer +shaddock +shadd +sforza +severtson +setzler +sepich +senne +senatore +sementilli +selway +selover +sellick +seigworth +sefton +seegars +sebourn +seaquist +sealock +seabreeze +scriver +scinto +schumer +schulke +schryver +schriner +schramek +schoon +schoolfield +schonberger +schnieder +schnider +schlitz +schlather +schirtzinger +scherman +schenker +scheiner +scheible +schaus +schakel +schaad +saxe +savely +savary +sardinas +santarelli +sanschagrin +sans +sanpedro +sanjose +sandra +sandine +sandigo +sandgren +sanderford +sandahl +salzwedel +salzar +salvino +salvatierra +salminen +salierno +salberg +sahagun +saelee +sabel +rynearson +ryker +rupprecht +runquist +rumrill +ruhnke +rovira +rottenberg +rosoff +rosete +rosebrough +roppolo +roope +romas +roley +rohrback +rohlfs +rogriguez +roel +rodriguiz +rodewald +roback +rizor +ritt +rippee +riolo +rinkenberger +riggsby +rigel +rieman +riedesel +rideau +ricke +rhinebolt +rheault +revak +relford +reinsmith +reichmann +rei +regula +redlinger +redhead +rayno +raycroft +rave +raus +raupp +rathmann +rastorfer +rasey +raponi +rantz +ranno +ranes +randal +ramp +ramnauth +rahal +raddatz +quattrocchi +quang +purchase +pullis +pulanco +pryde +prohaska +primiano +prez +prevatt +prechtl +pottle +potenza +portes +porowski +poppleton +pontillo +pong +polka +politz +politi +poggi +plonka +plaskett +placzek +pizzuti +pizzaro +pisciotta +pippens +pinkins +pinilla +pini +pingitore +piercey +pickup +piccola +piccioni +picciano +phy +philps +philp +philo +philmon +philbin +pflieger +pezzullo +petruso +petrea +petitti +peth +peshlakai +peschel +persico +persichetti +persechino +perris +perlow +perico +pergola +penniston +pembroke +pellman +pekarek +peirson +pearcey +pealer +pavlicek +passino +pasquarello +pasion +parzych +parziale +parga +papalia +papadakis +paino +pacini +oyen +ownes +owczarzak +outley +ouelette +ottosen +otting +ostwinkle +osment +oshita +osario +orlow +oriordan +orefice +orantes +oran +orahood +opel +olpin +oliveria +okon +okerlund +okazaki +ohta +offerman +nyce +nutall +northey +norcia +noor +noh +niehoff +niederhauser +nickolson +nguy +neylon +newstrom +nevill +netz +nesselrodt +nemes +neally +nauyen +nascimento +nardella +nanni +myren +murchinson +munter +munster +mundschenk +mujalli +muckleroy +mu +moussa +mouret +moulds +mottram +motte +mosey +morre +montreuil +monton +montellano +monninger +monhollen +mongeon +monestime +monegro +mondesir +monceaux +mola +moga +moening +moccia +misko +miske +mishaw +minturn +mingione +minerva +milstein +milos +milla +milks +milhouse +michl +micheletti +michals +mesia +merson +meras +menifee +meluso +mella +melick +mehlman +meffert +medoza +mecum +meaker +meahl +mczeal +mcwatters +mcomber +mcmonigle +mckiddy +mcgranor +mcgeary +mcgaw +mcenery +mcelderry +mcduffey +mccuistion +mccrudden +mccrossin +mccosh +mccolgan +mcclish +mcclenahan +mcclam +mccartt +mccarrell +mcbane +mc +maybury +mayben +maw +maulden +mauceri +matko +mathie +matheis +mathai +masucci +massiah +martorano +martnez +martindelcamp +marschke +marovich +markiewicz +marinaccio +marhefka +marcrum +manton +mantel +mannarino +manlove +mangham +manasco +malpica +mallernee +malinsky +malhotra +maish +maisel +mainville +maharrey +magid +maertz +mada +maclaughlin +macina +macdermott +macallister +macadangdang +maack +lynk +lydic +luyando +lutke +lupinacci +lunz +lundsten +lull +lujano +luhn +luecke +luebbe +ludolph +luckman +lucker +luckenbill +luckenbach +lucido +lowney +lowitz +lovaglio +louro +louk +loudy +louderback +lorick +lorenzini +lorensen +lorenc +lomuscio +loguidice +lockner +lockart +lochridge +litaker +lisowe +liptrap +linnane +linhares +lindfors +lindenmuth +lincourt +lina +like +liew +lies +liebowitz +levengood +leskovec +lesch +leoni +lennard +legner +leaser +leas +lean +leadingham +lazarski +layland +laurito +laulu +laughner +laughman +laughery +laube +latiolais +lasserre +lasser +lars +larrow +larrea +lapsley +lantrip +lanthier +langwell +langelier +landaker +lampi +lamond +lamblin +lambie +lakins +laipple +lagrimas +lafrancois +laffitte +laday +lacko +lacava +labor +labianca +kutsch +kuske +kunert +kubly +kuamoo +krummel +krise +krenek +kreiser +krausz +kraska +krakowski +kradel +kozik +koza +kotowski +koslow +korber +kojima +kochel +knabjian +klunder +klugh +klinkhammer +kliewer +klever +kleber +klages +klaas +kizziar +kitchel +kishimoto +kirschenman +kirschenbaum +kinnick +kinn +kinkle +kiner +kindla +kindall +kincaide +kilson +killins +kill +kightlinger +kienzle +kiah +khim +ketcherside +kerl +kelsoe +kelker +keizer +keir +keepers +kawano +kawa +kaveney +kath +kasparek +kaplowitz +kantrowitz +kant +kanoff +kano +kann +kamalii +kalt +kaleta +kalbach +kalauli +kalata +kalas +kaigler +kachel +juran +jubb +jonker +jonke +jolivette +joles +joas +jividen +jewel +jeffus +jeanty +jarvi +jardon +janvier +janosko +janoski +janiszewski +janish +janek +iwanski +iuliano +isabella +irle +ingmire +imber +ijames +iiams +ihrig +ichikawa +hynum +hutzel +hutts +huskin +husak +hurndon +huntsinger +humm +hulette +huitron +huguenin +hugg +hugee +huelskamp +huch +howen +hovanec +hoston +hostettler +horsfall +horodyski +holzhauer +hollimon +hollender +hogarth +hoffelmeyer +histand +hissem +hisel +hirayama +hinegardner +hinde +hinchcliffe +hiltbrand +hilsinger +hillstrom +hiley +hickenbottom +hickam +hibley +heying +hewson +hetland +hersch +herlong +herda +henzel +henshall +hendler +hence +helson +helfen +heinbach +heikkila +heggs +hefferon +hebard +heathcote +hearl +heaberlin +hauth +hauschild +haughney +hauch +hattori +haste +hasley +hartpence +harroun +harrier +harelson +hardgrove +hardel +hansbrough +handsome +handshoe +handly +haluska +hally +halling +halfhill +halferty +hakanson +haist +hairgrove +hahner +hagg +hafele +haaland +guttierez +gutknecht +gunnarson +gunlock +gummersheimer +gullatte +guity +guilmette +guhl +guenette +guardino +groshong +grober +gripp +grillot +grilli +greulich +gretzinger +greenwaldt +graven +grassman +granberg +graeser +graeff +graef +grabow +grabau +gotchy +goswick +gosa +gordineer +gorczyca +goodchild +golz +gollihue +goldwire +goldbach +goffredo +glassburn +glaeser +gillilan +gigante +giere +gieger +gidcumb +giarrusso +giannelli +gettle +gesualdi +geschke +gerwig +gervase +geoffrion +gentilcore +genther +gemes +gemberling +gelles +geitz +geeslin +gedney +gebauer +gaye +gawron +gavia +gautney +gaustad +gasmen +gargus +ganske +ganger +galvis +gallinger +gallichio +galletta +gaede +gadlin +gaby +gabrielsen +gaboriault +furlan +furgerson +fujioka +fugett +fuehrer +frisco +frint +frigon +frevert +frautschi +fraker +fradette +foulkes +forslund +forni +foo +fontenette +fones +folz +folmer +follman +folkman +flourney +flickner +flemmings +fleischacker +flander +flament +fithian +fister +fiorello +fiorelli +fioravanti +fieck +ficke +fiallos +fiacco +feuer +ferrington +fernholz +feria +fergurson +feick +febles +favila +faulkingham +fath +farnam +falter +fakhouri +fairhurst +failing +fahs +eva +estrello +essick +espree +esmond +eskelson +escue +escatel +erebia +epperley +epler +enyart +engelbert +enderson +emmitt +emch +elisondo +eli +elford +el +ekman +eick +eichmann +ehrich +ehlen +edwardson +edley +edghill +edel +eastes +easterbrooks +eagleson +eagen +eade +dyle +dutkiewicz +dunnagan +duncil +duling +drumgoole +droney +dreyfus +dragan +dowty +doscher +dornan +doremus +doogan +donaho +donahey +dombkowski +dolton +dolen +dobratz +diveley +dittemore +ditsch +disque +dishmon +disch +dirickson +dippolito +dimuccio +dilger +diefenderfer +dicola +diblasio +dibello +devan +dettmer +deschner +desbiens +derusha +denkins +demonbreun +demchak +delucchi +delprete +deloy +deliz +deline +delap +deiter +deignan +degiacomo +degaetano +defusco +dede +deboard +debiase +deaville +deadwyler +davanzo +daughton +darter +darrin +danser +dandrade +dando +dampeer +dalziel +dalen +dain +dai +dague +czekanski +cutwright +cutliff +curle +cuozzo +cunnington +cunning +cunnigham +cumings +crowston +croak +crittle +crispell +crisostomo +crear +creach +craigue +crabbs +cozzi +cozza +coxe +cowsert +coviello +couse +coull +cottier +costagliola +corra +corpening +cormany +corless +corkern +conteh +conquest +conkey +cones +conditt +conaty +colomb +collura +colledge +colins +colgate +coleson +colemon +coins +coffland +coccia +coast +clougherty +clewell +cleckley +cleaveland +clarno +clamp +civils +cillo +cifelli +ciesluk +chum +chui +christison +christiana +chowning +chouteau +choung +childres +cherrington +chenette +cheeves +cheairs +chaddock +cernoch +cerino +cazier +cathy +castel +casselberry +caserta +carvey +carton +cart +carry +carris +carrie +carmant +cariello +cardarelli +caras +caracciolo +capitano +cantoni +cantave +cancio +campillo +cam +callens +caldero +calamia +cahee +cahan +cahalan +cabanilla +cabal +bywater +bynes +byassee +butkus +busker +bushby +busack +burtis +burrola +buroker +burnias +burn +burlock +burham +burak +bulla +buffin +buffa +buening +budney +buchannan +buchalter +bua +brule +brugler +broxson +broun +brosh +brissey +brisby +brinlee +brinkmeyer +brimley +brickell +breth +breger +brees +brank +braker +bozak +bowlds +bowersock +bousman +boushie +botz +bordwell +bonkowski +bonine +bonifay +bonesteel +boldin +bohringer +bohlander +boecker +bocook +bocock +boblett +bobbett +boas +boarman +bleser +blazejewski +blaustein +blausey +blancarte +blaize +blackson +blacketer +blackard +bisch +birchett +billa +bilder +bierner +bienvenu +bielinski +bialas +biagini +beynon +beyl +bettini +bethany +betcher +bessent +beshara +besch +bernd +bergemann +bergeaux +berdan +bens +benedicto +bendall +beltron +beltram +bellville +beisch +behney +beemer +beechler +beckum +becks +batzer +batte +bastida +bassette +basley +base +bartosh +bartolone +barraclough +barnick +barket +barkdoll +baringer +barges +barella +barbian +barbati +bannan +banderas +balles +baldo +balasubramani +bala +baig +bahn +bachmeier +babyak +baas +baars +ayuso +axt +avinger +avella +ausbrooks +aull +augello +atkeson +atkerson +atherley +athan +assad +asebedo +arrison +armon +armfield +armbrust +arlington +arkin +archambeau +antonellis +angotti +andy +amorose +amini +amborn +amano +aluarez +alma +allgaier +allegood +ales +alen +aldama +albertine +aki +aird +ahsing +ahmann +aguado +agostino +agostinelli +agnes +adwell +adsit +adelstein +ade +actis +acierno +achee +abbs +abbitt +zwagerman +zuercher +zinno +zettler +zeff +zavalza +zaugg +zarzycki +zappulla +zanotti +zachman +zacher +yundt +yslas +younes +yontz +yglesias +yeske +yellow +yeargin +yauger +yamane +xang +wylam +wrobleski +wratchford +worker +woodlee +wolsey +wolfinbarger +wohlenhaus +wittler +wittenmyer +witkop +wishman +wintz +winkelmann +windus +winborn +wims +wiltrout +wilshire +willmott +williston +wilemon +wilbourne +wiedyk +widmann +wickland +wickes +wichert +whitsell +whisenand +whidby +wetz +westmeyer +wertheim +wernert +werle +werkheiser +weng +weldin +weissenborn +weingard +weinfeld +weihl +weightman +weichel +wehrheim +wegrzyn +wegmann +wearing +waszak +wankum +wangler +walthour +waltermire +walstad +waldren +walbert +walawender +wahlund +wahlert +wahlers +wach +vuncannon +vroom +vredenburgh +vonk +vollmar +voisinet +vlahos +viscardi +vires +vipperman +violante +vidro +vessey +vesper +veron +vergari +verbeck +venturino +velastegui +vegter +varas +vanwey +vanvranken +vanvalkenbur +vanorsdale +vanoli +vanochten +vanier +vanevery +vane +vanduser +vandersteen +vandell +vandall +vallot +vallon +vallez +vallely +vadenais +uthe +usery +unga +ultsch +ullom +tyminski +twogood +tursi +turay +tungate +truxillo +trulock +trovato +troise +tripi +trinks +trimboli +trickel +trezise +trefry +treen +trebilcock +travieso +trachtenberg +touhey +tougas +tortorella +tormey +torelli +torborg +toran +tomek +tomassi +tollerson +tolden +toda +tobon +tjelmeland +titmus +tilbury +tietje +thurner +thum +thrope +thornbrough +thibaudeau +thackeray +tesoro +territo +ternes +teich +tecson +teater +teagarden +tatsch +tarallo +tapanes +tanberg +tamm +sylvis +swenor +swedlund +swagger +sutfin +sura +sundt +sundin +summerson +sumatzkuku +sultemeier +sulivan +suggitt +suermann +sturkie +sturgess +stumph +stuemke +struckhoff +strose +stroder +stride +stricklen +strick +streib +strei +strawther +stratis +strahm +stortz +storrer +storino +stohler +stohl +stockel +stinnette +stile +stieber +stensland +steffenhagen +stefanowicz +steever +steagall +statum +stapley +stanish +standiford +standen +stamos +stahlecker +stadtler +spratley +spraker +sposito +spickard +spehar +spees +spearing +spangle +spallone +sox +soulard +sorel +sora +sopko +sood +sonnen +som +solly +solesbee +soldano +sobey +sobczyk +snedegar +sneddon +smolinski +smolik +slota +sloman +sleigh +slavick +skorupski +skolnik +skirvin +skeels +skains +skahan +skaar +siwiec +siverly +siver +sivak +sirk +sinton +sinor +sincell +silberstein +sieminski +sidelinger +shurman +shunnarah +shirer +shidler +sherlin +shepperson +shemanski +sharum +shartrand +shapard +shanafelt +shamp +shader +shackelton +seyer +seroka +sernas +seright +serano +sengupta +semper +selinger +seith +seidler +seehusen +seefried +seed +scovell +scorzelli +sconiers +schwind +schwichtenber +schwerin +schwenke +schwaderer +schussler +schuneman +schumpert +schultheiss +schroll +schroepfer +schroeden +schrimpf +schook +schoof +schomburg +schoenfeldt +schoener +schnoor +schmick +schlereth +schindele +schildt +schildknecht +schemmel +scharfenberg +schanno +schane +schaer +schad +scearce +scardino +sawka +sawinski +savoca +savery +saults +saucer +sarpy +saris +sardinha +sarafin +sankar +sanjurjo +sanderfer +sanagustin +samudio +sammartino +samas +salz +salmen +sallie +salkeld +salamon +sakurai +sakoda +safley +sada +sachse +ryden +ryback +russow +russey +ruprecht +rumple +ruffini +rudzinski +rudel +rudden +rud +rovero +routledge +roussin +rousse +rouser +rougeau +rosie +rosica +romey +romaniello +rolfs +rogoff +rogne +rodriquz +rodrequez +rodin +rocray +rocke +robbin +riviere +rivette +riske +risenhoover +rindfleisch +rinaudo +rimbey +riha +righi +ridner +ridling +riden +rhue +reyome +reynoldson +reusch +rensing +rensch +rennels +renderos +reininger +reiners +reigel +rehmer +regier +reff +reef +redlin +recchia +reaume +reagor +rayne +rawe +rattigan +raska +rashed +ranta +ranft +randlett +randa +ramiez +ramella +rallis +rajan +raisbeck +raimondo +raible +ragone +rackliffe +quirino +quiring +quero +quaife +pyke +purugganan +pursifull +purkett +purdon +punches +pun +pulos +pulling +puccia +provance +propper +preis +prehn +prata +prasek +pranger +pradier +portor +portley +porte +popiel +popescu +pomales +polowy +pollett +politis +polit +poley +pol +pohler +poggio +poet +podolak +poag +plymel +ploeger +planty +piskura +pirrone +pirro +piroso +pinsky +pile +pilant +pickerill +piccolomini +picart +piascik +phann +petruzzelli +petosa +persson +perretta +perkowski +perilli +percifield +perault +peppel +pember +pelotte +pelcher +peixoto +pehl +peatross +pearlstein +peacher +payden +paya +pawelek +pavey +pauda +pathak +parrillo +parness +parlee +paoli +pannebaker +palomar +palo +palmberg +paganelli +paffrath +padovano +padden +pachucki +over +ovando +othman +osowski +osler +osika +orsburn +orlowsky +oregel +oppelt +opfer +opdyke +onell +omer +olivos +okumura +okoro +ogas +offer +oelschlaeger +odette +oder +ocanas +obrion +obarr +oas +oare +nyhus +nyenhuis +nunnelley +nunamaker +nuckels +noyd +nowlan +novakovich +noteboom +norviel +nortz +norment +norland +nolt +nolie +nixson +nitka +nissley +nishiyama +niland +niewiadomski +niemeier +nieland +nickey +nicholsen +newark +neugent +neto +nerren +nein +neikirk +neigh +nedrow +neave +nazaire +navaro +navalta +nasworthy +nasif +nani +nalepa +nakao +nakai +nadolny +myklebust +mussel +murthy +muratore +murat +mundie +mulverhill +muilenburg +muetzel +mudra +mudgett +mrozinski +moura +mottinger +morson +moretto +morentin +mordan +mooreland +mooers +monts +montone +montondo +montiero +monserrate +monie +monat +monares +mollo +mollet +molacek +mokry +mohrmann +mohabir +mogavero +moes +moceri +miyoshi +mitzner +misra +mis +mirr +mira +minish +minge +minckler +milroy +mille +mileski +milanesi +miko +mihok +mihalik +mieczkowski +messerli +meskill +mesenbrink +merton +merryweather +merkl +menser +menner +menk +menden +menapace +melbourne +mekus +meinzer +mein +meers +mctigue +mcquitty +mcpheron +mcmurdie +mcleary +mclafferty +mckinzy +mckibbin +mckethan +mcintee +mcgurl +mceachran +mcdowall +mcdermitt +mccuaig +mccreedy +mccoskey +mcclosky +mcclintick +mccleese +mccanless +mazzucco +mazzocco +mazurkiewicz +mazariego +mayhorn +maxcy +mavity +mauzey +maulding +matuszewski +mattsson +mattke +matsushita +matsuno +matsko +matkin +mathur +mates +masterman +massett +massart +massari +mashni +martella +marren +margotta +marder +marczak +maran +maradiaga +manwarren +mantini +manter +mantelli +manso +mangone +manfredonia +malden +malboeuf +malanga +makara +maison +maisano +mairs +mailhiot +magri +magic +madron +madole +mackall +macduff +macartney +lynds +lusane +luffman +lua +louth +loughmiller +lougheed +lotspeich +lorenzi +loree +loosli +looker +longe +longanecker +lonero +lohmeyer +loeza +lobstein +lobner +lober +littman +litalien +lippe +lints +linear +lijewski +ligas +liebert +liebermann +liberati +lezcano +levinthal +lessor +less +lesieur +lenning +lengel +len +lempke +lemp +lemar +leitzke +leinweber +legrone +lege +leder +lawnicki +lauth +laun +laughary +latin +lassley +lashway +larrivee +largen +lare +lanouette +lanno +langille +langen +landing +lana +lamonte +lalin +lala +laible +lafratta +laforte +lacuesta +lacer +labore +laboe +labeau +kwasniewski +kunselman +kuhr +kuchler +kuc +krugman +kruckenberg +krotzer +kroemer +krist +krigbaum +kreke +kreisman +kreisler +kreft +krasnow +kras +krag +kouyate +kough +kotz +kostura +korner +kornblum +korczynski +koppa +kopczyk +konz +komorowski +kollen +kolander +koepnick +koehne +kochis +knoch +knippers +knaebel +klipp +klinedinst +klimczyk +klier +klement +klaphake +kisler +kinzie +kines +kindley +kimple +kimm +kimbel +kilker +kilborn +kibbey +khong +ketchie +kerbow +kennemore +kennebeck +kenneally +kenndy +kenmore +kemnitz +kemler +kemery +kelnhofer +kellstrom +kellis +kellams +keiter +keirstead +keeny +keelin +keefauver +keams +kautzman +kaus +katayama +kasson +kassim +kasparian +kase +karwoski +kapuscinski +kaneko +kamerling +kamada +kalka +kalar +kakacek +kaczmarczyk +jurica +junes +journell +jolliffe +johnsey +joel +jindra +jimenz +jette +jesperson +jerido +jenrette +jencks +jech +jayroe +jayo +jaye +javens +jaskot +jaros +jaquet +janowiak +jame +jaegers +jackel +izumi +ith +italia +irelan +ion +inzunza +imoto +imme +iglehart +iannone +iannacone +huyler +hussaini +hurlock +hurlbutt +huprich +humphry +hulslander +huelsman +hudelson +hudecek +hsia +hreha +hoyland +howk +housholder +housden +houff +horkey +honan +homme +holtzberg +hollyfield +hollings +hollenbaugh +hokenson +hogrefe +hogland +hoel +hodgkin +hochhalter +hjelle +hittson +hinderman +hinchliffe +hime +hilyer +hilby +hibshman +heydt +hewell +heward +hetu +hestand +heslep +herridge +herner +hernande +hermandez +hermance +herbold +heon +henthorne +henion +henao +heming +helmkamp +hellberg +heidgerken +heichel +hehl +hegedus +hefty +heckathorne +hearron +haymer +haycook +havlicek +hausladen +haseman +hartsook +hartog +harns +harne +harmann +haren +hanserd +hanners +hanekamp +hamra +hamley +hamelin +hamblet +hakimi +hagle +hagin +haehn +haeck +hackleman +haacke +gulan +guirand +guiles +guggemos +guerrieri +guerreiro +guereca +gudiel +guccione +gubler +gruenwald +gritz +grieser +grewe +grenon +gregersen +grefe +greener +grech +grecco +gravette +grassia +granholm +graner +grandi +grahan +gradowski +gradney +graczyk +gouthier +gottschall +goracke +gootee +goodknight +goodine +gonzalea +gonterman +gonalez +gomm +goleman +goldtooth +goldstone +goldey +golan +goes +goen +goeller +goel +goecke +godek +goan +glunz +gloyd +glodowski +glinski +glawe +girod +girdley +giovanni +gindi +gillings +gildner +giger +giesbrecht +gierke +gier +giboney +giaquinto +giannakopoulo +giaimo +giaccio +giacalone +gessel +gerould +gerlt +gerhold +geralds +genson +genereux +gellatly +geigel +gehrig +gehle +geerdes +geagan +gawel +gavina +gauss +gatwood +gathman +gaster +garske +garratt +garms +garis +gansburg +gammell +gambale +gamba +galimore +gadway +gadoury +furrer +furnish +furino +fullard +fukui +fuhrer +fryou +friesner +friedli +friedl +friedberg +freyermuth +fremin +fredell +fraze +franken +fought +foth +fote +fortini +fornea +formanek +forker +forgette +folan +foister +foglesong +flinck +flewellen +flaten +flaig +fitgerald +fischels +firman +finstad +finkelman +finister +finder +fina +fettes +fetterhoff +ferriter +ferch +fennessy +feltus +feltes +feinman +farve +farry +farrall +farag +falzarano +falck +falanga +fakhoury +faire +fairbrother +fagley +faggins +facteau +ewer +ewbank +evola +evener +eustis +eugenio +estwick +estel +essa +espinola +escutia +eschmann +erpelding +ernsberger +erling +entz +enrique +engelhart +enbody +emick +elsinger +ellinwood +ellingsen +ellicott +elkind +eisinger +eisenbeisz +eischen +eimer +eigner +eichhorst +ehmke +egleston +eggett +ege +efurd +edgeworth +eckels +ebey +eberling +eagleton +dwiggins +dweck +dunnings +dunnavant +dumler +duman +dugue +duerksen +dudeck +dreisbach +drawdy +drawbaugh +draine +draggoo +dowse +dovel +doughton +douds +doubrava +dort +dorshorst +dornier +doolen +donavan +dominque +dominion +dominik +domingez +dome +dom +dolder +dold +dobies +dk +diskin +disano +dirden +diponio +dipirro +dimock +diltz +dillabough +diley +dikes +digges +digerolamo +diel +dicker +dicharry +dicecco +dibartolomeo +diamant +dewire +devone +dessecker +dertinger +derousselle +derk +depauw +depalo +denherder +demeyer +demetro +demastus +delvillar +deloye +delosrios +delgreco +delarge +delangel +dejongh +deitsch +degiorgio +degidio +defreese +defoe +decambra +debenedetto +deaderick +daza +dauzat +daughenbaugh +dato +dass +darwish +dantuono +danton +dammeyer +daloia +daleo +dagg +dacey +curts +cuny +cunneen +culverhouse +cuervo +cucinella +cubit +crumm +crudo +crowford +crout +crotteau +crossfield +crooke +crom +critz +cristaldi +crickmore +cribbin +cremeens +crayne +cradduck +couvertier +cottam +cossio +correy +cordrey +coplon +copass +coone +coody +contois +consla +connelley +connard +congo +congleton +condry +conception +coltey +colindres +colgrove +colfer +colasurdo +cocker +cochell +cobbin +clouthier +closs +cloonan +clizbe +clennon +clayburn +claybourn +clausell +clasby +clagett +ciskowski +cirrincione +cinque +cinelli +cimaglia +ciaburri +christiani +christeson +chladek +chizmar +chinnici +chiarella +chevrier +cheves +chernow +cheong +chelton +charlette +chanin +cham +chaligoj +celestino +cayce +cavey +cavaretta +caughron +catmull +catapano +casio +cashaw +carullo +carualho +carthon +cartelli +carruba +carrere +carolus +carmine +carlstrom +carli +carfora +carello +carbary +car +caplette +cannell +cancilla +campell +cammarota +camilo +camejo +camarata +caisse +cacioppo +cabbagestalk +cabatu +cabanas +byles +buxbaum +butland +butch +burrington +burnsed +burningham +burlingham +burgy +buitrago +buffett +bueti +buehring +buday +bucks +bucknell +buchbinder +bucey +bruster +brunston +brumby +bruins +brouillet +brosious +broomes +brodin +broddy +brochard +britsch +britcher +brierley +brezina +bressi +bressette +breslow +brenden +breier +brei +braymer +brasuell +brash +branscomb +branin +brandley +brahler +bracht +bracamontes +brabson +boyne +boxell +bowery +bovard +boutelle +boulette +bottini +botkins +bosen +boscia +boscarino +borich +bores +boreman +bordoy +bordley +bordenet +boquet +boocks +bolner +boissy +boilard +bohnen +bohall +boening +boccia +boccella +bobe +blyth +blitz +blew +blacksmith +biviano +bitto +bisel +binstock +bines +billiter +bigsby +bighorse +bielawski +bickmore +bettin +bettenhausen +besson +beseau +berton +berroa +berntson +bernas +berisford +berhow +bergsma +benyo +benyard +bente +bennion +benko +belsky +bellavance +belasco +belardo +beidler +behring +begnaud +bega +befort +beek +bedore +beddard +becknell +beardslee +beardall +beagan +bayly +bauza +bautz +bausman +baumler +batterson +battenfield +bassford +basse +basemore +baruch +bartholf +bars +barman +baray +barabas +banghart +banez +balsam +ballester +ballagh +baldock +bagnoli +bagheri +bacus +bacho +baccam +axson +averhart +aver +ave +austill +auberry +athans +atcitty +atay +astarita +ascolese +artzer +arts +arrasmith +argenbright +aresco +arb +aranjo +appleyard +appenzeller +app +apilado +antonetti +antis +annett +annas +angwin +andris +andries +andreozzi +ando +andis +anderegg +anastasia +amyot +aminov +amelung +amelio +amason +alviar +allendorf +allday +alice +aldredge +alcivar +alaya +alapai +airington +aina +ailor +ahrns +ahmadi +agresta +agent +affolter +aeschlimann +adney +aderhold +adell +adachi +ackiss +aben +abdelhamid +abar +aase +zorilla +zordan +zollman +zoch +zipfel +zimmerle +zike +ziel +zhong +zens +zelada +zaman +zahner +zadora +zachar +zaborowski +zabinski +yzquierdo +yoshizawa +yori +yielding +yerton +yehl +yeargain +yeakley +yamaoka +yagle +yablonski +wynia +wyne +wyers +wrzesinski +wrye +wriston +woolums +woolen +woodlock +woodle +wonser +wombacher +wollschlager +wollen +wolfley +wolfer +wisse +wisell +wirsing +winstanley +winsley +winiecki +winiarski +winge +winesett +windell +winberry +willyard +willemsen +wilkosz +wilensky +wikle +wiford +wienke +wieneke +wiederhold +wiebold +widick +wickenhauser +whitrock +whisner +whinery +wherley +whedbee +wheadon +whary +wessling +wessells +wenninger +wendroth +wende +wellard +weirick +weinkauf +wehrman +weech +weathersbee +waterford +warton +warncke +warm +wardrip +walstrom +walks +walkowski +walcutt +waight +wai +wagman +waggett +wadford +vowles +vormwald +vondran +vohs +vitt +vitalo +viser +vinas +villena +villaneuva +villafranca +villaflor +vilain +vigilante +vicory +viana +vian +vial +verucchi +verra +venzke +venske +veley +veile +veeder +vaske +vasconez +vargason +varble +vanwert +vantol +vanscooter +vanmetre +vanmaanen +vanhise +vanetta +vaneaton +vandyk +vandriel +vandorp +vandewater +vandervelden +vanderstelt +vanderhoef +vanderbeck +vanbibber +vanalstine +vanacore +valdespino +vaill +vailes +vagliardo +ursini +urrea +urive +uriegas +umphress +ucci +uballe +tyrone +tynon +twiner +tutton +tudela +tuazon +troisi +tripplett +trias +trescott +treichel +tredo +tranter +tozer +toxey +tortorici +tornow +topolski +topia +topel +topalian +tonne +tondre +tola +toepke +tiu +tisdell +tiscareno +thornborrow +thomison +thilges +theuret +therien +thang +thagard +thacher +texter +terzo +teresa +tep +tenpenny +tempesta +teetz +teaff +tavella +taussig +tatton +tasler +tarrence +tardie +tarazon +tantillo +tanney +tankson +tangen +tamburo +takes +tabone +szilagyi +syphers +swistak +swiatkowski +sweigert +swayzer +swapp +svehla +sutphen +sutch +susa +surma +surls +sundermeyer +sundeen +sulek +suite +sughrue +sudol +sturms +stupar +stum +stuckman +strole +strohman +streed +strebeck +strausser +strassel +stpaul +storts +storr +stommes +stmary +stjulien +stika +stiggers +sthill +stevick +sterman +stephany +stepanek +stemler +stelman +stelmack +steinkamp +steinbock +stcroix +stcharles +staudinger +starry +stanly +stallsworth +stalley +stains +srock +spritzer +spracklin +spinuzzi +spidell +spice +speyrer +sperbeck +spendlove +speedy +speckman +spargur +spangenberg +spaid +sowle +soulier +sotolongo +sostre +sorey +sonier +somogyi +somera +solo +soldo +sofia +soderholm +snoots +snooks +snoke +snodderly +snide +snee +smoke +smithhart +smillie +smay +smallman +sliwinski +slentz +sledd +slager +skogen +skog +skarda +skalicky +siwek +sitterson +sisti +sissel +sis +sinopoli +similton +simila +simenson +silvertooth +silos +siggins +sieler +siburt +sianez +shurley +shular +shuecraft +shreeves +shon +shollenberger +shoen +shishido +shipps +shipes +shinall +sherfield +shawe +sharrett +sharrard +shankman +shan +sham +sessum +serviss +servello +serice +serda +semler +semenza +selmon +sellen +seley +seidner +seib +sehgal +seelbach +sedivy +sebren +sebo +seanez +seagroves +seagren +seagrave +seabron +schwertner +schwegel +schwarzer +schrunk +schriefer +schreder +schrank +schopp +schonfeld +schoenwetter +schnall +schnackenberg +schnack +schmutzler +schmierer +schmidgall +schlup +schloemer +schlitt +schermann +scherff +schellenberg +schain +schaedler +schabel +scaccia +saye +saxman +saurez +sasseen +sasnett +sas +sarti +sarra +sarber +saran +santoy +santeramo +sansoucy +sando +sandles +sandburg +sandau +samra +samaha +salon +salizar +salam +saindon +sagaser +saeteun +sadusky +sackman +sabater +saas +ruthven +ruszkowski +rusche +rumpf +ruhter +ruhenkamp +rufo +rudge +ruddle +rowlee +rowand +routhier +rougeot +rotramel +rotan +roswell +rosten +rosillo +rookard +roode +rongstad +rollie +roider +roffe +roettger +rodick +rochez +rochat +roads +rivkin +rivadeneira +riston +risso +rise +rinderknecht +riis +riggsbee +rifkin +rieker +riegle +riedy +richwine +richmon +ricciuti +riccardo +ricardson +rhew +revoir +revier +remsberg +remiszewski +rembold +rella +reinken +reiland +reidel +reichart +rehak +redway +rednour +redifer +redgate +redenbaugh +redburn +reap +readus +raybuck +rauhuff +rauda +ratte +rathje +rappley +rands +ramseyer +ramseur +ramsdale +ramo +ramariz +raitz +raisch +rainone +rahr +ragasa +rafalski +radunz +quenzer +queja +queenan +pyun +puz +putzier +puskas +purrington +puri +punt +pullar +pruse +pring +primeau +prevette +preuett +presto +prestage +pownell +pownall +potthoff +potratz +poth +poter +posthuma +posen +porritt +popkin +poormon +polidoro +poles +polcyn +pokora +poer +pluviose +plock +pleva +placke +pioli +pingleton +pinchback +pinch +pieretti +piccone +piatkowski +philley +phibbs +phay +phagan +pfund +peyer +pettersen +petter +petrucelli +petropoulos +petras +petix +pester +perks +pepperman +pennick +penado +pelot +pelis +peeden +pechon +peal +pazmino +patchin +pasierb +parran +parilla +pardy +parcells +paragas +paradee +papin +panko +pangrazio +pangelinan +pandya +pancheri +panas +palmiter +pallares +palinkas +palek +pagliaro +packham +pacitti +ozier +overbaugh +oursler +ouimette +otteson +otsuka +othon +osmundson +oroz +orgill +ordeneaux +orama +oppy +opheim +onkst +oltmanns +olstad +olofson +ollivier +olen +olejniczak +okura +okuna +okey +ohrt +oharra +oguendo +ogier +offermann +oetzel +oechsle +odor +odoherty +oddi +ockerman +occhiogrosso +obryon +obremski +nyreen +nylund +nylen +nyholm +nuon +nuanes +norrick +noris +nordell +norbury +nooner +nono +nomura +nole +nolden +nola +nofsinger +nocito +nobel +niedbala +niebergall +nicolini +nicole +nicklaus +nevils +neuburger +nemerofsky +nemecek +nazareno +nastri +nast +nancy +nagorski +myre +muzzey +mutton +mutschler +muther +musumeci +muranaka +muramoto +murad +murach +muns +munno +muncrief +mugrage +muecke +mozer +moyet +mowles +mottern +mosman +mosconi +morine +morge +moravec +morad +moneymaker +mones +moncur +monarez +molzahn +moglia +moesch +mody +modisett +mitnick +mithcell +mitchiner +mistry +misercola +mirabile +minvielle +mino +minkler +minifield +minichiello +mindell +minasian +milteer +millwee +millstein +millien +mikrut +mihaly +miggins +michard +mezo +metzner +mesquita +mervin +merriwether +merk +merfeld +mercik +mercadante +mention +menna +mendizabal +mender +members +melusky +melquist +mellado +meler +melendes +mekeel +meiggs +megginson +meck +mcwherter +mcwayne +mcsparren +mcrea +mcneff +mcnease +mcmurrin +mckeag +mchughes +mcguiness +mcgilton +mcelreath +mcelhone +mcelhenney +mceldowney +mccurtain +mccure +mccosker +mccory +mccormic +mccline +mccleave +mcclatchey +mccarney +mccanse +mcallen +mazzie +mazin +mazanec +mayette +mautz +mauser +maun +mattas +mathurin +mathiesen +massmann +masri +masias +mascolo +mascetti +mascagni +marzolf +maruska +martain +marta +marszalek +marolf +marmas +marlor +markwood +marines +marinero +marier +marich +marcom +marciante +marchman +marchio +marbach +manzone +mantey +mannina +manhardt +manfred +manaois +malmgren +mallonee +mallin +mallary +malette +makinson +makins +makarewicz +mainwaring +maida +maiava +magro +magouyrk +magett +maeder +madyun +maduena +maden +madeira +macnamara +mackins +mackel +macinnes +macia +macgowan +lyssy +lyerly +lyalls +lutter +lunney +luksa +ludeman +lucidi +lucci +lowden +lovier +loughridge +losch +lory +lorson +lorenzano +lorden +lorber +lopardo +loosier +loomer +longsdorf +longchamps +loncar +loker +logwood +loeffelholz +lockmiller +livoti +linford +linenberger +lindloff +lindenbaum +limoges +lilla +liley +lighthill +lightbourne +lieske +leza +levels +levandoski +leuck +lepere +leonhart +lenon +lemma +lemler +leising +leinonen +lehtinen +lehan +leetch +leeming +ledyard +ledwith +ledingham +leclere +leck +lebert +leandry +lazzell +layo +laye +laxen +lawther +lawn +lawerance +lavoy +lavertu +laverde +lauren +latouche +latner +lathen +last +laskin +lashbaugh +lascala +larroque +larick +laraia +laplume +lanzilotta +lannom +landrigan +landolt +landess +lancia +lamkins +lalla +lalk +lakeman +lakatos +laib +lahay +lagrave +lagerquist +lafoy +lafleche +lader +labrada +kwiecinski +kutner +kunshier +kulakowski +kujak +kuehnle +kubisiak +krzyminski +krugh +krois +kritikos +krill +kriener +krewson +kretzschmar +kretz +kresse +kreiter +kreischer +krebel +kraut +krans +kraling +krahenbuhl +kouns +kotson +kossow +kopriva +konkle +kolter +kolk +kolich +kohner +koeppen +koenigs +kock +kochanski +kobus +knowling +knouff +knoerzer +knippel +kloberdanz +kleinert +klarich +klaassen +kizzie +kisamore +kirn +kiraly +kipps +kinson +kinneman +kington +kine +kimbriel +kille +kick +kibodeaux +khamvongsa +keylon +kever +keser +kertz +kercheval +kenneth +kendrix +kendle +ken +kempt +kemple +keesey +keats +keatley +kazmierski +kazda +kazarian +kawashima +katsch +kasun +kassner +kassem +kasperski +kasinger +kaschak +karels +kantola +kana +kamai +kalthoff +kalla +kalani +kahrs +kahanek +kacher +jurasek +juniper +jungels +jukes +juelfs +judice +juda +ju +josselyn +jonsson +jonak +joens +jobson +jegede +jee +jeanjacques +jaworowski +jaspers +jannsen +janner +jankowiak +jank +janiak +jackowski +jacklin +jabbour +iyer +iveson +ivan +isner +iniquez +ingwerson +ingber +ina +imbrogno +ille +ikehara +iannelli +hyson +huxford +huseth +hurns +hurney +hurles +hunnings +humbarger +hulan +huisinga +hughett +hughen +hudler +hubiak +hricko +how +hoversten +hottel +hosaka +horsch +hormann +hordge +honzell +homburg +holten +holme +hollopeter +hollinsworth +hollibaugh +holberg +hohmann +hoenstine +hodell +hodde +hobert +hives +hiter +hirko +hipolito +hinzmann +hinrichsen +hinger +hincks +hilz +hilborn +highley +higashi +hieatt +hicken +heverly +hesch +hervert +hershkowitz +herreras +hermanns +herget +henriguez +hennon +hengel +helmlinger +helmig +helen +heldman +heizer +heinitz +heifner +heidorn +heglin +heffler +hebner +heathman +heaslip +hazlip +haymes +hayase +hawver +haw +havermale +havas +hauber +hashim +hasenauer +harvel +hartney +hartel +harsha +harpine +harkrider +harkin +harer +harclerode +hanzely +hanni +hannagan +hampel +hammerschmidt +hamar +hallums +hallin +hainline +haid +haggart +hafen +haer +hadiaris +hadad +hackford +habeeb +guymon +guttery +gunnett +gull +guillette +guiliano +guilbeaux +guiher +guignard +guerry +gude +gucman +guadian +grzybowski +grzelak +grussendorf +grumet +gruenhagen +grudzinski +ground +grossmann +grof +grisso +grisanti +griffitts +griesbaum +grella +gregston +graveline +grandusky +grandinetti +gramm +goynes +gowing +goudie +gosman +gort +gorsline +goralski +goodstein +goodroe +goodlin +goodheart +goodhart +gonzelez +gonthier +goldsworthy +goldade +goettel +goerlitz +goepfert +goehner +goben +gobeille +glock +gliem +gleich +glasson +glascoe +gladwell +giusto +girdner +gipple +giller +giesing +giammona +ghormley +germon +geringer +gergely +gerberich +gepner +gens +genier +gemme +gelsinger +geigle +gebbia +gayner +gavitt +gatrell +gastineau +gasiewski +gascoigne +garro +garin +ganong +ganga +galpin +gallus +galizia +gajda +gahm +gagen +gaffigan +furno +furnia +furgason +fronczak +frishman +friess +frierdich +fresh +freestone +franta +frankovich +fors +forres +forrer +floris +florido +floria +flis +flicek +flens +flegal +flamenco +finkler +finkenbinder +finefrock +filter +filpo +filion +fierman +fieldman +ferreyra +fernendez +fergeson +fera +fencil +feith +feight +federici +federer +fechtner +feagan +fausnaugh +faubert +fata +farman +farinella +fantauzzi +fanara +falso +falardeau +fagnani +fabro +excell +ewton +evey +everetts +eve +evarts +etherington +estremera +estis +estabrooks +essig +esplin +espenschied +ernzen +erich +eppes +eppard +entwisle +emmi +emison +elison +elguezabal +eledge +elbaz +eisler +eiden +eichorst +eichert +egle +eggler +eggimann +edey +eckerman +echelberger +ebbs +ebanks +dziak +dyche +dyce +dusch +duross +durley +durate +dunsworth +dumke +dulek +duhl +duggin +dufford +dudziak +ducrepin +dubree +dubre +dubie +dubas +droste +drisko +drewniak +doxtator +dowtin +downum +doubet +dottle +dosier +doshi +dorst +dorset +dornbusch +doren +donze +donica +domanski +domagala +dohse +doerner +doerfler +doble +dobkins +dilts +digiulio +digaetano +dietzel +diddle +dickel +dezarn +devoy +devoss +devonshire +devon +devilla +devere +deters +desvergnes +deshay +desena +deross +der +depedro +densley +demorest +demore +demora +demirjian +demerchant +dematteis +demateo +delgardo +delfavero +delaurentis +delamar +delacy +deitrich +deisher +degracia +degraaf +defries +defilippis +decoursey +debruin +debiasi +debar +dearden +dealy +dayhoff +davino +darvin +darrisaw +darbyshire +daquino +daprile +danial +danh +danahy +dalsanto +dallavalle +daine +dagel +dadamo +dacy +dacunha +dabadie +czyz +cutsinger +curney +cuppernell +cunliffe +cumby +cullop +cullinane +cugini +cudmore +cuda +cucuzza +cuch +crumby +crouser +crock +critton +critchley +cristy +cremona +cremar +crehan +creary +crasco +crall +crabbe +cozzolino +cozier +coyner +couvillier +counterman +coulthard +coudriet +cottom +corzo +cornutt +corkran +cords +corda +copelin +coonan +consolo +conrow +conran +connerton +conkwright +condren +comp +comly +comisky +colli +collet +colello +colbeck +colarusso +coiner +cohron +codere +cocks +cobia +cly +cluster +clure +clowser +clovis +clingenpeel +clenney +clendaniel +clemenson +cleere +cleckler +claybaugh +clason +cirullo +ciraulo +ciolek +ciampi +christopherse +christophe +chovanec +chopra +chol +chiem +chestnutt +chesterman +chernoff +chermak +chelette +checketts +charpia +charo +chargois +champman +challender +chafins +cerruto +celi +cea +cazenave +cay +cavaluzzi +cauthon +caudy +catino +caterina +catano +castell +cassaro +cassarino +carrano +carozza +carow +carmickle +carlyon +carlew +cardena +caputi +capley +capalbo +canseco +candella +canal +campton +camposano +calleros +calleja +callegari +calica +calarco +calais +caillier +cahue +cadenhead +cadenas +cabera +buzzo +busto +bussmann +busenbark +burzynski +bursley +bursell +burle +burkleo +burkette +burczyk +bumstead +bullett +buikema +buenaventura +buege +buechel +budreau +budhram +bucknam +brye +brushwood +brumbalow +brulotte +bruington +bruderer +browns +brougher +bromfield +broege +brodhead +brocklesby +broadie +brizuela +britz +brisendine +brilla +briggeman +brierton +bridgeford +breyfogle +brevig +breuninger +bresse +bresette +brelsford +breitbach +bread +brayley +braund +branscom +brando +brandner +brahm +braboy +brabble +bozman +boyte +boynes +boyken +bowell +bowan +boutet +bouse +boulet +boule +bottcher +bosquez +borrell +boria +bordes +borchard +bonson +bonino +bonas +bonamico +bolstad +bolser +bollis +bolich +bolf +boker +boileau +bohac +bogucki +bogren +boeger +bodziony +bodo +bodley +boback +blyther +blight +blenker +blazina +blase +blamer +blacknall +blackmond +bitz +biser +biscardi +binz +bilton +billotte +billafuerte +bigford +biegler +bibber +bhandari +beyersdorf +bevelle +bettendorf +bessard +bertsche +berne +berlinger +berish +beranek +bentson +bentsen +benskin +benoy +benoist +benitz +belongia +belmore +belka +belen +beitzel +beiter +beitel +behrns +beckworth +becka +beaudion +beary +beare +beames +beabout +beaber +bazzano +bazinet +baucum +batrez +baswell +bastos +bascomb +bartha +barstad +barrilleaux +barretto +barresi +barona +barkhurst +barke +bardales +barczak +barca +barash +banfill +bambino +balonek +balmes +ballon +balko +balestrieri +baldino +baldelli +baken +baiza +bahner +baek +badour +badman +badley +badia +backmon +bacich +bacca +ayscue +ayo +aynes +austen +ausiello +auringer +auiles +aspinwall +askwith +artiga +arroliga +arns +arman +arellanes +aracena +antwine +antuna +anselmi +ansel +annen +angelino +angeli +angarola +andrae +amparo +amodio +amie +ameen +alwine +alverio +altro +altobello +altemus +alquicira +ally +allphin +allemand +allam +alessio +akpan +akerman +aiona +aikman +agyeman +agredano +adamik +adamczak +acrey +achilles +acevado +abu +abreo +abrahamsen +abild +zwicker +zweig +zuvich +zumpano +zuluaga +zubek +zornes +zoglmann +ziminski +zimbelman +zhanel +zenor +zechman +zauner +zamarron +zaffino +yusuf +ytuarte +yoke +yett +yerkovich +yelder +yaw +yasuda +yapp +yankee +yaden +yackley +yaccarino +xia +wytch +wyre +wussow +worthing +wormwood +wormack +worlds +wordsworth +wordell +woodroof +woodington +woodhams +wooddell +wollner +wojtkowski +wojcicki +wogan +wlodarczyk +wixted +withington +withem +wisler +wirick +winterhalter +winski +winne +winemiller +wimett +wiltfong +willibrand +willes +wilkos +wilbon +wiktor +wiggers +wigg +wiegmann +wickliff +wiberg +whittler +whittenton +whitling +whitledge +whitherspoon +whiters +whitecotton +whitebird +wheary +wetherill +westmark +westaby +wertenberger +wentland +wenstrom +wenker +wellen +weier +wegleitner +wedekind +wawers +wassel +warehime +wank +wandersee +waltmon +waltersheid +walbridge +wakely +wakeham +wajda +waithe +waidelich +wahler +wahington +wagster +wadel +vuyovich +vuolo +vulich +vukovich +volmer +vollrath +vollbrecht +vogelgesang +voeller +vlach +vivar +vitullo +vitanza +visker +visalli +viray +vinning +viniard +villapando +villaman +vier +viar +viall +verstraete +vermilya +verdon +venn +velten +velis +vasey +vanoven +vanorder +vanlue +vanheel +vanderwoude +vanderheide +vandenheuvel +vandenbos +vandeberg +vandal +vanblarcom +vanaken +vanacker +vallian +valine +valent +vaine +vaile +vadner +uttech +urioste +urbanik +unrath +unnasch +underkofler +uehara +udy +tyrer +tyburski +twaddle +turntine +tunis +tullock +trunk +tropp +troilo +tritsch +triola +trigo +tribou +tribley +tri +trethewey +tress +trela +treharne +trefethen +trayler +trax +traut +trang +tranel +trager +traczyk +towsley +torrecillas +tornatore +tork +torivio +toriello +tooles +toodle +tomme +tolosa +tolen +toca +titterington +tipsword +tinklenberg +tim +tigney +tigert +thygerson +thurn +thur +threats +thorstad +thornberg +thoresen +thomaston +tholen +thicke +theiler +thebeau +theaux +thaker +tewani +teufel +tetley +terrebonne +terrano +terpening +telly +tela +teig +teichert +tegethoff +teele +tatar +tashjian +tarte +tanton +tanimoto +tamimi +tamas +talman +taal +szydlowski +szostak +swoyer +swerdlow +sweeden +sweda +swanke +swander +swackhammer +suyama +suriano +suri +surdam +suprenant +sundet +summerton +sult +suleiman +suffridge +suby +stych +studeny +stubbins +strupp +struckman +strief +strictland +stremcha +strehl +stramel +stoy +stoutamire +storozuk +stordahl +stopher +stolley +stolfi +stoeger +stockhausen +stjulian +stivanson +stinton +stinchfield +stigler +stieglitz +stgermaine +steuer +steuber +steuart +stepter +stepnowski +stepanian +steimer +stefanelli +stebner +stears +steans +stayner +staubin +statz +stasik +starn +starmer +stargel +stanzione +stankovich +stan +stamour +staib +stadelman +stadel +stachura +squadrito +sprinkles +springstead +spragg +spigelmyer +spieler +spielberg +spaur +sovocool +sovereign +soundara +soulia +souffrant +sos +sorce +sonkin +sodhi +soble +sniffen +smouse +smittle +smithee +smedick +smaller +slowinski +slovacek +slominski +slice +skowronek +skokan +skanes +sivertson +sinyard +sinka +sinard +simonin +simonian +simmions +silcott +silberg +siefken +siddon +shuttlesworth +shubin +shubeck +shiro +shiraki +shipper +shina +shilt +shikles +shideler +shenton +shelvey +shellito +shelhorse +shawcroft +shatto +shanholtzer +shamonsky +shall +shadden +seymer +seyfarth +sewer +setlock +servant +serratos +serr +sepulueda +senay +semmel +semans +selvig +selkirk +selk +seligson +seldin +seiple +seiersen +seidling +seidensticker +secker +searson +scordo +scollard +scoggan +scobee +sciandra +scialdone +schwimmer +schwieger +schweer +schwanz +schutzenhofer +schuetze +schrodt +schriever +schriber +schremp +schrecongost +schraeder +schonberg +scholtz +scholle +schoettle +schoenemann +schoene +schnitker +schmuhl +schmith +schlotterbeck +schleppenbach +schlee +schickel +schibi +schein +scheide +scheibe +scheib +schaumberg +schardein +schaalma +scantlin +scantlebury +sayle +sausedo +saurer +sassone +sarracino +saric +sanz +santino +santarpia +santano +santaniello +sangha +sandvik +sandoral +sandobal +sandercock +sanantonio +salviejo +salsberry +salois +salazer +sagon +saglibene +sagel +sagal +saetern +saefong +sadiq +sabori +saballos +rygiel +rushlow +runco +rulli +ruller +ruffcorn +ruess +ruebush +rudlong +rudin +rudgers +rudesill +ruderman +rucki +rucinski +rubner +rubinson +rubiano +ruan +roznowski +rozanski +rowson +rower +rounsaville +roudabush +rotundo +rothell +rotchford +rosiles +roshak +rosetti +rosenkranz +rorer +rollyson +rokosz +rojek +roitman +rohrs +rogel +roewe +rodriges +rodocker +rodgerson +rodan +rodak +rocque +rochholz +rochel +robicheau +robbinson +roady +ritchotte +ripplinger +rippetoe +ringstaff +ringenberg +rinard +rigler +rightmire +riesen +riek +ridges +richner +richberg +riback +rial +rhyner +rhees +resse +renno +renee +rendleman +ren +reisz +reisenauer +reinschmidt +reins +reinholt +reinard +reifsnyder +rehfeld +reha +regester +reffitt +redler +rediske +reckner +reckart +rebolloso +rebollar +reasonover +reasner +reaser +reano +reagh +raval +ratterman +ratigan +rater +rasp +raneses +randolf +ramil +ramdas +ramberg +rajaniemi +rail +raid +raggio +ragel +ragain +rade +radaker +racioppi +rabinovich +quickle +quertermous +queal +quartucci +quander +quain +pynes +putzel +purl +pulizzi +pugliares +prusak +prueter +protano +propps +primack +prieur +presta +preister +prawl +pratley +prairie +pozzo +powless +povey +pottorf +pote +postley +porzio +ports +portney +ponzi +pontoriero +ponto +pont +poncedeleon +polimeni +polhamus +pole +polan +poetker +poellnitz +podgurski +plotts +pliego +plaugher +plantenberg +plair +plagmann +pizzitola +pittinger +pitcavage +pischke +piontek +pintar +pinnow +pinneo +pinley +pingel +pinello +pimenta +pillard +piker +pietras +piere +picasso +phillps +pfleger +pfahl +pezzuti +petruccelli +petrello +peteet +pescatore +peruzzi +perusse +perotta +perona +perini +peretti +perelman +perciful +peppin +pennix +pennino +penalosa +pemble +pelz +peltzer +pelphrey +pelote +pellum +pellecchia +pelikan +peitz +peels +pebworth +peary +pawlicki +pavelich +paster +pasquarella +paskey +paseur +paschel +parslow +parrow +parrot +parlow +parlett +parler +pargo +parco +paprocki +panepinto +panebianco +pandy +pandey +pamphile +pamintuan +pamer +paluso +paleo +paker +pagett +paczkowski +ozburn +ovington +overmeyer +ouellet +osterlund +oslin +oseguera +osaki +orrock +ormsbee +orlikowski +organista +oregan +orebaugh +orabuena +openshaw +ontiveroz +ondo +omohundro +ollom +ollivierre +olivencia +oley +olazabal +okino +oki +offenberger +oestmann +ocker +obar +oakeson +nuzum +nurre +nowinski +novosel +norquist +nordlie +noorani +nonnemacher +nolder +njoku +niznik +niwa +niss +ninneman +niner +nimtz +niemczyk +nieder +nicolo +nichlos +niblack +newyear +newtown +newill +newcom +neverson +neuhart +neuenschwande +nestler +nenno +nejman +neiffer +neidlinger +neglia +needs +nearing +nazarian +navor +nary +narayan +nangle +nakama +naish +naik +nadolski +muscato +murphrey +murdick +murchie +muratalla +munnis +mundwiller +muncey +munce +mullenbach +mulhearn +mulcahey +muhammed +muchow +mountford +moudry +mosko +morvay +morrical +morr +moros +mormann +morgen +moredock +morden +mordarski +moravek +morandi +morale +mooradian +montejo +montegut +montan +monsanto +monford +moncus +molinas +molek +mohd +moehrle +moehring +modzeleski +model +modafferi +moala +moake +miyahira +mitani +mischel +minges +minella +mimes +milles +milbrett +milanes +mikolajczyk +mikami +meucci +metler +methven +metge +messmore +messerschmidt +mesrobian +meservey +merseal +menor +menon +menear +melott +melley +melfi +meinhart +megivern +megeath +meester +meeler +meegan +medoff +medler +meckley +meath +mearns +mcquigg +mcpadden +mclure +mckellips +mckeithen +mcglathery +mcginnes +mcghan +mcdonel +mccullom +mccraken +mccrackin +mcconathy +mccloe +mcclaughry +mcclaflin +mccarren +mccaig +mcaulay +mcaffee +mazzuca +maytubby +mayner +maymi +mattiello +matthis +matthees +matthai +mathiason +mastrogiovann +masteller +mashack +marucci +martorana +martiniz +marter +martellaro +marsteller +marris +marrara +maroni +marolda +marocco +maritn +margo +maresh +maready +marchione +marbut +maranan +maragno +mapps +manrriquez +manny +mannis +manni +mangina +manganelli +mancera +mamon +maloch +mallozzi +maller +majchrzak +majano +mainella +mahanna +maertens +madon +macumber +macioce +machuga +machlin +machida +machala +mabra +lynne +lybbert +luvert +lutts +luttrull +lupez +lukehart +ludewig +luchsinger +loyal +lovecchio +louissaint +loughney +lottie +lostroh +lose +lorton +lorette +lopeman +loparo +longs +loner +londo +lombera +lokietek +loiko +lohrenz +lohan +lofties +locklar +lockaby +lobianco +loader +loa +llano +livesey +litster +liter +liske +linsky +linne +lindbeck +limes +licudine +leyua +levie +letterman +leonelli +lenzo +lenze +lents +leitao +leif +leidecker +leibold +lehne +legan +legacy +lefave +leehy +ledue +lecount +lecea +leadley +lazzara +lazcano +lazalde +layer +lavi +lavancha +lavan +lav +laude +latu +latty +lato +larranaga +lapidus +lapenta +langridge +langeveld +langel +lanes +landowski +landgren +landfried +lame +lamattina +lallier +lairmore +lahaie +lagazo +lagan +lafoe +lafluer +laflame +lafevers +lada +lacoss +lachney +labreck +labreche +labay +laa +kwasnik +kuzyk +kutzner +kushnir +kusek +kurtzman +kurian +kulhanek +kuklinski +kuh +kueny +kuczynski +kubitz +kuang +kruschke +krous +krompel +kritz +krimple +kriese +krenzer +kreis +kratzke +krane +krage +kraebel +kozub +kozma +kouri +koudelka +kotcher +kotas +kostic +kosh +kosar +kopko +kopka +kooy +konigsberg +konarski +kolmer +kohlmeyer +kobbe +knoop +knoedler +knocke +knipple +knippenberg +knickrehm +kneisel +kluss +klossner +klipfel +klawiter +klasen +kittles +kissack +kirtland +kirschenmann +kirckof +kiphart +kinstler +kinion +kilton +killman +kiehl +kief +kett +kesling +keske +kerstein +kepple +keneipp +kempson +kempel +kelp +kehm +kehler +keh +keeran +keedy +kebert +keast +kearbey +kawaguchi +kaupu +kauble +katzenbach +kate +katcher +kartes +karpowicz +karpf +karen +karban +kanzler +kanarek +kamper +kaman +kalsow +kalafut +kaeser +kaercher +kaeo +kaeding +jurewicz +julson +jozwick +jollie +johnigan +johll +jochum +jewkes +jestes +jeska +jersey +jereb +jayson +jaurez +jarecki +jansma +janosik +jandris +jamin +jahr +jacot +jabs +ivens +itson +isenhower +iovino +ionescu +ingrum +ingels +inch +imrie +imlay +ihlenfeld +ihde +igou +ibach +huyett +hurry +huppe +hultberg +hullihen +hugi +hueso +huesman +hsiao +hronek +hovde +housewright +houlahan +hougham +houchen +hostler +hoster +hosang +hornik +hornes +horio +honyumptewa +honeyman +honer +hommerding +holsworth +hollobaugh +hollinshead +hollands +hollan +holecek +holdorf +hokes +hogston +hoesly +hodkinson +hodgman +hodgens +hochstedler +hochhauser +hobbie +hoare +hnat +hiss +hiskey +hirschy +hinostroza +hink +hing +hillmer +hillian +hillerman +hietala +hierro +hickling +hickingbottom +heye +heubusch +hesselschward +herriot +hernon +hermida +hermans +hentschel +henningson +henneke +henk +heninger +heltsley +helmle +helminiak +helmes +hellner +hellmuth +helke +heitmeyer +heird +heinle +heinicke +heinandez +heimsoth +heimlich +heibel +hegyi +heggan +hefel +heeralall +hedrington +heacox +hazlegrove +hazelett +haymore +havenhill +hautala +hascall +harvie +hartrick +hartling +harrer +harles +hargenrader +hanshew +hanly +hankla +hanisch +hancox +hammann +hambelton +halseth +hallisey +halleck +hallas +haisley +hairr +hainey +hainer +hailstock +haertel +guzek +guyett +guster +gussler +gurwitz +gurka +gunsolus +guinane +guiden +gugliotti +guevin +guevarra +guerard +gudaitis +guadeloupe +gschwind +grupe +grumbach +gruenes +gruenberg +grosser +grom +grodski +groden +grizzel +gritten +griswald +grishaber +grinage +grimwood +grims +griffon +griffies +gribben +grew +gressley +gren +greenstreet +grealish +gravett +grantz +granfield +granade +gowell +gossom +gorsky +goring +goodnow +goodfriend +goodemote +golob +gollnick +golladay +goldwyn +goldsboro +golds +goldrick +gohring +gohn +goettsch +goertzen +goelz +godinho +goans +glumac +gleisner +gleen +glassner +glanzer +gladue +gjelaj +givhan +girty +girone +girgenti +giorgianni +gilpatric +gillihan +gillet +gilbar +gierut +gierhart +gibert +gianotti +giannetto +gianelli +giambanco +gharing +geurts +gettis +gettel +gest +germani +gerdis +gerbitz +geppert +gennings +gemmer +gelvin +gellert +gehler +geddings +gearon +geach +gazaille +gayheart +gauld +gaukel +gaudio +gato +gathing +gasque +garstka +garsee +garringer +garofano +garo +garnsey +garigen +garcias +garbe +ganoung +ganfield +ganaway +gamero +galuska +galster +gallacher +galinski +galimi +galik +galeazzi +galdo +galdames +galas +galanis +gaglio +gaff +gaeddert +gadapee +fussner +furukawa +fuhs +fuerte +fuerstenberg +fryrear +fruits +froese +fringer +frieson +friesenhahn +frieler +friede +freymuth +freyman +freudenberg +freman +fredricksen +frech +frasch +frantum +frankin +franca +frago +fragnoli +fouquet +fossen +foskett +forner +formosa +formisano +forget +fooks +fons +folino +flott +floor +flesch +flener +flemmons +flattery +flanagin +flamino +flamand +fitzerald +findling +filsinger +fillyaw +fillinger +fiechter +ferre +ferdon +feldkamp +fazzio +favia +faulconer +faughnan +faubel +fassler +faso +farrey +farrare +farnworth +farland +fairrow +faille +faherty +fagnant +fabula +fabbri +eylicio +esteve +estala +espericueta +escajeda +erlich +equia +epson +enrriquez +enomoto +enmon +engemann +emmerson +emmel +emler +emilio +elstad +ellwein +ellerson +eliott +eliassen +elchert +eisenbeis +eisel +eikenberry +eichholz +ehmer +edris +edgerson +echenique +eberley +eans +dziuk +dykhouse +dworak +dutt +dupas +duntz +dunshee +dunovant +dunnaway +dummermuth +duerson +duddy +ducotey +duchon +duchesneau +ducci +dubord +duberry +dubach +drummonds +droege +drish +drier +drexel +dresch +dresbach +drenner +drechsler +dowen +dotter +dosreis +doser +dorward +dorin +dorf +door +domeier +doler +doleman +dolbow +dolbin +dobrunz +dobransky +dobberstein +dlouhy +diosdado +dingmann +dimmer +dimarino +dimaria +dilly +dillenburg +dilaura +dieken +dickhaus +dibbles +dibben +diamante +dewilde +dewaard +devich +devenney +devaux +dettinger +desroberts +dershem +dersch +derita +derickson +depina +deorio +deoliveira +denzler +dentremont +denoble +demshar +demond +demint +demichele +demel +delzer +delval +delorbe +delli +delbridge +delanoy +delancy +delahoya +dekle +deitrick +deis +dehnert +degrate +defrance +deetz +deeg +decoster +decena +dearment +daughety +datt +darrough +danzer +dante +danielovich +dandurand +dancause +dalo +dalgleish +daisley +daft +dadlani +daddona +daddio +dacpano +cyprian +cutillo +cush +curz +curvin +cuna +cumber +cullom +cudworth +cubas +crysler +cryderman +crummey +crumbly +crookshanks +croes +criscione +crimes +crespi +cresci +creaser +craton +cramp +cradle +cowin +cowdrey +coutcher +cotterman +cosselman +cosgriff +cortner +corsini +corporan +corniel +cornick +cordts +cordial +copening +coolman +connick +conlisk +conelli +common +comito +colten +colling +colletta +coldivar +colclasure +colantuono +colaizzi +coggeshall +cockman +cockfield +cobourn +cobo +cobarrubias +clyatt +cloney +clonch +climes +cleckner +clearo +claybourne +clavin +claridge +claffey +ciufo +cisnero +cipollone +cieslik +ciejka +cichocki +cicchetti +cianflone +chrusciel +christesen +chmielowiec +chirino +chillis +chihuahua +chhoun +chevas +chehab +chaviano +chavaria +chasten +charbonnet +chanley +champoux +champa +chalifoux +cerio +cedotal +cech +cavett +cavendish +catoire +castronovo +castellucci +castellow +castaner +casso +cassels +cassatt +cassar +cashon +cartright +carros +carrisalez +carrig +carrejo +carnicelli +carnett +carlise +carline +carhart +caren +cardova +cardell +carchi +caram +caquias +capper +capizzi +capano +cannedy +campese +calvello +callon +callins +callies +callicutt +calix +calin +califf +calderaro +caldeira +cadriel +cadmus +cadman +caccamise +buys +buttermore +butay +bustamente +busa +burmester +burkard +burhans +burgert +bure +burdin +bullman +bulin +buelna +buehner +budin +buco +buckhanon +bryars +brutger +brus +brumitt +brum +bruer +brucato +broyhill +broy +brownrigg +brownie +brossart +brookings +broden +brocklehurst +brockert +bristo +briskey +brisbane +bringle +bries +briar +bressman +bren +branyan +brands +bramson +brammell +brallier +bozich +boysel +bowthorpe +bowron +bowin +boutilier +boulos +boullion +boughter +bottiglieri +borruso +borrow +borreggine +borns +borkoski +borghese +borenstein +boran +bora +booton +bonvillain +bonini +bong +bonello +bolls +boitnott +boike +bohnet +bohnenkamp +bohmer +boeson +boeneke +bodey +bocchino +bobrowski +bobic +bluestein +bloomingdale +blogg +blewitt +blenman +bleck +blaszak +blankenbeckle +blando +blanchfield +blancato +blalack +blakenship +blackett +bisping +birkner +birckhead +bingle +bineau +billiel +bigness +bies +bierer +bhalla +beyerlein +bew +betesh +besler +berzins +bertalan +berntsen +berna +bergo +berganza +bennis +benney +benkert +benjamen +benincasa +bengochia +bendle +bendana +benchoff +benbrook +belsito +belshaw +belinsky +belak +bela +beigert +beidleman +behen +befus +beel +beebee +bedonie +beckstrand +beckerle +beato +bears +bauguess +baughan +bauerle +battis +batis +bastone +bastille +bassetti +bashor +bary +bartunek +bartoletti +barro +barno +barnicle +barlage +barkus +barkdull +bari +barcellos +barbarino +baranski +baranick +bankert +banchero +ban +bambrick +bamberg +bambenek +balthrop +balmaceda +ballman +balistrieri +balcomb +balboni +balbi +bakshi +bagner +bagent +badasci +bacot +bache +babu +babione +babic +babers +babbs +awkward +avitabile +avers +avena +avance +ausley +auker +audas +aud +aubut +athearn +atcheson +astorino +asplund +aslanian +askari +ashmead +asby +asai +arterbury +artalejo +arqueta +arquero +arostegui +arnell +armeli +arista +arender +arca +arballo +aprea +applen +applegarth +apfel +antonello +antolin +antkowiak +angis +angione +angerman +angelilli +andujo +andrick +anderberg +amigon +ambers +amalfitano +alviso +alvez +altice +altes +almarez +allton +allston +allgeyer +allegretti +aliaga +algood +alberg +albarez +albaladejo +akre +aitkin +ahles +ahlberg +agnello +adrien +adinolfi +adamis +abramek +abolt +abitong +zurich +zurawski +zufall +zubke +zizzo +zipperer +zinner +zinda +ziller +zill +zevallos +zesati +zenzen +zentner +zellmann +zelinsky +zboral +zarcone +zapalac +zaldana +zakes +zaker +zahniser +zacherl +zabawa +zabaneh +yum +youse +youree +younis +yorty +yonce +yero +yerkey +yeck +yeargan +yauch +yashinski +yambo +xiang +wrinn +wrightsman +worton +wortley +worland +woolworth +woolfrey +woodhead +woltjer +wolfenden +wolden +wolchesky +wojick +woessner +witwer +witters +witchard +wissler +wisnieski +wisinski +winnike +winkowski +winkels +wingenter +wineman +winegardner +wimpy +wilridge +wilmont +willy +willians +williamsen +wilhide +wilhelmsen +wilhelmi +wildrick +wilden +wiland +wiker +wigglesworth +wiebusch +widdowson +wiant +wiacek +whittet +whitter +whitelock +whiteis +whiley +westrope +westpfahl +westin +wessman +wessinger +wesemann +wesby +wertheimer +weppler +wenke +wengler +wender +welp +weitzner +weissberg +weisenborn +weipert +weiman +weidmann +wehrsig +wehrenberg +weemes +weeman +wayner +waston +wasicek +wascom +wasco +warmath +warbritton +waltner +wallenstein +waldoch +waldal +wala +waide +wadlinger +wadhams +vullo +voorheis +vonbargen +volner +vollstedt +vollman +vold +voge +vittorio +virtue +virginia +violett +viney +vinciguerra +vinal +villata +villarrvel +vilanova +vigor +vigneault +view +vielma +veyna +vessella +versteegh +verderber +venier +venice +venditti +velotta +vejarano +veil +vecchia +vecchi +vastine +vasguez +varella +vanry +vannah +vanhyning +vanhuss +vanhoff +vanhoesen +vandivort +vandevender +vanderlip +vanderkooi +vandebrink +vancott +vallien +vallas +vallandingham +valiquette +valasek +vahey +vagott +uyematsu +urbani +uran +upp +uno +union +umbach +udo +tyon +tyma +twyford +twombley +twohig +tutterrow +turnes +turkington +turchi +tunks +tumey +tumbaga +tuinstra +tsukamoto +tschetter +trussel +trubey +trovillion +troth +trostel +tron +trinka +trine +tribbey +triarsi +trevor +treto +trautz +tragesser +tooman +toolson +tonozzi +tomkiewicz +tomb +tomasso +tolin +tolfree +toelle +tisor +tiry +tinstman +timmermann +tillie +tickner +tiburcio +thunberg +thronton +thompsom +theil +thayne +thaggard +teschner +tensley +tenery +tempest +tellman +tellado +telep +teigen +teator +teall +tayag +tavis +tattersall +tassoni +tarshis +tappin +tappe +tansley +talone +talford +tainter +taha +taguchi +tacheny +tabak +szymczyk +szwaja +szopinski +sze +syvertsen +swogger +switcher +swist +swilling +swierczek +swiech +swickard +swiatek +swezey +swepson +sweezy +swaringen +swanagan +swailes +swade +sveum +svenningsen +svec +suttie +supry +sunga +summerhill +summars +sulit +stys +stutesman +stupak +stumpo +stuller +stuekerjuerge +stuckett +stuckel +stuchlik +stuard +strutton +strop +stromski +stroebel +strehlow +strause +strano +straney +stradling +stoyle +stormo +stopyra +stoots +stoop +stonis +stoltenburg +stoiber +stoessel +stitzer +stien +stichter +stezzi +stewert +stepler +steinkraus +stegemann +steeples +steenburg +steeley +staszak +stasko +starkson +stanwick +stanke +stanifer +stangel +stain +stai +squiers +sprout +springsteen +spraglin +spragins +spraberry +spoelstra +spisak +spirko +spille +spidel +speyer +speroni +spenst +speak +spartz +sparlin +sparacio +spaman +spainhower +sow +souers +souchet +sosbee +sorn +sorice +sorbo +soqui +somer +solon +soehl +sodergren +socorro +sobie +smucker +smsith +smoley +smolensky +smolenski +smolder +smethers +slusar +slowey +slonski +slemmons +slatkin +slates +slappy +slaney +slagter +slacum +skutnik +skrzypek +skibbe +sjostrom +sjoquist +sivret +sitko +sisca +sinnett +sineath +simoni +simar +simao +silvestro +silleman +silkwood +silha +silfies +silberhorn +silacci +sigrist +sieczkowski +sieczka +shure +shulz +shugrue +shrode +shown +shovlin +shortell +shonka +shiyou +shiraishi +shiplett +sheu +shermer +sherick +sheng +sheeks +shed +sharron +shantz +shakir +shaheed +shadoan +shadid +shackford +shabot +seung +seufert +setty +setters +servis +server +serres +serrell +serpico +serpas +serafine +sensenig +senft +semenec +semen +semas +semaan +selvera +sellmeyer +sek +segar +seever +seeney +seeliger +seehafer +seebach +sebben +seaward +seary +searl +searby +scotland +scordino +scolieri +scolaro +schwiebert +schwartze +schwaner +schuur +schupbach +schumacker +schum +schudel +schubbe +schroader +schramel +schollmeyer +schoenherr +schoeffler +schoeder +schnurr +schnorr +schneeman +schnake +schnaible +schmaus +schlotter +schinke +schimming +schimek +schikora +scheulen +scherping +schermer +scherb +schember +schellhase +schedler +schanck +schaffhauser +schaffert +schadler +scarola +scarfo +scarff +scantling +scaff +sayward +sayas +saxbury +savin +savel +savastano +savannah +sault +satre +sarkar +santellan +sandmeier +sampica +salvesen +saltis +salloum +salling +salce +salatino +salata +salamy +safe +sadowsky +sadlier +sabbatini +sabatelli +sabal +sabados +rydzewski +rybka +rybczyk +ruz +rusconi +rupright +rufino +ruffalo +rudiger +rudig +ruda +rubyor +royea +roxberry +rover +rouzer +roumeliotis +roston +rossmann +rosko +rosetta +rosene +rosenbluth +roseland +rosasco +rosano +rosal +rorabaugh +romie +romaro +rolstad +rollow +rohrich +roghair +rogala +roets +roen +roemmich +roelfs +roeker +roedl +roedel +rodeheaver +roddenberry +rockstad +rocchi +robirds +robben +robasciotti +robaina +rizzotto +rizzio +rittle +ritcher +rissman +riseden +ripa +rion +rintharamy +rinehimer +rinck +riling +rike +rietschlin +riesenberg +riemenschneid +rieland +rickenbaugh +rickenbach +riches +rhody +revells +reutter +respress +resnik +renton +remmel +reitmeyer +reitan +reister +reinstein +reino +reinkemeyer +reifschneider +reierson +reichle +rehmeier +rehl +regine +reeds +rede +records +recar +rebeiro +raybourn +rawl +rautio +raugust +raudenbush +raudales +rattan +rashad +rapuano +rapoport +rantanen +ransbottom +raner +ramkissoon +rambousek +raio +rainford +radakovich +rad +rabenhorst +quivers +quispe +quintin +quinoes +quince +quilici +quattrone +quates +quance +quale +purswell +purpora +pulera +pulcher +puckhaber +pryer +pruyne +pruit +prudencio +prows +protzman +prothero +prospero +prosperi +prospal +privott +pritchet +priem +prest +prell +preer +pree +preddy +preda +pravata +pradhan +potocki +postier +postema +posse +posadas +poremba +popper +popichak +ponti +pomrenke +pomponi +pomarico +pollok +polkinghorn +polino +pock +plough +plenty +plater +plagman +pipher +pinzone +pinkleton +pillette +pillers +pill +pilapil +pignone +pignatelli +piersol +piepho +picton +pickrel +picket +pichard +picchi +piatek +pharo +phanthanouvon +pettingill +pettinato +petrovits +pethtel +petersheim +pershing +perrez +perra +pergram +peretz +perego +perches +pennello +pennella +pennant +pendry +penaz +pellish +peeks +pecanty +peare +paysour +pavlovich +pavick +pavelko +paustian +patzer +patsy +patete +patadia +paszkiewicz +pase +pasculli +pascascio +parrotte +parlor +parajon +paparo +papandrea +paone +pantaleon +panning +paniccia +pancho +panarello +palmeter +pallan +palardy +pahmeier +padget +padel +oyster +oya +oxborrow +oveson +outwater +ottaway +otake +ostermeyer +osmer +osinski +osiecki +oroak +orndoff +orms +orkin +oregon +ordiway +opatz +onsurez +onishi +oliger +okubo +okoye +ohlmann +offord +offner +offerdahl +oesterle +oesch +odonnel +odeh +odebralski +obie +obermeier +oberhausen +obenshain +obenchain +oats +nute +nulty +norrington +norlin +nore +nordling +nordhoff +norder +nordan +norals +nogales +noboa +nitsche +niermann +nienhaus +niedringhaus +niedbalski +nicolella +nicolais +nickleberry +nicewander +newfield +neurohr +neumeier +netterville +nersesian +nern +nerio +nerby +nerbonne +neitz +neighbours +neighbor +neidecker +neat +neason +nead +navratil +naves +nastase +nasir +nasca +narine +narimatsu +nard +narayanan +nappo +namm +nalbone +nakonechny +nabarro +myott +muthler +muscatello +murriel +murin +murders +muoio +mundel +munafo +mulch +mukherjee +muffoletto +muessig +muckey +mucher +mruk +moyd +mowell +mowatt +moutray +mourning +mou +motzer +moster +mortis +morgenroth +morga +morataya +montross +montezuma +monterroza +montemarano +montello +montbriand +montavon +montaque +monigold +monforte +molgard +moleski +mohsin +mohead +mofield +moerbe +moeder +mochizuki +miyazaki +miyasaki +mital +miskin +mischler +minus +minniear +minero +milosevic +mildenhall +mila +mikhail +mielsch +midden +michonski +michniak +michitsch +michelotti +micheli +michelfelder +michand +miao +metelus +merkt +merando +meranda +mentz +meneley +menaker +memory +melino +meir +mehaffy +meehl +meech +meczywor +mcweeney +mcumber +mcredmond +mcneer +mcnay +mcmikle +mcmaken +mclaurine +mclauglin +mclaney +mckune +mckinnies +mckague +mchattie +mcgrapth +mcglothen +mcgath +mcfolley +mcdannell +mccurty +mccort +mcclymonds +mcclimon +mcclamy +mccaughan +mccartan +mccan +mccadden +mcburnie +mcburnett +mcbryar +mcannally +mcalevy +mcaleese +maytorena +mayrant +mayol +mayland +mayeaux +mauter +matthewson +mathiew +matern +matera +maslow +mashore +masaki +maruco +martorell +martenez +marry +marrujo +marrison +maroun +markway +markos +markoff +markman +marian +marello +marbry +marban +maranda +maphis +manuele +mansel +manganello +mandrell +mandoza +manard +manago +maltba +mallick +mallak +maline +malikowski +majure +majcher +maise +mahl +maffit +maffeo +madueno +madlem +madariaga +macvane +mackler +macconnell +macchi +maccarone +lyng +lynchard +lura +lunning +luneau +lunden +lumbra +lumbert +lueth +ludington +luckado +lucchini +lucatero +luallen +lozeau +lowen +lovera +lovelock +louck +lothian +lorio +lorimer +lorge +loretto +longhenry +lonas +loiseau +lohrman +logel +loft +locks +lockie +llerena +livington +liuzzi +liscomb +lippeatt +liou +linhardt +lindelof +lindbo +limehouse +limage +lillo +lillian +lilburn +liggons +lidster +liddy +liddick +lich +liberato +lian +lia +leysath +lewelling +lesney +leser +lescano +leonette +lentsch +lenius +lemmo +lemming +lemcke +lein +leggette +legerski +legard +leever +leete +ledin +lecomte +lecocq +leakes +leab +lazarz +layous +lawrey +lawery +lauze +lautz +laughinghouse +latulippe +lattus +lattanzio +later +lascano +larmer +laris +larcher +laprise +lapin +lapage +lano +langseth +langman +langland +landstrom +landsberg +landsaw +landram +lamphier +lamendola +lamberty +lakhani +laker +lajara +lagrow +lagman +ladewig +laderman +ladden +lacrue +laclaire +lachut +lachner +kwit +kvamme +kvam +kutscher +kushi +kurgan +kunsch +kundert +kun +kulju +kukene +kudo +kubin +kubes +kuberski +krystofiak +kruppa +krul +krukowski +kruegel +kronemeyer +krock +kriston +kretzer +krenn +kralik +krafft +krabill +kozisek +kovich +koverman +kovatch +kovarik +kotlowski +kosmala +kosky +kosir +kosa +korpi +kornbluth +koppen +kooistra +kohlhepp +kofahl +koeneman +koebel +koczur +kobrin +kobashigawa +koba +knuteson +knoff +knoble +knipper +knierim +kneisley +klusman +kloc +klitzing +klinko +klinefelter +klemetson +kleinpeter +klauser +klatte +klaren +klare +kissam +kirkhart +kirchmeier +kinzinger +kindt +kincy +kincey +kimoto +killingworth +kilcullen +kilbury +kietzman +kienle +kiedrowski +kidane +khamo +khalili +ketterling +ketchem +kessenich +kessell +kepp +kenon +kenning +kennady +kendzior +kemppainen +kellermann +keirns +keilen +keiffer +kehew +keelan +keawe +keator +kealy +keady +kathman +kastler +kastanes +kassab +karren +karpin +karau +karathanasis +kara +kaps +kaplun +kapaun +kannenberg +kanipe +kander +kandel +kanas +kanan +kamke +kaltenbach +kallenberger +kallam +kali +kaley +kafton +kafer +kabler +kaaihue +jupiter +jundt +jubilee +jovanovich +jojola +johnstad +jodon +joachin +jinright +jew +jessick +jeronimo +jerald +jenne +jelsma +jeannotte +jeangilles +jaworsky +jaubert +jarry +jarrette +jarreau +jarett +janos +janecka +janczak +jalomo +jagoda +jagla +jacquier +jaber +iwata +ivanoff +isola +iserman +isais +isaacks +iron +inverso +infinger +ibsen +hyser +hylan +hybarger +hwee +hutchenson +hutchcroft +husar +hurlebaus +hunsley +hunker +hummingbird +humberson +hulst +hulon +huhtala +hugill +hugghins +huffmaster +huckeba +hrabovsky +howden +hoverson +houts +houskeeper +housh +hosten +horras +horchler +hor +hopke +hooke +honie +holtsoi +holsomback +holoway +holmstead +hoistion +hohnstein +hoheisel +hoguet +hoggle +hogenson +hoffstetter +hoffler +hoffa +hofe +hoefling +hoague +hizer +hirschfield +hironaka +hiraldo +hinote +hingston +hind +hinaman +hillie +hillesheim +hilderman +hiestand +heyser +heys +hews +hew +hertler +herrero +herrandez +heppe +henle +henkensiefken +henigan +henandez +henagan +hemberger +heman +helser +helmich +hellinger +helfrick +heldenbrand +heinonen +heineck +heikes +heidkamp +heglar +heffren +heelan +hedgebeth +heckmann +heckaman +hechmer +hazelhurst +hawken +haverkamp +havatone +hausauer +hasch +harwick +hartse +harts +harrower +harle +hargroder +hardway +hardinger +hardemon +harbeck +hant +hamre +hamberg +hallback +haisten +hailstone +hahl +hagner +hagman +hagemeyer +haeussler +hackwell +haby +haataja +gverrero +gustovich +gustave +guske +gushee +gurski +gurnett +gura +gunto +gunselman +gugler +gudmundson +gudinas +guarneri +grumbine +gruis +grotz +grosskopf +grosman +grosbier +grinter +grilley +grieger +grewal +gressler +greaser +graus +grasman +graser +grannan +granath +gramer +graboski +goyne +gowler +gottwald +gottesman +goshay +gorr +gorovitz +gores +goossens +goodier +goodhue +gonzeles +gonzalos +gonnella +golomb +golick +golembiewski +goeke +godzik +goar +glosser +glendenning +glendening +glatter +glas +gittings +gitter +gisin +giscombe +gimlin +gillitzer +gillick +gilliand +gilb +gigler +gidden +gibeau +gibble +gianunzio +giannattasio +gertelman +gerosa +gerold +gerland +gerig +gerecke +gerbino +genz +genovesi +genet +gelrud +geitgey +geiszler +gehrlein +gazzo +gawrys +gavilanes +gaulden +gate +garthwaite +garmoe +gargis +gara +gannett +galligher +galler +galleher +gallahan +galford +gal +gahn +gacek +gabert +fuster +furuya +furse +fujihara +fuhriman +fruit +frueh +fromme +from +froemming +friskney +frietas +freiler +freelove +freber +frear +frankl +frankenfield +franey +francke +foxworthy +formella +foringer +forgue +forge +fonnesbeck +fonceca +folland +fodera +fode +floresca +fleurent +fleshner +flentge +fleischhacker +fleeger +flecher +flam +flair +flaim +fivecoat +firebaugh +fioretti +finucane +filley +figuroa +figuerda +fiddelke +feurtado +fetterly +fessel +femia +feild +fehling +fegett +fedde +fechter +fawver +faustino +faulhaber +fatchett +fassnacht +fashaw +fasel +farrugia +farran +farness +farhart +farbman +fama +falwell +falvo +falling +falkenstein +falin +failor +faigin +fagundo +fague +fagnan +fagerstrom +faden +eytchison +eyles +ewy +evon +everage +evangelist +estrin +estorga +esponda +espindola +escher +esche +escarsega +escandon +erven +erding +eplin +enix +englade +engdahl +enck +emmette +embery +emberson +eltzroth +else +elsayed +ellerby +ellens +elhard +elfers +elazegui +eisermann +eilertson +eiben +ehrhard +ehresman +egolf +egnew +eggins +efron +effland +eduardo +edminster +edgeston +ede +eckstrom +eckhard +eckford +echoles +ebsen +eatherly +eastlick +earnheart +ear +dykhuizen +dyas +duttweiler +dutka +dutch +dusenbury +dusenbery +durre +durnil +durnell +durie +durhan +durando +dupriest +dunsmoor +dunseith +dunnum +dunman +dunlevy +duma +dulude +dulong +duignan +dugar +dufek +ducos +duchaine +duch +dubow +drowne +dross +drollinger +droke +driggars +dredge +drawhorn +drach +drabek +doyne +doukas +dorvil +dorow +doroski +dornak +dormer +dorian +donnelson +donna +donn +donivan +dondero +dompe +dolle +doakes +diza +dixie +divirgilio +ditore +distel +disimone +disbro +dipiero +dingson +diluzio +dillehay +dilbert +digiorgio +diflorio +dietzler +dietsch +dieterle +dierolf +dierker +dicostanzo +dicesare +dexheimer +dewitte +dewing +devoti +devincentis +devary +deutschman +dettloff +detienne +destasio +dest +despard +desmet +deslatte +desfosses +derise +derenzo +deppner +depolo +denoyer +denoon +denno +denne +deniston +denike +denes +demoya +demick +demicco +demetriou +demange +delva +delorge +delley +delisio +delhoyo +delgrande +delgatto +delcour +delair +deinert +degruy +degrave +degeyter +defino +deffenbaugh +deener +decook +decant +deboe +deblanc +deatley +dearmitt +deale +deaguiar +dayan +daus +dauberman +datz +dase +dary +dartt +darocha +dario +dari +dardis +dapper +danowski +dancel +dami +dallmann +dalere +dalba +dakan +daise +dailing +dahan +dagnan +daggs +dagan +czarkowski +czaplinski +cutten +curtice +curenton +cure +curboy +cura +culliton +culberth +cucchiara +cubbison +csaszar +crytser +crotzer +crossgrove +crosser +croshaw +croissant +crocco +critzer +creveling +cressy +creps +creese +cratic +crate +craigo +craigen +craib +cracchiolo +crable +coykendall +cowick +coville +couzens +coutch +cousens +cousain +counselman +coult +cotterell +cott +cotham +corsaut +corriere +corredor +cornet +cornelia +corkum +coreas +cordoza +corbet +corathers +conwill +contreas +consuegra +constanza +conolly +conedy +companion +comins +combee +colosi +colom +colmenares +collymore +colleran +colina +colaw +colatruglio +colantro +colantonio +cohea +cogill +codner +code +codding +cockram +cocanougher +cobine +cluckey +clucas +cloward +cloke +clisham +clipper +clinebell +cliffe +clendenen +cisowski +cirelli +ciraolo +ciocca +cintora +ciesco +cibrian +chupka +chugg +christmann +choma +chiverton +chirinos +chinen +chimenti +chima +cheuvront +chesla +chesher +chesebro +chern +chehebar +cheatum +chastine +chapnick +chapelle +chambley +cercy +celius +celano +cayea +cavicchi +cattell +catanach +catacutan +castelluccio +castellani +cassmeyer +cassetta +cassada +caspi +cashmore +casebier +casanas +carrothers +carrizal +carriveau +carretero +carradine +carosella +carnine +carmel +carloni +carkhuff +cardosi +cardo +carchidi +caravello +caranza +carandang +capes +cantrall +canpos +canoy +cannizzaro +canion +canida +canham +cangemi +cange +candle +cancelliere +canard +camarda +calverley +calogero +callendar +calame +cadrette +cachero +caccavale +cabreros +cabrero +cabrara +cabler +butzer +butte +butrick +butala +bustios +busser +busic +bushorn +busher +burmaster +burl +burkland +burkins +burkert +burgueno +burgraff +buren +burel +burdon +burck +burby +buoy +bunk +bumford +bulock +bujnowski +buggie +buffy +budine +bucciero +bubier +brzoska +brydges +brumlow +brosseau +brooksher +brokke +broeker +brittin +bristle +briano +briand +brettschneide +bresnan +brentson +brenneis +brender +brazle +brassil +brasington +branstrom +branon +branker +brandwein +brandau +brana +bralley +brailey +brague +brade +bozzi +bownds +bowmer +bournes +bour +bouchey +botto +boteler +borroel +borra +boroski +boothroyd +boord +bonny +bonga +bonato +bonadonna +bolejack +boldman +boiser +boggio +bogacki +boerboom +boehnlein +boehle +bodah +bobst +boak +bluemel +blockmon +blitch +blincoe +bleier +blaydes +blasius +bittel +bir +binsfeld +bindel +bilotti +billiott +bilbrew +bihm +biersner +bielat +bidrowski +bickler +biasi +bianca +bhola +bhat +bewick +betzen +bettridge +betti +betsch +besley +beshero +besa +bertoli +berstein +berrien +berrie +berrell +bermel +berenguer +benzer +bensing +bennie +benedix +bemo +belile +beilman +behunin +behrmann +bedient +becht +beaule +beaudreault +bealle +beagley +bayuk +bayot +bayliff +baugess +battistoni +batrum +basinski +basgall +bartolomei +bartnik +bartl +bartko +bartholomay +barthlow +bartgis +barsness +barski +barlette +barickman +bargen +bardon +barcliff +barbu +barbar +barakat +baracani +baraban +banos +banko +bania +bambach +balok +balogun +bally +baldini +balck +balcer +balash +baim +bailor +bahm +bahar +bagshaw +baggerly +badie +badal +backues +babino +ba +aydelott +awbrey +aversano +avansino +auyon +aukamp +aujla +augenstein +astacio +ast +asplin +asato +asano +aruizu +artale +arrick +arneecher +armelin +armbrester +armacost +arkell +argue +argrave +areizaga +areas +apolo +anzures +anzualda +antwi +antillon +antenor +annand +anhalt +angove +anglemyer +anglada +angiano +angeloni +andaya +ancrum +anagnos +ammirati +amescua +america +ambrosius +amacker +amacher +amabile +alvizo +alvernaz +alvara +altobelli +altobell +althauser +alterman +altavilla +alsip +alphonso +almeyda +almeter +alman +allscheid +allaman +aliotta +alicia +aliberti +alghamdi +alfonzo +albiston +alberta +alberding +alarie +alano +aja +ailes +ahsan +ahrenstorff +ahler +aerni +ackland +achor +acero +acebo +ace +abshier +abruzzo +abrom +abood +abnet +abend +abegg +abbruzzese +aaberg +zysk +zutell +zumstein +zummo +zuhlke +zuehlsdorff +zuch +zucconi +zortman +zohn +ziv +zingone +zingg +zingale +zima +zientek +zieg +zervas +zerger +zenk +zeldin +zeiss +zeiders +zediker +zea +zavodny +zarazua +zappone +zappala +zapanta +zaniboni +zanchi +zampedri +zaller +zakrajsek +zagar +zadrozny +zablocki +zable +yust +yunk +youngkin +yosten +yockers +yochim +yerke +yerena +yeast +yanos +yam +wysinger +wyner +wrisley +woznicki +wortz +worsell +wooters +woon +woolcock +woodke +wonnacott +wolnik +wittstock +witting +witry +witfield +witcraft +wissmann +wissink +wisehart +wiscount +wironen +wipf +winterrowd +wingett +windon +windish +windisch +windes +wiltbank +willmarth +willick +wiler +wieseler +wiedmaier +wiederstein +wiedenheft +wieberg +wickware +wickkiser +wickell +whittmore +whitker +whitegoat +whitcraft +whisonant +whisby +whetsell +whedon +westry +westcoat +wernimont +wentling +wendlandt +wencl +weisgarber +weininger +weikle +weigold +weigl +weichbrodt +wehrli +wehe +weege +weare +watland +wassmann +warzecha +warrix +warrell +warnack +waples +wantland +wanger +wandrei +wander +wanat +wampole +waltjen +walterscheid +waligora +walding +waldie +walczyk +wakins +waitman +wair +wainio +wahpekeche +wahlman +wagley +wagenknecht +wadle +waddoups +wadding +wack +vuono +vuillemot +vugteveen +vosmus +vorkink +vories +vondra +voelz +vlashi +vivo +vitelli +vitali +viscarra +virgo +vinet +vimont +villega +villard +vignola +viereck +videtto +vicoy +vessell +vescovi +verros +vernier +vernaglia +vergin +verdone +verdier +verastequi +vejar +vasile +vasi +varnadore +vardaro +vanzanten +vansumeren +vanschuyver +vanleeuwen +vanhowe +vanhoozer +vaness +vandewalker +vandevoorde +vandeveer +vanderzwaag +vanderweide +vanderhyde +vandellen +vanamburg +vanalst +vallin +valk +valerie +valentini +valcarcel +valasco +valadao +vacher +urquijo +unterreiner +unsicker +unser +unrau +undercoffler +uhm +uffelman +uemura +ueda +tyszko +tyska +tymon +tyce +tyacke +twinam +tutas +tussing +turmel +turkowski +turkel +turchetta +tupick +tumblin +tukes +tufte +tufo +tuey +tuell +tuckerman +tsutsumi +tsuchiya +try +trossbach +trivitt +trippi +trippensee +trimbach +trillo +triller +trible +tribe +tribby +trevisan +tresch +tramonte +traff +trad +tousey +totaro +torregrosa +torralba +torn +tolly +tofil +tofani +tobiassen +tippy +tiogangco +tino +tinnes +tingstrom +tingen +tine +tindol +tifft +tiffee +tiet +thuesen +thruston +throndson +thornsbury +thornes +thiery +thielman +thie +theilen +thede +thate +thane +thalacker +thaden +teuscher +terracina +terell +terada +tepfer +tennessee +tenneson +tenant +temores +temkin +tellers +telleria +teaque +tealer +teachey +tavakoli +tauras +taucher +tator +tartaglino +tarpy +tape +tannery +tani +tams +tamlin +tambe +tallis +talamante +takayama +takaki +takagi +taibl +taffe +tadesse +tade +tabeling +tabag +szoke +szoc +szala +szady +sysak +sylver +syler +swonger +swiggett +swensson +sweis +sweers +sweene +sweany +sweaney +swartwout +swamy +swales +swab +susman +surman +surgeon +sundblad +summerset +summerhays +sumerall +sule +sugimoto +subramanian +sturch +stupp +stunkard +stumpp +struiksma +stropes +stromyer +stromquist +strede +strazza +strauf +storniolo +storjohann +stonum +stonier +stonecypher +stoneberger +stollar +stokke +stokan +stoetzel +stoeckel +stockner +stockinger +stockholm +stockert +stockdill +stobbe +stitzel +stitely +stirgus +stigers +stettner +stettler +sterlin +sterbenz +stemp +stelluti +steinmeyer +steininger +steinauer +steigerwalt +steider +steady +stavrou +staufenberger +stassi +starin +stankus +stanaway +stammer +stakem +staino +stahlnecker +stagnitta +staelens +staal +srsen +sprott +sprigg +sprenkle +sprenkel +spreitzer +spraque +sprandel +spotted +sporn +spivak +spira +spiewak +spieth +spiering +sperow +speh +specking +spease +spead +sparger +spanier +spall +sower +southcott +sosna +soran +sookram +sonders +solak +sohr +sohl +sofranko +soderling +sochor +sobon +smutz +smudrick +smithj +smid +slosser +sliker +slenker +sleight +sleger +sleet +slaby +skousen +skilling +skibinski +skeeters +skeet +skees +skane +skafidas +sivic +sivertsen +sivers +sitra +sito +siracusa +sinicki +simpers +simley +simbeck +silberberg +siever +siegwarth +sidman +siddons +siddle +sibbett +si +shumard +shubrooks +shough +shorb +shoptaw +sholty +shoffstall +shiverdecker +shininger +shimasaki +shifrin +shiffler +sheston +sherr +sherill +shere +shepeard +shelquist +shells +sheler +shave +shauf +sharrar +sharpnack +shanon +shamsiddeen +shambley +shallenberger +shadler +shaban +sha +sferra +seys +sexauer +sevey +severo +setlak +seta +sesko +sersen +serratore +serdula +senechal +seldomridge +seilhamer +seifer +seidlitz +sehnert +sedam +sebron +seber +sebek +seavers +sear +scullark +scroger +scovill +sciascia +sciarra +schweers +schwarze +schummer +schultes +schuchardt +schuchard +schrieber +schrenk +schreifels +schowalter +schoultz +scholer +schofill +schoff +schnuerer +schnettler +schmitke +schmiege +schloop +schlinger +schlessman +schlesser +schlageter +schiess +schiefer +schiavoni +scherzer +scherich +schechtman +schebel +scharpman +schaich +schaap +scappaticci +scadlock +savocchia +savini +savers +save +savageau +sauvage +sause +sauerwein +sary +sarwary +sarnicola +santone +santoli +santalucia +santacruce +sansoucie +sankoff +sanes +sandri +sanderman +sammartano +salmonson +salmela +salmans +sallaz +salis +sakuma +sakowski +sajdak +sahm +sagredo +safrit +sade +sackey +sabio +sabino +sabina +rybolt +ruzzo +ruthstrom +ruta +russin +russian +russak +rusko +ruskin +rusiecki +ruscher +rupar +rumberger +rullan +ruliffson +ruhlman +ruger +rufenacht +ruelle +rudisell +rudi +rucci +rublee +ruberto +rubeck +rowett +rouge +rottinghaus +roton +rothgeb +rothgaber +rothermich +rostek +rossini +roskelley +rosing +rosi +rosewell +rosebush +rosberg +roon +ronin +romesburg +romelus +rolley +rollerson +rollefson +rolins +rolens +rois +rohrig +rohrbacher +rohland +rohen +roh +rogness +roes +roering +roehrick +roebke +rodregez +rodabaugh +rocks +rockingham +roblee +robel +roadcap +rizzolo +riviezzo +rivest +riveron +risto +rissler +risen +rippentrop +ripka +rinn +ringuette +ringering +rindone +rindels +rim +rieffer +riedman +riede +riecke +riebow +riddlebarger +rhome +rhodd +rhatigan +rhame +reyers +rewitzer +revalee +retzer +rettinger +reschke +requa +reper +reopell +renzelman +renne +renker +renk +renicker +rendina +rendel +remund +remmele +remiasz +remaklus +remak +reitsma +reitmeier +reiswig +reishus +reining +reim +reidinger +reick +reiche +regans +reffett +reesor +reekie +redpath +redditt +rechtzigel +recht +rebel +rearden +raynoso +raxter +ratkowski +rasulo +rassmussen +rassel +raspberry +raser +rappleye +rappe +randy +randrup +randleman +ramson +rampey +ramming +rama +rainier +raider +radziewicz +quirarte +quintyne +quickel +query +quattrini +quarry +quakenbush +quaile +pytel +putty +pushaw +pusch +purslow +punzo +pullam +pugmire +puello +pu +przekop +pruss +pruiett +provow +prophete +procaccini +pritz +prillaman +priess +pretlow +prestia +presha +prescod +preast +praytor +prashad +praino +pozzi +pounder +pottenger +potash +porada +popplewell +ponzo +ponter +pommier +polland +polidori +polasky +pola +pok +poitier +poisso +poire +point +pofahl +podolsky +podell +plueger +plowe +plotz +plotnik +ploch +pliska +plessner +plaut +platzer +plake +pizzino +pizza +pirog +piquette +pipho +pioche +pintos +pinkert +pinet +pilkerton +pilch +pilarz +pignataro +piermatteo +picozzi +pickler +pickette +pichler +philogene +pheasant +phare +phang +pfrogner +pfisterer +pettinelli +petruzzi +petrovic +petretti +petermeier +pestone +pesterfield +pessin +pesch +persky +perruzza +perrott +perritt +perretti +perrera +peroutka +peroni +peron +peret +perdew +perazzo +peppe +peno +penberthy +penagos +peles +pelech +peiper +peight +pefferman +peddie +peckenpaugh +pean +payen +pavloski +pavlica +paullin +pattie +patteson +passon +passey +passe +passalacqua +pasquini +paskel +parter +partch +parriott +parrella +parraz +parmely +parizo +parisian +papelian +papasergi +pantojz +panto +panich +panchal +palys +palms +pallone +palinski +pali +palevic +pale +pagels +paciorek +pacho +pacella +paar +ozbun +overweg +overholser +ovalles +outhouse +outcalt +otterbein +otta +ostergren +osher +osbon +orzech +orwick +orrico +oropesa +orn +ormes +orillion +opal +onorati +onnen +omary +olk +olding +okonski +okimoto +ohlrich +ohayon +oguin +ogley +oftedahl +offen +ofallon +oeltjen +odam +ockmond +ockimey +ocean +obermeyer +oberdorf +obanner +oballe +oard +oakden +nyhan +nydam +numan +noyer +notte +nothstein +notestine +noser +nork +nolde +noa +nishihara +nishi +nikolic +nihart +nietupski +niesen +niehus +niece +nidiffer +nicoulin +nicolaysen +nicklow +nickl +nickeson +nichter +nicholl +ngyun +newsham +newmann +neveux +neuzil +neumayer +netland +nessen +nesheim +nelli +nelke +necochea +nazari +navy +navorro +navarez +navan +natter +natt +nater +nasta +narvaiz +nardelli +napp +nakahara +nairn +nagg +nager +nagano +nafziger +naffziger +nadelson +muzzillo +murri +murrey +murgia +murcia +muno +munier +mulqueen +mulliniks +mulkins +mulik +muhs +muffley +mozell +moynahan +mounger +mottley +motil +moseman +moseby +mosakowski +morten +mortell +morrisroe +morrero +mormino +morland +morger +morgenthaler +moren +morelle +morawski +morasca +morang +morand +moog +montney +montera +montee +montane +montagne +mons +monohan +monnett +monkhouse +moncure +momphard +molyneaux +molles +mollenkopf +molette +moland +mohs +mohmand +mohlke +moessner +moers +mockus +moccio +mlinar +mizzelle +mittler +mitri +mitchusson +mitchen +mistrot +mistler +misch +miriello +minkin +mininger +minerich +minehart +minderman +minden +minahan +milonas +millon +millholland +milleson +millerbernd +millage +militante +milionis +milhoan +mildenberger +milbury +mikolajczak +miklos +mikkola +mikes +migneault +mifsud +mietus +mieszala +mielnicki +midy +michon +michioka +micheau +michaeli +micali +methe +metallo +messler +mesch +merow +meroney +mergenthaler +meres +mercy +menuey +menousek +menning +menn +menghini +mendia +memmer +melot +mellow +mellenthin +melland +meland +meixner +meisenheimer +meineke +meinders +mehrens +mehlig +meglio +medsker +medicine +medero +mederios +meabon +mcwright +mcright +mcreath +mcrary +mcquirter +mcquerry +mcquary +mcphie +mcnurlen +mcnelley +mcnee +mcnairy +mcmanamy +mcmahen +mckowen +mckiver +mckinlay +mckearin +mcirvin +mcintrye +mchorse +mchaffie +mcgroarty +mcgoff +mcgivern +mceniry +mcelhiney +mcdiarmid +mccullars +mccubbins +mccrimon +mccovery +mccommons +mcclour +mccarrick +mccarey +mccallen +mcbrien +mcarthy +mayone +maybin +maximo +maxam +maurais +maughn +matzek +matts +matin +mathre +mathia +mateen +matava +masso +massar +massanet +masingale +mascaro +marthaler +martes +marso +marshman +marsalis +marrano +marolt +marold +markins +margulis +mardirosian +marchiano +marchak +marandola +marana +manues +mantis +mante +mansukhani +mansi +mannan +maniccia +mangine +manery +mandigo +manda +mancell +mamo +malstrom +malouf +malenfant +malena +maldenado +malandruccolo +malak +malabanan +makino +maj +maisonave +mainord +maino +mainard +maillard +maia +mahmud +mahdi +mahapatra +mahaley +mahaffy +magouirk +maglaras +magat +magan +maga +maffia +madrazo +madrano +maditz +mackert +mackellar +mackell +macht +macchia +maccarthy +maahs +lytal +lye +luzar +luzader +lutjen +lunger +lunan +luma +lukins +luhmann +luers +ludvigsen +ludlam +ludemann +luchini +lucente +lubrano +lubow +luber +lubeck +lowing +loven +loup +louise +louge +losco +lorts +lormand +lorenzetti +longford +longden +longbrake +lokhmatov +loge +loeven +loeser +locket +locey +locatelli +litka +lista +lisonbee +lisenbee +liscano +liranzo +liquori +liptrot +lionetti +lio +linscomb +linkovich +linington +lingefelt +lindler +lindig +lindall +lincks +linander +linan +limburg +limbrick +limbach +likos +lighthall +liford +lietzke +liebe +liddicoat +lickley +lichter +libel +lias +liapis +lezo +lewan +levitz +levesgue +leverson +levander +leuthauser +letbetter +lesuer +lesmeister +lesly +lerer +leppanen +lepinski +leota +lenherr +lembrick +lelonek +leisten +leiss +leins +leingang +leinberger +leinbach +leikam +leidig +lehtonen +lehnert +lehew +legier +lefchik +lecy +leconte +lecher +lebrecht +leather +leaper +lawter +lawrenz +lavy +laur +lauderbaugh +lauden +laudato +latting +latsko +latini +lassere +lasseigne +laspina +laso +laslie +laskowitz +laske +laser +lasenby +lascola +lariosa +larcade +lapete +laperouse +lanuza +lanting +lantagne +lansdale +lanphier +langmaid +langella +lanese +landrus +lampros +lamens +laizure +laitinen +laigle +lahm +lagueux +lagorio +lagomarsino +lagasca +lagana +lafont +laflen +lafavor +lafarge +laducer +ladnier +ladesma +lacognata +lackland +lacerte +labuff +laborin +labine +labauve +kuzio +kusterer +kussman +kusel +kusch +kurutz +kurdyla +kupka +kunzler +kunsman +kuni +kuney +kunc +kulish +kuliga +kulaga +kuilan +kuhre +kuhnke +kuemmerle +kueker +kudla +kudelka +kubinski +kubicki +kubal +krzyzanowski +krupicka +krumwiede +krumme +kross +kropidlowski +krokos +kroell +kritzer +kribs +kreitlow +kreisher +kraynak +krass +kranzler +kramb +kozyra +kozicki +kovalik +kovalchik +kovacevic +kotula +kotrba +koteles +kosowski +koskela +kosiba +koscinski +kosch +kory +korab +kopple +kopper +koppelman +koppel +konwinski +kon +kolosky +koloski +kolinsky +kolinski +kolbeck +kolasa +koepf +koda +kochevar +kochert +kobs +knust +knueppel +knoy +knieriem +knier +kneller +knappert +klitz +klintworth +klinkenberg +klinck +kleindienst +kleeb +klecker +kjellberg +kitten +kitsmiller +kisor +kisiel +kise +kirbo +kio +kinzle +kinkaid +kingsford +kingry +kimpton +kimel +kimberley +killmon +killick +kilgallon +kilcher +kihn +kiggins +kiecker +kher +khaleel +keziah +kettell +ketchen +keshishian +kersting +kersch +kerins +kercher +keno +kenefick +kemph +kempa +kelsheimer +kelln +kellenberger +kekahuna +keisling +keirnan +keimig +kehn +keal +ke +kaupp +kaufhold +kauffmann +katzenberg +katona +kaszynski +kaszuba +kassebaum +kasa +kartye +kartchner +karstens +karpinsky +karmely +karel +karasek +kapral +kaper +kanelos +kanahele +kampmann +kampe +kalp +kallus +kallevig +kallen +kaliszewski +kaleohano +kalchthaler +kalama +kalahiki +kaili +kahawai +kagey +justiss +jurkowski +jurgensmeyer +juilfs +josue +jopling +jondahl +jomes +joice +johannessen +joeckel +jezewski +jezek +jeswald +jervey +jeppsen +jenniges +jennifer +jennett +jemmott +jeffs +jeffry +jaurequi +janisch +janick +janice +jacek +jacaruso +iwanicki +ishihara +isenberger +isbister +iruegas +inzer +inyart +inscore +innocenti +inglish +infantolino +indovina +inaba +imondi +imdieke +imbert +illes +ida +iarocci +iannucci +huver +hutley +husser +husmann +hupf +huntsberger +hunnewell +hullum +huit +huish +huh +hughson +huft +hufstetler +hueser +hudnell +hovden +housen +houghtling +hoth +hossack +hoshaw +horsford +horry +hornbacher +horde +hoppenstedt +hopkinson +honza +honor +homann +holzmeister +holycross +holverson +holtzlander +holroyd +holmlund +hollywood +holderness +holderfield +holck +hojnacki +hohlfeld +hohenberger +hoganson +hogancamp +hoffses +hoerauf +hoell +hoefert +hodum +hoder +hockenbury +hoage +hisserich +hislip +hirons +hippensteel +hippen +hinkston +hindes +hinchcliff +hin +himmel +hillberry +hildring +hiester +hiefnar +hides +hibberd +hibben +heyliger +heyl +heyes +hevia +heu +hettrick +hert +hersha +hernandz +herkel +herber +henscheid +hennesy +henly +henegan +henebry +hench +hemsath +hemm +hemken +hemann +heltzel +hellriegel +hejny +heinl +heinke +heidinger +hegeman +hefferan +hedglin +hebdon +hearnen +hearing +heape +heagy +headings +headd +hazelbaker +havlick +hauschildt +haury +hassenfritz +hasenbeck +haseltine +hartstein +hartry +hartnell +harston +harpool +harmen +hardister +hardey +harders +harbolt +harbinson +haraway +haque +hansmann +hanser +hansch +hansberry +hankel +hanigan +haneline +hampe +hamons +hammerstone +hammerle +hamme +hammargren +hamelton +hamberger +hamasaki +halprin +halman +hallihan +halen +haldane +hails +haifley +hai +hages +hagadorn +hadwin +habicht +habermehl +gyles +gutzman +gutekunst +gustason +gusewelle +gurnsey +gurnee +gunterman +gumina +gulliver +gulbrandson +guiterez +guerino +guedry +gucwa +guardarrama +guagliano +guadagno +grulke +groote +groody +groft +groeneweg +grochow +grippe +grimstead +griepentrog +greenfeld +greenaway +grebe +graziosi +graw +gravina +grassie +grapes +granzow +grandjean +granby +gramacy +graces +gozalez +goyer +gotch +gosden +gorny +gormont +goodness +goodgion +gonya +gonnerman +gompert +golish +goligoski +goldmann +goike +goetze +godeaux +glenna +glaza +glassel +glaspy +glander +glady +giumarro +gitelman +gisondi +gismondi +girvan +girten +gironda +giovinco +ginkel +gilster +giesy +gierman +giddins +giardini +gianino +ghea +geurin +gett +getson +gerrero +germond +gere +gentsy +genta +gennette +genito +genis +gene +gendler +geltz +geiss +gehret +gegenheimer +geffert +geeting +gebel +gavette +gavenda +gaumond +gaudioso +gatzke +gatza +gattshall +gaton +gatchel +gasperi +gaska +gasiorowski +garritson +garrigus +garnier +garnick +gardinier +gardenas +garcy +garate +gandolfi +gamm +gamel +gambel +gallmon +gallemore +gallati +gainous +gainforth +gahring +gaffey +gaebler +gadzinski +gadbury +gabri +gabe +gaba +fyke +furtaw +furnas +furcron +funn +funck +fulwood +fulvio +fullmore +fukumoto +fuest +fuery +fuente +fuel +frymire +frush +frohlich +froedge +frodge +fritzinger +fricker +frericks +frein +freid +freggiaro +fratto +franzi +franciscus +fralix +fowble +fotheringham +foslien +foshie +fortmann +forsey +forkner +foppiano +fontanetta +fonohema +fogler +fockler +fluty +flusche +flud +florin +flori +flenory +fleharty +fleeks +flaxman +flash +flaming +fiumara +fitzmorris +finnicum +finkley +fineran +fillhart +filipi +fijal +fieldson +ficken +ficarra +fetch +festerman +fess +ferryman +ferner +fergason +ferell +fennern +femmer +feldmeier +feeser +feenan +federick +fedak +febbo +feazell +fearing +fazzone +fauth +fauset +faurote +faulker +faubion +fatzinger +fasick +fanguy +fambrough +falks +fahl +fabio +faaita +exler +ewens +estrado +esten +esteen +esquivez +espejo +esmiol +esguerra +esco +ertz +erspamer +ernstes +erisman +erhard +ereaux +ercanbrack +erbes +epple +entsminger +entriken +enslow +ennett +engquist +englebert +englander +engesser +engert +engeman +enge +enerson +end +emhoff +emge +emerald +elting +ellner +ellenberg +ellenbecker +elio +elfert +elden +elawar +ekstrand +eison +eismont +eisenbrandt +eiseman +eischens +ehrgott +egley +egert +eddlemon +economy +eckerson +eckersley +eckberg +echeverry +eberts +earthman +earnhart +eapen +eachus +dykas +dust +dusi +durning +during +durdan +dunomes +duncombe +dume +dullen +dullea +dulay +dul +duffett +dubs +dubard +drook +drenth +drahos +dragone +downin +downham +dowis +dowhower +doward +dovalina +dost +dopazo +doose +donson +donnan +dominski +dollarhide +dolinar +dolecki +dolbee +doege +dockus +dobler +dobkin +dobias +divoll +diviney +ditter +ditman +dissinger +dismang +dirlam +dinneen +dini +dingwall +dine +din +diloreto +dilmore +dillaman +dikeman +diiorio +dighton +diffley +dieudonne +dietel +dieringer +diercks +dienhart +diekrager +diefendorf +dicke +dicamillo +dibrito +dibona +dezeeuw +dewhurst +devins +deviney +deupree +detherage +despino +desmith +desjarlais +deshner +desha +desanctis +derring +derousse +derobertis +deridder +derego +derden +deprospero +deprofio +depping +deperro +denty +denoncourt +dencklau +demler +demirchyan +demichiel +demesa +demere +demaggio +delung +deluise +delmoral +delmastro +delmas +delligatti +delle +delena +delasbour +delarme +delargy +delagrange +delafontaine +deist +deiss +deighan +dehoff +degrazia +degman +defosses +deforrest +deeks +decoux +decarolis +debuhr +deberg +debarr +debari +dearmon +deare +deardurff +daywalt +dayer +davoren +davignon +daviau +dauteuil +dauterive +daul +darnley +darlin +darakjy +dapice +dannunzio +danison +daniello +damario +dalonzo +dallis +daleske +dalenberg +daiz +dains +daines +dagnese +dady +dadey +czyzewski +czapor +czaplewski +czajka +cyganiewicz +cuttino +cutrona +cussins +cusanelli +cuperus +cundy +cumiskey +cumins +cuizon +cuffia +cuffe +cuffari +cuccaro +cubie +cryder +cruson +crounse +cromedy +cring +creer +credeur +crea +cozort +cozine +cowee +cowdery +coventry +couser +courtway +courington +cotman +costlow +costell +corton +corsaro +corrieri +corrick +corradini +coron +coren +cord +corbi +corado +copus +coppenger +cooperwood +coontz +coonce +contrera +connealy +conell +comtois +compere +commins +commings +comegys +coma +colyar +colo +collister +collick +collella +coler +colborn +cohran +cogbill +coffen +cocuzzo +clynes +closter +clock +clipp +clingingsmith +clemence +clayman +classon +clas +clarey +clarence +clague +ciubal +citrino +citarella +cirone +cipponeri +cindrich +cimo +ciliberto +cichowski +ciccarello +cicala +chura +chubbuck +chronis +christlieb +chriss +chizek +chittester +chiquito +chimento +childree +chianese +chevrette +cheese +checo +chastang +chargualaf +chapmon +chantry +chahal +chafetz +cezar +ceruantes +cerrillo +cerrano +cerecedes +cerami +cegielski +cavallero +catinella +cassata +caslin +casano +casacchia +caruth +cartrette +carten +carodine +carnrike +carnall +carmicle +carlan +carlacci +caris +cariaga +cardine +cardimino +cardani +carbonara +carano +capua +capponi +cappellano +caporale +capelli +canupp +cantrel +cantone +canterberry +cannizzo +cannan +canelo +caneer +candill +candee +campbel +caminero +camble +caluya +callicott +calk +caito +caffie +caden +cadavid +cacy +cachu +cachola +cabreja +cabiles +cabada +caamano +byran +byon +buyck +bussman +bussie +bushner +burston +burnison +burkman +burkhammer +bures +burdeshaw +bumpass +bullinger +bullers +bulgrin +bugay +buffalo +budak +buczynski +buckendorf +buccieri +bubrig +brynteson +brunz +brunmeier +brunkow +brunetto +brunelli +brumwell +bruggman +brucki +brucculeri +brozovich +browing +brotman +broda +brocker +broadstreet +brix +britson +brinck +brimmage +brightly +brierre +bridenstine +brezenski +brezee +brevik +brest +brentlinger +brentley +breidenbach +breckel +brech +breaker +brazzle +braughton +brauch +brattin +brattain +branhan +branford +braner +brander +braly +braegelmann +brabec +boyt +boyack +bowren +bowl +bovian +boughan +botton +botner +bosques +borzea +borre +boron +bornhorst +borgstrom +borella +boop +bontempo +bonniwell +bonnes +bonjour +bonillo +bonano +bolek +bohol +bohaty +boffa +boetcher +boesen +boepple +boehler +boedecker +boeckx +bodi +boal +bloodsworth +bloodgood +blome +blockett +blixt +blanchett +blackhurst +blackaby +bjornberg +bitzer +bittenbender +bitler +birchall +binnicker +binggeli +billett +bilberry +bijou +biglow +bierly +bielby +biegel +beu +berzas +berte +bertagnolli +berreth +bernhart +bergum +berentson +berenson +berdy +bercegeay +bentle +bentivegna +bentham +benscoter +benns +bennick +benjamine +beneze +benett +beneke +bendure +bendix +bendick +benauides +belman +bellus +bellott +bellefleur +bellas +beljan +belgard +beith +beinlich +beierle +behme +beevers +beermann +beeching +bedward +bedrosian +bedner +bedeker +bechel +becera +beaubrun +beardmore +bealmear +bazin +bazer +baumhoer +baumgarner +bauknecht +battson +battiest +basulto +baster +basques +basista +basiliere +bashi +barzey +barz +bartus +bartucca +bartek +barrero +barreca +barnoski +barndt +barklow +baribeau +barette +bares +barentine +bareilles +barch +barbre +barberi +barbagelata +baraw +baratto +baranoski +bar +baptise +bankson +bankey +bankard +banik +baltzley +ballen +balkey +balius +balderston +bakula +bakalar +baffuto +baerga +badoni +backous +bachtel +bachrach +baccari +babine +babilonia +baar +azbill +azad +aycox +ayalla +avolio +austerberry +aughtry +aufderheide +auch +attanasio +athayde +atcher +astor +asselta +aslin +aslam +ashwood +ashraf +ashbacher +asbridge +asakura +arzaga +arriaza +arrez +arrequin +arrants +armiger +armenteros +armbrister +arko +argumedo +arguijo +ardolino +arcia +arbizo +aravjo +aper +anzaldo +antu +antrikin +antony +antonia +antonetty +antinoro +anthon +antenucci +anstead +annese +ankrum +andreason +andrado +andaverde +anastos +anable +amsterdam +amspoker +amrine +amrein +amorin +amel +ambrosini +amber +alsbrook +alnutt +almasi +allessio +allateef +alison +aldous +alderink +aldaz +akmal +akard +aiton +aites +ainscough +aikey +ahrends +ahlm +aguada +agans +adelmann +adebisi +addesso +adaway +adamaitis +ackison +abud +abendroth +abdur +abdool +aamodt +zywiec +zwiefelhofer +zwahlen +zunino +zuehl +zmuda +zmolek +zizza +ziska +zinser +zinkievich +zinger +zingarelli +ziesmer +ziegenfuss +ziebol +zettlemoyer +zettel +zervos +zenke +zembower +zelechowski +zelasko +zeise +zeek +zeeb +zarlenga +zarek +zaidi +zahnow +zahnke +zaharis +zach +zacate +zabrocki +zaborac +yurchak +yuengling +younie +youngers +youell +yott +yoshino +yorks +yordy +yochem +yerico +yerdon +yeiser +yearous +yearick +yeaney +ybarro +yasutake +yasin +yanke +yanish +yanik +yamazaki +yamat +yaggi +ximenez +wyzard +wynder +wyly +wykle +wutzke +wuori +wuertz +wuebker +wrightsel +worobel +worlie +worford +worek +woolson +woodrome +woodly +woodling +wontor +wondra +woltemath +wollmer +wolinski +wolfert +wojtanik +wojtak +wohlfarth +woeste +wobbleton +witz +wittmeyer +witchey +wisotzkey +wisnewski +wisman +wirch +wippert +wineberg +wimpee +wilusz +wiltsey +willig +williar +willers +willadsen +wilfred +wildhaber +wilday +wigham +wiggen +wiewel +wieting +wietbrock +wiesel +wiesehan +wiersema +wiegert +widney +widmark +wickson +wickings +wichern +whtie +whittie +whitlinger +whitfill +whitebread +whispell +whetten +wheeley +wheeles +wheelen +whatcott +weyland +weter +westrup +westphalen +westly +westland +wessler +wesolick +wesler +wesche +werry +wero +wernecke +werkhoven +wellspeak +wellings +welford +welander +weissgerber +weisheit +weins +weill +weigner +wehrmann +wehrley +wehmeier +wege +weers +weavers +watring +wassum +wassman +wassil +washabaugh +wascher +wary +warth +warbington +wanca +wammack +wamboldt +walterman +walkington +walkenhorst +walinski +wakley +wagg +wadell +vuckovich +voogd +voller +vokes +vogle +vogelsberg +vodicka +vissering +visage +vipond +vincik +villalona +vil +vickerman +vettel +veteto +vessel +vesperman +vesco +vertucci +versaw +verba +ventris +venecia +vendela +venanzi +veldhuizen +vehrs +veer +vee +vay +vaughen +vasilopoulos +vascocu +varvel +varno +varlas +varland +vario +vareschi +vanwyhe +vanweelden +vansciver +vannaman +vanluven +vanloo +vanlaningham +vankomen +vanhout +vanhampler +vangorp +vangorden +vanella +vandresar +vandis +vandeyacht +vandewerker +vandevsen +vanderwall +vandercook +vanderberg +vanbergen +valko +valesquez +valeriano +valen +vachula +vacha +uzee +uva +uselman +urizar +urion +urben +upthegrove +unzicker +unsell +unick +umscheid +umin +umanzor +ullo +ulicki +uhlir +uddin +tytler +tymeson +tyger +twisdale +twedell +tweddle +turrey +tures +turell +tur +tupa +tuitt +tuberville +tubby +tryner +trumpower +trumbore +truly +troglen +troff +troesch +trivisonno +tritto +tritten +tritle +trippany +tringali +tretheway +treon +trench +trejos +tregoning +treffert +traycheff +travali +trauth +trauernicht +transou +trane +trana +toves +tosta +torp +tornquist +tornes +torchio +toppings +toor +tooks +tonks +tomblinson +tomala +tollinchi +tolles +tokich +toh +tofte +todman +toddy +titze +timpone +tillema +tier +tienken +tiblier +thyberg +thursby +thurrell +thurm +thruman +thorsted +thorley +thomer +thoen +thissen +theimer +thee +thayn +thanpaeng +thammavongsa +thalman +texiera +texidor +teverbaugh +teska +ternullo +teplica +tepe +teno +tenholder +tenbusch +tenbrink +temby +tejedor +teitsworth +teichmann +tehan +tegtmeyer +tees +teem +tays +taubert +tauares +taschler +tartamella +tarquinio +tarbutton +tappendorf +tapija +tansil +tannahill +tamondong +talahytewa +takashima +taecker +tabora +tabin +tabbert +szymkowski +szymanowski +syversen +syrett +syracuse +synnott +sydnes +swimm +sweney +swearegene +swartzel +swanstrom +svedin +suss +suryan +surrey +supplice +supnet +suoboda +sundby +sumaya +sumabat +sulzen +sukovaty +sukhu +sugerman +sugalski +sugai +sudweeks +sudbeck +sucharski +stutheit +stumfoll +stuffle +struyk +strutz +strumpf +strowbridge +strothman +strojny +strohschein +stroffolino +stribble +strevel +strenke +stremming +strehle +strattman +stranak +stram +stracke +stoudamire +storks +stopp +stonebreaker +stolt +stoica +stofer +stockham +stockfisch +stjuste +stiteler +stiman +stillions +stillabower +stierle +sterlace +sterk +stepps +stenquist +stenner +stellman +steines +steinbaugh +steinbacher +steiling +steidel +steffee +stavinoha +staver +stastny +stasiuk +starrick +starliper +starlin +staniford +staner +standre +standefer +standafer +stanczyk +stallsmith +stagliano +staehle +staebler +stady +stadtmiller +squyres +spurbeck +sprunk +spranger +spoonamore +spoden +spilde +spezio +speros +sperandio +specchio +spearin +spayer +spallina +spadafino +sovie +sotello +sortor +sortino +sorrow +soros +sorola +sorbello +sonner +sonday +somes +soloway +soledad +soens +soellner +soderblom +sobin +sniezek +sneary +smyly +smutnick +smoots +smoldt +smitz +smitreski +smallen +smades +slunaker +sluka +slown +slovick +slocomb +slinger +slife +slicker +sleeter +slanker +skufca +skubis +skrocki +skov +skjei +skilton +skill +skarke +skalka +skalak +skaff +sixkiller +sitze +siter +sisko +sirman +sirls +sinotte +sinon +sincock +sincebaugh +simmoms +similien +silvius +silton +silloway +sikkema +sieracki +sienko +siemon +siemer +siefker +sieberg +siebens +siebe +sicurella +sicola +sickle +shumock +shumiloff +shuffstall +shuemaker +shuart +shu +shroff +shreeve +shostak +shortes +shorr +shivley +shintaku +shindo +shimomura +shiigi +sherow +sherburn +shepps +shenefield +shelvin +shelstad +shelp +sheild +sheaman +shaulis +sharrer +sharps +sharpes +shareef +shappy +shapero +shanor +shandy +shad +seyller +severn +sessom +sesley +servidio +serrin +sero +serge +septon +septer +sennott +sengstock +senff +senese +semprini +semone +sembrat +selva +sella +selbig +seiner +seif +seidt +sehrt +seemann +seelbinder +sedlay +sebert +searing +seaholm +seacord +seaburg +se +scungio +scroggie +scritchfield +scripture +scrimpsher +scrabeck +score +scorca +scobey +scivally +schwulst +schwinn +schwieson +schwery +schweppe +schwartzenbur +schurz +schumm +schulenburg +schuff +schuerholz +schryer +schrager +schorsch +schonhardt +schoenfelder +schoeck +schoeb +schnitzler +schnick +schnautz +schmig +schmelter +schmeichel +schluneger +schlosberg +schlobohm +schlenz +schlembach +schleisman +schleining +schleiff +schleider +schink +schilz +schiffler +schiavi +scheuer +schemonia +scheman +schelb +schaul +schaufelberge +scharer +schardt +scharbach +schabacker +scee +scavone +scarth +scarfone +scalese +sayne +sayed +savitz +satterlund +sattazahn +satow +sastre +sarr +sarjeant +sarff +sardella +santoya +santoni +santai +sankowski +sanft +sandow +sandoe +sandhaus +sandefer +sampey +samperi +sammarco +samia +samek +samay +samaan +salvadore +saltness +salsgiver +saller +salaz +salano +sakal +saka +saintlouis +saile +sahota +saggese +sagastume +sagan +sadri +sadak +sachez +saalfrank +saal +saadeh +ryu +rynn +ryley +ryle +rygg +rybarczyk +ruzich +ruyter +ruvo +rupel +ruopp +rundlett +runde +rundall +runck +rukavina +ruggiano +rufi +ruef +rubright +rubbo +rowbottom +route +rotner +rotman +rothweiler +rothlisberger +rosseau +rossean +rossa +roso +rosiek +roshia +rosenkrans +rosener +rosencrantz +rosencrans +rosello +roques +rookstool +rondo +romasanta +romack +rokus +rohweder +rog +roethler +roediger +rodwell +rodrigus +rodenbeck +rodefer +rodarmel +rockman +rockholt +rockford +rochow +roches +roblin +roblez +roble +robers +roat +rizza +rizvi +rizk +rixie +riveiro +rius +ritschard +ritrovato +risi +rishe +rippon +rinks +rings +ringley +ringgenberg +ringeisen +rimando +rilley +rijos +rieks +rieken +riechman +riddley +ricord +rickabaugh +richmeier +richesin +reyolds +rexach +revere +requena +reppucci +reposa +renzulli +renter +renault +remondini +relic +reither +reisig +reifsnider +reifer +reibsome +reibert +rehor +rehmann +reedus +redshaw +redfox +reczek +recupero +recor +reckard +recher +rear +realbuto +razer +rayman +raycraft +rayas +rawle +raviscioni +ravetto +ravenelle +rauth +raup +rattliff +rattley +rathfon +rataj +rasnic +rappleyea +rapaport +ransford +rann +rampersad +ramis +ramcharan +rainha +rainforth +ragans +ragains +rafidi +raffety +raducha +radsky +radler +radatz +raczkowski +rack +rabenold +quraishi +quinerly +quiet +quercia +quarnstrom +qian +pusser +puppo +pullan +pulis +pugel +puccini +puca +pruna +prowant +provines +pronk +prinkleton +prindall +primas +priesmeyer +pridgett +prevento +preti +presser +presnall +preseren +presas +presa +prchal +prattis +pratillo +praska +prak +powis +powderly +postlewait +postle +posch +porteus +portal +porraz +popwell +popoff +poplaski +poniatoski +pollina +polle +polhill +poletti +polaski +pokorney +poke +pointdexter +poinsette +po +ploszaj +plitt +pletz +pletsch +plemel +pleitez +playford +plaxco +platek +plambeck +plagens +placido +pisarski +pinuelas +pinnette +pinick +pinell +pinciaro +pinal +pilz +piltz +pillion +pilkinton +pilar +pikul +piepenburg +piening +piehler +piedrahita +piechocki +picknell +picker +pickelsimer +pich +picariello +phoeuk +phillipson +philbert +pherigo +phelka +peverini +petronis +petrina +petrash +petramale +petraglia +pery +personius +perrington +perrill +perpall +perot +perman +peragine +pentland +pennycuff +penninger +pennie +pennachio +penhall +pendexter +pencil +penalver +pelzel +pelter +pelow +pelo +peli +peinado +pedley +pecue +pecore +pechar +peairs +paynes +payano +pawelk +pavlock +pavlich +pavich +pavek +pautler +paulik +patmore +patella +patee +patalano +passini +passeri +paskell +parrigan +parmar +parayno +paparelli +pantuso +pante +panico +panduro +panagos +pama +palmo +pallotta +paling +palamino +pake +pajtas +pailthorpe +pahler +pagon +paglinawan +pagley +paget +paetz +paet +padley +pacleb +pacific +pachelo +pacer +paccione +pabey +ozley +ozimek +ozawa +owney +outram +oun +ouillette +oudekerk +ouch +ostrosky +ostermiller +ostermann +osterloh +osterfeld +ossenfort +osoria +oshell +orsino +orscheln +orrison +ororke +orf +orellano +orejuela +ordoyne +opsahl +opland +onofre +onaga +omahony +olszowka +olshan +ollig +oliff +olien +olexy +oldridge +oldfather +older +olalde +okun +okumoto +oktavec +okin +oka +ohme +ohlemacher +ohanesian +odneal +odgers +oderkirk +odden +ocain +obradovich +oakey +nussey +nunziato +nunoz +nunnenkamp +nuncio +noviello +novacek +nothstine +nostrand +northum +norsen +norlander +norkus +norgaard +norena +nored +nobrega +niziolek +ninnemann +nievas +nieratko +nieng +niedermeyer +niedermaier +nicolls +niang +newham +newcome +newberger +nevills +nevens +nevel +neumiller +netti +net +nessler +neria +nemet +nelon +nellon +neller +neisen +neilly +neifer +neid +negro +neering +neehouse +neef +needler +nebergall +nealis +naumoff +naufzinger +narum +narro +narramore +naraine +napps +nansteel +namisnak +namanny +nallie +nakhle +naito +naccari +nabb +myracle +myra +myhand +mwakitwile +muzzy +muscolino +musco +muscente +muscat +muscara +musacchia +musa +murrish +murfin +muray +munnelly +munley +munivez +mundine +mundahl +munari +mulling +mullennex +mullendore +mulkhey +mulinix +mulders +muhl +muenchow +muellner +mudget +mudger +muckenfuss +muchler +mozena +movius +mouldin +motola +mosseri +mossa +moselle +mory +morsell +morrish +morles +morie +morguson +moresco +morck +moppin +moosman +moons +montuori +montono +montogomery +montis +monterio +monter +monsalve +mongomery +mongar +mondello +moncivais +monard +monagan +molt +mollenhauer +moldrem +moldonado +molano +mokler +moisant +moilanen +mohrman +mohamad +moger +mogel +modine +modin +modic +modha +modena +mlynek +miya +mittiga +mittan +mitcheltree +miss +misfeldt +misener +mirchandani +miralles +miotke +miosky +minty +mintey +mins +minnie +mince +minassian +minar +mimis +milon +milloy +millison +milito +milfort +milbradt +mikulich +mikos +miklas +mihelcic +migliorisi +migliori +miesch +midura +miclette +michele +michela +micale +mezey +mews +mewes +mettert +mesker +mesich +mesecher +merthie +mersman +mersereau +merrithew +merriott +merring +merenda +merchen +mercardo +merati +mentzel +mentis +mentel +menotti +meno +mengle +mendolia +mellick +mellett +melichar +melhorn +melendres +melchiorre +meitzler +mehtani +mehrtens +megan +meditz +medeiras +meckes +me +mcteer +mctee +mcparland +mcniell +mcnealey +mcmanaway +mcleon +mclay +mclavrin +mcklveen +mckinzey +mcken +mckeand +mckale +mcilwraith +mcilroy +mcgreal +mcgougan +mcgettigan +mcgarey +mcfeeters +mcelhany +mcdaris +mccomis +mccomber +mccolm +mccollins +mccollin +mccollam +mccoach +mcclory +mcclennon +mccathern +mccarthey +mccarson +mccarrel +mccargar +mccandles +mccamish +mccally +mccage +mcbrearty +mcaneny +mcanallen +mcalarney +mcaferty +mazzo +mazy +mazurowski +mazique +mayoras +mayden +maxberry +mauller +matusiak +mattsen +matthey +matters +matkins +mathiasen +mathe +mateus +mate +matalka +masullo +massay +mashak +mascroft +martinex +martenson +marsiglia +marsella +marseille +maroudas +marotte +marner +marlo +markes +marina +maret +mareno +marean +marcinkiewicz +marchel +marasigan +manzueta +manzanilla +manternach +manring +manquero +manoni +manne +mankowski +manjarres +mangen +mangat +mandonado +mandia +mancias +manbeck +mamros +mam +maltez +mallia +mallar +malla +mall +malen +malaspina +malahan +malagisi +malachowski +makowsky +makinen +makepeace +majkowski +majid +majestic +majercin +maisey +mainguy +mailliard +maignan +mahlman +maha +magsamen +magpusao +magnano +magley +magedanz +magarelli +magaddino +maenner +madnick +maddrey +madaffari +macnaughton +macmullen +macksey +macknight +macki +macisaac +maciejczyk +maciag +macho +machenry +machamer +macguire +macdougal +macdaniel +maccormack +maccabe +mabbott +mabb +lynott +lyndon +lym +lydia +lycan +luy +lutwin +luscombe +lusco +lusardi +luria +lunetta +lundsford +lumas +luisi +luevanos +lueckenhoff +ludgate +ludd +lucherini +lubbs +lozado +lovie +lourens +lounsberry +loughrey +loughary +lotton +losser +loshbaugh +loser +loseke +loscalzo +los +lortz +loperena +loots +loosle +looman +longstaff +longobardi +longbottom +lomay +lomasney +lohrmann +lohmiller +logalbo +loetz +loeffel +lodwick +lodrigue +lockrem +llera +llarena +liv +littrel +littmann +lisser +lippa +lipner +linnemann +lingg +lindemuth +lindeen +limbo +lillig +likins +lights +lieurance +liesmann +liesman +liendo +lickert +lichliter +leyvas +leyrer +lewy +leubner +letters +lesslie +lesnick +lesmerises +lerno +lequire +lepera +lepard +lenske +leneau +lempka +lemmen +lemm +lemere +leinhart +leichner +leicher +leibman +lehmberg +leggins +lebeda +leavengood +leanard +lazaroff +laventure +lavant +lauster +laumea +latigo +lasota +lashure +lasecki +lascurain +lartigue +larouche +lappe +laplaunt +laplace +lanum +lansdell +lanpher +lanoie +lankard +laniado +langowski +langhorn +langfield +langfeldt +landt +landingham +landerman +landavazo +lampo +lampke +lamper +lamery +lambey +lamadrid +lallemand +laisure +laigo +laguer +lagerman +lageman +lagares +lacosse +lachappelle +labs +laborn +labonne +kyung +kuzia +kutt +kutil +kus +kurylo +kurowski +kuriger +kupcho +kulzer +kulesa +kules +kuhs +kuhne +krutz +krus +krupka +kronberg +kromka +kroese +krizek +krivanek +krishna +kringel +kreiss +kratofil +krapp +krakowsky +kracke +kozlow +koy +kowald +kover +kovaleski +kothakota +kosten +koskinen +kositzke +korff +korey +korbar +kor +kopplin +koplin +koos +konyn +konczak +komp +komo +kolber +kolash +kolakowski +kohm +kogen +koestner +koegler +kodama +kocik +kochheiser +kobler +kobara +knezevich +kneifl +knapchuck +knabb +klutz +klugman +klosner +klingel +klimesh +klice +kley +kleppe +klemke +kleinmann +kleinhans +kleinberg +kleffner +kleckley +klase +kisto +kissick +kisselburg +kirsten +kirschman +kirks +kirkner +kirkey +kirchman +kipling +kinville +kinnunen +kingdom +kimmey +kimmerle +kimbley +kilty +kilts +killmeyer +killilea +killay +kiest +kierce +kiepert +kielman +khalid +kewal +keszler +kesson +kesich +kerwood +kerksiek +kerkhoff +kerbo +keranen +keomuangtai +kenter +kennelley +keniry +kendzierski +kempner +kemmis +kemerling +kelsay +kelchner +kela +keithly +keipe +kegg +keer +keahey +kaywood +kayes +kawahara +kasuboski +kastendieck +kassin +kasprzyk +karraker +karnofski +karman +karger +karge +karella +karbowski +kapphahn +kap +kannel +kamrath +kaminer +kamansky +kalua +kaltz +kalpakoff +kalkbrenner +kaku +kaib +kaehler +kackley +kaber +justo +juris +jurich +jurgenson +jurez +junor +juniel +juncker +jugo +jubert +jowell +jovanovic +josiah +joosten +joncas +joma +johnso +johanns +jodoin +jockers +joans +jinwright +jinenez +jimeson +jerrett +jergens +jerden +jerdee +jepperson +jendras +jeanfrancois +jazwa +jaussi +jaster +jarzombek +jarencio +janocha +jakab +jadlowiec +jacobsma +jach +izaquirre +iwaoka +ivaska +iturbe +israelson +ismael +isles +isachsen +isaak +irland +inzerillo +insogna +ingegneri +ingalsbe +inciong +inagaki +idol +icenogle +hyon +hyett +hyers +huyck +hutti +hutten +hutnak +hussar +husky +hurrle +hurford +hurde +hupper +hunkin +hunkele +hunke +hun +humann +huhtasaari +hugger +hugel +huge +hufft +huegel +hrobsky +hren +hoyles +howlin +hovsepian +hovenga +hovatter +houdek +hotze +hossler +hossfeld +hosseini +horten +hort +horr +horgen +horen +hoopii +hoon +hoogland +hontz +honnold +homewood +holway +holtgrewe +holtan +holstrom +holstege +hollway +hollingshed +holling +hollenback +hollard +holberton +hoines +hogeland +hofstad +hoetger +hoen +hoaglund +hirota +hintermeister +hinnen +hinders +hinderer +hinchee +himelfarb +himber +hilzer +hilling +hillers +hillegas +hildinger +hignight +highman +hierholzer +heyde +hettich +hesketh +herzfeld +herzer +hershenson +hershberg +hernando +hermenegildo +hereth +hererra +hereda +herbin +heraty +herard +hepa +henschel +henrichsen +hennes +henneberger +heningburg +henig +hendron +hendericks +hemple +hempe +hemmingsen +hemler +helvie +helmly +helmbrecht +heling +helin +helfrey +helble +helaire +heizman +heisser +heiny +heinbaugh +heigh +heidemann +heidema +heiberger +hegel +heerdt +heeg +heefner +heckerman +heckendorf +heavin +headman +haynesworth +haylock +hayakawa +hawksley +hawking +haverstick +haut +hausen +hauke +haubold +hattan +hattabaugh +hasten +hasstedt +hashem +haselhorst +harrist +harpst +haroldsen +harmison +harkema +hark +harison +hariri +harcus +harcum +harcourt +harcharik +hanzel +hanvey +hantz +hansche +hansberger +hannig +hanken +hanhardt +hanf +hanauer +hamberlin +halward +halsall +hals +hallquist +hallmon +halk +halbach +halat +hajdas +hainsworth +haik +hahm +hagger +haggar +hader +hadel +haddick +hackmann +haasch +haaf +guzzetta +guzy +gutterman +gutmann +gutkowski +gustine +gursky +gurner +gunsolley +gumpert +gumbel +gulla +guilmain +guiliani +guier +guers +guerero +guerena +guebara +guadiana +grunder +grothoff +grosland +grosh +groos +grohs +grohmann +groepper +grodi +grizzaffi +grissinger +grippi +grinde +griffee +grether +greninger +greigo +gregorski +greger +grega +greenberger +graza +grattan +grasse +gras +grano +gramby +gradilla +govin +goutremout +goulas +gotay +gosling +gorey +goren +gordner +goossen +goon +goodwater +gonzaga +gonyo +gonska +gongalves +gomillion +gombos +golonka +gollman +goldtrap +goldammer +golas +golab +gola +gogan +goffman +goeppinger +godkin +godette +glore +glomb +glauner +glassey +glasner +gividen +giuffrida +gishal +giovanelli +ginoza +ginns +gindlesperger +gindhart +gillem +gilger +giggey +giebner +gibbson +giacomo +giacolone +giaccone +giacchino +ghere +gherardini +gherardi +gfeller +getts +gerwitz +gervin +gerstle +gerfin +geremia +gercak +general +gener +gencarelli +gehron +gehrmann +geffers +geery +geater +gawlik +gaudino +garsia +garrahan +garrabrant +garofolo +garigliano +garfinkle +garelick +gardocki +garafola +gappa +gantner +ganther +gangelhoff +gamarra +galstad +gally +gallik +gallier +galimba +gali +galassi +gaige +gadsby +gabby +gabbin +gabak +fyall +furney +funez +fulwider +fulson +fukunaga +fujikawa +fugere +fuertes +fuda +fryson +frump +frothingham +froning +froncillo +frohling +froberg +froats +fritchman +frische +friedrichsen +friedmann +fridge +friddell +frid +fresch +frentzel +freno +frelow +freimuth +freidel +freehan +freeby +freeburn +fredieu +frederiksen +fredeen +frazell +frayser +fratzke +frattini +franze +franich +francescon +francesco +frames +framer +fraiser +fragman +frack +foxe +fowlston +fosberg +fortna +fornataro +forden +foots +foody +fogt +foglia +fogerty +fogelson +flygare +flowe +florentine +flinner +flem +flatten +flath +flater +flahaven +flad +fjeld +fitanides +fistler +fishbaugh +firsching +fireman +finzel +finical +fingar +filosa +filicetti +filby +fierst +fierra +ficklen +ficher +fersner +ferrufino +ferrucci +fero +ferns +ferlenda +ferko +fergerstrom +ferge +fenty +fent +fennimore +fendt +femat +felux +felman +feldhaus +feisthamel +feijoo +feiertag +fehrman +fehl +feezell +feeny +feeback +fedigan +fedder +fechner +feary +fayson +faylor +fauteux +faustini +faure +fauci +fauber +fattig +farruggio +farrens +fare +faraci +fantini +fantin +fanno +fannings +faniel +fallaw +falker +falkenhagen +fajen +fahrner +fabel +fabacher +eytcheson +eyster +exford +exel +exe +evetts +evenstad +evanko +euresti +euber +etcitty +estler +esther +essner +essinger +esplain +espenshade +espanol +espaillat +escribano +escorcia +errington +errett +errera +erlanger +erenrich +erekson +erber +entinger +ensworth +ensell +enno +ennen +englin +engblom +engberson +encinias +enama +emel +elzie +elsbree +elmo +elman +elm +ellebracht +elkan +elfstrom +elerson +eleazer +eleam +eldrige +elcock +einspahr +eike +eidschun +eid +eickman +eichele +eiche +ehlke +eguchi +eggink +edouard +edgehill +eckes +eblin +ebberts +eavenson +earvin +eardley +eagon +eader +dzubak +dylla +dyckman +dwire +dutrow +dutile +dusza +dustman +dusing +duryee +durupan +durtschi +durtsche +durell +dunny +dunnegan +dunken +dun +dumm +dulak +duker +dukelow +dufort +dufilho +duffee +duett +dueck +dudzinski +dudasik +duckwall +duchemin +dubrow +dubis +dubicki +duba +drust +druckman +drinnen +drewett +drewel +dreitzler +dreckman +drappo +draffen +drabant +doyen +dowding +doub +dorson +dorschner +dorrington +dorney +dormaier +dorff +dorcy +donges +donelly +donel +domangue +dols +dollahite +dolese +doldo +doiley +dohrman +dohn +doheny +doceti +dobry +dobrinski +dobey +divincenzo +dischinger +dirusso +dirocco +dipiano +diop +dinitto +dinehart +dimsdale +diminich +dimalanta +dillavou +dilello +difusco +diffey +diffenderfer +diffee +difelice +difabio +dietzman +dieteman +diepenbrock +dieckmann +dicey +dicampli +dibari +diazdeleon +diallo +dewitz +dewiel +devoll +devol +devincent +devier +devendorf +devalk +detten +detraglia +dethomas +deter +detemple +desler +desharnais +desanty +derocco +dermer +derks +derito +derick +derhammer +deraney +dequattro +depass +depadua +deon +denzel +denyes +denyer +dentino +denlinger +deneal +demory +demopoulos +demontigny +demonte +demeza +delsol +delrosso +delpit +delpapa +delouise +delone +delo +delmundo +delmore +delmar +dellapaolera +delfin +delfierro +deleonardis +delenick +delcarlo +delcampo +delcamp +delawyer +delaware +delaroca +delaluz +delahunt +delaguardia +dekeyser +dekay +dejaeger +dejackome +dehay +dehass +degraffenried +degenhart +degan +deever +deedrick +deckelbaum +dechico +decent +dececco +decasas +debrock +debona +debeaumont +debarros +debaca +dearmore +deangelus +dealmeida +dawood +davney +daudt +datri +dasgupta +darring +darracott +darius +darcus +daoud +dansbury +dannels +danish +danielski +danehy +dancey +damour +dambra +daman +dalcour +daisey +dahlheimer +dagon +dadisman +dacunto +dacamara +dabe +cyrulik +cyphert +cwik +cussen +curles +curit +curby +curbo +cunas +cunard +cunanan +cumpton +culcasi +cui +cucinotta +cucco +csubak +cruthird +crumwell +crummitt +crumedy +crouthamel +cronce +cromack +cristina +crisafi +crimin +cresto +crescenzo +cremonese +creedon +credit +crankshaw +cozzens +cove +coval +courtwright +courcelle +coupland +counihan +coullard +cotrell +cosgrave +cornfield +cornelio +corish +cordoua +corbit +coppersmith +coonfield +cools +conville +contrell +contento +conser +conrod +connole +congrove +conery +condray +colver +coltman +colflesh +colcord +colavito +colar +coile +coggan +coenen +codling +coda +cockroft +cockrel +cockerill +cocca +coberley +coaster +clouden +clos +clive +clish +clint +clinkscale +clester +clammer +city +cittadino +citrano +ciresi +cillis +ciccarelli +ciborowski +ciarlo +ciardullo +chritton +chopp +choo +chirco +chilcoat +chevarie +cheslak +chernak +chay +chatterjee +chatten +chatagnier +chastin +chappuis +channing +channey +champlain +chalupsky +chalfin +chaffer +chadek +chadderton +cestone +cestero +cestari +cerros +cermeno +centola +cedrone +cayouette +cavan +cavaliero +casuse +castricone +castoreno +casten +castanada +castagnola +casstevens +cassio +cassi +cassanova +caspari +casher +cashatt +casco +casassa +casad +carville +carvel +cartland +cartegena +carsey +carsen +carrino +carrilo +carpinteyro +carmley +carlston +carlsson +carie +cariddi +caricofe +carel +cardy +carducci +carby +carangelo +capriotti +capria +caprario +capelo +canul +cantua +cantlow +canny +cangialosi +canepa +candland +campolo +campi +camors +camino +camfield +camelo +camarero +camaeho +calvano +callum +calliste +caldarella +calcutt +calcano +caissie +cager +caccamo +cabotage +cabble +byman +buzby +butkowski +bussler +busico +bushy +bushovisky +busbin +busard +busalacchi +burtman +burrous +burridge +burrer +burno +burin +burgette +burdock +burdier +burckhard +bunten +bungay +bundage +bumby +bultema +bulinski +bulan +bukhari +buganski +buerkle +buen +buehl +bue +budzynski +buckham +bub +bryk +brydon +bruyere +brunsvold +brunnett +brunker +brunfield +brumble +brue +brozina +brossman +brosey +brookens +broersma +brodrick +brockmeier +brockhouse +brisky +brinkly +brine +brincefield +brighenti +brigante +brieno +briede +bridenbaugh +bridegroom +brickett +bria +breske +brener +brenchley +breitkreutz +breitbart +breister +breining +breighner +breidel +brehon +breheny +breard +brean +breakell +breach +brazill +braymiller +braum +brau +brashaw +bransom +brandolino +brancato +branagan +braff +brading +bracker +brackenbury +bracher +braasch +boylen +boyda +boyanton +bowlus +bowditch +boutot +bouthillette +boursiquot +bourjolly +bouret +bouquet +boulerice +bouer +bouchillon +bouchie +bottin +boteilho +bosko +bosack +borys +bors +borla +borjon +borghi +borah +booty +booten +boore +bonuz +bonne +bongers +boneta +bonawitz +bonanni +bomer +bollen +bollard +bolla +bolio +boisseau +boies +boiani +bohorquez +boghossian +boespflug +boeser +boehl +boegel +bodrick +bodkins +bodenstein +bodell +bockover +bocci +bobbs +boals +boahn +boadway +bluma +bluett +bloor +blomker +blevens +blethen +bleecker +blayney +blaske +blasetti +blancas +blackner +blackie +bjorkquist +bjerk +bizub +bisono +bisges +bisaillon +birr +birnie +bires +birdtail +birdine +bina +billock +billinger +billig +billet +bigwood +bigalk +bielicki +biddick +biccum +biafore +bhagat +beza +beyah +bex +bevier +bevell +beute +betzer +betthauser +bethay +bethard +beshaw +bertholf +bertels +berridge +bernot +bernath +bernabei +berkson +berkovitz +berkich +bergsten +berget +berezny +berdin +beougher +benthin +benhaim +benenati +benejan +bemiss +beloate +bellucci +bells +bellotti +belling +bellido +bellaire +bellafiore +bekins +bekele +beish +behnken +beerly +beddo +becket +becke +bebeau +beauchaine +beaucage +beadling +beacher +bazar +baysmore +bayers +baun +baulch +baucher +batto +baton +bathe +basora +baruffi +bartimus +bartholemew +barrickman +barribeau +barreda +barrack +baroody +barness +barn +barmer +barillari +barias +barginear +barg +barde +barbone +barbato +barbarin +baoloy +bansal +bangle +banducci +bandel +bambeck +balter +ballif +baller +balladares +balkus +baldy +baldivia +balcerzak +balazs +baksh +bakr +bakemeier +baisey +bainer +bailly +bagge +badua +badini +bachtell +bachrodt +bachorski +bacak +babula +bable +babjeck +babecki +azbell +ayudan +awai +avita +avino +avellar +auzat +autman +autio +autery +ausman +ausland +aulabaugh +augle +aughenbaugh +augeri +audi +attleson +attig +attal +ator +asselmeier +askland +asiello +asch +arya +artola +arslanian +arron +arrezola +arnesen +arnau +armster +armintrout +armento +armato +arkenberg +ariaza +arguin +arenson +areias +archut +archibold +arave +arand +appelman +appello +antonson +antoniewicz +antill +antigua +annino +anness +anneler +angustia +angry +angiolillo +angelico +andreula +andreen +andreassi +andeson +ander +anda +anania +anadio +amicone +amenta +alzaga +alwardt +aluarado +altreche +altic +alsobrooks +alpern +almodova +almas +alltop +alliston +allio +alipio +alicandro +alibozek +alguire +alff +alcalde +alborn +albery +alberry +albany +albani +albanez +alavi +akkerman +ahlheim +agresti +agnelli +agilar +agib +aggas +afton +afonso +adil +adi +adank +adamsky +acri +accurso +abruzzese +abrew +abeln +abdullai +abdulkarim +abdelrahman +abbenante +abatiell +abaloz +zyskowski +zwiefel +zurmiller +zupancic +zuno +zumsteg +zumbrennen +zumaya +zullinger +zuleger +zozaya +zourkos +zorrilla +zorko +zolocsik +zittel +ziobro +zimmerly +zimmerli +zillmer +zigmond +zierer +zieber +zide +zevenbergen +zephier +zemel +zelazo +zeitlin +zeiser +zehring +zeger +zedian +zearfoss +zbranek +zaya +zatarain +zasso +zarn +zarilla +zari +zapp +zapf +zanghi +zange +zamacona +zalesky +zalazar +zaki +zafar +zade +yusko +yurman +yurkovich +yuhasz +younge +yiu +yeasted +yarrito +yark +yarboro +yannuzzi +yankovich +yanagawa +yago +yaffe +wyndham +wyms +wyand +wuensch +wryals +wrubel +worosz +woolstenhulme +wolpe +wolner +wolgamot +wolfman +wojtaszek +woeppel +woehr +wodarski +wizwer +wittkop +wisseman +wisor +wishum +wischmann +wisch +wirkkala +wion +wintjen +wintermute +wintermantel +winks +winkey +winham +windschitl +willow +willitzer +willier +willets +willenbrink +willen +willaimson +wilfahrt +wilenkin +wilen +wildeboer +wilchek +wigren +wignall +wiggington +wierson +wiegman +wiegel +widmayer +wider +widder +wickey +wickers +wical +whiton +whitenton +whiteleather +whiston +whirley +whetham +wheatly +wetenkamp +westenberger +westenbarger +westall +werblow +wengel +welson +welschmeyer +wellmann +wellbrock +wela +wekenborg +weiter +weisenstein +wehmann +weeda +wede +webley +waver +wauford +waterworth +watchorn +wassinger +wassell +wasp +wasiuta +warnix +warning +warnes +warmoth +warling +warila +warga +warburg +wanzer +want +waner +wanek +walwyn +walle +walkner +walin +waletzko +waler +walenta +wainer +wailes +wahr +waddel +wactor +wachtler +wachsman +wachowski +vulgamore +vukelich +vote +vost +voskamp +vorwerk +vongphakdy +volpi +volle +volino +voeks +vodopich +vittone +virdin +virag +vinroe +vinegar +vindiola +vilmont +villerreal +villaneva +villalobas +villada +vilhauer +vilchis +vilches +viggiani +vig +vieux +viets +vient +vielle +viejo +vidovich +vichi +veys +veverka +verser +veronesi +vernoy +vermont +verhines +verheyen +veren +vereb +verano +venuto +ventry +ventrone +veltz +velo +velazguez +veeser +vassey +vasque +varin +varaza +varady +vaquez +vaquerano +vansteenwyk +vanschoick +vanroekel +vannorden +vanlent +vangrouw +vangelder +vanes +vanelli +vanderkar +vanderbeek +vandenburgh +vandekieft +vandekamp +vancura +vancooten +vanconey +vancampen +vanaria +valvano +vallette +vallero +valiton +valin +valeri +valek +valdovino +valdivieso +vakas +vagas +vadala +vaccarella +vacanti +urrabazo +urguhart +urda +urbino +urbas +upmeyer +umphlett +ulerio +uitz +uchimura +uccello +tysdal +ty +tweedle +turrubiates +turrubiartes +turri +turnham +turko +turben +tupin +tumulty +tuffey +tuckey +tuckett +tucholski +tubolino +tubergen +tsuboi +tschumperlin +tschoepe +trynowski +tryba +truslow +truog +trumball +trudelle +trojillo +trnka +trizarry +trigueiro +trigleth +tricomi +tresselt +trentacoste +trendell +trenary +treml +treleven +treherne +treasure +trayer +travino +traugott +trappey +tranbarger +tramontano +tramell +trainum +traino +traill +trabucco +townsell +tourtillott +touar +toscani +torrella +torguson +torda +top +toomes +tonner +tommasino +tomaro +tolve +tolefree +toguchi +tofflemire +tofanelli +tody +toce +tobacco +toan +toalson +tkacik +tirone +tipple +tippery +tinson +tinnell +timper +timmers +times +timblin +tilotta +tillberg +tijernia +tigges +tigar +tielking +thyng +thonen +thomley +thombs +thimmesch +thier +thevenin +theodorov +theodoropoulo +tharnish +tharaldson +thackaberry +tewari +tetu +tetter +tersigni +tepezano +tennon +tennent +teichman +teehan +tayloe +taus +tatis +tata +tat +tashima +tarufelli +tarlow +tarkowski +tarka +targett +taran +tarabokija +tappen +tanzer +tanous +tanigawa +taneja +tammo +tallerico +tallada +talk +talhelm +takehara +takata +tagliavia +taffer +tadman +tacdol +tacconi +tables +szewczak +szeredy +szanto +sympson +symmes +syers +sydney +syas +swinny +swierk +swendsen +sweigard +sweezey +sweesy +sween +sweely +sweed +sweazy +swauger +swansbrough +swango +swanda +swamp +swallows +swaggerty +svatek +survant +surowka +surina +suozzi +sunstrom +sunford +sundseth +sundahl +summerill +sumida +sumbler +suma +sulyma +sulla +sulieman +suit +sugiyama +suell +sudo +suddreth +sucher +sturn +sturkey +studzinski +studler +stuckmeyer +stryjewski +stroy +strotman +strollo +stroik +stroede +streeby +stredny +strazi +stray +strawderman +straiton +stower +stoudmire +stormont +stopka +stoneback +stoldt +stolarz +stolarski +stockmaster +stobb +stivason +stirk +stipp +stipes +stingel +stike +stiebel +stidd +steurer +sterley +sterle +stepro +stepovich +stephson +stenseth +stenerson +stello +steinbrook +steidley +stehlin +stegmaier +stefanow +steese +steenhuis +stavely +stave +stautz +staunton +stater +stas +startup +startt +startin +starratt +stargell +starcevich +stank +stanis +standing +stancliff +stanchfield +stanbrough +stakes +stahmer +staheli +staebell +stadtlander +stadheim +sroufe +sroczynski +srnsky +sreaves +srader +squeo +spuler +sproat +springmeyer +sprengeler +sport +spolar +spivack +spinale +spiegler +spickerman +spessard +spenner +speich +spaziano +sparaco +spalter +sowells +sovich +southmayd +southgate +sotto +sotomayer +sosaya +sorvillo +sorrel +soos +songco +somerset +somero +soll +soldan +solarzano +solana +sokal +soibelman +soesbe +sobotta +sobina +sobeck +soard +snorton +snopek +snoozy +snethen +smithhisler +smee +smaniotto +slusarski +slowe +slotnick +sleva +sleighter +slappey +skyers +skutt +skorcz +skoczylas +skillicorn +skiffington +skibicki +skerl +skehan +skalla +siwinski +sivley +sittloh +sitterly +sith +sit +sise +siroky +sirles +sirin +sirignano +siren +sinsabaugh +sinks +sinisi +sinibaldi +singson +sindlinger +simpkin +siminski +simcoe +siford +siegert +sidor +sidhom +siddique +siddell +sicotte +sichting +sicari +sic +siano +shufflebarger +shramek +shortnacy +sholler +sholette +sholders +shogren +shoenberger +shoemate +shoat +shinoda +shines +shimshak +shigley +sheward +shetrone +shetlar +sherretts +sherod +shenkle +shely +sheltra +shelpman +shellabarger +shelite +sheldrick +shelburn +sheinbein +shebby +shawley +shatrau +shartle +sharifi +shanker +shami +shamel +shamburg +shamas +shallow +shaffstall +shadowens +shackleton +shaak +seykora +seyfert +sevillano +sevcik +seubert +seu +setter +sesler +servatius +serrant +serramo +serl +serini +serenil +serapion +sept +sensibaugh +sens +senich +sengbusch +sendra +senate +semrau +semrad +sempertegui +semons +semke +selma +sellinger +seliga +sekel +seilheimer +seigfried +seesholtz +seefeld +seecharran +sedrakyan +seavy +search +seamster +seabold +scyoc +sculley +scullawl +scrogham +scow +scopa +scontras +sciulli +sciola +scifres +schweyen +schwering +schwerdtfeger +schweim +schweikert +schweder +schwebel +schwartzwalde +schusterman +schuhmann +schuerman +schuchman +schrotenboer +schreurs +schoppert +schopper +schools +schoneman +scholfield +schoeppner +schoenleber +schoeman +schoel +schnurbusch +schnepel +schnader +schlarb +schlappi +schlangen +schlaht +schiraldi +schinkel +schimizzi +schifo +schiesher +scheyer +schettler +scheppke +schepper +scheinost +scheidel +scheets +schatzman +scharwath +scharp +schaarschmidt +schaack +scarnato +scarnati +scaringi +scarcia +scarano +sberna +sawina +sawer +sawaya +sawatzky +savcedo +sauser +saumier +sauchez +sauceman +sathre +satawa +sasala +sartoris +sare +sarchet +saracco +santulli +santory +santorelli +santopietro +sansing +sanseverino +saniatan +sangiacomo +sanges +sanfratello +sanflippo +sandona +sandelin +sandate +samona +sammis +sambor +samano +salvitti +salvietti +salvi +salum +salsa +salonek +salm +salles +sall +salera +salemo +salee +salak +sakihara +sakasegawa +sakaguchi +sagastegui +saeturn +sadan +sacayanan +saborio +sabeiha +sabedra +sabagh +rzepecki +rzasa +ryser +ryner +rydman +rycroft +rybij +ruyes +ruttan +russon +rushe +rusert +rusell +runnells +rundstrom +rumschlag +rullman +ruka +ruiloba +ruh +ruggs +ruffer +ruest +rueluas +rueger +ruediger +rubinoff +rubendall +rozmus +roxburgh +rowls +rousch +rothove +rotelli +roszel +roske +roskam +rosensteel +rosendo +roome +rombough +romash +romanson +romanello +romance +rolison +rogol +rogas +roese +roehrs +roegner +roeger +rodrguez +rodeman +rodebaugh +rockenbaugh +rocconi +robleto +robateau +roarty +roaf +rivenberg +rivara +rivali +risse +risby +ripperger +riopelle +ringrose +rinebarger +rile +riggen +rigano +riff +rifenbark +rieper +rieffenberger +riedmayer +ridolfi +ridderhoff +rickon +rickers +rickels +richoux +richens +ribao +rhodarmer +rheingans +reznik +reveron +reus +reph +renko +remme +remlinger +remke +remily +reitano +reissig +reisher +reinitz +reinholtz +reines +reigstad +reigh +reichelderfer +rehnert +rehagen +redline +rediger +redhouse +redepenning +recla +rechkemmer +reando +razavi +rayson +rayna +rax +raveling +rauser +rauschenberg +raupach +raum +rauen +ratulowski +ratterree +ratering +rapin +rannels +rane +randhawa +ramus +ramsfield +rams +ramroop +ramano +raj +raina +raikes +ragonese +rafaniello +raetz +raether +raeside +radwan +radman +rademaker +radar +racki +rachlin +rabena +rabassa +rabadan +raad +quoss +quizon +quito +quintela +quimet +quilty +quilimaco +quidley +quezaire +quave +quarto +quaranto +quandel +qiu +qazi +pyrdum +pyon +pyeatt +puzinski +putnal +punter +pumphery +pumper +pump +pummell +pumarejo +pulvermacher +pultz +pully +pullens +pulkrabek +pulk +pudlinski +puccetti +przygocki +przybyszewski +prusha +prudente +prucnal +prottsman +prosch +prodoehl +procell +prinzivalli +primes +prey +presnar +presho +prentis +preisler +preisel +pratka +pratcher +prass +pozzuoli +powanda +poundstone +potters +potra +potestio +potempa +postlethwait +posas +portrum +portland +portilla +portie +popovitch +popken +ponzio +pontremoli +pontarelli +pombo +pomainville +polycarpe +pollart +politowski +politano +poliquin +polczynski +pokoj +poitevint +poissonnier +poeppel +poellot +poehlman +poehlein +podratz +pociask +plocher +pline +plessinger +plautz +platten +plass +plageman +placko +pizzola +pizzella +pittsenbarger +pittner +pitstick +pitsch +pitney +pitaniello +pistoresi +pirc +pinski +pinera +pincock +pinckley +pincince +piliero +pilat +pigue +pietschman +pierpoint +pierini +picon +picking +picardi +phlegm +phippin +phetteplace +pharel +pfundt +pfluger +pfeuffer +pfefferle +pezzulo +pezzano +peveler +pettersson +petsch +petrusky +petruska +petrulis +petrossian +petroske +petrini +petitte +petito +petela +petaccio +pesto +pestka +pesta +pessoa +perun +perrow +perricone +peros +perney +perlin +perigo +perella +percle +pepple +penz +penttila +pensiero +penigar +penez +pendrak +penas +pellowski +pellow +pellin +pelissier +pelini +pekrul +peevey +pedraja +pecher +peasel +payment +pavolini +paviolitis +paulsell +paulina +paule +patrum +patrone +patrie +patras +patera +patek +patane +pastrano +pastora +passow +passley +passaretti +passantino +paske +partible +parsa +parnes +parliman +parlato +paravati +paradowski +papaleo +papagni +paoletta +panzarino +pannunzio +panis +pandit +paluzzi +palomin +palomaki +pallanes +palla +pall +palino +palfreyman +palazzi +palanza +palagi +painton +pain +pahulu +paganico +paeth +padlo +padillia +paddy +paddick +paciolla +pacholski +paap +paa +owolabi +overshown +overocker +overgaard +ouchi +ottoson +ostrye +osterland +osland +oslan +osick +osen +osdoba +osberg +orzel +ortmeier +orren +ormerod +orio +orgeron +orengo +orbaker +opiela +opdahl +onks +oltrogge +olnick +olivarres +olide +oleksy +olaya +okray +okonek +okinaka +ojima +ojala +oinonen +ohotto +ohan +ogwin +ogborn +oflaherty +offill +oetken +oertle +oehlert +odems +oconnel +ocha +ocarroll +oby +oblak +oberst +obermann +obas +oachs +nydegger +nybo +nuuanu +nutile +nuse +nuriddin +nungesser +nuber +noy +novinger +nouri +northan +norseworthy +norrod +normington +nori +norenberg +nordine +nop +noori +noblet +nives +nist +niskala +nilan +nikolai +nigl +nightengale +nichole +ni +nhek +ngvyen +newville +newsam +newnham +newmeyer +newlan +newbert +neuschwander +neusch +neun +nethken +nethercutt +nesser +neske +neman +nelton +nelles +nekola +neiling +neeser +neelly +nedved +neang +navejar +naveja +nauarro +natho +nathe +natcher +naser +nasby +narlock +nanton +naillon +naill +naguin +nagele +naftzger +naegle +naegele +naef +nacke +nabritt +mynhier +myart +muzquiz +mutty +musolino +mushero +murtaugh +murie +muresan +murdough +mura +munuz +munstermann +munsen +munselle +munise +mungle +munerlyn +muncher +mulrooney +mullee +mulaney +mulanax +muhlhauser +muhlestein +mugleston +mugg +mugford +muckel +mucerino +mt +mrotek +mrnak +mozdzierz +moyler +moury +moulin +moulding +moul +mottai +mostyn +mosimann +mosholder +mosburg +morrisseau +moron +morice +morgante +moreta +morcos +morasco +morante +mooe +montori +montminy +monteforte +montante +montanari +monsees +mondier +monden +monckton +monce +monarch +monarca +mompoint +mollema +molin +molima +molen +molash +moher +mogle +mogannam +moel +moehn +modesitt +mobilia +moag +miyagawa +mivshek +miu +mittman +mittleman +mittelsteadt +mittelstaedt +mitsch +mithell +miscione +mirbaha +mirabelli +mir +minon +minniti +minnerly +mingrone +minervini +minerd +minarcin +mimnaugh +milord +milnor +milnik +millers +milkowski +mikrot +mikles +miglorie +mientka +midthun +middlesworth +micklos +mickler +michetti +michelli +michelet +micallef +meyn +meullion +mette +metoxen +messore +messano +mesaros +mertel +merritts +merrion +merril +mermis +merlini +merker +meridith +mergel +merbaum +mente +mensi +menninger +mennen +menlove +menken +menezes +menette +mendyk +mendoca +mendivel +mendias +menasco +melloy +mellema +mellard +melis +meldahl +melberg +meirick +meinel +meiler +meile +meidl +meerdink +meer +medus +meduna +medovich +medine +medico +medici +mcvaigh +mctier +mcquirk +mcnight +mcmurrey +mcmurdo +mcmorries +mcmilleon +mcmickell +mcmicheal +mcmeel +mcleese +mclee +mclaws +mclanahan +mclaird +mckusker +mckibbens +mckenley +mckenize +mckendall +mckellop +mckellip +mckeirnan +mcinvale +mcguffee +mcgrue +mcgregory +mcgrann +mcgoey +mcglinn +mcgillicuddy +mcgillen +mcgeachy +mcgarrell +mcgannon +mcgalliard +mcfarlen +mcevers +mcerlean +mcennis +mcelvany +mcelvaine +mcdonal +mcdavitt +mccullick +mccrone +mccreadie +mccoun +mcconchie +mcconaughy +mcconahy +mcconaghy +mccomsey +mccoggle +mcclimans +mccleod +mccleaf +mcclafferty +mccatty +mccarry +mccance +mccament +mccaghren +mcbreen +mcardell +mcabier +mazell +mayotte +maybrier +mavis +mautone +matuszek +mattimoe +mattey +matterson +matten +matsushima +matsubara +matrone +matras +mato +matier +matheus +massucci +massoni +massare +maslin +mashaw +mase +mascola +masci +marze +marvray +marusak +martowski +martiny +martie +martabano +marsha +marschel +marsack +marsac +marohnic +markve +markis +marking +marken +marioni +marichalar +margosian +maretti +mardesich +marcussen +marchessault +marcey +maraldo +marafioti +manzanero +manwill +manual +manocchio +manko +manista +manire +manikowski +manganiello +manetta +mandy +mandino +mandarino +mancinelli +manasse +manary +manalang +malling +mallahan +maliska +malet +maleski +maldonaldo +malaterre +malaney +malagarie +malabe +maks +makinster +makar +maita +maiolo +mahley +magos +mago +magnotti +magnant +maglott +maglori +maenius +madkin +madarang +madagan +macrina +macquarrie +macphee +macneal +macmahon +maclellan +mackeen +maciver +machkovich +machan +macewen +macera +macer +maceachern +macdonell +macaskill +maaske +lysaght +lynum +lynema +lyas +lutton +luttman +lutsky +luthi +lutfy +lupoe +lundrigan +lunderville +lukan +luedeman +ludke +lucore +lucksinger +lucks +luckner +lucarell +lubelski +luarca +luaces +lozinski +loynes +lowis +lovorn +loverde +lovasz +loughery +lotzer +losito +loschiavo +lorsung +lorquet +lorkowski +lorino +lorey +lorente +loreman +lopaz +looft +lonie +longman +longhofer +longan +lomascolo +lomack +lolagne +lokaphone +logins +loggin +lofredo +loffler +loescher +loendorf +locus +lockyer +lockheart +lobendahn +lobasso +lob +lizana +livshits +litzau +litty +litteer +litsey +litrenta +litner +liszewski +lisman +lisboa +liquet +liptok +lineweaver +lindenpitz +lindel +lime +lillywhite +life +lievano +lieblong +liebler +lidey +libutti +liborio +libengood +leyson +leyland +lewczyk +lewark +leviner +levenstein +leuenberger +leszczynski +lestage +leske +lerwick +leray +lepkowski +leonor +lenyard +lenger +lendon +lemarie +leman +lelle +leisner +leisey +leischner +leimer +leigers +leiferman +leibfried +lehoullier +lehnortt +legget +legato +legath +legassie +legarreta +leftridge +leewright +ledsome +lecrone +lecourt +lecky +lechman +lebsack +lebouf +lebon +leazer +leavins +leadbeater +lawwill +lawall +lavorini +laviero +lavertue +lavalais +lautenbach +lausier +laurita +lauriano +laurange +launey +laughead +laufenberg +lauderman +laubhan +latunski +latulas +lastrape +lastiri +lason +laskoski +lasanta +laroux +larizza +larive +larish +laquerre +lappas +lapilio +lapadula +lapa +lanzi +lanzafame +lantier +lanski +laningham +langon +langdale +landron +landero +landauer +landacre +lamport +lamping +lamott +lamonda +lammi +lambiase +laite +lahaye +laframboise +lafone +laferte +laeger +ladieu +ladabouche +lachat +labonville +labbee +labatt +laban +kynaston +kwaterski +kuzniar +kuthe +kuter +kutchar +kurtin +kuramoto +kupstas +kuperman +kuns +kullmann +kuligowski +kukielka +kuehler +kudrna +kubie +kubera +kubas +kuba +kualii +krysinski +kryder +kronberger +kroft +kroencke +kristiansen +krigger +krieser +kretschman +krentz +krenke +kremers +kreitner +kreimer +kray +krawchuk +kravs +kranich +krampitz +kragh +krager +kozuch +kozloski +kozatek +kozakiewicz +kovalsky +kovalcik +kovack +kotera +kot +koszyk +kostel +kosmicki +koshy +korona +koroma +korba +koopmann +konstantinidi +kolodzik +kolodzieski +kolle +kolkmann +kolker +kolda +kokaly +kofford +koepper +koeing +koehnen +kodish +kodani +kocur +kocourek +kobza +koble +koback +knutzen +knows +knolton +knoblauch +knispel +knieper +knepshield +klyce +klunk +kluka +klostermann +klosinski +klish +klint +klinner +klindt +klimko +klicker +kleman +kleinsorge +kleinfelder +kleier +klas +klaman +kizzee +kitto +kitka +kirtdoll +kirscht +kintzer +kinstle +kinning +kinniburgh +kinnett +kinker +kinkelaar +kings +kingham +kingfisher +kimmet +killingbeck +kilberg +kikuchi +kikkert +kiesow +kienitz +kidner +kida +kid +khuu +khatak +khaleck +kezar +keyton +ketelhut +kesley +keshishyan +kerzman +kertesz +kerslake +kerscher +kernes +kerin +ker +kenimer +kenfield +kempe +kemick +kem +keitsock +keisker +keery +keblish +kebalka +kearny +kearby +kayler +kavin +kauer +kattan +katoa +kassis +kashuba +kashan +kartman +karry +karpel +karo +karnopp +karmazyn +karjala +karcz +karasti +karagiannis +kapoi +kapanke +kanz +kaniewski +kanemoto +kaneholani +kandt +kampfer +kammann +kamler +kamal +kalvig +kalmen +kalmar +kallstrom +kallin +kallbrier +kakaviatos +kakar +kahahane +kagel +kabat +kabanuck +kaas +jurczak +jurasin +juras +junke +junghans +jungen +jund +juliusson +juhnke +juett +jolla +jokinen +jokela +joffe +joecks +jochumsen +joa +jeziorski +jesseman +jessamy +jernejcic +jergenson +jerdon +jensrud +jellinek +jedrey +jedele +jeannette +jauron +jatho +jarrel +januszewski +janski +janovsek +janning +janikowski +jane +jandres +jamaica +jalonen +jainlett +jahnsen +jahde +jagow +jagielski +jaffray +jaecks +jacquot +jacoway +jacocks +iwami +isadore +irmeger +irie +iredale +iqbal +inscoe +inklebarger +ingemi +immen +imig +imberg +imamura +illies +ilacqua +ijams +iha +iden +ibraham +ibey +ialongo +iafrate +hyzer +hyacinthe +huyard +huxman +hutchkiss +hutchingson +husson +hussman +hurm +hupka +hunyadi +hunstad +humpert +hummons +hultz +hulton +hules +huisenga +huhta +hugueley +hughe +huggler +hufton +huffstickler +huddelston +huba +hrivnak +hoysradt +howorth +howenstine +hovda +hourani +houglum +houch +hotalen +hosse +horwich +horvitz +horoschak +hornor +hornbrook +horita +hoque +hopman +hoovler +hoople +hookfin +honeysucker +honeycut +honerkamp +homyak +homa +holzwart +holzerland +holyoke +holtry +holterman +holohan +hollinshed +hollington +hollenshead +holey +holderby +holak +hokkanen +hohner +hogsed +hoglen +hogen +hogberg +hofland +hofius +hoffis +hofferber +hoffarth +hofacker +hoekman +hodor +hochstetter +hochnadel +hobbins +hoa +hlavaty +hittner +hitson +hirtz +hirschi +hinkes +hinke +hindley +hince +hilse +hilke +hilferty +hildesheim +hikes +hignite +higman +hiemer +hidden +hickinbotham +hewatt +hetz +hetsler +hessian +hershaw +herra +hernander +herlocker +hepper +henseler +henri +hennick +hennecke +hendrikson +henderlight +hellstrom +helderman +heitland +heistand +heiskell +heisinger +heiserman +heinritz +heinly +heinlen +heimerdinger +heimbigner +heidbreder +hegwer +hedeen +hebrank +heberlein +heaslet +hearin +hazle +hazelbush +hayzlett +hayre +haymans +hayenga +hayduk +haward +havner +haushalter +hauf +hatke +hatchel +hassard +haskovec +hashmi +harvest +harvath +hartill +harteau +harshfield +harrigill +harriet +haros +haroldson +harmeson +harl +harkley +hariston +harington +harian +hargus +hargens +hardina +haraldson +harajly +hapke +hapeman +hanz +hanthorn +hanry +hannen +hannasch +hannam +hanifan +hanft +handon +handford +hancher +hancey +hample +hammrich +hammerstrom +hambric +halwick +halma +hallgren +hallet +hallada +halla +halik +halgas +halcon +halbrooks +hakel +hairfield +hainesworth +haggarty +hagenhoff +hagebusch +hagadone +haft +haflett +haefele +haddow +hackbart +haberer +haass +gwinner +gwathney +gwartney +gutterrez +gutoski +gutkin +gutherie +gutches +gustus +gustison +gustaveson +gurtner +gurkin +gummo +gulliksen +gulke +guldin +gulden +guitierez +guile +guildford +guidice +gugerty +guffy +gueningsman +gudgell +guderjahn +guastella +guariglia +guardia +gryniuk +grueser +grudem +growden +grossett +gropper +gron +grodin +groch +grismore +gripper +grinvalsky +grima +griffth +griess +greynolds +gresh +greminger +gregoria +greenwade +greenlief +greenier +grayes +gravell +grassmyer +grappe +grantland +grandin +grandel +grandbois +granahan +gramham +graffeo +graeter +gradwell +gradel +grabo +graban +goy +govoni +governale +govern +gouty +goughnour +goude +goubeaux +goth +gosline +goslee +goshen +gosewisch +gorzynski +gortman +gorter +gordin +gord +goos +goodwine +goodrick +goodley +gombert +goletz +goldy +goldthwaite +goldthwait +goldizen +golar +goist +gofman +goffer +goerges +goeltz +goedicke +goedecke +godnick +gocke +goade +gneiser +gluth +glovier +glomski +glodo +gloden +glenister +glawson +glasier +gladysz +gladstein +gjertsen +giudice +gitto +gittelman +girvin +girolamo +gionfriddo +gingell +gimble +gilhousen +gilboy +gilberti +gigantino +gietzen +gieseking +gianikas +ghosn +ghosh +geyman +gevara +getsinger +gessert +gerrits +gerrior +geris +gerhauser +gerety +genzone +genuario +gentles +gentille +genter +genetti +gelle +gelfand +gelabert +gekas +geck +gearin +gdovin +gaydosh +gawith +gave +gauntlett +gaugler +gaudy +gaub +gatten +gathje +gasperini +gasner +gasco +gascho +gasbarro +garvis +garra +garnette +garing +garick +gardunio +gardon +gardemal +garde +garczynski +garant +ganus +gantnier +ganis +gangloff +gangler +ganer +ganem +gandolfo +gampp +gallihugh +galletti +gallenstein +gallarello +galla +galka +galayda +galarneau +galapon +gaito +gaglione +gady +gadsen +gachupin +gaboury +futterman +fusch +furuta +furth +furber +fune +funai +fuess +frutchey +frumkin +fruhling +frommer +fromdahl +froehner +frizzle +friends +friederich +freyre +freilich +fregia +frediani +frederico +frater +fraile +foste +fosselman +fosnaugh +fosburg +fortis +fortgang +forstner +forson +forseth +forkin +forister +forinash +footer +fontillas +fontenelle +fonesca +folker +fogerson +fogelquist +flye +flummer +floth +floro +florine +flies +flexer +flessner +flatness +flank +fland +flahive +flager +fiveash +fitzner +fitzke +fitcheard +fisherman +fishbeck +fipps +fiorino +finster +finken +finigan +fingal +finer +filsaime +fillingim +filipponi +fila +fies +fiebelkorn +fiducia +fiallo +fetherston +fetherolf +fesmire +fesenmyer +ferroni +ferriss +ferrini +ferrick +ferraris +ferniza +fernades +ferdig +ferandez +feoli +fenninger +fenney +femi +fejes +fehlman +feger +fede +febo +febbraio +feasel +feagley +fayad +favaloro +fauerbach +fauble +fasheh +farrant +farra +faro +farinacci +farfaglia +farell +farb +farace +fanjoy +fangmann +famulare +falsetta +fallows +fallert +falero +faldyn +falconi +falce +fait +fairburn +faiola +faiella +fahlsing +faggett +fafinski +fadness +fabros +fabert +everidge +evaristo +eustache +etzkorn +etier +estabillo +esquivias +esquirel +eslava +eschete +esau +erway +ertzbischoff +eron +erner +ermitano +ermitanio +ermert +erie +erdley +equihua +enzor +ensing +enns +engleking +engelkes +endlich +endler +emry +emms +emmerling +emerich +ellsbury +ellie +elizarraras +eliot +eliopoulos +elery +elek +elderidge +elbaum +ekins +ekin +eisley +eilderts +eikleberry +eigo +eighmy +eichel +ehly +egloff +egland +eggington +eggenberger +egar +egans +eftekhari +efford +eeds +edvalson +edin +edgman +edemann +edelmann +eddens +eckl +eckerle +eckelman +ebrahim +eberth +eberspacher +ebbighausen +ebaugh +easly +eash +dzledzic +dyett +dyba +dworaczyk +duttry +duthie +duszynski +duso +dushaj +dusett +dus +durman +durkins +durick +duplechain +dunnivan +dunlow +dunivan +dumars +dumaine +duliba +dulany +duka +duft +dufrane +duffek +duellman +ducking +dubourg +drzewiecki +drugan +drozdowski +drozda +dronet +drilling +driesenga +dreyfuss +drevs +dreben +draudt +draleau +dragos +draghi +doyer +dowlin +douma +dotterweich +dottavio +doroff +dornon +dorland +doop +donndelinger +donehoo +donate +donado +dommer +dominici +domann +dolio +dolence +doland +dolak +doersam +doerrer +doede +dockham +dobrich +dobosz +dobin +dobbratz +divlio +divel +ditzel +disalvatore +diotte +dinnen +dinkin +dimler +dimiceli +dimeglio +dimascio +dimare +diluca +dilsaver +dillen +dilibero +dile +digioia +difede +diefenbach +diedrick +dickmann +dickes +dickason +dicapua +dicaprio +dibrell +dibley +dibattista +deyon +devotie +devoid +deval +detlefsen +destro +destiche +desposito +desola +deshotels +descombes +deschepper +desautel +desano +deroy +derosset +derosby +deroeck +derocher +dergance +deren +deptula +deprey +depolis +depner +depetro +denunzio +densford +dennington +dene +dender +denbo +demuro +demoranville +demling +demerson +demelis +demeglio +dembo +demattia +demarinis +delprincipe +deloria +delnoce +delmedico +dellow +delles +dellavalle +dellamora +delguidice +delgato +delfs +delcourt +delcolle +delbert +delaportilla +delahoz +delacueva +deisch +deike +degro +degonia +degollado +degolier +degirolamo +degener +degele +degeest +degeare +defina +defabio +deeley +decraene +decou +decorte +declercq +decinti +dechambeau +debutts +debro +deblieck +deblasi +debem +deavila +deases +deangeles +deahl +daymude +daven +datil +daros +darnick +darienzo +dardy +daponte +dannhaus +danneman +danielle +dani +danger +dangel +danes +danekas +dandrow +dambrose +dalpe +dalesandro +daiton +dainels +daigh +dahnke +dahme +dahling +dagata +dack +czaplicki +czachorowski +cuttitta +cutaia +custance +curless +curie +curi +cupelli +cumens +cumbass +cumba +cullars +cullar +cukaj +cubito +cuascut +crytzer +crye +cruzen +cruser +crunkleton +crummett +crumbliss +cropley +cronquist +cronkite +cronic +crombie +crockwell +crnkovich +critcher +cristo +cristales +crisanti +crier +cretsinger +crest +creson +crelia +crecco +craze +craveiro +cratch +crapps +cran +craigmiles +craiger +craige +crady +cradic +craddieth +cowels +coveney +courcy +coulbourne +cotsis +cotrone +cotney +cotilla +costaneda +costabile +cossel +cossa +cos +corte +corsino +corria +cornog +cornely +corio +corino +corington +coressel +cordone +corbisiero +corbelli +copps +coovert +coopwood +cooner +cookman +conzales +conver +contratto +conrady +conradi +connel +conneely +conmy +comunale +comber +comans +colvert +columbo +coluccio +colp +colop +collini +college +colestock +colebank +colasante +colasacco +colapietro +cokeley +coia +cocuzza +coalson +co +clowes +cliche +clevette +cleven +clerico +clearwater +civiello +ciullo +citro +cirocco +cioppa +cilek +cieszynski +cieri +cicerchia +ciaschi +ciani +cianchetti +chudy +chuc +chryst +christodoulou +christin +chrisley +chokshi +chmela +chkouri +chiodini +chio +chimilio +chilen +chilek +childrey +chier +chicas +chiaro +chiappone +chiappinelli +chiado +chhom +chesterfield +chesteen +cheshier +cherrez +cherep +chene +cheevers +checkett +cheaney +chayka +chawla +chasin +chasen +charvat +char +chapoton +chantos +chantler +chant +chadez +chad +chaco +chabez +cerrito +ceppetelli +centanni +celso +cederberg +cedar +cecchetti +cavel +cavanah +cavagna +catus +catton +catterton +catrambone +catherwood +catherman +cataldi +castellana +castellan +cassey +casparis +casilla +cashdollar +casaceli +carvana +carriedo +carrecter +carraher +carrabine +carpinelli +carouthers +carnovale +carmany +carles +caretto +careaga +cardosa +cardelli +carbine +carathers +caraker +caracci +capuchin +cappelletti +capistran +capdeville +caparros +canute +cante +canizares +canel +canclini +cancino +campus +campise +campen +cammarano +camilli +camic +camey +calwell +calvey +calvary +callo +callinan +callais +calizo +calixto +calisto +calip +calibuso +caira +cahillane +cahalane +cahal +caffery +caffarelli +cafarelli +cadlett +cacciatori +cabebe +byus +byrnside +byrer +byone +buza +buttrum +buttel +butremovic +butanda +bustin +bussen +bushlen +bushart +burtchell +burrel +burnard +burlett +burkeen +burce +buote +bunyan +buntrock +bunck +bumpas +bulleri +buglione +bugge +bueter +buerk +buenger +buehrle +buechele +budrow +buddenhagen +bucolo +buchenau +bucco +buccino +bubar +bruzas +brutsch +bruschke +brunot +brungard +brund +bruender +brucks +bruchey +brozowski +brownd +brothern +broomhead +bronw +brom +brog +brodigan +brockhaus +brockel +broadaway +brletich +briston +brissett +brines +brillon +brilliant +brightbill +brigges +briel +bresciani +brents +breitmeyer +breithaupt +breidenthal +breden +bredemeier +breckinridge +brecheisen +brecheen +breazeal +bream +brazzel +brawdy +brave +brashers +branz +branyon +brantz +brannam +brankovich +brandle +branchaud +branca +bramley +bramante +bramall +brakeman +bradby +bozzo +bozelle +boyarski +bowline +bowey +bowerize +bowdon +bowdler +boutros +bouten +bourdier +bouras +boufford +bottex +bottemiller +bothman +botcher +boshers +borris +bornemann +bonus +bonnot +bonifant +bongiardina +bonenberger +bonasera +bollier +bolar +bokman +bokanovich +boissonnault +boiles +bohrn +bohlke +bogenschutz +bogel +bogda +boevers +boever +boender +boehringer +boehne +bodor +bodda +bodak +bocker +bockenkamp +boche +blyden +bluto +bludworth +bloxsom +blomstrom +bloise +bloebaum +blier +bleiweiss +blegen +bleacher +blaum +blasz +blasingim +blasengame +blanda +blagman +blackstad +blackham +blache +bixel +bitters +bissegger +bisker +bishoff +bisard +bis +birtwell +birley +birkenmeier +birkenholz +birkeland +birdsey +birdo +birdinground +binner +bilsborough +billot +billops +billingham +bigney +bigg +bienkowski +bienek +bielefeld +bielec +biddie +bickell +bichler +bibo +biava +biagi +biagas +bhayani +bez +beyene +beyda +bevels +bettner +bettinson +betson +beto +bessix +bessire +bertschy +bertozzi +bertoncini +bertelson +berteau +berrong +berrones +berringer +berrigan +bernsen +berlingeri +berken +berka +berges +bergdorf +bergara +bergant +bergamini +beren +berdugo +berdine +berberian +benvenuti +benish +benincase +benek +benedith +bendas +benak +bena +beltrame +belsheim +belotti +bellrichard +belleville +beliles +belgrade +belcastro +bekius +bekhit +beightol +behel +beetz +bedson +becze +beckmeyer +beckey +beckers +beckelhimer +beccue +beberwyk +bebber +beamesderfer +beacom +bazzle +bazil +baynham +bayhonan +bayas +bawany +bava +baumgardt +bauerkemper +baudry +baudino +battko +battisti +batta +bassano +baskas +baseler +basanta +bartucci +bartron +barthold +bartamian +barsalou +barrineau +barriger +barreneche +barkie +barich +bardes +barbano +baral +baragar +baque +banther +banome +bannowsky +banke +baniaga +bandley +banahan +banaag +bamba +baltzer +balster +balnis +balkin +bali +balfe +balerio +balent +baldyga +baldor +baldinger +baldassano +baldacci +balanoff +balado +balaban +balaam +bakes +bajwa +baisch +bahnsen +bahls +bahler +bahamonde +bagdasarian +bagaoisan +bafia +baese +badolato +bado +badder +bacurin +backers +bachor +babe +babbit +babauta +baadsgaard +azzara +azebedo +avril +avello +aveline +authur +ausby +auricchio +auna +aukerman +auckerman +auck +auble +atterson +attard +aswegan +aste +asta +assaf +aspen +asken +asif +asiedu +ashner +asel +aschenbach +arvay +arvan +artus +artley +arrollo +aroyo +aronov +aromin +arnsworth +arnspiger +arnn +armant +arington +argubright +arentz +arcoraci +arbuthnot +arbo +aquilina +aquilera +apt +apsey +appolonia +apollo +apana +antista +anshutz +anon +anno +annala +anklam +angold +angelone +angeline +angeletti +andren +andreadis +andera +andelman +andel +anctil +anchors +anacker +ampy +amons +amirault +amir +amezaga +ameigh +alyea +altvater +altig +altermatt +alo +almengor +alme +allvin +allocco +allegrini +aliment +algee +alexanian +aler +aldo +albero +alarid +akiona +akemon +ajello +aitcheson +ainley +ailey +ahluwalia +ahlf +ahlbrecht +agundez +agro +agins +aggarwal +afalava +adriano +adomaitis +adolphus +adlam +adie +adey +adduci +addleman +adamyan +acothley +acklen +ackert +ackerly +acencio +accosta +abundiz +abedi +abbassi +abbasi +aanerud +aakre +aagaard +zwickl +zuver +zurasky +zumbo +zumba +zuckerwar +zuccarelli +zubris +zoucha +zorns +zorc +zitzow +zitzloff +zirkles +zippe +ziola +zinz +zinsmeister +zincke +zieschang +zierdt +zien +ziemke +zidek +zickler +zeuner +zerba +zera +zenger +zeltmann +zelle +zelinka +zelek +zele +zeiner +zeimet +zeidler +zecchini +zebley +zdanowicz +zbell +zaro +zaremski +zar +zani +zancanella +zana +zambarano +zakar +zadorozny +zader +zaccaro +ysquierdo +yoxall +youst +youngstrom +youn +youker +yoss +yoshina +yonke +yonemura +yohannes +yock +yerhot +yengo +yehle +yanofsky +yaker +yagues +yach +ya +xue +wyrosdick +wygle +wygand +wurzer +wurl +wunderlin +wunderle +wuerth +writer +wrighten +wrich +wozny +wozney +wowk +wouters +wormington +worf +woolem +woodrich +wooderson +wonder +womeldorf +wolz +woltmann +wolstenholme +wollmuth +wolle +wolfard +woldridge +wojtanowski +wojner +woitowitz +woehl +wittenburg +wittel +witschi +witaszek +witaker +wiszynski +wiswall +wiss +wisher +wisenbaker +wires +winsky +winfough +windler +winckler +wimes +wiltberger +wilm +willrich +willoby +willimon +willenborg +wilda +wilczewski +wilcock +wiggens +wigboldy +wiesler +wies +wienhoff +wielgus +wiebers +wieber +wickizer +wichrowski +wibbens +whyard +wholey +whitsey +whitlingum +whitlach +whirry +wharry +wharff +whack +weyman +weyler +wethje +westveer +westmorland +westerhold +wesselman +wesloh +wery +wermers +werlinger +werksman +wenzinger +weninger +wendeln +wendelin +wenck +wember +welters +welland +welchman +welchel +weitnauer +weissler +weinger +weimann +weigert +weidert +wehby +wehbe +weck +wechter +weaving +weather +weal +weagle +wdowiak +wayns +waycott +waychoff +waterfall +watcher +watahomigie +wasowski +wasner +washko +washing +washell +wartenberg +warson +warrenfeltz +warp +warmbrodt +warhurst +wardsworth +wanzek +wanta +wansing +wankel +wangberg +wanberg +wamack +waltzer +walthers +walterson +walshe +walrond +wallschlaeger +wallgren +walema +waldram +waldhauser +waldecker +walby +wakin +wakabayashi +wah +wagy +waggner +wagenaar +wage +waffle +wadzinski +wademan +wackerly +wachs +wable +vredenburg +vrana +vrable +voyer +voto +vosper +vosberg +vorhees +voran +vora +vonstein +vondoloski +voltin +volpicelli +volland +volentine +volcko +vojtko +voice +vogeler +vizzini +vizena +vix +vitko +viste +visor +visco +virock +vinup +vinion +vincenzo +villas +villarta +villari +vilello +vigne +viener +vielmas +vielhauer +viehman +vidulich +vidinha +videen +vickerson +vicker +vertz +verry +vermeesch +verhulst +verhoff +verhagen +verhaeghe +vergo +vergeer +verdino +venus +ventrella +ventola +venter +vennes +venneri +venditto +velzy +velilla +velie +velandia +vecker +vecellio +vear +vavricka +vautrin +vates +vassall +vasmadjides +varty +varriano +varriale +varrato +varnedoe +varillas +vardaman +varajas +vaquero +vanzyl +vanvleet +vanvleck +vansoest +vanskiver +vanskike +vanruler +vanputten +vanoy +vanous +vanoort +vanliew +vanlew +vanhulle +vanhoozier +vanhofwegen +vanhaitsma +vanecek +vandrunen +vandixon +vandivier +vandiford +vandezande +vandewege +vanderzanden +vanderwerff +vanderwerf +vanderschel +vandergiessen +vandenberghe +vandehei +vandee +vancheri +vanbramer +valsin +valli +valido +valenzano +vajda +vaillencourt +vacheresse +va +uzdygan +uyetake +usilton +urueta +ursprung +ursiak +urquilla +urquidi +urfer +ureta +urbancic +ura +upwall +uptegrove +uphaus +upadhyaya +unterburger +unch +unavailable +unangst +umphenour +umbenhauer +ulseth +ulatowski +ukosata +uhyrek +uhrmacher +uhlich +ueno +uelmen +udoh +ude +uchytil +tzeng +typhair +twelves +twehous +tuxhorn +turybury +turro +turne +turnblom +turkus +turks +turbin +turbes +tunick +tumpkin +tuholski +tuggie +tufnell +tubertini +tubaugh +tsutsui +tsuha +tsuda +tsinnie +trupp +trupiano +trupia +truner +trundle +trumm +trullinger +truell +trucco +trowers +trover +trosien +tronnes +trompeter +tromp +trolio +troendle +trobaugh +triska +trimarco +trifiletti +tridle +tricoche +tresvant +trest +tresler +tresca +tremont +tremayne +treinen +treichler +treglia +treamer +traxson +traugh +trasher +trapasso +trant +trancoso +traister +trailor +trageser +traficante +trac +toya +towson +tovrea +totherow +tote +tortorelli +torri +tornabene +torigian +torello +toppa +topor +toothill +toop +tonsil +tomsich +tommie +tomlison +tolmich +tollner +tollefsrud +toledano +tolayo +toenges +toefield +tock +tobiasz +tobery +tobert +toban +toback +tjarks +tiznado +titlow +tishler +tirabassi +tippet +tinkey +timson +timperman +timmis +timmermans +timme +timberman +tikkanen +tietze +tierman +tiberi +thuringer +thul +thu +thro +thornwell +thomlison +thomlinson +thomassen +thimmes +thilking +thierman +thielemann +thiboutot +thibideau +theresa +theard +thavichith +thaut +tezak +tetzloff +teto +tetlow +tessler +tesseyman +teskey +tes +terzian +terwillegar +tervo +terronez +ternasky +termini +terboss +teramoto +tepley +tenuta +tenen +tellio +tellefson +telecky +tekell +tefertiller +teece +tedesko +tederous +tebeau +tear +teahan +tazewell +tazelaar +tavano +tatsapaugh +tatlock +tataris +tassinari +tassie +tarvis +tarkey +tarangelo +tappa +tanna +tanikella +tamblyn +tamaro +talyor +tallas +talayumptewa +talaska +taj +tagliarini +tagata +taflinger +taddonio +tacderan +tablang +tabisula +tabicas +tabar +szwed +szumski +szumigala +szollosi +szczesny +sypniewski +syon +sylvan +syal +swor +swoopes +swoap +swire +swimmer +swiler +swida +sweezer +sweep +sweeley +swede +swearengen +sweadner +swartzwelder +swanhart +sveen +svay +sutyak +sutten +sutler +suski +surprise +supernault +suozzo +suns +sunder +sumney +summarell +sumera +sulzbach +sulfridge +sukhram +suk +suitor +sughroue +sugahara +sudlow +sudan +sudak +subido +style +stweart +sturz +sturdy +sturchio +stulce +stukenborg +stuckemeyer +stsauveur +stroll +strohmeier +strissel +strimple +stremmel +streczywilk +strawhorn +stratz +stratos +straton +strassner +strama +strada +stoss +storti +stomberg +stolze +stoliker +stoler +stolberg +stolarik +stohlton +stofko +stofflet +stoff +stoesser +stoeber +stodden +stobierski +stobbs +stjohns +stirrup +stirman +stinehelfer +stimmell +stimits +stigger +stiers +stieff +stidam +stewarts +stevinson +stevey +sterett +ster +steppello +stepnoski +stentzel +stencil +stencel +stempien +steketee +steinbruckner +steinborn +steigman +steiber +stegent +steffani +steerman +steenken +steenhard +steedman +steckley +stealey +stayrook +stavnes +stauss +stash +stary +stare +stant +stanfa +standfield +standberry +standage +stanco +stanage +stampe +stamdifer +stalworth +stalma +staires +staines +staine +stahlberg +stadden +staberg +stabel +spurgers +spruce +sprinkel +springman +spriggle +sporleder +sporcic +spontak +sponholz +spohr +spittle +spiry +spiece +spicuzza +sperlich +sperdute +sperazza +spelts +speares +speakes +sparhawk +spaniel +spaar +soyars +soverns +southam +sour +souphom +soun +soula +sossamon +sosh +sosby +sorsby +soroka +soricelli +sorgi +sorbera +soplop +soohoo +sonoda +sonny +sonneborn +somodi +sommese +solman +sollie +solla +solina +soliani +soley +solecki +solages +sohre +soenksen +sodeman +sobiech +soberanis +snobeck +snerling +sneider +snaza +smolic +smigel +smigaj +smiechowski +smida +smerkar +smeby +slothower +slotemaker +slodysko +slivka +slimmer +slight +slifko +slayter +slawski +slauson +slatten +slain +skultety +skrip +skowyra +skorupa +skordahl +skomsky +skoff +sklenar +skeldon +skeesick +skea +skagen +sjostrand +sixtos +sivyer +siverson +siverling +sivan +siva +sitzler +sither +siskind +siske +siron +siregar +sirbaugh +sirak +siptak +sinstack +sins +siniscalchi +singlton +sinden +sinagra +sina +simpon +simmoneau +simler +simkulet +simi +simeona +simens +silverstone +silverness +silsbee +sillas +sileo +silbert +sikula +siglin +sigley +sigafus +siew +sietsma +sierras +siembida +sieker +siedlik +sidur +sidell +siddoway +sibille +sibilia +sibbald +shusta +shuskey +shurts +shryack +shroll +showell +shove +shoulars +shortino +shopp +shmidt +shiu +shirar +shinners +shingles +shinabery +shimko +shibles +shertzer +sherrin +sherril +shellhamer +shellhaas +sheldrup +sheladia +shehab +sheff +sheck +shearman +sheaff +shauer +shatswell +shaske +sharick +shappard +shallcross +shala +shaklee +shakespear +shafe +shady +shadwell +shacklett +seymor +settlemire +setting +sether +sesma +sesareo +seryak +serven +sers +serbus +serb +seppi +sephus +sentinella +sensel +senf +senato +sempek +semidey +semasko +selz +seltz +selmer +selitto +selim +seiser +seikel +seigle +seid +segouia +segner +segerson +segala +sefcik +seeholzer +seegert +sedita +sedenko +sedar +secondo +seckinger +sebald +seba +seahorn +seabright +scotty +scothorn +scordato +scoma +scobie +scipione +sciara +schwieterman +schwendemann +schwede +schwartzbach +schwarcz +schwalen +schutzman +schunemann +schulweis +schul +schuffert +schuckers +schrull +schrubbe +schreyer +schreckhise +schreader +schoonhoven +schoolman +schol +schoettmer +schoepf +schoenle +schoenecker +schobert +schnyer +schnoke +schnipper +schneiter +schneekloth +schnapp +schmits +schmelzle +schmelz +schmeisser +schmeiser +schmahl +schlotzhauer +schlott +schlossberg +schlipf +schlicker +schleuder +schleimer +schlauch +schlau +schlaefer +schiesser +schieler +schied +schie +scheuvront +scheumann +scherz +scheperle +schenewerk +schemm +schellenger +schaupp +schauf +schaudel +schau +schatzberg +scharr +schappert +schapp +schamel +schallhorn +schaefers +schadt +schadel +schackow +schabowski +schabes +schabert +schab +schaab +scavotto +scarver +scarsella +scarbro +scampoli +scammon +scallon +scalley +scale +scafuri +scadden +scacco +sawchuk +saviano +saverchenko +savelli +savarino +satsky +satoe +sarwinski +sartorio +sartorelli +sarria +saro +sarna +sarkin +sarisky +sario +sarazin +sara +sapia +santmyer +santmier +santillana +santanna +santacroce +sansouci +sannes +sanez +sandvig +sandino +sandella +sanburg +samy +sammer +samit +salvucci +salvey +salvatori +salvant +salvage +salts +salton +saltarelli +salt +salome +sallade +saletta +salehi +saleeby +salameh +salama +salaiz +salafia +sakry +sako +sakash +saitta +sahu +sahara +saguil +sagrera +saglimben +sagi +saggio +sagen +safranek +safko +saeli +sadar +sacre +saccardi +saborido +sabins +sabet +sabbah +saale +rynne +rynders +rylands +rykowski +ruzbasan +ruwe +rutiaga +ruthledge +rutecki +rusu +russler +rurup +ruozzo +ruot +runels +rumphol +rumpel +rumpca +rullo +ruisi +ruic +ruhle +ruffaner +rufer +ruetz +ruesink +ruehle +ruedy +ruden +rubulcaba +rua +roya +rowald +rovner +rouselle +roura +roulston +rougeaux +rotty +rothery +rotert +rossler +roskowinski +rosiak +rosh +rosenstock +roselius +roscigno +rosaro +rosada +roperto +ropers +rookwood +rongo +rondinelli +ronda +ronchetti +romrell +rollinger +rola +rokos +rohwer +rohrscheib +rohlf +rogal +rogacion +roeschley +roers +roemen +roelofs +roekle +roehrich +rodriguel +rodges +rodeen +roddey +roddam +rocquemore +rockers +roccia +robishaw +robida +robichau +robertshaw +roberton +roberta +roberg +rob +roary +rizzuti +rizal +riveros +rittenour +risper +rippin +ripp +riola +riogas +rinner +ringus +ringhand +rinehardt +rinderer +rigotti +righetti +riggi +riggans +rigazio +rigatti +rifenburg +rieu +riehm +riegler +riech +riebau +ridgel +ridens +ridener +riddel +rickner +richardt +ricciardone +rhynard +rhyan +rhoderick +rho +rheinschmidt +rezak +reusing +rettkowski +retterath +retta +reshid +reppe +repke +reos +reome +rensen +renschler +renova +renollet +renison +reninger +rengers +rengel +renart +rena +relihan +reisen +reiniger +reindel +reil +reier +reh +reggio +regener +reekers +reeger +redmann +reddinger +redcay +reckling +rebert +reategui +reagin +reagen +readnour +razzano +raynolds +rayer +raybould +rawdon +ravotta +ravo +ravitz +ravert +rathert +raterman +ratel +raque +rapko +ransone +ransburg +rangnow +randon +rancifer +ramotar +ramones +ramone +ramire +ramin +rameres +rakoski +rajala +raithel +rainie +rainge +rainbow +raigoza +rahming +ragazzo +radomski +radish +radilla +raden +radde +racano +rabine +rabil +rabell +rabasca +quiterio +quinzi +quink +quinci +quilliams +quiller +quider +quenneville +quelch +queeley +quear +quattro +quastad +quaglieri +pyscher +pust +purtle +purtill +purdin +puorto +punja +pullem +pulfer +puleio +pujia +puetz +puehler +puebla +ptomey +przewozman +prysock +pruter +prunier +pruess +prudom +pruchnik +proveaux +prophit +promise +procknow +proby +pro +prive +preziosi +preza +prem +preite +preisser +pregler +precella +prazma +prats +prator +prakash +prahm +prader +pozniak +poxon +powledge +pouge +pott +postlewaite +posthumus +posnick +posley +poskey +porro +poreda +poppema +popat +pondexter +ponciano +pompilio +pommer +polosky +pollom +pollo +pollica +pollaro +polizio +polek +polack +polacek +poirot +poertner +poduska +pockrus +pochintesta +pluym +pluhar +pluck +pliner +pliml +plese +pleasent +playle +plasky +plane +plack +pizani +pitz +pittari +pitruzzello +pistorius +pistilli +pisha +piselli +pisco +piros +pirone +pirolli +pirman +pirkl +pirie +pique +pintado +pinkey +pingrey +pinger +pinelo +pilsner +pilley +pilgreen +piles +pila +pignatello +pietig +pierrott +pierron +pierceall +pieratt +pienta +piekos +piechota +picquet +pickar +picerno +piceno +phyfiher +phorng +phearsdorf +pharmes +phariss +pfuhl +pfenning +pezzetti +pevy +petzoldt +pettrey +pettas +petta +petross +petrochello +petriello +petrelli +petch +pestoni +pestano +pesick +pesavento +perzanowski +perrien +perrenoud +perque +peroff +perlas +perkerson +perisho +perich +perfect +peregrino +peregoy +perch +pequeno +penza +pensis +penquite +peniston +penister +pendola +pendergraph +pelle +pelczar +pelch +pela +pehler +pegoda +peelle +peeling +pedroni +pedlar +pedder +pecoraino +peckman +pechal +pebsworth +peasnall +peasant +pead +peacemaker +paytes +paysen +payn +pavletic +pavlat +pavlas +pavese +paup +paulis +patrice +patocka +pat +pastorino +pascocello +parthemer +parreira +parido +paretti +pardun +parchment +papstein +papps +papetti +papakostas +pantoni +panik +panfilov +panfil +pana +pampusch +pamperin +palmitessa +palmero +pallett +palilla +palese +palesano +palange +pagenkopf +padon +padmanabhan +padinha +packen +pacitto +pacchiana +pabich +oza +oyabu +overdorf +ourada +otukolo +otterbine +ottalagano +oto +other +otano +osting +ostiguy +osterholt +osley +oscarson +osaile +ortz +ortolano +ortea +orte +ortaga +orszulak +orser +orihuela +orejel +ordorica +ording +ordal +orbin +oransky +oppel +onsgard +ondrick +olsin +ollmann +olives +olavarria +olano +olafson +okuno +okuniewski +okuhara +okrent +okoniewski +okeke +ohs +ohotnicky +ohno +ohlund +ohlendorf +ohaire +ogaz +ogando +offield +odiorne +oclair +ockenfels +ochocki +ocamb +ocallahan +obleton +oberly +oberhelman +oberbeck +nylin +nydick +nwachukwu +nutzmann +nuque +nunz +nulle +nuffer +notti +nothum +nothnagel +notah +nossett +nose +nosbisch +norrix +norlien +norkin +nordon +nordmeyer +norat +nooe +nokleby +nofziger +noens +nivison +niu +nittler +nissalke +nishikawa +ninness +nin +nimon +nifong +niewieroski +nietzer +niemela +nicolette +nicoletta +nico +nickolas +nickless +nicklaw +niccoli +nibbs +neyland +newmark +newey +newbauer +nevwirth +neverman +neuser +neumaier +neufville +netzley +netzel +nettle +neiswonger +neiswender +neilan +neidhardt +neesmith +nebgen +navia +nate +nasuti +nasso +nassimi +nashe +nases +naro +nardo +narasimhan +naqvi +nanka +naman +nahrstedt +nagura +nagarajan +nadile +nabours +nabers +mysinger +mynear +muzzarelli +muthig +mustian +muskus +muskelly +musi +mushtaq +musca +murzynski +murzyn +murrillo +murello +murdy +murakawa +munsinger +munnell +munks +munkberg +mundorf +mummey +mullick +mulkin +mulhollen +mulgrew +mulderig +mulac +muehl +muddiman +muckerman +muckenthaler +much +mucciolo +mruczek +mrazek +mowat +moure +mould +motts +mosure +mossor +mossberg +mosler +mosha +moscrip +moschetti +mosbarger +morua +morss +morron +morrall +moroni +morioka +moricca +morgensen +morganson +moreshead +morely +morch +moras +morar +moranville +moralas +morak +moradel +moothart +moonen +monzingo +montpetit +montjoy +monteagudo +monoz +mongrain +mongon +mondejar +monas +monachino +momplaisir +momin +moment +molpus +molony +molner +molleda +molinski +molinelli +molfetta +molenda +molchan +mohseni +mogg +moerke +moenius +moehlman +modugno +modi +modest +moder +moch +moat +miyamura +mittlestadt +mittelstedt +mittelman +mitschelen +mitro +mitchan +misty +missey +misenhimer +mirra +mirjah +mirante +miosek +minteer +minrod +minning +minney +minnema +minium +minihane +minicucci +minecci +minchey +milota +millson +milloway +millonzi +millier +milley +millam +milillo +milbrath +mikowski +mikola +mikler +mihelic +mihaila +miesen +mierzejewski +mickels +michienzi +michalke +miazga +mezydlo +mezick +meynard +meylor +mexicano +metsker +metrick +meter +mestad +meske +mertins +merta +mersinger +merschman +merna +merila +meridieth +mergen +merel +menzella +menze +mentnech +menson +mensick +mennig +mendillo +memos +melroy +melochick +mells +mellgren +meline +melich +melena +melchiori +melching +melahn +meisler +meinerding +meilleur +meidlinger +mehner +megrabyan +megee +meeuwsen +medlar +medick +medema +mechler +mechanic +meadowcroft +mcpike +mcpeake +mcnell +mcneary +mcmutry +mcmeekin +mcmannus +mcluen +mclouth +mclerran +mcleoud +mclagan +mckone +mckneely +mckissic +mckinnell +mckillips +mckibbon +mckenty +mckennan +mckeeman +mckasson +mcinturf +mcinerny +mchan +mcgurn +mcguirl +mcgue +mcgrain +mcgonnell +mcglumphy +mcglauflin +mcginity +mcgibboney +mcgeough +mcgauley +mcgarvie +mcfatter +mcentegart +mcenroe +mcelmury +mcelhinny +mcdonnel +mcdoniel +mcdoe +mcdermond +mcdearmon +mcdearman +mcday +mcdannald +mcdaid +mccurren +mccrosky +mccrane +mccraig +mccooey +mccoo +mccolpin +mccolloch +mcclucas +mcclester +mcclement +mcclamroch +mcclammy +mcclallen +mccarte +mccaie +mccaddon +mcanelly +mcalmond +mcalary +mazzini +mazzarino +mazzara +mazzanti +mazurk +mazor +mayerle +mayenschein +mayard +mayans +maxedon +mavromatis +mavins +maves +mausser +maulsby +matya +matuke +matto +mattler +mattiace +matkowski +mathern +matero +matchette +matayoshi +matar +mastine +massing +massimo +masseria +massenberg +massard +masoud +masotti +maslak +masey +masella +mascarena +mascall +marzella +maryott +marwick +marugg +martt +martinis +martian +martha +marstaller +marsingill +marsicek +marotto +market +markegard +marke +marinella +marien +margison +margheim +margason +margaris +margaret +marett +marentes +marcott +marcon +marchena +marcellino +mapston +mantione +mantanona +mansouri +manoi +mankus +mankins +manin +manikas +mangieri +manfredini +mane +mandt +mandolini +mandley +mancina +manas +maltsberger +maltais +malmin +mallis +mallicoat +malleck +mallach +malkowski +malkani +malito +malensek +malandra +malander +makos +makanani +maille +mail +maidens +maid +mahowald +mahala +mahajan +magnotta +maggiore +magel +maestos +maerz +maedche +madise +madi +mades +maddaloni +madayag +madaras +macnair +mackinlay +mackesy +machon +machia +machey +machesky +machacek +maceyak +macchio +macbride +mabray +maasch +lyseski +lykken +luzania +luxenberg +lutrell +lupkes +lupino +lupardus +lunnon +lunghofer +lundvall +lundby +lundborg +lulow +lukman +lukin +lukaszewski +lukacs +lugones +luger +lueder +ludeke +lucek +lucchetti +lucchese +lozowski +lozaro +loyer +lowthert +lowdermilk +lovitz +lovinggood +lovenduski +loura +loung +lounder +louks +loughry +loudermill +lotta +lostetter +loskot +losiewski +lorman +loren +lorelli +lorange +lonsinger +longinotti +longhurst +lomedico +lola +lohwasser +lohn +lohden +lograsso +logie +loftman +loften +lofaso +loewer +loehrs +locy +loconte +lockerman +lockerby +locken +lobaton +loatman +lleras +lizak +livingood +litwiler +litvin +littledave +lites +lisee +lipszyc +lippy +lionello +linsday +linnear +linklater +lingbeck +lindie +lindenfelser +lindenberger +linarez +limber +lily +lightning +liffick +lieto +liestman +liepins +lieng +liebross +licciardi +licavoli +libbee +lhuillier +lhommedieu +leyra +lewman +levreault +levitre +levings +levick +levecke +levanger +leval +leva +leuthold +leuenthal +letze +letterlough +leski +lerwill +lertora +leppla +leopoldo +leonides +leonardis +lenoue +lenoch +lengerich +lemont +lemmert +lemery +lemaitre +lella +leko +leithauser +leisher +leise +leisch +leiendecker +leiber +leialoha +lehtomaki +lehigh +leggs +legate +leflar +lefeber +leezer +ledden +lecleir +lechliter +lebrane +lebarron +leason +leapheart +leadman +lazarte +lawin +lavole +lavesque +laverdure +lautner +lauthern +laurila +laurendeau +launderville +laumeyer +latina +laszlo +lassan +larzelere +larzazs +larubbio +larriuz +larew +laremont +laredo +lardizabal +larance +lappa +lapolla +lapatra +lapaglia +lantieri +lannan +lann +langwith +langolf +langloss +langlo +langholz +langhart +langfitt +langendorf +langenbach +langbehn +lanehart +landoni +landherr +landberg +landazuri +lancey +lamus +lamunyon +lampitt +lampiasi +lammon +lamme +lamirand +lambes +lamarta +lamarra +lalim +lalande +laky +laitila +laidler +laich +lahue +lahtinen +lagrasse +lagrand +lagle +lagerstrom +lagerberg +laferney +lacson +lachenauer +lablue +labean +lab +kuzara +kuza +kuy +kutchera +kustra +kurtyka +kurschner +kurka +kunstlinger +kunka +kunicki +kunda +kulling +kulla +kulbida +kuker +kujath +kujala +kuhta +kuhner +kuhle +kufalk +kuennen +kuen +kudley +kucharik +kuca +kubic +kryst +krysh +krumenauer +kruczek +kroschel +kronk +kroells +krivak +kristoff +kristin +kreuziger +kreitz +kreisberg +kreiman +kreighbaum +kreh +kreck +kraszewski +krason +krammes +krake +kozusko +kozola +kozikowski +kozielski +kowis +kowalske +kottman +kottler +kottenstette +kostelnick +kosmowski +koska +kosinar +kosik +kosanovic +kosanke +kortge +korsak +kornbau +kordas +korby +korbel +kopperman +koppenhaver +kopischke +koper +kopelman +kopel +kopas +kooser +koors +koor +koone +koogle +konzen +konieczka +kondracki +kondos +komatsu +kolo +kolarik +kolacki +kokesh +kohrt +kohrs +kogel +kofron +kofman +koewler +koetting +koes +koellner +koellmann +koczela +kocon +knoth +knollman +knoebel +knknown +knittle +kniphfer +knightly +kniffin +knaphus +knaak +kloth +klonoski +kloke +kloer +klinetob +kliger +klich +kleyman +klepchick +klemish +kleen +klebe +klakowicz +klaft +kithcart +kister +kisker +kishel +kishbaugh +kirt +kirouac +kirley +kirklen +kirkegaard +kirchen +kipka +kipfer +kinsinger +kiniry +kinikini +kingma +kinderknecht +kinahan +kimmes +kimak +killiany +killelea +kilkus +kilfoyle +kiflezghie +kiffer +kiesewetter +kienow +kieler +kiebler +kicks +kicker +kibel +kibe +kibbee +kiang +khounthavong +khatri +khamsyuorauon +kham +keye +keup +keto +ketch +kess +kerth +kero +kernell +kerkvliet +keomany +keomanivong +kennemur +kennel +kenndey +kendi +kempter +kempinski +kemna +kellan +keliikoa +keledjian +keithan +keisel +keib +kehs +kedley +keay +kearin +kawulok +kawai +kawaa +kava +kaunisto +kaumo +kauahi +kattner +katra +kastel +kastein +kassulke +kassman +kassing +kashani +kasch +karty +karstetter +karrenberg +karper +karow +karmo +karhoff +kardell +kardas +karapetian +kapper +kappen +kapichok +kanis +kaneakua +kanaris +kamuda +kamirez +kamat +kaloudis +kallberg +kallaher +kalkwarf +kalkman +kalk +kalisek +kalehuawehe +kalchik +kalbfleisch +kalberer +kalal +kala +kakimoto +kaing +kaigle +kahill +kahanaoi +kaemmerling +kadri +kadle +kading +kadi +kadar +kachmar +kachiroubas +kachelmeyer +kaase +juve +juul +justinger +jungwirth +jungman +jungck +julander +juenemann +jubie +joun +joswick +jossund +joss +jory +jonnson +jongsma +joliet +johngrass +jocoy +jing +jimerez +jimbo +jeudy +jerowski +jernstrom +jernstad +jernberg +jeoffroy +jentry +jennie +jeng +jenaye +jemerson +jeltema +jeanpaul +jeanmard +jax +javery +jaudon +jasperse +jasmer +jarred +jarrar +jargas +jardot +jardell +jaquay +jappa +janower +jankoski +janise +jandrey +jandl +jakubiak +jakobson +jakobsen +jahncke +jagers +jacobitz +jackon +izard +ivel +itzkowitz +itani +issacs +isome +isle +islar +isidro +isidoro +isch +irvan +irizary +irene +ipson +ip +ioele +interiano +insalaco +iniestra +ingargiola +impson +illiano +iller +illa +ilardi +iida +ihrke +igneri +igbal +igartua +iffland +idell +iberra +iba +ianacone +hysong +hyrkas +huzzard +huttle +husselbee +husseini +hupe +hunzeker +hunnicut +humprey +humbird +humason +hugle +hufana +huestis +huesing +huell +hudy +hudley +hudas +hudalla +hudack +huckfeldt +hubka +hubenthal +huante +hsing +hromek +hritz +hrdlicka +howzell +howles +howat +hovarter +houy +housler +houska +houseal +houlberg +hostert +hosman +hoscheid +horvers +hortin +hornish +hornbeak +hornaday +hoppman +hopfer +hoot +honts +honsberger +hons +honnen +honberger +honahnie +homma +homesley +holyoak +holweger +holubar +holtzer +holtrop +holtberg +holpp +holmquest +hollinghead +holje +holgerson +holabaugh +hoitt +hofford +hoffmaster +hoffine +hoffelt +hoes +hoellwarth +hoegh +hoegerl +hoeger +hodrick +hodgkiss +hodek +hockey +hobday +hlavacek +hlad +hitzeman +hitzel +hitsman +hissong +hissam +hiscock +hirz +hirshberg +hipkins +hinsch +hinken +hinckle +hinchliff +himmons +himmelwright +himmelspach +himebaugh +hilst +hilmes +hillsgrove +hillestad +hillesland +hillegass +hilfiger +hilado +highshaw +highers +higginbothan +higbie +hieronymus +hidy +hickory +hickernell +hibma +hibbets +heximer +hewgley +heutmaker +heuschkel +heupel +heumann +heuman +hetzer +hetherman +hesterman +hespe +hertweck +herson +herry +herrboldt +herms +hermosilla +herl +herbolsheimer +herbel +hera +heptinstall +heppler +heppell +henslin +henschen +hennington +hennagir +henkhaus +henken +henggeler +hempfling +hemmerling +hemish +hema +helveston +helsey +helscher +helo +heline +helfin +helder +heitner +heiple +heinzelman +heinricher +heines +heimsness +heiler +heidelburg +heiberg +hegner +hegler +hefferman +heffelbower +heebner +hediger +hedding +heckbert +hearnsberger +heaivilin +heagle +heafner +hazelrig +hayth +hayoz +haydu +haybarger +haya +havers +haverfield +hauze +haugabrook +haub +hathcoat +hasychak +hassin +hassey +hasenberg +hasek +harvat +haruta +hartvigsen +hartong +hartke +harre +harradon +harnisch +harmond +harmening +harlem +harkrader +harklerode +hargitt +hardon +hardgrave +hardester +harbeson +harben +hanrath +handville +handcock +hamza +hamson +hamming +hamic +hambley +halphen +halpain +halmes +hallaway +hallauer +half +haldiman +halbur +hakkila +hakimian +haimes +hahs +hagmann +hagglund +hagert +hagee +hafeman +haeber +haddan +hada +hackner +hackel +hacher +habisch +haarstad +haare +haaker +gyger +guzowski +guzi +guzalak +guyon +guyll +gutzmer +guttirez +gutt +gutierrex +gutierre +gut +gustis +gushwa +gurke +gurevich +gunyan +gumz +guisbert +guire +guintanilla +guimaraes +guillereault +guidos +guidera +guffin +guererro +guenthner +guedes +guareno +guardian +grussing +gruska +grudzien +growcock +grossenbacher +grosjean +groshans +grondahl +grollimund +groeneveld +groenendyk +grinnan +grindell +grindeland +grimaud +grigorov +griffard +grierson +grich +gribbins +gribbin +grever +gretter +grennon +grenfell +gremer +greising +greenhoward +gravitz +gravis +gravino +graubard +grates +granstrom +grannell +grandt +granat +grambling +gramajo +gralak +graise +grafe +grade +grad +gracy +goyco +goyal +govindeisami +govert +govero +gouras +goulbourne +goularte +gouker +gotwalt +gottshall +gottsch +gorum +gordo +gordils +gorbet +goonan +goombi +gooley +goolesby +goodlet +goodland +gomaz +golt +golombek +golom +golojuch +golightley +goldyn +goldkamp +goldfine +goldermann +goffinet +goetter +goethals +goerdt +goehl +goedken +goede +goedde +goeckel +godshall +godleski +godino +godine +godden +godar +gockley +gockel +gochnour +gobler +goard +gniewek +gnerre +gluszek +glunt +glotzbach +glory +glista +glisan +glende +glee +gleave +glaus +glau +glassing +gladhill +gizzo +giulian +gittins +girven +girt +girling +girardot +gipp +giovannini +gionet +gins +ginolfi +gimar +gilvin +gilliom +gilling +gillece +gilio +gildow +gilberg +gieser +gierisch +gielow +gieck +gica +gibboney +giarraputo +gianopoulos +giannecchini +giambruno +ghrist +ghiloni +geving +getto +gessford +gesner +gesick +gerstenkorn +gersbach +geroge +gerleman +gerl +gerkin +gerding +gerchak +georgiades +geoffroy +gentes +genre +genous +genge +geney +gendusa +gendel +gemma +gembler +gemaehlich +geldmacher +gehris +geffrard +geffken +geans +gavel +gavaldon +gaughran +gaud +gaucin +gauch +gattuso +gatliff +gather +gastonguay +gassen +gasior +garzia +gartz +gartley +garski +garramone +garoner +garone +garnow +garley +garibai +garguilo +garfunkel +gardley +gardecki +garcilazo +garbarini +garan +garafalo +gani +gandert +gampong +gamons +gamma +gambone +gambler +galves +galo +galm +galluccio +gallinari +gallentine +gallamore +galeotti +galella +gajica +gaisford +gaietto +gahlman +gahl +gaglia +gaffke +gaetz +gadwah +gabaree +gaar +fust +furutani +furner +furnace +furgison +furgeson +fundis +fullem +fullagar +fujisawa +fugit +fugh +fuemmeler +fuelling +fude +frusci +frosch +frontera +fronek +fritzman +fristoe +frishkorn +frilling +frigge +friels +friehe +friedline +fridlington +frezzo +frezza +fresta +freise +freiman +freidhof +freiberger +freetage +freet +freemyer +fredin +fredenberg +frayne +fraughton +franzel +frankie +frankenstein +frankenberg +francher +franch +francesconi +franc +fraize +fragmin +frabott +foxman +fouty +fournet +foulcard +fouhy +fougere +fotopoulos +forsmark +fornell +form +forline +forguson +fontus +fontanella +folkner +fok +foggie +fogelman +flumerfelt +fluegge +fluegel +fluck +floe +flocco +flitsch +flirt +flinders +fletchen +flechsig +flebbe +flathers +flatau +flamer +flaharty +fladger +fitten +fitchpatrick +fissori +fissel +fischler +fioritto +fiori +fiorentini +fiorella +finnemore +finkelson +fingleton +fingerhut +finazzo +filmer +fillip +fillingham +filipek +filan +figurski +figueron +figueiras +figley +fiedor +ficker +fickas +fevig +feutz +fetner +fertal +ferraiolo +fernsler +fernet +fernatt +fergusen +ferg +feraco +fenny +fengler +felsted +fellner +fellin +fellenz +felkner +felkel +feliu +feleppa +felderman +felde +feigel +feickert +feibusch +fedorek +fedora +federgreen +fedalen +feck +febre +fearnow +feagler +favorito +faville +favalora +fauls +faudree +fasulo +fassino +farson +farlin +faretra +farenbaugh +farella +faraone +faragoza +fanucchi +fantroy +fanny +fangman +famiglietti +faltus +faltin +falt +falley +falldorf +falick +fala +fahrney +faggs +fafard +faes +fadely +fadel +facchine +fabionar +ezagui +evoy +evilsizer +evick +eversoll +eversman +everley +evelo +euvrard +eun +etkin +ethen +estrela +esteb +estain +estacion +esquerra +esposto +espert +eskra +eskin +eskenazi +eshom +eshenbrenner +esera +escobio +eschief +eschenbrenner +erschen +erlewine +erdner +erck +erceg +erbach +epolito +ephriam +enwright +enwall +entrikin +entress +entler +enstad +engwall +engroff +englemann +engelson +enderlin +enamorado +emme +emlay +emke +emerton +embertson +elworthy +elwick +elward +eloy +ellyson +ellstrom +ellingboe +elliam +elifritz +elgart +elerick +eitzen +eismann +eisentrout +eischeid +eirich +eikner +eickhorst +ehrler +ehrle +eglinton +egerer +egelhoff +edmunson +ecord +eckrich +eckland +echevaria +ebersold +eberenz +ebener +ebadi +ealand +eaks +eagleston +eaglen +eagin +dyals +dwelley +duy +duva +dutter +dutko +duster +duskin +dusel +durrenberger +durke +durian +dupay +duntley +dunsford +dundee +dulemba +dugi +dufficy +duensing +dueno +dueitt +duclo +dubrock +dubitsky +drumgo +drozdowicz +dromgoole +drobot +drivas +drinkwine +drewing +dressman +dreessen +drainville +dragna +draffin +dowgiallo +dovey +dougher +dottin +dossous +dossie +dose +doronio +dorning +dorko +dorion +dorinirl +doring +doorn +donohoo +donnally +donkin +donez +donerson +dondlinger +donchez +donaway +donatien +donath +dommel +domine +domin +domiano +domhoff +domek +doller +dolinsky +dolberry +doker +doil +doidge +dohman +doeden +dodridge +dodgson +dobkowski +dobie +dobes +dobert +diwan +ditomasso +distaffen +distad +dispenza +disorbo +diskind +diserens +discipio +dirico +dire +dirago +diprima +dinwoodie +dinn +dinkens +dinius +dingeldein +dimon +dimitt +dimitriadis +dilliard +dilick +dilauro +dilallo +dilalla +dihel +digilio +difonzo +difeo +dietze +dietl +diesi +diesel +dieppa +dienes +diemert +diegel +dieffenbacher +diec +dickhoff +dickensheets +dibonaventura +dibblee +dibartolo +dibacco +dhondt +dewer +develbiss +devazier +devara +deuser +deur +deuell +detzel +dettling +detro +destine +destefanis +desorcy +desomma +deslandes +desisto +desiga +deshler +deshaw +desgroseillie +desaulniers +derwitsch +derrig +derouchie +dermady +derider +derfus +derbes +depperschmidt +depoyster +depaula +dense +dennin +deniro +denio +dengel +deneen +dempsy +demmy +demmert +demichelis +demedeiros +dembroski +dembitzer +demarse +demaranville +demagistris +deluz +delson +delrossi +delrie +delossanto +delos +delmolino +dellis +dellarocco +dellano +della +delisser +delille +deleston +delerme +deleone +delehanty +delbalso +delavina +delauter +delashmit +dekalb +deguire +degross +degroote +degrasse +degrange +degrace +degasperis +deffibaugh +defaber +decrosta +decristoforo +dechert +decelle +decapua +decapite +decandia +debuse +debruler +deblauw +debella +debeer +dayrit +davidian +davick +davich +davia +daversa +davern +davault +dautrich +dausch +dathe +dastrup +dassow +darras +darnold +darks +dargis +dargatz +darbouze +dannenfelser +dannard +dampf +dalzen +dalphonse +dalluge +dalhover +daivs +dainack +daher +dagle +daghita +dagdag +dafonseca +daffern +daehler +dadson +czuba +czlapinski +czarnik +czap +cynova +cwiklinski +cuzco +cutno +curt +curbow +cunninghan +cunis +cuningham +cunico +culmer +cuhel +cuestas +cuebas +cuchares +cubr +csizmadia +crumpacker +cruell +crousore +crosten +crosman +crooked +cromuel +cromey +crockarell +croan +crissler +crispen +crismon +crise +criscillis +crippin +crilly +cresta +cregar +cragun +coye +cowing +cower +coverstone +coverdell +couty +coutant +courtnage +courteau +couper +countee +coultas +coughran +cottew +cotler +cotelesse +costen +cossin +coskrey +cosen +cosden +corvera +cortis +corsello +corrion +corrigeux +correiro +coro +cornetta +corneil +corlee +corin +corgan +corfman +corell +cordovi +cordia +cordas +corcino +corchero +coral +coppolino +coppernoll +coppens +coote +cooperstein +cooperrider +conterras +consolazio +cons +connin +connerley +conkin +congress +concienne +conaghan +comrey +cominsky +comella +comee +come +combe +coln +collums +collamore +colicchio +colee +colding +colder +colbenson +colagiovanni +cokely +coin +codde +cobrin +coak +cluxton +cluesman +clouston +closser +clopp +cliatt +clendennen +clearman +clattenburg +clarks +clapsaddle +cius +cira +ciolli +cinotti +cimko +cima +cienega +cicatello +cicale +ciarlante +cianfrini +cianciulli +churley +churches +chuong +chukes +christou +christescu +christe +chrismon +chrisler +choun +chobot +chisem +chiong +chimera +chila +chicca +chiarito +chhun +chhum +chhim +chestang +chesler +cherubin +chernosky +cherebin +chepiga +chellis +chell +cheda +checca +cheater +cheatem +chaulk +chaudhuri +chauca +chatcho +chartraw +charping +charnley +charm +charlson +charbonneaux +charan +chapp +chango +chanez +chancer +chamnanphony +chalepah +chaiken +chaddlesone +chaconas +chabaud +cestia +cessor +cervetti +cerveny +cerise +cerecer +cerasoli +cera +centini +cenci +cembura +celli +cederstrom +cdebaca +cayo +cawthron +caviggia +cavers +caveney +causley +caughlin +cathie +catan +catala +castrogiovann +castleton +castilo +castillio +castellaw +castellari +castejon +caspersen +casivant +cashio +cascioli +casciano +casamento +casadei +carwin +carvin +carucci +cartin +cartez +carston +carrio +carriaga +carretino +carotenuto +carosiello +carolfi +carnathan +carnalla +carnagey +carlill +carinio +cariker +caride +care +cardero +cardenal +carasquillo +carabez +capwell +capurro +capulong +cappucci +cappetta +cappa +capouch +caporali +caponigro +capilla +capata +capan +canzoneri +cantine +cantarano +cannellos +cannard +cannada +canlas +cangey +canaan +campoy +campany +campainha +cambi +camba +camastro +camano +calrk +callin +callari +calicutt +calemine +caleb +caldon +caldas +cajas +cadelina +cacal +cabriales +cables +bytheway +byland +byes +byan +buzick +buziak +buzhardt +butzlaff +buttolph +butta +butron +butorac +butaud +butac +busuttil +busque +busing +busboom +burwood +burright +burri +burrall +burness +burlington +burlin +burkham +burick +burich +burgner +burdex +burdell +burde +burba +buol +bundi +bulick +bulgin +bukovsky +bukovac +bujak +bugett +buffo +bueschel +bueckers +budnik +buckey +buckel +buchko +buchinski +buchana +buchaman +bucek +buba +bryans +brustkern +brussel +brusseau +bruntz +brunscheen +brunken +brumbach +bruess +brueckman +brueck +brucken +brozena +brozek +brownley +browers +brosman +brosch +broody +brood +bronzo +bronn +bromwell +brome +bromagen +broll +brofman +broekemeier +brodi +brixner +brisban +brinkmeier +bringham +bridgforth +bridgette +breznak +brewbaker +breitweiser +breiten +breitbarth +brehaut +breedan +breech +bree +bredernitz +brechner +brechbiel +breashears +brazinski +brazille +bratz +bratu +bratsch +bras +branting +brannin +bramsen +brailford +bragas +bradney +bradner +bradigan +bradica +brad +brabston +bozwell +boys +boyn +boyar +boyance +boxton +bowering +bowar +bournazian +bourgue +bourgoine +bourdage +boulier +boulds +boulding +bouch +bottum +bottorf +botero +bossler +bosshardt +bossart +bosman +borzillo +borstad +borsos +borsellino +borrayo +borowiak +borio +borgos +borglum +borghoff +boreland +bordeleau +borchelt +boorman +boole +bookwalter +bookhart +bonventre +bonucchi +bonnema +bongard +bonardi +bonadio +bomstad +bombaci +bolus +bolognese +bolnick +bolebruch +boldrin +bolder +boje +boho +bohmker +bogosh +bognar +bogin +bogatitus +bogaert +boga +boehmke +boeh +bodway +bodemann +bockhorst +bochner +bocek +boblitt +bobbit +boatfield +boast +boardley +bo +blumhardt +blower +blondell +bloemer +bloczynski +blint +blenden +blend +blem +bleininger +bleile +blehm +blechman +bleak +blattler +blattel +blatherwick +blatchley +blasing +blasen +blandin +blaire +blad +blackler +bizzle +bison +bisogno +bisking +bishopp +bischke +biscaro +bisarra +birton +birrueta +birrell +birklid +binkerd +binetti +binegar +bindrup +billerbeck +bilka +biley +bilecki +biglin +bievenue +bierwagen +biernat +bienvenue +bielik +biedrzycki +bideaux +bidding +bickman +biber +bibel +biancardi +bialy +bialke +bialecki +bhattacharya +bezak +bevilaqua +beuth +beuter +beutel +beucler +betties +betteridge +betschart +betran +bethley +beteta +beswick +bessmer +bessemer +besherse +beserra +berver +bertuzzi +bertke +berthelsen +berthelette +bertagna +bersch +berrio +bernoski +bernatowicz +bernardy +berling +berl +bergmeier +bergland +bergfield +bergesen +bergem +bergantzel +bergamo +berdecia +berardo +berardino +bequillard +benzinger +benyamin +bentzen +bennice +benke +benet +beneker +benedum +benedick +bend +bencosme +bemrose +bemiller +bemer +belzung +belmarez +bellina +bellendir +bellemare +bellantuono +bellanca +belkin +belinski +belcourt +bejaran +behl +beeker +beeghly +bedney +bedker +bedeau +beddome +beddoe +becvar +beccaria +beaz +beaushaw +beaulac +beatley +beardon +beachem +beachel +bazydlo +baydal +baxi +bauserman +baudler +batzli +battino +battee +batley +batesole +batcher +basurto +basu +bastianelli +bassage +basner +bashford +basher +bashara +basha +baselice +bartosiewicz +bartolomucci +bartnick +bartholic +barthe +bartelson +barsuhn +barson +barries +barricelli +barrena +barredo +barraz +barrale +baroldy +barne +barmettler +barjas +baris +bareis +bardach +barcroft +barcello +barbuto +barbrick +barbo +barbish +barbaria +baras +baragona +baquet +banwell +banowetz +bandle +bambhrolia +balthazar +balson +balliett +ballestas +balin +balfany +balette +baldrige +baldenegro +baldassara +baldasaro +balcorta +balckwell +balcitis +balasco +baka +baish +bainum +bailin +baile +bahlmann +baher +bagoyo +baggette +bafford +baddley +badanguio +badamo +badame +baczewski +bacorn +bacolor +bacigalupi +bachtold +bacha +babick +azzano +azua +azhocar +ayre +aydt +aydlett +axsom +awada +averbach +avenoso +auzston +auyong +autaubo +austad +aus +aurora +aultz +aulds +auldridge +aul +auge +auel +audirsch +audain +auchmoody +aubertine +auber +astry +asquith +asp +ashdown +asen +aselage +ascensio +asam +asad +artuso +artinger +arritola +arre +arraiol +arra +arouri +arnzen +arntson +arnstein +arnoldy +arnhart +arnet +armentor +armel +arganbright +argall +argabright +arenstam +ardinger +arcuo +arambulo +aramboles +arabian +appelt +appelgren +apodoca +ape +anzai +anttila +antoniou +antoniotti +antonakos +antell +antee +antaya +anschutz +ano +annon +anne +annarummo +anick +angelovich +anes +androes +andrle +andreoli +andreassen +anderl +ancira +anastasi +anastacio +analla +ana +amunrud +amparan +amory +amores +amodei +amdahl +amazan +alway +alvira +aluise +altomonte +altidor +altadonna +alstott +alsina +alshouse +alpizar +alonge +almestica +almaras +almand +allwardt +allum +allgier +allerman +alkbsh +alier +aliano +alfson +alfero +alexender +alessandro +alesci +aldas +aldaba +alcide +alby +albelo +albares +albair +albach +alamin +alagna +akuna +akright +akim +akes +aken +akbari +akau +aitkins +aita +airola +aines +aimone +ailts +ahrent +ahne +ahlman +ahlin +aguire +agor +agner +agerter +age +agcaoili +afzal +afshari +affleck +aduddell +adu +adolfo +adolf +adjei +adham +aderholdt +adens +adee +adauto +acocella +ackroyd +ackers +acken +ack +achter +acheampong +aceret +accornero +abts +abruzzino +abrecht +abramov +aboud +abo +abes +abed +abby +aamot +aalbers +zwolensky +zwiener +zwanzig +zvorsky +zutter +zurowski +zupfer +zunker +zumbach +zubik +zubiate +zottola +zoss +zorman +zonker +zomer +zollo +zolezzi +znidarsic +zmijewski +zmich +zlaten +zisk +zinter +zingler +zindel +zimlich +zillman +zilliox +zigich +ziesemer +zielonka +ziebart +zia +zhuang +zeyer +zerkle +zepf +zenisek +zempel +zemaitis +zeltner +zellman +zelasco +zeisler +zeinert +zeier +zegarra +zeeman +zedaker +zecher +zeagler +zbinden +zaunbrecher +zarlengo +zannino +zanni +zangara +zanetti +zanes +zanderigo +zanayed +zambito +zalusky +zakutney +zaiss +zahar +zagrodnik +zaeske +zadroga +zadeh +zacek +yzaquirre +yuro +yupe +yunt +yue +youns +youngerman +youkhana +yoshizumi +yoshiyama +yoshikawa +yoshihara +yore +yoneda +yoh +yepsen +yepiz +yentzer +yelin +yedid +yeddo +yeboah +yeah +yauck +yattaw +yarrow +yarosh +yarn +yanuaria +yanko +yampolsky +yamin +yamagata +yakow +yaegle +yacono +yacko +xayavong +wythe +wyrich +wydeven +wyandt +wurtzel +wurdeman +wunner +wulffraat +wujcik +wry +wrighton +wreath +wraight +wragge +woznick +woten +wormuth +woofter +woodmore +woode +womeldorff +wolvin +wolman +wolgast +wolfgramm +wojtas +wojenski +wohletz +woetzel +woelke +woelk +woehrle +wittlinger +wittke +witthuhn +witthoft +wittekind +witkus +witbeck +wist +wissinger +wisnoski +wisley +wishard +wish +wipperfurth +winterling +winterholler +winterfeld +winsman +winkenwerder +wingerson +winegard +windland +winchel +wilmott +willwerth +willougby +willinger +willims +williby +willian +williamon +willhelm +willging +willens +willenbring +willcott +willardson +wilhelmy +wildsmith +wildoner +wildberger +wikholm +wigner +wiglesworth +wiggett +wiget +wigdor +wieman +wied +wieboldt +widen +wickett +wickard +wichterman +wichland +wicher +whysong +whyms +whooper +whooley +whitver +whitmoyer +whitehorse +whitebear +whish +whippo +wheler +whelehan +wheetley +wheeland +wheelan +whatoname +whalan +weygandt +wexell +wetherald +westfahl +westerholm +westerheide +westenhaver +westen +wessendorf +wescom +werstein +wersal +werra +werntz +wernicki +wernett +werger +werber +wenskoski +wenk +wendzel +wendelboe +wenciker +wemhoff +welshans +welde +welby +welburn +weisfeld +weisenfels +weinreich +weikert +weiglein +weida +wegweiser +wegley +weflen +weeler +wedo +wedin +wedgewood +wedderspoon +wedd +weberg +weathington +wears +weakly +weafer +weaber +waz +waxler +wave +wauson +waugaman +waterer +wasmuth +washmuth +warters +warsaw +warns +warnken +warney +wariner +warchol +wansitler +wanless +wanker +wandrie +wandler +wanczyk +waltmann +waltersdorf +walsworth +walseth +walp +walner +walmer +walloch +wallinger +wallett +walkley +walkingstick +walentoski +walega +wale +waldock +waldenmyer +walde +waldbauer +walchak +wakayama +waiau +waddick +wacyk +vreeken +vrbka +vradenburg +vounas +votolato +vosquez +vosika +vorwald +vorse +voros +vorgas +vorel +voorhes +voncannon +volstad +volo +volkmer +volden +volbrecht +voisard +voetsch +voetberg +voeltner +voegeli +vock +vlloa +vivona +vivino +vivenzio +vitucci +vittitoe +viti +viteaux +vitatoe +viscome +virzi +virula +virrey +virella +virani +viox +violetta +vinall +villatora +vilcan +vik +vigen +vieths +vielman +vidra +vidot +vidalez +vicent +vibert +vibbard +veth +vestering +veshedsky +versoza +verrell +veroeven +vernola +vernia +verjan +verity +veriato +verhague +verdusco +verderosa +verderame +verdell +verch +verbeke +venture +veness +vener +vendrick +vences +vellucci +vellone +velk +vegh +vedia +vecchiarelli +vazzana +vaux +vaupel +vaudrain +vatalaro +vastano +vasso +vasiliou +vasher +vascones +vas +varuzzo +varrelman +varnedore +vari +varel +vanwright +vanvoorhees +vanvolkinburg +vantrump +vanstraten +vanstone +vansice +vanscoter +vanscoit +vanord +vanoosten +vannortwick +vannette +vannatten +vanloon +vanliere +vanis +vanhese +vangalder +vanelderen +vandre +vandover +vandinter +vandewalle +vandevander +vanderroest +vandermay +vanderloo +vanderlee +vanderlaan +vandergraph +vanderen +vandenbrink +vandenboom +vandenberge +vandel +vandegriff +vandale +vanbruggen +vanboerum +vanbelle +vanauker +vanasten +vanarsdall +vallerand +valladao +valis +valintine +valenziano +valentia +valensuela +vaisman +vahena +vaglienty +vacchiano +uziel +uyemura +utsler +usie +urzua +ureste +urby +urbine +urabe +uptgraft +unterzuber +untalan +ungerman +ungerland +underland +underberg +umholtz +umbright +ulwelling +ulstad +ulmen +ulcena +ulanski +uhlenkott +uher +uhas +uglow +ugland +uerkwitz +uccellini +tysarczyk +tyron +twymon +twohey +twisselman +twichell +tweten +tuzzolo +tuzzo +tutoky +tusler +turnner +turja +turick +turiano +tunnicliff +tummons +tumlison +tumaneng +tuder +tuczynski +tuchman +tubville +tsukiyama +tselee +truxon +truxler +trussler +trusler +trusillo +trudillo +trude +truchan +trowery +trotochaud +tropiano +tronstad +trolinger +trocinski +triveno +trites +triplet +trick +trichell +trichel +trevey +trester +treisch +treger +trefz +tredwell +trebbe +treakle +travillion +travillian +travaglio +trauscht +traube +trapper +tranum +trani +train +towlson +towlerton +towey +tovmasyan +tousley +tourtellotte +toure +toulson +totin +tosti +tosado +toruno +torrisi +torris +torrent +torrado +torner +torino +torell +topolansky +tooze +toot +tontarski +tonnessen +tonneson +tones +tomisin +tomilson +tomasetti +tolomeo +tollman +tolhurst +tolchin +tolbent +toher +toffton +toepel +toelkes +todorovich +todisco +toczek +tockey +tochterman +tobiasson +tlucek +titzer +titman +tise +tippets +tio +tingwald +timmel +timbrook +tilmon +tijerino +tigerino +tigano +tieken +tiegs +tiefenbrun +tichacek +tica +thurmer +thuotte +thramer +thoroughman +thornock +thorndyke +thongchanh +thomen +thoe +thody +thigpin +thielemier +thi +therres +thal +thakur +tewes +teves +tesmer +teslow +tesler +teruel +terron +terris +terre +terrasi +terrace +tero +terman +tereska +teresi +tepp +teo +tenzer +tennille +tennies +tencza +tenamore +tejadilla +tecklenburg +techaira +tayse +tawwater +tavolacci +taverner +taurino +taulman +taublee +tauarez +tattershall +tatsuta +tatsuno +taschner +tasby +tarrats +tarrants +tarone +tarley +taraborelli +taper +tanniehill +tanks +tankard +tangri +tanequodle +tamporello +tamer +tamburro +tambunga +taliman +talib +talas +takala +takach +taiwo +taibi +taghon +tagaban +tadena +taccone +taccetta +tabatabai +szyszka +szmalc +szerszen +szczepanik +szarek +szafraniec +szafran +szablewski +syta +sysyn +syndergaard +symanski +sylvian +syck +swymer +swoffer +swoager +swiggum +swiat +swetnam +swestka +swentzel +sweetwood +swedenburg +swearingin +swartzendrube +swarm +swant +swancey +sverchek +svenson +sutor +suthoff +suthar +susong +suskin +surra +surano +supplee +supino +sundborg +summons +summerour +sumers +sultzer +sulouff +sulecki +suhoski +suhar +sugerak +suganuma +suddoth +sudberry +sud +stymiest +stvrestil +stuve +sturrup +sturmer +stumer +stuhlsatz +stuenkel +studier +stuczynski +stubbolo +struebing +struchen +strozzi +strowder +strohbehn +stroer +strobridge +strobeck +stritmater +strike +strieter +strickling +streu +streifel +straugter +stratakos +strasburger +straface +straatmann +stpeters +stovel +stoudenmire +stotsky +stothart +storz +stormes +storman +stoppel +stooks +stonelake +stonebrook +stombaugh +stoltzman +stolsig +stolpe +stoglin +stoffle +stodgell +stocke +stirna +stipetich +stinner +stimpert +stimer +stilphen +stikeleather +stifel +stiely +stielau +stieger +stidman +stickrath +stickman +stickels +stgerard +sternberger +stergios +stepien +stepanski +stent +stenkamp +stenehjem +stempel +stemmer +stelb +steiskal +steinmuller +steinmacher +steinhorst +steinhaus +steinharter +steinhagen +steinburg +steifle +stefanick +stefanich +steeber +stay +stawarz +stavropoulos +staves +staup +stauch +staubs +stathopoulos +stathis +startz +starowitz +starowicz +starkie +starcic +stanely +standrod +standahl +stanczak +stample +stampka +stamer +stallins +stalford +stahoski +stagger +stader +staack +srsic +srey +squitieri +spyres +spuhler +sprouffske +sprosty +sprinzl +springle +spoth +spletzer +spizer +spitsberg +spitale +spiroff +spirer +spiotta +spinola +spingler +spike +spierling +spickler +sphon +spettel +sperle +sperka +sperberg +speltz +spaw +spasiano +spare +spancake +spagna +sowerby +sovern +souvannasap +southerly +sous +sourwine +soult +sotiriou +sothman +sota +sortore +sorley +sorin +sorells +soratos +soose +soong +sonsino +sonnabend +sonia +songster +sondrol +sondergaard +soltau +solinski +solinger +solid +sojda +sohns +softleigh +soffel +soffa +sodaro +sodano +soda +sobran +sobczynski +sneeden +snater +snair +smoker +smithingell +smink +smiles +smialek +smetak +smejkal +smeck +smaldone +sluyter +slot +slostad +slingerland +sliffe +slemmer +slawter +slavinski +slagowski +slaff +skuse +skulski +skornia +skolfield +skogstad +skinkle +skidgel +skeffington +skeets +skeele +skarupa +skarphol +skaare +sjolander +sjaarda +sitts +sitterud +sitt +sissell +siprasoeuth +sipper +sipla +sipkema +sinning +sinitiere +single +simmens +simm +simiskey +simelton +silverthorne +silvernale +silvan +siliado +silbaugh +siket +siker +sigurdson +signore +sigers +siffert +sieving +sieverding +sietsema +siering +sienicki +siemsen +siemonsma +siemering +sielski +siedlecki +siebers +sidbury +sickman +sickinger +sicilian +sible +sibilio +sibble +shutler +shurgot +shuping +shulda +shula +shrieves +shreiner +shreckengost +shreck +showes +showe +shoupe +shoumaker +shortey +shorten +shorrock +shorkey +shones +shockency +shoats +shivel +shipmen +shinsel +shindledecker +shinabarger +shiminski +shiloh +shillingford +shigo +shifman +shiers +shibuya +shewchuk +shettsline +shetter +shetrawski +sheffel +sheesley +sheekey +sheeder +sheares +shauger +sharko +shanna +shankin +shani +shandley +shanaa +shammo +shamlin +shambrook +shadow +shackley +sgambati +sferrazza +seydel +sewald +sevenbergen +sevaaetasi +seumanu +seuell +settler +setterberg +setera +sesso +sesay +servoss +servino +serpe +sermeno +serles +serena +serapio +senske +semmler +seminole +semel +selvaggi +sellai +selissen +seling +seleg +seledon +selbo +selan +sekuterski +sekula +seiwell +seivert +seise +sein +seils +seier +seidita +seiberling +seher +segroves +segoviano +segel +segee +seftick +sees +seekell +seegobin +seebold +sedlack +sedbrook +section +secrease +secore +seckler +seastrand +seargent +seacrist +seachord +seabrooke +scudieri +scrim +scozzafava +scotten +sconce +scircle +scipioni +sciarretta +sciallo +schwingler +schwinghammer +schwingel +schwiesow +schweinfurth +schweda +schwebke +schwarzkopf +schwander +schwaller +schwall +schut +schurkamp +schunter +schulder +schuenemann +schue +schuckman +schuchart +schroff +schoville +schorzman +schorder +schooner +schones +scholler +schofell +schoewe +schoeninger +schoenhals +schoenbeck +schoefield +schoberg +schnittker +schneidermann +schneckloth +schnebly +schnathorst +schnarrs +schnakenberg +schmitzer +schmidbauer +schmeeckle +schmeckpeper +schmandt +schmalzried +schmal +schlinker +schliep +schlette +schlesier +schleig +schlehuber +schlarbaum +schlaffer +schkade +schissel +schindeldecke +schimandle +schiermeier +scheunemann +scherrman +schepp +schemmer +schelp +schehr +schayer +schaunaman +schauland +schatzel +scharrer +scharping +scharpf +scharnberg +scharmer +scharbor +schalow +schaf +schader +schacter +scelfo +scarpello +scarlet +scaringe +scarduzio +scamardo +scaman +sbano +sayman +saylee +saxena +sawdey +sawada +savitsky +savickas +savic +savaglio +sauriol +sauret +saulo +satar +sasportas +sarvas +sarullo +sarsfield +sarne +sarmento +sarjent +sarellano +sardin +saputo +santheson +santellana +santarsiero +santago +sansalone +sanos +sanna +sanko +sanker +sanghani +sangalli +sandven +sandmann +sandhoff +sandelius +sandall +sanchious +sancedo +sance +sampogna +sampilo +sampayan +sampaia +sampaga +samo +samlal +samela +samec +samad +salzberg +salway +salwasser +salveson +salvemini +salus +salquero +salowitz +salizzoni +salina +salin +salimi +salgero +salemi +salato +salassi +salamacha +salahubdin +salada +saintignon +saintamand +saines +sahl +saha +sagona +sagedahl +saffel +saemenes +sadow +sadlow +sadger +sacramento +sackal +sachtleben +sabota +sabot +sabe +sabata +sabastian +sabad +rzepka +ryzinski +rytuba +ryon +rynes +rykiel +rykert +rykard +rydolph +rydell +ruzicki +rutko +rutenbar +rustrian +rusinski +rushmore +rushenberg +rushen +ruschak +rury +ruper +ruotolo +rummerfield +rumer +rumbolt +rulon +ruleman +rufe +rudo +rudkin +rudick +rubinich +rubidoux +rubero +roys +rowman +rovere +rousu +rouillier +rotton +rotondi +rothenbach +roszell +rossotto +rossmiller +rossey +roshannon +rosenfeldt +roscioli +rosander +rorrer +rorex +ropes +ropac +rooth +roorda +ronsani +ronne +rong +ronfeldt +rondy +romp +romon +romness +romm +romera +romeiro +rombach +romar +romansky +romagnoli +rom +rolson +rojos +rohanna +rogstad +rogillio +rogg +rogacki +roffman +roethle +roeth +roetcisoender +rodibaugh +roderiques +rodenburg +rodemeyer +rodberg +rockovich +rocher +roccio +robeck +robe +robayo +robar +rizzardo +rivie +rival +ritterbush +ritchko +ritchhart +ristig +rishty +rippstein +rippelmeyer +rioseco +ringwald +ringquist +ringham +rinella +rineer +rimple +rilling +rill +rijo +riihimaki +riglos +riggens +rigaud +rigali +rietz +rietdorf +riessen +riesgraf +rienstra +riekena +riedle +riedinger +rieb +rickenbaker +richcreek +richbourg +riccelli +riberdy +ribb +rhodie +rheome +rheinhardt +rezai +reynalds +reyman +reyez +rewenko +reville +revello +revelez +reul +resue +restuccia +replenski +reon +rentar +rensberger +rens +rennaker +renell +remson +rell +relacion +rekuc +reker +reitler +reischl +reints +reinoehl +reinart +reimund +reimold +reikowsky +reiger +reifman +reicks +reichler +reichhardt +rehling +regos +regino +regalbuto +reffner +reents +reenders +reeks +reek +reeck +redmer +redican +reddoch +reddig +reddicks +redbird +rectenwald +recek +rebillard +rebich +rebeck +reagon +raziano +raymore +ravenel +ravel +rause +rauschenbach +rauer +rauchwerger +ratelle +rasinski +rasbury +rardon +rapson +rapkin +raoof +rannells +ranke +rangitsch +rangasammy +randt +ran +ramser +ramsaroop +ramsahai +ramrez +rampley +ramirec +ramesh +ralbovsky +rakoczy +rakoci +rajwani +rajaratnam +raiden +rahmani +ragno +raghunandan +ragas +ragar +rafuse +radvany +rados +radmacher +radick +radecki +raczynski +rachell +qureshi +quirin +quire +quintona +quinnett +quinalty +quiambao +quella +quatraro +quartararo +qualle +qin +pytko +pyer +pyanowski +puzio +pushcar +purviance +purtlebaugh +pupo +pulte +pulse +pullom +pullings +pullano +pulkkinen +puliafico +pulfrey +pujols +puhala +puchalla +pucciarelli +prutzman +prutt +pruneau +prucha +provitt +protin +prose +proco +proa +prisk +prioletti +priode +prinkey +princiotta +prich +pribnow +prial +preyer +prestino +pressimone +preskitt +preli +preissler +prehoda +predovich +precise +prazenica +prawdzik +prast +pozzobon +pozos +powles +pov +poullard +pouch +potucek +postert +posten +posson +posa +portuondo +porten +porst +poree +pora +poque +popiolek +poot +poock +pongkhamsing +ponessa +pone +poncio +polumbo +pollutro +pollet +pollen +poljak +polemeni +pokswinski +poisel +poette +poelman +pody +podewils +podaras +pocius +pobanz +plympton +ply +plush +plume +pluff +plues +plue +plona +plexico +plew +pleiss +pleil +pleasanton +plattsmier +plathe +plankey +plahs +plagge +placker +placha +pizira +piwowar +piwetz +pittelkow +pitta +pithan +pitcherello +pisciotti +pipilas +pintea +pinta +pinkstaff +pinkos +pinc +pilotte +pillo +pihl +pignotti +piggs +pietrzyk +piermont +pieczynski +piechowski +piech +pickersgill +picetti +picciuto +piccinini +picarello +picardo +picado +piantanida +pianka +pian +phothirath +phippard +philman +philipson +philavanh +phelts +phanor +phanco +pflughoeft +pflugh +pfliger +pfeister +pfeifle +peyre +peyatt +pettine +pettett +petru +petronio +petricka +petrak +petko +petitto +petersson +pesnell +peshek +pesh +pescador +perze +perteet +pertee +pert +perschbacher +perruzzi +perrish +perrigan +perriello +perr +perozo +perlich +perking +perkes +perfater +perce +pepez +peon +penunuri +penuel +penso +pennisi +penkins +penkalski +pendon +pellon +pellissier +pelino +pel +peick +peguese +peggs +pefanis +peeters +peedin +peduto +pedulla +pedrozo +pedrotti +pedroncelli +pedrogo +pedri +pedregon +pederzani +pedde +pecukonis +peckler +pecka +pecha +pecci +peatman +peals +pazo +paye +pawlusiak +pawlitschek +pavlosky +pavlo +paveglio +paulman +paukstis +pauk +patts +patter +patriss +patneaude +paszek +paswaters +pastula +pastuch +pastel +passy +passarella +pasquin +pasqualetti +pasqual +pascuzzi +pasceri +parviainen +parral +parolini +parmele +parma +parlavecchio +parfitt +parez +pardieck +pardew +parda +paraz +parat +papay +paparello +papaioannou +paolello +pansini +panelli +panell +pander +pancholi +panaro +panagiotopoul +palomarez +palmrose +palmisciano +palmese +pallotto +palleschi +palk +palhegyi +palenzuela +paleaae +palczynski +palakiko +palaia +paith +pagonis +pago +pagliuca +pagliari +paganini +padovani +padfield +padamadan +pacquette +paco +packwood +pachero +pachar +pacewicz +paasch +pa +ozols +ozga +ozenne +oxman +overpeck +overbeek +overbee +oulette +otsu +otremba +otool +otar +otanicar +osumi +osucha +ostrov +osthoff +ostertag +ostergard +ostaba +ospital +ososkie +osofsky +osisek +oshinsky +orzalli +orwin +ortwein +ortuno +orts +ortell +orpen +ornelaz +orewiler +ores +ordones +opunui +oppenlander +opoien +opalka +ooley +ontko +ondrey +omura +omtiveros +omland +olup +olthoff +olsten +ollila +olivia +olinsky +olinick +oleksa +olejarz +oldakowski +okoronkwo +okins +ohmer +ohlsson +oherron +oheron +ohanian +oganesian +ogaldez +oest +oehlenschlage +oedekerk +odon +odekirk +ocran +oconor +obrzut +obrist +obringer +oborny +oblander +obi +oberley +oberer +obeng +oatridge +oajaca +nypaver +nuzzi +nuzback +nuxoll +nussbaumer +nurmi +nuhn +nugen +nuara +nquyen +nozicka +noxon +nowick +nowaczyk +novielli +novembre +november +novas +noun +notto +notowich +norzagaray +norway +northover +northcross +norem +nordmann +nordenson +nolet +nojiri +nohel +noethiger +nodd +nitzel +nita +nisbit +nina +nikas +nigon +niglio +nighswander +nighbert +niemietz +niedzielski +niederkorn +niederhaus +niederer +nicometo +nicolaides +nickolich +nguyn +neyra +neymeyer +newmon +newgent +newbery +nevala +neuweg +neuhoff +neuhauser +neubecker +nettik +netters +nestingen +nesspor +nerad +nenez +neldon +neizer +neives +neils +neiger +neidich +neibert +negroni +neemann +needle +neeb +nedry +nedley +neas +naze +nazaroff +nayes +nayar +nattress +natonabah +nassr +nasseri +nassef +naso +narkier +naret +nardini +nardecchia +naragon +naputi +napierala +nanny +nanke +namdar +naji +naidoo +nahm +nahas +nagelschmidt +naes +naegeli +nacol +naclerio +nachor +nabozny +nabarrete +nab +myrlie +mykins +muzio +mutolo +muta +mustoe +muster +muske +muschamp +muscarello +musacchio +murzycki +murrufo +murnan +muraski +murany +murano +munzer +munis +munion +mumby +mumbower +mulrain +mullinex +mullineaux +mullennix +mullahey +mukhtar +muina +muha +muehlman +muccigrosso +mrozoski +mozier +mow +mova +moustafa +mousser +mouse +mousa +mouritsen +mourad +mottet +motten +motamedi +mostowy +mostafavi +mosiman +moscone +moscicki +mosbrucker +morva +mortinez +mortel +morsey +morrin +morren +morosco +morledge +morla +morisky +morishita +morisey +morgia +moretta +morera +morenz +mordue +mordhorst +mordaunt +morber +morawa +moravick +morarity +mooty +mooser +moock +moochler +montoure +montooth +montonez +montierth +monticello +monteverde +monterrano +montella +montecillo +monsrud +monsma +monserrat +monrreal +monro +monetti +mondok +mondella +moncion +monaldi +moltz +molon +mollicone +molle +moliterno +molinere +molinary +molesworth +moh +mogush +mogren +moellers +moeck +modert +mockbee +mocher +mochel +moc +moberley +moan +moallankamp +miyose +miyata +miyashita +miyagi +mitsuda +misumi +missel +miskelly +misiaszek +mirzadeh +mirto +mirsch +mirles +miolen +minzel +minutillo +minugh +mintzer +minskey +minnaert +minkoff +miniard +mingledorff +minas +minaai +milly +millinor +millie +millerd +millea +milkey +milham +milfeld +mileham +milas +milar +milak +mikulski +mihara +mihalek +mihalchik +mihal +mignot +mignano +mighty +miesse +mierzwinski +micthell +mickus +mickolick +mickiewicz +michlin +michelena +micha +miccio +micari +mezzatesta +mewbourn +meuse +meurin +metzker +mettling +metting +metters +metropoulos +metevia +mesteth +mesko +mesi +meserole +mervyn +mernin +mermelstein +merling +merli +merkowitz +merklin +merkerson +merica +merendino +mercury +meray +meranto +merancio +mensik +mense +menoni +mennie +mengsteab +menes +mend +mency +memolo +meltz +meling +melen +melcer +melamed +mekee +meiste +meise +meinhard +meierotto +mehok +meharg +meginnes +meenach +medicus +mediano +media +medell +mede +meddaugh +meconi +mech +mearse +meardon +mealor +meadville +meachen +mcvicar +mcsparin +mcrorie +mcrobbie +mcoy +mcowen +mcnorton +mcnertney +mcnamer +mcnail +mcmanamon +mcmain +mclyman +mcleland +mckirgan +mckew +mckevitt +mckercher +mckensie +mckeegan +mckeane +mckahan +mcinture +mcindoe +mcilvenny +mcillwain +mciff +mcgwin +mcguff +mcgrotty +mcgrone +mcgrant +mcgoogan +mcglon +mcgloin +mcgiveron +mcghehey +mcghay +mcgavin +mcgahen +mcfann +mcelwaine +mcelduff +mceachron +mcdilda +mcdermid +mcdannold +mcdale +mcculough +mccuien +mccrumb +mccrorey +mccreless +mccravy +mccourtney +mccorrison +mccorkell +mccorey +mcconney +mcconnaughhay +mccollester +mcclurkan +mccluer +mccloudy +mcclenaghan +mcclave +mcclarnon +mcclarin +mcclaney +mcclanan +mcclair +mcchristion +mccaskell +mccartha +mccarl +mccamant +mccalmont +mccalman +mccaine +mccahill +mccague +mcbrown +mcanany +mcalvain +mazzurco +mazuc +mazo +mazingo +mawhorter +mavro +mavraganis +mautner +mautino +mauceli +matzinger +maturi +matturro +mattlin +mattheis +matsuoka +matsuki +matro +matlack +matice +mathson +matheu +mathenia +math +matejka +mateja +matanane +masztal +mastropaolo +mastromarino +mastrolia +mastel +massy +massoud +massimino +maslanka +masini +mascioli +marzec +marvier +maruyama +marusarz +marum +martorella +martire +martinkus +martinas +martiez +marthe +marteney +marschall +marruffo +marrazzo +marples +marohl +marn +marlborough +markunas +marki +marjan +maritnez +marinkovic +marineau +margaitis +marentis +mare +marcou +marciel +marci +marchiori +marchello +marchell +marcelle +marcelin +marales +mapel +manzanarez +mantilia +mansmith +manon +mannschreck +mannick +mankiewicz +mankel +manila +manifold +manha +mangrich +mangiapane +mangiamele +manera +mandes +mandella +mandelik +mandaloniz +mand +mancusi +mancine +mana +mamula +mammoccio +malzhan +malzahn +malsom +maloon +malnar +mallone +mallinson +mallie +mallek +malle +malinoski +malinconico +malicoat +malicdem +malhi +malfatti +malandrino +malamud +malakowsky +makovec +makey +majercik +majer +majamay +maisenbacher +mainey +mailey +mailander +mahuna +mahomes +mahoe +mahnken +maheras +mahaxay +mahana +maham +magnia +magni +magnanti +magliano +magliacane +maglaughlin +magistrale +magierski +maggini +magano +mafnas +madren +mador +maderios +madena +maddron +madan +madalinski +macmanus +maclead +mackowski +mackinaw +mackessy +mackerl +macker +macivor +machold +machain +macedonio +macdiarmid +macchiaroli +macbean +macayan +macari +mabin +mabel +lyter +lyster +lysne +lynskey +lyness +lyndaker +lymaster +lykke +lyell +luxmore +luttmer +lutgen +lusignan +lupold +lungstrom +lunford +lundeby +lumbard +lule +lukaskiewicz +luinstra +luevand +luer +lueking +luehrs +luecking +ludvigson +ludgood +lucich +luchetti +lubman +lubic +lozito +lowhorn +lowd +loverich +loveman +lovas +lovaas +louvier +louthen +loury +loukanis +loughner +loughnane +louato +lotshaw +lother +lothamer +loter +losinski +losinger +loshek +losecco +lortie +lorin +lorent +lorello +loras +lorah +lopau +loosen +lontz +longpre +longie +loncaric +lombrana +lomba +lohrey +lohoff +logghe +loges +lofstead +lofft +loertscher +loeper +loeblein +lodato +lochen +lobbins +lobban +lizarrago +livigni +livernash +liukko +littich +litterer +littau +litchmore +lisy +lissy +lishman +lischak +lirag +liptow +lins +linkhart +linkert +lingren +lingelbach +lingel +lingad +linet +linegar +linebrink +lindroth +lindeland +lindboe +linardi +linard +ligman +liggans +lifland +liff +lieuallen +liesveld +liess +lienhard +liehr +liedy +liedke +liebau +lidtke +lidstrom +licano +libra +leys +leymeister +lewerke +lewand +levoci +leviton +levien +leveston +leverenz +levere +levangie +leuy +leukuma +lettman +letran +letlow +lethco +letersky +lestronge +lesso +lessey +leshem +lerud +leps +leonesio +leones +lento +lente +lennertz +lenior +lenhard +lenfest +lene +lendrum +lempicki +lemonier +lemle +lemkau +lemings +lem +lelli +lekas +leitten +leitheiser +leino +leiner +leinenbach +leidy +leidich +leid +leich +lehnhoff +leh +legum +legoullon +legeyt +legalley +legace +lefton +lefthand +leforge +lefore +lefleur +leerar +leef +leed +ledl +leddon +ledain +leckie +lecates +lebeouf +leben +lebeck +lebeaux +leban +leaverton +learman +leardi +leamy +lazare +lazarczyk +layssard +layson +layhew +layel +laychock +lawernce +lavzon +lavalla +lauterborn +laut +lauseng +lausen +laurino +lauri +laurenzano +laurenza +laundry +laumbach +lauinger +lauenroth +latzke +latulipe +lattig +latronica +latouf +latko +latiker +lathern +laterza +latchaw +lataquin +lasure +lashomb +lasell +lasasso +lartey +larriva +laro +lardner +lardieri +laprarie +lapping +lapitan +lapeyrolerie +lapar +lanzetta +lantis +lanka +lani +langshaw +langmyer +langin +langerman +langeland +langbein +landro +landrian +landmesser +landmann +landfair +landesberg +lanciotti +lamprey +lampey +lamos +lamora +lamoine +lamfers +lambka +lamance +lamana +laliotis +lajza +lajaunie +lainson +laher +lahar +lagrotta +lagrant +lagraize +lagnese +lafrazia +lafountaine +laflin +lafaso +lafarga +ladage +lacsamana +lacrosse +lacrone +lachowski +labruyere +labrake +labossiere +laba +laack +kyzar +kynard +kwek +kuzmin +kuttner +kusiak +kuser +kuse +kurtzer +kurtzeborn +kurpinski +kurohara +kuroda +kurnik +kurihara +kurdziel +kurban +kuras +kupper +kupferer +kupec +kunzelman +kunkler +kunin +kunesh +kumro +kumpf +kulon +kulka +kukucka +kuk +kuhse +kuhls +kuhlo +kuhar +kuerbitz +kuenzi +kuehneman +kudron +kuczenski +kuchle +kuchenmeister +kuchenbecker +kucan +kubu +kubsch +kubiszewski +kubish +kubicz +kubick +kubaska +kuarez +ksiazek +kshywonis +krzykowski +krzak +krysl +kruzewski +kruzan +krumrine +krumins +krucker +kroupa +krough +krotz +kronstedt +kromrey +krogstad +krogmann +kroeze +kroetz +kroc +kristianson +kristen +kriser +krips +kringas +kriete +kreuter +kretschmann +kresha +kreidel +kregger +kreatsoulas +kratochwil +krasovec +krase +krapf +kranawetter +krajnik +kozubal +koyanagi +kowalkowski +kovarovic +kovalcin +kou +kotzen +kotnik +kostelecky +kostek +kostecki +kostal +kosse +koslowski +koskie +kosicki +koshar +kosek +kortright +korpal +kornhauser +kormos +korinek +korgie +kordsmeier +kordish +koral +kops +kopps +kopperud +koppang +kopfer +kopet +kook +konno +konik +konek +konefal +komm +komis +komer +komarek +kolsrud +kolp +kolopajlo +kollmorgen +kolis +kolesnik +koles +kolding +kohs +kohlhoff +kohatsu +kohara +koetter +koestler +koepsel +koeppe +koenigsman +koelewyn +koe +kodadek +koci +kochler +kocab +kobylinski +kobryn +koberg +knower +knollenberg +knock +knizley +kniss +knies +knezovich +knesek +knepel +knehans +kneeskern +knaust +knapke +kmet +kluz +klukas +kloska +klopf +klinglesmith +klinekole +klimes +kliment +klimaszewski +klepfer +klepacki +klepac +klemash +kleinkopf +kleinknecht +kleimola +kleiboeker +klei +klehn +klegin +klavuhn +klauer +klasinski +klasing +klarr +klapec +klaass +klaameyer +kjelland +kiyuna +kitching +kistle +kissi +kishi +kirvin +kirtner +kirovac +kirnon +kirkby +kiritsy +kirchgesler +kippley +kipping +kinzig +kins +kinnare +kinna +kingcade +kinatyan +kimme +kimbrow +kimbril +kilzer +kiltz +killmer +killibrew +killeagle +kilger +kiles +kievit +kientzy +kielty +kiekbusch +kiehne +kiefert +khou +khiev +khat +khare +keywan +keyt +kevin +keville +kevern +keuler +ketola +ketelaar +kertis +kerson +kernen +kerkman +kerker +keogan +kenwood +kenne +kenaan +kempler +kempisty +kempfer +kempen +kemmerlin +kelter +kelman +kellie +keliihoomalu +keleman +kekiwi +keiswetter +keiss +keilty +keidong +kegel +keets +keeneth +keefner +kedzierski +kebort +keate +keat +kazmorck +kazi +kaz +kawachi +kaushiva +kauk +katzner +katzmark +katzen +katsuda +kats +kater +katen +kasting +kasserman +kassay +kassabian +kasprowicz +kasperek +kasowski +kasmir +kaska +kasik +kascak +karth +karsnak +karshner +karsh +karmel +karlstad +karley +karins +karimi +karcich +karch +karapetyan +karakas +kapsalis +kappeler +kapke +kaperonis +kapahu +kanthak +kansky +kansas +kanoy +kanno +kannady +kandarian +kanai +kanae +kanaan +kamphoefner +kammler +kaminetzky +kaminaka +kamienski +kamaunu +kamakea +kama +kaltefleiter +kaloustian +kaloi +kallmeyer +kalisch +kalinski +kaliher +kalgren +kalfas +kales +kalafatis +kagle +kadish +kachermeyer +kabina +kaawa +kaaua +kaatz +juvera +jutte +justen +jusko +juriga +jure +jungquist +jungbluth +juneja +juncaj +juliet +juhas +juenger +juell +jucean +jubinville +jovich +jorres +joris +jore +jonhson +joneson +jonassen +jolissaint +jointer +johnny +johengen +johar +joh +joern +jodway +jobs +joanette +jirik +jirasek +jipson +jinkerson +jinkens +jiminian +jimeno +jiau +jevnikar +jessel +jerauld +jephson +jentzen +jenkerson +jenista +jenifer +jemmett +jelovich +jehlicka +jeffris +jedziniak +jeantet +jeanclaude +jayme +javor +javaux +jaurigue +jaureguy +jarvinen +jarocki +japp +janszen +jansons +jans +jankauskas +janka +janhunen +janeczek +jandrin +janczewski +janack +jamir +jakuboski +jakubik +jakubek +jahnel +jageman +jaenicke +jacquem +jacquay +jaconski +jacobellis +jablon +iyo +ivancevic +iurato +iulianetti +itri +issler +isla +isip +ishmon +ishizu +isgrigg +iseri +iseli +iseley +isbrecht +isassi +isaiah +irsik +irias +inzana +intveld +intrieri +interdonato +instasi +inscho +ingwell +ingebretsen +inga +inda +incle +inabinett +imus +immordino +imbesi +imbach +illsley +illig +ill +ignowski +idler +idleburg +ideue +ibara +ianuzzi +ianniello +iacovone +hyter +hyles +hyle +hykes +hyams +huxley +hutch +hustead +huscher +hurtz +hurse +hurren +huret +huotari +huntress +hunting +hunstiger +hunking +humpries +humbles +hum +hulvey +hulcy +huizinga +huhman +huhammad +hufty +huesso +hueftle +huebschman +huebert +hue +hudmon +huberman +hubbartt +hubach +hsueh +hrycenko +hrabal +hoxit +howsare +howman +howitt +howerter +houlton +houis +hottman +hotovec +hostin +hoshall +hosfeld +hoschek +horwath +horsely +horsburgh +horovitz +hornstrom +hornbarger +horkley +horka +horey +horeth +hordyk +horack +hoppin +hoppel +hopfensperger +hooey +hooe +honhart +honga +honeck +homs +hommell +homles +homen +home +holzner +holzheimer +holzem +holsopple +holsman +holowell +holliway +holizna +holesovsky +holderbaum +holbach +holan +hoit +hoist +hohenbrink +hoger +hofmans +hofheimer +hoffhines +hofbauer +hoesing +hoeschen +hoerter +hoepfner +hoemann +hodgeman +hockersmith +hochadel +hobock +hobel +hluska +hlavac +hisrich +hirsbrunner +hirpara +hire +hinners +hindbaugh +himenez +hilles +hilleary +hillanbrand +hillan +hildner +hilding +hilderbrandt +hiland +hightree +highnote +highberger +higgason +higaneda +hidinger +hickock +heymann +heusinkveld +heusel +heuring +hettler +hesseltine +hesselink +hesford +herth +herskovits +herschell +heroman +hernton +herne +hernandaz +hermez +hermanstorfer +herling +herke +herimann +heriford +hergenrader +herforth +herdes +hercher +herceg +herbick +hentze +henniger +henney +henness +hennegan +henkes +heneisen +henderickson +henard +hemrick +hemric +hempton +hemp +hemme +hemeon +hembry +hembrough +hembrey +helstad +helmus +hellings +hellgren +helie +helgert +helgerman +helger +helgason +helfinstine +helfgott +helfenstein +heldreth +helander +heitzmann +heisserer +heising +heisel +heinold +heinis +heinemeyer +heimark +heiliger +heiderman +heidenescher +heidebrink +hehir +hegan +heersink +heep +hedquist +heckford +hebets +heberly +heberle +hebenstreit +heavilin +heartz +heaphy +heany +hazer +hazelgrove +haynsworth +haydock +hawelu +havnen +havely +hauss +hausam +haumesser +hauman +haulk +hauley +haubrick +haubner +hattman +hatman +hatherly +hatchcock +hastert +hassenplug +hasko +haser +haselhuhn +hasberry +has +harthorne +harthcock +harriett +harouff +harootunian +harkavy +harell +hardridge +hardacre +harborth +haraguchi +haptonstall +happenny +hantman +hanses +hannemann +hannay +hannafin +hanle +hangartner +handerson +hanberg +hamzik +hamstra +hammans +hamano +halsema +halonen +halim +halek +haleamau +halama +hakeem +hainley +hagley +hagist +hagie +haggberg +haggan +hagele +hafenstein +hafemeister +hady +hadges +hadef +hackey +hach +habbyshaw +haaga +haab +gysin +gwirtz +guzzio +guzzardo +guzma +gutzmann +gutta +gutermuth +guterman +gutenberger +gurganious +gural +guppy +gunzalez +guntert +gums +gumb +gullotta +gullixson +gulling +gullace +guler +gulbransen +guitian +guinta +guinasso +guilboard +guichard +gugliotta +guglielmina +guggenheim +gugel +guetierrez +guethle +gueth +guerrido +gueits +gudenkauf +gucciardo +guarnera +guadagnolo +gsell +gschwend +grush +grupp +grundmann +grunau +grueninger +gruca +groupe +grotzinger +grotheer +grossmeyer +grossetete +grossack +gromer +groenke +groening +groehler +groebner +grochmal +groby +grobes +gritman +griswould +grisset +grime +griffo +griesinger +greuel +greth +gressman +gremel +greiwe +greis +greil +greife +greider +grefrath +greff +greenmyer +greany +grazioplene +gravlin +gravito +gravert +grav +grater +grap +granzin +grannum +granlund +grando +grammes +gramley +grambo +grala +grahl +gradwohl +gradillas +gradert +graciana +grabner +grabinski +grabinger +grabel +graaf +gouzy +gouger +gottron +gottardo +gothro +gosso +gossi +gorringe +gorneault +gorn +gormly +gorenflo +goral +gopen +goosey +goodnoe +goodie +goodhile +goodfield +goodard +gonneville +gongalez +gondola +gompf +gommer +gollehon +golie +golebiewski +goldinger +goldhaber +goldfeder +goldbaum +golaszewski +gojcaj +gogerty +goettsche +goethe +goessl +godson +godbe +gochanour +gocha +gnau +gnatek +glud +glorius +glordano +gloodt +glod +glinka +glime +gleim +gleicher +glazewski +glay +glasford +glascott +glanzman +glahn +gladish +gjerde +gizinski +gitzen +girsh +girote +girman +giovino +giovanini +giorgini +ginty +ginsky +ginnings +gingues +gingg +ginger +giner +gimm +gilruth +gillund +gillenwaters +gilday +gilcrest +gilcher +gilani +gigstad +giernoth +gienger +gidaro +giczewski +gibas +giarratano +giantonio +giannitti +giannetti +giampapa +giacopelli +giacone +giacomelli +gherman +ghera +ghan +gevorkyan +gettig +getchman +gesinski +gerundo +gershenson +gerraro +gernert +germundson +gerloff +gergel +gerdeman +gerdel +geraldo +geraldes +georgopoulos +georgis +georgevic +georgeson +genzel +genung +gentzler +gentili +genich +gelzinis +geiken +geidner +geidl +gehrer +geho +gehlbach +geeding +gedye +geberth +geathers +gearan +gealy +gazzola +gazella +gawrych +gavidia +gautam +gaumont +gaudenzi +gaucher +gaubert +gattas +gatley +gaters +gatchalian +gassel +gasman +gaslin +garufi +garriepy +garrell +garrand +garnto +garns +garno +garlinger +garivay +garhart +gardino +garcea +garbin +garaventa +garavaglia +garahan +garafano +garacia +gapen +ganiron +ganino +ganim +gangwish +gange +ganes +gandia +gandeza +gamlin +gamelin +galway +galow +gallob +gallishaw +gallinaro +gallicchio +gallese +gallero +gallegas +galeoto +galeas +galbreth +galbavy +galavis +galam +gajate +gair +gagney +gagel +gagarin +gaete +gaetani +gadbaw +gack +gabrysch +gabardi +fyksen +futrelle +furl +furches +furbeck +funnye +funicello +fumagalli +fullford +fulginiti +fulenwider +fulena +fugler +fuerstenberge +fuentas +fucillo +fuapau +fryberger +frusciante +fruehling +fromberg +froeschle +frock +fritzgerald +fritcher +frisbey +frihart +frieling +friedler +frie +fridell +freuden +freud +frett +frend +freiling +freije +freie +freidman +freibert +fregozo +freehling +fredo +fredlund +fredley +frede +freberg +frayre +fraunfelter +frascella +franssen +frankowski +francour +francom +francillon +francey +fraioli +fracassa +fostervold +fossey +foshay +foscue +forsell +forrister +forren +fornicola +fornes +forgie +forbs +foppe +foore +fontecchio +fongeallaz +follick +folio +foder +flyzik +fluhman +fluet +flow +floto +floros +floriano +floren +floran +floerke +flitcroft +flipp +flintroy +fleschner +flenner +fleeting +flamio +flaggs +flagge +fjeseth +fithen +fissell +fischman +fire +fioranelli +finseth +finocchiaro +finerty +fineman +finchman +filyaw +filipovich +filas +figler +figge +fiers +fiereck +fidell +ficorilli +fico +ficks +fickle +fialkowski +feyen +fetz +fetsko +ferullo +fertitta +ferriman +ferrebee +ferrand +ferrales +fernelius +fernberg +ferioli +fergoson +ferenc +fereira +fequiere +fennema +fenelus +fenelon +feneis +femrite +feltenberger +felsenthal +fels +felmet +felgenhauer +felarca +feiteira +feirer +feinen +feigenbaum +fehlinger +federle +fecko +feavel +featheringham +fayer +faxon +faurrieta +faull +fatone +fatigate +fasy +fasula +fassio +fass +farwick +farrill +farquer +farmwald +fantozzi +fanoele +fannell +fanizza +fandrich +fallo +fallago +faist +faines +faine +fahrendorff +faggard +faessler +fadale +fabrizi +eychaner +exon +exilus +ewig +evitts +evinger +everheart +everhardt +eveleth +eveleigh +eurbin +esworthy +estus +estock +esterbrook +essler +esque +espina +espalin +eschenburg +eschberger +esbenshade +ertley +erstad +erp +eroman +erno +ermatinger +erkkila +erkela +eriquez +erin +ericks +erdahl +ercolani +equils +eppinette +eon +enter +enke +engley +englebrecht +engleberg +englar +engelstad +engelsman +engellant +ence +emslie +empie +emoto +emons +emley +emile +embly +embler +emanuelson +emal +elzinga +elwer +elvis +elvington +elshere +elmquist +ellout +ellifritz +ellerd +ellerbusch +elizando +elizabeth +elick +eliasen +elgert +elger +elena +elbers +ekstein +ekmark +eiser +einck +eimers +eilert +eidinger +eicke +ehsan +ehn +egleton +egel +effner +ednilao +edner +edmons +edmister +edmison +edlow +edholm +edgeman +edgcomb +edell +edelblute +eclarinal +eckroad +echave +ebesu +eberwein +ebeid +ebe +ebbing +eastlund +eary +earps +dzuro +dziuban +dysinger +dyner +dymek +dyll +dyl +dydell +dwelle +dwan +duvernois +dutson +dutro +dutchover +dusky +duskey +dusik +dushkin +dushane +durrani +duroseau +durnford +durk +durepo +duranceau +duprat +duplechin +duperry +dunscomb +dunkleberger +dung +dunegan +dundlow +dumpson +dumphy +dumpert +dumesnil +dullum +duldulao +dular +dukart +duhan +dugdale +dugat +duffney +duesing +duenow +duce +dubson +drzewicki +druetta +drube +drozdenko +drop +drohan +drivers +drinski +driever +drewer +dressen +drehmer +drawe +drapkin +draney +drahota +dowers +dowdall +dovenbarger +dousay +douin +doughan +doucett +douce +dorshimer +dorsaint +dorries +dorosky +dorl +dorich +dorenfeld +dorcelus +dool +donoso +donnick +donnely +donart +donalds +donaghey +donaghe +dominges +domebo +dollings +dolejsi +doggette +doell +dockwiller +dockal +dobosh +dobis +dobiesz +dluhy +dixons +divin +diventura +divenere +divelbiss +dittrick +ditommaso +dirosa +dircks +diogo +diodonet +dinning +dininno +dimodica +dimitroff +diminno +dimassimo +dillie +dilan +digsby +digrande +digmann +digirolomo +digian +digiacinto +dietzen +dietlin +dietert +diersen +dienst +dieffenbach +dicorcia +dickhaut +diberardino +diab +dhein +dhar +dhamer +dezan +dez +dewispelaere +dewhirst +devonish +devincenzo +devillez +devany +devalcourt +deubler +dettori +detone +detommaso +detoma +desue +destree +destephen +desso +desselle +desimoni +desadier +derham +derfler +dercole +derasmo +depugh +deporter +depolito +depa +deninno +deni +denenberg +denaro +denardis +demry +demro +demmel +demme +demiel +demeritte +demarzio +demaline +demaine +deluco +delton +delsordo +delosa +delongis +delois +deloff +delmuro +delmoro +delmonaco +delmage +dellen +dellaripa +dellamore +delhierro +delfuente +deleppo +delemos +delea +delcarmen +delaura +delanuez +delang +delamarter +delamare +delage +delacuesta +dekorte +dekenipp +dekany +deinhardt +deily +deierlein +degravelle +deglow +degler +degiulio +defoore +defonce +deflorio +defiore +defilippi +deed +dedeke +dedecker +dedaj +decost +decillis +dechellis +dechaine +decarr +decaprio +debutiaco +debski +debry +debruhl +debouse +deblase +debey +debenedetti +debacker +deang +deandrade +deadmond +deacy +daykin +dayhuff +dayal +davion +davidsen +dautremont +daughrity +daubs +datwyler +datko +dasmann +daruszka +darugar +darroch +daro +darkis +daricek +daras +dar +dapoz +dapinto +danuser +danoff +dankmeyer +danesi +danesh +daneker +dammen +damien +damberger +dalmoro +dallmier +daller +dalka +daliva +dahline +dahlhauser +daguerre +dagrella +dagraca +dagesse +dage +daehn +dado +dabbraccio +dabato +czolba +czepiel +czelusniak +czechowski +czarny +czar +czapski +cywinski +cyran +cypret +cwiek +cuzzort +cuzzi +cutty +cutrone +cuthrell +cuthill +cutbirth +custeau +cushingberry +curvey +curson +currell +curly +curll +curdy +curcuru +cupstid +cuoco +culverson +culnane +culliver +cullivan +culleton +cuddeback +cuckler +cubillo +cubias +cua +cryar +crutsinger +crusan +crupe +crummie +cruice +cruea +crowthers +crowers +crowdis +crovo +croson +crosno +crosdale +cronwell +cronon +crocetti +crnich +cristal +crisson +crismond +crighton +cridland +crickard +creten +cretella +crespino +cremins +cremers +creehan +creecy +credell +cranney +cranker +craker +craffey +cozzy +coyazo +coxum +cowdin +covino +coven +courtenay +course +courier +courchene +coup +couley +couchenour +cotugno +cottongim +cotti +cotillo +costine +costain +cosmo +coslan +cose +coryea +cortwright +corsoro +corrente +correl +cornford +corneluis +cornelious +corneau +corne +corkins +corippo +corgiat +coreil +cordwell +cordovano +cordill +cordano +corazza +coran +coppess +coonrad +coonfare +coomber +cooksley +cookis +coodey +contrino +contee +consorti +console +conorich +conole +connoly +connley +connington +connie +conness +conly +conkright +coner +conchas +comrie +compston +compagno +comnick +commiskey +commer +comiso +comish +comden +colondres +collica +colleen +colle +collaer +colinger +colford +colao +colanero +cohens +cofresi +coerver +cockriel +cockran +cockerell +cobham +cobert +cobern +cobell +clunie +clubs +clubbs +cloutman +clise +clippinger +clerkley +cler +clemmens +clemen +cleare +cleamons +claycamp +clawges +claverie +clarkston +clarity +clantz +clakley +clain +cizek +ciuffreda +citrone +ciraco +cinotto +cini +cinadr +cilento +cilano +cihon +ciganek +cieslinski +cicoria +cicco +cibula +ciarrocchi +ciak +ciafardoni +chubbs +chrzan +christophel +christoph +christoforou +christel +christan +chreene +chrabaszcz +chrabasz +chowhan +choules +chorney +chorley +cholico +cholewinski +cholakyan +chojnowski +chlebek +chittam +chiszar +chisam +chirafisi +chiprean +chinetti +chimes +chiera +chicon +chiarelli +chiaravalle +chiappetta +chesner +cheser +chesbrough +cherubino +cherrette +cherpak +chelf +cheesebrough +cheeney +cheely +chean +cheak +chavana +chauvette +chatt +chasser +chaskey +charriez +chappie +chappelear +chapparo +chapek +chanoine +chandley +challenger +challberg +challacombe +chaleun +chainey +chaffey +cetta +cerza +cervenak +certosimo +cerruti +cerqueira +cernohous +cereceres +ceovantes +ceo +centrich +centore +cellucci +ceglinski +ceconi +cecilio +cecchinato +cecchi +cazorla +cayne +cayabyab +cavill +cavicchia +cavez +cavener +cavasos +cavaness +cavalcante +caulk +caudel +cattano +catrett +catlow +catella +cataquet +catalino +cataline +catalanotto +catalanatto +cata +castenanos +castelo +cassiday +casparian +casillo +casewell +casarrubias +casalman +casal +carvalno +carskadon +carrus +carrison +carriker +carrazco +carratala +carpanini +carovski +caroli +carne +carmella +carlis +carfagno +carethers +carella +cardonia +cardno +carda +carcieri +carcano +carcana +carboneau +carbon +caravantes +carattini +caramanica +capriola +cappelluti +capossela +caponi +caperon +caper +capati +cantv +cantore +cantell +cantatore +cantarella +cantadore +canslor +canonico +cannonier +cannone +cannavo +cannatella +cangiano +campoli +campellone +campean +campanile +camera +camcam +cambel +calta +callsen +callarman +calicott +calhaun +calegari +calco +calciano +calabretta +cake +cairone +cahela +cagliostro +caflisch +cafferky +caetano +cadice +caddle +cadarette +cackowski +caccia +cabrena +cabotaje +caborn +caberto +bystrom +byndon +buzek +buysse +bux +buttrick +buttaro +butscher +butsch +butor +butman +buteux +butchee +but +bustard +busta +bussy +busson +bussing +bussa +busi +buseman +buschner +buscaglia +burttram +burth +bursch +burnsworth +burland +burkowski +burglin +burgdorfer +burdman +burau +buran +burakowski +buquet +buonomo +buntyn +bungo +bunche +bunal +bult +bulliner +bullaro +bulkeley +bulcao +bula +buisson +buissereth +bugni +buetow +buesgens +budziszewski +budinich +buddington +buchtel +buchli +buchert +buchar +buben +brzuchalski +brummell +brull +brudnicki +brucz +bruchman +brubach +brownwood +browen +browe +brossett +brosco +brookshear +brookfield +bronstad +bronsky +bronaugh +bron +brohawn +brogna +brodzik +brodsho +brodowski +brodnicki +brodell +brod +brockney +broas +broadrick +briz +britschgi +brint +brinich +bringard +brindamour +brincat +brimfield +brillant +brilhante +brihon +brignoni +brightful +briggman +bried +brickle +brickel +brezeale +brewen +breutzman +bretado +brester +bresko +brennon +brennaman +breniser +brendon +brems +breisch +breidenstein +brechtel +brea +brazington +brazen +brayer +brawer +bravata +braune +braunbeck +braue +braucht +braseth +brantly +branter +branski +brandler +bramham +brahney +bradac +brackley +brackey +brackemyre +brach +boyarsky +bowlan +bowhall +bowdre +bovie +bouyea +boustead +bourgeault +bounthapanya +boultinghouse +bouillon +boudrie +boudinot +bottgenbach +bottari +botos +bothof +botha +bosten +bostelmann +bossley +bossick +bossen +bosquet +boscio +bosche +bosa +borski +borsh +borowik +borom +borke +borgerding +borgatti +bordwine +booser +bookbinder +bookard +boock +bonte +bonomi +bonning +bonito +bonillas +bondura +bombich +boltinghouse +bollozos +bolliger +bollie +bolka +bolitho +boldenow +bolch +bolay +boissoneault +boisjolie +boisclair +boie +bohrman +bohley +boglioli +boghosian +boggus +boggiano +bogden +boey +boesenhofer +boerst +boerma +boenisch +boemig +boebinger +boday +bodamer +bocklage +bocchini +bobseine +bobian +boberg +bobek +blyler +blumenstein +bloyer +blotter +blore +blomme +blomdahl +bliske +blinston +bliek +blessman +bleggi +bleeker +bledsaw +blauch +blaskovich +blankley +blankenberg +blanken +blakelock +blaida +bjorgen +biven +bitzel +bittman +bitonti +bissen +bisom +bisher +birman +birky +birkes +bippus +bintz +bintner +bintliff +binnie +binks +binkiewicz +binienda +bingley +bilotto +billheimer +billen +billeck +billeaudeau +bilinski +bilello +bild +bihari +bigda +biez +bierwirth +bierle +bierbower +bienenstock +biemer +bieler +bielak +bidle +biddleman +biddiscombe +bicknese +bickerton +bickelhaupt +bichsel +bibles +bibian +biase +biancuzzo +biancaniello +biamonte +bia +bhatnagar +bhardwaj +bhan +beyett +bewig +beuchat +better +betsill +bethey +betenbaugh +betance +betacourt +beske +besendorfer +besemer +besco +bery +bertran +bertling +bertie +bernson +bernosky +bernon +berninger +bernes +bernecker +bernasconi +bernardin +berlo +berliew +berky +berhe +berhalter +bergsjo +bergholm +bergener +bergeman +beraun +benward +benusa +bense +bennage +benischek +benion +beninato +bengel +benedek +bene +bendzus +bendler +bendit +benderman +benberry +benallie +bemrich +belyea +beltrain +belter +bellue +bellocchio +bellisle +bellipanni +bellion +bellessa +bellavia +belay +bejjani +beisser +beiriger +beik +beien +behymer +behrenwald +behanna +beed +beechum +beechner +bednarik +bednarek +bedenbaugh +becwar +beckton +beckom +bech +bebo +beatie +beat +bearman +beaner +beakley +beahan +beachamp +bazzi +bayman +bayardo +bayala +bawcum +bavier +bauswell +baures +baune +baumgarter +bault +baughey +baugatz +bauernfeind +bauerlein +bau +batun +battistone +batteen +batko +batistich +bater +batcheller +batarse +bastow +bassuk +bassolino +bassel +bason +basilone +basich +bascle +bascetta +bartush +bartrum +bartlet +barthelmes +bartberger +bartash +barsoum +barsanti +barrott +barrom +barriner +barnhurst +barnell +barkle +barkes +barillaro +bargerstock +barganier +baremore +bardney +barda +barbot +barbie +barayuga +barager +bantz +bandulin +banasiak +balzarini +balwin +balton +balsiger +balmos +balmir +ballestero +ballek +balick +balian +balestra +balensiefen +balduf +balckburn +balasa +balafoutas +baksi +bakowski +baklund +bakko +bakey +bakanauskas +baj +baio +bainard +baima +baillet +baich +bahrmasel +bahrke +bahoora +bagsby +bagger +badena +badders +backfisch +bacik +bachler +bachleda +bachhuber +bachert +babiracki +baatz +azzarito +azzarella +azulay +azotea +azeem +ayoob +ayola +ayles +ayersman +ayaia +axthelm +ax +awtry +avrett +avilar +aveni +avellino +aurelia +aumend +auletta +augustson +augustave +aughe +auerswald +aubrecht +athalone +atanacio +atamian +astrologo +astrella +aspinall +asman +ashlin +ashenfelter +aschenbrener +ascheman +ascenzo +asante +asa +arvayo +artmann +artice +art +arslan +arrott +arrojo +arrizola +arriano +arrendell +arps +aronstein +aronow +aronica +arntz +arnst +arnio +arne +armengol +armantrout +arlt +arkadie +arjune +arismendez +arimas +aries +ariel +argandona +arflack +areola +arenales +ardman +arciga +arciba +archacki +arcaro +arcano +arbogust +arauz +aranas +aquil +aquero +apresa +appiah +appert +apostal +apodace +apadoca +antrobus +antoniuk +antione +antinarelli +antich +anslow +ansbro +annicchiarico +angleberger +angelson +angello +andruzzi +androsky +androlewicz +andrion +andringa +andracki +andra +ancelet +anastas +anast +anagnost +amsley +amsdell +amsberry +amsbaugh +amoruso +amoa +amici +amesbury +ambrosia +ambrogi +amack +alvia +alvaro +alvanas +altrogge +altomare +altmire +altenbach +alsheimer +alquisira +alouf +aloisi +aloe +almiron +allford +allex +allery +allenbach +allegrucci +alig +alicuben +alfisi +alferez +alfandre +alf +alexion +alevras +alessandrini +alesi +alescio +alegre +alea +aldecoa +alcini +albrittain +albrashi +alawdi +ala +aksamit +akima +akel +akahi +ajose +ajayi +aivao +aiu +ainge +ailshire +aidt +aicklen +ahuja +ahr +aholt +agle +agamao +affeld +aeschbacher +aeling +adriance +adkin +adhami +adeyemo +ades +adelgren +addicks +adamitis +ada +acor +acimovic +accomando +accola +acampora +abuaita +abshear +abrantes +abramovich +abrachinsky +abilay +abellera +abeles +abdula +abdon +abbed +abati +abascal +aavang +aadland +zylka +zwolak +zwingman +zwerschke +zwack +zurin +zupp +zumbrunnen +zukoski +zukor +zukas +zuanich +zoumis +zoulek +zou +zorra +zorich +zomorodi +zolty +zolondek +zolnoske +zoldesy +zoldak +zocklein +zlotnik +ziraldo +zipf +zinsli +ziniewicz +zindell +zin +zimmerebner +zimmel +zimm +zills +zilla +zilka +zietz +zietlow +ziemski +zielesch +zieler +zieglen +ziegenbein +ziegelbauer +ziegel +ziech +zicker +zicherman +zich +ziccardi +zgoda +zeschke +zerko +zerhusen +zepka +zents +zeni +zeme +zematis +zema +zella +zelkin +zelenski +zeilinger +zeidan +zegarelli +zeanah +zdon +zbikowski +zazula +zavesky +zavasky +zaruba +zarrineh +zarrillo +zarraluqui +zarling +zaring +zaretsky +zarebski +zanini +zanin +zangl +zaner +zand +zampieri +zaltz +zaloudek +zall +zalk +zalar +zakowski +zajc +zahran +zahnen +zagroba +zagel +zagara +zagami +zaffuto +zachmann +zachariades +zaccagnino +zaccagnini +zaborski +zabloudil +zabarkes +yvon +yusef +yuricic +yuill +yuenger +yuasa +ysbrand +yourshaw +younkers +youngdahl +youngblut +youkers +youkanaa +yorkey +yoneyama +yonamine +yoeckel +yodis +yocius +yocham +yobst +yeubanks +yetto +yerigan +yerbic +yentsch +yennard +yemchuk +yax +yaun +yasurek +yasui +yaskiewicz +yantzer +yantz +yanosky +yanek +yandle +yance +yanagi +yambao +yamakawa +yagoda +yaekel +yackeren +yacavone +yacano +ximines +xaimoungkhoun +wysock +wyont +wynott +wynans +wylde +wyett +wydner +wurzbacher +wulfing +wruck +wroe +wrobliski +wrobbel +wrights +wraspir +wrape +woytowicz +woy +worthan +worstel +worsfold +worrel +worbington +wools +woollen +woolems +woodmancy +woodhull +woodgate +woodfield +woodcox +woock +wonsik +wolven +wolslegel +wolny +wolma +wollyung +wollin +wolley +wollan +wolkow +wolke +wolever +woleslagle +wolansky +wojnicki +wohner +wohlfahrt +wohler +wloch +wittlin +wittkopp +wittenborn +wittels +withiam +withfield +wisz +wissel +wisseh +wislocki +wiscombe +wischmeyer +wischman +wirebaugh +winzelberg +winterstein +wintersmith +winterroth +winrich +winograd +winlock +winley +winkley +wings +winfred +winebaugh +windover +windly +winarski +wimbs +wimber +wiltgen +willmschen +williver +willinghurst +williamston +willenbrock +willars +willamson +wileman +wileczek +wildenberg +wildeman +wilcutt +wilch +wilby +wilbers +wikstrom +wigman +wigle +wigelsworth +wietzel +wiesneski +wienert +wienecke +wienandt +wieloch +wielgosz +wiedmann +wieckowski +wiece +wieand +widmar +widhalm +widgeon +widerski +widdows +widdop +widdison +widby +wida +whyne +whyel +whybrew +whittman +whittall +whitler +whitinger +whitewater +whitescarver +whitemarsh +whitecloud +whit +whistlehunt +whinnery +whillock +while +whilby +wheldon +wheatcroft +whapham +whaite +wettlaufer +wetterer +wettach +wetsel +wethern +westrum +westlie +westgaard +westerhof +westerfeld +westad +wesly +wesberry +werring +werre +wernz +wermter +werkmeister +werbelow +wentzlaff +weniger +wengreen +wendolski +wendelberger +wempa +weltzin +welti +weltch +wellnitz +wellenstein +wekenmann +weitze +weitman +weisholz +weishar +weisbaum +weinraub +weinbauer +weinbach +weidig +weiderhold +wehrwein +wehrs +wehrly +wehnes +wehn +wegge +weerts +weemhoff +weekey +wedman +weder +weckman +weckhorst +weaklend +wauters +wauer +waud +wattenberg +watte +watling +waszkiewicz +wasmus +wasilko +washor +wartchow +warshauer +warsham +warrender +warnstaff +warmuth +warmington +wardrup +wardhaugh +wardall +warchal +warboys +wanty +wanous +wanlass +wangstad +waneka +wandless +wandel +wanda +wamser +wamhoff +walvatne +waltemeyer +walsingham +walljasper +wallet +wallerich +walkling +walkers +walezak +waldroff +waldhoff +waldall +walbright +walat +wakita +waka +waisner +waiki +waiden +wagle +wagenblast +wadusky +wadden +waclawski +wackenhut +wackenheim +wachal +waananen +waack +vy +vukcevic +vreugdenhil +vreeman +vrazel +vranes +vranek +voytek +voves +vormelker +vorachek +vontungeln +vonniederhaus +vonner +vonhagen +vondrak +vondielingen +vonasek +vonallmen +voltaire +vollucci +vollick +vollenweider +volante +voitier +vogts +vocu +voci +voccia +vliet +vliem +vizarro +vizard +vittorini +vitro +vitolas +vititoe +viteo +visnic +visher +visel +viscia +viscera +vis +virrueta +virola +viren +vinz +vinke +vinger +vind +vinagre +viltz +villwock +villifana +villiard +villetas +villasana +villarin +villante +villacana +vile +vilcheck +vilardi +vigueras +vigoren +vignovich +vignaux +vignarath +vigier +vieweg +vietti +vietor +viegas +viebrock +vidals +victorin +vicsik +vicic +vicens +viapiano +vetsch +vetri +vertiz +versluis +verrilli +verrelli +verrecchia +verni +vernetti +vermeer +verling +verlato +verkler +verkamp +verghese +verducci +verant +venzeio +venturella +ventress +venton +venhorst +venerable +veneman +ven +velverton +velunza +velmontes +vellutini +vellekamp +veleta +veldkamp +velazques +veino +veigel +veeneman +vavro +vauters +vattes +vaszily +vastakis +vasiloff +vasilauskas +vasconcelos +vars +varos +varnon +varkey +vares +varenhorst +vardy +varcoe +vanwye +vanwoert +vanwieren +vanvickle +vantreese +vansyckle +vanstrander +vansteenburg +vanstee +vanslander +vanproosdy +vanpoucke +vanpoppelen +vanpatton +vanosdel +vannelli +vanmiddleswor +vanloh +vanlith +vankoten +vanisouvong +vanholland +vanhekken +vanharlingen +vanhandel +vangemert +vaneyck +vanert +vaneps +vanegdom +vandesteene +vanderschaege +vanderkam +vanderheiden +vandergriend +vanderark +vandeputte +vandenbergh +vandegraaff +vandebogart +vandamme +vandalsen +vandagriff +vanclief +vanboven +vanbecelaere +vanartsdalen +vanaller +vanakin +vanabel +valrie +valrey +valotta +vallangeon +valladolid +valaitis +vala +vair +vaidya +vaid +vagt +vagle +uyeno +uson +us +urwin +urtado +ursino +urry +urquiza +urps +urmeneta +urlaub +uribazo +urhahn +ure +urch +urbanic +urata +urankar +ur +uppinghouse +unthank +unland +unikel +ungvarsky +ungerleider +ungerecht +underkoffler +umlauf +umbdenstock +ulrick +uliano +uldrich +ulch +ulberg +uknown +ukena +uk +uhri +uhde +udley +uboldi +tzeremes +tysor +tyrus +tyrol +tyl +tyksinski +tycer +tyberg +twitt +tweden +tuy +tuton +tuter +tustison +tuschhoff +turso +turrigiano +turowski +turnbo +turnball +turlich +turli +turla +turkin +turke +turi +tuong +tulk +tulip +tugman +tuggles +tufano +tucknott +tuccillo +tubeszewski +tuason +tsuzuki +tsunoda +tschannen +trytten +trybala +truskowski +trueba +trueax +truden +trucchi +trotti +trongone +tromble +tromblay +trokey +troiani +troglin +trodden +troccoli +tritz +tritch +trischitta +trisch +trippet +triplette +trinca +trimmell +trilling +trieger +treworgy +trevorrow +trevillion +trevigne +trevett +tretter +treston +trepagnier +trentinella +trenkle +trenh +trenbeath +tremelling +treider +treib +treftz +tredennick +trecroci +trebil +traves +traversa +tratar +traster +trasport +trank +trampe +trammer +trame +trachte +toyoshima +towley +tovias +touvell +tout +toussant +tourikis +toten +tosten +tosic +tosches +tortoriello +tortorice +torstrick +torset +torrijos +torrie +torress +torred +torra +torma +torkildsen +toppi +toporek +topolosky +topick +topez +toper +toncrey +tompsett +tompkin +tomory +tommolino +tomjack +tombs +tombrello +tomaszycki +tomaski +tolzmann +tolston +tolosky +toldness +tokuoka +tokihiro +tokay +tok +tojo +tointon +tohill +togni +tognazzini +todeschi +tobola +tobeck +toala +toadvine +tllo +tkacz +titchener +titch +tissot +tiso +tirri +tipka +tintle +tinneberg +tinius +tinelli +tin +timmreck +timmerberg +timinsky +timi +timchak +tillberry +tilgner +tiff +tieszen +tiemeyer +tiemens +tiell +tiehen +tidey +tick +ticas +tiboni +tiberio +tibbert +thyne +thurton +thurau +thune +thrune +threets +thorngren +thornbrugh +thorin +thongdy +thommarson +thoene +thoben +thoams +thixton +thistlethwait +thingvold +thiesfeld +thierauf +thielbar +thiebeault +thiara +thews +theophilus +theodoratos +thenhaus +theam +thay +thalmann +thake +thady +tevlin +tevebaugh +testen +tesseneer +tervort +terri +terrey +terres +terrasas +terney +termeer +terlecki +terheggen +terhark +terhar +terepka +terault +terando +teppo +tepler +teper +tent +tenpas +tennill +tennett +tenley +templer +tempe +temp +teltschik +telschow +telle +tekippe +teitsort +teitenberg +tei +tegarden +teffeteller +tefera +teesdale +teemer +teekasingh +teddick +tebay +tebar +teats +teano +teagues +teachman +teabo +tchakian +tazzara +tayor +tavorn +tavira +taverna +tave +tautuiaki +tatters +tatevosian +tassey +taschereau +tarzia +tarring +tarrien +tarras +tarkenton +tariq +tardio +tarascio +tara +tappeiner +tannen +tankersly +tanious +tangren +tangredi +tangert +tamulis +tamburrino +tambasco +tamargo +tamanaha +talluto +taki +takeshita +takemura +takaoka +tajiri +taintor +tahu +tags +taglieri +tafel +tadiello +tacket +taborda +tabolt +tabisola +tabian +taback +szymansky +szwejbka +szweda +szufat +szubinski +szerlong +szekula +szczygiel +szczepanek +szalay +szafryk +syrek +syphard +synan +symmonds +sydner +swirsky +swires +swietoniowski +swickheimer +swets +swetland +swenk +sweetin +swavely +swatt +swatsworth +swatski +swartzmiller +swartzbeck +swartzbaugh +swansen +swalley +swaisgood +swails +swaggert +svrcek +svinth +svetz +svetlik +sutulovich +suttell +susswein +sussex +susor +susoev +susich +susana +surwillo +suran +sunn +sunkel +sundling +sundholm +sumsion +sump +summar +sumlar +suminski +sumi +sumas +sulzman +sultana +sullinger +suleski +sulcer +sul +sukeforth +suing +suglia +sugiki +suggett +sueltenfuss +suders +sudar +suchecki +sucharzewski +suchanek +subler +suben +subasic +styborski +stvil +stumme +stulick +studyvin +stubson +stuble +stubits +stubenrauch +strysko +struggs +strudwick +strowd +stroub +stroth +stropko +stroinski +strnad +stritzke +stritzinger +strittmater +strieker +strickert +strength +stremlow +stremel +strejcek +streitmatter +streif +streb +streams +straws +strausberg +strathy +strathman +strater +straseskie +strapp +stranger +strande +stramiello +strakbein +strachn +stoyer +stoyanoff +stowman +stowbridge +stove +stoutt +stoutenburg +stouer +stouder +store +stoppkotte +stopa +stolts +stolinski +stolecki +stole +stojanovic +stofsky +stoffregen +stoffels +stoffa +stoesz +stodolski +stockett +stittsworth +stipek +stinett +stillion +stillinger +stiel +stiehl +stiegler +stieg +stickrod +sticht +stibbins +stevener +steudeman +stetzel +sterr +sternal +sterback +stephco +stenman +stemmerman +stemme +stemarie +stelting +stellings +steir +steinlicht +steiniger +steinbrenner +steidinger +stehney +stehly +stefka +steffel +stefanovich +steeno +steeneck +steenburgh +steckline +steckelberg +stazenski +stavis +staum +stauffacher +stauder +staude +statzer +stasinos +starwalt +starrs +starnauld +starek +stapleford +stapf +stapels +stansifer +stanojevic +stanick +standring +standrew +standke +standford +stancle +stanciel +stamnos +stamison +stallons +stallion +stallbaumer +stailey +staie +staiano +stahnke +stahle +stageman +stacken +stachecki +stableford +stabb +sramek +squines +spurzem +sprock +springate +spreng +spratte +sprang +sprake +spotwood +splain +spiwak +spitznogle +spirito +spirek +spingola +spincic +spillett +spika +spigelman +spielmann +spetter +sperl +spenard +speilman +speigel +speice +speach +spaugh +spatafore +spatafora +spar +spanski +spannaus +spanish +spanfellner +spalinger +spagnolia +spadea +spadafore +spadaccini +spachtholz +spach +spacek +sozzi +sowels +soulasinh +souffront +soucier +sotolo +soteros +sotero +soter +sossaman +soshnik +sorrick +soron +soroa +sornsen +sorgente +sordahl +sonza +sontheimer +sonstroem +sonoski +sonnenfeld +sonderup +somani +soman +somalski +solymani +solton +soloveichik +solmonson +sollberger +solkowitz +solimini +soleman +solders +soldavini +solanki +sohm +sodek +sode +socks +sockalosky +sochan +sobilo +soapes +snyders +snowman +snowdy +sniffin +snetting +snellman +snellenberger +snellen +snellbaker +sneathen +sneath +smyrl +smull +smolko +smithheart +smiht +smestad +sluter +slupe +slomkowski +slomka +slomba +sliz +slipp +slim +slightam +sleper +sledz +slechta +slaughterbeck +slaughenhoupt +slaight +sladick +slader +skye +skupski +skroch +skripko +skrine +skreen +skradski +skorski +skornik +skokowski +skok +skocilich +skinnen +skillington +skemp +skay +skattebo +skagerberg +siwik +sivik +sitar +sitaca +sission +sissac +sisney +siruta +sirmon +sirkoch +siriano +siracuse +sipler +sipho +sinkovich +sinkey +sinistore +singo +sinclaire +simunovich +simuel +simril +simpton +simpliciano +simoson +simonis +simoncini +simister +simison +simenez +simco +simcheck +silvi +silveri +silvano +silletto +sillavan +siles +silbernagel +sigwart +sigona +signs +signaigo +sigmond +sigars +siemek +siem +sieloff +sieligowski +siefke +siebeneck +siebenberg +siderman +siderine +sidberry +sicilia +sichta +sibrel +sibell +sibayan +shyu +shvey +shuter +shumski +shulund +shulte +shuker +shugars +shufford +shubrick +shub +shouldice +shotton +shotkoski +shost +shortsleeve +shorette +shopen +shont +shonerd +shone +shomin +shomer +sholl +shoger +shirts +shirota +shinholster +shindle +shinaberry +shimura +shimsky +shimo +shillinger +shilleh +shihadeh +shierling +shewbridge +shevitz +sheumaker +shettle +shers +sherren +shern +sherling +sherle +sheridon +sherdon +shelter +shelmon +shelling +shelko +sheline +shelhamer +shekey +shekarchi +sheinberg +shehata +sheffo +shebchuk +shearing +sheaks +shazier +shayne +shawnee +shawhan +shaud +shastri +sharr +sharlin +shark +sharits +sharf +share +shapskinsky +shape +shankland +shames +shalhoup +shaftic +shadiack +shackle +shabala +sevick +sevedge +seurer +sette +servan +serva +serrett +serrand +serisky +sering +serie +serianni +sereda +sequin +senti +senosk +senno +senner +senna +senerchia +sendro +sencabaugh +semonick +semetara +sembler +selvaggio +seltzen +selser +sellek +sellberg +selking +seliba +selfe +seki +seifarth +seielstad +sehorn +sehl +segur +segrave +sefcovic +seeton +seek +seecharan +seeberger +sedman +sedano +secunda +seburg +sebold +sebastion +seate +seashore +seard +seang +seaney +seace +seabert +sczygiel +scurti +scullen +scroggy +scripter +scowden +scorsone +scoleri +scocca +scire +sciotti +sciera +scibilia +sciabica +schwisow +schwier +schweinert +schweinberg +schweiker +schweigart +schweickert +schwass +schwarzenbach +schwarts +schwarm +schwamberger +schwalenberg +schwabenbauer +schwabauer +schuttler +schutjer +schuring +schure +schuppert +schuner +schulthess +schulteis +schulle +schuhmacher +schuermann +schuepfer +schuele +schrott +schrope +schrauder +schrandt +schouviller +schonert +schonack +scholzen +scholnick +schoffstall +schoenthal +schoenstein +schoenhut +schoenhard +schoeneman +schoemer +schoborg +schnicke +schneidtmille +schneiders +schmunk +schmoyer +schmeider +schmale +schlottman +schlitzer +schlipp +schlink +schliesser +schlieper +schlesselman +schlensker +schleis +schlein +schleck +schlabaugh +schiver +schirpke +schindel +schimler +schiltz +schillings +schiffelbein +schiebel +schiaffino +schettig +schetrompf +schessler +scherler +scheppe +schepens +schellman +schellhammer +scheirman +scheibelhut +schei +schech +scheaffer +schattner +schatt +scharte +schappell +schanding +schanbacher +schan +schaming +schamburek +schaeffler +schadle +schadegg +schabot +schaberg +schaadt +scerra +scercy +scattergood +scarset +scarrow +scarritt +scarpaci +scarles +scarce +scanlin +scalice +scali +scahill +sazama +saysithideth +sayres +sayavong +sawlivich +sawczyszyn +savo +savina +savilla +savela +savasta +saurel +saupe +sauberan +satunas +sattley +satterley +satiago +satchel +saska +sarvey +saroukos +sarnowski +sarnoff +sarli +sarley +sarelas +sardi +sarconi +sarbacher +saragusa +saraceno +sar +sappenfield +sanzotta +santy +santorella +santopolo +santin +santiesteban +santhuff +santell +sansburn +sanpaolo +sanocki +sannon +sannella +sanlucas +sanjabi +sangrey +sangi +sanghvi +sangh +sanfiorenzo +sandrowicz +sandoual +sandora +sandlian +sandi +sandholm +samuelsen +samu +sampedro +samorano +samok +samide +samber +samain +saltzgaber +saltonstall +saltern +salte +salonia +salmond +sallas +saliva +saler +salek +saldibar +salabarria +sakon +sakelaris +sake +sajorda +sajor +sahni +sagoes +saglimbeni +sagehorn +sagayaga +safdeye +safa +sadlon +sadbury +sadahiro +sache +sacavage +sacarello +sables +sabean +sabates +sabataso +saager +saa +rzucidlo +rzeszutko +ryther +rylant +ryks +ryherd +ryhal +rygalski +rybacki +rviz +ruys +ruuska +ruttman +ruttinger +ruts +ruter +rutana +rusten +russnak +rusinko +rusi +rushiti +rushia +rushdan +ruscetti +rusboldt +ruppenthal +rupke +rundahl +rund +rummer +rummans +rumler +ruminski +rumfola +rull +ruise +ruggle +ruescher +ruegsegger +ruegger +rudzik +rudney +rudisail +rudis +rudduck +rucky +ruckdeschel +rubins +rubenzer +rozo +rox +rowzee +rownd +rowey +rowcliffe +rovinsky +roup +rottner +rothmiller +rothgery +rothbart +rotenberg +rotando +roswick +rosu +rossum +rossetto +rosseter +rosselli +roskos +roskopf +rosenholm +rosencranz +rosenbrook +rosella +rosebaugh +rosbough +rosan +roofe +ronson +ronhaar +rones +ronchetto +romeno +rombs +romanoski +romanini +romanick +roloson +rollock +rollheiser +rollans +rold +rolark +rokisky +roja +roik +rohaley +rognstad +rofkahr +roethel +roessner +roesser +roehrman +roehrenbeck +roegge +roefaro +rody +rodrigo +rodricks +rodino +rodillas +rodia +rodenbaugh +rodell +rodeiguez +rodarta +rockenbach +robley +robes +robertello +robello +robella +robak +roarx +rivlin +rivira +rivena +ritzert +ritell +ritcheson +riska +risberg +ripke +rinkel +riniker +ringman +ringlein +ringelheim +ringbloom +rinde +rincones +rimson +rimar +riliford +rihn +rihanek +rigoni +riggott +riffon +rievley +rieve +riesenweber +rieg +rieff +riedell +riechers +rieber +rieben +riebeling +ridpath +ridler +riddock +rickson +rickmon +rickley +rickie +richrdson +ribot +riblet +rhyme +rhoney +rhed +rhead +rezek +reynvaan +reynoza +reye +rexwinkle +revord +reven +reveal +reutlinger +reuland +reuer +retzler +rettke +retterbush +retort +reth +resureccion +restifo +resnikoff +rerko +repsher +repress +reppell +repinski +repenning +renze +rennix +renning +renney +rennell +renfer +rener +rendino +renaker +remmen +rementer +remenaric +relkin +reiterman +reist +reisser +reisling +reisert +reise +reio +reinmiller +reine +reill +reigner +reifler +reifel +reidenbach +rehnquist +rehler +rehfield +rehfeldt +rehberger +regler +regel +regehr +refsell +reen +reem +reeher +reech +reeber +redstone +redo +redish +redhage +redenz +redell +reddrick +redder +reckley +reckleben +recine +rebusi +rebuldela +rebera +rebell +rebeles +reavley +reau +reatherford +reaney +reaid +reagans +reado +razinger +razey +raza +rayside +raymos +raygosa +rawding +raw +ravens +ravenhorst +rav +rauzman +rautenberg +rausin +rauner +raudebaugh +rattner +ratleff +rathmell +rathgeb +ratermann +rataczak +rasher +rashdi +rashada +rasbery +rarang +rapose +rapa +ransick +ranos +rankhorn +raniero +rang +randzin +rancher +rances +rancatti +ramoutar +ramnarase +ramlakhan +ramiro +ramiriz +ramez +rameriez +rambus +ramaswamy +ramagos +ramadanovic +ramadan +ralko +ralat +rakel +raju +rajtar +raja +rairdon +raimo +raif +raiche +raheja +raheem +rahall +raguso +rafanan +rafalko +raes +radzavich +radune +radulescu +raduenz +radsek +radom +radell +rackett +racilis +rachi +rach +racedo +rabold +rabner +rabern +rabenstein +rabelo +quintas +quinlisk +quine +quincey +quilantang +quicksey +quereto +quelette +quaresma +quann +quall +quails +quaas +qadir +pytlovany +pybus +putaski +purwin +purter +purple +purol +purkiss +pummel +pults +pultorak +pullian +puller +pulham +puletasi +puidokas +puhuyaoma +puffinburger +puesey +puelo +puddephatt +pucillo +puc +przepiora +prys +pruzansky +pruyn +prust +prusinski +prus +pruette +provis +provine +proue +protz +prosonic +prophett +pronto +pronovost +proksch +prok +proietto +proia +proenza +probus +prizzi +privalsky +prisock +printy +primozich +priefert +pridham +preus +prettner +prester +pressel +preskar +premer +premeaux +preisinger +preisendorf +prehm +pregeant +preedom +pralle +prag +pradel +prabhakar +poyser +poupard +potterson +pottebaum +potolsky +poto +potes +postlethwaite +postin +pospishil +poskus +posik +portsche +portolese +porrini +poro +porietis +poppenhagen +poppen +poppel +pontonio +ponting +pono +pomposo +pomponio +pomplun +pomo +pomeranz +pomella +pomberg +pomares +polucha +polselli +polnau +pollins +pollara +polisky +polio +policz +policar +polchinski +polashek +polakowski +polaco +poitevin +poister +pointon +poinson +poinsett +pogar +poetter +podmore +poczobut +pockette +pocasangre +pobre +plys +plunket +plumpton +pluemer +plover +ploetz +ploense +plocek +plikerd +pleet +pleasure +plazza +plaxico +platko +platania +plassmann +plantier +plantenga +plancarte +plakke +pladson +pizzano +pivin +pittsinger +pittmann +pitsenbarger +pitonyak +pitmon +pitfield +pitek +pitassi +pistulka +pistole +piske +pishko +pisegna +pirnie +pirkey +pippitt +piorkowski +pinna +pinkton +pinks +pinkerman +pinchbeck +pimpare +pilloud +pillitteri +pilakowski +pikus +pikula +pikkarainen +pijanowski +pigao +piette +pietrzykowski +pietryga +pietropaolo +pies +piersaul +pieri +piepenbrink +pieloch +pieffer +picucci +pickl +pickhardt +picini +picerni +picaro +piatak +pianalto +piacquadio +phoun +phonharath +phomsoukha +phommaseng +phinazee +phillippy +phillians +philavong +phernetton +pheonix +phenes +pfotenhauer +pfleiderer +pfleider +pflanz +pfieffer +pfeiff +pfautz +pezzica +pevez +pevehouse +petrunger +petrullo +petrucco +petrson +petrilla +petrides +petrauskas +petkus +petiet +petgrave +peterschick +petaway +pesner +pesiri +pesin +pesa +pervine +pertubal +perschall +perrucci +perow +peroddy +perocho +perno +perloff +peria +pergerson +pereyda +pereria +pereiro +perdzock +perchinski +peraro +peques +pepito +pentek +pentaris +pennison +pennewell +pennacchio +penington +peninger +pengelly +penegar +pencek +penale +penaherrera +pembrook +pelyo +pelligra +pele +pekala +peine +peightal +peers +peerbolt +pedaci +ped +pectol +pecot +pecos +pecorelli +pechart +pebbles +peatry +pearle +peard +peakes +peaches +paywa +paysinger +payes +pawelczyk +pavoni +pavlovic +pavelec +pavan +paullus +pauldo +patuto +patruno +patoine +patock +patka +pata +pastiva +pastick +passwater +passineau +passi +pasquino +pasquel +pasquarelli +pason +paskert +pashley +pashia +partis +partido +parsi +parrill +parolari +parisio +pariser +parents +parduhn +parden +parcel +parbo +paray +papson +pappa +papillion +papik +paparella +papai +paoletto +pantone +pannhoff +pankowski +pangelina +pangallo +panda +panciera +panchana +panasci +panarella +paltanavage +palsgrove +palovick +paloma +palmiotto +palmiero +palmerton +palmerin +pallet +pallesen +pallazzo +palitti +palischak +paliotta +palifka +palenik +palecek +palczewski +palasik +palacious +pala +pahnke +pahls +paguirigan +pagnozzi +pagliarini +paduano +paddison +padavano +pacubas +packingham +packebush +pacius +paci +pacey +pacas +pac +ozolins +ozog +ozminkowski +oyuela +owston +ovsanik +overlie +overbo +oven +ovard +ourso +ouderkirk +ottis +otterholt +otomo +otley +osuch +ostling +ostlie +ostheimer +osterstuck +osterdyk +ostenson +osten +ossowski +osso +osmon +osle +oskins +osendorf +osburne +osawa +ortic +ortenzio +orrantia +orrala +orouke +orone +orofino +orkwis +orizetti +oris +orines +orgovan +orgain +orendorff +orendain +oree +orea +ordner +ordas +orbeck +oravec +opray +ophus +opela +opatrny +opara +oosterhof +onusko +onstead +onorata +onitsuka +onishea +oneel +ondrusek +omundson +omoyosi +omdahl +oltz +olton +olrich +olquin +olp +olmscheid +olm +olivio +oliverson +oliven +olis +oline +olexa +olesnevich +olesky +oleksiak +oldani +olcus +oksen +okolo +okojie +okerblom +okajima +ohrenich +ohms +ohmann +ohland +oguinn +ogiba +ogeen +oge +oganyan +offenbacker +oesterreich +oerther +oelschlager +odore +odonal +odonahue +odiase +odenwald +odens +odear +octave +ockey +ochwat +ochotorena +ochiltree +och +ocejo +ocano +obstfeld +obleness +obiesie +oberloh +oberfell +obannion +oakleaf +oak +nyswonger +nyseth +ny +nuvallie +nusom +nush +nurnberger +nunziata +nunev +nudelman +nucklos +nuce +novik +noury +notik +notari +nosis +nosel +northcraft +northcote +norskog +norrid +norquest +normann +norma +norlund +norley +norcott +norbeck +noonon +nooney +nonaka +nollora +nollman +nolda +nolau +nol +nogueras +nogowski +nogosek +noftsger +noeldner +nocum +nocket +nocar +noaks +niverson +nittinger +nitterhouse +nitkowski +niten +nitchals +nissila +nishiguchi +nippert +nippe +ninos +nine +nimocks +nimmer +nilsby +nill +nikolas +nikirk +niimi +nii +niheu +nihei +nigg +niforos +niezgoda +nieva +niethamer +niesman +nienow +niedermayer +niedecken +nied +niebyl +nie +nicotera +nicolet +nicolaisen +nickolls +nickol +nickleson +nickelston +nichois +nicewarner +niceswander +nicarry +nicar +nhep +ngueyn +nguen +ngov +nghe +newsted +newnum +newer +newburg +newall +nevland +neugin +neuenfeldt +neuby +nestel +nesseth +nervis +nerpio +nenninger +nemzek +nemoede +nemer +nelmark +nellem +neithercutt +neiswander +neisius +neish +neihart +neiderhiser +nehmer +negrisor +negrette +nefzger +neeper +neelon +needels +needam +nealley +nealen +nealeigh +nayee +nawn +navone +navejas +navedo +navar +naud +natiello +nathoo +nasson +naselli +nase +naschke +narez +nares +nappier +napoletano +napihaa +naone +nannini +nannie +nania +nanda +nampel +nalepka +najjar +nahass +naeve +naecker +nadell +myrum +myint +myhr +myerscough +muterspaw +mutana +muszar +mustafaa +must +mussenden +mussen +mushett +musetti +musemeche +musel +muscaro +murrock +murrie +murrain +murilla +murelli +murayama +murai +munzell +munteanu +munt +munshower +munlin +muni +munding +munda +mulvehill +mulry +mulliner +mullice +mullaly +muhr +muhn +mugica +muether +muehlberger +muehlbach +muccia +mrowka +mrotz +mrochek +mracek +moznett +moyse +moxham +mowris +moutoux +moussette +mousley +moun +moulinos +mostrom +mostert +mosses +moskovitz +mosinski +mosgrove +mosebach +moschetto +morway +morthland +morta +morsbach +morreau +morowski +moroles +morlas +morgenstein +morasch +moranda +moralis +moraitis +moraites +moote +moorcroft +montier +montie +montesa +monteros +montefusco +montecalvo +montazami +montaya +monsky +monsegur +monnet +monjaras +moniot +monholland +monet +monestine +monds +mondry +mondo +mondino +momsen +momaya +molski +mollins +molitoris +mokbel +moistner +moilien +mohring +mohrbacher +mogro +moerman +moellman +modero +moczo +mocco +mocarski +mobus +mizukami +miyares +miyahara +miyagishima +mittendorf +mittelstadt +mitsakos +mith +mita +misura +missler +misrahi +misnick +misemer +miscovich +miscavage +misasi +mirich +miravalle +miras +miramon +mioduszewski +mio +minster +minnier +minneweather +minnehan +minkel +miners +mineah +mincher +minatra +minato +minari +minardo +milush +miltner +milster +milovich +milman +millraney +millot +millisor +milliren +millimaki +millich +milland +milkovich +militano +mileti +milek +mildren +milder +milch +milbert +milbauer +milanowski +milanese +mikulecky +mikulak +mikita +mikelsen +mihlfeld +mihatsch +mihalkovic +mihalko +mignogna +migl +miessner +mieras +midcap +mickleberry +michocki +michelman +michales +michalenko +mias +mhoon +mezza +mezquita +mezera +meyette +meyerhoffer +meyerhofer +meury +meuller +mettle +metter +mettee +metta +metroka +metevier +metaxas +mestrovich +messa +mesidor +meschino +meryman +merrett +merrbach +merone +merkling +merickel +mercante +meo +mensinger +menist +menino +menhennett +mengarelli +menez +menesez +mendelowitz +mencl +men +mellors +mellom +mellencamp +mellekas +melkonian +melish +meleski +melero +melchin +melbert +melandez +melander +meisels +meighen +mehtala +mehserle +meholick +mehalic +megna +meginnis +meggitt +meggers +meger +meeter +meeske +meeder +medows +mednick +medich +mediate +median +medez +medbery +medak +mebus +meason +meanor +meager +mcwethy +mcvean +mcthune +mcsweeny +mcspedon +mcsharry +mcravin +mcraven +mcquistion +mcquilkin +mcquaide +mcquage +mcpherren +mcpeck +mcnaney +mcmindes +mcmilliam +mcmenomy +mcmarlin +mcmahill +mcloy +mcloone +mclear +mclaughlan +mckoan +mckerley +mckerchie +mckeone +mckennie +mckellan +mckaig +mcinally +mchendry +mcgwier +mcguirt +mcgugin +mcgready +mcgraff +mcgrade +mcgorry +mcglothian +mcglory +mcgavisk +mcgarrigle +mcever +mcelmurry +mcelheny +mcelhattan +mcdaries +mcdargh +mccumiskey +mccredie +mccraven +mccoyle +mccoppin +mccombie +mccloughan +mccleve +mcclenty +mcclennan +mcclees +mccleer +mcclearen +mccaskin +mccartin +mccamy +mccammack +mccaman +mccalop +mccaffity +mcburrows +mcburrough +mcbrady +mcalphin +mcalhaney +mcaboy +mazikowski +mazar +mayzes +maymon +mayeski +maycumber +mayala +maxin +maute +mauss +mauritz +maurey +maulin +matuszeski +matusik +matuseski +mattu +mattier +matthys +matteucci +matsuhara +matsen +matrejek +matlick +mathewes +mathal +matey +matesic +materna +matelic +matarese +matalavage +mataalii +mastrocovi +mastrobuono +mastoris +mastera +mastenbrook +mastella +massaglia +maslyn +masley +masin +masiclat +mashiah +mashek +mascot +maschke +maschio +masch +marzinske +marxen +marville +marushia +marungo +maruffo +maruca +martinz +martinetto +martinetti +martinea +martincic +martig +marske +marshalsea +marsette +marroguin +marreo +marquena +marona +marola +marmie +markstrom +marksbury +markrof +markovitz +markevich +markette +marius +maritt +marionneaux +marinos +marinese +maricich +marhoefer +margiotta +maren +marecki +marcone +marcoline +marcolina +marchuk +marcelynas +marcaida +marbus +marazzi +marazas +marashio +maranville +marani +marandi +marander +marade +mapalo +manza +manylath +manvelyan +manusyants +mantuano +mantsch +mantell +mantano +mansmann +manship +manozca +mannie +mannes +manliguis +manigold +maniatis +mania +mangon +manginelli +mangicavallo +mangiaracina +mangas +mangaoang +manford +mandiola +manchini +mamoran +mammucari +mamer +malys +malvin +malvaez +malusky +maltie +maltbie +malphurs +malotte +malloch +malkasian +malit +malis +malinski +malinchalk +malicote +malich +maletz +malesky +maler +malekzadeh +maleh +malech +malbaurn +malara +malakan +malakai +malafronte +malady +makley +makekau +majmundar +majersky +maiten +mainiero +mainello +mailes +maigret +mahusay +maharg +mahany +maguet +magowan +magone +magnall +magleby +maglaya +maginn +magin +magil +maggs +maggie +magelssen +magaw +magario +magallanez +maeweather +madura +madrueno +madinger +madho +maderas +maddry +madaris +maczko +macugay +macrowski +macomb +macnab +maclaurin +maclauchlan +mackynen +macksoud +macks +mackney +mackintosh +mackinder +maciej +macie +machowski +machol +machinsky +machalek +macchione +macall +macafee +mabus +mabins +mabane +maassen +lysen +lynaugh +lykens +luvian +luttenegger +lutkins +lutchman +lutao +luskin +luskey +lungren +lundburg +lumm +lulic +lulewicz +lukaszewicz +luiso +luhnow +lugg +lugardo +lufsey +luetmer +luepke +ludtke +luczkowiak +luckhardt +luckenbaugh +lucken +luchenbill +lubke +lubell +lube +lubbock +lozon +loze +lozaya +loynd +loxley +lowthorp +lowek +loviska +lovig +lovgren +loverink +lovensheimer +lounsbery +loukota +loughnan +loughborough +loudenslager +lotson +lothspeich +lotan +lossa +losolla +losier +lorna +lorimor +lori +lorett +lorens +loreg +loreaux +lorandeau +loque +lopus +lopriore +lootens +lookadoo +lonneman +lonn +longiotti +longhini +longendyke +longbotham +londre +londagin +lonabaugh +lomu +lominy +lomboy +lomartire +lollie +lokker +loia +loi +logrono +logosso +loggains +loflen +lofink +lofgreen +loewenthal +loeurm +loerzel +loeppke +loepp +loegering +lodholz +lockey +lockbaum +lochte +lochan +lobur +loban +llorca +lloid +llewlyn +llanez +liwanag +livernoche +litzenberg +litano +lissard +lisko +liscio +lipskar +lipscombe +lipschutz +lipphardt +lipinsky +lipani +lions +linnertz +links +linkowski +linko +lingafelter +lingafelt +lindzy +lindman +lindert +lindersmith +linders +linderholm +lindburg +lindaman +lincicome +linberg +linamen +limke +lilyquist +liloia +lillpop +lillick +lillich +lilien +lighter +liggin +lifton +lifsey +lifford +lifer +liest +liem +lidke +liddiard +lick +lichtenwalner +lichtenfeld +lichak +licerio +licausi +licause +libman +libera +liaw +leya +lewitt +lewandoski +levoy +levitin +leviston +leventer +levenhagen +leveillee +leve +lettre +letsche +lesiak +leshinsky +leriche +leri +lepri +leppke +lepping +lepp +lepo +leonhard +leonello +leona +leofsky +lensing +lenoci +lennington +lennihan +lenn +lenkiewicz +lenis +lenertz +lenehan +lenci +lenarz +lemucchi +lemick +lelah +lelacheur +lejenne +leitman +leithoff +leistiko +leipert +leibert +leibe +lehnertz +leheny +lehar +lehane +legorreta +legoff +legleu +legions +leggat +leggans +legaard +left +leesmann +leemaster +leemans +ledwig +ledlie +lederhos +lecorchick +leclear +leclare +leckman +leckbee +lebrecque +lebahn +leavenworth +leatherberry +leamer +leady +lazzeri +lazarini +lazarine +laza +layng +lawshe +lawman +lawer +laware +lavista +lavis +laviola +lavinder +lavern +lavene +lavelett +lavanway +lavanchy +lavalette +lavala +lavadie +lava +lautzenheiser +lautt +lauser +laurimore +lauridsen +laurey +laurenti +laurente +laurenitis +laurelli +laukitis +laud +lattrell +lattner +latterell +latten +lattari +lattanzi +latif +lastufka +lasswell +lasseson +lassa +laslo +laski +lashute +lashmet +larrieu +larrier +larribeau +laronda +larney +larita +lariccia +largin +larez +lardin +larch +lapusnak +laprete +lapre +lapradd +lapore +lapinsky +lapid +laperriere +laos +lantto +lantaff +lanson +lanois +lanius +lanini +languirand +languell +langstraat +langreck +langkabel +langill +langeness +langefels +langarica +langager +lanfranco +lanfear +lanfair +landvatter +landolfi +landborg +lanagan +lampson +lampshire +lamoreux +lambrukos +lambrakis +lamborne +lambing +lamax +lamarch +lallave +lalka +lais +lairy +laiben +lahren +lahn +lahmers +lah +lagory +laforrest +laflore +lafkas +lafield +lafay +laduc +laderer +ladell +ladakakos +lacoy +lacki +lacio +lacinski +lachowsky +lacerda +lace +lacasa +labruzzo +labre +labove +laberpool +labbadia +labarba +labady +kytle +kym +ky +kwasnicki +kwapniewski +kwang +kuzminski +kuzel +kuwahara +kut +kusko +kusick +kuruvilla +kurtulus +kurtis +kurtich +kurkowski +kurkeyerian +kuritz +kurelko +kurcaba +kuralt +kuprewicz +kupetz +kuntzman +kunishige +kundtz +kulwicki +kulow +kulis +kuhlmey +kufel +kues +kuehnel +kudrick +kudlacik +kudej +kuchel +kuchan +kucha +kuboushek +kubishta +kubilus +kubert +kubeika +kubasik +kuakini +krzyston +krzeczkowski +kryzak +krygier +kry +krupski +krupke +krupansky +krumvieda +krumholz +krumbholz +krudop +krstic +krovious +krommes +kromm +krolak +kroes +kroening +kroener +kritter +kristy +krisman +kriege +kridel +kreul +kretsinger +kretlow +kresal +krejsa +kreines +kreig +krefft +krauskopf +kratt +krassow +krasnecky +krance +krajcik +krail +kraham +krack +kozloff +kozlak +kozera +kozee +koyama +kowalowski +kowalchuk +kovalovsky +kovalcheck +koutz +kotts +kostyk +kosty +kostohryz +kostiuk +kostis +kostick +kosofsky +kosman +kosin +kosier +kosen +kosco +koschnitzki +kosbab +kosack +korzep +korvin +kortkamp +kornrumpf +korfhage +kordus +korchnak +koppinger +kopinski +kopald +kooyman +koopmans +koonz +kooker +kooch +konzal +konye +kontogiannis +konruff +konowal +konopnicki +konopacky +konopacki +konig +konicki +konecni +kondel +konakowitz +komlos +kombe +komatz +kolm +kollmeyer +kollasch +kolin +kolden +kolbo +kolata +kolaga +kokocinski +koko +koinzan +kohrman +kohnz +kogler +koets +koerwitz +koep +koenecke +koehly +kockler +kocka +kociolek +kobie +knudsuig +knoten +knotek +knole +knochel +knobbe +knightstep +knigge +knife +kniess +knickelbein +kneisler +kneedler +knedler +knall +knable +klym +klussmann +kluever +kludt +klouda +klotzbach +klosowski +klockars +klinker +klingshirn +klingelhoets +klingelhoefer +klena +klempa +klemisch +klemens +klemencic +klemen +kleinhenz +klecha +klebanow +klebanoff +klave +klang +klammer +klamet +klaers +klacic +kjar +kivisto +kivel +kitzrow +kitzerow +kitz +kiszka +kistenmacher +kisicki +kisak +kirylo +kirson +kirschke +kirmer +kirakosyan +kinton +kint +kinsland +kinlock +kini +kingsolver +kingdon +kindschuh +kindlimann +kindl +kindberg +kinas +kinaj +kimberl +killoy +killette +killer +killary +kilgor +kildoo +kilborne +kilbert +kil +kijek +kiewiet +kiever +kiesz +kiessling +kielar +kiehn +khosravi +kholodivker +kho +khatib +khatcherian +keyworth +keylor +kewanwytewa +kettman +kettlewell +kettl +kettelle +kethcart +ketay +keslar +kesby +kerne +kerk +kercy +kerchal +kerbel +kenrick +kennis +kennin +kennemuth +kennelty +kenkel +kemmerling +kemfort +kelstrom +kellow +kellom +kelk +keliiholokai +kelcourse +kekua +keiger +keglovic +keesecker +keehne +keedah +keding +keavney +keanu +keagy +keaffaber +keadle +kazemi +kazanowski +kazanjian +kazan +kawelo +kavanah +kautzer +kaukola +kaufusi +kauffeld +katowicz +katos +katheder +kately +kata +kastor +kastl +kassouf +kassler +kassam +kaskey +kasimis +kasdon +kaschmitter +kaschel +karratti +karpinen +karpen +karmann +karlovich +karlen +karkut +karin +kariger +karaffa +kapsos +kapps +kapnick +kanoa +kanney +kannas +kanduth +kampman +kamimura +kamens +kamemoto +kalvaitis +kaltenhauser +kalloch +kaller +kallenberg +kaliszuk +kalinoski +kalinger +kalich +kalfus +kalfayan +kalert +kalenkoski +kalen +kaleiwahea +kaleel +kaldas +kalawe +kalathas +kakos +kaiserman +kais +kailiponi +kaighn +kahuhu +kahoun +kahen +kahaleua +kah +kagy +kager +kagarise +kaffka +kaempfer +kaemmerer +kaelker +kady +kadner +kadlubowski +kadakia +kacynski +kacic +kach +kabrick +justman +justine +jurina +jurik +jurcik +junius +jumalon +julca +jui +jugan +juart +jove +journeay +joung +jou +josilowsky +josephsen +josephpauline +jorde +joor +jonte +jolie +johnke +johanningmeie +joerg +jochems +jilk +ji +jhonston +jez +jethva +jethro +jest +jesko +jerrel +jerich +jentsch +jensvold +jennrich +jenious +jenck +jemenez +jelle +jelinski +jeleniewski +jelen +jeffrie +jefford +jedik +jebbett +jayes +javarone +jauss +jaus +jaskolski +jasionowski +jasin +jarzynka +jarva +jaruis +jaross +jaret +jaquess +janovich +jannusch +jann +jankins +janitz +janicke +jangula +jamon +jammer +jamie +jameel +jakupcak +jakubczak +jakowich +jakeman +jagneaux +jagher +jaekel +jadin +jacobowitz +jackstadt +jackowiak +jackiewicz +jackels +jabour +izsak +izarraras +iwasa +iwanyszyn +iulo +iuliucci +iturbide +itkin +isby +isam +isales +isackson +irizarri +iribarren +irani +iracheta +iott +ioli +iodice +ioannidis +intriago +interrante +intermill +insco +inloes +ingrim +inglin +inglese +ingala +infield +inestroza +ineson +indest +incorvaia +inacio +imparato +imm +imfeld +imaizumi +illescas +ikuta +iino +ignasiak +igler +igel +iffert +idris +idema +ichinotsubo +ichinose +iburg +iarossi +iannaccone +iams +iacovissi +hytros +hyten +hysinger +hylle +hylinski +hvizdos +huyghe +huus +hutsler +hutchen +hustus +huso +husni +huslander +huska +hush +huschle +husayko +husanini +hurtis +hurter +hurrington +hurrigan +hurl +hurban +hunten +hundemer +humerickhouse +humbel +hulstine +hulm +huitzacua +hughlett +huger +huewe +huels +hudrick +hudek +huckeby +hubright +hubric +hubel +hsi +hryniewich +hrovat +hronick +hribar +hozempa +hoxworth +howryla +howison +howieson +howdeshell +hoving +hovi +hovelson +hovell +houten +housten +housekeeper +houpe +houp +houman +houghland +hougas +hothan +hotchkin +hoste +hosie +hosendove +hoseman +hoseck +hoschouer +horwood +horuath +hortillosa +horth +horsfield +horniak +hornby +hormander +horii +hores +horaney +horal +hopskins +hoppesch +hoopengardner +hoomana +hoolihan +hoof +honzel +honse +honohan +hongo +hongerholt +homola +homerding +homchick +holy +holvey +holsing +holshue +hollenberg +hollemon +holla +holka +holifeild +holets +holdt +holdness +holdiness +holda +holcey +holbein +hoium +hoisl +hohstadt +hohowski +hoh +hogy +hogsten +hogsette +hoggins +hofler +hoffstot +hoffschneider +hoffee +hoevel +hoernemann +hoeper +hoener +hoene +hoeke +hoeg +hoeflich +hoeffner +hoeffliger +hoecker +hoeck +hoe +hodgen +hodan +hockema +hochschild +hobkirk +hnatow +hledik +hjalmarson +hitzler +hittman +hisman +hirstein +hirschhorn +hirsche +hirkaler +hiraoka +hiraki +hipwell +hippo +hinsey +hinkey +hinish +hingst +hingle +hindin +hinahon +himelstein +hillburg +hillaire +hilgert +hildred +hildahl +hilcher +higueros +higle +higinbotham +hieserich +hidvegi +hidrogo +hickton +hickonbottom +hickert +hibl +heyveld +heydel +hevner +hevesy +heverley +heverin +heusley +heuberger +hettwer +hett +heter +hesters +hessong +hessing +hessenthaler +hessell +hessee +hesby +herzberger +herwood +herting +herscher +herschel +herrling +herrig +herriage +herrel +herre +herpolsheimer +hernanders +hermosura +hermie +hermens +herklotz +herkert +herby +herbster +herbison +herbers +herbein +heppeard +henrick +henrey +henretta +henneberg +hennagin +henington +henifin +heney +henesey +henehan +hendy +henderosn +hender +hendee +henby +henaire +hemrich +hemmie +hemmes +hemlepp +heminover +hemauer +helvy +helsing +helmy +helmstetler +helmink +helmcamp +hellar +hellams +helker +helgesen +helfritz +helena +hele +hektner +hejl +heitschmidt +heitger +heinzmann +heinzen +heininger +heineken +heimrich +heimbaugh +heiermann +hehr +hegre +hegmann +hefler +hefflinger +heese +heeney +heemstra +hedrich +hedgespeth +hedemann +hedegore +heddlesten +heckenberg +hebig +hebden +hebda +heatly +heathershaw +hearson +heally +healan +heads +hazleton +hazarika +hayhoe +haydal +hayburn +hawthrone +hawman +hawkey +hawf +havice +havercroft +hautamaki +hauskins +haulter +haugrud +hauan +hatzenbuhler +hatzenbuehler +hattub +hattier +hatteyer +hatstat +hathway +hataway +hassick +hassian +hasselman +hasselbarth +hasper +haspel +haske +hasgill +hasen +harviston +harvilla +harvilicz +harver +hartzer +hartup +hartsough +hartsch +hartly +hartlep +hartlein +hartkopf +harthun +hartfiel +hartery +hartert +hartage +harsey +harrey +harrett +harral +haroutunian +harmeyer +harlowe +harloff +hardyman +hards +hardrict +hardmon +hardigree +hardenburg +hardell +hardebeck +hardaman +hardaker +harcey +harbick +harajli +happer +hapgood +hanstein +hansbury +hanold +hanohano +hano +hanns +hannifan +hannes +hanko +hanis +hanenkrat +hanemann +hanek +handzel +handwerker +handwerk +handsaker +handrick +handelsman +handal +hancin +hanbury +hanaway +hanahan +hams +hammerly +hammeren +hammatt +hammarlund +hamling +hamiss +hamiel +hamelinck +hambrecht +halo +hallinger +hallick +halifax +halgrimson +halfmann +halder +hald +halburnt +halberstam +halaby +haker +haken +haine +hagos +hagmaier +hagenson +hagene +hagenbrok +hagenbaugh +hafter +haffling +haeger +haegele +hade +hadder +hadcock +haczynski +hackle +hachigian +hachez +habrock +habowski +habina +haberkamp +habben +habash +haaby +gyatso +gwalthney +guziec +guziak +guys +guynup +gutzwiller +guttmann +gutting +gutteridge +guterrez +guszak +gusky +gusciora +gurry +gurrieri +guritz +gunst +gundry +gundert +gulsvig +gulisano +gulinson +guittar +guitard +guisti +guiski +guinto +guinther +guinnip +guilliam +guillerault +guilfoil +guijarro +guidetti +guiberteau +guger +guevera +guetersloh +guerini +guella +guedea +guecho +gudis +guckin +guberman +guardipee +guanio +guagliardo +grzegorek +grybel +grunst +grunlien +grundmeier +grundhoefer +grun +grumer +grum +gruhn +gruger +grudt +growney +grotts +groton +grotelueschen +grotberg +grosswiler +gronowski +gronosky +gronewald +gronert +groholski +groetken +groeschel +groene +grodecki +groceman +griswell +griseta +grinkley +grinie +grinberg +grimmius +grieme +greytak +grett +grenke +grenda +greinke +greeves +greever +greet +greenlun +greenler +greenham +grebin +grboyan +grawburg +grattelo +grassham +granvold +granthan +gransky +grandolfo +grandmaison +grandchild +granbois +gramolini +grammatica +gramc +grajek +grahe +gragson +gragert +grage +grafenstein +graetz +gracely +graceffo +grabarczyk +gouzalez +gouse +gourdin +goudelock +goud +gottlob +gottke +gotthelf +gotthard +gotter +gotsche +gotschall +gosz +goston +gossack +gosdin +gorz +gorrill +gornto +gornie +gorenberg +gorelli +gordinier +gora +gopin +gopie +goolman +goolden +goodsite +goodmanson +goodly +goodkin +goodiel +gonzolas +gonsior +gonseth +gonez +gonchoff +gonales +gomzales +gomora +golly +gollihar +gollhofer +golka +golinski +golen +golembeski +golemba +goldwater +goldstock +goldklang +goldbeck +golda +gojmerac +goich +gohlke +goger +gogel +goga +gofton +goffe +goetting +goeser +goerner +goerke +goerdel +goeppner +godsman +godert +godel +gobeli +gnas +glucksman +glotzbecker +gloeckner +glockner +glish +glickson +glicken +glew +glessing +gleichman +glazener +glave +glausier +glatzel +glassett +glasbrenner +gladu +glab +glaab +giza +gittler +gittleman +gittinger +gitting +gitthens +gissel +gischer +girst +girsch +girona +girillo +gire +gira +giovanetti +gionest +gingles +gingery +ging +gillstrap +gillson +gillotti +gillmor +gilliss +gillig +gillert +gillcrest +gilgour +gilgore +gilding +gilderman +gilcreast +gieseman +gieselman +gieringer +gick +giangrosso +giangregorio +giambra +giambattista +ghibaudy +ghianni +ghelfi +ghaziani +ghantt +ghant +ghaemmaghami +gey +getler +getchius +gesualdo +gesmondi +gerweck +gerwe +gerula +gertsen +gershey +gershen +gers +gerritsen +gerdsen +gerczak +gerbatz +gerba +gerache +georgl +georgiadis +georgelis +georgalas +genualdo +gentery +gennock +gennett +genett +gendernalik +genas +gena +gemmen +gelston +gellman +gelfo +gelen +gelbowitz +geibig +gehlhausen +geffre +geesaman +geel +gedman +geckles +gebbie +gearwar +gearlds +gayne +gayfield +gawlas +gauwain +gaufin +gauani +gastley +gastello +gassoway +gasparino +gaskey +gaser +gascot +garuti +garrington +garreh +garnand +garlits +garity +garitty +gariety +garia +gari +garetson +garelik +garding +garb +garasha +ganzer +gantert +ganotisi +ganner +ganison +ganie +gangell +gangel +ganesh +gandrud +ganas +gamby +gambles +galyan +galuski +galper +gallwas +galluzzi +gallups +gallosa +gallipeau +gallet +gallerani +gallegly +gallaty +gallaspy +gallander +galioto +galicinao +galer +galdon +galardi +galamay +galabeas +gala +gaitor +gagg +gagan +gaerlan +gadley +gacke +gacia +gach +gabrelcik +gabay +gabard +fylnn +fydenkevez +futter +fuse +fuscaldo +furstenberg +furmanik +furlone +furia +furer +furci +furbish +funt +fulker +fukano +fujino +fuhrmeister +fugo +fuerman +frymyer +fryling +frontz +froncek +fronce +frolich +froio +froid +froehle +frischman +friou +friot +frieze +friesz +friemering +frieman +friedrick +friedle +frickson +frickel +frichette +fricano +fribley +frewing +frever +freudenstein +frerking +frenger +freisner +fregeau +freedle +frease +frazey +frascone +franzmann +franzetti +frankforter +francy +franckowiak +francies +franchette +fralin +fraleigh +fraint +fragozo +fracchia +frabizzio +fousek +fouraker +foucault +fosson +fossati +fosnough +forts +forthman +forsting +forstedt +forshay +forshaw +forsha +forro +forno +forlivio +forkosh +forkan +forcello +foradori +fontane +fonger +foney +fondy +fondow +folta +follin +folliard +folley +folken +foiles +fohn +foggs +foesch +foertsch +foecking +fodness +foat +flot +flosi +florenz +florens +florencio +florea +florczak +flodin +flocke +flo +flentroy +flenard +fleisner +flecther +flaks +flagstad +flagel +fjetland +fixico +fiume +fitterer +fisette +firlit +firestein +fiotodimitrak +fioto +finner +finnefrock +fingado +finely +fincel +finau +fimbrez +filoteo +fillpot +fillare +filipski +filippo +filipovic +filipelli +filimaua +filhiol +filgo +fileds +filbert +figuera +figliola +figart +fietsam +fieselman +fiene +fieldhouse +fiebig +fidel +fida +fickert +fiato +fevold +feuerborn +fetchko +fesh +feser +ferruso +ferriolo +ferriola +ferrence +ferrar +ferran +ferraiz +feroz +ferone +fernstrom +fernstaedt +fernow +ferkovich +fergen +ferdolage +ferdinandsen +ferbrache +fennewald +fenk +fenix +fendler +fenchel +felske +fellinger +felicetti +feldpausch +feighan +feichter +fehrle +fehringer +fegaro +feener +feeler +fedorchak +federowicz +fedd +feauto +feagen +feaganes +fazzina +fazzi +faykosh +fayard +favuzza +favolise +fausset +fauske +fausel +fauscett +faulknen +faulkenburg +fatica +fastlaben +fastic +farzan +farstvedt +farin +farguharson +fargnoli +farfalla +farese +farer +faraldo +faraj +fara +fanzo +fanton +fanney +fanizzi +fanion +fanelle +falterman +falsetti +fallone +falkiewicz +falconio +fake +fairleigh +fahringer +fahrenkrug +faerber +fadley +fadeley +facundo +fack +face +faby +fabrizius +fabozzi +fabiszewski +fabin +ezpeleta +ezparza +eyrich +eyerman +ewoldt +ewards +evasco +evanich +evangelo +eustace +eugley +euertz +etulain +etchells +esson +esskew +essery +esselink +espinol +espenoza +espelien +espeland +espadas +esler +eske +eska +escuriex +escovar +escort +eschrich +eschette +eschen +eschbaugh +escalon +escalero +esbrandt +esary +ertman +eroh +ernesto +erlenbusch +erle +erke +erichsen +eric +erholm +erbstein +erbst +eppolito +eppihimer +eppich +entin +enslinger +enslen +enockson +ennenga +enman +englett +engleson +englerth +engl +engholm +engelken +engelkemier +engelhaupt +engelbach +endries +endow +endito +enderby +encallado +emziah +embt +embs +embelton +emard +elwonger +elvsaas +elumbaugh +elstner +elsmore +elskamp +elshant +elmblad +ellson +ellias +elletson +ellestad +ellert +ellermann +ellerbrock +elleman +ellars +elland +eliezrie +eldib +eldert +elbe +ekwall +ekholm +eken +eitnier +eitniear +eisenzimmer +eisenstadt +eisensmith +eiselman +eisbach +eisaman +eiken +eibell +ehrke +ehrismann +ehrenfeld +ehlman +egizi +egitto +eggeman +effron +ednie +edelbrock +edde +edd +economos +eckols +eckloff +echegoyen +ebia +eberlin +ebbers +easterbrook +earney +earleywine +eanni +eadens +dyron +dykhoff +dyers +dyda +dybala +dwane +dwaileebe +duverne +duve +dusen +dusatko +dusablon +durrette +durphey +durnin +durkes +durette +durdy +durch +duracher +dupray +dupoux +duponte +duperclay +dupass +dupar +dunwiddie +dunsing +dunnaville +duncomb +duncklee +dunay +dunakin +dumpe +dumes +dumdei +dumay +dulkis +dukich +dukas +duin +dugo +duewall +duemmel +duelm +dueber +dudman +dudak +duckhorn +duchscherer +ducat +ducas +dubyk +dubill +dubiansky +dubaldi +dua +dspain +drzazgowski +drymon +drylie +druvenga +druschel +drungo +droze +drouse +drott +drosick +droneburg +droessler +droesch +drobny +drizin +dripps +drinkley +drillock +driesbach +dretzka +dresner +drentlaw +drenon +drehs +drehobl +drda +draxler +drath +drapeaux +dragula +drafts +draft +dozer +doxtater +doxie +dowst +dowson +downton +dowlen +dowey +dowery +douty +doughtry +doughtery +dotzler +dotterer +dothard +dosher +dosal +dorso +dorsette +doro +dornfeld +dorkin +dorka +dorge +dorchy +dorame +dopler +dopico +doore +dooms +donnie +donnelley +donnel +donayre +donatello +donachie +dominiguez +domingos +dominga +dominey +domenget +dolores +dollyhigh +dollen +dollak +doleac +dolch +dolbeare +dokka +dokes +doire +doing +dohring +dohogne +dohnal +dohan +doerle +doerhoff +doemelt +doehring +doegg +dodsworth +dodoo +dodier +dockendorf +docken +dobrowski +dobrin +dobine +doberstein +dizer +dixey +divita +diven +divalerio +dituri +ditton +disspain +disparte +dismore +disilvestro +dishong +dishian +diseth +discenza +dirkson +dirkse +dirker +dirk +dipippo +dipinto +dipierro +dinnocenzo +dinizio +dinis +dingivan +dingfelder +dincher +dimucci +dimpson +dimpfl +dimitrov +dimarzo +dils +dilisio +diliberto +diliberti +diles +dileonardo +dilena +dijulio +diiulio +digiuseppe +diga +difillippo +difebbo +dieng +diekman +didyk +didriksen +dickus +dickow +dickeson +dicastro +dibenedetti +dhaliwal +dezenzo +dewyse +dewinter +dewaters +dewaele +devoto +devor +devoogd +deviva +devitis +devit +deveyra +devericks +devenuto +deveja +devaughan +deutschendorf +deuink +deubner +detzler +detullio +detore +dethlefsen +dethlefs +detamble +desrevisseau +desotel +deso +desmeules +desmaris +desilvio +deshpande +deschambault +descamps +desatnik +desamito +desalle +desak +derwin +derting +derrah +deroven +derosso +deromer +dermott +deringer +derico +derga +derflinger +derezinski +derck +derbacher +deranick +depuydt +depung +depree +deppert +depierre +dephillips +deojay +denzin +denten +dentel +dennies +denina +denger +deneke +denegre +denboer +denapoli +demsky +demsey +demotta +demmons +demman +demendonca +demeester +dembowski +demarce +deman +demallie +demaire +delwiche +delphia +delore +dellenbaugh +dellbringge +dellaratta +dellaporta +dellapenna +dellacioppa +deliberto +delibertis +delgenio +delcueto +delaurie +delauder +delatrinidad +delash +delaet +del +dekrey +dejoie +deiters +deimund +degrenier +degre +degrand +degon +degeston +degelbeck +degaust +degasparre +defreece +defenderfer +defee +deeken +dedon +dedinas +dedicke +dedic +decristofaro +decoud +decos +deconti +deckers +decio +decenzo +debroux +debrot +debray +deboef +debiasio +debettignies +debenedittis +debbins +debaecke +dearson +dearo +deardon +deaquino +deacetis +dayne +dayem +dax +dawoud +davitt +davito +davidoff +dauterman +daughterty +daugaard +daudelin +daubendiek +dattilio +datcher +dasovich +daso +dasilua +dashem +darou +darke +dargin +darga +darco +darcey +dapas +dantos +danson +danny +danielian +danchetz +danby +damrow +damours +damboise +dambakly +dambach +damasco +damann +dallmeyer +dallesandro +dalfonso +dakins +dakes +daire +dahill +daguio +dagis +dabdoub +czerkies +czarnota +czachor +czach +cypress +cynthia +cylkowski +cyfers +cwiakala +cvetkovic +cuzman +cuzick +cuttler +cutt +cuti +cutforth +cutchins +cutchall +cushwa +curo +curbeam +cunnick +cuneio +cundick +cumbaa +cultice +cullity +cullip +cullifer +cucvas +cuculich +cucino +cubeta +cser +crupper +crunkilton +cruden +crover +crouter +crough +crouchet +crosthwaite +croon +cronshaw +cronenberg +crome +croman +crognale +crogan +croasmun +cristofori +cristiano +crisan +cringle +crincoli +crill +crieghton +cridge +criblez +crellin +cregeen +creeks +creath +creacy +crazier +crawmer +crawhorn +cratin +crapser +crapse +cranmore +cramm +cramblit +cramblet +cragin +cracas +cozzone +coyco +coxey +cowper +cowett +covone +covill +coverton +councilman +coultrap +coulas +coughenour +cough +cotty +cotherman +cother +costantini +cossell +cossano +cosley +coslett +coskey +cosgray +corza +corvi +corvan +corsetti +corscadden +corsa +corrow +corrice +correro +correale +corre +corna +corke +corid +corelli +cordonnier +cordona +corak +coppler +copelan +coore +coonradt +coones +cookus +conveniencia +contrerras +contrenas +contorno +constantini +constantineau +consolver +conrath +connet +connerly +conliffe +conforto +conda +conca +conales +compono +compau +commendatore +comings +comboy +combass +coltrin +colpetzer +colonel +colombini +cologie +colla +colbeth +colbaugh +colasuonno +colapinto +colamarino +colaluca +colaianni +colafrancesco +colace +colabella +coggsdale +coffill +codispoti +codell +cocoros +cocopoti +cocola +cockley +cockey +cochron +coch +cobden +coatsworth +coarsey +coar +clymore +clumpner +clougher +clolinger +clinkingbeard +clineman +clewes +clemments +claypole +clayburg +claybron +claybon +claughton +clase +clarenbach +clankscales +clampett +claessens +claburn +citrin +cisney +cirri +cipro +cipkowski +cione +cinquanti +cink +cimiano +ciervo +ciers +cicora +ciciora +cicione +cicerelli +ciccolini +ciccarone +cicarella +ciarletta +ciaccio +chuta +chustz +churan +chumbler +chuba +chruch +christler +christinsen +christinat +christello +chrispin +chrismer +chrislip +chrisjohn +chrestman +choute +chough +chorlton +chomka +chmelicek +chiulli +chislom +chiras +chinzi +chinnery +chinick +chim +chilvers +chilo +chiarmonte +chiarenza +chiapetti +chhuon +chhour +chheang +chetram +chessher +cherrier +cherepy +cherenfant +chenot +cheli +checa +cheathan +chears +chauvaux +chaudoin +chauarria +chatters +chatlos +chatley +chasey +charves +charsky +charania +chaplen +chaple +channer +chander +champey +champeau +challen +chall +chalkley +chalet +chalcraft +chaix +chadick +chadbourn +chaban +cesari +cervoni +cervin +certalich +cerni +cerney +cereo +cerce +ceravolo +ceparano +centrella +centner +centano +cenat +celmer +celenza +celadon +cefaratti +cefalo +cedillos +cecilia +cechini +cecala +cease +cearns +cazeau +cayson +cayanan +cavallario +cauthron +cattrell +catterson +catrone +catone +catoggio +caterino +catching +catalani +castrataro +castoe +castles +castillanos +castellonese +castelhano +cassman +cassius +cassisse +cassem +cassani +cassandra +casola +caselli +cascone +casburn +casbeer +casbarro +carrin +carreker +carrea +carre +carrauza +carranzo +carpinello +carolin +carmolli +carmena +carmell +carmain +carlye +carlsten +carlough +carlone +caringi +carine +carin +carela +cardono +cardle +cardinali +cardi +cardera +carback +capuzzi +capracotta +cappo +cappleman +capparelli +caponera +caplener +capanna +caoili +caoile +canzio +cantoran +cantillo +canta +canonica +cannington +canniff +cangas +canevazzi +canes +caneles +candido +canders +cance +canaway +canarte +canario +canan +camren +campusano +campman +camm +caminos +camferdam +camerena +camell +camak +camaj +calway +calvino +calvetti +calvani +caltabiano +calnimptewa +calnick +calnen +calmese +callander +callabrass +caliz +calija +calger +calendine +calderara +calcara +calamity +cailler +caho +caguimbal +cadoff +caddick +cadavieco +cabos +cabiltes +cabibbo +cabellero +cabasso +caballes +cabading +caal +byra +byod +bynon +byner +bynam +byker +buzzi +buzzeo +butzen +buttz +butteris +butkiewicz +buteaux +bustad +bussone +busman +bushmaker +busche +burwinkel +burum +burtless +bursi +burrup +burross +burries +burrichter +burrelli +buron +buro +burnstein +burnaugh +burnap +burkdoll +buris +burington +burgun +burgie +burghard +burgh +burgas +burgardt +burga +burdess +burcin +burchfiel +burchess +burandt +buonanno +buonamici +buntjer +bungert +bundschuh +bumps +buman +bulosan +bullocks +bullie +bularz +buland +bujarski +buhmann +buhman +bugna +buglisi +buggy +buemi +budke +buder +budds +buddie +buczak +buckwald +buckovitch +buckholtz +buckhanan +buchetto +buchauer +bucciarelli +buccheri +bucaram +bubis +bubash +bubak +brzostek +brzezowski +bryton +brusuelas +brussell +bruschi +brundrett +brundin +brumet +bruley +bruk +brug +bruestle +brudner +bruccoleri +brozie +broxterman +brox +browy +brownle +browm +broward +brouwers +brousard +brought +brotherson +brotemarkle +brossoit +broscious +brooms +broomhall +brookshaw +brookhouse +bronchetti +broks +broida +brohl +broglie +brofft +broermann +broenneke +brodnex +brodka +brodish +brockelmeyer +brockberg +broch +broccoli +brobeck +broadstone +brittman +brislan +brisk +brisentine +bringhurst +brindel +brinda +brincks +brimeyer +brihm +brignolo +briglia +brighi +brient +bridenbaker +briddell +briante +brians +briagas +brevo +breu +bretto +bretthauer +breslauer +bresemann +brentari +brenning +brenhaug +brengettey +brenek +brendal +brenagh +breiling +breidenbaugh +brehant +bregel +bredeweg +bredehoft +breceda +braylock +brause +brauning +braulio +braukus +braucher +bratchett +brasseur +brasser +branstutter +branstad +branscombe +brannick +brandolini +brandly +brandenberg +brandeis +brandal +branciforte +brancheau +brancati +bramlette +bramlet +brakhage +braitman +braisted +bradfute +bracks +bracket +braccia +braam +bozzone +bozenski +bozard +boyson +boylston +boxwell +bowlen +bowdle +bowdich +boward +bovia +bovey +boven +bouza +bouwman +bouwkamp +boutiette +boursaw +bourret +bourgoyne +bounleut +bound +bouma +bouleris +bouler +boughman +boughamer +boudoin +boudewyns +botwinick +bottone +bottino +botticello +botten +bottaro +bottalico +bostel +boshes +boshard +bosell +boscarello +bory +borsari +borok +borodec +bornmann +bormuth +bormet +borling +borlace +borkin +borkenhagen +boreen +bordin +borcherding +boote +booras +boody +bonton +bontemps +bonomini +bonina +bonifer +bongartz +boness +bonefont +bonefield +bonder +bonde +bondanza +bonavia +bonamo +bonadurer +bomkamp +bolognia +bollich +bollacker +bolinsky +boldosser +boldon +bolda +bolado +boken +bok +boisselle +boisen +bois +bohs +bohnenblust +bohlig +bohinc +bogumil +bogie +boggioni +boggi +bogenschneide +bogema +boge +bogdanski +bogdanovich +boettner +boesiger +boesel +boensch +boele +boeken +boehning +boehlar +bodwell +bodreau +bodovsky +boda +boczar +boclair +bockemehl +bochenski +bochat +boch +boccio +bocchicchio +boccanfuso +bobzien +bobson +bobino +bobier +bobeck +bobak +boarts +boardwine +boaldin +boakye +boady +blunden +blumenstock +blovin +blouir +bloschichak +bloome +bloodough +blonder +blommer +blok +bloeser +blinks +blinka +bline +blickem +bleyl +blews +bless +blenner +bleimehl +blecker +bleasdale +bleakney +blatnick +blaski +blare +blanzy +blankumsee +blancett +blaich +blada +blackbum +bjorseth +bjorlin +bizzaro +bivin +bitetto +bisso +biskup +biskach +bisio +bisi +bishard +bisesi +bisaccia +birtcher +birrittella +birkhimer +birkey +biringer +biren +birdette +birak +bio +binker +bink +bingler +bingert +bingamon +bindas +bilson +billow +billon +billo +bille +bilis +bilich +biler +bilek +bilden +bilazzo +bila +bigus +biggart +biggar +bigaud +biesheuvel +biernacki +bierley +bierlein +bielefeldt +biedermann +biedenbender +biddulph +bicksler +bickes +bicek +bica +bibiano +biangone +bi +bezzo +bezdicek +beyt +beydler +bevelacqua +beuther +beucke +betzold +bettman +bettino +betterley +betancourth +bessel +beska +beschorner +berwald +berum +bertotti +bertorelli +bertoldo +bertolami +bertley +berteotti +bertaina +berstler +berniard +berndsen +bernadette +berlinski +berkstresser +berks +berkovich +berkoff +berkhimer +berkery +bergmark +berga +berfield +bereznak +beresky +berenger +berendzen +berendt +berczel +berch +berbes +berardinelli +beppu +benziger +benzie +benzango +benthall +bentancourt +bensberg +benno +bennin +bennes +benken +benike +benigni +benestad +bendtsen +bendis +bendig +bendetti +bendele +benasher +benack +bemben +belts +belrose +belnas +bellusci +belloso +bellizzi +bellinghausen +belliard +belletto +bellettiere +belko +belitz +belfanti +beldon +bekis +bejcek +beitler +beiser +beine +beiley +beierschmitt +behrle +behran +behlmer +behlke +beguelin +beghtol +beger +begeal +beezley +beesmer +beerer +beere +beerbohm +beenel +beelby +beecken +bedor +bede +beddows +beddow +beddia +becky +beckius +beckfield +beckem +becena +beavis +beaumonte +beauman +beauharnois +beaudine +beasly +beales +be +bazylewicz +bazner +bazel +baytos +bayton +bayt +baylock +bayird +baygents +baxa +bawner +bawden +bavelas +bauske +baumberger +baul +battuello +battig +batterman +battani +battaglino +batimon +bathke +baters +batch +batas +batara +batala +bastine +bassani +bassali +baskind +baseman +basehore +basara +barze +barwell +barut +baruffa +bartlome +bartin +barthol +barthell +barters +barswell +barshaw +barrigan +barria +barrasa +barraco +barnthouse +barnt +barmes +barkhimer +barios +bario +barino +barie +barick +barfuss +barfknecht +barer +bareford +bardis +barcley +barchick +barcena +barbur +barbor +barbin +barben +barbella +barbaglia +baransky +baragan +baquiran +banzhaf +banter +bankowski +banet +bandt +banaszek +banana +balque +balowski +ballog +ballina +ballensky +ballato +baliga +baldomero +balden +balde +baldassare +balbontin +balbas +balassi +balandran +bakkala +bakhshian +bakerville +bakaler +bajaj +baites +baisten +bairam +bailard +baierl +baichan +bai +bahrs +bagozzi +bagni +bagnato +baglione +baggio +baggesen +baggenstoss +bagan +baessler +baerman +baerlocher +badgero +baddour +badami +baculpo +bacio +bacigalupo +bachta +bachar +bacchi +babrow +babonis +babish +babicke +babeu +baab +azzopardi +azore +azen +aykroid +axon +axelrad +awkard +awender +avon +avirett +averitte +averbeck +avellano +avary +auwaerter +autrano +auteri +austgen +ausdemore +aurich +aumen +auler +augustyniak +augliano +aughtman +aue +auduong +aucter +attianese +atiles +athas +asturias +astrup +astley +assante +aspden +aspacio +asley +asleson +askvig +askegren +askam +ashmen +ashauer +asfour +aschoff +aschim +aschan +asal +arzo +arvesen +arrow +arrocha +arris +arribas +arquitt +arone +aroche +arnt +arnoux +arnoldi +arning +arnholt +arndorfer +armson +arment +arlotta +arlinghaus +arlia +arkema +arizaga +arisumi +aristide +aris +arif +ariano +arguilez +argudo +argrow +argiro +argetsinger +arfman +arenburg +aredondo +area +ardry +ardner +ardizone +arcudi +arcizo +arcila +archilla +archangel +arcega +arbucci +arato +arano +aran +aragan +apostol +apolito +apland +apkin +aperges +apalategui +apaez +anzora +antonsen +antolos +antolini +antman +anter +anspaugh +anselm +annonio +annichiarico +annibale +annarumo +anliker +ankrapp +ankenman +anhorn +angton +angrisano +angon +angolo +angleton +anglebrandt +anglea +anglade +angilletta +angeron +angelotti +angelbeck +angela +anez +andueza +andrulis +andronis +andreu +andreoni +andert +anderlik +anauo +anastasiades +ananias +anand +amuso +amrich +amr +amour +amoss +amorosi +amoako +amoah +ammirato +ammar +amirian +amiot +amidi +ameduri +amderson +ambuehl +amass +amanza +amadio +alwang +alwan +alvine +alvarran +alvarracin +alvanez +aluqdah +altshuler +altonen +altmiller +altken +altiery +althiser +altaras +alstrom +alstad +alsbury +alsberry +alquijay +alpha +alonza +aloia +alnas +almerico +almenar +almen +allwood +allstott +allridge +alleva +allenson +allenbaugh +allegretta +allegra +allbritten +allara +allamon +alken +alizadeh +alirez +alires +aline +alim +algire +algier +algien +alfonsi +alexy +alexnder +alessandroni +alert +alemany +aleksey +alderton +alderfer +aldava +aldapa +alconcel +albornoz +albini +albergotti +alben +albea +albang +alario +alamilla +alalem +akoni +akles +akande +akamine +ajasin +aiyer +aihara +ahrendes +aherns +aharoni +agunos +aguliar +aguillar +agudo +agoras +agnor +agni +agers +agel +aery +aerts +adon +adessa +aderson +aderman +adema +adelsberg +adelblue +adel +addiego +adas +adamcik +acquilla +ackmann +achterhof +achane +abuhl +abrial +abreau +aboulahoud +aboudi +ablao +abilez +abete +aberson +abelman +abelardo +abedelah +abdulmateen +abato +aas +aarestad +aanenson +zymowski +zyla +zybia +zwolski +zwigart +zuwkowski +zurovec +zurkuhlen +zuppa +zunich +zumpfe +zumalt +zulkowski +zulfer +zugg +zuerlein +zuehls +zuckerberg +zuchelkowski +zucchetto +zucca +zubrowski +zubizarreta +zsadanyi +zrake +zotti +zosel +zoltek +zolla +zogopoulos +zogby +zmek +zitzmann +zitzelberger +zirker +zinzow +zimick +zimerman +zilk +zigomalas +ziesman +ziernicki +zierke +zierk +zierenberg +zierden +ziems +zieger +ziebert +zicafoose +zic +zibell +ziada +ziad +zhen +zetzer +zetino +zerphey +zercher +zeran +zephyr +zelonis +zellinger +zelko +zeliff +zeleznik +zekria +zeidman +zehrer +zehrbach +zeherquist +zehender +zegar +zega +zechiel +zeccardi +zebracki +zeavala +zbierski +zaza +zayicek +zawistowski +zawasky +zavitz +zaverl +zavcedo +zavattieri +zavacky +zausch +zatorski +zarrabi +zarlingo +zarin +zarillo +zaren +zapel +zapatero +zantow +zant +zannini +zangger +zanfardino +zanardi +zan +zampella +zamoro +zamborano +zambelli +zalamea +zajdel +zais +zahourek +zaharek +zagulski +zagacki +zadina +zaczek +zachter +zachariah +zacchini +zabenko +zabbo +yuska +yuscak +yurovic +yurek +yunes +yumas +yuk +yudell +ysaguirre +yray +yozzo +yovan +youssefi +yousko +younghans +youmon +youla +yotter +yoshi +yoseph +yorck +yono +yoneoka +yonashiro +yomes +yokel +yoest +ynocencio +yewell +yetzer +yetsko +yerty +yeropoli +yerka +yergin +yenor +yem +yeley +yearego +yeakel +yazzle +yazzi +yazdani +yaws +yasika +yarwood +yarris +yaroch +yarmitsky +yara +yantzi +yannucci +yannayon +yannantuono +yankovski +yankovitch +yandow +yanchik +yanagihara +yanagida +yanacek +yamanoha +yamaki +yalon +yaklin +yake +yaiva +yaish +yahne +yafuso +yafaie +yacullo +yacovone +yacoub +xyong +xayasith +wyze +wyrostek +wynes +wyker +wygal +wybenga +wurz +wung +wueste +wubnig +wubbena +wubben +wrzesien +wrynn +wrightington +wride +wreyford +woytowich +woytek +wosick +workowski +worell +wordlow +worchester +wooward +woolhiser +woodlin +woodka +woodbeck +woodal +wondoloski +wonderling +wolsdorf +wolper +wollert +wollenburg +woline +wolfing +wolfensperger +wolbrecht +wojnowski +wojewoda +wojdak +wohlfeil +wohlert +woge +woelfl +wodicka +wobser +wobbe +wnukowski +wnorowski +wmith +wlodarek +wiza +witucki +wittrup +wittnebel +witthoeft +wittenbrink +wittbrodt +witkowsky +wisnowski +wisely +wirtzfeld +wirfs +wipfli +winterberg +winslette +winscott +winnicki +winnen +winik +wingeier +windsheimer +windrow +windhorst +windfield +windauer +wincapaw +win +wimbrow +wimble +wilund +wilshusen +wilsen +willock +willmert +willies +williemae +williamis +willia +willi +willeto +willborn +wilkus +wilkson +wilkoff +wildridge +wilczak +wilcut +wiklund +wiggan +wigand +wig +wiesemann +wieseman +wiersteiner +wienberg +wielock +wielgasz +wiegard +wiedrich +wiederholt +wieben +widjaja +widera +wide +wicklin +wickersheim +wiborg +wiatrowski +why +whittum +whittinghill +whittenbeck +whitiker +whitey +whiter +whitelightnin +whitcome +whisted +whirlow +whiles +whilden +whetzell +whelihan +wheeldon +wheater +whaltey +weynand +weyker +weydert +weuve +wetzstein +wetzell +westler +westermeier +westermark +westermann +westerhoff +westbrooke +weske +weser +werst +werremeyer +wernsman +wernex +wern +werme +werline +werk +wergin +werdlow +werderman +went +wensman +wenske +wendorff +welzel +weltha +wellinghoff +welding +weit +weissenbach +weispfenning +weismantle +weisbecker +weirauch +weinzierl +weinrib +weinland +weinfurter +weinburg +weiher +weig +weidower +weicht +weibe +wehking +weglage +wegiel +wedige +weckwerth +weatherington +weasel +weant +wealer +weagraff +weader +wayts +wayson +waymon +waygood +wayford +waychowsky +waverly +wattigny +watsky +watry +wates +watah +wasurick +wassam +waskom +waskin +washum +washpun +washler +waser +warzybok +warstler +warrilow +warran +waroway +warntz +warnberg +warmka +warmbrod +warlow +warlock +warde +war +wapp +wantuck +wannlund +wannarka +wanko +wandell +walund +waltos +waltho +walstrum +walrod +walper +waln +wallwork +wallo +wallman +walliser +wallie +wallenbrock +wallau +walka +walizer +walgren +waley +walen +waldroop +walderon +wal +wakeford +waitz +waiss +waisanen +wais +wainkrantz +wahn +wahdan +wahba +wagnor +waggy +wagemann +wagatsuma +waffenschmidt +waegner +waddups +waddles +wadas +wacht +waas +waaga +vuoso +vukelj +vriens +vredeveld +vrbas +vranicar +vovak +votsmier +vostal +vorsburgh +vornes +vopava +vonseeger +vonschriltz +vonholt +vongsamphanh +vongkhamphanh +vongkhamchanh +vonfelden +voner +vondrasek +vondracek +vonderhaar +vonderahe +vonbank +volpone +volmar +vollmers +vollette +volinsky +volek +volbert +vojna +voigtlander +vogelzang +voeltz +voelkerding +vocelka +vljeric +vleming +vlchek +vizzi +vixayack +vixay +vivyan +vivion +vitrano +vitez +vitellaro +visounnaraj +visick +viscosi +virostko +virgile +virgadamo +virant +vintila +vinti +vint +vilven +vilt +villnave +villescaz +ville +villasis +villaplana +villao +villanveua +villanvera +villandry +villamayor +villamarin +villaluz +villaluazo +villaire +villacrusis +vilegas +vildosola +viker +vijil +vijayan +vigneau +vigilo +vigiano +vieu +vietzke +vierk +viengxay +vieau +vidas +vidaca +vicuna +vicueroa +vicenteno +vias +viard +viano +viale +viafara +vezza +vevea +vetterkind +vetterick +veto +vessar +vesperas +vesley +verwers +verunza +verso +versage +verrue +verrone +verrastro +verplanck +verone +vernazza +verlinden +verlin +verkuilen +verfaillie +venzor +venturelli +venskoske +venning +venneman +veneri +vendig +vence +veltkamp +velthuis +velovic +veller +velky +velega +velardes +veksler +veitinger +vehrenkamp +vegerano +vedovelli +veasman +vbiles +vautier +vaulet +vatterott +vasudevan +vasos +vasek +vasallo +varquez +varquera +varoz +varone +varisco +varieur +varanda +vanzie +vanwyck +vanwhy +vanweerd +vanwechel +vanvuren +vanvorst +vanveldhuize +vanuden +vantuyle +vantull +vansteenhuyse +vansteenberg +vanson +vansise +vanschoor +vanschoiack +vanrossum +vanosdol +vanos +vanorsouw +vanoni +vannuck +vanlinden +vanlier +vanlaere +vaninetti +vanhove +vanhoutte +vanhoecke +vanheusen +vanhamme +vanham +vangordon +vaneekelen +vandonsel +vandevanter +vandesande +vandernoot +vanderjagt +vanderiet +vanderhurst +vanderbie +vandawalker +vandaele +vanblaricum +vanbeveren +vanamerongen +vanamburgh +vanalstin +valtas +valme +vallow +vallotton +valliant +vallegos +vallar +valladores +valerino +valeriani +valela +valdo +valant +valado +vajnar +vais +vagnier +vadlamudi +vactor +vaccarello +vacarro +uzzo +uutela +utzig +useted +urtz +urtiz +urtiaga +urteaga +urquides +urmston +urmos +urbany +urbaez +uptmor +upole +uphold +uoy +unverzagt +unvarsky +unterseher +unterman +unglesbee +underdue +uncapher +umeh +ulven +ulvan +ulshafer +ulsamer +uljevic +ulbricht +ulabarro +ujano +uimari +uihlein +ugolini +uglum +ufford +ueckert +udani +uchiyama +ubl +ubaldo +tyrie +tyndal +tyms +tylwalk +tyeryar +twilligear +twidwell +twardy +tuzzio +tutterow +tutaj +turziano +turzak +turtura +turtle +turrietta +turns +turnell +turneer +turnbill +turello +turbacuski +tupaj +tupacyupanqui +tuomi +tuomala +tuohey +tuning +tumolo +tuman +tullar +tulino +tuggerson +tuckerson +tucke +tuchy +tucek +tucciarone +tuamoheloa +tuai +tua +tsu +tsironis +tsing +tsiatsos +tsemetzis +tscrious +tsau +tsasie +tsakonas +trypaluk +trygg +truxell +truver +trusso +trush +trusello +truocchio +truncellito +trumps +trumper +trumbley +trulli +truhe +truglia +trufin +trudnowski +trudics +trudgeon +trucks +trucker +troyano +troyani +trouser +trotty +tronaas +tromley +tromburg +troller +trojecki +trojahn +troike +troidl +troge +trofholz +trochesset +trish +trio +trinkley +trinkl +tringham +trindle +trimnell +trilli +trill +triguro +trigueros +triece +trider +trexel +trewin +trewhitt +treuter +treutel +trettin +trett +treso +trenton +trentini +trenholme +tremel +trell +tregan +trecarichi +trbovich +traverse +traunfeld +trapanese +tramp +tramm +trajillo +trahin +traher +tradup +toyne +toyama +townzen +towber +toussiant +tousom +tourtelotte +touma +toulmin +touhy +tottingham +totter +tott +totosz +toti +tota +tostanoski +toso +tory +torreson +torreon +torrell +torralva +torno +torngren +tornese +tordsen +torbit +torbeck +toppins +toppen +toppah +topolinski +toplk +topliss +toplin +topinka +topi +toomsen +tools +toof +too +tonic +toniatti +toni +tongren +tonche +tonas +tomsick +tomsche +tomopoulos +tomkowicz +tomasko +toliongco +toleston +tokunaga +tokita +tohonnie +tognetti +toevs +todora +todahl +tod +tocher +tocchio +tobosa +tobiason +tjepkema +tizon +tixier +tiwald +tittl +tisue +tisinger +tisa +tirona +tiro +tirk +tirino +tiotuico +tinnea +tinin +timone +timber +tilleman +tille +tiley +tijing +tigg +tiffner +tietjens +tieger +tidrington +tidrick +tibwell +tibolla +tibbit +tiangco +tian +thyfault +thurstonson +thundercloud +thuman +thrun +thrill +thorsten +thornquist +thorner +thormina +thormer +thoran +thomspon +thoeny +thoennes +thoele +thoby +thillet +thiesse +thibedeau +theuner +thessing +therurer +thero +theo +themot +them +thein +theim +theiling +theesfeld +theaker +thaniel +thamphia +thammorongsa +thalheimer +thain +thaemert +thackxton +thackrey +thackery +teyler +tewmey +tevada +tetz +tetteh +tetro +tetreau +testman +tessner +tesoriero +tesnow +tesauro +tersteeg +terrett +terrero +terrence +terrall +terr +terkelsen +terbush +teranishi +tepperberg +tentler +tenor +tenharmsel +tengwall +tenerowicz +tenebruso +tendick +tencer +ten +temoshenka +telman +tellinghuisen +telega +telchik +tejeiro +teitel +teichrow +teichmiller +tegtmeier +tegenkamp +teet +teeples +teepe +tebow +tebbetts +tebbe +tease +teach +tayo +taymon +taylan +taydus +tavolario +taves +tauteoli +tatu +tatsak +tatnall +tates +tasto +tasse +tashman +tartar +tarsis +tarris +tarricone +tarran +tarner +tarbor +tarbet +tarasuik +taraschke +taps +tappis +tapio +tapat +tapales +tapaha +taomoto +tanzosch +tanzman +tanweer +tanoue +tanori +tanon +tannazzo +tanker +tanke +tango +tanen +tandon +tandetzke +tancer +tamminen +tamiya +tameron +talladino +taliulu +talburt +talboti +talat +talamas +takiguchi +takenaka +tak +tahir +tagliente +taglialatela +tagge +tagami +tafuri +tafreshi +tacderen +taccariello +tacata +tacadina +tablada +tabet +taberski +tabbaa +taake +szypowski +szynkowicz +szymula +szychowski +szwarc +szuszkiewicz +szumny +szumilas +szumiesz +szuch +szuba +sznejkowski +szmidt +szlosek +szigethy +szenasi +szczurek +szczesniak +szalankiewicz +szalai +szal +szaflarski +syrstad +syrop +synowiec +synakowski +symore +symon +syddall +sybounheuan +swonke +swisshelm +swiller +swenton +swell +sweley +sweger +swefford +sweere +swee +swedeen +sweazey +swearngen +swaynos +swatloski +swatek +swary +swartley +swarr +swarn +swarb +swarat +swanzy +swantner +swantko +swanteck +swanick +swaine +swadling +svob +svensen +sutt +suto +sutherburg +susmilch +susla +susko +susan +surridge +surran +surkamer +suon +suominen +suneson +sundman +sumstad +sumruld +sumey +sumbera +sumaran +sultaire +sully +sulloway +sulkowski +sulc +sukut +sukup +sukovich +suihkonen +suga +suffern +sueyoshi +suet +suennen +suellentrop +sueda +suddath +succop +sub +sualevai +styler +stvictor +stuzman +stusse +sturwold +sturino +sturiale +sturdnant +stupke +stumm +stumb +stukel +stufflebean +stuever +stuessy +stuedemann +stueckrath +stueck +studwell +stubler +stubbert +strzyzewski +strzelczyk +strutynski +struckmann +struber +strow +stropus +strople +stroot +strohecker +string +strimel +stright +striffler +stridiron +stricklan +strem +streller +strekas +strek +streitz +streitenberge +strech +streat +strazzullo +strawberry +stratter +strathmann +strassell +strassberg +strangstalien +stoyanov +stouten +stoutamyer +stotelmyer +stoskopf +storton +storbeck +stoppenbach +stoot +stoor +stonewall +stonefield +stolzenberg +stollsteimer +stokel +stohs +stohrer +stofferahn +stoermer +stoen +stoecklin +stockhoff +stockburger +stoakley +stoa +stlucien +stitz +stittgen +stitch +stires +stippich +stinser +stinemetz +stinde +stinar +stimus +stiliner +stilgenbauer +stifflemire +stickfort +sticher +stibb +stewardson +stevison +steube +sternod +sterger +steptore +steppig +stepleton +stephanski +stephano +stepchinski +stepanik +stepaniak +stenslien +stenslie +stengle +stengele +stendal +stempert +steman +stelmach +steitzer +steinworth +steinway +steins +steinour +steinmiller +steinhouse +steinhour +steinger +steindorf +steinau +steinacker +stegmann +steff +stefansky +steensland +steenrod +steenland +steeby +stech +stealy +steagell +steadings +steach +stawasz +stavsvick +stavrides +stavish +stathes +state +stassinos +stasser +stasio +stasa +starzynski +starritt +starring +starnold +starchman +starch +starace +stapelton +stanuszek +stanovich +stankovic +stankey +stanislaw +staniforth +stanier +stangarone +stanganelli +standlee +standerwick +standback +stancombe +stancer +stancato +stammel +stambough +stallones +stakelin +stagnitto +stafiej +staffon +staffieri +staffen +stade +stachniw +stachnik +stacer +staber +stabell +staback +staadt +spunt +spueler +spruit +spruel +spriggins +spratlen +sprain +sprafka +sportsman +sports +sporle +spoerl +spoerer +splonskowski +splinter +splane +spizzirri +spinoso +spinka +spiney +spine +spindola +spindle +spinas +spilski +spielmaker +spiegle +spevacek +sperrey +sperger +sperduti +speranza +sperandeo +spender +spena +spella +speith +speis +speiden +speidell +speese +specter +speake +speagle +spaun +spara +spanton +spanswick +spannbauer +spana +spaide +spadlin +sowash +sovey +sovak +souvannavong +souvannarith +souvannakhiry +souser +soulek +soukkhavong +soucek +sottosanti +sotlar +sotak +sossong +sosso +sosinsky +soscia +sorotzkin +sorokin +sorman +sorgatz +soren +soravilla +sor +soprych +sopata +soorus +sookoo +sonnenburg +sonkens +sondrini +sondelski +somsana +sommerdorf +sommella +solverson +soltren +soltes +solonika +solomons +sollock +sollman +solle +solimeno +soliece +solgovic +soldow +solas +solarz +sokorai +sokolik +soisson +sohrabi +soho +sogol +soga +sofka +sodomka +sodachanh +sochocki +socci +sobrowski +sobrino +soboleski +soberano +sobba +sobania +soans +snuffer +snowdon +snowdeal +snoderly +snock +snitker +snith +sniff +snedeger +snearly +snachez +smurthwaite +smolski +smithmyer +smithen +smithberger +smisek +smily +smiglewski +smietana +smialowski +smeltz +smelko +smeenk +smedsrud +smayda +smaw +smarsh +smalt +smalarz +slutzky +sluis +sloup +slotkin +slosek +sloon +slomski +slocombe +slockbower +slisz +slinsky +slicer +sleek +slayman +slavis +slatin +slanina +slagel +sladky +sladek +skyberg +skwara +skursky +skurski +skura +skrobacki +skretowicz +skorepa +skomo +sknerski +skinsacos +skillom +skillen +skibosh +skibisky +skewis +skene +skender +skalecki +skafec +sixon +sivia +sivert +sitto +sita +sissman +sisneroz +siskey +sischo +sirwet +sirucek +sirrine +sirnio +siriani +sirek +sippial +sionesini +sioma +sinkiewicz +sininger +singuefield +sings +singhisen +singeltary +singco +siner +sindt +sindorf +sindoni +sindel +simzer +simunek +simplot +simpelo +simonetta +simonett +simoneavd +simmelink +simlick +simkowitz +simino +simers +simer +simcic +simank +silverwood +silverhorn +silquero +sillitti +sillery +silla +silker +silerio +silagy +silago +sikorra +sikkila +sikel +sikat +sikander +sigworth +signorino +sigafoos +siewers +sievel +sierzenga +sierer +siepker +siena +sien +siegfreid +siegers +siefkes +siefferman +siebel +sidles +side +siddiq +sida +sickmeir +sickendick +sichler +sicheneder +sichel +siangco +siad +shymske +shutte +shutes +shurkus +shumay +shukert +shuhi +shuga +shuckhart +shryer +shroeder +shrimplin +shrier +shrefler +shrake +shoyer +showden +shouts +shoto +shonts +shoeman +shoddie +shirilla +shird +shirai +shipwash +shiplet +shipler +shintani +shinney +shinko +shindorf +shimonishi +shimanuki +shiller +shiiba +shigemitsu +shigematsu +shifley +shifflette +shiever +shido +shidemantle +shidel +shibahara +shey +shevenell +shetz +sheskey +sherratt +sherif +sherfy +sherbo +shepp +shenberger +shenassa +shemper +sheltrown +shellum +shellnut +shellhorn +shellgren +shelenberger +sheive +sheasby +shearier +shearhart +shawler +shawaiki +shaull +shau +shatt +sharratt +sharrai +sharpsteen +sharpey +sharley +shariff +shariat +sharar +shapin +shansky +shannonhouse +shangraw +shammaa +shamapande +shalam +shaker +shahinian +shaginaw +shaggy +shafto +shafi +shaer +shae +shadix +shadburn +sfera +sfatcu +seymoure +sey +sewester +severyn +seutter +seuss +seufer +settecase +sespinosa +servey +servano +serum +sertuche +sert +serro +serret +serre +sermon +sermania +sergovia +seremet +serabia +ser +sephton +sep +senta +sensenbach +senneker +senk +senion +senemounnarat +seneker +semo +semenick +seltrecht +sellar +seliski +selis +seligmann +selia +selestewa +selem +sele +selca +selbert +selbe +sekerak +sejkora +seiz +seiver +seirer +seilhymer +seiley +seiger +seigart +seifts +seiffert +seidle +seide +seiberlich +segota +segobia +seewald +seepersaud +seen +sedy +sedtal +sedotal +sedler +sedlachek +secreto +secora +secky +seckington +sebestyen +sebers +searchwell +searchfield +searcey +seanor +sean +seamen +sealander +seaford +scullion +scrudato +scronce +scrobola +scribellito +scozzari +scoresby +scolnik +scoh +scoble +sclavi +sciuto +scisco +scigliano +scieszka +scierka +scibetta +sciavillo +sciarini +sciancalepore +schwuchow +schwoyer +schwoerer +schwien +schwetz +schwertfager +schwentker +schwent +schwendinger +schwemm +schweiner +schwarzenberg +schwartzer +schwarten +schwanebeck +schwanbeck +schwallie +schwald +schuyleman +schustrich +schurer +schuppenhauer +schumucker +schumans +schuiling +schueth +schuckert +schuchmann +schuble +schub +schroy +schromen +schroeppel +schroedel +schreur +schreimann +schrecker +schouweiler +schou +schornick +schoreplum +schooling +school +schoo +schontz +schoninger +schoneck +schone +schonaerts +schomberg +schollmeier +schoepflin +schoenegge +schoeneck +schoeller +schoebel +schnitman +schnetter +schnelzer +schneidmiller +schnair +schnabl +schmuff +schmoldt +schmider +schmeer +schlussel +schlissel +schlett +schlesner +schlesener +schlepphorst +schlepp +schlechten +schlaack +schiveley +schirm +schimanski +schilmoeller +schille +schilawski +schiffner +schiffert +schiedler +schickler +schiappa +scheuring +scheule +schepker +schenz +schenkelberg +schembri +schembra +schellhorn +schellenberge +schelle +scheitlin +scheidecker +scheibner +scheiblich +schehl +schefers +schee +schearer +schaubert +schattschneid +scharich +schares +scharber +schappach +schaneman +schamberger +schak +schaetzle +schaecher +scerbo +scelba +scavona +scatton +scarsdale +scarr +scarpone +scarlata +scariano +scandurra +scandura +scandalis +scammahorn +scafuto +scaffe +scachette +sayyed +sayko +sayco +sayasane +sayaphon +sawney +sawdo +sawatzke +sawallich +savko +savka +savitts +saviola +savio +savine +savich +savells +saulpaugh +saulino +sauler +saugis +sauber +sau +saturnio +sattel +satomba +saterfield +satava +sasseville +sasahara +sarzynski +sartorius +sartore +sartell +sarsour +sarson +sarp +sarnosky +sarni +sarlinas +sarka +sarinsky +sarin +sardo +sarden +sarchett +sarault +sarate +sarao +sarantakis +saralegui +sapper +sappah +sapinski +sapardanis +sapara +sanyaro +santwire +santrmire +santoriella +santor +santomassimo +santisteban +santillanez +santamarina +sansotta +sanpson +sannutti +sankoh +sangasy +sanfelix +sandvill +sandus +sandstede +sandling +sandland +sandhop +sandeen +sandblom +sanday +sandager +sancrant +sancken +sanchirico +sancher +sances +sanberg +sanacore +samyn +samul +samrov +samrah +sampere +sampang +samland +samii +samiento +sames +sambrook +samborski +samberg +samaroo +salzl +salvio +salvati +salvadge +saluan +saltzberg +saltus +saltman +salstrom +salotti +salmonsen +sallmen +salle +sallach +salines +salesky +saleme +saleha +saldano +salb +salazak +salasar +salado +salach +sakumoto +sakamaki +sajovic +sajous +sainte +sainliere +sainato +sails +saik +saieva +saice +sahe +sahady +sago +saft +safier +saffo +safer +saether +saens +saeler +saelens +sadvary +sadoski +sadorra +sadolsky +sadin +sadik +sadeghi +sadat +sacramed +sachetti +sacchi +sacca +saberi +saarela +saadat +saabatmand +rzeczycki +rysz +rynkowski +rynerson +ryneer +rymut +rymes +rymasz +rylaarsdam +rykaczewski +ryen +ryea +rydin +rydelek +rydel +rydeen +rybinski +ruvalcava +rutski +rutske +rutman +rutkin +ruths +ruthman +ruthers +rutheford +rutgers +rutenberg +rutar +russwurm +russomano +russomanno +russer +russello +rushanan +rusen +ruschmeyer +rusaw +rupnick +rupley +rupinski +ruopoli +rumps +rumbach +rulapaugh +ruivo +ruiter +ruhoff +ruhn +ruhman +ruggirello +ruffell +ruffel +ruezga +ruesga +ruelar +ruehter +ruehling +ruehlen +ruedas +rued +rueck +rudoy +rudio +rudh +rudell +rudat +rudack +ruckey +ruckel +ruckdaschel +rubsam +rubie +rubick +ruberti +rubeo +rubenfield +rubenfeld +rubash +rubalcave +rozzelle +rozon +royle +roxbury +rowlison +rowels +rowbotham +rovell +rouw +routzen +routzahn +routte +rousso +rousell +rous +rounsville +rouly +roulhac +roulette +roule +rouhoff +roughen +rouch +rottinghous +rottier +rotruck +rotkowski +rotkovecz +rothfeld +rotherham +rotch +rotanelli +rosul +rossie +rossen +rosseel +rosky +rosian +rosher +rosewall +roseum +roseth +rosenwinkel +rosentrater +rosenlof +rosenhagen +rosengren +rosendorf +rosendale +rosenbush +rosemore +rosek +rosebur +roscup +rosca +rosboril +rosazza +rosane +rorabacher +ropka +roofner +ronsini +ronnie +ronnfeldt +ronn +ronero +roner +ronayne +rona +ron +romprey +rommelfanger +romkema +romiro +romay +romanowicz +romanov +romanoff +romaniszyn +romanek +romane +rollf +rollag +rolfson +rolack +rokicki +rohrdanz +rohdenburg +rohal +rogowicz +rogish +rogian +rogens +rogado +roesslein +roesing +roerig +roenigk +roelle +roehler +rodvold +rodrigres +rodregues +rodolph +rodkin +rodiquez +rodina +rodero +roderman +roderiquez +rodenizer +rodenbough +rodebush +rodde +rocle +rochlitz +rochkes +rocheford +robyn +robusto +roberston +robbie +robbert +robberson +robair +roam +roadruck +roades +roaden +roadarmel +rizzardi +rivinius +riveras +rivello +rivelli +rivadulla +rittinger +rittie +rittichier +ritthaler +ritmiller +riskin +risien +rishor +risatti +ripson +ringold +ringen +rinfret +rineheart +rindal +rincan +rinauro +rinaldis +rina +rimkus +rimi +rimel +rimbach +rily +rillie +riller +rihner +riherd +rigley +rightmyer +righthouse +riggert +riggers +rigerman +rigas +rifai +riesner +rienzo +riemersma +riefer +ridgebear +rides +ridell +ridall +ricucci +ricley +rickerl +richemond +richelieu +richel +richardville +riccitelli +ricciardelli +ricardez +riblett +ribar +riase +rian +rhym +rhule +rhude +rhondes +rhodehamel +rhim +rheingold +rheaves +reznick +reynero +revolorio +revette +revelo +reuven +reusswig +reusser +reuhl +reuber +rettele +retka +retersdorf +resseguie +resper +resner +resides +reshard +resek +reseigh +repaci +renzullo +renuart +rentfrow +rennemeyer +renneker +renkes +renier +rendle +renburg +remsburg +remos +remmie +remmick +remlin +remkus +remfert +remey +remerez +remedies +remaly +relph +rellihan +relles +relaford +reksten +rekas +reitzes +reiten +reitema +reisin +reinmann +reinicke +reinholdt +reinheimer +reinfeld +reineman +reineking +reinartz +reimel +reik +reihe +reidling +reidler +reichenberg +reichenback +reho +rehnborg +rehnberg +rehart +regusters +regulus +reglin +reginal +reges +regensburg +regen +regas +reevers +reever +reeter +reedholm +redle +redic +redfear +reddekopp +rechel +rebick +rebholz +reazer +reauish +reath +reasinger +reas +reary +realmuto +reager +readenour +razze +rawicki +rawhoof +ravi +ravetti +ravenscraft +rava +rauf +rauelo +rattee +rattay +rattanachane +rattana +rathmanner +rathgeber +rathe +rathbum +rasul +rastogi +rastelli +rassman +rasmuson +rasely +raschko +raschilla +rasche +rasanen +rary +raring +raridon +rarey +raquel +rappenecker +rapelyea +ransier +ransberger +rannalli +ranjel +ranford +randoll +randklev +ramy +ramundo +ramu +ramsuer +ramstad +ramsbottom +ramphal +ramnarine +rammer +ramiscal +ramgel +ramesar +ramento +rambeau +ramales +ralon +rallison +rakich +raith +raiola +rainwaters +rainbott +raimundo +raimer +raimann +railing +rahl +rahama +ragusano +rafla +rafiq +rafi +raffone +raffo +rafail +raelson +raehl +raebel +radway +radue +radona +radisovich +radics +rademan +radeke +radder +radden +rackow +racitano +racina +rachar +racanello +rabuck +rabkin +rabidoux +rabello +rabel +rabara +qunnarath +quirindongo +quintel +quintano +quinlin +quinchia +quincel +quilling +quillian +quilliam +quillens +quihuiz +quiett +quicksall +quest +querta +querido +quent +quealy +quaye +quante +quamme +qualia +quaker +quagliano +quader +pytlewski +pyo +pylvainen +pyland +pych +py +puyear +puulei +puthiyamadam +putalavage +purzycki +purkerson +purcella +purce +puppe +pupa +pullon +pullie +pulgarin +pulford +pujals +puiatti +pugeda +puffett +puffenbarger +puertas +puddy +pucio +pucella +ptaszynski +psomiades +psencik +przybysz +przybycien +przedwiecki +pryzgoda +prvitt +pruskowski +prugh +prudent +prudden +provazek +protasewich +protain +proo +prondzinski +prokes +prohonic +progacz +proescher +prodan +privatsky +privateer +priore +prinzing +prinzi +printers +prigmore +priewe +prier +pribbeno +prezzia +preyor +prewer +prevett +preuitt +prepotente +prence +prekker +preisach +precythe +prebish +preato +prchlik +prazeres +prazak +prauner +prattella +prati +prat +prasser +prasomsack +praml +prabhakaran +prabel +poyneer +powroznik +powal +poux +poullion +pouliotte +pottier +potthast +potocnik +poties +poths +postuci +postal +posso +poser +portwine +portune +portaro +porrello +porreca +porrazzo +poremski +pore +porcello +popple +poppert +popowski +popovec +popke +popik +popielarczyk +popick +popi +poper +popelka +popec +poortinga +poorte +pooni +ponyah +pontin +pomerance +pomar +polynice +polyak +polverari +poltorak +polovoy +pollmann +pollio +pollinger +pollacco +polivka +polian +poleyestewa +polera +poldrack +polcovich +polakoff +polakis +poladian +pokorski +poiter +poffenroth +poetzsch +poeschl +poeschel +poepplein +poepping +poeling +podvin +podsiad +podrasky +podlas +pode +podbielski +podany +pochiba +pocchia +poalino +poaipuni +plymire +plyer +pluvoise +plungy +pluid +ploude +plosker +plomma +plohr +plocica +pliler +plevin +plessis +plesnarski +plesha +plenskofski +plecker +platenburg +platas +plansinis +plana +plamer +placencio +pizzolato +pizur +pius +piurkowski +pituch +pittillo +pitel +pitcak +piszczatowski +pisula +pishner +pirner +pirillo +pippert +pipe +pinyan +pinsonnault +pinnt +pinkelton +pinena +pinela +pineault +pinault +pilotti +pillips +pilbin +pilati +pikey +pih +piguet +pigna +pigler +pigat +pietzsch +pietrafesa +pieters +pierzchala +pierrie +pierfax +piercefield +piedmont +piedigrossi +piede +piechoski +piearcy +pidcock +picolet +pickren +pickings +picht +picco +pi +phomphithak +phommatheth +phlieger +phippen +philpotts +phillipi +philippon +philipose +philben +pherson +pherguson +phatdouang +phanthauong +phanord +pfirsch +pfendler +pfannenstein +pfahlert +pfahler +pezzuto +pezzimenti +pexton +pexsa +pewo +pevsner +petzel +petts +pettner +pettinella +petticrew +pettibon +pettes +petrov +petrosyan +petron +petrocelli +petrocco +petrizzo +petris +petrino +petricone +petralba +petrakis +petrain +petkoff +petitjean +petges +peteuil +petet +petersdorf +petchulis +pestronk +peskind +pesenti +pertsovsky +personette +persia +persampieri +persall +pers +perre +perper +perolta +perng +perler +perkoski +perish +perilloux +perey +peressini +percontino +perciballi +peral +peppas +pepitone +penzero +pentico +pent +penski +pense +penrice +penoyer +penovich +pennimpede +pennigton +pennig +penisson +pendl +pendill +penceal +penatac +penasa +penanegra +pelman +pelligrini +pelliccia +pellant +pelkowski +pelak +pein +peightell +pegler +pegelow +peffers +peetz +peelman +pee +pedrin +pedlow +pedelty +pede +peddy +peckinpaugh +peckens +pecht +pechin +peche +peccia +peca +peaker +pazik +pazderski +pazan +payno +payenda +pawluk +pawlosky +pawell +pavlikowski +pavlides +pavish +paviol +paulick +paukert +pattum +patrylak +patronella +patrich +patriarco +patraw +patierno +patient +patience +paten +pastorin +pasternack +pastano +passaro +pasqualino +paskoff +paskin +paskiewicz +pashel +pasey +pascher +pasaye +pasanen +parvis +partmann +parthemore +parshotam +parsens +parraga +paronto +paroda +parobek +parmann +parmalee +parlet +parle +parkers +pariente +paree +pardey +parde +pardall +parbs +parbol +paranada +parah +parado +pappy +pappenheim +paplow +papka +papich +papi +papallo +paolicelli +panzarella +panyik +pantle +pantera +pantalone +pansullo +panone +pano +panny +pannenbacker +pankiewicz +pankhurst +panke +pankau +pangan +panessa +pandolfi +pandiani +panchik +panchak +panakos +panak +panagakos +palubiak +palso +palowoda +palmucci +palmour +palmino +palmerino +palme +pallino +pallerino +palisi +palisano +palis +palazzola +palay +palaspas +palamara +paladini +paladin +paire +paillet +pailet +paider +paguin +pagoda +paglione +paglialunga +pageau +pagdanganan +pafundi +padiong +padberg +padarebones +padalecki +pacol +pacilio +pachter +pachew +pabelick +paaske +ozzella +owoc +owca +ovitz +overmann +overlee +overhulser +overholtzer +ovens +ovall +outhier +ouren +ouinones +ottum +ottomaniello +otteman +otsman +otinger +oszust +ostorga +ostolaza +osterhouse +osterberger +ostberg +ososki +osmers +osmera +oshey +osequera +osenkowski +oschmann +osbment +osbey +osazuwa +osayande +osako +orzell +orvin +ortwine +ortmeyer +ortelt +ortelli +orsten +orson +orrill +orphey +orndorf +orloski +orlich +orlander +orland +ork +orji +orison +orielly +orielley +ori +organek +orey +orender +ordona +ordon +ordman +orazine +oravetz +orandello +orabone +ora +or +oquenda +opyd +opteyndt +opoka +opiola +opielski +opell +opeka +onyeagu +onezne +ondeck +ona +oms +ommen +ominelli +omernik +omelia +olynger +olwin +olvey +olufson +olubunmi +olten +olshefski +olsby +olores +olma +olli +ollech +ollar +oliviera +olivarri +oligschlaeger +olheiser +olgin +olevera +olerud +olenski +olenius +oldow +oldershaw +oldenburger +olausen +olaes +okutsu +okken +okitsu +okie +okeson +okelberry +okel +ojito +ojano +ohyama +ohr +ohnstad +ohmen +ohlhauser +ohlensehlen +ohle +ohashi +ohanley +ogzewalla +ogutu +ogston +ogrodowicz +oginski +ogiamien +oger +ogarro +ofsak +oflynn +off +ofer +oelze +oehm +oehlschlager +oehl +odome +odo +odmark +odil +odgen +odermott +odair +oczon +ockman +ockleberry +ocken +ochal +ochakovsky +ocenasek +occhuizzo +ocanaz +obrein +obray +oborne +oblinski +obin +obierne +obholz +obhof +oberski +obermier +oberlies +obergfell +obenauer +obeid +obbink +obaker +oatney +oatfield +nyulassy +nwagbara +nutley +nuth +nurthen +nuntaray +nunno +nunlee +nuner +numkena +nuhfer +nugal +nuessen +nuding +nuchols +noye +noya +nowosielski +novickis +novi +novencido +novel +novad +noujaim +notoma +notice +noth +notch +notarnicola +nosworthy +nosacka +norum +northouse +nortesano +norstrand +norsingle +norrie +norr +norn +normoyle +norise +nordstrand +nordmark +nordes +norales +nopachai +noorda +nooman +nonroe +nonemaker +nonamaker +nommay +noman +nollet +nolle +noli +noice +noerr +nodland +nocon +nocks +nockels +nocella +nocek +njie +nizo +nitchman +nistendirk +nissan +nisly +nishitani +nishio +nishina +nirschl +niro +nirenberg +niquette +nip +nindorf +nincehelsor +nimz +nimura +nilmeier +nikula +nikach +nik +nightwine +night +nighman +nighbor +niffenegger +niez +niesporek +nier +nieminen +niemie +niedermeier +niederberger +nido +nicome +nicolozakes +nicolia +nicoles +nicolau +nickodem +nicklous +nickisch +nicka +nici +nibler +nibbe +nhatsavang +ngoun +neyer +newmyer +newitt +newgard +newenle +newbraugh +newbound +newand +nevue +nevison +nevis +nev +neujahr +neufer +nette +netkowicz +nethkin +nesvig +nestico +nessner +nesslein +nesset +nessel +neshem +nesbeth +neris +nerenberg +neren +nepomuceno +nemith +nelder +neitzke +neita +neiner +neimeyer +neigenfind +neiford +neidenbach +nehlsen +negreta +negrana +neenan +neddenriep +nech +neborak +nebesny +nazar +nawfel +navo +navarete +nauss +naumes +naugler +nauer +natvig +natalizio +natalie +natalia +nastasia +nasaire +naruaez +narrow +narkevicius +nardozzi +nardino +narain +napue +napenas +nap +naomi +nao +nanz +nantwi +nannen +nang +nanfito +nanes +nan +namsaly +namey +namer +namauu +namanworth +nalevanko +nalder +nakaoka +nakamatsu +nakajima +nakada +nakaahiki +naimoli +nahmias +nahhas +nagtalon +nagelkirk +nagasawa +naftel +nadine +naderman +nachbar +nacci +nabzdyk +nabor +nabavian +nabarowsky +naasz +myslim +myree +mylar +myall +muzii +muyres +muwwakkil +mutters +mutschelknaus +musulin +mustaro +mustache +musslewhite +mussell +mussa +musni +muslim +muskrat +muskopf +muskett +musitano +musilli +musielak +musguire +musgraves +muscott +muschik +muschaweck +mursch +murril +murra +muros +muri +murel +murcko +murak +muphy +muntean +mundz +mundinger +munder +mumaugh +mulville +mulrenin +mulnix +mullenaux +mullahy +mulkern +mulkerin +mulchrone +mulato +muinos +muhlstein +mugnolo +muggeo +mugge +muffett +muenzenberger +muellerleile +mudie +muckelroy +muccio +mrvan +mrkvicka +mraw +mozick +mozga +mozak +moxness +moxey +mounkes +mound +motonaga +mothershead +motayne +motayen +mosty +mostad +mossbarger +moskwa +moskop +mosena +mosen +moscoffian +moryl +morvillo +mortin +mortier +morsberger +morrey +morrales +morral +morphy +morock +morlino +morkert +morken +morisseau +morishito +morinville +morici +morgano +morgana +moreschi +morenco +morence +morella +mordeci +moratto +morath +morario +morando +moradian +morada +mootry +moomey +monville +montoto +montore +montoney +montfort +montey +montesi +monterrubio +montembeau +montayes +montalban +montaivo +monsay +monot +monopoli +monnerjahn +monkowski +monka +monjure +monios +monington +monges +monfils +moneyhun +moneaux +mondt +mondoza +mondloch +mondelli +mondale +monclova +moncher +monath +monagas +mominee +moma +molz +molstad +molsan +molnau +mollura +molleur +molla +molands +moitoza +moisa +moine +mohrlock +mohre +mohomed +mohmed +mohair +mogus +moeuy +moeser +moehr +moehle +modique +modgling +modglin +moderski +moczulski +moccasin +moayyad +moatz +mlodzianowski +mleczynski +mizwicki +mizutani +mizia +mizenko +miyataki +miyanaga +miville +mitsdarffer +mitrani +mitman +mitkowski +misuraca +miskinis +miskiewicz +miska +misik +mishulovin +mishulouin +mishkin +mishar +misenti +mischo +mischnick +mirisola +miricle +mirick +miramontez +mirafuentes +miraflores +miquel +mione +minzy +minzenmayer +minzenberger +mintken +minten +minot +minors +minn +minkowitz +minkins +minister +minic +minhas +mingioni +mingee +minert +minchow +mincer +minalga +mimozo +milward +milson +milosch +millings +millick +millare +milke +milinazzo +milin +milich +milette +mile +mildrum +mildon +milcher +milberger +mikuszewski +miklitz +mikko +mihalios +mihalick +mieth +mierzwiak +mierzwa +mierow +mierez +mierau +mielcarek +miecznikowski +miears +middlekauff +micucci +mickelberry +michno +michlich +michieli +michelstein +michelini +michalicek +michal +micciche +micalizzi +mguyen +mezzina +mezzenga +meydid +meusel +meusa +metty +mettig +mettenburg +metier +meth +metelko +mestemacher +messamore +mesplay +mespelt +mesiti +mesina +meshyock +mesenbring +meschke +merzlak +merrih +merner +merkwan +merklein +merkey +meringolo +merine +mergist +merganthaler +merckling +menzer +mensalvas +mennecke +menne +menjiva +mengwasser +menger +menedez +meneal +menck +mencia +menchen +menchavez +melzer +melve +melso +meloan +melman +mellison +mellerson +mellendorf +mellberg +melikian +melian +melgaard +meleo +melbye +melber +meja +meixelberger +meitz +meitner +meiss +meisch +meinen +meinberg +meigel +meierhofer +mehringer +mehrer +mehle +mehall +megahan +mega +mefferd +meenan +meecham +medvec +medinger +meddock +medawar +medaries +mecias +mecannic +meazell +measom +meaden +meach +mcwhinnie +mcwhinney +mcwells +mcvinney +mcvenes +mcthige +mcthay +mcshaw +mcroyal +mcrenolds +mcratt +mcquilliams +mcquesten +mcphetridge +mconnell +mcnolty +mcneish +mcnany +mcnamar +mcmullins +mcmulen +mcmenimen +mcmellen +mcmanuis +mcmanemy +mclernon +mclauren +mclamore +mckusick +mckosky +mckirryher +mckindra +mckin +mckever +mckernin +mckerlie +mckennzie +mckelvin +mckelphin +mckeague +mckaughan +mciwraith +mcilhinney +mchardy +mcgurie +mcgrevey +mcgreen +mcgohan +mcglocklin +mcglew +mcglaun +mcgibney +mcghinnis +mcgaughan +mcgathy +mcferran +mcfeely +mcfatten +mcewin +mcendarfer +mcenany +mcelvy +mcelmarry +mceathron +mceaddy +mcdugle +mcdoulett +mcdaneld +mcculloh +mccullin +mccullan +mccullagh +mccubrey +mccrobie +mccrain +mccraight +mccracker +mccrabb +mccowin +mccoubrey +mccoon +mcconomy +mcconnico +mcconahay +mccomish +mccoid +mccloude +mcclinsey +mcclenic +mcclee +mccier +mccathran +mccash +mccarvy +mccarrol +mccarraher +mccalpane +mccalebb +mccalanahan +mccade +mccadams +mcbroome +mcaskill +mcartor +mcaree +mbonu +mazzillo +mazzetti +mazuera +mazowieski +mazierski +mazella +mayze +maywalt +mayher +mawk +mavris +maushardt +mauras +mauracher +maupins +matysiak +matye +matusz +matuska +matusiewicz +matulewicz +mattock +mattingley +mattina +mattick +mattan +matskin +matros +matrisciano +matone +matonak +matlow +matkovic +matison +mathelier +matelski +mateiro +masunaga +masterton +mastalski +massini +massena +massed +massarelli +massanelli +maso +maslen +maslakowski +masincup +masilko +masher +mashall +masello +masell +maschmeyer +mascheck +maschak +mascari +masar +masak +masaitis +marxsen +maruschak +maruscak +marus +marumoto +martyr +martsolf +martorelli +martling +martischnig +martirano +martinsons +martinov +martinon +martinolli +martinet +martinell +martinel +martinat +martich +martey +martelles +martelle +marsolais +marsili +marshbanks +marshak +marseilles +marsaw +marrier +marrett +marrapodi +marrapese +marquitz +marousek +maronge +maro +marmerchant +marlene +markworth +markwardt +markuson +markou +markakis +marjenhoff +maritato +mariska +mariacher +margot +margis +marflak +marfil +marer +mardirossian +marcusen +marconis +marcisak +marcille +marchionni +marchesi +marchaland +marcet +marcelli +marca +marbley +marash +marascalco +marante +marangoni +marando +mapua +mapstone +mapa +maohu +manzur +manweiler +manuia +manto +mantifel +mantia +manteuffel +mantella +manteca +manspeaker +mansbach +manous +manoso +manolis +manocchia +mannheim +mannello +manlangit +manino +manieri +manicchio +maniar +maniaci +maniace +manglona +mangis +mangiafico +manghane +manero +manely +maneafaiga +mandril +mandolfo +mander +mandelberg +mandala +manco +mancill +mancher +manche +manaugh +manassa +manasares +manansala +manalili +mamudoski +mammo +mammenga +mamaril +mamaclay +malueg +malter +maltbia +maltas +malool +mallas +mallalieu +mallacara +malkiewicz +malinovsky +malewski +malett +maldomado +malcomson +malcik +malavet +malaver +malasky +malas +malango +malanaphy +malach +makofsky +mako +makler +maka +majuste +majied +majeske +majerowski +majera +maixner +maisto +maiocco +mailo +maile +maikoksoong +mahunik +mahrer +mahraun +maholmes +mahlke +mahli +mahfouz +maheia +mahalko +magwire +magpuri +magoun +magnone +magnetti +magliulo +magliolo +magliocco +magitt +magginson +maggert +magera +maged +mage +magbitang +magalong +magaha +maffitt +maffey +maestri +maenpaa +maenhout +maendel +mady +maduro +madu +madray +madras +madock +madlung +madler +madenford +madeau +maddaleno +macvean +macura +macrum +macrostie +macnaught +macnamee +macmurray +macmillen +maclay +mackle +mackimmie +mackedanz +maciejko +maciasz +maciak +machtley +machens +macentee +maceda +macdougald +maccauley +maccartney +macareno +macaraig +macapagal +macahilas +macadamia +mabone +mabary +maatta +maalouf +lysak +lynge +lynady +lykam +lyerla +lychwala +luzuriaga +luzinski +luxon +luvene +lutzi +luthe +luss +lushbaugh +luscavage +lurey +luquin +lupul +lupu +lupkin +lupfer +luoto +lundman +lundie +lundi +lundemo +luncsford +lumukanda +lumpp +lummis +lumantas +luloff +lukavsky +luitjens +luhring +luga +luffy +luelf +luehring +luedi +lueckenotte +luecht +luebano +ludvik +ludovici +ludkowski +luderman +luddy +lucksom +luckritz +luckadoo +lucion +luci +luchessa +luchesi +lucear +lucario +luben +luangsingotha +lozzi +lozo +loyst +loyed +lowin +lowber +lovich +lovenbury +loveh +lovec +louser +louris +lourence +loureiro +louras +lounds +loukidis +loukas +louissant +louer +louch +lotze +lotthammer +lotter +loterbauer +lotempio +lostracco +loston +lossman +loson +loskill +loske +loshe +lorz +lorion +lopuzzo +lopilato +lopera +loosey +looi +loock +lonsway +lons +longueville +longton +longknife +longin +longfield +longcor +londner +lompa +lommel +lomg +lolling +lolli +loli +lolar +lokuta +lokke +lokhmator +lojek +lois +loil +lohmeier +logero +loewe +loessberg +loeschner +loesche +loehlein +loeckle +loebs +loduca +lodense +lodeiro +locsin +locorriere +locklier +lockette +lochotzki +loche +locantore +locante +lobosco +lobingier +loats +loarca +llyod +llopis +llarenas +ljungquist +lizer +lizarda +livi +livezey +liverani +livas +liuzza +litzsinger +litza +littlehale +litter +litehiser +litecky +liskovec +liskiewicz +liskai +lisius +lisiecki +lisherness +lisanti +lipstone +lipsitz +lippi +lipovsky +lipkind +lipke +lipitz +lipa +liontos +linzie +linstrom +linssen +linsner +linsay +linnecke +linnan +linkkila +linginfelter +lingberg +lingardo +lingao +linea +lindwall +lindskog +lindline +lindesmith +lincicum +linahan +limthong +limesand +limauro +limardo +lilleberg +liljedahl +liljeberg +lilja +likio +ligons +lifshitz +liesch +lierle +lienke +lienemann +liekhus +liederbach +lieder +liechti +liebskind +liebhardt +liebelt +lie +liddie +lidbom +licor +lico +lickness +lickiss +lickey +lichtig +lichtenwalter +lichte +lichstein +lichorat +lichlyter +liccione +licalzi +librizzi +libre +librandi +libke +libert +liano +lianes +lezon +lezer +lezak +leynes +lewton +lewry +lewandowsky +levo +levites +levitch +levitas +levister +levinsky +leverentz +levendosky +leuty +leuters +leusink +leupold +leuchs +letteney +letteer +letrent +letourneaux +letofsky +letman +letko +letang +letalien +lestelle +lessin +lessenberry +lessen +lessa +lespier +lesky +leshure +leshko +lescavage +lermond +lerew +leonti +leonaggeo +lenza +lenters +lenord +lenny +lennert +lenix +lening +lengle +lengacher +lener +leneave +lencioni +lempe +lemone +lemin +lemich +lemert +lelis +lele +lekwa +lejune +leitze +leitem +leistner +leipheimer +leimkuehler +leiding +leidel +leidall +leichty +leichtman +leibenstein +leiba +lehrian +lehrfeld +legrow +legrant +legore +leghorn +legel +legallo +lefew +leemow +leebrick +ledy +leduke +ledon +ledley +ledec +ledebuhr +lecoultre +leconey +leckington +lechlak +lechel +lebovic +lebourgeois +leberman +lebario +leavelle +leasy +leah +leagjeld +leafe +leabow +lazzar +lazer +lazenson +lazenberry +layher +lawe +lavon +lavina +lavette +laverne +laverette +lavee +lavear +lavatch +lauwers +lauw +lauture +lautman +lauters +laurion +laurens +laurenceau +launt +launelez +laughbaum +lauerman +laudat +laubacher +latzka +latzig +latortue +lathon +lathim +latessa +latella +lataille +lasyone +lastovica +lasselle +lask +lashutva +laserna +lascody +lasaint +larve +laruffa +larsh +larreta +larko +largay +larey +lardydell +larde +laravie +larate +laquay +lapuz +laprairie +lapora +lapiana +lanzoni +lanzillotti +lanzillo +lanzer +lanzalotti +lanton +lantey +lansdowne +lansden +lansang +lanquist +lanosga +lanosa +laninga +langsdale +langoni +langlands +langhout +langhorst +langenheim +langehennig +laneve +landucci +landsberry +landrey +landolfo +landkamer +landham +landgrebe +landefeld +lampp +lamparski +lamorgese +lamorella +lammie +lamielle +lamela +lambourne +lambino +lamberto +lamber +lambeck +lamascolo +lamarsh +lamantagne +lamaitre +lalumiere +lallo +laliberty +lalata +lalanne +laland +lakner +laity +lahrman +lahmann +lahip +lagroon +lagoa +laginess +lagge +lagatella +lagassie +laganga +lafranca +lafosse +laffredo +laferty +lafera +lafaver +lafauci +laesser +ladyman +ladtkow +laditka +ladeau +ladas +lacouette +lacosta +lacock +lacks +lackman +lackie +lachley +lacassagne +labrune +labrode +labreque +labrec +labog +labkovsky +labita +labbie +lababit +laaker +kylish +kyhn +kwiat +kwasny +kwack +kvilhaug +kuznicki +kuzmish +kuzmanic +kuzemchak +kuttler +kutella +kutchin +kuszlyk +kusumoto +kusuma +kustes +kusinski +kushlan +kushiner +kushin +kusak +kurzyniec +kury +kurter +kurrie +kurpiel +kurkjian +kurk +kurisu +kupres +kuokkanen +kunzie +kunzel +kunis +kuning +kundrick +kundla +kundinger +kully +kullas +kulkarni +kulcona +kulak +kulacz +kuks +kuklis +kuka +kuja +kuizinas +kuhtz +kuhnle +kuhnen +kuhnemund +kuhnel +kuhens +kuharik +kufner +kufeldt +kuenstler +kuehnert +kudzma +kudasik +kuczkowski +kucinskas +kuchto +kuch +kucel +kucek +kubica +kubecka +kuban +kszaszcz +krzywicki +krzynowek +krzal +krystal +krysiak +krys +krutsch +kruss +krusen +krusemark +krupiak +krumsiek +kruml +krulish +krulik +krulicki +krueth +kruer +kruel +krows +krossen +krolikowski +krolczyk +kroetch +kriticos +krites +krisher +krinke +krienke +kriegh +krichbaum +kribbs +kretchmar +kreitzbender +kreitler +kreinbring +kreb +kreamalmeyer +kreager +krawiecz +krawetz +krasley +krapfl +kranze +kranendonk +kramper +krampe +kramm +kralicek +krajnovich +krajcer +krain +kracker +kozinski +kownacki +kown +kowing +kowallis +kowall +kowalcyk +kowalchick +kovacic +kourt +kourkoumellis +kounter +kounlavong +kounce +koulabout +koualeski +kotzur +kottsick +kottre +kotte +kotrys +kotow +kothenbeutel +kotara +kostyla +kostich +kostenko +kossmann +kossin +kossakowski +kossack +kosoff +kosmatka +koshiol +koscielak +koscho +korzenski +kortz +kortum +korthauer +korshak +korsen +korol +korns +kornprobst +kornman +kormann +korineck +korf +koretsky +korenic +korbal +koralewski +koppelmann +kopis +kopiak +kopera +kopchick +kooken +kontogianis +konon +konn +konieczko +konick +konicek +koneval +kondratowicz +koncan +konat +komsthoeft +komosinski +kommer +kominek +koman +kolthoff +kology +kolnik +kolmetz +kolling +kolkowski +kolkemeyer +kolias +kolen +kolehmainen +kolby +kolberg +kolat +kokoska +koistinen +kohnert +kohlmyer +kofutua +kofoid +kofler +kofa +koetz +koetje +koerper +koeppl +koenning +koenigstein +koenigsfeld +koelle +koegel +koebley +koczera +kochmanski +kocaj +koc +koblick +kobis +kobialka +kobernick +kobak +knost +knori +knopinski +knoepfler +knoche +knipping +knipfel +knighter +kniefel +knie +knickman +knezevic +knewtson +knestrick +knesel +kneifel +knavel +knappe +knackstedt +klusmeyer +klus +klund +klun +kloos +kloock +kloiber +klohr +kloepper +klocek +klis +klingerman +klingen +klines +klimkowicz +kliever +kliem +kleypas +klevene +kleppinger +kleparek +klepacz +klemenc +klemanski +kleinwolterin +kleinsmith +kleinke +kleinberger +kleidon +kleespies +kleese +kleekamp +kleban +klayman +klay +klaver +klarman +klarberg +klapperich +kjetland +kizewski +kiyabu +kivioja +kittner +kittelberger +kissik +kisser +kishaba +kisch +kirner +kirkpatric +kirchhofer +kirchgessner +kirchausen +kirbie +kiral +kippes +kipper +kippel +kintsel +kintop +kinseth +kinroth +kinnion +kinningham +kinnier +kinnie +kinkin +kinkella +kingshott +kingore +kingen +kinerson +kindermann +kinart +kinan +kinabrew +kimbral +killean +kilcrest +kilb +kilarjian +kiffe +kientz +kiening +kielich +kieger +kieft +kieff +kiefel +kie +khum +khu +khov +khounborine +khoun +khoo +khensovan +khela +khay +khansari +khanponaphan +khano +khammixay +khalife +khalifah +khachatoorian +keyna +kexel +kewish +kettmann +ketring +ketler +ketcheside +ket +kestle +kessner +kerzer +kerss +kerska +kershbaumer +keros +kerntke +kerkel +keri +kerger +kereluk +kerechanko +kercado +keppers +keohane +kennet +kennealy +kenely +keneally +kendrew +kenderdine +kenagy +kenady +kemner +kemmler +kemme +kemerer +kelzer +kellon +kello +kellin +kellebrew +kellaway +keliipio +kelder +kelash +keitzer +keigley +keicher +kegerries +keens +keemer +keckler +keaveny +keath +keasley +kears +keany +keanum +keamo +kealohanui +kazmi +kazmer +kazin +kazeck +kazakos +kayrouz +kaylo +kawata +kaveny +kavadias +kauphusman +kaune +kaull +kaub +katzberg +katynski +katula +katten +katsbulas +katnik +katechis +katcsmorak +katan +kastning +kastman +kassell +kassabaum +kasprak +kasica +kasack +karvonen +karvis +karpowich +karpiak +karnish +karma +karell +kareem +kardashian +karczewski +karayan +karatz +karadimas +kapusniak +kapraun +kappe +kappa +kapitula +kapfer +kapelke +kapa +kaopua +kantarian +kanta +kanoza +kannard +kanish +kaniecki +kanevsky +kaner +kandra +kanda +kanatzar +kanable +kamph +kamnik +kammes +kammerdiener +kamerad +kamelamela +kamealoha +kame +kamb +kaluzny +kalupa +kaluna +kaltved +kalter +kalscheuer +kalmus +kalmer +kalland +kalima +kalichman +kalfa +kalbaugh +kakudji +kaitz +kainoa +kailey +kaiama +kahrer +kahola +kahana +kagay +kafel +kaetzel +kaesemeyer +kaer +kaea +kaduk +kadis +kaderlik +kade +kacik +kachikian +kacerski +kaboos +kabba +kaaz +kaauamo +juza +justino +justason +jurs +jurisch +jurgensmeier +jurden +jura +jungling +julye +juluke +julock +julias +julen +jufer +juedes +jubic +juariqui +juaire +jozsa +joulwan +jostes +josten +josich +josias +joshlin +josefy +josef +jorski +jorn +jorinscay +jorda +jons +jongeling +jongebloed +jondle +jolls +johnshoy +johnico +johanek +jirjis +jiran +jimmison +jill +jewels +jevtic +jetty +jesmer +jes +jerone +jerko +jenschke +jenquin +jennins +jennelle +jenison +jendrick +jeminez +jellis +jekot +jekel +jehl +jebb +jeavons +jeanneret +jeane +jeancharles +jeanbaptise +jaworowicz +javellana +jaurigui +jauch +jastrzebski +jass +jasmine +jarzembowski +jarver +jarosh +jaroscak +jarnesky +jares +jarell +jaradat +jarad +jaquins +janulewicz +jansing +janrhett +janowicz +janosek +jannetti +jannell +janeczko +jandron +janczunski +jancik +janacek +jamwant +jamili +jakovac +jagoe +jaffy +jaeschke +jaenke +jacque +jacobos +jackovitz +jackola +jackley +jacka +jacckson +jablonsky +jabiro +jabaay +jaap +iyengar +iwanowski +iwanejko +ivon +iverslie +ivanov +ivancich +iturralde +ittner +israelsen +israels +ismay +isleib +isita +isiordia +ising +isidore +isbill +isagawa +isacs +isaacsen +irzyk +irizzary +irineo +irimata +ireton +irestone +iozzo +iozzi +iopa +intrabartolo +intihar +insko +insana +inocente +ink +inhulsen +ingole +inches +inafuku +imperatore +imgrund +imbimbo +imbier +imaino +ilse +illuzzi +illian +ilic +ilasin +ilagan +iker +ihnat +ihm +igwe +igtanloc +ifversen +iese +ieng +ienco +idemoto +icard +iborra +ible +iberg +ibbetson +ibale +iavarone +iatarola +iacovino +iacopino +iacobellis +iachetta +hysom +hymowitz +hymon +hymen +hylands +hych +huy +huval +hutmacher +huszar +hustace +hussien +huskinson +husfelt +husenaj +husch +hurtig +hurtgen +huro +hurne +hurlston +hupman +huor +hunzelman +hunsperger +hunneyman +hunckler +humphrys +humphers +humetewa +humeniuk +humenik +hulstrand +hullings +hulitt +hulick +huland +huiting +hugron +hufstedler +huffner +huezo +huettman +huereca +huenink +huelse +hueckman +hudgeons +hudach +huckstadt +huckle +huckabey +hubschmitt +hubin +hubertus +hubby +hubbel +huban +huaman +hsun +hsiang +hrapski +hoznour +hoyman +howkins +howick +howatt +hovorka +hovick +hovanesian +hounchell +houf +hotton +hottes +hotrum +hotelling +hotaki +hostoffer +hosterman +hosteller +hospkins +hospelhorn +hoscheit +hoschander +horstead +horris +hornoff +hornberg +hornandez +hornack +hormell +horikoshi +horigan +horger +hoppins +hopperstad +hopko +hootsell +hoopingarner +hookano +hooghkirk +hoofard +hoock +honsinger +honour +honnette +honnerlaw +honma +honkanen +hongach +honeycott +hondorp +honchell +honas +honanie +homsher +homestead +holze +holtorf +holthus +holster +holsonback +holom +hollinrake +hollidge +hollerman +hollendonner +hollberg +holk +holian +holes +holecz +holec +holdvogt +hokutan +hok +hoiness +hoilman +hohiudden +hohensee +hohaia +hogelin +hogatt +hogarty +hoftiezer +hoffstatter +hoffnagle +hoffeditz +hoffart +hoerl +hoefel +hodos +hodnefield +hockins +hockenbrock +hocke +hochard +hocate +hobler +hober +hoben +hobell +hobden +hoagberg +hnyda +hlavka +hladik +hladek +hitchen +hislope +hirschberg +hirneise +hirn +hirliman +hirleman +hirao +hippenstiel +hintson +hint +hinley +hinh +hinebaugh +hindson +hinderberger +himmelmann +himanga +him +hilston +hilstad +hilser +hilsendager +hilsenbeck +hilscher +hilsabeck +hilpert +hilman +hillerud +hillebrano +hillebrandt +hilland +hilgers +hilgeman +hilfiker +hildago +hilda +hilbrand +hikel +highbaugh +higgons +higgenbottom +hiersche +hierholcer +hiedeman +hiday +hickethier +hichens +hibbitt +heyduck +hewko +hevron +heuwinkel +heuvelmann +heusner +heung +heuett +heuck +hettinga +hessey +hespen +hescock +heschke +hervig +hertzel +herston +herstad +hershkop +hershelman +herschelman +herriges +herres +herrarte +herpich +hernanez +hernanadez +hernan +hermenau +hermanowicz +herkstroeter +herkenratt +herera +herendeen +herauf +henstrom +hense +henrity +hennigh +hennies +henneberry +henkey +henjes +hengl +hengen +henfling +henerson +henein +hendrik +hendricksen +hendeson +henderso +henderlite +hemon +hemmann +hemker +hemesath +hemani +helweg +helverson +helseth +helquist +helom +helmstetter +helmsing +hellweg +hellmich +helgager +helgaas +helfenbein +helems +helem +helde +heiting +heither +heisdorffer +heiro +heirendt +heinzig +heiniger +heingartner +heimlicher +heimburger +heiken +heidtman +heidrich +heidi +heidelberger +heidebrecht +heick +heibult +heholt +heggood +heeth +heers +heern +heerkes +hedtke +hedspeth +hedon +hedinger +hecke +hechinger +hebeisen +heatherton +heartsill +heagney +heafey +headly +headland +headlam +headington +heade +hazy +hazim +haza +haynam +hayertz +haydt +haxby +hawse +hawkinberry +hawe +havlin +havir +havelka +hauxwell +hautan +hausrath +hauptmann +haughn +hauersperger +hatzenbihler +hattley +hatta +hatori +hathorne +hatchitt +hatchet +hatada +hastin +hastedt +hassing +hassenger +hassanein +hasker +haskel +hashaway +hasenfuss +hasenfratz +hascup +hasas +hartwigsen +hartrum +hartquist +hartory +hartlen +hartleben +hartinger +harsin +harritt +harriage +harpham +harnos +harnist +harleman +harlee +harke +hargers +hardter +hardsock +hardnette +hardine +hardi +hardges +harderman +harde +hardan +harcar +harbater +harapat +harang +haq +hanzl +hansome +hansman +hansis +hansing +hanoa +hanninen +hannaway +hannawalt +hanmer +hankison +hanible +hanenberger +haneke +hanebutt +handzlik +handsom +handkins +handke +handin +hanback +hanawalt +hanavan +hamsik +hamonds +hammette +hammerman +hammacher +hamlette +hamiltan +hamidi +hamff +hamett +hamersly +hamers +hamdn +hamden +hamberry +hamara +hamacher +halyk +haltiwanger +halstrom +halse +halpert +halnon +hallo +halliman +hallemeyer +hallack +halima +halick +haldi +halcott +halbershtam +halajian +halaas +hakey +haitz +hairell +haims +haifa +hahnert +haggin +haggerton +haggermaker +hagey +hafferkamp +haferkamp +haeuser +haessly +haese +haerter +haering +haeder +hadvab +hadsall +hadler +hadesty +haddenham +hadaller +hacopian +hackl +hackerott +hacken +hachting +haboush +hable +habig +habibi +haberstroh +habenicht +haaz +haakenstad +haage +gyllensten +gwilt +gwillim +guzon +guzewicz +guye +gutzler +guttormson +gutsche +gutjahr +gutgesell +gutenberg +gustitus +gussow +gusmar +gushi +gushard +gurwell +gurske +gurrero +gurin +gurecki +guoan +gunzelman +gunyon +guntharp +gunstream +gungor +gundelach +gunawan +gumprecht +gumaer +gulston +gulnac +gulizio +gulbrandsen +guitano +guimares +guillebeau +guillary +guillama +guilfoos +guiggey +guiga +guieb +guidrey +guiab +guffanti +guerrini +guerrazzi +guerera +guenthur +guell +guedjian +gudmundsson +gucker +gubin +gubala +guba +guasp +guarriello +guarno +guarini +guanche +guagenti +gstohl +grzesik +grzebien +gryszowka +grymes +gruz +grustas +gruse +gruntz +grunert +grune +grunberg +grumney +grumbling +gruman +grulkey +gruiger +gruening +gruenewald +gruby +gruben +grubel +grubba +grriffin +groys +growell +grothaus +grosskreutz +groskreutz +grosclaude +groot +gronstal +gronquist +gronlund +gronitz +gronberg +grona +gromoll +grohowski +grohman +groetsch +groder +grobmyer +groberg +grivno +grivetti +grippen +grine +grimme +grills +grigoreas +griglen +griffitt +griffan +grieshop +grieshaber +griep +grieff +griebling +griblin +grev +greubel +gressmire +gresco +grenway +grensky +grennay +grenko +grenet +gremo +gremmels +gregware +gregus +greggory +gregan +greep +greenweig +greensfelder +greenhalge +greengo +greenbacker +greem +greder +greczkowski +grebner +greber +greason +gream +gravat +grauman +grauel +grassle +grasmick +grapp +granzella +granto +gransberry +granquist +granneman +granieri +granes +grandon +grandner +granai +grammont +gramble +graleski +grainey +grain +graichen +grahovac +grageda +gragas +graffney +graffagnino +grafals +gradley +gradias +gradford +grabowsky +grabonski +grabler +grabhorn +graap +gozman +goyen +goyda +gowey +gowda +govostes +govia +gour +gouldman +gouldie +gougis +gotts +gottemoeller +gottdenger +gotta +gotshall +gosvener +gostlin +gossow +gosson +gossling +gosset +gosey +gorrindo +gormanous +gormally +gorius +gorena +gorell +gordley +gordey +gorbea +goonen +goodmon +gonzelas +gonzalis +gonyou +gonsiewski +gonsar +goney +gomoran +gomoll +gollop +gollob +gollier +golik +golida +golias +golian +golia +golec +goldthorpe +goldhorn +goldhirsh +goldfuss +goldfeld +golderer +goldenstein +goldenman +golde +golbin +golackson +goicoechea +goffigan +goerlich +goepfarth +goepel +goeing +goehringer +godboldt +gochett +gochal +gocek +goblirsch +gnoza +gnegy +gnabah +gmernicki +glyn +glueckert +glowacky +glovinsky +gloston +gloshen +glos +glogowski +gloeckler +glimpse +glidwell +glesener +gleitz +gleckler +glebocki +gleber +glazner +glazebrook +glaves +glavan +glasby +gladysiewski +gladle +gladhart +gjeltema +givant +gius +giulioli +gitt +girres +girbach +girand +gip +giottonini +giorno +gionta +giombetti +gioffre +gioe +ginzel +ginsel +ginocchio +ginnis +ginard +gimse +gilzow +gilton +gilstad +gilomen +gilner +gilly +gillming +gillion +gillich +gillice +gille +giliberto +gilhuly +gilgan +gildemeister +gilcris +gigger +giffith +giffee +giff +gietz +giesel +giera +gibeaut +gibala +giasson +giarusso +giarrano +giaquinta +giannavola +giandomenico +gianandrea +giallorenzo +giacherio +giachelli +giacchi +ghebremicael +gezalyan +getzschman +getzlaff +gettens +gettelman +gestether +gesing +gesamondo +gerz +gerwin +gerveler +gertsema +gerthung +gerten +gertel +gerteisen +gerstenberger +gershkovich +gerney +germy +germana +gerich +gerdiman +gerckens +gerbig +georghiou +geoly +gentleman +gentges +gentelia +gensel +geniesse +genia +generalao +gemmiti +geml +gelner +gellings +gellinger +gelino +gelhar +gelfond +gelerter +gelder +gelbart +geisinsky +gehrki +gehm +geen +gederman +gede +gearn +geant +gazzara +gazitano +gazdik +gayanilo +gawthorp +gavit +gaviglia +gavett +gavan +gavagan +gausman +gaukroger +gaufusi +gaudier +gaudett +gauci +gatzow +gatta +gatheright +gatesy +gatesman +gastelo +gaschke +garwin +garter +gartenmayer +gartenhaus +garsjo +garroutte +garrettson +garrean +garre +garnham +garnache +garmire +garmen +garlett +garkow +garito +garinger +gargan +garcon +gapp +gantzler +gantvoort +gansert +gansen +ganns +gannetti +ganin +ganigan +gamotan +gammond +gamer +gamello +gambrill +gambold +gambee +gambardella +galven +galvani +galuszka +galuppo +galmore +gallusser +gallodoro +gallington +galleta +gallegoz +gallaugher +gallargo +galkin +galipo +galinis +galimberti +galic +galbiso +galathe +galassini +galanti +galano +galagher +gajeski +gajardo +gaiters +gails +gailliard +gaffer +gafanha +gaer +gadewoltz +gaden +gackle +gabrial +gabrenas +gabossi +gables +gabl +gabhart +gabeline +gabbamonte +fyler +fykes +fusner +fusillo +fushimi +fus +furtak +furblur +fundora +funderberg +fumero +fuls +fulham +fulco +fujimura +fujikake +fugueroa +fuger +fugatt +fuerstenau +fuerbringer +frymoyer +frymier +frymark +frutiger +frushour +fruman +fruin +frugoli +fruehauf +froyd +frosto +frontis +frontiero +fronick +froneberger +frohberg +froebe +frobish +frittz +fritchley +fritchey +frisinger +frisell +frija +friehauf +friedenthal +friebel +freundlich +fret +frerich +frens +freker +freiseis +freimark +freilino +freiheit +freiermuth +freidin +freemantle +freeh +freedlander +freeders +freeburger +fredregill +frederique +freckleton +frecker +frazzano +frauenfelder +frattali +fratta +fratrick +fratercangelo +frasso +frashure +fraschilla +franzman +franzini +franza +franty +fransisco +franpton +frankson +frankland +frankiewicz +frankart +frangione +franchini +francescone +fralic +fraklin +frair +fragosa +fradkin +fracasso +foyer +foxhoven +fowlie +fowley +fowlar +fower +foute +foussell +fouquette +founds +fougner +fosmire +fosher +fosbrook +fortun +forss +forsmann +forslin +forsee +forpahl +fornili +fornier +fornaro +formichelli +formaggioni +forkum +forkell +foriest +forgrave +foresta +forejt +foreback +forcum +forcht +forchione +forch +forberg +forbach +fonua +fonteno +fonteneau +fongvongsa +fondriest +fondaw +fonck +fohl +foglio +foersterling +foddrell +focke +flugum +flucas +fluaitt +floss +florendo +floras +floer +flockhart +flockerzi +floan +flin +fliger +flieller +fleurilus +flenord +fleniken +flenaugh +flemmon +flemm +fleites +fleischner +fleckles +flechas +flauding +flatter +flato +flanner +flanegan +flammang +flakne +flaker +flagiello +fladung +flachs +flaa +fiwck +fitzrandolph +fitzherbert +fitzgerrel +fitsgerald +fisser +fishell +fischl +fischhaber +fischel +fiscella +fiscel +firpi +firenze +fiorilli +fiorica +finwall +finklestein +fingerson +fingerman +fineout +finello +finell +findlen +finco +filthaut +filpus +filo +filla +fili +fil +figiel +figgeurs +figert +fietek +fiest +fieser +fiesel +fickbohm +ficht +ficchi +fialho +fial +feyh +feyereisen +feuss +feusier +fette +festini +fest +fesko +fertik +ferrusi +ferrone +ferrio +ferringo +ferries +ferrie +ferrett +ferrato +ferrario +ferraraccio +ferranto +ferr +ferouz +fernette +fernanders +ferkel +feret +ferer +ferenz +fenrich +fenniman +fennig +fenison +fendrick +fendlason +fend +fenbert +felver +feltham +felonia +felling +fellezs +felizardo +felio +felicien +felicia +felicano +feliberty +feistner +feister +feintuch +feilds +feighner +feierman +fehrs +fegueroa +fegles +fegette +feerick +feela +feehly +feehery +fedorko +fedie +fedezko +fedewa +federkeil +fecto +fechtig +fecher +featheroff +feagans +fazzari +faycurry +fawson +fawler +favuzzi +favro +favian +favazza +fausey +faus +faupel +fattore +fatora +fathy +fathree +fatheree +fassinger +faske +farug +fars +farnese +farkus +farinha +faren +faraimo +farahkhan +faragher +fanti +fanter +fantazia +fantauzzo +fansher +fandino +fanatia +famageltto +falzon +fallow +fallenstein +falencki +falcioni +falci +failey +failde +faigley +faidley +fahrni +fahrlander +fahrenthold +fahning +fago +fagle +fagerquist +fagerlund +fageraes +facello +ezzelle +eyton +eyestone +exton +exantus +evjen +evilsizor +evertt +evertsen +eversmeyer +everroad +everline +everet +evartt +evansky +evancho +eull +ettman +ettienne +ettel +etringer +eth +estronza +estrem +estrade +estok +estle +estimable +estess +estella +estanislau +essix +essency +esquinaldo +espiridion +espinel +esperon +espenlaub +espejel +esparsen +esmont +esmon +esmay +esmaili +eskins +eskind +eshmon +esfahani +escober +escanlar +erz +ersery +eros +ernster +erlebach +eriks +erichson +erger +eredia +erdos +ercole +ercolano +erazmus +eraso +epel +eovaldi +ensz +ensel +enock +ennes +enis +engnath +engfer +engelmeyer +engelberg +engard +endris +endreson +endorf +endersbe +ende +encino +emshwiller +empasis +emore +emmond +emiliano +emerling +emenaha +emde +emberling +emano +elway +elvey +eltringham +elter +elsken +elsheimer +elsaesser +elrick +elreda +elpert +elnicki +elmes +ellsmore +ellrod +ello +ellinghuysen +ellingham +ellingburg +elles +ellenbogen +elleby +ellcessor +ellamar +elke +elijah +eligio +elieff +elicker +elian +eliades +elhadi +elfenbein +elenbaas +eldringhoff +eld +elbie +eke +ekas +eisnaugle +eisiminger +eisenhaver +eisenhardt +eisenberger +eiselein +einwalter +eighmey +eidemiller +eickmeyer +eichstedt +eichenberg +eichberg +eibel +ehrisman +ehrenzeller +ehman +ehli +ehl +eheler +egwuohua +eglin +egler +egersdorf +egelston +efthimiou +eelkema +edu +edridge +edland +edenholm +edem +economou +eckmann +eckblad +eckardt +echternach +echter +ebrahimi +eberst +ebershoff +eberheart +ebbett +eayrs +eavey +eatough +eastling +eastern +easterlin +earthly +earing +eakles +eagleman +eacho +eaby +dzwonkowski +dzurnak +dzurilla +dziuba +dzinski +dziewanowski +dziekan +dyrstad +dydo +dvorsky +duyer +duttinger +dutchess +duston +dush +durward +dursteler +durpee +durough +durniok +durnan +durisseau +duris +duriga +durda +durboraw +dura +duquaine +duplessy +duplanti +dupes +duperre +dupaski +duos +dunshie +dunphe +dunnell +dunkinson +dunkerley +dunkan +dunemann +dunderman +duncans +dunahoe +dumouchel +dummett +dumeny +dumbar +dumar +dulan +dukett +duk +duis +duguette +dugre +dufrain +dufauchard +duesterhaus +duesterback +duerst +duenwald +dudzik +dudycha +dudenbostel +dudden +ducklow +duckey +duchnowski +duchane +duceman +dubovsky +dubler +duber +dubel +dubbert +drutman +drummey +drumbore +droy +drow +droubay +drorbaugh +dropinski +dronko +dronick +droggitis +drissel +driscol +drinen +driessen +driedric +dreuitt +drenning +drelick +drejka +dreiss +drebes +dratch +drakulic +drakos +draime +dragovich +dragich +draggett +dragg +drabicki +doyscher +doxbeck +downy +downhour +dowland +dowker +dowds +dowda +douyette +douthett +doughman +dougharty +douga +doudna +dotolo +dossman +dosh +dorsinville +dorsay +dorrill +dorosh +dornbrook +dorlando +dorio +dorie +dorcas +doporto +dopita +doorley +dooner +donton +dono +donnerberg +donnalley +donlyuk +donkle +donilon +doniger +donigan +doniel +doncaster +donatich +donaher +donah +donaghue +donaby +domowicz +domitrovich +dominowski +dominiak +domenice +dombek +domagalski +domagall +dolsen +dolmajian +dolley +dolinski +dolhun +dolfi +dolecek +dokovic +dok +dohrn +doerksen +doelger +doeberling +dody +dodimead +dodgion +dockum +dockerty +dochterman +dobrzykowski +dobrynski +dobrushin +dobrosky +dobrinin +dobison +dobbyn +dobbe +dlugos +ditucci +dittus +dittmann +dito +ditmars +disotell +disorda +disharoon +dischner +discala +disalvi +dirth +dirr +dirienzo +dipolito +dipilato +dipietrantoni +dipanfilo +dioneff +diomede +dinuzzo +dintino +dinsmoor +dinsdale +dinos +dinora +dinnendahl +dinkle +dininger +dingillo +dingie +dingell +dimitry +dimicco +dimezza +dimarzio +dimario +dimariano +dimanche +dilucca +dillis +dilliner +dillin +dillashaw +dilillo +dilg +dilella +diker +digiouanni +digeorgio +difronzo +difrancisco +dietterick +diestler +dies +dierkes +diekema +diederichs +dieball +didway +didonatis +didomizio +didio +didato +dicosmo +dicorpo +dicocco +diclaudio +dichiaro +dible +diblase +dibiasi +dibbern +diano +diani +diangelis +diamantopoulo +diaco +dhruva +dheel +dharas +dezalia +deyak +deya +dewolff +dewick +dewese +dewater +devot +devost +devis +devilliers +devery +deveny +devenny +develice +devasier +devarona +devanski +devai +deus +dettorre +dettor +detrolio +detrich +detillion +deteso +determann +deterline +deterding +detchon +detaeye +destina +destefani +desruisseaux +desormeau +desonia +desmore +desko +desimas +desher +deshayes +deschene +desantos +desando +desamparo +desalvatore +derx +deruiter +derosie +derogatis +derman +derkas +derivan +derington +derienzo +derian +dereus +derenzi +derentis +derderian +derastel +deraps +dequinzio +deprato +depont +depiro +depierro +depeyster +deonarine +deocampo +denzine +denwood +denos +denooyer +denomme +denoia +dennig +denjen +denisco +denick +denholm +denfip +deneui +denetclaw +denet +denery +demuzio +demske +dempewolf +demorrett +demorizi +demny +demiter +demilt +demik +demien +demianczyk +demetrakos +demer +dembek +demauro +demase +demart +demarino +deluzio +delullo +delucian +deltufo +deltora +delsoin +delsavio +delross +delperdang +delpaggio +delosier +delonge +delonais +deloge +delmendo +dellwo +dellum +dellosso +delliveneri +dellefave +dellarose +dellapenta +dellamonica +delgoda +delekta +delegado +deldonno +delco +delce +delbene +delavergne +delashmutt +delapuente +delaporte +delana +delallo +delahay +delagol +delagado +delabarre +dekruif +dekoning +dekeyzer +dejoseph +dejardin +dejarden +deister +deigado +deichmann +deichman +dehm +dehlinger +dehl +dehetre +dehaney +dehaas +degrood +degrass +degrande +degooyer +degnim +deglandon +degenfelder +degenaro +degear +degagne +defrang +defrain +defosset +defosse +defont +defir +defayette +deerdoff +deely +dedrickson +dednam +dederich +decurtis +decourt +decourcey +decock +declerk +decius +dechavez +dech +december +decarvalho +decarmine +decaire +decaen +debrosse +debreto +debrecht +debrae +debore +debien +debenedictis +debarge +debardelaben +debaets +deasis +dears +dearruda +dearring +dearinger +dearin +dearcos +deanes +deakyne +dazzi +dazi +dayao +dawkin +davolt +davise +davine +davidsmeyer +davidowicz +davaz +davari +davance +dauster +dause +daulerio +daughters +daugereau +daubney +datamphay +dasouza +daskal +dashno +dashne +dasen +daschofsky +dasch +darwich +darvish +darveau +darting +darthard +darron +daron +darnstaedt +darmody +darmiento +darington +dariano +daria +dardenne +darakjian +danyow +dannis +danniels +danni +dannelly +dannelley +dannatt +daniely +dangelis +danese +daner +dandoy +danco +danca +danas +damrell +damone +damms +damme +dalporto +daloisio +dalmata +dallison +dallam +dallago +dalegowski +dalecki +daku +daking +daken +dajer +dajani +daidone +dahlka +dagres +dago +dager +dafonte +dada +daczewitz +dach +czysz +czubakowski +czartoryski +czapiewski +cyrnek +cyree +cygrymus +cwikla +cwalinski +cutrera +cuther +cutchember +cushner +cusenza +curreri +curlis +curio +curimao +curia +curey +cunio +cumoletti +cumberlander +culpit +culloton +cuffy +cuffman +cuddington +cucuta +cucufate +cubine +cubano +cuadras +csuhta +crutison +cruther +crusinberry +crummell +crumly +cruff +crozat +crossmon +crosiar +crookshank +crookes +cronoble +croner +cromeans +crolley +crofutt +crockette +crivelli +crivaro +cristino +criste +crissey +crisalli +criley +cribari +crewe +creselious +crescenti +crepps +crenwelge +creitz +cregin +cregger +creekbaum +credi +crebs +crayford +cravy +cravalho +crauswell +crathers +crask +crapp +crape +crapanzano +cranson +crans +crannell +crandal +craigwell +craigmyle +crafter +cradler +coxwell +coxen +cowlin +covitz +coventon +coutre +coutinho +coutermarsh +courton +courseault +courrege +courey +coulon +coulibaly +couden +coton +coste +cossett +cosman +cosma +coslow +cosico +coshow +corwell +corvo +corujo +cortopassi +cortinez +cortijo +corrio +corrington +corriher +corridan +corrga +correla +corping +corpe +coroniti +cornn +cornmesser +cornella +corneille +corkron +corf +coreen +cordiero +cordew +cordenas +corcuera +corbley +coray +coraham +copstead +copsey +copping +coppes +copney +coopper +cooperider +coopage +coonse +cookerly +conwright +contreraz +continenza +contes +consuelo +constine +constanzo +constantin +constancio +consentino +conradt +conour +conoley +conney +connerat +conlogue +conforme +confalone +coneway +condroski +condina +condiff +condi +conchado +conch +concatelli +conaughty +commerford +comissiong +cominski +cominotti +comar +colschen +colpi +colpa +colony +collons +collon +collicott +collea +collari +colker +colier +colesar +colemen +colecchi +colcher +colchado +coklow +cokel +cohick +cofone +coffinberger +coffell +coffel +codispot +codilla +cocroft +cockerhan +cochren +cochenour +cobetto +cobar +coalter +clyman +cluver +clusky +clunes +clukies +clowerd +clouatre +clossin +cloos +clokey +clinkinbeard +cliffton +clibon +clevland +cleverley +clesca +clerc +clemenza +cleath +cleasby +cleal +clavijo +clater +claros +claghorn +clacher +clabo +civil +cittadini +citroni +cissel +cisar +cirella +circelli +ciprian +cipcic +ciotta +cinnamond +cinkan +cinco +cinar +cimorelli +ciminera +cilenti +cihak +cieloszyk +cidre +cicen +cicali +cibik +ciavardini +cianfrani +cianciola +ciallella +ciaffone +chyle +chy +churchfield +churape +chuma +chulla +chueng +chubicks +chrystal +chrosniak +chriswell +christopoulos +christi +christerson +christenbury +chowenhill +chowansky +choudhary +chor +chopton +cholula +chollett +choinski +chocron +chockley +chochrek +choates +chlebus +chiz +chitrik +chisman +chiphe +chiola +chiodi +chinault +chime +chimal +chilsom +chillo +chicles +chicharello +chicalace +chiariello +chiappari +chhan +chham +chez +chevis +cheverton +cheverez +cheu +chessman +cherubini +cherrin +cheroki +cherny +chernich +chernesky +cheranichit +cheeseboro +chech +cheam +chavoustie +chavies +chaumont +chaulklin +chatampaya +chasson +chassaniol +chary +charvet +charry +chari +chararria +chappo +chappa +chapmond +chaplik +chapen +chanthasene +chanler +chanco +chamul +champaco +chalupa +challinor +challa +chalender +chaknis +chakkalakal +chaisty +chaddick +chaboya +chaberek +chabbez +cevera +cerverizzo +cerventez +cervantsz +cerva +cerroni +cerri +cerrello +cerone +cernuto +cernota +cerminaro +cerf +ceretti +cerceo +cerasuolo +ceraso +cerasi +cerar +ceraos +cepin +cepas +centi +cendana +cendan +cellar +celeya +ceder +cecot +cazel +cazaree +cawon +cawein +cavrak +caveness +cavalaris +cavaiani +cauterucci +caughorn +caughell +cauazos +catts +cattanach +catrini +catozzi +catignani +catholic +catherson +catherine +cathell +catello +catchpole +catanzano +casuscelli +castros +castrey +castongvay +castillion +castelum +castells +castellion +cassler +cassino +cassilano +cassiano +cassetty +cassens +cassells +cassavaugh +cassagne +cassa +casolary +casmore +casley +caska +casis +casini +cashour +cashmer +cashett +casement +casciato +casavez +casasola +casarz +casar +casana +casales +carvill +carvallo +cartner +carrousal +carrizo +carretta +carrethers +carrao +carran +carpen +caroselli +carolla +carnillo +carnegia +carmin +carmickel +carlini +carland +carknard +carioscia +carina +carideo +carfrey +cardinalli +cardiff +cardazone +carbonella +carbery +carbee +caravetta +caravati +caramelo +caramella +caraig +carabine +cara +capristo +capri +cappellini +caporiccio +capicotto +capestro +capener +capek +capas +capaccino +caoagdan +canwell +cantella +cantakis +canson +cansino +cansibog +cannistraro +canner +caneza +caney +caneva +canetta +canestraro +candozo +candlish +candell +canant +canalez +can +camus +campora +campobasso +campble +campau +campain +camlin +camisa +camerino +camerano +camenisch +camelin +cameli +cambia +camareno +camancho +camack +calvan +calumag +caltagirone +calowell +callnan +callington +calliham +calligaro +caller +callar +callam +callagy +callagher +callado +caliman +caldron +caldoron +caldarera +calcao +calaf +cakmak +cajulus +cajka +caivano +caires +caire +caiozzo +cains +cainne +caimi +cagnon +cagno +cagan +caffentzis +cafasso +caez +caddigan +caddel +cacatian +cabugos +cabon +cabarcas +cabanillas +cabanela +cabam +bywaters +bystron +byse +byous +bynun +byczek +bybel +byal +buzza +buzo +buzis +buvinghausen +butzke +buttross +buttray +buttke +buttitta +butenhoff +busscher +busk +busitzky +bushweller +bushrod +bushfield +buschur +busacca +burzlaff +burvine +burtts +burtschi +burtell +bursik +burrs +burras +burows +burnie +burnash +burmside +burm +burly +burlson +burlile +burlaza +burlage +burkstrand +burkly +burklow +burkin +burian +burgs +burgoa +burgey +burgees +burfeind +burdzel +burchinal +burbine +buratti +buonassisi +buonaiuto +buntz +bunts +buntenbach +bunson +bunda +bumpaus +bumbalo +bumbaca +bullivant +bullin +bulisco +bulik +buley +bulat +bukowiecki +builes +buhrke +buhlig +bugh +buffone +buenviaje +bueler +buehlman +budzik +budy +budrovich +budish +budiao +budhu +buden +buddy +bud +buczko +bucknor +buckmeon +buckless +buckett +buckaloo +buchwalter +buchmiller +buchmeier +buchite +buchinsky +bucheli +buchann +buchal +bucaro +bubolz +buboltz +bubert +brzezicki +brzenk +brys +bryngelson +bryla +bryington +bruzewski +bruzek +brustmann +brusser +bruscato +brunzel +brunkhardt +brunick +brunetta +brunecz +bruna +brumaghim +bruker +bruin +brugliera +bruffee +brueske +bruegger +bruechert +bruckmeier +brroks +brozeski +broyle +brownlie +browman +broudy +brothen +broski +brosi +brookskennedy +brookie +bronston +broncheau +brommer +brola +broitzman +brohn +broglio +brogley +broers +broering +brodtmann +brodis +brodine +brodfuehrer +brodess +brodes +brockus +brockenberry +brociner +brochet +broadnay +brizeno +britts +brinley +brinkhaus +brinius +brininger +bringer +brindza +brindger +brinar +brilowski +brigner +brightharp +brighter +brienza +brienen +bridenbecker +brickson +breznay +brezinka +breyers +brevell +brettmann +bretos +bresser +brentz +brennick +brening +brendeland +brem +breiter +breihan +breidigan +bredlow +bredin +breckley +breckenstein +brebes +breaz +breaud +breath +bready +brazie +braunwarth +braunberger +brauman +braucks +brath +brasure +brasswell +brasseux +braskett +brasby +brantingham +bransfield +branseum +brano +brangers +brang +branes +brandstrom +brandorff +brandom +brandenburger +branck +brancaccio +bramuchi +bramlitt +bramel +bramasco +bram +brakke +brak +braget +bragado +brafman +bradmon +bradick +bradey +bradd +bracklin +brackbill +brabazon +braband +bozych +bozic +boyl +boyens +boyde +boyas +bowlick +bowle +bowcock +bouy +bouvia +bousum +bourraine +bourgon +bourbois +bouquin +boumthavee +boulger +boulch +boulais +boughn +bouges +boudle +boudjouk +boucouvalas +boucaud +bottrell +bottoni +bottella +bothner +botellio +boswink +bostow +bostain +bosson +bossier +bossey +bosold +boslet +boshnack +boshell +bosheers +bosefski +borza +boryszewski +borysewicz +borson +borseth +borroto +borrigo +borriello +borrello +borowicz +borovetz +borovec +borgelt +bordinger +bordas +bord +borcuk +borcher +borbridge +boothman +bookhardt +boocock +bonwell +bonsal +bonnoitt +bonnifield +bonnick +bonnel +bonker +bonita +boning +bonifield +boniface +bongle +bongivengo +bongio +bonge +bonett +bonebright +bondroff +bondoc +bonda +boncella +bonaventure +bonalumi +bonadona +bonaccorso +bonaccorsi +bompiani +bommer +bolvin +boluda +bolorin +bolon +bollom +bollettino +bolk +boliver +boline +bolieu +boliek +boleyn +boldul +boldery +bolante +bokor +boklund +bojanowski +boisuert +boislard +bohren +bohmann +bohlinger +bohart +boham +bogust +bogh +bogatay +bogany +boeving +boeshore +boesenberg +boerstler +boers +boenig +boelsche +boelke +boekhout +boekelman +boehner +boeckmann +bodwin +bodrey +bodman +bodiroga +bodford +bodensteiner +bodenheimer +boddorf +boddeker +bockskopf +bocchi +bocage +bobola +bobko +boben +boardway +boards +blyzes +blumenkranz +bloomgren +blong +blondeau +blommel +blois +bloem +blocklinger +blisset +blimka +bliler +bliese +blice +bleyer +blette +blesh +blender +blemel +bleifus +blechinger +bleattler +blazosky +blatti +blatteau +blatnik +blatchford +blankship +blankschan +blandy +blandino +blakeway +blakeborough +blaho +blackstar +blackgoat +blachly +blacher +blach +bizcassa +bizarro +bivings +bitsuie +bitsui +bitsko +bistodeau +bister +bisonette +bishel +bisconer +biscocho +biscahall +bisby +bisagna +birts +birnell +birkline +birkenhead +birenbaum +birckett +birckbichler +birchwood +biorkman +bimler +bilous +billinghurst +billey +billeter +billegas +billard +bilkiss +bile +bilcik +bigos +bignall +bigio +biggio +bigas +biffer +biffar +biesinger +bieschke +bierbrauer +bienfang +biehn +biederwolf +bieberle +biebel +bidon +bidner +bidgood +bidez +biderman +bickleman +bicklein +bicket +bicker +bickart +bichel +biard +bialik +bialczyk +bezner +beyrer +beylotte +beyerl +bevly +beulah +beul +betzel +betterman +betsinger +betschman +betita +bethurum +bethoney +beth +beston +besso +bessick +besio +beshear +besarra +bervig +bertus +bertrano +bertovich +bertolasio +bertog +bertinetti +bertelle +bertel +bertch +bertagnoli +berschauer +bersamin +bers +berri +berretti +berretta +berret +bernucho +bernt +bernstrom +berno +bernick +bernice +bernhagen +bernardoni +bernabo +bermers +berlove +berlinghof +berkhalter +berisha +bergseng +bergreen +bergholz +bergert +berez +beresnyak +berdes +beras +benzschawel +benzi +benya +benwell +benty +bentrup +bentele +benser +bennison +bennink +bennerson +bennerman +benitone +beniquez +benik +bengelsdorf +benell +beneduce +benecke +benear +bendzans +bendy +bendt +bendorf +bendolph +bendlage +benders +bendavid +benck +benassi +benari +benage +benadom +benabides +bembury +bemboom +bemberry +belyoussian +belveal +belsey +belongie +belone +belon +beloff +belluomini +belloma +bellmay +bellish +bellisario +bellingham +bellflower +bellfleur +bellerdine +bellemy +bellazer +belkowski +belich +belfiglio +beley +beldin +belback +belarde +belangia +bel +bekerman +beker +bek +beiswanger +beirise +behun +behning +behmer +behlen +begor +begg +beetley +bees +beermudez +beerling +beeck +bedsaul +bedoka +bednorz +becklund +beckerdite +beckendorf +beckenbach +bechthold +bechman +becherer +beavin +beauprez +beaumier +beauliev +beaugard +beaufait +beaudrie +beathe +beasmore +bearup +bearfield +beahn +beadnell +beadell +bazzel +bazzanella +bazelais +bazata +bazarte +baza +bayle +bayete +bawa +bavzee +bavard +bausley +baunleuang +baumgard +baumbusch +bauknight +baugham +bauers +bauermeister +baublitz +battistini +battiato +battiata +batters +battaglini +bathurst +bathrick +batel +batalona +basua +bastura +bastress +bastilla +bastidos +bastic +basten +bastedo +bastain +bassil +basset +bashinelli +basbas +baruth +barufaldi +bartylla +barts +bartrop +bartosz +bartosiak +bartolotto +bartolet +bartoldus +bartnett +bartlone +barthen +barthelman +bartenfield +bartczak +barsotti +barrocas +barrile +barrieau +barrer +barreira +barranger +barranca +barquera +barnscater +barnfield +barncastle +barnathan +barnar +barlip +barkins +barkenhagen +barkalow +barimah +baridon +barhydt +bargar +barff +bardeen +barcelona +barby +barbini +barbiere +barbetta +barberis +barberian +barban +barasch +baranow +baranovic +barajos +baraby +bapties +banyas +bantug +bantin +bantillan +bantay +bansbach +bankemper +banis +banick +banecker +bandin +bandemer +bandanza +bance +banales +bammon +bamfield +bambacigno +bambaci +balyeat +balvanz +balsano +balmores +ballreich +balloon +ballmer +ballintyn +balley +balletta +balhorn +balford +balezentis +baldrey +baldiviez +balder +baldassarre +baldacchino +balchunas +balceiro +balbin +balaz +balaski +balancia +balagtas +bakst +bakkum +bakios +bakeley +bajorek +bajdas +baizer +baitg +baise +bailony +baillio +baille +baiera +bahun +bah +bagne +bagi +baghdasarian +bageant +bagdonas +baetz +baeringer +badget +badeau +baddeley +bacy +backey +backenstose +backen +backe +backbone +baccouche +bacco +bacarella +babitsch +babena +babbin +babbel +babat +bab +azzaro +azoulay +azimi +azer +aylsworth +ayarza +axline +axelsen +awtrey +avola +avie +avetisyan +averyt +aveado +avanzato +avala +auyer +auxilien +auwarter +aurges +aures +auprey +aupperle +aunkst +aumich +aument +aumavae +aulbach +aukes +augspurger +auffrey +attridge +attkisson +attinger +atta +aton +atoe +atiyeh +athmann +athay +atchity +atallah +atala +astwood +astolfi +astol +asters +aspegren +asma +ashpole +ashfield +ashely +asevedo +aschmann +asar +asaeli +arzilli +arundel +arujo +aruiso +arturo +artry +artison +artinian +arrizaga +arriazola +arpino +arons +aronhalt +arntt +arniotes +arnholtz +arneberg +armillei +armijos +arm +arleth +arlen +arlan +arkins +arjes +arizzi +arizola +ariyoshi +aring +arimoto +arigo +arietta +arie +aridas +aricas +arhelger +arhart +arguillo +arguellez +argote +argenal +arenos +arenivas +arenivar +arendz +arendsee +arebela +ardizzone +ardion +ardery +ardd +ardan +arcino +arcilla +arcea +arcaute +arcangel +arcadipane +arbry +araque +aramini +arambuia +aragus +aragundi +aragoni +aragaki +aradanas +arabie +arabia +ar +apyuan +apuzzi +apruzzese +applewhaite +applebury +appeling +appelgate +apling +apking +apela +aparo +apa +aoay +anyan +antrican +antonopoulos +antonis +antonich +antonaccio +antona +antolik +antinore +anteby +anslinger +ansbacher +ansara +annette +ankersen +anis +aniol +aningalan +aniello +anichini +anibal +angviano +anglum +angley +angerer +angeloro +angeloff +angelocci +anestos +anerton +anelli +andzulis +andruss +andrian +andreatta +andonian +andon +anderon +andebe +andary +ancy +ancell +anasagasti +anakalea +anagnostou +amyotte +amtower +amstein +amsinger +amsili +amphy +amonette +amolsch +amistoso +amisano +amidei +amesquieto +amert +amento +ameling +amelang +ambroz +ambrosone +ambres +amble +amberson +ambeau +amati +amargo +amancio +amailla +amadi +alzugaray +alvorez +alverest +alven +alvarengo +alvalle +alvacado +alummoottil +alukonis +alu +altwies +altum +altringer +altop +altheimer +altew +alterio +alsman +alsdon +alsbrooks +alsandor +alrich +alrais +almario +allor +allocca +allnutt +allmand +allhands +allgaeuer +allessi +allenbrand +allemond +allegre +allcorn +allbones +allamong +allaband +algeo +alge +alfreds +alfera +alexzander +alexiou +alexaki +alexader +alevedo +alerte +alekna +aleizar +alegi +alegar +aleff +alecca +aldrege +aldi +aldarondo +alcosiba +alcombright +alce +alcaoa +alcaide +albriton +albrekht +albracht +alberthal +alberro +alberda +alattar +alar +alampi +alamos +alaibilla +alacano +akuchie +akram +akinyooye +akiereisen +aimbez +ailstock +ahyou +ahrenholtz +ahonen +ahmau +ahlstedt +ahle +ahlborn +aharonof +aharon +ahal +aguino +aguillera +aguiler +agueda +aguallo +agrios +agriesti +agricola +agreste +agrela +agre +agney +agne +agliam +agerton +afoa +aflalo +affelt +affagato +afan +aemmer +adzhabakyan +ady +adside +adrovel +adrid +adonis +adleman +adle +adjutant +adesso +adels +addo +adamiak +acron +ackins +ackies +achziger +achzet +achekian +ache +acfalle +accetturo +abubakr +abson +abramowski +aboytes +aboulissan +abling +ablin +ablang +abke +abetrani +abernatha +abela +abeb +abdin +abdelwahed +abdella +abdeldayen +abdel +abbinanti +abbay +abbadessa +abaya +abaunza +abatti +aasby +aaland +aaby +zysett +zwinger +zweier +zuziak +zusman +zuro +zurkus +zurheide +zurawik +zuniega +zumot +zullig +zukowsky +zukof +zukerman +zuclich +zuchara +zubrzycki +zuberbuhler +zuazo +zsohar +zschoche +zrimsek +zoutte +zotos +zorzi +zoroiwchak +zorens +zoquier +zonia +zone +zondlo +zomora +zombro +zombory +zombo +zomberg +zolman +zollar +zolinski +zolinas +zoellick +zoelle +zoebisch +zodrow +zoda +zobell +zmiejko +zlotnick +zlatkin +ziyad +ziter +zita +zissler +zisser +zirin +zircher +zipse +zipkin +zipay +zinni +zinkl +zimit +zimba +ziman +ziler +zilahi +ziko +zihal +zieske +zieser +zientara +ziencina +zielonko +ziek +ziehm +ziego +ziegenhagen +ziedan +ziebold +zidzik +zickuhr +zicari +zibert +zibelli +ziak +ziadie +zezima +zeyadeh +zeto +zetes +zerzan +zerring +zerom +zerck +zerbel +zentgraf +zenker +zener +zenbaver +zena +zemon +zemjanis +zeminski +zelmar +zellous +zellefrow +zelkind +zeleny +zelenko +zeis +zeimetz +zeimantz +zeilman +zehnpfennig +zehe +zeegers +zeckzer +zebell +zebel +zeals +zdrojkowski +zazozdor +zaxas +zawadzki +zavatson +zavadoski +zatko +zastawny +zaspel +zarzuela +zarycki +zarucki +zart +zarriello +zarozinski +zarnick +zarkin +zaritsky +zarella +zappolo +zappile +zappavigna +zapoticky +zapico +zapato +zapatas +zanueta +zanter +zanola +zanis +zaneski +zanco +zamzam +zamperini +zamparini +zampaglione +zamostny +zammiello +zammetti +zambotti +zamborsky +zam +zalwsky +zakarian +zaituna +zaitlin +zaidel +zaic +zaibel +zahri +zahradka +zahra +zahorchak +zaharchuk +zagorac +zagen +zaffina +zaffalon +zadra +zadow +zador +zadd +zacharia +zacharewicz +zablonski +zabka +zabik +zabielski +zabek +yuzn +yuste +yusi +yurkanin +yurich +yurchiak +yungclas +yungbluth +yunan +yuki +yueh +yucha +yslava +yrigollen +yragui +ypina +yozamp +yovino +yovanovich +yournet +younkins +younglove +younglas +youket +yosko +yoshimori +yorton +yorn +yorkman +yorio +yorgey +yoquelet +yonkoske +yongue +yonge +yoney +yonemori +yonek +yokiel +yokely +yoders +yo +yngsdal +ylonen +yilma +yidiaris +yezek +yestramski +yessios +yeskey +yerry +yerly +yerbich +yenz +yenney +yenner +yenglin +yengich +yendell +yeldon +yekel +yeisley +yeilding +yegge +yeend +yeeloy +yearicks +yeamans +yeakle +ydara +ybos +yballe +yavorsky +yater +yasutomi +yasinski +yarzabal +yarrell +yarish +yanoff +yannotti +yankovitz +yanity +yanetta +yandura +yancik +yanan +yanai +yamnitz +yammine +yamkosumpa +yakulis +yaklich +yakel +yahraus +yahna +yahl +yagoudaef +yagin +yagecic +yaftali +yafei +yafai +yablonsky +xander +wzorek +wykes +wydryck +wydo +wydler +wycuff +wyborny +wurts +wurgler +wuolle +wunderly +wun +wulkan +wuitschick +wuestenberg +wuerz +wuellenweber +wucherer +wublin +wubbel +wrotten +wrinkles +wriedt +wrenne +wreede +wraggs +woyahn +woulard +woudenberg +woskobojnik +wosher +wortinger +worstell +worst +worner +worn +wormely +worlow +workings +workinger +wootan +woolhouse +wooleyhan +woolcott +woodliff +woodert +woodend +woodburg +woodand +women +wombolt +wolzen +wolthuis +wolsted +wolsky +woloszczak +woller +wolkowski +wolkowiecki +woliver +wolhok +wolfsberger +wolfred +wolffe +wolfertz +wolbeck +wokwicz +wojtowich +wojtecki +wojnaroski +wojeik +woiwode +wohlwendi +wohlschlegel +wohlrab +wohld +woester +woernle +woelzlein +woelfle +wodskow +wlosinski +wlodyka +wlazlowski +wlach +wizar +wiuff +witvoet +wittstruck +wittry +wittliff +witterstauter +witsell +witosky +withy +witherbee +withenshaw +witczak +wisterman +wisnosky +wisniowski +wiskowski +wisk +wisinger +wisenor +wischner +wisbey +wirtjes +wirght +wirf +wipprecht +winzler +winzenried +wintringham +winterton +winterfeldt +winterbottom +winsted +wins +winninger +winning +winney +winnewisser +winners +winnegan +winklepleck +winkleblack +winkelpleck +winkeljohn +winkelbauer +winingear +winikoff +wingstrom +winett +winesickle +winesberry +winek +windmeyer +windhurst +windam +wimpey +wiman +wilts +wiltjer +wilterdink +willrett +willour +willmes +willmann +willinsky +willington +willigar +williama +willegal +willcoxon +willand +willame +willaby +wilkowitz +wilkers +wilison +wilis +wilgocki +wilging +wilfinger +wilebski +wildin +wildfong +wilderson +wildenthaler +wildeisen +wildauer +wilcinski +wilansky +wilabay +wikins +wikert +wik +wiinikainen +wiggains +wigen +wieto +wiess +wiesman +wierzba +wierschen +wierschem +wiehe +wieger +wiederwax +wiederin +wiede +wieciech +wiechert +wiechec +widrig +widowski +widmaier +widlak +widdoes +wickus +wicketts +wickemeyer +wicka +wicinsky +wibeto +wibberley +wibbenmeyer +wiatrak +wiatr +wiand +whyman +wholly +whittley +whittiker +whitteker +whitset +whitmyre +whitmeyer +whitheld +whitesinger +whitemore +whitacker +whistle +whisker +whisenton +whippie +whipp +whildin +whigum +whiby +whelton +wheeington +whan +whaler +whal +weyhrauch +wewerka +wetterauer +wetselline +wetklow +westwater +westrom +westre +westhouse +westervoorde +westergaard +westerbeck +westcote +westaway +wesselink +wesselhoft +weslowski +weslow +wescovich +werthman +wershey +werries +wernli +werning +werma +werking +wenzell +wentzloff +wentcell +wenstrand +wensky +wennersten +wenman +wengren +wener +weneck +wendy +wendte +wenderoth +wend +wenclawiak +wence +wemark +weltmer +welms +welman +wellendorf +welfel +weitkamp +weith +weiszbrod +weissmann +weissert +weisse +weissbrodt +weismiller +weisiger +weisenhorn +weisenfluh +weisend +weisenberg +weisdorfer +weisberger +weirather +weinzinger +weinzimer +weinzetl +weintz +weinand +weiker +weikal +weik +weigman +weigleb +weigart +weidenheimer +weiden +weickum +wehring +wehausen +weglin +weghorst +weeth +weeter +weenum +weelborg +weegar +weeber +wedwick +wedner +wedlow +wedlock +wedi +wedgworth +weckenborg +wechselblatt +webbs +webbink +weavil +weatherley +weatherill +wearrien +wearly +weagel +weadon +waymer +wayde +waybill +wavra +waughtel +waughtal +wauch +watzke +wattson +watrs +watral +watne +waterston +waszmer +wasylow +wasyliszyn +wassermann +wassenberg +wassenaar +waskow +waskey +waska +washurn +washup +washuk +washnock +washman +washinski +wasem +wartman +warsme +warsing +warschaw +warsager +warpool +warneka +warnasch +warmbier +warley +warick +warholic +warhola +warhol +warens +wareheim +wardrop +wardon +wardman +wardinsky +wardian +wappel +wanvig +wanser +wanschek +wanland +waninger +wanders +wampol +walzier +walvoord +walto +waltenbaugh +waltemath +waloven +walman +wally +wallravin +wallor +wallinga +walles +wallentine +wallenda +walleck +wallbrown +wallberg +wallbank +walland +wallaker +wallaert +wallack +walkinshaw +walking +walicki +waldrope +waldmann +waldenberg +walczynski +walchli +walbrecht +wakula +wakham +wakenight +wakeling +waitkus +waisman +waisath +wainman +wahoske +wahner +wahlenmaier +wahid +wagon +waggaman +wagenheim +waganer +wafula +waeyaert +waetzig +waelti +waeckerlin +waddouds +wackman +wackerbarth +wachsmuth +wabasha +vyhnal +vuturo +vulgamott +vukich +vrias +vranich +vrablic +votraw +voter +votaua +voskowsky +vorwaller +vorholt +voracek +voong +vonwagoner +vonstaden +vonsoosten +vonkrosigk +vongxay +vongvivath +vongunten +vongsakda +vongal +vonfeldt +vondohlen +vonderkell +vonbraunsberg +vonarx +volpert +volper +volpa +volmink +vollmering +volking +volkers +volkens +volin +volesky +volckmann +vojta +voita +voights +vogtman +vogtlin +voglund +vogland +vogenthaler +vogelpohl +vogds +voetmann +voedisch +vodder +voce +vlk +vlasaty +vlasak +vlahovich +vizza +vizuete +vivolo +vittum +vittek +vitorino +vitkus +vititow +vitera +vitantonio +vitaniemi +visvardis +vissman +visovsky +visosky +visocsky +visnosky +visnocky +viscarro +visaya +virts +virkler +virgili +virgie +virgel +virelli +viramontas +viorel +vintinner +vintimilla +vinsel +viniegra +vinck +villot +villenas +villemarette +villecus +villaquiran +villane +villalouos +villaescusa +vilkoski +vilkama +vilca +vilaro +vilardo +vilandre +viken +vigus +viguerie +vigorito +vigario +viessman +viesselman +viesca +vierthaler +vierps +vientos +vienneau +vidler +victorica +vickey +vicioso +vichidvongsa +viccica +veysey +vespia +veselic +verzi +versele +veroba +vernet +verlotte +verigan +verhaag +vergamini +verga +verfaille +verela +vere +verdine +verdiguel +verd +verbridge +verble +verbit +verbilla +verbasco +ventur +ventrice +ventre +ventors +venth +venosh +vennari +venkus +veninga +venible +venghaus +venetos +venere +veneable +vendelin +vemura +velzeboer +veltre +veltin +veloso +veles +vele +veld +veitz +veitenheimer +vein +veillette +vegher +vegetabile +vegar +veerkamp +veen +vecino +vebel +veater +veader +ve +vayon +vayner +vavricek +vauter +vaulx +vaughner +vaudreuil +vaubel +vattikuti +vathroder +vatch +vastola +vastardis +vassure +vassil +vassie +vasseur +vassen +vasquiz +vasaure +varvil +vartanyan +varron +varro +vargis +varesko +varda +varanese +varakuta +varagona +vanzante +vanyo +vanwyngaarden +vanwassenhove +vanvolkenburg +vanvalen +vantuyl +vantil +vanta +vanstrom +vanslooten +vansicklin +vanscoik +vanschaick +vanruiten +vanostberg +vanorsdol +vanolinda +vanoflen +vannuland +vannover +vannorsdell +vanniello +vanni +vanner +vanmarter +vanleuvan +vanlaar +vankilsdonk +vankammen +vanhevel +vanheukelem +vanhee +vanhauen +vanhamlin +vanhamersveld +vangyi +vangompel +vangoff +vangerbig +vangelos +vanfossan +vanez +vaneffen +vandygriff +vandy +vanduynhoven +vandunk +vandorien +vandon +vandiest +vandeweert +vandevort +vandevere +vandeveble +vandestreek +vandesteeg +vanderwyk +vanderwood +vanderwilt +vanderwege +vanderweerd +vanderweel +vandertuig +vanderstappen +vanderschoot +vandermoon +vanderkaaden +vanderhoot +vanderboom +vanderau +vandenacre +vandemortel +vandeman +vandelaare +vandebrake +vanconant +vancleaf +vanbogelen +vanbenthuyse +vanbeck +vanasselt +vanaprasert +vanandel +vampa +valseca +valree +valot +valorie +vallimont +vallie +vallentine +vallelonga +vallario +vall +valgren +valer +valenzvela +valentyn +valenstein +valenciana +valderamo +valcin +valcho +valakas +vaksman +vakil +vaka +vajgrt +vaissiere +vainio +vaiko +vaghy +vaghn +vafiadis +vafiades +vaeza +vaeth +vadasy +vaclavik +vacio +vaci +vache +vaccarino +vacante +uzun +uxa +uvalles +utvik +uttley +ustico +usman +usina +ushioda +ushijima +uscio +usack +urse +urrey +urreta +urraca +urness +urlanza +uriostejue +urik +urenio +urdiano +urbieta +uptegraft +uppencamp +unterkofler +unnold +unnewehr +unkn +uniacke +unglaub +unck +umnus +umezawa +umbel +ultseh +ultreras +ulses +ullum +ulisch +ulicnik +ulich +uleman +ukich +uken +uhrin +uhrhammer +uhles +uhlenhopp +ugaz +ugaitafa +ueki +uebersax +udinsky +udicious +ucha +uccio +uc +ubry +ubiles +ubertini +ubence +tyssens +tysseling +tyrance +tynio +tylman +tydings +tydeman +twohatchet +twito +twillie +twiet +twiest +tweet +tweddell +twait +tvedt +tuxbury +tuukanen +tutuska +tutoni +tutela +tushoski +turvaville +turturo +turrill +turrie +turpiano +turomsha +turocy +turnpaugh +turnow +turnmyre +turnier +turkmay +turkasz +turinetti +tureson +turdo +turcio +turbiner +turbide +turber +turbe +turansky +tupy +tuppen +tuplano +tuorto +tunon +tunget +tunby +tun +tumolillo +tumminia +tumbleston +tullison +tulis +tuliau +tukuafa +tukis +tujague +tuia +tugade +tuffin +tuesburg +tuerk +tuer +tuenge +tudruj +tudman +tudisco +tuccio +tucay +tuberman +tsuruda +tsuchiura +tsuchida +tsistinas +tshudy +tschirhart +tschache +tsantakis +trzaska +trythall +tryninewski +truont +trumpp +truka +truiolo +truglio +trueluck +trudo +truchon +trucchio +trube +truan +troxil +trowel +trovinger +trotz +trotto +trosen +troost +tronzo +tront +trometter +trombino +tromba +trollope +troke +trojanovich +trojak +trohanov +trogstad +troe +trocchio +trobridge +trobough +trnong +trivane +trippel +trimnal +trimis +trimino +trilt +trillas +trillana +triglia +trigillo +trifone +triffo +trifero +tridenti +tricoli +tricamo +tribue +triblett +trevithick +trevisone +trevis +trevillian +trevethan +treves +treusdell +tretola +tretina +tretera +tressel +treola +trentz +trento +trentman +trenor +trennell +trend +trenchard +tremore +tremillo +trembinski +trelles +treister +treine +treible +treff +tredinnick +treder +trebon +trebesch +trear +traviss +traux +trautner +trausch +traum +trattner +trass +traphagen +trapeni +trapalis +traner +tramonti +trainham +traicoff +trahern +traffanstedt +trachsel +tracewell +trabold +trabazo +tozloski +toyota +toyn +towse +townsand +towels +touton +toussand +toupe +touney +toudle +touchard +touby +touart +totzke +tototzintle +totino +toting +tossie +tosco +tosch +tortu +tortolano +tortelli +torruellas +torros +torrion +torrillo +torrico +torreblanca +torrano +torongeau +toromanides +tornincasa +torey +toren +torbus +toquinto +topolewski +topoian +topness +toplistky +topliffe +topal +topacio +toothacre +tooms +toolsiram +toolan +tookmanian +tonzi +tonti +tonschock +tonsall +tonrey +tonnesen +tonnar +tongate +tonetti +tonelson +tonder +tonai +tomspon +tomski +tomshack +tomkus +tomka +tomidy +tomichek +tomeldan +tomehak +tombleson +tomasson +tomasic +tomash +tomanek +tolontino +tollin +tollerud +tollefsen +toline +tokley +tokkesdal +tohen +togashi +tofolla +toepperwein +toeller +toelke +toedebusch +todt +todoroff +todor +todesco +toboz +tobolski +toaston +toa +tlumacki +tlatenchi +tlatelpa +tlamka +tjandra +tix +tivis +tivar +titterness +titone +titler +tith +tisi +tish +tisdel +tisdal +tischner +tipre +tippey +tipold +tinucci +tintinger +tinnerello +tinn +tinlin +tinger +timus +timothe +timons +timonere +timon +timenez +timchula +timbrell +timas +timar +tilzer +tilus +tilt +tilow +tillou +tietge +tieng +tichnell +tichi +tibor +thy +thury +thurness +thurlby +thurby +thuney +thuma +thull +thruthley +throssell +thress +threlfall +thrapp +thrams +thraen +thouvenel +thorstenson +thorsness +thoroughgood +thornborough +thormaehlen +thorade +thonney +thompon +thometz +thomeczek +thomases +thomae +thoburn +thobbs +thivener +thim +thilmony +thiengtham +thielges +thieklin +thidphy +thibaut +thibadeau +thew +theule +theuenin +thepbanthao +theos +thell +thelin +thelemaque +theinert +theeman +theden +thebo +thansamai +thanos +thangavelu +thanem +thanasouk +thanas +thamann +thaman +thalls +thaller +thall +thadison +tewolde +tewa +teuteberg +teteak +testolin +tessendorf +tess +tesmar +teschler +terwey +tertinek +terstage +terrone +terrible +terrian +terrezza +terracciano +terp +teroganesyan +termilus +terinoni +teri +terhorst +terherst +terazes +teravainen +teque +teoh +teodoro +tention +tenore +tenofsky +tenn +tenhoff +tenhaeff +tengben +tenerovich +tener +tenda +tenario +tempelton +temoney +teman +tellefsen +telkamp +telgen +teles +telch +telander +teklu +teixeria +teissedre +teisberg +tehney +tegner +tegan +teehee +teder +teddy +tecuanhuey +techau +tecchio +teakell +teager +taylar +tayan +tawwab +tavolieri +taverab +tavaris +tavana +tauzin +tautolo +tausch +taula +taualii +tattrie +tatsuhara +taton +tatge +tatel +tastet +tassa +tasma +taskey +tashiro +taruer +taruc +tartsah +tarski +tarrenis +tarnoff +tarmey +tarman +tarling +tarella +tarduno +tarboro +tarbert +taray +taras +taque +tapian +taphous +tapaoan +tanzi +tantum +tannous +tankxley +tankesly +tanh +tangney +tangerman +tangaro +tangari +tangabekyan +tandus +tande +tamkin +tami +tamburrelli +tamburino +tamborlane +tamai +talvy +talsky +talleut +tallacksen +taliferro +talicska +talentino +talaro +talamentez +talaga +tako +taker +takara +takai +tajudeen +tajima +taitague +taillefer +tail +tahon +tagupa +taglauer +tagalog +tagaloe +tagala +tagaca +tag +tafiti +tafelski +taetzsch +taegel +tadt +tadgerson +taddio +tadd +tacopino +tacneau +tackette +tackes +tacke +tachauer +tacason +tabuena +tabion +tabatt +szysh +szymonik +szwede +szulimowski +szpak +szoka +szocki +szklarski +szitar +szewc +szesterniak +szermer +szerbin +szczepkowski +szczeblewski +szachewicz +szabat +syzdek +syrrakos +syria +sypult +sypolt +synovic +syner +symkowick +symeon +sylney +sylla +syktich +syer +swopshire +swolley +swithenbank +swiss +swirczek +swingler +swingen +swinerton +swinea +swille +swierenga +swierczynski +swieca +swicord +swerdloff +swenceski +swelt +swelgart +swehla +sweets +sweem +swed +sweatmon +sweatfield +swatman +swartzman +swartzell +swantak +swanston +swancutt +swanay +swamm +swam +swait +swainey +swaggart +swabe +swabb +svobodny +svetlak +svennungsen +svedine +svatos +svare +svancara +suydan +suwannakintho +suvada +suttin +suttee +sutkus +sutic +suthers +sutcliff +suszynski +sustar +sustaire +suskay +susany +susanin +suryanarayana +survis +surpris +suro +surminec +surguy +surgoine +sures +suren +surbella +suomela +sunyich +sunniga +sunier +sumrow +sumption +summerlot +sumerix +sumeriski +sultani +sulley +sullenberger +sulipizio +sulin +sulima +sulikowski +sulentic +sulejmanovski +sugabo +suffield +suentenfuss +suehs +sudekum +sudbrock +sucre +suchocki +suchla +sucgang +succar +subijano +subich +subert +subera +suaava +stuttgen +sturner +sturk +sturgul +sturghill +stukowski +stuesse +stuermer +stuer +stuebe +studyvance +studnicki +studniarz +studmire +studdiford +stucke +stublaski +stubby +stubbendeck +strzalkowski +struzzi +struzik +strubel +strozewski +strowe +strous +strotz +strombeck +stroker +strohmayer +strogen +strizich +strini +stringari +strimling +strimback +strife +strid +stricklind +stribley +strevels +strevell +streva +stretz +strenge +stremi +strelecki +strejan +streitnatter +streff +strefeler +streeton +stred +strazisar +strayhand +strayham +stravinski +strausz +strausner +strauhal +straugh +strasters +stranford +strandburg +stranahan +strahin +stradtner +stracquatanio +strachman +straathof +stpierrie +stoviak +stovell +stoutenger +stoudymire +stoud +stouch +stouall +stottlar +stotko +stothard +stotesbury +stotesberry +storto +stores +storage +stoos +stonich +stolzenburg +stolly +stolebarger +stolcals +stolar +stoklasa +stogden +stoffey +stofferan +stoey +stoett +stoeltzing +stoel +stoeke +stoeffler +stoeckert +stoebner +stoeberl +stodomingo +stodder +stockwin +stockon +stocki +stockebrand +stocco +stobie +stlouise +stives +stirn +stire +stipanuk +stingle +stinespring +stinehour +stinebuck +stindt +stimple +stimler +stilwagen +stiltz +stilner +stillie +stigsell +stiern +stiens +stiehm +stiegman +stiegemeier +stieb +stidstone +sticklin +sticklen +stickford +sthole +stford +stflorant +steury +stetzenbach +stetke +sterpka +sterker +sterkenburg +sterkel +stephensen +stepan +step +stenz +stenn +stendeback +stenbeck +stenback +sten +stemmler +stelzl +steltzer +stellpflug +stellfox +stelk +stele +steinruck +steinmeiz +steinkuehler +steinkirchner +steinkellner +steinerkert +steine +steinbrink +steinbauer +steik +steighner +steiert +steich +steibel +stehno +steggeman +stefl +stefford +steffa +stefanatos +steep +steenwyk +steenhoven +steelmon +steeg +steeb +stedronsky +steczo +stecklair +stechuchak +stechlinski +steber +stebe +stearnes +stearne +stea +stdenny +stchur +stayter +stawicki +stavrositu +staudenmeier +stattelman +statires +station +stathos +stathas +stasulis +stassen +stasny +staser +staschke +starweather +stars +starnaud +starley +starkman +starken +starich +starghill +starcevic +staplins +stapelman +stanzak +stanway +stanowski +stankowitz +stankaitis +staniec +stania +stangroom +stanesic +stanert +staneart +stands +standors +standifur +standeven +standaert +stancoven +stanclift +stancey +stanbaugh +stana +stammler +stamenov +stambach +stamatopoulos +stamas +stalberger +stakoe +stakley +stakkeland +stakemann +stainbach +stagowski +stagno +stagman +stagles +stagers +staffeld +staenglen +staehler +stadther +stadt +stadnik +stadick +stachurski +stace +stabs +stabley +stable +srygley +srinvasan +squarciafico +squair +spyrakos +spyies +spycher +spurger +spulick +spudis +spuck +sprygada +spruiell +spruance +sprowls +sprouls +sprong +sprole +springe +sprewell +sprengelmeyer +sprawls +sprauve +spragley +spotorno +sporysz +sporman +sporich +spoonemore +spoleti +spohnholz +splitt +splett +splatt +spiter +spirounias +spirk +spire +spinoza +spinn +spinetti +spinello +spinar +spilis +spiliakos +spigutz +spielvogel +spicknall +spicker +sperier +speraw +spennicchia +spene +spellane +spegal +spee +specken +spearow +spearmon +spayd +spartin +spartichino +spart +sparacina +spannuth +spanner +spanicek +spanger +spane +spakes +spadard +spacht +spacagna +sozio +soyke +sowl +sowden +sowada +sovel +souvannakhily +souto +southand +sourlis +soulliere +souhrada +sou +sotos +sothen +sosbe +sorzano +sorvig +sortland +sorokata +soro +sorlie +sorhaindo +sorell +sordia +sorace +soptick +soppeland +sophy +sopczak +sooy +soop +soomaroo +soolua +sonterre +sonsteng +sonnefeld +sonnee +sonka +songy +sondrup +sondles +sondheimer +sonderman +sonderegger +somvang +somsy +somrak +somoza +somogye +somo +sommons +sommar +somji +somilleda +somerfield +somdah +somayor +solwold +solverud +soltow +soltmann +solow +solorsano +solonar +solomen +sollors +sollitto +solliday +solito +solinas +solima +solies +solien +solich +solian +solhjem +solera +soldeo +solazar +solarski +solaita +soladine +sokul +sokotowski +sokolski +sokolowich +sojo +soito +soiro +soifer +softich +sofer +soechting +sodini +sodervick +soders +sodawasser +sockey +sobrio +sobieraj +sobeski +sobery +soberanes +sobenes +sobe +sobanski +soape +snowder +snorden +snode +snetsinger +snaples +snaer +snaders +smyrski +smyntek +smykowski +smutzler +smutny +smulik +smugala +smuck +smolnicky +smolinsky +smitty +smithe +smiling +smiler +smigiel +smerdon +smeja +smedes +smeathers +smarra +smar +smallmon +smallin +smallidge +slyton +slutsky +sluski +slovinski +sloter +slonecker +slomer +slogeris +slobodnik +sloanes +slipper +slingluff +slingland +sliney +slimko +sliman +slimak +slessman +slepski +sleppy +sleiman +sleaford +slaugenhaupt +slark +slackman +slaboda +skyes +skweres +skwarek +skubik +skrzypinski +skrebes +skrabanek +skovlund +skotnicki +skone +skonczewski +skold +skoien +skoczen +skobiak +skimehorn +skillpa +skillett +skillan +skildum +skibski +skibo +skevofilakas +skepple +skarzynski +skartvedt +skar +skapura +skaflen +skaer +skabo +sjulstad +sjerven +sizar +sixt +sixsmith +siwicki +sivills +sivilay +sivie +sivick +sivay +sivalia +sival +siurek +siuda +sittre +sittner +sittman +sitterding +sitosky +sitkiewicz +sistek +sista +sisomphou +sisofo +sisley +siskin +sisavath +sirpilla +sirosky +sirolli +siroka +sirna +sirico +sirhan +siravo +sipriano +sippy +siphan +siona +siok +sinrich +sington +singharath +singewald +singerman +sinarath +simple +simper +simor +simoniello +simonetty +simonet +simokat +simoens +simmond +simmes +simitian +simich +simerson +simensky +simcock +silvestrini +silvaggio +siluis +siltman +silovich +sillitoe +silkenson +siliezar +silevinac +silence +silbiger +silao +sil +sikarskie +siglow +siglar +sifre +sifontes +sifers +sievertsen +sieverson +sieve +sietz +siert +sieradski +sier +sielaff +sieja +siedner +siedel +siebenthal +sidorowicz +sidley +sidi +sideman +sicks +sickel +sickafoose +sicinski +sibounma +sibgert +sibeto +sibel +sibal +siar +siaperas +siami +sialana +shyne +shybut +shwab +shutty +shutters +shusterman +shurr +shurak +shuptrine +shupert +shummon +shulthess +shult +shulse +shullick +shulick +shulenberger +shuffleburg +shubov +shry +shrigley +shren +shrawder +showen +shoulder +shorthair +shopbell +shoobridge +shongo +shoman +shollenbarger +shoji +shofestall +shodunke +shober +shivy +shisila +shirvanian +shirakawa +shippen +ship +shinsky +shinnick +shinkel +shingleur +shingledecker +shindel +shimon +shimaoka +shilo +shillito +shillingsford +shilkuski +shiliata +shildneck +shikuma +shike +shigeta +shigemi +shifferd +shider +shibi +shettleroe +shetterly +sherville +sherrock +sherrange +sherraden +sherles +sherief +sherbon +shepperdson +shenker +sheneman +shene +shempert +sheman +shelvy +shelsy +shelkoff +shekels +sheirich +sheingold +sheidler +shehee +shefte +sheftall +sheerer +sheer +sheakley +shbi +shawber +shatek +shasky +shary +sharplin +sharperson +sharabi +shappen +shapouri +shapleigh +shapino +shaper +shanno +shandro +shanberg +shamsi +shammah +shamir +shamily +shalwani +shalla +shaline +shalhoub +shakoor +shakin +shahinfar +shahin +shahim +shahbaz +shaffren +shaffen +shadfar +shadding +shadazz +shaben +shabel +sgueglia +sgrignoli +sgammato +seykoski +seyb +sewyerd +seweall +sewade +severi +seveney +sevadjian +settlemyre +settlemires +settino +settimo +setterland +seton +setler +setias +seti +setchell +setaro +sestoso +sessin +sesser +serville +servi +servedio +serve +serravalli +sermersheim +serfoss +serfling +serey +seres +serens +serene +sercovich +serban +seratti +seratt +serasio +serandos +seraiva +seraille +sepvlieda +sepulbeda +septelka +seppelt +seppanen +seppa +senz +senst +sensor +sensmeier +sensing +senseney +sensenbrenner +senseman +seniff +sengvilay +sengun +senethavilouk +senesenes +senderling +sender +senavanh +semsem +semonis +seminario +sember +selzler +selvester +selusi +selnes +sellin +sellards +selkey +selic +selgrade +selesnick +selakovic +seiters +seit +seisler +seil +seikaly +seidenbecker +seibt +seibers +seiavitch +segreto +segonia +seggerman +segerman +segelhorst +seferovic +sefcheck +seering +seemer +seekford +seekamp +seegar +seedorff +seedborg +seebaum +sedanos +secundo +second +seckletstewa +sechang +sebranek +sebion +sebero +sebeniecher +sebasovich +searer +seara +seanger +seajack +seaholtz +seagers +seaforth +seacrest +seacat +seaburn +sdoia +sczbecki +scurci +scullin +scuito +scudero +scucchi +scsarpisnato +scro +scrivener +scriuner +scripps +scrimsher +scrichfield +screnci +scrape +scouller +scotts +scotting +scorgie +scollan +sciullo +scites +scicutella +scialpi +sciacchitano +schy +schworm +schwizer +schwister +schwipps +schwertfeger +schwerdt +schwerd +schwenzer +schwenneker +schwendeman +schwemmer +schweitz +schwarzlose +schwart +schwantd +schwadron +schutze +schute +schusted +schurk +schumachor +schulter +schultens +schulkin +schulist +schuit +schuering +schueren +schueneman +schuemann +schuchat +schuber +schubach +schrumpf +schroot +schroen +schroedter +schreuder +schreacke +schrayter +schrawder +schrauger +schraub +schrameck +schraff +schradle +schrab +schowengerdt +schossow +schopmeyer +schopflin +schop +schomin +schomas +schomacker +scholtens +scholin +schoggen +schoessow +schoepfer +schoenmaker +schoenig +schoelman +schoellkopf +schoell +schoeben +schoderbek +schockley +schnure +schnorbus +schnopp +schnobrich +schnitz +schnickel +schnibbe +schnepf +schnelder +schneidman +schneeberger +schnackel +schmollinger +schmoak +schmittou +schmiot +schmille +schmier +schmiel +schmiedeskamp +schmidtka +schmidlin +schmertz +schmerge +schmerer +schmelmer +schmeidler +schmautz +schmauder +schmatz +schmand +schmaling +schlund +schlumaker +schlotthauer +schlotte +schlotfeldt +schlote +schlossman +schloemann +schlindwein +schlimmer +schlieter +schlichenmaye +schleppy +schlenger +schleker +schleibaum +schleh +schlecter +schlaefli +schladweiler +schlabs +schirrmacher +schiralli +schinnell +schinker +schingeck +schindewolf +schimel +schilsky +schilk +schilder +schifko +schiffmann +schierenbeck +schierbrock +schielke +schieferstein +schiefen +schickedanz +schey +scheuren +scheuers +scherschligt +scherma +scherbring +scherbel +scheno +schenfeld +schells +schellin +schellermann +scheiern +scheiderer +schegetz +scheffrahn +scheffert +schechinger +schavone +schaunt +schaumann +schauble +schaubhut +schatzle +scharmann +scharler +scharbrough +schap +schanzenbach +schantini +schange +schandel +schammel +schallig +schaffter +schaffeld +schaffel +schafersman +schaen +schachterle +schachsieck +schabbing +scelzo +scelsi +scavo +scavetta +scaturro +scatenato +scarpitto +scarpitta +scarpato +scarpati +scarp +scarlato +scargall +scarfi +scantlen +scanneu +scannapieco +scanio +scandrett +scandalios +scancarello +scamehorn +scalzi +scallorn +scallion +scalet +scaiano +scaia +scagliotti +scace +sboro +sbarra +saysongkham +saysana +sayloe +saxinger +saxfield +sawtell +sawransky +sawhill +sawatzki +sawaia +savitch +savinar +savi +saven +savas +savaria +savakis +sava +sauveur +sausser +saurey +sauredo +saunas +saulsbery +sauger +sauerhage +sauerbry +sauce +sauby +satz +sattlefield +satmary +sathiraboot +satchwell +sat +sasuille +sashington +sasengbong +sasao +sarwar +sarrell +sarraga +saroop +sarnes +sarnacki +sarlo +sarks +sarkodie +sark +sargis +sargetakis +saretto +sarette +sarensen +sarcinelli +sarcinella +sarcia +saras +saranzak +saraniti +sarani +sarafian +saraf +sarac +sarabando +saporita +sapnu +sapko +saous +sanzenbacher +santti +santrizos +santoscoy +santomauro +santolucito +santis +santio +santilukka +santaloci +santagata +santaella +sanseda +sanquenetti +sanots +sanosyan +sann +sanmarco +sanlatte +sankovich +sanke +sankary +sankaran +sanislo +sanipasi +saniger +sangren +sanghez +saneaux +sandstedt +sandry +sandovar +sandos +sandone +sandness +sandlan +sandison +sandersen +sandborg +sanchz +sanchec +sancen +sanasith +samway +samuell +sampselle +sampieri +sampair +samoyoa +samowitz +sammut +samiec +samick +samele +sambucetti +samara +samantha +samanlego +salverson +salvature +saluto +saluja +saltourides +saltmarsh +salta +salsberg +saloum +salos +saloom +sallings +sallies +sallah +salisberry +salimas +salfelder +salesses +salen +saleado +saldvir +saldi +saldeen +salceda +salazan +salaza +salay +salandy +sakshaug +sakovitch +sakkinen +sakkas +sakiestewa +sakic +sakakeeny +saison +saisa +saintfleur +saide +saicedo +sahsman +sahli +sahler +sahlberg +sahagian +saggione +sages +sagendorf +safron +safar +saetteurn +saenphimmacha +sadhu +sadhra +saden +sadee +saddat +sackos +sachleben +saches +sachar +saccucci +sacane +sablone +sablock +sablea +sabiston +sabini +sabi +sabha +sabellico +sabaj +saadd +ryun +rysavy +rysanek +rylowicz +ryll +ryken +rygiewicz +rydalch +rychlicki +rybowiak +ryal +ruzycki +ruyz +ruwet +rutley +ruthenberg +ruszala +rusteika +rusteberg +russotto +russotti +russman +russek +russe +rusley +rusich +rushworth +rushman +rushforth +ruscitti +ruscio +ruschmann +ruschel +rusak +rupertus +ruoho +runzler +runyons +runswick +runfola +rumney +rummler +rumford +rumburd +rumbold +ruman +rulnick +rujawitz +ruhstorfer +ruhmann +ruhling +ruhlin +ruggiere +ruggero +rugga +rugama +ruffolo +ruether +ruesswick +ruell +rudnitski +rudnicky +rudish +rudicil +rudes +rudeen +rubow +rubloff +rubison +rubinow +ruberte +rubenacker +rubarts +ruballos +rubal +rozgonyi +rozga +rozenberg +rozas +rozance +roytek +rowsell +rowray +rowold +rowntree +rowlins +rowling +rowback +rovelto +rovella +rovack +rouzzo +rout +roussos +rounkles +roundabush +rouisse +rougier +rouff +roudybush +roucoulet +roubekas +rotstein +rothmann +rothhaupt +rothfus +rothenburger +rothbauer +rothacher +rotering +roszales +rossnagel +rossingnol +rossing +rosselle +roskovensky +roskop +rositano +rosine +rosich +rosettie +rosentrance +rosenthall +rosenkoetter +rosenheim +rosenbarger +rosekrans +rosebure +roseboom +roscow +roscorla +rosbozom +rosavio +rosacker +ropiski +ronzoni +rons +rondell +ronde +roncskevitz +romulus +rompf +romjue +romenesko +rombult +rombardo +romaniak +romandia +romanchuk +romag +rolseth +rollind +rollend +rolfsen +rolff +rolek +rokusek +rohs +rohowetz +rohlack +rohla +rogugbakaa +roguemore +rogosky +roginson +roggero +roggensack +roggenbaum +roggeman +roever +roetzler +roettgen +roessing +roerish +roemhild +roehling +roede +roeber +rodriuez +rodrigeuz +rodnguez +rodis +rodinson +rodine +rodemoyer +rodeigues +rodea +roddick +rodar +rodamis +rodal +rockymore +rockelman +rockafellow +rocho +rochlin +rochenstire +rocasah +roblow +roblodowski +robinzine +robinsons +robinso +robinault +robilotto +robichard +robeza +robertos +roberrtson +robblee +robante +roats +roatch +roaoo +roanhorse +roal +roacho +rizas +rivord +riveroll +riverman +rivel +ritzke +ritzie +ritums +ritson +ritchlin +ritari +ristaino +rissell +rissanen +risler +riskalla +risius +rishell +risha +risewick +risden +rische +riscen +risbeck +riquelme +ripoll +rioz +riofrio +riobe +rinnert +rinkus +rininger +ringland +ringhouse +ringelspaugh +rinebold +rindler +rinderle +rimm +rillera +riise +riippi +rightnour +rightley +riggings +rigger +riffee +rifenbery +riexinger +riesland +rieske +riesinger +rieley +riekert +rief +riedlinger +ridgnal +ridgle +ridgill +ridep +ridel +riddleberger +ridders +riculfy +rickford +richters +richmann +richlin +richiusa +richerds +richan +ricenberg +ricaud +ricardi +ribsamen +ribron +ribiero +ribero +ribbink +rhump +rhum +rhorer +rhoe +rhoan +rhoad +rhinerson +rhen +reznicek +reyner +reyne +reynaldo +reyelts +rewerts +rewakowski +revira +revils +revering +revera +revelli +revay +reuteler +reust +reuschel +reudink +retzloff +rethmeier +retek +retchless +retamar +ressel +respicio +respes +respers +resos +resetar +resenz +resecker +res +rerucha +requarth +reprogle +repoff +replin +repetowski +repasky +reola +renzoni +renzo +renyer +rentoulis +rentie +renouf +renosky +renigar +renert +rendler +rend +remondet +remis +remian +remele +remeder +rellama +rekus +rekemeyer +reives +reitter +reistetter +reinsvold +reinsfelder +reinowski +reinier +reing +reinen +reineccius +reindeau +reinbolt +reimnitz +reimmer +reihl +reihing +reigleman +reighley +reidherd +reidhaar +reichow +reibman +reial +rehse +rehmert +rehlander +reher +rehbock +regulski +regueira +regn +reginaldo +regelman +regar +refsal +refazo +reemer +reefer +redlon +redkey +redinbo +rediker +redig +redemer +redcross +redal +recuparo +recksiek +reckers +recidivi +rechichi +reburn +rebold +rebik +rebar +reavish +reaver +reavely +reash +reaollano +reagey +readinger +readdy +razon +rayyan +rayshell +rayow +rayome +rayhel +raychard +rayam +rawi +rawhouser +rawat +ravizee +raviele +ravago +rautenstrauch +raulino +raul +rauhecker +rauhe +raught +rauco +raucci +ratzloff +rattu +rattell +rattanasinh +ratsep +ratkovich +rathrock +rathel +rathai +ratana +rasual +rastetter +rastegar +rasset +raspotnik +raspa +rasool +rasole +rasley +raskey +rasico +rasavong +ras +rarogal +rarden +raptis +rappl +rapkowicz +rapisura +rapanot +rapalo +rapacki +ranweiler +ransonet +ransler +ranni +ranmar +ranks +ranildi +randgaard +randahl +ranch +ranaudo +ranah +ramsy +ramsour +ramshur +ramsby +ramrirez +rampy +rampulla +rampadarat +rampa +ramonez +ramler +ramlall +ramjhon +ramjan +ramirel +rametta +ramelli +ramelize +ramelb +ramdeo +ramcharran +ramaudar +ramal +ramagano +ramach +rakyta +rakus +rakestrow +rakers +rajk +rajas +rajaphoumy +raisley +raisler +raisin +rais +railes +raike +raigosa +rahoche +rahmes +rahib +rahaman +ragus +ragula +raguay +raglow +rafus +rafey +rafel +rafala +raethke +raemer +raef +raeder +radziwon +radwick +radwanski +radoslovich +radon +radmall +radlinski +radie +raderstorf +radej +raddle +raczak +racko +raciti +racioppo +racer +rabuse +rabsatt +rabjohn +rabito +rabey +rabeneck +rabehl +rabeck +rabbe +rabal +quivoz +quiver +quituqua +quitugua +quittner +quitter +quitero +quitedo +quirke +quiram +quiralte +quintard +quintania +quinnan +quinlivan +quilter +quillman +quillan +quilindrino +quiel +quidas +quicho +quibodeaux +quezergue +quezad +quettant +queros +querio +quercioli +quenzel +quencer +queller +quebral +quatrevingt +quashnock +quasdorf +quartuccio +quartiero +quartieri +quartaro +quarrell +quanstrum +quammen +qualheim +quagliato +quadnau +qua +qasba +qare +qadeer +pywell +pysher +pyros +pyfrom +pyfer +pyette +pychardo +puzon +putzer +putton +putcha +puskarich +push +purkhiser +purfeerst +puraty +puotinen +puntillo +punihaole +pundsack +puna +pulwer +pullus +pullara +puita +puhrman +puhr +puhl +puffenberger +puerto +puent +pudenz +pucket +pucker +public +ptaschinski +psuty +psuik +psilovikos +przybyl +przeniczny +prye +prybylski +prukop +pruessner +provosty +provorse +provins +provino +provenzo +provent +protich +protas +pross +prosienski +prosenick +proscia +prosak +propheter +promisco +promer +prokup +prokos +progl +profeta +profera +profancik +procsal +prociuk +prochak +proch +procaccino +prizio +privado +pritzker +pritzel +pritcher +pritchell +prisoc +priolean +prinn +prindiville +princevalle +primos +prima +prigg +priego +priegnitz +prible +pribish +pribbenow +prevot +prevet +pretzer +pretzel +prety +presume +prestley +prestipino +presnal +preslipsky +presiado +prendes +prejsnar +preist +preissner +preisner +preheim +prefontaine +predom +precissi +prechtel +precht +prause +pratten +prately +prante +prang +pramuk +praley +prakoth +prach +pozar +poynton +powskey +powsey +powlen +powells +pourvase +pourner +pourier +pourchot +pouncil +poulisse +poulet +pouk +pouche +potulski +pottkotter +pottichen +potteiger +potsander +pothoven +potanovic +potaczala +posusta +posto +postles +postiglione +postemski +possinger +possick +possehl +pospicil +poskitt +poska +posis +portnoff +portello +porris +porres +porep +porell +porat +popularis +poppo +popadiuk +pooyouma +pooschke +poort +poolheco +ponsler +poniatowski +pomykala +pompi +pomilla +pomiecko +pomfret +polzer +polvino +poltrock +polton +polter +polski +poloskey +pollot +pollnow +polivick +polisoto +polintan +poliks +polikoff +policicchio +policastri +policare +poletski +polee +poledore +polacco +pokrzywa +pokallas +pointe +poinelli +pohorilla +pohlson +pogozelski +pogorelc +poellinetz +podwoski +podeszwa +pod +pocklington +pociengel +pochatko +pocekay +pocai +poague +pniewski +plutt +plumbar +pluma +plotzker +plotrowski +ploskunak +ploennigs +plimpton +plienis +plewinski +plett +pleskac +pleshe +plesant +pleppo +plegge +playl +plavnik +plateroti +plateros +plastow +plassmeyer +plassman +planer +plance +planagan +plan +plamondin +plainy +plackett +placino +plachecki +placeres +plaas +pjetrovic +pizzulo +pizzini +pizzico +pivec +pitpitan +pitorak +pitocco +pitka +pitch +pitcairn +pitarresi +piszczek +pistelli +piskel +pisicchio +piserchio +piscitello +pirrotta +pirrello +pirre +pirozhkov +pirollo +pirieda +pipper +pipia +pioske +piombino +pinzino +pintello +pinsonneault +pinsoneault +pinn +pinkenburg +pinke +pindell +pinchock +pince +pimple +pim +piluso +pillon +pillarella +pillado +pilkey +pilette +pilchowski +piirto +pihlaja +piggie +piganelli +piety +pietrowicz +pietrok +pietrini +piesco +piertraccini +piersiak +pierrot +pierdon +pierannunzio +pientka +pielow +piela +piek +piegaro +piefer +piecuch +pidro +picotte +pickman +picketts +picketpin +pickerell +pickenpaugh +pichoff +picher +piccuillo +piccirilli +piccinone +piccinich +piccillo +picchetti +piatz +piao +piacitelli +piacenza +phyfe +phurrough +phuong +phuma +phuaphes +phramany +phoubandith +phommajack +phom +pho +phimsoutham +phimpradapsy +philmore +phillies +philliber +philio +phildor +philabaum +phi +phetsanghane +phetphongsy +phelp +phaymany +pharmer +pharao +phanthavongsa +pfrommer +pfoutz +pforr +pfnister +pflugradt +pflugrad +pfleuger +pfingsten +pfifer +pfeiffenberge +pfefferkorn +pfanstiel +pfander +pfalmer +pfaffinger +pezley +pezina +pezez +peyser +pevahouse +petula +petton +pettipas +pettijohn +pettigrove +pettay +petrouits +petropulos +petronzio +petronella +petrilli +petriccione +petric +petrecca +petralia +petr +petka +petigny +petesic +petersik +petek +petanick +petalcu +peszynski +pessolano +pesses +pesicka +peschong +pesarchick +pesantes +perza +pertea +persyn +persten +persch +perrota +perrot +perriott +perring +perrilloux +perrette +perrelli +perrell +pernod +pernin +perniciaro +pernesky +permann +perlson +perkiss +perina +perie +perencevich +peredz +percey +peraha +peplau +pepka +pepion +penzien +penzel +penya +penwarden +penticoff +pensky +pensick +pensa +pennelle +penird +penhallurick +penha +pengra +penderel +pendegraft +pencak +pemelton +peluse +pelnar +pellom +pellitteri +pelligrino +pellietier +pellicone +pelletiu +pellet +pellam +peleg +pekas +pekara +pehowich +peha +pegeron +peffly +pefferkorn +peetoom +peerzada +peecha +peduzzi +pedralba +pedez +pedeare +pecinousky +pechaira +pecatoste +pecarina +pecararo +pearyer +peacy +peachay +payseur +payor +payna +payant +payamps +pax +pawluch +pavliska +pavis +pavelski +pavella +pav +pauza +pausch +paulshock +paulseth +paulmino +paulic +paulauskis +paulauskas +paulas +pauker +paugsch +patzner +patzke +patwell +patuel +pattyre +pattinson +pattengale +patriquin +patrin +patrias +patria +patolot +patik +paterniti +patellis +patches +patcher +patanella +pataki +patajo +pasvizaca +pastures +pasto +pastian +passerino +passer +paskow +pasket +pasinski +pasho +pashea +pashal +pascorell +pascoal +pascanik +pascall +pasaya +pasana +paruta +party +partman +partipilo +partenope +partelow +part +parsygnat +parsh +parsells +parrotta +parron +parrington +parrin +parriera +parreno +parquette +parpan +parone +parnin +parms +parmantier +parkos +parkhouse +parizek +paripovich +parinas +parihar +parhan +pargman +pardoe +parayuelos +paravano +paratore +parara +papranec +pappajohn +paponetti +papitto +papike +papiernik +papciak +papantonio +papanikolas +papania +papan +papale +pap +paongo +paola +panzica +panzella +panyko +panuccio +pantosa +pantoliano +pantelakis +panrell +panowicz +panora +pankiw +pankake +panitz +panila +panias +paneque +panela +paneczko +pandola +panahon +panah +panagoulias +panagis +paluszynski +paluk +paluck +palu +paloukos +palombit +palmios +palley +pallant +pallansch +pallafor +palisbo +palchetti +palazola +palas +palacois +pakonen +pajerski +paillant +pahk +pagni +pagnello +paglio +paga +pafel +padol +padgette +padeken +paddio +paddilla +paddack +padavich +pacquin +packineau +pacior +pacholec +pachlin +pachla +pach +pacenta +pacek +pacapac +pacana +paben +paarmann +paalan +ozer +ozane +ozaine +ozaeta +oz +oyston +oyellette +oxton +oxnam +oxenrider +oxborough +owers +ow +ovit +ovesen +overstrom +overshiner +overmire +overley +overkamp +overdick +overbough +ovdenk +ovadilla +ouye +outzen +ousdahl +oury +ourth +ounsy +ouellete +oudker +otutaha +otuafi +ottrix +ottogary +ottino +ottilige +ottenwess +otiz +othoudt +otex +otega +osvaldo +ostwald +ostrzyeki +ostrum +ostroot +osterhaut +ostendorff +ostenberg +ostasiewicz +osswald +ossola +osowicz +osorno +osollo +osol +osnoe +osmus +osmanski +osias +oshman +osentowski +osden +osche +osbeck +orttenburger +ortolf +orto +ortga +orrego +orpin +orozeo +orochena +orobona +oroark +ornelos +ornedo +orne +orm +orlove +orlosky +orlof +orlinsky +orlinski +orlin +orizabal +oriti +orion +origer +orie +orhenkowski +orford +orff +oreskovich +orellama +oreily +orehek +oreb +ordazzo +ordahl +orcholski +orce +oras +opula +opstein +oppliger +oppegard +opichka +opher +opet +opalicki +opaka +ooton +onyeanus +onwunli +onukogu +onisick +onifade +oneale +ondik +ondic +ondersma +omullan +omoto +omo +omlin +omli +omersa +olverson +olveira +olvedo +olowe +olona +olnes +olloqui +olliver +ollhoff +ollendick +olkowski +olivid +olivers +oliveres +olivarra +olinghouse +oligee +olgvin +olfers +olewinski +olewine +oleveda +oleskiewicz +olejarski +olecki +olde +olckhart +olbrish +olay +olarte +okwuona +okuley +okula +okorududu +okoren +okoli +okihara +okerson +oken +ojard +ojanen +oines +oilvares +oieda +ohrnstein +ohren +ohmit +ohmie +ohlmacher +ohlenbusch +ohlen +ohaver +oharroll +ogwynn +ogunyemi +ogram +ogilive +ogen +ogbonnaya +ogasawara +ogans +ogami +oflahrity +offret +oen +oeler +oehrlein +oehrle +oehmke +oehmig +oeftger +oeder +odougherty +odorizzi +odomes +odin +odien +odhner +odess +odenheimer +ocus +ochsenbein +ochinang +ochiai +ochalek +occhino +ocacio +obnegon +oblow +oblinger +obiano +obery +oberson +oberpriller +obermuller +obermoeller +oberholzer +oberhaus +oberdier +oberdick +oaxaca +oar +nysether +nykiel +nygaro +nycum +nyahay +nwankwo +nwakanma +nwadiora +nwabeke +nuzenski +nusz +nunnelee +nunmaker +nuniz +nunery +nulisch +nuetzman +nuessle +nuesca +nuckoles +nuccitelli +nucci +nozum +nozick +nowzari +nowosadko +nowley +nowitzke +novitsky +novitski +novitske +novikoff +novida +novetsky +novelly +novellino +novara +nouth +noullet +noud +notwick +notowitz +notley +notis +nothem +nothacker +nostro +noseff +norwell +northwood +northcut +norstrud +norseth +norse +norsaganay +norko +norkaitis +noriego +norg +noreiga +nordwall +nordsiek +nordlinger +nordick +nordenstrom +norbo +noorigian +noordam +nonu +nones +noneman +nondorf +noltensmeier +nollette +nolfe +nolazco +nokken +noke +noiseux +noia +nohe +nogueda +noguchi +nogoda +noggles +noggler +noftsier +noey +noerenberg +noegel +nodurft +nodarse +nockai +nobregas +nobis +nkuku +nkomo +njango +niziol +nixion +nixa +nivar +nivala +nitzschke +nitzsche +nitzkowski +nitcher +niswender +nisley +nishimori +nirmaier +nipps +nipple +ninke +nini +ninh +nimrod +nimox +nimick +nila +niksich +nikodem +nikocevic +nikaido +nightlinger +niggemann +nietfeldt +niess +niesent +niesborella +nierer +niemitzio +niemiel +niemants +niedzwiedzki +niedzwiedz +niedens +niedbalec +niebaum +nicoson +nicoli +nicolaus +nickoley +nicklos +nicklien +nickenberry +nickas +nicholason +nichell +nichalson +nicewonger +niau +nian +nham +nguyan +ngin +nezich +nezat +neyaci +newstead +newness +newhook +newes +newens +newbell +newball +nevinger +nevilles +nevil +never +nevarrez +neuse +neundorfer +neuenswander +neudeck +neubig +neubaum +neubacher +nettleingham +netrosio +netolicky +netley +nesti +nessmith +neslusan +nesline +nesland +nesin +nerlich +nepa +neonakis +nenni +nemzin +nemunaitis +nemets +nemard +nemani +nelmes +nellums +nellenback +nelisse +nejaime +neja +neither +neiswoger +neiper +neild +neidiger +nehrt +nehme +neglio +negbenebor +needy +nedman +nedina +nederostek +nedelman +neddo +nedbalek +nebred +neblock +nebesnik +nebarez +neall +nealious +nealer +neahr +ncneal +nazzise +nazzal +nazir +nazelrod +naz +naysmith +nayman +nawwar +nawda +naveed +navarrate +navaretta +navappo +navanjo +natwick +nattiah +natsis +nati +nathans +natewa +natani +natalello +nasti +nassie +nasr +nasers +nasalroad +narr +nargi +nardy +napieralski +nanthanong +nantanapibul +nanna +nanik +nanasy +nanas +namur +namihira +namaka +nalty +nalbach +naki +nakatsu +nakamori +najarian +nailer +naifeh +naidu +nahrwold +nahl +nahari +nagode +nagindas +nagengast +nagelhout +nagase +naftzinger +naftali +naeher +nadoff +naderi +nadelbach +naddeo +nacy +nacisse +nacion +nachtrieb +nachmias +nachazel +nacar +naborg +nabity +nabhan +mytych +myslinski +myslin +mysak +myrtle +myrman +myrck +myntti +mynnerlyn +mylott +myking +myes +mycroft +mway +muzyka +muzacz +muyskens +muysenberg +mutone +mutner +mutherspaw +muthart +muthana +mutart +musty +muston +mussmann +musshorn +musse +muss +musquiz +musolf +muskthel +muska +musinski +musigdilok +muschick +muschett +musch +murwin +murty +mursko +murnock +mure +murasso +muraro +muran +murallies +muraco +munyer +munshi +munning +munl +munir +muninger +munhall +muney +munet +mundziak +mundschau +mundhenk +munderville +muncil +munchmeyer +munaz +muna +mulzer +mulvahill +mulryan +mulroney +mulready +mulneix +mullowney +mullner +mullison +mullany +mulich +mula +muhtaseb +muhlenkamp +muhlbach +muggley +mueske +muenkel +muell +muehleisen +mudrick +muddaththir +muczynski +mucklow +muckley +muckelvaney +muchortow +mthimunye +mrazik +mozzone +mozo +mozley +mozie +mozgala +mozelak +moyerman +mowder +mowan +movlin +mouzas +mourino +moulhem +mottillo +motteshard +mottershead +motamed +mosz +mostoller +mostiller +mostero +mostella +mosson +mossing +mossien +mossel +mosmeyer +moskau +moshos +mosho +moscovic +moscaritolo +moscariello +moscardelli +morosow +morono +morneault +morna +morn +morkve +moriwaki +morise +moriera +moricle +moribayed +morgret +morgner +morgas +morgans +morgandi +morfee +morelen +moreida +moreci +moreb +mordino +mordini +mordehay +morda +mootz +mootispaw +moosbrugger +moosa +moonsommy +moonshower +moodispaugh +mooberry +monz +montuoro +montrella +montijano +montgonery +montelle +montell +montcalm +montalgo +monske +monrroy +monrow +monnot +moniak +mongue +mongolo +mongiovi +monfore +mondoux +mondone +mondell +mondaine +moncrieffe +moncrieff +moncier +monasterio +monarque +monaham +monagle +momper +momeni +moltrie +molone +molly +mollohan +molliere +mollere +molleker +mollberg +molinini +moling +molineaux +molett +moldan +molavi +molaison +mokriski +mokiao +mojzisik +mojardin +moisey +mohorovich +mohinani +mohaupt +mohabeer +mogollon +moghadam +mofle +mofford +moevao +moelter +moede +modrak +moddejonge +mockler +mocha +mobilio +mlenar +mizzi +mizner +mizee +miyasaka +miyao +mixdorf +mitter +mittchell +mittag +mithani +mitchler +misove +mismit +misluk +miskovich +mishou +miserendino +misek +miscoe +mirmow +mirman +mirkovich +mirao +miran +miquelon +minucci +mintreas +mintos +mintor +minotti +minock +minnatee +miniuk +minissale +minihan +minicozzi +mini +minford +minette +minery +minehan +mineconzo +mindingall +minchella +minarcik +minacci +mimaki +milz +milwee +miltz +milsaps +milosevich +millstead +millott +millora +millian +millhiser +millerr +millbrand +millbern +millberg +milkent +milius +milite +milelr +mildred +milderberger +mildenstein +milbrodt +milare +mikulec +mikovec +mikota +mikolon +mikhaiel +mikez +miker +mikasa +mihovk +mihor +mihaliak +mihalco +mihalak +miggo +miessler +miernik +miernicki +miene +mieloszyk +mielkie +mielczarek +mielcarz +miehe +midget +middough +middents +microni +mickulskis +micks +mickonis +mickenheim +michello +michealson +michavd +michalczik +mezzinni +mezzanotte +meysembourg +meyerowitz +meyerott +meyerman +meyerhoefer +mevis +mevers +meuler +meulemans +meua +metzga +metzel +mettlen +mettille +metott +metos +metil +metia +metherell +metevelis +metenosky +meteer +metchikoff +mestler +mestanza +messman +messey +messervy +messel +messan +mesoloras +mesmer +mesiona +mesias +meshew +meshanko +meservy +mesecar +mesdaq +merzig +mervine +mertine +merrills +merren +merlette +merles +merlain +merl +merksamer +merithew +merisier +mering +merilos +merical +merhar +merette +mereno +merdian +merceir +mercando +merante +merana +merales +menucci +mentkowski +mentgen +menso +mensen +menkin +menjes +menjares +menitz +menietto +menier +meneus +menefield +menees +mendrin +mendrala +mendler +mendiaz +mendesa +mencke +menchu +menches +menas +mems +memo +memmo +meltzner +melter +melstrom +melsheimer +melser +melodia +mellos +mellis +melliere +mellie +mellecker +mellage +mellady +melikyan +melford +meley +melencamp +meleen +melear +melchert +melaun +melaro +melady +mekonis +meisenburg +meireles +meinsen +meinershagen +meil +meihofer +mehrotra +mehlhaff +mehis +mehelich +mehdizadeh +mehdi +meharry +mehalko +megraw +megown +mego +megill +megia +meggison +meggett +meggerson +meetze +meeroff +meemken +meehleder +meeds +medure +medosch +medora +mednis +medling +medland +medious +medino +medin +medill +medieros +medi +medhus +medearis +medanich +medalion +meckel +meccia +mecardo +measheaw +measeck +mearing +meara +meakin +mcwilson +mcward +mcwalters +mcwade +mcvoy +mctush +mctiernan +mctarnaghan +mcswiggan +mcstay +mcritchie +mcrill +mcquiddy +mcqueeny +mcpharlane +mcphan +mcpartlin +mcnutty +mcnuh +mcnicoll +mcnicol +mcnevin +mcnespey +mcneme +mcnellie +mcnayr +mcmina +mcmenamy +mcmanigal +mcluckie +mclilly +mcleskey +mclearan +mclauchlen +mclatchy +mclaen +mckray +mckouen +mckoon +mckisson +mckinna +mckines +mckimmy +mckimley +mckewen +mckerrow +mckenzy +mckentie +mckemie +mckaskle +mckanic +mcintyde +mcinroy +mcinnish +mcilwaine +mciltrot +mchalffey +mcgurren +mcgurr +mcgunnis +mcgunnigle +mcgunagle +mcguinnes +mcguin +mcgrotha +mcgrogan +mcgraph +mcgoon +mcglothern +mcgloster +mcglohon +mcglockton +mcglawn +mcginnity +mcginister +mcgilberry +mcgiboney +mcghin +mcghaney +mcgeeney +mcgeady +mcgartland +mcgarraugh +mcgaffey +mcgafferty +mcgaffee +mcfeeley +mcfan +mceneny +mcelwine +mcelreavy +mcelpraug +mcelmeel +mceirath +mceady +mcdunn +mcdonnall +mcdewitt +mcdermett +mcdeavitt +mcdearmont +mccurine +mccunn +mccumbers +mccumbee +mccullors +mccullon +mccullogh +mccullock +mccuan +mccrate +mccra +mccoulskey +mccornack +mccormik +mccorkindale +mccorison +mcconnal +mccomack +mccole +mccoil +mccoard +mcclurken +mcclodden +mcclod +mcclimens +mccleveland +mcclenningham +mcclellon +mcclaugherty +mcclatcher +mcclarty +mcclamma +mcclaim +mcchain +mccelland +mccastle +mccarvill +mccarther +mccarr +mccarns +mccarn +mccard +mccandrew +mccandliss +mccalvin +mccalpin +mccalment +mccallun +mccallough +mccahan +mccaffree +mcbratney +mcaveney +mcausland +mcauly +mcarthun +mcanaw +mcall +mbamalu +mazzera +mazze +mazzawi +mazzaferro +mazzacano +mazuo +mazion +mazey +maywood +mayshack +mayrose +mayou +mayorca +mayoka +maynerich +maylone +mayhood +mayeshiba +maydew +maxi +maxell +mawhinney +mavropoulos +mavle +mavai +mautte +mauson +mausey +mauseth +mausbach +maurus +maurizio +maura +maupredi +maung +maultasch +mauleon +maud +matyi +matuszak +matushevsky +matusek +matuck +mattys +mattsey +mattione +mattias +matteis +matsu +matsoukas +matrey +matot +matlin +matkowsky +matise +mathwich +mathus +mathony +mathery +matherson +mathen +maten +matelich +matejek +matczak +matchen +matarrita +matakonis +mataka +matacale +masuyama +masure +masupha +masudi +masturzo +mastrocola +mastriano +mastrianni +mastrianna +mastrelli +massicotte +massetti +massella +massei +massee +massaquoi +masood +masom +maslowsky +masloski +maslonka +maski +maskaly +masiejczyk +masgalas +masero +masenten +masciantonio +masaya +masaracchia +marzocchi +marzili +marzigliano +marye +marusiak +marullo +marturano +martos +martorello +martineze +martillo +martignago +martiarena +marsters +marshalek +marsell +marsek +marseglia +marriot +marrion +marrington +marrietta +marrello +marreel +marrable +marquina +marque +marozzi +marovic +marotti +marose +marnett +marmolejos +markt +markson +marklund +markewich +marinoni +marinko +marinas +maril +mariello +marguardt +margreiter +margraf +margel +margaryan +margarita +margan +marevka +maresco +marero +marentez +maree +mardini +marcotrigiano +marcoguisepp +marcks +marcinka +marchizano +marchitto +marchiony +marchionese +marchesseault +marcheski +marchesano +marchall +marceaux +marbray +maratre +maratos +marashi +marasciulo +maras +marantz +marallo +maragni +maragh +marabella +maquis +maontesano +maobi +manzie +manzay +manvelito +manvel +manuell +mantik +mantele +mantegna +mansbridge +mansanares +manora +manolakis +manokey +mannine +mannheimer +mannebach +mannchen +manlito +mankoski +manivong +manheim +mangubat +manfra +manemann +manecke +mandry +mandler +mandi +mandap +mandahl +mancos +manciel +mancherian +manchel +manca +manby +manatt +manaker +mamone +mammano +malvern +malton +malsch +malovich +malouff +malory +maloff +malocha +malmanger +mallinger +mallinak +mallegni +mallat +malkoski +malinky +malinak +malichi +malgieri +maleszka +males +maleonado +malenke +malekan +malehorn +maleck +malcome +malay +malawy +malarkey +malanado +malama +malabey +makua +makhija +makel +makarem +majorga +majocka +majica +majic +majeau +maizes +mairot +maione +mainz +mainland +mainetti +mainero +maimone +maifeld +maiers +maiello +maidonado +maicus +mahung +mahula +mahrenholz +mahran +mahomly +mahin +mahe +mahall +mahal +magsby +magsayo +magrone +magraw +magrann +magpali +magouliotis +magorina +magobet +magnini +magnifico +magnie +magnett +maglioli +maggit +magg +magette +magdefrau +magdalena +magaziner +magathan +magalski +magaldi +magadan +mafua +maeno +maenaga +maedke +madziar +madre +madine +madin +madhavan +madge +madeja +maddoy +maddison +maddin +maddern +mad +macvicar +macurdy +macreno +macpartland +macoreno +macola +macnutt +macnevin +macmullan +maclain +mackstutis +macknair +macklem +mackillop +mackenthun +mackechnie +mackaman +macione +maciolek +maciarello +machover +machle +machi +machel +machak +macduffee +maccutcheon +macculloch +maccord +macconaghy +maccoll +macclellan +macclairty +maccini +macchiarella +maccheyne +maccarter +maccarino +maccarini +macandog +macanas +macalma +macabeo +maasen +maarx +lytell +lyson +lysher +lyngholm +lynchj +lynah +lyme +lyken +lyew +lydecker +lybert +lyberger +lybecker +lyau +lweis +luzi +luzell +luvianos +luvera +lutze +lutkus +luten +lusty +lustberg +lurye +lury +lurtz +luquette +lupiani +lupacchino +lunter +lunstrum +lungwitz +lungsford +lunemann +lunderman +lunch +luminati +lumbley +lumba +lumadue +lulas +lukow +lukianov +lukesh +lukander +luka +luing +luikart +lugabihl +lufborough +luette +luescher +lueschen +luersen +luensmann +luening +lueker +luedecke +lueckenbach +luebbering +ludovico +ludera +ludeker +ludecke +luczki +luco +luckinbill +lucis +lucik +lucie +lucic +luchterhand +luccous +lucash +luberger +lubbert +lubben +lubawy +lubahn +luangxay +luangrath +luangamath +luague +lozey +loyborg +loyack +loxton +loxtercamp +lownsbery +lowler +lowcks +lowa +lovstad +lovisone +lovfald +lovetinsky +lovet +lovero +loverdi +lovellette +loveberry +louwagie +lournes +louria +lourentzos +lourdes +louka +louil +loudermelt +louchen +loubier +lotto +lotridge +lothringer +lothridge +lota +lot +loszynski +lossius +losneck +loseth +losavio +losardo +losano +losado +losacco +losa +lorr +loron +lorincz +loria +loretz +lorentine +lordi +loraine +lopze +lopiccalo +lopey +loperfido +lope +lopata +lopas +loparco +loofbourrow +longwith +longhi +longenberger +longbine +longaker +longabaugh +lomonte +lomino +lominack +lomen +lombel +lombardino +lomago +loma +lokan +loiacona +lohry +lohrke +lohre +logoleo +loggens +logarbo +lofwall +lofty +lofts +lofthus +lofte +lofstrom +loforte +lofman +lofing +lofguist +loffier +loffelbein +loerwald +loeppky +loehrer +loehner +loecken +lockshaw +locknane +lockington +lockery +lockemer +lochrico +lobregat +lobley +lobello +lobell +lobalbo +lobach +llaneza +llanet +llams +livley +livinton +living +liversedge +livernois +livermon +liverance +liveoak +livecchi +livasy +liukkonen +litzenberger +litvak +littfin +litmanowicz +litchard +listi +listen +lisker +lisitano +lisena +lisbey +lipsie +lips +lippoldt +lippitt +lipper +lipoma +lipkovitch +lipira +lipan +linzan +linza +linsin +linsenmayer +linsdau +linnert +linman +linkon +lingner +lingley +lingerfelter +lingbeek +linero +lindorf +lindmeyer +lindinha +linderleaf +lindau +lindabury +linburg +linak +limmel +limle +limbert +limardi +lilyblade +lillehaug +likar +liiv +ligonis +ligler +lighthart +ligget +liftin +lifschitz +liewald +lievsay +lievens +lietzow +lierz +liegler +liedberg +lied +liebrecht +liebherr +lieberg +liebenthal +liebenow +liebeck +lidstone +lidie +lidge +lidder +licursi +licklider +lickfelt +lichota +lichenstein +liceaga +liccketto +libertini +libberton +leyton +leyh +leydecker +leyda +lexer +lewi +lewars +levreau +levra +levielle +levian +leveto +leversee +levers +leverone +leverance +levendoski +levee +levatino +levans +levandofsky +leuze +leutwiler +leuthe +leuhring +leuga +leuckel +leuasseur +lettsome +lettiere +letscher +letender +letchaw +leta +lestrange +lestourgeon +lestor +leston +lessner +lessmann +lessly +lespedes +leso +lesneski +leskovar +leskovac +lese +lesco +lesches +lesa +lerra +lerper +lerow +lero +lermon +lepretre +lepre +leppink +lepke +lepez +lepetich +leopardi +leonpacher +leonick +leonberger +leomiti +leny +lenski +lenorud +lenort +lennis +lennart +lennan +lenling +lenke +lenigan +lenhoff +lenharr +leners +lendt +lendor +lendo +lenczyk +lench +lenberg +lemoyne +lemmonds +lemmings +lemish +lemear +lembcke +lemansky +lemans +lellig +lekey +lekberg +lekan +lek +lejman +leitzinger +leithiser +leiper +leinwand +leimkuhler +leimberger +leilich +leigland +leichtenberge +leiberton +leho +lehning +lehneis +lehmer +lehenbauer +lehberger +legrotte +legro +legra +legat +legall +lefurgy +leflores +leffers +leffelman +lefeld +lefaver +leetham +leesman +leeker +leehan +leeber +ledsinger +ledermann +ledenbach +ledee +led +lecznar +leckband +lechleidner +lechelt +lecato +lecaros +lecain +lebroke +lebold +leblane +lebitski +lebish +leberte +lebedeff +lebby +lebaugh +lebarge +leavigne +leaven +leasor +leasher +leash +leanza +leanen +leaird +leahman +leadford +lazusky +lazurek +lazott +lazio +lazier +lazich +lazewski +lazares +layva +layell +laycox +lawsky +lawrentz +lawis +lawford +lawcewicz +lawbaugh +lawary +lawal +lavongsar +lavgle +lavezzo +lavelli +lave +lavani +lavander +lavagnino +lavadera +lautieri +lautaret +lausell +lauschus +laurole +lauretta +laureno +laureles +laurance +launiere +laundree +lauigne +laughon +laugen +laudeman +laudadio +lauckner +lauchaire +lauby +laubersheimer +latus +latourrette +latos +laton +lathrum +lather +lathe +latendresse +late +latassa +latam +lat +lastella +lassetter +laskosky +laskoskie +lasin +lasik +lashlee +lashier +laselle +laschinger +lascaro +lasane +lasagna +lasage +larusch +larrosa +larriviere +larralde +larr +larowe +larousse +larotta +laroia +laroe +larmett +larman +larkan +largena +laregina +lardone +larcom +larche +larbie +larbi +larason +laranjo +laragy +laraby +larabell +larabel +lapuerta +lappinga +lappi +laport +lapinta +lapila +laperuta +lapere +laper +lapek +lapari +lapalme +laorange +lanze +lanzarotta +lantry +lantgen +lantelme +lanteigne +lansey +lansberg +lannier +lannen +lanna +lankster +lanie +langrum +langness +langmo +langlitz +langi +langholdt +langhans +langgood +langanke +lanfor +lanen +laneaux +landu +landruth +landrie +landreville +landres +landquist +landolf +landmark +landini +landevos +landenberger +landan +lancz +lamudio +lampsas +lampl +lampinen +lamphiear +lampel +lamoree +lamoreau +lamoore +lamontagna +lammy +lammel +lamison +laming +lamie +lamia +lameda +lambuth +lambertus +lambermont +lamartina +lamango +lamaack +lalinde +lalich +lale +lakowski +lakhan +lajoye +lajoy +laios +lahne +laham +laguire +lagrenade +lagore +lagoo +lagonia +lagoni +laglie +laggan +lagesse +lagerstedt +lagergren +lagatta +lagard +lagant +lagamba +lagadinos +lafuze +lafrate +laforey +lafoon +lafontain +laflam +laffer +lafevre +lafemina +lafantano +laface +laessig +laehn +ladt +ladouce +ladonne +lado +ladika +ladick +ladebauche +lacz +lacusky +lacovara +lackett +lackage +lachino +lachiatto +lacharite +lacerenza +lacek +lacau +lacatena +lacaille +labovitch +labounta +labombar +laboissonnier +labo +labitan +labier +labeots +labarriere +labaro +labarbara +laatsch +laasaga +laake +kyseth +kypuros +kyper +kyner +kwilosz +kvzian +kvoeschen +kveton +kvek +kveen +kvaternik +kuziel +kuypers +kuykendoll +kuwana +kuwada +kutzer +kuty +kutlu +kuti +kutchie +kuszynski +kussmaul +kussel +kusnic +kusner +kusky +kushaney +kurzinski +kurtti +kurshuk +kurr +kurokawa +kurns +kuretich +kurasz +kurant +kura +kur +kupihea +kupferberg +kupersmith +kupchinsky +kunter +kunkleman +kuniyoshi +kunimitsu +kunich +kundanani +kunau +kummerow +kumlander +kumfer +kuman +kumalaa +kum +kulseth +kulbeth +kulbacki +kulback +kukura +kukler +kuklenski +kukauskas +kukahiko +kujat +kuiz +kuitu +kuick +kuhry +kuhlenschmidt +kuffa +kuepfer +kuehnhold +kuechler +kudro +kudrle +kuczma +kuckens +kuciemba +kuchinski +kuchem +kubley +kubler +kubesh +kubeck +kubasch +kub +kuanoni +krzewinski +krzesinski +krzan +kryston +krystek +krynicki +krylo +kruzel +kruyt +kruszewski +krusor +kruskie +krushansky +krush +kruppenbacher +krupinsky +krumroy +krumbein +krumbach +krukiel +kruizenga +kruis +kruiboesch +kruebbe +krucke +krotine +krostag +kropff +kropfelder +kroninger +kronau +krome +krolick +krokus +krog +krofta +krofft +kroesing +krochmal +krobath +krnach +krivanec +kristofferson +kristof +kristan +krissie +kriskovich +kriske +krishun +krishnamurthy +krishman +krinov +kriek +kriegshauser +krewer +kreutzbender +kreusch +kretzinger +kressler +kressin +kressierer +kresky +krepp +krenzke +krenning +krenik +kremple +kremmel +kremen +krejcik +kreissler +kreinhagen +krehel +kreese +krawitz +kravetsky +kravets +kravec +krausse +krausmann +krauel +kratowicz +kratchman +krasnici +krasnansky +kraskouskas +krasinski +kranwinkle +kranock +kramarczyk +krallman +krallis +krakowiak +krakauer +krainbucher +kraig +kraichely +krahulec +krahe +krah +kragt +kraetsch +krabel +krabbenhoft +kraasch +kraack +kozlovsky +kozlik +koziak +kozeyah +kozan +kowitz +kowalke +kowalec +koves +kovalaske +kovacik +koutras +koussa +kousonsavath +kounthong +kounthapanya +kounovsky +kounkel +kounick +koulavongsa +koulalis +kotyk +kotur +kottraba +kottlowski +kotterna +kotschevar +kotonski +kotlar +kotheimer +kotey +koterba +koteras +kotarski +kotaki +kosuta +kostrzewa +kostiv +kosters +kossey +kossen +kossak +kososky +kosorog +koso +koslan +kosiorek +koshi +koscielniak +kosareff +korzyniowski +korzybski +korynta +korwin +korwatch +kortemeier +korst +korsmeyer +korslund +koroch +kornn +kornfield +kornblatt +korkmas +koritko +korinta +koria +korewdit +kores +korenek +kordys +kordowski +kordiak +korbin +kopsho +koppy +kopke +kopin +kopicko +kopiasz +koperski +kopay +kopatz +kopan +koosman +koong +koolman +kool +konty +konow +konopski +konma +konishi +konger +konetchy +kone +konderla +konczewski +konarik +komula +kominski +komada +koma +kolwyck +kolupke +koltz +kolts +kolppa +koloc +kollross +kollos +kolkman +kolkhorst +kolikas +kolic +kolbusz +kolassa +kol +kokubun +kokoszka +kokko +kokenge +koitzsch +koiner +kohus +kohles +kohel +koguchi +kofoot +koers +koenitzer +koeninger +koenigsberg +koener +koenemund +koelbel +koehring +koeck +kody +kodera +koczwara +kocieda +kochkodin +kochen +kochanek +kobylski +kobylarz +kobylarczyk +kobold +knyzewski +knupke +knudsvig +knowiton +knowell +knous +knotowicz +knorp +knoflicek +knoeppel +knoepke +knoell +knoechel +knodel +knockaert +knobler +kniola +knill +knilands +kniesel +kniceley +kneuper +knetsch +kneser +knerien +knellinger +kneefe +knazs +knatt +knapko +knapick +knape +knap +knake +kmiotek +kment +kmatz +kman +klyn +klute +kluse +klumph +klukken +klukan +kluemper +kluber +klosky +kloppenburg +klonowski +klomp +klohs +klohe +kloeppel +kloeker +kloefkorn +kloeck +klobucar +kljucaric +klitzner +klitsch +kliskey +klinski +klinnert +klinich +klingner +klingenberger +klingberg +klingaman +klimo +klimavicius +klickman +klicka +klez +klevjer +klette +kletschka +kless +kleppen +klenovich +kleintop +kleinsasser +kleinfeld +kleifgen +kleid +kleftogiannis +kleefisch +kleck +klebes +klear +klawuhn +klawinski +klavon +klavetter +klarin +klappholz +klande +klancnik +klan +klamn +klamert +klaja +klaich +klafehn +klabunde +kjolseth +kjergaard +kjellsen +kjellman +kjeldgaard +kizzia +kizior +kivela +kitty +kitthikoune +kittelman +kitelinger +kitcher +kitchenman +kitanik +kisro +kisielewski +kiryakoza +kirsopp +kirshman +kirlin +kirkness +kirkling +kirkconnell +kirgan +kirchmann +kirchherr +kirchberg +kirchbaum +kirberger +kiracofe +kipple +kip +kious +kintopp +kintigh +kinsolving +kinsky +kinlin +kinlecheeny +kingwood +kingson +kinds +kindregan +kinderman +kinde +kimminau +kimbal +kilver +kiltie +kilstofte +kilogan +kilness +kilner +kilmister +killoren +killius +kilimnik +kilichowski +kildare +kiko +kijak +kiili +kihlstrom +kietzer +kiesser +kierzewski +kienbaum +kienast +kieke +kieck +kiebala +kiddle +kickel +kichline +kibbler +kiani +khubba +khora +khokher +khn +khlok +khilling +khensamphanh +khemmanivong +khazdozian +khazaleh +khauv +khairallah +kezele +keyon +keyl +kew +kevwitch +kevorkian +keveth +kevelin +kevan +keuper +ketzler +kettinger +ketterl +ketteringham +kettenring +ketchersid +kessans +kesey +kesek +kertzman +kertels +kerst +kerper +kernodle +kernighan +kernagis +kermes +kerens +kercheff +kerce +kerans +keppner +kepke +kepani +keovongxay +keoghan +keodalah +keobaunleuang +kenzie +kenson +kenoyer +kenouo +kennie +kenngott +kennaugh +kenik +keney +kenekham +kenealy +kendziora +kendal +kenaga +kempster +kemps +kempon +kempkens +kemmeries +kemerly +keltt +kellywood +kellish +kellem +keliipaakaua +kelau +keks +keisacker +keis +keinonen +keilholz +keilholtz +keihl +kehres +keetch +keetan +keet +keeser +keenom +keeman +keehner +keehan +kedra +kedia +kecskes +kecker +kebede +kebe +keba +keaty +keaten +keaser +kearsey +kearn +kazunas +kazimi +kazar +kazabi +kaza +kayat +kayastha +kawski +kawell +kawczynski +kawaiaea +kave +kavaney +kaut +kaushal +kausch +kauo +kaumans +kaui +kauder +kaucher +kaua +katzmann +katzaman +katterjohn +kattaura +katsaounis +katoh +katke +katis +katin +katie +kathleen +kathel +kataoka +kaszton +kaszinski +kasula +kasuba +kastens +kaspari +kasmarek +kasky +kashner +kasen +kasemeier +kasee +kasal +karz +karwowski +karstensen +karroach +karro +karrels +karpstein +karpe +karoly +karnath +karnas +karlinsky +karlgaard +kardux +karangelen +karamchandani +karagiannes +karageorge +karabin +kar +kapsner +kapperman +kappelmann +kapler +kapiloff +kapetanos +kanzenbach +kanwar +kantis +kantah +kanosh +kanoon +kanniard +kannan +kanjirathinga +kangleon +kaneta +kanekuni +kanealii +kand +kanakares +kamstra +kamradt +kampner +kamna +kammerzell +kamman +kamiya +kaminska +kamensky +kamber +kallhoff +kallfelz +kalley +kallestad +kallal +kalista +kalhorn +kalenak +kaldahl +kalberg +kalandek +kalan +kalamaras +kalafarski +kalaf +kakowski +kakeh +kakani +kajder +kaja +kaines +kaiktsian +kaid +kahookele +kahoohalphala +kahley +kahao +kahalehoe +kahal +kahae +kagimoto +kaewprasert +kaemingk +kadow +kadelak +kaczka +kacvinsky +kacprowski +kachmarsky +kabzinski +kabus +kabir +kabigting +kabala +kabacinski +kababik +kaarlela +kaanana +kaan +kaak +kaai +ka +juvenal +justian +juste +justak +jurries +jurney +jurkovich +jurist +jurin +jurgen +juray +junod +junkersfeld +junick +jumbo +julsrud +julitz +juliana +jukich +juengling +juen +juelich +judie +jubyna +jubran +jubeh +juback +juba +juanico +joynson +joyne +jover +journot +joto +jotblad +josic +jorrisch +jordt +jording +jondrow +jonah +jome +jollimore +joline +jolina +joler +joki +johnting +johnstonbaugh +johnikins +johniken +johe +johansing +johal +joganic +joerger +joelson +joehnck +jody +jodha +joanis +jirsa +jirak +jira +jingst +jhingree +jhanson +jews +jestis +jessica +jeskie +jesiolowski +jesenovec +jeschon +jermeland +jerkin +jericho +jerger +jergen +jerding +jepko +jens +jenovese +jennkie +jenderer +jenab +jempty +jemmings +jelome +jellings +jelden +jelarde +jeffryes +jeffirs +jedan +jecmenek +jecklin +jeck +jeanquart +jeanphilippe +jeannoel +jeanette +jeancy +jaysura +javis +javers +javed +jave +jaussen +jauhar +jastremski +jastrebski +jasmann +jaskolka +jasko +jaskiewicz +jasica +jasch +jarriett +jaroski +jarnutowski +jarmin +jaremka +jarema +jarels +jarecke +jarding +jardel +japak +janysek +janway +janowiec +janow +janofsky +janoff +jannise +jannett +jankoff +janeiro +jana +jaminet +jami +jamgochian +jamesson +jamer +jamel +jamason +jalovel +jalkut +jakubov +jaksic +jaksch +jakiela +jaji +jaiyesimi +jahosky +jahoda +jahaly +jagiello +jaggie +jafek +jafari +jae +jadoo +jaculina +jacquin +jacquelin +jacobsohn +jacobovits +jackso +jacksits +jackosn +jackett +jacinthe +jabbie +jabaut +jabali +jaarda +izak +izaguine +iwasko +iwashita +ivrin +ivener +iveans +ivancic +iuchs +itnyre +istorico +isiminger +isgur +isgro +isenbarger +iseman +isebrand +isaksen +isagba +isacson +isaack +irr +ironhorse +irigoyen +ireson +ipsen +iossa +inzano +introini +insognia +inserra +inostraza +innerst +innella +innarelli +innamorato +inkavesvanitc +ingvolostad +inguardsen +ingran +ingrahm +ingraffea +ingleton +inghem +ingersol +ingargiolo +inferrera +iner +induddi +indermuehle +indeck +indal +incomstanti +incera +incarnato +inbody +inabnit +imming +immerman +immediato +imholte +imeson +imbruglia +imbrock +imbriale +imbrenda +imam +imada +iltzsch +illovsky +illich +illas +illar +iliffe +ilg +ilarraza +ilaria +ilalio +ikzda +ikkela +ikenberry +ikemoto +ikemire +ikeard +ihnen +ihenyen +iheme +igus +iguina +ignoria +igles +igbinosun +ifie +ifft +ifeanyi +ifantides +iennaco +idrovo +idriss +idiart +ickert +icardo +ibric +ibdah +ibbotson +ibasitas +iarussi +iara +iannalo +iamiceli +iacuzio +iacobucci +iacobelli +hysquierdo +hyske +hydzik +hyberger +hyatte +huysman +huyna +hutyra +huttman +huttar +huter +husul +hustedt +hussy +hussong +hussian +huski +hushon +husein +husaini +hurtubise +hurta +hurni +hurme +hupy +huppenbauer +hunze +hunson +huner +hundertmark +hunderlach +humston +hummert +huminski +humerick +humbard +hulzing +hulshoff +hulmes +hukle +hujer +huitink +huirgs +hugus +huguet +hugghis +huffstutter +huerto +huertes +huenergardt +huemmer +huelle +huehn +huebsch +hudok +hudnut +hudlow +hudlin +hudes +huddy +huckabone +huckabaa +hubsch +hubl +hubertz +htwe +hsy +hrycko +hrna +hric +hribal +hrcka +hrbacek +hranchak +hradecky +hoysock +hoyne +hoylton +hoyal +hoxsie +howlingwolf +howett +howarter +hovnanian +hovard +hovantzi +hovanes +houzah +houtkooper +housner +housemate +hourihan +houltberg +houghtelling +houey +houchard +houben +hotter +hotten +hottell +hotek +hosoi +hosner +hosle +hoskyns +hoskey +hoshino +hosfield +hortein +horseford +horse +horridge +hornshaw +horns +hornlein +hornig +horneff +hormuth +horimoto +horesco +horenstein +horelick +hore +horbert +horabik +hoppenrath +hoppa +hopfauf +hoosock +hool +hoogheem +hoogendoorn +hoo +honus +honold +honokaupu +honigsberg +hongisto +hongeva +hones +honegger +hondros +hondel +honchul +honch +homza +homsey +homrighaus +hommer +homiak +homby +homans +holznecht +holzmiller +holzhueter +holzboog +holtmeier +holtmann +holthouse +holthoff +holtham +holtgrefe +holstad +holshovser +holquist +holmers +hollyday +hollo +hollner +hollinghurst +holleyman +hollett +hollerud +hollering +hollembaek +hollarn +hollamon +hollack +holihan +holibaugh +holgersen +holdy +holdgrafer +holdcraft +holdbrook +holcroft +holch +hokula +hokett +hojeij +hojczyk +hoivik +hoiseth +hoinacki +hohnson +hohney +hohmeier +hohm +hohlstein +hogstrum +hogon +hoglan +hogenmiller +hogains +hoga +hofstra +hofstadter +hofhine +hoffpavir +hoeser +hoerig +hoerger +hoelzel +hoelter +hoeller +hoek +hoehl +hoefflin +hoeffer +hodosy +hodnicki +hodermarsky +hodd +hockley +hochstine +hochfelder +hobstetter +hoblit +hobin +hoberek +hobb +hnot +hlywa +hlastala +hjermstad +hizkiya +hitzfelder +hiteman +hitchko +hitchingham +hissom +hismith +hiske +hirte +hirschmann +hirose +hirezi +hipsley +hippley +hipol +hintergardt +hinokawa +hinely +hindsman +hindmarsh +hinderaker +hindall +hinckson +hinajosa +himmelsbach +himmelright +hilyar +hilvers +hilu +hiltunen +hiltebeitel +hilsgen +hilovsky +hilo +hilmer +hillseth +hillered +hilleman +hillbrant +hillabush +hilla +hilkert +hilk +hildman +hilbner +hilbig +hilb +hila +hija +higy +hightshoe +higashida +hiens +hielscher +hidde +hidaka +hickley +hickingbotham +hickie +hiciano +hibble +hibbits +heziak +heynen +heykoop +heydenreich +heybrock +hevrin +hevessy +heugel +heuangvilay +hettes +hettenhausen +hetling +hetjonk +hethcox +hethcote +hetchman +hetcher +hesterly +hessman +hesselrode +hesselman +hesselbein +hesselbach +herzbrun +heryford +herwehe +hervol +hertle +herta +herskovic +hershnowitz +hershfield +herschaft +hersberger +herrud +herrnandez +herrlich +herritt +herrion +herrand +herran +herout +heroth +heronemus +hero +herny +hermus +herline +herley +hergenroeder +hergenreter +herena +herem +herek +hercman +heral +hequembourg +heppert +hepperly +heppel +heppding +henzler +hentrich +henter +hensle +hensdill +henschke +hennighausen +hennard +henkin +henges +henedia +hendson +hendsbee +hendrics +hendrickx +hencken +henchel +hencheck +hemsworth +hemry +hemperley +hemmig +hemmeter +hemmert +hemmelgarn +hemmeke +hemley +hemeyer +hemerly +hembre +hemans +hemanes +helwick +helvik +helphinstine +helphenstine +helowicz +helmert +helmen +helmbright +helliwell +helley +hellerman +hellenbrand +helferty +helfert +hekman +heitmuller +heitbrink +heisse +heisner +heir +heinzle +heinzerling +heino +heinig +heindl +heimerl +heimbuch +heilbrun +heilbron +heidtke +heidmann +heglund +heggins +heggestad +hegener +hegdahl +hefter +heffernen +heery +heebsh +hedrix +hedler +hedeiros +hedegaard +heddleson +heddins +hect +heckle +heckers +hebsch +hebrard +heberer +hebblethwaite +heaviland +heartley +hearston +heang +hean +heam +heagany +headlon +heading +hazouri +hazinski +hazekamp +hayword +haysbert +hayn +hayball +hawkings +havier +havermann +havekost +hauswald +haustein +hausteen +hauslein +hausher +haurin +hauptly +haulbrook +haukaas +haugaard +hauffe +hauben +hatzell +hatto +hattenbach +hatridge +hatlee +hathcox +hatchette +hatcherson +hatake +hassig +hasselvander +hasselkus +haslinger +haskamp +hashbarger +hasha +hasfjord +hasencamp +haseloff +haschke +hasbni +hasbell +hasak +harwin +harvley +harvilchuck +harvick +harutunian +hartzo +hartzheim +hartjen +hartgraves +hartgrave +hartgerink +hartenstein +harsy +harrisow +harrigton +harrellson +harralson +harrald +harradine +harraden +haroun +harnly +harnes +harnar +harnan +harnack +harlston +harlor +harleston +harkenreader +harkcom +harjochee +hargest +harges +harfert +harens +hardung +hardney +hardinson +hardigan +harby +harbus +harbough +harbottle +harbold +harary +haramoto +harader +harabedian +har +happney +happe +haper +hape +hanville +hanusey +hantzarides +hantula +hanstine +hansteen +hansson +hansrote +hansil +hanoharo +hanock +hannula +hanno +hannem +hanneken +hannegan +hanmore +hanisko +hanisco +hanify +hanhan +hanegan +handt +handshaw +handschumaker +handren +handlin +handing +handeland +hanagan +hanagami +hanafin +hanafan +hanacek +hamway +hampon +hamper +hamparian +hamor +hamontree +hamolik +hamnon +hamn +hammet +hammerstein +hammerstad +hammerlund +hammed +hammang +hameen +hamborsky +hamb +hamalak +hamai +halwood +halston +halpainy +halon +halmstead +halmick +hallstead +hallowich +hallio +hallie +hallerman +halleen +hallczuk +hallan +halgren +halechko +halcom +halbritter +halaliky +hal +hajdukiewicz +hait +haislett +hairster +hainsey +hainds +hailes +hagwell +hagon +haghighi +haggstrom +haggis +haggen +hageny +hagelgans +hagarty +hafenbrack +haessler +haessig +haerr +haener +haen +haeckel +hadson +hadland +hadian +haddaway +hackmeyer +hackethal +hackerd +hackenmiller +hackenbery +hacke +hackborn +hachette +habif +habermann +haberern +habbs +haakinson +haagensen +gzym +gyurko +gyllenband +gyaki +gwynes +gwenn +guzmdn +guziczek +guz +guyott +guyot +guyet +guttenberg +gutschow +gutreuter +gutrerrez +gutieres +gutiennez +guthorn +guthary +guterriez +gutenson +gussin +gushue +gusa +gurvine +gurtin +gurrad +gurne +guridi +gureczny +guralnick +gunzenhauser +gunthrop +gunkelman +gunagan +gun +gumphrey +gummersall +gumbert +gulnick +gullung +gullage +gulini +gulikers +guley +guldemond +gulde +gulbraa +gulati +guittennez +guitreau +guith +guitar +guirgis +guinle +guiltner +guilstorf +guillote +guillan +guilianelli +guilbe +guiffre +guiel +guidaboni +guiao +guialdo +guevana +guesman +guerrouxo +guerinot +gueretta +guenison +guenin +guempel +guemmer +guelpa +guelff +guelespe +guedesse +gudroe +gudat +guckes +gucciardi +gubser +gubitosi +gubernath +gubbins +guarracino +guarin +guariglio +guandique +guaman +gualdoni +guadalajara +grzywinski +grzywacz +grzyb +grzesiak +grygiel +gruzinsky +gruters +grusenmeyer +grupa +gruninger +grunin +grundon +gruhlke +gruett +gruesbeck +gruell +grueber +gruda +grubman +gruba +grovier +grothen +groszkiewicz +grossley +grossklaus +grosshans +grosky +groshek +grosenick +groscost +grosby +groombridge +gronvall +gromley +grollman +grohoske +groesser +groeber +grocott +grobstein +grix +grivna +gritsch +grit +gristede +grissam +grisostomo +grisom +grishan +grip +grinner +grinman +grines +grindel +grimlie +grimard +grillette +griggers +grigas +grigalonis +grigaliunas +grifin +griffins +griffes +griffel +grife +griesmeyer +griesi +griem +grham +grgurevic +greyovich +greydanus +greviston +gretzner +gretz +gretsch +greto +gresl +gresko +grengs +gremler +greist +greisser +greisiger +greiser +greiber +gregoroff +gregoreski +gregas +greenrose +greenlow +greenlees +greenfelder +greenen +greenbush +greeb +grebs +grebel +greaux +grdina +gravit +gravenstein +gravelin +grava +graul +graughard +graue +grat +grastorf +grassano +grasmuck +grashot +grasha +grappo +graper +granvil +granucci +grantier +granstaff +granroth +granizo +graniero +graniela +granelli +grandos +grandmont +gramza +graminski +gramberg +grahams +grago +graen +graefe +grae +gradle +graciani +graci +grabowiecki +grabauskas +gounder +gougeon +goudge +gouchie +gou +gottula +gottleber +gotthardt +gotowka +gotlib +gotimer +gothier +gothe +goswami +gostowski +gossin +gosserand +gossen +goshow +goshi +gosda +gosche +gorychka +gorri +gornikiewicz +gorlich +gorgo +gorglione +goretti +gorence +gorelik +goreczny +gordis +gorczynski +gorans +gootz +goosen +goonez +goolsbee +goolia +goodvin +goodpastor +goodgine +goodger +gooder +goodenberger +goodaker +goodacre +gonzolez +gonzaliz +gonsalues +gones +gone +gondran +gonda +gonazlez +gomzalez +gomey +gome +gomberg +golumski +goluba +goltry +goltra +golpe +golombecki +gollwitzer +gollogly +gollin +golkin +golk +goldware +goldrup +goldrich +goldhammer +goldhahn +goldfischer +goldfield +goldeman +goldak +golberg +golba +golanski +golabek +goick +gogocha +goglia +gogins +goetzke +goettman +goettig +goetjen +goeman +goeldner +goeken +goeden +godyn +godwyn +godown +godfray +goderich +gode +godde +goda +gockerell +gochnauer +gochie +gobrecht +gobeyn +gobern +gobea +gobbo +gobbi +gnagey +glugla +gluckman +gluc +glowski +glowka +glowinski +glow +glossner +gloff +gloe +glodich +gliwski +gliues +glise +glinkerman +glimp +glicher +glenny +glembocki +gleiss +gleichweit +gleghorn +glaviano +glauser +glaue +glaubke +glauberman +glathar +glasow +glashen +glasglow +glarson +glapion +glanden +glader +gladen +glacken +gjorven +gjokaj +gjesdal +gjelten +givliani +gitzlaff +gittere +gitlewski +gitchell +gissler +gisriel +gislason +girolami +girmazion +girellini +girauard +girardeau +girad +giove +gioriano +gionson +gioacchini +ginnetti +ginnery +ginanni +gillom +gillmer +gillerist +gillentine +gilhooley +gilfoy +gilespie +gildroy +gildore +gilcoine +gilarski +gihring +giggie +giessinger +gierling +gielstra +giehl +giegerich +giedlin +gieber +giebel +gidwani +gicker +gibes +gibbings +gibbard +gianopulos +gianola +giannell +giandelone +giancaspro +giancarlo +gian +giamichael +giagni +giacomazzi +giacoletti +giachino +ghramm +ghosten +ghiringhelli +ghiorso +ghil +ghia +gheza +ghekiere +gheewala +ghazvini +ghazi +ghazal +ghaor +ghane +ghanayem +ghamdi +gfroerer +geyette +gewinner +gewant +gevorkian +gevedon +geuder +getting +gettenberg +getschman +getachew +gestes +gesselli +geryol +gerych +gerty +gerton +gertken +gerster +gersch +gerpheide +geronime +gerondale +gerock +germinaro +germershausen +germer +gerlock +gerla +gerking +gerguson +geres +gerbs +gerbi +gerathy +gerardot +georgiana +georgales +geohagan +geoghan +geoffrey +genualdi +gentis +gennusa +gennaria +gennarelli +genin +genga +geng +geneseo +generous +generoso +genera +genberg +gemmel +gembe +gembarowski +gelzer +gelo +gellis +gellespie +gell +gelineau +gelger +geldrich +gelbach +geister +geissel +geisen +geiman +geils +gehrking +gehri +gehrett +gehred +gefroh +geerken +geelan +gedris +gedo +gechas +gecan +gebrayel +gebers +geasley +geanopulos +gdula +gbur +gazzillo +gazza +gazo +gaznes +gazdecki +gayoso +gayo +gaymes +gawlak +gavula +gavles +gaviria +gavinski +gavigan +gaves +gavell +gavalis +gautsch +gauron +gauntner +gaulzetti +gattie +gatski +gatch +gata +gastelun +gastellum +gastel +gasson +gassler +gasse +gasquet +gaspari +gasienica +gaseoma +gasch +garzone +garverick +garve +garthee +garrod +garriss +garrish +garraghty +garnet +garness +garnder +garlovsky +gariti +garich +garibaldo +garib +gargani +garfias +garff +garf +gares +garen +gardy +garder +garcelon +garced +garavelli +garala +garacci +ganze +gantewood +ganska +gannoe +ganji +ganja +ganibe +ganiban +ganguli +gangluff +gangadyal +gane +gandhy +gandarillia +gancio +gana +gamrath +gamewell +gamela +gamberini +gamberg +gambell +gambaiani +galvano +galva +galustian +galston +galstian +galson +gals +galon +galofaro +gallipo +gallery +galleno +gallegher +gallante +gallagos +gallaga +galjour +galinoo +galinol +galin +galietti +galhardo +galfayan +galetti +galetta +galecki +galauiz +galaska +galashaw +galarita +galanga +galacio +gailun +gailis +gaibler +gagon +gago +gagliardotto +gaetke +gaestel +gaekle +gadue +gades +gacusan +gacad +gabrel +gabouer +gabisi +gabino +gabbett +gabbay +gab +gaarsland +fyles +fventes +fusselman +fusik +fusi +fusha +fusca +furuyama +furubotten +furton +furrh +furne +furna +furlotte +furler +furkin +furfey +fure +furch +furay +fupocyupanqui +funderbunk +fundenberger +fulwiler +fulsom +fullwiler +fulliton +fulling +fuleki +fulda +fukuroku +fukada +fuhri +fuglsang +fugle +fugah +fuesting +fuents +fudacz +fucile +fuchser +frydman +fryday +fruusto +frutoz +frullate +fruchey +frossard +fross +froschheiser +froozy +fronduti +frondorf +fron +fromong +frometa +froiland +frohwein +frohock +froeliger +frodsham +fritzpatrick +frist +frisino +frisella +frischkorn +fringuello +frings +friling +frikken +frietsch +friest +friedstrom +friedhaber +friedenberg +friedeck +fridal +freytas +freydel +freudiger +freshley +frere +frenner +freniere +fremon +fremming +freme +freligh +freistuhler +freiser +freil +freifeld +freidkin +freidet +frehse +freguson +freerksen +freelon +freeley +freehoffer +freedland +fredrikson +fredric +fredline +fredicks +freddrick +frawkin +frauenkron +frati +franzeo +frantzich +frankina +frankford +frankenreiter +frankenfeld +franeo +frandeen +franculli +francolino +francoise +francisque +franciosa +francios +francione +franceski +franceschina +fram +fraine +fragassi +fracier +fraccola +frabotta +frabizio +fouyer +foux +foutain +fourre +fouracre +found +foules +foucha +fosso +fosser +fossa +fosburgh +forwood +fortado +forston +forsthoffer +forschner +forsch +fornkohl +fornerod +formhals +formey +formento +formato +forlani +forgy +forgach +fordon +forcino +forcell +forcade +forbish +forber +fontneau +fontelroy +fonteboa +fontanini +fonsecn +fondell +fon +follie +foller +folkins +folkens +folgar +foks +fogus +fogo +foerschler +foell +foecke +foderaro +foddrill +focks +flum +flugence +fluette +fluetsch +flueck +flournay +flotow +flota +florkowski +florestal +florance +floore +floerchinger +flodman +floch +flitton +flitt +flister +flinton +flinspach +flierl +flever +fleurissaint +fleurantin +flether +flennoy +fleitman +flegler +fleak +flautt +flaum +flasher +flaminio +fixari +fiumefreddo +fitzmier +fitzgerlad +fitzen +fittje +fitser +fitchette +fisichella +fisger +fischbein +fischang +fiscal +fisanick +firoozbakht +firlik +firkey +fiorenzi +fiora +finucan +finto +finona +finocan +finnley +finnin +finnila +finni +finnel +finne +finland +finkenbiner +finey +finders +filzen +filyan +filteau +filonuk +fillo +fillerup +filkey +filippides +filippello +filburn +filbrardt +filbey +filary +filarecki +filak +fijalkowski +figurelli +figone +figlioli +figlar +figary +figarsky +fiermonte +fierge +fiely +fieldstadt +fiedtkou +fiedorowicz +fiebich +fie +fidsky +fido +ficenec +feyler +fewless +feulner +feuerberg +fetui +fetrow +fesus +fesenbek +ferugson +ferster +ferrise +ferratt +ferratella +ferrarotti +ferrarini +ferrao +ferrandino +ferrall +ferracioli +feron +ferndez +fernandz +fermo +ferm +ferlic +ferjerang +feris +ferentz +fereday +ferdin +ferdico +ferderer +ferard +feramisco +fenti +fensel +fenoglio +fenoff +feno +fenniwald +fenger +fenceroy +felzien +felson +felsher +fellon +felli +fellhauer +fellenbaum +felleman +fellars +felks +felipa +felila +felico +felicione +felger +feldtman +feldner +feldker +feldhake +felciano +felcher +fekety +feindt +feinblatt +feilbach +feikles +feigh +feichtner +fehribach +fehnel +fehn +fegurgur +fego +fefer +feezor +feery +feerst +feeling +feekes +feduniewicz +feduccia +fedorka +fedoriw +fedorczyk +fedel +feddes +fedderly +fechtel +fecat +feazelle +feast +fearheller +fearen +feamster +fealy +fazzinga +fawell +favilla +favieri +favaron +favaro +faustman +faurot +faur +faulstick +faulstich +faulkes +faulkenbury +faulisi +faubus +fat +faster +fash +fasenmyer +fasci +fasbender +faruolo +farrin +farria +farrauto +farmsworth +farmar +farm +farlee +fariello +farid +farha +fardo +faraco +fantz +fanner +famy +famiano +fam +falu +faltz +falto +falson +fallie +fallick +falla +falknor +falkenthal +falis +falha +falge +falconeri +falcione +falchi +falb +falasco +falah +falack +falacco +faix +faisca +fairy +fairly +faigle +faichtinger +fahrenwald +fahrenbruck +fahner +fahlstedt +fagnoni +faglie +fagala +faehnle +fadri +fadei +facenda +fabus +fabroquez +fabello +fabeck +fabbozzi +ezernack +ezer +ezechu +ezdebski +eyubeh +eyermann +extine +expose +ewelike +evora +eviston +evertz +eversmann +everleth +evering +eveline +eveler +evanski +evanosky +evanoski +evanchyk +evanchalk +euton +euser +eurton +europe +ettl +ettison +etters +etoll +ethel +etchinson +esty +esteybar +estevane +esterson +esterling +estergard +estela +estaban +esshaki +essepian +esselman +essaid +essaff +esquiuel +esquerre +esquea +esposita +espenscheid +esparaza +esoimeme +esnard +eskuchen +eskelsen +eskeets +eskaran +eskaf +eshlerman +esenwein +escorza +escoe +escobeo +eschenbacher +eschenbach +eschborn +escarrega +escalet +esbensen +esannason +ervine +ervay +ertelt +erpenbach +ero +ernstrom +ernspiker +ernandez +ermogemous +ermita +erm +erlwein +erlanson +erixon +erice +erfert +ereth +erdmun +erdelt +erchul +ercek +erbentraut +erard +eracleo +equiluz +eppert +epperheimer +eppenger +epifano +eperson +enzenauer +entzi +entrup +entel +enote +enocencio +enny +ennist +ennels +ennaco +enkerud +enick +engwer +engleby +enget +engessor +engerman +engbretson +enfort +ends +endresen +endecott +encalade +emuka +emslander +emshoff +empleo +empfield +emperor +emo +emmrich +emlin +emigholz +emfield +emeru +emeche +emdee +emberlin +emberley +emberger +emayo +emanus +emami +elvert +elshair +elsensohn +elsbury +elsa +elroy +elquist +elofson +elmaghrabi +ellworths +ellifritt +ellies +elliem +ellerkamp +ellerbeck +ellenbee +ellena +ellebrecht +elldrege +ellanson +elko +elkayam +eliszewski +eliseo +elis +elion +elhosni +elhassan +elhaj +elhaddad +elgen +elgas +elgar +elg +elftman +elfering +elewa +eleveld +elefritz +elbogen +elbertson +elberson +elbahtity +elahi +ekstrum +eklov +ekis +ejide +eissinger +eirls +einfeldt +eilts +eilders +eilbert +eilbeck +eikmeier +eifler +eiesland +eichstadt +eichenmiller +eichenauer +eichelmann +ehr +ehorn +ehnis +ehmen +ehleiter +ehinger +ehiginator +ehigiator +egvirre +egure +eguizabal +ego +egidio +eggenberg +eggart +eget +egertson +egbe +efrati +eflin +eerkes +ee +edwads +edster +edralin +edmerson +edmeier +edleston +edlao +edith +edis +edeline +edeker +economus +economides +ecoffey +eckrote +eckmeyer +eckle +ecklar +eckis +echemendia +echavez +echaure +ebrani +ebo +ebilane +ebesugawa +eberting +ebersol +eberline +eberl +ebenstein +eben +ebbesen +ebach +easom +easlick +easker +easey +easdon +earman +earll +earlgy +earenfight +earehart +ealley +ealick +eagy +eafford +dziurawiec +dzierzanowski +dziegielewski +dziduch +dziadek +dzama +dyser +dys +dyreson +dymke +dyen +dwyar +dwornik +dwellingham +duxbury +duwhite +duverney +duvel +dutschmann +dutel +dute +dusak +durun +dursch +durrwachter +durousseau +durol +durig +durett +duresky +durelli +duree +dural +duraku +dupouy +duplin +duplesis +duplaga +dupaty +duonola +dunzelman +dunten +dunt +dunster +dunnahoo +dunmead +dunks +dunkentell +dunemn +duncker +dunckel +dunahoo +dummitt +dumez +dumag +dulberg +dulatre +dukhovny +dukeshire +dukeshier +duitscher +duitch +duh +dugmore +dughi +duffus +duffany +dufer +duesenberg +duerkson +duerkop +duenke +duel +dudleson +dudik +duderstadt +dudack +duchow +duchesney +duchatellier +ducceschi +ducayne +ducay +ducatelli +dubonnet +duberstein +dubej +dubeck +dubeau +dubbin +duban +duball +duartes +dsaachs +dryman +drybread +drumwright +drumheiser +drumgole +drullard +drue +drude +druckhammer +dru +drought +drossos +drossman +droski +drong +drones +dronen +droegmiller +drock +drisdelle +drinkall +drimmer +driggins +driesel +driere +drewski +dreps +dreka +dreith +dregrich +dreggs +drawy +drawec +dravland +drape +dramis +drainer +dragun +dragt +dragotta +dragaj +drafton +drafall +drader +draa +dozois +dozar +doyan +doxon +dowsett +dovenmuehler +douyon +douvier +douvia +douthart +doussan +dourado +doulani +douillet +dougharity +dougall +douet +dou +dotto +dottery +dotstry +doto +dotie +doswell +doskocil +doseck +dorweiler +dorvillier +dorvee +dortilla +dorsainvil +dorrian +dorpinghaus +dorph +dorosan +dornseif +dornhelm +dornellas +dorne +dornbos +dormanen +dormane +doriean +dorer +dorcent +dorat +dopf +dootson +doornbos +dooney +donten +dontas +donota +donohve +donning +donnellon +donne +donmore +donkor +donkervoet +donhoe +dongo +donelon +donchatz +donawa +donar +domnick +domkowski +domio +dominis +dominiquez +dominicus +dominico +domingus +domianus +domas +dolven +dolliver +doljac +doliveira +dolhon +dolgas +dolfay +dolcetto +dokuchitz +doino +doiel +doffing +doerflinger +doepner +doelling +dodich +doderer +dockray +dockett +docker +docimo +dobre +dobrasz +dobmeier +dobesh +dobberfuhl +dobb +dmitriev +dlobik +dlabaj +djuric +dizadare +divento +divan +diulio +ditti +dittbrenner +ditta +ditolla +ditchfield +distilo +distance +disponette +dispirito +dishinger +discon +disarufino +disabato +diruzzo +dirose +dirollo +dirado +dippery +dionisopoulos +diones +dinunzio +dinucci +dinovo +dinovi +dinola +dinho +dings +dinglasan +dingel +dinco +dimperio +dimoulakis +dimopoulos +dimmack +dimling +dimitriou +dimes +dilthey +dilox +dillworth +dillmore +dilligard +dilleshaw +dilgard +dilda +dilcher +dilchand +dikkers +diket +dikens +digrazia +digness +digiorgi +digiambattist +digesare +difiora +diffendal +diewold +dietsche +diestel +diesen +dien +diemoz +dielman +diegidio +diedricks +diebol +didlake +didamo +dickun +dickstein +dickirson +dickins +dicioccio +diciano +dichristopher +dicaro +dicara +dibrino +dibenedict +diamico +diak +diachenko +dhosane +dezell +dezayas +deyette +deyarmond +deyarmin +dewyer +dewulf +dewit +dewinne +dewaratanawan +devreese +devitto +devincenzi +devick +devey +devenecia +devel +deuschle +deuschel +deuman +deuermeyer +detz +deturenne +dettra +dettore +dettmering +dettmann +detterich +detorres +detlefs +detjen +detillier +dethomasis +detering +detar +desutter +destime +destephano +desrocher +desquare +desporte +desparrois +desort +desormo +desorbo +desolier +desmarias +desloge +deslaurier +desjardiws +desiyatnikov +desisles +desilvo +desiato +deshazior +desforges +deserres +deschomp +deschino +deschambeault +desautelle +desantigo +desan +deruso +derubeis +derriso +derricott +derrer +deroos +deroko +deroin +deroest +derobles +dernier +dermo +derkach +derizzio +deritis +derion +deriggi +dergurahian +dereu +derer +derenzis +derenthal +derensis +derendal +derenberger +deremiah +deraveniere +deramo +deralph +depsky +deprizio +deprince +deprez +depratt +depottey +depippo +depinho +depietro +depetris +deperte +depena +depaulis +depasse +depace +deonarian +deodato +denski +densieski +denoyelles +denofrio +denni +dennert +denna +deniken +denier +denice +denhartog +dench +dence +denburger +denafo +demyers +demulling +demuizon +demosthenes +demoney +demonett +demmon +demich +demian +demetris +demetree +demeris +demchok +dembosky +dembinski +dember +demauri +dematos +demasters +demarrais +demarini +demarc +demara +delvin +delveechio +delusia +deluney +deluccia +delre +delpiano +delosanglel +delosangeles +delon +delnegro +dellos +dellon +delling +dellibovi +dellasciucca +dellasanta +dellapina +dellajacono +dellagatta +dellaca +deliso +delinois +delilli +delilla +deliberato +delhomme +delguercio +delger +delgadilo +delfi +delfelder +deley +delevik +delettre +delessio +deleonardo +delellis +delehoy +delegeane +deldeo +delcine +delbusto +delbrune +delbrocco +delbo +delasko +delashaw +delasancha +delaremore +delaplane +delapenha +delanoche +delalla +delaguila +delaglio +dekuyper +dekort +dekorne +deklerk +dekine +dejoode +dejes +dejarme +dejager +deja +deischer +deir +deighton +deidrick +deida +deible +dehrer +dehombre +dehler +dehghani +dehan +dehaemers +degunya +deguise +degrella +degrazio +degrandpre +degori +degolyer +deglopper +deglanville +degado +defrates +defrancis +defranceschi +defouw +defiguero +defiglio +defide +defaria +deeters +dedominicis +dedo +dedier +dedek +deculus +decroo +decree +decourley +decomo +declouette +declet +declark +deckelman +dechart +dechamplain +decasanova +decardo +decardenas +decann +decaneo +debrita +debrie +debraga +debnar +debiew +debes +debenham +debello +debarba +deback +dearstyne +dearco +deanne +deanhardt +deamer +deaguero +daylong +daya +dawber +dawahoya +davydov +davtyan +davos +davirro +davidek +davide +davers +davensizer +davel +davda +dauzart +daurizio +dauila +daughetee +dauge +daufeldt +daudier +daubenmire +daty +datu +datte +dastoli +daste +dasso +daskam +dasinger +dasalia +daryanl +darvile +darsi +darsch +darrup +darnel +darm +darjean +dargenio +darey +dardashti +dardagnac +darbro +darbeau +daramola +daquip +dapvaala +danza +dantoni +dantes +danoski +danns +dannecker +danfield +danella +danczak +dancoes +damphousse +damoth +damoro +dammrich +dammad +damis +damerell +dambrozio +dama +daltorio +dalponte +dalomba +dalmida +dalmau +dallen +dalla +dalitz +dalio +dalhart +daleus +dalene +dalee +dalbeck +dalaq +dair +daimaru +daill +daichendt +dahood +dahlstedt +dahley +dahler +dagnone +dagnon +dagner +daggy +daer +dae +dadds +daddea +daddabbo +dad +dacres +dachs +dachelet +daber +czyrnik +czwakiel +czupryna +czubia +czosek +czernovski +czerno +czernik +czerniak +czekaj +czarniecki +cyler +cychosz +cuzzo +cuva +cutri +cutone +cutia +cutburth +cusworth +custa +cusmano +cushway +cushinberry +cusher +cushen +cushard +cusatis +curzi +curylo +curriere +currans +curra +curpupoz +curls +curleyhair +curella +cureau +curameng +cupe +cunningan +cunnane +cummisky +cummer +cumley +cumblidge +culotti +cullin +culajay +cujas +cuez +cuddihee +cudan +cuchiara +cuccinello +cucchiaro +cuartas +cuaresma +cuadro +csensich +cruthirds +cruthers +crutchev +crutch +crummedyo +crumlish +cruiz +cruey +cruel +croxford +croxen +crowin +croutch +croushorn +crotwell +crother +croslen +crookston +cronholm +cronauer +cromeens +crogier +croffie +crocitto +critzman +criton +critchelow +cristofaro +cristello +cristelli +crissinger +crispo +criqui +crickenberger +cressell +cresencio +creglow +creggett +creenan +creeley +credo +credille +crease +crawn +cravenho +cravatta +cration +crantz +cragar +cragan +cracolici +cracknell +craawford +craan +cozadd +coyier +cowser +cowns +cowder +covotta +covitt +covil +covarruvia +covarrubio +covarrubia +covar +cova +coutino +cousey +courtoy +courtad +couron +courneya +courie +couret +courchine +countis +counceller +cottillion +cottengim +cotroneo +cotreau +cotheran +cotey +coteat +cotant +coswell +costenive +costellowo +costeira +costanzi +cossaboon +cossaboom +cosimini +cosier +cosca +cosano +corvelli +corti +cortesi +corsilles +corsey +corseri +corron +corridoni +corrett +correo +corren +correau +corraro +corporon +corporal +corpeno +corolla +corolis +cornes +cornelson +cornea +cornacchio +cormican +cormia +coriz +coric +coriaty +coriano +corderman +cordel +corde +cordasco +corburn +corallo +coradi +coponen +coples +copier +copa +coopey +coonley +coomey +coolbrith +coolbeth +coolahan +cookey +coogen +cooey +cooch +conze +conzalez +contreros +contreres +contras +contraras +contopoulos +contofalsky +contino +consoli +consigli +conoly +connyer +conninghan +connette +connerty +connarton +conlans +conkrite +confrey +confair +coneys +conelly +conejo +condreay +condino +condell +condelario +concini +concilio +concho +conces +concepion +conceicao +conable +compres +compiseno +compeau +compean +comparoni +companie +compagna +comoletti +commes +comment +comeauy +colyott +columbres +colsch +colpaert +colpack +colorina +colopy +colonnese +colona +colomy +colombe +colomba +colmer +colly +collozo +collova +collora +collmeyer +collaco +colian +colglazier +colehour +colebrook +coldsmith +colden +colato +colasanti +colasamte +colarossi +colander +colaizzo +colaiacovo +coladonato +colacone +colabrese +cokins +cohoe +coho +cohlmia +cohagan +cogen +cofrancesco +cofran +codey +codeluppi +cocran +cocozza +cocoran +cocomazzi +cockrin +cockreham +cocking +cochis +cocherell +coccoli +cobio +cobane +coatley +coatie +coant +coaker +coachys +cmiel +clozza +cloughly +clothey +closovschi +closey +cloman +cloffi +cloepfil +clites +clinker +cleverly +cleve +clesen +clery +clerf +clemson +clemo +clemmon +clemmo +clemmey +cleark +clayter +clavey +clavelle +clausel +claud +claucherty +claton +clarson +clarendon +clarbour +clar +clap +clanin +clan +claman +clam +claes +civitello +civcci +civatte +civale +ciucci +cito +cisneroz +cislo +cisewski +cirioni +cirilli +cipullo +cippina +cipolone +cipolloni +cioni +cintra +cinkosky +cinalli +cimmiyotti +cimeno +cilva +cills +ciliento +cilibrasi +cilfone +ciesiolka +ciersezwski +cierpke +cierley +cieloha +cicio +cichosz +cichonski +cicconi +cibulskas +ciaramitaro +ciano +cianciotta +ciampanella +cialella +ciaccia +chwieroth +chwalek +chvilicek +chuyangher +churner +churchville +chuppa +chupik +chukri +chuh +chudzinski +chudzik +chudej +chrones +chroman +christoffer +christmau +christle +christaldi +christal +chrispen +chriscoe +chown +chowen +chowanec +chounlapane +choulnard +chott +chopelas +chomicki +chomali +choen +chodorov +chmelik +chludzinski +chivalette +chiv +chiumento +chittom +chisnall +chischilly +chisari +chirdon +chirasello +chipp +chiotti +chionchio +chioma +chinweze +chinskey +chinnis +chinni +chindlund +chimeno +chilinskas +childes +chikko +chihak +chiffriller +chieves +chieng +chiavaroli +chiara +chiapetto +chiaminto +chhor +chhon +chheng +chhabra +cheyney +chey +chevres +chetelat +chet +chestand +chessor +chesmore +chesick +chesanek +cherwinski +chervin +cherven +cherrie +chernick +chernay +cherchio +cheon +chenevey +chenet +chenauls +chenaille +chemin +chemell +chegwidden +cheffer +chefalo +chebret +chebahtah +cheas +chaven +chavayda +chautin +chauhdrey +chauffe +chaudet +chatterson +chatriand +chaton +chastant +chass +chasnoff +chars +charnoski +charleton +charle +charisse +charif +charfauros +chareunsri +chareunrath +charbonnel +chappan +chaples +chaplean +chapko +chaobal +chanthaumlsa +chantha +chanofsky +chanel +chandsawangbh +chandronnait +chandrasekhar +chandrasekara +chandier +chanchuan +chananie +chanady +champy +champany +chamley +chamers +chamble +chamberlian +chalow +chaloner +chalita +chalaban +chajon +chais +chaim +chaille +chaidy +chagollan +chafe +chadsey +chaderton +chabotte +cezil +cersey +cerritelli +ceronsky +ceroni +cernansky +cerenzia +cereghino +cerdan +cerchia +cerbantes +cerao +ceranski +centrone +centorino +censky +ceman +cely +celuch +cellupica +cellio +celani +cegla +cedars +ceasor +cearlock +cazzell +cazeault +caza +cavezon +cavalli +cavaleri +cavaco +cautillo +cauthorne +caulley +caughran +cauchon +catucci +cattladge +cattabriga +catillo +cathers +catenaccio +catena +catani +catalli +catacun +casumpang +casuat +castrovinci +castronova +castoral +castiola +castin +castillero +castillejo +castera +castellanoz +castellaneta +castelan +castanio +castanado +castagnier +cassis +cassion +cassello +casseday +cassase +cassarubias +cassard +cassaday +caspary +caspar +casoria +casilles +casile +casida +cashing +casgrove +caseman +caselton +casello +caselden +cascia +casario +casareno +casarella +casamayor +casaliggi +casalenda +casagranda +casabona +carza +caryk +carvett +carthew +carther +carthens +cartaya +cartan +carsno +carscallen +carrubba +carroca +carril +carrigg +carridine +carrelli +carraturo +carratura +carras +carransa +carrahan +carpente +carpenito +caroway +carota +caronna +caroline +carnoske +carnohan +carnighan +carnie +carnahiba +carmichel +carmello +carlsley +carlington +carleo +cariveau +caristo +carillion +carilli +caridine +cariaso +cardoni +cardish +cardino +cardinas +cardenos +cardejon +cardeiro +carco +carbal +caravalho +caraher +caradonna +caracso +caracciola +capshaws +caprice +capriccioso +capraro +cappaert +caposole +capitani +capinpin +capiga +capezzuto +capetl +capestany +capels +capellas +caparoula +caparelli +capalongan +capaldo +canu +cantre +cantoral +cantfield +cantabrana +canori +cannuli +canestro +canestrini +canerday +canellas +canella +candon +cancer +canatella +canak +cana +campolongo +campagnone +campagnini +campagne +camon +cammarn +caminita +camidge +cambronne +cambric +cambero +camaron +calzone +calzadilla +calver +calvent +calvelo +calvaruso +calvaresi +calpin +calonsag +calonne +caloca +calligy +callez +calleo +callaro +calixtro +caliguire +caligari +calicut +caler +calderson +caldarone +calchera +calcagino +calaycay +calamarino +calamari +calamare +cakanic +cajune +cajucom +cajero +cainion +cainglit +caiafa +cagey +cafourek +caffarel +cafarella +cafagno +cadoy +cadmen +cader +cademartori +cackett +cacibauda +caci +cacciola +cabrar +cabla +cabiya +cabido +cabeza +cabellon +cabeceira +cabanes +cabag +bzhyan +byther +byro +byrley +byrdsong +bynd +bylund +byant +bverger +buzzelle +buzzanca +buyes +buyak +buvens +buttino +buttimer +buttari +buttaccio +buther +butel +buszak +bustinza +bussom +busskohl +bussink +bussinger +bussert +busselberg +bussani +busl +buskohl +busie +bushie +busenius +buseck +buscarino +busacker +burwick +burtin +burriesci +burreson +burnum +burnet +burneisen +burnaman +burlette +burlando +burki +burker +burkel +burka +burigsay +burhanuddin +burgen +burgbacher +buretta +buress +burdsall +burdis +burdi +burdg +burbano +bur +buquo +buontempo +buonadonna +bunzey +bunyea +buntain +bunkers +bungy +bungart +bunetta +bunes +bundley +bundette +bumm +bumbray +bumba +bumatay +bulwinkle +bultron +bulnes +bullo +bullmore +bullerwell +bullert +bullara +bulland +bulkin +bulgarella +bulacan +bukrim +bukowinski +bujol +buja +buike +buhoveckey +buhite +bugtong +bugler +bugenhagen +bugayong +bugarewicz +bufton +buetti +buess +buerstatte +buergel +buerge +buer +buena +buegler +bueggens +buecher +budzyna +budz +budworth +budesa +buddle +budden +buddemeyer +buckridge +buckreis +buckmiller +bucke +buchser +buchsbaum +buchs +buchna +buchheim +buchberger +bucchin +bucanan +bubbico +buanno +bual +brzycki +brzostowski +bryum +brynga +brynestad +bryar +bruzewicz +bruyn +bruun +brutlag +bruson +bruski +bruse +brusco +bruscino +brunsting +brunskill +brunow +brunnemer +brunderman +brunckhorst +brunback +brumbley +bruh +brugal +bruenderman +bruegman +brucie +brozyna +brozell +brownsworth +brownsword +brownsberger +browley +brous +brounson +broumley +brostoff +brossmann +brosig +broschinsky +broomell +brookshier +brooklyn +bronikowski +brondyke +bromberek +brombach +brokins +broking +brojakowski +broich +brogren +brogglin +brodhurst +brodhag +brodey +brocklebank +brockie +brockell +brochure +brochhausen +broccolo +brixius +brittsan +brits +britnell +brisley +brisbone +briola +brintnall +bringman +bringas +bringantino +brinckerhoff +briguglio +briggerman +brigg +brigantino +briehl +brieger +bridson +bridjmohan +bridgford +bridget +bridgens +bridendolph +briden +briddick +bricknell +brickles +brichetto +briare +brez +brevitz +brevil +breutzmann +breuning +bretl +brethour +bretana +bresolin +breslawski +brentnall +brentano +brensnan +brensinger +brensel +brenowitz +brennenstuhl +brengle +brendlinger +brenda +brend +brence +brenaman +bremseth +bremme +breman +brelje +breitung +breitenfeldt +breitenbucher +breitenberg +breines +breiland +brehony +bregon +brege +bregantini +brefka +breeman +breehl +bredy +bredow +bredice +bredahl +brechbill +brearley +brdar +brazzi +brazler +braye +braver +bravender +bravard +braunsdorf +braunschweige +braught +brauchla +bratek +braskey +brasket +branske +branot +branine +braniff +brangan +branen +branecki +brandsrud +brandman +brandeland +brande +brandauer +brancazio +brancanto +branaugh +bramucci +brakstad +brais +braim +braig +brah +brage +bradtke +bradrick +bradon +bradicich +brackelsberg +brachman +brachle +bracetty +bracaloni +bozzell +bozovich +bozinovich +boyenga +bowring +bowlet +bowgren +bowersmith +bowels +bowcutt +bovio +boveja +bovain +boutchyard +bousson +bousqute +bousley +bourns +bourlier +bourgois +bourff +bourek +bourdeaux +bourdages +bourbonnais +boundy +bouliouris +boudrieau +boudin +bouchaert +botwin +bottomly +bottolfson +bottolene +bottiggi +botterbusch +botros +botras +botdorf +bostelman +bossenbroek +bossardet +bosowski +boschult +borycz +borwig +boruvka +bortignon +borsa +borromeo +borrolli +borries +borreta +borremans +borras +borr +borozny +borowiec +boronat +bornman +bormes +borlin +borguez +borgstede +borgese +borgert +borgers +borgella +borell +bordon +bordi +bordges +bordenkircher +borde +borbon +boratko +boque +boppre +boosalis +boorom +bookter +bookmiller +bookamer +bonzo +bonyai +bonugli +bonsu +bonsey +bonsell +bonsee +bonow +bonno +bonnlander +bonnin +bonnenfant +bonjorno +boniol +bongo +bonetto +bonepart +bondre +bonaventura +bonatti +bonapart +bonagurio +bonaguidi +bomzer +bompane +bomilla +bomia +bombino +bomaster +bollens +bollbach +bollaert +bolins +bolinder +bolig +bolian +bolfa +bolevice +boldwyn +bolduan +boldizsar +bolde +bokal +boitel +boin +boillot +boid +bohonik +bohnker +bohney +bohlsen +bohlman +bohlken +bogut +bognuda +bogguess +bogg +bofinger +boero +boerm +boeri +boera +boelk +boehnke +boege +bodyfelt +bodon +bodison +bodfish +boderick +bodenhagen +bodelson +bodary +bocskor +bockrath +bocklund +bockhorn +bockenstedt +bockelmann +bochicchio +boches +bochek +bocchieri +boccard +bobsin +bobrosky +bobowiec +boblak +bobet +boane +boamah +blyze +blute +blush +blunkall +blundo +blumkin +bluming +blumenschein +blumenkrantz +blumenberg +bluel +bloye +blott +blotsky +blossomgame +blosfield +bloomstrom +bloomstrand +bloomsburg +blonsky +blonigan +blomstrand +bloes +bloemker +bloedel +blochberger +blizard +blinebry +blindt +blihovde +blide +blicker +bleything +blevans +blessett +blesofsky +bleiler +bleichner +bleicher +bleeck +blee +blazon +blazing +blazich +blaydon +blaxland +blauw +blauman +blaszczyk +blasl +blashak +blasenhauer +blanscet +blanquet +blanquart +blannon +blanko +blankenbecler +blanga +blander +blakstad +blailock +blafield +blaeser +blaese +blady +bladt +blacock +blackwall +blackmoore +blackmar +blackington +blackbird +blacio +blachowski +bjornstrom +bjorn +bjerknes +bjerken +bjella +bizzard +bivans +bitzenhofer +bitar +bitah +bissol +bissel +bissada +bispham +bisikirski +bischel +biscari +bisanz +birthwright +birsner +bironas +birner +birnberg +birkmaier +birkenhagen +birely +birdon +bionda +binn +bininger +binet +binderup +binam +billus +billue +billotti +billinsley +billingsby +billigmeier +billiet +billiar +billesbach +bilchak +bilansky +bijan +bihler +bihl +bigusiak +bigony +bignell +biggard +biewald +biever +bietsch +biesenthal +biesecker +bierut +bierstedt +bierschbach +biersack +bierod +bierl +bierkortte +biener +bielser +bielke +bielefield +biedekapp +bidstrup +bidell +biddlecome +bicknase +bicking +bichoupan +bichoff +bibiloni +biastock +biasotti +bianchin +bhullar +bhaskar +bhamaraniyama +bhairo +bezenek +beyser +beyke +beyea +beydoun +beyale +beyal +bevevino +beuttel +beutnagel +beuthin +beuse +beurskens +beukema +beukelman +beuerle +beuchler +betzner +betzler +betzig +bettley +betry +betit +bethurem +betha +betenson +betak +bestwick +bestine +beste +bessone +bessinger +bessellieu +besong +besner +beskom +beshore +beser +besen +beseke +besares +besant +besanson +besancon +berzunza +berulie +bertrum +bertot +berto +bertman +berther +berth +bertella +bertao +bershadsky +bersaw +berrospe +berrocal +berray +bernstock +bernotas +bernos +bernmen +bernitsky +bernieri +berni +bernheim +berneri +bernell +bernbeck +bernaudo +bernau +bernatchez +bernarducci +bernardon +bernand +bernacki +berlingo +berley +berlandy +berlacher +berkovitch +berkenbile +berkbigler +berishaj +bering +bergstedt +bergsman +bergouignan +bergold +bergmeyer +bergfalk +bergenty +bergenstock +bergene +bergamine +bergami +berey +beresik +berentz +berenschot +bereda +berdux +berdar +berdahl +berczy +berchielli +bercher +berceir +berbig +berbereia +benzee +benwarc +benulis +bentzinger +bentrem +benthusen +benston +bennings +bennight +benneth +bennard +bennafield +benkosky +benker +benje +benisek +benintendi +bening +beninati +benimadho +benezra +beneuento +bendu +bending +bendell +benckendorf +benbenek +benanti +benamati +benafield +benach +benac +bembi +belwood +belvees +beltramo +belstad +belski +belschner +belscher +belovs +belousson +belous +belony +belonger +belluz +bellmore +bellitti +belliston +bellingtier +bellinder +bellhouse +bellflowers +bellen +bellehumeur +bellefontaine +bellar +bellantone +bellair +bellace +belken +belke +beliz +belina +belieu +belidor +beliard +belhumeur +belfy +belfort +belfi +belfast +belezos +belchior +belarmino +belanich +belancer +bejil +bejger +bejerano +beja +beiswenger +beissel +beilstein +beilinson +beilfuss +beile +behner +behizadeh +behimer +beherns +behanan +behal +begun +beguhl +begonia +begolli +begnoche +begen +beese +beerle +beemon +beelar +beedoo +beedles +beedham +beeckman +beebout +bedre +bedocs +bednarowicz +bedlion +bedillion +beder +bedenfield +bedee +bedaw +bedatsky +bedar +beckor +becklin +beckes +beckelheimer +beaureguard +beauparlant +beau +beattle +beatson +beath +beards +bearded +beandoin +beady +beachman +beachell +bayus +baysden +bayouth +bayon +bayn +bayani +baxtor +bawks +bawer +bawcombe +baves +bautiste +baute +baurer +baumohl +baumli +baumkirchner +baumiester +baumgartel +baumgarn +baumfalk +bauchspies +bauce +batzri +battisto +batter +battenhouse +batteiger +batrich +batra +batlle +batlis +batliner +batkin +batchellor +bastick +bastardi +bassiti +basore +basone +baskow +basini +basila +bashline +baseley +bascas +barvosa +barvick +barus +bartuska +bartula +bartosik +bartosch +bartoli +bartmes +bartlette +bartkus +bartkiewicz +bartholomeu +barte +bartch +barsegyan +barschdoor +barscewski +barsamian +barryman +barrowman +barrois +barrish +barriault +barrete +barree +barran +baronne +barninger +barners +barnebey +barnak +barnacle +barlup +barlock +barlau +barlak +barken +barkema +barjenbruch +barillo +barill +barientos +baria +bargstadt +bargmann +bargeron +baresi +barera +barends +bardos +bardoner +bardill +bardell +barck +barcik +barchus +barchacky +barberr +barbaza +barbarito +barbare +barbalich +barbadillo +baranga +barahana +baradi +barad +barach +barabin +baquero +banwarth +bansmer +banse +banowski +bannett +bankos +bangura +banerji +banek +bandyk +bandura +bandasak +bandarra +bancourt +banco +bancks +banbury +bamforth +bambas +bambace +balzotti +balzarine +balza +balwinski +baltruweit +baltazor +balsis +baloy +balow +balock +balo +balm +balluch +ballowe +ballmann +ballez +balletto +ballesterous +ballena +ballejos +ballar +ballan +ballagas +balitas +balish +baligod +balich +baldwyn +balduzzi +baldos +balderree +baldearena +balda +balcos +balasko +balangatan +balak +baladejo +bakalars +bajko +bajek +baitner +baison +bairo +baiotto +bainey +bailleu +bailado +baibak +bahri +bahde +bahadue +bagwill +bagu +bagron +bagnaschi +baffa +baff +baeskens +baerg +baenziger +baena +baell +badzinski +badruddin +badlam +badey +badertscher +badenoch +badagliacca +bacone +bacman +backhuus +bacino +bachmeyer +bachinski +bachas +bachan +bacerra +bacayo +babson +bablak +babinski +babilon +babikian +babicz +babey +babbish +baarts +baack +azznara +azuma +azor +azatyan +azapinto +azahar +ayyad +aytes +aysien +aymar +aylock +ayhens +ayele +aydin +axtman +axman +awyie +aw +avona +avner +avison +avenia +aveles +avarbuch +avancena +autullo +autovino +autobee +auther +auter +austino +austine +auster +auslam +aurrichio +aun +auls +aulder +aufiero +audrey +audibert +audelhuk +auckley +auces +aubel +auala +atzinger +atzhorn +attwell +attles +attilio +attia +atthowe +atteburg +atmore +atma +atleh +atkisson +athy +atherholt +athanasiou +atengco +atamanczyk +astillero +astafan +assum +assis +assing +assenmacher +assalone +assael +asrari +aspri +aspley +asperheim +aspell +asnicar +asner +askiew +askia +aske +ask +ashly +ashkettle +ashing +ashbourne +ashbach +ashaf +asenjo +aseng +aseltine +ascol +aschbacher +asamoah +arzt +arzabala +arview +arvez +arvanitis +arva +arunachalam +arton +arties +artibee +arthun +artez +arters +arsham +arseneault +arroyd +arroyano +arrospide +arrocho +arrisola +arrindel +arrigone +arrellin +arredla +arrand +arrance +arquelles +arosemena +arollo +aroca +arntzen +arnsberger +arnitz +arnerich +arndell +arnaudet +arnao +arnaldo +army +armout +armold +armocida +armlin +armiso +armesto +armen +armada +arkontaky +arking +aristizabal +arisa +arildsen +arichabala +ariail +argulewicz +argudin +argro +argie +argenziano +argenti +arendash +arendall +arendale +arelleano +arehano +ards +ardeneaux +ardelean +ardaly +arciola +arcieri +archiopoli +archdale +archbell +arbon +arbolida +arbetman +arbertha +arau +arashiro +araneo +arancibia +araldi +aragones +aragao +arabajian +aquas +apthorpe +apshire +aprill +aprigliano +applonie +appl +appia +appana +aponta +aplington +apley +apker +apelian +apadaca +aono +ao +anzideo +anway +antronica +antosh +antonovich +antoniak +antolak +antila +antignani +anthes +antao +ansoategui +ansloan +anreozzi +anos +anolick +anoe +annuzzi +anning +annarino +annal +annable +annabel +anitok +aninion +animashaun +anidi +angocicco +angland +angiolelli +angileri +angilello +angier +angermeier +angelozzi +angelou +angellotti +angelillo +angelica +angalich +aney +anewalt +anetsberger +anesi +aneshansley +anene +anecelle +andrzejczyk +andrzejczak +andruszkiewic +andrson +androde +andriopulos +andrino +andrich +andreola +andregg +andreessen +andrango +andradez +andrades +andrachak +andoh +andina +anderst +anderholm +andere +andalora +anciso +ancic +ancel +ancar +ancalade +anawaty +anawalt +amys +amstrong +amspaugh +amous +amott +amoros +amormino +amoriello +amorello +amoe +amodt +ammonds +ammirata +ammer +amlin +amith +amistadi +amill +amigo +amerio +american +amentler +amemiya +amela +amejorado +amedro +amedeo +amburgy +ambroziak +ambrister +amboree +amboise +ambert +ambagis +amauty +amat +amas +amarian +amara +amalong +alwin +alwazan +alvirez +alvero +alverado +alty +altstatt +altsisi +altmark +altimus +altamiruno +alson +alsing +alsaqri +alrod +alquesta +alpis +alpheaus +alperin +aloy +alosta +aloan +alnoor +almsteadt +almstead +almos +almgren +almarza +almajhoub +allyne +allsbrooks +allon +allinger +alliman +alliance +allgire +allevato +alleshouse +alleruzzo +allerton +allder +allcock +allbert +allanson +allabaugh +alkins +alkema +alkana +aljemal +alisauskas +alimo +alimento +alie +alicer +alias +alhusseini +alhameed +alhambra +alhaddad +alfredo +alfiero +aleyandrez +alexidor +alexandropoul +alexanders +alexakis +alesse +alesna +alepin +alejandrez +aldworth +aldrow +aldrige +aldonza +alcine +alcantas +albu +albrough +albor +albe +albarracin +albarazi +alatosse +alarcone +alanko +aland +alamia +alameida +alambar +alai +akwei +aksoy +ako +akley +akinrefon +akimseu +akhavan +akhand +akery +akawanzie +akapo +akamiro +akal +ajoku +ajani +aiuto +aiudi +airth +aipperspach +aiporlani +aipopo +aiola +aini +ailsworth +aills +ailiff +aievoli +aid +aiava +ahyet +ahrenholz +ahnell +ahlo +ahlfield +ahlemeyer +ahimud +ahia +ahhee +ahaus +ahalt +agustino +agustine +agurs +agumga +aguele +agresto +agreda +agpaoa +agosti +agoro +agonoy +agoff +aggers +agemy +ageboi +agbisit +afurong +afshar +affronti +afflick +affeltranger +afable +aeillo +adule +adrion +adolphe +adolfson +adner +adloff +adling +adickes +adib +adelsperger +adelmund +adelizzi +addeo +adamsonis +adamsen +adamowski +adamos +adamec +adalja +acosto +acors +acorda +acock +acly +ackah +achin +aceveda +acerra +acerno +aceituno +acee +accala +acal +abusufait +abugn +abuel +absalon +abriola +abrey +abrell +abramovitz +abramoff +abramian +abrahamian +abousaleh +aboshihata +abolafia +ableman +abkemeier +abington +abina +abigantus +abide +abeta +abercombie +abdulmuniem +abdulaziz +abdou +abdelmuti +abdelaziz +abdelal +abbington +abbatiello +abajian +abaja +aarsvold +aarhus +aardema +aarant +aanderud +aalund +aalderink diff --git a/splunk_eventgen/samples/dist.female.first b/splunk_eventgen/samples/dist.female.first new file mode 100644 index 00000000..30a4ebb0 --- /dev/null +++ b/splunk_eventgen/samples/dist.female.first @@ -0,0 +1,4275 @@ +mary +patricia +linda +barbara +elizabeth +jennifer +maria +susan +margaret +dorothy +lisa +nancy +karen +betty +helen +sandra +donna +carol +ruth +sharon +michelle +laura +sarah +kimberly +deborah +jessica +shirley +cynthia +angela +melissa +brenda +amy +anna +rebecca +virginia +kathleen +pamela +martha +debra +amanda +stephanie +carolyn +christine +marie +janet +catherine +frances +ann +joyce +diane +alice +julie +heather +teresa +doris +gloria +evelyn +jean +cheryl +mildred +katherine +joan +ashley +judith +rose +janice +kelly +nicole +judy +christina +kathy +theresa +beverly +denise +tammy +irene +jane +lori +rachel +marilyn +andrea +kathryn +louise +sara +anne +jacqueline +wanda +bonnie +julia +ruby +lois +tina +phyllis +norma +paula +diana +annie +lillian +emily +robin +peggy +crystal +gladys +rita +dawn +connie +florence +tracy +edna +tiffany +carmen +rosa +cindy +grace +wendy +victoria +edith +kim +sherry +sylvia +josephine +thelma +shannon +sheila +ethel +ellen +elaine +marjorie +carrie +charlotte +monica +esther +pauline +emma +juanita +anita +rhonda +hazel +amber +eva +debbie +april +leslie +clara +lucille +jamie +joanne +eleanor +valerie +danielle +megan +alicia +suzanne +michele +gail +bertha +darlene +veronica +jill +erin +geraldine +lauren +cathy +joann +lorraine +lynn +sally +regina +erica +beatrice +dolores +bernice +audrey +yvonne +annette +june +samantha +marion +dana +stacy +ana +renee +ida +vivian +roberta +holly +brittany +melanie +loretta +yolanda +jeanette +laurie +katie +kristen +vanessa +alma +sue +elsie +beth +jeanne +vicki +carla +tara +rosemary +eileen +terri +gertrude +lucy +tonya +ella +stacey +wilma +gina +kristin +jessie +natalie +agnes +vera +willie +charlene +bessie +delores +melinda +pearl +arlene +maureen +colleen +allison +tamara +joy +georgia +constance +lillie +claudia +jackie +marcia +tanya +nellie +minnie +marlene +heidi +glenda +lydia +viola +courtney +marian +stella +caroline +dora +jo +vickie +mattie +terry +maxine +irma +mabel +marsha +myrtle +lena +christy +deanna +patsy +hilda +gwendolyn +jennie +nora +margie +nina +cassandra +leah +penny +kay +priscilla +naomi +carole +brandy +olga +billie +dianne +tracey +leona +jenny +felicia +sonia +miriam +velma +becky +bobbie +violet +kristina +toni +misty +mae +shelly +daisy +ramona +sherri +erika +katrina +claire +lindsey +lindsay +geneva +guadalupe +belinda +margarita +sheryl +cora +faye +ada +natasha +sabrina +isabel +marguerite +hattie +harriet +molly +cecilia +kristi +brandi +blanche +sandy +rosie +joanna +iris +eunice +angie +inez +lynda +madeline +amelia +alberta +genevieve +monique +jodi +janie +maggie +kayla +sonya +jan +lee +kristine +candace +fannie +maryann +opal +alison +yvette +melody +luz +susie +olivia +flora +shelley +kristy +mamie +lula +lola +verna +beulah +antoinette +candice +juana +jeannette +pam +kelli +hannah +whitney +bridget +karla +celia +latoya +patty +shelia +gayle +della +vicky +lynne +sheri +marianne +kara +jacquelyn +erma +blanca +myra +leticia +pat +krista +roxanne +angelica +johnnie +robyn +francis +adrienne +rosalie +alexandra +brooke +bethany +sadie +bernadette +traci +jody +kendra +jasmine +nichole +rachael +chelsea +mable +ernestine +muriel +marcella +elena +krystal +angelina +nadine +kari +estelle +dianna +paulette +lora +mona +doreen +rosemarie +angel +desiree +antonia +hope +ginger +janis +betsy +christie +freda +mercedes +meredith +lynette +teri +cristina +eula +leigh +meghan +sophia +eloise +rochelle +gretchen +cecelia +raquel +henrietta +alyssa +jana +kelley +gwen +kerry +jenna +tricia +laverne +olive +alexis +tasha +silvia +elvira +casey +delia +sophie +kate +patti +lorena +kellie +sonja +lila +lana +darla +may +mindy +essie +mandy +lorene +elsa +josefina +jeannie +miranda +dixie +lucia +marta +faith +lela +johanna +shari +camille +tami +shawna +elisa +ebony +melba +ora +nettie +tabitha +ollie +jaime +winifred +kristie +marina +alisha +aimee +rena +myrna +marla +tammie +latasha +bonita +patrice +ronda +sherrie +addie +francine +deloris +stacie +adriana +cheri +shelby +abigail +celeste +jewel +cara +adele +rebekah +lucinda +dorthy +chris +effie +trina +reba +shawn +sallie +aurora +lenora +etta +lottie +kerri +trisha +nikki +estella +francisca +josie +tracie +marissa +karin +brittney +janelle +lourdes +laurel +helene +fern +elva +corinne +kelsey +ina +bettie +elisabeth +aida +caitlin +ingrid +iva +eugenia +christa +goldie +cassie +maude +jenifer +therese +frankie +dena +lorna +janette +latonya +candy +morgan +consuelo +tamika +rosetta +debora +cherie +polly +dina +jewell +fay +jillian +dorothea +nell +trudy +esperanza +patrica +kimberley +shanna +helena +carolina +cleo +stefanie +rosario +ola +janine +mollie +lupe +alisa +lou +maribel +susanne +bette +susana +elise +cecile +isabelle +lesley +jocelyn +paige +joni +rachelle +leola +daphne +alta +ester +petra +graciela +imogene +jolene +keisha +lacey +glenna +gabriela +keri +ursula +lizzie +kirsten +shana +adeline +mayra +jayne +jaclyn +gracie +sondra +carmela +marisa +rosalind +charity +tonia +beatriz +marisol +clarice +jeanine +sheena +angeline +frieda +lily +robbie +shauna +millie +claudette +cathleen +angelia +gabrielle +autumn +katharine +summer +jodie +staci +lea +christi +jimmie +justine +elma +luella +margret +dominique +socorro +rene +martina +margo +mavis +callie +bobbi +maritza +lucile +leanne +jeannine +deana +aileen +lorie +ladonna +willa +manuela +gale +selma +dolly +sybil +abby +lara +dale +ivy +dee +winnie +marcy +luisa +jeri +magdalena +ofelia +meagan +audra +matilda +leila +cornelia +bianca +simone +bettye +randi +virgie +latisha +barbra +georgina +eliza +leann +bridgette +rhoda +haley +adela +nola +bernadine +flossie +ila +greta +ruthie +nelda +minerva +lilly +terrie +letha +hilary +estela +valarie +brianna +rosalyn +earline +catalina +ava +mia +clarissa +lidia +corrine +alexandria +concepcion +tia +sharron +rae +dona +ericka +jami +elnora +chandra +lenore +neva +marylou +melisa +tabatha +serena +avis +allie +sofia +jeanie +odessa +nannie +harriett +loraine +penelope +milagros +emilia +benita +allyson +ashlee +tania +tommie +esmeralda +karina +eve +pearlie +zelma +malinda +noreen +tameka +saundra +hillary +amie +althea +rosalinda +jordan +lilia +alana +gay +clare +alejandra +elinor +michael +lorrie +jerri +darcy +earnestine +carmella +taylor +noemi +marcie +liza +annabelle +louisa +earlene +mallory +carlene +nita +selena +tanisha +katy +julianne +john +lakisha +edwina +maricela +margery +kenya +dollie +roxie +roslyn +kathrine +nanette +charmaine +lavonne +ilene +kris +tammi +suzette +corine +kaye +jerry +merle +chrystal +lina +deanne +lilian +juliana +aline +luann +kasey +maryanne +evangeline +colette +melva +lawanda +yesenia +nadia +madge +kathie +eddie +ophelia +valeria +nona +mitzi +mari +georgette +claudine +fran +alissa +roseann +lakeisha +susanna +reva +deidre +chasity +sheree +carly +james +elvia +alyce +deirdre +gena +briana +araceli +katelyn +rosanne +wendi +tessa +berta +marva +imelda +marietta +marci +leonor +arline +sasha +madelyn +janna +juliette +deena +aurelia +josefa +augusta +liliana +young +christian +lessie +amalia +savannah +anastasia +vilma +natalia +rosella +lynnette +corina +alfreda +leanna +carey +amparo +coleen +tamra +aisha +wilda +karyn +cherry +queen +maura +mai +evangelina +rosanna +hallie +erna +enid +mariana +lacy +juliet +jacklyn +freida +madeleine +mara +hester +cathryn +lelia +casandra +bridgett +angelita +jannie +dionne +annmarie +katina +beryl +phoebe +millicent +katheryn +diann +carissa +maryellen +liz +lauri +helga +gilda +adrian +rhea +marquita +hollie +tisha +tamera +angelique +francesca +britney +kaitlin +lolita +florine +rowena +reyna +twila +fanny +janell +ines +concetta +bertie +alba +brigitte +alyson +vonda +pansy +elba +noelle +letitia +kitty +deann +brandie +louella +leta +felecia +sharlene +lesa +beverley +robert +isabella +herminia +terra +celina +tori +octavia +jade +denice +germaine +sierra +michell +cortney +nelly +doretha +sydney +deidra +monika +lashonda +judi +chelsey +antionette +margot +bobby +adelaide +nan +leeann +elisha +dessie +libby +kathi +gayla +latanya +mina +mellisa +kimberlee +jasmin +renae +zelda +elda +ma +justina +gussie +emilie +camilla +abbie +rocio +kaitlyn +jesse +edythe +ashleigh +selina +lakesha +geri +allene +pamala +michaela +dayna +caryn +rosalia +sun +jacquline +rebeca +marybeth +krystle +iola +dottie +bennie +belle +aubrey +griselda +ernestina +elida +adrianne +demetria +delma +chong +jaqueline +destiny +arleen +virgina +retha +fatima +tillie +eleanore +cari +treva +birdie +wilhelmina +rosalee +maurine +latrice +yong +jena +taryn +elia +debby +maudie +jeanna +delilah +catrina +shonda +hortencia +theodora +teresita +robbin +danette +maryjane +freddie +delphine +brianne +nilda +danna +cindi +bess +iona +hanna +ariel +winona +vida +rosita +marianna +william +racheal +guillermina +eloisa +celestine +caren +malissa +lona +chantel +shellie +marisela +leora +agatha +soledad +migdalia +ivette +christen +athena +janel +chloe +veda +pattie +tessie +tera +marilynn +lucretia +karrie +dinah +daniela +alecia +adelina +vernice +shiela +portia +merry +lashawn +devon +dara +tawana +oma +verda +christin +alene +zella +sandi +rafaela +maya +kira +candida +alvina +suzan +shayla +lyn +lettie +alva +samatha +oralia +matilde +madonna +larissa +vesta +renita +india +delois +shanda +phillis +lorri +erlinda +cruz +cathrine +barb +zoe +isabell +ione +gisela +charlie +valencia +roxanna +mayme +kisha +ellie +mellissa +dorris +dalia +bella +annetta +zoila +reta +reina +lauretta +kylie +christal +pilar +charla +elissa +tiffani +tana +paulina +leota +breanna +jayme +carmel +vernell +tomasa +mandi +dominga +santa +melodie +lura +alexa +tamela +ryan +mirna +kerrie +venus +noel +felicita +cristy +carmelita +berniece +annemarie +tiara +roseanne +missy +cori +roxana +pricilla +kristal +jung +elyse +haydee +aletha +bettina +marge +gillian +filomena +charles +zenaida +harriette +caridad +vada +una +aretha +pearline +marjory +marcela +flor +evette +elouise +alina +trinidad +david +damaris +catharine +carroll +belva +nakia +marlena +luanne +lorine +karon +dorene +danita +brenna +tatiana +sammie +louann +loren +julianna +andria +philomena +lucila +leonora +dovie +romona +mimi +jacquelin +gaye +tonja +misti +joe +gene +chastity +stacia +roxann +micaela +nikita +mei +velda +marlys +johnna +aura +lavern +ivonne +hayley +nicki +majorie +herlinda +george +alpha +yadira +perla +gregoria +daniel +antonette +shelli +mozelle +mariah +joelle +cordelia +josette +chiquita +trista +louis +laquita +georgiana +candi +shanon +lonnie +hildegard +cecil +valentina +stephany +magda +karol +gerry +gabriella +tiana +roma +richelle +ray +princess +oleta +jacque +idella +alaina +suzanna +jovita +blair +tosha +raven +nereida +marlyn +kyla +joseph +delfina +tena +stephenie +sabina +nathalie +marcelle +gertie +darleen +thea +sharonda +shantel +belen +venessa +rosalina +ona +genoveva +corey +clementine +rosalba +renate +renata +mi +ivory +georgianna +floy +dorcas +ariana +tyra +theda +mariam +juli +jesica +donnie +vikki +verla +roselyn +melvina +jannette +ginny +debrah +corrie +asia +violeta +myrtis +latricia +collette +charleen +anissa +viviana +twyla +precious +nedra +latonia +lan +hellen +fabiola +annamarie +adell +sharyn +chantal +niki +maud +lizette +lindy +kia +kesha +jeana +danelle +charline +chanel +carrol +valorie +lia +dortha +cristal +sunny +leone +leilani +gerri +debi +andra +keshia +ima +eulalia +easter +dulce +natividad +linnie +kami +georgie +catina +brook +alda +winnifred +sharla +ruthann +meaghan +magdalene +lissette +adelaida +venita +trena +shirlene +shameka +elizebeth +dian +shanta +mickey +latosha +carlotta +windy +soon +rosina +mariann +leisa +jonnie +dawna +cathie +billy +astrid +sidney +laureen +janeen +holli +fawn +vickey +teressa +shante +rubye +marcelina +chanda +cary +terese +scarlett +marty +marnie +lulu +lisette +jeniffer +elenor +dorinda +donita +carman +bernita +altagracia +aleta +adrianna +zoraida +ronnie +nicola +lyndsey +kendall +janina +chrissy +ami +starla +phylis +phuong +kyra +charisse +blanch +sanjuanita +rona +nanci +marilee +maranda +cory +brigette +sanjuana +marita +kassandra +joycelyn +ira +felipa +chelsie +bonny +mireya +lorenza +kyong +ileana +candelaria +tony +toby +sherie +ok +mark +lucie +leatrice +lakeshia +gerda +edie +bambi +marylin +lavon +hortense +garnet +evie +tressa +shayna +lavina +kyung +jeanetta +sherrill +shara +phyliss +mittie +anabel +alesia +thuy +tawanda +richard +joanie +tiffanie +lashanda +karissa +enriqueta +daria +daniella +corinna +alanna +abbey +roxane +roseanna +magnolia +lida +kyle +joellen +era +coral +carleen +tresa +peggie +novella +nila +maybelle +jenelle +carina +nova +melina +marquerite +margarette +josephina +evonne +devin +cinthia +albina +toya +tawnya +sherita +santos +myriam +lizabeth +lise +keely +jenni +giselle +cheryle +ardith +ardis +alesha +adriane +shaina +linnea +karolyn +hong +florida +felisha +dori +darci +artie +armida +zola +xiomara +vergie +shamika +nena +nannette +maxie +lovie +jeane +jaimie +inge +farrah +elaina +caitlyn +starr +felicitas +cherly +caryl +yolonda +yasmin +teena +prudence +pennie +nydia +mackenzie +orpha +marvel +lizbeth +laurette +jerrie +hermelinda +carolee +tierra +mirian +meta +melony +kori +jennette +jamila +ena +anh +yoshiko +susannah +salina +rhiannon +joleen +cristine +ashton +aracely +tomeka +shalonda +marti +lacie +kala +jada +ilse +hailey +brittani +zona +syble +sherryl +randy +nidia +marlo +kandice +kandi +deb +dean +america +alycia +tommy +ronna +norene +mercy +jose +ingeborg +giovanna +gemma +christel +audry +zora +vita +van +trish +stephaine +shirlee +shanika +melonie +mazie +jazmin +inga +hoa +hettie +geralyn +fonda +estrella +adella +su +sarita +rina +milissa +maribeth +golda +evon +ethelyn +enedina +cherise +chana +velva +tawanna +sade +mirta +li +karie +jacinta +elna +davina +cierra +ashlie +albertha +tanesha +stephani +nelle +mindi +lu +lorinda +larue +florene +demetra +dedra +ciara +chantelle +ashly +suzy +rosalva +noelia +lyda +leatha +krystyna +kristan +karri +darline +darcie +cinda +cheyenne +cherrie +awilda +almeda +rolanda +lanette +jerilyn +gisele +evalyn +cyndi +cleta +carin +zina +zena +velia +tanika +paul +charissa +thomas +talia +margarete +lavonda +kaylee +kathlene +jonna +irena +ilona +idalia +candis +candance +brandee +anitra +alida +sigrid +nicolette +maryjo +linette +hedwig +christiana +cassidy +alexia +tressie +modesta +lupita +lita +gladis +evelia +davida +cherri +cecily +ashely +annabel +agustina +wanita +shirly +rosaura +hulda +eun +bailey +yetta +verona +thomasina +sibyl +shannan +mechelle +lue +leandra +lani +kylee +kandy +jolynn +ferne +eboni +corene +alysia +zula +nada +moira +lyndsay +lorretta +juan +jammie +hortensia +gaynell +cameron +adria +vina +vicenta +tangela +stephine +norine +nella +liana +leslee +kimberely +iliana +glory +felica +emogene +elfriede +eden +eartha +carma +bea +ocie +marry +lennie +kiara +jacalyn +carlota +arielle +yu +star +otilia +kirstin +kacey +johnetta +joey +joetta +jeraldine +jaunita +elana +dorthea +cami +amada +adelia +vernita +tamar +siobhan +renea +rashida +ouida +odell +nilsa +meryl +kristyn +julieta +danica +breanne +aurea +anglea +sherron +odette +malia +lorelei +lin +leesa +kenna +kathlyn +fiona +charlette +suzie +shantell +sabra +racquel +myong +mira +martine +lucienne +lavada +juliann +johnie +elvera +delphia +clair +christiane +charolette +carri +augustine +asha +angella +paola +ninfa +leda +lai +eda +sunshine +stefani +shanell +palma +machelle +lissa +kecia +kathryne +karlene +julissa +jettie +jenniffer +hui +corrina +christopher +carolann +alena +tess +rosaria +myrtice +marylee +liane +kenyatta +judie +janey +in +elmira +eldora +denna +cristi +cathi +zaida +vonnie +viva +vernie +rosaline +mariela +luciana +lesli +karan +felice +deneen +adina +wynona +tarsha +sheron +shasta +shanita +shani +shandra +randa +pinkie +paris +nelida +marilou +lyla +laurene +laci +joi +janene +dorotha +daniele +dani +carolynn +carlyn +berenice +ayesha +anneliese +alethea +thersa +tamiko +rufina +oliva +mozell +marylyn +madison +kristian +kathyrn +kasandra +kandace +janae +gabriel +domenica +debbra +dannielle +chun +buffy +barbie +arcelia +aja +zenobia +sharen +sharee +patrick +page +my +lavinia +kum +kacie +jackeline +huong +felisa +emelia +eleanora +cythia +cristin +clyde +claribel +caron +anastacia +zulma +zandra +yoko +tenisha +susann +sherilyn +shay +shawanda +sabine +romana +mathilda +linsey +keiko +joana +isela +gretta +georgetta +eugenie +dusty +desirae +delora +corazon +antonina +anika +willene +tracee +tamatha +regan +nichelle +mickie +maegan +luana +lanita +kelsie +edelmira +bree +afton +teodora +tamie +shena +meg +linh +keli +kaci +danyelle +britt +arlette +albertine +adelle +tiffiny +stormy +simona +numbers +nicolasa +nichol +nia +nakisha +mee +maira +loreen +kizzy +johnny +jay +fallon +christene +bobbye +anthony +ying +vincenza +tanja +rubie +roni +queenie +margarett +kimberli +irmgard +idell +hilma +evelina +esta +emilee +dennise +dania +carl +carie +antonio +wai +sang +risa +rikki +particia +mui +masako +mario +luvenia +loree +loni +lien +kevin +gigi +florencia +dorian +denita +dallas +chi +billye +alexander +tomika +sharita +rana +nikole +neoma +margarite +madalyn +lucina +laila +kali +jenette +gabriele +evelyne +elenora +clementina +alejandrina +zulema +violette +vannessa +thresa +retta +pia +patience +noella +nickie +jonell +delta +chung +chaya +camelia +bethel +anya +andrew +thanh +suzann +spring +shu +mila +lilla +laverna +keesha +kattie +gia +georgene +eveline +estell +elizbeth +vivienne +vallie +trudie +stephane +michel +magaly +madie +kenyetta +karren +janetta +hermine +harmony +drucilla +debbi +celestina +candie +britni +beckie +amina +zita +yun +yolande +vivien +vernetta +trudi +sommer +pearle +patrina +ossie +nicolle +loyce +letty +larisa +katharina +joselyn +jonelle +jenell +iesha +heide +florinda +florentina +flo +elodia +dorine +brunilda +brigid +ashli +ardella +twana +thu +tarah +sung +shea +shavon +shane +serina +rayna +ramonita +nga +margurite +lucrecia +kourtney +kati +jesus +jesenia +diamond +crista +ayana +alica +alia +vinnie +suellen +romelia +rachell +piper +olympia +michiko +kathaleen +jolie +jessi +janessa +hana +ha +elease +carletta +britany +shona +salome +rosamond +regena +raina +ngoc +nelia +louvenia +lesia +latrina +laticia +larhonda +jina +jacki +hollis +holley +emmy +deeann +coretta +arnetta +velvet +thalia +shanice +neta +mikki +micki +lonna +leana +lashunda +kiley +joye +jacqulyn +ignacia +hyun +hiroko +henry +henriette +elayne +delinda +darnell +dahlia +coreen +consuela +conchita +celine +babette +ayanna +anette +albertina +skye +shawnee +shaneka +quiana +pamelia +min +merri +merlene +margit +kiesha +kiera +kaylene +jodee +jenise +erlene +emmie +else +daryl +dalila +daisey +cody +casie +belia +babara +versie +vanesa +shelba +shawnda +sam +norman +nikia +naoma +marna +margeret +madaline +lawana +kindra +jutta +jazmine +janett +hannelore +glendora +gertrud +garnett +freeda +frederica +florance +flavia +dennis +carline +beverlee +anjanette +valda +trinity +tamala +stevie +shonna +sha +sarina +oneida +micah +merilyn +marleen +lurline +lenna +katherin +jin +jeni +hae +gracia +glady +farah +eric +enola +ema +dominque +devona +delana +cecila +caprice +alysha +ali +alethia +vena +theresia +tawny +song +shakira +samara +sachiko +rachele +pamella +nicky +marni +mariel +maren +malisa +ligia +lera +latoria +larae +kimber +kathern +karey +jennefer +janeth +halina +fredia +delisa +debroah +ciera +chin +angelika +andree +altha +yen +vivan +terresa +tanna +suk +sudie +soo +signe +salena +ronni +rebbecca +myrtie +mckenzie +malika +maida +loan +leonarda +kayleigh +france +ethyl +ellyn +dayle +cammie +brittni +birgit +avelina +asuncion +arianna +akiko +venice +tyesha +tonie +tiesha +takisha +steffanie +sindy +santana +meghann +manda +macie +lady +kellye +kellee +joslyn +jason +inger +indira +glinda +glennis +fernanda +faustina +eneida +elicia +dot +digna +dell +arletta +andre +willia +tammara +tabetha +sherrell +sari +refugio +rebbeca +pauletta +nieves +natosha +nakita +mammie +kenisha +kazuko +kassie +gary +earlean +daphine +corliss +clotilde +carolyne +bernetta +augustina +audrea +annis +annabell +yan +tennille +tamica +selene +sean +rosana +regenia +qiana +markita +macy +leeanne +laurine +kym +jessenia +janita +georgine +genie +emiko +elvie +deandra +dagmar +corie +collen +cherish +romaine +porsha +pearlene +micheline +merna +margorie +margaretta +lore +kenneth +jenine +hermina +fredericka +elke +drusilla +dorathy +dione +desire +celena +brigida +angeles +allegra +theo +tamekia +synthia +stephen +sook +slyvia +rosann +reatha +raye +marquetta +margart +ling +layla +kymberly +kiana +kayleen +katlyn +karmen +joella +irina +emelda +eleni +detra +clemmie +cheryll +chantell +cathey +arnita +arla +angle +angelic +alyse +zofia +thomasine +tennie +son +sherly +sherley +sharyl +remedios +petrina +nickole +myung +myrle +mozella +louanne +lisha +latia +lane +krysta +julienne +joel +jeanene +jacqualine +isaura +gwenda +earleen +donald +cleopatra +carlie +audie +antonietta +alise +alex +verdell +val +tyler +tomoko +thao +talisha +steven +so +shemika +shaun +scarlet +savanna +santina +rosia +raeann +odilia +nana +minna +magan +lynelle +le +karma +joeann +ivana +inell +ilana +hye +honey +hee +gudrun +frank +dreama +crissy +chante +carmelina +arvilla +arthur +annamae +alvera +aleida +aaron +yee +yanira +vanda +tianna +tam +stefania +shira +perry +nicol +nancie +monserrate +minh +melynda +melany +matthew +lovella +laure +kirby +kacy +jacquelynn +hyon +gertha +francisco +eliana +christena +christeen +charise +caterina +carley +candyce +arlena +ammie +yang +willette +vanita +tuyet +tiny +syreeta +silva +scott +ronald +penney +nyla +michal +maurice +maryam +marya +magen +ludie +loma +livia +lanell +kimberlie +julee +donetta +diedra +denisha +deane +dawne +clarine +cherryl +bronwyn +brandon +alla +valery +tonda +sueann +soraya +shoshana +shela +sharleen +shanelle +nerissa +micheal +meridith +mellie +maye +maple +magaret +luis +lili +leonila +leonie +leeanna +lavonia +lavera +kristel +kathey +kathe +justin +julian +jimmy +jann +ilda +hildred +hildegarde +genia +fumiko +evelin +ermelinda +elly +dung +doloris +dionna +danae +berneice +annice +alix +verena +verdie +tristan +shawnna +shawana +shaunna +rozella +randee +ranae +milagro +lynell +luise +louie +loida +lisbeth +karleen +junita +jona +isis +hyacinth +hedy +gwenn +ethelene +erline +edward +donya +domonique +delicia +dannette +cicely +branda +blythe +bethann +ashlyn +annalee +alline +yuko +vella +trang +towanda +tesha +sherlyn +narcisa +miguelina +meri +maybell +marlana +marguerita +madlyn +luna +lory +loriann +liberty +leonore +leighann +laurice +latesha +laronda +katrice +kasie +karl +kaley +jadwiga +glennie +gearldine +francina +epifania +dyan +dorie +diedre +denese +demetrice +delena +darby +cristie +cleora +catarina +carisa +bernie +barbera +almeta +trula +tereasa +solange +sheilah +shavonne +sanora +rochell +mathilde +margareta +maia +lynsey +lawanna +launa +kena +keena +katia +jamey +glynda +gaylene +elvina +elanor +danuta +danika +cristen +cordie +coletta +clarita +carmon +brynn +azucena +aundrea +angele +yi +walter +verlie +verlene +tamesha +silvana +sebrina +samira +reda +raylene +penni +pandora +norah +noma +mireille +melissia +maryalice +laraine +kimbery +karyl +karine +kam +jolanda +johana +jesusa +jaleesa +jae +jacquelyne +irish +iluminada +hilaria +hanh +gennie +francie +floretta +exie +edda +drema +delpha +bev +barbar +assunta +ardell +annalisa +alisia +yukiko +yolando +wonda +wei +waltraud +veta +tequila +temeka +tameika +shirleen +shenita +piedad +ozella +mirtha +marilu +kimiko +juliane +jenice +jen +janay +jacquiline +hilde +fe +fae +evan +eugene +elois +echo +devorah +chau +brinda +betsey +arminda +aracelis +apryl +annett +alishia +veola +usha +toshiko +theola +tashia +talitha +shery +rudy +renetta +reiko +rasheeda +omega +obdulia +mika +melaine +meggan +martin +marlen +marget +marceline +mana +magdalen +librada +lezlie +lexie +latashia +lasandra +kelle +isidra +isa +inocencia +gwyn +francoise +erminia +erinn +dimple +devora +criselda +armanda +arie +ariane +angelo +angelena +allen +aliza +adriene +adaline +xochitl +twanna +tran +tomiko +tamisha +taisha +susy +siu +rutha +roxy +rhona +raymond +otha +noriko +natashia +merrie +melvin +marinda +mariko +margert +loris +lizzette +leisha +kaila +ka +joannie +jerrica +jene +jannet +janee +jacinda +herta +elenore +doretta +delaine +daniell +claudie +china +britta +apolonia +amberly +alease +yuri +yuk +wen +waneta +ute +tomi +sharri +sandie +roselle +reynalda +raguel +phylicia +patria +olimpia +odelia +mitzie +mitchell +miss +minda +mignon +mica +mendy +marivel +maile +lynetta +lavette +lauryn +latrisha +lakiesha +kiersten +kary +josphine +jolyn +jetta +janise +jacquie +ivelisse +glynis +gianna +gaynelle +emerald +demetrius +danyell +danille +dacia +coralee +cher +ceola +brett +bell +arianne +aleshia +yung +williemae +troy +trinh +thora +tai +svetlana +sherika +shemeka +shaunda +roseline +ricki +melda +mallie +lavonna +latina +larry +laquanda +lala +lachelle +klara +kandis +johna +jeanmarie +jaye +hang +grayce +gertude +emerita +ebonie +clorinda +ching +chery +carola +breann +blossom +bernardine +becki +arletha +argelia +ara +alita +yulanda +yon +yessenia +tobi +tasia +sylvie +shirl +shirely +sheridan +shella +shantelle +sacha +royce +rebecka +reagan +providencia +paulene +misha +miki +marline +marica +lorita +latoyia +lasonya +kerstin +kenda +keitha +kathrin +jaymie +jack +gricelda +ginette +eryn +elina +elfrieda +danyel +cheree +chanelle +barrie +avery +aurore +annamaria +alleen +ailene +aide +yasmine +vashti +valentine +treasa +tory +tiffaney +sheryll +sharie +shanae +sau +raisa +pa +neda +mitsuko +mirella +milda +maryanna +maragret +mabelle +luetta +lorina +letisha +latarsha +lanelle +lajuana +krissy +karly +karena +jon +jessika +jerica +jeanelle +january +jalisa +jacelyn +izola +ivey +gregory +euna +etha +drew +domitila +dominica +daina +creola +carli +camie +bunny +brittny +ashanti +anisha +aleen +adah +yasuko +winter +viki +valrie +tona +tinisha +thi +terisa +tatum +taneka +simonne +shalanda +serita +ressie +refugia +paz +olene +na +merrill +margherita +mandie +man +maire +lyndia +luci +lorriane +loreta +leonia +lavona +lashawnda +lakia +kyoko +krystina +krysten +kenia +kelsi +jude +jeanice +isobel +georgiann +genny +felicidad +eilene +deon +deloise +deedee +dannie +conception +clora +cherilyn +chang +calandra +berry +armandina +anisa +ula +timothy +tiera +theressa +stephania +sima +shyla +shonta +shera +shaquita +shala +sammy +rossana +nohemi +nery +moriah +melita +melida +melani +marylynn +marisha +mariette +malorie +madelene +ludivina +loria +lorette +loralee +lianne +leon +lavenia +laurinda +lashon +kit +kimi +keila +katelynn +kai +jone +joane +ji +jayna +janella +ja +hue +hertha +francene +elinore +despina +delsie +deedra +clemencia +carry +carolin +carlos +bulah +brittanie +bok +blondell +bibi +beaulah +beata +annita +agripina +virgen +valene +un +twanda +tommye +toi +tarra +tari +tammera +shakia +sadye +ruthanne +rochel +rivka +pura +nenita +natisha +ming +merrilee +melodee +marvis +lucilla +leena +laveta +larita +lanie +keren +ileen +georgeann +genna +genesis +frida +ewa +eufemia +emely +ela +edyth +deonna +deadra +darlena +chanell +chan +cathern +cassondra +cassaundra +bernarda +berna +arlinda +anamaria +albert +wesley +vertie +valeri +torri +tatyana +stasia +sherise +sherill +season +scottie +sanda +ruthe +rosy +roberto +robbi +ranee +quyen +pearly +palmira +onita +nisha +niesha +nida +nevada +nam +merlyn +mayola +marylouise +maryland +marx +marth +margene +madelaine +londa +leontine +leoma +leia +lawrence +lauralee +lanora +lakita +kiyoko +keturah +katelin +kareen +jonie +johnette +jenee +jeanett +izetta +hiedi +heike +hassie +harold +giuseppina +georgann +fidela +fernande +elwanda +ellamae +eliz +dusti +dotty +cyndy +coralie +celesta +argentina +alverta +xenia +wava +vanetta +torrie +tashina +tandy +tambra +tama +stepanie +shila +shaunta +sharan +shaniqua +shae +setsuko +serafina +sandee +rosamaria +priscila +olinda +nadene +muoi +michelina +mercedez +maryrose +marin +marcene +mao +magali +mafalda +logan +linn +lannie +kayce +karoline +kamilah +kamala +justa +joline +jennine +jacquetta +iraida +gerald +georgeanna +franchesca +fairy +emeline +elane +ehtel +earlie +dulcie +dalene +cris +classie +chere +charis +caroyln +carmina +carita +brian +bethanie +ayako +arica +an +alysa +alessandra +akilah +adrien +zetta +youlanda +yelena +yahaira +xuan +wendolyn +victor +tijuana +terrell +terina +teresia +suzi +sunday +sherell +shavonda +shaunte +sharda +shakita +sena +ryann +rubi +riva +reginia +rea +rachal +parthenia +pamula +monnie +monet +michaele +melia +marine +malka +maisha +lisandra +leo +lekisha +lean +laurence +lakendra +krystin +kortney +kizzie +kittie +kera +kendal +kemberly +kanisha +julene +jule +joshua +johanne +jeffrey +jamee +han +halley +gidget +galina +fredricka +fleta +fatimah +eusebia +elza +eleonore +dorthey +doria +donella +dinorah +delorse +claretha +christinia +charlyn +bong +belkis +azzie +andera +aiko +adena +yer +yajaira +wan +vania +ulrike +toshia +tifany +stefany +shizue +shenika +shawanna +sharolyn +sharilyn +shaquana +shantay +see +rozanne +roselee +rickie +remona +reanna +raelene +quinn +phung +petronila +natacha +nancey +myrl +miyoko +miesha +merideth +marvella +marquitta +marhta +marchelle +lizeth +libbie +lahoma +ladawn +kina +katheleen +katharyn +karisa +kaleigh +junie +julieann +johnsie +janean +jaimee +jackqueline +hisako +herma +helaine +gwyneth +glenn +gita +eustolia +emelina +elin +edris +donnette +donnetta +dierdre +denae +darcel +claude +clarisa +cinderella +chia +charlesetta +charita +celsa +cassy +cassi +carlee +bruna +brittaney +brande +billi +bao +antonetta +angla +angelyn +analisa +alane +wenona +wendie +veronique +vannesa +tobie +tempie +sumiko +sulema +sparkle +somer +sheba +shayne +sharice +shanel +shalon +sage +roy +rosio +roselia +renay +rema +reena +porsche +ping +peg +ozie +oretha +oralee +oda +nu +ngan +nakesha +milly +marybelle +marlin +maris +margrett +maragaret +manie +lurlene +lillia +lieselotte +lavelle +lashaunda +lakeesha +keith +kaycee +kalyn +joya +joette +jenae +janiece +illa +grisel +glayds +genevie +gala +fredda +fred +elmer +eleonor +debera +deandrea +dan +corrinne +cordia +contessa +colene +cleotilde +charlott +chantay +cecille +beatris +azalee +arlean +ardath +anjelica +anja +alfredia +aleisha +adam +zada +yuonne +xiao +willodean +whitley +vennie +vanna +tyisha +tova +torie +tonisha +tilda +tien +temple +sirena +sherril +shanti +shan +senaida +samella +robbyn +renda +reita +phebe +paulita +nobuko +nguyet +neomi +moon +mikaela +melania +maximina +marg +maisie +lynna +lilli +layne +lashaun +lakenya +lael +kirstie +kathline +kasha +karlyn +karima +jovan +josefine +jennell +jacqui +jackelyn +hyo +hien +grazyna +florrie +floria +eleonora +dwana +dorla +dong +delmy +deja +dede +dann +crysta +clelia +claris +clarence +chieko +cherlyn +cherelle +charmain +chara +cammy +bee +arnette +ardelle +annika +amiee +amee +allena +yvone +yuki +yoshie +yevette +yael +willetta +voncile +venetta +tula +tonette +timika +temika +telma +teisha +taren +ta +stacee +shin +shawnta +saturnina +ricarda +pok +pasty +onie +nubia +mora +mike +marielle +mariella +marianela +mardell +many +luanna +loise +lisabeth +lindsy +lilliana +lilliam +lelah +leigha +leanora +lang +kristeen +khalilah +keeley +kandra +junko +joaquina +jerlene +jani +jamika +jame +hsiu +hermila +golden +genevive +evia +eugena +emmaline +elfreda +elene +donette +delcie +deeanna +darcey +cuc +clarinda +cira +chae +celinda +catheryn +catherin +casimira +carmelia +camellia +breana +bobette +bernardina +bebe +basilia +arlyne +amal +alayna +zonia +zenia +yuriko +yaeko +wynell +willow +willena +vernia +tu +travis +tora +terrilyn +terica +tenesha +tawna +tajuana +taina +stephnie +sona +sol +sina +shondra +shizuko +sherlene +sherice +sharika +rossie +rosena +rory +rima +ria +rheba +renna +peter +natalya +nancee +melodi +meda +maxima +matha +marketta +maricruz +marcelene +malvina +luba +louetta +leida +lecia +lauran +lashawna +laine +khadijah +katerine +kasi +kallie +julietta +jesusita +jestine +jessia +jeremy +jeffie +janyce +isadora +georgianne +fidelia +evita +eura +eulah +estefana +elsy +elizabet +eladia +dodie +dion +dia +denisse +deloras +delila +daysi +dakota +curtis +crystle +concha +colby +claretta +chu +christia +charlsie +charlena +carylon +bettyann +asley +ashlea +amira +ai +agueda +agnus +yuette +vinita +victorina +tynisha +treena +toccara +tish +thomasena +tegan +soila +shiloh +shenna +sharmaine +shantae +shandi +september +saran +sarai +sana +samuel +salley +rosette +rolande +regine +otelia +oscar +olevia +nicholle +necole +naida +myrta +myesha +mitsue +minta +mertie +margy +mahalia +madalene +love +loura +lorean +lewis +lesha +leonida +lenita +lavone +lashell +lashandra +lamonica +kimbra +katherina +karry +kanesha +julio +jong +jeneva +jaquelyn +hwa +gilma +ghislaine +gertrudis +fransisca +fermina +ettie +etsuko +ellis +ellan +elidia +edra +dorethea +doreatha +denyse +denny +deetta +daine +cyrstal +corrin +cayla +carlita +camila +burma +bula +buena +blake +barabara +avril +austin +alaine +zana +wilhemina +wanetta +virgil +vi +veronika +vernon +verline +vasiliki +tonita +tisa +teofila +tayna +taunya +tandra +takako +sunni +suanne +sixta +sharell +seema +russell +rosenda +robena +raymonde +pei +pamila +ozell +neida +neely +mistie +micha +merissa +maurita +maryln +maryetta +marshall +marcell +malena +makeda +maddie +lovetta +lourie +lorrine +lorilee +lester +laurena +lashay +larraine +laree +lacresha +kristle +krishna +keva +keira +karole +joie +jinny +jeannetta +jama +heidy +gilberte +gema +faviola +evelynn +enda +elli +ellena +divina +dagny +collene +codi +cindie +chassidy +chasidy +catrice +catherina +cassey +caroll +carlena +candra +calista +bryanna +britteny +beula +bari +audrie +audria +ardelia +annelle +angila +alona +allyn diff --git a/splunk_eventgen/samples/dist.male.first b/splunk_eventgen/samples/dist.male.first new file mode 100644 index 00000000..95b473d0 --- /dev/null +++ b/splunk_eventgen/samples/dist.male.first @@ -0,0 +1,1219 @@ +james +john +robert +michael +william +david +richard +charles +joseph +thomas +christopher +daniel +paul +mark +donald +george +kenneth +steven +edward +brian +ronald +anthony +kevin +jason +matthew +gary +timothy +jose +larry +jeffrey +frank +scott +eric +stephen +andrew +raymond +gregory +joshua +jerry +dennis +walter +patrick +peter +harold +douglas +henry +carl +arthur +ryan +roger +joe +juan +jack +albert +jonathan +justin +terry +gerald +keith +samuel +willie +ralph +lawrence +nicholas +roy +benjamin +bruce +brandon +adam +harry +fred +wayne +billy +steve +louis +jeremy +aaron +randy +howard +eugene +carlos +russell +bobby +victor +martin +ernest +phillip +todd +jesse +craig +alan +shawn +clarence +sean +philip +chris +johnny +earl +jimmy +antonio +danny +bryan +tony +luis +mike +stanley +leonard +nathan +dale +manuel +rodney +curtis +norman +allen +marvin +vincent +glenn +jeffery +travis +jeff +chad +jacob +lee +melvin +alfred +kyle +francis +bradley +jesus +herbert +frederick +ray +joel +edwin +don +eddie +ricky +troy +randall +barry +alexander +bernard +mario +leroy +francisco +marcus +micheal +theodore +clifford +miguel +oscar +jay +jim +tom +calvin +alex +jon +ronnie +bill +lloyd +tommy +leon +derek +warren +darrell +jerome +floyd +leo +alvin +tim +wesley +gordon +dean +greg +jorge +dustin +pedro +derrick +dan +lewis +zachary +corey +herman +maurice +vernon +roberto +clyde +glen +hector +shane +ricardo +sam +rick +lester +brent +ramon +charlie +tyler +gilbert +gene +marc +reginald +ruben +brett +angel +nathaniel +rafael +leslie +edgar +milton +raul +ben +chester +cecil +duane +franklin +andre +elmer +brad +gabriel +ron +mitchell +roland +arnold +harvey +jared +adrian +karl +cory +claude +erik +darryl +jamie +neil +jessie +christian +javier +fernando +clinton +ted +mathew +tyrone +darren +lonnie +lance +cody +julio +kelly +kurt +allan +nelson +guy +clayton +hugh +max +dwayne +dwight +armando +felix +jimmie +everett +jordan +ian +wallace +ken +bob +jaime +casey +alfredo +alberto +dave +ivan +johnnie +sidney +byron +julian +isaac +morris +clifton +willard +daryl +ross +virgil +andy +marshall +salvador +perry +kirk +sergio +marion +tracy +seth +kent +terrance +rene +eduardo +terrence +enrique +freddie +wade +austin +stuart +fredrick +arturo +alejandro +jackie +joey +nick +luther +wendell +jeremiah +evan +julius +dana +donnie +otis +shannon +trevor +oliver +luke +homer +gerard +doug +kenny +hubert +angelo +shaun +lyle +matt +lynn +alfonso +orlando +rex +carlton +ernesto +cameron +neal +pablo +lorenzo +omar +wilbur +blake +grant +horace +roderick +kerry +abraham +willis +rickey +jean +ira +andres +cesar +johnathan +malcolm +rudolph +damon +kelvin +rudy +preston +alton +archie +marco +wm +pete +randolph +garry +geoffrey +jonathon +felipe +bennie +gerardo +ed +dominic +robin +loren +delbert +colin +guillermo +earnest +lucas +benny +noel +spencer +rodolfo +myron +edmund +garrett +salvatore +cedric +lowell +gregg +sherman +wilson +devin +sylvester +kim +roosevelt +israel +jermaine +forrest +wilbert +leland +simon +guadalupe +clark +irving +carroll +bryant +owen +rufus +woodrow +sammy +kristopher +mack +levi +marcos +gustavo +jake +lionel +marty +taylor +ellis +dallas +gilberto +clint +nicolas +laurence +ismael +orville +drew +jody +ervin +dewey +al +wilfred +josh +hugo +ignacio +caleb +tomas +sheldon +erick +frankie +stewart +doyle +darrel +rogelio +terence +santiago +alonzo +elias +bert +elbert +ramiro +conrad +pat +noah +grady +phil +cornelius +lamar +rolando +clay +percy +dexter +bradford +merle +darin +amos +terrell +moses +irvin +saul +roman +darnell +randal +tommie +timmy +darrin +winston +brendan +toby +van +abel +dominick +boyd +courtney +jan +emilio +elijah +cary +domingo +santos +aubrey +emmett +marlon +emanuel +jerald +edmond +emil +dewayne +will +otto +teddy +reynaldo +bret +morgan +jess +trent +humberto +emmanuel +stephan +louie +vicente +lamont +stacy +garland +miles +micah +efrain +billie +logan +heath +rodger +harley +demetrius +ethan +eldon +rocky +pierre +junior +freddy +eli +bryce +antoine +robbie +kendall +royce +sterling +mickey +chase +grover +elton +cleveland +dylan +chuck +damian +reuben +stan +august +leonardo +jasper +russel +erwin +benito +hans +monte +blaine +ernie +curt +quentin +agustin +murray +jamal +devon +adolfo +harrison +tyson +burton +brady +elliott +wilfredo +bart +jarrod +vance +denis +damien +joaquin +harlan +desmond +elliot +darwin +ashley +gregorio +buddy +xavier +kermit +roscoe +esteban +anton +solomon +scotty +norbert +elvin +williams +nolan +carey +rod +quinton +hal +brain +rob +elwood +kendrick +darius +moises +son +marlin +fidel +thaddeus +cliff +marcel +ali +jackson +raphael +bryon +armand +alvaro +jeffry +dane +joesph +thurman +ned +sammie +rusty +michel +monty +rory +fabian +reggie +mason +graham +kris +isaiah +vaughn +gus +avery +loyd +diego +alexis +adolph +norris +millard +rocco +gonzalo +derick +rodrigo +gerry +stacey +carmen +wiley +rigoberto +alphonso +ty +shelby +rickie +noe +vern +bobbie +reed +jefferson +elvis +bernardo +mauricio +hiram +donovan +basil +riley +ollie +nickolas +maynard +scot +vince +quincy +eddy +sebastian +federico +ulysses +heriberto +donnell +cole +denny +davis +gavin +emery +ward +romeo +jayson +dion +dante +clement +coy +odell +maxwell +jarvis +bruno +issac +mary +dudley +brock +sanford +colby +carmelo +barney +nestor +hollis +stefan +donny +art +linwood +beau +weldon +galen +isidro +truman +delmar +johnathon +silas +frederic +dick +kirby +irwin +cruz +merlin +merrill +charley +marcelino +lane +harris +cleo +carlo +trenton +kurtis +hunter +aurelio +winfred +vito +collin +denver +carter +leonel +emory +pasquale +mohammad +mariano +danial +blair +landon +dirk +branden +adan +numbers +clair +buford +german +bernie +wilmer +joan +emerson +zachery +fletcher +jacques +errol +dalton +monroe +josue +dominique +edwardo +booker +wilford +sonny +shelton +carson +theron +raymundo +daren +tristan +houston +robby +lincoln +jame +genaro +gale +bennett +octavio +cornell +laverne +hung +arron +antony +herschel +alva +giovanni +garth +cyrus +cyril +ronny +stevie +lon +freeman +erin +duncan +kennith +carmine +augustine +young +erich +chadwick +wilburn +russ +reid +myles +anderson +morton +jonas +forest +mitchel +mervin +zane +rich +jamel +lazaro +alphonse +randell +major +johnie +jarrett +brooks +ariel +abdul +dusty +luciano +lindsey +tracey +seymour +scottie +eugenio +mohammed +sandy +valentin +chance +arnulfo +lucien +ferdinand +thad +ezra +sydney +aldo +rubin +royal +mitch +earle +abe +wyatt +marquis +lanny +kareem +jamar +boris +isiah +emile +elmo +aron +leopoldo +everette +josef +gail +eloy +dorian +rodrick +reinaldo +lucio +jerrod +weston +hershel +barton +parker +lemuel +lavern +burt +jules +gil +eliseo +ahmad +nigel +efren +antwan +alden +margarito +coleman +refugio +dino +osvaldo +les +deandre +normand +kieth +ivory +andrea +trey +norberto +napoleon +jerold +fritz +rosendo +milford +sang +deon +christoper +alfonzo +lyman +josiah +brant +wilton +rico +jamaal +dewitt +carol +brenton +yong +olin +foster +faustino +claudio +judson +gino +edgardo +berry +alec +tanner +jarred +donn +trinidad +tad +shirley +prince +porfirio +odis +maria +lenard +chauncey +chang +tod +mel +marcelo +kory +augustus +keven +hilario +bud +sal +rosario +orval +mauro +dannie +zachariah +olen +anibal +milo +jed +frances +thanh +dillon +amado +newton +connie +lenny +tory +richie +lupe +horacio +brice +mohamed +delmer +dario +reyes +dee +mac +jonah +jerrold +robt +hank +sung +rupert +rolland +kenton +damion +chi +antone +waldo +fredric +bradly +quinn +kip +burl +walker +tyree +jefferey +ahmed +willy +stanford +oren +noble +moshe +mikel +enoch +brendon +quintin +jamison +florencio +darrick +tobias +minh +hassan +giuseppe +demarcus +cletus +tyrell +lyndon +keenan +werner +theo +geraldo +lou +columbus +chet +bertram +markus +huey +hilton +dwain +donte +tyron +omer +isaias +hipolito +fermin +chung +adalberto +valentine +jamey +bo +barrett +whitney +teodoro +mckinley +maximo +garfield +sol +raleigh +lawerence +abram +rashad +king +emmitt +daron +chong +samual +paris +otha +miquel +lacy +eusebio +dong +domenic +darron +buster +antonia +wilber +renato +jc +hoyt +haywood +ezekiel +chas +florentino +elroy +clemente +arden +neville +kelley +edison +deshawn +carrol +shayne +nathanial +jordon +danilo +claud +val +sherwood +raymon +rayford +cristobal +ambrose +titus +hyman +felton +ezequiel +erasmo +stanton +lonny +len +ike +milan +lino +jarod +herb +andreas +walton +rhett +palmer +jude +douglass +cordell +oswaldo +ellsworth +virgilio +toney +nathanael +del +britt +benedict +mose +hong +leigh +johnson +isreal +gayle +garret +fausto +asa +arlen +zack +warner +modesto +francesco +manual +jae +gaylord +gaston +filiberto +deangelo +michale +granville +wes +malik +zackary +tuan +nicky +eldridge +cristopher +cortez +antione +malcom +long +korey +jospeh +colton +waylon +von +hosea +shad +santo +rudolf +rolf +rey +renaldo +marcellus +lucius +lesley +kristofer +boyce +benton +man +kasey +jewell +hayden +harland +arnoldo +rueben +leandro +kraig +jerrell +jeromy +hobert +cedrick +arlie +winford +wally +patricia +luigi +keneth +jacinto +graig +franklyn +edmundo +sid +porter +leif +lauren +jeramy +elisha +buck +willian +vincenzo +shon +michal +lynwood +lindsay +jewel +jere +hai +elden +dorsey +darell +broderick +alonso diff --git a/splunk_eventgen/samples/external_ips.sample b/splunk_eventgen/samples/external_ips.sample new file mode 100644 index 00000000..2c7ed056 --- /dev/null +++ b/splunk_eventgen/samples/external_ips.sample @@ -0,0 +1,150 @@ +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +12.130.60.4 +12.130.60.5 +125.17.14.100 +128.241.220.82 +130.253.37.97 +131.178.233.243 +141.146.8.66 +142.162.221.28 +142.233.200.21 +194.215.205.19 +201.122.42.235 +201.28.109.162 +201.3.120.132 +201.42.223.29 +203.92.58.136 +212.235.92.150 +212.27.63.151 +217.132.169.69 +59.162.167.100 +74.125.19.106 +81.11.191.113 +82.245.228.36 +84.34.159.23 +86.212.199.60 +86.9.190.90 +87.194.216.51 +89.167.143.32 +90.205.111.169 +92.1.170.135 +1.16.0.0 +1.19.11.11 +27.1.0.0 +27.1.11.11 +27.35.0.0 +27.35.11.11 +27.96.128.0 +27.96.191.11 +27.101.0.0 +27.101.11.11 +27.102.0.0 +27.102.11.11 +27.160.0.0 +27.175.11.11 +27.176.0.0 +193.33.170.23 +194.146.236.22 +194.8.74.23 +195.216.243.24 +195.69.160.22 +195.69.252.22 +195.80.144.22 +200.6.134.23 +202.164.25.24 +203.223.0.20 +217.197.192.20 +62.216.64.19 +64.66.0.20 +69.80.0.18 +87.240.128.18 +89.11.192.18 +91.199.80.24 +91.205.40.22 +91.208.184.24 +91.214.92.22 +94.229.0.20 +94.229.0.21 \ No newline at end of file diff --git a/splunk_eventgen/samples/firstNames.sample b/splunk_eventgen/samples/firstNames.sample new file mode 100644 index 00000000..c16e1d1c --- /dev/null +++ b/splunk_eventgen/samples/firstNames.sample @@ -0,0 +1,2000 @@ +JAMES +JOHN +ROBERT +MICHAEL +WILLIAM +DAVID +RICHARD +CHARLES +JOSEPH +THOMAS +CHRISTOPHER +DANIEL +PAUL +MARK +DONALD +GEORGE +KENNETH +STEVEN +EDWARD +BRIAN +RONALD +ANTHONY +KEVIN +JASON +MATTHEW +GARY +TIMOTHY +JOSE +LARRY +JEFFREY +FRANK +SCOTT +ERIC +STEPHEN +ANDREW +RAYMOND +GREGORY +JOSHUA +JERRY +DENNIS +WALTER +PATRICK +PETER +HAROLD +DOUGLAS +HENRY +CARL +ARTHUR +RYAN +ROGER +JOE +JUAN +JACK +ALBERT +JONATHAN +JUSTIN +TERRY +GERALD +KEITH +SAMUEL +WILLIE +RALPH +LAWRENCE +NICHOLAS +ROY +BENJAMIN +BRUCE +BRANDON +ADAM +HARRY +FRED +WAYNE +BILLY +STEVE +LOUIS +JEREMY +AARON +RANDY +HOWARD +EUGENE +CARLOS +RUSSELL +BOBBY +VICTOR +MARTIN +ERNEST +PHILLIP +TODD +JESSE +CRAIG +ALAN +SHAWN +CLARENCE +SEAN +PHILIP +CHRIS +JOHNNY +EARL +JIMMY +ANTONIO +DANNY +BRYAN +TONY +LUIS +MIKE +STANLEY +LEONARD +NATHAN +DALE +MANUEL +RODNEY +CURTIS +NORMAN +ALLEN +MARVIN +VINCENT +GLENN +JEFFERY +TRAVIS +JEFF +CHAD +JACOB +LEE +MELVIN +ALFRED +KYLE +FRANCIS +BRADLEY +JESUS +HERBERT +FREDERICK +RAY +JOEL +EDWIN +DON +EDDIE +RICKY +TROY +RANDALL +BARRY +ALEXANDER +BERNARD +MARIO +LEROY +FRANCISCO +MARCUS +MICHEAL +THEODORE +CLIFFORD +MIGUEL +OSCAR +JAY +JIM +TOM +CALVIN +ALEX +JON +RONNIE +BILL +LLOYD +TOMMY +LEON +DEREK +WARREN +DARRELL +JEROME +FLOYD +LEO +ALVIN +TIM +WESLEY +GORDON +DEAN +GREG +JORGE +DUSTIN +PEDRO +DERRICK +DAN +LEWIS +ZACHARY +COREY +HERMAN +MAURICE +VERNON +ROBERTO +CLYDE +GLEN +HECTOR +SHANE +RICARDO +SAM +RICK +LESTER +BRENT +RAMON +CHARLIE +TYLER +GILBERT +GENE +MARC +REGINALD +RUBEN +BRETT +ANGEL +NATHANIEL +RAFAEL +LESLIE +EDGAR +MILTON +RAUL +BEN +CHESTER +CECIL +DUANE +FRANKLIN +ANDRE +ELMER +BRAD +GABRIEL +RON +MITCHELL +ROLAND +ARNOLD +HARVEY +JARED +ADRIAN +KARL +CORY +CLAUDE +ERIK +DARRYL +JAMIE +NEIL +JESSIE +CHRISTIAN +JAVIER +FERNANDO +CLINTON +TED +MATHEW +TYRONE +DARREN +LONNIE +LANCE +CODY +JULIO +KELLY +KURT +ALLAN +NELSON +GUY +CLAYTON +HUGH +MAX +DWAYNE +DWIGHT +ARMANDO +FELIX +JIMMIE +EVERETT +JORDAN +IAN +WALLACE +KEN +BOB +JAIME +CASEY +ALFREDO +ALBERTO +DAVE +IVAN +JOHNNIE +SIDNEY +BYRON +JULIAN +ISAAC +MORRIS +CLIFTON +WILLARD +DARYL +ROSS +VIRGIL +ANDY +MARSHALL +SALVADOR +PERRY +KIRK +SERGIO +MARION +TRACY +SETH +KENT +TERRANCE +RENE +EDUARDO +TERRENCE +ENRIQUE +FREDDIE +WADE +AUSTIN +STUART +FREDRICK +ARTURO +ALEJANDRO +JACKIE +JOEY +NICK +LUTHER +WENDELL +JEREMIAH +EVAN +JULIUS +DANA +DONNIE +OTIS +SHANNON +TREVOR +OLIVER +LUKE +HOMER +GERARD +DOUG +KENNY +HUBERT +ANGELO +SHAUN +LYLE +MATT +LYNN +ALFONSO +ORLANDO +REX +CARLTON +ERNESTO +CAMERON +NEAL +PABLO +LORENZO +OMAR +WILBUR +BLAKE +GRANT +HORACE +RODERICK +KERRY +ABRAHAM +WILLIS +RICKEY +JEAN +IRA +ANDRES +CESAR +JOHNATHAN +MALCOLM +RUDOLPH +DAMON +KELVIN +RUDY +PRESTON +ALTON +ARCHIE +MARCO +WM +PETE +RANDOLPH +GARRY +GEOFFREY +JONATHON +FELIPE +BENNIE +GERARDO +ED +DOMINIC +ROBIN +LOREN +DELBERT +COLIN +GUILLERMO +EARNEST +LUCAS +BENNY +NOEL +SPENCER +RODOLFO +MYRON +EDMUND +GARRETT +SALVATORE +CEDRIC +LOWELL +GREGG +SHERMAN +WILSON +DEVIN +SYLVESTER +KIM +ROOSEVELT +ISRAEL +JERMAINE +FORREST +WILBERT +LELAND +SIMON +GUADALUPE +CLARK +IRVING +CARROLL +BRYANT +OWEN +RUFUS +WOODROW +SAMMY +KRISTOPHER +MACK +LEVI +MARCOS +GUSTAVO +JAKE +LIONEL +MARTY +TAYLOR +ELLIS +DALLAS +GILBERTO +CLINT +NICOLAS +LAURENCE +ISMAEL +ORVILLE +DREW +JODY +ERVIN +DEWEY +AL +WILFRED +JOSH +HUGO +IGNACIO +CALEB +TOMAS +SHELDON +ERICK +FRANKIE +STEWART +DOYLE +DARREL +ROGELIO +TERENCE +SANTIAGO +ALONZO +ELIAS +BERT +ELBERT +RAMIRO +CONRAD +PAT +NOAH +GRADY +PHIL +CORNELIUS +LAMAR +ROLANDO +CLAY +PERCY +DEXTER +BRADFORD +MERLE +DARIN +AMOS +TERRELL +MOSES +IRVIN +SAUL +ROMAN +DARNELL +RANDAL +TOMMIE +TIMMY +DARRIN +WINSTON +BRENDAN +TOBY +VAN +ABEL +DOMINICK +BOYD +COURTNEY +JAN +EMILIO +ELIJAH +CARY +DOMINGO +SANTOS +AUBREY +EMMETT +MARLON +EMANUEL +JERALD +EDMOND +EMIL +DEWAYNE +WILL +OTTO +TEDDY +REYNALDO +BRET +MORGAN +JESS +TRENT +HUMBERTO +EMMANUEL +STEPHAN +LOUIE +VICENTE +LAMONT +STACY +GARLAND +MILES +MICAH +EFRAIN +BILLIE +LOGAN +HEATH +RODGER +HARLEY +DEMETRIUS +ETHAN +ELDON +ROCKY +PIERRE +JUNIOR +FREDDY +ELI +BRYCE +ANTOINE +ROBBIE +KENDALL +ROYCE +STERLING +MICKEY +CHASE +GROVER +ELTON +CLEVELAND +DYLAN +CHUCK +DAMIAN +REUBEN +STAN +AUGUST +LEONARDO +JASPER +RUSSEL +ERWIN +BENITO +HANS +MONTE +BLAINE +ERNIE +CURT +QUENTIN +AGUSTIN +MURRAY +JAMAL +DEVON +ADOLFO +HARRISON +TYSON +BURTON +BRADY +ELLIOTT +WILFREDO +BART +JARROD +VANCE +DENIS +DAMIEN +JOAQUIN +HARLAN +DESMOND +ELLIOT +DARWIN +ASHLEY +GREGORIO +BUDDY +XAVIER +KERMIT +ROSCOE +ESTEBAN +ANTON +SOLOMON +SCOTTY +NORBERT +ELVIN +WILLIAMS +NOLAN +CAREY +ROD +QUINTON +HAL +BRAIN +ROB +ELWOOD +KENDRICK +DARIUS +MOISES +SON +MARLIN +FIDEL +THADDEUS +CLIFF +MARCEL +ALI +JACKSON +RAPHAEL +BRYON +ARMAND +ALVARO +JEFFRY +DANE +JOESPH +THURMAN +NED +SAMMIE +RUSTY +MICHEL +MONTY +RORY +FABIAN +REGGIE +MASON +GRAHAM +KRIS +ISAIAH +VAUGHN +GUS +AVERY +LOYD +DIEGO +ALEXIS +ADOLPH +NORRIS +MILLARD +ROCCO +GONZALO +DERICK +RODRIGO +GERRY +STACEY +CARMEN +WILEY +RIGOBERTO +ALPHONSO +TY +SHELBY +RICKIE +NOE +VERN +BOBBIE +REED +JEFFERSON +ELVIS +BERNARDO +MAURICIO +HIRAM +DONOVAN +BASIL +RILEY +OLLIE +NICKOLAS +MAYNARD +SCOT +VINCE +QUINCY +EDDY +SEBASTIAN +FEDERICO +ULYSSES +HERIBERTO +DONNELL +COLE +DENNY +DAVIS +GAVIN +EMERY +WARD +ROMEO +JAYSON +DION +DANTE +CLEMENT +COY +ODELL +MAXWELL +JARVIS +BRUNO +ISSAC +MARY +DUDLEY +BROCK +SANFORD +COLBY +CARMELO +BARNEY +NESTOR +HOLLIS +STEFAN +DONNY +ART +LINWOOD +BEAU +WELDON +GALEN +ISIDRO +TRUMAN +DELMAR +JOHNATHON +SILAS +FREDERIC +DICK +KIRBY +IRWIN +CRUZ +MERLIN +MERRILL +CHARLEY +MARCELINO +LANE +HARRIS +CLEO +CARLO +TRENTON +KURTIS +HUNTER +AURELIO +WINFRED +VITO +COLLIN +DENVER +CARTER +LEONEL +EMORY +PASQUALE +MOHAMMAD +MARIANO +DANIAL +BLAIR +LANDON +DIRK +BRANDEN +ADAN +NUMBERS +CLAIR +BUFORD +GERMAN +BERNIE +WILMER +JOAN +EMERSON +ZACHERY +FLETCHER +JACQUES +ERROL +DALTON +MONROE +JOSUE +DOMINIQUE +EDWARDO +BOOKER +WILFORD +SONNY +SHELTON +CARSON +THERON +RAYMUNDO +DAREN +TRISTAN +HOUSTON +ROBBY +LINCOLN +JAME +GENARO +GALE +BENNETT +OCTAVIO +CORNELL +LAVERNE +HUNG +ARRON +ANTONY +HERSCHEL +ALVA +GIOVANNI +GARTH +CYRUS +CYRIL +RONNY +STEVIE +LON +FREEMAN +ERIN +DUNCAN +KENNITH +CARMINE +AUGUSTINE +YOUNG +ERICH +CHADWICK +WILBURN +RUSS +REID +MYLES +ANDERSON +MORTON +JONAS +FOREST +MITCHEL +MERVIN +ZANE +RICH +JAMEL +LAZARO +ALPHONSE +RANDELL +MAJOR +JOHNIE +JARRETT +BROOKS +ARIEL +ABDUL +DUSTY +LUCIANO +LINDSEY +TRACEY +SEYMOUR +SCOTTIE +EUGENIO +MOHAMMED +SANDY +VALENTIN +CHANCE +ARNULFO +LUCIEN +FERDINAND +THAD +EZRA +SYDNEY +ALDO +RUBIN +ROYAL +MITCH +EARLE +ABE +WYATT +MARQUIS +LANNY +KAREEM +JAMAR +BORIS +ISIAH +EMILE +ELMO +ARON +LEOPOLDO +EVERETTE +JOSEF +GAIL +ELOY +DORIAN +RODRICK +REINALDO +LUCIO +JERROD +WESTON +HERSHEL +BARTON +PARKER +LEMUEL +LAVERN +BURT +JULES +GIL +ELISEO +AHMAD +NIGEL +EFREN +ANTWAN +ALDEN +MARGARITO +COLEMAN +REFUGIO +DINO +OSVALDO +LES +DEANDRE +NORMAND +KIETH +IVORY +ANDREA +TREY +NORBERTO +NAPOLEON +JEROLD +FRITZ +ROSENDO +MILFORD +SANG +DEON +CHRISTOPER +ALFONZO +LYMAN +JOSIAH +BRANT +WILTON +RICO +JAMAAL +DEWITT +CAROL +BRENTON +YONG +OLIN +FOSTER +FAUSTINO +CLAUDIO +JUDSON +GINO +EDGARDO +BERRY +ALEC +TANNER +JARRED +DONN +TRINIDAD +TAD +SHIRLEY +PRINCE +PORFIRIO +ODIS +MARIA +LENARD +CHAUNCEY +CHANG +TOD +MEL +MARCELO +KORY +AUGUSTUS +KEVEN +HILARIO +BUD +SAL +ROSARIO +ORVAL +MAURO +DANNIE +ZACHARIAH +OLEN +ANIBAL +MILO +JED +FRANCES +THANH +DILLON +AMADO +NEWTON +CONNIE +LENNY +TORY +RICHIE +LUPE +HORACIO +BRICE +MOHAMED +DELMER +DARIO +REYES +DEE +MAC +JONAH +JERROLD +ROBT +HANK +SUNG +RUPERT +ROLLAND +KENTON +DAMION +CHI +ANTONE +WALDO +FREDRIC +BRADLY +QUINN +KIP +BURL +WALKER +TYREE +JEFFEREY +AHMED +MARY +PATRICIA +LINDA +BARBARA +ELIZABETH +JENNIFER +MARIA +SUSAN +MARGARET +DOROTHY +LISA +NANCY +KAREN +BETTY +HELEN +SANDRA +DONNA +CAROL +RUTH +SHARON +MICHELLE +LAURA +SARAH +KIMBERLY +DEBORAH +JESSICA +SHIRLEY +CYNTHIA +ANGELA +MELISSA +BRENDA +AMY +ANNA +REBECCA +VIRGINIA +KATHLEEN +PAMELA +MARTHA +DEBRA +AMANDA +STEPHANIE +CAROLYN +CHRISTINE +MARIE +JANET +CATHERINE +FRANCES +ANN +JOYCE +DIANE +ALICE +JULIE +HEATHER +TERESA +DORIS +GLORIA +EVELYN +JEAN +CHERYL +MILDRED +KATHERINE +JOAN +ASHLEY +JUDITH +ROSE +JANICE +KELLY +NICOLE +JUDY +CHRISTINA +KATHY +THERESA +BEVERLY +DENISE +TAMMY +IRENE +JANE +LORI +RACHEL +MARILYN +ANDREA +KATHRYN +LOUISE +SARA +ANNE +JACQUELINE +WANDA +BONNIE +JULIA +RUBY +LOIS +TINA +PHYLLIS +NORMA +PAULA +DIANA +ANNIE +LILLIAN +EMILY +ROBIN +PEGGY +CRYSTAL +GLADYS +RITA +DAWN +CONNIE +FLORENCE +TRACY +EDNA +TIFFANY +CARMEN +ROSA +CINDY +GRACE +WENDY +VICTORIA +EDITH +KIM +SHERRY +SYLVIA +JOSEPHINE +THELMA +SHANNON +SHEILA +ETHEL +ELLEN +ELAINE +MARJORIE +CARRIE +CHARLOTTE +MONICA +ESTHER +PAULINE +EMMA +JUANITA +ANITA +RHONDA +HAZEL +AMBER +EVA +DEBBIE +APRIL +LESLIE +CLARA +LUCILLE +JAMIE +JOANNE +ELEANOR +VALERIE +DANIELLE +MEGAN +ALICIA +SUZANNE +MICHELE +GAIL +BERTHA +DARLENE +VERONICA +JILL +ERIN +GERALDINE +LAUREN +CATHY +JOANN +LORRAINE +LYNN +SALLY +REGINA +ERICA +BEATRICE +DOLORES +BERNICE +AUDREY +YVONNE +ANNETTE +JUNE +SAMANTHA +MARION +DANA +STACY +ANA +RENEE +IDA +VIVIAN +ROBERTA +HOLLY +BRITTANY +MELANIE +LORETTA +YOLANDA +JEANETTE +LAURIE +KATIE +KRISTEN +VANESSA +ALMA +SUE +ELSIE +BETH +JEANNE +VICKI +CARLA +TARA +ROSEMARY +EILEEN +TERRI +GERTRUDE +LUCY +TONYA +ELLA +STACEY +WILMA +GINA +KRISTIN +JESSIE +NATALIE +AGNES +VERA +WILLIE +CHARLENE +BESSIE +DELORES +MELINDA +PEARL +ARLENE +MAUREEN +COLLEEN +ALLISON +TAMARA +JOY +GEORGIA +CONSTANCE +LILLIE +CLAUDIA +JACKIE +MARCIA +TANYA +NELLIE +MINNIE +MARLENE +HEIDI +GLENDA +LYDIA +VIOLA +COURTNEY +MARIAN +STELLA +CAROLINE +DORA +JO +VICKIE +MATTIE +TERRY +MAXINE +IRMA +MABEL +MARSHA +MYRTLE +LENA +CHRISTY +DEANNA +PATSY +HILDA +GWENDOLYN +JENNIE +NORA +MARGIE +NINA +CASSANDRA +LEAH +PENNY +KAY +PRISCILLA +NAOMI +CAROLE +BRANDY +OLGA +BILLIE +DIANNE +TRACEY +LEONA +JENNY +FELICIA +SONIA +MIRIAM +VELMA +BECKY +BOBBIE +VIOLET +KRISTINA +TONI +MISTY +MAE +SHELLY +DAISY +RAMONA +SHERRI +ERIKA +KATRINA +CLAIRE +LINDSEY +LINDSAY +GENEVA +GUADALUPE +BELINDA +MARGARITA +SHERYL +CORA +FAYE +ADA +NATASHA +SABRINA +ISABEL +MARGUERITE +HATTIE +HARRIET +MOLLY +CECILIA +KRISTI +BRANDI +BLANCHE +SANDY +ROSIE +JOANNA +IRIS +EUNICE +ANGIE +INEZ +LYNDA +MADELINE +AMELIA +ALBERTA +GENEVIEVE +MONIQUE +JODI +JANIE +MAGGIE +KAYLA +SONYA +JAN +LEE +KRISTINE +CANDACE +FANNIE +MARYANN +OPAL +ALISON +YVETTE +MELODY +LUZ +SUSIE +OLIVIA +FLORA +SHELLEY +KRISTY +MAMIE +LULA +LOLA +VERNA +BEULAH +ANTOINETTE +CANDICE +JUANA +JEANNETTE +PAM +KELLI +HANNAH +WHITNEY +BRIDGET +KARLA +CELIA +LATOYA +PATTY +SHELIA +GAYLE +DELLA +VICKY +LYNNE +SHERI +MARIANNE +KARA +JACQUELYN +ERMA +BLANCA +MYRA +LETICIA +PAT +KRISTA +ROXANNE +ANGELICA +JOHNNIE +ROBYN +FRANCIS +ADRIENNE +ROSALIE +ALEXANDRA +BROOKE +BETHANY +SADIE +BERNADETTE +TRACI +JODY +KENDRA +JASMINE +NICHOLE +RACHAEL +CHELSEA +MABLE +ERNESTINE +MURIEL +MARCELLA +ELENA +KRYSTAL +ANGELINA +NADINE +KARI +ESTELLE +DIANNA +PAULETTE +LORA +MONA +DOREEN +ROSEMARIE +ANGEL +DESIREE +ANTONIA +HOPE +GINGER +JANIS +BETSY +CHRISTIE +FREDA +MERCEDES +MEREDITH +LYNETTE +TERI +CRISTINA +EULA +LEIGH +MEGHAN +SOPHIA +ELOISE +ROCHELLE +GRETCHEN +CECELIA +RAQUEL +HENRIETTA +ALYSSA +JANA +KELLEY +GWEN +KERRY +JENNA +TRICIA +LAVERNE +OLIVE +ALEXIS +TASHA +SILVIA +ELVIRA +CASEY +DELIA +SOPHIE +KATE +PATTI +LORENA +KELLIE +SONJA +LILA +LANA +DARLA +MAY +MINDY +ESSIE +MANDY +LORENE +ELSA +JOSEFINA +JEANNIE +MIRANDA +DIXIE +LUCIA +MARTA +FAITH +LELA +JOHANNA +SHARI +CAMILLE +TAMI +SHAWNA +ELISA +EBONY +MELBA +ORA +NETTIE +TABITHA +OLLIE +JAIME +WINIFRED +KRISTIE +MARINA +ALISHA +AIMEE +RENA +MYRNA +MARLA +TAMMIE +LATASHA +BONITA +PATRICE +RONDA +SHERRIE +ADDIE +FRANCINE +DELORIS +STACIE +ADRIANA +CHERI +SHELBY +ABIGAIL +CELESTE +JEWEL +CARA +ADELE +REBEKAH +LUCINDA +DORTHY +CHRIS +EFFIE +TRINA +REBA +SHAWN +SALLIE +AURORA +LENORA +ETTA +LOTTIE +KERRI +TRISHA +NIKKI +ESTELLA +FRANCISCA +JOSIE +TRACIE +MARISSA +KARIN +BRITTNEY +JANELLE +LOURDES +LAUREL +HELENE +FERN +ELVA +CORINNE +KELSEY +INA +BETTIE +ELISABETH +AIDA +CAITLIN +INGRID +IVA +EUGENIA +CHRISTA +GOLDIE +CASSIE +MAUDE +JENIFER +THERESE +FRANKIE +DENA +LORNA +JANETTE +LATONYA +CANDY +MORGAN +CONSUELO +TAMIKA +ROSETTA +DEBORA +CHERIE +POLLY +DINA +JEWELL +FAY +JILLIAN +DOROTHEA +NELL +TRUDY +ESPERANZA +PATRICA +KIMBERLEY +SHANNA +HELENA +CAROLINA +CLEO +STEFANIE +ROSARIO +OLA +JANINE +MOLLIE +LUPE +ALISA +LOU +MARIBEL +SUSANNE +BETTE +SUSANA +ELISE +CECILE +ISABELLE +LESLEY +JOCELYN +PAIGE +JONI +RACHELLE +LEOLA +DAPHNE +ALTA +ESTER +PETRA +GRACIELA +IMOGENE +JOLENE +KEISHA +LACEY +GLENNA +GABRIELA +KERI +URSULA +LIZZIE +KIRSTEN +SHANA +ADELINE +MAYRA +JAYNE +JACLYN +GRACIE +SONDRA +CARMELA +MARISA +ROSALIND +CHARITY +TONIA +BEATRIZ +MARISOL +CLARICE +JEANINE +SHEENA +ANGELINE +FRIEDA +LILY +ROBBIE +SHAUNA +MILLIE +CLAUDETTE +CATHLEEN +ANGELIA +GABRIELLE +AUTUMN +KATHARINE +SUMMER +JODIE +STACI +LEA +CHRISTI +JIMMIE +JUSTINE +ELMA +LUELLA +MARGRET +DOMINIQUE +SOCORRO +RENE +MARTINA +MARGO +MAVIS +CALLIE +BOBBI +MARITZA +LUCILE +LEANNE +JEANNINE +DEANA +AILEEN +LORIE +LADONNA +WILLA +MANUELA +GALE +SELMA +DOLLY +SYBIL +ABBY +LARA +DALE +IVY +DEE +WINNIE +MARCY +LUISA +JERI +MAGDALENA +OFELIA +MEAGAN +AUDRA +MATILDA +LEILA +CORNELIA +BIANCA +SIMONE +BETTYE +RANDI +VIRGIE +LATISHA +BARBRA +GEORGINA +ELIZA +LEANN +BRIDGETTE +RHODA +HALEY +ADELA +NOLA +BERNADINE +FLOSSIE +ILA +GRETA +RUTHIE +NELDA +MINERVA +LILLY +TERRIE +LETHA +HILARY +ESTELA +VALARIE +BRIANNA +ROSALYN +EARLINE +CATALINA +AVA +MIA +CLARISSA +LIDIA +CORRINE +ALEXANDRIA +CONCEPCION +TIA +SHARRON +RAE +DONA +ERICKA +JAMI +ELNORA +CHANDRA +LENORE +NEVA +MARYLOU +MELISA +TABATHA +SERENA +AVIS +ALLIE +SOFIA +JEANIE +ODESSA +NANNIE +HARRIETT +LORAINE +PENELOPE +MILAGROS +EMILIA +BENITA +ALLYSON +ASHLEE +TANIA +TOMMIE +ESMERALDA +KARINA +EVE +PEARLIE +ZELMA +MALINDA +NOREEN +TAMEKA +SAUNDRA +HILLARY +AMIE +ALTHEA +ROSALINDA +JORDAN +LILIA +ALANA +GAY +CLARE +ALEJANDRA +ELINOR +MICHAEL +LORRIE +JERRI +DARCY +EARNESTINE +CARMELLA +TAYLOR +NOEMI +MARCIE +LIZA +ANNABELLE +LOUISA +EARLENE +MALLORY +CARLENE +NITA +SELENA +TANISHA +KATY +JULIANNE +JOHN +LAKISHA +EDWINA +MARICELA +MARGERY +KENYA +DOLLIE +ROXIE +ROSLYN +KATHRINE +NANETTE +CHARMAINE +LAVONNE +ILENE +KRIS +TAMMI +SUZETTE +CORINE +KAYE +JERRY +MERLE +CHRYSTAL +LINA +DEANNE +LILIAN +JULIANA +ALINE +LUANN +KASEY +MARYANNE +EVANGELINE +COLETTE +MELVA +LAWANDA +YESENIA +NADIA +MADGE +KATHIE +EDDIE +OPHELIA +VALERIA +NONA +MITZI +MARI +GEORGETTE +CLAUDINE +FRAN +ALISSA +ROSEANN +LAKEISHA +SUSANNA +REVA +DEIDRE +CHASITY +SHEREE +CARLY +JAMES +ELVIA +ALYCE +DEIRDRE +GENA +BRIANA +ARACELI +KATELYN +ROSANNE +WENDI +TESSA +BERTA +MARVA +IMELDA +MARIETTA +MARCI +LEONOR +ARLINE +SASHA +MADELYN +JANNA +JULIETTE +DEENA +AURELIA +JOSEFA +AUGUSTA +LILIANA +YOUNG +CHRISTIAN +LESSIE +AMALIA +SAVANNAH +ANASTASIA +VILMA +NATALIA +ROSELLA +LYNNETTE +CORINA +ALFREDA +LEANNA +CAREY +AMPARO +COLEEN +TAMRA +AISHA +WILDA +KARYN +CHERRY +QUEEN +MAURA +MAI +EVANGELINA +ROSANNA +HALLIE +ERNA +ENID +MARIANA +LACY +JULIET +JACKLYN +FREIDA +MADELEINE +MARA +HESTER +CATHRYN +LELIA +CASANDRA +BRIDGETT +ANGELITA +JANNIE +DIONNE +ANNMARIE +KATINA +BERYL +PHOEBE +MILLICENT +KATHERYN +DIANN +CARISSA +MARYELLEN +LIZ +LAURI +HELGA +GILDA +ADRIAN +RHEA +MARQUITA +HOLLIE +TISHA +TAMERA +ANGELIQUE +FRANCESCA +BRITNEY +KAITLIN +LOLITA +FLORINE +ROWENA +REYNA +TWILA +FANNY +JANELL +INES +CONCETTA +BERTIE +ALBA +BRIGITTE +ALYSON +VONDA +PANSY +ELBA +NOELLE +LETITIA +KITTY +DEANN +BRANDIE +LOUELLA +LETA +FELECIA +SHARLENE +LESA +BEVERLEY +ROBERT +ISABELLA +HERMINIA +TERRA +CELINA \ No newline at end of file diff --git a/splunk_eventgen/samples/hostname.sample b/splunk_eventgen/samples/hostname.sample new file mode 100644 index 00000000..ce31533a --- /dev/null +++ b/splunk_eventgen/samples/hostname.sample @@ -0,0 +1,50 @@ +ACME-001 +ACME-002 +ACME-003 +ACME-004 +ACME-005 +ACME-006 +HOST-001 +HOST-002 +HOST-003 +HOST-004 +HOST-005 +HOST-006 +ops-sys-001 +ops-sys-002 +ops-sys-003 +ops-sys-004 +ops-sys-005 +ops-sys-006 +PROD-POS-001 +PROD-POS-002 +PROD-POS-003 +PROD-POS-004 +PROD-POS-005 +PROD-POS-006 +PROD-MFS-001 +PROD-MFS-002 +PROD-MFS-003 +PROD-MFS-004 +PROD-MFS-005 +PROD-MFS-006 +COREDEV-001 +COREDEV-002 +COREDEV-003 +COREDEV-004 +COREDEV-005 +COREDEV-006 +SE-001 +SE-002 +SE-003 +SE-004 +SE-005 +SE-006 +BUSDEV-001 +BUSDEV-002 +BUSDEV-003 +BUSDEV-004 +BUSDEV-005 +BUSDEV-006 +BUSDEV-007 +BUSDEV-008 \ No newline at end of file diff --git a/splunk_eventgen/samples/iana_domains.sample b/splunk_eventgen/samples/iana_domains.sample new file mode 100644 index 00000000..07216ff1 --- /dev/null +++ b/splunk_eventgen/samples/iana_domains.sample @@ -0,0 +1,316 @@ +ac +ad +ae +aero +af +ag +ai +al +am +an +ao +aq +ar +arpa +as +asia +at +au +aw +ax +az +ba +bb +bd +be +bf +bg +bh +bi +biz +bj +bm +bn +bo +br +bs +bt +bv +bw +by +bz +ca +cat +cc +cd +cf +cg +ch +ci +ck +cl +cm +cn +co +com +coop +cr +cu +cv +cw +cx +cy +cz +de +dj +dk +dm +do +dz +ec +edu +ee +eg +er +es +et +eu +fi +fj +fk +fm +fo +fr +ga +gb +gd +ge +gf +gg +gh +gi +gl +gm +gn +gov +gp +gq +gr +gs +gt +gu +gw +gy +hk +hm +hn +hr +ht +hu +id +ie +il +im +in +info +int +io +iq +ir +is +it +je +jm +jo +jobs +jp +ke +kg +kh +ki +km +kn +kp +kr +kw +ky +kz +la +lb +lc +li +lk +lr +ls +lt +lu +lv +ly +ma +mc +md +me +mg +mh +mil +mk +ml +mm +mn +mo +mobi +mp +mq +mr +ms +mt +mu +museum +mv +mw +mx +my +mz +na +name +nc +ne +net +nf +ng +ni +nl +no +np +nr +nu +nz +om +org +pa +pe +pf +pg +ph +pk +pl +pm +pn +post +pr +pro +ps +pt +pw +py +qa +re +ro +rs +ru +rw +sa +sb +sc +sd +se +sg +sh +si +sj +sk +sl +sm +sn +so +sr +st +su +sv +sx +sy +sz +tc +td +tel +tf +tg +th +tj +tk +tl +tm +tn +to +tp +tr +travel +tt +tv +tw +tz +ua +ug +uk +us +uy +uz +va +vc +ve +vg +vi +vn +vu +wf +ws +xn--0zwm56d +xn--11b5bs3a9aj6g +xn--3e0b707e +xn--45brj9c +xn--80akhbyknj4f +xn--80ao21a +xn--90a3ac +xn--9t4b11yi5a +xn--clchc0ea0b2g2a9gcd +xn--deba0ad +xn--fiqs8s +xn--fiqz9s +xn--fpcrj9c3d +xn--fzc2c9e2c +xn--g6w251d +xn--gecrj9c +xn--h2brj9c +xn--hgbk6aj7f53bba +xn--hlcj6aya9esc7a +xn--j6w193g +xn--jxalpdlp +xn--kgbechtv +xn--kprw13d +xn--kpry57d +xn--lgbbat1ad8j +xn--mgb9awbf +xn--mgbaam7a8h +xn--mgbayh7gpa +xn--mgbbh1a71e +xn--mgbc0a9azcg +xn--mgberp4a5d4ar +xn--mgbx4cd0ab +xn--o3cw4h +xn--ogbpf8fl +xn--p1ai +xn--pgbs0dh +xn--s9brj9c +xn--wgbh1c +xn--wgbl6a +xn--xkc2al3hye2a +xn--xkc2dl3a5ee0h +xn--yfro4i67o +xn--ygbi2ammx +xn--zckzah +xxx +ye +yt +za +zm +zw \ No newline at end of file diff --git a/splunk_eventgen/samples/internal_ips.sample b/splunk_eventgen/samples/internal_ips.sample new file mode 100644 index 00000000..a9070e8d --- /dev/null +++ b/splunk_eventgen/samples/internal_ips.sample @@ -0,0 +1,951 @@ +10.88.232.170 +10.88.153.34 +10.89.86.103 +10.89.108.98 +10.123.2.9 +10.90.150.222 +10.178.191.121 +10.91.215.193 +10.123.194.42 +10.123.194.42 +10.88.50.221 +10.91.136.210 +10.151.125.19 +10.86.252.201 +10.145.73.211 +10.152.220.151 +10.145.224.179 +10.168.32.2 +10.95.22.60 +10.86.252.201 +10.175.207.190 +10.152.162.9 +10.90.100.32 +10.150.132.242 +10.150.132.242 +10.86.181.156 +10.91.202.219 +10.91.74.198 +10.91.202.219 +10.88.35.78 +10.172.22.224 +10.185.31.33 +10.162.247.125 +10.152.53.222 +10.91.25.243 +10.91.25.243 +10.98.40.77 +10.151.34.146 +10.84.250.163 +10.90.100.32 +10.148.188.147 +10.154.158.105 +10.170.246.4 +10.179.212.77 +10.123.124.28 +10.123.124.28 +10.173.60.83 +10.121.82.247 +10.168.40.117 +10.89.181.26 +10.153.208.149 +10.120.226.95 +10.162.247.125 +10.85.5.11 +10.89.254.80 +10.154.8.65 +10.122.171.246 +10.99.222.66 +10.177.237.244 +10.172.155.181 +10.89.107.135 +10.123.125.160 +10.179.193.254 +10.179.193.254 +10.85.245.109 +10.120.12.226 +10.184.180.90 +10.175.163.61 +10.88.35.78 +10.175.0.116 +10.85.245.109 +10.121.139.48 +10.86.220.2 +10.123.176.152 +10.120.12.226 +10.144.8.66 +10.167.67.70 +10.179.121.51 +10.166.101.209 +10.173.119.236 +10.120.251.250 +10.168.211.65 +10.122.68.227 +10.122.7.163 +10.94.33.205 +10.148.161.103 +10.187.180.140 +10.186.177.160 +10.185.186.50 +10.171.10.88 +10.161.146.110 +10.185.163.233 +10.151.12.232 +10.152.110.151 +10.123.141.235 +10.149.245.182 +10.91.164.40 +10.187.55.51 +10.149.245.182 +10.147.141.101 +10.162.65.160 +10.122.23.196 +10.145.233.94 +10.172.155.181 +10.174.58.87 +10.146.106.176 +10.123.125.160 +10.154.66.66 +10.148.17.16 +10.157.6.88 +10.151.191.20 +10.132.171.78 +10.187.165.92 +10.153.94.133 +10.148.17.16 +10.165.74.249 +10.185.198.156 +10.184.108.156 +10.99.199.248 +10.86.220.2 +10.99.199.248 +10.87.251.230 +10.168.118.92 +10.168.247.238 +10.163.249.196 +10.179.121.51 +10.187.36.80 +10.84.186.98 +10.166.101.209 +10.186.204.29 +10.86.7.223 +10.84.24.192 +10.123.50.113 +10.186.177.160 +10.187.180.140 +10.146.224.148 +10.186.28.31 +10.186.28.31 +10.147.6.208 +10.95.215.7 +10.185.163.233 +10.90.192.49 +10.88.232.170 +10.121.23.194 +10.157.120.61 +10.186.221.70 +10.152.127.222 +10.154.193.33 +10.176.87.78 +10.176.87.78 +10.122.23.196 +10.91.99.125 +10.89.81.236 +10.169.212.193 +10.120.73.193 +10.171.30.254 +10.175.12.58 +10.95.232.172 +10.120.28.237 +10.150.20.61 +10.177.122.209 +10.95.129.147 +10.150.20.61 +10.86.70.72 +10.177.122.209 +10.169.15.7 +10.86.70.72 +10.165.74.249 +10.85.15.2 +10.178.163.168 +10.168.118.92 +10.157.149.229 +10.168.247.238 +10.90.65.167 +10.147.16.248 +10.185.148.226 +10.91.154.210 +10.186.51.216 +10.152.116.119 +10.89.4.172 +10.120.251.250 +10.122.68.227 +10.122.242.60 +10.95.64.145 +10.169.43.34 +10.84.215.85 +10.148.236.57 +10.185.140.200 +10.186.73.143 +10.187.36.80 +10.167.0.233 +10.177.211.214 +10.167.0.233 +10.177.211.214 +10.187.66.116 +10.179.102.38 +10.179.102.38 +10.184.209.97 +10.169.160.173 +10.172.155.54 +10.91.172.61 +10.91.172.61 +10.172.137.16 +10.85.105.94 +10.171.30.254 +10.156.91.39 +10.178.163.168 +10.123.178.139 +10.172.155.54 +10.186.204.172 +10.151.118.232 +10.186.204.172 +10.88.53.92 +10.170.54.174 +10.151.118.232 +10.151.246.53 +10.88.33.180 +10.95.174.21 +10.88.33.180 +10.157.196.89 +10.149.49.10 +10.146.229.254 +10.123.164.101 +10.123.141.235 +10.155.61.131 +10.185.43.165 +10.120.83.93 +10.150.112.220 +10.157.191.113 +10.89.4.172 +10.174.0.16 +10.89.7.165 +10.169.187.156 +10.121.245.92 +10.170.114.49 +10.177.21.81 +10.177.21.81 +10.171.200.6 +10.85.33.246 +10.145.105.209 +10.154.100.208 +10.173.29.16 +10.84.30.158 +10.145.141.224 +10.85.105.94 +10.150.55.193 +10.171.200.6 +10.186.185.151 +10.187.99.83 +10.169.15.7 +10.84.113.180 +10.89.146.208 +10.88.53.92 +10.165.58.82 +10.185.34.113 +10.150.31.135 +10.120.208.207 +10.120.208.207 +10.88.156.50 +10.158.75.243 +10.179.125.134 +10.158.255.30 +10.151.89.208 +10.84.159.171 +10.91.165.150 +10.169.43.34 +10.157.71.11 +10.154.128.55 +10.173.215.179 +10.87.16.136 +10.95.64.145 +10.146.108.101 +10.170.128.166 +10.146.108.101 +10.121.245.92 +10.169.187.156 +10.121.49.110 +10.95.247.50 +10.174.0.16 +108.97.15.244 +10.176.240.103 +10.156.184.246 +10.170.114.49 +10.159.231.160 +10.163.196.156 +10.177.185.205 +10.84.167.96 +10.88.148.223 +10.184.125.119 +10.186.117.235 +108.106.227.179 +10.156.173.90 +10.178.147.108 +10.144.194.79 +10.178.152.155 +10.87.80.86 +10.87.80.86 +10.120.251.250 +10.156.52.17 +10.174.200.119 +10.84.30.158 +10.173.173.124 +10.122.68.227 +10.187.155.143 +10.86.25.63 +10.187.179.162 +10.144.235.14 +10.187.99.83 +10.95.74.112 +10.95.74.112 +10.179.242.29 +10.155.83.232 +10.145.157.40 +10.148.245.116 +10.88.156.50 +10.184.240.63 +10.171.11.219 +10.144.237.252 +10.150.11.179 +10.156.113.90 +10.123.178.139 +10.121.45.90 +10.145.188.245 +10.91.165.150 +10.173.215.179 +10.155.164.34 +10.84.100.124 +10.121.92.169 +10.156.165.11 +10.174.113.138 +10.95.5.109 +10.172.71.122 +10.147.9.147 +10.147.9.147 +10.162.152.219 +10.90.92.92 +10.175.130.131 +10.157.243.84 +10.156.252.253 +10.184.201.112 +10.186.159.239 +10.186.217.239 +10.186.217.239 +10.159.40.117 +10.184.238.250 +10.184.137.99 +10.149.73.47 +10.179.37.79 +10.87.210.253 +10.187.155.143 +10.177.249.16 +10.176.196.207 +10.152.11.202 +10.172.3.217 +10.85.105.184 +10.144.91.209 +10.122.124.96 +10.156.158.187 +10.152.151.49 +10.159.201.178 +10.98.58.47 +10.170.54.174 +10.144.119.50 +10.152.159.179 +10.179.10.238 +10.174.181.136 +10.172.199.60 +10.171.215.182 +10.155.231.52 +10.179.236.5 +10.164.232.181 +10.84.100.124 +10.174.113.138 +10.99.4.4 +10.179.200.152 +10.179.200.152 +10.89.128.158 +10.162.152.219 +10.148.143.37 +10.154.196.241 +10.187.6.61 +10.186.144.157 +10.153.166.229 +10.163.243.2 +10.168.80.39 +10.84.22.59 +10.87.142.37 +10.168.80.39 +10.186.129.250 +108.118.34.203 +10.155.20.94 +10.177.64.102 +10.148.223.135 +10.89.42.18 +10.178.198.97 +10.147.164.143 +10.95.22.60 +10.176.196.207 +10.186.126.101 +10.122.124.96 +10.120.251.250 +10.90.133.113 +10.152.36.225 +10.147.217.9 +10.184.253.224 +10.122.68.227 +10.171.10.242 +10.176.13.131 +10.176.13.131 +10.98.58.47 +10.168.30.195 +10.174.3.152 +10.85.170.88 +10.179.37.79 +10.178.1.102 +10.150.243.248 +10.171.10.242 +10.158.97.222 +10.122.27.216 +10.176.40.67 +10.122.27.216 +10.179.236.5 +10.94.63.34 +10.150.60.106 +10.150.60.106 +10.87.150.157 +10.164.232.181 +10.146.86.213 +10.99.4.4 +10.153.49.217 +10.184.13.57 +10.187.94.11 +10.147.177.144 +10.121.45.90 +10.89.128.158 +10.146.23.89 +10.151.115.126 +10.153.209.44 +10.186.144.157 +10.123.188.24 +10.163.243.2 +10.148.26.227 +10.147.160.121 +10.84.54.32 +10.95.129.147 +10.155.235.210 +10.123.80.140 +10.178.198.97 +10.156.242.55 +10.187.165.92 +10.145.145.57 +10.149.104.109 +10.170.238.215 +10.91.147.19 +10.146.66.45 +10.90.133.113 +10.85.89.218 +10.86.18.62 +10.170.241.199 +10.176.221.247 +10.176.221.247 +10.169.255.210 +10.122.252.23 +10.121.188.30 +10.85.7.243 +10.157.207.251 +10.184.217.203 +10.185.67.197 +10.151.178.216 +10.84.151.48 +10.153.93.82 +10.179.235.28 +10.172.20.47 +10.176.175.119 +10.184.91.45 +10.95.5.109 +10.186.60.244 +10.184.91.45 +10.146.213.92 +10.120.137.110 +10.120.137.110 +10.173.119.236 +10.175.130.131 +10.85.245.109 +10.168.142.202 +10.147.66.34 +10.121.11.184 +10.177.97.252 +10.173.5.59 +10.122.211.114 +10.90.86.21 +10.90.86.21 +10.186.178.69 +10.184.2.253 +10.159.153.246 +10.186.132.107 +10.170.224.65 +10.90.178.9 +10.85.89.218 +10.184.5.195 +10.86.18.62 +10.155.230.93 +10.121.37.17 +10.177.177.173 +10.177.177.173 +10.185.198.156 +10.88.204.248 +10.147.140.87 +10.173.158.251 +10.123.170.54 +10.88.204.248 +10.186.133.28 +10.87.16.136 +10.184.129.29 +10.169.255.210 +10.184.176.70 +10.179.251.234 +10.170.105.145 +10.150.112.220 +10.161.146.110 +10.157.173.134 +10.122.86.199 +10.146.66.83 +10.85.56.175 +10.158.114.195 +10.122.27.216 +10.186.123.127 +10.174.3.152 +10.168.80.39 +10.98.200.43 +10.157.236.62 +10.121.45.90 +10.184.2.253 +10.88.132.110 +10.90.178.9 +10.187.132.168 +10.184.167.136 +10.168.80.39 +10.179.176.113 +10.87.82.118 +10.186.60.244 +10.173.20.254 +10.144.90.219 +10.91.28.32 +10.86.31.223 +10.176.201.171 +10.176.201.171 +10.85.60.133 +10.177.97.252 +10.155.163.25 +10.186.133.28 +10.87.82.118 +10.173.158.251 +10.184.129.29 +10.123.85.91 +108.115.181.224 +10.184.176.70 +10.155.246.200 +10.156.90.230 +10.152.57.49 +10.153.0.219 +10.160.53.104 +10.169.199.125 +10.155.93.246 +10.178.1.102 +10.174.153.117 +10.145.60.177 +10.89.89.79 +10.85.56.175 +10.186.123.127 +10.91.22.183 +10.168.83.177 +10.177.170.216 +10.98.200.43 +10.173.71.214 +10.155.40.51 +10.120.137.110 +10.150.91.103 +10.185.57.185 +10.185.57.185 +10.150.51.219 +10.164.120.186 +10.157.163.53 +10.153.120.100 +10.173.20.254 +10.187.209.102 +10.99.226.145 +10.187.132.168 +10.153.252.194 +10.121.100.242 +10.186.127.115 +10.122.173.236 +10.122.171.246 +10.88.89.88 +10.122.11.175 +10.186.212.134 +10.88.59.8 +10.89.29.115 +10.154.224.252 +10.171.18.43 +10.123.33.21 +10.84.77.86 +10.179.75.61 +10.167.129.50 +10.89.62.241 +10.97.66.133 +10.121.37.17 +10.89.62.241 +10.179.176.113 +10.159.39.202 +10.87.120.201 +10.123.170.54 +10.85.69.60 +10.88.186.201 +10.94.48.216 +10.86.79.167 +10.186.60.244 +10.88.63.200 +10.88.63.200 +10.99.66.34 +10.121.211.216 +10.89.89.79 +10.148.36.45 +10.149.191.81 +10.186.236.22 +10.186.236.22 +10.174.96.92 +10.122.242.60 +10.87.73.240 +10.121.223.194 +10.121.5.92 +10.87.73.240 +10.168.165.97 +10.186.174.30 +10.185.94.54 +10.149.197.224 +10.146.132.200 +10.157.196.99 +10.120.7.193 +10.185.195.228 +10.89.138.237 +10.89.138.237 +10.122.27.216 +10.185.21.151 +10.147.131.243 +10.186.206.159 +10.187.184.50 +10.179.138.161 +10.99.43.62 +10.154.112.152 +10.154.112.152 +10.177.59.94 +10.152.32.227 +10.99.103.72 +10.85.157.9 +10.85.157.9 +10.121.45.90 +10.184.20.120 +10.156.3.224 +10.184.11.153 +10.156.3.224 +10.88.89.88 +10.184.11.153 +10.152.126.112 +10.149.94.44 +10.121.197.105 +10.123.33.21 +10.169.38.85 +10.178.196.196 +10.122.112.71 +10.159.77.23 +10.90.57.155 +10.171.18.43 +10.150.152.52 +10.86.254.51 +10.154.27.171 +10.97.66.133 +10.149.63.58 +10.169.199.125 +10.186.34.155 +10.169.38.85 +10.87.117.85 +10.87.120.201 +10.88.186.201 +10.178.193.141 +10.169.140.40 +10.86.79.167 +10.177.17.60 +10.154.25.106 +10.144.154.223 +10.90.54.1 +10.170.241.199 +10.123.105.247 +10.169.46.197 +10.159.132.197 +10.90.249.242 +10.168.83.177 +10.173.185.64 +10.185.94.54 +10.186.174.30 +10.174.96.92 +10.144.66.5 +10.155.38.154 +10.123.175.128 +10.122.253.51 +10.186.186.198 +10.185.104.182 +10.149.98.49 +10.157.248.45 +10.185.148.20 +10.84.187.44 +10.85.105.184 +10.158.83.94 +10.98.218.30 +10.185.195.228 +10.91.190.241 +10.158.203.37 +10.186.248.46 +10.120.109.82 +10.120.137.110 +10.184.171.56 +10.184.171.56 +10.184.20.120 +108.119.185.220 +10.121.197.105 +10.186.232.241 +10.123.182.223 +10.122.183.49 +10.176.185.54 +10.122.183.49 +10.87.212.228 +10.90.151.105 +10.121.194.104 +10.90.151.105 +10.177.200.59 +10.177.63.37 +10.149.150.1 +10.123.201.145 +10.155.3.240 +10.87.117.85 +10.186.140.173 +10.122.11.175 +10.187.55.51 +10.98.106.225 +10.159.88.132 +10.86.254.51 +10.90.54.1 +10.90.249.242 +10.149.111.250 +10.187.157.200 +10.149.111.250 +10.121.47.88 +10.186.85.250 +10.121.37.17 +10.91.199.143 +10.147.95.50 +10.185.29.26 +10.178.196.196 +10.158.164.2 +10.184.121.230 +10.154.16.165 +10.123.170.54 +10.123.175.128 +10.122.253.51 +10.147.70.19 +10.186.97.185 +10.186.115.80 +10.88.97.124 +10.153.140.122 +10.159.4.17 +10.105.159.56 +10.91.190.241 +10.94.48.216 +10.172.138.201 +10.123.210.96 +10.172.138.201 +10.120.109.82 +10.146.14.234 +10.99.53.164 +10.146.169.164 +10.186.248.46 +10.185.4.151 +10.154.242.95 +10.153.60.212 +10.157.200.154 +10.91.113.30 +10.90.84.191 +10.120.7.193 +10.157.83.114 +10.147.89.174 +10.84.12.108 +10.172.95.74 +10.88.239.25 +10.87.106.58 +10.150.8.76 +10.174.16.172 +10.173.145.191 +10.186.127.115 +10.173.145.191 +10.90.22.188 +10.123.139.156 +10.87.82.115 +10.95.233.119 +10.148.199.219 +10.177.63.37 +10.149.105.161 +10.97.154.146 +10.148.36.75 +10.174.187.15 +10.175.161.179 +10.174.187.15 +10.175.161.179 +10.87.82.115 +107.34.5.77 +108.119.77.220 +10.157.178.58 +10.175.163.61 +10.167.91.27 +10.166.221.58 +10.166.221.58 +10.177.104.14 +10.185.29.26 +10.159.199.89 +10.86.29.105 +10.187.157.200 +10.184.121.230 +10.164.61.128 +10.86.29.105 +10.85.38.37 +10.145.220.199 +10.186.85.250 +10.120.220.21 +10.91.79.22 +10.148.252.117 +10.157.236.62 +10.159.186.146 +10.87.102.57 +10.86.189.239 +10.88.97.124 +10.153.201.22 +10.145.50.55 +10.91.22.183 +10.98.27.195 +10.184.185.225 +10.152.233.66 +10.157.217.243 +10.123.210.96 +10.91.8.131 +10.184.4.195 +10.155.93.246 +10.186.97.28 +10.88.179.163 +10.91.95.2 +10.90.254.192 +10.91.95.2 +10.166.214.42 +10.99.53.164 +10.90.84.191 +10.122.201.54 +10.84.12.108 +10.86.83.139 +10.88.239.25 +10.87.106.58 +10.121.250.120 +10.186.233.107 +10.123.139.156 +10.187.39.60 +10.187.210.188 +10.184.224.137 +10.158.158.79 +10.91.169.242 +10.91.169.242 +10.121.175.224 +10.91.199.143 +10.175.215.17 +10.122.183.49 +10.155.85.64 +10.156.127.22 +10.88.4.22 +10.164.61.128 +10.122.89.26 +10.91.79.22 +10.151.94.91 +10.150.107.203 +10.149.126.245 +10.89.86.103 +10.151.27.87 +10.185.229.204 +10.145.97.184 +10.145.145.100 +10.177.2.84 +10.154.16.165 +10.85.103.2 +10.88.89.237 +10.88.89.237 +10.98.27.195 +10.145.138.114 +10.121.65.171 +10.85.33.246 +10.91.8.131 +10.121.37.17 +10.158.173.3 +10.90.150.222 +10.84.151.48 +10.151.67.172 +10.148.193.91 +10.178.155.199 +10.123.170.54 +10.169.212.193 +10.148.193.91 +10.176.170.148 +10.185.148.20 +10.186.186.198 +10.90.254.192 +10.185.124.240 +10.86.217.233 +10.86.83.139 +10.95.233.119 +10.177.123.11 +10.157.52.116 +10.170.189.248 +10.145.152.235 +10.122.216.74 +10.151.68.71 +10.97.14.129 +10.187.39.60 +10.184.227.115 +10.187.210.188 +10.96.16.252 +10.184.224.137 +10.150.170.55 +10.154.250.190 +10.89.107.135 +10.175.215.17 +10.84.159.171 +10.88.34.250 +10.184.238.250 +10.88.4.22 +10.175.90.228 +10.163.196.156 +10.158.68.159 +10.187.14.109 +10.184.180.90 +10.153.58.241 +10.150.219.53 +10.185.240.34 +10.97.175.248 +10.154.177.173 +10.87.234.179 +10.95.31.172 +10.95.31.172 diff --git a/splunk_eventgen/samples/ip_address.sample b/splunk_eventgen/samples/ip_address.sample new file mode 100644 index 00000000..1d8602d9 --- /dev/null +++ b/splunk_eventgen/samples/ip_address.sample @@ -0,0 +1,50 @@ +10.11.36.1 +10.11.36.2 +10.11.36.3 +10.11.36.4 +10.11.36.5 +10.11.36.6 +10.11.36.7 +10.11.36.8 +10.11.36.9 +10.11.36.10 +10.11.36.11 +10.11.36.12 +10.11.36.13 +10.11.36.14 +10.11.36.15 +10.11.36.16 +10.11.36.17 +10.11.36.18 +10.11.36.19 +10.11.36.20 +10.11.36.21 +10.11.36.22 +10.11.36.23 +10.11.36.24 +10.11.36.25 +10.11.36.26 +10.11.36.27 +10.11.36.28 +10.11.36.29 +10.11.36.30 +10.11.36.31 +10.11.36.32 +10.11.36.33 +10.11.36.34 +10.11.36.35 +10.11.36.36 +10.11.36.37 +10.11.36.38 +10.11.36.39 +10.11.36.40 +10.11.36.41 +10.11.36.42 +10.11.36.43 +10.11.36.44 +10.11.36.45 +10.11.36.46 +10.11.36.47 +10.11.36.48 +10.11.36.49 +10.11.36.50 \ No newline at end of file diff --git a/splunk_eventgen/samples/lastNames.sample b/splunk_eventgen/samples/lastNames.sample new file mode 100644 index 00000000..8e263542 --- /dev/null +++ b/splunk_eventgen/samples/lastNames.sample @@ -0,0 +1,1002 @@ +SMITH +JOHNSON +WILLIAMS +JONES +BROWN +DAVIS +MILLER +WILSON +MOORE +TAYLOR +ANDERSON +THOMAS +JACKSON +WHITE +HARRIS +MARTIN +THOMPSON +GARCIA +MARTINEZ +ROBINSON +CLARK +RODRIGUEZ +LEWIS +LEE +WALKER +HALL +ALLEN +YOUNG +HERNANDEZ +KING +WRIGHT +LOPEZ +HILL +SCOTT +GREEN +ADAMS +BAKER +GONZALEZ +NELSON +CARTER +MITCHELL +PEREZ +ROBERTS +TURNER +PHILLIPS +CAMPBELL +PARKER +EVANS +EDWARDS +COLLINS +STEWART +SANCHEZ +MORRIS +ROGERS +REED +COOK +MORGAN +BELL +MURPHY +BAILEY +RIVERA +COOPER +RICHARDSON +COX +HOWARD +WARD +TORRES +PETERSON +GRAY +RAMIREZ +JAMES +WATSON +BROOKS +KELLY +SANDERS +PRICE +BENNETT +WOOD +BARNES +ROSS +HENDERSON +COLEMAN +JENKINS +PERRY +POWELL +LONG +PATTERSON +HUGHES +FLORES +WASHINGTON +BUTLER +SIMMONS +FOSTER +GONZALES +BRYANT +ALEXANDER +RUSSELL +GRIFFIN +DIAZ +HAYES +MYERS +FORD +HAMILTON +GRAHAM +SULLIVAN +WALLACE +WOODS +COLE +WEST +JORDAN +OWENS +REYNOLDS +FISHER +ELLIS +HARRISON +GIBSON +MCDONALD +CRUZ +MARSHALL +ORTIZ +GOMEZ +MURRAY +FREEMAN +WELLS +WEBB +SIMPSON +STEVENS +TUCKER +PORTER +HUNTER +HICKS +CRAWFORD +HENRY +BOYD +MASON +MORALES +KENNEDY +WARREN +DIXON +RAMOS +REYES +BURNS +GORDON +SHAW +HOLMES +RICE +ROBERTSON +HUNT +BLACK +DANIELS +PALMER +MILLS +NICHOLS +GRANT +KNIGHT +FERGUSON +ROSE +STONE +HAWKINS +DUNN +PERKINS +HUDSON +SPENCER +GARDNER +STEPHENS +PAYNE +PIERCE +BERRY +MATTHEWS +ARNOLD +WAGNER +WILLIS +RAY +WATKINS +OLSON +CARROLL +DUNCAN +SNYDER +HART +CUNNINGHAM +BRADLEY +LANE +ANDREWS +RUIZ +HARPER +FOX +RILEY +ARMSTRONG +CARPENTER +WEAVER +GREENE +LAWRENCE +ELLIOTT +CHAVEZ +SIMS +AUSTIN +PETERS +KELLEY +FRANKLIN +LAWSON +FIELDS +GUTIERREZ +RYAN +SCHMIDT +CARR +VASQUEZ +CASTILLO +WHEELER +CHAPMAN +OLIVER +MONTGOMERY +RICHARDS +WILLIAMSON +JOHNSTON +BANKS +MEYER +BISHOP +MCCOY +HOWELL +ALVAREZ +MORRISON +HANSEN +FERNANDEZ +GARZA +HARVEY +LITTLE +BURTON +STANLEY +NGUYEN +GEORGE +JACOBS +REID +KIM +FULLER +LYNCH +DEAN +GILBERT +GARRETT +ROMERO +WELCH +LARSON +FRAZIER +BURKE +HANSON +DAY +MENDOZA +MORENO +BOWMAN +MEDINA +FOWLER +BREWER +HOFFMAN +CARLSON +SILVA +PEARSON +HOLLAND +DOUGLAS +FLEMING +JENSEN +VARGAS +BYRD +DAVIDSON +HOPKINS +MAY +TERRY +HERRERA +WADE +SOTO +WALTERS +CURTIS +NEAL +CALDWELL +LOWE +JENNINGS +BARNETT +GRAVES +JIMENEZ +HORTON +SHELTON +BARRETT +OBRIEN +CASTRO +SUTTON +GREGORY +MCKINNEY +LUCAS +MILES +CRAIG +RODRIQUEZ +CHAMBERS +HOLT +LAMBERT +FLETCHER +WATTS +BATES +HALE +RHODES +PENA +BECK +NEWMAN +HAYNES +MCDANIEL +MENDEZ +BUSH +VAUGHN +PARKS +DAWSON +SANTIAGO +NORRIS +HARDY +LOVE +STEELE +CURRY +POWERS +SCHULTZ +BARKER +GUZMAN +PAGE +MUNOZ +BALL +KELLER +CHANDLER +WEBER +LEONARD +WALSH +LYONS +RAMSEY +WOLFE +SCHNEIDER +MULLINS +BENSON +SHARP +BOWEN +DANIEL +BARBER +CUMMINGS +HINES +BALDWIN +GRIFFITH +VALDEZ +HUBBARD +SALAZAR +REEVES +WARNER +STEVENSON +BURGESS +SANTOS +TATE +CROSS +GARNER +MANN +MACK +MOSS +THORNTON +DENNIS +MCGEE +FARMER +DELGADO +AGUILAR +VEGA +GLOVER +MANNING +COHEN +HARMON +RODGERS +ROBBINS +NEWTON +TODD +BLAIR +HIGGINS +INGRAM +REESE +CANNON +STRICKLAND +TOWNSEND +POTTER +GOODWIN +WALTON +ROWE +HAMPTON +ORTEGA +PATTON +SWANSON +JOSEPH +FRANCIS +GOODMAN +MALDONADO +YATES +BECKER +ERICKSON +HODGES +RIOS +CONNER +ADKINS +WEBSTER +NORMAN +MALONE +HAMMOND +FLOWERS +COBB +MOODY +QUINN +BLAKE +MAXWELL +POPE +FLOYD +OSBORNE +PAUL +MCCARTHY +GUERRERO +LINDSEY +ESTRADA +SANDOVAL +GIBBS +TYLER +GROSS +FITZGERALD +STOKES +DOYLE +SHERMAN +SAUNDERS +WISE +COLON +GILL +ALVARADO +GREER +PADILLA +SIMON +WATERS +NUNEZ +BALLARD +SCHWARTZ +MCBRIDE +HOUSTON +CHRISTENSEN +KLEIN +PRATT +BRIGGS +PARSONS +MCLAUGHLIN +ZIMMERMAN +FRENCH +BUCHANAN +MORAN +COPELAND +ROY +PITTMAN +BRADY +MCCORMICK +HOLLOWAY +BROCK +POOLE +FRANK +LOGAN +OWEN +BASS +MARSH +DRAKE +WONG +JEFFERSON +PARK +MORTON +ABBOTT +SPARKS +PATRICK +NORTON +HUFF +CLAYTON +MASSEY +LLOYD +FIGUEROA +CARSON +BOWERS +ROBERSON +BARTON +TRAN +LAMB +HARRINGTON +CASEY +BOONE +CORTEZ +CLARKE +MATHIS +SINGLETON +WILKINS +CAIN +BRYAN +UNDERWOOD +HOGAN +MCKENZIE +COLLIER +LUNA +PHELPS +MCGUIRE +ALLISON +BRIDGES +WILKERSON +NASH +SUMMERS +ATKINS +WILCOX +PITTS +CONLEY +MARQUEZ +BURNETT +RICHARD +COCHRAN +CHASE +DAVENPORT +HOOD +GATES +CLAY +AYALA +SAWYER +ROMAN +VAZQUEZ +DICKERSON +HODGE +ACOSTA +FLYNN +ESPINOZA +NICHOLSON +MONROE +WOLF +MORROW +KIRK +RANDALL +ANTHONY +WHITAKER +OCONNOR +SKINNER +WARE +MOLINA +KIRBY +HUFFMAN +BRADFORD +CHARLES +GILMORE +DOMINGUEZ +ONEAL +BRUCE +LANG +COMBS +KRAMER +HEATH +HANCOCK +GALLAGHER +GAINES +SHAFFER +SHORT +WIGGINS +MATHEWS +MCCLAIN +FISCHER +WALL +SMALL +MELTON +HENSLEY +BOND +DYER +CAMERON +GRIMES +CONTRERAS +CHRISTIAN +WYATT +BAXTER +SNOW +MOSLEY +SHEPHERD +LARSEN +HOOVER +BEASLEY +GLENN +PETERSEN +WHITEHEAD +MEYERS +KEITH +GARRISON +VINCENT +SHIELDS +HORN +SAVAGE +OLSEN +SCHROEDER +HARTMAN +WOODARD +MUELLER +KEMP +DELEON +BOOTH +PATEL +CALHOUN +WILEY +EATON +CLINE +NAVARRO +HARRELL +LESTER +HUMPHREY +PARRISH +DURAN +HUTCHINSON +HESS +DORSEY +BULLOCK +ROBLES +BEARD +DALTON +AVILA +VANCE +RICH +BLACKWELL +YORK +JOHNS +BLANKENSHIP +TREVINO +SALINAS +CAMPOS +PRUITT +MOSES +CALLAHAN +GOLDEN +MONTOYA +HARDIN +GUERRA +MCDOWELL +CAREY +STAFFORD +GALLEGOS +HENSON +WILKINSON +BOOKER +MERRITT +MIRANDA +ATKINSON +ORR +DECKER +HOBBS +PRESTON +TANNER +KNOX +PACHECO +STEPHENSON +GLASS +ROJAS +SERRANO +MARKS +HICKMAN +ENGLISH +SWEENEY +STRONG +PRINCE +MCCLURE +CONWAY +WALTER +ROTH +MAYNARD +FARRELL +LOWERY +HURST +NIXON +WEISS +TRUJILLO +ELLISON +SLOAN +JUAREZ +WINTERS +MCLEAN +RANDOLPH +LEON +BOYER +VILLARREAL +MCCALL +GENTRY +CARRILLO +KENT +AYERS +LARA +SHANNON +SEXTON +PACE +HULL +LEBLANC +BROWNING +VELASQUEZ +LEACH +CHANG +HOUSE +SELLERS +HERRING +NOBLE +FOLEY +BARTLETT +MERCADO +LANDRY +DURHAM +WALLS +BARR +MCKEE +BAUER +RIVERS +EVERETT +BRADSHAW +PUGH +VELEZ +RUSH +ESTES +DODSON +MORSE +SHEPPARD +WEEKS +CAMACHO +BEAN +BARRON +LIVINGSTON +MIDDLETON +SPEARS +BRANCH +BLEVINS +CHEN +KERR +MCCONNELL +HATFIELD +HARDING +ASHLEY +SOLIS +HERMAN +FROST +GILES +BLACKBURN +WILLIAM +PENNINGTON +WOODWARD +FINLEY +MCINTOSH +KOCH +BEST +SOLOMON +MCCULLOUGH +DUDLEY +NOLAN +BLANCHARD +RIVAS +BRENNAN +MEJIA +KANE +BENTON +JOYCE +BUCKLEY +HALEY +VALENTINE +MADDOX +RUSSO +MCKNIGHT +BUCK +MOON +MCMILLAN +CROSBY +BERG +DOTSON +MAYS +ROACH +CHURCH +CHAN +RICHMOND +MEADOWS +FAULKNER +ONEILL +KNAPP +KLINE +BARRY +OCHOA +JACOBSON +GAY +AVERY +HENDRICKS +HORNE +SHEPARD +HEBERT +CHERRY +CARDENAS +MCINTYRE +WHITNEY +WALLER +HOLMAN +DONALDSON +CANTU +TERRELL +MORIN +GILLESPIE +FUENTES +TILLMAN +SANFORD +BENTLEY +PECK +KEY +SALAS +ROLLINS +GAMBLE +DICKSON +BATTLE +SANTANA +CABRERA +CERVANTES +HOWE +HINTON +HURLEY +SPENCE +ZAMORA +YANG +MCNEIL +SUAREZ +CASE +PETTY +GOULD +MCFARLAND +SAMPSON +CARVER +BRAY +ROSARIO +MACDONALD +STOUT +HESTER +MELENDEZ +DILLON +FARLEY +HOPPER +GALLOWAY +POTTS +BERNARD +JOYNER +STEIN +AGUIRRE +OSBORN +MERCER +BENDER +FRANCO +ROWLAND +SYKES +BENJAMIN +TRAVIS +PICKETT +CRANE +SEARS +MAYO +DUNLAP +HAYDEN +WILDER +MCKAY +COFFEY +MCCARTY +EWING +COOLEY +VAUGHAN +BONNER +COTTON +HOLDER +STARK +FERRELL +CANTRELL +FULTON +LYNN +LOTT +CALDERON +ROSA +POLLARD +HOOPER +BURCH +MULLEN +FRY +RIDDLE +LEVY +DAVID +DUKE +ODONNELL +GUY +MICHAEL +BRITT +FREDERICK +DAUGHERTY +BERGER +DILLARD +ALSTON +JARVIS +FRYE +RIGGS +CHANEY +ODOM +DUFFY +FITZPATRICK +VALENZUELA +MERRILL +MAYER +ALFORD +MCPHERSON +ACEVEDO +DONOVAN +BARRERA +ALBERT +COTE +REILLY +COMPTON +RAYMOND +MOONEY +MCGOWAN +CRAFT +CLEVELAND +CLEMONS +WYNN +NIELSEN +BAIRD +STANTON +SNIDER +ROSALES +BRIGHT +WITT +STUART +HAYS +HOLDEN +RUTLEDGE +KINNEY +CLEMENTS +CASTANEDA +SLATER +HAHN +EMERSON +CONRAD +BURKS +DELANEY +PATE +LANCASTER +SWEET +JUSTICE +TYSON +SHARPE +WHITFIELD +TALLEY +MACIAS +IRWIN +BURRIS +RATLIFF +MCCRAY +MADDEN +KAUFMAN +BEACH +GOFF +CASH +BOLTON +MCFADDEN +LEVINE +GOOD +BYERS +KIRKLAND +KIDD +WORKMAN +CARNEY +DALE +MCLEOD +HOLCOMB +ENGLAND +FINCH +HEAD +BURT +HENDRIX +SOSA +HANEY +FRANKS +SARGENT +NIEVES +DOWNS +RASMUSSEN +BIRD +HEWITT +LINDSAY +LE +FOREMAN +VALENCIA +ONEIL +DELACRUZ +VINSON +DEJESUS +HYDE +FORBES +GILLIAM +GUTHRIE +WOOTEN +HUBER +BARLOW +BOYLE +MCMAHON +BUCKNER +ROCHA +PUCKETT +LANGLEY +KNOWLES +COOKE +VELAZQUEZ +WHITLEY +NOEL +VANG + +Read more at http://names.mongabay.com/most_common_surnames.htm#CyreE4PYIvmxDJ5K.99 \ No newline at end of file diff --git a/splunk_eventgen/samples/linux_arch.sample b/splunk_eventgen/samples/linux_arch.sample new file mode 100644 index 00000000..33ef3111 --- /dev/null +++ b/splunk_eventgen/samples/linux_arch.sample @@ -0,0 +1,25 @@ +i386 +i686 +x86_64 +ia64 +alpha +amd64 +arm +armeb +armel +hppa +m32r +m68k +mips +mipsel +powerpc +ppc64 +s390 +s390x +sh3 +sh3eb +sh4 +sh4eb +sparc +sparcv8 +sparcv9 \ No newline at end of file diff --git a/splunk_eventgen/samples/mac_address.sample b/splunk_eventgen/samples/mac_address.sample new file mode 100644 index 00000000..37e425c9 --- /dev/null +++ b/splunk_eventgen/samples/mac_address.sample @@ -0,0 +1,50 @@ +19:61:3c:3e:20:84 +c7:df:23:1a:e8:ba +ba:b7:72:7a:16:30 +52:70:fa:52:7c:e4 +6a:83:f8:c6:5a:fc +e2:64:ae:81:26:f7 +ab:1a:41:74:87:2c +2f:29:25:a5:78:de +fb:69:33:d1:44:a4 +ac:d7:f5:9c:16:50 +67:c4:0e:fe:1a:34 +1a:ae:35:d8:b8:52 +af:fd:16:4f:9e:d8 +4a:43:e4:f5:3a:ae +0b:4a:fe:06:36:92 +73:09:b0:ec:6a:35 +d9:9d:e8:dc:91:d3 +76:a1:f8:7a:5b:6c +ec:ab:17:6c:17:c6 +92:90:55:51:61:31 +03:53:39:5b:ed:ab +da:b9:81:e1:17:01 +8b:66:79:4a:bf:c5 +f0:6c:88:2a:34:52 +74:c2:0a:56:49:99 +60:6e:74:df:78:fb +c0:eb:cf:50:74:6d +ad:7b:3d:db:49:8b +d8:9b:1f:b9:e6:01 +de:09:a2:ae:7a:93 +01:30:f9:d0:79:13 +20:c5:8e:0b:9d:a3 +ca:b6:07:cb:eb:a4 +ab:53:c2:c6:97:6b +84:df:af:01:a9:a5 +23:15:be:bc:d1:7f +d3:da:83:05:5e:2a +04:83:e5:65:6b:2c +5b:68:1e:b8:1d:25 +72:3d:78:de:38:ec +44:23:aa:bc:b0:b0 +3e:27:1c:ce:52:1f +88:7d:9a:11:64:de +81:4e:78:df:ad:d7 +59:7b:7f:54:da:c9 +8c:37:db:f0:2b:25 +d2:54:56:e0:f2:d9 +7e:70:7a:94:ca:76 +4b:a0:b6:18:fb:d0 +d0:ef:08:18:0d:8d \ No newline at end of file diff --git a/splunk_eventgen/samples/malicious_domains.sample b/splunk_eventgen/samples/malicious_domains.sample new file mode 100644 index 00000000..cb292097 --- /dev/null +++ b/splunk_eventgen/samples/malicious_domains.sample @@ -0,0 +1,5 @@ +www.theflyingpoodles.com +www.partychimp.com +www.truepants.ru +www.makerealcashnow.com +www.freepetcaretips.com \ No newline at end of file diff --git a/splunk_eventgen/samples/markets.sample b/splunk_eventgen/samples/markets.sample new file mode 100644 index 00000000..ccb98634 --- /dev/null +++ b/splunk_eventgen/samples/markets.sample @@ -0,0 +1 @@ +1101,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1102,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1103,SPRINGFIELD,MA,42.1029,-72.588735,HAMPDEN 1104,SPRINGFIELD,MA,42.128848,-72.577769,HAMPDEN 1105,SPRINGFIELD,MA,42.099931,-72.578312,HAMPDEN 1107,SPRINGFIELD,MA,42.117907,-72.606544,HAMPDEN 1108,SPRINGFIELD,MA,42.085314,-72.558432,HAMPDEN 1109,SPRINGFIELD,MA,42.114455,-72.554349,HAMPDEN 1111,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1115,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1118,SPRINGFIELD,MA,42.092937,-72.527445,HAMPDEN 1119,SPRINGFIELD,MA,42.12473,-72.51211,HAMPDEN 1128,SPRINGFIELD,MA,42.094397,-72.488903,HAMPDEN 1129,SPRINGFIELD,MA,42.122263,-72.487622,HAMPDEN 1133,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1138,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1139,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1144,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1151,SPRINGFIELD,MA,42.153225,-72.505048,HAMPDEN 1152,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1195,SPRINGFIELD,MA,42.1015,-72.5898,HAMPDEN 1199,SPRINGFIELD,MA,42.106,-72.5977,HAMPDEN 1601,WORCESTER,MA,42.2621,-71.8034,WORCESTER 1602,WORCESTER,MA,42.270251,-71.841678,WORCESTER 1603,WORCESTER,MA,42.245033,-71.837995,WORCESTER 1604,WORCESTER,MA,42.254084,-71.774626,WORCESTER 1605,WORCESTER,MA,42.289391,-71.788795,WORCESTER 1606,WORCESTER,MA,42.311029,-71.795774,WORCESTER 1607,WORCESTER,MA,42.230294,-71.793837,WORCESTER 1608,WORCESTER,MA,42.262425,-71.800262,WORCESTER 1609,WORCESTER,MA,42.275387,-71.817456,WORCESTER 1610,WORCESTER,MA,42.249186,-71.810798,WORCESTER 1613,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1614,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1615,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1653,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1654,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1655,WORCESTER,MA,42.2625,-71.8027,WORCESTER 1801,WOBURN,MA,42.482894,-71.157404,MIDDLESEX 1806,WOBURN,MA,42.4791,-71.1527,MIDDLESEX 1807,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1808,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1813,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1815,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1888,WOBURN,MA,42.506,-71.1265,MIDDLESEX 1901,LYNN,MA,42.463378,-70.945516,ESSEX 1902,LYNN,MA,42.469814,-70.941989,ESSEX 1903,LYNN,MA,42.4647,-70.9467,ESSEX 1904,LYNN,MA,42.487453,-70.962798,ESSEX 1905,LYNN,MA,42.46453,-70.973825,ESSEX 1910,LYNN,MA,42.4647,-70.9467,ESSEX 2108,BOSTON,MA,42.357603,-71.068432,SUFFOLK 2109,BOSTON,MA,42.362963,-71.053386,SUFFOLK 2110,BOSTON,MA,42.357636,-71.051417,SUFFOLK 2111,BOSTON,MA,42.350348,-71.0629,SUFFOLK 2112,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2113,BOSTON,MA,42.365656,-71.055958,SUFFOLK 2114,BOSTON,MA,42.361111,-71.06823,SUFFOLK 2115,BOSTON,MA,42.342706,-71.092215,SUFFOLK 2116,BOSTON,MA,42.349201,-71.076798,SUFFOLK 2117,BOSTON,MA,42.3503,-71.0762,SUFFOLK 2118,BOSTON,MA,42.340154,-71.075627,SUFFOLK 2119,BOSTON,MA,42.322414,-71.086923,SUFFOLK 2120,BOSTON,MA,42.332844,-71.097978,SUFFOLK 2121,BOSTON,MA,42.307503,-71.08305,SUFFOLK 2122,BOSTON,MA,42.297278,-71.058304,SUFFOLK 2123,BOSTON,MA,42.345,-71.0876,SUFFOLK 2124,BOSTON,MA,42.287984,-71.072898,SUFFOLK 2125,BOSTON,MA,42.315305,-71.061924,SUFFOLK 2127,BOSTON,MA,42.333454,-71.043792,SUFFOLK 2128,BOSTON,MA,42.378137,-71.028682,SUFFOLK 2133,BOSTON,MA,42.3573,-71.065,SUFFOLK 2138,CAMBRIDGE,MA,42.377045,-71.125611,MIDDLESEX 2139,CAMBRIDGE,MA,42.364688,-71.104155,MIDDLESEX 2140,CAMBRIDGE,MA,42.391366,-71.129379,MIDDLESEX 2141,CAMBRIDGE,MA,42.370701,-71.088277,MIDDLESEX 2142,CAMBRIDGE,MA,42.362025,-71.083011,MIDDLESEX 2163,BOSTON,MA,42.364005,-71.141879,SUFFOLK 2196,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2199,BOSTON,MA,42.347873,-71.082543,SUFFOLK 2201,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2203,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2204,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2205,BOSTON,MA,42.348,-71.0551,SUFFOLK 2206,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2207,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2210,BOSTON,MA,42.348921,-71.046511,SUFFOLK 2211,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2212,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2215,BOSTON,MA,42.347088,-71.102689,SUFFOLK 2216,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2217,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2222,BOSTON,MA,42.3624,-71.0628,SUFFOLK 2238,CAMBRIDGE,MA,42.3731,-71.124,MIDDLESEX 2239,CAMBRIDGE,MA,42.3662,-71.1063,MIDDLESEX 2241,BOSTON,MA,42.3576,-71.0579,SUFFOLK 2266,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2283,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2284,BOSTON,MA,42.3483,-71.0556,SUFFOLK 2293,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2295,BOSTON,MA,42.3487,-71.0745,SUFFOLK 2297,BOSTON,MA,42.3583,-71.0602,SUFFOLK 2298,BOSTON,MA,42.3422,-71.0506,SUFFOLK 2740,NEW BEDFORD,MA,41.634749,-70.9372,BRISTOL 2741,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2742,NEW BEDFORD,MA,41.6364,-70.9275,BRISTOL 2744,NEW BEDFORD,MA,41.612716,-70.916746,BRISTOL 2745,NEW BEDFORD,MA,41.691337,-70.935545,BRISTOL 2746,NEW BEDFORD,MA,41.659972,-70.93243,BRISTOL 2901,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2902,PROVIDENCE,RI,41.8255,-71.4114,PROVIDENCE 2903,PROVIDENCE,RI,41.820002,-71.415801,PROVIDENCE 2904,PROVIDENCE,RI,41.860461,-71.438102,PROVIDENCE 2905,PROVIDENCE,RI,41.786568,-71.403146,PROVIDENCE 2906,PROVIDENCE,RI,41.835104,-71.397065,PROVIDENCE 2907,PROVIDENCE,RI,41.800842,-71.424039,PROVIDENCE 2908,PROVIDENCE,RI,41.838294,-71.437684,PROVIDENCE 2909,PROVIDENCE,RI,41.816777,-71.448165,PROVIDENCE 2912,PROVIDENCE,RI,41.825833,-71.400833,PROVIDENCE 2918,PROVIDENCE,RI,41.8454,-71.4398,PROVIDENCE 2940,PROVIDENCE,RI,41.8238,-71.4133,PROVIDENCE 3101,MANCHESTER,NH,42.992858,-71.463255,HILLSBOROUGH 3102,MANCHESTER,NH,42.99442,-71.488433,HILLSBOROUGH 3103,MANCHESTER,NH,42.965563,-71.449325,HILLSBOROUGH 3104,MANCHESTER,NH,43.007307,-71.448233,HILLSBOROUGH 3105,MANCHESTER,NH,42.9925,-71.4635,HILLSBOROUGH 3107,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3108,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 3109,MANCHESTER,NH,42.971349,-71.413474,HILLSBOROUGH 3111,MANCHESTER,NH,42.949,-71.4406,HILLSBOROUGH 4101,PORTLAND,ME,43.660564,-70.258864,CUMBERLAND 4102,PORTLAND,ME,43.660168,-70.28981,CUMBERLAND 4103,PORTLAND,ME,43.687568,-70.2876,CUMBERLAND 4104,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4109,PORTLAND,ME,43.674971,-70.202201,CUMBERLAND 4112,PORTLAND,ME,43.6613,-70.2558,CUMBERLAND 4122,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4123,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 4124,PORTLAND,ME,43.6582,-70.2671,CUMBERLAND 5601,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5602,MONTPELIER,VT,44.264082,-72.576992,WASHINGTON 5603,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5604,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5609,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5620,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 5633,MONTPELIER,VT,44.2574,-72.5698,WASHINGTON 6101,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6102,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6103,HARTFORD,CT,41.767196,-72.675966,HARTFORD 6104,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6105,HARTFORD,CT,41.769116,-72.701006,HARTFORD 6106,HARTFORD,CT,41.749841,-72.694734,HARTFORD 6107,WEST HARTFORD,CT,41.755553,-72.75322,HARTFORD 6110,WEST HARTFORD,CT,41.732566,-72.733691,HARTFORD 6112,HARTFORD,CT,41.79053,-72.69641,HARTFORD 6114,HARTFORD,CT,41.740293,-72.680726,HARTFORD 6115,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6117,WEST HARTFORD,CT,41.790021,-72.745689,HARTFORD 6119,WEST HARTFORD,CT,41.762765,-72.726799,HARTFORD 6120,HARTFORD,CT,41.78596,-72.675807,HARTFORD 6123,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6126,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6127,WEST HARTFORD,CT,41.7586,-72.7446,HARTFORD 6132,HARTFORD,CT,41.7813,-72.6968,HARTFORD 6133,WEST HARTFORD,CT,41.725,-72.7213,HARTFORD 6134,HARTFORD,CT,41.7431,-72.6834,HARTFORD 6137,WEST HARTFORD,CT,41.7619,-72.7425,HARTFORD 6140,HARTFORD,CT,41.7926,-72.678,HARTFORD 6141,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6142,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6143,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6144,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6145,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6146,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6147,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6150,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6151,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6152,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6153,HARTFORD,CT,41.6869,-72.7313,HARTFORD 6154,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6155,HARTFORD,CT,41.7692,-72.6861,HARTFORD 6156,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6160,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6161,HARTFORD,CT,41.6983,-72.6653,HARTFORD 6167,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6176,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6180,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6183,HARTFORD,CT,41.7636,-72.6855,HARTFORD 6199,HARTFORD,CT,41.9266,-72.6546,HARTFORD 6501,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6502,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6503,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6504,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6505,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6506,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6507,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6508,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6509,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6510,NEW HAVEN,CT,41.308701,-72.92706,NEW HAVEN 6511,NEW HAVEN,CT,41.318364,-72.931771,NEW HAVEN 6513,NEW HAVEN,CT,41.314215,-72.882554,NEW HAVEN 6515,NEW HAVEN,CT,41.329301,-72.966445,NEW HAVEN 6519,NEW HAVEN,CT,41.296284,-72.937307,NEW HAVEN 6520,NEW HAVEN,CT,41.319,-72.9552,NEW HAVEN 6521,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6530,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6531,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6532,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6533,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6534,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6535,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6536,NEW HAVEN,CT,41.3001,-72.9189,NEW HAVEN 6537,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6538,NEW HAVEN,CT,41.4276,-72.9138,NEW HAVEN 6540,NEW HAVEN,CT,41.308,-72.9286,NEW HAVEN 6601,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6602,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6604,BRIDGEPORT,CT,41.179574,-73.201859,FAIRFIELD 6605,BRIDGEPORT,CT,41.166796,-73.216251,FAIRFIELD 6606,BRIDGEPORT,CT,41.20907,-73.208619,FAIRFIELD 6607,BRIDGEPORT,CT,41.178382,-73.165048,FAIRFIELD 6608,BRIDGEPORT,CT,41.189466,-73.181141,FAIRFIELD 6610,BRIDGEPORT,CT,41.200508,-73.168771,FAIRFIELD 6650,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6673,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6699,BRIDGEPORT,CT,41.1669,-73.2052,FAIRFIELD 6701,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6702,WATERBURY,CT,41.556568,-73.038545,NEW HAVEN 6703,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6704,WATERBURY,CT,41.575435,-73.031805,NEW HAVEN 6705,WATERBURY,CT,41.550328,-72.996268,NEW HAVEN 6706,WATERBURY,CT,41.536261,-73.03064,NEW HAVEN 6708,WATERBURY,CT,41.551102,-73.064495,NEW HAVEN 6710,WATERBURY,CT,41.567503,-73.046821,NEW HAVEN 6720,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6721,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6722,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6723,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6724,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6725,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6726,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6749,WATERBURY,CT,41.558,-73.0519,NEW HAVEN 6810,DANBURY,CT,41.391663,-73.453165,FAIRFIELD 6811,DANBURY,CT,41.423983,-73.471587,FAIRFIELD 6813,DANBURY,CT,41.3961,-73.4544,FAIRFIELD 6814,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6816,DANBURY,CT,41.3719,-73.4929,FAIRFIELD 6817,DANBURY,CT,41.3947,-73.4544,FAIRFIELD 6850,NORWALK,CT,41.12222,-73.435827,FAIRFIELD 6851,NORWALK,CT,41.132346,-73.405802,FAIRFIELD 6852,NORWALK,CT,41.1168,-73.4155,FAIRFIELD 6853,NORWALK,CT,41.070243,-73.439667,FAIRFIELD 6854,NORWALK,CT,41.095722,-73.428485,FAIRFIELD 6855,NORWALK,CT,41.101382,-73.401119,FAIRFIELD 6856,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6857,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6858,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6859,NORWALK,CT,41.0988,-73.422,FAIRFIELD 6860,NORWALK,CT,41.1175,-73.4083,FAIRFIELD 6901,STAMFORD,CT,41.053083,-73.539039,FAIRFIELD 6902,STAMFORD,CT,41.052552,-73.537428,FAIRFIELD 6903,STAMFORD,CT,41.135235,-73.568356,FAIRFIELD 6904,STAMFORD,CT,41.0485,-73.5396,FAIRFIELD 6905,STAMFORD,CT,41.082576,-73.543757,FAIRFIELD 6906,STAMFORD,CT,41.069218,-73.523563,FAIRFIELD 6907,STAMFORD,CT,41.094206,-73.520297,FAIRFIELD 6910,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6911,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6912,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6913,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6914,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6920,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6921,STAMFORD,CT,41.0493,-73.5394,FAIRFIELD 6922,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6925,STAMFORD,CT,41.0533,-73.5391,FAIRFIELD 6926,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6927,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 6928,STAMFORD,CT,41.0389,-73.5593,FAIRFIELD 7097,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7101,NEWARK,NJ,40.7308,-74.1744,ESSEX 7102,NEWARK,NJ,40.73201,-74.176505,ESSEX 7103,NEWARK,NJ,40.736975,-74.196364,ESSEX 7104,NEWARK,NJ,40.766446,-74.1695,ESSEX 7105,NEWARK,NJ,40.727086,-74.156346,ESSEX 7106,NEWARK,NJ,40.741485,-74.233023,ESSEX 7107,NEWARK,NJ,40.760656,-74.18816,ESSEX 7108,NEWARK,NJ,40.723647,-74.201538,ESSEX 7112,NEWARK,NJ,40.71071,-74.213073,ESSEX 7114,NEWARK,NJ,40.708246,-74.189105,ESSEX 7175,NEWARK,NJ,40.7355,-74.1727,ESSEX 7182,NEWARK,NJ,40.731,-74.174,ESSEX 7184,NEWARK,NJ,40.7355,-74.1727,ESSEX 7188,NEWARK,NJ,40.7355,-74.1727,ESSEX 7189,NEWARK,NJ,40.7949,-74.1624,ESSEX 7191,NEWARK,NJ,40.7355,-74.1727,ESSEX 7192,NEWARK,NJ,40.7355,-74.1727,ESSEX 7193,NEWARK,NJ,40.7355,-74.1727,ESSEX 7194,NEWARK,NJ,40.7355,-74.1727,ESSEX 7195,NEWARK,NJ,40.7355,-74.1727,ESSEX 7198,NEWARK,NJ,40.7355,-74.1727,ESSEX 7199,NEWARK,NJ,40.7355,-74.1727,ESSEX 7302,JERSEY CITY,NJ,40.722126,-74.046878,HUDSON 7303,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7304,JERSEY CITY,NJ,40.717973,-74.075358,HUDSON 7305,JERSEY CITY,NJ,40.702007,-74.088998,HUDSON 7306,JERSEY CITY,NJ,40.732125,-74.066038,HUDSON 7307,JERSEY CITY,NJ,40.748167,-74.049752,HUDSON 7308,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7309,JERSEY CITY,NJ,40.7164,-74.038,HUDSON 7310,JERSEY CITY,NJ,40.732354,-74.043149,HUDSON 7311,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7395,JERSEY CITY,NJ,40.7282,-74.0776,HUDSON 7399,JERSEY CITY,NJ,40.728,-74.078,HUDSON 7501,PATERSON,NJ,40.914273,-74.167141,PASSAIC 7502,PATERSON,NJ,40.919926,-74.193238,PASSAIC 7503,PATERSON,NJ,40.897046,-74.157272,PASSAIC 7504,PATERSON,NJ,40.912179,-74.145247,PASSAIC 7505,PATERSON,NJ,40.915581,-74.171947,PASSAIC 7509,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7510,PATERSON,NJ,40.9146,-74.1682,PASSAIC 7513,PATERSON,NJ,40.906994,-74.152862,PASSAIC 7514,PATERSON,NJ,40.924764,-74.146717,PASSAIC 7522,PATERSON,NJ,40.925168,-74.178078,PASSAIC 7524,PATERSON,NJ,40.930916,-74.155457,PASSAIC 7533,PATERSON,NJ,40.8945,-74.1603,PASSAIC 7543,PATERSON,NJ,40.906,-74.1527,PASSAIC 7544,PATERSON,NJ,40.9335,-74.1545,PASSAIC 8601,TRENTON,NJ,40.2169,-74.7433,MERCER 8602,TRENTON,NJ,40.2169,-74.7433,MERCER 8603,TRENTON,NJ,40.2169,-74.7433,MERCER 8604,TRENTON,NJ,40.2169,-74.7433,MERCER 8605,TRENTON,NJ,40.2169,-74.7433,MERCER 8606,TRENTON,NJ,40.2169,-74.7433,MERCER 8607,TRENTON,NJ,40.2169,-74.7433,MERCER 8608,TRENTON,NJ,40.220437,-74.762237,MERCER 8609,TRENTON,NJ,40.223338,-74.742598,MERCER 8610,TRENTON,NJ,40.19894,-74.717205,MERCER 8611,TRENTON,NJ,40.207297,-74.751997,MERCER 8619,TRENTON,NJ,40.241977,-74.690377,MERCER 8620,TRENTON,NJ,40.178477,-74.671699,MERCER 8625,TRENTON,NJ,40.2712,-74.8179,MERCER 8629,TRENTON,NJ,40.219843,-74.732764,MERCER 8641,TRENTON,NJ,40.044026,-74.588195,BURLINGTON 8645,TRENTON,NJ,40.2169,-74.7433,MERCER 8646,TRENTON,NJ,40.2169,-74.7433,MERCER 8647,TRENTON,NJ,40.2169,-74.7433,MERCER 8648,TRENTON,NJ,40.277646,-74.723956,MERCER 8650,TRENTON,NJ,40.2169,-74.7433,MERCER 8666,TRENTON,NJ,40.2169,-74.7433,MERCER 8677,TRENTON,NJ,40.2169,-74.7433, 8690,TRENTON,NJ,40.223852,-74.659138,MERCER 8691,TRENTON,NJ,40.231785,-74.606262,MERCER 8695,TRENTON,NJ,40.2169,-74.7433,MERCER 8901,NEW BRUNSWICK,NJ,40.489073,-74.448193,MIDDLESEX 8903,NEW BRUNSWICK,NJ,40.5203,-74.4143,MIDDLESEX 8905,NEW BRUNSWICK,NJ,40.4587,-74.4648,MIDDLESEX 8906,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8922,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8933,NEW BRUNSWICK,NJ,40.4861,-74.4522,MIDDLESEX 8988,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 8989,NEW BRUNSWICK,NJ,40.4502,-74.4804,MIDDLESEX 10001,NEW YORK,NY,40.74838,-73.996705,NEW YORK 10002,NEW YORK,NY,40.715231,-73.987681,NEW YORK 10003,NEW YORK,NY,40.731253,-73.989223,NEW YORK 10004,NEW YORK,NY,40.693604,-74.019025,NEW YORK 10005,NEW YORK,NY,40.705649,-74.008344,NEW YORK 10006,NEW YORK,NY,40.708451,-74.013474,NEW YORK 10007,NEW YORK,NY,40.713905,-74.007022,NEW YORK 10008,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10009,NEW YORK,NY,40.726188,-73.979591,NEW YORK 10010,NEW YORK,NY,40.737476,-73.981328,NEW YORK 10011,NEW YORK,NY,40.740225,-73.99963,NEW YORK 10012,NEW YORK,NY,40.72553,-73.998284,NEW YORK 10013,NEW YORK,NY,40.718511,-74.002529,NEW YORK 10014,NEW YORK,NY,40.73393,-74.005421,NEW YORK 10015,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10016,NEW YORK,NY,40.744281,-73.978134,NEW YORK 10017,NEW YORK,NY,40.75172,-73.970661,NEW YORK 10018,NEW YORK,NY,40.754713,-73.992503,NEW YORK 10019,NEW YORK,NY,40.765069,-73.985834,NEW YORK 10020,NEW YORK,NY,40.759729,-73.982347,NEW YORK 10021,NEW YORK,NY,40.768476,-73.958805,NEW YORK 10022,NEW YORK,NY,40.757091,-73.965703,NEW YORK 10023,NEW YORK,NY,40.77638,-73.982652,NEW YORK 10024,NEW YORK,NY,40.786446,-73.976385,NEW YORK 10025,NEW YORK,NY,40.797466,-73.968312,NEW YORK 10026,NEW YORK,NY,40.801942,-73.953069,NEW YORK 10027,NEW YORK,NY,40.811556,-73.954978,NEW YORK 10028,NEW YORK,NY,40.776267,-73.952866,NEW YORK 10029,NEW YORK,NY,40.791817,-73.94475,NEW YORK 10030,NEW YORK,NY,40.818333,-73.942597,NEW YORK 10031,NEW YORK,NY,40.82455,-73.950712,NEW YORK 10032,NEW YORK,NY,40.83819,-73.941978,NEW YORK 10033,NEW YORK,NY,40.84955,-73.935649,NEW YORK 10034,NEW YORK,NY,40.866222,-73.922077,NEW YORK 10035,NEW YORK,NY,40.801116,-73.937098,NEW YORK 10036,NEW YORK,NY,40.759724,-73.991826,NEW YORK 10037,NEW YORK,NY,40.813491,-73.9381,NEW YORK 10038,NEW YORK,NY,40.710092,-74.001298,NEW YORK 10039,NEW YORK,NY,40.826458,-73.938266,NEW YORK 10040,NEW YORK,NY,40.858308,-73.929601,NEW YORK 10041,NEW YORK,NY,40.7051,-74.014,NEW YORK 10043,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10044,NEW YORK,NY,40.762998,-73.949136,NEW YORK 10045,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10046,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10047,NEW YORK,NY,40.7102,-74.0128,NEW YORK 10048,NEW YORK,NY,40.7113,-74.0121,NEW YORK 10055,NEW YORK,NY,40.7589,-73.9735,NEW YORK 10060,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10065,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10069,NEW YORK,NY,40.7543,-73.9997,NEW YORK 10072,NEW YORK,NY,40.7501,-73.9978,NEW YORK 10075,NEW YORK,NY,40.7142691,-74.0059729,NEW YORK 10079,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10080,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10081,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10082,NEW YORK,NY,40.7753,-73.9844,NEW YORK 10087,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10090,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10094,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10095,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10096,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10098,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10099,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10101,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10102,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10103,NEW YORK,NY,40.7597,-73.9762,NEW YORK 10104,NEW YORK,NY,40.7603,-73.9794,NEW YORK 10105,NEW YORK,NY,40.7632,-73.9862,NEW YORK 10106,NEW YORK,NY,40.7647,-73.9804,NEW YORK 10107,NEW YORK,NY,40.7661,-73.9825,NEW YORK 10108,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10109,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10110,NEW YORK,NY,40.7533,-73.9808,NEW YORK 10111,NEW YORK,NY,40.7586,-73.9772,NEW YORK 10112,NEW YORK,NY,40.7584,-73.9784,NEW YORK 10113,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10114,NEW YORK,NY,40.7417,-74.0004,NEW YORK 10115,NEW YORK,NY,40.8109,-73.954,NEW YORK 10116,NEW YORK,NY,40.8113,-73.9534,NEW YORK 10117,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10118,NEW YORK,NY,40.7483,-73.9865,NEW YORK 10119,NEW YORK,NY,40.7509,-73.9921,NEW YORK 10120,NEW YORK,NY,40.7496,-73.9884,NEW YORK 10121,NEW YORK,NY,40.7497,-73.9919,NEW YORK 10122,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10123,NEW YORK,NY,40.7507,-73.9946,NEW YORK 10124,NEW YORK,NY,40.7577,-73.978,NEW YORK 10125,NEW YORK,NY,40.7995,-73.9679,NEW YORK 10126,NEW YORK,NY,40.7586,-73.9724,NEW YORK 10128,NEW YORK,NY,40.781618,-73.951112,NEW YORK 10129,NEW YORK,NY,40.7574,-73.9918,NEW YORK 10130,NEW YORK,NY,40.7778,-73.9541,NEW YORK 10131,NEW YORK,NY,40.7679,-73.9611,NEW YORK 10132,NEW YORK,NY,40.7849,-73.9748,NEW YORK 10133,NEW YORK,NY,40.7716,-73.9873,NEW YORK 10138,NEW YORK,NY,40.754,-73.9909,NEW YORK 10149,NEW YORK,NY,40.7655,-73.9873,NEW YORK 10150,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10151,NEW YORK,NY,40.7631,-73.9733,NEW YORK 10152,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10153,NEW YORK,NY,40.7583,-73.9688,NEW YORK 10154,NEW YORK,NY,40.7578,-73.973,NEW YORK 10155,NEW YORK,NY,40.7609,-73.9679,NEW YORK 10156,NEW YORK,NY,40.753,-73.9924,NEW YORK 10157,NEW YORK,NY,40.753,-73.9924,NEW YORK 10158,NEW YORK,NY,40.7487,-73.9753,NEW YORK 10159,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10160,NEW YORK,NY,40.7389,-73.9845,NEW YORK 10161,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10162,NEW YORK,NY,40.7693,-73.9505,NEW YORK 10163,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10164,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10165,NEW YORK,NY,40.752,-73.9792,NEW YORK 10166,NEW YORK,NY,40.7532,-73.9766,NEW YORK 10167,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10168,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10169,NEW YORK,NY,40.754,-73.9771,NEW YORK 10170,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10171,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10172,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10173,NEW YORK,NY,40.7537,-73.9784,NEW YORK 10174,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10175,NEW YORK,NY,40.7538,-73.98,NEW YORK 10176,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10177,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10178,NEW YORK,NY,40.7516,-73.9761,NEW YORK 10179,NEW YORK,NY,40.714167,-74.006667,NEW YORK 10184,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10185,NEW YORK,NY,40.7577,-73.978,NEW YORK 10196,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10197,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10199,NEW YORK,NY,40.7507,-73.9945,NEW YORK 10203,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10211,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10212,NEW YORK,NY,40.7051,-74.014,NEW YORK 10213,NEW YORK,NY,40.720278,-74.005,NEW YORK 10242,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10249,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10256,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10257,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10258,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10259,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10260,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10261,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10265,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10268,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10269,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10270,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10271,NEW YORK,NY,40.7056,-74.0081,NEW YORK 10272,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10273,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10274,NEW YORK,NY,40.7051,-74.014,NEW YORK 10275,NEW YORK,NY,40.7051,-74.014,NEW YORK 10276,NEW YORK,NY,40.7314,-73.9904,NEW YORK 10277,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10278,NEW YORK,NY,40.715,-74.0042,NEW YORK 10279,NEW YORK,NY,40.7141,-74.0063,NEW YORK 10280,NEW YORK,NY,40.710537,-74.016323,NEW YORK 10281,NEW YORK,NY,40.7147,-74.016,NEW YORK 10282,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10285,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10286,NEW YORK,NY,40.7121,-74.0102,NEW YORK 10292,NEW YORK,NY,40.7066,-74.0053,NEW YORK 10301,STATEN ISLAND,NY,40.631602,-74.092663,RICHMOND 10302,STATEN ISLAND,NY,40.630597,-74.137918,RICHMOND 10303,STATEN ISLAND,NY,40.630062,-74.160679,RICHMOND 10304,STATEN ISLAND,NY,40.610249,-74.087836,RICHMOND 10305,STATEN ISLAND,NY,40.597296,-74.076795,RICHMOND 10306,STATEN ISLAND,NY,40.568183,-74.118386,RICHMOND 10307,STATEN ISLAND,NY,40.508452,-74.244482,RICHMOND 10308,STATEN ISLAND,NY,40.55181,-74.152649,RICHMOND 10309,STATEN ISLAND,NY,40.535179,-74.211572,RICHMOND 10310,STATEN ISLAND,NY,40.632427,-74.11715,RICHMOND 10311,STATEN ISLAND,NY,40.6047,-74.1781,RICHMOND 10312,STATEN ISLAND,NY,40.545745,-74.179165,RICHMOND 10313,STATEN ISLAND,NY,40.5781,-74.1697,RICHMOND 10314,STATEN ISLAND,NY,40.603915,-74.147218,RICHMOND 10451,BRONX,NY,40.8222,-73.921735,BRONX 10452,BRONX,NY,40.837594,-73.921555,BRONX 10453,BRONX,NY,40.852047,-73.912937,BRONX 10454,BRONX,NY,40.808549,-73.919821,BRONX 10455,BRONX,NY,40.815309,-73.907172,BRONX 10456,BRONX,NY,40.831557,-73.909893,BRONX 10457,BRONX,NY,40.848635,-73.899907,BRONX 10458,BRONX,NY,40.863307,-73.889464,BRONX 10459,BRONX,NY,40.824699,-73.894047,BRONX 10460,BRONX,NY,40.840949,-73.879409,BRONX 10461,BRONX,NY,40.846506,-73.840953,BRONX 10462,BRONX,NY,40.843369,-73.860185,BRONX 10463,BRONX,NY,40.879812,-73.906737,BRONX 10464,BRONX,NY,40.846941,-73.787436,BRONX 10465,BRONX,NY,40.826065,-73.819581,BRONX 10466,BRONX,NY,40.890375,-73.850333,BRONX 10467,BRONX,NY,40.873671,-73.871242,BRONX 10468,BRONX,NY,40.866231,-73.900259,BRONX 10469,BRONX,NY,40.870193,-73.849465,BRONX 10470,BRONX,NY,40.900029,-73.862194,BRONX 10471,BRONX,NY,40.901084,-73.905283,BRONX 10472,BRONX,NY,40.829464,-73.871557,BRONX 10473,BRONX,NY,40.819364,-73.860626,BRONX 10474,BRONX,NY,40.801518,-73.886376,BRONX 10475,BRONX,NY,40.872903,-73.827817,BRONX 10499,BRONX,NY,40.85,-73.866667,BRONX 10550,MOUNT VERNON,NY,40.907863,-73.837961,WESTCHESTER 10551,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10552,MOUNT VERNON,NY,40.923056,-73.829919,WESTCHESTER 10553,MOUNT VERNON,NY,40.908645,-73.822111,WESTCHESTER 10557,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10558,MOUNT VERNON,NY,40.9008,-73.8246,WESTCHESTER 10601,WHITE PLAINS,NY,41.032955,-73.765231,WESTCHESTER 10602,WHITE PLAINS,NY,41.0274,-73.775,WESTCHESTER 10603,WHITE PLAINS,NY,41.049913,-73.77758,WESTCHESTER 10605,WHITE PLAINS,NY,41.014053,-73.755247,WESTCHESTER 10606,WHITE PLAINS,NY,41.024714,-73.778097,WESTCHESTER 10607,WHITE PLAINS,NY,41.039813,-73.811692,WESTCHESTER 10610,WHITE PLAINS,NY,41.0276,-73.7744,WESTCHESTER 10701,YONKERS,NY,40.940716,-73.888317,WESTCHESTER 10702,YONKERS,NY,40.931111,-73.899167,WESTCHESTER 10703,YONKERS,NY,40.951763,-73.885163,WESTCHESTER 10704,YONKERS,NY,40.917633,-73.859347,WESTCHESTER 10705,YONKERS,NY,40.917665,-73.895041,WESTCHESTER 10710,YONKERS,NY,40.965574,-73.843435,WESTCHESTER 11020,GREAT NECK,NY,40.774235,-73.718918,NASSAU 11021,GREAT NECK,NY,40.786674,-73.726984,NASSAU 11022,GREAT NECK,NY,40.7875,-73.725,NASSAU 11023,GREAT NECK,NY,40.799307,-73.734257,NASSAU 11024,GREAT NECK,NY,40.813307,-73.741391,NASSAU 11025,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11026,GREAT NECK,NY,40.8005,-73.7288,NASSAU 11027,GREAT NECK,NY,40.7875,-73.725,NASSAU 11040,NEW HYDE PARK,NY,40.743926,-73.68042,NASSAU 11041,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11042,NEW HYDE PARK,NY,40.7602,-73.694978,NASSAU 11043,NEW HYDE PARK,NY,40.7317,-73.6821,NASSAU 11044,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11050,PORT WASHINGTON,NY,40.834995,-73.696356,NASSAU 11051,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11052,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11053,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11054,PORT WASHINGTON,NY,40.8308,-73.6842,NASSAU 11055,PORT WASHINGTON,NY,40.8255,-73.6986,NASSAU 11099,NEW HYDE PARK,NY,40.735,-73.6883,NASSAU 11201,BROOKLYN,NY,40.694021,-73.99034,KINGS 11202,BROOKLYN,NY,40.6959,-73.9934,KINGS 11203,BROOKLYN,NY,40.650496,-73.934888,KINGS 11204,BROOKLYN,NY,40.617871,-73.985623,KINGS 11205,BROOKLYN,NY,40.692433,-73.96662,KINGS 11206,BROOKLYN,NY,40.701195,-73.943617,KINGS 11207,BROOKLYN,NY,40.670486,-73.893957,KINGS 11208,BROOKLYN,NY,40.676191,-73.873649,KINGS 11209,BROOKLYN,NY,40.625106,-74.030304,KINGS 11210,BROOKLYN,NY,40.628064,-73.946682,KINGS 11211,BROOKLYN,NY,40.709476,-73.956283,KINGS 11212,BROOKLYN,NY,40.662474,-73.914483,KINGS 11213,BROOKLYN,NY,40.669961,-73.93665,KINGS 11214,BROOKLYN,NY,40.601563,-73.99681,KINGS 11215,BROOKLYN,NY,40.666863,-73.982783,KINGS 11216,BROOKLYN,NY,40.67943,-73.949639,KINGS 11217,BROOKLYN,NY,40.68165,-73.979797,KINGS 11218,BROOKLYN,NY,40.642373,-73.975806,KINGS 11219,BROOKLYN,NY,40.633568,-73.996011,KINGS 11220,BROOKLYN,NY,40.641165,-74.013287,KINGS 11221,BROOKLYN,NY,40.690695,-73.927373,KINGS 11222,BROOKLYN,NY,40.727164,-73.949846,KINGS 11223,BROOKLYN,NY,40.597874,-73.974291,KINGS 11224,BROOKLYN,NY,40.576729,-73.988395,KINGS 11225,BROOKLYN,NY,40.662776,-73.954588,KINGS 11226,BROOKLYN,NY,40.646694,-73.956985,KINGS 11228,BROOKLYN,NY,40.617441,-74.012067,KINGS 11229,BROOKLYN,NY,40.601094,-73.94749,KINGS 11230,BROOKLYN,NY,40.622493,-73.965007,KINGS 11231,BROOKLYN,NY,40.679437,-74.00141,KINGS 11232,BROOKLYN,NY,40.652113,-74.001797,KINGS 11233,BROOKLYN,NY,40.678415,-73.921104,KINGS 11234,BROOKLYN,NY,40.620475,-73.923915,KINGS 11235,BROOKLYN,NY,40.583898,-73.953599,KINGS 11236,BROOKLYN,NY,40.640685,-73.902764,KINGS 11237,BROOKLYN,NY,40.700616,-73.917979,KINGS 11238,BROOKLYN,NY,40.679015,-73.964387,KINGS 11239,BROOKLYN,NY,40.649748,-73.882375,KINGS 11240,BROOKLYN,NY,40.6981,-73.986,KINGS 11241,BROOKLYN,NY,40.6932,-73.9911,KINGS 11242,BROOKLYN,NY,40.6932,-73.9911,KINGS 11243,BROOKLYN,NY,40.6846,-73.9804,KINGS 11244,BROOKLYN,NY,40.6895,-73.9906,KINGS 11245,BROOKLYN,NY,40.6873,-73.9896,KINGS 11247,BROOKLYN,NY,40.68,-73.9476,KINGS 11248,BROOKLYN,NY,40.6991,-73.9928,KINGS 11249,BROOKLYN,NY,40.6942,-73.9907,KINGS 11251,BROOKLYN,NY,40.703578,-73.966511,KINGS 11252,BROOKLYN,NY,40.618611,-74.033611,KINGS 11254,BROOKLYN,NY,40.6983,-73.9917,KINGS 11255,BROOKLYN,NY,40.6953,-73.9899,KINGS 11256,BROOKLYN,NY,40.6632,-73.8603,KINGS 11351,FLUSHING,NY,40.7816,-73.8272,QUEENS 11352,FLUSHING,NY,40.7476,-73.8263,QUEENS 11354,FLUSHING,NY,40.766722,-73.824142,QUEENS 11355,FLUSHING,NY,40.753573,-73.822609,QUEENS 11358,FLUSHING,NY,40.760636,-73.796788,QUEENS 11367,FLUSHING,NY,40.727966,-73.81953,QUEENS 11371,FLUSHING,NY,40.772117,-73.873535,QUEENS 11381,FLUSHING,NY,40.7652,-73.8177,QUEENS 11390,FLUSHING,NY,40.7652,-73.8177,QUEENS 11405,JAMAICA,NY,40.6913,-73.8061,QUEENS 11424,JAMAICA,NY,40.714167,-73.831389,QUEENS 11425,JAMAICA,NY,40.6913,-73.8061,QUEENS 11430,JAMAICA,NY,40.647221,-73.782663,QUEENS 11431,JAMAICA,NY,40.6913,-73.8061,QUEENS 11432,JAMAICA,NY,40.711867,-73.79442,QUEENS 11433,JAMAICA,NY,40.69691,-73.787669,QUEENS 11434,JAMAICA,NY,40.677483,-73.77584,QUEENS 11435,JAMAICA,NY,40.702934,-73.811121,QUEENS 11436,JAMAICA,NY,40.676347,-73.796596,QUEENS 11439,JAMAICA,NY,40.6913,-73.8061,QUEENS 11451,JAMAICA,NY,40.7011,-73.8006,QUEENS 11499,JAMAICA,NY,40.6913,-73.8061,QUEENS 11801,HICKSVILLE,NY,40.762305,-73.52297,NASSAU 11802,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11815,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11819,HICKSVILLE,NY,40.7674,-73.5331,NASSAU 11854,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 11855,HICKSVILLE,NY,40.7683,-73.5255,NASSAU 12201,ALBANY,NY,42.6525,-73.7566,ALBANY 12202,ALBANY,NY,42.641314,-73.764071,ALBANY 12203,ALBANY,NY,42.676757,-73.821988,ALBANY 12204,ALBANY,NY,42.684667,-73.735364,ALBANY 12205,ALBANY,NY,42.713116,-73.820174,ALBANY 12206,ALBANY,NY,42.668326,-73.774406,ALBANY 12207,ALBANY,NY,42.658133,-73.752327,ALBANY 12208,ALBANY,NY,42.655989,-73.796357,ALBANY 12209,ALBANY,NY,42.641665,-73.785385,ALBANY 12210,ALBANY,NY,42.65677,-73.76052,ALBANY 12211,ALBANY,NY,42.704693,-73.769982,ALBANY 12212,ALBANY,NY,42.6525,-73.7566,ALBANY 12214,ALBANY,NY,42.6525,-73.7566,ALBANY 12220,ALBANY,NY,42.6525,-73.7566,ALBANY 12222,ALBANY,NY,42.6525,-73.7566,ALBANY 12223,ALBANY,NY,42.6525,-73.7566,ALBANY 12224,ALBANY,NY,42.6525,-73.7566,ALBANY 12225,ALBANY,NY,42.6525,-73.7566,ALBANY 12226,ALBANY,NY,42.6525,-73.7566,ALBANY 12227,ALBANY,NY,42.6525,-73.7566,ALBANY 12228,ALBANY,NY,42.6525,-73.7566,ALBANY 12229,ALBANY,NY,42.6525,-73.7566,ALBANY 12230,ALBANY,NY,42.6525,-73.7566,ALBANY 12231,ALBANY,NY,42.6525,-73.7566,ALBANY 12232,ALBANY,NY,42.6525,-73.7566,ALBANY 12233,ALBANY,NY,42.7174,-73.8285,ALBANY 12234,ALBANY,NY,42.6525,-73.7566,ALBANY 12235,ALBANY,NY,42.7174,-73.8285,ALBANY 12236,ALBANY,NY,42.6525,-73.7566,ALBANY 12237,ALBANY,NY,42.6525,-73.7566,ALBANY 12238,ALBANY,NY,42.6525,-73.7566,ALBANY 12239,ALBANY,NY,42.6525,-73.7566,ALBANY 12240,ALBANY,NY,42.6525,-73.7566,ALBANY 12241,ALBANY,NY,42.6525,-73.7566,ALBANY 12242,ALBANY,NY,42.6525,-73.7566,ALBANY 12243,ALBANY,NY,42.6525,-73.7566,ALBANY 12244,ALBANY,NY,42.6525,-73.7566,ALBANY 12245,ALBANY,NY,42.6525,-73.7566,ALBANY 12246,ALBANY,NY,42.647,-73.75,ALBANY 12247,ALBANY,NY,42.6525,-73.7566,ALBANY 12248,ALBANY,NY,42.6525,-73.7566,ALBANY 12249,ALBANY,NY,42.6525,-73.7566,ALBANY 12250,ALBANY,NY,42.6525,-73.7566,ALBANY 12252,ALBANY,NY,42.6525,-73.7566,ALBANY 12255,ALBANY,NY,42.6525,-73.7566,ALBANY 12256,ALBANY,NY,42.6525,-73.7566,ALBANY 12257,ALBANY,NY,42.6525,-73.7566,ALBANY 12260,ALBANY,NY,42.6525,-73.7566,ALBANY 12261,ALBANY,NY,42.7174,-73.8285,ALBANY 12288,ALBANY,NY,42.7174,-73.8285,ALBANY 12301,SCHENECTADY,NY,42.8155,-73.9395,SCHENECTADY 12302,SCHENECTADY,NY,42.858839,-73.955051,SCHENECTADY 12303,SCHENECTADY,NY,42.769645,-73.938776,SCHENECTADY 12304,SCHENECTADY,NY,42.784083,-73.909432,SCHENECTADY 12305,SCHENECTADY,NY,42.816131,-73.939786,SCHENECTADY 12306,SCHENECTADY,NY,42.790384,-73.980876,SCHENECTADY 12307,SCHENECTADY,NY,42.804653,-73.936349,SCHENECTADY 12308,SCHENECTADY,NY,42.817928,-73.920591,SCHENECTADY 12309,SCHENECTADY,NY,42.796168,-73.878268,SCHENECTADY 12325,SCHENECTADY,NY,42.869,-73.9325,SCHENECTADY 12345,SCHENECTADY,NY,42.8102,-73.9507,SCHENECTADY 13201,SYRACUSE,NY,43.0459,-76.1528,ONONDAGA 13202,SYRACUSE,NY,43.040988,-76.148856,ONONDAGA 13203,SYRACUSE,NY,43.060703,-76.136931,ONONDAGA 13204,SYRACUSE,NY,43.044398,-76.175767,ONONDAGA 13205,SYRACUSE,NY,43.012314,-76.14518,ONONDAGA 13206,SYRACUSE,NY,43.06773,-76.110226,ONONDAGA 13207,SYRACUSE,NY,43.019482,-76.16501,ONONDAGA 13208,SYRACUSE,NY,43.073007,-76.148616,ONONDAGA 13209,SYRACUSE,NY,43.078204,-76.238448,ONONDAGA 13210,SYRACUSE,NY,43.035414,-76.128166,ONONDAGA 13211,SYRACUSE,NY,43.09951,-76.142181,ONONDAGA 13212,SYRACUSE,NY,43.130623,-76.137295,ONONDAGA 13214,SYRACUSE,NY,43.042529,-76.07844,ONONDAGA 13215,SYRACUSE,NY,42.997544,-76.211851,ONONDAGA 13217,SYRACUSE,NY,43.0512,-76.122,ONONDAGA 13218,SYRACUSE,NY,43.0301,-76.1259,ONONDAGA 13219,SYRACUSE,NY,43.040943,-76.226159,ONONDAGA 13220,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13221,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13224,SYRACUSE,NY,43.042134,-76.104609,ONONDAGA 13225,SYRACUSE,NY,43.1232,-76.1278,ONONDAGA 13235,SYRACUSE,NY,43.0321,-76.1271,ONONDAGA 13244,SYRACUSE,NY,43.0394,-76.1361,ONONDAGA 13250,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13251,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13252,SYRACUSE,NY,43.0435,-76.151,ONONDAGA 13261,SYRACUSE,NY,43.0433,-76.1508,ONONDAGA 13290,SYRACUSE,NY,43.0685,-76.1709,ONONDAGA 13501,UTICA,NY,43.087112,-75.231463,ONEIDA 13502,UTICA,NY,43.106723,-75.231383,ONEIDA 13503,UTICA,NY,43.1015,-75.2319,ONEIDA 13504,UTICA,NY,43.1008,-75.233,ONEIDA 13505,UTICA,NY,43.1008,-75.233,ONEIDA 13599,UTICA,NY,43.1008,-75.233,ONEIDA 14201,BUFFALO,NY,42.896659,-78.884575,ERIE 14202,BUFFALO,NY,42.887038,-78.877948,ERIE 14203,BUFFALO,NY,42.893938,-78.868143,ERIE 14204,BUFFALO,NY,42.883978,-78.859736,ERIE 14205,BUFFALO,NY,42.8925,-78.8707,ERIE 14206,BUFFALO,NY,42.881132,-78.810375,ERIE 14207,BUFFALO,NY,42.949062,-78.897815,ERIE 14208,BUFFALO,NY,42.915416,-78.850487,ERIE 14209,BUFFALO,NY,42.913,-78.865629,ERIE 14210,BUFFALO,NY,42.861432,-78.82055,ERIE 14211,BUFFALO,NY,42.908153,-78.822477,ERIE 14212,BUFFALO,NY,42.894553,-78.824458,ERIE 14213,BUFFALO,NY,42.916675,-78.889461,ERIE 14214,BUFFALO,NY,42.941429,-78.837403,ERIE 14215,BUFFALO,NY,42.933536,-78.811504,ERIE 14216,BUFFALO,NY,42.949914,-78.859865,ERIE 14217,BUFFALO,NY,42.968618,-78.872948,ERIE 14218,BUFFALO,NY,42.818301,-78.817263,ERIE 14219,BUFFALO,NY,42.790039,-78.822228,ERIE 14220,BUFFALO,NY,42.844138,-78.818205,ERIE 14221,BUFFALO,NY,42.985621,-78.738044,ERIE 14222,BUFFALO,NY,42.916401,-78.876333,ERIE 14223,BUFFALO,NY,42.973088,-78.845,ERIE 14224,BUFFALO,NY,42.836162,-78.75109,ERIE 14225,BUFFALO,NY,42.928642,-78.760855,ERIE 14226,BUFFALO,NY,42.967232,-78.799849,ERIE 14227,BUFFALO,NY,42.877467,-78.741936,ERIE 14228,BUFFALO,NY,43.018414,-78.774604,ERIE 14231,BUFFALO,NY,42.963889,-78.738056,ERIE 14233,BUFFALO,NY,42.8849,-78.8265,ERIE 14240,BUFFALO,NY,42.8849,-78.8265,ERIE 14241,BUFFALO,NY,42.8849,-78.8265,ERIE 14260,BUFFALO,NY,43.0003,-78.7902,ERIE 14261,BUFFALO,NY,43.0013,-78.7853,ERIE 14263,BUFFALO,NY,42.8849,-78.8265,ERIE 14264,BUFFALO,NY,42.8849,-78.8265,ERIE 14265,BUFFALO,NY,42.8849,-78.8265,ERIE 14267,BUFFALO,NY,42.8849,-78.8265,ERIE 14269,BUFFALO,NY,42.8849,-78.8265,ERIE 14270,BUFFALO,NY,42.8849,-78.8265,ERIE 14272,BUFFALO,NY,42.8849,-78.8265,ERIE 14273,BUFFALO,NY,42.8849,-78.8265,ERIE 14276,BUFFALO,NY,42.8849,-78.8265,ERIE 14280,BUFFALO,NY,42.8849,-78.8265,ERIE 14602,ROCHESTER,NY,43.1683,-77.6026,MONROE 14603,ROCHESTER,NY,43.1615,-77.6073,MONROE 14604,ROCHESTER,NY,43.157729,-77.607978,MONROE 14605,ROCHESTER,NY,43.169758,-77.600711,MONROE 14606,ROCHESTER,NY,43.168455,-77.684488,MONROE 14607,ROCHESTER,NY,43.150086,-77.588976,MONROE 14608,ROCHESTER,NY,43.152144,-77.625803,MONROE 14609,ROCHESTER,NY,43.174001,-77.563701,MONROE 14610,ROCHESTER,NY,43.14524,-77.549501,MONROE 14611,ROCHESTER,NY,43.148375,-77.639353,MONROE 14612,ROCHESTER,NY,43.256576,-77.665228,MONROE 14613,ROCHESTER,NY,43.18308,-77.639276,MONROE 14614,ROCHESTER,NY,43.155823,-77.61419,MONROE 14615,ROCHESTER,NY,43.20575,-77.652118,MONROE 14616,ROCHESTER,NY,43.232359,-77.651238,MONROE 14617,ROCHESTER,NY,43.220258,-77.599442,MONROE 14618,ROCHESTER,NY,43.115416,-77.558801,MONROE 14619,ROCHESTER,NY,43.136685,-77.6481,MONROE 14620,ROCHESTER,NY,43.131711,-77.606239,MONROE 14621,ROCHESTER,NY,43.183362,-77.604284,MONROE 14622,ROCHESTER,NY,43.213959,-77.55549,MONROE 14623,ROCHESTER,NY,43.083371,-77.634412,MONROE 14624,ROCHESTER,NY,43.12589,-77.733552,MONROE 14625,ROCHESTER,NY,43.14949,-77.503188,MONROE 14626,ROCHESTER,NY,43.21257,-77.703996,MONROE 14627,ROCHESTER,NY,43.1284,-77.6295,MONROE 14638,ROCHESTER,NY,43.1572,-77.6064,MONROE 14639,ROCHESTER,NY,43.1572,-77.6064,MONROE 14642,ROCHESTER,NY,43.1242,-77.6231,MONROE 14643,ROCHESTER,NY,43.1572,-77.6064,MONROE 14644,ROCHESTER,NY,43.1572,-77.6064,MONROE 14645,ROCHESTER,NY,43.1572,-77.6064,MONROE 14646,ROCHESTER,NY,43.1572,-77.6064,MONROE 14647,ROCHESTER,NY,43.1572,-77.6064,MONROE 14649,ROCHESTER,NY,43.1572,-77.6064,MONROE 14650,ROCHESTER,NY,43.1541,-77.6255,MONROE 14651,ROCHESTER,NY,43.1541,-77.6255,MONROE 14652,ROCHESTER,NY,43.1541,-77.6255,MONROE 14653,ROCHESTER,NY,43.1541,-77.6255,MONROE 14664,ROCHESTER,NY,43.1572,-77.6064,MONROE 14673,ROCHESTER,NY,43.1572,-77.6064,MONROE 14683,ROCHESTER,NY,43.1572,-77.6064,MONROE 14692,ROCHESTER,NY,43.0869,-77.5973,MONROE 14694,ROCHESTER,NY,43.1541,-77.6255,MONROE 14901,ELMIRA,NY,42.100769,-76.811977,CHEMUNG 14902,ELMIRA,NY,42.0909,-76.8061,CHEMUNG 14903,ELMIRA,NY,42.130203,-76.843572,CHEMUNG 14904,ELMIRA,NY,42.072866,-76.803735,CHEMUNG 14905,ELMIRA,NY,42.086919,-76.839686,CHEMUNG 14925,ELMIRA,NY,42.1146,-76.8055,CHEMUNG 15201,PITTSBURGH,PA,40.474536,-79.952524,ALLEGHENY 15202,PITTSBURGH,PA,40.501321,-80.066966,ALLEGHENY 15203,PITTSBURGH,PA,40.425439,-79.977556,ALLEGHENY 15204,PITTSBURGH,PA,40.455569,-80.061056,ALLEGHENY 15205,PITTSBURGH,PA,40.438045,-80.073393,ALLEGHENY 15206,PITTSBURGH,PA,40.468885,-79.919267,ALLEGHENY 15207,PITTSBURGH,PA,40.401206,-79.933935,ALLEGHENY 15208,PITTSBURGH,PA,40.454955,-79.898474,ALLEGHENY 15209,PITTSBURGH,PA,40.49718,-79.97401,ALLEGHENY 15210,PITTSBURGH,PA,40.408541,-79.987405,ALLEGHENY 15211,PITTSBURGH,PA,40.42908,-80.012156,ALLEGHENY 15212,PITTSBURGH,PA,40.468873,-80.013128,ALLEGHENY 15213,PITTSBURGH,PA,40.44372,-79.954428,ALLEGHENY 15214,PITTSBURGH,PA,40.481309,-80.01393,ALLEGHENY 15215,PITTSBURGH,PA,40.499225,-79.917513,ALLEGHENY 15216,PITTSBURGH,PA,40.399584,-80.035727,ALLEGHENY 15217,PITTSBURGH,PA,40.431852,-79.924973,ALLEGHENY 15218,PITTSBURGH,PA,40.424468,-79.887591,ALLEGHENY 15219,PITTSBURGH,PA,40.44539,-79.977229,ALLEGHENY 15220,PITTSBURGH,PA,40.417405,-80.051202,ALLEGHENY 15221,PITTSBURGH,PA,40.438352,-79.870243,ALLEGHENY 15222,PITTSBURGH,PA,40.442111,-80.000556,ALLEGHENY 15223,PITTSBURGH,PA,40.50428,-79.95145,ALLEGHENY 15224,PITTSBURGH,PA,40.464215,-79.945445,ALLEGHENY 15225,PITTSBURGH,PA,40.513819,-80.137027,ALLEGHENY 15226,PITTSBURGH,PA,40.394628,-80.015759,ALLEGHENY 15227,PITTSBURGH,PA,40.37619,-79.975816,ALLEGHENY 15228,PITTSBURGH,PA,40.371326,-80.043186,ALLEGHENY 15229,PITTSBURGH,PA,40.519321,-80.035685,ALLEGHENY 15230,PITTSBURGH,PA,40.5085,-80.0786,ALLEGHENY 15231,PITTSBURGH,PA,40.502778,-80.188333,ALLEGHENY 15232,PITTSBURGH,PA,40.453598,-79.932557,ALLEGHENY 15233,PITTSBURGH,PA,40.460425,-80.029965,ALLEGHENY 15234,PITTSBURGH,PA,40.369424,-80.017907,ALLEGHENY 15235,PITTSBURGH,PA,40.4605,-79.826892,ALLEGHENY 15236,PITTSBURGH,PA,40.345244,-79.976894,ALLEGHENY 15237,PITTSBURGH,PA,40.552238,-80.034939,ALLEGHENY 15238,PITTSBURGH,PA,40.515077,-79.877423,ALLEGHENY 15239,PITTSBURGH,PA,40.477693,-79.734505,ALLEGHENY 15240,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15241,PITTSBURGH,PA,40.332174,-80.07921,ALLEGHENY 15242,PITTSBURGH,PA,40.420278,-80.05,ALLEGHENY 15243,PITTSBURGH,PA,40.373797,-80.072425,ALLEGHENY 15244,PITTSBURGH,PA,40.444444,-80.146111,ALLEGHENY 15250,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15251,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15252,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15253,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15254,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15255,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15257,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15258,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15259,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15260,PITTSBURGH,PA,40.4424,-79.9507,ALLEGHENY 15261,PITTSBURGH,PA,40.4442,-79.9617,ALLEGHENY 15262,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15263,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15264,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15265,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15267,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15268,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15270,PITTSBURGH,PA,40.4036,-80.0344,ALLEGHENY 15272,PITTSBURGH,PA,40.4473,-79.9939,ALLEGHENY 15274,PITTSBURGH,PA,40.4432,-79.955,ALLEGHENY 15275,PITTSBURGH,PA,40.4513,-80.1788,ALLEGHENY 15276,PITTSBURGH,PA,40.4292,-80.1253,ALLEGHENY 15277,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15278,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15279,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15281,PITTSBURGH,PA,40.4432,-79.9818,ALLEGHENY 15282,PITTSBURGH,PA,40.4371,-79.9929,ALLEGHENY 15283,PITTSBURGH,PA,40.4199,-80.0499,ALLEGHENY 15285,PITTSBURGH,PA,40.4405,-79.9961,ALLEGHENY 15286,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15289,PITTSBURGH,PA,40.4406,-79.9961,ALLEGHENY 15290,PITTSBURGH,PA,40.4983,-80.0618,ALLEGHENY 15295,PITTSBURGH,PA,40.4747,-79.9521,ALLEGHENY 15901,JOHNSTOWN,PA,40.325957,-78.91408,CAMBRIA 15902,JOHNSTOWN,PA,40.307787,-78.896905,CAMBRIA 15904,JOHNSTOWN,PA,40.285026,-78.865383,CAMBRIA 15905,JOHNSTOWN,PA,40.307188,-78.943006,CAMBRIA 15906,JOHNSTOWN,PA,40.352193,-78.938317,CAMBRIA 15907,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 15909,JOHNSTOWN,PA,40.387965,-78.862284,CAMBRIA 15915,JOHNSTOWN,PA,40.3259,-78.917,CAMBRIA 16101,NEW CASTLE,PA,40.99222,-80.328449,LAWRENCE 16102,NEW CASTLE,PA,40.967745,-80.390704,LAWRENCE 16103,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16105,NEW CASTLE,PA,41.033502,-80.342191,LAWRENCE 16107,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16108,NEW CASTLE,PA,41.0036,-80.3472,LAWRENCE 16501,ERIE,PA,42.125962,-80.08601,ERIE 16502,ERIE,PA,42.113332,-80.097607,ERIE 16503,ERIE,PA,42.126506,-80.063976,ERIE 16504,ERIE,PA,42.1108,-80.05208,ERIE 16505,ERIE,PA,42.097526,-80.161902,ERIE 16506,ERIE,PA,42.073801,-80.14844,ERIE 16507,ERIE,PA,42.131579,-80.086424,ERIE 16508,ERIE,PA,42.097577,-80.093544,ERIE 16509,ERIE,PA,42.076326,-80.066827,ERIE 16510,ERIE,PA,42.123673,-80.003752,ERIE 16511,ERIE,PA,42.15529,-80.017665,ERIE 16512,ERIE,PA,42.1185,-80.0229,ERIE 16514,ERIE,PA,42.1185,-80.0229,ERIE 16515,ERIE,PA,42.1185,-80.0229,ERIE 16522,ERIE,PA,42.1185,-80.0229,ERIE 16530,ERIE,PA,42.1185,-80.0229,ERIE 16531,ERIE,PA,42.1185,-80.0229,ERIE 16532,ERIE,PA,42.1185,-80.0229,ERIE 16533,ERIE,PA,42.1185,-80.0229,ERIE 16534,ERIE,PA,42.1185,-80.0229,ERIE 16538,ERIE,PA,42.1185,-80.0229,ERIE 16541,ERIE,PA,42.1185,-80.0229,ERIE 16544,ERIE,PA,42.1185,-80.0229,ERIE 16546,ERIE,PA,42.1073,-80.0486,ERIE 16550,ERIE,PA,42.1185,-80.0229,ERIE 16553,ERIE,PA,42.1185,-80.0229,ERIE 16554,ERIE,PA,42.1185,-80.0229,ERIE 16563,ERIE,PA,42.1185,-80.0229,ERIE 16565,ERIE,PA,42.0687,-80.10011,ERIE 17101,HARRISBURG,PA,40.261767,-76.883079,DAUPHIN 17102,HARRISBURG,PA,40.27278,-76.891044,DAUPHIN 17103,HARRISBURG,PA,40.273852,-76.863812,DAUPHIN 17104,HARRISBURG,PA,40.259683,-76.859397,DAUPHIN 17105,HARRISBURG,PA,40.2846,-76.8736,DAUPHIN 17106,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17107,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17108,HARRISBURG,PA,40.2615,-76.8831,DAUPHIN 17109,HARRISBURG,PA,40.29122,-76.822612,DAUPHIN 17110,HARRISBURG,PA,40.302957,-76.886246,DAUPHIN 17111,HARRISBURG,PA,40.266058,-76.793918,DAUPHIN 17112,HARRISBURG,PA,40.335208,-76.791438,DAUPHIN 17113,HARRISBURG,PA,40.234007,-76.827568,DAUPHIN 17120,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17121,HARRISBURG,PA,40.3136,-76.875,DAUPHIN 17122,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17123,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17124,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17125,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17126,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17127,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17128,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17129,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17130,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17140,HARRISBURG,PA,40.2315,-76.8195,DAUPHIN 17177,HARRISBURG,PA,40.2959,-76.8553,DAUPHIN 17401,YORK,PA,39.963539,-76.726887,YORK 17402,YORK,PA,39.971508,-76.674578,YORK 17403,YORK,PA,39.94943,-76.712998,YORK 17404,YORK,PA,39.961988,-76.768987,YORK 17405,YORK,PA,39.9594,-76.7263,YORK 17406,YORK,PA,39.998249,-76.592646,YORK 17407,YORK,PA,39.880203,-76.714634,YORK 17408,YORK,PA,39.9492,-76.8018,YORK 17415,YORK,PA,39.9933,-76.6475,YORK 17601,LANCASTER,PA,40.075381,-76.319888,LANCASTER 17602,LANCASTER,PA,40.033514,-76.284364,LANCASTER 17603,LANCASTER,PA,40.030475,-76.331583,LANCASTER 17604,LANCASTER,PA,40.0598,-76.3357,LANCASTER 17605,LANCASTER,PA,40.0494,-76.2506,LANCASTER 17606,LANCASTER,PA,40.0932,-76.3036,LANCASTER 17607,LANCASTER,PA,40.0516,-76.3608,LANCASTER 17608,LANCASTER,PA,40.0405,-76.308,LANCASTER 17611,LANCASTER,PA,40.0092,-76.372,LANCASTER 17622,LANCASTER,PA,40.0378755,-76.3055144,LANCASTER 17699,LANCASTER,PA,40.0377,-76.3058,LANCASTER 18015,BETHLEHEM,PA,40.600167,-75.380507,NORTHAMPTON 18016,BETHLEHEM,PA,40.6209,-75.3645,NORTHAMPTON 18017,BETHLEHEM,PA,40.65168,-75.35823,NORTHAMPTON 18018,BETHLEHEM,PA,40.627849,-75.392827,NORTHAMPTON 18020,BETHLEHEM,PA,40.6609,-75.3274,NORTHAMPTON 18025,BETHLEHEM,PA,40.6335,-75.3952,LEHIGH 18101,ALLENTOWN,PA,40.602729,-75.470955,LEHIGH 18102,ALLENTOWN,PA,40.606818,-75.478139,LEHIGH 18103,ALLENTOWN,PA,40.589145,-75.464521,LEHIGH 18104,ALLENTOWN,PA,40.601849,-75.522499,LEHIGH 18105,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18106,ALLENTOWN,PA,40.561451,-75.566424,LEHIGH 18109,ALLENTOWN,PA,40.6235,-75.4383,LEHIGH 18175,ALLENTOWN,PA,40.6029,-75.4679,LEHIGH 18195,ALLENTOWN,PA,40.5728,-75.6153,LEHIGH 18501,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18502,SCRANTON,PA,41.3732,-75.6788,LACKAWANNA 18503,SCRANTON,PA,41.409517,-75.664205,LACKAWANNA 18504,SCRANTON,PA,41.412777,-75.686081,LACKAWANNA 18505,SCRANTON,PA,41.39145,-75.665738,LACKAWANNA 18508,SCRANTON,PA,41.438917,-75.662529,LACKAWANNA 18509,SCRANTON,PA,41.427353,-75.646454,LACKAWANNA 18510,SCRANTON,PA,41.408039,-75.648397,LACKAWANNA 18512,SCRANTON,PA,41.426184,-75.62294,LACKAWANNA 18514,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18515,SCRANTON,PA,41.4476,-75.6669,LACKAWANNA 18522,SCRANTON,PA,41.4303,-75.6437,LACKAWANNA 18540,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18577,SCRANTON,PA,41.3731,-75.6841,LACKAWANNA 18701,WILKES BARRE,PA,41.244892,-75.884063,LUZERNE 18702,WILKES BARRE,PA,41.236512,-75.882557,LUZERNE 18703,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18705,WILKES BARRE,PA,41.268921,-75.845309,LUZERNE 18706,WILKES BARRE,PA,41.206709,-75.918157,LUZERNE 18710,WILKES BARRE,PA,41.2454,-75.8819,LUZERNE 18711,WILKES BARRE,PA,41.2474,-75.8536,LUZERNE 18762,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18764,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18765,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18766,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18767,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18769,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 18773,WILKES BARRE,PA,41.2401,-75.8914,LUZERNE 19019,PHILADELPHIA,PA,40.1162,-75.0141,PHILADELPHIA 19092,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19093,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19099,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19101,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19102,PHILADELPHIA,PA,39.948908,-75.166109,PHILADELPHIA 19103,PHILADELPHIA,PA,39.951285,-75.174136,PHILADELPHIA 19104,PHILADELPHIA,PA,39.959732,-75.202445,PHILADELPHIA 19105,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19106,PHILADELPHIA,PA,39.94742,-75.147271,PHILADELPHIA 19107,PHILADELPHIA,PA,39.94867,-75.159339,PHILADELPHIA 19108,PHILADELPHIA,PA,39.9591,-75.1599,PHILADELPHIA 19109,PHILADELPHIA,PA,39.9498,-75.1641,PHILADELPHIA 19110,PHILADELPHIA,PA,39.9504,-75.164,PHILADELPHIA 19111,PHILADELPHIA,PA,40.059635,-75.081792,PHILADELPHIA 19112,PHILADELPHIA,PA,39.889252,-75.178207,PHILADELPHIA 19113,PHILADELPHIA,PA,39.864998,-75.275196,DELAWARE 19114,PHILADELPHIA,PA,40.063356,-74.999032,PHILADELPHIA 19115,PHILADELPHIA,PA,40.090286,-75.041036,PHILADELPHIA 19116,PHILADELPHIA,PA,40.116599,-75.019803,PHILADELPHIA 19118,PHILADELPHIA,PA,40.081247,-75.2006,PHILADELPHIA 19119,PHILADELPHIA,PA,40.054681,-75.186564,PHILADELPHIA 19120,PHILADELPHIA,PA,40.034254,-75.121256,PHILADELPHIA 19121,PHILADELPHIA,PA,39.981085,-75.174005,PHILADELPHIA 19122,PHILADELPHIA,PA,39.978014,-75.145882,PHILADELPHIA 19123,PHILADELPHIA,PA,39.965975,-75.150968,PHILADELPHIA 19124,PHILADELPHIA,PA,40.017798,-75.089526,PHILADELPHIA 19125,PHILADELPHIA,PA,39.978751,-75.126156,PHILADELPHIA 19126,PHILADELPHIA,PA,40.056839,-75.137854,PHILADELPHIA 19127,PHILADELPHIA,PA,40.027512,-75.224167,PHILADELPHIA 19128,PHILADELPHIA,PA,40.040247,-75.223084,PHILADELPHIA 19129,PHILADELPHIA,PA,40.011816,-75.186149,PHILADELPHIA 19130,PHILADELPHIA,PA,39.967677,-75.173467,PHILADELPHIA 19131,PHILADELPHIA,PA,39.98447,-75.228226,PHILADELPHIA 19132,PHILADELPHIA,PA,39.995393,-75.16982,PHILADELPHIA 19133,PHILADELPHIA,PA,39.992467,-75.141505,PHILADELPHIA 19134,PHILADELPHIA,PA,39.99252,-75.113284,PHILADELPHIA 19135,PHILADELPHIA,PA,40.024694,-75.051827,PHILADELPHIA 19136,PHILADELPHIA,PA,40.042159,-75.024388,PHILADELPHIA 19137,PHILADELPHIA,PA,40.000849,-75.072654,PHILADELPHIA 19138,PHILADELPHIA,PA,40.05683,-75.156898,PHILADELPHIA 19139,PHILADELPHIA,PA,39.961166,-75.230301,PHILADELPHIA 19140,PHILADELPHIA,PA,40.011771,-75.145626,PHILADELPHIA 19141,PHILADELPHIA,PA,40.036473,-75.145109,PHILADELPHIA 19142,PHILADELPHIA,PA,39.922332,-75.233796,PHILADELPHIA 19143,PHILADELPHIA,PA,39.944815,-75.228819,PHILADELPHIA 19144,PHILADELPHIA,PA,40.033773,-75.173099,PHILADELPHIA 19145,PHILADELPHIA,PA,39.922724,-75.181194,PHILADELPHIA 19146,PHILADELPHIA,PA,39.937949,-75.179364,PHILADELPHIA 19147,PHILADELPHIA,PA,39.936175,-75.156324,PHILADELPHIA 19148,PHILADELPHIA,PA,39.92068,-75.159538,PHILADELPHIA 19149,PHILADELPHIA,PA,40.036915,-75.066374,PHILADELPHIA 19150,PHILADELPHIA,PA,40.07262,-75.170621,PHILADELPHIA 19151,PHILADELPHIA,PA,39.977199,-75.254492,PHILADELPHIA 19152,PHILADELPHIA,PA,40.060571,-75.047079,PHILADELPHIA 19153,PHILADELPHIA,PA,39.905512,-75.244431,PHILADELPHIA 19154,PHILADELPHIA,PA,40.089738,-74.978052,PHILADELPHIA 19155,PHILADELPHIA,PA,40.0947,-74.9818,PHILADELPHIA 19160,PHILADELPHIA,PA,40.0117,-75.1463,PHILADELPHIA 19161,PHILADELPHIA,PA,40.0614,-75.0795,PHILADELPHIA 19162,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19170,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19171,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19172,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19173,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19175,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19176,PHILADELPHIA,PA,39.9523,-75.1638,PHILADELPHIA 19177,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19178,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19179,PHILADELPHIA,PA,40.0315,-75.1764,PHILADELPHIA 19181,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19182,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19183,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19184,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19185,PHILADELPHIA,PA,39.8893,-75.1701,PHILADELPHIA 19187,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19188,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19190,PHILADELPHIA,PA,39.952335,-75.163789,PHILADELPHIA 19191,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19192,PHILADELPHIA,PA,39.9543,-75.1832,PHILADELPHIA 19193,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19194,PHILADELPHIA,PA,39.9543,-75.1827,PHILADELPHIA 19195,PHILADELPHIA,PA,39.9522,-75.1642,PHILADELPHIA 19196,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19197,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19244,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19255,PHILADELPHIA,PA,39.9522,-75.1641,PHILADELPHIA 19481,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19482,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19483,VALLEY FORGE,PA,40.08,-75.4159,MONTGOMERY 19484,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19485,VALLEY FORGE,PA,40.1016,-75.3991,MONTGOMERY 19493,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19494,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19495,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19496,VALLEY FORGE,PA,40.0969,-75.47,CHESTER 19601,READING,PA,40.346621,-75.935132,BERKS 19602,READING,PA,40.330604,-75.919229,BERKS 19603,READING,PA,40.3362,-75.9277,BERKS 19604,READING,PA,40.350721,-75.914262,BERKS 19605,READING,PA,40.38859,-75.932769,BERKS 19606,READING,PA,40.325109,-75.868178,BERKS 19607,READING,PA,40.299696,-75.953103,BERKS 19608,READING,PA,40.31449,-76.024086,BERKS 19609,READING,PA,40.325778,-75.995347,BERKS 19610,READING,PA,40.333478,-75.976382,BERKS 19611,READING,PA,40.324989,-75.944188,BERKS 19612,READING,PA,40.3683,-75.9116,BERKS 19640,READING,PA,40.3683,-75.9116,BERKS 19702,NEWARK,DE,39.634869,-75.699339,NEW CASTLE 19711,NEWARK,DE,39.701129,-75.737534,NEW CASTLE 19712,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19713,NEWARK,DE,39.669881,-75.715101,NEW CASTLE 19714,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19715,NEWARK,DE,39.6832,-75.749,NEW CASTLE 19716,NEWARK,DE,39.6814,-75.754,NEW CASTLE 19717,NEWARK,DE,39.6816,-75.7545,NEW CASTLE 19718,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19725,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19726,NEWARK,DE,39.6836,-75.75,NEW CASTLE 19801,WILMINGTON,DE,39.737752,-75.549658,NEW CASTLE 19802,WILMINGTON,DE,39.75638,-75.534041,NEW CASTLE 19803,WILMINGTON,DE,39.793236,-75.531076,NEW CASTLE 19804,WILMINGTON,DE,39.720854,-75.612815,NEW CASTLE 19805,WILMINGTON,DE,39.743375,-75.582724,NEW CASTLE 19806,WILMINGTON,DE,39.757076,-75.563503,NEW CASTLE 19807,WILMINGTON,DE,39.782206,-75.607205,NEW CASTLE 19808,WILMINGTON,DE,39.734737,-75.663891,NEW CASTLE 19809,WILMINGTON,DE,39.771913,-75.494592,NEW CASTLE 19810,WILMINGTON,DE,39.819377,-75.505999,NEW CASTLE 19850,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19880,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19884,WILMINGTON,DE,39.778889,-75.598611,NEW CASTLE 19885,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19886,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19887,WILMINGTON,DE,39.8187,-75.508,NEW CASTLE 19889,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19890,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19891,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19892,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19893,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19894,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19895,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19896,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19897,WILMINGTON,DE,39.7856,-75.5458,NEW CASTLE 19898,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 19899,WILMINGTON,DE,39.7458,-75.5469,NEW CASTLE 20001,WASHINGTON,DC,38.912217,-77.017691,DISTRICT OF COLUMBIA 20002,WASHINGTON,DC,38.902365,-76.990055,DISTRICT OF COLUMBIA 20003,WASHINGTON,DC,38.882941,-76.989539,DISTRICT OF COLUMBIA 20004,WASHINGTON,DC,38.892955,-77.026303,DISTRICT OF COLUMBIA 20005,WASHINGTON,DC,38.906731,-77.031236,DISTRICT OF COLUMBIA 20006,WASHINGTON,DC,38.896444,-77.044701,DISTRICT OF COLUMBIA 20007,WASHINGTON,DC,38.914365,-77.074042,DISTRICT OF COLUMBIA 20008,WASHINGTON,DC,38.936282,-77.059936,DISTRICT OF COLUMBIA 20009,WASHINGTON,DC,38.920202,-77.037504,DISTRICT OF COLUMBIA 20010,WASHINGTON,DC,38.93272,-77.032183,DISTRICT OF COLUMBIA 20011,WASHINGTON,DC,38.951786,-77.020251,DISTRICT OF COLUMBIA 20012,WASHINGTON,DC,38.975712,-77.028248,DISTRICT OF COLUMBIA 20013,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20015,WASHINGTON,DC,38.965768,-77.067961,DISTRICT OF COLUMBIA 20016,WASHINGTON,DC,38.938117,-77.086037,DISTRICT OF COLUMBIA 20017,WASHINGTON,DC,38.936723,-76.994038,DISTRICT OF COLUMBIA 20018,WASHINGTON,DC,38.927724,-76.976159,DISTRICT OF COLUMBIA 20019,WASHINGTON,DC,38.890237,-76.937588,DISTRICT OF COLUMBIA 20020,WASHINGTON,DC,38.860039,-76.974187,DISTRICT OF COLUMBIA 20022,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20023,WASHINGTON,DC,38.9008,-77.0104,DISTRICT OF COLUMBIA 20024,WASHINGTON,DC,38.875939,-77.016028,DISTRICT OF COLUMBIA 20026,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20027,WASHINGTON,DC,38.9008,-76.9827,DISTRICT OF COLUMBIA 20029,WASHINGTON,DC,38.8938,-76.9501,DISTRICT OF COLUMBIA 20030,WASHINGTON,DC,38.8648,-76.9707,DISTRICT OF COLUMBIA 20032,WASHINGTON,DC,38.833843,-76.999549,DISTRICT OF COLUMBIA 20033,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20035,WASHINGTON,DC,38.9026,-77.0398,DISTRICT OF COLUMBIA 20036,WASHINGTON,DC,38.908704,-77.041434,DISTRICT OF COLUMBIA 20037,WASHINGTON,DC,38.901446,-77.050448,DISTRICT OF COLUMBIA 20038,WASHINGTON,DC,38.9008,-77.0328,DISTRICT OF COLUMBIA 20039,WASHINGTON,DC,38.9528,-77.0234,DISTRICT OF COLUMBIA 20040,WASHINGTON,DC,38.9658,-77.0276,DISTRICT OF COLUMBIA 20041,WASHINGTON,DC,38.944,-77.4624,DISTRICT OF COLUMBIA 20042,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20043,WASHINGTON,DC,38.9033,-77.0325,DISTRICT OF COLUMBIA 20044,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20045,WASHINGTON,DC,38.8947,-77.0287,DISTRICT OF COLUMBIA 20046,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20047,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20049,WASHINGTON,DC,38.8963,-77.02,DISTRICT OF COLUMBIA 20050,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20051,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20052,WASHINGTON,DC,38.899,-77.0457,DISTRICT OF COLUMBIA 20053,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20055,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20056,WASHINGTON,DC,38.9158,-77.0321,DISTRICT OF COLUMBIA 20057,WASHINGTON,DC,38.9079,-77.0714,DISTRICT OF COLUMBIA 20058,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20059,WASHINGTON,DC,38.9226,-77.0212,DISTRICT OF COLUMBIA 20060,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20061,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20062,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20063,WASHINGTON,DC,38.9055,-77.0467,DISTRICT OF COLUMBIA 20064,WASHINGTON,DC,38.9326,-76.9973,DISTRICT OF COLUMBIA 20065,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20066,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20067,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20068,WASHINGTON,DC,38.9002,-77.0437,DISTRICT OF COLUMBIA 20069,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20070,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20071,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20073,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20074,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20075,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20076,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20077,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20078,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20080,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20081,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20082,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20088,WASHINGTON,DC,38.9417,-77.0771,DISTRICT OF COLUMBIA 20090,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20091,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20097,WASHINGTON,DC,38.8858,-77.0063,DISTRICT OF COLUMBIA 20098,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20101,DULLES,VA,38.9886,-77.4507,LOUDOUN 20102,DULLES,VA,38.9886,-77.4507,LOUDOUN 20103,DULLES,VA,38.9886,-77.4507,LOUDOUN 20104,DULLES,VA,38.9886,-77.4507,LOUDOUN 20108,MANASSAS,VA,38.7518,-77.4728,MANASSAS CITY 20109,MANASSAS,VA,38.841111,-77.538056,PRINCE WILLIAM 20110,MANASSAS,VA,38.7509,-77.48,MANASSAS CITY 20111,MANASSAS,VA,38.783889,-77.47,PRINCE WILLIAM 20112,MANASSAS,VA,38.6811,-77.4324,PRINCE WILLIAM 20113,MANASSAS,VA,38.7776,-77.5197,MANASSAS PARK CITY 20170,HERNDON,VA,38.9764,-77.3839,FAIRFAX 20171,HERNDON,VA,38.935556,-77.380278,FAIRFAX 20172,HERNDON,VA,38.9335,-77.3477,FAIRFAX 20189,DULLES,VA,38.8951,-77.0369,LOUDOUN 20190,RESTON,VA,38.96,-77.3456,FAIRFAX 20191,RESTON,VA,38.9379,-77.352,FAIRFAX 20192,HERNDON,VA,38.9496,-77.366,FAIRFAX 20193,RESTON,VA,38.959167,-77.336944,FAIRFAX 20194,RESTON,VA,38.9785,-77.347,FAIRFAX 20195,RESTON,VA,38.9335,-77.3477,FAIRFAX 20196,RESTON,VA,38.9253,-77.3971,FAIRFAX 20199,DULLES,VA,39.0011,-77.4562,LOUDOUN 20201,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20202,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20203,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20204,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20206,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20207,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20208,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20210,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20211,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20212,WASHINGTON,DC,38.8971,-77.0084,DISTRICT OF COLUMBIA 20213,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20214,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20215,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20216,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20217,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20218,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20219,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20220,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20221,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20222,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20223,WASHINGTON,DC,38.895,-77.036667,DISTRICT OF COLUMBIA 20224,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20226,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20227,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20228,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20229,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20230,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20232,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20233,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20235,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20237,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20238,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20239,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20240,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20241,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20242,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20244,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20245,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20250,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20251,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20254,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20260,WASHINGTON,DC,38.8836,-77.02,DISTRICT OF COLUMBIA 20261,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20262,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20265,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20266,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20268,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20270,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20277,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20289,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20299,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20301,WASHINGTON,DC,38.891019,-77.038196,DISTRICT OF COLUMBIA 20303,WASHINGTON,DC,38.9171,-76.994,DISTRICT OF COLUMBIA 20306,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20307,WASHINGTON,DC,38.9768,-77.0323,DISTRICT OF COLUMBIA 20310,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20314,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20317,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20318,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20319,WASHINGTON,DC,38.867778,-77.015556,DISTRICT OF COLUMBIA 20330,WASHINGTON,DC,38.8575,-77.0527,DISTRICT OF COLUMBIA 20340,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20350,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20355,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20370,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20372,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20375,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20380,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20389,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20390,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20392,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20393,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20394,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20395,WASHINGTON,DC,38.8619,-76.9738,DISTRICT OF COLUMBIA 20401,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20402,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20403,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20404,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20405,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20406,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20407,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20408,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20409,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20410,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20411,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20412,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20413,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20414,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20415,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20416,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20418,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20419,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20420,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20421,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20422,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20423,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20424,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20425,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20426,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20427,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20428,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20429,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20431,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20433,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20434,WASHINGTON,DC,38.9058,-77.0472,DISTRICT OF COLUMBIA 20435,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20436,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20437,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20439,WASHINGTON,DC,38.8991,-77.035,DISTRICT OF COLUMBIA 20440,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20441,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20442,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20444,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20447,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20451,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20453,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20456,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20460,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20463,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20468,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20469,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20470,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20472,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20500,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20501,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20502,WASHINGTON,DC,38.8985,-77.0371,DISTRICT OF COLUMBIA 20503,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20504,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20505,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20506,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20507,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20508,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20509,WASHINGTON,DC,38.8951,-77.0369,DISTRICT OF COLUMBIA 20510,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20511,WASHINGTON,DC,38.977,-77.0527,DISTRICT OF COLUMBIA 20515,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20520,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20521,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20522,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20523,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20524,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20525,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20526,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20527,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20528,WASHINGTON,DC,38.895,-77.0367,DISTRICT OF COLUMBIA 20529,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 20530,WASHINGTON,DC,38.894,-77.025,DISTRICT OF COLUMBIA 20531,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20532,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20533,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20534,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20535,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20536,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20537,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20538,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20539,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20540,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20541,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20542,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20543,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20544,WASHINGTON,DC,38.8968,-77.0079,DISTRICT OF COLUMBIA 20546,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20547,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20548,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20549,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20551,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20552,WASHINGTON,DC,38.8982,-77.0406,DISTRICT OF COLUMBIA 20553,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20554,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20555,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20557,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20558,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20559,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20560,WASHINGTON,DC,38.8888,-77.0254,DISTRICT OF COLUMBIA 20565,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20566,WASHINGTON,DC,38.8958,-77.056,DISTRICT OF COLUMBIA 20570,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20571,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20572,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20573,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20575,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20576,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20577,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20578,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20579,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20580,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20581,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20585,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20586,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20590,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20591,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20593,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20594,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 20597,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20599,WASHINGTON,DC,38.895,-77.0366,DISTRICT OF COLUMBIA 20707,LAUREL,MD,39.107687,-76.872043,PRINCE GEORGES 20708,LAUREL,MD,39.068376,-76.847725,PRINCE GEORGES 20709,LAUREL,MD,39.061389,-76.851111,PRINCE GEORGES 20715,BOWIE,MD,38.979696,-76.743497,PRINCE GEORGES 20716,BOWIE,MD,38.927482,-76.731979,PRINCE GEORGES 20717,BOWIE,MD,38.925,-76.743056,PRINCE GEORGES 20718,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20719,BOWIE,MD,38.9827,-76.7574,PRINCE GEORGES 20720,BOWIE,MD,38.973733,-76.789526,PRINCE GEORGES 20721,BOWIE,MD,38.919588,-76.80527,PRINCE GEORGES 20723,LAUREL,MD,39.120806,-76.84345,HOWARD 20724,LAUREL,MD,39.095801,-76.815485,ANNE ARUNDEL 20725,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20726,LAUREL,MD,39.1043,-76.8445,PRINCE GEORGES 20781,HYATTSVILLE,MD,38.95063,-76.934652,PRINCE GEORGES 20782,HYATTSVILLE,MD,38.963575,-76.966632,PRINCE GEORGES 20783,HYATTSVILLE,MD,38.993751,-76.97472,PRINCE GEORGES 20784,HYATTSVILLE,MD,38.951541,-76.888829,PRINCE GEORGES 20785,HYATTSVILLE,MD,38.91992,-76.882243,PRINCE GEORGES 20787,HYATTSVILLE,MD,38.988611,-76.981667,PRINCE GEORGES 20788,HYATTSVILLE,MD,38.963333,-76.962222,PRINCE GEORGES 20810,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20811,BETHESDA,MD,38.9806,-77.1008,MONTGOMERY 20813,BETHESDA,MD,38.9643,-77.0884,MONTGOMERY 20814,BETHESDA,MD,39.000343,-77.102165,MONTGOMERY 20816,BETHESDA,MD,38.958485,-77.11528,MONTGOMERY 20817,BETHESDA,MD,38.999659,-77.137239,MONTGOMERY 20824,BETHESDA,MD,38.9832,-77.0942,MONTGOMERY 20827,BETHESDA,MD,39.014,-77.1602,MONTGOMERY 20847,ROCKVILLE,MD,39.0838,-77.153,MONTGOMERY 20848,ROCKVILLE,MD,39.0753,-77.1165,MONTGOMERY 20849,ROCKVILLE,MD,39.084,-77.1537,MONTGOMERY 20850,ROCKVILLE,MD,39.087037,-77.167973,MONTGOMERY 20851,ROCKVILLE,MD,39.076265,-77.123449,MONTGOMERY 20852,ROCKVILLE,MD,39.049628,-77.120416,MONTGOMERY 20853,ROCKVILLE,MD,39.088738,-77.095037,MONTGOMERY 20857,ROCKVILLE,MD,39.0629,-77.1152,MONTGOMERY 20877,GAITHERSBURG,MD,39.14187,-77.188993,MONTGOMERY 20878,GAITHERSBURG,MD,39.115534,-77.236434,MONTGOMERY 20879,GAITHERSBURG,MD,39.172597,-77.194599,MONTGOMERY 20882,GAITHERSBURG,MD,39.238345,-77.174718,MONTGOMERY 20883,GAITHERSBURG,MD,39.1743,-77.1915,MONTGOMERY 20884,GAITHERSBURG,MD,39.139,-77.1942,MONTGOMERY 20885,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20889,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20892,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20894,BETHESDA,MD,38.9805,-77.1005,MONTGOMERY 20898,GAITHERSBURG,MD,39.1272,-77.1727,MONTGOMERY 20899,GAITHERSBURG,MD,39.1433,-77.2016,MONTGOMERY 20901,SILVER SPRING,MD,39.019106,-77.007613,MONTGOMERY 20902,SILVER SPRING,MD,39.04158,-77.046348,MONTGOMERY 20903,SILVER SPRING,MD,39.009513,-76.984648,MONTGOMERY 20904,SILVER SPRING,MD,39.06524,-76.976399,MONTGOMERY 20905,SILVER SPRING,MD,39.102438,-76.989928,MONTGOMERY 20906,SILVER SPRING,MD,39.081041,-77.063233,MONTGOMERY 20907,SILVER SPRING,MD,38.9965,-77.0341,MONTGOMERY 20908,SILVER SPRING,MD,39.1029,-77.0763,MONTGOMERY 20910,SILVER SPRING,MD,38.998198,-77.033776,MONTGOMERY 20911,SILVER SPRING,MD,38.9943,-77.0302,MONTGOMERY 20914,SILVER SPRING,MD,39.075556,-77.002222,MONTGOMERY 20915,SILVER SPRING,MD,39.039722,-77.055556,MONTGOMERY 20916,SILVER SPRING,MD,39.083,-77.0785,MONTGOMERY 20918,SILVER SPRING,MD,39.0213,-77.015,MONTGOMERY 20993,SILVER SPRING,MD,38.9907,-77.0261,MONTGOMERY 20997,SILVER SPRING,MD,39.1127,-77.248,MONTGOMERY 21201,BALTIMORE,MD,39.29463,-76.625203,BALTIMORE CITY 21202,BALTIMORE,MD,39.299844,-76.607499,BALTIMORE CITY 21203,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21205,BALTIMORE,MD,39.300871,-76.579915,BALTIMORE CITY 21206,BALTIMORE,MD,39.336494,-76.541135,BALTIMORE CITY 21209,BALTIMORE,MD,39.371622,-76.674431,BALTIMORE CITY 21210,BALTIMORE,MD,39.350727,-76.632099,BALTIMORE CITY 21211,BALTIMORE,MD,39.331642,-76.633625,BALTIMORE CITY 21212,BALTIMORE,MD,39.362571,-76.609989,BALTIMORE CITY 21213,BALTIMORE,MD,39.312667,-76.581012,BALTIMORE CITY 21214,BALTIMORE,MD,39.35206,-76.564375,BALTIMORE CITY 21215,BALTIMORE,MD,39.344572,-76.679397,BALTIMORE CITY 21216,BALTIMORE,MD,39.309349,-76.669891,BALTIMORE CITY 21217,BALTIMORE,MD,39.306416,-76.639267,BALTIMORE CITY 21218,BALTIMORE,MD,39.3265,-76.6048,BALTIMORE CITY 21223,BALTIMORE,MD,39.287,-76.647586,BALTIMORE CITY 21224,BALTIMORE,MD,39.287558,-76.556831,BALTIMORE CITY 21229,BALTIMORE,MD,39.285645,-76.689885,BALTIMORE CITY 21230,BALTIMORE,MD,39.269943,-76.626193,BALTIMORE CITY 21231,BALTIMORE,MD,39.289193,-76.589956,BALTIMORE CITY 21233,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21235,BALTIMORE,MD,39.3111,-76.7213,BALTIMORE CITY 21239,BALTIMORE,MD,39.360977,-76.589082,BALTIMORE CITY 21240,BALTIMORE,MD,39.17185,-76.648287,ANNE ARUNDEL 21241,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21250,BALTIMORE,MD,39.2595,-76.7091,BALTIMORE 21251,BALTIMORE,MD,39.3459,-76.5856,BALTIMORE CITY 21252,BALTIMORE,MD,39.3875,-76.6184,BALTIMORE 21263,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21264,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21265,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21268,BALTIMORE,MD,39.2192,-76.7214,BALTIMORE CITY 21270,BALTIMORE,MD,39.3339,-76.674,BALTIMORE CITY 21273,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21274,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21275,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21278,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21279,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21280,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21281,BALTIMORE,MD,39.2873,-76.5419,BALTIMORE CITY 21282,BALTIMORE,MD,39.374167,-76.722778,BALTIMORE 21283,BALTIMORE,MD,39.2902,-76.6125,BALTIMORE CITY 21284,BALTIMORE,MD,39.418889,-76.535556,BALTIMORE 21285,BALTIMORE,MD,39.4164,-76.608,BALTIMORE 21287,BALTIMORE,MD,39.2946,-76.5908,BALTIMORE CITY 21288,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21289,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21290,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21297,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21298,BALTIMORE,MD,39.291,-76.6055,BALTIMORE CITY 21401,ANNAPOLIS,MD,38.999645,-76.503139,ANNE ARUNDEL 21402,ANNAPOLIS,MD,38.982436,-76.48079,ANNE ARUNDEL 21403,ANNAPOLIS,MD,38.952394,-76.49103,ANNE ARUNDEL 21404,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21405,ANNAPOLIS,MD,38.9783,-76.4925,ANNE ARUNDEL 21409,ANNAPOLIS,MD,39.01932,-76.441827,ANNE ARUNDEL 21411,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21412,ANNAPOLIS,MD,38.9724,-76.5502,ANNE ARUNDEL 21660,RIDGELY,MD,38.956787,-75.884825,CAROLINE 21681,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21682,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21683,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21684,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21685,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21686,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21687,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21688,RIDGELY,MD,38.9477,-75.8847,CAROLINE 21701,FREDERICK,MD,39.408235,-77.400875,FREDERICK 21702,FREDERICK,MD,39.436532,-77.447369,FREDERICK 21703,FREDERICK,MD,39.3876,-77.4471,FREDERICK 21704,FREDERICK,MD,39.325833,-77.351667,FREDERICK 21705,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21709,FREDERICK,MD,39.4138,-77.4083,FREDERICK 21740,HAGERSTOWN,MD,39.632022,-77.737215,WASHINGTON 21741,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21742,HAGERSTOWN,MD,39.657291,-77.692102,WASHINGTON 21746,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21747,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21748,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 21749,HAGERSTOWN,MD,39.6437,-77.7205,WASHINGTON 22030,FAIRFAX,VA,38.845826,-77.324151,FAIRFAX CITY 22031,FAIRFAX,VA,38.860353,-77.264937,FAIRFAX 22032,FAIRFAX,VA,38.817729,-77.292527,FAIRFAX 22033,FAIRFAX,VA,38.877627,-77.388451,FAIRFAX 22034,FAIRFAX,VA,38.8595,-77.2659,FAIRFAX 22035,FAIRFAX,VA,38.854,-77.3577,FAIRFAX 22036,FAIRFAX,VA,38.86,-77.2593,FAIRFAX 22037,FAIRFAX,VA,38.8594,-77.2269,FAIRFAX 22038,FAIRFAX,VA,38.8482,-77.3065,FAIRFAX CITY 22040,FALLS CHURCH,VA,38.8838,-77.1741,FALLS CHURCH CITY 22041,FALLS CHURCH,VA,38.848506,-77.136928,FAIRFAX 22042,FALLS CHURCH,VA,38.866272,-77.192271,FAIRFAX 22043,FALLS CHURCH,VA,38.901226,-77.20005,FAIRFAX 22044,FALLS CHURCH,VA,38.863544,-77.150819,FAIRFAX 22046,FALLS CHURCH,VA,38.88559,-77.180231,FALLS CHURCH CITY 22047,FALLS CHURCH,VA,38.869,-77.2241,FAIRFAX 22081,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22082,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22092,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22095,HERNDON,VA,38.9694,-77.3863,FAIRFAX 22096,RESTON,VA,38.925278,-77.396944,FAIRFAX 22101,MC LEAN,VA,38.932624,-77.170628,FAIRFAX 22102,MC LEAN,VA,38.936318,-77.221934,FAIRFAX 22106,MC LEAN,VA,38.9372,-77.1786,FAIRFAX 22107,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22108,MC LEAN,VA,38.9327,-77.1828,FAIRFAX 22109,MC LEAN,VA,38.9327,-77.1825,FAIRFAX 22116,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22118,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22119,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22120,MERRIFIELD,VA,38.8741,-77.2272,FAIRFAX 22150,SPRINGFIELD,VA,38.779718,-77.186582,FAIRFAX 22151,SPRINGFIELD,VA,38.803323,-77.213908,FAIRFAX 22152,SPRINGFIELD,VA,38.776488,-77.233243,FAIRFAX 22153,SPRINGFIELD,VA,38.744859,-77.237026,FAIRFAX 22156,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22158,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22159,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22160,SPRINGFIELD,VA,38.8111,-77.2182,FAIRFAX 22161,SPRINGFIELD,VA,38.7891,-77.1875,FAIRFAX 22180,VIENNA,VA,38.893527,-77.253219,FAIRFAX 22181,VIENNA,VA,38.897695,-77.288048,FAIRFAX 22182,VIENNA,VA,38.928005,-77.264876,FAIRFAX 22183,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22184,VIENNA,VA,38.9013,-77.2685,FAIRFAX 22185,VIENNA,VA,38.880833,-77.301111,FAIRFAX 22201,ARLINGTON,VA,38.887103,-77.093197,ARLINGTON 22202,ARLINGTON,VA,38.856547,-77.059228,ARLINGTON 22203,ARLINGTON,VA,38.873799,-77.114191,ARLINGTON 22204,ARLINGTON,VA,38.858962,-77.099688,ARLINGTON 22205,ARLINGTON,VA,38.883557,-77.139488,ARLINGTON 22206,ARLINGTON,VA,38.841508,-77.09046,ARLINGTON 22207,ARLINGTON,VA,38.903321,-77.126287,ARLINGTON 22209,ARLINGTON,VA,38.8926,-77.07531,ARLINGTON 22210,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22212,ARLINGTON,VA,38.8809,-76.8545,ARLINGTON 22213,ARLINGTON,VA,38.895375,-77.163295,ARLINGTON 22214,ARLINGTON,VA,38.8795,-77.0802,ARLINGTON 22215,ARLINGTON,VA,38.8793,-77.1131,ARLINGTON 22216,ARLINGTON,VA,38.8916,-77.0839,ARLINGTON 22217,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22218,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22219,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22222,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22223,ARLINGTON,VA,38.8867,-77.0936,ARLINGTON 22225,ARLINGTON,VA,38.8566,-77.0584,ARLINGTON 22226,ARLINGTON,VA,38.8856,-77.0998,ARLINGTON 22227,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22229,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22230,ARLINGTON,VA,38.873,-77.1042,ARLINGTON 22234,ARLINGTON,VA,38.8944,-77.07,ARLINGTON 22240,ARLINGTON,VA,38.88,-77.1153,ARLINGTON 22241,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22242,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22243,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22244,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22245,ARLINGTON,VA,38.8582,-77.0533,ARLINGTON 22246,ARLINGTON,VA,38.8575,-77.0531,ARLINGTON 22301,ALEXANDRIA,VA,38.820042,-77.058901,ALEXANDRIA CITY 22302,ALEXANDRIA,VA,38.83354,-77.092412,ALEXANDRIA CITY 22303,ALEXANDRIA,VA,38.791143,-77.076608,FAIRFAX 22304,ALEXANDRIA,VA,38.814871,-77.120989,ALEXANDRIA CITY 22305,ALEXANDRIA,VA,38.837184,-77.064039,ALEXANDRIA CITY 22306,ALEXANDRIA,VA,38.755769,-77.085389,FAIRFAX 22307,ALEXANDRIA,VA,38.77056,-77.062511,FAIRFAX 22308,ALEXANDRIA,VA,38.729122,-77.060639,FAIRFAX 22309,ALEXANDRIA,VA,38.727855,-77.108139,FAIRFAX 22310,ALEXANDRIA,VA,38.769132,-77.131707,FAIRFAX 22311,ALEXANDRIA,VA,38.832039,-77.119962,ALEXANDRIA CITY 22312,ALEXANDRIA,VA,38.819099,-77.148438,FAIRFAX 22313,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22314,ALEXANDRIA,VA,38.806018,-77.052867,ALEXANDRIA CITY 22315,ALEXANDRIA,VA,38.756667,-77.145556,FAIRFAX 22320,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22321,ALEXANDRIA,VA,38.8062,-77.0528,FAIRFAX 22331,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22332,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22333,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22334,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22336,ALEXANDRIA,VA,38.8047,-77.0472,ALEXANDRIA CITY 22401,FREDERICKSBURG,VA,38.299538,-77.477152,FREDERICKSBURG CITY 22402,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22403,FREDERICKSBURG,VA,38.3242,-77.4685,STAFFORD 22404,FREDERICKSBURG,VA,38.2985,-77.4582,FREDERICKSBURG CITY 22405,FREDERICKSBURG,VA,38.314557,-77.404537,STAFFORD 22406,FREDERICKSBURG,VA,38.379627,-77.534892,STAFFORD 22407,FREDERICKSBURG,VA,38.268803,-77.547584,SPOTSYLVANIA 22408,FREDERICKSBURG,VA,38.248141,-77.468068,SPOTSYLVANIA 22412,FREDERICKSBURG,VA,38.3971,-77.5516,STAFFORD 22901,CHARLOTTESVILLE,VA,38.054752,-78.490869,ALBEMARLE 22902,CHARLOTTESVILLE,VA,37.9962,-78.4782,CHARLOTTESVILLE CITY 22903,CHARLOTTESVILLE,VA,38.032728,-78.505758,CHARLOTTESVILLE CITY 22904,CHARLOTTESVILLE,VA,38.0337,-78.5153,CHARLOTTESVILLE CITY 22905,CHARLOTTESVILLE,VA,38.0519,-78.501,CHARLOTTESVILLE CITY 22906,CHARLOTTESVILLE,VA,38.0883,-78.4701,CHARLOTTESVILLE CITY 22907,CHARLOTTESVILLE,VA,38.0575,-78.4922,CHARLOTTESVILLE CITY 22908,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22909,CHARLOTTESVILLE,VA,38.0444,-78.4726,ALBEMARLE 22910,CHARLOTTESVILLE,VA,38.0291,-78.4769,CHARLOTTESVILLE CITY 22911,CHARLOTTESVILLE,VA,38.0943,-78.4232,ALBEMARLE 23218,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23219,RICHMOND,VA,37.546265,-77.437798,RICHMOND CITY 23220,RICHMOND,VA,37.549808,-77.458798,RICHMOND CITY 23221,RICHMOND,VA,37.558301,-77.4845,RICHMOND CITY 23222,RICHMOND,VA,37.574802,-77.426725,RICHMOND CITY 23223,RICHMOND,VA,37.547721,-77.394772,RICHMOND CITY 23224,RICHMOND,VA,37.495512,-77.471014,RICHMOND CITY 23225,RICHMOND,VA,37.515842,-77.504709,RICHMOND CITY 23226,RICHMOND,VA,37.582473,-77.519657,HENRICO 23227,RICHMOND,VA,37.604181,-77.446309,HENRICO 23228,RICHMOND,VA,37.623503,-77.493308,HENRICO 23229,RICHMOND,VA,37.596351,-77.566202,HENRICO 23230,RICHMOND,VA,37.588376,-77.496828,HENRICO 23231,RICHMOND,VA,37.491529,-77.368002,HENRICO 23232,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23233,RICHMOND,VA,37.619354,-77.614933,HENRICO 23234,RICHMOND,VA,37.453158,-77.469798,CHESTERFIELD 23235,RICHMOND,VA,37.512034,-77.565103,CHESTERFIELD 23236,RICHMOND,VA,37.478165,-77.585413,CHESTERFIELD 23237,RICHMOND,VA,37.401145,-77.461471,CHESTERFIELD 23238,RICHMOND,VA,37.605,-77.6209,HENRICO 23240,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23241,RICHMOND,VA,37.5441,-77.4406,RICHMOND CITY 23242,RICHMOND,VA,37.6171,-77.6149,HENRICO 23249,RICHMOND,VA,37.4967,-77.4672,RICHMOND CITY 23250,RICHMOND,VA,37.502778,-77.337222,HENRICO 23255,RICHMOND,VA,37.6074,-77.5672,HENRICO 23260,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23261,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23269,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23273,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23274,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23276,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23278,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23279,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23282,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23284,RICHMOND,VA,37.5484,-77.454,RICHMOND CITY 23285,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23286,RICHMOND,VA,37.5594,-77.4472,RICHMOND CITY 23288,RICHMOND,VA,37.5992,-77.5456,HENRICO 23289,RICHMOND,VA,37.5439,-77.4489,RICHMOND CITY 23290,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23291,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23292,RICHMOND,VA,37.5536,-77.4605,RICHMOND CITY 23293,RICHMOND,VA,37.5428,-77.4396,RICHMOND CITY 23294,RICHMOND,VA,37.632923,-77.545125,HENRICO 23295,RICHMOND,VA,37.5537,-77.4609,RICHMOND CITY 23297,RICHMOND,VA,37.4019,-77.4597,CHESTERFIELD 23298,RICHMOND,VA,37.5419,-77.4288,RICHMOND CITY 23320,CHESAPEAKE,VA,36.735246,-76.23843,CHESAPEAKE CITY 23321,CHESAPEAKE,VA,36.827964,-76.411012,CHESAPEAKE CITY 23322,CHESAPEAKE,VA,36.634008,-76.213064,CHESAPEAKE CITY 23323,CHESAPEAKE,VA,36.763424,-76.339743,CHESAPEAKE CITY 23324,CHESAPEAKE,VA,36.805568,-76.266557,CHESAPEAKE CITY 23325,CHESAPEAKE,VA,36.813963,-76.240555,CHESAPEAKE CITY 23326,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23327,CHESAPEAKE,VA,36.7662,-76.252,CHESAPEAKE CITY 23328,CHESAPEAKE,VA,36.7296,-76.2268,CHESAPEAKE CITY 23432,SUFFOLK,VA,36.866823,-76.559811,SUFFOLK CITY 23433,SUFFOLK,VA,36.909027,-76.49286,SUFFOLK CITY 23434,SUFFOLK,VA,36.730433,-76.593147,SUFFOLK CITY 23435,SUFFOLK,VA,36.854427,-76.466397,SUFFOLK CITY 23436,SUFFOLK,VA,36.892625,-76.514157,SUFFOLK CITY 23437,SUFFOLK,VA,36.652611,-76.792043,SUFFOLK CITY 23438,SUFFOLK,VA,36.591311,-76.687097,SUFFOLK CITY 23439,SUFFOLK,VA,36.728056,-76.583889,SUFFOLK CITY 23450,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23451,VIRGINIA BEACH,VA,36.858451,-76.001928,VIRGINIA BEACH CITY 23452,VIRGINIA BEACH,VA,36.83481,-76.096142,VIRGINIA BEACH CITY 23453,VIRGINIA BEACH,VA,36.7891,-76.0852,VIRGINIA BEACH CITY 23454,VIRGINIA BEACH,VA,36.828187,-76.023723,VIRGINIA BEACH CITY 23455,VIRGINIA BEACH,VA,36.888121,-76.144552,VIRGINIA BEACH CITY 23456,VIRGINIA BEACH,VA,36.779851,-76.089162,VIRGINIA BEACH CITY 23457,VIRGINIA BEACH,VA,36.624793,-76.037816,VIRGINIA BEACH CITY 23458,VIRGINIA BEACH,VA,36.8525,-75.9767,VIRGINIA BEACH CITY 23459,VIRGINIA BEACH,VA,36.9216,-76.017122,VIRGINIA BEACH CITY 23460,VIRGINIA BEACH,VA,36.8133,-76.0288,VIRGINIA BEACH CITY 23461,VIRGINIA BEACH,VA,36.7779,-75.9608,VIRGINIA BEACH CITY 23462,VIRGINIA BEACH,VA,36.839193,-76.152184,VIRGINIA BEACH CITY 23463,VIRGINIA BEACH,VA,36.7996,-76.1902,VIRGINIA BEACH CITY 23464,VIRGINIA BEACH,VA,36.797772,-76.175909,VIRGINIA BEACH CITY 23465,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23466,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23467,VIRGINIA BEACH,VA,36.8018,-76.1735,VIRGINIA BEACH CITY 23471,VIRGINIA BEACH,VA,36.8952,-76.1416,VIRGINIA BEACH CITY 23479,VIRGINIA BEACH,VA,36.8527,-75.9783,VIRGINIA BEACH CITY 23501,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23502,NORFOLK,VA,36.854648,-76.214253,NORFOLK CITY 23503,NORFOLK,VA,36.944196,-76.252008,NORFOLK CITY 23504,NORFOLK,VA,36.858554,-76.268628,NORFOLK CITY 23505,NORFOLK,VA,36.91675,-76.28748,NORFOLK CITY 23506,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23507,NORFOLK,VA,36.864506,-76.300385,NORFOLK CITY 23508,NORFOLK,VA,36.885922,-76.300356,NORFOLK CITY 23509,NORFOLK,VA,36.878743,-76.260361,NORFOLK CITY 23510,NORFOLK,VA,36.852929,-76.287784,NORFOLK CITY 23511,NORFOLK,VA,36.951164,-76.309206,NORFOLK CITY 23512,NORFOLK,VA,36.9214,-76.3161,NORFOLK CITY 23513,NORFOLK,VA,36.891395,-76.239578,NORFOLK CITY 23514,NORFOLK,VA,36.8469,-76.2904,NORFOLK CITY 23515,NORFOLK,VA,36.9471,-76.3005,NORFOLK CITY 23517,NORFOLK,VA,36.869547,-76.294519,NORFOLK CITY 23518,NORFOLK,VA,36.920246,-76.216027,NORFOLK CITY 23519,NORFOLK,VA,36.9222,-76.1884,NORFOLK CITY 23520,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23521,NORFOLK,VA,36.916923,-76.163715,NORFOLK CITY 23523,NORFOLK,VA,36.82942,-76.270125,NORFOLK CITY 23529,NORFOLK,VA,36.8871,-76.3053,NORFOLK CITY 23541,NORFOLK,VA,36.8466,-76.2855,NORFOLK CITY 23551,NORFOLK,VA,36.9246,-76.3027,NORFOLK CITY 23601,NEWPORT NEWS,VA,37.057951,-76.460722,NEWPORT NEWS CITY 23602,NEWPORT NEWS,VA,37.131684,-76.532125,NEWPORT NEWS CITY 23603,NEWPORT NEWS,VA,37.198887,-76.582059,NEWPORT NEWS CITY 23605,NEWPORT NEWS,VA,37.015583,-76.433158,NEWPORT NEWS CITY 23606,NEWPORT NEWS,VA,37.076777,-76.496724,NEWPORT NEWS CITY 23607,NEWPORT NEWS,VA,36.986352,-76.416469,NEWPORT NEWS CITY 23608,NEWPORT NEWS,VA,37.1523,-76.5424,NEWPORT NEWS CITY 23609,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23612,NEWPORT NEWS,VA,37.0679,-76.4959,NEWPORT NEWS CITY 23628,NEWPORT NEWS,VA,36.9786,-76.4283,NEWPORT NEWS CITY 23630,HAMPTON,VA,37.0065,-76.413,HAMPTON CITY 23661,HAMPTON,VA,37.007432,-76.380085,HAMPTON CITY 23663,HAMPTON,VA,37.03181,-76.319875,HAMPTON CITY 23664,HAMPTON,VA,37.056611,-76.296639,HAMPTON CITY 23665,HAMPTON,VA,37.100565,-76.409939,YORK 23666,HAMPTON,VA,37.046241,-76.409617,HAMPTON CITY 23667,HAMPTON,VA,37.0297,-76.3455,HAMPTON CITY 23668,HAMPTON,VA,37.0207,-76.3323,HAMPTON CITY 23669,HAMPTON,VA,37.043559,-76.342573,HAMPTON CITY 23670,HAMPTON,VA,37.0059,-76.4122,HAMPTON CITY 23681,HAMPTON,VA,37.1009,-76.3932,HAMPTON CITY 23701,PORTSMOUTH,VA,36.808902,-76.36714,PORTSMOUTH CITY 23702,PORTSMOUTH,VA,36.803534,-76.326979,PORTSMOUTH CITY 23703,PORTSMOUTH,VA,36.869501,-76.386872,PORTSMOUTH CITY 23704,PORTSMOUTH,VA,36.829821,-76.314604,PORTSMOUTH CITY 23705,PORTSMOUTH,VA,36.8352,-76.2986,PORTSMOUTH CITY 23707,PORTSMOUTH,VA,36.836234,-76.344011,PORTSMOUTH CITY 23708,PORTSMOUTH,VA,36.8458,-76.3085,PORTSMOUTH CITY 23709,PORTSMOUTH,VA,36.813883,-76.305188,PORTSMOUTH CITY 24001,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24002,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24003,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24004,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24005,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24006,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24007,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24008,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24009,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24010,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24011,ROANOKE,VA,37.268997,-79.942019,ROANOKE CITY 24012,ROANOKE,VA,37.302912,-79.932179,ROANOKE CITY 24013,ROANOKE,VA,37.267685,-79.924747,ROANOKE CITY 24014,ROANOKE,VA,37.23268,-79.946332,ROANOKE CITY 24015,ROANOKE,VA,37.258363,-79.980694,ROANOKE CITY 24016,ROANOKE,VA,37.270407,-79.953495,ROANOKE CITY 24017,ROANOKE,VA,37.293655,-79.990248,ROANOKE CITY 24018,ROANOKE,VA,37.231554,-80.021749,ROANOKE 24019,ROANOKE,VA,37.33585,-79.956328,ROANOKE 24020,ROANOKE,VA,37.355278,-79.942222,ROANOKE 24022,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24023,ROANOKE,VA,37.2698,-79.9537,ROANOKE CITY 24024,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24025,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24026,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24027,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24028,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24029,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24030,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24031,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24032,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24033,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24034,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24035,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24036,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24037,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24038,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24040,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24042,ROANOKE,VA,37.2695,-79.9386,ROANOKE CITY 24043,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24044,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24045,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24048,ROANOKE,VA,37.2708,-79.9416,ROANOKE CITY 24050,ROANOKE,VA,37.2725,-79.953,BOTETOURT 24155,ROANOKE,VA,37.2935,-80.0553,SALEM 24157,ROANOKE,VA,37.2912,-80.0649,SALEM 24501,LYNCHBURG,VA,37.386228,-79.171464,LYNCHBURG CITY 24502,LYNCHBURG,VA,37.359635,-79.211783,LYNCHBURG CITY 24503,LYNCHBURG,VA,37.437646,-79.204982,LYNCHBURG CITY 24504,LYNCHBURG,VA,37.390422,-79.12142,LYNCHBURG CITY 24505,LYNCHBURG,VA,37.4146,-79.1434,LYNCHBURG CITY 24506,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24512,LYNCHBURG,VA,37.4502,-79.2501,LYNCHBURG CITY 24513,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24514,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 24515,LYNCHBURG,VA,37.3802,-79.1603,LYNCHBURG CITY 25301,CHARLESTON,WV,38.349,-81.630606,KANAWHA 25302,CHARLESTON,WV,38.383178,-81.623876,KANAWHA 25303,CHARLESTON,WV,38.359226,-81.684079,KANAWHA 25304,CHARLESTON,WV,38.317289,-81.590272,KANAWHA 25305,CHARLESTON,WV,38.3367,-81.6085,KANAWHA 25306,CHARLESTON,WV,38.30028,-81.536813,KANAWHA 25309,CHARLESTON,WV,38.344903,-81.734462,KANAWHA 25311,CHARLESTON,WV,38.349032,-81.599282,KANAWHA 25312,CHARLESTON,WV,38.409563,-81.674688,KANAWHA 25313,CHARLESTON,WV,38.424982,-81.764877,KANAWHA 25314,CHARLESTON,WV,38.327442,-81.668988,KANAWHA 25315,CHARLESTON,WV,38.233309,-81.554361,KANAWHA 25317,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25320,CHARLESTON,WV,38.509586,-81.629585,KANAWHA 25321,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25322,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25323,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25324,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25325,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25326,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25327,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25328,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25329,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25330,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25331,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25332,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25333,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25334,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25335,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25336,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25337,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25338,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25339,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25350,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25356,CHARLESTON,WV,38.4461,-81.7553,KANAWHA 25357,CHARLESTON,WV,38.3759,-81.6733,KANAWHA 25358,CHARLESTON,WV,38.3528,-81.6314,KANAWHA 25360,CHARLESTON,WV,38.4538,-81.6666,KANAWHA 25361,CHARLESTON,WV,38.3422,-81.6213,KANAWHA 25362,CHARLESTON,WV,38.3601,-81.6462,KANAWHA 25364,CHARLESTON,WV,38.3219,-81.5827,KANAWHA 25365,CHARLESTON,WV,38.2335,-81.5734,KANAWHA 25375,CHARLESTON,WV,38.3497,-81.6327,KANAWHA 25387,CHARLESTON,WV,38.3102,-81.5674,KANAWHA 25389,CHARLESTON,WV,38.3529,-81.6381,KANAWHA 25392,CHARLESTON,WV,38.3495,-81.6322,KANAWHA 25396,CHARLESTON,WV,38.3373,-81.6276,KANAWHA 25401,MARTINSBURG,WV,39.459959,-77.958915,BERKELEY 25402,MARTINSBURG,WV,39.4643,-77.9513,BERKELEY 25403,MARTINSBURG,WV,39.4895,-77.9909,BERKELEY 25404,MARTINSBURG,WV,39.4833,-77.9254,BERKELEY 25405,MARTINSBURG,WV,39.4151,-77.9647,BERKELEY 25429,MARTINSBURG,WV,39.3203,-77.9491,BERKELEY 25701,HUNTINGTON,WV,38.409726,-82.442348,CABELL 25702,HUNTINGTON,WV,38.42862,-82.391083,CABELL 25703,HUNTINGTON,WV,38.421116,-82.422666,CABELL 25704,HUNTINGTON,WV,38.384943,-82.503646,WAYNE 25705,HUNTINGTON,WV,38.409588,-82.36901,CABELL 25706,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25707,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25708,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25709,HUNTINGTON,WV,38.4141,-82.458,CABELL 25710,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25711,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25712,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25713,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25714,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25715,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25716,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25717,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25718,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25719,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25720,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25721,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25722,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25723,HUNTINGTON,WV,38.4191,-82.4452,CABELL 25724,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25725,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25726,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25727,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25728,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25729,HUNTINGTON,WV,38.4231,-82.4383,CABELL 25755,HUNTINGTON,WV,38.4226,-82.4315,CABELL 25770,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25771,HUNTINGTON,WV,38.4156,-82.4741,CABELL 25772,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25773,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25774,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25775,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25776,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25777,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25778,HUNTINGTON,WV,38.4156,-82.4743,CABELL 25779,HUNTINGTON,WV,38.4156,-82.4741,CABELL 26501,MORGANTOWN,WV,39.6368,-80.018,MONONGALIA 26502,MORGANTOWN,WV,39.5863,-79.959,MONONGALIA 26504,MORGANTOWN,WV,39.658333,-79.986667,MONONGALIA 26505,MORGANTOWN,WV,39.633858,-79.954225,MONONGALIA 26506,MORGANTOWN,WV,39.6494,-79.9571,MONONGALIA 26507,MORGANTOWN,WV,39.6276,-79.9574,MONONGALIA 26508,MORGANTOWN,WV,39.556667,-80,MONONGALIA 27101,WINSTON SALEM,NC,36.10237,-80.222798,FORSYTH 27102,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27103,WINSTON SALEM,NC,36.067127,-80.302509,FORSYTH 27104,WINSTON SALEM,NC,36.091985,-80.322423,FORSYTH 27105,WINSTON SALEM,NC,36.144039,-80.237646,FORSYTH 27106,WINSTON SALEM,NC,36.142762,-80.306866,FORSYTH 27107,WINSTON SALEM,NC,36.040324,-80.193265,FORSYTH 27108,WINSTON SALEM,NC,36.0869,-80.2486,FORSYTH 27109,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27110,WINSTON SALEM,NC,36.0902,-80.2275,FORSYTH 27111,WINSTON SALEM,NC,36.1267,-80.0669,FORSYTH 27113,WINSTON SALEM,NC,36.0894,-80.2738,FORSYTH 27114,WINSTON SALEM,NC,36.0758,-80.3103,FORSYTH 27115,WINSTON SALEM,NC,36.1351,-80.2426,FORSYTH 27116,WINSTON SALEM,NC,36.1412,-80.2995,FORSYTH 27117,WINSTON SALEM,NC,36.0699,-80.2067,FORSYTH 27120,WINSTON SALEM,NC,36.1042,-80.2442,FORSYTH 27127,WINSTON SALEM,NC,36.042534,-80.260946,FORSYTH 27130,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27150,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27151,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27152,WINSTON SALEM,NC,36.1005,-80.208,FORSYTH 27155,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27156,WINSTON SALEM,NC,36.1434,-80.2275,FORSYTH 27157,WINSTON SALEM,NC,36.0586,-80.3203,FORSYTH 27198,WINSTON SALEM,NC,36.1028,-80.2225,FORSYTH 27199,WINSTON SALEM,NC,36.1135,-80.2422,FORSYTH 27260,HIGH POINT,NC,35.959313,-80.011673,GUILFORD 27261,HIGH POINT,NC,35.9537,-80.0024,GUILFORD 27262,HIGH POINT,NC,35.973406,-80.010677,GUILFORD 27263,HIGH POINT,NC,35.910757,-79.961764,GUILFORD 27264,HIGH POINT,NC,36.0354,-79.998,GUILFORD 27265,HIGH POINT,NC,36.003584,-80.003571,GUILFORD 27395,GREENSBORO,NC,36.0726,-79.792,CASWELL 27401,GREENSBORO,NC,36.069741,-79.768151,GUILFORD 27402,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27403,GREENSBORO,NC,36.064147,-79.820181,GUILFORD 27404,GREENSBORO,NC,36.0853,-79.833,GUILFORD 27405,GREENSBORO,NC,36.121408,-79.7733,GUILFORD 27406,GREENSBORO,NC,36.021969,-79.782058,GUILFORD 27407,GREENSBORO,NC,36.033442,-79.862647,GUILFORD 27408,GREENSBORO,NC,36.1064,-79.816531,GUILFORD 27409,GREENSBORO,NC,36.077683,-79.908602,GUILFORD 27410,GREENSBORO,NC,36.103164,-79.879365,GUILFORD 27411,GREENSBORO,NC,36.078,-79.7706,GUILFORD 27412,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27413,GREENSBORO,NC,36.0712,-79.8114,GUILFORD 27415,GREENSBORO,NC,36.0917,-79.7805,GUILFORD 27416,GREENSBORO,NC,36.0018,-79.7626,GUILFORD 27417,GREENSBORO,NC,36.0091,-79.8743,GUILFORD 27419,GREENSBORO,NC,36.1271,-79.944,GUILFORD 27420,GREENSBORO,NC,36.0681,-79.952,GUILFORD 27425,GREENSBORO,NC,36.126944,-79.943889,GUILFORD 27427,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27429,GREENSBORO,NC,36.0935,-79.8147,GUILFORD 27435,GREENSBORO,NC,36.0655,-79.8052,GUILFORD 27438,GREENSBORO,NC,36.1129,-79.8333,GUILFORD 27455,GREENSBORO,NC,36.1567,-79.8143,GUILFORD 27480,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27495,GREENSBORO,NC,36.0389,-79.9433,GUILFORD 27497,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27498,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27499,GREENSBORO,NC,36.0725,-79.7922,GUILFORD 27601,RALEIGH,NC,35.772701,-78.632439,WAKE 27602,RALEIGH,NC,35.7719,-78.6388,WAKE 27603,RALEIGH,NC,35.707569,-78.656265,WAKE 27604,RALEIGH,NC,35.833407,-78.579949,WAKE 27605,RALEIGH,NC,35.790795,-78.653025,WAKE 27606,RALEIGH,NC,35.764499,-78.711189,WAKE 27607,RALEIGH,NC,35.801385,-78.687747,WAKE 27608,RALEIGH,NC,35.807746,-78.646277,WAKE 27609,RALEIGH,NC,35.847989,-78.631654,WAKE 27610,RALEIGH,NC,35.766674,-78.60076,WAKE 27611,RALEIGH,NC,35.7719,-78.6388,WAKE 27612,RALEIGH,NC,35.851997,-78.684119,WAKE 27613,RALEIGH,NC,35.894932,-78.705059,WAKE 27614,RALEIGH,NC,35.945711,-78.643339,WAKE 27615,RALEIGH,NC,35.888744,-78.639277,WAKE 27616,RALEIGH,NC,35.8662,-78.549,WAKE 27617,RALEIGH,NC,35.9073,-78.7741,WAKE 27619,RALEIGH,NC,35.8973,-78.6338,WAKE 27620,RALEIGH,NC,35.7719,-78.6388,WAKE 27621,RALEIGH,NC,35.7719,-78.6388,WAKE 27622,RALEIGH,NC,35.8501,-78.6916,WAKE 27623,RALEIGH,NC,35.8607,-78.7928,WAKE 27624,RALEIGH,NC,35.8423,-78.6337,WAKE 27625,RALEIGH,NC,35.7719,-78.6388,WAKE 27626,RALEIGH,NC,35.7719,-78.6388,WAKE 27627,RALEIGH,NC,35.7676,-78.695,WAKE 27628,RALEIGH,NC,35.7719,-78.6388,WAKE 27629,RALEIGH,NC,35.7719,-78.6388,WAKE 27634,RALEIGH,NC,35.7719,-78.6388,WAKE 27635,RALEIGH,NC,35.7719,-78.6388,WAKE 27636,RALEIGH,NC,35.7719,-78.6388,WAKE 27640,RALEIGH,NC,35.7719,-78.6388,WAKE 27650,RALEIGH,NC,35.7719,-78.6388,WAKE 27656,RALEIGH,NC,35.8501,-78.6916,WAKE 27658,RALEIGH,NC,35.8478,-78.5965,WAKE 27661,RALEIGH,NC,35.8928,-78.56,WAKE 27668,RALEIGH,NC,35.8422,-78.6337,WAKE 27675,RALEIGH,NC,35.9025,-78.7452,WAKE 27676,RALEIGH,NC,35.9057,-78.7488,WAKE 27690,RALEIGH,NC,35.8932,-78.6251,WAKE 27695,RALEIGH,NC,35.8086,-78.7196,WAKE 27697,RALEIGH,NC,35.7719,-78.6388,WAKE 27698,RALEIGH,NC,35.7719,-78.6388,WAKE 27699,RALEIGH,NC,35.6682,-78.6618,WAKE 27701,DURHAM,NC,35.996725,-78.896613,DURHAM 27702,DURHAM,NC,35.9938,-78.8988,DURHAM 27703,DURHAM,NC,35.978122,-78.843874,DURHAM 27704,DURHAM,NC,36.038297,-78.876437,DURHAM 27705,DURHAM,NC,36.021846,-78.947776,DURHAM 27706,DURHAM,NC,36.002427,-78.937524,DURHAM 27707,DURHAM,NC,35.963076,-78.931484,DURHAM 27708,DURHAM,NC,35.9985,-78.9394,DURHAM 27710,DURHAM,NC,35.9938,-78.8988,DURHAM 27711,DURHAM,NC,35.905,-78.8785,DURHAM 27712,DURHAM,NC,36.091779,-78.929919,DURHAM 27713,DURHAM,NC,35.916105,-78.916641,DURHAM 27715,DURHAM,NC,35.9938,-78.8988,DURHAM 27717,DURHAM,NC,35.9938,-78.8988,DURHAM 27722,DURHAM,NC,36.1002,-78.9248,DURHAM 28201,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28202,CHARLOTTE,NC,35.229002,-80.841864,MECKLENBURG 28203,CHARLOTTE,NC,35.208139,-80.858279,MECKLENBURG 28204,CHARLOTTE,NC,35.213178,-80.823149,MECKLENBURG 28205,CHARLOTTE,NC,35.219951,-80.788129,MECKLENBURG 28206,CHARLOTTE,NC,35.252173,-80.826505,MECKLENBURG 28207,CHARLOTTE,NC,35.193474,-80.827248,MECKLENBURG 28208,CHARLOTTE,NC,35.235795,-80.896352,MECKLENBURG 28209,CHARLOTTE,NC,35.179629,-80.855926,MECKLENBURG 28210,CHARLOTTE,NC,35.131586,-80.857749,MECKLENBURG 28211,CHARLOTTE,NC,35.167653,-80.793244,MECKLENBURG 28212,CHARLOTTE,NC,35.190797,-80.744777,MECKLENBURG 28213,CHARLOTTE,NC,35.317868,-80.750079,MECKLENBURG 28214,CHARLOTTE,NC,35.273095,-80.95709,MECKLENBURG 28215,CHARLOTTE,NC,35.243962,-80.738669,MECKLENBURG 28216,CHARLOTTE,NC,35.283377,-80.870216,MECKLENBURG 28217,CHARLOTTE,NC,35.0972,-81.007848,MECKLENBURG 28218,CHARLOTTE,NC,35.1985,-80.7893,MECKLENBURG 28219,CHARLOTTE,NC,35.2063,-80.9419,MECKLENBURG 28220,CHARLOTTE,NC,35.1755,-80.851,MECKLENBURG 28221,CHARLOTTE,NC,35.2967,-80.7998,MECKLENBURG 28222,CHARLOTTE,NC,35.1663,-80.7959,MECKLENBURG 28223,CHARLOTTE,NC,35.3239,-80.7427,MECKLENBURG 28224,CHARLOTTE,NC,35.1503,-80.8763,MECKLENBURG 28226,CHARLOTTE,NC,35.086856,-80.816675,MECKLENBURG 28227,CHARLOTTE,NC,35.193612,-80.684634,MECKLENBURG 28228,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28229,CHARLOTTE,NC,35.2027,-80.7346,MECKLENBURG 28230,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28231,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28232,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28233,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28234,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28235,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28236,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28237,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28241,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28242,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28243,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28244,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28246,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28247,CHARLOTTE,NC,35.1034,-80.825,MECKLENBURG 28250,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28253,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28254,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28255,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28256,CHARLOTTE,NC,35.2802,-80.7656,MECKLENBURG 28258,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28260,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28262,CHARLOTTE,NC,35.272506,-80.775958,MECKLENBURG 28263,CHARLOTTE,NC,35.2101,-80.689,MECKLENBURG 28265,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28266,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28269,CHARLOTTE,NC,35.288635,-80.820941,MECKLENBURG 28270,CHARLOTTE,NC,35.135473,-80.766872,MECKLENBURG 28271,CHARLOTTE,NC,35.2267,-80.8434,MECKLENBURG 28272,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28273,CHARLOTTE,NC,35.159646,-80.896673,MECKLENBURG 28274,CHARLOTTE,NC,35.1873,-80.8298,MECKLENBURG 28275,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28277,CHARLOTTE,NC,35.134486,-80.800174,MECKLENBURG 28278,CHARLOTTE,NC,35.146685,-80.960421,MECKLENBURG 28280,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28281,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28282,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28284,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28285,CHARLOTTE,NC,35.223,-80.8308,MECKLENBURG 28287,CHARLOTTE,NC,35.15,-80.84,MECKLENBURG 28288,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28289,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28290,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28296,CHARLOTTE,NC,35.2269,-80.8433,MECKLENBURG 28297,CHARLOTTE,NC,35.2762,-80.8558,MECKLENBURG 28299,CHARLOTTE,NC,35.2189,-80.8122,MECKLENBURG 28301,FAYETTEVILLE,NC,35.05099,-78.842255,CUMBERLAND 28302,FAYETTEVILLE,NC,34.9677,-78.7392,CUMBERLAND 28303,FAYETTEVILLE,NC,35.084046,-78.960135,CUMBERLAND 28304,FAYETTEVILLE,NC,35.025683,-78.970494,CUMBERLAND 28305,FAYETTEVILLE,NC,35.056022,-78.904658,CUMBERLAND 28306,FAYETTEVILLE,NC,35.001874,-78.936408,CUMBERLAND 28309,FAYETTEVILLE,NC,35.0554,-78.8777,CUMBERLAND 28311,FAYETTEVILLE,NC,35.129416,-78.898217,CUMBERLAND 28312,FAYETTEVILLE,NC,35.034,-78.7926,CUMBERLAND 28314,FAYETTEVILLE,NC,35.058322,-79.007985,CUMBERLAND 28401,WILMINGTON,NC,34.225304,-77.937856,NEW HANOVER 28402,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28403,WILMINGTON,NC,34.223653,-77.886213,NEW HANOVER 28404,WILMINGTON,NC,34.2251,-77.9377,NEW HANOVER 28405,WILMINGTON,NC,34.264065,-77.852937,NEW HANOVER 28406,WILMINGTON,NC,34.237,-77.9495,NEW HANOVER 28407,WILMINGTON,NC,34.1569,-77.8925,NEW HANOVER 28408,WILMINGTON,NC,34.1279,-77.8991,NEW HANOVER 28409,WILMINGTON,NC,34.166256,-77.87227,NEW HANOVER 28410,WILMINGTON,NC,34.1388,-77.9168,NEW HANOVER 28411,WILMINGTON,NC,34.2834,-77.8044,NEW HANOVER 28412,WILMINGTON,NC,34.157173,-77.914137,NEW HANOVER 28801,ASHEVILLE,NC,35.597075,-82.556533,BUNCOMBE 28802,ASHEVILLE,NC,35.594,-82.5554,BUNCOMBE 28803,ASHEVILLE,NC,35.539291,-82.518021,BUNCOMBE 28804,ASHEVILLE,NC,35.63743,-82.564625,BUNCOMBE 28805,ASHEVILLE,NC,35.600363,-82.491781,BUNCOMBE 28806,ASHEVILLE,NC,35.580814,-82.607787,BUNCOMBE 28810,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28813,ASHEVILLE,NC,35.5439,-82.5335,BUNCOMBE 28814,ASHEVILLE,NC,35.6237,-82.5545,BUNCOMBE 28815,ASHEVILLE,NC,35.6008,-82.5541,BUNCOMBE 28816,ASHEVILLE,NC,35.5835,-82.6048,BUNCOMBE 29201,COLUMBIA,SC,34.0004,-81.033418,RICHLAND 29202,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29203,COLUMBIA,SC,34.063452,-81.026462,RICHLAND 29204,COLUMBIA,SC,34.026037,-81.004647,RICHLAND 29205,COLUMBIA,SC,33.990309,-80.999731,RICHLAND 29206,COLUMBIA,SC,34.024655,-80.953152,RICHLAND 29207,COLUMBIA,SC,34.0133,-80.9407,RICHLAND 29208,COLUMBIA,SC,33.9964,-81.0265,RICHLAND 29209,COLUMBIA,SC,33.965863,-80.935525,RICHLAND 29210,COLUMBIA,SC,34.047863,-81.11006,RICHLAND 29211,COLUMBIA,SC,34.003,-81.0322,RICHLAND 29212,COLUMBIA,SC,34.072613,-81.179617,LEXINGTON 29214,COLUMBIA,SC,33.9967,-81.0481,RICHLAND 29215,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29216,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29217,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29218,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29219,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29220,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29221,COLUMBIA,SC,34.0407,-81.0973,RICHLAND 29222,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29223,COLUMBIA,SC,34.085267,-80.91667,RICHLAND 29224,COLUMBIA,SC,34.0568,-80.8456,RICHLAND 29225,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29226,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29227,COLUMBIA,SC,34.0005,-81.035,RICHLAND 29228,COLUMBIA,SC,33.9207,-81.0927,LEXINGTON 29229,COLUMBIA,SC,34.1434,-80.8876,RICHLAND 29230,COLUMBIA,SC,34.1402,-81.0648,RICHLAND 29240,COLUMBIA,SC,34.0298,-81.0075,RICHLAND 29250,COLUMBIA,SC,34.0001,-81.0167,RICHLAND 29260,COLUMBIA,SC,34.0125,-80.9664,RICHLAND 29290,COLUMBIA,SC,33.9641,-80.9425,RICHLAND 29292,COLUMBIA,SC,34.0062,-81.0377,RICHLAND 29301,SPARTANBURG,SC,34.935211,-81.965377,SPARTANBURG 29302,SPARTANBURG,SC,34.956283,-81.873625,SPARTANBURG 29303,SPARTANBURG,SC,34.993728,-81.957566,SPARTANBURG 29304,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29305,SPARTANBURG,SC,35.0039,-81.9702,SPARTANBURG 29306,SPARTANBURG,SC,34.9195,-81.9291,SPARTANBURG 29307,SPARTANBURG,SC,34.983,-81.8569,SPARTANBURG 29318,SPARTANBURG,SC,34.9445,-81.9294,SPARTANBURG 29319,SPARTANBURG,SC,34.95,-81.929,SPARTANBURG 29401,CHARLESTON,SC,32.779506,-79.937069,CHARLESTON 29402,CHARLESTON,SC,32.7763,-79.9317,CHARLESTON 29403,CHARLESTON,SC,32.797575,-79.949283,CHARLESTON 29405,NORTH CHARLESTON,SC,32.851206,-79.976442,CHARLESTON 29406,CHARLESTON,SC,32.903035,-80.001053,CHARLESTON 29407,CHARLESTON,SC,32.799322,-80.005953,CHARLESTON 29409,CHARLESTON,SC,32.7763,-79.9311,CHARLESTON 29410,NORTH CHARLESTON,SC,33.0562,-80.0759,BERKELEY 29412,CHARLESTON,SC,32.732319,-79.954727,CHARLESTON 29413,CHARLESTON,SC,32.7919,-79.9314,CHARLESTON 29414,CHARLESTON,SC,32.821538,-80.056756,CHARLESTON 29415,NORTH CHARLESTON,SC,32.8672,-79.9978,CHARLESTON 29416,CHARLESTON,SC,32.8753,-80.0599,CHARLESTON 29417,CHARLESTON,SC,32.7865,-79.9923,CHARLESTON 29418,NORTH CHARLESTON,SC,32.907135,-80.055126,CHARLESTON 29419,NORTH CHARLESTON,SC,32.9169,-80.0282,CHARLESTON 29420,NORTH CHARLESTON,SC,32.933096,-80.086463,DORCHESTER 29422,CHARLESTON,SC,32.6823,-79.9575,CHARLESTON 29423,CHARLESTON,SC,32.9521,-80.0641,CHARLESTON 29424,CHARLESTON,SC,32.7836,-79.937,CHARLESTON 29425,CHARLESTON,SC,32.7848,-79.9493,CHARLESTON 29492,CHARLESTON,SC,32.962223,-79.86533,BERKELEY 29501,FLORENCE,SC,34.18375,-79.772786,FLORENCE 29502,FLORENCE,SC,34.1952,-79.8026,FLORENCE 29503,FLORENCE,SC,34.1968,-79.7729,FLORENCE 29504,FLORENCE,SC,34.1652,-79.7644,FLORENCE 29505,FLORENCE,SC,34.256368,-79.775983,FLORENCE 29506,FLORENCE,SC,34.245178,-79.794547,FLORENCE 29572,MYRTLE BEACH,SC,33.758701,-78.804448,HORRY 29575,MYRTLE BEACH,SC,33.625245,-78.995228,HORRY 29577,MYRTLE BEACH,SC,33.699363,-78.913697,HORRY 29578,MYRTLE BEACH,SC,33.6888,-78.8869,HORRY 29579,MYRTLE BEACH,SC,33.7438,-78.9361,HORRY 29587,MYRTLE BEACH,SC,33.605833,-78.973333,HORRY 29588,MYRTLE BEACH,SC,33.6742,-79.0108,HORRY 29601,GREENVILLE,SC,34.847165,-82.406049,GREENVILLE 29602,GREENVILLE,SC,34.8545,-82.4091,GREENVILLE 29603,GREENVILLE,SC,34.8499,-82.3969,GREENVILLE 29604,GREENVILLE,SC,34.8276,-82.3996,GREENVILLE 29605,GREENVILLE,SC,34.800117,-82.393218,GREENVILLE 29606,GREENVILLE,SC,34.8422,-82.3612,GREENVILLE 29607,GREENVILLE,SC,34.828507,-82.35155,GREENVILLE 29608,GREENVILLE,SC,34.8794,-82.405,GREENVILLE 29609,GREENVILLE,SC,34.892101,-82.400195,GREENVILLE 29610,GREENVILLE,SC,34.8839,-82.4697,GREENVILLE 29611,GREENVILLE,SC,34.85331,-82.449296,GREENVILLE 29612,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29613,GREENVILLE,SC,34.9231,-82.4355,GREENVILLE 29614,GREENVILLE,SC,34.9152,-82.3905,GREENVILLE 29615,GREENVILLE,SC,34.866095,-82.319815,GREENVILLE 29616,GREENVILLE,SC,34.8525,-82.3941,GREENVILLE 29617,GREENVILLE,SC,34.8988,-82.4482,GREENVILLE 29621,ANDERSON,SC,34.526051,-82.630436,ANDERSON 29622,ANDERSON,SC,34.5082,-82.6498,ANDERSON 29623,ANDERSON,SC,34.5453,-82.6696,ANDERSON 29624,ANDERSON,SC,34.474807,-82.677052,ANDERSON 29625,ANDERSON,SC,34.527134,-82.70868,ANDERSON 29626,ANDERSON,SC,34.4631,-82.7546,ANDERSON 29698,GREENVILLE,SC,34.9137,-82.0978,SPARTANBURG 29801,AIKEN,SC,33.553024,-81.719429,AIKEN 29802,AIKEN,SC,33.6125,-81.7089,AIKEN 29803,AIKEN,SC,33.531868,-81.594702,AIKEN 29804,AIKEN,SC,33.5149,-81.7321,AIKEN 29805,AIKEN,SC,33.6531,-81.6301,AIKEN 29808,AIKEN,SC,33.2541,-81.6281,AIKEN 29901,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29902,BEAUFORT,SC,32.418035,-80.709026,BEAUFORT 29903,BEAUFORT,SC,32.4335,-80.6728,BEAUFORT 29904,BEAUFORT,SC,32.4583,-80.7102,BEAUFORT 29905,BEAUFORT,SC,32.3502,-80.682,BEAUFORT 29906,BEAUFORT,SC,32.4454,-80.747,BEAUFORT 30003,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30006,MARIETTA,GA,33.9043,-84.468,COBB 30007,MARIETTA,GA,33.9802,-84.425,COBB 30008,MARIETTA,GA,33.8997,-84.5847,COBB 30010,NORCROSS,GA,33.9392,-84.2053,GWINNETT 30030,DECATUR,GA,33.769883,-84.295044,DEKALB 30031,DECATUR,GA,33.775,-84.3047,DEKALB 30032,DECATUR,GA,33.740825,-84.263165,DEKALB 30033,DECATUR,GA,33.812305,-84.281918,DEKALB 30034,DECATUR,GA,33.695385,-84.248939,DEKALB 30035,DECATUR,GA,33.72784,-84.2143,DEKALB 30036,DECATUR,GA,33.772,-84.2917,DEKALB 30037,DECATUR,GA,33.7059,-84.2719,DEKALB 30042,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30043,LAWRENCEVILLE,GA,33.9967,-84.0186,GWINNETT 30044,LAWRENCEVILLE,GA,33.9256,-84.0697,GWINNETT 30045,LAWRENCEVILLE,GA,33.9427,-83.9782,GWINNETT 30046,LAWRENCEVILLE,GA,33.9435,-83.9643,GWINNETT 30049,LAWRENCEVILLE,GA,33.635376,-84.264333,GWINNETT 30060,MARIETTA,GA,33.909199,-84.564881,COBB 30061,MARIETTA,GA,33.9529,-84.5454,COBB 30062,MARIETTA,GA,34.002521,-84.463291,COBB 30063,MARIETTA,GA,33.9529,-84.5454,COBB 30064,MARIETTA,GA,33.934285,-84.607584,COBB 30065,MARIETTA,GA,33.9525,-84.55,COBB 30066,MARIETTA,GA,34.037807,-84.503817,COBB 30067,MARIETTA,GA,33.928198,-84.473251,COBB 30068,MARIETTA,GA,33.967861,-84.438549,COBB 30069,MARIETTA,GA,33.9178,-84.5212,COBB 30071,NORCROSS,GA,33.938145,-84.197158,GWINNETT 30073,DECATUR,GA,33.875377,-84.685645,DEKALB 30090,MARIETTA,GA,33.9527,-84.5489,COBB 30091,NORCROSS,GA,33.9405,-84.2078,GWINNETT 30092,NORCROSS,GA,33.967688,-84.243787,GWINNETT 30093,NORCROSS,GA,33.905964,-84.183953,GWINNETT 30301,ATLANTA,GA,33.7564,-84.3918,FULTON 30302,ATLANTA,GA,33.7493,-84.3958,FULTON 30303,ATLANTA,GA,33.752504,-84.388846,FULTON 30304,ATLANTA,GA,33.6605,-84.3858,FULTON 30305,ATLANTA,GA,33.831963,-84.385145,FULTON 30306,ATLANTA,GA,33.786027,-84.351418,FULTON 30307,ATLANTA,GA,33.769138,-84.335957,FULTON 30308,ATLANTA,GA,33.771839,-84.375744,FULTON 30309,ATLANTA,GA,33.798407,-84.388338,FULTON 30310,ATLANTA,GA,33.727849,-84.423173,FULTON 30311,ATLANTA,GA,33.722957,-84.470219,FULTON 30312,ATLANTA,GA,33.746749,-84.378125,FULTON 30313,ATLANTA,GA,33.76825,-84.39352,FULTON 30314,ATLANTA,GA,33.756103,-84.425546,FULTON 30315,ATLANTA,GA,33.705062,-84.380771,FULTON 30316,ATLANTA,GA,33.721686,-84.333913,FULTON 30317,ATLANTA,GA,33.749788,-84.31685,DEKALB 30318,ATLANTA,GA,33.786454,-84.445432,FULTON 30319,ATLANTA,GA,33.868728,-84.335091,DEKALB 30320,ATLANTA,GA,33.6377,-84.4431,FULTON 30321,ATLANTA,GA,33.7488,-84.388,FULTON 30322,ATLANTA,GA,33.7931,-84.3244,DEKALB 30324,ATLANTA,GA,33.820609,-84.354867,FULTON 30325,ATLANTA,GA,33.8007,-84.4153,FULTON 30326,ATLANTA,GA,33.848168,-84.358232,FULTON 30327,ATLANTA,GA,33.862723,-84.419966,FULTON 30328,ATLANTA,GA,33.936295,-84.381143,FULTON 30329,ATLANTA,GA,33.823555,-84.321402,DEKALB 30330,ATLANTA,GA,33.70645,-84.434735,FULTON 30331,ATLANTA,GA,33.72241,-84.520468,FULTON 30332,ATLANTA,GA,33.7782,-84.3978,FULTON 30333,ATLANTA,GA,33.8049,-84.3369,DEKALB 30334,ATLANTA,GA,33.74715,-84.388188,FULTON 30336,ATLANTA,GA,33.78534,-84.510028,FULTON 30337,ATLANTA,GA,33.644227,-84.460849,FULTON 30338,ATLANTA,GA,33.944313,-84.316529,DEKALB 30339,ATLANTA,GA,33.87125,-84.462879,FULTON 30340,ATLANTA,GA,33.896377,-84.248265,DEKALB 30341,ATLANTA,GA,33.886727,-84.286969,DEKALB 30342,ATLANTA,GA,33.884245,-84.376091,FULTON 30343,ATLANTA,GA,33.7595,-84.387,FULTON 30344,ATLANTA,GA,33.676214,-84.457292,FULTON 30345,ATLANTA,GA,33.851347,-84.286961,DEKALB 30346,ATLANTA,GA,33.926717,-84.333354,DEKALB 30347,ATLANTA,GA,33.8281,-84.3337,FULTON 30348,ATLANTA,GA,33.8345,-84.3893,FULTON 30349,ATLANTA,GA,33.605331,-84.481258,FULTON 30350,ATLANTA,GA,33.979471,-84.341146,FULTON 30353,ATLANTA,GA,33.7488,-84.388,FULTON 30354,ATLANTA,GA,33.66546,-84.387025,FULTON 30355,ATLANTA,GA,33.8365,-84.3689,FULTON 30356,ATLANTA,GA,33.9472,-84.3321,DEKALB 30357,ATLANTA,GA,33.7488,-84.388,FULTON 30358,ATLANTA,GA,33.924167,-84.378611,FULTON 30359,ATLANTA,GA,33.8374,-84.3112,DEKALB 30360,ATLANTA,GA,33.937772,-84.271645,DEKALB 30361,ATLANTA,GA,33.7488,-84.388,FULTON 30362,ATLANTA,GA,33.9021,-84.2738,DEKALB 30363,ATLANTA,GA,33.7899,-84.3955,FULTON 30364,ATLANTA,GA,33.679444,-84.439444,FULTON 30366,ATLANTA,GA,33.8956,-84.2987,DEKALB 30368,ATLANTA,GA,33.7488,-84.388,FULTON 30369,ATLANTA,GA,33.7488,-84.388,FULTON 30370,ATLANTA,GA,33.7488,-84.388,FULTON 30371,ATLANTA,GA,33.7488,-84.388,FULTON 30374,ATLANTA,GA,33.7488,-84.388,FULTON 30375,ATLANTA,GA,33.6605,-84.3858,FULTON 30376,ATLANTA,GA,33.8196,-84.3563,FULTON 30377,ATLANTA,GA,33.781,-84.4125,FULTON 30378,ATLANTA,GA,33.7408,-84.5641,FULTON 30379,ATLANTA,GA,33.7488,-84.388,FULTON 30380,ATLANTA,GA,33.6605,-84.3858,FULTON 30384,ATLANTA,GA,33.7488,-84.388,FULTON 30385,ATLANTA,GA,33.6605,-84.3858,FULTON 30386,ATLANTA,GA,33.6487,-84.3915,FULTON 30387,ATLANTA,GA,33.7488,-84.388,FULTON 30388,ATLANTA,GA,33.6487,-84.3915,FULTON 30389,ATLANTA,GA,33.7488,-84.388,FULTON 30390,ATLANTA,GA,33.7488,-84.388,FULTON 30392,ATLANTA,GA,33.7488,-84.388,FULTON 30394,ATLANTA,GA,33.7488,-84.388,FULTON 30396,ATLANTA,GA,33.6487,-84.3915,FULTON 30398,ATLANTA,GA,33.7488,-84.388,FULTON 30399,ATLANTA,GA,33.7488,-84.388,FULTON 30601,ATHENS,GA,33.976097,-83.363174,CLARKE 30602,ATHENS,GA,33.9482,-83.3745,CLARKE 30603,ATHENS,GA,33.9597,-83.3765,CLARKE 30604,ATHENS,GA,33.9496,-83.41,CLARKE 30605,ATHENS,GA,33.932097,-83.352508,CLARKE 30606,ATHENS,GA,33.946085,-83.418019,CLARKE 30607,ATHENS,GA,34.006978,-83.427761,CLARKE 30608,ATHENS,GA,33.9608,-83.378,CLARKE 30609,ATHENS,GA,33.8983,-83.3688,CLARKE 30612,ATHENS,GA,33.9013,-83.3203,CLARKE 30901,AUGUSTA,GA,33.460084,-81.972959,RICHMOND 30903,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30904,AUGUSTA,GA,33.47374,-82.013078,RICHMOND 30905,AUGUSTA,GA,33.419032,-82.139179,RICHMOND 30906,AUGUSTA,GA,33.402024,-82.038358,RICHMOND 30907,AUGUSTA,GA,33.511692,-82.099505,COLUMBIA 30909,AUGUSTA,GA,33.480932,-82.060439,RICHMOND 30911,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30912,AUGUSTA,GA,33.4719,-81.9803,RICHMOND 30913,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 30914,AUGUSTA,GA,33.4695,-82.0211,RICHMOND 30916,AUGUSTA,GA,33.4213,-82.0208,RICHMOND 30917,AUGUSTA,GA,33.5167,-82.0579,COLUMBIA 30919,AUGUSTA,GA,33.4692,-82.0669,RICHMOND 30999,AUGUSTA,GA,33.4712,-81.9675,RICHMOND 31106,ATLANTA,GA,33.7488,-84.388,FULTON 31107,ATLANTA,GA,33.7488,-84.388,FULTON 31119,ATLANTA,GA,33.8571,-84.3462,DEKALB 31120,ATLANTA,GA,33.7844,-84.3828,DEKALB 31126,ATLANTA,GA,33.8473,-84.3606,FULTON 31131,ATLANTA,GA,33.6927,-84.5109,FULTON 31136,ATLANTA,GA,33.6619,-84.6288,FULTON 31139,ATLANTA,GA,33.8705,-84.4611,FULTON 31141,ATLANTA,GA,33.8872,-84.2897,DEKALB 31145,ATLANTA,GA,33.8491,-84.2835,DEKALB 31146,ATLANTA,GA,33.9246,-84.3381,DEKALB 31150,ATLANTA,GA,33.9861,-84.3439,FULTON 31156,ATLANTA,GA,33.9605,-84.3659,FULTON 31191,ATLANTA,GA,33.7917,-84.4476,FULTON 31192,ATLANTA,GA,33.6222,-84.53,FULTON 31193,ATLANTA,GA,33.6605,-84.3858,FULTON 31195,ATLANTA,GA,33.7488,-84.388,FULTON 31196,ATLANTA,GA,33.7488,-84.388,FULTON 31197,ATLANTA,GA,33.7488,-84.388,FULTON 31198,ATLANTA,GA,33.7488,-84.388,FULTON 31199,ATLANTA,GA,33.7488,-84.388,FULTON 31201,MACON,GA,32.84386,-83.598686,BIBB 31202,MACON,GA,32.8405,-83.6325,BIBB 31203,MACON,GA,32.8405,-83.6325,BIBB 31204,MACON,GA,32.842393,-83.676634,BIBB 31205,MACON,GA,32.7501,-83.658,BIBB 31206,MACON,GA,32.780758,-83.682303,BIBB 31207,MACON,GA,32.8297,-83.651,BIBB 31208,MACON,GA,32.8405,-83.6325,BIBB 31209,MACON,GA,32.8405,-83.6325,BIBB 31210,MACON,GA,32.892565,-83.745537,BIBB 31211,MACON,GA,32.886905,-83.602062,BIBB 31212,MACON,GA,32.7509,-83.6772,BIBB 31213,MACON,GA,32.7509,-83.6772,BIBB 31216,MACON,GA,32.7333,-83.6904,BIBB 31217,MACON,GA,32.8389,-83.5538,BIBB 31220,MACON,GA,32.8626,-83.7903,BIBB 31221,MACON,GA,32.88,-83.821,BIBB 31294,MACON,GA,32.8405,-83.6325,BIBB 31295,MACON,GA,32.8405,-83.6325,BIBB 31296,MACON,GA,32.8405,-83.6325,BIBB 31297,MACON,GA,32.7032,-83.65,BIBB 31401,SAVANNAH,GA,32.067631,-81.102394,CHATHAM 31402,SAVANNAH,GA,32.0828,-81.0992,CHATHAM 31403,SAVANNAH,GA,32.0454,-81.1094,CHATHAM 31404,SAVANNAH,GA,32.044178,-81.068704,CHATHAM 31405,SAVANNAH,GA,32.039119,-81.124192,CHATHAM 31406,SAVANNAH,GA,31.988993,-81.097893,CHATHAM 31407,SAVANNAH,GA,32.148075,-81.162891,CHATHAM 31408,SAVANNAH,GA,32.109245,-81.168181,CHATHAM 31409,SAVANNAH,GA,32.002104,-81.158371,CHATHAM 31410,SAVANNAH,GA,32.016188,-80.983859,CHATHAM 31411,SAVANNAH,GA,31.926801,-81.038074,CHATHAM 31412,SAVANNAH,GA,32.0771,-81.0927,CHATHAM 31414,SAVANNAH,GA,32.0436,-81.0639,CHATHAM 31415,SAVANNAH,GA,32.0768,-81.1193,CHATHAM 31416,SAVANNAH,GA,32.005,-81.0957,CHATHAM 31418,SAVANNAH,GA,32.1137,-81.1642,CHATHAM 31419,SAVANNAH,GA,31.985149,-81.177387,CHATHAM 31420,SAVANNAH,GA,32.0722,-81.1102,CHATHAM 31421,SAVANNAH,GA,32.0873,-81.0856,CHATHAM 31601,VALDOSTA,GA,30.810578,-83.277166,LOWNDES 31602,VALDOSTA,GA,30.890268,-83.273299,LOWNDES 31603,VALDOSTA,GA,30.7493,-83.3371,LOWNDES 31604,VALDOSTA,GA,30.9504,-83.238,LOWNDES 31605,VALDOSTA,GA,30.9244,-83.2526,LOWNDES 31606,VALDOSTA,GA,30.8043,-83.2007,LOWNDES 31698,VALDOSTA,GA,30.8495,-83.2888,LOWNDES 31701,ALBANY,GA,31.567783,-84.161923,DOUGHERTY 31702,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31703,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31704,ALBANY,GA,31.550099,-84.050812,DOUGHERTY 31705,ALBANY,GA,31.550851,-84.090089,DOUGHERTY 31706,ALBANY,GA,31.5783,-84.1558,DOUGHERTY 31707,ALBANY,GA,31.578908,-84.211834,DOUGHERTY 31708,ALBANY,GA,31.5221,-84.2955,DOUGHERTY 31721,ALBANY,GA,31.547,-84.2707,DOUGHERTY 31901,COLUMBUS,GA,32.473035,-84.979456,MUSCOGEE 31902,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31903,COLUMBUS,GA,32.424513,-84.948127,MUSCOGEE 31904,COLUMBUS,GA,32.516091,-84.978475,MUSCOGEE 31906,COLUMBUS,GA,32.463819,-84.948422,MUSCOGEE 31907,COLUMBUS,GA,32.477909,-84.89799,MUSCOGEE 31908,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31909,COLUMBUS,GA,32.536913,-84.927404,MUSCOGEE 31914,COLUMBUS,GA,32.5573,-85.0045,MUSCOGEE 31917,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31993,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31997,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31998,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 31999,COLUMBUS,GA,32.4608,-84.9877,MUSCOGEE 32080,SAINT AUGUSTINE,FL,29.8364,-81.2745,SAINT JOHNS 32084,SAINT AUGUSTINE,FL,29.880457,-81.298367,SAINT JOHNS 32085,SAINT AUGUSTINE,FL,29.8914,-81.3167,SAINT JOHNS 32086,SAINT AUGUSTINE,FL,29.828514,-81.323734,SAINT JOHNS 32092,SAINT AUGUSTINE,FL,29.947511,-81.526379,SAINT JOHNS 32095,SAINT AUGUSTINE,FL,29.905726,-81.347626,SAINT JOHNS 32099,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32114,DAYTONA BEACH,FL,29.201168,-81.037071,VOLUSIA 32115,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32116,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32117,DAYTONA BEACH,FL,29.236006,-81.054698,VOLUSIA 32118,DAYTONA BEACH,FL,29.221874,-81.009469,VOLUSIA 32119,DAYTONA BEACH,FL,29.152526,-81.022142,VOLUSIA 32120,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32121,DAYTONA BEACH,FL,29.165556,-81.004722,VOLUSIA 32122,DAYTONA BEACH,FL,29.1479,-81.03,VOLUSIA 32124,DAYTONA BEACH,FL,29.122456,-81.106746,VOLUSIA 32125,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32126,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32198,DAYTONA BEACH,FL,29.2105,-81.023,VOLUSIA 32201,JACKSONVILLE,FL,30.3294,-81.6613,DUVAL 32202,JACKSONVILLE,FL,30.329882,-81.651672,DUVAL 32203,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32204,JACKSONVILLE,FL,30.318899,-81.685445,DUVAL 32205,JACKSONVILLE,FL,30.317236,-81.722034,DUVAL 32206,JACKSONVILLE,FL,30.351073,-81.648769,DUVAL 32207,JACKSONVILLE,FL,30.290766,-81.63205,DUVAL 32208,JACKSONVILLE,FL,30.393664,-81.688939,DUVAL 32209,JACKSONVILLE,FL,30.35841,-81.691974,DUVAL 32210,JACKSONVILLE,FL,30.268743,-81.747312,DUVAL 32211,JACKSONVILLE,FL,30.348034,-81.588248,DUVAL 32212,JACKSONVILLE,FL,30.220905,-81.68848,DUVAL 32214,JACKSONVILLE,FL,30.2128,-81.6867,DUVAL 32215,JACKSONVILLE,FL,30.23295,-81.663142,DUVAL 32216,JACKSONVILLE,FL,30.293907,-81.547387,DUVAL 32217,JACKSONVILLE,FL,30.240678,-81.616956,DUVAL 32218,JACKSONVILLE,FL,30.45067,-81.662631,DUVAL 32219,JACKSONVILLE,FL,30.403365,-81.763451,DUVAL 32220,JACKSONVILLE,FL,30.329003,-81.817572,DUVAL 32221,JACKSONVILLE,FL,30.283707,-81.820231,DUVAL 32222,JACKSONVILLE,FL,30.229176,-81.813081,DUVAL 32223,JACKSONVILLE,FL,30.154817,-81.629961,DUVAL 32224,JACKSONVILLE,FL,30.303076,-81.440427,DUVAL 32225,JACKSONVILLE,FL,30.350968,-81.506092,DUVAL 32226,JACKSONVILLE,FL,30.473485,-81.544808,DUVAL 32227,JACKSONVILLE,FL,30.388275,-81.405424,DUVAL 32228,JACKSONVILLE,FL,30.383889,-81.415278,DUVAL 32229,JACKSONVILLE,FL,30.4937,-81.6715,DUVAL 32230,JACKSONVILLE,FL,30.3268,-81.7339,DUVAL 32231,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32232,JACKSONVILLE,FL,30.3163,-81.4175,DUVAL 32234,JACKSONVILLE,FL,30.229562,-81.978345,DUVAL 32235,JACKSONVILLE,FL,30.2908,-81.6316,DUVAL 32236,JACKSONVILLE,FL,30.3118,-81.7379,DUVAL 32237,JACKSONVILLE,FL,30.2006,-81.6157,DUVAL 32238,JACKSONVILLE,FL,30.2469,-81.7387,DUVAL 32239,JACKSONVILLE,FL,30.3521,-81.5688,DUVAL 32241,JACKSONVILLE,FL,30.1535,-81.6326,DUVAL 32244,JACKSONVILLE,FL,30.223137,-81.75558,DUVAL 32245,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32246,JACKSONVILLE,FL,30.297,-81.516,DUVAL 32247,JACKSONVILLE,FL,30.2937,-81.627,DUVAL 32254,JACKSONVILLE,FL,30.3357,-81.73,DUVAL 32255,JACKSONVILLE,FL,30.2482,-81.5525,DUVAL 32256,JACKSONVILLE,FL,30.221356,-81.557139,DUVAL 32257,JACKSONVILLE,FL,30.192703,-81.605042,DUVAL 32258,JACKSONVILLE,FL,30.145944,-81.573864,DUVAL 32260,JACKSONVILLE,FL,30.0759,-81.5803,SAINT JOHNS 32267,JACKSONVILLE,FL,30.3826,-81.4199,DUVAL 32277,JACKSONVILLE,FL,30.3661,-81.5888,DUVAL 32290,JACKSONVILLE,FL,30.3318,-81.6555,DUVAL 32301,TALLAHASSEE,FL,30.428563,-84.259337,LEON 32302,TALLAHASSEE,FL,30.4418,-84.284,LEON 32303,TALLAHASSEE,FL,30.487433,-84.318946,LEON 32304,TALLAHASSEE,FL,30.447752,-84.321132,LEON 32305,TALLAHASSEE,FL,30.348,-84.2844,LEON 32306,TALLAHASSEE,FL,30.442152,-84.295594,LEON 32307,TALLAHASSEE,FL,30.426667,-84.285278,LEON 32308,TALLAHASSEE,FL,30.507725,-84.206903,LEON 32309,TALLAHASSEE,FL,30.594444,-84.041389,LEON 32310,TALLAHASSEE,FL,30.399125,-84.3298,LEON 32311,TALLAHASSEE,FL,30.415625,-84.186995,LEON 32312,TALLAHASSEE,FL,30.518474,-84.262708,LEON 32313,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32314,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32315,TALLAHASSEE,FL,30.4648,-84.2854,LEON 32316,TALLAHASSEE,FL,30.437,-84.2979,LEON 32317,TALLAHASSEE,FL,30.4675,-84.1231,LEON 32318,TALLAHASSEE,FL,30.5567,-84.1766,LEON 32395,TALLAHASSEE,FL,30.4126,-84.2834,LEON 32399,TALLAHASSEE,FL,30.4328,-84.2671,LEON 32401,PANAMA CITY,FL,30.160624,-85.649403,BAY 32402,PANAMA CITY,FL,30.1558,-85.6629,BAY 32403,PANAMA CITY,FL,30.058252,-85.576225,BAY 32404,PANAMA CITY,FL,30.165291,-85.576264,BAY 32405,PANAMA CITY,FL,30.194949,-85.672686,BAY 32406,PANAMA CITY,FL,30.1786,-85.6841,BAY 32408,PANAMA CITY,FL,30.160859,-85.763628,BAY 32409,PANAMA CITY,FL,30.310679,-85.644536,BAY 32411,PANAMA CITY,FL,30.1516,-85.7246,BAY 32412,PANAMA CITY,FL,30.1586,-85.6602,BAY 32417,PANAMA CITY,FL,30.176389,-85.805556,BAY 32501,PENSACOLA,FL,30.422282,-87.224763,ESCAMBIA 32502,PENSACOLA,FL,30.4126,-87.2112,ESCAMBIA 32503,PENSACOLA,FL,30.456406,-87.210432,ESCAMBIA 32504,PENSACOLA,FL,30.487299,-87.187242,ESCAMBIA 32505,PENSACOLA,FL,30.448069,-87.258937,ESCAMBIA 32506,PENSACOLA,FL,30.412912,-87.309185,ESCAMBIA 32507,PENSACOLA,FL,30.373707,-87.312558,ESCAMBIA 32508,PENSACOLA,FL,30.351063,-87.274945,ESCAMBIA 32509,PENSACOLA,FL,30.4628,-87.3381,ESCAMBIA 32511,PENSACOLA,FL,30.4066,-87.2886,ESCAMBIA 32512,PENSACOLA,FL,30.3969,-87.3013,ESCAMBIA 32513,PENSACOLA,FL,30.4441,-87.215,ESCAMBIA 32514,PENSACOLA,FL,30.524148,-87.216723,ESCAMBIA 32516,PENSACOLA,FL,30.426,-87.2876,ESCAMBIA 32520,PENSACOLA,FL,30.4123,-87.2035,ESCAMBIA 32521,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32522,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32523,PENSACOLA,FL,30.4338,-87.2347,ESCAMBIA 32524,PENSACOLA,FL,30.498,-87.1961,ESCAMBIA 32526,PENSACOLA,FL,30.475593,-87.317925,ESCAMBIA 32534,PENSACOLA,FL,30.530065,-87.279324,ESCAMBIA 32559,PENSACOLA,FL,30.3527,-87.3044,ESCAMBIA 32590,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32591,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32592,PENSACOLA,FL,30.4211,-87.2169,ESCAMBIA 32601,GAINESVILLE,FL,29.645029,-82.310046,ALACHUA 32602,GAINESVILLE,FL,29.6513,-82.325,ALACHUA 32603,GAINESVILLE,FL,29.651484,-82.349286,ALACHUA 32604,GAINESVILLE,FL,29.6526,-82.3437,ALACHUA 32605,GAINESVILLE,FL,29.678458,-82.36794,ALACHUA 32606,GAINESVILLE,FL,29.695393,-82.402324,ALACHUA 32607,GAINESVILLE,FL,29.645618,-82.403252,ALACHUA 32608,GAINESVILLE,FL,29.613204,-82.387282,ALACHUA 32609,GAINESVILLE,FL,29.70053,-82.308032,ALACHUA 32610,GAINESVILLE,FL,29.6396,-82.3439,ALACHUA 32611,GAINESVILLE,FL,29.644148,-82.35092,ALACHUA 32612,GAINESVILLE,FL,29.6093,-82.3721,ALACHUA 32613,GAINESVILLE,FL,29.6646,-82.3244,ALACHUA 32614,GAINESVILLE,FL,29.6771,-82.3717,ALACHUA 32627,GAINESVILLE,FL,29.6462,-82.3261,ALACHUA 32635,GAINESVILLE,FL,29.7077,-82.3979,ALACHUA 32641,GAINESVILLE,FL,29.6434,-82.2805,ALACHUA 32653,GAINESVILLE,FL,29.7227,-82.3918,ALACHUA 32801,ORLANDO,FL,28.539882,-81.372668,ORANGE 32802,ORLANDO,FL,28.5453,-81.3783,ORANGE 32803,ORLANDO,FL,28.555897,-81.353462,ORANGE 32804,ORLANDO,FL,28.576547,-81.391955,ORANGE 32805,ORLANDO,FL,28.5302,-81.404516,ORANGE 32806,ORLANDO,FL,28.513958,-81.356968,ORANGE 32807,ORLANDO,FL,28.544924,-81.305274,ORANGE 32808,ORLANDO,FL,28.580463,-81.44758,ORANGE 32809,ORLANDO,FL,28.461916,-81.381751,ORANGE 32810,ORLANDO,FL,28.622183,-81.425852,ORANGE 32811,ORLANDO,FL,28.516082,-81.442014,ORANGE 32812,ORLANDO,FL,28.49981,-81.328816,ORANGE 32814,ORLANDO,FL,28.5675,-81.333,ORANGE 32815,ORLANDO,FL,28.498821,-80.58248,BREVARD 32816,ORLANDO,FL,28.6049,-81.205,ORANGE 32817,ORLANDO,FL,28.590251,-81.253537,ORANGE 32818,ORLANDO,FL,28.580147,-81.484618,ORANGE 32819,ORLANDO,FL,28.467258,-81.452484,ORANGE 32820,ORLANDO,FL,28.578256,-81.110628,ORANGE 32821,ORLANDO,FL,28.395724,-81.466602,ORANGE 32822,ORLANDO,FL,28.504765,-81.293874,ORANGE 32824,ORLANDO,FL,28.393157,-81.362187,ORANGE 32825,ORLANDO,FL,28.546865,-81.257081,ORANGE 32826,ORLANDO,FL,28.582601,-81.190705,ORANGE 32827,ORLANDO,FL,28.43168,-81.342979,ORANGE 32828,ORLANDO,FL,28.552297,-81.179489,ORANGE 32829,ORLANDO,FL,28.484877,-81.260778,ORANGE 32830,ORLANDO,FL,28.369378,-81.519034,ORANGE 32831,ORLANDO,FL,28.488229,-81.191768,ORANGE 32832,ORLANDO,FL,28.377428,-81.188807,ORANGE 32833,ORLANDO,FL,28.531797,-81.098129,ORANGE 32834,ORLANDO,FL,28.538,-81.3794,ORANGE 32835,ORLANDO,FL,28.528885,-81.478663,ORANGE 32836,ORLANDO,FL,28.460842,-81.49564,ORANGE 32837,ORLANDO,FL,28.394861,-81.417882,ORANGE 32839,ORLANDO,FL,28.487102,-81.408162,ORANGE 32853,ORLANDO,FL,28.5515,-81.3644,ORANGE 32854,ORLANDO,FL,28.5665,-81.3894,ORANGE 32855,ORLANDO,FL,28.538,-81.3794,ORANGE 32856,ORLANDO,FL,28.5109,-81.3727,ORANGE 32857,ORLANDO,FL,28.538,-81.3794,ORANGE 32858,ORLANDO,FL,28.5527,-81.4498,ORANGE 32859,ORLANDO,FL,28.4521,-81.3644,ORANGE 32860,ORLANDO,FL,28.6218,-81.4392,ORANGE 32861,ORLANDO,FL,28.538,-81.3794,ORANGE 32862,ORLANDO,FL,28.483,-81.3299,ORANGE 32867,ORLANDO,FL,28.5675,-81.253,ORANGE 32868,ORLANDO,FL,28.583,-81.476,ORANGE 32869,ORLANDO,FL,28.5901,-81.4936,ORANGE 32872,ORLANDO,FL,28.5148,-81.2882,ORANGE 32877,ORLANDO,FL,28.5416,-81.3739,ORANGE 32878,ORLANDO,FL,28.538,-81.3794,ORANGE 32885,ORLANDO,FL,28.5382,-81.3795,ORANGE 32886,ORLANDO,FL,28.538,-81.3794,ORANGE 32887,ORLANDO,FL,28.3804,-81.4704,ORANGE 32890,ORLANDO,FL,28.4611,-81.3845,ORANGE 32891,ORLANDO,FL,28.538,-81.3794,ORANGE 32893,ORLANDO,FL,28.4286,-81.3097,ORANGE 32896,ORLANDO,FL,28.3212,-81.2299,ORANGE 32897,ORLANDO,FL,28.538,-81.3794,ORANGE 32898,ORLANDO,FL,28.538,-81.3794,ORANGE 32899,ORLANDO,FL,28.6138,-80.6774,BREVARD 32901,MELBOURNE,FL,28.069132,-80.620015,BREVARD 32902,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32904,MELBOURNE,FL,28.073177,-80.668577,BREVARD 32905,PALM BAY,FL,28.014605,-80.599087,BREVARD 32906,PALM BAY,FL,28.0449,-80.6053,BREVARD 32907,PALM BAY,FL,28.016849,-80.673889,BREVARD 32908,PALM BAY,FL,27.981636,-80.689426,BREVARD 32909,PALM BAY,FL,27.96936,-80.647327,BREVARD 32910,PALM BAY,FL,28.0341,-80.5888,BREVARD 32911,PALM BAY,FL,28.0775,-80.6266,BREVARD 32912,MELBOURNE,FL,28.0775,-80.6266,BREVARD 32919,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32934,MELBOURNE,FL,28.136822,-80.691683,BREVARD 32935,MELBOURNE,FL,28.138385,-80.652353,BREVARD 32936,MELBOURNE,FL,28.1307,-80.6296,BREVARD 32940,MELBOURNE,FL,28.206136,-80.684959,BREVARD 32941,MELBOURNE,FL,28.0833,-80.6083,BREVARD 32960,VERO BEACH,FL,27.632985,-80.403075,INDIAN RIVER 32961,VERO BEACH,FL,27.6383,-80.3975,INDIAN RIVER 32962,VERO BEACH,FL,27.588486,-80.392251,INDIAN RIVER 32963,VERO BEACH,FL,27.653623,-80.360916,INDIAN RIVER 32964,VERO BEACH,FL,27.6515,-80.3576,INDIAN RIVER 32965,VERO BEACH,FL,27.7257,-80.3893,INDIAN RIVER 32966,VERO BEACH,FL,27.637214,-80.47939,INDIAN RIVER 32967,VERO BEACH,FL,27.697223,-80.441617,INDIAN RIVER 32968,VERO BEACH,FL,27.59993,-80.438223,INDIAN RIVER 32969,VERO BEACH,FL,27.639,-80.3989,INDIAN RIVER 33002,HIALEAH,FL,25.905,-80.3049,MIAMI-DADE 33010,HIALEAH,FL,25.832536,-80.280801,MIAMI-DADE 33011,HIALEAH,FL,25.8248,-80.2835,MIAMI-DADE 33012,HIALEAH,FL,25.865395,-80.3059,MIAMI-DADE 33013,HIALEAH,FL,25.859351,-80.272533,MIAMI-DADE 33014,HIALEAH,FL,25.896349,-80.306255,MIAMI-DADE 33015,HIALEAH,FL,25.938841,-80.316545,MIAMI-DADE 33016,HIALEAH,FL,25.880262,-80.33681,MIAMI-DADE 33017,HIALEAH,FL,25.978889,-80.201667,MIAMI-DADE 33018,HIALEAH,FL,25.911667,-80.325,MIAMI-DADE 33019,HOLLYWOOD,FL,26.007011,-80.121931,BROWARD 33020,HOLLYWOOD,FL,26.016091,-80.15166,BROWARD 33021,HOLLYWOOD,FL,26.021836,-80.189085,BROWARD 33022,HOLLYWOOD,FL,26.0131,-80.1435,BROWARD 33023,HOLLYWOOD,FL,25.987516,-80.216035,BROWARD 33024,HOLLYWOOD,FL,26.024273,-80.240183,BROWARD 33025,HOLLYWOOD,FL,25.992061,-80.271236,BROWARD 33027,HOLLYWOOD,FL,25.997449,-80.32484,BROWARD 33028,HOLLYWOOD,FL,26.024804,-80.330797,BROWARD 33029,HOLLYWOOD,FL,26.01375,-80.428407,BROWARD 33030,HOMESTEAD,FL,25.476639,-80.483853,MIAMI-DADE 33031,HOMESTEAD,FL,25.532314,-80.507463,MIAMI-DADE 33032,HOMESTEAD,FL,25.521191,-80.40918,MIAMI-DADE 33033,HOMESTEAD,FL,25.490576,-80.438014,MIAMI-DADE 33034,HOMESTEAD,FL,25.396332,-80.548438,MIAMI-DADE 33035,HOMESTEAD,FL,25.457338,-80.457153,MIAMI-DADE 33039,HOMESTEAD,FL,25.499088,-80.390513,MIAMI-DADE 33060,POMPANO BEACH,FL,26.231529,-80.12346,BROWARD 33061,POMPANO BEACH,FL,26.2594,-80.1147,BROWARD 33062,POMPANO BEACH,FL,26.234314,-80.094133,BROWARD 33063,POMPANO BEACH,FL,26.249221,-80.211483,BROWARD 33065,POMPANO BEACH,FL,26.271403,-80.255578,BROWARD 33066,POMPANO BEACH,FL,26.254237,-80.177878,BROWARD 33067,POMPANO BEACH,FL,26.305134,-80.22188,BROWARD 33068,POMPANO BEACH,FL,26.216021,-80.22054,BROWARD 33069,POMPANO BEACH,FL,26.228817,-80.163486,BROWARD 33071,POMPANO BEACH,FL,26.243515,-80.260085,BROWARD 33072,POMPANO BEACH,FL,26.2327,-80.0925,BROWARD 33073,POMPANO BEACH,FL,26.299693,-80.180966,BROWARD 33075,POMPANO BEACH,FL,26.2434,-80.266,BROWARD 33076,POMPANO BEACH,FL,26.291902,-80.248086,BROWARD 33077,POMPANO BEACH,FL,26.2392,-80.2517,BROWARD 33081,HOLLYWOOD,FL,26.0174,-80.2036,BROWARD 33083,HOLLYWOOD,FL,26.1499,-80.2314,BROWARD 33084,HOLLYWOOD,FL,26.002778,-80.224167,BROWARD 33090,HOMESTEAD,FL,25.468333,-80.477778,MIAMI-DADE 33092,HOMESTEAD,FL,25.517222,-80.421667,MIAMI-DADE 33097,POMPANO BEACH,FL,26.3173,-80.1808,BROWARD 33101,MIAMI,FL,25.779,-80.1982,MIAMI-DADE 33102,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33107,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33109,MIAMI BEACH,FL,25.7611,-80.1403,MIAMI-DADE 33110,MIAMI,FL,25.8519,-80.2073,MIAMI-DADE 33111,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33112,MIAMI,FL,25.7968,-80.3826,MIAMI-DADE 33114,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33116,MIAMI,FL,25.6719,-80.3746,MIAMI-DADE 33119,MIAMI BEACH,FL,25.7836,-80.1324,MIAMI-DADE 33121,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33122,MIAMI,FL,25.7911,-80.320733,MIAMI-DADE 33124,MIAMI,FL,25.7473,-80.2597,MIAMI-DADE 33125,MIAMI,FL,25.782547,-80.234118,MIAMI-DADE 33126,MIAMI,FL,25.776255,-80.291932,MIAMI-DADE 33127,MIAMI,FL,25.814344,-80.205121,MIAMI-DADE 33128,MIAMI,FL,25.775612,-80.208858,MIAMI-DADE 33129,MIAMI,FL,25.755926,-80.201301,MIAMI-DADE 33130,MIAMI,FL,25.767197,-80.205888,MIAMI-DADE 33131,MIAMI,FL,25.762852,-80.189506,MIAMI-DADE 33132,MIAMI,FL,25.786712,-80.179996,MIAMI-DADE 33133,MIAMI,FL,25.732251,-80.243639,MIAMI-DADE 33134,MIAMI,FL,25.755582,-80.269576,MIAMI-DADE 33135,MIAMI,FL,25.766391,-80.231746,MIAMI-DADE 33136,MIAMI,FL,25.786385,-80.204232,MIAMI-DADE 33137,MIAMI,FL,25.815648,-80.189663,MIAMI-DADE 33138,MIAMI,FL,25.850208,-80.18526,MIAMI-DADE 33139,MIAMI BEACH,FL,25.785179,-80.136378,MIAMI-DADE 33140,MIAMI BEACH,FL,25.819505,-80.127921,MIAMI-DADE 33141,MIAMI BEACH,FL,25.852384,-80.133578,MIAMI-DADE 33142,MIAMI,FL,25.812966,-80.232023,MIAMI-DADE 33143,MIAMI,FL,25.700252,-80.301408,MIAMI-DADE 33144,MIAMI,FL,25.762563,-80.309631,MIAMI-DADE 33145,MIAMI,FL,25.752648,-80.235134,MIAMI-DADE 33146,MIAMI,FL,25.720089,-80.274649,MIAMI-DADE 33147,MIAMI,FL,25.850675,-80.236558,MIAMI-DADE 33148,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33150,MIAMI,FL,25.851214,-80.206968,MIAMI-DADE 33151,MIAMI,FL,25.8315,-80.2098,MIAMI-DADE 33152,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33153,MIAMI,FL,25.8655,-80.1936,MIAMI-DADE 33154,MIAMI BEACH,FL,25.879094,-80.127055,MIAMI-DADE 33155,MIAMI,FL,25.7392,-80.31032,MIAMI-DADE 33156,MIAMI,FL,25.66767,-80.308535,MIAMI-DADE 33157,MIAMI,FL,25.604384,-80.352473,MIAMI-DADE 33158,MIAMI,FL,25.636433,-80.318703,MIAMI-DADE 33159,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33161,MIAMI,FL,25.893806,-80.182034,MIAMI-DADE 33162,MIAMI,FL,25.92807,-80.177238,MIAMI-DADE 33163,MIAMI,FL,25.948056,-80.150833,MIAMI-DADE 33164,MIAMI,FL,25.928889,-80.178333,MIAMI-DADE 33165,MIAMI,FL,25.735353,-80.359084,MIAMI-DADE 33166,MIAMI,FL,25.817473,-80.29902,MIAMI-DADE 33167,MIAMI,FL,25.885605,-80.229168,MIAMI-DADE 33168,MIAMI,FL,25.890232,-80.210106,MIAMI-DADE 33169,MIAMI,FL,25.944083,-80.21436,MIAMI-DADE 33170,MIAMI,FL,25.558847,-80.3981,MIAMI-DADE 33172,MIAMI,FL,25.773523,-80.357232,MIAMI-DADE 33173,MIAMI,FL,25.699242,-80.361824,MIAMI-DADE 33174,MIAMI,FL,25.762779,-80.361128,MIAMI-DADE 33175,MIAMI,FL,25.733677,-80.408226,MIAMI-DADE 33176,MIAMI,FL,25.657449,-80.362667,MIAMI-DADE 33177,MIAMI,FL,25.593255,-80.39377,MIAMI-DADE 33178,MIAMI,FL,25.814079,-80.354925,MIAMI-DADE 33179,MIAMI,FL,25.957095,-80.181382,MIAMI-DADE 33180,MIAMI,FL,25.961902,-80.139447,MIAMI-DADE 33181,MIAMI,FL,25.896548,-80.160329,MIAMI-DADE 33182,MIAMI,FL,25.787678,-80.416643,MIAMI-DADE 33183,MIAMI,FL,25.699977,-80.412969,MIAMI-DADE 33184,MIAMI,FL,25.757382,-80.402997,MIAMI-DADE 33185,MIAMI,FL,25.718082,-80.437366,MIAMI-DADE 33186,MIAMI,FL,25.669437,-80.408501,MIAMI-DADE 33187,MIAMI,FL,25.597112,-80.47137,MIAMI-DADE 33188,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33189,MIAMI,FL,25.57431,-80.350851,MIAMI-DADE 33190,MIAMI,FL,25.560935,-80.35381,MIAMI-DADE 33193,MIAMI,FL,25.696365,-80.440087,MIAMI-DADE 33194,MIAMI,FL,25.7576,-80.4505,MIAMI-DADE 33195,MIAMI,FL,25.7965,-80.3133,MIAMI-DADE 33196,MIAMI,FL,25.661502,-80.441031,MIAMI-DADE 33197,MIAMI,FL,25.558333,-80.381667,MIAMI-DADE 33199,MIAMI,FL,25.7574,-80.3754,MIAMI-DADE 33222,MIAMI,FL,37.0625,-95.677068,MIAMI-DADE 33231,MIAMI,FL,25.7299,-80.3013,MIAMI-DADE 33233,MIAMI,FL,25.7272,-80.2585,MIAMI-DADE 33234,MIAMI,FL,25.7299,-80.2426,MIAMI-DADE 33238,MIAMI,FL,25.8518,-80.1944,MIAMI-DADE 33239,MIAMI BEACH,FL,25.7902,-80.1424,MIAMI-DADE 33242,MIAMI,FL,25.8059,-80.224,MIAMI-DADE 33243,MIAMI,FL,25.7057,-80.2902,MIAMI-DADE 33245,MIAMI,FL,25.7481,-80.2877,MIAMI-DADE 33247,MIAMI,FL,25.8348,-80.2415,MIAMI-DADE 33255,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33256,MIAMI,FL,25.666667,-80.308333,MIAMI-DADE 33257,MIAMI,FL,25.6113,-80.3486,MIAMI-DADE 33261,MIAMI,FL,25.9075,-80.1583,MIAMI-DADE 33265,MIAMI,FL,25.726389,-80.355556,MIAMI-DADE 33266,MIAMI,FL,25.821944,-80.289722,MIAMI-DADE 33269,MIAMI,FL,25.9449,-80.2057,MIAMI-DADE 33280,MIAMI,FL,25.9335,-80.1366,MIAMI-DADE 33283,MIAMI,FL,25.6933,-80.3821,MIAMI-DADE 33296,MIAMI,FL,25.657,-80.3592,MIAMI-DADE 33299,MIAMI,FL,25.7738,-80.1938,MIAMI-DADE 33301,FORT LAUDERDALE,FL,26.121561,-80.128778,BROWARD 33302,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33303,FORT LAUDERDALE,FL,26.1186,-80.1296,BROWARD 33304,FORT LAUDERDALE,FL,26.137908,-80.125283,BROWARD 33305,FORT LAUDERDALE,FL,26.153115,-80.127768,BROWARD 33306,FORT LAUDERDALE,FL,26.165091,-80.112572,BROWARD 33307,FORT LAUDERDALE,FL,26.171944,-80.132222,BROWARD 33308,FORT LAUDERDALE,FL,26.187883,-80.107674,BROWARD 33309,FORT LAUDERDALE,FL,26.181698,-80.174624,BROWARD 33310,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33311,FORT LAUDERDALE,FL,26.142104,-80.172786,BROWARD 33312,FORT LAUDERDALE,FL,26.096819,-80.181038,BROWARD 33313,FORT LAUDERDALE,FL,26.151145,-80.223142,BROWARD 33314,FORT LAUDERDALE,FL,26.068199,-80.225034,BROWARD 33315,FORT LAUDERDALE,FL,26.098885,-80.15408,BROWARD 33316,FORT LAUDERDALE,FL,26.104193,-80.125951,BROWARD 33317,FORT LAUDERDALE,FL,26.113536,-80.224272,BROWARD 33318,FORT LAUDERDALE,FL,26.1278,-80.2502,BROWARD 33319,FORT LAUDERDALE,FL,26.181153,-80.225413,BROWARD 33320,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33321,FORT LAUDERDALE,FL,26.212072,-80.264356,BROWARD 33322,FORT LAUDERDALE,FL,26.151923,-80.271954,BROWARD 33323,FORT LAUDERDALE,FL,26.164641,-80.307583,BROWARD 33324,FORT LAUDERDALE,FL,26.113639,-80.271019,BROWARD 33325,FORT LAUDERDALE,FL,26.10862,-80.321952,BROWARD 33326,FORT LAUDERDALE,FL,26.114338,-80.369941,BROWARD 33327,FORT LAUDERDALE,FL,26.097291,-80.40645,BROWARD 33328,FORT LAUDERDALE,FL,26.060708,-80.272022,BROWARD 33329,FORT LAUDERDALE,FL,26.1219,-80.1436,BROWARD 33330,FORT LAUDERDALE,FL,26.055479,-80.312907,BROWARD 33331,FORT LAUDERDALE,FL,26.044366,-80.364533,BROWARD 33332,FORT LAUDERDALE,FL,26.054436,-80.41299,BROWARD 33334,FORT LAUDERDALE,FL,26.181514,-80.135511,BROWARD 33335,FORT LAUDERDALE,FL,26.1824,-80.1347,BROWARD 33336,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33337,FORT LAUDERDALE,FL,26.1113,-80.2749,BROWARD 33338,FORT LAUDERDALE,FL,26.1367,-80.1231,BROWARD 33339,FORT LAUDERDALE,FL,26.1646,-80.1141,BROWARD 33340,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33345,FORT LAUDERDALE,FL,26.150278,-80.224444,BROWARD 33346,FORT LAUDERDALE,FL,26.179,-80.2754,BROWARD 33348,FORT LAUDERDALE,FL,26.1692,-80.1022,BROWARD 33349,FORT LAUDERDALE,FL,26.1648,-80.1708,BROWARD 33351,FORT LAUDERDALE,FL,26.177148,-80.273376,BROWARD 33355,FORT LAUDERDALE,FL,26.112,-80.3037,BROWARD 33359,FORT LAUDERDALE,FL,26.1814,-80.2276,BROWARD 33388,FORT LAUDERDALE,FL,26.117586,-80.250587,BROWARD 33394,FORT LAUDERDALE,FL,26.1198,-80.1469,BROWARD 33401,WEST PALM BEACH,FL,26.713956,-80.065874,PALM BEACH 33402,WEST PALM BEACH,FL,26.7131,-80.058,PALM BEACH 33403,WEST PALM BEACH,FL,26.803187,-80.073078,PALM BEACH 33404,WEST PALM BEACH,FL,26.781343,-80.06852,PALM BEACH 33405,WEST PALM BEACH,FL,26.669968,-80.058234,PALM BEACH 33406,WEST PALM BEACH,FL,26.655582,-80.093026,PALM BEACH 33407,WEST PALM BEACH,FL,26.749154,-80.072492,PALM BEACH 33409,WEST PALM BEACH,FL,26.713218,-80.096347,PALM BEACH 33411,WEST PALM BEACH,FL,26.700539,-80.209898,PALM BEACH 33412,WEST PALM BEACH,FL,26.805526,-80.248203,PALM BEACH 33413,WEST PALM BEACH,FL,26.67616,-80.140474,PALM BEACH 33414,WEST PALM BEACH,FL,26.662707,-80.25299,PALM BEACH 33415,WEST PALM BEACH,FL,26.655722,-80.127966,PALM BEACH 33416,WEST PALM BEACH,FL,26.715,-80.0536,PALM BEACH 33417,WEST PALM BEACH,FL,26.713006,-80.124764,PALM BEACH 33419,WEST PALM BEACH,FL,26.7819,-80.0927,PALM BEACH 33420,WEST PALM BEACH,FL,26.8555,-80.086,PALM BEACH 33421,WEST PALM BEACH,FL,26.708,-80.2308,PALM BEACH 33422,WEST PALM BEACH,FL,26.690833,-80.120278,PALM BEACH 33424,BOYNTON BEACH,FL,26.525,-80.0666,PALM BEACH 33425,BOYNTON BEACH,FL,26.5283,-80.0643,PALM BEACH 33426,BOYNTON BEACH,FL,26.51747,-80.083427,PALM BEACH 33427,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33428,BOCA RATON,FL,26.344605,-80.210942,PALM BEACH 33429,BOCA RATON,FL,26.352,-80.0847,PALM BEACH 33431,BOCA RATON,FL,26.379929,-80.097488,PALM BEACH 33432,BOCA RATON,FL,26.34619,-80.084421,PALM BEACH 33433,BOCA RATON,FL,26.346409,-80.156399,PALM BEACH 33434,BOCA RATON,FL,26.383909,-80.174858,PALM BEACH 33435,BOYNTON BEACH,FL,26.529161,-80.06424,PALM BEACH 33436,BOYNTON BEACH,FL,26.526862,-80.106423,PALM BEACH 33437,BOYNTON BEACH,FL,26.531187,-80.141812,PALM BEACH 33444,DELRAY BEACH,FL,26.456445,-80.079321,PALM BEACH 33445,DELRAY BEACH,FL,26.456359,-80.105397,PALM BEACH 33446,DELRAY BEACH,FL,26.451717,-80.158016,PALM BEACH 33447,DELRAY BEACH,FL,26.4685,-80.0718,PALM BEACH 33448,DELRAY BEACH,FL,26.4567,-80.1378,PALM BEACH 33449,LAKE WORTH,FL,26.6159015,-80.056986,PALM BEACH 33454,LAKE WORTH,FL,26.6155,-80.1469,PALM BEACH 33460,LAKE WORTH,FL,26.618207,-80.055996,PALM BEACH 33461,LAKE WORTH,FL,26.62316,-80.094573,PALM BEACH 33462,LAKE WORTH,FL,26.576766,-80.077264,PALM BEACH 33463,LAKE WORTH,FL,26.609609,-80.130503,PALM BEACH 33464,BOCA RATON,FL,26.5844,-80.0526,PALM BEACH 33465,LAKE WORTH,FL,26.5844,-80.0526,PALM BEACH 33466,LAKE WORTH,FL,26.618,-80.1083,PALM BEACH 33467,LAKE WORTH,FL,26.610366,-80.168299,PALM BEACH 33472,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33473,BOYNTON BEACH,FL,26.5253491,-80.0664309,PALM BEACH 33474,BOYNTON BEACH,FL,26.5272,-80.0911,PALM BEACH 33481,BOCA RATON,FL,26.3583,-80.0833,PALM BEACH 33482,DELRAY BEACH,FL,26.4611,-80.073,PALM BEACH 33483,DELRAY BEACH,FL,26.45457,-80.065637,PALM BEACH 33484,DELRAY BEACH,FL,26.454272,-80.13459,PALM BEACH 33486,BOCA RATON,FL,26.348099,-80.110418,PALM BEACH 33487,BOCA RATON,FL,26.409142,-80.089072,PALM BEACH 33488,BOCA RATON,FL,26.349,-80.1141,PALM BEACH 33496,BOCA RATON,FL,26.402975,-80.181287,PALM BEACH 33497,BOCA RATON,FL,26.349,-80.2211,PALM BEACH 33498,BOCA RATON,FL,26.390693,-80.216087,PALM BEACH 33499,BOCA RATON,FL,26.3757,-80.1216,PALM BEACH 33601,TAMPA,FL,27.9428,-82.4549,HILLSBOROUGH 33602,TAMPA,FL,27.961381,-82.45972,HILLSBOROUGH 33603,TAMPA,FL,27.984534,-82.462997,HILLSBOROUGH 33604,TAMPA,FL,28.017312,-82.457848,HILLSBOROUGH 33605,TAMPA,FL,27.967078,-82.433368,HILLSBOROUGH 33606,TAMPA,FL,27.933828,-82.467035,HILLSBOROUGH 33607,TAMPA,FL,27.962538,-82.489535,HILLSBOROUGH 33608,TAMPA,FL,27.865916,-82.507097,HILLSBOROUGH 33609,TAMPA,FL,27.942456,-82.50572,HILLSBOROUGH 33610,TAMPA,FL,27.995125,-82.404584,HILLSBOROUGH 33611,TAMPA,FL,27.891422,-82.506714,HILLSBOROUGH 33612,TAMPA,FL,28.050187,-82.450018,HILLSBOROUGH 33613,TAMPA,FL,28.077184,-82.445519,HILLSBOROUGH 33614,TAMPA,FL,28.00914,-82.503393,HILLSBOROUGH 33615,TAMPA,FL,28.008057,-82.580495,HILLSBOROUGH 33616,TAMPA,FL,27.87418,-82.52029,HILLSBOROUGH 33617,TAMPA,FL,28.038358,-82.394876,HILLSBOROUGH 33618,TAMPA,FL,28.075875,-82.493291,HILLSBOROUGH 33619,TAMPA,FL,27.93824,-82.375558,HILLSBOROUGH 33620,TAMPA,FL,28.069465,-82.409188,HILLSBOROUGH 33621,TAMPA,FL,27.8516,-82.4885,HILLSBOROUGH 33622,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33623,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33624,TAMPA,FL,28.077194,-82.524944,HILLSBOROUGH 33625,TAMPA,FL,28.072551,-82.558987,HILLSBOROUGH 33626,TAMPA,FL,28.050932,-82.616378,HILLSBOROUGH 33629,TAMPA,FL,27.92102,-82.507897,HILLSBOROUGH 33630,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33631,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33633,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33634,TAMPA,FL,28.006783,-82.556006,HILLSBOROUGH 33635,TAMPA,FL,28.03013,-82.604822,HILLSBOROUGH 33637,TAMPA,FL,28.03377,-82.365876,HILLSBOROUGH 33646,TAMPA,FL,27.9475216,-82.4584279,HILLSBOROUGH 33647,TAMPA,FL,28.114698,-82.367751,HILLSBOROUGH 33650,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33651,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33655,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33660,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33661,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33662,TAMPA,FL,27.9597,-82.5327,HILLSBOROUGH 33663,TAMPA,FL,27.9281,-82.3734,HILLSBOROUGH 33664,TAMPA,FL,27.967,-82.5177,HILLSBOROUGH 33672,TAMPA,FL,27.9519,-82.4588,HILLSBOROUGH 33673,TAMPA,FL,27.9943,-82.4597,HILLSBOROUGH 33674,TAMPA,FL,28.0088,-82.4514,HILLSBOROUGH 33675,TAMPA,FL,27.9641,-82.4376,HILLSBOROUGH 33677,TAMPA,FL,27.958,-82.4833,HILLSBOROUGH 33679,TAMPA,FL,27.9521,-82.5083,HILLSBOROUGH 33680,TAMPA,FL,27.9958,-82.4273,HILLSBOROUGH 33681,TAMPA,FL,27.8959,-82.5227,HILLSBOROUGH 33682,TAMPA,FL,28.0552,-82.4593,HILLSBOROUGH 33684,TAMPA,FL,27.996,-82.4964,HILLSBOROUGH 33685,TAMPA,FL,27.9985,-82.5827,HILLSBOROUGH 33686,TAMPA,FL,27.8682,-82.5276,HILLSBOROUGH 33687,TAMPA,FL,28.0357,-82.394,HILLSBOROUGH 33688,TAMPA,FL,28.0613,-82.5036,HILLSBOROUGH 33689,TAMPA,FL,28.0792,-82.4924,HILLSBOROUGH 33690,TAMPA,FL,27.920556,-82.495556,HILLSBOROUGH 33694,TAMPA,FL,28.0696,-82.4949,HILLSBOROUGH 33697,TAMPA,FL,28.0879,-82.4593, 33701,SAINT PETERSBURG,FL,27.772318,-82.638609,PINELLAS 33702,SAINT PETERSBURG,FL,27.842712,-82.644795,PINELLAS 33703,SAINT PETERSBURG,FL,27.816957,-82.626393,PINELLAS 33704,SAINT PETERSBURG,FL,27.795435,-82.637289,PINELLAS 33705,SAINT PETERSBURG,FL,27.739113,-82.64349,PINELLAS 33706,SAINT PETERSBURG,FL,27.745606,-82.751646,PINELLAS 33707,SAINT PETERSBURG,FL,27.75487,-82.720791,PINELLAS 33708,SAINT PETERSBURG,FL,27.816529,-82.800779,PINELLAS 33709,SAINT PETERSBURG,FL,27.817427,-82.729845,PINELLAS 33710,SAINT PETERSBURG,FL,27.789798,-82.724285,PINELLAS 33711,SAINT PETERSBURG,FL,27.74649,-82.689708,PINELLAS 33712,SAINT PETERSBURG,FL,27.735336,-82.666298,PINELLAS 33713,SAINT PETERSBURG,FL,27.789015,-82.677939,PINELLAS 33714,SAINT PETERSBURG,FL,27.817621,-82.677612,PINELLAS 33715,SAINT PETERSBURG,FL,27.694792,-82.715646,PINELLAS 33716,SAINT PETERSBURG,FL,27.873764,-82.640039,PINELLAS 33729,SAINT PETERSBURG,FL,27.8831,-82.6672,PINELLAS 33730,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33731,SAINT PETERSBURG,FL,27.7717,-82.6387,PINELLAS 33732,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33733,SAINT PETERSBURG,FL,27.7719,-82.676,PINELLAS 33734,SAINT PETERSBURG,FL,27.8031,-82.6469,PINELLAS 33736,SAINT PETERSBURG,FL,27.725,-82.741389,PINELLAS 33737,SAINT PETERSBURG,FL,27.7382,-82.7081,PINELLAS 33738,SAINT PETERSBURG,FL,27.797778,-82.7975,PINELLAS 33740,SAINT PETERSBURG,FL,27.7689,-82.7686,PINELLAS 33741,SAINT PETERSBURG,FL,27.743,-82.7516,PINELLAS 33742,SAINT PETERSBURG,FL,27.8423,-82.6478,PINELLAS 33743,SAINT PETERSBURG,FL,27.7838,-82.7293,PINELLAS 33747,SAINT PETERSBURG,FL,27.7893,-82.7268,PINELLAS 33755,CLEARWATER,FL,27.9799,-82.7806,PINELLAS 33756,CLEARWATER,FL,27.935556,-82.806389,PINELLAS 33757,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33758,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33759,CLEARWATER,FL,27.9777,-82.716,PINELLAS 33760,CLEARWATER,FL,27.9094,-82.7139,PINELLAS 33761,CLEARWATER,FL,28.0295,-82.7257,PINELLAS 33762,CLEARWATER,FL,27.8912,-82.6852,PINELLAS 33763,CLEARWATER,FL,28.0027,-82.7442,PINELLAS 33764,CLEARWATER,FL,27.9317,-82.7389,PINELLAS 33765,CLEARWATER,FL,27.9743,-82.745,PINELLAS 33766,CLEARWATER,FL,27.9797,-82.7807,PINELLAS 33769,CLEARWATER,FL,27.9887,-82.7548,PINELLAS 33770,LARGO,FL,27.9163,-82.7996,PINELLAS 33771,LARGO,FL,27.9061,-82.7597,PINELLAS 33773,LARGO,FL,27.8824,-82.7515,PINELLAS 33774,LARGO,FL,27.8821,-82.8274,PINELLAS 33778,LARGO,FL,27.8831,-82.7952,PINELLAS 33779,LARGO,FL,27.9062,-82.7599,PINELLAS 33784,SAINT PETERSBURG,FL,27.7705,-82.6794,PINELLAS 33801,LAKELAND,FL,28.038134,-81.939153,POLK 33802,LAKELAND,FL,28.0454,-81.9585,POLK 33803,LAKELAND,FL,28.014045,-81.952283,POLK 33804,LAKELAND,FL,28.0786,-81.9534,POLK 33805,LAKELAND,FL,28.072006,-81.96091,POLK 33806,LAKELAND,FL,28.029,-81.9576,POLK 33807,LAKELAND,FL,27.9734,-81.9607,POLK 33809,LAKELAND,FL,28.123356,-81.984219,POLK 33810,LAKELAND,FL,28.1129,-82.0112,POLK 33811,LAKELAND,FL,27.966284,-82.007236,POLK 33812,LAKELAND,FL,27.9694,-81.8943,POLK 33813,LAKELAND,FL,27.969534,-81.933187,POLK 33815,LAKELAND,FL,28.0416,-81.9876,POLK 33880,WINTER HAVEN,FL,27.999296,-81.751507,POLK 33881,WINTER HAVEN,FL,28.045219,-81.732485,POLK 33882,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33883,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33884,WINTER HAVEN,FL,27.994901,-81.678905,POLK 33885,WINTER HAVEN,FL,28.043333,-81.716944,POLK 33888,WINTER HAVEN,FL,28.0218,-81.7271,POLK 33900,FORT MYERS,FL,26.640628,-81.8723084,LEE 33901,FORT MYERS,FL,26.620403,-81.8725,LEE 33902,FORT MYERS,FL,26.6439,-81.8727,LEE 33904,CAPE CORAL,FL,26.57746,-81.952243,LEE 33905,FORT MYERS,FL,26.676472,-81.785341,LEE 33906,FORT MYERS,FL,26.5932,-81.8578,LEE 33907,FORT MYERS,FL,26.568057,-81.873558,LEE 33908,FORT MYERS,FL,26.502518,-81.927589,LEE 33909,CAPE CORAL,FL,26.680276,-81.958909,LEE 33910,CAPE CORAL,FL,26.627778,-81.946667,LEE 33911,FORT MYERS,FL,26.6402,-81.8725,LEE 33912,FORT MYERS,FL,26.49722,-81.824554,LEE 33913,FORT MYERS,FL,26.522808,-81.706469,LEE 33914,CAPE CORAL,FL,26.56971,-81.990915,LEE 33915,CAPE CORAL,FL,26.5625,-81.949722,LEE 33916,FORT MYERS,FL,26.646595,-81.842946,LEE 33919,FORT MYERS,FL,26.554159,-81.900587,LEE 33936,LEHIGH ACRES,FL,26.615302,-81.61046,LEE 33948,PORT CHARLOTTE,FL,26.98268,-82.141173,CHARLOTTE 33949,PORT CHARLOTTE,FL,26.975833,-82.090833,CHARLOTTE 33952,PORT CHARLOTTE,FL,26.990475,-82.096372,CHARLOTTE 33953,PORT CHARLOTTE,FL,27.004008,-82.211743,CHARLOTTE 33954,PORT CHARLOTTE,FL,27.022815,-82.110782,CHARLOTTE 33965,FORT MYERS,FL,26.4737,-81.9397,LEE 33966,FORT MYERS,FL,26.583,-81.8339,LEE 33967,FORT MYERS,FL,26.4725,-81.8122,LEE 33970,LEHIGH ACRES,FL,26.625,-81.625,LEE 33971,LEHIGH ACRES,FL,26.602252,-81.665822,LEE 33972,LEHIGH ACRES,FL,26.6436,-81.6051,LEE 33973,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33974,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33976,LEHIGH ACRES,FL,26.6253497,-81.6248026,LEE 33980,PORT CHARLOTTE,FL,26.983969,-82.058886,CHARLOTTE 33981,PORT CHARLOTTE,FL,26.937925,-82.238774,CHARLOTTE 33990,CAPE CORAL,FL,26.630893,-81.945967,LEE 33991,CAPE CORAL,FL,26.628881,-82.006703,LEE 33993,CAPE CORAL,FL,26.629444,-82.071111,LEE 33994,FORT MYERS,FL,26.6734,-81.8175,LEE 34101,NAPLES,FL,26.1377,-81.7966,COLLIER 34102,NAPLES,FL,26.1427,-81.7974,COLLIER 34103,NAPLES,FL,26.1925,-81.8022,COLLIER 34104,NAPLES,FL,26.1515,-81.7407,COLLIER 34105,NAPLES,FL,26.1932,-81.7642,COLLIER 34106,NAPLES,FL,26.1377,-81.7966,COLLIER 34108,NAPLES,FL,26.2424,-81.8051,COLLIER 34109,NAPLES,FL,26.243,-81.7674,COLLIER 34110,NAPLES,FL,26.2922,-81.7812,COLLIER 34112,NAPLES,FL,26.1232,-81.7471,COLLIER 34113,NAPLES,FL,26.0791,-81.716,COLLIER 34114,NAPLES,FL,26.0374,-81.6448,COLLIER 34116,NAPLES,FL,26.1837,-81.7071,COLLIER 34117,NAPLES,FL,26.1335,-81.5508,COLLIER 34119,NAPLES,FL,26.2611,-81.7211,COLLIER 34120,NAPLES,FL,26.2909,-81.5996,COLLIER 34201,BRADENTON,FL,27.502778,-82.513889,MANATEE 34202,BRADENTON,FL,27.46521,-82.431487,MANATEE 34203,BRADENTON,FL,27.444871,-82.5404,MANATEE 34204,BRADENTON,FL,27.4462,-82.511,MANATEE 34205,BRADENTON,FL,27.480896,-82.584733,MANATEE 34206,BRADENTON,FL,27.4952,-82.5709,MANATEE 34207,BRADENTON,FL,27.439663,-82.580627,MANATEE 34208,BRADENTON,FL,27.485881,-82.536961,MANATEE 34209,BRADENTON,FL,27.487909,-82.627631,MANATEE 34210,BRADENTON,FL,27.454393,-82.635752,MANATEE 34211,BRADENTON,FL,27.4438,-82.3817,MANATEE 34212,BRADENTON,FL,27.5007,-82.4255,MANATEE 34230,SARASOTA,FL,27.3348,-82.5375,SARASOTA 34231,SARASOTA,FL,27.26757,-82.513793,SARASOTA 34232,SARASOTA,FL,27.320056,-82.475709,SARASOTA 34233,SARASOTA,FL,27.286614,-82.47698,SARASOTA 34234,SARASOTA,FL,27.365355,-82.535182,SARASOTA 34235,SARASOTA,FL,27.367162,-82.484759,SARASOTA 34236,SARASOTA,FL,27.331588,-82.548624,SARASOTA 34237,SARASOTA,FL,27.336915,-82.512778,SARASOTA 34238,SARASOTA,FL,27.243834,-82.482898,SARASOTA 34239,SARASOTA,FL,27.311137,-82.519545,SARASOTA 34240,SARASOTA,FL,27.32765,-82.385594,SARASOTA 34241,SARASOTA,FL,27.282179,-82.418112,SARASOTA 34242,SARASOTA,FL,27.266025,-82.546932,SARASOTA 34243,SARASOTA,FL,27.407235,-82.530299,MANATEE 34260,SARASOTA,FL,27.421667,-82.540278,MANATEE 34276,SARASOTA,FL,27.3361,-82.5308,SARASOTA 34277,SARASOTA,FL,27.3027,-82.5293,SARASOTA 34278,SARASOTA,FL,27.324722,-82.491389,SARASOTA 34280,BRADENTON,FL,27.4994,-82.6364,MANATEE 34281,BRADENTON,FL,27.4401,-82.5827,MANATEE 34282,BRADENTON,FL,27.4401,-82.5827,MANATEE 34286,NORTH PORT,FL,27.0781,-82.1735,SARASOTA 34287,NORTH PORT,FL,27.047839,-82.241616,SARASOTA 34288,NORTH PORT,FL,27.0516,-82.1208,SARASOTA 34289,NORTH PORT,FL,27.0854,-82.1537,SARASOTA 34290,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34291,NORTH PORT,FL,27.044224,-82.2359254,SARASOTA 34470,OCALA,FL,29.1981,-82.0974,MARION 34471,OCALA,FL,29.1703,-82.1015,MARION 34472,OCALA,FL,29.1166,-82.0181,MARION 34473,OCALA,FL,29.0043,-82.1956,MARION 34474,OCALA,FL,29.1623,-82.1753,MARION 34475,OCALA,FL,29.2189,-82.1546,MARION 34476,OCALA,FL,29.0788,-82.2129,MARION 34477,OCALA,FL,29.1869,-82.1402,MARION 34478,OCALA,FL,29.1869,-82.1402,MARION 34479,OCALA,FL,29.2397,-82.1097,MARION 34480,OCALA,FL,29.1172,-82.0854,MARION 34481,OCALA,FL,29.1175,-82.3149,MARION 34482,OCALA,FL,29.2302,-82.2487,MARION 34483,OCALA,FL,29.1541,-82.1937,MARION 34601,BROOKSVILLE,FL,28.565805,-82.373674,HERNANDO 34602,BROOKSVILLE,FL,28.511167,-82.290545,HERNANDO 34603,BROOKSVILLE,FL,28.5562,-82.3862,HERNANDO 34604,BROOKSVILLE,FL,28.4766,-82.4528,HERNANDO 34605,BROOKSVILLE,FL,28.555,-82.388,HERNANDO 34606,SPRING HILL,FL,28.46551,-82.598084,HERNANDO 34607,SPRING HILL,FL,28.506546,-82.626671,HERNANDO 34608,SPRING HILL,FL,28.479696,-82.556206,HERNANDO 34609,SPRING HILL,FL,28.477611,-82.499896,HERNANDO 34610,SPRING HILL,FL,28.405084,-82.530148,PASCO 34611,SPRING HILL,FL,28.4859,-82.5832,HERNANDO 34613,BROOKSVILLE,FL,28.546558,-82.521286,HERNANDO 34614,BROOKSVILLE,FL,28.662244,-82.523613,HERNANDO 34741,KISSIMMEE,FL,28.305056,-81.424208,OSCEOLA 34742,KISSIMMEE,FL,28.2916,-81.4077,OSCEOLA 34743,KISSIMMEE,FL,28.329656,-81.356044,OSCEOLA 34744,KISSIMMEE,FL,28.307807,-81.368122,OSCEOLA 34745,KISSIMMEE,FL,28.3229,-81.3911,OSCEOLA 34746,KISSIMMEE,FL,28.26796,-81.467478,OSCEOLA 34747,KISSIMMEE,FL,28.325,-81.533333,OSCEOLA 34758,KISSIMMEE,FL,28.198436,-81.487014,OSCEOLA 34759,KISSIMMEE,FL,28.124786,-81.458984,POLK 34945,FORT PIERCE,FL,27.438233,-80.443963,SAINT LUCIE 34946,FORT PIERCE,FL,27.50077,-80.35996,SAINT LUCIE 34947,FORT PIERCE,FL,27.449281,-80.359185,SAINT LUCIE 34948,FORT PIERCE,FL,27.5147,-80.422,SAINT LUCIE 34949,FORT PIERCE,FL,27.389594,-80.261468,SAINT LUCIE 34950,FORT PIERCE,FL,27.448567,-80.3385,SAINT LUCIE 34951,FORT PIERCE,FL,27.539097,-80.405195,SAINT LUCIE 34952,PORT SAINT LUCIE,FL,27.288895,-80.297971,SAINT LUCIE 34953,PORT SAINT LUCIE,FL,27.262506,-80.379323,SAINT LUCIE 34954,FORT PIERCE,FL,27.4467,-80.3419,SAINT LUCIE 34979,FORT PIERCE,FL,27.4463,-80.3258,SAINT LUCIE 34981,FORT PIERCE,FL,27.404882,-80.362257,SAINT LUCIE 34982,FORT PIERCE,FL,27.390764,-80.324633,SAINT LUCIE 34983,PORT SAINT LUCIE,FL,27.309444,-80.345029,SAINT LUCIE 34984,PORT SAINT LUCIE,FL,27.265476,-80.338936,SAINT LUCIE 34985,PORT SAINT LUCIE,FL,27.293611,-80.350556,SAINT LUCIE 34986,PORT SAINT LUCIE,FL,27.32148,-80.403045,SAINT LUCIE 34987,PORT SAINT LUCIE,FL,27.260595,-80.477052,SAINT LUCIE 34988,PORT SAINT LUCIE,FL,27.323233,-80.51726,SAINT LUCIE 35201,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35202,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35203,BIRMINGHAM,AL,33.520994,-86.806626,JEFFERSON 35204,BIRMINGHAM,AL,33.51795,-86.837198,JEFFERSON 35205,BIRMINGHAM,AL,33.495144,-86.805937,JEFFERSON 35206,BIRMINGHAM,AL,33.567797,-86.719854,JEFFERSON 35207,BIRMINGHAM,AL,33.559383,-86.815344,JEFFERSON 35208,BIRMINGHAM,AL,33.497658,-86.879884,JEFFERSON 35209,BIRMINGHAM,AL,33.469624,-86.806738,JEFFERSON 35210,BIRMINGHAM,AL,33.532797,-86.685697,JEFFERSON 35211,BIRMINGHAM,AL,33.481565,-86.85904,JEFFERSON 35212,BIRMINGHAM,AL,33.540883,-86.749524,JEFFERSON 35213,BIRMINGHAM,AL,33.508195,-86.742108,JEFFERSON 35214,BIRMINGHAM,AL,33.555445,-86.886989,JEFFERSON 35215,BIRMINGHAM,AL,33.635447,-86.693197,JEFFERSON 35216,BIRMINGHAM,AL,33.41531,-86.790425,JEFFERSON 35217,BIRMINGHAM,AL,33.5887,-86.764995,JEFFERSON 35218,BIRMINGHAM,AL,33.505972,-86.892993,JEFFERSON 35219,BIRMINGHAM,AL,33.4735,-86.8259,JEFFERSON 35220,BIRMINGHAM,AL,33.6464,-86.6816,JEFFERSON 35221,BIRMINGHAM,AL,33.452316,-86.893493,JEFFERSON 35222,BIRMINGHAM,AL,33.521859,-86.766579,JEFFERSON 35223,BIRMINGHAM,AL,33.488726,-86.736584,JEFFERSON 35224,BIRMINGHAM,AL,33.519126,-86.934193,JEFFERSON 35225,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35226,BIRMINGHAM,AL,33.403675,-86.831257,JEFFERSON 35228,BIRMINGHAM,AL,33.462446,-86.914703,JEFFERSON 35229,BIRMINGHAM,AL,33.4633,-86.79,JEFFERSON 35230,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35231,BIRMINGHAM,AL,33.564,-86.8953,JEFFERSON 35232,BIRMINGHAM,AL,33.5375,-86.7564,JEFFERSON 35233,BIRMINGHAM,AL,33.506161,-86.800257,JEFFERSON 35234,BIRMINGHAM,AL,33.53775,-86.80685,JEFFERSON 35235,BIRMINGHAM,AL,33.618045,-86.661051,JEFFERSON 35236,BIRMINGHAM,AL,33.3733,-86.8104,JEFFERSON 35237,BIRMINGHAM,AL,33.5167,-86.8071,JEFFERSON 35238,BIRMINGHAM,AL,33.4144,-86.6753,JEFFERSON 35240,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35242,BIRMINGHAM,AL,33.401559,-86.705511,SHELBY 35243,BIRMINGHAM,AL,33.446053,-86.743676,JEFFERSON 35244,BIRMINGHAM,AL,33.371776,-86.776381,JEFFERSON 35245,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35246,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35249,BIRMINGHAM,AL,33.5055,-86.8015,JEFFERSON 35253,BIRMINGHAM,AL,33.4848,-86.7737,JEFFERSON 35254,BIRMINGHAM,AL,33.5129,-86.8537,JEFFERSON 35255,BIRMINGHAM,AL,33.4991,-86.7985,JEFFERSON 35259,BIRMINGHAM,AL,33.4828,-86.7918,JEFFERSON 35260,BIRMINGHAM,AL,33.4131,-86.8471,JEFFERSON 35261,BIRMINGHAM,AL,33.5847,-86.7038,JEFFERSON 35263,BIRMINGHAM,AL,33.5311,-86.7834,JEFFERSON 35266,BIRMINGHAM,AL,33.4444,-86.7908,JEFFERSON 35277,BIRMINGHAM,AL,33.4429,-86.739,JEFFERSON 35278,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35279,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35280,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35281,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35282,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35283,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35285,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35286,BIRMINGHAM,AL,33.423,-86.7866,JEFFERSON 35287,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35288,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35289,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35290,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35291,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35292,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35293,BIRMINGHAM,AL,33.4641,-86.813,JEFFERSON 35294,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35295,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35296,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35297,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35298,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35299,BIRMINGHAM,AL,33.519,-86.8014,JEFFERSON 35401,TUSCALOOSA,AL,33.196891,-87.562666,TUSCALOOSA 35402,TUSCALOOSA,AL,33.147,-87.6128,TUSCALOOSA 35403,TUSCALOOSA,AL,33.2029,-87.5621,TUSCALOOSA 35404,TUSCALOOSA,AL,33.210914,-87.488079,TUSCALOOSA 35405,TUSCALOOSA,AL,33.161704,-87.514435,TUSCALOOSA 35406,TUSCALOOSA,AL,33.272174,-87.536035,TUSCALOOSA 35407,TUSCALOOSA,AL,33.1681,-87.5216,TUSCALOOSA 35485,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35486,TUSCALOOSA,AL,33.2097,-87.5691,TUSCALOOSA 35487,TUSCALOOSA,AL,33.2177,-87.5455,TUSCALOOSA 35801,HUNTSVILLE,AL,34.726866,-86.567318,MADISON 35802,HUNTSVILLE,AL,34.667922,-86.560347,MADISON 35803,HUNTSVILLE,AL,34.620506,-86.55096,MADISON 35804,HUNTSVILLE,AL,34.7277,-86.5926,MADISON 35805,HUNTSVILLE,AL,34.705943,-86.616493,MADISON 35806,HUNTSVILLE,AL,34.744765,-86.670411,MADISON 35807,HUNTSVILLE,AL,34.7197,-86.6148,MADISON 35808,HUNTSVILLE,AL,34.684525,-86.653821,MADISON 35809,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35810,HUNTSVILLE,AL,34.778378,-86.609063,MADISON 35811,HUNTSVILLE,AL,34.778949,-86.543786,MADISON 35812,HUNTSVILLE,AL,34.7953,-86.706,MADISON 35813,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35814,HUNTSVILLE,AL,34.7367,-86.6269,MADISON 35815,HUNTSVILLE,AL,34.7267,-86.5414,MADISON 35816,HUNTSVILLE,AL,34.738864,-86.624948,MADISON 35824,HUNTSVILLE,AL,34.658321,-86.729486,MADISON 35893,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35894,HUNTSVILLE,AL,34.6451,-86.7533,MADISON 35895,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35896,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35897,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35898,HUNTSVILLE,AL,34.6347,-86.6503,MADISON 35899,HUNTSVILLE,AL,34.7302,-86.5861,MADISON 35901,GADSDEN,AL,33.997248,-86.010279,ETOWAH 35902,GADSDEN,AL,34.0747,-85.9352,ETOWAH 35903,GADSDEN,AL,33.997057,-85.928724,ETOWAH 35904,GADSDEN,AL,34.021694,-86.049479,ETOWAH 35905,GADSDEN,AL,33.956787,-85.927586,ETOWAH 35906,GADSDEN,AL,33.9427,-86.0675,ETOWAH 35907,GADSDEN,AL,33.9045,-86.026,ETOWAH 36101,MONTGOMERY,AL,32.3743,-86.3118,MONTGOMERY 36102,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36103,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36104,MONTGOMERY,AL,32.373037,-86.308129,MONTGOMERY 36105,MONTGOMERY,AL,32.32573,-86.310449,MONTGOMERY 36106,MONTGOMERY,AL,32.354268,-86.267278,MONTGOMERY 36107,MONTGOMERY,AL,32.380405,-86.279885,MONTGOMERY 36108,MONTGOMERY,AL,32.341682,-86.352904,MONTGOMERY 36109,MONTGOMERY,AL,32.383443,-86.243394,MONTGOMERY 36110,MONTGOMERY,AL,32.421686,-86.274997,MONTGOMERY 36111,MONTGOMERY,AL,32.337363,-86.271543,MONTGOMERY 36112,MONTGOMERY,AL,32.378611,-86.346944,MONTGOMERY 36113,MONTGOMERY,AL,32.388133,-86.355848,MONTGOMERY 36114,MONTGOMERY,AL,32.406667,-86.248056,MONTGOMERY 36115,MONTGOMERY,AL,32.406814,-86.247327,MONTGOMERY 36116,MONTGOMERY,AL,32.312943,-86.242056,MONTGOMERY 36117,MONTGOMERY,AL,32.373568,-86.183299,MONTGOMERY 36118,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36119,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36120,MONTGOMERY,AL,32.3104,-86.2362,MONTGOMERY 36121,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36123,MONTGOMERY,AL,32.3494,-86.2212,MONTGOMERY 36124,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36125,MONTGOMERY,AL,32.3134,-86.3214,MONTGOMERY 36130,MONTGOMERY,AL,32.378,-86.2982,MONTGOMERY 36131,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36132,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36133,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36134,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36135,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36140,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36141,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36142,MONTGOMERY,AL,32.3666,-86.3,MONTGOMERY 36177,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36191,MONTGOMERY,AL,32.2289,-86.1893,MONTGOMERY 36201,ANNISTON,AL,33.653896,-85.838152,CALHOUN 36202,ANNISTON,AL,33.6584,-85.8268,CALHOUN 36204,ANNISTON,AL,33.6853,-85.8231,CALHOUN 36205,ANNISTON,AL,33.710168,-85.801467,CALHOUN 36206,ANNISTON,AL,33.719124,-85.838904,CALHOUN 36207,ANNISTON,AL,33.6589,-85.761,CALHOUN 36210,ANNISTON,AL,33.6485,-85.9163,CALHOUN 36601,MOBILE,AL,30.6959,-88.0434,MOBILE 36602,MOBILE,AL,30.688828,-88.045308,MOBILE 36603,MOBILE,AL,30.692141,-88.05622,MOBILE 36604,MOBILE,AL,30.681963,-88.067804,MOBILE 36605,MOBILE,AL,30.634117,-88.084646,MOBILE 36606,MOBILE,AL,30.672899,-88.100909,MOBILE 36607,MOBILE,AL,30.697486,-88.1029,MOBILE 36608,MOBILE,AL,30.69636,-88.187784,MOBILE 36609,MOBILE,AL,30.660527,-88.161806,MOBILE 36610,MOBILE,AL,30.737846,-88.083761,MOBILE 36611,MOBILE,AL,30.766821,-88.084973,MOBILE 36612,MOBILE,AL,30.751844,-88.11311,MOBILE 36615,MOBILE,AL,30.631199,-88.068871,MOBILE 36616,MOBILE,AL,30.6941,-88.043,MOBILE 36617,MOBILE,AL,30.714522,-88.091796,MOBILE 36618,MOBILE,AL,30.732178,-88.175753,MOBILE 36619,MOBILE,AL,30.592803,-88.194645,MOBILE 36621,MOBILE,AL,30.6959,-88.0434,MOBILE 36622,MOBILE,AL,30.6959,-88.0434,MOBILE 36625,MOBILE,AL,30.6959,-88.0434,MOBILE 36628,MOBILE,AL,30.6959,-88.0434,MOBILE 36630,MOBILE,AL,30.6959,-88.0434,MOBILE 36633,MOBILE,AL,30.6959,-88.0434,MOBILE 36640,MOBILE,AL,30.6901,-88.0568,MOBILE 36641,MOBILE,AL,30.6901,-88.0568,MOBILE 36644,MOBILE,AL,30.6925,-88.0432,MOBILE 36652,MOBILE,AL,30.6959,-88.0434,MOBILE 36660,MOBILE,AL,30.675,-88.0867,MOBILE 36663,MOBILE,AL,30.8179,-88.1926,MOBILE 36670,MOBILE,AL,30.6954,-88.1059,MOBILE 36671,MOBILE,AL,30.7753,-88.0791,MOBILE 36675,MOBILE,AL,30.6941,-88.043,MOBILE 36685,MOBILE,AL,30.6941,-88.043,MOBILE 36688,MOBILE,AL,30.6966,-88.1741,MOBILE 36689,MOBILE,AL,30.6893,-88.1731,MOBILE 36690,MOBILE,AL,30.6959,-88.0434,MOBILE 36691,MOBILE,AL,30.6267,-88.1499,MOBILE 36693,MOBILE,AL,30.631076,-88.158843,MOBILE 36695,MOBILE,AL,30.647431,-88.229245,MOBILE 37127,MURFREESBORO,TN,35.7913,-86.357,RUTHERFORD 37128,MURFREESBORO,TN,35.8209,-86.4537,RUTHERFORD 37129,MURFREESBORO,TN,35.871019,-86.41809,RUTHERFORD 37130,MURFREESBORO,TN,35.847792,-86.364675,RUTHERFORD 37131,MURFREESBORO,TN,35.8911,-86.3822,RUTHERFORD 37132,MURFREESBORO,TN,35.8475,-86.3625,RUTHERFORD 37133,MURFREESBORO,TN,35.8369,-86.393,RUTHERFORD 37201,NASHVILLE,TN,36.167028,-86.778441,DAVIDSON 37202,NASHVILLE,TN,36.158,-86.7837,DAVIDSON 37203,NASHVILLE,TN,36.146802,-86.793922,DAVIDSON 37204,NASHVILLE,TN,36.114628,-86.781808,DAVIDSON 37205,NASHVILLE,TN,36.111432,-86.868954,DAVIDSON 37206,NASHVILLE,TN,36.179813,-86.741106,DAVIDSON 37207,NASHVILLE,TN,36.2195,-86.774008,DAVIDSON 37208,NASHVILLE,TN,36.176196,-86.807563,DAVIDSON 37209,NASHVILLE,TN,36.154592,-86.860212,DAVIDSON 37210,NASHVILLE,TN,36.137904,-86.741042,DAVIDSON 37211,NASHVILLE,TN,36.072486,-86.724038,DAVIDSON 37212,NASHVILLE,TN,36.133681,-86.800555,DAVIDSON 37213,NASHVILLE,TN,36.165512,-86.760556,DAVIDSON 37214,NASHVILLE,TN,36.163339,-86.660854,DAVIDSON 37215,NASHVILLE,TN,36.098584,-86.821917,DAVIDSON 37216,NASHVILLE,TN,36.212491,-86.725687,DAVIDSON 37217,NASHVILLE,TN,36.10585,-86.666585,DAVIDSON 37218,NASHVILLE,TN,36.207062,-86.845583,DAVIDSON 37219,NASHVILLE,TN,36.167768,-86.783676,DAVIDSON 37220,NASHVILLE,TN,36.064139,-86.769654,DAVIDSON 37221,NASHVILLE,TN,36.071512,-86.943674,DAVIDSON 37222,NASHVILLE,TN,36.0687,-86.7255,DAVIDSON 37224,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37227,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37228,NASHVILLE,TN,36.190145,-86.805264,DAVIDSON 37229,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37230,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37232,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37234,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37235,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37236,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37237,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37238,NASHVILLE,TN,36.1656,-86.7803,DAVIDSON 37240,NASHVILLE,TN,36.1491,-86.8035,DAVIDSON 37241,NASHVILLE,TN,36.1089,-86.672,DAVIDSON 37242,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37243,NASHVILLE,TN,36.1687,-86.7845,DAVIDSON 37244,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37245,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37246,NASHVILLE,TN,36.1585,-86.79,DAVIDSON 37247,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37248,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37249,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37250,NASHVILLE,TN,36.1658,-86.7844,DAVIDSON 37401,CHATTANOOGA,TN,35.0455,-85.3081,HAMILTON 37402,CHATTANOOGA,TN,35.046288,-85.316126,HAMILTON 37403,CHATTANOOGA,TN,35.045045,-85.296516,HAMILTON 37404,CHATTANOOGA,TN,35.030634,-85.272229,HAMILTON 37405,CHATTANOOGA,TN,35.076801,-85.308224,HAMILTON 37406,CHATTANOOGA,TN,35.061446,-85.247839,HAMILTON 37407,CHATTANOOGA,TN,35.002361,-85.284913,HAMILTON 37408,CHATTANOOGA,TN,35.029236,-85.306809,HAMILTON 37409,CHATTANOOGA,TN,34.99809,-85.331016,HAMILTON 37410,CHATTANOOGA,TN,35.001787,-85.313762,HAMILTON 37411,CHATTANOOGA,TN,35.02706,-85.235583,HAMILTON 37412,CHATTANOOGA,TN,34.996726,-85.237957,HAMILTON 37414,CHATTANOOGA,TN,35.0123,-85.2267,HAMILTON 37415,CHATTANOOGA,TN,35.117668,-85.28633,HAMILTON 37416,CHATTANOOGA,TN,35.094246,-85.175656,HAMILTON 37419,CHATTANOOGA,TN,35.033092,-85.368698,HAMILTON 37421,CHATTANOOGA,TN,35.024986,-85.14594,HAMILTON 37422,CHATTANOOGA,TN,35.0537,-85.1893,HAMILTON 37424,CHATTANOOGA,TN,35.0455,-85.3097,HAMILTON 37450,CHATTANOOGA,TN,35.0489,-85.3116,HAMILTON 37501,MEMPHIS,TN,35.0337,-89.9343,SHELBY 37544,MEMPHIS,TN,35.1495,-90.049,SHELBY 37601,JOHNSON CITY,TN,36.333872,-82.340775,WASHINGTON 37602,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37604,JOHNSON CITY,TN,36.310744,-82.381042,WASHINGTON 37605,JOHNSON CITY,TN,36.3133,-82.3536,WASHINGTON 37614,JOHNSON CITY,TN,36.3027,-82.3681,WASHINGTON 37615,JOHNSON CITY,TN,36.41006,-82.447128,WASHINGTON 37660,KINGSPORT,TN,36.552766,-82.554034,SULLIVAN 37662,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37663,KINGSPORT,TN,36.4693,-82.4948,SULLIVAN 37664,KINGSPORT,TN,36.520834,-82.516835,SULLIVAN 37665,KINGSPORT,TN,36.578305,-82.569906,SULLIVAN 37669,KINGSPORT,TN,36.5483,-82.5619,SULLIVAN 37901,KNOXVILLE,TN,35.9609,-83.9189,KNOX 37902,KNOXVILLE,TN,35.962516,-83.920915,KNOX 37909,KNOXVILLE,TN,35.945978,-84.023501,KNOX 37912,KNOXVILLE,TN,36.005492,-83.977317,KNOX 37914,KNOXVILLE,TN,35.991755,-83.849624,KNOX 37915,KNOXVILLE,TN,35.972074,-83.901005,KNOX 37916,KNOXVILLE,TN,35.955584,-83.933576,KNOX 37917,KNOXVILLE,TN,35.99803,-83.915216,KNOX 37918,KNOXVILLE,TN,36.050054,-83.922558,KNOX 37919,KNOXVILLE,TN,35.924385,-84.001468,KNOX 37920,KNOXVILLE,TN,35.922976,-83.879793,KNOX 37921,KNOXVILLE,TN,35.976297,-83.982894,KNOX 37922,KNOXVILLE,TN,35.877697,-84.127332,KNOX 37923,KNOXVILLE,TN,35.933127,-84.076116,KNOX 37924,KNOXVILLE,TN,36.032044,-83.80207,KNOX 37927,KNOXVILLE,TN,35.9956,-83.9225,KNOX 37928,KNOXVILLE,TN,36.0357,-83.9309,KNOX 37929,KNOXVILLE,TN,35.9622,-83.9164,KNOX 37930,KNOXVILLE,TN,35.917,-84.0741,KNOX 37931,KNOXVILLE,TN,35.992363,-84.120072,KNOX 37932,KNOXVILLE,TN,35.923619,-84.169591,KNOX 37933,KNOXVILLE,TN,35.884444,-84.153611,KNOX 37934,KNOXVILLE,TN,35.876913,-84.176448,KNOX 37938,KNOXVILLE,TN,36.105473,-83.945968,KNOX 37939,KNOXVILLE,TN,35.9365,-83.9936,KNOX 37940,KNOXVILLE,TN,35.9081,-83.8654,KNOX 37950,KNOXVILLE,TN,35.945,-84.015,KNOX 37990,KNOXVILLE,TN,35.8655,-84.1267,KNOX 37995,KNOXVILLE,TN,35.945,-84.015,KNOX 37996,KNOXVILLE,TN,35.9529,-83.9293,KNOX 37997,KNOXVILLE,TN,35.945,-84.015,KNOX 37998,KNOXVILLE,TN,35.945,-84.015,KNOX 38101,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38103,MEMPHIS,TN,35.144001,-90.047995,SHELBY 38104,MEMPHIS,TN,35.133393,-90.004625,SHELBY 38105,MEMPHIS,TN,35.149748,-90.033042,SHELBY 38106,MEMPHIS,TN,35.102124,-90.032997,SHELBY 38107,MEMPHIS,TN,35.183136,-90.020077,SHELBY 38108,MEMPHIS,TN,35.178655,-89.968238,SHELBY 38109,MEMPHIS,TN,35.042538,-90.073238,SHELBY 38110,MEMPHIS,TN,35.0519,-89.941,SHELBY 38111,MEMPHIS,TN,35.107573,-89.945745,SHELBY 38112,MEMPHIS,TN,35.148277,-89.972895,SHELBY 38113,MEMPHIS,TN,35.111201,-90.079426,SHELBY 38114,MEMPHIS,TN,35.098094,-89.98254,SHELBY 38115,MEMPHIS,TN,35.054405,-89.86082,SHELBY 38116,MEMPHIS,TN,35.030298,-90.012314,SHELBY 38117,MEMPHIS,TN,35.112357,-89.903367,SHELBY 38118,MEMPHIS,TN,35.051421,-89.926538,SHELBY 38119,MEMPHIS,TN,35.082101,-89.850142,SHELBY 38120,MEMPHIS,TN,35.120654,-89.865119,SHELBY 38122,MEMPHIS,TN,35.157166,-89.926844,SHELBY 38124,MEMPHIS,TN,35.1144,-89.9059,SHELBY 38125,MEMPHIS,TN,35.031249,-89.812357,SHELBY 38126,MEMPHIS,TN,35.125518,-90.042444,SHELBY 38127,MEMPHIS,TN,35.250982,-90.029623,SHELBY 38128,MEMPHIS,TN,35.221273,-89.941314,SHELBY 38130,MEMPHIS,TN,35.0248,-89.9803,SHELBY 38131,MEMPHIS,TN,35.0655,-90.003699,SHELBY 38132,MEMPHIS,TN,35.071967,-89.988627,SHELBY 38133,MEMPHIS,TN,35.205362,-89.803564,SHELBY 38134,MEMPHIS,TN,35.188639,-89.86409,SHELBY 38135,MEMPHIS,TN,35.232301,-89.850878,SHELBY 38136,MEMPHIS,TN,35.1325,-90.0565,SHELBY 38137,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38141,MEMPHIS,TN,35.023091,-89.84916,SHELBY 38142,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38145,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38147,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38148,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38150,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38151,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38152,MEMPHIS,TN,35.1195,-89.9372,SHELBY 38157,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38159,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38161,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38163,MEMPHIS,TN,35.1506,-90.0155,SHELBY 38165,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38166,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38167,MEMPHIS,TN,35.2103,-90.023,SHELBY 38168,MEMPHIS,TN,35.2266,-89.904,SHELBY 38173,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38174,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38175,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38177,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38181,MEMPHIS,TN,35.0519,-89.941,SHELBY 38182,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38184,MEMPHIS,TN,35.1494,-90.0488,SHELBY 38186,MEMPHIS,TN,35.0335,-90.0167,SHELBY 38187,MEMPHIS,TN,35.0785,-89.8447,SHELBY 38188,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38190,MEMPHIS,TN,35.0549,-90.0599,SHELBY 38193,MEMPHIS,TN,35.0465,-89.8663,SHELBY 38194,MEMPHIS,TN,35.0655,-89.9984,SHELBY 38197,MEMPHIS,TN,35.0997,-89.8694,SHELBY 38301,JACKSON,TN,35.610222,-88.814011,MADISON 38302,JACKSON,TN,35.6144,-88.8138,MADISON 38303,JACKSON,TN,35.6144,-88.8138,MADISON 38305,JACKSON,TN,35.682875,-88.828127,MADISON 38308,JACKSON,TN,35.6144,-88.8138,MADISON 38314,JACKSON,TN,35.5727,-88.8213,MADISON 39201,JACKSON,MS,32.293502,-90.186655,HINDS 39202,JACKSON,MS,32.314883,-90.178194,HINDS 39203,JACKSON,MS,32.308145,-90.202064,HINDS 39204,JACKSON,MS,32.283162,-90.230579,HINDS 39205,JACKSON,MS,32.2986,-90.1847,HINDS 39206,JACKSON,MS,32.369956,-90.173787,HINDS 39207,JACKSON,MS,32.2986,-90.1847,HINDS 39209,JACKSON,MS,32.318422,-90.244626,HINDS 39210,JACKSON,MS,32.3242,-90.1765,HINDS 39211,JACKSON,MS,32.373924,-90.129297,HINDS 39212,JACKSON,MS,32.24347,-90.261201,HINDS 39213,JACKSON,MS,32.355288,-90.217099,HINDS 39215,JACKSON,MS,32.2986,-90.1847,HINDS 39216,JACKSON,MS,32.338574,-90.170814,HINDS 39217,JACKSON,MS,32.2976,-90.209,HINDS 39225,JACKSON,MS,32.2986,-90.1847,HINDS 39235,JACKSON,MS,32.2986,-90.1847,HINDS 39236,JACKSON,MS,32.3628,-90.1459,HINDS 39250,JACKSON,MS,32.2986,-90.1847,HINDS 39269,JACKSON,MS,32.30085,-90.188503,HINDS 39271,JACKSON,MS,32.2986,-90.1847,HINDS 39282,JACKSON,MS,32.2539,-90.2501,HINDS 39283,JACKSON,MS,32.3661,-90.2246,HINDS 39284,JACKSON,MS,32.2725,-90.216,HINDS 39286,JACKSON,MS,32.3509,-90.1765,HINDS 39289,JACKSON,MS,32.3852,-90.2747,HINDS 39296,JACKSON,MS,32.3342,-90.1755,HINDS 39298,JACKSON,MS,32.2999,-90.1843,RANKIN 39301,MERIDIAN,MS,32.357441,-88.655973,LAUDERDALE 39302,MERIDIAN,MS,32.3656,-88.7007,LAUDERDALE 39303,MERIDIAN,MS,32.41,-88.6994,LAUDERDALE 39304,MERIDIAN,MS,32.3656,-88.7227,LAUDERDALE 39305,MERIDIAN,MS,32.440129,-88.678322,LAUDERDALE 39307,MERIDIAN,MS,32.373591,-88.743598,LAUDERDALE 39309,MERIDIAN,MS,32.5519,-88.585,LAUDERDALE 39401,HATTIESBURG,MS,31.314553,-89.306471,FORREST 39402,HATTIESBURG,MS,31.309753,-89.37751,FORREST 39403,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39404,HATTIESBURG,MS,31.3222,-89.3476,FORREST 39406,HATTIESBURG,MS,31.3282,-89.3303,FORREST 39407,HATTIESBURG,MS,31.3269,-89.2902,FORREST 39501,GULFPORT,MS,30.382556,-89.097618,HARRISON 39502,GULFPORT,MS,30.3672,-89.0927,HARRISON 39503,GULFPORT,MS,30.460105,-89.088552,HARRISON 39505,GULFPORT,MS,30.3672,-89.0927,HARRISON 39506,GULFPORT,MS,30.4756,-89.1444,HARRISON 39507,GULFPORT,MS,30.396248,-89.035347,HARRISON 39530,BILOXI,MS,30.403478,-88.897143,HARRISON 39531,BILOXI,MS,30.40334,-88.960499,HARRISON 39532,BILOXI,MS,30.452031,-88.918846,HARRISON 39533,BILOXI,MS,30.395,-88.8855,HARRISON 39534,BILOXI,MS,30.401389,-88.921389,HARRISON 39535,BILOXI,MS,30.4832,-89.1997,HARRISON 39701,COLUMBUS,MS,33.537699,-88.426194,LOWNDES 39702,COLUMBUS,MS,33.481175,-88.355387,LOWNDES 39703,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39704,COLUMBUS,MS,33.5379,-88.4351,LOWNDES 39705,COLUMBUS,MS,33.5694,-88.4305,LOWNDES 39710,COLUMBUS,MS,33.6298,-88.4468,LOWNDES 39901,ATLANTA,GA,33.8872,-84.2897,DEKALB 40201,LOUISVILLE,KY,38.2435,-85.7639,JEFFERSON 40202,LOUISVILLE,KY,38.250734,-85.747646,JEFFERSON 40203,LOUISVILLE,KY,38.245332,-85.762595,JEFFERSON 40204,LOUISVILLE,KY,38.236936,-85.724938,JEFFERSON 40205,LOUISVILLE,KY,38.22217,-85.688542,JEFFERSON 40206,LOUISVILLE,KY,38.256495,-85.697581,JEFFERSON 40207,LOUISVILLE,KY,38.257908,-85.649689,JEFFERSON 40208,LOUISVILLE,KY,38.219988,-85.764823,JEFFERSON 40209,LOUISVILLE,KY,38.190125,-85.751904,JEFFERSON 40210,LOUISVILLE,KY,38.230585,-85.790548,JEFFERSON 40211,LOUISVILLE,KY,38.241958,-85.81265,JEFFERSON 40212,LOUISVILLE,KY,38.265116,-85.804479,JEFFERSON 40213,LOUISVILLE,KY,38.183929,-85.710642,JEFFERSON 40214,LOUISVILLE,KY,38.159318,-85.778027,JEFFERSON 40215,LOUISVILLE,KY,38.191319,-85.784707,JEFFERSON 40216,LOUISVILLE,KY,38.186138,-85.831771,JEFFERSON 40217,LOUISVILLE,KY,38.21736,-85.740371,JEFFERSON 40218,LOUISVILLE,KY,38.191084,-85.654834,JEFFERSON 40219,LOUISVILLE,KY,38.141291,-85.680548,JEFFERSON 40220,LOUISVILLE,KY,38.21494,-85.624489,JEFFERSON 40221,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40222,LOUISVILLE,KY,38.263825,-85.611183,JEFFERSON 40223,LOUISVILLE,KY,38.253688,-85.561151,JEFFERSON 40224,LOUISVILLE,KY,38.2289,-85.575,JEFFERSON 40225,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40228,LOUISVILLE,KY,38.1392,-85.630967,JEFFERSON 40229,LOUISVILLE,KY,38.090655,-85.671889,JEFFERSON 40231,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40232,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40233,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40241,LOUISVILLE,KY,38.301509,-85.582421,JEFFERSON 40242,LOUISVILLE,KY,38.276858,-85.590224,JEFFERSON 40243,LOUISVILLE,KY,38.240115,-85.537381,JEFFERSON 40245,LOUISVILLE,KY,38.268273,-85.484461,JEFFERSON 40250,LOUISVILLE,KY,38.2164,-85.6236,JEFFERSON 40251,LOUISVILLE,KY,38.2497,-85.7974,JEFFERSON 40252,LOUISVILLE,KY,38.256667,-85.601667,JEFFERSON 40253,LOUISVILLE,KY,38.245278,-85.538889,JEFFERSON 40255,LOUISVILLE,KY,38.2237,-85.6868,JEFFERSON 40256,LOUISVILLE,KY,38.2,-85.822778,JEFFERSON 40257,LOUISVILLE,KY,38.252778,-85.655833,JEFFERSON 40258,LOUISVILLE,KY,38.142369,-85.862505,JEFFERSON 40259,LOUISVILLE,KY,38.141111,-85.687778,JEFFERSON 40261,LOUISVILLE,KY,38.1942,-85.6515,JEFFERSON 40266,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40268,LOUISVILLE,KY,38.1435,-85.8384,JEFFERSON 40269,LOUISVILLE,KY,38.1931,-85.5668,JEFFERSON 40270,LOUISVILLE,KY,38.111111,-85.870278,JEFFERSON 40272,LOUISVILLE,KY,38.097063,-85.858701,JEFFERSON 40280,LOUISVILLE,KY,38.2576,-85.7019,JEFFERSON 40281,LOUISVILLE,KY,38.144444,-85.866389,JEFFERSON 40282,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40283,LOUISVILLE,KY,38.1341,-85.8953,JEFFERSON 40285,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40287,LOUISVILLE,KY,38.1967,-85.6973,JEFFERSON 40289,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40290,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40291,LOUISVILLE,KY,38.15205,-85.594513,JEFFERSON 40292,LOUISVILLE,KY,38.2183,-85.7593,JEFFERSON 40293,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40294,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40295,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40296,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40297,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40298,LOUISVILLE,KY,38.2564,-85.7527,JEFFERSON 40299,LOUISVILLE,KY,38.188491,-85.568947,JEFFERSON 40502,LEXINGTON,KY,38.017394,-84.485423,FAYETTE 40503,LEXINGTON,KY,38.001002,-84.52821,FAYETTE 40504,LEXINGTON,KY,38.040628,-84.543325,FAYETTE 40505,LEXINGTON,KY,38.061201,-84.458338,FAYETTE 40506,LEXINGTON,KY,38.0244,-84.5047,FAYETTE 40507,LEXINGTON,KY,38.046385,-84.495289,FAYETTE 40508,LEXINGTON,KY,38.04754,-84.496435,FAYETTE 40509,LEXINGTON,KY,38.010166,-84.427419,FAYETTE 40510,LEXINGTON,KY,38.070211,-84.591046,FAYETTE 40511,LEXINGTON,KY,38.093233,-84.500671,FAYETTE 40512,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40513,LEXINGTON,KY,38.01388,-84.581522,FAYETTE 40514,LEXINGTON,KY,37.983291,-84.576667,FAYETTE 40515,LEXINGTON,KY,37.965102,-84.470751,FAYETTE 40516,LEXINGTON,KY,38.054355,-84.354802,FAYETTE 40517,LEXINGTON,KY,37.984864,-84.481588,FAYETTE 40522,LEXINGTON,KY,38.0196,-84.488,FAYETTE 40523,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40524,LEXINGTON,KY,37.9864,-84.5165,FAYETTE 40526,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40533,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40536,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40544,LEXINGTON,KY,38.039,-84.5525,FAYETTE 40546,LEXINGTON,KY,38.0271,-84.5044,FAYETTE 40550,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40555,LEXINGTON,KY,38.0491,-84.5002,FAYETTE 40574,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40575,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40576,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40577,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40578,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40579,LEXINGTON,KY,38.1375,-84.4698,FAYETTE 40580,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40581,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40582,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40583,LEXINGTON,KY,38.1362,-84.4728,FAYETTE 40588,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40591,LEXINGTON,KY,38.0469,-84.4951,FAYETTE 40598,LEXINGTON,KY,38.0494,-84.5004,FAYETTE 40601,FRANKFORT,KY,38.192831,-84.88061,FRANKLIN 40602,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40603,FRANKFORT,KY,38.2017,-84.8324,FRANKLIN 40604,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40618,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40619,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40620,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40621,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 40622,FRANKFORT,KY,38.2008,-84.8721,FRANKLIN 43085,COLUMBUS,OH,40.105155,-83.010069,FRANKLIN 43201,COLUMBUS,OH,39.995157,-83.004732,FRANKLIN 43202,COLUMBUS,OH,40.020084,-83.011842,FRANKLIN 43203,COLUMBUS,OH,39.971925,-82.969131,FRANKLIN 43204,COLUMBUS,OH,39.952333,-83.077999,FRANKLIN 43205,COLUMBUS,OH,39.956905,-82.964352,FRANKLIN 43206,COLUMBUS,OH,39.942639,-82.974845,FRANKLIN 43207,COLUMBUS,OH,39.904565,-82.970334,FRANKLIN 43209,COLUMBUS,OH,39.958999,-82.926595,FRANKLIN 43210,COLUMBUS,OH,40.002804,-83.016404,FRANKLIN 43211,COLUMBUS,OH,40.011792,-82.973196,FRANKLIN 43212,COLUMBUS,OH,39.987381,-83.045579,FRANKLIN 43213,COLUMBUS,OH,39.967146,-82.878275,FRANKLIN 43214,COLUMBUS,OH,40.053482,-83.01875,FRANKLIN 43215,COLUMBUS,OH,39.967106,-83.004383,FRANKLIN 43216,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43217,COLUMBUS,OH,39.806209,-82.947483,FRANKLIN 43218,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43219,COLUMBUS,OH,40.004394,-82.936459,FRANKLIN 43220,COLUMBUS,OH,40.049484,-83.066911,FRANKLIN 43221,COLUMBUS,OH,40.015431,-83.064592,FRANKLIN 43222,COLUMBUS,OH,39.957628,-83.031109,FRANKLIN 43223,COLUMBUS,OH,39.938753,-83.046344,FRANKLIN 43224,COLUMBUS,OH,40.042493,-82.968947,FRANKLIN 43226,COLUMBUS,OH,40.1035,-82.9866,FRANKLIN 43227,COLUMBUS,OH,39.944394,-82.890298,FRANKLIN 43228,COLUMBUS,OH,39.947876,-83.123858,FRANKLIN 43229,COLUMBUS,OH,40.083886,-82.972568,FRANKLIN 43230,COLUMBUS,OH,40.038458,-82.882429,FRANKLIN 43231,COLUMBUS,OH,40.080984,-82.938275,FRANKLIN 43232,COLUMBUS,OH,39.923024,-82.866432,FRANKLIN 43234,COLUMBUS,OH,40.1011,-83.0555,FRANKLIN 43235,COLUMBUS,OH,40.101271,-83.059287,FRANKLIN 43236,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43240,COLUMBUS,OH,40.1444,-82.9789,DELAWARE 43251,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43260,COLUMBUS,OH,39.9618,-83.0009,FRANKLIN 43265,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43266,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43268,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43270,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43271,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43272,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43279,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43287,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43291,COLUMBUS,OH,39.9611,-82.9988,FRANKLIN 43299,COLUMBUS,OH,40.0395,-82.8695,FRANKLIN 43601,TOLEDO,OH,41.642,-83.5438,LUCAS 43603,TOLEDO,OH,41.6497,-83.5341,LUCAS 43604,TOLEDO,OH,41.661415,-83.524949,LUCAS 43605,TOLEDO,OH,41.640701,-83.512341,LUCAS 43606,TOLEDO,OH,41.671213,-83.605992,LUCAS 43607,TOLEDO,OH,41.650417,-83.597419,LUCAS 43608,TOLEDO,OH,41.677908,-83.534359,LUCAS 43609,TOLEDO,OH,41.629761,-83.577282,LUCAS 43610,TOLEDO,OH,41.676693,-83.557303,LUCAS 43611,TOLEDO,OH,41.704507,-83.489203,LUCAS 43612,TOLEDO,OH,41.704567,-83.565622,LUCAS 43613,TOLEDO,OH,41.703913,-83.603397,LUCAS 43614,TOLEDO,OH,41.60279,-83.62917,LUCAS 43615,TOLEDO,OH,41.649197,-83.670583,LUCAS 43617,TOLEDO,OH,41.666765,-83.716967,LUCAS 43620,TOLEDO,OH,41.66536,-83.553602,LUCAS 43623,TOLEDO,OH,41.707968,-83.643408,LUCAS 43635,TOLEDO,OH,41.6615,-83.6861,LUCAS 43652,TOLEDO,OH,41.642,-83.5438,LUCAS 43654,TOLEDO,OH,41.642,-83.5438,WOOD 43656,TOLEDO,OH,41.7043,-83.6509,LUCAS 43657,TOLEDO,OH,41.642,-83.5438,LUCAS 43659,TOLEDO,OH,41.6465,-83.536,LUCAS 43660,TOLEDO,OH,41.642,-83.5438,LUCAS 43661,TOLEDO,OH,41.642,-83.5438,LUCAS 43666,TOLEDO,OH,41.642,-83.5438,LUCAS 43667,TOLEDO,OH,41.642,-83.5438,LUCAS 43681,TOLEDO,OH,41.642,-83.5438,LUCAS 43682,TOLEDO,OH,41.642,-83.5438,LUCAS 43697,TOLEDO,OH,41.642,-83.5438,LUCAS 43699,TOLEDO,OH,41.642,-83.5438,LUCAS 44101,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44102,CLEVELAND,OH,41.473508,-81.739791,CUYAHOGA 44103,CLEVELAND,OH,41.515726,-81.640475,CUYAHOGA 44104,CLEVELAND,OH,41.480924,-81.624502,CUYAHOGA 44105,CLEVELAND,OH,41.450912,-81.619002,CUYAHOGA 44106,CLEVELAND,OH,41.508359,-81.60757,CUYAHOGA 44108,CLEVELAND,OH,41.53492,-81.608974,CUYAHOGA 44109,CLEVELAND,OH,41.445768,-81.703315,CUYAHOGA 44110,CLEVELAND,OH,41.563557,-81.573276,CUYAHOGA 44111,CLEVELAND,OH,41.457066,-81.78435,CUYAHOGA 44112,CLEVELAND,OH,41.535517,-81.576262,CUYAHOGA 44113,CLEVELAND,OH,41.481648,-81.701848,CUYAHOGA 44114,CLEVELAND,OH,41.506351,-81.67425,CUYAHOGA 44115,CLEVELAND,OH,41.494574,-81.667009,CUYAHOGA 44118,CLEVELAND,OH,41.501213,-81.553945,CUYAHOGA 44119,CLEVELAND,OH,41.588238,-81.546759,CUYAHOGA 44120,CLEVELAND,OH,41.471433,-81.583911,CUYAHOGA 44121,CLEVELAND,OH,41.526019,-81.533758,CUYAHOGA 44124,CLEVELAND,OH,41.514349,-81.46801,CUYAHOGA 44125,CLEVELAND,OH,41.415792,-81.605385,CUYAHOGA 44126,CLEVELAND,OH,41.4433,-81.856381,CUYAHOGA 44127,CLEVELAND,OH,41.470125,-81.648999,CUYAHOGA 44128,CLEVELAND,OH,41.441565,-81.548574,CUYAHOGA 44129,CLEVELAND,OH,41.396474,-81.734604,CUYAHOGA 44130,CLEVELAND,OH,41.377178,-81.774858,CUYAHOGA 44134,CLEVELAND,OH,41.390764,-81.705726,CUYAHOGA 44135,CLEVELAND,OH,41.434177,-81.804433,CUYAHOGA 44143,CLEVELAND,OH,41.552195,-81.484715,CUYAHOGA 44144,CLEVELAND,OH,41.434419,-81.735222,CUYAHOGA 44178,CLEVELAND,OH,41.4994,-81.6955,CUYAHOGA 44181,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44185,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44188,CLEVELAND,OH,41.4017,-81.8266,CUYAHOGA 44189,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44190,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44191,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44192,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44193,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44194,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44195,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44197,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44198,CLEVELAND,OH,41.4918,-81.6757,CUYAHOGA 44199,CLEVELAND,OH,41.5047,-81.6911,CUYAHOGA 44301,AKRON,OH,41.044852,-81.520048,SUMMIT 44302,AKRON,OH,41.091988,-81.542015,SUMMIT 44303,AKRON,OH,41.102508,-81.538609,SUMMIT 44304,AKRON,OH,41.080808,-81.508526,SUMMIT 44305,AKRON,OH,41.076029,-81.464409,SUMMIT 44306,AKRON,OH,41.04791,-81.491554,SUMMIT 44307,AKRON,OH,41.069465,-81.548786,SUMMIT 44308,AKRON,OH,41.079576,-81.519363,SUMMIT 44309,AKRON,OH,41.0655,-81.5204,SUMMIT 44310,AKRON,OH,41.107547,-81.500586,SUMMIT 44311,AKRON,OH,41.063784,-81.520005,SUMMIT 44312,AKRON,OH,41.033442,-81.438528,SUMMIT 44313,AKRON,OH,41.121995,-81.568487,SUMMIT 44314,AKRON,OH,41.040774,-81.559825,SUMMIT 44315,AKRON,OH,41.0655,-81.5204,SUMMIT 44316,AKRON,OH,41.0655,-81.5204,SUMMIT 44317,AKRON,OH,41.0655,-81.5204,SUMMIT 44319,AKRON,OH,40.97912,-81.53468,SUMMIT 44320,AKRON,OH,41.083496,-81.56744,SUMMIT 44321,AKRON,OH,41.103139,-81.648045,SUMMIT 44322,AKRON,OH,41.0655,-81.5204,SUMMIT 44325,AKRON,OH,41.0748,-81.5165,SUMMIT 44326,AKRON,OH,41.0655,-81.5204,SUMMIT 44328,AKRON,OH,41.0758,-81.5206,SUMMIT 44333,AKRON,OH,41.146734,-81.62385,SUMMIT 44372,AKRON,OH,41.112,-81.5746,SUMMIT 44393,AKRON,OH,41.0655,-81.5204,SUMMIT 44396,AKRON,OH,41.0813,-81.5191,SUMMIT 44398,AKRON,OH,41.0655,-81.5204,SUMMIT 44399,AKRON,OH,41.0655,-81.5204,SUMMIT 44481,WARREN,OH,41.172426,-80.871806,TRUMBULL 44482,WARREN,OH,41.1742,-80.8702,TRUMBULL 44483,WARREN,OH,41.263878,-80.816448,TRUMBULL 44484,WARREN,OH,41.231819,-80.764243,TRUMBULL 44485,WARREN,OH,41.240511,-80.844136,TRUMBULL 44486,WARREN,OH,41.3004,-80.8436,TRUMBULL 44488,WARREN,OH,41.2375,-80.8162,TRUMBULL 44501,YOUNGSTOWN,OH,41.0986,-80.6474,MAHONING 44502,YOUNGSTOWN,OH,41.077366,-80.640905,MAHONING 44503,YOUNGSTOWN,OH,41.102016,-80.650007,MAHONING 44504,YOUNGSTOWN,OH,41.123686,-80.653887,MAHONING 44505,YOUNGSTOWN,OH,41.125748,-80.627748,MAHONING 44506,YOUNGSTOWN,OH,41.096045,-80.625916,MAHONING 44507,YOUNGSTOWN,OH,41.073236,-80.655336,MAHONING 44509,YOUNGSTOWN,OH,41.10498,-80.694463,MAHONING 44510,YOUNGSTOWN,OH,41.119714,-80.667204,MAHONING 44511,YOUNGSTOWN,OH,41.070402,-80.693098,MAHONING 44512,YOUNGSTOWN,OH,41.031985,-80.666629,MAHONING 44513,YOUNGSTOWN,OH,41.024167,-80.663056,MAHONING 44514,YOUNGSTOWN,OH,41.023258,-80.610254,MAHONING 44515,YOUNGSTOWN,OH,41.093903,-80.743966,MAHONING 44555,YOUNGSTOWN,OH,41.1073,-80.6513,MAHONING 44701,CANTON,OH,40.7962,-81.3768,STARK 44702,CANTON,OH,40.80267,-81.373946,STARK 44703,CANTON,OH,40.809791,-81.381439,STARK 44704,CANTON,OH,40.799076,-81.353701,STARK 44705,CANTON,OH,40.825866,-81.339903,STARK 44706,CANTON,OH,40.767959,-81.411903,STARK 44707,CANTON,OH,40.776885,-81.360407,STARK 44708,CANTON,OH,40.81196,-81.424116,STARK 44709,CANTON,OH,40.837227,-81.385947,STARK 44710,CANTON,OH,40.791107,-81.416946,STARK 44711,CANTON,OH,40.827,-81.3853,STARK 44712,CANTON,OH,40.827,-81.3853, 44714,CANTON,OH,40.827174,-81.360963,STARK 44718,CANTON,OH,40.85479,-81.448514,STARK 44721,CANTON,OH,40.883446,-81.33279,STARK 44735,CANTON,OH,40.8436,-81.4363,STARK 44750,CANTON,OH,40.827,-81.3853,STARK 44767,CANTON,OH,40.827,-81.3853,STARK 44799,CANTON,OH,40.827,-81.3853,STARK 44901,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 44902,MANSFIELD,OH,40.755937,-82.512269,RICHLAND 44903,MANSFIELD,OH,40.762258,-82.52538,RICHLAND 44904,MANSFIELD,OH,40.682568,-82.590605,RICHLAND 44905,MANSFIELD,OH,40.777173,-82.474609,RICHLAND 44906,MANSFIELD,OH,40.762679,-82.559295,RICHLAND 44907,MANSFIELD,OH,40.734483,-82.519833,RICHLAND 44999,MANSFIELD,OH,40.7633,-82.5138,RICHLAND 45011,HAMILTON,OH,39.405906,-84.522117,BUTLER 45012,HAMILTON,OH,39.3993,-84.5638,BUTLER 45013,HAMILTON,OH,39.40619,-84.606655,BUTLER 45015,HAMILTON,OH,39.367152,-84.551187,BUTLER 45025,HAMILTON,OH,39.3993,-84.5638,BUTLER 45026,HAMILTON,OH,39.3993,-84.5638,BUTLER 45201,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45202,CINCINNATI,OH,39.107225,-84.501956,HAMILTON 45203,CINCINNATI,OH,39.10754,-84.525684,HAMILTON 45204,CINCINNATI,OH,39.102498,-84.566794,HAMILTON 45205,CINCINNATI,OH,39.110439,-84.575672,HAMILTON 45206,CINCINNATI,OH,39.126916,-84.485258,HAMILTON 45207,CINCINNATI,OH,39.139747,-84.470621,HAMILTON 45208,CINCINNATI,OH,39.136082,-84.435474,HAMILTON 45209,CINCINNATI,OH,39.151578,-84.427833,HAMILTON 45211,CINCINNATI,OH,39.152401,-84.596714,HAMILTON 45212,CINCINNATI,OH,39.162505,-84.452765,HAMILTON 45213,CINCINNATI,OH,39.182905,-84.418701,HAMILTON 45214,CINCINNATI,OH,39.120642,-84.541442,HAMILTON 45215,CINCINNATI,OH,39.230063,-84.457168,HAMILTON 45216,CINCINNATI,OH,39.199183,-84.479232,HAMILTON 45217,CINCINNATI,OH,39.161715,-84.497424,HAMILTON 45218,CINCINNATI,OH,39.266573,-84.519608,HAMILTON 45219,CINCINNATI,OH,39.127027,-84.513127,HAMILTON 45220,CINCINNATI,OH,39.143183,-84.521738,HAMILTON 45221,CINCINNATI,OH,39.1325,-84.5159,HAMILTON 45222,CINCINNATI,OH,39.193611,-84.448611,HAMILTON 45223,CINCINNATI,OH,39.169619,-84.547807,HAMILTON 45224,CINCINNATI,OH,39.203079,-84.53883,HAMILTON 45225,CINCINNATI,OH,39.144654,-84.553267,HAMILTON 45226,CINCINNATI,OH,39.117356,-84.431194,HAMILTON 45227,CINCINNATI,OH,39.15431,-84.387211,HAMILTON 45228,CINCINNATI,OH,39.066448,-84.423539,HAMILTON 45229,CINCINNATI,OH,39.149016,-84.489184,HAMILTON 45230,CINCINNATI,OH,39.080861,-84.378727,HAMILTON 45231,CINCINNATI,OH,39.241827,-84.543702,HAMILTON 45232,CINCINNATI,OH,39.185926,-84.514101,HAMILTON 45233,CINCINNATI,OH,39.11928,-84.669411,HAMILTON 45234,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45235,CINCINNATI,OH,39.2771,-84.4013,HAMILTON 45236,CINCINNATI,OH,39.207302,-84.394746,HAMILTON 45237,CINCINNATI,OH,39.18797,-84.457997,HAMILTON 45238,CINCINNATI,OH,39.111667,-84.608805,HAMILTON 45239,CINCINNATI,OH,39.207995,-84.579225,HAMILTON 45240,CINCINNATI,OH,39.286424,-84.526299,HAMILTON 45241,CINCINNATI,OH,39.276745,-84.391161,HAMILTON 45242,CINCINNATI,OH,39.239881,-84.359919,HAMILTON 45243,CINCINNATI,OH,39.187847,-84.359349,HAMILTON 45244,CINCINNATI,OH,39.107091,-84.347765,HAMILTON 45245,CINCINNATI,OH,39.091293,-84.277383,CLERMONT 45246,CINCINNATI,OH,39.28751,-84.472353,HAMILTON 45247,CINCINNATI,OH,39.207604,-84.631608,HAMILTON 45248,CINCINNATI,OH,39.159056,-84.651535,HAMILTON 45249,CINCINNATI,OH,39.275946,-84.326673,HAMILTON 45250,CINCINNATI,OH,39.1145,-84.5359,HAMILTON 45251,CINCINNATI,OH,39.253005,-84.587987,HAMILTON 45252,CINCINNATI,OH,39.266803,-84.62832,HAMILTON 45253,CINCINNATI,OH,39.223056,-84.586944,HAMILTON 45254,CINCINNATI,OH,39.068889,-84.277222,HAMILTON 45255,CINCINNATI,OH,39.070642,-84.330774,HAMILTON 45258,CINCINNATI,OH,39.1419,-84.6254,HAMILTON 45262,CINCINNATI,OH,39.1212,-84.5448,HAMILTON 45263,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45264,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45267,CINCINNATI,OH,39.1396,-84.5038,HAMILTON 45268,CINCINNATI,OH,39.1329,-84.5093,HAMILTON 45269,CINCINNATI,OH,39.107,-84.4991,HAMILTON 45270,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45271,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45273,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45274,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45275,CINCINNATI,OH,39.0424,-84.6608,HAMILTON 45277,CINCINNATI,OH,38.9846,-84.4889,HAMILTON 45280,CINCINNATI,OH,39.1616,-84.4569,HAMILTON 45296,CINCINNATI,OH,39.136,-84.5372,HAMILTON 45298,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 45299,CINCINNATI,OH,39.1063,-84.5356,HAMILTON 45401,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45402,DAYTON,OH,39.756305,-84.189508,MONTGOMERY 45403,DAYTON,OH,39.761728,-84.149802,MONTGOMERY 45404,DAYTON,OH,39.78619,-84.162157,MONTGOMERY 45405,DAYTON,OH,39.78993,-84.213546,MONTGOMERY 45406,DAYTON,OH,39.782148,-84.237297,MONTGOMERY 45408,DAYTON,OH,39.739526,-84.228963,MONTGOMERY 45409,DAYTON,OH,39.728496,-84.182495,MONTGOMERY 45410,DAYTON,OH,39.74743,-84.16001,MONTGOMERY 45412,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45413,DAYTON,OH,39.8225,-84.1914,MONTGOMERY 45414,DAYTON,OH,39.828528,-84.202444,MONTGOMERY 45415,DAYTON,OH,39.835488,-84.261328,MONTGOMERY 45416,DAYTON,OH,39.805541,-84.259824,MONTGOMERY 45417,DAYTON,OH,39.752812,-84.246961,MONTGOMERY 45418,DAYTON,OH,39.716251,-84.267696,MONTGOMERY 45419,DAYTON,OH,39.715486,-84.163656,MONTGOMERY 45420,DAYTON,OH,39.721286,-84.133892,MONTGOMERY 45422,DAYTON,OH,39.76,-84.1959,MONTGOMERY 45423,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45424,DAYTON,OH,39.845339,-84.123287,MONTGOMERY 45426,DAYTON,OH,39.810548,-84.298283,MONTGOMERY 45427,DAYTON,OH,39.754527,-84.281884,MONTGOMERY 45428,DAYTON,OH,39.7489,-84.2531,MONTGOMERY 45429,DAYTON,OH,39.686392,-84.156077,MONTGOMERY 45430,DAYTON,OH,39.709381,-84.083596,MONTGOMERY 45431,DAYTON,OH,39.765396,-84.099802,GREENE 45432,DAYTON,OH,39.740774,-84.094157,GREENE 45433,DAYTON,OH,39.813758,-84.059048,GREENE 45434,DAYTON,OH,39.716552,-84.040385,GREENE 45435,DAYTON,OH,39.7578,-84.1777,GREENE 45437,DAYTON,OH,39.7692,-84.1226,MONTGOMERY 45439,DAYTON,OH,39.689617,-84.21626,MONTGOMERY 45440,DAYTON,OH,39.674854,-84.113573,MONTGOMERY 45441,DAYTON,OH,39.6458,-84.1669,MONTGOMERY 45448,DAYTON,OH,39.6325,-84.1564,MONTGOMERY 45449,DAYTON,OH,39.662098,-84.237887,MONTGOMERY 45454,DAYTON,OH,39.6976,-84.2213,MONTGOMERY 45458,DAYTON,OH,39.615755,-84.162697,MONTGOMERY 45459,DAYTON,OH,39.645957,-84.166422,MONTGOMERY 45463,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45469,DAYTON,OH,39.7331,-84.1804,MONTGOMERY 45470,DAYTON,OH,39.6274,-84.2775,MONTGOMERY 45475,DAYTON,OH,39.6371,-84.2205,MONTGOMERY 45479,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45481,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45482,DAYTON,OH,39.7578,-84.1777,MONTGOMERY 45490,DAYTON,OH,39.8968,-84.2227,MONTGOMERY 45501,SPRINGFIELD,OH,39.924167,-83.808889,CLARK 45502,SPRINGFIELD,OH,39.930486,-83.841338,CLARK 45503,SPRINGFIELD,OH,39.9528,-83.78043,CLARK 45504,SPRINGFIELD,OH,39.940793,-83.834302,CLARK 45505,SPRINGFIELD,OH,39.910588,-83.785593,CLARK 45506,SPRINGFIELD,OH,39.910418,-83.827512,CLARK 45801,LIMA,OH,40.764066,-84.097296,ALLEN 45802,LIMA,OH,40.7425,-84.105278,ALLEN 45804,LIMA,OH,40.727476,-84.089023,ALLEN 45805,LIMA,OH,40.739911,-84.14591,ALLEN 45806,LIMA,OH,40.675926,-84.144049,AUGLAIZE 45807,LIMA,OH,40.791599,-84.163966,ALLEN 45999,CINCINNATI,OH,39.0678,-84.5309,HAMILTON 46011,ANDERSON,IN,40.114577,-85.725305,MADISON 46012,ANDERSON,IN,40.130947,-85.653591,MADISON 46013,ANDERSON,IN,40.061865,-85.680073,MADISON 46014,ANDERSON,IN,40.0865,-85.6837,MADISON 46015,ANDERSON,IN,40.1059,-85.6784,MADISON 46016,ANDERSON,IN,40.098799,-85.684566,MADISON 46017,ANDERSON,IN,40.096431,-85.601493,MADISON 46018,ANDERSON,IN,40.1052,-85.6802,MADISON 46201,INDIANAPOLIS,IN,39.775006,-86.109348,MARION 46202,INDIANAPOLIS,IN,39.785063,-86.159502,MARION 46203,INDIANAPOLIS,IN,39.743025,-86.117859,MARION 46204,INDIANAPOLIS,IN,39.771986,-86.153491,MARION 46205,INDIANAPOLIS,IN,39.826761,-86.138582,MARION 46206,INDIANAPOLIS,IN,39.761,-86.161,MARION 46207,INDIANAPOLIS,IN,39.761,-86.161,MARION 46208,INDIANAPOLIS,IN,39.829905,-86.179444,MARION 46209,INDIANAPOLIS,IN,39.761,-86.161,MARION 46211,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46214,INDIANAPOLIS,IN,39.792678,-86.289952,MARION 46216,INDIANAPOLIS,IN,39.857731,-86.016688,MARION 46217,INDIANAPOLIS,IN,39.664141,-86.175394,MARION 46218,INDIANAPOLIS,IN,39.80817,-86.101425,MARION 46219,INDIANAPOLIS,IN,39.782092,-86.049533,MARION 46220,INDIANAPOLIS,IN,39.864685,-86.11815,MARION 46221,INDIANAPOLIS,IN,39.750885,-86.19243,MARION 46222,INDIANAPOLIS,IN,39.788971,-86.213574,MARION 46223,INDIANAPOLIS,IN,39.761,-86.161,MARION 46225,INDIANAPOLIS,IN,39.740599,-86.156944,MARION 46226,INDIANAPOLIS,IN,39.836969,-86.048945,MARION 46227,INDIANAPOLIS,IN,39.675,-86.129817,MARION 46228,INDIANAPOLIS,IN,39.8456,-86.2051,MARION 46229,INDIANAPOLIS,IN,39.792219,-85.983826,MARION 46230,INDIANAPOLIS,IN,39.8686,-86.1443,MARION 46231,INDIANAPOLIS,IN,39.740637,-86.318289,MARION 46234,INDIANAPOLIS,IN,39.788438,-86.324117,MARION 46235,INDIANAPOLIS,IN,39.836,-85.9829,MARION 46236,INDIANAPOLIS,IN,39.849588,-85.985059,MARION 46237,INDIANAPOLIS,IN,39.686777,-86.07891,MARION 46239,INDIANAPOLIS,IN,39.721826,-86.008209,MARION 46240,INDIANAPOLIS,IN,39.9057,-86.129548,MARION 46241,INDIANAPOLIS,IN,39.723814,-86.250856,MARION 46242,INDIANAPOLIS,IN,39.7279,-86.2559,MARION 46244,INDIANAPOLIS,IN,39.7735,-86.1583,MARION 46247,INDIANAPOLIS,IN,39.665,-86.127778,MARION 46249,INDIANAPOLIS,IN,39.8552,-86.0138,MARION 46250,INDIANAPOLIS,IN,39.9069,-86.069112,MARION 46251,INDIANAPOLIS,IN,39.7269,-86.268,MARION 46253,INDIANAPOLIS,IN,39.718056,-86.196389,MARION 46254,INDIANAPOLIS,IN,39.841379,-86.2638,MARION 46255,INDIANAPOLIS,IN,39.761,-86.161,MARION 46256,INDIANAPOLIS,IN,39.90114,-86.023877,MARION 46259,INDIANAPOLIS,IN,39.660901,-85.992603,MARION 46260,INDIANAPOLIS,IN,39.897488,-86.184809,MARION 46262,INDIANAPOLIS,IN,37.0625,-95.677068,MARION 46266,INDIANAPOLIS,IN,39.761,-86.161,MARION 46268,INDIANAPOLIS,IN,39.900296,-86.222104,MARION 46274,INDIANAPOLIS,IN,39.9036,-86.069,MARION 46275,INDIANAPOLIS,IN,39.761,-86.161,MARION 46277,INDIANAPOLIS,IN,39.761,-86.161,MARION 46278,INDIANAPOLIS,IN,39.883858,-86.291455,MARION 46280,INDIANAPOLIS,IN,39.938417,-86.13894,HAMILTON 46282,INDIANAPOLIS,IN,39.761,-86.161,MARION 46283,INDIANAPOLIS,IN,39.761,-86.161,MARION 46285,INDIANAPOLIS,IN,39.761,-86.161,MARION 46290,INDIANAPOLIS,IN,39.93077,-86.167118,HAMILTON 46291,INDIANAPOLIS,IN,39.761,-86.161,MARION 46295,INDIANAPOLIS,IN,39.673,-86.1931,MARION 46296,INDIANAPOLIS,IN,39.7683,-86.1582,MARION 46298,INDIANAPOLIS,IN,39.8966,-86.2313,MARION 46401,GARY,IN,41.593333,-87.346389,LAKE 46402,GARY,IN,41.599711,-87.338548,LAKE 46403,GARY,IN,41.603612,-87.258984,LAKE 46404,GARY,IN,41.589937,-87.373153,LAKE 46406,GARY,IN,41.587806,-87.40621,LAKE 46407,GARY,IN,41.580429,-87.334958,LAKE 46408,GARY,IN,41.542178,-87.35883,LAKE 46409,GARY,IN,41.541247,-87.327126,LAKE 46601,SOUTH BEND,IN,41.672699,-86.253489,ST JOSEPH 46604,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46613,SOUTH BEND,IN,41.654636,-86.247865,ST JOSEPH 46614,SOUTH BEND,IN,41.625461,-86.243278,ST JOSEPH 46615,SOUTH BEND,IN,41.67413,-86.210375,ST JOSEPH 46616,SOUTH BEND,IN,41.691894,-86.264739,ST JOSEPH 46617,SOUTH BEND,IN,41.684966,-86.2351,ST JOSEPH 46619,SOUTH BEND,IN,41.667397,-86.315266,ST JOSEPH 46620,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46624,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46626,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46628,SOUTH BEND,IN,41.701525,-86.294929,ST JOSEPH 46634,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46635,SOUTH BEND,IN,41.716768,-86.207806,ST JOSEPH 46637,SOUTH BEND,IN,41.729936,-86.240694,ST JOSEPH 46660,SOUTH BEND,IN,41.6944,-86.2143,ST JOSEPH 46680,SOUTH BEND,IN,41.5762,-86.2407,ST JOSEPH 46699,SOUTH BEND,IN,41.6833,-86.25,ST JOSEPH 46801,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46802,FORT WAYNE,IN,41.070717,-85.15431,ALLEN 46803,FORT WAYNE,IN,41.069452,-85.107362,ALLEN 46804,FORT WAYNE,IN,41.050843,-85.256013,ALLEN 46805,FORT WAYNE,IN,41.097663,-85.118865,ALLEN 46806,FORT WAYNE,IN,41.047988,-85.113496,ALLEN 46807,FORT WAYNE,IN,41.049054,-85.146167,ALLEN 46808,FORT WAYNE,IN,41.093877,-85.162121,ALLEN 46809,FORT WAYNE,IN,41.02543,-85.1834,ALLEN 46814,FORT WAYNE,IN,41.0457,-85.3023,ALLEN 46815,FORT WAYNE,IN,41.105318,-85.062397,ALLEN 46816,FORT WAYNE,IN,41.016519,-85.097573,ALLEN 46818,FORT WAYNE,IN,41.146847,-85.206686,ALLEN 46819,FORT WAYNE,IN,41.005167,-85.152743,ALLEN 46825,FORT WAYNE,IN,41.146482,-85.123156,ALLEN 46835,FORT WAYNE,IN,41.137051,-85.068531,ALLEN 46845,FORT WAYNE,IN,41.195783,-85.119088,ALLEN 46850,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46851,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46852,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46853,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46854,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46855,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46856,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46857,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46858,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46859,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46860,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46861,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46862,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46863,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46864,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46865,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46866,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46867,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46868,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46869,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46885,FORT WAYNE,IN,41.1204,-85.0651,ALLEN 46895,FORT WAYNE,IN,41.1057,-85.1145,ALLEN 46896,FORT WAYNE,IN,41.0073,-85.0625,ALLEN 46897,FORT WAYNE,IN,41.0716,-85.1367,ALLEN 46898,FORT WAYNE,IN,41.1305,-85.1288,ALLEN 46899,FORT WAYNE,IN,41.0298,-85.1663,ALLEN 47130,JEFFERSONVILLE,IN,38.307767,-85.735885,CLARK 47131,JEFFERSONVILLE,IN,38.296667,-85.76,CLARK 47132,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47133,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47134,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47144,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47190,JEFFERSONVILLE,IN,38.28647,-85.732145,CLARK 47199,JEFFERSONVILLE,IN,38.3398,-85.6991,CLARK 47302,MUNCIE,IN,40.168414,-85.380689,DELAWARE 47303,MUNCIE,IN,40.217992,-85.378966,DELAWARE 47304,MUNCIE,IN,40.211134,-85.429115,DELAWARE 47305,MUNCIE,IN,40.193299,-85.386163,DELAWARE 47306,MUNCIE,IN,40.192739,-85.410153,DELAWARE 47307,MUNCIE,IN,40.1248,-85.3404,DELAWARE 47308,MUNCIE,IN,40.1314,-85.3764,DELAWARE 47401,BLOOMINGTON,IN,39.140057,-86.508262,MONROE 47402,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47403,BLOOMINGTON,IN,39.12632,-86.576867,MONROE 47404,BLOOMINGTON,IN,39.195026,-86.57572,MONROE 47405,BLOOMINGTON,IN,39.168,-86.5205,MONROE 47406,BLOOMINGTON,IN,39.1748,-86.5135,MONROE 47407,BLOOMINGTON,IN,39.2458,-86.4546,MONROE 47408,BLOOMINGTON,IN,39.183175,-86.505836,MONROE 47490,BLOOMINGTON,IN,39.0936,-86.4657,MONROE 47701,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47702,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47703,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47704,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47705,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47706,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47708,EVANSVILLE,IN,37.971818,-87.571973,VANDERBURGH 47710,EVANSVILLE,IN,38.008617,-87.574569,VANDERBURGH 47711,EVANSVILLE,IN,38.076377,-87.535236,VANDERBURGH 47712,EVANSVILLE,IN,37.998484,-87.634682,VANDERBURGH 47713,EVANSVILLE,IN,37.962326,-87.55768,VANDERBURGH 47714,EVANSVILLE,IN,37.959076,-87.529302,VANDERBURGH 47715,EVANSVILLE,IN,37.967815,-87.485526,VANDERBURGH 47716,EVANSVILLE,IN,37.9624,-87.4924,VANDERBURGH 47719,EVANSVILLE,IN,38.087,-87.5321,VANDERBURGH 47720,EVANSVILLE,IN,37.998832,-87.538793,VANDERBURGH 47721,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47722,EVANSVILLE,IN,37.9734,-87.5301,VANDERBURGH 47724,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47725,EVANSVILLE,IN,38.0934,-87.5243,VANDERBURGH 47727,EVANSVILLE,IN,38.0814,-87.5259,VANDERBURGH 47728,EVANSVILLE,IN,37.9625,-87.5309,VANDERBURGH 47730,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47731,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47732,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47733,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47734,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47735,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47736,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47737,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47739,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47740,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47741,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47744,EVANSVILLE,IN,37.9128,-87.6471,VANDERBURGH 47747,EVANSVILLE,IN,38.0271,-87.576,VANDERBURGH 47750,EVANSVILLE,IN,37.9746,-87.5674,VANDERBURGH 47801,TERRE HAUTE,IN,39.4666,-87.4138,VIGO 47802,TERRE HAUTE,IN,39.40697,-87.402019,VIGO 47803,TERRE HAUTE,IN,39.465696,-87.353967,VIGO 47804,TERRE HAUTE,IN,39.493665,-87.394494,VIGO 47805,TERRE HAUTE,IN,39.535981,-87.341109,VIGO 47807,TERRE HAUTE,IN,39.470974,-87.400859,VIGO 47808,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47809,TERRE HAUTE,IN,39.4719,-87.4039,VIGO 47811,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47812,TERRE HAUTE,IN,39.4667,-87.4068,VIGO 47813,TERRE HAUTE,IN,39.4667,-87.4068, 47814,TERRE HAUTE,IN,39.4667,-87.4068, 47901,LAFAYETTE,IN,40.417743,-86.888358,TIPPECANOE 47902,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47903,LAFAYETTE,IN,40.4175,-86.8543,TIPPECANOE 47904,LAFAYETTE,IN,40.427649,-86.873464,TIPPECANOE 47905,LAFAYETTE,IN,40.400054,-86.860236,TIPPECANOE 47909,LAFAYETTE,IN,40.3589,-86.8875,TIPPECANOE 47933,CRAWFORDSVILLE,IN,40.032524,-86.907424,MONTGOMERY 47934,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47935,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47936,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47937,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47938,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 47939,CRAWFORDSVILLE,IN,40.0414,-86.8984,MONTGOMERY 48007,TROY,MI,42.5609,-83.1471,OAKLAND 48033,SOUTHFIELD,MI,42.46302,-83.288048,OAKLAND 48034,SOUTHFIELD,MI,42.477676,-83.288295,OAKLAND 48037,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48075,SOUTHFIELD,MI,42.463831,-83.225539,OAKLAND 48076,SOUTHFIELD,MI,42.499915,-83.22971,OAKLAND 48083,TROY,MI,42.559668,-83.113771,OAKLAND 48084,TROY,MI,42.562696,-83.179947,OAKLAND 48085,TROY,MI,42.5983,-83.1178,OAKLAND 48086,SOUTHFIELD,MI,42.4869,-83.2636,OAKLAND 48088,WARREN,MI,42.5159,-82.9824,MACOMB 48089,WARREN,MI,42.468494,-82.997385,MACOMB 48090,WARREN,MI,42.5009,-83.0461,MACOMB 48091,WARREN,MI,42.466463,-83.059263,MACOMB 48092,WARREN,MI,42.512459,-83.064278,MACOMB 48093,WARREN,MI,42.514943,-82.996764,MACOMB 48098,TROY,MI,42.598118,-83.145001,OAKLAND 48099,TROY,MI,42.5609,-83.1471,OAKLAND 48103,ANN ARBOR,MI,42.279379,-83.783998,WASHTENAW 48104,ANN ARBOR,MI,42.26939,-83.728156,WASHTENAW 48105,ANN ARBOR,MI,42.304247,-83.706756,WASHTENAW 48106,ANN ARBOR,MI,42.2723,-83.7747,WASHTENAW 48107,ANN ARBOR,MI,42.2796,-83.7461,WASHTENAW 48108,ANN ARBOR,MI,42.232782,-83.701481,WASHTENAW 48109,ANN ARBOR,MI,42.293,-83.715363,WASHTENAW 48113,ANN ARBOR,MI,42.3107,-83.6922,WASHTENAW 48120,DEARBORN,MI,42.305295,-83.160488,WAYNE 48121,DEARBORN,MI,42.3115,-83.1913,WAYNE 48123,DEARBORN,MI,42.3041,-83.2491,WAYNE 48124,DEARBORN,MI,42.294141,-83.253565,WAYNE 48126,DEARBORN,MI,42.334882,-83.180065,WAYNE 48128,DEARBORN,MI,42.319981,-83.270131,WAYNE 48201,DETROIT,MI,42.347429,-83.060398,WAYNE 48202,DETROIT,MI,42.377033,-83.079613,WAYNE 48204,DETROIT,MI,42.366098,-83.142151,WAYNE 48205,DETROIT,MI,42.431259,-82.981279,WAYNE 48206,DETROIT,MI,42.374893,-83.108695,WAYNE 48207,DETROIT,MI,42.352373,-83.027101,WAYNE 48208,DETROIT,MI,42.34947,-83.092711,WAYNE 48209,DETROIT,MI,42.309746,-83.115464,WAYNE 48210,DETROIT,MI,42.337603,-83.130281,WAYNE 48211,DETROIT,MI,42.380922,-83.040945,WAYNE 48213,DETROIT,MI,42.39816,-82.99253,WAYNE 48214,DETROIT,MI,42.366944,-82.993798,WAYNE 48215,DETROIT,MI,42.377272,-82.951319,WAYNE 48216,DETROIT,MI,42.327467,-83.082656,WAYNE 48217,DETROIT,MI,42.271914,-83.154545,WAYNE 48219,DETROIT,MI,42.426033,-83.249495,WAYNE 48221,DETROIT,MI,42.425998,-83.149976,WAYNE 48222,DETROIT,MI,42.2927,-83.1386,WAYNE 48223,DETROIT,MI,42.394453,-83.245403,WAYNE 48224,DETROIT,MI,42.409808,-82.944061,WAYNE 48226,DETROIT,MI,42.333346,-83.048432,WAYNE 48227,DETROIT,MI,42.388303,-83.193732,WAYNE 48228,DETROIT,MI,42.35473,-83.216753,WAYNE 48231,DETROIT,MI,42.3316,-83.05,WAYNE 48232,DETROIT,MI,42.2927,-83.1386,WAYNE 48233,DETROIT,MI,42.2927,-83.1386,WAYNE 48234,DETROIT,MI,42.4337,-83.043383,WAYNE 48235,DETROIT,MI,42.426098,-83.195124,WAYNE 48238,DETROIT,MI,42.395932,-83.141145,WAYNE 48242,DETROIT,MI,42.220718,-83.377081,WAYNE 48243,DETROIT,MI,42.3305,-83.0385,WAYNE 48244,DETROIT,MI,42.2927,-83.1386,WAYNE 48255,DETROIT,MI,42.2927,-83.1386,WAYNE 48260,DETROIT,MI,42.2927,-83.1386,WAYNE 48264,DETROIT,MI,42.2927,-83.1386,WAYNE 48265,DETROIT,MI,42.4388,-82.9293,WAYNE 48266,DETROIT,MI,42.2927,-83.1386,WAYNE 48267,DETROIT,MI,42.2927,-83.1386,WAYNE 48268,DETROIT,MI,42.2927,-83.1386,WAYNE 48269,DETROIT,MI,42.2927,-83.1386,WAYNE 48272,DETROIT,MI,42.2927,-83.1386,WAYNE 48275,DETROIT,MI,42.2927,-83.1386,WAYNE 48277,DETROIT,MI,42.2927,-83.1386,WAYNE 48278,DETROIT,MI,42.2927,-83.1386,WAYNE 48279,DETROIT,MI,42.2927,-83.1386,WAYNE 48288,DETROIT,MI,42.4221,-83.1034,WAYNE 48331,FARMINGTON,MI,42.510042,-83.405433,OAKLAND 48332,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48333,FARMINGTON,MI,42.4644,-83.3763,OAKLAND 48334,FARMINGTON,MI,42.506798,-83.35198,OAKLAND 48335,FARMINGTON,MI,42.463055,-83.400134,OAKLAND 48336,FARMINGTON,MI,42.460938,-83.345465,OAKLAND 48397,WARREN,MI,42.4916,-83.0402,MACOMB 48501,FLINT,MI,43.0233,-83.6856,GENESEE 48502,FLINT,MI,43.012321,-83.687768,GENESEE 48503,FLINT,MI,43.012836,-83.691429,GENESEE 48504,FLINT,MI,43.04247,-83.729908,GENESEE 48505,FLINT,MI,43.063369,-83.700093,GENESEE 48506,FLINT,MI,43.052596,-83.640192,GENESEE 48507,FLINT,MI,42.97303,-83.688999,GENESEE 48531,FLINT,MI,43.0467,-83.7444,GENESEE 48532,FLINT,MI,43.01021,-83.768576,GENESEE 48550,FLINT,MI,43.0233,-83.6856,GENESEE 48551,FLINT,MI,42.9645,-83.7185,GENESEE 48552,FLINT,MI,42.9645,-83.7185,GENESEE 48553,FLINT,MI,42.9645,-83.7185,GENESEE 48554,FLINT,MI,42.9724,-83.7952,GENESEE 48555,FLINT,MI,43.0097,-83.7093,GENESEE 48556,FLINT,MI,43.0233,-83.6856,GENESEE 48557,FLINT,MI,42.9645,-83.7185,GENESEE 48559,FLINT,MI,43.0233,-83.6856,GENESEE 48601,SAGINAW,MI,43.404692,-83.915626,SAGINAW 48602,SAGINAW,MI,43.424838,-83.974455,SAGINAW 48603,SAGINAW,MI,43.43251,-84.03028,SAGINAW 48604,SAGINAW,MI,43.473223,-83.951421,SAGINAW 48605,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48606,SAGINAW,MI,43.432,-83.9341,SAGINAW 48607,SAGINAW,MI,43.430141,-83.931872,SAGINAW 48608,SAGINAW,MI,43.4392,-84.0292,SAGINAW 48609,SAGINAW,MI,43.411,-84.0925,SAGINAW 48638,SAGINAW,MI,43.418551,-84.016734,SAGINAW 48640,MIDLAND,MI,43.637562,-84.26796,MIDLAND 48641,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48642,MIDLAND,MI,43.637488,-84.197941,MIDLAND 48663,SAGINAW,MI,43.4207,-83.9458,SAGINAW 48667,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48670,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48674,MIDLAND,MI,43.6165,-84.1972,MIDLAND 48686,MIDLAND,MI,43.6231,-84.2272,MIDLAND 48901,LANSING,MI,42.7323,-84.556,INGHAM 48906,LANSING,MI,42.763464,-84.558043,INGHAM 48908,LANSING,MI,42.7335,-84.6391,EATON 48909,LANSING,MI,42.6849,-84.4986,INGHAM 48910,LANSING,MI,42.700784,-84.549005,INGHAM 48911,LANSING,MI,42.679727,-84.577168,INGHAM 48912,LANSING,MI,42.737115,-84.524414,INGHAM 48913,LANSING,MI,42.6849,-84.4986,INGHAM 48915,LANSING,MI,42.739074,-84.570398,INGHAM 48916,LANSING,MI,42.6636,-84.5361,INGHAM 48917,LANSING,MI,42.737621,-84.62439,EATON 48918,LANSING,MI,42.6849,-84.4986,INGHAM 48919,LANSING,MI,42.6849,-84.4986,INGHAM 48921,LANSING,MI,42.6849,-84.4986,INGHAM 48922,LANSING,MI,42.6849,-84.4986,INGHAM 48924,LANSING,MI,42.6849,-84.4986,INGHAM 48929,LANSING,MI,42.6849,-84.4986,INGHAM 48930,LANSING,MI,42.6849,-84.4986,INGHAM 48933,LANSING,MI,42.733429,-84.557142,INGHAM 48937,LANSING,MI,42.7487,-84.5587,INGHAM 48950,LANSING,MI,42.6849,-84.4986,INGHAM 48951,LANSING,MI,42.7327,-84.5558,INGHAM 48956,LANSING,MI,42.6849,-84.4986,INGHAM 48980,LANSING,MI,42.6849,-84.4986,INGHAM 49001,KALAMAZOO,MI,42.273565,-85.545653,KALAMAZOO 49003,KALAMAZOO,MI,42.2661,-85.5663,KALAMAZOO 49004,KALAMAZOO,MI,42.326538,-85.541959,KALAMAZOO 49005,KALAMAZOO,MI,42.2919,-85.5798,KALAMAZOO 49006,KALAMAZOO,MI,42.2938,-85.6251,KALAMAZOO 49007,KALAMAZOO,MI,42.295688,-85.613722,KALAMAZOO 49008,KALAMAZOO,MI,42.262432,-85.609645,KALAMAZOO 49009,KALAMAZOO,MI,42.280947,-85.686333,KALAMAZOO 49014,BATTLE CREEK,MI,42.3053,-85.1389,CALHOUN 49015,BATTLE CREEK,MI,42.302806,-85.212825,CALHOUN 49016,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49017,BATTLE CREEK,MI,42.332218,-85.181106,CALHOUN 49018,BATTLE CREEK,MI,42.3954,-85.2165,CALHOUN 49019,KALAMAZOO,MI,42.2916,-85.5872,KALAMAZOO 49037,BATTLE CREEK,MI,42.3211522,-85.1797142,CALHOUN 49048,KALAMAZOO,MI,42.292,-85.5261,KALAMAZOO 49440,MUSKEGON,MI,43.232589,-86.249191,MUSKEGON 49441,MUSKEGON,MI,43.196184,-86.273819,MUSKEGON 49442,MUSKEGON,MI,43.232876,-86.188467,MUSKEGON 49443,MUSKEGON,MI,43.234167,-86.248333,MUSKEGON 49444,MUSKEGON,MI,43.195046,-86.216208,MUSKEGON 49445,MUSKEGON,MI,43.282873,-86.273297,MUSKEGON 49501,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49502,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49503,GRAND RAPIDS,MI,42.965879,-85.65273,KENT 49504,GRAND RAPIDS,MI,42.98392,-85.725543,KENT 49505,GRAND RAPIDS,MI,43.012025,-85.630931,KENT 49506,GRAND RAPIDS,MI,42.943978,-85.621317,KENT 49507,GRAND RAPIDS,MI,42.931788,-85.65417,KENT 49508,GRAND RAPIDS,MI,42.875653,-85.624179,KENT 49510,GRAND RAPIDS,MI,43.021,-85.6106,KENT 49512,GRAND RAPIDS,MI,42.89269,-85.578156,KENT 49514,GRAND RAPIDS,MI,42.9872,-85.7092,KENT 49515,GRAND RAPIDS,MI,43.0136,-85.6254,KENT 49516,GRAND RAPIDS,MI,42.9567,-85.6331,KENT 49518,GRAND RAPIDS,MI,42.8839,-85.6252,KENT 49523,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49525,GRAND RAPIDS,MI,43.0225,-85.6009,KENT 49528,GRAND RAPIDS,MI,42.9039,-85.6684,KENT 49530,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49534,GRAND RAPIDS,MI,43.008883,-85.774227,KENT 49544,GRAND RAPIDS,MI,43.0255,-85.7131,KENT 49546,GRAND RAPIDS,MI,42.928029,-85.548346,KENT 49548,GRAND RAPIDS,MI,42.867048,-85.660767,KENT 49550,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49555,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 49560,GRAND RAPIDS,MI,42.8733,-85.6242,KENT 49588,GRAND RAPIDS,MI,42.9633,-85.668,KENT 49599,GRAND RAPIDS,MI,42.9704,-85.6738,KENT 50301,DES MOINES,IA,41.6005,-93.6088,POLK 50302,DES MOINES,IA,41.6005,-93.6088,POLK 50303,DES MOINES,IA,41.6005,-93.6088,POLK 50304,DES MOINES,IA,41.6005,-93.6088,POLK 50305,DES MOINES,IA,41.6005,-93.6088,POLK 50306,DES MOINES,IA,41.6005,-93.6088,POLK 50307,DES MOINES,IA,41.6005,-93.6088,POLK 50308,DES MOINES,IA,41.6005,-93.6088,POLK 50309,DES MOINES,IA,41.588743,-93.621175,POLK 50310,DES MOINES,IA,41.625475,-93.673611,POLK 50311,DES MOINES,IA,41.601562,-93.674371,POLK 50312,DES MOINES,IA,41.585453,-93.671908,POLK 50313,DES MOINES,IA,41.638085,-93.620305,POLK 50314,DES MOINES,IA,41.603003,-93.632993,POLK 50315,DES MOINES,IA,41.544394,-93.619226,POLK 50316,DES MOINES,IA,41.609228,-93.599966,POLK 50317,DES MOINES,IA,41.612499,-93.549446,POLK 50318,DES MOINES,IA,41.6005,-93.6088,POLK 50319,DES MOINES,IA,41.594,-93.6146,POLK 50320,DES MOINES,IA,41.548693,-93.582674,POLK 50321,DES MOINES,IA,41.547628,-93.661846,POLK 50327,DES MOINES,IA,41.583889,-93.519722,POLK 50328,DES MOINES,IA,41.6005,-93.6088,POLK 50329,DES MOINES,IA,41.6005,-93.6088,POLK 50330,DES MOINES,IA,41.6005,-93.6088,POLK 50331,DES MOINES,IA,41.6005,-93.6088,POLK 50332,DES MOINES,IA,41.6005,-93.6088,POLK 50333,DES MOINES,IA,41.6564,-93.623,POLK 50334,DES MOINES,IA,41.6005,-93.6088,POLK 50335,DES MOINES,IA,41.6005,-93.6088,POLK 50336,DES MOINES,IA,41.6005,-93.6088,POLK 50339,DES MOINES,IA,41.6005,-93.6088,POLK 50340,DES MOINES,IA,41.6005,-93.6088,POLK 50347,DES MOINES,IA,41.6005,-93.6088,POLK 50350,DES MOINES,IA,41.6005,-93.6088, 50359,DES MOINES,IA,41.6005,-93.6088,POLK 50360,DES MOINES,IA,41.6005,-93.6088,POLK 50361,DES MOINES,IA,41.6005,-93.6088,POLK 50362,DES MOINES,IA,41.6005,-93.6088,POLK 50363,DES MOINES,IA,41.6005,-93.6088,POLK 50364,DES MOINES,IA,41.6005,-93.6088,POLK 50367,DES MOINES,IA,41.6005,-93.6088,POLK 50368,DES MOINES,IA,41.6005,-93.6088,POLK 50369,DES MOINES,IA,41.6005,-93.6088,POLK 50380,DES MOINES,IA,41.6005,-93.6088,POLK 50381,DES MOINES,IA,41.6005,-93.6088,POLK 50391,DES MOINES,IA,41.6005,-93.6088,POLK 50392,DES MOINES,IA,41.5878,-93.6271,POLK 50393,DES MOINES,IA,41.6005,-93.6088,POLK 50394,DES MOINES,IA,41.6005,-93.6088,POLK 50395,DES MOINES,IA,41.6005,-93.6088,POLK 50396,DES MOINES,IA,41.6005,-93.6088,POLK 50397,DES MOINES,IA,41.6005,-93.6088,POLK 50936,DES MOINES,IA,41.6005,-93.6088,POLK 50940,DES MOINES,IA,41.6005,-93.6088,POLK 50947,DES MOINES,IA,41.6005,-93.6088,POLK 50950,DES MOINES,IA,41.6005,-93.6088,POLK 50980,DES MOINES,IA,41.6005,-93.6088,POLK 50981,DES MOINES,IA,41.6005,-93.6088,POLK 51101,SIOUX CITY,IA,42.497223,-96.40292,WOODBURY 51102,SIOUX CITY,IA,42.5,-96.4,WOODBURY 51103,SIOUX CITY,IA,42.506793,-96.42951,WOODBURY 51104,SIOUX CITY,IA,42.52536,-96.400453,WOODBURY 51105,SIOUX CITY,IA,42.503224,-96.382855,WOODBURY 51106,SIOUX CITY,IA,42.467057,-96.352755,WOODBURY 51108,SIOUX CITY,IA,42.546891,-96.361695,WOODBURY 51109,SIOUX CITY,IA,42.517287,-96.480304,WOODBURY 51111,SIOUX CITY,IA,42.408912,-96.371294,WOODBURY 52240,IOWA CITY,IA,41.654899,-91.511192,JOHNSON 52242,IOWA CITY,IA,41.6603,-91.541,JOHNSON 52243,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52244,IOWA CITY,IA,41.6563,-91.5342,JOHNSON 52245,IOWA CITY,IA,41.664916,-91.51507,JOHNSON 52246,IOWA CITY,IA,41.643813,-91.566882,JOHNSON 52401,CEDAR RAPIDS,IA,41.9743,-91.655382,LINN 52402,CEDAR RAPIDS,IA,42.018778,-91.661222,LINN 52403,CEDAR RAPIDS,IA,41.984312,-91.625919,LINN 52404,CEDAR RAPIDS,IA,41.952108,-91.685286,LINN 52405,CEDAR RAPIDS,IA,41.980422,-91.709816,LINN 52406,CEDAR RAPIDS,IA,41.9189,-91.6785,LINN 52407,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52408,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52409,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52410,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52411,CEDAR RAPIDS,IA,42.0421,-91.7178,LINN 52497,CEDAR RAPIDS,IA,42.0213,-91.66,LINN 52498,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52499,CEDAR RAPIDS,IA,41.9771,-91.6593,LINN 52801,DAVENPORT,IA,41.5218,-90.5743,SCOTT 52802,DAVENPORT,IA,41.516358,-90.61409,SCOTT 52803,DAVENPORT,IA,41.538509,-90.561348,SCOTT 52804,DAVENPORT,IA,41.538603,-90.61147,SCOTT 52805,DAVENPORT,IA,41.521,-90.5865,SCOTT 52806,DAVENPORT,IA,41.573271,-90.603845,SCOTT 52807,DAVENPORT,IA,41.561822,-90.540262,SCOTT 52808,DAVENPORT,IA,41.521,-90.5865,SCOTT 52809,DAVENPORT,IA,41.521,-90.5865,SCOTT 53201,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53202,MILWAUKEE,WI,43.050601,-87.896792,MILWAUKEE 53203,MILWAUKEE,WI,43.040299,-87.915375,MILWAUKEE 53204,MILWAUKEE,WI,43.015778,-87.931685,MILWAUKEE 53205,MILWAUKEE,WI,43.052841,-87.935332,MILWAUKEE 53206,MILWAUKEE,WI,43.075324,-87.934714,MILWAUKEE 53207,MILWAUKEE,WI,42.981405,-87.894598,MILWAUKEE 53208,MILWAUKEE,WI,43.048775,-87.962454,MILWAUKEE 53209,MILWAUKEE,WI,43.118765,-87.947834,MILWAUKEE 53210,MILWAUKEE,WI,43.068545,-87.971466,MILWAUKEE 53211,MILWAUKEE,WI,43.080517,-87.885078,MILWAUKEE 53212,MILWAUKEE,WI,43.071195,-87.908415,MILWAUKEE 53213,MILWAUKEE,WI,43.051316,-88.000757,MILWAUKEE 53214,MILWAUKEE,WI,43.019113,-88.010757,MILWAUKEE 53215,MILWAUKEE,WI,43.000411,-87.94174,MILWAUKEE 53216,MILWAUKEE,WI,43.085868,-87.974218,MILWAUKEE 53217,MILWAUKEE,WI,43.14086,-87.907261,MILWAUKEE 53218,MILWAUKEE,WI,43.11218,-87.993161,MILWAUKEE 53219,MILWAUKEE,WI,42.995909,-87.994368,MILWAUKEE 53220,MILWAUKEE,WI,42.968186,-87.992209,MILWAUKEE 53221,MILWAUKEE,WI,42.954864,-87.944734,MILWAUKEE 53222,MILWAUKEE,WI,43.08283,-88.02687,MILWAUKEE 53223,MILWAUKEE,WI,43.162374,-87.989818,MILWAUKEE 53224,MILWAUKEE,WI,43.159415,-88.032744,MILWAUKEE 53225,MILWAUKEE,WI,43.115416,-88.03464,MILWAUKEE 53226,MILWAUKEE,WI,43.050006,-88.041386,MILWAUKEE 53227,MILWAUKEE,WI,42.994919,-88.036384,MILWAUKEE 53228,MILWAUKEE,WI,42.970251,-88.034638,MILWAUKEE 53233,MILWAUKEE,WI,43.040738,-87.93566,MILWAUKEE 53234,MILWAUKEE,WI,43.0031,-87.9679,MILWAUKEE 53235,MILWAUKEE,WI,42.9691,-87.8763,MILWAUKEE 53237,MILWAUKEE,WI,42.9443,-87.9093,MILWAUKEE 53244,MILWAUKEE,WI,43.0408,-87.9912,MILWAUKEE 53259,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53263,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53267,MILWAUKEE,WI,43.0439,-87.9097,MILWAUKEE 53268,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53274,MILWAUKEE,WI,43.0345,-87.9153,MILWAUKEE 53278,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53288,MILWAUKEE,WI,43.0388,-87.9063,MILWAUKEE 53290,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53293,MILWAUKEE,WI,43.0343,-87.9151,MILWAUKEE 53295,MILWAUKEE,WI,43.0186,-87.9772,MILWAUKEE 53401,RACINE,WI,42.726,-87.7825,RACINE 53402,RACINE,WI,42.772596,-87.795985,RACINE 53403,RACINE,WI,42.706015,-87.801375,RACINE 53404,RACINE,WI,42.743348,-87.8053,RACINE 53405,RACINE,WI,42.716112,-87.823329,RACINE 53406,RACINE,WI,42.724162,-87.855104,RACINE 53407,RACINE,WI,42.7261,-87.7827,RACINE 53408,RACINE,WI,42.717,-87.8395,RACINE 53490,RACINE,WI,42.6868,-87.8378, 53701,MADISON,WI,43.073,-89.3817,DANE 53702,MADISON,WI,43.0985,-89.317,DANE 53703,MADISON,WI,43.077535,-89.383068,DANE 53704,MADISON,WI,43.120526,-89.352295,DANE 53705,MADISON,WI,43.072999,-89.452823,DANE 53706,MADISON,WI,43.076929,-89.409362,DANE 53707,MADISON,WI,43.0985,-89.317,DANE 53708,MADISON,WI,43.0985,-89.317,DANE 53711,MADISON,WI,43.035644,-89.452558,DANE 53713,MADISON,WI,43.037381,-89.390008,DANE 53714,MADISON,WI,43.097735,-89.311758,DANE 53715,MADISON,WI,43.065287,-89.400045,DANE 53716,MADISON,WI,43.067413,-89.315921,DANE 53717,MADISON,WI,43.073587,-89.507984,DANE 53718,MADISON,WI,43.152143,-89.407339,DANE 53719,MADISON,WI,43.03207,-89.499324,DANE 53725,MADISON,WI,43.0569,-89.4038,DANE 53726,MADISON,WI,43.0701,-89.4215,DANE 53744,MADISON,WI,43.0157,-89.4166,DANE 53774,MADISON,WI,43.0733,-89.4012,DANE 53777,MADISON,WI,43.073,-89.4011,DANE 53778,MADISON,WI,43.0985,-89.317,DANE 53779,MADISON,WI,43.073,-89.4011,DANE 53782,MADISON,WI,43.073,-89.4011,DANE 53783,MADISON,WI,43.073,-89.4011,DANE 53784,MADISON,WI,43.073,-89.4011,DANE 53785,MADISON,WI,43.073,-89.4011,DANE 53786,MADISON,WI,43.073,-89.4011,DANE 53788,MADISON,WI,43.073,-89.4011,DANE 53789,MADISON,WI,43.073,-89.4011,DANE 53790,MADISON,WI,43.073,-89.4011,DANE 53791,MADISON,WI,43.0985,-89.317,DANE 53792,MADISON,WI,43.073,-89.4011,DANE 53793,MADISON,WI,43.073,-89.4011,DANE 53794,MADISON,WI,43.073,-89.4011,DANE 54301,GREEN BAY,WI,44.485313,-88.016868,BROWN 54302,GREEN BAY,WI,44.502508,-87.977136,BROWN 54303,GREEN BAY,WI,44.530146,-88.045262,BROWN 54304,GREEN BAY,WI,44.505525,-88.066799,BROWN 54305,GREEN BAY,WI,44.5126,-88.0103,BROWN 54306,GREEN BAY,WI,44.5191,-88.0197,BROWN 54307,GREEN BAY,WI,44.4817,-88.0206,BROWN 54308,GREEN BAY,WI,44.5192,-87.9718,BROWN 54311,GREEN BAY,WI,44.491405,-87.926685,BROWN 54313,GREEN BAY,WI,44.546289,-88.102054,BROWN 54324,GREEN BAY,WI,44.4794,-88.0181,BROWN 54344,GREEN BAY,WI,44.4207,-88.1102,BROWN 54911,APPLETON,WI,44.277325,-88.397649,OUTAGAMIE 54912,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 54913,APPLETON,WI,44.315,-88.4057,OUTAGAMIE 54914,APPLETON,WI,44.270992,-88.432608,OUTAGAMIE 54915,APPLETON,WI,44.26351,-88.399902,OUTAGAMIE 54919,APPLETON,WI,44.2619,-88.4152,OUTAGAMIE 55101,SAINT PAUL,MN,44.969963,-93.083167,RAMSEY 55102,SAINT PAUL,MN,44.937228,-93.120852,RAMSEY 55103,SAINT PAUL,MN,44.960798,-93.121594,RAMSEY 55104,SAINT PAUL,MN,44.953179,-93.15797,RAMSEY 55105,SAINT PAUL,MN,44.934723,-93.165148,RAMSEY 55106,SAINT PAUL,MN,44.968384,-93.048817,RAMSEY 55107,SAINT PAUL,MN,44.927235,-93.086157,RAMSEY 55108,SAINT PAUL,MN,44.982217,-93.17458,RAMSEY 55109,SAINT PAUL,MN,45.011859,-93.017072,RAMSEY 55110,SAINT PAUL,MN,45.074527,-93.011299,RAMSEY 55111,SAINT PAUL,MN,44.901548,-93.202579,HENNEPIN 55112,SAINT PAUL,MN,45.074129,-93.199691,RAMSEY 55113,SAINT PAUL,MN,45.012876,-93.149245,RAMSEY 55114,SAINT PAUL,MN,44.967968,-93.198067,RAMSEY 55115,SAINT PAUL,MN,45.061132,-92.954847,WASHINGTON 55116,SAINT PAUL,MN,44.914007,-93.172747,RAMSEY 55117,SAINT PAUL,MN,44.992165,-93.103659,RAMSEY 55118,SAINT PAUL,MN,44.902691,-93.096435,DAKOTA 55119,SAINT PAUL,MN,44.955384,-93.008019,RAMSEY 55120,SAINT PAUL,MN,44.873825,-93.12902,DAKOTA 55121,SAINT PAUL,MN,44.843039,-93.16753,DAKOTA 55122,SAINT PAUL,MN,44.803593,-93.196937,DAKOTA 55123,SAINT PAUL,MN,44.809764,-93.14135,DAKOTA 55124,SAINT PAUL,MN,44.746147,-93.20776,DAKOTA 55125,SAINT PAUL,MN,44.916195,-92.951413,WASHINGTON 55126,SAINT PAUL,MN,45.083334,-93.134367,RAMSEY 55127,SAINT PAUL,MN,45.070839,-93.07875,RAMSEY 55128,SAINT PAUL,MN,44.984648,-92.968128,WASHINGTON 55129,SAINT PAUL,MN,44.9114,-92.901,WASHINGTON 55130,SAINT PAUL,MN,44.9718,-93.0826,RAMSEY 55133,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55144,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55145,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55146,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55155,SAINT PAUL,MN,44.954,-93.1023,RAMSEY 55161,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55164,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55165,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55166,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55168,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55169,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55170,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55171,SAINT PAUL,MN,44.9444,-93.093,RAMSEY 55172,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55175,SAINT PAUL,MN,44.9466,-93.087,RAMSEY 55177,SAINT PAUL,MN,45.0136,-93.1567,RAMSEY 55187,SAINT PAUL,MN,44.9445,-93.0932,RAMSEY 55188,SAINT PAUL,MN,44.9453,-92.9105,RAMSEY 55191,SAINT PAUL,MN,45.076,-93.1901,RAMSEY 55348,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55357,LORETTO,MN,45.106099,-93.669165,HENNEPIN 55359,MAPLE PLAIN,MN,44.978686,-93.700214,HENNEPIN 55362,MONTICELLO,MN,45.295557,-93.802252,WRIGHT 55365,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55393,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55394,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55397,YOUNG AMERICA,MN,44.792905,-93.918049,CARVER 55399,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55401,MINNEAPOLIS,MN,44.983473,-93.268251,HENNEPIN 55402,MINNEAPOLIS,MN,44.976184,-93.275871,HENNEPIN 55403,MINNEAPOLIS,MN,44.967345,-93.282841,HENNEPIN 55404,MINNEAPOLIS,MN,44.960891,-93.26416,HENNEPIN 55405,MINNEAPOLIS,MN,44.968734,-93.299096,HENNEPIN 55406,MINNEAPOLIS,MN,44.938359,-93.221357,HENNEPIN 55407,MINNEAPOLIS,MN,44.937787,-93.2545,HENNEPIN 55408,MINNEAPOLIS,MN,44.946575,-93.286173,HENNEPIN 55409,MINNEAPOLIS,MN,44.926378,-93.28182,HENNEPIN 55410,MINNEAPOLIS,MN,44.915366,-93.318187,HENNEPIN 55411,MINNEAPOLIS,MN,44.999601,-93.300548,HENNEPIN 55412,MINNEAPOLIS,MN,45.024236,-93.302033,HENNEPIN 55413,MINNEAPOLIS,MN,44.997994,-93.255194,HENNEPIN 55414,MINNEAPOLIS,MN,44.977908,-93.219904,HENNEPIN 55415,MINNEAPOLIS,MN,44.971455,-93.264403,HENNEPIN 55416,MINNEAPOLIS,MN,44.946899,-93.340344,HENNEPIN 55417,MINNEAPOLIS,MN,44.905371,-93.23606,HENNEPIN 55418,MINNEAPOLIS,MN,45.01923,-93.240108,HENNEPIN 55419,MINNEAPOLIS,MN,44.902567,-93.288618,HENNEPIN 55420,MINNEAPOLIS,MN,44.837284,-93.276034,HENNEPIN 55421,MINNEAPOLIS,MN,45.049582,-93.246095,ANOKA 55422,MINNEAPOLIS,MN,45.016722,-93.339769,HENNEPIN 55423,MINNEAPOLIS,MN,44.875731,-93.281351,HENNEPIN 55424,MINNEAPOLIS,MN,44.904385,-93.335005,HENNEPIN 55425,MINNEAPOLIS,MN,44.843198,-93.249413,HENNEPIN 55426,MINNEAPOLIS,MN,44.954448,-93.379627,HENNEPIN 55427,MINNEAPOLIS,MN,45.010374,-93.381585,HENNEPIN 55428,MINNEAPOLIS,MN,45.060299,-93.376908,HENNEPIN 55429,MINNEAPOLIS,MN,45.067667,-93.340203,HENNEPIN 55430,MINNEAPOLIS,MN,45.061106,-93.299068,HENNEPIN 55431,MINNEAPOLIS,MN,44.827776,-93.312322,HENNEPIN 55432,MINNEAPOLIS,MN,45.095695,-93.253905,ANOKA 55433,MINNEAPOLIS,MN,45.168192,-93.326253,ANOKA 55434,MINNEAPOLIS,MN,45.168083,-93.242557,ANOKA 55435,MINNEAPOLIS,MN,44.877143,-93.371452,HENNEPIN 55437,MINNEAPOLIS,MN,44.823279,-93.343499,HENNEPIN 55438,MINNEAPOLIS,MN,44.823924,-93.380141,HENNEPIN 55439,MINNEAPOLIS,MN,44.873716,-93.332169,HENNEPIN 55440,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55441,MINNEAPOLIS,MN,45.009836,-93.422782,HENNEPIN 55442,MINNEAPOLIS,MN,45.045151,-93.426316,HENNEPIN 55443,MINNEAPOLIS,MN,45.105586,-93.340184,HENNEPIN 55444,MINNEAPOLIS,MN,45.100172,-93.302455,HENNEPIN 55445,MINNEAPOLIS,MN,45.103956,-93.373495,HENNEPIN 55446,MINNEAPOLIS,MN,45.032446,-93.472323,HENNEPIN 55447,MINNEAPOLIS,MN,44.998593,-93.494695,HENNEPIN 55448,MINNEAPOLIS,MN,45.180626,-93.289699,ANOKA 55449,MINNEAPOLIS,MN,45.1647,-93.2111,ANOKA 55450,MINNEAPOLIS,MN,44.865883,-93.247414,HENNEPIN 55454,MINNEAPOLIS,MN,44.968161,-93.242898,HENNEPIN 55455,MINNEAPOLIS,MN,44.981562,-93.23928,HENNEPIN 55458,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55459,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55460,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55467,MINNEAPOLIS,MN,44.98,-93.2638,HENNEPIN 55468,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55470,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55472,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55473,MINNEAPOLIS,MN,44.7827,-93.9133,HENNEPIN 55474,MINNEAPOLIS,MN,44.9767,-93.2682,HENNEPIN 55478,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55479,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55480,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55483,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55484,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55485,MINNEAPOLIS,MN,44.9832,-93.2647,HENNEPIN 55486,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55487,MINNEAPOLIS,MN,44.98,-93.2636,HENNEPIN 55488,MINNEAPOLIS,MN,44.9758,-93.262,HENNEPIN 55550,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55551,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55552,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55553,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55555,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55556,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55557,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55558,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55559,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55560,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55561,MONTICELLO,MN,45.2797,-93.8097,CARVER 55562,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55563,MONTICELLO,MN,45.2797,-93.8097,CARVER 55564,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55565,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55566,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55567,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55568,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55570,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55571,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55573,YOUNG AMERICA,MN,44.8148,-93.921,HENNEPIN 55574,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55576,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55578,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55579,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55580,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55581,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55582,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55584,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55585,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55586,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55587,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55588,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55589,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55590,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55591,MONTICELLO,MN,45.3055,-93.7938,WRIGHT 55592,MAPLE PLAIN,MN,45.0079,-93.6542,WRIGHT 55593,MAPLE PLAIN,MN,45.0079,-93.6542,HENNEPIN 55594,YOUNG AMERICA,MN,44.7827,-93.9133,CARVER 55595,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55596,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55597,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55598,LORETTO,MN,45.1083,-93.6673,HENNEPIN 55599,LORETTO,MN,45.05604,-93.664534,HENNEPIN 55801,DULUTH,MN,47.094431,-91.846731,SAINT LOUIS 55802,DULUTH,MN,46.768475,-92.086497,SAINT LOUIS 55803,DULUTH,MN,46.874913,-92.094057,SAINT LOUIS 55804,DULUTH,MN,46.855131,-92.007433,SAINT LOUIS 55805,DULUTH,MN,46.798733,-92.094553,SAINT LOUIS 55806,DULUTH,MN,46.771457,-92.127871,SAINT LOUIS 55807,DULUTH,MN,46.740783,-92.169821,SAINT LOUIS 55808,DULUTH,MN,46.681002,-92.22261,SAINT LOUIS 55810,DULUTH,MN,46.74459,-92.232332,SAINT LOUIS 55811,DULUTH,MN,46.81341,-92.168225,SAINT LOUIS 55812,DULUTH,MN,46.810598,-92.076693,SAINT LOUIS 55814,DULUTH,MN,46.8367,-92.1878,SAINT LOUIS 55815,DULUTH,MN,46.8197,-92.2595,SAINT LOUIS 55816,DULUTH,MN,46.7596,-92.132,SAINT LOUIS 55901,ROCHESTER,MN,44.049572,-92.48962,OLMSTED 55902,ROCHESTER,MN,44.003217,-92.483519,OLMSTED 55903,ROCHESTER,MN,44.0216,-92.4627,OLMSTED 55904,ROCHESTER,MN,44.010545,-92.397276,OLMSTED 55905,ROCHESTER,MN,44.0213,-92.4671,OLMSTED 55906,ROCHESTER,MN,44.021001,-92.446874,OLMSTED 56301,SAINT CLOUD,MN,45.540972,-94.181857,STEARNS 56302,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56303,SAINT CLOUD,MN,45.571298,-94.203634,STEARNS 56304,SAINT CLOUD,MN,45.552113,-94.128447,BENTON 56372,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56393,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56395,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56396,SAINT CLOUD,MN,45.6176,-94.2451,STEARNS 56397,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56398,SAINT CLOUD,MN,45.48,-94.2518,STEARNS 56399,SAINT CLOUD,MN,45.560556,-94.162222,STEARNS 56901,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56915,WASHINGTON,DC,38.9164,-76.9949,DISTRICT OF COLUMBIA 56920,WASHINGTON,DC,38.8951,-77.0364,DISTRICT OF COLUMBIA 56933,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56944,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 56972,WASHINGTON,DC,38.8588,-76.9868,DISTRICT OF COLUMBIA 57101,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57103,SIOUX FALLS,SD,43.537386,-96.686415,MINNEHAHA 57104,SIOUX FALLS,SD,43.551355,-96.737535,MINNEHAHA 57105,SIOUX FALLS,SD,43.523972,-96.734141,MINNEHAHA 57106,SIOUX FALLS,SD,43.517912,-96.792376,MINNEHAHA 57107,SIOUX FALLS,SD,43.556628,-96.802811,MINNEHAHA 57108,SIOUX FALLS,SD,43.488,-96.7343,LINCOLN 57109,SIOUX FALLS,SD,43.5149,-96.7508,MINNEHAHA 57110,SIOUX FALLS,SD,43.5409,-96.6523,MINNEHAHA 57117,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57118,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57186,SIOUX FALLS,SD,43.5503,-96.7002,MINNEHAHA 57188,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57189,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57192,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57193,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57194,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57195,SIOUX FALLS,SD,43.6017,-96.7051,MINNEHAHA 57196,SIOUX FALLS,SD,43.5444,-96.7232,MINNEHAHA 57197,SIOUX FALLS,SD,43.5271,-96.7364,MINNEHAHA 57198,SIOUX FALLS,SD,43.7326,-96.6285,MINNEHAHA 58102,FARGO,ND,46.900878,-96.793577,CASS 58103,FARGO,ND,46.856406,-96.812252,CASS 58104,FARGO,ND,46.81492,-96.823846,CASS 58105,FARGO,ND,46.8782,-96.7895,CASS 58106,FARGO,ND,46.8782,-96.7895,CASS 58107,FARGO,ND,46.8782,-96.7895,CASS 58108,FARGO,ND,46.8782,-96.7895,CASS 58109,FARGO,ND,46.808,-96.8642,CASS 58121,FARGO,ND,46.8772,-96.7894,CASS 58122,FARGO,ND,46.8772,-96.7894,CASS 58124,FARGO,ND,46.8772,-96.7894,CASS 58125,FARGO,ND,46.8548,-96.8563,CASS 58126,FARGO,ND,46.8772,-96.7894,CASS 58201,GRAND FORKS,ND,47.901041,-97.04463,GRAND FORKS 58202,GRAND FORKS,ND,47.9229,-97.0763,GRAND FORKS 58203,GRAND FORKS,ND,47.927217,-97.067156,GRAND FORKS 58206,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58207,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58208,GRAND FORKS,ND,47.9252,-97.0325,GRAND FORKS 58501,BISMARCK,ND,46.823448,-100.774755,BURLEIGH 58502,BISMARCK,ND,46.849,-100.7169,BURLEIGH 58503,BISMARCK,ND,46.8645,-100.7711,BURLEIGH 58504,BISMARCK,ND,46.782463,-100.774411,BURLEIGH 58505,BISMARCK,ND,46.8166,-100.7789,BURLEIGH 58506,BISMARCK,ND,46.7287,-100.6156,BURLEIGH 58507,BISMARCK,ND,46.849,-100.7169,BURLEIGH 59101,BILLINGS,MT,45.774489,-108.500452,YELLOWSTONE 59102,BILLINGS,MT,45.781265,-108.572662,YELLOWSTONE 59103,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59104,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59105,BILLINGS,MT,45.828443,-108.474726,YELLOWSTONE 59106,BILLINGS,MT,45.775306,-108.65191,YELLOWSTONE 59107,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59108,BILLINGS,MT,45.7744,-108.4937,YELLOWSTONE 59111,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59112,BILLINGS,MT,45.7833,-108.5,YELLOWSTONE 59114,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59115,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59116,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59117,BILLINGS,MT,45.6349,-108.3635,YELLOWSTONE 59601,HELENA,MT,46.613066,-112.021283,LEWIS AND CLARK 59602,HELENA,MT,46.6652,-111.9939,LEWIS AND CLARK 59604,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59620,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59623,HELENA,MT,46.5325,-112.1589,LEWIS AND CLARK 59624,HELENA,MT,46.6075,-112.0122,LEWIS AND CLARK 59625,HELENA,MT,46.601,-112.0391,LEWIS AND CLARK 59626,HELENA,MT,46.5927,-112.0352,LEWIS AND CLARK 59715,BOZEMAN,MT,45.669269,-111.043057,GALLATIN 59717,BOZEMAN,MT,45.6678,-111.0499,GALLATIN 59718,BOZEMAN,MT,45.6723,-111.1211,GALLATIN 59719,BOZEMAN,MT,45.6476,-111.171,GALLATIN 59771,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59772,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59773,BOZEMAN,MT,45.6785,-111.0374,GALLATIN 59801,MISSOULA,MT,46.856274,-114.025207,MISSOULA 59802,MISSOULA,MT,46.900615,-114.002732,MISSOULA 59803,MISSOULA,MT,46.822362,-114.026528,MISSOULA 59804,MISSOULA,MT,46.858,-114.109,MISSOULA 59806,MISSOULA,MT,46.8516,-114.0141,MISSOULA 59807,MISSOULA,MT,47.0005,-113.9872,MISSOULA 59808,MISSOULA,MT,46.9403,-114.0875,MISSOULA 59812,MISSOULA,MT,46.8625,-113.9808,MISSOULA 60038,PALATINE,IL,42.1258,-88.0764,COOK 60055,PALATINE,IL,42.1258,-88.0764,COOK 60067,PALATINE,IL,42.113888,-88.042937,COOK 60074,PALATINE,IL,42.145775,-88.022998,COOK 60078,PALATINE,IL,42.1102,-88.0341,COOK 60094,PALATINE,IL,42.1258,-88.0764,COOK 60095,PALATINE,IL,42.0967,-88.0112,COOK 60116,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60122,CAROL STREAM,IL,42.0372,-88.2811,DUPAGE 60125,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60128,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60132,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60159,SCHAUMBURG,IL,42.0333,-88.0833,COOK 60168,SCHAUMBURG,IL,42.0269,-88.092,COOK 60173,SCHAUMBURG,IL,42.05807,-88.048189,COOK 60188,CAROL STREAM,IL,41.91784,-88.136962,DUPAGE 60193,SCHAUMBURG,IL,42.014432,-88.093481,COOK 60194,SCHAUMBURG,IL,42.039025,-88.109442,COOK 60195,SCHAUMBURG,IL,42.073865,-88.108709,COOK 60196,SCHAUMBURG,IL,42.0269,-88.092,COOK 60197,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60199,CAROL STREAM,IL,41.9166,-88.1209,DUPAGE 60201,EVANSTON,IL,42.054551,-87.694331,COOK 60202,EVANSTON,IL,42.03022,-87.686544,COOK 60203,EVANSTON,IL,42.048487,-87.71759,COOK 60204,EVANSTON,IL,42.0472,-87.6872,COOK 60208,EVANSTON,IL,42.0491,-87.677,COOK 60209,EVANSTON,IL,42.0472,-87.6872,COOK 60290,CHICAGO,IL,41.850033,-87.6500523,COOK 60431,JOLIET,IL,41.527154,-88.08241,WILL 60432,JOLIET,IL,41.537758,-88.057178,WILL 60433,JOLIET,IL,41.511873,-88.05687,WILL 60434,JOLIET,IL,41.525,-88.081667,WILL 60435,JOLIET,IL,41.541468,-88.128107,WILL 60436,JOLIET,IL,41.508818,-88.135779,WILL 60502,AURORA,IL,41.78262,-88.260697,DUPAGE 60503,AURORA,IL,41.710269,-88.258888,DUPAGE 60504,AURORA,IL,41.752269,-88.245281,DUPAGE 60505,AURORA,IL,41.758209,-88.297139,KANE 60506,AURORA,IL,41.766414,-88.344582,KANE 60507,AURORA,IL,41.7605,-88.32,KANE 60540,NAPERVILLE,IL,41.766198,-88.141038,DUPAGE 60563,NAPERVILLE,IL,41.78955,-88.16901,DUPAGE 60564,NAPERVILLE,IL,41.704022,-88.195248,WILL 60565,NAPERVILLE,IL,41.732833,-88.128245,DUPAGE 60566,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60567,NAPERVILLE,IL,41.7858,-88.1472,DUPAGE 60568,AURORA,IL,41.7605,-88.32,KANE 60572,AURORA,IL,41.8017,-88.0685,DUPAGE 60598,AURORA,IL,41.7749,-88.2486,DUPAGE 60601,CHICAGO,IL,41.885847,-87.618123,COOK 60602,CHICAGO,IL,41.882883,-87.632125,COOK 60603,CHICAGO,IL,41.87985,-87.628499,COOK 60604,CHICAGO,IL,41.87845,-87.632999,COOK 60605,CHICAGO,IL,41.87125,-87.627715,COOK 60606,CHICAGO,IL,41.886822,-87.638648,COOK 60607,CHICAGO,IL,41.872075,-87.657845,COOK 60608,CHICAGO,IL,41.851482,-87.669444,COOK 60609,CHICAGO,IL,41.809721,-87.653279,COOK 60610,CHICAGO,IL,41.903294,-87.633565,COOK 60611,CHICAGO,IL,41.897105,-87.622285,COOK 60612,CHICAGO,IL,41.880483,-87.687333,COOK 60613,CHICAGO,IL,41.954341,-87.657491,COOK 60614,CHICAGO,IL,41.92286,-87.648295,COOK 60615,CHICAGO,IL,41.802211,-87.600623,COOK 60616,CHICAGO,IL,41.84258,-87.630552,COOK 60617,CHICAGO,IL,41.725743,-87.556012,COOK 60618,CHICAGO,IL,41.946401,-87.704214,COOK 60619,CHICAGO,IL,41.745765,-87.60539,COOK 60620,CHICAGO,IL,41.741119,-87.654251,COOK 60621,CHICAGO,IL,41.774993,-87.642136,COOK 60622,CHICAGO,IL,41.901923,-87.67785,COOK 60623,CHICAGO,IL,41.849015,-87.7157,COOK 60624,CHICAGO,IL,41.880394,-87.722349,COOK 60625,CHICAGO,IL,41.970325,-87.704157,COOK 60626,CHICAGO,IL,42.009475,-87.668887,COOK 60628,CHICAGO,IL,41.693443,-87.624277,COOK 60629,CHICAGO,IL,41.778149,-87.706936,COOK 60630,CHICAGO,IL,41.969862,-87.760273,COOK 60631,CHICAGO,IL,41.995145,-87.808215,COOK 60632,CHICAGO,IL,41.809274,-87.70518,COOK 60633,CHICAGO,IL,41.649791,-87.549489,COOK 60634,CHICAGO,IL,41.945213,-87.796054,COOK 60636,CHICAGO,IL,41.775989,-87.667368,COOK 60637,CHICAGO,IL,41.781312,-87.605097,COOK 60638,CHICAGO,IL,41.789703,-87.771927,COOK 60639,CHICAGO,IL,41.920162,-87.753502,COOK 60640,CHICAGO,IL,41.971928,-87.662405,COOK 60641,CHICAGO,IL,41.945333,-87.747376,COOK 60643,CHICAGO,IL,41.693243,-87.659445,COOK 60644,CHICAGO,IL,41.882913,-87.758163,COOK 60645,CHICAGO,IL,42.007718,-87.6962,COOK 60646,CHICAGO,IL,41.996414,-87.759172,COOK 60647,CHICAGO,IL,41.920903,-87.704322,COOK 60649,CHICAGO,IL,41.761968,-87.570252,COOK 60651,CHICAGO,IL,41.902509,-87.739307,COOK 60652,CHICAGO,IL,41.745393,-87.713516,COOK 60653,CHICAGO,IL,41.819645,-87.612605,COOK 60654,CHICAGO,IL,41.888533,-87.635292,COOK 60655,CHICAGO,IL,41.693033,-87.702188,COOK 60656,CHICAGO,IL,41.971844,-87.819981,COOK 60657,CHICAGO,IL,41.93992,-87.652805,COOK 60659,CHICAGO,IL,41.991687,-87.700823,COOK 60660,CHICAGO,IL,41.990879,-87.662856,COOK 60661,CHICAGO,IL,41.881351,-87.642969,COOK 60663,CHICAGO,IL,41.8767,-87.6381,COOK 60664,CHICAGO,IL,41.85,-87.65,COOK 60666,CHICAGO,IL,41.9821,-87.906803,COOK 60668,CHICAGO,IL,41.879,-87.6306,COOK 60669,CHICAGO,IL,41.8767,-87.6381,COOK 60670,CHICAGO,IL,41.8767,-87.6381,COOK 60673,CHICAGO,IL,41.8767,-87.6381,COOK 60674,CHICAGO,IL,41.8796,-87.6322,COOK 60675,CHICAGO,IL,41.8767,-87.6381,COOK 60677,CHICAGO,IL,41.8819,-87.6369,COOK 60678,CHICAGO,IL,41.8767,-87.6381,COOK 60679,CHICAGO,IL,41.8767,-87.6381,COOK 60680,CHICAGO,IL,41.8767,-87.6381,COOK 60681,CHICAGO,IL,41.8846,-87.6222,COOK 60682,CHICAGO,IL,41.8649,-87.8115,COOK 60684,CHICAGO,IL,41.8767,-87.6381,COOK 60685,CHICAGO,IL,41.8767,-87.6381,COOK 60686,CHICAGO,IL,41.85,-87.65,COOK 60687,CHICAGO,IL,41.8767,-87.6381,COOK 60688,CHICAGO,IL,41.8501,-87.65,COOK 60689,CHICAGO,IL,41.8746,-87.6332,COOK 60690,CHICAGO,IL,41.879,-87.6306,COOK 60691,CHICAGO,IL,41.879,-87.6306,COOK 60693,CHICAGO,IL,41.8767,-87.6381,COOK 60694,CHICAGO,IL,41.8767,-87.6381,COOK 60695,CHICAGO,IL,41.8501,-87.65,COOK 60696,CHICAGO,IL,41.8501,-87.65,COOK 60697,CHICAGO,IL,41.8767,-87.6381,COOK 60699,CHICAGO,IL,41.8727,-87.6393,COOK 60701,CHICAGO,IL,42.0274,-87.808,COOK 61101,ROCKFORD,IL,42.292233,-89.116118,WINNEBAGO 61102,ROCKFORD,IL,42.254669,-89.124695,WINNEBAGO 61103,ROCKFORD,IL,42.300986,-89.083326,WINNEBAGO 61104,ROCKFORD,IL,42.255355,-89.076779,WINNEBAGO 61105,ROCKFORD,IL,42.3358,-89.1353,WINNEBAGO 61106,ROCKFORD,IL,42.2522,-89.0798,WINNEBAGO 61107,ROCKFORD,IL,42.278629,-89.036107,WINNEBAGO 61108,ROCKFORD,IL,42.251406,-89.023519,WINNEBAGO 61109,ROCKFORD,IL,42.216581,-89.05118,WINNEBAGO 61110,ROCKFORD,IL,42.2668,-89.0823,WINNEBAGO 61112,ROCKFORD,IL,42.245639,-88.970429,WINNEBAGO 61114,ROCKFORD,IL,42.3074,-89.0033,WINNEBAGO 61125,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61126,ROCKFORD,IL,42.2381,-89.0143,WINNEBAGO 61601,PEORIA,IL,40.6854,-89.5953,PEORIA 61602,PEORIA,IL,40.687987,-89.601178,PEORIA 61603,PEORIA,IL,40.713915,-89.580813,PEORIA 61604,PEORIA,IL,40.711142,-89.632377,PEORIA 61605,PEORIA,IL,40.677512,-89.626325,PEORIA 61606,PEORIA,IL,40.698926,-89.612189,PEORIA 61607,PEORIA,IL,40.652434,-89.673898,PEORIA 61612,PEORIA,IL,40.7595,-89.5926,PEORIA 61613,PEORIA,IL,40.7419,-89.6276,PEORIA 61614,PEORIA,IL,40.75481,-89.603295,PEORIA 61615,PEORIA,IL,40.770165,-89.632083,PEORIA 61625,PEORIA,IL,40.6981,-89.6157,PEORIA 61629,PEORIA,IL,40.6936,-89.5888,PEORIA 61630,PEORIA,IL,40.6854,-89.5953,PEORIA 61633,PEORIA,IL,40.7311,-89.6038,PEORIA 61634,PEORIA,IL,40.6893,-89.5921,PEORIA 61635,PEORIA,IL,40.7045,-89.5219,PEORIA 61636,PEORIA,IL,40.7005,-89.5949,PEORIA 61637,PEORIA,IL,40.6936,-89.5888,PEORIA 61638,PEORIA,IL,40.8019,-89.6281,PEORIA 61639,PEORIA,IL,40.6936,-89.5888,PEORIA 61641,PEORIA,IL,40.6936,-89.5888,PEORIA 61643,PEORIA,IL,40.7247,-89.5566,PEORIA 61650,PEORIA,IL,40.6936,-89.5888,PEORIA 61651,PEORIA,IL,40.6936,-89.5888,PEORIA 61652,PEORIA,IL,40.6936,-89.5888,PEORIA 61653,PEORIA,IL,40.6936,-89.5888,PEORIA 61654,PEORIA,IL,40.6936,-89.5888,PEORIA 61655,PEORIA,IL,40.6936,-89.5888,PEORIA 61656,PEORIA,IL,40.6936,-89.5888,PEORIA 61701,BLOOMINGTON,IL,40.478295,-88.989318,MCLEAN 61702,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61704,BLOOMINGTON,IL,40.471618,-88.962466,MCLEAN 61709,BLOOMINGTON,IL,40.4638,-88.9564,MCLEAN 61710,BLOOMINGTON,IL,40.4783,-88.9535,MCLEAN 61791,BLOOMINGTON,IL,40.4885,-88.9563,MCLEAN 61799,BLOOMINGTON,IL,40.4297,-88.9819,MCLEAN 61820,CHAMPAIGN,IL,40.111017,-88.240747,CHAMPAIGN 61821,CHAMPAIGN,IL,40.107262,-88.278847,CHAMPAIGN 61822,CHAMPAIGN,IL,40.1175,-88.293,CHAMPAIGN 61824,CHAMPAIGN,IL,40.109,-88.2433,CHAMPAIGN 61825,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 61826,CHAMPAIGN,IL,40.1371,-88.2771,CHAMPAIGN 62201,EAST SAINT LOUIS,IL,38.631538,-90.138066,SAINT CLAIR 62202,EAST SAINT LOUIS,IL,38.615278,-90.127778,SAINT CLAIR 62203,EAST SAINT LOUIS,IL,38.599191,-90.074449,SAINT CLAIR 62204,EAST SAINT LOUIS,IL,38.631335,-90.102008,SAINT CLAIR 62205,EAST SAINT LOUIS,IL,38.614947,-90.127502,SAINT CLAIR 62206,EAST SAINT LOUIS,IL,38.561899,-90.16587,SAINT CLAIR 62207,EAST SAINT LOUIS,IL,38.58734,-90.12829,SAINT CLAIR 62521,DECATUR,IL,39.827137,-88.925984,MACON 62522,DECATUR,IL,39.843237,-88.986139,MACON 62523,DECATUR,IL,39.841694,-88.953435,MACON 62524,DECATUR,IL,39.9045,-88.9642,MACON 62525,DECATUR,IL,39.8426,-88.9525,MACON 62526,DECATUR,IL,39.877413,-88.953515,MACON 62701,SPRINGFIELD,IL,39.80004,-89.649531,SANGAMON 62702,SPRINGFIELD,IL,39.816768,-89.644147,SANGAMON 62703,SPRINGFIELD,IL,39.772401,-89.63333,SANGAMON 62704,SPRINGFIELD,IL,39.780319,-89.681066,SANGAMON 62705,SPRINGFIELD,IL,39.799,-89.6465,SANGAMON 62706,SPRINGFIELD,IL,39.7987,-89.6534,SANGAMON 62707,SPRINGFIELD,IL,39.772842,-89.663991,SANGAMON 62708,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62711,SPRINGFIELD,IL,39.76,-89.7178,SANGAMON 62712,SPRINGFIELD,IL,39.7359,-89.5993,SANGAMON 62713,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62715,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62716,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62719,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62721,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62722,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62723,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62726,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62736,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62739,SPRINGFIELD,IL,39.8003,-89.6471,SANGAMON 62746,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62756,SPRINGFIELD,IL,39.7971,-89.6535,SANGAMON 62757,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62761,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62762,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62763,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62764,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62765,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62766,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62767,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62769,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62776,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62777,SPRINGFIELD,IL,39.8022,-89.6547,SANGAMON 62781,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62786,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62791,SPRINGFIELD,IL,39.7946,-89.6247,SANGAMON 62794,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 62796,SPRINGFIELD,IL,39.8016,-89.6436,SANGAMON 63101,SAINT LOUIS,MO,38.634616,-90.191313,SAINT LOUIS CITY 63102,SAINT LOUIS,MO,38.630803,-90.18736,SAINT LOUIS CITY 63103,SAINT LOUIS,MO,38.633176,-90.216444,SAINT LOUIS CITY 63104,SAINT LOUIS,MO,38.612819,-90.218512,SAINT LOUIS CITY 63105,SAINT LOUIS,MO,38.642574,-90.324189,SAINT LOUIS 63106,SAINT LOUIS,MO,38.644246,-90.208198,SAINT LOUIS CITY 63107,SAINT LOUIS,MO,38.664522,-90.21249,SAINT LOUIS CITY 63108,SAINT LOUIS,MO,38.644526,-90.254397,SAINT LOUIS CITY 63109,SAINT LOUIS,MO,38.585452,-90.292918,SAINT LOUIS CITY 63110,SAINT LOUIS,MO,38.618534,-90.256381,SAINT LOUIS CITY 63111,SAINT LOUIS,MO,38.563349,-90.249452,SAINT LOUIS CITY 63112,SAINT LOUIS,MO,38.661619,-90.28187,SAINT LOUIS CITY 63113,SAINT LOUIS,MO,38.65896,-90.249633,SAINT LOUIS CITY 63114,SAINT LOUIS,MO,38.704425,-90.363304,SAINT LOUIS 63115,SAINT LOUIS,MO,38.675618,-90.238478,SAINT LOUIS CITY 63116,SAINT LOUIS,MO,38.581356,-90.262543,SAINT LOUIS CITY 63117,SAINT LOUIS,MO,38.629202,-90.324817,SAINT LOUIS 63118,SAINT LOUIS,MO,38.594265,-90.230911,SAINT LOUIS CITY 63119,SAINT LOUIS,MO,38.588853,-90.350807,SAINT LOUIS 63120,SAINT LOUIS,MO,38.690914,-90.25945,SAINT LOUIS CITY 63121,SAINT LOUIS,MO,38.705086,-90.296719,SAINT LOUIS 63122,SAINT LOUIS,MO,38.58486,-90.410042,SAINT LOUIS 63123,SAINT LOUIS,MO,38.550594,-90.325304,SAINT LOUIS 63124,SAINT LOUIS,MO,38.642383,-90.375468,SAINT LOUIS 63125,SAINT LOUIS,MO,38.521899,-90.295909,SAINT LOUIS 63126,SAINT LOUIS,MO,38.550349,-90.378679,SAINT LOUIS 63127,SAINT LOUIS,MO,38.540369,-90.405967,SAINT LOUIS 63128,SAINT LOUIS,MO,38.498285,-90.372275,SAINT LOUIS 63129,SAINT LOUIS,MO,38.468864,-90.32139,SAINT LOUIS 63130,SAINT LOUIS,MO,38.663941,-90.321896,SAINT LOUIS 63131,SAINT LOUIS,MO,38.612479,-90.44264,SAINT LOUIS 63132,SAINT LOUIS,MO,38.672823,-90.369642,SAINT LOUIS 63133,SAINT LOUIS,MO,38.6779,-90.303272,SAINT LOUIS 63134,SAINT LOUIS,MO,38.739614,-90.337834,SAINT LOUIS 63135,SAINT LOUIS,MO,38.748429,-90.302241,SAINT LOUIS 63136,SAINT LOUIS,MO,38.738878,-90.260189,SAINT LOUIS 63137,SAINT LOUIS,MO,38.74885,-90.217778,SAINT LOUIS 63138,SAINT LOUIS,MO,38.787041,-90.211582,SAINT LOUIS 63139,SAINT LOUIS,MO,38.610776,-90.292045,SAINT LOUIS CITY 63140,SAINT LOUIS,MO,38.738482,-90.322846,SAINT LOUIS 63141,SAINT LOUIS,MO,38.661741,-90.457072,SAINT LOUIS 63143,SAINT LOUIS,MO,38.613116,-90.319611,SAINT LOUIS 63144,SAINT LOUIS,MO,38.620839,-90.350944,SAINT LOUIS 63145,SAINT LOUIS,MO,38.7397,-90.3627,SAINT LOUIS 63146,SAINT LOUIS,MO,38.688418,-90.448251,SAINT LOUIS 63147,SAINT LOUIS,MO,38.713889,-90.237512,SAINT LOUIS CITY 63150,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63151,SAINT LOUIS,MO,38.4688,-90.305,SAINT LOUIS 63155,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63156,SAINT LOUIS,MO,38.6368,-90.2445,SAINT LOUIS CITY 63157,SAINT LOUIS,MO,38.6072,-90.2007,SAINT LOUIS CITY 63158,SAINT LOUIS,MO,38.6041,-90.2226,SAINT LOUIS CITY 63160,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63163,SAINT LOUIS,MO,38.5994,-90.2422,SAINT LOUIS CITY 63164,SAINT LOUIS,MO,38.6189,-90.1994,SAINT LOUIS CITY 63166,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63167,SAINT LOUIS,MO,38.6723,-90.4048,SAINT LOUIS 63169,SAINT LOUIS,MO,38.6288,-90.1924,SAINT LOUIS CITY 63171,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63177,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63178,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63179,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63180,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63182,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63188,SAINT LOUIS,MO,38.6294,-90.1963,SAINT LOUIS CITY 63190,SAINT LOUIS,MO,38.6272,-90.1978,SAINT LOUIS CITY 63195,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63196,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63197,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 63198,SAINT LOUIS,MO,38.6583,-90.5672,SAINT LOUIS 63199,SAINT LOUIS,MO,38.6291,-90.2054,SAINT LOUIS CITY 64050,INDEPENDENCE,MO,39.098288,-94.411072,JACKSON 64051,INDEPENDENCE,MO,39.091111,-94.415278,JACKSON 64052,INDEPENDENCE,MO,39.074984,-94.449945,JACKSON 64053,INDEPENDENCE,MO,39.105041,-94.462461,JACKSON 64054,INDEPENDENCE,MO,39.107234,-94.441496,JACKSON 64055,INDEPENDENCE,MO,39.054504,-94.403902,JACKSON 64056,INDEPENDENCE,MO,39.11773,-94.359637,JACKSON 64057,INDEPENDENCE,MO,39.073099,-94.353284,JACKSON 64058,INDEPENDENCE,MO,39.141233,-94.351526,JACKSON 64063,LEES SUMMIT,MO,38.921094,-94.348744,JACKSON 64064,LEES SUMMIT,MO,38.995336,-94.365192,JACKSON 64065,LEES SUMMIT,MO,38.951389,-94.401389,JACKSON 64081,LEES SUMMIT,MO,38.914169,-94.407302,JACKSON 64082,LEES SUMMIT,MO,38.851803,-94.394368,JACKSON 64086,LEES SUMMIT,MO,38.923056,-94.243889,JACKSON 64101,KANSAS CITY,MO,39.10005,-94.601849,JACKSON 64102,KANSAS CITY,MO,39.086067,-94.606596,JACKSON 64105,KANSAS CITY,MO,39.102459,-94.590092,JACKSON 64106,KANSAS CITY,MO,39.105186,-94.569858,JACKSON 64108,KANSAS CITY,MO,39.0837,-94.586826,JACKSON 64109,KANSAS CITY,MO,39.066286,-94.567372,JACKSON 64110,KANSAS CITY,MO,39.036088,-94.572206,JACKSON 64111,KANSAS CITY,MO,39.056483,-94.592942,JACKSON 64112,KANSAS CITY,MO,39.038191,-94.592873,JACKSON 64113,KANSAS CITY,MO,39.01234,-94.593828,JACKSON 64114,KANSAS CITY,MO,38.962147,-94.595941,JACKSON 64116,KANSAS CITY,MO,39.163189,-94.569882,CLAY 64117,KANSAS CITY,MO,39.168111,-94.527367,CLAY 64118,KANSAS CITY,MO,39.213842,-94.570448,CLAY 64119,KANSAS CITY,MO,39.19785,-94.519873,CLAY 64120,KANSAS CITY,MO,39.122206,-94.54873,JACKSON 64121,KANSAS CITY,MO,39.0906,-94.538,JACKSON 64123,KANSAS CITY,MO,39.113593,-94.523545,JACKSON 64124,KANSAS CITY,MO,39.106832,-94.539402,JACKSON 64125,KANSAS CITY,MO,39.104157,-94.492328,JACKSON 64126,KANSAS CITY,MO,39.092255,-94.50466,JACKSON 64127,KANSAS CITY,MO,39.088303,-94.536636,JACKSON 64128,KANSAS CITY,MO,39.065932,-94.538634,JACKSON 64129,KANSAS CITY,MO,39.040093,-94.49513,JACKSON 64130,KANSAS CITY,MO,39.035106,-94.546674,JACKSON 64131,KANSAS CITY,MO,38.971303,-94.57741,JACKSON 64132,KANSAS CITY,MO,38.991073,-94.552156,JACKSON 64133,KANSAS CITY,MO,39.014909,-94.459229,JACKSON 64134,KANSAS CITY,MO,38.929633,-94.500908,JACKSON 64136,KANSAS CITY,MO,39.018684,-94.400774,JACKSON 64137,KANSAS CITY,MO,38.92988,-94.540487,JACKSON 64138,KANSAS CITY,MO,38.96871,-94.479361,JACKSON 64139,KANSAS CITY,MO,38.965891,-94.406086,JACKSON 64141,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64144,KANSAS CITY,MO,39.1433,-94.571,CLAY 64145,KANSAS CITY,MO,38.89767,-94.597607,JACKSON 64146,KANSAS CITY,MO,38.897264,-94.57638,JACKSON 64147,KANSAS CITY,MO,38.861352,-94.529717,JACKSON 64148,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64149,KANSAS CITY,MO,38.860646,-94.463554,JACKSON 64151,KANSAS CITY,MO,39.213876,-94.63318,PLATTE 64152,KANSAS CITY,MO,39.220954,-94.691313,PLATTE 64153,KANSAS CITY,MO,39.262746,-94.697008,PLATTE 64154,KANSAS CITY,MO,39.254728,-94.635444,PLATTE 64155,KANSAS CITY,MO,39.275831,-94.570401,CLAY 64156,KANSAS CITY,MO,39.290052,-94.533614,CLAY 64157,KANSAS CITY,MO,39.276673,-94.459456,CLAY 64158,KANSAS CITY,MO,39.228428,-94.472036,CLAY 64161,KANSAS CITY,MO,39.161506,-94.459829,CLAY 64163,KANSAS CITY,MO,39.359756,-94.719315,PLATTE 64164,KANSAS CITY,MO,39.3426,-94.644643,PLATTE 64165,KANSAS CITY,MO,39.340054,-94.572966,CLAY 64166,KANSAS CITY,MO,39.329399,-94.519858,CLAY 64167,KANSAS CITY,MO,39.309643,-94.465291,CLAY 64168,KANSAS CITY,MO,39.1775,-94.612778,PLATTE 64170,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64171,KANSAS CITY,MO,39.0544,-94.5886,JACKSON 64172,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64179,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64180,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64183,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64184,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64185,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64187,KANSAS CITY,MO,39.0997,-94.5783,JACKSON 64188,KANSAS CITY,MO,39.2239,-94.5852,CLAY 64190,KANSAS CITY,MO,39.2815,-94.7326,PLATTE 64191,KANSAS CITY,MO,39.0844,-94.5844,JACKSON 64192,KANSAS CITY,MO,38.9223,-94.5089,JACKSON 64193,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64194,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64195,KANSAS CITY,MO,39.3035,-94.7198,PLATTE 64196,KANSAS CITY,MO,39.1006,-94.5831,JACKSON 64197,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64198,KANSAS CITY,MO,39.0832,-94.587,JACKSON 64199,KANSAS CITY,MO,39.1032,-94.5826,JACKSON 64501,SAINT JOSEPH,MO,39.768755,-94.838488,BUCHANAN 64502,SAINT JOSEPH,MO,39.7655,-94.8506,BUCHANAN 64503,SAINT JOSEPH,MO,39.733987,-94.817125,BUCHANAN 64504,SAINT JOSEPH,MO,39.707566,-94.867749,BUCHANAN 64505,SAINT JOSEPH,MO,39.796532,-94.844341,BUCHANAN 64506,SAINT JOSEPH,MO,39.789292,-94.804314,BUCHANAN 64507,SAINT JOSEPH,MO,39.755052,-94.817303,BUCHANAN 64508,SAINT JOSEPH,MO,39.7768,-94.7995,BUCHANAN 64944,KANSAS CITY,MO,38.9573,-94.574,JACKSON 64999,KANSAS CITY,MO,38.9573,-94.574,JACKSON 65101,JEFFERSON CITY,MO,38.546212,-92.152462,COLE 65102,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65103,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65104,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65105,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65106,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65107,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65108,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65109,JEFFERSON CITY,MO,38.577272,-92.244298,COLE 65110,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65111,JEFFERSON CITY,MO,38.5004,-92.1514,COLE 65201,COLUMBIA,MO,38.938176,-92.304865,BOONE 65202,COLUMBIA,MO,38.995019,-92.311204,BOONE 65203,COLUMBIA,MO,38.93482,-92.363865,BOONE 65205,COLUMBIA,MO,38.9528,-92.3313,BOONE 65211,COLUMBIA,MO,38.9368,-92.3221,BOONE 65212,COLUMBIA,MO,38.9528,-92.3313,BOONE 65215,COLUMBIA,MO,38.9527,-92.3199,BOONE 65216,COLUMBIA,MO,38.9566,-92.3268,BOONE 65217,COLUMBIA,MO,38.8976,-92.3349,BOONE 65218,COLUMBIA,MO,38.8935,-92.3963,BOONE 65299,COLUMBIA,MO,38.909,-92.2463,BOONE 65801,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65802,SPRINGFIELD,MO,37.211663,-93.29903,GREENE 65803,SPRINGFIELD,MO,37.259327,-93.291232,GREENE 65804,SPRINGFIELD,MO,37.165361,-93.252154,GREENE 65805,SPRINGFIELD,MO,37.2152,-93.298,GREENE 65806,SPRINGFIELD,MO,37.203057,-93.297108,GREENE 65807,SPRINGFIELD,MO,37.166799,-93.308457,GREENE 65808,SPRINGFIELD,MO,37.1885,-93.2619,GREENE 65809,SPRINGFIELD,MO,37.185223,-93.205742,GREENE 65810,SPRINGFIELD,MO,37.113647,-93.289594,GREENE 65814,SPRINGFIELD,MO,37.1668,-93.3247,GREENE 65817,SPRINGFIELD,MO,37.1173,-93.3089,GREENE 65890,SPRINGFIELD,MO,37.2152,-93.295,GREENE 65897,SPRINGFIELD,MO,37.199132,-93.279111,GREENE 65898,SPRINGFIELD,MO,37.2376,-93.2492,GREENE 65899,SPRINGFIELD,MO,37.1494,-93.2502,GREENE 66101,KANSAS CITY,KS,39.115733,-94.627139,WYANDOTTE 66102,KANSAS CITY,KS,39.113247,-94.669337,WYANDOTTE 66103,KANSAS CITY,KS,39.056193,-94.625105,WYANDOTTE 66104,KANSAS CITY,KS,39.137512,-94.679158,WYANDOTTE 66105,KANSAS CITY,KS,39.085025,-94.635646,WYANDOTTE 66106,KANSAS CITY,KS,39.061187,-94.687396,WYANDOTTE 66109,KANSAS CITY,KS,39.143376,-94.785598,WYANDOTTE 66110,KANSAS CITY,KS,39.1164,-94.6916,WYANDOTTE 66111,KANSAS CITY,KS,39.080332,-94.780593,WYANDOTTE 66112,KANSAS CITY,KS,39.115999,-94.764024,WYANDOTTE 66115,KANSAS CITY,KS,39.114534,-94.614647,WYANDOTTE 66117,KANSAS CITY,KS,39.1176,-94.6227,WYANDOTTE 66118,KANSAS CITY,KS,39.096867,-94.608361,WYANDOTTE 66119,KANSAS CITY,KS,39.0616,-94.6092,WYANDOTTE 66160,KANSAS CITY,KS,39.0572,-94.6117,WYANDOTTE 66203,SHAWNEE,KS,39.019802,-94.708303,JOHNSON 66204,OVERLAND PARK,KS,38.992488,-94.674769,JOHNSON 66207,OVERLAND PARK,KS,38.957472,-94.645193,JOHNSON 66210,OVERLAND PARK,KS,38.922007,-94.704788,JOHNSON 66212,OVERLAND PARK,KS,38.958954,-94.68414,JOHNSON 66213,OVERLAND PARK,KS,38.904899,-94.700344,JOHNSON 66214,OVERLAND PARK,KS,38.959929,-94.713265,JOHNSON 66216,SHAWNEE,KS,39.009289,-94.738234,JOHNSON 66217,SHAWNEE,KS,39.004835,-94.779663,JOHNSON 66218,SHAWNEE,KS,39.017431,-94.823913,JOHNSON 66221,OVERLAND PARK,KS,38.85272,-94.706745,JOHNSON 66223,OVERLAND PARK,KS,38.848477,-94.664467,JOHNSON 66224,OVERLAND PARK,KS,38.867526,-94.628903,JOHNSON 66225,OVERLAND PARK,KS,38.8878,-94.6861,JOHNSON 66226,SHAWNEE,KS,38.997764,-94.873017,JOHNSON 66251,OVERLAND PARK,KS,38.9165,-94.6579,JOHNSON 66282,OVERLAND PARK,KS,38.952,-94.6859,JOHNSON 66283,OVERLAND PARK,KS,38.8625,-94.6668,JOHNSON 66286,SHAWNEE,KS,39.024167,-94.718611,JOHNSON 66601,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66603,TOPEKA,KS,39.055344,-95.680212,SHAWNEE 66604,TOPEKA,KS,39.040549,-95.717831,SHAWNEE 66605,TOPEKA,KS,39.015076,-95.643894,SHAWNEE 66606,TOPEKA,KS,39.058345,-95.709458,SHAWNEE 66607,TOPEKA,KS,39.042111,-95.644858,SHAWNEE 66608,TOPEKA,KS,39.085812,-95.686651,SHAWNEE 66609,TOPEKA,KS,38.991899,-95.668069,SHAWNEE 66610,TOPEKA,KS,38.982213,-95.746061,SHAWNEE 66611,TOPEKA,KS,39.014152,-95.69815,SHAWNEE 66612,TOPEKA,KS,39.042714,-95.681806,SHAWNEE 66614,TOPEKA,KS,39.015403,-95.746883,SHAWNEE 66615,TOPEKA,KS,39.04458,-95.790561,SHAWNEE 66616,TOPEKA,KS,39.064479,-95.641302,SHAWNEE 66617,TOPEKA,KS,39.127098,-95.638388,SHAWNEE 66618,TOPEKA,KS,39.132853,-95.70231,SHAWNEE 66619,TOPEKA,KS,38.942859,-95.700728,SHAWNEE 66620,TOPEKA,KS,38.9459,-95.7131,SHAWNEE 66621,TOPEKA,KS,39.0361,-95.7004,SHAWNEE 66622,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66624,TOPEKA,KS,38.9353,-95.6898,SHAWNEE 66625,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66626,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66628,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66629,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66636,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66637,TOPEKA,KS,39.0154,-95.6957,SHAWNEE 66642,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66647,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66652,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66653,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66667,TOPEKA,KS,39.0419,-95.7278,SHAWNEE 66675,TOPEKA,KS,39.1439,-95.7457,SHAWNEE 66683,TOPEKA,KS,39.0682,-95.6662,SHAWNEE 66692,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 66699,TOPEKA,KS,39.0541,-95.6719,SHAWNEE 67201,WICHITA,KS,37.6898,-97.3415,SEDGWICK 67202,WICHITA,KS,37.689945,-97.33551,SEDGWICK 67203,WICHITA,KS,37.704798,-97.363766,SEDGWICK 67204,WICHITA,KS,37.748838,-97.356563,SEDGWICK 67205,WICHITA,KS,37.763929,-97.426924,SEDGWICK 67206,WICHITA,KS,37.699622,-97.239253,SEDGWICK 67207,WICHITA,KS,37.667152,-97.238962,SEDGWICK 67208,WICHITA,KS,37.702428,-97.281062,SEDGWICK 67209,WICHITA,KS,37.677855,-97.42354,SEDGWICK 67210,WICHITA,KS,37.637915,-97.261254,SEDGWICK 67211,WICHITA,KS,37.666181,-97.316451,SEDGWICK 67212,WICHITA,KS,37.700683,-97.438344,SEDGWICK 67213,WICHITA,KS,37.667959,-97.359074,SEDGWICK 67214,WICHITA,KS,37.705051,-97.313284,SEDGWICK 67215,WICHITA,KS,37.633333,-97.424985,SEDGWICK 67216,WICHITA,KS,37.622332,-97.313625,SEDGWICK 67217,WICHITA,KS,37.626574,-97.358139,SEDGWICK 67218,WICHITA,KS,37.669007,-97.280219,SEDGWICK 67219,WICHITA,KS,37.76482,-97.313517,SEDGWICK 67220,WICHITA,KS,37.74548,-97.275915,SEDGWICK 67223,WICHITA,KS,37.748434,-97.467421,SEDGWICK 67226,WICHITA,KS,37.737891,-97.247853,SEDGWICK 67227,WICHITA,KS,37.588466,-97.460561,SEDGWICK 67228,WICHITA,KS,37.776061,-97.201404,SEDGWICK 67230,WICHITA,KS,37.680814,-97.155764,SEDGWICK 67232,WICHITA,KS,37.642797,-97.164278,SEDGWICK 67235,WICHITA,KS,37.668631,-97.461145,SEDGWICK 67260,WICHITA,KS,37.7165,-97.2968,SEDGWICK 67275,WICHITA,KS,37.6728,-97.4437,SEDGWICK 67276,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67277,WICHITA,KS,37.6655,-97.4261,SEDGWICK 67278,WICHITA,KS,37.6922,-97.3372,SEDGWICK 68101,OMAHA,NE,41.261,-95.9376,DOUGLAS 68102,OMAHA,NE,41.258961,-95.940909,DOUGLAS 68103,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68104,OMAHA,NE,41.29186,-95.999888,DOUGLAS 68105,OMAHA,NE,41.243502,-95.962938,DOUGLAS 68106,OMAHA,NE,41.240322,-95.997972,DOUGLAS 68107,OMAHA,NE,41.206783,-95.955877,DOUGLAS 68108,OMAHA,NE,41.238198,-95.933557,DOUGLAS 68109,OMAHA,NE,41.2345,-95.937,DOUGLAS 68110,OMAHA,NE,41.293342,-95.936072,DOUGLAS 68111,OMAHA,NE,41.296212,-95.965045,DOUGLAS 68112,OMAHA,NE,41.329614,-95.959684,DOUGLAS 68114,OMAHA,NE,41.265624,-96.049306,DOUGLAS 68116,OMAHA,NE,41.287854,-96.149462,DOUGLAS 68117,OMAHA,NE,41.206403,-95.995301,DOUGLAS 68118,OMAHA,NE,41.260636,-96.166118,DOUGLAS 68119,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68120,OMAHA,NE,41.2795,-95.9461,DOUGLAS 68122,OMAHA,NE,41.333312,-96.045772,DOUGLAS 68124,OMAHA,NE,41.233814,-96.049515,DOUGLAS 68127,OMAHA,NE,41.201782,-96.055019,DOUGLAS 68130,OMAHA,NE,41.235452,-96.168815,DOUGLAS 68131,OMAHA,NE,41.264658,-95.963891,DOUGLAS 68132,OMAHA,NE,41.265746,-95.995954,DOUGLAS 68134,OMAHA,NE,41.294917,-96.054569,DOUGLAS 68135,OMAHA,NE,41.210419,-96.169827,DOUGLAS 68136,OMAHA,NE,41.168343,-96.209633,SARPY 68137,OMAHA,NE,41.201067,-96.124462,DOUGLAS 68138,OMAHA,NE,41.177724,-96.129718,SARPY 68139,OMAHA,NE,41.2179,-96.1206,DOUGLAS 68142,OMAHA,NE,41.335904,-96.090109,DOUGLAS 68144,OMAHA,NE,41.235599,-96.116772,DOUGLAS 68145,OMAHA,NE,41.2348,-96.1198,DOUGLAS 68152,OMAHA,NE,41.334557,-96.000295,DOUGLAS 68154,OMAHA,NE,41.264167,-96.120611,DOUGLAS 68155,OMAHA,NE,41.2586,-95.9375,DOUGLAS 68157,OMAHA,NE,41.183423,-95.995378,SARPY 68164,OMAHA,NE,41.29552,-96.100793,DOUGLAS 68172,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68175,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68176,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68178,OMAHA,NE,41.2649,-95.9488,DOUGLAS 68179,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68180,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68181,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68182,OMAHA,NE,41.2594,-96.0049,DOUGLAS 68183,OMAHA,NE,41.2495,-95.9305,DOUGLAS 68197,OMAHA,NE,41.2353,-96.1213,DOUGLAS 68198,OMAHA,NE,41.2547,-95.9784,DOUGLAS 68501,LINCOLN,NE,40.8169,-96.7103,LANCASTER 68502,LINCOLN,NE,40.789282,-96.693763,LANCASTER 68503,LINCOLN,NE,40.823339,-96.676623,LANCASTER 68504,LINCOLN,NE,40.839226,-96.653248,LANCASTER 68505,LINCOLN,NE,40.824674,-96.625193,LANCASTER 68506,LINCOLN,NE,40.784796,-96.643052,LANCASTER 68507,LINCOLN,NE,40.847265,-96.628874,LANCASTER 68508,LINCOLN,NE,40.814503,-96.700907,LANCASTER 68509,LINCOLN,NE,40.8,-96.6666,LANCASTER 68510,LINCOLN,NE,40.806345,-96.654458,LANCASTER 68512,LINCOLN,NE,40.756487,-96.694606,LANCASTER 68514,LINCOLN,NE,40.925792,-96.661082,LANCASTER 68516,LINCOLN,NE,40.756807,-96.652304,LANCASTER 68517,LINCOLN,NE,40.931743,-96.604509,LANCASTER 68520,LINCOLN,NE,40.774441,-96.569341,LANCASTER 68521,LINCOLN,NE,40.851044,-96.711006,LANCASTER 68522,LINCOLN,NE,40.793407,-96.747871,LANCASTER 68523,LINCOLN,NE,40.740766,-96.758339,LANCASTER 68524,LINCOLN,NE,40.852913,-96.794345,LANCASTER 68526,LINCOLN,NE,40.731386,-96.587817,LANCASTER 68527,LINCOLN,NE,40.834708,-96.540053,LANCASTER 68528,LINCOLN,NE,40.819541,-96.754496,LANCASTER 68529,LINCOLN,NE,40.8583,-96.6349,LANCASTER 68531,LINCOLN,NE,40.899397,-96.715572,LANCASTER 68532,LINCOLN,NE,40.792159,-96.85509,LANCASTER 68542,LINCOLN,NE,40.8,-96.6666,LANCASTER 68583,LINCOLN,NE,40.8303,-96.6667,LANCASTER 68588,LINCOLN,NE,40.8207,-96.7026,LANCASTER 70001,METAIRIE,LA,29.987138,-90.169513,JEFFERSON 70002,METAIRIE,LA,30.009843,-90.16303,JEFFERSON 70003,METAIRIE,LA,29.99746,-90.21457,JEFFERSON 70004,METAIRIE,LA,29.9759,-90.1608,JEFFERSON 70005,METAIRIE,LA,30.000476,-90.13314,JEFFERSON 70006,METAIRIE,LA,30.012885,-90.191483,JEFFERSON 70009,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70010,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70011,METAIRIE,LA,30.0091,-90.1563,JEFFERSON 70033,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70055,METAIRIE,LA,29.9838,-90.1527,JEFFERSON 70060,METAIRIE,LA,29.8675,-90.0691,JEFFERSON 70112,NEW ORLEANS,LA,29.960484,-90.075301,ORLEANS 70113,NEW ORLEANS,LA,29.940511,-90.084777,ORLEANS 70114,NEW ORLEANS,LA,29.937934,-90.033126,ORLEANS 70115,NEW ORLEANS,LA,29.928863,-90.1005,ORLEANS 70116,NEW ORLEANS,LA,29.968608,-90.064614,ORLEANS 70117,NEW ORLEANS,LA,29.970298,-90.03124,ORLEANS 70118,NEW ORLEANS,LA,29.950352,-90.123598,ORLEANS 70119,NEW ORLEANS,LA,29.974552,-90.085156,ORLEANS 70121,NEW ORLEANS,LA,29.963071,-90.160953,JEFFERSON 70122,NEW ORLEANS,LA,30.005637,-90.064409,ORLEANS 70123,NEW ORLEANS,LA,29.953473,-90.210748,JEFFERSON 70124,NEW ORLEANS,LA,30.007081,-90.109384,ORLEANS 70125,NEW ORLEANS,LA,29.951225,-90.102785,ORLEANS 70126,NEW ORLEANS,LA,30.015341,-90.018913,ORLEANS 70127,NEW ORLEANS,LA,30.033811,-89.980688,ORLEANS 70128,NEW ORLEANS,LA,30.052691,-89.956421,ORLEANS 70129,NEW ORLEANS,LA,30.047984,-89.906206,ORLEANS 70130,NEW ORLEANS,LA,29.932438,-90.073949,ORLEANS 70131,NEW ORLEANS,LA,29.916811,-89.996033,ORLEANS 70139,NEW ORLEANS,LA,29.95,-90.071,ORLEANS 70140,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70141,NEW ORLEANS,LA,29.9928,-90.2587,JEFFERSON 70142,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70143,NEW ORLEANS,LA,29.8272,-90.0212,ORLEANS 70145,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70146,NEW ORLEANS,LA,29.9614,-90.0332,ORLEANS 70148,NEW ORLEANS,LA,30.0315,-90.0437,ORLEANS 70149,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70150,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70151,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70152,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70153,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70154,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70156,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70157,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70158,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70159,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70160,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70161,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70162,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70163,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70164,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70165,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70166,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70167,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70170,NEW ORLEANS,LA,29.9518,-90.0697,ORLEANS 70172,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70174,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70175,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70176,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70177,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70178,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70179,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70181,NEW ORLEANS,LA,29.9639,-90.0654,JEFFERSON 70182,NEW ORLEANS,LA,30.0089,-90.0647,ORLEANS 70183,NEW ORLEANS,LA,29.9656,-90.0644,JEFFERSON 70184,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70185,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70186,NEW ORLEANS,LA,30.0063,-90.0047,ORLEANS 70187,NEW ORLEANS,LA,30.0235,-89.975,ORLEANS 70189,NEW ORLEANS,LA,30.0749,-89.8161,ORLEANS 70190,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70195,NEW ORLEANS,LA,29.9544,-90.075,ORLEANS 70500,LAFAYETTE,LA,30.2240897,-92.0198427,LAFAYETTE 70501,LAFAYETTE,LA,30.236141,-92.008261,LAFAYETTE 70502,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70503,LAFAYETTE,LA,30.184256,-92.049745,LAFAYETTE 70504,LAFAYETTE,LA,30.2244,-92.0451,LAFAYETTE 70505,LAFAYETTE,LA,30.205,-92.0157,LAFAYETTE 70506,LAFAYETTE,LA,30.207707,-92.065623,LAFAYETTE 70507,LAFAYETTE,LA,30.281313,-92.015962,LAFAYETTE 70508,LAFAYETTE,LA,30.158222,-92.023579,LAFAYETTE 70509,LAFAYETTE,LA,30.239,-92.0075,LAFAYETTE 70593,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70595,LAFAYETTE,LA,30.2195,-92.0074,LAFAYETTE 70596,LAFAYETTE,LA,30.1699,-92.0616,LAFAYETTE 70598,LAFAYETTE,LA,30.1765,-92.008,LAFAYETTE 70601,LAKE CHARLES,LA,30.228453,-93.187966,CALCASIEU 70602,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70605,LAKE CHARLES,LA,30.169349,-93.221798,CALCASIEU 70606,LAKE CHARLES,LA,30.166,-93.232,CALCASIEU 70607,LAKE CHARLES,LA,30.1142,-93.2014,CALCASIEU 70609,LAKE CHARLES,LA,30.1809,-93.2157,CALCASIEU 70611,LAKE CHARLES,LA,30.322031,-93.211082,CALCASIEU 70612,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70615,LAKE CHARLES,LA,30.2404,-93.1523,CALCASIEU 70616,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70629,LAKE CHARLES,LA,30.2263,-93.2172,CALCASIEU 70801,BATON ROUGE,LA,30.450731,-91.186954,EAST BATON ROUGE 70802,BATON ROUGE,LA,30.444236,-91.169037,EAST BATON ROUGE 70803,BATON ROUGE,LA,30.4124,-91.1822,EAST BATON ROUGE 70804,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70805,BATON ROUGE,LA,30.48604,-91.148095,EAST BATON ROUGE 70806,BATON ROUGE,LA,30.448486,-91.130046,EAST BATON ROUGE 70807,BATON ROUGE,LA,30.533199,-91.178615,EAST BATON ROUGE 70808,BATON ROUGE,LA,30.406596,-91.146765,EAST BATON ROUGE 70809,BATON ROUGE,LA,30.408891,-91.084213,EAST BATON ROUGE 70810,BATON ROUGE,LA,30.363309,-91.091898,EAST BATON ROUGE 70811,BATON ROUGE,LA,30.53046,-91.126539,EAST BATON ROUGE 70812,BATON ROUGE,LA,30.505159,-91.118111,EAST BATON ROUGE 70813,BATON ROUGE,LA,30.5262,-91.1955,EAST BATON ROUGE 70814,BATON ROUGE,LA,30.484808,-91.068936,EAST BATON ROUGE 70815,BATON ROUGE,LA,30.455809,-91.059558,EAST BATON ROUGE 70816,BATON ROUGE,LA,30.427289,-91.035645,EAST BATON ROUGE 70817,BATON ROUGE,LA,30.390404,-91.00213,EAST BATON ROUGE 70818,BATON ROUGE,LA,30.540832,-91.049964,EAST BATON ROUGE 70819,BATON ROUGE,LA,30.46679,-91.01565,EAST BATON ROUGE 70820,BATON ROUGE,LA,30.379523,-91.167064,EAST BATON ROUGE 70821,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70822,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70823,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70825,BATON ROUGE,LA,30.4484,-91.1832,EAST BATON ROUGE 70826,BATON ROUGE,LA,30.3979,-91.0768,EAST BATON ROUGE 70827,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70831,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70833,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70835,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70836,BATON ROUGE,LA,30.3909,-91.0909,EAST BATON ROUGE 70837,BATON ROUGE,LA,30.5538,-91.0373,EAST BATON ROUGE 70873,BATON ROUGE,LA,30.4476,-91.1772,EAST BATON ROUGE 70874,BATON ROUGE,LA,30.5211,-91.1451,EAST BATON ROUGE 70879,BATON ROUGE,LA,30.3733,-90.9815,EAST BATON ROUGE 70883,BATON ROUGE,LA,30.4494,-91.1827,EAST BATON ROUGE 70884,BATON ROUGE,LA,30.3786,-91.0974,EAST BATON ROUGE 70891,BATON ROUGE,LA,30.449,-91.1784,EAST BATON ROUGE 70892,BATON ROUGE,LA,30.4965,-91.1575,EAST BATON ROUGE 70893,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70894,BATON ROUGE,LA,30.4505,-91.1544,EAST BATON ROUGE 70895,BATON ROUGE,LA,30.4534,-91.0767,EAST BATON ROUGE 70896,BATON ROUGE,LA,30.444,-91.1434,EAST BATON ROUGE 70898,BATON ROUGE,LA,30.4205,-91.1396,EAST BATON ROUGE 71101,SHREVEPORT,LA,32.503743,-93.748696,CADDO 71102,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71103,SHREVEPORT,LA,32.494459,-93.772701,CADDO 71104,SHREVEPORT,LA,32.482978,-93.734862,CADDO 71105,SHREVEPORT,LA,32.458882,-93.714341,CADDO 71106,SHREVEPORT,LA,32.426251,-93.747922,CADDO 71107,SHREVEPORT,LA,32.564652,-93.828781,CADDO 71108,SHREVEPORT,LA,32.448596,-93.781378,CADDO 71109,SHREVEPORT,LA,32.473994,-93.801297,CADDO 71115,SHREVEPORT,LA,32.410156,-93.697402,CADDO 71118,SHREVEPORT,LA,32.397664,-93.802543,CADDO 71119,SHREVEPORT,LA,32.477121,-93.87261,CADDO 71120,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71129,SHREVEPORT,LA,32.41412,-93.874192,CADDO 71130,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71133,SHREVEPORT,LA,32.4881,-93.7677,CADDO 71134,SHREVEPORT,LA,32.4814,-93.7367,CADDO 71135,SHREVEPORT,LA,32.4431,-93.7098,CADDO 71136,SHREVEPORT,LA,32.4222,-93.7587,CADDO 71137,SHREVEPORT,LA,32.5935,-93.8539,CADDO 71138,SHREVEPORT,LA,32.4081,-93.7979,CADDO 71148,SHREVEPORT,LA,32.456,-93.7777,CADDO 71149,SHREVEPORT,LA,32.525,-93.75,CADDO 71150,SHREVEPORT,LA,34.16812,-94.96993,CADDO 71151,SHREVEPORT,LA,32.525,-93.75,CADDO 71152,SHREVEPORT,LA,32.4405,-93.7886,CADDO 71153,SHREVEPORT,LA,32.525,-93.75,CADDO 71154,SHREVEPORT,LA,32.525,-93.75,CADDO 71156,SHREVEPORT,LA,32.525,-93.75,CADDO 71161,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71162,SHREVEPORT,LA,32.525,-93.75,CADDO 71163,SHREVEPORT,LA,32.525,-93.75,CADDO 71164,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71165,SHREVEPORT,LA,32.5127,-93.7468,CADDO 71166,SHREVEPORT,LA,32.525,-93.75,CADDO 71201,MONROE,LA,32.528551,-92.106104,OUACHITA 71202,MONROE,LA,32.463327,-92.090231,OUACHITA 71203,MONROE,LA,32.553038,-92.042241,OUACHITA 71207,MONROE,LA,32.5148,-92.116,OUACHITA 71208,MONROE,LA,32.4967,-92.0756,OUACHITA 71209,MONROE,LA,32.5281,-92.0728,OUACHITA 71210,MONROE,LA,32.5006,-92.1146,OUACHITA 71211,MONROE,LA,32.5985,-92.0179,OUACHITA 71212,MONROE,LA,32.5091,-92.1191,OUACHITA 71213,MONROE,LA,32.5259,-92.0811,OUACHITA 71217,MONROE,LA,32.4923,-92.0957,OUACHITA 71301,ALEXANDRIA,LA,31.288519,-92.463349,RAPIDES 71302,ALEXANDRIA,LA,31.268272,-92.424169,RAPIDES 71303,ALEXANDRIA,LA,31.304838,-92.508892,RAPIDES 71306,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71307,ALEXANDRIA,LA,31.2856,-92.4507,RAPIDES 71309,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71315,ALEXANDRIA,LA,31.2524,-92.4753,RAPIDES 71901,HOT SPRINGS NATIONAL PARK,AR,34.501475,-93.026024,GARLAND 71902,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71903,HOT SPRINGS NATIONAL PARK,AR,34.5114,-93.0537,GARLAND 71909,HOT SPRINGS NATIONAL PARK,AR,34.65862,-93.006386,GARLAND 71913,HOT SPRINGS NATIONAL PARK,AR,34.473304,-93.109177,GARLAND 71914,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 71951,HOT SPRINGS NATIONAL PARK,AR,34.5036,-93.055,GARLAND 72114,NORTH LITTLE ROCK,AR,34.766974,-92.265376,PULASKI 72115,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72116,NORTH LITTLE ROCK,AR,34.807629,-92.237359,PULASKI 72117,NORTH LITTLE ROCK,AR,34.776305,-92.194604,PULASKI 72118,NORTH LITTLE ROCK,AR,34.821598,-92.307875,PULASKI 72119,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72124,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72190,NORTH LITTLE ROCK,AR,34.7789,-92.2694,PULASKI 72198,NORTH LITTLE ROCK,AR,34.772,-92.2717,PULASKI 72199,NORTH LITTLE ROCK,AR,34.901111,-92.310556,PULASKI 72201,LITTLE ROCK,AR,34.748342,-92.281939,PULASKI 72202,LITTLE ROCK,AR,34.736322,-92.274067,PULASKI 72203,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72204,LITTLE ROCK,AR,34.726904,-92.344041,PULASKI 72205,LITTLE ROCK,AR,34.750971,-92.345512,PULASKI 72206,LITTLE ROCK,AR,34.683599,-92.277606,PULASKI 72207,LITTLE ROCK,AR,34.772121,-92.356481,PULASKI 72209,LITTLE ROCK,AR,34.672509,-92.352919,PULASKI 72210,LITTLE ROCK,AR,34.707625,-92.465981,PULASKI 72211,LITTLE ROCK,AR,34.758819,-92.431485,PULASKI 72212,LITTLE ROCK,AR,34.787076,-92.422232,PULASKI 72214,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72215,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72216,LITTLE ROCK,AR,34.6537,-92.2489,PULASKI 72217,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72219,LITTLE ROCK,AR,34.6803,-92.3452,PULASKI 72221,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72222,LITTLE ROCK,AR,34.8025,-92.4398,PULASKI 72223,LITTLE ROCK,AR,34.7928,-92.4794,PULASKI 72225,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72227,LITTLE ROCK,AR,34.775,-92.3765,PULASKI 72231,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72260,LITTLE ROCK,AR,34.7476,-92.2814,PULASKI 72295,LITTLE ROCK,AR,34.7463,-92.2894,PULASKI 72901,FORT SMITH,AR,35.365272,-94.411035,SEBASTIAN 72902,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72903,FORT SMITH,AR,35.342673,-94.378361,SEBASTIAN 72904,FORT SMITH,AR,35.405122,-94.38723,SEBASTIAN 72905,FORT SMITH,AR,35.297366,-94.340521,SEBASTIAN 72906,FORT SMITH,AR,35.332,-94.4001,SEBASTIAN 72908,FORT SMITH,AR,35.3028,-94.4093,SEBASTIAN 72913,FORT SMITH,AR,35.3339,-94.3753,SEBASTIAN 72914,FORT SMITH,AR,35.3858,-94.3983,SEBASTIAN 72916,FORT SMITH,AR,35.250175,-94.370308,SEBASTIAN 72917,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 72918,FORT SMITH,AR,35.3511,-94.3509,SEBASTIAN 72919,FORT SMITH,AR,35.3512,-94.3508,SEBASTIAN 73003,EDMOND,OK,35.68,-97.53,OKLAHOMA 73012,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73013,EDMOND,OK,35.621534,-97.473268,OKLAHOMA 73019,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73025,EDMOND,OK,35.6528323,-97.4780954,OKLAHOMA 73026,NORMAN,OK,35.2277,-97.2813,CLEVELAND 73034,EDMOND,OK,35.666483,-97.479835,OKLAHOMA 73069,NORMAN,OK,35.220389,-97.457743,CLEVELAND 73070,NORMAN,OK,35.2212,-97.4448,CLEVELAND 73071,NORMAN,OK,35.224254,-97.379159,CLEVELAND 73072,NORMAN,OK,35.210733,-97.472984,CLEVELAND 73083,EDMOND,OK,35.5193,-97.3362,OKLAHOMA 73101,OKLAHOMA CITY,OK,35.473,-97.5177,OKLAHOMA 73102,OKLAHOMA CITY,OK,35.472601,-97.519926,OKLAHOMA 73103,OKLAHOMA CITY,OK,35.490957,-97.519591,OKLAHOMA 73104,OKLAHOMA CITY,OK,35.479388,-97.501714,OKLAHOMA 73105,OKLAHOMA CITY,OK,35.510811,-97.500291,OKLAHOMA 73106,OKLAHOMA CITY,OK,35.485328,-97.537228,OKLAHOMA 73107,OKLAHOMA CITY,OK,35.48736,-97.573974,OKLAHOMA 73108,OKLAHOMA CITY,OK,35.444485,-97.561928,OKLAHOMA 73109,OKLAHOMA CITY,OK,35.425944,-97.526131,OKLAHOMA 73110,OKLAHOMA CITY,OK,35.461978,-97.397661,OKLAHOMA 73111,OKLAHOMA CITY,OK,35.504238,-97.480607,OKLAHOMA 73112,OKLAHOMA CITY,OK,35.518435,-97.574639,OKLAHOMA 73113,OKLAHOMA CITY,OK,35.5657,-97.5175,OKLAHOMA 73114,OKLAHOMA CITY,OK,35.570357,-97.525736,OKLAHOMA 73115,OKLAHOMA CITY,OK,35.440093,-97.441645,OKLAHOMA 73116,OKLAHOMA CITY,OK,35.542484,-97.56394,OKLAHOMA 73117,OKLAHOMA CITY,OK,35.479667,-97.472195,OKLAHOMA 73118,OKLAHOMA CITY,OK,35.513645,-97.531908,OKLAHOMA 73119,OKLAHOMA CITY,OK,35.421033,-97.561584,OKLAHOMA 73120,OKLAHOMA CITY,OK,35.583478,-97.563756,OKLAHOMA 73121,OKLAHOMA CITY,OK,35.506235,-97.445183,OKLAHOMA 73122,OKLAHOMA CITY,OK,35.520239,-97.613305,OKLAHOMA 73123,OKLAHOMA CITY,OK,35.537,-97.6228,OKLAHOMA 73124,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73125,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73126,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73127,OKLAHOMA CITY,OK,35.483371,-97.629927,OKLAHOMA 73128,OKLAHOMA CITY,OK,35.444358,-97.616362,OKLAHOMA 73129,OKLAHOMA CITY,OK,35.43119,-97.491309,OKLAHOMA 73130,OKLAHOMA CITY,OK,35.460863,-97.351489,OKLAHOMA 73131,OKLAHOMA CITY,OK,35.579693,-97.469127,OKLAHOMA 73132,OKLAHOMA CITY,OK,35.552783,-97.636333,OKLAHOMA 73134,OKLAHOMA CITY,OK,35.617397,-97.558342,OKLAHOMA 73135,OKLAHOMA CITY,OK,35.411037,-97.438762,OKLAHOMA 73136,OKLAHOMA CITY,OK,35.4946,-97.4778,OKLAHOMA 73137,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73139,OKLAHOMA CITY,OK,35.379193,-97.536205,OKLAHOMA 73140,OKLAHOMA CITY,OK,35.449444,-97.396389,OKLAHOMA 73141,OKLAHOMA CITY,OK,35.491848,-97.366606,OKLAHOMA 73142,OKLAHOMA CITY,OK,35.598994,-97.625067,OKLAHOMA 73143,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73144,OKLAHOMA CITY,OK,35.4087,-97.5548,OKLAHOMA 73146,OKLAHOMA CITY,OK,35.4945,-97.53,OKLAHOMA 73147,OKLAHOMA CITY,OK,35.4861,-97.5817,OKLAHOMA 73148,OKLAHOMA CITY,OK,35.4546,-97.5543,OKLAHOMA 73149,OKLAHOMA CITY,OK,35.394998,-97.497175,OKLAHOMA 73150,OKLAHOMA CITY,OK,35.41231,-97.33308,OKLAHOMA 73151,OKLAHOMA CITY,OK,35.568508,-97.39057,OKLAHOMA 73152,OKLAHOMA CITY,OK,35.4933,-97.505,OKLAHOMA 73153,OKLAHOMA CITY,OK,35.3337,-97.4922,CLEVELAND 73154,OKLAHOMA CITY,OK,35.5235,-97.5249,OKLAHOMA 73155,OKLAHOMA CITY,OK,35.4203,-97.4376,OKLAHOMA 73156,OKLAHOMA CITY,OK,35.5659,-97.5489,OKLAHOMA 73157,OKLAHOMA CITY,OK,35.5109,-97.5658,OKLAHOMA 73159,OKLAHOMA CITY,OK,35.39224,-97.55674,OKLAHOMA 73160,OKLAHOMA CITY,OK,35.342465,-97.487352,CLEVELAND 73162,OKLAHOMA CITY,OK,35.580647,-97.641934,OKLAHOMA 73163,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73164,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73165,OKLAHOMA CITY,OK,35.337086,-97.349792,CLEVELAND 73167,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73169,OKLAHOMA CITY,OK,35.388233,-97.658683,OKLAHOMA 73170,OKLAHOMA CITY,OK,35.341554,-97.536,CLEVELAND 73172,OKLAHOMA CITY,OK,35.5797,-97.6449,OKLAHOMA 73173,OKLAHOMA CITY,OK,35.342455,-97.63171,OKLAHOMA 73178,OKLAHOMA CITY,OK,35.5368,-97.565,OKLAHOMA 73179,OKLAHOMA CITY,OK,35.424157,-97.654729,OKLAHOMA 73184,OKLAHOMA CITY,OK,35.6166,-97.568,OKLAHOMA 73185,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73189,OKLAHOMA CITY,OK,35.3929,-97.579,CLEVELAND 73190,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73193,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73194,OKLAHOMA CITY,OK,35.5182,-97.5025,OKLAHOMA 73195,OKLAHOMA CITY,OK,35.4678,-97.5164,OKLAHOMA 73196,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73197,OKLAHOMA CITY,OK,35.4675,-97.5161,OKLAHOMA 73198,OKLAHOMA CITY,OK,35.5277,-97.569,OKLAHOMA 73199,OKLAHOMA CITY,OK,35.4597,-97.518,OKLAHOMA 73301,AUSTIN,TX,30.2303,-97.7144,TRAVIS 73344,AUSTIN,TX,30.1798,-97.729,TRAVIS 74101,TULSA,OK,36.1504,-95.9953,TULSA 74102,TULSA,OK,36.1504,-95.9953,TULSA 74103,TULSA,OK,36.153858,-95.995426,TULSA 74104,TULSA,OK,36.146446,-95.952566,TULSA 74105,TULSA,OK,36.094808,-95.965544,TULSA 74106,TULSA,OK,36.188296,-95.985956,TULSA 74107,TULSA,OK,36.104199,-96.024448,TULSA 74108,TULSA,OK,36.149893,-95.792311,TULSA 74110,TULSA,OK,36.180296,-95.952492,TULSA 74112,TULSA,OK,36.147039,-95.907036,TULSA 74114,TULSA,OK,36.126152,-95.940796,TULSA 74115,TULSA,OK,36.175408,-95.911183,TULSA 74116,TULSA,OK,36.174994,-95.847695,TULSA 74117,TULSA,OK,36.27949,-95.910768,TULSA 74119,TULSA,OK,36.140688,-95.990194,TULSA 74120,TULSA,OK,36.144228,-95.973373,TULSA 74121,TULSA,OK,36.1504,-95.9953,TULSA 74126,TULSA,OK,36.238288,-95.993113,TULSA 74127,TULSA,OK,36.157636,-96.03107,TULSA 74128,TULSA,OK,36.145927,-95.851377,TULSA 74129,TULSA,OK,36.125928,-95.865354,TULSA 74130,TULSA,OK,36.239481,-95.959649,TULSA 74131,TULSA,OK,36.05566,-96.060229,CREEK 74132,TULSA,OK,36.063971,-96.025104,TULSA 74133,TULSA,OK,36.046717,-95.884062,TULSA 74134,TULSA,OK,36.116223,-95.822472,TULSA 74135,TULSA,OK,36.097603,-95.922805,TULSA 74136,TULSA,OK,36.060548,-95.945178,TULSA 74137,TULSA,OK,36.028426,-95.930597,TULSA 74141,TULSA,OK,36.1303,-95.8752,TULSA 74145,TULSA,OK,36.093433,-95.885576,TULSA 74146,TULSA,OK,36.109293,-95.85061,TULSA 74147,TULSA,OK,36.0969,-95.8861,TULSA 74148,TULSA,OK,36.191,-95.9856,TULSA 74149,TULSA,OK,36.1607,-96.036,TULSA 74150,TULSA,OK,36.1592,-95.9578,TULSA 74152,TULSA,OK,36.1538,-95.9925,TULSA 74153,TULSA,OK,36.0888,-95.9058,TULSA 74155,TULSA,OK,36.097,-95.8775,TULSA 74156,TULSA,OK,36.2481,-95.9752,TULSA 74157,TULSA,OK,36.1011,-96.036,TULSA 74158,TULSA,OK,36.1661,-95.9176,TULSA 74159,TULSA,OK,36.1414,-95.9595,TULSA 74169,TULSA,OK,36.1218,-95.8327,TULSA 74170,TULSA,OK,36.0626,-95.9604,TULSA 74171,TULSA,OK,36.0513,-95.9577,TULSA 74172,TULSA,OK,36.1549,-95.9916,TULSA 74182,TULSA,OK,36.1504,-95.9953,TULSA 74183,TULSA,OK,36.0616,-95.9412,TULSA 74184,TULSA,OK,36.0616,-95.9412,TULSA 74186,TULSA,OK,36.1504,-95.9953,TULSA 74187,TULSA,OK,36.1504,-95.9953,TULSA 74189,TULSA,OK,36.1504,-95.9953,TULSA 74192,TULSA,OK,36.1504,-95.9953,TULSA 74193,TULSA,OK,36.1504,-95.9953,TULSA 74194,TULSA,OK,36.1504,-95.9953,TULSA 75014,IRVING,TX,32.842,-96.9719,DALLAS 75015,IRVING,TX,32.8297,-96.9815,DALLAS 75016,IRVING,TX,32.8138,-96.9486,DALLAS 75017,IRVING,TX,32.8118,-96.9473,DALLAS 75023,PLANO,TX,33.054972,-96.736454,COLLIN 75024,PLANO,TX,33.075211,-96.784307,COLLIN 75025,PLANO,TX,33.078377,-96.729142,COLLIN 75026,PLANO,TX,33.0378,-96.7334,COLLIN 75037,IRVING,TX,32.7833,-96.8,DALLAS 75038,IRVING,TX,32.865309,-96.990503,DALLAS 75039,IRVING,TX,32.869669,-96.938876,DALLAS 75040,GARLAND,TX,32.922744,-96.624804,DALLAS 75041,GARLAND,TX,32.87937,-96.641115,DALLAS 75042,GARLAND,TX,32.918486,-96.677545,DALLAS 75043,GARLAND,TX,32.856502,-96.599882,DALLAS 75044,GARLAND,TX,32.952228,-96.665383,DALLAS 75045,GARLAND,TX,32.945,-96.6822,DALLAS 75046,GARLAND,TX,32.9158,-96.6419,DALLAS 75047,GARLAND,TX,32.8766,-96.6477,DALLAS 75049,GARLAND,TX,32.8565,-96.6031,DALLAS 75060,IRVING,TX,32.80231,-96.959665,DALLAS 75061,IRVING,TX,32.826658,-96.963256,DALLAS 75062,IRVING,TX,32.847854,-96.974027,DALLAS 75063,IRVING,TX,32.924686,-96.959817,DALLAS 75074,PLANO,TX,33.027722,-96.67771,COLLIN 75075,PLANO,TX,33.024985,-96.739743,COLLIN 75086,PLANO,TX,33.0234,-96.6986,COLLIN 75093,PLANO,TX,33.029866,-96.788903,COLLIN 75094,PLANO,TX,33.004873,-96.609101,COLLIN 75149,MESQUITE,TX,32.767821,-96.608219,DALLAS 75150,MESQUITE,TX,32.815416,-96.630681,DALLAS 75180,MESQUITE,TX,32.720216,-96.615278,DALLAS 75181,MESQUITE,TX,32.727166,-96.566889,DALLAS 75185,MESQUITE,TX,32.7666,-96.5988,DALLAS 75187,MESQUITE,TX,32.7666,-96.5988,DALLAS 75201,DALLAS,TX,32.790439,-96.80439,DALLAS 75202,DALLAS,TX,32.778056,-96.805352,DALLAS 75203,DALLAS,TX,32.745985,-96.806976,DALLAS 75204,DALLAS,TX,32.803814,-96.785144,DALLAS 75205,DALLAS,TX,32.836878,-96.793828,DALLAS 75206,DALLAS,TX,32.831029,-96.769219,DALLAS 75207,DALLAS,TX,32.793897,-96.831871,DALLAS 75208,DALLAS,TX,32.749208,-96.838898,DALLAS 75209,DALLAS,TX,32.84564,-96.825984,DALLAS 75210,DALLAS,TX,32.769919,-96.742974,DALLAS 75211,DALLAS,TX,32.736928,-96.881797,DALLAS 75212,DALLAS,TX,32.782884,-96.871396,DALLAS 75214,DALLAS,TX,32.824789,-96.749774,DALLAS 75215,DALLAS,TX,32.758206,-96.76226,DALLAS 75216,DALLAS,TX,32.708611,-96.795488,DALLAS 75217,DALLAS,TX,32.724429,-96.675481,DALLAS 75218,DALLAS,TX,32.846335,-96.697212,DALLAS 75219,DALLAS,TX,32.813245,-96.814166,DALLAS 75220,DALLAS,TX,32.868131,-96.862202,DALLAS 75221,DALLAS,TX,32.7836,-96.7986,DALLAS 75222,DALLAS,TX,32.7833,-96.8,DALLAS 75223,DALLAS,TX,32.794173,-96.747475,DALLAS 75224,DALLAS,TX,32.711415,-96.838711,DALLAS 75225,DALLAS,TX,32.862808,-96.791753,DALLAS 75226,DALLAS,TX,32.78871,-96.767552,DALLAS 75227,DALLAS,TX,32.767226,-96.683586,DALLAS 75228,DALLAS,TX,32.824997,-96.678378,DALLAS 75229,DALLAS,TX,32.8958,-96.8588,DALLAS 75230,DALLAS,TX,32.89994,-96.789679,DALLAS 75231,DALLAS,TX,32.875621,-96.74953,DALLAS 75232,DALLAS,TX,32.664708,-96.838392,DALLAS 75233,DALLAS,TX,32.704638,-96.872547,DALLAS 75234,DALLAS,TX,32.929803,-96.876848,DALLAS 75235,DALLAS,TX,32.825213,-96.838843,DALLAS 75236,DALLAS,TX,32.690002,-96.917737,DALLAS 75237,DALLAS,TX,32.658972,-96.876453,DALLAS 75238,DALLAS,TX,32.876976,-96.707982,DALLAS 75240,DALLAS,TX,32.937431,-96.787214,DALLAS 75241,DALLAS,TX,32.672216,-96.777421,DALLAS 75242,DALLAS,TX,32.7833,-96.8,DALLAS 75243,DALLAS,TX,32.910347,-96.728472,DALLAS 75244,DALLAS,TX,32.925817,-96.842533,DALLAS 75245,DALLAS,TX,32.8207,-96.8398,DALLAS 75246,DALLAS,TX,32.79484,-96.769696,DALLAS 75247,DALLAS,TX,32.801323,-96.887123,DALLAS 75248,DALLAS,TX,32.968199,-96.794242,DALLAS 75249,DALLAS,TX,32.636024,-96.949266,DALLAS 75250,DALLAS,TX,32.7801,-96.8014,DALLAS 75251,DALLAS,TX,32.912203,-96.771831,DALLAS 75252,DALLAS,TX,32.996848,-96.792113,COLLIN 75253,DALLAS,TX,32.683311,-96.59643,DALLAS 75254,DALLAS,TX,32.9464,-96.8022,DALLAS 75258,DALLAS,TX,32.8092,-96.8894,DALLAS 75260,DALLAS,TX,32.7833,-96.8,DALLAS 75261,DALLAS,TX,32.8939,-97.0404,DALLAS 75262,DALLAS,TX,32.7833,-96.8,DALLAS 75263,DALLAS,TX,32.7833,-96.8,DALLAS 75264,DALLAS,TX,32.7833,-96.8,DALLAS 75265,DALLAS,TX,32.7833,-96.8,DALLAS 75266,DALLAS,TX,32.7833,-96.8,DALLAS 75267,DALLAS,TX,32.7833,-96.8,DALLAS 75270,DALLAS,TX,32.7807,-96.8015,DALLAS 75275,DALLAS,TX,32.8351,-96.7848,DALLAS 75277,DALLAS,TX,32.7833,-96.8,DALLAS 75283,DALLAS,TX,32.8366,-96.7963,DALLAS 75284,DALLAS,TX,32.8366,-96.7963,DALLAS 75285,DALLAS,TX,32.7833,-96.8,DALLAS 75286,DALLAS,TX,32.7833,-96.8,DALLAS 75287,DALLAS,TX,33.000458,-96.83143,COLLIN 75301,DALLAS,TX,32.7833,-96.8,DALLAS 75303,DALLAS,TX,32.7833,-96.8,DALLAS 75310,DALLAS,TX,32.7833,-96.8,DALLAS 75312,DALLAS,TX,32.7833,-96.8,DALLAS 75313,DALLAS,TX,32.7833,-96.8,DALLAS 75315,DALLAS,TX,32.7739,-96.7689,DALLAS 75320,DALLAS,TX,32.7833,-96.8,DALLAS 75323,DALLAS,TX,32.9698,-96.8001,DALLAS 75326,DALLAS,TX,32.8633,-96.9804,DALLAS 75334,DALLAS,TX,32.8375,-96.8653,DALLAS 75336,DALLAS,TX,32.6713,-96.6193,DALLAS 75339,DALLAS,TX,32.7144,-96.7835,DALLAS 75340,DALLAS,TX,32.8375,-96.8653,DALLAS 75342,DALLAS,TX,32.809,-96.8894,DALLAS 75343,DALLAS,TX,32.8375,-96.8653,DALLAS 75344,DALLAS,TX,32.8375,-96.8653,DALLAS 75353,DALLAS,TX,32.7833,-96.8,DALLAS 75354,DALLAS,TX,32.8601,-96.8869,DALLAS 75355,DALLAS,TX,32.8791,-96.708,DALLAS 75356,DALLAS,TX,32.8092,-96.8894,DALLAS 75357,DALLAS,TX,32.7833,-96.8,DALLAS 75358,DALLAS,TX,32.9397,-96.8722,DALLAS 75359,DALLAS,TX,32.8136,-96.7559,DALLAS 75360,DALLAS,TX,32.8282,-96.7456,DALLAS 75363,DALLAS,TX,32.9382,-96.7932,DALLAS 75364,DALLAS,TX,32.7833,-96.8,DALLAS 75367,DALLAS,TX,32.9022,-96.7921,DALLAS 75368,DALLAS,TX,32.9207,-96.9762,DALLAS 75370,DALLAS,TX,32.9899,-96.831,DALLAS 75371,DALLAS,TX,32.7739,-96.7689,DALLAS 75372,DALLAS,TX,32.8417,-96.7723,DALLAS 75373,DALLAS,TX,32.7833,-96.8,DALLAS 75374,DALLAS,TX,32.9133,-96.7439,DALLAS 75376,DALLAS,TX,32.7107,-96.8388,DALLAS 75378,DALLAS,TX,32.894,-96.8697,DALLAS 75379,DALLAS,TX,32.9382,-96.7932,DALLAS 75380,DALLAS,TX,32.9335,-96.8172,DALLAS 75381,DALLAS,TX,32.9439,-96.8899,DALLAS 75382,DALLAS,TX,32.8775,-96.7492,DALLAS 75386,DALLAS,TX,32.786667,-96.802222,DALLAS 75387,DALLAS,TX,32.7833,-96.8,DALLAS 75388,DALLAS,TX,32.7833,-96.8,DALLAS 75389,DALLAS,TX,32.7833,-96.8,DALLAS 75390,DALLAS,TX,32.8126,-96.8384,DALLAS 75391,DALLAS,TX,32.8366,-96.7963,DALLAS 75392,DALLAS,TX,32.7833,-96.8,DALLAS 75393,DALLAS,TX,32.7833,-96.8,DALLAS 75394,DALLAS,TX,32.7833,-96.8,DALLAS 75395,DALLAS,TX,32.7107,-96.8388,DALLAS 75396,DALLAS,TX,32.7833,-96.8,DALLAS 75397,DALLAS,TX,32.7833,-96.8,DALLAS 75398,DALLAS,TX,32.7833,-96.8,DALLAS 75501,TEXARKANA,TX,33.407371,-94.118245,BOWIE 75503,TEXARKANA,TX,33.466906,-94.077374,BOWIE 75504,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75505,TEXARKANA,TX,33.425,-94.0475,BOWIE 75507,TEXARKANA,TX,33.3549,-94.2202,BOWIE 75599,TEXARKANA,TX,33.4425,-94.0776,BOWIE 75601,LONGVIEW,TX,32.526854,-94.72328,GREGG 75602,LONGVIEW,TX,32.472373,-94.710078,GREGG 75603,LONGVIEW,TX,32.426368,-94.711691,GREGG 75604,LONGVIEW,TX,32.525139,-94.798957,GREGG 75605,LONGVIEW,TX,32.554711,-94.776748,GREGG 75606,LONGVIEW,TX,32.4955,-94.7377,GREGG 75607,LONGVIEW,TX,32.4628,-94.7305,GREGG 75608,LONGVIEW,TX,32.5005,-94.7402,GREGG 75615,LONGVIEW,TX,32.4628,-94.7305,GREGG 75701,TYLER,TX,32.325366,-95.292179,SMITH 75702,TYLER,TX,32.361969,-95.311652,SMITH 75703,TYLER,TX,32.276827,-95.303147,SMITH 75704,TYLER,TX,32.373781,-95.406977,SMITH 75705,TYLER,TX,32.376599,-95.125225,SMITH 75706,TYLER,TX,32.444148,-95.330993,SMITH 75707,TYLER,TX,32.303782,-95.192692,SMITH 75708,TYLER,TX,32.389193,-95.244354,SMITH 75709,TYLER,TX,32.307817,-95.395563,SMITH 75710,TYLER,TX,32.3511,-95.3008,SMITH 75711,TYLER,TX,32.3511,-95.3008,SMITH 75712,TYLER,TX,32.3511,-95.3008,SMITH 75713,TYLER,TX,32.3511,-95.3008,SMITH 75798,TYLER,TX,32.3325,-95.2848,SMITH 75799,TYLER,TX,32.3132,-95.2457,SMITH 76001,ARLINGTON,TX,32.6336,-97.1469,TARRANT 76002,ARLINGTON,TX,32.6252,-97.0977,TARRANT 76003,ARLINGTON,TX,32.6578,-97.1723,TARRANT 76004,ARLINGTON,TX,32.7344,-97.1043,TARRANT 76005,ARLINGTON,TX,32.7531,-97.0591,TARRANT 76006,ARLINGTON,TX,32.778494,-97.083425,TARRANT 76007,ARLINGTON,TX,32.7204,-97.0822,TARRANT 76010,ARLINGTON,TX,32.720368,-97.082576,TARRANT 76011,ARLINGTON,TX,32.758236,-97.100302,TARRANT 76012,ARLINGTON,TX,32.753962,-97.134808,TARRANT 76013,ARLINGTON,TX,32.719905,-97.14416,TARRANT 76014,ARLINGTON,TX,32.695425,-97.087556,TARRANT 76015,ARLINGTON,TX,32.693125,-97.134685,TARRANT 76016,ARLINGTON,TX,32.688898,-97.190466,TARRANT 76017,ARLINGTON,TX,32.65545,-97.159899,TARRANT 76018,ARLINGTON,TX,32.654752,-97.091987,TARRANT 76019,ARLINGTON,TX,32.7286,-97.1159,TARRANT 76094,ARLINGTON,TX,32.7234,-97.1487,TARRANT 76096,ARLINGTON,TX,32.621,-97.0718,TARRANT 76101,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76102,FORT WORTH,TX,32.758897,-97.328023,TARRANT 76103,FORT WORTH,TX,32.747005,-97.260394,TARRANT 76104,FORT WORTH,TX,32.725551,-97.318409,TARRANT 76105,FORT WORTH,TX,32.723325,-97.26899,TARRANT 76106,FORT WORTH,TX,32.796849,-97.356008,TARRANT 76107,FORT WORTH,TX,32.739175,-97.385248,TARRANT 76108,FORT WORTH,TX,32.759271,-97.474063,TARRANT 76109,FORT WORTH,TX,32.700246,-97.378876,TARRANT 76110,FORT WORTH,TX,32.706505,-97.337505,TARRANT 76111,FORT WORTH,TX,32.782382,-97.300327,TARRANT 76112,FORT WORTH,TX,32.749297,-97.218122,TARRANT 76113,FORT WORTH,TX,32.7469,-97.3268,TARRANT 76114,FORT WORTH,TX,32.775379,-97.401526,TARRANT 76115,FORT WORTH,TX,32.679618,-97.333634,TARRANT 76116,FORT WORTH,TX,32.723032,-97.448279,TARRANT 76118,FORT WORTH,TX,32.808944,-97.222781,TARRANT 76119,FORT WORTH,TX,32.691379,-97.267492,TARRANT 76120,FORT WORTH,TX,32.763912,-97.178112,TARRANT 76121,FORT WORTH,TX,32.7314,-97.4503,TARRANT 76122,FORT WORTH,TX,32.6824,-97.3469,TARRANT 76123,FORT WORTH,TX,32.625361,-97.365838,TARRANT 76124,FORT WORTH,TX,32.7471,-97.2159,TARRANT 76126,FORT WORTH,TX,32.670023,-97.464141,TARRANT 76129,FORT WORTH,TX,32.7108,-97.3602,TARRANT 76130,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76131,FORT WORTH,TX,32.863156,-97.337656,TARRANT 76132,FORT WORTH,TX,32.671092,-97.405626,TARRANT 76133,FORT WORTH,TX,32.652561,-97.375849,TARRANT 76134,FORT WORTH,TX,32.646886,-97.332467,TARRANT 76135,FORT WORTH,TX,32.824844,-97.45191,TARRANT 76136,FORT WORTH,TX,32.8967,-97.457,TARRANT 76137,FORT WORTH,TX,32.866421,-97.289114,TARRANT 76140,FORT WORTH,TX,32.631332,-97.270406,TARRANT 76147,FORT WORTH,TX,32.751,-97.364,TARRANT 76148,FORT WORTH,TX,32.8681,-97.249029,TARRANT 76150,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76155,FORT WORTH,TX,32.824742,-97.050285,TARRANT 76161,FORT WORTH,TX,32.8245,-97.3208,TARRANT 76162,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76163,FORT WORTH,TX,32.6504,-97.3765,TARRANT 76164,FORT WORTH,TX,32.7822,-97.3564,TARRANT 76166,FORT WORTH,TX,32.725409,-97.3208496,TARRANT 76177,FORT WORTH,TX,32.901017,-97.332671,TARRANT 76179,FORT WORTH,TX,32.872961,-97.403149,TARRANT 76181,FORT WORTH,TX,32.8548,-97.2117,TARRANT 76185,FORT WORTH,TX,32.8647,-97.2151,TARRANT 76191,FORT WORTH,TX,32.8068,-97.3515,TARRANT 76192,FORT WORTH,TX,32.9295,-97.4351,TARRANT 76193,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76195,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76196,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76197,FORT WORTH,TX,32.7789,-97.2995,TARRANT 76198,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76199,FORT WORTH,TX,32.7252,-97.3205,TARRANT 76201,DENTON,TX,33.22893,-97.131436,DENTON 76202,DENTON,TX,33.2147,-97.1327,DENTON 76203,DENTON,TX,33.2147,-97.1327,DENTON 76204,DENTON,TX,33.2147,-97.1327,DENTON 76205,DENTON,TX,33.180106,-97.101833,DENTON 76206,DENTON,TX,33.2566,-97.1536,DENTON 76207,DENTON,TX,33.2404,-97.1649,DENTON 76208,DENTON,TX,33.2031,-97.0642,DENTON 76209,DENTON,TX,33.2343,-97.1119,DENTON 76210,DENTON,TX,33.1511,-97.0905,DENTON 76301,WICHITA FALLS,TX,33.905284,-98.497645,WICHITA 76302,WICHITA FALLS,TX,33.864278,-98.493987,WICHITA 76305,WICHITA FALLS,TX,33.937345,-98.540679,WICHITA 76306,WICHITA FALLS,TX,33.974595,-98.524835,WICHITA 76307,WICHITA FALLS,TX,33.913611,-98.493056,WICHITA 76308,WICHITA FALLS,TX,33.863258,-98.533965,WICHITA 76309,WICHITA FALLS,TX,33.893084,-98.534288,WICHITA 76310,WICHITA FALLS,TX,33.858122,-98.575548,WICHITA 76501,TEMPLE,TX,31.089518,-97.334264,BELL 76502,TEMPLE,TX,31.071004,-97.389781,BELL 76503,TEMPLE,TX,31.1006,-97.3391,BELL 76504,TEMPLE,TX,31.091742,-97.364764,BELL 76505,TEMPLE,TX,31.0183,-97.3279,BELL 76508,TEMPLE,TX,31.1006,-97.3391,BELL 76540,KILLEEN,TX,31.117,-97.7261,BELL 76541,KILLEEN,TX,31.116426,-97.727808,BELL 76542,KILLEEN,TX,31.075056,-97.746736,BELL 76543,KILLEEN,TX,31.100505,-97.676864,BELL 76544,KILLEEN,TX,31.137953,-97.776404,BELL 76545,KILLEEN,TX,31.1169,-97.7275,BELL 76546,KILLEEN,TX,31.1169,-97.7275,BELL 76547,KILLEEN,TX,31.1169,-97.7275,BELL 76549,KILLEEN,TX,31.0839,-97.7818,BELL 76701,WACO,TX,31.552452,-97.139608,MCLENNAN 76702,WACO,TX,31.4721,-97.2468,MCLENNAN 76703,WACO,TX,31.5517,-97.1384,MCLENNAN 76704,WACO,TX,31.575701,-97.126742,MCLENNAN 76705,WACO,TX,31.610787,-97.094575,MCLENNAN 76706,WACO,TX,31.517086,-97.119752,MCLENNAN 76707,WACO,TX,31.552709,-97.158824,MCLENNAN 76708,WACO,TX,31.576544,-97.178635,MCLENNAN 76710,WACO,TX,31.534981,-97.189891,MCLENNAN 76711,WACO,TX,31.519863,-97.150254,MCLENNAN 76714,WACO,TX,31.5283,-97.1917,MCLENNAN 76715,WACO,TX,31.6032,-97.0796,MCLENNAN 76716,WACO,TX,31.4535,-97.0983,MCLENNAN 76795,WACO,TX,31.4721,-97.2468,MCLENNAN 76797,WACO,TX,31.5359,-97.1918,MCLENNAN 76798,WACO,TX,31.5446,-97.1192,MCLENNAN 76799,WACO,TX,31.5359,-97.1918,MCLENNAN 76901,SAN ANGELO,TX,31.478165,-100.481752,TOM GREEN 76902,SAN ANGELO,TX,31.5571,-100.5506,TOM GREEN 76903,SAN ANGELO,TX,31.470735,-100.438586,TOM GREEN 76904,SAN ANGELO,TX,31.419411,-100.480036,TOM GREEN 76905,SAN ANGELO,TX,31.464738,-100.390005,TOM GREEN 76906,SAN ANGELO,TX,31.4636,-100.4366,TOM GREEN 76909,SAN ANGELO,TX,31.4432,-100.4661,TOM GREEN 77001,HOUSTON,TX,29.7652,-95.3657,HARRIS 77002,HOUSTON,TX,29.759366,-95.359361,HARRIS 77003,HOUSTON,TX,29.748903,-95.339108,HARRIS 77004,HOUSTON,TX,29.724687,-95.362546,HARRIS 77005,HOUSTON,TX,29.717856,-95.426261,HARRIS 77006,HOUSTON,TX,29.740899,-95.392255,HARRIS 77007,HOUSTON,TX,29.773603,-95.403421,HARRIS 77008,HOUSTON,TX,29.799096,-95.411797,HARRIS 77009,HOUSTON,TX,29.793558,-95.367481,HARRIS 77010,HOUSTON,TX,29.75125,-95.356549,HARRIS 77011,HOUSTON,TX,29.741992,-95.307262,HARRIS 77012,HOUSTON,TX,29.71491,-95.281925,HARRIS 77013,HOUSTON,TX,29.784169,-95.230134,HARRIS 77014,HOUSTON,TX,29.979637,-95.462497,HARRIS 77015,HOUSTON,TX,29.785287,-95.185189,HARRIS 77016,HOUSTON,TX,29.857855,-95.303199,HARRIS 77017,HOUSTON,TX,29.686301,-95.255485,HARRIS 77018,HOUSTON,TX,29.827166,-95.426631,HARRIS 77019,HOUSTON,TX,29.751651,-95.40539,HARRIS 77020,HOUSTON,TX,29.775759,-95.312101,HARRIS 77021,HOUSTON,TX,29.69538,-95.356151,HARRIS 77022,HOUSTON,TX,29.829862,-95.376862,HARRIS 77023,HOUSTON,TX,29.724179,-95.317777,HARRIS 77024,HOUSTON,TX,29.76958,-95.520063,HARRIS 77025,HOUSTON,TX,29.688897,-95.434107,HARRIS 77026,HOUSTON,TX,29.797168,-95.328775,HARRIS 77027,HOUSTON,TX,29.739571,-95.446032,HARRIS 77028,HOUSTON,TX,29.829657,-95.287886,HARRIS 77029,HOUSTON,TX,29.760326,-95.254861,HARRIS 77030,HOUSTON,TX,29.70372,-95.40619,HARRIS 77031,HOUSTON,TX,29.658144,-95.541281,HARRIS 77032,HOUSTON,TX,29.93676,-95.329883,HARRIS 77033,HOUSTON,TX,29.668566,-95.338157,HARRIS 77034,HOUSTON,TX,29.636395,-95.221615,HARRIS 77035,HOUSTON,TX,29.651833,-95.485368,HARRIS 77036,HOUSTON,TX,29.698447,-95.540464,HARRIS 77037,HOUSTON,TX,29.889161,-95.393515,HARRIS 77038,HOUSTON,TX,29.91956,-95.438601,HARRIS 77039,HOUSTON,TX,29.906731,-95.33338,HARRIS 77040,HOUSTON,TX,29.879613,-95.529969,HARRIS 77041,HOUSTON,TX,29.860187,-95.581663,HARRIS 77042,HOUSTON,TX,29.740446,-95.558895,HARRIS 77043,HOUSTON,TX,29.805181,-95.560734,HARRIS 77044,HOUSTON,TX,29.863485,-95.19757,HARRIS 77045,HOUSTON,TX,29.629717,-95.438166,HARRIS 77046,HOUSTON,TX,29.73279,-95.431845,HARRIS 77047,HOUSTON,TX,29.625443,-95.374993,HARRIS 77048,HOUSTON,TX,29.632097,-95.341606,HARRIS 77049,HOUSTON,TX,29.823471,-95.184815,HARRIS 77050,HOUSTON,TX,29.901456,-95.284837,HARRIS 77051,HOUSTON,TX,29.65792,-95.368763,HARRIS 77052,HOUSTON,TX,29.7577,-95.361,HARRIS 77053,HOUSTON,TX,29.596156,-95.458709,FORT BEND 77054,HOUSTON,TX,29.685209,-95.401677,HARRIS 77055,HOUSTON,TX,29.797064,-95.495787,HARRIS 77056,HOUSTON,TX,29.744584,-95.468282,HARRIS 77057,HOUSTON,TX,29.74217,-95.490253,HARRIS 77058,HOUSTON,TX,29.574787,-95.057413,HARRIS 77059,HOUSTON,TX,29.597493,-95.113354,HARRIS 77060,HOUSTON,TX,29.933462,-95.398061,HARRIS 77061,HOUSTON,TX,29.665221,-95.278987,HARRIS 77062,HOUSTON,TX,29.572084,-95.130292,HARRIS 77063,HOUSTON,TX,29.734843,-95.522039,HARRIS 77064,HOUSTON,TX,29.918981,-95.556894,HARRIS 77065,HOUSTON,TX,29.931933,-95.61063,HARRIS 77066,HOUSTON,TX,29.961027,-95.494717,HARRIS 77067,HOUSTON,TX,29.954717,-95.452158,HARRIS 77068,HOUSTON,TX,30.006867,-95.489661,HARRIS 77069,HOUSTON,TX,29.986292,-95.520827,HARRIS 77070,HOUSTON,TX,29.978099,-95.58027,HARRIS 77071,HOUSTON,TX,29.651838,-95.517554,HARRIS 77072,HOUSTON,TX,29.699026,-95.586155,HARRIS 77073,HOUSTON,TX,30.019767,-95.408671,HARRIS 77074,HOUSTON,TX,29.689601,-95.510588,HARRIS 77075,HOUSTON,TX,29.622276,-95.259983,HARRIS 77076,HOUSTON,TX,29.85801,-95.383442,HARRIS 77077,HOUSTON,TX,29.747656,-95.602991,HARRIS 77078,HOUSTON,TX,29.849724,-95.258208,HARRIS 77079,HOUSTON,TX,29.773759,-95.597993,HARRIS 77080,HOUSTON,TX,29.815854,-95.522986,HARRIS 77081,HOUSTON,TX,29.711926,-95.484531,HARRIS 77082,HOUSTON,TX,29.722283,-95.628533,HARRIS 77083,HOUSTON,TX,29.694709,-95.651098,HARRIS 77084,HOUSTON,TX,29.844022,-95.662329,HARRIS 77085,HOUSTON,TX,29.621787,-95.481945,HARRIS 77086,HOUSTON,TX,29.922667,-95.493868,HARRIS 77087,HOUSTON,TX,29.687579,-95.301062,HARRIS 77088,HOUSTON,TX,29.881694,-95.453877,HARRIS 77089,HOUSTON,TX,29.593978,-95.221786,HARRIS 77090,HOUSTON,TX,30.016673,-95.447002,HARRIS 77091,HOUSTON,TX,29.853448,-95.443521,HARRIS 77092,HOUSTON,TX,29.832391,-95.472031,HARRIS 77093,HOUSTON,TX,29.861661,-95.340286,HARRIS 77094,HOUSTON,TX,29.770536,-95.710742,HARRIS 77095,HOUSTON,TX,29.894115,-95.648082,HARRIS 77096,HOUSTON,TX,29.672205,-95.486066,HARRIS 77097,HOUSTON,TX,29.7652,-95.3657,HARRIS 77098,HOUSTON,TX,29.734987,-95.411778,HARRIS 77099,HOUSTON,TX,29.670869,-95.586613,HARRIS 77201,HOUSTON,TX,29.7652,-95.3657,HARRIS 77202,HOUSTON,TX,29.763,-95.363,HARRIS 77203,HOUSTON,TX,29.763,-95.363,HARRIS 77204,HOUSTON,TX,29.763,-95.363,HARRIS 77205,HOUSTON,TX,29.982,-95.3427,HARRIS 77206,HOUSTON,TX,29.8267,-95.4259,HARRIS 77207,HOUSTON,TX,29.6858,-95.3031,HARRIS 77208,HOUSTON,TX,29.763,-95.363,HARRIS 77209,HOUSTON,TX,29.6198,-95.1882,HARRIS 77210,HOUSTON,TX,29.7652,-95.3657,HARRIS 77212,HOUSTON,TX,29.763,-95.363,HARRIS 77213,HOUSTON,TX,29.7857,-95.2183,HARRIS 77215,HOUSTON,TX,29.7351,-95.5202,HARRIS 77216,HOUSTON,TX,29.763,-95.363,HARRIS 77217,HOUSTON,TX,29.6761,-95.2478,HARRIS 77218,HOUSTON,TX,29.7848,-95.6749,HARRIS 77219,HOUSTON,TX,29.7526,-95.4042,HARRIS 77220,HOUSTON,TX,29.7728,-95.312,HARRIS 77221,HOUSTON,TX,29.7037,-95.355,HARRIS 77222,HOUSTON,TX,29.8299,-95.3763,HARRIS 77223,HOUSTON,TX,29.7273,-95.3206,HARRIS 77224,HOUSTON,TX,29.763,-95.363,HARRIS 77225,HOUSTON,TX,29.6925,-95.4174,HARRIS 77226,HOUSTON,TX,29.7939,-95.3415,HARRIS 77227,HOUSTON,TX,29.7392,-95.4365,HARRIS 77228,HOUSTON,TX,29.8247,-95.2863,HARRIS 77229,HOUSTON,TX,29.7857,-95.2183,HARRIS 77230,HOUSTON,TX,29.6958,-95.3873,HARRIS 77231,HOUSTON,TX,29.6536,-95.4825,HARRIS 77233,HOUSTON,TX,29.763056,-95.363056,HARRIS 77234,HOUSTON,TX,29.6256,-95.2205,HARRIS 77235,HOUSTON,TX,29.6536,-95.4825,HARRIS 77236,HOUSTON,TX,29.7066,-95.4967,HARRIS 77237,HOUSTON,TX,29.7337,-95.499,HARRIS 77238,HOUSTON,TX,29.9207,-95.4425,HARRIS 77240,HOUSTON,TX,29.8573,-95.5374,HARRIS 77241,HOUSTON,TX,29.8573,-95.5374,HARRIS 77242,HOUSTON,TX,29.7316,-95.5596,HARRIS 77243,HOUSTON,TX,29.8157,-95.5204,HARRIS 77244,HOUSTON,TX,29.7459,-95.6096,HARRIS 77245,HOUSTON,TX,29.6135,-95.4213,HARRIS 77246,HOUSTON,TX,29.7369,-95.2607,HARRIS 77247,HOUSTON,TX,29.7369,-95.2607,HARRIS 77248,HOUSTON,TX,29.763,-95.363,HARRIS 77249,HOUSTON,TX,29.8033,-95.3727,HARRIS 77250,HOUSTON,TX,29.8308,-95.4748,HARRIS 77251,HOUSTON,TX,29.7005,-95.5363,HARRIS 77252,HOUSTON,TX,29.7652,-95.3657,HARRIS 77253,HOUSTON,TX,29.7652,-95.3657,HARRIS 77254,HOUSTON,TX,29.6797,-95.4055,HARRIS 77255,HOUSTON,TX,29.8014,-95.4928,HARRIS 77256,HOUSTON,TX,29.7392,-95.4365,HARRIS 77257,HOUSTON,TX,29.7337,-95.499,HARRIS 77258,HOUSTON,TX,29.5481,-95.0887,HARRIS 77259,HOUSTON,TX,29.5768,-95.1407,HARRIS 77260,HOUSTON,TX,29.763,-95.363,HARRIS 77261,HOUSTON,TX,29.674,-95.2464,HARRIS 77262,HOUSTON,TX,29.7233,-95.2784,HARRIS 77263,HOUSTON,TX,29.7298,-95.5174,HARRIS 77265,HOUSTON,TX,29.7247,-95.4413,HARRIS 77266,HOUSTON,TX,29.7469,-95.3935,HARRIS 77267,HOUSTON,TX,29.953,-95.4444,HARRIS 77268,HOUSTON,TX,30.0062,-95.4876,HARRIS 77269,HOUSTON,TX,29.9774,-95.5723,HARRIS 77270,HOUSTON,TX,29.763,-95.363,HARRIS 77271,HOUSTON,TX,29.7562,-95.3653,HARRIS 77272,HOUSTON,TX,29.6883,-95.5847,HARRIS 77273,HOUSTON,TX,30.0174,-95.4453,HARRIS 77274,HOUSTON,TX,29.7066,-95.4967,HARRIS 77275,HOUSTON,TX,29.7562,-95.3653,HARRIS 77276,HOUSTON,TX,29.7369,-95.2607,HARRIS 77277,HOUSTON,TX,29.7247,-95.4413,HARRIS 77278,HOUSTON,TX,29.7369,-95.2607,HARRIS 77279,HOUSTON,TX,29.763,-95.363,HARRIS 77280,HOUSTON,TX,29.8157,-95.5204,HARRIS 77282,HOUSTON,TX,29.7459,-95.6096,HARRIS 77284,HOUSTON,TX,29.763,-95.363,HARRIS 77285,HOUSTON,TX,29.7369,-95.2607,HARRIS 77286,HOUSTON,TX,29.7369,-95.2607,HARRIS 77287,HOUSTON,TX,29.6761,-95.2478,HARRIS 77288,HOUSTON,TX,29.7317,-95.3767,HARRIS 77289,HOUSTON,TX,29.5768,-95.1407,HARRIS 77290,HOUSTON,TX,30.0174,-95.4453,HARRIS 77291,HOUSTON,TX,29.9207,-95.4425,HARRIS 77292,HOUSTON,TX,29.8268,-95.426,HARRIS 77293,HOUSTON,TX,29.8692,-95.3265,HARRIS 77294,HOUSTON,TX,29.7369,-95.2607,HARRIS 77296,HOUSTON,TX,29.7369,-95.2607,HARRIS 77297,HOUSTON,TX,29.763,-95.363,HARRIS 77298,HOUSTON,TX,29.763,-95.363,HARRIS 77299,HOUSTON,TX,29.763,-95.363,HARRIS 77301,CONROE,TX,30.312535,-95.452667,MONTGOMERY 77302,CONROE,TX,30.250357,-95.416087,MONTGOMERY 77303,CONROE,TX,30.344456,-95.369725,MONTGOMERY 77304,CONROE,TX,30.327351,-95.495244,MONTGOMERY 77305,CONROE,TX,30.311667,-95.455833,MONTGOMERY 77306,CONROE,TX,30.333056,-95.357778,MONTGOMERY 77320,HUNTSVILLE,TX,30.7947,-95.5337,WALKER 77340,HUNTSVILLE,TX,30.73435,-95.534186,WALKER 77341,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77342,HUNTSVILLE,TX,30.7247,-95.5519,WALKER 77343,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77344,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77348,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77349,HUNTSVILLE,TX,30.7233,-95.5505,WALKER 77373,SPRING,TX,30.053241,-95.377329,HARRIS 77379,SPRING,TX,30.023377,-95.528481,HARRIS 77380,SPRING,TX,30.13739,-95.468944,MONTGOMERY 77381,SPRING,TX,30.168887,-95.500743,MONTGOMERY 77382,SPRING,TX,30.2042,-95.5308,MONTGOMERY 77383,SPRING,TX,30.0136,-95.5177,HARRIS 77384,CONROE,TX,30.225725,-95.492392,MONTGOMERY 77385,CONROE,TX,30.187695,-95.428789,MONTGOMERY 77386,SPRING,TX,30.128805,-95.423943,MONTGOMERY 77387,SPRING,TX,30.1356,-95.4151,MONTGOMERY 77388,SPRING,TX,30.050546,-95.469456,HARRIS 77389,SPRING,TX,30.104398,-95.506624,HARRIS 77391,SPRING,TX,30.0234,-95.5685,HARRIS 77393,SPRING,TX,30.1474,-95.5086,MONTGOMERY 77449,KATY,TX,29.819922,-95.729267,HARRIS 77450,KATY,TX,29.767632,-95.744506,HARRIS 77491,KATY,TX,29.8398,-95.7771,HARRIS 77492,KATY,TX,29.8398,-95.7771,HARRIS 77493,KATY,TX,29.804876,-95.815988,HARRIS 77494,KATY,TX,29.750893,-95.811675,FORT BEND 77501,PASADENA,TX,29.692,-95.2005,HARRIS 77502,PASADENA,TX,29.678945,-95.198193,HARRIS 77503,PASADENA,TX,29.687696,-95.15721,HARRIS 77504,PASADENA,TX,29.650133,-95.188478,HARRIS 77505,PASADENA,TX,29.651753,-95.146388,HARRIS 77506,PASADENA,TX,29.70087,-95.19895,HARRIS 77507,PASADENA,TX,29.6055,-95.079365,HARRIS 77508,PASADENA,TX,29.6653,-95.1482,HARRIS 77550,GALVESTON,TX,29.298272,-94.79297,GALVESTON 77551,GALVESTON,TX,29.276584,-94.830334,GALVESTON 77552,GALVESTON,TX,29.2821,-94.8147,GALVESTON 77553,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77554,GALVESTON,TX,29.229638,-94.913716,GALVESTON 77555,GALVESTON,TX,29.3026,-94.7954,GALVESTON 77701,BEAUMONT,TX,30.068805,-94.103896,JEFFERSON 77702,BEAUMONT,TX,30.087057,-94.125412,JEFFERSON 77703,BEAUMONT,TX,30.113201,-94.119698,JEFFERSON 77704,BEAUMONT,TX,30.0839,-94.1014,JEFFERSON 77705,BEAUMONT,TX,30.021128,-94.115673,JEFFERSON 77706,BEAUMONT,TX,30.094834,-94.164816,JEFFERSON 77707,BEAUMONT,TX,30.068567,-94.175541,JEFFERSON 77708,BEAUMONT,TX,30.139957,-94.160357,JEFFERSON 77709,BEAUMONT,TX,30.175,-94.201667,JEFFERSON 77710,BEAUMONT,TX,30.0471,-94.0758,JEFFERSON 77713,BEAUMONT,TX,30.084996,-94.260719,JEFFERSON 77720,BEAUMONT,TX,30.0382,-94.158,JEFFERSON 77725,BEAUMONT,TX,30.0976,-94.1665,JEFFERSON 77726,BEAUMONT,TX,30.0932,-94.1463,JEFFERSON 77801,BRYAN,TX,30.632698,-96.36616,BRAZOS 77802,BRYAN,TX,30.658171,-96.335143,BRAZOS 77803,BRYAN,TX,30.691293,-96.371398,BRAZOS 77805,BRYAN,TX,30.7546,-96.3317,BRAZOS 77806,BRYAN,TX,30.7546,-96.3317,BRAZOS 77807,BRYAN,TX,30.6626,-96.4589,BRAZOS 77808,BRYAN,TX,30.774,-96.3085,BRAZOS 77840,COLLEGE STATION,TX,30.604476,-96.31227,BRAZOS 77841,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77842,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77843,COLLEGE STATION,TX,30.614738,-96.340001,BRAZOS 77844,COLLEGE STATION,TX,30.6277,-96.3341,BRAZOS 77845,COLLEGE STATION,TX,30.511811,-96.317113,BRAZOS 78040,LAREDO,TX,27.515538,-99.498579,WEBB 78041,LAREDO,TX,27.556933,-99.490653,WEBB 78042,LAREDO,TX,27.5063,-99.508,WEBB 78043,LAREDO,TX,27.481537,-99.465488,WEBB 78044,LAREDO,TX,27.9133,-99.438,WEBB 78045,LAREDO,TX,27.6136,-99.5182,WEBB 78046,LAREDO,TX,27.43,-99.4664,WEBB 78049,LAREDO,TX,27.9133,-99.438,WEBB 78201,SAN ANTONIO,TX,29.468525,-98.526352,BEXAR 78202,SAN ANTONIO,TX,29.427462,-98.460112,BEXAR 78203,SAN ANTONIO,TX,29.414799,-98.460127,BEXAR 78204,SAN ANTONIO,TX,29.400217,-98.5063,BEXAR 78205,SAN ANTONIO,TX,29.423711,-98.492509,BEXAR 78206,SAN ANTONIO,TX,29.4153,-98.4823,BEXAR 78207,SAN ANTONIO,TX,29.422855,-98.525967,BEXAR 78208,SAN ANTONIO,TX,29.440039,-98.458983,BEXAR 78209,SAN ANTONIO,TX,29.488623,-98.455774,BEXAR 78210,SAN ANTONIO,TX,29.397718,-98.465796,BEXAR 78211,SAN ANTONIO,TX,29.358366,-98.545219,BEXAR 78212,SAN ANTONIO,TX,29.461181,-98.495815,BEXAR 78213,SAN ANTONIO,TX,29.513406,-98.522679,BEXAR 78214,SAN ANTONIO,TX,29.364115,-98.492436,BEXAR 78215,SAN ANTONIO,TX,29.441338,-98.479338,BEXAR 78216,SAN ANTONIO,TX,29.533387,-98.497511,BEXAR 78217,SAN ANTONIO,TX,29.539525,-98.419444,BEXAR 78218,SAN ANTONIO,TX,29.496852,-98.403184,BEXAR 78219,SAN ANTONIO,TX,29.448794,-98.397315,BEXAR 78220,SAN ANTONIO,TX,29.410641,-98.412791,BEXAR 78221,SAN ANTONIO,TX,29.330913,-98.505417,BEXAR 78222,SAN ANTONIO,TX,29.383113,-98.396005,BEXAR 78223,SAN ANTONIO,TX,29.357869,-98.435628,BEXAR 78224,SAN ANTONIO,TX,29.337432,-98.539335,BEXAR 78225,SAN ANTONIO,TX,29.387497,-98.524494,BEXAR 78226,SAN ANTONIO,TX,29.393001,-98.551095,BEXAR 78227,SAN ANTONIO,TX,29.402687,-98.643311,BEXAR 78228,SAN ANTONIO,TX,29.458937,-98.569871,BEXAR 78229,SAN ANTONIO,TX,29.504228,-98.569726,BEXAR 78230,SAN ANTONIO,TX,29.540738,-98.552117,BEXAR 78231,SAN ANTONIO,TX,29.571434,-98.536817,BEXAR 78232,SAN ANTONIO,TX,29.582833,-98.4673,BEXAR 78233,SAN ANTONIO,TX,29.554741,-98.369128,BEXAR 78234,SAN ANTONIO,TX,29.461961,-98.435404,BEXAR 78235,SAN ANTONIO,TX,29.341733,-98.439444,BEXAR 78236,SAN ANTONIO,TX,29.394267,-98.613367,BEXAR 78237,SAN ANTONIO,TX,29.420758,-98.564546,BEXAR 78238,SAN ANTONIO,TX,29.476833,-98.615451,BEXAR 78239,SAN ANTONIO,TX,29.515686,-98.361604,BEXAR 78240,SAN ANTONIO,TX,29.518896,-98.600566,BEXAR 78241,SAN ANTONIO,TX,29.392432,-98.578063,BEXAR 78242,SAN ANTONIO,TX,29.350905,-98.610927,BEXAR 78243,SAN ANTONIO,TX,29.3798,-98.5959,BEXAR 78244,SAN ANTONIO,TX,29.479264,-98.347585,BEXAR 78245,SAN ANTONIO,TX,29.418927,-98.689494,BEXAR 78246,SAN ANTONIO,TX,29.5362,-98.4881,BEXAR 78247,SAN ANTONIO,TX,29.577604,-98.409783,BEXAR 78248,SAN ANTONIO,TX,29.58936,-98.520105,BEXAR 78249,SAN ANTONIO,TX,29.561245,-98.611666,BEXAR 78250,SAN ANTONIO,TX,29.505394,-98.668765,BEXAR 78251,SAN ANTONIO,TX,29.459743,-98.655472,BEXAR 78252,SAN ANTONIO,TX,29.346015,-98.646395,BEXAR 78253,SAN ANTONIO,TX,29.459923,-98.747931,BEXAR 78254,SAN ANTONIO,TX,29.54091,-98.724841,BEXAR 78255,SAN ANTONIO,TX,29.636875,-98.655572,BEXAR 78256,SAN ANTONIO,TX,29.616946,-98.625215,BEXAR 78257,SAN ANTONIO,TX,29.64953,-98.613701,BEXAR 78258,SAN ANTONIO,TX,29.65624,-98.496699,BEXAR 78259,SAN ANTONIO,TX,29.628331,-98.444495,BEXAR 78260,SAN ANTONIO,TX,29.702578,-98.475908,BEXAR 78261,SAN ANTONIO,TX,29.705463,-98.419092,BEXAR 78262,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78263,SAN ANTONIO,TX,29.36143,-98.317386,BEXAR 78264,SAN ANTONIO,TX,29.173345,-98.472272,BEXAR 78265,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78266,SAN ANTONIO,TX,29.644226,-98.312774,COMAL 78268,SAN ANTONIO,TX,29.497,-98.6248,BEXAR 78269,SAN ANTONIO,TX,29.563,-98.5915,BEXAR 78270,SAN ANTONIO,TX,29.5827,-98.4538,BEXAR 78275,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78278,SAN ANTONIO,TX,29.5612,-98.5607,BEXAR 78279,SAN ANTONIO,TX,29.5334,-98.4929,BEXAR 78280,SAN ANTONIO,TX,29.5629,-98.3579,BEXAR 78283,SAN ANTONIO,TX,29.5391,-98.4216,BEXAR 78284,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78285,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78286,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78287,SAN ANTONIO,TX,29.4892,-98.4566,BEXAR 78288,SAN ANTONIO,TX,29.5238,-98.6061,BEXAR 78289,SAN ANTONIO,TX,29.4238,-98.4933,BEXAR 78291,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78292,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78293,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78294,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78295,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78296,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78297,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78298,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78299,SAN ANTONIO,TX,29.4262,-98.4865,BEXAR 78401,CORPUS CHRISTI,TX,27.794086,-97.402994,NUECES 78402,CORPUS CHRISTI,TX,27.82621,-97.385659,NUECES 78403,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78405,CORPUS CHRISTI,TX,27.776234,-97.427132,NUECES 78406,CORPUS CHRISTI,TX,27.768412,-97.51445,NUECES 78407,CORPUS CHRISTI,TX,27.804195,-97.435597,NUECES 78408,CORPUS CHRISTI,TX,27.794477,-97.43815,NUECES 78409,CORPUS CHRISTI,TX,27.814555,-97.527034,NUECES 78410,CORPUS CHRISTI,TX,27.84585,-97.596002,NUECES 78411,CORPUS CHRISTI,TX,27.731139,-97.387732,NUECES 78412,CORPUS CHRISTI,TX,27.70608,-97.353694,NUECES 78413,CORPUS CHRISTI,TX,27.691041,-97.39832,NUECES 78414,CORPUS CHRISTI,TX,27.677016,-97.365016,NUECES 78415,CORPUS CHRISTI,TX,27.726204,-97.40778,NUECES 78416,CORPUS CHRISTI,TX,27.753593,-97.43468,NUECES 78417,CORPUS CHRISTI,TX,27.728964,-97.449429,NUECES 78418,CORPUS CHRISTI,TX,27.668531,-97.266558,NUECES 78419,CORPUS CHRISTI,TX,27.692502,-97.27636,NUECES 78426,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78427,CORPUS CHRISTI,TX,27.7961,-97.4002,NUECES 78460,CORPUS CHRISTI,TX,27.8415,-97.573,NUECES 78461,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78463,CORPUS CHRISTI,TX,27.7739,-97.3983,NUECES 78465,CORPUS CHRISTI,TX,27.7765,-97.4198,NUECES 78466,CORPUS CHRISTI,TX,27.7438,-97.3804,NUECES 78467,CORPUS CHRISTI,TX,27.6574,-97.4676,NUECES 78468,CORPUS CHRISTI,TX,27.705,-97.3589,NUECES 78469,CORPUS CHRISTI,TX,27.7977,-97.4264,NUECES 78470,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78471,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78472,CORPUS CHRISTI,TX,27.6953,-97.4145,NUECES 78473,CORPUS CHRISTI,TX,27.79515,-97.396624,NUECES 78474,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78475,CORPUS CHRISTI,TX,27.7964,-97.3976,NUECES 78476,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78477,CORPUS CHRISTI,TX,27.8002,-97.3961,NUECES 78478,CORPUS CHRISTI,TX,27.7952,-97.3974,NUECES 78480,CORPUS CHRISTI,TX,27.6437,-97.3006,NUECES 78664,ROUND ROCK,TX,30.51452,-97.668028,WILLIAMSON 78665,ROUND ROCK,TX,30.5082551,-97.678896,WILLIAMSON 78680,ROUND ROCK,TX,30.517,-97.6987,WILLIAMSON 78681,ROUND ROCK,TX,30.508431,-97.706171,WILLIAMSON 78682,ROUND ROCK,TX,30.515278,-97.669167,WILLIAMSON 78683,ROUND ROCK,TX,30.4961,-97.646,WILLIAMSON 78701,AUSTIN,TX,30.271289,-97.742559,TRAVIS 78702,AUSTIN,TX,30.263817,-97.716589,TRAVIS 78703,AUSTIN,TX,30.290671,-97.764809,TRAVIS 78704,AUSTIN,TX,30.242831,-97.765788,TRAVIS 78705,AUSTIN,TX,30.289619,-97.739627,TRAVIS 78708,AUSTIN,TX,30.3911,-97.705,TRAVIS 78709,AUSTIN,TX,30.2342,-97.8497,TRAVIS 78710,AUSTIN,TX,30.3545,-97.655,TRAVIS 78711,AUSTIN,TX,30.2782,-97.7376,TRAVIS 78712,AUSTIN,TX,30.2858,-97.7349,TRAVIS 78713,AUSTIN,TX,30.2847,-97.7414,TRAVIS 78714,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78715,AUSTIN,TX,30.2065,-97.7966,TRAVIS 78716,AUSTIN,TX,30.2735,-97.7992,TRAVIS 78717,AUSTIN,TX,30.505972,-97.747187,WILLIAMSON 78718,AUSTIN,TX,30.3612,-97.7166,TRAVIS 78719,AUSTIN,TX,30.180243,-97.666701,TRAVIS 78720,AUSTIN,TX,30.4241,-97.7569,TRAVIS 78721,AUSTIN,TX,30.272144,-97.686798,TRAVIS 78722,AUSTIN,TX,30.289305,-97.71495,TRAVIS 78723,AUSTIN,TX,30.308515,-97.684941,TRAVIS 78724,AUSTIN,TX,30.295982,-97.639587,TRAVIS 78725,AUSTIN,TX,30.256186,-97.624301,TRAVIS 78726,AUSTIN,TX,30.43,-97.832649,TRAVIS 78727,AUSTIN,TX,30.425422,-97.719488,TRAVIS 78728,AUSTIN,TX,30.441679,-97.681123,TRAVIS 78729,AUSTIN,TX,30.45206,-97.768787,WILLIAMSON 78730,AUSTIN,TX,30.360745,-97.824062,TRAVIS 78731,AUSTIN,TX,30.347129,-97.760887,TRAVIS 78732,AUSTIN,TX,30.375233,-97.900685,TRAVIS 78733,AUSTIN,TX,30.331355,-97.866633,TRAVIS 78734,AUSTIN,TX,30.377404,-97.957558,TRAVIS 78735,AUSTIN,TX,30.248978,-97.841423,TRAVIS 78736,AUSTIN,TX,30.244433,-97.915968,TRAVIS 78737,AUSTIN,TX,30.210692,-97.942749,HAYS 78738,AUSTIN,TX,30.333708,-97.982367,TRAVIS 78739,AUSTIN,TX,30.172026,-97.878433,TRAVIS 78741,AUSTIN,TX,30.231513,-97.722317,TRAVIS 78742,AUSTIN,TX,30.231296,-97.670349,TRAVIS 78744,AUSTIN,TX,30.18764,-97.74723,TRAVIS 78745,AUSTIN,TX,30.206298,-97.795599,TRAVIS 78746,AUSTIN,TX,30.285009,-97.808129,TRAVIS 78747,AUSTIN,TX,30.130235,-97.762127,TRAVIS 78748,AUSTIN,TX,30.174311,-97.822474,TRAVIS 78749,AUSTIN,TX,30.216641,-97.850755,TRAVIS 78750,AUSTIN,TX,30.422401,-97.796676,TRAVIS 78751,AUSTIN,TX,30.309288,-97.724163,TRAVIS 78752,AUSTIN,TX,30.331562,-97.700394,TRAVIS 78753,AUSTIN,TX,30.36485,-97.682658,TRAVIS 78754,AUSTIN,TX,30.342331,-97.667267,TRAVIS 78755,AUSTIN,TX,30.3574,-97.7607,TRAVIS 78756,AUSTIN,TX,30.322312,-97.739032,TRAVIS 78757,AUSTIN,TX,30.343732,-97.731617,TRAVIS 78758,AUSTIN,TX,30.376431,-97.707758,TRAVIS 78759,AUSTIN,TX,30.403614,-97.752602,TRAVIS 78760,AUSTIN,TX,30.2139,-97.7339,TRAVIS 78761,AUSTIN,TX,30.3332,-97.6984,TRAVIS 78762,AUSTIN,TX,30.2615,-97.7218,TRAVIS 78763,AUSTIN,TX,30.2969,-97.7668,TRAVIS 78764,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78765,AUSTIN,TX,30.3065,-97.7296,TRAVIS 78766,AUSTIN,TX,30.3514,-97.7318,TRAVIS 78767,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78768,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78769,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78772,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78773,AUSTIN,TX,30.3306,-97.7036,TRAVIS 78774,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78778,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78779,AUSTIN,TX,30.3458,-97.7674,TRAVIS 78780,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78781,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78783,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78785,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78786,AUSTIN,TX,30.3545,-97.655,TRAVIS 78788,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78789,AUSTIN,TX,30.2669,-97.7427,TRAVIS 78798,AUSTIN,TX,30.2822,-97.7639,TRAVIS 78799,AUSTIN,TX,30.2667,-97.7428,TRAVIS 79101,AMARILLO,TX,35.203238,-101.842052,POTTER 79102,AMARILLO,TX,35.199854,-101.84963,POTTER 79103,AMARILLO,TX,35.175134,-101.797587,POTTER 79104,AMARILLO,TX,35.193918,-101.797503,POTTER 79105,AMARILLO,TX,35.2219,-101.8308,POTTER 79106,AMARILLO,TX,35.197741,-101.894918,POTTER 79107,AMARILLO,TX,35.230866,-101.805962,POTTER 79108,AMARILLO,TX,35.277866,-101.830025,POTTER 79109,AMARILLO,TX,35.166332,-101.886764,RANDALL 79110,AMARILLO,TX,35.154468,-101.864063,RANDALL 79111,AMARILLO,TX,35.228619,-101.670342,POTTER 79114,AMARILLO,TX,35.1637,-101.882,RANDALL 79116,AMARILLO,TX,35.2138,-101.8834,POTTER 79117,AMARILLO,TX,35.2224,-101.8118,POTTER 79118,AMARILLO,TX,35.07629,-101.834936,RANDALL 79119,AMARILLO,TX,35.064214,-101.97432,RANDALL 79120,AMARILLO,TX,35.1886,-101.8165,POTTER 79121,AMARILLO,TX,35.169689,-101.926594,RANDALL 79124,AMARILLO,TX,35.270269,-101.942952,POTTER 79159,AMARILLO,TX,35.2219,-101.8308,POTTER 79166,AMARILLO,TX,35.1886,-101.8165,POTTER 79168,AMARILLO,TX,35.1886,-101.8165,POTTER 79172,AMARILLO,TX,35.1886,-101.8165,POTTER 79174,AMARILLO,TX,35.1886,-101.8165,POTTER 79178,AMARILLO,TX,35.1886,-101.8469,POTTER 79185,AMARILLO,TX,35.1886,-101.8165,POTTER 79187,AMARILLO,TX,35.2662,-101.7196,POTTER 79189,AMARILLO,TX,35.1886,-101.8165,POTTER 79401,LUBBOCK,TX,33.586527,-101.860634,LUBBOCK 79402,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79403,LUBBOCK,TX,33.619573,-101.80982,LUBBOCK 79404,LUBBOCK,TX,33.525979,-101.833263,LUBBOCK 79405,LUBBOCK,TX,33.570972,-101.850655,LUBBOCK 79406,LUBBOCK,TX,33.581934,-101.877828,LUBBOCK 79407,LUBBOCK,TX,33.568369,-101.942333,LUBBOCK 79408,LUBBOCK,TX,33.5916,-101.848,LUBBOCK 79409,LUBBOCK,TX,33.5837,-101.8809,LUBBOCK 79410,LUBBOCK,TX,33.56931,-101.890377,LUBBOCK 79411,LUBBOCK,TX,33.570393,-101.862593,LUBBOCK 79412,LUBBOCK,TX,33.546313,-101.857737,LUBBOCK 79413,LUBBOCK,TX,33.546597,-101.887142,LUBBOCK 79414,LUBBOCK,TX,33.549728,-101.918666,LUBBOCK 79415,LUBBOCK,TX,33.602117,-101.876015,LUBBOCK 79416,LUBBOCK,TX,33.592397,-101.936705,LUBBOCK 79423,LUBBOCK,TX,33.514604,-101.87946,LUBBOCK 79424,LUBBOCK,TX,33.515866,-101.93439,LUBBOCK 79430,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79452,LUBBOCK,TX,33.5483,-101.8481,LUBBOCK 79453,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79457,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79464,LUBBOCK,TX,33.5579,-101.843,LUBBOCK 79490,LUBBOCK,TX,33.5777,-101.8547,LUBBOCK 79491,LUBBOCK,TX,33.5026,-101.8742,LUBBOCK 79493,LUBBOCK,TX,33.5482,-101.8831,LUBBOCK 79499,LUBBOCK,TX,33.5921,-102.018,LUBBOCK 79601,ABILENE,TX,32.468155,-99.718208,TAYLOR 79602,ABILENE,TX,32.41783,-99.721448,TAYLOR 79603,ABILENE,TX,32.467852,-99.761916,TAYLOR 79604,ABILENE,TX,32.3783,-99.6907,TAYLOR 79605,ABILENE,TX,32.431987,-99.772374,TAYLOR 79606,ABILENE,TX,32.392038,-99.774578,TAYLOR 79608,ABILENE,TX,32.4189,-99.7492,TAYLOR 79697,ABILENE,TX,32.4308,-99.749,TAYLOR 79698,ABILENE,TX,32.4486,-99.7327,TAYLOR 79699,ABILENE,TX,32.4699,-99.7082,TAYLOR 79701,MIDLAND,TX,31.989636,-102.06261,MIDLAND 79702,MIDLAND,TX,31.8691,-101.9227,MIDLAND 79703,MIDLAND,TX,31.972106,-102.136854,MIDLAND 79704,MIDLAND,TX,31.9972,-102.0775,MIDLAND 79705,MIDLAND,TX,32.029473,-102.091483,MIDLAND 79706,MIDLAND,TX,31.9089,-102.027,MIDLAND 79707,MIDLAND,TX,32.019911,-102.147599,MIDLAND 79708,MIDLAND,TX,32.0196,-102.1253,MIDLAND 79710,MIDLAND,TX,32.0593,-102.021,MIDLAND 79711,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79712,MIDLAND,TX,31.7945,-102.1687,MIDLAND 79760,ODESSA,TX,31.8465,-102.3663,ECTOR 79761,ODESSA,TX,31.857945,-102.352252,ECTOR 79762,ODESSA,TX,31.889029,-102.354806,ECTOR 79763,ODESSA,TX,31.834085,-102.416179,ECTOR 79764,ODESSA,TX,31.876683,-102.437465,ECTOR 79765,ODESSA,TX,31.937548,-102.394403,ECTOR 79766,ODESSA,TX,31.782683,-102.344863,ECTOR 79768,ODESSA,TX,31.9037,-102.3324,ECTOR 79769,ODESSA,TX,31.8465,-102.3663,ECTOR 79901,EL PASO,TX,31.758411,-106.478311,EL PASO 79902,EL PASO,TX,31.776317,-106.493165,EL PASO 79903,EL PASO,TX,31.786213,-106.440569,EL PASO 79904,EL PASO,TX,31.853334,-106.438135,EL PASO 79905,EL PASO,TX,31.767447,-106.430445,EL PASO 79906,EL PASO,TX,31.807631,-106.421611,EL PASO 79907,EL PASO,TX,31.708908,-106.329281,EL PASO 79908,EL PASO,TX,31.82753,-106.386711,EL PASO 79910,EL PASO,TX,31.7691,-106.4264,EL PASO 79911,EL PASO,TX,31.7586,-106.4863,EL PASO 79912,EL PASO,TX,31.838309,-106.536433,EL PASO 79913,EL PASO,TX,31.8405,-106.5659,EL PASO 79914,EL PASO,TX,31.8816,-106.4195,EL PASO 79915,EL PASO,TX,31.743234,-106.368605,EL PASO 79916,EL PASO,TX,31.794873,-106.159157,EL PASO 79917,EL PASO,TX,31.6927,-106.327,EL PASO 79920,EL PASO,TX,31.8232,-106.4614,EL PASO 79922,EL PASO,TX,31.821767,-106.573176,EL PASO 79923,EL PASO,TX,31.7818,-106.4591,EL PASO 79924,EL PASO,TX,31.902098,-106.414857,EL PASO 79925,EL PASO,TX,31.781402,-106.361317,EL PASO 79926,EL PASO,TX,31.7649,-106.3659,EL PASO 79927,EL PASO,TX,31.653014,-106.273064,EL PASO 79928,EL PASO,TX,31.654444,-106.302778,EL PASO 79929,EL PASO,TX,31.692,-106.1575,EL PASO 79930,EL PASO,TX,31.804795,-106.456754,EL PASO 79931,EL PASO,TX,31.813,-106.4441,EL PASO 79932,EL PASO,TX,31.862334,-106.593186,EL PASO 79934,EL PASO,TX,31.938585,-106.407328,EL PASO 79935,EL PASO,TX,31.771847,-106.330258,EL PASO 79936,EL PASO,TX,31.767655,-106.30159,EL PASO 79937,EL PASO,TX,31.7847,-106.3363,EL PASO 79938,EL PASO,TX,31.8211,-106.117,EL PASO 79940,EL PASO,TX,31.7598,-106.4871,EL PASO 79941,EL PASO,TX,31.7598,-106.4871,EL PASO 79942,EL PASO,TX,31.7598,-106.4871,EL PASO 79943,EL PASO,TX,31.7598,-106.4871,EL PASO 79944,EL PASO,TX,31.7598,-106.4871,EL PASO 79945,EL PASO,TX,31.7598,-106.4871,EL PASO 79946,EL PASO,TX,31.7598,-106.4871,EL PASO 79947,EL PASO,TX,31.7598,-106.4871,EL PASO 79948,EL PASO,TX,31.7598,-106.4871,EL PASO 79949,EL PASO,TX,31.7598,-106.4871,EL PASO 79950,EL PASO,TX,31.7598,-106.4871,EL PASO 79951,EL PASO,TX,31.7598,-106.4871,EL PASO 79952,EL PASO,TX,31.7598,-106.4871,EL PASO 79953,EL PASO,TX,31.7598,-106.4871,EL PASO 79954,EL PASO,TX,31.7598,-106.4871,EL PASO 79955,EL PASO,TX,31.7598,-106.4871,EL PASO 79958,EL PASO,TX,31.7598,-106.4871,EL PASO 79960,EL PASO,TX,31.7598,-106.4871,EL PASO 79961,EL PASO,TX,31.7598,-106.4871,EL PASO 79968,EL PASO,TX,31.7707,-106.5037,EL PASO 79976,EL PASO,TX,31.7598,-106.4871,EL PASO 79978,EL PASO,TX,31.7598,-106.4871,EL PASO 79980,EL PASO,TX,31.7598,-106.4871,EL PASO 79990,EL PASO,TX,31.7691,-106.4264,EL PASO 79995,EL PASO,TX,31.7691,-106.4264,EL PASO 79996,EL PASO,TX,31.7691,-106.4264,EL PASO 79997,EL PASO,TX,31.7691,-106.4264,EL PASO 79998,EL PASO,TX,31.7691,-106.4264,EL PASO 79999,EL PASO,TX,31.7691,-106.4264,EL PASO 80001,ARVADA,CO,39.8039,-105.0859,JEFFERSON 80002,ARVADA,CO,39.794533,-105.098402,JEFFERSON 80003,ARVADA,CO,39.828572,-105.065549,JEFFERSON 80004,ARVADA,CO,39.814066,-105.11771,JEFFERSON 80005,ARVADA,CO,39.842189,-105.109719,JEFFERSON 80006,ARVADA,CO,39.8467,-105.0815,JEFFERSON 80007,ARVADA,CO,39.8296,-105.1828,JEFFERSON 80010,AURORA,CO,39.736788,-104.864618,ARAPAHOE 80011,AURORA,CO,39.737809,-104.815233,ADAMS 80012,AURORA,CO,39.698672,-104.837693,ARAPAHOE 80013,AURORA,CO,39.657457,-104.784566,ARAPAHOE 80014,AURORA,CO,39.666171,-104.834954,ARAPAHOE 80015,AURORA,CO,39.62552,-104.787438,ARAPAHOE 80016,AURORA,CO,39.618713,-104.741734,ARAPAHOE 80017,AURORA,CO,39.694827,-104.788093,ARAPAHOE 80018,AURORA,CO,39.710179,-104.707102,ARAPAHOE 80019,AURORA,CO,39.765608,-104.706906,ADAMS 80040,AURORA,CO,39.7412,-104.8749,ADAMS 80041,AURORA,CO,39.6986,-104.8371,ARAPAHOE 80042,AURORA,CO,39.7404,-104.8089,ADAMS 80044,AURORA,CO,39.6609,-104.8351,ARAPAHOE 80045,AURORA,CO,39.748014,-104.837954,ADAMS 80046,AURORA,CO,39.6283,-104.7966,ARAPAHOE 80047,AURORA,CO,39.7007,-104.767,ARAPAHOE 80110,ENGLEWOOD,CO,39.646027,-104.990022,ARAPAHOE 80111,ENGLEWOOD,CO,39.610327,-104.882832,ARAPAHOE 80112,ENGLEWOOD,CO,39.58051,-104.901115,ARAPAHOE 80113,ENGLEWOOD,CO,39.641667,-104.958889,ARAPAHOE 80120,LITTLETON,CO,39.599426,-105.0044,ARAPAHOE 80121,LITTLETON,CO,39.605835,-104.957285,ARAPAHOE 80122,LITTLETON,CO,39.581418,-104.955673,ARAPAHOE 80123,LITTLETON,CO,39.596854,-105.07766,JEFFERSON 80124,LITTLETON,CO,39.55061,-104.897204,DOUGLAS 80125,LITTLETON,CO,39.484466,-105.056098,DOUGLAS 80126,LITTLETON,CO,39.55134,-104.963751,DOUGLAS 80127,LITTLETON,CO,39.591968,-105.132811,JEFFERSON 80128,LITTLETON,CO,39.5752,-105.0809,JEFFERSON 80129,LITTLETON,CO,39.5446,-105.0097,DOUGLAS 80130,LITTLETON,CO,39.5408,-104.922,DOUGLAS 80150,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80151,ENGLEWOOD,CO,39.6478,-104.998,ARAPAHOE 80155,ENGLEWOOD,CO,39.617222,-104.950278,ARAPAHOE 80160,LITTLETON,CO,39.6128,-105.0156,ARAPAHOE 80161,LITTLETON,CO,39.5953,-104.9622,ARAPAHOE 80162,LITTLETON,CO,39.5999,-105.1073,JEFFERSON 80163,LITTLETON,CO,39.5427,-104.9365,DOUGLAS 80165,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80166,LITTLETON,CO,39.6133,-105.0161,ARAPAHOE 80201,DENVER,CO,39.7507,-104.989,DENVER 80202,DENVER,CO,39.749107,-104.994591,DENVER 80203,DENVER,CO,39.731285,-104.981111,DENVER 80204,DENVER,CO,39.734022,-105.025854,DENVER 80205,DENVER,CO,39.758993,-104.966141,DENVER 80206,DENVER,CO,39.733109,-104.9524,DENVER 80207,DENVER,CO,39.758425,-104.91771,DENVER 80208,DENVER,CO,39.676667,-104.961667,DENVER 80209,DENVER,CO,39.707437,-104.968587,DENVER 80210,DENVER,CO,39.679003,-104.963124,DENVER 80211,DENVER,CO,39.766515,-105.020377,DENVER 80212,DENVER,CO,39.772396,-105.046979,DENVER 80214,DENVER,CO,39.746931,-105.062036,JEFFERSON 80215,DENVER,CO,39.744033,-105.102329,JEFFERSON 80216,DENVER,CO,39.783469,-104.966946,DENVER 80217,DENVER,CO,39.7391,-104.9841,DENVER 80218,DENVER,CO,39.732747,-104.971652,DENVER 80219,DENVER,CO,39.695624,-105.034134,DENVER 80220,DENVER,CO,39.7312,-104.912866,DENVER 80221,DENVER,CO,39.840562,-105.007985,ADAMS 80222,DENVER,CO,39.682803,-104.927992,DENVER 80223,DENVER,CO,39.700239,-105.002799,DENVER 80224,DENVER,CO,39.687995,-104.910778,DENVER 80225,DENVER,CO,39.7204,-105.1201,JEFFERSON 80226,DENVER,CO,39.712186,-105.066703,JEFFERSON 80227,DENVER,CO,39.666746,-105.085359,JEFFERSON 80228,DENVER,CO,39.696898,-105.143009,JEFFERSON 80229,DENVER,CO,39.860998,-104.961749,ADAMS 80230,DENVER,CO,39.720556,-104.898611,DENVER 80231,DENVER,CO,39.679324,-104.884326,DENVER 80232,DENVER,CO,39.697282,-105.094524,JEFFERSON 80233,DENVER,CO,39.901222,-104.958257,ADAMS 80234,DENVER,CO,39.905479,-105.004474,ADAMS 80235,DENVER,CO,39.647175,-105.079466,JEFFERSON 80236,DENVER,CO,39.653535,-105.037595,DENVER 80237,DENVER,CO,39.64314,-104.89866,DENVER 80238,DENVER,CO,39.793611,-104.833056,DENVER 80239,DENVER,CO,39.787757,-104.828837,DENVER 80241,DENVER,CO,39.927792,-104.941809,ADAMS 80243,DENVER,CO,39.6875,-104.9613,DENVER 80244,DENVER,CO,39.7391,-104.9841,DENVER 80246,DENVER,CO,39.7025,-104.933611,DENVER 80247,DENVER,CO,39.6941,-104.8786,ARAPAHOE 80248,DENVER,CO,39.7516,-105.0008,DENVER 80249,DENVER,CO,39.778264,-104.75565,DENVER 80250,DENVER,CO,39.68,-104.9433,DENVER 80251,DENVER,CO,39.7391,-104.9841,DENVER 80252,DENVER,CO,39.7391,-104.9841,DENVER 80256,DENVER,CO,39.7391,-104.9841,DENVER 80257,DENVER,CO,39.7391,-104.9841,DENVER 80259,DENVER,CO,39.7391,-104.9841,DENVER 80260,DENVER,CO,39.851389,-104.998056,ADAMS 80261,DENVER,CO,39.7391,-104.9841,DENVER 80262,DENVER,CO,39.7328,-104.9366,DENVER 80263,DENVER,CO,39.6522,-104.9129,DENVER 80264,DENVER,CO,39.7423,-104.9853,DENVER 80265,DENVER,CO,39.7391,-104.9841,DENVER 80266,DENVER,CO,39.7983,-104.8999,DENVER 80271,DENVER,CO,39.7391,-104.9841,DENVER 80273,DENVER,CO,39.7391,-104.9841,DENVER 80274,DENVER,CO,39.7391,-104.9841,DENVER 80279,DENVER,CO,39.7391,-104.9841,DENVER 80280,DENVER,CO,39.7193,-104.8989,DENVER 80281,DENVER,CO,39.7391,-104.9841,DENVER 80290,DENVER,CO,39.7391,-104.9841,DENVER 80291,DENVER,CO,39.7391,-104.9841,DENVER 80293,DENVER,CO,39.7391,-104.9841,DENVER 80294,DENVER,CO,39.7491,-104.9885,DENVER 80295,DENVER,CO,39.7454,-104.9859,DENVER 80299,DENVER,CO,39.7472,-104.9912,DENVER 80301,BOULDER,CO,40.049733,-105.21426,BOULDER 80302,BOULDER,CO,40.017235,-105.285131,BOULDER 80303,BOULDER,CO,39.991381,-105.239178,BOULDER 80304,BOULDER,CO,40.037482,-105.277073,BOULDER 80305,BOULDER,CO,39.9802,-105.2516,BOULDER 80306,BOULDER,CO,40.0178,-105.2752,BOULDER 80307,BOULDER,CO,39.9858,-105.2371,BOULDER 80308,BOULDER,CO,40.015,-105.27,BOULDER 80309,BOULDER,CO,40.005556,-105.263889,BOULDER 80310,BOULDER,CO,40.015,-105.27,BOULDER 80314,BOULDER,CO,40.015,-105.27,BOULDER 80321,BOULDER,CO,40.015,-105.27,BOULDER 80322,BOULDER,CO,40.015,-105.27,BOULDER 80323,BOULDER,CO,40.015,-105.27,BOULDER 80328,BOULDER,CO,40.015,-105.27,BOULDER 80329,BOULDER,CO,40.015,-105.27,BOULDER 80521,FORT COLLINS,CO,40.581293,-105.103884,LARIMER 80522,FORT COLLINS,CO,40.584,-105.0804,LARIMER 80523,FORT COLLINS,CO,40.5731,-105.086,LARIMER 80524,FORT COLLINS,CO,40.59865,-105.05811,LARIMER 80525,FORT COLLINS,CO,40.538354,-105.054715,LARIMER 80526,FORT COLLINS,CO,40.547294,-105.107646,LARIMER 80527,FORT COLLINS,CO,40.532,-105.0731,LARIMER 80528,FORT COLLINS,CO,40.4977,-105.0041,LARIMER 80553,FORT COLLINS,CO,40.5675,-105.0453,LARIMER 80631,GREELEY,CO,40.413968,-104.704756,WELD 80632,GREELEY,CO,40.4236,-104.6959,WELD 80633,GREELEY,CO,40.4236,-104.6959,WELD 80634,GREELEY,CO,40.410947,-104.754113,WELD 80638,GREELEY,CO,40.4233,-104.7086,WELD 80639,GREELEY,CO,40.4025,-104.701111,WELD 80901,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80902,COLORADO SPRINGS,CO,38.8338816,-104.8213634,EL PASO 80903,COLORADO SPRINGS,CO,38.838832,-104.814466,EL PASO 80904,COLORADO SPRINGS,CO,38.853318,-104.859513,EL PASO 80905,COLORADO SPRINGS,CO,38.837692,-104.836997,EL PASO 80906,COLORADO SPRINGS,CO,38.790164,-104.819893,EL PASO 80907,COLORADO SPRINGS,CO,38.876001,-104.817034,EL PASO 80908,COLORADO SPRINGS,CO,39.023745,-104.693331,EL PASO 80909,COLORADO SPRINGS,CO,38.852038,-104.773483,EL PASO 80910,COLORADO SPRINGS,CO,38.815164,-104.770299,EL PASO 80911,COLORADO SPRINGS,CO,38.745665,-104.722322,EL PASO 80912,COLORADO SPRINGS,CO,39.0475,-104.6901,EL PASO 80913,COLORADO SPRINGS,CO,38.741967,-104.782218,EL PASO 80914,COLORADO SPRINGS,CO,38.784241,-104.719052,EL PASO 80915,COLORADO SPRINGS,CO,38.855845,-104.713422,EL PASO 80916,COLORADO SPRINGS,CO,38.807619,-104.74034,EL PASO 80917,COLORADO SPRINGS,CO,38.886027,-104.739904,EL PASO 80918,COLORADO SPRINGS,CO,38.912924,-104.773444,EL PASO 80919,COLORADO SPRINGS,CO,38.926795,-104.84642,EL PASO 80920,COLORADO SPRINGS,CO,38.949732,-104.766951,EL PASO 80921,COLORADO SPRINGS,CO,39.048674,-104.814042,EL PASO 80922,COLORADO SPRINGS,CO,38.90503,-104.698161,EL PASO 80923,COLORADO SPRINGS,CO,38.92538,-104.717101,EL PASO 80924,COLORADO SPRINGS,CO,38.951969,-104.71418,EL PASO 80925,COLORADO SPRINGS,CO,38.731329,-104.660087,EL PASO 80926,COLORADO SPRINGS,CO,38.698073,-104.85051,EL PASO 80927,COLORADO SPRINGS,CO,38.918882,-104.675545,EL PASO 80928,COLORADO SPRINGS,CO,38.623261,-104.457043,EL PASO 80929,COLORADO SPRINGS,CO,38.796837,-104.607857,EL PASO 80930,COLORADO SPRINGS,CO,38.828926,-104.526924,EL PASO 80931,COLORADO SPRINGS,CO,38.7513,-104.7322,EL PASO 80932,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80933,COLORADO SPRINGS,CO,38.8729,-104.8105,EL PASO 80934,COLORADO SPRINGS,CO,38.8459,-104.8632,EL PASO 80935,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80936,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 80937,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80938,COLORADO SPRINGS,CO,38.917468,-104.650769,EL PASO 80939,COLORADO SPRINGS,CO,38.879618,-104.679918,EL PASO 80940,COLORADO SPRINGS,CO,38.8864,-104.6716,EL PASO 80941,COLORADO SPRINGS,CO,38.9594,-104.7536,EL PASO 80942,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80943,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80944,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80945,COLORADO SPRINGS,CO,38.8335,-104.8206,EL PASO 80946,COLORADO SPRINGS,CO,38.8466,-104.8238,EL PASO 80947,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80949,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80950,COLORADO SPRINGS,CO,38.8487,-104.7788,EL PASO 80951,COLORADO SPRINGS,CO,38.863647,-104.670443,EL PASO 80960,COLORADO SPRINGS,CO,38.808,-104.8185,EL PASO 80962,COLORADO SPRINGS,CO,38.9043,-104.86,EL PASO 80970,COLORADO SPRINGS,CO,38.8338,-104.8208,EL PASO 80977,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80995,COLORADO SPRINGS,CO,38.8139,-104.7586,EL PASO 80997,COLORADO SPRINGS,CO,38.9037,-104.754,EL PASO 81001,PUEBLO,CO,38.287876,-104.584828,PUEBLO 81002,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81003,PUEBLO,CO,38.284277,-104.62337,PUEBLO 81004,PUEBLO,CO,38.244063,-104.627829,PUEBLO 81005,PUEBLO,CO,38.235157,-104.660031,PUEBLO 81006,PUEBLO,CO,38.24465,-104.531834,PUEBLO 81007,PUEBLO,CO,38.319975,-104.743264,PUEBLO 81008,PUEBLO,CO,38.313251,-104.628433,PUEBLO 81009,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81010,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81011,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81012,PUEBLO,CO,38.2544,-104.6086,PUEBLO 81501,GRAND JUNCTION,CO,39.078326,-108.545692,MESA 81502,GRAND JUNCTION,CO,39.063889,-108.55,MESA 81503,GRAND JUNCTION,CO,39.056777,-108.575609,MESA 81504,GRAND JUNCTION,CO,39.083136,-108.489094,MESA 81505,GRAND JUNCTION,CO,39.107097,-108.596834,MESA 81506,GRAND JUNCTION,CO,39.103209,-108.54911,MESA 82001,CHEYENNE,WY,41.143719,-104.796234,LARAMIE 82002,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82003,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82006,CHEYENNE,WY,41.4052,-104.8606,LARAMIE 82007,CHEYENNE,WY,41.108433,-104.810745,LARAMIE 82008,CHEYENNE,WY,41.1371,-104.818,LARAMIE 82009,CHEYENNE,WY,41.183566,-104.802328,LARAMIE 82010,CHEYENNE,WY,41.1371,-104.818,LARAMIE 83201,POCATELLO,ID,42.887592,-112.438142,BANNOCK 83202,POCATELLO,ID,42.926548,-112.474873,BANNOCK 83204,POCATELLO,ID,42.846463,-112.443352,BANNOCK 83205,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83206,POCATELLO,ID,42.8683,-112.4422,BANNOCK 83209,POCATELLO,ID,42.8628,-112.4338,BANNOCK 83401,IDAHO FALLS,ID,43.517679,-111.990626,BONNEVILLE 83402,IDAHO FALLS,ID,43.493373,-112.057762,BONNEVILLE 83403,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83404,IDAHO FALLS,ID,43.475043,-112.012449,BONNEVILLE 83405,IDAHO FALLS,ID,43.4941,-112.0205,BONNEVILLE 83406,IDAHO FALLS,ID,43.473233,-111.966052,BONNEVILLE 83415,IDAHO FALLS,ID,43.4666,-112.0333,BONNEVILLE 83701,BOISE,ID,43.6154,-116.2161,ADA 83702,BOISE,ID,43.632237,-116.205192,ADA 83703,BOISE,ID,43.660051,-116.252396,ADA 83704,BOISE,ID,43.633001,-116.295099,ADA 83705,BOISE,ID,43.585077,-116.219104,ADA 83706,BOISE,ID,43.588495,-116.191006,ADA 83707,BOISE,ID,43.6154,-116.2161,ADA 83708,BOISE,ID,43.6136,-116.2025,ADA 83709,BOISE,ID,43.574085,-116.29407,ADA 83711,BOISE,ID,43.6154,-116.2161,ADA 83712,BOISE,ID,43.602311,-116.164924,ADA 83713,BOISE,ID,43.6401,-116.3328,ADA 83715,BOISE,ID,43.5665,-116.2119,ADA 83716,BOISE,ID,43.5444,-116.043,ADA 83717,BOISE,ID,43.5544,-116.1472,ADA 83719,BOISE,ID,43.5476,-116.2836,ADA 83720,BOISE,ID,43.6154,-116.2161,ADA 83721,BOISE,ID,43.6136,-116.2025, 83722,BOISE,ID,43.6136,-116.2025,ADA 83724,BOISE,ID,43.6136,-116.2025,ADA 83725,BOISE,ID,43.605,-116.2054,ADA 83726,BOISE,ID,43.4343,-116.0029,ADA 83727,BOISE,ID,43.6136,-116.2025, 83728,BOISE,ID,43.6136,-116.2025,ADA 83729,BOISE,ID,43.6136,-116.2025,ADA 83730,BOISE,ID,43.6136,-116.2025, 83731,BOISE,ID,43.7435,-116.2024,ADA 83732,BOISE,ID,43.5476,-116.2836,ADA 83733,BOISE,ID,43.6136,-116.2025, 83735,BOISE,ID,43.6136,-116.2025,ADA 83756,BOISE,ID,43.6136,-116.2025,ADA 83757,BOISE,ID,43.6136,-116.2025,ADA 83799,BOISE,ID,43.6142,-116.2161,ADA 84070,SANDY,UT,40.579379,-111.881625,SALT LAKE 84090,SANDY,UT,40.583,-111.8332,SALT LAKE 84091,SANDY,UT,40.5897,-111.8713,SALT LAKE 84092,SANDY,UT,40.560245,-111.82736,SALT LAKE 84093,SANDY,UT,40.592651,-111.830989,SALT LAKE 84094,SANDY,UT,40.568757,-111.861716,SALT LAKE 84101,SALT LAKE CITY,UT,40.755851,-111.896657,SALT LAKE 84102,SALT LAKE CITY,UT,40.760034,-111.862721,SALT LAKE 84103,SALT LAKE CITY,UT,40.777584,-111.874891,SALT LAKE 84104,SALT LAKE CITY,UT,40.74985,-111.925979,SALT LAKE 84105,SALT LAKE CITY,UT,40.737236,-111.858087,SALT LAKE 84106,SALT LAKE CITY,UT,40.705597,-111.854841,SALT LAKE 84107,SALT LAKE CITY,UT,40.659014,-111.878383,SALT LAKE 84108,SALT LAKE CITY,UT,40.737136,-111.825822,SALT LAKE 84109,SALT LAKE CITY,UT,40.704251,-111.814218,SALT LAKE 84110,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84111,SALT LAKE CITY,UT,40.754834,-111.881,SALT LAKE 84112,SALT LAKE CITY,UT,40.752372,-111.827827,SALT LAKE 84113,SALT LAKE CITY,UT,40.763057,-111.841825,SALT LAKE 84114,SALT LAKE CITY,UT,40.7755,-111.8874,SALT LAKE 84115,SALT LAKE CITY,UT,40.715797,-111.883828,SALT LAKE 84116,SALT LAKE CITY,UT,40.785697,-111.929054,SALT LAKE 84117,SALT LAKE CITY,UT,40.666302,-111.832943,SALT LAKE 84118,SALT LAKE CITY,UT,40.652759,-111.98521,SALT LAKE 84119,SALT LAKE CITY,UT,40.690977,-111.952964,SALT LAKE 84120,SALT LAKE CITY,UT,40.68708,-112.009783,SALT LAKE 84121,SALT LAKE CITY,UT,40.623247,-111.82468,SALT LAKE 84122,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84123,SALT LAKE CITY,UT,40.660479,-111.919483,SALT LAKE 84124,SALT LAKE CITY,UT,40.67966,-111.820833,SALT LAKE 84125,SALT LAKE CITY,UT,40.7,-111.9443,SALT LAKE 84126,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84127,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84128,SALT LAKE CITY,UT,40.6951,-112.044,SALT LAKE 84130,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84131,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84132,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84133,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84134,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84136,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84138,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84139,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84141,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84143,SALT LAKE CITY,UT,40.7785,-111.8789,SALT LAKE 84144,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84145,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84147,SALT LAKE CITY,UT,40.7682,-111.8872,SALT LAKE 84148,SALT LAKE CITY,UT,40.7582,-111.8397,SALT LAKE 84150,SALT LAKE CITY,UT,40.7693,-111.8886,SALT LAKE 84151,SALT LAKE CITY,UT,40.7648,-111.8967,SALT LAKE 84152,SALT LAKE CITY,UT,40.7288,-111.8586,SALT LAKE 84157,SALT LAKE CITY,UT,40.6628,-111.8867,SALT LAKE 84158,SALT LAKE CITY,UT,40.7502,-111.8255,SALT LAKE 84165,SALT LAKE CITY,UT,40.713611,-111.891111,SALT LAKE 84170,SALT LAKE CITY,UT,40.6972,-111.9945,SALT LAKE 84171,SALT LAKE CITY,UT,40.619722,-111.809444,SALT LAKE 84180,SALT LAKE CITY,UT,40.7696,-111.9009,SALT LAKE 84184,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84189,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84190,SALT LAKE CITY,UT,40.7608,-111.8902,SALT LAKE 84199,SALT LAKE CITY,UT,40.7001,-111.9446,SALT LAKE 84201,OGDEN,UT,41.2443,-112.0072,WEBER 84244,OGDEN,UT,41.2839,-112.1235,WEBER 84401,OGDEN,UT,41.22148,-111.962121,WEBER 84402,OGDEN,UT,41.1976,-111.9844,WEBER 84403,OGDEN,UT,41.189412,-111.948927,WEBER 84404,OGDEN,UT,41.262727,-111.983686,WEBER 84405,OGDEN,UT,41.173928,-111.980945,WEBER 84407,OGDEN,UT,41.2839,-112.1235,WEBER 84408,OGDEN,UT,41.192,-111.9465,WEBER 84409,OGDEN,UT,41.1976,-111.9844,WEBER 84412,OGDEN,UT,41.2639,-111.9686,WEBER 84414,OGDEN,UT,41.311201,-111.968924,WEBER 84415,OGDEN,UT,41.1796,-111.9496,WEBER 84601,PROVO,UT,40.231949,-111.675504,UTAH 84602,PROVO,UT,40.2483,-111.6484,UTAH 84603,PROVO,UT,40.232,-111.6589,UTAH 84604,PROVO,UT,40.260681,-111.654906,UTAH 84605,PROVO,UT,40.2338,-111.6577,UTAH 84606,PROVO,UT,40.234675,-111.644724,UTAH 85001,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85002,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85003,PHOENIX,AZ,33.451095,-112.077428,MARICOPA 85004,PHOENIX,AZ,33.455708,-112.068584,MARICOPA 85005,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85006,PHOENIX,AZ,33.465016,-112.047357,MARICOPA 85007,PHOENIX,AZ,33.452298,-112.089326,MARICOPA 85008,PHOENIX,AZ,33.466457,-111.998381,MARICOPA 85009,PHOENIX,AZ,33.456373,-112.128368,MARICOPA 85010,PHOENIX,AZ,33.4659,-112.0236,MARICOPA 85011,PHOENIX,AZ,33.5054,-112.0634,MARICOPA 85012,PHOENIX,AZ,33.509744,-112.067816,MARICOPA 85013,PHOENIX,AZ,33.508493,-112.082657,MARICOPA 85014,PHOENIX,AZ,33.510263,-112.05557,MARICOPA 85015,PHOENIX,AZ,33.508164,-112.101064,MARICOPA 85016,PHOENIX,AZ,33.502117,-112.030496,MARICOPA 85017,PHOENIX,AZ,33.515263,-112.121232,MARICOPA 85018,PHOENIX,AZ,33.495796,-111.988259,MARICOPA 85019,PHOENIX,AZ,33.512284,-112.141681,MARICOPA 85020,PHOENIX,AZ,33.562281,-112.055888,MARICOPA 85021,PHOENIX,AZ,33.559965,-112.092686,MARICOPA 85022,PHOENIX,AZ,33.631513,-112.052008,MARICOPA 85023,PHOENIX,AZ,33.632383,-112.111838,MARICOPA 85024,PHOENIX,AZ,33.661664,-112.036956,MARICOPA 85025,PHOENIX,AZ,33.4506,-112.0773,MARICOPA 85026,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85027,PHOENIX,AZ,33.667157,-112.102723,MARICOPA 85028,PHOENIX,AZ,33.585115,-112.008724,MARICOPA 85029,PHOENIX,AZ,33.596133,-112.119913,MARICOPA 85030,PHOENIX,AZ,33.4519,-112.0775,MARICOPA 85031,PHOENIX,AZ,33.493909,-112.16963,MARICOPA 85032,PHOENIX,AZ,33.623807,-112.004369,MARICOPA 85033,PHOENIX,AZ,33.494426,-112.213185,MARICOPA 85034,PHOENIX,AZ,33.441251,-112.042135,MARICOPA 85035,PHOENIX,AZ,33.472353,-112.183177,MARICOPA 85036,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85037,PHOENIX,AZ,33.491278,-112.246763,MARICOPA 85038,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85039,PHOENIX,AZ,33.495362,-112.288573,MARICOPA 85040,PHOENIX,AZ,33.390475,-112.03126,MARICOPA 85041,PHOENIX,AZ,33.388882,-112.095437,MARICOPA 85042,PHOENIX,AZ,33.3783,-112.0313,MARICOPA 85043,PHOENIX,AZ,33.449056,-112.197245,MARICOPA 85044,PHOENIX,AZ,33.329124,-111.9943,MARICOPA 85045,PHOENIX,AZ,33.2997,-112.0958,MARICOPA 85046,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85048,PHOENIX,AZ,33.3042,-112.0282,MARICOPA 85050,PHOENIX,AZ,33.6794,-111.9991,MARICOPA 85051,PHOENIX,AZ,33.559113,-112.133168,MARICOPA 85053,PHOENIX,AZ,33.6279,-112.1315,MARICOPA 85054,PHOENIX,AZ,33.6764,-111.9569,MARICOPA 85055,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85060,PHOENIX,AZ,33.4805,-111.9963,MARICOPA 85061,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85062,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85063,PHOENIX,AZ,33.5014,-112.1723,MARICOPA 85064,PHOENIX,AZ,33.5098,-112.0378,MARICOPA 85065,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85066,PHOENIX,AZ,33.3924,-112.0675,MARICOPA 85067,PHOENIX,AZ,33.4934,-112.0823,MARICOPA 85068,PHOENIX,AZ,33.5742,-112.0644,MARICOPA 85069,PHOENIX,AZ,33.5562,-112.1113,MARICOPA 85070,PHOENIX,AZ,33.561,-112.0935,MARICOPA 85071,PHOENIX,AZ,33.597,-112.0987,MARICOPA 85072,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85073,PHOENIX,AZ,33.451,-112.0685,MARICOPA 85074,PHOENIX,AZ,33.4367,-112.05,MARICOPA 85075,PHOENIX,AZ,33.4483,-112.0733,MARICOPA 85076,PHOENIX,AZ,33.3475,-111.9742,MARICOPA 85077,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85078,PHOENIX,AZ,33.6259,-112.0185,MARICOPA 85079,PHOENIX,AZ,33.5094,-112.118,MARICOPA 85080,PHOENIX,AZ,33.6548,-112.1043,MARICOPA 85082,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85083,PHOENIX,AZ,33.4483771,-112.0740373,MARICOPA 85085,PHOENIX,AZ,33.7485,-112.1254,MARICOPA 85086,PHOENIX,AZ,33.8405,-112.112,MARICOPA 85098,PHOENIX,AZ,33.4368,-112.1416,MARICOPA 85099,PHOENIX,AZ,33.4509,-111.974,MARICOPA 85201,MESA,AZ,33.43174,-111.846931,MARICOPA 85202,MESA,AZ,33.385095,-111.872429,MARICOPA 85203,MESA,AZ,33.436952,-111.805697,MARICOPA 85204,MESA,AZ,33.399168,-111.789554,MARICOPA 85205,MESA,AZ,33.43685,-111.712939,MARICOPA 85206,MESA,AZ,33.402603,-111.724223,MARICOPA 85207,MESA,AZ,33.432073,-111.64256,MARICOPA 85208,MESA,AZ,33.398416,-111.651297,MARICOPA 85209,MESA,AZ,33.378332,-111.636262,MARICOPA 85210,MESA,AZ,33.38867,-111.842757,MARICOPA 85211,MESA,AZ,33.4181,-111.8304,MARICOPA 85212,MESA,AZ,33.3341,-111.6381,MARICOPA 85213,MESA,AZ,33.436688,-111.773114,MARICOPA 85214,MESA,AZ,33.4222,-111.8219,MARICOPA 85215,MESA,AZ,33.4702,-111.708,MARICOPA 85216,MESA,AZ,33.4085,-111.6853,MARICOPA 85224,CHANDLER,AZ,33.330091,-111.863156,MARICOPA 85225,CHANDLER,AZ,33.310505,-111.823881,MARICOPA 85226,CHANDLER,AZ,33.30917,-111.919827,MARICOPA 85233,GILBERT,AZ,33.35,-111.8092,MARICOPA 85234,GILBERT,AZ,33.352746,-111.780876,MARICOPA 85244,CHANDLER,AZ,33.3047,-111.8378,MARICOPA 85246,CHANDLER,AZ,33.3061,-111.8405,MARICOPA 85248,CHANDLER,AZ,33.223056,-111.866899,MARICOPA 85249,CHANDLER,AZ,33.241384,-111.774486,MARICOPA 85250,SCOTTSDALE,AZ,33.521767,-111.904926,MARICOPA 85251,SCOTTSDALE,AZ,33.493559,-111.916697,MARICOPA 85252,SCOTTSDALE,AZ,33.4873,-111.9247,MARICOPA 85254,SCOTTSDALE,AZ,33.616476,-111.955422,MARICOPA 85255,SCOTTSDALE,AZ,33.696801,-111.889213,MARICOPA 85256,SCOTTSDALE,AZ,33.485793,-111.85333,MARICOPA 85257,SCOTTSDALE,AZ,33.46693,-111.915129,MARICOPA 85258,SCOTTSDALE,AZ,33.564747,-111.893067,MARICOPA 85259,SCOTTSDALE,AZ,33.587943,-111.840438,MARICOPA 85260,SCOTTSDALE,AZ,33.601323,-111.88671,MARICOPA 85261,SCOTTSDALE,AZ,33.4946,-111.9204,MARICOPA 85262,SCOTTSDALE,AZ,33.77524,-111.779135,MARICOPA 85266,SCOTTSDALE,AZ,33.4359,-112.0201,MARICOPA 85267,SCOTTSDALE,AZ,33.6105,-111.8902,MARICOPA 85271,SCOTTSDALE,AZ,33.4657,-111.92,MARICOPA 85274,MESA,AZ,33.4073,-111.8829,MARICOPA 85275,MESA,AZ,33.4222,-111.8219,MARICOPA 85277,MESA,AZ,33.4591,-111.7199,MARICOPA 85280,TEMPE,AZ,33.4273,-111.9307,MARICOPA 85281,TEMPE,AZ,33.422675,-111.926144,MARICOPA 85282,TEMPE,AZ,33.391669,-111.924896,MARICOPA 85283,TEMPE,AZ,33.366524,-111.93122,MARICOPA 85284,TEMPE,AZ,33.336302,-111.919696,MARICOPA 85285,TEMPE,AZ,33.3926,-111.9352,MARICOPA 85286,CHANDLER,AZ,33.3061605,-111.8412502,MARICOPA 85287,TEMPE,AZ,33.420833,-111.93,MARICOPA 85289,TEMPE,AZ,33.4001,-111.9652,MARICOPA 85295,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85296,GILBERT,AZ,33.3196,-111.7595,MARICOPA 85297,GILBERT,AZ,33.2646,-111.7086,MARICOPA 85298,GILBERT,AZ,33.3528264,-111.789027,MARICOPA 85299,GILBERT,AZ,33.3496,-111.7914,MARICOPA 85301,GLENDALE,AZ,33.531122,-112.176703,MARICOPA 85302,GLENDALE,AZ,33.567487,-112.175289,MARICOPA 85303,GLENDALE,AZ,33.526215,-112.214937,MARICOPA 85304,GLENDALE,AZ,33.594289,-112.174575,MARICOPA 85305,GLENDALE,AZ,33.529103,-112.248232,MARICOPA 85306,GLENDALE,AZ,33.623882,-112.177563,MARICOPA 85307,GLENDALE,AZ,33.534879,-112.326735,MARICOPA 85308,GLENDALE,AZ,33.653924,-112.169391,MARICOPA 85310,GLENDALE,AZ,33.704726,-112.164131,MARICOPA 85311,GLENDALE,AZ,33.532,-112.1764,MARICOPA 85312,GLENDALE,AZ,33.6252,-112.1839,MARICOPA 85313,GLENDALE,AZ,33.6086,-112.1611,MARICOPA 85318,GLENDALE,AZ,33.6821,-112.1862,MARICOPA 85345,PEORIA,AZ,33.576135,-112.234424,MARICOPA 85380,PEORIA,AZ,33.5822,-112.2414,MARICOPA 85381,PEORIA,AZ,33.604761,-112.223723,MARICOPA 85382,PEORIA,AZ,33.63083,-112.207177,MARICOPA 85383,PEORIA,AZ,33.7218,-112.2594,MARICOPA 85385,PEORIA,AZ,33.6099,-112.2261,MARICOPA 85701,TUCSON,AZ,32.213873,-110.969445,PIMA 85702,TUCSON,AZ,32.2216,-110.9258,PIMA 85703,TUCSON,AZ,32.2465,-110.9786,PIMA 85704,TUCSON,AZ,32.329175,-110.984593,PIMA 85705,TUCSON,AZ,32.269088,-110.984536,PIMA 85706,TUCSON,AZ,32.139172,-110.945127,PIMA 85707,TUCSON,AZ,32.177778,-110.8775,PIMA 85708,TUCSON,AZ,32.179989,-110.869283,PIMA 85709,TUCSON,AZ,32.2251,-111.0167,PIMA 85710,TUCSON,AZ,32.213813,-110.824046,PIMA 85711,TUCSON,AZ,32.212729,-110.882892,PIMA 85712,TUCSON,AZ,32.250043,-110.886919,PIMA 85713,TUCSON,AZ,32.194065,-110.973896,PIMA 85714,TUCSON,AZ,32.170657,-110.971891,PIMA 85715,TUCSON,AZ,32.269213,-110.834837,PIMA 85716,TUCSON,AZ,32.246815,-110.922176,PIMA 85717,TUCSON,AZ,32.2356,-110.9398,PIMA 85718,TUCSON,AZ,32.311154,-110.917882,PIMA 85719,TUCSON,AZ,32.247426,-110.949142,PIMA 85720,TUCSON,AZ,32.2033,-110.9451,PIMA 85721,TUCSON,AZ,32.2335,-110.9521,PIMA 85722,TUCSON,AZ,32.2317,-110.9567,PIMA 85723,TUCSON,AZ,32.1812,-110.9683,PIMA 85724,TUCSON,AZ,32.2033,-110.9451,PIMA 85725,TUCSON,AZ,32.2216,-110.9258,PIMA 85726,TUCSON,AZ,32.2033,-110.9451,PIMA 85728,TUCSON,AZ,32.2885,-110.9435,PIMA 85730,TUCSON,AZ,32.180951,-110.81904,PIMA 85731,TUCSON,AZ,32.2216,-110.9258,PIMA 85732,TUCSON,AZ,32.225,-110.8833,PIMA 85733,TUCSON,AZ,32.2356,-110.9398,PIMA 85734,TUCSON,AZ,32.1336,-110.9741,PIMA 85735,TUCSON,AZ,32.057796,-111.260758,PIMA 85736,TUCSON,AZ,31.667909,-111.317842,PIMA 85737,TUCSON,AZ,32.431679,-110.954463,PIMA 85739,TUCSON,AZ,32.5088,-110.8969,PIMA 85740,TUCSON,AZ,32.3203,-110.9742,PIMA 85741,TUCSON,AZ,32.347215,-111.041873,PIMA 85742,TUCSON,AZ,32.3855,-111.0466,PIMA 85743,TUCSON,AZ,32.33655,-111.177071,PIMA 85744,TUCSON,AZ,32.0916,-110.8046,PIMA 85745,TUCSON,AZ,32.243359,-111.017907,PIMA 85746,TUCSON,AZ,32.142244,-111.050569,PIMA 85747,TUCSON,AZ,32.071142,-110.667337,PIMA 85748,TUCSON,AZ,32.214981,-110.775765,PIMA 85749,TUCSON,AZ,32.273285,-110.765829,PIMA 85750,TUCSON,AZ,32.2977,-110.8447,PIMA 85751,TUCSON,AZ,32.2501,-110.8527,PIMA 85752,TUCSON,AZ,32.3506,-111.0467,PIMA 85754,TUCSON,AZ,32.2345,-111.0024,PIMA 85755,TUCSON,AZ,32.44284,-110.98941,PIMA 85757,TUCSON,AZ,32.136691,-111.10789,PIMA 85775,TUCSON,AZ,32.2033,-110.9451,PIMA 85777,TUCSON,AZ,32.0907,-110.9103,PIMA 86301,PRESCOTT,AZ,34.629909,-113.022459,YAVAPAI 86302,PRESCOTT,AZ,34.754,-112.8314,YAVAPAI 86303,PRESCOTT,AZ,34.558577,-112.473459,YAVAPAI 86304,PRESCOTT,AZ,34.7363,-112.9576,YAVAPAI 86305,PRESCOTT,AZ,34.6476,-112.6458,YAVAPAI 86313,PRESCOTT,AZ,34.5495,-112.4496,YAVAPAI 87101,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87102,ALBUQUERQUE,NM,35.081831,-106.648171,BERNALILLO 87103,ALBUQUERQUE,NM,35.0826,-106.6526,BERNALILLO 87104,ALBUQUERQUE,NM,35.103822,-106.671215,BERNALILLO 87105,ALBUQUERQUE,NM,35.044761,-106.689341,BERNALILLO 87106,ALBUQUERQUE,NM,35.079011,-106.616917,BERNALILLO 87107,ALBUQUERQUE,NM,35.134742,-106.642747,BERNALILLO 87108,ALBUQUERQUE,NM,35.072586,-106.574864,BERNALILLO 87109,ALBUQUERQUE,NM,35.15058,-106.569004,BERNALILLO 87110,ALBUQUERQUE,NM,35.110417,-106.578052,BERNALILLO 87111,ALBUQUERQUE,NM,35.134724,-106.522164,BERNALILLO 87112,ALBUQUERQUE,NM,35.101026,-106.518338,BERNALILLO 87113,ALBUQUERQUE,NM,35.175906,-106.601467,BERNALILLO 87114,ALBUQUERQUE,NM,35.195612,-106.659138,BERNALILLO 87115,ALBUQUERQUE,NM,34.904876,-106.513896,BERNALILLO 87116,ALBUQUERQUE,NM,35.056116,-106.550605,BERNALILLO 87119,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87120,ALBUQUERQUE,NM,35.142146,-106.704137,BERNALILLO 87121,ALBUQUERQUE,NM,35.051209,-106.726861,BERNALILLO 87122,ALBUQUERQUE,NM,35.178715,-106.510176,BERNALILLO 87123,ALBUQUERQUE,NM,35.07166,-106.509003,BERNALILLO 87125,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87131,ALBUQUERQUE,NM,35.0862,-106.6213,BERNALILLO 87151,ALBUQUERQUE,NM,35.0844,-106.6508,BERNALILLO 87153,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87154,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87158,ALBUQUERQUE,NM,35.0936,-106.6423,BERNALILLO 87165,ALBUQUERQUE,NM,35.2533,-106.6459,BERNALILLO 87176,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87181,ALBUQUERQUE,NM,35.101,-106.5153,BERNALILLO 87184,ALBUQUERQUE,NM,35.1849,-106.6202,BERNALILLO 87185,ALBUQUERQUE,NM,34.9821,-106.5156,BERNALILLO 87187,ALBUQUERQUE,NM,35.1697,-106.8332,BERNALILLO 87190,ALBUQUERQUE,NM,35.1076,-106.5963,BERNALILLO 87191,ALBUQUERQUE,NM,35.1304,-106.5302,BERNALILLO 87192,ALBUQUERQUE,NM,35.0992,-106.5174,BERNALILLO 87193,ALBUQUERQUE,NM,35.1881,-106.6826,BERNALILLO 87194,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87195,ALBUQUERQUE,NM,35.001,-106.6511,BERNALILLO 87196,ALBUQUERQUE,NM,35.0806,-106.6189,BERNALILLO 87197,ALBUQUERQUE,NM,35.1211,-106.6446,BERNALILLO 87198,ALBUQUERQUE,NM,35.0844,-106.6505,BERNALILLO 87199,ALBUQUERQUE,NM,35.1595,-106.5782,BERNALILLO 87501,SANTA FE,NM,35.702472,-105.974818,SANTA FE 87502,SANTA FE,NM,35.8099,-105.985,SANTA FE 87503,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87504,SANTA FE,NM,35.8099,-105.985,SANTA FE 87505,SANTA FE,NM,35.619623,-105.981994,SANTA FE 87506,SANTA FE,NM,35.7956,-106.0122,SANTA FE 87507,SANTA FE,NM,35.635,-106.0446,SANTA FE 87508,SANTA FE,NM,35.5587,-105.9762,SANTA FE 87509,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87592,SANTA FE,NM,35.7946,-105.9929,SANTA FE 87594,SANTA FE,NM,35.7946,-105.9929,SANTA FE 88001,LAS CRUCES,NM,32.321641,-106.746034,DONA ANA 88003,LAS CRUCES,NM,32.2809,-106.7473,DONA ANA 88004,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88005,LAS CRUCES,NM,32.316076,-106.79908,DONA ANA 88006,LAS CRUCES,NM,32.3113,-106.7771,DONA ANA 88007,LAS CRUCES,NM,32.3538,-106.8395,DONA ANA 88011,LAS CRUCES,NM,32.327,-106.709,DONA ANA 88012,LAS CRUCES,NM,32.4435,-106.7253,DONA ANA 88013,LAS CRUCES,NM,32.3111,-106.7888,DONA ANA 88510,EL PASO,TX,31.7691,-106.4264,EL PASO 88511,EL PASO,TX,31.7691,-106.4264,EL PASO 88512,EL PASO,TX,31.7691,-106.4264,EL PASO 88513,EL PASO,TX,31.7691,-106.4264,EL PASO 88514,EL PASO,TX,31.7691,-106.4264,EL PASO 88515,EL PASO,TX,31.7691,-106.4264,EL PASO 88516,EL PASO,TX,31.7691,-106.4264,EL PASO 88517,EL PASO,TX,31.7691,-106.4264,EL PASO 88518,EL PASO,TX,31.7691,-106.4264,EL PASO 88519,EL PASO,TX,31.7691,-106.4264,EL PASO 88520,EL PASO,TX,31.7691,-106.4264,EL PASO 88521,EL PASO,TX,31.7691,-106.4264,EL PASO 88523,EL PASO,TX,31.7691,-106.4264,EL PASO 88524,EL PASO,TX,31.7691,-106.4264,EL PASO 88525,EL PASO,TX,31.7691,-106.4264,EL PASO 88526,EL PASO,TX,31.7691,-106.4264,EL PASO 88527,EL PASO,TX,31.7691,-106.4264,EL PASO 88528,EL PASO,TX,31.7691,-106.4264,EL PASO 88529,EL PASO,TX,31.7691,-106.4264,EL PASO 88530,EL PASO,TX,31.7691,-106.4264,EL PASO 88531,EL PASO,TX,31.7691,-106.4264,EL PASO 88532,EL PASO,TX,31.7691,-106.4264,EL PASO 88533,EL PASO,TX,31.7691,-106.4264,EL PASO 88534,EL PASO,TX,31.7691,-106.4264,EL PASO 88535,EL PASO,TX,31.7691,-106.4264,EL PASO 88536,EL PASO,TX,31.7691,-106.4264,EL PASO 88538,EL PASO,TX,31.7691,-106.4264,EL PASO 88539,EL PASO,TX,31.7691,-106.4264,EL PASO 88540,EL PASO,TX,31.7691,-106.4264,EL PASO 88541,EL PASO,TX,31.7691,-106.4264,EL PASO 88542,EL PASO,TX,31.7691,-106.4264,EL PASO 88543,EL PASO,TX,31.7691,-106.4264,EL PASO 88544,EL PASO,TX,31.7691,-106.4264,EL PASO 88545,EL PASO,TX,31.7691,-106.4264,EL PASO 88546,EL PASO,TX,31.7691,-106.4264,EL PASO 88547,EL PASO,TX,31.7691,-106.4264,EL PASO 88548,EL PASO,TX,31.7691,-106.4264,EL PASO 88549,EL PASO,TX,31.7691,-106.4264,EL PASO 88550,EL PASO,TX,31.7691,-106.4264,EL PASO 88553,EL PASO,TX,31.7691,-106.4264,EL PASO 88554,EL PASO,TX,31.7691,-106.4264,EL PASO 88555,EL PASO,TX,31.7691,-106.4264,EL PASO 88556,EL PASO,TX,31.7691,-106.4264,EL PASO 88557,EL PASO,TX,31.7691,-106.4264,EL PASO 88558,EL PASO,TX,31.7691,-106.4264,EL PASO 88559,EL PASO,TX,31.7691,-106.4264,EL PASO 88560,EL PASO,TX,31.7691,-106.4264,EL PASO 88561,EL PASO,TX,31.7691,-106.4264,EL PASO 88562,EL PASO,TX,31.7691,-106.4264,EL PASO 88563,EL PASO,TX,31.7691,-106.4264,EL PASO 88565,EL PASO,TX,31.7691,-106.4264,EL PASO 88566,EL PASO,TX,31.7691,-106.4264,EL PASO 88567,EL PASO,TX,31.7691,-106.4264,EL PASO 88568,EL PASO,TX,31.7691,-106.4264,EL PASO 88569,EL PASO,TX,31.7691,-106.4264,EL PASO 88570,EL PASO,TX,31.7691,-106.4264,EL PASO 88571,EL PASO,TX,31.7691,-106.4264,EL PASO 88572,EL PASO,TX,31.7691,-106.4264,EL PASO 88573,EL PASO,TX,31.7691,-106.4264,EL PASO 88574,EL PASO,TX,31.7691,-106.4264,EL PASO 88575,EL PASO,TX,31.7691,-106.4264,EL PASO 88576,EL PASO,TX,31.7691,-106.4264,EL PASO 88577,EL PASO,TX,31.7691,-106.4264,EL PASO 88578,EL PASO,TX,31.7691,-106.4264,EL PASO 88579,EL PASO,TX,31.7691,-106.4264,EL PASO 88580,EL PASO,TX,31.7691,-106.4264,EL PASO 88581,EL PASO,TX,31.7691,-106.4264,EL PASO 88582,EL PASO,TX,31.7691,-106.4264,EL PASO 88583,EL PASO,TX,31.7691,-106.4264,EL PASO 88584,EL PASO,TX,31.7691,-106.4264,EL PASO 88585,EL PASO,TX,31.7691,-106.4264,EL PASO 88586,EL PASO,TX,31.7691,-106.4264,EL PASO 88587,EL PASO,TX,31.7691,-106.4264,EL PASO 88588,EL PASO,TX,31.7691,-106.4264,EL PASO 88589,EL PASO,TX,31.8102,-106.4167,EL PASO 88590,EL PASO,TX,31.7691,-106.4264,EL PASO 88595,EL PASO,TX,31.7691,-106.4264,EL PASO 89002,HENDERSON,NV,35.992678,-114.951684,CLARK 89009,HENDERSON,NV,36.0938,-114.9445,CLARK 89011,HENDERSON,NV,36.0816,-114.9771,CLARK 89012,HENDERSON,NV,36.0188,-115.0512,CLARK 89014,HENDERSON,NV,36.056435,-115.077968,CLARK 89015,HENDERSON,NV,36.035705,-114.971809,CLARK 89016,HENDERSON,NV,36.0698,-115.0811,CLARK 89030,NORTH LAS VEGAS,NV,36.4475,-114.851389,CLARK 89031,NORTH LAS VEGAS,NV,36.206228,-115.124832,CLARK 89032,NORTH LAS VEGAS,NV,36.2236,-115.1745,CLARK 89033,NORTH LAS VEGAS,NV,36.3231,-115.1214,CLARK 89036,NORTH LAS VEGAS,NV,36.3709,-114.8819,CLARK 89044,HENDERSON,NV,35.9378,-115.098,CLARK 89052,HENDERSON,NV,35.9811,-115.1033,CLARK 89053,HENDERSON,NV,36.0865,-114.9434,CLARK 89074,HENDERSON,NV,36.0368,-115.0854,CLARK 89077,HENDERSON,NV,36.003889,-115.100556,CLARK 89081,NORTH LAS VEGAS,NV,36.2621,-115.1126,CLARK 89084,NORTH LAS VEGAS,NV,36.2873,-115.176,CLARK 89085,NORTH LAS VEGAS,NV,36.3096,-115.1963,CLARK 89086,NORTH LAS VEGAS,NV,36.2805,-115.1199,CLARK 89087,NORTH LAS VEGAS,NV,36.1989,-115.1175,CLARK 89101,LAS VEGAS,NV,36.172082,-115.122366,CLARK 89102,LAS VEGAS,NV,36.143303,-115.200351,CLARK 89103,LAS VEGAS,NV,36.114865,-115.216072,CLARK 89104,LAS VEGAS,NV,36.15197,-115.109195,CLARK 89105,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89106,LAS VEGAS,NV,36.184673,-115.161703,CLARK 89107,LAS VEGAS,NV,36.170457,-115.217638,CLARK 89108,LAS VEGAS,NV,36.204399,-115.223259,CLARK 89109,LAS VEGAS,NV,36.125991,-115.145378,CLARK 89110,LAS VEGAS,NV,36.173031,-115.066892,CLARK 89111,LAS VEGAS,NV,36.0856,-115.1458,CLARK 89112,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89113,LAS VEGAS,NV,36.085366,-115.256614,CLARK 89114,LAS VEGAS,NV,36.1328,-115.171,CLARK 89115,LAS VEGAS,NV,36.215818,-115.067062,CLARK 89116,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89117,LAS VEGAS,NV,36.130196,-115.275518,CLARK 89118,LAS VEGAS,NV,36.081052,-115.216856,CLARK 89119,LAS VEGAS,NV,36.100836,-115.136463,CLARK 89120,LAS VEGAS,NV,36.091423,-115.088485,CLARK 89121,LAS VEGAS,NV,36.12318,-115.090219,CLARK 89122,LAS VEGAS,NV,36.120501,-115.052322,CLARK 89123,LAS VEGAS,NV,36.038273,-115.146182,CLARK 89124,LAS VEGAS,NV,35.963391,-115.095067,CLARK 89125,LAS VEGAS,NV,36.1725,-115.1402,CLARK 89126,LAS VEGAS,NV,36.1507,-115.2075,CLARK 89127,LAS VEGAS,NV,36.1771,-115.1532,CLARK 89128,LAS VEGAS,NV,36.175992,-115.256252,CLARK 89129,LAS VEGAS,NV,36.245004,-115.274254,CLARK 89130,LAS VEGAS,NV,36.247137,-115.221032,CLARK 89131,LAS VEGAS,NV,36.295604,-115.241942,CLARK 89132,LAS VEGAS,NV,36.0998,-115.145,CLARK 89133,LAS VEGAS,NV,36.175,-115.1363,CLARK 89134,LAS VEGAS,NV,36.209234,-115.294123,CLARK 89135,LAS VEGAS,NV,36.1314,-115.3278,CLARK 89136,LAS VEGAS,NV,36.175,-115.1364,CLARK 89137,LAS VEGAS,NV,36.175,-115.1363,CLARK 89138,LAS VEGAS,NV,36.1694,-115.349,CLARK 89139,LAS VEGAS,NV,36.0411,-115.2163,CLARK 89140,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89141,LAS VEGAS,NV,35.9894,-115.203,CLARK 89142,LAS VEGAS,NV,36.1484,-115.0453,CLARK 89143,LAS VEGAS,NV,36.3158,-115.289,CLARK 89144,LAS VEGAS,NV,36.1788,-115.324,CLARK 89145,LAS VEGAS,NV,36.1678,-115.274,CLARK 89146,LAS VEGAS,NV,36.1428,-115.2253,CLARK 89147,LAS VEGAS,NV,36.1126,-115.2796,CLARK 89148,LAS VEGAS,NV,36.0643,-115.2964,CLARK 89149,LAS VEGAS,NV,36.2756,-115.2894,CLARK 89150,LAS VEGAS,NV,36.175,-115.1363,CLARK 89151,LAS VEGAS,NV,36.175,-115.1363,CLARK 89152,LAS VEGAS,NV,36.175,-115.1363,CLARK 89153,LAS VEGAS,NV,36.175,-115.1363,CLARK 89154,LAS VEGAS,NV,36.1065,-115.1372,CLARK 89155,LAS VEGAS,NV,36.1907,-115.1876,CLARK 89156,LAS VEGAS,NV,36.2012,-115.0327,CLARK 89157,LAS VEGAS,NV,36.175,-115.1372,CLARK 89159,LAS VEGAS,NV,36.0717,-115.14,CLARK 89160,LAS VEGAS,NV,36.0994,-115.0721,CLARK 89161,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89162,LAS VEGAS,NV,36.175,-115.136,CLARK 89164,LAS VEGAS,NV,36.175,-115.1363,CLARK 89165,LAS VEGAS,NV,35.9854,-115.0941,CLARK 89166,LAS VEGAS,NV,36.3211,-115.3335,CLARK 89169,LAS VEGAS,NV,36.122458,-115.141483,CLARK 89170,LAS VEGAS,NV,36.1059,-115.1362,CLARK 89173,LAS VEGAS,NV,36.1062,-115.1374,CLARK 89177,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89178,LAS VEGAS,NV,36.0115,-115.2711,CLARK 89179,LAS VEGAS,NV,35.987,-115.246,CLARK 89180,LAS VEGAS,NV,36.1276,-115.2421,CLARK 89183,LAS VEGAS,NV,35.991178,-115.147411,CLARK 89185,LAS VEGAS,NV,36.1554,-115.1041,CLARK 89193,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89195,LAS VEGAS,NV,36.0853,-115.1459,CLARK 89199,LAS VEGAS,NV,36.175,-115.1363,CLARK 89431,SPARKS,NV,39.547254,-119.755588,WASHOE 89432,SPARKS,NV,39.5407,-119.7466,WASHOE 89434,SPARKS,NV,39.550229,-119.717754,WASHOE 89435,SPARKS,NV,39.535,-119.7516,WASHOE 89436,SPARKS,NV,39.626861,-119.708125,WASHOE 89441,SPARKS,NV,39.6652,-119.6958,WASHOE 89501,RENO,NV,39.526812,-119.811275,WASHOE 89502,RENO,NV,39.497239,-119.776395,WASHOE 89503,RENO,NV,39.5354,-119.837409,WASHOE 89504,RENO,NV,39.5297,-119.8127,WASHOE 89505,RENO,NV,39.5297,-119.8127,WASHOE 89506,RENO,NV,39.641168,-119.873505,WASHOE 89507,RENO,NV,39.5385,-119.8179,WASHOE 89508,RENO,NV,39.5296329,-119.8138027,WASHOE 89509,RENO,NV,39.498042,-119.823932,WASHOE 89510,RENO,NV,39.769919,-119.602678,WASHOE 89511,RENO,NV,39.41512,-119.766846,WASHOE 89512,RENO,NV,39.548312,-119.795699,WASHOE 89513,RENO,NV,39.5297,-119.8127,WASHOE 89515,RENO,NV,39.5132,-119.7806,WASHOE 89519,RENO,NV,39.4857,-119.8522,WASHOE 89520,RENO,NV,39.5132,-119.7806,WASHOE 89521,RENO,NV,39.455833,-119.771667,WASHOE 89523,RENO,NV,39.524917,-119.903065,WASHOE 89533,RENO,NV,39.5297,-119.8127,WASHOE 89555,RENO,NV,39.5297,-119.8129,WASHOE 89557,RENO,NV,39.5452,-119.8201,WASHOE 89570,RENO,NV,39.5297,-119.8127,WASHOE 89595,RENO,NV,39.5132,-119.7806,WASHOE 89599,RENO,NV,39.5297,-119.8127,WASHOE 89701,CARSON CITY,NV,39.150746,-119.745904,CARSON CITY 89702,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89703,CARSON CITY,NV,39.17036,-119.778242,CARSON CITY 89705,CARSON CITY,NV,39.089147,-119.782899,DOUGLAS 89706,CARSON CITY,NV,39.210876,-119.742912,CARSON CITY 89711,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89712,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89713,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89714,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 89721,CARSON CITY,NV,39.1638,-119.7663,CARSON CITY 90001,LOS ANGELES,CA,33.973093,-118.247896,LOS ANGELES 90002,LOS ANGELES,CA,33.94969,-118.246213,LOS ANGELES 90003,LOS ANGELES,CA,33.965335,-118.272739,LOS ANGELES 90004,LOS ANGELES,CA,34.076163,-118.302863,LOS ANGELES 90005,LOS ANGELES,CA,34.058508,-118.301197,LOS ANGELES 90006,LOS ANGELES,CA,34.049323,-118.291687,LOS ANGELES 90007,LOS ANGELES,CA,34.029442,-118.287095,LOS ANGELES 90008,LOS ANGELES,CA,34.011643,-118.341123,LOS ANGELES 90009,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90010,LOS ANGELES,CA,34.060633,-118.302664,LOS ANGELES 90011,LOS ANGELES,CA,34.007856,-118.258189,LOS ANGELES 90012,LOS ANGELES,CA,34.061396,-118.238479,LOS ANGELES 90013,LOS ANGELES,CA,34.044841,-118.243366,LOS ANGELES 90014,LOS ANGELES,CA,34.044272,-118.250937,LOS ANGELES 90015,LOS ANGELES,CA,34.043439,-118.271613,LOS ANGELES 90016,LOS ANGELES,CA,34.029826,-118.352787,LOS ANGELES 90017,LOS ANGELES,CA,34.055864,-118.266582,LOS ANGELES 90018,LOS ANGELES,CA,34.028972,-118.315173,LOS ANGELES 90019,LOS ANGELES,CA,34.048158,-118.33426,LOS ANGELES 90020,LOS ANGELES,CA,34.066535,-118.302211,LOS ANGELES 90021,LOS ANGELES,CA,34.033303,-118.244698,LOS ANGELES 90022,LOS ANGELES,CA,34.023638,-118.155319,LOS ANGELES 90023,LOS ANGELES,CA,34.024478,-118.197498,LOS ANGELES 90024,LOS ANGELES,CA,34.063691,-118.440796,LOS ANGELES 90025,LOS ANGELES,CA,34.044662,-118.448717,LOS ANGELES 90026,LOS ANGELES,CA,34.076629,-118.264641,LOS ANGELES 90027,LOS ANGELES,CA,34.104031,-118.292516,LOS ANGELES 90028,LOS ANGELES,CA,34.100549,-118.325363,LOS ANGELES 90029,LOS ANGELES,CA,34.089982,-118.294393,LOS ANGELES 90030,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90031,LOS ANGELES,CA,34.078349,-118.211279,LOS ANGELES 90032,LOS ANGELES,CA,34.081785,-118.175323,LOS ANGELES 90033,LOS ANGELES,CA,34.048676,-118.208442,LOS ANGELES 90034,LOS ANGELES,CA,34.028977,-118.400482,LOS ANGELES 90035,LOS ANGELES,CA,34.053096,-118.380615,LOS ANGELES 90036,LOS ANGELES,CA,34.069888,-118.349175,LOS ANGELES 90037,LOS ANGELES,CA,34.002982,-118.286284,LOS ANGELES 90038,LOS ANGELES,CA,34.089769,-118.321489,LOS ANGELES 90039,LOS ANGELES,CA,34.112089,-118.259428,LOS ANGELES 90040,LOS ANGELES,CA,33.99471,-118.151352,LOS ANGELES 90041,LOS ANGELES,CA,34.133932,-118.208205,LOS ANGELES 90042,LOS ANGELES,CA,34.114527,-118.192902,LOS ANGELES 90043,LOS ANGELES,CA,33.987099,-118.33211,LOS ANGELES 90044,LOS ANGELES,CA,33.955089,-118.290119,LOS ANGELES 90045,LOS ANGELES,CA,33.963075,-118.394128,LOS ANGELES 90046,LOS ANGELES,CA,34.09743,-118.357979,LOS ANGELES 90047,LOS ANGELES,CA,33.956896,-118.307304,LOS ANGELES 90048,LOS ANGELES,CA,34.073656,-118.371969,LOS ANGELES 90049,LOS ANGELES,CA,34.066,-118.473967,LOS ANGELES 90050,LOS ANGELES,CA,34.1208,-118.2033,LOS ANGELES 90051,LOS ANGELES,CA,33.948889,-118.247778,LOS ANGELES 90052,LOS ANGELES,CA,33.9818,-118.2579,LOS ANGELES 90053,LOS ANGELES,CA,34.0535,-118.2397,LOS ANGELES 90054,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90055,LOS ANGELES,CA,34.0449,-118.2579,LOS ANGELES 90056,LOS ANGELES,CA,33.985329,-118.370703,LOS ANGELES 90057,LOS ANGELES,CA,34.062172,-118.276262,LOS ANGELES 90058,LOS ANGELES,CA,33.997344,-118.235365,LOS ANGELES 90059,LOS ANGELES,CA,33.929331,-118.24628,LOS ANGELES 90060,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90061,LOS ANGELES,CA,33.924493,-118.271638,LOS ANGELES 90062,LOS ANGELES,CA,34.00324,-118.307277,LOS ANGELES 90063,LOS ANGELES,CA,34.044017,-118.185432,LOS ANGELES 90064,LOS ANGELES,CA,34.035279,-118.425911,LOS ANGELES 90065,LOS ANGELES,CA,34.107307,-118.226637,LOS ANGELES 90066,LOS ANGELES,CA,34.002956,-118.429769,LOS ANGELES 90067,LOS ANGELES,CA,34.055146,-118.409479,LOS ANGELES 90068,LOS ANGELES,CA,34.115625,-118.330476,LOS ANGELES 90070,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90071,LOS ANGELES,CA,34.052043,-118.257127,LOS ANGELES 90072,LOS ANGELES,CA,34.0961,-118.3086,LOS ANGELES 90073,LOS ANGELES,CA,34.056667,-118.456944,LOS ANGELES 90074,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90075,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90076,LOS ANGELES,CA,34.0601,-118.3091,LOS ANGELES 90077,LOS ANGELES,CA,34.111245,-118.450155,LOS ANGELES 90078,LOS ANGELES,CA,34.0996,-118.3261,LOS ANGELES 90079,LOS ANGELES,CA,34.0522,-118.2427,LOS ANGELES 90080,LOS ANGELES,CA,33.9452,-118.3832,LOS ANGELES 90081,LOS ANGELES,CA,33.9542,-118.3972,LOS ANGELES 90082,LOS ANGELES,CA,34.0008,-118.2772,LOS ANGELES 90083,LOS ANGELES,CA,33.9537,-118.398,LOS ANGELES 90084,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90086,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90087,LOS ANGELES,CA,34.064,-118.2377,LOS ANGELES 90088,LOS ANGELES,CA,34.0531,-118.2639,LOS ANGELES 90089,LOS ANGELES,CA,34.0204,-118.2874,LOS ANGELES 90091,LOS ANGELES,CA,33.992222,-118.150278,LOS ANGELES 90093,LOS ANGELES,CA,34.0967,-118.3346,LOS ANGELES 90094,LOS ANGELES,CA,33.9732,-118.4231,LOS ANGELES 90095,LOS ANGELES,CA,34.070833,-118.444167,LOS ANGELES 90096,LOS ANGELES,CA,33.9681,-118.1696,LOS ANGELES 90099,LOS ANGELES,CA,34.0629,-118.2381,LOS ANGELES 90101,LOS ANGELES,CA,33.974,-118.2488,LOS ANGELES 90102,LOS ANGELES,CA,34.0184,-118.1987,LOS ANGELES 90103,LOS ANGELES,CA,34.0184,-118.1996,LOS ANGELES 90189,LOS ANGELES,CA,34.0583,-118.2476,LOS ANGELES 90301,INGLEWOOD,CA,33.955048,-118.355575,LOS ANGELES 90302,INGLEWOOD,CA,33.974496,-118.354805,LOS ANGELES 90303,INGLEWOOD,CA,33.937691,-118.332058,LOS ANGELES 90304,INGLEWOOD,CA,33.938514,-118.355562,LOS ANGELES 90305,INGLEWOOD,CA,33.958304,-118.32585,LOS ANGELES 90306,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90307,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90308,INGLEWOOD,CA,33.9591,-118.3503,LOS ANGELES 90309,INGLEWOOD,CA,33.9726,-118.3567,LOS ANGELES 90310,INGLEWOOD,CA,33.9306,-118.3218,LOS ANGELES 90311,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90312,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90313,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90397,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90398,INGLEWOOD,CA,33.9616,-118.3522,LOS ANGELES 90401,SANTA MONICA,CA,34.017628,-118.490708,LOS ANGELES 90402,SANTA MONICA,CA,34.034875,-118.503011,LOS ANGELES 90403,SANTA MONICA,CA,34.028658,-118.49241,LOS ANGELES 90404,SANTA MONICA,CA,34.026828,-118.4733,LOS ANGELES 90405,SANTA MONICA,CA,34.01001,-118.471708,LOS ANGELES 90406,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90407,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90408,SANTA MONICA,CA,34.0259,-118.489,LOS ANGELES 90409,SANTA MONICA,CA,34.0003,-118.482,LOS ANGELES 90410,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90411,SANTA MONICA,CA,34.0192,-118.4956,LOS ANGELES 90501,TORRANCE,CA,33.826817,-118.31183,LOS ANGELES 90502,TORRANCE,CA,33.828555,-118.292039,LOS ANGELES 90503,TORRANCE,CA,33.839709,-118.354236,LOS ANGELES 90504,TORRANCE,CA,33.870815,-118.329517,LOS ANGELES 90505,TORRANCE,CA,33.810635,-118.350733,LOS ANGELES 90506,TORRANCE,CA,33.885367,-118.329543,LOS ANGELES 90507,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90508,TORRANCE,CA,33.8339,-118.3145,LOS ANGELES 90509,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90510,TORRANCE,CA,33.8293,-118.3281,LOS ANGELES 90601,WHITTIER,CA,34.001119,-118.037139,LOS ANGELES 90602,WHITTIER,CA,33.96931,-118.033703,LOS ANGELES 90603,WHITTIER,CA,33.943199,-117.992685,LOS ANGELES 90604,WHITTIER,CA,33.929931,-118.012075,LOS ANGELES 90605,WHITTIER,CA,33.941338,-118.035568,LOS ANGELES 90606,WHITTIER,CA,33.977019,-118.065639,LOS ANGELES 90607,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90608,WHITTIER,CA,33.9804,-118.0342,LOS ANGELES 90609,WHITTIER,CA,33.9791,-118.0319,LOS ANGELES 90610,WHITTIER,CA,33.9686,-118.0702,LOS ANGELES 90612,WHITTIER,CA,33.96,-118.0249,LOS ANGELES 90801,LONG BEACH,CA,33.7705,-118.1885,LOS ANGELES 90802,LONG BEACH,CA,33.770553,-118.182025,LOS ANGELES 90803,LONG BEACH,CA,33.761932,-118.134073,LOS ANGELES 90804,LONG BEACH,CA,33.782993,-118.155187,LOS ANGELES 90805,LONG BEACH,CA,33.863457,-118.180102,LOS ANGELES 90806,LONG BEACH,CA,33.799319,-118.187443,LOS ANGELES 90807,LONG BEACH,CA,33.830712,-118.18092,LOS ANGELES 90808,LONG BEACH,CA,33.824145,-118.110299,LOS ANGELES 90809,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90810,LONG BEACH,CA,33.810985,-118.215006,LOS ANGELES 90813,LONG BEACH,CA,33.78202,-118.183488,LOS ANGELES 90814,LONG BEACH,CA,33.771576,-118.147988,LOS ANGELES 90815,LONG BEACH,CA,33.793908,-118.119249,LOS ANGELES 90822,LONG BEACH,CA,33.744415,-118.239257,LOS ANGELES 90831,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90832,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90833,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90834,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90835,LONG BEACH,CA,33.7677,-118.1986,LOS ANGELES 90840,LONG BEACH,CA,33.7828,-118.1153,LOS ANGELES 90842,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90844,LONG BEACH,CA,33.7744,-118.1923,LOS ANGELES 90845,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90846,LONG BEACH,CA,33.8281,-118.1427,LOS ANGELES 90847,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90848,LONG BEACH,CA,33.8298,-118.1819,LOS ANGELES 90853,LONG BEACH,CA,33.759,-118.1306,LOS ANGELES 90888,LONG BEACH,CA,33.7706,-118.1884,LOS ANGELES 90899,LONG BEACH,CA,33.7668,-118.1886,LOS ANGELES 91101,PASADENA,CA,34.146762,-118.139119,LOS ANGELES 91102,PASADENA,CA,34.146,-118.1438,LOS ANGELES 91103,PASADENA,CA,34.166906,-118.155119,LOS ANGELES 91104,PASADENA,CA,34.167776,-118.12609,LOS ANGELES 91105,PASADENA,CA,34.135455,-118.163577,LOS ANGELES 91106,PASADENA,CA,34.143527,-118.126647,LOS ANGELES 91107,PASADENA,CA,34.150997,-118.088905,LOS ANGELES 91109,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91110,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91114,PASADENA,CA,34.1692,-118.1302,LOS ANGELES 91115,PASADENA,CA,34.1359,-118.1532,LOS ANGELES 91116,PASADENA,CA,34.1461,-118.1295,LOS ANGELES 91117,PASADENA,CA,34.1463,-118.0956,LOS ANGELES 91121,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91123,PASADENA,CA,34.1445,-118.1566,LOS ANGELES 91124,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91125,PASADENA,CA,34.1359,-118.1262,LOS ANGELES 91126,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91129,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91131,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91182,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91184,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91185,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91188,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91189,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91191,PASADENA,CA,34.1553,-118.1533,LOS ANGELES 91199,PASADENA,CA,34.1668,-118.1216,LOS ANGELES 91201,GLENDALE,CA,34.171606,-118.289892,LOS ANGELES 91202,GLENDALE,CA,34.165235,-118.265649,LOS ANGELES 91203,GLENDALE,CA,34.151718,-118.263614,LOS ANGELES 91204,GLENDALE,CA,34.137871,-118.259947,LOS ANGELES 91205,GLENDALE,CA,34.137798,-118.24245,LOS ANGELES 91206,GLENDALE,CA,34.155605,-118.232217,LOS ANGELES 91207,GLENDALE,CA,34.164856,-118.245086,LOS ANGELES 91208,GLENDALE,CA,34.19212,-118.234966,LOS ANGELES 91209,GLENDALE,CA,34.1463,-118.2515,LOS ANGELES 91210,GLENDALE,CA,34.1441,-118.2593,LOS ANGELES 91221,GLENDALE,CA,34.1647,-118.2885,LOS ANGELES 91222,GLENDALE,CA,34.16,-118.2635,LOS ANGELES 91225,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91226,GLENDALE,CA,34.1425,-118.2541,LOS ANGELES 91324,NORTHRIDGE,CA,34.236743,-118.546595,LOS ANGELES 91325,NORTHRIDGE,CA,34.235332,-118.51884,LOS ANGELES 91327,NORTHRIDGE,CA,34.274167,-118.541111,LOS ANGELES 91328,NORTHRIDGE,CA,34.2432,-118.535,LOS ANGELES 91329,NORTHRIDGE,CA,34.2224,-118.5024,LOS ANGELES 91330,NORTHRIDGE,CA,34.23805,-118.528634,LOS ANGELES 91388,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91401,VAN NUYS,CA,34.180152,-118.432375,LOS ANGELES 91404,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91405,VAN NUYS,CA,34.200068,-118.445636,LOS ANGELES 91406,VAN NUYS,CA,34.200568,-118.486821,LOS ANGELES 91407,VAN NUYS,CA,34.194,-118.4489,LOS ANGELES 91408,VAN NUYS,CA,34.1827,-118.4478,LOS ANGELES 91409,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91410,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91411,VAN NUYS,CA,34.178133,-118.457396,LOS ANGELES 91470,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91482,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91496,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91497,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91499,VAN NUYS,CA,34.2012,-118.4742,LOS ANGELES 91501,BURBANK,CA,34.186238,-118.300898,LOS ANGELES 91502,BURBANK,CA,34.174487,-118.305912,LOS ANGELES 91503,BURBANK,CA,34.1804,-118.3084,LOS ANGELES 91504,BURBANK,CA,34.200097,-118.326401,LOS ANGELES 91505,BURBANK,CA,34.168998,-118.344175,LOS ANGELES 91506,BURBANK,CA,34.171746,-118.323148,LOS ANGELES 91507,BURBANK,CA,34.1672,-118.3472,LOS ANGELES 91508,BURBANK,CA,34.1914,-118.3259,LOS ANGELES 91510,BURBANK,CA,34.187,-118.348,LOS ANGELES 91521,BURBANK,CA,34.1559,-118.3268,LOS ANGELES 91522,BURBANK,CA,34.1491,-118.3427,LOS ANGELES 91523,BURBANK,CA,34.1563,-118.3333,LOS ANGELES 91526,BURBANK,CA,34.1745,-118.3462,LOS ANGELES 91601,NORTH HOLLYWOOD,CA,34.16867,-118.371274,LOS ANGELES 91602,NORTH HOLLYWOOD,CA,34.151095,-118.367606,LOS ANGELES 91603,NORTH HOLLYWOOD,CA,34.1681,-118.3778,LOS ANGELES 91605,NORTH HOLLYWOOD,CA,34.205747,-118.400069,LOS ANGELES 91606,NORTH HOLLYWOOD,CA,34.187182,-118.386538,LOS ANGELES 91609,NORTH HOLLYWOOD,CA,34.1891,-118.387,LOS ANGELES 91611,NORTH HOLLYWOOD,CA,34.1867,-118.3976,LOS ANGELES 91612,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91615,NORTH HOLLYWOOD,CA,34.1985,-118.3957,LOS ANGELES 91616,NORTH HOLLYWOOD,CA,34.184,-118.3964,LOS ANGELES 91618,NORTH HOLLYWOOD,CA,34.1388,-118.3525,LOS ANGELES 91766,POMONA,CA,34.043268,-117.752086,LOS ANGELES 91767,POMONA,CA,34.081187,-117.736171,LOS ANGELES 91768,POMONA,CA,34.066168,-117.776312,LOS ANGELES 91769,POMONA,CA,34.0601,-117.7575,LOS ANGELES 91797,POMONA,CA,34.0852,-117.96,LOS ANGELES 91799,POMONA,CA,34.0552,-117.7513,LOS ANGELES 91801,ALHAMBRA,CA,34.091436,-118.129288,LOS ANGELES 91802,ALHAMBRA,CA,34.0931,-118.1257,LOS ANGELES 91803,ALHAMBRA,CA,34.074514,-118.143354,LOS ANGELES 91804,ALHAMBRA,CA,34.0952,-118.1261,LOS ANGELES 91841,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91896,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91899,ALHAMBRA,CA,34.093,-118.1248,LOS ANGELES 91909,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91910,CHULA VISTA,CA,32.637139,-117.06756,SAN DIEGO 91911,CHULA VISTA,CA,32.608428,-117.056459,SAN DIEGO 91912,CHULA VISTA,CA,32.64,-117.0833,SAN DIEGO 91913,CHULA VISTA,CA,32.651296,-116.985237,SAN DIEGO 91914,CHULA VISTA,CA,32.65875,-116.96517,SAN DIEGO 91915,CHULA VISTA,CA,32.631513,-116.940807,SAN DIEGO 91921,CHULA VISTA,CA,32.6248,-117.0142,SAN DIEGO 92008,CARLSBAD,CA,33.160241,-117.324998,SAN DIEGO 92009,CARLSBAD,CA,33.095407,-117.261888,SAN DIEGO 92010,CARLSBAD,CA,33.156116,-117.280831,SAN DIEGO 92011,CARLSBAD,CA,33.107933,-117.288181,SAN DIEGO 92013,CARLSBAD,CA,33.0986,-117.2788,SAN DIEGO 92018,CARLSBAD,CA,33.1626,-117.3489,SAN DIEGO 92025,ESCONDIDO,CA,33.110117,-117.069987,SAN DIEGO 92026,ESCONDIDO,CA,33.160513,-117.097808,SAN DIEGO 92027,ESCONDIDO,CA,33.138824,-117.051966,SAN DIEGO 92029,ESCONDIDO,CA,33.089497,-117.112793,SAN DIEGO 92030,ESCONDIDO,CA,33.1362,-117.0543,SAN DIEGO 92033,ESCONDIDO,CA,33.1236,-117.086,SAN DIEGO 92046,ESCONDIDO,CA,33.1249,-117.1016,SAN DIEGO 92049,OCEANSIDE,CA,33.1951,-117.3776,SAN DIEGO 92051,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92052,OCEANSIDE,CA,33.199,-117.3668,SAN DIEGO 92054,OCEANSIDE,CA,33.20723,-117.357294,SAN DIEGO 92056,OCEANSIDE,CA,33.196784,-117.283089,SAN DIEGO 92057,OCEANSIDE,CA,33.240654,-117.302484,SAN DIEGO 92058,OCEANSIDE,CA,33.1958696,-117.3794834,SAN DIEGO 92101,SAN DIEGO,CA,32.71852,-117.159316,SAN DIEGO 92102,SAN DIEGO,CA,32.713893,-117.121858,SAN DIEGO 92103,SAN DIEGO,CA,32.746638,-117.163552,SAN DIEGO 92104,SAN DIEGO,CA,32.745425,-117.127189,SAN DIEGO 92105,SAN DIEGO,CA,32.7423,-117.094681,SAN DIEGO 92106,SAN DIEGO,CA,32.72725,-117.226829,SAN DIEGO 92107,SAN DIEGO,CA,32.742531,-117.243307,SAN DIEGO 92108,SAN DIEGO,CA,32.778327,-117.133525,SAN DIEGO 92109,SAN DIEGO,CA,32.796923,-117.240534,SAN DIEGO 92110,SAN DIEGO,CA,32.763476,-117.202847,SAN DIEGO 92111,SAN DIEGO,CA,32.797185,-117.17081,SAN DIEGO 92112,SAN DIEGO,CA,32.7246,-117.1648,SAN DIEGO 92113,SAN DIEGO,CA,32.697047,-117.115257,SAN DIEGO 92114,SAN DIEGO,CA,32.705923,-117.05235,SAN DIEGO 92115,SAN DIEGO,CA,32.760742,-117.072056,SAN DIEGO 92116,SAN DIEGO,CA,32.762446,-117.124166,SAN DIEGO 92117,SAN DIEGO,CA,32.823948,-117.196536,SAN DIEGO 92119,SAN DIEGO,CA,32.803587,-117.026065,SAN DIEGO 92120,SAN DIEGO,CA,32.79581,-117.070708,SAN DIEGO 92121,SAN DIEGO,CA,32.891894,-117.203503,SAN DIEGO 92122,SAN DIEGO,CA,32.857736,-117.211507,SAN DIEGO 92123,SAN DIEGO,CA,32.797297,-117.139248,SAN DIEGO 92124,SAN DIEGO,CA,32.820113,-117.098613,SAN DIEGO 92126,SAN DIEGO,CA,32.916136,-117.140227,SAN DIEGO 92127,SAN DIEGO,CA,33.027854,-117.085596,SAN DIEGO 92128,SAN DIEGO,CA,33.00666,-117.068982,SAN DIEGO 92129,SAN DIEGO,CA,32.965185,-117.121308,SAN DIEGO 92130,SAN DIEGO,CA,32.955533,-117.225201,SAN DIEGO 92131,SAN DIEGO,CA,32.912343,-117.089758,SAN DIEGO 92132,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92133,SAN DIEGO,CA,32.7256,-117.2177,SAN DIEGO 92134,SAN DIEGO,CA,32.725,-117.1465,SAN DIEGO 92135,SAN DIEGO,CA,32.702482,-117.19202,SAN DIEGO 92136,SAN DIEGO,CA,32.681585,-117.124678,SAN DIEGO 92137,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92138,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92139,SAN DIEGO,CA,32.680612,-117.047375,SAN DIEGO 92140,SAN DIEGO,CA,32.7399,-117.198,SAN DIEGO 92142,SAN DIEGO,CA,32.8398,-117.0973,SAN DIEGO 92145,SAN DIEGO,CA,32.870365,-117.116518,SAN DIEGO 92147,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92149,SAN DIEGO,CA,32.6759,-117.0643,SAN DIEGO 92150,SAN DIEGO,CA,32.9847,-117.0786,SAN DIEGO 92152,SAN DIEGO,CA,32.7023,-117.2448,SAN DIEGO 92153,SAN DIEGO,CA,32.5656,-117.0805,SAN DIEGO 92154,SAN DIEGO,CA,32.575276,-117.070725,SAN DIEGO 92155,SAN DIEGO,CA,32.676144,-117.160335,SAN DIEGO 92158,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92159,SAN DIEGO,CA,32.8015,-117.0136,SAN DIEGO 92160,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92161,SAN DIEGO,CA,32.8717,-117.2319,SAN DIEGO 92162,SAN DIEGO,CA,32.7171,-117.1354,SAN DIEGO 92163,SAN DIEGO,CA,32.7476,-117.1665,SAN DIEGO 92164,SAN DIEGO,CA,32.7474,-117.1273,SAN DIEGO 92165,SAN DIEGO,CA,32.7496,-117.1039,SAN DIEGO 92166,SAN DIEGO,CA,32.7211,-117.2305,SAN DIEGO 92167,SAN DIEGO,CA,32.7458,-117.2468,SAN DIEGO 92168,SAN DIEGO,CA,32.7654,-117.1546,SAN DIEGO 92169,SAN DIEGO,CA,32.799,-117.2518,SAN DIEGO 92170,SAN DIEGO,CA,32.697,-117.1335,SAN DIEGO 92171,SAN DIEGO,CA,32.783,-117.1702,SAN DIEGO 92172,SAN DIEGO,CA,32.9627,-117.1329,SAN DIEGO 92174,SAN DIEGO,CA,32.7063,-117.0844,SAN DIEGO 92175,SAN DIEGO,CA,32.7651,-117.0598,SAN DIEGO 92176,SAN DIEGO,CA,32.7636,-117.1225,SAN DIEGO 92177,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92179,SAN DIEGO,CA,32.5666,-116.9716,SAN DIEGO 92182,SAN DIEGO,CA,32.7768,-117.0702,SAN DIEGO 92184,SAN DIEGO,CA,32.7152,-117.1563,SAN DIEGO 92186,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92187,SAN DIEGO,CA,32.7481,-117.203,SAN DIEGO 92190,SAN DIEGO,CA,32.7822,-117.0946,SAN DIEGO 92191,SAN DIEGO,CA,32.9025,-117.218,SAN DIEGO 92192,SAN DIEGO,CA,32.8508,-117.2133,SAN DIEGO 92193,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92194,SAN DIEGO,CA,32.8014,-117.139,SAN DIEGO 92195,SAN DIEGO,CA,32.7442,-117.0525,SAN DIEGO 92196,SAN DIEGO,CA,32.9163,-117.1292,SAN DIEGO 92197,SAN DIEGO,CA,32.8334,-117.2009,SAN DIEGO 92198,SAN DIEGO,CA,33.0222,-117.0739,SAN DIEGO 92199,SAN DIEGO,CA,32.9954,-117.0722,SAN DIEGO 92401,SAN BERNARDINO,CA,34.110521,-117.289753,SAN BERNARDINO 92402,SAN BERNARDINO,CA,34.1085,-117.2904,SAN BERNARDINO 92403,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92404,SAN BERNARDINO,CA,34.142577,-117.260572,SAN BERNARDINO 92405,SAN BERNARDINO,CA,34.144101,-117.310765,SAN BERNARDINO 92406,SAN BERNARDINO,CA,34.1351,-117.2891,SAN BERNARDINO 92407,SAN BERNARDINO,CA,34.20928,-117.293697,SAN BERNARDINO 92408,SAN BERNARDINO,CA,34.083127,-117.271059,SAN BERNARDINO 92410,SAN BERNARDINO,CA,34.107729,-117.296789,SAN BERNARDINO 92411,SAN BERNARDINO,CA,34.121414,-117.317158,SAN BERNARDINO 92412,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92413,SAN BERNARDINO,CA,34.141,-117.2504,SAN BERNARDINO 92414,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92415,SAN BERNARDINO,CA,34.1083,-117.2862,SAN BERNARDINO 92418,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92423,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92424,SAN BERNARDINO,CA,34.1083,-117.2888,SAN BERNARDINO 92427,SAN BERNARDINO,CA,34.1982,-117.3405,SAN BERNARDINO 92501,RIVERSIDE,CA,33.9924,-117.369421,RIVERSIDE 92502,RIVERSIDE,CA,33.9805,-117.3727,RIVERSIDE 92503,RIVERSIDE,CA,33.920808,-117.458862,RIVERSIDE 92504,RIVERSIDE,CA,33.931458,-117.411948,RIVERSIDE 92505,RIVERSIDE,CA,33.922769,-117.486687,RIVERSIDE 92506,RIVERSIDE,CA,33.945485,-117.375696,RIVERSIDE 92507,RIVERSIDE,CA,33.976086,-117.338874,RIVERSIDE 92508,RIVERSIDE,CA,33.889676,-117.304264,RIVERSIDE 92509,RIVERSIDE,CA,33.997355,-117.444896,RIVERSIDE 92513,RIVERSIDE,CA,33.9151,-117.4626,RIVERSIDE 92514,RIVERSIDE,CA,33.946,-117.415,RIVERSIDE 92515,RIVERSIDE,CA,33.9187,-117.4887,RIVERSIDE 92516,RIVERSIDE,CA,33.9547,-117.3936,RIVERSIDE 92517,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92519,RIVERSIDE,CA,33.9957,-117.4128,RIVERSIDE 92521,RIVERSIDE,CA,33.9693,-117.3332,RIVERSIDE 92522,RIVERSIDE,CA,33.9723,-117.3474,RIVERSIDE 92551,MORENO VALLEY,CA,33.8858,-117.2211,RIVERSIDE 92552,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92553,MORENO VALLEY,CA,33.915719,-117.235066,RIVERSIDE 92554,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92555,MORENO VALLEY,CA,33.937659,-117.185105,RIVERSIDE 92556,MORENO VALLEY,CA,33.9175,-117.1569,RIVERSIDE 92557,MORENO VALLEY,CA,33.955257,-117.245682,RIVERSIDE 92602,IRVINE,CA,33.7357,-117.7672,ORANGE 92603,IRVINE,CA,33.6345,-117.8022,ORANGE 92604,IRVINE,CA,33.6882,-117.7888,ORANGE 92605,HUNTINGTON BEACH,CA,33.7152,-118.0088,ORANGE 92606,IRVINE,CA,33.6984,-117.807,ORANGE 92612,IRVINE,CA,33.6611,-117.8271,ORANGE 92614,IRVINE,CA,33.6791,-117.8285,ORANGE 92615,HUNTINGTON BEACH,CA,33.6574,-117.968,ORANGE 92616,IRVINE,CA,33.6699,-117.7646,ORANGE 92617,IRVINE,CA,33.6422,-117.8459,ORANGE 92618,IRVINE,CA,33.6671,-117.7415,ORANGE 92619,IRVINE,CA,33.6699,-117.7646,ORANGE 92620,IRVINE,CA,33.7113,-117.762,ORANGE 92623,IRVINE,CA,33.6699,-117.7646,ORANGE 92646,HUNTINGTON BEACH,CA,33.668448,-117.967771,ORANGE 92647,HUNTINGTON BEACH,CA,33.721018,-118.003035,ORANGE 92648,HUNTINGTON BEACH,CA,33.674577,-117.999012,ORANGE 92649,HUNTINGTON BEACH,CA,33.719111,-118.045142,ORANGE 92658,NEWPORT BEACH,CA,33.6398,-117.8643,ORANGE 92659,NEWPORT BEACH,CA,33.6208,-117.923,ORANGE 92660,NEWPORT BEACH,CA,33.630027,-117.8757,ORANGE 92661,NEWPORT BEACH,CA,33.604429,-117.906237,ORANGE 92662,NEWPORT BEACH,CA,33.606459,-117.891732,ORANGE 92663,NEWPORT BEACH,CA,33.623084,-117.92788,ORANGE 92697,IRVINE,CA,33.650833,-117.825833,ORANGE 92701,SANTA ANA,CA,33.75016,-117.857665,ORANGE 92702,SANTA ANA,CA,33.75,-117.8665,ORANGE 92703,SANTA ANA,CA,33.746613,-117.899589,ORANGE 92704,SANTA ANA,CA,33.726513,-117.904683,ORANGE 92705,SANTA ANA,CA,33.74866,-117.768902,ORANGE 92706,SANTA ANA,CA,33.764434,-117.881791,ORANGE 92707,SANTA ANA,CA,33.715938,-117.870346,ORANGE 92709,IRVINE,CA,33.681287,-117.715018,ORANGE 92710,IRVINE,CA,33.720556,-117.9075,ORANGE 92711,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92712,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92725,SANTA ANA,CA,33.7484,-117.8593,ORANGE 92735,SANTA ANA,CA,33.7455,-117.8669,ORANGE 92799,SANTA ANA,CA,33.7655,-117.8506,ORANGE 92801,ANAHEIM,CA,33.842679,-117.954035,ORANGE 92802,ANAHEIM,CA,33.806909,-117.92219,ORANGE 92803,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92804,ANAHEIM,CA,33.81908,-117.974985,ORANGE 92805,ANAHEIM,CA,33.835332,-117.906263,ORANGE 92806,ANAHEIM,CA,33.837344,-117.875928,ORANGE 92807,ANAHEIM,CA,33.851583,-117.787657,ORANGE 92808,ANAHEIM,CA,33.857569,-117.748445,ORANGE 92809,ANAHEIM,CA,33.8444,-117.9519,ORANGE 92812,ANAHEIM,CA,33.8178,-117.9272,ORANGE 92814,ANAHEIM,CA,33.8177,-117.9604,ORANGE 92815,ANAHEIM,CA,33.8333,-117.9126,ORANGE 92816,ANAHEIM,CA,33.8391,-117.8832,ORANGE 92817,ANAHEIM,CA,33.852,-117.7924,ORANGE 92825,ANAHEIM,CA,33.8352,-117.9136,ORANGE 92831,FULLERTON,CA,33.8796,-117.8951,ORANGE 92832,FULLERTON,CA,33.8685,-117.9294,ORANGE 92833,FULLERTON,CA,33.8778,-117.9621,ORANGE 92834,FULLERTON,CA,33.8784,-117.8964,ORANGE 92835,FULLERTON,CA,33.9022,-117.9065,ORANGE 92836,FULLERTON,CA,33.8784,-117.8964,ORANGE 92837,FULLERTON,CA,33.8697,-117.963,ORANGE 92838,FULLERTON,CA,33.8784,-117.8964,ORANGE 92840,GARDEN GROVE,CA,33.7857,-117.9318,ORANGE 92841,GARDEN GROVE,CA,33.7869,-117.9788,ORANGE 92842,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92843,GARDEN GROVE,CA,33.7652,-117.9313,ORANGE 92844,GARDEN GROVE,CA,33.7662,-117.9717,ORANGE 92845,GARDEN GROVE,CA,33.7828,-118.0266,ORANGE 92846,GARDEN GROVE,CA,33.7777,-117.9495,ORANGE 92850,ANAHEIM,CA,33.8415,-117.9364,ORANGE 92856,ORANGE,CA,33.7877,-117.8755,ORANGE 92857,ORANGE,CA,33.7877,-117.8755,ORANGE 92859,ORANGE,CA,33.7877,-117.8755,ORANGE 92862,ORANGE,CA,33.813,-117.7143,ORANGE 92863,ORANGE,CA,33.7877,-117.8755,ORANGE 92864,ORANGE,CA,33.8146,-117.8271,ORANGE 92865,ORANGE,CA,33.8299,-117.8468,ORANGE 92866,ORANGE,CA,33.7831,-117.8435,ORANGE 92867,ORANGE,CA,33.814,-117.8252,ORANGE 92868,ORANGE,CA,33.7861,-117.8799,ORANGE 92869,ORANGE,CA,33.7936,-117.7932,ORANGE 92877,CORONA,CA,33.8815,-117.6078,RIVERSIDE 92878,CORONA,CA,33.8774,-117.5739,RIVERSIDE 92879,CORONA,CA,33.8812,-117.5391,RIVERSIDE 92880,CORONA,CA,33.9241,-117.5963,RIVERSIDE 92881,CORONA,CA,33.8382,-117.5382,RIVERSIDE 92882,CORONA,CA,33.8643,-117.5942,RIVERSIDE 92883,CORONA,CA,33.771,-117.4823,RIVERSIDE 92899,ANAHEIM,CA,33.8415,-117.9364,ORANGE 93001,VENTURA,CA,34.290531,-119.28882,VENTURA 93002,VENTURA,CA,34.3557,-119.3011,VENTURA 93003,VENTURA,CA,34.270568,-119.2214,VENTURA 93004,VENTURA,CA,34.278091,-119.168727,VENTURA 93005,VENTURA,CA,34.2509,-119.2058,VENTURA 93006,VENTURA,CA,34.2783,-119.2922,VENTURA 93007,VENTURA,CA,34.2918,-119.1569,VENTURA 93009,VENTURA,CA,34.27,-119.2123,VENTURA 93030,OXNARD,CA,34.214142,-119.174952,VENTURA 93031,OXNARD,CA,34.2199,-119.18,VENTURA 93032,OXNARD,CA,34.1981,-119.1777,VENTURA 93033,OXNARD,CA,34.168505,-119.171732,VENTURA 93034,OXNARD,CA,34.176,-119.1765,VENTURA 93035,OXNARD,CA,34.182177,-119.215975,VENTURA 93036,OXNARD,CA,34.2301,-119.1771,VENTURA 93062,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93063,SIMI VALLEY,CA,34.279202,-118.699229,VENTURA 93065,SIMI VALLEY,CA,34.265589,-118.765349,VENTURA 93093,SIMI VALLEY,CA,34.2718,-118.7123,VENTURA 93094,SIMI VALLEY,CA,34.279,-118.7021,VENTURA 93099,SIMI VALLEY,CA,34.2694,-118.7805,VENTURA 93101,SANTA BARBARA,CA,34.419668,-119.70782,SANTA BARBARA 93102,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93103,SANTA BARBARA,CA,34.429065,-119.683275,SANTA BARBARA 93105,SANTA BARBARA,CA,34.436915,-119.728538,SANTA BARBARA 93106,SANTA BARBARA,CA,34.4173,-119.8459,SANTA BARBARA 93107,SANTA BARBARA,CA,34.4208,-119.6972,SANTA BARBARA 93108,SANTA BARBARA,CA,34.434258,-119.64255,SANTA BARBARA 93109,SANTA BARBARA,CA,34.403848,-119.7194,SANTA BARBARA 93110,SANTA BARBARA,CA,34.441814,-119.764668,SANTA BARBARA 93111,SANTA BARBARA,CA,34.445262,-119.802509,SANTA BARBARA 93120,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93121,SANTA BARBARA,CA,34.4212,-119.6975,SANTA BARBARA 93130,SANTA BARBARA,CA,34.5283,-119.8192,SANTA BARBARA 93140,SANTA BARBARA,CA,34.4209,-119.6767,SANTA BARBARA 93150,SANTA BARBARA,CA,34.436667,-119.631111,SANTA BARBARA 93160,SANTA BARBARA,CA,34.4348,-119.803,SANTA BARBARA 93190,SANTA BARBARA,CA,34.4234,-119.7037,SANTA BARBARA 93277,VISALIA,CA,36.311379,-119.306471,TULARE 93278,VISALIA,CA,36.3093,-119.3142,TULARE 93279,VISALIA,CA,36.3289,-119.2922,TULARE 93290,VISALIA,CA,36.33,-119.291,TULARE 93291,VISALIA,CA,36.355108,-119.301029,TULARE 93292,VISALIA,CA,36.3469,-119.2483,TULARE 93301,BAKERSFIELD,CA,35.386611,-119.017063,KERN 93302,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93303,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93304,BAKERSFIELD,CA,35.339581,-119.021793,KERN 93305,BAKERSFIELD,CA,35.387772,-118.982042,KERN 93306,BAKERSFIELD,CA,35.386697,-118.939104,KERN 93307,BAKERSFIELD,CA,35.327484,-118.983851,KERN 93308,BAKERSFIELD,CA,35.424395,-119.043319,KERN 93309,BAKERSFIELD,CA,35.33839,-119.062713,KERN 93311,BAKERSFIELD,CA,35.303891,-119.105647,KERN 93312,BAKERSFIELD,CA,35.382082,-119.15014,KERN 93313,BAKERSFIELD,CA,35.297391,-119.050936,KERN 93314,BAKERSFIELD,CA,35.3993,-119.1895,KERN 93380,BAKERSFIELD,CA,35.5522,-118.9188,KERN 93381,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93382,BAKERSFIELD,CA,35.2596,-119.0019,KERN 93383,BAKERSFIELD,CA,35.3329,-119.0859,KERN 93384,BAKERSFIELD,CA,35.3733,-119.0177,KERN 93385,BAKERSFIELD,CA,35.3785,-118.9907,KERN 93386,BAKERSFIELD,CA,35.3764,-118.9537,KERN 93387,BAKERSFIELD,CA,35.2908,-118.9665,KERN 93388,BAKERSFIELD,CA,35.4714,-118.9667,KERN 93389,BAKERSFIELD,CA,35.3538,-119.0615,KERN 93390,BAKERSFIELD,CA,35.3431,-119.0635,KERN 93401,SAN LUIS OBISPO,CA,35.263453,-120.650933,SAN LUIS OBISPO 93403,SAN LUIS OBISPO,CA,35.2827,-120.6586,SAN LUIS OBISPO 93405,SAN LUIS OBISPO,CA,35.290058,-120.681724,SAN LUIS OBISPO 93406,SAN LUIS OBISPO,CA,35.2794,-120.6606,SAN LUIS OBISPO 93407,SAN LUIS OBISPO,CA,35.3011,-120.6607,SAN LUIS OBISPO 93408,SAN LUIS OBISPO,CA,35.2847,-120.6606,SAN LUIS OBISPO 93409,SAN LUIS OBISPO,CA,35.221,-120.6364,SAN LUIS OBISPO 93410,SAN LUIS OBISPO,CA,35.2996,-120.6555,SAN LUIS OBISPO 93534,LANCASTER,CA,34.690888,-118.149129,LOS ANGELES 93535,LANCASTER,CA,34.684751,-118.063245,LOS ANGELES 93536,LANCASTER,CA,34.673619,-118.213336,LOS ANGELES 93539,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93550,PALMDALE,CA,34.571483,-118.061306,LOS ANGELES 93551,PALMDALE,CA,34.601404,-118.181207,LOS ANGELES 93552,PALMDALE,CA,34.5636,-118.0349,LOS ANGELES 93584,LANCASTER,CA,34.698,-118.1358,LOS ANGELES 93586,LANCASTER,CA,34.6475,-118.2175,LOS ANGELES 93590,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93591,PALMDALE,CA,34.6042,-117.8506,LOS ANGELES 93599,PALMDALE,CA,34.5009,-118.0586,LOS ANGELES 93650,FRESNO,CA,36.841107,-119.800359,FRESNO 93701,FRESNO,CA,36.748727,-119.786705,FRESNO 93702,FRESNO,CA,36.739954,-119.753215,FRESNO 93703,FRESNO,CA,36.768445,-119.759401,FRESNO 93704,FRESNO,CA,36.798781,-119.799745,FRESNO 93705,FRESNO,CA,36.786285,-119.828617,FRESNO 93706,FRESNO,CA,36.700589,-119.820408,FRESNO 93707,FRESNO,CA,36.7329,-119.7828,FRESNO 93708,FRESNO,CA,36.7329,-119.7828,FRESNO 93709,FRESNO,CA,36.7329,-119.7828,FRESNO 93710,FRESNO,CA,36.823643,-119.76205,FRESNO 93711,FRESNO,CA,36.830297,-119.831896,FRESNO 93712,FRESNO,CA,36.7329,-119.7828,FRESNO 93714,FRESNO,CA,36.7329,-119.7828,FRESNO 93715,FRESNO,CA,36.7329,-119.7828,FRESNO 93716,FRESNO,CA,36.7329,-119.7828,FRESNO 93717,FRESNO,CA,36.7329,-119.7828,FRESNO 93718,FRESNO,CA,36.7329,-119.7828,FRESNO 93720,FRESNO,CA,36.857944,-119.765522,FRESNO 93721,FRESNO,CA,36.737714,-119.784273,FRESNO 93722,FRESNO,CA,36.791779,-119.880119,FRESNO 93723,FRESNO,CA,36.79,-119.9532,FRESNO 93724,FRESNO,CA,36.7387,-119.8046,FRESNO 93725,FRESNO,CA,36.675312,-119.742477,FRESNO 93726,FRESNO,CA,36.794943,-119.760445,FRESNO 93727,FRESNO,CA,36.752796,-119.706055,FRESNO 93728,FRESNO,CA,36.758095,-119.811314,FRESNO 93729,FRESNO,CA,36.8518,-119.7669,FRESNO 93730,FRESNO,CA,36.8878,-119.7589,FRESNO 93740,FRESNO,CA,36.8142,-119.7461,FRESNO 93741,FRESNO,CA,36.7656,-119.7956,FRESNO 93744,FRESNO,CA,36.7585,-119.7995,FRESNO 93745,FRESNO,CA,36.6275,-119.7378,FRESNO 93747,FRESNO,CA,36.7432,-119.7012,FRESNO 93750,FRESNO,CA,36.7387,-119.8046,FRESNO 93755,FRESNO,CA,36.79,-119.7905,FRESNO 93760,FRESNO,CA,36.7387,-119.8046,FRESNO 93761,FRESNO,CA,36.7387,-119.8046,FRESNO 93764,FRESNO,CA,36.7387,-119.8046,FRESNO 93765,FRESNO,CA,36.8349,-119.8301,FRESNO 93771,FRESNO,CA,36.7387,-119.8046,FRESNO 93772,FRESNO,CA,36.7387,-119.8046,FRESNO 93773,FRESNO,CA,36.7387,-119.8046,FRESNO 93774,FRESNO,CA,36.7387,-119.8046,FRESNO 93775,FRESNO,CA,36.7387,-119.8046,FRESNO 93776,FRESNO,CA,36.7387,-119.8046,FRESNO 93777,FRESNO,CA,36.7387,-119.8046,FRESNO 93778,FRESNO,CA,36.7387,-119.8046,FRESNO 93779,FRESNO,CA,36.7387,-119.8046,FRESNO 93780,FRESNO,CA,36.7387,-119.8046,FRESNO 93784,FRESNO,CA,36.8243,-119.7615,FRESNO 93786,FRESNO,CA,36.6377,-119.8999,FRESNO 93790,FRESNO,CA,36.785,-119.8345,FRESNO 93791,FRESNO,CA,36.785,-119.8345,FRESNO 93792,FRESNO,CA,36.785,-119.8345,FRESNO 93793,FRESNO,CA,36.785,-119.8345,FRESNO 93794,FRESNO,CA,36.785,-119.8345,FRESNO 93844,FRESNO,CA,36.7387,-119.8046,FRESNO 93888,FRESNO,CA,36.7387,-119.8046,FRESNO 93901,SALINAS,CA,36.667693,-121.659589,MONTEREY 93902,SALINAS,CA,36.7758,-121.6562,MONTEREY 93905,SALINAS,CA,36.681143,-121.617606,MONTEREY 93906,SALINAS,CA,36.710339,-121.643805,MONTEREY 93907,SALINAS,CA,36.765385,-121.665588,MONTEREY 93908,SALINAS,CA,36.601122,-121.672861,MONTEREY 93912,SALINAS,CA,36.6964,-121.6688,MONTEREY 93915,SALINAS,CA,36.6665,-121.6269,MONTEREY 94035,MOUNTAIN VIEW,CA,37.41001,-122.051944,SANTA CLARA 94039,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94040,MOUNTAIN VIEW,CA,37.385532,-122.087983,SANTA CLARA 94041,MOUNTAIN VIEW,CA,37.389347,-122.078341,SANTA CLARA 94042,MOUNTAIN VIEW,CA,37.3931,-122.077,SANTA CLARA 94043,MOUNTAIN VIEW,CA,37.405567,-122.077468,SANTA CLARA 94101,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94102,SAN FRANCISCO,CA,37.781334,-122.416728,SAN FRANCISCO 94103,SAN FRANCISCO,CA,37.77254,-122.414664,SAN FRANCISCO 94104,SAN FRANCISCO,CA,37.791487,-122.401826,SAN FRANCISCO 94105,SAN FRANCISCO,CA,37.786427,-122.389229,SAN FRANCISCO 94106,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94107,SAN FRANCISCO,CA,37.762147,-122.397099,SAN FRANCISCO 94108,SAN FRANCISCO,CA,37.792931,-122.40791,SAN FRANCISCO 94109,SAN FRANCISCO,CA,37.791687,-122.418579,SAN FRANCISCO 94110,SAN FRANCISCO,CA,37.750858,-122.415344,SAN FRANCISCO 94111,SAN FRANCISCO,CA,37.797376,-122.400147,SAN FRANCISCO 94112,SAN FRANCISCO,CA,37.71954,-122.441081,SAN FRANCISCO 94114,SAN FRANCISCO,CA,37.758716,-122.432977,SAN FRANCISCO 94115,SAN FRANCISCO,CA,37.785607,-122.435835,SAN FRANCISCO 94116,SAN FRANCISCO,CA,37.744144,-122.486296,SAN FRANCISCO 94117,SAN FRANCISCO,CA,37.771234,-122.441272,SAN FRANCISCO 94118,SAN FRANCISCO,CA,37.781174,-122.461414,SAN FRANCISCO 94119,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94120,SAN FRANCISCO,CA,37.793,-122.4012,SAN FRANCISCO 94121,SAN FRANCISCO,CA,37.778616,-122.489178,SAN FRANCISCO 94122,SAN FRANCISCO,CA,37.759326,-122.483647,SAN FRANCISCO 94123,SAN FRANCISCO,CA,37.799865,-122.434163,SAN FRANCISCO 94124,SAN FRANCISCO,CA,37.730888,-122.388649,SAN FRANCISCO 94125,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94126,SAN FRANCISCO,CA,37.795,-122.3933,SAN FRANCISCO 94127,SAN FRANCISCO,CA,37.735385,-122.457116,SAN FRANCISCO 94128,SAN FRANCISCO,CA,37.621944,-122.381944,SAN MATEO 94129,SAN FRANCISCO,CA,37.800507,-122.464958,SAN FRANCISCO 94130,SAN FRANCISCO,CA,37.823128,-122.369319,SAN FRANCISCO 94131,SAN FRANCISCO,CA,37.745032,-122.438335,SAN FRANCISCO 94132,SAN FRANCISCO,CA,37.721118,-122.47545,SAN FRANCISCO 94133,SAN FRANCISCO,CA,37.800175,-122.409081,SAN FRANCISCO 94134,SAN FRANCISCO,CA,37.718968,-122.409577,SAN FRANCISCO 94135,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94136,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94137,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94138,SAN FRANCISCO,CA,37.7917,-122.4007,SAN FRANCISCO 94139,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94140,SAN FRANCISCO,CA,37.7555,-122.4153,SAN FRANCISCO 94141,SAN FRANCISCO,CA,37.7667,-122.4097,SAN FRANCISCO 94142,SAN FRANCISCO,CA,37.7819,-122.4146,SAN FRANCISCO 94143,SAN FRANCISCO,CA,37.7631,-122.4591,SAN FRANCISCO 94144,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94145,SAN FRANCISCO,CA,37.7915,-122.4007,SAN FRANCISCO 94146,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94147,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94150,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94151,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94152,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94153,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94154,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94155,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94156,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94158,SAN FRANCISCO,CA,37.7705,-122.3926,SAN FRANCISCO 94159,SAN FRANCISCO,CA,37.7814,-122.4524,SAN FRANCISCO 94160,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94161,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94162,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94163,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94164,SAN FRANCISCO,CA,37.789,-122.4206,SAN FRANCISCO 94171,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94172,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94175,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94177,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94188,SAN FRANCISCO,CA,37.74,-122.3817,SAN FRANCISCO 94199,SAN FRANCISCO,CA,37.775,-122.4183,SAN FRANCISCO 94203,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94204,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94205,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94206,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94207,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94208,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94209,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94211,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94229,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94230,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94232,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94234,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94235,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94236,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94237,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94239,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94240,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94244,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94245,SACRAMENTO,CA,38.5599,-121.4841,SACRAMENTO 94246,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94247,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94248,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94249,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94250,SACRAMENTO,CA,38.5658,-121.4671,SACRAMENTO 94252,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94254,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94256,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94257,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94258,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 94259,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94261,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94262,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94263,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94267,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94268,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94269,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94271,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94273,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94274,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94277,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94278,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94279,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94280,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94282,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94283,SACRAMENTO,CA,38.475,-121.4421,SACRAMENTO 94284,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94285,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94286,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94287,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94288,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94289,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94290,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94291,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94293,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94294,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94295,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94296,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94297,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94298,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 94299,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 94301,PALO ALTO,CA,37.444324,-122.149685,SANTA CLARA 94302,PALO ALTO,CA,37.441944,-122.141944,SANTA CLARA 94303,PALO ALTO,CA,37.455641,-122.131902,SANTA CLARA 94304,PALO ALTO,CA,37.433424,-122.184234,SANTA CLARA 94306,PALO ALTO,CA,37.418009,-122.127375,SANTA CLARA 94309,PALO ALTO,CA,37.424167,-122.165,SANTA CLARA 94518,CONCORD,CA,37.950434,-122.026296,CONTRA COSTA 94519,CONCORD,CA,37.984082,-122.011948,CONTRA COSTA 94520,CONCORD,CA,37.982259,-122.036178,CONTRA COSTA 94521,CONCORD,CA,37.957503,-121.974955,CONTRA COSTA 94522,CONCORD,CA,37.9857,-122.0357,CONTRA COSTA 94524,CONCORD,CA,37.9769,-122.0561,CONTRA COSTA 94527,CONCORD,CA,37.978,-122.0557,CONTRA COSTA 94529,CONCORD,CA,37.978,-122.03,CONTRA COSTA 94540,HAYWARD,CA,37.6564,-122.0957,ALAMEDA 94541,HAYWARD,CA,37.674048,-122.089418,ALAMEDA 94542,HAYWARD,CA,37.658566,-122.047236,ALAMEDA 94543,HAYWARD,CA,37.6707,-122.0827,ALAMEDA 94544,HAYWARD,CA,37.637443,-122.067029,ALAMEDA 94545,HAYWARD,CA,37.633245,-122.0971,ALAMEDA 94557,HAYWARD,CA,37.6335,-122.0961,ALAMEDA 94601,OAKLAND,CA,37.780595,-122.216587,ALAMEDA 94602,OAKLAND,CA,37.801133,-122.210368,ALAMEDA 94603,OAKLAND,CA,37.740239,-122.171017,ALAMEDA 94604,OAKLAND,CA,37.8018,-122.2652,ALAMEDA 94605,OAKLAND,CA,37.764132,-122.163326,ALAMEDA 94606,OAKLAND,CA,37.79565,-122.24292,ALAMEDA 94607,OAKLAND,CA,37.807084,-122.285051,ALAMEDA 94609,OAKLAND,CA,37.836096,-122.26367,ALAMEDA 94610,OAKLAND,CA,37.812636,-122.244322,ALAMEDA 94611,OAKLAND,CA,37.828157,-122.22683,ALAMEDA 94612,OAKLAND,CA,37.808473,-122.266774,ALAMEDA 94613,OAKLAND,CA,37.782427,-122.181585,ALAMEDA 94614,OAKLAND,CA,37.7209,-122.2154,ALAMEDA 94615,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94617,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94618,OAKLAND,CA,37.84368,-122.24191,ALAMEDA 94619,OAKLAND,CA,37.787786,-122.18838,ALAMEDA 94621,OAKLAND,CA,37.758924,-122.185335,ALAMEDA 94622,OAKLAND,CA,37.7417,-122.192,ALAMEDA 94623,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94624,OAKLAND,CA,37.7478,-122.1725,ALAMEDA 94625,OAKLAND,CA,37.8045,-122.3198,ALAMEDA 94649,OAKLAND,CA,37.827,-122.2998,ALAMEDA 94659,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94660,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94661,OAKLAND,CA,37.8285,-122.2094,ALAMEDA 94666,OAKLAND,CA,37.8044,-122.2697,ALAMEDA 94701,BERKELEY,CA,37.8691,-122.2696,ALAMEDA 94702,BERKELEY,CA,37.865611,-122.285126,ALAMEDA 94703,BERKELEY,CA,37.863028,-122.274914,ALAMEDA 94704,BERKELEY,CA,37.866428,-122.257048,ALAMEDA 94705,BERKELEY,CA,37.85711,-122.249964,ALAMEDA 94707,BERKELEY,CA,37.893118,-122.276517,ALAMEDA 94708,BERKELEY,CA,37.890829,-122.25976,ALAMEDA 94709,BERKELEY,CA,37.878397,-122.265461,ALAMEDA 94710,BERKELEY,CA,37.869603,-122.295929,ALAMEDA 94712,BERKELEY,CA,37.8693,-122.268,ALAMEDA 94720,BERKELEY,CA,37.8719,-122.2591,ALAMEDA 94801,RICHMOND,CA,37.940039,-122.36201,CONTRA COSTA 94802,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94804,RICHMOND,CA,37.926523,-122.33421,CONTRA COSTA 94805,RICHMOND,CA,37.941719,-122.323756,CONTRA COSTA 94807,RICHMOND,CA,37.9271,-122.384,CONTRA COSTA 94808,RICHMOND,CA,37.9338,-122.3432,CONTRA COSTA 94850,RICHMOND,CA,37.9372,-122.3585,CONTRA COSTA 94952,PETALUMA,CA,38.240349,-122.677727,SONOMA 94953,PETALUMA,CA,38.3221,-122.6441,SONOMA 94954,PETALUMA,CA,38.250739,-122.615536,SONOMA 94955,PETALUMA,CA,38.2325,-122.6355,SONOMA 94975,PETALUMA,CA,38.3221,-122.6441,SONOMA 94999,PETALUMA,CA,38.3221,-122.6441,SONOMA 95050,SANTA CLARA,CA,37.34732,-121.954079,SANTA CLARA 95051,SANTA CLARA,CA,37.346992,-121.983848,SANTA CLARA 95052,SANTA CLARA,CA,37.3522,-121.9583,SANTA CLARA 95053,SANTA CLARA,CA,37.3473,-121.9328,SANTA CLARA 95054,SANTA CLARA,CA,37.394673,-121.95394,SANTA CLARA 95055,SANTA CLARA,CA,37.3451,-121.9769,SANTA CLARA 95056,SANTA CLARA,CA,37.3997,-121.9608,SANTA CLARA 95060,SANTA CRUZ,CA,36.982946,-122.043612,SANTA CRUZ 95061,SANTA CRUZ,CA,37.063,-122.162,SANTA CRUZ 95062,SANTA CRUZ,CA,36.972101,-121.988055,SANTA CRUZ 95063,SANTA CRUZ,CA,36.9792,-122.0088,SANTA CRUZ 95064,SANTA CRUZ,CA,36.995851,-122.057803,SANTA CRUZ 95065,SANTA CRUZ,CA,37.003319,-121.982557,SANTA CRUZ 95101,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95103,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95106,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95108,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95109,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95110,SAN JOSE,CA,37.32966,-121.890299,SANTA CLARA 95111,SAN JOSE,CA,37.282276,-121.824038,SANTA CLARA 95112,SAN JOSE,CA,37.341388,-121.880414,SANTA CLARA 95113,SAN JOSE,CA,37.335188,-121.887227,SANTA CLARA 95115,SAN JOSE,CA,37.3378,-121.8908,SANTA CLARA 95116,SAN JOSE,CA,37.351342,-121.850221,SANTA CLARA 95117,SAN JOSE,CA,37.308896,-121.962126,SANTA CLARA 95118,SAN JOSE,CA,37.256162,-121.889845,SANTA CLARA 95119,SAN JOSE,CA,37.230135,-121.790067,SANTA CLARA 95120,SAN JOSE,CA,37.217538,-121.861547,SANTA CLARA 95121,SAN JOSE,CA,37.30593,-121.811939,SANTA CLARA 95122,SAN JOSE,CA,37.329313,-121.833949,SANTA CLARA 95123,SAN JOSE,CA,37.244594,-121.830502,SANTA CLARA 95124,SAN JOSE,CA,37.256844,-121.920831,SANTA CLARA 95125,SAN JOSE,CA,37.296187,-121.895476,SANTA CLARA 95126,SAN JOSE,CA,37.322482,-121.917398,SANTA CLARA 95127,SAN JOSE,CA,37.3664,-121.819516,SANTA CLARA 95128,SAN JOSE,CA,37.314657,-121.934364,SANTA CLARA 95129,SAN JOSE,CA,37.306537,-122.000494,SANTA CLARA 95130,SAN JOSE,CA,37.288628,-121.979182,SANTA CLARA 95131,SAN JOSE,CA,37.386368,-121.879977,SANTA CLARA 95132,SAN JOSE,CA,37.40408,-121.860336,SANTA CLARA 95133,SAN JOSE,CA,37.372875,-121.855959,SANTA CLARA 95134,SAN JOSE,CA,37.413999,-121.943399,SANTA CLARA 95135,SAN JOSE,CA,37.297539,-121.757228,SANTA CLARA 95136,SAN JOSE,CA,37.268423,-121.847625,SANTA CLARA 95138,SAN JOSE,CA,37.246259,-121.778641,SANTA CLARA 95139,SAN JOSE,CA,37.225162,-121.766867,SANTA CLARA 95141,SAN JOSE,CA,37.169912,-121.755808,SANTA CLARA 95148,SAN JOSE,CA,37.329765,-121.792111,SANTA CLARA 95150,SAN JOSE,CA,37.3866,-121.897,SANTA CLARA 95151,SAN JOSE,CA,37.3198,-121.8262,SANTA CLARA 95152,SAN JOSE,CA,37.4022,-121.847,SANTA CLARA 95153,SAN JOSE,CA,37.2488,-121.8459,SANTA CLARA 95154,SAN JOSE,CA,37.2649,-121.9139,SANTA CLARA 95155,SAN JOSE,CA,37.31,-121.9011,SANTA CLARA 95156,SAN JOSE,CA,37.3576,-121.8416,SANTA CLARA 95157,SAN JOSE,CA,37.3008,-121.9777,SANTA CLARA 95158,SAN JOSE,CA,37.2625,-121.8779,SANTA CLARA 95159,SAN JOSE,CA,37.3179,-121.9349,SANTA CLARA 95160,SAN JOSE,CA,37.2187,-121.8601,SANTA CLARA 95161,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95164,SAN JOSE,CA,37.3916,-121.9203,SANTA CLARA 95170,SAN JOSE,CA,37.3103,-122.0093,SANTA CLARA 95172,SAN JOSE,CA,37.334,-121.8847,SANTA CLARA 95173,SAN JOSE,CA,37.3352,-121.8938,SANTA CLARA 95190,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95191,SAN JOSE,CA,37.3262,-121.9158,SANTA CLARA 95192,SAN JOSE,CA,37.3383,-121.8801,SANTA CLARA 95193,SAN JOSE,CA,37.2441,-121.8287,SANTA CLARA 95194,SAN JOSE,CA,37.3894,-121.8868,SANTA CLARA 95196,SAN JOSE,CA,37.3338,-121.8894,SANTA CLARA 95201,STOCKTON,CA,37.958,-121.2876,SAN JOAQUIN 95202,STOCKTON,CA,37.960632,-121.287087,SAN JOAQUIN 95203,STOCKTON,CA,37.956515,-121.307688,SAN JOAQUIN 95204,STOCKTON,CA,37.974302,-121.315364,SAN JOAQUIN 95205,STOCKTON,CA,37.960986,-121.259241,SAN JOAQUIN 95206,STOCKTON,CA,37.931643,-121.287169,SAN JOAQUIN 95207,STOCKTON,CA,38.002025,-121.32056,SAN JOAQUIN 95208,STOCKTON,CA,37.9304,-121.436,SAN JOAQUIN 95209,STOCKTON,CA,38.033105,-121.343292,SAN JOAQUIN 95210,STOCKTON,CA,38.024997,-121.297229,SAN JOAQUIN 95211,STOCKTON,CA,37.980364,-121.310336,SAN JOAQUIN 95212,STOCKTON,CA,38.034428,-121.246018,SAN JOAQUIN 95213,STOCKTON,CA,37.9054,-121.2222,SAN JOAQUIN 95215,STOCKTON,CA,37.968545,-121.215295,SAN JOAQUIN 95219,STOCKTON,CA,38.010233,-121.363712,SAN JOAQUIN 95267,STOCKTON,CA,38.0003,-121.3174,SAN JOAQUIN 95269,STOCKTON,CA,38.0187,-121.3225,SAN JOAQUIN 95296,STOCKTON,CA,37.715833,-121.380556,SAN JOAQUIN 95297,STOCKTON,CA,38.0025,-121.324,SAN JOAQUIN 95350,MODESTO,CA,37.674649,-121.011303,STANISLAUS 95351,MODESTO,CA,37.625022,-121.006033,STANISLAUS 95352,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95353,MODESTO,CA,37.6424,-120.9999,STANISLAUS 95354,MODESTO,CA,37.644526,-120.968323,STANISLAUS 95355,MODESTO,CA,37.673515,-120.954658,STANISLAUS 95356,MODESTO,CA,37.699431,-121.027051,STANISLAUS 95357,MODESTO,CA,37.6635,-120.9186,STANISLAUS 95358,MODESTO,CA,37.622,-121.0453,STANISLAUS 95397,MODESTO,CA,37.6566,-121.0191,STANISLAUS 95401,SANTA ROSA,CA,38.443123,-122.751722,SONOMA 95402,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95403,SANTA ROSA,CA,38.477273,-122.748528,SONOMA 95404,SANTA ROSA,CA,38.449556,-122.689524,SONOMA 95405,SANTA ROSA,CA,38.438279,-122.66988,SONOMA 95406,SANTA ROSA,CA,38.4399,-122.7096,SONOMA 95407,SANTA ROSA,CA,38.410462,-122.727896,SONOMA 95409,SANTA ROSA,CA,38.461242,-122.642125,SONOMA 95811,SACRAMENTO,CA,38.5815719,-121.4943996,SACRAMENTO 95812,SACRAMENTO,CA,38.5822,-121.4943,SACRAMENTO 95813,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95814,SACRAMENTO,CA,38.579792,-121.489404,SACRAMENTO 95815,SACRAMENTO,CA,38.613303,-121.443543,SACRAMENTO 95816,SACRAMENTO,CA,38.572788,-121.46753,SACRAMENTO 95817,SACRAMENTO,CA,38.549785,-121.458324,SACRAMENTO 95818,SACRAMENTO,CA,38.556778,-121.492884,SACRAMENTO 95819,SACRAMENTO,CA,38.568293,-121.436634,SACRAMENTO 95820,SACRAMENTO,CA,38.534694,-121.445139,SACRAMENTO 95821,SACRAMENTO,CA,38.623889,-121.383807,SACRAMENTO 95822,SACRAMENTO,CA,38.509139,-121.493541,SACRAMENTO 95823,SACRAMENTO,CA,38.479711,-121.443846,SACRAMENTO 95824,SACRAMENTO,CA,38.517843,-121.441883,SACRAMENTO 95825,SACRAMENTO,CA,38.589226,-121.405677,SACRAMENTO 95826,SACRAMENTO,CA,38.553868,-121.369265,SACRAMENTO 95827,SACRAMENTO,CA,38.56623,-121.328593,SACRAMENTO 95828,SACRAMENTO,CA,38.483718,-121.401504,SACRAMENTO 95829,SACRAMENTO,CA,38.472564,-121.346631,SACRAMENTO 95830,SACRAMENTO,CA,38.476556,-121.281453,SACRAMENTO 95831,SACRAMENTO,CA,38.496226,-121.529661,SACRAMENTO 95832,SACRAMENTO,CA,38.475387,-121.482967,SACRAMENTO 95833,SACRAMENTO,CA,38.616993,-121.494487,SACRAMENTO 95834,SACRAMENTO,CA,38.633418,-121.492052,SACRAMENTO 95835,SACRAMENTO,CA,38.662595,-121.483444,SACRAMENTO 95836,SACRAMENTO,CA,38.707346,-121.532259,SACRAMENTO 95837,SACRAMENTO,CA,38.681726,-121.60297,SACRAMENTO 95838,SACRAMENTO,CA,38.640566,-121.44396,SACRAMENTO 95840,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95841,SACRAMENTO,CA,38.662699,-121.340608,SACRAMENTO 95842,SACRAMENTO,CA,38.687385,-121.35046,SACRAMENTO 95851,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95852,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95853,SACRAMENTO,CA,38.6026,-121.4475,SACRAMENTO 95860,SACRAMENTO,CA,38.6105,-121.3799,SACRAMENTO 95864,SACRAMENTO,CA,38.587768,-121.376889,SACRAMENTO 95865,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95866,SACRAMENTO,CA,38.596,-121.3978,SACRAMENTO 95867,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95887,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95894,SACRAMENTO,CA,38.5816,-121.4933,SACRAMENTO 95899,SACRAMENTO,CA,38.5383,-121.5549,SACRAMENTO 95926,CHICO,CA,39.756466,-121.851806,BUTTE 95927,CHICO,CA,39.8117,-121.9398,BUTTE 95928,CHICO,CA,39.729523,-121.81555,BUTTE 95929,CHICO,CA,39.7301,-121.8414,BUTTE 95973,CHICO,CA,39.925556,-121.73,BUTTE 95976,CHICO,CA,39.7346,-121.8331,BUTTE 96150,SOUTH LAKE TAHOE,CA,38.916976,-119.986469,EL DORADO 96151,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96152,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96154,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96155,SOUTH LAKE TAHOE,CA,39.0166,-120.1229,EL DORADO 96156,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96157,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96158,SOUTH LAKE TAHOE,CA,38.9333,-119.9833,EL DORADO 96801,HONOLULU,HI,21.3095,-157.863,HONOLULU 96802,HONOLULU,HI,21.3095,-157.863,HONOLULU 96803,HONOLULU,HI,21.3095,-157.863,HONOLULU 96804,HONOLULU,HI,21.3095,-157.863,HONOLULU 96805,HONOLULU,HI,21.3095,-157.863,HONOLULU 96806,HONOLULU,HI,21.3095,-157.863,HONOLULU 96807,HONOLULU,HI,21.3095,-157.863,HONOLULU 96808,HONOLULU,HI,21.3095,-157.863,HONOLULU 96809,HONOLULU,HI,21.3095,-157.863,HONOLULU 96810,HONOLULU,HI,21.3095,-157.863,HONOLULU 96811,HONOLULU,HI,21.3095,-157.863,HONOLULU 96812,HONOLULU,HI,21.3095,-157.863,HONOLULU 96813,HONOLULU,HI,21.317905,-157.852072,HONOLULU 96814,HONOLULU,HI,21.299846,-157.843876,HONOLULU 96815,HONOLULU,HI,21.281084,-157.826616,HONOLULU 96816,HONOLULU,HI,21.288677,-157.800626,HONOLULU 96817,HONOLULU,HI,21.329452,-157.861469,HONOLULU 96818,HONOLULU,HI,21.353173,-157.926925,HONOLULU 96819,HONOLULU,HI,21.34877,-157.875947,HONOLULU 96820,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96821,HONOLULU,HI,21.292811,-157.755242,HONOLULU 96822,HONOLULU,HI,21.311704,-157.829819,HONOLULU 96823,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96824,HONOLULU,HI,21.2808,-157.7552,HONOLULU 96825,HONOLULU,HI,21.298684,-157.698523,HONOLULU 96826,HONOLULU,HI,21.294139,-157.828388,HONOLULU 96827,HONOLULU,HI,21.3172,-157.8643,HONOLULU 96828,HONOLULU,HI,21.294,-157.8226,HONOLULU 96830,HONOLULU,HI,21.2841,-157.8341,HONOLULU 96835,HONOLULU,HI,21.3509,-157.8794,HONOLULU 96836,HONOLULU,HI,21.2899,-157.8384,HONOLULU 96837,HONOLULU,HI,21.315,-157.8633,HONOLULU 96838,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96839,HONOLULU,HI,21.3107,-157.812,HONOLULU 96840,HONOLULU,HI,21.3095,-157.863,HONOLULU 96841,HONOLULU,HI,21.3095,-157.863,HONOLULU 96843,HONOLULU,HI,21.3095,-157.863,HONOLULU 96844,HONOLULU,HI,21.2981,-157.8189,HONOLULU 96846,HONOLULU,HI,21.3095,-157.863,HONOLULU 96847,HONOLULU,HI,21.3095,-157.863,HONOLULU 96848,HONOLULU,HI,21.3072,-157.8465,HONOLULU 96849,HONOLULU,HI,21.3069,-157.8583,HONOLULU 96850,HONOLULU,HI,21.3095,-157.863,HONOLULU 97005,BEAVERTON,OR,45.475035,-122.805395,WASHINGTON 97006,BEAVERTON,OR,45.517675,-122.859209,WASHINGTON 97007,BEAVERTON,OR,45.472985,-122.859473,WASHINGTON 97008,BEAVERTON,OR,45.4614,-122.8062,WASHINGTON 97075,BEAVERTON,OR,45.4861,-122.8004,WASHINGTON 97076,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97077,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97078,BEAVERTON,OR,45.4872,-122.8025,WASHINGTON 97201,PORTLAND,OR,45.498819,-122.690258,MULTNOMAH 97202,PORTLAND,OR,45.484007,-122.636534,MULTNOMAH 97203,PORTLAND,OR,45.588872,-122.734699,MULTNOMAH 97204,PORTLAND,OR,45.51807,-122.674498,MULTNOMAH 97205,PORTLAND,OR,45.52072,-122.688846,MULTNOMAH 97206,PORTLAND,OR,45.483995,-122.59727,MULTNOMAH 97207,PORTLAND,OR,45.5136,-122.6801,MULTNOMAH 97208,PORTLAND,OR,45.5273,-122.6786,MULTNOMAH 97209,PORTLAND,OR,45.526962,-122.685447,MULTNOMAH 97210,PORTLAND,OR,45.530318,-122.703348,MULTNOMAH 97211,PORTLAND,OR,45.565259,-122.644815,MULTNOMAH 97212,PORTLAND,OR,45.544127,-122.642319,MULTNOMAH 97213,PORTLAND,OR,45.537292,-122.59867,MULTNOMAH 97214,PORTLAND,OR,45.514207,-122.636397,MULTNOMAH 97215,PORTLAND,OR,45.514282,-122.599001,MULTNOMAH 97216,PORTLAND,OR,45.513746,-122.55688,MULTNOMAH 97217,PORTLAND,OR,45.57424,-122.684196,MULTNOMAH 97218,PORTLAND,OR,45.560032,-122.600131,MULTNOMAH 97219,PORTLAND,OR,45.457956,-122.70738,MULTNOMAH 97220,PORTLAND,OR,45.541109,-122.556586,MULTNOMAH 97221,PORTLAND,OR,45.491829,-122.726723,MULTNOMAH 97222,PORTLAND,OR,45.442919,-122.615092,CLACKAMAS 97223,PORTLAND,OR,45.443343,-122.775974,WASHINGTON 97224,PORTLAND,OR,45.407292,-122.788379,WASHINGTON 97225,PORTLAND,OR,45.500449,-122.768344,WASHINGTON 97227,PORTLAND,OR,45.549564,-122.674257,MULTNOMAH 97228,PORTLAND,OR,45.5275,-122.6764,MULTNOMAH 97229,PORTLAND,OR,45.541087,-122.829924,WASHINGTON 97230,PORTLAND,OR,45.535753,-122.500343,MULTNOMAH 97231,PORTLAND,OR,45.640124,-122.838032,MULTNOMAH 97232,PORTLAND,OR,45.528712,-122.63631,MULTNOMAH 97233,PORTLAND,OR,45.514206,-122.498493,MULTNOMAH 97236,PORTLAND,OR,45.488748,-122.509091,MULTNOMAH 97238,PORTLAND,OR,45.5849,-122.5804,MULTNOMAH 97239,PORTLAND,OR,45.489,-122.6881,MULTNOMAH 97240,PORTLAND,OR,45.522,-122.6741,MULTNOMAH 97242,PORTLAND,OR,45.5003,-122.6495,MULTNOMAH 97251,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97253,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97254,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97255,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97256,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97258,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97259,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97266,PORTLAND,OR,45.476207,-122.559607,MULTNOMAH 97267,PORTLAND,OR,45.407494,-122.610631,CLACKAMAS 97268,PORTLAND,OR,45.4012,-122.6203,CLACKAMAS 97269,PORTLAND,OR,45.4416,-122.6392,CLACKAMAS 97271,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97272,PORTLAND,OR,45.5236,-122.675,MULTNOMAH 97280,PORTLAND,OR,45.4685,-122.7164,MULTNOMAH 97281,PORTLAND,OR,45.431,-122.769,WASHINGTON 97282,PORTLAND,OR,45.474,-122.6488,MULTNOMAH 97283,PORTLAND,OR,45.5888,-122.7525,MULTNOMAH 97286,PORTLAND,OR,45.4966,-122.6091,MULTNOMAH 97290,PORTLAND,OR,45.5761,-122.6436,MULTNOMAH 97291,PORTLAND,OR,45.5623,-122.8316,WASHINGTON 97292,PORTLAND,OR,45.5164,-122.5359,MULTNOMAH 97293,PORTLAND,OR,45.5155,-122.6569,MULTNOMAH 97294,PORTLAND,OR,45.5519,-122.5357,MULTNOMAH 97296,PORTLAND,OR,45.5359,-122.6559,MULTNOMAH 97298,PORTLAND,OR,45.4968,-122.7658,WASHINGTON 97299,PORTLAND,OR,45.5402,-122.6106,MULTNOMAH 97301,SALEM,OR,44.926039,-122.979692,MARION 97302,SALEM,OR,44.903899,-123.044514,MARION 97303,SALEM,OR,44.985794,-123.019015,MARION 97304,SALEM,OR,44.958846,-123.075323,POLK 97305,SALEM,OR,44.982502,-122.966892,MARION 97306,SALEM,OR,44.8685,-123.043789,MARION 97308,SALEM,OR,44.943,-123.0338,MARION 97309,SALEM,OR,44.9253,-123.0091,MARION 97310,SALEM,OR,44.9406,-123.0054,MARION 97311,SALEM,OR,44.943,-123.0338,MARION 97312,SALEM,OR,44.9371,-123.0385,MARION 97313,SALEM,OR,45.0306,-123.0256,MARION 97314,SALEM,OR,45.0306,-123.0256,MARION 97317,SALEM,OR,44.9036,-122.9466,MARION 97401,EUGENE,OR,44.073677,-123.078757,LANE 97402,EUGENE,OR,44.061243,-123.155525,LANE 97403,EUGENE,OR,44.038534,-123.061422,LANE 97404,EUGENE,OR,44.100536,-123.13336,LANE 97405,EUGENE,OR,44.018497,-123.099769,LANE 97408,EUGENE,OR,44.1129,-123.0711,LANE 97440,EUGENE,OR,44.0541,-123.092,LANE 98004,BELLEVUE,WA,47.619899,-122.207371,KING 98005,BELLEVUE,WA,47.614961,-122.166288,KING 98006,BELLEVUE,WA,47.561425,-122.155179,KING 98007,BELLEVUE,WA,47.617443,-122.142572,KING 98008,BELLEVUE,WA,47.611468,-122.116173,KING 98009,BELLEVUE,WA,47.6105,-122.1994,KING 98015,BELLEVUE,WA,47.6122,-122.1862,KING 98030,KENT,WA,47.3695,-122.1949,KING 98031,KENT,WA,47.388004,-122.193184,KING 98032,KENT,WA,47.377633,-122.285362,KING 98035,KENT,WA,47.3808,-122.2346,KING 98042,KENT,WA,47.368044,-122.120615,KING 98064,KENT,WA,47.3873,-122.1983,KING 98089,KENT,WA,47.3811,-122.2336,KING 98101,SEATTLE,WA,47.611435,-122.330456,KING 98102,SEATTLE,WA,47.63025,-122.320993,KING 98103,SEATTLE,WA,47.67335,-122.342621,KING 98104,SEATTLE,WA,47.603631,-122.325644,KING 98105,SEATTLE,WA,47.663266,-122.302236,KING 98106,SEATTLE,WA,47.534362,-122.354688,KING 98107,SEATTLE,WA,47.67012,-122.37626,KING 98108,SEATTLE,WA,47.547448,-122.306823,KING 98109,SEATTLE,WA,47.633875,-122.347615,KING 98111,SEATTLE,WA,47.609,-122.3351,KING 98112,SEATTLE,WA,47.630115,-122.297157,KING 98113,SEATTLE,WA,47.6064,-122.3308,KING 98114,SEATTLE,WA,47.6036,-122.3258,KING 98115,SEATTLE,WA,47.684918,-122.296828,KING 98116,SEATTLE,WA,47.574591,-122.393445,KING 98117,SEATTLE,WA,47.687263,-122.377223,KING 98118,SEATTLE,WA,47.541234,-122.275021,KING 98119,SEATTLE,WA,47.637917,-122.364272,KING 98121,SEATTLE,WA,47.615135,-122.344696,KING 98122,SEATTLE,WA,47.611633,-122.305608,KING 98124,SEATTLE,WA,47.6063,-122.3308,KING 98125,SEATTLE,WA,47.717002,-122.301546,KING 98126,SEATTLE,WA,47.544361,-122.373458,KING 98127,SEATTLE,WA,47.6064,-122.3308,KING 98129,SEATTLE,WA,47.6063,-122.3308,KING 98131,SEATTLE,WA,47.6063,-122.3308,KING 98132,SEATTLE,WA,47.6063,-122.3308,KING 98133,SEATTLE,WA,47.737717,-122.343132,KING 98134,SEATTLE,WA,47.590276,-122.326346,KING 98136,SEATTLE,WA,47.539769,-122.387768,KING 98138,SEATTLE,WA,47.4572,-122.2529,KING 98139,SEATTLE,WA,47.6064,-122.3308,KING 98141,SEATTLE,WA,47.6064,-122.3308,KING 98144,SEATTLE,WA,47.584624,-122.300457,KING 98145,SEATTLE,WA,47.6591,-122.3115,KING 98146,SEATTLE,WA,47.501069,-122.353989,KING 98148,SEATTLE,WA,47.450209,-122.326112,KING 98151,SEATTLE,WA,47.6063,-122.3308,KING 98154,SEATTLE,WA,47.6036,-122.3258,KING 98155,SEATTLE,WA,47.758161,-122.296305,KING 98158,SEATTLE,WA,47.442739,-122.318454,KING 98160,SEATTLE,WA,47.7654,-122.3614,KING 98161,SEATTLE,WA,47.609,-122.3351,KING 98164,SEATTLE,WA,47.6036,-122.3258,KING 98165,SEATTLE,WA,47.6064,-122.3308,KING 98166,SEATTLE,WA,47.455052,-122.347392,KING 98168,SEATTLE,WA,47.48851,-122.302376,KING 98170,SEATTLE,WA,47.6064,-122.3308,KING 98171,SEATTLE,WA,47.609,-122.3351,KING 98174,SEATTLE,WA,47.6036,-122.3258,KING 98175,SEATTLE,WA,47.6064,-122.3308,KING 98177,SEATTLE,WA,47.746678,-122.368585,KING 98178,SEATTLE,WA,47.499489,-122.247366,KING 98181,SEATTLE,WA,47.6063,-122.3308,KING 98184,SEATTLE,WA,47.6063,-122.3308,KING 98185,SEATTLE,WA,47.6641,-122.2941,KING 98188,SEATTLE,WA,47.449808,-122.281159,KING 98190,SEATTLE,WA,47.6064,-122.3308,KING 98191,SEATTLE,WA,47.6063,-122.3308,KING 98194,SEATTLE,WA,47.6064,-122.3308,KING 98195,SEATTLE,WA,47.6518,-122.3101,KING 98198,SEATTLE,WA,47.407286,-122.309559,KING 98199,SEATTLE,WA,47.648845,-122.396357,KING 98201,EVERETT,WA,47.988431,-122.200571,SNOHOMISH 98203,EVERETT,WA,47.941937,-122.221846,SNOHOMISH 98204,EVERETT,WA,47.901659,-122.247217,SNOHOMISH 98205,EVERETT,WA,47.990065,-122.115759,SNOHOMISH 98206,EVERETT,WA,47.9763,-122.2088,SNOHOMISH 98207,EVERETT,WA,47.9988,-122.188,SNOHOMISH 98208,EVERETT,WA,47.894822,-122.198722,SNOHOMISH 98213,EVERETT,WA,47.9792,-122.2008,SNOHOMISH 98401,TACOMA,WA,47.2764,-122.7583,PIERCE 98402,TACOMA,WA,47.254508,-122.440536,PIERCE 98403,TACOMA,WA,47.26428,-122.457538,PIERCE 98404,TACOMA,WA,47.211312,-122.412625,PIERCE 98405,TACOMA,WA,47.248351,-122.46435,PIERCE 98406,TACOMA,WA,47.26325,-122.499349,PIERCE 98407,TACOMA,WA,47.282479,-122.503881,PIERCE 98408,TACOMA,WA,47.207267,-122.444381,PIERCE 98409,TACOMA,WA,47.20381,-122.482503,PIERCE 98411,TACOMA,WA,47.2215,-122.4717,PIERCE 98412,TACOMA,WA,47.1826,-122.4402,PIERCE 98413,TACOMA,WA,47.253,-122.443,PIERCE 98415,TACOMA,WA,47.253,-122.443,PIERCE 98416,TACOMA,WA,47.2633,-122.4803,PIERCE 98417,TACOMA,WA,47.1663,-12.2378,PIERCE 98418,TACOMA,WA,47.2242,-122.4473,PIERCE 98419,TACOMA,WA,47.1663,-12.2378,PIERCE 98421,TACOMA,WA,47.266373,-122.401457,PIERCE 98422,TACOMA,WA,47.294805,-122.398349,PIERCE 98424,TACOMA,WA,47.243632,-122.350962,PIERCE 98431,TACOMA,WA,47.063056,-122.553333,PIERCE 98433,TACOMA,WA,47.100864,-122.583486,PIERCE 98439,LAKEWOOD,WA,47.122905,-122.529326,PIERCE 98442,TACOMA,WA,47.1461,-122.4347,PIERCE 98443,TACOMA,WA,47.204369,-122.372815,PIERCE 98444,TACOMA,WA,47.156553,-122.448842,PIERCE 98445,TACOMA,WA,47.133967,-122.411614,PIERCE 98446,TACOMA,WA,47.14041,-122.37189,PIERCE 98447,TACOMA,WA,47.1458,-122.44,PIERCE 98448,TACOMA,WA,47.1663,-12.2378,PIERCE 98450,TACOMA,WA,47.253,-122.443,PIERCE 98455,TACOMA,WA,47.253,-122.443,PIERCE 98460,TACOMA,WA,47.253,-122.443,PIERCE 98464,TACOMA,WA,47.253,-122.443,PIERCE 98465,TACOMA,WA,47.249139,-122.527272,PIERCE 98466,TACOMA,WA,47.22788,-122.53503,PIERCE 98471,TACOMA,WA,47.2551,-122.4733,PIERCE 98477,TACOMA,WA,47.253,-122.443,PIERCE 98481,TACOMA,WA,47.2208,-122.4732,PIERCE 98490,TACOMA,WA,47.1663,-12.2378,PIERCE 98492,LAKEWOOD,WA,47.123611,-122.555833,PIERCE 98493,TACOMA,WA,47.0631,-122.5536,PIERCE 98496,LAKEWOOD,WA,47.1663,-12.2378,PIERCE 98497,LAKEWOOD,WA,47.1805,-122.5465,PIERCE 98498,LAKEWOOD,WA,47.164269,-122.555357,PIERCE 98499,LAKEWOOD,WA,47.160786,-122.509074,PIERCE 98501,OLYMPIA,WA,47.012906,-122.876311,THURSTON 98502,OLYMPIA,WA,47.029828,-122.95214,THURSTON 98504,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98505,OLYMPIA,WA,47.0704,-122.9604,THURSTON 98506,OLYMPIA,WA,47.076259,-122.832844,THURSTON 98507,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98508,OLYMPIA,WA,47.0352,-122.9369,THURSTON 98512,OLYMPIA,WA,46.974,-122.9871,THURSTON 98513,OLYMPIA,WA,47.008,-122.7571,THURSTON 98516,OLYMPIA,WA,47.0833,-122.7776,THURSTON 98599,OLYMPIA,WA,47.0409,-122.8945,THURSTON 98660,VANCOUVER,WA,45.64183,-122.68014,CLARK 98661,VANCOUVER,WA,45.641807,-122.625146,CLARK 98662,VANCOUVER,WA,45.674519,-122.576182,CLARK 98663,VANCOUVER,WA,45.6514,-122.660385,CLARK 98664,VANCOUVER,WA,45.623086,-122.576741,CLARK 98665,VANCOUVER,WA,45.68217,-122.664223,CLARK 98666,VANCOUVER,WA,45.6307,-122.6733,CLARK 98667,VANCOUVER,WA,45.6388,-122.6602,CLARK 98668,VANCOUVER,WA,45.6408,-122.6221,CLARK 98682,VANCOUVER,WA,45.664399,-122.521224,CLARK 98683,VANCOUVER,WA,45.6034,-122.5101,CLARK 98684,VANCOUVER,WA,45.617522,-122.524969,CLARK 98685,VANCOUVER,WA,45.707313,-122.682474,CLARK 98686,VANCOUVER,WA,45.712017,-122.632226,CLARK 98687,VANCOUVER,WA,45.6311,-122.518,CLARK 98901,YAKIMA,WA,46.606991,-120.477336,YAKIMA 98902,YAKIMA,WA,46.593393,-120.531084,YAKIMA 98903,YAKIMA,WA,46.5572,-120.556587,YAKIMA 98904,YAKIMA,WA,46.6022,-120.5047,YAKIMA 98907,YAKIMA,WA,46.666,-120.3543,YAKIMA 98908,YAKIMA,WA,46.605865,-120.605175,YAKIMA 98909,YAKIMA,WA,46.5708,-120.5069,YAKIMA 99201,SPOKANE,WA,47.666485,-117.436527,SPOKANE 99202,SPOKANE,WA,47.654741,-117.380972,SPOKANE 99203,SPOKANE,WA,47.629443,-117.404121,SPOKANE 99204,SPOKANE,WA,47.640682,-117.471896,SPOKANE 99205,SPOKANE,WA,47.69641,-117.439912,SPOKANE 99206,SPOKANE,WA,47.649588,-117.258126,SPOKANE 99207,SPOKANE,WA,47.697712,-117.374565,SPOKANE 99208,SPOKANE,WA,47.737434,-117.435207,SPOKANE 99209,SPOKANE,WA,47.6934,-117.4382,SPOKANE 99210,SPOKANE,WA,47.6581,-117.424,SPOKANE 99211,SPOKANE,WA,47.6588,-117.425,SPOKANE 99212,SPOKANE,WA,47.668598,-117.304853,SPOKANE 99213,SPOKANE,WA,47.6588,-117.425,SPOKANE 99214,SPOKANE,WA,47.6588,-117.425,SPOKANE 99215,SPOKANE,WA,47.6953,-117.2105,SPOKANE 99216,SPOKANE,WA,47.663389,-117.219307,SPOKANE 99217,SPOKANE,WA,47.7143,-117.3247,SPOKANE 99218,SPOKANE,WA,47.755648,-117.4146,SPOKANE 99219,SPOKANE,WA,47.6588,-117.425,SPOKANE 99220,SPOKANE,WA,47.657,-117.3859,SPOKANE 99223,SPOKANE,WA,47.61558,-117.362215,SPOKANE 99224,SPOKANE,WA,47.6319,-117.4873,SPOKANE 99228,SPOKANE,WA,47.7155,-117.4245,SPOKANE 99251,SPOKANE,WA,47.7511,-117.4176,SPOKANE 99252,SPOKANE,WA,47.6717,-117.3897,SPOKANE 99256,SPOKANE,WA,47.657,-117.3859,SPOKANE 99258,SPOKANE,WA,47.6683,-117.4028,SPOKANE 99260,SPOKANE,WA,47.657,-117.3859,SPOKANE 99299,SPOKANE,WA,47.6588,-117.425,SPOKANE 99501,ANCHORAGE,AK,61.211571,-149.876077,ANCHORAGE 99502,ANCHORAGE,AK,61.096163,-150.093943,ANCHORAGE 99503,ANCHORAGE,AK,61.189953,-149.893844,ANCHORAGE 99504,ANCHORAGE,AK,61.203696,-149.74467,ANCHORAGE 99507,ANCHORAGE,AK,61.153543,-149.828912,ANCHORAGE 99508,ANCHORAGE,AK,61.205959,-149.810085,ANCHORAGE 99509,ANCHORAGE,AK,61.1897,-149.9063,ANCHORAGE 99510,ANCHORAGE,AK,61.2199,-149.8882,ANCHORAGE 99511,ANCHORAGE,AK,61.1104,-149.8577,ANCHORAGE 99513,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99514,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99515,ANCHORAGE,AK,61.119381,-149.897401,ANCHORAGE 99516,ANCHORAGE,AK,61.10541,-149.779998,ANCHORAGE 99517,ANCHORAGE,AK,61.190136,-149.936111,ANCHORAGE 99518,ANCHORAGE,AK,61.154862,-149.886571,ANCHORAGE 99519,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99520,ANCHORAGE,AK,61.2147,-149.8649,ANCHORAGE 99521,ANCHORAGE,AK,61.1996,-149.7314,ANCHORAGE 99522,ANCHORAGE,AK,61.1521,-149.9198,ANCHORAGE 99523,ANCHORAGE,AK,61.1682,-149.8356,ANCHORAGE 99524,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99529,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99530,ANCHORAGE,AK,61.2175,-149.9025,ANCHORAGE 99599,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99695,ANCHORAGE,AK,61.218,-149.9002,ANCHORAGE 99701,FAIRBANKS,AK,64.840238,-147.710431,FAIRBANKS NORTH STAR 99706,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99707,FAIRBANKS,AK,64.8419,-147.7227,FAIRBANKS NORTH STAR 99708,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99709,FAIRBANKS,AK,64.85437,-147.846917,FAIRBANKS NORTH STAR 99710,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99711,FAIRBANKS,AK,64.8377,-147.7163,FAIRBANKS NORTH STAR 99712,FAIRBANKS,AK,64.910879,-147.510479,FAIRBANKS NORTH STAR 99775,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99790,FAIRBANKS,AK,64.5125,-147.6655,FAIRBANKS NORTH STAR 99801,JUNEAU,AK,58.362767,-134.529429,JUNEAU 99802,JUNEAU,AK,58.2997,-134.4149,JUNEAU 99803,JUNEAU,AK,58.3722,-134.5868,JUNEAU 99811,JUNEAU,AK,58.4773,-134.1549,JUNEAU 99812,JUNEAU,AK,58.2806,-134.3994,JUNEAU 99850,JUNEAU,AK,58.4773,-134.1549,JUNEAU \ No newline at end of file diff --git a/splunk_eventgen/samples/mdn.sample b/splunk_eventgen/samples/mdn.sample new file mode 100644 index 00000000..33c645bb --- /dev/null +++ b/splunk_eventgen/samples/mdn.sample @@ -0,0 +1,815 @@ +5556374832 +5559863091 +5557507373 +5554715490 +5553574320 +5553556664 +5554400219 +5556890861 +5557027750 +5557607034 +5557607034 +5555750129 +5556948686 +5557974528 +5552275314 +5553593502 +5557131993 +5557974528 +5556685507 +5559972146 +5556791445 +5556791445 +5555689490 +5554351797 +5555524026 +5554351797 +5559902928 +5557700462 +5555697044 +5557822114 +5552576124 +5552576124 +5552563627 +5559697090 +5559972146 +5555172530 +5558835506 +5553911046 +5553911046 +5555523241 +5552337761 +5558128479 +5555912195 +5553298804 +5559402954 +5557822114 +5556438360 +5559897094 +5552172942 +5553235675 +5554980675 +5558143038 +5559897465 +5558341450 +5558816449 +5558816449 +5558041235 +5557555207 +5553328482 +5555635916 +5559902928 +5556585650 +5558041235 +5558091300 +5555630768 +5552287241 +5557555207 +5555521164 +5558920996 +5555750166 +5557268571 +5554982823 +5552373863 +5554982823 +5552997923 +5556120001 +5554087740 +5555588602 +5552450005 +5553133793 +5559730494 +5555503191 +5557173544 +5552243212 +5556480338 +5553312305 +5555146289 +5556480338 +5557647981 +5554413449 +5554754883 +5554690066 +5558143038 +5559910004 +5558341450 +5552088600 +5556528711 +5553176306 +5552088600 +5556581781 +5555896510 +5554888539 +5553665199 +5555630768 +5553665199 +5552970411 +5556851965 +5557443407 +5552151677 +5558920996 +5557128051 +5557975756 +5555750166 +5559782161 +5555570461 +5556039988 +5557728712 +5555588602 +5554087740 +5553740044 +5553740044 +5557751404 +5555027890 +5555503191 +5559952550 +5559863091 +5553589476 +5553245990 +5558836762 +5558836762 +5554754883 +5555426586 +5555313257 +5559472318 +5557621778 +5554402125 +5556555960 +5557180594 +5557510869 +5558504854 +5559645866 +5557065509 +5558504854 +5552781642 +5559645866 +5555449287 +5552781642 +5556581781 +5552850129 +5556890751 +5556851965 +5557443407 +5556404243 +5552408987 +5555691525 +5554391346 +5556966188 +5552141758 +5557438596 +5554982823 +5554982823 +5554130240 +5557175702 +5556885463 +5555894233 +5555584413 +5557565865 +5557128051 +5556545078 +5559407533 +5556545078 +5559407533 +5552907674 +5552727287 +5552727287 +5554621247 +5555511538 +5559957668 +5552804625 +5552804625 +5552016739 +5552171436 +5554402125 +5556890751 +5552058127 +5559957668 +5557710320 +5558137769 +5557710320 +5556289887 +5556394690 +5558137769 +5557660601 +5557054702 +5555077653 +5557054702 +5553581943 +5552243212 +5558538413 +5552325580 +5559214497 +5557438596 +5554401598 +5557026126 +5559732639 +5553399856 +5559496764 +5553783890 +5553783890 +5552528438 +5557156220 +5558150968 +5558765231 +5552171436 +5552528438 +5555058619 +5553919201 +5555449287 +5557155799 +5558485552 +5556289887 +5557129269 +5554205531 +5557422487 +5552385950 +5552385950 +5556408359 +5558925695 +5555935051 +5558962220 +5556885463 +5555203745 +5557586339 +5557175702 +5556347018 +5556990675 +5556347018 +5553399856 +5559732639 +5554440405 +5559180045 +5554401598 +5554024269 +5559496764 +5557079104 +5558828667 +5553502807 +5559863782 +5554804798 +5553175253 +5555467300 +5552922603 +5555367836 +5555367836 +5554982823 +5554501823 +5558765231 +5552170636 +5554982823 +5557824204 +5552849794 +5553675132 +5559889370 +5553919201 +5555153211 +5555153211 +5558878613 +5554497192 +5556408359 +5557172548 +5554400905 +5559091902 +5556774478 +5552058127 +5553048905 +5558962220 +5555203745 +5557582164 +5557415314 +5559031692 +5555137632 +5555617468 +5557086916 +5558533825 +5558533825 +5558851093 +5553335032 +5555284427 +5557028894 +5556692087 +5556473983 +5556895290 +5556895290 +5556196234 +5553549339 +5554892806 +5558913765 +5554172753 +5557824204 +5558387327 +5558964348 +5557036858 +5552844302 +5554236100 +5557542589 +5552877073 +5556832579 +5556394690 +5552928425 +5555680076 +5554288136 +5553550994 +5552977358 +5552015132 +5557582164 +5555137632 +5557124211 +5559218961 +5559218961 +5555318017 +5558851093 +5554128400 +5555898487 +5559024813 +5555587773 +5558128479 +5557087464 +5557970692 +5557150288 +5557087464 +5555698038 +5552074216 +5554995736 +5556405854 +5558538687 +5553323028 +5557131993 +5558964348 +5555583797 +5554236100 +5554982823 +5557176938 +5552457324 +5554982823 +5553680161 +5554166546 +5554166546 +5556832579 +5552005169 +5558822901 +5555692646 +5558913765 +5553525787 +5553680161 +5552210369 +5556537930 +5553652782 +5556537930 +5552977358 +5559651635 +5557980797 +5557980797 +5552225223 +5552015132 +5557124211 +5553360775 +5557728710 +5554431953 +5553048905 +5555318017 +5557988971 +5559024813 +5552411345 +5558128479 +5559772622 +5557065509 +5556907433 +5552650754 +5558538687 +5553176306 +5555592565 +5555315487 +5557176938 +5559440881 +5553557993 +5558474082 +5552087114 +5552087114 +5555091383 +5554881085 +5552353726 +5556508603 +5553547104 +5556672043 +5554034102 +5556877632 +5556387619 +5552930599 +5553714142 +5555617468 +5552146585 +5553714142 +5554354010 +5554354010 +5557268571 +5555284427 +5558041235 +5557703964 +5552586726 +5553395569 +5558894047 +5554001467 +5554345946 +5558682270 +5558682270 +5553302696 +5559041911 +5553135921 +5559466325 +5555006434 +5559440881 +5553317465 +5553557993 +5555050861 +5552581799 +5552581799 +5555896510 +5552166319 +5556583481 +5555050861 +5552166319 +5555603215 +5557586339 +5552144871 +5555091383 +5555774294 +5552728442 +5559516691 +5559214497 +5559730494 +5554353477 +5553063863 +5559960243 +5553209206 +5556537930 +5555848323 +5558822901 +5557087464 +5558050416 +5559363979 +5553048905 +5559041911 +5554476746 +5555006434 +5556407407 +5555699353 +5557087464 +5554107516 +5559904661 +5552146585 +5555443145 +5556764110 +5559903808 +5559632128 +5558945948 +5558945948 +5555063834 +5558894047 +5555603215 +5559904661 +5556583481 +5552144871 +5554138369 +5555774294 +5556540735 +5556036834 +5553013039 +5552840736 +5556896328 +5553525787 +5558816406 +5554401225 +5553209206 +5555848323 +5557324659 +5552871462 +5554177692 +5558050416 +5552569278 +5554753149 +5554354010 +5552901307 +5552901307 +5558751138 +5553444703 +5555443145 +5554806740 +5557352957 +5556407407 +5554352852 +5557555323 +5553170091 +5554431584 +5552172942 +5556356064 +5552388108 +5552912306 +5556354463 +5552087376 +5557770172 +5552008689 +5553058588 +5559904126 +5558935490 +5552131557 +5555054504 +5552271621 +5555050861 +5555054504 +5554107516 +5553330495 +5553941873 +5555050861 +5558763139 +5555059345 +5552190099 +5558286514 +5552146585 +5554716578 +5554716578 +5558847998 +5553362389 +5554401225 +5554276306 +5554276306 +5558829079 +5554130240 +5552776222 +5555070167 +5554650353 +5552776222 +5556365753 +5556625350 +5553141973 +5552240784 +5555180934 +5554358850 +5555517941 +5554012188 +5555004149 +5555004149 +5556537930 +5556891148 +5554612296 +5559497591 +5554366087 +5557856809 +5553420368 +5555440660 +5555440660 +5557067982 +5557800633 +5559684208 +5559684208 +5553048905 +5558032080 +5555826139 +5553094374 +5555826139 +5556356064 +5553094374 +5552348684 +5554907454 +5553058588 +5554593084 +5553736792 +5555102551 +5553775173 +5552008689 +5558074421 +5552271621 +5553627942 +5552840736 +5557426959 +5554593084 +5555783154 +5553941873 +5555059345 +5553880365 +5554545971 +5558286514 +5558960097 +5557173434 +5558474082 +5554876003 +5555520055 +5553184966 +5552871462 +5557342102 +5553141973 +5556625350 +5558829079 +5554464236 +5555782091 +5552329283 +5554091818 +5553095742 +5555900494 +5559044005 +5559631398 +5552844302 +5557985767 +5554012188 +5554864285 +5559065754 +5554751737 +5554354010 +5556625625 +5556625625 +5558032080 +5554907454 +5557769297 +5552044271 +5557182867 +5552973036 +5557182867 +5558638661 +5559911292 +5555534432 +5559911292 +5559214572 +5552073900 +5557426305 +5555783154 +5552144967 +5552388108 +5555146289 +5557778727 +5558074421 +5557173434 +5553184966 +5558932732 +5552723389 +5558932732 +5552558308 +5559551802 +5555050861 +5557016622 +5557568693 +5553736792 +5552560481 +5558021323 +5555050861 +5552329283 +5554091818 +5555315987 +5554090471 +5556357136 +5559960266 +5557890985 +5554864285 +5552190099 +5558690103 +5552552547 +5558690103 +5554751737 +5554932300 +5559065754 +5554278541 +5552096870 +5552121383 +5554696820 +5555050508 +5555517941 +5557025652 +5555832993 +5557093122 +5555771813 +5553283593 +5552827515 +5559364524 +5553170091 +5559364524 +5557048233 +5557884966 +5552547017 +5558829713 +5552073900 +5556064559 +5555701707 +5554097351 +5554576909 +5555526825 +5554576909 +5555526825 +5552547017 +5555635916 +5557129302 +5552174328 +5552174328 +5558355074 +5557568693 +5554032644 +5552723389 +5552560481 +5556732133 +5554032644 +5555967795 +5554295458 +5559551802 +5553734614 +5557183004 +5559363979 +5553652050 +5554035226 +5556027308 +5559960266 +5557873635 +5557324659 +5554335264 +5552457570 +5556931054 +5556078837 +5552552547 +5552295483 +5553915812 +5556896328 +5553991921 +5559970518 +5556020864 +5555614349 +5556020864 +5556542168 +5554932300 +5555050508 +5559887089 +5555832993 +5552850848 +5555771813 +5553283593 +5557622385 +5553555893 +5557884966 +5553173463 +5555635542 +5552091642 +5555520932 +5555520932 +5555686173 +5557016622 +5552000229 +5557182867 +5554715129 +5556732133 +5552991250 +5557183004 +5557732351 +5556604980 +5554715490 +5552627113 +5553205881 +5553743316 +5553968260 +5558021323 +5553350609 +5558225901 +5558225901 +5554335264 +5558858078 +5554726718 +5557156220 +5552295483 +5555050861 +5554400219 +5554034102 +5553365287 +5558895202 +5555377331 +5555050861 +5559472318 +5558895202 +5558926329 +5559044005 +5553095742 +5555614349 +5558899235 +5553550742 +5552850848 +5558829713 +5556903157 +5555443830 +5555022781 +5558026056 +5559231459 +5553173463 +5553203396 +5555635542 +5558989194 +5552091642 +5555572800 +5559897465 +5552000229 +5555935051 +5553465315 +5556196234 +5554715129 +5555631799 +5557079104 +5553093101 +5553328482 +5559067772 +5554936719 +5553936269 +5554210126 +5554210126 diff --git a/splunk_eventgen/samples/networkProvider.sample b/splunk_eventgen/samples/networkProvider.sample new file mode 100644 index 00000000..5064233a --- /dev/null +++ b/splunk_eventgen/samples/networkProvider.sample @@ -0,0 +1,39 @@ +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Splunktel +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Sprint +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire +Clearwire \ No newline at end of file diff --git a/splunk_eventgen/samples/oracle11.action.sample b/splunk_eventgen/samples/oracle11.action.sample new file mode 100644 index 00000000..aacd248a --- /dev/null +++ b/splunk_eventgen/samples/oracle11.action.sample @@ -0,0 +1,20 @@ +100 +101 +102 +100 +101 +102 +100 +101 +102 +43 +51 +52 +53 +54 +55 +79 +108 +109 +114 +115 \ No newline at end of file diff --git a/splunk_eventgen/samples/oracleUserNames.sample b/splunk_eventgen/samples/oracleUserNames.sample new file mode 100644 index 00000000..55db3c2c --- /dev/null +++ b/splunk_eventgen/samples/oracleUserNames.sample @@ -0,0 +1,24 @@ +scott +dba_user_1 +dba_user_2 +dba_user_3 +oracle_1 +oracle_2 +oracle_3 +oracle_4 +oracle_5 +oracle_6 +oracle_7 +oracle_8 +oracle_9 +oracle_10 +oracle_11 +oracle_12 +oracle_13 +oracle_14 +oracle_15 +oracle_16 +oracle_17 +oracle_18 +oracle_19 +oracle_20 \ No newline at end of file diff --git a/splunk_eventgen/samples/orderType.sample b/splunk_eventgen/samples/orderType.sample new file mode 100644 index 00000000..61c7b11d --- /dev/null +++ b/splunk_eventgen/samples/orderType.sample @@ -0,0 +1,6 @@ +New +New +Change +Change +Change +Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/orig.sample.mobilemusic.csv b/splunk_eventgen/samples/orig.sample.mobilemusic.csv new file mode 100644 index 00000000..bee172e5 --- /dev/null +++ b/splunk_eventgen/samples/orig.sample.mobilemusic.csv @@ -0,0 +1 @@ +index,host,source,sourcetype,_raw main,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. main,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" main,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO sample.mobilemusic.csv.origRADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/phones.sample b/splunk_eventgen/samples/phones.sample new file mode 100644 index 00000000..091173af --- /dev/null +++ b/splunk_eventgen/samples/phones.sample @@ -0,0 +1,69 @@ +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-16,iPhone,iPhone 4S 16 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-32,iPhone,iPhone 4S 32 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4S-64,iPhone,iPhone 4S 64 Gig +IP4-8,iPhone,iPhone 4 8 Gig +IP4-8,iPhone,iPhone 4 8 Gig +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +IP3GS-8,iPhone,iPhone 3GS +SGS2,Android,Samsung GALAXY S2 +SGS2,Android,Samsung GALAXY S2 +SGS2,Android,Samsung GALAXY S2 +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SGS4G,Android,Samsung GALAXY S 4G +SS,Android,Samsung Stratosphere +MDB,Android,Motorola Droid Bionic +MDB,Android,Motorola Droid Bionic +MDR,Android,Motorola Droid Razr +MDR,Android,Motorola Droid Razr +HE4G,Android,HTC Evo 4G +HE4G,Android,HTC Evo 4G +HDI,Android,HTC Droid Incredible +LGR,Android,LG Revolution +NL700,Windows Phone,Nokia Lumia 700 +NL1600,Windows Phone,Nokia Lumia 1600 +SFF,Windows Phone,Samsung Focus Flash +BBC,Blackberry,Blackberry Curve 9360 +BBT,Blackberry,Blackberry Torch 91660 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +PL2,Feature,Pantech Link 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +SS2,Feature,Samsung Solstice 2 +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +PB3,Feature,Pantech Breeze III +MTUN,Feature,Motorola Tundra +MTUN,Feature,Motorola Tundra \ No newline at end of file diff --git a/splunk_eventgen/samples/plans.sample b/splunk_eventgen/samples/plans.sample new file mode 100644 index 00000000..9c678ef1 --- /dev/null +++ b/splunk_eventgen/samples/plans.sample @@ -0,0 +1,24 @@ +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +450POST40,PostPaid,39.99,450 Minute,Nationwide 450 Minutes, Unlimited Mobile to Mobile, 5000 Night & Weekend +900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text +900POST60,PostPaid,59.99,900 Minute,Nationwide 900 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Text +ULPOST70,PostPaid,69.99,Unlimited,Nationwide Unlimited Minutes, Unlimited Text, Unlimited Data +5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +5503L60,PostPaid,59.99,550 Minute Family,Nationwide 550 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +700POST5L70,PostPaid,69.99,700 Minute Family,Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend +1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +1400POST5L90,PostPaid,89.99,1400 Minute Family,Nationwide 1400 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +2100POST5L110,PostPaid,109.99,2100 Minute Family,Nationwide 2100 Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +ULPOST5L120,PostPaid,119.99,2100 Minute Family,Nationwide Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Night & Weekend, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +ULPRE50,PrePaid,50.00,Unlimited Prepaid,Nationwide Prepaid Unlimited Minutes, Unlimited Mobile to Mobile, Unlimited Data +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +250PRE25,PrePaid,25.00,250 Minute Prepaid,Nationwide 250 Minutes, Unlimited Text +ULPRE2D,PrePaid,60.00,Unlimited Prepaid,Nationwide Prepaid Daily Unlimited Minutes, $2/Day, Unlimited Mobile to Mobile, Unlimited Data \ No newline at end of file diff --git a/splunk_eventgen/samples/radPIDs.sample b/splunk_eventgen/samples/radPIDs.sample new file mode 100644 index 00000000..c94ffb74 --- /dev/null +++ b/splunk_eventgen/samples/radPIDs.sample @@ -0,0 +1,3 @@ +2363 +12676 +12548 \ No newline at end of file diff --git a/splunk_eventgen/samples/radhosts.sample b/splunk_eventgen/samples/radhosts.sample new file mode 100644 index 00000000..c5d92cbc --- /dev/null +++ b/splunk_eventgen/samples/radhosts.sample @@ -0,0 +1,3 @@ +aaa1 +aaa2 +aaa3 \ No newline at end of file diff --git a/splunk_eventgen/samples/random_domains.sample b/splunk_eventgen/samples/random_domains.sample new file mode 100644 index 00000000..1a35bb4f --- /dev/null +++ b/splunk_eventgen/samples/random_domains.sample @@ -0,0 +1,73 @@ +ryanzdimyxojlks.ac +xyosowlnwqaihkq.by +dxqjhxwvqnnaeja.com +tkhwesmptszdody.dm +nrsosrvzugflgrr.edu +cpzwbasblwxuslm.fo +ymtwccawahahbln.gov +traqoovhxmnlzsw.hn +rlmzjhmoavhvecn.info +gtryuifjydlebbw.jobs +kisebvtvvbwpqvs.kp +uxdtcpgatmrkusb.ly +dtutxaqyplrqawt.mil +awgnwunsglcdniy.net +tfrrmvpxtgsqkgx.org +emyadlwbzdcvkji.post +becfmwohxowgrin.ro +zqtpdchgtqfaxeg.sm +qsjchqcocvyrfvf.travel +eetnpmejmgcjuts.ug +rpuqtuhgwosvgrw.vc +bbijrgibymvwkqh.wf +jpmnwejftfqnmdj.xn--11b5bs3a9aj6g +ctimibiiriizsfe.xn--9t4b11yi5a +jhievxgnocibcid.xn--pgbs0dh +wzpsynmmqaaytvk.xn--yfro4i67o +sbmbsavwlynzcdt.ye +umivkuhkfmnuqie.za +grrwtjyyrtrupmf.ac +vpsircrczggyxti.by +qdpqjkvtbrsvsfu.com +ttbxwberplbcpjt.dm +mpesgkjkvrvxttk.edu +yfgjawitvcjtlwx.fo +tlcficjhlotnbnw.gov +qlcasnxbwukyogy.hn +ovuroahuiqgstho.info +zkotiwaewxfbsra.jobs +omizpmexfthdtkn.kp +etabjoqkfincucc.ly +wunehceccozhicb.mil +vasfeglzezfrhin.net +ondbxluvhhdfrzz.org +rvpfszpypaprorv.post +ufcyhlsjhnilxyu.ro +cpynvdqsyyrmotr.sm +qmaeaqfaminmtyd.travel +bvaiwgaqcdsxupe.ug +ddqulhrvujjvanx.vc +pafzyzkypzovtmi.wf +dcaioweydsfexnz.xn--11b5bs3a9aj6g +hmrdxjpzmcdjpug.xn--9t4b11yi5a +gqtavlakkdkcryl.xn--pgbs0dh +dytwkhnhsuulniq.xn--yfro4i67o +saeleofdezzuvfs.ye +hojdytnzcsvpkok.za +pcqxcoxljjtcrui.ac +ymfojvebwimzpzm.by +vbhnlghrkdvbpov.com +rqsszeznvhhbrah.dm +ztluylwgnmpgcac.edu +ufvmgvfvklsrfgf.fo +abgyotorvogikfm.gov +dpznommctrfaycs.hn +qhkhdkextwrztdm.info +frlkmlrpxsjcmbx.jobs +rxqdywdxhfhckte.kp +buajzkdmvrsyljm.ly +juvzvpjgiuwvpfo.mil +bdprepgvmaafowj.net +aldpagsgbplmxli.org +meyeagtuyybatkh.post +vbdcxghnetrwljh.ro \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.businessevent b/splunk_eventgen/samples/sample.businessevent new file mode 100644 index 00000000..c5914af3 --- /dev/null +++ b/splunk_eventgen/samples/sample.businessevent @@ -0,0 +1 @@ +2011-10-11 16:30:20,072,Event [Event=UpdateBillingProvQuote, timestamp=1318375820071, properties={JMSCorrelationID=NA, JMSMessageID=ID:ESP-PD.289F4E3F7A381:CEBE7D53, orderType=ChangeESN, quotePriority=NORMAL, conversationId=ESB~47af426612b50c97:5a04ce5c:132f52c51600:440d, credits=NA, JMSReplyTo=pub.esb.genericasync.response, timeToLive=-1, serviceName=UpdateBillingProvisioning, esn=NA, accountNumber=71081182961, MethodName=InternalEvent, AdapterName=UpdateBillingProvQuote, meid=NA, orderNumber=NA, quoteNumber=60354607, ReplyTo=NA, userName=cid, EventConversationID=NA, mdn=8322976226, accountType=PostPaid, marketCity="Houston", marketState=TX, marketZip=55555, billingCycle=5, autoBillPayment=T, phoneCode=IP4S, phoneType=iPhone, phoneName="iPhone 4S", planCode=700UD, planType=PostPaid, planPrice=45, planName="700 Minute Unlimited Data", planDescription="Nationwide 700 Minutes, Unlimited Mobile to Mobile, Unlimited Texting, Unlimited Data", networkProviderName=Native}] \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic b/splunk_eventgen/samples/sample.mobilemusic new file mode 100644 index 00000000..a8e1b03d --- /dev/null +++ b/splunk_eventgen/samples/sample.mobilemusic @@ -0,0 +1,3 @@ +May 28 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. +2012-05-28 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 "Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" 200 0 0 468 1488 +May 28 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.mobilemusic.csv b/splunk_eventgen/samples/sample.mobilemusic.csv new file mode 100644 index 00000000..797ec2fa --- /dev/null +++ b/splunk_eventgen/samples/sample.mobilemusic.csv @@ -0,0 +1,6 @@ +index,host,source,sourcetype,_raw +oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:000 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct start for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:112 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:125 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 200 0 0 468 1488" +oidemo,localhost,/var/log/httpd/access_log,access_custom,"2012-05-27 18:28:11:137 10.2.1.35 GET /sync/addtolibrary/01011207201000005652000000000047 - 80 - 10.94.63.34 ""Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3"" 503 0 0 468 1488" +oidemo,localhost,/var/log/radius.log,radius,May 27 18:28:11:199 aaa2 radiusd[12676]:[ID 959576 local1.info] INFO RADOP(13) acct stop for 5559031692@splunktel.com 10.94.63.34 from 130.253.37.97 recorded OK. \ No newline at end of file diff --git a/splunk_eventgen/samples/sample.tutorial1 b/splunk_eventgen/samples/sample.tutorial1 new file mode 100644 index 00000000..67d004c1 --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial1 @@ -0,0 +1,2020 @@ +index,host,source,sourcetype,"_raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=506" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=506" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44392" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46081" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4585" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31355" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32921" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30025" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.226 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229725, instantaneous_eps=1.450299, average_kbps=0.187305, total_k_processed=4351, kb=7.127930, ev=45, load_average=1.409668" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229725, eps=1.450299, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=14, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:18.227 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=507" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=507" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44468" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.255 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46159" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4589" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31403" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=32970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30072" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229747, instantaneous_eps=1.450238, average_kbps=0.187356, total_k_processed=4358, kb=7.128906, ev=45, load_average=1.789551" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229747, eps=1.450238, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.256 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:22:49.257 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44544" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=46237" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31451" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=33019" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.285 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=30119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229712, instantaneous_eps=1.450219, average_kbps=0.187407, total_k_processed=4365, kb=7.127930, ev=45, load_average=1.492676" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229712, eps=1.450219, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:20.286 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44620" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=77, cumulative_hits=46314" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.312 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=3, cumulative_hits=4596" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31498" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=48, cumulative_hits=33067" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=46, cumulative_hits=30165" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229731, instantaneous_eps=1.450336, average_kbps=0.187457, total_k_processed=4372, kb=7.127930, ev=45, load_average=1.444336" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229731, eps=1.450336, kb=7.127930, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.313 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:23:51.314 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.963 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:24:10.974 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 84.80 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=mpool, max_used_interval=10761, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=509" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=509" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.340 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=44696" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46393" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.341 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4603" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31548" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=52, cumulative_hits=33119" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30213" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.233630, instantaneous_eps=1.450311, average_kbps=0.187508, total_k_processed=4379, kb=7.249023, ev=45, load_average=1.162598" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.342 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.219592, eps=1.385853, kb=6.813477, ev=43, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014037, eps=0.064458, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.233630, eps=1.450311, kb=7.249023, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=43, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:22.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=510" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=510" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=44773" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=46472" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.368 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4607" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=31597" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=33169" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=30261" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236177, instantaneous_eps=1.482525, average_kbps=0.187559, total_k_processed=4386, kb=7.328125, ev=46, load_average=1.863281" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236177, eps=1.482525, kb=7.328125, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=22, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:24:53.369 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:25:04.953 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:25:15.391 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=1436 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=mpool, max_used_interval=11260, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=292" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=511" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=511" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=95, cumulative_hits=44868" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.400 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=101, cumulative_hits=46573" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4630" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=78, cumulative_hits=31675" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=87, cumulative_hits=33256" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=70, cumulative_hits=30331" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.315106, instantaneous_eps=2.062395, average_kbps=0.187694, total_k_processed=4395, kb=9.778320, ev=64, load_average=1.803711" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243166, eps=1.546796, kb=7.545898, ev=48, avg_age=0.979167, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.240145, eps=1.514571, kb=7.452148, ev=47, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.401 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229728, eps=1.450122, kb=7.128906, ev=45, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071940, eps=0.515599, kb=2.232422, ev=16, avg_age=1.687500, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236966, eps=1.482347, kb=7.353516, ev=46, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:24.402 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=mpool, max_used_interval=14851, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=512" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=512" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=112, cumulative_hits=44980" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=114, cumulative_hits=46687" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4650" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=92, cumulative_hits=31767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=101, cumulative_hits=33357" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.277 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=30414" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.405086, instantaneous_eps=2.623319, average_kbps=0.187959, total_k_processed=4407, kb=12.507812, ev=81, load_average=2.545898" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.112721, eps=0.809666, kb=3.480469, ev=25, avg_age=1.480000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.292365, eps=1.813652, kb=9.027344, ev=56, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.278 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:25:55.279 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:26:16.298 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6853 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=mpool, max_used_interval=12307, max_used=95646, avg_rsv=251, capacity=268435456, used=688" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=513" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=513" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45087" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=46797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.309 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4673" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=31856" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33456" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.376027, instantaneous_eps=2.449070, average_kbps=0.188179, total_k_processed=4418, kb=11.668945, ev=76, load_average=2.261719" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=3, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251597, eps=1.579006, kb=7.807617, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.117192, eps=0.837840, kb=3.636719, ev=26, avg_age=1.346154, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258835, eps=1.611231, kb=8.032227, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.310 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:26.311 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=mpool, max_used_interval=12606, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=514" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=514" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=104, cumulative_hits=45191" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=46903" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=18, cumulative_hits=4691" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=83, cumulative_hits=31939" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=33547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.342 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=30568" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.361229, instantaneous_eps=2.352349, average_kbps=0.188399, total_k_processed=4429, kb=11.209961, ev=73, load_average=1.763672" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.102997, eps=0.741151, kb=3.196289, ev=23, avg_age=2.086957, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258232, eps=1.611198, kb=8.013672, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.343 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:26:57.344 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:27:16.362 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=6817 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.373 INFO Metrics - group=mpool, max_used_interval=12985, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=515" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=515" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=107, cumulative_hits=45298" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47013" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4714" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=89, cumulative_hits=32028" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=99, cumulative_hits=33646" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30647" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.374176, instantaneous_eps=2.449107, average_kbps=0.188618, total_k_processed=4440, kb=11.611328, ev=76, load_average=1.811523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.374 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251538, eps=1.579030, kb=7.805664, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.115400, eps=0.837852, kb=3.581055, ev=26, avg_age=1.423077, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258776, eps=1.611255, kb=8.030273, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:28.375 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=516" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=516" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=90, cumulative_hits=45388" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=92, cumulative_hits=47105" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4724" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=65, cumulative_hits=32093" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=69, cumulative_hits=33715" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=61, cumulative_hits=30708" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.298454, instantaneous_eps=1.901243, average_kbps=0.188751, total_k_processed=4449, kb=9.261719, ev=59, load_average=1.978027" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040281, eps=0.290020, kb=1.250000, ev=9, avg_age=1.777778, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258173, eps=1.611223, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.407 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:27:59.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:00.924 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:28:16.424 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=3977 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=mpool, max_used_interval=12292, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=293" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=517" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=517" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=104, cumulative_hits=47209" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4747" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=81, cumulative_hits=32174" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=90, cumulative_hits=33805" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=73, cumulative_hits=30781" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.331881, instantaneous_eps=2.159083, average_kbps=0.188927, total_k_processed=4459, kb=10.298828, ev=67, load_average=2.186035" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264567, eps=1.675706, kb=8.209961, ev=52, avg_age=0.019231, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261546, eps=1.643481, kb=8.116211, ev=51, avg_age=0.019608, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032225, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251129, eps=1.579031, kb=7.792969, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003021, eps=0.032225, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.067314, eps=0.483377, kb=2.088867, ev=15, avg_age=2.200000, max_age=4" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258367, eps=1.611256, kb=8.017578, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032225, kb=0.098633, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.439 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:28:30.440 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:28:52.363 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=mpool, max_used_interval=14856, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=1, cumulative_hits=294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=518" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=518" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.372 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=105, cumulative_hits=45591" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=110, cumulative_hits=47319" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=20, cumulative_hits=4767" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=86, cumulative_hits=32260" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=94, cumulative_hits=33899" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=79, cumulative_hits=30860" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.369509, instantaneous_eps=2.392134, average_kbps=0.189145, total_k_processed=4470, kb=11.430664, ev=74, load_average=2.300293" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.298070, eps=1.874916, kb=9.220703, ev=58, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.295039, eps=1.842590, kb=9.126953, ev=57, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.373 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.003031, eps=0.032326, kb=0.093750, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071440, eps=0.517218, kb=2.209961, ev=16, avg_age=0.812500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291851, eps=1.810264, kb=9.028320, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003188, eps=0.032326, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=56, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:01.374 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.950 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:29:10.961 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 76.48 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:29:17.392 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=4388 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=mpool, max_used_interval=13875, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=519" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=519" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=98, cumulative_hits=45689" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.404 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=102, cumulative_hits=47421" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.405 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=16, cumulative_hits=4783" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=77, cumulative_hits=32337" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=83, cumulative_hits=33982" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.406 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=71, cumulative_hits=30931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.345734, instantaneous_eps=2.159124, average_kbps=0.189319, total_k_processed=4480, kb=10.728516, ev=67, load_average=1.769043" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284335, eps=1.772415, kb=8.823242, ev=55, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.040125, eps=0.290032, kb=1.245117, ev=9, avg_age=1.111111, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.407 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.305609, eps=1.869092, kb=9.483398, ev=58, avg_age=0.034483, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:29:32.408 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=mpool, max_used_interval=12892, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.436 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=520" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=520" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=82, cumulative_hits=45771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47505" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4787" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=55, cumulative_hits=34037" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.437 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=30984" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.264461, instantaneous_eps=1.643410, average_kbps=0.189409, total_k_processed=4488, kb=8.207031, ev=51, load_average=1.705078" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.264461, eps=1.643410, kb=8.207031, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=51, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:03.438 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - splunk-system-user [15/Sep/2012:22:30:29.494 -0700] ""POST /servicesNS/nobody/ui_examples/saved/searches/Sample%20scheduled%20search/notify?trigger.condition_state=1 HTTP/1.0"" 200 256 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/scheduler.log",scheduler,"09-15-2012 22:30:29.498 INFO SavedSplunker - savedsearch_id=""nobody;ui_examples;Sample scheduled search"", user=""nobody"", app=""ui_examples"", savedsearch_name=""Sample scheduled search"", status=success, digest_mode=1, scheduled_time=1347773400, dispatch_time=1347773429, run_time=0.263, result_count=5, alert_actions="""", sid=""scheduler__nobody_dWlfZXhhbXBsZXM_U2FtcGxlIHNjaGVkdWxlZCBzZWFyY2g_at_1347773400_5d094f1622375e86"", suppressed=0, thread_id=""AlertNotifierWorker-0""" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=521" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=521" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=45849" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.468 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=83, cumulative_hits=47588" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=10, cumulative_hits=4797" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.469 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=54, cumulative_hits=32445" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34094" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=31036" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=searchscheduler, dispatched=1, skipped=0, total_lag=29, max_ready=0, max_pending=0, max_lag=29, max_running=0, actions_triggered=0, completed=1, total_runtime=0.263, max_runtime=0.263" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.251102, instantaneous_eps=1.514604, average_kbps=0.189456, total_k_processed=4495, kb=7.791992, ev=47, load_average=1.481934" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.251102, eps=1.514604, kb=7.791992, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/scheduler.log"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.470 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""scheduler"", kbps=0.014980, eps=0.032226, kb=0.464844, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229702, eps=1.450153, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.006420, eps=0.032226, kb=0.199219, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.471 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:30:34.472 INFO Metrics - group=search_concurrency, user=splunk-system-user, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:30:39.075 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.501 INFO Metrics - group=mpool, max_used_interval=12615, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=2, cumulative_hits=296" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=522" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=522" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=99, cumulative_hits=45948" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.502 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=105, cumulative_hits=47693" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4820" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=91, cumulative_hits=34185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.503 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=74, cumulative_hits=31110" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.347846, instantaneous_eps=2.191169, average_kbps=0.189630, total_k_processed=4505, kb=10.794922, ev=68, load_average=0.939453" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.280945, eps=1.707823, kb=8.718750, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.261687, eps=1.643377, kb=8.121094, ev=51, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.504 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.019258, eps=0.064446, kb=0.597656, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.066901, eps=0.483346, kb=2.076172, ev=15, avg_age=1.666667, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258508, eps=1.611154, kb=8.022461, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003178, eps=0.032223, kb=0.098633, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.505 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:05.506 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:31:17.513 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2958 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=mpool, max_used_interval=13874, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=523" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=103, cumulative_hits=46051" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=106, cumulative_hits=47799" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.532 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=17, cumulative_hits=4837" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=82, cumulative_hits=32609" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=89, cumulative_hits=34274" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=75, cumulative_hits=31185" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362707, instantaneous_eps=2.320315, average_kbps=0.189845, total_k_processed=4516, kb=11.254883, ev=72, load_average=1.306641" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.533 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032227, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.284312, eps=1.772463, kb=8.822266, ev=55, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.071157, eps=0.515626, kb=2.208008, ev=16, avg_age=1.562500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.291550, eps=1.804690, kb=9.046875, ev=56, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=55, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.534 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:31:36.535 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.400 INFO Metrics - group=mpool, max_used_interval=12604, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=85, cumulative_hits=46136" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=87, cumulative_hits=47886" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.401 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=6, cumulative_hits=4843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=58, cumulative_hits=32667" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=60, cumulative_hits=34334" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=56, cumulative_hits=31241" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.277605, instantaneous_eps=1.749341, average_kbps=0.189935, total_k_processed=4524, kb=8.569336, ev=54, load_average=1.299316" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""host1.foobar.com"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.402 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_source_thruput, series=""/var/log/be/event.log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""be_log"", kbps=0.018064, eps=0.129581, kb=0.557617, ev=4, avg_age=1.000000, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.259541, eps=1.619760, kb=8.011719, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=50, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.403 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:07.404 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/license_usage.log",splunkd,"09-15-2012 22:32:18.412 INFO LicenseUsage - type=Usage s=""/var/log/be/event.log"" st=""be_log"" h=""host1.foobar.com"" o="""" i=""07FA3247-3FD1-48BF-8BC4-B8D76DCE63F5"" pool=""auto_generated_pool_enterprise"" b=2000 poolsz=10737418240" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=mpool, max_used_interval=12291, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=525" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=525" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.432 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=81, cumulative_hits=46217" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=84, cumulative_hits=47970" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4850" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=55, cumulative_hits=32722" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=57, cumulative_hits=34391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.433 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=53, cumulative_hits=31294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.258340, instantaneous_eps=1.611281, average_kbps=0.190023, total_k_processed=4532, kb=8.016602, ev=50, load_average=1.508789" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/license_usage.log"", kbps=0.007238, eps=0.032226, kb=0.224609, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.251102, eps=1.579056, kb=7.791992, ev=49, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.258340, eps=1.611281, kb=8.016602, ev=50, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.434 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=49, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:32:38.435 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.459 INFO Metrics - group=mpool, max_used_interval=11558, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=526" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=526" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48049" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4854" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32771" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31342" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236367, instantaneous_eps=1.482534, average_kbps=0.190069, total_k_processed=4539, kb=7.333984, ev=46, load_average=1.604004" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.460 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236367, eps=1.482534, kb=7.333984, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=47, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:09.461 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.490 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=527" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46370" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48127" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4858" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32819" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34490" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31389" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229703, instantaneous_eps=1.450162, average_kbps=0.190115, total_k_processed=4546, kb=7.127930, ev=45, load_average=1.450195" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.491 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229703, eps=1.450162, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:33:40.492 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.901 ERROR ExecProcessor - message from ""python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py"" python: can't open file '/Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py': [Errno 2] No such file or directory" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd.log",splunkd,"09-15-2012 22:34:10.912 INFO ExecProcessor - Ran script: python /Applications/splunk/etc/apps/SA-Eventgen/bin/eventgen.py, took 36.75 milliseconds to run, 0 bytes read, exited with code 2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=mpool, max_used_interval=11259, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=528" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=528" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.519 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=76, cumulative_hits=46446" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=78, cumulative_hits=48205" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4862" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=32867" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=49, cumulative_hits=34539" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.520 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=47, cumulative_hits=31436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.229721, instantaneous_eps=1.450274, average_kbps=0.190161, total_k_processed=4553, kb=7.127930, ev=45, load_average=1.360352" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.229721, eps=1.450274, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.521 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=45, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:11.522 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.550 INFO Metrics - group=mpool, max_used_interval=11881, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=529" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=529" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=78, cumulative_hits=46524" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=81, cumulative_hits=48286" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.551 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=7, cumulative_hits=4869" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=52, cumulative_hits=32919" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=54, cumulative_hits=34593" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=50, cumulative_hits=31486" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.243738, instantaneous_eps=1.514608, average_kbps=0.190207, total_k_processed=4560, kb=7.563477, ev=47, load_average=1.221680" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.229703, eps=1.450157, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd.log"", kbps=0.014036, eps=0.064451, kb=0.435547, ev=2, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.552 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.243738, eps=1.514608, kb=7.563477, ev=47, avg_age=0.042553, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=48, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:34:42.553 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=mpool, max_used_interval=11552, max_used=95646, avg_rsv=251, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=530" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=530" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=77, cumulative_hits=46601" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.580 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=79, cumulative_hits=48365" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=4, cumulative_hits=4873" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=49, cumulative_hits=32968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=50, cumulative_hits=34643" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=48, cumulative_hits=31534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.236166, instantaneous_eps=1.482460, average_kbps=0.190253, total_k_processed=4567, kb=7.328125, ev=46, load_average=1.238770" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.581 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.236166, eps=1.482460, kb=7.328125, ev=46, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=46, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms +09-15-2012 22:35:13.582 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0 +09-15-2012 22:35:13.582 INFO Metrics - group=realtime_search_data, system total, drop_count=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0 +09-15-2012 22:35:13.582 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:21.378 -0700] ""POST /en-US/util/log/js HTTP/1.1"" 200 279 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565196047662d0 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:35:21,387 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms +2012-09-15 22:36:36 INFO [505565196047662d0] utility:63 - name=javascript, class=Splunk.Session, appName=Netscape, product=Gecko, productSub=20030107, platform=MacIntel, language=en-US, appVersion=5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, vendor=Google Inc., appCodeName=Mozilla, userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1, width=1440, pixelDepth=24, colorDepth=24, availTop=22, height=900, availWidth=1440, availLeft=0, availHeight=826, documentURL=http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now, documentReferrer=http://localhost:8000/en-US/app/search/dashboard_live, flash=11.4.402, Splunk.Session.START_EVENT fired @Sat Sep 15 2012 22:35:21 GMT(PDT)" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.336 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1290 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651b56433b6d0 784ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.346 -0700] ""GET /servicesNS/admin/search/properties/searchbnf?fillcontents=1 HTTP/1.1"" 200 463022 - - - 50ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.559 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=ind&output_mode=json&max_time=1 HTTP/1.1"" 200 411 - - - 117ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.683 -0700] ""GET /servicesNS/admin/search/properties/fields?fillcontents=1 HTTP/1.1"" 200 16500 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.701 -0700] ""GET /servicesNS/admin/search/properties/savedsearches?fillcontents=1 HTTP/1.1"" 200 37031 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.742 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.770 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7122 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.784 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 7129 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:23.997 -0700] ""GET /services/search/jobs/1347773723.616 HTTP/1.1"" 200 8912 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms +2012-09-15 22:36:36 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.011 -0700] ""GET /services/search/jobs/1347773723.616/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21363 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.033 -0700] ""GET /services/search/jobs/1347773723.616/results?count=83&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14492 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.058 -0700] ""POST /services/search/jobs/1347773723.616/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.123 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.126 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c204766810 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.134 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_i&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.231 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1252 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651c3b4766590 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.238 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3D_in&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.261 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.319 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.377 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 5547 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.435 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10544 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.453 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 10758 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.664 -0700] ""GET /services/search/jobs/1347773724.617 HTTP/1.1"" 200 11000 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.674 -0700] ""GET /services/search/jobs/1347773724.617/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 267644 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.857 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651cdb47c6650 426ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:24,887 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.921 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 120ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:24.952 -0700] ""POST /services/search/jobs/1347773724.617/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.045 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.103 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.160 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.218 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.275 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10280 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.298 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4c43302f0 25ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.305 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d4e433d190 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.313 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10485 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20*&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d504750770 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.321 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.325 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10743 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.378 -0700] ""POST /en-US/api/search/jobs/1347768133.57/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d604221490 39ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.380 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d61433ded0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.390 -0700] ""GET /services/search/jobs/1347768133.57 HTTP/1.1"" 200 10687 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.411 -0700] ""POST /services/search/jobs/1347768133.57/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.463 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1950 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d764759dd0 43ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.465 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7743303b0 66ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.473 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d79433d1f0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.479 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 2044 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7a4749ad0 218ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.486 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d7c474f170 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.498 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.499 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2208 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.501 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.503 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.504 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.521 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.544 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10578 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.558 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.608 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651d9b4316e50 46ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.643 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.654 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.891 -0700] ""GET /en-US/api/search/jobs?s=1347773724.618 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651de44749d70 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.897 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.920 -0700] ""GET /en-US/splunkd/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 1965 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651deb433e930 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.922 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0.5 HTTP/1.1"" 200 10750 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dec474fcf0 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.928 -0700] ""GET /en-US/api/search/jobs/1347773724.618/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1472 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651ded6aeadf0 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.931 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773724.618&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055651dee6af4290 174ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/timeline?offset=0&count=1000 HTTP/1.1"" 200 2223 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1730 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.944 -0700] ""GET /services/search/jobs/1347773724.618/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11008 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:25.961 -0700] ""GET /services/search/jobs/1347773724.618/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 47917 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:26.080 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms +2012-09-15 22:36:36 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.146 -0700] ""POST /en-US/app/search/flashtimeline/_current HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522256af47d0 59ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.152 -0700] ""GET /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4308 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.160 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565222927ca690 373ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:30,164 - admin search index=main" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/data/ui/viewstates/flashtimeline%3A_current HTTP/1.1"" 200 4080 - - - 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.169 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 122ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.296 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.354 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.411 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.467 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 5686 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.524 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10280 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.544 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1929 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228b16689f0 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.549 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1463 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228c1e94750 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.551 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10364 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565228d16777b0 30ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.558 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2187 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.562 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1721 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.565 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10622 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.627 -0700] ""POST /en-US/api/search/jobs/1347773724.618/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a04331d30 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.629 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3721 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522a116684b0 28ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.639 -0700] ""GET /services/search/jobs/1347773724.618 HTTP/1.1"" 200 10803 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.640 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10562 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.659 -0700] ""POST /services/search/jobs/1347773724.618/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.698 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1951 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b26afd0b0 83ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.702 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b31668750 53ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.706 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b41677f10 81ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.711 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1372 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b64323350 211ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.716 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3735 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522b7432f290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.729 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.735 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2209 - - - 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.736 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.773 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522c51677e10 41ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.779 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.786 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.797 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10576 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.802 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556522cd6af4050 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.813 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.824 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.881 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:30.888 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10581 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.033 -0700] ""GET /en-US/api/search/jobs?s=1347773730.619 HTTP/1.1"" 200 3816 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652308274d5f0 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.039 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.058 -0700] ""GET /en-US/splunkd/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230e432f2d0 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.060 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1622 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565230f4323970 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.064 -0700] ""GET /en-US/api/search/jobs/1347773730.619/summary?min_freq=0.5 HTTP/1.1"" 200 10880 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565231016e1bd0 44ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.074 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773730.619&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556523131672d70 105ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.987 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 4ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.863 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms +127.0.0.1 - admin [15/Sep/2012:22:35:37.842 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4935 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556529d71672b90 20ms +127.0.0.1 - admin [15/Sep/2012:22:35:34.642 -0700] ""GET /servicesNS/admin/search/search/typeahead?count=50&prefix=index%3Dmain&output_mode=json&max_time=1 HTTP/1.1"" 200 342 - - - 1ms +127.0.0.1 - admin [15/Sep/2012:22:35:34.633 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 1262 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556526a216726d0 29ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.155 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.104 -0700] ""GET /services/search/jobs/1347773730.619/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 45447 - - - 13ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11138 - - - 18ms +127.0.0.1 - admin [15/Sep/2012:22:35:31.086 -0700] ""GET /services/search/jobs/1347773730.619/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1880 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.046 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.104 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 5577 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=531" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=95, cumulative_hits=391" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.987 INFO Metrics - group=mpool, max_used_interval=32358, max_used=95646, avg_rsv=251, capacity=268435456, used=1688 +127.0.0.1 - admin [15/Sep/2012:22:35:41.706 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5142 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652db462a070 73ms +127.0.0.1 - admin [15/Sep/2012:22:35:41.058 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5141 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652d0f433eb50 73ms +127.0.0.1 - admin [15/Sep/2012:22:35:40.368 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5195 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652c5e4334150 58ms +127.0.0.1 - admin [15/Sep/2012:22:35:39.431 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5132 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b6e62af10 47ms +127.0.0.1 - admin [15/Sep/2012:22:35:39.186 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5200 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055652b2f4334d50 47ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.736 -0700] ""POST /services/search/jobs/1347773737.620/control HTTP/1.1"" 200 383 - - - 3ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.401 -0700] ""GET /services/search/jobs/1347773737.620/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 409762 - - - 31ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.387 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 11075 - - - 7ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.175 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10833 - - - 4ms +127.0.0.1 - admin [15/Sep/2012:22:35:38.162 -0700] ""GET /services/search/jobs/1347773737.620 HTTP/1.1"" 200 10619 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=14.790000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=669.899963, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=316, cumulative_hits=46917" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.988 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=34.485710, executes=340, cumulative_hits=48705" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.357047, eps=6.248569, kb=41.263672, ev=190, avg_age=0.763158, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.779474, eps=9.372853, kb=54.108398, ev=285, avg_age=0.508772, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.779474, instantaneous_eps=9.372853, average_kbps=0.192259, total_k_processed=4621, kb=54.108398, ev=285, load_average=1.035645" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=29.355001, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=11.884614, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=11.996470, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=309, cumulative_hits=31843" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=13.005385, executes=319, cumulative_hits=33287" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=58, cumulative_hits=4931" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.989 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=69.057327, executes=343, cumulative_hits=34986" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.422427, eps=3.124284, kb=12.844727, ev=95, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.612974, eps=1.545699, kb=18.638672, ev=47, avg_age=1.212766, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.027781, eps=0.032887, kb=0.844727, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.478406, eps=3.124284, kb=14.546875, ev=95, avg_age=0.926316, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003469, eps=0.065774, kb=0.105469, ev=2, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.990 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.234418, eps=1.479924, kb=7.127930, ev=45, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, system total, active_hist_searches=4, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:35:43.991 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=4, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.487 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 353 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565317c433ec70 310ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:35:45,491 - admin search index=main | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.494 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 119ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.617 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.675 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.733 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 5778 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.790 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 7135 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.811 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1923 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531cf1675b70 26ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.817 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 624 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d162a9d0 33ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.822 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 7959 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531d262a470 24ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.828 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2181 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.831 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 8217 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.832 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 882 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.883 -0700] ""POST /en-US/api/search/jobs/1347773730.619/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a230 49ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.886 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3940 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531e262a210 36ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10922 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.902 -0700] ""GET /services/search/jobs/1347773730.619 HTTP/1.1"" 200 10803 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.926 -0700] ""POST /services/search/jobs/1347773730.619/control HTTP/1.1"" 200 383 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.959 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1932 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f54334670 32ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.961 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1465 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f6433e310 37ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.969 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10238 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556531f862a510 35ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2190 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.984 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 10496 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:45.985 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1723 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.026 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532061de6b90 57ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.034 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653208433b910 42ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.038 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.042 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.049 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 397 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.051 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 200 1071 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320d4334d50 242ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.060 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3942 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565320f62a910 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.082 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.083 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.101 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10924 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.113 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.126 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 12ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.158 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677850 116ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.159 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1949 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532281677cd0 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.161 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653229273c790 114ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.185 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565322f4326d10 70ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.207 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2207 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.215 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 13ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.216 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 17ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.217 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.219 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10939 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.466 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 3960 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532774277b10 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.472 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 10946 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.487 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327c1de6d10 38ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.489 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d433e6f0 69ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.491 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565327d2740e10 65ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.501 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556532802740290 48ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.516 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:46.517 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.111 -0700] ""GET /en-US/api/search/jobs?s=1347773745.621 HTTP/1.1"" 200 4073 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565331c4331350 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.116 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.131 -0700] ""GET /en-US/splunkd/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 1967 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653321273c070 35ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.133 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0.5 HTTP/1.1"" 200 10908 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533224331cd0 65ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.135 -0700] ""GET /en-US/api/search/jobs/1347773745.621/summary?min_freq=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1626 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533221672690 67ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.143 -0700] ""GET /en-US/module/system/Splunk.Module.EventsViewer/render?count=10&offset=0&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time&max_lines=10&display_row_numbers=1&entity_name=events&enable_event_actions=1&enable_field_actions=1&segmentation=full&sid=1347773745.621&min_lines=10&max_lines_constraint=500&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055653324432fc10 137ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.145 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 304 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556533254325c30 64ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.156 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0.5&output_mode=xml HTTP/1.1"" 200 11166 - - - 19ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.157 -0700] ""GET /services/search/jobs/1347773745.621/summary?time_format=%25s.%25Q&min_freq=0&output_mode=xml&field_list=host%2Csourcetype%2Csource%2C_raw%2C_time HTTP/1.1"" 200 1884 - - - 18ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.158 -0700] ""GET /services/search/jobs/1347773745.621/timeline?offset=0&count=1000 HTTP/1.1"" 200 2225 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.161 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.170 -0700] ""GET /en-US/module/system/Splunk.Module.SimpleResultsTable/render?count=10&offset=0&max_lines=10&sid=1347773745.621&entity_name=results&display_row_numbers=true&show_preview=1&mark_interactive=1&client_app=search HTTP/1.1"" 200 585 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565332b432f270 75ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=10&time_format=%25s.%25Q&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&output_mode=xml HTTP/1.1"" 200 6391 - - - 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.185 -0700] ""GET /services/search/jobs/1347773745.621/events?count=10&segmentation=full&output_mode=xml&time_format=%25s.%25Q&max_lines=10&show_empty_fields=True&offset=0&output_time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S.%25Q%25z&field_list=&truncation_mode=abstract HTTP/1.1"" 200 36969 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:35:47.256 -0700] ""GET /servicesNS/admin/search/properties/event_renderers?fillcontents=1 HTTP/1.1"" 200 3657 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.684 -0700] ""GET /en-US/api/search/jobs/1347773745.621/result?isDownload=true&timeFormat=%25FT%25T.%25Q%25%3Az&maxLines=0&count=0&filename=sample.tutorial4&outputMode=csv&spl_ctrl-limit=unlimited&spl_ctrl-count=10000 HTTP/1.1"" 200 - ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 50556546af1e943b0 40ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.690 -0700] ""GET /services/search/jobs/1347773745.621/results_preview?count=1&output_mode=xml HTTP/1.1"" 200 1055 - - - 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.703 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 6ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:06.714 -0700] ""GET /servicesNS/admin/search/search/jobs/1347773745.621/results/export?output_mode=csv&f=index&f=host&f=source&f=sourcetype&f=_raw HTTP/1.1"" 200 442032 - - - 634ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 5055654d6b4325050 9ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:13.425 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=mpool, max_used_interval=23242, max_used=95646, avg_rsv=251, capacity=268435456, used=1138" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=47, cumulative_hits=438" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=532" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=532" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=214, cumulative_hits=47131" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=295.993347, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.707 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=232, cumulative_hits=48937" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=37, cumulative_hits=4968" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=206, cumulative_hits=33493" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=220, cumulative_hits=35206" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=201, cumulative_hits=32044" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.708 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.262388, instantaneous_eps=5.957074, average_kbps=0.193592, total_k_processed=4659, kb=38.780273, ev=183, load_average=1.042480" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=map, name=pipelineinputchannel, current_size=23, inactive_channels=4, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.262388, eps=5.957074, kb=38.780273, ev=183, avg_age=0.901639, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.054263, eps=4.427115, kb=32.386719, ev=136, avg_age=1.213235, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.208125, eps=1.529959, kb=6.393555, ev=47, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.003179, eps=0.032552, kb=0.097656, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.494134, eps=1.009122, kb=15.179688, ev=31, avg_age=1.451613, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.307753, eps=1.888034, kb=9.454102, ev=58, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.709 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.249197, eps=1.497406, kb=7.655273, ev=46, avg_age=1.347826, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=91, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, system total, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:14.710 INFO Metrics - group=search_concurrency, user=admin, active_hist_searches=1, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.115 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565551d1e942f0 23ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.123 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:36:21.134 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - - [15/Sep/2012:22:36:35.965 -0700] ""POST /services/auth/login HTTP/1.1"" 200 235 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=mpool, max_used_interval=54719, max_used=95646, avg_rsv=252, capacity=268435456, used=54719" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=3, cumulative_hits=441" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=533" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=533" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=13.472726, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=260.400024, executes=248, cumulative_hits=47379" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=105.671432, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=17.018181, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.571 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=260, cumulative_hits=49197" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=23, cumulative_hits=4991" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=262, cumulative_hits=33755" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=269, cumulative_hits=35475" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=229, cumulative_hits=32273" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=1.631942, instantaneous_eps=7.030721, average_kbps=0.195419, total_k_processed=4709, kb=50.369141, ev=217, load_average=1.270508" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=4, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=1.631942, eps=7.030721, kb=50.369141, ev=217, avg_age=46.626728, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_index_thruput, series=""main"", kbps=1.620994, eps=6.933522, kb=50.031250, ev=214, avg_age=47.280374, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.010948, eps=0.097199, kb=0.337891, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013700, eps=0.032400, kb=0.422852, ev=1, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=1.596157, eps=6.803923, kb=49.264648, ev=210, avg_age=48.180952, max_age=75" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.011137, eps=0.097199, kb=0.343750, ev=3, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.572 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=183, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=4, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:36:45.573 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.419 -0700] ""GET /en-US/api/messages/index HTTP/1.1"" 200 341 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565896b1672ef0 8ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:13.424 -0700] ""GET /services/messages HTTP/1.1"" 200 1970 - - - 1ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=mpool, max_used_interval=68161, max_used=95646, avg_rsv=252, capacity=268435456, used=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=6, cumulative_hits=447" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=534" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=92, cumulative_hits=47471" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.602 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=97, cumulative_hits=49294" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=11, cumulative_hits=5002" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=68, cumulative_hits=33823" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=72, cumulative_hits=35547" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=66, cumulative_hits=32339" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.362699, instantaneous_eps=1.965783, average_kbps=0.195624, total_k_processed=4720, kb=11.254883, ev=61, load_average=1.154297" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.362699, eps=1.965783, kb=11.254883, ev=61, avg_age=0.032787, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.603 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.292897, eps=1.772427, kb=9.088867, ev=55, avg_age=0.036364, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.069802, eps=0.193356, kb=2.166016, ev=6, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.013406, eps=0.032226, kb=0.416016, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.276249, eps=1.707975, kb=8.572266, ev=53, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.003241, eps=0.032226, kb=0.100586, ev=1, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=3, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:16.604 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.114 -0700] ""POST /en-US/api/search/jobs/control HTTP/1.1"" 200 401 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565911d1668190 23ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.122 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:21.132 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 381 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.546 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 4417 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a38b1672e50 383ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.582 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 201 411 - - - 15ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.601 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.613 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 7129 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.825 -0700] ""GET /services/search/jobs/1347773859.646 HTTP/1.1"" 200 8912 - - - 4ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.834 -0700] ""GET /services/search/jobs/1347773859.646/results?count=100&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=0&field_list= HTTP/1.1"" 200 21348 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.860 -0700] ""GET /services/search/jobs/1347773859.646/results?count=84&output_mode=xml&time_format=%25Y-%25m-%25dT%25H%3A%25M%3A%25S%25z&max_lines=100&show_empty_fields=True&offset=100&field_list= HTTP/1.1"" 200 14687 - - - 7ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:39.878 -0700] ""POST /services/search/jobs/1347773859.646/control HTTP/1.1"" 200 383 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:40.846 -0700] ""POST /en-US/api/shelper HTTP/1.1"" 200 5005 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a4d81672f70 21ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.029 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6071672850 27ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:42,032 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.035 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 14ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:42,050 ERROR [505565a6071672850] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.062 -0700] ""POST /en-US/api/search/jobs/1347773745.621/control HTTP/1.1"" 200 343 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a6101672ff0 22ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.069 -0700] ""GET /services/search/jobs/1347773745.621 HTTP/1.1"" 200 11261 - - - 5ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:42.079 -0700] ""POST /services/search/jobs/1347773745.621/control HTTP/1.1"" 200 383 - - - 3ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.273 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8461e1e7f0 10ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,276 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.280 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,282 ERROR [505565a8461e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.898 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565a8e61672c50 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:44,902 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:44.906 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:44,908 ERROR [505565a8e61672c50] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_access.log","splunk_web_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.083 -0700] ""POST /en-US/api/search/jobs HTTP/1.1"" 200 497 ""http://localhost:8000/en-US/app/search/flashtimeline?q=search%20index%3Dmain%20%7C%20table%20index%2C%20host%2C%20source%2C%20sourcetype%2C%20_raw&earliest=-15m%40m&latest=now"" ""Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1"" - 505565aa151e1e7f0 11ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:46,087 - admin search index=main | reverese | table index, host, source, sourcetype, _raw" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/splunkd_access.log","splunkd_access","127.0.0.1 - admin [15/Sep/2012:22:37:46.090 -0700] ""POST /servicesNS/admin/search/search/jobs HTTP/1.1"" 400 474 - - - 2ms" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/web_service.log","splunk_web_service","2012-09-15 22:37:46,093 ERROR [505565aa151e1e7f0] search:228 - Search operation 'reverese' is unknown. You might not have permission to run this operation. +Traceback (most recent call last): + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/controllers/search.py"", line 221, in dispatchJob + job = splunk.search.dispatch(q, sessionKey=cherrypy.session['sessionKey'], **options) + File ""/Applications/splunk/lib/python2.7/site-packages/splunk/search/__init__.py"", line 280, in dispatch + raise splunk.SearchException, msg['text'] +SearchException: Search operation 'reverese' is unknown. You might not have permission to run this operation." +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=mpool, max_used_interval=13395, max_used=95646, avg_rsv=252, capacity=268435456, used=2972" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=dev-null, processor=nullqueue, cpu_seconds=0.000000, executes=15, cumulative_hits=462" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=fschangemanager, cpu_seconds=0.000000, executes=1, cumulative_hits=535" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=fschangemanager, processor=sendindex, cpu_seconds=0.000000, executes=1, cumulative_hits=535" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=http-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexin, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=index_thruput, cpu_seconds=0.000000, executes=127, cumulative_hits=47598" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexandforward, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.606 INFO Metrics - group=pipeline, name=indexerpipe, processor=indexer, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=signing, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=syslog-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=indexerpipe, processor=tcp-output-generic-processor, cpu_seconds=0.000000, executes=142, cumulative_hits=49436" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=aggregator, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=readerin, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=merging, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=header, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=linebreaker, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=readerin, cpu_seconds=0.000000, executes=41, cumulative_hits=5043" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=sendout, cpu_seconds=0.000000, executes=137, cumulative_hits=33960" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=parsing, processor=utf8, cpu_seconds=0.000000, executes=154, cumulative_hits=35701" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=annotator, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=previewout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=readerin, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=regexreplacement, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.607 INFO Metrics - group=pipeline, name=typing, processor=sendout, cpu_seconds=0.000000, executes=110, cumulative_hits=32449" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=searchscheduler, dispatched=0, skipped=0, total_lag=0, max_ready=0, max_pending=0, max_lag=0, max_running=0, actions_triggered=0, completed=0, total_runtime=0.000, max_runtime=0.000" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=thruput, name=index_thruput, instantaneous_kbps=0.575686, instantaneous_eps=3.096366, average_kbps=0.196077, total_k_processed=4737, kb=17.848633, ev=96, load_average=1.330566" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=map, name=pipelineinputchannel, current_size=27, inactive_channels=8, new_channels=0, removed_channels=0, reclaimed_channels=0, timedout_channels=0, abandoned_channels=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_host_thruput, series=""csharp-mbp15.local"", kbps=0.575686, eps=3.096366, kb=17.848633, ev=96, avg_age=0.906250, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""_audit"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_index_thruput, series=""main"", kbps=0.507179, eps=2.580305, kb=15.724609, ev=80, avg_age=1.087500, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/metrics.log"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/searches.log"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/splunkd_access.log"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_access.log"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""/applications/splunk/var/log/splunk/web_service.log"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_source_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""audittrail"", kbps=0.068508, eps=0.516061, kb=2.124023, ev=16, avg_age=0.000000, max_age=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""searches"", kbps=0.010489, eps=0.096761, kb=0.325195, ev=3, avg_age=0.666667, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_access"", kbps=0.094525, eps=0.225777, kb=2.930664, ev=7, avg_age=1.571429, max_age=3" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunk_web_service"", kbps=0.063878, eps=0.096761, kb=1.980469, ev=3, avg_age=1.666667, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd"", kbps=0.275008, eps=1.709452, kb=8.526367, ev=53, avg_age=1.000000, max_age=1" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.608 INFO Metrics - group=per_sourcetype_thruput, series=""splunkd_access"", kbps=0.063279, eps=0.451553, kb=1.961914, ev=14, avg_age=1.142857, max_age=2" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aeq, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aq, max_size_kb=10240, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=aggqueue, max_size_kb=1024, current_size_kb=0, current_size=0, largest_size=53, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=auditqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=exec, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=fschangemanager_queue, max_size_kb=5120, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=indexqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=5, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=nullqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=1, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=parsingqueue, max_size_kb=6144, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=stashparsing, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=tcpin_queue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=0, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=queue, name=typingqueue, max_size_kb=500, current_size_kb=0, current_size=0, largest_size=2, smallest_size=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=realtime_search_data, system total, drop_count=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/metrics.log",splunkd,"09-15-2012 22:37:47.609 INFO Metrics - group=search_concurrency, system total, active_hist_searches=0, active_realtime_searches=0" +"main","csharp-mbp15.local","/Applications/splunk/var/log/splunk/searches.log",searches,"2012-09-15 22:37:49,866 - admin search index=main | reveres | table index, host, source, sourcetype, _raw" diff --git a/splunk_eventgen/samples/sample.tutorial2 b/splunk_eventgen/samples/sample.tutorial2 new file mode 100644 index 00000000..ca8bd283 --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial2 @@ -0,0 +1,274 @@ +Mar 1 00:01:50.575: %SYS-5-CONFIG_I: Configured from console by console +Mar 1 00:01:51.047: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 1 00:01:52.047: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up +Mar 1 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 1 00:04:37.815: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:04:42.135: OSPF: Send with youngest Key 1 +Mar 1 00:04:47.607: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:04:52.071: OSPF: Send with youngest Key 1 +Mar 1 00:04:57.091: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 1 00:05:01.095: OSPF: Send with youngest Key 1 +Mar 5 07:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 5 07:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 5 07:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 5 07:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 7 02:22:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 7 02:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 7 02:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 7 02:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 8 12:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 8 12:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 19:49:00.000: %SYS-6-CLOCKUPDATE: System clock has been updated from 00:05:06 UTC Fri Mar 1 2002 to 19:49:00 UTC Mon Mar 9 2012, configured from console by console. +Mar 9 19:49:00.411: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 9 19:49:04.483: OSPF: Send with youngest Key 1 +Mar 9 19:49:10.395: OSPF: Rcv pkt from 192.168.1.2, FastEthernet0/0: Mismatch Authentication type. Input packet specified type 0, we use type 2 +Mar 9 19:49:13.723: OSPF: Send with youngest Key 1 +Mar 9 19:49:28.407: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x622AC624, alignment 0 +Pool: Processor Free: 21244 Cause: Memory fragmentation +Alternate Pool: None Free: 0 Cause: No Alternate pool + -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x622AC62C 0x622AD9D8 0x622AE560 0x622AFEC4 0x6252CD28 0x6252D120 0x6252E004 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 +Mar 9 19:49:28.407: %SYS-2-CHUNKEXPANDFAIL: Could not expand chunk pool for regex. No memory available -Process= "Chunk Manager", ipl= 4, pid= 1, -Traceback= 0x6144B520 0x60024E24 0x6273BAAC 0x6273BA90 +Mar 9 19:49:28.487: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x62551FB0 0x62552584 0x6252C7CC 0x6252DA78 0x6252E014 0x6252E28C 0x62562FC4 0x6256D75C 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 9 19:49:37.099: %SYS-5-CONFIG_I: Configured from console by console +Mar 9 19:50:30.499: %SYS-2-MALLOCFAIL: Memory allocation of 10260 bytes failed from 0x6254F9F8, alignment 0 +Pool: Processor Free: 29796 Cause: Memory fragmentation +Alternate Pool: None Free: 0 Cause: No Alternate pool + -Process= "Exec", ipl= 0, pid= 92, -Traceback= 0x6144B520 0x60013384 0x600192E4 0x6001993C 0x634B3F08 0x6254FA00 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 +Mar 9 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 9 19:50:35.303: %SYS-5-CONFIG_I: Configured from console by console +Mar 9 19:51:41.523: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:52:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:52:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:53:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:53:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:54:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:54:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:55:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:55:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:56:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:56:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:57:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:57:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:58:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:58:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 19:59:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 19:59:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 20:00:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 9 20:00:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 9 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 9 20:30:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:31:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:32:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 20:33:00.967: %ENVM-3-BLOWER : Fan 1 may have failed +Mar 9 21:40:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 9 22:24:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 9 22:30:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from Zytek AC Power Supply to removed +Mar 9 22:35:01.345: %ENVM-6-PSCHANGE: Power Supply 1 changed from removed to Zytek AC Power Supply +Mar 9 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 9 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 9 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 9 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 10 00:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:03:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:04:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:05:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 00:10:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 10 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 10:40:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 10:50:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 11:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 10 12:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 11 08:13:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:15:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:15:20.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:16:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:17:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 08:18:00.234: %OSPF-4-FLOOD_WAR: Process 200 re-originates LSA ID 10.230.1.0 type-2 adv-rtr 100.100.100.1 +Mar 11 22:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 11 17:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 12 10:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 12 15:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 14 05:30:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 15 19:50:30.499: %NBAR-2-NOMEMORY: No memory available for StILE lmalloc, -Traceback= 0x6144B520 0x6254FA1C 0x625319AC 0x62534C08 0x6252F68C 0x62532068 0x6252F68C 0x6252F850 0x62562CE0 0x6256D744 0x6255A8F4 0x6255DA14 0x6255FBE8 0x6255FED8 0x61497954 0x614BB718 +Mar 19 20:01:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:01:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:02:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:02:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:03:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:03:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:04:40.419: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:04:51.295: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 20:05:33.831: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from FULL to DOWN, Neighbor Down: Dead timer expired +Mar 19 20:05:40.747: %OSPF-5-ADJCHG: Process 100, Nbr 192.168.1.2 on FastEthernet0/0 from LOADING to FULL, Loading Done +Mar 19 23:01:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:02:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 19 23:03:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:04:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 19 23:05:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 200 to area 100 +Mar 19 23:06:23.123: %OSPF-6-AREACHG: 172.16.1.0 255.255.255.0 changed from area 100 to area 200 +Mar 20 20:01:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:01:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:02:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:02:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:03:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:03:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:04:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:04:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:05:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:05:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:06:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:06:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:07:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:07:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:08:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:08:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:09:34.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 20 20:09:54.301: %OSPF-4-ERRRCV: Received invalid packet: Bad Checksum from 10.10.10.1, FastEthernet0/0 +Mar 21 08:41:38.199: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:41:47.039: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:47 UTC Wed Mar 21 2012 +Mar 21 08:41:49.451: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: sd] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:41:49 UTC Wed Mar 21 2012 +Mar 21 08:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 +Mar 21 08:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 +Mar 21 08:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 +Mar 21 08:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 08:42:38.027: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:38 UTC Wed Mar 21 2012 +Mar 21 08:42:45.115: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:45 UTC Wed Mar 21 2012 +Mar 21 08:42:48.983: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:48 UTC Wed Mar 21 2012 +Mar 21 08:42:55.475: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:55 UTC Wed Mar 21 2012 +Mar 21 08:42:59.747: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: cisco] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadPassword] at 08:42:59 UTC Wed Mar 21 2012 +Mar 21 08:46:07.527: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:46:08.923: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:46:09.923: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up +Mar 21 08:46:28.435: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:47:01.147: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Init +Mar 21 08:47:02.203: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:47:21.659: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 21 08:48:46.283: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:48:50.003: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up +Mar 21 08:49:00.575: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 21 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 21 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 21 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 21 08:53:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 21 09:00:54.371: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:02:54.743: %SYS-5-CONFIG_I: Configured from console by cisco on console +Mar 21 09:03:00.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 21 09:03:10.547: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:03:10.915: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:03:59.615: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:03:59.907: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:04.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 21 09:04:05.007: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:05.275: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:25.631: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:26.243: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:31.343: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:31.755: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:06:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 21 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 21 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 21 10:42:03.715: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:03 UTC Wed Mar 21 2012 +Mar 21 10:42:21.935: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:21 UTC Wed Mar 21 2012 +Mar 21 10:42:26.447: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:26 UTC Wed Mar 21 2012 +Mar 21 10:42:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:43:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:44:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:45:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:46:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:47:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:48:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:49:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:50:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:51:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:52:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:53:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:54:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:55:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:56:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:57:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:58:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 10:59:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:00:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:01:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:02:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:03:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:04:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:05:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:06:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:07:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:08:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:09:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 21 11:10:30.463: %SEC_LOGIN-4-LOGIN_FAILED: Login failed [user: admin] [Source: 0.0.0.0] [localport: 0] [Reason: Login Authentication Failed - BadUser] at 08:42:30 UTC Wed Mar 21 2012 +Mar 22 09:02:25.499: %IP-4-DUPADDR: Duplicate address 192.168.1.1 on FastEthernet0/0, sourced by c201.168c.0000 +Mar 23 08:49:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:49:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:50:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:50:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:50:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:50:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:51:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:51:36.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:51:46.735: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:52:20.751: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:52:41.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:52:51.827: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Speak -> Standby +Mar 23 08:52:58.871: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Standby -> Active +Mar 23 08:53:10.943: %HSRP-5-STATECHANGE: FastEthernet0/0 Grp 1 state Active -> Speak +Mar 23 08:54:00.245: %SNMP-4-HIGHCPU: Process exceeds 200ms threshold (200ms IOS quantum) for GET of rmon.19.16.0--result rmon.19.16.0 +Mar 23 09:04:37.859: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:04:39.635: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:05:51.255: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:05:51.419: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:08:46.739: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:08:46.931: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:09:47.287: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:09:47.551: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 23 09:10:40.983: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Down Peer closed the session +Mar 23 09:10:41.307: %BGP-5-ADJCHANGE: neighbor 192.168.1.3 Up +Mar 24 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 24 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:27.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:28.587: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:47:29.591: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). +Mar 26 08:48:29.595: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on FastEthernet0/0 (not full duplex), with Router FastEthernet0/0 (full duplex). diff --git a/splunk_eventgen/samples/sample.tutorial3 b/splunk_eventgen/samples/sample.tutorial3 new file mode 100644 index 00000000..0ee0619c --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial3 @@ -0,0 +1 @@ +2012-09-14 16:30:20,072 transType=ReplaceMe transID=000000 transGUID=0A0B0C userName=bob city="City" state=State zip=00000 value=0 diff --git a/splunk_eventgen/samples/sample.tutorial4 b/splunk_eventgen/samples/sample.tutorial4 new file mode 100644 index 00000000..20f40e7d --- /dev/null +++ b/splunk_eventgen/samples/sample.tutorial4 @@ -0,0 +1,4 @@ +index,host,source,sourcetype,_raw +main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:28:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 open" +main,www.splunk.com,/var/log/httpd/access_log,access_custom,"2012-09-14 17:29:11:000 10.2.1.35 POST /playhistory/uploadhistory - 80 - 10.12.0.20 ""Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"" 200 0 0 468 1488" +main,proxy.splunk.com,/var/log/proxy.log,proxy,"Sep 14 17:30:11:000 Connection inbound from 5.5.5.5 to 10.2.1.35 on 10.12.0.20 closed" \ No newline at end of file diff --git a/splunk_eventgen/samples/searchArtists.sample b/splunk_eventgen/samples/searchArtists.sample new file mode 100644 index 00000000..0761bc00 --- /dev/null +++ b/splunk_eventgen/samples/searchArtists.sample @@ -0,0 +1,21 @@ +Rihanna +Bruno+Mars +LMFAO +Flo+Rida +Katy+Perry +Kanye+West +Adele +David+Guetta +Maroon+5 +T-Pain +Gym+Class+Heroes +Big+Sean +J.Cole +Drake +Toby+Keith +Snoop+Dogg +Foster+The+People +Cobra+Starship +Kelly+Clarkson +Gavin+DeGraw +Luke+Bryan \ No newline at end of file diff --git a/splunk_eventgen/samples/sha1_checksums.sample b/splunk_eventgen/samples/sha1_checksums.sample new file mode 100644 index 00000000..f79c853f --- /dev/null +++ b/splunk_eventgen/samples/sha1_checksums.sample @@ -0,0 +1,1000 @@ +8f43e0bac89e62ad971e00963b0272a402419fd2 +d5990ec1660ccf9c43d4e67cbf4ac905ed1f41fd +debbeb03959805463ea63777e4f9457cf925e8fe +7ff82d64bccc5c896d6ea61ea4347bac1a3ea47c +135e485c4635cb2f22d96f7d0d7f77b58bd95d05 +046f14fd4fd13b449f4e0a1bcb57fd308fc1b19f +89e4f285f3d8015664e63d6289142221e06314fe +79f500040ec6555aa948856079f6627ebecc2b70 +ec0e3db341e9636de6274ed0b2fc32de9ad162bb +34e78655c17d87e2e3b5abca3bfdcf389b77d419 +cfdcc8006bdd48cf56ecba0c77b5e8dc14ad2e5d +7d79e4f94538ea319ae0092653cf6d8a777d427d +08ad65558308c762f2782d7179a380040d98b43b +cb8ef13b8d6c09afac0972a903ee5bebeca0ae62 +0dd39fd674706f4aad27181a1e51b79b879847aa +9a1ad1b820919522ca8263721520b7f931b8fe7b +244cc0ba509f0753a16b12d969af8c0ef4b31293 +6e443884b0b07ba53abae72cebc66c444e552d0d +7b91c1a5d2c29a2537a215be91f1b17f7413b3b3 +d03987c966b0a5c045f2dfd9dd6322ad3b0d0d5d +5b2b6ed1591a45a2b3eefa02649a55c8b704595a +cd8e7d0f4aea0154acfeac2e31f6ab8268bad15e +fef8ce08d57ea4570fa052c8bb23f7e357c0ada2 +ed7be8d52be86008f3e8ef29a65db6439fcf0eb7 +25463deebf294f9783bc49a3f40eee11974bdbea +5b9ae9529b3a24962e697949ec0e2f86317f6c15 +1e5fdca95de18cb439df7a0bc47ef1151dd79ef1 +e566cc71ee49042e1466ee991cf09c5ef30314d2 +8d617d0e675bf5e1c14076bc4603393c23fb1912 +a741f7308571e975f0478b7a1879706e4a561e6c +852f36e1468c2efc607e6832eb602d6cfae11141 +11ecaf6c0301ab8151e42f7e5a593c73442922a3 +3c696723e044aee3448825058e515bfd39130e7e +8038a239e8f0919c1ecac3ad9d48ef25315036f7 +4000d274490d909608171ad2cbf563aa498f44ee +7e3967689f66a2030526a0dfe124c3ba51a60a0a +eefb96c42f9f389b4355a61066c91a588b9ecf6f +eafe80fa8bb9d0332e40a4d5e148b8e029ac2d3a +c6e6956149d2fbf73faba54d509d1e2457c44fa0 +f02a338899e6d29de8dc48428aa6d86cb0499dc6 +813b1bd4b8674248668deb50eecfaf424edeec23 +64baaee1853f69e7d72d136de0858073239e978c +d9ca8078d8885eaf233b24dcb78803131a84687b +11b446639ec8b91d1d8dee42168e369abe50d73e +323369d79c1fe0aeb13da93e032a9b9a8eb61e03 +745f7877e88f6ed43688ad8145d5b48595bf52b2 +29bb3e222bae2466e340477d63252e2df8ec71be +f8440d8b4b379d86c1c11dbead8379e67a6866a2 +eb64a44a51fdf790dcf0a8bce63d005897b3e1b0 +f9dfb8b73708c36df76cf4b15cf591c1640fbac1 +fde9cfeb9c70ffae9b8d2e217efc048282d150a9 +dff78cdc36f9a8b10f540420571fa3e37f4b096e +998208107c71cd5930889b0309edb9401efe5567 +f896812812b13bbfd25b1c7e9d424b246eec45d8 +6c23807332aaae8dd0eeb7433e29d80592d8bc67 +b2b897b2b18c8e8dd164aca1e517f3b349266f3c +e4c6648764cab41dcaa054981e2b33ec466d9aac +3b6b16a91a9d4c24294184362caded4161260482 +d8b5e3025347ea6ff9861732924338f5bfddf8ee +15119f0cfa48bb45f1f6112a168c0a12530a597e +c8ea17ace7ba929b110591ef8c5bc62c4cd7f1d3 +23f89e04a4d6f7c46c26e3a7720ad15f3e6efe69 +6252fb60d3797d57ae1a9c69d5be70a3d8fa104a +8336e9b658c57f54da56fd4e36b3a11bac08cb63 +e02715b0b40ac5cb373a61e2968bb1cf7e0db4f4 +eb1f3976b298ed0366931fb8cd496934f3edb46a +fb2801f62a2731c348548d746f197a0505047f45 +855c4464d02b4cc023cc840c388c63e3d868357c +71aafd716684c223d9c7d2bd029ae97acef05585 +335604a88f0649775428e44e27dae6c42b55795d +84548f57569ac73579cf4f93be4322beddaeede6 +4da00f62524a29d536377a101db78fd027131120 +4fc7d1c333ec53005437081e33491f070d3f9a44 +e5ff8f0777969f7c536c856678d24cead1d9cad1 +7f4e00ae9d3e916b1b2116dd9e010e375e61f559 +3a64ed6e45236661edbd4f29e822b4e3463a2361 +63078e26907c7e0bf39caf3b1dbc33e46791c9ac +ce11428e96707ecfe63b5c01adac3429264a70b1 +dfa8427f3dc4a72abbdfb3b01e480916fa7890f5 +694ce787741e6f422b01d29e687a258e92a46ee9 +ecae8a331d7a8b1f83d536444dbde361c54da31d +1b3e887ef869e13e17cfd1f9d382176e815a4921 +41ce8c939dfab847ae11fb67a2766abdfaebb4ca +ced27174ec9520e22d5a7d8cd8d13dda6fbff3fc +6fbe8c8068fce1f7faa7048cf71553ff8818a39e +4a8e24a7e1c20576c87d4c5e6070be73332aba8f +99e811bdadfb0e2ce4f19825f525b6c35d1bc506 +b8db8b2d43689940fd23bf2bae27e40155fdc7d2 +ea7d2ec45b9ba1ddcd8491c67d864970017f0e5c +4afb6238f27c49259b9c3fe94d4bfe46e7981c5c +44dfc1a98af2ca9b01c987c7238e6c9829c0ca79 +7150517ccb77e21b108dd47d749085def371d78d +2884978dd45c124e64033a58eb8a09a159c4f8c5 +c8fd6c6b57bcee96740736e0ccaa2f95b382c590 +8e3314c894189678b461a92b1d634f7375d20382 +c2d818b18452638264eb38f7d9566794084efc98 +507acea6a662d70def1abeb492bc7781f6bd5c30 +3067e11a0decf9e389394b446ce2e11465b73b46 +77825c13fb1fe0ec9da497bd32d1d7d5b9fc1e9c +4dd0ab5cc22dbb7ba80ff5843130764ebc3f4953 +65e4a6169d0d3d9695673eebc90abb55eaf95c8e +6aea9a96e49e6b8a5d22638377fe492c6e6d9014 +54ed81ba14e427a8ff7aba8168a6124abe9ad280 +3bd562c4129c7210b3c3ee52e8b52887d281af0f +88f7cea4edf4a71113c4e53637be8c6c406101e1 +910fa87514244dfeeac94b3771dc9b6e2c442baa +83947fab9bddb434979a81cf7bfc0f1b91c1cf01 +6df00406e815bf118b34e2b20830faf9e9b573ea +773e5b4f3271f97cda1f9969f8dd6d9bb1251f21 +d8f6d7e0b29eb1895434c3fe61f278e12f3f2e30 +cccdd396bf6a6ad0c3921eae99ccdfddb49d71a2 +0f62ff1dc5414e4f7e72605d4f4fb78c195b7506 +45078804a6e5729d3fce86bad2e09f486bb8d922 +4c537ddff9d6fd01fb9ed7d6c67363c7719e81d3 +7981c35772d560e4eaab5bd9ff019dc2675bbf93 +a17d877e92c409baf16383bec5f193e25f9c99cf +de8668b9ca19acbdb47559502eb372fdb6e74519 +ef42fb2683227dc2525215334bb36f9e0a820f6c +b982fad361ff0249be3fd771020b0e26d17ec84c +47532f386b76da71326b5fd0cde8fed00de0df5e +7df732da0d6c1f053d6339fa47859cd4f184cbf5 +7dab3ea7746ecff9cf24eaecfd8e2b8784b36fa4 +444041d27a22117e20120369f1cfcef4aca0b7e3 +dc2bc5f79c88a52c049b2892e5235b9a10783889 +abd0fa7534a994bd8188ca271657684f831f0827 +f3a7c3be7482dafe37c20c4b1e39de8b7a014e66 +20a3ba4d0a4f74ac92ce786662aa804d7a7ee53e +329b5fcde781c4b8b8673d4efeb7d62fa9e6eea9 +c7634078d14b7ba2c6ed05df75840b3af50ecaae +bc845beaeda4c4cbd6ebb73d0fbd7a86686137b2 +b823c619bef218a4f3bd404127748f2256f6dc35 +e60aa47ac79ac2d683251ec4b91e5fc9fd8c9954 +bbb0c88cc607f1cce2a2d4fa11783e317323084b +98da69bc4ac675ca93f942f97693a9f3f1fe9119 +dd51e1c42b9bf4301e7e457f86ee84f56f4e020e +f1226fc18c62d03475b0297efc63823f89159ccf +1202737f4bb24f1002b27b2296cc1f592a14b45a +ef7237cbc6c7bfc16c0ceab13134908a999effed +f0b3be619e2d9d68e05fc16c15abfe88871a035c +6e24917e7715a1759a9f23910596ad5078bc9fa1 +1bd9f10278e871f24c9578426e838614d50f2301 +08743654931b04787f6ba8ff4f5ecec2bdf0f157 +56db6249e148d97e2147d676ba47f03b1deeedaa +78d2a53b72dff2291eaf17382592cdabc5a6d7d8 +6d746643ff20eff7d9aad8dba89a81bcecd090f3 +cc3c5a481258aafb9b8d3b6145c2b04debd532a4 +0b81c6699fd0a0655ae8f1459e66237d0f9be038 +4730f389e62019de95488c28d8c755f11f9bbb99 +c3e0ce4b2de0abeb8648cf154912aae7bf42d8c4 +bb7d3253ac3982c81dac8df293d44485c2b75459 +6d21b614f881d4b15b289847768d1d1f11bd8515 +5d2f9c1fe2119c88a2a44d90c113b9beff5f6496 +9bb5e28ae720e21f3eefb34f74960ba6577180ea +ff991087fb6313d1e1b4be781ae35ac87d796101 +4e438c6e579600dcc42067e23c3778efdca3c6c4 +0c311bfa94f465147c693552e94de28615b9eb18 +980aeb208d9e93a63c1d33ea400bdcc9293498c8 +842d591b38881fc5dcd75445338d6408ddfe4d12 +dea3282c25b5de4cab74793e7fdd31b0495c43dc +3218306b30703ac7968106c64a25ffc51f627a75 +d56ca2edb4df3cf60ab10b346cb25afdd750dea1 +b6b8a83c07cf5a23d570181d9bef184b7b9810fe +ebc7e6f60c43246455410beac016c4108c27d498 +42474a432626c240e80f52d6ff84fc6937156890 +f5dbfb3394680ba54f68765ad5b3e8979660853f +b36b4dc3d5a53832438596ec21a3ff64b15ee855 +a4060e36c6d881def0f855e9a467fefe9a238a86 +e3b0f1ac8c734d1545cac685ed454a4ab7069408 +2e5171e862afd686d9e3d9e8b387cad01ffa9ec1 +b56c6bf91676cf2294a94e8bb9e9b9fc8db539ff +8a36d9bd7d6d3bb10227bc2b12cef43b032dd03e +3f641128a87e46f4fe18ad8ac93eb0405a3ece91 +0e29a268548b1a3c2253be73e261527004f98946 +cfd92aa125380b36e56d2cda3f9d116ddf7c9c61 +17041fa7399d450dc8a3bd10362c0ba4fe46de9a +3e1a47ad15039d9c382c89508121f4c411ec93bc +b9a07505a69721e4a20ad20ec8d58f143226bd36 +86903ad2b03329cd200abb7b5f21813f084ae995 +db1100269fa59df56c331f946452889100fd0f1b +f33f85e8c04c400b1547e11a68dddaf4fea1e8bc +c4c23bddc01fd53f403535c9f88c08218743a516 +cb09982f6579f59d0467e208e6d14ffdadda4fee +58b1cb0e46b5f49e28494f3f0d9e3380cd2773ba +f01dd134139efd23d5eee126f998374c11e9416b +e7143c1cb384ffda7e94d8843352000a9f3771b5 +83c32af057801a7d6129036685159d306cbf6a0d +721c48b7c549bb477dee141286bc40f108f0f1f0 +455f17229f9b46306d784f436e2fd0265f23958a +bc4d2894f8ee8c457b56ef0f72ea8d663e7d9dec +bdb42c5f6e37eebbb04a91dfd49af91b2d5883d0 +42630483ae7d64147a0c819f284624fce8c453df +1df79f087525b50935d6a728e3ba380ac7b5cc8f +56617676a0a6111e910acb8e9fd9ef3e55178d5d +7b66d48661db2cf452f7a78f033c18fc31dc9e96 +5c45bc7e7127b0ccccf2572f6b79c24ca6a88a51 +cfd60c224bb4d14e9539fe993f7cc1e64e4fa5b1 +52bd56e2d935b18dd43ecf8882c5c0c6999b9b7a +2bece31f7e0cffaac62678b98c4c5de1a1b685f1 +8a4d3635bd1a5ee57fc73fed5b75def266ef6d15 +a6c47e51a08f14001346dd3563e11b0fcc40974c +8f083f3e507b817cd45a46788e6cdef759130729 +57cb7b03270450e5c5ae2e239dfc673263b5323f +d253fa85ad2c098dbfa3f7e40fe1ad055e040558 +fd64d55bca1e336b69cbab2cca173bc7c463fb87 +be5ea7619f14c06171ade12858989d0ef526974d +dbdd0206af5fde5d9716151a2513fc4fe86dadba +4519ba2e2742b29b7335ceee4de7f23a3f386a82 +e4ebcfca9d9cc55186bb3946ecf45dc5ad6c6f2f +e0cac937b8a4af5a59c8463ccdc83c85f02e75e5 +0f584b501af1a1d1b83d494df5182bdc8f0a090c +734ce7e53e6bf4e55bec7e5e5fd95ac1806dad72 +7adfab7deb5266ad2b11a75c4bdf520e5a47a80a +1991a9dbf49c5fc4dd4a01f4110b32683270c758 +fde9f109730db49efba744c17dbf77113928c3ab +67cdb7c7ca2053e891d96914057009ef04fedd0d +e5f53780005de2fbd8186914fd9a6c785f114a29 +b205fa7b461e008240f7def1ea2113596a9fdd35 +54f2bff0b90064bf3a0626a1c1d4e1321823dd10 +133d26abac76c2150dbfa916830503a036e00b9d +47e97a08ef89b9028d0aadc0ba44c65cb8e6ccd1 +c62b45680da1cfacdaf83fea284af73f509e68bf +e871eff417cf4120947f0059c31073679351da73 +c32beb7b15b18c8513ff48590f4be352b98eedb0 +5ae9d518dcca4908e5c044dfcf9e95e402a40347 +e1ce99ae4593e81a9df29e4873bf893c3a27ff5c +60a85a10681898ac32fafd9359bcb4c1889e0587 +c862e7f1f77b435d7362147da5e4072977f11d9b +1e540b7f29dc5f50cf076ec871488e803837cc89 +a3476caef8b981156259aaf9390218d28cb6c540 +788fad65622bc3f9ad1f39a05b28b1b4aca5af2d +a43bc6f3b4d5141cca4e97a2984c20893d7f340e +6ab150e47509c93359de7ef7a522f6d9789cbc4e +d34fa0ddb471314e30baf042b8c8560f350f866e +d13af0215d6bbec20310f5331c5a5fcd4e1a7720 +7d4ed057ec238ba3932f296497061493d93ac907 +7f8db1fbf364cf80d4bf85f3cbc706317aed7d7c +07a99de16c26a547a09661e1cc0dcb5de15b63ae +1f39403361d61d6f63669c35d44f54fafd5947a5 +cac63e943650bbc629cfd1a015cee12241d1fa95 +6554e93357e9119de1b5ffa6a341def2c8412670 +a7ad5ec36a37425e4c721e8bb6087b602314432b +b431d6a2db5e79e0c6753d64dd2913d7ffb3ccf7 +63ea4328757c720dbbe5d68dd59f2984404b7c63 +25b3ed62ebe05b4738993e4971538c45ff43bc22 +1fe279e603981b0b2319c606a1886a2a345ae37d +6278bcadc46fdf5bc23ee1f95f71d0912b58aa12 +161c17beae2c4a98804327139c450ade4861d09b +fce9350201e084c400a2ad1b8f44e82007a68ae8 +8ef1c8c10bc6f465eaf1fb031192ca8832dc6fe9 +ca290fdfdbaca08d689d4bc6424cd3adc2d94b83 +b14a748afd708a96baf33f3bdfa0a68a68404cc3 +b355ee59e65e442d5d47e09c4d1a4adbc3eab92a +5a44b2286404537b12b75067303baadeaf58cf6b +042e35c25a23c636342a62904359adf42ee5fa80 +9fcbea49eb08cfdc9252588acaa9e2bb6505761d +df110888a94f9f1d0d3e57dc36d601ff38713d99 +b44dab64e956bcdd6719b085ff97d30044c80f1a +257c3ba27c91ff2961b4b7a8a0974b489ed2df27 +bf1a2e0c49adf023c39b2dc14819faa56e1e6524 +5b37a60dffb97b6bba73fbd61fced418833cd39b +4837d25331e13ff240a939e1b9c867276539214f +b643568f87e0f8af6af7734b750800c4ec69273f +442d5ee582b8bc65e139d9b878fb9a25afd58fb4 +8167eb5d4327454889a642631e462957b0ac6f23 +4fb17f89f0a27586f08ef8a98b83ce4a4b35613f +9c5a4af7870ca4d5f929b581fce0e1537bb4cbe0 +36adad535a80c99e358a13526d86ddfed8ed7c1a +371248997c7188ef9754449dd5f3850fbb6dbc1d +68b63867410c0e3627d65c94c229c1d65dc7b9a3 +09f79d3b0b6d7d20291816be7f75726711112ab6 +d9960959420c70534ccc6073a5e2779003d95834 +9335d7ace2c0a5149049fa742921d2fc8c8933ed +0abbddf2c16dc4e41145cf55dcaccd868e141f91 +58011c9babf5583e5f3f433f1f3ab931d11cfaed +d946a78e9ebda75f655607fe1ee79c8e1e86192f +d2bcb13aaf3437f9dd0ac959b573e6e835374500 +7d78326f226227a0d70c2ff8b922c2a85288ff2e +b8168bcdb73b652d11db9336f988cce5990bc833 +21a289e3406d697b9a6ad3c3d534c7c52049d02e +f53346b3c0802251d69a47ccb485a4cd1a028480 +c840c04109090cebca49e3bd238dc76f42c78033 +460b06fddd834c2b5a577aedecdb55a308b4fa1e +05bdc6bf8c3f02093277f944347133c3cf747040 +3c3b072983bf9e438ce6e4c0d6138262dc9bb998 +e39871bea6fb4e18b480b2a7d63a653bdf391b66 +fb81b20a2a954bb3a11964944aac1f9dfa9698e3 +2677974df51d481c4cab68a37f64354202a61ba7 +5b03e377ea9672b2493e469bc80bcc8cca23fa03 +9a08799cc14ddee16307a4074eb99e81161d98b1 +4da2022083388dec61b6d17bd955fd4989a73117 +5ab460b0f72ac9b12fc843c8d51b21c8749c2d9a +3e232422ceff6f5df0760f82242fd009939d4732 +eae0620ab4fa01e71c59e25562cad00a8f0ef394 +3056d58984623068272ecfe6a675941e13918369 +1d5905d4924f318070c590334da1321d9679a703 +69ef69bdb32cb9608e8a83e0fe93061ab19445fd +2550a27f3f90f2ccc25bb6d1db039c5e5e4317b7 +d71e2498ccd66f8e6f27ec47a78edfd19ada67a9 +d1cbd58629769474c66c4fd1218c02a7f0108bd1 +6f63b646a54e4fd99dc829f5c59e9cef765a7d90 +eb971dfbce994b1d5059c50cba8075b0d7b5a704 +b49b722fb3362d92a660383d05188e2ea6cd2c47 +a406567b826e1556d3c9fdebc4d8f5251431accd +ef237e681704f38a5bd4bcd9d1fd56eb99e8b718 +15bf15308b7b914bc06d36a7219149e53b34882c +0284399fcc478d4f94eef5940cbef172dedbd0b7 +e0b032f0a76945a39144744b715be6574b1f64c2 +f040464bd0687d9fa3d5cefab95584a564973d9f +73ffa728648ac4b2e0dedb0f62a09699434e5d0e +6f2d810709155bf8b085c23de5f128ce3daef428 +86ccedca76193425f1dbc0ee5fa2400867351ca5 +fd2de60a6813877298ef9f84edf48ce3cdef51d6 +15711b4a1e3dda8256101f826fecb7c018d1c825 +d871755ffff5425b343d8bde03345cd5863b6cb6 +2cf2eeba7b6c38b2f69bec30f5a6f8f4206a9ac1 +ae711b2c3740b25271c6e2f6e052147a59a6f02e +8e7d8848bbf34dad445e513770e144e22ac2181f +be375c3174303f7fd178ce0db0197ec9531e7a2b +0bd59a38e0008e62a957a7e5e37ada9fbedbe32e +43a95ebdbfae7ce5e776e0b3547438a39333aca1 +bbdba347dd84b910d13b0b10d60c939fbeef9d39 +0a4b1f129d141eff16386a7f50d30aa861305620 +0368d941fc4cb318a31507f6cfa8372c6c1f11b6 +2ca850e9729d1c09889ca5bb15fc116a13d4b5c3 +ca4cb5862bbb9608c144ec8708ecef6d7dd4b873 +f75d04f53d0fce8987742753f7634fafb71094c6 +e46f410405c31d0843e654b945e66f864a20e42b +e0cce19c892925132c82c2f1ad81477b5d08ff0b +8e3d68bd95c27a50c6cd02fad9352373b3fd7246 +5e848e99955fbb4ec297854d88aca8b925e22cd0 +8e0d39be69d2940633745ed970e03dd6218a5eb3 +efcc936fe9e6129defee9358903c4db313f4b780 +976055fb24b3079ea56d0e5eb2507a812a4f063c +47bd2bc5172cd9224d266afaceea785772973baf +bbe71c36d810e0ee70d7486c035ee0cd8b27fd0b +cd1890db1bc46df64fdf02eba150c0d195b93b4c +679e4d3837778ebdbcbfcfdd84e9b3dec68ae4b3 +43c80c79f53ab43bcbd3c70cc0d890412ab1b345 +131855a69b35df1b0910cec9e8411f8fec240189 +f9cb18c98af61685ac34e65c30efe8a7d9a33848 +edc757058f61ac774a8e1e12955c470037fb7bf7 +40f80fe783b90fd64c1b248646a9f14c5b25183c +1f4b244806e2518c805d5782a84a5849bf7f136a +b7e7b76aa9830a74f16bfbf992e0d5a2ef474170 +8551960ec5f098a4f4d4cc064d1765e8e6772aa4 +f5c7fb2141f5a9a0484557064d2f48b62a72735b +155a44113dd14630d2b5e230cbc76e3ad7df6bc4 +ca3113e3ee36e73873a499ee6207accc88af0629 +f95e804087830b0f9f9e64277dd6c5196a0237ea +dea6ff22e709c971f120bc3f8b962363e1bf26fd +845e3b0070e97ee8c805d27c19ce99022573f6a3 +da77608ca01951ed15f6b81921bc95e993be5bb6 +d0763e4b3f350575e5ec1a76ffc5a6d036d769a5 +bd904b4532a63c1d7d850058aa33f9d9c921033e +f55eb4c26ed71e6415243b95d48db479a0597324 +0af1cd007a9fc76d87ab94f202bcfc3a9afbb787 +d594b7c6326adb0539b7318fa3b9ba4230c69991 +e364cbac30c0259c910041f958ed5c2189a3577b +500be5e425935c76bf87f5edb8c3fb65538fecc8 +fafb3acfe68ac4ec87ead21ffb8648225b21d1fd +37662cbdafc9a71690c341fe8ed4b7ccd430429e +2b00739491c584c2be0a3c54cc19f118dacba6de +0b03073a5742fa2d45172febaecc0e47840db8af +30d48df9b68163bed0815c7b62f32e606031324c +f92307ee6f485353bd6ba9f9ef395fa2340a3fb4 +caf4265c45a13d2f7d15226c71c62e4660c48248 +7b462084919b9e1db70417707a8fb785a43e2067 +0e151ddd2f046793ff1ba4ed0e1d2c031f53783f +59e6d3c78cbfbe94dc65f0ff523546873e34fd25 +d3f108bead61024a4a631371ef12286129625b0d +ed70b8354692b68b4fd42f1aabb91d53c4d4c324 +e515b0f7d31893b068541d0bf0b5cd4a4dac057d +aa98b2122466afd27d0a9e0c70f282be56761e13 +032a990935cc1769eadb8422ec5776253b643e30 +64609804acb5914b509851714e7c651128ab2c15 +47b837abd56108db2124bf7a6086ec5deac5830f +828f89f64391f9499a131717ef48384242bbc7fd +496d0e0add9ca578a9e3209be1a96a78292a67a3 +38eca61281c5d787cd0e2ab040d454b559039666 +667c0618ea2b7109b7063041ae4dd718c85067eb +d11a12307d87a3c04073e87404b6e4555d2df921 +a561ff0d076adf82f939158b07ccabfc8700ffdb +8fbbc916d909c2b00f48e2cdcbf51976198015b2 +85bb67563172ac0c3340eb3feebaafbe347eb40d +4e198f792afa95edb2a55d9b287c2cc7bb499fa1 +18b42acc4c494a554513c91791de48c875583490 +414f362fe87453e94d7b9b861932d826d3dc693c +beea9c7dc1d9eb2e970bcf64ae9f95b350da8508 +3b4421830e121ac0a8d3c0419dfc3dfc73ba5b5e +54018a72e3f6b193e8fc24cd1140c1bec20cee39 +c15fbcfc07db9f3c93cea58d61e6e4138ad14ab5 +ad6536d89a6e44184a01c8757a0739662398e224 +9869177322e7acced78073e23d11746fea136d79 +f57a07d3f2b0f8e43611031bb861fa0f936bc65e +4890006c2033aaf2a22c7e1cfec035c3d6a6b0c5 +a7e24cd38d6d83fd9f9c1f757e30afceee989542 +ece5445fe303bd6dec379c700e51a20f6907ea4d +7139fa93805a085b08e23c17d867c2ac8b14d7f2 +ed613ae198f098e427ccebc1494e321fc3f5d590 +3cc26ca51d51bda6eaf02dd18d126b82d1f8251b +fe638266c42c704c1eb4866a38d0c56164a11b74 +aa78bec2242a877e3656a211904ed1cba3b8106e +82d43b0fbe8d0b1a6ab4a872db6c5746c7c73a05 +b7e52f3c378dec4e0e05cba7df85edbbeee442f7 +698670a36233aaa93d45e824de736182dd9d894b +178ffa6947290e9fa8fa0398568178fd010db71b +2f4a9a0422d6a9ec726bc937cdc9dee3ff4c8a68 +6f489b6e205d82b96448a43068a2ee02e1840acc +b1b2b0cc90712ef1a399c8a668eef52d0a500546 +ba160026ebaaeefaa717c6734c799efbda94201e +fc7bdf99eb5a7e94c10f1fcce9ecc203ea6e1c81 +98cb30738ce6aeb24fe1b6cf4468a2b6fb6cadda +91ad298a1dac5551f62b296980f16f39d1684401 +0ec7ee885a7bb05d782652d4cf7a8993aaf613aa +ac92c622d613d0bfa6d1e04d631f4e929383afd0 +65628345ec92dc55aca858e7b645d32ec81d3e6e +81bef11ebe58987ba694e3c613ef4ad1623093a7 +12b8a8610123c3ab4482011773e6eefa4681fa57 +04965c0a15abded3dd29150b03b580bda11e62ba +423e69e2b0519a16944decda74d11ecbcf5e1ce9 +bc39619d8aaa3c4964f3548c2e28b10d718d98b2 +6981b8da8a769ca57b9d657a64aac1e9aa2d35bb +c5b5fcbc0dcba6c13cc77a5110ae40829bfdd66a +30a1e1dc1b9c35b600d1c2968a7da210f0bc1a3f +0652ccb29ae17a29cb642e184cbbc3791530bcb3 +a913fc5e5633fd0a6037ff7d40f831f66ac83483 +68a7fafcbf055b92a1464819ac393725a7b5efa4 +cd1184c753ec41fbf88d2688df3d29b79231c857 +16c1f154ed36f48c7ba8e264dfce5af71d6e1ea1 +aa8145bf9bf8114c9528c309f573eb44d7450d3a +5cfe7c6bf6eb9baaeb1258d3ba09fd06724615d4 +3dced74f740952c8e5f8d9a3f44cd5ae8c8b8fcc +434caf4e0832c798a5a46e949aa04954b79c0d74 +9c9a1935d2c07c4d1ced89640326cfdd2a5b38a8 +1de2fc199e9a2cc64808b28c3ab136b376bc8849 +53cb2e18852c90d2f572a0c8065c5ec0e491af5d +80f6790d17bdbfbe6100405e4ca282231bc129ec +bd630343acda3b8254825893d43bf540c25ff65b +dcbe57e48939c945ad5a30b541aec050acb4cf34 +eb1bfd41af5ac50dbb1e7f8b617243bd9ee1eff7 +d98ca8b2e07ac1d67499d5a987ff35a0b68ce453 +11f317b0d235365fe466669b193c300938a9a0a7 +b0f55b1709346729aeea7adce0da1c1bcb218a27 +2744537a0fd616479a6f22b9adae6ae8cda8896d +98ce92ee23af518cb983dad79b7e5332217f1db2 +ef8e28bdeae9bd1378b29848c4b4607a40443ca6 +50e064e3979e39384e5ebbfca8ac0407723e59bb +d86af34d5b15a0904549fadcb1eafcbb043b0d6d +58c4d797e8a33222fe9599f36b2d066116d09f2f +bf275d3d18154c19c8838fdea574de696e67620e +7089d0b49dec804ede626129460c0560fff8f5ad +4a962febc4362f259d4f48528917f29e0f2ec997 +6f5c55119bc985b8801288c8c26cc9611b39f010 +5a327575d2ad37e56a10f097046dde853e6aa2cd +db125de3a6a5c0ca6c4663e947920f7129ed7c18 +0aedc6bc13c891cef40fb655d4187473ab737279 +facd5540dedc301a2594ac024863496696d499bc +8e88327fc4811bad3b220b28ba44321b707881ef +297924142683e37c0451597f81051df85cbd1d2c +f87a6f254359f4330c5de5b96c477ca38fc95ea9 +254993dac988e11231b1195146af41208916c690 +1c42d0f0dbc82cdd6bf922991bb573acd3275025 +b1c19d59ad0ab844f5174d847705d088f774a83a +a4ab98c6bfe2f453e406192980c6a16fc760085e +f44027b2b3d40d50f64a2009f9676dc2f9213f54 +2494aa2253aae1674e536ec007d4da8b8fa8359c +8df626a56640082f633dbc0edb32d1a3a087e451 +256b47cd5cfb1e1de06dee97293f2d1f2be5fd56 +d0a04fac342eb0c67f8e5bddaa5a4f97f904c765 +4d3ad85a319f527183ea4ccaff4fbac95c48e4a0 +de6025ae924a8a657bc9477e71c1b183131f7b49 +97daa03d4ed01ccf137d3c5c94b0d1660955f5e2 +4e2316b741ea9cceb84d2b18c3a914d5e1d0a2af +50de82d8f7e5e3cdcc98f3f0773b0b2ab6578253 +bce847a7f327bb10c4e8fb49a2e0fe760fed5714 +ff64cf4c6ceb51aa3fbd8310f9510cc3f3f16054 +f091d5439a0dd78b52959aa2beec5a7a11047c87 +c68f439b7c87d22e6a9f919d33bec571b542d878 +35e95a468e6d59278def89608a323239a7c2a31e +9e00415d17b4478ccfca4278d85001153360ad8c +c0428bdd9987d5b1457abd101bf0e60970fb532f +18c85efc7837fcd4447d32e6543e8fd96c18f872 +04551e68c319e66b32881395b72c712b3d895faa +64aa0443dae19d8d274121985acda48bb5b13b93 +c9537cec5630955f1f4d99f527be3f883fad0d26 +6c5a56fb95f508623acbb3d772148b724b578387 +fc0eb197e2701f931c24d3234ef7930e81c3f3ee +a144be04d0eaa98cab2f9ce2c1f3ff2986db7156 +e2b1a872cc8363b427577df27c351ace34bcf3e6 +58e7ab7380d4bd324ee3663b7fc9042b98038673 +351706f54fde077f05d439ea97bec3de199e09ba +149cc8db6d46890caf8ef634214ff59cbb8f8d97 +fa5768b69093bacfef294e2e869588b31a4c3ecd +a1bf1a8f5a4f56bfd29b40fa60f5418ea42a76e9 +b426368e3c63f6242b10794b98ffacf9a931f9b9 +6c77b1356eca816e566b94a278241041c20470ba +1cefbe3582c247e5d99f6cf517e8099967c8a6ea +5c69740109e85724f539b7e12935961891c65a30 +9810518ccf0a3c47217f6601ab1dea5389951898 +74e23d46532fc6844325cdfc1de340d11882f88e +d5d072bbde1fd07d9d53d5f9758504a4ac99b5f0 +68463d6ee6e7ad3dfce164f2e09d5e68926a4b6c +0760a3be41e252ade9edde0bea93edffaf692344 +0611ee3721e0f1f6d46ecdfe5069fabaea47a272 +1e5d806dfc8d1cbdb2fa8c3c5ca5e2d6e29db365 +3cabe15632c4254333d54a0c2682c67e855d9fe0 +194720840afcba4655dc8c94fddb0f817e0ff356 +48d9c8852d93dff7da345ae92b4fc273282d0fb0 +e7aee25c66a5ca0113acd83746d6312c16978a58 +3ec2e929d7a7b89672898038afc81564fa26aa4a +58d1d761f8164dd59e7afa047d910126169427e5 +9e6876369694fefdffe353005ba07c9aeb3210a4 +3f18ce1042bfa4813c502277727620f5e7c1b5b9 +2e63025a5940b045948f908297697c7f1527ff35 +50a8f64d5971be72c20aff88cec4c3f4d33bfae4 +c050418bc7a706f5ec32e3185aeb12c8dd294604 +996fe73b49d602d0fa1542f34a0a6264179fa155 +89d7985ae6fdecb08b5d7b34c1a81fdba080b2bf +9f5481748584fc6a0206bdb5c4355da87b5875c8 +0cda53bfac6a4e67691cc10e359175babcc0ee72 +9d5cd7527e2aa1a02bc8c40de740919ce7f13b7b +9a6876d2c67a1f2d51b4325580b7d76e079f6f1f +de8005ff7a1a4f65baef21f5945c01934c1752c7 +312ff5d32d9d8e92700ca438a623c9bdfe9f9573 +d73ed59a4039629b3f0e31c1fab4a6b8508d72d0 +270b04ba86d9a7daf626c6d59b23f632268aec60 +da63e706176284b5509ec8d9ce56578e5118075d +8ea7cb6c06ba53a13b5b342bd90222ef58fde5d1 +45e30c1f1c71ae6f1c3954f3c3e3558b534117fa +5c57ce6e79001b4ff444140751fa28f36a206adf +ae377f98078d0aaa53d31ff07844e4159195a6bd +fa7848f24b9383f2b32acda473decf9b8a36e314 +279d11183bfb50566064eb5db08d69198a89f9a6 +4cceef250aab38fa6f08c9427bf3d7ed7be5bd22 +79d28966c37434ca5dbdf46af8b3b6b1918b43cb +ec5cf7def10c51865a598a32cf7567ec50b501a3 +45cf07da481589fbde460575a00863f5e4783e9c +cef0040eb2704f2065135d12a2373b0aa58ff6c7 +4f9bf3f2eec88946bc503b4e7fbcddf6a316d062 +d8683d24cda3bacb42746d6bdcd2b27571bc4134 +be932506129939607372412af984eac65ed8594c +647ced600e8ec3de150f7927d37f4a1366eb467f +9e1fd503480117fbd39db138496735bc3fc7e25f +ab84175ce8e0c77118ad94e09352f2262008df73 +5e75b71198f02b447c5fc1676a659227a882d689 +ffe847e1f105b95a1ee6107bbd3c1098bc6652eb +4eccb54368b420216f1286d273322fe840411025 +f191c46147f1b4b0cd97b4feba3aa63fd1f733b5 +637de03c36c28c6a90b5f8a94f6644348cd5526e +8f55d67011877242670b36a902668394d4aeedd7 +1b6e3e82e8f9b536e313620bf9fb099227977e44 +14b9b31a0d72fbecdf56600719a071257d8ae925 +54f40dac31b93220807b2c3208fb428e642572a7 +e8c5bd44ef6d92bf9df8b1396fc9841ee0e16553 +cbef753dc615fd59dd7da017444c1e3719a0208b +0677a6e7ac8e8ca2e5a55241fbfaf2762265790d +479df35be1bf5d7c3a841910b7905e1645858623 +947c3de4861743223fa83cfd99e8a00ee58e82ef +56afad5bb7b5342e65d2d84fa2a5eb0a8b7c81b7 +8c10c102695d5e6c5e0db10c72210a05dd308982 +d436a04d4636bc92a8a30fa01113c671099cc0f8 +9f1d42fd65f47a62829cb0ed7b98216ffbff5da3 +0e2b63b11e7fe156374074b1c760d23340857f30 +de0ced8b3d36ddd1b36ca0beee51a7ad1b5cb190 +d11e7178fa97742c2afc8502eca023c8cbbeb2f3 +6d3fbf7ccb1ca062f958f7d237081c80f69744b6 +e5a1f108704284670be96a31ec70a48f8d8f65ac +9c798e4a40596f093475d02b12d58657c72b233c +d76857ce9a9d0ec9eb7b8e8a446515a7583e1b3b +f9f2a592724a41b10bce58739b52131d4d674803 +218b5dc556736950e40490d3ee6d550b780094b4 +d5cb083d1aa6fa2699aa38a215ceeb8102040d7c +e08f4873c83e54409690f05672830b220a4acdb7 +05a71547fdce0e0e32b166843f575b427f518e13 +224c8c299c5b520b9c87dd00687a8b103bff431e +07f6073783804eececeed66a025ed5163e319e5a +0616b273d98b6b7a5cf573baa816bc5b4c131b87 +12f2db24512e450f4e87ccb03c965c61f5abfcf7 +adee26fc3c0b5526204a209f60c04932882f1fc2 +1cb36ce34d895767a6dcfe41f017166ec0f9f855 +6377404cad7bb8af9ee34ceeeb78a7dacce95e9f +47d69950b9ceae9ded78bac4562c1599443b1b46 +643e8f217206bc2ddaa7a2cb2c03545b9780d36b +ab3accb0686750fc1b2d8ee28fd058b536bba4bf +794c310c1c1aabaef0464793c977061d6a1f4731 +4d862111c9b8648c4ebd74d9a7794780d1f42851 +c5d4d9ed99a011f5176e59bdd0a6d1742ce8fed8 +dbe85e6b3435574a0ed0a0090aa88fbe52eb2093 +0936b6d135594e94ffb695c91ea1e5ad43a27d23 +715940d21e2ae7e41f06806d4f83072d6624a107 +a3cb1088cc64d3f9794679a78bd753d7b8219f80 +4326bba7874a688a1275dc248c5a610c725ac4bd +a703385d8a8e52ef12eca30dd3228c81689eb8c8 +c868b823c728c8d41260a07b0acab5087fd9044f +01f1643ee2fb042026d155e3dd2558501abcd802 +45c549e21be00401a674066086c74f88358cfb96 +3927415715ca6a162e89b478914156f761086652 +d06836512877077939266d16e82617c6404e7dad +2f27b138d1ee8049279c25eeacfb958d6b8e64ed +98f0c3b29b2d4dd0aeb69b9cedf062a77a15d207 +e08f92f2fb1ee5e565571e29eb60d3982b8ec17c +e5f7318c47698e3fcef72bd25ffcdaf502bb719a +53dc3a8dacf91d92b112b72b698ee5d7309974b9 +5d2279bcc8c1ad8453dbca7e502e5794fa17f555 +c4066c76b6c82a006d10b10a4f00b9d8753c9c4e +fdb3b98e73e17e98e69b5ca27bc579c7eaf2a0a3 +49b54dbd5edc9ab4f8f751c8e9d8297e53c56375 +c147129f11f46921dc0751872a12660c25504942 +18395b3bca008ad13733e6df91acefe6fbd4cd21 +d3bcf7302a51c1e5000fd0f72d4f8ad5f230f909 +c655239b49957384953811ae707b9add4123d7c6 +a448b669940fb9d5cbb99f4b828f7dc6b2d14fcc +b584c9710d5c3ba96adfceeda4487eb58c5d85ba +86480e345f50a132b774033f5c14b4fbccbb7c71 +e2e1b2ad5bcda9faa47ad00bf32aabc403d616d5 +a47114c7556e7e73f6944a26b3ce6e50491cccf7 +03e67583de0a0b3adb0269bde1746bfcee599185 +2d9035d81ce9f7d59722bf9b5b41748efd56c3c1 +8bc45e41acdeda13ac44295f84927374a21229b6 +c6092e45eef3577aa87b8ac4b7e6b39bf07964a3 +67740262f2abe5e9e75cfb32c2a640e88143caf0 +6f70e93f46bdcaf82c0cf52cfae9b61b6205646d +a4131f1a99d8a257787a401aac53818dc9d6f89e +994d54fee264f5a15ecf690448d90a75b5e330a8 +f1941dbd08077b4511604ca4f3ee8622cbc3c4b1 +171194436de640b6570106c6e316506d328640b9 +b55d2513b7ddf5a25bdd2173e1e469bc7ec610e8 +a76a666595787280d2d7707f2609cd87df490b80 +da9cc1f16e9776634987361e94d476efd9825fdb +9dc8b4afa944812a2a47a414b6c4d67f9f52347e +2710171bb91691cd611ef4f2fa10d83305bb0115 +48a36b26deb226baebfa9ad6b108745cb3a5e9a7 +5d8fa0ee9456d9b8db8a423d5babb81a184ba6e8 +1003042311c4c5de6056abef616ea968ff839ae2 +2a9e13c05d8c7c3e21adb348baaae74b52c4029b +89f6fb91d89e33abae20f1e43fe0caa0152e651a +c9804a0f84d3e770fde3414a3a1958bfbc5d63cd +24ac1782cd4c51cf6feea6dcd49bea791d20b246 +b25fc6be2f56569c0d054ca786eb6be7bbfd0b4e +9649c0e835d3d57c3d646950ffe98d888a3d6629 +f9acdc7c243891ea549e2ea9424f10635cdbc61c +1c655721d09d9a5063a0e794f78e7d325c4619d2 +44eca901d337c56cacade83dd20cc99b48dbb15f +7c257e0ca7d95bc0519d052f7366c6e195736acd +5b2fd02ac7e6678724229436b7e38379d061d3a3 +e02469c669e2538c91553ff00af93e8b68a2d4fb +e2ce2868541b5619ace23f0b2039f91523fc4599 +96355028158cf9b5814c4caa614b7857e572a051 +2abf9000b65b20c09e37bd5ec225447b37cc32a4 +2f2e5528011a5fdddfc194da008b591b63e21191 +9815b6dd21a635fbafbc6a737a9b6cf0bdc981a3 +918be8a89d667f17a3956f5cb6c5f9517bf47b13 +1b18252107675b00ce034beddee74fa2a15969d3 +e0256a2c86d9ca20d3474bdeae12a33887270754 +2b366ab561d3baa75daf68ec1fdd12812858e426 +bcb23258538636d5d1668484833411ef17210cb7 +2bcc6e04c2bd89ac2d0a662edd99883810521074 +19f4dabeccb28c609d64055634e10c2a9b2596a1 +4932b2b65a725eb56ef8d40219c061c178496250 +9dd0cd225dbc654cb2e85fde7cc26c751cfc0a66 +4158cdc3c32f0c18910640559c3fc85e738c0533 +4fa80cc2fd942b9fb2bb63d4dd525e8d4da51e27 +7b10b39ada3befb1c397a07cb0aafda07960d3ce +671830a1f0764d26ef2ed99c925a73a2e7399fae +1deace23c02bea665ce3535e6269f89a0a1378e9 +ad3b61c096905f42d3bc83e77268075de54914aa +6fd536dce54a08007ff110d7916e8c379f8013c5 +23f534167393770cc33b81e09266e85dd2e5b05d +80c0652a57712325859a9389d1149a288769257c +a67091a0baf75fe9db27676430e722eed5156bf0 +f8c2fd1a45447d576642b41aab6f71d3576955e1 +82e90f5e923a11843c69c65cfddbd107e2251c02 +68bcce0060bac06a73d78dfe37fa5857c0a947e5 +3e035e7a26e64ddd4600fc383666a4d194f8c103 +a882b7c8b186b1a637a14303c6154040d2ac0463 +f20e44a97e6e4d8c6b8870808d49336a491669ee +0e120fe943db8d6eeca347e66361b966fae2c52f +c2eb8591123a05c6c3bbf3c0439ecbeeec03d23a +0f9f8e5a5a6149d2e888091d338ace360b08da5a +572a0bc4491bd05b07765ab4ba8dfe878ab16b02 +46b7b907968bd74024a23a872d258c4ab1159da8 +117f764eda7e4d2970c436d4eec7f4cab77b42ea +4d8e5c50f5c491a4a4a596dea84dd3cebbda9fde +8bae6ec37fb25cfd49eae64d3f346100316401db +0d8b5cb1a5b1c668cdacbdf71f3dd3c5c4273075 +4c278803e4d9788c2e08e57a4d944e0e45216d18 +ee3711f054b261c98d4820d6bd0096316be52243 +0846ea8577df75ad007ac123068e3e784865b659 +de4e48e37e99901816a96022a590c9435631420f +eca59fababcfc909813dfe68dab5705c7dc2a422 +c0641d5434dd1719206c257b43fe7475b6e11c00 +605b8ffa176e8337f47a131b7fd247d64a9304c3 +3ac1c90c574b87032de4913b7069e56527e9ac1c +8a20a7a574999f13c272aeff2f5cccef17801b6f +4963a1d62d8dcb6d0b3b9c2c27d6b77018294719 +78988d252bb6627608a87b51e08c7b073c047d4d +61fbfcd8b72a590f79247e90305d34a7db7792a1 +e5839e212faab84f05649652c2a767c2e5786845 +1179f748ac0d033d046e7a301a17258f49abb69e +84db5c8b71bce2bc1c86c26b4962c3babb2ff05e +1728a9fdbe6d62d375408f593f0ecba1dd48518a +cd5c1fbc82e4c9b1e484c9d3a52e949441d0e53e +c73c1e2cecbca9e544f8dde26ce0007755cdfb66 +0b371f11a28697670a48f32355ae54718eb02f71 +85726d15f2e2c62a879cfcd11fb1597a76a6892c +7e2b9cc47b641de67119392dc3c0d7dbda14edd2 +aaa58b0061c39acd1bac200a60b8b137841b0001 +9816ef3a8c7f81b2ad4f472fb15c796f0cb38c66 +9aac0c256878c206b2cb14aca9990bcf84d02082 +95e3e78f3026b558af059fa84d98462e1de0b500 +efd7699e848a31ee8111ad8ddb793b69fb0995b3 +63c67785035a7c6f5b6d55bc6178e24580389fda +836622a7330dba6a0da6723988b9e7c88e99df2c +a8ad6f41f3ef887b4ac94d8255a808623fb10d83 +1bebab793b3e4a673112962d6d7cb2fb8b7c5efc +5c1d6659d7e38d3b4a6a7f959270440f6cc50240 +2a73e25c86083f9191528d4a763886ac10516748 +283d1998cbe503e58eddbafd562fa3d4a7136712 +4e9bb9b0a461dd8a9fc9bb0696527da9d4df6e12 +0b67cfd7f959e7413fa6c0f807f4470f120dcda2 +1aa2fa29ef0f06fa7911ff3d5e0e1fcaf4293d01 +fed41f6cbbe1b7c4e267f296b9c826cbc104eb87 +ad49fdc34d6134b7c018d7ba5632fe537bf210d4 +c23aefd1c32208a456e2d1520efc189ba7e64ab8 +24a5c61ae5d81dc9eb49253b6e01a1082dae877e +de2015557d9f940913441be0acd3d56f4dca7625 +a007048f449d3d84fb63ac884353335afaec64b2 +bfd49dcb4c10ad5c2c07ff52d62174a1f3f94f52 +85ff8b8718e4f853b5f037c3c02a2a24d3902eb5 +5db0878296645ef9479c20a80ef9149ef4038977 +247ce34ef0ca21cf63302d3ef7f465b0a941cf78 +f2150d09b5b0f9e32bb30f9cdcd273f6f36c1ab8 +e1c0a6d93cf9c4ab400bd7b45dcb79fb6f37e6c9 +b1fd46c2341f592a5ca7ce0ace524626c5a9fab8 +94258743828143cfc92c8399ce0bad52da08bb0a +41d75a50c552f3fd79d2f1148a7ee91a3aa9721c +07af0f058e33d3603f14d64f77e23bc8db26f112 +34b18e6530ed832f0d26a62cf5b2d15576543de4 +0b3e2ca9b8a7badc3f26d2e885fe9041eca99395 +5af42e1dfff690931957622d428d96017c843678 +d1baaa60a13c369aae738dae53defa3785a6c711 +f60b77e2c9527bba80017f66082f24cf256eb3da +6a2a7d0dae9b2900dfe44a0c682fa9ecbb130409 +1d9a6995ffa7fc9029cb8c3230f6dda8849b4e6d +23a0964044daac7200d93511a40be0fa648924bb +ad62ab3d638ed52b0d0138f2d78d7bc3dfa2bf62 +38f72f576c0f005b1f8712fc9770f328e76779f7 +047cc1dff6f7ab024a7a01b0f348ba4d56587ae1 +e5cbf7b0aa68ab41e82218de1284f80f074992ea +66a221ab71a731ad4c2c478bbeacde4b7fa2ea0f +bdeee0a178760bfc86e1fd7d4594cdc40c9be300 +96225e72ad49e26b62492933742edabf265d8cb8 +7fbf047718c84aece38b1fe8c4d187c411742700 +fb76fbcf4a377bc3b0048f3575ae7727b61d3c1e +68af9ca915026ba27c06fb09177d9724690d2439 +eb9874ae4fc5eb458a3c90a33aed04007a93408a +73f57bb7982e0f63a9e49d73bb722fb77b129a00 +bea5e7081049bdd8417ef8a95105b3f07eb1698c +b232eb6fb86204143afb560c8bf19b32cf7634cf +3509915cf54053abce78de68f29066db39d53a64 +7b29c231b754dd692f3fec1fcb2a84d820379ebd +ed10b9e64b7146fd266c8f081308aae5231ba809 +53af246217a52b43a09163a28b57a343d3fc9754 +1b66d8bf25e0e6311d54549167448f93a30853fa +0b9c392cdcb2fd94d0758717a979675e2d6fa658 +fd75eef7ffb81af96f07fe03f3b7074a7a2352ef +8c655c4e6f11973f7087c9a46983eaaf9dfcbef3 +14f474b84b249d35cc16c7dad7bce3780f724002 +0bcb0fa1f81b086b45f38cf0a277aaf58b9f4467 +aaad0d9bbff20bb2660311bb6f8f16fdec905d6e +24211c071be5a4ac13bf10aaeb9f72ba7a02bba1 +2bcfd1491f904b10b78e4c41b4abb29d85b90020 +c99df5ab7d1b0753b1f73233f39bcb0813b5de0f +11ede745157b5f3754b1b3290421a93d51478b93 +df60e035cd72e5aaafdebcbf1b6d48bddc5df3d0 +dbd43fbcc41e46b96cd8a2b3b4743155d7f33fab +241c9246e49d899bbab6932aad4a6caa48a53c12 +fc73a0202dcbcda51aa92101b7d851c45db4a4c4 +b6f6eb90d7907f73a65931ea291b423cfa30b64a +a089a2a76fab50019a25001a56d48023f8094b81 +040f5b27354a7989541165b6f17398758bec1795 +54db5cd8d4d7fff2e9265618f9f41d04deceee84 +ec52671def2732383f387e55a3bf5152046db869 +9ab25d0dea129411a42380009a2aae3048012075 +5f3530b0f9b0e597467c1e625b9d4987833c9e1b +339d28495dde0cc63849a55b96ced816c7d9d032 +5a489d2090c5af754a1e2e185248d19513efc4cc +783713e1cd64935240f687cfd3944dc38e33b57a +b933f419492ea954707d6745ab1a43c3f3789460 +afa9ef4682a3370c473d6c652743652928bff1f1 +62bc6e7e88b052400a732f1bff451eb922651d12 +671c30116bdf0f14dcda204bea96899e4699f15c +aee9d32650a17ed3ef812505d505937f7b02be3e +30e7267f13f12cb50f604503989b7f30455c4b0f +479cb04472777a41d470d9382bd266b13237afd6 +6d79def0face19bc275cb8d32608e451bf0b39e4 +d524e6ea2e94554abe4423732470bc962aa0fc37 +384b5dd23fa9cf60a577aa8c1a22ca862077aa5a +99e97484b13c5f85f6547b7374472acd560f5f78 +1b7e470883353ee61a71e931445a2ee68cf4548b +14bce4218302d486d9abb784c7a61414b21b285a +f106b9d364edbf597f189d231470bec201d3b0b6 +3f3ca9cc85da8dc2dfb3780586daeed934c9b623 +f816b693c07971be77effe27f38aa6be259c2b8f +966a1bd7031cfd4aa1c67425d8513666e37d0e36 +5a375adb469c5df0a82a3cc5d5782439605fbd6e +1f90da8d5178d78dc2a284915c38be132467caaa +cff35afeec7e533b726a28964820dfaadedfb19e +81d1fcdacdfe299157afd9edca619acd05ba8e28 +e5f8d91923cea42077a263a187f24702c6efe6c7 +e1964767766938bb5f381f72543b01d4dc5fcc20 +44bafa51620fa90ed7dd32bed35ff345649ea47d +3220d09b4bd74b1cca8b4182dcc6e46d3a8a2b69 +833b04042608a2aea3e6a2b7a2b648bda6990817 +359e18606c5ad84e9b846b3901adbd8b186cc595 +122b48d8bd42c650d6d406012cf76faf7995dab5 +2d22d3ca54882695e0fd22e6c8359d536cd940db +a7afe8d88ceba1d6bacb0aa13bd53f613af80bc7 +00429af86eff3b9b48f7585d2d0357c73929641d +aa71e4bf941c15481345419187667109c47d464d +d6d9f569e76ea6aa9a5001be190eac1ad4f4cfde +6af1a6fb5415be283ac066e2bae11e38781bb966 +2622966cbf4fb998f4559dd5c9af968b9ada7904 +7af07818842d22a3592293752df519c02458a330 +2168ea462d734d1ddf927f22d4b87f666e5e528d +1f028537fcf274a940c09be24459da7f3f66dfd3 +f4cedf091cdb5d5594bf0579b2b07e411742c6e9 +32adcafafb24995980b957abac736e65766bfdad +f43013665e53aa998c82574d662a9b6c16b585fb +9f57aa2b8fca2596264fb705176e468f96ca6afd +28a85dc6f2cff10844bd1dd0ad0874965d5e6007 +8b06f68d68002c39b89af790f1e0cdbd9b12c36f +885d7c1e41c22d0841c0a2b10db0662fd5619f35 +e1641da12fd73ec44d0927f8d2eceacefcd05477 +da7ee6004d27071890e22dcb0960415646503d0f +7487d6368272fa82b638c7ca2efce56d77451f5f +3ff804654ad7efe3f06409429b9907269ae29e90 +52e45aa2eb85fe39d5895f7c9b7b55b43a0bc038 +059835254490a9dfe17d3e4600d459ecbb46a49c +f5f07c844f29f50ade7fdcd744df2db4ae028e8f +3015c09cdfd816546f02e3c72dcc87b33d76183f +cbf5a80e3a10bb1bd69a657fff47e08ac44076e6 +689fddf3464fffc82a472487fbbd8a968745154c +2fa2fbbecbfe8073637a0e89c96e84b3f512dd50 +d747cf976b0d02130cd84377e45e7d4565b8b977 +79217ddce0ada9df57b969f55cd5543a05ae44e9 +83aa1a6678c11a628e826186e6f7a8cdee6a74c8 +bacb89507dddae9799b854514ec58a373cc8d18d +e43cc67a13574c28f1f47ecd110f7e753d451a4c +d99be7fc55f6605e3df840dca460d1a0a19ef732 +6ad7fd5433f0a86a19d448076d86c6128ffb222b +3872f892f693139644fd1b263ade87272746f00e +faa579abbfcc76548b7b4fb6c1e5ae363789abcd +8e6654fe9772b35ea404cc13f54218ee6a5abd61 +8eac08a1659e10ef844a197ad8d371a5bcba528f +26ca4bb1cbd817a77c09ee9d13ae94be46959605 +c3d87b077cff057441ba394c31651547688749cc +827777e3daa9cb45e07625d881a9aea33ed24e3c +8b168513c59c739c011af2f0c09ee5cbdb1b1a7b +2c536c21bf168fe1aebd5ab1c8e139970d2819be +85ca45762f82b12a00e6457454791e1cad9896e9 +05609159a19b91c3a9118877f863cc4f57836673 +a4997757f99b79b5e8687a2614fc2f71de418af0 +d078dc1e4cf1bad18315be7fa6a3fcc68a20d64d +276c402bb28b161d6c73f0ce272369347e9736cf +cc66155f3f2023c3c66b3f27682a1534954d37d8 +0b49a2f9f816e9690f8b59e5f6b54d4deaf695ae +07d253f3018984546453dff2ac8adc9b6504f3e8 +6d9ab5da7bf2d7a84dd0d06b16a0e654946de80b +36a6d4337a5a4450732610e7aa27b946a4bcd93f +d616796818f0a729bd72f6620ae9ce6d4bcdaaee +9e56fc6b65ecacc853e77dc607fd1947068ee5ac +df711a02a2f20f6734205cde678e9f0aa6904709 +fa422c483e51b35e828ce724e320b3d4cc1b9749 +78c01deebb6c477d0374695e89a32e753609540a +724c7258a2c35e3135d6b7d3531784e4630e5f74 +7a7abfe73efe1e36b388b65501b16fc7b5016e01 +5d4823d44496c69f9ea85cefed0b66f3af988528 +47794ec44b2bf56090b6d0b922053653f1a18f5c +950e8bbd9de9c0cdbac0ff9bd69fcb64268794c1 +a8abf040dcb86fc4932d6d1a6a3d5ae69719dda6 +ff1c6bcc1b64c1235da9984fc66cab14e63ec526 +130e6b518988b330ecec2dc199c96378803dc130 +f1c51199e3b7841a02060298dff7244896e0bc77 +132eba05a80c380872c9f0b0f29dadcc6a7ff951 +c0f996b85a11a680c0f95a680dfe08cba62dfc78 +aecf51fca000eac6e53005bed74c7c975bb02ec4 +f1ddaae4cd7ecb9de0b51782d017eee5dbca257a +860718af6151ad972ffc7b77021789c49a883d8c +cc14e7371abb36343c5b2cdb79ae93737364403f +28b770af7c5cfdc57c44d6ab6935904067f066ef +bea9fd27b9ffe76d6a3ab8b535e9604d5c6df304 +82a72afc15b63f6c27fb1249ad8d2d9f85cd990e +d2662badddfd10a505f3e776720ec9cf6ed575c5 +664a253e593580a61e6da6d60d1051342205a664 +2b34f8cefbf2c45f1e49b4f470797718410a04d2 +e3fc8cf5ba208834951c21b96d76b3aa88a0c244 +157d0fa5978103864e7b183267464d9306fe50f6 +e03610ff9dc39cb35a236c20bb36773d0681968c +981df59ebce85fbce5642a74e3c273891b25411b +7e8fd0cd650361318a694cf7f9cf6bda5ed3b1b5 +096c3a35fb23f658962803814aaeb1912d5e4d25 +7b1e7cade3a14c25f1712b5b9d543b4720ee1752 +f63fcaa64cab6f17ac45e57055fccce225440505 +0d091ac5bc71b18521a32e8ade3e00367e5aea10 +06e0d152d36736b8355ea53b5da518a254078d24 +222c29951c105959016648d68e52bc06cbd3bc1c +927e33577124cc69d07dbe642cee909ccf7ccb03 +76f85bd0901be8986ef172caf0863b101c1a6123 +66672a0ca6462851e545c598977ab44827dc60ca +6c57cbefbf4642deb06ffd48b7600242c7bca86d +5cc938a2603d7ddc20c83b488f6bc7be8bafa0b8 +828bb79e31942a219dd022e9083dd20eb09f3d0d +0e5f5e2d0304b1fde6b172b430ba8808767ab575 +2f936c94172e7717e12656eef320a619c503fba0 +88204a1fbdac059fb060336766e5dfb5e08da667 +068b17d0d05146e6db606baba35193ab3cd20159 +6fcea75eca2796eb153caaec5d4de9c4abe7fa0e +344addb6f8240a2bde845ee43d8020da8f7ed2d7 +3186f70c2b53949b0629bdc2b1ddf04c0d1021d3 +af4a6d169e39f9b7a7cda44aa9cfa023881c9323 +264b078c6df792db42dcd69021690f507d1d2270 +3bd6a390a1c7888141975a48ed0a6689c6e2d371 +5a5c3fac4777990c1f377384aa1be0a60f14e0c7 +61095bd7fd962aa623b78f3756ea9ddb17fdc328 +21f59eb19e7cc76d83bac58bb233eb47218ac45d +97ddd0336729a2a53d0b5f9cfd2334f73421ed24 +249829457cddf0f1a9d3651e67721a32ac404e22 +568d7c18f99c4ff38a592dbe01cec2a7e9a9382d +1c481f7cd58d81858ee635c91a29bab245e0ff18 +4e64d9d4d5188511923f571589a589ddbcdfae12 +f45d6576976af58f8dbaafbc672a16a41ec92443 +2fad73a0de6431fd239732606d03dcedc6ab1920 +34eccc91f0baa2f6511002bcc60e30704b1f8b82 +d71a6860811645be4880941f7fe26ec440dff47e +15087243a17c0a05d7437ce85f1b802351e889af +f7508232ec452da12f85bcb34e01207a11eb4d2c +54d38277b0c75d2c17874edd2b2c5a250a2f0a29 +0af153efe4f3d98528f126fe34b021588e2107a4 +8727b83f4184b94dacb49768cb9abdc45e63b2d8 +fddb92e76a0e170c3009a932c5218bab041d9b45 +17ba30e253535834cf3ccf5c89ee0984355e5d56 +32a66c598820a44483a239536bb5a49fe00045b1 +31649b709dfe8b3a58a6d03769fe0bcbc2299aeb +d012ce536e82ecfba4c4917aa1ffee2fe65d03b5 +3d39c69b6c9523a23d4537273f7b9b58073a74af +d025c474f9a990f28cc1e460be3ea1a0e4db5b5e +42e1c6ff2ece64619fca26ddb740f2f25f9ccd9e +a1dea8ebb9e2a1d6f1e15724d69b8abc07eaf97f +093d073a9b476ff69d916cc08f2852f59d06a880 +722ccd33662ff742736d2005c0558c51f93fe506 +76f2adff7bd26cef8384e6f1b20b048bfbe8c57f +335a058b9941fed98348435d0962306bf8346ebe +6b737bca08af7b155c4d283a66f5f608b0ea40dd +27b93c8defb124e40077183f445316eab8513ae9 +a7ad71511c33428ec3ea097fb65d434cb22d4752 +28bff1c8a96c3a39db2652bc6a69e986d0c77f71 +b4c5a435b10092c8bd0655e36f0e2914d957dd75 +ca3169157135f70be56d1757067a80a183dd0de7 +a4d00badfd9930bc2484d6c0df4b41dd9c152d78 +5d3e7beffca75a153289036fb98c2b49b0c6e26a +f70af7226bf6b9ada686a70afb899eb879dc24aa +9ee7169df55852d0cbb9c0e1a42e597e083a190d +a53a5c9ade8c49299819246a430d6fb1943093cd +b2ee04b7df92e1280e4859d533baeca498e5433c +fed84f05c3f310951d8d93ee25c9d2f1bc1fe2ad +319f9e395e64ad2af0eb1eb3118e337b86f12618 +65658423850a3edab6e25577f7aa94ff42eebcc2 +c9799f7f40bee2ca46ff2c036e97d7730a505c2a +2c82600de5c34f1ed6d05856ebe6579ab90ef3ce +c6dd7baa055fa3b03feadbdded30d3005106e765 +b75b35302870ca1269c9694b12df5aec053adcdf +8c5a4fa55cd7170aa7815fffed70f75f8d9247ab +21c25195090a9ebb4a6419d58675d2c1ddb1a19f +7b28d48c20d08f570a05b3f1a58865cf90c4472c +0813f33b6eafe88a8af264d580a3de978fcefb5a +79528439eb4029d3a9e93c55b1221598a496e063 +923b1e75e9a96644b84cc25f9c4b31772829a644 +e92ab0b843916354d70b2fb02d1a9afaf696859c +e9b50cf7a07a44ce077db9ea22cb6d4bd5121330 +eb1b15e96fa22207fee73c7291046c79e7c01b9e +bd0b00e3933d6ddd04a3e39514bc6bbb244654f1 +6e6f9c070087fb3a4f1c7da9a708feb2f9a94a7a +0df111354c7093399301307abdc84ec024f96f57 +1b24ee66de08656aff4fa5f57ad831573dff5b76 +e17cc9f5674de44dc8380c048c36933cad1a2cb4 +bb8c2be64eb080d29c312e7dd1cfea3cd8aa7969 +0244d78f6eb52f099778e410ff91482bee236e29 +7fd6dfbfd17c7eefc49884ac7741097f047be1b2 +43ae598226735e98162dfcba05e756c4192c1349 +279a9d83a2a369fd606b1b5889fc2e8822f7fdaf +9ffe4581fd464104433b0f83e3219e0f99422941 +b697209c983421c365f6da410d9779f345bcccd5 +fec411445c0be0d929b28412d09d2e59ef459871 +4f73bf531632ecb69a63566362535cf118427119 +8924df03ddc1128865627b8c53bc9a9e126cc263 +d02c0613ffa50f7039d77d45a83c57f0437e5333 +a100726a64ace0e816fb9377fbc5b9e3c38b375d +b226472cafab4e9fad102e20d37c9a42c3be233b +ca4799fd522c13e55600bf09ace7ce3c6e9dbb1a diff --git a/splunk_eventgen/samples/states b/splunk_eventgen/samples/states new file mode 100644 index 00000000..ad6632e6 --- /dev/null +++ b/splunk_eventgen/samples/states @@ -0,0 +1,50 @@ +Alabama +Alaska +Arizona +Arkansas +California +Colorado +Connecticut +Delaware +Florida +Georgia +Hawaii +Idaho +Illinois +Indiana +Iowa +Kansas +Kentucky +Louisiana +Maine +Maryland +Massachusetts +Michigan +Minnesota +Mississippi +Missouri +Montana +Nebraska +Nevada +New Hampshire +New Jersey +New Mexico +New York +North Carolina +North Dakota +Ohio +Oklahoma +Oregon +Pennsylvania +Rhode Island +South Carolina +South Dakota +Tennessee +Texas +Utah +Vermont +Virginia +Washington +West Virginia +Wisconsin +Wyoming \ No newline at end of file diff --git a/splunk_eventgen/samples/states.abbrev b/splunk_eventgen/samples/states.abbrev new file mode 100644 index 00000000..a20d9ce6 --- /dev/null +++ b/splunk_eventgen/samples/states.abbrev @@ -0,0 +1,59 @@ +AK +AL +AR +AS +AZ +CA +CO +CT +DC +DE +FL +FM +GA +GU +HI +IA +ID +IL +IN +KS +KY +LA +MA +MD +ME +MH +MI +MN +MO +MP +MS +MT +NC +ND +NE +NH +NJ +NM +NV +NY +OH +OK +OR +PA +PR +PW +RI +SC +SD +TN +TX +UT +VA +VI +VT +WA +WI +WV +WY \ No newline at end of file diff --git a/splunk_eventgen/samples/street.types b/splunk_eventgen/samples/street.types new file mode 100644 index 00000000..6b86ed6b --- /dev/null +++ b/splunk_eventgen/samples/street.types @@ -0,0 +1,59 @@ +Ally +App +Arc +Ave +Blvd +Brow +Bypa +Cway +Cct +Circ +Cl +Cpse +Cnr +Cove +Ct +Cres +Dr +End +Esp +Flat +Fway +Frnt +Gdns +Gld +Glen +Grn +Gr +Hts +Hwy +Lane +Link +Loop +Mall +Mews +Pckt +Pde +Park +Pkwy +Pl +Prom +Res +Rdge +Rise +Rd +Row +Sq +St +Strp +Tarn +Tce +Tfre +Trac +Tway +View +Vsta +Walk +Way +Wway +Yard \ No newline at end of file diff --git a/splunk_eventgen/samples/streetNames.sample b/splunk_eventgen/samples/streetNames.sample new file mode 100644 index 00000000..736df459 --- /dev/null +++ b/splunk_eventgen/samples/streetNames.sample @@ -0,0 +1,91670 @@ +A E Smythe +A Fernwood +A G Spanos +A H Gray +A Jones +A New +A York +A. Alfred Lombardi +A.J. Hare +ASDA Britannia +AVRowe +Aa +Aalten +Aaron +Aaron Hill +Aaron Park +Aaron River +Abalone +Abanaki +Abandoned +Abaroo +Abate +Abbe +Abberton +Abbett +Abbetts +Abbeville +Abbey +Abbey Barn +Abbey Ellen +Abbey Field +Abbey Glen +Abbey Hey +Abbey Hill +Abbey Hills +Abbey Manor +Abbey Mill +Abbey Oak +Abbey Oaks +Abbey Orchard +Abbey Valley +Abbey Wood +Abbeydale +Abbeyfeale +Abbeyfield +Abbeyhill +Abbeystead +Abbeyview +Abbeyville +Abbeywood +Abbie +Abbington +Abbington Farm +Abbot +Abbotford +Abbots +Abbots Court +Abbots Ford +Abbots Wick +Abbots Wood +Abbotsbury +Abbotsfield +Abbotsford +Abbotsford Cove +Abbotshade +Abbotshall +Abbotsleigh +Abbotstone +Abbotswood +Abbott +Abbott Bridge +Abbott Valley View +Abbotts +Abbotts Park +Abbottsford +Abbottswell +Abbruzzi +Abby +Abby Wood +Abbywood +Abchurch +Abdale +Abden +Abdon +Abdul +Abe +Abecrombie +Abeel +Abel +Abele +Abelia +Abell +Abels +Abelyn +Abenaki +Abend +Abendroth +Abensburg +Aber +Aberavon +Abercairn +Abercombie +Aberconway +Abercorn +Abercrombie +Abercromby +Aberdare +Aberdeen +Aberdour +Aberfeldy +Aberfield +Aberfoil +Aberford +Aberford Highfield +Aberfoyle +Abergeldie +Abergele +Aberjona +Abermain +Abernathy +Abernethy +Abersoch +Abert +Abery +Abescon +Abierto +Abigail +Abilene +Abinante +Abingdon +Abinger +Abington +Abington Cambs +Abington Manor +Abington Woods +Abirdge +Able +Ablemarle +Ablett +Ablondi +Abner +Abner Belcher +Abney +Abney Court +Abode +Aborn +Aborn Square +Aboud +Aboukir +Aboyne +Abraham +Abraham Kazan +Abrahams +Abrams +Abramsky +Abramson +Abrew +Abridge +Abruzzini Hill +Absalom +Absecon +Absher +Abson +Abuklea +Ac +Acacia +Academia +Academic +Academy +Academy Fields +Academy Hill +Academy Woods +Acadia +Acadia Park +Acalanes +Acampo +Acanthis +Acanthus +Acapulco +Acari +Acaster +Accacia +Access +Accokeek +Accokeek Landing +Accolade +Accolawn +Accomac +Accommodation +Accomodation +Accord +Accord Park +Accord Pond +Accotink +Accotink Park +Ace +Acedemy Fields +Acela +Acer +Acerra +Acess +Acevedo +Acfold +Aches +Acheson +Achille +Achilles +Achillies +Achnacone +Achorn +Acken +Ackender +Acker +Ackerly +Ackerman +Ackers +Ackerson +Ackertown +Acklam +Ackley +Ackling +Acklington +Ackman +Ackmar +Ackroyd +Ackton +Ackworth +Acland +Acme +Acoma +Acomb +Aconbury +Acorn +Acorn Court +Acorn Hill +Acorn Hollow +Acorn Knoll +Acorn Park +Acorn Ponds +Acorn Wharf +Acosta +Acre +Acre More +Acre Top +Acre View +Acreage +Acrefield +Acregate +Acres +Acresfield +Acri +Acris +Acrocomia +Acron +Acropolis +Actinotus +Action +Actium +Active +Acton +Acton Horn +Acton Park East Acton +Acton Vale Bromyard +Actriz +Acts +Acushnet +Ad Art +Ad Hoc +Ada +Adagio +Adah +Adahmore +Adair +Adaire +Adak +Adalis +Adalist +Adaluma +Adam +Adam Albright +Adam C. Powell +Adam Wheeler +Adaminaby +Adamo +Adams +Adams Church +Adams Hill +Adams Park +Adams Ranch +Adams Ridge +Adams School +Adamson +Adamsrill +Adamsway +Adamswood +Adanac +Adar +Adare +Adason +Adastral +Adbaston +Adbert +Adbeth +Adclare +Adclire +Adcock +Adcroft +Add +Addalia +Addenbrooke +Adderley +Adderstone +Adderton +Addicks +Addie +Addington +Addington Village +Addiscombe +Addiscombe Court +Addison +Addisson +Addleman +Addlestead +Addlestone +Addsion +Addy +Adee +Adel +Adel Wood +Adela +Adelade +Adelaide +Adelberg +Adelbert +Adele +Adelia +Adeline +Adella +Adelle +Adelman +Adelphi +Adelphia +Adelsburg +Aden +Adenlee +Adenmore +Adept +Aderene +Adesso +Adey +Adeyfield +Adhara +Adie +Adin +Adina +Adine +Adios +Adirondack +Adisham +Adj. +Adkins +Adler +Adler Woods +Adlers +Adley +Adlington +Admaston +Admin Service +Administration +Admiral +Admiral Callaghan +Admiral Cochrane +Admiral Moore +Admiral Seymour +Admirals +Admiralty +Admont +Adobe +Adobe Canyon +Adobe Creek +Adobe Creek Lodge +Adolfo +Adolph +Adolphus +Adomar +Adonia +Ador +Adorn +Adp +Adpar +Adra +Adria +Adrian +Adriana +Adrianne +Adriano +Adriatic +Adrien +Adrienne +Adshall +Adstone +Adswood +Adswood Old Hall +Adult +Adur +Advance +Advantage +Advent +Adversane +Advice +Adwell +Ady +Adys +Ae +Aec +Aegean +Aegina +Aeolia +Aeolus +Aerator +Aerial +Aerie +Aerie Wynde +Aero +Aerobee +Aerodrome +Aerojet +Aerospace +Aetheric +Aetna +Aetna Springs +Af +Affetside +Affleck +Afghan +Afirmed +Africa +Afshar +Afterglow +Afternoon +Afton +Afton Coulee Ridge +Agadir +Agamemnon +Agape +Agar +Agassiz +Agate +Agates +Agatha +Agatite +Agaton +Agave +Agawam +Agden +Agdon +Agecroft +Ager +Aggie +Aggisters +Agincourt +Aging Oak +Agister +Agius +Aglen +Agneous +Agnes +Agnes Morley Heights +Agnesfield +Agnew +Agnola +Agnon +Agorista +Agoritsas +Agostina +Agostino +Agradar +Agrand +Agraria +Agricultural Farm +Agriculture +Agrippa +Agua Vista +Aguadilla +Aguazul +Aguilar +Agusta +Ah +Ahab +Ahearn +Ahern +Ahlmeyer +Ahlstrand +Ahlstrom +Ahmed +Ahneita +Ahnert +Aho +Ahr +Ahrens +Ahwahnee +Ahwanee +Aida +Aidan +Aiden +Aiello +Aiken +Aikens +Ailee +Aileen +Ailsa +Ailsworth +Ailward +Aimee +Aimee Meadows +Aimwell +Aines +Ainger +Ainsbrook +Ainsbury +Ainscough +Ainscow +Ainsdale +Ainsford +Ainsley +Ainslie +Ainslie Wood +Ainsty +Ainsworth +Ainsworth Hall +Aintree +Air +Air Base +Air Cargo +Air Cargo Service +Air Force +Air Freight +Air Park +Air View +Airbase +Aircraft +Aird +Airds +Airdsley +Aire +Airedale +Aires +Airfield +Airlea +Airlie +Airline +Airmen +Airmont +Airmont Hunt +Airmount +Airpark +Airport +Airport Access +Airport Park +Airport Plaza +Airport Ser +Airway +Airwick +Airy Hill +Airybrink +Aisgill +Aisher +Aislibie +Aisne +Aisquith Farm +Aitchander +Aitcheson +Aitchison +Aitken +Ajax +Ak +Akbar +Akeby +Akehurst +Akela +Akeman +Akenside +Akerly +Akerman +Akers +Akerson +Akesmoor +Akeson +Aketon +Akhtamar +Akin +Akira +Akora +Akron +Akroyd +Aksarben +Aksland +Al Catraz +Al Jones +Al Ventura +Al Wilhelmi +Alabama +Alabaster +Alachua +Alacross +Aladdin +Aladore +Alaga +Alago +Alahambra +Alam +Alamance +Alamatos +Alameda +Alameda Marina +Alameda Park +Alamein +Alamitos +Alamitos Creek +Alamo +Alamo Glen +Alamo Hills +Alamo Oaks +Alamo Ranch +Alamo Springs +Alamo Square +Alamos +Alamosa +Alan +Alan A Dale +Alan Boyd +Alan Crest +Alan Dale +Alan Deatherage +Alan Turing +Alana +Alanas +Alanbrook +Alandale +Alanhurst +Alann +Alanna +Alanon +Alanwick +Alaric +Alaska +Alaska Service +Alastair +Alba +Albacete +Albacore +Alban +Albana +Albanese +Albano +Albany +Albany Park +Albara +Albata +Albatross +Albee +Albemarle +Albergo +Albermale +Albermarle +Albermyrtle +Albern +Alberni +Albers +Albert +Albert Bridge +Albert Einstein +Albert Hill +Albert Leonard +Albert M Teglia +Albert Park +Albert Ray +Albert Royds +Alberta +Alberti +Albertina +Albertine +Alberto +Alberts +Albertson +Albertstone +Albertsworth +Albezzia +Albia +Albin +Albina +Albine +Albion +Albion Villas +Albon +Albot +Albourne +Albradt +Albrae +Albrecht +Albright +Albrighton +Albro +Albuera +Albury +Albury Grove +Albyan +Albyn +Albyns +Alcajapa +Alcala +Alcalde +Alcan +Alcana +Alcann +Alcatraz +Alcazar +Alcester +Alchester +Alcinda +Alcine +Alcira Nunez +Alcoa +Alcock +Alcocks +Alcon +Alcona +Alconbury +Alcoomie +Alcorn +Alcorne +Alcosta +Alcott +Alcova +Alcove +Alda +Aldacourrou +Aldagrove +Aldana +Aldbourne +Aldbridge +Aldbury +Aldcock +Aldcroft +Aldea +Aldean +Aldebaran +Aldeburgh +Aldebury +Aldemarle +Alden +Alden Glen +Alden Pond +Aldene +Aldenglen +Aldenham +Aldensley +Alder +Alder Brook +Alder Creek +Alder Glen +Alder Hill +Alder Woods +Alderberry +Alderbourne +Alderbrook +Alderbury +Aldercar +Aldercombe +Aldercroff Heights +Aldercroft +Aldercroft Heights +Alderdale +Alderfield +Alderfold +Alderford +Aldergate +Alderglen +Alderleaf +Alderley +Alderman +Aldermary +Aldermaston +Alderminster +Alderney +Alders +Alders End +Alders Green +Aldersbrook +Aldersbrook Park +Aldersey +Aldersgate +Aldersgrove +Aldershot +Alderside +Aldersley +Aldersmead +Alderson +Alderstead +Alderstone +Aldersyde +Alderton +Alderton Hall +Alderue +Alderville +Alderwick +Alderwood +Alderwood Mall +Aldfield +Aldford +Aldgate +Aldgate High +Aldham +Aldi +Aldie +Aldine +Aldington +Aldis +Aldo +Aldock +Aldon +Aldona +Aldorae +Aldred +Aldren +Aldria +Aldrich +Aldrid +Aldridge +Aldrin +Aldrington +Aldro +Aldsworth +Aldus +Aldwark +Aldwick +Aldwin +Aldwina +Aldworth +Aldwych +Aldwyn Park +Alec +Alec Templeton +Alecia +Aleda +Alee +Alegra +Alegre +Aleilani +Alejandra +Alejandro +Alelanto +Alemany +Alembic +Alemeda +Alene +Aleppo +Alerche +Alers +Alesia +Alessandra +Alessandro +Alessi +Alessio +Alestan Beck +Alester +Alesworth +Aleta +Aletha +Alethea +Aleutian +Alewife +Alewife Brook +Alex +Alexander +Alexander Bell +Alexander Cornell +Alexander D. Sullivan +Alexander Fleming +Alexander Hamilton +Alexander Manor +Alexander Valley +Alexanders +Alexandra +Alexandras Grove +Alexandria +Alexandria Overlook +Alexendria +Alexian +Alexine +Alexis +Aley +Alezane +Alfa +Alfadel +Alfalfa +Alfalfa Plant +Alfan +Alfandre +Alfandre Mews +Alfearn +Alfini +Alfold +Alford +Alford Valley +Alfords Point +Alforth +Alfred +Alfred Lord Tennyson +Alfred Nobel +Alfreda +Alfreg +Alfreton +Alfriston +Alft +Algair +Algar +Algarve +Algea +Algen +Alger +Algernon +Algers +Alghera +Algiers +Algoma +Algona +Algonkian +Algonkin +Algonquian +Algonquin +Algosi +Algreave +Algretus +Alhambra +Alhambra Creek +Alhambra Hills +Alhambra Valley +Alherst +Ali +Aliberti +Alibi +Alibon +Alicante +Alice +Alice Bright +Alice Eastwood +Alice G Agnew +Alice Griffith +Alicia +Alick +Alida +Alie +Alienor +Alimar +Alina +Alinda +Aline +Alinga +Alington +Alisa +Alisal +Alisha +Alisma +Aliso +Alison +Alisons +Alissa +Alistair +Alitos +Aliwal +Alix +Alize +Aljan +Aljay +Alkamont +Alkaringa +Alken +Alker +Alkerden +Alkham +Alkier +Alkira +Alkire +Alkoo +Alkoomie +Alkrington Park +All Day +All Saints +All Souls +Alla +Alladin +Allaire +Allama Iqbal +Allambee +Allambi +Allambie +Allan +Allan Daugherty +Allandale +Allander +Allanhill +Allanmere +Allano +Allanson +Allanwood +Allara +Allard +Allardyce +Allars +Allawah +Allay +Allborough +Allbrook +Allcroft +Allday +Allden +Alldens +Allder +Alldicks +Alldis +Allee +Alleen +Allegany +Alleghany +Allegheny +Allegheny Grove +Allegra +Allegro +Allemand +Allemany +Allemong +Allen +Allen Dale +Allen Dent +Allen Edwards +Allen Farm +Allen Oneill +Allen Park +Allen Robert +Allenby +Allencrest +Allendale +Allende +Allene +Allenhurst +Allens +Allensby +Allenswood +Allentown +Allenwood +Aller +Allerds +Allerford +Allerman +Allerton +Allerton Grange +Alles +Allesley +Allessandria +Allessandrini +Allestree +Alletta +Allevard +Alley +Alleyndale +Alleyne +Alleyns +Allfarthing +Allgair +Allgood +Allgrove +Allhallows +Alliance +Allibone +Allied +Allies +Allindale +Alline +Alling +Allingham +Allington +Alliott +Allis +Allisha +Allison +Allison Park +Allister +Allitsen +Allman +Allmen +Allnatt +Allness +Allnutt +Allnutts +Allocco +Allom +Allon +Allonby +Allotment +Alloway +Allowrie +Allport +Allred +Allsmoor +Allsopp +Allspice +Allstate +Allston +Allum +Allview +Allward +Allwood +Allworth +Allwyn +Allyn +Allyson +Alm +Alma +Alma Bridge +Alma College +Alma Farm +Almack +Almada +Almaden +Almaden Valley +Almaden Village +Almadera +Almadine +Almanac +Almandon +Almanera +Almanor +Almansa +Almanza +Almar +Almarida +Almaz +Almeda +Almeida +Almena +Almenar +Almendra +Almendral +Almer +Almeria +Almeric +Almeta +Almien +Almira +Almners +Almon +Almona +Almond +Almond Blossom +Almond Orchard +Almond Tree +Almond Valley +Almondridge +Almonds +Almondtree +Almondwood +Almont +Almonte +Almora +Almorah +Almount +Almroth +Alms Hill +Almsbury +Almshouse +Almwch +Alness +Alnond +Alnwick +Alnwood +Aloe +Aloha +Alondra +Along Neponset +Alonso +Alonzo +Alopex +Alorn +Alosio +Alp +Alpena +Alpenglow +Alpert +Alperton +Alpet +Alph +Alpha +Alphabet +Alphagate +Alpheus +Alphin +Alphington +Alphonse +Alphonsus +Alpine +Alpine Beach +Alpine Creek +Alpine Falls +Alpine Frost +Alpine Meadow +Alpine Springs +Alpita +Alport +Alprilla Farm +Alps +Alquire +Alray +Alresford +Alric +Alridge +Alro +Alrose +Alroy +Alsa +Alsace +Alsace Loraine +Alsada +Alschuler +Alsfeld +Alsike +Alsom +Alson +Alsop +Alsops +Alstead +Alston +Alstone +Alstyne +Alt +Alt Fold +Alt Hill +Alta +Alta Garden +Alta Glen +Alta Haciendas +Alta Loma +Alta Mesa +Alta Mesa East +Alta Mira +Alta Monte +Alta Punta +Alta Sierra +Alta Sonoma +Alta Sunrise +Alta Tierra +Alta Valley +Alta Verde +Alta Via +Alta Vista +Altacrest +Altadena +Altair +Altamara +Altamead +Altamira +Altamont +Altamont Creek +Altamont Pass +Altamore +Altamount +Altanta +Altarinda +Altena +Altenitas +Alter +Altessa +Altgeld +Altham +Althea +Alther +Althorn +Althorne +Althorp +Althorpe +Althouse +Altia +Altimont +Altino +Altivo +Altman +Altmar +Alto +Alto Verde +Altofts +Altofts Hall +Altofts Lodge +Altoga +Alton +Altona +Altoona +Altoona Beach +Altos +Altos Oaks +Altrincham +Altrura +Altruria +Altschul +Altura +Alturas +Altus +Altwood +Altyre +Alum Rock +Alum Rock Falls +Alumni +Alumrock +Alva +Alvah +Alvan +Alvarado +Alvarado Niles +Alvarez +Alvaston +Alveley +Alvern +Alvernaz +Alverno +Alverson +Alverstoke +Alverston +Alverstone +Alverton +Alvertus +Alves +Alves Ranch +Alveston +Alvey +Alviena +Alvin +Alvina +Alvine +Alvington +Alviso +Alvista +Alviston +Alvord +Alwaes +Alward +Alwat +Alway +Alwick +Alwin +Alwine +Alwinton +Alwoodley +Alwoodley The +Alwyn +Alwyne +Alwyngton +Alwyns +Alxandria +Alyce +Alyea +Alysheba +Alyson +Alyssa +Alyssum +Alyward +Alywne +Alywood +Amadeus +Amado +Amador +Amador Creek +Amador Plaza +Amador Valley +Amal +Amalfi +Amalgamated +Amalia +Amanda +Amann +Amanola +Amant +Amapala +Amapola +Amaral +Amaranta +Amaranth +Amaretto +Amargosa +Amari +Amarillo +Amarina +Amark +Amaro +Amaroo +Amaroo Park +Amaryl +Amaryllis +Amasa +Amatista +Amato +Amax +Amaya +Amaya Creek +Amaya Ridge +Amazon +Ambarrow +Ambassador +Amber +Amber Creek +Amber Grove +Amber Meadows +Amber Ridge +Amber Valley +Amberdale +Amberden +Amberfield +Amberg +Ambergate +Amberglen +Amberhill +Amberina +Amberjack +Amberlea +Amberlea Farm +Amberleaze +Amberleigh +Amberleigh Farn +Amberley +Amberly +Amberside +Amberson +Amberton +Amberwood +Ambiance +Amble +Ambler +Amblers +Ambleside +Amblethorn +Amblewood +Ambley +Ambon +Ambourn +Amboy +Ambria +Ambriance +Ambric Knolls +Ambrook +Ambrooke +Ambrosden +Ambrose +Ambrose Valley +Ambrosia +Ambrym +Ambulance Only +Ambum +Ambush +Amby +Ameland +Amelia +Amelia Earhart +Amelia Godbee +Amelian +Amelung +Amenbury +Amend +Amendodge +Ameno +Ament +Amer +Amerada +Amerden +America +America Center +America Moor +American +American Aggregate +American Beauty +American Canyon +American Eagle +American Holly +American Legion +American Oaks +American Pride +American River +American River Canyon +Americana +Americus +Amerigo +Amerland +Amero +Amersham +Amersham Hill +Amery +Ames +Ames Crossing +Ames Hill +Amesbury +Amesti +Amesury +Amethyest +Amethyst +Amey +Amherst +Amherst Bank +Amhurst +Amias +Amicita +Amico +Amid +Amidio +Amidon +Amiens +Amigo +Amilcar +Amina +Amiott +Amir +Amis +Amisfield +Amisse +Amistad +Amitaf +Amito +Amity +Amkin +Amlee +Amlets +Amli +Amlin +Amlong +Amman +Ammel +Ammendale +Ammer +Ammons +Ammunition +Amner +Amners Farm +Amoco +Amondo +Amor +Amori +Amoruso +Amory +Amos +Amos Garrett +Amos Hill +Amos Sampson +Amoss +Amott +Amour +Ampeg +Ampel +Ampere +Amphibian +Amphitheatre +Ampleforth +Ampthill +Ampton +Amsbury +Amsden +Amsden Ridge +Amstel +Amsterdam +Amsterdan +Amstutz +Amulet +Amundsen +Amundson +Amur Hill +Amvet +Amvets +Amwell +Amy +Amyand Park +Amyruth +Ana +Ana Lisa +Ana Maria +Anabell +Anable +Anacapa +Anacapri +Anaconda +Anagram +Anaheim +Anakai +Anakin +Analitis +Analy +Anamor +Anamosa +Anana +Anand Brook +Ananda +Anandale +Anastasia +Anastasio +Anatola +Anatolia +Anawan +Anawanda +Ancaster +Ancell +Ancells +Ancestor +Ancho Vista +Anchor +Anchor And Hope +Anchorage +Ancient Oak +Ancient Oaks +Ancient Tree +Ancille +Ancoats +Ancon +Ancona +Ancroft +Ancrum +Andale +Andall +Andalucia +Andalusia +Andalusian +Andaman +Andante +Andard +Anderby +Anderley +Anderlie +Andermann +Anders +Andersen +Anderson +Anderson Estates +Anderson Farm +Anderson Hill +Anderson Lakes +Anderson Ridge +Anderson Scout Camp +Anderton +Andertons +Andes +Anding +Andiron +Andith +Andlers Ash +Andora +Andorick +Andorra +Andove +Andover +Andover Country Club +Andover Heights +Andrade +Andre +Andre Hill +Andrea +Andreas +Andrease +Andreasen +Andrejewski +Andrene +Andres +Andrew +Andrew Alan +Andrew Borde +Andrew Hill +Andrew Lloyd +Andrewartha +Andrews +Andrews Farm +Andria +Andrieux +Andromeda +Andros +Androvette +Andrus +Andrus Island +Andsbury +Andwell +Andy +Anebo +Anelda +Anella +Anembo +Anerley +Anerley Park +Anesbury +Anets +Anette +Anfield +Anfred +Angas +Angel +Angel Falls +Angel Flight +Angel Hill +Angel Kerley +Angel Rod +Angela +Angela Rose +Angeles +Angelica +Angelico +Angelina +Angeline +Angelini +Angelique +Angelita +Angell +Angelo +Angelos +Angels +Angelus +Angelwing +Angerer +Angerstein +Angevine +Angie +Angier +Angies of Holloway +Angle +Angle Vale +Angledook +Anglefield +Angler +Anglers +Angles +Anglesea +Anglesey +Anglesey Court +Angleside +Anglessey +Anglewood +Angley +Anglian +Anglican +Anglin +Anglo +Angophora +Angora +Angorra +Angouleme +Angrave +Angsley +Angus +Angwin +Anhalt +Anice +Animal Husbandry +Animbo +Anis +Anise +Aniseed +Anita +Anjim +Anjo +Anjou +Anka +Ankener +Ankeny +Anker +Ankers +Anlaby +Anley +Ann +Ann Arbor +Ann Boleyn +Ann Fitz Hugh +Ann Lee +Ann Marie +Ann Natalie +Ann Rose +Ann Vinal +Anna +Anna Louise +Anna Mac +Anna Maria +Anna Marie +Annabel +Annabella +Annabelle +Annable +Annables +Annadale +Annadea +Annadel Heights +Annafran +Annalisa +Annam +Annamarie +Annamorh +Annan +Annandale +Annangrove +Annapolis +Annapolis Neck +Annapolis Walk +Annapolitan +Annardale +Annawan +Annaway +Annawon +Annbar +Anncroft +Anne +Anne Arundel +Anne Arundel Com Col +Anne Marie +Anne Peake +Anne Tucker +Anne William +Anne of Cleves +Anneliese +Annella +Annenberg +Annerino +Annerley +Annes Court +Annes Prospect +Annese +Annesley +Annete +Annett +Annetta +Annette +Annettes +Annettes Retreat +Annfield +Annhurst +Annico +Annie +Annie Laurie +Annie Moore +Annie Spence +Annie Terrace +Annin +Annina +Anning +Annington +Annis +Annisfield +Annisquam +Anniston +Anniversary +Annjim +Annmar +Annmore +Annona +Annoreno +Anns +Anntaramiss +Annual +Annunciation +Annursnac Hill +Annuskemunnica +Anny +Ano +Ano Nuevo +Anoatok +Anoka +Anola +Anon +Anona +Anondale +Anoover +Anpell +Anroyd +Ansbrough +Ansculf +Ansdell +Ansel +Ansell +Anselm +Anselma +Ansford +Ansie +Ansleigh +Ansley +Anson +Ansonia +Ansted +Anstee +Anstey +Anstey Mill +Anstice +Anstone +Anstridge +Answell +Answorth +Antarctic +Antares +Antaya +Ante Up +Antell +Antelope +Antelope Hills +Antelope Run +Antelope Springs +Anteros +Anthea +Anthem +Antholl +Anthony +Anthony Hill +Anthony Marangiello +Antietam +Antigone +Antigua +Antil +Antile +Antill +Antioch +Antiopi +Antiqua +Antique +Antique Forest +Antiquity +Antlands +Antler +Antoine +Antoinette +Antolak +Anton +Antone +Antonetta +Antonette +Antonette Marie +Antonia +Antonia Ford +Antonietta +Antonio +Antony +Antram +Antrican +Antrim +Antrobus +Antwerp +Anvil +Anvilwood +Anworth +Anyards +Anza +Anzac +Anzar +Anzavista +Anzio +Apache +Apakesha +Apap +Apara +Apartment +Apawamis +Apeldoorn +Aperdele +Apers +Apethorn +Apex +Apfel +Apgar +Apia +Apian +Apiary +Apking +Apley +Aplin +Aplomado +Apollo +Apollo Regent +Aponi +Apothecary +Appach +Appalachian +Appaloosa +Appamatox +Appeal +Appenzel +Apperley +Apperlie +Apperson Ridge +Appian +Appin +Apple +Apple Blossom +Apple Creek +Apple Crest +Apple Dor +Apple Farm +Apple Garden +Apple Gate +Apple Glen +Apple Green +Apple Grove +Apple Hill +Apple Lovers +Apple Manor +Apple Mill +Apple Orchard +Apple Ridge +Apple River +Apple Row +Apple Tree +Apple Valley +Apple View +Apple Wood +Applebee +Appleberry +Appleblossom +Applebox +Applebrook +Appleby +Applecreek +Applecrest +Applecroft +Applecross +Appledale +Appledell +Appledore +Appledown +Appleford +Applegarth +Applegate +Applegreen +Applegrove +Applejack +Appleman +Applemarket +Applemint +Applenut +Appleseed +Appleton +Appletree +Applewick +Applewood +Appley +Appleyard +Appling +Appling Valley +Appollo +Appomattox +Apprentice +Approach +Apps +Appspond +Apricot +April +April Journey +Apron +Apshawa Cross +Apsis +Apsley +Apsley End +Aptakisic +Apthorp +Apthrop +Apton +Apton Hall +Aptos +Aptos Beach +Aptos Creek +Aptos Creek Fire +Aptos High School +Aptos Hill +Aptos Rancho +Aptos School +Aptos View +Aptos Wharf +Aqua +Aqua Lynn +Aqua View +Aqua Vista +Aquahart +Aquamarine +Aquarium +Aquarius +Aquasco Farm +Aquatic +Aquavia +Aqueduct +Aquia Creek +Aquila +Aquilina +Aquinas +Aquino +Aquistapace +Ara +Arab +Arabanoo +Arabella +Arabelle +Arabian +Arabin +Araca +Arafura +Araglen +Arago +Aragon +Aragona +Arakelian +Araki +Arakoon +Aralia +Aralluen +Araluen +Aram +Arambel +Aramis +Aramon +Aran +Arana +Aranda +Arandale +Araneo +Arapaho +Arapahoe +Ararat +Arastradero +Arata +Arate +Araujo +Arballo +Arbardee +Arbeiter +Arbeleche +Arbeleda +Arbell +Arbella +Arbetter +Arbie +Arbit +Arbogast +Arbol +Arbolado +Arboleda +Arbor +Arbor Creek +Arbor Falls +Arbor Fields +Arbor Gate +Arbor Glen +Arbor Grove +Arbor Hill +Arbor Hills +Arbor Lakes +Arbor Meadows +Arbor Oaks +Arbor Park +Arbor Ridge +Arbor View +Arbor Villa +Arbor Vine +Arbor Vitae +Arbordale +Arboreo +Arboretum +Arboretum Village +Arborfield +Arborfield Church +Arborfield Walden +Arboro +Arborough +Arborsedge +Arborside +Arborview +Arborvitae +Arborway +Arborwood +Arbory +Arbour +Arbour Walk +Arbre +Arbroath +Arbrook +Arbroth +Arbuckle +Arbury +Arbuton +Arbutus +Arca +Arcada +Arcade +Arcade Lake +Arcadia +Arcadia Palms +Arcadian +Arcady +Arcand +Arcangela +Arcata Bay +Arce +Arch +Arch Airport +Arch Hall +Arch Rk +Archangel +Archbold +Archbridge +Archbury +Archdale +Archel +Archer +Archerdale +Archers +Archers Green +Archery +Archery Fire +Arches +Archibald +Archie +Architect +Archlaw +Archmeadow +Archstone +Archung +Archway +Archwood +Arco +Arcola +Arcon +Arctic +Arctic Cat +Arctic Fox +Arcturus +Arcus +Arcwood +Arcy +Ard +Ardale +Ardan +Ardath +Ardaugh +Ardbeg +Ardee +Ardell +Ardelle +Arden +Arden Bluff +Arden Creek +Arden Forest +Arden Oaks +Arden Shore +Arden View +Ardendale +Ardenfield +Ardenham +Ardenlee +Ardenmore +Ardennes +Ardenness +Ardenridge +Ardent +Ardenwood +Ardern +Arderne +Ardfern +Ardfilan +Ardfour +Ardglass +Ardgowan +Ardgryffe +Ardilaun +Ardilla +Ardilla Canyon +Arding +Ardingly +Ardis +Ardith +Ardleigh +Ardleigh Green +Ardler +Ardley +Ardlui +Ardmere +Ardmore +Ardno +Ardo +Ardoch +Ardor +Ardra +Ardrossan +Ardrossen +Ardshiel +Ardsleigh +Ardsley +Ardsmoor +Ardvin +Ardwell +Ardwick +Ardwick Ardmore +Area +Areil +Arellano +Arena +Arenal +Arends +Arenosa +Arethusa +Arey +Arezzo +Arezzo Pointe +Arf +Arford +Argall +Argent +Argenta +Argentine +Argents +Argie +Argila +Argilla +Argo +Argon +Argonaut +Argonne +Argonne Ridge +Argosy +Argowan +Arguello +Arguimbau +Argus +Argyle +Argyle Club +Argyll +Argyll Park +Ari +Ariadne +Ariana +Arianna +Arias +Aric +Arica +Aricia +Ariel +Arielle +Aries +Ariey +Arikara +Arilla +Arimo +Arinya +Arion +Aris T Allen +Arista +Aristocrat +Aristotle +Arizona +Arjay +Ark +Ark Haven +Arkana +Arkansas +Arkay +Arkell +Arkena +Arkendale +Arkhaven +Arkindale +Arkinglander +Arkland +Arkle +Arkley +Arklow +Arkwood +Arkwright +Arlanda +Arleda +Arlee +Arleen +Arleigh +Arleita +Arlen +Arlene +Arlesey +Arlesford +Arleta +Arletta +Arlette +Arlewis +Arley +Arley New +Arlia +Arlie +Arlies +Arline +Arlingdale +Arlingford +Arlington +Arlington N +Arliss +Arlisson +Arlmont +Arlo +Arlon +Arlott +Arlow +Arlton +Arlyn +Arlyne +Arm +Armaan +Armadale +Armagh +Armand +Armandale +Armandine +Armanini +Armat +Armata +Armbrust +Armell +Armendown +Armentieres +Armes +Armetale +Armett +Armfield +Armfield Farm +Armida +Armidale +Armiger +Arminda +Arminger +Armington +Arminio +Arminteres +Armistead +Armistice +Armiston +Armit +Armitage +Armitree +Armitstead +Armitt +Armley +Armley Branch +Armley Grange +Armley Lodge +Armley Park +Armley Ridge +Armm +Armon +Armond +Armonk +Armor +Armore +Armory +Armour +Armour Villa +Armouries +Armoury +Arms +Armsby +Armsby Cemetery +Armside +Armstead +Armstrong +Armstrong Wood +Armwood +Army +Army Navy +Army Trail +Arnaudo +Arncliff +Arncliffe +Arncot +Arncott +Arncott Wood +Arndell +Arndill +Arne +Arner +Arnerich +Arnesby +Arnet +Arnett +Arneway +Arneways +Arnfield +Arnheim +Arnhem +Arnica +Arnison +Arno +Arnold +Arnold Janssen +Arnold Mills +Arnold Park +Arnolds +Arnon Chapel +Arnon Lake +Arnon Meadow +Arnos +Arnot +Arnott +Arnould +Arnow +Arnprior +Arnside +Arnsley +Arnulf +Arnulls +Arodene +Aromas +Aromas Heights +Aromitas +Aron +Arona +Aronia +Aronow +Aroona +Aroostook +Arora Heights +Arosa +Arpeggio +Arqueado +Arquilla +Arragon +Arragong +Arran +Arrandale +Arrezzo +Arrianne +Arriba +Arrighi +Arrigotti +Arrington +Arrol +Arrow +Arrow Creek +Arrow Head +Arrow Park +Arrowbrook +Arrowfield +Arrowhead +Arrowhead Farm +Arrowhead Farms +Arrowhead Park +Arrowhill +Arrowleaf +Arrowood +Arrowrock +Arrowsmith +Arrowwood +Arroyada +Arroyo +Arroyo Grande +Arroyo Hondo +Arroyo Leon +Arroyo Oaks +Arroyo Seco +Arroyo Sierra +Arroyo Vista +Arroyuelo +Arrunga +Arsan +Arsenal +Art +Art Gallery +Art Schultz +Artarmon +Artegall +Artemas +Artemel +Artemus +Arterberry +Arterial +Artery +Artese +Artesian +Arthall +Arthill +Arthington +Arthingworth +Arthog +Arthur +Arthur B Lord +Arthur Conan Doyle +Arthur Kill +Arthur King +Arthur Matthew +Arthur Nate Haugh +Arthur Taylor +Arthur Woods +Arthurdon +Arthursdale +Artic +Artic Quill +Artichoke +Artie +Artillary +Artillery +Artillery Park +Artimus +Artis +Artisan +Artist +Artists +Artizan +Artlett +Artornish +Arts +Arts Circle +Artuna +Artwill +Aruba +Aruma +Arun +Arunah +Arundale +Arundel +Arundel Beach +Arundel Corp +Arundel Corporation +Arundel Cove +Arundel Gateway +Arundel Mills +Arundel Park +Arundel on the Bay +Arundell +Arundle +Arunta +Arutas +Arvale +Arverne +Arvidson +Arvilla +Arvin +Arvon +Arwick +Ary +Arye +Aryness +Arywood +Arzate +Asa +Asbourne +Asbury +Asbury Circle +Ascadilla +Ascalano +Ascalon +Ascan +Ascension +Ascham +Asche +Aschurch +Ascol +Ascolano +Ascot +Ascots +Ascott +Ascroft +Asdee +Aseki +Asford +Ash +Ash Church +Ash Green +Ash Grove +Ash Hill +Ash House +Ash Lawn +Ash Park +Ash Platt +Ash Ride Rosewood +Ash Tree +Ashampstead +Ashanger +Asharoken +Ashbee +Ashbel +Ashberry +Ashboro +Ashbourn +Ashbourne +Ashbox +Ashbridge +Ashbrook +Ashbrook Hey +Ashbrooke +Ashburn +Ashburn Farm +Ashburn Village +Ashburner +Ashburnham +Ashburnham Hill +Ashburton +Ashburton Manor +Ashbury +Ashby +Ashby Ponds +Ashby West +Ashccott +Ashcombe +Ashcott +Ashcroft +Ashdale +Ashdell +Ashden +Ashdene +Ashdod +Ashdon +Ashdown +Ashdown Forest +Ashe +Ashebrook +Ashely +Ashen +Ashen Grove +Ashenden +Ashendene +Ashenground +Ashentree +Asher +Asheridge +Ashes +Asheville +Ashfield +Ashfield Farm +Ashford +Ashfordby +Ashgap +Ashgate +Ashgrove +Ashgrove House +Ashingdon +Ashington +Ashkins +Ashkirk +Ashlake +Ashland +Ashland Woods +Ashlands +Ashlar +Ashlawn +Ashlea +Ashleaf +Ashleigh +Ashler +Ashley +Ashley Glen +Ashley Green +Ashley Manor +Ashley Mill +Ashley Oaks +Ashley Park +Ashley Woods +Ashleys Park +Ashlin +Ashling +Ashlon +Ashlone +Ashlyn +Ashlyns +Ashmall +Ashmead +Ashmeade +Ashmere +Ashmill +Ashmole +Ashmon Boburg +Ashmond +Ashmont +Ashmoor +Ashmore +Ashmount +Ashness +Ashnut +Ashover +Ashridge +Ashstead +Ashtead +Ashtead Woods +Ashton +Ashton Clough +Ashton Hill +Ashton New +Ashton Oaks +Ashton Old +Ashton Park +Ashton Woods +Ashtonbirch +Ashtree +Ashtrees +Ashurst +Ashvale +Ashview +Ashville +Ashwater +Ashwell +Ashwells +Ashwells Manor +Ashwin +Ashwood +Ashworth +Asia +Asiatic +Asilomar +Askam +Aske +Askegrens +Asket +Askett +Askew +Askewton +Askey +Askill +Askland +Askov +Askren +Askwith +Asland +Aslett +Asmara +Asmus +Aso Taro +Asolando +Asoleado +Asp +Aspara +Aspasia +Aspdin +Aspen +Aspen Grove +Aspen Hill +Aspen Hollow +Aspen Leaf +Aspen Point +Aspen Ridge +Aspen Tree +Aspen Valley +Aspen Willow +Aspen Woods +Aspenlea +Aspenpark +Aspenridge +Aspenshaw +Aspentree +Aspenwood +Aspern +Aspesi +Asphalt +Aspian +Aspinal +Aspinall +Aspinden +Aspinwall +Aspley +Asplins +Asplund +Aspull +Asquith +Asquithoaks +Asquithview +Ass House +Assabet +Assateague +Asselin +Assell +Assembly +Assembly Square +Asset +Assets +Assher +Assheton +Assinippi +Assisi +Assissi +Associated +Association +Assonet +Assumption +Assumpton +Assunta +Assyria +Asta +Astan +Astbury +Aste +Astelia +Astell +Aster +Asterbilt +Asterwood +Asti +Asticou +Astin +Astle +Astleham +Astley +Astley Hall +Astolat +Aston +Aston Abbotts +Aston Clinton +Aston End +Aston Forest +Aston Manor +Astonville +Astor +Astoria +Astoria Park +Astra +Astrahan +Astral +Astrid +Astrida +Astro +Astrodome +Astrolabe +Astron +Astronaut +Astronomy +Astrope +Asturias +Astwick +Astwin +Astwood +Asylum +Asylum Arch +At Last Farm +Atalanta +Atbara +Atcham +Atchenson +Atcheson +Atchison +Atco +Atcost +Aten +Atha +Athabaska +Athania +Athearn +Athel +Atheldene +Athelney +Athelstan +Athelstane +Athelstone +Athelwold +Athem +Athena +Athenaeum +Athene +Athenia +Athenlay +Athens +Atherden +Atherfield +Atherfold +Atherly +Atherstone +Atherton +Atherton Oaks +Atherwood +Athey +Athletic Field +Athlon +Athlone +Athol +Atholl +Athony +Athos +Athrusleigh +Athy +Atilda +Atina +Atka +Atkins +Atkinson +Atlandtic +Atlanta +Atlantic +Atlantic Hills +Atlantic House +Atlantic View +Atlantis +Atlantus +Atlas +Atlas Peak +Atlee +Atleigh +Atlip +Atna +Atney +Atno +Atom +Atomic +Atrebatti +Atria +Atrium +Attar +Attard +Attawa +Attawan +Atte +Atteberry +Atteentee +Attenburys +Atterbury +Attercliffe +Atteridge +Attewell +Attewood +Attica +Attimore +Attingham +Attitash +Attleboro +Attlee +Attleford +Attneave +Attorney +Attow +Attridge +Attunga +Attwaters +Attwood +Atty +Atwater +Atwell +Atwill +Atwood +Auberge +Auberry +Aubert +Aubin +Aubinoe Farm +Auborn +Aubreen +Aubrey +Aubrey Neville +Aubreys +Aubrieta +Auburn +Auburn Folsom +Auburn Grove +Auburn Lakes +Auburn Leaf +Auburn Meadow +Auburn Oaks Village +Auburn Ridge +Auburn Woods +Auburndale +Auchmar Service +Auciello +Auckland +Auclair +Auclum +Auction +Auction Barn +Aucutt +Auden +Audenshaw +Audery +Audette +Audine +Auditorium +Auditors +Audlem +Audley +Audmar +Audobon +Audrea +Audrey +Audrey Smith +Audrey Zapp +Audry +Auds +Audubon +Auerbach +Auger +Aughton +Augurs +August +Augusta +Augusta Hooe +Augusta Point +Augustan +Augustana +Augustina +Augustine +Augustus +Aukane +Aukland +Auld +Auldwood +Aulin +Aulston +Aultman +Auluba +Aulwurm +Aumack +Auman +Aumuna +Auna +Aunt Lilly +Aunt Lizzies +Aura Vista +Aurallia +Aurelia +Aurelia Sylvia +Aurelian +Aurelie +Auricchio +Auriel +Auriga +Aurilla +Auriol +Auriol Park +Aurora +Aurore +Auseon +Aussie +Austell +Austen +Austenwood +Austhorpe +Austin +Austin Creek +Austin Joseph +Austins +Austral +Australia +Australian +Australis +Australorp +Austrian +Austrian Pine +Autenreith +Auth +Authority +Authorpe +Authors +Auto +Auto Center +Auto Circle +Auto Club +Auto Mall +Auto Park +Auto Plaza +Autocenter +Automation +Automobile +Automotive +Autopilot +Autotech +Autoville +Autran +Autrey +Autum Leaf +Autumn +Autumn Brook +Autumn Chace +Autumn Chase +Autumn Creek +Autumn Crest +Autumn Fields +Autumn Flower +Autumn Gate +Autumn Gold +Autumn Hill +Autumn Lake +Autumn Leaf +Autumn Maple +Autumn Meadow +Autumn Mist +Autumn Oak +Autumn Oaks +Autumn Park +Autumn Point +Autumn Ridge +Autumn Rust +Autumn Trail +Autumn Valley +Autumn Willow +Autumn Woods +Autumncrest +Autumnleaf +Autumnvale +Autumnwind +Autumnwood +Auvergne +Auvernat +Aux Sable +Auxplaines +Auzerais +Ava +Avalani +Avalli +Avalon +Avalon Bay +Avalon Ct +Avamere +Avansino +Avante +Avanti +Avard +Avarn +Avati +Avdon +Ave Maria +Avebury +Avelar +Aveley +Aveline +Aveling +Aveling Park +Avella +Avellano +Avelon +Avena +Avenal +Avenel +Avenel Farm +Avenel Gardens +Avenell +Avenida +Avenida del Este +Avenida del Norte +Avening +Avenleigh +Avenons +Avens +Avenue +Avenue A +Avenue B +Avenue of Heroes +Averell +Averenches +Averett +Averhill +Averill +Averitt +Avern +Avers +Averton +Avery +Avery Park +Avesbury +Avey +Aviador +Avian +Aviary +Aviation +Aviator +Aviemore +Avignon +Avila +Avington +Avior +Avis +Avisford +Aviston +Avitar +Avoca +Avocet +Avola +Avon +Avon Beach +Avon Hill +Avona +Avonbrook +Avondale +Avondale Park +Avonelle +Avonia +Avonlea +Avonley +Avonmore +Avonmouth +Avonshire +Avonwick +Avots +Avram +Avro +Avy +Awaba +Awald +Awalt +Awani +Award +Awashawagh +Awatea +Awatos +Awbrey Patent +Awburn +Awixa +Awkard +Awl +Awlfield +Awliscombe +Axbridge +Axdell +Axe +Axehurst +Axel +Axes +Axford +Axholme +Axinn +Axletree +Axminster +Axtaine +Axtell +Axton +Ayala +Ayanian +Aybrook +Aycliffe +Aycrigg +Ayd Mill +Aydon +Ayebridges +Ayelands +Ayer +Ayers +Aylands +Ayles +Aylesbury +Aylesbury Vale +Aylesby +Aylesford +Aylestone +Ayleswade +Aylesworth +Aylett +Ayliffe +Aylin +Ayling +Ayloffe +Aylor +Aylsford +Aylsham +Aylsworth +Aylward +Aylwin +Aymar +Aymer +Aynho +Aynhoe +Aynor +Aynsley +Aynsworth +Ayot Little Green +Ayotte +Ayr +Ayres +Ayres End +Ayreshire +Ayresome +Ayrlawn +Ayrlie Water +Ayrmont +Ayrshire +Ayrsome +Ayrton +Ayrton Senna +Aysgarth +Ayshe Court +Ayshford +Ayshire +Aythorne +Ayton +Aytoun +AzTec +Aza +Azalea +Azalea Dell +Azalea Flat +Azalea Grove +Azalea Sands +Azalia +Azara +Azeala +Azee +Azel +Azelea +Azell +Azenby +Azevedo +Azimuth +Azof +Azores +Aztec +Aztec Ridge +Azuar +Azucar +Azule +Azure +Azusa +Azzopardi +B Colony +B Fernwood +B Gale Wilson +B Leeds +B Lefferts +B V French +B W Williams +B York +BART Access +BK. Methley +BMW Park +BP Connect Regent +BP Darling +BP Davies +BP Victoria +Baalbec +Baardwyck +Baardwyk +Baas +Babb +Babbage +Babbe +Babbin +Babbington +Babbit +Babbit Bridge +Babbs Creek +Babcock +Babe Ruth +Babe Ruth Park +Babe Thompson +Babel +Babel Slough +Baben +Baber +Babero +Babes +Babetta +Babich +Babicz +Babington +Babmaes +Babs +Babson +Babson College +Babula +Babylon +Babylon Farmingdale +Babyn +Bacall +Baccarat +Baccharis +Bacchetti +Bacchus +Bach +Bache +Bachelder Ranch +Bachell +Bacheller +Bachelor +Bachelor Grove +Bachelors +Bachman +Bacigalup +Bacigalupi +Bacinada +Back +Back Acton +Back Ainsworth +Back Albert +Back Alexander +Back Alfred +Back Alice +Back Alicia +Back Alma +Back Anson +Back Archery +Back Arnold +Back Ashbee +Back Ashville +Back Ashworth +Back Astley +Back Aston +Back Atlanta +Back Austhorpe +Back Aviary +Back Baldwin +Back Banbury +Back Banstead +Back Bath +Back Baxendale +Back Bay +Back Bay Beach +Back Baythorpe +Back Belmont +Back Bennetts +Back Birley +Back Blackbank +Back Blackburn +Back Bolton +Back Bowen +Back Bowling Green +Back Bradford +Back Bride +Back Bridge +Back Bright +Back Bristol +Back Bromwich +Back Broom +Back Brudenell +Back Brunswick +Back Burley +Back Burnaby +Back Bury +Back Camberley +Back Carl +Back Carter +Back Castle +Back Cautley +Back Cecil +Back Ceder +Back Chalfont +Back Chapel +Back Charlton +Back Chatsworth +Back Chestnut +Back China +Back Church +Back Clarence +Back Clarendon +Back Clegg +Back Clipston +Back Cobden +Back Colenso +Back Collings +Back Coniston +Back Conway +Back Coop +Back Corson +Back Cotton +Back Cranbrook +Back Crawford +Back Crescent +Back Croft +Back Cromer +Back Cross Flatts +Back Cross Green +Back Crown +Back Crumpsall +Back Darcy +Back Darley +Back Darwen +Back Dawlish +Back Dean Church +Back Dent +Back Dobie +Back Dorset +Back Duncan +Back Duxbury +Back East Park +Back Eastbank +Back Eccles +Back Ecclesburn +Back Eckersley +Back Eddisbury +Back Eden +Back Edinburgh +Back Elsworth +Back Empire +Back Ena +Back Eskrick +Back Estcourt +Back Fairhaven +Back Fletcher +Back Florence +Back Fortune +Back Frances +Back Fylde +Back Garton +Back Gaskell +Back Gate +Back Gaythorne +Back George +Back George Barton +Back Gladstone +Back Glen Bott +Back Glossop +Back Gloster +Back Graveley +Back Green +Back Greenhalgh +Back Greenland +Back Gresham +Back Grove +Back Hadwin +Back Haigh +Back Halliwell +Back Halstead +Back Hargreaves +Back Hartley +Back Haydock +Back Headingley +Back Heddon +Back Hessle +Back High +Back High Bank +Back Higher Darcy +Back Highfield +Back Highthorne +Back Hilden +Back Hilton +Back Hind +Back Holly +Back Hope +Back Horsa +Back Howarden +Back Howcroft +Back Hulme +Back Irlam +Back Ivanhoe +Back Ivy Bank +Back James +Back Jubilee +Back Karnak +Back Keighley +Back Kelso +Back Kendal +Back Kingsley +Back Kitson +Back Knowl +Back Landseer +Back Lark +Back Latham +Back Leachfield +Back Leatham +Back Lena +Back Lever Hall +Back Lindley +Back Lodge +Back Long +Back Longworth +Back Lord +Back Loxham +Back Lucas +Back Luton +Back Lytton +Back MAsrhall +Back Mackenzie +Back Manchester +Back Manor +Back Market +Back Marshall +Back Mary +Back Massie +Back Maud +Back Maxwell +Back Mayfield +Back Mayville +Back Maze +Back Meynell +Back Milan +Back Milner +Back Monk Bridge +Back Morritt +Back Nansen +Back Nelson +Back Nevada +Back New York +Back Newton +Back Norris +Back Norwood +Back Nunington +Back Nunroyd +Back Olaf +Back Olga +Back Ollerton +Back Outwood +Back Palm +Back Parkdale +Back Parkville +Back Parnaby +Back Pawson +Back Pine +Back Pleasant +Back Poplar +Back Portugal +Back Preston +Back Primrose +Back Quay +Back Quebec +Back Queen +Back Rainshaw +Back Ranch +Back Rawson +Back Rawsthorne +Back River +Back River Neck +Back Romer +Back Rosamond +Back Rose +Back Roseberry +Back Ryefield +Back Sandhurst +Back Sandy Bank +Back Sapling +Back Savile +Back Scowcroft +Back Seaforth +Back Sefton +Back Seymour +Back Sharman +Back Sholebroke +Back Short +Back South View +Back Southfield +Back Springfield +Back Sunnybank +Back Sunnyside +Back Sutcliffe +Back Talbot +Back Teak +Back Tempest +Back Thicketford +Back Thorn +Back Thorns +Back Thorpe +Back Tong +Back Tonge Old +Back Torr +Back Trafford +Back Turner +Back Ulleswater +Back Union +Back Uttley +Back Vernon +Back Vickerman +Back Victoria +Back Viking +Back Viola +Back Walmsley +Back Walnut +Back Wapping +Back Wardle +Back Wash +Back Water +Back Waverley +Back Webster +Back Wesley +Back Westbury +Back Westfield +Back Westminster +Back Wetherby +Back Wheatfield +Back Wickham +Back Wilton +Back Wolfenden +Back Wood +Back Woodgate +Back Worcester +Back Wordsworth +Back Wright +Back Yates +Back York +Backer Ranch +Backiel +Backlick +Backlund +Backpack +Backriver +Backstone Gill +Backstrad +Backus +Backus Farm +Backwater +Backwoods +Bacon +Bacon Island +Bacon Race +Bacons +Bacton +Bacup +Bad Munstereifel +Badajos +Badajoz +Badcoe +Baddacook Pond +Baddeley +Badding +Baddow +Baddow Hall +Baddow Place +Bade +Badeau +Baden +Baden Naylor +Baden Powell +Baden Spring +Baden Westwood +Badenoch +Bader +Badgally +Badgemore +Badger +Badger Creek +Badger Hall +Badger Pass +Badger Valley +Badger Woods +Badgers +Badgerwood +Badgery +Badgley +Badham +Badian +Badin +Badingham +Badlands +Badlis +Badminton +Badsell +Badshot Lea +Badsworth +Badto +Baemar +Baer +Baert +Baffin +Baffin Bay +Baford +Bafp +Bag +Bagala +Bagatelle +Bagdad +Bagdaly +Bagel +Baggett +Baggins +Baghill +Bagley +Bagleys +Bagnell +Bago +Bagot +Bagpipe +Bags +Bagshaw +Bagshawe +Bagshill +Bagshot +Bagshotte +Bagslate Moor +Bagstock +Baguley +Bagwell +Bahama +Bahia +Bahl +Bahr +Bahram +Baier +Baigents +Baigorry +Baildon +Bailes +Bailey +Bailey Ranch +Bailey Ridge +Baileyana +Baileys +Baileys Crossing +Bailin +Bailiwick +Baillie +Baily +Baimbridge +Bain +Bain Bridge +Bain Ranch +Bainbridge +Bainbrigge +Bainbrook +Baincroft +Baine +Baines +Bainter +Bainton +Baio +Bair Island +Baird +Bairin +Bairn +Baisley +Baiting Place +Baitx +Baizdon +Baja +Baja Sol +Bajada +Baje Industrial +Bajo +Bajor +Bajt +Baker +Baker Bridge +Baker Hill +Baker Park +Bakers +Bakersfield +Bakersmill +Bakersville +Bakestonedale +Bakewell +Bakhouse +Bakken +Bakley +Bal Harbor +Balaam +Balaams +Balaclava +Balaka +Balaming +Balanada +Balance +Baland +Balantine +Balantre +Balas +Balbach +Balbec +Balbeek +Balboa +Balcarres +Balceta +Balch +Balchen +Balchier +Balchins +Balclutha +Balcom +Balcomb +Balcombe +Balcome +Balcorne +Bald Cypress +Bald Eagle +Bald Eagle School +Bald Hill +Bald Nob +Bald Pate +Bald Rock +Balder +Balderstone +Balderton +Baldi +Baldin +Baldo +Baldock +Baldocks +Baldridge +Baldrine +Baldur Park +Baldwin +Baldwin Dam +Baldwin Hill +Baldwin Lake +Baldwins +Baldwyns +Baldy +Bale +Balenese +Balentine +Baler +Baleri Ranch +Bales +Baley Bridge +Balfanz +Balfe +Balfern +Balfour +Balgang +Balgonie +Balgowan +Balgowlah +Balgownie +Balgreen +Balham High +Balham Park +Balhan +Bali +Balint +Balintore +Baliol +Balis +Balk +Balkan +Ball +Ball Hill +Ball Park +Balla +Ballad +Ballamore +Ballance +Ballanda +Ballandella +Ballantine +Ballantrae +Ballantrae Farm +Ballantre +Ballantree +Ballantyne +Ballar +Ballarat +Ballard +Ballards +Ballardvale +Ballast +Ballast Point +Ballater +Ballbrook +Ballena +Ballena Bay +Ballencrieff +Ballenger +Ballens +Ballentine +Balleratt +Ballew +Ballfield +Ballina +Ballindine +Ballingdon +Ballinger +Ballingswood +Balliol +Ballister +Ballman +Balloch +Ballogie +Ballord +Ballou +Ballpark +Ballpate Hill +Balls Bluff +Balls Ford +Balls Head +Balls Hill +Balls Pond +Ballsten +Ballston +Ballum +Ballville +Ballwood +Bally Bunion +Ballybunion +Ballycastle +Ballycor +Ballydrain +Ballymena +Ballymore +Ballyshannon +Balm +Balma +Balmain +Balmanringa +Balmaringa +Balme +Balmer +Balmerino +Balmes +Balmfield +Balmino +Balmoral +Balmoral Forest +Balmoral Greens +Balmoral Woods +Balmore +Balmy +Balnacraig +Balnew +Balog +Balowrie +Balra +Balsa +Balsam +Balsamo +Balsamtree +Balsamwood +Balsawood +Balshaw +Balsm +Balsom +Balston +Balstonia +Balsum +Baltan +Baltes +Baltic +Baltimore +Baltimore Annapolis +Baltimore Hill +Baltimore Washington +Baltus +Baltusrol +Baltz +Baltzer +Balyata +Balzer +Bamarcia +Bambara +Bamber +Bamberg +Bamberger +Bambi +Bamboo +Bambra +Bambrick +Bambridge +Bamburgh +Bambury +Bamfield +Bamford +Bamm Hollow +Bampton +Ban Tara +Banana Grove +Banaro +Banas +Banbal +Banbury +Banbury Ridings +Banchio +Banchory +Bancker +Bancroft +Bancroft Tower +Bancrofts +Band +Bandain +Bandalong +Bandera +Banderra +Bandicoot +Bandley +Bando +Bandol +Bandon +Bandoni +Bandy +Bandy Run +Bane +Baneberry +Banes +Banff +Banff Vista +Banfield +Banfill +Bangalay +Bangalla +Bangalore +Bangalow +Bangert +Bangor +Bangs +Banim +Banister +Baniulis +Banjo +Bank +Bank Bridge +Bank Field +Bank Gate Royd +Bank Hall +Bank Hey Bottom +Bank Hill +Bank House +Bank Mill +Bank Side +Bank Top +Bank Vale +Bankart +Banker +Bankfield +Bankfoot +Bankhall +Bankhead +Bankhouse +Bankley +Banks +Banksfield +Banksia +Bankside +Bankston +Bankton +Bankview +Bankwell +Banky +Banleigh +Bannach +Bannacle Hill +Bannan +Bannard +Bannehr +Banneker +Banner +Banner Farm +Bannerman +Bannerwood +Banning +Bannington +Bannister +Bannisters +Bannock +Bannockburn +Bannon +Bannon Creek +Bannon Off Morse +Banool +Banquo +Banshee +Banshire +Bansom +Banstock +Banta +Bantam Grove +Bantas Point +Banters +Banti +Banting +Bantle Farm +Banton +Bantry +Bantry Bay +Banwell +Banyan +Banyan Tree +Banyard +Banyon +Banyon Ridge +Bapaume +Baptist +Baptista +Bar +Bar Beach +Bar Harbor +Bar Harbour +Bar King +Bar Oak +Bar du +Baragoola +Barambah +Baranbali +Barandas +Baranga +Barangaroo +Baranof +Barb Hill +Barb Werner +Barbadoes +Barbadon +Barbados +Barbara +Barbara Ann +Barbara D +Barbara Dale +Barbara Jean +Barbara Lee +Barbary +Barbee +Barbel +Barber +Barbera +Barberie +Barberry +Barbers +Barbers Corner +Barbers Point +Barbers Wood +Barbersville +Barbery +Barbettini +Barbey +Barbi +Barbican +Barbie +Barbieri +Barbour +Barbour Pond +Barbra +Barbrook +Barbud +Barca +Barcaglia +Barcaly +Barcellona +Barcells +Barcelona +Barchard +Barchester +Barcheston +Barcicroft +Barclay +Barclays +Barcliffe +Barclose +Barco +Barcom +Barcombe +Barcoo +Barcroft +Barcroft Mews +Barczewski +Bard +Bardalino +Bardard +Barden +Bardenville +Bardet +Bardfield +Bardhurst +Bardin +Bardion +Bardmour +Bardney +Bardo +Bardolier +Bardolino +Bardolph +Bardon +Bardoo +Bards +Bardsey +Bardsley +Bardsley Gate +Bardsley Vale +Bardu +Bardue +Bardwell +Bardy +Bare +Bare Cove +Bare Cove Park +Bare Hill +Bare Island +Bare Sky +Bareena +Barefoot +Barefoot Hill +Barehill +Barell +Barellan +Barenscheer +Barett +Barfett +Barff +Barfield +Barford +Barforth +Bargagni +Barge +Barge House +Barge Pier +Bargeman +Barger +Bargers +Bargmann +Bargo +Bargrove +Barham +Barharbor +Barhatch +Bari +Bariadoa +Barina +Barina Downs +Baring +Baring Ridge +Baringa +Barington +Bariston +Barium +Bark +Bark Burr +Bark Hart +Barkala +Barkalow +Barkdoll +Barkduk +Barkei +Barker +Barker Hill +Barkers +Barkers Pt +Barkett +Barkfield +Barkham +Barkhart +Barking +Barkingside High +Barkl +Barkley +Barkley Gate +Barkly +Barksdale +Barksdale Farm +Barkway +Barkwell +Barkwood +Barkworth +Barlas +Barlborough +Barlea +Barleau +Barletta +Barley +Barley Croft +Barley Field +Barley Hall +Barley Hill +Barley Mow +Barley Ponds +Barleycastle +Barleycorn +Barleycroft +Barleylands Farm +Barleymow +Barleywood +Barlik +Barlina +Barling +Barlings +Barlow +Barlow Fold +Barlow Hall +Barlow Moor +Barlow Park +Barlow Wood +Barlowe +Barmeston +Barmhouse +Barming +Barmouth +Barn +Barn Cottage +Barn Croft +Barn Hill +Barn House +Barn Owl +Barn Ridge +Barn Swallow +Barn Wood +Barna +Barnabas +Barnabe +Barnabe Mountain Fire +Barnabus Mill +Barnaby +Barnaby Run +Barnack +Barnacre +Barnacres +Barnard +Barnardo +Barnards +Barnboard +Barnbrough +Barnby +Barncleuth +Barncroft +Barndance +Barnecat +Barnegat +Barnehurst +Barnell +Barner +Barnert +Barnes +Barnes Cray +Barnes Hill +Barnes Lake +Barnes Mill +Barnes Wallis +Barnesdale +Barneson +Barnestead +Barnesville +Barneswell +Barneswood +Barnet +Barnet Chesterfield +Barnet Salisbury +Barnet Church Wood +Barnet Gate +Barnet High +Barnet Park +Barnet Side +Barnett +Barnett Valley +Barnett Wood +Barnetts +Barnetts Wood +Barneveld +Barney +Barney Hill +Barnfield +Barngate +Barnhall +Barnham +Barnhart +Barnheisel +Barnhill +Barnhouse +Barnhurst +Barnida +Barnier +Barnmead +Barns +Barnsboro +Barnsbury +Barnsdale +Barnsfield +Barnsfold +Barnside +Barnsley +Barnsole +Barnstable +Barnstaple +Barnstead +Barnston +Barnswallow +Barnum +Barnums +Barnwall +Barnwell +Barnwood +Barnyard +Baroda +Barola +Barolo +Barombah +Baron +Baron Cameron +Baron Kent +Baron Park +Baronbali +Barone +Baroness +Baronet +Baronhurst +Baronnel +Barons +Barons Court +Baronsfield +Baronsmead +Baronsmere +Barooga +Baroona +Baroque +Barossa +Barott +Barouche +Barque Hill +Barr +Barr Creek +Barr Elms +Barra +Barrabooka +Barracane +Barrack +Barracks +Barragulung +Barranca +Barraran +Barras +Barras Garth +Barrass +Barratt +Barrawinga +Barre +Barrel +Barrel House +Barremma +Barrena +Barrenger +Barrenjoey +Barrensdale +Barret +Barrett +Barrette +Barretto +Barretts +Barretts Green +Barretts Mill +Barreville +Barrfield +Barrhurst +Barri +Barrick +Barrie +Barrie Lynn +Barrier +Barrington +Barrington Bourne +Barrington Bridge +Barrington Hills +Barrington Point +Barrister +Barrley +Barroilhet +Barroll +Barron +Barron Field +Barron Heights +Barron Park +Barrons Reach +Barros +Barrow +Barrow Bridge +Barrow Furnace +Barrow Green +Barrow Hall +Barrow Hill +Barrow Point +Barrow on Duxbury +Barrowby +Barrowfield +Barrowgate +Barrows +Barrs +Barrs Fold +Barrsbrook Farm +Barrule +Barrus +Barry +Barry Point +Barrymeade +Barrymore +Barrypoint +Barrys Hill +Barsalugia +Barsby +Barsden +Barse +Barsenden +Barsham +Barson +Barstable +Barston +Barstow +Bart +Barta +Bartch +Barteau +Bartel +Bartell +Bartelmy +Bartels +Bartelt +Barter +Barth +Barth Pond +Bartha +Barthel +Barthelone +Barthold +Bartholdi +Bartholf +Bartholomew +Bartholomew Fair +Barthorpe +Bartina +Bartle +Bartlemore +Bartleson +Bartlet +Bartlets +Bartlett +Bartletts +Bartley +Bartman +Barto +Bartol +Bartolini +Bartolomei +Barton +Barton Creek +Barton Dock +Barton Hall +Barton Hill +Barton Manor +Bartons +Bartosh +Bartow +Bartram +Bartrams +Bartrip +Bartsch +Bartson +Barttelot +Bartz +Barunga +Barway +Barwell +Barwick +Barwick Main +Barwon +Barwon Park +Barwood +Basalt +Basalt Rock Company +Basbow +Basch +Bascom +Bascombe +Base +Basel +Baseline +Basewood +Basford +Bashall +Bashaw +Basher +Bashford +Bashford Barn +Basil +Basildon +Basile +Basilica +Basill +Basilon +Basils +Basilwood +Basin +Basing +Basingbourne +Basingfield +Basinghall +Basingstoke +Baskenridge +Baskerville +Basket +Basket Ring +Baskin +Baskin Service +Basking +Basking Ridge +Basler +Baslers +Baslow +Basmore +Basque +Bass +Bass Lake +Bass Point +Bass Pond +Bass Pro +Bass River +Bass Rock +Bassant +Basse +Bassel +Bassenthwaite +Basset +Bassetsbury +Bassett +Bassett Creek +Bassett Crk +Bassetts +Bassford +Bassil +Bassin +Bassingbourn +Bassingham +Bassler +Basswood +Bast +Bastable +Basted +Basten +Bastia +Bastian +Bastille +Bastion +Bastogne +Baston +Baston Manor +Bastona +Bastoni +Bastwick +Basuto +Bata +Bataan +Batacao +Batavia +Batchelder +Batchelder Park +Batcheller +Batchelor +Batchelors +Batchelors Choice +Batchwood +Batchworth +Batcliffe +Bate +Bate Bay +Bateman +Batemans +Batemill +Bates +Bates Farm +Bates Grove +Bates Park +Bates Point +Batesole +Bateson +Bateswell +Batey +Batford +Bath +Bath Hard +Bath House +Batham Gate +Bather +Bathgate +Bathhurst +Bathing Beach +Batho +Bathol +Baths +Bathurst +Batista +Batley +Batley Commercial +Batley Cross Bank +Batman +Baton +Baton Rouge +Batridge +Batson +Batsworth +Batt +Battaglia +Battalion +Battee +Batten +Batten Hollow +Battenburg +Batter +Battersby +Battersea +Battersea Bridge +Battersea Church +Battersea Park +Battery +Battery Blaney +Battery Chamberlin +Battery Cranston +Battery Dynamite +Battery East +Battery Heights +Battery Ridge +Battery Safford +Battery Wagner +Batterymarch +Batti +Battin +Battishill +Battle +Battle Bridge +Battle Creek +Battle Dance +Battle Flagg +Battle Green +Battle Ridge +Battle Rock +Battlebridge +Battledean +Battlefield +Battlefields +Battlehill +Battlement +Battles +Battles Farm +Battlesden +Battlesmere +Battock +Batts +Batts Bridge +Batty +Battye +Bauer +Bauers Farm +Baugh +Baugher +Baugher Farm +Baughman +Baulkham Hills +Baum +Bauman +Baumann +Baumans +Baumbach +Baumberg +Baumer +Baumert +Baumgartner +Baur +Bausell +Bausum +Bautista +Bavant +Bavaria +Bavarian Shores +Bavent +Bavin +Bawan +Bawdale +Bawn +Baxendale +Baxter +Baxters +Bay +Bay Beach +Bay Breeze +Bay Canyon +Bay Cliff +Bay Club +Bay Colony +Bay Creek +Bay Crest +Bay Dale +Bay Edge +Bay Farm +Bay Farms +Bay Flat +Bay Forest +Bay Front +Bay Green +Bay Harbor +Bay Harbour +Bay Haven +Bay Head +Bay Heights +Bay Highlands +Bay Hill +Bay Hills +Bay Horse +Bay Laurel +Bay Meadows +Bay Park +Bay Path +Bay Pond +Bay Reef +Bay Ridge +Bay Shore +Bay Side +Bay Terrace +Bay To Bay +Bay Town +Bay Tree +Bay Valley +Bay View +Bay View Farm +Bay View Point +Bay Vista +Bay Water +Bay Wood +Bayard +Baybell +Bayberrie +Bayberry +Bayberry Hill +Bayberry Ridge +Baybriar +Baybridge +Baybrook +Baybury +Baybutt +Baychester +Baycliff +Baycliffe +Baydon +Bayeau +Bayer +Bayfair +Bayfield +Bayford +Bayfront +Bayhall +Bayham +Bayhead +Bayhill +Bayhills +Bayhorne +Bayhurst +Baylands +Baylawn +Baylee +Bayles +Bayless +Bayley +Baylie +Baylight +Bayliner +Baylis +Bayliss +Baylor +Bayly +Baymeadow +Baynard +Bayne +Baynes +Bayns Hill +Baynton +Bayo +Bayo Vista +Bayona +Bayonne +Bayou +Bayou Bend +Baypath +Baypoint +Baypoint Village +Baypointe +Bayport +Bayrd +Bayridge +Bayshire +Bayshore +Bayside +Bayside Beach +Bayside Park +Bayston +Bayswater +Baytech +Baythorne +Baythorpe +Baytomac Farms +Bayton +Baytree +Bayview +Bayview Beach +Bayview Hill +Bayview Hills +Bayview Park +Bayville +Bayville Park +Baywalk +Baywater +Bayway +Baywind +Baywolf +Baywood +Baywood Shores +Baywoods +Bazeley +Bazentin +Bazley +Bazz +Bb +Bea +Bea Kay +Beach +Beach Bluff +Beach Channel +Beach Haven +Beach Hill +Beach Lake +Beach Mill +Beach Park +Beach Pines +Beach Plum +Beach Point +Beach Side +Beach Spring +Beach View +Beacham +Beachamwell +Beachborough +Beachcomber +Beachcroft +Beachfield +Beachfront +Beachhall +Beachland +Beachler +Beachley +Beachmont +Beachnut +Beachplum +Beachs +Beachside +Beachview +Beachview Creek +Beachville +Beachway +Beachwood +Beachwood Park +Beachy +Beacom +Beacon +Beacon Bay +Beacon Heights +Beacon Hill +Beacon Hollow +Beacon Light +Beacon Oak +Beacon Park +Beacon Point +Beacon Pond +Beacon Ridge +Beacon Shores +Beacon View +Beaconfield +Beaconridge +Beaconsfield +Beaconsfield Common +Beaconsfield Terrace +Beacontree +Beaconwood +Beacrane +Beadel +Beadham +Beadle +Beadles +Beadlow +Beadman +Beadnell +Beadon +Beaford +Beaghan +Beagles Wood +Beak +Beal +Beale +Beales +Beales Wood +Bealey +Beall +Beall Mountain +Beall Spring +Bealle Hill +Beallsville +Bealmear Mill +Beals +Beam +Beaman +Beamer +Beames +Beaminster +Beamis +Beamish +Beamon +Beamont +Beamsley +Bean +Bean Creek +Bean Field +Bean Hill +Bean Hill Orchard +Bean Hollow +Bean Leach +Beancroft +Beane +Beanes +Bear +Bear Brook +Bear Canyon +Bear Creek +Bear Creek Canyon +Bear Cub +Bear Flag +Bear Forest +Bear Glen +Bear Gulch +Bear Hill +Bear Island +Bear Min +Bear Mountain +Bear Oaks +Bear Paw +Bear Ridge +Bear River +Bear Swamp +Bear Tooth +Bear Valley +Bearce +Bearcloud +Beard +Beardall +Beardell +Bearden +Beardon +Beards +Beards Creek +Beards Point +Beardslee +Beardsley +Beardsmore +Beardwood +Bearfield +Bearfoot +Bearfort +Bearhurst +Bearinda +Bearing +Bearpath +Bears +Bears School +Bearse +Bearskin Farm +Bearsted +Bearton +Bearwood +Bearwoods +Beasley +Beathwaite +Beatie +Beatrice +Beatrice Wignall +Beatricia +Beatrix +Beatriz +Beatson +Beattie +Beatty +Beatty Ridge +Beau +Beau Bien +Beau Brummel +Beau D Rue +Beau Meade +Beau Monde +Beau Pre +Beau Ridge +Beaubien +Beauchamp +Beauchamps +Beaudet +Beaudin +Beaudry +Beaufield +Beauford +Beauforest +Beaufort +Beaufoy +Beaufront +Beaulieu +Beaumant +Beaumaris +Beaumeadow +Beaumis +Beaumond +Beaumont +Beaumont Canyon +Beaumont Hall +Beaumont Park +Beauport +Beauregard +Beaurepaire +Beausoleil +Beauteau +Beauty Beach +Beauty Point +Beautys Hill +Beauval +Beauvale +Beauvoir +Beaux Arts +Beaven +Beaver +Beaver Brook +Beaver Creek +Beaver Dam +Beaver Dam Park +Beaver Ford +Beaver Heights +Beaver Hill +Beaver Hollow +Beaver Knoll +Beaver Meadow +Beaver Mill +Beaver Park +Beaver Pond +Beaver Ridge +Beaver Run +Beaverbank +Beaverbrok +Beaverbrook +Beavercreek +Beaverdale +Beaverdam +Beaverkill +Beavers +Beaverwood +Beavours +Beawick +Bebbington +Bebe +Bebelong +Bebout +Becado +Beccles +Becerra +Becharry +Bechaud +Bechert +Bechstein +Bechtel +Bechtold +Beck +Beck Creek +Beckbridge +Beckenham +Beckenham Hill +Becker +Becker Farm +Beckerle +Beckers Green +Beckert +Becket +Becket Meadow +Beckett +Beckett Crossing +Becketts +Beckfield +Beckfoot +Beckford +Beckham +Beckhaus +Beckingham +Beckington +Beckland +Beckler +Beckley +Becklow +Beckman +Becknel +Becks +Beckton +Beckway +Beckwith +Beckworth +Becky +Becky Lynn +Beclan +Beclands +Becola +Becondale +Becontree +Becontree Lake +Bedal +Bedale +Bedder +Beddington +Beddington Farm +Beddlestead +Beddoo +Bede +Bedell +Bedells +Bedens +Bederwood +Bedevere +Bedfont +Bedford +Bedford Park +Bedfordshire +Bedgebury +Bedivere +Bedlam +Bedle +Bedlington +Bedloes +Bedlow +Bedmond +Bednal +Bedonwell +Bedrock +Bedser +Bedwardine +Bedwell +Bedwin +Bedwins +Bee +Bee Bee +Bee Biology +Bee Fold +Bee Hive +Bee Oak +Beebe +Beeby +Beech +Beech Bottom +Beech Creek +Beech Down +Beech Farm +Beech Forest +Beech Glen +Beech Hall +Beech Hangers +Beech Hayes +Beech Hill +Beech Hollow +Beech Housre +Beech Hyde +Beech Park +Beech Ridge +Beech Spring +Beech Tree +Beech Trees +Beecham +Beechbank +Beechbrook +Beechcraft +Beechcrest +Beechcroft +Beechdale +Beechdrop +Beechen +Beechen Bank +Beechenlea +Beecher +Beeches +Beeches Farm +Beechfern +Beechfield +Beechgreen +Beechgrove +Beechhill +Beechhurst +Beechin Wood +Beeching +Beechknoll +Beechland +Beechlands +Beechmont +Beechmore +Beechnut +Beecholme +Beechpark +Beechstone +Beechtree +Beechview +Beechvue +Beechway +Beechwood +Beechworth +Beechy +Beechy Lees +Beecot +Beecroft +Beede +Beedell +Beedingwood +Beedle +Beedon +Beeger +Beehag +Beehive +Beehive Beach +Beehrle +Beekay +Beekey +Beekman +Beekman Hill +Beel +Beelar +Beelard +Beeleigh +Beeler +Beeley +Beeline +Beelong +Beeman +Beemer +Beemera +Beemra +Beers +Beesfield +Beeson +Beesonend +Beeston +Beet +Beet Wagon +Beeth +Beethoven +Beever +Beffa +Bega +Begen +Beggarhouse +Beggars +Beggars Hill +Beggarsbush +Beggers Bush +Beggs +Begier +Begonia +Behan +Beharrel +Beharrell +Behler +Behm +Behmer +Behn +Behnke +Behoes +Behr +Behrendt +Behrens +Behrns +Behun +Bei +Beige +Beiling +Beinoris +Beira +Beiriger +Beith +Beitzel +Bejay +Bekeswell +Bel Air +Bel Air Plantation +Bel Aire +Bel Ayre +Bel Canto +Bel Escou +Bel Estos +Bel Glade +Bel Mar +Bel Marin Keys +Bel Pre +Bel Red +Bel Roma +Bela +Belah +Belair +Belaire +Belanger +Belar +Belarre +Belbeck +Belburn +Belcamp +Belchamps +Belchams +Belcher +Belcher Farm +Belchers +Belclare +Belconte +Belcot +Belcourt +Belcrest +Belcroft +Beldam +Beldam Bridge +Beldams +Belden +Belder +Beldham +Beldhams +Beldin +Belding +Beldon +Belec +Belemba +Belevedere +Belfair +Belfairs +Belfairs Park +Belfast +Belfield +Belfield Old +Belfiore +Belford +Belfort +Belfry +Belgarden +Belgaro +Belgatos +Belgenny +Belgian +Belgica +Belgium +Belglen +Belgrade +Belgrave +Belgravia +Belgreen +Belgrove +Belham +Belhaven +Belhurst +Belick +Belinda +Belinder +Belinus +Belisle +Belita +Beliveau +Belknap +Bell +Bell Air +Bell Bluff +Bell Branch +Bell Bridge +Bell Canyon +Bell Chase +Bell Clough +Bell Creek +Bell Executive +Bell Farm +Bell Flower +Bell Foundry +Bell Green +Bell Hill +Bell House +Bell Laboratories +Bell Meadow +Bell Oak +Bell Oaks Estates +Bell Rock +Bell Rose +Bell Tower +Bell Tree +Bell Vale +Bell Vue +Bella +Bella Casa +Bella Coola +Bella Lago +Bella Madeira +Bella Oaks +Bella Terra +Bella Tuscany +Bella Villa +Bella Vista +Bellafiore +Bellagio +Bellain +Bellair +Bellaire +Bellaire Hills +Bellam +Bellambi +Bellamere +Bellamy +Bellamy Farm +Bellanca +Belland +Bellantoni +Bellara +Bellasis +Bellaterea +Bellaterra +Bellatrix +Bellavia +Bellavista +Bellbird +Bellbrook +Bellbrooke +Bellcast +Bellcastle +Bellclose +Belle +Belle Aire +Belle Ami +Belle Angela +Belle Chasse +Belle Cote +Belle Crest +Belle Fontaine +Belle Foret +Belle Grae +Belle Grove +Belle Haven +Belle Isle +Belle Marie +Belle Meade +Belle Monti +Belle Plaine +Belle Plains +Belle Point +Belle Pond +Belle Roche +Belle Terra +Belle Terre +Belle View +Belle Vista +Belle Vue +Belle of Georgia +Belleair +Belleaire +Belleau +Belleau Woods +Bellechase +Bellecrest +Bellefair +Bellefield +Bellefield Park +Bellefields +Belleflower +Bellefonte +Belleforest +Belleforte +Bellegrove +Bellemaine +Bellemeade +Bellenden +Belleplaine +Beller +Bellerive +Bellerose +Belles +Belleterre +Belleto +Belletto +Bellevale +Belleverde +Belleview +Belleville +Bellevista +Bellevue +Bellevue Hill +Bellevue Park +Bellevue Redmond +Bellew +Bellewood +Belleza +Bellfield +Bellfields +Bellflower +Bellgrove +Bellham +Bellhaven +Bellhouse +Bellhurst +Belli +Bellina +Bellina Canyon +Bellingara +Bellingdon +Bellinger +Bellingham +Bellingrath +Bellington +Bellman +Bellmarsh +Bellmeade +Bellmere +Bellmill +Bellmont +Bellmore +Bellmount Wood +Bello +Bellombi +Bellomo +Bellomy +Bellona +Belloreid +Bellot +Bellotti +Bellows +Bellows Hill +Bellplaine +Bellport +Bellridge +Bellrive +Bellrock +Bellrose +Bells +Bells Croft +Bells Hill +Bells Mill +Bells Ridge +Bellsbrae +Bellstone +Bellswood +Bellthorne +Belltower +Bellue +Belluno +Belluscio +Bellvale +Bellview +Bellville +Bellvista +Bellvue +Bellwood +Belmar +Belmart +Belmer +Belmers +Belmill +Belmohr +Belmond +Belmonde +Belmont +Belmont Bay +Belmont Canyon +Belmont Grove +Belmont Harbor +Belmont Landing +Belmont Park +Belmont Place +Belmont Ridge +Belmont Woods +Belmore +Belnap +Belnay +Belnel +Belnor +Beloit +Belot +Belpark +Belper +Belport +Belridge +Belrose +Belsham +Belshaw +Belsize +Belson +Belsteads Farm +Belswaine +Belswains +Belt +Beltagh +Beltana +Beltane +Belter +Beltinge +Beltline +Belton +Beltrami +Beltran +Beltring +Belts +Beltsville +Beltwood +Beltz +Belva +Belvale +Belvedere +Belverere +Belvidere +Belvidere Line +Belview +Belvoir +Belvoir Farm +Belvoir Woods +Belvor +Belvue +Belvue Close Belvue +Belward Campus +Belwood +Bembe Beach +Bembridge +Bement +Bemerton +Bemis +Bemis Heights +Bemish +Bempton +Bemrose +Bemsted +Bemuth +Ben +Ben Boyd +Ben Eden +Ben Franklin +Ben Howard +Ben Jones +Ben Jonson +Ben Ledi +Ben Levin +Ben Lomond +Ben Lomond Park +Ben Lomond Toll +Ben More +Ben Nevis +Ben Oak +Ben Oaks +Ben Roe +Bena +Benalla +Benalong +Benares +Benaroon +Benassi +Benaud +Benavente +Benbo +Benbow +Benbrick +Benbrook +Benburb +Benbury +Bench +Benchill +Benchleys +Benchmark +Bencich +Bencliffe +Bencombe +Bencoolen +Bencroft +Bend +Bend Circle +Bend of River +Benda +Bendale +Bendall +Bendemeer +Bendemere +Bender +Benders +Bendigo +Bending +Bendish +Bendix +Bendlowes +Bendmore +Bendorf +Bendysh +Bendywine +Benecia +Benedetti +Benedick +Benedict +Benedictine +Benefit +Benefly +Benelli +Benelong +Benenden +Benenson +Benet +Benetfield +Benets +Benett +Benevides +Benfield +Benfleet +Benfleet Park +Benford +Benforest +Bengal +Bengarth +Bengeo +Bengeworth +Bengeyfield +Benghazi +Bengloe +Benham +Benhams +Benhardt +Benhenry +Benhill +Benhooks +Benhurst +Benich +Benicia +Benine +Beninford +Bening +Beningfield +Benington +Benita +Benita Fitzgerald +Benito +Benjamin +Benjamin Day +Benjamin Franklin +Benjamin Kidder +Benjamins +Benjoe +Benkert +Benledi +Benmere +Benmor +Benmore +Benn +Bennacott +Bennalong +Benndorf +Bennel +Bennelong +Benner +Bennerley +Bennet +Bennetsfield +Bennett +Bennett End +Bennett Hill +Bennett Meadows +Bennett Ridge +Bennett Valley +Bennett View +Bennetta +Bennetts +Bennetts End +Bennetts Grove +Benning +Benningfield +Benningholme +Benninghton +Bennington +Bennington Hollow +Bennington Woods +Bennion +Bennison +Bennit +Benny +Benoit +Benoni +Benover +Benoy +Benris +Bens +Bensbach +Bensham +Bensham Manor +Bensin +Benskin +Benskins +Bensley +Benslow +Benson +Benson Ferry +Bensonhurst +Benstone +Bensville +Bent +Bent Bough +Bent Brook +Bent Creek +Bent Cross +Bent Fold +Bent Grass +Bent Hill +Bent Maple +Bent Oak +Bent Ridge +Bent Spur +Bent Tree +Bent Tree Hills +Bent Twig +Bent Water +Bent Willow +Bentay +Bentcliffe +Bentella +Bentfield +Bentgate +Benthal +Bentham +Bentinck +Bentink +Bentley +Bentley Hall +Bentley Heath +Bentley Ridge +Bentley Village +Bently +Bentnor +Bento +Bentoak +Benton +Benton Creek +Benton Park +Benton Square +Bentonbrook +Bentree +Bentridge +Bentry +Bents +Bentsbrook +Bentside +Bentson +Bentswood +Benttree +Bentwaters +Bentwillow +Bentwood +Bentwoods +Bentworth +Benty +Bentzen +Benvenue +Benwell +Benwerrin +Benworth +Benyon +Benz +Benziger +Benzo +Benzon +Bepler +Bepton +Berachan +Berallier +Beram +Berambil +Berard +Berber +Berberis Walk Laurel +Berbice +Bercaw +Bercik +Berckman +Bercta +Bercut +Berdan +Berdina +Berdnick +Bere +Berea +Berechurch +Berechurch Hall +Beredens +Berendos +Berengrave +Berens +Beres Ford +Beresford +Beresini +Berestede +Beret +Beretta +Berg +Bergamont +Bergamot +Berge +Bergen +Bergen Hill +Bergen Ridge +Bergenfield +Bergenline +Bergenwood +Berger +Bergerac +Bergeron +Berges +Bergholt +Bergholz +Bergin +Berglund +Bergman +Bergonia +Bergstrom +Bergthold +Beridge +Berilda +Berith +Berk +Berkeley +Berkeley Court +Berkeley Park +Berkely +Berkenshire +Berkey +Berkhampstead +Berkhamsted +Berking +Berkley +Berkley Manor +Berkmans +Berkowitz +Berks +Berkshire +Berkshire Woods +Berlant +Berlee +Berlin +Berliz +Berma +Berman +Bermar +Bermer +Bermill +Bermondsey +Bermondsey Long +Bermuda +Bern +Berna +Bernacci +Bernadette +Bernadine +Bernado +Bernadotte +Bernal +Bernal Heights +Bernard +Bernard Ashley +Bernard Cassidy +Bernardine +Bernardo +Bernas +Bernath +Bernay +Bernds +Berne +Bernel +Berner +Bernera +Berners +Bernhard +Bernhardt +Bernice +Bernie +Bernie Kelly +Bernie Ruth +Bernier +Bernini +Bernisdale +Bernita +Bernon +Bernstein +Bernt +Bernyce +Bero +Beronga +Berowra +Berrellessa +Berrendo +Berrian +Berridale +Berridge +Berries +Berrigan +Berrille +Berrillee +Berrima +Berriman +Berring +Berrington +Berristall +Berriton +Berritt +Berry +Berry Corner +Berry Cove +Berry Creek +Berry Hill +Berry Mill +Berry Patch +Berry Pond +Berry Ridge +Berrybush +Berrycroft +Berrydale +Berrydown +Berryessa +Berryfield +Berryhill +Berryland +Berrylands Avalon +Berryleaf +Berryman +Berrymede +Berrypick +Berrys +Berrys Hill +Berryscroft +Berrywood +Bersano +Bersham +Berstein +Bert +Berta +Berta Canyon +Berta Views +Bertal +Berteau +Bertenshaw +Bertero +Berth +Bertha +Berthold +Berthole +Berthon +Berthoud +Bertie Minor +Bertine +Bertini +Bertis +Bertita +Bertito +Bertlee +Bertling +Bertmore +Bertocchi +Bertola +Bertoldo +Bertoli +Bertolli +Bertolotto +Berton +Bertram +Bertrand +Berts +Bertsky +Bertuccio +Bertwell +Berverdor +Berwick +Berwick Pond +Berwin +Berwind +Berwood +Berwyn +Berwyn House +Berwynd +Beryl +Beryllium +Berylwood +Besana +Besant +Besborough +Besco +Beskeen +Besler +Besley +Beslyns +Besom +Besonend +Bess +Bessant +Bessborough +Bessels Green +Bessemer +Bessemund +Bessida +Bessie +Bessie Coleman +Bessingby +Bessle +Bessmer +Besso +Bessom +Bessy +Best +Bestgate +Bestic +Bestick +Bestobell +Beston +Bestor +Bestwicke +Beswick +Beswicke Royds +Beswicks +Beta +Betabel +Betam +Betchets Green +Betchworth +Betenson +Beth +Beth David +Beth Israel +Beth Lee +Bethal +Bethany +Bethards +Bethayres +Bethecar +Bethel +Bethel Church +Bethel Island +Bethelen Woods +Bethersden +Bethesda +Bethia +Bethlehem +Bethlehem Church +Bethnal Green +Bethnall +Bethpage +Beths +Bethune +Betlen +Betley +Betleymere +Betlin +Betlo +Betnor +Betola +Betoyne +Betsham +Betson +Betstyle +Betsy +Betsy Brown +Betsy Davis +Betsy Ross +Bette +Betteker +Bettencourt +Bettenhausen +Betterton +Bettescombe +Bettina +Bettinelli +Bettington +Bettinson +Bettio +Bettis +Bettison +Bettowynd +Bettridge +Betts +Bettswood +Betty +Betty Ann +Betty Crocker +Betty Cuthbert +Betty Grove +Betty Lou +Betty Mae +Betula +Betz +Beulah +Beulah Park +Beult +Beumont +Beuna Vista +Beutke +Beutler +Bev +Bev Cunha County +Bevan +Bevans +Bevanwood +Bevard +Beveland +Beveridge +Beverlee +Beverley +Beverly +Beverly Hill +Beverly Hills +Beverly J Griffin +Beverly Jay +Beverly Manor +Beverly Park +Bevern +Bevers +Beversbrook +Beverstone +Bevier +Bevil +Bevilacqua +Bevin +Bevin Brook +Bevington +Bevins +Bevis +Bevmar +Bewbush +Bewdley +Bewick +Bewlbridge +Bewley +Bewlys +Bexhill +Bexley +Bexley High +Bexon +Bexton +Beyer +Beynon +Beythe +Beza +Bezant +Bezos +Bi County +Biagar +Bianca +Bianchi +Bianco +Biara +Biarritz +Biava +Bibbenluke +Bibbits +Bibbs +Bibbs Hall +Bibby +Bibeau +Bibel +Bible +Bible Baptist Church +Bibsworth +Bibury +Bicek +Bicentennial +Bicester +Bichner +Bickell +Bickerdike +Bickershaw +Bickerstaff +Bickersteth +Bickertoh +Bickerton +Bickford +Bickleigh +Bickley +Bickling +Bicknell +Bicknell Hill +Bicknoiler +Bicknoller +Bicknor +Bidborough +Biddall +Bidden +Biddenden +Bidder +Biddestone +Biddle +Biddleford +Biddulph +Bideford +Bidgee +Bidston +Bidurgal +Bidwell +Bieber +Bieghle +Biehn +Biel +Bielawski +Bielby +Bielenberg +Bieneman +Bienville +Bierline +Biermann +Bierstan +Bies +Biesi +Biesterfield +Biffins +Bifrost +Big Axe +Big Barn +Big Basin +Big Bear +Big Bend +Big Blue +Big Bluestem +Big Branch +Big Break +Big Burn +Big Canyon +Big Circle +Big Common +Big Creek +Big Dipper Ranch +Big Foot +Big Fox +Big Horn +Big Indian +Big Island +Big Lake +Big Live Oak +Big Oak +Big Peninsula +Big Piece +Big Pine +Big Plum +Big Pool +Big Ramapo +Big Ranch +Big Rock +Big Rock Ridge +Big Rock Ridge Fire +Big Run +Big Spring +Big Springs +Big Springs Canyon +Big Sur +Big Timber +Big Tree +Big Valley +Big Woods +Bigelow +Bigfrith +Biggar +Bigge +Bigger +Biggers +Biggerstaff +Biggin +Bigginwood +Biggs +Biggs Grove +Biggs Purchase +Bigham +Bighorn +Bighorn Sheep +Bight +Bighton Dean +Bigland +Biglow +Bigmore +Bignell +Bigney +Bignor +Bigonia +Bigthan +Bigwood +Bija +Bijou +Bikila +Bikini +Bilambee +Bilbao +Bilberry +Bilbo +Bilbrook +Bilby +Bilga +Bilgola +Bilkurra +Bill +Bill Aldis +Bill Carr +Bill Ferguson +Bill Graham +Bill Hoare +Billa +Billabong +Billadell +Billams Hill Farnley +Billand Common +Billara +Billard +Billarga +Billarong +Billeci +Billerica +Billericay +Billeroy +Billett +Billie +Billie Limacher +Billie Smith Memorial +Billing +Billingbauk +Billingham +Billings +Billingsgate +Billingshurst +Billingsley +Billington +Billinton +Billiou +Billiter +Billman +Billong +Billop +Billou +Billow +Billows +Billrose +Bills +Billson +Billy +Billy Bob +Billy Casper +Billy Diehl +Billy Lows +Billyard +Billys +Bilney +Biloba +Bilodeau +Biloolo +Bilpin +Bilsen +Bilter +Biltmore +Biltom +Bilton +Bimbadeen +Bimbil +Bimburra +Bimini +Binalong +Binaville +Bincote +Binda +Bindaree +Bindari +Bindea +Binden +Binder +Binet +Binfield +Binford +Bing +Bingara +Bingen +Binger +Bingfield +Binggelli +Bingham +Bingham Hill +Binghampton +Binghamton +Bingle +Bingley +Bingo Lake +Bings +Bingswood +Binkey +Binks +Binley +Binn +Binna Burra +Binnacle +Binnari +Binnaway +Binnett +Binney +Binney Park +Binnie +Binning +Binnowee +Binns +Binns Nook +Binscombe +Binstead +Binsted +Binton +Binya +Binyon +Bionda +Biondi +Bionia +Biotechnology +Bir +Birbetts +Birch +Birch Bark +Birch Bend +Birch Brush +Birch Cliff +Birch Cove +Birch Creek +Birch Green +Birch Hall +Birch Hill +Birch Island +Birch Knoll +Birch Lake +Birch Lakes +Birch Meadow +Birch Pond +Birch Ranch +Birch Ridge +Birch Run +Birch Tree +Birchall +Bircham +Birchanger +Birchard +Birchbark +Birchbaugh +Birchbrook +Birchbrow +Birchcliff +Birchcrest +Birchcroft +Birchdale +Birchdene +Birchell +Birchen +Birchenall +Birchenlea +Bircher +Bircherley +Birches +Birches Croft +Birchett +Birchetts +Birchetts Green +Birchfield +Birchfields +Birchgrove +Birchill +Birchin +Birchin Cross +Birchington +Birchleaf +Birchmead +Birchmeadow +Birchmont +Birchmore +Birchmount +Bircholt +Birchpond +Birchside +Birchtree +Birchvale +Birchview +Birchwood +Birchwood Grove +Birchwood Hill Ring +Birchwood Park +Bird +Bird Hall +Bird Hill +Bird In Bush +Bird In Hand +Bird in Bush +Bird in Hand +Birdale +Birdbrook +Birdcage +Birdcage Center +Birdcherry +Birdcroft +Birdfoot +Birdhill +Birdhurst +Birdie +Birds Farm +Birds Hill +Birds Landing +Birdsall +Birdsboro +Birdseye +Birdsfield +Birdsfoot +Birdsong +Birdsville +Birdswood +Birdwood +Birfield +Birginal +Birinta +Birk +Birkbeck +Birkby +Birkdale +Birken +Birkendene +Birkenhead +Birkenshaw +Birkenshaw Town +Birkett +Birkey +Birkhall +Birkhead +Birkhofer +Birkin +Birkinheath +Birklands +Birkle +Birkley +Birks +Birkwood +Birley +Birling +Birmingham +Birmington +Birnam +Birnam Wood +Birnamwood +Birney +Birnham +Birnie +Birok +Birrell +Birrellea +Birriga +Birrima +Birriwa +Birrong +Birs +Birstall +Birt +Birtch +Birtle +Birtles +Birtlespool +Birtrick +Birtwistle +Birubi +Birunna +Biruta +Birwood +Bisacno +Bisbee +Biscay +Biscayne +Bisceglia +Bischoff +Biscot +Bisenden +Bisham +Bishoff +Bishop +Bishop Carroll +Bishop Hall +Bishop Ken +Bishop Pine +Bishop R Allen +Bishopdale +Bishopgate +Bishops +Bishops Bequest +Bishops Castle +Bishops Content +Bishops Down +Bishops Down Park +Bishops Gate +Bishops Hall +Bishopscote +Bishopsford +Bishopsgate +Bishopsmead +Bishopsthorpe +Bishopstone +Bishopswood +Bishopton +Bisland +Bisley +Bismach +Bismarck +Bismark +Bismire +Bismuth +Bisner +Bison +Bisordi +Bispham +Bisque +Bissel +Bissell +Bissett +Bisshop +Bisso +Bisson +Bisterne +Biter +Bithell +Bither +Bitola +Bittacy +Bittacy Park +Bittams +Bitter Oak +Bitter Sweet +Bittercreek +Bittern +Bitterne +Bitternut +Bitterroot +Bittersweet +Bitterwater +Bitting +Bittle +Bittner +Bitty +Bivona +Biwana +Bix +Bixby +Bixby Hill +Bixler +Bixley +Bizzaro +Bizzibe +Bjerstedt +Bjork +Bjorkman +Bjune +Bjur +Blachley +Black +Black Alder +Black Arrow +Black Bass +Black Bear +Black Beech +Black Birch +Black Boy +Black Branch +Black Briar +Black Brook +Black Bull +Black Bush +Black Chapel +Black Chestnut +Black Crow +Black Diamond +Black Duck +Black Eagle +Black Feather +Black Forest +Black Friar +Black Friars +Black Gold +Black Gum Tree +Black Hawk +Black Hill +Black Hill Ridge +Black Hills +Black Horse +Black Hut +Black Ironwood +Black Kettle +Black Kite +Black Lake +Black Lion +Black Log +Black Mill +Black Moor +Black Mount +Black Mountain +Black Oak +Black Park +Black Partridge +Black Pearl +Black Pine +Black Plain +Black Point +Black Point Horseshoe +Black Pond +Black Pond Hill +Black Prince +Black Rock +Black Saddle +Black Swan +Black Tail +Black Thorn +Black Tree +Black Twig +Black Velvet +Black Walnut +Black Wood +Blackacre +Blackall +Blackamoor +Blackbank +Blackberry +Blackberry Fields +Blackberry Hill +Blackberry Ridge +Blackberry Shore +Blackbird +Blackbird Cross Forty +Blackbird Hill +Blackbirds +Blackborne +Blackborough +Blackbourn +Blackbower +Blackboy +Blackbriar +Blackbridge +Blackbrook +Blackburn +Blackburn Ford +Blackburnian +Blackbush +Blackbutt +Blackbutts +Blackcap +Blackcarr +Blackchapel +Blackcherry +Blackcroft +Blackdown +Blackduck +Blacker +Blacket +Blackett +Blacketts +Blackfan +Blackfen +Blackfield +Blackfold +Blackfoot +Blackford +Blackfriars +Blackgate +Blackgates +Blackhall +Blackhawk +Blackhawk Club +Blackhawk Hills +Blackhawk Meadow +Blackheaath +Blackheath +Blackhill +Blackhoath +Blackhorse +Blackhouse +Blackhurst +Blackington +Blackinton +Blackjack +Blacklands +Blackledge +Blackley +Blackley New +Blackley Park +Blacklock +Blackman +Blackmar +Blackmer +Blackmon +Blackmoor +Blackmore +Blackmore End +Blackness +Blacknest +Blackney +Blackoak +Blackoaks +Blackpoint +Blackpond +Blackpool +Blackpowder +Blackridge +Blackrock +Blackrod +Blacks +Blacks Hill +Blacksand +Blacksburg +Blackshaw +Blackshire +Blackshots +Blacksmith +Blacksnake +Blacksole +Blackspur +Blackstar +Blackstock +Blackstocks +Blackstone +Blackstone Edge Old +Blackstone River +Blackstroud +Blacktail +Blackthorn +Blackthorne +Blackthorne Ridge +Blacktop +Blacktown +Blackwall +Blackwall Point +Blackwalnut +Blackwatch +Blackwater +Blackwater Valley +Blackwattle +Blackwattle Creek +Blackwell +Blackwell Farm +Blackwin +Blackwolf +Blackwood +Blackwood Edge +Blacow +Blade +Blade Green +Bladen +Bladensburg +Blades +Bladindon +Bladon +Blagdon +Blaggard +Blagrave +Blagrove +Blaier +Blaikie +Blain +Blaine +Blair +Blair Athol +Blair Mill +Blair Ranch +Blair Ridge +Blairbeth +Blairderry +Blaire +Blairgowrie +Blairhall +Blairhead +Blairmore +Blairton +Blairwood +Blais Farm +Blaisdell +Blaiswood +Blake +Blake Ridge +Blakeden +Blakedown +Blakefield +Blakehall +Blakeley +Blakelock +Blakelow +Blakely +Blakeman +Blakemere +Blakemore +Blakemore End +Blakeney +Blakenham +Blaker +Blakeridge +Blakes +Blakes Farm +Blakes Hill +Blakeslee +Blakesley +Blakestones +Blaketon +Blakeville +Blakewood +Blakiston +Blakistone +Blamey +Blamire +Blanc +Blanca +Blanch +Blanchan +Blanchard +Blanche +Blanche Dell +Blanchfield +Blanchlands +Blanco +Bland +Blandfield +Blandford +Blandin +Blanding +Blands +Blandsford +Blandy +Blane +Blaney +Blanford +Blank +Blanken +Blankenship +Blanket Hall +Blanks +Blanmerle +Blanton +Blantre +Blantyre +Blarney +Blashford +Blasi +Blatchford +Blattman +Blau +Blauer +Blausanne +Blauss +Blauvelt +Blawith +Blaxcell +Blaxland +Blaydon +Blays +Blaze +Blazer +Blazingwood +Bleach +Bleak +Bleakley +Bleakney +Bleakwood +Blean +Bleasby +Bleasdale +Blease +Bleasedale +Bleatarn +Blechynden +Bleck +Bleckely +Bledlow Ridge +Bleecker +Bleeker +Blegborough +Blehm +Blellatrey +Blemer +Blencarn +Blendall +Blendia +Blendon +Blendwood +Blenford +Blenheim +Blenheim Park +Blenhiem +Blenkinsop +Blenman +Bleriot +Blessing +Blessington +Bletchingley +Bletchley +Blevins +Blewbury +Blewett +Blewitt +Blick +Blickview +Bligh +Blighs +Blighton +Blinco +Blind +Blind Brook +Blindgrooms +Blindley +Blindsill +Blinkhorn +Blinn +Bliss +Blissett +Blithdale +Blithedale +Blithewood +Blithfield +Bloch +Block +Block House +Blockhouse +Blocklehurst +Blockley +Blodgett +Blodgetts +Bloemfontein +Blohm +Blom +Blomerth +Blomfield +Blomquist +Blomskog +Blomville +Blondell +Blondin +Blood +Bloodwood +Bloody Point +Bloom +Bloom Grade +Bloom Lake +Bloom Park +Bloomberg +Bloomburg +Bloomdale +Bloomfield +Bloomhall +Bloomingbank +Bloomingdale +Bloomington +Bloomington Ferry +Bloomington Frwy +Blooms +Blooms Quarry +Bloomsbury +Bloors +Bloors Wharf +Blossom +Blossom Acres +Blossom Cove +Blossom Creek +Blossom Dale +Blossom Heath +Blossom Hill +Blossom Park +Blossom Ranch +Blossom Ridge +Blossom River +Blossom Tree +Blossom Valley +Blossom Vista +Blossom Wood +Blossomcrest +Blossoms +Blossomview +Blossomwood +Blossum +Blouin +Blount +Blounts +Blounts Court +Blowing Rock +Blows +Bloxhall +Bloxham +Bloxon +Bloy +Bluberry +Blucher +Blucher Valley +Blue +Blue Anchor +Blue Ash +Blue Aster +Blue Ball +Blue Banner +Blue Bayou +Blue Bell +Blue Berry +Blue Bird +Blue Boar +Blue Bonnet +Blue Brook +Blue Circle +Blue Coat +Blue Cove +Blue Cow +Blue Crane +Blue Cross +Blue Dan +Blue Dolphin +Blue Flag +Blue Fox +Blue Gate +Blue Gentian +Blue Goose +Blue Grass +Blue Gray +Blue Gum +Blue Heaven +Blue Heron +Blue Herron +Blue Hill +Blue Hill River +Blue Hill Terrace +Blue Hills +Blue Iris +Blue Island +Blue Island Vermont +Blue Jay +Blue Lagoon +Blue Lake +Blue Lakes +Blue Larkspur +Blue Leaves +Blue Ledge +Blue Line +Blue Lupine +Blue Meadow +Blue Mill +Blue Mist +Blue Mound +Blue Mountain +Blue Oak +Blue Oaks +Blue Point +Blue Poppy +Blue Post +Blue Rapids +Blue Ravine +Blue Ribbon +Blue Ridge +Blue Ridge Fire +Blue Roan +Blue Rock +Blue Rock Hill +Blue Sage +Blue Sea +Blue Shirt +Blue Silk +Blue Sky +Blue Slate +Blue Smoke +Blue Spring +Blue Spruce +Blue Tees +Blue Topaz +Blue Valley +Blue Violet +Blue Water +Blue Waters +Blue Waters Farm +Blue Whale +Blue Willow +Blue Wing +Bluearrow +Bluebell +Blueberry +Blueberry Hill +Bluebill +Bluebill Bay +Bluebird +Bluebonnet +Bluebridge +Bluecoat +Bluecoats +Bluedale +Bluefield +Bluefields +Bluefin +Bluefish +Blueford +Bluegate +Bluegill +Bluegrass +Bluegum +Bluehouse +Bluejay +Blueridge +Blueridge Meadows +Blueridge View +Bluerock +Blues Point +Bluestem +Bluestern +Bluestone +Bluestone Bay +Bluet +Bluett +Blueview +Bluewater +Bluewillow +Bluff +Bluff City +Bluff Creek +Bluff Ct +Bluff Edge +Bluff Head +Bluff Point +Bluff Pointe +Bluff Ridge +Bluffs +Bluffs Edge +Bluffwood +Bluhill +Bluhm +Blum +Blume +Blumenfeld +Blumert +Blundell +Blunden +Blundon +Blunn +Blunt +Blunts +Blunts Hall +Blunts Wall +Blunts Wood +Blurton +Blush +Bluth +Bluxome +Bly +Blyden +Blysdale +Blyth +Blythe +Blythe Hill +Blytheswood +Blythewood +Blythorn +Blythswood +Blythwood +Boa Nova +Boa Vista +Boad +Boadicea +Boama +Boar +Boar Head +Board +Board School +Boardale +Boardley +Boardleys +Boardman +Boardschool +Boardwalk +Boarfold +Boarley +Boarman +Boarmans +Boars Tye +Boarshaw +Boarshead +Boarshurst +Boarstones +Boas +Boastfield +Boat +Boat Dock +Boat House +Boatclub +Boathouse +Boatman +Boatwright +Bob +Bob Ehlen +Bob Larsen +Bob O Link +Bob Reed +Bob White +Bobadah +Bobal +Bobann +Bobart +Bobbell +Bobbett +Bobbi +Bobbie +Bobbin Head +Bobbina +Bobby +Bobby Jean +Bobby Jones +Bobby Locke +Bobby Spencer +Bobbyber +Bobbys +Bobbywood +Bobcat +Bobelaine +Boblee +Bobmore +Bobolink +Bobs +Bobs Ford +Bobsled +Bobstay +Bobwhite +Boca +Boca Rio +Bocana +Bock +Bocket +Bockhampton +Bockhanger +Bockman +Bockmer +Bocks +Bodalla +Bodan +Bodden +Boddens Hill +Boddington +Boddingtons +Bode +Bodega +Bodega Bay +Boden +Bodensee +Bodiam +Bodie +Bodily +Bodin +Bodino +Bodkin +Bodkin View +Bodle +Bodley +Bodmer +Bodmin +Bodnarik +Bodney +Bodrick +Bodsworth +Bodway +Bodwell +Body +Boeger +Boehm +Boehme +Boehmer +Boehmhurst +Boeing +Boeing Access +Boekland Ranch +Boelsen +Boerum +Boesch +Boeske +Boessow +Bog +Bogalara +Bogalusa +Bogan +Bogandale +Bogarde +Bogarin +Bogart +Bogastow Book +Bogastow Brook +Bogata +Bogert +Bogerts Mill +Bogetti +Bogey +Boggard +Boggart Hill +Boggiano +Boggs +Bogie +Bogle +Bogner +Bogny +Bogota +Bograh +Bogren +Bogue +Bohac +Bohan Dillon +Bohannon +Bohemia +Bohemian +Bohemian Beach +Bohen +Bohland +Bohlander +Bohlken +Bohlman +Bohn +Bohnen +Bohns Point +Bohny +Bohr +Boice +Boiling Spring +Boiling Springs +Bois +Bois Hall +Bois Moor +Boise +Boismoor +Boisvert +Boivin +Bokel +Bokelman +Bolado +Bolan +Boland +Boland Farm +Bolanos +Bolaro +Bolas +Bolberry +Bolcum +Bold +Bold Lion +Bold Venture +Bolden +Bolderwood +Bolding House +Boldman +Boldmere +Bolds +Boldt +Bolero +Boles +Boley +Boleyn +Boleyns +Bolford +Bolgard +Bolger +Bolina +Bolinas +Bolinas Fairfax +Bolinda +Boling +Bolingbroke +Bolingbrook +Bolivar +Bolivia +Boll +Bolla +Bollard +Bollate +Bolle +Bollenbacher +Boller +Bolles +Bollin +Bollinbarn +Bolling +Bollinger +Bollinger Canyon +Bollington +Bollo +Bollo Bridge +Bollum +Bolmer +Bolney +Bolney Chapel +Bolney Trevor +Bolnore +Bolsa +Bolsa Tank Fr +Bolsena +Bolser +Bolshaw +Bolshaw Farm +Bolsin +Bolson +Bolsover +Bolstead +Bolster +Bolster Moor +Bolt +Bolter +Bolter End +Bolters +Bolton +Bolton House +Bolton Old +Boltons +Boltres +Boltro +Boltwood +Boltzen +Bolus +Bolwarra +Bolyston +Bolz +Bomabellee +Bombadier +Bombadil +Bombala +Bombay +Bombell +Bombers +Bombora +Bomford +Bomish +Bomore +Bon +Bon Accord +Bon Air +Bon Fleur +Bon Haven +Bon Mar +Bon Terre +BonHam +Bona +Bona Vista +Bonaccordo +Bonad +Bonair +Bonair Siding +Bonaire +Bonalbo +Bonan +Bonanza +Bonaparte +Bonar +Bonaventura +Bonaventure +Bonavesta +Bonbon +Bonbury +Boncarn +Boncheff +Bonchurch +Boncosky +Bond +Bond Hollow +Bond Mill +Bondage +Bondell +Bondfield +Bondi +Bondmark +Bonds +Bonds Retreat +Bondsburry +Bondy +Boneashe +Bonehurst +Bones +Boneset +Boneta +Bonetti +Bonfair +Bonfield +Bonfire +Bong +Bongart +Bongs +Bonham +Bonheur +Bonhill +Bonhomme +Boniface +Bonifacio +Bonifant +Bonington +Bonis Hall +Bonita +Bonita Downs +Bonita Vista +Bonito +Bonna Villa +Bonnard +Bonnardel +Bonnards +Bonneau +Bonnefin +Bonnell +Bonnema +Bonner +Bonner Hill +Bonnersfield +Bonness +Bonnet +Bonneting +Bonnett +Bonnetts +Bonneville +Bonnevista +Bonney +Bonnibrook +Bonnie +Bonnie Acres +Bonnie Brae +Bonnie Branch +Bonnie Briar +Bonnie Brook +Bonnie Burn +Bonnie Clare +Bonnie Dale +Bonnie Dell +Bonnie Dundee +Bonnie Glen +Bonnie Heights +Bonnie Jay +Bonnie Meadow +Bonnie Ridge +Bonnie View +Bonnie Vista +Bonniebrook +Bonniemill +Bonnievale +Bonnieview +Bonniewood +Bonnington +Bonny +Bonny Brow +Bonny Doon +Bonny Hill +Bonnybrook +Bonnydale +Bonnyman +Bonnymead +Bonnys +Bonnywell +Bonpel +Bonsai +Bonsal +Bonsall +Bonser +Bonsey +Bonseys +Bonsor +Bont +Bonta +Bontempo +Bonter +Bontou +Bonus +Bonus Hill +Bonview +Bonville +Bonvini +Bonwell +Bonwit +Bonwood +Boo +Boodle +Book +Booker +Booker T +Booker Washington +Bookerhill +Bookert +Bookham +Bookhurst +Books +Booksin +Boola +Boolarong +Booligal +Boom +Boomer +Boomerang +Boon +Boonah +Boonara +Boondah +Boone +Boone Grove +Boones +Boones Hill +Boongil +Boonstra +Boonton +Booraba +Booraem +Booragul +Booralee +Booralie +Booralla +Boorara +Boorea +Booream +Booreea +Boorroo +Booster Ring +Boot +Bootes +Booth +Booth Bank +Booth Bed +Booth Hall +Booth Hill +Booth Memorial +Booth Tarkington +Bootham +Boothbay +Boothbed +Boothby +Boothdale +Boothe +Boothey +Boothfield +Boothhaven +Boothouse +Boothroyd +Boothroyden +Booths Hill +Boothsbank +Boothstown +Bootjack +Bootle +Boots +Booyong +Booze Lake +Bopete +Bora +Bora Bora +Boraga +Boranda +Borax +Borba +Borcher +Borchers +Borchert +Bordale +Bordars +Borde Hill +Bordeau +Bordeaux +Bordelais +Borden +Bordentown +Border +Border Hill +Borderland +Borders +Bordesley +Bordessa +Bordly +Bordner +Bordolino +Bordona +Boreal +Borec +Boree +Boreham +Borel +Borella +Borello +Boren +Borers Arms +Borgard +Borge +Borges +Borges Ranch +Borghaus +Borgia +Borgins +Borglum +Borhart +Bori +Boria +Borica +Borick +Boright +Borina +Borinski +Borinsky +Borio +Bork +Borkshire +Borlaise +Borland +Borley +Borman +Bormet +Bornedale +Bornwood +Borojevic +Boroline +Boronga +Boronia +Borough +Borough Court +Borough Farm +Borough Green +Borough High +Borovere +Borre +Borregas +Borrego +Borrett +Borrette +Borrodaile +Borrodale +Borron +Borroway +Borrowdale +Borrows +Borrugh +Borsdane +Borsden +Borstal +Bortfield +Borth +Borthwick +Bortic +Borwell +Borwick +Borzotta +Bos +Bosanquet +Bosbury +Boscastle +Boscell +Bosch +Boschi +Bosci +Boscobel +Boscobell +Boscombe +Boscow +Bosden +Bosden Hall +Bosdenfold +Bose +Bosely +Bosenhill +Bosham +Bosk +Bosko +Bosley +Bosmore +Bosnjak +Bosphorus +Bosque +Boss +Bossa +Bossard +Bosse +Bossi +Bossington +Bossley +Bosson +Bossy +Bost +Bostall +Bostall Hill +Bostall Park +Bostian +Bostock +Boston +Boston Hill +Boston Manor +Boston Post +Boston Rock +Boston Scientific +Boston Spa Padmans +Boston Wharf +Bostonia +Bostonthorpe +Bostwick +Bosun +Bosville +Boswell +Boswells +Boswick +Bosworth +Bosworthfield +Botanical +Botany +Botany Bay +Bote +Boteler +Botelho +Botetourt +Botha +Bothelo +Bothfeld +Bothin +Bothner +Bothnia +Bothwell +Botiano +Botley +Botolph +Botsford +Botsom +Bott +Botterman +Bottesford +Botticelli +Bottineau +Bottle Brush +Bottle Forest +Bottle Square +Bottlebrush +Bottles +Bottner +Bottom +Bottom Boat +Bottom Pond +Bottomboat +Bottomley +Bottoms +Bottrells +Botts +Botwell Common +Botyl +Bou +Bouchard +Boucher +Bouck +Bouddi +Boudinot +Boudreau +Bouffant +Bougainville +Bougainvillea +Bouganville +Bouganvillea +Boughey +Boughton +Boughton Hall +Bouic +Boula +Boulden +Boulder +Boulder Bay +Boulder Bluff +Boulder Brae +Boulder Bridge +Boulder Brook +Boulder Canyon +Boulder Creek +Boulder Field +Boulder Glen +Boulder Lake +Boulder Point +Boulder Pointe +Boulder Ridge +Boulder Run +Boulderstone +Bouldish Farm +Bouldrewood +Bouleau +Boulevard +Boulmer +Boulogne +Boult +Boulters +Boulton +Boultwood +Bounces +Bound +Bound Brook +Boundaries +Boundary +Boundary Farm +Boundary Hill +Boundary Oaks +Boundless +Boundry +Bounds +Bounds Green +Boundstone +Bounstead +Bountiful +Bounty +Bounty View +Bouquet +Bouquet Park +Bourassa +Bourbon +Bourchier +Bourdeaux +Bourdon +Bourke +Bourley +Bourn +Bournbrook +Bourne +Bourne End +Bourne Grange +Bourne Grove +Bourne Park +Bourne Trail Fire +Bournebridge +Bournedale +Bournehall +Bournemouth +Bournemouth Park +Bourneside +Bournevale +Bourneville +Bournewood +Bournlea +Bournville +Bourque +Bourton +Bourtzos +Bousfield +Boussole +Boutas +Boutelle +Boutemain +Bouterse +Bouthiette +Bouton +Bouts +Boutwell +Boutwell Hill +Bouvardia +Bouve +Bouvel +Bouverie +Bouvier +Bovanizer +Bovarde +Bovelder +Boveney +Boveney New +Boveney Wood +Bovet +Bovey +Bovill +Bovingdon +Bovington +Bow +Bow Arrow +Bow Arts +Bow Green +Bow Ridge +Bow Spirit +Bow Sprit +Bowaga +Bowater +Bowbell +Bowcliffe +Bowdell +Bowden +Bowden Hey +Bowden House +Bowden View +Bowdens +Bowditch +Bowdoin +Bowdon +Bowe +Bowen +Bowenhurst +Bower +Bower Farm +Bower Heath +Bower Hill +Bower Mount +Bowerbird +Bowerdean +Bowerfiled +Bowerfold +Bowerland +Bowerman +Bowers +Bowers Farm +Bowers Grove +Bowerwood +Bowery +Bowes +Bowes Bend +Bowes Creek +Bowesden +Bowfell +Bowfin +Bowfonds +Bowford +Bowgreave +Bowhill +Bowie +Bowie Shop +Bowker +Bowker Bank +Bowl +Bowland +Bowlands +Bowlder +Bowlen +Bowler +Bowlers +Bowles +Bowley +Bowlhead Green +Bowlin +Bowline +Bowling +Bowling Green +Bowman +Bowman Green +Bowman Mill +Bowman Point +Bowman Towne +Bowmans +Bowmans Folly +Bowmer +Bown +Bownas +Bowne +Bowness +Bowns +Bowood +Bowral +Bowring +Bowrons +Bowry +Bows +Bowsens +Bowser +Bowsprit +Bowstone Hill +Bowstonegate +Bowstridge +Bowtell +Bowyer +Box +Box Canyon +Box Car +Box Elder +Box Mill +Box Office +Box Pond +Box R Ranch +Box Ridge +Boxall +Boxalls +Boxberry +Boxboard +Boxboro +Boxcar +Boxelder +Boxer +Boxes +Boxford +Boxgrove +Boxhill +Boxley +Boxman +Boxmill +Boxmoor +Boxoll +Boxted +Boxted Church +Boxtree +Boxwell +Boxwood +Boxwood Farms +Boxwood Grove +Boy Court +Boy Scout +Boyard +Boyce +Boyce Farm +Boyce Thompson +Boyce View +Boyd +Boyd Willis +Boydell +Boyden +Boyds +Boyds Turn +Boyer +Boyers +Boyes +Boyfield +Boylan +Boyland +Boyle +Boyle Farm +Boyles +Boyletown +Boylston +Boyn Hill +Boyndon +Boyne +Boynes +Boyneswood +Boynton +Boys +Boys Hall +Boys Ranch +Boys School +Boysea +Boysen +Boysenberry +Boyson +Boythorn +Boyton +Boyton Court +Boyton Hall +Bozen Green +Bozoian +Brabant +Brabazon +Brabham +Brabon +Brabourne +Brabrook +Brabyn +Brabyns +Bracadale +Bracci +Brace +Brace Bridge +Bracebridge +Bracewell +Bracher +Brack +Brack Mill +Bracken +Bracken Hill +Brackenbridge +Brackenbury +Brackendale +Brackenhurst +Brackenlea +Brackens +Brackenwood +Brackett +Bracketts +Bracketts Point +Brackley +Brackleys +Bracklyn +Brackman +Bracknell +Brackney +Bracks +Brackston +Bracondale +Bracton +Brad +Bradbourne +Bradbourne Park +Bradbourne Vale +Bradburn +Bradburns +Bradbury +Bradburys +Bradcutts +Braddale +Braddan +Bradden +Braddock +Braddock Creek +Braddock Ridge +Braddock Springs +Braddon +Braddyll +Bradeen +Braden +Bradenham +Bradenham Wood +Bradenton +Bradey +Bradfield +Bradfields +Bradford +Bradford Jay +Bradford Park +Bradford Pond +Bradforde +Bradgate +Bradgers Hill +Bradgreen +Bradgrove +Bradhill +Bradhoff +Bradhurst +Bradish +Bradish Farm +Bradiston +Bradl +Bradlee +Bradleigh +Bradley +Bradley Farm +Bradley Fold +Bradley Forest +Bradley Forge +Bradley Green +Bradley Hill +Bradley Park +Bradley Ranch +Bradley Woods +Bradly +Bradman +Bradmoor +Bradmoore +Bradmore +Bradmore Park +Bradner +Bradoc +Bradrick +Bradshad +Bradshaw +Bradshaw Hall +Bradshire +Bradstock +Bradston +Bradstone +Bradstreet +Bradview +Bradwahl +Bradwater +Bradwell +Bradwood +Brady +Brady S Hill +Bradyll +Brae +Brae Brooke +Brae Burn +Brae Loch +Braebridge +Braeburn +Braehurst +Braeland +Braeleigh +Braeman +Braemar +Braemer +Braemont +Braemoor +Braemore +Braes +Braeside +Braesmere +Braewood +Brafferton +Braga +Braganza +Bragato +Bragaw +Bragbury +Bragdon +Bragenham +Bragers +Bragg +Braghetta +Bragi +Braham +Brahma +Brahms +Braidburn +Braidwood +Braikfield +Brailley +Brailsford +Brain +Brain Ridge +Brainard +Brainerd +Brainton +Braintree +Brainwood +Brair Ridge +Brairfield +Brairwood +Braisted +Braiswick +Braithwaite +Braithwaithe +Brake +Brakefield +Brakelly +Braken +Brakenhurst +Brakke +Bralan +Brallas +Brallos +Braly +Bramall +Braman +Brambach +Bramber +Bramble +Bramble Bush +Bramble Reed +Bramble Wood +Bramblebrook +Bramblebush +Brambledene +Brambledown +Bramblefield +Bramblehill +Brambles Farm +Brambleton +Brambletye +Brambletye Park +Bramblewood +Brambling +Brambly +Bramcote +Bramdean +Bramer +Bramerton +Bramfield +Bramford +Bramhall +Bramhall Moor +Bramhall Park +Bramham +Bramhope +Bramhope Breary +Bramingham +Bramkampo +Bramleigh +Bramley +Bramley Green +Bramley Ring +Bramling +Bramlys +Brammay +Brampton +Brampton Park +Bramshaw +Bramshill +Bramshot +Bramshott +Bramstan +Bramston +Bramwell +Bramwood +Bramwoods +Bramworth +Branbridges +Branbury +Branca +Brancaster +Branch +Branch Brigade +Branch Brook +Branch Center +Branch Hill +Branch Side +Branchaud +Branchaw +Branchbrook +Branchview +Branchville +Branchwood +Branciforte +Brancker +Brancourt +Brand +Brandau +Brande +Brandee +Brandeis +Branden +Brandenburg +Brander +Branderburgh +Brandermill +Brandess +Brandford +Brandforth +Branding +Branding Iron +Brandis +Brandle +Brandlehow +Brandles +Brandlesholme +Brandley +Brandling +Brandlwood +Brandon +Brandon Green +Brandon Groves +Brandon Oaks +Brandon Shore +Brandon Way +Brandon Woods +Brandreth +Brands +Brands Hatch +Brands Hill +Brandt +Brandwood +Brandy +Brandy Carr +Brandy Farms +Brandy Hall +Brandy Hill +Brandyhall +Brandyn +Brandywine +Brandywine Heights +Brandywyn +Brandywyne +Braney +Branfield +Branford +Brangbourne +Brangton +Brangus +Branham +Branhum +Branigan +Branko +Branksea +Branksome +Branksome Hill +Branksome Park +Branksomewood +Brann +Brannan +Brannan Island +Branner +Brannick +Brannigan +Brannon +Branower +Bransby +Branscombe +Bransdale +Bransfield +Bransford +Bransgrove +Branson +Branson Ranch +Bransten +Branston +Branstone +Brant +Brantfield +Brantford +Brantingham +Brantley +Branton +Brantridge +Brantwood +Branvall +Branwell +Branwood +Branxton +Braquet +Brasch +Brasenose +Brasero +Brashear +Brashears +Brass Wheel +Brassel +Brasser +Brassey +Brassfield +Brassie +Brassington +Brasted +Brasted Hill +Brastow +Brathway +Bratley +Bratsell +Brattice +Brattle +Bratton +Brattray +Brauer +Braun +Braund +Braundton +Braunecker +Braunsdorf +Braunston +Braunton +Brautigam +Bravado +Brave +Bravender +Braverton +Bravington +Bravo +Bravo Fire +Brawner +Braxfield +Braxmar +Braxted +Braxted Park +Braxton +Bray +Brayards +Braybourne +Braybrook +Braybrooke +Brayburne +Braycourt +Braydon +Brayfield +Brayford +Braygreen +Brayley +Braymer +Brays +Brayshaw +Brayside +Brayton +Braywick +Braywood +Brazao +Brazenhose +Brazier +Braziers +Brazil +Brazley +Brea +Breach +Breach House +Bread +Breadcroft +Breadlands +Bready +Breaker +Breakers +Breakfast +Breakfast Point +Breakheart +Breaking Wave +Breakneck +Breakneck Hill +Breaks +Breakspear +Breakspeare +Breakspears +Breakwater +Breakwell +Bream +Breamore +Breary +Breasley +Breasted +Breaston +Breault +Breaults +Breaults Landing +Brechin +Breck +Brecken Ridge +Breckenbridge +Breckenridge +Breckinridge +Breckland +Brecknock +Brecks +Brecon +Breconshire +Breconwood +Bredbo +Bredbury +Bredhurst +Bredon +Bredon Hill +Bree +Bree Hill +Breech +Breed +Breeden +Breedens +Breedon +Breeds +Breen +Breer +Breesway +Breewood +Breeze +Breeze Hill +Breeze Knoll +Breezedale +Breezehurst +Breezeland +Breezemont +Breezewalk +Breezewood +Breezy +Breezy Hill +Breezy Knoll +Breezy Point +Breezyhill +Brefni +Brega +Breglia +Bregman +Brehaut +Brehme +Brei Kessel +Breiderhoft +Breightmet +Breightmet Fold +Breillat +Breitweiser +Breitwert +Breitwieser +Brem +Bremar +Brember +Bremen +Brementowne +Bremer +Bremerton +Bremner +Bremond +Bremtonwood +Bren +Bren Mar +Brenan +Brenchley +Brencon +Brenda +Brenda Lee +Brendan +Brendel +Brenden +Brendon +Brendon Hill +Brenford +Brenham +Brenish +Brenlyn +Brenman Park +Brennan +Brennans +Brennen +Brenner +Brennfleck +Brenning +Brennon +Brent +Brent Moor +Brent Park +Brent Town +Brent View +Brent Wood +Brentbridge +Brentfield +Brentford +Brentford High +Brentham +Brenthurst +Brentlands +Brentley +Brentmoor +Brentnall +Brentnor +Brenton +Brenton Point +Brentridge +Brentsville +Brentwall +Brentwood +Brentwood Farm +Brentz +Brenwood +Brereton +Bresee +Breslau +Bresnahan +Bressay +Bressey +Bret +Bret Hart +Bret Harte +Brethren +Bretland +Bretlands +Bretman +Bretmoor +Breton +Breton Lakes +Brett +Brettell +Brettenham +Bretton +Bretton View +Bretton Woods +Bretts Farm +Brettun +Bretz +Breuer +Breuner +Breval +Brevard +Breve +Brevensville +Brevent +Brevet +Brevity +Brevoort +Brew +Brew House +Brewer +Brewer Beach +Brewer House +Brewer Neck +Brewers +Brewers Hill +Brewerton +Brewery +Brewhouse +Brewhurst +Brewin +Brewington +Brewongle +Brewster +Brewster Creek +Brewster Gate +Brewton +Brexdale +Brey +Breyers +Breyley +Brian +Brian Run +Brian Smith +Briana +Brianboru +Briane +Brianne +Brians Hill +Briant +Briants +Briar +Briar Brae +Briar Cliff +Briar Close +Briar Creek +Briar Glen +Briar Hill +Briar Lea +Briar Mill +Briar Oak +Briar Oakes +Briar Patch +Briar Path +Briar Ridge +Briar Rock +Briar Rose +Briar Tree +Briar cliff +Briarbank +Briarberry +Briarbrook +Briarbush +Briarchip +Briarcliff +Briarcliffe +Briarcrest +Briarcroft +Briard +Briardale +Briarfield +Briarford +Briargate +Briarglen +Briargrove +Briarhill +Briarknoll +Briarlands +Briarly +Briarmont +Briarmoor +Briarpoint +Briars +Briarstone +Briarton +Briarwood +Briarwood North +Briarwood South +Briarwoods +Briary +Briary Wood +Brice +Brice Chapel +Bricher +Brichetto +Bricin +Brick +Brick Church +Brick House +Brick Kiln +Brick Plant +Brickel +Brickell +Brickenden +Brickendon +Bricker +Bricket +Brickett +Brickfield +Brickfields +Brickhill +Brickhouse +Bricklin +Brickmakers +Bricknoller +Brickpond +Brickspring +Brickstone +Brickvale +Brickwall +Brickway +Brickwood +Brickworks +Brickyard +Brickyard Cove +Bridal +Bridal Path +Bridalsmith +Briddle Path +Bride +Bride Hall +Briden +Brideoak +Brideoake +Bridestowe +Bridewain +Bridewell +Bridge +Bridge Barn +Bridge Bay +Bridge Branch +Bridge Creek +Bridge End +Bridge Farm +Bridge Hall +Bridge Pointe +Bridge Spur +Bridge View +Bridgecote +Bridgecourt +Bridgecross +Bridgedale +Bridgefield +Bridgefoot +Bridgeford +Bridgegate +Bridgeham +Bridgehampton +Bridgehead +Bridgeland +Bridgelea +Bridgeman +Bridgemarsh +Bridgenhall +Bridgenorth +Bridgepoint +Bridgepointe +Bridgeport +Bridgeport Lake +Bridger +Bridges +Bridges Farm +Bridgeside +Bridgestone +Bridget +Bridgeton +Bridgetown +Bridgevale +Bridgeview +Bridgewater +Bridgeway +Bridgeway Lakes +Bridgewood +Bridgford +Bridgham +Bridgit +Bridgman +Bridgnorth +Bridgwater +Bridle +Bridle Creek +Bridle Cross +Bridle Pass +Bridle Path +Bridle Post +Bridle Ridge +Bridle Spur +Bridle Trail +Bridle Wood +Bridlefield +Bridlegate +Bridlepath +Bridlespur +Bridleway +Bridlewood +Bridlington +Bridoon +Bridport +Bridson +Bridwell +Brie +Brief +Brielle +Brien +Briens +Brier +Brier Glen +Brier Hill +Brierbrook +Briercliffe +Briercrest +Brierdale +Brierfield +Brierhill +Brierholme +Brierley +Brierly +Brierway +Brierwood +Brierwoods +Briery +Brig +Briga +Brigade +Brigadier +Brigadoon +Brigalow +Brigantine +Brigantino +Brigate +Brigg +Briggs +Briggs Chaney +Briggs Fold +Briggs Ranch +Brigham +Brigham Hill +Bright +Bright Day +Bright Meadows +Bright Memory +Bright Mountain +Bright Pond +Bright Ridge +Bright Silk +Bright Sun +Bright View +Bright Wood +Brighten +Brightfield +Brightlands +Brightlea +Brightleaf +Brightling +Brightman +Brightmore +Brighton +Brighton Beach +Brighton Dam +Brighton Oaks +Brightshore +Brightside +Brightstone +Brightview +Brightwater +Brightwater Beach +Brightwell +Brightwells +Brightwood +Brigid Flanigan +Brigshaw +Brigstock +Brill +Brim +Brimbal +Brimbal Hills +Brimblecom +Brimblecomb +Brimbrook +Brimelow +Brimfield +Brimhall +Brimmer +Brimmers +Brimpton +Brimrod +Brimsdown +Brimshot +Brimsmead +Brimstone +Brimstone Academy +Brinawa +Brinckerhoff +Brindabella +Brindale +Brindle +Brindlehurst +Brindles +Brindlewood +Brindley +Brindwood +Brinef +Brinell +Bringelly +Brington +Brink +Brink Meadow +Brinkburn +Brinker +Brinkerhoff +Brinkhaus +Brinkinfield +Brinkley +Brinks +Brinkshaw +Brinkwood +Brinkworth +Brinley +Brinmar +Brinnington +Brinns +Brinsdale +Brinsley +Brinsmade +Brinsmead +Brinsop Hall +Brinsworth +Brinton +Brinwood +Brion +Briones +Briones Valley +Brionne +Briony +Brisa +Brisas +Brisbane +Brisbee +Brisbin +Briscoe +Briscoe Farm +Briscoe Turn +Briscolina +Briset +Brisette +Brishing +Briskin +Brislands +Brisley +Brisson +Bristel +Bristers Hill +Bristle Cone +Bristlecone +Bristles +Bristol +Bristol Bay +Bristol Downs +Bristol Hill +Bristol Off Water +Bristol Park +Bristol Ridge +Bristol Square +Bristol Trail +Bristol Village +Bristolwood +Briston +Bristow +Bristowe +Britain +Britani +Britania +Britannia +Britannic +Brite +Britford +Brithorn +British +British Colony +Britnall +Britney +Briton +Briton Hill +Britt +Britta +Brittain +Brittan +Brittany +Brittany Hills +Brittany Parc +Brittany Park +Brittanyann +Britten +Brittenden +Brittenford +Brittin +Brittle +Brittney +Britton +Britton Farm +Brittons +Britts Brook +Britwell +Briubi +Brive +Brixham +Brixton +Brixton Square +Brixton Water +Broach +Broad +Broad Arrow +Broad Bill +Broad Branch +Broad Brook +Broad Canal +Broad Creek +Broad Creek Church +Broad Ditch +Broad Foot +Broad Gate +Broad Green +Broad Hollow +Broad Meadow +Broad Oak +Broad Oaks +Broad Run +Broad Sound +Broadacre +Broadacres +Broadale +Broadbent +Broadbirch +Broadbottom +Broadbridge +Broadbridge Heath +Broadcar +Broadcarr +Broadclyst +Broadcroft +Broader +Broadfield +Broadfields +Broadford +Broadford Bridge +Broadgate +Broadgates +Broadhalgh +Broadham Green +Broadhead +Broadheath +Broadheys +Broadhinton +Broadhollow +Broadhurst +Broadis +Broadland +Broadlands +Broadlawn +Broadlea +Broadleaf +Broadley +Broadleys +Broadlove +Broadman +Broadmark +Broadmead +Broadmeadow +Broadmeadows +Broadmeadows Sheridan +Broadmoor +Broadmoore +Broadmore +Broadmoss +Broadneck +Broadneck Park +Broadoak +Broadoaks +Broads +Broadside +Broadsmore +Broadstone +Broadsword +Broadview +Broadview Academy +Broadwalk +Broadwater +Broadwater Creek +Broadwater Forest +Broadwater Point +Broadwaters +Broadway +Broadway Alexandra +Broadway Feather Bank +Broadway Wood +Broadway near Wood +Broadwell +Broadwick +Broadwire +Broadwood +Broady +Brocade +Brocas +Broccoli +Brocher +Brochie +Brock +Brock Bridge +Brock Hall +Brock Hill +Brockamin +Brockdish +Brockenbrough +Brockenhurst +Brocket +Brockett +Brockford +Brockham +Brockhamhurst +Brockhuizen +Brockhurst +Brocklebank +Brocklehurst +Brockleman +Brocklesby +Brockley +Brockley Hall +Brockman +Brockman Farm +Brockmeyer +Brockmier +Brocks +Brocksford +Brockswood +Brockton +Brockway +Brockwell +Brockwood +Broder +Broderick +Brodewater +Brodia +Brodick +Brodie +Brodie Spark +Brodin +Brodkin +Brodwood +Brody +Broe +Broening +Brogan +Brogdale +Brogden +Broghinge +Brokaw +Broke Farm +Broken Arrow +Broken Bow +Broken Branch +Broken Gate +Broken Land +Broken Oak +Broken Shell +Broken Tree +Broken Twig +Broker +Brokes +Brolass +Brom +Bromar +Bromborough +Brome +Bromehead +Bromfelde +Bromfield +Bromfords +Bromhall +Bromholm +Bromleigh +Bromley +Bromley Cross +Bromley Green +Bromley Hall +Bromley Hill London +Bromley Village +Brommer +Brompton +Brompton Farm +Bromshill +Bromwells +Bromwich +Bromyard +Bromycroft +Broncho +Bronco +Brondesbury +Brondsbury +Bronfield +Brong +Bronislaw +Brons +Bronsart +Bronson +Bronstein +Bronte +Bronte Marine +Bronti +Bronx +Bronx Park +Bronx River +Bronxdale +Bronxville +Bronxville Glen +Bronxwood +Bronze +Bronze Post +Bronzewing +Bronzon +Brook +Brook Bay +Brook Bottom +Brook Crossing +Brook Dale +Brook End +Brook Farm +Brook Ford +Brook Forest +Brook Grains +Brook Haven +Brook Head +Brook Hill +Brook Hills +Brook Hollow +Brook Knoll +Brook Lodge +Brook Lynn +Brook Mar +Brook Mill +Brook Park +Brook Run +Brook Trail +Brook Tree +Brook Vale +Brook Valley +Brook Village +Brookash +Brookbank +Brookbend +Brookbridge +Brookburn +Brookby +Brookcot +Brookcroft +Brookdale +Brookdene +Brooke +Brooke Acres +Brooke Farm +Brooke Grove +Brooke Jane +Brooke Knolls +Brooke Meadow +Brookehowse +Brookend +Brooker +Brookes +Brookeside +Brookeway +Brookfall +Brookfield +Brookfield Corporate +Brookfield Tower +Brookfold +Brookfoot +Brookford +Brookgate +Brookgreen +Brookgrove +Brookhaven +Brookhead +Brookhey +Brookhill +Brookhollow +Brookhouse +Brookhurst +Brooking +Brookings +Brooklake +Brookland +Brooklands +Brooklawn +Brookledge +Brooklee +Brookleigh +Brookley +Brookline +Brookln +Brooklyn +Brooklyn Bridge +Brooklyn Park +Brookman +Brookmans +Brookmans Park +Brookmead +Brookmeade +Brookmeadow +Brookmere +Brookmill +Brookmont +Brookmoor +Brookpark +Brookridge +Brookroyd +Brooks +Brooks Bank +Brooks Church +Brooks Terrace +Brooks View +Brooksbank +Brooksbie +Brooksby +Brookscroft +Brooksdale +Brooksedge +Brookshade +Brookshaw +Brookshill +Brookshire +Brookshire Estates +Brookshore +Brookside +Brookside Farm +Brookside Glen +Brookside Ranch +Brookside West +Brookspur +Brooksquare +Brookston +Brookstone +Brooksville +Brooksweld +Brookswood +Brookthorpe +Brooktree +Brooktree Ranch +Brookvale +Brookview +Brookville +Brookway +Brookwell +Brookwold +Brookwood +Brookwood Farm +Brookwood Lye +Brookwood Way +Broom +Broom Farm +Broom Hill +Broom Mills +Broomall +Brooman +Broombarn +Broomcroft +Broome +Broomers +Broomers Hill +Broomfield +Broomfields +Broomgerrie +Broomgrove +Broomhall +Broomhill +Broomhill Park +Broomhills +Broomhouse +Broomhurst +Broomlands +Broomleaf +Broomrigg +Brooms +Broomshaw +Broomsleigh +Broomsquires +Broomstair +Broomstick +Broomstick Hall +Broomville +Broomwood +Brophy +Brosam +Broschart +Broseley +Brosnan +Brossman +Brotherhood +Brothers +Brotherton +Broton +Brotto +Brouch +Brougham +Broughshane +Broughton +Broughton Craggs +Broughville +Brouilette +Brouillard +Brouillette +Broula +Broullie +Brounckner +Brousseau +Brouwerij +Brouwet +Brovelli +Brow +Browdens +Browells +Brower +Browers +Browertown +Brown +Brown Branch +Brown Deer +Brown Derby +Brown Duvall +Brown Edge +Brown Fox +Brown Gables +Brown Hill +Brown House +Brown Lea +Brown Loaf +Brown Lodge +Brown Otter +Brown Post +Brown Ranch +Brown Wood +Brownberrie +Browncross +Browndale +Browndens +Browne +Brownell +Brownfield +Browngraves +Brownhill +Brownie +Brownies Beach +Browning +Brownings +Brownlea +Brownley +Brownlow +Brownlow Hill Loop +Brownrigg +Browns +Browns Bridge +Browns Chapel +Browns Dock +Browns Farm +Browns Ferry +Browns Hall +Browns Mill +Browns School +Browns Valley +Browns Woods +Brownsea +Brownshade +Brownson +Brownsover +Brownspring +Brownstone +Brownsville +Brownswell +Brownview +Brownville +Brownwood +Brows +Brox +Broxash +Broxbourne +Broxburn +Broxhill +Broxholm +Broxmead +Broxted +Broxton +Broyhill +Broyle +Broyles +Brubaker +Brubeck +Brubri +Bruce +Bruce Castle +Bruce Park +Brucedale +Bruces Wharf +Bruceville +Brucewood +Bruche +Brucito +Bruck +Bruckner +Brude +Brudenell +Brueberry +Bruell +Bruella +Bruen +Bruhn +Bruin Hill +Brumbaugh +Brumby +Brumfield +Brumley +Brummel +Brundage +Brundige +Brundrett +Brundretts +Brune +Brunel +Brunell +Brunella +Brunello +Bruner +Brunero +Brunett +Brunette +Brunetti +Bruning +Brunk +Brunker +Brunner +Bruno +Bruns +Brunschon +Brunsvold +Brunswick +Brunswick Park +Brunswick Woods +Brunswig +Brunt +Bruntcliffe +Bruntleigh +Brunton +Bruntwood +Brunwin +Brush +Brush Creek +Brush Hill +Brush Hollow +Brush Island +Brush Lake +Brush Prairie +Brushes +Brushfield +Brushford +Brushwood +Brushy Hill +Brushyridge +Brussel +Brussels +Bruton +Brutus +Bruzek +Bruzzone +Bryan +Bryan Branch +Bryan Meadows +Bryan Point +Bryanston +Bryanstone +Bryant +Bryant Lake +Bryantown +Bryants +Bryants Bottom +Bryants Nursery +Bryantwood +Bryanwood +Bryce +Bryce Canyon +Brycewood +Bryden +Brydges +Brydon +Bryer +Bryett +Brygger +Bryla +Bryn +Bryn Bach +Bryn Mawr +Brynden +Bryne +Bryngs +Brynhaven +Brynmaer +Brynmore +Brynn +Brynorme +Brynton +Brynwood +Bryon +Bryone +Bryony +Bryson +Bryte +Bryte Bend +Bubb +Bubblestone +Bubbling Brook +Bubhurst +Bubier +Bucareli +Buccaneer +Buccleuch +Buchal Heights +Buchan +Buchanan +Buchanan Field +Buchanon +Bucher +Buck +Buck Board +Buck Cavey +Buck Center +Buck Creek +Buck Hill +Buck Knoll +Buck Lake +Buck Meadow +Buck Point +Buckbee +Buckboard +Buckbrush +Buckby +Buckden +Buckelew +Bucket +Bucket Mill +Bucketmill +Buckettsland +Buckeye +Buckfast +Buckhall +Buckhannon +Buckhatch +Buckhaven +Buckhill +Buckhold +Buckhole Farm +Buckhorn +Buckhorn Ridge +Buckhurst +Buckhurst Farm +Bucki +Buckingham +Buckingham Cove +Buckingham Hill +Buckingham Palace +Buckinghan +Buckinghorse +Buckland +Bucklands +Buckle +Buckleberry +Bucklebury +Buckleigh +Buckler +Buckles +Buckley +Buckley Hill +Buckleys +Bucklin +Bucklodge +Bucklow +Bucklow HIll +Buckman +Buckmans +Buckmaster +Buckmeadow +Buckminster +Buckmore +Bucknall +Bucknalls +Bucknam +Bucknell +Buckner +Buckout +Buckram +Buckrell +Buckridge +Bucks +Bucks Haven +Bucks Lake +Bucks Mill +Bucksfield +Bucksford +Buckskin +Buckskin Lake +Buckskin Wood +Buckstone +Buckstones +Buckswood +Bucktail +Buckthorn +Buckthorne +Buckton +Buckton Vale +Buckwall +Buckwell +Buckwood +Buckwoods +Bud +Buda +Budapest +Budbury +Budd +Budding Branch +Buddle +Budds +Buddy +Bude +Budeberry +Buderim +Budge +Budgen +Budgeree +Budgerigar +Budin +Budingen +Budiselich +Budland +Budleigh +Budler +Budna +Budoch +Budreau +Budworth +Budworth Heath +Budyan +Buehere +Buehler +Buel +Buell +Buena +Buena Monte +Buena Tierra +Buena Ventura +Buena Vida +Buena Vista +Buenaventure +Bueno +Buens +Buer +Buerkle +Buersil +Buerton +Buff +Buffalo +Buffalo Creek +Buffalo Grove +Buffalo Ridge +Buffalo Run +Buffbeards +Buffers +Buffham +Buffington +Buffins +Bufflehead +Bufford +Buffum +Buffy +Bufkin +Buford +Bugatti +Bugbee +Bugden +Bugeia +Bugglesden +Buggy Whip +Bugle +Bugler +Bugli +Bugong +Bugsbys Way Gallions +Buhl +Buhman +Buhre +Buhrstone +Buick +Build America +Builders +Buile +Buile Hill +Buist +Buker +Bukra +Bulaire +Bulara +Bulb +Bulba +Bulbeggars +Bulbi +Bulborne +Bulbrine +Bulbul +Bulcher +Bulfinch +Bulford +Bulga +Bulganak +Bulger +Buli +Bulinga +Bulkara +Bulkeley +Bulkey +Bulkhead +Bulkira +Bulkley +Bull +Bull Calf +Bull Hill +Bull Pine +Bull Pond +Bull Run +Bull Run Post Office +Bullace +Bullard +Bullbaiters +Bullbeggars +Bullbrook +Bullcote +Bullcroft +Bulldog +Bullecourt +Bullen +Bullens +Buller +Bullers +Bullers Wood +Bullerthorpe +Bullescroft +Bulletin +Bullette +Bullfinch +Bullfrog +Bullfrog Fire +Bullfrog Pond +Bullhead +Bullingstone +Bullion +Bullitt Neck +Bulliukian +Bullivant +Bullneck +Bulloch +Bullock +Bullocks +Bullocks Farm +Bullring +Bulls +Bulls Bridge +Bulls Eye +Bulls Ferry +Bulls Mill +Bulls Neck +Bullsbrook +Bullsmoor +Bullswater +Bullswater Common +Bullwood +Bullwood Hall +Bulmann +Bulmer +Bulmershe +Bulolo +Bulow +Bulrush +Bulrush Farm +Bulson +Bulstrode +Bultee +Bulteel +Bultustrol +Bulu +Bulumin +Bulwara +Bulwark +Bulwarra +Bulwer +Bulwer Court +Bumbera +Bumble Bee +Bumblebee +Bumfords +Bummer +Bumps +Bumpus +Bumpy +Bumpy Oak +Buna +Buna Mae +Bunarba +Bunbinla +Bunbury +Bunby +Bunce +Bunce Common +Bunce Court +Bunce Meadows +Buncefield +Bunces +Bunch +Bunch Berry +Bunchberry +Bunche +Buncton +Bundaleer +Bundanoon +Bundara +Bundarra +Bundeena +Bundell +Bundeluk +Bundemar +Bundesen +Bundeson +Bundilla +Bundock +Bundoon +Bundoran +Bundschu +Bundy +Bunescu +Bungal +Bungaloe +Bungalow +Bungan +Bungan Head +Bungaree +Bungarribee +Bungay +Bungendore +Bungonia +Bungoona +Bungowen +Bungtown +Bungulla +Bunhill Row Old +Bunin +Bunker +Bunker Hill +Bunker Lake +Bunker Woods +Bunkerhill +Bunkers +Bunkers Hill +Bunkershill +Bunn +Bunnai +Bunnell +Bunnerong +Bunning +Bunns +Bunny +Bunratty +Bunsen +Bunt +Bunters +Bunters Hill +Bunting +Buntingbridge +Buntingford +Bunton +Bunts +Bunya +Bunyala +Bunyan +Bunyana +Bunyard +Bunyarra +Bunyula +Buono +Buoy +Bur +Burando +Burandt +Burard +Burbage +Burbank +Burbanks +Burbeck +Burberry +Burbidge +Burbong +Burbury +Burch +Burch Haven +Burch Hill +Burchap +Burcharbro +Burchard +Burchell +Burchells Wood +Burches +Burchetts Green +Burchfield +Burchlawn +Burchmore +Burckhalter +Burcote +Burd +Burdak +Burdean +Burdeck +Burdekin +Burdell +Burdell Mountain Fire +Burden +Burdenshott +Burdent +Burder +Burdett +Burdette +Burdetts +Burdge +Burdick +Burdith +Burditt +Burdock +Burdocks +Burdon +Burdsall +Bureau +Buren +Bures +Burfield +Burfitt +Burford +Burg +Burgamot +Burgan +Burgandy +Burgattes +Burge +Burge End +Burgener +Burges +Burgess +Burgess Hill +Burget +Burgh +Burgh Heath +Burghardt +Burghclere +Burghead +Burgher +Burghfield +Burghley +Burgin +Burgner +Burgon +Burgos +Burgoyne +Burgundy +Burgundy Leaf +Burham +Burhans +Burhill +Buriat +Burich +Buried Oak +Burilla +Burk +Burkards +Burke +Burke Bradley +Burke Centre +Burke Commons +Burke Dale +Burke Lake +Burke Meadow +Burke Pond +Burke Woods +Burkes +Burkes Promise +Burkeside +Burkett +Burkette +Burkewood +Burkhall +Burkhard +Burkhardt +Burkhart +Burkitts +Burkland +Burkwood +Burl +Burl Hollow +Burl Oaks +Burla +Burleigh +Burlescoombe +Burley +Burley Farm +Burley Grange +Burley Lodge +Burley Place Viaduct +Burley Wood +Burleyhurst +Burleys +Burliegh +Burline +Burling +Burling Wood +Burlingame +Burlingame Club +Burlings +Burlington +Burlington Mall +Burlingview +Burlison +Burlow +Burlway +Burlwood +Burma +Burmah +Burman +Burmester +Burmingham +Burnaby +Burnage +Burnage Hall +Burnap +Burnbrae +Burnbray +Burnbury +Burncoat +Burncoat Park +Burndale +Burne +Burnece +Burned Chimney +Burnedge +Burnell +Burnell Park +Burnels +Burnes +Burnet +Burnet Hill +Burnet Hill School +Burnett +Burnett North +Burnetta +Burnette +Burnetts +Burney +Burnfoot +Burngarten +Burnham +Burnham Green +Burnham Harbor +Burnham Ranch +Burnhams +Burnhaven +Burnhill +Burnie +Burning Branch +Burning Bush +Burning Hollow +Burning Oak +Burning Oaks +Burning Springs +Burning Timber +Burning Tree +Burning Trees +Burnley +Burnmoor +Burnquist +Burns +Burns Bay +Burns Chalk Fire +Burns Crossing +Burns Cutoff +Burns Dairy +Burns Hill +Burns Valley +Burnsall +Burnsdale +Burnside +Burnside Landing +Burnstie +Burnsville +Burnt Ash +Burnt Bridge +Burnt Common +Burnt Crest +Burnt Edge +Burnt Ember +Burnt Hill +Burnt House +Burnt Meadow +Burnt Mill +Burnt Mills +Burnt Oak +Burnt Plats +Burnt Pollard +Burnt Swamp +Burnt Tree +Burnt Woods +Burntash +Burnthouse +Burnthouse Farm +Burnthwaite +Burntlodge +Burntside +Burntwick +Burntwood +Burntwood Grange +Burnwood +Buron +Buross +Burpee +Burpham +Burquest +Burr +Burr Hill +Burr Oak +Burr Oaks +Burr Ridge +Burr Ridge Club +Burr Tree +Burra +Burrabirra +Burrabogee +Burraddar +Burradoo +Burraga +Burrage +Burragorang +Burraloo +Burran +Burraneer +Burraneer Bay +Burras +Burrawang +Burrawong +Burrcroft +Burrell +Burrells +Burren +Burrendong +Burrfield +Burrfields +Burricks Hill +Burrill +Burrill Hill +Burrimul +Burringbar +Burrington +Burrinjuck +Burris +Burritt +Burro +Burrock +Burrough Farm +Burrough Hill +Burroughs +Burrow +Burroway +Burrows +Burrs +Burrswood +Burrwood +Burry +Burry Circle +Bursa +Bursar +Burshire +Bursill +Bursland +Burslem +Bursley +Burson +Burstead +Burstock +Burston +Burstow +Burt +Burtenshaw +Burtfield +Burtis +Burton +Burton Farm +Burton Glen +Burton Hole +Burtonhill +Burtonhole +Burtonpark +Burtons +Burtons Green +Burtonsville +Burtonwood +Burtwell +Buruwan +Burville +Burwash +Burwell +Burwick +Burwood +Burwood Park +Bury +Bury Farm +Bury Green +Bury Mead +Bury New +Bury Old +Burydell +Buryfield +Burywood +Bus +Bus Turning +Busaco +Busbridge +Busby +Busca +Busch +Busch Corner Spur +Buscher +Buschmann +Buschs Frontage +Busdens +Busgrove +Bush +Bush Elms +Bush Hall +Bush Hill +Bush Lake +Bush Pond +Bushaway +Bushberry +Bushbury +Bushby +Bushell +Bushes +Bushey +Bushey Grove +Bushey Hall +Bushey Hill +Bushey Mill +Bushfield +Bushgrove +Bushka +Bushkill +Bushlake +Bushland +Bushlands +Bushman +Bushmead +Bushnell +Bushrod +Bushtail +Bushthorn +Bushview +Bushwick +Bushwood +Bushy +Bushy Hill +Business +Business Center +Business Park +Busit +Busk +Buskin +Buskirk +Buslingthorpe +Buslins +Busman +Buss +Busse +Bussell +Bussendius +Bussey +Bussing +Busteed +Buster +Busters +Bustleton +Busty +Buswell +Butano +Butano Creek +Butano Fire +Butano Park +Butch +Butcher +Butcher Hill Lea Farm +Butcher Hill Old Oak +Butchers +Bute +Butely +Butera +Buthmann +Buti Park +Butler +Butler School +Butlers +Butlers Dene +Butlers Hall +Butlers Island +Butley +Butlin +Butman +Butt +Butt Field +Butt Green +Butt Hill +Buttaro +Butte +Butte View +Buttel +Butter Churn +Butter Cup +Butter Nut Hill +Butterbowl +Butterchurn +Buttercross +Buttercup +Butteremere +Butterfield +Butterfield Frontage +Butterfield Green +Butterfly +Butterfly Field +Butterhouse +Butterick +Butterley +Buttermarket +Buttermere +Buttermilk +Buttermilk Falls +Buttermilk Ridge +Butternut +Butternut Hollow +Butters +Butterscotch +Butterside +Butterstile +Butterworth +Buttesland +Buttfield +Butthinge +Buttitta +Buttlerly +Buttner +Button +Button Bush +Button Cove +Button Wood +Buttonbush +Buttons +Buttonwillow +Buttonwood +Buttress +Buttrick +Buttry +Butts +Butts Canyon +Butts Hill +Buttsbury +Buttway +Butu Wargun +Butwin Camp +Buxmont +Buxted +Buxton +Buxton Bridge +Buxton New +Buxton Old +Buxworth +Buyuma +Buzzard +Buzzard Hill +Buzzard Lagoon +Buzzell +Buzzoni +By +By The Sea +Byam +Byamee +Byard +Bybee +Bybrook +Bycroft +Bycullah +Byd A While +Byde +Bydown +Bye +Byefield +Byeforde +Byer +Byerley +Byers +Byes +Byfield +Byfleet +Byford +Bygrave +Bygrove +Bying +Byington +Bykool +Byland +Byloss +Bylund +Byman +Byna +Byne +Bynes +Byng +Bynner +Bynon +Bypass +Byram +Byram Brook +Byram Dock +Byram Shore +Byram Terrace +Byran +Byrd +Byre +Byrefield +Byrne +Byrne Park +Byrneley +Byrnes +Byrnwood +Byrom +Byron +Byron Hill +Byrondale +Byrons +Byrth +Byrum +Byscane +Bysing Wood +Byslips +Byton +Byward +Bywater +Byway +Bywell +Bywood +Byworth +Byxbee +C Commercial +C E Dixon +C Fernwood +C J Hafey +C Jones +C Leeds Infirmary +C York +CP Lumber +CSM +Caballero +Caballeros +Caballo +Caballo Ranchero +Cabana +Cabarita +Cabbage Hill +Cabbage Tree +Cabban +Cabbel +Cabbell +Cabe +Cabell +Cabello +Cabells Mill +Caber +Cabernet +Cabin +Cabin Branch +Cabin Creek +Cabin John +Cabina +Cabinet +Cabinwood +Cable +Cabot +Cabota +Cabover +Cabral +Cabramatta +Cabramurra +Cabrera +Cabrilho +Cabrillo +Cabrini +Cabriolet +Cabrito +Cabro +Cabrol +Cabul +Cache +Cache Peak +Cacia +Cackle +Cackler +Cackling +Cactus +Cactus Hill +Cadbury +Caddell +Caddie +Caddington +Caddo +Caddy +Cade +Cadenasso +Cadence +Cader +Cades +Cadet +Cadia +Cadigal +Cadillac +Cadish +Cadiz +Cadle +Cadle Creek +Cadloni +Cadman +Cadman Quarry +Cadmia +Cadmore +Cadmus +Cadogan +Cadogen +Cadoret +Cadorna +Cadourette +Cadow +Cadoxton +Cadsden +Cadwallader +Cadwallon +Cadwell +Cady +Caedigan +Caedmon +Caen +Caen Wood +Caenshill +Caerleon +Caernarvon +Caesar +Caesar Chelor +Caesars Camp +Cafe On The +Cafe on the +Cafeteria +Cafeto +Caffa +Caffee +Caffrey +Cage +Cage Green +Cage Pond +Cagefield +Cages Wood +Cagle +Cagney +Cagwin +Cahalan +Cahen +Cahill +Cahill Park +Cahir +Cahoon +Cahors +Cail +Caillard +Caim +Cain +Caine +Cainfield +Cains +Caird +Cairds +Cairn +Cairnfield +Cairns +Cairnslea +Cairnwell +Cairo +Cairo New +Caishowe +Caisson +Caister +Caistor +Caistor Park +Caithness +Caitlin +Cajed +Cakebread +Cal +Cal Geary +Cal Sag +Cala Vista +Calabar +Calabasas +Calabash +Calabazas +Calabrese +Calabria +Calabro +Calaby +Caladium +Calado +Caladonia +Calafia +Calais +Calala +Calamint +Calamity +Calamo +Calamus +Calanda +Calandra +Calandria +Calariva +Calaroga +Calavaras +Calaveras +Calaveras Ridge +Calawasse +Calbert +Calbina +Calboro +Calbourne +Calbroke +Calcaterra +Calcita +Calcite +Calco Creek +Calcot Mill +Calcot Place +Calcroft +Calcutta +Caldarra +Caldbeck +Caldecot +Caldecote +Caldecott +Caldeira +Calder +Calderbank +Calderbrook +Calderon +Caldershaw +Caldervale +Calderwood +Caldew +Caldicot +Caldor +Caldran +Caldwell +Caldwells Gate +Caldy +Cale +Caleb +Calebs +Caledon +Caledonia +Caledonian +Caledonium +Caleen +Calendar View +Calera Creek Heights +Calero +Calero Hills +Caleta +Caletti +Calexico +Caley +Calf +Calf Farm +Calf Hey +Calf Pasture Beach +Calfas +Calfornia +Calfstock +Calga +Calgary +Calhoun +Cali +Caliban +Calibria +Calico +Calico Pool +Calico Tree +Calicooneck +Calida +Calidore +Caliente +Calif Pacific +Califon +California +California Farms +California Poppy +Caliguiri +Calimyrna +Calinoma +Calista +Calistoga +Calitonia +Calkins +Call +Call Barnes +Calla +Calla Lilly +Callabone +Callaghan +Callagher +Callahan +Callahan School +Callahans Beach +Callan +Calland +Callander +Callaway +Callaways +Callcott +Calle Amigo +Calle Verde +Calle View +Callecita +Callen +Callendar +Callender +Caller +Callery +Callicoma +Callie +Callingdon +Callington +Calliope +Callis +Callison +Callistan +Callistemon +Callister +Callisto +Callow +Calloway +Calluna +Calmace +Calmar +Calmar Vista +Calmer +Calmont +Calmor +Calmos +Calnwood +Caloden +Calool +Caloola +Calow +Calpack +Calpella +Calpine +Calrofold +Calshot +Calt +Caltha +Calthea +Calthorpe +Calthrope +Calton +Caltor +Caltrans E +Caltrans Richards +Caltrans University +Calument +Calumet +Calumet Access +Calumet Grove +Calumet Sag +Calvados +Calvary +Calveley +Calvend +Calver +Calverley +Calverley Blackett +Calverley Green +Calverly +Calvert +Calvert Hills +Calverton +Calverton School +Calvery +Calvi +Calview +Calvin +Calvin Forest +Calvine +Calwagner +Calydon +Calyer +Calyne +Calypso +Calza +Cam +Cama +Camalier +Camanoe +Camarena +Camargo +Camargo Club +Camarillo +Camaritas +Camarri +Camas +Cambalt +Cambell +Camber +Camberford +Camberley +Camberley Forest +Camberly +Cambert +Camberton +Camberwell +Camberwell Church +Cambewarra +Cambeys +Cambia +Cambleton +Cambo +Cambodia +Cambon +Camborne +Cambourne +Cambra +Cambrai +Cambray +Cambreleng +Cambria +Cambrian +Cambrianna +Cambridge +Cambridge Barracks +Cambridge Grove +Cambridge Heath +Cambridge Lakes +Cambridge Park +Cambridgepark +Cambryar +Cambus +Camby +Camdale +Camden +Camden Acres +Camden Bay +Camden High +Camden Hill +Camden Park +Camden Town +Camden View +Camder +Camdike +Camel +Camel Hollow +Camelback +Camelia +Camellia +Camellia Mather +Camellia Park +Camelot +Camelsdale +Camenson +Cameo +Camer +Camera +Camero +Cameron +Cameron Crescent +Cameron Glen +Cameron Grove +Cameron Hills +Cameron Mills +Cameron Pond +Cameron Ridge +Cameron Rnch +Camfield +Camile +Camilla +Camille +Camilleri +Camillia +Camillo +Camino +Camino Andres +Camino Diablo +Camino Hermoso +Camino Medio +Camino Real +Camino Royale +Camino Vista +Camino de Luna +Camino del Lago +Camino del Rey +Camino del Sol +Camion +Camira +Camiri +Camlan +Camlet +Camley +Camley Park +Camlot +Camm +Cammack +Camman +Cammarata +Cammaray +Cammarlie +Cammeray +Cammerer +Cammile +Camner +Camomile +Camore +Camp +Camp Alger +Camp Arequipa +Camp Bluefields +Camp Creek +Camp David +Camp Dixie +Camp End +Camp Endeavor +Camp Flint +Camp Ground +Camp Grove +Camp Joy +Camp Kaufmann +Camp Kiwanis +Camp Letts +Camp Meade +Camp Meeting +Camp Ohlone +Camp Pearson +Camp Roosevelt +Camp Rose +Camp Springs +Camp Thayer +Camp View +Camp Wastashi +Campagna +Campagnoli +Campana +Campanara +Campanelli +Campania +Campanile +Campaspe +Campaw +Campbell +Campbell Farm +Campbell Hill +Campbell Ranch +Campbell River +Campbell Technology +Campbellfield +Campbelltown +Campden +Campeau +Campell +Campello +Camper +Camper Creek +Camperdown +Campers +Campfield +Campflint +Campgaw +Campground +Camphor +Camping Ridge +Campini Estates +Campion +Cample +Camplin +Campo +Campo Bello +Campo Dorado +Campo Vista +Campoli +Campolindo +Campora +Campos +Campoy +Campsbourne +Campsfield +Campshill +Campsie +Campton +Campton Crossings +Campton Hills +Campton Ridge +Campton Trail +Campton Woods +Camptown +Campus +Campus Commons +Campus Green +Campus Hill +Campus Loop +Camrose +Cams +Camsley +Canaan +Canabury +Canacum +Canada +Canada Cove +Canada Farm +Canada Goose +Canada Hills +Canada Valley +Canady +Canal +Canal Bank +Canale +Canalport +Cananaro +Canandaigua +Cananea +Canara +Canard +Canarsie +Canary +Canary Wharf +Canarys +Canavan +Canberra +Canbury +Canbury Park +Canby +Canda +Candace +Candahar +Candalero +Candelabra +Candelero +Canden +Candeur +Candia +Candice +Candida +Candido +Candidus +Candle +Candle Ridge +Candleberry +Candlefield +Candleford +Candlelight +Candlemas +Candlenut +Candler +Candlestick +Candlewick +Candlewood +Candlewood Hill +Candon +Candor +Candover +Candy +Candy Apple +Candy Hill +Candyland +Candytuft +Cane +Canelo Hills +Canepa +Canes +Canessa +Canesworde +Canewdon +Caney +Canfield +Canfield Hill +Canford +Canger +Canham +Canhurst +Canine +Canis +Canisius +Canistear +Canley Vale +Cann +Cann Hall +Canna +Cannan +Cannella +Cannery +Cannes +Canney +Cannfield +Cannici +Cannikin +Canning +Cannington +Cannistraci +Cannizaro +Cannock +Cannon +Cannon Ball +Cannon Bluff +Cannon Bottom +Cannon Court +Cannon Dale +Cannon Falls +Cannon Fort +Cannon Hill +Cannon Industrial +Cannon Mill +Cannon Ridge +Cannon River +Cannon Rock +Cannon View +Cannonade +Cannonball +Cannondown +Cannongate +Cannons +Cannons Mill +Cannozzi +Canoas Garden +Canoe +Canoe Brook +Canoe River +Canoe Tree +Canoga +Canon +Canon Barns +Canon Beck +Canon Hill +Canon Park +Canon Vista +Canonaro +Canonbie +Canonbury +Canonero +Canongate +Canons +Canonsfield +Canoona +Canopus +Canopy +Canright +Canrobert +Cansdale +Cansiron +Cantabrook +Cantalier +Cantalowes +Cantata +Cantebury +Cantello +Cantelow +Cantelowes +Cantelupe +Canter +Canter Glen +Canterberry +Canterbury +Canterfield +Cantering +Canterton +Canterwood +Cantiague +Cantiague Rock +Cantigny +Cantil Oaks +Cantitoe +Cantle +Cantley +Canto +Canton +Cantor +Cantore +Cantrell +Cantrill +Cants +Canturbury +Cantwell +Canuden +Canute +Canva +Canvas Back +Canvasback +Canvey +Canyon +Canyon Brook +Canyon Creek +Canyon Crest +Canyon Falls +Canyon Four +Canyon Green +Canyon Head +Canyon Heights +Canyon Hills +Canyon Lake +Canyon Lakes +Canyon Oak +Canyon Oaks +Canyon One +Canyon Rim +Canyon Run +Canyon Seven +Canyon Six +Canyon Terrace +Canyon Three +Canyon Tree +Canyon Two +Canyon View +Canyon Vista +Canyon Wood +Canyon Woods +Canyonlands +Canyonside +Canyonview +Canyonwood +Cap +Capalbo +Capastaic +Capatin Hunter +Capay +Capay Valley +Cape +Cape Ann +Cape Banks +Cape Barron +Cape Breton +Cape Buffalo +Cape Cod +Cape Colony +Cape Coral +Cape Cottage +Cape Diamond +Cape Horn +Cape Jessup +Cape Kennedy +Cape May +Cape McKinsey +Cape Misty +Cape Saint Claire +Cape Saint John +Cape Solander +Cape View +Capehart +Capel +Capell +Capell Valley Cross +Capella +Capellan +Capelli +Capen +Capen Hill +Capenhurst +Capern +Capertee +Capes +Capesthorne +Capetown +Capeview +Capewood +Capi +Capicure +Capista +Capistrano +Capital +Capital Center +Capital Gateway +Capital Hill +Capital Park +Capital View +Capitales +Capitan +Capitancillos +Capitol +Capitol Heights +Capitol Hill +Capitol Oaks +Capitol Raceway +Capitol View +Capitola +Capitolian +Capland +Caple +Caples +Capobianco +Capon +Capon Tree +Capone +Capons +Caporaletti +Capp +Cappell +Cappelletti +Capper +Capperton +Cappy +Caprera +Capri +Caprice +Capriconus +Capricorn +Caprilli +Capriole +Capron +Capsey +Capshill +Capstan +Capstone +Captain +Captain Bailey +Captain Brendt +Captain Brown +Captain Clarke +Captain Cook +Captain Dement +Captain Duval +Captain Eager +Captain Forbush +Captain Gookin +Captain Handley +Captain Hickory +Captain Honeywell +Captain John Smith +Captain Joshua +Captain Lees +Captain Marbury +Captain Miles +Captain Nathaniel +Captain Peirce +Captain Peter Simpson +Captain Robert Cook +Captain Torrey +Captains +Captains Cove +Captains Hill +Captains House +Captains Table +Captains View +Captains Wood +Captiva +Captolene +Captons +Capuchino +Capulet +Capulina +Capwell +Car Bank +Cara +Carabeen +Carabella +Caraden +Caradoc +Caramar +Caramel +Caramoor +Caran +Carandini +Caravaggio +Caravan +Caravan Head +Caravel +Caravella +Carawa +Carawatha +Caraway +Carb Apple +Carbarn +Carbeen +Carberry +Carbide +Carbis +Carbon +Carbondale +Carbonera +Carboni +Carboona +Carbrey +Carbride +Carburton +Carbury +Carby +Carcoola +Card +Cardale +Cardamom +Cardamon +Cardell +Carden +Cardenas +Cardens +Carder +Carderock +Carderock Springs +Cardiff +Cardigal +Cardigan +Cardin +Cardinal +Cardinal Bourne +Cardinal Clancy +Cardinal Cove +Cardinal Creek +Cardinal Crest +Cardinal Estate +Cardinal Forest +Cardinal Medeiros +Cardinal O Connell +Cardinet +Carding Mill +Cardington +Cardinham +Cardoso +Cardownie +Cardoza +Cardozo +Cardrew +Cardrona +Cardross +Cardus +Cardwell +Care +Careebong +Carefree +Carell +Carella +Caremine +Caren +Careo +Careswell +Caret +Carew +Carey +Carey Arthur +Carey Branch +Carey Heights +Carey School +Careyback +Careybrook +Carfax +Carfield +Cargate +Cargie +Cargil Park +Cargill +Cargo +Cargo Service +Cargreen +Carhart +Carholme +Carhullen +Cari +Cariage +Cariann +Carib +Caribon +Caribou +Caricia +Carieville +Carignane +Carill +Carilla +Carillion +Carillo +Carillon +Carillon Lakes +Carina +Carinda +Carindale +Caring +Caringal +Carington +Carino +Carinya +Caris +Caris Glenne +Carisa +Carisbrook +Carisbrooke +Carissa +Carl +Carl G Whritenour +Carl Jordan +Carl Lee +Carl Sandburg +Carl Sands +Carl Thompson +Carla +Carlback +Carlbern +Carlby +Carldon +Carle +Carleah +Carleen +Carlemont +Carlene +Carlester +Carleton +Carletta +Carley +Carlfield +Carlgate +Carli +Carlile +Carlin +Carlin Springs +Carlinda +Carline +Carling +Carlingford +Carlinghow +Carlino +Carlinwalk +Carlisle +Carlisle Pines +Carlisle on Duxbury +Carll +Carlmark +Carlmont +Carlo +Carlo Scimeca +Carlock +Carlon +Carlos +Carlos Bee +Carlotta +Carlough +Carlow +Carls Farm +Carls Hill +Carlsbad +Carlsbrook +Carlsen +Carlson +Carlson Lake +Carlstad +Carlstadt +Carlston +Carlstrom +Carlton +Carlton Bay +Carlton Club +Carlton Park +Carlwell +Carlwood +Carlwyn +Carly +Carly Creek +Carlyle +Carlyn +Carlyn Hill +Carlynn +Carlyon +Carlysle +Carm +Carman +Carman Mill +Carman River +Carmans +Carmar +Carmathen +Carmel +Carmel Valley +Carmela +Carmelhead +Carmelita +Carmelite +Carmella +Carmellia +Carmello +Carmelo +Carmelwood +Carmen +Carmena +Carmencita +Carmenna +Carmer +Carmet +Carmi +Carmichael +Carmichael Park +Carmin +Carmine +Carminya +Carmita +Carmody +Carmody Hills +Carmona +Carmoor +Carna +Carnaby +Carnac +Carnadero +Carnage +Carnarvon +Carnation +Carnavron +Carnbrook +Carneal +Carneer +Carnegie +Carnelian +Carnene +Carneros +Carnes +Carney +Carnforth +Carniel +Carniglia +Carnoble +Carnot +Carnoustie +Carntion +Carnwath +Caro +Carob +Carobwood +Carol +Carol Ann +Carol Anne +Carol Crest +Carol Lee +Carol Louise +Carol Lynn +Carol Raye +Carola +Carole +Carolian +Carolier +Carolin +Carolina +Caroline +Caroline Brook +Caroline Chisholm +Caroline Chisolm +Caroline Farms +Caroll +Carolos +Carolwood +Carolyn +Carolyn Forest +Carolyn Weston +Carolyne +Carolynn +Caroma +Caron +Carona +Carondelet +Caroni +Caroon +Carotana +Carousel +Carp +Carpathia +Carpender +Carpenders +Carpenter +Carpenter Hill +Carpenteria +Carpenters +Carpenters Arms +Carpenters Beach +Carpenters Brook +Carpenters Hall +Carpenters Wood +Carpentier +Carper +Carpino +Carpinteria +Carquinez +Carquinez Scenic +Carr +Carr Bank +Carr Bottom +Carr Bridge +Carr Brook +Carr Common +Carr Crofts +Carr Crofts Town +Carr Gate +Carr Hall +Carr Hill +Carr House +Carr Manor +Carr Moor +Carr Wood +Carragata +Carraige +Carraige Hill +Carral +Carramar +Carramarr +Carrana +Carranya +Carrar +Carraway +Carrbridge +Carrbrook +Carrcroft +Carreau +Carrel +Carrell +Carrelton +Carrera +Carrerio +Carreta +Carrfield +Carrgate +Carrgreen +Carrhill +Carrhouse +Carriage +Carriage Crossing +Carriage Ford +Carriage Green +Carriage Hill +Carriage Hills +Carriage House +Carriage Park +Carriage Ridge +Carriage Run +Carriage Square +Carriage Walk +Carriage Way +Carriagehouse +Carriagepark +Carriageway +Carrick +Carrico +Carrie +Carrie Ann +Carrie Litchfield +Carrier +Carriere +Carriers +Carrigan +Carriger +Carriglea +Carriker +Carrillo +Carrington +Carrington Field +Carrington Hall +Carrington Hill +Carrington Moss +Carrington Ridge +Carrisa +Carrisbrook +Carrithers +Carrizal +Carrlyn +Carrmann +Carro +Carrol +Carrol Gate +Carroll +Carroll Heights +Carroll Mill +Carrolls +Carrollton +Carrollwood +Carrolton +Carron +Carrona +Carroun +Carrousel +Carrow +Carrowbrook +Carrs +Carrs Creek +Carrs Ridge +Carrs Wharf +Carrsfield +Carrsvale +Carrswood +Carruth +Carruthers +Carrwood +Carry +Carry Back +Carryback +Carsam +Carsdale +Carse +Carsha +Carshalton +Carshalton High +Carshalton Park +Carslake +Carson +Carsonwood +Carstairs +Carstensen +Carswell +Cart +Cart Path +Carta +Carta Blanca +Cartagena +Cartan +Cartbridge +Carter +Carter Acres +Carter House +Carter Ridge +Carteret +Carterhatch +Carters +Carters Grove +Cartersfield +Carterwood +Carthage +Carthew +Carthona +Carthouse +Carthusian +Cartier +Cartigan +Carting +Cartisian +Cartledge +Cartlodge +Cartmel +Cartmell +Cartmore +Carton +Cartref +Cartridge +Cartway +Cartwright +Carukin +Carunna +Caruso +Caruth +Carvel +Carvel Beach +Carvell +Carven +Carver +Carver Beach +Carver Highland +Carver Hill +Carver Park +Carvers +Carville +Carwall +Carwar +Carwell +Carwin +Cary +Cary Algonquin +Cary Geights +Cary Point +Caryhurst +Caryl +Caryll +Carysfield +Carysfort +Caryville +Cas +Casa +Casa Blanca +Casa Bona +Casa Buena +Casa Del Sol +Casa Grande +Casa Linda +Casa Loma +Casa Madeira +Casa Mia +Casa Nueva +Casa Robles +Casa Verde +Casa View +Casa de Arroyo +Casa de Vida +Casa del Mar +Casablanca +Casado +Casals +Casamita +Casanda +Casanova +Casavan +Casbeer +Cascade +Cascade Falls +Cascade Fire +Cascade Ridge +Cascades +Cascara +Casco +Casco Point +Cascus +Casdin +Case +Casears +Casella +Caselli +Caselman +Casement +Casemont +Casewick +Casey +Cashel +Cashel Bay +Cashell +Casher +Cashew +Cashew Blossom +Cashlenan +Cashman +Cashmere +Cashmore +Casilear +Casillas +Casimere +Casimir +Casino +Casita +Casitas +Caskey +Caslan +Caslocke +Casmar +Cason +Caspar +Caspars +Casper +Caspers +Casperson +Caspian +Caspian Sea +Cass +Cass Brook +Cassady +Cassandra +Cassata +Cassayre +Casseday +Cassedy +Cassel +Casselden +Casselino +Cassell +Casselman +Cassena +Casserly +Cassett +Cassia +Cassiar +Cassidy +Cassidy Field +Cassie +Cassilda +Cassilis +Cassin +Cassina +Cassins +Cassio +Cassiobridge +Cassiobury +Cassiobury Park +Cassiopia +Cassland +Casslee +Casson +Casswall +Casta +Castagnaro +Castagnasso +Castaldi +Castanas +Castano +Castanos +Castaway +Castec +Castell +Castellain +Castelli +Castello +Castelnau Lonsdale +Castelton +Casten +Castenada +Casterbridge +Casterline +Casterson +Casterton +Castile +Castilian +Castilla +Castilleja +Castillejo +Castillo +Castillon +Castine +Castlands +Castle +Castle Bar +Castle Baynard +Castle Brooke +Castle Cary +Castle Cove +Castle Creek +Castle Crest +Castle Croft +Castle Edge +Castle End +Castle Farm +Castle Gate +Castle Glen +Castle Grove +Castle Harbor +Castle Heights +Castle Hill +Castle Hill Ranch +Castle Howard +Castle Ings +Castle Knoll +Castle Lake +Castle Lodge +Castle Manor +Castle Mill +Castle Moor +Castle Oaks +Castle Park +Castle Pine +Castle Pines +Castle Pointe +Castle Ridge +Castle Rock +Castle Rough +Castle View +Castle Wynd +Castlebar +Castleberry +Castlebridge +Castlebrook +Castlebury +Castlecombe +Castlecrest +Castlecroft +Castledon +Castledown +Castlefield +Castleford +Castleford Bank +Castlegate +Castlehaven +Castleknoll +Castlemain +Castlemaine +Castleman +Castlemere +Castlemill +Castlemont +Castlemoor +Castlenau +Castleraegh +Castlerea +Castlereagh +Castlereigh +Castlerigg +Castlerock +Castlerook +Castles +Castleshaw +Castleton +Castletown +Castleview +Castlewellan +Castlewood +Castley +Casto +Caston +Castor +Castro +Castro Ranch +Castro Valley +Castroville +Casuarina +Casula +Casurina +Caswell +Cat +Cat Hollow +Cat Pond +Cat Rock +Cat Tail +Catafalque +Cataldi +Cataldo +Catalina +Catalina Island +Cataline +Catalpa +Catalpha +Catamaran +Catamount +Catania +Catanna +Catapult +Cataract Hollow +Cataumet +Catawba +Catbird +Catchpenny +Catchpole +Cateaton +Cateau +Catepillar +Cater +Caterfield +Caterham +Caterpillar +Caterson +Cates Lake +Cates Ranch +Catesby +Catfish +Catford BridgeDoggett +Catha +Cathall +Cathan +Cathanger +Cathard +Catharine +Catharpin +Cathay +Cathcart +Cathead +Cathedral +Cathedral Park +Cather +Catherall +Catherine +Catherine Field +Catherine Fran +Catherine Glen +Catherine Wheel +Catherines +Cathermola +Catherwood +Cathill +Cathleen +Cathlin +Cathlow +Cathness +Cathrine +Cathy +Catia +Catie +Catlett +Catlin +Catlins +Catlow +Cato +Catoctin +Caton +Caton Center +Caton Crest +Caton Farm +Caton Ridge +Catonopsis +Catoona +Cator +Catrina +Catron +Catsbrook +Catsey +Catskill +Cattai Creek +Cattail +Cattail Spring +Cattaraugus +Catterall +Catterick +Catterwood +Catteshall +Cattistock +Cattle +Cattle Chute +Cattle Market +Cattlegate +Cattleman +Catton +Catts Tavern +Cattswood +Catulpa +Caucer +Caudill +Caughey +Cauldwell +Cauley +Caulfield +Caulms Wood +Caumsett Farms +Caumsett Woods +Causeway +Causeway End +Causey +Causeyware +Causton +Cautherly +Cautley +Cavalcade +Cavalier +Cavalier Landing +Cavalier Woods +Cavallero +Cavalletti +Cavallo +Cavalry +Cavan +Cavanagh +Cavanaugh +Cavatorta +Cave +Cave Gulch +Cave Rocks +Cavedale +Cavell +Caven Point +Cavendish +Caveridge +Caverly +Cavern +Cavers +Caversham +Caversham Park +Caversham park +Caves +Caveys +Cavill +Cavite +Cavitt +Cavoretto +Cavour +Cawarra +Cawarrah +Cawbeck +Cawcott +Cawder Lee +Cawdor +Cawdor Farms +Cawfield +Cawker +Cawley +Cawnpore +Cawthorne +Caxton +Cayden +Cayer +Cayetano +Cayley +Cayman +Cayman Island +Caymus +Cayote Hill +Cayser +Caythorpe +Cayton +Cayucos +Cayuga +Caywood +Cazadero +Cazeneuve +Cazenove +Cazneau +Cañada +Cbq +Cc +Ce. Patricia +Cebalo +Cebold +Cebra +Cebu +Cecala +Cecatra +Cecelia +Cecil +Cecil Aldin +Cecil Crest +Cecil Newman +Cecile +Cecilia +Cecilian +Cecily +Cedar +Cedar Acres +Cedar Branch +Cedar Bridge +Cedar Brook +Cedar Cliff +Cedar Creek +Cedar Crest +Cedar Crossing +Cedar Crown +Cedar Dale +Cedar Dell +Cedar Falls +Cedar Farms +Cedar Flat +Cedar Forest +Cedar Gables +Cedar Gate +Cedar Glade +Cedar Glen +Cedar Glenn +Cedar Green +Cedar Grove +Cedar Haven +Cedar Hedge +Cedar Hill +Cedar Hills +Cedar Hollow +Cedar Knoll +Cedar Knolls +Cedar Lake +Cedar Lakes +Cedar Lawn +Cedar Logs +Cedar Mountain +Cedar Oaks +Cedar Park +Cedar Point +Cedar Pointe +Cedar Pond +Cedar Post +Cedar Ranch +Cedar Ridge +Cedar River Park +Cedar River Pipeline +Cedar Run +Cedar Shore +Cedar Spring +Cedar Springs +Cedar Swamp +Cedar Terrace +Cedar Tree +Cedar Valley +Cedar View +Cedar Wood +Cedarbend +Cedarberry +Cedarbluff +Cedarbridge +Cedarbrook +Cedarcliff +Cedarcreek +Cedarcrest +Cedarcroft +Cedardale +Cedarest +Cedarfield +Cedarforest +Cedargrove +Cedarhill +Cedarhollow +Cedarhurst +Cedarlawn +Cedarlea +Cedarleaf +Cedarmeadow +Cedarne +Cedars +Cedars East +Cedartree +Cedarvale +Cedarvale Access +Cedarview +Cedarvillage +Cedarville +Cedarwood +Ceddox +Ceder +Cedrela +Cedric +Cedro +Cedrus +Ceely +Cefalo +Cefalu +Celadon +Celandine +Celano +Celebes +Celebrar +Celebration +Celebrity +Celeo +Celery +Celeste +Celestial +Celestine +Celia +Celilo +Celina +Celinda +Celine +Celium +Cell Barnes +Cell Farm +Cellar +Cellar Door +Cellars +Celler +Celtic +Cembellin +Cement Hill +Cement Plant +Cemetary +Cemetery +Cemmaes Court +Cenacle +Cendry +Cenex +Centaur +Centaurus +Centech +Centella +Centenary +Centennial +Centennial Grove +Centennial Park +Centeno +Center +Center Bay +Center Briarwood +Center Bridge +Center Cargo +Center Chicot +Center Cir +Center Court +Center Dyre +Center Flats +Center Harbor +Center Hill +Center Knolls +Center Market +Center Ridge +Center Village +Center Wood +Center for the Arts +Centergate +Centerhill +Centerport +Centershore +Centerton +Centerview +Centerville +Centerwood +Centinella +Centola +Centoni +Central +Central Cabin +Central Park +Central Skokie +Central Square +Central Village +Central Wall +Central Way Faggs +Centre +Centre Common +Centre Court +Centre Island +Centre Park +Centre Pointe +Centre Pt +Centre Square +Centre View +Centrella +Centreville +Centreville Farms +Centrum +Centurion +Century +Century Farm +Century Frontage +Century Manor +Century Mill +Century Oaks +Century Ridge +Century Towne +Century Vista +Cephas +Cera +Ceralene +Ceramic +Ceramica +Cerchio +Cerdan +Cereal +Cereda +Cereea +Cerenzia +Ceres +Ceresia +Cereza +Cereze +Cerezo +Cerina +Cerini +Cerise +Cermak +Cernan +Cerne +Cernohous +Cernon +Cerny +Cerone +Cerqua +Cerra Vista +Cerrato +Cerreta +Cerretta +Cerrito +Cerritos +Cerro +Cerro Crest +Cerro Este +Cerro Vista +Cerruti +Cervantes +Cervato +Cesa +Cesar +Cesar Chavez +Cesario +Cesena +Cessford +Cessington +Cessna +Cesta +Cestaric +Cestrum +Cetrina +Cevets +Cevu +Cewell +Ceylon +Ceynowa +Cezanne +Chaban +Chablis +Chabolla +Chabot +Chaboya +Chace +Chace Hill +Chackfield +Chaco +Chad +Chada +Chadacre +Chadbourne +Chadd +Chadderton +Chadderton Hall +Chadderton Park +Chaddick +Chaddock +Chadds Ford +Chadima +Chadkirk +Chado +Chadovoyne +Chads +Chadsworth +Chadvil +Chadwell +Chadwic +Chadwick +Chadwick Hall +Chadwick Oaks +Chadwicke +Chadwin +Chaffee +Chaffer +Chaffes +Chaffey +Chaffin +Chaffinch +Chaffins +Chafford +Chagall +Chagford +Chahotkin +Chailey +Chain +Chain Bar +Chain Bridge +Chain O Hills +Chain of Lakes +Chaingate +Chairborough +Chaix +Chakya +ChalGrave +Chaladay +Chalapa +Chalcedony +Chalcombe +Chalcot +Chalcroft +Chalder +Chaldon +Chaldon Common +Chale +Chalet +Chalet Clothilde +Chaleyer +Chalfant +Chalfont +Chalfonte +Chalford +Chalfort +Chalgrove +Chalice +Chalk +Chalk Farm +Chalk Hill +Chalk Mountain +Chalk Pit +Chalk Point +Chalkely +Chalkenden +Chalkers +Chalket +Chalkhouse Green +Chalkpit +Chalks +Chalkshire +Chalkwell +Chalkwell Park +Chalky +Chalky Bank +Challas +Challedon +Challener +Challenge +Challenger +Challin +Challis +Challoner +Challum +Chally +Chalmers +Chalmette +Chalner +Chalomar +Chalon +Chalone +Chaloner +Chalsey +Chalton +Chalvedon +Chambellan +Chamber +Chamber House +Chamberer +Chamberlain +Chamberland +Chamberlayne +Chamberlin +Chambers +Chambers Green +Chambersbury +Chambino +Chamblis +Chambord +Chambosse +Chambourd +Chambray +Chaminade +Chamlis +Chamomile +Chamone +Chamonieux +Chamonix +Champ +Champa +Champagne +Champion +Champions +Championship +Champlain +Champlaine +Champlin +Champness +Champney +Champs Elysee +Chanate +Chance +Chance Farm +Chanceford +Chancel +Chancelet +Chancell +Chancellor +Chancellors +Chancelor +Chancery +Chanctonbury +Chandeaux +Chandlee Mill +Chandler +Chandler Mill +Chandlers +Chandley +Chandos +Chanel +Chaney +Chaneyville +Changebridge +Chanhassen +Chanler +Chanlon +Channahon +Channel +Channel Center +Channel Gate +Channel Islands +Channelsea +Channer +Channing +Channing Bicycle +Channon +Chanol +Chanslor +Chansory +Chant +Chantal +Chantecler +Chantel +Chanters +Chanticlare +Chanticleer +Chantilley +Chantilly +Chantilly Baptist +Chantilly Crossing +Chantler +Chantlers +Chanton +Chantrey +Chantry +Chantry View +Chanute +Chanwahon +Chapala +Chaparral +Chaparro +Chapek +Chapel +Chapel Chase +Chapel Cove +Chapel End +Chapel Farm +Chapel Field +Chapel Fields +Chapel Forge +Chapel Gate +Chapel Hill +Chapel House +Chapel Lake +Chapel Mill +Chapel Oak +Chapel Oaks +Chapel Pond +Chapel Springs +Chapel View +Chapel Wood +Chapelfield +Chapelgate +Chapelle +Chapelmount +Chapeltown +Chapeltown Carlisle +Chapeltown Grove +Chapelview +Chapelwood +Chapin +Chaplain +Chaplin +Chapman +Chapman Mill +Chapman Oak +Chapmans +Chapmans Landing +Chapmans Town +Chapparal +Chappel +Chappell +Chappell of Bond +Chappellwood +Chappie +Chapter +Chapter House +Char +Charabanc +Charal +Charandy +Charant +Charbonnier +Charcoal +Charcot +Chard +Chardin +Chardmore +Chardon +Chardonnay +Chardonnay Ridge +Charen +Charena +Charfleets +Charford +Chargall +Chargeable +Charger +Charges +Chargin +Charina +Charing +Charing Cross +Charing Heath +Charing School +Charington +Chariot +Charish +Charismatic +Chariton +Charity +Charker +Charkers +Charlam +Charlbert +Charlbury +Charlcote +Charldane +Charlden +Charlecot +Charlecote +Charlela +Charlemagne +Charlemaine +Charlemont +Charlene +Charleroi +Charles +Charles Anna +Charles Arrington +Charles Augustine +Charles Babbage +Charles Cali +Charles Coveney +Charles Crossing +Charles Davis +Charles Dean +Charles Dickens +Charles Diersch +Charles Dunn +Charles E Ryan +Charles Gate +Charles Hackett +Charles Hall +Charles Halle +Charles Haller +Charles Hawkins +Charles Hayman +Charles Hill +Charles Holden +Charles II +Charles Lacey +Charles Lake +Charles Lindbergh +Charles M Bailey +Charles Mary +Charles Park +Charles Patten +Charles River +Charles Schell +Charles Sevright +Charles Thomson +Charles Wack +Charles Young +Charlesbank +Charlescotte +Charlesdale +Charlesfield +Charlesford +Charlesgate +Charlesmere +Charleson +Charleston +Charlestown +Charlestowne +Charlesview +Charlesworth +Charley +Charley Forest +Charlie +Charlie Joyner +Charlie Piddles +Charlie Yankos +Charlieville +Charline +Charlmont +Charlock +Charlott +Charlotte +Charlotte Despard +Charlotte Park +Charlotteburg +Charlottesburg +Charlottesville +Charlson +Charlton +Charlton Church +Charlton Mead +Charlville +Charlwood +Charlwoods +Charlyn +Charmada +Charmain +Charman +Charman Hill +Charme +Charmello +Charmeran +Charmfield +Charmian +Charmin +Charmingfare +Charminster +Charmouth +Charning Cross +Charnock +Charnstaffe +Charnswood +Charnville +Charnwood +Charolette +Charolotte +Charon +Charred Oak +Charredwood +Charring +Charrington +Chars +Charsan +Chart +Chart Hill +Chart House +Charta +Chartbury +Charter +Charter Oak +Charter Oaks +Charter One +Charterhouse +Charteris +Charters +Chartfield +Chartham +Charthouse +Chartier +Chartmoor +Chartres +Chartreux +Chartridge +Chartsey +Chartwell +Charvil +Charvil House +Charvil Meadow +Charvill +Charville +Charwood +Chas +Chasden +Chase +Chase Commons +Chase Cross Havering +Chase Green +Chase Hill +Chase Hills +Chase Pond +Chase Side +Chasefield +Chaseley +Chaseling +Chasely +Chasemill +Chasemoor +Chaseside +Chasewood +Chaska +Chaske +Chasmar +Chasner +Chasselas +Chassen +Chassyl +Chastworth +Chatam +Chataway +Chatburn +Chateau +Chateau Bluff +Chateau Ridge +Chateau Thierry +Chateau la Salle +Chateaugay +Chateaulin +Chateaux Bouane +Chatelain +Chatfield +Chatham +Chatham Hall +Chatham Hill +Chatham Hill Windmill +Chatham Village +Chathamfield +Chathams Ford +Chathlake +Chatillion +Chatillon +Chatley +Chaton +Chatres +Chatswood +Chatsworth +Chattanooga +Chattenden +Chatter Brook +Chatteris +Chattern +Chatterton +Chattleton +Chatto +Chattswood +Chatwood +Chaucer +Chaul End +Chaulden +Chaumont +Chauncey +Chauncy +Chauntry +Chauser +Chautaugua +Chautauqua +Chauvel +Chauvet +Chauvety +Chave +Chaves +Chavey Down +Chavez +Chavoya +Chaworth +Chawridge +Chawton Park +Chayes Park +Chaytor +Chazey +Che Che Pinqua +Cheadle +Cheadle Old +Cheal +Cheam +Cheam Common +Cheapside +Cheatle +Chebacco +Chebec +Chebek +Chechester +Check +Checker +Checker Berry +Checkerberry +Checkered Flag +Checkers +Checkerspot +Checkley +Checkstone +Cheda +Cheda Knolls +Cheddar +Cheddington +Cheddleton +Chedlee +Chedlin +Chedworth +Cheekbridge +Cheekwood +Cheelson +Cheeney +Cheers +Cheery +Cheeryble +Cheese +Cheesecombe Farm +Cheesequake +Cheesequake Park +Cheetah +Cheetam Fold +Cheetham +Cheetham Hill +Cheethams +Cheetwood +Cheever +Cheevers +Cheffins +Chegwell +Chegworth +Chegwyn +Chehalis +Chelan +Chelbourne +Cheldon +Chelford +Chell +Chellaston +Chellman +Chellows +Chells +Chelmar +Chelmer +Chelmer Valley +Chelmerton +Chelmont +Chelmsford +Chelsa +Chelsea +Chelsea Beaufort +Chelsea Hills +Chelsea Manor +Chelsey +Chelsfield +Chelsham +Chelsham Common +Chelsham Court +Chelshire +Chelson +Chelston +Chelsworth +Cheltenham +Cheltenhan +Chelton +Chelverton +Chelwood +Chelwood Gate +Chelwynd +Chemeketa +Chemical +Chemise +Chemka Pool +Chemlsford +Chemolite +Chemung +Chen +Chenango +Chenault +Chenery +Cheney +Cheney Pond +Chenies +Chenin +Chenin Blanc +Chennault +Chennell Park +Chenu +Chepstow +Chequer +Chequers +Chequers Bridge +Chequesset +Chequessett +Cherbourg +Cherbury +Cheri +Cherice +Cherie +Cherington +Cheris +Cherita +Cheriton +Cherly +Cherlyn +Cherne +Cherokee +Cherokee Heights +Cherri +Cherri Lynn +Cherrington +Cherry +Cherry Bend +Cherry Blossom +Cherry Brook +Cherry Creek +Cherry Crest +Cherry Garden +Cherry Gate +Cherry Glen +Cherry Green +Cherry Grove +Cherry Hill +Cherry Hills +Cherry Holt +Cherry Laurel +Cherry Lawn +Cherry Mill +Cherry Oak +Cherry Oca +Cherry Orchard +Cherry Point +Cherry Ridge +Cherry Springs +Cherry Tree +Cherry Tree Crossing +Cherry Tree Farm +Cherry Trees +Cherry Valley +Cherry Wood +Cherryblossom +Cherrybrook +Cherrycrest +Cherrycroft +Cherrydale +Cherrydown +Cherryfield +Cherryfields +Cherryhill +Cherryhills +Cherryland +Cherrylawn +Cherrystone +Cherrythorne +Cherryton +Cherrytree +Cherryvale +Cherryview +Cherryville +Cherrywood +Cherston +Chertsey +Chertsey Bridge +Cherubina +Chervil +Cherwal +Cherwek +Cherwell +Cherwick +Cherwing +Cheryl +Cheryl Ann +Cheryl Beck +Cheryl Hills +Cheryl Turn +Cheryll +Ches Mar +Chesapeake +Chesapeake Bay +Chesapeake Beach +Chesapeake Harbour +Chesapeake Lighthouse +Chesborough +Chesbro +Chesbro Lake +Chesbrough +Cheseapeake +Chesebrough +Cheselden +Cheseman +Chesett +Chesfield +Chesford +Chesham +Chesham Fold +Cheshire +Chesholm +Cheshunt +Chesilton +Chesire +Chesley +Chesley Knoll +Chesline +Chesman +Chesney +Chesney Glen +Chesnut +Chess +Chessel +Chessenden +Chessholme +Chesshyre +Chessington +Chessman +Chessnut +Chesson +Chestehunt +Chester +Chester Brook +Chester Hall +Chester Hill +Chesterblade +Chesterbrook +Chesterfield +Chesterford +Chesterhill +Chesterlee +Chesterman +Chesters +Chesterton +Chestertown +Chesterwood +Chestney +Chestnut +Chestnut Cove +Chestnut Crossing +Chestnut Farm +Chestnut Gardens +Chestnut Grove +Chestnut Hill +Chestnut Hills +Chestnut Knolls +Chestnut Leaf +Chestnut Oak +Chestnut Park +Chestnut Pointe +Chestnut Ridge +Chestnut Springs +Chestnut Tree +Chestnut Wood +Cheston +Chestwall +Cheswick +Cheswood +Chetland +Chettenham +Chetwode +Chetwood +Chetwyn +Chetwynd +Cheval +Chevalier +Chevalle +Chevchenko +Chevelle +Chevening +Cheverly +Cheverly Park +Cheverton +Cheverus +Cheves +Chevet +Chevin +Chevington +Cheviot +Cheviot on Duxbury +Cheviots +Chevy +Chevy Chase +Chevy Chase Lake +Chew +Chew Brook +Chew Valley +Chewpon +Chews Branch +Chews Chapel +Chewter +Cheyenne +Cheylesmore +Cheyne +Cheyne Park +Cheyneys +Chiala +Chianti +Chicago +Chicago Tube +Chicama +Chicamuxen +Chicatabut +Chicatawbut +Chicester +Chichele +Chicheley +Chichester +Chichester House +Chick +Chick Evans +Chickacoan Trail +Chickadee +Chickaree +Chickasaw +Chickatabot +Chickatawbut +Chicken +Chicken Shack Fire +Chicken Valley +Chickenden +Chickering +Chickie +Chickney +Chickory +Chico +Chicoine +Chicopee +Chicorp +Chicory +Chicot +Chiddingfold +Chiddingstone +Chidester +Chidley Cross +Chidlow +Chidswell +Chidwall +Chiechi +Chief +Chieftain +Chiesa +Chieveley +Chifley +Chigborough +Chignal +Chignall +Chigwell +Chigwell Park +Chilanian +Chilaw +Chilberton +Chilbrook +Chilco +Chilcoate +Chilcote +Chilcott +Chilcroft +Child +Childerditch +Childerditch Hall +Childeric +Childerley +Childers +Childrens +Childress +Childs +Childs Hall +Childs Hill Finchley +Childs Point +Childsbridge +Childscroft +Chileno Valley +Chiles +Chiles Pope Valley +Chilgrove +Chilham +Chilhowie +Chillem +Chillerton +Chillies +Chilling +Chillington +Chillingworth +Chillis Wood +Chilliwack +Chillum +Chillum Manor +Chillumgate +Chilmark +Chilmead +Chilpancingo +Chilsey Green +Chilston +Chiltern +Chiltern Green +Chiltern Hill +Chiltern Hills +Chiltern Park +Chiltern View +Chiltley +Chilton +Chilver +Chilvers +Chilverton +Chilworth +Chimalus +Chime +Chimes +Chimes Harbor +Chimney +Chimney Corner +Chimney Creek +Chimney House +Chimney Pot +Chimney Ridge +Chimney Rock +Chimney Swift +China +China Air +China Basin +China Grade +China Wall +Chinaberry +Chinatown Dean +Chinbrook +Chinchilla +Chincoteague +Chindits +Chineham +Chinewood +Chingarora +Chingdale +Chingford +Chingford Mount +Chinkapin +Chinley +Chinmoy +Chinn +Chinn Park +Chinnock +Chinnuk +Chinook +Chinquapin +Chinquapin Crest +Chinquapin Round +Chinthurst +Chiott +Chip Hill +Chipili +Chipily +Chipka +Chiplay +Chipley +Chiplou +Chipman +Chipmonk Hollow +Chipmunk +Chippen +Chippendale +Chippendayle +Chippenham +Chipper +Chipper Hill +Chipperfield +Chippetts +Chippewa +Chipping +Chipping Campden +Chippingham +Chippingstone +Chippy +Chipstead +Chipstead Valley +Chipstone +Chipwood +Chiquita +Chiquita Camino +Chircan +Chirco +Chisago +Chisamore Ranch +Chiselhurst +Chisenhale +Chisholm +Chisholme +Chisledon +Chislehurst +Chisley +Chism Park +Chisolm +Chisom +Chisum +Chiswell +Chiswell Green +Chiswick +Chiswick Common +Chiswick High +Chisworth +Chittenden +Chittendon +Chittick +Chitty +Chittys +Chivalry +Chivers +Chloe +Choate +Choats +Chobham +Chobham Park +Chobot +Chocataw +Chocksett +Chocolate +Chocolog +Choctaw +Choir +Choke +Choke Cherry +Chokeberry +Chokecherry +Chole +Cholesbury +Cholla +Cholmeley +Cholmley +Cholmondeley +Cholseley +Chope +Chopek +Chopin +Choptank +Chorley +Chorley Hall +Chorley New +Chorley Old +Chorley Wood +Chorleywood +Chorlton +Choseley +Chouteau +Chovan +Chowan +Chowdermarch +Chowen +Chownes Mead +Chrerrybrook +Chretien +Chris +Chris Mar +Chrisandra +Chrisba +Chrisdumar +Chrisibar +Chrisland +Chrisman +Chrisman Hill +Chrismar +Chrismas +Chrisp +Christ Church +Christa +Christabel +Christchurch +Christeen +Christel +Christel Oaks +Christen +Christensen +Christenson +Christeph +Christer +Christian +Christian Fields +Christian Hill +Christiana +Christiana Parran +Christiano +Christiansen +Christie +Christie Heights +Christie Hill +Christies +Christina +Christina Marie +Christine +Christine Lynn +Christleton +Christman +Christmas +Christmas Lake +Christmas Pie +Christmas Tree +Christmas Tree Point +Christo +Christofaro +Christol +Christoper +Christopher +Christopher Columbus +Christopher Martin +Christopher Michael +Christopher Thomas +Christopher Wren +Christophers +Christs Hospital +Christy +Chrome +Chromite +Chronical +Chronicle +Chronnell +Chruchville +Chrysanthemum +Chrysanthy +Chrysler +Chrysopolis +Chryssell +Chrystie +Chu +Chubb +Chubbs Brook +Chubbuck +Chubworthy +Chuch +Chuck +Chuck Hatch +Chuckanutt +Chuckwagon +Chudleigh +Chukker +Chula +Chula Vista +Chulsey +Chum +Chumalia +Chumasero +Chumleigh +Chung Wah +Chungking +Chunis +Chunooma +Church +Church Access +Church Creek +Church Elm +Church End +Church End East End +Church End EstateMayo +Church Farm +Church Gate +Church Headland +Church Hill +Church Hill Kirkfield +Church Lake +Church Park +Church Wood +Church of Hazel +Churchbury +Churcher +Churchfield +Churchfields +Churchgate +Churchhill +Churchill +Churchill Downs +Churchill Farm +Churchill Glen +Churchill Park +Churchills +Churchland +Churchman +Churchmead +Churchmore +Churchston +Churchtown +Churchview +Churchville +Churchwood +Churin +Churley Wood +Churlin +Churn +Churnet +Churnside +Churston +Churt +Churton +Churubusco +Churwell +Chute +Chuter +Chutney +Chuzzlewit +Chyam +Chynoweth +Ciampa +Cianci +Ciarlo +Cibber +Cibis +Cibrian +Cicada +Cicada Glen +Ciccarelli +Ciccone +Ciceley Mill +Cicely +Cicero +Cicerone +Cid +Cidalia +Cider +Cider Hill +Cider House +Cider Mill +Cider Springs +Cidermill +Cielito +Cielo +Cielo Vista +Cienega +Ciervos +Cijos +Cilantro +Cima +Cimarron +Cimino +Cimmaron +Cimmarron +Cinamon +Cincinatti +Cincinnatti +Cincinnatus +Cindee +Cinder +Cinder Hill +Cinderbed +Cinderella +Cinderford +Cindra +Cindy +Cindy Jo +Cinmar +Cinnabar +Cinnabar Hills +Cinnamin +Cinnamon +Cinnamon Apple +Cinnamon Creek +Cinnamon Teal +Cinnamon Tree +Cinnamond +Cintra +Cintura +Ciolino +Ciper +Cippenham +Cipres +Cipriani +Cipriano +Cipriano Springs +Circa +Circle +Circle C +Circle Court +Circle Creek +Circle Gate +Circle High +Circle Hill +Circle Oaks +Circle Pine +Circle Ranch +Circle Ridge +Circledale +Circlegate +Circling Hunter +Circuit +Circular +Circus +Ciro +Cirolero +Cirrus +Ciruela +Cirvelo +Cisco +Cisler +Cisney +Ciss +Cissbury +Cissell +Cissell Manor +Cisticola +Cistus +Cit +Citadel +Citadelle +Citation +Citizen +Citizens +Citrine +Citron +Citrus +Citrus Grove +Citrus Wood +Citruswood +City +City Center +City Centre +City Dock +City Gate +City Hall +City Heights +City Island +City Park +City View +City Way Pattens +City West +Cityfront Plaza +Cityhomes +Cityview +Civic +Civic Center +Civic Centre Wood +Civic Ctr +Civic Heights +Civic Terrace +Civita +Clack +Clacket +Clackhams +Clackmannan +Claeys +Claffey +Claffy +Claflin +Claflin Farm +Clafton +Clagett +Clagett Farm +Claggett +Claggett Landing +Claggy +Claiborne +Claibourne +Claim +Clair +Clairborne +Claire +Clairemont +Clairfield +Clairmont +Clairton +Clairvale +Clairview +Clallam +Clam +Clam Shell +Clames +Clamhunger +Clammer Hill +Clamshell +Clanalpine +Clanbrook +Clancarty +Clancy +Clandlpline +Clandon +Clanton +Clanville +Clanwilliam +Clapboard Ridge +Clapboardtree +Clapgate +Clapham +Clapham High +Clapham Manor +Clapham Park +Clapp +Clapper +Clappers +Clappers Farm +Clappertown +Clappins +Clapton Hall +Clara +Clara Barton +Clara Louise +Clara Maass +Clara Vista +Claradon +Clarana +Clarane +Clarden +Clare +Clare Lawn +Claredale +Claredon +Clarefield +Claremon +Claremont +Claremont Park +Claremont Woods +Claremore +Claremount +Clarenan +Clarence +Clarence Bromell +Clarendale +Clarenden +Clarendon +Clarendon Hills +Clarendon Woods +Clarens +Clares +Clares Green +Claret +Clarevale +Clareview +Clareville +Clarewill +Clarewood +Clarges +Claria +Claribel +Clarice +Claridge +Clarie +Clarina +Clarinada +Clarinda +Clarion +Clarissa +Clarita +Clark +Clark Fork +Clark Green +Clark Hill +Clark Lake +Clark Smith +Clarkbrooke +Clarke +Clarke Farms +Clarke Hall +Clarkebourne +Clarken +Clarkes +Clarkes Landing +Clarkford +Clarkin +Clarks +Clarks Branch +Clarks Crossing +Clarks Farm +Clarks Hill +Clarks Run +Clarks Wood +Clarksburg +Clarksdale +Clarksfield +Clarkson +Clarkspur +Clarkston +Clarksville +Clarkton +Clarkwood +Clarmont +Clarmonte +Clarner +Claron +Clary +Clary Sage +Clason +Clason Point +Classen +Classic +Classical +Classico +Classon +Clatterbury +Claucus +Claudare +Claude +Claude Moore +Claudett +Claudia +Claudine +Claudius +Claudy +Claughton +Claus +Clausen +Clauser +Clausing +Clausland Mountain +Clauson +Clauss +Clavadal +Clave +Clavel +Clavela +Clavell +Claverack +Claverdale +Claverdon +Claverhambury +Clavering +Claverton +Claverts +Clavey +Clavinia +Clawiter +Clawson +Claxfield +Claxton +Clay +Clay Bank +Clay Basket +Clay Cliffe +Clay East +Clay End +Clay Hammond +Clay Hill +Clay Pit +Clay Spring +Clay Tye +Claybank +Claybar +Clayboard +Clayborn +Clayborne +Claybourne +Claybrook +Claybrook Farms +Clayburn +Claybury +Claycart +Claycord +Claycourt +Claydon +Clayfarm +Clayfield +Claygate +Clayhall +Clayhill +Clayholes +Claymere +Claymont +Claymoor +Claymore +Claypit +Claypit Hill +Claypits +Claypitt +Claypole +Clayponds +Claypool +Clays +Clayshotts +Clayton +Clayton Croft +Clayton Hall +Clayton Marsh +Clayton View +Claytonbrook +Claytonia +Claywood +Cleabarrow +Cleadon +Cleall +Cleanthus +Clear +Clear Creek +Clear Echo +Clear Lake +Clear Ridge +Clear River +Clear Shot +Clear Spring +Clear Springs +Clear View +Clearbrook +Clearbrook Park +Clearcroft +Cleares +Clearfield +Clearland +Clearly +Clearmeadow +Clearmont +Clearmount +Clearpointe +Clearview +Clearwater +Clearwater Creek +Clearwaters +Clearway +Clearwell +Clearwood +Cleary +Cleary Lake +Cleave +Cleaveland +Cleaver +Cleaves +Cleavland +Cleavley +Cleburne +Clee +Cleeve +Cleft +Cleg +Clegg +Cleggs +Cleghorn +Cleland +Clelia +Clelland +Clem +Clemans +Clematis +Clemence +Clemens +Clement +Clement Royds +Clemente +Clementhorpe +Clementi +Clementina +Clementine +Clementon +Clements +Clements End +Clements Hall +Clementson +Clemiston +Clemmons +Clemo +Clemons +Clemson +Clemton +Clenches Farm +Clendenin +Clendenny +Clendinnen +Clennam +Clensham +Clent +Cleo +Cleo Rand +Cleo Springs +Cleome +Cleone +Cleopatra +Clere +Cleremont +Cleremore +Clerihew +Clerk +Clerke +Clermont +Cletus +Cleve +Clevedon +Cleveland +Cleveland Park +Cleveleys +Clevely +Clevemont +Cleverdon +Cleverly +Cleves +Clevis +Clewborough +Clewer +Clewer Court +Clewer Hill +Clewerwall +Clewes +Clewley +Cleworth +Cleworth Hall +Clews +Cley +Cliddesden +Client +Clif +Clifden +Cliff +Cliff Edge +Cliff Estates +Cliff Hill +Cliff Hollins +Cliff House +Cliff Lake +Cliff Pine +Cliff Swallow +Cliff View +Cliff Walk +Cliffbourne +Cliffdale +Cliffe +Cliffe Park +Cliffhaven +Cliffhill +Cliffhouse +Cliffland +Cliffmont +Clifford +Clifford Manor +Clifford Moor +Clifforest +Cliffrose +Cliffside +Cliffside Circle +Clifftop +Clifftown +Cliffview +Cliffwood +Clift +Clifton +Clifton Court +Clifton Creek +Clifton Forest +Clifton Heights +Clifton Hunt +Clifton Oaks +Clifton Park +Clifton Pines +Clifton Point +Clifton Quarry +Clifton Spring +Cliftonbrook +Cliftondale +Cliftons +Cliftonville +Cliftwood +Climbhill +Climmen +Climping +Climus +Clinch +Cline +Clingan +Clinglog +Clink +Clinton +Clinton Manor +Clinton Park +Clinton South +Clinton Vista +Clintonia +Clintonville +Clintwood +Clio +Clipper +Clipper Gap +Clipper Hill +Clipper Ship +Clippers +Clippership +Clipston +Clipstone +Clirieden +Clisby +Clisdell +Clissold +Clitheroe +Clito +Clive +Clive Hills +Clivedale +Cliveden +Clivedon +Clivemont +Clivesdale +Cloak +Cloberry +Clock +Clock Barn +Clock House +Clock Tower +Clockhouse +Clocks +Clocktower +Clohesey +Cloister +Cloisterham +Cloisters +Clomnel +Clonavor +Clonbrock +Cloncurry +Clonmel +Clonmell +Clonmore +Clontarf +Clopper +Cloppers Mill +Clopton +Clorinda +Close +Closeworth +Closter Dock +Cloth +Cloth Hall +Clothall +Clothier +Clothorn +Clothworkers +Clotilda +Cloud +Cloud View +Cloudberry +Cloudesley +Clouds Mill +Cloudsdale +Cloudview +Clough +Clough End +Clough Fold +Clough Head Pinfold +Clough House +Clough Park +Clough Top +Clouston +Cloutier +Cloutman +Clova +Clove +Clove Brook +Clovelly +Clovely +Clover +Clover Flat +Clover Glen +Clover Hill +Clover Knoll +Clover Leaf +Clover Leaf Center +Clover Oak +Clover Patch +Clover Ranch +Clover Ridge +Cloverbrook +Cloverbrooke +Clovercrest +Cloverdale +Cloverfield +Clovergrass +Cloverhill +Cloverhurst +Cloverleaf +Cloverley +Cloverly +Clovermeadow +Clovermere +Clovernook +Cloverview +Cloverway +Cloverwood +Cloveside +Clovewood +Clovis +Clow Creek +Clow International +Clowders +Clowe +Clower +Clowes +Cloyd +Club +Club Center +Club Circle +Club Hill +Club Hollow +Club House +Club Lake +Club Park +Club Pointe +Club Tree +Club View +Club Way +Clubb +Clubhouse +Clubhouse Gate +Clubhouse Memorial +Clubside +Clubview +Clubway +Clucas +Clue +Cluett +Cluff +Clumber +Clump +Clumps +Clunbury +Clunes +Clunie +Clunies Ross +Clutha +Clutton +Clybourn +Clybourne +Clyburn +Clyda +Clyde +Clyde Jones +Clyde O Bosworth +Clyde Potts +Clydebank +Clydelle +Clydesdale +Clydia +Clyfford +Clyfton +Clymer +Clynderven +Clyne +Clysedale +Clyston +Clywd +Cnopius +Co +Co Line +Coach +Coach Hill +Coach House +Coachella +Coachlace +Coachlads +Coachlamp +Coachlight +Coachmaker +Coachman +Coachman Ridge +Coachmans +Coachway +Coachwood +Coakley +Coal +Coal Creek +Coal Hill +Coal Pier +Coal Pit +Coalbrook +Coale +Coalecroft +Coales +Coalinga +Coalkiln +Coalpit +Coalport +Coalshaw Green +Coan +Coare +Coast +Coast Guard +Coast Hill +Coast Hospital +Coast Oak +Coast Range +Coastal +Coastal Charter +Coastal Cove +Coastal Fire +Coastland +Coastview +Coastwise +Coat Ridge +Coatbridge +Coate +Coates +Coates Hill +Coates Park +Coats +Coats Hutton +Cob +Cob Kiln +Cobac +Cobalt +Cobar +Cobargo +Cobb +Cobb Hill +Cobb Island +Cobbadah +Cobbert +Cobbett +Cobbett Hill +Cobbetts +Cobbinsend +Cobbitee +Cobbitty +Cobbity +Cobble +Cobble Brook +Cobble Cove +Cobble Creek +Cobble Crest +Cobble Field +Cobble Hill +Cobble Knoll +Cobble Mill +Cobble Ridge +Cobble Shores +Cobblefield +Cobbler +Cobblerock +Cobblers +Cobblers Beach +Cobblershill +Cobblestone +Cobblestone Fire +Cobblestone Lake +Cobblewood +Cobbold +Cobbs +Cobden +Cobdown +Cobelstone +Coben +Coberley +Cobh +Cobham +Cobham Park +Cobhambury +Cobland +Cobleigh +Coblentz +Coborn +Cobourg +Cobra +Cobran +Cobtree +Coburg +Coburn +Coburn Hill +Coca Cola +Cocasset +Coccio +Cochato +Cochea +Cochetto +Cochise +Cochituate +Cochraine +Cochran +Cochran Mill +Cochrane +Cochrans Lock +Cock +Cock Clod +Cock Green +Cock Hall +Cockatoo +Cockbush +Cockcroft +Cockenoe +Cocker +Cocker Creek +Cocker Mill +Cockerell +Cockerhurst +Cockett +Cockey +Cockfosters +Cockhedge +Cockle Bur +Cocklebur +Cockmannings +Cockpit Point +Cockrell +Cockrells +Cockrill +Cockrobin +Cocks +Cocksfoot +Cocksheadhey +Cockshot +Cockshott +Cockspur +Cocksure +Cockthorpe +Coco +Coco Palm +Coconino +Coconut +Cocos +Cocquina +Cocupara +Cod +Coda +Codale +Codderre +Codding +Coddington +Coddle Harbor +Code +Coderolli +Coderre +Codham Hall +Codicote +Codington +Codjer +Codman +Codman Hill +Codmore Wood +Codo +Codornices +Codorniz +Codorus +Codrington +Cody +Coe +Coeburn +Coed +Coelho +Coes +Coes Neck +Coey +Coeyman +Cofer +Coffee +Coffeeberry +Coffer Woods +Coffey +Coffield +Coffin +Coffman +Coffs Harbour +Cog Hill +Cogate +Coger +Cogger +Coggeshall +Coggins +Coggs Bill +Coghill +Coghlan +Cogmans +Cognewaugh +Cogshall +Cogswell +Cohancy +Cohansey +Cohasett +Cohasset +Cohassett +Cohawney +Cohen +Cohill +Cohn +Cohns +Coho +Cohort +Coil +Coil Plus +Coila +Coin +Coit +Coit Dam +Coit Spring +Coity +Coke +Cokefield +Coker +Cokes +Cola +Colahan +Colam +Colane +Colantha +Colaric +Colasanti +Colbeck +Colbera +Colberg +Colbert +Colborne +Colbourne +Colbrook +Colburn +Colby +Colby Hewitt +Colby Lake +Colby Point +Colchester +Colchester Brook +Colchester Hunt +Colchester Meadow +Colcokes +Cold Arbor +Cold Christmas +Cold Harbor +Cold Harbour +Cold Hill +Cold Norton +Cold Plain +Cold Point +Cold Spring +Cold Spring Brook +Cold Spring Harbor +Cold Spring Hills +Cold Spring Ridge +Cold Springs +Cold Well +ColdHarbour +Coldalhurst +Coldbath +Coldblow +Coldbridge +Coldbrook +Coldcotes +Coldcreek +Colden +Colder +Coldershaw +Coldevin +Coldfall +Coldfield +Coldharbour +Coldicutt +Coldmoorholme +Coldnailhurst +Coldred +Coldren +Coldrum +Coldspring +Coldstream +Coldwaltham +Coldwater +Cole +Cole Farm +Cole Green +Cole Park +Colebert +Coleborne +Colebrook +Colebrooke +Coleby +Colechin +Coleen +Colefair +Coleford +Coleford Bridge +Colegate +Colegates +Colegrave +Colegrove +Coleherne +Colehill +Colekitchen +Colella +Colella Farm +Coleman +Coleman Glen +Coleman Green +Coleman Park +Coleman Ranch +Coleman Thomas +Coleman Valley +Colemans +Colemans Hatch +Colemansmoor +Colemore +Colennade +Colenso +Colepits Wood +Colerain +Coleraine +Colerick +Coleridege +Coleridge +Coleridge Taylor +Coles +Coles Chance +Coles Crossing +Coles Green +Coles Hill +Coles Orchard +Colesberg +Colesburg +Coleshill +Coleshire +Colesmead +Coleson Hill +Colestown +Colesville +Colesville Manor +Colet +Colette +Coleus +Coleville +Colewood +Colewood Estates +Coley +Coley Park +Colfax +Colfe +Colford +Colgan +Colgate +Colgett +Colgrove +Colham +Colham Green +Colham Mill +Colie +Coligni +Colima +Colin +Colin Blythe +Colin Kelly +Colin Murphy +Colin P Kelly Jr +Colin Park +Colina +Colinda +Colindale +Colindeep +Colindia +Colinette +Colins +Colinton +Coliston +Coll +Collado +Collamore +Collar House +Collard +Collards +Collarenebri +Collaroy +Collector +Colleen +Colleen Garden +College +College Eight +College Eight Service +College Farm +College Green +College Heights +College Hill +College Loop +College Manor +College Nine +College Park +College Point +College Pond +College Ten +College Town +College View +Collegeview +Collegiate +Collendean +Collens +Collenswood +Collent +Colles +Colless +Collet +Collete +Colleton +Collett +Collette +Colley +Colley Hill +Colley Manor +Collfield +Collie +Collier +Collier Canyon +Collier Hill +Collier Row +Colliers +Colliers Row +Colliers Water +Colliery +Collimore +Collin +Collincote +Collindale +Colling +Collingbourne +Collingdon +Collinge +Collingham +Collingham Main +Collings +Collingswood +Collingsworth +Collington +Collingtree +Collingwood +Collins +Collins Taft +Collinson +Collinson Lee +Collinsville +Collinwood +Collis +Collischan +Collison +Colliston +Collum Green +Collura +Collyer +Collyhurst +Colma +Colma Creek Service +Colmac +Colman +Colmer +Colmery +Colmore +Colnbrook +Colne +Colne Bank +Colne Park +Colnedale +Colney +Colney Hatch +Colney Heath +Colo +Cologne +Coloma +Colomb +Colombard +Colombine +Colombo +Colon +Colona +Colonade +Colonel +Colonel Bell +Colonel Bennett +Colonel Ellis +Colonel Gridley +Colonel Holcomb +Colonel Hunt +Colonel Johnson +Colonel Lindsay +Colonel Mansfield +Colonel Pye +Colonel Taylor +Colonels +Colonels Choice +Colonia +Colonial +Colonial Arms +Colonial Beach +Colonial Gardens +Colonial Heights +Colonial Hill +Colonial Hills +Colonial Oaks +Colonial Park +Colonial Port +Colonial Post +Colonial Ridge +Colonial Springs +Colonial Village +Colonial Woods +Colonna +Colonnade +Colonsay +Colony +Colony Club +Colony Cove +Colony Crest +Colony Green +Colony Hill +Colony Hills +Colony Knoll +Colony Park +Colony Point +Colony Ridge +Colony View +Colorada +Colorado +Colorado Springs +Colorado Way Carr +Colorado Way Whistler +Colorados +Coloriver +Colpitts +Colrain +Colridge +Colshaw +Colshire +Colson +Colsterworth +Colston +Colt +Colt Run +Coltash +Colthurst +Coltishall +Coltman +Colton +Colton School +Colts +Colts Brook +Colts Neck +Coltsfood +Coltsfoot +Coltwood +Columba +Columbas +Columbet +Columbia +Columbia Creek +Columbia Crossing +Columbia Gateway +Columbia Park +Columbia Square +Columbia Wharf +Columbian +Columbine +Columbus +Colusa +Colvamore +Colville +Colvin +Colvin Forest +Colvin Meadows +Colvin Run +Colwell +Colwick +Colwith +Colwood +Colworth +Colwyn +Colyer +Colyton +Colywn +Comack +Comalli +Comanche +Comaneci +Comargo +Combara +Combat +Combe +Combedale +Combee +Comber +Combermere +Comberton +Combes +Comboy +Combs +Comconex +Comeau +Comely +Comely Bank +Comer +Comeragh +Comerford +Comet +Cometrowe +Comfort +Comforts Farm +Comfrey +Comice +Comiskey +Comistas +Comly +Commack +Commanche +Command +Commander +Commander Black +Commander John Shea +Commerce +Commerce Center +Commerce Park +Commercial +Commercial Vehicle +Commerford +Commers +Commill +Commissary +Commissioners +Commo +Commodore +Commodore Webster +Commoms +Common +Common Gate +Common Side +Common Wood +Commonage +Commonfield +Commonhall +Commonmeadow +Commons +Commonside +Commonside Bromley +Commonside Wood +Commonwealth +Commority +Communication Hill +Communications Hill +Community +Community College +Community College SE +Community Hall +Community Memorial +Community Park +Community Sq +Como +Comp +Compadre +Compass +Compass Point +Compasses +Component +Comprehensive +Compressor +Compromise +Compstall +Compton +Compton Parc +Compton Village +Comptons +Comptons Brow +Compubil +Computer +Comrie +Comstock +Comstock Mill +Comus +Comyn +Comyns +Conally +Conan Doyle +Conant +Concannon +Concanon +Concar +Concepcion +Concert +Concerto +Concetta +Concetta Sass +Concettina +Conch +Concho +Conco +Concolor +Concord +Concord Hill +Concord Point +Concorde +Concordia +Concourse +Concrete +Concrete Pipe +Condado +Condamine +Conde +Condell +Conder +Condesa +Condict +Condit +Condoin +Condon +Condor +Condover +Condron +Conduit +Cone +Coneflower +Conegra +Conejo +Conen +Conerly +Conerty +Conestoga +Conewood +Coney +Coney Byes +Coney Hall Addington +Coney Hill +Coney Island +Coney Warren +Coneyburrow +Coneyhurst +Confederate +Confederate Ridge +Confederation +Confer +Conference +Conference Center +Conference Ground +Conford +Conforti +Congdon +Conger +Congewoi +Congham +Conghurst +Congleton +Congo +Congou +Congresbury +Congress +Congress Hall +Congress Park +Congress Springs +Congress Valley +Congressbury +Congressional +Congreve +Congrove +Conie +Conies +Conifer +Conifer Fire +Conifer Hill +Coniger +Conihasset +Coningesby +Coningham +Coningsby +Conington +Conisboro +Coniscliffe +Coniston +Coniton +Conkey +Conkeyshaw +Conklin +Conkling +Conklins +Conklintown +Conlan +Conlee +Conley +Conley Creek +Conley Downs +Conlogue +Conlon +Conlyn +Conmur +Conn +Conn Creek +Conn Valley +Connaught +Connawarra +Conne Mara +Connect +Connecticut +Connecticut View +Connecting +Connector +Connel +Connell +Connellan +Connelley +Connells Point +Connelly +Connelly Hill +Connels +Connely +Connemara +Connemarra +Connemera +Conner +Conners +Connett +Connie +Connierae +Conningham +Connington +Connolly +Connop +Connor +Connors +Conolly +Conomo +Conomo Point +Conovan +Conover +Conow +Conowingo +Conqueror +Conquest +Conrad +Conrads +Conran +Conrick +Conroy +Conry Crescent +Cons +Cons Land Off Hayward +Consatance +Conselyea +Conservation +Consfield +Consideration +Considine +Consistory +Consiton +Consolidated +Consolo +Consort +Constable +Constance +Constant +Constantine +Constanzo +Constellation +Constitution +Constitution Beach +Constitutional Hill +Consuelo +Consul +Consulate +Contact +Contaplas +Conte +Conte Warf +Contee +Contees Wharf +Contempo +Content +Contentment Island +Contento +Conti Square +Continental +Continental Cove +Continente +Contour +Contra Costa +Contra Loma +Contractor +Contractors +Control Tower +Convair +Convalescent +Convent +Convention +Convention Center +Conventry +Conver +Converse +Convery +Conway +Conway Farms +Conways +Conwell +Conyer +Conyerd +Conyingham +Conyngham +Conzelman +Cooba +Coogan +Coogarah +Coogee +Coogee Bay +Cooinda +Cook +Cook Farm +Cook Riolo +Cooke +Cookes +Cookham Wood +Cookhill +Cookridge +Cookridge Green +Cooks +Cooks Farm +Cooks River +Cooksey +Cookshall +Cookson +Cool Brook +Cool Hollow +Cool Oak +Cool Spring +Coolabah +Coolah +Coolalie +Coolangatta +Coolaroo +Coolawin +Coolbrith +Coolbrook +Cooledge +Cooleena +Cooley +Coolgardie +Coolgun +Coolham +Coolhurst +Coolibah +Coolibar +Coolidge +Coolidge Farm +Coolidge Hill +Cooling +Coolinga +Coolong +Cooloongatta +Coolowie +Coolridge +Coolspring +Coolwood +Cooma +Coomalie +Coomassie +Coombe +Coombe Farm +Coombe Hill +Coombe Wood +Coombehurst +Coombelands +Coombers +Coombes +Coombewood +Coombfield +Coombs +Coombsville +Coomes +Coon Creek +Coon Heights +Coon Hollow +Coon Point +Coon Rapids +Coon Rapids Serv +Coon Rapids Service +Coonamble +Coonan +Coonanbarra +Coonara +Coonawarra +Cooney +Cooney Hill +Coongra +Coonley +Coonong +Coop +Coope +Cooper +Cooper Park +Cooper Pond +Cooper River +Cooper School +Cooperative +Coopermill +Coopernook +Coopers +Coopers End +Coopers Green +Coopers Grove +Coopers Hill +Coopers Pond +Coopers Shaw +Coopersale +Cooperworth +Coora +Coorabin +Cooriengah Heights +Coorilla +Coot +Cootamundra +Coote +Coover +Cooyong +Cop +Copa del Oro +Copas +Copco +Copcutt +Cope +Copel +Copeland +Copeland Creek +Copeland Tannery +Copen Meadow +Copenger +Copenhagen +Copenhaver +Copernic +Copernicus +Copes +Copestake +Copford +Copgrove +Copiage +Copiague +Copland +Copleston +Copley +Coppabella +Coppage +Coppards +Copped Hall +Coppel +Coppen +Copper +Copper Beach +Copper Bed +Copper Beech +Copper Creek +Copper Hill +Copper Leaf +Copper Mill +Copper Mine +Copper Mountain +Copper Peak +Copper Penny +Copper Ridge +Copper Springs +Copper View +Copperas +Copperas Ridge +Copperbeach +Copperbeech +Copperdale +Copperfield +Copperflagg +Copperhill +Copperhouse +Copperkins +Copperleaf +Coppermill +Coppermine +Copperopolis +Copperpenny +Coppers +Coppersmith +Copperstrip +Coppertree +Copperwood +Copperwynd +Coppetts +Coppetts Wood +Coppice +Coppice Farm +Coppice Wood +Coppidwell +Coppins +Coppleridge +Copplestone +Coppola +Coppy +Coprock +Copse +Copse Edge +Copsem +Copsewood +Copsleigh +Copson +Copster +Copsterhill +Copt Hall +Coptefield +Copter +Coptfold +Copthall +Copthorne +Copthorne Common +Coptic +Copts Hill +Copwood +Copyground +Copyhold +Coquette +Coquille +Cora +Cora Bell +Cora Post +Corabel +Corabelle +Coraki +Coral +Coral Berry +Coral Gables +Coral Heath +Coral Reef +Coral Ridge +Coral Sands +Coral Sea +Coral Tree +Corala +Coralberry +Coralee +Coralflower +Coralie +Coralino +Corall Hollow +Coralla Vista +Corallie +Coralwood +Coralyn +Coram +Coram Farm +Coramba +Corang +Coranto +Corban +Corbane +Corbar +Corbar Woods +Corben +Corbet +Corbets +Corbett +Corbett Hill +Corbetta +Corbin +Corbin Hall +Corbitt +Corbridge +Corby +Corbyn +Corchaug +Corcoran +Corcoran Hill +Cord +Corda +Cordage +Cordale +Cordaville +Corday +Cordeaux +Cordeiro +Cordelia +Cordell +Cordellia +Corden +Corder +Cordero +Cordes +Cordgrass +Cordial +Cordier +Cordiero +Cordilleras +Cordina +Cordingley +Cordis +Cordoba +Cordone +Cordova +Cordoy +Cordoza +Cordwainer +Cordwaiver +Cordwallis +Cordwell +Cordwood +Core +Corea +Coree +Coreen +Coreen Hills +Corell +Corella +Corens +Cores End +Corewood +Corey +Coreys Mill +Corfdon +Corfe +Corfield +Corfu +Corgiat +Cori +Coriander +Coriegarth +Coriell +Corinda +Corinha +Corinne +Corinth +Corinthia +Corinthian +Corio +Cork +Cork Oak +Cork Tree +Corkan +Corkberry +Corkland +Corkran +Corks +Corktree +Corkwell +Corkwood +Corky +Corla +Corlano +Corlear +Corlett +Corley +Corlies +Corliss +Corlista +Cormack +Corman +Cormar +Cormier +Cormiston +Cormongers +Cormorant +Cormoy +Corn +Corn Mill +Corn Point +Cornall +Cornauba +Cornbrook +Cornbrook Park +Corncastle +Corncrib +Cornec +Cornehlsen +Corneils +Cornelia +Cornelian +Cornelias Prospect +Cornelison +Cornelius +Cornell +Cornells +Corner +Corner Farm +Corner Hall +Corners +Cornerstone +Cornett +Corney +Cornfield +Cornflower +Cornford +Cornforth +Cornhey +Cornhill +Corniche +Cornilsen +Cornine +Corning +Cornish +Cornith +Cornmill +Cornock +Cornorstone +Cornshaw +Cornstalk +Cornwall +Cornwallis +Cornwalls +Cornwell +Cornwell Farm +Cornwells Beach +Cornwood +Cornworthy +Corobon +Corodon +Corona +Coronach +Coronada +Coronado +Coronation +Coronation Tree Main +Coronawood +Coronel +Coronet +Coroval +Corperation +Corporal Frank Scott +Corporal Kennedy +Corporate +Corporate Center +Corporate Crossing +Corporate Grove +Corporate Lakes +Corporate Limit +Corporate Park +Corporate West +Corporate Yard +Corporation +Corpus Christi +Corral +Corral Hollow +Corrales +Corralitos +Corralitos Ridge +Corralitos View +Corrance +Correas +Corregidor +Correia +Correja +Correll +Correllis +Correnden +Correys +Corri +Corriander +Corrib +Corrick +Corrie +Corriedale +Corrielle +Corriente Point +Corrigan +Corrin +Corrine +Corringham +Corrinne +Corrinthia +Corron +Corruna +Corry +Corryong +Corsa +Corsair +Corsaire +Corsay +Corseley +Corsett +Corsey +Corsham +Corsi +Corsica +Corsicana +Corsletts +Corso +Corson +Cortadera +Cortayne +Cortbridge +Corte Madera +Corte Mesa +Corte Verte +Corte Vista +Cortelyou +Corter +Cortereal +Cortes +Cortese +Cortesi +Cortez +Corthell +Cortina +Cortland +Cortlandt +Cortney +Corto +Corto San Miguel +Cortona +Cortright +Cortsen +Corucopia +Corunna +Corvair +Corvallis +Corve +Corvette +Corvin +Corvina +Corvus +Corwell +Corwin +Corwood +Cory +Corydalis +Coryell +Corys Brook +Cos Cob +Cosbycote +Cosca Park +Cosdach +Cosden +Cose +Cosgrave +Cosgrove +Coslin +Cosma +Cosman +Cosmic +Cosmo +Cosmos +Coso +Cossack +Cosser +Cosset +Cossington +Cossio +Costa +Costa Mesa +Costa Rica +Costa Verde +Costanza +Costanzo +Costar +Costead Manor +Costela +Costello +Coster +Costner +Coston +Costons +Cosumnes +Cosway +Cot +Cot Hill +Cotall +Cotati +Cotchford +Cote +Cote Green +Cotebrook +Cotefield +Cotefields +Cotentin +Coteroyd +Cotesmore +Cotford +Cotham +Cotherstone +Cothran +Cotleigh +Cotluss +Cotman +Coton +Coton Commons +Coton Hall +Coton Manor +Cotoneaster +Cotsford +Cotswold +Cotswolds Hill +Cotswood +Cotta +Cottage +Cottage Colony +Cottage Farm +Cottage Field +Cottage Garden +Cottage Grove +Cottage Hill +Cottage Park +Cottage Point +Cottage Run +Cottagewood +Cottall +Cottam +Cottee +Cottenden +Cottenham +Cotter +Cottered +Cotterell +Cotterill +Cotters +Cottesbrook +Cottesmore +Cottie +Cottimore +Cotting +Cottingham +Cottingley +Cottington +Cottis +Cottle +Cottler +Cotton +Cotton Farm +Cotton Mill +Cotton Reserve +Cotton Tail +Cotton Tree +Cotton Wood +Cottoneaster +Cottonfield +Cottongrass +Cottonleaf +Cottonmill +Cottontail +Cottonwood +Cottonwoods +Cottrell +Cotts Wood +Cottswold +Cotuit +Couch +Couching +Couchmore +Couchon +Couchtown +Couden +Cougar +Cougar Mountain +Cougar Rock +Coughlan +Coughlin +Coulee +Coulgate +Coulman +Coulombe +Coulsden +Coulsdon +Coulsdon Ridgemount +Coulson +Coulter +Coulton +Council +Council Crest +Council Hill +Council Oak +Councillor +Counrtyside +Counsellor +Counselman +Counselor +Count +Count Rumford +Counter +Countess +Counthill +Counting House +Countisbury +Country +Country Acres +Country Aire +Country Brook +Country Club +Country Club Village +Country Commons +Country Corners +Country Creek +Country Crossing +Country Day +Country Estates +Country Fair +Country Falls +Country Farm +Country Fields +Country Forge +Country Glen +Country Hill +Country Hills +Country Hollows +Country House +Country Knoll +Country Knolls +Country Lake +Country Lakes +Country Life +Country Manor +Country Meadow +Country Meadows +Country Mill +Country Oak +Country Oaks +Country Park +Country Pond +Country Ridge +Country Run +Country School +Country Side +Country Squire +Country Trail +Country View +Country Village +Country Wood +Country Woods +Countrybrook +Countryfield +Countryman +Countryridge +Countryside +Countryside Lake +Countrystone +Countryvale +Countryview +Countrywood +Countrywoods +County +County Airport +County Center +County Club +County Court House +County Dump +County Farm +County House +County Institutional +County Labor Camp +County Line +County Park +County Quarry +County Seat +Coupland +Courage +Courallie +Couranga +Courcival +Courier +Courland +Course +Course Brook +Coursehorn +Coursers +Court +Court Bushes +Court Close +Court Downs +Court Farm +Court House +Court Lodge +Court North +Court Side +Court Tree +Court Way Colin Park +Courtauld +Courtenay +Courteney +Courter +Courtesy +Courtfield +Courthill +Courthouse +Courthouse Oaks +Courtland +Courtland Hill +Courtland Manor +Courtland Park +Courtlands +Courtlandt Heights +Courtleet +Courtleigh +Courtley +Courtly +Courtmead +Courtmoor +Courtnell +Courtney +Courtney Park +Courtoak +Courtrai +Courts +Courts Hill +Courtside +Courtwood +Courtwright +Courtyard +Courville +Cousin +Cousins +Coutant +Couter +Couthurst +Coutler +Coutu +Coval +Cove +Cove Edge +Cove Hill +Cove Landing +Cove Neck +Cove Point +Cove Pointe +Cove Ridge +Cove View +Cove of Cork +Covell +Coveney +Covent +Covent Garden +Coventon +Coventry +Coventry on Duxbury +Coveny +Cover +Coverdale +Covered Bridge +Covered Trail +Covered Wagon +Coverhill +Coverly +Coverstone +Covert +Coverton +Coverts +Coves End +Covewood +Covey +Covey Hall +Covey Hill +Covina +Coving Cross +Covington +Covino +Cow +Cow Hill +Cow Pond Brook +Cow Watering +Cowan +Coward +Cowards +Cowasset +Cowbarn +Cowbridge +Cowburn +Cowcross +Cowden +Cowdery +Cowdin +Cowdray +Cowdrey +Cowdroy +Cowdry +Coweeset +Cowell +Cowell Service +Cowells +Cowelside +Cowen +Cowens +Cowesby +Cowesit +Cowfold +Cowhill +Cowick +Cowie +Cowing +Cowl +Cowland +Cowleaze +Cowles +Cowley +Cowley Mill +Cowlin +Cowling +Cowlishaw +Cowlitz +Cowlow +Cowm Top +Coworth +Cowpasture +Cowpastures +Cowpens +Cowper +Cowper Wharf +Cowperthwaite +Cowrang +Cowsill +Cowslad +Cowslip +Cowstead +Cowsted +Cowthorpe +Cox +Cox Farm +Cox Green +Coxheath +Coxmount +Coxon +Coxs +Coxshire +Coxtie Green +Coxton +Coxwell +Coxwold +Coy +Coybay +Coyle +Coyne +Coyote +Coyote Creek +Coyote Hill +Coyote Lake +Coyote Moon +Coyote Point +Coyote Ranch +Coyote Reservoir +Coyote Ridge +Cozens +Cozette +Cozine +Cozumel +Cozy +Cozy Glen +Cozy Lake +Cozzens +Crab +Crab Apple +Crab Hill +Crab Orchard +Crab Tree +Crabapple +Crabb +Crabbet +Crabtree +Crabtree Meadow +Cracco +Crackenedge +Cracklingtown +Cracow +Craddock +Craddocks +Cradducks +Cradle +Cradlebridge +Cradles +Cradleskid +Cradley +Cradock +Crafford +Craft +Crafton +Craftown +Crafts +Craftsland +Craftsman +Craftwood +Crag +Cragg +Craggs +Craggwood +Cragmont +Cragmore +Cragun +Cragwood +Crahan +Craig +Craigavon +Craigdale +Craigen +Craigend +Craigerne +Craighall +Craighill +Craigholm +Craighton +Craighurst +Craigie +Craiglands +Craiglawn +Craiglea +Craigmont +Craigmore +Craignish +Craigton +Craigtown +Craigweil +Craigwell +Craik +Crail +Crain +Crainmont +Cramer +Cramhurst +Crammavill +Crammaville +Crammond +Cramond +Crampshaw +Crampton +Cramptons +Crana +Cranage +Cranberry +Cranberry Hill +Cranberry Meadow +Cranbook +Cranborne +Cranbourn +Cranbourne +Cranbrook +Cranbrooke +Cranbury +Cranbury Cross +Cranch +Crandall +Crandallwood +Crandell +Crandon +Crandor +Crane +Crane Lodge +Crane Meadow +Crane Park +Crane Ranch +Cranebrook +Cranefield +Cranes +Cranes Crook +Cranes Farm +Cranesbill +Craneswell +Craneway +Cranfield +Cranfield Park +Cranford +Cranford Park +Cranham +Cranham Moor +Cranhurst +Crankwood +Cranleigh +Cranley +Cranlington +Cranmer +Cranmer Bank Tynwald +Cranmere +Cranmore +Crann +Cranoke +Crans +Cranshaw +Cranshire +Cranstal +Cranston +Cranstons +Cranswick +Crantock +Cranwell +Cranwells +Cranwich +Cranworth +Crape Myrtle +Crapo +Crary +Craske +Crassas +Craston +Crater +Crater Lake +Crathie +Craut +Crave +Cravea +Cravells +Craven +Cravenwood +Craver +Craw +Crawford +Crawley +Crawley Green +Crawleys +Crawshaw +Crawshay +Cray +Craybrooke +Craycroft +Craydene +Craydon +Crayfield +Crayford +Craylands +Crayle +Crays Will +Crayside +Crayton +Crazy Horse +Crazy Horse Canyon +Crealock +Creamcup +Creameary +Creamer +Creamery +Creamery Hill +Creasey Park +Creasys +Creaville +Crebor +Crecienta +Crecy +Credenhall +Credenhill +Credit River +Credit View +Crediton +Credon +Cree +Creed +Creedmor +Creedon +Creeds Mill +Creek +Creek Bed +Creek Bend +Creek Crossing +Creek Farm +Creek Knoll +Creek Line +Creek Meadow +Creek Oaks +Creek Park +Creek Ridge +Creek Run +Creek Shore +Creek Side +Creek Tree +Creek Valley +Creek View +Creek Water +Creekbed +Creekbend +Creekdale +Creekfield +Creekfront +Creekhollow +Creekline +Creekpaum +Creekpoint +Creekridge +Creeks Bend +Creeksea +Creeksea Ferry +Creeksedge +Creekside +Creekside Oaks +Creekview +Creekview Meadow +Creekway +Creekwood +Creel +Creeley +Creelman +Creely +Creeper +Creeper Hill +Creephedge +Creesy +Creewood +Creffield +Creger +Cregier +Crehore +Creif +Creigan +Creighton +Creighton Farms +Creighton Ridge +Crellin +Cremen +Cremers +Cremia +Cremona +Cremorne +Cremyll +Crencoun +Crendon +Crenna +Crenshaw +Creole +Crepeau +Crerie +Cresbury +Crescent +Crescent Beach +Crescent Cove +Crescent Green +Crescent Knoll +Crescent Lake +Crescent Park +Crescent Ridge +Crescente +Crescenzo +Cresci +Cresenda +Cresent +Cresente +Cresford +Creskeld +Creskell +Creskill +Cresleigh +Crespi +Crespigny +Crespo +Cress +Cress Brook +Cress Creek +Cress View +Cressbrook +Cresset +Cressex +Cressey +Cressfield +Cressida +Cressing +Cressingham +Cresskill +Cresson +Cresston +Cresswell +Cressy +Crest +Crest Estate +Crest Haven +Crest Hill +Crest Hollow +Crest Lake +Crest Line +Crest Maple +Crest Park +Crest Ridge +Crest View +Crest View Hill +Cresta +Cresta Vista +Crestablanca +Crestberry +Crestbrook +Crestbury +Crestdale +Crested +Crested Iris +Crested Quali +Crestedge +Crestfield +Cresthaven +Cresthill +Crestlake +Crestlan +Crestland +Crestlawn +Crestleigh +Crestline +Crestmont +Crestmoor +Crestmount +Creston +Crestone +Crestpark +Crestridge +Crestshire +Crestview +Crestview Forest +Crestwater +Crestway +Crestwood +Creswell +Creswick +Crete +Crete Hall +Crete Wood +Creton +Creukhorne +Crevenna Oak +Crew +Crewe +Crewman +Crews +Crewys +Crib +Cribari +Criccieth +Crichton +Crick +Cricket +Cricket Club +Cricket Green +Cricket Ground +Cricket Hill +Cricket Trail +Cricketers +Cricketers Arms +Cricketfield +Crickets +Crickett +Crickett Hill +Cricketwood +Cricklade +Cricklewood +Cridland +Crieff +Criers +Criffel +Crigger +Crighton +Crilley +Crillon +Crimble Clough +Crimbles +Crimbourne +Crime +Crimea +Crimmins +Crimscott +Crimson +Crimson Bay +Crimson Clover +Crimson King +Crimson Tree +Crimson Valley +Crimsworth +Crinan +Crine +Crinella +Cringle +Cringle Hall +Crio +Criol +Crippen +Cripple +Cripple Creek +Cripplebush +Cripplegate +Cripps +Cripse +Cripsey +Cris +Crisanto +Crisci +Crisfield +Crisman +Crismill +Crismore +Crisp +Crispen +Crispin +Crispmill +Crispsparkle +Crissara +Crissey +Crisswell +Crissy Field +Crist +Cristal +Cristiani +Cristich +Cristina +Cristo +Cristoforo Colombo +Cristom +Cristopher +Cristowe +Cristy +Criswell +Critchley +Critchmere +Criton +Crittall +Critten +Crittenden +Crivelli +Crivello +Cro She +Croak +Croaker +Croal +Croasdaile +Croasdale +Croatan +Croatia +Croce +Crocheron +Crockenhill +Crocker +Crocker Grove +Crocker Hill +Crocker Mansion +Crocker Pond +Crockers +Crockerton +Crocket +Crockett +Crockford +Crockford Park +Crockhamwell +Crockhurst +Crocknorth +Crocus +Crocus Hill +Croes +Croff +Croft +Croft End +Croft Gates +Croft House +Croft Regis +Croft Walk +Croftdale +Croftdown +Crofters +Crofthill +Croftland +Croftlands +Croftleigh +Crofton +Crofton Hill +Crofton Park +Crofton Valley +Croftridge +Crofts +Crofts Bank +Croghan +Crogsland +Croham Manor +Croham Park +Croham Valley +Croindene +Croissy +Croix Crest +Croixwood +Croley +Crolona Hgts +Crom +Cromar +Cromartie +Cromarty +Crombie +Cromdale +Crome +Cromer +Cromer Hyde +Cromer Villas +Cromers +Cromford +Cromhurst +Cromie +Cromley +Crommelin +Crompton +Cromwell +Cromwell Park +Crondace +Crondall +Crondon Park +Croner +Cronin +Cronks Hill +Cronshaw +Cronston +Cronulla +Crook +Crooke +Crooked +Crooked Creek +Crooked Crow +Crooked Hill +Crooked Lake +Crooked Lk Service +Crooked Meadow +Crooked Oak +Crooked Pond +Crooked Spring +Crooked Tree +Crooked Yard +Crooker +Crookfield +Crookham +Crookhill +Crooks +Crooksbury +Crookston +Croom +Croom Acres +Croom Airport +Croombs +Croot +Cropland +Cropley +Cropp +Croppers +Cropsey +Croquet +Crosby +Crosby Farm +Crosby Hill +Crosby Lake +Crosfell +Crosier +Crosland +Crosman +Croson +Cross +Cross Bank +Cross Bath +Cross Bay +Cross Belgrave +Cross Bellbrooke +Cross Bentley +Cross Bow +Cross Bridge +Cross Bridles +Cross Bronx Service +Cross Burley Lodge +Cross Catherine +Cross Chancellor +Cross Chapel +Cross Country +Cross County +Cross Creek +Cross Crown +Cross Elford +Cross Flatts +Cross Foxes +Cross Gate +Cross Gates +Cross Green +Cross Green East Busk +Cross Green Garnet +Cross Hartley +Cross Henley +Cross Hill +Cross Hills +Cross Island +Cross Kelso +Cross Lances +Cross Laurel +Cross Maude +Cross Milan +Cross Moun +Cross Myrtle +Cross Oak +Cross Oaks +Cross Ormrod +Cross Osmondthorpe +Cross Park +Cross Peel +Cross Point +Cross Quarry +Cross Queen +Cross Rail +Cross Ridge +Cross Rink +Cross Roundhay +Cross School +Cross Springs +Cross Timber +Cross Valley +Cross Westchester +Cross Woodstock +Cross Woodview +Cross York +Crossacres +Crossall +Crossbank +Crossbay +Crossbow +Crossbridge +Crossbrook +Crosscreek +Crossdale +Crossefield +Crossen +Crossfell +Crossfield +Crossford +Crossgate +Crossgates +Crosshill +Crossing +Crossing Creek +Crossings +Crosslake +Crossland +Crosslands +Crosslet +Crossley +Crossman +Crossmead +Crossmeadow +Crossoak +Crossoaks +Crosson +Crossover +Crosspike +Crosspoint +Crosspointe +Crossrail +Crossridge +Crossrip +Crossroad +Crossroads +Crossthwaite +Crosstie +Crosstitch +Crosstown +Crosstown Service +Crosstrail +Crossvalley +Crossview +Crosswaite +Crosswater +Crossway +Crossway Pinner Hill +Crossways +Crossways Anchor +Crossways Galleon +Crossways Lake +Crosswind +Crosswinds +Crosswood +Crosswoods +Croston +Crosts +Crothers +Croton +Crotona +Crotty +Crouch +Crouch Hall +Crouch House +Croucher +Crouchfield +Crouchley +Crough +Crouse +Croval +Crow +Crow Canyon +Crow Creek +Crow Green +Crow Haven +Crow Hill +Crow Nest +Crow Piece +Crow Point +Crow Pond +Crow River +Crow Trees +Crow Wood +Crowborough +Crowbridge +Crowbrook +Crowcroft +Crowden +Crowder +Crowdis +Crowe +Crowe Farm +Crowell +Crowell Farm +Crowells +Crowes +Crowfoot +Crowgey +Crowhill +Crowhurst +Crowhurst Village +Crowland +Crowlands +Crowle +Crowley +Crown +Crown Colony +Crown Commons +Crown Court +Crown Farm +Crown Fox +Crown Hill +Crown Meadow +Crown Oak +Crown Oaks +Crown Peak +Crown Point +Crown Pt +Crown Quay +Crown Ridge +Crown Royal +Crown Service +Crown View +Crown Woods +Crowndale +Crowne Hill +Crowne Oak +Crowneast +Crowner +Crownest +Crownfield +Crownhill +Crowningshield +Crowninshield +Crownpits +Crownpointe +Crownridge +Crownshield +Crownstone +Crownsville +Crowntop +Crownwood +Crows +Crows Landing +Crows Mill +Crows Nest +Crowsheath +Crowshott +Crowsley +Crowstone +Crowswood +Crowther +Crowthorn +Crowton +Croxall +Croxdale +Croxley +Croxted +Croxton +Croy +Croy Ridge +Croyde +Croyden +Croydon +Croydon Park +Croydon Barn +Croydonbarn +Croyland +Croylands +Croysdale +Croyton +Crozet +Crozier +Crucero +Crucible +Crucie +Cruden +Cruden Bay +Crudge +Cruet +Cruff +Cruft +Cruger +Cruick +Cruickshank +Cruikshank +Cruiser +Crummell +Crummock +Crump +Crumpsall +Crundale +Crunden +Crundwell +Crunson +Crusade +Crusader +Crusoe +Crutches +Crutchfield +Cruttenden +Crux +Cruz +Cryalls +Cryals +Cryder +Cryders +Cryer +Cryers Hill +Cryol +Crypt +Crystal +Crystal Airport +Crystal Bay +Crystal Cove +Crystal Creek +Crystal Glen +Crystal Glow +Crystal Grove +Crystal Heights +Crystal Hills +Crystal Lake +Crystal Lake Ranch +Crystal Palace +Crystal Palace Park +Crystal Park +Crystal Point +Crystal Pond +Crystal Ridge +Crystal Rock +Crystal Shore +Crystal Spring +Crystal Spring Farm +Crystal Springs +Crystal View +Crystalford +Crystalline +Crystalwood +Crystyl Ranch +Cuardo +Cub Run +Cub Run Park +Cuba +Cuba Hill +Cubberley +Cubbitt +Cubitt +Cubley +Cublington +Cubstream +Cucamonga +Cuciz +Cuckfield +Cuckold Point +Cuckolds Green +Cuckoo +Cuckoo Hall +Cuckoo Hill +Cuckoos +Cuckoowood +Cucumber +Cudbear +Cudd +Cuddington +Cudgee +Cudgegong +Cudham +Cudham Park +Cudworth +Cuenca +Cuerdon +Cuernavaca +Cuesta +Cufaude +Cuff +Cufflin +Cugley +Cuire +Culbert +Culbertson +Culburra +Culcheth +Culcheth Hall +Culdees +Culebra +Culet +Culet Ranch +Culford +Culgoa +Culham +Culin +Cull +Cullen +Cullens +Cullesden +Culley +Culligan +Cullinan +Cullinane +Culling +Cullingworth +Cullins +Cullivan +Cullman +Culloden +Culloden Park +Cullom +Culls +Cullum +Cully +Cullyn +Culmer +Culmington +Culmore +Culotta +Culp +Culpeper +Culpepper +Culps Hill +Culross +Culsac +Cultowa +Culver +Culverden +Culverden Park +Culverhouse +Culverley +Culvers +Culvert +Culverwell +Culworth +Culya +Culyer +Culzean +Cumbara +Cumbee +Cumber +Cumberbach +Cumberland +Cumberland Green +Cumberland Hill +Cumberlow +Cumbermeade +Cumbermere +Cumberstone +Cumberton +Cumbrae +Cumbre +Cumbria Valley +Cumley +Cumming +Cummings +Cummings Hall +Cummings Park +Cummings Point +Cummington +Cummins +Cumner +Cumnock +Cumnor +Cumora +Cumorah +Cumston +Cumulus +Cunard +Cuncliffe +Cundalls +Cundey +Cundiff +Cundy +Cuneo +Cunha +Cunliffe +Cunniff +Cunningham +Cunningham Hill +Cunningham Hole +Cunninghame +Cunnington +Cunninham +Cunnison +Cuny +Cuozzo +Cupar +Cupertino +Cupid Green +Cupola +Cupp +Curagul +Curate +Curban +Curci +Curds +Curfew +Curie +Curl +Curletto +Curlew +Curlew Camp +Curlewis +Curley +Curley Hill +Curling +Curling Pond +Curling Tye +Curls +Curlton +Curmore +Curness +Curney Court +Curragh Downs +Curragh Oaks +Currah +Curran +Currans +Currans Hill +Currant +Currants Farm +Currawang +Curraweela +Currawong +Currell +Curren +Current +Currey +Curricle +Currie +Currier +Currier And Ives +Curringa +Currong +Curry +Curry Canyon +Curry Creek +Curry Ford +Curry Powder +Currymine +Cursitor +Curson +Curt +Curtain +Curteis +Curtice +Curtice Farm +Curtier +Curtin +Curtis +Curtis Bay Pleasure +Curtis Field +Curtis Mill +Curtisden Green +Curtiss +Curtner +Curtola +Curve +Curve Crest +Curved Bridge +Curved Iron +Curvers +Curwen +Curzon +Cusack +Cushing +Cushing Hill +Cushman +Cushwa +Cusick +Custance +Custer +Custis +Custis Acres +Custis Memorial +Custom House +Custom Village +Customs House +Cut +Cut Accross +Cut Hill +Cutacre +Cutbush +Cutchogue +Cutcliffe +Cutcombe +Cutenhoe +Cutforth +Cutgate +Cuthbert +Cuthbertson +Cuthel +Cutie +Cutlass +Cutler +Cutler Farm +Cutler Heights +Cutler Hill +Cutler Ridge +Cutlers +Cutlog +Cutmore +Cutnook +Cuton Hall +Cutsyke +Cutten +Cutter +Cutter Boy Scout Camp +Cutter Hill +Cutter Ridge +Cuttermill +Cutters +Cutters Dock +Cutters Grove +Cutters Mill +Cutting +Cuttinglye +Cuttings +Cuttings Wharf +Cutts +Cuttys +Cutwater +Cutwood +Cuvier +Cuxton +Cuyahoga +Cuyler +Cuyuna +Cuzco +Cvs +Cyanamid +Cyclone +Cyclotron +Cygnet +Cygnus +Cymbal +Cymbeline +Cynron +Cynthia +Cyphers +Cypress +Cypress Bay +Cypress Beach +Cypress Branch +Cypress Cove +Cypress Creek +Cypress Garden +Cypress Green +Cypress Grove +Cypress Hill +Cypress Hills +Cypress Hollow +Cypress Landing +Cypress Neck +Cypress Peak +Cypress Point +Cypress Pointe +Cypress Ranch +Cypress Ridge +Cypress Run +Cypress Tree +Cypress Village +Cypresstree +Cyprian +Cyprus +Cyprus Cedar +Cyr +Cyrandall Valley +Cyrene +Cyress +Cyril +Cyril Magnin +Cyrus +Cyrus Field +Cyrus Heights +Czacki +Czar +Czarina +Czerkies +Czerny +D Amico +D C Training School +D Chene +D Commercial +D Evereux Circle +D Fernwood +D Gipsy +D Harehills +D J Murphy +D Leeds Infirmary +D Miller +D W Field Park +D W Field West +D. Hutchison +Da Rosa +Da Vinci +Daarle +Dabbert +Dabbs Hill +Dabel +Dabley +Dabner +Dabney +Dacca +Daccamill +Dace +Dacey +Dacia +Dacosta +Dacotah +Dacre +Dacres +Dacy +Dadant +Dade +Dadley +Dado +Daffil +Daffodil +Dafrack +Dagden +Dagenham +Dagenham Centre +Dagenham Goring +Dagger +Daggert +Daggett +Daggs Dell +Dagley +Dagmar +Dagnall +Dagnam Park +Dagnan +Dagnell +Dagnets +Dagnino +Dagwood +Dahill +Dahl +Dahlberg +Dahlen +Dahlgreen +Dahlgren +Dahlia +Dahlin +Dahlonega +Dahnerts Park +Dahomey +Daigle +Daiglen +Dail +Dailey +Daily +Daimler +Daine +Daines +Daingerfield +Dainton +Daintree +Daintry +Dainty +Daiquiri +Dairsie +Dairy +Dairy Farm +Dairy House +Dairy Lou +Dairyglen +Dairyground +Dairyherd +Dairyhouse +Dairymaid +Daisey +Daisleys +Daisy +Daisy Bank +Daisy Farm +Daisy Farms +Daisy Field +Daisy Green +Daisy Hall +Daisy Hill +Daisy Trail +Daisyfield +Daisygate +Daisyley +Daka +Dakar +Dakara +Dakarla +Dake +Daken Brook +Dakin +Daking +Dakins +Dakley +Dakota +Dakota Fields +Dakota Lakes +Dakotah +Dakyn +Dalamar +Dalbeattie +Dalberg +Dalbert +Dalbertis +Dalbury +Dalby +Dalcassia +Dalcross +Daldunn +Dale +Dale Brook +Dale Green +Dale Lodge +Dale Odell +Dale Park +Dale View +Dale Wood +Dalebrook +Dalebrooke +Dalebury +Dalecarlia +Dalegarth +Daleham +Dalehead +Dalehurst +Dalemar +Dalemeade +Dalemere +Dalen +Dales +Dales Brow +Dalesford +Daleside +Dalessi +Dalesway +Daleswood +Daleview +Dalewood +Daley +Dalgety +Dalgo +Dalham +Dalhart +Dalhouse +Dalhousie +Dali +Dalis +Dalke +Dalkeith +Dalkieth +Dall +Dall Sheep +Dallas +Dallas Ranch +Dallenbach +Dalles +Dalley +Dalleys +Dallimore +Dallin +Dalling +Dallinger +Dallington +Dallon +Dallow +Dally +Dalma +Dalmally +Dalman +Dalmar +Dalmatia +Dalmation +Dalmeny +Dalmeyer +Dalmney +Dalmore +Dalmorton +Dalny +Dalphen +Dalphin +Dalpura +Dalray +Dalroy +Dalrympl +Dalrymple +Dalston +Dalton +Daltons +Daltry +Dalveen +Dalwood +Daly +Dalyell +Dalyn +Dalys +Dalziel +Dam +Dam Head +Damascus +Damases +Damask +Dambly +Dambrosio +Dame +Dame Head +Dame Mary Gilmore +Dameelie +Damen +Dameron +Dames +Damey +Damian +Damiano +Damico +Damien +Damigos +Damin +Damish +Damon +Damon Park +Damons Point +Damour +Damper +Damphurst +Dampier +Damrell +Dams +Damsel +Damsen +Damson +Damsonwood +Damuth +Damyon +Dan +Dan Jennings +Dan Mason +Dan Patch +Dana +Dana Estates +Dana Hill +Danada +Danalan +Danbeck +Danberry +Danbridge +Danbrook +Danbury +Danbury Forest +Danby +Dancause +Dance +Dancer +Dancers +Dancers End +Dancers Hill +Dancing Bear +Dancing Dicks +Dancing Waters +Dancrest +Dancy +Dandarbong +Dandee +Dandelion +Dandenong +Dandies +Dandon +Dandy +Dane +Dane Bank +Dane Bridge +Dane End +Dane Hill +Danebridge +Danebury +Daneby +Danecourt +Danecroft +Daned +Danedale +Danefield +Danehill +Daneholme +Danehurst +Danel +Danemar +Danemere +Danenhower +Danens +Danes +Danesbury +Danesbury Park +Danescroft +Danesdale +Daneshill +Danesmoor +Danesta +Daneswood +Danethorpe +Danetree +Daneville +Danewell +Danewood +Danfield +Danford +Danford Park +Danforth +Dangan +Dangar +Dangelo +Dangerfield +Danhof +Dania +Danial +Danica +Daniel +Daniel Adamson +Daniel Cox +Daniel French +Daniel K Ludwig +Daniel Lewis +Daniel Maloney +Daniel Mccahill +Daniel Payne +Daniel Shays +Daniel Teague +Daniel Webster +Daniel Young +Danielian +Daniell +Danielle +Danielli +Daniels +Danigus +Danis +Danisher +Danita +Dankhoff +Danko +Danks +Danlee +Danley +Danmann +Danmar +Dann +Dannell +Danner +Dannet +Danns +Danny +Dannys +Dano +Danoha +Danridge +Danrose +Danroth +Dans +Dansen +Dansforth +Dansington +Danson +Dant +Dante +Dante Robles +Danthonia +Danton +Dantzic +Danube +Danver +Danvera +Danvers +Danvid +Danville +Danwood +Danworth +Danywern +Danza +Danze +Danzic +Dapdune +Daphne +Daphne Jackson +Dapifer +Daplyn +Dapper Darby +Dapple +Dapplegray +Dara +Dara James +Daraya +Darbishire +Darby +Darby Green +Darbydale +Darcelle +Darcey +Darcy +Dardanelle +Dardanelle West +Dardanelles +Dardanelli +Darden +Dardenelle +Dare +Dareen +Darek +Darel +Darell +Darenth +Darenth Park +Darenth Wood +Darerka +Dares Beach +Dares Wharf +Daresbury +Darewood +Darfield +Dargai +Dargan +Dargets +Darghan +Dargie +Dargle +Daria +Darian +Dariel +Darien +Darien Club +Darien Lakes +Darin +Darina +Darington +Dario +Darius +Dark +Dark Canyon +Dark Forest +Dark Horse Lake +Dark Neville +Darkwood +Darkwoods +Darla +Darlan +Darland +Darlands +Darlene +Darlenen +Darley +Darling +Darling Island +Darling Point +Darlinghurst +Darlings +Darlington +Darlow +Darman +Darmenia +Darmody +Darmour +Darmstadt +Darmuid Green +Darnall +Darnay +Darnby +Darnel +Darnell +Darnells Grove +Darnestown +Darnet +Darnley +Darnton +Daron +Darook Park +Darr +Darragh +Darrambal +Darras +Darrel +Darrell +Darren +Darri +Darrian +Darrick +Darrick Wood +Darrigo +Darrin +Darrington +Darrow +Darrs +Darryl +Darset +Darsha +Darsow +Dart +Dart Thru +Dartbrook +Darter +Darters +Dartford +Darthmouth +Darting Bird +Dartington +Dartley +Dartmoor +Dartmouth +Dartmouth Park +Dartnell +Dartnell Park +Darton +Daruga +Daruish +Darvall +Darvell +Darvill +Darville +Darvon +Darwell +Darwen +Darwin +Daryl +Daryngton +Dascomb +Dasea +Dasher +Dashia +Dashiell +Dashiell Hammett +Dashmere +Dashwood +Dashwood Lang +Dassance +Dassel +Dassell +Dassern +Dassett +Dassing +Data +Datchet +Datchett +Date +Dateleaf +Daten +Dater +Dato +Datoni +Datoro +Daub +Daubenbiss +Daugherty +Dault +Daulton +Daunt +Dauntesy +Dauntless +Dauntly +Dauntsey +Dauphin +Dauphine +Dauria +Dauses +Dauster +Daux +Dav +Davan +Davane +Dave +Davehall +Davelin +Daven +Davenant +Davenfield +Davenham +Davenhill +Davenport +Davenport Fold +Davenport Landing +Davenport Park +Daventer +Daventry +Davern +Daves +Davey +Davey Glen +Daveyhulme +Davi +Davian +David +David A Barry +David Brainerd +David Henderson +David Hooper +David Joseph +David Morris +David Pilgrim +David Scott +David Victoria +Davida +Davidge +Davids +Davids Island +Davidson +Davidson Mill +Davidsons Mill +Davidsons Private +Davidsonville +Davie +Davies +Daviess +Davilla +Davine +Davington +Davini +Davis +Davis Brook +Davis Farm +Davis Ford +Davis Ledge +Davis Mill +Davisfield +Davison +Davisson +Davisville +Daviswood +Davit +Davitt +Davitto +Davona +Davoren +Davos +Davron +Davy +Davy Robinson +Davyhulme +Daw +Dawe +Dawell +Dawes +Dawes East +Dawkins +Dawley +Dawlish +Dawn +Dawn Day +Dawn Fraser +Dawn Harbor +Dawn Heather +Dawn Hill +Dawn Oak +Dawn Whistle +Dawnay +Dawneys +Dawngate +Dawnlee +Dawnridge +Dawnview +Dawnwood +Dawpool +Daws Heath +Daws Hill +Dawson +Dawson Beach +Dawson Farm +Dawson Manor +Dawtrey +Day +Day Break +Day Care +Day Farm +Day Hill +Day Lillies +Day Lily +Day School +Day Spring +Day Valley +Daybreak +Daybrook +Daycroft +Dayfield +Dayflower +Daylesford +Daylight +Daylilly +Daylily +Daylong +Daylop +Dayna +Days +Days Farm +Days Inn Connecticut +Days Island +Daysailer +Daysbrook +Dayton +Dayton Herzog +Dayton River +Daytona +Daytonna +Daywalt +Db +Dd +De Anza +De Beauvoir +De Bell +De Bera +De Berg +De Bernardo +De Boer +De Bohun +De Bord +De Bow +De Broggi +De Brome +De Bruin +De Burgh +De Busch +De Camp +De Carli +De Carlo +De Castella +De Chair +De Chario +De Chene +De Cook +De Costa +De Fillipo +De Foe +De Force +De Ford +De Forest +De Fremery +De Frene +De Grasse +De Guigne +De Haro +De Hart +De Haven +De Havilland +De John +De Jong +De Korte +De Koven +De Kraft +De La Cruz +De La Salle +De Lacies +De Lasalle +De Laune +De Lauret +De Laval +De Lemos +De Leon +De Lima +De Long +De Luca +De Luci +De Lucy +De Mandeville +De Mar +De Marietta +De Mate +De Mello +De Milhau +De Mille +De Mones +De Montfort +De Morgan +De Mott +De Normandie +De Ovan +De Palma +De Pascale +De Paul +De Ponti +De Prizio +De Quincey +De Reimer +De Ronde +De Roon +De Salis +De Sanka +De Sellum +De Silva +De Solo +De Soto +De Souza +De Tamble +De Tracey +De Turk +De Vere +De Veres +De Vito +De Voe +De Walden +De Witt +De Wolf +De Young +De la Costa +De la Cruz +De la Farge +De la Guerra +De la Pena +De la Salle +DeAnza +DeBaun +DeCosta +DeFrance +DeKalb +DeLeon +DeReimer +DeSota +DeWolfe +Deacon +Deacon Haynes +Deacon Hill +Deacon Hunt +Deaconess +Deacons +Deacons Hill +Deaconsfield +Dead +Dead End +Dead Horse Canyon +Dead Run +Deadbrook +Deadfield +Deadman +Deadmans +Deadmans Ash +Deadwood +Deady +Deakin +Deakins +Deakins Hall +Deaks +Deal +Deale +Deale Beach +Deale Churchton +Dealey +Dealton +Dealtry +Dealy +Dealynn +Dean +Dean Bank +Dean Bradley +Dean Farm +Dean Head +Dean Hill +Dean House +Dean Lakes +Dean Lesher +Dean Moor +Dean Oak +Dean Park +Dean Row +Dean Ryle +Dean Trench +Dean Wood +Deancroft +Deancross +Deane +Deane Church +Deane Croft +Deaner +Deanery +Deanes +Deanfield +Deangelo +Deanhill +Deanland +Deanmar +Deanna +Deanne +Deanoak +Deans +Deans Hill +Deans Lake +Deans Rhode Hall +Deansbrook +Deanscourt +Deansgate +Deanshut +Deanswood +Deanville +Deanwood +Dearborn +Dearborn Park +Dearborne +Dearden +Deardorff +Dearfield +Dearing +Dearlove +Dearne +Dearsley +Deasy +Deauville +Deb +Debartolo +Debaun +Debbie +Debbie Hill +Debby +Debdale +Debden +Debeck +Debele +Debellevue +Debenham +Debernardi +Debes Ranch +Debevoise +Deblin +Deblois +Debmar +Debnams +Deboer +Debolt +Debonaire +Debora +Deborah +Deborah Jean +Deborah Lee +Deborah Sampson +Debord +Debow +Debra +Debrick +Debrincat +Debruin +Debruyne +Debston +Deburgh +Debutante +Decarli +Decarolous +Decathalon +Decatur +Decca +Decelle +December +Decesaris +Dechantal +Decicco +Decima +Deck +Deckard +Decker +Deckman +Declaration +Decoe +Decora +Decorah +Decota +Decoto +Decoverly +Decoy +Decoy Hill +Decree +Dedalera +Dederer +Dedham +Dedmere +Dedswell +Dedworth +Dee +Dee Jay +Deeble +Deedham +Deedie +Deeley +Deems +Deen +Deep +Deep Bottom +Deep Cliffe +Deep Cove +Deep Creek +Deep Earth +Deep Glen +Deep Gorge +Deep Haven +Deep Hollow +Deep Landing +Deep Mill +Deep River +Deep Run +Deep Spring +Deep Turn +Deep Water +Deep Well +Deep Wood +Deep Woods +Deepage +Deepbrook +Deepcar +Deepdale +Deepdene +Deepdene Park +Deepfield +Deepfields +Deepford +Deephaven +Deeping +Deepstone +Deepwater +Deepwell +Deepwood +Deepwood Farm +Deepwoods +Deer +Deer Bay +Deer Camp Fire +Deer Canyon +Deer Chase +Deer Cove +Deer Creek +Deer Creek Heights +Deer Crest +Deer Cross +Deer Field +Deer Forest +Deer Garden +Deer Grass +Deer Grove +Deer Haven +Deer High +Deer Hill +Deer Hill End +Deer Hills +Deer Hollow +Deer Isle +Deer Lake +Deer Meadow +Deer Oaks +Deer Pack Fire +Deer Park +Deer Park Fire +Deer Pass +Deer Path +Deer Point +Deer Pointe +Deer Pond +Deer Ridge +Deer Rock +Deer Run +Deer Trail +Deer Valley +Deer Water +Deerbank +Deerbarn +Deerbrook +Deerchase +Deercliff +Deercrest +Deerdale +Deerdell +Deere +Deere Park +Deerfield +Deerfield Pond +Deerfoot +Deerford +Deergrass +Deerhaven +Deerhill +Deerhurst +Deering +Deering Bay +Deering Oaks +Deerings +Deeringwood +Deerlea +Deerleap +Deernolm +Deerpark +Deerpark Meadow +Deerpath +Deerpoint +Deerpond +Deershorn +Deerslayer +Deerswood +Deerton +Deertrack +Deertrail +Deervale +Deerview +Deerwatch +Deerwater +Deerwood +Deeside +Deeves Hall +Deevon +Defence +Defender +Defense +Defford +Defiance +Defoe +Deford +Deforest +Deforrest +Defremery +Defries +Dega +Degas +Degema +Degen +Degener +Degnan +Degraw +Degray +Degroate +Dehart +Dehaven +Dehlsen +Dehne +Dehnhoff +Dehnsfield +Dehoff Canyon +Dehon +Dei +Deichmann +Deigan +Deighton +Deirdre +Deirving +Deisius +Dejarld +Dekalb +Dekay +Dekoven +Del +Del Amigo +Del Antico +Del Avion +Del Cambre +Del Camino +Del Campo +Del Canto +Del Carlo +Del Casa +Del Cerro +Del Dayo +Del Este +Del Favero +Del Franco +Del Ganado +Del Hombre +Del Lago +Del Loma +Del Luz +Del Mar +Del Medio +Del Miller +Del Mont +Del Monte +Del Monte Farms +Del Norte +Del Oceano +Del Ogier +Del Oro +Del Otero +Del Paso +Del Prado +Del Presidio +Del Prete +Del Puerto Canyon +Del Ray +Del Rey +Del Rio +Del Rio Wood +Del Rosa +Del Sol +Del Sur +Del Tren +Del Vale +Del Valle +Del Vista +Del Webb +Del Wes +Dela Park +Delabole +Delacourt +Delacy +Delafield +Delafield Island +Delaford +Delagnes +Delahays +Delaigh +Delaine +Delamare +Delamark +Delamer +Delamere +Delamont +Delancey +Delanco +Delancy +Deland +Delander +Delando +Delane +Delaney +Delange +Delano +Delanoy +Delard +Delarma +Delat +Delaunay +Delaunays +Delauneys +Delavan +Delaveaga Park +Delawanda +Delawanna +Delaware +Delbarton +Delbert +Delbooth +Delbrook +Delcastle +Delce +Delcina +Delcombe +Delcris +Delder +Deldorf +Delecta +Delehanty +Delekas +Delenty +Deleo +Delery +Delevan +Deleware +Delf +Delfield +Delfin +Delfino +Delford +Delft +Delfur +Delfzul +Delgada +Delgado +Delgarno +Delhi +Delia +Delia Walker +Delibes +Delicious +Delikat +Delisio +Delisle +Delius +Delivery +Dell +Dell Field +Dell Glen +Dell Hollow +Dell Park +Dell Wood +Della +Dellabrooke +Dellanno +Dellbow +Dellbrook +Dellcastle +Dellcot +Dellcut +Delle +Deller +Delles +Dellfield +Dellmar +Dellmead +Dellmont +Dellmore +Dellney +Dellos +Dellow +Dellows +Dellridge +Dells +Dellsome +Dellview +Dellway +Dellwood +Delma +Delmar +Delmas +Delmeade +Delmer +Delmer End +Delmonden +Delmonico +Delmont +Delmonte +Delmor +Delmore +Delna Manor +Delno +Delnor +Delnor Glen +Delo +Deloitte +Delong +Deloraine +Delorenzo +Delores +Delorey +Delorme +Delos +Deloss +Delph +Delph New +Delpha +Delphfields +Delphi +Delphia +Delphinium +Delport +Delprete +Delrey +Delridge +Delrogue +Delrose +Delside +Delsignore +Delt +Delta +Delta Breeze +Delta Fair +Delta King +Delta Queen +Delta Ranch +Delta River +Delta Wind +Deltaview +Deltawind +Delton +Deluca +Delucchi +Delve +Delverton +Delves +Delvin +Delvino +Delwick +Delwit +Delwood +Demaine +Demar +Demarco +Demarcus +Demarest +Demaret +Demarr +Demarr Homestead +Demars +Demartini +Demartino +Demauro +Demby +Demeo +Demercurio +Demerest +Demerrit +Demers +Demesne +Demeter +Demetre +Demetrius +Demeyer +Demille +Deming +Demmert +Demmings +Demmond +Democracy +Demolay +Demont +Demopolis +Demorest +Demostene +Demott +Dempsey +Dempster +Demund +Demyan +Den +Den Helder +Den Hill +Den Lee +Den Meade +Den Quarry +Dena +Denair +Denali +Denali Ridge +Denault +Denawen +Denbeigh +Denberry +Denbigh +Denbish +Denbridge +Denbrook +Denbury +Denby +Dencombe +Dene +Deneane +Deneb +Deneden +Deneholm +Denell +Denevi +Denewood +Denfield +Denford +Dengate +Denham +Denham Court +Denham Green +Denhart +Denhoff +Denholm +Denholme +Denhurst +Denicio +Denicola +Deniehy +Denim +Denin +Denio +Denis +Denis Winston +Denise +Denisen +Denison +Deniston +Denistone +Denke +Denker +Denkinger +Denley +Denlyn +Denman +Denmans +Denmar +Denmark +Denmark Hill +Denmark Hill Sunray +Denmead +Denmont +Denmore +Dennan +Denne +Denner +Denner Ranch +Denness +Dennett +Dennetts +Dennettsland +Dennil +Denning +Denninger +Dennington +Dennington Park +Dennis +Dennis F. Ryan +Dennis Loop +Dennis Martin +Dennis Point +Dennis Torricelli Sr +Dennison +Dennistoun +Denno +Denny +Dennys +Denoble +Denoncourt +Denora +Denos +Densefield +Densham +Denshaw +Denslow +Denslowe +Densmore +Denson +Denstone +Dent +Dental +Denton +Denton Court +Denton Hall Farm +Dents +Dentwood +Denver +Denverton +Denville +Denwood +Denyer +Denys +Denzil +Denziloe +Deodar +Deodara +Deoder +Deodor +Deonsire +Depan +Departed Sunset +Departures +Depaul +Depauli +Depauw +Depew +Depeyster +Depinedo +Depleach +Deposit +Depot +Depoto +Deppe +Depraitre +Depriest +Deptford +Deptford Church +Deptford Ferry +Deptford High +Depue +Deputy +Dequincey +Deramore +Deramus Farm +Deranti +Derbe +Derby +Derby Arms +Derby Farms +Derby Glen +Derby Ridge +Derbyshire +Derecho +Dereham +Derehams +Derek +Derekwood +Derfuss +Deri +Derick +Dering +Derinton +Derker +Derman +Dermody +Dermont +Dermott +Dern +Derna +Dernacourt +Dernancourt +Derne +Dernford +Dernier +Dero +Deroma +Derosier +Derowie +Derr +Derria +Derribong +Derrick +Derrick Adkins +Derrico +Derring +Derringer +Derriwong +Derrom +Derrough +Derry +Derrydown +Derryfield +Dersingham +Derussey +Derventer +Derwen +Derwent +Derwentwater +Derwin +Derwint +Derwood +Dery +Des Moines +Des Moines Memorial +Des Moulin +Des Peres +Des Plaines +Des Plaines River +DesPlaines +Desarc +Desborough +Desborough Park +Desbrosses +Descanso +Descendant +Deschenaux +Desconsado +Desdemona +Desen +Desenfans +Desepio +Deseret +Deserre +Desert +Desert Brook +Desert Flame +Desert Forest +Desert Isle +Desert Rose +Desert Willow +Desertwood +Desford +Deshler +Deshon +Design +Desimone +Desin +Desiree +Desisto +Deslie +Desmarais +Desmet +Desmond +Desmoulin +Desna +Desnoyer +Desota +Desoto +Desouter +Despard +Desplaines River +Despointes +Desrochers +Desrosiers +Desrys +Dessa +Destefano +Destiny +Desvignes +Detert +Detillens +Detjen +Detling +Detmer +Detmold +Detrick +Detroit +Dettingen +Dettmering +Detwiller +Deuce +Deusenberg +Devaney +Devas +Devcon +Deveau +Devecchi +Developers +Development +Devenill +Devenish +Devens +Dever +Deveraux +Devere +Devereaux +Deverell +Devereux +Devereux Manor +Deverill +Deveron +Devers +Deves +Deviar +Devika +Devil +Deville +Deville Estates +Devilliers +Devils +Devils Garden +Devils Reach +Devilwood +Devin +Devin Shafron +Devincent +Devine +Devir +Devita +Devitt +Devizes +Devlin +Devlins +Devoe +Devoes +Devoils +Devoke +Devon +Devon Hills +Devon Ridge +Devon Woods +Devonia +Devonian +Devonport +Devons +Devonshire +Devonshire Hill +Devonshire Park +Devonswood +Devonwood +Devore +Devotion +Devoto +Devries +Dew +Dew Grass +Dew Pond +Dew Wood +Dewald +Dewar +Dewart +Dewberry +Dewdney +Dewdrop +Dewe +Dewell +Dewerff +Dewes +Dewes Green +Dewey +Dewey Hill +Dewey Jones +Deweys Run +Dewhurst +Dewhurst Clough +Dewindt +Dewing +Dewitt +Dewlands +Dewmar +Dewolf +Dewolfe +Dewoody +Dewpoint +Dewrang +Dewsbury +Dewsbury Gate +Dewsnap +Dewson +Dewyk +Dexter +Dexters +Dey +Deyncour +Deyne +Deynes +Deyo +Dezenzo +Dharma Ridge +Di Antonio +Di Fiore +Di Giulio +Di Lusso +Di Maggio +Di Salvo +Diab +Diablo +Diablo Creek +Diablo Downs +Diablo Grande +Diablo Hills +Diablo Ranch +Diablo Shadow +Diablo View +Diablo Vista +Diadem +Diadon +Diagonal +Dial +Dial Green +Dial Park +Dialstone +Diamantina +Diamantini +Diamedes +Diameter +Diamond +Diamond Bay +Diamond Bridge +Diamond Creek +Diamond Head +Diamond Heights +Diamond Hill +Diamond K +Diamond Lake +Diamond Mill +Diamond Mountain +Diamond Oaks +Diamond Path +Diamond Peak +Diamond Point +Diamond Pointe +Diamond Ridge +Diamond Rock +Diamond Spring +Diamond Springs +Diamondback +Diamontina +Diana +Diana Maria +Diana Marie +Dianda +Diane +Dianella +Diann +Dianna +Dianne +Dianthus +Diantonio +Diary +Dias +Diauto +Diavila +Diaz +Diaz Ridge Fire +Dib +Diban +Dibble +Dibbs +Dibden +Dibdin +Dibella +Dibiase +Diblee +Dibling +Dibuono +Dicarlo +Dicastro +Dicconson +Diceland +Dicey +Dick +Dick Phelps +Dickel +Dickens +Dickens Bay +Dickenson +Dickensons +Dickerage +Dickerman +Dickerson +Dickerson Church +Dickerson School +Dickey +Dickey Lake +Dickie +Dickin +Dickins +Dickinson +Dickley +Dickman +Dicks +Dickson +Dickson Hill +Dickson Ranch +Dicksons Mill +Dicus Mill +Didio +Didmarton +Didriksen +Didrikson +Didsbury +Diecke +Dieckman +Diedrich +Diefenbach +Diego +Diehl +Diehl Farm +Diel +Diellen +Dieman +Dieninger +Diens +Dierauf +Diericx +Dierks +Dierssen +Diesel +Diessner +Dietrich +Dietz +Diffey +Diffley +Dig Dog +Digby +Digger Bend Ranch +Digger Pine +Diggers +Digges +Digges Canyon +Digging +Diggins +Diggon +Diggs +Diggs Park +Dight +Dighton +Digital +Digiulian +Diglands +Diglee +Digney +Dignon +Dignum +Digpal +Digren +Digswell +Digswell Park +Dijohn Court +Dijon +Dike +Dikeman +Dikes +Diknson Hollow +Dikran +Dilber Bay +Dilga +Diligent +Dilisio +Dilke +Dill +Dill Pointe +Dilla +Dillabough +Dillard +Dillaway +Dille +Diller +Dilleta +Dillman +Dillmont +Dillo +Dillon +Dillon Beach +Dillon Point +Dillonfield +Dillworth +Dillwynia +Dilly +Dillywood +Dilman +Dilorenzo +Dilston +Dilworth +Diman +Dimassa +Dimensions +Dimeo +Dimes +Dimick +Dimm +Dimmig +Dimmock +Dimmocks +Dimmydale +Dimock +Dimona +Dimond +Dimple +Dimsdale +Dina +Dina Beth +Dinah +Dinallo +Dinanno +Dinant Link +Dinapoli +Dind +Dine +Dineen +Dineff +Dinesh +Dinger +Dingle +Dingle Bank +Dingleden +Dingletown +Dingley +Dingley Dell +Dingwall +Dingwell +Diniz +Dinkel Spiel +Dinley +Dinmore +Dinneen +Dinny +Dino +Dinora +Dinorben +Dinosaur Point +Dinsdale +Dinsmore +Dinting +Dinton +Dinuba +Dinwiddie +Dinwoodie +Diogenes +Dion +Dione +Dionne +Dipierro +Diploma +Diplomat +Dippenhall +Dipper +Dipping Brook +Diprose +Dipsea +Dirado +Direct River +Dirker +Dirker Bank +Dirksen +Dirkshire +Dirkson +Dirleton +Dirt +Dirtham +Dirty +Disbrow +Disbrowe +Disc +Disch +Discovery +Discovery Bay +Discovery Creek +Discovery Farm +Discovery Village +Disepo +Dishforth +Dishman +Dishong +Disk +Disley +Dislingbury +Disney +Dispensary +Disposal +Disraeli +Diss +Distaff +Distel +Distillery +Distin +Distler +Distribution +Distributor +District +District Office +Ditch +Ditchburn +Ditches +Ditchfield +Ditchling +Ditchmore +Ditmar +Ditmars +Ditmas +Ditson +Dittisham +Dittman +Dittmer +Ditton +Ditton Court +Ditton Grange +Ditton Hill +Ditton Park +Dittos +Ditty +Ditzel Farm +Divac +Dive +Diven +Diversey +Diversified +Diverting Canal Levee +Dividence +Dividing +Dividing Creek +Divine +Diving Cliff +Divinity +Divisadero +Division +Divisional +Diviso +Divittorio +Divney +Divot +Dix +Dix Hills +Dixey +Dixfield +Dixie +Dixie Hill +Dixie Lou +Dixieanne +Dixmoor +Dixmude +Dixon +Dixon Landing +Dixon Park +Dixon Ridge Fire +Dixona +Dixons Hill +Dixter +Dixwell +Dixwoods +Dnieper +Dnr +Doages +Doak +Doaks +Doane +Dobb Brow +Dobbel +Dobbies +Dobbin +Dobbinets +Dobbins +Dobbs +Dobbs Ferry +Dobbs Weir +Dobcross New +Dobe +Dobell +Dobells +Dobern +Dobhill +Dobie +Doble +Doblin +Dobree +Dobrody Farm +Dobroyd +Dobson +Dobsons +Doby +Docena +Dochart Sound +Dock +Dock Approach +Dock Head +Dock Hill +Dock Hollow +Dock Pathway +Dockenfield +Dockerell +Dockers Tanner +Dockery +Docket +Dockett Eddy +Docklands +Dockley +Dockray +Docks Corner +Dockser +Dockside +Dockwra +Docs Ranch +Doctor +Doctor Belt +Doctor Bird +Doctor Bowen +Doctor David Cline +Doctor Fold +Doctor Hawkins +Doctor Paul Ware +Doctor Samuel Mudd +Doctor Walling +Doctors +Doctors Commons +Doctors Park +Docwra +Dod +Dodbrooke +Dodd +Doddinghurst +Doddington +Dodds +Doddsfield +Dodero +Dodford +Dodge +Dodge Hill +Dodge Park +Dodgewood +Dodgson +Dodhurst +Dodie +Dodon +Dodsley +Dodson +Dodsworth +Dodworth +Dody +Doe +Doe Crossing +Doe Hey +Doe Path +Doe Trail +Doeg +Doering +Doescher +Doesgate +Doeshill +Doeskin +Doewood +Dofena +Doffcocker +Doffin +Doffing +Dog +Dog Kennel +Dogan +Dogaway +Dogberry +Dogden +Dogford +Doggett +Doggetts +Doggetts Farm +Doggetts Wood +Doghurst +Dogleg +Dogue +Dogue Hill +Dogue Hollow +Dogue Run +Dogwood +Dogwood Farm +Dogwood Hills +Dogwood Park +Dogwood Tree +Doherty +Doherty Ridge +Dohertys +Dohr +Dohrman +Dohrmann +Doidge +Doig +Doire +Doker +Dolan +Dolben +Dolbrook +Dolby +Dolce +Dolcetto +Dole +Dolecetto +Doleful Pond +Dolerita +Doles +Dolesbury +Dolesden +Dolin +Dolittle +Dolland +Dollar +Dollar Fire +Dollar Mountain +Dollard +Dollarhide +Dolle +Dolley Madison +Dollinger +Dollis +Dollis Hill +Dollis Park +Dollis Valley +Dolloff +Dollond +Dolly +Dolly Cam +Dolma +Dolman +Dolomite +Dolomite Hills +Dolores +Dolorosa +Dolph +Dolphin +Dolphin Lake +Dolphine +Dolsie Grove +Dolton +Doma +Domaine +Doman +Dombey +Dome +Domenic +Domenica +Domer +Domestic +Domett +Dominga +Domingo +Dominic +Dominica +Dominican +Dominici +Dominick +Dominion +Dominion Crest +Dominion Mill +Dominion Ridge +Dominion Valley +Dominion Wood +Dominique +Domino +Dominoe +Dominque +Dominque Estates +Domitian +Domonic +Doms +Domsey +Don +Don Allen +Don Carlos +Don Carol +Don Juan +Don Julio +Don Kirk +Don Martin +Don Mills +Don Pedro +Don Ramon +Don Walden +Dona +Donachy Cove +Donahe +Donahue +Donal +Donald +Donald Allen +Donald Biggs +Donald Curtis +Donald Moor +Donalds Range +Donaldson +Donard +Donata +Donatello +Donato +Donazetti +Donbush +Doncaster +Doncastle +Doncrest +Donde +Dondi +Done +Donegal +Donegal Bay +Donegan +Donellan +Donelson +Donemowe +Donerail +Doneraile +Doneva +Dongan +Dongan Hills +Dongary +Dongola +Donig +Donington +Donisthorpe +Donkey +Donkin +Donlan +Donlea +Donleigh +Donley +Donlon +Donmar +Donmaur +Donmoor +Donmore +Donn +Donna +Donna Dean +Donna Lee +Donna Marie +Donnan +Donnas +Donne +Donnefield +Donnel +Donnell +Donnelly +Donnely +Donner +Donner Pass +Donnici +Donnings +Donnington +Donny +Donny Brook +Donny Hill +Donnybridge +Donnybrook +Donoghue +Donoho +Donohoe +Donohue +Donor +Donora +Donovan +Donovans Hill +Dons +Donsen +Donset +Donston +Donwood +Donwood Trails +Doods +Doods Park +Doody +Doogan +Doohat +Doolan +Dooley +Dooleys +Dooligah +Doolin +Dooling +Doolittle +Doomben +Doomsday +Doon +Doonan +Doone +Dooneen +Doonkuna +Doonmore +Doonside +Doorn +Doorstep +Dootson +Dopping Brook +Doppler +Dopwns +Dora +Dorac +Dorado +Dorahy +Doral +Doral Farms +Doralee +Doran +Doran Beach +Doran Park +Doranne +Dorans +Dorantes +Doray +Dorcar +Dorcas +Dorcey +Dorchester +Dorcich +Dorcis +Dorclyn +Dordans +Dorden +Dordrecht +Dore +Doree +Doreen +Dorel +Doremus +Dorena +Dorene +Dorenkemper +Dorer +Doretha +Doretta +Dorfman +Dorforth +Dori +Doria +Dorian +Doriann +Dorianna +Doric +Dorigo +Dorina +Dorincourt +Dorine +Doris +Dorisa +Dorison +Dorking +Dorlan +Dorland +Dorlcote +Dorlen +Dorling +Dorlon +Dorlton +Dorman +Dormans +Dormans High +Dormans Park +Dormas +Dormay +Dormer +Dormer’s +Dormer’s Wells +Dormidera +Dormitory +Dormity +Dormont +Dormy +Dornan +Dornberg +Dorncliff +Dorncliffe +Dornell +Dorney Wood +Dorneywood +Dornfell +Dorning +Dornoch +Dornton +Doron +Dorothea +Dorothy +Dorothy Farm +Dorothy Meeks +Dorothy Sayers +Dorothy Smith +Dorotockeys +Dorr +Dorrance +Dorrells +Dorrence +Dorrie +Dorrigo +Dorringo +Dorrington +Dorris +Dorrit +Dorritt +Dorsa +Dorsch +Dorset +Dorsetshire +Dorsett Hill +Dorsey +Dorsey Hall +Dorsey Run +Dorseymill +Dorson +Dorthel +Dorton +Dorval +Dorville +Dorwin +Dorwood +Dory +Dory Brooks +Dos Loma Vista +Dos Palos +Dos Polos +Dos Reis +Dos Rios +Doscher +Dosh +Dosoris +Doswell +Dot +Doten +Doter +Dothan +Dots +Dotson +Dotte +Dotterel +Dottielyn +Dottino +Dotty +Dotty Ann +Doty +Double Bogey +Double Dove +Double Eagle +Double Gate +Double Oak +Double R +Double Tree +Doubleday +Doublegate +Doubleland +Doublerock +Doubles +Doublet Hill +Doubletree +Doubling +Doucette +Doud +Doug +Dougal +Dougan +Dougherty +Doughty +Dougill +Douglane +Douglas +Douglas Fir +Douglas Haig +Douglas Legum +Douglas Park +Douglass +Douglyn +Douglynn +Dougmar +Doulton +Dounby +Douro +Douse +Dousman +Doust +Dove +Dove Bank +Dove Creek +Dove Dale +Dove Hill +Dove Tail +Dove Tree +Dovecoat +Dovecoate +Dovecot +Dovecote +Dovedale +Dovehouse +Doveleys +Dovelys +Dovenshire +Dover +Dover Farm +Dover Hill +Dovercliff +Dovercourt +Dovers Green +Doverton +Dovervelt +Doves +Doveston +Dovetail +Doveton +Doveville +Dovewood +Dovre +Dow +Dowanhill +Dowd +Dowdell +Dowding +Dowdle +Dowdy +Dowe +Dowel +Dowell +Dower +Dower House +Dower Village +Dowitcher +Dowkell +Dowlais +Dowland +Dowlands +Dowlans +Dowlas +Dowle +Dowlerville +Dowles +Dowlin +Dowling +Down +Down Barns +Down Court +Down Green +Down Patrick +Downbank +Downdale +Downen +Downer +Downers +Downers Grove Main +Downes +Downey +Downey Mill +Downfield +Downhall +Downham +Downham Old Bromley +Downhaul +Downhill +Downhills +Downhurst +Downie +Downieville +Downing +Downingwood +Downland +Downlands +Downley +Downmill +Downpatrick +Downs +Downs Bridge +Downs Court +Downs Hill +Downs Hill The +Downs View +Downsberry +Downsbridge +Downsell +Downsfield +Downshall +Downshaw +Downshire +Downside +Downside Bridge +Downside Common +Downsland +Downsview +Downswick +Downton +Dowrelio +Dowrey +Dowry +Dows +Dowse +Dowsett +Dowsetts +Dowsing +Dowson +Doxbury +Doxey +Doxsee +Doyce +Doyer +Doyers +Doyle +Doyle Cove +Doyle Park +Doyles +Doynton +Dozer +Dr Johnson +Dr Richard A Graham +Dr Samuel Mudd +Dracena +Dracic +Drackert +Draco +Dracut +Draeger +Draelon +Drage +Dragon +Dragon Slayers +Dragonette +Dragonfly +Dragonwyck +Dragoon +Dragor +Dragus +Drahos +Drain +Drainage +Drais +Drake +Drake Beach +Drake Park +Drake Smith Woods +Drakefell +Drakefield +Drakeford +Drakes +Drakes Bay +Drakes Beach +Drakes Cove +Drakes Landing +Drakes Summit +Drakes View +Drakewood +Dralle +Dranesville +Dransfield +Draper +Drapers +Drapkin +Drauden +Dravet +Dravus +Draw Bridge +Drawbridge +Drawfield +Drax +Dray Corner +Draycot +Draycott +Drayhorse +Drayton +Drea +Dreadnought +Dream +Dream House +Dreamwold +Dreas +Dreeme +Dreher +Dreier +Dremeday +Drendel +Drepanos +Dresden +Dresel +Dress +Dress Cricle +Dressage +Dresser +Dressington +Dressler +Dressmaker +Drever +Drew +Drew Lake +Drewery +Drewett +Drewlaine +Drewry +Drews +Drewsbury +Drewstead +Drexel +Drexelgate +Dreyer +Dreyfus +Dreyfuss +Dried Earth +Driffield +Drift +Drifter +Drifters +Driftway +Driftwood +Driggs +Drill Hall +Drillane +Drillfield +Drinkwater +Driprock +Driscol +Driscoll +Driscolls +Drisler +Drive +Driver +Drivers End +Driveway +Drivewood +Driving Park +Drogue +Drohan +Droitwich +Dromana +Dromey +Dromore +Drone +Dronfield +Drookdale +Droop +Drop +Drop Anchor +Drop Forge +Droughts +Drouin +Drove +Drover +Drovers +Drowsy +Droxford +Droyers Pointe +Droylsden +Dru +Drub +Druce +Drucilla +Drue +Druet +Druetzler +Druid +Druid Hill +Druitt +Drum +Drum Hill +Drum Point +Drumalbyn +Drumaldry +Drumard +Drumbalyn +Drumcliff +Drumelzia +Drumlea +Drumlin +Drumlin Hill +Drumm +Drummer +Drummond +Drummore +Drummoyne +Drumsheugh +Drungewick +Drury +Drusy +Dry +Dry Arch +Dry Barley +Dry Creek +Dry Creek Fork +Dry Ends +Dry Harbor +Dry Hill +Dry Hill Park +Dry Hollow +Dry Meadow +Dry Mill +Dry Ridge +Dry Run +Dry Well +Dry Yard +Dryad +Dryander +Dryberry +Dryburgh +Dryden +Drydock +Dryer +Dryfield +Dryhill +Dryhill Park +Dryhurst +Dryland +Drylands +Drymill Overlook +Drynan +Drysdale +Drystraw +Drywood +Du Bois +Du Cane +Du Cros +Du Page +Du Sault +DuBois +Dual Wide +Duane +Duar +Duardo +Duarte +Dub +Dubanski +Dubarry +Dubbo +Dubbs +Dube +Dubel +Duberstein +Dubert +Dubiel +Dublane +Dublin +Dublin Canyon +Dublin Green +Dublin Hill +Dublin Meadows +Duboce +Dubois +Dubon +Dubonet +Dubonnet +Dubons +Dubrow +Dubuque +Duby +Duca +Ducal +Duchaine +Duchamp +Ducharme +Duches +Duchesne +Duchess +Duchess of Kent +Duchin +Duchy +Ducie +Duck +Duck Cove +Duck Creek +Duck Hill +Duck Island +Duck Lake +Duck Mill +Duck Pass +Duck Plain +Duck Pond +Duck Trail +Duckend +Duckend Farm +Duckens +Ducket +Duckett +Duckettes +Duckettown +Ducketts +Duckeys Run +Duckhorn +Duckinfield +Duckling +Duckmallois +Duckmead +Duckmore +Ducks Cove +Duckshaw +Duckwood +Duckworth +Duclos +Ducros +Duda +Dudak +Dudbrook +Dudden Hill +Duddington +Duddon +Duddy +Dudley +Dudlington +Dudlow Green +Dudrow +Dudsbury +Dudset +Dudswell +Due +Duell +Duen +Duena +Duer +Duesenberg +Duet +Duff +Duffer +Dufferin +Duffet +Duffield +Duffin +Duffney +Duffus +Duffy +Duffys +Dufief +Dufief Mill +Dufour +Dufranc +Dufresne +Dufton +Dufuar +Dugald +Dugan +Dugard +Dugdale +Duggan +Duggans +Duggers +Dugie +Duglas Fir +Dugolly +Duguid +Dugway +Duhaime +Duhart +Duhig +Duiker +Dukane +Duke +Duke Humphrey +Duke of Edinburgh +Duke of Gloucester +Duke of Kent +Duke of Wellington +Duke of York +Dukefield +Dukes +Dukes Farm +Dukes Meadow +Dukes Wood +Dukesberry +Dukesbury +Dukeshill +Dukesthorpe +Dukic +Dukinfield +Dulaney +Dulany +Dulas +Dulce +Dulcey +Dulcie +Duley +Dulford +Dulgar +Dulin +Dulittle +Dulka +Dullai +Dulles +Dulles Access +Dulles Center +Dulles Corner +Dulles Technology +Dulles Toll +Dulles Town +Dully +Dulsie +Dulude +Duluth +Dulverton +Dulwich +Dulwich Plough +Dulwich Common +Dulwich Wood +Dumaine +Dumais +Dumaresq +Dumas +Dumb Womans +Dumbah +Dumbarton +Dumber +Dumble +Dumbourne +Dumbreck +Dumergue +Dumerle +Dumers +Dumfries +Dumhart +Dumke +Dummer +Dumney +Dumont +Dumoulin +Dump +Dumpford +Dumville +Dun Horse +Dun Lo +Dun Robbin +Dunalley +Dunamon +Dunand +Dunaway +Dunbar +Dunbar Oaks +Dunbarton +Dunberry +Dunbier +Dunblane +Dunboy +Dunboyne +Dunbridge +Dunbrin +Dunbrook +Dunbury +Duncan +Duncan Elder +Duncannon +Duncanson +Dunchurch +Duncklee +Duncomb +Duncombe +Duncraig +Duncrevie +Duncton High +Dundale +Dundalk +Dundar +Dundas +Dundee +Dunderave +Dundilla +Dundonald +Dune +Dune Forest +Duneba +Dunedin +Duneiden +Duneland +Dunellen +Dunelm +Dunera +Dunes +Dunes Meadows +Dunes View +Dunfey +Dunford +Dunfries +Dungannon +Dungarven +Dungates +Dungells +Dungeness +Dungeon +Dunglow +Dungrove Hill +Dunham +Dunham Trail +Dunhams +Dunhams Corner +Dunhaven +Dunheath +Dunheved +Dunhill +Dunholme +Dunibar Ridge +Dunios +Dunisch +Dunkeld +Dunkerhook +Dunkerley +Dunkerly +Dunkers Pond +Dunkery +Dunkin +Dunkirk +Dunklee +Dunkley +Dunks +Dunlace +Dunlake +Dunlap +Dunlap Ranch +Dunlay +Dunlea +Dunleavy +Dunleer +Dunleigh +Dunleigh Glen +Dunleith +Dunley +Dunlin +Dunloe +Dunloggin +Dunlop +Dunloring +Dunlow +Dunmail +Dunmar +Dunmaston +Dunmore +Dunmow +Dunmurry +Dunn +Dunn Meadow +Dunncombe +Dunne +Dunnel +Dunnell +Dunnerdale +Dunnigan +Dunning +Dunnings +Dunnington +Dunnisher +Dunniwood +Dunnock +Dunns +Dunns Hill +Dunny +Dunnymans +Dunollie +Dunoon +Dunran +Dunraven +Dunreath +Dunree +Dunrobbin +Dunrobin +Dunrossil +Dunroven Lakes +Dunrovin +Dunsany +Dunsby +Dunsdon +Dunsfold +Dunsfold Common +Dunsham +Dunshea +Dunshee +Dunshire +Dunsinane +Dunsley +Dunsmore +Dunsmuir +Dunsmure +Dunsop +Dunspring +Dunstable +Dunstaffenage +Dunstall +Dunstan +Dunstans +Dunstar +Dunstarn +Dunster +Dunsters +Dunsters Mill +Dunston +Dunsyre +Dunteachin +Dunteman +Dunton +Duntroon +Duntrune +Duntshill +Dunvegan +Dunwell +Dunwich +Dunwood +Dunwood Valley +Dunwoodie +Dunwoody +Dunworth +Dupage +Dupage Country Club +Dupahze +Dupas +Duperu +Dupont +Dupont Park +Duppas +Duppas Hill +Dupras +Dupre +Dupree +Dupuis +Duquesne +Dura +Dural +Duran +Durand +Durango +Durant +Durante +Durants +Durants Park +Durar +Durbach +Durban +Durbans +Durbar +Durbeck +Durbin +Durbyan +Durdans +Durell +Durer +Durfee +Durfold +Durford +Durgess +Durgin +Durham +Durham Ferry +Durham House +Durham Wharf +Durhamoc +Duri +Durie +Durigan +Durillo +Durkee +Durkin +Durkins +Durland +Durlaston +Durleston Park +Durley +Durling +Durlston +Durmont +Durndale +Durnell +Durness +Durnford +Durning +Durnsford +Duronia +Duroso +Durrants +Durrants Hill +Durras +Durrell +Durrington +Durrington Park +Durrow +Dursey +Dursley +Durso +Durst +Durward +Durweston +Dury +Duryea +Dusenberry +Dusharme +Dusk +Dusko +Dustan +Dustin +Dustin Young +Dustman +Duston +Dusty +Dusty Oak +Dusty Wheel +Dusty Willow +Dutch +Dutch Barn +Dutch Flat +Dutch Haven +Dutch Hill +Dutch Hollow +Dutch Lake +Dutch Mill +Dutch Ship +Dutch Slough +Dutch Tulip +Dutch Valley +Dutch Village +Dutchcap +Dutcher +Dutcher Creek +Dutchess +Dutchland +Dutchman +Dutchview +Dutoit +Dutra +Dutra Bend +Dutruc +Dutt +Dutton +Duttonwood +Duty +Duval +Duvall +Duvall Bridge +Duvall Parish +Duvan +Duvawn +Duvol +Duwane +Duwari +Dux +Dux Court +Duxburry +Duxbury +Duxford +Duxhurst +Duynecrest +Dvorak +Dwane +Dwarf +Dwars Kill +Dwas Line +Dwasline +Dwelley +Dwelly +Dwhinda +Dwight +Dwinell +Dwinnell +Dwyer +Dybeck +Dyckman +Dye +Dye House +Dyer +Dyers +Dyers Hall +Dyes +Dygal +Dyke +Dykers Farm +Dylan +Dylan Creek +Dylane +Dymchurch +Dymock +Dymoke +Dymond +Dympna +Dynamic +Dynasty +Dyne +Dyneley +Dynes +Dynes Hall +Dynevor +Dynham +Dyott +Dyre +Dyrham +Dysart +Dysdale +Dyson +Dysons +Dysonswood +Dystelegh +Dystrup +E A +E A Joseph +E Abingdon +E Acker +E Ackerman +E Adams +E Addison +E Alabama +E Albert +E Alden +E Alder +E Alexandria +E Algonquin +E Alhambra +E Allison +E Almira +E Almondbury +E Alpine +E Altgeld +E Ames +E Amsterdam +E Amy +E Anchor +E Anderson +E Annandale +E Appletree +E Arch +E Ardmore +E Ardyce +E Argyle +E Armitage +E Army Trail +E Arrowhead +E Artisan +E Ash +E Atlantic +E Atwater +E Augusta +E Austin +E Avon +E Ayres +E Aztec +E Babcock +E Baker +E Balbo +E Baldwin +E Ballpark +E Balsam +E Baltimore +E Baltusrol +E Bancroft +E Banks +E Barberry +E Barbour +E Barclay +E Barkley +E Baronet +E Barret +E Bartlett +E Base Line +E Bauer +E Bay +E Bay Front +E Bay View +E Beach +E Beam +E Beaumont +E Beaver +E Bedell +E Beech +E Beechcroft +E Beecher +E Belden +E Bell +E Belle +E Bellefonte +E Belleterre +E Bellingham +E Bellwood +E Belmont +E Bemes +E Bend +E Bentley +E Benton +E Berkley +E Berkshire +E Bernice +E Berry +E Best +E Bethpage +E Bevan +E Bexhill +E Big Horn +E Big Sand +E Bigelow +E Birch +E Birchwood +E Bissell +E Black Dog +E Blair +E Blancke +E Blodgett +E Bloomingdale +E Bluebonnet +E Bluestone +E Bode +E Booker +E Boston Post +E Boundary +E Bowen +E Braddock +E Bradford +E Bradley +E Brandis +E Brannick +E Brayton +E Brenner +E Brewster +E Briarcliff +E Briarwood +E Brighton +E Brightway +E Brinkerhoff +E Brinwood +E Brittany +E Broad +E Broadway +E Brook +E Brookdale +E Brooklawn +E Brooks +E Brookside +E Brookwood +E Brown +E Browning +E Brunswick +E Brush Hill +E Bryn Mawr +E Burke +E Burlington +E Burning Tree +E Burr +E Burr Oak +E Burville +E Bush Lake +E Business Center +E Busse +E Butterfield +E Byway +E C +E Cabot +E Calendar +E California +E Cambridge +E Camden +E Camp McDonald +E Campbell +E Candlenut +E Canterbury +E Capitol +E Carib +E Carl +E Carmans +E Carolina +E Carondelet +E Carpenter +E Carriage +E Carriageway +E Carver +E Cascade +E Case +E Cass +E Castlewood +E Catalpa +E Cayuga +E Cedar +E Cedar Lake +E Centennial +E Center +E Central +E Centre +E Century +E Chalk Point +E Chapin +E Chapman +E Charles +E Charlotte +E Cherry +E Cheryl +E Chester +E Chestnut +E Chevy Chase +E Chicago +E Chinkapin Oak +E Chippendale +E Cholo +E Church +E Circle +E Circle Hill +E Circuit +E Clarendon +E Clark +E Clear +E Clearwater +E Cleburne +E Cleveland +E Cliff +E Clifford +E Clifton +E Clinton +E Coach +E Coady +E Coddington +E Cold Mill +E Cole +E Coleman +E Colfax +E College +E Collins +E Colonial +E Colorado +E Columbia +E Columbine +E Columbus +E Comfort +E Commercial +E Como Lake +E Comstock +E Congress +E Connecticut +E Constance +E Constitution +E Conway +E Cook +E Cooper +E Coral +E Corktree +E Cortland +E Cortwood +E Cosner +E Cossitt +E Cottage +E Country +E Country Club +E Countryside +E County Line +E Course +E Court +E Courtland +E Crabtree +E Craig +E Crainmont +E Crescent +E Crest +E Crestview +E Crestwood +E Crusader +E Crystal +E Crystal Lake +E Cuba +E Cullerton +E Cumberland +E Cunningham +E Curtice +E Curtis +E Custer +E Custis +E Cuttriss +E Dallas +E Danbury +E Daniels +E Danne +E Danube +E Darryl +E Dartmoor +E Davis +E Dean +E Decatur +E Deer Park +E Deerpath +E Delgado +E Delos +E Demarest +E Demont +E Denberry +E Dennis +E Des Moines +E Devon +E Devonia +E Dewey +E Diamond Lake +E Diane +E Dickens +E Diehl +E Diversey +E Division +E Dolton +E Donegal Bay +E Dosoris +E Dover +E Dudley +E Duncan +E Dundee +E Dundee Quarter +E Dunmore +E Dunslow +E Eagle Lake +E East +E Eastman +E Edgemont +E Edgewater +E Edsall +E Edward +E Edwards +E Elder +E Elderberry +E Elgin +E Elizabeth +E Elizbeth +E Elk Grove +E Ellis +E Elm +E Elmwood +E Emerson +E Emmerson +E Erie +E Euclid +E Eureka +E Evans +E Everett +E Evergreen +E Exchange +E Fabish +E Fairfax +E Fairfield +E Fairmont +E Fairview +E Falcon +E Farmdale +E Farmgate +E Fenimore +E Fernwood +E Figurea +E Fillmore +E Firehouse +E Fish Lake +E Flake +E Flanders +E Fleet +E Flentie +E Florida +E Foch +E Folsom +E Foreman +E Forest +E Fort Lee +E Forthill +E Fortlee +E Fox +E Fox Hill +E Frances +E Francis +E Franciscan +E Frank +E Franklin +E Frederick +E Fremont +E French Lake +E Friends +E Front +E Frontage +E Frontier +E Fullerton +E Fulton +E Furnace Branch +E Gaisor +E Galena +E Garden +E Gardner +E Garfield +E Garrett +E Gartner +E Garwood +E Gate +E Gates +E Gateway +E Geneva +E George +E Georgia +E Geranium +E Gibbons +E Gibbs +E Gilbert +E Gilfillan +E Glade +E Gladys +E Glebe +E Glen +E Glen Park +E Glendale +E Glenlake +E Goebel +E Goethe +E Golden Lake +E Goldsborough +E Golf +E Golfhurst +E Goodenow +E Goodman +E Goodrich +E Gore +E Gouverneur +E Graham +E Granada +E Grand +E Grand Lake +E Granite +E Grant +E Grantley +E Granville +E Grassy Sprain +E Green +E Green Meadow +E Greenbriar +E Greenbrook +E Greenfield +E Greenleaf +E Greenway +E Greenwich +E Greenwood +E Gregory +E Grenada +E Greystone +E Grissom +E Grove +E Gun Hill +E Hackberry +E Halbert +E Halden +E Half Hollow +E Halsey +E Ham Lake +E Hamburg +E Hamilton +E Hamline Service +E Hammond +E Hampton +E Hansel +E Hansen +E Harbor +E Harding +E Hardy +E Harehills +E Harkness +E Harper +E Harriet +E Harris +E Harrison +E Hartford +E Hartsdale +E Hartshorn +E Harvest +E Harwood +E Hattendorf +E Haven +E Hawley +E Hawthorne +E Hayes +E Hazel +E Hazelwood +E Heatherlea +E Hegel +E Helen +E Hendricks +E Hennepin +E Henry +E Heron +E Hickey +E Hickory +E Higbie +E Higgins +E High +E High Point +E Highland +E Hill +E Hillcrest +E Hillgrove +E Hillside +E Hinsdale +E Hintz +E Hitchcock +E Hobart Gap +E Hoffman +E Hollywood +E Holm +E Holsman +E Home +E Homestead +E Hooker +E Hopkins +E Horseshoe +E Howard +E Howell +E Hoyt +E Hubbard +E Hudson +E Hunter +E Hunter Ridge +E Hunter Valley +E Hurley +E Huron +E Huxley +E Hyacinth +E Hyde Park +E Hydraulic +E Ida +E Idaho +E Illinois +E Indian Spring +E Indian Trl +E Indiana +E Inman +E Inwood +E Iowa +E Ironstone +E Iroquois +E Irving +E Irving Park +E Isabel +E Isabella +E Ivy +E J Conroy +E Jack +E Jackson +E Jamaica +E Janata +E Jane +E Jefferson +E Jeffery +E Jeffrey +E Jenks +E Jersey +E Jessamine +E Joan +E Joe Orr +E Joffre +E John +E Johnson +E Joliet +E Joseph +E Joyce +E Judith Ann +E Jules +E Julius +E June +E Juniper +E Kammes +E Kansas +E Kathleen +E Kendall +E Kenilworth +E Kennedy +E Kenny +E Kensington +E Kenwood +E Kerry Brook +E Kilmer +E King +E Kinney +E Kinzie +E Kissimee +E Knob Hill +E Knollwood +E Kohlman +E Krage +E Kupsch +E Lacrosse +E Lafayette +E Lafayette Frontage +E Lahon +E Lake +E Lake Cook +E Lake Harriet +E Lake Louise +E Lake Netta +E Lake Rebecca +E Lake Shore +E Lakeland +E Lakeshore +E Lakeside +E Laraway +E Larkspur +E Larry Ho +E Laurel +E Lawn +E Lawndale +E Lawrence +E Lawson +E Le Moyne +E Lee +E Leeds Infirmary +E Lemoyne +E Lenox +E Leon +E Leonard +E Leone +E Lester +E Lexington +E Liberty +E Light +E Lillian +E Lincoln +E Linden +E Lindsley +E Linwood +E Locust +E Logan +E Lombard +E Long Lake +E Lorraine +E Lottie +E Louella +E Louis +E Louise +E Lowden +E Lower Pine Lake +E Lucas +E Luray +E Luther +E Lynda +E Lyndale +E Lynden +E Lynfield +E Lynnhurst +E Lynnwood +E Lyon Farm +E Lyons +E Mac Arthur +E Macarthur +E Macon +E Madison +E Magnolia +E Mahogany +E Main +E Major +E Malibou +E Mallard +E Mallory +E Manchester +E Manor +E Maple +E Margaret +E Marie +E Marine +E Marion +E Market +E Marlboro +E Marquette +E Marshall +E Marsteller +E Martin +E Mary +E Maryland +E Mason +E Masonic View +E Maude +E Maujer +E Maxon +E Maya +E Mayfair +E Mc Eldowney +E Mc Kenny +E Mc Lean +E McClellan +E McConnell +E McLane +E Meadow +E Meadow Lake +E Meadowland +E Mechanic +E Medicine Lake +E Medill +E Melrose +E Memorial +E Memory +E Mercer +E Merchants +E Meredith +E Merle +E Merrick +E Merritt +E Michael Manor +E Michigan +E Middle +E Middlesex +E Milburn +E Mill +E Mill Valley +E Miller +E Millers +E Millpage +E Millwood +E Milton +E Mineola +E Miner +E Mineral Pond +E Minerva +E Minnehaha +E Minooka +E Mississippi +E Mitchell +E Moehling +E Mohawk +E Monee +E Monitor +E Monroe +E Montana +E Monterey +E Montgomery +E Montrose +E Moonachie +E Moore Lake +E Moreland +E Morris +E Morse +E Morton +E Mound +E Mount +E Mount Harmony +E Mount Ida +E Mount Pleasant +E Mulberry +E Mundhank +E Munz +E Myrick +E Myrtle +E Nalley +E Nap +E Naperville +E Nassau +E National +E Navajo +E Nebraska +E Neck +E Nelson +E Nerge +E Nevada +E Neville +E New +E New York +E Newbold +E Newell +E Niagara +E Nicholai +E Nichols +E Nicollet +E Nolcrest +E Norfolk +E Norlander +E Norman +E Normandy +E North +E North Broadway +E North End +E North Frontage +E North Water +E Northfield +E Norwood +E Notre Dame +E Oak +E Oak Glenn +E Oak Hill +E Oakdale +E Oakdene +E Oakridge +E Oaks +E Oaksbury +E Oakton +E Oakview +E Oakwood +E Oasis Service +E Ocean +E Oceanside +E Offner +E Ogden +E Ohio +E Old Bridge +E Old Country +E Old Elm +E Old Hicks +E Old Mill +E Old Pine Bluff +E Old Post +E Old Ridge +E Old Shakopee +E Old White Plains +E Old Willow +E Olde Virginia +E Olive +E Oltendorf +E Oneida +E Onwentsia +E Orange +E Orchard +E Ordnance +E Oriole +E Osage +E Oxford +E Pacific +E Paddock +E Page +E Palatine +E Palisade +E Palisades +E Palmer +E Parallel +E Park +E Parkhill +E Parkside +E Parkview +E Pasadena +E Passaic +E Patapsco +E Patten +E Patton +E Payne +E Peachtree +E Pearl +E Pearson +E Peddie +E Peiffer +E Penn +E Pennington +E Pennsylvania +E Penny +E Pennywood +E Perkal +E Perkiomen +E Pershing +E Pettit +E Phillip +E Phillips +E Pierce +E Pierrepont +E Pine +E Pine Bluff +E Plainfield +E Plate +E Pleasant +E Pleasant Lake +E Pleasantview +E Plum +E Plum Tree +E Plymouth +E Point +E Pomeroy +E Pontiac +E Pool +E Poplar +E Port +E Porter +E Portland +E Ports O Call +E Ports of Call +E Post +E Potomac +E Potter +E Prairie +E Prairie Brook +E Pratt +E Price +E Prince +E Priscilla +E Private +E Progress +E Prospect +E Pt Douglas +E Pulaski +E Quackenbush +E Quincy +E Railroad +E Railway +E Rana +E Ranch +E Rand +E Randolph +E Randville +E Raven +E Raymond +E Reader +E Reading +E Reaney +E Red Coat +E Red Oak +E Redwood +E Reed +E Regal +E Reichert +E Research Center +E Reynolds +E Richard +E Richards +E Rickard +E Ridge +E Ridgefield +E Ridgewood +E Rietveld +E River +E Riverside +E Riviera +E Roberta +E Robie +E Rock Ridge +E Rockaway +E Rockland +E Rockwell +E Roland +E Rondeau Lake +E Roosevelt +E Rose +E Roselle +E Rosemont +E Rosita +E Ross +E Royal Ridge +E Ruby +E Runyon +E Russell +E Saddle Back +E Saddle River +E Saint Andrews +E Saint Charles +E Saint Georges +E Salem +E Saltaire +E Sanborn +E Sanctuary +E Sanders +E Sandpiper +E Santa Barbara +E Savannah +E Sayles +E Schaumburg +E Schick +E Schiller +E School +E Schoolhouse +E Schubert +E Scott +E Scranton +E Seacrest +E Seagrove +E Seaman +E Sedwick +E Seminary +E Service +E Severn Ridge +E Shadow Lake +E Shady Oaks +E Shag Bark +E Shannon +E Shaw +E Shawnee +E Sheffield +E Shelby +E Shelley +E Sheridan +E Sherman +E Sherrill +E Sherwood +E Shirley +E Shore +E Short +E Shoshone +E Side +E Sidney +E Sims +E Sioux Vista +E Sitka +E Skillman +E Skokie +E Slade +E Slayton +E Slope +E Smith +E Soffel +E Somerset +E Somonauk +E South +E South Branch +E South Broadway +E South Frontage +E Spencer +E Spring +E Spring Valley +E Springbrook +E Springhill +E Spruce +E Suburban +E Suffield +E Summer +E Summit +E Sumner +E Sunnyside +E Sunnyslope +E Sunset +E Superior +E Surf +E Surrey +E Susan +E Swain +E Swan +E Sycamore +E Sydney +E Sylvan +E Taft +E Talbot +E Tall Oaks +E Tano +E Tantallon +E Tappen +E Taylor +E Teal +E Techny +E Terra Cotta +E Terrace +E Terresa +E Terry +E Thayer +E Thomas +E Thompson +E Thorman +E Thorn +E Thorndale +E Timbercreek +E Tower +E Townline +E Traube +E Tremont +E Tryon +E Turner +E Turtle +E Twin +E Tyler +E Udall +E Uhler +E Union +E University +E Upland +E Utica +E Valencia +E Vallette +E Valley +E Valleyview +E Van Buren +E Van Emmon +E Van Ness +E Vargo +E Vera +E Vermillion +E Vermont +E Veterans +E Victoria +E View +E Viking +E Villa +E Village +E Virginia +E Voss +E Wakefield +E Waldron +E Wallace +E Wallum Lake +E Walnut +E Warburton +E Ward +E Warren +E Warwick +E Washington +E Water +E Waterside +E Waverly +E Weaver +E Webster +E Wells +E Wellwood +E Wend +E Wesley +E West +E West Shady Side +E Westleigh +E Westminster +E Wheelock +E Whispering Oaks +E White Water +E Wildwood +E Wilhelm +E William +E William Tell +E Williams +E Williston +E Willow +E Wilson +E Winant +E Winchester +E Windsor +E Wing +E Winifred +E Winthrop +E Wisconsin +E Wise +E Witchie +E Witchwood +E Wood +E Wood Duck +E Woodbine +E Woodcrest +E Woodland +E Woodlawn +E Woodman +E Woodridge +E Woodrow +E Woods +E Woodside +E Woodstock +E Worth +E Wrightwood +E Wyngate +E Wynstone +E York +E Yuma +E Zarley +E Zinnia +E Zoller +E Zoranne +E del Ray +E la Porte +E. Chicago +E. Market +E.Sylvestris +Eacham +Eachann +Eade +Eades +Eadington +Eads +Eafield +Eagan +Eagan Industrial +Eagan Oaks +Eagan Woods +Eagandale +Eagar +Eager +Eagle +Eagle Bay +Eagle Bluff +Eagle Brook +Eagle Chase +Eagle Creek +Eagle Crest +Eagle Gap +Eagle Harbor +Eagle Head +Eagle Hill +Eagle Knolls +Eagle Lake +Eagle Landing +Eagle N +Eagle Nest +Eagle Park +Eagle Peak +Eagle Point +Eagle Ridge +Eagle Rim +Eagle Rock +Eagle Rock Hill +Eagle Springs +Eagle Tavern +Eagle Trace +Eagle Tree +Eagle Vale +Eagle Valley +Eagle View +Eagle Vista +Eagle Wharf +Eaglecroft +Eaglehawk +Eaglehead +Eaglehurst +Eaglepoint +Eagleridge +Eagles +Eagles Mere +Eagles Nest +Eagles Notch +Eagles Roost +Eagles Run +Eagles View +Eaglesfield +Eagleshore +Eagleton +Eagleview +Eaglewing +Eaglewood +Eagley +Eagrett +Eaker +Eakins +Ealand +Ealing +Ealing on Duxbury +Eames +Eamont +Eardley +Earhart +Earhart Dam +Earl +Earl Howe +Earl Iliff +Earl Mountbatten +Earl Sullivan +Earl of Chester +Earlander +Earldom +Earle +Earle Brown +Earle Ovington +Earle Shores +Earlehurst +Earleigh Heights +Earleigh Woods +Earlena +Earlene +Earles +Earley +Earley Hill +Earlham +Earls +Earls Colne +Earls Hall +Earlsbrook +Earlsfield +Earlsford +Earlsgate +Earlsmead +Earlsmere +Earlsthorpe +Earlstoke +Earlston +Earlswood +Earlsworth +Earlwood +Earlwoode +Early +Early Autumn +Early Glow +Early Morning +Early Oaks +Early Times +Earlybird +Earlynn +Earnell +Earnest +Earnestine +Earnscliff +Earnshaw +Earsby +Earth +Earth Flower +Easby +Eascote +Easebourne +Easecrest +Easedale +Easel +Easement +Eashing +Easie +Easington +Easley +Eason +East +East A +East Abbey +East Ac +East Access +East Acton +East Acton Brunel +East Ad +East Adams +East Agua Caliente +East Ahwanee +East Airway +East Alameda +East Albion +East Aldea +East Alden +East Alder +East Algonquin +East Allendale +East Allison +East Alma +East Aloha +East Altarinda +East Amhurst +East Anderson +East Angela +East Angus +East Anza +East Arbor +East Arbour +East Arques +East Ashland +East Ashley +East Atherton +East Atlantic +East Augusta +East Austin Creek +East B +East Bacon +East Bagwell +East Baker +East Balbo +East Baldwin +East Banbury +East Bare Hill +East Barnet +East Bath +East Battery +East Battles +East Bay +East Bayshore +East Beach +East Beachwood +East Beamer +East Beech +East Beeches +East Bel Mar +East Belcher +East Bell +East Bellevue +East Bend +East Benjamin Holt +East Berkeley +East Berkley +East Berna +East Bianchi +East Bidwell +East Bird +East Black Oak +East Blaine +East Blair +East Blithedale +East Bolton +East Bond +East Bonness +East Border +East Boscobel +East Boston +East Boundary +East Boxford +East Branch +East Bridge +East Bridgewater +East Broadway +East Brockman +East Brokaw +East Bronte +East Brook +East Brookline +East Brookwood +East Brunswick +East Buchanan +East Bulfinch +East Burnham +East Burnside +East Busk +East C +East Calaveras +East Calhoun +East California +East Campbell +East Campus +East Canton +East Canyon +East Canyon View +East Capitol +East Cardinal +East Caribbean +East Carlo +East Carol +East Carriage +East Carroll +East Cascade +East Castro Valley +East Cavendish +East Cavour +East Cemetery +East Center +East Central +East Centry +East Channel +East Charles +East Charleston +East Charlotte +East Cherry +East Chestnut +East Chevin +East Chiles +East Church +East Cintura +East Clarendon +East Clay +East Claydon +East Cliff +East Coast +East Colfax +East College +East Collins +East Colorado +East Columbia +East Comfort +East Commercial +East Common +East Como +East Concord +East Congress Plaza +East Conley +East Cornell +East Corning +East Cotati +East Country Club +East Court +East Cove +East Covell +East Coyote Creek +East Creek +East Crescent +East Crockett +East Crooked Hill +East Cross +East Curtis +East Cypress +East D +East Dalton +East Dam +East Dana +East Danbury +East Dartmouth +East Davis +East Dedham +East Dellridge +East Dene +East Denver +East Deodara +East Devon +East Diamond +East Diane +East Division +East Downs +East Duane +East Duck Lees +East Dulwich +East Dundee +East Dunne +East Dunstable +East Durant +East E +East Eagle +East Eaglewood +East East +East Eastman +East Eastview +East Echo Lake +East Edgar +East Edith +East Edmundson +East Edwards +East Eight Mile +East Eighth +East Elbrook +East Elm +East Elmwood +East Emerson +East Empire +East End +East Englewood +East Estates +East Euclid +East Eugene +East Evans +East Evelyn +East Evergreen +East F +East Fabyan +East Fairfax +East Fairfield +East Fairview +East Falcon +East Fawn +East Ferdinand +East Ferndale +East Ferry +East Field +East Field Service +East Fifth +East Fir +East First +East Flexford +East Foothill +East Foppiano +East Fordham +East Foreman +East Forest Lake +East Forks +East Fosket +East Foster +East Foster Island +East Fourth +East Foxboro +East Francis +East Franklin +East Frederick +East Fremont +East French Camp +East Frisbee +East Front +East Frontage +East Fulton +East Furman +East G +East Galena +East Galer +East Galin +East Garfield +East Gary +East Gate +East Geary +East Geneva +East George +East Gibson +East Gilbert +East Gish +East Glen +East Glencoe +East Gnarled Oak +East Golf +East Gordon +East Gowe +East Grace +East Grand +East Grange +East Grant Line +East Greystone +East Grinstead +East Grove +East Gude +East Guernsey +East Gum +East Gun Hill +East H +East Hacienda +East Haight +East Hall +East Hamilton +East Hamlin +East Hammer +East Hampton +East Handel +East Hanningfield +East Harding +East Harney +East Harper +East Harris +East Harrison +East Harting +East Harvest +East Harwood +East Haven +East Hawthorne +East Hayden Lake +East Haydon +East Hazelton +East Heath +East Hedding +East Helen +East Hemlock +East Hendy +East Hennepin +East Henning +East Higgins +East High +East Highland +East Hildreth +East Hill +East Hill Alma +East Hillcrest +East Hills +East Hillsdale +East Hilton +East Hirsch +East Hoe +East Hogan +East Holly +East Hollywood +East Home +East Homestead +East Hopkins +East Horner +East Hospital +East Houston +East Howard +East Howe +East Howell +East Hoyle +East Humboldt +East Hurd +East Hurlbut +East Huron +East I +East Iberia +East Ike Crow +East Illinois +East India Dock +East Ingram +East Interlaken +East Interurban +East Iowa +East Iris +East Irving Park +East J +East Jack London +East Jack Tone +East Jackson +East Jahant +East James +East Jamestown +East Java +East Jefferson +East John +East Jonathan +East Jonquil +East Juana +East Julian +East Juniper +East K +East Kavanagh +East Kelly +East Kendall +East Kenilworth +East Kennedy +East Kensington +East Kent +East Kentucky +East Kenyon +East Kettleman +East Keystone +East Kimber +East Kimberly +East King +East Kingfisher +East Kingsbridge +East Kingsley +East Kingston +East Kirke +East Kirschenman +East Kitson +East Knoll +East Krell +East Lafayette +East Laguna +East Lake +East Lake Kayak +East Lake Shore +East Lake Washington +East Lakeshore +East Lancashire +East Lancaster +East Lanram +East Larkspur +East Las Palmas +East Latimer +East Laurel +East Laurel Creek +East Laurin +East Lawn +East Lawrence +East Le Moyne +East Lee +East Leeds Link +East Leigh +East Leland +East Lenox +East Levee +East Lewelling +East Lewis +East Lincoln +East Linden Church +East Linden Orchard +East Lindsay +East Linne +East Live Oak +East Lockeford +East Locust +East Lodge +East Lodi +East Lomond +East Long Barn +East Longfellow +East Longview +East Lonnquist +East Loomis +East Loop +East Lorenzen +East Loretta +East Los Felis +East Lost Lake +East Lothrop +East Louisa +East Louise +East Lousia +East Lowe +East Lowell +East Lubell +East Lynch +East Lynn +East M +East Macarthur +East Madill +East Madison +East Magnolia +East Mahwah +East Main +East Mall +East Mallory +East Manor +East Manzanita +East Maple +East March +East Marion +East Mariposa +East Market +East Marsh +East Marshall +East Mascalls +East Mathews +East Maude +East Mayes +East Mayfair +East Mc Gilvra +East Mc Graw +East Mc Kenzie +East Mc Mullin +East McAllen +East McGlincey +East Meadow +East Mearn +East Meeker +East Mehrten +East Melbourne +East Mendocino +East Meon +East Mercer +East Mercer Highland +East Merrimack +East Messick +East Michigan +East Middle +East Middlefield +East Midland +East Milgeo +East Militia Heights +East Mill +East Millbrae +East Miller +East Millwood +East Milton +East Miner +East Mission +East Mistletoe +East Mockingbird +East Moltke +East Moncure +East Monroe +East Montara +East Monte Vista +East Monterey +East Moor +East Morada +East Morris +East Morrison +East Morse +East Mount +East Mount Diablo +East Mozart +East Munford +East Munro +East Myrtle +East N +East Napa +East Nash +East Natoma +East Nauraushaun +East Nerge +East New York +East Newton +East Nichols +East Nile +East Nilsson +East Ninth +East Noble +East North +East Novak +East Noyes +East Nulty +East Nursery +East O +East Oak +East Oaksbury +East Oakton +East Oakview +East Oakwood +East Ohio +East Old Barn +East Old Greenville +East Olive +East Olivera +East Ontario +East Orchard +East Ordnance +East Ordsall +East Orford +East Orwood +East Otis +East Pacific +East Palatine +East Palm +East Park +East Park Farm +East Park View +East Parkdale +East Passaic +East Patrol +East Patterson +East Peach +East Pearl +East Peltier +East Penn +East Pennsylvania +East Perimeter +East Perrin +East Pescadero +East Phillips +East Pickwick +East Pike +East Pine +East Plain +East Plateau +East Plumeria +East Point +East Ponce de Leon +East Pond +East Poplar +East Port +East Portola +East Poultry +East Power +East Prairie +East Princeton +East Prospect +East Prouty +East Purchase +East Putnam +East Quarry +East Quashnick +East Quinobequin +East Railroad +East Raleigh +East Ramapo +East Ranch +East Rancho Arroyo +East Rand +East Rand Grove +East Randolph +East Realty +East Redwood +East Reed +East Regal +East Reitze +East Remington +East Republican +East Rianda +East Richardson +East Richmond +East Ridge +East Ridgecrest +East Riding +East Rincon +East Ringwood +East River +East Riverside +East Riverview +East Roanoke +East Robert +East Robertson +East Robinhood +East Robles +East Rockwell +East Rollins +East Ronald +East Roosevelt +East Rose +East Rosemary +East Roy +East Ruby +East Ruby Hill +East Rutherford +East Ryer +East Saddle River +East Saint Charles +East Saint James +East Saint John +East Salt +East San Antonio +East San Bruno +East San Carlos +East San Fernando +East San Martin +East San Salvador +East Sandalwood +East Sandralee +East Santa Clara +East Santa Fe +East Santa Inez +East Santos +East Sargent +East Scenic +East School +East Schoolhouse +East Schuyler +East Scotts +East Seaview +East Second +East Section +East Seegers +East Selby +East Seneca +East Serenity +East Service +East Seventh +East Shady +East Shalford +East Shea +East Sheen +East Shelby +East Sheppard +East Sherman +East Shiloh +East Shore +East Shoreview +East Shorewood +East Side +East Sidney +East Sierra +East Sigwalt +East Sikorsky +East Sixth +East Slope +East Smith +East Soda Rock +East Sola +East Sonoma +East Sonora +East South +East South Water +East Southgate +East Southland +East Spain +East Spiess +East Spring +East Spruce +East Squantum +East Sst +East Sunnyoaks +East Sunnyslope +East Sunset +East Superior +East Sutter +East Sutton +East Swain +East Sylvester +East T +East Tabor +East Tacoma +East Taron +East Tasman +East Taylor +East Tazewell +East Tehama +East Temperance +East Temple +East Tennessee +East Tennys +East Tenter +East Terrace +East Thacker +East Third +East Thomas +East Thomas Grade +East Thomson +East Thorndale +East Thornwood +East Thurman +East Thurrock +East Tiffany +East Tilbury +East Titus +East Tobacco +East Todd +East Tokay +East Tokay Colony +East Touhy +East Town Line +East Towne +East Travis +East Tregallas +East Tremont +East Trident +East Trimble +East Tripps Run +East Underwood +East Union +East University +East Utah +East Vail +East Valley +East Van Buren +East Vanston +East Verdon +East Veritas +East Vernon +East Victor +East Victoria +East View +East Vine +East Vineland +East Vineyard +East Virginia +East Vista +East Vivian +East Wacker +East Walnut +East Ward +East Warren +East Washington +East Water +East Watmaugh +East Wayne +East Weald +East Weddell +East West +East Wetmore +East Whipley +East White Oak +East Whitehouse +East Whittier +East Wilchard +East Wildcat Canyon +East William +East Williamsburg +East Williston +East Willow +East Wilmette +East Wilson +East Wiltse +East Winery +East Wood +East Woodbridge +East Woodbury +East Woodcliffe +East Woodfield +East Woods +East Woodson +East Woodward +East Worcester +East Worth +East Wyandotte +East Wyman +East Wyoming +East Yokuts +East Yolo Levee +East Yorkshire +East Younger +East Zayante +East el Campo +East el Macero +East la Chiquita +East la Mesa +EastField +Eastbank +Eastbluff +Eastbourne +Eastbournia +Eastbrook +Eastbrooke +Eastburn +Eastbury +Eastcastle +Eastchester +Eastchester – Dyre +Eastchurch +Eastcliff +Eastcliffe +Eastcombe +Eastcote +Eastcourt +Eastcrest +Eastcroft +Eastdale +Eastdean +Eastdene +Easteds +Eastend +Eastentry +Easter +Easterby +Easterford +Easterley +Easterly +Eastern +Eastern Arterial +Eastern Creek +Eastern Crest +Eastern Heights +Eastern Marketplace +Eastern Perimeter +Eastern Point +Eastertown +Eastfield +Eastfields +Eastford +Eastgate +Eastgate View +Eastgrove +Eastham +Easthampstead +Easthaven +Eastheath +Easthill +Eastholme +Easthorpe +Eastin +Eastlake +Eastland +Eastlands +Eastlawn +Eastlea +Eastleigh +Eastlewood +Eastlick +Eastline +Eastling +Eastman +Eastman Lake +Eastmans +Eastmont +Eastmoor +Eastmoreland +Eastmount +Eastney +Eastnor +Easton +Easton North +Eastover +Eastpine +Eastport +Eastridge +Eastrop +Eastry +Eastshire +Eastshore +Eastside +Eastus +Eastview +Eastview Farm +Eastville +Eastward +Eastway +Eastwick +Eastwick Hall +Eastwick Park +Eastwind +Eastwood +Eastwood Old +Eastwood Park +Eastwood Village +Eastwoodbury +Eastwoods +Eastworth +Easum +Easy +Eather +Eatington +Eatkart +Eaton +Eaton Bray +Eaton Green +Eaton Landing +Eaton Park +Eaton Valley +Eatonia +Eatons +Eatons Neck +Eaves +Eaves Knoll +Eba +Ebano +Ebb +Ebb Tide +Ebberns +Ebberstone +Ebbertaft +Ebbesen +Ebbett +Ebbetts +Ebbetts Pass +Ebbisham +Ebbitts +Ebbsfleet +Ebbtide +Ebden +Ebe +Eben +Ebener +Ebenezer +Ebensburg +Ebenzer +Eberhard +Eberhardt +Eberhart +Eberlin +Eberly +Ebersbach +Ebert +Eberts +Eberwein +Ebey +Ebken +Ebley +Ebner +Ebony +Ebor +Ebrington +Ebro +Ebsworth +Eburne +Ebury +Ebury Bridge +Eby +Eccles +Eccles New +Eccles Old +Ecclesbourne +Ecclesbridge +Ecclesburn +Eccleshall +Eccleston +Ecclestone +Eccup +Eccups +Echelforde +Echo +Echo Barn +Echo Bay +Echo Bridge +Echo Cove +Echo Glen +Echo Grove +Echo Hill +Echo Hills +Echo Knolls +Echo Lake +Echo Park +Echo Pit +Echo Point +Echo Ridge +Echo Springs +Echo Square Sun +Echo Summit +Echo Valley +Echo Woods +Echols +Echunga +Eckberg +Eckbo +Eckel +Ecker +Eckersley +Eckersley Fold +Eckerson +Eckert +Eckert Farm +Eckford +Eckhart +Eckles +Eckley +Eckmoor +Eckstein +Eclipse +Ecole +Ecology +Ecton +Ector +Ed Bossert +Ed Finn +Ed McDashowicz +Ed Prout +Ed Rau +Edale +Edan +Edbrooke +Edcris +Eddel +Eddeys +Eddie +Eddinger +Eddington +Eddisbury +Eddiscombe +Eddisford +Eddison +Eddiwick +Edds +Eddy +Eddyspark +Eddystone +Ede +Edel +Edelblut +Edelen +Edelin +Edelmar +Edelton +Edelweiss +Eden +Eden Bower +Eden Bridge +Eden Brook +Eden Canyon +Eden Glen +Eden Grove +Eden Landing +Eden Oaks +Eden Park +Eden Plains +Eden Prairie +Eden Roc +Eden Rock +Eden Shores +Eden View +Eden West +Edenbank +Edenberry +Edenborough +Edenbridge +Edenbury +Edencourt +Edencrest +Edendale +Edenderry +Edenfield +Edenhall +Edenholme +Edenhurst +Edenlee +Edenmoor +Edensor +Edentenny +Edenton +Edenvale +Edenview +Edenville +Edenwood +Eder +Eder Ct +Ederline +Ederoyd +Edes +Edfeldt +Edgar +Edgar A Poe +Edgar Buggy +Edgars +Edgartown +Edgbaston +Edgcumbe +Edgcumbe Park +Edge +Edge Creek +Edge Field +Edge Fold +Edge Hill +Edge Lake +Edge Rock +Edge View +Edgebank +Edgeboro +Edgebrook +Edgebrooke +Edgecliff +Edgecliffe +Edgecomb +Edgecombe +Edgecome +Edgecote +Edgecott +Edgecourt +Edgecreek +Edgecrest +Edgecroft +Edgecumbe +Edgedale +Edgefield +Edgegate +Edgegrove +Edgehill +Edgel +Edgelawn +Edgelea +Edgeley +Edgell +Edgemar +Edgemeade +Edgemere +Edgemere Park +Edgemont +Edgemoor +Edgemore +Edgemount +Edgepark +Edgerly +Edgerton +Edgevale +Edgeview +Edgeware +Edgewarebury +Edgewater +Edgewater Place +Edgewater Pond +Edgewick +Edgewold +Edgewood +Edgewood Glen +Edgewood Hills +Edgeworth +Edgeworth David +Edgington +Edgrace +Edgware +Edgwarebury +Edi +Edice +Edie +Edilom +Edin Garth +Edina +Edina Industrial +Edinboro +Edinbrook +Edinburg +Edinburgh +Edinger +Edington +Edis +Edison +Edison Park +Edith +Edith Holmes +Edith Patch +Edith Sherman +Edithna +Editors Park +Ediva +Edlee +Edlin +Edlington +Edloe +Edlys +Edman +Edmands +Edmar +Edminton +Edmond +Edmonds +Edmondson +Edmons +Edmonston +Edmonton +Edmore +Edmund +Edmund Beaufort +Edmund Corrigan +Edmund Halley +Edmund Hock +Edmund Hurst +Edmunds +Edmunton +Edna +Ednor +Edoka +Edpas +Edquiba +Edric +Edrich +Edrick +Edridge +Edsall +Edscho +Edsel +Edson +Edstan +Edstone +Education +Educational Park +Edulf +Edwall +Edward +Edward Barron +Edward Bennett +Edward Bentley +Edward Charlton +Edward Cody +Edward Cul de Sac +Edward Edgar +Edward Foster +Edward H Ross +Edward Hart +Edward II +Edward Kelleher +Edward S Harrison +Edward Temme +Edwardel +Edwardene +Edwards +Edwards Bay +Edwards Ferry +Edwards Point +Edwards Rancho +Edwardson +Edwin +Edwin C Weiskopf +Edwin Flack +Edwin H. Land +Edwin Markham +Edwin Raynor +Edwina +Edwins Hall +Edwrads +Edythe +Ee +Eel +Eelmoor +Eelmoor Plain +Eerawy +Effey +Effie +Effies +Effingham +Effingham Common +Effington +Efford +Effort +Effra +Effress +Effron +Efner +Egan +Egandale +Eganey +Egard +Egbert +Egbert Hill +Egdon +Ege +Egel +Egerszegi +Egerton +Egerton Green +Egerton House +Egg Farm +Egg Pie +Egg Ranch +Eggar Woods +Eggelston +Eggers +Eggert +Eggington +Eggleson +Eggleston +Eggleton +Egham +Eghams Wood +Egidi +Eglantine +Egleston +Egley +Eglin +Eglington +Eglinton +Eglise +Egliston +Egmont +Egmontt Park +Egolf +Egremont +Egret +Egypt +Egypt Beach +Egyptian +Ehle +Ehlen +Ehlers +Ehlinger +Ehrbar +Ehret +Ehrhardt +Ehrhorn +Eich +Eichenwald +Eicher +Eichler +Eichten +Eider +Eiffel +Eiger +Eight +Eight Acre +Eight Lots +Eight Rod +Eighteen Acre +Eighteenth +Eighth +Eightlands +Eightpenny +Eigleberry +Eigth +Eike +Eildon +Eileen +Eilene +Eiler +Eilers +Eilerson +Eillimatta +Eilliot +Eilmatta +Eimer +Einfield +Einhorn +Eire +Eischens +Eiseman +Eisenbeisz +Eisenhower +Eisner +Eisnor +Eitel +Eith +Eith High +Ekala +Ekberg +Ekings +Ekins +Eklund +Ekman +Eknes +Ekstrand +El Alamein +El Arroyo +El Balcon +El Bonita +El Bonito +El Bosque +El Cajon +El Cameno +El Camille +El Caminito +El Camino +El Camino Medio +El Camino Plaza +El Campo +El Caney +El Capitan +El Caprice +El Carlo +El Carmelo +El Cemonte +El Centro +El Cerrito +El Cerro +El Charro +El Chorlito +El Cid +El Cimino +El Cortez +El Crystal +El Curtola +El Divisadero +El Dorado +El Dorado Beach Club +El Dorado Hills +El Dorado Turn +El Dori +El Douro +El Encanto +El Faisan +El Fresco +El Gato +El Granada +El Grande +El Greco +El Invierno +El James +El Lago +El Lisa +El Macero +El Manto +El Matador +El Mercado +El Mirador +El Modena +El Molino +El Monte +El Moro +El Morro +El Nido +El Nido Ranch +El Oro +El Oro Plaza +El Oso +El Padro +El Paraiso +El Paseo +El Paso +El Patio +El Pinal +El Pintado +El Pintado Heights +El Pinto +El Portal +El Porto +El Portola +El Prado +El Pueblo +El Quanito +El Rancho +El Rancho Verde +El Refugio +El Reno +El Rey +El Rincon +El Rio +El Rose +El Salto +El San +El Sanjon +El Segundo +El Sereno +El Sobrante +El Solyo +El Solyo Heights +El Sombroso +El Suyo +El Terraza +El Toro +El Vanada +El Verand +El Verano +El Vista +El Zuparko +Ela +Elacqua +Elaine +Elam +Elan +Elan Village +Eland +Elanora +Elario +Elayne +Elba +Elbe +Elberon +Elbert +Elberta +Elbertson +Elbon +Elbormar +Elborough +Elbow +Elbridge +Elbrook +Elbury +Elbut +Elby +Elcedo +Elchester +Elcho +Elcock +Elcombe +Elcorte Madera +Elcot +Elcott +Elda +Eldamain +Eldbridge +Eldee +Elden +Eldene +Elder +Elder Brewster +Elder Creek +Elder Oaks +Elder Tree +Elderberry +Elderbrook +Eldercroft +Elderd +Elderfield +Elderfields +Elderfo +Elderly +Eldermount +Elders Hollow +Eldershaw +Elderslie +Eldert +Elderton +Elderwood +Eldon +Eldor +Eldora +Eldorado +Eldred +Eldredge +Eldrid +Eldridge +Eldridge Grade Fire +Eldrige +Eleana +Eleanor +Eleanor Cross +Eleanore +Elebana +Elebe +Election +Electioneer +Electo +Electra +Electric +Electronic +Electronics +Elefa +Elegans +Elegante +Eleham +Elena +Elena Marie +Elenda +Elendil +Elene +Eleni +Elephant +Elester +Eletson +Elevation +Elevator +Eleven Oaks +Eleventh +Eley +Elf +Elfelt +Elfers +Elfin +Elfindale +Elford +Elfort +Elfred +Elfreda +Elfrida +Elfrieda +Elfwine +Elgar +Elgarth +Elger +Elgin +Elgin Hosp Service +Elgin Mental Hospital +Elginwood +Elgiva +Elham +Elholm +Eli +Eli Whitney +Elia +Elianore +Elias +Elias Howe +Eliason +Elibank +Elijah +Elim +Elimatta +Elingwood +Elinor +Elinor Fr +Elinora +Elinore +Elioak +Eliot +Eliot Hill +Eliot Memorial +Eliot View +Eliots Oak +Eliott +Elisa +Elise +Eliseo +Elisha +Elissa +Elissagaray +Eliston +Elite +Eliz +ElizAbeth +Eliza +Eliza Ann +Elizabath +Elizabeth +Elizabeth Bay +Elizabeth Fry +Elizabeth Ida +Elizabeth MacArthur +Elizabeth Macarthur +Elizabeth Ridge +Elizabeth River +Elizabeth Slinger +Elizia +Eljays +Eljer +Elk +Elk Crest +Elk Grove +Elk Hills +Elk Horn +Elk Lick +Elk Mar +Elk Point +Elk Run +Elk Spring +Elka +Elkan +Elker +Elkgrove Township +Elkhart +Elkhorn +Elkhorn Manor +Elkin +Elkington +Elkins +Elkland +Elkmont +Elko +Elkridge +Elkridge Heights +Elkridge Landing +Elks +Elkstone +Elkton +Elkwood +Ell +Ella +Ellaline +Ellalong +Ellam +Elland +Ellard +Ellbank +Ellbourne +Elle +Ellege +Ellen +Ellen Terry +Ellen Webb +Ellena +Ellenbrook +Ellendale +Ellenel +Ellenmere +Ellenor +Ellensue +Ellenton +Ellentree +Ellenwhorne +Ellenwood +Elleray +Ellerbe +Ellerbie +Ellerbrook +Ellerby +Ellerdale +Ellerdine +Ellergreen +Ellerhausen +Ellerhorst +Ellerker +Ellerman +Ellers +Ellerslee +Ellerslie +Ellert +Ellerton +Ellery +Elles +Ellesborough +Ellesemere +Ellesfield +Ellesmere +Ellestere +Ellestuen +Ellet +Ellice +Ellicott +Ellicott Woods +Ellie +Elliman +Ellin +Ellinger +Ellingfort +Ellingham +Ellingson +Ellington +Ellingwood +Ellinwood +Elliot +Elliot Ranch +Elliott +Elliott Av +Elliott Ranch +Ellis +Ellis Farm +Ellis Johnson +Ellisen +Ellisfield +Ellison +Ellisville +Elliswick +Ellita +Ellithorpe +Ellman +Ellmar Oaks +Ellmore +Ellmyer +Ellor +Ellora +Ells +Ellsberg +Ellsmere +Ellsmore +Ellswood +Ellsworth +Ellwell +Ellwood +Ellyn +Ellyridge +Ellzey +Elm +Elm Beds +Elm Brook +Elm Creek +Elm Creet +Elm Crest +Elm Farm +Elm Green +Elm Grove +Elm Hill +Elm Knoll +Elm Lawn +Elm Lodge +Elm Park +Elm Ridge +Elm Rock +Elm Sea +Elm Top +Elm Tree +Elm View +Elma +Elman +Elmang +Elmar +Elmbank +Elmbark +Elmbourne +Elmbridge +Elmbrook +Elmcrest +Elmcroft +Elmdale +Elmdene +Elmdon +Elmdorf +Elmendorf +Elmer +Elmer F Hagner +Elmer School +Elmers +Elmers End +Elmerside +Elmesmere +Elmet +Elmete +Elmfield +Elmgate +Elmgrove +Elmhirst +Elmhurst +Elmington +Elminya +Elmira +Elmire +Elmlea +Elmleaf +Elmley +Elmo +Elmont +Elmoor +Elmora +Elmore +Elmridge +Elmroyd +Elms +Elms Farm +Elms Park +Elmscott +Elmscroft +Elmsdale +Elmsfield +Elmsford +Elmshaven +Elmside +Elmsleigh +Elmsmere +Elmstead +Elmstone +Elmstone Hole +Elmstree +Elmstreet +Elmswood +Elmsworth +Elmton +Elmtree +Elmview +Elmwood +Elmwood Farm +Elmwood Park +Elmwynd +Elna +Elnew +Elnido +Elnoka +Elnor +Elnora +Elodie +Eloise +Elon +Elonera +Eloora +Elora +Elouera +Eloura +Elphick +Elphinstone +Elphistone +Elray +Elrene +Elridge +Elrington +Elrod +Elrose +Elroy +Elsa +Elsbeth +Elsbree +Elsdale +Elsden +Elsdon +Elsen +Elsenham +Elsenwood +Elsham +Elsholz +Elsie +Elsie Mae +Elsie Maud +Elsiedene +Elsinge +Elsinoor +Elsinor +Elsinore +Elskip +Elsley +Elsma +Elsmere +Elsmore +Elsom +Elson +Elsona +Elspeth +Elstar +Elstead +Elsted +Elston +Elstow +Elstree +Elsway +Elswick +Elsworth +Elsworthy +Elsynge +Elterwater +Eltham +Eltham Church High +Eltham Green +Eltham Palace +Elthiron +Elthorne +Eltinge +Eltingville +Eltisley +Elton +Elton Farm +Elton Vale +Eltringham +Elva +Elvans +Elvas +Elvaston +Elvaton +Elvaton Towne +Elveden +Elvedon +Elven +Elvendon +Elvera +Elverland +Elverson +Elverston +Elverta +Elverton +Elves +Elvessa +Elvet +Elvetham +Elvia +Elvies +Elvin +Elvina +Elvington +Elvino +Elvir +Elvira +Elvis +Elvstrom +Elward +Elway +Elwell +Elwern +Elwick +Elwin +Elwood +Elwyn +Ely +Elyard +Elyne +Elyse +Elysian +Elysian Fields +Elysium +Elystan +Elzer +Elzey +Em +Emack +Emado +Emalon +Emami +Emanuel +Emaron +Emba +Embankment +Embarcadero +Embarcadero North +Embarcadero South +Embassy +Embden +Embee +Ember +Ember Farm +Embercourt +Emberdale +Embers +Emblem +Embleton +Embroidery +Embry +Embry Farm +Emden +Emegency +Emelia +Emeline +Emer +Emerad +Emerald +Emerald Bay +Emerald Chase +Emerald Cove +Emerald Crest +Emerald Forest +Emerald Green +Emerald Grove +Emerald Hill +Emerald Hills +Emerald Isle +Emerald Lake +Emerald Oak +Emerald Park +Emerald Pointe +Emerald Pool +Emerald Ridge +Emerald Rock +Emerald Vista +Emerald Wood +Emergency +Emergency Access +Emeric +Emerick +Emerson +Emerson Gardens +Emerson Valley +Emersons +Emerstan +Emert +Emerton +Emery +Emery Bay +Emery Hill +Emery Village +Emeryn +Emes +Emigh +Emigrant Gap +Emil +Emilia +Emilie +Emiline +Emilio +Emilissa +Emily +Emily Clarke +Emily Dickinson +Emily Jeffers +Emilys +Emington +Emjay +Emkay +Emley +Emlong +Emlyn +Emma +Emma Lee +Emmaline +Emmanual +Emmanuel +Emmanuel Church +Emmaton +Emmaus +Emmbrook +Emme +Emmeline +Emmer Green +Emmerick +Emmers +Emmerson +Emmert +Emmet +Emmet Hill +Emmet Roche +Emmetsburg +Emmett +Emmetts +Emmetts Farm +Emmitt +Emmons +Emmons Canyon +Emmonsdale +Emmott +Emms +Emo +Emond +Emory +Emory Church +Emory Grove +Emperor +Empire +Empire Builder +Empire Mine +Empire Tract +Empire Wharf +Empoli +Emporia +Empress +Empson +Empty Song +Emrol +Emroy +Emshee +Emsworth +Emu +Emu Plains +Emwood +Ena +Enatai +Enborg +Enborn +Enbrook +Encanto +Encerti +Enchanted +Enchanted Forest +Enchantment +Enchanto Vista +Encima +Encina +Encina Grande +Encinal +Encino +Encinosa +Enclave +Enclosure +Encore +Encounter +End +End View +Endean +Endeavor +Endeavour +Endell +Enderby +Enderley +Enders +Endersby +Endicott +Endlebury +Endleigh +Endlesham +Endlich +Endmoor +Endo +Endon +Endor +Endow +Endres +Endriss +Endsleigh +Endview +Endwell +Endwood +Endymion +Enea +Energy +Energy Park +Enes +Enesco +Enfield +Enfield Church +Enfield Park +Enford +Enfrente +Engadine +Engel +Engelhard +Engelke +Engelmann Oak +Engert +Engesta +Engine +Engine House +Engineer +Engineers +England +Englands +Engle +Englefield +Englehardt +Englehart +Englehutt +Engleman +Englemere +Engler +Englert +Engleside +Englewood +Englhardt +Engliff +English +English Bay +English Chestnut +English Consul +English Hills +English Holly +English Morning +English Oak +English Oaks +English Prairie +English Rows +English Turn +Englishman +Englishtown +Englishwood +Englorie Park +Engracia +Enid +Enloe +Enlund +Enman +Enmore +Ennabrock +Ennalls +Ennals +Enneking +Ennell +Ennerdale +Ennersdale +Enness +Enning +Ennis +Ennismore +Enoch +Enochs +Enoggera +Enola +Enon +Enos +Enrica +Enrico +Enright +Ensbrook +Ensell +Ensenada +Ensfield +Ensign +Ensleigh +Enslen +Enslin +Enstone +Enstrom +Enterdent +Enterprise +Enterprise Park +Entertainment +Entin +Entomology +Entrada +Entrance +Entranda +Entrata +Entre +Entrevaux +Entry +Entwisle +Entwistle +Entwistle Hall +Enveart +Envee +Enver +Envill +Enville +Environs +Envoy +Enzenauer +Enzo +Eola +Epacris +Epaul +Ephriam +Epic +Epirus +Episcopal Hs Service +Epling +Eppard +Epping +Epping Farms +Epping Forest +Epping New +Eppirt +Epple +Eppleworth +Eppling +Epps +Epsam +Epsilon +Epsom +Epson +Epstein +Epworth +Equality +Equestrian +Equine +Equitable +Equity +Equus +Era +Erang +Erasmus +Erb Farm +Erba +Erben +Ercall +Ercama +Ercell +Ercildoune +Ercolani +Erconwald +Erebus +Eresby +Ereswell +Erhardt +Eric +Eric Clarke +Eric Cooper +Eric Felton +Eric Green +Erica +Erica Hill +Erick +Ericka +Erickson +Erico +Ericon +Ericson +Ericsons +Ericsson +Eridge +Erie +Eriff +Erik +Erika +Eriks +Erin +Erina +Erins Glen +Erins Ridge +Eriswell +Erita +Erith +Erith High +Erland +Erlandson +Erlanger +Erle Havard +Erledon +Erleigh +Erleigh Court +Erles +Erlesmere +Erlin +Erlington +Erma +Erman +Ermen +Ermina +Ermine +Ermington +Erna +Ernal +Ernald +Ernan +Ernel +Ernest +Ernesti +Ernestine +Ernie +Ernie Pyle +Ernle +Ernlouen +Ernocroft +Ernst +Ernst Chain +Ernston +Ernwood +Eros +Erpingham +Errang +Errante +Errica +Errico +Erriff +Errington +Errol +Errol Flynn +Erroll +Errwood +Erskine +Erskine Park +Erskineville +Erta +Ertle +Ertman +Ertter +Erudo +Ervilla +Erville +Ervin Industrial +Ervine +Erving +Erwin +Erwin Park +Esa +Esberg +Escalero +Escalle +Escallonia +Escalon +Escalona +Escamilla +Escanaba +Escanyo +Escatta +Eschenburg +Escher +Eschinger +Eschol +Eschol Park +Escobar +Escobita +Escolta +Escombe +Escondida +Escondido +Escondito +Escot +Escover +Escuela +Esdaile +Esek Hopkins +Esfahan +Eshald +Eshcol +Esher +Esher Green +Esher Park +Esher Place +Eshleman +Esholt +Esk +Eskdale +Eskin +Eskow +Eskridge +Esler +Eslin +Esme +Esmeralda +Esmeyer +Esmond +Esmont +Espanola +Esparito +Esparto +Espee +Esperanza +Espey +Espie +Espinosa +Esplanade +Esplande +Esplin +Esposito +Espy +Esquina +Esquire +Esquivel +Essanay +Essella +Essen +Essenay +Essenden +Essendene +Essendine +Essendon +Essenton +Esser +Essetford +Essex +Essex Center +Essex Green +Essex Hall +Essex Heights +Essex Park +Essex View +Esshire +Essian +Essie +Essiembre +Essilia +Essington +Esslog +Esta +Estabrook +Estabueno +Estacada +Estancia +Estate +Estates +Estates View +Estcots +Estcourt +Este +Este Madera +Esteban +Estee +Esteem +Estel +Estella +Estelle +Estelle Marsan +Esten +Estepa +Ester +Esterbrook +Esterbrooke +Esterlee +Esterly Oaks +Estero +Esterwood +Estes +Estey +Esther +Esthers +Estherwood +Esthwaite +Estler +Estling Lake +Estok +Eston +Estona +Estonfield +Estonia +Estrada +Estrade +Estralita +Estreham +Estrella +Estridge +Estuary +Estudillo +Esty +Esty Farm +Eswick +Esworthy +Eswyn +Eta +Etchells +Etcheverry +Etchingham +Etchingham Park +Etchison +Etela +Eternal Rings +Eternity +Etham +Ethan +Ethan Allen +Ethel +Ethel Porter +Ethelbert +Ethelburga +Ethelden +Etheldene +Etheldore +Ethell +Ethelridge +Ethelton +Etherden +Etheridge +Etherstone +Ethie +Ethier +Ethnam +Ethnard +Ethne +Ethridge +Ethrlbert +Ethronvi +Ethyl +Etloe +Etna +Eton +Eton College +Eton High +Eton Hill +Eton Manor +Eton Wick +Eton on Oxford +Etowah +Etre +Etruria +Etruscan +Etsinger +Etta +Ettalong +Ettersberg +Ettie +Ettl +Ettlesdale +Ettrick +Etuird +Etvile +Etzel +Eubank +Eubanks +Eucalyptas +Eucalyptus +Eucalyptus Knoll +Eucker +Eucla +Euclid +Eucra +Eucumbene +Eudo +Eudon +Eugene +Eugenes Prospect +Eugenia +Eugenia Park +Eulabah +Eulalia +Eulalie +Eulbertie +Eulda +Eulner +Eulow +Eunice +Eurabalong +Eurabba +Eurabbie +Euralla +Eureka +Eureka Canal +Eureka Canyon +Eurella +Eurimbla +Eurobin +Euroka +Eurolink Way Milton +Eurong +Europa +Europa Park +Europe +Euryalus +Eustace +Eustice +Eustis +Euston +Eutaw +Eutaw Forest +Euterpe +Euthella +Eva +Eva Gude +Evadna +Evaline +Evan +Evana +Evandale +Evangel +Evangeline +Evangelist +Evans +Evans Black +Evans Farm +Evans Ford +Evans Mill +Evans Pond +Evans Ridge +Evansdale +Evanston +Evanston Central +Evanston Davis +Evanston Elgin +Evanston Main +Evanstone +Evanswood +Evar +Evarts +Evas +Eve +Eveas +Eveleigh +Eveleth +Evelina +Eveline +Evelyn +Evelyn Denington +Evelyn Gingell +Evelyn Wood +Evelyns +Evemarie +Even +Evendale +Evenden +Evenfall +Evening +Evening Hill +Evening Primrose +Eveningside +Evenlode +Evens +Evensong +Evenstar +Evenston +Everard +Everberg +Everd +Everdale +Everdean +Everdell +Everell +Everendon +Everest +Everest Peak +Everett +Everett Farm +Everett Gaylord +Everett Paine +Everett School +Everette +Everglade +Everglades +Everglades Park +Evergreen +Evergreen Forest +Evergreen Mills +Evergreen Point +Evergreen Ridge +Everhill +Everilda +Evering +Everington +Everit +Everitt +Everlasting +Everleigh +Everley +Everly +Everlyn +Evermay +Evers +Eversfield +Eversholt +Evershot +Everside +Eversleigh +Eversley +Eversley Park +Eversole +Everson +Everst +Evert +Everthorpe +Everton +Everts +Everview +Everwood +Every +Evesboro +Evesham +Evesson +Eveton +Evey +Evian +Evolution +Evon +Evona +Evonne +Evonshire +Evora +Evry +Ewald +Ewan +Ewart +Ewart Dale +Ewe +Ewehurst +Ewell +Ewell Court +Ewell Downs +Ewellhurst +Ewen +Ewens +Ewenton +Ewer +Ewhurst +Ewing +Ewood +Ewrin +Ews Woods +Ewshot +Exbourne +Exbury +Excaliber +Excalibur +Excange +Exceller +Excelsior +Excelso +Exchange +Excy +Executive +Executive Park +Exedown +Exeforde +Exell +Exeter +Exeter Square +Exeter Way Pagnell +Exeter on Oxford +Exfair +Exford +Exhibition +Exira +Exit +Exley +Exmoor +Exmoor Oaks +Exmore +Exmouth +Exner +Exning +Exodus +Exon +Expando +Experiment +Exploration +Explorer +Explorers +Expo +Export +Exposition +Express +Expressway +Extension +Extension Center +Exterior +Exton +Eyam +Eycott +Eye +Eyebrook +Eyelet +Eyet +Eyhorne +Eyhurst +Eylandt +Eyles +Eyncourt +Eynella +Eynford +Eynham +Eynsford +Eynsham +Eynswood +Eyre +Eyres +Eyrie +Eyston +Eythorne +Ezel +Ezie +Ezra +Ezzy +F A Orechio +F Fernwood +F Jellman +F Leeds Infirmary +F Line +F Morley Commercial +F R +F S Mathewson +FDR +Faben +Fabens +Faber +Fabian +Fabiano +Fabien +Fabio +Fabiola +Fable +Fabor +Fabry +Fabyan +Facade +Facchina +Facel Vega +Facendini +Facet +Fackenden +Factor +Factory +Factory Mutual +Factory Pond +Factory Shops +Faculty +Fadem +Fado +Fagan +Fagen +Fagerness Point +Faggoters +Faggs +Fagin +Fagley +Fagnall +Fagundes +Fagus +Fahden +Fahey +Fahms +Fahrner +Fahy +Faigle +Faile +Failsworth +Fair +Fair Acres +Fair Briar +Fair Elms +Fair Garden +Fair Greene +Fair Haven +Fair Heights +Fair Hill +Fair Knoll +Fair Lakes +Fair Lakes Promenade +Fair Lawn +Fair Meadow +Fair Meadows +Fair Oak +Fair Oaks +Fair Play +Fair Ponds +Fair Ranch +Fair Ridge +Fair Valley +FairView +Fairacre +Fairacres +Fairbairn +Fairbank +Fairbanks +Fairbault +Fairbluff +Fairbottom +Fairbourn +Fairbourne +Fairbridge +Fairbrook +Fairbrother +Fairburn +Fairbury +Fairby +Faircastle +Fairchester +Fairchild +Fairchildes +Faircliff +Fairclough +Faircrest +Faircross +Fairdale +Fairdell +Fairdene +Faireno +Fairey +Fairfax +Fairfax Corner +Fairfax Corner West +Fairfax County +Fairfax Farms +Fairfax Hunt +Fairfax Metro +Fairfax Ridge +Fairfax Village +Fairfield +Fairfield House +Fairfield Loop +Fairfields +Fairfoot +Fairford +Fairfowl +Fairgate +Fairglen +Fairgrave +Fairgreen +Fairground +Fairgrounds +Fairgrove +Fairham +Fairhauser +Fairhaven +Fairhill +Fairhills +Fairholm +Fairholme +Fairholt +Fairhomes +Fairhope +Fairhunt +Fairhurst +Fairkytes +Fairlaine +Fairlake +Fairlamb +Fairland +Fairland Park +Fairlands +Fairlane +Fairlawn +Fairle +Fairlea +Fairlead +Fairlee +Fairleigh +Fairless +Fairlie +Fairlight +Fairlop +Fairly +Fairlyn +Fairman +Fairmans +Fairmark +Fairmead +Fairmeadow +Fairmeadows +Fairmede +Fairmile +Fairmile Park +Fairmont +Fairmont Heights +Fairmount +Fairoak +Fairoaks +Fairorchard +Fairpine +Fairport +Fairridge +Fairs +Fairseat +Fairsky +Fairstead +Fairstead Hall +Fairtown +Fairtree +Fairtrough +Fairview +Fairview Beach +Fairview Circle +Fairview Cottage +Fairview Estates +Fairview Park +Fairview Vista +Fairview Woods +Fairwater +Fairwaters +Fairway +Fairway Entrance +Fairway Glen +Fairway Hills +Fairway Knoll +Fairway Ridge +Fairway Two +Fairway View +Fairways +Fairways Edge +Fairweather +Fairwell +Fairwind +Fairwinds +Fairwood +Fairwyn +Fairy +Fairy Bank +Fairy Bower +Fairyland +Fairytale +Fairywell +Faith +Faith Baptist Church +Faithfull +Faithorn +Faithorne +Faitoute +Falaise +Falcato +Falcon +Falcon Greens +Falcon Lakes +Falcon Meadow +Falcon Park +Falcon Point +Falcon Ridge +Falcon View +Falconbridge +Falconcrest +Falcone +Falconer +Falconers +Falconwood +Falda +Faldo +Fales +Falesky +Faletto +Falfield +Falgren +Falkerners +Falkirk +Falkland +Falkland Park +Falklands +Falkner +Fall +Fall Birch +Fall Brook +Fall Creek +Fall River +Fallard +Fallbrook +Fallen Leaf +Fallen Oak +Fallen Timbers +Fallenleaf +Faller +Falleri +Fallfax +Fallgold +Fallgren +Fallibroome +Falling +Falling Brook +Falling Creek +Falling Green +Falling Leaf +Falling Run +Falling Water +Fallingtree +Fallman +Fallon +Fallow +Fallow Court +Fallow Fields +Fallowfield +Fallowfields +Falls +Falls Bridge +Falls Farm +Falls Lake +Falls Pointe +Falls Reach +Falls Run +Fallsbrook +Fallscliff +Fallsgrove +Fallston +Fallstone +Fallsway +Fallswood +Fallview +Fallwater +Fallway +Fallwind +Fallwood +Falmead +Falmer +Falmore +Falmouth +Falmouth on Oxford +Falshaw +Falson +Falstaff +Falster +Falston +Falstone +Faltings +Falulah +Falworth +Fambridge +Famet +Family +Family Acres +Family Farm +Fams +Famularo +Fan +Fanchon +Fanconi +Fancroft +Fane +Faner +Faneuff +Faneuil +Fanfair +Fanhams +Fanhams Hall +Fann +Fannen +Fanners +Fanning +Fannon +Fanny +Fano +Fanok +Fans +Fanshaw +Fanshawe +Fanshaws +Fant +Fantail +Fantasia +Fanthorpe +Fantome +Fanton Hall +Fanum +Fanwood +Fanyon +Far +Far Cromwell +Far Hill +Far Hills +Far Reach +Far Rockaway +Far Rockaway – Mott +Far View +Far Well +Far Woodseats +Fara +Faraday +Farah +Farallon +Farallone +Farallones +Faran +Faraone +Farasi +Faraway Hills +Farber +Farber Hill +Farbrook +Farcroft +Fardale +Farden +Fareham +Farel Dae +Farendon +Farese +Farewell +Farfield +Fargher +Fargo +Fargrove +Farham +Farhan +Farhill +Faria +Faribault +Faricy +Farina +Farinella +Faringdon +Faringford +Farington +Fariola +Faris +Faris Barn +Fariss +Farjeon +Farland +Farlands +Farlane +Farleigh +Farleigh Court +Farless +Farley +Farley Brook +Farley Heath +Farley Pond +Farlie +Farlington +Farlow +Farlton +Farm +Farm Bridge +Farm Bureau +Farm Credit +Farm Creek +Farm Crest +Farm Gate +Farm Glen +Farm Haven +Farm Hill +Farm Hills +Farm House +Farm Line +Farm Market +Farm Mill +Farm Pond +Farm River +Farm Trace +Farm View +Farman +Farmbridge End +Farmbrook +Farmcombe +Farmcrest +Farmdale +Farmedge +Farmer +Farmerbrook +Farmers +Farmers Cliff +Farmfield +Farmgate +Farmhaven +Farmhill +Farmhouse +Farmilo +Farmin +Farmingdale +Farmingham +Farmington +Farmington Creek +Farmington Lakes +Farmland +Farms +Farmside +Farmstead +Farmview +Farmwell +Farmwood +Farnaby +Farnam +Farnan +Farnborn +Farnborough +Farncombe +Farndale +Farndon +Farne +Farnell +Farnes +Farnesdown +Farness +Farney +Farnham +Farnham Park +Farningham +Farningham Hill +Farnley +Farnol +Farnsworth +Farnum +Farnworth +Faro +Faroe +Farquhar +Farquharson +Farr +Farr Ranch +Farrabow +Farraday +Farragot +Farragut +Farrahs Calvary +Farran +Farrance +Farrand +Farrandale +Farrant +Farrar +Farrar Farm +Farrara +Farrari +Farravet +Farrcroft +Farrel +Farrell +Farrells +Farrelly +Farrellys +Farren +Farrer +Farrier +Farrier Point +Farriers +Farringdon +Farringdon Service +Farrington +Farris +Farrol +Farrow +Farrowdene +Farrs +Farrwood +Farside +Fartherwell +Farthing +Farthing Green +Farthing Park +Farthingale +Farthingham +Fartown Bankhouse +Fartown Hillthorpe +Farver +Farview +Farvue +Farwell +Farwood +Fashion +Fashion Island +Fashoda +Fassett +Fassetts +Fassler +Fast +Fastnet +Father Burns +Father Capodanno +Father Carney +Father Hayes +Father Herlihy +Father Hurley +Father Morissette +Father Urban +Father White +Fatherson +Fathke +Fathom +Fatima +Fattoria +Faubert +Fauce +Faucett +Fauchons +Fauconberg +Faught +Faulds +Faulk +Faulkbourne +Faulkenhurst +Faulkner +Faulkner Hill +Faulkners +Faun Bar +Fauna +Faunce +Faunes +Fauquier +Faust +Faustina +Fauvel +Faux +Fava +Favart +Favell +Faverolle +Faversham +Favonia +Favor +Favorite +Favre +Favre Ridge +Fawborough +Fawcett +Fawe +Fawe Park +Fawell +Fawhelm +Fawkes +Fawkham +Fawkham Green +Fawley +Fawley Bottom +Fawn +Fawn Creek +Fawn Crossing +Fawn Glen +Fawn Hill +Fawn Hollow +Fawn Lake +Fawn Meadow +Fawn Park +Fawn Ridge +Fawn Trail +Fawn Wood +Fawnbrake +Fawnbrook +Fawncrest +Fawndale +Fawnhill +Fawnridge +Fawsett +Faxfield +Faxon +Faxon Park +Faxton +Fay +Fay Mountain +Fay Ranch +Fay Rotenberg +Fayann +Faye +Faye Memorial +Faye Park +Fayerweather +Fayette +Fayetteville +Faygate +Fayland +Fayrewood +Fays +Fayson Lake +Fayston +Faywood +Fazio +Fe Carter +Feafel +Fearing +Fearless +Fearn +Fearnhead +Fearnley +Fearns +Fearnville +Fearnville Dib +Fearon +Feather +Feather Bed +Feather Creek +Feather River +Feather Rock +Feather Sound +Featherbank +Featherbed +Featherby +Feathercombe +Featherleigh +Featherock +Feathers +Featherstall +Featherston +Featherstone +Featherwood +Featley +Feature +February +Fechet +Fechter +Fed Ex +Federal +Federal Eagle +Federal Hill +Federal Signal +Federal Systems Park +Federalist +Federation +Federspiel +Fedor +Fedore +Fedrick Ranch +Fedsco +Fee +Fee Farm +Feece +Feeches +Feeder +Feedranchs +Feehanville +Feeks +Feeley +Feeney +Feeny +Fegan +Fehler +Fehon +Fehren +Feickert +Feinberg +Fela +Felbridge +Felbrigg Hall +Felbrigge +Felch +Felcot +Felcott +Felcourt +Feld +Felday +Felden +Felder +Felderland +Feldin +Feldmeyer +Feldmeyers +Feldom +Feldon +Feldott +Feldspar +Felhampton +Felice +Felicia +Felicidad +Felipe +Felix +Felixtowe +Feliz +Felker +Fell +Fella +Fellbrigg +Fellemore +Feller +Fellers +Fellner +Fellow Green +Fellowes +Fellows +Fellowship +Fellpark +Fells +Fells Manor +Fellscrest +Fellsmere +Fellsview +Fellsway +Fellsway W opp. Elm +Fellswood +Felltop +Felmersham +Felmingham +Fels Farm +Felsberg +Felsham +Felskirk +Felspa +Felstead +Felsted +Felsview +Felt +Felta +Felten +Felter +Feltes +Feltham +Feltham Hill +Felthorpe +Feltl +Felton +Felton Empire +Felton Quarry +Feltz +Felwood +Femia +Femleaf +Femoyer +Fen +Fen Pond +Fenbrook +Fence +Fencegate +Fenceline +Fencepose +Fenchurch +Fencl +Fencourt +Fencsak +Fendale +Fendall +Fendant +Fender +Fendyke +Fenelon +Fenemore +Fengates +Fenham +Fenian +Fenimore +Fenley +Fenlon +Fenmere +Fenmore +Fenn +Fennel +Fennell +Fennels +Fennels Farm +Fenner +Fenner Grant +Fennes +Fennfields +Fenning +Fenno +Fenns +Fenny +Fennycroft +Fenor +Fensalir +Fensmere +Fensome +Fenstanton +Fensview +Fentem +Fenton +Fenton Wood +Fentree +Fentress +Fentum +Fenview +Fenway +Fenwick +Fenwood +Fenworth +Fenz +Feramin +Ferber +Ferbusson +Ferdinand +Ferdinand Day +Ferdon +Fergerson +Fergus +Ferguson +Fergusson +Feri +Ferigo +Ferland +Ferme Park +Fermer +Fermery +Fermi +Fermo +Fermont +Fermor +Fermoy +Fermoy Heights +Fern +Fern Bank +Fern Canyon +Fern Creek +Fern Dell +Fern Hill +Fern Hollow +Fern Lea +Fern Leaf +Fern Park +Fern Ridge +Fern River +Fern Valley +Fernald +Fernally +Fernandes +Fernandez +Fernando +Fernbank +Fernbanks +Fernberry +Fernboro +Fernbray +Fernbrook +Ferncliff +Ferncliffe +Fernclough +Ferncote +Ferncourt +Ferncroft +Ferndale +Ferndale Hilbert +Ferndale Woods +Ferndell +Fernden +Ferndene +Ferndown +Ferne +Fernedge +Ferney +Ferney Field +Ferneydale +Fernfield +Ferngate +Fernglade +Fernglen +Ferngrove +Fernhall +Fernham +Fernhead +Fernhill +Fernhoff +Fernhollow +Fernholme +Fernhurst +Fernhust +Fernie +Fernish +Fernlea +Fernleaf +Fernleigh +Fernley +Fernmont +Fernote +Fernridge +Ferns +Fernsbury +Fernshaw +Fernshire +Fernside +Fernthorpe +Ferntower +Ferntree +Fernvale +Fernview +Fernville +Fernwald +Fernwood +Fero +Ferol +Feronia +Ferrabetta +Ferran +Ferrara +Ferrari +Ferrari Creek +Ferraris +Ferraro +Ferrecchia +Ferreira +Ferrelo +Ferren +Ferrera +Ferrero +Ferrers +Ferrestone +Ferri +Ferrier +Ferrin +Ferris +Ferriter +Ferro +Ferron +Ferry +Ferry Crossing Point +Ferry Farms +Ferry Hill +Ferry Landing +Ferry Line +Ferry Point +Ferrybridge +Ferryhill +Ferrymead +Ferryville +Ferson Creek +Ferson Woods +Fertada +Fertado +Fertelli +Fertiledale +Feruzza +Ferwood +Feryby +Fescue +Fessenden +Fessenden Hill +Fesseneva +Fessler +Festa +Festa Agilio +Festal +Festival +Fetcham Common +Fetcham Park +Fetherston +Fetlock +Fetter +Fetterly +Fetters +Fettes +Fetyko +Fetz +Fetzer +Feustal +Fever +Fewings +Fewston +Fewtrell +Fey +Ff +Ffinch +Fiarway +Fiat +Fibich +Ficarelle +Fichter +Fiday +Fiddens Wharf +Fiddicroft +Fiddle +Fiddlebridge +Fiddler +Fiddlers +Fiddlers Green +Fiddlers Green Spur +Fiddlers Hill +Fiddlesticks +Fiddyment +Fidler +Fiedler +Field +Field Common +Field Crest +Field Daisy +Field Encampment +Field End +Field Gate +Field Head +Field House +Field Lark +Field Master +Field Mill +Field Office +Field Point +Field Pond +Field Vale +Field View +Field Way Hill +Field of Mars +Fieldale +Fieldbank +Fieldbrook +Fieldcommon +Fieldcreek +Fieldcrest +Fielden +Fieldend +Fielder +Fieldfair +Fieldfare +Fieldgate +Fieldhead +Fieldhead Longwood +Fieldhouse +Fielding +Fieldings +Fieldmere +Fieldmont +Fieldpoint +Fields +Fields Brigade +Fields Crown Farm +Fields End +Fields Farm +Fields First Federal +Fields New +Fields Pond +Fieldsend +Fieldside +Fieldsman +Fieldston +Fieldstone +Fieldthorn +Fieldvale +Fieldview +Fieldway +Fieldway Lodge +Fieldwood +Fieldwork +Fiene +Fierro +Fiesta +Fife +Fifer +Fifers +Fifield +Fifteenth +Fifth +Fifth Cross +Fig +Fig Tree +Figard +Figg +Figges +Figone +Figtree +Figueroa +Figura +Figurea +Figurehead +Fiji +Fike +Filament +Filante +Filarete +Filbert +Filbro +Filby +Filer +Filey +Filice +Filip +Filipe +Filkins +Fillat +Fille +Fillebrook +Fillets Farm +Filley +Fillingame +Fillingfir +Fillion +Fillippelli +Fillmer +Fillmore +Filly +Filmer +Filmore +Filmorehill +Filomena +Filston +Filter Bed +Filter Plant +Filterbed +Finborough +Fincastle +Finch +Finchale +Fincham End +Finchampstead +Fincharn +Finchdale +Finches +Finchleigh +Finchley +Finchmead +Finck +Finden +Finders +Findhorn +Findland +Findlay +Findlays +Findley +Findon +Fine +Fine Bush +Fine Farms +Fingal +Finger +Fingerboard +Fingest +Finghall +Fingrith Hall +Finian +Finings +Finisterre +Fink +Finkbohner +Finkelstein +Finkin +Finkle +Finland +Finlandia +Finlaw +Finlay +Finlays +Finlayson +Finley +Finley Ridge +Finlow Hill +Finmor +Finn +Finn Farm +Finn S +Finnamore +Finnegan +Finnell +Finney +Finnie +Finnigan +Finningley +Finnis +Finns +Finnway +Finny Bank +Finnymore +Finrud +Finsbury +Finsbury Park +Finsbury Park Rock +Finschhafen +Finsen +Finster +Finstock +Fintonagh +Fintry +Finucane +Finway +Finwell +Fiona +Fiord +Fiore +Fiorello +Fiorenza +Fiori +Fir +Fir Bank +Fir Cottage +Fir Grange +Fir Ridge +Fir Toll +Fir Tree +Firacre +Firbank +Firbeck +Fircrest +Fircroft +Firdale +Fire +Fire Academy +Fire Access +Fire Barn +Fire Fly +Fire House +Fire Island +Fire Poppy +Fire Rock +Fire Science +Fireball +Firebird +Firebrand +Firebrick +Firecrest +Firecut +Firefly +Firefly Hill +Fireglow +Firehouse +Firelight +Firemans Memorial +Firenza +Firenze +Fireplace +Fireside +Firestone +Firethorn +Firethorne +Firetrail +Firfield +Firglade +Firgrove +Firham Park +Firhaven +Firlands +Firloch +Firma +Firmin +Firmingers +Firs +Firs Park +Firs View +Firsby +Firsgrove +First +First Cross +First Farm +First Fleet +First Fork +First Oak +First Parish +First Summer +Firstfield +Firstore +Firswood +Firth +Firth Knoll +Firth of Tae +Firthcliffe +Firtree +Firtree Park +Firvale +Firview +Firwood +Firwoods +Firzen +Fiscal +Fischer +Fischrupp +Fish +Fish Brook +Fish Farm +Fish Gultch Fire +Fish Hawk +Fish House +Fish Point +Fish Ranch +Fishback +Fishbourne +Fishburn +Fishburne +Fishel +Fisher +Fisher Crescent +Fisher Hawk +Fisher Hill +Fisher Woods +Fisherfield +Fisherman +Fishermans +Fishermore +Fishers +Fisherton +Fishery +Fishing +Fishing Creek +Fishing Point +Fishkill +Fishmarket +Fishpool +Fishtorn +Fishwick +Fisk +Fisk Mill +Fiske +Fiske Mill +Fiske Pond +Fiskeville +Fistelera Ridge +Fistor +Fistral +Fitch +Fitch Farm +Fitch Hill +Fitch View +Fitchburg +Fitchdale +Fitchett +Fitchome +Fitchs Bridge +Fittleworth +Fitton +Fitton Hill +Fitz +Fitzalan +Fitzallen +Fitzer +Fitzgeorge +Fitzgerald +Fitzgibbon +Fitzgilbert +Fitzhardinge +Fitzhenry +Fitzherbert +Fitzhugh +Fitzilian +Fitzjames +Fitzjohn +Fitzjohns +Fitzmaurice +Fitzneal +Fitzoatrick +Fitzpatrick +Fitzrandolph +Fitzroy +Fitzsimmons +Fitzsimons +Fitzstephen +Fitzuren +Fitzwalter +Fitzwarren +Fitzwater +Fitzwilliam +Fiume +Five Acres +Five Ash +Five Bells +Five Canyons +Five Elms +Five Fields +Five Forks +Five Gates +Five Hawks +Five Island +Five Mile +Five Mile River +Five Oak +Five Oak Green +Five Oaks +Five Points +Five Wounds +Fiveash +Fiveways +Fjord +Flack +Fladbury +Fladgate +Flag +Flag City +Flag Day +Flag Harbor +Flag Hill +Flagcroft +Flagg +Flagg Creek +Flagg Hill +Flagg Wood +Flagger +Flaggler +Flagler +Flagmaker +Flagpole +Flagship +Flagstaff +Flagstone +Flaherty +Flake +Flaker +Flam +Flambard +Flambeau +Flamborough +Flame +Flame Tree +Flames +Flamewood +Flaming Arrow +Flaming Oak +Flamingo +Flamm Brook +Flamstead +Flamstead End +Flamsteadbury +Flamsted +Flamsteed +Flanagan +Flanagan Hill +Flanders +Flandrau +Flandreau +Flanigan +Flank +Flannel +Flannery +Flapjack +Flapper Fold +Flash +Flasner +Flass +Flat +Flat Hill +Flat Iron +Flat Meadow +Flat Rock +Flatback +Flatboat +Flatbush +Flater +Flatfield +Flatlands +Flatley +Flats +Flatts +Flatwood +Flaumont +Flaunden +Flavel +Flavell +Flavelle +Flavia +Flavius +Flax +Flax Hill +Flax Place The +Flax Pond +Flaxberry +Flaxcroft +Flaxen +Flaxfield +Flaxley +Flaxman +Flaxpond +Flaxton +Flaxwood +Flay +Fleabane +Fleagle +Fleece +Fleece Flower +Fleeming +Fleenor +Fleeson +Fleet +Fleet Thro +Fleethall +Fleets Cove +Fleets Point +Fleetwood +Fleishacker +Fleming +Fleming Hill +Flemings +Flemings Farm +Flemington +Flemingwood +Flemish +Flemming +Flemons +Flempton +Flers +Fletchall +Fletcher +Fletcher Farms +Fletcher Fold +Fletcher Hill +Fletchers +Fletchertown +Fletching +Fletsand +Flett +Fletton +Fleuette +Fleur De Lis +Fleur de Lis +Fleurbaix +Fleurs +Fleuti +Flewing +Flexbury +Flexford +Flexmere +Flichcroft +Flicker +Flickinger +Flide +Flight +Flight Crew +Flightime +Flightline +Flinders +Flinn +Flint +Flint Creek +Flint Farm +Flint Hill +Flint Lee +Flint Licke +Flint Locke +Flint Meadow +Flint Pond +Flint Rock +Flintcrest +Flintdale +Flintfeet +Flintfield +Flinthaven +Flintlock +Flintlocke +Flintlocke Ridge +Flintmont +Flinton +Flintonbridge +Flintridge +Flintrock +Flints Grove +Flintshire +Flintstone +Flintwood +Flitch +Flitt +Flitterbrook +Flittogate +Flitwick +Flixton +Flo +Float +Floating Leaf +Floatshall +Flock +Flockton +Flodden +Flomar +Flonun +Flood +Flood Spring +Flor +Flora +Flora Lee +Flora Linda +Flora Vista +Florabelle +Floradale +Floradora +Floral +Floral Park +Florales +Florance +Florek +Florence +Florence Park +Florencia +Florentia +Florentine +Flores +Floresta +Florey +Florfield +Florgate +Florham +Florian +Floribel +Floribuna +Floribunda +Florida +Florida Grove +Florido +Florimond +Florin +Florin Mall +Florin Perkins +Florin Wood +Florinda +Florine +Florio +Floris +Florissant +Florist +Floriston +Florita +Floritta +Florrie +Florsheim +Flory +Flosden +Floss +Flossie +Flossmoor +Flour Mill +Flournoy +Flow +Flower +Flower Blossom +Flower Garden +Flower Hill +Flower Valley +Flowerdale +Flowerden +Flowerfield +Flowering Cherry +Flowering Dogwood +Flowering Meadow +Flowering Pear +Flowering Plum +Flowering Tree +Flowermeadow +Flowerree +Flowers +Flowers Bottom +Flowerstone +Flowerwood +Flowing Well +Floyd +Floyd Brown +Floyd Hill +Floyds +Floyer +Fludyer +Fluid Power +Flume +Fluorine +Flurry +Flushcombe +Flushing +Flushing Hills +Flushing Pond +Fly Cloud +Flyaway Pond +Flyboat +Flying Cloud +Flying Fields +Flying Fish +Flying Mist +Flynn +Flynt +Flyway +Foal +Foam +Foamcrest +Fobbing +Fobney +Foch +Focha +Foden +Foerster +Fog +Fog Bank +Fogarty +Fogel +Fogelman +Fogg +Foggs +Foggy +Foggy Glen +Foghorn +Fogle +Fogo +Fokard +Foksville +Folcroft +Fold +Folders +Foldi +Folds +Foleshill +Foley +Foley Beach +Folger +Foliage +Folin +Folini +Foliot +Folk +Folkers +Folkes +Folkeston +Folkestone +Folkingham +Folkstone +Folland +Folle Blanche +Follen +Follet +Follett +Follette +Follin Farm +Follows +Folly +Folly Hall +Folly Hill +Folly Mill +Folly Orchard +Folly Pond +Follyfield +Folsom +Folsom Dam +Folsom Prison +Folsom Ranch +Foltz +Folwell +Fonblanque +Fonda +Fondant +Fondell +Fondiller +Foneswood +Fong +Fonick +Font +Font Hill +Fontainbleau +Fontainbleu +Fontaine +Fontainebleau Park +Fontana +Fontanelle +Fontanoso +Fontarabia +Fontayne +Fontenay +Fontenbleau +Fontenoy +Fontes +Fonthill +Fonti +Fontonett +Fontridge +Fontron +Fontwell +Food Center +Foodlink +Foodmart +Foolish Pleasure +Foord +Foot Hill +Foot of Bridgehead +Football +Footbury Hill +Foote +Foote Ranch +Footes +Foothill +Foothill Glen +Foothill Knolls +Foothill Oaks +Foothill Ranch +Foothill Vista +Foothills +Footpath +Foots Cray +Foots Cray High +Footscray +For Glen +Foran +Foray +Forbell +Forbes +Forbes Creek +Forbes Glen +Forbes Hill +Forbs +Forburg +Forbury +Forbush +Forbush Mill +Force +Force Green +Force Hill +Force Tube +Forcum +Ford +Ford Branch +Ford Hill +Ford Manor +Fordal +Fordbank +Fordbridge +Fordcombe +Fordcroft +Forde +Fordel +Fordham +Fordhook +Fordington +Fords +Fords Park +Fordson +Fordville +Fordway +Fordwells +Fordwich +Fordwych +Fordyce +Fordyke +Fore +Fore River +Forebury +Foregate +Foreland +Forelands +Foreman +Foremost Mountain +Forenza +Forepaugh +Foresdt +Forest +Forest Arms +Forest Beach +Forest Brook +Forest Cove +Forest Creek +Forest Crest +Forest Cross +Forest Dale +Forest Dell +Forest Edge +Forest End +Forest Farm +Forest Garden +Forest Gate +Forest Gate Green +Forest Glen +Forest Green +Forest Grove +Forest Hall +Forest Haven +Forest Hill +Forest Hills +Forest Hills Entrance +Forest Hollow +Forest Knoll +Forest Knolls +Forest Lake +Forest Lake Service +Forest Lawn +Forest Manor +Forest Meadow +Forest Mews +Forest Mill +Forest Mist +Forest Mount +Forest Oak +Forest Off Chesnut +Forest Park +Forest Prairie +Forest Preserve +Forest Ridge +Forest Run +Forest Side +Forest Spring +Forest Trail +Forest View +Forest Villa +Forest Walk +Forest Wood +Forest Woods +Forestburg +Forestdale +Forestedge +Forester +Foresters +Forestgrove +Foresthill +Forestlake +Foreston +Forestside +Forestvale +Forestview +Forestville +Forestville Meadows +Forestway +Forestwood +Forfar +Forge +Forge Bridge +Forge Hill +Forge Village +Forges +Forget Me Not +Forgetts +Forgewood +Forgotten Flower +Forgue +Fork +Forked Creek +Forkey +Forkland +Forlease +Forley +Forli +Forman +Formans Barn +Formby +Former Peter Brock +Formosa +Formosa Ridge +Formosana +Formschlag +Fornasier +Fornelius +Forner +Forni +Forrest +Forrest Hill +Forrest Lake +Forrest Maple +Forrest Preserve +Forrest View +Forrestal +Forrester +Forrester Hill +Forresters +Forris +Forsberg +Forset +Forsgate +Forsham +Forsham Lake +Forshaw +Forslin +Forslund +Forsman +Forstal +Forster +Forston +Forsum +Forsyth +Forsythe +Forsythia +Fort +Fort Ann +Fort Apache +Fort Armistead +Fort Baker +Fort Beggs +Fort Corloran +Fort Craig +Fort Dearborn +Fort Donelson +Fort Dupont +Fort Farnsworth +Fort Foote +Fort Funston +Fort George +Fort Hamilton +Fort Hill +Fort Howard Park +Fort Hunt +Fort Independence +Fort Johnson +Fort Johnston +Fort Laramie +Fort Lee +Fort Lyon +Fort Meade +Fort Meadow +Fort Niagara +Fort Pitt +Fort Point +Fort Pond +Fort Pond Hill +Fort Pond Inn +Fort Ross +Fort Salonga +Fort Sheridan +Fort Slocum +Fort Smallwood +Fort Sumner +Fort Sumter +Fort Washington +Fort Worth +Forte +Forte Memorial +Fortescue +Fortesque +Fortess +Fortfield +Forth +Forth Bridge +Forthill +Fortier +Fortier Lookout +Fortin +Fortini +Fortis Green +Fortismere +Fortna +Fortnam +Fortner +Forton +Fortril +Fortside +Fortuna +Fortunato +Fortune +Fortunegate +Forty +Forty Acre +Forty Acres +Forty Foot +Forty Green +Forty Oaks +Fortyacre +Forum +Forward +Forwood +Fosbak +Fosbrook +Foscarn +Foscote +Fosgate +Foskett +Foss +Foss Hill +Fossdale +Fossdene +Fosse +Fossen +Fossetts +Fossgill +Fossil +Fossil Ridge +Fosswood +Fostall +Fosten +Foster +Foster City +Foster Clarke +Foster Pond +Fostern +Fosters +Fostones +Fothergill +Fotheringham +Fotherley +Fottler +Foucart +Foulden +Foulds +Foulger +Foulks Ranch +Foulser +Foulsham +Founceley +Foundary +Founders +Founders Field +Founders Hill +Founders Mill +Founders Pointe +Founders Ridge +Founders Way +Foundry +Foundry MIll +Foundry Mill +Fount +Fountain +Fountain Circle +Fountain Club +Fountain Green +Fountain Grove +Fountain Head +Fountain Hills +Fountain Oaks +Fountain Park +Fountain Springs +Fountain Square +Fountain Valley +Fountain View +Fountainbleau +Fountaine +Fountaingrove +Fountainhead +Fountainhead Access +Fountains +Fountainside +Fountainview +Fountayne +Four Acre +Four Acres +Four Bridges +Four Chimney +Four Corners +Four Elms +Four Lakes +Four Leaf Clover +Four Mile +Four Oaks +Four Penny +Four Seasons +Four Wents +Four Winds +Fouracres +Fouratt +Fourier +Fourness +Fournier +Foursome +FourtFour Peter +Fourteen Mile +Fourteenth +Fourth +Fourth Cross +Fourwents +Foust +Fouth +Foveaux +Fowey +Fowke +Fowle +Fowler +Fowler Creek +Fowlers +Fownes +Fownhope +Fox +Fox Beach +Fox Bend +Fox Bluff +Fox Bow +Fox Burrow +Fox Burrows +Fox Chapel +Fox Chase +Fox Creek +Fox Cross +Fox Den +Fox Farm +Fox Fern +Fox Fire +Fox Forest +Fox Gate +Fox Glen +Fox Glove +Fox Grape +Fox Grove +Fox Harbor +Fox Harrow +Fox Haven +Fox Hedge +Fox Hill +Fox Hills +Fox Hollow +Fox Hollow Ridings +Fox Hound +Fox House +Fox Hunt +Fox Island +Fox Lair +Fox Lake +Fox Ledge +Fox Meadow +Fox Mill +Fox Mill Manor +Fox Mine +Fox Park +Fox Path +Fox Platt +Fox Plaza +Fox Point +Fox Pointe +Fox Rest +Fox Ridge +Fox Ripple +Fox River +Fox Run +Fox Shadow +Fox Shores +Fox Sparrow +Fox Tail +Fox Trail +Fox Trot +Fox Valley +Fox Valley Center +Fox View +Fox Vine +Fox Wilds +Fox Wood +Fox Woods +Foxall +Foxbay +Foxbeach +Foxberry +Foxberry Farms +Foxboro +Foxborough +Foxborough Hill +Foxbourne +Foxbridge +Foxburrows +Foxbury +Foxchase +Foxclove +Foxcombe +Foxcovert +Foxcreek +Foxcroft +Foxdale +Foxdells +Foxden +Foxdenton +Foxearth +Foxenden +Foxendown +Foxes +Foxfarm +Foxfield +Foxfields +Foxfire +Foxford +Foxgate +Foxglen +Foxglove +Foxgrape +Foxgrove +Foxhall +Foxhall Farm +Foxhall Manor +Foxham +Foxhays +Foxhead Manor +Foxhill +Foxhills +Foxhole +Foxholes +Foxhollow +Foxholm +Foxhound +Foxhunt +Foxhurst +Foxlair +Foxlake +Foxland +Foxlands +Foxley +Foxline +Foxlow +Foxmanor +Foxmeadow +Foxmoor +Foxmore +Foxon +Foxpoint +Foxridge +Foxs +Foxspring +Foxstone +Foxstones +Foxswallow +Foxtail +Foxton +Foxtrap +Foxtree +Foxtrot +Foxvale +Foxview +Foxwell +Foxwell Bend +Foxwood +Foxwoods +Foxworth +Foxworthy +Foy +Foye +Foyer +Foyette +Foyle +Fr +Fraatz +Frace +Fradkin +Fraga +Fragar +Fragrance +Fraint +Frairy +Fraiser +Fraley +Fraley Farm +Fram +Framar +Frambury +Frame +Framewood +Framfield +Framingdale +Framingham +Framley +Framlingham +Frampton +Frampton Park +Fran +Fran del +Francavilla +France +Franceen +Francemary +Francemont +Frances +Frances Green +Frances Hill +Frances McCormick +Francesca +Francessca +Franche Court +Franchise +Francine +Francis +Francis Crick +Francis Greenway +Francis J. Mcgrath +Francis Kelley +Francis Kelly +Francis Lewis +Francis Scott Key +Francis Short +Francis West +Francis Wyman +Franciscan +Francisco +Francisco Villa +Franck +Franclaire +Franco +Franconia +Franconia Commons +Franconia Forest +Frandsen +Franela +Franey +Frangipani +Franich +Frank +Frank Beames +Frank Brown +Frank Cox +Frank D Tanner +Frank E Rodgers +Frank Lloyd Wright +Frank McCue +Frank Oliveri +Frank Scott +Frank Tippett +Frank Turk +Frank W Burr +Frank Woolley +Frankay +Franke +Frankel +Frankford +Frankfort +Frankfort Square +Frankfurst +Frankfurt +Frankham +Frankie +Frankiln +Franklach +Frankland +Franklands +Frankle +Franklin +Franklin Canyon +Franklin Corner +Franklin Farm +Franklin Fox +Franklin Fr +Franklin Gibson +Franklin High +Franklin Hill +Franklin Hills +Franklin Lake +Franklin Manor +Franklin Oaks +Franklin Park +Franklin Park Service +Franklin Spring +Franklyn +Franklynn +Franko +Franks +Franks Valley +Frankson +Frankstowne +Frankswood +Frankton +Frankwood +Franlee +Franlo +Franmar +Franmil +Franquette +Franrose +Franscella +Fransean +Fransen +Fransioli +Franston +Frant +Franton +Frantz +Franusich +Franwall +Franz +Franz Valley +Franz Valley School +Franzen +Franzman +Frascatti +Frasco +Frase +Fraser +Frasinetti +Fraternal +Fraternity +Fraters +Frates +Frati +Fratis +Frattalone +Frauenfield +Fravel +Frawley +Fray +Frayne +Frays +Frazee +Frazer +Frazier +Frazier Lake +Frazier Lewis +Frean +Frear +Freas +Freathy +Freca +Frechette +Freckleton +Fred +Fred Allen +Fred Davis +Fred Russo +Fred Smith +Fred Wehran +Fred Wonran +Freda +Fredale +Fredana +Fredben +Fredbert +Freddie +Freddy +Frede +Fredela +Fredereickburg +Frederic +Frederica +Frederick +Frederick Douglas +Frederick Douglass +Frederick Sanger +Fredericks +Fredericksburg +Frederickson +Frederika +Frederiksen +Fredette +Fredi +Fredith +Fredon +Fredonia +Fredonian +Fredric +Fredrick +Fredricks +Fredrickson +Freds Oak +Fredson +Free +Free Green +Free Heath +Free Prae +Freeboard +Freeborn +Freebournes +Freedman +Freedom +Freedom Center +Freedom Farme +Freedom Park +Freedown +Freegrove +Freehauf +Freehaven +Freehill +Freehollow +Freeks +Freeland +Freeling +Freelon +Freeman +Freeman Shores +Freemans +Freemantle +Freemark +Freemasons +Freemont +Freeport +Freer +Freesia +Freestate +Freeston +Freestone +Freestone Flat +Freestone Ranch +Freestone Valley Ford +Freetown +Freetrade +Freeway +Freewood +Freezeout +Frei +Frei Bros Winery +Frei Ranch +Freight +Freisman +Freitas +Freke +Frelinghuysen +Freman +Fremantle +Fremlin +Fremlins +Fremont +Fremont Pines +Fremontia +French +French Barn +French Camp +French Creek +French Ford +French Hill +French Horn +French Lake +French Oaks +French Ranch Fire +French Trace +Frencham +Frenches +Frenchmans +Frenchmans Bend +Frenchmans Creek +Frenchmens +Frenchs +Frenchs Forest +Frendsbury +Freneau +Frensham +Frensham Heights +Frensham Vale +Frere +Freres +Fresa +Fresca +Fresco +Fresh Meadow +Fresh Meadows +Fresh Mill +Fresh Pond +Fresh Ponds +Fresh River +Fresh Wharf +Freshaire +Freshes +Freshfield +Freshfields +Freshford +Freshland +Freshwater +Freshwell +Freshwood +Fresno +Fresson +Freston +Freswick +Freta +Fretherne +Freud +Freund +Frewert +Frewin +Frewland +Frey +Freya +Freyman +Friar +Friar Tuck +Friarmere +Friars +Friars Place +Friary +Friberg +Fribourg +Frick +Fricourt +Frida +Friday +Fridays +Friden +Fridley +Frieda +Friedberg +Friedel +Friedland +Friedlund +Friedrich +Frieh +Friend +Friendless +Friendly +Friendlywood +Friends +Friends Choice +Friends House +Friendship +Frienza +Friern Watch +Friesen +Friesian +Frieston +Frieth +Friezland +Friezley +Frigate +Frigatebird +Frilsham +Frimley +Frimley Close Dunley +Frimley Green +Frimley Hall +Frimley High +Frindsbury +Fringe Tree +Frink +Frinsted +Frinton +Fripp +Frisbie +Frisby +Frisch +Frisco +Frisk +Friston +Fritch Creek +Frith +Frith End +Frith Hill +Friths +Frithwald +Frithwood +Fritsch +Frittenden +Fritz +Fritzen +Frizell +Frizlands +Froberg +Frobisher +Frodsham +Froehlich Farm +Froelich +Frog +Frog Grove +Frog Hall +Frog Pond +Froggy +Froghall +Froghole +Frogley +Frogmoor +Frogmore +Frogmore Park +Frognal +Frogs +Frogs Hall +Frogs Hole +Frogs Leap +Frohling +Froissart +Frolich +From +Fromandez +Frome +Fromelles +Fromer +Fromondes +Fromwich +Fronda +Frongillo Farm +Front +Front Field +Front Royal +Frontage +Frontana +Frontenac +Frontera +Frontero +Frontier +Frontier Trail +Frontignan +Frost +Frost Creek +Frost Lake +Frost Mill +Frost Pond +Frost Valley +Frostleaf +Frostwood +Frosty +Frothingham +Froude +Froxfield +Froxmer +Froyd +Froyle +Fruen +Fruit +Fruit Barn +Fruitdale +Fruitland +Fruitledge +Fruitridge +Fruitvale +Fruitwood +Frum +Frustuck +Fry +Frye +Frye Creek +Fryer +Fryer Creek +Fryerning +Fryers +Frying Pan +Frylands +Frymans +Fryston +Fteley +Fuchia +Fuchsia +Fuel Break +Fuel Farm +Fuente +Fuente de Paz +Fugelmere +Fugere +Fugett +Fuggle +Fuggles +Fuhrman +Fujiko +Fujita +Fujiyama +Fulbeck +Fulbert +Fulbourne +Fulbright +Fulbrook +Fulcher +Fulda +Fulford +Fulham +Fulham High +Fulham Palace +Fulham Park +Fulkerson +Fulks Corner +Fulks Farm +Full View +Fullagar +Fullam +Fullbrook +Fullbrooks +Fulle +Fuller +Fuller Brook +Fuller Creek +Fuller Heights +Fuller Mount +Fullerbrook +Fullers +Fullers Farm +Fullerton +Fullham +Fulling +Fulling Mill +Fullington +Fullwell +Fulmar +Fulmead +Fulmer +Fulmer Common +Fulmor +Fulready +Fulshaw +Fulthorp +Fulton +Fulton Shipyard +Fulton Square +Fulwell +Fulwell Park +Fulwich +Fulwood +Fumasi +Fumay +Fumia +Fun +Fundus +Funke +Funston +Furbarn +Furber +Furbush +Furci +Furey +Furler +Furley +Furlong +Furlongs +Furmage +Furman +Furmanville +Furnace +Furnace Brook +Furnace Colony +Furnace Farm +Furnace Hill +Furnace Mountain +Furnari Farm +Furnedge +Furner +Furness +Furnival +Furnlea +Furrells +Furrow +Fursby +Furse +Fursorb +Furth +Further +Further Green +Furtherwick +Furtherwood +Furwood +Fury +Furze +Furze Bushes +Furze Hill +Furze Platt +Furze Vale +Furzedown +Furzefield +Furzeham +Furzehill +Furzen +Fuschia +Fusden +Futuna +Futura +Fuyatt +Fyall +Fycke +Fye Foot +Fyfe +Fyffe +Fyfield +Fyke +Fyke Hollow +Fylde +Fyne +Fynes +Fyrbeck +Fysh +Fysie +G Commercial +G Fernwood +G Hall +G K +G Leeds Infirmary +G Line +G Petersen +GEOINT +GSK Fourth +Gaage +Gabby +Gabel +Gabeli +Gabes Rock +Gabilan +Gabirol +Gable +Gable Ridge +Gables +Gabriel +Gabriele +Gabriella +Gabrielle +Gabrus +Gaby +Gadara +Gadbridge +Gadbrook +Gadbury +Gadby +Gaddesden +Gaddi +Gaddini +Gaddum +Gaddy +Gade +Gadebridge +Gadesden +Gadeview +Gadigal +Gading +Gadley +Gadmore +Gadoury +Gads Hill +Gadsby +Gadsden +Gadsen +Gadwall +Gadwell +Gae Wood +Gael +Gaerloch +Gaffery +Gaffey +Gaffney +Gafford +Gafzelle +Gaga +Gagas +Gage +Gager +Gaggin +Gagne +Gagnon +Gagos +Gahant +Gaiger +Gail +Gail Ann +Gailen +Gailine +Gaillard +Gailmor +Gailview +Gain +Gainer +Gaines +Gainesville +Gainford +Gainsboro +Gainsborough +Gainsford +Gainsport +Gainsthorpe +Gainsville +Gainswood +Gair +Gairloch +Gaisford +Gaist +Gaither +Gaither Farm +Gaither Hunt +Gaitskell +Gala +Galahad +Galanis +Galara +Galashiels +Galata +Galatea +Galaxie +Galaxy +Galbraith +Galbrath +Galbreath +Galbreth +Galda +Galdana +Gale +Gale Ridge +Galea +Galen +Galena +Galer +Gales +Gales Point +Galesborough +Galesbury +Galesi +Galesville +Galetown +Galeucia +Galewood +Galga +Galgate +Galia +Galilee +Galindo +Galitz +Gall +Gall End +Gallagher +Gallahad +Gallahan +Galland +Gallant +Gallant Fox +Gallant Green +Gallants +Gallants Farm +Gallard +Gallatin +Gallaudet +Gallegos +Gallek +Gallen +Galleon +Galleons +Galleria +Galleron +Gallery +Galletta +Galley +Galley East +Galley Hill +Galley West +Galleydean +Galleyhill +Galleywall +Galleywood +Galli +Gallia +Galliard +Galliford +Galligan +Gallimore +Gallin +Gallina +Gallinelli +Gallinson +Gallions +Gallions View +Gallipoli +Gallison +Gallivan +Gallo +Gallogate +Gallop +Gallop Hill +Galloping Hill +Gallosson +Galloupe +Galloupes Point +Galloway +Gallows +Gallows Branch +Gallows Corner Main +Gallows Green +Gallows Hill +Gallows Tree +Gallup +Gallway +Gallwey +Gallypot +Gallys +Galpin +Galpin Lake +Galston +Galsworthy +Galt +Galtier +Galton +Galty +Galusha +Galvani +Galveston +Galvez +Galvin +Galway +Galway Bay +Gamay +Gambel Oak +Gambetta +Gambia +Gambier +Gambini +Gamble +Gamble Hill +Gambles +Gamblin +Gamboa +Gambole +Gambonini +Gambrel Bank +Gambril +Gambrill +Gambrills +Gambrills Cove +Game +Game Cock +Game Creek +Game Farm +Game Lord +Game Preserve +Gamecock +Gamecock Canyon +Gamenya +Games +Gamewell +Gamid +Gamlen +Gamma +Gammell +Gammie +Gammon +Gammons +Gamon +Gamut +Gandangara +Gander +Gander Green +Gandolfi +Gandy Dancer +Gandys +Ganels +Ganges +Gangurlin +Ganic +Ganley +Ganna +Gannawatte +Ganners +Ganners Way Ganners +Gannet +Gannett +Gannett Pasture +Gannon +Gannons +Gano +Gansett +Gansevoort +Gant +Gantner +Ganton +Gantry +Ganzer +Gap +Gap Head +Gap View +Gapemouth +Gaping +Garabaldi +Garabedian +Garage +Garand +Garaventa +Garaventa Ranch +Garavogue +Garazi +Garbala +Garbarino +Garber +Garber Hill +Garbo +Garbo Ranch +Garbrook +Garbutt +Garcal +Garceau +Garces +Garcez +Garcia +Garcia Ranch +Gard +Garda +Gardella +Garden +Garden Brook +Garden City +Garden Close Hanworth +Garden Court +Garden Creek +Garden Cty +Garden Gate +Garden Grove +Garden Heights +Garden Hill +Garden House +Garden Meadow +Garden Ridge +Garden Rock +Garden Rose +Garden Terrace +Garden Tract +Garden View +Garden Wood +Gardena +Gardendale +Gardendell +Gardender +Gardener +Gardeners +Gardenia +Gardensen +Gardenside +Gardenvale +Gardenview +Gardenvine +Gardenwood +Gardere +Gardiner +Gardiner Glen +Gardiners +Gardner +Gardner Ranch +Gardners +Gardyne +Gareis +Garendon +Gareth +Garey +Garfield +Garfield Park +Garfinkle +Garford +Garforth +Garforth Main +Gargery +Gargrave +Garibaldi +Garie +Garigal +Garin +Garino +Garison +Garit +Garland +Garlands +Garlen +Garlichill +Garlick +Garlieb +Garlies +Garligne +Garling +Garlinge +Garlisch +Garlot +Garlough +Garman +Garment +Garmon +Garmont +Garnault +Garner +Garnero +Garners +Garnet +Garnet Rock +Garnett +Garnetts +Garnham +Garnica +Garnsey +Garofallo +Garofolo +Garold +Garove +Garrabrant +Garran +Garrans +Garrard +Garratt +Garratts +Garraween +Garrawille +Garrecht +Garret +Garret Hill +Garretson +Garrett +Garrett Park +Garrett Spillane +Garretts +Garric +Garrick +Garriland +Garrion +Garrison +Garrity +Garrod +Garron +Garrone +Garrong +Garrow +Garry +Garry Glen +Garry Oak +Garryanna +Garryford +Garsdale +Garside +Garside Hey +Garson +Garst +Garstang +Garston +Garswood +Gartfern +Garth +Garth Willow +Garthland +Garthmere +Garthorne +Garthorp +Garthowen +Garthwaite +Gartland +Gartleman Farm +Gartlet +Gartley +Gartmore +Gartney +Garton +Gartside +Gartwick +Garvan +Garvary +Garver +Garvey +Garvies Point +Garvin +Garvin Brook +Garvock +Garway +Garwick +Garwood +Garwood Glen +Gary +Gary Galli +Gary Hill +Gary Lee +Gary Ray +Garys Mill +Garywood +Garza +Garzoli +Garzot +Gas +Gas House +Gas Light +Gas Well +Gas Wharf +Gas Works +Gasbarri +Gascoigne +Gasconge +Gascony +Gascoyne +Gasden +Gaselee +Gashes +Gaskarth +Gaskell +Gasket +Gaskill +Gaskin +Gaskins +Gaslight +Gaspar +Gassett +Gassiot +Gassmann +Gasson +Gasson Wood +Gassons +Gast +Gastein +Gaston +Gaston Bridge +Gastville +Gaswell +Gasworks +Gaszi +Gatacre +Gataker +Gatch +Gatcombe +Gate +Gate Dancer +Gate Farm +Gate Field +Gate House +Gate Park +Gateau +Gatecliff +Gatefield +Gateford +Gateforth +Gatehall +Gatehampton +Gatehead +Gatehill +Gatehouse +Gateley +Gately +Gateon House +Gatepost +Gater +Gates +Gates Canyon +Gates Creek +Gates Green +Gates Pond +Gatesborough +Gatesby +Gatesden +Gatesgarth +Gateshead +Gateside +Gatestone +Gatestone Square +Gateview +Gatewater +Gateway +Gateway Center +Gateway Oaks +Gateway Overlook +Gateway Park +Gatewood +Gathering +Gathorne +Gathurst +Gatland +Gatley +Gatliff +Gatlin +Gatling +Gaton +Gatonby +Gatsby +Gatses +Gatter +Gatto +Gatton +Gatton Park +Gattucio +Gatward +Gatwick +Gatzmer +Gaub +Gauden +Gaudet +Gaudette +Gaudreau +Gaug Farm +Gauge +Gauger +Gaugler +Gauguin +Gauldy +Gaulin +Gault +Gaulton +Gaundabert +Gaunt +Gauntlet +Gauntlett +Gaurdino +Gautier +Gautrey +Gavel +Gavell +Gavello +Gaven +Gaverick +Gavern +Gaveston +Gavestone +Gavilan +Gavin +Gavins Pond +Gavotte +Gavrin +Gawain +Gawaine +Gawber +Gawen +Gawler +Gawne +Gawron +Gawsworth +Gawthorpe +Gay +Gay Bowers +Gay Head +Gay Lore +Gaycroft +Gaydon +Gaye +Gayfere +Gayfields +Gayford +Gayhouse +Gayhurst +Gayland +Gaylawn +Gayle +Gayley +Gayline +Gaylor +Gaylord +Gaymark +Gaymore +Gaynelle +Gaynes Hill +Gaynesford +Gaynor +Gays +Gaysham +Gaythorne +Gayton +Gayville +Gaywood +Gaza +Gazania +Gazebo +Gazehill +Gazelle +Gazos Creek +Gazza +Gazzard +Geana +Gear +Gearny +Gears +Gearty +Geary +Geaton +Geb +Gebhardt +Gebhart +Gebo +Geddes +Geddings +Geddington +Gedeney +Gedick +Gedney +Gedney Park +Gee +Geebung +Geelong +Geer +Geere +Geewan +Geffrye +Gehart +Gehb +Gehl +Gehricke +Gehrig +Gehringer +Geiger +Geigerich +Geise +Geisler +Geissler +Gelardi +Gelato +Gelb +Gelb Ranch +Gelbke +Geldart +Gelder +Gelderd +Geldert +Geldeston +Gelding +Geldner +Gelinas +Gellatly +Gellert +Gellineau +Gelling +Gelnaw +Gelndene +Gelsthorpe +Gelston +Gem +Gemalla +Gemas +Gemini +Gemma +Gemmur +Gemoore +Gemstone +Gen Mills +Gen. Kennedy +GenStar +Genazzi +Genco +Genders +Gendre +Gendron +Gene +General +General Aviation +General Heath +General Henry Knox +General Holmes +General Lee +General Mills +General Mueller +General R. W. Berry +General San Martin +General Sieben +General Smallwood +General Warren +General Waterbury +General Winglass +General Wolfe +Generals +Generation +Generations +Genes +Genesee +Genesis +Geneso +Genessee +Genest +Genesta +Genetti +Geneva +Genevieve +Genevra +Genex +Geng +Genie +Genine +Genista +Genna +Gennene +Gennep +Genner +Gennessee +Genoa +Genoble +Genotin +Genova +Genovesio +Gensell +Genstar +Genther +Gentian +Gentile +Gentilly +Gentle +Gentle Light +Gentle Shade +Gentlees +Gentles +Gentlewood +Gentner +Gentry +Gentrytown +Genty +Genualdi +Genyn +Geoffery +Geoffrey +Geoffreyson +Geoffroy +Geofrey +Geordan +Georeffy Tuttle +Georgann +Georganna +George +George Aggott +George Barton +George Baylor +George Beard +George Bell +George Brown +George C Marshall +George Clauss +George F Willett +George Green +George Groves +George Hill +George Hood +George Hunter +George Julius +George Lee +George Leven +George Lovell +George Mann +George Mason +George Mathers +George McKay +George Michas +George Mobbs +George Moran +George Nelson +George Norman +George Oaks +George P Hassett +George R. Visconti +George River +George V +George Wacker +George Washington +George Weber +George Willing +George Young +Georgean +Georgeham +Georgene +Georges +Georges River +Georgetown +Georgetown Commons +Georgetowne +Georgetta +Georgewood +Georgia +Georgian +Georgiana +Georgianna +Georgina +Georgine +Georginia +Georgio +Georjean +Gera +Gerada +Geraint +Gerald +Geraldine +Geralds +Geraldton +Geralind +Geralynn +Geran +Geranimo +Geranium +Gerard +Geraud +Gerber +Gerbera +Gerbulin +Gerda +Gerdes +Gerdts +Gerdview +Gereghty +Gerek +Geren +Gerfalcon +Gerhard +Gerhardt +Gerhig +Geri +Gericke +Gerine Blossom +Geringer +Gerino +Gerken +Gerlach +Germack +Germain +Germaine +German +German Church +Germander +Germane +Germania +Germanium +Germano +Germantown +Germantown Park +Germany +Germone +Germyn +Gernon +Gerogina +Gerome +Gerona +Geronimo +Gerpins +Gerrale +Gerrard +Gerrards +Gerrards Cross +Gerri +Gerridge +Gerring +Gerrish +Gerritsen +Gerroa +Gerry +Gerrymander +Gershom +Gershwin +Gerstner +Gerstung +Gerten +Gerth +Gertmin +Gertrude +Gertz +Gertzen +Gervais +Gervase +Gervil +Gerwig +Gesford +Geske +Gesna +Gesner +Gessner +Gest +Gestingthorpe +Getchell +Gethsemane +Getson +Gettler +Getty +Gettysburg +Getyunga +Getz +Getzelman +Geyer +Geylen +Geyser +Geyser Ridge +Geysers +Geyserville +Gg +Ggp Access +Ghadbank +Gharkey +Ghent +Gherty +Ghillotti +Ghione +Ghisletta +Ghormley +Ghost Pony +Ghostley +Ghyll +Ghyll Beck +Ghyll Side +Ghyllroyd +Giacalone +Giadeczka +Giahos +Giampaoli +Gianelli +Gianera +Gianna +Giannecchini +Gianni +Giannini +Giannone +Giant +Giant Arches +Giant Oak +Giant Panda +Giants +Giaramita +Giasson +Gib +Gibb +Gibbens +Gibbes +Gibbet +Gibbet Hill +Gibbins +Gibbon +Gibbons +Gibbons Church +Gibbons Ranch +Gibbs +Giberson +Gibfield +Gibfield Park +Gibian +Giblets +Giblett +Gibraltar +Gibraltar Island +Gibralter +Gibson +Gibson Canyon +Gibson Oaks +Gibson Transfer +Gibsons +Gidding +Giddings +Giddyhorn +Gidea +Gideon +Gideons +Gideons Point +Gidgee +Gidji +Gidley +Gidlow +Gidya +Gieger +Giegerich +Gierz +Giesbach +Giese +Gieseke +Giesen +Giesman +Giffard +Giffen +Giffin +Giffnock +Gifford +Gifford Pinchot +Giffords +Giffords Cross +Gifhorn +Gift +Gig +Gigante +Gigey +Gigg +Giggs Hill +Gighill +Gigi +Giguere +Gil Blas +Gila +Gilander +Gilardi +Gilardoni +Gilba +Gilbert +Gilbert L Bean +Gilberto +Gilbertson +Gilbey +Gilboa +Gilbourne +Gilbralter +Gilbreth +Gilbride +Gilbulla +Gilburt Hill +Gilcar +Gilchrest +Gilchrist +Gilcrest +Gilda +Gilda Brook +Gildabrook +Gildar +Gildare +Gildea +Gilden +Gildenhill +Gildenthorpe +Gilder +Gilderdale +Gilders +Gildersdale +Gildersleeve +Gildersome +Gildersome Back +Gildridge +Gile +Giles +Giles Run +Gilfeather +Gilfillan +Gilford +Gilgandra +Gilger +Gilham +Gilhams +Gill +Gill Bent +Gill Port +Gillam +Gillard +Gillbane +Gillbrook +Gilleevan +Gillen +Gillender +Gillens +Gillenwater +Gillespie +Gillespies +Gillet +Gillett +Gillette +Gilletts +Gillham +Gilliam +Gillian +Gillian Park +Gilliat +Gillick +Gillier +Gillies +Gilligans +Gillimer +Gilling +Gillingham +Gillingham Gate +Gillings +Gillis +Gillman +Gillmans +Gillmor +Gillmore +Gillon +Gillooly +Gillpepper +Gillridge +Gills +Gills Hill +Gillville +Gillwinga +Gilly +Gilma +Gilman +Gilmar +Gilmartin +Gilmer +Gilmerton +Gilmore +Gilmour +Gilmoure +Gilnow +Gilpen +Gilpin +Gilray +Gilrix +Gilroy +Gilroy Hot Springs +Gilruth +Gilsan +Gilsland +Gilson +Gilstead +Gilston +Giltbrook +Giltner +Gilton +Giltspur +Gilway +Gilwell +Gilwinga +Gilwood +Gimbal +Gimbel +Gina +Gina Nicole +Ginahgulla +Ginavale +Gincroft +Ginda +Ginden +Gindurra +Ginesi +Ginge +Gingells Farm +Ginger +Ginger Brook +Ginger Creek +Ginger Root +Ginger Wood +Ginger Woods +Gingerblossom +Gingerbread +Gingerbrook +Gingerview +Gingerwood +Gingham +Gingrich +Ginhams +Ginita +Ginkgo +Ginko +Ginley +Ginn +Ginniver +Ginny +Gino +Ginseng +Ginther +Ginu +Gio +Gioconda +Giorgano +Giovanetti +Giovannetti +Giovanni +Gipps +Gipps Cross +Gipson +Gipsy +Gipton Approach York +Gipton Oak Tree +Gipton Wood +Giralda +Girard +Giraud +Giraudo +Gird +Girdle +Girdler +Girdlers +Girdlestone +Girdwood +Gironde +Girouard +Girra +Girralong +Girraween +Girrilang +Girtin +Girton +Girvan +Girvin +Gisborn +Gisbourne +Gisburn +Gisburne +Gischel +Gisela +Gisella +Giselle +Gissing +Gist +Giuffrida +Giusti +Givan +Given +Givendale +Givens +GizMo +Gizmo +Glabe +Glabyn +Glacial Falls +Glacier +Glacier Park +Glacier Point +Glacier Ridge +Glackens +Glad +Glad Valley +Gladbeck +Gladden +Gladdie +Gladding +Glade +Glade Hill +Glade Spring +Glader +Glades +Gladeside +Gladesville +Gladeswood +Gladewright +Gladhill +Gladiator +Gladiola +Gladiolus +Gladish +Gladlands +Gladmore +Gladney +Gladnor +Gladsdale +Gladsmuir +Gladston +Gladstone +Gladstone Terrace +Gladswood +Gladville +Gladwalt +Gladwell +Gladwin +Gladwood +Gladwyn +Gladwyne +Gladys +Gladys May +Glafil +Glaisdale +Glaisher +Glaister +Glaizewood +Glamford +Glamis +Glamorgan +Glancy +Glandon +Glandore +Glandy Glen +Glanfield +Glanleam +Glanmire +Glanmor +Glanthams +Glantz +Glanville +Glanvor +Glanz +Glarner +Glarus +Glasbrook +Glascock +Glascoe +Glascow +Glaserton +Glasford +Glasgow +Glasmere +Glass +Glass House +Glass Mountain +Glassboro +Glasscock +Glassenbury +Glasser +Glasseys +Glasshill +Glasshouse +Glasslyn +Glassmanor +Glassmill +Glassop +Glassword +Glaston +Glastonberry +Glastonbury +Glatton +Glaude +Glauser +Glavis +Glaydin Woods +Glazbury +Glazebrook +Glazebury +Glazer +Glazier +Glaziers +Glazzy +Gleahaven +Gleaming Wood +Gleane +Gleaner +Gleason +Gleason Acres +Gleason Lake +Gleasondale +Gleave +Gleaves +Glebe +Glebe Heights +Glebe House +Glebe Point +Glebe View +Glebefield +Glebeland +Glebelands +Gleden +Gledhall +Gledhill +Gledhow +Gledhow Lidgett +Gledhow Park +Gledhow Valley +Gledhow Wood +Gledstanes +Gledwood +Gledwood Wood +Gleed +Gleedsville +Gleeland +Gleeson +Gleffe +Glegg +Glemar +Glen +Glen Abbey +Glen Albyn +Glen Alden +Glen Allan +Glen Alpine +Glen Alto +Glen Arbor +Glen Arms +Glen Artney +Glen Aulin +Glen Avon +Glen Ayre +Glen Bott +Glen Brae +Glen Briar +Glen Byron +Glen Cannon +Glen Canyon +Glen Carlyn +Glen Cove +Glen Cove Oyster Bay +Glen Creek +Glen Crest +Glen Cross +Glen Curtiss +Glen Dale +Glen Davies +Glen Dell +Glen Donegal +Glen Eagle +Glen Eagles +Glen Echo +Glen Edge +Glen Edin +Glen Ellen +Glen Ellyn +Glen Elyn +Glen Entrance +Glen Eyrie +Glen Faba +Glen Farm +Glen Fire +Glen Firth +Glen Flora +Glen Forest +Glen Fr +Glen Garry +Glen Gary +Glen Gate +Glen Gerry +Glen Gery +Glen Goin +Glen Gorham +Glen Gray +Glen Hanleigh +Glen Hannah +Glen Harbor +Glen Haven +Glen Head +Glen Heather +Glen Heights +Glen Hill +Glen Hollow +Glen Hook +Glen Innes +Glen Irene +Glen Isle +Glen Ivy +Glen Keith +Glen Lake +Glen Logan +Glen Lomond +Glen Manor +Glen Mar +Glen Margaret +Glen Mawr +Glen Meadow +Glen Mill +Glen Miller +Glen Mor +Glen Oak +Glen Oakes +Glen Oaks +Glen Oban +Glen Ora +Glen Ormond +Glen Park +Glen Paul +Glen Pointe +Glen Ridge +Glen Rigde +Glen Rock +Glen Rose +Glen Ross +Glen Rouken E +Glen Sharon +Glen Shell +Glen Side +Glen Spring +Glen Taylor +Glen Toro +Glen Tree +Glen Una +Glen Valley +Glen View +Glen Vista +Glen Washington +Glen Wilding +Glen Willow +Glenada +Glenaffric +Glenair +Glenaire +Glenalla +Glenallan +Glenallen +Glenalmond +Glenark +Glenarm +Glenarms +Glenarvon +Glenavon +Glenavy +Glenayr +Glenayre +Glenbar +Glenbard +Glenbarr +Glenberry +Glenboro +Glenborough +Glenbourne +Glenbrae +Glenbriar +Glenbrook +Glenbrook Crest +Glenbrook Hospital +Glenbrooke +Glenbrooke Woods +Glenbuck +Glenburne +Glenburnie +Glenby +Glencairn +Glencannon +Glencar +Glencarl +Glencarron +Glencliff +Glenclift +Glencoe +Glencorse +Glencourse +Glencourt +Glencove +Glencoyne +Glencrest +Glencroft +Glencross +Glenda +Glendale +Glendall +Glendalough +Glendarvon +Glendell +Glendene +Glendenning +Glendevie +Glendevon +Glendish +Glendon +Glendoon +Glendora +Glendower +Glenduin +Glendundee +Gleneagle +Gleneagles +Gleneden +Glenelg +Glenella +Glenellen +Glenellyn +Glenerye +Glenesk +Glenfair +Glenfaire +Glenfarg +Glenfarne +Glenfern +Glenferrie +Glenfield +Glenfield Mews +Glenfinnan +Glenford +Glenforth +Glenfruin +Glenfyne +Glengalen +Glengall +Glengarif +Glengariff +Glengarnock +Glengarrie +Glengarrif +Glengarry +Glengarth +Glengary +Glengoin +Glengreen +Glengyle +Glenham +Glenhaven +Glenhazel +Glenheath +Glenheather +Glenhill +Glenhome +Glenhouse +Glenhurst +Glenice +Glenilla +Glenisia +Glenister +Glenister Park +Glenisters +Glenkirk +Glenlake +Glenland +Glenlawn +Glenlea +Glenlee +Glenlo +Glenlock +Glenloe +Glenluce +Glenly +Glenlyn +Glenmalure +Glenmar +Glenmark +Glenmary +Glenmeadow +Glenmere +Glenmere Park +Glenmist +Glenmont +Glenmoor +Glenmora +Glenmore +Glenmore Spring +Glenmount +Glenn +Glenn Coolidge +Glenn Cove +Glenn Curtiss +Glenn Dale +Glenn Ellen +Glenna +Glennan +Glennell +Glennie +Glennon +Glenns +Glennville +Glenny +Glenoak +Glenoban +Glenoe +Glenola +Glenolden +Glenora +Glenorchy +Glenpark +Glenparke +Glenpine +Glenriddle +Glenridge +Glenrio +Glenrise +Glenrock +Glenroe +Glenrosa +Glenrose +Glenross +Glenrowan +Glenrown +Glenroy +Glens +Glensdale +Glenshaw +Glenshiel +Glenshire +Glenside +Glentham +Glenthorn +Glenthorne +Glenthorpe +Glenton +Glentrammon +Glentree +Glentrees +Glentworth +Glenugie +Glenure +Glenvale +Glenview +Glenvilla +Glenville +Glenwari +Glenway +Glenwild +Glenwillow +Glenwix +Glenwood +Glenwood Dale +Glenwood Dyer +Glenwood Lansing +Glenwoodie +Glenworth +Glenyar +Glenys +Gless +Glezen +Glidden +Gliddon +Glide +Glider +Glimpsewood +Glines +Glissade +Glisson +Glittering Light +Glnrosa +Global +Globe +Globe Farm +Globe Pond +Globe Theatre +Glodwick +Glori Dawn +Gloria +Gloria Jean +Glorietta +Glorieux +Glory +Glory Mill +Glos +Glossop +Glossop Brook +Gloster +Gloucester +Glouceston +Glouchester +Glouster +Glover +Glovers +Glovers Brook +Glow +Gloxinia +Glueck +Gluek +Glumack +Glycena +Glygena +Glymont +Glymont Crest +Glyn +Glynde +Glyndon +Glynfield +Glynis +Glynn +Glynne +Glynnis Rose +Glynwood +Gnarbo +Gnarled Oak +Gnekow +Gnesa +Goad +Goat +Goat Hall +Goat Hill +Goat House +Goat Rock +Goaters +Goatham +Goatlees +Goatley +Goatsfield +Goatsmoor +Goatswood +Gobernadores +Gobind +Gobions +Goble +Godair +Godbert +Godbold +Goddard +Goddard Memorial +Godden +Goddings +Goddington +Goddu +Goden +Godetia +Godfrey +Goding +Godington +Godinton +Godley +Godliman +Godly +Godman +Godmans +Godmond Hall +Godolphin +Godric +Godson +Godspeed +Godston +Godstone +Godstone Green +Godward +Godwin +Goebel +Goecken +Goeller +Goerke +Goes +Goesel +Goethals +Goethe +Goethe Park +Goettingen +Goetz +Goff +Goffe +Goffle +Goffle Hill +Goffs +Goffs Oak +Goffs Park +Gogel +Gogh +Gogmore +Gohagen +Goiffon +Goin +Going +Goins +Goirle +Golansky +Golborne +Gold +Gold Arbor +Gold Bar +Gold Bluff +Gold Brook +Gold Camp +Gold Canal +Gold Center +Gold Coast +Gold Country +Gold Course +Gold Creek +Gold Cup +Gold Dust +Gold Express +Gold Field +Gold Flat +Gold Flint +Gold Gulch +Gold Kettle +Gold Lake +Gold Meadow +Gold Mine +Gold Nugget +Gold Oak +Gold Parke +Gold Pointe +Gold Poppy +Gold Ridge +Gold River +Gold Run +Gold Rush +Gold Valley +Gold Yarrow +Goldberg +Goldberry +Goldborne +Goldbridge +Goldcliff +Goldcoast +Goldcrest +Goldcup +Golden +Golden Acre +Golden Acres +Golden Arrow +Golden Aspen +Golden Ball +Golden Bay +Golden Bear +Golden Canyon +Golden Centre +Golden Chapel +Golden Corn +Golden Cove +Golden Cross +Golden Days Access +Golden Eagle +Golden Eye +Golden Falcon +Golden Fleece +Golden Foothill +Golden Gate +Golden Grove +Golden Harvest +Golden Heights +Golden Hill +Golden Hills +Golden Hinde +Golden Lake +Golden Larch +Golden Leaf +Golden Light +Golden Manor +Golden Meadow +Golden Oak +Golden Oaks +Golden Pheasant +Golden Pond +Golden Poppy +Golden Post +Golden Rain +Golden Raintree +Golden Ridge +Golden Rod +Golden Rose +Golden Run +Golden Russet +Golden Sage +Golden Sands +Golden Springs +Golden Sunset +Golden Tree +Golden Triangle +Golden Valley +Golden View +Golden West +Goldencrest +Goldeneye +Goldenhill +Goldenlake +Goldenrain +Goldenrod +Goldentree +Goldenview +Goldfield +Goldfinch +Goldfinger +Goldhaber +Goldhanger +Goldhawk +Goldie +Golding +Goldingham +Goldings +Goldington +Goldlay +Goldleaf +Goldman +Goldmine +Goldney +Goldrill +Goldrings +Goldsands +Goldsberry +Goldsboro +Goldsborough +Goldsdown +Goldsel +Goldsmid +Goldsmith +Goldsmiths +Goldstein +Goldsworth +Goldsworthy +Goldthwait +Goldthwaite +Goldwell +Goldwyn +Goleta +Golf +Golf Academy +Golf Club +Golf Course +Golf Course Access +Golf Creek +Golf Crest +Golf Edge +Golf Estates +Golf Greens +Golf House +Golf Links +Golf Trail +Golf View +Golf Vista +Golfe +Golfers +Golfers Ridge +Golford +Golfview +Goliath +Gollan +Gollum +Gombert +Gomer +Gomersal +Gomes +Gomez +Gomm +Gomoljak +Gomshall +Gona +Gonda +Gondar +Gondek +Gondola +Gone Away +Gong Hill +Gonnelli +Gonsalves +Gonson +Gonville +Gonzaga +Gonzales +Gonzalez +Goobarah +Gooch +Good +Good Blood +Good Harbor +Good Hope +Good Lion +Good Luck +Good Samaritan +Good Speed +Good Spring +Good Valley +Goodacre +Goodale +Goodall +Goodboys +Goodbury +Goodchap +Goodchild +Goode +Goodell +Gooden +Goodenia +Goodenough +Goodenow +Goodey +Goodfellow +Goodge +Goodhall +Goodhart +Goodhew +Goodhill +Goodhope +Goodhue +Goodhurst +Goodier +Goodin +Gooding +Goodinge +Goodlad +Goodland +Goodlands +Goodlet +Goodloe +Goodloes Promise +Goodman +Goodmans +Goodmayes +Goodner +Goodnestone +Goodnough +Goodnow +Goodport +Goodrich +Goodrick +Goodridge +Goodrington +Goodrow +Goodsell +Goodsir +Goodson +Goodstone +Goodview +Goodvine +Goodward +Goodway +Goodways +Goodwells +Goodwill +Goodwin +Goodwives River +Goodwood +Goodworth +Goodwyn +Goodwyns +Goody +Goody Cross +Goodyear +Goodyers +Goojerat +Goold +Goold Park +Goole +Goonaroi +Goonda +Goondah +Goondari +Goora +Goorari +Goorawahl +Gooraway +Gooreen +Goorgool +Gooroa +Goose +Goose Cove +Goose Creek +Goose Glen +Goose Haven +Goose Hill +Goose Lake +Goose Point +Goose Pond +Goose Rye +Gooseacre +Gooseberry +Goosebrook +Goosecroft +Goosegreen +Gooselake +Gooseley +Gooseneck +Goostrey +Gopher +Gophir +Gopsall +Gorada +Gorby +Gordan +Gorden +Gordon +Gordon Johnston +Gordon McKinnon +Gordon Parker +Gordon Valley +Gordonhurst +Gordonia +Gordons +Gordy +Gore +Gore Court +Gore Gable +Gore Green +Goredale +Gorefield +Goresbrook +Goreside +Gorgas +Gorge +Gorgo +Gorham +Goring +Goring Heath +Gorinski +Gorizia +Gorky +Gorleston +Gorman +Gormel +Gormley +Gornall +Gorniak +Gornik +Goroka +Goroki +Gorrel +Gorring +Gorringe +Gorse +Gorse Bank +Gorse Covert +Gorse Hall +Gorse Hill +Gorse Wood +Gorses +Gorsewood +Gorsey +Gorsey Bank +Gorsey Hill +Gorsey Mount +Gorsline +Gorst +Gorstage +Gorsuch +Gort +Gortner +Gorton +Gorwin +Gory Brook +Gosbecks +Gosbell +Gosberton +Gosbrook +Gosby +Goscombs +Gosden +Gosden Hill +Gosfield +Gosforth +Goshawk +Gosheff +Goshen +Goshen Hunt +Goshen Oaks +Goshen School +Goshen Valley +Goshen View +Gosling +Gosling Hill +Gosmore +Gosnell +Gosnold +Gospel Union +Gospodnevich +Gosport +Goss +Goss Hall +Goss Pond +Gossabe +Gossage +Gossamer +Gosselin +Gossell +Gosser +Gosset +Gosshill +Gossling +Gossops +Gossops Green +Gosterwood +Gostlin +Gostling +Goswell +Goswell End +Goth +Gotham +Gotham Hill +Gothberg +Gothic +Gothland +Gothwaite +Gotland +Gott +Gottenham +Gotthardt +Gottlieb +Gotts +Gotts Park +Gottschalk +Gotzian +Goucher +Gouda +Goudhurst +Gougar +Gouge +Gough +Gougham +Goughs +Goularte +Goulburn +Gould +Gould Hill +Gouldbury +Goulden +Goulder +Gouldin +Goulding +Gouldman +Goulds +Goulston +Goulton +Gourlay +Gourley +Gousy +Gouthier +Gouverneur +Gouwens +Govan +Gove +Govenors +Gover +Government +Government Center +Government House +Governo +Governor +Governor Andrew +Governor Belcher +Governor Bridge +Governor Carver +Governor Endicott +Governor Fuller +Governor Hutchinson +Governor Long +Governor Macquarie +Governor Oden Bowie +Governor Peabody +Governor Saltonstall +Governor Winthrop +Governor Yeardley +Governors +Governors Bay +Governors Bridge +Governors Ridge +Govert +Govett +Gow +Gowan +Gowan Brae +Goward +Gowdey +Gowell +Gower +Gowerdale +Gowers +Gowin +Gowing +Gowlett +Gowrie +Goya +Goyak +Goyen +Goyt +Goyt Valley +Gozo +Grace +Grace Ann +Grace Church +Grace Estates +Grace Keller +Grace Leather +Grace Max +Grace Memorial +Grace Valley +Grace View +Gracechurch +Gracedale +Gracefield +Gracel +Graceland +Gracelands +Gracemar +Gracemere +Gracemere Lake +Gracemore +Graces +Graceview +Graceway +Gracewood +Gracey +Grachur +Gracie +Graciella +Gracin +Gracious +Gracious Pond +Gradall +Grade +Graduates +Gradwell +Grady +Graeagle +Graeloch +Graeme +Graemere +Graemesdyke +Graf +Grafe +Graff +Graffian +Graffigna +Grafton +Grafton Farm +Grafton Park +Gragg +Grago +Graham +Graham Creek +Graham Hill +Graham Park +Grahame +Grahampton +Grahm +Grahn +Graicious +Graiden +Grain +Grainery +Grainfield +Grainger +Graingers +Grains +Gralynn +Gramar School +Gramarcy +Gramatan +Gramby +Gramercy +Gramercy Park +Gramford +Grammar School +Grammercy +Grammont +Grammy +Grampian +Grams Private +Gramsie +Gran Deur +Granada +Granado +Granard +Granart +Granary +Granaston +Granborough +Granby +Grand +Grand Banks +Grand Birch +Grand Canal +Grand Canyon +Grand Central +Grand Champion +Grand Comons +Grand Corner +Grand Coulee +Grand Cru +Grand Cypress +Grand Depot +Grand Fir +Grand Hamptons +Grand Haven +Grand Highlands +Grand Hill +Grand Island +Grand Lake +Grand Meadow +Grand Mesa +Grand Oaks +Grand Park +Grand Point +Grand Pointe +Grand Prairie +Grand Pre +Grand Prix +Grand Reserve +Grand Ridge +Grand Rio +Grand River +Grand Summit +Grand Targee +Grand Terrace +Grand Teton +Grand Teton Park +Grand Tour +Grand Tree +Grand Valley +Grand View +Grandads +Grandale +Grandborough +Grandby +Grande +Grande Park +Grande Pines +Grande View +Grande Vista +Grandee +Granden +Grandfield +Grandhaven +Grandiflora +Grandin +Grandison +Grandmas +Grandparents +Grandpere +Grandshore +Grandstaff +Grandstand +Grandview +Grandwind +Grandwood Lake +Grandys +Grane +Granelli +Graney +Granfield +Grange +Grange Court +Grange Farm +Grange Fields +Grange Hall +Grange Park +Grange Valley +Grange View +Grangecourt +Grangefield +Grangefields +Grangeforth +Grangehill +Granger +Grangers Dairy +Grangethorpe +Grangewood +Grangnelli +Granison +Granite +Granite Creek +Granite Crossing +Granite Park +Granite Ridge +Granite Rock +Graniteville +Granitewood +Granlee +Granleigh +Granli +Grannis +Granniss +Granny +Gransden +Granshaw +Gransmoor +Grant +Grant Chapman +Grant Line +Grant Lorenz +Grant Mills +Grant Park +Grant School +Grantbridge +Grantham +Grantland +Grantley +Grantock +Granton +Grants +Grants Mill +Grantully +Grantwood +Granvaile +Granville +Granzotto +Grapal +Grapanche +Grape +Grape Leaf +Grape Shot +Grape Vine +Grapes +Grapevine +Grapewood +Graphic +Grappenhall +Grapple +Grasdene +Grasmead +Grasmere +Grason +Grass Lake +Grass Valley +Grasscroft +Grasselli +Grassfield +Grassholme +Grasshopper +Grassina +Grassingham +Grassington +Grassland +Grasslands +Grassmere +Grasswood +Grassy +Grassy Garth +Grassy Knoll +Grassy Pond +Grassy Slope Fire +Grassy Sprain +Grassymeade +Grater +Gratia +Graton +Gratrix +Grattan +Gratten +Gratto +Gratton +Grattons +Gratuity +Gratwicke +Grau +Gravatt +Grave +Grave Oak +Gravel +Gravel Bank +Gravel Hill +Gravel Pit +Gravel Pit Haul +Gravel Pits +Gravel Point +Graveley +Graveleythorpe +Gravelly +Gravelly Bottom +Gravelly Brook +Gravelly Hill +Gravelly Point +Gravelye +Graveney +Gravenhurst +Gravenmoor +Gravenstein +Graver +Graves +Gravesend +Gravesend Neck +Gravestone +Gravett +Gravetts +Graveyard +Gravity Car +Gray +Gray Barn +Gray Beach +Gray Beech +Gray Birch +Gray Cliff +Gray Farms +Gray Fox +Gray Hawk +Gray Heron +Gray Oaks +Gray Owl +Gray Rock +Gray Wing +Graybar +Graybill +Graybriar +Grayburn +Graydon +Grayfield +Grayfriars +Grayham +Grayhampton +Grayhawk +Grayheaven Manor +Grayhouse +Grayland +Graylawn +Graylind +Grayling +Graylock +Graylynn +Graymarsh +Graymill +Graymont +Graymoor +Graymore +Grayne +Grayon +Grayridge +Grayrigg +Grayrock +Grays +Grays Bay +Grays Creek +Grays Farm +Grays Ford +Grays Landing +Grays Park +Grays Point +Grays Pointe +Graysands +Grayscroft +Grayshire +Grayshott +Grayslake +Grayson +Grayston +Graystone +Graystone Meadow +Grayswood +Graythwaite +Grayton +Grayvine +Graywacke +Graywhaler +Graywood +Grazebrook +Grazeley +Grazeley Green +Graziano +Greacen +Greacen Point +Greame +Greany +Great +Great America +Great Ancoats +Great Arbor +Great Augur +Great Bank +Great Basin +Great Bay +Great Bend +Great Berry +Great Binfields +Great Bounds +Great Braitch +Great Bramingham +Great Brickhill +Great Bridgewater +Great Brook Valley +Great Brooms +Great Buckingham +Great Bushey +Great Canfield +Great Castle +Great Central +Great Chapel +Great Chart +Great Chertsey +Great Church +Great Circle +Great Clowes +Great College +Great Cumberland +Great Dover +Great East Neck +Great Eastern +Great Egerton +Great Egret +Great Elm +Great Elms +Great Falls +Great Falls Forest +Great Gardens +Great Gates +Great George +Great Goodwin +Great Gregories +Great Guildford +Great Hadham +Great Hall +Great Harry +Great Heron +Great Hill +Great Hills +Great Hollands +Great Horwood +Great House +Great Jackson +Great James +Great John +Great Jones +Great Kills +Great King +Great Knollys +Great Lake +Great Lakes +Great Laurel +Great Lodge +Great Mall +Great Marlborough +Great Meadow +Great Moor +Great Moss +Great Neck +Great New +Great Newport +Great Norbury +Great North +Great Northern +Great Notley +Great Oak +Great Oaks +Great Ormond +Great Owl +Great Percy +Great Peter +Great Pines +Great Plain +Great Plains +Great Pond +Great Portwood +Great Post +Great Prestons +Great Pulteney +Great Queen +Great Republic +Great Ridge +Great River +Great Rock +Great Ropers +Great Russell +Great Salt Lake +Great Smith +Great Smokey +Great South +Great Southern +Great Sutton +Great Tey +Great Thorne +Great Titchfield +Great Totham +Great Trinity +Great View +Great WInchester +Great West +Great Western +Great Wheatley +Great Whites +Great Wilson +Great Winchester +Great Windmill +Great Wood +Great Woodcote +Great Woods +Greatdown +Greate House Farm +Greatfield +Greatfields +Greatford +Greatham +Greatland +Greatness +Greatnews +Greaton +Greatrex +Greatwater +Greave +Greaves +Grebe +Grecian +Greco +Gredinger +Greeba +Greek +Greeley +Greely +Green +Green Acre +Green Acres +Green Ash +Green Bay +Green Branch +Green Briar +Green Bridge +Green Brier +Green Brook +Green Bud +Green Canyon +Green Cir +Green Circle +Green Common +Green Court +Green Cove +Green Crest +Green Croft +Green Cross +Green Dale +Green Dory +Green Duck +Green East +Green End +Green Farm +Green Farms +Green Fields +Green Fold +Green Forest +Green Garden +Green Garland +Green Glen +Green Grass +Green Grove +Green Haven +Green Hedges +Green Heron +Green Hill +Green Hills +Green Hollow +Green Holly +Green Holly Springs +Green Hundred +Green Ice +Green Island +Green Knoll +Green Knolls +Green Lake +Green Landing +Green Lawn +Green Lea +Green Leaf +Green Ledge +Green Lodge +Green Man +Green Meadow +Green Meadows +Green Mill +Green Moor +Green Moss +Green Mountain +Green Needles +Green North +Green Oak +Green Oaks +Green Orchard +Green Park +Green Pasture +Green Pastures +Green Pheasant +Green Pine +Green Point +Green Pond +Green Ranch +Green Range +Green Ravine +Green Ridge +Green River +Green Run +Green School +Green Spring +Green Springs +Green Tiles +Green Trails +Green Tree +Green Trees +Green Twig +Green Valley +Green Valley Oaks +Green Valley School +Green View +Green View Church +Green Way +Green Willow +Green Wrythe +GreenHedges +Greenacre +Greenacre Park +Greenacres +Greenall +Greenaway +Greenbach +Greenback +Greenbank +Greenbanks +Greenbaum +Greenbay +Greenbelt +Greenbelt Metro +Greenberg +Greenberry +Greenbooth +Greenboro +Greenborough +Greenbough +Greenbrae +Greenbranch +Greenbriar +Greenbridge +Greenbrier +Greenbrier Park +Greenbrook +Greenbrow +Greenburn +Greenbury +Greenbury Point +Greenbush +Greencastle +Greencastle Ridge +Greencourt +Greencrest +Greencroft +Greencroft Deans +Greencroft Hale +Greendale +Greendale Village +Greendale Villege +Greendell +Greene +Greene Field +Greene Ridge +Greeneich +Greenery +Greenfeather +Greenfern +Greenfield +Greenfield Farm +Greenfields +Greenfinch +Greenfold +Greenford +Greenfrith +Greengate +Greengates Redcar +Greenglen +Greengold +Greengrove +Greenhalge +Greenhalgh +Greenhalgh Moss +Greenhall +Greenham +Greenhaven +Greenhayes +Greenhays +Greenhead +Greenheys +Greenhill +Greenhills +Greenholme +Greenhood +Greenhorn +Greenhouse +Greenhow +Greenhurst +Greenhythe +Greening +Greenknoll +Greenknowe +Greenlake +Greenland +Greenlands +Greenlane +Greenlaven +Greenlaw +Greenlawn +Greenlay +Greenlea +Greenleach +Greenleaf +Greenleafe +Greenleas +Greenlee +Greenlees +Greenleigh +Greenlodge +Greenlook +Greenly +Greenman +Greenmead +Greenmeadow +Greenmont +Greenmoor +Greenmount +Greenoak +Greenock +Greenough +Greenpark +Greenpoint +Greenport +Greenrale +Greenridge +Greenrock +Greenroyd +Greens +Greens Arms +Greensand +Greensboro +Greensborough +Greensburgh +Greensfield +Greenshall +Greenshire +Greenside +Greenside Mortimer +Greenslade +Greensleeves +Greenslope +Greenson +Greenspan +Greenspring +Greenstead +Greensted +Greenstede +Greenstein +Greenstone +Greensview +Greensward +Greenthorn +Greenthorpe +Greentrails +Greentree +Greentree Manor +Greentrees +Greenvale +Greenvale Glen Cove +Greenvalley +Greenview +Greenville +Greenwald +Greenway +Greenway Grand +Greenway Longland +Greenway Center +Greenway Corporate +Greenway Court +Greenways +Greenweadow +Greenwell +Greenwich +Greenwich Church +Greenwich Cove +Greenwich High +Greenwich Hills +Greenwich Park +Greenwich Point +Greenwich South +Greenwich Wood +Greenwich Woods +Greenwillow +Greenwing +Greenwolde +Greenwood +Greenwood Bay +Greenwood Beach +Greenwood Cove +Greenwood East +Greenwood Hill +Greenwood Lake +Greenwood Valley +Greenwoods +Greer +Greet +Greetland +Greeves +Greg +Greg Lawn +Greg Marc +Greg Taylor +Greger +Gregerscroft +Gregford +Gregg +Gregge +Greggory +Greggs +Greggs Wood +Greggswood +Gregor +Gregori +Gregorich +Gregories +Gregories Farm +Gregorio +Gregory +Gregory Farm +Gregory Hills +Gregory Island +Gregory M Sears +Gregson +Greig +Greisen +Greiving +Gremley +Grena +Grenaby +Grenada +Grenade +Grenadier +Grenadon +Grenda +Grendale +Grendon +Grenelefe +Grenfel +Grenfell +Grengs +Grenhart +Grenier +Grennan +Grennell +Grenoble +Grenock +Grenstead +Grenton +Grenville +Grenwold +Grenwolde +Gresel +Gresham +Greshan +Gresley +Gresse +Gressenhall +Gresser +Gressinger +Grest South West +Greswell +Gretchen +Gretel +Greten +Gretna +Gretna Green +Gretter +Gretton +Greve +Greville +Greville Park +Grevillea +Grevillia +Grew +Grew Hill +Grex +Grey +Grey Barn +Grey Canyon +Grey Coach +Grey Colt +Grey Dove +Grey Eagle +Grey Finch +Grey Fox +Grey Ghost +Grey Gull +Grey Mare +Grey Mist +Grey Oaks +Grey Pebble +Grey Rock +Grey Run +Grey Seal +Grey Squirrel +Grey Towers +Grey Wall +Grey Willow +Greybert +Greybirch +Greybury +Greycaine +Greycliff +Greycliffe +Greycoat +Greydells +Greyfriars +Greygums +Greyhound +Greylag +Greylands +Greylock +Greylyn +Greymere +Greymont +Greyrock +Greys +Greyshiels +Greyshon +Greyson Creek +Greystanes +Greystead +Greystoke +Greystone +Greystones +Greyswood +Greythorne +Greyview +Greywall +Greywell +Greywing +Greywood +Gribble Bridge +Grice +Grid +Griddle +Gridley +Gridley Bryant +Grier +Grierson +Grieve Glen +Grieves +Griff +Griffanti +Griffe +Griffen +Griffey +Griffin +Griffin Brook +Griffin Farm +Griffin Oaks +Griffing +Griffing Park +Griffins +Griffiss +Griffit +Griffith +Griffith Farm +Griffith Industrial +Griffiths +Griffon +Griffth +Grifon +Grigg +Griggs +Griglio +Grigsby +Grijalva +Grill +Grimeford +Grimes +Grimley +Grimm +Grimmer +Grimmett +Grimsby +Grimsby on Oxford +Grimsdells +Grimsditch +Grimsdyke +Grimshaw +Grimsley +Grimstone +Grimthorpe +Grimwade +Grimwood +Grin Low +GrindStone +Grindal +Grindall +Grindel +Grinder +Grindle +Grindley +Grindon +Grindsbrook +Grindstone +Griner +Grinnel +Grinnell +Grinstead +Grinsted +Grinton +Grisborne +Griscom +Grisdale +Grissom +Grist Mill +Gristmill +Gristmill Square +Gristone +Griswold +Gritstone +Gritte +Grittleton +Grizedale +Grizilo +Grizzly Flat +Grizzly Island +Grizzly Oaks +Grizzly Peak +Grizzly Rock +Grizzly Terrace +Groah +Groat Point +Grobars +Grobelny +Groben +Groberg +Grobie Pond +Groby +Groce +Grochowiak +Groen +Groesbeck Hill +Groff +Grofsick +Grogan +Groh +Grohmans +Gromer +Grommet +Grommon +Grondine +Gronwall +Groom +Groom Cottage +Groombridge +Groomlands +Grooms +Groomsby +Groomsland +Groote +Gropius +Grosbeak +Grosby +Grose +Grose Farm +Groshon +Grosmont +Gross +Gross Point +Grosse +Grosse Pointe +Grosset +Grossman +Grossmont +Grossweiler +Grosvener +Grosvenor +Grosvenor Wharf +Grote +Groth +Grothman +Grotke +Groton +Groton Harvard +Groton School +Groton Shirley +Grott +Grotto +Grotto Glen +Grottoes +Ground +Ground Pine +Grounds +Groundsel +Grouse +Grouse Run +Grouserun +Grove +Grove Angle +Grove Crescent +Grove Cross +Grove End +Grove Farm +Grove Green +Grove Hall +Grove Heath +Grove Hill +Grove House +Grove Mill +Grove Park +Grovebury +Grovedale +Grovefield +Grovefields +Grovehall +Groveherst +Grovehill +Grovehurst +Groveland +Grovelands +Groveleigh +Groveley +Grovemont +Grovemore +Grovenor +Grover +Grovers +Grovers Turn +Groverville +Groves +Groveside +Grovesnor +Groveton +Groveton Gardens +Grovetown +Groveview +Grovewood +Grow +Growney +Grub +Grubb +Grubbs +Gruber +Grubwood +Gruenhagen +Gruenther +Gruenwald +Grumman +Grunauer +Grunberg +Grundel +Grundey +Grundy +Grundy County Line +Gruneisen +Grunewald +Grymes Hill +Gryphon +Grystalwood +Guadalajara +Guadalcanal +Guadalupe +Guadalupe Canyon +Guadalupe Mines +Guam +Guard +Guardian +Guardino +Guards +Guards Club +Guava +Guay +Guayamas +Guaymas +Gubbins +Gubbuteh +Gubernat +Gubyon +Gude +Gudelsky +Gudrun +Guelphs +Guenever +Guenoc +Guenter +Guenther +Guenza +Guerie +Guerin +Guerino +Guerlain +Guerne Hill +Guerneville +Guernewood +Guerneys +Guernse +Guernsey +Guernsey Farm +Guerra +Guerrero +Guertin +Guess +Guessens +Guest +Gueudecourt +Guggiano +Guggins +Guglielmetti +Guibal +Guide +Guide Post +Guider +Guido +Guidotti +Guihen +Guild +Guildables +Guildberry +Guilden +Guilder +Guildersfield +Guildford +Guildford Lodge +Guildford Park +Guildhall +Guildhouse +Guildmore +Guildner +Guildown +Guildwood +Guile +Guileshill +Guilford +Guilford Run +Guilfoy +Guilfoyle +Guillemot +Guilles +Guilliver +Guinan +Guinard +Guinda +Guinea +Guinevere +Guinions +Guinness +Guinzburg +Guion +Guise +Guisti +Guisto +Guithavon +Guittard +Gulch +Guldeford +Gulden +Gulf +Gulf Keys +Gulfport +Gulfstream +Gulia +Gulick +Gulick Mill +Gull +Gull Hill +Gull Island +Gullane +Gullet Wood +Gulliver +Gullo +Gully +Gulton +Guluzzo +Gum +Gum Blossom +Gum Bottom +Gum Grove +Gum Spring +Gum Springs +Gum Springs Village +Gum Tree +Gum Wood +Gumara +Gumbooya +Gumbuya +Gumdale +Gumdrop +Gumleigh +Gumley +Gumnut +Gumping +Gumpus +Gumtree +Gumtree Park +Gumtrees +Gumview +Gumwood +Gun +Gun Back +Gun Club +Gun Hill +Gun Meadow +Gun Pit +Gun Rock +Gunar +Gunbalanya +Gunco +Gundah +Gundain +Gundaroo +Gundawarra +Gundersen +Gunderson +Gundibri +Gundimaine +Gundry +Gundrys +Gundulph +Gungah Bay +Gungarlin +Gungurru +Gunhouse +Gunia +Gunmakers +Gunn +Gunnamatta +Gunnar +Gunnarson +Gunnedah +Gunnell Farms +Gunnels Wood +Gunner Run +Gunnerfield +Gunners +Gunners Branch +Gunnersbury +Gunnery +Gunness +Gunning +Gunnison +Gunpowder +Gunsight Fire +Gunson +Gunston +Gunston Corner +Gunston Cove +Gunston Hill +Gunstor +Gunsynd +Guntawong +Gunter +Gunters +Gunterstone +Gunther +Gunthorpe +Gunton +Guntzer +Gunwood +Gunya +Gunyah +Guptill +Gurdon +Gurdwara +Gurdwara Neville +Gurin +Gurley +Gurnee +Gurnells +Gurner +Gurnet +Gurney +Gurney Court +Gurnsey +Gurrier +Gurry +Gurton +Gus Young +Gushee +Gushue +Gussett +Gustafson +Gustav +Gustave +Gustavus +Gusted Hall +Gustin +Gustine +Gusto +Guston +Gustus +Gusty +Gusty Knoll +Gutedel +Guth +Gutheil +Gutherie +Guthmiller +Guthrie +Gutierrez +Guting +Gutkowski +Guttenberg +Gutter +Gutteridge +Gutters +Guttman +Guy +Guy Dituri +Guy Lombardo +Guy R Brewer +Guy R. Brewer +Guyer +Guyon +Guyong +Guyra +Guys +Guys Farm +Guysborough +Guyscliffe +Guysfield +Guywood +Guzman +Guzzlebrook +Gwalior +Gwandalan +Gwea +Gweal +Gwelo +Gwen +Gwenbury +Gwendale +Gwendalen +Gwendolen +Gwendoline +Gwendolyn +Gwendor +Gweneth +Gwernon +Gwin +Gwinett +Gwinette +Gwinn +Gwinnett +Gwladys +Gwyder +Gwydir +Gwydor +Gwydyr +Gwyn +Gwyndale +Gwyne +Gwynn +Gwynndale +Gwynne +Gwynne Park +Gybbons +Gyen +Gymea Bay +Gymkhana +Gymnasium +Gymoty +Gynant +Gyorr +Gypsum +Gypsy +Gypsy Hill +Gypsy Moth +Gypsy Valley +H A Wyeth Sr +H Diggs +H Fernwood +H Line Fire +H Ranch +HIghfield +HIghview +HIll +HIllside +HMS Essington +HMS Fitzroy +HMS Halsted +HMS Whitaker +Ha Ha +Haab +Haag +Haan +Haar +Haarlem +Haas +Haase +Habben +Habberton +Habel +Haben +Haber +Haberdasher +Haberfield +Habershon +Habgood +Hacianda +Hacienda +Haciendas +Hack +Hackamore +Hackberry +Hackbridge +Hacked Way +Hacken +Hacken Bridge +Hackensack +Hackensack Plank +Hacker +Hackett +Hacketts +Hacketts Pond +Hackfeld +Hackford +Hackhurst +Hacking +Hackle +Hacklorn +Hackman +Hackmans +Hackmore +Hackness +Hackney +Hackney Dalston +Hackney Coach +Hackney Tesco Morning +Hackwood +Hacton +Hadbutt +Haddam +Haddassah +Haddaway +Hadde +Hadden +Haddenfield +Haddenham +Haddesley +Haddington +Haddo +Haddock +Haddon +Haddon Hall +Haddonfield +Haddow +Hadenfeld +Hadfield +Hadham +Hadland +Hadleigh +Hadleigh Park +Hadley +Hadley Farms +Hadley Green +Hadley Hill +Hadley Run +Hadley Wood +Hadlow +Hadlow Down +Hadrian +Hadwen +Hadwin +Hadyn Park +Haeg +Haegers Bend +Haering +Haerse +Haeseler +Hafenrichter +Hafer +Hafey +Haff +Hafner +Hafstrom +Haft +Hafton +Hag Bank +Hag Hill +Haga +Hagadorn +Hagafen +Hagaman +Hagan +Hagans +Hagar +Hagdell +Hage +Hagel +Hageman +Hagemann +Hagen +Hagen Oaks +Hagenberger +Hager +Hagerman +Hagert +Haggard +Hagger +Haggers +Haggerston +Haggerty +Haggetts Pond +Haggie +Haggin +Haggin Oaks +Haglands +Hagley +Haglis +Haglund +Hagman +Hagsdell +Hague +Hague Bar +Hahl +Hahman +Hahn +Hahnemann +Hahns +Haider +Haidlen +Haig +Haigh +Haigh Moor +Haigh Park +Haigh Wood +Haighside +Haight +Haile +Hailey +Hailsham +Hailstone +Haimo +Hainault +Haines +Haines Ranch +Haining +Hainline +Hainsworth +Hainthorpe +Haire +Haise +Haislip +Haith +Haiti +Hakea +Hal +Halaper +Halbert +Halborn +Halco +Halcomb +Halcourt +Halcrow +Halcyon +Haldane +Haldeman +Halden +Haldon +Hale +Hale Haven +Hale House +Hale Low +Hale Oak +Hale Park +Hale Ranch +Haleakala +Halebank +Haledon +Halefield +Halepit +Hales +Hales Hollow +Hales Trace +Halesden +Halesmith +Halesowen +Haleswood +Halesworth +Halethorpe +Halethorpe Farms +Halevy +Haley +Haley Meadows +Haleybird +Half +Half Acre +Half Crown +Half Day +Half Dome +Half Edge +Half Mile +Half Moon +Half Moon Bay +Half Penny +Half Round +Halfacre +Halfcrown +Halfe +Halfhide +Halfmoon +Halford +Halfpence +Halfpenny +Halfway +Halgren +Haliard +Haliburton +Halibut +Halick +Haliday +Halifax +Halifield +Haligus +Halimote +Halina +Halinda +Haling +Halite +Halkin +Halkins +Halko +Hall +Hall Acres +Hall Brown +Hall Creek +Hall Farm +Hall Green +Hall House +Hall Lee +Hall Meadow +Hall Memorial +Hall Moss +Hall Park +Hall Place +Hall Pond +Hall Pool +Hall Ranch +Hall Shop +Halladay +Hallam +Hallandale +Hallberg +Hallbright +Hallbrook +Hallcrest +Halleck +Hallefield +Hallen +Hallenoak +Haller +Hallet +Hallet Davis +Hallett +Hallett Hill +Halley +Hallfields +Hallgate +Hallgren +Halli +Halliday +Halliden +Halliford +Halligan +Hallin +Hallingbury +Hallister +Halliwell +Halliwick +Hallman +Hallmark +Hallmead +Hallo +Hallock +Hallocks Point +Halloran +Hallow +Hallow Vale +Halloway +Halloween +Hallowell +Hallowing +Hallows +Hallran +Hallron +Halls +Halls Green +Halls Grove +Halls Hole +Hallsfield +Hallside +Hallsons +Hallstead +Hallsville +Hallswelle +Halltown +Hallwicks +Hallwood +Hallworth +Hally +Halm Oak +Halmar +Halmore +Halmos +Halmstad +Halnaker +Halo +Halock +Halperin +Halpine +Halsall +Halsbrook +Halsbury +Halse +Halsey +Halsford +Halsford Park +Halsley +Halsmere +Halstad +Halstead +Halsteads +Halsted +Halston +Halstone +Halsworth +Halt +Halter +Halterman +Halton +Halton Cross +Halton Moor +Halton Wood +Haltwhistle +Halvard +Halverson +Halvorsen +Halwis +Halyard +Halycon +Ham +Ham Ashburnham +Ham Ashburnham +Ham Mill +Ham Park +Haman +Hamand +Hamann +Hamar +Hamas +Hambalt +Hamberlins +Hamberts +Hambey +Hamble +Hambledon +Hambledown +Hamblen +Hamblet +Hambleton +Hambletonian +Hamblett +Hamblin +Hambly +Hamborough +Hambrick Manor +Hambridge +Hambro +Hambrook +Hamburg +Hamden +Hamel +Hamelin +Hamels +Hamelyn +Hamer +Hamerick +Hamersley +Hamerstone +Hamerton +Hames +Hamesmoor +Hamfrith +Hamilcar +Hamill +Hamilton +Hamilton Hill +Hamilton Manor +Hamilton Park +Hamilton Spring +Hamiltonian +Hamlen +Hamlet +Hamlet Court +Hamley +Hamlin +Hamlin Park +Hamline +Hamline Service +Hamm Moor +Hammarlee +Hammatt +Hammel +Hammelton +Hammer +Hammer Hill +Hammer Hook +Hammerhead +Hammerlee +Hammerpond +Hammers +Hammerschmidt +Hammersley +Hammersmith +Hammerstone +Hammerton +Hammertown +Hammerwood +Hammes +Hammett +Hammitt +Hammock +Hammon +Hammond +Hammond Branch +Hammond Pond +Hammonds +Hammonds End +Hammonds Ferry +Hammonds Plains +Hammondswood +Hammons +Hammonton +Hamnett +Hamon +Hamor +Hamowell +Hampden +Hampden Gurney +Hampel +Hampermill +Hampers +Hampshire +Hampshire Green +Hampshire Hog +Hampson +Hampson Mill +Hampstead +Hampstead High +Hamptom Park +Hampton +Hampton The +Hampton Brook +Hampton Course +Hampton Court +Hampton Creek +Hampton Hill +Hampton Hollow +Hampton Hunt +Hampton Knoll +Hampton Lake +Hampton Oak +Hampton Park +Hampton Point +Hampton Ridge +Hampton Woods +Hamptondale +Hamptons +Hampworth +Hamrick +Hamsell +Hamsley +Hamson +Hamstead +Hamstel +Hamstreet +Hamstrom +Hamton +Hana +Hanameel +Hanback +Hanburg +Hanbury +Hanby +Hance +Hancey +Hanchett +Hanco Center +Hancock +Hancock Hill +Hancombe +Hancott +Hancox +Hancroft +Hand +Handcroft +Handcross +Handel +Handford +Handforth +Handle +Handlebar +Handley +Handley Page +Hands +Handside +Handsworth +Handverg +Handwerg +Handy +Handzel +Hane +Hanes +Haney +Hanfling +Hanford +Hangar +Hanger +Hanger Vale +Hanging Birch +Hanging Chadder +Hanging Hill +Hangings +Hangmans +Hanian +Hanifan +Hanigan +Hank +Hanken +Hankerson +Hankes +Hankin +Hankins +Hanks +Hankshaw +Hanlan +Hanley +Hanlon +Hanly +Hanlye +Hanmer +Hanmore +Hanna +Hanna Bay +Hanna Park +Hanna Ranch +Hannaford +Hannah +Hannah Farm +Hannah Pearl +Hannahs Pond +Hannam +Hannan +Hannans +Hannay +Hanne +Hannen +Hannerton +Hannes +Hannet +Hannett +Hannibal +Hannigan +Hannington +Hannis +Hannon +Hannons +Hannora +Hannover +Hanns +Hannum +Hano +Hanover +Hanrahan +Hanrehan Lake +Hans +Hansard +Hansborough +Hansbury +Hansby +Hansch +Hanscom +Hanse +Hansel +Hansell +Hansen +Hansens +Hansford +Hanshaw +Hansler +Hansletts +Hanslow +Hansol +Hansom +Hanson +Hanson Ridge +Hanton +Hantz +Hanus +Hanway +Hanworth +Hanyards +Hap Arnold +Hapgood +Happ +Happy +Happy Acres +Happy Choice +Happy Creek +Happy Heart +Happy Hills +Happy Hollow +Happy Valley +Happy Valley Glen +Happyland +Hapton +Hara +Haralson +Haran +Haraszthy +Harback +Harbell +Harben +Harbern +Harberson +Harberton +Harberts +Harbet +Harbin +Harbinger +Harbison +Harbledown +Harbolets +Harbor +Harbor Bay +Harbor Court +Harbor Heights +Harbor Hill +Harbor Hills +Harbor House +Harbor Light +Harbor Lights +Harbor Oak +Harbor Oaks +Harbor Park +Harbor Place +Harbor Point +Harbor Ridge +Harbor Side +Harbor Terrace +Harbor Town +Harbor Tree +Harbor Valley +Harbor View +Harbor Villa +Harbord +Harboro +Harborough +Harborough Hall +Harborside +Harborview +Harborwood +Harbour +Harbour Club +Harbour Cove +Harbour Farm +Harbour Gates +Harbour Heights +Harbour Point +Harbour Shore +Harbour Town +Harbour View +Harbourer +Harbourfield +Harbourne +Harbourtown +Harbourwood +Harbridge +Harbury +Harbut +Harby +Harcombe +Harcourt +Harcross +Harcus +Hard Platts +Hardan +Hardaway +Hardcastle +Harde +Hardees +Hardeman +Harden +Harden Hill +Hardenbergh +Hardenburg +Hardenburgh +Harder +Harders +Hardess +Hardester +Hardesty +Hardfield +Hardie +Hardies +Hardiman +Hardin +Harding +Harding Hall +Hardinge +Hardings +Hardings Elms +Hardman +Hardmans +Hardrock +Hardrow +Hards +Hardscrabble +Hardwell +Hardwick +Hardwicke +Hardwidge +Hardwood +Hardwood Forest +Hardy +Hardy Mill +Hardy Pond +Hardy Ridge +Hardywood +Hare +Hare Farm +Hare Hall +Hare Hill +Harebell +Harecombe +Harecourt +Harecroft +Haredale +Harefield +Harehatch +Harehills +Harehills Compton +Harehills Easterly +Harehills Park +Harelands +Hares +Haresfield +Hareshill +Harestone +Harestone Valley +Hareward +Harewood +Harewood Arms The +Harff +Harfield +Harford +Harfred +Harg +Hargate +Hargate Hill +Harger +Hargo +Hargold +Hargood +Hargrave +Hargraves +Hargreaves +Hargrove +Hargus +Hargwyne +Haring +Haring Farm +Haringa +Haringey +Harjean +Hark +Harkeith +Harker +Harkhurst +Harkim +Harkin +Harking +Harkins +Harkins Slough +Harkison +Harkle +Harkleroad +Harkness +Harlan +Harland +Harlands +Harle +Harlea +Harlech +Harledene +Harleigh +Harlem +Harlem River +Harlequin +Harlescott +Harlesden +Harlesden Manor Park +Harleston +Harley +Harley Run +Harleyford +Harlin +Harling +Harlinger +Harlington +Harliss +Harlow +Harlowe +Harlyn +Harman +Harmans +Harmans Water +Harmel +Harmer +Harmer Green +Harmich +Harmon +Harmon Meadow +Harmoni +Harmony +Harmony Acres +Harmony Grove +Harmony Hall +Harmony Hill +Harmony Ranch +Harmony Woods +Harms +Harmston +Harmsworth +Harn Ranch +Harnden +Harned +Harness +Harness Creek +Harness Creek View +Harness Shop +Harnett +Harney +Harnham +Harnish +Harnleigh +Harnley +Harold +Harold Court +Harold Hill Gooshays +Harold Lees +Harold Parker +Harold Secord +Harold Smith +Harold Woods +Haroldene +Harolds +Haroldslea +Haroldstone +Harp +Harp Farm +Harp Meadow +Harpenden +Harper +Harper Fold +Harper Green +Harpers +Harpers Cove +Harpers Farm +Harpers Ferry +Harpers Mill +Harpesford +Harpford +Harpin +Harpole +Harpour +Harps +Harps Oak +Harpsden +Harpster +Harptree +Harpur +Harpur Hill +Harpurhey +Harrabrook +Harraden +Harrel +Harrell +Harreton +Harridge +Harrier +Harriet +Harriet Tubman +Harriett +Harriette +Harrigan +Harriman +Harringay +Harrington +Harrington Ridge +Harriot +Harriots +Harriott +Harriotts +Harris +Harris Farm +Harris Heights +Harris Hill +Harris Hills +Harris Pond +Harrisburg +Harrishof +Harrison +Harrison Grade +Harrison Hill +Harrison Hollow +Harrison School +Harrisons +Harristown +Harrisville Main +Harrivan +Harrod +Harrogate +Harrogate on Oxford +Harrold +Harrop +Harrop Court +Harrop Edge +Harrop Green +Harrow +Harrow Bottom +Harrow View +Harroway +Harrowband +Harrowby +Harrowden +Harrowdene +Harrowgate +Harrowhill +Harrows +Harrowsgate +Harry +Harry Davis +Harry Homans +Harry J Rogowski +Harry S Truman +Harrys +Harseille +Harsek +Harshman +Harston +Hart +Hart Dyke +Hart Farm +Hart Forest +Hart Hill +Hart Hills +Hart Mews +Harte +Hartell +Harter +Hartfield +Hartford +Hartford Hills +Hartforde +Hartgate +Harthall +Hartham +Harthill +Harthouse +Hartigan +Harting +Harting Farm +Hartington +Hartis +Hartkopf +Hartlake +Hartland +Hartlawn +Hartles +Hartley +Hartley Bottom +Hartley Court +Hartley Old +Hartman +Hartman Creek +Hartman Hill +Hartmann +Hartnell +Hartness +Hartnett +Hartnoll +Hartnup +Hartog +Harton +Hartong +Hartrey +Hartridge +Harts +Harts Hill +Harts Leap +Hartsbourne +Hartsburg +Hartsdale +Hartsfield +Hartshead +Hartshill +Hartshorn +Hartshorne +Hartslands +Hartsmead +Hartson +Hartsop +Hartspiece +Hartspring +Hartsuff +Hartswood +Hartung +Hartungs Oaks +Hartville +Hartway +Hartwell +Hartwich +Hartwick +Hartwood +Harty +Harty Ferry +Hartz +Hartzell +Haruff +Harugari +Harvale +Harvard +Harvard Bend +Harvard Depot +Harve +Harvel +Harvell +Harvest +Harvest Bank +Harvest Bend +Harvest Crossing +Harvest Falls +Harvest Field +Harvest Gold +Harvest Green +Harvest Hill +Harvest Landing +Harvest Mills +Harvest Moon +Harvest Oak +Harvest Park +Harvest Ridge +Harvest Run +Harvest Sun +Harvest Valley +Harvest View +Harvest Woods +Harvester +Harvester Farm +Harvesting +Harvestwood +Harvey +Harvey Lake +Harvil +Harvill +Harville +Harvist +Harwalt +Harwarden +Harwater +Harway +Harwell +Harwich +Harwick +Harwill +Harwin +Harwood +Harwood Hall +Harwoods +Hasbrouck +Hascall +Hascomb +Hascombe +Haseco +Hasedines +Haseldine +Haseley +Haselfoot +Haselrigge +Haseltine +Haselwood +Hasey +Haskard +Haskell +Hasker +Hasketon +Haskett +Haskin +Haskins +Haskney +Haskoll +Haslam +Hasle +Haslemere +Hasler +Haslers +Haslet +Haslett +Haslewood +Hasley +Haslingbourne +Hasluck +Haspel +Hassake +Hassal +Hassall +Hassard +Hassart +Hasselburgh +Hassell +Hassenbrook +Hassendean +Hassert +Hasset +Hassett +Hassler +Hassock +Hassocks +Hassold +Hassop +Hastards +Haste +Haste Hill +Hasted +Hasting +Hastings +Hastings Island +Hastings Mill +Hastings Shore +Hastingwood +Hastoe +Hasty +Hatch +Hatch Gate +Hatch Way +Hatcham +Hatcham Park +Hatchard +Hatcher +Hatchery +Hatches +Hatchet Rock +Hatchett +Hatchetts +Hatchfield +Hatchgate +Hatchlands +Hatchley +Hatchway +Hatcliff +Hatfield +Hatford +Hatham Green +Hathaway +Hatherall +Hatherleigh +Hatherley +Hatherlow +Hatherly +Hathern +Hatherop +Hathersage +Hathersham +Hathershaw +Hatherton +Hatheway +Hathorn +Hathorne +Hathway +Hatley +Hatmark +Hatmill +Hatona +Hatpat +Hattan +Hatte Gray +Hatter +Hatteraick +Hatters +Hatters Hill +Hattersley +Hattie +Hattingley +Hatton +Hatton Point +Hattons +Hatzis +Hauck +Haug +Hauge +Haugh +Haugh Hill +Haughton +Haughton Green +Haughton Hall +Haughwout +Haul +Haultain +Hauman +Hauppauge +Hauschildt +Hauser +Hauser Bridge +Hausman +Haussermann +Haussler +Haussmann +Haussner +Hautevale +Hauth +Hauxhurst +Havana +Havannah +Havant +Havard +Havasu +Havelock +Havelok +Havemeyer +Haven +Haven Green Gordon +Haven Hill +Havenbrook +Havencrest +Havendale +Havenfield +Havengore +Havenhill +Havenhurst +Havenner +Havenpark +Havens +Havensbrook +Havenscourt +Havenshire +Havenside +Havenview +Havenwood +Havenworth +Haverfield +Haverford +Haverhill +Havering +Haverley +Haverlock +Havermeyer +Havers +Haversack +Haversham +Haverstock +Haverthwaite +Haverton +Havey +Havil +Havilah +Havilan +Haviland +Haviland Mill +Havilend +Havis +Havisham +Havlicek +Havre +Havre de Grace +Haw +Haw Clough +Hawaii +Haward +Hawarden +Hawbeck +Hawbridge +Hawdon +Hawes +Haweswater +Haweswood +Hawfinch +Hawgood +Hawhorn +Hawick +Hawk +Hawk Channel +Hawk Crest +Hawk Green +Hawk Hallow +Hawk Haven +Hawk Hill +Hawk Hollow +Hawk Ridge +Hawk View +Hawk Yard +Hawkaway +Hawkchurch +Hawke +Hawke Park +Hawken +Hawkenbury +Hawker +Hawkes +Hawkesbourne +Hawkesbury +Hawkesbury Bush +Hawkesfield +Hawkesmore +Hawkewood +Hawkeye +Hawkfield +Hawkhill +Hawkhirst +Hawkhurst +Hawkins +Hawkins Creamery +Hawkins Gate +Hawkins Hall +Hawkins Point +Hawkridge +Hawks +Hawks Bill +Hawks Hill +Hawks Hollow +Hawks Nest +Hawks Peak +Hawks on Second +Hawksbrook +Hawksbury +Hawkshaw +Hawkshead +Hawkshill +Hawkslade +Hawksley +Hawksmoor +Hawkstone +Hawksview +Hawkswick +Hawkswood +Hawksworth +Hawktree +Hawkview +Hawkweed +Hawkwell +Hawkwell Park +Hawkwood +Hawley +Hawley Woods +Hawleys +Hawlings +Hawlings River +Haworth +Hawridge +Haws +Hawsbrook +Hawser +Hawstead +Hawth +Hawthorn +Hawthorn Park +Hawthorne +Hawthorne Farms +Hawthorne Hill +Hawthorne Ridge +Hawthorne Woods +Hawthrone +Hawtree +Hawtree Creek +Hawtrey +Hawxhurst +Haxby +Haxted +Haxtun +Hay +Hay Camp +Hay Creek Hills +Hay Creek Valley +Hay Currie +Hay Green +Hay Meadow +Hay Path +Haybarn +Hayberry +Haybluff +Hayburn +Haycock +Hayday +Hayden +Hayden Brook +Hayden Lake +Hayden Rowe +Haydens +Haydn +Haydock +Haydon +Haydon Park +Haydons +Hayenga +Hayes +Hayes George +Hayes Lansbury +Hayes End +Hayes End Angel +Hayes Hill +Hayes Leonard +Hayes Manor +Hayes Memorial +Hayes Wood +Hayesford Park +Hayeswater +Hayfield +Hayfields +Hayford +Hayhouse +Hayhurst +Hayle +Hayle Mill +Hayleigh +Hayles +Haylett +Hayley +Haylind +Hayling +Hayloft +Haymaker +Haymakers +Hayman +Haymarket +Haymeadow +Haymeads +Haymen +Haymerle +Haymet +Haymill +Haymond +Hayne +Haynes +Haynes Green +Haynesworth +Hayrack +Hayrick +Hays +Haysbrook +Haysden +Hayshire +Haystack +Hayter +Haythorp +Hayvick +Hayward +Hayward Farms +Hayward Mill +Haywards +Haywards Heath +Haywood +Hayworth +HazEl +HazElton +HazElwood +Hazard +Hazebrouck +Hazel +Hazel Crest +Hazel Dell +Hazel End +Hazel Nut +Hazel Ridge +Hazel Thicket +Hazel Tree +Hazelbadge +Hazelbank +Hazelbottom +Hazelbourne +Hazelbridge +Hazelbrook +Hazelbury +Hazelcrest +Hazeldean +Hazeldell +Hazeldene +Hazeldon +Hazeleigh Hall +Hazelglen +Hazelgrove +Hazelhurst +Hazell +Hazellville +Hazelmead +Hazelmere +Hazelmoor +Hazelnut +Hazelrig +Hazels +Hazeltine +Hazeltine Bluff +Hazelton +Hazeltree +Hazelview +Hazelwick +Hazelwick Mill +Hazelwood +Hazen +Hazlebank +Hazlebury +Hazledean +Hazlehurst +Hazlemere +Hazlet +Hazleton +Hazlett +Hazlewell +Hazlewood +Hazley +Hazlitt +Hazzard +Heacham +Heacox +Head +Headcorn +Headingley +Headingley North +Headingley Shaw +Headingly +Headington +Headlam +Headland +Headlands +Headley +Headley Common +Headley High +Headley Hill +Headline +Headly +Headquarters +Headrow +Headstone +Headwater +Headwaters +Heady Hill +Heafey +Heald +Healds +Healdsburg +Healdwood +Healey +Healing +Health Center +Health Sciences +Healthway +Healy +Healy Farm +Heaney +Heapey +Heapey Fold +Heapworth +Heapy +Heard +Hearford +Hearle +Hearn +Hearne +Hearns +Hearnshaw +Hearnville +Hearsall +Hearst +Heart Leaf +Heartbreak +Heartenoak +Heartfields +Hearth +Hearthridge +Hearthside +Hearthstone +Hearthwood +Heartland +Heartland Ranch +Heartlander +Hearts Bay +Hearts Delight +Heartstead +Heartwood +Heath +Heath Close +Heath Cote +Heath End +Heath Farm +Heath Green +Heath Hall +Heath House +Heath Hurst +Heath Mill +Heath Park +Heath View +Heathbank +Heathbrook +Heathbrow +Heathcliff +Heathclose +Heathcote +Heathcroft +Heathdale +Heathdene +Heather +Heather Crest +Heather Dawn +Heather Dell +Heather Down +Heather Garden +Heather Glen +Heather Green +Heather Heights +Heather Hill +Heather Hills +Heather Mist +Heather Point +Heather Ridge +Heather Tree +Heatherbloom +Heatherbrook +Heathercreek +Heatherdale +Heatherden +Heatherdene +Heatherfield +Heatherhill +Heatherland +Heatherleaf +Heatherleigh +Heatherley +Heathermead +Heathermore +Heathermount +Heatherpace +Heatherside +Heatherstone +Heathertoe +Heatherton +Heatherton Ridge +Heathertree +Heathervale +Heatherview +Heatherway +Heatherwick +Heatherwold +Heatherwood +Heatherwood Estates +Heathfield +Heathfields +Heathgate +Heathhurst +Heathland +Heathlands +Heathlee +Heathleigh +Heathmans +Heathmoor +Heathorn +Heathpark +Heathrow +Heaths Bridge +Heathside +Heathside Park +Heathstan +Heathvale Bridge +Heathview +Heathwalk +Heathwall +Heathway Church Elm +Heathwick +Heathwood +Heathyfields +Heatley +Heaton +Heaton Grange +Heaton Moor +Heaton Park +Heavegate +Heaven +Heaven Hill +Heavenly +Heavenly Ridge +Heaver +Heavey +Heavilin +Heavitree +Hebard +Hebberd +Hebburn +Hebden +Hebe +Heber +Hebert +Heberto +Heberton +Hebron +Hechinger +Hecht +Heckel +Heckelman +Hecker +Hecker Pass +Heckfield +Heckford +Heckle +Heckmondwike +Heckmondwike Regent +Heckmondwyke Market +Heckscher +Hecla +Hectic Hill +Hector +Hedberg +Hedding +Heddings +Heddon +Heddy +Hedegard +Hedge +Hedge Hopper +Hedge Neck +Hedge Place +Hedge Row +Hedgeford +Hedgehog +Hedgehope +Hedgeman +Hedgemans +Hedger +Hedgerley +Hedgerow +Hedges +Hedges Run +Hedgeside +Hedgetop +Hedgewick +Hedgewood +Hedgley +Hediger +Hedin +Hedingham +Hedley +Hedlund +Hedman +Hedrick +Hedsor +Hedwig +Hedworth +Hedy +Heel +Heelan +Heelas +Heeley +Heenan +Heene +Heeswyk +Hefferman +Heffernan +Heflin +Hegarty +Hegel +Hegeman +Hegemans +Hegerty +Heggen +Heggs +Hegi +Heide +Heideburg +Heidelberg +Heiden +Heidenrich +Heidi +Heidi Ranch +Heidleberg +Heidleburg +Heidorn +Heidorn Ranch +Heidrick +Heiges +Heigham +Heights +Heights Of Hill +Heighway +Heikes +Heil +Heilicia +Heiling +Heilsburg +Heimel +Heimgartner +Heims +Hein +Heindel +Heindrich +Heine +Heinel +Heiner +Heinestrasse +Heinke +Heinrich +Heins +Heinz +Heinze +Heinzelman +Heirloom +Heiron +Heiser +Heiskell +Heitzman +Hejka +Hekenberg +Helado +Helby +Helden +Heldt +Heldts +Heldun +Helen +Helen Macintosh +Helen Power +Helena +Helene +Helens +Helenslea +Helenwood +Helfred +Helfrich +Helga +Heling +Helio +Helions +Helios +Heliotrope +Helix +Hellard +Hellards +Hellen +Hellen Lee +Hellendoorn +Hellenic +Heller +Helles +Hellings +Hellman +Hellweg +Hellwig +Hellwood +Hellyer +Helm +Helm Cottage +Helman +Helmar +Helmart +Helmer +Helmet +Helmetta +Helmetta Jamesburg +Helmick +Helmond +Helmons +Helmont +Helmore +Helmsdale +Helmshore +Helmsley +Helmstetter +Helmuth +Helo +Help +Helperby +Helsby +Helsel +Helston +Helton +Heltzer +Helva +Helvellyn +Helvetia +Helvetta +Heman +Hemberton +Hembree +Hembroff +Hembury +Hemdean +Hemel Hempstead +Hemenway +Hemery +Hemet +Heming +Hemingford +Hemington +Hemingway +Hemishor +Hemley +Hemlock +Hemlock Hill +Hemlock Park +Hemlock Pool +Hemlock Ridge +Hemlock Tree +Hemlock Woods +Hemman +Hemme +Hemmen +Hemmer +Hemming +Hemmingsen +Hemmington +Hemmingway +Hemmons +Hemnall +Hemond +Hemp +Hempcroft +Hemphill +Hempland +Hempshaw +Hempshire +Hempson +Hempstead +Hempstead Valley +Hempstone +Hemsby +Hemsley +Hemstal +Hemstead +Hemsted +Hemstock +Hemswell +Hemsworth +Hemwood +Hen Fold +Henage +Henaor +Henbury +Henchman +Henconner +Hendale +Hendee +Hendel +Henderson +Henderson Corner +Hendham +Hendler +Hendley +Hendon +Hendre +Hendrick +Hendricks +Hendrickson +Hendrie +Hendrix +Hendry +Hendy +Henessy +Henfield +Henfold +Hengist +Henham +Henhawk +Henhurst +Henhurst Cross +Heniker +Henitz +Henke +Henkels +Henley +Henley Marine +Henley Wood +Henmar +Henmarken +Henn Parks +Henna +Henneberry +Hennen +Hennepin +Hennepin Town +Hennes +Hennessey +Hennessey Ridge +Hennessy +Hennig +Henniker +Henning +Hennings +Hennion +Hennipen +Henno +Henno Ranch +Hennon +Henny Back +Henoch +Henon +Henri +Henri Hill +Henrici +Henricks +Henrickson +Henrico +Henrietta +Henrik Ibsen Park +Henriques +Henry +Henry Adams +Henry Cowell +Henry Dixon +Henry Doulton +Henry Fleet +Henry Ford II +Henry Garnett +Henry Herz +Henry Hudson +Henry J +Henry Jackson +Henry Kendall +Henry Knox +Henry L. +Henry Lawler +Henry Lawson +Henry Lee +Henry Legg +Henry Long +Henry Macaulay +Henry Peters +Henry Turner Bailey +Henrys +Henryson +Hens Rest +Hensel +Henshall +Henshaw +Henshawe +Hensill +Hensler +Hensley +Henslowe +Henson +Henty +Henwick +Henwood +Henwood Green +Henzi +Henzie +Hepburn +Hepburn Heights +Hepher +Hepley +Hepner +Heppleton +Heppner +Hepscott +Hepworth +Herald +Herald Harbor +Herath +Herb +Herb Elliot +Herb Farm +Herb Hill +Herbage Park +Herbalist +Herbazal +Herberg +Herbert +Herbert Breclaw +Herbert Creek +Herbert Sachs +Herbert Springs +Herberts Crossing +Herbertson +Herbhill +Herbill +Herbing +Herbrand +Herbst +Herchell +Hercies +Hercules +Herd +Herdlyn +Heredia +Heredity +Hereford +Herendon +Herent +Herevale Hall +Hereward +Herford +Herfort +Herga +Hergesell +Herget +Hering +Heriot +Heristone +Heritage +Heritage Crossing +Heritage Estates +Heritage Farm +Heritage Farms +Heritage Glen +Heritage Hill +Heritage Hills +Heritage Hunt +Heritage Lake +Heritage Landing +Heritage Manor +Heritage Meadow +Heritage Meadows +Heritage Oaks +Heritage Park +Heritage Rose +Heritage Square +Heritage Tree +Heritage Valley +Heritage Village +Heritage Woods +Herkimer +Herkner +Herkomer +Herley +Herlihy +Herlong +Herma +Hermaine +Herman +Herman Melville +Hermann +Hermans +Hermany +Hermasillo +Hermes +Hermies +Hermina +Hermine +Hermington +Hermiston +Hermit +Hermit Ranch +Hermitage +Hermitage Hills +Hermits +Hermitt +Hermleigh +Hermon +Hermon Hill Chigwell +Hermongers +Hermosa +Hermoyne +Hernandez +Hernando +Hernbrook +Herndon +Herne +Hernen +Herning +Herns +Hero +Herodian +Herold +Heron +Heron Bay +Heron Flight +Heron Lake +Heron Lakes +Heron Pond +Heron Wood +Herondale +Herons +Herons Nest +Herons Run +Heronslea +Heronswood +Herontye +Heronvue +Heronwood +Heroult +Heroux +Herpers +Herr +Herren +Herrera +Herrett +Herrick +Herricks +Herrier +Herries +Herriman +Herring +Herring Bay +Herring Brook +Herring Creek +Herring Pond +Herring Weir +Herringham +Herrings +Herrington +Herriot +Herriott +Herristone +Herrmann +Herrod +Herron +Hersam +Hersand +Hersch Farm +Herschel +Herschell +Hersey +Hersham +Hershey +Hershfield +Hershner +Hershon +Hersley +Hersman +Hersperger +Herst +Herston +Hertel +Herter +Hertford +Hertingfordbury +Hertslet +Hertsmere +Hervey +Hervey Park +Hervines +Herwick Hall +Herzel +Herzl +Herzog +Hesket +Hesketh +Hesketh Meadow +Heskin +Heslop +Hespeller +Hesper +Hesperian +Hesperus +Hess +Hesse +Hesse Farm +Hessel +Hesseltine +Hession +Hessle +Hessler +Hessney +Hesten +Hester +Hester Creek +Hestercombe +Hesterman +Heston +Heswall +Hetfield +Hetherden +Hetherington +Hetherton +Hethorn +Hethrow +Hetley +Heton +Hetrick +Hett +Hetten +Hettiefred +Hettinger +Hetton +Hetts +Hetzel +Heuer +Heurich +Heusted +Heustis +Heuters +Hevelyne +Hever +Hever Court +Hever Wood +Heverham +Hevern +Hevers +Hevey +Hevingham +Hew Watt +Hewart +Hewbold Hall +Hewer +Hewes +Hewetson +Hewett +Hewins +Hewins Farm +Hewison +Hewitt +Hewitts +Hewlett +Hewlett Heath +Hewlett Neck +Hewlett Point +Hewmason +Hews +Hewshott +Hewson +Hexal +Hexem +Hexham +Hextol +Hexton +Hexton Hill +Hey +Hey Beck +Hey Hoe Woods +Heybourne +Heybridge +Heybrook +Heycroft +Heyde +Heydon +Heyer +Heyes +Heyes Farm +Heyeswood +Heyford +Heygate +Heyheads New +Heykens +Heyland +Heyman +Heynes +Heyridge +Heyrod +Heys +Heysbank +Heysen +Heysham +Heyshoot +Heyside +Heysoms +Heyson +Heythorp +Heyward +Heyward Hills +Heywood +Heywood Fold +Heywood Hall +Heywood Old +Heyworth +Hezlet +Hezlett +Hh +Hi Grade +Hi Lo +Hi Vista +Hi Wood +Hialeah +Hiar +Hiawatha +Hibbard +Hibbert +Hibbling +Hibel +Hibernia +Hibiscus +Hibler +Hibner +Hichborn +Hichisson +Hickerson +Hickey +Hickey Hollow +Hickin +Hickman +Hickmans +Hickock +Hickok +Hickory +Hickory Bend +Hickory Cliff +Hickory Creek +Hickory Forest +Hickory Hill +Hickory Hills +Hickory Hollow +Hickory Knoll +Hickory Leaf +Hickory Nut Grove +Hickory Oaks +Hickory Point +Hickory Ridge +Hickory Run +Hickory Spring +Hickory Tavern +Hickory Trace +Hickory Valley +Hickory Wood +Hickorywood +Hickox +Hicks +Hicks Corner +Hicks Point +Hicks Valley +Hickson +Hickstead +Hicksville +Hickton +Hidalgo +Hidcote +Hidden +Hidden Acres +Hidden Bay +Hidden Brick +Hidden Bridge +Hidden Brook +Hidden Canyon +Hidden Cove +Hidden Creek +Hidden Falls +Hidden Farm +Hidden Fawn +Hidden Garden +Hidden Glade +Hidden Glen +Hidden Green +Hidden Harbor +Hidden Hill +Hidden Hills +Hidden Hollow +Hidden Knoll +Hidden Lake +Hidden Lakes +Hidden Ledge +Hidden Meadow +Hidden Mine +Hidden Moon +Hidden Oak +Hidden Oakes +Hidden Oaks +Hidden Pine +Hidden Pines +Hidden Point +Hidden Pond +Hidden Ponds +Hidden Ridge +Hidden River +Hidden River View +Hidden Spring +Hidden Springs +Hidden Trail +Hidden Vale +Hidden Valley +Hidden View +Hidden Village +Hiddenbrook +Hiddenbrooke +Hiddenhollow +Hiddenlake +Hiddenvale +Hiddenwood +Hide A Way +Hide Away +Hideaway +Hideout +Hides +Hideway +Hieber +Hield +Higate +Higbee +Higbie +Higby +Higdon +Higfh Bank +Higgerson +Higginbotham +Higgins +Higgins Park East +Higgins Park South +Higgins Park West +Higgins Purisima +Higgins Quarter +Higginshaw +Higginson +Higgs +High +High Ash +High Bank +High Bar +High Barn +High Beech +High Beeches +High Bent +High Bluff +High Bridge +High Broom +High Brooms +High Cedar +High Clear +High Cliff +High Cliffe +High Country +High Court +High Crest +High Cross +High Dewar +High Down +High Eagle +High Easter +High Elm +High Elms +High Farms +High Field +High Forest +High Gables +High Gate +High Glen +High Green +High Grove +High Grove Hills +High Gulch +High Haith +High Halden +High Hamstead +High Hatch +High Hay +High Hill +High Hills +High Holborn +High Hollow +High Hope Canyon +High House +High Knob +High Knoll +High Lake +High Lea +High Lee +High Legh +High Level +High Low +High Meadow +High Meadows +High Meads +High Mountain +High Oak +High Oaks +High Oxford +High Park +High Path +High Peak +High Pine +High Pines +High Plain +High Plains +High Plane +High Point +High Point Trails +High Pond +High Rid +High Ridge +High Rock +High Rocks +High School +High School Windmill +High School Windsor +High Site +High Terrace +High Thicket +High Timber +High Tor +High Town +High Trail +High Tree +High Trees +High Valley +High View +High View School +High Weardley +High Wood +High Woodhall +High Woods +High Wych +HighLands +Higham +Higham Hill +Higham School +Highams +Highbank +Highbanks +Highbarrow +Highboro +Highbourne +Highbridge +Highbrook +Highbury +Highbush +Highclere +Highcliff +Highcliffe +Highclove +Highcotts +Highcourt +Highcrest +Highcroft +Highcross +Highdales +Highdaun +Highdown +Highdown The Manor +Highdown Hill +Higher +Higher Barn +Higher Bents +Higher Bridge +Higher Bury +Higher Cambridge +Higher Carr +Higher Chatham +Higher Cross +Higher Darcy +Higher Dean +Higher Grange +Higher Green +Higher Knutsford +Higher Lime +Higher Lomax +Higher Market +Higher Ormond +Higher Pit +Higher Shady +Higher Swan +Higher Tame +Higher Turf +Higherdale +Highet +Highett +Highfield +Highfield Park +Highfields +Highgate +Highgate High +Highgoal +Highgrove +Highhill +Highhold +Highknob +Highland +Highland Corporate +Highland Creek +Highland Estates +Highland Farm +Highland Glen +Highland Grove +Highland Hall +Highland Heights +Highland Hills +Highland Lake +Highland Meadows +Highland Oaks +Highland Park +Highland Ridge +Highland Springs +Highland View +Highland Vista +Highland Woods +Highlander +Highlands +Highlandview +Highlawn +Highledge +Highlever +Highline +Highmead +Highmeadow +Highmoor +Highmore +Highmount +Highover +Highpath +Highpoint +Highpointe +Highridge +Highrise +Highrock +Highs +Highschool +Highshore +Highstead +Highsted +Highstream +Highthorne +Hightimber +Hightop +Hightown +Hightree +Highvale +Highview +Highwater +Highway +Highwood +Highwoodhall +Highwoods +Highworth +Higland +Higley +Higmoor +Higson +Higton +Higuera +Higuero +Higuero Highland +Hihn +Hihns Sulphur Spring +Hikido +Hikmat +Hil Ray +Hila +Hilaire +Hiland +Hilarita +Hilary +Hilbar +Hilbert +Hilbery +Hilborn +Hilborough +Hilbre +Hilburn +Hilbury +Hilcot +Hilda +Hilda May +Hildarose +Hildaville +Hilde +Hildebrand +Hildegard +Hildegarde +Hilden +Hilden Park +Hildenborough +Hildene +Hildens +Hilder +Hilderbrand +Hilders +Hilding +Hildreth +Hildyard +Hileen +Hileman +Hiles +Hiley +Hiley Brook +Hilfield +Hilgard +Hilgrove +Hilier +Hiline +Hilingdon +Hiliritas +Hill +Hill Born +Hill Brow +Hill Burne +Hill Climb +Hill Cot +Hill Court +Hill Crest +Hill Cumorah +Hill Dyke +Hill End +Hill Farm +Hill Field +Hill Girt Ranch +Hill Glen +Hill Green +Hill Hollow +Hill House +Hill Meade +Hill Meadow +Hill Oaks +Hill Park +Hill Path +Hill Point +Hill Pond +Hill Ridge +Hill Side +Hill Top +Hill Top View +Hill Trail +Hill View +Hillaire +Hillairy +Hillandale +Hillando +Hillantrae +Hillard +Hillard Lake +Hillars Heath +Hillary +Hillary Farm +Hillas +Hillbarn +Hillberg +Hillborough +Hillbottom +Hillbourne +Hillbrook +Hillbrooke +Hillbrow +Hillburn +Hillbury +Hillcap +Hillcot +Hillcote +Hillcourt +Hillcreek +Hillcrest +Hillcrest Park +Hillcrest View +Hillcroft +Hillcroome +Hillcross +Hilldale +Hilldeane +Hilldene +Hilldirk +Hilldown +Hilldrop +Hillegass +Hillen +Hillend +Hillendale +Hiller +Hillersdon +Hillery +Hillesden +Hillesley +Hilleyfield +Hillfield +Hillflower +Hillfoot +Hillgate +Hillgirt +Hillgrade +Hillgrove +Hillhaven +Hillhouse +Hillhurst +Hilliard +Hilliards +Hillidge +Hillier +Hilliers +Hilliger +Hilline +Hillingdon +Hillington +Hillis +Hillman +Hillmarton +Hillmead +Hillmeade +Hillmeyer +Hillmont +Hillmoor +Hillock +Hilloway +Hillpine +Hillplace +Hillridge +Hillrise +Hillrod +Hillrose +Hills +Hills Farm +Hills View +Hills of Claire +Hillsboro +Hillsboro Hunt +Hillsborough +Hillsdale +Hillshire +Hillside +Hillside Manor +Hillside Park +Hillside View +Hillsleigh +Hillslope +Hillsman +Hillsmere +Hillspark +Hillspoint +Hillspur +Hillstone +Hillstowe +Hillsview +Hillswood +Hillthorpe +Hillton +Hilltop +Hilltop Mall +Hilltree +Hillturn +Hillvale +Hillveiw +Hillview +Hillway +Hillwick +Hillwood +Hillworth +Hilly +Hillyard +Hillybarn +Hillydeal +Hillyer +Hilma +Hilmar +Hilmay +Hilmer +Hilmont +Hilo +Hilow +Hilrose +Hilsden +Hilsea +Hilsinger +Hiltibrand +Hilton +Hilton Fold +Hilton Head +Hilton Hill +Hilts +Hilversum +Hilwa +Himelfarb +Himley +Himmel +Himoor +Himrod +Hinchen +Hinchinbrook +Hinchingham +Hinchley +Hinchman +Hinckley +Hinckley Basin Fire +Hincks +Hind +Hind Hill +Hinde +Hindemith +Hindes +Hindhay +Hindhead +Hindiyeh +Hindle +Hindleap +Hindles +Hindley +Hindley Mill +Hindmans +Hindmarsh +Hindostan +Hindrey +Hinds +Hindsford +Hine +Hinemoa +Hines +Hing +Hingham +Hingston +Hinguar +Hinkle +Hinkler +Hinkley +Hinksden +Hinman +Hinricher +Hinsbrook +Hinsdale +Hinson Farm +Hinspeter +Hinstock +Hinston +Hinswood +Hinterlong +Hinton +Hinton Manor +Hinton Ranch +Hintz +Hintzewater +Hinxman +Hipley +Hipplers +Hipsley Mill +Hipwood +Hirabayashi +Hiram +Hird +Hirliman +Hiromi +Hirsch +Hirschberg +Hirst +Hirtes +Hirth +Hiscox +Hisperry +Historic +Historic Country +Historical +History +Hitch +Hitch Common +Hitcham +Hitchcock +Hitchcock Farm +Hitchen +Hitchen Hatch +Hitches +Hitchin +Hitching Post +Hitchings +Hitchins +Hitchwood +Hither Farm +Hitherbroom +Hithercroft +Hitherfield +Hitherwell +Hitherwood +Hito +Hitsman +Hitter +Hittinger +Hitty Tom +Hive +Hix +Hixberry +Hixon +Hixson +Hixson Farm +Hjelm +Hllwood +Hnery +Hoad +Hoade +Hoadley +Hoadly +Hoag +Hoagland +Hoaglands +Hob +Hob Hey +Hobamack +Hobart +Hobbayne +Hobbes +Hobbie +Hobbis +Hobbitt +Hobble Bush +Hobblebush +Hobbs +Hobbs Brook +Hobbs Cross +Hobbs Hill +Hobby +Hobcroft +Hobday +Hobdens +Hobe +Hoberg +Hobert +Hobhouse +Hobie +Hobler +Hobletts +Hobleythick +Hoboken +Hobomack +Hobomock +Hobson +Hobson Hollow +Hobson Mill +Hobson Moor +Hobson Oaks +Hobson Trails +Hobson Valley +Hobtoe +Hobury +Hochler +Hock Farm +Hockenden +Hocker +Hockerill +Hockering +Hockerley +Hockers +Hockett +Hockey +Hockin +Hocking +Hockley +Hockliffe +Hockney +Hocroft +Hoddam +Hodder +Hoddesdon +Hoddeston +Hoddle +Hodds +Hodel +Hodge +Hodge Clough +Hodgedale +Hodges +Hodgkins +Hodgkinson +Hodgson +Hodings +Hodlmair +Hodnett +Hodsoll +Hodson +Hoe +Hoe Mill +Hoecroft +Hoeder +Hoeffner +Hoeg +Hoehn +Hoelands +Hoen +Hoen Frontage +Hoerl +Hoestock +Hoeweed +Hoff +Hoffer +Hoffman +Hoffman Woods +Hoffmans +Hoffstead +Hoffstots +Hoford +Hofstra +Hog +Hog Farm +Hog Hatch +Hog Hill +Hog Neck +Hogan +Hogarth +Hogback +Hogback Wood +Hogbarn +Hogben +Hogden +Hoge +Hogeland Mill +Hogenkamp +Hogfair +Hogg +Hogg End +Hogg Memorial +Hoggshill +Hoghole +Hogmoor +Hogoak +Hogscross +Hogsdell +Hogshaw +Hogshaw Villas +Hogshill +Hogsmill +Hogspudding +Hogstough +Hogtrough +Hogue +Hogwood +Hohener +Hohlfelder +Hohman +Hoile +Hoiles +Hoiting +Hoitt +Hokah +Hokanson +Hoke +Holabird +Holasek +Holbeach +Holbeam +Holbeche +Holbeck +Holbeck Moor +Holbein +Holbek +Holberton +Holborn +Holborn Theobalds +Holborough +Holborow +Holbrook +Holbrook School +Holbrooke +Holburn +Holburne +Holcolme +Holcomb +Holcombe +Holcombe Old +Holcott +Holcroft +Holdcroft +Holden +Holden Clough +Holden Park +Holden Pond +Holdenby +Holdener +Holdenhurst +Holdenwood +Holder +Holderith +Holderman +Holderness +Holdernesse +Holders +Holders Hill +Holdfast +Holding +Holdridge +Holdrum +Holdsworth +Hole +Hole House +Holeclaw +Holegate +Holehouse +Holeman +Holesapple +Holeton +Holey +Holford +Holgate +Holhouse +Holiday +Holiday Hill +Holiday Hills +Holiday Park +Holiday Plaza +Holiday Ranch +Holin +Holister +Holkein +Holker +Holkham +Hollace +Hollacher +Holladay +Holladay Park +Holland +Holland Cliffs +Holland House +Holland Meadow +Holland Park +Holland Tract +Holland Villas +Hollanda +Hollander +Hollands +Hollar +Hollaway +Hollbrook +Hollen +Hollenbeck +Hollers +Hollerton +Holles +Hollett +Holley +Holleys +Holleyside +Hollhey +Holliben +Hollice +Hollicks +Hollickwood +Hollicombe +Holliday +Hollies +Holligrave +Hollin +Hollin Hey +Hollin Hill +Hollin Park +Hollinbank +Hollincross +Hollindale +Hollingdon +Hollinger +Hollings +Hollingshed +Hollingswood +Hollingsworth +Hollington +Hollingworth +Hollinhall +Hollinhurst +Hollins +Hollins Ferry +Hollins Green +Hollinsmoor +Hollinswood +Hollinsworth +Hollinwood +Hollis +Hollis Canyon +Hollis Court +Hollis Wood +Hollist +Hollister +Holliston +Holliwood +Hollman +Holloman +Hollow +Hollow Hill +Hollow Log +Hollow Oak +Hollow Park +Hollow Ridge +Hollow Spring +Hollow Tree +Hollow Tree Ridge +Hollow View +Hollow Way +Hollow Wood +Holloway +Holloways +Hollowbrook +Hollowdale Farm +Hollowell +Hollowfield +Hollowood +Hollowside +Hollowstone +Holly +Holly Auto Center +Holly Bank +Holly Beach Farm +Holly Berry +Holly Briar +Holly Bush +Holly Creek +Holly Crest +Holly Croft +Holly Cross +Holly Dene +Holly Farm +Holly Farms +Holly Forest +Holly Gate +Holly Gillingham +Holly Glen +Holly Green +Holly Grove +Holly Haven +Holly Hedge +Holly Hedges +Holly Hill +Holly Hills +Holly Hock +Holly House +Holly Knoll +Holly Lake +Holly Landing +Holly Leaf +Holly Loch +Holly Lynn +Holly Manor +Holly Marie +Holly Oak +Holly Park +Holly Point +Holly Ridge +Holly Spring +Holly Tree +Holly View +Holly la Access +Hollyann +Hollybank +Hollyberry +Hollybrook +Hollyburne +Hollybush +Hollycrest +Hollycroft +Hollycross +Hollydale +Hollyedge +Hollyfield +Hollyford +Hollygate +Hollygrape +Hollyhead +Hollyhedge +Hollyhey +Hollyhill +Hollyhock +Hollylea +Hollymead +Hollymeade +Hollymeoak +Hollymoor +Hollymount +Hollyoak +Hollyridge +Hollyrood +Hollys +Hollyshaw +Hollyspring +Hollythorn +Hollytree +Hollyview +Hollywater +Hollywood +Holm +Holm Mill +Holm Oak +Holman +Holmard +Holmbank +Holmbrook +Holmbury +Holmbury Hill +Holmbush +Holmcroft +Holmdale +Holmdel +Holmdel Middletown +Holmdell +Holmdene +Holme +Holme Farm +Holme House +Holme Lacey +Holme Lea +Holme Wood Felcourt +Holme Wood Heysham +Holme Wood Landscove +Holmead +Holmebrook +Holmefield +Holmehill +Holmemoor +Holmer +Holmer Green +Holmerdale +Holmes +Holmes Run +Holmesdale +Holmesley +Holmespun +Holmeswood +Holmethorpe +Holmewell +Holmewood +Holmfield +Holmfirth +Holmhurst +Holmlea +Holmleigh +Holmpark +Holmquist +Holmscroft +Holmshill +Holmside +Holmsley +Holmsley Field +Holmstall +Holmstead +Holmwood +Holmwood View +Holness +Holohan +Holroyd +Holsclaw +Holsing +Holsman +Holst +Holste +Holstein +Holster +Holstock +Holston +Holstrom +Holsworth +Holsworthy +Holt +Holt Head +Holt Park Chestnut +Holt Wood +Holtby +Holtdale +Holte +Holter +Holtermann +Holthouse +Holton +Holton Woods +Holts +Holtsmere End +Holtspur +Holtspur Top +Holtye +Holtz +Holub +Holway +Holwell +Holwell Hyde +Holwick +Holwood +Holworthy +Holy City +Holy Cross +Holy Harbour +Holy Name +Holy Ridge +Holy Trinity +Holybourne +Holybread +Holybrook +Holyfield +Holyoak +Holyoake +Holyoke +Holyport +Holyrood +Holywell +Holywood +Holzheimer +Homan +Homann +Homans +Hombrook +Home +Home Acres +Home Crest +Home Depot +Home Farm +Home Gate +Home Guard +Home Lawn +Home Meadows +Home Park +Home Park Mill Link +Home Place +Homebury +Homebush +Homebush Bay +Homecoming +Homecrest +Homecroft +Homedale +Homedean +Homefarm +Homefield +Homefields +Homeglen +Homeland +Homelands +Homelea +Homeleigh +Homemead +Homemeadow +Homeplace +Homepride +Homer +Homer Wheaton +Homerite +Homerlee +Homers +Homers Wood +Homersham +Homerton +Homerton High +Homes +Homes Park +Homesdale +Homeside +Homesite +Homespun +Homestake +Homestall +Homestead +Homestead Farm +Homestead Heights +Hometown +Homeview +Homeward +Homeward Glen +Homeward Hill +Homeward Hills +Homewards +Homewood +Homewood Landing +Hommann +Hommell +Hommocks +Homsted +Homsy +Honda +Honduras +Hone +Honest Pleasure +Honesty +Honey +Honey Bear +Honey Bridge +Honey Brook +Honey Creek +Honey Croft +Honey End +Honey Hill +Honey Lake +Honey Locust +Honey Pot +Honey Suckle +Honeybear +Honeybee +Honeybourne +Honeybrook +Honeycomb +Honeycritch +Honeycrock +Honeycross +Honeydew +Honeygold +Honeyhill +Honeymoon +Honeymyrtle +Honeynut +Honeysett +Honeysuckle +Honeysuckle Rose +Honeytree +Honeywell +Honeywood +Honfleur +Honford +Hong Kong +Honiss +Honister +Honiton +Honker +Honley +Honnicut +Honnor +Honolulu +Honor +Honor End +Honor Oak +Honora +Honore +Honors +Honsa +Honsena +Hontar +Honved +Honywood +Hoo +Hoo Green +Hoobyar +Hood +Hood Farm +Hood Franklin +Hood School +Hooded Crow +Hooe +Hooes +Hooffs Run +Hook +Hook Creek +Hook End +Hook Farm +Hook Gate +Hook Green +Hook Harbor +Hook Heath +Hook Hill +Hook Mountain +Hooke +Hookend +Hooker +Hookhouse +Hooking +Hooklands +Hookley +Hookmill +Hooks +Hooks Hall +Hookstile +Hookston +Hookstone +Hookwood +Hooley +Hooleyhay +Hooper +Hooper High +Hooper Lake +Hoopers +Hoopes +Hoosic +Hoot Owl +Hooten +Hooton +Hoover +Hoover Farm +Hooyman +Hop +Hop Brook +Hop Garden +Hop Gardens +Hop Pocket +Hop Ranch +Hopark +Hopatcong +Hope +Hope Acres +Hope Carr +Hope Chapel +Hope Farm +Hope Fold +Hope Hey +Hope Park +Hopeco +Hopedale +Hopefield +Hopehouse +Hopeland +Hopelea +Hopes Farm +Hopestill +Hopestill Brown +Hopeton +Hopetoun +Hopewell +Hopewell Farm +Hopewood +Hopfield +Hopgarden +Hopgood +Hophurst +Hopi +Hopke +Hopkin +Hopkins +Hopkins Gulch +Hopkinson +Hopkinton +Hopman +Hoppa +Hopper +Hopper Farm +Hoppers +Hoppett +Hoppin +Hoppin Hill +Hopping +Hopping Brook +Hopping Jacks +Hoppingwood +Hoppit +Hoppner +Hopps +Hoppys +Hops +Hopson +Hopton +Hopwood +Hopyard +Horace +Horace Darling +Horace Harding +Horace Ward +Horatio +Horbling +Horbor +Horbury +Horcajo +Horde +Horder +Hordern +Horderns +Horeb +Horest +Horewood +Horgan +HorizOn +Horizen Island +Horizon +Horizon Hts +Horizons +Horkesley +Horley +Horley Lodge +Horlock +Horman +Hormead +Horn +Horn Beam +Horn Blower +Horn Point +Horn Pond Brook +Hornash +Hornbaker +Hornbeam +Hornbeam Hill +Hornbeams +Hornbeck +Hornblower +Hornbrook +Hornbuckle +Hornby +Horncastle +Hornchurch +Hornchurch Grosvenor +Horndean +Horne +Horne Tooke +Hornecastle +Hornell +Horner +Hornes Green +Hornet +Horneywood +Hornez +Hornfair +Hornhill +Hornidge +Horning +Horning sea Park +Horningsea Park +Horns +Horns Lodge +Horns Oak +Hornsby +Hornsea +Hornsey +Hornsey Park +Hornshay +Hornshill +Hornsmill +Hornton +Horridge +Horrigan +Horrobin +Horrocks +Horrocks Fold +Horsa +Horse +Horse Center +Horse Ferry +Horse Guards +Horse Hill +Horse Hollow +Horse Island +Horse Lake +Horse Pen +Horse Pond +Horse Prairie +Horse Shoe +Horseblock +Horsebrass +Horsedge +Horsefair +Horseferry +Horseforth +Horsegrove +Horseguard +Horseguards +Horsehead +Horseless Carriage +Horsell +Horsell Common +Horselydown +Horseman +Horsemans +Horsemans Canyon +Horsemoor +Horsenden +Horseneck +Horseneile +Horsepond +Horseshoe +Horseshoe Bend +Horseshoe Hill +Horseshoes +Horsetail +Horsewash +Horsfall +Horsfeld +Horsfield +Horsford +Horsforth Town +Horsham +Horsley +Horsman +Horsmann +Horsmonden +Horsnell +Horst +Horsted +Hort +Hortense +Hortensia +Horton +Horton Bridge +Horton Hill +Hortonia Point +Hortree +Hortus +Horwath +Horwedel +Horwich +Horwood +Hory +Hosack +Hosdens +Hoser +Hosey +Hosey Common +Hosford +Hosford Hills +Hosie +Hosier +Hosker +Hoskier +Hoskin +Hosking +Hoskins +Hoskinson +Hosler +Hosmer +Hospital +Hospital Cent Ser +Hospital High +Hospital Ring +Hosta +Hostetter +Hotaling +Hotchkin +Hotchkiss +Hotel +Hotham +Hother +Hothersall +Hothfield +Hothorn +Hotin +Hotley Bottom +Hotson +Hotspur +Hottel +Hotten +Houbolt +Houchin +Houde +Hough +Hough End +Hough Hall +Hough Hill +Hough Side +Hough Tree +Houghend +Houghley +Houghton +Houghton Green +Houghton Park +Houldsworth +Houldworth +Houle +Houlton +Hound House +Hound Run +Houndhill +Houndmaster +Houndmills +Houndridge +Hounds +Hounds Ditch +Houndsden +Houndsfield +Houndsworth +Hounslow +Hounslow High +Hour Glass +Houret +Hourglass +Hourihan +Hourseywood +Housatonic +House +House Rock +House Works +House of Correction +Houselands +Houseley +Houseman +Houser +Housley +Housman +Houson +Houston +Houtman +Houtmann +Houts +Hove +Hoveden +Hovefields +Hovell +Hoven +Hovenden +Hoverman +Hovey +Hovingham +Hovis +How +How Green +How Lea +Howard +Howard Castle +Howard Chapel +Howard Farm +Howard Farms +Howard Gleason +Howard Grove +Howard Hills +Howard Lake +Howard Landing +Howard Manor +Howard Park +Howards +Howards Point +Howards Wood +Howardton +Howarth +Howarth Cross +Howatt +Howbourne +Howbridge +Howbridge Hall +Howbro +Howbury +Howden +Howden Clough +Howdy +Howe +Howe Green +Howell +Howell Mountain +Howells +Howerton +Howes +Howes Brook +Howgate +Howgill +Howie +Howison +Howitt +Howitzer +Howkins +Howland +Howland Hill +Howlands +Howlett +Howletts +Howley +Howley Mill +Howley Park +Howliston +Hows +Howse +Howsen +Howser +Howsin +Howsman +Howson +Howth +Howton +Hoxett +Hoxey +Hoxie +Hoxton +Hoxton Baring +Hoxton Park +Hoy +Hoya +Hoyer +Hoyet +Hoylake +Hoyle +Hoyles +Hoyles Mill +Hoym +Hoyne +Hoysville +Hoysville Manor +Hoyt +Hoyts +Hoyts Wharf +Hoytt +Hozz +Hren +Hub +Hubbard +Hubbard Gulch +Hubbard Park +Hubbard School +Hubbards +Hubbardston +Hubbardton +Hubbartt +Hubbell +Hubberd +Hubbert School +Hubble +Huber +Hubert +Hubert H Humphrey +Hubon +Hubs Point +Huck +Huckins +Huckleberry +Huckleberry Hill +Hucklow +Hud +Hudcar +Huddart +Huddart Park +Huddersfield +Huddleson +Huddleston +Huddlestone +Huddy +Hudee +Hudis +Hudleston +Hudnall +Hudner +Hudson +Hudson Bay +Hudson Bluff +Hudson Crest +Hudson Landing +Hudson Park +Hudson River +Hudson Service +Hudswell +Huehl +Huehn +Huerto +Huested +Huey +Huff +Hugel Hill +Hugenot +Huggins +Hugh +Hugh Bennett +Hugh Cargill +Hugh Dalton +Hugh Dickson +Hugh Fraser +Hugh Hill +Hugh Lupus +Hugh Muir +Hughan +Hughen +Hughenden +Hughes +Hughesdale +Hughey +Hughline +Hugletts +Hugo +Hugon +Huguenot +Hugus +Huhtala +Huie +Huizenga +Hula +Hulbert +Hulet +Hulfords +Hull +Hull Shore +Hullbridge +Hulley +Hulls +Hulls Mill +Hulme +Hulme Hall +Hulme High +Hulmes +Hulseheath +Hulton +Humar Pond +Humber +Humberstone +Humbert +Humblebee +Humboldt +Humbolt +Humbug +Humbug Creek +Hume +Hume Hall +Humes +Humma Yeppa +Hummer +Humming +Hummingbird +Hummingbird Hill +Hummock +Hump +Humphrey +Humphreys +Humphries +Humphrys +Hunbldt +Huncoat +Huncote +Hundertmark +Hundred Acre +Hundred Acres +Hundred Oaks +Hundredhouse +Hundreds +Hundsford +Hunewill +Hunger Hill +Hunger Hills +Hungerden +Hungerford +Hungers +Hungry Harbor +Hungry Hill +Hungry Hollow +Hunington +Hunkele +Hunken +Hunnable +Hunner +Hunnewell +Hunnicutt +Hunolt +Hunsaker +Hunsaker Canyon +Hunsdon +Hunslet +Hunslet Hall +Hunsley +Hunstanton +Hunston +Hunsworth +Hunt +Hunt Club +Hunt Country +Hunt Farm +Hunt Fold +Hunt Hill +Hunt Manor +Hunt Master +Hunt Meadow +Hunt Ridge +Hunt Valley +Hunt Way +Huntchase +Huntcliff +Hunteigh +Hunter +Hunter Creek +Hunter Hill +Hunter Mill +Hunter Mountain +Hunter Ridge +Hunter View +Hunter Village +Hunterbrook +Hunterbrooke +Huntercombe End +Hunterdon +Hunters +Hunters Chase +Hunters Club +Hunters Creek +Hunters Den +Hunters Gate +Hunters Glen +Hunters Grove +Hunters Hall +Hunters Harbor +Hunters Hill +Hunters Point +Hunters Ridge +Hunters Valley +Hunters View +Huntersend +Hunterspoint +Hunterton +Huntfield +Huntgate +Hunting +Hunting Creek +Hunting Crest +Hunting Farms +Hunting Gate +Hunting Hill +Hunting Hollow +Hunting Horn +Hunting Horse +Hunting Hound +Hunting Lake +Hunting Quarter +Hunting Ridge +Hunting Shire +Huntingdale +Huntingdon +Huntingfield +Huntingfields +Huntington +Huntington Bay +Huntington Commons +Huntington Estates +Huntington Farm +Huntington Squ +Huntington Square +Huntington Village +Huntington Woods +Huntingtown +Huntingwood +Huntland +Huntleigh +Huntley +Huntley Automall +Huntley Meadows +Huntley Mount +Huntley Square +Huntley Woods +Huntleys Point +Huntly +Huntmar Park +Huntmaster +Hunton +Huntoon +Huntover +Huntress +Huntridge +Huntroyde +Hunts +Hunts Bridge +Hunts Hill +Hunts Point +Hunts Pond +Hunts Slip +Huntsbottom +Huntsbridge +Huntshire +Huntsman +Huntsmans +Huntsmill +Huntsmoor +Huntsmore +Huntspill +Huntsville +Huntswood +Huntting +Huntwood +Huntwood Manor +Huntzinger +Huon +Huppenthal +Huran +Hurd +Hurden +Hurdis +Hurdle Hill +Hurds +Hurdsfield +Hurford +Hurlands +Hurlbert +Hurlburt +Hurlbut +Hurlcroft +Hurley +Hurlingham +Hurlock +Hurlstone +Hurn Court +Hurnard +Hurndell +Huron +Hurricane +Hursley +Hurst +Hurst Bank +Hurst Farm +Hurst Green +Hurst Lea +Hurst Mill +Hurst Park +Hurstbank +Hurstborne +Hurstbourne +Hurstbrook +Hurstcourt +Hurstdene +Hurstead +Hurstfield +Hurstfold +Hurstford +Hurstheads +Hurstleigh +Hurstvale +Hurstville +Hurstwood +Hurtmore +Hurtwood +Hus +Huse +Huseman +Hushbeck +Husker +Husking Peg +Huskisson +Huskwood +Husky +Husman +Huss +Hussa +Hussey +Husson +Hust +Husteads +Husted +Hustlings +Huston +Hutchenson +Hutcheson +Hutchings +Hutchingsons +Hutchins +Hutchinson +Hutchinson River +Hutchison +Hutchison Valley +Hutson +Hutter +Hutton +Hutton Hill +Huxbear +Huxley +Huxtable +Huyler +Huyler Landing +Hy Sil +Hyacinth +Hyacynth +Hyam +Hyannis +Hyannisport +Hyatt +Hyatts +Hybernia +Hybrid +Hycliff +Hycrest +Hyde +Hyde Bank +Hyde Burndale +Hyde End +Hyde Estate +Hyde Farms +Hyde Hall +Hyde Heath +Hyde Park +Hyde Wood +Hydebrae +Hyden Farm +Hyder +Hydeway +Hydra +Hydrae +Hydrangea +Hydrangia +Hydraulic +Hydrus +Hygate +Hygelund +Hyla +Hyla Brook +Hylair +Hylan +Hyland +Hyland Courts +Hyland Creek +Hyland Greens +Hyland Hills +Hyland Ridge +Hylands +Hyles +Hylton +Hyman +Hymen +Hyndman +Hynds +Hynes +Hynson +Hynton +Hypatia +Hyperion +Hypine +Hypoint +Hyrax +Hyrons +Hyrstlands +Hysler +Hyslip +Hyslop +Hyson +Hythe +Hythe End +Hythe Park +Hythefield +Hywood +I Beam +I Fernwood +I R Russo +I U Willets +II +Iadarosa +Iadorola +Iager +Iago +Ian +Ian Keats +Iandra +Iannis Spring +Iasco +Ibbetson +Ibbotson +Ibera +Iberia +Iberian +Iberis +Ibex +Ibis +Ibsen +Ibstone +Ibworth +Icard +Icarus +Icasia +Ice +Ice Arena +Ice Box Canyon +Ice Circle +Ice Cream +Ice Crystal +Ice Fort Cove +Ice House +Ice Plant +Ice Pond +Icehouse +Icehouse Woods +Iceland +Icemeadow +Icerose +Iceton +Ichabod +Ickburgh +Ickenham +Ickenham Crosier +Ickenham Edinburgh +Ickenham Milverton +Icker +Ickford +Ickleford +Ickleton +Icklingham +Icknield +Ickworth Park +Icy Brook +Ida +Ida Clayton +Idabright +Idaho +Idal +Idalane +Idalia +Idaline +Idalla +Idalou +Idalyn +Idas +Ide +Ide Hill +Ideal +Idell +Iden +Idle Creek +Idle Day +Idle Pines +Idle Wild +Idlebrook +Idlebunny +Idleigh Court +Idlepark +Idlestone +Idlewell +Idlewild +Idlewilde +Idlewood +Idlewood Park +Idmiston +Idol +Idolstone +Idonia +Idora +Idyl +Idylberry +Idylewild +Idyllwild +Idylwild +Idylwilde +Idylwood +Idylwood Mews +Idzorek +Ielmorine +Iffley +Ifield +Ifold +Ifold Bridge +Ightham +Iglehart +Iglesia +Ignacio +Ignatius +Ignatius Diggs +Igoe +Ijauna +Ijuana +Ikara +Ike +Ikea Center +Ikin +Ila +Ilbert +Ilchester +Ilderton +Ileen +Ilene +Iler +Ilex +Ilford +Ilfracombe +Ilgars +Iliad +Iliff +Iliffe +Ilikai +Ilinka +Ilion +Ilk +Ilka +Ilkeston +Ilkley +Ilkley Moor +Illabo +Illalong +Illarangi +Illaroo +Illawarra +Illawong +Illeroy +Illi Indy +Illiliwa +Illingsworth +Illingworth +Illini +Illinios +Illinois +Illona +Illoura +Ilma +Ilmington +Ilminster +Ilo +Ils +Ilsley +Iluka +Ilwaco +Ilya +Imbaro +Imber +Imber Park +Imberhorne +Imbrook +Imelda +Imhoff +Imlay +Immanuel +Immarna +Imogene +Imola +Impala +Impalla +Impatiens +Imperia +Imperial +Imperial College +Imperio +Import +Impressions +Impton +Impulse +Imran +Imrie +Ina +Inala +Inaudi +Inca +Ince +Inchbonnie +Inchcape +Inchfield +Inchley +Inchmery +Inchon +Incinerator +Incline +Incline Green +Increase Ward +Ind.Bch. Serv. +Indale +Indan Fire +Indelicato +Independence +Independent +Independent Hill +Independent School +Independents +Inderwick +Index +India +Indian +Indian Boundary +Indian Boundary Line +Indian Brook +Indian Broom +Indian Bull +Indian Camp +Indian Chase +Indian Chief +Indian Club +Indian Cove +Indian Creek +Indian Field +Indian Grass +Indian Gulch +Indian Harbor +Indian Head +Indian Hill +Indian Hill Way +Indian Hills +Indian Hollow +Indian Home +Indian Inn +Indian Joe +Indian Knoll +Indian Lake +Indian Landing +Indian Meadow +Indian Mill +Indian Moon +Indian Mound +Indian Oaks +Indian Path +Indian Pipe +Indian Point +Indian Pond +Indian Princess +Indian Queen Point +Indian Rice +Indian Ridge +Indian River +Indian Rock +Indian Run +Indian Spring +Indian Springs +Indian Summer +Indian Trail +Indian Tree +Indian Valley +Indian Wells +Indian Wind +Indian Wood +Indian Woods +Indiana +Indiana Toll +Indianapolis +Indianhill +Indianola +Indianwood +Indigo +Indio +Indlebar +Indura +Indus +Industrial +Industrial Heights +Industrial Park +Industry +Indy +Inelgah +Inez +Infantry Ridge +Infield +Infirmary +Ing +Inga +Ingal +Ingalara +Ingalls +Ingalton +Ingara +Ingate +Ingatestone +Ingelow +Ingelrica +Ingelside +Ingemunson +Ingersley +Ingersol +Ingersoll +Ingerson +Ingestre +Ingfield Manor +Ingham +Inghams +Ingle +Inglebar +Inglebert +Ingleboro +Ingleborough +Inglebrook +Ingleburn +Ingleburn Gardens +Ingleby +Ingleden Park +Ingledene +Ingledew +Inglee +Inglefield +Inglemere +Inglenook +Ingleshire +Ingleside +Inglethorpe +Ingleton +Inglewood +Inglis +Inglish Mill +Ingold +Ingoldsby +Ingolsby +Ingot +Ingraffia +Ingraham +Ingram +Ingram Creek +Ingram Parade Church +Ingrams +Ingrave +Ingrebourne +Ingress Park +Ingrid +Ingroff +Ings +Inhams +Inheritance +Inholmes Park +Inholms +Inigo Jones +Inip +Ink +Ink Grade +Ink Pen +Inkerman +Inland +Inlet +Inman +Inman Hill +Inmans +Inmoor +Inn +Inner +Inner Belt +Inner Circle +Inner Distribution +Inner Harbor +Inner Lake Shore +Inner Loop +Inner Ring +Innerhill +Innerwick +Innes +Innesdale +Inness +Innings +Innis +Innis Property +Innisbrook +Innisfail +Innisfall +Innisfree +Inniskilling +Innisvale +Innitou +Innkeeper +Innovation +Innovator +Innsbrook +Innsbruck +Insall +Insbrook +Inscho +Inscoe +Insel +Insey +Insignia +Inskip +Inslee +Insley +Inspection House +Inspiration +Inspiration Point +Institute +Instone +Instow +Instrom +Intack +Intake +Intalbury +Interbay +Interchange +Interglen +Interhaven +Interlachen +Interlake +Interlaken +Interlochen +Interlocken +Intermezzo +International +Internationale +Interocean +Interpretive Center +Interpromontory +Intersection +Interstate +Intertech +Interurban +Interval +Intervale +Interventions +Intone +Intrepid +Intrieri +Inverallan +Inverary +Inverbeg +Inverchapel +Inverdale +Inverell +Inverforth +Invergorden +Invergowrie +Inverine +Inverlael +Inverleith +Inverness +Inverness Ridge +Inverrary +Inverray +Inversham +Inverton +Invertrees +Inverway +Inverwood +Investigator +Investment +Invicta +Inville +Invincible +Inwood +Inworth +Inyo +Inza +Inzer +Iodine +Iola +Iolanthe +Iolanthus +Iolite +Iona +Iona Sound +Ione +Ione Michigan Bar +Ionia +Ionic +Ioof +Iorio +Iowa +Ipava +Iping +Ipswich +Ipswich River +Ira +Iraga +Iralba +Iran +Irding +Iredale +Iredine +Ireland +Ireland Brook +Irelands +Irena +Irene +Irenhyl +Irenic +Ireson +Ireta +Ireton +Iride +Iriquois +Iris +Iris Bloom +Irish Ridge +Irk +Irk Vale +Irkdale +Irlam +Irma +Irma Harvey +Irma Jones +Irma Lyle +Irmen +Irmisch +Irmish +Iron +Iron Bridge +Iron Brigade Unit +Iron Forge +Iron Gate +Iron Gorge +Iron Hill +Iron Hollow +Iron Horse +Iron Latch +Iron Mill +Iron Mine +Iron Mine Hill +Iron Point +Iron Spgs Fire +Iron Springs +Iron Wood +Ironbark +Ironbark Ridge +Ironbound +Irondale +Irondequoit +Irongate +Ironhill +Ironhorse +Ironmaster +Ironmine +Ironmonger +Ironshoe +Ironside +Ironstone +Ironton +Ironwell +Ironwood +Ironwood View South +Iroquios +Iroquis +Iroquois +Irrara +Irrawong +Irribin +Irrigation +Irrubel +Irvana +Irvin +Irvine +Irvine Turner +Irving +Irving Johnson +Irving Park +Irvington +Irvington Manor +Irvon Hill +Irwell +Irwin +Irwindale +Irwine +Iry +Isa +Isaac +Isaac Davis +Isaac Hull +Isaac Smith +Isaacs +Isabel +Isabel Virginia +Isabell +Isabella +Isabelle +Isador +Isadora +Isadora Duncan +Isadore +Isaiah +Isalona +Isanti +Isar +Isbel +Isbell +Isbells +Isca +Ischia +Ise +Iselin +Isen Manor +Isengard +Isernia +Isetta +Isham +Isham Randolph +Isherwood +Ishi +Ishi Goto +Ishnala +Ishtar +Isis +Isla +Isla Vista +Island +Island Channel +Island Creek +Island Farm +Island Heights +Island Hill +Island Lake +Island Park +Island Pond +Island View +Islander +Islandside +Islandview +Islay +Isle +Isle Royal +Isle Royale +Isle of Skye +Isle of Wight +Isled +Isledon +Isleford +Isler +Isles +Islesboro +Islet +Islet Park +Isleton +Isleview +Islingham Farm +Islington +Islington High +Islington Park +Islip +Islip Manor +Ismailia +Ismay +Ismays +Ismona +Isobell +Isola +Isoscelles +Issa +Issac Miller +Issaquah Hobart +Istana +Isted +Istvan +Italia +Italy +Itasca +Itaska +Itch +Itchel +Itchell +Iteri +Ithaca +Ithan +Ithica +Itte +Ittureria +Iva +Ivah +Ivahar +Ivakota +Ivakota Farm +Ivaloo +Ivan +Ivanhoe +Ivano +Ivans +Ive Farm +Iveagh +Ivedon +Ivel +Iveley +Ively +Iver +Ivere +Ivernia +Ivers +Iverson +Iverys +Ives +Iveson +Ivey +Ivie +Ivie Acres +Ivimey +Ivins +Ivonhoe +Ivor +Ivory +Ivory Creek +Ivory Lace +Ivy +Ivy Bank +Ivy Barn +Ivy Bridge +Ivy Bush +Ivy Chimneys +Ivy Creek +Ivy Crest +Ivy Dene +Ivy Falls +Ivy Gate +Ivy Glen +Ivy Green +Ivy Hall +Ivy Hill +Ivy Hills +Ivy Hollow +Ivy House +Ivy Leaf +Ivy League +Ivy Lodge +Ivy Meade +Ivy Mill +Ivy Mills +Ivy Oak +Ivy Park +Ivy Ridge +Ivy Tree +Ivy Wood +Ivychurch +Ivydale +Ivydene +Ivygate +Ivygreen +Ivyhouse +Ivylea +Ivyleaf +Ivymount +Ivystone +Ivytown +Ivywild +Ivywood +Iwanuma +Ixias +Ixion +Ixonia +Ixworth +Izaak Walton +Izane +Izmer +Izmir +Izola +J D Reading +J F Kennedy +J H Brooks +J Hart Clinton +J L B +J M Van Ryper +J Pankow +J Rogers +J Smith +J T Crow +J Yard +JW Williams +Jabez +Jabil +Jacana +Jacap +Jacaranda +Jacey +Jacinta +Jacinth +Jacinto +Jack +Jack Breault +Jack Clow +Jack Cornwell +Jack London +Jack Pine +Jack Rabbit +Jack Rabbit Ridge +Jack Rogers +Jack Russell +Jack Tar +Jack Tone +Jack Williams +Jacka +Jackaranda +Jackass +Jackdaw +Jackets +Jackey +Jackie +Jackie Robinson +Jackies +Jacklin +Jackling +Jacklynn +Jackman +Jackpine +Jackpit +Jacks +Jacks Reef +Jacksnipe +Jacksol +Jackson +Jackson Branch +Jackson Grove +Jackson Mill +Jackson Oaks +Jackson Ranch +Jackson Schoolhouse +Jackson Slough +Jacksonia +Jacksons +Jacksons Edge +Jacksonville +Jackstraw +Jacky +Jaclyn +Jacob +Jacob Amsden +Jacob Brack +Jacob Cobb +Jacob Cushman +Jacob Ferry +Jacobs +Jacobs Gates +Jacobs Meadow +Jacobs Mill +Jacobs Well +Jacobsen +Jacobson +Jacobus +Jacoby +Jaconnet +Jacquara +Jacquard +Jacquelin +Jacqueline +Jacquelyn +Jacques +Jacquie +Jacquith +Jacqwill +Jacuzzi +Jada +Jadach +Jadchalm +Jade +Jade Hill +Jade Meadow +Jade Post +Jadeleaf +Jaden +Jadwin +Jaeger +Jaffa +Jaffe +Jaffray +Jaffrey +Jagelman +Jagerrd +Jagged Rock +Jagger +Jaggers +Jagle +Jago +Jagoe +Jaguar +Jagusch +Jahant +Jahn +Jahns +Jai +Jail +Jaimee +Jaipur +Jake +Jake Brown +Jake Creek +Jakeman +Jakes +Jakson +Jalaber +Jalbert +Jalisco +Jalleison +Jamaica +Jamaica Park +Jamberoo +Jamboree +Jameison +James +James Andrew +James Bailey +James Barton +James Bay +James Black +James Burke +James Butcher +James Butterworth +James Carter +James Cook +James Craig +James Creek +James Deane +James Donlon +James Doolittle +James Edward +James Erskine +James Fenimore Cooper +James Flynn +James Halley +James Haney +James Hentry +James King +James L L Burrell +James Lee +James Leigh +James Lex +James M Rochford +James Madison +James Maury +James Michener +James Mileham +James Millen +James Patten +James R Rakow +James Ridge +James River +James Ruse +James Russell +James Swanzey +James Tighe +James Town +James W Smith +James Watson +James Wittchen +James Wright +Jamesburg Half Acre +Jamesbury +Jameson +Jameson Canyon +Jameston +Jamestown +Jamestowne +Jamesview +Jamey +Jami +Jamica +Jamie +Jamie Lee +Jamieson +Jamieson Sprigg +Jamison +Jamison Creek +Jamlin +Jamroga +Jan +Jan Mar +Jan Marie +Jan River +Jan View +Jana +Jana Vista +Janali +Janamba +Janas +Jancie +Jandell +Jandus +Jandus Cut Off +Jandy +Jandyce +Jane +Jane Adams +Jane Addams +Jane Ellen +Jane Morbey +Janel +Janelia Farm +Janelin +Janell +Janelle +Janer +Janero +Janes +Janeswood +Janet +Janeth +Janette +Janeway +Janice +Janie +Janina +Janine +Janis +Janita +Janke +Janna +Janna Lee +Jannali +Jannarone +Jannelle +Janney +Janneys +Jannie +Janocha +Janock +Janos +Janphil +Janrick +Jansa +Janschek +Jansen +Jansen Farm +Jansens +Janssen +January +Janvrin +Janwal +Japan +Japaul +Japonica +Jappa +Jaquays +Jaques +Jaqui +Jar Brook +Jarboe +Jardin +Jardine +Jared +Jarico +Jarist +Jarlath +Jarman +Jarmann +Jarmons +Jarnecke +Jarnigan +Jarocin +Jarombek +Jarrah +Jarrard +Jarrett +Jarrett Valley +Jarrow +Jarsey +Jarvie +Jarvis +Jasen +Jaskot +Jaskula +Jaslow +Jasmin +Jasmine +Jasmine Hollow +Jasnar +Jason +Jason Grant +Jason Hill +Jason Woods +Jasons +Jasper +Jasper Highland +Jasper Hill +Jasper Sears +Jasset +Jasyn +Jauncey +Jaunell +Java +Javalina +Javan +Javelin +Javier +Javins +Javore +Jawl +Jay +Jay Bee +Jay Miller +Jayar +Jaybarry +Jaybee +Jaydee +Jaydine +Jayeselle +Jayhawk +Jaylee +Jayme +Jayne +Jaynes +Jaypore +Jayrose +Jays +Jaysmith +Jayson +Jaystone +Jayton +Jaywalk +Jaywick +Jaywood +Jealam +Jean +Jean Baptiste +Jean Carol +Jean Creek +Jean Ellen +Jean Marie +Jean Wailes +Jeane +Jeanette +Jeanie +Jeanine +Jeanna +Jeanne +Jeanne Darc +Jeanneret +Jeannette +Jeannie +Jeannine +Jeans +Jeatom +Jebb +Jebidia +Jed +Jed Forest +Jed Smith +Jedburg +Jedburgh +Jeddo +Jedediah +Jedforest +Jef +Jeff +Jeff Brian +Jeff Ryan +Jeffcott +Jeffer +Jeffereson +Jefferies +Jefferon +Jeffers +Jefferson +Jefferson Heights +Jefferson Run +Jeffersonian +Jeffery +Jefferys +Jeffrey +Jeffrey Keating +Jeffreys +Jeffreys Neck +Jeffrie +Jeffries +Jeffry +Jefry +Jefts +Jeger +Jehl +Jeken +Jelf +Jelin +Jelinic +Jelley +Jellicoe +Jelliff +Jellingal +Jelly Belly +Jelson +Jemmett +Jemryn +Jenckes +Jencks +Jendi +Jenes +Jenevein +Jeni +Jenifer +Jenison +Jenkin +Jenkins +Jenkins Farm +Jenkins Ridge +Jenkinson +Jenkisson +Jenks +Jenlar +Jenmar +Jenna +Jenne +Jennell +Jenner +Jennery +Jenness +Jennett +Jenney +Jenni +Jennie +Jennie Dugan +Jennie Richards +Jennie Run +Jennifer +Jennifer Daisy +Jennifer School +Jenniffer +Jenning +Jenningham +Jennings +Jennings Chapel +Jennings Cove +Jennings Farm +Jennings Mill +Jennings Park +Jennings Pond +Jenniper +Jennison +Jenny +Jenny D +Jenny Green +Jenny Jae +Jenny Lind +Jenny Lynne +Jenolan +Jens Jensen +Jensen +Jensen Ranch +Jensen Springs +Jenton +Jenvey +Jephson +Jephtha +Jeppos +Jeppson +Jepson +Jerad Place +Jerald +Jeraldo +Jerdens +Jere +Jerele +Jeremiah +Jeremie +Jeremy +Jeremys +Jereva +Jeri +Jericho +Jericho City +Jericho Hill +Jericho Oyster Bay +Jericho Park +Jerico Hill +Jerilderie +Jerilyn +Jerilynn +Jerlyn +Jerman +Jermantown +Jerminle +Jermyn +Jernee +Jernee Mill +Jerningham +Jerold +Jerome +Jerrara +Jerrard +Jerri +Jerridge +Jerrie +Jerries +Jerrold +Jerry +Jerry Clay +Jerry Jingle +Jerry Liefert +Jerrys +Jersey +Jersey City +Jersey Gardens +Jersey Island +Jersy +Jerusalem +Jerusalem Church +Jerusha +Jervey +Jervis +Jervois +Jeshurun +Jesierski +Jeskyns +Jesmond +Jespersen +Jess +Jess Ranch +Jessam +Jessamine +Jessamy +Jesse +Jesse James +Jessel +Jessen +Jessenland +Jesses +Jessett +Jessica +Jessie +Jessie Blythe +Jessie Jo +Jesson +Jessop +Jessup +Jester +Jesup +Jesup Blair +Jet +Jeter +Jethro +Jethro Peters +Jetson +Jetter +Jetty +Jetwood +Jewel +Jewelflower +Jewell +Jewell Hill +Jewell McKoy +Jewelsford +Jewett +Jewett Hill +Jewett Park +Jewish War Veterans +Jewitt +Jewry +Jeyes +Jeymer +Jezebel +Jezierski +Jezreels +Jf Kennedy +Jf Mahoney +Jib +Jibbon +Jibboom +Jibstay +Jidana +Jigger +Jill +Jill Ann +Jill Peak +Jillana +Jillian +Jillifer +Jillong +Jillson +Jilrick +Jim +Jim Dhamer +Jim Elder +Jim Fear +Jim Negra +Jim Shaw +Jim Simpson +Jim Veal +Jimada +Jimdale +Jimeno +Jimmer +Jimmy +Jimno +Jinatong +Jinchilla +Jindabyne +Jingle +Jingle Bell +Jiniwin +Jinna +Jionzo +Jipp +Jj +Jo +Jo Ann +Jo Deb +Jo Jo +Joaedja +Joal +Joalah +Joan +Joan Marie +Joan Vista +Joann +Joanna +Joanne +Joaquin +Joaquin Miller +Joaquin Murieta +Job Cushing +Jobe +Jobling +Jobs +Joby +Jocama +Jocarda +Jocare +Jocarm +Jocelyn +Jocher +Jochinsen +Jochum +Jocine +Jocketts +Jockey +Jockey Hollow +Joclyn +Joda +Jodan +Jodane +Jodave +Jodee +Jodi +Jodie +Jodis +Jodphur +Jodrell +Jody +Joe +Joe Adler +Joe Borovich +Joe Di Maggio +Joe F Young +Joe Jenny +Joe Klutsch +Joe Mary +Joe Orr +Joe Perez +Joe Pombo +Joel +Joelle +Joerg +Joerganson +Joerger +Joerger Cut Off +Joes +Joetta +Joey +Joffre +Jofran +Johanna +Johans Beach +Johansen +Johensu +John +John A Andrew +John A Dunn Memorial +John A Thompson +John Adam +John Adams +John Alden +John Allen +John Ayres +John Bailey +John Bardeen +John Barnes +John Batman +John Berry +John Booth +John Bourg +John Bradshaw +John Brown +John Burge +John Burke +John Burns +John C Ward +John Calvert +John Calvin +John Campbell +John Carlyle +John Carpenter +John Carroll +John Carver +John Charles +John Clagett +John Clynes +John Cobb +John Cross +John Crowder +John D Paige +John Dailey +John Dalton +John Daly +John Daves +John Davey +John David +John Dee +John Deere +John Dow +John Dwyer +John Dykes +John E Carroll +John E Smith +John Edward +John Eppes +John F Kennedy +John F Mason +John F Shelley +John F. Allen +John F. Kennedy +John Fisher +John Forrest +John Franklin +John Friend +John Fryer +John Gildi +John Glenn +John Gooch +John H Johnson +John Hancock +John Hanson +John Harper +John Harris +John Harrison +John Hay +John Henry +John Heywood +John Hill +John Hines +John Hopkins +John Humphrey +John Hus +John Ireland +John Islip +John J Brady +John J Gallagher +John J Grimaldi +John J Kingman +John J Paige +John Kennedy +John Kent +John Kidd +John Kirkham +John Knott +John L Dietsch +John Lynn +John M Boor +John Marr +John Marsh +John Marshall +John Marthens +John Martin +John Matthew +John Matthews +John McAdam +John McCormack +John Miller +John Milless +John Milton +John Montgomery +John Mooney +John Muir +John Neil +John Ochs +John Ormsby Way Leeds +John Oxley +John Partridge +John Paul Jones +John Penn +John Pierson +John Poulter +John Quincy +John Quincy Adams +John Radley +John Rezza +John Roberts +John Robinson +John Roos +John Ross +John Runge +John Ruskin +John Ryle +John Sam +John Shepley +John Silkin +John Smith +John Sorci +John Swift +John Tate +John Telfer +John Thomas +John Ticer +John Turco +John Turk +John Wade +John Wall +John Warren +John Wayne +John William +John Wilson +John Wise +John Wyatt +Johnathan +Johnathon +Johned +Johnny +Johnny Appleseed +Johnny Cake +Johnny Cake Ridge +Johnny Moore +Johnnycake +Johnor +Johns +Johns Chapel +Johns Hollow +Johns Hopkins +Johnsburg +Johnsbury +Johnson +Johnson Beach +Johnson Farm +Johnson Fold +Johnson Grove +Johnson Memorial +Johnson Park +Johnson Woods +Johnsonbrook +Johnsons +Johnsontown +Johnston +Johnston Crescent +Johnstone +Johnstown +Johnsvale +Johnsway +Johnswood +Joice +Join +Joiner +Joiners +Joint +Jokic +Jolan +Jolana +Jolen +Jolie +Joliet +Jolin +Joline +Jolliett +Jolly +Jollyboys +Jollyman +Jollys +Jolma +Jolon +Joludow +Jomar +Jon +Jon Mar +Jon Paul +Jona +Jonagold +Jonah +Jonalan +Jonamac +Jonas +Jonathan +Jonathan Carver +Jonathan Mitchell +Jonathan Ridge +Jonathan Simpson +Jonathen +Jonathon Swift +Jonel +Jones +Jones Acres +Jones Bay +Jones Branch +Jones Bridge +Jones Farm +Jones Gulch +Jones Hill +Jones Mill +Jones Park +Jones Point +Jones River +Jonesdale +Jonesport +Jonesville +Jonive +Jonko +Jono +Jonquil +Jonspin +Jony +Joongah +Joost +Jopak +Jopenda +Joplea +Joplin +Jopling +Joppa +Jopson +Joralemon +Jordan +Jordan Park +Jordan Ranch +Jordan Taylor +Jordans +Jordans Journey +Jorden +Jordon +Jordon Pond +Jordonalo +Joree +Jorgan +Jorgen +Jorgensen +Jorgenson +Jori +Jorie +Jorissen +Joronollo +Jorrick +Jose +Jose Figueres +Jose Ramon +Josef +Josefa +Josefson +Joselson +Joseph +Joseph Banks +Joseph Damon +Joseph Leon +Joseph Mill +Joseph P. Ward +Joseph Pace +Joseph Ray +Joseph Reed +Joseph Schwab +Joseph Siewick +Joseph Smith +Joseph Speciale +Josepha +Josephine +Josephine Evaristo +Josephs Point +Josephson +Josh Gray +Josham +Joshua +Joshua Moore +Joshua Tree +Josiah +Josie +Josina +Joslin +Joslyn +Jospeh +Josselin +Josselyn +Jossie +Josslyn +Jost +Jotham +Jotmans +Joubert +Jouet +Jouldings +Joule +Journal +Journeay +Journet +Journey +Joust +Jousting +Jowett +Joy +Joy Bell +Joy Lee +Joy Ridge +Joya +Joyce +Joyce Anne +Joyce Green +Joyce Island +Joyce Kilmer +Joyce Lundberg +Joyceton +Joydens Wood +Joydon +Joyer +Joylyn +Joyner +Joynson +Joynt +Joynton +Joys +Juan Hernandez +Juan Pablo +Juana +Juanita +Juanita Woods +Juarez +Jubbs Delight +Jubilee +Jubliee +Judah +Judd +Jude +Judette +Judge +Judge Cushing +Judge E A Loveless +Judge Haley +Judge Heath +Judges +Judi +Judicial +Judick +Judie +Judique +Judistine +Judith +Judith Anderson +Judkins +Judson +Judsonville +Judy +Judy Farm +Judy Witt +Judys +Juel +Juer +Juercen +Juergens +Juggs +Jughandle +Jugiong +Juglans +Juhasz +Juhlin +Juirrang +Julep +Jules +Jules Thorn +Juli +Juli Lynn +Julia +Julia Connors +Julia Dawn +Julian +Juliana +Julianna +Julianne +Julians +Julias +Julie +Julie Ann +Juliedale +Julien +Julien Court +Juliers +Juliesse +Juliet +Juliet Park +Juliett +Julietta +Juliette +Julio +Julius +Julliard +Julliard Park +July +Jumbles +Jumel +Jump +Jumper +Jumper Hill +Jumpers Hole +Jumping Horse +Jumppun +Jumps +Juna +Junard +Junco +Junction +June +June Elaine +June Hollow +Juneau +Juneberry +Junebreeze +Junebug +Junee +Junegrass +Juneway +Junewood +Jungle +Junia +Junin +Junior +Juniper +Juniper Hill +Juniper Point +Juniper Ridge +Juniper Valley +Juniperberry +Juniperbrook +Junipero +Junipero Serra +Junipertree +Junius +Junker +Juno +Juntar +Jupiter +Jupitor +Jupp +Jura +Jurby +Jurdins Hill +Jurdy +Jurgens +Jurgensen +Juri +Juricic +Jurocko +Jury +Just +Justa Short +Justamere +Justco +Justen +Justice +Justice Hill +Justin +Justin Knoll +Justin Morgan +Justina +Justine +Justinian +Justino +Justis +Justus +Jute +Jutewood +Jutland +Jutsums +Juvenis +Juxon +Juxton +Jyra +Jytek +K Fernwood +Kaanapali +Kaban +Kabarli +Kable +Kabot Cove +Kabutts +Kachina +Kadderly +Kadema +Kaden +Kadin +Kadlin +Kado +Kaehler +Kaelin +Kaeser +Kafka +Kagera +Kahiba +Kahl +Kahle +Kahler +Kahler Jr +Kahlo +Kahn +Kahns +Kahrs +Kaila +Kaimu +Kain +Kaine +Kains +Kaintuck +Kairawa +Kaiser +Kaiser Aetna +Kaiser Creek +Kaiser Quarry +Kaitia +Kaitlin +Kaitlyn +Kajer +Kakae +Kakeout +Kalama +Kalamazoo +Kalana +Kalang +Kalarama +Kalaui +Kalda +Kale +Kalenda +Kales +Kaleski +Kaleva +Kaley +Kalgal +Kalgoorlie +Kali +Kalimina +Kalimna +Kalinda +Kalinya +Kalk +Kalkada +Kalkar +Kalland +Kallaroo +Kallenberger +Kalliam +Kallien +Kallista +Kalmar +Kalmia +Kalora +Kalorama +Kalson +Kalsow +Kaltemeier +Kaltern +Kalua +Kaluga +Kaluna +Kaly +Kalyan +Kamaitis +Kamari +Kamaur +Kambala +Kamber +Kambora +Kamda +Kame +Kameha +Kamena +Kameruka +Kamerwyk +Kamilaroi +Kamilaroy +Kaminski +Kamiri +Kamlea +Kamm +Kammerer +Kammes +Kamp +Kampersal +Kamputa +Kamsack +Kamuela +Kanaabec +Kanabec +Kanadah +Kanai +Kanandah +Kanangra +Kanangur +Kananook +Kanatha +Kanawha +Kandahar +Kandi +Kandos +Kandra +Kandy +Kane +Kane Industrial +Kanegis +Kaneko +Kanes +Kaneville +Kangaroo +Kangaroo Point +Kangley Bridge +Kaniara +Kanili +Kanimbla +Kankakee +Kanlow +Kannely +Kanning +Kano +Kanoff +Kanoona +Kanoora +Kanouse +Kanowar +Kansala +Kansas +Kanst +Kanteles +Kantor +Kanuka +Kanya +Kanzo +Kao +Kapala +Kapalua +Kapareil +Kaparia +Kapetanopolous +Kaphan +Kapiolani +Kapiti +Kapkowski +Kaplan +Kaplolani +Kaposia +Kapovic +Kapp +Kappa +Kappel Hill +Kappel View +Kappner +Kappock +Kapyong +Kara +Kara Ann +Karabar +Karal +Karalee +Karamarra +Karameos +Karangi +Karani +Karat +Karban +Karcher +Karda +Kardel +Kardella +Kardon +Kareela +Kareelah +Kareema +Kareena +Karelitz +Karels +Karen +Karen Anne +Karen Elaine +Karen Forest +Karen Lee +Karen Pines +Karen Spring +Karens +Kari +Karilla +Karimbla +Karin +Karingal +Kariola +Karius +Kariwara +Karkus +Karl +Karl Hoyo +Karla +Karli +Karlo +Karloo +Karloon +Karlskoga +Karlson +Karlstad +Karlyn +Karmel +Karmich +Karn +Karnak +Karne +Karnell +Karner +Karns +Karol +Karoo +Karool +Karoola +Karoom +Karoon +Karraba +Karrabah +Karrabee +Karrabul +Karranga +Karrie +Karril +Karringal +Karrong +Karsey +Karth +Karth Lake +Karuah +Karuk +Karver +Karyl +Karyn +Kasba +Kashey +Kashgar +Kashmir +Kask +Kaskaskia +Kaski +Kaslo +Kasota +Kasper +Kass +Kassala +Kassan +Kassar +Kassel +Kasson +Kastania +Kastelan +Kastell +Kasten +Kasting +Katahdin +Katan +Katanna +Katarina +Kate +Katebini +Katena +Kates +Katesgrove +Kath +Katharine +Katharines +Kathay +Katherin +Katherine +Katherine Ann +Katheryn +Kathlean +Kathleen +Kathleen Elizabeth +Kathleen Grant +Kathleene +Kathletta +Kathmoore +Kathrene +Kathrina +Kathryn +Kathryne +Kathwood +Kathy +Kathy Ellen +Kathyanne +Kathys +Katie +Katie Bird +Katina +Katleba +Kato +Katonah +Katonia +Katrina +Katrine +Katrinka +Katsikas +Katsura +Katy +Katydid +Katz +Kauai +Kaufman +Kaul +Kaula +Kaup +Kauri +Kausen +Kauth +Kautz +Kavanagh +Kavanaugh +Kaveny +Kaverton +Kavin +Kavooras +Kavrik +Kawahara +Kawai +Kawalker +Kawameeh +Kawana +Kawana Springs +Kay +Kayak +Kayak Lake +Kaybro +Kaycee +Kaydot +Kaye +Kayemoor +Kayeton +Kayhart +Kayhill +Kayjay +Kayla +Kaylar +Kaylee +Kaylene +Kaymar +Kaymark +Kaynyne +Kayron +Kays +Kays Wood +Kaysha +Kayson +Kaywin +Kaywood +Kazan +Kazebeer +Kazimer +Kazwell +Kc Farm +Keable +Keach +Keagles +Kealsey +Kealsy +Kean +Keane +Keans +Keansburg +Keany +Keap +Kearley +Kearney +Kearneys +Kearns +Kearny +Kearsage +Kearsarge +Kearsley +Kearsley Hall +Keary +Keasbey +Keasler +Keates +Keating +Keato +Keaton +Keats +Keawe +Keayne +Keb +Kebet Ridge +Keble +Keck +Kecutan +Kedge +Kedith +Kedleston +Kedron +Kedvale +Kedzie +Kee +Keebler +Keeby +Keech +Keech Briar +Keedonwood +Keefe +Keefer +Keegan +Keegans +Keel +Keele +Keelendi +Keeler +Keeley +Keelham +Keeling +Keelings +Keelo +Keema +Keen +Keenan +Keene +Keeney +Keeney Pond +Keenland +Keens +Keens Park +Keep +Keep Hill +Keepataw +Keeper +Keepers +Keephatch +Keeps +Keepsake +Keer +Keera +Keese +Keeseville +Keesing +Keesling +Keeton +Keevil +Keevin +Keewadin +Keewatin +Keewaydin +Keeyunga +Kefauver +Kegan +Kegle +Kegwood +Kegworth +Kehoe +Keierleber +Keighley +Keighly +Keighran Mill +Keightley +Keil +Keilana +Keildon +Keiley +Keilman +Keily +Keim +Keinches +Keino +Keir +Keira +Keiran +Keirle +Keiser +Keiser Ranch +Keith +Keith Allen +Keith Hill +Keith Jeffries +Keith Lucas +Keith Park +Keith Smith +Keith Taylor +Keithley +Keiths +Keithson +Keiwarra +Kelboro +Kelbourne +Kelbrook +Kelbum +Kelburn +Kelby +Kelch +Kelchers +Keld +Keldholme +Keldie +Keldon +Kelesey +Kelez +Kelfield +Kelford +Keli +Kell +Kell Green +Kellam +Kelland +Kellaway +Kellbrook +Kelldon +Kelleher +Keller +Keller Lake +Keller Ridge +Kellerman +Kellet +Kellett +Kelley +Kelley Farm +Kellicar +Kellick +Kelliher +Kelling +Kellington +Kellino +Kellner +Kelloch +Kellogg +Kellogg Creek +Kelloway +Kells +Kellum +Kelly +Kelly Ann +Kelly Case +Kelly Farm +Kelly Glen +Kelly Hill +Kelly Lake +Kelly Mist +Kelmore +Kelmscot +Kelmscott +Kelner +Kelp +Kelpatrick +Kelrose +Kelross +Kelsall +Kelsey +Kelsey Park +Kelshill +Kelsic +Kelso +Kelson +Kelstern +Kelston +Kelsy +Kelsy Creek +Keltner +Kelton +Kelty +Kelveden +Kelvedon +Kelvedon Hall +Kelverlow +Kelvin +Kelvin Park +Kelvindale +Kelvington +Kelwynne +Kelzer Pond +Kem +Kemah +Kemball +Kember +Kemberley +Kembers +Kembla +Kemble +Kembo +Kembridge +Kemerton +Kemika +Kemman +Kemmerton +Kemmever +Kemmis +Kemnal +Kemondo +Kemp +Kemp Mill +Kemp Mill Forest +Kempair +Kempbridge +Kempe +Kemper +Kempley +Kempmill +Kempner +Kempnough Hall +Kemps +Kemps Farm +Kempsey +Kempsford +Kempson +Kempster +Kempston +Kempsville +Kempt +Kempthorne +Kempton +Kemrich +Kemsing +Kemsley +Ken +Ken Hall +Kenabec +Kenalray +Kenardington +Kenart +Kenavon +Kenbar +Kenberma +Kenbridge +Kenbrook +Kenburn +Kenbury +Kenchester +Kencrest +Kenda +Kendal +Kendal Common +Kendale +Kendall +Kendall Hill +Kendall Point +Kendall Ridge +Kendall Self +Kendallwood +Kendalwood +Kendee +Kendel +Kendell +Kender +Kendig +Kendle +Kendoa +Kendon +Kendra +Kendra Hall +Kendree +Kendrew +Kendrick +Kendricks +Kendridge +Kenduck +Kenelm +Kenelworth +Kenerson +Keneson +Kenfield +Kenfig +Kenhill +Kenhowe +Kenic +Keniff +Kenilwood +Kenilwoods +Kenilworth +Kenion +Keniston +Kenland +Kenlar +Kenleigh +Kenlen +Kenley +Kenloch +Kenlor +Kenmar +Kenmare +Kenmel +Kenmere +Kenmont +Kenmoor +Kenmor +Kenmore +Kenmuir +Kenmure +Kennabec +Kennady +Kennan +Kennard +Kennebec +Kennedy +Kennedy Knolls +Kennedy Memorial +Kennel +Kennel Barn +Kennell Hill +Kennelling +Kennelly +Kennels +Kennelwood +Kennelworth +Kenner +Kennerleigh +Kennerley +Kennesaw +Kenneson +Kennet +Kenneth +Kenneth Creek +Kenneth Hyde +Kenneth Kostka +Kenneth More +Kenneth Slessor +Kennett +Kennett Wharf +Kennewick +Kenney +Kenni +Kennicott +Kennie +Kenning +Kenninghall +Kennington +Kennington Park +Kennison +Kennsington +Kennworth +Kenny +Kenny Hill +Kenny Lofton +Kennylands +Keno +Kenoga +Kenora +Kenosha +Kenosia +Kenova +Kenreel +Kenrick +Kenridge +Kens +Kensal +Kensellas +Kensett +Kensico +Kensington +Kensington Church +Kensington High +Kensington Park +Kenslee Hill +Kenson +Kensor +Kenstan +Kenstford +Kenston +Kenswick +Kensworth +Kent +Kent Fire +Kent Fort +Kent Hatch +Kent House +Kent Place +Kent Point +Kent Pump +Kent Pump Fire +Kent Sq +Kent Town +Kent View +Kent Village +Kentbury +Kentdale +Kenter +Kentfield +Kentford +Kenthurst +Kentigern +Kentile +Kentish +Kentland +Kentlands +Kentlea +Kentley +Kentmere +Kentmore +Kentnor +Kenton +Kenton Park +Kentons +Kentos +Kentridge +Kents +Kents Bank +Kents Farm +Kents Hill +Kentsdale +Kentshire +Kentstone +Kentucky +Kentview +Kentville +Kentwal +Kentwell +Kentwood +Kentwyns +Kenver +Kenwar +Kenward +Kenway +Kenwick +Kenwin +Kenwith +Kenwood +Kenwood Forest +Kenwood Isles +Kenworth +Kenworthy +Kenwyn +Kenya +Kenyngton +Kenyon +Kenyons +Kenzel +Keoffram +Keogh +Keokee +Keokok +Keokuk +Keoncrest +Keota +Keough +Kephart +Kepler +Kepos +Keppel +Kepper +Keppler +Kepwick +Keran +Kerber +Kerbey +Kerby +Kerby Hill +Kerfoot +Kerger +Keri +Keri Ann +Keriba +Kerill +Kerin +Kerley +Kerlin +Kerman +Kermath +Kermes +Kermit +Kermoor +Kern +Kern Creek +Kerna +Kernal +Kernberry +Kerner +Kerney +Kernham +Kernochan +Kerns +Kernwood +Kero +Kerr +Kerrawah +Kerri +Kerrick +Kerridge +Kerrie +Kerrigan +Kerrill +Kerrinea +Kerrins +Kerrison +Kerriston +Kerroge +Kerrs +Kerrwood +Kerry +Kerry Ann +Kerry Beacon +Kerry Winde +Kerrydale +Kerryshire +Kersal +Kersal Hall +Kersal Vale +Kerschner +Kerscott +Kersey +Kersfield +Kersh +Kershaw +Kerslake +Kersley +Kersten +Kerstin +Kertsinger +Kervan +Kerves +Kerwin +Kerwood +Kesey +Keshan +Keslake +Keslar +Keslinger +Kesner +Kessel +Kessell +Kesserling +Kessingland +Kessler +Kester +Kesters +Kesterson +Kesteven +Keston +Kestor +Kestral +Kestrel +Kestrel Lake +Keswick +Ketay +Ketcham +Ketchams +Ketchen +Ketcherside +Ketchum +Ketelaar +Ketelsen +Ketewamoke +Ketewomoke +Kethel +Ketner +Ketridge +Kettell +Kettelson +Ketten +Kettenacker +Ketter +Kettering +Kettering on Oxford +Ketterman +Kettle +Kettle Creek +Kettle Green +Kettle Hill +Kettle Hole +Kettle Mountain +Kettle Pond +Kettle River +Kettle Run +Kettlehook +Kettleman +Kettleson +Kettlewell +Kettmann +Keuka +Kevan +Kevelioc +Keverton +Kevill +Kevin +Kevin Coombs +Kevin Longley +Kevin Walker +Kevinaire +Kevinberg +Kevington +Kevins +Kevyn +Kew +Kew Foot +Kew Forest +Kew Gardens +Kewadin +Kewanee +Kewferry +Kewin +Kewsick +Key +Key Largo +Key Route +Key Turn +Key West +Keyberry +Keyes +Keyes House +Keymar +Keymer +Keyne +Keyner +Keynes +Keynote +Keynsham +Keyntel +Keyport +Keys +Keys Ridge +Keyse +Keyser +Keysers +Keysford +Keysham +Keysor +Keystone +Keystone Manor +Keytone +Keyworth +Kezar +Kezia +Khakum +Khakum Wood +Khalid +Khalsa +Khama +Khartoum +Khun +Khyber +Kialba +Kiama +Kiaora +Kiara +Kiawah +Kiawah Island +Kibbles +Kiber +Kiberd +Kibo +Kibworth +Kice +Kickapoo +Kickham +Kidacre +Kidborough +Kidbrook Park +Kidbrooke +Kidbrooke Park +Kidd +Kidd Creek +Kiddal +Kidder +Kidderminster +Kidderpore +Kidders +Kiddie +Kiddiminister +Kidlington +Kidman +Kidmore +Kidmore End +Kidmore end +Kidomore End +Kidwell +Kidwell Field +Kidwells Park +Kiefer +Kiel +Kieland Ridge +Kielgart +Kielion +Kiely +Kientz +Kiep +Kieper +Kieran +Kiernan +Kierst +Kierstead +Kiersted +Kiesenwetter +Kiess +Kiessig +Kiest +Kiev +Kievit +Kifer +Kiffen +Kiger +Kihila +Kijek +Kiki +Kikuo +Kil +Kilarney +Kilauea +Kilbane +Kilbenny +Kilbernie +Kilbirnie +Kilborn +Kilbourn +Kilbourne +Kilbride +Kilburn +Kilburn High +Kilburne +Kilby +Kilby Glenn +Kilchurn +Kilcoby +Kilconnell +Kilconway +Kilcullen +Kildare +Kildeer +Kildonan +Kildoran +Kildowan +Kile +Kiley +Kilfoyle +Kilgore +Kilgour +Kilheeney +Kilimanjaro +Kiline +Kilkare +Kilkee +Kilkenny +Kilkerry +Kilkie +Killala +Killam Hill +Killanoola +Killarney +Killarney Pass +Killarny +Killawarra +Killbarron +Killdeer +Killearn +Killeaton +Killebrew +Killeen +Killey +Killian +Killians +Killick +Killieser +Killigrew +Killinger +Killinghurst +Killingsworth +Killingworth +Killon +Killoola +Killowen +Killuran +Killybegs +Killyon +Kilmaine +Kilmarnock +Kilmarnok +Kilmarsh +Kilmartin +Kilmer +Kilmington +Kilminister +Kilmiston +Kilmoray +Kilmore +Kilmorey +Kilmory +Kilmurray +Kiln +Kiln Barn +Kiln Croft +Kiln Pond +Kiln View +Kiln Wood +Kilner +Kilnfield +Kilnorey +Kilnsea +Kilnside +Kilnwood +Kilo +Kilpatrick +Kilpatrik +Kilpin Hill +Kilravock +Kilroe +Kilronan +Kilross +Kilrue +Kilrush +Kilsha +Kilsmore +Kilsyth +Kiltie +Kilvert +Kilworth +Kilzer +Kim +Kim Ann +Kim Hunter +Kim Kris +Kim Louise +Kimanna +Kimball +Kimball Beach +Kimball Hill +Kimballwood +Kimbark +Kimbarra +Kimbell +Kimber +Kimberlee +Kimberley +Kimberlin Heights +Kimberly +Kimberly Grove +Kimberly Woods +Kimbers +Kimberwick +Kimberwicke +Kimble +Kimble Park +Kimblehunt +Kimblewick +Kimbriki +Kimbro +Kimbrough +Kimcumber +Kimdee +Kime +Kimes +Kimiyo +Kimlee +Kimlo +Kimloch +Kimmel +Kimmeridge +Kimmig +Kimo +Kimpton +Kimwood +Kinarra +Kinbrace +Kinburn +Kincade +Kincaid +Kincardine +Kincheloe +Kincraig +Kindee +Kindelan +Kinder +Kinder Farm Park +Kinderbrook +Kindergarten +Kinderhaven +Kinderkamack +Kinders +Kinderton +Kindler +Kindlewood +Kindra Hill +Kindross +Kineholme +Kineo +Kiner +Kinfauns +King +King Albert +King Alfred +King Arthur +King Arthurs +King Caesar +King Carter +King Centre +King Charles +King Coel +King Creek +King David +King Duncan +King Edward +King Edward VII +King Farm +King Fisher +King George +King George IV +King George V +King George VI +King Georges +King Georges Post +King Grant +King Hall +King Harold +King Harry +King Henry +King Henrys +King Hill +King James +King James Landing +King John +King Johns +King Krest +King Louis +King Malcolm +King Manor +King Max +King Midas +King Muir +King Philip +King Phillip +King Richard +King Ridge +King Solomon +King William +Kingarth +Kingate +Kingbird +Kingbrook +Kingcroft +Kingcup +Kingdale +Kingdom +Kingdon +Kingery +Kingfield +Kingfisher +Kingham +Kingham Ranch +Kinghorn +Kinghorne +Kinghurst +Kingingwood +Kinglake +Kingland +Kinglet +Kingly +Kingman +Kingmont +Kingmoor +Kingridge +Kings +Kings Arm +Kings Arms +Kings Arrow +Kings Beach +Kings Bench +Kings Canyon +Kings Chapel +Kings Charter +Kings College +Kings Color +Kings Court +Kings Creek +Kings Creek Truck +Kings Cross +Kings Crossing +Kings Farm +Kings Field +Kings Forest +Kings Furlong +Kings Gate +Kings Grant +Kings Grove +Kings Hall +Kings Head +Kings Heather +Kings Heights +Kings Hill +Kings House +Kings Lake +Kings Landing +Kings Lynn +Kings Manor +Kings Meadow +Kings Mill +Kings Mountain +Kings Park +Kings Pine +Kings Point +Kings Retreat +Kings Terrace +Kings Toll +Kings Tree +Kings Valley +Kings View +Kings Village +Kings Walk +Kings Way +Kings Wood +Kingsand +Kingsash +Kingsbay +Kingsberry +Kingsbridge +Kingsbrook +Kingsbury +Kingsbury Estates +Kingsclare +Kingsclear +Kingsclere +Kingscliffe +Kingscote +Kingscourt +Kingscroft +Kingsdale +Kingsdon +Kingsdown +Kingsdowne +Kingsfernsden +Kingsfield +Kingsford +Kingsford Smith +Kingsgate +Kingsgrove +Kingshill +Kingshold +Kingsholme +Kingshurst +Kingsingfield +Kingsland +Kingslangley +Kingslea +Kingslee +Kingsleigh +Kingsley +Kingsley Wood +Kingsly +Kingsman +Kingsmans Farm +Kingsmead +Kingsmead Main +Kingsmen +Kingsmere +Kingsmill +Kingsmoor +Kingsnorth +Kingsord +Kingspark +Kingspit +Kingsport +Kingsthorpe +Kingston +Kingston Brook +Kingston Eden +Kingston Brook +Kingston Eden +Kingston Hall +Kingstown +Kingstowne +Kingstowne Commons +Kingstowne Village +Kingstream +Kingstree +Kingsview +Kingsview Village +Kingsway +Kingsway Westbourne +Kingswear +Kingswell +Kingswick +Kingswood +Kingswood Pond +Kingsworthy +Kingthorpe +Kingusse +Kingwell +Kingwood +Kinkade +Kinkaid +Kinkead +Kinkel +Kinkuna +Kinlay +Kinlet +Kinley +Kinloch +Kinlock +Kinloss +Kinmel +Kinmont +Kinmonth +Kinnaird +Kinne +Kinnear +Kinnelon +Kinnerton +Kinney +Kinnickinnic +Kinnicut +Kinnicutt +Kinnikinnic +Kinnoul +Kinnybrook +Kino +Kinross +Kinsale +Kinsbourne Green +Kinsel +Kinsella +Kinsey +Kinship +Kinsington +Kinsley +Kinsman +Kinson +Kinsport +Kinster +Kinswood +Kintmount +Kintop +Kintore +Kintyre +Kinvara +Kinvarra +Kinver +Kinzel +Kinzer +Kinzey +Kinzie +Kinzley +Kiogle +Kiola +Kiora +Kiote +Kiowa +Kip +Kiparra +Kiperash +Kipheart +Kipland +Kipling +Kipp +Kippara +Kippax +Kippax Valley +Kipperkopper +Kippington +Kippist +Kippling +Kipps +Kippy +Kira +Kirben +Kirby +Kirby Lionsdale +Kirbys +Kirbywood +Kirch +Kirche Hill +Kirchen +Kirchner +Kirchoff +Kirckpatrick +Kirdford +Kirk +Kirk Farm +Kirk Glen +Kirkbank +Kirkbrook +Kirkby +Kirkcady +Kirkcaldy +Kirkcrest +Kirkdale +Kirke +Kirker Pass +Kirketon +Kirkfell +Kirkfield +Kirkgate College +Kirkgate High +Kirkgate Highgate +Kirkhall +Kirkham +Kirkhamgate Lindale +Kirkhill +Kirkhope +Kirkland +Kirkland Ranch +Kirkleas +Kirklee +Kirklees +Kirkley +Kirklin +Kirklinton +Kirklyn +Kirklynn +Kirkman +Kirkmans +Kirkmanshulme +Kirkmichael +Kirkmont +Kirkpatrick +Kirkridge +Kirkside +Kirkstall +Kirkstall Bridge +Kirkstall Hill Eden +Kirkstead +Kirksted +Kirkstone +Kirksville +Kirkton +Kirkup +Kirkwall +Kirkwick +Kirkwood +Kirman +Kirmes +Kirpatrick +Kirra +Kirrang +Kirrawee +Kirribilli +Kirschman +Kirschoff +Kirshon +Kirst +Kirsten +Kirstmont +Kirston +Kirtland +Kirtle +Kirtley +Kirton +Kirwin +Kisconko +Kiser +Kishfield +Kishimura +Kishwaukee +Kiska +Kismet +Kiso +Kissam +Kissel +Kissena +Kissing Point +Kissling +Kista Dan +Kiswick +Kit +Kit Carson +Kit Hill +Kit Kat +Kitayama +Kitchell +Kitchell Lake +Kitchener +Kitcheners +Kitchenour +Kitching +Kitchner +Kitcombe +Kite +Kite Hawk +Kite Hill +Kite Wood +Kither +Kitkatts +Kitmary +Kitmore +Kitrk +Kitsap +Kitsbridge +Kitsbury +Kitsmead +Kitson +Kitt +Kitt Moss +Kittani +Kittanning +Kitter +Kittery +Kittewake +Kittie +Kittiwake +Kitto +Kittoe +Kittredge +Kittridge +Kitts +Kittson +Kitty +Kitty Duvall +Kitty Hawk +Kitty Pozer +Kittyhawk +Kitwood +Kiva +Kiver +Kivy +Kiwanis +Kiwanis Beach +Kiwanis Campground +Kiwong +Kizer +Klaers +Klaibar +Klainert +Klakring +Klamath +Klamath River +Klare +Klasen +Klassen +Klasson +Klaus +Klausers +Klea +Klee +Klehm +Kleiber Hall +Klein +Klein Creek +Kleinman +Kleins +Kleis +Klem +Klemetson +Klen +Klengel +Klianthi +Klickitat +Klier +Kliewer +Klimm +Kline +Kling +Klinger +Klingle Valley +Klinsky +Klipspringer +Klo +Klockstad +Kloer +Kloman +Klondike +Klough +Klovstad +Kluge +Klute +Kluth +Knack +Knapmill +Knapp +Knapsack +Knapton +Knaresborough +Knarlwood +Knarr +Knarr Barn +Knatchbull +Knatts +Knatts Valley +Knauer +Knave Wood +Kneafseys +Knebworth +Knecht +Kneeland +Knell +Knella +Knelle +Kneller +Knerr +Knesel +Knibb +Knichel +Knickerbocker +Knickerson +Knife Shop +Knight +Knight Arch +Knighten +Knighthill +Knighthood +Knightland +Knightlinger +Knighton +Knightons +Knightrider +Knights +Knights Bridge +Knights Forest +Knights Hill +Knights Park +Knights Park Denmark +Knightsbridge +Knightscroft +Knightsen +Knightsfield +Knightshayes +Knightswick +Knightswood +Knightwake +Knightwood +Knightwoods +Knivet +Knivton +Knob +Knob Cone +Knob Hill +Knobcone +Knobhill +Knobloch +Knoch Knolls +Knock +Knock Mill +Knockall +Knockhall +Knockholt +Knockhundred +Knocklayde +Knockwood +Knoelke +Knole +Knoll +Knoll Acres +Knoll Creek +Knoll Crest +Knoll Glen +Knoll Haven +Knoll Manor +Knoll Mist +Knoll North +Knoll Park +Knoll Ridge +Knoll Top +Knoll Valley +Knoll View +Knoll Way +Knoll Wick +Knoll Wood +Knollbrook +Knollcrest +Knollcross +Knolle +Knolle Bros +Knolles +Knollin +Knollridge +Knolls +Knolls Pond +Knollside +Knollton +Knolltop +Knollview +Knollwood +Knollys +Knopf +Knopp +Knorr +Knot +Knota +Knott +Knott Hill +Knottingham +Knottingwood +Knottisford +Knottocks +Knotts Green +Knotty Oak +Knotty Pine +Knotwood +Knowes +Knowl +Knowl Top +Knowland +Knowle +Knowle Park +Knowledge +Knowles +Knowles Hill +Knowlman +Knowlsey +Knowlton +Knowsley +Knowsthorpe +Knox +Knox Park +Knoxboro +Knoxbury +Knoxville +Knoyle +Knudtsen +Knuth +Knutsen +Knutsen Knoll +Knutsford +Knutsford Old +Knutson +Knypersley +Koa +Koala +Koala Bear +Kobada +Kobala +Kobara +Kobb +Kobbe +Kobe +Kober +Kobert +Koblike +Koch +Koch Peak +Kocher +Kochia +Kochka +Kociemba +Kodaya +Kodiak +Koehl +Koehler +Koehling +Koehnen +Koelle +Koenig +Koeper +Koepke +Koepp +Koester +Kofman +Koford +Koftinow +Kogan +Kohala +Kohat +Kohima +Kohl +Kohlepp +Kohler +Kohler Garden +Kohley +Kohlhoss +Kohlman +Kohlwood +Kohout +Kohr +Kokera +Koko +Kokoda +Kokoma +Kokomo +Kokora +Kolb +Kolbert +Kolff +Kolin +Koll Center +Kolling +Kollmar +Kollum +Kolmar +Kolmer +Kolob +Kolodong +Koloona +Kolpin +Kolrausch +Kolstad +Kolze +Koman +Komenich +Komiatum +Komina +Komirra +Komorn +Kon Tiki +Kona +Kondazian +Kondos +Kondrup +Konen +Konet +Konish +Konittekock +Konjevich +Konner +Konrad +Konvalin Oaks +Konynenburg +Kooba +Koobilya +Kooemba +Kookaburra +Koola +Kooloora +Koombalah +Koonawarra +Koongara +Koonya +Koopman +Koopmans +Koora +Kooraban +Koorabar +Koorabel +Koorala +Koorangi +Koorawatha +Koorinda +Koorine +Kooringa +Kooringai +Kooringal +Koorong +Koorool +Kooser +Koosman +Kootenai +Kootingal +Koowong +Kooy +Kooyong +Kop Hill +Kopf +Koping +Kopp +Koppie +Kopping +Korangai +Korbel +Korean War Veterans +Korfitsen +Korinya +Korman +Korn +Korndyk +Korneck +Kornett +Korogwe Forest +Korokan +Korol +Korrel +Kort +Kortright +Kortum +Kortum Canyon +Korvale +Korvett +Kosciusco +Kosciusko +Kosciuszko +Kosec +Kosene +Koshivas +Kosich +Koski +Kosmas +Kosmina +Koso +Kossman +Kossuth +Kosta +Koster +Kostner +Kotenberg +Kotlik +Kotlin +Koto +Kotschevar +Kott +Kottinger +Kouba +Kourtney +Kousa +Kouwenhoven +Kov +Kovacs +Koval +Kovanda +Kovar +Kovey +Kovr +Kowal +Kowald +Kowari +Kowell +Koya +Koyen +Kozera +Koziara +Kozy +Kraay +Kraemer +Kraft +Krafton +Krainski +Krakar +Kraken +Krakow +Kral +Kralj +Krame +Kramer +Krameria +Kraml +Kramme +Krapish +Krattley +Kratz +Krause +Kravchenok +Krazy Acre +Krebs +Krech +Kreck +Kredel +Kreeger +Kreekview +Kreekwood +Kreil +Kreischer +Kreitzburg +Krenn +Krenz +Kress +Kress Farm +Kresse +Kressin +Kresswood +Krestrel +Krestwood +Kreth +Kreuse Canyon +Kreuser +Kreutzer +Kreuz +Kreuzer +Krey +Krieger +Krinbill +Kring +Krings +Kris +Krishna +Krismer +Kriss +Krista +Kriste +Kristen +Kristi +Kristie +Kristin +Kristina +Kristine +Kristmont +Kristo +Kristoffer +Kristy +Kristyn +Kroc +Krochmal +Krochmally +Kroeger +Krohn +Kroll +Krolop +Kromray +Krona +Kroner +Kronmeyer +Kroombit +Krooner +Kropf +Krost +Krotiak +Krouser +Krowka +Kroy +Krueger +Krug +Kruger +Kruhm +Kruk +Krull +Krumb +Kruse +Kruse Ranch +Kruser +Kruze +Krysch +Krysiak +Krystal +Krystallos +Ku Ring Gai Chase +Kubek +Kuberski +Kublank +Kubor +Kuck +Kudilla +Kuehnis +Kuester +Kuethe +Kuhl +Kuhlthau +Kuhn +Kuhnle +Kulani +Kulas +Kulgoa +Kulgun +Kulick +Kulinia +Kullaroo +Kullberg +Kuller +Kulshan +Kult +Kumar +Kumbardang +Kumquat +Kumulla +Kunath +Kunde Winery +Kundes +Kundi +Kundibah +Kunen +Kungala +Kungar +Kuniholm +Kunipipi +Kunkel +Kunkundi +Kuno +Kuntz +Kuppa +Kupsch +Kuranda +Kurchian +Kurdyla +Kuringai +Kurland +Kurnell +Kuroki +Kurraba +Kurrabi +Kurrajong +Kurrara +Kurrawa +Kurri +Kurt +Kurth +Kurtis +Kurtz +Kuru +Kuruc +Kurung +Kurvers Point +Kurwin +Kurzon +Kushner +Kushnetki +Kusilek +Kuss +Kussoth +Kutcher +Kuter +Kutmut +Kuts +Kuttabul +Kuzik +Kvistad +Kwajalein +Kwedar +Kyalite +Kybes +Kyer +Kyffin +Kyle +Kyleigh +Kylemore +Kyler +Kyllo +Kymberley +Kyme +Kynaston +Kynder +Kyndhurst +Kyne +Kyngdon +Kynoch +Kyogle +Kyong +Kyra +Kyrle +Kytes +Kyverdale +Kywong +L Fernwood +L I Exwy Service +L R A +L Ranch +L V Loop +L W Besinger +L W Johnson +LIE North Service +LIE South Service +LIsmore +LIttle Comber +LIttle Commodore +LMU Commercial +La Alameda +La Alegria +La Avanzada +La Baig +La Barbera +La Baree +La Barranca +La Barthe +La Bella +La Boheme +La Bolsa +La Brea +La Brecque +La Cadena +La Campana +La Canada +La Canyada +La Casa +La Casita +La Cienega +La Cima +La Clair +La Colina +La Conner +La Contenta +La Corona +La Corso +La Corte +La Coruna +La Coruno +La Cosa +La Costa +La Coste +La Count +La Cresenda +La Cresenta +La Cresta +La Croix +La Crosse +La Cruz +La Cuesta +La Cumbre +La Donna +La Duke +La Encina +La Esperanza +La Espiral +La Fayette +La Field +La Follette +La Fond +La Fonda +La Fontaine +La Fox +La Fox River +La France +La Franchi +La Goma +La Grama +La Granada +La Granda +La Grande +La Grange +La Habra +La Hai Roi +La Haigh +La Haya +La Herran +La Homa +La Honda +La Jolla +La Jota +La Junta +La Lena +La Loma +La Londe +La Lynn +La Madrona +La Maison +La Mancha +La Mans +La Mar +La Mascotte +La Mesa +La Messa +La Mirada +La Monte +La Nuez +La Pala +La Palm +La Paloma +La Paz +La Perouse +La Placita +La Plata +La Playa +La Plaza +La Plume +La Porte +La Pradera +La Prenda +La Puerta +La Questa +La Quinta +La Ragione +La Reina +La Reina Real +La Rena +La Rhee +La Ribera +La Rinconada +La Riva +La Riviera +La Riviere +La Rocca +La Roche +La Roda +La Rosa +La Rose +La Rue +La Salette +La Salida del Sol +La Salle +La Selva +La Sendita +La Serena +La Setta +La Sierra +La Siesta +La Torre +La Tour +La Vera +La Vereda +La Vergne +La Verne +La Vida +La Vista +La Vita +La Vuelta +La para +LaSalle +Laars +Laauwe +Laban Pratt +Labarge +Labath +Labau +Labbe +Label +Labelle +Labernum +Labo +Labonte +Labor +Labor In Vain +Labore +Labour Centre +Labourn +Labrador +Labranza +Labrooke +Labrott +Labtec +Labuan +Labumum +Laburch +Laburnam +Laburnham +Laburnum +Labworth +Lac Lavon +Lac Lehman +Lac du Beatrice +Lacasse +Lacassie +Lace +Lace D +Lacebark +Lacewing +Lacewood +Lacey +Laceys +Lachal +Lachapelle +Lachine +Lachlan +Lackawanna +Lackey +Lackey Dam +Lackford +Lackington +Lackland +Lackspur +Lacky Dam +Laclair +Laclede +Lacoma +Lacombe +Lacon +Lacona +Laconheath +Laconia +Lacosta +Lacota +Lacrosse +Lacrozia +Lacy +Lad +Ladas +Ladbroke +Ladbrook +Ladbrooke +Ladbury +Ladcastle +Ladd +Ladd Hill +Ladd Tract +Laddie +Laddin Rock +Laddins +Ladds +Ladenburg +Ladera +Laderman +Ladero +Ladew +Ladge +Ladham +Ladhill +Ladies +Ladino +Ladner +Ladomus +Ladonia +Ladram +Ladson +Ladue +Ladues End +Ladwik +Lady +Lady Alesford +Lady Ann +Lady Bank +Lady Bird +Lady Bridge +Lady Brook +Lady Bug +Lady Carrington +Lady Cutler +Lady Game +Lady Jamison +Lady Jane +Lady Marion +Lady Oak +Lady Penrhyn +Lady Pit +Lady Slipper +Lady Somerset +Lady Wakehurst +Lady Winter +Lady Wood +Ladybank +Ladybarn +Ladybird +Ladybooth +Ladybridge +Ladybrook +Ladyclose +Ladycroft +Ladyegate +Ladygrove +Ladymeade +Ladypit +Ladyshore +Ladyslipper +Ladysmith +Ladythorn +Ladythorne +Ladywell +Ladywood +Lae +Lafarge +Lafata +Lafayette +Lafayette Center +Lafayette Forest +Lafayette Park +Lafayette Ridge +Lafayette Village +Laffans +Laffayette +Lafferty +Lafield +Laflamme +Lafleur +Laflin +Lafollete +Lafond +Lafone +Lafontaine +Laforet +Laforge +Lafox +Lafoye +Lafranconi +Lafreniere +Lagade +Lagaret +Lage +Laggan +Lagham +Lagiss +Lago +Lago De Bracciano +Lago Oaks +Lago Vista +Lagoda +Lagonda +Lagoon +Lagoon Fire +Lagoon Valley +Lagoon View +Lagorio +Lagrandeur +Lagrange +Laguardia +Laguna +Laguna Creek +Laguna Grove +Laguna Honda +Laguna Main +Laguna Manor +Laguna Mirage +Laguna Oaks +Laguna Park +Laguna Springs +Laguna Vega +Laguna Vista +Laguna Wind +Laguna Woods +Lagunaria +Lagunita +Lagunitas +Lagunitas School +Lahams +Lahard +Lahey +Lahiere +Lahinch +Lahn +Lahon +Lahonda +Lahontan +Lahti +Laidlaw +Laidlow +Laight +Laighton +Laigle +Laila +Lain +Laindon +Laindon Common +Laindon High +Laine +Laings +Laiolo +Laird +Lairds Landing +Laith +Laithe Croft +Laitoki +Laitwood +Lake +Lake Adalyn +Lake Almanor +Lake Anza +Lake Arrowhead +Lake Augusta +Lake Barlee +Lake Beach +Lake Bellevue +Lake Berryessa +Lake Bluestone +Lake Bluff +Lake Boone +Lake Braddock +Lake Breeze +Lake Bridgeport +Lake Candlewood +Lake Canyon +Lake Central +Lake Chabot +Lake Chad +Lake Champlain +Lake Chapel +Lake Charles +Lake Christopher +Lake Circle +Lake Claire +Lake Cook +Lake Court +Lake Cove +Lake Curve +Lake Dam +Lake Dell +Lake Denmark +Lake Echo +Lake Eliza +Lake Elmo +Lake End +Lake Erie +Lake Fairfax +Lake Fall +Lake Farrington +Lake Fontal +Lake Forest +Lake Forrest +Lake Front +Lake Garda +Lake Garrison +Lake George +Lake Glen +Lake Grove +Lake Haughey +Lake Hazeltine +Lake Herman +Lake Heron +Lake Hill +Lake Hills +Lake Hills Connector +Lake Hinsdale +Lake Home +Lake House +Lake Huron +Lake Iosco +Lake Isle +Lake Jackson +Lake James +Lake Johanna +Lake Katherine +Lake Knoll +Lake Landing +Lake Largo +Lake Lawn +Lake Lenore +Lake Lesina +Lake Linden +Lake Lock +Lake Louise +Lake Lucy +Lake Lynwood +Lake Manor +Lake Marian +Lake Marie +Lake Mary +Lake Mary Cele +Lake McClure +Lake Mead +Lake Meadow +Lake Merced +Lake Michigan +Lake Nanuet +Lake Natoma +Lake Newport +Lake Nimbus +Lake Normandy +Lake Oaks +Lake Occoquan +Lake Of Isles +Lake One +Lake Oneida +Lake Ontario +Lake Overlook +Lake Park +Lake Pillsbury +Lake Pine +Lake Placid +Lake Pleasant +Lake Plz +Lake Point +Lake Pointe +Lake Potomac +Lake Pulaski +Lake Pyramid +Lake Ranch +Lake Ree +Lake Ridge +Lake Ridge Club +Lake Riley +Lake Rose +Lake Santa Clara +Lake Sarah +Lake Sarah Heights +Lake Shore +Lake Shore Crest +Lake Susan +Lake Susan Hills +Lake Tana +Lake Temescal +Lake Terrace +Lake Terrapin +Lake Towne +Lake Trail +Lake Trasineno +Lake Tree +Lake Valentine +Lake Valley +Lake Varuna +Lake View +Lake Villa +Lake Village +Lake Virginia +Lake Vista +Lake Warren +Lake Washington +Lake Wawasee +Lake Wilhaggin +Lake Windermere +Lake Zurich +Lakeaires +Lakebird +Lakebrook +Lakechime +Lakecliff +Lakecrest +Lakefair +Lakefield +Lakeford +Lakeforest +Lakefront +Lakegreen +Lakehall +Lakehaven +Lakehill +Lakehouse +Lakehurst +Lakeknoll +Lakeland +Lakeland Park +Lakeland Shores +Lakeland Valley +Lakeland fells +Lakelands +Lakelawn +Lakeman +Lakemba +Lakemont +Lakemoor +Lakemore +Lakemuir +Laken +Lakenheath +Lakenhurst +Lakepark +Lakepoint +Lakepointe +Laker +Lakeridge +Lakeridge Oaks +Lakes +Lakeshire +Lakeshore +Lakeshore Plaza +Lakeside +Lakeside Circle +Lakeside Manor +Lakeside Oak +Lakeside View +Lakeside Village +Lakespring +Lakespur +Lakestone +Lakeswood +Laketree +Lakevale +Lakeview +Lakeview Fire +Lakeview Terrace +Lakeville +Lakewater +Lakeway +Lakewind +Lakewinds +Lakewood +Lakewood Falls +Lakewood Farms +Lakewood Park +Lakewood Prairie +Lakewood Trails +Lakewoods +Lakeworth +Lakin +Lakota +Lalchere +Laleham +Lalic +Lalich +Lalique +Lallas +Lalleford +Laloki +Lalonde +Lalor +Lalos +Lamanda +Lamanna +Lamar +Lamarck +Lamarcus +Lamarr +Lamarre +Lamartine +Lamb +Lamb Heights +Lambarde +Lambaren +Lambden +Lambdin +Lambe +Lambeck +Lamberhurst +Lamberson +Lambert +Lambert Bridge +Lambert Creek +Lambertina +Lamberton +Lamberton Square +Lamberts +Lamberts Mill +Lambertson +Lambeth +Lambeth High +Lambeth Hill +Lambeth Palace +Lambiance +Lambie +Lambley +Lambolle +Lambourn +Lambourne +Lambourne Hall +Lambrecht +Lambridge +Lambridge Wood +Lambrusca +Lambs +Lambs Conduit +Lambs Farm +Lambsgate +Lambskin +Lambton +Lamburn +Lamer +Lamerock +Lamers +Lamerton +Lamesa +Lametti +Lamington +Lamlash +Lammas +Lammas Park +Lammermoor +Lammers +Lamoil +Lamoine +Lamoka +Lamon +Lamond +Lamonerie +Lamont +Lamonte +Lamorak +Lamoraux +Lamore +Lamorna +Lamotte +Lamour +Lamoureux +Lamp +Lamp Lighter +Lamp Post +Lamp Rey +Lampard +Lampasas +Lampec +Lamphere +Lamping +Lampits +Lampits Hill +Lamplight +Lamplighter +Lamplighters +Lamport +Lamprey +Lampson +Lampton +Lampton Park +Lamring +Lamrock +Lamsey +Lamshin +Lamson +Lan Ark +Lana +Lanacre +Lanae +Lanai +Lanark +Lanatt +Lanbros +Lanbury +Lancashire +Lancaster +Lancaster School +Lancastre +Lancastrian +Lance +Lancefield +Lanceley +Lancell +Lancelot +Lancelyn +Lancer +Lancero +Lancers +Lancet +Lancewood +Lanchester +Lancia +Lancing +Lancot +Lancraft +Land +Land Off Causeway +Land Off Kendall +Land Off Pond +Land Off Priest +Land Off Whipple +Land Park +Land View +Landa +Landaker +Landale +Landana +Landau +Landcroft +Landells +Landen +Lander +Lander Set +Landeros +Landers +Landerset +Landerwood +Landess +Landfair +Landfall +Landfield +Landfill +Landfill Access +Landford +Landgraf +Landgrane +Landgrave +Landgreen +Landham +Landing +Landings +Landini +Landis +Landman +Landmark +Landmead +Landmeier +Landolt +Landon +Landon Hill +Landor +Landore +Landos +Landover +Landra +Landrace +Landrail +Landreth +Landridge +Landrock +Landry +Lands +Lands End +Landsberg +Landsburg +Landscape +Landscove +Landsdale +Landsdown +Landsdowne +Landseer +Landsend +Landsfield +Landtree +Landvale +Landview +Landwehr +Landwick +Landy +Lane +Lane And Dowry +Lane Cove +Lane Crest +Lane End +Lane Head +Lane Lorraine +Lanehead +Lanell +Lanercost +Lanes +Lanesboro +Lanesburgh +Laneside +Lanett +Lanette +Laneview +Lanewood +Lanfair +Lanfear +Lanfield +Lanford +Lanfranc +Lang +Langaller +Langbar +Langborough +Langbourne +Langbrook +Langcroft +Langdale +Langdon +Langdrum +Lange +Langelier +Langen +Langer +Langerfeld +Langetree +Langevin +Langewood +Langfield +Langford +Langham +Langhart +Langhedge +Langholm +Langhome +Langhorn +Langhorne +Langhurst +Langhurst Wood +Langland +Langlands +Langler +Langley +Langley Canyon +Langley Common +Langley Fork +Langley Hall +Langley Hill +Langley Lodge +Langley Oaks +Langley Park +Langley Platt +Langley Vale +Langleybury +Langly +Langmaid +Langmans +Langmead +Langmuir +Langner +Langness +Langney +Lango +Langport +Langridge +Langroyd +Langset +Langsett +Langsford +Langshan +Langshott +Langside +Langstaff +Langston +Langstone +Langthorne +Langton +Langtree +Langtry +Langwith +Langwith Valley +Langworth +Langworthy +Lanham +Lanham Severn +Lanhill +Lani +Lani Kai +Lanier +Lanigan +Laning +Lanini +Lanitos +Lankers +Lankester Parker +Lankford +Lanktree +Lanning +Lannock +Lannon +Lannoy +Lanny +Lano +Lanram +Lanrick +Lanridge +Lansbrook +Lansbury +Lansdale +Lansdell +Lansdown +Lansdowne +Lansdwone +Lanseer +Lansfield +Lansford +Lanshaw +Lansing +Lansley +Lansmere +Lant +Lantana +Lantern +Lantern Hollow +Lantern View +Lanterns +Lanthorn +Lantis +Lanton +Lantz +Lanvalley +Lanvanor +Lanyard +Lanza +Lanzaro +Lapa +Lapeer +Lapham +Lapidge +Lapier +Lapierre +Lapin +Lapine +Lapins +Lapis +Lapish +Lapland +Laplata +Laport +Laporte +Lapper +Lappmark +Lapre +Lapridge +Lapstrake +Lapu Lapu +Lapus +Lapwing +Laque +Lara +Larada +Laramee +Laramere +Laramie +Laraway +Larbert +Larbo +Larbre +Larc +Larc Industrial +Larch +Larch Hill +Larchdale +Larchfield +Larchmont +Larchmont Square +Larchmore +Larchview +Larchwood +Larciano +Larcom +Larcombe +Larcridge +Laredo +Laren +Larentia +Large +Larges +Larges Bridge +Largewood +Largo +Largo Center +Larguita +Largura +Laria +Lariat +Larimar +Larimer +Larios +Larissa +Lariston +Larita +Larium +Lark +Lark Brown +Lark Center +Lark Haven +Lark Hill +Lark Rise +Lark Song +Lark Spur +Larkard +Larkbere +Larkdale +Larkdale E +Larkellen +Larken +Larkey +Larkfield +Larkhall +Larkhill +Larkin +Larkin Ridge +Larking +Larkings +Larkington +Larkins +Larkmead +Larkmeade +Larks +Larksfield +Larkshall +Larkspur +Larkspur Canyon +Larkspur Plaza +Larkswood +Larkview +Larkwell +Larkwood +Larlin +Larmans +Larmuth +Larnach +Larne +Larned +Larnis +Larno +Larnock +Larochelle +Laron +Larool +Larosa +Larose +Larpent +Larpin +Larra +Larrabee +Larraway +Larrimore +Larrlyn +Larry +Larry Heller +Larry Ho +Larsdotter +Larsen +Larsens +Larson +Larson Farm +Larstan +Larue +Larup +Larwin +Larwood +Las Amigas +Las Animas +Las Astas +Las Barrancas +Las Brisas +Las Casas +Las Casitas +Las Colinas +Las Colindas +Las Cumbres +Las Dunas +Las Encinitas +Las Feliz +Las Flores +Las Gallinas +Las Huertas +Las Juntas +Las Lomas +Las Lomitas +Las Miradas +Las Olas +Las Ovejas +Las Palmas +Las Pavadas +Las Piedras +Las Plumas +Las Posadas +Las Positas +Las Pulgas +Las Quebradas +Las Ramblas +Las Raposa +Las Robles +Las Trampas +Las Vegas +Lasalle +Lasallette +Lasata +Lascelles +Lascombe +Laselle +Laser +Lash +Lash Larue +Lasham +Lashbrook +Lashbrooks +Lasher +Lashlake +Lasiandra +Lasker +Laskey +Laskie +Lass +Lassa +Lassell +Lassen +Lasser +Lasseter +Lassie +Lassiter +Lasso +Lasswade +Last +Last Chance +Lasta +Lastingham +Lastner +Lastreto +Lasuen +Latch +Latchford +Latchingdon +Latchmere +Latchmoor +Latchmore +Latchwood +Late Harvest +Late Walter +Lateward +Latham +Lathan +Lathbury +Lathem +Latholm +Lathom +Lathom Hall +Lathrop +Latigo +Latimer +Latin +Latina +Latisquama +Latney +Latoff +Latona +Latonia +Latoria +Latour +Latourette +Latrobe +Latshaw +Latta +Lattice +Lattie +Lattimer +Lattimore +Lattin +Latting +Lattingtown +Latton +Latty +Latura +Latvia +Laub Pond +Laud +Laud Honm +Lauder +Lauderdale +Laudervale +Lauerman +Lauf +Laufall +Lauff Ranch +Laugelle +Laughing Cow +Laughlin +Laughter +Laughton +Lauma +Lauman +Laumer +Launcelot +Launceston +Launch +Launch Site +Launching +Launders +Laundess +Laundress +Laundry +Launton +Lauppe +Laura +Laura Belle +Laura Lee +Laura Mark +Laura Ville +Lauradale +Laural +Laural Hills +Lauralton +Laurana +Lauras +Laurel +Laurel Acres +Laurel Bank +Laurel Bowie +Laurel Branch +Laurel Brook +Laurel Canyon +Laurel Cove +Laurel Creek +Laurel Crest +Laurel Dell +Laurel Dell Fire +Laurel End +Laurel Fort Meade +Laurel Glen +Laurel Grove +Laurel Hill +Laurel Hills +Laurel Hollow +Laurel Lakes +Laurel Leaf +Laurel Leaves +Laurel Oak +Laurel Oaks +Laurel Park +Laurel Race Track +Laurel Ridge +Laurel Rock +Laurel Springs +Laurel Valley +Laurel View +Laurel Wood +Laurel Woods +Laurelbrook +Laureldale +Laurelei +Laureles +Laurelglen +Laurelgrove +Laurelhurst +Laurels +Laurelton +Laurelview +Laurelwalk +Laurelwood +Lauren +Lauren Ridge +Laurence +Laurence Hamilton +Laurence Pountney +Laurene +Laurent +Lauretta +Laurette +Lauri +Laurian +Lauriana +Lauriat +Lauricella +Laurie +Laurie Ann +Laurie Jo +Laurie Lee +Laurie Meadows +Laurier +Laurieton +Laurin +Laurina +Laurinda +Laurine +Lauriston +Laurita +Lauritson +Lauritzen +Laury +Lausanne +Lausecker +Lausen +Lauser +Lausett +Laussat +Laux +Lava +Lava Bed +Laval +Lavalencia +Lavall +Lavalle +Lavally +Lavander +Lavant +Lavarack +Lavell +Lavelle +Lavelle Smith +Lavender +Lavender Hill +Lavender Park +Lavenders +Lavengro +Lavenham +Lavenida +Lavenir +Laventhal +Laver +Lavergne +Lavern +Laverne +Lavernock +Laverock +Lavers +Laverstoke +Lavidge +Lavidia +Lavigne +Lavin +Lavina +Lavington +Lavinia +Lavinus +Lavio +Laviolette +Lavister +Lavoie +Lavona +Lavoni +Lavonne +Lavrock +Law +Law Hall +Lawbrook +Lawday Place +Lawers +Lawes +Lawfield +Lawford +Lawfords Hill +Lawler +Lawler Ranch +Lawless +Lawley +Lawling +Lawlinge +Lawlins +Lawlor +Lawmarissa +Lawn +Lawn House +Lawn Ridge +Lawnbank +Lawndale +Lawnfair +Lawnhurst +Lawnmeadow +Lawns +Lawnside +Lawnswood +Lawnview +Lawnwood +Lawrance +Lawrence +Lawrence Brook +Lawrence Creek +Lawrence End +Lawrence Hargrave +Lawrence Hill +Lawrence Mill +Lawridge +Lawrie +Lawrie Park +Lawry +Laws +Laws Brook +Laws Ford +Lawsbrook +Lawson +Lawson Glen +Lawton +Lawton Moor +Lawtonka +Lawtonwood +Lawyers +Lawyers Hill +Lax +Laxell +Laxey +Laxfield +Laxton +Lay +Layard +Laybutt +Laycock +Layden +Layer +Layfield +Layham +Layhill +Layland +Laylock +Layman +Layminster +Layne +Laystall +Layters +Layters Green +Laytham +Laythan +Layton +Layton Hall +Layton Park +Layton Ridge +Laytonia +Laytons +Laytonsville +Lazaneo +Lazel +Lazell +Lazelle +Lazonby +Lazy +Lazy Acres +Lazy Creek +Lazy Day +Lazy Glen +Lazy Hollow +Lazy Point +Lazywoods +Lazzeretti +Lazzini +Le Ah +Le Ann +Le Bain +Le Britton +Le Brun +Le Chateau +Le Claire +Le Clos +Le Conte +Le Donne +Le Fevre +Le Fevres +Le Franc +Le Freth +Le Gendre +Le Grande +Le Havre +Le Jeune +Le Maire +Le Mans +Le Marchant +Le May +Le Moyne +Le Roy +Le Sueur +Le Temple +Le Visnet +Le personne +LeGrand +Lea +Lea Bridge +Lea Farm +Lea Hall +Lea Mount +Lea Park +Lea Valley +Leabank +Leabig +Leabons +Leabourne +Leabrook +Leaburn +Leach +Leaches +Leachs +Leacocks +Leacon +Leaconfield +Leacroft +Lead +Lead Mine +Leadale +Leadbeater +Leadbeaters +Leadbetter +Leadenhall +Leader +Leader Williams +Leadon +Leadville +Leadwell +Leaf +Leaf Lawn +Leaf Wing +Leafcrest +Leafcup +Leafcutter +Leafgreen +Leafhaven +Leafield +Leaflet +Leaford +Leaforis +Leafwood +Leafy +Leafy Oak +Leagrave +Leagrave High +Leah +Leahaven +Leahurst +Leahy +Leake +Leal +Lealand +Lealand Peck +Lealands +Leam +Leaman +Leaman Farm +Leamar +Leamington +Leamon +Leamoore +Leamore +Leamouth +Lean +Leana +Leander +Leaning Oak +Leann +Leanna +Leanne +Leanore +Leapale +Leapfrog +Leaping Deer +Leapingwell +Leapley +Lear +Learmonth +Learned +Learner +Learning +Lears Glen +Leary +Leas +Leasam +Leasey Bridge +Leasey Dell +Leaside +Leask +Leasowe +Leasowes +Leasure +Leat +Leatham +Leathe +Leather +Leather Creek +Leatherback +Leatherbark +Leatherchip +Leatherdale +Leatherhead +Leatherleaf +Leathermarket +Leathers +Leatherstocking +Leatherwood +Leathley +Leathwaite +Leathwell +Leaton +Leavenworth +Leaver +Leaves Green +Leavesden +Leavesley +Leavitt +Leavitt Woods +Leawarra +Leawood +Leaycraft +Leazes +Lebanon +Lebaron +Lebeaux +Lebec +Lebed +Lebeda +Lebel +Leber +Lebkamp +Leblanc +Leboeuf +Lebos +Lebrun +Leburmum +Lecante +Lech Walesa +Lechford +Lechmere +Lechner +Leckford +Leckwith +Lecky +Leclair +Leclaire +Leclerc +Lecluse +Lecompte +Leconfield +Lectern +Lecuyer +Leda +Ledborough +Ledbury +Leddy +Lede +Leder +Lederhaus +Ledford +Ledgard +Ledge +Ledge Brook +Ledge Hill +Ledge Rock +Ledge View +Ledgebrook +Ledgecrest +Ledgedale +Ledgelawn +Ledgemere +Ledgemore +Ledger +Ledgers +Ledgestone +Ledgetree +Ledgeview +Ledgeville +Ledgewood +Ledley +Lednura +Ledochowski +Ledoux +Ledrington +Ledsham +Ledson +Ledston +Ledston Main +Leduc +Ledward +Ledway +Ledwell +Ledyard +Lee +Lee Acres +Lee Alan +Lee Ann +Lee Brig Coronation +Lee Cemetery +Lee Chapel +Lee Church +Lee Conservancy +Lee Deforest +Lee Green +Lee High +Lee Hill +Lee Holm +Lee Jackson +Lee Jay +Lee Landing +Lee Lee +Lee Manor +Lee Masey +Lee Moor +Lee Overlook +Lee Patent +Lee Prescott +Lee School +Lee School Cross +Lee Vale +Lee Valley +Lee Wootens +Leeann +Leeberg +Leebrad +Leech +Leech Brook +Leechcroft +Leechpool +Leecroft +Leedale +Leedburg +Leeder +Leeds +Leeds Aire +Leeds Albion +Leeds Barnsdale +Leeds Bayswater +Leeds Boar +Leeds Call +Leeds Castle +Leeds Duncan +Leeds Hall +Leeds Infirmary +Leeds Moor +Leeds Old +Leeds Potternewton +Leeds Spen +Leeds Tunstall +Leeds Vicar +Leeds Victoria +Leeds York +Leedsville +Leedy +Leefield +Leegate +Leehigh +Leek +Leeke +Leelair +Leeland +Leeland Orchard +Leelyn +Leemans +Leemay +Leeming +Leemon +Leeper +Leepin +Leerdam +Lees +Lees Corner +Lees Court +Lees Crossing +Lees Farm +Lees Hall +Lees Hill +Lees New +Lees Park +Leesborough +Leesburg +Leese +Leeside +Leesley +Leeson +Leestone +Leesville +Leesway +Leeswood +Leet +Leeta Cornus +Leete +Leeton +Leeuwarden +Leever +Leeward +Leewater +Leewill +Leewood +Leewood Forest +Lefante +Lefavour +Lefevre Inn +Leffern +Lefferts +Lefke +Lefont +Lefrancois +Lefreth +Lefroy +Lefurgy +Legacy +Legacy Park +Legacy Pointe +Legana +Legard +Legaski +Legate +Legate Hill +Legation +Legato +Legatt +Legdewood +Legend +Legend Glen +Legend Manor +Legend Oaks +Legends +Legends Club +Legg +Leggatt +Leggatts Wood +Legge +Leggerini +Leggett +Leggo +Leggs +Leggs Heath +Leggs Hill +Legh +Leghorn +Legion +Lego +Legon +Legra +Legrand +Legregni +Legros +Legsheath +Lehan +Lehigh +Lehman +Lehmann +Lehmer +Lehn +Lehnert +Lehnertz +Lehr +Lehrer +Lehtinen +Lei +Leibel +Leibert +Leibes +Leibig +Leibrandt +Leicester +Leichardt +Leichester +Leichhardt +Leick +Leidesdorff +Leigh +Leigh Beck +Leigh Cliff +Leigh Hall +Leigh Hill +Leigh Hunt +Leigh Mill +Leigh Park +Leigh View +Leigham +Leigham Court +Leighams +Leighbrook +Leighdon +Leighfield +Leighfield Valley +Leighfields +Leighlands +Leighs Lodge +Leighton +Leighton Buzzard +Leighton Wood +Leighwood +Leigton +Leila +Leilani +Leims +Leineke +Leinster +Leipzig +Leishear +Leister +Leisure +Leisure Oak +Leisure Town +Leisure World +Leisureville +Leitch +Leitches Wharf +Leith +Leith Park +Leith View +Leitha +Leitrim +Leitz +Leka +Lekoday +Lekoe +Leksand +Leksich +Lektorich +Lela +Lelak +Leland +Leland Farm +Leland Hill +Lelani +Leliaris +Lelland +Lelong +Leman +Leman Lake +Lemans +Lemar +Lemarc +Lemas +Lemay +Lemay Lake +Lembeck +Lembi +Lemcrow +Lemen +Lemire +Lemm +Lemmington +Lemmon +Lemna +Lemnos +Lemocks +Lemoine +Lemon +Lemon Hill +Lemon Tea +Lemon Thyme +Lemon Tree +Lemongrove +Lemons Bridge +Lemont +Lemontree +Lemonwell +Lemonwood +Lemoore +Lemorr +Lemos +Lemoyne +Lemsford +Lemur +Len +Len Hill +Lena +Lenacre +Lenah +Lenah Farm +Lenape +Lenapi +Lenard +Lenark +Lenaskin +Lenbob +Lenborough +Lenburg +Lench +Lenclair +Lencoe +Lendall +Lendell +Lendon +Lendore +Lendrum +Leneda +Lenel +Lenelby +Lenertz +Leness +Leney +Lenfant +Lenfell +Lenfest +Lenfield +Leng +Lengl +Lenglen +Lenham +Lenham Forstal +Lenham Heath +Lenhart +Lenhome +Lenhurst +Lenington +Lenis +Lenison +Leniston +Lenmore +Lennan Brook +Lennane +Lennard +Lennartz +Lennecke +Lennell +Lennis +Lennoco +Lennon +Lennox +Lennoxshire +Lenoir +Lenolt +Lenora +Lenore +Lenox +Lenoxdale +Lenray +Lenroc +Lens +Lenside +Lent +Lent Green +Lent Rise +Lentara +Lenten +Lenthall +Lenthen +Lenthorp +Lentmead +Lenton +Lentz +Lenwood +Lenz +Lenzen +Lenzi +Lenzie +Leo +Leo Park +Leo Slyvious +Leofrene +Leola +Leoleis +Leominster +Leominster Shirley +Leon +Leon Cook +Leona +Leonard +Leonard Calvert +Leonard Farm +Leonard Wood +Leonard Young +Leonardine +Leonardini +Leonardo +Leonardo Da Vinci +Leonardtown +Leonardville +Leone +Leonello +Leong +Leonhard +Leonhardt +Leonia +Leonor +Leonora +Leopold +Leos +Leota +Lepanto +Lepine +Leplastrier +Leppoc +Lerch +Lerch Creek +Lerer +Leric +Lerida +Leritz +Lerner +Lerners +Lernhart +Lerose +Leroux +Leroy +Leroy Gorham +Lerwick +Les +Lesa +Lesbourne +Lescombe +Lescot +Leseur +Lesford +Lesher +Leshyk +Lesieur +Leski +Leslee +Lesley +Leslie +Leslie Ann +Leslie Gilbert +Leslie Park +Leslie Smith +Leslyn +Lesney Park +Lesnick +Lesnie +Lesoir +Lessar +Lesser +Lessing +Lessingham +Lessington +Lessini +Lessness +Lester +Lester Grey +Lester Wall +Lesters +Leston +Lestric +Lesueur +Lesure +Leswell +Leswin +Leswing +Leta +Letawsky +Letcher +Letchmore +Letchworth +Letcombe +Letendre +Letham +Lethbridge +Leticia +Letitia +Letsdown +Lett +Lettau +Letter +Letter Box +Letterbox +Letterkenny +Letterman +Letterstone +Lettice +Lettie +Lettsom +Lettumann +Letzen +Leucha +Leue +Leumeah +Leuna +Leuning +Leupold +Leupp +Leura +Lev +Leva +Levade +Leval +Levant +Levato +Levbert +Levedale +Levee +Levee Access +Level +Level Crossing +Levelle +Leven +Levenage +Levendale +Levendi +Levenhurst +Levens +Levenshulme +Levenworth +Lever +Lever Edge +Lever Hall +Lever Park +Leverenz +Leveret +Leverett +Leverhulme +Leverich +Leveridge +Levering +Levern +Leveroni +Leverson +Leverstock Green +Leverton +Leveson +Levett +Levey +Levgar +Levi +Levick +Levin +Levine +Levington +Levinson +Leviston +Levit +Levitt +Levoy +Levuka +Levvy +Levy +Lewandowski +Lewanna +Lewd +Lewelling +Lewellyn +Lewelyn +Lewgars +Lewid +Lewin +Lewins +Lewinsville +Lewis +Lewis Brown +Lewis Chapel +Lewis Clark +Lewis Court +Lewis Farm +Lewis Foster +Lewis Hill +Lewis Isle +Lewis Knolls +Lewis Point +Lewis Spring +Lewisburg +Lewisbury +Lewisdale +Lewish +Lewisham +Lewishham +Lewiston +Lewistown +Lewitt +Lewmay +Lewood +Lewsey +Lewson +Lewyt +Lex +Lexann +Lexden +Lexford +Lexington +Lexington Crossing +Lexington School +Lexington Valley +Lexton +Ley +Ley Field +Ley Hey +Leyborne +Leybourne +Leyburn +Leyburne +Leycester +Leycett +Leycroft +Leyden +Leyden Park +Leydenhatch +Leydon +Leyes +Leyete +Leyfield +Leyfield The Manor +Leyhill +Leyland +Leyland Park +Leyland Ridge +Leylands +Leylang +Leymar +Leys +Leysdown +Leysfield +Leysholme +Leyspring +Leystone +Leystra +Leyswood +Leyte +Leythe +Leyton +Leyton Cross +Leyton Midland +Leyton Park +Leytonstone +Leytonstone High +Leytte +Leywell +Leywick +Leywood +Lezayre +Lherault +Liable +Liahona +Liana +Liardet +Liatris +Libbeus +Libbey +Libby +Libeau +Libera +Liberata +Liberator +Liberia +Liberty +Liberty Bell +Liberty Grove +Liberty Hall +Liberty Heights +Liberty Hill +Liberty Island +Liberty Lake +Liberty Lakes +Liberty Mill +Liberty Oak +Liberty Park +Liberty Pole +Liberty School +Liberty Square +Liberty Tree +Liberty View +Libourel +Libra +Library +Library Hill +Libs +Libuse +Licata +Liccicitos +Lichau +Lichen +Lichfield +Lichtenberg +Lick +Lick Mill +Lick River +Lickfolds +Lickless +Lida +Lidbury +Lidco +Liddell +Liddell Pipeline +Lidden +Liddicoat +Lidding +Liddington +Liddington Hall +Liddington New +Liddle +Liddon +Lidell +Lidfield +Lidgate +Lidgerwood +Lidget +Lidgett +Lidgett Park +Lidgetts +Lidiard +Lido +Lidsing +Lidwells +Lidyard +Liebenrood +Liebig +Liebrock +Lieder +Liedum +Lief Erickson +Liege +Lieno +Lieper +Lierly +Lies +Liese +Lietz +Lieutenant Cox +Life +Life Quest +Liffler +Liffre +Lift +Lifton +Ligar +Liggett +Ligham +Light +Light Alders +Light Guard +Light House +Light Infantry +Light Oaks +Light Springs +Lightborne +Lightbounds +Lightbourne +Lightbowne +Lightburn +Lightburne +Lightcap +Lightcliff +Lightermans +Lightfoot +Lighthorne +Lighthouse +Lighthouse Landing +Lighthouse View +Lightland +Lightlands +Lightner +Lightning +Lightning Ridge +Lightning View +Lightridge Farm +Lightshaw +Lightship +Lightson +Lightthorne +Lightwater +Lightwood +Ligman +Lignum +Ligon +Ligonier +Liguria +Ligurian +Lihon +Likala +Likely +Likens +Likes +Lila +Lilac +Lilac Blossom +Lilac Bush +Lilac Park +Lilah +Lilbet +Lilbourne +Lilestone +Liley +Lilford +Lilian +Lilibet +Lilienthal +Lilihina +Lilita +Lill +Lilla +Lillard +Lille +Lillechurch +Lillehei +Lilleshall +Lilley +Lilleyhoo +Lilli Pilli +Lilli Pilli Point +Lillian +Lillick +Lillie +Lillifee +Lilline +Lilliput +Lillis +Lilly +Lilly Bottom +Lilly Hill +Lilly Pilly +Lilly Pond +Lillys +Lilting +Lilva +Lily +Lily Bottom +Lily Cache +Lily Dhu +Lily Field +Lily Hill +Lily Lake +Lily Mar +Lily Park +Lily Pond +Lilyan +Lilybrook +Lilydale +Lilyfield +Lilypad +Lilyville +Lima +Liman +Limantour +Limar +Limb Tree +Limberi +Limbourne +Limbrick +Limburg +Limbury +Lime +Lime Green +Lime Hill +Lime Kiln +Lime Meadow +Lime Pit +Lime Tree +Lime Trees +Lime Works +Limebank +Limeburner +Limecroft +Limeditch +Limefield +Limehouse +Limehurst +Limekilln +Limekiln +Limekiln Canyon +Limelight +Limerick +Limeridge +Limerston +Limes +Limes Field +Limesfield +Limestead +Limestone +Limestone School +Limetree +Limetrees +Limewood +Liming +Limits +Limmer +Limmerhill +Limmings +Limoges +Limoli +Limon +Limonite +Limpsfield +Lin Gate +Lin Lor +Lina +Linacre +Linares +Linaria +Linbarger +Linberg +Linbrook +Linby +Lince +Linch +Linchfield +Linclon +Lincoln +Lincoln Centre +Lincoln Crest +Lincoln Green +Lincoln Hill Camp Oak +Lincoln Hills +Lincoln House +Lincoln Knoll +Lincoln Log +Lincoln Mall +Lincoln Meadows +Lincoln Mill +Lincoln Oaks +Lincoln Park +Lincoln Village +Lincoln Woods +Lincolnia +Lincolns +Lincolnshire +Lincolntown +Lincolnway +Lincolnwood +Lincombe +Lincon +Lincrest +Lincroft +Lind +Linda +Linda Bee +Linda Flora +Linda Jean +Linda Lee +Linda Mar +Linda Marie +Linda Mesa +Linda Moor +Linda Rio +Linda Sue +Linda Vista +Lindabury +Lindaire +Lindal +Lindale +Lindall +Lindamoor +Lindaro +Lindau +Lindauer +Lindawood +Lindberg +Lindbergh +Lindbury +Linde +Lindegar +Lindeke +Lindel +Lindell +Lindelof +Lindemann +Linden +Linden Chapel +Linden Farms +Linden Grove +Linden Hall +Linden Hill +Linden Hills +Linden Hurst +Linden Leaf +Linden Linthicum +Linden Oaks +Linden Park +Linden Ridge +Linden Thomas +Linden Tree +Linden Wood +Lindenberry +Lindenbrook +Lindendale +Lindenhill +Lindenhouse +Lindenleaf +Lindenoaks +Lindentree +Lindenwood +Linder +Linder Hill +Linderman +Lindero +Lindesay +Lindeth +Lindfield +Lindford +Lindgren +Lindhurst +Lindi +Lindig +Lindinis +Lindisfarm +Lindisfarne +Lindley +Lindleywood +Lindmuir +Lindo +Lindon +Lindop +Lindor +Lindore +Lindores +Lindow +Lindow Fold +Lindquist +Lindrick +Lindridge +Lindron +Lindrop +Lindrum +Lindsay +Lindsay Blake +Lindsay Creek +Lindsay McDermott +Lindsay Pond +Lindsell +Lindsey +Lindsey Farm +Lindsey Manor +Lindsgate +Lindsley +Lindstrom +Lindum +Lindview +Lindy +Lindys +Line +Line Ridge +Lineas +Linebaugh +Linebrook +Linefield +Linehurst +Linersh +Linersh Wood +Lines +Linet +Linette +Liney +Linfield +Linford +Ling +Lingan +Linganore +Lingard +Lingards +Lingdale +Lingfield +Lingfield Common +Lingholme +Lingley +Linglongs +Lingmoor +Lingwell +Lingwell Gate +Lingwell Nook +Lingwood +Linhares +Linhope +Linington +Link +Link Hill +Linkfield +Linkmead +Links +Links View +Linkscroft +Linkside +Linksley +Linksview +Linksway +Linkswood +Linkway +Linkwood +Linkythorn +Linlar +Linlee +Linley +Linmore +Linmouth +Linn +Linnaean +Linnards +Linne +Linnea +Linnean +Linnell +Linneman +Linner +Linnet +Linnet Hill +Linney +Linnitt +Linnway +Linom +Linquist +Linroping +Linscheid +Linscott +Linsdale +Linsdell +Linsey +Linsford +Linslade +Linsley +Linstead +Linstedt +Linthicum +Linthorne +Linthorpe +Linton +Linton Hall +Linton Way +Lintonia +Lintric +Linum +Linus +Linus Pauling +Linver +Linville +Linway +Linway Park +Linwood +Linwood Forest +Linzee +Lio +Lion +Lion Fold +Lion Wharf +Lioncrest +Lionel +Lions +Lions Chase +Lions Club +Lions Creek +Lions Field +Lions Gate +Lions Head Ranch +Lions Park +Lions Watch +Lionsfield +Lionshead +Liotard +Liparita +Lipes +Liphook +Lipman +Lipnick +Lippard +Lippen +Lippert +Lippi +Lippit +Lippitt +Lippizan +Lippizaner +Lippold +Lipsett +Lipton +Liptraps +Liquid Amber +Liquid Laughter +Liquidamber +Lira +Lirious +Liryc +Lisa +Lisa Ann +Lisa Gaye +Lisa Lee +Lisamary +Lisawood +Lisbeth +Lisbon +Lisbon Center +Lisborough +Lisburn +Lisburne +Liscanor +Liscard +Liscomb +Liscombe +Liscum +Lisdowney +Lise +Lisetta +Lisford +Lisgar +Lisheen +Lisk +Liska +Liskeard +Lisker +Lisle +Lismore +Lispenard +Liss +Lissadel +Lissanthe +Lisso +Lissoms +Lisson +Lissow +List +Lister +Listetr +Listing +Listmas +Liston +Listowe +Listowel +Listra +Liszka +Liszt +Lita +Litchenberg +Litchfield +Litchfield Pine +Litchult +Litherland +Lithgow +Litho +Lithonia +Lithos +Lithuanica +Litina +Litke +Litle Circle +Litnonia +Litohenberg Fire +Littel +Littell +Little +Little ALmshoe +Little Acres +Little Ada +Little Albany +Little Albion +Little Alfred +Little Argyll +Little Arthur +Little Aston +Little Baddow +Little Bank +Little Bardfield +Little Basin +Little Bay +Little Bear Creek +Little Bear Hill +Little Beattie +Little Bend +Little Berkhamsted +Little Berry +Little Big Horn +Little Bloomfield +Little Bluestem +Little Boy +Little Braxted +Little Brighton +Little Broadway +Little Brook +Little Browns +Little Buckingham +Little Bury +Little Bushey +Little Cahill +Little Canada +Little Chapel +Little Chester +Little Church +Little Circle +Little City +Little Cleveland +Little Clove +Little College +Little Collins +Little Common +Little Compton +Little Cormiston +Little Cove +Little Cranmore +Little Creek +Little Crow +Little Current +Little Darling +Little David +Little Difficult +Little Dorrit +Little Downling +Little Ealing +Little East Neck +Little Edward +Little Ees +Little Egerton +Little Essex +Little Eveleigh +Little Falls +Little Farm +Little Farms +Little Fawn Canyon +Little Ferry +Little Foot +Little Fountain +Little Fox +Little Friday +Little Gaynes +Little Gerpins +Little Grange +Little Grass +Little Green +Little Gregories +Little Grove +Little Gypps +Little Hammer +Little Harbor +Little Haven +Little Hay +Little Heath +Little Heath Barley +Little Hill +Little Hollow +Little Honker Bay +Little Horkesley +Little Horwood +Little Hunter +Little Hyde +Little John +Little Johns +Little Joyce +Little King +Little Kings +Little Laver +Little Lever +Little Llagas +Little Llewellyn +Little London +Little Market +Little Marlborough +Little Marlow +Little Marryat +Little Marsh +Little Martin +Little Meadow +Little Melody +Little Merrill +Little Montague +Little Montgomery +Little Moose +Little Mort +Little Moss +Little Mount +Little Mountain +Little Nahant +Little Nassau +Little Neck +Little Neville +Little New +Little Nicholson +Little Norsey +Little Norton +Little Oak +Little Oaks +Little Orchard +Little Ox +Little Oxford +Little Oxhey +Little Path +Little Patuxent +Little Peninsula +Little Peter +Little Pier +Little Pitt +Little Plains +Little Point +Little Pond +Little Portland +Little Potters +Little Quarry +Little Queen +Little Queens +Little Reeves +Little Regent +Little Revel End +Little Ridge +Little Riley +Little River +Little River Run +Little Rock +Little Roke +Little Russell +Little Saint Marys +Little Seneca +Little Smith +Little Somerset +Little Sorrel +Little Spring +Little Tey +Little Theodore +Little Titchfield +Little Totham +Little Tree +Little Tring +Little Trinity +Little Turnpike +Little Turriell Bay +Little Twye +Little Uvas +Little Valley +Little Wakering +Little Wakering Hall +Little Walker +Little Waltham +Little Warley Hall +Little Wellington +Little West +Little Whaleneck +Little Widbury +Little Willandra +Little Wonga +Little Wood +Little Woodhouse +Little Wyndham +Little Young +Littlebourne +Littlebrook +Littlebrooke +Littlebuck +Littlebury +Littlecote +Littlecroft +Littledale +Littledales +Littledown +Littlefield +Littlefields +Littleford +Littleham +Littlehaven +Littleheath +Littlehurst +Littlejohn +Littlemoor +Littlemore +Littlemoss +Littleoak +Littles +Littles Point +Littlethorpe +Littleton +Littleton County +Littletree +Littleway +Littlewick +Littlewood +Littleworth +Littleworth Common +Littley Green +Littlfield +Littman +Litton +Littondale +Litwin +Litzen +Liv +Live Oak +Lively +Livermere +Livermore +Liverno +Liverpool +Liversedge Hall +Liversidge +Liverstudd +Liverton +Livery +Livesey +Livesy +Livia +Livingston +Livingston Terrace +Livingstone +Livinston +Livoli +Livonia +Livorna +Livorna Heights +Livoti +Livsey +Liz +Liz Kernohan +Liza +Lizann +Lizard +Lizban +Lizette +Lizotte +Lizwelch +Lizzie +Ljepava +Lladro +Llagas +Llagas Creek +Llagas Vista +Llama +Llama Ranch +Llanaway +Llanberis +Llandaff +Llandilo +Llanelly +Llanfair +Llangollan +Llano +Llanover +Llanovista +Llanthony +Llanvair +Llewellyn +Llewellyn Field +Llewellyn Manor +Llewelyn +Lleweyn +Lloyd +Lloyd Baker +Lloyd C Gary +Lloyd George +Lloyd Harbor +Lloyd Haven +Lloyd Park +Lloyd Point +Lloyd Rees +Lloyd Wright +Lloyden +Lloyden Park +Lloydhaven +Lloydminster +Lloyds +Llyod +Loa +Loader +Loading Place +Loading Rock +Loakes +Loampit Vale Jerrard +Loamy Hill +Loanda +Loantaka +Loates +Loats +Lob +Lobao +Lobata +Lobaugh +Lobelia +Lobert +Lobitos Creek +Lobley +Loblolly +Loblolly Pine +Lobo +Lobos +Local +Local Board +Locarno +Locbury +Loccmind +Loch +Loch Glen +Loch Haven +Loch Leven +Loch Lomand +Loch Lomond +Loch Maree +Loch Moor +Loch Raven +Loch Sloy Service +Lochaber +Lochaline +Lochalsh +Lochan Ora +Lochanburn +Lochanora +Lochard +Lochat +Lochaven +Lochbrae +Lochbrook +Lochdale +Lochdon +Lochee +Lochiel +Lochinvar +Lochinver +Lochland +Lochlash +Lochloy +Lochmere +Lochmoore +Lochnell +Lochner +Lochness +Lochridge +Lochrobin +Lochslea +Lochstead +Lochton +Lochville +Lochwan +Lochwood +Lochy +Lock +Lock Bridge +Lockborne +Lockdale +Locke +Locke King +Locke Lake +Lockeford Ranch +Lockeland +Locker +Lockerbie +Lockerby +Lockers Park +Lockesley +Locket +Lockett +Lockewood +Lockewoods +Lockey +Lockfield +Lockham Farm +Lockhart +Lockhart Gulch +Lockhaven +Lockheed +Lockhern +Lockhurst +Lockhurst Hatch +Lockingate +Lockinger +Lockington +Lockland +Locklands +Lockleven +Lockleys +Lockman +Lockner +Lockney +Lockport +Lockram +Lockridge +Locks +Locksbridge +Locksley +Locksley Park +Locksly +Locksmeade +Lockton +Lockundy +Lockward +Lockway +Lockwood +Lockyer +Locomotive +Locris +Locus +Locust +Locust Cove +Locust Creek +Locust Glen +Locust Grove +Locust Hill +Locust Point +Locust Ridge +Locust Spring +Locust Tree +Locust Wood +Locustdale +Locustwood +Lodato +Loddiges +Loddington +Loddon +Loddon Bridge +Loddon Hall +Lode +Loder +Lodestone +Lodge +Lodge Bottom +Lodge Farm +Lodge Forest +Lodge Hill +Lodge Point +Lodge Wood +Lodgehill +Lodgepole +Lodges +Lodi +Lodore +Lodovick +Loduca +Loe Ann +Loeb +Loeffler +Loehr +Loeser +Loewen +Lofberg +Lofstrand +Loft +Lofthouse Jumbles +Loftie +Lofting +Lofton +Lofts +Loftus +Lofty +Log +Log Bridge +Log Cabin +Log Cabin Ranch +Log Chain +Log Hill +Log House +Log Inn +Log Lodge +Log Teal +Logan +Logan Creek +Logan Hill +Logan Manor +Logan Wood +Loganberry +Logansport +Loganview +Loganwood +Logarto +Logee +Loggers +Logging +Loggins +Loggon +Logic +Logie +Logmill +Logmore +Logquarter +Logsdon +Logue +Logway +Logwood +Loh +Lohman +Lohnes +Lohr +Lohrman +Lohsen +Loi Linda +Loines +Lois +Loisdale +Loise +Loiselle +Loker +Loki +Lokoya +Lokus +Lola +Lolan +Loland +Loleta +Loletta +Lolita +Loll +Lolleywood +Lollipop +Lolly +Lolly Post +Lolo Pass +Loma +Loma Almaden +Loma Alta +Loma Alta Fire +Loma Chiquita +Loma Heights +Loma Linda +Loma Mar +Loma Prieta +Loma Rio +Loma Robles +Loma Verde +Loma Vista +Loman +Lomand +Lomani +Lomar +Lomas +Lomax +Lombard +Lombardi +Lombardo +Lombardy +Lometa +Lomglands +Lomita +Lomitas +Lommel +Lomond +Lomond South +Lompico +Lon +Lonanbe +Lonard +Lonardo +Loncin Mead +Loncroft +Lonczak +Londesborough +Londin +London +London And Decatur +London Bay +London Bridge +London Council +London Fenchurch +London Hill +London Leaf +London Ranch +Londonary +Londonberry +Londonderry +Lone +Lone Barn +Lone Cedar +Lone Eagle +Lone Hill +Lone Leaf +Lone Oak +Lone Pine +Lone Tree +Lone Tree Plaza +Lonergan +Lonesome +Lonesome Pine +Loney +Long +Long Acre +Long Acres +Long Barn +Long Beach +Long Beech +Long Boat Key +Long Border +Long Bottom +Long Bow +Long Branch +Long Bridge +Long Canyon +Long Catlis +Long Channel +Long Close +Long Cope +Long Cove +Long Croft +Long Deacon +Long Down +Long Ferry +Long Furlong +Long Gate +Long Green +Long Grove +Long Hill +Long Island +Long Island Motor +Long Island Rail +Long Lake +Long Leaf +Long Lodge +Long Marl +Long Marsh +Long Marston +Long Meadow +Long Mill +Long Neck Point +Long Oak +Long Orchard +Long Pine +Long Point +Long Pond +Long Ranch +Long Readings +Long Rede +Long Ridge +Long Ridings +Long River +Long Row Hopwood +Long Run +Long Shadow +Long Shadows +Long Sought For Pond +Long Spur +Long Thorpe +Long Valley +Long View +Long Wood +Longacre +Longacres +Longaker +Longard +Longbarn +Longbeach +Longboat +Longbow +Longbranch +Longbridge +Longbutt +Longcommon +Longcor +Longcroft +Longcrofte +Longcross +Longdale +Longden +Longdene +Longdike +Longdin +Longdon +Longdown +Longdraft +Longdyke +Longe +Longedge +Longell +Longend +Longest +Longfellow +Longfield +Longfields +Longford +Longham +Longhams +Longhayes +Longhedge +Longhill +Longhope +Longhorn +Longhorn Ridge +Longhouse +Longhurst +Longlands +Longlane +Longleaf +Longleat +Longledge +Longleigh +Longlevens +Longley +Longleys +Longlook +Longmark +Longmead +Longmeade +Longmeade Crossing +Longmeadow +Longmere +Longmoor +Longmoore +Longmore +Longmorn +Longnor +Longo +Longobardi +Longpoint +Longpoles +Longport +Longreach +Longreen +Longridge +Longroyd +Longs +Longshadow +Longshaw +Longshaw Ford +Longshore +Longshot +Longshut +Longsight +Longson +Longspur +Longstaff +Longstomps +Longstone +Longstreak +Longstreet +Longton +Longtown +Longtree +Longueville +Longvale +Longvalley +Longview +Longville +Longvue +Longwalk +Longwater +Longwell +Longwick +Longwood +Longwood Grove +Longworth +Loni +Lonicera +Loniewski +Lonmount +Lonna +Lonni +Lonnie +Lonnquist +Lonsdale +Lonus +Loo +Loobath +Loobert +Loobey +Look +Looker +Lookes +Looking Glass +Looking Post +Lookoff +Lookout +Lookout Farm +Lookout Hill +Loom +Loombah +Loomes +Loomis +Loon +Loon Hill +Looney +Loop +Loorana +Loose +Loose Down +Lopa +Lopes +Lopez +Loppets +Lopton +Loquat +Loquat Valley +Lora +Lorabelle +Lorac Vista +Loradale +Lorain +Loraine +Loral +Loralee +Loran +Loran Nordaren +Lorando +Lorane +Lorang +Loras +Loray +Lorayne +Lorca +Lord +Lord Baltimore +Lord Cecil +Lord Culpeper +Lord Derby +Lord Eldon +Lord Fairfax +Lord Hills +Lord Howe +Lord Kitchner +Lord Mayors +Lord Mead +Lord Nelson +Lord North +Lord Warwick +Lorden +Lordina +Lordine +Lordings +Lords +Lords Landing +Lordsfield +Lordship +Lordsmead +Lordswell +Lordswood +Loree +Loreen +Lorel +Lorele +Lorelei +Loreley +Loren +Lorena +Lorene +Lorensen +Lorentz +Lorenz +Lorenze +Lorenzen +Lorenzetti +Lorenzo +Lorete +Loreto +Loretta +Lorette +Loretto +Lorey +Lorfax +Lori +Lori Anne +Lorian +Loriann +Lorie +Lorient +Lorigan +Lorijean +Lorikeet +Lorillard +Lorimer +Lorin +Lorina +Lorinda +Loring +Loring Hills +Loring Towers +Lorion +Loris +Lorita +Lorking +Lorland +Lorn +Lorna +Lorna Leigh +Lornadel +Lorne +Lornkel +Lorraine +Lorraine Metcalf +Lorre +Lorree +Lorren +Lorreta +Lorretta +Lorrie +Lorrimore +Lorring +Lorry +Lortel +Lorton +Lorton Market +Lorton Valley +Lorum +Lorusso +Lory +Loryn +Los Alamos +Los Altos +Los Amigos +Los Angeles +Los Arabis +Los Arboles +Los Banos +Los Banos Cdf +Los Carneros +Los Cedros +Los Cerritos +Los Cerros +Los Charros +Los Coches +Los Dedos +Los Encinos +Los Esteros +Los Felicas +Los Felice +Los Flores +Los Gamos +Los Gatos +Los Gatos Almaden +Los Guilicos +Los Gullicos +Los Huecos +Los Lagos +Los Medanos +Los Molinas +Los Montes +Los Ojos +Los Olivos +Los Padres +Los Palmos +Los Palos +Los Pinos +Los Positos +Los Prados +Los Pueblos +Los Ranchitos +Los Ranchos +Los Reyes +Los Rios +Los Robles +Los Suenos +Los Torres +Los Trancos +Los Trancos Woods +Los Viboras +Loscoe +Loseberry +Losfield +Loslomas +Losoya +Lossie +Lost +Lost Acre +Lost Boy +Lost Colony +Lost Corner +Lost Creek +Lost Deer +Lost Horse +Lost Lake +Lost Meadow +Lost Meadows +Lost Oak +Lost Ranch +Lost Rock +Lost Tree +Lost Valley +Lost View +Lostock +Lostock Hall +Lostock Park +Lostwood +Lot +Lot Phillips +Loten +Loth +Loth Lorian +Lothair +Lothenbach +Lotherton +Lothian +Lothrop +Lotman +Lots +Lott +Lotte +Lotten +Lottery +Lottie +Lottie Bennett +Lottie Fowler +Lotts +Lottsford +Lottsford Vista +Lotus +Lotus View +Lotz +Lotz Hill +Lou +Lou Ann +Lou Courtney +Louanis +Louart +Loubet +Louches +Loucks +Loucreta +Loud +Louden +Louders +Loudhams Wood +Loudon +Loudoun +Loudoun County +Loudoun Park +Loudoun Reserve +Loudoun Tech +Louds +Loudwater +Louetta +Lough +Loughboro +Loughborough +Loughead +Lougheed +Loughlin +Loughran +Loughrigg +Loughton +Loughton High +Louie +Louis +Louis Ballard +Louis Bork +Louis Holstrom +Louis Krohn +Louis Mattei +Louis Mill +Louis Nine +Louis Prang +Louis W Farley +Louisa +Louisana +Louisburg +Louise +Louise F Luther +Louisiana +Louisville +Loumac +Loumena +Lounga +Lounsbery +Loupe +Lourae +Lourdes +Loureiro +Loushers +Lousons +Louth +Louvain +Louvaine +Louville +Louvre +Lovall Valley +Lovall Valley Loop +Lovas +Lovat +Lovatt +Lovcraft +Love +Love Creek +Love Green +Love Grove +Love Harris +Love Joy +Loveall Valley +Lovedale +Loveday +Lovegrove +Lovejoy +Lovel +Lovelace +Loveland +Lovelands +Loveless +Lovell +Lovell Park +Lovely +Loventree +Loveridge +Lovering +Loverock +Lovers +Lovers Leap +Lovers Point +Loversend +Loves +Lovet +Lovett +Lovewell +Loveys +Lovibonds +Lovile +Loville +Loving +Lovis +Lovisa +Lovoni +Low +Low Close +Low Crompton +Low Cross Wood +Low Fields +Low Grove +Low Hall +Low Hill +Low Lea +Low Leighton +Low Meadow +Low Mills +Low Moor Side Wolley +Low Moorside +Low Shops +Low Wood +Lowana +Lowander +Lowandra +Lowanna +Lowbell +Lowbrook +Lowcross +Lowdells +Lowden +Lowder +Lowder Brook +Lowe +Lowe Mill +Lowell +Lowell Davis +Lowell Mason +Lower +Lower Adeyfield +Lower Afton +Lower Albion +Lower Alden +Lower Alderton Hall +Lower Almora +Lower Anchor +Lower Anchorage +Lower Armour +Lower Avon +Lower Aztec +Lower Bank +Lower Barn +Lower Basinghall +Lower Beach +Lower Bedfords +Lower Belgrave +Lower Bell +Lower Bennett +Lower Bents +Lower Bligh +Lower Bloors +Lower Bolton +Lower Boxley +Lower Boyle +Lower Boyndon +Lower Brand Lake +Lower Breeche +Lower Bridge +Lower Britwell +Lower Broad +Lower Broadmoor +Lower Brook +Lower Broughton +Lower Brunswick +Lower Burnham +Lower Bury +Lower Byrom +Lower Campbell +Lower Carr +Lower Carriage +Lower Charles +Lower Chatham +Lower Chestnut +Lower Chiles Valley +Lower Church +Lower Circle +Lower Cliff +Lower Colonial +Lower Cookham +Lower Coombe +Lower Country +Lower Court +Lower Cox +Lower Crescent +Lower Cross +Lower Cutter +Lower D +Lower Dagnall +Lower Darcy +Lower Darwin +Lower Dearborn Park +Lower Denmark +Lower Derby +Lower Dunton +Lower Edge +Lower Edgeborough +Lower Ellen +Lower Elmstone +Lower Exchange +Lower Express +Lower Fant +Lower Farm +Lower Farnham +Lower Featherby +Lower Field +Lower Fort +Lower Frenches +Lower Gore +Lower Grand +Lower Gravel +Lower Green +Lower Greenshall +Lower Grove +Lower Guildford +Lower Hall +Lower Ham +Lower Hampton +Lower Harpenden +Lower Hartlip +Lower Hatfield +Lower Haysden +Lower Henley +Lower Hey +Lower Hiberia +Lower Hibernia +Lower Hidden Falls +Lower High +Lower Higham +Lower Hill +Lower House +Lower Hutchinson +Lower Illinois +Lower James +Lower John +Lower Jones +Lower Kenwood +Lower Kings +Lower Knoll +Lower Lake +Lower Lees +Lower Leigh +Lower Lime +Lower Lock +Lower Locksley +Lower Lodge +Lower Luton +Lower Magazine +Lower Magothy Beach +Lower Maidstone +Lower Main +Lower Manor +Lower Mardyke +Lower Margaret +Lower Market +Lower Marlboro +Lower Marsh Baylis +Lower Matchaponix +Lower Memory +Lower Michigan +Lower Mickletown Boat +Lower Monton +Lower Morden +Lower Mortlake +Lower Mosley +Lower Mount +Lower Moushill +Lower Norton +Lower Notch +Lower Ormond +Lower Overlook +Lower Oxford +Lower Paddock +Lower Paice +Lower Park +Lower Paxton +Lower Pindell +Lower Pine +Lower Placerville +Lower Plateau +Lower Pound +Lower Queens +Lower Rainham +Lower Randolph +Lower Range +Lower Rawson +Lower Redwood +Lower Richmond +Lower Ridge +Lower Robert +Lower Rochester +Lower Roke +Lower Rollstone +Lower Rushton +Lower Sacramento +Lower Sandhurst +Lower Seedly +Lower Shear Creek +Lower Sheering +Lower Sheriff +Lower Sloane +Lower Southend +Lower Sutherland +Lower Tofts +Lower Town +Lower Trabing +Lower Trail +Lower Turf +Lower Turk +Lower Tweedale +Lower Twydall +Lower Vicarage +Lower Vickers +Lower Village +Lower Wabash +Lower Wacker +Lower Warren +Lower Weybourne +Lower Wharf +Lower Wokingham +Lower Wood +Lower Woodlands +Lower Wortley +Lower Wycombe +Lowercroft +Lowerfield +Lowerfold +Lowerhouse +Lowerre +Lowerwood +Lowery +Lowery Oaks +Lowes +Lowes Island +Lowestoft +Loweswater +Lowfield +Lowfield Heath +Lowfields +Lowgate +Lowick +Lowicks +Lowland +Lowlands +Lowman +Lowmoor +Lowndes +Lownorth +Lowood +Lowrey +Lowrie +Lowry +Lowshoe +Lowside +Lowth +Lowther +Lowthorpe +Lowton +Lox +Loxford +Loxford Hall Loxford +Loxham +Loxley +Loxton +Loxwood +Loy +Loyalton +Loyalty +Loyed +Loyola +Lozano +Lozier +Lt Glenn Zamorki +Lt Nichols +Lt. L. Duffy +Lu Anne +Lu Ray +Luana +Luanne +Luau +Lubar +Lubberhedges +Lubbock +Lubec +Lubeck +Lubin +Lubrono +Luby +Lucan +Lucas +Lucas Green +Lucas Park +Lucas Valley +Lucastes +Lucasville +Lucca +Luccarelli +Lucchesi +Luce +Luce Creek +Lucena +Lucent +Lucente +Lucerne +Lucero +Lucey +Luchessa +Luchessi +Luci +Lucia +Lucian +Lucianna +Lucie +Lucien +Lucienne +Lucile +Lucilla +Lucille +Lucina +Lucinda +Lucio +Lucius +Luck +Luckenbach +Luckenbill +Luckett +Lucketts +Lucking +Luckley +Luckmore +Lucknow +Lucks +Lucky +Lucky Hollow +Lucky Lake +Lucky Lure +Luckyn +Lucon +Lucot +Lucretia +Luctons +Luculia +Lucus +Lucy +Lucy Brown +Lucy Ray +Lucylle +Luda +Ludbury +Luddenham +Luddesdon +Luddesdown +Luddington +Ludell +Ludeman +Ludgate +Ludgershall +Ludgores +Ludham +Ludham Hall +Ludington +Ludlam +Ludlow +Ludlum +Ludpit +Ludwig +Ludy +Lue Ellen +Luedke +Luedtke +Luella +Luellan +Lufberry +Lufbery +Luff +Luffburrow +Luffenhall +Luffield +Luffman +Lufkin +Luft +Luftschloss +Lugano +Lugar +Lugar Brae +Lugard +Lugarno +Luger +Lughorse +Lugo +Luhmann +Luhn +Luis Munoz Marin +Luisa Kayasso +Luise +Luisi +Luisser +Luiz Fire +Lujan +Lujean +Lukas +Luke +Luken +Lukens +Luker +Lukes +Lukewood +Lukin +Lukins +Lula Belle +Luland +Lulea +Lull +Lullaby +Lullingstone +Lullington +Lulworth +Lum +Lumac +Lumar +Lumas Verdes +Lumb +Lumb Brook +Lumb Carr +Lumbar +Lumber +Lumber Company +Lumber Hill +Lumbertown +Lumby +Lumeah +Lumley +Lummas +Lummus +Lumn +Lumns +Lumry +Lumsdaine +Lumsdale +Lumsden +Luna +Luna Park +Lunada +Lunan +Lunar +Lunceford +Luncies +Lund +Lund Hill +Lund Ranch +Lunda +Lundan +Lundberg +Lundburg +Lundeen +Lundergan +Lundholm +Lundquist +Lunds Farm +Lundstead +Lundsten +Lundvall +Lundy +Lundys +Lune +Lunedale +Lunelle +Lunenburg +Luneta +Lunghurst +Lunham +Luning +Lunn +Lunny +Lunsford +Lunski +Lunt +Lupidia +Lupin +Lupine +Lupine Den +Lupine Hill +Lupine Valley +Lupp +Lupton +Lupus +Luquer +Lura +Lurene +Lureta Ann +Lurgan +Luria +Lurilane +Lurliene +Lurline +Lurnea +Lurting +Lurton +Lury +Lusan +Lusard +Lusbys +Luscombe +Lushes +Lushington +Lusitana +Lusitano +Lusk +Lussier +Lusted +Luster +Lusterleaf +Lustre +Lusty +Lute +Luten +Lutener +Lutes +Luther +Lutheran +Luthin +Lutman +Luton +Luton Airport +Luton High +Lutrell +Lutter +Luttrell +Lutz +Luvena +Luverne +Luvian +Luvie +Lux +Luxberry +Luxborough +Luxemburg +Luxfield +Luxford +Luxmanor +Luxmore +Luxon +Luxor +Luxury +Luyster +Luyung +Luz +Luzena +Luzern +Luzerne +Luzitania +Luzley +Luzon +Lyall +Lybrook +Lybury +Lycett +Lych Gate +Lychfield +Lycoming +Lycrome +Lyda +Lydbrook +Lydd +Lydden +Lydeard +Lydecker +Lydell +Lydens +Lydford +Lydgate +Lydham +Lydhurst +Lydia +Lydia Bradley +Lydia Ford +Lydianna +Lydiard +Lydiat +Lydig +Lyding +Lydney +Lydon +Lydstep +Lydyett +Lye +Lye Copse +Lye Green +Lyell +Lyeway +Lyford +Lygean +Lygetun +Lygoe +Lyla +Lyle +Lyles +Lylewood +Lyly +Lyman +Lyman School +Lyman Wheelock +Lymann +Lymbridge +Lymcote +Lymden +Lyme +Lyme Bay +Lyme Farm +Lyme Regis +Lymefield +Lymer +Lymerston +Lymewood +Lyminge +Lymington +Lymington Bottom +Lymm +Lymmhay +Lymmington +Lymoore +Lyn Oak +Lynack +Lynbara +Lynbrae +Lynbrook +Lynch +Lynch Hill +Lynchford +Lyncliff +Lyncrest +Lyncroft +Lynd +Lynda +Lyndale +Lyndall +Lyndals +Lynde +Lyndeboro +Lyndell +Lynden +Lyndene +Lyndenwood +Lynderswood +Lyndhurst +Lyndhurst Museum +Lyndia +Lyndley +Lyndon +Lyndsay +Lyndwood +Lyne +Lyne Crossing +Lynegrove +Lyneham +Lynesta +Lynestra +Lynette +Lynfield +Lynfords +Lyng +Lynham +Lynhurst +Lynmar +Lynmere +Lynmont +Lynmouth +Lynn +Lynn Crest +Lynn End +Lynn Fells +Lynn Forest +Lynn Manor +Lynn Oaks +Lynn Ric +Lynn Ridge +Lynn Shore +Lynn W Riffle +Lynn Wood +Lynnalan +Lynnbrook +Lynnbrooke +Lynncrest +Lynncroft +Lynndale +Lynne +Lynnett +Lynnfield +Lynngate +Lynnhaven +Lynnhurst +Lynnmoor +Lynns Retreat +Lynnview +Lynnwood +Lynors +Lynridge +Lynsander +Lynslade +Lynsted +Lynstock +Lynthorpe +Lynton +Lynton Park +Lynvale +Lynview +Lynvue +Lynway +Lynwick +Lynwood +Lynwood Hill +Lynwood Manor +Lynx +Lyon +Lyon Farm +Lyon Park +Lyon Ranch +Lyonia +Lyonpark +Lyonridge +Lyons +Lyons Creek +Lyons Hall +Lyonsdown +Lyonsville +Lyoth +Lyra +Lyrac +Lyric +Lysander +Lysbeth +Lysia +Lysias +Lysle +Lysons +Lyster +Lytchet +Lytcott +Lytelle +Lyth +Lytham +Lythe +Lytherton +Lythgoes +Lythrum +Lytle +Lyton +Lyttel +Lyttelton +Lyttleton +Lytton +Lytton Springs +Lyttonsville +Lyveden +Lywood +M F Bowen +M Gresham +M I Bowen +M. Hershman +MArkland +MCintosh +MINI Park +MITRE Corp Inner +MIddleton +MLK +MMU Didsbury Access +Maacama +Maacka +Maar +Maas +Mabaline +Mabank +Mabbs +Mabel +Mabel Ann +Mabel Josephine +Mabelle +Maberley +Mabey +Mabfield +Mabie +Mabini +Mable +Mabledon +Mablethorpe +Mabley +Mablin +Mabrey +Mabry +Mac +Mac Afee +Mac Arthur +Mac Donald +Mac Dougal +Mac Duff +Mac Farlane +Mac Gregor +Mac Intosh +Mac Kenzie +Mac Kenzie Creek +Mac Lean +Mac Leay +Mac Murtry +Mac Queen +Mac Sherry +MacArthur +MacAuley +MacCall +MacCartney +MacCulloch +MacDonald +MacDonough +MacDougal +MacGregor +MacIntosh +MacKay +MacKellar +MacKenzie +MacKillop +MacLachlan +MacLaurin +MacLeay +MacMillan +MacNamara +MacPherson +MacRae +Macadam +Macadamia +Macalaster +Macalester +Macalla +Macalpin +Macalpine +Macalvey +Macao +Macara +Macarthur +Macarthur Access +Macartney +Macatera +Macaulay +Macauley +Macaw +Macbain +Macbean +Macbeth +Macbride +Maccaboy +Macclesfield +Macclesfield Main +Macclesfield Old +Maccomb +Macculoch +Macdonald +Macdonnell +Macdougald +Macdowell +Macduff +Mace +Macedon +Macedonia +Macefin +Macers +Macey +Macfadden +Macfall +Macfarlan +Macfarland +Macfarlane +Macgill +Macgreggor +Macgregor +Mach +Machado +Machado Ranch +Machell +Machelle +Machen +Macher +Machias +Machin +Machpela +Machpelah +Maciel +Macintire +Macintosh +Macintyre +Maciorowski +Maciver +Mack +Mack Center +Mackall +Mackay +Mackell +Mackellar +Mackennal +Mackenthun +Mackenzie +Mackes Muff +Mackeson +Mackey +Mackeys +Mackie +Mackin +Mackin Woods +Mackinac +Mackinaw +Mackinnon +Mackintosh +Mackinwood +Mackley +Macklin +Macklyn +Mackson +Macksville +Mackubin +Mackville +Mackworth +Maclain +Maclaren +Maclaurin +Maclay +Maclean +Macleay +Maclefish +Maclennan +Macleod +Macler +Maclise +Maclure +Maclynn +Macmahon +Macmillan +Macmurdo +Macneil +Macnichol +Macnish +Maco +Macoma +Macomb +Macomber +Macombs +Macon +Macondray +Macone Farm +Macopin +Macoun +Macpherson +Macpumphrey +Macquarie +Macquarie Grove +Macquariedale +Macquarrie +Macrae +Macready +Macredes +Macri +Macroom +Macsherry +Mactier +Mactorowski +Macullar +Macwood +Macy +Macy Plaza +Mad River +Mada +Madagascar +Madalen +Madaline +Madan +Madary +Madawaska +Maddams +Maddaus +Maddecks +Madden +Maddison +Maddock +Maddocks +Maddox +Maddux +Maddy +Madeira +Madeiros +Madel +Madelaine +Madeleine +Madelena +Madeley +Madelia +Madeline +Madelyn +Maden +Mader +Madera +Madera del Presidio +Madere +Maderia Port +Madero +Madetra +Madge +Madgehole +Madgeways +Madginford +Madi +Madia +Madie +Madiera +Madigan +Madinah +Madingley +Madison +Madison Circle +Madison Farm +Madison Forest +Madison Green +Madison Greens +Madison Hill +Madison House +Madison McLean +Madles +Madoc +Madoline +Madonna +Madras +Madre +Madrers +Madrid +Madrigal +Madrillon +Madrillon Estates +Madrillon Springs +Madron +Madrona +Madronawood +Madrone +Madrone Fire +Madronean +Madrono +Madruga +Madsen +Madson +Maduro +Mae +Mae Belle +Mae Jim +Maeder +Maesbrook +Maesmaur +Maestro +Maeve +Mafeking +Maffei +Maffey +Maffia +Mag +Magaletta +Magarity +Magazine +Magda +Magdala +Magdalen +Magdalena +Magdalene +Magdalin +Magdelene +Magdelina +Magdella +Magee +Magee Ranch +Mageira +Magellan +Magenta +Mager +Magers +Magerus +Magestic +Magga Dan +Maggi +Maggie +Maggio +Maggiolo +Maggiora +Maggiore +Maggy +Magic +Magic Leaf +Magic Mountain +Magie +Magill +Maginnis +Magladry +Maglie +Magliocco +Magna +Magna Carta +Magna Vista +Magnaville +Magner +Magnet +Magnetic +Magnetite +Magney +Magnola +Magnolia +Magnolia Blossom +Magnolia Grove +Magnolia Hill +Magnolia Ridge +Magnollia +Magnum +Magnus +Mago Vista +Magoffin +Magonko +Magos +Magothy +Magothy Beach +Magothy Bridge +Magothy Manor +Magothy Park +Magothy River Shore +Magothy View +Magoun +Magowan +Magowar +Magown +Magpie +Magpie Hall +Magrath +Magreed +Magro +Magruder +Mags +Mague +Maguire +Mahala +Mahan +Mahar +Mahaska +Maher +Mahler +Mahlon +Mahlon Brower +Mahnken +Mahogany +Mahogony +Mahon +Mahoney +Mahoney Meadows +Mahonia +Mahony +Mahoo +Mahood +Mahopac +Mahoras +Mahtomedi +Mahtomedi Service +Mahwah +Maianbar +Maid Marion +Maida +Maida Vale +Maida Vale Hall +Maiden +Maiden Choice +Maiden Erlech +Maiden Erleigh +Maidenbower +Maidenhead +Maidenshaw +Maidera +Maidstone +Maier +Mailers +Maille +Maillet +Mailloux +Main +Main Beach +Main Campus +Main Creek +Main Entrance +Main Gate +Main Line +Main Tiger Mountain +Main Wharf +Maine +Maine Cove +Maine Prairie +Mainerd +Mainline +Mainprize +Mains +Mainsail +Mainsbridge +Mainstone +Mainwaring +Mainwood +Mair +Mairesfield +Mairfield +Mairmont +Maismore +Maison +Mait +Maithouse +Maitland +Maitland Park +Maize +Majendie +Majestic +Majestic Oaks +Majestic Pine +Majestic Prince +Majesty +Majilla +Major +Major Appleby +Major Deegan Service +Major Denton +Major Lansdale +Major Taylor +Major Trescott +Majorca +Majorie +Majors +Majors Bay +Majors Farm +Makah +Makamah +Makamah Beach +Makanna +Makant +Makatom +Makechnie +Makely +Makemoney +Makepeace +Makim +Makin +Makins +Makinson +Maklary +Makofske +Makos +Makushin +Mal +Mala +Malabar +Malachite +Malacoota +Malaga +Malaguerra +Malahide +Malakoff +Malam +Malaney +Malapardis +Malarin +Malat +Malay +Malba +Malbec +Malbert +Malbone +Malborough +Malbrook +Malburn +Malby +Malcolm +Malcolm Dixon +Malcolm Sargent +Malcolm Wilson +Malcolm X +Malcolmson +Malcom +Malcomb +Malden +Malders +Maldive +Maldon +Maldonado +Maldwyn +Maleady +Malec +Malech +Malecon +Malek +Malet +Maley +Malfort +Malga +Malham +Malhams +Mali +Malibou +Malibu +Malicoat +Malier +Malinda +Maling +Malinya +Malissa +Malkin +Mall +Mall Access +Mall Connection +Mall Loop +Mallacoota +Mallalieu +Mallar +Mallard +Mallard Lake +Mallard Landing +Mallard Point +Mallard Pointe +Mallard Ponds +Mallard Shore +Mallard Slough +Mallards Cove +Mallards Ponds +Mallawa +Mallee +Malleny +Mallery +Mallet +Mallet Hill +Mallett +Mallette +Malley +Malling +Mallings +Mallinson +Mallis +Mallison +Mallon +Mallorca +Mallord +Mallory +Mallory Canyon +Mallory Hill +Mallow +Mallow Ridge +Mallowdale +Mallows Green +Malloy +Mallview +Malm +Malmains +Malmaynes Hall +Malmers Well +Malmesbury +Malmo +Malmsbury +Malmstone +Malobar +Maloian +Malone +Maloney +Malonga +Maloon +Malory +Malott +Malouf +Maloyan +Malpas +Malpass +Malquinn +Malraux +Malsbury +Malsham +Malt +Malt House +Malt Kiln +Malta +Maltbie +Maltby +Maltese +Malthouse +Malthus +Malting +Malting Green +Maltings +Maltings Park +Maltings Villas +Maltmans +Malton +Maltravers +Malts +Malua +Malubar +Malus +Malvar +Malvasia +Malverley +Malvern +Malvern Hill +Malverna +Malverne +Malvin Albright +Malvina +Malvine +Malvini +Malwood +Malyon +Malyons +Malysana +Malzeard +Mamaroneck +Mamie +Mammoroneck +Mammoth +Mamor +Mamre +Man O War +Manacor +Manadnock +Managers +Manahan +Manalapan +Manana +Manand +Manassas +Manassas Forge +Manassas Mill +Manatauck +Manatee +Manatuck +Manbey +Manbre +Manbrough +Mance +Manchaug +Manchest +Manchester +Manchester Lakes +Manchester New +Manchester Old +Manchester Oxford +Manchet +Manchuria +Mancini +Manciple +Mancroft +Mancunian +Mancus +Mancuso +Manda +Mandalay +Mandalay Beach +Mandalong +Mandam Village +Mandan +Mandarin +Mandel +Mandela +Mandemar +Mander +Manderly +Manderston +Mandeville +Mandible +Mandoli +Mandolin +Mandoo +Mandoon +Mandora +Mandrake +Mandrell +Mandy +Mane +Manee +Manella +Manemet +Maneroo +Manet +Manette +Manetto +Manetto Hill +Maney +Manfield +Manfre +Manfred +Manfroy Ranch +Mangalore +Mangariva +Mangel Ranch +Mangels +Manger +Mangin +Mangini +Mangiri +Mangle +Mangles +Mango +Mangold +Mangos +Mangravet +Mangrill +Mangrove +Mangrum +Mangs +Manguire +Mangum +Manguso +Manhasset +Manhasset Woods +Manhattan +Manhattan Beach +Manhattan College +Manhattanville +Manhatten +Manheim +Maniago +Manico +Manida +Manifold +Manigan +Manila +Manildra +Manilla +Manion +Manipur +Manis +Manison +Manister +Manito +Manitoba +Manitou +Manitou Island +Manitowac +Mankas +Mankas Corner +Manker +Manland +Manley +Manley Bridge +Manlove +Manly +Manly Dixon +Mann +Mann Hill +Mann Lot +Manna Gum +Mannakee +Manner +Mannering +Manners +Mannetti +Mannetto Hill +Mannheim +Mannikin +Mannin +Manning +Manningtree +Mannix +Mannock +Mannow +Manns +Manns Hill +Manoel +Manoff +Manolete +Manomet +Manomin +Manon +Manooka +Manor +Manor Brook +Manor Circle +Manor Court +Manor Crest +Manor Ct +Manor Farm +Manor Gate +Manor Green +Manor Grove +Manor Hall +Manor Haven +Manor Hill +Manor House +Manor Lake +Manor Lea +Manor Mill +Manor Oaks +Manor Park +Manor Pond +Manor Pound +Manor Ridge +Manor Village +Manor Way Lee +Manor Way New +Manor Way Lime Tree +Manor Way Maythorne +Manora +Manorcrofts +Manorfield +Manorgate +Manorhaven +Manorhill +Manorhouse +Manors +Manorside +Manorstone +Manorvale +Manorview +Manorville +Manorwood +Manourhouse +Manowie +Manresa +Manresa Uplands +Mansard +Mansbury +Manscroft +Mansdale +Manse +Manseau +Mansel +Mansell +Mansells +Manser +Mansfield +Mansfield Manor +Mansford +Manshaw +Manship +Mansion +Mansion House +Mansion Park +Manson +Manston +Manstone +Mansur +Mansway +Manswood +Mant +Mantalini +Mantauk +Manteca +Mantelli +Manter +Manthey +Manthorne +Manthorp +Manthorpe +Mantilla +Mantis +Mantle +Manton +Mantoni +Mantua +Mantus +Manuel +Manuel Campos +Manuel T Freitas +Manuela +Manuelian +Manuella +Manufacturers +Manufactures +Manuka +Manursing +Manvel +Manvers +Manville +Manville Hill +Manwaring +Manwell +Manwood +Manx +Many Flower +Many Levels +Many Mind +Manygate +Manymind +Manzana +Manzanetta +Manzanilla +Manzanillo +Manzanita +Manzanita Fire +Manzanita Park +Manzanita Point +Manzanita Springs +Manzano +Maoli +Maolis +Maori +Map +Map Hill +Mapache +Mape +Mapel +Mapes +Mapesbury +Mapewood +Maple +Maple Bluff +Maple Branch +Maple Brook +Maple Chase +Maple Creek +Maple Cross +Maple Dell +Maple Falls +Maple Glen +Maple Grove +Maple Hall +Maple Heights +Maple Hill +Maple Island +Maple Knoll +Maple Lake +Maple Lawn +Maple Leaf +Maple Manors +Maple Mountain +Maple Park +Maple Pond +Maple Ridge +Maple Run +Maple Shores +Maple Tree +Maple Valley +Maple View +Maple Wood +Maplebrook +Maplecreek +Maplecrest +Maplecroft +Mapledale +Mapledon +Mapledrakes +Mapledurham +Maplefield +Maplegrove +Maplehill +Maplehurst +Maplelawn +Mapleleaf +Maplemoor +Maplenut +Mapleplain +Mapleridge +Maplers +Maples +Maplescombe +Mapleshade +Mapleside +Maplestead +Maplestead Hall +Maplethorpe +Mapleton +Mapletree +Mapleview +Maplewood +Maplewood Mall +Maplewood Park +Mapley +Maplin +Maquan +Maquilla +Mar +Mar East +Mar Monte +Mar Vista +Mar West +Mara +Maracaibo +Marakesh +Maraket +Maralinga +Maralyee +Maramel +Marampo +Maran +Marana +Maranatha +Maranda +Maranello +Maranie +Maranon +Maranook +Marant +Maranta +Maranui +Maras +Maraschino +Marathon +Maravich +Maravista +Maray +Marazzani +Marba +Marban +Marbee +Marbella +Marben +Marberry +Marbet +Marbi +Marbilynn +Marble +Marble Arch +Marble Canyon +Marble Fawn +Marble Hill +Marble Mountain +Marble Ridge +Marble Rock +Marble Valley +Marble Wood +Marbledale +Marblehead +Marbleridge +Marblestone +Marblewood +Marbly +Marboro +Marbour +Marbourne +Marbridge +Marbrook +Marburg +Marburger +Marbury +Marbury Run +Marc +Marcama Ranch +Marcando +Marceau +Marcee +Marcel +Marcela +Marcella +Marcellas +Marcello +Marcellus +Marcelyn +Marcer +Marcey +Marcey Creek +March +Marchand +Marchant +Marchbank +Marchbanks +Marchen +Marcher +Marches +Marchi +Marchmont +Marchwood +Marcia +Marcia Jean +Marcin +Marcius +Marclaire +Marcliffe +Marco +Marconi +Marcotte +Marcourt +Marcross +Marcshire +Marcus +Marcus Garvey +Marcuse +Marcussen +Marcy +Marda +Mardale +Mardan +Mardel +Mardell +Mardella +Marden +Marder +Mardi +Mardie +Mardin +Mardinly +Mardis +Mardjetko +Mardle +Mardley +Mardleybury +Mardo +Mardol +Mardon +Mardyke +Mare +Mare Barn +Mare Hill +Marea +Marechal Niel +Mareda +Maree +Marefield +Mareldor +Marella +Maren +Marenda +Marengo +Mares Neck +Mareschal +Mareshall +Mareth +Maretha +Maretimo +Mareu +Marfargoa +Marfield +Marford +Marfrance +Marga +Margail +Margaret +Margaret Bondfield +Margaret Corbin +Margaret Curtis +Margaret Gardner +Margaret Keahon +Margaret Mitchell +Margaret Woods +Margarets +Margaretta +Margaretting +Margarido +Margarita +Margarite +Margate +Margate on Oxford +Margelet +Margeret +Margerie +Margerita +Margery +Margery Park +Margery Wood +Marget +Margetts +Margherita +Margie +Margin +Marginal +Marginella +Margo +Margorie +Margot +Margraten +Margravine +Margret +Margrett +Margrove +Marguerette +Marguerita +Marguerite +Margurite +Marham +Mari +Maria +Maria Lake +Maria Noel +Mariada +Marian +Mariana +Marianas +Mariani +Mariann +Marianna +Marianne +Mariano +Maribess +Maricas +Marice +Marich +Maricopa +Maridon +Marie +Marie Angela +Marie Ann +Marie Curie +Marie Louise +Marie Major +Marieba +Mariele +Marielene +Mariemont +Maries +Mariestad +Marietta +Marigold +Marik +Marikay +Marilla +Marillac +Marillian +Marilona +Marilyn +Marilyne +Marilynn +Marimac +Mariman +Marin +Marin Center +Marin Oaks +Marin View +Marina +Marina Bay +Marina Court +Marina Cove +Marina Green +Marina Lakes +Marina Park +Marina Point +Marina Shore +Marina View +Marina Village +Marina Vista +Marinaview +Marinda +Marindell +Marine +Marine Terminal +Marine View +Marine World +Marinea +Marinefield +Marinella +Marinelli +Mariner +Mariner Green +Mariner Square +Marinera +Mariners +Mariners Cove +Mariners Island +Marinette +Marineview +Marinita +Marinna +Marino +Marinor +Marinovich +Marinucci +Marinus +Marinwood +Mario +Mario Anthony +Marioak +Mariola +Mariom +Marion +Marion Pepe +Marione +Marionet +Marions +Mariposa +Marique +Maris +Marisa +Marischal +Marish +Marisma +Marissa +Marist +Marit +Marita +Maritime +Maritime Academy +Marius +Marivista +Marjohn +Marjoram +Marjorams +Marjorie +Marjorie Jackson +Marjory +Mark +Mark Alan +Mark Bradford +Mark Center +Mark Collins +Mark Graf +Mark Lee +Mark Mead +Mark Terrace +Mark Thomas +Mark Twain +Mark Vincent +Mark West Springs +Mark Wood +Markab +Marked Tree +Markedge +Markeley +Markenfield +Market +Market Commons +Market Loop +Market Oak +Market Place +Market Square +Market Town +Marketfield +Marketplace +Marketpointe +Marketview +Markev +Markey +Markfield +Markgrafs Lake +Markham +Markham Grant +Markhams Grant +Markhouse +Markingdon +Markington +Markland +Markland Hill +Marklands +Marklay +Markley +Markmanor +Markovich +Markovina +Markowitz +Marks +Marks Hall +Marksman +Markstakes +Markston +Markwick +Markwood +Markyate +Marl +Marl Oak +Marl Pat +Marla +Marlain +Marlan +Marland +Marland Fold +Marland Hill +Marland Old +Marlands +Marlbarough +Marlboro +Marlboro Woods +Marlborough +Marlbrook +Marlbrough +Marlcroft +Marle +Marle Place +Marlee +Marleigh +Marlen +Marlene +Marler +Marless +Marlesta +Marlette +Marley +Marley Combe +Marley Creek +Marley Hills +Marley Neck +Marlfield +Marlin +Marlinford +Marling +Marlington +Marlins Park +Marlinspike +Marlis +Marlisle +Marlo +Marloborough +Marlock +Marloes +Marlon +Marlou +Marlow +Marlow Bridge +Marlow Farm +Marlowe +Marlpit +Marlpits +Marlpost +Marlstone +Marlton +Marlton Center +Marlwood +Marly Garden +Marlyn +Marlynn +Marlyns +Marlyon +Marmadon +Marmaduke +Marmary +Marmet +Marmion +Marmion Academy +Marmith +Marmon +Marmona +Marmont +Marmora +Marmot +Marna +Marne +Marnel +Marnell +Marney +Marnham +Marnice +Marnook +Marnpar +Maro +Maroel +Marong +Maroo +Marooba +Marook +Maroon +Maroon Bells +Maroopna +Maros +Maroubra +Marple +Marple Hall +Marple Old +Marquand +Marquard +Marquardt +Marques +Marquess +Marquet +Marquette +Marquis +Marquita +Marr +Marr Crest +Marr Lodge +Marra +Marrang +Marrett +Marri +Marriage +Marrick +Marrickville +Marrietta +Marrigan +Marrilyne +Marriner +Marringdean +Marrion +Marriot +Marriott +Marriotts +Marron +Marrow +Marrowbrook +Marryat +Marryott +Mars +Marsack +Marsad +Marsak +Marsala +Marsalla +Marsan +Marsand +Marsardis +Marscay +Marsch +Marschall +Marsdale +Marsden +Marsden Fall +Marsden Peel +Marsdon +Marseille +Marseilles +Marsh +Marsh Creek +Marsh Crossing +Marsh Farm +Marsh Fold +Marsh Gibbon +Marsh Green +Marsh Hall +Marsh Harbor +Marsh Hawk +Marsh Hill +Marsh House +Marsh Lake +Marsh Overlook +Marsh Point +Marsh Pointe +Marsh Quarter +Marsh View +Marsha +Marshal +Marshalee +Marshall +Marshall Ash +Marshall Beach +Marshall Concourse +Marshall Corner +Marshall Crown +Marshall Hall +Marshall Lake +Marshall Minor +Marshall Petaluma +Marshall Pond +Marshall Yard +Marshalls +Marshalls Heath +Marshalltown +Marshalswick +Marsham +Marshbrook +Marshcroft +Marshdale +Marshes Dock +Marshfield +Marshgate +Marshlake +Marshland +Marshlands +Marshman +Marshmellow +Marshmoor +Marshsong +Marshview +Marshy Point +Marsilly +Marsland +Marsland Green +Marson +Marstan Moor +Marsteller +Marsten +Marsters +Marston +Marstone +Marstonfields +Marsulin +Marsworth +Marszalkowski +Marta +Martaban +Martel +Martell +Martellini +Martello +Marten +Martens +Martense +Martensen +Marth +Martha +Martha Custis +Martha Greenleaf +Martha Jane +Martha Jones +Martha Washington +Marthall +Martham +Marthas +Marthas Point +Marti +Marti Marie +Martian +Martie +Martiin +Martin +Martin Francis +Martin Frobisher +Martin Jue +Martin Long +Martin Luther King +Martin Luther King Jr +Martin Redman +Martina +Martinack +Martinangelo +Martindale +Martine +Martineau +Martinelli +Martinez +Martingale +Martingdale +Martinhoe +Martini +Martinique +Martino +Martinoni +Martins +Martins Beach +Martins Cove +Martins Hundred +Martins Landing +Martins Pond +Martinsburg +Martinscroft +Martinsend +Martinstein +Martinvale +Martinwood +Martiri +Martis +Martius +Martland +Martlet +Martlett +Martlew +Martley +Martling +Martock +Martom +Marton +Martool +Martown +Marts +Marty +Martyn +Martyr +Martyrs +Maruba +Marumsco +Marva +Marva Oaks +Marvel +Marvell +Marvelle +Marvels +Marville +Marvin +Marvin Elwood +Marvin Gardens +Marvo +Marvy +Marwell +Marwick +Marwood +Marx +Marx Meadow +Mary +Mary Adele +Mary Agnes +Mary Alice +Mary Allen +Mary Ann +Mary Anne +Mary Augusta +Mary Baldwin +Mary Byrne +Mary C +Mary Caroline +Mary Case +Mary Cassatt +Mary Catherine +Mary Chilton +Mary Chris +Mary E Brown +Mary Eddy +Mary Ellen +Mary Etta +Mary Evelyn +Mary Fee +Mary France +Mary Helen +Mary Hills +Mary Jane +Mary Jean +Mary Jo +Mary Joe +Mary Kate +Mary Kay +Mary Kennedy +Mary Knoll +Mary Lee +Mary Lou +Mary Lu +Mary Lynn +Mary Neunar +Mary Paige +Mary Peters +Mary Powell +Mary Roth +Mary Scano +Mary Scot +Mary Todd +Mary Wollstonecraft +Marya +Maryal +Maryann +Maryanna +Maryanne +Maryannis +Maryatt +Marybelle +Marycrest +Marycris +Marydale +Marydell +Marye +Maryellen +Maryfield +Maryhill +Maryhurst +Maryjane +Maryknoll +Maryl +Marylake +Maryland +Maryland Park +Marylands +Marylebone +Marylebone High +Maryleborn +Marylin +Marylon +Marylou +Marylu +Marylyn +Marymead +Marymeade +Marymont +Marymoor Park +Marymount +Maryon +Maryport +Marys +Marys Mount +Marystown +Marysville +Maryton +Maryvale +Maryview +Maryville +Marywood +Marywood Oaks +Marz +Marzino +Marzitelli +Marzoff +Mas Que Farm +Masar +Masasoit +Masboro +Masbro +Mascalls +Mascalls Court +Mascari +Masciarelli +Mascoma +Masconemet +Masconomet +Masconomo +Mascot +Mascotte +Mase +Masefield +Maserati +Masham +Mashbury +Mashie +Mashman +Mashpee +Masjid +Maskell +Maskwonicut +Maslen +Masoma +Mason +Mason Bluff +Mason Crossing +Mason Dixon +Mason Hill +Mason Pond +Mason Ranch +Mason Ridge +Masonbrook +Masonic +Masonic Hall +Masonic Home +Masonry +Masons +Masons Beach +Masons Bridge +Masons Ferry +Masons Green +Masons Spring +Masonville +Masonwood +Maspeth +Mass +Massa +Massachusetts +Massanutten +Massapequa +Massapoag +Massar +Massasoit +Massbury +Masse +Massei +Massena +Masser +Masseth +Massetts +Massey +Massey Brook +Massie +Massingham +Massitoa +Massoit +Massolo +Masson +Massport Haul +Mast +Mast Hill +Mastbrook +Masten +Master +Master Gunner +Masterfield +Masterman +Masterpiece +Masters +Masterson +Masterton +Masterworks +Masthead +Mastic +Mastick +Mastlands +Mastmaker +Mastro +Maswell Park +Mat +Matadero +Matadero Creek +Matador +Matanzas +Matapeake +Matapeake Business +Mataro +Matawan +Matawan Green +Matbury +Match Point +Matcham +Matchaponix +Matchett +Matching +Matchless +Matchmoor +Matena +Mateny +Mateny Hill +Mateo +Matera +Materials +Matey +Matfair +Matfield +Matham +Mathams +Mathaurs +Mather +Mather East +Mather Field +Matheron +Mathes +Matheson +Mathew +Mathews +Mathews Park +Mathewsgreen +Mathewson +Mathia +Mathias +Mathieson +Mathieu +Mathilda +Mathis +Mathurin +Mathwig +Mathy +Matiasevich +Matignon +Matilda +Matilija +Matina +Matinecock +Matinecock Farms +Matis +Matisse +Matley +Matlock +Matmor +Matong +Matora +Matoza +Matross +Matson +Matsonia +Matsons +Matsqui +Matsuda +Matsumoto +Matt +Mattakeeset +Mattakeesett +Mattande +Mattapan +Mattaponi +Mattaponi River +Mattapony +Mattawoman +Mattawoman Beantown +Mattawoman Creek +Mattei +Matteline +Matteo +Matterhorn +Matteri +Matterson +Matteson +Matthes +Matthew +Matthew Henson +Matthew Mills +Matthew Moss +Matthew Parker +Matthews +Matthews Town +Matthias +Matthies +Matthiessen +Mattice +Mattie +Mattimore +Mattingley +Mattingley Bottle +Mattingly +Mattique +Mattison +Mattituck +Mattity +Mattock +Mattocke +Mattos +Mattox +Mattox Creek +Matts +Matts Hill +Mattson +Mattson Brook +Mattsons +Matule +Matura +Maturan +Matzen +Matzley +Maubert +Maud +Maude +Maudlin +Mauds +Maudslay +Maudsley +Maue +Mauer +Maugh +Maugham +Maughan +Maugus +Maugus Hill +Maui +Maujer +Maul +Maulbeck +Mauld +Mauldeth +Maule +Mauleverer +Maumee +Maumell +Mauna Kea +Maunder +Maunsel +Maura +Maura Elizabeth +Maureen +Maurer +Maurice +Mauricia +Mauritania +Mauritius +Maurland +Mauro +Mauro Pietro +Maury +Mausoleum +Mavelle +Maverick +Maverton +Maves +Mavins +Mavis +Mavor +Mavus +Mawal +Mawarra +Mawavi +Mawbey +Mawdsley +Mawhinney +Mawman +Mawney +Mawson +Max +Max Blobs Park +Maxall +Maxanicki +Maxcy +Maxdale +Maxess +Maxey +Maxfield +Maxim +Maximfeldt +Maximilian +Maximillian +Maxine +Maxson +Maxted +Maxwell +Maxwell Canyon +Maxwell Frye +Maxwells +Maxwelton +May +May Bate +May Brown +May Elm +May Lake +May School +May Wagner +Maya +Mayall +Mayan +Mayaone +Mayapple +Mayapple Hill +Maybank +Maybaugh +Maybaum +Maybeck +Maybeck Twin +Maybee +Maybell +Maybelle +Maybern +Mayberry +Mayborne +Mayboro +Maybrick +Maybrook +Maybury +Maybush +Maycheck +Maycliff +Maycock +Maycotts +Maycroft +Mayda +Maydale +Maydan +Mayday +Maydencroft +Maye +Mayellen +Mayer +Mayerne +Mayes +Mayesford +Mayeswood +Mayette +Mayfair +Mayfair Park +Mayfarm +Mayfiar +Mayfield +Mayfield Heights +Mayfields +Mayflower +Mayford +Maygood +Maygoods +Maygrove +Mayhall +Mayher +Mayhew +Mayhews +Mayhews Landing +Mayhill +Mayhouse +Mayhurst +Maykirk +Mayland +Maylands +Maylard +Maylea +Maylen +Maylins +Maylock +Maylons +Mayman +Mayme +Maymens Flat +Maymont +Maynadier +Maynard +Maynard Farm +Mayne +Maynestone +Mayo +Mayo Ridge +Mayock +Mayola +Mayor +Mayorlowe +Mayow +Mayplace +Maypole +Maypool +Mayport +Mayre +Mayroyd +Mays +Mays Canyon +Maysenger +Maysent +Maysfield +Mayside +Maysoule +Mayten +Maytham +Maythorne +Maytime +Mayton +Maytone +Maytorena +Maytree +Maytum +Mayvic +Mayview +Mayville +Mayweed +Maywin +Maywood +Mazalin +Mazarin +Mazatlan +Mazda +Mazda Brook +Maze +Maze Green +Mazeau +Mazenod +Mazepa +Mazewood +Mazey +Mazie +Mazoe +Mazuela +Mazur +Mazza +Mazzaglia +Mazzeo +Mazzilli +Mazzini +Mazzone +Mazzoni +Mc Abee +Mc Adam +Mc Afee +Mc Alester +Mc Alister +Mc Allister +Mc Alpin +Mc Arthur +Mc Auliffe +Mc Avoy +Mc Baine +Mc Breen +Mc Bride +Mc Cabe +Mc Callum +Mc Cameron +Mc Cammon +Mc Cann +Mc Cannon +Mc Carron +Mc Carter +Mc Carthy +Mc Ceney +Mc Chesney +Mc Chord +Mc Clean +Mc Clellan +Mc Clelland +Mc Clellen +Mc Clish +Mc Closkey +Mc Clung +Mc Clure +Mc Coco +Mc Coll +Mc Collam +Mc Comber +Mc Connell +Mc Cook +Mc Cool +Mc Cord +Mc Corkle +Mc Cormick +Mc Cornack +Mc Corty +Mc Covey +Mc Coy +Mc Cracken +Mc Cray Ridge +Mc Crea +Mc Creery +Mc Creery Ranch +Mc Crone +Mc Cue +Mc Culloch +Mc Cullough +Mc Cully +Mc Curdy Trail +Mc Cutchan +Mc Cutcheon +Mc Daniel +Mc Dermott +Mc Divitt +Mc Dole +Mc Donald +Mc Donell +Mc Dougall +Mc Dowell +Mc Eachern +Mc Evoy +Mc Ewen +Mc Fadden +Mc Fall +Mc Faul +Mc Garvey +Mc Gaw +Mc Ginley +Mc Ginn +Mc Ginness +Mc Ginnis +Mc Glashan +Mc Gloshen +Mc Glynn +Mc Grady +Mc Grann +Mc Graw +Mc Gregor +Mc Guckian +Mc Guffie +Mc Henry +Mc Intosh +Mc Intosh Creek +Mc Kay +Mc Kean +Mc Kee +Mc Keel +Mc Kellar +Mc Kelvey +Mc Kendree +Mc Kenna +Mc Kenny +Mc Kenzie +Mc Keon +Mc Keown +Mc Kinley +Mc Kinney +Mc Kissick +Mc Knew +Mc Knight +Mc Kool +Mc Lain +Mc Laren +Mc Larin +Mc Laughlin +Mc Lean +Mc Lellan +Mc Lendon +Mc Leod +Mc Loughlin +Mc Magan +Mc Mahon +Mc Menemy +Mc Millan +Mc Morrow +Mc Mullen +Mc Mullin +Mc Murray +Mc Nabbs +Mc Nair +Mc Near +Mc Neer +Mc Neil +Mc Neile +Mc Ney +Mc North +Mc Nutt +Mc Pherson +Mc Quay +Mc Questen +Mc Roberts +Mc Sween +Mc Vay +Mc Veigh +Mc Vicker +Mc Vickers +Mc Whorter +McAdam +McAdams +McAdoo +McAfee +McAleer +McAlister +McAllister +McAlpine +McAmant +McAndrew +McAndrews +McArdle +McArthur +McArthur Loop +McAtee +McAuley +McAuliffe +McBain +McBrian +McBride +McBrown +McBryde +McBurney +McCabe +McCahill +McCalium +McCall +McCallum +McCampbell +McCandless +McCann +McCannon +McCarron +McCarrs Creek +McCarters +McCarthy +McCarthy Ranch +McCarthy Ridge +McCarthys +McCartney +McCarty +McCarty Ranch +McCary +McCasland +McCauley +McCaulley +McCay +McCellen +McCeney +McChesney +McClain +McClaran +McClaren +McClarren +McClary +McClean +McCleer +McClellan +McClelland +McClellen +McClintock +McClish +McCloskey +McClosky +McCloud +McCloud River +McCloy +McClung +McClure +McClurg +McColl +McCollum +McComas +McComb +McCombe +McComber +McCone +McConnel +McConnell +McCook +McCool +McCoppin +McCord +McCorkle +McCormack +McCormic +McCormick +McCornick +McCosh +McCoville +McCowan +McCoy +McCoy Creek +McCracken +McCrae +McCray +McCray Ridge +McCrea +McCredie +McCreey +McCrory +McCrossin +McCubbens +McCubbin +McCudden +McCue +McCuen +McCul +McCulley +McCulloch +McCullough +McCullough Park +McCullum +McCune +McCurahan +McCurdy +McCurley +McCurry +McCutchen +McDaniel +McDaniels +McDeeds +McDermott +McDevitt +McDiarmid +McDivitt +McDole +McDonald +McDonald Chapel +McDonalds +McDonell +McDonnel +McDonnell +McDonough +McDonough Heights +McDougal +McDougald +McDougall +McDowall +McDowell +McDuff +McDuffie +McEathron +McElhone +McEllen +McElroy +McEncroe +McEnery +McEntee +McEvilly +McEvoy +McEwan +McFadden +McFadyen +McFarlan +McFarland +McFarlane +McFarlin +McFeeley +McFeeley Shipyard +McFetridge +McGaffigan Mill +McGann +McGarity +McGarvie +McGary +McGaw +McGee +McGeory +McGettigan +McGill +McGilvray +McGinn +McGinnis +McGirr +McGlenn +McGlinchey +McGovern +McGovney +McGowan +McGowen +McGrath +McGraw +McGregor +McGrue +McGuckian +McGuffey +McGuffie +McGuin +McGuiness +McGuinn +McGuinness +McGuire +McGuirk +McGurrin +McHarry Ranch +McHatton +McHenry +McHenry Service +McHenzie +McHugh +McIlvenie +McIlwraith +McIndoe +McInnis +McIntire +McIntosh +McIntyre +McIver +McKanna +McKay +McKean +McKee +McKeel +McKeever +McKell +McKellar +McKenchnie +McKendree +McKendrie +McKenna +McKennas Gulch Fire +McKenney +McKenny +McKenstry +McKenzie +McKenzie Point +McKeon +McKeown +McKern +McKernan +McKerrell +McKevitte +McKibben +McKibbin +McKillop +McKinley +McKinley Woods +McKinney +McKinnon +McKinsey +McKinsey Park +McKinstry +McKinzie +McKlintock +McKnew +McKnight +McKool +McKye +McLain +McLane +McLaren +McLaughan +McLaughlin +McLean +McLean Commons +McLean Corner +McLean Park +McLeans +McLearen +McLees +McLellan +McLennan +McLeod +McLester +McLoud +McMahon +McMane +McManus +McMaster +McMenemy +McMillan +McMillen +McMinn +McMullen +McMurdie +McMurdo +McMurry +McMurtry +McNab +McNabb +McNair +McNair Farms +McNamara +McNamee +McNaught +McNaughton +McNear +McNear Brickyard +McNeely +McNeil +McNeill +McNerney +McNichols +McNicoll +McNie +McNomee +McNultey +McOwen +McPeak +McPhee +McPherson +McQuade +McQuay +McRae +McRaes +McReynolds +McRoberts +McSherry +McTernan +McTucker +McVie +McWIlliam +McWalter +McWhirter +McWhorter +McWilliams +Mcadams +Mcafee +Mcalee +Mcallester +Mcandrew +Mcarthur +Mcauliffe +Mcavoy +Mcbride +Mccabe +Mccall +Mccallum +Mccalmont +Mccann Hill +Mccarrons +Mccarthy +Mcclelland +Mcclure +Mccoba +Mccoll +Mccordick +Mccormack +Mccormick +Mccoy +Mccracken +Mccraw +Mccue +Mcculloch +Mccullough +Mccusker +Mcdermott Farm +Mcdevitt +Mcdewell +Mcdonald +Mcdonald Farm +Mcdonna +Mcdonnell +Mcdougall +Mcdowell +Mcendy +Mcenelly +Mcfarlin +Mcgarvey +Mcgee +Mcgeoch +Mcgeough +Mcgill +Mcgovern +Mcgrane +Mcgrath +Mcgregor +Mcguire +Mchugh +Mchugh Farm +Mcintire +Mcintosh +Mcintyre +Mckay +Mckean +Mcken +Mckenn +Mckeon +Mckim +Mckinley +Mckinnon +Mcknight +Mckone +Mclains Woods +Mclaren +Mclean +Mcleavey +Mclellan +Mcleod +Mcmahon +Mcmenemy +Mcnair +Mcneill +Mcnulty +Mcphee +Mcpherson +Mcquade +Mcrayne Hill +Mctaggart +Mcvitty +Mea +Meacham +Meacher +Meachin +Mead +Mead House +Mead Point +Mead Pond +Mead Way Tollers +Meadbrook +Meadcroft +Meade +Meade Hill +Meade Village +Meader +Meades +Meadfield +Meadfoot +Meadgate +Meadhook +Meadhurst +Meadlands +Meado +Meadow +Meadow Bay +Meadow Bluff +Meadow Bridge +Meadow Brook +Meadow Chase +Meadow Club +Meadow Creek +Meadow Crest +Meadow Croft +Meadow Dam +Meadow Edge +Meadow Farm +Meadow Fence +Meadow Field +Meadow Gate +Meadow Glade +Meadow Glen +Meadow Green +Meadow Grove +Meadow Hall +Meadow Hill +Meadow Hunt +Meadow Lake +Meadow Lakes +Meadow Lark +Meadow Lily +Meadow Marsh +Meadow Oak +Meadow Oaks +Meadow Park +Meadow Pines +Meadow Pond +Meadow Ridge +Meadow Rose +Meadow Rue +Meadow Run +Meadow Sage +Meadow Shire +Meadow Side +Meadow Springs +Meadow Trail +Meadow Valley +Meadow View +Meadow Wood +Meadow Woods +Meadowbank +Meadowbridge +Meadowbrook +Meadowcot +Meadowcourt +Meadowcreek +Meadowcrest +Meadowcroft +Meadowdale +Meadowdale Beach +Meadowdown +Meadowfaire +Meadowfarm +Meadowfield +Meadowgate +Meadowglen +Meadowgreen +Meadowhaven +Meadowhawk +Meadowheights +Meadowhill +Meadowlake +Meadowland +Meadowlands +Meadowlark +Meadowlark Farm +Meadowlawn +Meadowmere +Meadowmist +Meadowmont +Meadowood +Meadowpond +Meadowridge +Meadowrill +Meadowrue +Meadows +Meadows Edge +Meadows Farm +Meadowsedge +Meadowshire +Meadowside +Meadowspring +Meadowstone +Meadowsweet +Meadowvale +Meadowview +Meadowvista +Meadowwood +Meadowwwod +Meads +Meadscroft +Meadvale +Meadview +Meadway +Meadway Bigwood +Meadway Devon +Meagan +Meager +Meagher +Meagill Rise Weston +Meakem +Meakin +Meal +Meal HIll +Mealer +Mealhouse +Meander +Meander Cove +Meandering +Meanderwood +Meanley +Meanwood +Meanwood Grove +Meanwood Valley +Mear +Mears +Meath +Meath Green +Mecan +Mecartney +Mecca +Mechanic +Mechanical +Mechanics +Mechanicsville Glen +Mechanicville +Meckes +Meckiff +Mecosta +Meda +Medalist +Medallion +Medanos +Medary +Medawar +Medbourne +Medburn +Medbury +Medcalf +Medcom +Medebridge +Medeiros +Meder +Medera +Medewood +Medfield +Medford +Medgar Evars +Medhurst +Media +Median +Mediati +Medical +Medical Center +Medical Foundation +Medicine Lake +Medicine Lk +Medicine Ridge +Medieval +Medill +Medina +Medina Lake +Medinah +Medinah Ridge +Medio +Mediterranean +Medlake +Medlar +Medlee +Medley +Medlin +Medlock +Medlow +Medora +Medoro +Medowview +Medtronic +Medusa +Medved +Medway +Medway Wharf +Medwick +Medwin +Mee +Meeds +Meeham +Meehan +Meehling +Meeker +Meekins +Meeks +Meela +Meem +Meer +Meerbrook +Meeres +Meeres Court +Meernaa +Meeson +Meester +Meeting +Meeting Camp +Meeting House +Meeting House Hill +Meeting Oak +Meeting Square +Meetinghouse +Meetinghouse Hill +Mefferd +Mefford +Meg +Meg Grace +Megalong +Megan +Megg +Meggan +Meggins +Meghan +Meghann +Megills Landing +Meginniss +Megonko +Mehaffey +Mehan +Meherrin +Mehetabel +Mehrhof +Mehrman +Mei +Meidl +Meiele +Meier +Meiggs +Meigh +Meigs +Mein +Meinzer +Meisel +Meisinger +Meisler +Meisner +Meiss +Meisser +Meister +Mekler +Meknight +Mel +Mel Mara +Meladee +Melaleuca +Melaleuka +Melandra +Melandra Castle +Melanie +Melba +Melboourne +Melborne +Melbourne +Melbrook +Melbrooke +Melbury +Melby +Melch +Melcher +Melchester +Melclare +Melcombe +Meldar +Meldon +Meldrum +Meldung +Melea +Melee +Melendez +Melendy +Meleny +Melfa +Melford +Melfort +Melgren +Melgund +Melham +Melhorn +Melia +Melillo +Melin +Melina +Melinda +Melior +Meliot +Melisa +Melise +Melissa +Melita +Melksham +Mell +Mellalieu +Melland +Mellbrook +Mellen +Mellenbrook +Meller +Mellersh Hill +Mellfell +Mellgren +Mellick +Mellin +Melling +Mellington +Mellish +Mellison +Melliss +Mellitus +Mello +Mello Hollow +Mello View +Mellodew +Mellodora +Mellon +Mellon Hollow +Mellor +Mellots +Mellott +Mellow +Mellowood +Mellows +Mellowstone +Mellus +Mellwood +Melne +Melnea Cass +Melnotte +Melo +Melody +Melody Hill +Melody Lake +Melolane +Melon +Melony +Melrose +Melrose Spring +Melsa +Melsomby +Melsted +Melstock +Melstone +Meltham +Melthorne +Melting Shadows +Melton +Melva +Melverley +Melvern +Melvich +Melvikoff +Melville +Melville Park +Melville Villas +Melvin +Melvina +Melvyn +Melwex +Melwood +Melwood Chapel +Melwood Park +Melyard +Melyncourt +Membrey +Memel +Memo +Memorex +Memorial +Memorial Beach +Memorial Heights +Memorial School +Memory +Memory la +Memphis +Mena +Menai +Menalto +Menangle +Menard +Menaugh +Menay +Mendakota +Mendel +Mendell +Mendelsohn +Mendelssohn +Mendelssohn Service +Menden Farm +Mendenhall +Mendes +Mendez +Mendfield +Mendham +Mending Wall +Mendip +Mendocino +Mendocino Creek +Mendoker +Mendon +Mendonca +Mendora +Mendosa +Mendota +Mendota Heights +Mendota Hts +Mendoza +Mendum +Mendy +Menemsha +Menges +Menhart +Menin +Menindee +Menini +Menk +Menker +Menlee +Menlo +Menlo Oaks +Menmarsh +Menne +Menno +Menocker +Menodora +Menoher +Menokin +Menominee +Menomini +Menon +Menotomy +Menotomy Rocks +Menotti +Menow +Menpes +Mensching +Menser +Mentana +Mente +Mentel +Menteth Point +Mentley +Mentmore +Mento +Menton +Mentone +Mentor +Mentzer +Menzel +Menzies +Meola +Meon +Meopham +Meota +Mepham +Meppel +Mera +Merano +Merbach +Merc +Mercantile +Mercator +Merced +Mercedes +Mercer +Mercer Terrace +Merceron +Mercers +Mercerwood +Merchant +Merchants +Merchiston +Mercia +Mercian +Mercie +Mercier +Mercury +Mercy +Mercy Center +Mercy Hollow +Mere +Merebank +Merebrook +Mereclough +Merecourt +Meredith +Meredyth +Merefield +Merehall +Mereheath +Mereil +Mereland +Mereline +Merelyn +Merelynne +Mereoak +Merepond +Meres +Meresborough +Mereside +Mereway +Merewood +Mereworth +Merfton +Merganser +Merger +Meriadoc +Meriam +Merian +Meric +Merical +Merida +Meridan +Meriden +Meridian +Meridian Hill +Meridian Lake +Meridian Park +Meridian Ridge +Meridith +Meriel +Merifield +Merikern +Merikoke +Meriland +Merilda +Merilee +Meriline +Merillon +Merilyn +Merinda +Merindah +Merino +Merion +Merioneth +Merit +Meritage +Meriton +Meritoria +Meritt +Merivale +Meriwether +Merk +Merkel +Merker +Merkle +Merkley +Merklin +Merle +Merleburgh +Merlen +Merlewood +Merley +Merlin +Merlindale +Merlini +Merlins +Merlo +Merlot +Merlyn +Merlyn Rees +Mermaid +Mermod +Merna +Mernagh +Merner +Mero +Merokee +Merold +Meron +Meroo +Merrall +Merrals Wood +Merrell +Merrenburn +Merri Oaks +Merriain +Merriam +Merribee +Merribrook +Merrick +Merricks +Merricourt +Merridale +Merridan +Merriden +Merridong +Merrie Mill +Merrie Ridge +Merriebrook +Merriewood +Merrifield +Merrifields +Merriford +Merrilands +Merrilee +Merrill +Merrill New +Merrill Service +Merrill Woods +Merrillon +Merrillville +Merrilong +Merrimac +Merrimac River +Merrimack +Merriman +Merriments +Merrimount +Merrina +Merrington +Merrinot +Merrion +Merris +Merrison +Merrit +Merrithew +Merriton +Merritt +Merritt Farm +Merritt Point +Merritton +Merritts +Merrivale +Merriville +Merriwa +Merriweather +Merriwether +Merriwind +Merriwood +Merrow +Merrow Common +Merry +Merry Hill +Merry Hills +Merry Moppet +Merry Oaks +Merry Wood +Merrybower +Merryboys +Merrybrook +Merrydale +Merrydown +Merryfield +Merryhill +Merryhills +Merryknoll +Merrylands +Merryle +Merryman +Merrymans +Merrymeeting +Merrymount +Merryoaks +Merryrest +Merryvale +Merryville Farm +Merrywood +Mersea +Merseles +Merselis +Mersereau +Mersey +Mersey Bank +Merseybank +Mersham +Merstham +Merstham High +Merston +Mert +Merten +Mertens +Mertford +Merton +Merton High +Merttins +Mertz +Merust +Mervan +Merville +Mervin +Mervyn +Merwell +Merwin +Merwood +Mery +Meryl +Meryla +Meryll +Mesa +Mesa Buena +Mesa Creek +Mesa Grande +Mesa Oak +Mesa Ridge +Mesa Verde +Mesa Verdes +Mesabi +Mesaview +Mescalero +Meseda +Meserole +Meserve +Meshaka +Mesnefield +Mesquite +Mess +Messaline +Messenger +Messent +Messer +Messervy +Messiah +Messick +Messier +Messina +Messiner +Messines +Messinger +Messiter +Messler +Meta +Metacomet +Metacomett +Metawa +Metcalf +Metcalfe +Metella +Meteor +Methane +Metheun +Methilhaven +Methley +Methuen +Methven +Methwold +Metispa +Metlars +Metrapolitan +Metro +Metro Access +Metro Center +Metro Park +Metro Plaza +Metro Vista +Metroplex +Metropolitan +Metropolitan Church +Metropolitan Grove +Metrotech +Metson +Metsons +Mettawa +Mettawa Woods +Mettel +Metten +Metters +Mettler +Metuchen +Metuxen +Metz +Metzerott +Metzgar +Metzler +Meucci +Meudon +Meurants +Meuret +Meurilee +Mevan +Mevril +Mexborough +Mexfield +Mexico +Meyel +Meyenberg +Meyer +Meyer Point +Meyers +Meyers Grade +Meyersville +Meymott +Meyn +Meynell +Meyrick +Mezes +Mezmer +Mezzamonte +Mezzine +Mgm +Mhp +Mia +Mia Mia +Miall +Miamba +Miami +Mianga +Mianus +Miara +Mica +Micawber +Mich Bluff +Michael +Michael Canlis +Michael F +Michael Faraday +Michael Frey +Michael John +Michael Mack +Michael Mark +Michael McGuire +Michael Point +Michael Robert +Michael William +Michaelangelo +Michaele +Michaels +Michaelson +Michale +Michalik +Michaud +Michaux +Micheal +Michealangelo +Michel +Michelangelo +Michele +Michelham +Michelini +Michell +Michelle +Michelline +Michels +Michels Dale +Michelson +Michener +Michie +Michigamme +Michigan +Michigan City +Michille +Micholls +Michon +Micik +Mickelson +Micken +Mickens +Mickey +Micklands +Mickle +Micklefield +Mickleham +Micklehurst +Micklejohn +Micklem +Micklethwaite +Mickley +Miclands +Micro +Microlab +Micron +Mid +Mid Atlantic +Mid Cities +Mid Dural +Mid Oaks +Mid Park +Midan +Midbrook +Midchester +Midcrest +Middagh +Middale +Middaugh +Midday +Middelton +Midden +Middle +Middle Bay +Middle Bourne +Middle Brook +Middle Burdell Fire +Middle Church +Middle Creek +Middle Cross +Middle Dunstable +Middle Ellen +Middle Express +Middle Fork +Middle Golf +Middle Harbor +Middle Harbour +Middle Head +Middle Hollow +Middle Island +Middle Loop +Middle Meadow +Middle Memory +Middle Mill +Middle Neck +Middle Opening +Middle Oxford +Middle Park +Middle Pinecreek +Middle Point +Middle Ridge +Middle Rincon +Middle River +Middle Ruddings +Middle Run +Middle School +Middle Temple +Middle Town +Middle Two Rock +Middle Valley +Middle park +Middleberry +Middleboro +Middlebourne +Middlebridge +Middlebrook +Middleburg +Middlebury +Middleby +Middlecamp +Middlecoff +Middlecot +Middlecreek +Middlecroft +Middlefield +Middleford +Middlefork +Middlegate +Middlegate Church +Middlegate Kings +Middlegreen +Middleham +Middlehope +Middlehurst +Middlemead +Middlemiss +Middlemoor +Middleneck +Middlesborough +Middleset +Middlesex +Middlesex Canal +Middlesex Center +Middlestone +Middleton +Middleton Common +Middleton Farm +Middleton Hall +Middleton Old +Middleton Park +Middleton Ridge +Middleton Ring +Middleton Thorpe +Middleton Tract +Middleton Way +Middletown +Middletown Lincroft +Middletree +Middletune +Middlevale +Middleville +Middlewich +Middlewood +Middough +Midelton +Midfarm +Midfield +Midfields +Midford +Midge +Midge Hall +Midgely +Midgley +Midgrove +Midhill +Midholm +Midhope +Midhurst +Midian +Midiron +Midland +Midland Grove +Midland Hills +Midlane +Midlawn +Midledge +Midleton +Midline +Midlothian +Midmoor +Midnight +Midpine +Midra +Midridge +Midsection +Midship +Midson +Midstate +Midstone +Midstrath +Midsummer +Midtown +Midtown Bridge +Midvale +Midvale Mountain +Midville +Midway +Midway Branch +Midway Ranch +Midwest +Midwick +Midwood +Mierscourt +Mifflin +Mifsud +Miggins +Mighall +Mighell +Mighty Oak +Mignin +Mignon +Mignot +Migration +Miguel +Miguelito +Migues Mountain +Miilbank +Mika +Mikan +Mikasa +Mikayla +Mike +Mike Collins +Mike Shapiro +Mikel +Mikell +Mikesell +Mikkelsen +Miko +Mil Mil +Milagra +Milan +Miland +Milandy +Milani +Milanna +Milano +Milba +Milbank +Milbar +Milbeck +Milbern +Milbert +Milborne +Milboro +Milbourne +Milbrae +Milbrook +Milburn +Milbury +Milch +Milch Hill +Milcote +Mildam +Milden +Mildenhall +Mildmay +Mildon +Mildred +Mildreds +Mildura +Mile +Mile End +Mile Hill +Mile House +Mile Oak +Mile Pond +Mile Square +Mile Tree +Milebrook +Milebush +Mileham +Milemore +Milepost +Miles +Miles Gray +Miles Hill +Miles Keene +Miles River +Milestone +Milestone Center +Milestone Manor +Mileview +Miley +Milfan +Milfoil +Milford +Milford Haven +Milford Mill +Milgate +Milgeo +Milguy +Milham +Milik +Miliken +Milita +Military +Militia +Miljevich +Milk +Milk Farm +Milking +Milkingpen +Milksey +Milkshake +Milkweed +Milkwood +Mill +Mill Bay +Mill Branch +Mill Brook +Mill Brow +Mill Chase +Mill Church +Mill Copse +Mill Court +Mill Creek +Mill Cross +Mill Crossing +Mill Dam +Mill End +Mill Farm +Mill Fold +Mill Forest +Mill Gate +Mill Glen +Mill Green +Mill Harbor +Mill Hill +Mill Hill Page +Mill House +Mill Meadows +Mill Park +Mill Pit +Mill Plat +Mill Pond +Mill Pond Point +Mill Pond Valley +Mill Race +Mill Race Estates +Mill River +Mill Run +Mill Site +Mill Spring +Mill Springs +Mill Swamp +Mill Trail +Mill View +Mill Vue +Mill Wheel +Millais +Milland +Millar +Millard +Millay +Millbank +Millbeck +Millboard +Millbottom +Millbourne +Millbrae +Millbridge +Millbrook +Millburn +Millburne +Millbury +Millcreek +Millcrest +Millcroft +Milldale +Millen +Milleninum +Millenium +Millennium +Miller +Miller Circle +Miller Creek +Miller Cut Off +Miller Fall +Miller Farm +Miller Heights +Miller Hill +Miller Ridge +Miller View +Millerick +Milleridge +Millers +Millers Green +Millers Island +Millersburg +Millersville +Millet +Millett +Milley +Millfarm +Millfield +Millfields +Millford +Millfordhope +Millgarth +Millgate +Millgrove +Millham +Millhaven +Millhead +Millhouse +Millibank +Millicent +Millich +Millie +Millie May +Milligan +Milliken +Milliken Creek +Millikens Bend +Milling +Millington +Millington Hall +Million +Million Penny +Milliston +Millman +Millmarsh +Millmont +Millns +Millom +Millpond +Millponds +Millrace +Millrich +Millridge +Millrose +Mills +Mills Choice +Mills Corner +Mills Farm +Mills Hill +Mills Orchard +Mills Pond +Millsbrae +Millsdale +Millsgate +Millshaw +Millshire +Millshot +Millside +Millspring +Millstead +Millston +Millstone +Millstone Hill +Millstream +Millstream Service +Millsview +Millthorpe +Millthwait +Millton +Milltown +Milltown Landing +Millvale +Millview +Millville +Millwall Dock +Millwheel +Millwood +Millwood Pond +Millwoof +Millwright +Millyan +Milman +Milmans +Milmont +Miln +Milnbank +Milne +Milne Cove +Milner +Milnes +Milnrow +Milnthorpe +Milnwood +Milo +Milo Candini +Milosh +Milot +Milparinka +Milray +Milrose +Milroy +Milroy Crest +Milsom +Milson +Milsop +Milstead +Milsted +Miltiades +Milton +Milton Court +Milton Grant +Milton Hall +Milton High +Milton Hill +Milton I Ross +Milton Manor +Milton Mount +Milton Regis High +Miltonia +Miltsin +Milva +Milvain +Milvale +Milverton +Milvia +Milvia Bicycle +Milwain +Milward +Milwaukee +Milway +Milwood +Mima +Mimas +Mimi +Mimie Anderson +Mimms +Mimms Hall +Mimon +Mimosa +Mimosa Cove +Mimram +Mims +Mimsey +Mina +Mina Rosa +Minaglia +Minahen +Minaker +Minard +Minardi +Minaret +Minarto +Minas +Minburn +Minchen +Minchens +Minchin +Minchinbury +Mincing +Mindanao +Mindar +Mindaribba +Mindarie +Minden +Mindleheim +Mindona +Mindoro +Mindres +Mindy +Mine +Mine Bank +Mine Brook +Mine Ridge +Mine Run +Minea +Minear +Minebrook +Minehan +Minehead +Minehurst +Mineola +Miner +Mineral +Mineral Spring +Mineral Springs +Minert +Minerva +Mines +Minet +Minetta +Minette +Minford +Ming +Minga +Mingo +Mini +Miniature +Minidoka +Minihan +Minimall +Minimbah +Minion +Minisink +Minister +Ministerial +Minjon +Mink +Mink Hollow +Mink Meadows +Mink Trap +Minkara +Minkler +Minley +Minmai +Minna +Minnamorra +Minnamurra +Minnaqua +Minneapolis +Minnear +Minnehaha +Minnehaha Academy +Minneola +Minnesota +Minnesota Bluffs +Minnetonka +Minnetonka Highlands +Minnetonka Industrial +Minnewashta Woods +Minnewaska +Minnick +Minnie +Minnieford +Minnieville +Minnisink +Minnow Creek +Minns +Minoan +Minoca +Minocqua +Minola +Minoma +Minor +Minor Hill +Minorca +Minoru +Minoso +Minot +Minot Light +Minots +Minsden +Minshull +Minson +Minster +Minsterley +Minstrel Tune +Minstrell +Mint +Mint Julip +Minta +Mintaro +Mintching Wood +Minter +Minterne +Minthaven +Minthorne +Minto +Minton +Minturn +Mintwood +Mintz +Minue +Minuet +Minute +Minute Arms +Minute Man +Minuteman +Minutemen +Minya +Minyip +Mionske +Miowera +Mipaty +Mir Mirou +Mira +Mira Flores +Mira Lagos +Mira Loma +Mira Mesa +Mira Vista +Mira del Rio +Mirabeau +Mirabel +Mirabella +Mirabelle +Miracle +Miracle Mountain +Mirada +Miradera +Miradero +Mirador +Miraflores +Mirage +Miraggio +Miralo +Miramar +Miramar Park +Miramare +Miramonte +Miramontes +Miramontes Point +Miramount +Miranda +Miranda Green +Mirandy +Mirante +Mirasol +Mirassou +Miravalle +Mire +Mireille +Mireval +Mirfield +Miriam +Mirimar +Mirimichi +Mirin +Mirko +Mirkwood +Mirmar +Miro +Miroballi +Mirosa +Mirrabooka +Mirral +Mirrasou +Mirrielees +Mirrool +Mirror +Mirror Lake +Mirror Lakes +Mirror Pond +Mirschel +Miry +Mirycarr +Misbourne +Misbrooks Green +Miscoe Brook +Miscoe Hill +Mise +Mishawum +Miskin +Miss Anne +Missden +Missenden +Mission +Mission Bay +Mission Bell +Mission Blue +Mission Cielo +Mission College +Mission Creek +Mission Falls +Mission Glen +Mission Greens +Mission Hills +Mission Park +Mission Ridge +Mission Rock +Mission Square +Mission Trail +Mission Valley +Mission View +Mission Vineyard +Missionary +Mississippi +Mississippi Bar +Mississippi River +Missouri +Mist +Mist Trail +Mister +Mistflower +Misthaven +Mistic Harbour +Mistle +Mistler +Mistletoe +Mistletoe Spring +Mistley +Mistral +Mistress +Mistwood +Misty +Misty Brook +Misty Creek +Misty Dawn +Misty Falls +Misty Glade +Misty Glen +Misty Hill +Misty Hills +Misty Hollow +Misty Knoll +Misty Meadow +Misty Morning +Misty Mountain +Misty Ridge +Misty Woods +Mistyvale +Miswell +Mitala +Mitch Snyder +Mitcham +Mitchel +Mitchell +Mitchell Canyon +Mitchell Manor +Mitchell Ridge +Mitchells +Mitchells Chance +Mitchellville +Mitchie +Mitchison +Mitchler +Mitchley +Mitchs +Mitchum +Mitey Mite +Mitford +Mithering +Mitichell +Mitlon +Mitra +Mitre +Mitris +Mitscher +Mittabah +Mittel +Mitten +Mittendorf +Mittiamo +Mittman +Mitton +Mitumba +Mitzi +Mitzy +Mivo +Miwok +Mix Canyon +Mixes Hill +Mixnams +Mixon Brook +Miyuki +Mizar +Mizpah +Mizzen +Mliss +Moab +Moak +Moala +Moani +Moat +Moat Farm +Moat Hall +Moate +Moats +Mobberley +Mobbs +Mobeck +Moberly +Mobile +Mobley +Mobley Farm +Mobrey +Mobus +Mocabee +Mocassin +Mocatta +Moccasin +Moccasin Hill +Mocha +Mochel +Mocho +Mocine +Mock +Mockbeggar +Mocking Bird +Mockingbird +Mockingbird Hill +Mockingbird Ridge +Mockley Point +Mockridge +Moclips +Mococo +Moczygemba +Modaff +Modder +Moddison +Mode Wheel +Model +Model Farm +Model Farms +Modena +Modern Ice +Moders +Modesto +Modisto +Modoc +Modred +Modular +Modzelewski +Moe +Moehring +Moelfre +Moeller +Moen +Moeser +Moessner +Moffat +Moffats +Moffatt +Moffatts +Moffet +Moffett +Moffett Forge +Moffett Park +Moffitt +Moffitts +Mogador +Mogan +Mogden +Moggie +Mogila +Mohave +Mohawk +Mohawk River +Mohegan +Mohican +Mohican Park +Mohmmad Khan +Mohovy +Mohr +Mohwawk +Moir +Moira +Moiso +Moison +Moitoza +Moiyas +Mojave +Mokelumne +Mokelumne River +Mokelumne School +Mokema +Mokena +Mokera +Molair +Molaskey +Molasky +Molasses Run +Mold +Mole +Mole Hall +Mole Hill Green +Molehill Green +Molember +Moles +Molesey +Molesford +Molesworth +Molimo +Molina +Molinari +Molinaro +Molinart +Moline +Molino +Molino Reservoir +Molise +Molitas +Molitor +Moll +Mollands +Molle +Moller +Moller Ranch +Mollie +Mollison +Molloy +Molly +Molly Berry +Molly Millars +Mollymook +Molnar +Moloney +Molong +Molonglo +Molrams +Molteg +Molteno +Molter +Molton +Moltzen +Moluccana +Moly +Molyneaux +Molyneux +Momar +Mombri +Mommouth +Mon +Mona +Mona Park +Mona Vale +Mona Woods +Monacan +Monachus +Monaco +Monadnock +Monaghan +Monahan +Monaldi +Monalee +Monaltrie +Monamie +Monan +Monarch +Monarch Birch +Monarch Oak +Monarch Ridge +Monarch Vista +Monard +Monardo +Monaro +Monart +Monash +Monastary +Monastery +Monatiquot +Monaton +Moncado +Monck +Monckton +Moncktons +Monclar +Moncrief +Moncrieff +Moncton +Moncur +Moncure +Mond +Monda +Mondamin +Monday +Mondelli +Mondigo +Mondovi +Mondrian +Monee +Monega +Monegra +Monestary +Monet +Monetary +Moneterrey +Monetta +Monette +Money +Money Ash +Money Hill +Money Hole +Monfarville +Monferino +Monfort +Monfredo +Mongers +Mongomery +Monhegan +Monica +Monie +Monika +Monins +Monique +Monitor +Monivea +Monix +Monk +Monk Bridge +Monk Sherborne +Monkdowns +Monkery +Monkey Island +Monkfrith +Monkhams +Monkmead +Monks +Monks Hill +Monks Ings +Monksdale +Monksdown +Monksford +Monkswell +Monkswick +Monkswood +Monkton +Monktons +Monkville +Monkwood +Monmouth +Monn +Monna +Monnens +Monnett +Monnier +Monnow +Mono +Mono Lake +Monocacy +Monoco +Monogram +Monomeeth +Monomoy +Monona +Monongahela +Monoosnock +Monoponsan +Monowood +Monponset +Monponsett +Monro +Monroe +Monroe Duvall +Monroe Manor +Monrovia +Mons +Monsal +Monsall +Monsen +Monserat +Monserra +Monsignor Rooney +Monson +Mont +Mont Clare +Mont Croix +Mont Fern +Mont Sec +Montacute +Montafia +Montagu +Montague +Montair +Montaire +Montalban +Montalt +Montalto +Montalvin +Montalvo +Montammy +Montana +Montara +Montaro +Montauban +Montauk +Montaup +Montayne +Montazah +Montbatten +Montbelle +Montcalm +Montcastle +Montclair +Montclaire +Montclare +Montclare Lake +Montcourse +Montcurve +Monte +Monte Alegre +Monte Brazil +Monte Buena +Monte Carlo +Monte Cimas +Monte Cresta +Monte Cristo +Monte Linda +Monte Mar +Monte Maria +Monte Park +Monte Rio +Monte Rosa +Monte Sereno +Monte Sunset +Monte Veda +Monte Verde +Monte Villa +Monte Vista +Monte Vista Ridge +Monteagle +Montebello +Montecello +Montecillo +Montecito +Montecito Meadow +Monteclair +Montecrest +Montee +Montefiore +Monteforte +Montefrio +Montega +Montego +Montehill +Monteira +Monteith +Montelegre +Montelena +Montell +Montello +Montem +Montemura +Montenotte +Monteray +Monterery +Monterey +Monterey Estates +Monterey Frontage +Montern +Montero +Monterra +Monterrey +Montery +Montesano +Monteswood +Monteva +Montevalle +Montevarchi +Monteverde +Montevideo +Montevina +Montevista +Montewood +Montez +Montezuma +Montezuma Hills +Montfern +Montfield +Montford +Montfort +Montgomerie +Montgomery +Montgomery Run +Montgomery Village +Montgue +Montholme +Montibello +Monticelli +Monticello +Montiero +Montieth +Montilio +Montilla +Montmarte +Montmorenci +Montmorency +Montmouth +Montoclair +Monton +Montonfields +Montore +Montoro +Montour +Montoya +Montpelier +Montpellior +Montreal +Montrell +Montresor +Montridge +Montrose +Montross +Montserrat +Montvale +Montview +Montville +Monty +Montyville +Monument +Monument Corner +Monument Farm +Monument Hill +Monumental +Monush +Monycrower +Monza +Monzal +Mooculta +Moodie +Moodkee +Moody +Moody Slough +Mooer +Mooers +Mooki +Moolah +Moolanda +Moombara +Moomin +Moon +Moon Beam +Moon Hall +Moon Hill +Moon Lake +Moon Meadow +Moon Mountain +Moon Penny +Moon Point +Moon Ridge +Moon Shadow +Moon Valley Ranch +Moona +Moonachie +Moonah +Moonbeam +Moonbi +Moonbie +Moonbria +Moondani +Moondara +Moonedge +Moonen Bay +Mooney +Mooneys +Moonglow +Moonlight +Moonlight Hill +Moonlite +Moonraker +Moonrider +Moonrise +Moons +Moonsail +Moonsails +Moonshine +Moonstone +Moontree +Moor +Moor Allerton +Moor End +Moor Flatts +Moor Grange +Moor Green +Moor Hall +Moor Hey +Moor Knoll +Moor Mead +Moor Mill +Moor Park +Moor Side +Moora +Mooramba +Mooramie +Moorbottom +Moorbridge +Moorbrook +Moorby +Moorcroft +Moordale +Moore +Moore Creek +Moore Park +Moore Ranch +Moorebank +Mooredge +Moorefield +Moorefields +Moorehead +Mooreland +Moorend +Moores +Moores Hill +Moores Plains +Mooresfield +Mooreview +Moorfield +Moorfoot +Moorgate +Moorhayes +Moorhead +Moorheart Ridge +Moorhen +Moorhey +Moorhill +Moorhills +Moorhouse +Moorhurst +Moorilla +Moorina +Mooring +Moorings +Moorland +Moorlands +Moormead +Moormill +Moorpark +Moors +Moorsholme +Moorside +Moorsley +Moorsom +Moorton +Moortown King +Moorview +Moorville +Moorwood +Moos +Moose +Moose Hill +Moosehead +Mooseheart +Moosepac +Moosewood +Mope +Mopsick +Mora +Mora Glen +Morab +Morada +Moraga +Moraga Valley +Morahapa +Moraine +Moraine Hill +Moraine Hills +Moran +Morandi +Morani +Morano +Morant +Morants Court +Morar +Morat +Moravian +Moray +Morazan +Morcambe Bay +Morcom +Mordaunt +Mordecai Lincoln +Morden +Morden Hall +Morden Wharf +Mordente +Mordon +Mordor +Mordred +More +Morea +Moreau +Morecambe +Morecroft +Moree +Morehead +Morehouse +Moreing +Morela +Moreland +Moreland Green +Morelands +Morell +Morella +Morelli +Morelli Vista +Morello +Morello Heights +Morello Hills +Morello Park +Morelos +Morely +Moremead +Morement +Moren +Morenci +Morency +Moreno +Mores +Moresby +Moresdale +Moretaine +Moreton +Moreton End +Moretti +Morettis Ranch +Moretto +Morewood +Morewood Oaks +Morey +Morford +Morgal +Morgan +Morgan Days +Morgan Farm +Morgan Hill +Morgan Territory +Morgan Valley +Morgana +Morgans +Morgans Ridge +Morganston +Morgantine +Morganville +Morgaston +Mori +Moriac +Moriatry +Morice +Moriconi +Morie +Morieux +Moril +Morillon +Morin +Morin Heights +Morinda +Moring +Morini +Moris Point +Morison +Morisse +Moritz +Morken +Morlan +Morland +Morlands +Morley +Morley Clough +Morley Peel +Morley Wynyard +Morleys +Morlock +Morlot +Mormon +Mormon Island +Morna +Mornant +Mornigside +Morning +Morning Brook +Morning Dale +Morning Dew +Morning Dove +Morning Field +Morning Gate +Morning Glen +Morning Glory +Morning Meadow +Morning Mist +Morning Ride +Morning Spring +Morning Sun +Morning Time +Morning View +Morning Watch +Morning Wind +Morningbird +Morningdale +Morninghome +Morninglo +Morningmist +Morningside +Morningside Mountain +Morningstar +Mornington +Morningview +Morningwood +Moro +Morobe +Morocco +Morona +Moroney +Morotai +Morpeth +Morphett +Morpheus +Morphew +Morphou +Morrell +Morrell Cutoff +Morrell Mill +Morrene +Morrice +Morrie +Morril +Morrill +Morrington +Morris +Morris Fold +Morris Green +Morris Hill +Morris Park +Morris Pesin +Morris Phelps +Morris Plains +Morris Ranch +Morris Tongue +Morrisey +Morrish +Morrison +Morrison Canyon +Morrison Creek +Morrisse +Morrissee +Morrissette +Morrissey +Morrissey Service +Morristown +Morrisworth +Morritt +Morro +Morro Bay +Morro Vista +Morrow +Morrowfield +Morry +Mors +Morse +Morse Farm +Morse Glen +Morse Lake +Morse Lakes +Morseland +Morsemere +Morses Pond +Morsetown +Morshead +Morson +Mort +Mortain +Mortar +Morten +Mortensen +Mortenson +Morteyne +Mortfield +Mortham +Morthland +Mortimer +Mortimer Lewis +Mortimers +Mortlake +Mortlake High +Mortley +Morton +Morton Davis +Morton Hall +Morton Hill +Morton Park +Mortono +Mortonsberry +Mortuary +Moruben +Moruya +Morva +Morval +Morvan +Morvem +Morven +Morven Park +Morville +Morwell +Morwick +Morwood +Moryan +Mosaic +Mosby +Mosby Hollow +Moscato +Mosco +Moscow +Moseby +Mosedale +Mosefan +Mosegard +Mosel +Moselden +Moseldene +Moseley +Moseley Wood +Moselle +Mosely +Moser +Moses +Moses Hill +Moses Plat +Mosgrove +Mosher +Moshier +Mosholu +Mosier +Moslee +Mosley +Mosley Common +Mosman +Moss +Moss Bank +Moss Bower +Moss Bridge +Moss Brook +Moss Brow +Moss Garden +Moss Glen +Moss Grange +Moss Hall +Moss Hey +Moss Hill +Moss Hollow +Moss House +Moss Landing +Moss Oak +Moss Park +Moss Point +Moss Ranch +Moss Rock +Moss Side +Moss Vale +Moss Valley +Moss View +Mossbank +Mossberry +Mossbray +Mossbrook +Mossbury +Mosscreek +Mossdale +Mossfield +Mossford +Mossgate +Mossgiel +Mossglen +Mossgrove +Mossland +Mosslea +Mossley +Mossman +Mossmere +Mosso +Mossrock +Mosswood +Mossy Bank +Mossy Creek +Mossy Oak +Mossy Rock +Mostika +Moston +Moston Bank +Mostyn +Mosyer +Mota +Motcomb +Motcombe +Motcombe Farm +Mote +Motel +Mother Gaston +Mother Julia +Motherwell +Motley +Motney Hill +Motor +Motor City +Mott +Motta +Mottershead +Mottingham +Mottins +Mottisfont +Mottram +Mottrom +Motts +Motts Hill +Mouacdie +Mough +Moul +Mouldsworth +Moulin +Moulsham +Moulsham Copse +Moulsham Hall +Moulton +Moulton Park +Moultrie +Mounce +Mouncey +Mound +Mound View +Moundfield +Mounds +Moundsview +Moundview +Mounslow +Mount +Mount Zion +Mount Air +Mount Airey +Mount Airy +Mount Alventine +Mount Alvernia +Mount Annan +Mount Ararat +Mount Ash +Mount Auburn +Mount Bache +Mount Baker +Mount Bethel +Mount Blanc +Mount Blue +Mount Bovers +Mount Calvary +Mount Carmel +Mount Carmel Cemetery +Mount Carriage +Mount Castle +Mount Cedar +Mount Crest +Mount Culver +Mount Curve +Mount Daniel +Mount Darwin +Mount Day +Mount Dell +Mount Dew +Mount Diablo +Mount Diablo Scenic +Mount Duncan +Mount Eagle +Mount Echo +Mount Eden +Mount Edgcumbe +Mount Elam +Mount Ephraim +Mount Erin +Mount Etna +Mount Everest +Mount Everett +Mount Feake +Mount Foraker +Mount Forest +Mount Frazier +Mount George +Mount Gilead +Mount Glen +Mount Globe +Mount Grace +Mount Grove +Mount Hamilton +Mount Hamilton View +Mount Harmony +Mount Harry +Mount Hebron +Mount Henry +Mount Hercules +Mount Herman +Mount Hermon +Mount High +Mount Hill +Mount Holly +Mount Holyoke +Mount Hood +Mount Hope +Mount Horeb +Mount Ida +Mount Isabel +Mount Jackson Lockout +Mount Jackson Resort +Mount Jackson Trail +Mount Jasper +Mount Joy +Mount Kemble +Mount Kennedy +Mount Kenya +Mount King +Mount Kisco +Mount Lassen +Mount Laurel +Mount Lebanon +Mount Leneve +Mount Lewis +Mount Locust +Mount Logan +Mount Lyell +Mount Maclure +Mount Madonna +Mount Mc Kinley +Mount McKinley +Mount Misery +Mount Morris +Mount Nebo +Mount Nod +Mount Normandale +Mount Oak +Mount Olive +Mount Oliveira +Mount Olivet +Mount Olney +Mount Olympus +Mount Oso +Mount Palomar +Mount Park +Mount Paul +Mount Peller +Mount Pisgah +Mount Pleasant +Mount Pleasent +Mount Preston +Mount Prieta +Mount Prospect +Mount Quail +Mount Rainier +Mount Ridge +Mount Ridgeway +Mount Rock +Mount Royal +Mount Rushmore +Mount Saint Charles +Mount Saint Helena +Mount Shasta +Mount Skip +Mount Skirgo +Mount Sugarloaf +Mount Sunapee +Mount Tabor +Mount Tamalpais +Mount Taylor +Mount Tenaya +Mount Thabor +Mount Tom +Mount Umunhum +Mount Veeder +Mount Vernon +Mount Vickery +Mount View +Mount Vision +Mount Vista +Mount Wachusett +Mount Walley +Mount Washington +Mount Wayte +Mount Wellington +Mount Weske +Mount Whitney +Mount William +Mount Wilson +Mount Zephyr +Mount Zion +Mountabatten +Mountain +Mountain Ash +Mountain Bell +Mountain Canyon +Mountain Charlie +Mountain Dump +Mountain Estate +Mountain Gate +Mountain Heights +Mountain Home +Mountain Home Ranch +Mountain House +Mountain Lakes +Mountain Laurel +Mountain Lion +Mountain Meadow +Mountain Mist +Mountain Park +Mountain Quail +Mountain Ridge +Mountain Rock +Mountain Shadows +Mountain Spring +Mountain Springs +Mountain Top +Mountain Trails +Mountain Valley +Mountain View +Mountain View Ranch +Mountain Vista +Mountain Wood +Mountaindale +Mountains +Mountains Farm +Mountainside +Mountainview +Mountaire +Mountbatten +Mountbel +Mounters +Mountfield +Mountfitchet +Mountford +Mountfort +Mountgrove +Mounthaven +Mounthill +Mountnessing +Mounts +Mounts Pond +Mountview +Mountville +Mountwood +Moura +Mourfield +Mourning Dove +Mousehill +Moushill +Mouth of Monocacy +Moverly +Movers +Movida +Movie +Moville +Moving Water +Mow Halls +Mowatt +Mowbray +Mowden Hall +Mower +Mowera +Mowla +Mowle +Mowlem +Mowll +Mowry +Mowry School +Moxham +Moxhams +Moxley +Moxleys Ford +Moxom +Moxon +Moyarta +Moyengully +Moyer +Moyers +Moyes +Moylan +Moyne +Moynihan +Moyse +Moyser +Mozart +Mozden +Mrack +Mrs Macquarie +Msgr Jacobbe +Msgr. Shea +Mt Calvert +Mt Curve +Mt Hope +Mt Pisgah Farm +Mt Pleasant +Mt Prospect +Mt Sizer +Mt Vernon +Mt. Elam +Mt. Hope +Mt. Umunhum +Mt. Vernon +Mucciarone +Muccillo +Muchelney +Muchmore +Muckelemi +Mucking Hall +Muckingford +Mucklehany +Mud +Mud Gulley +Mud Lake +Mudd +Muddy +Muddy Branch +Muddy Pond +Mudge +Mudhurst +Mudies +Muehl +Muela +Mueller +Muender +Muerer +Muffets +Muffit +Muggeridge +Mugleston +Mugo +Muhammad Ali +Muhlenhardt +Muir +Muir Woods +Muirdown +Muirfield +Muirhead +Muirkirk +Muirkirk Meadows +Muirwood +Mukerji +Mulberry +Mulberry Bottom +Mulberry E +Mulberry Hill +Mulberry Mount +Mulberry Wood +Mulbring +Mulcahy +Mulcare +Mulcerns +Mulders +Muldoon +Muldrow +Mule +Mule Deer +Mule Lovers +Mulford +Mulga +Mulgoa +Mulgrave +Mulgray +Mulguy +Mulhall +Mulherin +Mulhern +Mulheron +Mulholland +Mulica +Muliner +Mulkern +Mull +Mullacre +Mullane +Mullarkey +Mullberry +Mullbrook +Mullen +Mullenderree +Mullens +Muller +Mulligan +Mullikin +Mullin +Mullins +Mullion +Mullon +Mulloy +Mullumbimby +Mulpus +Mulqueeney +Mulqueeny +Mulready +Mulroy +Mulry +Multiplex +Multon +Mulvey +Mulvihill +Mulvoy +Mulwaree +Mulyan +Mumford +Mums +Mun Kwok +Muncaster +Muncaster Mill +Munces +Muncey +Munch +Muncie +Muncy +Mund +Munda +Mundakal +Mundamatta +Mundania +Mundarrah +Munday +Mundays Borough +Munden +Munderah +Mundesley +Mundford +Mundin +Mundon +Mundowi +Mundy +Munford +Mungarra +Munger +Munger Farm +Mungerie +Mungo Park +Munhall +Munich +Municipal +Muniz Ranch +Munko +Munmorah +Munmurra +Munn +Munni +Munnings +Munnion +Munns +Munnumba +Munoora +Munro +Munroe +Munroe Hill +Munsee +Munsey +Munsgore +Munson +Munson Hill +Munstad +Munstead View +Munster +Munsterburg +Munter +Munton +Munyan +Munyang +Munz +Muraban +Mural +Muraoka +Murata +Murcer +Murchia +Murchison +Murcia +Murco Mill +Murcott +Murdoch +Murdock +Murdstone +Murfield +Murguia +Muricatia +Muriel +Murieston +Murieta +Murieta South +Murietta +Murillo +Murkand +Murlagan +Murlett +Murley +Murmansk +Murnane +Muroc Lake +Muron +Muroney +Murphy +Murphy Crossing +Murphy Hill +Murphy Lake +Murphy Springs +Murphys +Murrabin +Murrain +Murralong +Murrami +Murrandah +Murray +Murray Farm +Murray Hill +Murray Hulbert +Murray Park +Murray Point +Murray Ranch +Murray Ranch Access +Murray Rose +Murrays +Murre +Murrel Hill +Murrell +Murrells +Murrey +Murrieta +Murrin +Murriverie +Murrobah +Murrphy +Murrua +Murrumbidgee +Murrumburrah +Murry +Murry Hill +Mursley +Murston +Murtha +Murthering +Murton +Murtwell +Muru +Murvey +Murwillubah +Murwillumbah +Murwood +Murylu +Musante +Musard +Musbury +Muscat +Muscatatuck +Muschamp +Muscharry +Muscovy +Muse +Museum +Museum Campus +Musgnug +Musgrave +Musgrove +Mushroom +Mushtown +Music +Music Hall +Musick +Musicmaster +Musico +Musjid +Musk +Muskeego +Muskegon +Musket +Musket Ball +Musketaquid +Muskett +Muskham +Muskie +Muskogee +Muskrat Pond +Musley +Muslin +Musquashicut +Mussenden +Mussey Brook +Mustang +Mustang Hill +Mustard +Mustard Mill +Musterfield +Musto +Muston +Muswell +Muswell Hill +Muswell Hill Pages +Muswell Hill Woodside +Muswellbrook +Mutch +Muth +Mutilod +Mutrix +Muttama +Mutton +Mutton Hall +Mutton Hollow +Muttong +Muttontown +Muttontown Eastwoods +Mutual +Mux +Muybridge +Muzzey +Muzzy +My +My Mollies Pride +MyEye +Myahgah +Myall +Myallie +Myalora +Myamba +Myano +Myatt +Mycenae +Mycumbene +Myddelton +Myddleton +Mydell +Mydellton +Myee +Myer +Myers +Myers Farm +Myerson +Myette +Mygrove +Myhre +Mykala +Myler +Myles +Myles View +Mylinda +Mylith Park +Mylnar +Mylne +Mylod +Mylon +Mylott +Mymms +Mynchen +Mynor +Myola +Myoora +Myosotis +Myotis +Mypolonga +Myra +Myradell +Myran +Myrdle +Myriah +Myrick +Myrle +Myrman +Myrna +Myro +Myron +Myrrh +Myrte +Myrtle +Myrtle Beach +Myrtle Grove +Myrtle Leaf +Myrtle Park +Myrtle Vista +Myrtlebank +Myrtledale +Myrtledene +Myrtlewood +Myson +Mysore +Mystery Spot +Mystic +Mystic Lake +Mystic River +Mystic Valley +Mystic View +Mystique +Mytchett +Mytchett Lake +Mytchett Place +Mytham +Mytton +Myuna +N Abbey Glenn +N Abbotsford +N Aber +N Aberdeen +N Abingdon +N Acorn +N Acres +N Ada +N Adams +N Addison +N Adelaide +N Adolphus +N Aglen +N Ahrens +N Ahwahnee +N Airlite +N Alameda +N Alaska +N Albany +N Albemarle +N Albert +N Alder +N Aldine +N Alfred +N Algonquin +N Alleghany +N Allen +N Althea +N Amberley +N Anderson +N Andoa +N Andover +N Anthon +N Anvil +N Apache +N Apple Hill +N Aqueduct +N Aralia +N Arbogast +N Arbor +N Arcade +N Archer +N Ardmore +N Argyle +N Arizona +N Arkwright +N Arlington +N Arlington Heights +N Arlington Mill +N Arlington Ridge +N Arm +N Armistead +N Arona +N Arrowhead +N Artesian +N Arthur +N Arundel +N Asbury +N Ascan +N Ash +N Ashbury +N Ashby +N Ashland +N Ashton +N Astor +N Atlanta +N Atlantic +N Attleboro +N Aurora +N Austin +N Avalon +N Avon +N Avondale +N Babbit +N Babcock +N Bailey +N Baker +N Baldwin +N Ballou +N Balmiere +N Bank +N Barclay +N Barkley +N Barrett +N Barrington +N Barrington Woods +N Barry +N Barsumian +N Bartlett +N Barton +N Bassford +N Bates +N Bay +N Bayles +N Baynard +N Bayview +N Beach +N Beaumont +N Bedford +N Beech +N Beers +N Belair +N Belgrade +N Bell +N Bellmore +N Belmont +N Bend +N Bereman +N Bernard +N Berteau +N Bertha +N Betty +N Beverly +N Beverwyck +N Bingham +N Birch +N Birchdale +N Birchwood +N Bishop +N Bissell +N Bittner +N Blackburn +N Blackhawk +N Blanchard +N Blanding Woods +N Bleeker +N Bloomingdale +N Bloomington +N Bluebonnet +N Bluemont +N Bobwhite +N Bolingbrook +N Bon Aire +N Bond +N Bonnie +N Boo +N Boro +N Boston +N Bosworth +N Bothwell +N Boulder +N Bourndale +N Boynton +N Bradford +N Bradley +N Brainard +N Braintree +N Branch +N Brandon +N Brandywine +N Brashares +N Braymore +N Brentwood +N Brewer +N Briarcliff +N Briarwood +N Bridge +N Bridgeport +N Bridle Trail +N Briggs +N Brightway +N Bristol +N Brittany +N Broad +N Broadview +N Broadway +N Brockway +N Brompton +N Brook +N Brookdale +N Brooks +N Brookshore +N Brookside +N Brookwood +N Broome +N Brown +N Browning +N Bruner +N Brunson +N Bryan +N Buchanan +N Buckeye +N Buckhout +N Budd +N Buell +N Buesching +N Buffalo +N Buffalo Grove +N Buffalo Run +N Burling +N Burlington +N Burnett +N Burning Bush +N Burr +N Burtis +N Busse +N Butehorn +N Butterfield +N Cabin +N Cady +N Calhoun +N California +N Callahan +N Callero +N Calvert +N Cambridge +N Camden +N Cameron +N Camp Meade +N Campbell +N Canal +N Canfield +N Capitol +N Cardinal +N Carillon +N Carlin Springs +N Carll +N Carlton +N Carlyle +N Caroline +N Carpenter +N Carter +N Caryl +N Cass +N Cassell +N Catalpa +N Cathedral +N Catherine +N Cavender +N Cawdor +N Cedar +N Celia +N Center +N Central +N Central Park +N Centre +N Century +N Chalmers +N Chamber +N Chambliss +N Chamlin +N Champlain +N Channing +N Chapel +N Chapel Hill +N Charles +N Charlotte +N Charter +N Charter Point +N Chase +N Chatsworth +N Chelmsford +N Chelsea +N Cherry +N Cherry Grove +N Cheryl +N Chesapeake +N Chester +N Chestnut +N Chevy Chase +N Chicago +N Chicora +N Chicot +N Chippewa +N Christiana +N Christie +N Church +N Churchill +N Circle +N Claremont +N Clarence +N Clarendon +N Clarice +N Clark +N Clay +N Cleaver +N Cleveland +N Cliff +N Clifford +N Clifton +N Clinton +N Clover +N Club House +N Clyde +N Coach +N Cogswell +N Cohansey +N Cold Mill +N Coldspring +N Colfax +N College +N College Park +N Collins +N Colombian +N Colombus +N Colonial +N Colorado +N Columbia +N Columbine +N Columbus +N Commons +N Commonwealth +N Concord +N Connecticut +N Conrad +N Conservatory +N Constitution +N Converse +N Cook +N Cooper +N Copper Beach +N Corona +N Cortez +N Cottage +N Cottenet +N Countryside +N County Farm +N County Line +N Court +N Court House +N Cowley +N Crabtree +N Cranberry +N Crane +N Crescent +N Crest +N Crestview +N Croname +N Crosby +N Cross +N Crystal +N Crystal Beach +N Culpeper +N Cumberland +N Cumnor +N Custis +N Cutler +N Cuyler +N Cypress +N Cypress Point +N Dairy +N Dale +N Dallas +N Damen +N Danforth +N Daniel +N Daniels +N Dante +N Danube +N Danville +N Darrell +N Dartmoor +N Dato +N Davisson +N Dawson +N Day +N Dayton +N Dean +N Dearborn +N Dearing +N Dearman +N Dee +N Deep Lake +N Deer Lake +N Deer Park +N Deer Run +N Deerpath +N Delaplaine +N Delaware +N Delphia +N Demarest +N Denal +N Denberry +N Deneen +N Denise +N Dennis +N Denton +N Derby +N Derbyshire +N Des Plaines River +N Desplaines +N Detroit +N Devon +N Dewey +N Dexter +N Diamond Lake +N Diane +N Dickenson +N Dickerson +N Dickinson +N Dieter +N Dinwiddie +N Dittmar +N Division +N Dominick +N Donald +N Donelson +N Dorchester +N Douglas +N Dover +N Dovington +N Dowagiac +N Dumbarton +N Dunlap +N Dunton +N Dupont +N Dutcher +N Dutton +N Dwiggins +N Dwight +N Dymond +N Dyre +N Eagle +N Eagle Lake +N Earl +N Early +N East +N East Brook +N East Lake Shore +N East River +N Eastern +N Easton +N Eastwood +N Echo +N Echo Lake +N Eckar +N Eden +N Edgelawn +N Edgemond +N Edgemont +N Edgewood +N Edie +N Edison +N Edmer +N Edmore +N Edward +N Ela +N Elberta +N Elbridge +N Elchester +N Elgin +N Elizabeth +N Elk +N Elk Grove +N Ellen +N Ellis +N Ellison +N Ellsworth +N Ellyn +N Elm +N Elma +N Elmer +N Elmhurst +N Elmwood +N Elodie +N Elroy +N Elston +N Emerald +N Emerson +N Emery +N Emmett +N Emroy +N Enchanted +N Englewood +N English +N Eola +N Erie +N Ernest +N Essex +N Essington +N Ethel +N Etna +N Euclid +N Eugene +N Eustis +N Evanslawn +N Evanston +N Evarts +N Everett +N Evergreen +N Ewing +N Exmoor +N Fairfax +N Fairfield +N Fairlawn +N Fairview +N Fairway +N Falls +N Farrell +N Farrington +N Farview +N Faxon +N Faye +N Fayette +N Fenview +N Fenwick +N Ferdinand +N Fernandez +N Ferndale +N Fernwood +N Ferris +N Ferry +N Ferry Point +N Field +N Fillmore +N Finn +N Fire +N Firestone +N Fisk +N Flake +N Flamingo +N Flanders +N Fletcher +N Florence +N Florida +N Florida Grove +N Floyd +N Ford +N Fordham +N Forest +N Forest Garden +N Forest Glen +N Forest Lake +N Forest Preserve +N Forestview +N Forrest +N Fort Myer +N Four Mile Run +N Fox +N Fox River +N Foxtail +N Frank +N Franklin +N Franks +N Franzen +N Frazier +N Frederick +N Freemont +N Freeway +N Fremont +N Fremont Center +N French +N Friendly +N Frontage +N Frontenac +N Frontier +N Fry +N Fullerton +N Fulton +N Furman +N Gables +N Gaillard +N Galena +N Galesburg +N Galveston +N Gannon +N Garden +N Gardiner +N Garfield +N Garland +N Garnsey +N Gary +N Gate +N Gates +N Gateway +N Gatewood +N Gem +N Genesee +N Geneva +N George Mason +N Gerald +N Geraldine +N Gerard +N Gibbons +N Gibson +N Gifford +N Gilbert +N Gilmer +N Ginger Creek +N Gladden +N Gladstone +N Glebe +N Glen +N Glendale +N Glenmore +N Glenn +N Glenview +N Glenwood +N Glover +N Golden +N Goodwin +N Gordon +N Grace +N Granada +N Grand +N Grand Monde +N Grandin +N Grandview +N Grant +N Graylynn +N Grayson +N Greeley +N Green +N Green Bay +N Green Meadows +N Green Valley +N Greenbrier +N Greenbush +N Greencastle +N Greene +N Greenfield +N Greenmount +N Greenview +N Greenwich +N Greenwood +N Gresham +N Griffith +N Griggs +N Grotto +N Grove +N Gurney +N Guyer +N Haddow +N Hager +N Haig Point +N Hale +N Haledon +N Ham Lake +N Hamilton +N Hamlin +N Hamline +N Hampden +N Hampshire +N Hampton +N Hancock +N Hanover Hills +N Hansen +N Harbor +N Harby +N Harding +N Harlem +N Harold +N Harriet +N Harrison +N Hart +N Hartford +N Hartshorne +N Harvard +N Harvey +N Haskins +N Haverhill +N Hawk +N Hawthorn +N Hawthorne +N Hayes +N Hazel +N Hazel Crest +N Hazelton +N Healy +N Heather +N Hebbard +N Hedgewood +N Heights +N Helgesen +N Hemlock +N Hempstead +N Henderson +N Henry +N Herbert +N Hereford +N Heritage +N Herky +N Hermitage +N Herndon +N Herschel +N Hess +N Hiawatha +N Hickory +N Hickory Hill +N Hickory Nut Grove +N High +N High Ridge +N Highcrest +N Highland +N Highview +N Highway +N Highwood +N Hilandale +N Hill +N Hillcrest +N Hillfarm +N Hillside +N Hillview +N Hobart +N Holder +N Hollins Ferry +N Hollister +N Holly +N Holton +N Homan +N Home +N Homeland +N Honey +N Honore +N Hooker +N Hope +N Horatio +N Horners +N Hotz +N Hough +N Howard +N Howe +N Howell +N Hoyne +N Hoyne Av +N Hubbard +N Hudson +N Huffman +N Humboldt +N Humphrey +N Hundley +N Hunter Ridge +N Hunting Valley +N Huntington +N Hurdale +N Huron +N Huston +N Hythe +N Idaho +N Illinois +N Ilwaco +N Imboden +N Indian +N Indiana +N Inglewood +N Innsbruck +N International +N Ionia +N Iowa +N Irene +N Irving +N Island +N Ivanhoe +N Iverson +N Ivy +N J RR +N Jackson +N Jacksonville +N Jacob +N James +N Jameson +N Jane +N Janssen +N Jason +N Jasper +N Jay +N Jean +N Jefferson +N Jensen +N Jerome +N Jersey +N Jerusalem +N Jessie +N John +N John Marshall +N Johnson +N Joliet +N Jones +N Jordan +N Joyce +N Jugtown +N Julian +N Juliet +N Juniper +N Justine +N Kane +N Kansas +N Karlov +N Kaspar +N Kasson +N Kearns +N Kearsarge +N Keating +N Kedvale +N Kedzie +N Keeler +N Keene +N Kelsey +N Kelso +N Kemman +N Kemper +N Kendall +N Kenilworth +N Kenmore +N Kennard +N Kennebec +N Kennedy +N Kennesaw +N Kenneth +N Kennicott +N Kennison +N Kenosha +N Kensington +N Kent +N Kenton +N Kentucky +N Keokuk +N Keota +N Kerbs +N Kercheval +N Keston +N Ketay +N Kewanee +N Key +N Keys +N Keystone +N Kilbourn +N Kilburn +N Kildare +N Kilpatrick +N Kimball +N Kimberly +N Kinderkamack +N King +N Kings +N Kingsbury +N Kingsdale +N Kingsway +N Kinzua +N Kiona +N Kirby +N Kirkwood +N Kittson +N Knight +N Knollwood +N Knox +N Kohlman +N Kolin +N Kolmar +N Konner +N Kostner +N Kramer +N Krueger +N Kruger +N L Johnson +N La Fox +N Lacey +N Lafayette +N Laflin +N Laird +N Lake +N Lake Arlington +N Lake Park +N Lake Shore +N Lake Zurich +N Lakeland +N Lakeshore +N Lakeside +N Lakeview +N Lakewood +N Lama +N Lamon +N Lancaster +N Landau +N Landers +N Langley +N Lansing +N Laporte +N Laramie +N Larch +N Larkspur +N Larned +N Larrabee +N Larrimore +N Las Casas +N Lasalle +N Latham +N Latrobe +N Laurel +N Laurine +N Lavergne +N Lawler +N Lawn +N Lawndale +N Lawrence +N Le Mai +N Leader +N Leamington +N Leavenworth +N Leavitt +N Lebanon +N Leclaire +N Lee +N Legett +N Legion +N Lehigh +N Leibert +N Leisure World +N Lemai +N Lemon +N Lemont +N Lenhome +N Lenore +N Lenox +N Lenwood +N Leona +N Leonard +N Leoti +N Lerisa +N Leroy +N Lester +N Leswing +N Lewis +N Lexington +N Lexow +N Liano +N Liberty +N Lieb +N Lightfoot +N Lilac +N Lillian +N Lincoln +N Lincolnway +N Lind +N Linda +N Linden +N Linder +N Linwood +N Lister +N Little Falls +N Littleton +N Livermore +N Liverpool +N Livingston +N Lochleven +N Locke +N Lockwood +N Locust +N Loleta +N Lombard +N Lombardy +N London +N Long +N Long Beach +N Long Cove +N Long Meadows +N Longcross +N Longfellow +N Longmeadow +N Longview +N Longwood +N Lookout Pointe +N Loomis +N Loop +N Lorang +N Lorcom +N Lord +N Lorel +N Loring +N Loron +N Lotus +N Loucks +N Louis +N Louise +N Lovejoy +N Lowell +N Lucerne +N Ludlam +N Luella +N Lullo +N Luna +N Lund +N Lundy +N Luther +N Lyle +N Lynch +N Lynn +N Lytle +N Macarthur +N Mack +N Mackubin +N Madison +N Magazine +N Magnet +N Magnolia +N Magoun +N Maid Marion +N Maidstone +N Main +N Major +N Malden +N Mall +N Mallard +N Mallory +N Manchester +N Mandell +N Mango +N Manhattan +N Manila +N Mankato +N Manor +N Mansards +N Mansfield +N Mansion +N Manton +N Maple +N Maplewood +N Marcey +N Maria +N Marilyn +N Marine +N Marion +N Market +N Markham +N Marmora +N Marsha +N Marshfield +N Martha +N Martha Lake +N Martin +N Martine +N Martling +N Marybrook +N Maryknoll +N Maryland +N Marywood +N Mason +N Massasoit +N Matteson +N Matthews +N Maud +N Mavis +N May +N Mayfield +N Mayflower +N Maywood +N Mc Clellan +N Mc Cook +N Mc Crea +N Mc Lean +N Mc Leod +N Mc Vicker +N McAlpin +N McCarron +N McKinley +N McKnight +N McLean +N McLindon +N McVicker +N Meacham +N Meade +N Meadow +N Meadow Lake +N Meadowbrook +N Medford +N Medina +N Melody +N Melrose +N Melvina +N Menard +N Mendell +N Mendota +N Menominee +N Mercer +N Merchants +N Meredith +N Meridian +N Merrill +N Merrimac +N Mesa +N Miami +N Michigan +N Middle +N Middleton +N Middletown +N Midfield +N Midland +N Midlothian +N Midmar +N Mildred +N Military +N Mill +N Mill Creek +N Millpage +N Miltmore +N Milton +N Milwaukee +N Mineral Springs +N Minnehaha +N Minnetonka +N Minnisink +N Minntonka +N Mississippi +N Mississippi River +N Mitchell +N Mobile +N Moetz +N Mohawk +N Moki +N Monitor +N Monroe +N Mont Clare +N Montague +N Montana +N Montclair +N Montclare +N Monterey +N Montgomery +N Monticello +N Moody +N Moore +N Moorman +N Moreland +N Morey +N Morgan +N Morris +N Morrison +N Mortimer +N Moselle +N Mound +N Mountain +N Mozart +N Muirfield +N Mulligan +N Munn +N Mura +N Murray +N Myrtle +N Nagle +N Nancy +N Naper +N Naperville Wheaton +N Naples +N Napoleon +N Narragansett +N Nash +N Nashotah +N Nashville +N Nassau +N Natchez +N National +N Natoma +N Navajo +N Navarre +N Naylor +N Neenah +N Nelly Custis +N Nelson +N Neltnor +N Neola +N Nettleton +N Neva +N New Britton +N New England +N New Hampshire +N New York +N Newark +N Newbridge +N Newburg +N Newcastle +N Newgard +N Newland +N Newport +N Niagara +N Niagra +N Niami +N Nicholas +N Nichols +N Nickerson +N Nicolet +N Nina +N Nixon +N Noble +N Nokomis +N Nolton +N Nora +N Nordica +N Norman +N Normandy +N North Branch +N North Park +N Northampton +N Northbridge +N Northcott +N Northwest +N Norton +N Norwood +N Nottingham +N Noyes +N Nybro +N Oak +N Oak Beach +N Oak Hill +N Oak Hills +N Oak Knoll +N Oak Park +N Oakhurst +N Oakland +N Oaklawn +N Oakley +N Oakmont +N Oakview +N Oakwood +N Obrien +N Ocean +N Oceanside +N Oconto +N Octavia +N Ode +N Odell +N Ogden +N Ohio +N Oketo +N Olcott +N Old Barrington +N Old Bridge +N Old Creek +N Old Dominion +N Old Farm +N Old Hicks +N Old Mill +N Old Rand +N Old School +N Old Wick +N Oleander +N Oliphant +N Olive +N Olmsted +N Oltendorf +N Olympia +N Onarga +N Oneida +N Ontario +N Opal +N Orange +N Orchard +N Oriole +N Orleans +N Osage +N Osceola +N Oshkosh +N Oswego +N Otsego +N Ott +N Ottawa +N Overhill +N Overlook +N Owen +N Owens +N Oxford +N Ozanam +N Ozark +N Pacific +N Page +N Panama +N Paris +N Park +N Parke +N Parker +N Parkside +N Pascal +N Passaic +N Patrick +N Patrick Henry +N Patton +N Paulina +N Pawnee +N Paxton +N Payne +N Peach +N Peachtree +N Pearl +N Peary +N Peck +N Pecos +N Pegram +N Pelham +N Pembroke +N Penfield +N Pennington +N Pennsylvania +N Penny +N Peoria +N Peotone +N Pequanneck +N Perkins +N Pershing +N Pet +N Peyton +N Pfingsten +N Pheasant +N Phelps +N Pickett +N Piedmont +N Pierce +N Pierre +N Pima +N Pine +N Pine Grove +N Pinecrest +N Pinehurst +N Pinetree +N Pioneer +N Pipe Mill +N Pitt +N Pittsburgh +N Plainfield +N Plandome +N Plantation +N Pleasant +N Plum Grove +N Plumwood +N Plymouth +N Pocomoke +N Pocono +N Poe +N Point +N Pollard +N Ponchartrain +N Pond +N Pond Shore +N Pondview +N Pontiac +N Poplar +N Porchuck +N Porter +N Potawatomie +N Potomac +N Powhatan +N Prague +N Praire +N Prairie +N Prater +N Prescott +N President +N Preston +N Prestwick +N Prince Crossing +N Prince Frederick +N Prindle +N Prior +N Prologis +N Prospect +N Prospect Manor +N Prosperity +N Pryor +N Pulaski +N Putnam +N Quaker +N Quantico +N Quarry +N Quebec +N Queen +N Queens +N Quesada +N Quincy +N Quinn +N Quintana +N Race +N Racine +N Raddant +N Radford +N Railroad +N Rainbow +N Raleigh +N Ramapo +N Rammer +N Ramona +N Rand +N Randall +N Randolph +N Randolphville +N Raven +N Ravenswood +N Ravine +N Raymond +N Raynor +N Recreation +N Red Coat +N Reform +N Regency +N Regent +N Rensselaer +N Reserve +N Reta +N Retford +N Reuter +N Reynolds +N Rhett +N Rhodes +N Richmond +N Ridge +N Ridgeland +N Ridgemoor +N Ridgeview +N Ridgeway +N Ridgewood +N Ripley +N River +N Rivershore +N Riverside +N Riverview +N Riverwoods +N Riviera +N Rivoli +N Robert +N Robert Damm +N Roberta +N Roberts +N Robin +N Robinson +N Rochester +N Rock Cove +N Rock Spring +N Rockingham +N Rockledge +N Rockwell +N Rocky Top +N Rocky Wood +N Rogers +N Rohallion +N Rohde +N Rohlwing +N Roland +N Rolfe +N Rondeau Lake +N Roosevelt +N Root +N Rose +N Rosedale +N Roselle +N Rosemary +N Rosetree +N Rosewell +N Rossell +N Rosser +N Rosslyn +N Rowling +N Roy +N Royal +N Royal Oaks +N Rumple +N Rush +N Russell +N Ruth +N Rutherford +N Ryde +N Sacramento +N Saddle Brook +N Saddlebrook +N Saint Asaph +N Saint Marys +N Salem +N Salk +N Salt Creek +N Sandra +N Sangamon +N Santee +N Sapphire +N Saratoga +N Sauganash +N Sawyer +N Sayre +N Scherer +N Schletti +N Schmidt +N Schoenbeck +N School +N Schrader +N Schultz +N Schuneman +N Scotch Plains +N Scott +N Scoville +N Sedgwick +N Seebert +N Seeley +N Seminary +N Seminole +N Serven +N Service +N Seymour +N Shaddle +N Shady Oaks +N Shagbark +N Shelby +N Sheldon +N Shelley +N Shenandoah +N Sheridan +N Sherman +N Shermer +N Sherwood +N Shore +N Sibley +N Silver +N Silverlake +N Simonds +N Simpson +N Sioux +N Skokie +N Skyline +N Sleight +N Sloan +N Smith +N Smythe +N Snelling +N Snuff Valley +N Somerset +N Sott +N Sound Beach +N South Elgin +N South Park +N Southport +N Southwood +N Spaulding +N Spencer +N Spokane +N Spring +N Spring Garden +N Springfield +N Springinsguth +N Springwood +N Spruce +N Suffolk +N Summit +N Sumner +N Sunset +N Suthers +N Sutton Lake +N Swift +N Sycamore +N Sylvan +N Sylvander +N Sylvester +N Syndicate +N Syracuse +N Tabler +N Tacoma +N Tahoma +N Talcott +N Tall Oaks +N Talmadge +N Talman +N Tamarack +N Tappan Landing +N Tatge +N Taylor +N Temperance +N Terrace +N Terramere +N Terre +N Terrill +N Thatcher +N Thomas +N Thompson +N Thorndale +N Thorsen +N Throop +N Tippecanoe +N Tonty +N Topanga +N Toronto +N Tower +N Tracy +N Tree +N Trenton +N Trinidad +N Tripp +N Trivett +N Troop +N Troy +N True +N Trumbull +N Tuckahoe +N Turf Hill +N Turtle Bay +N Tyler +N Tyson +N Uhle +N Underwood +N Union +N University +N Upland +N Upshur +N Upton +N Utah +N Utica +N Vacation +N Vail +N Valley +N Van Brunt +N Van Buren +N Van Dien +N Van Dorn +N Van Dyke +N Van Nortwick +N Vance +N Vanderburg +N Vanderpool +N Varner +N Veitch +N Venable +N Venice +N Ventura +N Veprek +N Verde +N Vermillion +N Vermont +N Vernon +N Verrill +N Vest +N Victoria +N View +N Vigo +N Villa +N Village +N Vine +N Violet +N Virginia +N Vista +N Vivyen +N Wabash +N Wabasso +N Wacouta +N Wade +N Wagner +N Waiola +N Wakefield +N Walden +N Waldinger +N Walkup +N Waller +N Walnut +N Walsh +N Wantagh +N Ward +N Warner +N Warren +N Warrick +N Warrington +N Warwick +N Washington +N Washtenaw +N Wasson +N Watchung +N Water +N Waterford +N Waterman +N Waters Edge +N Waukegan +N Waukesha +N Waveland +N Wayne +N Wayzata +N Wear +N Weatherstone +N Webster +N Wedgewood +N Weed +N Weide +N Weigel +N Weiland +N Wellington +N Wells +N Wellwood +N Werden +N Wespark +N West +N West Brook +N Westchester +N Western +N Westgate +N Westland +N Westlawn +N Westminster +N Westmore +N Westmoreland +N Weston +N Westward Ho +N Westwood +N Wheaton +N Wheeler +N Wheeling +N Whipple +N Whispering Hills +N Whitcomb +N White +N White Pine +N Whitman +N Wicker Park +N Wickom +N Widgeon +N Wieland +N Wiggs +N Wilder +N Wildrose +N Wildwood +N Wiley +N Wilke +N Will +N Willard +N Wille +N William +N Williams +N Williams Park +N Williamsburg +N Willis +N Williston +N Willow +N Wilmette +N Wilmot +N Wilshire +N Wilson +N Wilton +N Winchester +N Windell +N Windham +N Windhorst +N Winding +N Windsor +N Winfield +N Winifred +N Winnebago +N Winston +N Winter +N Winthrop +N Wisconsin +N Wisner +N Wolcott +N Wolf +N Wood +N Woodard +N Woodbine +N Woodbridge +N Wooddale +N Woodgate +N Woodhull +N Woodland +N Woodlawn +N Woodley +N Woodrow +N Woodside +N Woodstock +N Woodward +N Woodwork +N Worth +N Wright +N Wulff +N Wyndwood +N Wynstone +N Wyoming +N Yale +N York +N Young +N Youngs +N Yucatan +N Zoranne +N du Bois +N la Crosse +N la Londe +N. Irving +N. Oak +N. Oliver +N. School +N. Whisman +NASA +NE Allen +NE Arthur +NE Benjamin +NE Buchanan +NE Circle +NE Cleveland +NE Columbia +NE Garfield +NE Grand +NE Greens Crossing +NE Hayes +NE Highland +NE Holcomb +NE Hollywood +NE Howard +NE Industrial +NE Jackson +NE Jambor +NE Lincoln +NE Madison +NE Main +NE Odell +NE Ohland +NE Pierce +NE Plaza +NE Polk +NE Roosevelt +NE Taft +NE Taylor +NE Tyler +NE Ulysses +NE University +NE Van Buren +NE Wilson +NW Centennial +NW Circle +NW Diagonal +NW Frontage +NW Holcomb +NW Walker +NY Orphan AYM +Na Wa Ta +Nab +Nabbot +Nabbott +Nabbs Creek +Nabiac +Nabnasset +Nabor +Nabscot Brook +Naburn +Nace +Nacona +Nacy Lee +Nada +Nadeau +Nadel +Naden +Nadia +Nadin +Nadina +Nadine +Nadotti +Nagareda +Nagel +Nagle +Naglee +Nagog +Nagog Hill +Nags Head +Nagy +Nahant +Nahanton +Nahatan +Nahmens +Nahua +Naida +Naify +Nails +Nairana +Nairdwood +Nairn +Naisby +Naismith +Najm +Najoles +Nalders +Naldretts +Nalisty +Nall +Nallada +Nalley +Nallhead +Nalls +Nalya +Namakagan +Namassin +Namba +Nambour +Nambucca +Namdac +Namdre +Namekagon +Nameoke +Namitjira +Namleps +Namoi +Namona +Nampeyo +Namsan +Namton +Namur +Nan +Nan King +Nan Mill +Nan Nook +Nan Tucks +Nana +Nana Glen +Nana Russell +Nanak +Nanapashamet +Nanbaree +Nancarles +Nancarrow +Nance +Nancemond +Nancia +Nancy +Nancy Ann +Nancy Vallera +Nancye +Nandell +Nandi +Nandina +Nanepashemet +Nanette +Nangana +Nangar +Nangreave +Nangreaves +Nanita +Nankin +Nanlee +Nann +Nanna +Nannet +Nanny Goat +Nanong +Nanowie +Nansen +Nanset +Nansmoss +Nant +Nantasket +Nantes +Nanti +Nanticoke +Nantucket +Nantwich +Nantwick +Nanuet +Naoi +Naoma +Naomi +Naomi Cochran +Naoroji +Napa +Napa Nook +Napa River +Napa Valley +Napa Valley Corporate +Napco +Naper +Naperville +Napier +Naple +Naples +Napleton +Napolean +Napoleon +Napoli +Napper +Nappsbury +Napsbury +Narada +Naranga +Naranganah +Naranghi +Naranja +Narbeth +Narbonne +Narborough +Narbuth +Narcissius +Narcissus +Narcot +Nardango +Nardell +Nardi +Nardis +Nardone +Nardoo +Nare +Nareb +Naree +Narellan +Narelle +Nares +Naretha +Narford +Nargong +Nariel +Narla +Narland +Naro +Naromake +Naroo +Narooma +Narrabeen +Narrabri +Narraganset +Narragansett +Narray +Narromine +Narromore +Narrow +Narrowbush +Narrowleaf +Narrows +Narumson +Narumsunk +Narvaez +Narvick +Narvik +Narwee +Narwood +Nascoby +Nascot +Nascot Wood +Naseby +Nash +Nash Lee +Nash Memorial +Nash Mills +Nasha Way +Nashawtuc +Nashdom +Nashenden +Nashenden Farm +Nashgrove +Nashoba +Nashua +Nashville +Nasmyth +Nason +Nason Hill +Nasonville +Nasreen +Nassau +Nassau Terminal +Nasse +Nassington +Nast +Nasturtium +Nata +Natahala +Natal +Natalie +Natalie Joy +Natalye +Nataqua +Natasha +Natchez +Nate Nutting +Natelli Woods +Nately +Nathalee +Nathalie +Nathan +Nathan Hale +Nathaniel +Nathaniel Guild +Nathaniel Oaks +Nathans +Nathanson +Nathanson Creek +Nathelle +Nathhorst +Nathorst +Natia Manor +Natick +Natick Mall +National +National Business +National Harbor +National Park +Nations +Nationville +Native Dancer +Native Oak +Native Rocks +Native Sons +Natividad +Natoma +Natomas +Natomas Central +Natomas Crossing +Natomas Park +Natta +Nattai +Nattinger +Natuna +Natural Bridges +Natural History +Nature +Nature Center +Nature View +Nature Walk +Natures +Natwick +Naugatuck +Naughton +Naugle +Naugler +Naugus +Naumkeag +Naunton +Nausbaumer +Nauset +Naushon +Nausin +Nautical +Nautilus +Nauvoo +Navaho +Navaho Trail +Navahoe +Navajo +Naval +Navarino +Navarone +Navarra +Navarre +Navarro +Nave +Navel +Navellier +Navenby +Navesink +Navesink River +Naviens +Navigation +Navigator +Navillus +Navins +Navion +Navone +Navy +Navy Day +Navy Yard +Nawadaha +Nawakwa +Nawatam +Nawthorne +Nay +Naying +Nayland +Nayling +Naylon +Naylor +Nazarene +Nazeing +Nazeing New +Nazeing Old +Nazielle +Nazing +Nazrul +Nea +Neabsco +Neabsco Mills +Neagle +Neal +Neal Dow +Neal Gate +Nealden +Neale +Nealley +Nealon +Neals +Neals Hollow +Nealy +Neame +Neaptide +Near Mountain +Near Mtn +Nearbrook +Nearcroft +Nearmaker +Nearwater +Neary +Neasden +Neasham +Neate +Neath +Neatham Mill +Neatscourt +Neb +Nebel +Nebo +Nebraska +Nebrentwood +Nebula +Necco +Neck +Neck Hill +Neckar +Neckinger +Necropolis +Nectar +Nectarbrook +Nectarine +Necton +Necturine +Ned +Nedderson +Neddleton +Nedellec +Nedley +Nedra +Neds +Nedshire +Needes +Needham +Needham Green +Needham Landing +Needhamdale +Needle +Needle Leaf +Needleleaf +Needleman +Needles +Needless Inn +Needlewood +Needwood +Needwood Lake +Neef +Neel +Neelen +Neeley +Neelon +Neelsville Church +Neely +Neenah +Neer +Neerim +Neerwinder +Nees +Neeser +Neet +Neeta +Neeworra +Neff +Negaune +Negundo +Nehemiah +Nehf +Nehoiden +Nehring +Neid +Neider +Neighbor +Neighborhood +Neighbors +Neihart +Neil +Neil Armstrong +Neild +Neilis +Neill +Neill Lake +Neillian +Neills +Neilsen +Neilson +Neilwood +Neimann +Neirbo +Neiss +Neitzel +Nekoma +Nel Pan +Nela +Nelda +Nelden +Nelgarde +Nelkin +Nell +Nell Gwynn +Nell Gwynne +Nella +Nella Dan +Nelldale +Nellella +Nellen +Nellgrove +Nellie +Nellie White +Nelligan +Nellington +Nellis +Nells +Nelly +Nelmark +Nelmes +Nelo +Nels +Nels Berglund +Nelsine +Nelson +Nelson Farm +Nelson Grove +Nelson Heights +Nelson Lake +Nelson Mandela +Nelson Park +Nelson Perrie +Nelson Point +Nelson Rising +Nelson Short +Nelstrop +Nelway +Nelwyn +Nemba +Nemec Knoll +Nemesia +Nemeth +Nemic +Nemitz +Nemoure +Nenagh +Nene +Nenninger +Neola +Neosho +Neotomas +Nepaul +Nepawin +Nepean +Nepean Towers +Nepenthe +Neperan +Nephi +Nepicar +Nepil +Nepo +Neponset +Neponset Heights +Neponset Valley +Neponsit +Nepperhan +Nepshaw +Nepton +Neptune +Neptune Gardens +Nequa +Neranda +Nerang +Nerbonne +Nerdy +Nereid +Nerida +Neridah +Neringa +Nerious +Nerli +Nern +Nero +Neroly +Nertherne +Nesaquake +Nesbit +Nesbitt +Nesconset +Nesfield +Neshobe +Nesler +Neslite +Nesmith +Ness +Nessralla +Nesta +Nester +Nestlewood +Nestlewood Farm +Neston +Nestor +Nestora +Nestro +Nether +Nether Hey +Netheravon +Netherbury +Netherby +Nethercliffe Hall +Nethercote +Nethercourt +Nethercroft +Netherdale +Netherend +Netherfield +Netherford +Netherhall +Netherhouse +Netherland +Netherlands +Netherley +Nethermont +Nethern Court +Netherne +Netherpark +Netherton +Netherwood +Netley +Netta +Netteswell +Netties +Nettle +Nettlebarn +Nettleden +Nettlepole +Nettlestead +Nettleton +Nettlewood +Netto +Network +Neuberry Ridge +Neubert +Neubourg +Neuchatel +Neuenschwander +Neufairfield +Neugebauer +Neuharth +Neulist +Neumaier +Neuman +Neumann +Neuner +Neustoneshire +Neuton +Neutral +Neuville +Neva +Nevada +Nevells +Nevendon +Nevern +Neves +Nevil +Nevill +Neville +Neville Duke +Neville Grove Church +Nevin +Nevins +Nevis +Nevius +Nevsky +Nevy Fold +New +New Abbey +New Acadia +New Ackertown +New Adel +New Albany +New Allen +New Ascot +New Bailey +New Balch +New Bank +New Banner +New Barge Pier +New Barn +New Barn Farm +New Barns +New Barton +New Battlebridge +New Beach +New Bedford +New Beech +New Berry +New Bond +New Boston +New Braddock +New Brent +New Briar +New Bridge +New Brier +New Bright +New Brighton +New Brighton Service +New Britton +New Broad +New Brook +New Brooklyn +New Brunswick +New Burlington +New Butt +New Canterbury +New Carson +New Castle +New Castor +New Cathedral +New Century +New Change Cannon +New Chapel +New Chardon +New Charles +New Church +New City +New Clark +New Coach +New Cold Mill +New Commons +New Compton +New Country +New County +New Court +New Creek +New Cross +New Cut +New Cypher +New Dairy +New Dawn +New Derby +New Design +New Devon +New Disney +New Dobbel +New Dock +New Dominion +New Dorp +New Dover +New Dunne +New Durham +New Dutch +New Earth +New Elm +New Emerald +New England +New England Village +New England Woods +New Era +New Estate +New Fairview +New Farm +New Fisher +New Fitchburg +New Fletcher +New Ford +New Forest +New Foster +New Fox Hill +New Freetown +New Front +New Garden +New Gardens +New Garrison +New Gateway +New George +New Goulston +New Greens +New Guinea +New Hall +New Hall Farm +New Hampshire +New Harbor +New Harter +New Haven +New Haven RR +New Haw +New Heath +New Heckman +New Helvetia +New Herbert +New Hewy +New Hey +New High +New Holder +New Holland +New Home +New Hook Access +New Hope +New Horizon +New Horizons +New Horwich +New House +New House Farm +New Hyde Park +New Hythe +New Illawarra +New Industrial +New Inn +New Ipswich +New Jefferson +New Jersey +New Jersey Railroad +New Kelvin +New Kent +New Kiln +New King +New Lake +New Lancaster +New Lawn +New Lebanon +New Lenox +New Liberty +New Line +New Line Carr Bottom +New Line Elder +New Line Redcar +New Line near Albion +New Lodge +New London +New Lots +New Lydenburg +New Main +New Malden High +New Manchester +New Maple +New Market +New Mathews +New Mayfield +New McLean +New McNeil +New Mead +New Meadow +New Meadows +New Mexico +New Mile +New Milford +New Mill +New Mills +New Minton +New Monmouth +New Montgomery +New Moor +New Moorhead +New Mount +New North +New North Rocks +New Northern +New Oak +New Occupation +New Ocean +New Odiham +New Old Bridge +New Orchard +New Orleans +New Oxford +New Park +New Parkland +New Peachey +New Pittsburg +New Place +New Plaistow +New Point +New Pond +New Port +New Prague +New Princess +New Providence +New Quay +New Quebec +New Radcliffe +New Read +New Rectory +New Ridge +New Riggs +New River +New Rochelle +New Row +New Royd +New Rutherford +New Salem +New Saw Mill River +New Schley +New School +New Solomoms Island +New South +New South Head +New Spaulding +New Sudbury +New Sudlersville +New Sutton +New Tank +New Tank Hill +New Terrace +New Town +New Towne +New Tradition +New Trier +New Trinity +New Union +New Utrecht +New Utrecth +New Vernon +New Viaduct +New Village +New Vine +New Vista +New Wakefield +New Walnut +New Warrington +New Washington +New Water +New Waugh Chapel +New Waverley +New Way +New Welcome +New West Townsend +New Wharf +New Wickham +New Wilke +New Willow +New Wilmot +New Windsor +New Wokingham +New Woods +New World +New Writtle +New Wye +New Years +New York +New Zealand +New lands +Newacre +Newacres +Newall +Newalls +Newand +Newanga +Newark +Newark Broad +Newarth +Newasa +Newbank +Newbarn +Newberm +Newbern +Newberne +Newberries +Newberry +Newbert +Newbery +Newbiggen +Newbold +Newbolt +Newborough +Newboult +Newbreak +Newbridge +Newbrook +Newburg +Newburgh +Newburn +Newbury +Newby +Newby Bridge +Newcastle +Newcastle Coal Creek +Newcastle Gap +Newcastle Golf Club +Newchapel +Newchurch +Newcliffe +Newcomb +Newcombe +Newcombs +Newcome +Newcomen +Newcompton +Newcourt +Newcroft +Newcrossing +Newcut +Newdale +Newdene +Newdigate +Newearth +Newel +Newell +Newell Creek +Newell Hill +Newells +Newenden +Newenham +Newey +Newfield +Newfields +Newfoundland +Newgate +Newgatestreet +Newglen +Newground +Newhall +Newham +Newham Hospital Glen +Newham Way Colman +Newhaven +Newhey +Newhill +Newhouse +Newick +Newington +Newington Commons +Newington Forest +Newington Green +Newington Woods +Newitt +Newkirk +Newkirt +Newlaithes +Newland +Newland Green +Newlander +Newlands +Newlands Farm +Newlay +Newlay Wood +Newley +Newlyn +Newmain +Newman +Newman Hill +Newman Springs +Newmans +Newmarch +Newmark +Newmarket +Newmarsh +Newmer +Newminster +Newmont +Newnham +Newood +Newpasture +Newport +Newport Cove +Newport Mill +Newpots +Newpound +Newquay +Newry +News +News Direct +News Lees +Newsam +Newsham +Newshaw +Newsholme +Newsom +Newsome +Newstead +Newteswell +Newton +Newton Abbot +Newton Falls +Newton Hall +Newton Lodge +Newton Park +Newton Patent +Newton Wood +Newtonville +Newtown +Newtowne +Newvale +Newvalley Church +Newville +Newyears Green +Next Day Hill +Ney +Nez Perce +Niagara +Niagara Falls +Niagra +Niantic +Niara +Nibbe +Niblick +Niblo +Nibshaw +Nibthwaite +Nicanoa +Nicasio Creek +Nicasio Valley +Nicastro +Nice +Nichandros +Nichol +Nicholai +Nicholas +Nicholas Run +Nicholay +Nichold +Nichole +Nicholes +Nicholi +Nicholl +Nicholls +Nichols +Nicholsen +Nicholson +Nicholsons +Nicholsridge +Nick +Nickel +Nickelson +Nickerson +Nicklaus +Nickle Plate +Nickleby +Nickles +Nickleson +Nickley Wood +Nickolas +Nickolsen +Nicks Rock +Nickson +Nicky +Nicobar +Nicod +Nicol +Nicola +Nicolai +Nicolar +Nicole +Nicolet +Nicoletta +Nicolette +Nicolini +Nicoll +Nicollet +Nicolls +Nicolosi +Nicols +Nicolson +Nicora +Nicosia +Nicrobia +Nider +Nido +Nidva +Niebaum +Niederwald +Niehaus +Nield +Nields +Nielsen +Nielson +Nieman +Niemann +Niemela +Niemeyer +Niestrath +Nieves +Nigel +Nigel Playfair +Nigeria +Nigh +Nigher Moss +Night Shade +Nightengale +Nightfall +Nighthawk +Nightingale +Nightingale Farm +Nightingale Hall +Nightside +Nightsong +Nightwatch +Niguel +Nijong +Nike +Nike Manor +Niki +Nikisch +Nikki +Nikkie +Nikol +Niland +Nilda +Nile +Niles +Niles Center +Nill +Nillera +Nilsen +Nilson +Nilsson +Nimbey +Nimbin +Nimbrin +Nimbus +Nimco +Nimitz +Nimmo +Nimoola +Nimrick +Nimrod +Nims +Nina +Nina Grey +Nine Acre +Nine Acres +Nine Ashes +Nine Elms +Nine Mile Creek +Ninehams +Ninelands +Nineteenth +Nineteeth +Ninevah +Ninevan +Nineveh +Ninfa +Ninfantino +Ninfield +Ninian +Ninive +Ninn +Ninnings +Ninnis +Nino +Ninth +Niobe +Niobrara +Nioka +Nipawaton +Nipigon +Nipmuc +Nipmuck +Nipowin +Nipper +Nippert +Nippon +Nira +Nircana +Nire +Nirimba +Nirvana +Nisbet +Nish +Nishia +Nishida +Nishuane +Nisich +Nisperos +Nisqually +Nissen +Nissitissit +Nisson +Niswender +Nita +Nithdale +Nithila +Nithsdale +Niton +Nittany +Niven +Nivens +Nix +Nixon +Nizam +Nizels +Nizoni +No Name +No Name Uno +Noah +Noahs Ark +Noak Hill North Hill +Noake Mill +Noakes +Noanet +Noanet Brook +Noanett +Nob +Nob Hill +Nobbs +Nobby +Nobehar +Nobel +Nobel Crest +Nobes +Nobhill +Nobi +Nobile +Nobili +Noble +Noble Fir +Noble Hill +Noble Oak +Noble Rock +Noble Tree +Noble Victory +Nobles Green +Noblestown +Noblewood +Nobscot +Nobu +Noce +Noche Vista +Nock +Nockege +Nockolds +Nodaway +Nodd +Noddin +Nodes +Nodine +Noe +Noel +Noel Park +Noelene +Noeline +Noell +Noemi +Nogal +Nogales +Nohea +Noia +Noid +Noke +Nokes +Nokesville +Nokomis +Nola +Nolan +Nolan Farm +Noland +Nolands Ferry +Nolans +Nolberry +Nolcrest +Nolden +Nolen +Nolet +Nolfield +Nolheight +Nolin +Noll +Nollet +Nolpark +Nolte +Nolting +Noltland Castle +Nolton +Nomad +Nomahegan +Nome +Nomini +Nomis +Nommsen +Nona +Nonantum +Nondorf +Nonesuch +Nonie +Nonington +Nonnie +Nonquit +Nonquitt +Nonset +Nonsuch Court +Nooal +Nook +Noolinga +Noon +Noon Hill +Noonan +Noonan Ranch +Noonans +Noor +Noora +Noorang +Nootka +Nora +Norah +Norair +Noranda +Norba +Norbar +Norbay +Norbeck +Norbeck Square +Norbert +Norbiton +Norbiton Common +Norbreck +Norbridge +Norbrik +Norbroke +Norbrook +Norburn +Norburt +Norbury +Norbury Court +Norbury Hollow +Norcia +Norcliff +Norcot +Norcott +Norcott Farm +Norcrest +Norcroft +Norcross +Norcutt +Nord +Nord Cir +Nordale +Nordek +Nordell +Norden +Nordens +Nordham +Nordhoff +Nordic +Nordic Hill +Nordica +Nordland +Nordlie +Nordling +Nordstrom +Nordyke +Nore +Noreen +Norelius +Norelle +Noren +Nores +Noreuil +Norex +Norfeld +Norfen +Norfield +Norflex +Norfolf +Norfolk +Norfolk Farm +Norfolk House +Norfolk Pine +Norfork +Norgate +Norge +Norgren +Norgrove +Norham +Norhead +Norhyrst +Noria +Norias +Noric +Norich +Noriega +Noriker +Norine +Norlan +Norland +Norlands +Norlee +Norley +Norlinda +Norlington +Norlyn +Norma +Normac +Normal +Normal Hill +Normal School +Normalee +Norman +Norman Center +Norman May +Norman Ridge +Norman Rockwell +Norman Smith +Norman Todd +Normanby +Normand +Normandale +Normandale Highlands +Normandale Lake +Normandie +Normandie Farm +Normandy +Normandy Common +Normandy Crossing +Normandy Heights +Normandy Hill +Normandy Square +Normandy Woods +Normanhurst +Normans +Normansfield +Normanshire +Normanshurst +Normanstead +Normanstone +Normanton +Normantown +Normington +Normon +Normoor +Normurra +Noroton +Norpak +Norrback +Norrbom +Norrels +Norreys +Norridge +Norrie +Norrington +Norris +Norris Canyon +Norris Hill +Norristhorpe +Norroway +Norroy +Norrys +Norse +Norseman +Norsey +Norsey View +Norsham +Norshon +Norsid +Norside +Norstad +Norstead +Norte +Nortech +North +North Abbott +North Abel +North Aberdeen +North Access +North Adams +North Addison +North Airport +North Airway +North Akron +North Alamo +North Albany +North Alder +North Almaden +North Almenar +North Almond +North Alta +North Alvin +North Amelia +North Ames +North Amphlett +North Anderson +North Andover +North Antelope +North Arbour +North Argonne +North Arlington +North Arm +North Ascot +North Ash +North Ashland +North Ashley +North Aspen +North Auburn +North Audley +North Augusta +North Autumn +North Avalon +North Avondale +North B +North Bank +North Barnaby +North Bascom +North Bassett +North Batavia +North Bay +North Bayard +North Bayfield +North Baylor +North Bayou +North Bayshore +North Bayview +North Baywood +North Beacon +North Beeches +North Belcher +North Belfort +North Belgian +North Bella Monte +North Belmont +North Bend +North Benfleet Hall +North Bennet +North Benton +North Bernardo +North Betty +North Beulah +North Big Tree +North Big Trees Park +North Bigelow +North Billerica +North Birkbeck +North Blackfield +North Blaney +North Border +North Boundary +North Bow +North Bowditch +North Bowmanville +North Bragg +North Branch +North Branciforte +North Brandon +North Breach +North Bridge View +North Brigham Hill +North Britton +North Broadgate Town +North Broadway +North Bronte +North Brook +North Brooks +North Bruce +North Brunswick +North Buckingham +North Burgher +North Burke Bradley +North Burling +North Butte +North Butts +North Byron +North C +North California +North Cambridge +North Camden +North Cameron +North Canal +North Cannon +North Canyon +North Capitol +North Carol +North Carolan +North Carolina +North Carpenter +North Carriage +North Cary +North Castle +North Castro +North Cathy +North Cedar +North Center +North Central +North Chanterella +North Chappell +North Chatsworth +North Cheam Priory +North Chesterbrook +North Chestnut +North Chicago +North Circle +North Circular +North Civic +North Claremont +North Clark +North Cleveland +North Clifden +North Clifdon +North Clifton +North Clinton +North Clover +North Cluff +North College +North Columbine +North Columbus +North Comfort +North Common +North Commonwealth +North Conduit +North Coral +North Corporate +North Cottage +North Cottonwood +North Countess +North Country +North Court +North Courtland +North Cove +North Cragmont +North Craig +North Cray +North Creek +North Crescent +North Crest +North Cross +North Croydon +North Crystal Springs +North Cumberland +North Cypress +North D +North Dakota +North Dale +North Dam +North Damen +North Daniels +North Danvers +North Davis Farms +North Dearborn +North Deer +North Delaware +North Desplaines +North Diameter +North Dike +North Dinwiddie +North Dogwood +North Douglas +North Downs +North Dublin Ranch +North Duke +North Dundalk +North Dunton +North Dutton +North Dwyer +North East +North East River +North Eastling +North Eastview +North Echo Lake +North Edge +North Edison +North El Dorado +North El Monte +North Ela +North Eldorado +North Ellsworth +North Elm +North Elmhurst +North Elmwood +North Emerald +North Emerson +North Emory +North End +North Escape +North Estates +North Esther +North Evergreen +North F +North F Bennett +North Fabian +North Fair +North Fair Oaks +North Fairfax Park +North Fairmont +North Falkland +North Falls +North Farm +North Federal +North Ferndale +North Field +North Filbert +North Fillmore +North Fine +North Fish Hatchery +North Fitch Mountain +North Flood +North Folly +North Foothill +North Forcum +North Forest +North Forest Edge +North Fork +North Fork Bennett +North Fort Myer +North Fosket +North Frances +North Frankford +North Franklin +North Freeway +North Fremont +North Front +North Frontage +North Fuel Break +North Funston +North Furry +North G +North Gadsden +North Gail +North Gannon +North Garfield +North Gary +North Gate +North Gates +North Geneva +North Genevieve +North George +North Gertrude +North Gilchrist +North Glebe +North Glenway +North Gogna +North Gold Ridge +North Golden Gate +North Golf Club +North Golfview +North Gower +North Graham +North Granada +North Grand +North Grange +North Granite Hills +North Grant +North Grantham +North Gratton +North Great +North Green +North Greenville +North Greenwood +North Grimes +North Grove +North Grove Hill +North Guard +North Guild +North Haddow +North Hall +North Halls +North Halsted +North Hamilton +North Hamlin +North Hammonds Ferry +North Hancock +North Hangar +North Harbor +North Harbour +North Harriette +North Harrison +North Harry S Truman +North Hart +North Hartley +North Harvard +North Hathaway +North Haven +North Head Scenic +North Heath +North Henry +North Hewitt +North Hickory +North Hicks +North High +North High Rock +North Highbrook +North Highland +North Hilary +North Hildebrand +North Hill +North Hills +North Hillside +North Hillview +North Hinkley +North Hobson +North Holden +North Holt +North Hooper +North Hope +North Hospital +North Hudson +North Hughes +North Humboldt +North Hump +North Hunter +North Huron +North Hutchins +North Hyde +North I +North Idaho +North Ijams +North Indian Boundary +North Inland +North Ione +North Irving +North Island +North Ithaca +North Jack Tone +North Jackson +North Jade +North Jean +North Jefferson +North Jersey +North John +North Johnson +North Jonathan +North K +North Keeble +North Kelly +North Kenmore +North Kennebeck +North Kennedy +North Kennefick +North Kennicott +North Kennison +North Kensico +North Kent +North Kern +North Kiefer +North Kind +North King +North Kingston +North Kirk +North Kitson +North Knoll +North Knollwood +North Knox +North Kolmar +North Krattley +North L +North LaSalle +North Laguna +North Lake +North Lake Shore +North Lakeview +North Lamb +North Lancaster +North Lansdale +North Larrabee +North Larwin +North Lassen +North Laughlin +North Laura Anne +North Laurel +North Leach +North Lear +North Lee +North Leigh +North Lemon +North Lenora +North Leonard +North Lewis Park +North Lexington +North Leyden +North Liberty +North Lillian +North Lincoln +North Linden +North Lingwell +North Linn +North Lively +North Livermore +North Liverpool +North Llewellyn +North Lloyd +North Lockewood +North Locust +North Locust Tree +North Lodge +North Logging +North Loma +North Lonsdale +North Loop +North Los Angeles +North Lucille +North Lycett +North Lydia +North Lynda +North Lynn +North M +North Mac Arthur +North Macarthur +North Mackville +North Mada +North Madeline +North Madison +North Maffei +North Magnolia +North Main +North Malden +North Mallard +North Manchester +North Manley +North Mannheim +North Manor +North Maple +North Marcia +North Margaret +North Margin +North Marine +North Marion +North Market +North Marlton +North Marston +North Marta +North Martingale +North Marwood +North Mary +North Mary Frances +North Mather +North Mathilda +North May +North Mayfair +North Mc Intire +North McCarthy +North McCracken +North McDonnell +North McDowell +North McKinley +North Meacham +North Mead +North Meadow +North Meadows +North Meath +North Merger +North Meridian +North Michael +North Michelle +North Michigan +North Micke Grove +North Miday +North Midland +North Midway +North Military +North Mill +North Mill Creek +North Mills +North Milpitas +North Milton +North Milwaukee +North Mines +North Minnesota +North Mitchell Canyon +North Mittel +North Monarch +North Monroe +North Montello +North Montgomery +North Moore +North Moray +North Morgan +North Morrison +North Mounds +North Mountain +North Mozart +North Munstead +North Murray +North Murrieta +North Myran +North N +North Napa +North Nassano +North Neeley +North New +North New Hope +North Newport +North Nichols +North Nolan +North Norfolk +North North Ripon +North O +North Oak +North Oak Knoll +North Oaks +North Oakwood +North Ocean +North Old Dominion +North Old Hicks +North Olive +North Olympic +North Opal +North Orange +North Orbital +North Orchard +North Oregon +North Orenda +North Orleans +North Oro +North Oxford +North P +North Pacific +North Pacific Av Fron +North Palm +North Palmer +North Parish +North Park +North Park Victoria +North Parkside +North Parkview +North Pastoria +North Patrick +North Patterson +North Patton +North Patuxent +North Payne +North Peak +North Peak Access +North Peardale +North Pearl +North Pearson +North Peatland +North Perimeter +North Perley +North Perryman +North Pershing +North Peter +North Pickett +North Pilgrim +North Pinasco +North Pine +North Pine Grove +North Pine Mountain +North Pinetree +North Pioneer +North Pippin +North Plaza +North Plum Grove +North Plymouth +North Podesta +North Point +North Point Creek +North Pole +North Polo +North Pond +North Pondside +North Pony +North Portal +North Portland +North Potato +North Providence +North Putnam +North Pythian +North Quebec +North Quentin +North Quincy +North Quinn +North Quinsigamond +North Railroad +North Rancho +North Rand +North Randall +North Randolph +North Ravenswood +North Ravine +North Ray +North Rebeiro +North Redwood +North Regatta +North Regent +North Rengstorff +North Rexhame +North Richmond +North Richmond Beach +North Richwood +North Ridge +North Ridge Vista +North Ridgeview +North Ridgewood +North Rio Blanco +North Rio Verde +North Ripley +North Ripon +North Ritz +North River +North Riverside +North Rixey +North Roberta +North Rochester +North Rockridge +North Rocks +North Rodeo Gulch +North Rohlwing +North Rond +North Roper +North Rose +North Rosemore +North Row +North Roy +North Ruff +North Russell +North Ryde +North S +North Sacramento +North Sage +North Salado +North Sally +North San Carlos +North San Joaquin +North San Jose +North San Mateo +North San Pedro +North San Rafael +North San Raymundo +North Sanguinetti +North Santa Cruz +North Scenic +North Schiller +North Schmale +North School +North Schubert +North Sedgwick +North Seminary +North Sequoia +North Serven +North Service +North Shannon +North Shasta +North Shaw +North Sheridan +North Sherman +North Sherwood +North Shetland +North Shoebury +North Shore +North Shoreline +North Sibley +North Side +North Sierra +North Sierra Madre +North Sierra Nevada +North Signal Hill +North Silver Chase +North Silverado +North Sinclair +North Slope +North Snyder +North Somerset +North South +North Sowles +North Spooner +North Spring Creek +North Springer +North Springfield +North Spruce +North Summit +North Sun +North Sunbury +North Sundown +North Sunnyside +North Sunnyvale +North Sunset +North Suttenfield +North Sutter +North Sycamore +North Sycamore Slough +North Taaffe +North Tantau +North Taylor +North Taylor Ranch +North Tazewell +North Temple +North Tenter +North Teria +North Tessier +North Texas +North Thatcher +North Thompson +North Thornton +North Tilden +North Tolman +North Totten +North Tower +North Town +North Tranquility +North Tretheway +North Truro +North Tulip +North Tully +North Tulsa +North Tuxedo +North Union +North Upland +North Upton +North Utah +North Vail +North Vale +North Valensin +North Valley +North Van Buren +North Van Dorn +North Van Horn +North Vancina +North Vasco +North Veach +North Ventura +North Vernal +North Vernon +North View +North Vignolo +North Village +North Vine +North Viola +North Virginia +North Visalia +North Wabash +North Wacker +North Wagner +North Wakefield +North Walker +North Wall +North Wallace +North Walnut +North Walnut Branch +North Walnut Grove +North Ward +North Warren +North Washington +North Water +North Watford +North Watkinson +North Watts +North Waukegan +North Webster +North Wells +North West +North West Arm +North West Hills +North West Main +North Westchester +North Western +North Westside +North Wharf +North Whisman +North White +North White Pine +North Wiget +North Wild Grape +North Wilke +North Willard +North William +North Williams +North Williamson +North Willow +North Wilma +North Wilton +North Winchester +North Windemere +North Windsor +North Winnifred +North Winston +North Winthrop +North Wisconsin +North Wolcott +North Wolf +North Wolfe +North Wood +North Wood Dale +North Woodford +North Woodrow +North Woods +North Woodstock +North Woolwich +North Worcester +North Wright +North York +North de Anza +North del Puerto +North el Camino +North el Circulo +North el Dorado +North el Macero +North la Cresenda +NorthField +Northall +Northallerton +Northam +Northampton +Northanger +Northanna +Northaven +Northbank +Northbay +Northboro +Northborough +Northbourne +Northbrae +Northbriar +Northbridge +Northbrook +Northbrook Court +Northbrooke +Northburgh +Northbury +Northchurch +Northcliff +Northcliffe +Northcoast +Northcoate +Northcombe +Northcote +Northcott +Northcourt +Northcreek +Northcrest +Northcroft +Northcross +Northdale +Northdene +Northdown +Northdowns +Northeast +Northeast Albertson +Northeast Alder +Northeast Alder Crest +Northeast Alderwood +Northeast Ambleside +Northeast Ames Lake +Northeast Anderson +Northeast Apple Cove +Northeast Arcade +Northeast Arness +Northeast Arrowhead +Northeast Avalon +Northeast Baker Hill +Northeast Beach Crest +Northeast Beachwood +Northeast Beadonhall +Northeast Beck +Northeast Belle Hill +Northeast Berry +Northeast Big Rock +Northeast Bill Point +Northeast Birch +Northeast Bird +Northeast Blackster +Northeast Blakeley +Northeast Boat +Northeast Brackenwood +Northeast Brooklyn +Northeast Brownell +Northeast Burns +Northeast Byron +Northeast California +Northeast Campus +Northeast Carpenter +Northeast Carriage +Northeast Casey +Northeast Cherry +Northeast Clare +Northeast Comegys +Northeast Coral +Northeast County Park +Northeast Coyote +Northeast Crescent +Northeast D +Northeast Daphne +Northeast Darby +Northeast Darden +Northeast Day +Northeast Delaney +Northeast Dingley +Northeast Discovery +Northeast Dogwood +Northeast Dorothy +Northeast Douglas +Northeast Eaton +Northeast Endicott +Northeast Erin +Northeast Evergreen +Northeast Ewing +Northeast Federal +Northeast Felicity +Northeast Fenton +Northeast Fir +Northeast Georgia +Northeast Gilman +Northeast Gisle +Northeast Glavin +Northeast Goodfellow +Northeast Gordon +Northeast Grizdale +Northeast Halls Hill +Northeast Hansen +Northeast Harris +Northeast Harrison +Northeast Hawthorne +Northeast Hidden Cove +Northeast High +Northeast High School +Northeast Hillside +Northeast Hilltop +Northeast Hollyhills +Northeast Huckleberry +Northeast Husky +Northeast Iris +Northeast Iverson +Northeast Jade +Northeast Jewell +Northeast John +Northeast Johnson +Northeast Jonquil +Northeast Joshua Tree +Northeast Juanita +Northeast Julep +Northeast Juniper +Northeast Karmenn +Northeast Katsura +Northeast Kelsey +Northeast Kenilworth +Northeast Kennedy +Northeast Kenwood +Northeast Keswick +Northeast Killian +Northeast Kitsap +Northeast Kiwi +Northeast Klabo +Northeast Knight +Northeast Koura +Northeast Lacey +Northeast Lafayette +Northeast Lake Joy +Northeast Larchmount +Northeast Laurel Wood +Northeast Laurelcrest +Northeast Leprechaun +Northeast Lofgren +Northeast Logan +Northeast Loughrey +Northeast Lovgren +Northeast Mabrey +Northeast Magnolia +Northeast Main +Northeast Maine +Northeast Manor +Northeast Maple +Northeast Marine View +Northeast Marion +Northeast Marketplace +Northeast Mary Lou +Northeast McRedmond +Northeast Meadowmeer +Northeast Meigs +Northeast Meyers +Northeast Michelle +Northeast Midway +Northeast Miller +Northeast Monroe +Northeast Monsaas +Northeast Morgan +Northeast Morning +Northeast Moses +Northeast Mulberry +Northeast Munson +Northeast Murden Cove +Northeast NOAA +Northeast Noble +Northeast Northstar +Northeast Norton +Northeast Ocean +Northeast Oddfellows +Northeast Ohio +Northeast Olive +Northeast Oregon +Northeast Pacific +Northeast Park +Northeast Paulanna +Northeast Penrith +Northeast Phillip +Northeast Pine +Northeast Point View +Northeast Points +Northeast Preston +Northeast Puget +Northeast Puget Bluff +Northeast Quail Creek +Northeast Raccoon +Northeast Radford +Northeast Rasperry +Northeast Ravenna +Northeast Redmond +Northeast Reny +Northeast Richardson +Northeast Ring +Northeast Roberts +Northeast Roney +Northeast Rotsten +Northeast Rupard +Northeast Sasquatch +Northeast Seaborn +Northeast Seaview +Northeast Shore +Northeast South Beach +Northeast South Villa +Northeast Sprayfalls +Northeast Springwood +Northeast Spruce +Northeast Sunrose +Northeast Sunset +Northeast Tani Creek +Northeast Theresa +Northeast Tolt Hill +Northeast Torvanger +Northeast Tulin +Northeast Union Hill +Northeast Valley +Northeast Victorian +Northeast Viewcrest +Northeast Virginia +Northeast Warabi +Northeast Wardwell +Northeast Watch Hill +Northeast White Horse +Northeast Wiggins +Northeast Windermere +Northeast Wing Point +Northeast Winthers +Northeast Woldmere +Northeast Wolmere +Northeast Woodinville +Northeast Wyant +Northeast Yaquina +Northeastern +Northedge +Northend +Northenden +Northentry +Northerly +Northern +Northern Dancer +Northern Fences +Northern Lakes +Northern Lights +Northern Neck +Northern Perimeter +Northern Rivers +Northern Service +Northern Spruce +Northern Spy +Northern Woods +Northey +Northfalls +Northfield +Northfleet +Northfleet Green +Northforde +Northfront +Northgate +Northgate Ducks Hill +Northglen +Northgrove +Northhampton +Northholt +Northhome +Northhurst +Northiam +Northill +Northington +Northlake +Northland +Northlands +Northlawn +Northlea +Northleigh +Northmark +Northmead +Northminster +Northmont +Northmoor +Northoak +Northolm +Northolme +Northolt +Northolt Islip Manor +Northolt Ruislip +Northome +Northover Shroffold +Northplain +Northpoint +Northport +Northridge +Northrop +Northrup +Northshire +Northshore +Northside +Northstar +Northstead +Northstream +Northtown +Northumberland +Northumbria +Northup +Northurst +Northvale +Northview +Northview Park +Northville +Northward +Northway +Northweald +Northwell +Northwest +Northwest Blue Ridge +Northwest Boulder Way +Northwest Bright +Northwest Canal +Northwest Culbertson +Northwest Datewood +Northwest Dogwood +Northwest Elford +Northwest Esplanade +Northwest Everwood +Northwest Far Country +Northwest Firwood +Northwest Gilman +Northwest Golden +Northwest Holly +Northwest Inneswood +Northwest James Bush +Northwest Juniper +Northwest Locust +Northwest Mall +Northwest Maple +Northwest Market +Northwest Montreux +Northwest North Beach +Northwest Northwood +Northwest Pacific Elm +Northwest Pebble +Northwest Point +Northwest Puget +Northwest Richwood +Northwest Ridgefield +Northwest Sammamish +Northwest Spring Fork +Northwest Talus +Northwestern +Northwich +Northwick +Northwick Park +Northwind +Northwinds +Northwing +Northwold +Northwood +Northwood Estates +Northwoods +Northwyn +Nortoft +Norton +Norton Creek +Norton Glen +Norton Green +Norton Heath +Nortonia +Nortons +Nortonville +Norumbega +Norval +Norvale +Norvegia +Norvell +Norvella +Norvic +Norview +Norwalk +Norway +Norway Pine +Norwell +Norwest +Norwich +Norwood +Norwood Green +Norwood High +Norwood Hill +Norwood Park +Norwood Square +Norwoods Pond +Nosband +Nosecchi +Nosenzo Pond +Nostaw +Noster +Nostrand +Nostrands +Notabene +Notary +Notch +Notch Brook +Notch Hill +Notch Park +Notchcroft +Notchwood +Note +Notely +Notes +Noteware +Nothing +Notley +Notown +Notre Dame +Notson +Nott +Nottage +Nottaway +Notthumberland +Nottidge +Notting Barn +Notting Hill +Nottingdale +Nottingham +Nottinghill +Nottoway +Nottoway River +Notts +Nottwood +Notus +Nouds +Noumea +Nounsley +Nourse +Nova +Nova Scotia +Novak +Novar +Novara +Novato +Novelda +Novell +Novello +November +Novo +Now +Nowak +Nowell +Nowell Farme +Nower +Nowers +Nowill +Nowland +Nowra +Nowranie +Noyana +Noye +Noyes +Noyna +Noyo +Nsp +Nuala +Nuber +Nubian +Nuclear +Nuestra +Nueva +Nuevo +Nuffield +Nugent +Nugget +Nugget Canyon +Nulang +Nulgarra +Null +Nulla +Nulla Nulla +Nullaburra +Nullawarra +Nulty +Numa +Numantia +Number One First +Numes +Nunan +Nunatak +Nunda +Nundah +Nundle +Nuneaton +Nuneham +Nunes +Nunes Fire +Nungeroo +Nunhead +Nunhide +Nunington +Nunn +Nunnery +Nunnink +Nunroyd +Nunroyd Dale +Nuns +Nuns Canyon +Nunsbury +Nunsfield +Nunthorpe +Nup End +Nupton +Nuptown +Nureyev +Nurge +Nurla +Nurmi +Nurney +Nurragi +Nurran +Nurse Slough +Nurseries +Nursery +Nursery Hill +Nursery Mount +Nurserymans +Nurses +Nurstead +Nurstead Church +Nut +Nut Island +Nut Plains +Nut Tree +Nutberry +Nutbourne +Nutbrook +Nutcombe +Nutcraker +Nutcroft +Nutfield +Nutfield Marsh +Nutgrove +Nutham +Nuthatch +Nuthatcher +Nuthurst +Nutley +Nutmeg +Nutria +Nutshell +Nutswamp +Nutt +Nuttall +Nutter +Nutting +Nuttings +Nuttman +Nutty +Nutty Hill +Nutwell +Nutwell Sudley +Nutwold +Nutwood +Nuvern +Nuwarra +Nuxley +Ny +Nyac +Nyack +Nyan +Nyanga +Nyanza +Nyara +Nydam +Nydeggar +Nye +Nyes +Nyetimber +Nygaard +Nyinya +Nyla +Nylan +Nyland +Nylands +Nyletta +Nymagee +Nymboida +Nymph +Nynehead +Nyngan +Nyora +Nyra +Nyrang +Nystrom +O Brien +O Brine +O Connel +O Connell +O Connor +O Connors +O Day +O Dell +O Donnell +O Fernwood +O Gorman +O Hanneson +O Hara +O Hare +O Harte +O Hatch +O Keefe +O Leary +O Loughlin +O Malley +O Moore +O Neil +O Niell +O Rourke +O Shaughnessy +O View +Oad +Oadby +Oahu +Oak +Oak Arbor +Oak Bank +Oak Bay +Oak Beach +Oak Bend +Oak Bluff +Oak Branch +Oak Bridge +Oak Brook +Oak Brook Club +Oak Brook Hills +Oak Brook Mall +Oak Bucket +Oak Canyon +Oak Center +Oak Chase +Oak Cliff +Oak Cluster +Oak Creek +Oak Crest +Oak Dale +Oak End +Oak Estates +Oak Farm +Oak Farms +Oak Flat +Oak Forest +Oak Front +Oak Gate +Oak Glen +Oak Glenn +Oak Grange +Oak Grove +Oak Hall +Oak Harbour +Oak Haven +Oak Heights +Oak Hill +Oak Hills +Oak Hollow +Oak Island +Oak Ivy +Oak Knoll +Oak Lake +Oak Lakes +Oak Lea +Oak Leaf +Oak Leather +Oak Ledge +Oak Lodge +Oak Manor +Oak Manor Fire +Oak Marr +Oak Meadow +Oak Meadows +Oak Mesa +Oak Mill +Oak Mount +Oak Mountain +Oak Neck +Oak Neck Beach +Oak Park +Oak Park Village +Oak Plaza +Oak Point +Oak Pond +Oak Rail +Oak Ridge +Oak Rim +Oak Rock +Oak Run +Oak Savannah +Oak Shade +Oak Shades +Oak Shadow +Oak Shadows +Oak Shore +Oak Shores +Oak Spring +Oak Springs +Oak Square +Oak Terrace +Oak Trail +Oak Trails +Oak Tree +Oak Tree Farm +Oak Vale +Oak Valley +Oak View +Oak Villa +Oak Vista +Oak Vue +Oak Werth +Oak Wood +OakVille +Oakapple +Oakbank +Oakborne +Oakborough +Oakbridge +Oakbrook +Oakbrook Estates +Oakbrooke +Oakcliffe +Oakcreek +Oakcrest +Oakcroft +Oakdale +Oakdale Estates +Oakdale Farm +Oakdale Ranch +Oakdell +Oakden +Oakdene +Oaken +Oaken Bank +Oakenbottom +Oakenclough +Oakencroft +Oakenden +Oakengrange +Oakengrove +Oakenshaw +Oakenshield +Oaker +Oakes +Oakes Field Service +Oakey +Oakfern +Oakfield +Oakfield Court +Oakfield park +Oakfields +Oakfold +Oakford +Oakglen +Oakgreen +Oakgrove +Oakhall +Oakham +Oakhampton +Oakhanger +Oakhaven +Oakhill +Oakhollow +Oakhouse +Oakhurst +Oakington +Oakington Manor +Oakknoll +Oakland +Oakland Bay +Oakland Beach +Oakland Hills +Oakland Mills +Oakland Park +Oakland School +Oakland Terrace +Oaklands +Oaklands Park +Oaklandvale +Oaklane +Oaklawn +Oaklea +Oakleaf +Oakledge +Oakleigh +Oakleigh Park +Oakley +Oakley Green +Oakley SquarePlender +Oakline +Oaklyn +Oakman +Oakmead +Oakmead Village +Oakmeade +Oakmede +Oakmere +Oakmill +Oakmont +Oakmont Plaza +Oakmoor +Oakmore +Oakover +Oakpointe +Oakport +Oakraider +Oakrest +Oakridge +Oakroyal +Oakroyd +Oaks +Oaks Hunt +Oaksbury +Oaksford +Oakshade +Oakshaw +Oakshire +Oakshore +Oakside +Oakstone +Oakstwain +Oakthorpe +Oakton +Oakton Glen +Oakton Hills +Oakton Knoll +Oakton Mill +Oakton Plantation +Oakton Terrace +Oaktree +Oakura +Oakvale +Oakview +Oakview Gardens +Oakville +Oakville Grade +Oakville Ridge +Oakvue +Oakway +Oakways +Oakwel +Oakwell +Oakwild +Oakwilde +Oakwood +Oakwood Grange +Oakwood Hollow +Oakwood Knoll +Oakwood Manor +Oakwood Park +Oakworth +Oar +Oare +Oarfield +Oasis +Oast +Oast House +Oasthouse +Oat +Oat Chase +Oat Hill +Oat Hill Fire +Oates +Oatfield +Oathall +Oatland +Oatlands +Oatley +Oatley Park +Oatwind +Obal +Obama +Oban +Obbs +Obed +Obeline +Ober +Oberlin +Oberlon +Obermueller +Oberon +Oberstein +Obert +Obertz +Oberweis +Obery +Obispo +Obrad +Obrecht +Obrien +Obry +Observation +Observatory +Observer +Obsidian +Ocala +Ocatillo +Occam +Occident +Occidental +Occidintal +Occoquan +Occoquan Club +Occoquan Forest +Occoquan Oaks +Occupation +Ocean +Ocean Crest +Ocean Front +Ocean Grove +Ocean Harbor +Ocean Hill +Ocean Pier +Ocean Pines +Ocean Point +Ocean Shore +Ocean View +Oceana +Oceania +Oceanic +Oceanlea +Oceanside +Oceanus +Oceanview +Ocelot +Oceola +Ocho Milpas +Ocho Rios +Ochre +Ochs +Ochse +Ockelford +Ockenden +Ockendon +Ockford +Ockham +Ockley +Ockway +Ockwells +Oconnell +Oconnor +Oconto +Octagon +Octagonal +Octavia +Octavius +October +October Hill +Odalming +Odanah +Odard +Oday +Odd Fellows Park +Oddesey +Oddfellow +Oddstad +Oddy +Ode +Odea +Odell +Odell Morten +Oden +Odencroft +Odensos +Odenton +Odeon Shaftesbury +Oder +Odessa +Odette +Odger +Odie +Odiham +Odiham High +Odin +Odlum +Odney +Odom +Odonnell +Odriks +Odysseus +Odyssey +Oehme +Oelke +Oelsner +Oelvig +Oerter +Oeste +Ofallon +Ofarrell +Off Boundry +Off Central +Off Cherry +Off Dean +Off Ella +Off Groton School +Off Grove +Off Harrington +Off Indian Pond +Off Lake +Off Musterfield +Off Peters +Off Pond +Off Second Brook +Off Snow +Off Summer +Off Tarkiln +Off Upper Manor +Off Westford +Offa +Offaly +Offas +Offenbach +Offenham +Offens +Offerton +Offham +Office +Office Park +Officers +Officers Club +Official +Offley +Offner +Offord +Offut +Offutt +Ofria +Ogallah +Ogallala +Ogallala Warpath +Ogard +Ogburn +Ogden +Ogden Falls +Ogden Sannazor +Ogier +Ogilby +Ogilvie +Ogilvy +Ogla +Oglander +Ogle +Oglesby +Oglethorpe +Ogleton +Ogwen +Ohaire +Ohanneson +Ohara +Ohare +Oharron +Ohde +Ohio +Ohio River +Ohlfsen +Ohlone +Ohlones +Ohlson +Ohm +Ohms +Oil Company +Oil Mill +Oitmann +Ojibway +Ojibway Park +Oka +Okala +Okanogan +Okeburn +Okeefe +Okeford +Okehurst +Okemo Ridge +Okeover +Oketo +Okinawa +Okla +Oklahoma +Okley +Okst +Olaf +Oland +Olando +Olanyian +Olaughlin +Olchasky +Olcott +Old +Old Acre +Old Acres +Old Adobe +Old Albany Post +Old Alexandria Ferry +Old Allentown +Old Almaden +Old Altos +Old Amboy +Old Amersham +Old Amory +Old Andover +Old Annapolis +Old Annapolis Neck +Old Antelope +Old Archer +Old Ardmore +Old Army +Old Arrington +Old Ash +Old Ashford +Old Auburn +Old Audubon +Old Ayer +Old Bacon Race +Old Badgins +Old Baltimore +Old Bank +Old Bare Hill +Old Barn +Old Barnaby +Old Barns +Old Barrenjoey +Old Barrington +Old Bartlett +Old Barton +Old Bass Lake +Old Bath +Old Bathurst +Old Battery +Old Battle +Old Bavaria +Old Bay +Old Bay Flat +Old Bay Ridge +Old Bay Shore +Old Bayberry +Old Bayside +Old Beach +Old Beach Glen +Old Beaconsfield +Old Bear Creek +Old Beaver Brook +Old Bedford +Old Beecroft +Old Bell +Old Benfield +Old Bennett Ridge +Old Bergen +Old Bernal +Old Berowra +Old Berry +Old Bethnal Green +Old Bethpage +Old Big Basin +Old Big Trees +Old Billerica +Old Birch +Old Birdsville +Old Birley +Old Bisley +Old Bix +Old Blackhawk +Old Blacksmith +Old Blackstone +Old Blacktop +Old Bloomfield +Old Blossom Hill +Old Bluff +Old Bolton +Old Bond +Old Bond Mill +Old Bonifant +Old Boonton +Old Boston +Old Boston Post +Old Bracknell +Old Branch +Old Brandy Hill +Old Brandywine +Old Breakneck Hill +Old Bren +Old Brentford +Old Brewery +Old Briar +Old Brick +Old Brick Yard +Old Brickfield +Old Bridge +Old Bridge Matawan +Old Britton +Old Brompton +Old Brook +Old Brooks +Old Browns +Old Browns Valley +Old Bucklodge +Old Buffalo Grove +Old Burke Lake +Old Burley +Old Burlington +Old Bury Lodge +Old Bush +Old Cabin +Old Calaveras +Old Calvert +Old Calvine +Old Camp +Old Camp Meade +Old Campbell +Old Campus +Old Canal +Old Cannon +Old Canterbury +Old Canyon +Old Cape Saint Claire +Old Capell Valley +Old Carriage +Old Carroll +Old Cart +Old Cart Path +Old Castle +Old Castle Hill +Old Causeway +Old Cazadero +Old Cañada +Old Cedar +Old Cedar Lake +Old Cedar Swamp +Old Cemetery +Old Center +Old Central +Old Centre +Old Centreville +Old Chain Bridge +Old Changebridge +Old Channel +Old Chantry +Old Chapel +Old Charlton +Old Charter +Old Chatham +Old Checker +Old Cheesequake +Old Cherry +Old Cherry Hill +Old Chertsey +Old Chester +Old Chesterbrook +Old Chestnut +Old Chestnut Ridge +Old Chicago +Old Childrens Home +Old Chimney +Old Chinatown +Old Chittenden +Old Church +Old Cistern +Old City +Old Claygate +Old Clifton +Old Clinton +Old Clough +Old Club +Old Clubhouse +Old Coach +Old Coaling +Old Coast +Old Colchester +Old College +Old Collington +Old Colonial +Old Colony +Old Colony Cove +Old Columbia +Old Commack +Old Common +Old Compton +Old Conant +Old Concord +Old Contemptibles +Old Corona +Old Cote +Old Country +Old County +Old Court +Old Court House +Old Courthouse +Old Cove +Old Cow Pasture +Old Crabtree +Old Crain +Old Crawley +Old Creek +Old Crescent +Old Cross +Old Crossing +Old Crow Canyon +Old Crown +Old Cumberland +Old Cutter Mill +Old Dairy +Old Dairy Farm +Old Dartford +Old Davidsonville +Old Davis +Old Davis Ford +Old Deale +Old Dean +Old Dee +Old Deer Field +Old Deerfield +Old Delaney +Old Denville +Old Derby +Old Devonshire +Old Diamond +Old Diamond Hill +Old Diehl +Old Dobbin +Old Dock +Old Doctors +Old Dominion +Old Donaldson +Old Dorsey +Old Dorsey Run +Old Dory +Old Douglas +Old Dover +Old Dublin +Old Duff +Old Duncan Grade +Old Dundee +Old Dunstable +Old Dutch +Old Eagle Rock +Old Earleigh Heights +Old East +Old East Neck +Old Eaton +Old Edge +Old El Pueblo +Old Electric +Old Elland +Old Elm +Old Elmdale +Old Elstead +Old England +Old English +Old Enterprise +Old Eola +Old Epping Forest +Old Epsom +Old Esher +Old Essex +Old Estate +Old Evans +Old Excelsior +Old Faceful +Old Fairview +Old Faith +Old Falls +Old Farleigh +Old Farm +Old Farm Bridge +Old Farmers +Old Farmingdale +Old Farms +Old Farnham +Old Fence +Old Ferry +Old Ferry Slip +Old Field +Old Field Point +Old Fisher +Old Fishery +Old Flanders +Old Fleet +Old Fletchertown +Old Fold +Old Foothill +Old Ford +Old Forest +Old Forestville +Old Forge +Old Forge Hill +Old Fort +Old Fort Hills +Old Fort Smallwood +Old Foss Valley +Old Foundry +Old Framingham +Old Franconia +Old Frank Tippett +Old Franklin +Old Franklin Lake +Old Frederick +Old Freeman +Old French Horn +Old Frensham +Old Fulton +Old Furnace Colony +Old Gallows +Old Game Preserve +Old Garden +Old Garrison +Old Gary +Old Gate +Old Georges +Old Georgetown +Old German +Old Gibbons +Old Gilroy +Old Glen +Old Glenfield +Old Glenhaven +Old Glenn Dale +Old Glenview +Old Glory +Old Gloucester +Old Gold Mine +Old Goodenow +Old Gormely +Old Grafton +Old Graham Hill +Old Grand +Old Great +Old Great North +Old Green +Old Green Bay +Old Green Valley +Old Greendale +Old Greenland Beach +Old Greenville +Old Greenwich +Old Greenwood +Old Groton +Old Grove +Old Guildford +Old Gunpowder +Old Hadlow +Old Half Day +Old Hall +Old Hall Mill +Old Ham +Old Hammonds Ferry +Old Harbor +Old Harpenden +Old Hart +Old Harter +Old Harvard +Old Haslemere +Old Haswell Park +Old Haul +Old Hauppauge +Old Hawkesbury +Old Hawthorne +Old Hazel Dell +Old Heath +Old Heights +Old Herald Harbor +Old Herns +Old Hertford +Old Hey Beck +Old Heyes +Old Hickory +Old Hicks +Old Higgins +Old High +Old High Plain +Old Highbridge +Old Highgate +Old Hill +Old Hillary +Old Hills +Old Hillside +Old Hobart +Old Hoboken +Old Hockley +Old Hollow +Old Holly +Old Home +Old Homesdale +Old Homestead +Old Hommocks +Old Hook +Old Hoop Pole +Old Hopkington Spring +Old Hopkins +Old Horner +Old Horns +Old Horsham +Old House +Old Howletts +Old Hudson +Old Hull +Old Hundred +Old Hunt +Old Hunt Club +Old Ice House +Old Illawarra +Old Indian +Old Indian Head +Old Indianhead +Old Institute +Old Ironsides +Old Ively +Old Jackson +Old Jacksonville +Old Jamaica +Old Jamaicia +Old James +Old Japanese +Old Jericho Park +Old Jerome +Old Jerusalem +Old Jessup +Old Jonas Hill +Old Jones +Old Jones Gulch +Old Kahns +Old Keene Mill +Old Kellogg +Old Kennels +Old Kensico +Old Kent +Old Kenton +Old Kenville +Old Ketchum +Old Killam Hill +Old Kiln +Old Kinderhook +Old King +Old Kings +Old Kingsbridge +Old Kingston +Old Kirk +Old Kirker Pass +Old Knebworth +Old Knollwood +Old Kurrajong +Old Lafox +Old Lake +Old Lake End +Old Lake Herman +Old Lakes +Old Lakeville +Old Lancaster +Old Landing +Old Landover +Old Lansdowne +Old Lantern +Old Largo +Old Las Palmas +Old Laurel +Old Lawley Toll +Old Leary +Old Lee +Old Leigh +Old Lemont +Old Lenham +Old Leominister +Old Leonardtown +Old Leumeah +Old Lexington +Old Liberty +Old Library +Old Lincoln +Old Line +Old Linslade +Old Litenfield +Old Litten +Old Littleton +Old Liverpool +Old Livorna +Old Locust +Old Lodge +Old Log +Old Logging +Old London +Old Long Lake +Old Lottsford +Old Lowell +Old Lunenburg +Old Lyme +Old Mac Donald +Old Macdonald +Old Madrone +Old Magothy Bridge +Old Maidstone +Old Main +Old Malden +Old Maldon +Old Mamaroneck +Old Manchester +Old Manor +Old Mansion +Old Maple +Old Marbury +Old Market +Old Marlboro +Old Marsh +Old Marsh Hill +Old Marshall Hall +Old Maryland +Old Massachusetts +Old Matawan +Old Mayo +Old Mazda Brook +Old McHenry +Old McLean Village +Old Mead +Old Meadow +Old Medway +Old Meeting House +Old Meetinghouse +Old Mendon +Old Merlins +Old Merrimac +Old Merrow +Old Middlesex +Old Middletown +Old Mill +Old Mill Bottom +Old Mill Grove +Old Mill Pond +Old Mill Swamp +Old Millbury +Old Millstone +Old Millville +Old Mine +Old Mitchellville +Old Moat +Old Montague +Old Monte Rio +Old Monterey +Old Montgomery +Old Moor +Old Mori +Old Morton +Old Moss +Old Mount +Old Mount Skirgo +Old Mount Vernon +Old Mountain +Old Mountain View +Old Mouth +Old Mud +Old Muddy Creek +Old Muirkirk +Old Musket +Old Mystic +Old Nahant +Old Nans +Old Napa +Old Naperville +Old Nasonville +Old Nazeing +Old Neck +Old Nepperhan +Old New +Old New Bridge +Old New Brunswick +Old New Utrecht +Old Newbridge +Old Newland +Old Nichol +Old Nike Missle Site +Old North +Old North Church +Old North Main +Old Northern +Old Northfield +Old Northport +Old Nourse +Old Nutley +Old Oak +Old Oak Common +Old Oak Creek +Old Oaken Bucket +Old Oaks +Old Ocean +Old Odenton +Old Odiham +Old Orangeburg +Old Orchard +Old Otford +Old Otter Lake +Old Out +Old Ox +Old Oxbow +Old Oxford +Old Pacheco Pass +Old Page +Old Page Mill +Old Palace +Old Palatine +Old Palisade +Old Palmer +Old Paradise +Old Paris +Old Parish +Old Park +Old Parkbury +Old Parker +Old Parrin +Old Parsippany +Old Parvis +Old Pascack +Old Pasture +Old Pattens +Old Patterson Pass +Old Pear Tree +Old Pearson +Old Peartree +Old Pelhem +Old Pennington +Old Penzance +Old Perry +Old Petaluma Hill +Old Pewterspear +Old Philadelphia +Old Pickard +Old Piedmont +Old Pilkington +Old Pillings Pond +Old Pine +Old Piscataway +Old Pitt Town +Old Pittwater +Old Placerville +Old Plain +Old Plains +Old Plank +Old Planters +Old Pleasant +Old Plum Grove +Old Plum Point +Old Plymouth +Old Point +Old Pole +Old Pond +Old Porter +Old Portland +Old Portsmouth +Old Post +Old Post Office +Old Potbridge +Old Pottery +Old Pound +Old Powerhouse +Old Pratt +Old Princehanes +Old Princeton +Old Priory +Old Prospect +Old Prospect Hill +Old Providence +Old Public +Old Pye +Old Quarry +Old Quarterfield +Old Quebec +Old Queen +Old Quincy +Old Railroad Grade +Old Railroad Grade Fr +Old Ranch +Old Ranch Estates +Old Rancheria +Old Rand +Old Randolph +Old Rangeway +Old Raritan +Old Razorback +Old Reading +Old Rectory +Old Redmond +Old Redstone +Old Redwood +Old Regent +Old Reigate +Old Renwick +Old Reserve +Old Reservoir +Old Reston +Old Richards +Old Richardson +Old Ridge +Old Ridge Path +Old Rifle Camp +Old Right +Old Ritchie +Old Riva +Old River +Old Riverside +Old Riverview +Old Roberts +Old Rock Meadow +Old Rockaway +Old Rockbridge +Old Rockford +Old Rockland +Old Rockport +Old Rogers +Old Rolling +Old Rondo +Old Roxbury +Old Rubbly +Old Ruislip +Old Ruland +Old Run +Old Rutherford +Old Ryan +Old Saint Charles +Old Salem +Old Salisbury +Old Samuel +Old San Francisco +Old San Jose Turnpike +Old San Pablo Dam +Old Sand +Old Sand Creek +Old Sandy Pond +Old Sandy Spring +Old Sanford +Old Santa Rita +Old Saw Mill +Old Saw Mill River +Old Sawmill +Old Sax +Old Sayles Hill +Old Scaggsville +Old Schaumburg +Old School +Old School House +Old Schoolhouse +Old Seacoal +Old Searingtown +Old Settlers +Old Seven Locks +Old Shade +Old Shady Oak +Old Shawsheen +Old Shelter Rock +Old Shepard +Old Shipyard +Old Shire +Old Shirley +Old Shore +Old Short Hills +Old Siler Logging +Old Silver Hill +Old Skaggs Springs +Old Skokie Valley +Old Slade +Old Sleepy Hollow +Old Sleigh Hill +Old Smalleytown +Old Smith +Old Smithfield +Old Smiths +Old Smithy +Old Snakey +Old Sneech Pond +Old Soar +Old Soda Springs +Old Solomons Island +Old Somerset +Old Sonoma +Old Soper +Old South +Old South Head +Old South Highland +Old South Lambeth +Old South Main +Old South River +Old Southend +Old Spanish +Old Sprain +Old Spring +Old Springfield +Old Spye +Old Sudbury +Old Sudley +Old Sugar +Old Suisun +Old Suisun Knoxville +Old Sulphur Spring +Old Summer +Old Summit +Old Surey +Old Surrenden Manor +Old Sutton +Old Sydney +Old Tamarack +Old Tappan +Old Taren Point +Old Tarrytown +Old Taunton +Old Tavern +Old Telegraph +Old Temple Hills +Old Terrace +Old Tester +Old Thieves +Old Timber +Old Timbers +Old Tobey Garden +Old Toll Bridge +Old Tolson Mill +Old Topsfield +Old Tote +Old Tovil +Old Tower +Old Town +Old Towne +Old Townline +Old Trace +Old Track +Old Trail +Old Tree +Old Triangle +Old Trull +Old Tully +Old Tunnel +Old Turkey Point +Old Turnpike +Old Tye +Old Tyler +Old Tyngsboro +Old Up Yonder +Old Upton +Old Uxbridge +Old Vallecitos +Old Valley +Old Vee Fire +Old Vic Theatre +Old Vicarage +Old Village +Old Vine +Old Vineyard +Old Waddling +Old Wagon +Old Walker Mill +Old Wallgrove +Old Wallum Lake +Old Walnut +Old Walt Whitman +Old Wapping +Old Ward +Old Warm Springs +Old Warrington +Old Washington +Old Water Oak Point +Old Waterford +Old Waterloo +Old Watford +Old Watling +Old Waugh Chapel +Old Webster +Old Weiland +Old Well +Old Wellington +Old West +Old West Center +Old West Central +Old West Elm +Old West Julian +Old West Main +Old West Mt Pleasant +Old West Wrentham +Old Westboro +Old Westbury +Old Western +Old Westford +Old Weston +Old Wheatley +Old Whetsted +Old Whinchester +Old White Bear +Old White Plains +Old White Rock +Old Whitins +Old Whitley Wood +Old Wickford +Old Wickham +Old Wickhurst +Old Wildwood +Old Willard +Old Willis +Old Willow +Old Willows +Old Wilmot +Old Winchester +Old Winchester Hill +Old Windsor +Old Winery +Old Winkle Point +Old Winter +Old Woking +Old Wokingham +Old Wolf +Old Wolomolopoag +Old Womans Creek +Old Wood +Old Woods +Old Woodstock +Old Wool +Old Woolwich +Old Woosehill +Old Worcester +Old Yates Ford +Old Yerba Buena +Old York +Old del Monte +Old llandilo +OldField +Oldaker +Oldarker +Oldberry +Oldborough +Oldbridge +Oldbury +Oldcastle +Oldchurch +Olddale +Olde +Olde Ballardvale +Olde Carriage +Olde Coach +Olde Colony +Olde Crafts +Olde English +Olde Farm +Olde Gatehouse +Olde Greenhouse +Olde Half Day +Olde Hickory +Olde Ivey +Olde Kent +Olde Lantern +Olde Lyme +Olde Meeting House +Olde Mill +Olde Pasture +Olde Port +Olde Salem +Olde Surrey +Olde Towne +Olde Village +Olde Woods +Olden +Older Creek +Oldershaw +Oldert +Oldewood +Oldfield +Oldfields +Oldham +Oldhill +Oldhouse +Oldis +Oldknow +Oldlands +Oldmill +Oldmoor +Oldridge +Olds +Olds Park +Oldsandy Hollow +Oldstead +Oldtown +Oldway +Oldwood +Oldwoods +Ole Dirt +Ole Farm +Ole Tree +Olea +Olean +Oleander +Olearia +Oleary +Olema +Olema Bolinas +Olen +Olentangy +Olesen +Olf Fold +Olga +Olima +Olin +Olinda +Olinger +Olinville +Oliphant +Oliva +Olivant +Olivas +Olive +Olive Branch +Olive Canyon +Olive Grove +Olive Hill +Olive Lee +Olive Ranch +Olive School +Olive Shapley +Olive Spring +Olive Tree +Olivebranch +Olivegate +Oliveleaf +Oliver +Oliver Cromwell +Oliver Swain +Oliver Wentworth +Olivera +Olivers +Olivers Shop +Oliveswood +Olivet +Olivetree +Olivette +Oliveview +Olivewood +Olivia +Olivian +Olivier +Olivine +Oll la Honda +Olleberie +Ollerbarrow +Ollersett +Ollershaw +Ollerton +Olley +Ollier +Ollies Turn +Olliffe +Ollin +Olm +Olma +Olmar +Olmi Landrith +Olmo +Olmo Fire +Olmstead +Olmsted +Olney +Olney Keech +Olney Laytonsville +Olney Mill +Olney Sandy Spring +Olo +Olofson +Olola +Olphert +Olsen +Olson +Olson Farm +Olson Frontage +Olson Highway Service +Olson Hwy Service +Oltmann +Olvega +Olven +Olvera +Olyffe +Olympia +Olympia Fields +Olympic +Olympic Oaks +Olympic View +Olympus +Olyphant +Omaban +Omaha +Omaha Beach +Omak +Oman +Omar +Omara +Omaroo +Omaru +Omati +Omdurman +Omeara +Omec Park +Omega +Omeo +Omer +Omira +Omisol +Ommel +Omni +Omnibus +On Orbit +On The +Ona +Onamog +Onandaga +Onarga +Onchan +Onderdonk +Ondina +Ondine +One Beacon +One Bridge +One End +One Eversholt +One Executive +One Hundred +One Marina Park +One Mill +One Oak +One Palace +One Paradise +One Penny +One Pin +One Spring +One Tree +One Tree Hill +One Western +Oneata +Onedia +Oneel +Onehtah +Oneida +Oneil +Oneill +Oneonta +Oneto +Ongar +Ongley +Onieda +Onion Hill +Onion Patch +Onique +Onley +Onondaga +Onondago +Onorato +Onra +Onset +Onslow +Onsrud +Ontario +Ontario Bay +Ontarioville +Onward +Onwentsia +Onyx +Oolah +Oolooteka +Oorana +Oorin +Oozewood +Opah +Opal +Opal Cliff +Opala +Opalo +Opalocka +Opatrny +Opel +Open +Open Hearth +Open Meadow +Open Run +Open View +Opengate +Openshaw +Openshaw Fold +Openwood +Operations +Operators +Opey +Ophelia +Ophir +Oping +Opitz +Oppenheim +Opperman +Oppidans +Opportunity +Optimist +Optimo +Opus +Ora +Ora Glen +Ora Lea +Orache +Oracle +Oradell +Orallo +Oram +Orama +Oran +Oran Park +Orana +Orange +Orange Blossom +Orange Brace +Orange Grove +Orange Heights +Orange Hill +Orange Hunt +Orange Plank +Orange Tree +Orange View +Orangeburg +Orangeburgh +Orangery +Orangetree +Orangevale +Orangeville +Orangewood +Oransay +Orara +Oratam +Oratava +Oraton +Orawaupum +Orazio +Orazmi +Orb +Orbach +Orbain +Orbel +Orbell +Orbison +Orbit +Orcam +Orchad +Orchads +Orchard +Orchard Acres +Orchard Beach +Orchard Blossom +Orchard Brook +Orchard Canyon +Orchard City +Orchard Club +Orchard Creek +Orchard End +Orchard Estates +Orchard Farm +Orchard Gate +Orchard Gateway +Orchard Grove +Orchard Heights +Orchard Hill +Orchard Hill Park +Orchard Hills +Orchard House +Orchard Lake +Orchard Loop +Orchard Meadow +Orchard Meadows +Orchard Park +Orchard Point +Orchard Pointe +Orchard Ridge +Orchard Run +Orchard Spring +Orchard Springs +Orchard Valley +Orchard View +Orchardfield +Orchardhill +Orchardleigh +Orchehill +Orchid +Orchill +Orchird +Orchis +Ord +Ordak +Orde Hall +Ordell +Ordinal +Ordinance +Ordnance +Ordsall +Ordway +Ore +Oread +Oreana +Orebaugh +Oregano +Oregon +Orehr +Orem +Orence +Orestan +Oreste +Orestimba +Orestimba Creek +Oreston +Oreta +Orford +Organ +Organ Hall +Organ Park +Orgill +Ori +Orian +Oriana +Oric +Orick +Oriel +Orielton +Orient +Orient Fishtail +Orienta +Oriental +Oriente +Oriley +Orin +Orinda +Orinda View +Orinda Vista +Orindawoods +Orinoco +Oriol +Oriole +Orion +Orion Club +Oriskany +Orison +Orissa +Oritan +Orizaba +Orkla +Orkney +Orlan +Orlan Brook +Orland +Orland Square +Orland Woods +Orlanda +Orlando +Orleans +Orleston +Orley Farm +Orlick +Orlo +Orloff +Orlop +Orly +Orman +Ormand +Ormandy +Ormanton +Ormart +Ormbrek +Orme +Ormeley +Ormerod +Ormesby +Ormiston +Ormond +Ormond Park +Ormonde +Ormont +Ormpington +Ormrod +Ormsay +Ormsbee +Ormsby +Ormsgill +Ormside +Ormskirk +Ormston +Ornan +Ornatus +Orne +Ornella +Ornellas +Oro +Orogrande +Oronga +Orono +Orono Oaks +Oronoco +Orosz +Oroville +Orphanage +Orpheus +Orpin +Orpington +Orpington Bypass +Orpington High +Orr +Orr Ranch +Orral +Orrel +Orrell +Orren +Orrin +Orrin White +Orrington +Orris +Orrishmere +Orrison +Orrmo +Orsett +Orsett Heath +Orsetti +Orsini +Orsman +Orson +Orston +Ortalon +Ortega +Orth +Ortins +Orto +Orton +Ortona +Orts +Orval +Orvietto +Orville +Orvis +Orwell +Orwood +Osage +Osbert +Osberton +Osborn +Osborne +Osbourne +Osburn Park +Oscar +Oscecla +Osceola +Osea +Oser +Osgathorpe +Osgood +Osidge +Osier +Osiers +Osio +Ositos +Oskaloosa +Oslac +Oslo +Osloer +Osman +Osmer +Osmium +Osmond +Osmondthorpe +Osmund +Osmundsen +Osnaburgh +Osney +Oso +Osprey +Osprey Point +Ospringe +Osroy +Ossage +Ossamequin +Ossary +Osseo +Ossian Hall +Ossie +Ossipee +Ossippee +Ossory +Ossulston +Ossulton +Ostade +Ostego +Ostenberg +Ostend +Oster +Osterberg +Osterley +Osterley Park +Osterly +Osterly Park View +Osterman +Osterport +Ostlers +Ostrander +Ostrich +Ostrowski +Oswald +Osward +Oswego +Oswego Plains +Oswell +Oswin +Oswyth +Otago +Otay +Otero +Otford +Otham +Othello +Othen +Other Day +Othman +Otis +Otis Bowen +Otis Hill +Otisco +Otisfield +Otley +Otley Burras +Otley Old +Otlinge +Otoole +Otsego +Otsigo +Ott +Otta +Ottawa +Ottawa Bend +Ottaway +Otter +Otter Creek +Otter Lake +Otter Pond +Otter Ridge +Otter Rock +Otter Run +Otterbourne +Otterburn +Otterden +Otterham Quay +Otterhole +Otteridge +Ottermead +Otterson +Otterspool +Ottey +Ottilia +Ottley +Otto +Otto Hummer +Ottowa +Ottumwa +Ottways +Otway +Ouchthorpe +Oudle +Oughtonhead +Oughtrington +Ouilmette +Oulder Hill +Oulton +Oundle +Our +Our Hill +Our Peak +Ourimbah +Ourisman +Oursler +Oursler Park +Ourtime +Ousden +Ouseley +Ousley +Oust +Outcalt +Outer +Outer Loop +Outer Ring +Outer Zayante +Outerbridge +Outfield +Outgang +Outgate +Outhaul +Outing +Outings +Outlet +Outlook +Outlook Heights +Outlook Hill +Outpost +Outram +Outrigger +Outward Common +Outwater +Outwich +Outwood +Outwood Church Moxon +Outwood Common +Outwood Farm +Ouzlewell Green Green +Oval +Ovalstone +Ovaltine +Ovejas +Oven Hill +Ovenden +Ovenhouse +Ovens +Over +Over Brook +Over Hill +Over Ridge +Over Rock +Over Town +Overacker +Overbeck +Overbridge +Overbrook +Overbury +Overby +Overchase +Overcliff +Overcoat +Overcrest +Overdale +Overdene +Overdown +Overend +Overend Green +Overens +Overett +Overfield +Overford +Overgate +Overheart +Overheiser +Overhill +Overhiser +Overing +Overion +Overkamp +Overlake +Overland +Overland Park +Overlea +Overleaf +Overledge +Overleigh +Overlinks +Overlock +Overlook +Overlook Ridge +Overly +Overmead +Overmont +Overmoor +Overmount +Overpass +Overpeck +Overrun +Overshores +Overstone +Overton +Overview +Overwood +Overy +Ovesdon +Oving +Ovington +Owaisa +Owaissa +Owasco +Owasso +Owasso Heights +Owasso Hgts +Owasso Hills +Owasso Hts +Owatonna +Owen +Owen Brown +Owen Sound +Owencroft +Owenite +Oweno +Owens +Owens Farm +Owens Glen +Owens Lake +Owens Valley +Owensville +Owensville Sudley +Owings +Owings Beach +Owl +Owl Creek +Owl Harbor Levee +Owl Hill +Owl Ridge +Owl Swamp +Owl Tree +Owlcotes +Owler +Owlerbottom +Owles +Owley Wood +Owls Cove +Owls Head Bluff +Owls Nest +Owlsmoor +Owlswood +Owlwood +Owna +Owning +Owsley +Ox +Ox Bow +Ox Cart +Ox Hey +Ox Hill +Ox Hunt +Ox Meadow +Ox Pasture +Ox Ridge +Ox Team +Oxberry +Oxborough +Oxbow +Oxbow Creek +Oxbow Marina +Oxbridge +Oxburough +Oxbury +Oxen +Oxen Hill +Oxenbourne +Oxenbridge +Oxendale +Oxenden +Oxenden Wood +Oxendon +Oxenford +Oxenhoath +Oxenhouse +Oxenpark +Oxestalls +Oxford +Oxford Alcove +Oxford Bay +Oxford Circus Vere +Oxford Falls +Oxford Mill +Oxford Square +Oxford Wells +Oxfordshire +Oxform +Oxgate +Oxhey +Oxholm +Oxlease +Oxley +Oxley Farm +Oxley Shaw +Oxley Square +Oxleys +Oxleyshaw +Oxlow +Oxman +Oxnard +Oxney +Oxon +Oxon Hill +Oxon Hill Farm +Oxon Park +Oxon Run +Oxonian +Oxshott +Oxted +Oxton +Oxwell +Oxwood +Oyama +Oyster +Oyster Bay +Oyster Creek +Oyster Point +Oyster Pond +Oz +Ozanam +Ozark +Ozier +Ozkan +Ozone +Ozonia +P Fernwood +P Prairie +P Tree +PAH Fourth +PIA +PLeasance +Paarl +Pabis +Pabje +Pablo +Pablo Vista +Pac +Paca +Pace +Pacella +Pacella Park +Pacer +Pacey +Pachateau +Pacheco +Pacheco Creek +Pacheco Ridge +Pacific +Pacific Commons +Pacific Heights +Pacific Rim +Pacific Shore +Pacific View +Pacifica +Pacifico +Pacifiv View +Pacina +Pacini +Packanack Lake +Packard +Packards +Packcard +Packenham +Packer +Packet Boat +Packet Landing +Packetboat +Packham +Packhorse +Packing House +Packington +Packman +Packmore +Packmores +Packsaddle +Paco +Padan School +Padbury +Padcroft +Paddack +Padden +Paddenswick +Paddick +Paddington +Paddison +Paddle +Paddle Boat +Paddle Wheel +Paddlesworth +Paddlewheel +Paddock +Paddock Hill +Paddock House +Paddockhall +Paddockhurst +Paddocks +Paddockview +Paddon +Paddy +Paddy Creek +Paddy Miller +Padelford +Pademelon +Paderewski +Padero +Padfield +Padfield Main +Padgate +Padgett +Padons +Padova +Padre +Padre Island +Padres +Padsole +Padstow +Padua +Paducah +Padula +Padwell +Padwick +Padworth +Pafel +Paff +Paganini +Pagano +Pagden +Page +Page Brook +Page Farm +Page Green +Page Heath +Page Hill +Page Mill +Pageant +Pagebrook +Pagehurst +Pagel +Pageland +Pagenkopf +Pages +Paget +Pagham +Pagitt +Paglesham +Pagnell +Pagni +Pagoda +Pagonica +Pagum +Pahl +Paice +Paidge +Paige +Paige Glen +Paignton +Pailet +Paine +Paines +Paines Brook +Painesfield +Pains +Painsthorpe +Painswick +Paint +Paint Branch +Paintbrush +Painted Daisy +Painted Feather +Painted Leaf +Painted Pony +Painted Post +Painted Rock +Painted Turtle +Painted Wagon +Painters +Painters Ash +Painters Creek +Paintridge +Paints +Paisley +Paiute +Pajaro +Pajaro Hills +Pakachoag +Pakan +Pake +Pakeman +Pakenham +Pal +Pala +Palace +Palace Gardens +Palace Gates +Palace Green +Palace View +Palacio +Paladena +Paladin +Paladini +Paladino +Palamar +Palamino +Palamos +Palatine +Palatino +Palatka +Palawan +Palazzo +Pale +Pale Morning Dun +Paleologos +Palermo +Palesgate +Palewell Common +Paley +Palfrey +Palgrave +Paliamentary +Palin +Paling +Palinwood +Palisade +Palisades +Palisades Center +Palisades Interstate +Palisadium +Palisadse +Palissy +Palladay +Palladian +Palladio +Pallant +Pallas +Palleschi +Pallingham +Palliser +Pallister +Palm +Palm Beach +Palm Canyon +Palm Circle +Palm Grove +Palm Haven +Palm Meadow +Palm Mesa +Palm Ridge +Palm Spring +Palm Springs +Palm View +Palma +Palmar +Palmarsh +Palmaya +Palmcrest +Palmdale +Palmeira +Palmer +Palmer Creek +Palmer Hill +Palmer House +Palmer Mill +Palmer Park +Palmer Ranch +Palmer School +Palmera +Palmers +Palmers Green +Palmers Hill +Palmersfield +Palmerson +Palmerston +Palmerstone +Palmetta +Palmetto +Palmetto Dunes +Palmgren +Palmgrove +Palmia +Palmieri +Palmira +Palmito +Palmquist +Palms +Palmtag +Palmtree +Palmview +Palmwood +Palmyra +Palo +Palo Alto +Palo Amarillo +Palo Hills +Palo Santo +Palo Verde +Palo Vista +Palom +Paloma +Palomar +Palomares +Palomino +Palona +Paloro +Palos +Palos Springs +Palos Verdes +Palos West +Palou +Paloverde +Palsa +Palsted +Palwaukee +Pam +Pam Ann +Pam Anne +Pamala +Pamarco +Pamarella +Pamber +Pambula +Pamela +Pamella +Pamequa +Pamlar +Pamlico +Pampano +Pampas +Pamper +Pampisford +Pamplona +Pamrapo +Pan +Pan Am +Pan Toll +Panabaker +Panama +Panania +Pancake +Pancake Hollow +Pancras +Panda +Pandola +Pandolfi +Pandora +Pandorea +Panetta +Panfield +Pangbourne +Pangburn +Pangee +Panitz +Panjon +Pank +Pankhurst +Pankle +Pankridge +Panmuir +Panmure +Pannell +Pannonia +Panoche +Panola +Panorama +Panorama Heights +Panoramic +Panoz +Pansey +Panshanger +Pansmith +Pansy +Pantalis +Pantano +Panteny +Pantera +Panther +Panther Ridge +Panthers Ridge +Pantile +Pantlings +Panton +Pantooset +Pantry +Panxworth +Panzano +Paola +Paoli Loop +Paolo +Paomet +Paon +Paone +Papa +Papago +Papaw +Papaya +Pape +Papeete +Paper +Paper Birch +Paper Mill +Paper Mill Creek +Papera +Paperbark +Papercourt +Papermill +Papillion +Papillon +Papineau +Papoose +Papoose Lake +Papp +Pappani +Pappas +Pappenburg +Pappy +Paprocki +Paprota +Papsco +Papworth +Paquin +Par +Par Four +Par Three +Parada +Parade +Paradice +Paradis +Paradise +Paradise Beach +Paradise Grove +Paradise Lake +Paradise Spring +Paradise Valley +Paradise View +Paradiso +Parador +Paradox +Paragon +Paraiso +Parakeet +Parallel +Paramatta +Paramel +Paramount +Paramus +Parapet +Parbold +Parbrook +Parbury +Parc +Parc Aux Vaches +Parc Guell +Parcel +Parcel E Mayfair +Parcher +Parchmore +Parcot +Pardalote +Pardee +Pardey +Pardillo +Pardis +Pardoe +Pardon +Pardoner +Pardun +Pare +Parent +Parente +Parer +Paret +Parfait +Parfett +Parfrey +Pargat +Parham +Paringa +Paringdon +Paris +Paris Farm +Paris Oaks +Parish +Parish Gate +Parish Glebe +Park +Park Access +Park Arcadia +Park Barn +Park Barrington +Park Bridge +Park Center +Park Central +Park Circle +Park City +Park Cliff +Park Commons +Park Corner +Park Creek +Park Crescent +Park Crest +Park Cross +Park Dene +Park East +Park Ellen +Park End +Park Entrance +Park Estates +Park Fair +Park Farm +Park Forest +Park Front +Park Garden +Park Gardens +Park Gate +Park Gates +Park Glen +Park Glenn +Park Grove +Park HIll +Park Hall +Park Headquarters +Park Heights +Park Highlands +Park Hill +Park Hills +Park House +Park Hqtrs +Park Island +Park Knoll +Park Lake +Park Lawn +Park Maintenance +Park Manor +Park Meadow +Park Meadows +Park Mill +Park Mills +Park Mount +Park Nicollet +Park Overlook +Park Pacifica +Park Place +Park Plaine +Park Plaza +Park Point +Park Presidio +Park Prewett +Park Ramp +Park Ridge +Park River +Park Royal +Park Run +Park Sharon +Park Side +Park Siding +Park Sierra +Park South +Park Terrace +Park Tower +Park Trail +Park Tree +Park Vale +Park Valley +Park View +Park Village +Park Vista +Park Waldorf +Park West +Park Wilshire +Park Wood +Park Woods +Park Works +Parkanaur +Parkcenter +Parkchester +Parkcliff +Parkcroft +Parkdale +Parke +Parke West +Parkedge +Parkend +Parker +Parker Chase +Parker Creek +Parker Hill +Parker Point +Parker Ranch +Parkerhouse +Parkers +Parkers Creek +Parkers Farm +Parkers Grove +Parkers Lake +Parkers Ridge +Parkerson +Parkerville +Parkes +Parkey +Parkfast Essex +Parkfield +Parkfields +Parkford Manor +Parkgate +Parkgreen +Parkgrove +Parkhall +Parkham +Parkhaven +Parkhill +Parkhills +Parkholme +Parkhouse +Parkhurst +Parkin +Parking Lot +Parkington +Parkinson +Parkis +Parklake +Parkland +Parkland Farms +Parkland Hills +Parklands +Parklands Close Lynn +Parklane +Parklawn +Parklea +Parkleigh +Parklin +Parkman +Parkmead +Parkmeadow +Parkmont +Parkmoor +Parkmount +Parkoaks +Parkpale +Parkridge +Parkrose +Parkrow +Parks +Parkshore +Parkside +Parkside Dollis Hill +Parkside Crown +Parkson +Parkstead +Parkston +Parkstone +Parksway +Parkthorne +Parkton +Parktrail +Parkurst +Parkvale +Parkview +Parkville +Parkway +Parkway Cannon Hill +Parkway Homes +Parkway Ponds +Parkway Subdivision +Parkway Terrace +Parkways +Parkwest +Parkwind +Parkwood +Parkwood Ridge +Parkwoods +Parlaunt +Parlee +Parley +Parley Lake +Parliament +Parliment +Parlin +Parlington +Parma +Parmaker +Parmal +Parmalee +Parmelee +Parmenter +Parmer +Parmiter +Parmley +Parmly +Parmoor +Parnaby +Parnassus +Parndon +Parndon Mill +Parnel +Parnell +Parnham +Parnoo +Parole +Parolles +Paroma +Paroo +Paros +Paroubek +Parque +Parquet +Parr +Parramatta +Parramore +Parran +Parraween +Parraweena +Parrenthorn +Parrett +Parrin +Parrish +Parrish Farm +Parrish View +Parritt +Parriwi +Parrock +Parrot +Parrott +Parrott Mill +Parrow +Parrs +Parrs Ridge +Parrs Wood +Parry +Parsells +Parsifal +Parsippany +Parsley +Parsloe +Parsloes +Parslow +Parson +Parson Hill +Parsonage +Parsonage Hill +Parsons +Parsons Hill +Parsons Landing +Parsons Pond +Parston +Part +Partanna +Partello +Partenwood +Parthena +Parthenia +Parthey +Partidge Pond +Parting Rock +Partington +Partition +Partlow +Partnership +Parton +Partrick +Partridge +Partridge Berry +Partridge Hill +Partridge Run +Partridge Wood +Partridges +Party +Paru +Parvet +Parvin +Parys +Pasa Felix +Pasa Robles +Pasa Tiempo +Pasack +Pasada +Pasadena +Pasas +Pasatiempo +Pascack +Pascal +Paschal +Pasco +Pascoe +Pascomb +Pasedena +Paseo +Paseo Estera +Paseo Flores +Paseo Grand +Paseo Nuevo +Paseo Padre +Paseo Pueblo +Paseo Robles +Paseo de Palomas +Paseo del Mar +Pasetta +Pashley +Pasho +Paskin +Pasley +Paso Corto +Paso Nogal +Paso Norte +Paso Robles +Pasquale +Pasquier +Pasquinelli +Pass +Passaconaway +Passaconway +Passage +Passage Creek +Passages +Passaic +Passaic Valley +Passaie +Passalaqua +Passalis +Passefield +Passel +Passfield +Passingham +Passini +Passmore +Passy +Pastatiempo +Pastel +Pastens +Pasteur +Paston +Pastor +Pastoral +Pastori +Pasture +Pasture Brook +Pasture Gate +Pasture Hill +Pasture View +Pasture Way Pasture +Pasturegate +Pasturewood +Pat +Pat Butler +Pat Capone +Pat Geary +Patanga +Patapsco +Patapsco Hill +Patch +Patch Meadow +Patch Reservoir +Patchen +Patches Pond +Patchett +Patching Hall +Pate +Patemore +Paten +Patent Parish +Pater +Paternal Gift +Paternoster +Paterson +Paterson Plank +Pates +Pates Manor +Patey +Path +Pathfield +Pathfinder +Pathway +Pathways +Pathwood +Patience +Patiky +Patio +Patio Greens +Patleigh +Patlen +Patlena +Patley +Patmon +Patmor +Patmore +Patmore Link +Patmos +Patnoe +Pato +Patocchi +Paton +Patony +Patowmack +Patoxent +Patra +Patrica +Patrice +Patricia +Patrician +Patrick +Patrick Clark +Patrick Henry +Patricks Copse +Patridge Wood +Patriot +Patriot Square +Patriots +Patrixbourne +Patrol +Patrol Bridge +Patrolman Ray Woods +Pats +Patsco +Patshull +Patsy +Patt +Pattee +Patten +Patten Ash +Pattenden +Pattens +Patterdale +Patterma +Patterman +Pattern +Patternbond +Patterson +Patterson Park +Patterson Pass +Patterson Ranch +Patteson +Patti +Patti Jo +Pattie +Patties +Pattison +Patton +Patty +Patty Lee +Patuxent +Patuxent Manor +Patuxent Overlook +Patuxent Range +Patuxent Riding +Patuxent River +Patuxent Woods +Patwin +Pau Hana +Paugus +Paul +Paul Birch +Paul Burch +Paul Dunbar +Paul Gore +Paul Hance +Paul Kirkwold +Paul Marr +Paul Martin +Paul Minnie +Paul Poole +Paul R. McDade +Paul Revere +Paul Scarlet +Paul Springs +Paul Sweet +Paul Wilkke +Paul X Tivnan +Paula +Paula Beth +Paula Lynn +Paulden +Paulding +Paulen +Paulene +Paulet +Paulette +Pauley +Paulhan +Paulin +Paulina +Pauline +Pauling +Paulison +Paulk Hall +Paull +Paullus +Paulonia +Pauls +Paulsell +Paulsen +Paulson +Paultons +Paulus +Pauly +Pauly Farm +Paulyn +Paumanack Village +Paumanake +Paumonek +Pauntley +Pautz +Pauw +Pavan +Paveley +Pavelka +Pavement +Pavesi +Pavia +Pavich +Pavilion +Pavilions +Pavillion +Pavn +Pavo +Pavonia +Paw Pan +Paw Print +Pawlet +Pawlik +Pawnee +Pawsey +Pawson +Pawtucket +Paxford +Paxman +Paxos +Paxson +Paxton +Payan +Paycocke +Payden +Payen +Payette +Payle +Payley +Payne +Paynes +Paynes Church +Paynes Endeavor +Paynesfield +Payot +Payran +Payson +Payten +Payton +Pazinick +Pazzi +Pea +Peabody +Peace +Peace Memorial +Peace Valley +Peaceable +Peacedale +Peaceful +Peaceful Glen +Peaceful Pond +Peaceful Ridge +Peaceful Valley +Peacevale +Peach +Peach Blossom +Peach Crest +Peach Grove +Peach Hill +Peach Leaf +Peach Orchard +Peach Tree +Peach Tree Hill +Peach Walker +Peacham +Peachey +Peachgate +Peachland +Peachstone +Peachtree +Peachum +Peachwillow +Peachwood +Peacock +Peacock Creek +Peacock Farm +Peacock Gap +Peacock Hill +Peacock Pond +Peak +Peak Hill +Peak View +Peakdale +Peake +Peake New +Peaker +Peakes +Peakham +Peaks Mill +Peaksmill +Peakview +Peale +Peanut Brittle +Peanut Mill +Peapond +Pear +Pear Creek +Pear Tree +Pear Tree Point +Pearblossom +Pearce +Pearce Landing +Pearce Memorial +Pearcroft +Peardon +Pearfield +Pearl +Pearl Bay +Pearl Brook +Pearl Harbor +Pearl Hill +Pearlbush +Pearle +Pearles +Pearlgrass +Pearlman +Pearlroth +Pearltone +Pearly +Pearmain +Pearman +Pearn +Pears +Pearsall +Pearse +Pearson +Pearson Valley +Pearsons +Pearsons Green +Peart +Peartree +Pearwood +Peary +Peascod +Peascroft +Pease +Peaslake +Peasley +Peat +Peat Bog +Peatfield +Peatmore +Peavey +Pebble +Pebble Beach +Pebble Branch +Pebble Brook +Pebble Canyon +Pebble Creek +Pebble Glen +Pebble Hill +Pebble Run +Pebblebrook +Pebblebrooke +Pebblecreek +Pebbleford +Pebblefork +Pebblehill +Pebbles +Pebblestone +Pebbleway +Pebblewood +Pebler +Pebmarsh +Pebworth +Pecan +Pecan Grove +Pecan Leaf +Pecanwood +Peccary +Peck +Peckford +Peckham +Peckham High +Peckham Hill +Peckham Hurst +Peckham Park +Peckman +Peckmantown +Peckover +Pecks +Pecks Woods +Pecksland +Pecksuot +Peckwater +Peco +Peconic +Pecos +Pecunit +Peddars +Pedder +Peddlers +Peddock +Peden +Pedersen +Pederson +Pederzini +Pedley +Pedra +Pedrick +Pedro +Pedro View +Pedroncelli +Pedroni +Peebles +Peebles Whitehall +Peed +Peek +Peekay +Peeks Brook +Peekskill +Peel +Peel Green +Peel Hall +Peel Moat +Peelgate +Peels +Peelwood +Peens +Peer +Peerless +Peers +Peerswood +Peeskill +Peet +Peets +Peffer +Peg +Pegamoid +Pegan +Pegasus +Pegg +Peggotty +Peggotty Beach +Peggs +Peggy +Pegholme +Pegler +Pegmire +Pegord +Pegrum +Pegs +Pegwell +Pegwood +Pehle +Peiking +Peine +Peirce +Peirson +Peitz +Pekara +Pekin +Peladeau +Pelandale +Pelden +Peldon +Pelfrey +Pelham +Pelham Crossover +Pelham Island +Pelham Manor +Pelham Shore +Pelhamdale +Pelhamside +Pelhamwood +Pelican +Pelican Garth +Pelican Point +Pelican Ridge +Pelier +Pelinore +Pell +Pell Farm +Pellack +Pellandini +Pellant +Pelleas +Pellegrini +Pellerin +Pelletie +Pelletier +Pellier +Pelling +Pellings +Pellington +Pellipar +Pellisier +Pellitt +Pellowe +Pells +Pelly +Pelorus +Pelozar +Pelsart +Pelter +Peltier +Peltier Lake +Pelton +Pemaco +Pemba +Pembar +Pember +Pemberlei +Pemberly +Pemberton +Pemberwick +Pembina +Pembridge +Pembroke +Pembroke Village +Pembroke on Duxbury +Pembrook +Pembrooke +Pembrooke View +Pembsly +Pembury +Pembury Hall +Pemdevon +Pemell +Pemerton +Pen +Pen Bryn +Pen Mor +Pena +Pena Adobe +Penacook +Penamint +Penang +Penaranda +Penarth +Penasquitas +Penataquit +Penatiquit +Penberth +Penbridge +Penbroke +Penbrooke +Penbury +Pence +Pencroft +Pend Oreille +Penda +Pendale +Pendall +Pendant +Pendarves +Pendas +Pendas Way Barwick +Pendas Way Kelmscott +Pendas Way Manston +Pendegast +Pendell +Pendennis +Pender +Penderbrook +Penderbrooke +Penderel +Pendergast +Penderlea +Penderview +Penderwood +Pendexter +Pendey +Pendle +Pendlebury +Pendlecroft +Pendlestone +Pendleton +Pendock +Pendola +Pendolino +Pendragon +Pendred +Pendrell +Pendrill +Pendro +Pendroy +Pendrys +Pendulum +Penefield +Penelope +Penelope Lucas +Penenden +Penenden Heath +Penenden Heath Boxley +Penerley +Penerly +Penfield +Penfold +Penford +Pengarth +Pengel +Pengilly +Penguin +Penhall +Penhallow +Penhill +Penhorn +Penhryn +Penhurst +Penifather +Penine +Peninnsula +Peninsula +Peninsula Farm +Peninsula Point +Peninsular +Peniston +Penistone +Penisula +Penitencia +Penitencia Creek +Penitentiary Service +Peniwill +Penketh +Penkivil +Penlan Hall +Penland +Penleach +Penley +Penlow +Penman +Penmere +Penmon +Penn +Penn Belt +Penn Creek +Penn Crossing +Penn Manor +Pennack +Pennacook +Pennant +Pennant Hills +Pennard +Penncross +Penndale +Pennell +Penner +Pennerview +Pennethorne +Penney +Pennfathers +Pennfield +Penngrove +Penni +Pennial +Pennicook +Pennies +Penniman +Pennine +Pennings +Pennington +Pennington Green +Penningtons +Penninsula +Penninsular +Pennisula Point +Pennith +Pennland +Pennock +Pennoyer +Penns +Penns Hill +Pennsboro +Pennsbury +Pennswood +Pennsy +Pennsylvania +Pennsylvania Railroad +Pennview +Pennwood +Penny +Penny Brook +Penny Cress +Penny Hill +Penny Meadow +Penny Oak +Penny Royal +Pennyblack +Pennybridge +Pennybrook +Pennycress +Pennydog +Pennyfather +Pennyfathers +Pennyfield +Pennyfield Lock +Pennyhill +Pennymead +Pennymeadow +Pennymoor +Pennypacker +Pennypleck +Pennyroyal +Pennys +Pennywise +Pennywood +Penobscot +Penpool +Penprase +Penquin +Penraevon +Penrhos +Penrhyn +Penrith +Penroath +Penrod +Penrose +Penroy +Penry +Penryn +Penryth +Pensa +Pensacola +Pensarn +Pensbury +Pensfold +Pensford +Penshurst +Pensive +Pensons +Penstemon +Penstock +Penswick +Pentagon +Pentagon Access +Pentecost +Pentenville +Penthorpe +Pentire +Pentland +Pentlow +Pentney +Pento +Penton +Penton Hall +Penton Hook +Penton Rise Cumming +Pentonville +Pentreath +Pentrich +Pentridge +Pentstemon +Pentucket +Pentwater +Pentyre +Penway +Penwerris +Penwick +Penwith +Penwood +Penyston +Penywern +Penzance +Peony +Peony Place +Peoria +Peotone Beecher +Peover +Pepco +Pepe +Peper Harrow +Peperham +Peperharow +Pepin +Pepito +Pepler +Peploe +Peppard +Peppe +Pepper +Pepper Creek +Pepper Hill +Pepper Mill +Pepper Oaks +Pepper Ridge +Pepper Tree +Pepper Valley +Pepper Wood +Pepperbox +Peppercorn +Pepperday +Pepperdine +Pepperell +Pepperhill +Pepperidge +Pepperidge Tree +Peppermill +Peppermint +Peppermint Hill +Pepperridge +Peppertree +Pepperwood +Pepperwood Knoll +Pepperwood Ranch +Pepple +Pepples +Pepsal End +Pepys +Pequannock +Peque +Pequit +Pequossette +Pequot +Pera +Peracca +Perada +Perak +Peralta +Perceval +Perch +Perch Lake +Percheron +Percil +Percival +Percivals +Percy +Percy Bryant +Percy Simms +Percypenny +Perda +Perder +Perdetta +Pere Marquette +Peregoy +Peregrin +Peregrine +Peregrine White +Pereira +Perennial +Perera +Perez +Perfection +Performance +Pergate +Pergola +Perham +Peri +Pericles +Peridot +Perie +Periera +Perigene +Perigo +Perimeade +Perimeter +Perimetr +Perine +Perino +Peripheral +Perisher +Perita +Periton +Perivale +Periwinkle +Perkal +Perkeley +Perkins +Perkinsville +Perkiomen +Perks +Perktel +Perley +Perley Evans +Perleybrooke +Perlich +Perlman +Permanent +Permanente +Permar +Permian +Perna +Pernham +Peronne +Perot +Perouse +Perowne +Perpetual Park +Perpins +Perran +Perraud +Perrault +Perreault +Perreira +Perrell +Perrelli +Perren +Perrers +Perrett +Perri +Perrich +Perrie +Perrin +Perrin Springs +Perrine +Perrineville +Perring +Perrior +Perro Creek +Perrone +Perrot +Perry +Perry Hall +Perry Henderson +Perry Hill +Perry Penney +Perry Vale Windrush +Perry Vale Woolstone +Perry William +Perryfield +Perrygate +Perryhill +Perryland +Perrymans +Perrymans Farm +Perrymead +Perrymont +Perrymount +Perryn +Perryridge +Perrys +Perrys Island +Perrysfield +Perrywinkle +Perrywood +Persant +Perserverance +Perseus +Perseverance +Persfield +Pershing +Pershore +Persia +Persian +Persic +Persimmon +Persimmon Tree +Persimmonn +Persistence +Personette +Pertch +Perth +Perthshire +Pertwee +Peru +Perullo +Perwal +Perwell +Pescadero +Pescadero Creek +Pesce +Pescot +Peshine +Peshtigo +Pestana +Pested +Pested Bars +Pesticide +Pesz +Petain +Petal +Petaluma +Petaluma Hill +Petar +Pete +Pete Dye +Pete Higgins +Pete Miller +Pete Weirs +Peteler +Peter +Peter A McCuen +Peter Behr +Peter Bont +Peter Brock +Peter Bulkeley +Peter Cooper +Peter Coutts +Peter Finch +Peter Hans +Peter Hobart +Peter Island +Peter J Shields +Peter Jefferson +Peter Martin +Peter Meadows +Peter Pan +Peter Parley +Peter Paul +Peter Tufts +Peter V Blazonis +Peter Wilson +Peterborg +Peterborough +Peterhoff +Peterhouse +Peterick +Peterlee +Peterley +Peterman +Peters +Peters Dam Fire +Peters Ranch +Peters Spring +Petersborough +Petersburg +Petersdorf +Petersen +Petersfield +Petersham +Petersilge +Peterson +Petersons +Petersville +Petery +Petes Farm +Petherton +Petit +Petite +Petite Creek +Petith +Petlands +Petley +Petra +Petrarca +Petray +Petrel +Petrell +Petri +Petridge +Petrie +Petrified Forest +Petrig +Petrillo +Petroleum +Petrolia +Petrosyan +Petrus +Petry +Pett +Pettee +Pettees Pond +Petteridge +Petters +Petterson +Pettfield Hill +Pettibone +Pettibush +Petticoat +Pettigrew +Pettingell +Pettis +Pettit +Pettits +Petts +Pettsgrove +Petty +Petunia +Petworth +Petzold +Peugeot +Pevensey +Peverel +Peverell +Peveril +Peverill +Pevey +Pevril +Pevwell +Pewter +Pewterers +Pewterspear +Pewterspear Green +Pexa +Pexhill +Peyla +Peyton +Peyton Randolph +Peytonia +Pezzi +Pezzini +Pfaff +Pfeffer +Pfeiffer +Pfeiffer Ranch +Pfeifle +Pfieffer +Pfingsten +Pfister +Pfitzer +Pfund +Phaeton +Phaeton Rock +Phaiban +Phalanx +Phalen +Phaneuf +Phanor +Phantom +Phar Lap +Pharlap +Pharmer +Pharoahs +Pheasant +Pheasant Brook +Pheasant Chase +Pheasant Creek +Pheasant Fields +Pheasant Hill +Pheasant Hills +Pheasant Hollow +Pheasant Hunt +Pheasant Lake +Pheasant Landing +Pheasant Ridge +Pheasant Run +Pheasant Trail +Pheasant Walk +Pheasant Wood +Pheasant Woods +Pheasants +Pheasantwoods +Phebe +Pheby +Phegley Ridge +Phelan +Phelips +Phelp +Phelps +Phene +Pheonix +Phesant +Phethean +Phil +Phil Mar +Philadelphia +Philamena +Philanthropic +Philben +Philbrick +Philbrook +Philchurch +Philemon +Philemon Whale +Philip +Philip Darch +Philip Digges +Philip Howard +Philip Lee +Philip Sydney +Philipp +Philipps +Philips +Philips Mill +Phillida +Phillimore +Phillip +Phillip Brooks +Phillip Farm +Phillip Powers +Phillipa +Phillipi +Phillipi Creek +Phillipp +Phillippi Creek +Phillips +Phillips Beach +Phillips Brook +Phillips Farm +Phillips Manor +Phillips Oak +Phillips Park +Phillips Pond +Phillips Ranch +Phillipse +Phillis +Philmead +Philmont +Philmore +Philo +Philpot +Philpot End +Philpott +Phineas +Phineas Pett +Phinney +Phipp +Phipps +Phipps Bridge +Phipps Hatch +Phirne +Phleger +Phlox +Phoebe +Phoebeth +Phoenix +Phoenix Center +Phoenix Lake +Phoneline +Photinia +Photo +Phroane +Phylcis +Phyldan +Phyllis +Phyllis Court +Phyllis Wheatley +Phylliss +Phylmor +Physicians +Physics +Physics Ellipse +Phythian +Piacenti +Piaget +Piano +Piave +Piazza +Pibac +Pibrock +Picadilly +Picard +Picardy +Picasso +Piccadilly +Piccadilly Circus +Piccard +Piccoli +Piccotts End +Picha +Pichette +Pichie +Picholine +Pichowicz +Pick +Pickard +Pickaxe +Picken +Pickens +Picker +Pickeral +Pickerel +Pickering +Pickersgill +Picket +Picket Oaks +Pickets +Pickets Lock +Pickets Post +Pickett +Picketts +Picketts Lock +Pickfair +Pickford +Pickhill +Pickhurst +Pickman +Pickmere +Pickmoss +Pickpocket +Picksley +Pickstone +Pickwell +Pickwick +Pickwick Hill +Pickwood +Pickworth +Picnic +Picnic Access +Picnic Island +Picnic Point +Pico +Picone +Picosin +Picot +Picton +Pictor +Picts +Pictun +Picture +Pidding +Piddington +Piddock +Pidgeon Hill +Pidgeon Meadow +Pidham +Pied Piper +Piedmont +Piedmont Trail +Piedra +Piehl +Pield Heath +Pielet +Piemonte +Pier +Pier Approach +Pier Point +Pierce +Pierce Farm +Pierce Hill +Pierce Mill +Pierce Point +Pierce Ranch +Piercefield +Pierces +Piercy +Pierini +Pierino +Piermont +Pierpoint +Pierpont +Pierport +Pierre +Pierre Curie +Pierrefondes +Pierrepoint +Pierrepont +Pierron +Pierrpont +Piers +Piersoll +Pierson +Pierson Lake +Pierson Miller +Pierview +Piesley +Piester +Pietro +Piety Corner +Piezzi +Pig +Pig Rock +Pigbush +Pigdown +Pigeon +Pigeon Cote +Pigeon Farm +Pigeon Fork +Pigeon Hill +Pigeon Hollow +Pigeon Point +Pigeonhouse +Piggotshill +Piggott +Piggotts +Pigment +Pigott +Pigs Eye Lake +Pigstye Green +Pihl +Pika +Pike +Pike Branch +Pike End +Pike Lake +Pike Ridge +Pike School +Pikefish +Pikes +Pikes Hill +Pikes Peak +Pikeview +Pikey +Pikkney +Piland +Pilar Ridge +Pilarcitos +Pilarcitos Creek +Pilarcitos Quarry +Pilch +Pilcher +Pilcher Park +Pilchuk +Pilcot +Pilden +Pildra +Pile +Pilgram +Pilgrim +Pilgrim Hill +Pilgrimage +Pilgrims +Pilgrims Inn +Pilkington +Pill Hill +Pillar +Pillar Box +Pilling +Pillings +Pillings Pond +Pillmoss +Pillon +Pillory +Pillow +Pillow Lace +Pillowlace +Pillsbury +Pilning +Pilot +Pilot Knob +Pilot Rock +Pilothouse +Pilsbury +Pilsen +Pilsworth +Piltdown +Pilvinis +Pima +Pimaston +Pimblett +Pimento +Pimhole +Pimienta +Pimlico +Pimlott +Pimmit +Pimmit Run +Pimpernel +Pin Cherry +Pin Cushion +Pin Oak +Pina +Pinard +Pincents +Pincey +Pinch Brook +Pinchbeck +Pincherry +Pinchin +Pinchot +Pinchpools +Pinckney +Pincott +Pindar +Pindari +Pindell +Pindell School +Pinder +Pindle +Pine +Pine Acre +Pine Acres +Pine Aire +Pine Arden +Pine Bluff +Pine Breeze +Pine Brook +Pine Cliff +Pine Cone +Pine Cove +Pine Creek +Pine Crest +Pine Croft +Pine Flat +Pine Forest +Pine Garden +Pine Glen +Pine Grove +Pine Haven +Pine Hill +Pine Hill Cemetery +Pine Hills +Pine Hollow +Pine Hurst +Pine Island +Pine Knoll +Pine Knot +Pine Lake +Pine Lodge +Pine Manor +Pine Meadow +Pine Meadows +Pine Mountain +Pine Mountain Fire +Pine Needle +Pine Needles +Pine Oak +Pine Orchard +Pine Park +Pine Plain +Pine Point +Pine Ridge +Pine Shadow +Pine Spring +Pine Swamp +Pine Top +Pine Trail +Pine Tree +Pine Tree Brook +Pine Trees +Pine Vale +Pine Valley +Pine View +Pine Way +Pine Whiff +Pine Wild +Pine Wood +Pine Woods +Pineacre +Pineapple +Pineapple Grove +Pinebluff +Pinebrae +Pinebrook +Pinecastle +Pinecliff +Pinecone +Pinecote +Pinecreek +Pinecrest +Pinecrest Heights +Pinecrest Office Park +Pinecrest Vista +Pinecroft +Pinedale +Pinefield +Pineglen +Pinegrove +Pinehaven +Pinehill +Pinehurst +Pineknob +Pineknoll +Pineknot +Pinelake +Pineland +Pinelands +Pinelawn +Pineleigh +Pinell +Pinelynn +Pinemont +Pinemount +Pineneck +Pineneedle +Pineo +Piner +Piner Creek +Pinercrest +Pineridge +Pines +Pines Lake +Pinesfield +Pinetop +Pinetown +Pinetree +Pinetum +Pinevale +Pineview +Pineville +Pineway +Pinewold +Pinewood +Pinewoods +Piney +Piney Branch +Piney Church +Piney Glade +Piney Glen +Piney Grove +Piney Knoll +Piney Lodge +Piney Meetinghouse +Piney Point +Piney Pond +Piney Ridge +Piney Spring +Pinfod +Pinfold +Ping +Ping On +Pingate +Pingot +Pingree +Pingree Farm +Pingry +Pinho +Pini +Pinions +Pink +Pink Barn +Pink Woods +Pinkert +Pinkerton +Pinkham +Pinkle Hill +Pinkney +Pinkneys +Pinkspire +Pinkwell +Pinnacle +Pinnacle Ridge +Pinnacles +Pinneberg +Pinner +Pinner Love +Pinner Hill +Pinner Park +Pinney +Pinnington +Pinnock +Pinntage +Pinoak +Pinole +Pinole Shores +Pinole Valley +Pinon +Pinorie +Pinot +Pinot Noir +Pinrail +Pinrock +Pinson +Pinta +Pintail +Pintard +Pinter +Pinto +Pinto Lake +Pinto Trail +Pinview +Pinyaro +Pinyon +Pio Pica +Pioche +Pioneer +Pioneer Creek +Pioneer Hills +Pioneer Varni +Pioxi +Pipchin +Pipeline +Pipeline Fire +Pipeline Service +Piper +Piper Ridge +Piperhill +Pipers +Pipers Glen +Pipestone +Pipewell +Pipewood +Piping Rock +Pipit +Pippa +Pippen +Pippin +Pippins +Pippins Green +Pippit +Pippitta +Pippo +Piquet +Piquets +Pirate +Pirbright +Pirie +Pirrama +Pirrone +Pirton +Piscataway +Piscataway Landing +Piscataway Run +Pisces +Pisgah +Pisgah Marbury +Pishiobury +Pissaro +Pissarro +Pista +Pistache +Pistachio +Pistacia +Pit +Pit Farm +Pitcairn +Pitchcombe +Pitcher +Pitchford +Pitchfront +Pitcroft +Pitfall +Pitfield +Pitfold +Pither +Pitkin +Pitland +Pitlochry +Pitman +Pitner +Pitney +Pits Farm +Pitscottie +Pitsea +Pitsea Hall +Pitsford +Pitsham +Pitshanger +Pitsmoor +Pitstock +Pitt +Pitt Clarke +Pitt School +Pitt Town +Pittbrook +Pittis +Pittland +Pittman +Pittoni +Pitts +Pittsburg +Pittsburg Waterfront +Pittsburgh +Pittsfield +Pittsmead +Pittson +Pittsville +Pittwater +Pitz +Pius +Pivetta +Pivington +Pix +Pix Farm +Pixham +Pixie +Pixies Hill +Pixley +Pixmore +Pizarro +Pizien Well +Pizzorni +Place +Place Farm +Placehouse +Placenza +Placer +Placer Creek +Placer Mine +Placer Oaks +Placer Ridge +Placerville +Placerville Payen +Places +Placid +Placitas +Plafsky +Plaid +Plain +Plainedge +Plainfield +Plainfield Naperville +Plains +Plaintain +Plainview +Plainville +Plainwood +Plaister +Plaistow +Plaistow Green +Plaistow Park +Plam +Plamondon +Plan +Planada +Planchet +Planders +Plandome +Plane +Plane Tree +Planet +Planetree +Plank +Planky +Plant +Plant Hill +Plantagenet +Plantain +Plantation +Plante +Planten +Planters +Planters Field +Planthurst +Planting Field +Planting Fields +Plasecki +Plash +Plashes +Plashet +Plashet Grove Green +Plaskett +Plaskett Forest +Plass +Plassey +Plassy +Plastics +Plasto +Plata +Plate +Plate Mill +Plateau +Plater +Platform +Platform Bridge +Platina +Platinum +Plato +Platt +Platt Fold +Platt Hill +Platt House +Platt Ridge +Platte +Platten +Platting +Plattner +Platts +Plattsburg +Plattsdale +Plattville +Plattwood +Platwood +Platzer +Plauderville +Plawhatch +Plawsfield +Plaxdale Green +Plaxtol +Play Bowl +Playa +Playa Del Sol +Playa del Rey +Playden +Player +Players Pond +Playfair +Playfield +Playford +Playground +Playhatch +Playland Access +Playstead +Playstool +PlazA +Plaza +Plaza America +Plaza Service +Pleasance +Pleasant +Pleasant Acre +Pleasant Acres +Pleasant Chase +Pleasant Colony +Pleasant Crest +Pleasant Echo +Pleasant Garden +Pleasant Gate +Pleasant Glen +Pleasant Grove +Pleasant Grove School +Pleasant Heights +Pleasant Hill +Pleasant Hollow +Pleasant Knoll +Pleasant Lake +Pleasant Meadow +Pleasant Meadows +Pleasant Oaks +Pleasant Park +Pleasant Plains +Pleasant Ridge +Pleasant Run +Pleasant Spring +Pleasant Springs +Pleasant Valley +Pleasant View +Pleasant Vista +Pleasant Wood +Pleasant Woods +Pleasantdale +Pleasanton +Pleasanton Sunol +Pleasants Valley +Pleasantview +Pleasantville +Pleasent +Pleasington +Pleasure +Pleasure Creek +Pleasure House +Pleasure Island +Pleasure Pit +Pleasure Point +Pleasure View +Pleck +Pledger +Pleides +Pleitner +Plender +Plenge +Plenty +Plentywood +Plesant +Pleshey +Pletcher +Plevna +Pleydell +Plimpton +Plimsoll +Plinston +Pliny +Plitt +Ploch +Plodder +Plog +Plomer +Plomer Green +Plomosa +Plotner Farm +Plough +Plough Inn +Plough Wents +Ploughbank +Ploughley +Plover +Plover Hill +Plow +Plowden +Plowgate +Plowman +Pluckley +Plucksbridge +Pluff +Plug +Plum +Plum Beach Point +Plum Blossom +Plum Creek +Plum Dale +Plum Grove +Plum Hill +Plum Hollow +Plum Island +Plum Orchard +Plum Point +Plum Ranch +Plum Tree +Plum Valley +Plumage +Plumas +Plumas Lake +Plumberow +Plumberow Mount +Plumberrow +Plumbers Pasture +Plumbley +Plumbridge +Plume +Plumer +Plumeria +Plumfield +Plumford +Plumleigh +Plumley +Plumley Moor +Plummer +Plummerden +Plummers +Plummers Promise +Plumosa +Plumpointe +Plumpton +Plumptre +Plumrose +Plums +Plumstead +Plumstead Common +Plumstead High +Plumstone +Plumtree +Plumtree Cross +Plumwood +Plumy Feather +Plunge +Plunkett +Plurenden +Pluskota +Pluth +Pluto +Plyers Mill +Plymbridge +Plymoth Farms +Plymouth +Plymouth River +Plymouth Rock +Plympton +Plymton +Po +Po River +Poa Annua +Poag +Poar +Poate +Pobgreen +Pocahontas +Pocantico +Pocasset +Pocasset on Asbury +Pocatello +Pochard +Pochet +Pochin +Pock +Pocket +Pocket Nook +Pocketsdell +Pockford +Pockley +Pocklington +Poco +Pocock +Pococks +Pocol +Pocomoke +Pocono +Pocumtuck +Podbury +Podesta +Podesto +Podium +Podlin +Podmore +Podnor +Pods +Pods Brook +Podsmead +Podva +Poe +Poehlman +Poet +Poetry +Poets +Poett +Pogany +Poggi +Pogson +Pohick +Pohick Bay +Pohick Crest +Pohick River +Pohono +Poillon +Poinciana +Poindexter +Poinier +Poinsetta +Poinsettia +Point +Point Alabama +Point Allerton +Point Breeze +Point Creek +Point Dechene +Point East +Point Field +Point Gallinas +Point Group Camp +Point Hollow +Point Lobos +Point No Point +Point O Woods +Point Oak +Point Piper +Point Pleasant +Point Reyes Petaluma +Point Rider +Point Ridge +Point San Bruno +Point San Pedro +Point Somerset +Point View +Point of Timber +Point of Woods +Pointcross +Pointe +Pointe Claire +Pointe Pacific +Pointe Vista +Pointer +Pointer Ridge +Pointers +Pointview +Pointwell +Poirier +Poise Brook +Poisson +Poitras +Pokagon +Pokanoket +Poker +Poker Flat +Poko +Pokolbin +Pokonoket +Poland +Polar +Polar Bear +Polari +Polaris +Polding +Pole +Pole Hill +Pole Line +Pole Moor New Hey +Pole Mountain +Pole Plain +Poleacre +Polebrook +Polecat +Polecroft +Polefield +Polefield Hall +Polegate +Polehanger +Polen +Poles +Polesden +Polestub +Polesworth +Poley +Polhemus +Polhill +Poli +Polianski +Police +Polidoris +Polifly +Polillio +Poling +Polito +Politzer +Polk +Polk Saint Croix +Pollack +Pollard +Pollardrow +Pollards +Pollards Oak +Pollards Wood +Polled Hereford +Pollen +Polletts +Polley +Pollifrone +Pollin +Polling House +Pollis +Pollitt +Pollock +Polly +Polly Anna +Polly Park +Pollywick +Pollywog +Polo +Polo Club +Polo Crosse +Polo Field +Polo Pointe +Polo Pony +Polonia +Polonius +Polonsky +Polruan +Polson +Polsted +Poltimore +Polvadero +Polwarth +Polworth +Polygon +Polynesia +Polynesian +Polytechnic +Pomace +Pomander +Pomar Vista +Pombo +Pombo Square +Pombridge +Pomciticut +Pome +Pomegranate +Pomelo +Pomerado +Pomerol +Pomeroon +Pomeroy +Pomeworth +Pomfret +Pommander Walk +Pommel +Pommer +Pommeroy +Pomo +Pomoja +Pomoken +Pomona +Pompano +Pompei +Pompeii +Pomper +Pompey +Pomponi +Pomponio +Pompositticut +Pompton +Pomroy +Ponca +Ponce +Ponce de Leon +Poncetta +Poncia +Pond +Pond Brook +Pond Copse +Pond Cottage +Pond Crest +Pond Derosa +Pond Edge +Pond End +Pond End School +Pond Farm +Pond Field +Pond Head +Pond Hill +Pond Home +Pond House +Pond Meadow +Pond Moor +Pond Park +Pond Plain +Pond Point +Pond Ridge +Pond Run +Pond Spice +Pond View +Pond Wood +Pondbrook +Pondcrest +Pondcroft +Ponder +Pondera +Ponderay +Ponderlay +Ponderosa +Ponderrosa +Pondfield +Pondhaven +Pondholton +Ponds +Ponds Edge +Ponds Wood +Pondside +Pondtail +Pondview +Pondville Hospital +Pondwick +Pondwicks +Pondwood +Ponefract +Ponhill +Ponikin +Ponikin Bridge +Poningo +Ponkapoag +Ponler +Ponnell +Ponsard +Ponselle +Ponsford +Ponsi +Ponsonby +Pont +Pontefract +Ponteverde +Ponti +Pontiac +Pontigo Glen +Ponto +Ponton +Pontos +Ponus +Pony +Pony Brown +Pony Express +Pony Tracks Fire +Pony Trail +Ponyara +Ponytail +Ponza +Pook +Pook Reed +Pookbourne +Pooks Hill +Pool +Pool Bank +Pool Bank New +Pool End +Pool Harrogate +Pool Hollow +Pool House +Pool Ridge +Poole +Poole Court +Pooles +Pooley +Pooley Green +Pooleys +Poolman +Poolmans +Poolsford +Poolton +Poona +Poonah +Poor +Poor Farm +Poor Meadow +Poorhouse +Poors +Poot +Pootings +Pop Becker +Pope +Pope Canyon +Pope Hill +Pope House +Pope Valley +Pope Valley Cross +Popeley +Popes +Popes Head +Popes Head View +Popes Hill +Popham +Popjack +Popkins +Popkins Farm +Popland +Poplar +Poplar Bath +Poplar Branch +Poplar Bridge +Poplar Creek +Poplar Glen +Poplar Grove +Poplar High +Poplar Hill +Poplar Lake +Poplar Leaf +Poplar Ridge +Poplar Tree +Poplar View +Poplarhollow +Poplars +Pople +Poplicans +Popomora +Popondetta +Popov +Popowski +Poppenhusen +Popperwell +Poppinghole +Poppitz +Poppler +Poppleton +Popplewell +Poppy +Poppy Glen +Poppy Hill +Poppy Hills +Poppy House +Poppy Ridge +Poppy Seed +Poppyfield +Poppyhills +Poppyseed +Poppythorn +Popular +Populatic +Poquanticut +Poquita +Porach +Porazzo +Porcaro +Porchester +Porchlight +Porchuck +Porden +Pordon +Porete +Poricy +Porlock +Porpoise +Porrende +Porritt +Porsche +Porsche Preserve +Port +Port Barrington +Port Capital +Port Carteret +Port Center +Port Clinton +Port Cove +Port Echo +Port Hacking +Port Haven +Port Hill +Port Hope Point +Port Imperial +Port Jersey +Port Macquarie +Port Monmouth +Port Norfolk +Port Rae +Port Reading +Port Richmond +Port Rowan +Port Royal +Port Sailwood +Port Sunlight +Port Terminal +Port Tidewood +Port Victoria +Port View +Port Washington +Portadown +Portage +Portage Mountain +Portal +Portcullis Lodge +Porte de Leau +Portelet +Porten +Porteous +Porter +Porter Creek +Porter Gulch +Porter Hill +Porter Plain +Porter Ridge +Porter School +Porter Service +Porterfield +Porters +Porters Cove +Porters Hall +Porters Hill +Porters Park +Portesbery +Portesbury +Portesbury Hill +Porteus +Porthcave +Porthkerry +Porthole +Portia +Portico +Portifino +Portillo +Portina +Portinscale +Portland +Portledge +Portley +Portley Wood +Portlock +Portloe +Portmadoc +Portman +Portmill +Portmore +Portmore Park +Portnall +Portnellan +Portner +Porto +Porto Bello +Porto Marino +Porto Rico +Porto Rosa +Portobago +Portobello +Portobelo +Portofino +Portola +Portola Heights +Portola Meadows +Portola Redwood +Portos +Portpool +Portree +Portrero +Portrush +Portsdown +Portsea +Portshire +Portside +Portsmith +Portsmouth +Portsoken +Portugal +Portview +Portville +Portway +Portwine +Portwood +Porz +Posadera +Posco +Poseidon +Posen +Posey +Poshard +Positano +Positas +Poskus +Posnett +Poss +Possehl +Possum +Possum Hollow +Possum Point +Possum Run +Possumtown +Post +Post Barn +Post Forest +Post Gate +Post Horn +Post House +Post Island +Post Mills +Post Oak +Post Office +Post Office Delce +Post Office Spen +Post Ranch +Post Wood +Postal +Postal Service +Postern +Postley +Postmill +Postoak +Poston +Postscript +Posturpedic +Postwood +Pot Kiln +Potash +Potassium +Potato +Potato Hill +Potawatami +Potawatomi +Potawatomie +Potbelly Beach +Potbridge +Potee +Poteet +Pothier +Potier +Potley Hill +Potomac +Potomac Branch +Potomac Club +Potomac Creek +Potomac Crest +Potomac Falls +Potomac Forest +Potomac Greens +Potomac Heights +Potomac Hills +Potomac Knolls +Potomac Manors +Potomac Meadow +Potomac Mills +Potomac Oak +Potomac Oaks +Potomac Overlook +Potomac Palisades +Potomac Path +Potomac Ridge +Potomac Riding +Potomac River +Potomac School +Potomac Valley +Potomac View +Potomac Vista +Potomac Woods +Potomack +Potomic Tennis +Potomska +Potoroo +Potosi +Potovens +Potrero +Potrero Hills +Potsdam +Pott +Pottawatomie +Pottawattami +Pottens Mill +Potter +Potter Hill +Potteries +Potternewton +Potters +Potters Crouch +Pottersheath +Potterton +Pottery +Potteton +Pottinger +Pottingfield +Pottle +Pottok +Potton +Potts +Potts Point +Pouchen End +Poughkeepsie +Poulet +Poulett +Pouley +Poulin +Pouliot +Poulos +Poulson +Poulter +Poultney +Poulton +Poultry +Pound +Pound Farm +Pound Hollow +Pound Ridge +Poundfield +Poundhurst +Pounds +Pountney +Pountsmonth +Pourier +Poust +Pout +Pout Rock +Poverest +Povershon +Poverty +Poverty Flat +Povey +Povey Cross +Powder +Powder Hill +Powder Horn +Powder House +Powder Mill +Powder Mill Fire +Powder Point +Powderbrook +Powderhorn +Powderhouse +Powdermill +Powderworks +Powdrell +Powdrill +Powell +Powell Cove +Powells +Powells Cove +Powells Creek +Powellton +Power +Power County +Power House +Power Inn +Power Lines +Power Plant +Power Ridge +Powerline +Powers +Powerville +Powhatan +Powhatan Beach +Powhattan +Powicke +Powis +Powissett +Powlett +Pownal +Pownall +Powney +Powster +Powys +Poydras +Poyer +Poyle +Poynder +Poynders +Poynes +Poynings +Poyntell +Poynter +Poynters +Poynton +Poyntz +Poyser +Poyton +Pozieres +Pozza +Pozzan +Prada +Prade +Pradel +Pradera +Pradera Mesa +Prado +Prado Secoya +Prado Vista +Praed +Pragel +Pragnell +Prague +Prah +Prahran +Prahser +Praire +Praire Dunes +Praire Island +Praire Lawn +Prairie +Prairie Center +Prairie City +Prairie Clover +Prairie Creek +Prairie Crossing +Prairie Dog +Prairie Estates +Prairie Falcon +Prairie Farm +Prairie Field +Prairie Flower +Prairie Grass +Prairie Grove +Prairie Hill +Prairie Knoll +Prairie Lakes +Prairie Landing +Prairie Meadow +Prairie Meadows +Prairie Moon +Prairie Oak +Prairie Path +Prairie Point +Prairie Pointe +Prairie Ridge +Prairie Rose +Prairie Sage +Prairie Schooner +Prairie Spring +Prairie Trail +Prairie Vale +Prairie Valley +Prairie View +Prairie Wind +Prairieland +Prairieside +Prairieview +Prairiewood +Prairiewoods +Praise +Prall +Pram +Prancing +Prancing Deer +Pranker +Prarie +Prarie Vale +Prarievale +Prater +Prather +Prathertown +Pratling +Pratolina +Pratt +Pratt Hill +Pratten +Pratton +Pratts +Pratts Farm +Pratts Mill +Pratum +Pray +Prc +Preacher +Preakness +Prebend +Prebendal +Preble +Preble Gardens +Preciado +Precious +Precissi +Precita +Preda +Preddys +Predella +Predmore +Preesall +Preinkert +Prell +Prelude +Premier +Premier Park +Premisy Hill +Premium Outlets +Premium Point +Premium River +Prendergast +Prenkert +Prentice +Prentice Hall +Prentis +Prentiss +Prenton +Presall +Presburg +Presco +Prescot +Prescott +Presdales +Presentation +Preservation +Preserve +Preserverance +President +President Point +Presidental +Presidente +Presidential +Presidents +Presidents Park +Presideo +Presidio +Presland +Presley +Press +Pressley +Pressmont +Pressprich +Presswick +Prestage +Prestancia +Prestbury +Prested +Prestfield +Prestige +Presto +Prestolee +Prestolite +Preston +Preston Beach +Preston White +Prestonfield +Prestons +Prests Mill +Prestwich +Prestwick +Prestwood +Preswick +Preswicke +Pretoria +Prettygate +Prettymans +Preuss +Prevost +Prewett +Prewett Ranch +Prey Heath +Priam +Price +Prices +Prichard +Priddis +Priddle +Priddy +Pride +Pride Crossing +Pride of Baltimore +Prideaux +Prideham +Prideland +Pridemark +Prides +Pridham +Pridmore +Pridmouth +Priebe +Prieboy +Priesing +Priest +Priest Bridge +Priest Park +Priester +Priesters Pond +Priestfield +Priesthorpe +Priestlands Park +Priestley +Priestly +Priestnall +Priests +Priestwood +Prigmore +Prima +Primary +Primasing +Primavera +Prime +Primero +Primett +Primevera +Primitive +Primley +Primley Park +Primm +Primrose +Primrose Hill +Primula +Prince +Prince Albert +Prince Andrew +Prince Arthur +Prince Caspian +Prince Charles +Prince Charlie +Prince Chigo +Prince Consort +Prince Crossing +Prince David +Prince Edward +Prince Edward Park +Prince Edwards +Prince Frederick +Prince George +Prince Georges +Prince Henry +Prince Imperial +Prince James +Prince John +Prince Lake +Prince Philip +Prince Phillip +Prince Regent +Prince Royal +Prince Rupert +Prince William +Prince Willow +Prince of Wales +Princedale +Princedom +Princeleigh +Princes +Princes Park +Princes Riverside +Princesfield +Princess +Princess Ann +Princess Anne +Princess Diana +Princess Eve +Princess Margaret +Princess Marina +Princess Mary +Princess May +Princess Pine +Princethorpe +Princeton +Princeton Park +Princevalle +Princeville +Princewood +Prince’s +Principal +Princton +Prindiville +Prindle +Pringle +Prinknash +Printempo +Printemps +Printer +Printers +Printice +Printing House +Printon +Printworks +Printy +Prinys +Priolo +Prion +Prior +Prior Bolton +Prior Farm +Prioress +Priors +Priors Hatch +Priors Wood +Priorsfield +Priorsford +Priory +Priory Farm +Priory Field +Priory Park +Priory Park Lee +Priory Park Middle +Priory View +Priorywood +Prioulx +Priscilla +Priscilla Alden +Prism +Prison +Pritchard +Pritchards +Priter +Prittlewell +Privado +Private +Private Anthony Rezza +Privateer +Privet +Privett +Privilege +Privit +Pro +Probate +Probert +Probst +Probyn +Procop +Procopio +Procter +Proctor +Proctors +Prodehl +Produce +Producers +Production +Professional +Professional Center +Professional Hill +Proffit +Profitt +Profumo +Program +Progress +Progressive +Progresso +Prom +Promenade +Promentory +Promintory +Promise +Promontory +Promontory Point +Pronto +Properity +Prophet +Proposed +Propp +Props Hall +Prose +Prospect +Prospect Hill +Prospect Knolls +Prospect Park +Prospect Point +Prospector +Prosper +Prosperi +Prosperity +Prospero +Prosser +Protano +Protectocoat +Prothero +Proud +Prout +Prout Farm +Prouty +Provance +Provencal +Provence +Provender +Provenzano +Providence +Providence Forest +Providence Forge +Providence Village +Provident +Province +Provincetown +Provincial +Provis +Proviso +Provo +Provost +Prowse +Proyart +Pru +Prudence +Prudential +Pruetts +Pruitt +Prune +Prune Acres +Prune Blossom +Prune Tree +Prunedale +Prunedale North +Pruneridge +Prunetree +Prunier +Prusakowski +Pruxne +Prybyl Pond +Pryde +Pryer +Pryer Manor +Pryite +Prykes +Pryme +Pryor +Pryors +Pryton +Pryzbylko +Pt Chase +Ptarmigan +Pubins +Public +Public Highway Long +Public Safety +Public Works +Puccini +Puchala +Puck +Puddephats +Pudding +Pudding Brook +Pudding Cake +Pudding Hill +Pudding Mill +Puddingcake +Puddingstone +Puddington +Puddledock +Puddlewharf +Puddon +Pudsey +Pudsey Hall +Pueblo +Pueblo Vista +Puers +Puerto +Puerto Rico +Puerto Vallarta +Puff +Puffer +Puffin +Pug +Puget +Pugh +Puha +Pukwans +Pulaski +Pulaski Hill +Pulawski +Pulborough +Pulens +Pulford +Pulgas +Pulham +Pulido +Pulis +Pullard +Pullborough +Pullen +Pullens +Puller +Pulley +Pulleyns +Pulleys +Pullman +Pulpit +Pulpit Rock +Pulross +Pulsar +Pulsifer +Pulteney +Pulver +Puma +Pumice +Pump +Pump House +Pumphouse +Pumphrey +Pumphrey Farm +Pumpkin +Pumpkin Brook +Pumpkin Hill +Pumpkin Pine +Punch +Punch Bowl +Punch Copse +Punchard +Punchbowl +Punt +Puntey Park +Pupek +Pupkis +Pupple +Purbeck +Purbrook +Purce +Purcell +Purchase +Purchese +Purdey +Purdham +Purdie +Purdom +Purdon +Purdue +Purdun +Purdy +Purdy Point +Purdy Ranch +Purfield +Purfleet +Purgatory +Purify +Purington +Purinton +Purisima +Purisima Creek +Purissima +Puritan +Puritan Mall Service +Purity +Purity Springs +Purkis +Purkiss +Purland +Purleigh +Purley +Purley Bury +Purley Downs +Purley Oaks +Purley Park +Purlings +Purlwell +Purnell +Purneys +Purple Beech +Purple Glen +Purple Hills +Purple Leaf +Purple Martin +Purple Sage +Purpleleaf +Purri +Purrington +Purse +Pursell +Pursers +Pursley +Purson +Purton +Purves +Purvine +Purvis +Purwell +Purwell Hall +Pusan +Pussy Willow +Putah Creek +Putah Creek Lodge +Putarri +Putcie +Putland +Putman +Putnam +Putnam Hill +Putnams +Putney +Putney Bridge +Putney Heath +Putney High +Putney Park +Putnum +Putt +Puttenden +Puttenham +Puttenham Heath +Putter +Putteridge +Putting +Puttnam +Puttney +Puves +Puzone +Pyalla +Pyburn +Pye +Pye Brook +Pyegrove +Pyenest +Pyenot Hall +Pylbrook +Pyle +Pyles +Pym +Pymble +Pymgate +Pymmes +Pymmes Green +Pymms Brook +Pymont +Pyms +Pynders +Pyne +Pynest Green +Pynnings Farm +Pyott +Pyrah +Pyramid +Pyrcroft +Pyrenees +Pyrford +Pyrford Common +Pyrite +Pyrite Mine +Pyrl +Pyrland +Pyrles +Pyrmont +Pyrmont Bridge +Pyro +Pyrola +Pyrossia +Pytchley +Pytha Fold +Pythian +Pyxie +Q Fernwood +Qantas +Qaurnby +Quaas +Quabeck +Quaboag +Quackenbush +Quaddick +Quaddick Mountain +Quaddick Town Farm +Quade +Quadra +Quadrangle +Quadrant +Quadrille +Quadros +Quaid +Quail +Quail Bluff +Quail Canyon +Quail Cove +Quail Creek +Quail Crest +Quail Estates +Quail Haven +Quail Hill +Quail Hollow +Quail Lakes +Quail Meadow +Quail Meadows +Quail Pointe +Quail Ridge +Quail Roost +Quail Run +Quail Valley +Quail Vista +Quail Walk +Quail Woods +Quailbrook +Quailhill +Quails Roost +Quailwood +Quailwood Manor +Quaint +Quaint Acres +Quainton +Quake +Quaker +Quaker Hill +Quaker Hollow +Quaker Knoll +Quaker Meeting House +Quaker Ridge +Quakers +Quakers Hall +Quakers Hill +Quaking +Quaking Aspen +Quale +Quality +Qualls +Quam +Quamba +Quamme +Quance +Quandam +Quander +Quanders Promise +Quandong +Quandt +Quane +Quann +Quannacut +Quannapowitt +Quantas +Quantico +Quantock +Quantrell +Quantrelle +Quantuck +Quantum +Quantum Leap +Quarantine +Quarles +Quarles Park +Quarley +Quarlton +Quarr +Quarrendon +Quarropas +Quarry +Quarry Arm +Quarry Bank +Quarry Bend +Quarry Hill +Quarry Lakes +Quarry Master +Quarry Mount +Quarry Park +Quarry Pond +Quarry Ridge +Quarry Wood +Quarter +Quarter Charge +Quarter Horse +Quarter Landing +Quarter Mile +Quarter Sessions +Quarterbrass Farm +Quarterdeck +Quarterfield +Quarterfield Farms +Quarterfield Park +Quarterhorse +Quartermain +Quartermaine +Quartermass +Quartermaster +Quartermaster Canyon +Quartermile +Quarterstaff +Quartet +Quartette +Quartz +Quaspec +Quassey +Quate +Quater Sessions +Quattro +Quaves +Quay +Quayle +Que +Queander +Quebec +Queen +Queen Adelaide +Queen Alexandra +Queen Ann +Queen Anne +Queen Anne Bridge +Queen Annes +Queen Caroline +Queen Catherine +Queen Chapel +Queen Charlotte +Queen Eleanor +Queen Eleanors +Queen Elizabeth +Queen Elizabeths +Queen Hoo +Queen Mary +Queen Marys +Queen Victoria +Queenair +Queenbeyan +Queenborough +Queendown +Queenhill +Queenhythe +Queens +Queens Brigade +Queens Brook +Queens Chapel +Queens Cross +Queens Crossing +Queens Farm +Queens Gate +Queens Grove +Queens Mead +Queens Park +Queens Row +Queens View +Queens Well +Queens Wood +Queensberry +Queensborough +Queensbridge +Queensbrook +Queensburg +Queensbury +Queenscliff +Queenscroft +Queensdale +Queensdown +Queensferry +Queensgate +Queensguard +Queenshill +Queenside +Queensland +Queensmead +Queensmill +Queensport +Queensthorpe +Queenston +Queenstone +Queenstone Fire +Queenstown +Queenstowne +Queensville +Queensway +Queensway Shaw +Queensway Tennyson +Queenswood +Queenwood +Queen’s +Queirolo +Quell +Quelm +Quelway +Quema +Quemerford +Quemoy +Quenby +Quencer +Quendon +Quentin +Quentin Roosevelt +Quercus +Quernmore +Querques +Query +Query Mill +Quesada +Quest +Questwood +Quetta +Quetzal +Quiamong +Quibble +Quick +Quick Edge +Quick Fox +Quickbourne +Quickedge +Quickley +Quickmoor +Quickrells +Quicksilver +Quickstep +Quidnic +Quien Sabe +Quien Sabe Ranch +Quiescence +Quiet +Quiet Brook +Quiet Cedar +Quiet Harbor +Quiet Knolls +Quiet Meadow +Quiet Oak +Quiet Owl +Quiet Place +Quiet Spring +Quiet Tree +Quiet Valley +Quiet View +Quiet Waters Farm +Quiet Woods +Quietfields +Quietwater +Quietwater Ridge +Quietwood +Quigg +Quiggle +Quigley +Quilberry +Quill +Quill Point +Quillback +Quilp +Quilpie +Quilt Patch +Quilter +Quilters +Quilting +Quimby +Quimby Point +Quinan +Quinapoxet +Quinby +Quince +Quince Mill +Quince Orchard +Quince Ridge +Quince Tree +Quince Valley +Quince View +Quincefield +Quincey +Quincy +Quincy Adams +Quincy Bridge +Quincy Marr +Quincy Shore +Quindel +Quine +Quinlan +Quinlisk +Quinn +Quinn Canyon +Quinnell +Quinnhill +Quinnterra +Quinobequin +Quinque +Quinsenberry +Quinsey +Quinshapaug +Quinsigamond +Quint +Quintal +Quintana +Quintara +Quintard +Quintas +Quinten +Quintette +Quintin +Quintinia +Quinton +Quinton Oaks +Quintree +Quinturn +Quintus +Quinwood +Quiram +Quire +Quirk +Quirkes +Quirnia +Quiros +Quisenberry +Quisenbury +Quisisana +Quisset +Quisset Brook +Quissett +Quist +Quitman +Quito +Quiver +Quiver Ridge +Quixley +Qume +Quo +Quoitings +Quonset +Quorn +Quota +R B Brown +R F Higgins +R Fernwood +R Shore +R. Belanger +R. T. Jones +R.Belanger +REavenswood +Raab +Raabe +Raans +Raap +Rabans +Rabaul +Rabbett +Rabbit +Rabbit Chase +Rabbit Hill +Rabbit Run +Rabbits +Rabbits Run +Rabbitt +Rabies Heath +Rabkin +Rabley Heath +Raboli +Raboth +Rabournmead +Rabro +Rabun +Raby +Raccoon +Race +Race Course +Race Horse +Race Track +Racecourse +Racefield +Racetrack +Rachael +Rachael Manor +Rachael Whitney +Rachel +Rachel Hill +Rachell +Rachelle +Racine +Racing Horse +Rack +Rack Close +Rackham +Rackhouse +Rackstraw +Racoon +Racquet +Racquet Club +Racton +Rad +Radar +Radatz +Raday +Radbourne +Radburn +Radcliff +Radcliffe +Radcliffe Moor +Radcliffe Park +Radclive +Radclyffe +Radcot +Raddant +Raddel +Raddin +Raddin Grove +Raddington +Radfield +Radford +Radha +Radial +Radian +Radiant +Radiata +Radigan +Radio +Radison +Radisson +Radisson Woods +Radium +Radius +Radlet +Radlett +Radlett Park +Radley +Radley Green +Radleys +Radlix +Radmere +Radmore +Radnage Common +Radner +Radnor +Radnormere +Rado +Radoff +Radonich +Radstock +Radtke +Radwick +Radwinter +Rae +Rae Ann +Rae Anne +Raeanne +Raeben +Raeburn +Raechel +Raemore +Raemot +Raes Creek +Rafael +Rafaela +Raff +Raffaele +Raffen +Rafferty +Raffin Green +Raffman +Raffo +Rafkind +Raflo +Rafman +Raftelis +Rafter Ridge +Rafton +Raftree +Rag Hill +Rag Rock +Ragatz +Ragazzi +Ragged Hall +Ragged Hill +Raggio +Raging Brook +Raglan +Ragland +Ragle +Ragle Ranch +Ragmans +Rago +Ragonese +Rags +Ragsdale +Ragstone +Rahara +Rahatyn +Rahlves +Rahn +Rahncliff +Rahul +Rahway +Rahway River +Raich +Raider +Raiders +Raiff +Raikes +Raikes Wood +Rail +Railey +Railroad +Railroad Grade +Railroad Grade Fire +Railroad Seekonk +Railshead +Railside +Railton +Railway +Raimond +Raimonde +Rain +Rain Cloud +Rain Meadow +Rain Tree +Raina +Rainbow +Rainbow Bay +Rainbow Bridge +Rainbow Ranch +Rainbow Ridge +Rainbow View +Raincliffe +Raindance +Raindrop +Raine +Rainer +Raineri +Raines +Rainey +Rainflower +Rainford +Rainforth +Rainham +Rainier +Rainow +Rainsboro +Rainsborough +Rainsborowe +Rainsford +Rainshaw +Rainsong +Rainsville +Rainswood +Raintree +Rainview +Rainville +Rainwell +Rainwood +Rainy Spring +Raisig +Raith +Rak +Rake +Rakehill +Rakewood +Rakstad +Ralco +Raldne +Rale +Raleana +Raleigh +Raleigh Farm +Raleigh Hill +Raleigh Tavern +Raley +Ralliwood +Ralls +Rally +Ralmar +Ralmark +Ralph +Ralph Crossen +Ralph G Hamlin Jr +Ralph Jackson +Ralph Lee +Ralph Mann +Ralph Talbot +Ralph Young +Ralphs +Ralsey +Ralston +Ralston Ranch +Ralstone +Ralwood +Ram +Ram Ridge +Rama +Ramada +Ramal +Ramalho +Ramapo +Ramapo Brae +Ramapo Hills +Ramapo Mountain +Ramapo Valley +Ramble +Ramble Creek +Rambledown +Rambler +Rambler Rose +Ramblers +Ramblewood +Ramblin Rose +Rambling +Rambling Brook +Rambling Ridge +Rambling Rose +Rambling Woods +Rambow +Rambush +Ramby +Ramella +Ramen +Ramer +Ramey +Ramgren +Ramie +Ramillies +Ramish +Ramkay +Ramleh +Ramm +Rammer +Ramney +Ramon +Ramona +Ramondo +Ramone +Ramos +Ramoso +Rampart +Rampayne +Ramptons +Ramridge +Ramrod +Rams +Ramsay +Ramsbottom +Ramsbury +Ramscote +Ramsdale +Ramsdean +Ramsdell +Ramsden +Ramsden Park +Ramsell +Ramsey +Ramsey Main +Ramsgate +Ramshaw +Ramshead +Ramshorn +Ramslye +Ramstad +Ramstead +Ramstree +Ramulis +Ramuz +Ramview +Ran +Ranburn +Ranby +Rance +Rances +Ranch +Ranch River +Ranch View +Rancheria +Ranchero +Ranchette +Ranchita +Ranchito +Ranchland +Rancho +Rancho Adobe +Rancho Arroyo +Rancho Bernardo +Rancho Brazil +Rancho Caballo +Rancho Cabeza +Rancho Calabasas +Rancho Corralitos +Rancho Deep Cliff +Rancho Diablo +Rancho Higuera +Rancho Hills +Rancho Juan Inez +Rancho Laguna +Rancho Lindo +Rancho Madre +Rancho Manuella +Rancho McCormick +Rancho Palomares +Rancho Plaza +Rancho Prieta +Rancho Ramon +Rancho Rea +Rancho Rio +Rancho S Luado +Rancho Silva +Rancho Solano +Rancho Soquel +Rancho Todos Santos +Rancho Ventura +Rancho View +Rancho Vista +Rancho del Lago +Rancho la Baca +Ranchview +Ranchwood +Rancliffe +Rancom +Rand +Randal +Randale +Randall +Randall Farm +Randall Hill +Randall Island +Randall Ridge +Randalls Park +Rande +Randell +Randells +Randell’s +Randerson +Randi +Randle +Randlesham +Randlett +Rando +Randol +Randol Creek +Randolph +Randolph Macon +Random +Random Hills +Random Run +Randonstone +Randou +Rands +Rands Clough +Randville +Randwick +Randwood +Randy +Randys +Ranelagh +Ranelegh +Raneleigh +Raneys +Ranford +Ranfre +Ranfurley +Ranfurly +Range +Range Heights +Rangel +Rangeley +Rangely +Rangely Ridge +Rangemoor +Rangemore +Ranger +Rangers +Rangers Retreat +Rangeview +Rangeway +Rangewood +Rangley +Rangoon +Ranicar +Ranick +Ranier +Rankin +Rankine +Ranks Green +Ranleagh +Ranleigh +Ranleigh Manor +Ranlett +Ranley +Ranmere +Ranmore +Ranmore Common +Rannal +Ranney +Rannoch +Rannock +Ranport +Ransdell +Ransell +Ransfield +Ransley +Ransom +Ranson +Ranspot +Ranston +Ranters +Rantoul +Rantoule +Ranulf +Ranworth +Rapelye +Raper +Raphael +Raphaels +Rapid +Rapidan +Rapids +Rapley +Rapley Preserve +Rapley Ranch +Rapley Ridge +Raposa +Rapp +Rappahannock +Rappahanock +Rappahanook +Rappax +Rappleyea +Rapsley +Raptor +Raquel +Raritan +Raritan Reach +Rasbottom +Rascher +Rashawn +Rashida Muhammad +Rashke +Raskin +Raskulinecz +Rasmussen +Rason +Raspberry +Raspberry Hill +Raspberry Plain +Rasper +Rassani +Rassbottom +Rassignini +Rastell +Rasweiler +Rat +Ratchford +Ratcliff +Ratcliffe +Ratcliffe Cross +Ratcliffe Manor +Ratekin +Raters +Rath +Rathan +Rathane +Rathbone +Rathbourne +Rathbun +Rathburn +Rathcoole +Rathen +Rathfern +Rathgar +Rathlin +Rathmann +Rathmel +Rathmell +Rathmore +Rathwell +Ratlin +Ratner +Rattle Snake Hill +Rattlesnake +Rattlesnake Hill +Ratto +Rattray +Rattwick +Ratzer +Rau +Raub +Raul +Raupach +Raupp +Rausch +Ravatt +Rave +Ravel +Raveley +Ravelston +Raven +Raven Brook +Raven Hill +Raven Rock +Ravena +Ravenbank +Ravendale +Ravenel +Ravenet +Ravenfield +Ravenglass +Ravenhill +Ravenhurst +Ravenna +Ravenoak +Ravenoak Park +Ravenor Park +Ravenrock +Ravens +Ravens Cove +Ravens Crest +Ravens Head +Ravensbourne +Ravensbourne Park +Ravensbury +Ravenscliffe +Ravenscourt +Ravenscraig +Ravenscroft +Ravensdale +Ravensdon +Ravenshaw +Ravenshurst +Ravenslea +Ravensmead +Ravenstone +Ravenswood +Ravensworth +Ravenue +Ravenwood +Ravina +Ravine +Ravine Forest +Ravine Park +Ravine View +Ravine Woods +Ravinia +Ravinia Park +Ravinoaks +Ravizza +Ravnescroft +Ravona +Ravoux +Raw +Rawcliffe +Rawding +Rawdon +Rawhide +Rawhiti +Rawleigh +Rawles +Rawley Springs +Rawling +Rawlings +Rawlins +Rawlinson +Rawls +Rawlyn +Rawnsley +Rawreth +Rawson +Rawson Bridge +Rawson Hill +Rawsthorne +Rawston +Rawstorn +Rawstorne +Rawstron +Ray +Ray Harvey +Ray Hill +Ray Lea +Ray Leonard +Ray Lodge +Ray May +Ray Mead +Ray Moses +Ray Park +Ray Wise +Rayanna +Raybarn +Raybel +Rayben +Raybor +Rayborn Creek +Raybrook +Rayburn +Raycroft +Raydale +Raydean +Raydol +Raydon +Raydons +Raye +Rayfield +Rayford +Rayjohn +Rayland +Raylands +Raylands Way Cranmore +Rayleigh +Rayleigh Downs +Raylen +Rayley +Raylow +Raym +Raymar +Rayme +Raymead +Rayment +Raymer +Raymond +Raymond Hall +Raymonds +Raymoor +Raymound +Raymundo +Raymus +Raynahm +Rayne +Raynel +Raynel Mount Raynel +Rayner +Rayners +Raynes +Raynham +Raynold +Raynor +Raynsford +Raynton +Raynville +Rays +Rayshire +Rayson +Raywood +Razo +Rea +Reabrook +Reach +Read +Read Head +Readbourne +Reade +Reader +Readers +Reades +Reading +Reading Arch +Reading Hill +Readon +Reads +Reads Rest +Readscroft +Readville +Ready +Readys +Reagan +Reagent +Reaghs Farm +Real +Reality +Realm +Realton +Ream +Reamer +Reamwood +Reamy +Reaney +Reaper +Rear Abbey +Rear Main +Rear Perkins +Rear Wildwood +Rear of Marsh +Rearden +Reardon +Reares +Reason +Reaston +Reaves +Reavis +Reb +Reb Yank +Reba +Rebboli +Rebeau +Rebecca +Rebecca Park +Rebeiro +Rebekah +Rebel +Rebel Run +Rebel Walk +Rebelo +Rebels +Reber +Recard +Recht +Recino +Recker +Reckinger +Reckitt +Reconcilliation +Record +Recovery +Recreation +Recreation Ground +Recreation Park +Rector +Rectory +Rectory Park +Reculver +Recycle +Recycling +Red +Red Oak +Red Acre +Red Admiral +Red Alder +Red Apple +Red Ash +Red Bank +Red Bark +Red Barn +Red Barracks +Red Berry +Red Birch +Red Bird +Red Branch +Red Brick +Red Brick Farm +Red Bridge +Red Bud +Red Cedar +Red Cedar Point +Red Cedars +Red Cherry +Red Circle +Red Clay +Red Cloud +Red Clover +Red Coach +Red Coat +Red Cottage +Red Cow +Red Creek +Red Cross +Red Cypress +Red Deer +Red Dog Creek +Red Eagle +Red Elk +Red Fall +Red Farm +Red Fern +Red Forest +Red Fox +Red Frank +Red Gate +Red Grave +Red Ground +Red Hall +Red Harvest +Red Haven +Red Haw +Red Hawk +Red Hawk Canyon +Red Hill +Red Hills +Red Hook +Red Horse Tavern +Red House +Red Jacket +Red Jade +Red Leaf +Red Lion +Red Lion Lower +Red Maple +Red Miles +Red Mill +Red Mine +Red Mountain +Red Oad +Red Oak +Red Oak Service +Red Patch +Red Peak +Red Pheasant +Red Pine +Red Ribbons +Red Ridge +Red River +Red Robin +Red Rock +Red Rocks +Red Rome +Red Roof +Red Rose +Red Rum +Red Sherry +Red Sky +Red Spring +Red Spruce +Red Tail +Red Top +Red Willow +Red Winery +Red Wing +Red Wood +Redacre +Redan +Redar +Redbank +Redberry +Redbird +Redbourn +Redbournbury +Redbourne +Redbournebury +Redbrdge +Redbridge +Redbrook +Redbud +Redburn +Redcar +Redcastle +Redchurch +Redcliff +Redcliffe +Redclyffe +Redco +Redcoach +Redcoat +Redcot +Redcote +Redcourt +Redcroft +Redd +Reddall +Reddan +Redden +Redden Court +Reddfield +Reddick +Redding +Redding Park +Redding Ridge +Reddings +Reddington +Reddington Ridge +Reddins +Reddish +Reddish Vale +Reddisher +Reddown +Reddy +Rede Court +Rede Wood +Redehall +Redeker +Reden +Reder +Redesmere +Redfearn +Redfern +Redfield +Redford +Redgap +Redgate +Redgrave +Redgrove +Redgum +Redhall +Redhatch +Redhaven +Redhawk +Redhead +Redhill +Redhills +Redhook +Redhouse +Reding +Redington +Redins +Redisher +Redlac +Redlake +Redland +Redlands +Redleaf +Redleaves +Redman +Redmans +Redmayne +Redmead +Redmen +Redmere +Redmiles +Redmire +Redmond +Redmont +Redmoor +Redmore +Redmount +Redmyre +Rednal +Redneck +Redner +Redoak +Redoaks +Redondo +Redondo Beach +Redoubt +Redpine +Redpol +Redpoll +Redricks +Redriff +Redriffe +Redrock +Redrose +Redruth +Redshank +Redshaw +Redskin +Redskin Park +Redskins +Redstart +Redstock +Redston +Redstone +Redstone Hill +Redtail +Redthorn +Redvales +Redvers +Redvers Buller +Redview +Redwall +Redwell +Redwing +Redwings +Redwood +Redwood Canyon +Redwood Gulch +Redwood Heights +Redwood Hill +Redwood Hwy Frntg +Redwood Lodge +Redwood Oak +Redwood Retreat +Redwood Shores +Redwood Terrace +Redwood Tree +Reebenacker +Reece +Reece Heights +Reecemar +Reed +Reed Crescent Bryony +Reed Hall +Reed Hill +Reed Knoll +Reed Ranch +Reedbird +Reede +Reeder +Reedgate +Reedham +Reedham Park +Reedhurst +Reedie +Reedling +Reeds +Reeds Mill +Reedsdale +Reedsfield +Reedshaw +Reedswood +Reedworth +Reedy +Reedy Brook +Reedy Meadow +Reef +Reef Point +Reely +Reem +Reenglass +Rees +Reese +Reetey +Reeve +Reeves +Reevey +Refinement +Refinery +Reflection +Reflections +Reform +Refugio +Refugio Valley +Refy +Regal +Regal Lily +Regal Oak +Regal West +Regal Wood +Regalia +Regan +Regan Hall +Reganti +Regarder +Regarth +Regas +Regatta +Regency +Regency Crest +Regency Forest +Regency Grove +Regency Knoll +Regency Manor +Regency Oaks +Regency Park +Regency Ridge +Regency Woods +Regeneration +Regent +Regent Park +Regents +Regents Park +Regents Tower +Regentville +Regentwood +Reger +Regimental +Regina +Reginald +Regio +Region +Regional +Regional Center +Regis +Regnart +Regnart Canyon +Regnid +Regor +Regrave +Regulos +Regulus +Regwill +Rehbaum +Rehling +Rehn +Rehrmann +Reiby +Reich +Reichelt +Reicher +Reichert +Reichling +Reichman +Reid +Reid Pond +Reidel +Reidhaven +Reidmond +Reids Hill +Reids Roost +Reidsville +Reifel +Reiffel +Reigate +Reiger +Reighton +Reigl +Reign +Reihl +Reiker +Reiland +Reiley +Reiling +Reille +Reilleys +Reilly +Reiman +Reimche +Reimer +Reimers +Reims +Rein +Reina +Reina del Mar +Reindeer +Reinekers +Reinelt +Reiner +Reiners +Reinert +Reingold +Reinhard +Reinhardt +Reinhart +Reinhold +Reinickendorf +Reinking +Reinman +Reinmann +Reino +Reins Lee +Reinwood +Reis +Reisewitz +Reising +Reisling +Reisner +Reiss +Reiten +Reiter +Reith +Reitveldt +Reitz Lake +Relander +Relay +Reld +Relda +Reldyes +Relentless +Relf +Reliance +Reliant +Reliez Highland +Reliez Valley +Relihan +Relkin +Rellim +Relocation +Relyea +Rem +Rembrandt +Rembrant +Remco +Rememberance +Remembrance +Remenham +Remenham Church +Remer +Remi +Remick +Remigio +Remillard +Remin +Remington +Remital +Remly +Remmel +Remmey +Remmos +Remnant +Remo +Remora +Remsen +Remsens +Remson +Remuda +Remuera +Remus +Ren +Rena +Renaissance +Renaldo +Renard +Renate +Renaud +Renault +Renaux +Renchler +Rendall +Rendlesham +Rendon +Rene +Renee +Renee Ann +Renforth +Renfrew +Renfro +Renhult +Reni +Renida +Renie +Renison +Renita +Renke +Renken +Renker +Renmar +Renmark +Renmin +Renmuir +Renn +Rennee +Rennell +Renner +Rennes +Rennet +Rennie +Rennie Smith +Renninger +Renny +Reno +Renoir +Renoir Port +Renolds +Renouf +Renoux +Renova +Renown +Renshaw +Rensselaer +Rensslear +Rental Car +Renters +Renton +Renton Maple Valley +Rentoul +Renway +Renwick +Renwick Park +Renwood +Renz +Renzo +Reo +Reock +Reon +Repetti +Repetto +Replingham +Report +Reporton +Reposa +Repository +Reposo +Reppan +Reppy +Representative +Reprise +Repton +Repton Manor +Republic +Republican +Requa +Reque +Resaca +Rescigno +Rescue +Research +Research Park +Reseau +Reseca +Reseda +Reservation +Reserve +Reservior +Reservoir +Reservoir Access +Reservoir Heights +Reservoir Hill +Resevoir +Residence +Residency +Resident +Reskin +Resnik +Resolution +Resota +Response +Ressa +Rest +Rest Point +Restarick +Restful +Restharrow +Resthaven +Reston +Restormel +Restwell +Restwood +Resty +Reta +Retford +Retirement +Retiro +Retner +Retrato +Retreat +Retriever +Retrop +Retta +Rettendon +Rettew +Rettig +Rettman +Return +Retz +Reuben +Reubens +Reunion +Reuss +Reuten +Reuter +Rev Henry +Rev JJ Evans +Rev Thomas Hooker +Reva +Reva Ridge +Revel +Revell +Revell Downs +Revelon +Revels +Revelstok +Revelstoke +Revenge +Revenna +Revensbourne +Revensey +Reventlow +Rever +Revere +Revere Beach +Revere House +Reverend Burns +Reverend Davis +Reverend R A Burke +Reverend Walton +Reverse +Revey +Revie +Review +Reville +Revillo +Revingstone +Revock +Revoir +Revolution +Revolutionary +Revolutionary Ridge +Revonah +Revonna +Rewe +Rewell +Rewley +Rex +Rexburg +Rexford +Rexhame +Rexland +Rexleigh +Rexmore +Rey +Reyam +Reycraft +Reycroft +Reydon +Reyem +Reyer +Reyes +Reymont +Reymouth +Reyna +Reynal +Reynaldo +Reynard +Reynards +Reynardson +Reynaud +Reynell +Reyner +Reynold +Reynolds +Reynolds Mill +Reynosa +Reyome +Reywood +Rfd Checker +Rfd Coach +Rfd Country Club +Rfd Lexington +Rfd Lincoln +Rfd Old Hicks +Rfd Popp +Rfd Shenandoah +Rfd Shiloh +Rhame +Rhapsody +Rhea +Rheam +Rheem +Rhen +Rhett +Rhianna +Rhine +Rhinecliff +Rhinehart +Rhinelander +Rhinesmith +Rhinestone +Rhinette +Rhita +Rhiwlas +Rhoades +Rhoda +Rhode +Rhode Hall +Rhode Harbor +Rhode Island +Rhodell +Rhodenda +Rhodes +Rhodesia +Rhodeswell +Rhodeswood +Rhodewell +Rhodin +Rhododendron +Rhodora +Rhodrons +Rhody +Rhonda +Rhonda Rheault +Rhondda +Rhone +Rhos +Rhosleigh +Rhoy +Rhubena +Rhude +Rhuland +Rhus +Rhus Ridge +Rhyan +Rhyl +Rhynas +Rhys +Ria +Riach +Rialto +Riano +Rib +Ribble +Ribblesdale +Ribbon +Ribbs +Ribchester +Ribeiro +Ribera +Ribero +Ribier +Ribston +Ribstone +Ric +Rica +Ricard +Ricardo +Ricca Farm +Riccardo +Riccards +Riccat +Ricci +Ricciuti +Rice +Rice City +Rice Creek +Rice Lake +Rice Mill +Rice Point +Rice Spring +Ricefield +Riceman +Rich +Rich Acres +Rich Branch +Rich Hill +Rich Meadow +Rich Valley +Richal +Richard +Richard Allen +Richard Burch +Richard House +Richard J Brown +Richard Lawrence +Richard Manor +Richard Meyjes +Richard Montgomery +Richard Simpson +Richard Tongue +Richardi +Richards +Richardshaw +Richardson +Richardson Nursery +Richbell +Richborough +Richbourne +Richdale +Riche +Richelieu +Richenbacher +Richert +Riches +Richfield +Richford +Richgar +Richgrain +Richie +Richion +Richland +Richland Grove +Richland Valley +Richlands +Richlee +Richman +Richmere +Richmond +Richmond George +Richmond Beach +Richmond George +Richmond Hill +Richmond Meech +Richmond Park +Richmond Valley +Richmondfield +Richmount +Richnee +Richter +Richter Farm +Richton +Richton Square +Richview +Richwood +Rick +Rickabear +Rickard +Rickards +Rickbern +Rickenbacker +Ricker +Rickerhill +Rickerman +Rickert +Rickett +Ricketts +Ricketts Hill +Ricketty +Rickey +Rickland +Rickling +Rickling Green +Rickman +Rickmans +Rickmansworth +Rickover +Ricks +Ricksons +Rickstones +Rickthorne +Ricky +Ricky Dick +Rico +Ricoli +Ricord +Ricroft +Riddell +Ridder Park +Riddiford +Ridding +Riddings +Riddio +Riddle +Riddles +Riddlesdale +Riddlesdown +Riddons +Riddy +Riden +Rideout +Rider +Rider Ridge +Riders +Riderwood +Ridg Gate +Ridgdale +Ridge +Ridge Bluff +Ridge Brook +Ridge Camp +Ridge Chapel +Ridge Cliff +Ridge Cove +Ridge Creek +Ridge Croft +Ridge Crossing +Ridge Farm +Ridge Fire +Ridge Ford +Ridge Haven +Ridge Heights +Ridge Hill +Ridge Hill Farm +Ridge Knoll +Ridge Moor +Ridge Oak +Ridge Park +Ridge Point +Ridge Pond +Ridge Ponds +Ridge Retreat +Ridge River +Ridge Rock +Ridge Top +Ridge View +Ridge Wood +Ridgebrook +Ridgecreek +Ridgecrest +Ridgecroft +Ridgecrop +Ridgedale +Ridgedell +Ridgefarm +Ridgefield +Ridgefield Village +Ridgegate +Ridgegreen +Ridgehill +Ridgehurst +Ridgeland +Ridgeland Manor +Ridgelands +Ridgelawn +Ridgelee +Ridgeley +Ridgeline +Ridgely +Ridgemark +Ridgemead +Ridgemist +Ridgemont +Ridgemoor +Ridgemore +Ridgemount +Ridgepoint +Ridgerock +Ridgeside +Ridgestone +Ridgetop +Ridgevale +Ridgeview +Ridgeville +Ridgewald +Ridgewater +Ridgeway +Ridgewell +Ridgewick +Ridgewind +Ridgewood +Ridgewood Fire +Ridgley +Ridgmont +Ridgmount +Ridgway +Ridgway Hill +Ridgwell +Ridham +Riding +Riding Center +Riding Club +Riding Court +Riding Fields +Riding Fold +Riding Hood +Riding House +Riding Loop +Riding Ridge +Riding Trail +Ridings +Ridlands +Ridler +Ridley +Ridling +Ridlon +Ridout +Ridpath +Ridsdale +Riebli +Riedel +Riedell +Rieder +Riedesel +Riedy +Riegel +Riegelmann +Rieke +Rieman +Rienzi +Riesco +Riesgraf +Riesling +Rieter +Riethel +Rieti +Riffa +Riffams +Riffel +Riffhams +Riffle +Riffle Ford +Riffles +Rifhams +Rifle +Rifle Range +Rifle Ridge +Riford +Rifton +Riga +Rigault +Rigby +Rigdale +Rigden +Rigdon +Rigel +Rigeley +Rigelsford +Rigene +Rigent +Rigery +Rigg +Rigger +Riggindale +Riggs +Riggs Hill +Riggs Manor +Right of Way +Righter +Righters Mill +Rigi +Rigler +Rignall +Rignals +Rigney +Rignold +Rigoletto +Rigoli +Rigor +Rigsby +Rigshill +Rigton +Riis Park +Riivendell +Riker +Riker Hill +Riley +Riley Lake +Riley Ridge +Rileyford +Rileys Lock +Rill +Rillbank +Rillo +Rilma +Rim +Rim Rock +Rim of the Redwoods +Rimbach +Rimbley +Rimby +Rimer +Rimfire +Rimington +Rimini +Rimkus +Rimlet +Rimmer +Rimmington +Rimrock +Rimsdale +Rimswell Holt Redcar +Rimu +Rimwood +Rimworth +Rinaldo +Rinard +Rincon +Rincon Fire +Rinconada +Rinda +Rindge +Rindle +Rindo Park +Rindone +Rinear +Riner +Ring +Ring Bolt +Ring Dove +Ring Hey +Ring Neck +Ring Valley +Ringcroft +Ringden +Ringe +Ringefield +Ringel +Ringenback +Ringer +Ringers +Ringfield +Ringford +Ringgold +Ringland +Ringler +Ringlestone +Ringlet +Ringley +Ringley Park +Ringling +Ringlow +Ringlow Park +Ringmer +Ringmoor +Ringmore +Ringneck +Ringo +Ringold +Rings End +Ringshall +Ringshaw +Ringslade +Ringstead +Ringway +Ringwood +Rini +Rink +Rinnock +Rintin +Rinwood +Rinzee +Rio +Rio Altos +Rio Blanco +Rio Bonito +Rio Bravo +Rio Chico +Rio Dixon +Rio Grande +Rio Hondo +Rio Linda +Rio Lindo +Rio Lobo +Rio Loma +Rio Mondego +Rio Nido +Rio Oso +Rio Poco +Rio Robles +Rio Serena +Rio Tierra +Rio Tinto +Rio Verde +Rio Vida +Rio Vista +Rio de Molinos +Rio del Mar +Rio del Ora +Riordan +Riparian +Ripe Apple +Ripley +Ripley Hill +Ripley Park +Ripleys Field +Ripon +Ripon Hall +Ripona +Rippburger +Rippenden +Rippersley +Rippingham +Ripple +Ripple Brook +Ripplemead +Ripplerock +Rippleview +Ripplewater +Ripplewood +Rippling +Rippling Branch +Rippling Brook +Rippling Pond +Rippling Ridge +Rippolson +Rippon +Rippon Lodge +Ripponden +Ripponden Nursery +Ripponden Old +Rippowam +Rips +Ripston +Risa +Risborough +Risch +Riscioni +Risden +Risdon +Rise +Rise Park +Risebridge +Risedale +Riseden +Risel +Riseldine +Riseley +Riser +Risha +Rishell +Rishton +Rishworth +Rishworth New +Rising +Rising Creek +Rising Dawn +Rising Glen +Rising Ridge +Rising Sun +Risinghill +Risingholme +Risk +Riske +Riskin +Risley +Rison +Risorta +Rispin +Rissington +Ristaino +Rita +Ritch +Ritchard +Ritchboro +Ritches +Ritchfield +Ritchie +Ritchie Marlboro +Ritchie Spur +Ritchings +Ritcroft +Riteway +Ritherdon +Ritie +Ritson +Rittenhouse +Ritter +Ritters +Rittner +Riva +Riva Ridge +Rival +Rival Moor +Rivanna +Rivanna River +Rivara +Rivard +Rivas +Rive +Rivelly +Riven Wood +Rivendell +Rivenoak +River +River Access +River Acres +River Airport +River Bank +River Bay +River Beach +River Bend +River Birch +River Bluff +River Club +River Clyde +River College +River Creek +River Crescent +River Crest +River Crossing +River Dell +River Edge +River Estates +River Falls +River Farm +River Farms +River Forest +River Front +River Gate +River Glen +River Grange +River Grove +River Heights +River Hill +River Hills +River Inn +River Island +River Landing +River Lawn +River Look +River Meadow +River Meadows +River Mill +River Mist +River Oak +River Oaks +River Park +River Plaza +River Point +River Pointe +River Ranch +River Rapids +River Ridge +River Rock +River Run +River Shore +River Swan +River Terrace +River Trail +River Tweed +River Valley +River View +River View Park +River View Quarry +River Village +River Walk +River Watch +River Wood +River Woods +RiverPark +Rivera +Riverark +Riverband +Riverbank +Riverbend +Riverbirch +Riverbluff +Riverboat +Riverboat Center +Riverbrook +Riverby +Rivercliff +Rivercourt +Rivercreek +Rivercrest +Riverdale +Riverdene +Riveredge +Riverfield +Rivergate +Riverhead +Riverhill +Riverholme +Riverhurst +Riverina +Riverlake +Riverland +Riverlands +Riverlane +Riverlawn +Riverlin +Rivermark +Rivermead +Rivermeads +Rivermist +Rivermont +Rivermoor +Rivermouth +Riverneck +Riverpark +Riverpoint +Riverrun +Rivers +Rivers Bend +Rivers Bluff +Rivers Edge +Rivers Reach +Rivers View +Riverscape +Riversdale +Riversdown +Riversend +Rivershill +Rivershire +Rivershore +Riverside +Riverside Park +Riverside Railroad +Riverside Run +Riverside Ter +Riverside View +Riverstone +Riversview +Riversville +Riverton +Rivertown +Rivertowne +Rivervale +Riverview +Riverview Acres +Riverview Rest +Riverwalk +Riverway +Riverwood +Riverwood Terrace +Riverwoods +Rivett +Riviera +Riviera Point +Riviera Sun +Rivington +Rivoir +Rivoli +Rivulet +Rix +Rixey +Rixford +Rixlew +Rixon +Rixsen +Rixson +Rixton +Rixtonleys +Riza +Rizal +Rizdon +Rizzo +Rizzolo +Roach +Roache +Road To the Ranches +Roading +Roading Brook +Roadrunner +Roads End +Roakes +Roald +Roamer +Roan +Roane +Roanne +Roanoke +Roaring Brook +Roaring Camp +Roaring Creek +Roaring Gate +Roark +Roarty +Roasalie +Roath +Rob +Rob Roy +Robak +Robander +Robandy +Robard +Robb +Robb Farm +Robbart +Robben +Robbern +Robbery Bottom +Robbia +Robbie +Robbin +Robbins +Robbins Farm +Robblee +Robby +Robbyn +Robecq +Roberge +Roberson +Robert +Robert Adam +Robert Arey +Robert Best +Robert Bigelow +Robert Bonazzoli +Robert Bowie +Robert Carter +Robert Dollar +Robert E Jason +Robert Evans +Robert F Toner +Robert Ford +Robert Frost +Robert Fulton +Robert Gabriel +Robert Grant +Robert H Harp +Robert Hall +Robert J Mathews +Robert Kirk +Robert L Smith +Robert L. Curbeam Jr. +Robert Lenox +Robert Lewis +Robert Louis +Robert M Bond +Robert Mays +Robert Memorial +Robert Miller +Robert Owen +Robert Parker Coffin +Robert Post +Robert Small +Robert Sproul +Robert T Palmer +Robert Treat Paine +Robert W Topham Jr +Robert York +Roberta +Roberto +Roberton +Roberts +Roberts Common +Roberts Cove +Roberts Lake +Roberts Orchard +Roberts Prospect +Roberts Ranch +Roberts Wood +Robertshaw +Robertson +Robertson Park +Roberttown +Robeson +Robey +Robeys Meadow +Robideaux +Robie +Robie Manor +Robilliard +Robin +Robin Ann +Robin Crest +Robin Dell +Robin Glen +Robin Hill +Robin Hood +Robin Meadow +Robin Oak +Robin Ridge +Robin Wood +Robina +Robincrest +Robindale +Robinette +Robinhood +Robinia +Robinridge +Robins +Robins Island +Robins Nest +Robinsbay +Robinsbridge +Robinsdale +Robinson +Robinson Creek +Robinson Jefferson +Robinson Landing +Robinsons Bay +Robinswood +Robinwood +Robison +Robjohns +Robken +Roblar +Roble +Roble Alto +Roble Ladera +Roble Ridge +Roble Veneno +Robleda +Robledo +Roblee +Robles +Robles Grandes +Robles Ranch +Robley +Roblyn +Roblynn +Robnel +Robovic +Robroy +Robs +Robsart +Robscott +Robshaw +Robsheal +Robshire Manor +Robson +Roburta +Robway +Roby +Robyn +Roc +Roc Fall +Roca +Rocart +Rocastle +Rocaton +Rocbaar +Rocca +Rocco +Rocfort +Roch +Rochambeau +Rochdale +Rochdale Old +Rochdate +Roche +Rochefort +Rochell +Rochelle +Rocher +Rochester +Rochester Way Reief +Rochester Way Relief +Rochester way Relief +Rochford +Rocina +Rock +Rock A Bye +Rock Anna +Rock Brook +Rock Canyon +Rock Cap +Rock Chapel +Rock Cliff +Rock Coast +Rock Cove +Rock Creek +Rock Creek Park +Rock Crystal +Rock Farm +Rock Fish +Rock Garden +Rock Glen +Rock Hall +Rock Harbor +Rock Hill +Rock Hollow +Rock House +Rock Island +Rock Lawn +Rock Ledge +Rock Lily +Rock Lodge +Rock Maple +Rock Meadow +Rock O Dundee +Rock Oak +Rock Point +Rock Ranch +Rock Ridge +Rock River +Rock Rose +Rock Run +Rock Spring +Rock Springs +Rock Valley +Rock Villa +Rock Wren +Rockanna +Rockaway +Rockaway Beach +Rockaway Breezy +Rockaway Point +Rockaway Valley +Rockbourne +Rockbridge +Rockburn +Rockburn Branch Park +Rockburn Hill +Rockburn Woods +Rockcliff +Rockcreek +Rockcrest +Rockcroft +Rockdale +Rockdale Plaza +Rockdove +Rockefeller +Rockenbach +Rockett +Rockfeller +Rockfield +Rockford +Rockford Service +Rockgate +Rockglen +Rockhall +Rockhampton +Rockhaven +Rockhill +Rockhold +Rockhold Creek +Rockhold Creek Shore +Rockhurst +Rockie +Rocking Horse +Rocking Spring +Rockingchair +Rockingham +Rockinghorse +Rockingstone +Rockins +Rockland +Rockland House +Rockland Park +Rocklands +Rocklawn +Rockledge +Rockleigh +Rockley +Rockliffe +Rocklin +Rocklyn +Rockmart +Rockmead +Rockmeadow +Rockmere +Rockmont +Rockmount +Rockne +Rockpile +Rockpoint +Rockpointe +Rockport +Rockridge +Rockrose +Rocks +Rocks Park +Rocksborough +Rocksbury +Rockshaw +Rockshire +Rockspray +Rockstone +Rockstrech +Rockton +Rockvale +Rockview +Rockville +Rockware +Rockway +Rockwell +Rockwin +Rockwood +Rockwood Heights +Rockwood Ranch +Rocky +Rocky Beach Farm +Rocky Bend +Rocky Branch +Rocky Brook +Rocky Creek +Rocky Crest +Rocky Dundee +Rocky Gap +Rocky Glen +Rocky Heights +Rocky Hill +Rocky Hills +Rocky Hollow +Rocky Knoll +Rocky Ledge +Rocky Meadow +Rocky Mount +Rocky Mountain +Rocky Nook +Rocky Point +Rocky Pond +Rocky Ravine +Rocky Ridge +Rocky Run +Rocky Shore +Rocky Spring +Rocky Springs +Rocky Top +Rocky Valley +Rocky Woods +Rockyledge +Rockywater +Rocliffe +Rocque +Rocsam Park +Rocton +Rod +Rod Beudry +Rod Laver +Rod Mill +Roda +Rodao +Rodborough +Rodbridge +Rodby +Rodd +Rodda +Rodeck +Roden +Rodenburg +Rodenhurst +Rodens +Rodeo +Rodeo Ridge +Roder +Roderick +Rodes +Rodgers +Rodgers Gravel Pit +Rodiman +Roding +Rodings +Rodley +Rodling +Rodman +Rodmarton +Rodmell +Rodmere +Rodmill +Rodney +Rodnick +Rodoani +Rodona +Rodondo +Rodonovan +Rodrigues +Rodriguez +Rodriques +Rodsall +Rodway +Rodwell +Roe +Roe Cross +Roe Downs +Roe Green +Roeacre +Roebling +Roebuck +Roeburne +Roeckel +Roedean +Roeder +Roediger +Roehampton +Roehampton High +Roehmer +Roehrs +Roel +Roeller +Roemer +Roentgen +Roesler +Roesner +Roessler +Roessner +Roestock +Rofant +Rofay +Rofe +Roff +Roff Point +Roffen +Roffes +Roffey +Rofford +Rogan +Rogart +Rogell +Roger +Roger Bacon +Roger Canoe Hollow +Roger Dimmick +Roger Goodwin +Roger Williams +Rogerio +Rogers +Rogers Cockrell +Rogers Farm +Rogers Heights +Rogers Park +Rogers Rough +Rogers Wood +Rogge +Roggel +Rogina +Rogowski +Rogue River +Rohan +Rohatyn +Rohavic +Rohde +Rohe +Rohini +Rohl +Rohlffs +Rohlwing +Rohn +Rohrer +Rohrman +Rohrsen +Rohrssen +Roine +Rojewski +Rojina +Roke +Roke Lodge +Rokeby +Roker +Roker Park +Rokers +Rokesby +Rokesly +Rokeva +Rokewood +Rokosz +Rolan +Roland +Roland Baxter +Rolander +Rolando +Rolee +Roleen +Rolerson +Rolestone +Roley +Rolf +Rolfe +Rolison +Roliver +Roll +Roll Shop +Rollesby +Rolleston +Rollie +Rollie Shepherd +Rollin +Rollin Acres +Rolling +Rolling Acres +Rolling Brook +Rolling Field +Rolling Forest +Rolling Fork +Rolling Glen +Rolling Green +Rolling Hill +Rolling Hills +Rolling Hlls +Rolling Holly +Rolling House +Rolling Knolls +Rolling Meadow +Rolling Meadows +Rolling Oak +Rolling Oaks +Rolling Plains +Rolling Ridge +Rolling River +Rolling Rock +Rolling Tree +Rolling View +Rolling Views +Rolling Wood +Rollingdale +Rollingdell +Rollingridge +Rollingside +Rollingstone +Rollingtop +Rollingwood +Rollingwoods +Rollinmead +Rollins +Rollins Ford +Rollinson +Rollo +Rolls +Rolls Park +Rollscourt +Rollstone +Rollswood +Rollwind +Rolly +Rollyn L Anderson +Rolph +Rolt +Rolton +Rolvenden +Rolyn Hills +Roma +Romack +Romagnolo +Romain +Romaine +Roman +Roman Farm +Roman Villa +Romana +Romanelli +Romanes +Romanfield +Romanhurst +Romani +Romanko +Romano +Romanowski +Romany +Romar +Romayne +Rombalds +Romberg +Rombouts +Romden +Rome +Romeo +Romeoville +Romer +Romero +Romey +Romeyn +Romford +Romier +Romig +Romiga +Romiley +Romilly +Romily +Romines +Romke +Romley +Romlon +Rommany +Rommel +Romney +Romney Lock +Romney Marsh +Romola +Romona +Romondt +Romp +Romscho +Romsey +Romsley +Romulus +Ron Cowan +Ron Lee +Ron Mace +Rona +Ronada +Ronaele +Ronald +Ronald Beall +Ronald P. Safer +Ronald Park +Ronalds +Ronaldstone +Ronan +Ronarm +Ronart +Ronbru +Ronco +Ronda +Ronde +Rondeau +Rondee +Rondel +Rondelay +Rondell +Rondin +Rondini +Rondorey +Rondu +Roneck +Ronek +Ronelean +Roney +Ronfearn +Ronhill +Ronian +Ronkonkoma +Ronni +Ronnie +Ronny +Rons +Ronson +Ronsu +Ronver +Ronwood +Rony +Ronzheimer +Rood +Roodlands +Roof +Rook +Rook End +Rookcross +Rooke +Rookery +Rookesley +Rookfield +Rooks +Rookstone +Rookwood +Rooley +Rooley Moor +Roome +Rooms +Rooney +Roop +Roos +Roosa +Roosevel +Roosevelt +Rooster +Root +Rootes +Roothill +Roots +Roots Hall +Rope +Ropeknot +Ropemaker +Roper +Ropers +Ropery +Ropes +Ropes Creek +Ropes Crossing +Ropley +Roppolo +Roque Moraes +Roquena +Roquette +Rorano +Rorke +Rorty +Ros Emily +Rosa +Rosa Blanca +Rosa Morada +Rosa Moss +Rosa Parks +Rosa Vista +Rosabel +Rosabell +Rosada +Rosado +Rosal +Rosalia +Rosalie +Rosalind +Rosalinda +Rosaline +Rosalita +Rosalla +Rosamond +Rosamun +Rosamund +Rosanna +Rosanne +Rosano +Rosaria +Rosarie +Rosario +Rosary +Rosaryville +Rosas +Rosaville +Rosbach +Roscoe +Roscoe Maverick +Roscoe Rowe +Roscommon +Roscow +Roscrea +Rose +Rose Acres +Rose Ann +Rose Anna +Rose Anne +Rose Arbor +Rose Bank +Rose Bates +Rose Bay +Rose Blossom +Rose Bush +Rose Cottage +Rose Creek +Rose Crest +Rose Ellen +Rose Farm +Rose Forest +Rose Garden +Rose Glen +Rose Hall +Rose Hatch +Rose Haven +Rose Hey +Rose Hill +Rose Kennedy +Rose Kiln +Rose Marie +Rose Mary +Rose Park +Rose Payten +Rose Point +Rose Ranch +Rose Ridge +Rose View +Rose Vine +Rose Wood +Rosea +Roseacre +Roseann +Roseanna Park +Roseanne +Rosebank +Rosebay +Roseberry +Roseberry Farm +Rosebery +Rosebine +Rosebloom +Rosebowl +Rosebriar +Rosebridge +Rosebrrok +Rosebud +Rosebury +Rosebush +Roseby +Roseclair +Rosecliff +Rosecourt +Rosecraft +Rosecran +Rosecrest +Rosecroft +Rosecroft Village +Roseda +Rosedale +Rosedene +Rosedew +Rosedown +Roseen +Rosefarm +Rosefinch +Roseford +Rosegarden +Rosegarth +Rosegate +Roseglen +Rosegold +Rosegum +Rosehall +Rosehaven +Rosehay +Roseheath +Rosehill +Roselake +Roseland +Roselands +Roselare +Roselawn +Roselea +Roseleaf +Roseleigh +Roselin +Rosell +Rosella +Roselle +Roselli +Roselynn +Rosemar +Rosemarie +Rosemary +Rosemead +Rosemeade +Rosemear +Rosemeath +Rosemere +Rosemill +Rosemily +Rosemont +Rosemont Hills +Rosemoor +Rosemore +Rosemount +Rosen +Rosenau +Rosenbaum +Rosenbrook +Rosenburger +Rosencrantz +Rosendale +Roseneath +Rosenfeld +Rosenfield +Rosengren +Rosenkranz +Rosensteel +Rosenstock +Rosenthal +Rosenthorpe +Rosenwinkle +Roseridge +Roserton +Roses +Rosethorn +Rosetta +Rosette +Rosevale +Rosevear +Roseveare +Rosevelt +Roseview +Roseville +Rosevine +Rosewalk +Rosewall +Rosewater +Roseway +Rosewind +Rosewood +Rosewood Manor +Rosey Bill +Rosford +Rosgill +Rosherville +Rosie Lee +Rosier +Rosiers Branch +Rosieville +Rosilian +Rosilie +Rosin +Rosina +Rosincress +Rosinweed +Rosita +Roskell +Roskelley +Roskin +Roslin +Roslindale +Roslyn +Roslyndale +Rosmead +Rosner +Roso +Rosol +Rosoman +Ross +Ross Arnold +Ross Branch +Ross Forry +Ross Hall +Ross Landing +Ross Lave +Ross Park +Ross Ridge +Ross Smith +Ross Valley +Rossal +Rossall +Rossback +Rossborough +Rossdale +Rosse +Rossefield +Rosselerin +Rossen +Rossenclough +Rossendale +Rosser +Rosseter +Rossett +Rossetti +Rossfold +Rossford +Rossi +Rossindel +Rossington +Rossini +Rossiter +Rosskelly +Rosslare +Rosslee +Rosslyn +Rosslyn Hill Pond +Rossmere +Rossmill +Rossmoor +Rossmore +Rossmoyne +Rossotto +Rossvale +Rossville +Rossway +Rosswood +Rosta +Rostella +Rostherne +Roston +Rostrevor +Rostron +Rostrov +Roswell +Rosy +Rosyman +Roszanski +Rota +Rotary +Rotcher +Rotella +Roth +Rothay +Rothbard +Rothbrook +Rothbury +Rothe +Rothenburg +Rother +Rotheram +Rotherbank Farm +Rotherbridge +Rotherby +Rothercombe +Rotherfield +Rotherham +Rotherhead +Rotherhill +Rotherhithe New +Rotherhithe Old +Rotherithe New +Rotherwick +Rotherwood +Rothery +Rothes +Rothesay +Rothgeb +Rothiemay +Rothley +Rothmans +Rothrack +Rothsay +Rothschild +Rothwell +Rothwell Churchfield +Rothwell Commercial +Roton +Rotorua +Rotterdam +Rottingdene +Rottkamp +Rottnest +Rotuma +Rotunda +Roualt +Roubound +Rouciano +Roudsby +Rouel +Rouen +Rouge +Rougemont +Rough +Rough Heys +Rough Rider +Roughan +Roughdown +Roughetts +Roughlea +Roughtley +Roughtown +Roughway +Roughwood +Rouillard +Rounce +Round +Round A Bend +Round Barn +Round Bay +Round Bush +Round Coppice +Round Hill +Round Hill Club +Round Ings +Round Lake +Round Lick +Round Oak +Round Pebble +Round Spring +Round Swamp +Round Table +Round Thorn +Round Top +Round Tree +Roundabout +Roundals +Roundaway +Roundbush +Roundel +Roundelay +Roundfield +Roundhay +Roundhead +Roundhill +Roundhouse +Roundmead +Roundmoor +Rounds +Roundshead +Roundstone +Roundtable +Roundthorn +Roundtop +Roundtree +Roundview +Roundwood +Roundy +Rounsevell +Rounthorn +Rountree +Roupell +Rourke +Rouse +Rouse Hill +Rouse Mill +Rousebarn +Rousham +Rousillon +Rousseau +Roussell +Roustein +Routh +Routier +Rovato +Roveout +Rover +Rovina +Roving Hills +Roving Wood +Row +Rowallan +Rowalt +Rowan +Rowan Field +Rowan Tree +Rowanberry +Rowanhurst +Rowans +Rowanside +Rowanswood +Rowantree +Rowanwood +Rowardennan +Rowarth +Rowayton +Rowayton Woods +Rowberry +Rowbotham +Rowcross +Rowdell +Rowden +Rowditch +Rowdon +Rowdown +Rowdowns +Rowe +Rowe Hill +Rowe Ranch +Rowell +Rowen +Rowena +Rowendale +Rowfant +Rowhill +Rowhook +Rowhurst +Rowland +Rowland Hill +Rowland Park +Rowlands +Rowlatt +Rowlett +Rowley +Rowley Bank +Rowley Bridge +Rowley Hill +Rowleys +Rowleys Point +Rowliff +Rowling +Rowlls +Rowly +Rowner +Rowney +Rowntree +Rowood +Rowplatt +Rowser +Rowsley +Rowson +Rowton +Rowton Grange +Rowzill +Roxalina +Roxana +Roxann +Roxanna +Roxanne +Roxas +Roxborough +Roxborough Park +Roxburg +Roxburgh +Roxbury +Roxbury Mills +Roxen +Roxeth Green +Roxeth Hill London +Roxholme +Roxie +Roxley +Roxton +Roxwell +Roxy +Roy +Roy Croft +Roy Frerichs +Roy Patrick +Royal +Royal Ann +Royal Anne +Royal Arch +Royal Beach +Royal Birkdale +Royal Burgandy +Royal Burkedale +Royal Carriage +Royal Coach +Royal Coachman +Royal Connaught +Royal County Down +Royal Court +Royal Creek +Royal Crest +Royal Crown +Royal Dane +Royal Docks +Royal Dominion +Royal Doulton +Royal Dublin +Royal Engineers +Royal Estates +Royal Exchange +Royal Forest +Royal Fox +Royal Foxhunt +Royal Garden +Royal George +Royal Georgian +Royal Glen +Royal Green +Royal Heights +Royal Hill Roan +Royal Hills +Royal Hospital +Royal Lake +Royal Lytham +Royal Meadow +Royal Melbourne +Royal Mint +Royal Oak +Royal Oaks +Royal Palm +Royal Park +Royal Patents +Royal Pier +Royal Plaza +Royal Porthcawl +Royal Portrush +Royal Quay +Royal Ridge +Royal Robin +Royal Saint George +Royal Sovereign +Royal Swan +Royal Tern +Royal Trees +Royal Troon +Royal Vale +Royal View +Royal West Kent +Royal Woods +Royal Worchester +Royal Worlington +Royalblue +Royalcrest +Royale +Royale Glen +Royale Park +Royall +Royalston +Royalthorn +Royalthorne +Royalton +Royalwood +Royat +Roycar +Royce +Roycraft +Roycroft +Royd +Royd Moor +Royden +Roydene +Roydon +Roydon Hall +Royds +Royds Farm +Royds Hall +Royle +Royle Green +Royley +Roylston +Roynton +Royon +Roys +Roys Hill +Royson +Royston +Royston Park +Royton +RoyzElle +Royzelle +Rozalyn +Rozanne +Rozella +Rozelle +Ruabon +Ruane +Ruann +Ruatan +Rub of Green +Rubar +Rubastic +Rubble +Rubbly +Rubens +Rubenstein +Rubicon +Rubicon Farm +Rubidoux +Rubie +Rubin +Rubina +Rubino +Rubion +Rubis +Rubish Tip +Ruble +Rublee +Rubus +Ruby +Ruby Hill +Rubye +Ruck +Rucker +Ruckholt +Ruckinge +Rucklers +Ruckman +Ruckmans +Ruckner +Rucks Farm +Rucliff +Rudd +Rudden +Rudder +Ruddock +Ruddpark +Ruddy +Ruddy Duck +Rudgear +Rudgwick +Rudheath +Rudley Green +Rudnick +Rudolf +Rudolph +Rudon +Rudsdale +Rudston +Rudy +Rudyard +Rudyard Kipling +Rueben +Ruel +Rueley Dell +Rues +Ruess +Rueth +Ruff +Ruffed Grouse +Ruffin +Ruffing +Ruffled Feather +Ruffled Feathers +Ruffner +Rufford +Rufo +Rufus +Rufus Isaacs +Rugani +Rugby +Rugdale +Ruge +Rugeley +Rugen +Ruger +Rugg +Ruggles +Ruggles Pond +Rugosa +Rugwood +Ruhe +Ruhl +Ruhlman +Ruins +Ruins Barn +Ruins Creek +Ruisdael +Ruislip +Ruisseau Francais +Ruit Farm +Rulana +Ruland +Rule +Rullman +Rulofson +Rum Point +Rum River +Rumana +Rumballs +Rumbles +Rumbolds +Rumbrook +Rumbullion +Rumford +Rumford Park +Rumney +Rumonoski +Rumple +Rumrill +Rumsay +Rumsey +Rumsford +Rumson +Rumstead +Rumworth +Run Common +Runabout +Runaldue +Runaway +Runbold +Runckel +Runcorn +Rundelac +Rundle +Runfold +Runford +Runge +Runger +Runham +Runiak +Runic +Runkenhage +Runley +Runnacles +Runner +Runneymede +Running Bear +Running Brook +Running Cedar +Running Creek +Running Deer +Running Farm +Running Foxes +Running Hill +Running Hills +Running Iron +Running Mare +Running Pump +Running Ridge +Running River +Running Springs +Runnymead +Runnymeade +Runnymede +Runsell +Runswick +Runtley Wood +Runway +Runwell +Runwick +Runyan +Runyon +Runyons +Rupack +Rupert +Rupertswood +Ruping +Rupp +Ruppert +Rural +Rural Estates +Ruritan +Rusch +Ruschin +Ruschli +Rusciano +Rusco +Ruscoe +Ruscombe +Rusden +Ruse +Rusfield +Rush +Rush Creek +Rush Green +Rush Hill +Rush Landing +Rush Meadow +Rush River +Rush River Park +Rushall +Rusham Park +Rushams +Rushbottom +Rushbrook +Rushbrooke +Rushbury +Rushcroft +Rushdean +Rushden +Rushdene +Rushen +Rushenden +Rusher +Rushes +Rushett +Rushetts +Rushey +Rushfield +Rushford +Rushgrove +Rushing Creek +Rushington +Rushingwater +Rushlake +Rushleigh +Rushley +Rushmead +Rushmere +Rushmoor +Rushmore +Rusholme +Rushout +Rushside +Rushton +Rushway +Rushwick +Rushwood +Rushworth +Rushy Meadow +Ruskin +Ruskindale +Ruskington +Ruskoi +Rusland +Rusland Park +Rusper +Russ +Russek +Russel +Russel Hill +Russel Snow +Russel Thomas +Russell +Russell Aldrich +Russell Branch +Russell Calvin +Russell Hill +Russell Park +Russell Thomas +Russell Woods +Russell Zepp +Russellcroft +Russells +Russells Pond +Russelmann Park +Russen +Russet +Russet Hill +Russet Wood +Russett +Russetts +Russi +Russia +Russia Branch View +Russia Dock +Russian +Russian River +Russington +Russler +Russo +Rust +Rust Craft +Rustad +Rusten +Rusthall +Rusthall High +Rustic +Rustic Gate +Rustic Hill +Rustic Hills +Rustic Rail +Rustic Ridge +Rustic View +Rustic Way +Rustic Wood +Rusticwood +Rusting +Rustle +Rustlewood +Rustling Leaves +Rustling Oak +Rustling Oaks +Ruston +Ruston Bridge +Rusty +Ruta +Rutan +Rutford +Rutgers +Ruth +Ruth Ann +Ruth B Swann +Ruth Davis +Ruth Ellen +Ruth Fitzgerald +Ruthellen +Ruthelma +Ruthen +Ruthenbeck +Rutherdale +Rutherford +Rutherford Hill +Rutherglen +Rutherland +Rutherwyk +Ruthie +Ruthin +Ruthland +Ruthven +Rutland +Rutland Round +Rutland View +Rutledge +Rutler +Rutley +Rutlish +Rutson +Ruttenberry +Rutter du Bois +Rutton Hill +Rutz +Rutz Lake +Ruus +Ruxbury +Ruxley +Ruxshire +Ruxton +Ruzac +Ryan +Ryan Ranch +Ryan Ronald +Ryanlynn +Ryarsh +Ryawa +Rybeck +Ryberg +Rybrook +Ryburn +Ryce +Rycon +Rycote +Rycroft +Rydal +Rydale +Rydall +Ryde +Ryde Vale +Rydeen +Rydell +Ryden +Rydens +Ryder +Ryder Hill +Ryderbrow +Ryders +Rydes +Rydes Hill +Rydge +Rydin +Rydley +Rydon +Rydons +Rye +Rye Bank +Rye Beach +Rye Brook +Rye Hill +Rye Lake +Rye Mill +Rye Ridge +Ryebank +Ryeburne +Ryecroft +Ryedale +Ryefield +Ryefields +Ryegate +Ryehill +Ryehurst +Ryeish +Ryeland +Ryelaw +Ryemead +Ryer +Ryer Island +Ryers +Ryersh +Ryerson +Ryes +Ryeside +Ryestone +Ryewood Farm +Ryfold +Rygate +Ryhiner +Ryhope +Rykmansford +Rylance +Ryland +Ryland Park +Rylands +Ryle +Ryle Park +Rylett +Ryleys +Rylston +Rylstone +Rymar +Rymer +Rymill +Rymney +Rynan +Rynda +Rynex +Ryon +Ryree +Ryrie +Rysbrack +Rystwood +Rythe +Ryton +Ryton Ridge +Ryvers +Ryves +Rywick +S Abbey Hill +S Abbott +S Aberdeen +S Abingdon +S Access +S Acorn Ridge +S Ada +S Adams +S Addison +S Adelaide +S Admiral +S Adsit +S Aero +S Ahrens +S Ahwahnee +S Airlite +S Albany +S Albert +S Aldine +S Alfred +S Alice +S Alleghany +S Allen +S Allport +S Alpine +S Amboy +S Amherst +S Anderson +S Andrew +S Ann +S Anna +S Anna Marie +S Annandale +S Anthony +S Anvil +S Apple +S Aqueduct +S Arbeiter +S Arbogast +S Arbor +S Arboretum +S Arbory +S Arch +S Archer +S Ardmore +S Arlington +S Arlington Heights +S Arlington Mill +S Arlington Ridge +S Arnell +S Arran +S Artesian +S Arthur +S Ash +S Ashbury +S Ashby +S Ashland +S Astor +S Atlantic +S Auburn +S Aurora +S Austin +S Avalon +S Avon +S Azar +S B +S Babcock +S Baker +S Baldwin +S Ball +S Balmiere +S Balmoral +S Balmoral Woods +S Barkley +S Barnaby +S Barrington +S Barry +S Barten +S Bartlett +S Barton +S Basham +S Basswood +S Batavia +S Battle Creek +S Bay +S Bayles +S Beach +S Bedford +S Beech Tree +S Beechcroft +S Beers +S Belair +S Belgrade +S Bell +S Belle +S Bellows +S Belmont +S Beloit +S Belt Circle +S Bend +S Bender +S Bennett +S Bensley +S Benson +S Bentley +S Benton +S Bereman +S Bergman +S Berkeley +S Berkshire +S Berteau +S Beulah Vista +S Beverly +S Beverwyck +S Bianco +S Big Run +S Biltmore +S Birchdale +S Birchwood +S Birkhoff +S Biscayne +S Bishop +S Bismark +S Black Forest +S Blackberry +S Blackhawk +S Blackstone +S Blaisdell +S Blake +S Blanchard +S Blanding Woods +S Bleeker +S Bloomingdale +S Blossom +S Blue Island +S Blue Water +S Bobby +S Bode +S Bodin +S Bonaparte +S Bond +S Bonfield +S Book +S Boston +S Bothwell +S Boulder +S Boundary +S Bourndale +S Bowdoin +S Boyd +S Bradford +S Bragg +S Brainard +S Braintree +S Bramble Hill +S Branch +S Brandon +S Branford +S Braymore +S Brennan +S Brentwood +S Brewster +S Briar +S Briarwood +S Bridge +S Bridle Creek +S Bridle Path +S Briggs +S Bright +S Brightway +S Bristol +S Brittany +S Broad +S Broadway +S Brockway +S Brook +S Brookdale +S Brookshore +S Brookside +S Brookwood +S Broome +S Brown +S Browning +S Bruner +S Brush +S Buchanan +S Buckhout +S Buesching +S Buffalo +S Buffalo Grove +S Burley +S Burnett +S Burnham +S Burno +S Burnside +S Burr +S Bush +S Business Park +S Butehorn +S Butler +S Butterfield +S Cabin +S Cabot +S Calhoun +S California +S Calumet +S Calumet River +S Canal +S Canal Bank +S Canalport +S Canterbury +S Cantigny +S Canton +S Canyon +S Cardinal +S Carillon +S Carlin Springs +S Carlinda +S Carll +S Carlton +S Carnot +S Caroline +S Carolyn +S Carondolet +S Carpenter +S Carrie +S Caryl +S Casey +S Cass +S Castlewood +S Catawba +S Cathedral +S Catherine +S Cathy +S Caton +S Cedar +S Cedar Lake +S Cedarbend +S Cedarcrest +S Center +S Central +S Central Park +S Centre +S Centre Island +S Centurion +S Century +S Champlain +S Channing +S Chapel +S Chappel +S Charles +S Charlotte +S Charlton +S Charter +S Chase +S Chatham +S Chatsworth +S Chelsea +S Chennault +S Cherokee +S Cherry +S Cherry Grove +S Cherry Valley +S Chester +S Chesterfield +S Chestnut +S Chevy Chase +S Cheyenne +S Chicago +S Chicago Beach +S Chicot +S Chippendale +S Chippewa +S Chowen +S Christiana +S Church +S Churchill +S Cicero +S Circle +S Claire +S Claremont +S Clarence +S Clarendon +S Clark +S Clay +S Cleburne +S Cleveland +S Clifton +S Clifton Park +S Cline +S Clinton +S Clyde +S Coach +S Cobblestone +S Codo +S Coghill +S Colborne +S Coles +S Colfax +S Colonial +S Colorado +S Columbia +S Columbine +S Columbus +S Comanche +S Commercial +S Commons +S Commonwealth +S Compass +S Connecticut +S Constitution +S Consumers +S Conway Farm +S Cook +S Coolidge +S Copper Beach +S Corabelle +S Corbett +S Corcoran +S Corliss +S Cornell +S Corona +S Cottage +S Cottage Grove +S Cottage Hill +S Cottenet +S Country +S Country Club +S Country Squire +S Countryside +S County Farm +S County Line +S Court House +S Coventry +S Covert +S Cowley +S Craft +S Cranberry +S Crandall +S Crawford +S Cree +S Creek +S Cregier +S Creighton +S Creme +S Crescent +S Crest +S Cretex +S Cretin +S Croissant +S Crowell +S Crystal +S Culpeper +S Cumberland +S Cuyler +S Cypress +S Dairy +S Dale +S Dallas +S Damen +S Daniel +S Daniels +S Dansher +S Dante +S Dartmoor +S Dauphin +S Davol +S Day +S Deal +S Dean +S Dearborn +S Dearman +S Decatur +S Dedlow +S Dee +S Deep Lake +S Deer Park +S Deere Park +S Deerpath +S Deerwood +S Delaplaine +S Delaware +S Delphia +S Demarest +S Dennis +S Denver +S Denvir +S Depot +S Derby +S Derby Glen +S Derbyshire +S Des Plaines +S Desplaines +S Detroit +S Devoe +S Dewey +S Diagonal +S Diamond Lake +S Dickerson +S Dinwiddie +S Division +S Dobson +S Dodd +S Dogwood +S Dominion +S Donald +S Donegal +S Donna +S Doolittle +S Doral +S Dorchester +S Doty +S Douglas +S Dove +S Dover +S Dow +S Dublin +S Duffy +S Duke +S Duluth +S Dunbar +S Dundee +S Dunlap +S Dunmoor +S Dupage +S Durst +S Dutcher +S Dymond +S Dyre +S E Frontage +S Eads +S Eagle +S Early +S East +S East End +S Eastcliff +S Eastern +S Eastgate +S Eastwood +S Eberhardt +S Eberhart +S Echo +S Eckar +S Edbrooke +S Eden +S Edgelawn +S Edgewater +S Edgewood +S Edinburgh +S Edison +S Edson +S Edward +S Edwin +S Eggleston +S Egret +S Ela +S Elaine +S Elder +S Eleanor +S Elevator +S Elgin +S Elizabeth +S Elk +S Elliott +S Ellis +S Ellsworth +S Ellyn +S Elm +S Elmer +S Elmhurst +S Elmwood +S Elodie +S Elroy +S Elsdon +S Elsie +S Elsner +S Emerald +S Emerson +S Eola +S Erie +S Erwing +S Escanaba +S Esmond +S Essex +S Euclid +S Eva +S Evans +S Evanslawn +S Evanston +S Everett +S Evergreen +S Ewing +S Exchange +S Exmoor +S Fairfax +S Fairfield +S Fairview +S Falls +S Farm +S Farm View +S Farmhill +S Farmingdale +S Farmington +S Farnsworth +S Farragut +S Farrell +S Farview +S Faxon +S Federal +S Feltus +S Fenwick +S Fern +S Fernwood +S Ferris +S Ferry +S Fielding +S Fillmore +S Finley +S Finn +S Fish Lake +S Flambeau +S Fletcher +S Florida +S Florida Grove +S Floyd +S Ford +S Fordham +S Forest +S Forestview +S Fork +S Forrest +S Forrestville +S Fort Scott +S Four Mile Run +S Fox +S Fox Wood +S Foxfire +S Francis +S Francisco +S Franklin +S Franzen +S Frederick +S Freeman +S Freemont +S Freeway +S Fremont +S French +S Front +S Frontage +S Frontenac +S Fryer +S Fullerton +S Fulton +S Gables +S Gail +S Galahad +S Gannon +S Garden +S Garfield +S Gary +S Gate +S Gates +S Gawain +S Gaylore +S Genoa +S George +S George Mason +S Georgia +S Gerald +S Gibbons +S Gibson +S Gifford +S Gilbert +S Giles +S Gladstone +S Glasgow +S Glebe +S Glen +S Glen Eagle +S Glendale +S Glenroy +S Glenview +S Glenwood +S Glover +S Golden Oak +S Golf +S Golfview +S Goodwin +S Gordon +S Gorman +S Gougar +S Grace +S Graceland +S Granada +S Grand +S Grand Monde +S Grand Prairie +S Grant +S Gratten +S Great Neck +S Greeley +S Green +S Green Bay +S Green Heron +S Green Meadow +S Green Meadows +S Greenbriar +S Greenbrier +S Greenbush +S Greene +S Greenfield +S Greenmount +S Greenview +S Greenway +S Greenwood +S Griffith +S Griggs +S Grotto +S Grove +S Gullikson +S Gunderson +S Haddow +S Hadfield +S Hager +S Hale +S Hall +S Halsted +S Ham Lake +S Haman +S Hamilton +S Hamlet +S Hamlin +S Hamline +S Hampton +S Hancock +S Hanover +S Hansen +S Harbor +S Harding +S Harlem +S Harold +S Harper +S Harriet +S Harrison +S Harry J Rogowski +S Hart +S Hartmann +S Hartshorne +S Hartwell +S Harvard +S Harvest +S Harvest Hills +S Harvey +S Haven +S Haverhill +S Hawthorne +S Hayes +S Hayne +S Hazel +S Hazel Hill +S Hazelton +S Healy +S Heath +S Heathcote +S Heather +S Heatherwood +S Hebbard +S Heights +S Helene +S Helmar +S Hemlock +S Henry +S Herbert +S Heritage +S Herman +S Hermitage +S Hermosa +S Herricks +S Hi Lusi +S Hickory +S High +S Highland +S Highlawn +S Highview +S Highway +S Highwood +S Hill +S Hillcrest +S Hillock +S Hills +S Hillsdale +S Hillside +S Hilton +S Hinkley +S Hobart +S Hobble Bush +S Hoey +S Holcomb +S Holcombe +S Holiday +S Holland +S Hollins Ferry +S Holly +S Holmdel +S Holyoke +S Homan +S Home +S Homer +S Homewood +S Honore +S Horners +S Hough +S Houston +S Howard +S Howell +S Hoxie +S Hoyne +S Hoyt +S Hubbard +S Hudson +S Humboldt +S Humphrey +S Hunter +S Huntington +S Hyde Park +S I Oka +S Illinois +S Ilwaco +S Independence +S Indian Trail +S Indiana +S Indianapolis +S Inge +S Ingleside +S Ingram +S Inman +S Iowa +S Iris +S Iron +S Iroquois +S Irving +S Ivanhoe +S Ives +S Ivy +S Jackson +S James +S Jamestown +S Jane +S Jasmine +S Jasper +S Jefferson +S Jeffery +S Jenkins +S Jennings +S Jensen +S Jerome +S Jessica +S Joalyce +S Joan +S John +S Johnson +S Joliet +S Jonquil +S Jordan +S Joseph +S Joyce +S Julia +S Julian +S June +S Juneau +S Justen +S Justine +S Kainer +S Kankakee +S Karlov +S Kaspar +S Kathey +S Kavanaugh +S Kean +S Keating +S Kedvale +S Kedzie +S Keefe +S Keeler +S Keeley +S Kemper +S Kendall +S Kenfig +S Kenilworth +S Kenmore +S Kennedy +S Kenneth +S Kensico +S Kensington +S Kent +S Kenton +S Kenwood +S Kerfoot +S Kerry +S Ketay +S Ketcham +S Kevin +S Kilbourn +S Kildare +S Kilkenny +S Kilpatrick +S Kimbark +S Kimberly +S Kinderkamack +S King +S Kings +S Kingston +S Kipling +S Kirkland +S Klemme +S Knight +S Knoll +S Knollway +S Knollwood +S Knox +S Knyghtwood +S Kolin +S Kolmar +S Komensky +S Kostner +S Kreiter +S Kroll +S Krueger +S Kuersten +S La Fox +S La Grange +S Lady Bar +S Lafayette +S Laflin +S Lageshulte +S Laird +S Lake +S Lake Ioseo +S Lake Park +S Lake Shore +S Lakeview +S Lakewood +S Lambert +S Lamon +S Lancaster +S Lang +S Langley +S Lanza +S Laporte +S Larrimore +S Lasalle +S Latrobe +S Laurel +S Lavergne +S Lawler +S Lawn +S Lawndale +S Lawnside +S Lawrence +S Lawton +S Leach +S Leamington +S Leavitt +S Leclaire +S Lee +S Leech +S Lehigh +S Leisure World +S Leitch +S Lemington +S Lenhome +S Lerisa +S Leslie +S Leswing +S Lewis +S Lewood +S Lexington +S Lexow +S Leyden +S Liberty +S Lill +S Lillian +S Lily Lake +S Lincoln +S Lincolnway +S Linda +S Lindberg +S Linden +S Linder +S Lindsey +S Linn White +S Little +S Lituanica +S Liverpool +S Livingston +S Lloyd +S Loantaka +S Lock +S Lockwood +S Locust +S Lodge +S Lombard +S London +S Long +S Long Beach +S Longcross +S Longview +S Longwood +S Loomis +S Loop +S Lorang +S Lord +S Lore +S Lorel +S Lorraine +S Lorton +S Lothair +S Lotus +S Louck +S Loucks +S Louis +S Lourdes +S Loveland +S Lowe +S Lowell +S Lucas +S Luella +S Lumber +S Luna +S Lund +S Lyle +S Lyman +S Lynn +S Lynne +S Lyon +S Lytle +S Macalester +S Mackinaw +S Macrae +S Madison +S Magnolia +S Magoun +S Maid Marion +S Main +S Major +S Malibu +S Mallard +S Mallory +S Malta +S Manassas +S Manchester +S Manistee +S Mann +S Manomin +S Manor +S Mansfield +S Mansion +S Maple +S Maplewood +S Marathon +S Marilyn +S Marion +S Market +S Marquette +S Marshall +S Marshfield +S Martha +S Martin +S Martine +S Mary +S Mary Therese +S Maryland +S Mason +S Massasoit +S Matteson +S Maxon +S May +S Mayfield +S Mayflower +S Maywood +S Mc Vicker +S McCarron +S McCarthy +S McCorkle +S McDaniel +S McDowell +S McKinley +S McKinley Woods +S McKnight +S Meacham +S Meade +S Meader +S Meadow +S Meadow Fence +S Medina +S Medinah +S Meister +S Melody +S Melrose +S Melvina +S Menominee +S Meridian +S Merion +S Merle +S Merrick +S Merrill +S Merrimac +S Merrion +S Mesa +S Metron +S Michael +S Michaels +S Michigan +S Micvicker +S Middle Neck +S Middle Point +S Middlesex +S Middleton +S Middletown +S Midfield +S Midland +S Midlothian +S Mill +S Millard +S Miller +S Millpage +S Millwood +S Milton +S Milwaukee +S Mineral Springs +S Minerva +S Minnesota +S Minnisink +S Mississippi +S Mississippi River +S Misty Harbour +S Mitchell +S Mobile +S Moetz +S Monaghan +S Monitor +S Monroe +S Montague +S Montana +S Montclair +S Monterey +S Montgomery +S Moody +S Moore +S Moorman +S Morel +S Morgan +S Mormann +S Morris Hill +S Mortimer +S Mount Curve +S Mount Prospect +S Mountain +S Mozart +S Muir +S Muirfield +S Mulligan +S Municipal +S Munn +S Murphy +S Murray +S Muskegon +S Myrtle +S Na Wa Ta +S Nacke +S Nagle +S Nancy +S Naper +S Narragansett +S Nash +S Nashville +S Nassau +S Natchez +S Natoma +S Navajo +S Neenah +S Nelson +S Neltnor +S Neva +S New +S New England +S New Hampshire +S Newberry +S Newcastle +S Newland +S Newman +S Nichols +S Niemann +S Nolton +S Norbury +S Nordica +S Normal +S Normandy +S Northampton +S Northern Illinois +S Northwoods +S Norwood +S Nottingham +S Noyes +S O S +S Oak +S Oak Creek +S Oak Glenn +S Oak Knoll +S Oak Park +S Oak Ridge +S Oak River +S Oak Shore +S Oakcrest +S Oakdale +S Oakenwald +S Oakhurst +S Oakland +S Oakleaf +S Oakley +S Oakridge +S Oaks +S Oakwood +S Ocean +S Oconto +S Octavia +S Ode +S Ohio +S Oketo +S Old Creek +S Old Glebe +S Old Hickory +S Old Mill +S Old Plum Grove +S Old Post +S Old Rand +S Olive +S Oltendorf +S Olympia +S Olympic +S Ontario +S Orange +S Orchard +S Oregon +S Orleans +S Orme +S Osborne +S Osceola +S Ott +S Ottawa +S Owen +S Oxford +S Oyster Bay +S Packers +S Page +S Palm +S Palos +S Parente +S Park +S Park Place +S Parke +S Parker +S Parker Ridge +S Parkside +S Parnell +S Pascal +S Passaic +S Patrick +S Patterson +S Paula +S Paulina +S Paxton +S Payne +S Peach +S Peach Tree +S Pearl +S Pebble Creek +S Pecan +S Peck +S Pembroke +S Penataquit +S Pennington +S Pennsylvania +S Peoria +S Perkins +S Perry +S Pershing +S Petersburg +S Pettibone +S Peyton +S Pfingsten +S Phelps +S Phillip +S Phillips +S Pickens +S Pickett +S Pierce +S Piermont +S Pine +S Pine Grove +S Pine Hill +S Pine Valley +S Pinecrest +S Pinehurst +S Pinewood +S Pipeline +S Pitt +S Plantation +S Plaza +S Pleasant +S Pleasant Hill +S Plum Grove +S Plymouth +S Plympton +S Poe +S Point +S Point Douglas Ser +S Pointe +S Polk +S Pollard +S Polling House +S Ponderosa +S Pool +S Poplar +S Porter +S Powder Mill +S Prairie +S Prairie View +S Prater +S Preakness +S Preller +S Prescott +S President +S Princeton +S Prindle +S Prior +S Prospect +S Provencal +S Pueblo +S Pulaski +S Putnam +S Quaker +S Quassey +S Quebec +S Queen +S Quentin +S Quincy +S Quinn +S Racine +S Raddant +S Railroad +S Rammer +S Rand +S Randall +S Randolph +S Randolphville +S Rankin +S Rathje +S Raven +S Ravinia +S Ravisloe +S Rawson Bridge +S Raymond +S Rea +S Rebecca +S Red Barn +S Red Coat +S Redwood +S Regan +S Regent +S Regents +S Regina +S Reid +S Reilly +S Remington +S Rensselaer +S Rexford +S Reynolds +S Rhodes +S Richard +S Richards +S Richmond +S Ridge +S Ridgedale +S Ridgeland +S Ridgeway +S Riegel Farm +S River +S River Clubhouse +S River Landing +S Rivercrest +S Riverdale +S Riverside +S Riverview +S Riviera +S Robert +S Robert Damm +S Robert Emmett +S Roberta +S Roberts +S Robin +S Robin Hill +S Robincrest +S Robinson +S Rockwell +S Rodenburg +S Rohallion +S Rolfe +S Roma +S Ronald +S Roosevelt +S Root +S Rose +S Rosedale +S Roselle +S Rosemary +S Rosewell +S Rosewood +S Ross +S Rowell +S Roxanna +S Roy +S Royal Crest +S Royal Oak +S Royal Oaks +S Ruble +S Ruby +S Rush +S Russell +S Rutherford +S Ryan +S Sacramento +S Saddlebrook +S Saddlecreek +S Sagamore +S Sage +S Saint Asaph +S Saint Marys +S Salem +S San Fernando +S San Francisco +S Sandpiper +S Sangamon +S Sarah +S Saratoga +S Sawyer +S Saxon +S Sayer +S Sayre +S Schmidt +S School +S Schoolhouse +S Schultz +S Sciota +S Scott +S Scottsdale +S Scoville +S Seamans Neck +S Sears +S Seebert +S Seeley +S Seminary +S Seminole +S Seneca +S Senour +S Serenity +S Service +S Seymour +S Shaddle +S Shannon +S Shelby +S Shelley +S Sheridan +S Sherman +S Sherwood +S Shields +S Shirley +S Shirlington +S Shore +S Short +S Shoshoni +S Silver Fox +S Sir Galahad +S Skidmore +S Skokie +S Skye +S Skyline +S Sleight +S Smith +S Snelling +S South +S South Chicago +S South Elgin +S South Shore +S Southgate +S Southmeadow +S Southport +S Southwood +S Spalding School +S Spaulding +S Spencer +S Spring +S Spring Garden +S Spring Meadows +S Springfield +S Springwood +S Spruce +S Suffolk +S Sullivan +S Summit +S Sumner +S Sunnyside +S Sunridge +S Sunrise +S Sunset +S Susan +S Sutton +S Sutton Lake +S Sycamore +S Sylvan +S Syndicate +S Tabler +S Taft +S Talman +S Tara +S Tarn +S Taylor +S Teal +S Tehle +S Terhune +S Terminal +S Terrace +S Testa +S Thistle +S Thomas +S Thomas Dillon +S Thompson +S Thorn Creek +S Throop +S Thurlow +S Tilden +S Timber +S Timberlane +S Tippecanoe +S Tonka +S Torrence +S Tower +S Town Center +S Trails End +S Travers +S Travis +S Tripp +S Trivett +S Troy +S Trumbull +S Truro +S Tryon +S Turf Hill +S Twin Creek +S Tyler +S Tyson +S Uhle +S Union +S University +S Upton +S Urban +S Utah +S Utica +S Valley +S Van Beveren +S Van Brunt +S Van Buren +S Van Dien +S Van Dorn +S Van Nortwick +S Van Vlissingen +S Vanderbilt +S Vanderburg +S Vanderpoel +S Varner +S Vaupell +S Veitch +S Ventura +S Vermillion +S Vermont +S Vernon +S Vetter +S Victoria +S Vienna +S View +S Vigo +S Viking +S Villa +S Village +S Vincennes +S Vincent +S Vine +S Violet +S Virginia +S Vista +S Vivyen +S Volbrecht +S Wa Pella +S Wabash +S Wabasso +S Wagonwheel +S Waiola +S Wakefield +S Waldinger +S Walker +S Walkup +S Wallace +S Waller +S Wallingford +S Walnut +S Walsh +S Walter Reed +S Walton +S Ward +S Warner Bridge +S Warren +S Warrington +S Warwick +S Waseca +S Washington +S Washtenaw +S Wasson +S Water +S Waterford +S Waterloo +S Waterman +S Waters Edge +S Waterview +S Watkins +S Waukegan +S Waverly +S Wayman +S Wayne +S Wayzata +S Wear +S Webster +S Wedgewood +S Weed +S Weiler +S Wellers +S Wells +S Wellwood +S Wenonah +S Wentworth +S Wesley +S Wespark +S West +S Westchester +S Western +S Westgate +S Westland +S Westlawn +S Westmore Meyers +S Weston +S Westview +S Westwood +S Wheaton +S Wheeler +S Wheeling +S Whipple +S Whispering Hills +S White +S White Oak +S Whiting +S Whitt +S Whittier +S Wickom +S Wiesbrook +S Wilber +S Wilder +S Will Center +S Willard +S Wille +S William +S Williams +S Williamsburg +S Williston +S Willow +S Willow Creek +S Willow Springs +S Willow Walk +S Wilmette +S Wilshire +S Wilson +S Winchester +S Windcrest +S Windham +S Windhill +S Windmill +S Windsor +S Winfield +S Winslow +S Winston +S Winter +S Winthrop +S Wisconsin +S Wise +S Wolcott +S Wolf +S Wolf Lake +S Wood +S Wood Dale +S Woodbine +S Woodbriar +S Woodbury +S Woodcrest +S Woodfield +S Woodland +S Woodlawn +S Woodley +S Woodrow +S Woods +S Woodside +S Woodstock +S Wool +S Wright +S Wulff +S Wynstone +S Wynstone Park +S Yale +S Yates +S York +S Youngs +S Zoranne +S du Bois +S la Crosse +S la Londe +S. Boston Bypass +S. Hamlin +S. King +SE Brighton +SE Circle +SE Dague +SE Davison +SE Delaware +SE Eastwood +SE Erie +SE Frontage +SE Garfield +SE Ontario +SE Park +SE River +SW Centennial +SW Circle +SW Frontage +SW Garfield +SW Pershing +SW Village +Saari +Saba +Sabal +Sabastian +Sabden +Saber +Sabercat +Sabeys Beach +Sabin +Sabina +Sabine +Sabine Farm +Sabines +Sabino Farm +Sable +Sable Oaks +Sable Ridge +Sabo +Sabre +Sabrina +Sacarrappa +Sach +Sachem +Sachem Rock +Sachfield +Sachs +Sacia +Sack +Sackerman +Sackett +Sackman +Sackrett +Sackvile +Sackville +Saco +Sacomano +Sacombe +Sacombs Ash +Sacoya +Sacramento +Sacred +Sacred Heart +Sacred Palm +Sacremento +Sacretariat +Saddington +Saddle +Saddle Back +Saddle Brook +Saddle Club +Saddle Creek +Saddle Crest +Saddle Hill +Saddle Horn +Saddle Mountain +Saddle Oaks +Saddle Rack +Saddle Ranch +Saddle Ridge +Saddle River +Saddle Rock +Saddle Tree +Saddle Wood +Saddleback +Saddleback Hill +Saddleback Ridge +Saddlebred +Saddlebrook +Saddlemount +Saddler +Saddlerock +Saddleview +Saddlewood +Saddleworth +Sade +Sadi +Sadie Hutt +Sadies +Sadleir +Sadler +Sadlers +Sadlers Wells +Sadlier +Sadme +Sadore +Sadowa +Sadowski +Sadro +Saenz +Safa +Safari +Safffron +Safford +Safforo +Saffron +Saford +Safran +Saga +Sagamore +Sagamore Farm +Sagamore Hill +Sagamore Spring +Saganashkee +Sagar +Sagars +Sage +Sage Brush +Sage Canyon +Sage Grouse +Sage Hill +Sage Sparrow +Sagebrush +Sageland +Sageman +Sagemont +Sager +Sages +Sageview +Sagewood +Saggart Field +Saggers +Saginaw +Sagittarius +Saguaro +Sahara +Sahler +Sahlin Farm +Sahlin Pvt +Saiala +Saic +Saidel +Saigon +Sail +Sailboat +Sailer +Sailfish +Sailor +Sailors +Sailors Bay +Sailpointe +Sailsbury +Sailstone +Sailview +Sailway +Sain Clements +Saindon +Saines +Sainfoin +Saini +Sainsbury +Sainsburys Fifth +Saint Agatha +Saint Agnells +Saint Agnes +Saint Alban +Saint Albans +Saint Albert +Saint Alphonsus +Saint Ambrose +Saint Andre +Saint Andrew +Saint Andrews +Saint Ann +Saint Anne +Saint Anns +Saint Anthony +Saint Anthonys +Saint Anton +Saint Asaph +Saint Augustin +Saint Augustine +Saint Augustines +Saint Barbara +Saint Barnabas +Saint Bartholomew +Saint Bartholomews +Saint Bede +Saint Benedicts +Saint Bernard +Saint Bernards +Saint Boniface +Saint Botolph +Saint Brelades +Saint Brendan +Saint Bride +Saint Camille +Saint Casimir +Saint Catherine +Saint Catherines +Saint Cecelia +Saint Cecilia +Saint Chads +Saint Charles +Saint Christopher +Saint Clair +Saint Claire +Saint Clar +Saint Clare +Saint Clements +Saint Cloud +Saint Croix +Saint Cross +Saint David +Saint Davids +Saint Denis +Saint Deyns +Saint Dominics +Saint Dorothy +Saint Edmunds Center +Saint Edward +Saint Edwards +Saint Elizabeth +Saint Elmo +Saint Etheldore +Saint Eva +Saint Felix +Saint Florence +Saint Florian +Saint Francis +Saint George +Saint George Barber +Saint George Ranch +Saint Georges +Saint Germain +Saint Gertrudes +Saint Giles +Saint Gregory +Saint Gregorys +Saint Helena +Saint Hildas +Saint Hill +Saint Hillaire +Saint Huberts +Saint Isabel +Saint Ives +Saint James +Saint Jean +Saint Jerome +Saint Joan +Saint John +Saint Johns +Saint John’s +Saint Joseph +Saint Josephs +Saint Jude +Saint Julie +Saint Katherine +Saint Kevin +Saint Kilda +Saint Kitts +Saint Lawrence +Saint Leonards +Saint Lo +Saint Louis +Saint Lukes +Saint Lynn +Saint Marcel +Saint Margaret +Saint Margarets +Saint Mark +Saint Marks +Saint Martin +Saint Martins +Saint Mary +Saint Marys +Saint Mary’s +Saint Mathews +Saint Matthew +Saint Maur +Saint Mayeul +Saint Michael +Saint Michaels +Saint Mihiel +Saint Moritz +Saint Nicholas +Saint Nicolas +Saint Norbert +Saint Oswald’s +Saint Patricks +Saint Paul +Saint Pauls +Saint Paul’s +Saint Peter +Saint Peters +Saint Peter’s +Saint Philips +Saint Phillips +Saint Pinnock +Saint Raphael +Saint Raymonds +Saint Regis +Saint Richard +Saint Richards +Saint Rose +Saint Saviour Warwick +Saint Saviours +Saint Swithans +Saint Theresa +Saint Thomas +Saint Thomas Church +Saint Thomas More +Saint Tropez +Saint Ursula +Saint Victor +Saint Vincent +Saint Vincents +Saint Winifreds +Sainton +Saints +Saintsbridge +Saintsbury +Saipan +Sais +Saisbury +Sajak +Sak +Sakas +Sakata +Sakenda +Saklan +Saklan Indian +Saks Fifth +Sakura +Sal +Salada +Saladine +Salado +Salado Creek +Salamanca +Salamander +Salamander Canyon +Salamaua +Salas +Salazar +Salberg +Salbrook +Salceda +Salcombe +Salcote +Salcott +Saldane +Sale +Saleford +Salem +Salem Church +Salem End +Salem Lake +Salem Pond +Salem Ridge +Salem Water Works +Salemtown +Salerno +Sales +Salesian +Salford +Salgado +Salibury +Salida +Salima +Salina +Salinas +Salisbury +Salisbury Downs +Salisbury Hall +Salisbury Hill +Salisbury Park +Salishan +Salix +Salk +Salkeld +Sallaway +Sallie Mae +Sallie O +Sally +Sally Ann +Sally Ride +Salma +Salmaan +Salmar +Salmi +Salmon +Salmon Creek +Salmon Falls +Salmon River +Salmond +Salmons +Salomons +Salon +Salonga Woods +Salop +Salrit +Salt +Salt Box +Salt Creek +Salt Hill +Salt Lake +Salt Meadow +Salt Spray +Salt Wall +Saltaire +Saltash +Saltbrook +Saltcoats +Saltcreek +Salter +Salterford +Salterns +Salters +Salterton +Salteye +Salthill +Saltings +Saltlick Fire +Saltmarsh +Saltmeadow +Salton Sea +Saltonstall +Saltoun +Saltpan +Saltram +Saltrush +Salts +Saltwater +Saltwell +Saltwind +Saltwood +Saltzman +Saluatation +Salusbury +Salutation +Salva +Salvador +Salvatierra +Salvatore +Salvi +Salvia +Salvin +Salvington +Salvio +Salway +Salzberg +Sam +Sam Cava +Sam Fonzo +Sam Hill +Sam McDonald +Sam Neel +Sam Owings +Sam Riggs +Sam Ryder +Sam Smith +Sam Swire +Samaga +Samantha +Samantha Riley +Samar +Samarai +Samaria +Samaritan +Samedra +Samford +Sammet +Sammett +Sammie +Sammis +Sammut +Samnatha +Samo +Samoa +Samora +Samos +Samoset +Samosett +Sampford +Sample +Sampleoak +Sampshill +Sampson +Sampton +Samrose +Sams +Samson +Samuel +Samuel Adams +Samuel Foster +Samuel Fuller +Samuel Gamwell +Samuel Harrington +Samuel Marsden +Samuel Morse +Samuel Ogden +Samuel Parlin +Samuel Prescott +Samuel Robert +Samuel Terry +Samuel Trexler +Samuel Wallis +Samuel Woodworth +Samuels +Samuels Pine +Samuelson +Samworth +Samy +San Aleso +San Andreas +San Andreas Fire +San Andres +San Angelo +San Anselmo +San Antonio +San Antonio Valley +San Ardo +San Benito +San Bernadino +San Blas +San Bruno +San Carlos +San Carlos Fire +San Clemente +San Cristobal +San Diego +San Dimas +San Domar +San Domingo +San Felice +San Felipe +San Fernando +San Francis +San Franciscan +San Francisco +San Gabrial +San Gabriel +San Geronimo Ridge +San Geronimo Valley +San Gorgonio +San Gregorio +San Ignacio +San Jacinto +San Jaun Canyon +San Joaquin +San Jose +San Juan +San Juan Canyon +San Juan Capistrano +San Juan Grade +San Juan Hollister +San Juan Pass +San Jude +San Junipero +San Justo +San Lazaro +San Leandro +San Lorenzo +San Lucas +San Luis +San Luis Obispo +San Luis Rey +San Luppe +San Marco +San Marcos +San Marcus +San Mardo +San Marin +San Marin Fire +San Marino +San Martin +San Mateo +San Michele +San Michelle +San Miguel +San Miguel Canyon +San Minete +San Nichols +San Nicolas +San Pablo +San Pablo Dam +San Patricio +San Paulo +San Pedro +San Pedro Mountain +San Pedro Terrace +San Petronio +San Rafael +San Ramon +San Ramon Valley +San Raymundo +San Remo +San Rey +San Rivas +San Rocco +San Saba +San Sabana +San Salvador +San Sebastian +San Simeon +San Sonita +San Tomas +San Tomas Aquino +San Tropez +San Vicente +San Vincente +San Vito +San Ysidro +Sanananda +Sanatorium +Sanberg +Sanborn +Sanborn Hill +Sanburnol +Sanby +Sanches +Sanchez +Sancho +Sancroft +Sanctuary +Sanctuary Point +Sand +Sand Bar +Sand Beach +Sand Blossom +Sand Cherry +Sand Creek +Sand Dam +Sand Dollar +Sand Dunes Forest +Sand Harbor +Sand Harbour +Sand Hill +Sand Hole +Sand Park +Sand Pine +Sand Piper +Sand Point +Sand Pointe +Sand Prairie +Sand Ridge +Sand Rock +Sand Spring +Sand Trap +Sand de Sac +Sandaba +Sandage +Sandakan +Sandal +Sandal Wood +Sandalfoot +Sandalwood +Sandalyn +Sanday +Sandbach +Sandbed +Sandberg +Sandbloom +Sandborn +Sandbourne +Sandbrook +Sandburg +Sandby +Sandcastle +Sandchain +Sandcherry +Sandcliff +Sandcroft +Sandcross +Sandeen +Sandelin +Sandell +Sandelwood +Sandemara +Sander +Sandera +Sandering +Sanderling +Sanders +Sanders Ranch +Sandersfield +Sanderson +Sandersons +Sanderstead +Sanderstead Court +Sandfield +Sandfold +Sandford +Sandford Mill +Sandgap +Sandgate +Sandhage +Sandham +Sandheath +Sandhill +Sandhills +Sandholdt +Sandhole +Sandholm +Sandhurst +Sandhutton +Sandi +Sandia +Sandifer +Sandiford +Sandilands +Sandileigh +Sandingham +Sandini +Sandison +Sandisplatt +Sandiway +Sandland +Sandle +Sandleigh +Sandler +Sandlewood +Sandling +Sandmark +Sandmere +Sandmoor +Sandmound +Sandon +Sandown +Sandpebble +Sandpike +Sandpiper +Sandpiper Cove +Sandpiper Key +Sandpit +Sandpit Hall +Sandpits +Sandpoint +Sandra +Sandra Pond +Sandraya Heights +Sandretto +Sandri +Sandrick +Sandridge +Sandridgebury +Sandringham +Sandrock +Sandrock Hill +Sands +Sands Light +Sands Point +Sandsbury +Sandsend +Sandspur +Sandstock +Sandstone +Sandtoft +Sandusky +Sandwald +Sandway +Sandwel +Sandwell +Sandwich +Sandwood +Sandy +Sandy Bank +Sandy Bar +Sandy Bay +Sandy Beach +Sandy Bridges +Sandy Brook +Sandy Cove +Sandy Creek +Sandy Cross +Sandy Farm +Sandy Glen +Sandy Hill +Sandy Hollow +Sandy Hook +Sandy Knoll +Sandy Landing +Sandy Lewis +Sandy Lodge +Sandy Manor +Sandy Plains +Sandy Point +Sandy Pond +Sandy Ridge +Sandy Rock +Sandy Spring +Sandy Valley +Sandyacres +Sandybrook +Sandycove +Sandycroft +Sandyford +Sandyhill +Sandyhurst +Sandylands +Sandymount +Sandys +Sandywood +Sanel +Sanfoin +Sanford +Sangamon +Sangamore +Sangay +Sanger +Sangers +Sangley +Sangmeister +Sangora +Sangrado +Sangria +Sanial +Sanibel +Sanibel Captiva +Sanilac +Saning +Sanitarium +Sanjer +Sankey +Sanko +Sanlin +Sanner +Sanns +Sano +Sanoni +Sans +Sans Souci +Sansbury +Sansom +Sansome +Sansone +Sanspareil +Sant Johns +Santa Alicia +Santa Ana +Santa Anita +Santa Anna +Santa Barbara +Santa Catalina +Santa Clara +Santa Croce +Santa Cruz +Santa Domingo +Santa Elena +Santa Fe +Santa Helena +Santa Inez +Santa Juanita +Santa Lucia +Santa Margarita +Santa Marguarita +Santa Maria +Santa Marina +Santa Mesa +Santa Monica +Santa Paula +Santa Ray +Santa Rita +Santa Rosa +Santa Rosa Creek +Santa Rose +Santa Serra +Santa Susana +Santa Teresa +Santa Theresa +Santa Trinita +Santa Vera +Santa Ynez +Santa Ysabel +Santana +Santander +Santapogue +Santarosa +Santas Village +Santayana +Santee +Santeetlah +Santell +Santers +Santiago +Santilli +Santini +Santley +Santolina +Santon +Santoni +Santorina +Santorini +Santos +Santos Ranch +Santour +Santry +Santuck +Santuit +Sanway +Sanwood +Sanzoverino +Saphire +Sapienza +Sapling +Sapling Ridge +Sapone +Sapphire +Sapphire Ridge +Sappington +Sara +Sara Ann +Sara Jane +Sarabande +Saracen +Saradale +Saraglen +Sarah +Sarah Anne +Sarah Constant +Sarah Doublet +Sarah Durack +Sarah Holland +Sarah Jane +Sarah Landing +Sarahills +Sarahs Grove +Sarakal +Saralynn +Saran +Sarana +Saranac +Saranap +Saranell +Sarasota +Saratoga +Saratoga Creek +Saratoga Heights +Saratoga Hills +Saratoga Park +Saratoga Sunnyvale +Saratoga Toll +Saratoga Vista +Saravanos +Saraview +Sarayah +Sarazen +Sarazin +Sard +Sardam +Sardinia +Sardonyx +Sardyga +Sargeant +Sargeants +Sargent +Sargent Roode +Sargo +Saric +Sarina +Sark +Sarkesian +Sarkis +Sarner +Sarnesfield +Sarno +Saro +Saron +Saroni +Sarratt +Sarre +Sarrinen +Sarsby +Sarsen +Sarsfeld +Sarsfield +Sartell +Sartelle +Sartor +Sartori +Sartwell +Sarum +Sarver +Sasher +Saskatchewan +Sassafras +Sassamon +Sassel +Satanita +Satara +Satelberg +Satellite +Sater +Sather +Satin +Satinash +Satinwood +Satis +Satow +Satterfield +Satterlee +Satterley +Satterthwaite +Sattler +Satuckett +Satuit Meadow +Saturday Evening +Saturn +Saucelands +Saucer +Saucier +Sauders Bay +Sauerbacker +Sauganash +Saugatuck +Saugus +Sauk +Sauk Pointe +Saul +Saull +Sauls +Saultell +Saulty +Saumur +Sauna +Sauna Row +Sauncey +Sauncey Wood +Saunder +Saunders +Saunders Ness +Saunders Point +Saunderton +Saunton +Sauquoit +Saurine +Sausal +Sausalito +Sautter +Sauzer +Savacentre Approach +Savage +Savage Guilford +Savaker +Savana +Savanna +Savanna Lakes +Savanna Oaks +Savannah +Savannah River +Savant +Savay +Saverien +Savernake +Savery +Saverys +Savick +Savile +Savill +Saville +Savin +Savin Hill +Savine +Savio +Savo +Savoie +Savona +Savory +Savoury +Savoy +Saw Mill +Saw Mill Pond +Saw Mill River +Saw Tooth Canyon +Sawbridgeworth +Sawdust +Sawell +Sawgrass +Sawhorse +Sawin +Sawkins +Sawleaf +Sawley +Sawmill +Sawmill Brook +Sawmill Creek +Sawmill Pond +Sawpit +Sawtell +Sawtelle +Sawtooth +Sawyer +Sawyer Hill +Sawyer Park +Sawyers +Sax +Saxby +Saxbys +Saxham +Saxlingham +Saxon +Saxon Flowers +Saxon Wood +Saxon Woods +Saxon Woods Park +Saxonbury +Saxonholme +Saxonia +Saxons +Saxonvale +Saxony +Saxton +Saxville +Saxwood +Saybrook +Saybrooke +Saybrooke Oaks +Saybrooke View +Sayer +Sayers +Sayes Court +Sayes Court Farm +Sayesbury +Saylers Creek +Sayles +Sayles Hill +Saylor +Sayner +Sayonara +Sayre +Sayreville +Sayville +Sayward +Saywell +Saywer +Scabharbour +Scaddan +Scadding +Scafell +Scaggs +Scaggsville +Scagia +Scagliotti +Scahill +Scala +Scalera +Scales +Scalletta +Scallows +Scally +Scaltrito +Scalza +Scammell +Scammonden +Scandia +Scandinavia +Scandrett +Scaneateles +Scanello +Scanlan +Scanland +Scanlon +Scannell +Scar Hill +Scarab +Scaraway +Scarboro +Scarborough +Scarborough Commons +Scarbrook +Scarcliffe +Scarcroft +Scardenia +Scarfe +Scarff +Scarfield +Scarisbrick +Scarlata +Scarlatti +Scarle +Scarlet +Scarlet Mist +Scarlet Oak +Scarlet Sage +Scarlett +Scarlett Oak +Scarletts +Scarr +Scarr End +Scarsdale +Scarsdale Farm +Scarth +Scatcherd +Scatcherd Park +Scatterdells +Scatteree +Scaup +Scawen +Scawfell +Scenery +Scenic +Scenic Byway +Scenic Heights +Scenic Hts +Scenic Meadow +Scenic Overlook +Scenic Ranch +Scenic Ridge +Scenic View +Scenic Vista +Scenic Woods +Scenicview +Scenicwood +Scenna +Scepter +Sceptre +Scettrini +Scettrini Fire +Schaaf +Schachtner +Schadeck +Schadt +Schaefer +Schaefer Ranch +Schaeffer +Schafer +Schaffer +Schaffhausen +Schalk +Schall +Schallenberger +Schaller +Schanck +Schank +Schaper +Scharber +Scharer +Scharff +Scharmann +Schaumburg +Scheel +Scheele +Scheer +Scheerer +Scheffelin +Scheibel +Scheid +Scheidecker +Scheinfein +Scheldrup +Schelhorn +Schellbach +Schellville +Schelly +Schelter +Schember +Schembri +Schenck +Schendel Lake +Schenectady +Schenk +Schenley +Schepis +Scherell +Scherer +Scherland +Schermerhorn +Scherrer +Scherwood Greens +Scheuneman +Scheurer +Schey +Schiappino +Schick +Schiedler +Schieffelin +Schiele +Schifsky +Schillaci +Schiller +Schilling +Schillinger +Schillingsburg +Schillton +Schimmel +Schindel +Schindler +Schinkel +Schiphol +Schirra +Schlagel +Schlager +Schlapp +Schleicher +Schleifer +Schleigel +Schleiger +Schlenker +Schletty +Schley +Schlictman +Schlitz +Schlobohm Gardens +Schlomann +Schlomka +Schlosser +Schlottfeld +Schmahl +Schmeidt +Schmeiser +Schmidt +Schmidt Lake +Schmidts +Schmitt +Schmuckley +Schmule +Schnecks +Schneider +Schober +Schobert +Schock +Schoder +Schoeffel +Schoeffler +Schoen +Schoenbeck +Schoener +Schoenfield +Schoenherr +Schofield +Schofields +Schofields Farm +Schoger +Schoharie +Scholar +Scholar Green +Scholars +Scholars Green +Scholebrook +Scholefield +Scholer +Scholerbrook +Scholes +Scholes Rakehill +Scholey +Scholl +Scholtze +Scholz +Schomer +Schommer +School +School Craft +School District +School Gate +School Green +School Hill +School House +School Mill +School View +Schoolcraft +Schooldale +Schooley +Schoolgate +Schoolhouse +Schoolhouse Cove +Schoolmaster +Schools +Schoolside +Schoon +Schooner +Schooner Bay +Schooner Ridge +Schoonmaker +Schoonover +Schoosett +Schor +Schorie +Schorne +Schortmann +Schott +Schraalenburgh +Schrader +Schrage +Schramm +Schramms +Schramsberg +Schreiber +Schreiner +Schriber +Schrider +Schrieffer +Schriever +Schroder +Schroeder +Schroers Farm +Schroth +Schrum +Schubert +Schuerle +Schuett +Schuh +Schulamar +Schuldt +Schuler +Schuler Ranch +Schulmeister +Schulte +Schulten +Schulties +Schultz +Schulz +Schulze +Schum +Schumacher +Schumack +Schumaker +Schuman +Schurman +Schurtz +Schurz +Schussler +Schuster +Schutte +Schutte Farm +Schuyler +Schuylkill +Schwab +Schwan Lake +Schwartz +Schwartze +Schwebel +Schwerin +Schwerman +Schwinn +Schyler +Sciarappa +Scibilia +Science +Science Center +Science Ctr +Scientia +Scimitar +Sciota +Scioto +Sciots +Scipio +Scituate +Scobbie +Scobell +Scobie +Scocles +Scofield +Scoles +Sconset +Scooter +Scoralick +Scords +Score +Scoresby +Scorpio +Scorpion +Scorton +Scossa +Scot +Scot Ladd +Scotby +Scotch +Scotch Common Argyle +Scotch Dam +Scotch Hall +Scotch Haven +Scotch Hill +Scotch Pine +Scotch Plains +Scotchman +Scotchy +Scotdale +Scotia +Scotland +Scotland Bridge +Scotland Farm +Scotland Hall +Scotland Hill +Scotland Hill Park +Scotland Mill +Scotlands +Scotney +Scots +Scotsdale +Scotsford +Scotsglen +Scotshall +Scotswood +Scott +Scott Creek +Scott Farm +Scott Foresman +Scott Hall +Scott Hill +Scott Key +Scott Robin +Scott Town +Scotteswood +Scottfield +Scotti +Scottish +Scottish Autumn +Scottish Hunt +Scottish Rite +Scottlynne +Scottons +Scotts +Scotts Cove +Scotts Crossing +Scotts Farm +Scotts Grove +Scotts Hall +Scotts Landing +Scotts Manor +Scotts Mill +Scotts Run +Scotts Valley +Scottsboro +Scottsbridge +Scottsbury +Scottsdale +Scottsfield +Scottsvale +Scottswood +Scottwell +Scotty +Scotty Hollow +Scoulding +Scouler +Scouller +Scours +Scout +Scout Hill +Scout Ridge +Scouts +Scouts Camp +Scovell +Scoville +Scowcroft +Scown +Scragged Oak +Scraley +Scranton +Scrapsgate +Scratcherd +Scratchers +Scratchings +Scratton +Screech Owl Creek +Screvin +Scriba +Scriber Lake +Scribner +Scrimgeour +Scripps +Scripps Haven +Scripture +Scritchfield +Scrivani +Scriven +Scriveners +Scrivens +Scriver +Scrivner +Scroggins +Scrooby +Scropton +Scroxton +Scrub +Scrub Oak +Scrubbitts Park +Scrubbs +Scrubs +Scrutton +Scudamore +Scudder +Scudders +Sculley +Scully +Sculptor +Sculpture Point +Scures +Scurvy Hall +Scutley +Scylla +Sea +Sea Beach +Sea Bird +Sea Biscuit +Sea Breeze +Sea Bright +Sea Chase +Sea Cliff +Sea Cloud +Sea Cove +Sea Foam +Sea Forest +Sea Gate +Sea Gull +Sea Horse +Sea Island +Sea Isle +Sea Light +Sea Meadow +Sea Mist +Sea Otter +Sea Pines +Sea Point +Sea Ranch +Sea Ridge +Sea Shell +Sea Shore +Sea Side +Sea Spray +Sea View +Sea Vista +Sea Walk +Sea Wall +Seabeach +Seabird +Seabiscuit +Seaboard +Seaborn +Seaborne +Seaborough +Seabreeze +Seabridge +Seabright +Seabring +Seabro +Seabrook +Seabury +Seabury Point +Seacape +Seacliff +Seacloud +Seacombe +Seacord +Seacourt +Seacrest +Seadrift +Seafarer +Seafield +Seafirth +Seaflower +Seafoam +Seaford +Seaforth +Seagate +Seager +Seager Farm +Seagirt +Seagrave +Seagraves +Seagreen +Seagrove +Seagry +Seagull +Seaham +Seahaven +Seahawk +Seahawks +Seahorn +Seahorse +Seal +Seal Cove +Seal High +Seal Hollow +Seal Pointe +Seal Rock +Sealand +Seale +Sealey +Sealight +Sealock +Sealtest +Sealth +Sealund +Sealy +Seaman +Seaman Neck +Seamans +Seamans Neck +Seamas +Seamer +Seamist +Seamon +Seamons +Seamont +Seamore +Seamount +Sean +Seapearl +Seaport +Sear Ranch +Searbrook +Searby +Search +Searches +Searchlight +Searchwood +Searcy +Seareel +Searing +Searingtown +Searl +Searle +Searles +Sears +Sears Island +Sears Landing +Sears Point +Sears Ranch +Searsville +Seascale +Seascape +Seascape Ridge +Seashell +Seashore +Seaside +Seasongood +Seasons +Seasons Ridge +Seaspray +Seastorm +Seat Pleasant +Seathwaite +Seaton +Seatroller +Seattle +Seaver +Seaverns +Seavey +Seaview +Seaview Ranch +Seavy +Seawall +Seawane +Seawanhaka +Seaward +Seaway +Seawell +Seawind +Seawood +Seay +Seba +Sebago +Sebastan +Sebastapol +Sebastian +Sebastian Bore +Sebastiani +Sebastion +Sebastopol +Seberger +Sebert +Sebon +Sebrell +Sebright +Sebring +Secant +Secatoag +Secatogue +Secaucus +Seckel +Secker +Secluded +Secluded Oaks +Second +Second Brook +Second Cross +Second Neptune +Second Roosevelt +Second Time +Seconset +Secor +Secoya +Secret Bay +Secret Garden +Secret Hollow +Secret Meadows +Secret Place +Secret River +Secretan +Secretariat +Section +Security +Security Park +Sedalia +Sedan +Sedcote +Sedding +Seddley +Seddon +Seddon Hill +Sedge +Sedge Meadow +Sedge Wood +Sedgebrook +Sedgecombe +Sedgefield +Sedgeford +Sedgehill +Sedgehurst +Sedgeman +Sedgemeadow +Sedgemere +Sedgemoor +Sedgemoore +Sedger +Sedgewell +Sedgewick +Sedgewick Village +Sedgewicke +Sedgley +Sedgley Park +Sedgman +Sedgmoor +Sedgwick +Sedleigh +Sedlescombe +Sedona +Sedore +Sedrup +Sedum +Sedwick +See +Seeanar +Seed +Seed Farm +Seedfield +Seedley +Seedley View +Seedling +Seedly Park +Seegers +Seek +Seekford +Seekonk +Seel +Seeley +Seeleys +Seelig +Seely +Seelye +Seeman +Seemas +Seemore +Seena +Seeno +Seer Green +Seers +Seery +Seeser +Seething +Sefton +Segel +Segelken +Segenhoe +Seger +Segers +Sego +Segovia +Segrove +Seguine +Seguridad +Sehring +Seibel +Seiburg +Seidel +Seidler +Seidman +Seifert +Seigel +Seiko +Seil +Seiler +Seine +Seitler +Seitz +Seiver +Sekforde +Sekonnet +SelWyn +Selah +Selassie +Selbie +Selborne +Selbourne +Selby +Selby Heights +Selby Ranch +Selcroft +Selden +Seldin +Seldon +Sele +Seley +Self +Self Esteem +Selford +Selfox +Selfridge +Selger +Selham +Selhurst +Selhurst New +Selig +Selim +Selina +Selinda +Selkirk +Sell +Selleck +Sellers +Sellincourt +Sellman +Sellner +Sellons +Sells +Sellstrom +Sellwood +Selma +Selmac +Selman +Selmart +Selmarten +Selmon +Selnick +Selo +Selover +Selsby +Selsdon +Selsdon Park +Selsey +Selsfield +Selso +Selstead +Selston +Seltzer +Selva +Selvage +Selvante +Selvyn +Selway +Selwood +Selworth +Selworthy +Selwyn +Sem +Semaan +Semaphore +Semel +Semeria +Semicircular +Semiconductor +Semillon +Seminary +Seminary Cove +Seminole +Semley +Semmens +Semmler +Semon +Semont +Semper +Semphill +Sempill +Semple +Semple Village +Sempstead +Semton +Senaca +Senacre +Senate +Senator +Senatorial +Send +Send Barns +Senda Ladera +Sendero +Sendick +Sends Barn +Seneca +Seneca Ayr +Seneca Chase Park +Seneca Crossing +Seneca Farm +Seneca Knoll +Seneca Park +Seneca Ridge +Senecal +Seney +Senga +Senhorinha +Senhouse +Senic +Senior +Senlac +Senn +Senna +Sennar +Senne +Sennen +Seno +Senon +Senpek +Senrab +Senseney +Senta +Senter +Sentinel +Sentry +Sentry Ridge +Sephar +Sephton +Seppala +Seppelt +Seppi +September +Septimus +Sepulveda +Sequams +Sequdia +Sequeira +Sequoia +Sequoia Creek +Sequoia Flat +Sequoia Glen +Sequoia Hill +Sequoia Pacific +Sequoia Ridge +Sequoia Valley +Sequola +Sequoya +Sequoyah +Sera +Serafine +Serafix +Seramonte +Seranade +Serbian +Serena +Serenade +Serendipity +Serene +Serenidad +Serenite +Serenity +Serenity Hills +Serenity Point +Serenity Valley +Serenity View +Sereno +Serenoa +Serge +Serge Hill +Sergeant +Sergeant Hartz +Sergeant John V Young +Sergeants +Sergeants Green +Sergi +Sergison +Serina +Serinne +Serle +Sermon +Sero Estates +Sero Pine +Serpa +Serpentine +Serpilio +Serra +Serramar +Serramonte +Serrano +Serravista +Serrell +Serres +Servern +Servia +Servia Hill Servia +Service +Services +Serviden +Serviss +Sesame +Sessions +Sestri +Set +Seta +Setauket +Setchell +Setford +Seth +Seth Hamilton +Sethlow +Seton +Seton Creek +Seton Hall +Seton Hill +Setrok +Sette +Setter +Setterland Farm +Setterquist +Setting Sun +Settington +Settle +Settlement +Settlers +Settlers Grove +Settlers Pond +Settlers Ridge +Settles +Settrington +Settstones +SetzLer +Seurat +Sevan +Sevarden +Sevely +Seven Acres +Seven Arches +Seven Bridge +Seven Bridges +Seven Crest +Seven Gables +Seven Hill +Seven Hills +Seven Hills Ranch +Seven Mile +Seven Oaks +Seven Pine +Seven Pines +Seven Sisters +Seven Springs +Seven Thorns +Seven Trails +Seven Trees +Seven Woods +Sevenacre +Sevenoake +Sevenoaks +Sevenside +Seventeenth +Seventh +Sever +Severalls +Severals +Severance +Severini +Severinsen +Severn +Severn Chapel +Severn Forest +Severn Grove +Severn Hills +Severn River +Severn Side Farm +Severna +Severncrest +Severncroft +Severndale +Severnside +Severnview +Severus +Severyns +Sevier +Sevilla +Seville +Sevington +Sevinor +Sevland +Sevor +Sewall +Sewall Woods +Sewan +Sewanee +Sewanois +Seward +Seward Park +Sewardstone +Sewaren +Sewdley +Sewell +Sewells Orchard +Sewickley +Sexa +Sexauer +Sexburga +Sextant +Sexton +Sexton Farm +Sexton View +Sextons +Sextus +Seybrooke +Seymer +Seymor +Seymore +Seymour +Seymour Court +Seymour Park +Seyon +Seyssel +Sgt Beers +Shabbona +Shabona +Shackamaxon +Shackel +Shackelford +Shackelton +Shackford +Shacklands +Shackleford +Shacklegate +Shackleton +Shacklewell +Shackliffe +Shackstead +Shad +Shad Creek +Shadbolt +Shadbush +Shaddick +Shaddock +Shaddox +Shade +Shade Tree +Shaded Leaf +Shadeland +Shadelands +Shadetree +Shadewell +Shadewood +Shadforth +Shadi +Shadle +Shadlow +Shadow +Shadow Bend +Shadow Brook +Shadow Creek +Shadow Crk +Shadow Dance +Shadow Falls +Shadow Hawk +Shadow Hill +Shadow Lake +Shadow Lawn +Shadow Leaf +Shadow Moss +Shadow Mountain +Shadow Oak +Shadow Park +Shadow Point +Shadow Pond +Shadow Ridge +Shadow Run +Shadow Tree +Shadow Valley +Shadow Wood +Shadowbrook +Shadowcreek +Shadowfax +Shadowglen +Shadowhill +Shadowood +Shadowport +Shadowridge +Shadowrock +Shadows +Shadowtree +Shadoxhurst +Shadwell +Shady +Shady Acres +Shady Arbor +Shady Beach +Shady Brook +Shady Cove +Shady Creek +Shady Dale +Shady Elm +Shady Glen +Shady Glenn +Shady Grove +Shady Hill +Shady Hills +Shady Hollow +Shady Island +Shady Knoll +Shady Mill +Shady Nook +Shady Oak +Shady Oaks +Shady Palm +Shady Path +Shady Pine +Shady Point +Shady Rest +Shady Ridge +Shady Rose +Shady Side +Shady Slope +Shady Spring +Shady Tree +Shady View +Shady Way +Shady Willow +Shady Wood +Shadybrook +Shadyglade +Shadygrove +Shadylane +Shadylawn +Shadyrest +Shadyside +Shadyslope +Shadyspring +Shadyview +Shadyway +Shadywood +Shaefer +Shafer +Shaffer +Shaffi +Shaffner +Shaft +Shafter +Shaftesbury +Shafto +Shafton +Shaftsbury +Shag Bark +Shagbark +Shaggy Calf +Shago +Shaheed +Shailer +Shainsky +Shainy +Shake Mill +Shake Tree +Shaker +Shaker Ridge +Shakerley +Shakespeare +Shakespeare Farm +Shakleton +Shakopee +Shalcomb +Shalcross +Shalcross Mill +Shalden +Shaldon +Shale +Shale Peak +Shale Quarry Back +Shaler +Shales +Shalesbrook +Shalestone +Shalfleet +Shalford +Shalimar +Shall +Shallcross +Shallons +Shalloo +Shallow Bank +Shallow Brook +Shallow Cove +Shallow Creek +Shallow Ford +Shalstone +Shaman +Shambliss +Shambrook +Shameran +Shames +Shamley +Shamrock +Shamrock Glen +Shamrock Glenn +Shamrock Ridge +Shana +Shanahan +Shanandale +Shand +Shande +Shandel +Shandon +Shandwick +Shandy +Shane +Shane Gould +Shane Park +Shane Thomas +Shaner +Shangani +Shangri +Shangri la +Shangrila +Shanklin +Shanklyn +Shanley +Shanna +Shannan +Shannock +Shannon +Shannon Heights +Shannon Hill +Shannon Oak +Shannondale +Shanti +Shantock +Shanuk +Shap +Shapley +Shapling Ridge +Shardcroft +Shardeloes +Shardlow +Sharen +Sharewood +Shari +Shari Ann +Sharian +Sharilyn +Shark River +Sharkey +Sharkon +Sharland +Sharlee +Sharlene +Sharma +Sharman +Sharmon Palms +Sharn +Sharnal +Sharney +Sharola +Sharon +Sharon Bee +Sharon Chapel +Sharon Oaks +Sharon Park +Sharondale +Sharonwood +Sharot +Sharp +Sharp House +Sharp Park +Sharpe +Sharpenhoe +Sharpersville +Sharpes +Sharples +Sharples Hall +Sharpleshall +Sharpley +Sharpners Pond +Sharps +Sharps Point +Sharpsburg +Sharpstead +Sharratt +Sharretts +Sharrington +Sharrock +Sharron +Sharrott +Sharrotts +Sharstead +Sharsted +Sharston +Sharvel +Shary +Shasta +Shasta Lily +Shatel +Shattack Track +Shatters +Shattuck +Shattuck Park +Shaughnessy +Shaun +Shauna +Shaundale +Shaver Grade +Shaver Lake +Shavers Lake +Shaves Wood +Shaw +Shaw Cross Chidswell +Shaw Farm +Shaw Fields +Shaw Hall Bank +Shaw Head +Shaw Moor +Shaw William +Shawbrook +Shawbrooke +Shawbury +Shawclough +Shawcroft +Shawcross +Shawden +Shawe +Shawe Hall +Shawfield +Shawford +Shawger +Shawhall +Shawhan +Shawlea +Shawmont +Shawmut +Shawn +Shawn Leigh +Shawna +Shawnee +Shawnee Woods +Shawnlee +Shawno +Shaws +Shawsheen +Shawstead +Shay +Shayfield +Shaylor +Shaylynn +Shea +Shea Center +Shea Memorial +Sheader +Sheaf +Sheafe +Sheahan +Shealy +Shean +Shear Creek +Sheard +Sheardhall +Sheardley +Shearer +Shearing +Shearman +Shears +Shearson +Shearton +Shearwater +Sheas +Sheath +Sheather +Sheathers +Sheckells +Shed +Shedd +Shedworth +Sheehan +Sheehy +Sheeley +Sheen +Sheen Common +Sheep +Sheep Farm +Sheep Hill +Sheep House +Sheep Pasture +Sheep Rock +Sheepbarn +Sheepcoates +Sheepcot +Sheepcote +Sheepcote Dell +Sheepcote Green +Sheepcotes +Sheepdown +Sheepen +Sheepfold +Sheepfoot +Sheepgate +Sheephatch +Sheephill +Sheephouse +Sheephurst +Sheeplands +Sheepridge +Sheepsetting +Sheepshead Bay +Sheepstreet +Sheepwalk +Sheering +Sheering Hall +Sheering Lower +Sheering Mill +Sheerlands +Sheerness +Sheerwater +Sheet +Sheet Glass +Sheet Mill +Sheethanger +Sheets Farm +Sheets Heath +Sheffield +Sheffield Mill +Sheffler +Shefield +Sheila +Sheiling +Shelard +Shelart +Shelborne +Shelbourne +Shelburne +Shelbury +Shelby +Shelby Creek +Shelby Dale +Shelby Hills +Shelcote +Shelden +Sheldon +Sheldon Creek +Sheldon Hill +Sheldon Lake +Sheldon Oaks +Sheldons +Sheldonville +Sheldrake +Shelduck +Shelerud +Shelfield +Shelford +Shelgate +Shelia +Shell +Shell Cove +Shell Flower +Shell Gate +Shell Hospital Bridge +Shell Lake +Shell Valley +Shellbank +Shellbanks +Shellbark +Shellbourne +Shellcote +Shellcove +Shelldrake +Shelley +Shelleys +Shellford +Shellgrove +Shellhorn +Shellingham +Shellmound +Shellness +Shellow +Shellton +Shellwood +Shellwoods +Shelly +Shellye +Shelsey +Shelter +Shelter Bay +Shelter Cove +Shelter Creek +Shelter Hill +Shelter Lagoon +Shelter Rock +Shelters +Shelterview +Shelterwood +Shelton +Shely +Shemer +Shenandoah +Shenfield +Shenley +Shenley Hill +Shenleybury +Shennamere +Shennen +Shenorock +Shenstone +Shenton +Shenton Park +Shentonfield +Shenwood +Shepard +Shepard Memorial +Shepards +Shepardson +Shepardville +Sheperd +Shephall +Shephard +Shepherd +Shepherd Canyon +Shepherd Cross +Shepherd Hills +Shepherders Spring +Shepherds +Shepherds Bush +Shepherds Gate +Shepherds Grove +Shephers +Shepiston +Sheple +Shepley +Sheppard +Shepperton +Shepperton Court +Sheppey +Shepton +Shera +Sheraden +Sherando +Sherard +Sherars +Sheraton +Sheraton Tysons +Sherbon +Sherborn +Sherborne +Sherboro +Sherbourne +Sherbrook +Sherbrooke +Sherburn +Sherburne +Sherburne Hills +Sherdley +Shere +Sherebrooke Woods +Sheredan +Sheredes +Sherenden +Sherfield +Sherford +Sheri +Sheridan +Sheridan Hills +Sheridan Spur +Sheridans +Sheridonna +Sheriff +Sheriffs +Sherill +Shering +Sheringham +Sherington +Sherland +Sherlies +Sherlin +Sherlock +Sherman +Sherman Bridge +Sherman Farm +Sherman Island +Sherman Island Levee +Sherman Lake +Sherman Oaks +Shermead +Shermer +Shernbroke +Shernden +Sherrard +Sherrardspark +Sherree +Sherrick +Sherrick Green +Sherrie +Sherriff +Sherrill +Sherrin +Sherringham +Sherrow +Sherry +Sherry Hill +Sherry Lee +Sherway +Sherwell +Sherwick +Sherwin +Sherwine +Sherwood +Sherwood Forest +Sherwood Hall +Sherwood Hill +Sherwood Hills +Sherwood Lake +Sherwood Park +Sherwoods +Sheryl +Shesley +Shesue +Shetcliffe +Shetland +Shetland Green +Shetlands +Shetler +Shevchenko +Sheve Hill +Sheveland +Shevelin +Shevlin +Shewens +Shewtan +Shibley +Shiel +Shield +Shieldborn +Shieldhall +Shields +Shiele +Shienfield +Shienfield Aborfield +Shienfield Church +Shiers +Shifnall +Shiley +Shillaber +Shilling +Shillingford +Shillington +Shiloh +Shiloh Church +Shilton +Shimizu +Shimmer River +Shimmin +Shin +Shindale +Shinfield +Shingle Creek +Shingle Crk +Shingle Mill +Shingle Oak +Shingle Valley +Shinglebarn +Shinglewell +Shining Water +Shinkle +Shinn +Shinnecock +Shinnick +Ship +Ship Rock +Ship Ways +Shipbourne +Shipbrook +Shipe +Shipham +Shipherd +Shipland +Shiplett +Shipley +Shipley Bridge +Shipley Farm +Shipley Hills +Shipman +Shippan +Shippee +Shippen +Shipper Bottom +Shippers +Ships +Ships Curve +Ships Knee +Ships Point +Shipston +Shipsview +Shipton +Shipwatch +Shipway +Shipwheel +Shipwright +Shipwrights +Shipyard +Shira +Shirburn +Shirbutt +Shire +Shire Oak +Shirebrook +Shireburn +Shiredale +Shiregreen +Shirehall +Shireoak +Shires +Shiretown +Shirewood +Shirill +Shirland +Shirlawn +Shirlee +Shirleen +Shirley +Shirley Church +Shirley Groton +Shirley Hills +Shirley House +Shirley Murphy +Shirley Oaks +Shirley Park +Shirley Vista +Shirley Way Bridle +Shirlington +Shirlock +Shirlow +Shirra +Shiva +Shiver +Shltr Rock +Shoal +Shoal Creek +Shoal Point +Shoal Water +Shoalhaven +Shoals +Shobar +Shobden +Shockey +Shockey Farms +Shodham +Shoe +Shoe Factory +Shoebury +Shoebury Common +Shoecroft +Shoemake +Shoemaker +Shoemaker Farm +Shoesmith +Shogmoor +Shogoro +Sholebroke +Sholem +Sholer +Sholton +Sholver +Shon +Shone +Shonks Mill +Shonnard +Shook +Shoonover +Shoop +Shooters +Shooters Hill +Shootersway +Shootingstar +Shop +Shopland +Shoplands +Shopman +Shoppe +Shoppenhangers +Shoppers World +Shoppes +Shopping Center +Shopping Heights +Shopton +Shoptysons +Shoquist +Shore +Shore Acres +Shore Breeze +Shore Club +Shore Edge +Shore End +Shore Garden +Shore Harbour +Shore Park +Shore View +Shore Walk +Shorebird +Shoreclift +Shoreclub +Shoredale +Shoreditch High +Shorefield +Shorefront +Shoregate +Shoreham +Shoreham Beach +Shorehame Club +Shorehaven +Shorehill +Shorelake +Shoreland +Shoreline +Shorely +Shorer +Shores +Shores Edge +Shores Green +Shoreside +Shoreview +Shoreview Park +Shorewalk +Shoreward +Shoreway +Shorewood +Shorewood Oaks +Shorey +Shorland +Shorn +Shorncliffe +Shorne Ifield +Shornecliffe +Shorrold +Short +Short Curve +Short Cut +Short Hill +Short Hills +Short Line +Short Ridge +Shortborough +Shortcroft +Shortcrofts +Shortcross +Shortcut +Shortdale +Shorter +Shortheath +Shorthill +Shorthills +Shorthorn +Shortland +Shortlands +Shortline +Shortmead +Shortmeadow +Shortridge +Shorts +Shortt +Shortway +Shortwood +Shoshana +Shoshone +Shot Town +Shotfield +Shotgun +Shotgun Fire +Shotkoski +Shotkowski +Shotover +Shott +Shottendane +Shottenden +Shottermill +Shotters +Shottfield +Shotwell +Shouldham +Shoults +Shouse +Shove +Shovelers +Shoveller +Shovelstrode +Showers +Showfields +Showground +Showlow +Shrader +Shrapnel +Shratton +Shremor +Shresbury +Shreve +Shrewsbury +Shrewton +Shrimpton +Shrine +Shriners +Shrive +Shriver +Shroffold +Shropshire +Shroton +Shrub +Shrub End +Shrub Hollow +Shrubbs +Shrubbs Hill +Shrubland +Shrubs +Shrubsole +Shu Swamp +Shuart +Shubert +Shuck +Shudehill +Shuey +Shufelt +Shuler +Shults +Shultz +Shuman +Shumard Oak +Shumway +Shunpike +Shupe +Shupin +Shurdington +Shure +Shurlach +Shurland +Shurlock +Shurmer +Shurtleff +Shurwin +Shut +Shute +Shutley +Shutt +Shutter +Shuttle +Shuttle Hillock +Shutts +Shuyler +Shye +Si Mall +Siandra +Sias +Sibbald +Sibbick +Sibelius +Sibella +Sibert +Sibley +Sibley Hills +Sibley Park +Sibson +Sibthorpe +Sibton +Sicard +Siccut +Sicilian +Sicily +Sickle +Sickle Bar +Sicklehatch +Sickles +Sickletown +Siclen +Sicomac +Sicora +Sidbrook +Sidbury +Sidcup +Siddall +Siddeley +Siddens +Siddington +Siddon +Siddons +Side +Side End +Side Saddle +Sidebotham +Sidebottom +Sideburn +Sidehill +Siden +Sideview +Sideways +Sidlaw +Sidlaws +Sidlaws Hills +Sidler +Sidley +Sidmouth +Sidmouth Grange +Sidney +Sidney Jones +Sidney Lanier +Sidwell +Sidworth +Siebel +Sieben +Siebert +Sieberts Ridge +Siedler +Siegel +Siegert +Siegle +Siegmond +Siek +Sielaff +Siemens +Siemer +Siems +Siena +Sienna +Sienna Park +Sierks +Sierra +Sierra Azul +Sierra College +Sierra Creek +Sierra Crest +Sierra Glen +Sierra Gold +Sierra Highlands +Sierra Madre +Sierra Mar +Sierra Meadow +Sierra Mesa +Sierra Mills +Sierra Morena +Sierra Oaks +Sierra Oaks Vista +Sierra Park +Sierra Pass +Sierra Point +Sierra Ridge +Sierra River +Sierra Spring +Sierra Sunset +Sierra Ventura +Sierra View +Sierra Vista +Sierra Wood +Sierra Woods +Sierraville +Sierrawood +Siesta +Siesta Key +Siesta Vista +Sievers +Sievert +Siewert +Sigberth Ridge +Sigdon +Sigel +Sigerson +Sigfrid +Siglingen +Sigma +Sigmona +Sigmond +Sigmund +Signal +Signal Bell +Signal Hill +Signal Tree +Signal View +Signature +Signe +Signet +Signs +Sigourney +Sigsbee +Sigtim +Sigwalt +Siino +Sikkema +Sikorsky +Silacci +Silace +Silala +Silam +Silas Hutchinson +Silber +Silberhorn +Silberman +Silbury +Silchester +Silco +Silcoates +Silecroft +Silence +Silent Brook +Silent Creek +Silent Dell +Silent Hills +Silent Lake +Silent Valley +Silent Wolf +Silentree +Silentwood +Siler +Silerton +Silex +Silica +Silicon +Silicon Valley +Silk +Silk MIll +Silk Mill +Silk Mill Way Iveson +Silk Oak +Silk Tree +Silk Wood +Silkfield +Silkham +Silkmore +Silkstone +Silkstream +Silktree +Silkwood +Silkworth +Sill +Silleck +Sillery Bay +Silliman +Silloway +Silo +Silo Inn +Silopanna +Silsbee +Silsby +Silsden +Silsoe +Silton +Silva +Silva Dale +Silva Ranch +Silva Valley +Silvaire +Silvan Glen +Silvana +Silvano +Silveira +Silver +Silver Beach +Silver Beech +Silver Bell +Silver Belt +Silver Berry +Silver Birch +Silver Brook +Silver Brush +Silver Canyon +Silver Charm +Silver Cliff +Silver Creek +Silver Creek Valley +Silver Crest +Silver Dollar +Silver Eagle +Silver Fern +Silver Fir +Silver Fox +Silver Hill +Silver Hills +Silver Hollow +Silver King +Silver Knoll +Silver Lake +Silver Lake Park +Silver Lake Service +Silver Lakes +Silver Leaf +Silver Legend +Silver Linden +Silver Lode +Silver Maple +Silver Meadow +Silver Moon +Silver Mountain +Silver Oak +Silver Park +Silver Peak +Silver Pine +Silver Plume +Silver Point +Silver Poplar +Silver Reef +Silver Ridge +Silver Rock +Silver Royd +Silver Run +Silver Shadow +Silver Shoon Ranch +Silver Side +Silver Spring +Silver Springs +Silver Spruce +Silver Spur +Silver Trail +Silver Trumpet +Silver View +Silver Wings +Silvera +Silverado +Silverbell +Silverbend +Silverberry +Silverbirch +Silverbrook +Silvercove +Silvercrest +Silverdale +Silverdate +Silverdell +Silverfield +Silvergate +Silverhey +Silverhill +Silverhollow +Silverhurst +Silverlake +Silverland +Silverlea +Silverleaf +Silverline +Silverlock +Silverlocke +Silvermere +Silvermine +Silverod +Silverpine +Silverside +Silversmith +Silverspot +Silversted +Silverstone +Silverthorn +Silverthorne +Silvertide +Silverton +Silvertown +Silvertrail +Silvertree +Silvertrees +Silverview +Silvervine +Silverwater +Silverwell +Silverwillow +Silverwood +Silvester +Silveyville +Silvia +Silvio +Silwood +Silzer +Sim +Simarano +Simard +Simas +Simberlan +Simbroco +Simcoe +Simek +Simeon +Simeone +Simister +Simkins +Simko Ranch +Simla +Simmat +Simmerhorn +Simmondley +Simmondley New +Simmonds +Simmone +Simmons +Simmonstone +Simms +Simms Landing +Simnel +Simo +Simon +Simon Hapgood +Simon Hill +Simon Lake +Simon Pearce +Simon Ranch +Simon Willard +Simond +Simonds +Simonds Farm +Simone +Simone Weil +Simoni +Simoni Ranch +Simons +Simonsen +Simonson +Simonton +Simotes +Simpkin +Simpkins +Simpkins Farm +Simplemarsh +Simplex +Simplicity +Simpson +Simpson Hill +Simpson Ranch +Simpsons +Sims +Simsbury +Simson +Sinai +Sinaloa +Sinatra +Sinawoy +Sincero +Sinclair +Sinclair Martin +Sinclair Mill +Sincots +Sindel +Sinderland +Sindle +Sindlesham +Sindsley +Sine +Sines +Singapore +Singer +Singers +Singers Glen +Singing Hill +Singing Hills +Singing Pines +Singing Wood +Singingwood +Single +Single Bird +Single Foot +Single Leaf +Singleborough +Singles Ridge +Singletary +Singleton +Singletree +Singlets +Singlewell +Singley +Singworth +Sinhurst +Sinnen +Sinnet +Sinnott +Sinon +Sinvalco +Sion +Sioux +Sip +Sipes +Sipp +Sippel +Sipson +Sir Alexander +Sir Antony +Sir Bernard Paget +Sir Douglas +Sir Evelyn +Sir Francis +Sir Galahad +Sir Gawaine +Sir George Martin +Sir Henry Brackenbury +Sir John Fogge +Sir Joseph Banks +Sir Lancelot +Sir Reginald Ansett +Sir Reynard +Sir Richard +Sir Richard Fairey +Sir Thomas +Sir Thomas Mitchell +Sir Viceroy +Sir Walter +Sir Walter Raleigh +Sir Warwick Fairfax +Sir William +Siracusa +Sirard +Sirdar +Sirder +Siren +Siri +Siri Rock Quarry +Sirius +Sirius Cove +Sirois +Siron +Sirus +Sisalbed +Sisco +Sise +Sish +Sisk +Siske +Siskin +Siskiyou +Sisley +Sissinghurst +Sisson +Sissons +Sister Cities +Sisters +Sistova +Sitgreaves +Sitka +Sitter +Sittingbourne +Siusun Valley +Sivert +Sivic +Siwanoy +Siward +Six Box +Six Corners +Six Mile Creek +Six Penny +Six Towers +Sixteen Twenty +Sixteenth +Sixth +Sixth Mile +Sixty Acres +Sizemore +Skaggs Island +Skaggs Springs +Skagit +Skahan +Skaife +Skamania +Skander +Skardu +Skarratt +Skate +Skater +Skating Pond +Skeels +Skeet Hill +Skeffington +Skeggs +Skegness +Skegsbury +Skehan +Skeleton +Skelgill +Skelley +Skellinger +Skellington +Skellorn Green +Skellow +Skelton +Skelton Grange +Skeltons +Skelwith +Skene +Skenes +Skerne +Skerry +Skerton +Sketty +Skeyne +Skeynes +Ski +Ski Hill +Ski Lodge +Skiba +Skibbereen +Skibbs +Skibo +Skid +Skidaw +Skidmore +Skidmores +Skiers +Skiff +Skiles +Skillcorn +Skillings +Skillman +Skilton +Skimmer +Skimped Hill +Skimpot +Skinner +Skinners +Skinners Turn +Skinney +Skip +Skip Jack +Skipjack +Skipper +Skippers +Skippets +Skipsey +Skipton +Skipwith +Skipworth +Skokie +Skokie Ridge +Skokie Valley +Skoshi +Skove +Skube +Skunks Misery +Skurla +Sky +Sky Blue +Sky Country +Sky Creek +Sky Crest +Sky Croft +Sky Farm +Sky Hawk +Sky Hill +Sky Hy +Sky Lake +Sky Meadow +Sky Meadows +Sky Oaks +Sky Peals +Sky Ranch +Sky Top +Sky Valley +Sky View +Skyarla +Skybrook +Skycrest +Skye +Skyewood +Skyfarm +Skyfield +Skyglade +Skyharbour +Skyhawk +Skyhigh +Skyhill +Skyland +Skylane +Skylar +Skylark +Skylawn +Skyler +Skyline +Skyline Curve +Skyline Lakes +Skyline Quarry +Skyline Ranch +Skylonda +Skymont +Skypark +Skyport +Skyranch +Skyridge +Skyswood +Skytop +Skytrain +Skyview +Skyvilla +Skyvue +Skywalker +Skywalker Ranch +Skyward +Skywater +Skyway +Skywest +Skywood +Slab Haul +Slabey +Slack +Slack Fold +Slack Gate +Slackcote +Slacks +Slad +Sladden +Slade +Slade Green +Slade Oak +Slade Run +Slade School +Slade green +Sladedale +Sladen +Slag +Slager +Slagle +Slaidburn +Slaight +Slaithwaite +Slaithwaite Radcliffe +Slalom +Slaney +Slapp +Slapton +Slate +Slate Creek +Slate Run +Slateacre +Slater +Slaters +Slatesford +Slatin +Slattery +Slattocks Link +Slaugham +Slaughter Dam +Slaughterhouse +Slavin +Slayback Ranch +Slayton +Sleaford +Sleapshyde +Slecroft +Sledding Hill +Sledmere +Sledmoor +Sleeper +Sleepers Farm +Sleeping Bear +Sleeping Dog +Sleepy +Sleepy Creek +Sleepy Hollow +Sleepy Hollow Dairy +Sleepy Horse +Sleepy Lake +Sleepy Ridge +Sleepy Valley +Sleepy View +Sleets +Sleigh +Sleight +Slender +Slessor +Slewins +Slice +Slidell +Sligar +Sligo +Sligo Creek +Sligo Mill +Slim +Slimbridge +Slimmons +Slines New +Slines Oak +Slingerland +Slip +Slip Mill +Slipe +Slippery Creek +Slippery Rock +Slipshoe +Slipway +Sloan +Sloane +Sloane Square Sloane +Sloanes Beach +Sloat +Slobe +Slocom +Slocum +Slocum Lake +Slocumb +Slone +Sloop +Slope +Slopecrest +Sloping Hill +Slosson +Slough +Slough Farm +Slougham +Sloughgreen +Sloughhouse +Sloway Coast +Slugwash +Sluice +Sluman +Slumberland +Sly +Sly Fox +Slyvan +Slyvaner +Smail +Smaland +Smalewell +Small +Small Brook +Small Grove +Small Hythe +Small Island +Small Lees +Small Reward +Smallberry +Smallbridge +Smallbrook +Smalldean +Smalley +Smallfield +Smallford +Smallgains +Smalls +Smalls Hill +Smallshaw +Smallshill +Smallwood +Smallwood Church +Smalzel +Smarden +Smart +Smarts +Smarts Heath +Smarts Mill +Smawthorne +Smc +Smeathers +Smeaton +Smeaton Approach Spur +Smeaton Grange +Smedley +Smee +Smeed +Smeeton +Smetana +Smethurst +Smethurst Hall +Smethwick +Smewins +Smidmore +Smidt +Smilax +Smiley +Smink +Smitana +Smith +Smith Brother +Smith Field +Smith Fold +Smith Hill +Smith Manor +Smith Mills +Smith Point +Smith Ridge Fire +Smith Switch +Smith Valley +Smith Village +Smitham Bottom +Smithers +Smithers Hill +Smithfield +Smithhart +Smithies +Smithies Moor +Smithills +Smithills Dean +Smithlee +Smiths +Smithson +Smithtown +Smithurst +Smithville +Smithway +Smithwick +Smithwood +Smithwood Common +Smithwoods +Smithy +Smithy Clough +Smithy Fold +Smithybridge +Smitty +Smittys +Smoke +Smoke Bellow +Smoke Rise +Smoke Tree +Smokehouse +Smokerise +Smoketown +Smoketree +Smokewood +Smokey Hill +Smokey Mountain +Smokey Mtns +Smokey Ridge +Smoky +Smoky Quartz +Smoot +Smoothleaf +Smug Oak +Smugglers +Smugglers Cove +Smull +Smullen +Smyrna +Smyth +Smythe +Smythes +Snail Lake +Snailing +Snailswell +Snake +Snake Brook +Snake Den +Snake Hill +Snakey +Snapdragon +Snape +Snapper +Snapper Cove +Snapping Turtle +Snaresbrook +Snargate +Snark +Snarsgate +Snatts +Snead +Sneath +Snedecor +Snedeker +Sneden +Snediker +Sneech Pond +Sneed +Sneider +Sneling +Snell +Snell Valley +Snelling +Snelling Av Service +Snelling Lake +Snellings +Snelson +Sneyd +Snicker +Snider +Snipe +Snipes +Snively +Snoad +Snoden +Snodgrass +Snodhurst +Snodland +Snohomish +Snohomish Woodinville +Snoll Hatch +Snoozin Tree +Snoqualmie +Snoqualmie River +Snouffers School +Snow +Snow Acres +Snow Bird +Snow Creek +Snow Crest +Snow Egret +Snow Goose +Snow Hill +Snow Lily +Snow Meadow +Snow Owl +Snow Point +Snow Valley +Snowball +Snowbell +Snowberry +Snowbird +Snowbury +Snowcap +Snowcrest +Snowden +Snowden Pond +Snowden River +Snowden Square +Snowden Woods +Snowdenham +Snowdenham Links +Snowdon +Snowdown +Snowdrift +Snowdrop +Snowerhill +Snowfall +Snowflake +Snowflower +Snowgoose +Snowhill +Snowhill Estates +Snowling +Snows Hill +Snowshill +Snowshoe +Snowsill +Snowy +Snowy Egret +Snowy Owl +Snug Cove +Snug Harbor +Snug Haven +Snug Hill +Snughorne +Snure +Snydale +Snyder +Soalwood +Soames +Soane +Soap +Soaphill +Soapstone +Soare +Soares +Soaring Hill +Soaring Oaks +Soave +Sobey +Sobieski +Sobo +Sobrante +Sobraon +Sobrato +Sobro +Soccer +Social +Society +Society Hill +Socorro +Soda Canyon +Soda Pop +Soda Springs +Sodaro +Sodbury +Soden +Soder +Sofa +Sofala +Soffel +Soffron +Sofia +Sofield +Soft Wind +Softwater +Softwind +Softwood +Soham +Sohap +Sohier +Sohl +Soho +Soifer +Soil Conservation +Sojourn +Soke +Sol +Sola +Solana +Solander +Solano +Solano College +Solar +Solar Hills +Solari +Solari Ranch +Solaridge +Solaris +Solartron +Solberg +Solbys +Soldate +Soldier +Soldier Hill +Soldiers +Soldiers Field +Sole Farm +Solebay +Soledad +Solent +Soleoak +Solera +Soleri +Soley +Solferino +Solfisburg +Soliano +Solid +Solidarity +Solis +Solitaire +Solitary +Solito +Solitude +Sollers Point +Solley +Sollport +Solmar +Solna +Solness +Solo +Soloff +Soloman +Solomon +Solomon Pond +Solomon Pond Mall +Solomons +Solomons Island +Soloms Court +Solon +Solono +Solook +Solow +Solstice +Soltes +Solvay +Solveig +Solway +Soma +Somali +Somer +Somerby +Somercote +Somerdale +Somerden +Somerfield +Somerford +Somerglen +Somerhill +Someries +Somerleyton +Somers +Somers Peterson +Somersbury +Somerset +Somersham +Somersville +Somersworth +Somerton +Somertrees +Somervelle +Somerville +Somme +Sommer +Sommerfeld +Sommers +Sommers Landing +Sommerville +Somner +Somnes +Somoa +Somonauk +Sonar +Sonata +Sondberg +Sonderburg +Sondergaard +Sondes +Sondes Place +Song Sparrow +Songbird +Songer +Songwood +Sonia +Soniver +Sonja +Sonn +Sonne +Sonneborne +Sonnet +Sonning +Sonning Common +Sonning High +Sonny +Sonoma +Sonoma Creek +Sonoma Mountain +Sonoma Ridge +Sonoma Valley +Sonora +Sonora Pass +Sonrel +Sonter +Sonuca +Sony +Soo +Soo Line +Soothill +Soper +Sophia +Sophie +Sophies +Sophist +Sophistry +Sophocles +Sophurst +Sopwith +Soquel +Soquel Creek +Soquel San Jose +Soquel Turnpike +Soquel Wharf +Sora +Sorbello +Sorbonne +Sorci +Sorel +Sorell +Soren +Soreng +Sorensen +Sorenson +Sorenstam +Sorento +Sorich +Sorlie +Sornoway +Sorowoc +Sorrel +Sorrel Hill +Sorrel Ridge +Sorrell +Sorrelwood +Sorreno +Sorrentino +Sorrento +Sorrie +Sorting +Sortmill +Sorton +Soscol +Soscol Creek +Soscol Ferry +Sosnowitz +Soss Moss +Sotano +Sotelo +Soterion +Sotherington +Sotheron +Sothoron +Sotnip +Soto +Sotoyome +Sotterly +Sotweed +Souberie +Soudan +Soueid +Sought For +Souh Park +Soulard +Souldern +Soule +Soult +Sound +Sound Bay +Sound Beach +Sound Shore +Sound View +Soundcrest +Sounding Shore +Soundside +Soundview +Sour Gum +Sourwood +Sousa +Souster +Sout Batavia +Soutborough +Souter +South +South A +South Abbott +South Abel +South Aberdeen +South Access +South Accommodation +South Acre +South Acres +South Acton +South Adams +South Airmont +South Airport +South Akron +South Alana +South Alaska +South Albert +South Alder +South Alfaya +South Allen +South Almaden +South Almond +South Alta +South Americus +South Amos +South Amphlett +South Amundsen +South Andover +South Angeline +South Angelo +South Apple +South Ash +South Ashland +South Ashton +South Atlantic +South Audley +South Augusta +South Austin +South Autumn +South Avalon +South Avon +South Avondale +South B +South Bacon Island +South Bailey +South Bangor +South Bank +South Bar +South Barn +South Barrington +South Barton +South Bascom +South Batavia +South Bateman +South Bay +South Bayard +South Baybrook +South Bayfield +South Bayshore +South Bayview +South Baywood +South Beach +South Bear Ridge +South Bedford +South Bella Monte +South Bellflower +South Bend +South Benefit +South Bennett +South Benton +South Bernardo +South Betty +South Beverly +South Birch +South Birkbeck +South Black Lion +South Blaney +South Blue Island +South Boas +South Bolingbrook +South Bolton +South Bond +South Border +South Boundary +South Bow +South Bow Lake +South Bowdoin +South Boylston +South Bozeman +South Bradford +South Branch +South Branciforte +South Brandon +South Bremen +South Bridge +South Bridgepointe +South Bristol +South Britton +South Broadway +South Brockway +South Brook +South Brooks +South Bruce +South Brush +South Buckingham +South Buena Vista +South Buffum +South Bulfinch +South Burns +South Bush +South Busse +South Byron +South California +South Cambridge +South Cameron +South Camp Meade +South Canal +South Canton +South Capitol +South Carboy +South Cargo +South Carlback +South Carol +South Carolina +South Carpenter +South Carr +South Carriage +South Carriage Way +South Carver +South Castro +South Cedar +South Cedar Glen +South Cemetry +South Center +South Central +South Chappell +South Charles +South Charlestown +South Chelmsford +South Cherrywood +South Chesterfield +South Chestnut +South Chicago +South Circle +South Circular +South Claremont +South Clark +South Clearbrook +South Cleveland +South Clinton +South Clover +South Clovercrest +South Cloverdale +South Club +South Clubhouse +South Cluff +South Coast +South Cody +South College +South Columbus +South Commercial +South Common +South Concord +South Conduit +South Conrad +South Conway +South Coombs +South Cooper +South Coral +South Corgiat +South Corporate +South Cottage +South Cotton +South Country Line +South County Line +South Court +South Cove +South Cragmont +South Creek +South Creekside +South Crescent +South Crest +South Creston +South Crestwood +South Cross +South Croston +South Croxted +South Crystal +South Culpeper +South Cypress +South D +South Dakota +South Danvers +South Davis +South Dawson +South Day +South Dean +South Dearborn +South Deborah +South Dedham +South Deer +South Deer Run +South Delancey +South Delaware +South Della +South Diameter +South Dickenson +South Dike +South Director +South Division +South Dogwood +South Dole +South Donovan +South Dorchester +South Doris +South Douglas +South Dowling +South Down +South Downs +South Dublin Ranch +South Dundalk +South Dunton +South Dwyer +South E +South Eads +South Eagle Nest +South East Main +South Eastern +South Eastwood +South Eddy +South Eden +South Edgewood +South Edison +South Edlin +South Edmunds +South El Monte +South Ela +South Eldorado +South Elise +South Eliseo +South Elizabeth +South Ellsworth +South Elm +South Elmgrove +South Elmhurst +South Elmwood +South Embers +South Emerald Oak +South Emerson +South End +South Entrance +South Erin +South Escanaba +South Esk +South Estates +South Estelle +South Euclid +South Evergreen +South Ewing +South Exchange +South Exit +South F +South Fairbanks +South Fairmont +South Fairview +South Falmore +South Farm +South Farrar +South Federal +South Ferdinand +South Fern +South Fernandez +South Ferry +South Fidalgo +South Field +South Filbert +South Fillmore +South Findlay +South Fine +South Fitch Mountain +South Flagg +South Fletcher +South Foothill +South Forest +South Forest Edge +South Fork +South Fountain +South Fox +South Frances +South Franklin +South Freda +South Frederick +South Free +South Fremont +South French Camp +South Fresno +South Frick +South Front +South Frontage +South Frontenac +South Fuel Break +South Fuller +South Fulton +South Furness +South G +South Garden +South Garden Loop +South Garfield +South Garrard +South Gate +South Gazelle +South Genesee +South Genessee +South Genevieve +South Genoa +South Gertrude +South Gilbert +South Gillis +South Glacier +South Glendale +South Glengarry +South Goebbert +South Goff +South Gold Ridge +South Grafton +South Graham +South Grand +South Grant +South Great +South Green +South Green Springs +South Greenleaf +South Greenthorn +South Greenwich +South Greenwood +South Grimmer +South Grove +South Grove Hill +South Grovetree +South Guild +South H +South Hall +South Halsted +South Ham +South Hampton +South Hancock +South Hanford +South Hanningfield +South Harbor +South Harbor View +South Hardy +South Harlan +South Harlem +South Harney +South Harriette +South Harris +South Harrison +South Hart +South Hartley +South Hartson +South Harvard +South Harvey +South Hatlen +South Haven +South Havenwood +South Hays +South Hazel +South Helena +South Henry +South Hess +South Hewitt +South Hickory +South Hicks +South High +South Highland +South Hill +South Hills +South Hillside +South Hinds +South Hinkley +South Hobart +South Hoga +South Holden +South Holgate +South Hollenbeck +South Hollins Ferry +South Hollow +South Holly +South Holmes +South Holt +South Homer +South Horton +South Hospital +South Houston +South Howard +South Howe +South Howland +South Hudson +South Hughes +South Humboldt +South Hummingbird +South Hunter +South Huntington +South Huron +South Hutchins +South Hyde +South I +South I Oka +South Idaho +South Illinois +South Industrial +South Inland +South Inner Circle +South Ironwood +South Irving +South J +South Jack Tone +South Jackson +South Janet +South Jefferson +South John +South Johnson +South Judkins +South Juneau +South Juniper +South K +South Kaiser +South Kaspar +South Kasson +South Keeble +South Kelly +South Kennbeck +South Kennebeck +South Kennedy +South Kennicott +South Kenny +South Kensico +South Kent Des Moines +South Kenyon +South Keppler +South Kersica +South Kerwood +South King +South Kingston +South Klein +South Knickerbocker +South Knoll +South Knollwood +South Koster +South Krista +South L +South La Grange +South LaSalle +South Lake +South Lake Dell +South Lake Sarah +South Lakes +South Lakeview +South Lambeth +South Lammers +South Lancaster +South Land Park +South Lander +South Langston +South Langworthy +South Larwin +South Laurel +South Lavergne +South Lear +South Lee +South Lehman +South Leigh +South Leisure +South Lenox +South Leo +South Leonard +South Leslie +South Lewis Park +South Lexington +South Liberty +South Lilac +South Lillian +South Lincoln +South Linden +South Linneman +South Livermore +South Liverpool +South Lockhart +South Locust +South Lodge +South Loma +South Lonsdale +South Loomis +South Loop +South Loring +South Lorna +South Los Angeles +South Louis +South Lowe +South Ludlow +South Lycett +South M +South Mac Arthur +South Macarthur +South Mackinaw +South Madera +South Madison +South Magnolia +South Maharaja +South Mahwah +South Main +South Mallard +South Manistee +South Manley +South Manor +South Manteca +South Manthey +South Maple +South Marble +South Marina +South Marine +South Market +South Marquette +South Marwood +South Mary +South Mary Frances +South Mary Francis +South Mason +South Massachusetts +South Mathewson +South May +South Mayfair +South Mayflower +South Mc Clellan +South Mc Donell +South Mc Kinley +South McClellan +South McCracken +South McDonnell +South McDowell +South McGlincey +South McKinley +South Meacham +South Mead +South Meadow +South Meier +South Mellon +South Merced +South Meridian +South Mesnefield +South Meyers +South Michael +South Michigan +South Middletown +South Midland +South Milbrook +South Mill +South Mill Creek +South Miller +South Mills +South Milpitas +South Milton +South Minahen +South Mitchell +South Modesto +South Moffett +South Molton +South Monroe +South Monsey +South Montgomery +South Moore +South Moorings +South Moray +South Morgan +South Morning Sun +South Morrison +South Morrissey +South Mount Baker +South Mountain +South Murphy +South Muskegon +South Myrtle +South N +South Naperville +South Natali +South Nauraushaun +South Navarra +South Naylor +South Nebraska +South Nelson +South Netherlands +South Netherton +South Nevada +South New Wilke +South Newport +South Nightingale +South Nordic +South Norfolk +South Normal +South Norman +South Normandy +South O +South Oak +South Oakwood +South Ocean +South Ohio +South Old Annapolis +South Oleander +South Olive +South Oliver +South Ophir +South Orange +South Oraton +South Orcas +South Orchard +South Ordnance +South Oro +South Orr +South Othello +South Overlook +South Oxford +South P +South Pacific +South Palisades +South Palmer +South Palomar +South Pamela +South Parallel +South Park +South Park Place +South Park Plaza +South Park Victoria +South Parkview +South Pascack +South Pastoria +South Patrick +South Patton +South Paula +South Peak +South Pearl +South Pebble Beach +South Peck +South Pembroke +South Peoria +South Perimeter +South Perry +South Pershing +South Peter +South Phelps +South Pilgrim +South Pine +South Pine Mountain +South Pinebrook +South Pinehurst +South Pippin +South Platti +South Pleasant +South Plum +South Plum Grove +South Plummer +South Point +South Polo +South Pond +South Ponderosa +South Pondside +South Port +South Portal +South Porter +South Portland +South Powers +South Prairie +South Prentice +South Prescott +South Priest +South Princeton +South Puget +South Pump +South Q +South Quebec +South Queen +South Quinsigamond +South R +South Racine +South Radford +South Railroad +South Rainbow +South Ranch +South Rancho +South Randall +South Rapetta +South Ravine +South Raymond +South Reach +South Redwing +South Redwood +South Reeve +South Regatta +South Regent +South Reid +South Reina del Mar +South Rengstorff +South Reuter +South Rhoda +South Richard +South Richwood +South Ridge +South Ridge Vista +South Ridgeland +South Ridgemark +South Ridgewood +South River +South Riverside +South Robert +South Roberts +South Robinson +South Rockaway +South Rockridge +South Rodeo Gulch +South Rohlwing +South Rolling +South Roosevelt +South Rosal +South Rose +South Rosewood +South Row +South Roxbury +South Roxie +South Royd +South Ruble +South Ruggles +South Run Oaks +South Russell +South Rustic +South Ryan +South S +South Sacramento +South Saint Ceclia +South Salado +South Salem +South San Antonio +South San Francisco +South San Jose +South San Luis +South San Mateo +South San Pedro +South Sangamon +South Santa Cruz +South Schmale +South Schmidt +South School +South Sea +South Sequoia +South Serven +South Service +South Seward Park +South Shaker +South Sharp +South Shasta +South Shell +South Shelton +South Sherman +South Sherwood +South Shingle +South Shore +South Shoreline +South Sibley +South Side +South Side Three +South Sierra Nevada +South Silver Springs +South Sinclair +South Smith +South Snoqualmie +South Solano +South Somerset +South Southern +South Spencer +South Spokane +South Spooner +South Springer +South Springinsguth +South Springs +South Spruce +South Sprucewood +South Sullivan +South Summit +South Sunnycrest +South Sunnyvale +South Sunset +South Surrey +South Surrey Ridge +South Susan +South Sutter +South Sydney +South Taaffe +South Taft +South Tall Grass +South Tamarack +South Tantau +South Tea Garden +South Temple +South Tenter +South Terrace +South Tessier +South Thayer +South Thelma +South Thistle +South Three Oaks +South Tillicum +South Tinnin +South Tobin +South Todd +South Tolman +South Tonne +South Town +South Tracy +South Treehouse +South Trenton +South Tulsa +South Turnpike E Fire +South Tuxedo +South Tweed +South Union +South University +South Upland +South Vail +South Vale +South Valley +South Van Buren +South Van Dorn +South Van Dyke +South Van Horn +South Van Ness +South Vasco +South Veach +South Ventura +South Vermont +South Victor +South View +South Vincennes +South Virginia +South Voelker +South Wabash +South Wachusett +South Wacker +South Wagner +South Waite +South Walker +South Wallace +South Walnut +South Walpole +South Walter +South Walton +South Ward +South Warehouse +South Warren +South Wash +South Washington +South Water +South Watt +South Waverly +South Weald +South Webster +South Weller +South Wells +South Welty +South West +South West Hills +South Westmore Meyers +South Wharf +South Whipple +South Whippoorwill +South Whiskey Slough +South Whisman +South White +South White Rock +South Whitehall +South Whitney +South Wilder +South Wildwood +South Wilhoit +South Wilke +South Wilkie +South Willard +South William +South Williams +South Williamson +South Willow +South Willow Creek +South Willow Glen +South Wilma +South Winchester +South Windemere +South Windsor +South Winfield +South Wing Levee +South Winston +South Winthrop +South Witham +South Wolf +South Wolfe +South Wolfinger +South Wood +South Woodsbro +South Woodside +South Woodward +South Worple +South Wright +South Yale +South York +South de Anza +South del Puerto +South el Circulo +South el Macero +SouthCottage +Southall +Southall King +Southall Brent +Southall King +Southam +Southampton +Southard +Southards +Southaven +Southbank +Southbay +Southbend +Southboro +Southbound Frontage +Southbourne +Southbreeze +Southbridge +Southbrook +Southbury +Southby +Southcenter +Southchurch +Southcliff +Southcliffe +Southcombe +Southcote +Southcote Farm +Southcourt +Southcreek +Southcrest +Southcroft +Southcross +Southdale +Southdene +Southdown +Southeast +Southeast Allen +Southeast Andrews +Southeast Bain +Southeast Bassett +Southeast Bean +Southeast Berry +Southeast Bush +Southeast Cambridge +Southeast Carr +Southeast Cedar Ridge +Southeast Cherry +Southeast Cisco +Southeast Clark +Southeast Colvos +Southeast Cornell +Southeast Croston +Southeast Culver +Southeast Curtis +Southeast Darst +Southeast Diablo View +Southeast Donnelly +Southeast Douglas +Southeast Eastgate +Southeast Evans +Southeast Fairwood +Southeast Flint +Southeast Fragaria +Southeast Fraser +Southeast Glendale +Southeast Grandview +Southeast Harper Hill +Southeast Highland +Southeast John +Southeast Jones +Southeast Kinsey +Southeast Klahanie +Southeast Lake +Southeast Lake Young +Southeast Lake Youngs +Southeast Lewis +Southeast May Valley +Southeast McBreen +Southeast McCollough +Southeast Mirrormont +Southeast Muir +Southeast Olympiad +Southeast Oneil +Southeast Overra +Southeast Perimeter +Southeast Petroviski +Southeast Petrovitsky +Southeast Pratt +Southeast Ridge +Southeast Scatterwood +Southeast Scott +Southeast Sebring +Southeast Sedgwick +Southeast Southworth +Southeast Summerhill +Southeast Sycamore +Southeast Tola +Southeast View Park +Southeast Washington +Southeast Wax +Southeast Willock +Southeast Wilson +Southeast Windsor +Southeast Yeshua +Southeastern +Southend +Souther +Souther Cross +Southerland +Southerly +Southern +Southern Access +Southern Businss Park +Southern Connector +Southern Cross +Southern Heights +Southern Hills +Southern Marin Line +Southern Maryland +Southern Md +Southern Night +Southern Oak +Southern Oaks +Southern Pacific +Southern Perimeter +Southern Planter +Southern Slope +Southernden +Southerns +Southerton +Southey +Southfalls +Southfield +Southfields +Southfleet +Southfork +Southfront +Southgarth +Southgate +Southgate Farm +Southglen +Southgrove +Southhampton +Southhead +Southhill +Southholm +Southill +Southington +Southlake +Southlakes +Southland +Southlands +Southlane +Southlawn +Southlea +Southlees +Southleigh +Southmead +Southmere +Southmill +Southminster +Southmont +Southmoor +Southmore +Southold +Southpine +Southpoint +Southpointe +Southport +Southridge +Southrun +Southsea +Southshore +Southside +Southtown +Southvale +Southview +Southville +Southwark +Southwark Park +Southwater Point +Southway +Southwell +Southwell Grove +Southwell Park +Southwest +Southwest Adams +Southwest Alaska +Southwest Andover +Southwest Angeline +Southwest Atlantic +Southwest Austin +Southwest Bank +Southwest Barton +Southwest Bayview +Southwest Bradford +Southwest Bruce +Southwest Burton +Southwest Cambridge +Southwest Canada +Southwest Carroll +Southwest Caster +Southwest Cedarhurst +Southwest Cemetery +Southwest Channon +Southwest Charlestown +Southwest City View +Southwest Clark +Southwest Cloverdale +Southwest Colewood +Southwest Concord +Southwest Cove +Southwest Cove Point +Southwest Cowan +Southwest Crescent +Southwest Dakota +Southwest Dawson +Southwest Dilworth +Southwest Director +Southwest Donald +Southwest Donovan +Southwest Eastbrook +Southwest Eddy +Southwest Edmunds +Southwest Elisha +Southwest Ellerwood +Southwest Ellisport +Southwest Elmgrove +Southwest Englewood +Southwest Fernwood +Southwest Findlay +Southwest Fletcher +Southwest Florida +Southwest Fontanelle +Southwest Forest +Southwest Forney +Southwest Francis +Southwest Front +Southwest Frontenac +Southwest Gibson +Southwest Gorsuch +Southwest Governers +Southwest Graham +Southwest Grayson +Southwest Hanford +Southwest Harbor +Southwest Hawthorne +Southwest Henderson +Southwest Heper +Southwest Hill +Southwest Hillcrest +Southwest Hinds +Southwest Holden +Southwest Holgate +Southwest Holly +Southwest Horton +Southwest Hudson +Southwest Ida +Southwest Idaho +Southwest Jacobsen +Southwest Juneau +Southwest Kenyon +Southwest Klahanie +Southwest Klickitat +Southwest Lander +Southwest Langston +Southwest Lisabuela +Southwest Luana +Southwest Luana Beach +Southwest Madrona +Southwest Main +Southwest Manning +Southwest Maury Park +Southwest Michigan +Southwest Mills +Southwest Monroe +Southwest Morgan +Southwest Mount Cedar +Southwest Nevada +Southwest Normandy +Southwest Ober Beach +Southwest Ocean View +Southwest Olga +Southwest Orchard +Southwest Oregon +Southwest Orleans +Southwest Othello +Southwest Prince +Southwest Pritchard +Southwest Raymond +Southwest Rose +Southwest Roxbury +Southwest Seattle +Southwest Seola +Southwest Shawnee +Southwest Shoremont +Southwest Shoreview +Southwest Snoqualmie +Southwest Soper +Southwest Spokane +Southwest Sullivan +Southwest Sunset +Southwest Thistle +Southwest Tillicum +Southwest Tillman +Southwest Trenton +Southwest Van Olinda +Southwest Virginia +Southwest Waite +Southwest Walker +Southwest Warsaw +Southwest Webster +Southwest Willow +Southwest Winthrop +Southwest Yancy +Southwestern +Southwick +Southwicke +Southwind +Southwinds +Southwold +Southwood +Southwood Lawn +Southwood Smith +Southwoods +Southworth +Southwynde +Souza +Sova +Sovereign +Sovereign Fold +Sovereign Heights +Soward +Soward Ranch +Sowards +Sowego +Sowerby +Sowles +Sowood +Sowrey +Spa +Spaans +Space Park +Spadafore +Spade +Spady +Spafford +Spafield +Spagnoli +Spahn Ranch +Spaich +Spain +Spains Hall +Spalding +Spaletta +Span +Spanby +Spangle +Spangler +Spaniards +Spaniel +Spanish +Spanish Bay +Spanish Cove +Spanish Flat Loop +Spanish Flat Resort +Spanish Grant +Spanish Oak +Spanish Oaks +Spanish Ranch +Spanish River +Spanish Trail +Spanker +Spanos +Spar +Spardley +Spare +Sparepenny +Sparger +Spargur +Sparhawk +Spark +Sparkbridge +Sparkel +Sparkes +Sparkeswood +Sparkill +Sparkle +Sparks +Sparks Ranch +Sparlin +Sparling +Sparr Spring +Sparrow +Sparrow Farm +Sparrow Hawk +Sparrow House +Sparrow Valley +Sparrowbush +Sparrowhawk +Sparrows +Sparrows Point +Sparsholt +Sparta +Spartan +Spartan Arrow +Sparth +Sparth Bottoms +Sparthfield +Spartina +Sparton +Spartons +Sparvell +Spates +Spates Hill +Spath +Spatham +Spathis +Spats +Spatz +Spaulding +Spaview +Spaw +Speak +Speaker +Speakers +Spear +Spearhead +Spearing +Spearman +Spearmint +Spears +Speart +Specht +Spechter +Speckel +Speckled Wood +Spectacle +Spectacle Hill +Spectacle Pond +Spector +Spectrum +Speed +Speedway +Speedwell +Speen +Speer +Speer Ranch +Speers +Speicher +Speidel +Speir +Speke +Spekes +Speldhurst +Spell +Spella +Spellbrook +Spellman +Spelman +Spen +Spen Vale +Spenard +Spence +Spencer +Spencer Brook +Spencer Hill +Spencer Place Cowper +Spencer Place Leopold +Spencer Sweet Pea +Spencers +Spencerville +Spender +Spengler +Spenleach +Spenlow +Spenney +Spennithorne +Spenny +Speno +Spenser +Speranza +Sperber +Sperl +Sperling +Sperring +Sperry +Spert +Spetti +Spey +Spezia +Spg Hill +Sphinx +Spibey +Spice +Spice Bush +Spice Hill +Spice Run +Spiceberry +Spicebush +Spicer +Spicewood +Spiegelhagen +Spielman +Spier +Spiers +Spignet +Spikehorn +Spiker +Spikes +Spikes Bridge +Spiller +Spillers +Spillway +Spilman +Spinaker +Spinale +Spindle +Spindletree +Spindrift +Spindrifter +Spine +Spinfield +Spingfield +Spinks +Spinks Ferry +Spinmaker +Spinnaker +Spinnaker Point +Spinnells +Spinner +Spinners +Spinney +Spinney Hill +Spinning Wheel +Spinosa +Spinoza +Spiraea +Spiral +Spire +Spirea +Spirit +Spirit Hills +Spirit Knob +Spiro +Spirou +Spit +Spital +Spitfire +Spithurst +Spittal +Spittler +Spittlesea +Spitz +Spitzer +Spiva +Split Creek +Split Oak +Split Rail +Split Rock +Split Tree +Splitrail +Splitrock +Splude +Spock Ridge +Spodden +Spode +Spode Green +Spodegreen +Spofford +Spofforth +Spoganetz +Spoil +Spokane +Spoke +Spoleto +Spolini +Sponden +Spondon +Spongs +Sponson +Spool +Spoon +Spoon Hill +Spoonbil +Spoonbill +Spooner +Spooners +Spoonger +Sporehams +Sporing +Sporst Center +Sports +Sports Park +Sportsbank +Sportside +Sportsman +Sportsmans +Spot +Spot Club +Spoto +Spotswood +Spotswood Gravel Hill +Spotsylvania +Spotted Gum +Spotted Horse +Spotted Owl +Spout +Spout Brook +Spout Run +Sprague +Sprain +Sprain Brook +Sprain Valley +Spraque +Spratley +Spratt +Spratt Hall +Spratts +Sprauer +Spray +Sprayer +Spreadbury +Spreading Oak +Spreckels +Spreckels Lake +Spreckles +Spreen +Spreighton +Spriering +Sprig +Spriggs +Spring +Spring Acres +Spring Bank +Spring Bay +Spring Bottom +Spring Branch +Spring Brook +Spring Close +Spring Clough +Spring Coppice +Spring Court +Spring Cove +Spring Creek +Spring Cress +Spring Crest +Spring Elms +Spring Farm +Spring Field +Spring Flower +Spring Gaden +Spring Garden +Spring Gardens +Spring Glen +Spring Green +Spring Grove +Spring Hall +Spring Haven +Spring Head +Spring Hill +Spring Hill Ring +Spring Hill School +Spring Hills +Spring Hollow +Spring House +Spring Knoll +Spring Lake +Spring Lakes +Spring Lawn +Spring Mall +Spring Manor +Spring Marsh +Spring Meadow +Spring Meadows +Spring Mill +Spring Mountain +Spring Oaks +Spring Park +Spring Plow +Spring Point +Spring Pond +Spring Pools +Spring Ridge +Spring Saw +Spring Splendor +Spring Summit +Spring Time +Spring Tree +Spring Vale +Spring Valley +Spring View +Spring Villa +Spring Village +Spring Water +Spring Wood +Spring bridge +Springarden +Springbank +Springbloom +Springbluff +Springbriar +Springbridge +Springbrook +Springclose +Springcreek +Springcrest +Springdale +Springdale Estates +Springer +Springfarm +Springfield +Springfield Center +Springfield Oaks +Springfield Park +Springfield Ranch +Springfield Village +Springfields +Springflower +Springhall +Springham +Springhaven +Springhead +Springhill +Springhollow +Springholly +Springholm +Springhouse +Springhurst +Springhurst Park +Springlake +Springlawn +Springle +Springleaf +Springline +Springmaid +Springman +Springmead +Springmeadow +Springmill +Springmont +Springpark +Springpath +Springpoint +Springrice +Springridge +Springrun +Springs +Springsguth +Springside +Springsong +Springsteen +Springstone +Springtide +Springtime +Springtree +Springvale +Springvalley +Springview +Springville +Springwater +Springwell +Springwod +Springwood +Springwood Hall +Springwood Meadow +Springwoods +Sprinklewood +Spriteview +Spritz +Sproat +Spronketts +Sproul +Sproule +Spruance +Spruce +Spruce Hill +Spruce Hills +Spruce Hollow +Spruce Meadows +Spruce Mill +Spruce Ridge +Spruce Rock +Spruce Tree +Spruce Wood +Sprucecreek +Sprucedale +Sprucetree +Sprucewood +Spruell +Spruill +Sprundel +Spruson +Spuhler +Spuley +Spumante +Spur +Spur Hill +Spur Oak +Spur Rock +Spur Wheel +Spuraway +Spurgeon +Spurgin +Spurgrove +Spurlands End +Spurling +Spurn +Spurr +Spurrell +Spurrier +Spurstowe +Spurt +Spurway +Spurwood +Spy +Spy Glass Hill +Spy Glass Ridge +Spy Pond +Spyglass +Spyglass Cove +Spyglass Hill +Spyglass Hills +Spyri +Spyros +Spywood +Squab +Squam +Squam Hill +Squannacook +Squanto +Squantum +Square +Square Barn +Squareshire +Squarey +Squash Creek +Squaw Brook +Squaw Hill +Squaw Valley +Squeri +Squibb +Squibnocket +Squids Gate +Squire +Squire Hill +Squirecreek +Squiredell +Squirehill +Squires +Squires Bridge +Squires Hill +Squires Mill +Squires Wodd +Squirrel +Squirrel Creek +Squirrel Hall +Squirrel Hill +Squirrel Hollow +Squirrel Run +Squirrels Heath +Squirrelwood +Sreia +St Michaels +St Agathas +St Agnells +St Agnes +St Aidans +St Alban +St Albans +St Albans Bay +St Albans Hollow +St Albans Mill +St Alfege +St Alphege +St Andrew +St Andrew Bethune +St Andrews +St Andrews Trace +St Ann +St Anna +St Anne +St Annes +St Anns +St Anselms +St Anthony +St Anthonys +St Armand +St Asaphs +St Aubin +St Augustine +St Augustines +St Austall +St Austell +St Austells +St Barnabas +St Barnabe +St Barthelemy +St Bartholomews +St Bees +St Benedict +St Benedicts +St Bernard +St Bernards +St Birinus +St Boniface +St Botolph +St Botolphs +St Brannocks +St Brelades +St Brendans +St Brigids +St Camillus +St Catherine +St Catherines +St Cecile +St Celcilia +St Chads +St Charles +St Christophers +St Clair +St Claire +St Clairs +St Clare +St Clement +St Clements +St Clere Hill +St Cloud +St Colette +St Croix +St Croix River +St Cross +St Cuthberts +St Davids +St Denis +St Dennis +St Dionis +St Domingo +St Dunstan +St Dunstans +St Dunston +St Ediths +St Edmunds +St Edwards +St Eleanoras +St Elmo +St Elmos +St Ervans +St Ethelbert +St Eva +St Fidelis +St Francis +St George +St Georges +St George’s +St Giles +St Giles High +St Gothard +St Guiberts +St Heather +St Helena +St Helens +St Helens Park +St Helier +St Helier Furness +St Heliers +St Hildas +St Hilliers +St Hughes +St Ignatius +St Ives +St Ivians +St James +St Jane +St John +St John Fisher +St Johnland +St Johns +St Johnsbury +St Joseph +St Joseph S +St Josephs +St Joseph’s +St Jude +St Judes +St Julian +St Julians +St Katherines +St Keverne +St Kilda +St Kildas +St Laurence +St Laurent +St Lawrence +St Leon +St Leonards +St Lo +St Louis +St Lucia +St Luke +St Lukes +St Malo +St Marcel +St Margaret +St Margarets +St Marie +St Mark +St Marks +St Marrys +St Martin +St Martins +St Mary +St Mary S +St Marychurch +St Marys +St Marys Church +St Marys Hall +St Matthew +St Matthews +St Matthias +St Michael +St Michaels +St Micheals +St Michel +St Mihiel +St Mildreds +St Monicas +St Moritz +St Nazaire +St Neots +St Nicholas +St Norbert +St Olives +St Omer +St Oswalds +St Ouen +St Patrick +St Patricks +St Paul +St Paul Park +St Pauls +St Pauls Church Bath +St Pauls Cray +St Peg +St Peter +St Peter Elgin +St Peters +St Peters Church +St Philips +St Phillips +St Quentin +St Quintin +St Regis +St Richards +St Rocco +St Rochs +St Roman +St Sampson +St Saviours +St Simon +St Swithins +St Swithuns +St Teresas +St Thomas +St Timothys +St Tropez +St Victor +St Vincent +St Vincents +St Volodymyr +St Wilfrids +St William +St Williams +St Winifreds +St catherines +St katherines +St. Agnes +St. Albans +St. Andrews +St. Annes +St. Anns +St. Audrey +St. Augustines +St. Austell +St. Barnabas +St. Benedict +St. Blaise +St. Botolph +St. Bride +St. Catherine +St. Catherines +St. Chads +St. Christopher +St. Clair +St. Claire +St. Clare +St. Cleres +St. Cyprians +St. Davids +St. Dionis +St. Dunstans +St. Ediths +St. Erkenwald +St. Francis +St. George +St. Georges +St. Giles +St. Helena +St. Helens +St. Helier +St. Ives +St. James +St. James on the +St. John +St. Johns +St. Julian +St. Katherine +St. Laurence +St. Leonards +St. Loo +St. Louis +St. Margaret +St. Margarets +St. Marks +St. Martins +St. Mary +St. Marys +St. Matthew +St. Matthews +St. Mervyns +St. Michaels +St. Modwen +St. Nazaire +St. Nicholas +St. Nicolas +St. Olafs +St. Oswulf +St. Paul +St. Pauls +St. Peters +St. Philip +St. Piers +St. Quintin +St. Rule +St. Saviours +St. Thomas +St. Vincent +St. Wilfrids +St.Albans +St.Gothard +St.Helier Love +St.Helier Central +St.James +St.Lukes +St.Marys +St.Norbert +St.Olaves +St.Peters +St.Thomas +Staaf +Staal +Stabean +Stable +Stable Yard +Stablebridge +Stableford +Stablegate +Stablehouse +Stabler +Stableview +Stablewood +Stacey +Stacey Hills +Stacey M +Staceys +Stachan +Staci +Stacia +Stack +Stacker +Stackfield +Stackhouse +Stackinghay +Stackler +Stackpole +Stacy +Staden +Stadhampton +Stadium +Stadler +Staedler +Staff +Staffa +Staffelot +Staffhurst Wood +Staffmark +Stafford +Stafford Hill +Staffordshire +Stafney +Stag +Stag Hill +Stag Oak +Stag Pasture +Stagbury +Stage +Stage Coach +Stage Gulch +Stage Harbor +Stage Hill +Stagecoach +Stagecoach Canyon +Stagehand +Stageline +Stager +Stagg +Staggers +Staghead +Staghorn +Stagi +Stags Run +Stags View +Stahl +Stahley +Stahls +Stahls Point +Stahlway +Stainbank +Stainbeck +Stainbume +Stainburn +Stainby +Staincliffe +Staincliffe Hall +Stainer +Staines +Stainforth +Staining +Stainland +Stainmore +Stainsbury +Staint Augustine +Stainton +Stair +Stair Foot +Stairbridge +Stairfoot +Stairley +Stairs +Stairway +Staithe +Staithes +Stake +Stakeford +Stakehill +Stakers +Stakes +Stakes Corner +Staleford +Stalevicz +Staley +Staley Hall +Staley Manor +Staleybridge +Staleys +Stalham +Stalisfield +Stalker +Stall +Stall Brook +Stallings +Stallion +Stalmine +Stalsburg +Stalwart +Stalybridge +Stalyhill +Stamas +Stambaugh +Stambridge +Stamford +Stamford Brook +Stamford Green +Stamford New +Stamford Park +Stamm +Stammergate +Stamp +Stampstone +Stan +Stan Fey +Stan Haven +Stanage +Stanam +Stanbank +Stanbaugh +Stanborough +Stanbourne +Stanbridge +Stanbro +Stanbrook +Stanbury +Stance +Stanchion +Stanchuk +Stanco +Stancomb Broad +Stancombe +Stancross +Standale +Standard +Standedge +Standen +Stander +Standfield +Standfill +Standford +Standford Hill +Standhill +Standiford +Standinghall +Standish +Standley +Standon +Standpipe +Standrich +Standridge +Stane +Stanes +Stanfield +Stanford +Stanford Farm +Stanford Oak +Stanford Rivers +Stangate +Stangland +Stangrove +Stangus +Stanham +Stanhome +Stanhope +Stanhope Park +Stanhorne +Stanich +Stanie Brae +Stanier +Staniford +Staniland +Stanislaus +Stanjoy +Stanks +Stanlake +Stanlen +Stanley +Stanley Dollar +Stanley Gardens +Stanley Hall +Stanley Hill +Stanley Park +Stanmer +Stanmoor +Stanmore +Stanmount +Stannage +Stannard +Stannary +Stanneylands +Stanningley +Stannybrook +Stansbury +Stansbury Lake +Stansell +Stansfield +Stansgate +Stanshawe +Stansmore +Stanson +Stanstead +Stansted +Stanton +Stanton Crossing +Stanton Hill +Stantonville +Stanway +Stanwell +Stanwell Moor +Stanwell New +Stanwich +Stanwick +Stanwix +Stanwood +Stanworth +Stanwyck +Stanyan +Stanycliffe +Stanyforth +Stapelton +Stapenhill +Staple +Staplefield +Stapleford +Stapleford Hall +Staplehurst +Staples +Staples Ranch +Staples Ridge +Stapleton +Stapleton Hall +Stapley +Stapp +Star +Star Bush +Star Farm +Star Flower +Star Grass +Star Hill +Star House +Star Lilly +Star Mill +Star Pine +Star Point +Star Post +Star Tulip +Star View +Starbird +Starboard +Starboard Tack +Starbright +Starbrook +Starbuck +Starbucks Main +Starburst +Starbush +Starch House +Starcliffe +Starcrest +Starcross +Stardrift +Stardusk +Stardust +Starfield +Starfighter +Starfire +Starfish +Starflower +Starhill +Starin +Stark +Starke +Starkey +Starkie +Starkin +Starlight +Starling +Starling Valley +Starling View +Starlings +Starlit +Starlit Ponds +Starlite +Starmead +Starmond +Starmont +Starmoor +Starodub +Starr +Starr Creek +Starr Jordan +Starr View +Starratt +Starrett Hill +Starring +Starrock +Starsplit +Starswept +Start +Starters +Starting Gate +Startins +Starts Hill +Starveacre +Starvecrow +Starview +Starward +Starwood +Stasia +Stassen +State +State Farm +State Forest +State Hospital Farm +State Line +State Park +Statecrest +Stately +Stately Oak +Stately Oaks +Staten +States +Stateside +Statesman +Stateview +Statford +Statham +Stathos +Station +Station Approach +Station Estate +Station House +Station Valley +Statler +Staton +Statrlight +Stattel +Statter +Statton +Statute +Staubitz +Staudtmauer +Stauffer +Staunton +Stave Yard +Staveley +Stavendish +Staverton +Stavola +Stavordale +Stavors +Stavros +Staycoff +Stayley +Stayner +Stayton +Stead +Steadfast +Steading +Steadman +Steam +Steam Farm +Steam Pump +Steamboat +Steamboat Cove +Steamboat Landing +Steamer +Steamview +Stearman +Stearns +Stearns Hill +Stearton +Stebbing +Stebbins +Stebondale +Stech +Stecher +Stedhall +Stedham +Stedman +Stedwick +Steed +Steed Hill +Steedman +Steedman Point +Steeds +Steel +Steel Creek +Steel Hill +Steel Mill +Steele +Steele Canyon +Steele Hill +Steele Oak +Steele Ranch +Steele Resort +Steele Ridge +Steeler +Steeles +Steelhead +Steelox +Steens Hill +Steenwick +Steep Hill +Steephollow +Steeple +Steeple Chase +Steeple Hill +Steeple Hills +Steeple Run +Steeple View +Steeplechase +Steeples +Steepleside +Steepletop +Steepridge +Steepwood +Steer +Steer Ridge +Steere +Steere Farm +Steerforth +Steers +Stefan +Stefani +Stefanic +Stefano +Steffan +Stege +Stegen +Steger +Steger Monee +Stegman +Stehle +Stehlik +Stehlin +Steiber +Steidel +Steiger Hill +Steiger Lake +Steilen +Stein +Steinbeck +Steinberg +Steiner +Steinhardt +Steinhauser +Steinly +Steinmaier +Steinton +Steinway +Steity +Stelfox +Steli +Stell +Stella +Stellar +Stelle +Stelling +Stellman +Stelton +Stem +Stem Brook +Stembridge +Stemer +Stemler +Stemmer +Stemmler +Stemp +Stencar +Stender +Stendhal +Steneman +Stengel +Stenhammer +Stenhouse +Stenman +Stenner +Stenning +Stenson +Step +Stephalee +Stephan +Stephan Marc +Stephanie +Stephanie Marie +Stephanville +Stephen +Stephen Marshall +Stephen Reid +Stephen Rennie +Stephendale +Stephenie +Stephens +Stephens Lake +Stephenson +Stephensons +Stephenville +Stepney +Stepney High +Stepneyford +Stepneys +Steppey +Stepps +Steps Hill +Stercho +Sterland +Sterling +Sterling Gate +Sterling Grove +Sterling Heights +Sterling Hill +Sterling Lake +Sterling Montague +Sterling Oak +Sterling Oaks +Sterling Ranch +Sterling View +Stern +Stern Ranch +Sterndale +Sterne +Sterner +Sternhall +Sternhold +Sterns +Sterry +Stetcher +Stetchworth +Stetson +Stetson Heights +Stetson Shrine +Stetzer +Steuart +Steubel +Steuben +Steve +Steve Biko +Stevebrook +Stevedore +Steven +Steven Martin +Steven Ray +Steven Smith +Stevenage +Stevens +Stevens Battle +Stevens Canyon +Stevens Creek +Stevens Forest +Stevens Glen +Stevenson +Stevenson Bridge +Stevenson Service +Steventon +Stever +Steves +Steves Farm +Stevick +Stevin +Stew +Stew Leonard +Steward +Stewards Green +Stewart +Stewarton +Stewartown +Stewarts +Stewartville +Stewkley +Steyning +Steynton +Stice +Stich +Stich Mi +Stickball +Stickens +Stickens Lock +Stickfast +Stickland +Stickle +Stickley +Stickling Green +Stickman +Stickney +Stieg +Stiemly +Stierlin +Stiff +Stifford +Stifford Clays +Stile +Stilebridge +Stiles +Stiles Pond +Still +Still Creek +Still Forest +Still Meadow +Still Meadows +Still Pond +Still River +Still River Depot +Still Water +Stillbreeze +Stillbrook +Stillbrook Farm +Stillbrooke +Stillford +Stilling +Stillingfleet +Stillings +Stillington +Stillman +Stillmeadow +Stillmeadows +Stillness +Stillo +Stillson +Stillspring +Stillview +Stillwater +Stillwell +Stillwell Acres +Stillwind +Stilson +Stilt +Stiltner +Stilwell +Stima +Stimel +Stimis +Stimson +Stinchcomb +Stinchfield +Stingray +Stinnett +Stinson +Stinson Service +Stipa +Stipp +Stipularis +Stires +Stirgess +Stirling +Stirling Bridge +Stirling Court +Stirling Park +Stirrup +Stirrup Cup +Stirrup Iron +Stites Hill +Stiups +Stivaletta +Stivers +Stoakley +Stobart +Stobbs +Stobe +Stock +Stock Farm +Stock Orchard +Stock Ranch +Stockade +Stockberry +Stockbreach +Stockbridge +Stockburn +Stockbury +Stockcroft +Stockdale +Stockdales +Stocker +Stockerhead +Stockers +Stockett +Stocketts +Stocketts Run +Stockfield +Stockford +Stockheld +Stockhill +Stockhoff +Stockholm +Stockhouse +Stocking +Stockings +Stockingstone +Stockingswater +Stockland +Stockland Green +Stockley +Stockman +Stockport +Stocks +Stocks Green +Stocks Park +Stocksfield +Stockton +Stockton Tees +Stockwell +Stockwell Farm +Stockwell Park +Stockwood +Stockyards +Stoconga +Stocton +Stodart +Stoddard +Stoddard Park +Stoddards +Stoddart +Stoddert +Stodham +Stodola +Stoecker +Stoetz +Stoffa +Stoke +Stoke Common +Stoke Court +Stoke Newington +Stoke Newington High +Stoke Poges +Stoke Row +Stokely +Stokenchurch +Stokes +Stokes Farm +Stokesay +Stokesby +Stokesheath +Stokesley +Stokoe +Stoll +Stolle +Stollwood +Stomp +Stompits +Stompond +Stonaker +Stonard +Stondon +Stone +Stone Arch +Stone Barn +Stone Breaks +Stone Bridge +Stone Brig +Stone Brook +Stone Cabin +Stone Canyon +Stone Castle +Stone Circle +Stone Cleave +Stone Cliff +Stone Court +Stone Creek +Stone Crop +Stone Cross +Stone End +Stone Fence +Stone Gate +Stone Hall +Stone Harbor +Stone Harbour +Stone Haven +Stone Heather +Stone Hedge +Stone Hill +Stone Hollow +Stone House +Stone Jug +Stone Lake +Stone Ledge +Stone Marsh +Stone Meadow +Stone Meadow Farm +Stone Mill +Stone Oak +Stone Oaks +Stone Path +Stone Pier +Stone Pillar +Stone Pine +Stone Pit +Stone Post +Stone Quarry +Stone Range +Stone Ridge +Stone Root +Stone School +Stone Spring +Stone Springs +Stone Tower +Stone Trail +Stone Vale +Stone Valley +Stone Village +Stone Wall +Stoneacre +Stonebarger +Stonebarn +Stonebriar +Stonebridge +Stonebridge Green +Stonebridge View +Stonebrook +Stonebrooke +Stoneburner Mill +Stonecastle +Stonechat +Stonecleave +Stonecleve +Stonecliff +Stonecliffe +Stoneclough +Stonecot Hill Tudor +Stonecreek +Stonecress +Stonecrest +Stonecroft +Stonecrop +Stonecross +Stonecutter +Stonecutters +Stonedale +Stonedge +Stonedrop +Stonefence +Stonefield +Stonefoot +Stoneford +Stonegarden +Stonegate +Stonehall +Stoneham +Stonehand +Stonehart +Stonehaven +Stonehead +Stonehearth +Stoneheather +Stonehedge +Stonehenge +Stoneheyes +Stonehill +Stoneholm +Stonehorse +Stonehouse +Stonehouse Hill +Stonehurst +Stoneings +Stonelake Club +Stoneland +Stonelea +Stoneleat +Stoneleigh +Stoneleigh Manor +Stoneleigh Park +Stoneman +Stonemason +Stonemead +Stonemeadow +Stonemere +Stonemill +Stonemill Farms +Stoneness +Stonenest +Stonepail +Stonepine +Stoner +Stoner Hill +Stoneridge +Stoneridge Mall +Stones +Stones Bank +Stones Corner +Stones End +Stones Manor +Stones Throw +Stonesboro +Stonesheep +Stonesteads +Stonestile +Stonestile Farm +Stonestreet +Stoneswood +Stonetown +Stoneview +Stonewall +Stonewall Farm +Stonewall Jackson +Stonewall Park +Stonewater +Stonewell +Stonewheel +Stonewood +Stonewyck +Stoney +Stoney Bottom +Stoney Brae +Stoney Bridge +Stoney Brook +Stoney Brooke +Stoney Castle +Stoney Common +Stoney Creek +Stoney Hill +Stoney Island +Stoney Lea +Stoney Meadows +Stoney Point +Stoney Ridge +Stoney Rock +Stoney Run +Stoney View +Stoney Weir +Stoneyard +Stoneybrae +Stoneybrook +Stoneybrooke +Stoneycreek +Stoneycrest +Stoneycroft +Stoneydown +Stoneyfield +Stoneyfold +Stoneyford +Stoneygate +Stoneyhill +Stoneyhurst +Stoneyland +Stoneylands +Stoneyside +Stonhouse +Stonie Heyes +Stonington +Stonley +Stonny Batter +Stonor +Stonum +Stony +Stony Beach +Stony Brae +Stony Brook +Stony Cove +Stony Creek +Stony Field +Stony Gorge +Stony Hill +Stony Hollow +Stony Island +Stony Path +Stony Point +Stony Ridge +Stony Run +Stony Wylde +Stonybrook +Stonycrest +Stonycroft +Stonyford +Stonyhurst +Stonyridge +Stonytown +Stoos +Stoothoff +Stop River +Stopes +Stopford +Storage +Storch +Storch Turn +Storch Woods +Store +Store Hill +Store House +Storehouse +Storer +Stores +Storetti +Storey +Stories +Storig +Stork +Storksmead +Storland +Storm +Stormount +Storms +Stormwood +Stormy +Stornaway +Stornoway +Storrie +Storrington +Storrow +Storrs +Stort +Stortford +Stortford Hall +Storth Meadow +Story +Story Acres +Story Book +Story Hill +Storybook +Storz +Stotfold +Stothard +Stothoff +Stott +Stotts +Stoughton +Stour +Stourcliffe +Stourton +Stout +Stovall +Stovell +Stover +Stow +Stow Lake +Stowaway +Stowe +Stowecroft +Stowel +Stowell +Stowers +Stowring +Stowting +Strabane +Stracey +Strachan +Stradbroke +Stradella +Strader +Stradford +Strafello +Strafford +Straford +Straford Garden +Strahan +Straight +Strain +Strait +Straits +Straits View +Strakers +Straloch +Strand +Strand Approach +Strande +Stranden +Strander +Strang +Strange +Stranger +Strangford +Strangman +Stranraer +Stranton +Strasbourg +Strasburg +Strassberger +Strassburg +Strasser +Strata +Stratfield +Stratfield Saye +Stratford +Stratford Bay +Stratford House +Strath Erin +Strath Haven +Strathalbyn +Strathallen +Stratham +Strathaven +Strathblaine +Strathbrook +Strathcarron +Strathcona +Strathdon +Strathearn +Stratheden +Strathfield +Strathgordon +Strathleven +Strathlora +Strathmeade +Strathmere +Strathmoor +Strathmore +Strathnairn +Strathspey +Strathville +Strathyre +Straton +Stratos +Strattford +Stratton +Stratton Chase +Stratton Hill +Stratton Pond +Stratton Ranch +Stratus +Stratwood +Straub +Straugh +Straughn +Straus +Strausberg +Strauss +Stravinsky +Straw +Straw Bale +Straw Hollow +Strawberry +Strawberry Bank +Strawberry Canyon +Strawberry Hill +Strawberry Knoll +Strawberry Park +Strawberry Patch +Strawbridge +Strawbridge Square +Strawflower +Strawtown +Stray +Strayer +Strayfield +Strayhorn +Streakes Field +Stream +Stream Pit +Stream Pond +Stream Valley +Stream View +Stream Wood +Streamside +Streamview +Streamwood +Streatfeild +Streatfield +Streatham +Streatham High +Streatham HillTelford +Streathbourne +Streatley +Strebel +Streblow +Strebor +Strech +Streels +Street +Street Bridge +Street End +Street Hill +Streeter +Streeters +Streetfield +Streethaven +Streethouse +Streeton +Strehler +Streiff +Streimer +Streitz +Strek +Streng +Strenger +Strentzel +Strese +Stretchworth +Stretford +Stretton +Strickland +Strickroth +Stride +Strieff +Striker +Striley +Strine +Strines +String +Stringer +Stringer Dam +Stringers +Stringfellow +Stringtown +Stringybark +Striped Bass +Strivens +Strobel +Strobridge +Strobus +Strode +Stroh +Strohn +Stroker +Strolling +Strom +Stroman +Strome +Stromlo +Stromness +Stromquist +Strone +Strong +Strongbow +Stronghurst +Strongs +Strongstry +Stronsa +Strood +Stroud +Stroud Farm +Stroud Green +Stroude +Stroudley +Stroup +Strout +Strouts +Stroven +Strover +Strowbridge +Struan +Struble +Struckman +Struen Marie +Strully +Strunks +Strutfield +Struthers +Struttmann +Struttons +Struve +Struyk +Stryker +Strype +Strzlecki +Stuart +Stuart Kaplan +Stuart Mill +Stuart Ridge +Stuart Robeson +Stuart on Oxford +Stuarton +Stuarts +Stub +Stub Toe +Stubb +Stubbers +Stubbin +Stubbins +Stubbins Hall +Stubble +Stubbs +Stubbs Moor +Stubby +Stuber +Stubley +Stubley Mill +Stubpond +Stubtoe +Stuckey +Stuckler +Stucley +Studarus +Studd +Studding Sail +Studdridge +Studebaker +Student +Student Center +Students +Studham +Studholme +Studio +Studios +Studland +Studley +Studley Grange +Studridge +Studt +Stuenkel +Stuhr +Stukeley +Stukely +Stults +Stulz +Stumble +Stump +Stump Neck +Stumptown +Sturbridge +Sturdee +Sturdivant +Sturdy +Sturge +Sturgeon +Sturgeon Lake +Sturges +Sturgess +Sturgis +Sturgus +Sturl +Sturla +Sturm +Sturnbridge +Sturney +Sturno +Sturr +Sturry +Sturt +Sturtevant +Sturtons +Stutfield +Stutt +Stutton +Stutz +Stuyvesant +Styal +Stychens +Styebank +Styertown +Styhead +Style +Stylecroft +Styler +Styles +Stylon +Suakin +Sub +Subagai +Subec +Subiaco +Sublett +Substation +Subtle +Suburban +Suburbia +Subway +Success +Succetti +Such +Sucher +Sucinto +Sucker Lake +Sudan +Sudberry +Sudborne +Sudbourne +Sudbrook +Sudbrooke +Sudbury +Sudbury Court +Sudbury Heights +Sudden +Sudden Pond +Sudeley +Sudell +Sudley +Sudley Manor +Sudlow +Sudsbury +Sue +Sue Ann +Sueirro +Suel +Sueno +Suez +Suffern +Suffield +Suffolk +Suffolk Park +Suffork +Sufi +Sufonet +Sugar +Sugar Babe +Sugar Barge +Sugar Bear +Sugar Beet +Sugar Bush +Sugar Cane +Sugar Creek +Sugar Hill +Sugar House +Sugar Loaf +Sugar Maple +Sugar Meadow +Sugar Mill +Sugar Pine +Sugar Pit +Sugar Toms +Sugar Valley +Sugar View +Sugar Well +Sugarberry +Sugarbush +Sugarcane +Sugarland +Sugarland Meadow +Sugarland Run +Sugarland Valley +Sugarloaf +Sugarloaf Mountain +Sugarloaf View +Sugarpine +Sugarplum +Sugartree +Sugarwood +Sugden +Suggs +Sugiyama +Suheil +Suisse +Suisun +Suisun Valley +Suit +Suiter +Suitland +Suitt +Sulby +Sulfrian +Sulgrave +Sulgrove +Sulhamstead +Sulina +Sulivan +Sulky +Sulley +Sulliman +Sullivan +Sullivans +Sully +Sully Lake +Sully Park +Sulmam +Sulmone +Sulphur +Sulphur Spa +Sulphur Spring +Sulphur Springs +Sultan +Sulyma +Sumac +Sumacs +Sumatra +Sumbray +Sumburgh +Summa +Summer +Summer Blossom +Summer Blossum +Summer Breeze +Summer Day +Summer Duck +Summer Gate +Summer Glen +Summer Grove +Summer Heights +Summer Hill +Summer Hollow +Summer Home +Summer House +Summer House Hill +Summer Isle +Summer Leaf +Summer Leave +Summer Meadow +Summer Moon +Summer Oak +Summer Oaks +Summer Park +Summer Pointe +Summer Pond +Summer Rain +Summer Ridge +Summer Rose +Summer Shade +Summer Sky +Summer Sunrise +Summer Sunset +Summer Village +Summer Walk +Summer Wheat +Summer Wind +Summerall +Summerbell +Summerbreeze +Summerbridge +Summerbrook +Summercourt +Summercreek +Summercrest +Summerdale +Summerday +Summerfield +Summergate +Summergrove +Summerheights +Summerhill +Summerhill Burnham +Summerhome Park +Summerhouse +Summerland +Summerlands +Summerleaf +Summerleaze +Summerlee +Summerley +Summerleys +Summerlin +Summerly +Summerplace +Summerrain +Summerridge +Summers +Summers Grove +Summersbury +Summersby +Summerseat +Summerset +Summershade +Summershades +Summerside +Summersong +Summersweet +Summerswood +Summertime +Summerton +Summertree +Summervale +Summerview +Summerville +Summerwind +Summerwood +Summit +Summit A +Summit B +Summit Canyon +Summit Corner +Summit Creek +Summit Fr +Summit Hall +Summit Hills +Summit Lake +Summit Manor +Summit Oaks +Summit Park +Summit Point +Summit Ranch +Summit Ridge +Summit School +Summit Shores +Summit Springs +Summit View +Summit View Ranch +Summit Wood +Summit Woods +Sumner +Sumner Brown +Sumner Grove +Sumner Lake +Sumner Perry +Sumner South +Sumpter +Sumpwams +Sumter +Sumutka +Sun +Sun Blossom +Sun Brook +Sun Center +Sun City +Sun Cliff +Sun Court +Sun Glen +Sun Glory +Sun Glow +Sun Gold +Sun Haven +Sun Hill +Sun Meadow +Sun Mor +Sun Mountain +Sun Oak +Sun Orchard +Sun Park +Sun Point +Sun Ranch +Sun Ray +Sun River +Sun Run +Sun Shadow +Sun Tree +Sun Valley +Sun West +Sunamber +Sunapee +Sunbank +Sunbeam +Sunberry +Sunbird +Sunbonnet +Sunborough +Sunbow +Sunbower +Sunbreeze +Sunbridge +Sunbright +Sunbrook +Sunburst +Sunbury +Sunbury Court +Sunby +Suncast +Suncatcher +Suncliff +Sunco +Suncook +Suncote +Suncountry +Suncrest +Suncrest Hill +Suncroft +Sund +Sundale +Sundance +Sunday +Sundberg +Sunderland +Sunderleigh +Sunderlin +Sunderton +Sundew +Sundial +Sundin +Sundon +Sundon Park +Sundown +Sundowner +Sundridge +Sundrift +Sundringham +Sundrop +Sunfaire +Sunfield +Sunfish +Sunfish Lake +Sunflower +Sungarden +Sungate +Sunglow +Sunhaven +Sunhill +Sunhills +Sunken +Sunken Meadow +Sunken Orchard +Sunkist +Sunland +Sunland Vista +Sunlaws +Sunlea +Sunleaf +Sunleigh +Sunlight +Sunlit +Sunlit Ann +Sunlite +Sunmead +Sunmeadow +Sunmill +Sunmore +Sunning +Sunning Hill +Sunningdale +Sunningfields +Sunninghill +Sunnings +Sunny +Sunny Acres +Sunny Bank +Sunny Bower +Sunny Brae +Sunny Brook +Sunny Brooke +Sunny Brow +Sunny Chapel +Sunny Cove +Sunny Creek +Sunny Dell +Sunny Gardens +Sunny Glen +Sunny Hill +Sunny Hills +Sunny Knoll +Sunny Meadow +Sunny Meadows +Sunny Oaks +Sunny Orchard +Sunny Plain +Sunny Ridge +Sunny Side +Sunny Slope +Sunny View +Sunny Vista +Sunnyacres +Sunnybank +Sunnybrae +Sunnybrook +Sunnycrest +Sunnycroft +Sunnydale +Sunnydays +Sunnydell +Sunnydene +Sunnyfield +Sunnyfields +Sunnygate +Sunnyglen +Sunnyhaven +Sunnyhill +Sunnyhills +Sunnyholt +Sunnylea +Sunnymead +Sunnymede +Sunnymere +Sunnymount +Sunnyridge +Sunnyrock +Sunnyside +Sunnyslope +Sunnyslope Farm +Sunnyslopes +Sunnyvale +Sunnyview +Sunnywood +Sunnywoods +Sunol +Sunol Valley +Sunpace +Sunpark +Sunpeak +Sunray +Sunridge +Sunrise +Sunrise Beach +Sunrise Farm +Sunrise Greens +Sunrise Hill +Sunrise Hills +Sunrise Hwy N Service +Sunrise Mall +Sunrise Meadows +Sunrise Mountain +Sunrise Park +Sunrise Pines +Sunrise Ridge +Sunrise South +Sunrise Terrace +Sunrise Valley +Sunrise View +Sunrise Vista +Sunrock +Sunrose +Sunseason +Sunset +Sunset Glen +Sunset Hill +Sunset Hills +Sunset Knoll +Sunset Lake +Sunset Lakes +Sunset Maple +Sunset Meadows +Sunset Mobiles +Sunset Park +Sunset Place +Sunset Ridge +Sunset Rock +Sunset View +Sunshadow +Sunshine +Sunshine Cottage +Sunshine Valley +Sunshire +Sunsilver +Sunspark +Sunspring +Sunsprite +Sunstar +Sunstone +Sunstream +Sunsweet +Sunswyck +Suntaug +Sunte +Suntone +Suntree +Sunvale +Sunvalley +Sunvaught +Sunview +Sunway +Sunwest +Sunwich +Sunwisper +Sunwood +Sunwood Valley +Suomi +Suosso +Superba +Superfortress +Superior +Supor +Supornick +Supplee +Supply +Supreme +Supreme Ct +Sur Mer +Surada +Surat +Surber +Surbiton +Surbiton Hill +Surele +Surf +Surf View +Surface +Surfperch +Surfside +Surfview +Surig +Surita +Surmont +Surperior +Surplus +Surprise +Surr +Surratts +Surratts Manor +Surratts Village +Surrenden +Surrey +Surrey Circle +Surrey Heath +Surrey Heights +Surrey Hill +Surrey Hts +Surrey Ridge +Surrey Service +Surrey Square +Surrey Water +Surrey Woods +Surreywood +Surro +Surry +Surrydale +Surryhill +Surryse +Surtess +Survey +Surveyor +Surveyor Abbot +Surveyors Creek +Susan +Susan Leslie +Susan Oak +Susan Rosemary +Susana +Susanah +Susanna +Susannah +Susanne +Susans +Susi +Susie +Susini +Susquehanna +Susquehannock +Susses +Sussex +Sussex Corner +Sussex Creek +Sussman +Susy +Sutch +Sutcliff +Sutcliffe +Suteki +Suter +Suthard +Sutherland +Suthurin +Sutlej +Sutler +Sutphen +Sutphin +Sutro +Sutro Heights +Sutter +Sutter Creek +Sutter Gate +Sutter Hill +Sutter Island +Sutter Slough Bridge +Sutters +Sutters Gold +Sutterton +Sutterville +Sutterwind +Suttie +Suttle +Sutton +Sutton Baron +Sutton Common +Sutton Court +Sutton Dale +Sutton Green +Sutton Hall +Sutton Hill +Sutton Manor +Sutton Oaks +Sutton Park +Sutton Wick +Sutton Wood +Sutton Woods +Suttondale +Suttons +Suttons Park +Suttonwood +Suttor +Suview +Suwanee +Suwarrow +Suydam +Suzanne +Suzette +Suzie +Suzie Q +Suzzane +Svea +Svenson +Sverge +Swabey +Swaby +Swagman +Swailes +Swaim +Swain +Swaine +Swainland +Swains +Swains Lock +Swains Pond +Swainson +Swainson Hawk +Swainsons Hawk +Swainsthorpe +Swainstone +Swainwood +Swaisland +Swakeleys +Swale +Swalecliff +Swaledale +Swales +Swallow +Swallow House +Swallow Point +Swallow Rock +Swallow Tail +Swallowdale +Swallowfield +Swallows +Swallows Nest +Swallowtail +Swalls +Swalm +Swamp +Swamp Circle +Swamp Fox +Swamphen +Swampscott +Swampy +Swan +Swan Creek +Swan Harbour +Swan Lake +Swan Oak +Swan Point +Swan Pond +Swanage +Swanberg +Swanbourne +Swanbridge +Swandale +Swane +Swanee +Swanell +Swaner +Swanfield +Swank +Swanland +Swanley +Swanley Bar +Swanley Village +Swann +Swannekin +Swanns +Swans Creek +Swans Mill +Swanscoe +Swanscomb +Swanscombe +Swansea +Swansfield +Swanson +Swanson Creek +Swansona +Swanston +Swanstree +Swanton +Swanton View +Swanworth +Swanzy +Swanzy Dam +Swaps +Swarbrick +Swarcliffe +Sward +Swardale +Swarthmore +Swarts +Swartz +Swartzel +Swasedale +Swasey +Swaton +Swattenden +Swayfield +Swaylands +Swayne +Swaynes +Swaynesland +Swayze +Sweat Briar +Swede Lake +Sweden +Sweden Point +Swedish Mission +Sweeley +Sweeney +Sweeneydale +Sweeny +Sweet +Sweet Andrea +Sweet Autumn +Sweet Bay +Sweet Birch +Sweet Briar +Sweet Cherry +Sweet Clover +Sweet Grass +Sweet Gum +Sweet Hill +Sweet Hollow +Sweet Maggie +Sweet Meadow +Sweet Oak +Sweet Pea +Sweet Pecan +Sweet Pine +Sweet Water +Sweet William +Sweetbay +Sweetbirch +Sweetbriar +Sweetbrier +Sweetbrook +Sweetflower +Sweetgrass +Sweetgum +Sweethaven +Sweetings +Sweetland +Sweetland Farm +Sweetlands +Sweetleaf +Sweetloves +Sweetman +Sweetmans +Sweetmeadow +Sweetnam +Sweetridge +Sweets +Sweetser +Sweetspring +Sweetwater +Sweetwater Springs +Sweetwood +Sweezy +Sweigert +Sweitzer +Swenson +Swete +Swett +Swett Hill +Swettenham +Sweyne +Swickard +Swider +Swift +Swift Arrow +Swift Creek +Swift River +Swift Run +Swift Run Trails +Swifts +Swifts Green +Swiftsure +Swiftwater +Swillers +Swillington +Swinborne +Swinbourne +Swinbrook +Swinburn +Swinburne +Swindells +Swinderby +Swindon +Swinebourne +Swineyard +Swinfield +Swinford +Swing +Swing Swang +Swingate +Swingingdale +Swingle +Swinks Mill +Swinley +Swinnerton +Swinnow +Swinside +Swinson +Swinstead +Swinton +Swirl +Swiss +Switch Grass +Switchback +Switchboard +Switchglass +Switchgrass +Swithemby +Swithens +Swithin +Swithland +Switzer +Swoffer +Swoop Hill +Swope +Sword +Swordale +Swordfish +Swordsmans +Swordstone +Sworford +Swridgedale +Swrobinwood Beach +Swyncombe +Syar +Sybaris +Sybert +Sybil +Sybilla +Sybourn +Sycamore +Sycamore Canyon +Sycamore Glen +Sycamore Hill +Sycamore Landing +Sycamore Leaf +Sycamore Ridge +Sycamore Springs +Sycamore Valley +Sychem +Sycolin +Sydall +Syddal +Syddall +Sydell +Sydenham +Sydenham Park +Sydenstricker +Sydervelt +Sydner +Sydney +Sydney Joseph +Sydney Park +Sydnor +Syers +Syke +Sykes +Sykesville +Sykora +Syl Dor +Syldeo +Sylhowe +Sylla +Sylmar +Sylva +Sylvain +Sylvamdur +Sylvan +Sylvan Dell +Sylvan Glade +Sylvan Glen +Sylvan Heights +Sylvan Knoll +Sylvan Lake +Sylvan Meadow +Sylvan Moor +Sylvan Woods +Sylvandale +Sylvaner +Sylvania +Sylvanleigh +Sylvanus +Sylvanus Wood +Sylvar +Sylverdale +Sylvester +Sylvestri +Sylvestris Fire +Sylvia +Sylviawood +Sym +Symblist +Syme +Symes +Symington +Symmes +Symmonds +Symnes +Symond +Symonds +Symonds Green +Symons +Symor +Symphony +Symphony Meadow +Symphony Woods +Syndall +Syndicate +Synge +Syon +Syosset +Syosset Woodbury +Syracuse +Syrd +Syril +Syrup Mill +Systems +Systron +Systrum +Syvestrus Fire +Szymanski +T Alexander +Taaffe +Tab +Tabalum +Tabard +Taber +Taber Hill +Tabernacle +Tabiona +Table +Table Mountain Fire +Tableer +Tabler +Tabley +Tabley Hill +Tabooba +Tabor +Tabor Hill +Tabor House +Tabora +Tabors +Tabourie +Tabrett +Tabscott +Tabway +Tacana +Tacaro +Tachbrook +Tache +Tachevah +Tack +Tack Factory Pond +Tackbrooke +Tackett +Tacketts Mill +Tackroom +Tacks +Taco +Tacoma +Tacoma Narrows +Tacomic +Taconic +Tad +Tadcaster +Taddington Wood +Tadema +Tadin +Tadman +Tadmor +Tadmore +Tadmuck +Tadorne +Tadpole +Tadstone +Tadworth +Taeping +Taff +Taffrail +Taffs +Taffy +Tafoya +Taft +Tafts +Tag +Tagart +Taggart +Taggarts +Taglio +Tahalla +Tahama +Tahan +Tahanto +Tahattawan +Tahiti +Tahja +Tahlee +Tahlulah +Tahoe +Tahoe Circle +Tahola +Tahona +Tahos +Tahualami +Tai Tung +Tail Feathers +Tailings +Tailor +Tailrace +Tailwind +Tain +Tainan +Tainter +Tainter Hill +Tainters +Taintor +Taipei +Taisley +Tait +Taiyul +Taj +Taji +Tajlea +Takeley +Takolusa +Takoma +Tal +Talacre +Talaga +Talahi +Talala +Talamore +Talandis +Talara +Talavera +Talbart +Talbert +Talbot +Talbot Farm +Talbots +Talbott +Talbragar +Talbryn +Talburn +Talc +Talcot +Talcott +Taleeban +Talent +Taleworth +Talford +Talfourd +Talgai +Talgarth +Talia +Taliaferro +Taliesin +Talinga +Talisa +Talisman +Talismon +Talkin +Talking Rock +Tall Cedars +Tall Forest +Tall Grass +Tall Oak +Tall Oaks +Tall Pine +Tall Pines +Tall River +Tall Shadows +Tall Ships +Tall Timber +Tall Timbers +Tall Tree +Tall Trees +Tall Tulip +Tallac +Tallack +Tallagandra +Tallahassee +Tallahatchey +Tallard +Tallawalla +Tallawanda +Tallawarra +Tallawong +Tallayast +Talle +Tallen +Tallent +Taller +Talley +Tallgrass +Tallgums +Tallies +Tallis +Tallmadge +Tallman +Tallon +Tallong +Tallow +Tallow Tree +Tallow Wood +Tallowood +Tallowwood +Tallwood +Tally +Tally Ho +Tallyho +Talma +Talmadge +Talman +Talmiro +Talmont +Taloma +Talon +Taloombu +Talulah +Talus +Talwarra +Talwin +Tam O Shanter +Tam Oshanter +Tamahawk +Tamal +Tamal Vista +Tamalpais +Tamalpais View +Tamani +Tamar +Tamara +Tamara Jean +Tamarac +Tamarack +Tamaralk +Tamarama +Tamarama Marine +Tamarind +Tamarindo +Tamarindo Bay +Tamarisk +Tamarix +Tamaro +Tamaron +Tamarou +Tamayo +Tamboer +Tamboon +Tamborine +Tamboura +Tambourine Bay +Tamboy +Tambu +Tambua +Tamburlaine +Tame +Tameling +Tamer +Tamera +Tamerton +Tami +Tami Lee +Tamiami +Tamie +Taminga +Tammanny +Tammer +Tammie +Tammie Hill +Tamms +Tammy +Tammys +Tamori +Tampa +Tampico +Tamplen +Tamplin +Tamworth +Tamworth Hill +Tamys +Tan Bark +Tan House +Tan Oak +Tan Vat +Tana +Tanadoona +Tanager +Tanagers +Tanaka +Tanbark +Tancin +Tancred +Tancreti +Tandang Sora +Tandara +Tandem +Tandera +Tanderagee +Tanderra +Tandle Hill +Tandom +Tandridge +Tandridge Hill +Tandy +Tanen +Taney +Tanfield +Tanforan +Tangarra +Tangeman +Tangen +Tanger +Tangerine +Tangier +Tangle +Tangle Wood +Tanglevale +Tanglewood +Tanglewood Hollow +Tanglewood Park +Tanglewood Trails +Tanglewylde +Tangley +Tangley Park +Tanglyn +Tangmere +Tango +Tangshutts +Tanhill +Tanhouse +Tanhurst +Tania +Tank +Tank Hill +Tank House +Tankerdale +Tankerton +Tankerville +Tankit +Tanklage +Tankridge +Tanland +Tanleaf +Tanley +Tannahill +Tannehill +Tanner +Tanner Heights +Tanners +Tanners End +Tanners Park +Tanners Pond +Tanners Wood +Tannery +Tannery Creek +Tannery Ridge +Tanney +Tannock +Tannsfeld +Tano +Tanoak +Tanridge +Tansey +Tansley +Tanswell +Tansy +Tant +Tantallon +Tantangara +Tantani +Tantolen +Tanton +Tanuda +Tanunda +Tanwood +Tanworth +Tanya +Tanyard +Tanyard Cove +Tanyard Hill +Tanyard Spring +Tanza +Tanzanite +Tanzio +Taormino +Taos +Tapadera +Taper +Tapered +Tapestry +Tapia +Tapio +Tapiola +Taplan +Tapley +Taplin +Taplins Farm +Taplow +Tapners +Tapok +Tapp +Tappan +Tappan Landing +Tappanwood +Tappen +Tappentown +Tapper +Tappesfield +Tapping +Tappingo +Tapscott +Tapsells +Tapster +Tapwood +Tar Cove +Tar Point +Tar Tank +Tara +Tara Ann +Tara Hill +Tara Hills +Tara Lin +Tara View +Tarabrook +Tarada +Taradale +Tarakan +Taralga +Tarantino +Taranto +Tarara +Taras +Taraval +Tarban +Tarbat +Tarbay +Tarbell +Tarbell Spring +Tarbell Springs +Tarbert +Tarbet +Tarboro +Tarbox +Tarca +Tardival +Tardy +Tarecroft Green +Taree +Tarence +Tareyton +Tarfside +Targee +Target +Target Rock +Target Service +Target Svc +Target on Whittier +Targo +Targowski +Tariff +Tarilli +Taringa +Tarjan +Tarkan +Tarkiln +Tarkin Hill +Tarkington +Tarklin +Tarklin Pond +Tarklyn +Tarks +Tarland +Tarleton +Tarleton Corner +Tarling +Tarlton +Tarman +Tarmigan +Tarn +Tarn Hill +Tarn View +Tarnapoll +Tarnside +Tarnworth +Taro +Taronga +Tarook +Taroona +Tarpan +Tarpey +Tarplee +Tarpley +Tarpon +Tarporley +Tarquin +Tarra +Tarrabundi +Tarragon +Tarragona +Tarragundi +Tarrant +Tarrants +Tarraville Creek +Tarring +Tarrington +Tarrogana +Tarrs +Tarry +Tarryhill +Tarrymore +Tarrytown +Tarshes +Tart Lake +Tartan +Tartan Hills +Tartan Lakes +Tartan Ridge +Tartan Trail +Tartan View +Tartan Vista +Tartans +Tartar +Tartarian +Tarton +Tarver +Tarvin +Tarwater +Tarwin +Taryn +Tascan +Tasha +Tashmoo +Tasker +Tasman +Tassajara +Tassajara Ranch +Tassasara +Tassi +Tassia +Tasso +Taswell +Tatani +Tatchbury +Tatchell +Tate +Tate Naylor +Tateley +Tatham +Tathra +Tatlers +Tatman +Tatmorehills +Tatnell +Tatra +Tatro +Tatsfield +Tattan Farm +Tattenham +Tattenham Corner +Tattersall +Tattersalls +Tattershall +Tatterson +Tattlebury +Tatton +Tatton Mere +Tatum +Taub +Tauber +Taubert +Taubman +Taunton +Taurasi +Taurus +Taussig +Taustin +Tauxemont +Tavan Estates +Tavenner +Tavern +Tavern Court +Taverners +Taverney +Tavernor +Tavernor Trail +Tavestock +Tavi +Tavisock +Tavistock +Taviton +Tawa +Tawney +Tawneys +Tawny +Tawny Port +Taworri +Tawton +Taxal Moor +Taxi +Taxiera +Taxter +Tay +Tay Creek +Tay River +Tayben +Taybridge +Tayfield +Tayla +Tayles Hill +Tayloe +Taylor +Taylor Acres +Taylor Glen +Taylor Hill +Taylor Manor +Taylor Park +Taylor Point +Taylor View +Taylors +Taylors End +Taylorsport +Taylorstown +Taylortown +Taylorville +Taylro Caldwell +Tayman +Tayman Farm +Taymil +Taynish +Taynton +Tayntor +Tayside +Taywood +Tchapitoulas +Tea +Tea Garden +Tea Gardens +Tea Rock +Tea Rose +Tea Table +Tea Tree +Teaberry +Teabury +Teaderman +Teagarden +Teague +Teak +Teakettle +Teakle +Teakwood +Teal +Teal Island +Tealby +Teale +Tealing +Tealwood +Teamster +Teaneck +Teapot +Teasdale +Teasel +Tebaco +Tebbs +Tebbutt +Tebroc +Tebworth +Tec +Tec Air +Tech +Tech Center +Techni +Technical Park +Technology +Technology Center +Technology Park +Techny +Teck +Teckla +Tecklenberg +Teckler +Tecoma +Tecumseh +Ted +Ted Bowling +Tedbury +Tedd +Tedder +Teddington +Teddington Elmfield +Teddington Gloucester +Teddo +Teddy +Tedesco +Tedford +Tedrich +Teds +Tedwin +Tee +Tee Time +Teebrook +Teed +Teehan +Teel +Teela +Teele +Teemer +Teepee +Teer +Tees +Teesdale +Teets +Teeup +Teevan +Teeway +Tefft +Tegan +Tegea +Tegel +Teggs +Tehama +Teibel +Teibrook +Teichert +Teigland +Teignmouth +Teiland +Teilh +Teilland +Teixeira +Tejas +Tejon +Tek +Tekels +Tekening +Tekman +Teldeschi +Tele +Telegram +Telegraph +Telegraph Corner +Telegraph Hill +Telemark +Telephone +Teleport +Telescope +Telese +Telfer +Telferscot +Telford +Telford Way Brunel +Tell +Teller +Tellers +Telles +Tellis +Tellson +Telluride +Telopea +Telsa +Telscombe +Telser +Telston +Telwong +Temaraire +Temblor +Tembrook +Temelec +Temeraire +Temescal +Temi +Temora +Temora Manor +Tempcopy +Tempe +Tempelhof +Temperance +Temperate +Temperley +Tempest +Templar +Templars +Temple +Temple Bar +Temple Creek +Temple Hall +Temple Hill +Temple Mills +Temple Newsam +Temple Park +Temple Sheen +Temple Shen +Temple View +Temple Wood +Templecombe +Templedene +Templegate +Templeman +Templenewsam +Templer +Templeton +Templewood +Tempo +Temporary +Tempsford +Temptin +Tempus +Ten Acre +Ten Acres +Ten Eyck +Ten Gate +Ten Hills +Ten Mills +Ten Oaks +Ten Penny +Tenafly +Tenakill +Tenax +Tenaya +Tenbrink +Tenbroeck +Tenbrook +Tenbury +Tenby +Tench +Tenda +Tender +Tenderfoot +Tendring +Tenean +Tenella +Teneriffe +Tenety +Teneyck +Tenham +Tenilba +Tenley +Tennalinde +Tennant +Tennaqua +Tennement +Tennent +Tennessee +Tennessee Valley +Tenney +Tennis +Tennis Club +Tennis Court +Tennis Plaza +Tennison +Tenniswood +Tennnyson +Tennyson +Tenor +Tensing +Tenson +Tent +Tent Peg +Tentelow +Tenterden +Tenterfield +Tenterhill +Tenth +Tenzing +Teonia Woods +Tepee +Tepper +Teppers +Tequesta +Teracina +Teragram +Teralba +Terama +Terance Butler +Tercentennial +Teredo +Terence +Terence Webster +Teresa +Teresa Rose +Teresi +Teresita +Terfidia +Terhune +Teri +Teri Lynn +Teria +Terilyn +Terkuile +Terl +Terman +Termeil +Terminal +Termine +Terminous +Terminus +Tern +Ternay +Terne +Terners +Terneuzen +Terney +Terni +Ternwing +Terra +Terra Alta +Terra Bella +Terra California +Terra Cotta +Terra Firma +Terra Granada +Terra Grande +Terra Holland +Terra Linda +Terra Loma +Terra Mar +Terra Nova +Terra Park +Terra Ridge +Terra Rossa +Terra Valley +Terra Verde +Terra Villa +Terra Vista +Terra Vita +Terra Woods +Terrace +Terrace Beach +Terrace Grove +Terrace Hall +Terrace Lake +Terrace View +Terraceview +Terracewood +Terracina +Terraco +Terradillo +Terraine +Terramere +Terramore +Terrance +Terrance Ferry +Terrane +Terranova +Terrapin +Terrapin Hills +Terrazzo +Terrebonne +Terrehans +Terrel +Terrell +Terrence +Terrene +Terreno +Terreno de Flores +Terrett +Terrey Pine +Terri +Terrianne +Terrick +Terrie +Terrier +Terrigal +Terrill +Terrimay +Territorial +Terront +Terry +Terry Francois +Terrybrook +Terryellen +Terryfield +Terryll +Tersha +Terwick +Tesco Access +Tesco Entry +Tesimond +Tesla +Tesoro +Tess +Tessa +Tessier +Tessman +Tessman Farm +Tessmer +Testa +Testard +Tester +Teston +Testway +Testwood +Tetbury +Tetcott +Tether +Tethys +Tetley +Tetley Bye +Tetlow +Teton +Teton Meadow +Tetreault +Tetterton +Teversham +Teverton +Teviot +Tevis +Tevlin +Tewberry +Tewin +Tewinga +Tewkes +Tewkesbury +Tewksbury +Tewlawne +Tewson +Texa Tonka +Texas +Textile +Textilose +Tey +Teynham +Thacher +Thackara +Thacker +Thackeray +Thackery +Thackhams +Thaddeus +Thaddeus Mason +Thaden +Thadford +Thais +Thalia +Thame +Thame Park +Thames +Thames Haven +Thames River +Thames Valley Park +Thameshill +Thamesmead Bentham +Thamesmeade +Thamesmere +Thane +Thanet +Thankerton +Thanksgiving +Thanlet +Tharp +Thatch +Thatch Barn +Thatch Leach +Thatcher +Thatchers +Thatford +Thave +Thaxmead +Thaxted +Thaxter +Thaxton +Thayer +Thayer Heights +Thayer Memorial +Thayers Farm +The +The American +The Ark +The Carriage +The Center +The Charter +The Coach +The Comenarra +The Crescent +The Dalles +The Fairway Hall +The Gallery in Cork +The Gate Brickfield +The Glade Keston +The Glen +The Globe in Morning +The Grange +The Great +The Green Courtwood +The Green Elm +The Green Money +The Green Hunsworth +The Green Man Marsh +The Green Town +The Grove Broadhurst +The Grove Danson +The Hall on Virginia +The High +The Highway Court +The Holme +The Horsley +The Kings +The Kraal +The Ladder +The Lakes +The Lammas +The Lawns +The Ledges +The Lido Green Man +The Limes +The Long +The Luton +The Manor +The Mansion On O +The Mansion on O +The Market on the +The Martins +The Masters +The Meads +The Mount +The Mount Grove +The Mount Whitehorn +The Mountain +The Nook +The Northern +The Old +The Old Coach +The Old Northern +The Old Oaks +The Old School +The Outlook +The Pastures Service +The Pines +The Plain +The Plains +The Plaza +The Plough Kenton +The Point +The Ponds +The Queens +The River +The Rocks +The Service +The Siger +The Silk +The Sraight +The Sunny +The Tideway Maidstone +The Tower +The Trees +The Valley +The Village +The Villages +The Villages Fairway +The Warren +The Water +The White Hart High +The Whitethorn +The Woodman Joel +The Woods +Thea +Theaker +Theale +Theall +Theater +Theatre +Thebes +Theda +Theed +Theilen +Theim +Theis +Theisan +Thele +Thelma +Thelton +Thelwall +Thelwall New +Themes +Themews +Thenius +Theo +Theo Wirth +Theobald +Theobalds +Theobalds Park +Theobold +Theodor +Theodora +Theodore +Theodore Conrad +Theodore Fremd +Theodore Green +Theodore Parker +Theodore Roosevelt +Therapia +Theresa +Theresa Anne +Therese +Therfield +Thermal +Therriault +Therry +Thersea +Thesda +Thesen +Thesigar +Thessaly +Thestland +Theta +Thetford +Theydon +Theydon Park +Thibeault +Thibet +Thicket +Thicketford +Thickthorne +Thiel +Thiele +Thielen +Thier +Thieriot +Thierry +Thiers +Thiery +Thieves +Thilow +Thimble +Thimbleberry +Thimblehall +Thimsen +Thin Edge +Thingvalla +Third +Third Cross +Thirleby +Thirlemere +Thirlmere +Thirlmont +Thirlstone +Thirlwater +Thirsfield +Thirsk +Thirslet +Thirteenth +Thirtyninth +Thirtysecond +Thirza +Thissell +Thisselt +Thistle +Thistle Glen +Thistle Hill +Thistlebridge +Thistlecroft +Thistledale +Thistledene +Thistledown +Thistlethorn +Thistlewaite +Thistlewood +Thistley +Thistly +Thixton +Thoby +Thoits +Tholen +Thollen +Tholverton +Thom +Thoma +Thomas +Thomas Atkinson +Thomas Baines +Thomas Bata +Thomas Baxter +Thomas Bell +Thomas Branch +Thomas Brigade +Thomas Center +Thomas Clapp +Thomas Clarke +Thomas Clewes +Thomas Ctr +Thomas Dehaven +Thomas Dinwiddy +Thomas Doyle +Thomas Edison +Thomas Farm +Thomas Gangemi +Thomas Gantt +Thomas Grant +Thomas Hickey +Thomas Hill +Thomas Holt +Thomas J Thorsen +Thomas Jefferson +Thomas Lake +Thomas Lake Harris +Thomas Lake Pointe +Thomas Leighton +Thomas McGovern +Thomas Mitchell +Thomas Moore +Thomas More +Thomas Nevitt +Thomas Newton +Thomas Paine +Thomas Park +Thomas Patton +Thomas Point +Thomas Powell +Thomas Prospect +Thomas Rice +Thomas Rose +Thomas S. Boyland +Thomas View +Thomas Wlkinson +Thomas Young +Thomasin +Thomasina +Thomasson +Thomasson Crossing +Thomasville +Thomes +Thomlar +Thomond +Thompkins +Thompson +Thompson Access +Thompson Hill +Thompson Springs +Thompsons +Thoms +Thomsen +Thomson +Thone +Thong +Thong Pan +Thonrdyke +Thonus +Thopkins +Thor +Thora +Thorburn +Thorby +Thoreau +Thorens +Thores +Thoresby +Thoresway +Thoria +Thorington +Thorkhill +Thorley +Thorley Park +Thorman +Thorn +Thorn Apple +Thorn Bush +Thorn Creek +Thorn Hill +Thorn Royd +Thorn Tree +Thorn View +Thornage +Thornal +Thornall +Thornally +Thornapple +Thornapple Tree +Thornash +Thornaway +Thornbank +Thornbark +Thornbeck +Thornbera +Thornberry +Thornborough +Thornbriar +Thornbridge +Thornbrook +Thornburg +Thornburgh +Thornbury +Thornbush +Thornby +Thorncliff +Thorncliffe +Thorncombe +Thorncrest +Thorncroft +Thorndale +Thornden +Thorndene +Thorndike +Thorndon +Thorndon Park +Thorndon Ridge +Thorndown +Thorndyke +Thorne +Thorne Grove +Thornedike +Thornell +Thorner +Thornet Wood +Thornewood +Thorney +Thorney Bay +Thorney Hedge +Thorney Mill +Thorneycroft +Thornfield +Thornflat +Thorngate +Thorngrove +Thornham +Thornham Old +Thornhaugh +Thornhill +Thornhill Farm +Thornholme +Thornhurst +Thorning +Thornknoll +Thornlaw +Thornlea +Thornleigh +Thornley +Thornly +Thornmeadow +Thorns +Thornsbeach +Thornsberry +Thornsett +Thornsgreen +Thornton +Thornton Beach +Thornton Blue Island +Thorntons Farm +Thorntree +Thornvalley +Thornville +Thornwall +Thornwood +Thorny Lea +Thornycroft +Thornydyke +Thornyhurst +Thorobred +Thorold +Thoroughbred +Thoroughgood +Thorp +Thorparch +Thorpe +Thorpe Hall +Thorpe Hill +Thorpe Lea +Thorpebank +Thorpebrook +Thorpedale +Thorpedene +Thorpewood +Thorpland +Thors Bay +Thorsby +Thorsen +Thorton +Thorup +Thorverton +Thotland +Thousand Oaks +Thowler +Thoydon +Thrales End +Thrasher +Thrave +Thread Needle +Threadmill +Threadneadle +Threadneedle +Threaphurst +Thredbo +Three Acres +Three Bridges +Three Cherry Trees +Three Colt +Three Colts +Three Counties +Three Countries +Three Crowns +Three Doctors +Three Elm +Three Elms +Three Farms +Three Forks +Three Gables +Three Gates +Three Horse Shoes +Three Horseshoes +Three Houses +Three Hurdles +Three Kings +Three Lake Bellevue +Three Lakes +Three Mill +Three Oak +Three Oaks +Three Pears +Three Penny +Three Point +Three Points +Three Ponds +Three Ring +Three Rivers +Three Sisters +Three Springs +Threepence +Threestile +Threlfall +Threlkeld +Thremhall +Thresa +Thresher +Threshers +Threshfield +Thrift +Thrift Farm +Thrigby +Thrimley +Throcking +Throckmorten +Throckmorton +Throgmorton +Throgs Neck +Throne +Thronhill +Throop +Throsby +Throstle +Throstle Bank +Throughbred +Throwley +Thrumont +Thrun +Thrupp +Thrupps +Thrush +Thrush Ridge +Thrushwing +Thrushwood +Thuddungra +Thuman +Thunder +Thunder Bay +Thunder Chase +Thunder Hill +Thunder Mountain +Thunderbird +Thunderbolt +Thunderer +Thunderhead +Thundersley Church +Thundersley Park +Thune +Thurbans +Thurbarn +Thurber +Thurbon +Thurby +Thurcaston +Thurgood +Thurland +Thurlby +Thurleigh +Thurleston +Thurlestone +Thurlgona +Thurloe +Thurlow +Thurlow Park +Thurlston +Thurlstone +Thurlton +Thurlwood +Thurm +Thurman +Thurmont +Thurnau +Thurnby +Thurneyholme +Thurnham +Thurns +Thursby +Thursfield +Thursland +Thursley +Thurso +Thurstable +Thurstan +Thurstane +Thurston +Thurston Clough +Thurtle +Thurwachter +Thurwood +Thwaite +Thwing +Thyme +Thynne +Thyra +Thyssel +Tiada +Tiana +Tianderah +Tiara +Tiarri +Tib +Tibatts +Tibbett +Tibbetts +Tibbits +Tibbitt +Tibbs Hill +Tibbys +Tiber +Tiber River +Tiberias +Tiberius +Tiberon +Tibooburra +Tibouchina +Tiburon +Tice +Tice Creek +Tice Valley +Ticehurst +Tices +Ticetown +Tichborne +Tichenor +Tichenors +Ticino +Tick Neck +Tick Tock +Tickenhall +Tickenor +Ticker +Tickham +Tickner +Tickners +Ticknor +Tickseed +Tico +Ticonderoga +Tidal Basin +Tidd +Tiddymotts +Tide +Tides +Tideswell +Tidewater +Tideway +Tidewind +Tidey +Tidford +Tidmarch +Tidmarsh +Tidmore +Tidswell +Tidworth +Tidys +Tie Gulch +Tiebout +Tiedeman +Tiedemann +Tieman +Tiemann +Tienda +Tienne +Tiensch +Tiepigs +Tier +Tieri +Tiernan +Tiernans +Tierney +Tierneys Woods +Tierra +Tierra Alta +Tierra Buena +Tierra Creek +Tierra Gardens +Tierra Lago +Tierra Oaks +Tierra de Dios +Tierras +Tietjen +Tiffaney +Tiffany +Tiffen +Tiffin +Tiffin School London +Tiffiny +Tifft +Tiflis +Tifters +Tifton +Tig Fold +Tiger +Tiger Lily +Tigerwoods +Tigris +Tigua +Tihonet +Tiki +Tilba +Tilberg +Tilbrook +Tilburg +Tilburstow Hill +Tilbury +Tilche +Tildean +Tilden +Tilden Gill +Tilden Park +Tildenwood +Tildsley +Tile +Tile Farm +Tile House +Tile Kiln +Tile Line +Tile Lodge +Tilebarn +Tilehouse +Tilehurst +Tilesboro +Tileston +Tiley +Tileyard +Tilford +Tilghams +Tilghman +Tilia +Tilipi +Tilkey +Till +Till Rock +Tillamook +Tillard +Tillary +Tiller +Tillery +Tillets +Tilley +Tillgate +Tillhey +Tillie +Tillie Lewis +Tillingbourne +Tillingdown +Tillingham +Tillinghast +Tillman +Tilloch +Tillock +Tillotson +Tillou +Tillson +Tilman +Tilmore +Tilney +Tilrose +Tilsden +Tilsen +Tilsmore +Tilson +Tilston +Tilstone +Tilsworth +Tilt +Tilthams Corner +Tilting Rock +Tilton +Tilton Valley +Tiltwood +Timahoe +Timarand +Timari +Timarron Cove +Timaru +Timbalier +Timbarra +Timber +Timber Acres +Timber Branch +Timber Brook +Timber Cove +Timber Creek +Timber Crest +Timber Edge +Timber Forest +Timber Glen +Timber Hill +Timber Hollow +Timber Lake +Timber Ledge +Timber Line +Timber Lodge +Timber Loop +Timber Mill +Timber Oak +Timber Oaks +Timber Point +Timber Pond +Timber Ridge +Timber Rock +Timber Springs +Timber Trail +Timber Trails +Timber Trl +Timber View +Timber Woods +Timberbrook +Timbercove +Timbercreek +Timbercrest +Timbercrest Farm +Timbercroft +Timberdale +Timberdene +Timberedge +Timbergate +Timberglade +Timberhead +Timberhill +Timberidge +Timberlake +Timberlake Farm +Timberland +Timberlane +Timberlea +Timberlee +Timberline +Timberline Ridge +Timberlog +Timberly +Timberneck +Timberock +Timberpine +Timbers Edge +Timbers Pointe +Timbershore +Timberslip +Timbertop +Timbertrails +Timberview +Timberwharf +Timberwood +Timble +Timbrell +Timbrol +Time +Timeless Trail +Timer +Times +Timesweep +Timi +Timke +Timko +Timlott +Timm +Timmies +Timmons +Timms +Timmus +Timmy +Timon +Timor +Timoteo +Timothy +Timothy Branch +Timothy Field +Timperley +Timpson +Timrick +Timrod +Timson +Timsons +Tin Barn +Tin Barn Farm +Tin Can Ranch +Tin Mill +Tina +Tina Lake +Tinakill +Tinana +Tincombe +Tindal +Tindal Spring +Tindal Springs +Tindale +Tindall +Tindall Mews +Tindall Ranch +Tinder +Tindlay +Tindon End +Tine +Tinern +Tingara +Tingdale +Tingha +Tingley +Tingrith +Tingue +Tinker +Tinker Pot +Tinkers +Tinkers Branch +Tinkers Creek +Tinkers Wood +Tinkham +Tinley +Tinley Park +Tinner Hill +Tinnerella +Tinners Hill +Tinnocks +Tinshill +Tinshill Silk Mill +Tinsley +Tinsmith +Tinson +Tinta +Tintagel +Tintagle +Tintells +Tintern +Tintle +Tinto +Tinton +Tinworth +Tiny +Tioga +Tiogawoods +Tiona +Tionesta +Tiot +Tip Pond +Tip Top +Tipi +Tippecanoe +Tippendel +Tippendell +Tipper +Tipperary +Tippesasy +Tippett +Tippin +Tippings +Tipple Hill +Tippling Rock +Tipps Cross +Tippy Cart +Tiptoe +Tipton +Tiptop +Tiptree +Tiptree Hall +Tiptrees +Tire Swing +Tiree +Tiros +Tirrell +Tirso +Tirza +Tisane +Tisbury +Tischer +Tisdale +Tisserand +Titan +Titania +Titchfield +Titchwell +Tite +Tithe +Tithe Barn +Tithe Farm +Tithebarn +Tithebarns +Tithelands +Tithepit Shaw +Titian +Titmus +Titmuss +Titonka +Titsey +Titterington +Titus +Tived +Tiverton +Tivoli +Tiziano +To Upper Park +Toad +Toad Island +Toastmaster +Toat +Tobacco +Tobacco Leaf +Tobacco Ridge +Tobacco Trail +Tobago +Tobermory +Tobey +Tobey Garden +Tobi +Tobiano +Tobias +Tobie +Tobin +Tobin Clark +Tobruck +Tobruk +Toby +Tobys +Tobytown +Tocca +Tocci +Tochini +Tocia +Tockholes +Tocoloma +Tod +Tod William +Todd +Todd Farm +Todd Point +Todd Pond +Toddington +Toddsbury +Toddy +Todman +Todt Hill +Tofflemire +Toft +Tofte +Tofts +Toftshaw +Toftshaw New +Tog +Toggenburg +Togil +Togninali +Togo +Toils End +Toilsome Brook +Toiyabe +Tojon +Tokara +Tokay +Token Forest +Token Valley +Tokeneke +Tokeneke Beach +Tokeneke Ridge +Tokers Green +Tokola +Tokyngton +Tola Ranch +Tolak +Tolamac +Toland +Tolar +Tolas +Tolbert +Tolblin Hill +Tolcarne +Toldi +Toldish Hall +Toledo +Tolenas +Toler +Toley +Tolgate +Tolhurst +Tolkien +Tolkigate +Toll +Toll Bar +Toll Gate +Toll House +Toll House Gulch +Tolland +Tollcross +Tollemache +Toller +Tollers +Tollesbury +Tolleshunt Darcy +Tollet +Tollgate +Tollington +Tollison +Tolliver +Tollund +Tollview +Tollwood +Tolman +Tolmer +Tolmers +Tolpits +Tolpuddle +Tolsford +Tolson +Tolstoy +Tolt +Tolt Hill +Tolteca +Toluca +Tolverne +Tolworth +Tolworth Park +Tom +Tom Davis +Tom Day +Tom Fowler +Tom Fox +Tom Hunter +Tom Jenkinson +Tom Lee +Tom Paine +Tom Point Apts +Tom Shepley +Tom Thumb +Tom Tit +Tom Tits +Toma +Tomac +Tomah +Tomahawk +Tomales +Tomales Petaluma +Tomalyn Hill +Tomaselli +Tomasetti +Tomasezwski +Tomasini Canyon +Tomaso +Tomato Patch +Tomawadee +Tomblin Hill +Tomcat +Tomcroft +Tomes +Tomi Lea +Tomislav +Tomki +Tomkins +Tomkyns +Tomlee +Tomlin +Tomlins +Tomlinson +Tomlyn +Tommar +Tommaso +Tommuck +Tommy +Tommy Middleton +Tommydon +Tommye +Tomney +Tompion +Tompkins +Tompkins Point +Tompson +Tomrick +Toms +Toms Hill +Toms Lake +Toms Point +Toms Trail +Tomswood +Ton +Tonacliff +Tonalea +Tonawanda +Tonbridge +Tondan +Tone +Tonelee +Tonella +Toner +Toney +Tong +Tong Head +Tonga +Tonge +Tonge Fold +Tonge Moor +Tonge Old +Tonge Park +Tongham +Tongres +Tongswood +Tongue +Toni +Toni Marie +Tonia +Tonica +Tonino +Tonitto +Tonka +Tonka Bay +Tonka Downs +Tonka View +Tonkaha +Tonkawa +Tonkaway +Tonkawood +Tonkin +Tonking +Tonman +Tonme +Tonne +Tonnelle +Tono +Tonopah +Tonquil +Tonquin +Tonset +Tonsley +Tonsor +Tonstall +Tontaquon +Tonti +Tontine +Tontoquon +Tonwell Bypass +Tony +Tonya +Toocooya +Toohey +Took +Tooker +Toolan +Toolang +Toole +Tooley +Toomes +Toomevara +Toomey +Toongabbie +Toongarah +Toorack +Toorah +Toorak +Tooronga +Toot Hill +Tootal +Tooth +Toothill +Tooting Bec +Tooting High +Top +Top Dartford +Top Gallant +Top Hill +Top O Hill +Top O the Ridge +Top Ridge +Top Sergeant +Top of the Hill +Topaint +Topalian +Topanga +Topar +Topawa +Topaz +Topbranch +Topcastle +Topcliffe +Topeg +Topeka +Topfield +Topham +Tophet +Topic +Topinera +Topland +Toplands +Topley +Topliff +Toplocks Glade +Topnot +Topor +Topp +Toppan +Topper +Toppesfield +Topping +Topping Fold +Topping Hill +Toppy +Topsail +Topsfield +Topsham +Topton +Topview +Tor +Tor Bryan +Torac +Torah +Torbay +Torberry +Torbert +Torbush +Torch +Torchlight +Torchwood +Torcross +Toreador +Torello +Tori +Tories +Torington +Torino +Torkington +Torlai +Torland +Tormead +Tormey +Tormount +Tornaros +Torne Mountain +Tornell +Torney +Tornillo +Toro +Torokina +Toronita +Toronto +Torpie +Torquay +Torque +Torquil +Torr +Torr Top +Torrance +Torrano +Torre +Torre Ramel +Torrence +Torrens +Torrent +Torrenzia +Torreon +Torres +Torrey +Torrey Pine +Torrey Pines +Torrey Side +Torreya +Torreys +Torri +Torriano +Torrice +Torrid +Torridon +Torrington +Torro +Torrs +Torrvale +Torry +Torry Hill +Tortoise +Tortola +Tortorice +Tortuga +Torumba +Torver +Torwood +Torworth +Tory +Tory Fort +Tory Hill +Tory Hole +Tory Treasure +Tosca +Toscano +Tosch +Toste +Tot +Tot Hill +Totem +Totem Pole +Totford +Totfs +Tothill +Totman +Totnes +Totowa +Totten +Totten Pond +Tottenham +Tottenham Court +Totterdell +Totterdown +Totteridge +Totters +Tottington +Totton +Totts +Touch +Touchard +Touhy +Touissant +Toulay Creek +Toulmin +Toulon +Toulone +Toulouse +Toulson +Toupi +Touquet +Touraine +Touraine Parc +Touriga +Tourmaline +Tournament +Tournay +Tourne +Tourney +Touro +Tourraine +Tours +Toussie +Toussin +Toutley +Tovah +Tovar +Tove +Tovey +Tovil +Tovil Green +Tovito +Tow Path +Towanda +Towaway +Towcester +Towceter +Tower +Tower Bank +Tower Bridge +Tower Brook +Tower Center +Tower Court +Tower Farm +Tower Gardens +Tower Hamlets +Tower Heights +Tower Hill +Tower Manor +Tower Mill +Tower Oak +Tower Oaks +Tower Park +Tower Point +Tower Pond +Tower View +Tower Woods +Towerbridge +Towerfield +Towerhill +Toweridge +Towerridge +Towers +Towers Crescent +Towersey +Towerview +Towfield +Towhee +Towl Gate +Towle +Towler +Towlerton +Towlston +Town +Town Acres +Town Barn +Town Center +Town Centre +Town Club +Town Cocks +Town Crest +Town Dock +Town Dump +Town End +Town Farm +Town Field +Town Forest +Town Gate +Town Gate Church +Town Green +Town Hall +Town Hall Approach +Town Hill +Town House +Town Lake +Town Line +Town Littleworth +Town Lyne +Town Mead +Town Meeting +Town Neck +Town Path +Town Pier +Town Point +Town Square +Town Tree +Town Wells +Towncenter +Towncourt +Towncroft +Towndale +Towne +Towne Centre +Towne Commons +Towne Crest +Towne Fire +Townehome +Towner +Townes +Townfield +Towngate Chapel +Towngate Woodhall +Townhall +Townhouse +Townley +Townline +Townly +Townmead +Towns +Towns Edge +Townscliffe +Townsend +Townsend Farm +Townsend Harbor +Townsend Hill +Townsfield +Townshend +Township +Townside +Townsley +Townson +Townsquare +Townsvalley +Townsville +Townview +Townwood +Towpath +Towradgi +Towse +Towsen +Towsend +Towton +Towyn +Toxteth +Toy +Toyama +Toye +Toyer +Toynbee +Toyon +Toyon Fire +Toyonita +Toysome +Tozer +Tozier +Trabing +Trabjo +Trace +Tracel +Tracer +Tracey +Tracey Jean +Traceys Landing +Traci +Tracie +Track +Traction +Tracton +Tractor +Tracy +Tracy Ann +Tracy Lyn +Tracy Schar +Tracy Wood +Tracywood +Tradan +Trade +Trade Center +Trade West +Trade Wind +Trade Zone +Trader +Traders +Tradescant +Tradewind +Tradewinds +Trading +Trading Post +Tradition +Traditions +Traeger +Trafalgar +Trafalger +Traffic +Trafford +Trafford Bank +Trafford Park +Trafford Wharf +Traford +Trafton +Tragan +Trager +Tragia +Trahan +Trahern +Trahlee +Trail +Trail Edge +Trail Haven +Trail Ride +Trail Ridge +Trail Run +Trail View +Trail West +Trailing Ivy +Trailing Ridge +Traill +Trailridge +Trails +Trails Edge +Trails End +Trailsend +Trailside +Trailway +Trailwood +Train +Traina +Trainer +Training Field +Trainor +Trajan +Trajanowski +Tralee +Tralfalgar +Tram +Tramanto +Trammel +Trammell +Tramore +Tramway +Trancas +Tranfaglia +Tranford +Tranmere +Tranquil +Tranquility +Trans Am Plaza +Trans Old Bridge +Trans World +Transept +Transfesa +Transhire +Transit +Transmere +Transmitter Access +Transom +Transport +Transporter +Transue +Transvaal +Transverse +Transway +Transworld +Tranter +Tranton +Trap +Trapelo +Trapet +Trapfield +Traphagen +Trapham +Trapp +Trapper +Trappers +Trappers Fire +Trapps +Traprock +Traps +Trapstyle +Trask +Tratman +Traube +Traud +Traughber +Travao +Travelaire +Traveler +Travelers Run +Traveller +Travellers +Travelo +Travers +Traverse +Traverso +Travertine +Travic +Travilah +Travis +Travois +Trawalla +Trawden +Trawl +Trawler +Traxler +Trayer +Trayes +Traymore +Traynor +Treacle +Treacy +Treadaway +Treadcroft +Treadgold +Treadway +Treadwell +Treanor +Treasure +Treasure Island +Treat +Treatment Plant +Treatro +Treatt +Treatts +Treaty +Treaty Elm +Trebartha +Trebble +Trebeck +Trebellan +Trebing +Treble Cove +Trebleclef +Treblers +Trebol +Trebor +Trebovir +Treby +Treck +Tredcroft +Tredegar +Trederwen +Tredgold +Tredown +Tredway +Tredwell +Tree +Tree Estate Mead +Tree Farm +Tree Frog +Tree Hollow +Tree House +Tree Land +Tree Lawn +Tree Line +Tree Side +Tree Top +Tree Tops +Tree View +Treebark +Treebine +Treebrooke +Treebys +Treecot +Treecrest +Treedale +Treedust +Treeflower +Treehaven +Treehouse +Treelands +Treemans +Treen +Trees +Treeside +Treesmill +Treetop +Treetop Hill +Treetops +Treeview +Treewood +Trefgarne +Trefoil +Trefrey +Trefry +Trefton +Treg +Tregaron +Tregarvon +Tregaskis +Tregelles +Tregenna +Trego +Tregony +Tregothnan +Tregunter +Trehearn +Trehern +Trehurst +Treichel +Trelany +Trelawn +Trelawney +Trelawny +Trelleck +Trellis +Treloar +Tremain +Tremaine +Tremari +Tremayne +Trembath +Tremblay +Trembley +Trembling +Tremere +Tremezzo +Tremlett +Tremley Point +Tremont +Tremwood +Trenant +Trench +Trenchard +Trenches +Trenchold +Trend +Trenders +Trenery +Trenham +Trenholm +Trenholme +Trenic +Treno +Trenor +Trenouth +Trensch +Trent +Trentbridge +Trentdale +Trentham +Trentino +Trento +Trenton +Trentt +Treport +Treptow +Trequassin +Tres Palmas +Tres Pinos +Tres Ranchos +Tresalam +Tresch +Tresco +Trescoe +Trescony +Trescott +Tresham +Treshfield +Tresilian +Tresler +Treslow Glen +Tress +Tressel Pass +Tresser +Tressider +Trestle +Trestle Glen +Treswell +Tretbaugh +Trethaway +Treton Woods +Trettle +Trevale +Trevalley +Trevanion +Trevanna +Treve +Trevellyan +Trevelyan +Trevena +Trevenar +Treveris +Trevethan +Trevett +Trevigne +Treviit +Treville +Trevilyan +Trevino +Treviso +Trevithick +Trevone +Trevor +Trevor House +Trevor Toms +Trevore +Trevorton +Trevose +Trewarden +Trewenna +Trewilga +Trewint +Treworthy +Trewsbury +Trewyn +Trexler +Trey +Treyburn +Treywood +Tri +Triabunna +Triad +Triadelphia +Triadelphia Lake +Triadelphia Mill +Triangle +Triathlon +Tribonian +Triborough +Tribou +Tribunal +Tribune +Tributary +Tributary Point +Tribute +Tricia +Trickett +Tricorne +Tricross +Trident +Trieste +Trifiro +Trifone +Trig +Trigder +Trigg +Trigger +Triggs +Triglone +Trigon +Triland +Trilane +Trilby +Triller +Trilliam Run +Trillium +Trillium House +Trilliun +Trillo +Trillum +Trim +Trimble +Trimbleford +Trimfield +Trimingham +Trimley +Trimngham +Trimount +Trimountain +Trin +Trina +Trinculo +Trinder +Trindles +Tring +Trinidad +Trinity +Trinity Church +Trinity Gate +Trinity Hills +Trinity Park +Trinity River +Trinity University +Trinkling Creek +Trio +Triolo +Trip +Triphammer +Triple C Ranch +Triple Crown +Triple Feather +Triple Oak +Triple Oaks Farm +Triple Ridge +Tripleseven +Triplett +Tripod +Tripoli +Tripp +Trippier +Tripplet +Tripton +Trish +Trista +Tristan +Tristania +Tristian +Tristram +Triten +Triton +Triton Beach +Tritton +Triumph +Triumvera +Trivet +Trivetts +Trixie +Troast +Trocha +Trodds +Trofin +Troilus +Trojack +Trojan +Troll +Trolley Line +Trombas +Trombetta +Trombley +Trommel +Tromp +Troon +Troopers +Troost +Tropaz +Trophy +Tropical +Troscher +Troseth +Trosley +Trossach +Trossack +Trost +Trothy +Trotsworth +Trott +Trotta +Trotter +Trotter Farm N +Trotters +Trotters Glen +Trotters Ridge +Trottier +Trotting +Trotting Course +Trotting Horse +Trotting Park +Trotton +Trotts +Troubador +Trouble +Troudy +Troughback +Troughton +Troughwell +Troupe +Trousdale +Trout +Trout Brook +Trout Farm +Trout Gulch +Trout Park +Trout Pond +Trout Valley +Trout Wine +Troutbeck +Trouthall +Troutlilly +Troutman +Trouton +Troutville +Trouve +Trouville +Trovillion +Trowbridge +Trowes +Trowley Hill +Trowlock +Trowridge +Trowtree +Trowville +Troxel +Troy +Troy Creek +Troy Glen +Troy Hill +Troy Hills +Troy Marquette +Troy Meadow +Troydale +Troyer +Trubador +Trubody +Trubridge +Truchan +Truck +Truck House +Truckee +Truckee River +Trucklemans +Trude +Trudeau +Trudel +Trudy +True +Trueloves +Truelson +Trueman +Trueman Point +Truemans +Trues +Truesdale +Truett +Truffle +Truitt +Truitt Farm +Trull +Trull Brook +Trulock +Truman +Truman Manor +Trumble +Trumbull +Trumfield +Trump +Trumper +Trumpet +Trumpeter +Trumpeter Swan +Trumpets Hill +Trumpington +Trumps Green +Trumps Hill +Trumps Mill +Trundle +Trundleys +Trunfio +Trunk +Trunley Heath +Trunnel +Truro +Truro Parish +Truscott +Truslove +Truss Hill +Trusses +Trussley +Trust +Truxel +Truxton +Truxton Park +Truxtun +Tryall +Trycewell +Trym +Tryna +Tryner +Tryon +Trysting +Tschiffely Mill +Tschiffely Sq +Tschiffely Square +Tsirelas +Tsushima +Tuabilli +Tualco +Tualco Loop +Tuam +Tuart Park +Tubac +Tubbenden +Tubbs +Tubby +Tubeway +Tubwell +Tubwreck +Tucabia +Tucana +Tuck +Tuckahoe +Tuckaway +Tucker +Tucker Farm +Tuckerman +Tuckerman Heights +Tuckerman Hill +Tuckerton +Tucks +Tucks Point +Tuckwell +Tucson +Tudar +Tuddington +Tudeley +Tudor +Tudor Hall +Tudway +Tudwick +Tuella +Tuemmler +Tuenge +Tuer +Tuers +Tuesley +Tuey +Tuffley +Tuffy +Tufnail +Tuft +Tufter +Tufton +Tufts +Tugboat +Tugela +Tuggerah +Tuggies +Tuggle +Tuggles +Tugwell +Tukara +Tukwila +Tukwila International +Tula +Tulagi +Tulane +Tularcitos +Tulare +Tulare Hill +Tule +Tule Goose +Tule Lake +Tule Tree +Tulich +Tulip +Tulip Grove +Tulip Poplar +Tulip Tree +Tulip West +Tulipan +Tuliptree +Tulipwood +Tull +Tullamore +Tullamore Estates +Tullaroan +Tuller +Tullet +Tullett +Tulley +Tullibee +Tullimbar +Tulloch +Tulloh +Tulloona +Tulls +Tully +Tullymore +Tulocay +Tulong +Tulsa +Tulsemere +Tulworth +Tuma +Tumber +Tumble Weed +Tumblefield +Tumbler +Tumblers +Tumbleweed +Tumblewood +Tumbling Brook +Tumburra +Tumelty +Tumut +Tumwater +Tunbridge +Tunbridge Wells +Tunbury +Tuncoee +Tuncombe +Tuncurry +Tunfield +Tungarra +Tungston +Tunic +Tunis +Tunisia +Tunison +Tunitas +Tunitas Creek +Tunitas Ranch +Tunks +Tunlaw +Tunley +Tunmarsh +Tunnel +Tunnel Entrance +Tunnel Exit +Tunnell +Tunner +Tunnicliffe +Tuns +Tunshill +Tunstall +Tunstead +Tunworth +Tunzi +Tuohy +Tuolumne +Tupa +Tupelo +Tupia +Tupolo +Tupper +Tupperware +Tuppy +Tupwood +Turban +Turbary +Turberville +Turbine +Turbo +Turbott +Turbridge +Turell +Turella +Tures +Turf +Turf Hill +Turf Lea +Turf Park +Turf Pit +Turf Valley +Turfhill +Turfhouse +Turfland +Turfmeadow +Turfton +Turfway +Turgis +Turgoen +Turicum +Turimetta +Turin +Turing +Turino +Turk +Turk Hollow +Turk Murphy +Turkey +Turkey Cock +Turkey Farm +Turkey Foot +Turkey Hill +Turkey Point +Turkey Ridge +Turkey Run +Turkey Shore +Turkey Track +Turks +Turks Cap Lily +Turks Head +Turle +Turley +Turlington +Turlock +Turmaine +Turn +Turn Left +Turn Loop +Turn Moss +Turn Pike +Turnabout +Turnagain +Turnage +Turnberry +Turnbridge +Turnbrook +Turnbuckle +Turnbull +Turnbury +Turncrest +Turncroft +Turnden +Turner +Turner Bridge +Turner Farm +Turner Gulch +Turner Hill +Turner Joy +Turner Ridge +Turners +Turners Green +Turners Hill +Turners Lake +Turners Mill +Turnesa +Turneur +Turneville +Turney +Turnfield +Turnfurlong +Turnham +Turnhouse +Turning Leaf +Turning Mill +Turnip Hill +Turnlee +Turnley +Turnmill +Turnoak +Turnock +Turnpike +Turnpike Service +Turnpin +Turnstone +Turnsworth +Turnure +Turnwood +Turold +Turon +Tuross +Turp +Turpentine +Turpin +Turpington +Turquand +Turquoise +Turra +Turramurra +Turrell +Turrella +Turret +Turret Hall +Turrett +Turriell Bay +Turriell Point +Turrin +Turrini +Turstan +Turstin +Turtle +Turtle Cove +Turtle Creek +Turtle Dove +Turtle Lake +Turtle Pond +Turtle Rock +Turtle Valley +Turtlecreek +Turtledove +Turtlerock +Turton +Turuga +Turvan +Turves +Turvey +Turville +Turvin +Tuscala +Tuscaloosa +Tuscan +Tuscan View +Tuscano +Tuscany +Tuscarawas +Tuscarora +Tuscola +Tusculum +Tushmore +Tusk +Tuskar +Tuskeegee +Tusket River +Tusmore +Tussel +Tussell +Tussock Brook +Tustin +Tutbury +Tuthill +Tutt +Tuttle +Tutus +Tuve +Tuxedo +Tuxford +Tuxhorn +Twain +Twain Harte +Twaits +Tweed +Tweed Mouth +Tweedale +Tweeddale +Tweedle Hill +Tweedmouth +Tweedy +Twelfth +Twelth +Twelve Acres +Twelve Hills +Twelve Oak Hill +Twelve Oaks +Twelve Oaks Center +Twelve Oaks Ctr +Twelve Yards +Twentieth +Twentyeighth +Twentyninth +Twentysecond +Twentyseventh +Twentythird +Tweseldown +Twickenham +Twickenham Arragon +Twickenham King +Twickenham King +Twig +Twiggy +Twigworth +Twilight +Twilley +Twin +Twin Beach +Twin Bluff +Twin Branches +Twin Bridge +Twin Bridges +Twin Brook +Twin Brooks +Twin Buttes +Twin Cedar +Twin Circle +Twin Cities +Twin Creek +Twin Creeks +Twin Dolphin +Twin Elms +Twin Falls +Twin Fawn +Twin Field +Twin Forks +Twin Gardens +Twin Harbor +Twin Haven +Twin Hills +Twin Holly +Twin House Ranch +Twin Knolls +Twin Lake +Twin Lakes +Twin Lawns +Twin Light +Twin Maple +Twin Meadow +Twin Mill +Twin Oak +Twin Oaks +Twin Palms +Twin Park +Twin Peaks +Twin Pine +Twin Pines +Twin Pond +Twin Ponds +Twin Rail +Twin Ridge +Twin Rivers +Twin Silos +Twin Sisters +Twin Spring +Twin Springs +Twin Valley +Twin View +Twinboro +Twinbrook +Twinbrook Run +Twinches +Twine +Twineham +Twingleton +Twining +Twining Brook +Twinlake +Twinlakes +Twinn +Twinnies +Twinview +Twirl Hill +Twisden +Twiss +Twiss Green +Twisse +Twist +Twisted Oak +Twisting +Twisting Tree +Twitchell +Twitchells +Twitten +Twitton +Two Bar +Two Bays +Two Bridges +Two Brooks +Two Brothers +Two Dells +Two Farm +Two Harbors +Two Mile Ash +Two Mills +Two North LaSalle +Two Oaks +Two Paths +Two Penny +Two Rivers +Two Rock +Two Rod +Two Sisters +Two Trees +Two Waters +Twombly +Twsh +Twycross +Twydall +Twyford +Twyford Abbey +Twyford Bury +Twyla +Twyman +Twynam +Twynersh +Twynham +Twyzel +Ty +Tyacke +Tyagarah +Tyalgum +Tyalla +Tyas +Tybalt +Tybenham +Tyberry +Tyburn +Tycannah +Tychbourne +Tyco +Tydcombe +Tydden +Tydeman +Tydesley +Tydings +Tye Common +Tye Green +Tye River +Tyee +Tyers +Tyersal +Tygart +Tygert +Tygh +Tyke +Tykeswater +Tyland +Tyldesley +Tyldesley Old +Tylecroft +Tylee +Tylehurst +Tyler +Tyler Creek +Tyler Island +Tyler Island Bridge +Tyler Point +Tyler Prentice +Tylers +Tylers Green +Tylers Hill +Tylney +Tylneys +Tymm +Tynan +Tyndale +Tyndales +Tyndall +Tyndrum +Tyne +Tynebourne +Tynedale +Tyneham +Tynemouth +Tyner +Tyneside +Tynewick +Tyng +Tyngsboro +Tyngsborough +Tynis +Tynsdale +Tynwald +Tyosa +Typhoon +Tyr +Tyram +Tyrconnel +Tyre +Tyrell +Tyrella +Tyrellan +Tyrells +Tyrnbury +Tyrol +Tyroler +Tyron +Tyrone +Tyrrel +Tyrrell +Tyrwhitt +Tysea +Tysen +Tysens +Tyska +Tysoe +Tyson +Tysons +Tyspring +Tyssen +Tythe +Tytherington +Tytherington Park +Tytherton +Tyzack +Tzabaco Creek +Tzoumar +U Fernwood +UMBC +US Geological Survey +USS Amesbury +Uamvar +Uckfield +Udalia +Udall +Udayakavi +Udell +Udimore +Udine +Udney Park +Ueda +Ueland +Uffington +Ufford +Ufton +Uganda +Ugland +Ugo +Uhden +Uhland +Uhlman +Uhrig +Uhuru +Uki +Ukiah +Ukraine +Ulatis +Ulcombe +Uldale +Ulderic +Uline +Ulladulla +Ullard Hall +Ullathorne +Ulleswater +Ulley +Ullian +Ullman +Ulloa +Ullswater +Ulm +Ulmara +Ulmer +Ulmers Farm +Ulmurra +Ulolo +Ulonga +Ulster +Ultimate +Ultimo +Ulting +Ulting Hall +Ulundi +Ulundri +Ulva +Ulverscroft +Ulverston +Ulverstone +Ulwyn +Ulysses +Umbagog +Umbarger +Umbdenstock +Umberston +Umberto +Umberton +Umbria +Umfreville +Umland +Un +Un Pr +Una +Unadilla +Unami +Unara +Unarland +Uncas +Uncas Pond +Uncatena +Uncouth +Undajon +Under +Under Pin Hill +Undercliff +Undercliffe +Underclift +Underdale +Underdown +Underhill +Underhill Park +Underhills +Underlyn +Underne +Underriver House +Undershaw +Underwood +Undestad +Undine +Ungarra +Unicorn +Unicumes +Uniform +Union +Union Bridge +Union Camp +Union Church +Union City +Union Farm +Union Hall +Union Hill +Union Landing +Union Mill +Union Mine +Union Oil Company +Union Park +Union Point +Union Ridge +Union Springs +Union Ter +Union Terrace +Union Valley +Union Village +Uniondale +Unionport +Unionstone +Unique +United +Unity +Unity Park +Unity Pointe +UnivAlhambra +Universal +Universal Plaza +Universe +University +University Av Ser +University Park +University Plaza +University Service +University Svc +Unknown Soldier +Unnamed +Unqua +Unquity +Unstead +Unsworth +Unwick +Unwin +Unwins +Unwins Bridge +Uop North Service +Uop South Service +Upa +Upavon +Upcast +Upcerne +Upchat +Upcrest +Upcroft +Updale +Upenuf +Upfield +Upfold +Uphall +Upham +Upham Park +Uphill +Upland +Upland Court +Upland Farm +Upland Fields +Upland Gardens +Upland Woods +Uplands +Uplands Park +Uplees +Uplook +Upminster +Upney +Upnor +Upp +Upper +Upper Abbey +Upper Accommodation +Upper Afton +Upper Almora +Upper Ames +Upper Anstey +Upper Ardmore +Upper Ashlyns +Upper Attunga +Upper Austin Lodge +Upper Autumn +Upper Bank +Upper Basinghall +Upper Batley +Upper Batley Low +Upper Beach +Upper Belgrave +Upper Berkeley +Upper Bolney +Upper Bourne +Upper Brand Lake +Upper Brandon +Upper Bray +Upper Brentwood +Upper Briar +Upper Bridge +Upper Brighton +Upper Broadmoor +Upper Brockley +Upper Brook +Upper Buford +Upper Bush +Upper Canyon Three +Upper Carr +Upper Carriage +Upper Cavendish +Upper Chapel +Upper Charles +Upper Chestnut +Upper Chobham +Upper Chorlton +Upper Church +Upper Circle +Upper Clapton +Upper Cliff +Upper Clifford +Upper Clubhouse +Upper Colonial +Upper Conran +Upper Court +Upper Cove +Upper Crackney +Upper Croft +Upper Cross +Upper Crown +Upper Cub Run +Upper Culver +Upper Cyrus +Upper Dagnall +Upper Dearborn Park +Upper Denmark +Upper Depew +Upper Dock +Upper Dogwood +Upper Dunstan +Upper East +Upper Edgeborough +Upper Ellen +Upper Elmers End +Upper Elms +Upper Express +Upper Fairfax +Upper Fairfield +Upper Fans +Upper Fant +Upper Farm +Upper Fenn +Upper Ferry +Upper Field +Upper Fig +Upper Fort +Upper Fremont +Upper Gates +Upper George +Upper Gilber +Upper Gladstone +Upper Gordon +Upper Gore +Upper Green +Upper Greenwoods +Upper Greycliffe +Upper Grosvenor +Upper Grotto +Upper Grove +Upper Guildown +Upper Haig +Upper Hale +Upper Halliford +Upper Ham +Upper Hammer +Upper Happy Valley +Upper Haysden +Upper Heath +Upper Helena +Upper Hibernia +Upper High +Upper High Crest +Upper Highland +Upper Hill +Upper Holly Hill +Upper Holt +Upper House +Upper Joclyn +Upper John +Upper Kent +Upper Kirby +Upper Lake +Upper Lakeview +Upper Lattimore +Upper Lea +Upper Lees +Upper Lloyd +Upper Lock +Upper Lodge +Upper Luton +Upper Magazine +Upper Main +Upper Manor +Upper Marlborough +Upper Marsh +Upper Meadow +Upper Medlock +Upper Memory +Upper Minimbah +Upper Monsall +Upper Montagu +Upper Monterey +Upper Moss +Upper Mount +Upper Mount Glen Lake +Upper Mountain +Upper Mulgrave +Upper Neatham +Upper North +Upper North Row +Upper Oak +Upper Oak Flat +Upper Old Park +Upper Overlook +Upper Paddock +Upper Park +Upper Peters Dam +Upper Pindell +Upper Pine +Upper Pitt +Upper Pond +Upper Prospect +Upper Queen +Upper Rainham +Upper Range +Upper Redlands +Upper Redwood +Upper Richmond +Upper Ridge +Upper Ridgeway +Upper Ritie +Upper River +Upper Rodmersham +Upper Roman +Upper Saddle River +Upper Salem Pond +Upper San Antonio +Upper San Vicente +Upper Scenic +Upper School +Upper Service +Upper Sherborne +Upper Sheridan +Upper Shirley +Upper Soldridge +Upper Spit +Upper Spring +Upper Sudden Pond +Upper Sunbury +Upper Tachbrook +Upper Teddington +Upper Terrace +Upper Thames +Upper Tilehouse +Upper Tin Can Ranch +Upper Tooting +Upper Town +Upper Toyon +Upper Trail +Upper Trinity +Upper Union +Upper Vann +Upper Vernon +Upper Verran +Upper Vicarage +Upper Village +Upper Walthamstow +Upper Warren +Upper Washington +Upper West +Upper Weybourne +Upper Wickham +Upper Wield +Upper Wilton +Upper Wimpole +Upper Wortley +Upper Zayante +Upper grove +Upperfield +Upperhill +Uppermill +Uppermont +Upperridge +Upperton +Uppingham +Upplanda +Ups +Upsala +Upsdell +Upshaw +Upshire +Upshot +Upshur +Upson +Upstall +Upton +Upton Court +Upton Hills +Upton Park +Upton Park Arragon +Upton Pyne +Upward +Upwell +Upwey +Upwood +Upwoods +Upwye +Ural +Uralba +Uralla +Urana +Uranium +Uranus +Urban +Urban Club +Urbana +Urbane +Urbanik +Urbanna +Urbano +Urbanowitz +Urby +Urchin +Uren +Uriahs +Uridge +Uridias Ranch +Urlwin +Urma +Urmond +Urmson +Urmston +Urn +Urna +Urquhart +Urrico +Ursa +Ursiline +Ursina +Ursla +Ursula +Ursuline +Urswick +Urunga +Urzi +Usange +Useadoor +Usg +Usher +Usk +Usona +Uss Arizona +Uss Missouri +Uss North Carolina +Uss Tennessee +Utah +Ute +Uteg +Uther +Utica +Utilities +Utility +Utley +Utopia +Utter +Utterby +Uttley +Uttons +Utuardo +Utz +Utzon +Uunet +Uvas +Uvas Park +Uvedale +Uxbridge +Uxbridge Belmont +Uxmore +Uyeda +V Fernwood +VFW +Vaagen +Vaal +Vaca +Vaca Creek +Vaca Valley +Vacation +Vacation Beach +Vacca +Vaccaro +Vachel +Vachel Lindsay +Vaden +Vadnais +Vadnais Center +Vadnais Lake +Vagabond +Vai +Vail +Vail Ridge +Vaile +Vailetti +Vaillancourt +Vaillant +Vaille +Vaillencourt +Vailwood +Val +Val Aosta +Val Gardena +Val Lee +Val McKilmer +Val Page +Val Park +Val Varaita +Val Verde +Val Vista +Valaire +Valais +Valance +Valarie +Valbusa +Valcartier +Valcour +Valda +Valdale +Valdalia +Valdeflores +Valdemar +Valdene +Valders +Valdes +Valdez +Valdora +Valdosta +Vale +Vale Crest +Vale Farm +Vale House +Vale Park +Vale Spring +Vale Top +Vale View +Vale Wood +Valebridge +Valebrook +Valediction +Valemont +Valence +Valence Wood +Valencia +Valencia School +Valenciennes +Valensin +Valensin Ranch +Valente +Valentia +Valentina +Valentine +Valentine Creek +Valentine Crest +Valentines +Valentino +Valento +Valenza +Valeowen +Valera +Valerga +Valeria +Valerian +Valeriana +Valerie +Valero +Valery +Vales +Valeswood +Valetta +Valette +Valeview +Valevue +Valewood +Valhalla +Valiant +Valimar +Valinda +Valis +Valita +Valko +Valkyrie +Valla +Valla Vista +Vallacher +Vallance +Vallar +Vallaro +Vallco +Valle +Valle Ducale +Valle Pacifico +Valle Verde +Valle Vista +Vallecito +Vallecitos +Vallejo +Vallemar +Vallentin +Vallerand +Vallery +Valles +Valleton +Valletts +Valley +Valley Beach +Valley Bend +Valley Brook +Valley Center +Valley Circle +Valley Country +Valley Creek +Valley Cresent Rodger +Valley Cresent Valley +Valley Crest +Valley Curve +Valley End +Valley Fair +Valley Ford +Valley Ford Estero +Valley Forge +Valley Glen +Valley Green +Valley Greene +Valley Greens +Valley Heights +Valley Hi +Valley High +Valley Hill +Valley House +Valley Lake +Valley Lakes +Valley Lark +Valley Lo +Valley New +Valley Oak +Valley Oaks +Valley Park +Valley Pines +Valley Point +Valley Quail +Valley Ridge +Valley Run +Valley Spring +Valley Square +Valley Trails +Valley Tree +Valley Vale +Valley View +Valley View Tram +Valley Vista +Valley West +Valley Wood +Valley of the Moon +Valleybrook +Valleycrest +Valleyfield +Valleyhill +Valleyoak +Valleyscent +Valleyside +Valleystone +Valleystream +Valleytrail +Valleyview +Valleyvista +Valleywood +Valliere +Valliers Wood +Valline +Vallingbe +Valliria +Valma +Valmar +Valmay +Valmere +Valmont +Valmonte +Valmor +Valmora +Valmy +Valnay +Valognes +Valomen +Valon +Valonia +Valor +Valorie +Valory +Valota +Valparaiso +Valpey Park +Valpico +Valpy +Valroy +Vals +Valverde +Valyana +Valyn +Vambery +Van +Van Acker +Van Allen +Van Alstine +Van Arsdale +Van Auken +Van Beal +Van Beuren +Van Binsberger +Van Blarcom +Van Blarcoms +Van Blitz +Van Brackle +Van Brady +Van Breeman +Van Brunt +Van Buren +Van Buskirk +Van Bussum +Van Cedar +Van Cleaf +Van Cleave +Van Cleef +Van Cleep +Van Cleve +Van Cliff +Van Cortlandt +Van Cortlandt Park +Van Cott +Van Dam +Van Damin +Van Damme +Van De Graff +Van Delft +Van Der Meulen +Van Dervin +Van Dieman +Van Dine +Van Doren +Van Dorn +Van Duren +Van Dusen +Van Duyne +Van Duzer +Van Dyck +Van Dyke +Van Emburgh +Van Emmon +Van Etten +Van Exel +Van Fleet +Van Gemert +Van Gogh +Van Greenby +Van Guilder +Van Halen +Van Hee +Van Hoesen +Van Horn +Van Horne +Van Hounten +Van Houten +Van Hoven +Van Keuran +Van Keuren +Van Kirk +Van Kleeck +Van Liew +Van Loan +Van Loon +Van Maren +Van Meter +Van Moore +Van Mourik +Van Mulen +Van Name +Van Ness +Van Nest +Van Norden +Van Nostrand +Van Olst +Van Orden +Van Over +Van Owen +Van Parker +Van Patten +Van Pelt +Van Reipen +Van Rensselaer +Van Reypen +Van Riper +Van Ripper +Van Roo +Van Roosen +Van Ruiten +Van Sansul +Van Saun +Van Schaik +Van Schoick +Van Sciver +Van Sickle +Van Sicklen +Van Siclen +Van Sinderen +Van Sloun +Van Slyke +Van Syckel +Van Tassel +Van Thompson +Van Tines +Van Tuyl +Van Ufford +Van Valkenburgh +Van Vechten +Van Vleck +Van Vooren +Van Vorst +Van Wagenen +Van Wagner +Van Wagoner +Van Wart +Van White +Van White Memorial +Van Wickle +Van Wicklen +Van Winkle +Van Wormer +Van Wyck +Van Wyk +Van Zandt +Van de Mark +Vana +Vanad +Vanasse +Vanbrugh +Vanburen +Vance +Vancott +Vancouver +Vancroft +Vanda +Vandalia +Vandall +Vandam +Vandan +Vandegrift +Vandelft +Vandelinda +Vandell +Vanden +Vandenberg +Vander Wall +Vanderbeck +Vanderbelt +Vanderbergh +Vanderbie +Vanderbilt +Vanderbilt Motor +Vanderbuilt +Vanderburg +Vanderburgh +Vandercastel +Vanderelinde +Vanderhoof +Vanderhurst +Vanderlyn +Vanderpool +Vanderslice +Vanderveer +Vanderventer +Vandervoot +Vandervork +Vanderwalker +Vanderwater +Vandette +Vandever +Vandewater +Vandien +Vandine +Vandon +Vandor +Vandustrial +Vandy +Vandyke +Vane +Vanech +Vaneck +Vanessa +Vanethel +Vanetta +Vanette +Vange Hill +Vange Park +Vangeli +Vanguard +Vanhorn +Vanilla Grass +Vanity +Vanity Fair +Vankalker +Vankleeck +Vann +Vann Farm +Vann Lake +Vanna +Vannan +Vanness +Vanni +Vannier +Vannoy +Vannucci +Vanoni +Vanore +Vanous +Vanpatten +Vanport +Vans +Vanschoick +Vansittart +Vant +Vant Sant +Vantage +Vantage Hill +Vantage Point +Vantomme +Vantorts +Vantroba +Vanwall +Vanzell +Vapery +Vaquero +Vaqueros +Vara +Varady +Varcoe +Varda +Varda Landing +Varden +Vardens +Vardon +Vardys +Varela +Varennes +Varet +Varey +Varga +Vargas +Varian +Varick +Varick Hill +Varidel +Vark +Varkens Hook +Varley +Varna +Varndell +Varner +Varnes +Varney +Varni +Varnum +Varsity +Vasa +Vasco +Vasco Da Gama +Vasconcellos +Vashi +Vashon +Vasona +Vasona Oaks +Vasona Park +Vasques +Vasquez +Vassal +Vassall +Vassar +Vasser +Vast Rose +Vastern +Vatem +Vatsa +Vattman +Vauban +Vaucluse +Vaudan +Vaudrey +Vaugham +Vaughan +Vaughn +Vaughn Hill +Vaugn +Vault +Vaulx +Vaupell +Vause +Vautrinot +Vaux +Vaux Hall +Vauxhall +Vauxhall Bridge +Vauze +Vavasour +Veale +Veasy +Veazy +Vecchio +Vecino +Vectis +Ved Mandir +Veda +Vedder +Vee +Veeder +Veering +Veery +Vega +Vega del Rio +Vegas +Vehicle +Veirs +Veirs Mill +Veitch +Velado +Velander +Velarde +Velasco +Velasquez +Veldran +Veles +Velilla +Velizy +Vellex +Vellum +Vellutini +Velma +Velmead +Velmere +Velo +Velock +Veltman +Veltri +Velvet +Velvetlake +Velvetleaf +Vena +Venable +Venables +Venada +Venadito +Venado +Venango +Venard +Vendale +Venditto +Vendola +Vendome +Vendora +Venedia +Veneman +Veness +Venetia +Venetian +Venetion +Veneto +Venezia +Venice +Venison +Venmore +Venn +Venna +Venndale +Vennecia +Venner +Vennie +Venns +Vennum +Veno +Venson +Ventana +Venter +Ventnor +Venton +Ventry +Ventura +Ventura Club +Venture +Venturella +Venue +Venus +Venuti +Venwood +Veprek +Ver +Vera +Vera Cruz +Vera Schultz +Veracruz +Veralee +Veranda +Verano +Verba +Verbalee +Verbena +Verbend +Verbickas +Vercelli +Verchild +Verda +Verdala +Verdant +Verdayne +Verde +Verde Mesa +Verde Valle +Verde Vista +Verdemar +Verderers +Verderosa +Verdi +Verdi Vista +Verdict +Verdin +Verdis +Verdite +Verdmont +Verdon +Verdosa +Verdoso +Verducci +Verdugo +Verdun +Verdunn +Verdure +Vere +Verein +Vereker +Verena +Verey +Vergie +Vergil +Vergus +Verhaeghe +Veridan +Verigan +Verissimo +Veritas +Verity +Verjane +Verjuniel +Verkade +Verla +Verletta +Verley +Verleye +Verlie +Vermark +Vermeer +Vermette +Vermillion +Vermilye +Vermilyea +Vermont +Vermulen +Vern +Verna +Verna Hall +Verna Mae +Vernaccia +Vernal +Vernalis +Vernam +Vernazza +Verndale +Verne +Vernel +Verner +Verney +Vernham +Vernice +Vernick +Vernier +Vernon +Vernon Berry +Vernon Hills +Vernon Ridge +Vernon Square +Vernon Valley +Vernon View +Vernon Young +Vernons +Vernoy Hills +Vero +Veroan +Veron +Verona +Verona Ridge +Veronda +Veronica +Verplank +Verplast +Verrada +Verran +Verrazano +Verrell +Verrill +Verry +Versailes +Versailles +Vershire +Vert +Verterans +Vertin +Verulam +Vervain +Vervais +Vervalen +Verveille +Vervoort +Verwood +Vescey +Vesey +Vespa +Vespan +Vesper +Vespucci +Vessey +Vessing +Vest +Vesta +Vestal +Vestals Gap +Vestrella +Vestris +Vestry +Vesuvius +Vetel +Veteran +Veterans +Veterans Foreign War +Veterans Memorial +Veterans Park +Veterinary Medicine +Vetrone +Vets +Vets Mem +Vetta +Vevers +Vevey +Vezina +Via +Via Arline +Via Arriba +Via Baja +Via Cabrera +Via Camino +Via Cima +Via Cordova +Via Dora +Via Escuela +Via Grande +Via Guiseppe +Via Horqueta +Via Madero +Via Madronas +Via Monte +Via Nicolo +Via Palagio +Via Palazzo +Via Paviso +Via Pinada +Via Primavera +Via Puerta +Via Ranchero +Via Real +Via Roma +Via Sereno +Via Tanques +Via de Palmas +Via de Robles +Via del Cerrito +Via del Robles +Via del Sol +Via el Dorado +Via la Luna +Viables +Viader +Viaduct +Vialoux +Vian +Viburnum +Vic Rugh +Vicanna +Vicar +Vicar Park +Vicarage +Vicars +Vicars Hall +Vicci +Vicente +Vicenze +Viceroy +Vichy +Vicino +Vick +Vickerman +Vickers +Vickery +Vickery Park +Vickey +Vicki +Vicki Lynn +Vickrey +Vicksburg +Vicky +Vicliffe +Vicorage +Victor +Victor Beamish +Victor Hugo +Victor Mann +Victor Park +Victoria +Victoria Bridge +Victoria Dock +Victoria Farms +Victoria Grange +Victoria Greens +Victoria Heights +Victoria Hill +Victoria Lakes +Victoria Park +Victoria Service +Victoria Smith +Victorian +Victorian Park +Victorian Woods +Victorine +Victorious Song +Victory +Victory Farms +Victory Memorial +Victory Park +Victrola +Vida +Vidal +Videll +Viden +Videtta +Vidgeon +Vidilini +Vidovich +Vieau +Viebrock +Vieira +Viele +Vienna +Viento +Viera +Vierling +Vierra +Vierra Canyon +Vierra Knolls +Viers +Vietor +View +View Acre +View Haven +View Park +View Point +View Pointe +View Ridge +View South +Viewcrest +Viewfield +Viewhill +Viewing +Viewland +Viewlands +Viewmont +Viewoak +Viewpoint +Viewpointe +Viewridge +Viewside +Viga +Vigalant +Viggory +Vignes +Vignoles +Vigo +Viking +Viking Gardens +Vila +Vila Do Porto +Vilas +Vildmark +Viles +Villa +Villa Carol +Villa Chantecleer +Villa Circle +Villa Glen +Villa Gomez +Villa Manucha +Villa Maria +Villa Nova +Villa Nueva +Villa Oak +Villa Oaks +Villa Park +Villa Ridge +Villa Robleda +Villa Roma +Villa Serena +Villa Verde +Villa Vista +Villa de Anza +Villa del Sol +Villaburne +Villacourt +Villadest +Village +Village Center +Village Circle +Village Creek +Village Crest +Village Crossing +Village East +Village Elm +Village Fountain +Village Gate +Village Green +Village Grove +Village Hall +Village High +Village Hill +Village Lake +Village Line +Village Lower +Village Mart +Village Mews +Village Oak +Village Oaks +Village Park +Village Quarter +Village Run +Village Shops +Village Side +Village Spring +Village Square +Village Tree +Village View +Village Wood +Village Woods +Villagefield +Villagetree +Villamay +Villanova +Villard +Villareal +Villaridge +Villarita +Villars +Villas +Villaume +Villaverde +Villaview +Villawood +Villdale +Villeneuve +Villers +Villier +Villiers +Villus +Vilmar +Vilnius +Vimiera +Vimy +Vimy Ridge +Vin Rose +Vina +Vina Rose +Vinal +Vinald +Vinan +Vinca +Vincam +Vince +Vincennes +Vincent +Vincente +Vincentia +Vincents +Vinci +Vindara +Vindel +Vine +Vine Brook +Vine Cottage +Vine Court +Vine Grove +Vine Haven +Vine Hill +Vine Hill School +Vine Rock +Vinebrook +Vinecrest +Vinedale +Vinedo +Vinegar +Vinegar Hill +Vinehill +Vineland +Vinemaple +Vineridge +Vinery +Vines +Vinesse +Vinewood +Viney +Vineyard +Vineyard Estates +Vineyard Haven +Vineyard Hill +Vineyard Park +Vineyard View +Vineyards +Vining +Vining Point +Vinings +Vinita +Vinlake +Vinnells +Vinnin +Vinson +Vint Hill +Vintage +Vintage Crest +Vintage Farm +Vintage Glen +Vintage Hill +Vintage Knoll +Vintage Oak +Vintage Oaks +Vintage Park +Vintage Valley +Vinters +Vinton +Vinton Pond +Vinyard +Vinyards +Viola +Violante +Violet +Violet Tail +Violete +Violets +Violetta +Violettes Lock +Violetti +Viona +Vipers +Vir Mar +Virdelle +Virden +Vireo +Viret +Virgate +Virgil +Virgilia +Virgin Rock +Virginia +Virginia Center +Virginia Chase +Virginia Denise +Virginia Farm +Virginia Hill +Virginia Hills +Virginia Infantry +Virginia Mallory +Virginia Manor +Virginia Meadows +Virginia Pine +Virginia Randolph +Virginia Ridge +Virginia Willow +Virginius +Virgo +Virgo Spur +Virlona +Virmar +Virtue +Virtue Arcade +Viscaino +Visco +Viscoloid +Viscount +Vision +Visitacion +Visitation +Vismanco +Vispy +Vista +Vista Access +Vista Bella +Vista Brook +Vista Brooke +Vista Clara +Vista Creek +Vista Forest +Vista Gardens +Vista Grand +Vista Grande +Vista Heights +Vista Hill +Vista Knoll +Vista Linda +Vista Mar +Vista Mobile +Vista Montaña +Vista Monte +Vista Nuevo +Vista Oak +Vista Oaks +Vista Point +Vista Pointe +Vista Ridge +Vista Robles +Vista Sierra +Vista Tiburon +Vista Verde +Vista Via +Vista View +Vista del Lago +Vista del Mar +Vista del Monte +Vista del Pajaro +Vista del Plaza +Vista del Rio +Vistaglen +Vistamont +Vistapark +Vistas +Vistaview +Viste +Vistosa +Vistula +Vita +Vital +Vitale +Viva +Vivaldi +Vivan +Vivian +Vivian Adams +Vivien +Vivienda +Vivienne +Viviney +Vivyen +Vixen +Vizcano +Vlaardingen +Vlatko +Vliet +Vm Smith +Voce +Voegeli +Voelker +Vogan +Vogay +Vogel +Vogelsang +Vogt +Vogue +Voice +Voit +Voke +Vokoun +Volans +Volante +Volbrecht +Volendam +Voleyn +Volger +Volid +Volintine Farm +Volk +Volker +Volkers +Volkert +Volkerts +Volkmar +Volkswagon +Vollbecht +Voller +Volley +Vollmer +Vollmerhausen +Volmer +Volney +Volpi +Volt +Volta +Voltaire +Volti +Voltz +Volunteer +Volunteer Park +Volusia +Volver +Volvo +Volwycke +Volz +Vomac +Vomel +Von Esch +Von Brandt +Von Braun +Von Eigen +Von Elm +Von Falconer +Von Glahn +Von Hillern +Von Hoff +Von Huenfeld +Von Karman +Von Sosten +Von Vetchen +Vonda +Vonder +Vonderworth +Vondran +Vondrash +Vonhoff +Vonn +Voorhees +Voorhies +Voorhis +Vorden +Vore +Vorley +Vorlich +Vos +Vosburg +Vose +Vose Hill +Voses +Voshage +Voss +Voss Park +Vought +Voula +Vouvray +Vowels +Vowler +Voyager +Voyageur +Vredenburgh +Vreeland +Vroom +Vrtis +Vue Finchley +Vue de Mar +Vulcan +Vulgilbar +Vultee +Vulture Vista +Vuono +Vyne +Vyner +Vyse +Vytina +W Abbey +W Abingdon +W Access +W Acker +W Acme +W Acorn +W Adams +W Adelaide +W Adobe +W Agatite +W Ainslie +W Airport +W Albany +W Albert +W Albion +W Alden +W Alder +W Aldine +W Alexander +W Alexandria +W Algonquin +W Alhambra +W Alleghany +W Allen +W Allendale +W Allison +W Almond +W Almondbury +W Alpine +W Altgeld +W Amelia +W Amherst +W Amsterdam +W Amy +W Anchor +W Ancona +W Anderson +W Andover +W Andrew +W Ann +W Annandale +W Anne K +W Apache +W Apple Orchard +W Apple Tree +W Appleby +W Appletree +W Aptakisic +W Arbor +W Arch +W Archer +W Arden +W Ardmore +W Argyle +W Arlington +W Arlyd +W Armitage +W Armstrong +W Army Trail +W Arquilla +W Arran +W Arrowhead +W Arsenal +W Arthington +W Arundel +W Ash +W Ashland +W Aspen +W Attrill +W Atwater +W Auburn +W Augusta +W Austin +W Autullo +W Autumn +W Avon +W Ayres +W Bailey +W Baker +W Bald Eagle +W Baldwin +W Balmoral +W Baltimore +W Bancroft +W Banfil +W Barbara +W Barclay +W Barr +W Barry +W Bartlett +W Bauer +W Bay +W Bay Front +W Bay Ninth +W Bay Shore +W Bay View +W Bayard +W Bayberry +W Bayer +W Bayview +W Beach +W Beam +W Beaver Lake +W Beech +W Beech Tree +W Beechcroft +W Beecher +W Belden +W Bell +W Belle +W Belle Plaine +W Belleau +W Bellefonte +W Belleterre +W Belleview +W Belmont +W Belvidere +W Benck +W Bend +W Benfield +W Bennett +W Benson +W Benton +W Berenice +W Berkeley +W Berkley +W Berkshire +W Bernhard +W Berteau +W Berwick +W Berwyn +W Betty +W Bexhill +W Big Horn +W Big Sand +W Bigelow +W Birch +W Birchdale +W Birchwood +W Bittersweet +W Black +W Black Dog +W Blackburn +W Blackhawk +W Blackthorn +W Blair +W Blancke +W Bliss +W Blodgett +W Bloners +W Bloomingdale +W Bluff +W Boeger +W Bogey +W Bond Mill +W Bonner +W Bonnie Brae +W Booker +W Boschome +W Bosi +W Boston Post +W Boundary +W Bourne +W Bowen +W Bowler +W Boyington +W Braddock +W Bradford +W Bradley +W Bradwell +W Braemar +W Braeside +W Brampton +W Branch +W Brantwood +W Brayton +W Breda +W Breen +W Brentwood +W Brewster +W Briarcliff +W Briarwood +W Bridge +W Brighton +W Brightway +W Brittany +W Broad +W Broadland +W Broadview +W Broadway +W Brockman +W Brompton +W Brook +W Brookfield +W Brooks +W Brookside +W Brookwood +W Bross +W Brother +W Brown +W Bruce +W Bruns +W Buell +W Buena +W Buffalo Grove +W Buford +W Bull Ridge +W Burke +W Burlington +W Burnett +W Burning Tree +W Burr Oak +W Burville +W Bush Lake +W Business Center +W Busse +W Butterfield +W Butternut +W Byrne +W Byron +W Cabot +W Cabrini +W Calendar +W California +W Calumet Sag +W Cambridge +W Camden +W Cameron +W Camp McDonald +W Campbell Park +W Campus +W Canterbury +W Carefree +W Carl +W Carmen +W Carol +W Carolyn +W Carondelet +W Carriage +W Carroll +W Carter +W Carvel +W Carver +W Cascade +W Case +W Castle Island +W Catalpa +W Catawba +W Catherine +W Cathy +W Caton +W Cattail +W Cedar +W Cedar Lake +W Cedarview +W Centennial +W Center +W Central +W Centurion +W Century +W Chalk Point +W Chamberlin +W Champion +W Chanay +W Chancellor +W Channon +W Chapin +W Chapman +W Charles +W Charleston +W Charlotte +W Charmaine +W Chartwell +W Chase +W Chatfield +W Chatham +W Checker +W Cherry +W Cherry Blossom +W Cheryl +W Chesapeake Beach +W Chester +W Chestnut +W Chestnut Ridge +W Chicago +W Chilcombe +W Chipwood +W Choctaw +W Christiana +W Christopher +W Church +W Churchill +W Circle +W Circuit +W Clara +W Clarence +W Clarendon +W Clark +W Clearwater +W Cleven +W Cliff +W Cliffside +W Clifton +W Clinton +W Clover +W Coach +W Coady +W Cole +W Coleman +W Colerain +W Colfax +W College +W Colonial +W Colorado +W Columbia +W Columbus +W Colville +W Comfort +W Commercial +W Commonwealth +W Como +W Concord +W Congress +W Connacht +W Connell +W Conrad +W Constance +W Cook +W Cope +W Cornelia +W Cornell +W Cortez +W Cortland +W Cossitt +W Cotswald +W Cottage +W Country +W Country Club +W Country Estates +W Country Valley +W Countryside +W County Line +W Course +W Court +W Courte +W Courtland +W Coventry +W Coyle +W Crainmont +W Crandall +W Creek +W Creek Farms +W Creekside +W Crescent +W Cressett +W Crestline +W Crestview +W Crockett +W Crooked Willow +W Crystal +W Crystal Lake +W Cuba +W Cullerton +W Cullom +W Culver +W Cunningham +W Curtice +W Curtis +W Custer +W Custis +W Cuttriss +W Cuyler +W Dahlgren +W Dakin +W Dallas +W Dalton +W Danbury +W Daniels +W Dante +W Danube +W Dartmoor +W Davis +W Dayton +W Dean +W Dee +W Deer Creek +W Deer Park +W Deerpath +W Deerwood +W Delaney +W Delano +W Delos +W Demont +W Dempster +W Dennis +W Denton +W Des Moines +W Devon +W Devonia +W Dexter +W Diamond +W Diamond Lake +W Dickens +W Diehl +W Diversey +W Division +W Doede +W Dolph +W Domagalla +W Dominion +W Donegal +W Doral +W Dorchester +W Dorothy +W Dosoris +W Doswell +W Douglas +W Dove +W Dover +W Dovington +W Doyle +W Dublin +W Dudley +W Dundee +W Durham +W Durkee +W Eagle Lake +W Eames +W Early +W Eastman +W Easton +W Eastwood +W Easy +W Eaton +W Ebinger +W Echo +W Eddy +W Edgemont +W Edgewater +W Edgewood +W Edmaire +W Edmund +W Edmunds +W Edsall +W Edward +W Eggerding +W Elder +W Eleanor +W Elizabeth +W Elk Grove +W Ellen +W Ellice +W Ellis +W Elm +W Elm Grove +W Elmgrove +W Elms Court +W Elmwood +W Emerson +W End +W Enger +W Engle +W Englewood +W Erhart +W Essex +W Estes +W Ethel +W Euclid +W Eugenia +W Eureka +W Eva +W Evans +W Evelyn +W Everell +W Everett +W Evergreen +W Exchange +W Exeter +W F Kings +W Fabish +W Fairmount +W Fairview +W Fargo +W Farm +W Farmdale +W Farmhill +W Farms +W Farragut +W Farwell +W Fenimore +W Fenview +W Ferdinand +W Fernwood +W Ferris +W Fey +W Fillmore +W Fingerboard +W Firestone +W Firth +W Fischer Farm +W Fish Lake +W Fitch +W Flagler +W Fletcher +W Florence +W Flournoy +W Flynn Creek +W Foch +W Forbes +W Ford Brook +W Ford City +W Forest +W Forest Lawn +W Forest View +W Foresthill +W Forestview +W Fork +W Forster +W Fort Lee +W Fortlee +W Foss +W Foster +W Fox +W Fox Hill +W Fox River +W Foxdale +W Francis +W Franciscan +W Frankfort +W Franklin +W Freeway +W Fremont +W French Lake +W Friends +W Friendship +W Front +W Frontage +W Frontenac +W Frontier +W Frost +W Fry +W Fuller +W Fullerton +W Fulton +W Furnace Branch +W Gabreski +W Gale +W Galena +W Galeview +W Galley +W Garden +W Gardner +W Garfield +W Garrett +W Gartner +W Gaslight Square +W Gate +W Gate Fire +W Gates +W Gateway +W Gaylore +W Geneva +W George +W George Mason +W Geranium +W Gerri +W Gettysburg +W Gibbons +W Giddings +W Gilbert +W Glade +W Gladys +W Glebe +W Glen +W Glen Hill +W Glen Park +W Glenbarr +W Glencoe +W Glendale +W Glengate +W Glenlake +W Glenshire +W Glenwood +W Go Wanda +W Goebel +W Goethe +W Golden Lake +W Goldsborough +W Golf +W Golfview +W Goodenow +W Goodhue +W Goodman +W Goodrich +W Gouverneur +W Government +W Grace +W Gracy +W Graham +W Granada +W Grand +W Grand Lake +W Grand Monde +W Grandview +W Grant +W Grantley +W Granville +W Green +W Green Meadows +W Greenbrook +W Greenfield +W Greenleaf +W Greenway +W Greenwich +W Greenwood +W Gregory +W Grenshaw +W Greystone +W Grochowiak +W Grove +W Grover +W Grovewood +W Gude +W Guinevere +W Gunnison +W Hackberry +W Haddon +W Hadley +W Hafenrichter +W Hafer +W Haft +W Haines +W Halbert +W Haledon +W Haley +W Half Day +W Hamburg +W Hamilton +W Hamline Service +W Hampden +W Hampshire +W Hampton +W Hanover +W Hansel +W Hansen +W Happfield +W Harbor +W Harding +W Harold +W Harriet +W Harris +W Harrison +W Hartford +W Harts +W Hartsburg +W Hartsdale +W Harwood +W Hastings +W Hatch +W Hattendorf +W Haven +W Hawley +W Hawthorne +W Hayes +W Hayford +W Haystack +W Hazel +W Hazelcrest +W Hazelwood +W Heather Glen +W Heatherlea +W Heathwood +W Hedge Apple +W Hegel +W Helen +W Helmar +W Hemphill +W Henderson +W Hendon +W Hendricks +W Henrietta +W Henry +W Heritage Oaks +W Hermione +W Hiawatha +W Hickory +W Hickory Creek +W Hidden Valley +W Higbie +W Higgins +W High +W High Point +W High Ridge +W Highland +W Highridge +W Hill +W Hillcrest +W Hills +W Hillside +W Hilltop +W Hinsdale +W Hintz +W Hircsh +W Hirsch +W Hitchcock +W Hobart +W Hobart Gap +W Hobbie +W Hoff +W Hoffman +W Holbrook +W Holly +W Hollywood +W Holtz +W Homestead +W Honeysuckle +W Hood +W Horn +W Horseshoe +W Hortense +W Howard +W Howdy +W Howell +W Howland +W Hoyt +W Hubbard +W Hudson +W Hummingbird +W Hundley +W Hunt +W Hunter +W Hunters +W Huntington +W Huntington Commons +W Huntley +W Hurlbut +W Huron +W Hutchinson +W Hyacinth +W Hydraulic +W Ibsen +W Idaho +W Illinois +W Imlay +W Imperial +W Indian Trail +W Indiana +W Industrial +W Inman +W Interstate +W Inverness +W Iowa +W Ironstone +W Iroquois +W Irvine +W Irving +W Irving Park +W Isabel +W Isabella +W Isham +W Island +W Islip +W Itasca +W Ivanhoe +W Ivy +W J L Smith +W Jack +W Jackson +W Jacquie +W Jamaica +W James +W Jarlath +W Jarvis +W Jason +W Jasper +W Jean +W Jefferson +W Jeffery +W Jeffrey +W Jefryn +W Jerome +W Jersey +W Jessamine +W Jessup +W Jobev +W Joe Orr +W Joffre +W Johanna +W John +W Johnson +W Joliet +W Jonathon +W Jones +W Joyce +W Julian +W Juliet +W Juneau +W Junior +W Juno +W Kamerling +W Kammes +W Karen +W Karl +W Kathleen +W Kathryn +W Kay +W Kazimour +W Kellogg +W Kelly +W Kelly Ann +W Kenilworth +W Kennedy +W Kennicott +W Kensington +W Kentwood +W Kenwood +W Kilkenny +W Kimber +W King +W King George +W Kingsbridge +W Kingsbury +W Kingsley +W Kingston +W Kinney +W Kinzie +W Kipp +W Kirke +W Kissimee +W Knollwood +W Kohl +W Kraft +W Kruckenburg +W Kurt +W Kuse +W Ladd +W Lady Bar +W Lafayette +W Lafayette Frontage +W Lafond +W Lahon +W Lake +W Lake Cook +W Lake Fairfield +W Lake Harriet +W Lake Manor +W Lake Park +W Lake Sarah +W Lake Shore +W Lakeland +W Lakepoint +W Lakeshore +W Lakeside +W Lakeview +W Lakeway +W Lakewood +W Lambs +W Lancaster +W Lancelot +W Landau +W Langley +W Lanham +W Laquinta +W Laraway +W Larchmont +W Lasalle +W Lauffer +W Laurel +W Lauren +W Laurie +W Lawn +W Lawndale +W Lawrence +W Lawson +W Le Moyne +W Lee +W Leland +W Lenox +W Leon +W Leonora +W Leslie +W Lester +W Lexington +W Liberty +W Lill +W Lincoln +W Linda +W Lindbergh +W Linden +W Line +W Linecrest +W Linwood +W Little Creek +W Little Pond +W Livingston +W Lloyd +W Lockport +W Lockwood +W Locust +W Lode +W Logan +W Lois +W Lone Tree +W Long Grove +W Longfield +W Lookout +W Loop +W Lori +W Lorraine +W Lothair +W Lotta +W Louis +W Louise +W Loves +W Loy +W Loyola +W Lucas +W Lumber +W Lunt +W Luray +W Luther +W Lydia +W Lyndale +W Lynfield +W Lynnhurst +W Lynnwood +W Lyon Farm +W Madison +W Magnolia +W Magoun +W Mahan +W Mahogany +W Main +W Major +W Mallard +W Manchester +W Manhattan +W Manitoba +W Manor +W Mansard +W Maple +W Marathon +W Margaret +W Marie +W Marigold +W Marine +W Marion +W Market +W Marlton +W Marquardt +W Marquette +W Marshall +W Martha +W Martin +W Marwood +W Mary +W Marydale +W Marylou +W Marywood +W Mason +W Masonic View +W Mathews +W Matson +W Matthews +W Maude +W Maxwell +W May +W Mayland Villa +W Maynard +W Maypole +W Mc Boal +W Mc Connell +W Mc Lean +W McCarthy +W McClellan +W McCowan +W McDonald +W McGowanwoods +W McKendree +W McKenzie +W McKinley +W McLean +W McMillin +W Meadow +W Meadow Lake +W Meadowland +W Meadowlark +W Meath +W Medicine Lake +W Medill +W Melody +W Melrose +W Memory +W Menna +W Menomonee +W Merchants +W Meredith +W Merle +W Merrick +W Merrion +W Mertz +W Messner +W Metropole +W Meyer +W Miami +W Michael +W Michigan +W Middle +W Middleton +W Midland +W Midway +W Milburn +W Milestone +W Milford +W Mill +W Miller +W Millers +W Millpage +W Millport +W Millsdale +W Milton +W Mineola +W Miner +W Mineral Pond +W Minerva +W Minnehaha +W Minnesota +W Minooka +W Mississippi +W Moffat +W Mohawk +W Monitor +W Monroe +W Montana +W Monterey +W Montgomery +W Monticello +W Montpelier +W Montreal +W Montrose +W Montvale +W Monument +W Moorefield +W Mooseheart +W Moreland +W Morgan +W Morris +W Morse +W Morthland +W Mound +W Moundsview +W Mount +W Mount Harmony +W Mount Ida +W Mount Pleasant +W Mulberry +W Mulford +W Mulloy +W Mulraney +W Mundhank +W Munsell +W Munster +W Myrick +W Myrtle +W N E Shore +W N Frontage +W Nap +W Naperville +W Natalie +W National +W Natoma +W Navajo +W Nebraska +W Neck +W Nelson +W Neptune +W Nettle Creek +W Nevada +W New +W New Britton +W New Monee +W New York +W Newell +W Newport +W Niagara +W Nicholai +W Nichols +W Niles +W Noel +W Nolcrest +W Norfolk +W Normal +W Norman +W Normandy +W North +W North Boo +W North Peotone +W North Pond +W North Shore +W Northcrest +W Northeast Shore +W Northfield +W Northshore +W Norwalk +W Norwich +W Norwood +W Nut Swamp +W Nyack +W Oak +W Oak Glenn +W Oak Hill +W Oak Spring +W Oakdale +W Oakhill +W Oakleaf +W Oakmont +W Oakridge +W Oakton +W Oakwood +W Oasis Service +W Oceanside +W Official +W Offner +W Offutt +W Ogden +W Ohio +W Old Barrington +W Old Country +W Old Elm +W Old Hideway +W Old Mill +W Old Monee +W Old Rand +W Old Ridge +W Old Shakopee +W Oldis +W Olendorf +W Olive +W Omaha +W Oneida +W Onekema +W Ontario +W Onwentsia +W Orange +W Orchard +W Ordnance +W Orlando +W Orme +W Osceola +W Otto +W Overlook +W Owasso +W Owen +W Ox +W Oxford +W Paddock +W Page +W Palace +W Palatine +W Palisade +W Palisades +W Palmer +W Palos +W Pantigo +W Parallel +W Park +W Park Cir +W Park Hills +W Park Place +W Parker +W Parkside +W Parkview +W Partridge +W Pasadena +W Pasadera +W Pasatiempo +W Passaic +W Patapsco +W Patterson +W Patton +W Pauline +W Pawnee +W Peak +W Pearson +W Pebble +W Peddie +W Peiffer +W Pellinore +W Penfield +W Penn +W Pennsylvania +W Penny +W Pennywood +W Pensacola +W Peotone +W Pepper +W Pershing +W Peterson +W Petronella +W Pheasant Trail +W Phillip +W Phillips +W Pier +W Pierce +W Pierrepont +W Pin Oak +W Pine +W Pine Cone +W Pine Hill +W Pinehurst +W Pinewood +W Pioneer Grove +W Pippin +W Pittner +W Plainfield +W Plattner +W Playfield +W Pleasant +W Pleasant View +W Pleasantview +W Plum +W Plymouth +W Point +W Polk +W Polo Trail +W Pond +W Pope +W Poplar +W Porter +W Portland +W Post +W Potomac +W Potter +W Prairie +W Pratt +W Prescott +W Preserve +W Price +W Pricilla +W Primrose +W Princeton +W Prindiville +W Proesel +W Prospect +W Pryor +W Pulaski +W Pullman +W Putnam +W Quackenbush +W Quail +W Quail Hollow +W Quarry +W Quincy +W R Tracy +W Race +W Railroad +W Railway +W Ramapo +W Rampart +W Rand +W Randolph +W Ranick +W Rascher +W Raven +W Ravine +W Rawson Bridge +W Raymond +W Reader +W Red Cloud +W Red Coat +W Red Oak +W Redcliffe +W Reed +W Regan +W Reiter +W Remington +W Renwick +W Research Center +W Revere +W Rfd Checker +W Rice +W Rich +W Richard +W Richmond +W Richton +W Rickard +W Ridge +W Ridgewood +W River +W River Hills +W River Oaks +W Riverbend +W Riverside +W Riverview +W Riviera +W Roanoke +W Rob +W Roberts +W Roberts Ridge +W Robertson +W Robie +W Robin +W Robinson +W Roblyn +W Rockburn Hill +W Rockland +W Rockview +W Rockwood +W Rome +W Ronald +W Rondeau Lake +W Roosevelt +W Root +W Rosalie +W Roscoe +W Rose +W Rosedale +W Rosehill +W Roselawn +W Roselle +W Rosemary +W Rosemont +W Roseview +W Roslyn Park +W Roxbury +W Royal Oak +W Royal Oaks +W Ruby +W Rumsey +W Running Brook +W Runyon +W Russell +W Ryan +W S Boo +W S Owasso +W Saddle +W Saddle Ridge +W Saddle River +W Saint Charles +W Saint Georges +W Saint Joseph +W Salem +W Salisbury +W Saltaire +W Sanders +W Sandpiper +W Sandstone +W Santa Barbara +W Sapphire +W Sargent +W Savannah +W Schaumburg +W Scheffer +W Schick +W Schiller +W School +W Schorsch +W Schreiber +W Schroeder +W Schubert +W Schultz +W Schweitzer +W Schweizer +W Schwerman +W Scott +W Scranton +W Scudder +W Seacrest +W Seaman +W Seamans Neck +W Seil +W Seipp +W Seminary +W Seminole +W Service +W Severn Ridge +W Shadow Lake +W Shady +W Shady Side +W Shakespeare +W Shannon +W Sharp +W Sheffield +W Shelley +W Shepley +W Sheridan +W Sherman +W Sherren +W Sherrill +W Sherwin +W Shiawassie +W Shirley +W Shore +W Shoreline +W Short +W Shryer +W Sibley +W Side +W Sidney +W Silo +W Silver Lake +W Sioux +W Sioux Vista +W Slade +W Slippery Rock +W Slocum Lake +W Smith +W Snelling +W Snelling Service +W Soffel +W Somerset +W South +W South Orange +W Southmeadow +W Spangler +W Spencer +W Spring +W Spring Lake +W Spring Ridge +W Springhill +W Spruce +W Sprucewood +W Suffield +W Sullivan +W Summer +W Summerdale +W Summerset +W Summerview +W Summit +W Sumner +W Sunnyside +W Sunnyslope +W Sunset +W Superior +W Surrey +W Surrey Park +W Susan +W Sussex +W Swain +W Swann +W Sweetwater +W Sycamore +W Sylvan +W Taft +W Tahoe +W Talcott +W Tam O Shanter +W Tamarack +W Tanglewood +W Tantallon +W Taos +W Tartan +W Taylor +W Techny +W Termunde +W Terrace +W Territorial +W Thacker +W Thayer +W Thomas +W Thome +W Thorn +W Thorndale +W Thornridge +W Thornwood +W Three Oaks +W Thure +W Tilden +W Timber +W Timbercreek +W Timberlake +W Timberlea +W Touhy +W Tow Path +W Tower +W Townline +W Trail +W Traube +W Tremont +W Trinity +W Tryon +W Tulip +W Turner +W Turtle +W Tuscarora +W Twin +W Tyler +W Tyson +W Uhler +W Union +W University +W Upland +W Ute +W Vadnais +W Valentine +W Vallette +W Valley +W Van Buren +W Van Emmon +W Van Ness +W Vermont +W Verret +W Veterans +W Victoria +W View +W Viking +W Villa +W Village +W Vine +W Von +W Wabansia +W Wagner +W Wakefield +W Walker +W Wallen +W Walnut +W Walsh +W Walter +W Walton +W Wapella +W Warburton +W Ward +W Warner +W Warren +W Washburne +W Washington +W Water +W Watkins Mill +W Watling +W Watson +W Wauconda +W Waukena +W Waveland +W Waverly +W Wayman +W Wayzata +W Webster +W Weed +W Wellesley +W Wellington +W Wend +W Wendell +W Werberry +W Wesley +W West +W West End +W Western +W Westlake +W Westminster +W Westmoreland +W Westport +W Westward Ho +W Westwood +W Wheatley +W Wheatstone +W Wheeler +W Whispering Hill +W White +W White Pine +W Whitegate +W Whitehall +W Whiting +W Wiesbrook +W Wilcox +W Wildwood +W Wilhelm +W Willard +W Wille +W William +W Williams +W Willow +W Willow Glen +W Wilshire +W Wilson +W Windhill +W Windmill +W Windsor +W Wing +W Wingedfoot +W Winifred +W Winnemac +W Winnetka +W Winnipeg +W Winona +W Wintergreen +W Wirth +W Wisconsin +W Wishing Well +W Witchwood +W Wolfram +W Wood +W Woodbine +W Woodbridge +W Woodcrest +W Woodland +W Woodlawn +W Woodman +W Woodridge +W Woodriver +W Woods +W Woodside +W Woodstock +W Woodvale +W Wordsworth +W Wrentham +W Wright +W Wrightwood +W Wyandot +W Wyngate +W Wyoming +W York +W Yorkshire +W Youngman +W Zarley +W Zoller +W Zoranne +W de Koven +W de Saible +W del Ray +W la Porte +W. Frontage +W. Main +W. Market +WIld +WIlford +WIllow Ridge +WIngadee +Waackaack +Waalwyk +Waarden +Waarem +Waban +Waban Hill +Wabana +Wabansia +Wabash +Wabasha +Wabasso +Wabba +Wabena +Wabeno +Wabler +Waborne +Wachter +Wachtler +Wachusett +Wachusett View +Wachusetts +Wacker +Wackett +Waco +Wacomor +Waconah +Wacota +Wacouta +Wadaga +Wadbrook +Waddell +Wadding +Waddington +Waddling +Waddon +Waddon Alton +Waddon Court +Waddon New +Waddon Park +Wadds +Wade +Wade Hill +Wadebridge +Wadena +Wades +Wadesmill +Wadeson +Wadeville +Wadham +Wadhams +Wadhurst +Wadkins +Wadlands +Wadlands Brook +Wadleigh +Wadleigh Park +Wadley +Wadsworth +Wadsworth Farm +Waelchli +Waesche +Wafer +Wagamon +Wagann +Wagaraw +Wagda +Wagele +Wagenheim +Wagg +Wagga Wagga +Waggaman +Waggon +Waggoners Wells +Waghorn +Wagman +Wagner +Wagner Farm +Wagner Heights +Wagnon +Wagon +Wagon Trail +Wagon Wheel +Wagoner +Wagontire +Wagonwheel +Wagschall +Wagstaff +Wagstaffe +Wagtail +Wah +Wahkiakum +Wahl +Wahler +Wahlstrom +Wahly +Wahneta +Wahnita +Wahoo +Wahroonga +Waiana +Waibel +Waikiki +Waiku +Wailing +Waima +Waimea +Waincliffe +Waine +Wainewright +Wainfleet +Waingels +Wainman +Wainscot +Wainscott +Wainsford +Wainwright +Waiola +Waiport +Wairoa +Wait +Waitaki +Waitara +Waite +Waite Davies +Waithlands +Waithman +Waitkus +Waitovu +Waitt +Waitville +Waiwera +Wake +Wake Field +Wake Forest +Wake Island +Wake Robin +Wakeby +Wakefield +Wakefield Chapel +Wakefield Park +Wakefield Pond +Wakeford +Wakeham +Wakehams Green +Wakehurst +Wakeland +Wakelee +Wakeley +Wakelin +Wakeling +Wakely +Wakeman +Wakemans Hill +Wakemen +Wakemore +Wakering +Wakerobin +Wakes +Wakestone +Wakeview +Wakley +Wakonade +Wakooka +Wakullah +Walace +Walada +Walavista +Walbern +Walberswick +Walbridge +Walbrook +Walbrooke +Walburgh +Walburton +Walbury +Walbutton +Walcorde +Walcot +Walcott +Wald +Waldeberg +Waldeck +Waldemar +Walden +Walden Clubhouse +Walden Farms +Walden Hill +Walden House +Walden Pond +Walden Shores +Walden Square +Waldenhurst +Waldens +Waldens Park +Waldenshaw +Waldenstrom +Walder +Walderslade +Walderton +Waldheim +Walding Field +Waldingfield +Waldman +Waldo +Waldoln +Waldon +Waldor +Waldorf +Waldorf Forest +Waldorn +Waldran +Waldren +Waldrew Heights +Waldroff Farm +Waldrohe +Waldron +Waldstock +Waldwick +Waleco +Walenore +Walerand +Walerga +Wales +Waley +Walford +Walford Park +Walfrid +Walgrave +Walgrove +Walhaven +Walhonding +Waling +Walizer +Walk +Walk Hill +Walk Mill +Walkabout +Walkden +Walkdens +Walke +Walker +Walker Choice +Walker Farm +Walker Fold +Walker Hill +Walker House +Walker Mill +Walker Ranch +Walker Valley +Walker Woods +Walkern +Walkers +Walkers Brook +Walkers Choice +Walkerton +Walkerville +Walkfield +Walkhill +Walkhurst +Walking +Walking Ridge +Walkingfern +Walkley +Walkom +Walkup +Wall +Wall End +Wall Hall +Wall Hill +Wall Park +Wall Pt. +Walla Walla +Wallabout +Wallace +Wallace Creek +Wallace Cross +Wallace Hill +Wallace Manor +Wallacks +Wallaga +Wallage +Wallami +Wallan +Walland +Wallangra +Wallaringa +Wallaroy +Wallasey +Wallbank +Wallberg +Wallbridge +Wallcote +Walldown +Wallea +Wallen +Wallendbeen +Wallenger +Wallens +Waller +Waller Clough +Wallers +Walley +Walleye +Wallflower +Wallgrave +Wallgrove +Wallhead +Wallhouse +Wallice +Wallin +Walling +Wallingford +Wallington +Wallis +Wallis Ann +Wallis Close Holgate +Wallis Oak +Wallmark +Wallmark Lake +Wallner +Wallness +Walloon +Wallowa +Wallpole +Walls +Wallshaw +Wallum Beach +Wallum Lake +Wallum Pond +Wallumatta +Wallwood +Wallwork +Wally +Walman +Walman Buckley +Walmea +Walmer +Walmers +Walmersley +Walmersley Old +Walmesley +Walmgate +Walmort +Walmsley +Walney +Walney Park +Walnut +Walnut Acres +Walnut Bayou +Walnut Blossom +Walnut Branch +Walnut Creek +Walnut Grove +Walnut Haven +Walnut Heights +Walnut Hill +Walnut Hollow +Walnut Knoll +Walnut Meadows +Walnut Oaks +Walnut Park +Walnut Place +Walnut Pointe +Walnut Ridge +Walnut Tree +Walnut Woods +Walnutgrove +Walnuts +Walnutwood +Walona +Walper +Walpert +Walpole +Walport +Walraven +Walray +Walredon +Walrond +Walsall +Walsby +Walsden +Walsh +Walsham +Walshaw +Walshes +Walsingham +Walsworth +Walt +Walt Whitman +Walter +Walter Adamic +Walter Bowie +Walter Breton +Walter Burke +Walter Faunce +Walter Hagen +Walter Hays +Walter Johnson +Walter Morse +Walter Reed +Walter Scott +Walter Thompson +Walter Wheeler +Walter Zimny +Waltermire +Walters +Walters Green +Walters Port +Walters Woods +Walterton +Waltham +Waltham Cross +Waltham Park +Walther +Walthery +Walti +Waltoffer +Walton +Walton Av +Walton Bridge +Walton Hall +Walton Hall Farm +Walton Heath +Walton New +Walton Oaks +Walton Park +Waltons Hall +Waltonway +Waltrip +Waltrous +Waltuma +Waltz +Waltzer +Walworth +Walwyn +Walz +Wamasquid +Wambold +Wambool +Wamburg +Wamesit +Wamesite +Waminda +Wampanaw +Wampanoag +Wampatuck +Wampum +Wampus +Wamsutta +Wanamaker +Wanaque +Wanari +Wanawong +Wanborough +Wanbourne +Wand +Wanda +Wandabury +Wandana +Wandarri +Wandeen +Wandel +Wandell +Wandella +Wanden +Wander +Wanderer +Wandering +Wandering Creek +Wandering Trail +Wanders +Wandle +Wandobah +Wandon +Wandoo +Wandsworth +Wandsworth Ram +Wanegarden +Waner +Waneta +Wangalla +Wanganella +Wanganui +Wangara +Wangee +Wanger +Wangi +Waninga +Wanlass +Wanless +Wanley +Wanlip +Wannalancit +Wannamaker +Wannas +Wanniti +Wannyl +Wano +Wanoosnoc +Wansbeck +Wanser +Wansers +Wansey +Wanskuck +Wansor +Wanstead +Wansunt +Want +Wantage +Wantagh +Wantagh Park +Wanto Shipyard +Wantz +Wanzer +Wanzia +Wapakoneta +Wapella +Wapello +Wapiti +Waple +Waples Mill +Wapoo +Wapoo Hill +Wappanoca +Wappanocca +Wapping +Wapping Dock +Wappo +Wapseys +Wapshott +War Admiral +War Coppice +War Office +War Wagon +Warabin +Waragal +Warana +Waratah +Warawee +Warbank +Warbeck +Warberry +Warbick +Warbler +Warbler Springs +Warbleton +Warborough +Warboys +Warbreck +Warbrook +Warburton +Warburton Bridge +Warburton Oaks +Warbury +Warby +Warcock +Warcoo +Ward +Ward Park +Ward Witty +Wardang +Warde +Wardell +Warden +Wardia +Wardle +Wardlebrook +Wardley +Wardlow +Wardman +Wardour +Wardrobes +Wardrop +Wards +Wards Chapel +Wards Hill +Wards Hill Minster +Wards Point +Wardsbrook +Wardsworth +Wardwell +Ware +Ware Park +Ware Woods +Wareemba +Wareham +Warehams +Warehill +Warehorne +Warehouse +Warehouse Creek +Warehouse Hill +Warehouse Landing +Wareing +Warejee +Warekila +Wareland +Waremead +Warenne +Warepoint +Wares +Warescot +Warewoods +Warf +Warfield +Warford +Wargrave +Wargrove +Warham +Wari +Warialda +Warilda +Warili +Warin +Warinanco Park +Waring +Warington +Warish Hall +Wark +Warkworth +Warlencourt +Warley +Warley Hall +Warlingham +Warlock +Warlow +Warltersville +Warm +Warm Granite +Warm Springs +Warman +Warmbrook +Warmington +Warminster +Warminster Way Clay +Warmke +Warmlake +Warmley +Warmscombe +Warmsley +Warmsprings +Warmstone +Warmwell +Warmwood +Warndon +Warne +Warneford +Warner +Warner Range +Warner Trail +Warners +Warners End +Warnford +Warnham +Warnham Court +Warninglid +Warnke +Warnock +Warooga +Waroon +Warra +Warraba +Warrabina +Warragal +Warrah +Warramill +Warramunga +Warrana +Warrane +Warrangarree +Warrangi +Warrant Officer Bauer +Warraroon +Warraroong +Warratah +Warrawee +Warrawidgee +Warrawong +Warrego +Warrels +Warren +Warren Ball +Warren Bruce +Warren Farm +Warren Gibson +Warren Hagstrom +Warren House +Warren Lodge +Warren Park +Warren Row +Warren Wood +Warrendene +Warrender +Warrener +Warreners +Warrengate +Warrenne +Warrens +Warrens Shawe +Warrensgreen +Warrenton +Warrenville +Warrick +Warriewood +Warrigal +Warrigo +Warrimoo +Warrina +Warriner +Warring +Warringa +Warringah +Warrington +Warrior +Warrior Brook +Warrior Square +Warriston +Warrumbungle +Warrung +Warsaw +Warslow +Wartburg +Warth +Warth Fold +Warthen +Warton +Waruda +Warumbui +Warumbul +Warung +Warwich +Warwick +Warwick House +Warwick Wold +Warwicks Bench +Warwickshire +Warwilla +Warwillah +Wasatch +Wasche +Wasco +Wascussee +Wasdale +Wasdale Head +Waseca +Waselchuk +Wasena +Wash +Wash Brook +Wash Hollow +Washall +Washburn +Washer +Washford +Washford Farm +Washington +Washington Brice +Washington Grove +Washington Park +Washington Rock +Washington Spring +Washington Square +Washington Valley +Washington Woods +Washingtonian +Washingtonn +Washitay +Washneys +Washo +Washoe +Washta Bay +Washtenaw +Washway +Wasilla +Waskow +Wasno +Wason +Wasp +Wasp Green +Wasp Mill +Wass +Wassall +Wassell +Wasson +Wastdale +Waste +Wastwater +Wasylenko +Watburn +Watch +Watch Hill +Watch Tower +Watchbell +Watchers +Watchet +Watchetts +Watchfield +Watchhouse +Watchmoor +Watchogue +Watchouse +Watchtower +Watchung +Watchung Crest +Watchung Heights +Watchwood +Watcombe +Water +Water Brook +Water Dog Lake +Water Edge +Water Elm +Water End +Water Fall +Water Grant +Water Grove +Water Hall +Water Lily +Water Locust +Water Mill +Water Oak +Water Oak Point +Water Pointe +Water Reserve +Water Ridge +Water Row +Water Tank +Water Tower +Water View +Water Works +Waterbank +Waterbeach +Waterberry +Waterbrook +Waterbury +Waterbury Heights +Watercourse +Watercress +Watercroft +Watercure +Waterdale +Waterdell +Waterden +Waterditch +Waterdock +Waterdown +Wateredge +Wateree +Waterend +Waterfall +Waterfall Glen +Waterfield +Waterflower +Waterfold +Waterfoot +Waterford +Waterfowl +Waterfront +Watergate +Watergate Embleton +Watergum +Waterhall +Waterham +Waterhaven +Waterhill +Waterhouse +Wateridge +Wateringbury +Waterlands +Waterlily +Waterline +Waterloo +Waterlot +Waterlow +Waterman +Watermans +Watermead +Watermeadow +Watermeetings +Watermill +Waterous +Waterpark +Waterperry +Waters +Waters Creek +Waters Discovery +Waters Edge +Waters Edge Landing +Waters Hollow +Waters Landing +Waters Meeting +Waters Nook +Waters Park +Waters Point +Watersedge +Watershed +Watersheddings +Waterside +Waterslea +Watersleigh +Watersmead +Waterson +Watersong +Watersplash +Waterston +Waterswallows +Waterton +Watertower +Watertown +Watertrough +Watervale +Waterview +Waterville +Watervliet +Waterway +Waterwheel +Waterwillow +Waterwitch +Waterwood +Waterworks +Waterworld +Waterworth +Watery +Watford +Watford Bridge +Watford High +Wathen +Watkin +Watkins +Watkins Meadow +Watkins Mill +Watkins Park +Watkins Pond +Watkins View +Watkinson +Watkiss +Watling +Watlington +Watmore +Watney +Watnong +Watoquadoc +Watrous +Watsam +Watseka +Watsessing +Watsford +Watson +Watson Farm +Watsonia +Watsonville +Watt +Wattamolla +Wattendon +Watters +Watterson +Watting +Wattle +Wattle Creek +Wattle Grove +Wattles +Wattleton +Wattling +Watton +Watts +Watts Branch +Watts Mine +Watts Palace +Waubansee +Waubansie +Wauboksee +Waubonsee +Waubonsee Circle +Waubonsie +Waucantuck +Wauchope +Wauconda +Waudman +Waugh +Waugh Chapel +Waughaw +Waugoola +Waukeena +Waukegan +Waukena +Waukesha +Waukon +Wauluds Bank +Waumbeck +Wauponsee +Wausau +Waushacum +Waushakum +Wavaney +Wave +Wave Crest +Wavecrest +Wavehill +Waveland +Wavell +Wavemey +Wavendene +Wavendon +Waveney +Waverleigh +Waverley +Waverley Oaks +Waverly +Waverly Crossing +Waverly Park +Waverton +Wavertree +Wavy +Wawapek +Wawecus +Wawela +Wawona +Waxberg +Waxen +Waxon +Waxpool +Waxwell +Waxwing +Way +Way Lene +Way Points +Wayaawi +Waybridge +Wayburn +Waybury +Waycott +Waycross +Waydale +Waydell +Waye +Wayella +Wayfair +Wayfarer +Wayfarers +Wayfaring +Wayfield +Wayford +Waygrove +Wayjack +Wayland +Wayland Hills +Waylen +Wayles +Wayletts +Waylon +Waylor +Wayman +Waymond +Wayne +Wayne Gibson +Wayne Oaks +Wayneflete Tower +Waynelete +Wayneridge +Waynesburg +Waynesford +Wayneswood +Waynewood +Waynflete +Waypark +Wayre +Wayridge +Wayside +Wayside Inn +Wayson +Wayte +Waytemore +Wayvern +Wayville +Wayward +Waywood +Wayword +WayzAta +Wayzata +Wazir +Wd Prop. Off Pleasant +Weagle Farm +Weald +Weald Bridge +Weald Hall +Weald View +Wealden +Wealdstone +Wealdview +Weale +Wealtheasy +Weambie +Weant +Wear +Weardale +Wearden +Weardley +Weare +Wearimus +Wearish +Wearne +Wearside +Weart +Weasel +Weaste +Weather Hill +Weather Service +Weather Vane +Weatherbee +Weatherby +Weatherhill +Weatherington +Weatherley +Weatherly +Weathers +Weathersfield +Weatherstone +Weathervane +Weatherwood +Weaver +Weaver Lake +Weaver Lk +Weaverham +Weaverhead +Weavering +Weaverly +Weavers +Weavers Rock +Weaverthorpe +Weaving +Web +Webb +Webb Brook +Webb Canyon +Webb Hill +Webbacowitt +Webber +Webber Hills +Webbs +Webbscroft +Webcowet +Webdale +Weber +Weberfield +Webford +Webley +Webro +Webster +Webster Creek +Webster Valley +Websters +Weddell +Wedderburn +Weddle +Wedel +Wedeman +Wedemeyer +Weden +Wedge +Wedge Pond +Wedge Wood +Wedgedale +Wedgefield +Wedgemere +Wedgeport +Wedgewood +Wedgwood +Wedhurst +Wedmore +Wednesbury +Wedo +Wedow +Wee +Wee Burn +Weech +Weed +Weedington +Weedon +Weeds Wood +Weehawken +Weeks +Weel +Weelsby Park +Weemala +Weemalah +Weems +Weeney +Weep Birch +Weeping Cherry +Weeping Willow +Weepinggate +Weequahic +Weequahic Park +Weerona +Weeroona +Weetamoe +Weetawa +Weetawaa +Weeth +Weetman +Weeton +Weetucket +Weetwood +Weetwood Mill +Weetwood Park +Wegat +Wegg +Wegman +Wegworth +Wehlow +Wehner +Wehrheim +Wehrli +Wehrman +Weibel +Weible +Weich +Weichert +Weide +Weiden +Weider +Weidner +Weigands +Weigel +Weighhouse +Weighton +Weigum +Weikert +Weil +Weiland +Weill +Weimar +Weimer +Weinhold +Weinmann +Weinmanns +Weinschel +Weir +Weir Farm +Weir Hall +Weir Hill +Weir Pond +Weir River +Weirberly +Weirdale +Weirfield +Weirich +Weirs +Weirupp +Weirwood +Weis +Weisch +Weise +Weisiger +Weisman +Weiss +Weitz +Wekiva +Welaka +Welbeck +Welborn +Welbourne Woods +Welburn +Welbury +Welby +Welch +Welch Creek +Welch Hill +Welches +Welclose +Welcomb +Welcome +Welcome Home +Welcomes +Welcomeway +Welcroft +Weld +Weld Gilder +Weld Hill +Weldale +Welden +Welder +Welders +Weldin +Welding +Weldon +Weldwood +Welesley +Welfare +Welfield +Welfleet +Welford +Welgate +Welham +Welham Green +Welhouse +Well +Well Bank +Well End +Well Hall +Well Head +Well Hill +Well House +Well Penn +Well Place +Well Spring +Well hall +Wella +Wellacre +Welland +Wellbank +Wellbeck +Wellbrock +Wellbrook +Wellclose +Wellcome +Wellcroft +Welle +Weller +Wellerburn +Welles +Wellesbourne +Wellesey +Wellesley +Welley +Wellfield +Wellfit +Wellfleet +Wellford +Wellgarth +Wellgate +Wellham +Wellhouse +Welling +Welling High +Welling Way Sherwood +Wellingford +Wellingham +Wellings +Wellington +Wellington Branch +Wellington Bridge +Wellington Commons +Wellington Hill +Wellington Park +Wellington Ranch +Wellington Town +Wellington Woods +Wellingtonia +Wellman +Wellmeade +Wellmeadow +Wellner +Wells +Wells Fargo +Wells House +Wellsboro +Wellsey +Wellsley +Wellsmere +Wellstead +Wellstone +Wellswood +Wellumba +Wellwinch +Wellwood +Wellworth +Wellyhole +Wellyn +Welney +Welsford +Welsh +Welshire +Welshmans +Welshpool +Welsley +Welter +Weltham +Weltje +Weltmore +Welton +Welty +Welwyn +Welwyn By Pass +Welzel +Wembley +Wembley High +Wembley Hill +Wembley Park +Wembly +Wemborough +Wembrough +Wembury +Wemple +Wemyss +Wenberg +Wenborough +Wenc +Wendal +Wendall +Wendell +Wendell Holmes +Wendell Howard +Wendeller +Wenden +Wendhurst +Wendley +Wendling +Wendon +Wendover +Wendover Hills +Wendt +Wendy +Wendy Hope +Wendy Ridge +Wengate +Wengeo +Wenham +Wenholz +Wenk +Wenlock +Wenlocks +Wenlow +Wenman +Wenmore +Wenmoth +Wennamacher +Wennerberg +Wennergreen +Wennington +Wenona +Wenonah +Wensley +Wensleydale +Wensum +Wentbridge +Wente +Wenthorpe +Wentick +Wentland +Wentlock +Wenton +Wentwood +Wentworh +Wentworth +Wentworth Park +Wentz +Wentzell +Wenvoe +Wenwood +Wenz +Wenzel +Wenzell +Weona +Weonga +Werbe +Werch +Werden +Werimus +Werimus Brook +Weringa +Werline +Wermes +Wernbrook +Werndee +Werner +Werneth +Werneth Hall +Werneth Low +Werombi +Werona +Werrington +Wert +Werter +Werth +Wertz +Wesby +Wesch +Wesche +Wescoat +Wescoe Hill +Wescot +Wescott +Wescroft +Wesemann +Weser +Wesgate +Wesglen +Weshaven +Weslake +Wesleigh +Wesley +Wesley Commons +Wesley School +Wesley Tyler +Wesley White +Wesleyan +Wesmacott +Wesmere +Wesmere Lakes +Wesmond +Wesmur +Wespark +Wessagusett +Wessco +Wessen +Wessenden Head +Wessex +Wessington +Wesskum Wood +Wessling +Wesson +West +West A +West Access +West Acre +West Acres +West Acton +West Adams +West Agua Caliente +West Ahwanee +West Airmount +West Alameda +West Albert +West Aldea +West Alden +West Aldridge +West Algonquin +West Allendale +West Alley +West Alma +West Aloha +West American Canyon +West Anderson +West Angela +West Ann +West Anza +West Arbor +West Arbour +West Area +West Argand +West Arm +West Armour +West Arthington +West Ascot +West Ash +West Ashland +West Atherton +West Atlantic +West Augusta +West Avalon +West Avondale +West B +West Bacon +West Bagwell +West Balsam +West Baltimore +West Banbury +West Bank +West Bare Hill +West Barham +West Barn +West Barnes +West Barrett +West Barry +West Baxter +West Bay +West Beach +West Beacon +West Beamer +West Beech +West Beeches +West Bel Mar +West Belcher +West Belle Plaine +West Bellevue +West Bellflower +West Benjamin Holt +West Berlin +West Berry +West Berteau +West Bertona +West Birch +West Bird +West Bissell +West Blackhawk +West Blaine +West Blithedale +West Blue Lake +West Boardwalk +West Bolivar +West Bolton +West Bond +West Bonita +West Border +West Bostian +West Boston +West Botany +West Bothwell +West Boundary +West Bowers +West Boyd +West Boylston +West Bradstreet +West Branch +West Brannan Island +West Bridgewater +West Briggsmore +West Brighton +West Broad +West Broadmoor +West Broadway +West Brodview +West Brokaw +West Brook +West Brooke +West Brookline +West Brookwood +West Bruns +West Brush Hill +West Brygger +West Buchanan +West Burnham +West Burns Valley +West Burnside +West Busk +West Byron +West C +West C Meyer +West Cabrini +West Calaveras +West California +West Camden +West Camino +West Camino Diablo +West Campbell +West Campus +West Canton +West Canyon +West Capitol +West Carboy +West Cardinal +West Carey +West Caroline +West Carolyn +West Carr +West Carriage +West Carroll +West Casa Linda +West Castlewood +West Caswell +West Catino +West Cavendish +West Cavour +West Cedar +West Center +West Central +West Channel +West Chanslor +West Chapel +West Chardon +West Charleston +West Charlotte +West Cherry +West Chester +West Chestnut +West Chevin +West Chicago +West Chiles +West Chiltington +West Church +West Cintura +West Clark +West Clay +West Cliff +West Cloudy +West Clover +West Colfax +West Colony +West Comfort +West Commercial +West Common +West Comstock +West Concord +West Congress +West Cornelia +West Cortez +West Cotati +West Cottage +West Country Club +West Court +West Cove +West Covell +West Cramer +West Creek +West Cremona +West Crescent +West Crockett +West Cromwell +West Crook +West Crooked Hill +West Cross +West Cullom +West Curtis +West Cutting +West Cypress +West D +West Dalton +West Dam +West Dana +West Danbury +West Dane +West Dares Beach +West Day +West Dayton +West Dean +West Dedham +West Deerhaven +West Delano +West Dempster +West Dene +West Denver +West Deodara +West Derby +West Diamond +West Diane +West Diehl +West Dike +West Division +West Don Pedro +West Douglas +West Dover +West Downs +West Duane +West Dunaweal +West Dundee +West Dunne +West Dupont +West E +West Eagle +West Eagle Lake +West Eaglewood +West Earleigh Heights +West Eaton +West Eden +West Edith +West Edmonston +West Edmundson +West Eight Mile +West Eighth +West Eleventh +West Elkhorn +West Ella +West Elliot +West Elm +West Elmore +West Elverta +West Emerson +West End +West End Farm +West Englewood +West Entwistle +West Essex +West Estates +West Estudillo +West Etruria +West Euclid +West Eugenie +West Evelyn +West Evergreen +West Ewing +West F +West Fabyan +West Fairview +West Falkland +West Fargo +West Farm +West Farms +West Federal +West Fedora +West Ferdinand +West Ferndale +West Ferry +West Field +West Fifth +West First +West Flexford +West Flora +West Florentia +West Fordham +West Forest +West Forest Lake +West Forrest +West Fort +West Foster +West Fountain +West Fourth +West Foxwood +West Frances +West Franklin +West Frederick +West Fremont +West Front +West Fulkerth +West Fullerton +West Fulton +West Fyffe +West G +West Gaffery +West Galer +West Garfield +West Gate +West Geary +West Geneva +West George +West Gertrude +West Gibson +West Gilardy +West Gilbert +West Gish +West Glen +West Glencannon +West Glenmont +West Go Wanda +West Golf +West Golfview +West Gowe +West Grace +West Grand +West Grange +West Grant +West Grant Line +West Grantline +West Grayson +West Green +West Greenbriar +West Greenthorn +West Groton +West Grove +West Grover +West Gun Hill +West H +West Hacienda +West Halkin +West Halleck +West Ham +West Hamilton +West Hammer +West Hampton +West Hancock +West Hangar +West Hanningfield +West Harbor +West Harder +West Harding +West Harley +West Harney +West Harris +West Harrison +West Harting +West Harvard +West Hatch +West Haven +West Hawley +West Hawthorne +West Hayden Lake +West Hayes +West Hays +West Hazelton +West Head +West Health Sciences +West Hearn +West Heath +West Hedding +West Hendy +West Hensley +West Hidden Hills +West Higgins +West High +West Highland +West Hilderbrand +West Hill +West Hill Beaumont +West Hill Beaumont +West Hill Dam +West Hillgrove +West Hills +West Hillsdale +West Hillside +West Hilltop +West Hilton +West Hirsch +West Hoathly +West Holly +West Home +West Homestead +West Hookston +West Hornet +West Hospital +West House +West Houston +West Howard +West Howe +West Howell +West Hubbard +West Humboldt +West Hunter +West Hurd +West Hutchinson +West Hyde +West I +West Ike Crow +West Imola +West India +West India Dock +West Ingram +West Inman +West Interurban +West Iowa +West Iris +West Irving Park +West Island +West Ivy +West J +West Jack London +West Jackson +West Jacobs +West Jahant +West Jamaica +West James +West Jameson +West Jamestown +West Jasper +West Java +West Jefferson +West Jenness +West Jennifer +West Jersey +West Joan +West Joaquin +West John +West Joliet +West Juana +West Julian +West Juniper +West Kavanagh +West Keating +West Kelly +West Kelso +West Kendal +West Kendall +West Kenner +West Kenneth +West Kent +West Kentucky +West Kersey +West Keslinger +West Kettleman +West Keyes +West Keystone +West Kim +West Kingdon +West Kingsbridge +West Kingston School +West Kinzie +West Kirchhoff +West Klein +West Knickerbocker +West Knoll +West Kohler +West L +West LaSalle +West Lafayette +West Lagoon +West Lake +West Lake Kayak +West Lakeshore +West Lanark +West Lancaster County +West Land Park +West Lanram +West Larch +West Las Animas +West Las Palmas +West Las Positas +West Latimer +West Lauffer +West Laurel +West Lawn +West Lawrence +West Lawton +West Le Moyne +West Lea +West Leach +West Lehman +West Leland +West Leonard +West Leslie +West Lewis +West Liberty +West Lincoln +West Linden +West Linden Church +West Lindsay +West Link +West Linne +West Live Oak +West Livingston +West Livorna +West Lockeford +West Lockport +West Locust +West Lodge +West Lodi +West Logan +West Lomond +West London +West Longview +West Lonnquist +West Loop +West Lorenzen +West Loretta +West Los Felis +West Lost Lake +West Louise +West Lowell +West Lower Jones +West Lucas +West Lucerne +West Lupton +West Lynch +West Lynda +West Lynn +West Mac Donald +West MacArthur +West Macarthur +West Madill +West Madison +West Magnolia +West Main +West Mall +West Mallory +West Manchester +West Manor +West Mansell +West Maple +West March +West Mare +West Mariposa +West Maritime +West Market +West Marshall +West Martha +West Mather Field +West Matheson +West Mathews +West Maude +West Mayes +West Mayfair +West Mc Donald +West Mc Graw +West Mc Kenzie +West Mc Laren +West McKinley +West Meadow +West Meadows +West Medill +West Meeker +West Mel +West Melrose +West Mendocino +West Mercer +West Michigan +West Middle +West Middle School +West Middlefield +West Milgeo +West Mill +West Millbury +West Milton +West Miner +West Miramonte +West Mission +West Modoc +West Moffett Park +West Mohelumne +West Moltke +West Monee Manhattan +West Monroe +West Montara +West Monte Vista +West Monterey +West Montesanto +West Montgomery +West Monticello +West Montrose +West Moreland +West Morrison +West Morton +West Mosley +West Mount Diablo +West Mountain +West Mozart +West Muller +West Myrtle +West N +West Napa +West Naughton +West Nauraushaun +West Neal +West Nelson +West Neptune +West Nettle Tree +West Neugerbauer +West Nevin +West Newell +West Newlands +West Newport +West Newton +West Nickerson +West Ninth +West Noble +West North +West Norwalk +West Norwich +West Noyes +West Nursery +West Oak +West Oak Knoll +West Oakdale +West Oakland +West Oaks +West Oakton +West Oakwood +West Oberlin +West Ogden +West Ohio +West Olive +West Olivet +West Ontario +West Orange +West Orangeburg +West Orchard +West Oriskany +West Ott +West Ox +West Pacific +West Palatine +West Palmer +West Panorama +West Pardee +West Parish +West Park +West Parker +West Parr +West Partridge +West Passaic +West Patapsco +West Patrol +West Patterson +West Patterson Pass +West Pauling +West Payran +West Pearl +West Peder +West Peltier +West Penn +West Pensacola +West Peregrine +West Perimeter +West Pescadero +West Pickering +West Pickwick +West Pine +West Pine Haven +West Plain +West Platti +West Plumeria +West Plymouth +West Point +West Pointe +West Polk +West Pond +West Poplar +West Portola +West Poultry +West Prahser +West Prospect +West Prosper +West Pueblo +West Q +West Quay +West Quincy +West Railroad +West Raleigh +West Ramapo +West Ranch +West Rand +West Randolph +West Ravensbury +West Raye +West Red Line +West Redwood +West Reed +West Remington +West Renee +West Republican +West Revere +West Rianda +West Richmond +West Ridge +West Ridge View +West Rincon +West Rindge +West Ripon +West River +West River Grove +West Riverside +West Riverview +West Riviera +West Robbie +West Robert +West Robinhood +West Robles +West Rockport +West Rockwell +West Rode +West Roosevelt +West Rose +West Rosemary +West Rosseter +West Roxbury +West Roy +West Royd +West Ruby +West Ruby Hill +West Ruffner +West Rumble +West Running Brook +West Rusty +West Rutherford +West Saddle River +West Saint Andrews +West Saint Charles +West Saint James +West Saint John +West Salt Creek +West Sam +West San Carlos +West San Marco +West San Martin +West San Salvador +West San Tomas Aquino +West Sanches +West Sandralee +West Santa Clara +West Santa Fe +West Santa Inez +West Sargent +West Sausal +West Savona +West Scenic +West Schaumburg +West School +West Schulte +West Seaview +West Second +West Seegers +West Selby +West Selden +West Semple +West Service +West Seventh +West Sexton +West Shadowgraph +West Shell +West Sheridan +West Shore +West Shoreline +West Shoreview +West Shorewood +West Shure +West Side +West Sierra +West Sigourney +West Sigwalt +West Siino +West Silver Eagle +West Sixth +West Slaithwaite +West Smith +West Sneed +West Soda Rock +West Soffel +West Sonoma +West Sonora +West Sorrento +West South +West Southwood +West Spain +West Spring +West Springfield +West Spruce +West Squantum +West Sst +West Sugar +West Summit +West Sunnyoaks +West Sunnyside +West Sunset +West Surf +West Sutter +West Sutton +West Swain +West Tapley +West Taron +West Tasman +West Taylor +West Telegraph +West Temperence +West Temple +West Tennys +West Tennyson +West Tenter +West Tenth +West Terminous +West Terra Cotta +West Texas +West Thames +West Third +West Thomas +West Thomson +West Thorndale +West Thurman +West Ticonderoga +West Tilden +West Tokay +West Toleri +West Tower +West Tregallas +West Tremlett +West Tremont +West Trident +West Trimble +West Trinity +West Tulare +West Turner +West Twitchell Island +West U +West Undine +West Union +West University +West Upsala +West Vale +West Valley +West Van Buren +West Vanston +West Vein +West Verde +West Victoria +West View +West Vine Hill +West Virginia +West Vomac +West Wacker +West Wahington +West Walbrook +West Walker Landing +West Walnut +West Walnut Grove +West Warren +West Washington +West Water +West Watmaugh +West Waveland +West Weber +West Weddell +West Wellington +West Wendell +West West +West West la Frontage +West Wetmore +West Wheeler +West White Oak +West Whitmore +West Whittier +West Wilchard +West Wilderness Lakes +West William +West Willow +West Willow Creek +West Wilson +West Wimbolton +West Wind +West Winds +West Winesap +West Wing +West Winton +West Wise +West Wood +West Woodbridge +West Woods +West Worth +West Wright +West Wyandotte +West Wycombe +West Wycombe Hill +West Wyoming +West Yoke +West Yokuts +West Yorkshire +West Younger +West Zayante +West Zeering +West el Camino +West el Campo +West el Dorado +West el Rose +West la Chiquita +West la Loma +West la Mesa +Westacott +Westacre +Westacres +Westage +Westaire +Westall +Westamerica +Westanley +Westar +Westaway +Westbank +Westbard +Westbay +Westbeech +Westbend +Westbere +Westberg +Westberry +Westborder +Westboro +Westboro Hospital +Westborough +Westbourne +Westbourne Park +Westbourne Terrace +Westbrae +Westbranch +Westbreeze +Westbridge +Westbrook +Westbrook Mill +Westbrooke +Westbury +Westbury Hicksville +Westcamp +Westcar +Westchester +Westchester Park +Westchester View +Westcliff +Westcliff Park +Westcliffe +Westcombe +Westcombe Park +Westcote +Westcott +Westcourt +Westcroft +Westdale +Westdean +Westdel +Wested +Westedge +Westell +Westend +Westentry +Wester +Wester Hill +Westerbeke Ranch +Westerdale +Westerfield +Westergate +Westerham +Westerhill +Westerhoff +Westerholt +Westerland +Westerleigh +Westerly +Western +Western Elms +Western Farms Ranch +Western Gailes +Western Hills +Western Link +Western Mine +Western Oak +Western Park +Western Perimeter +Western Perimiter +Western Shore +Western View +Westers +Westerton +Westervelt +Westfarm +Westfax +Westferry +Westfield +Westfield Park +Westfield Sole +Westfields +Westford +Westgate +Westgate Hill +Westgate Valley +Westglen +Westglow +Westgrove +Westhall +Westhampton +Westhatch +Westhaven +Westhead +Westhelp +Westhill +Westhills +Westholme +Westhorpe +Westhoughton +Westhulme +Westhumble +Westhurst +Westin +Westinghouse +Westings +Westknoll +Westlake +Westland +Westland Farm +Westland Ranch +Westlands +Westlawn +Westlea +Westleigh +Westley +Westline +Westlock +Westlund +Westly Garden +Westmacott +Westmaher +Westman +Westmead +Westmeadow +Westmeath +Westmere +Westmill +Westminister +Westminster +Westminster Marsham +Westminster Bridge +Westminster Hill +Westmont +Westmoor +Westmoorland +Westmora +Westmore +Westmore Grove +Westmoreland +Westmorland +Westmount +Westnedge +Westoe +Weston +Weston Bay +Weston Green +Weston Hill +Weston Hills +Weston Ridge +Westonbirt +Westoning +Westons Mill +Westospect +Westover +Westow +Westpark +Westphalia +Westphall +Westpointe +Westpole +Westport +Westporter +Westray +Westree +Westridge +Westringa +Westringia +Westrow +Westshire +Westshore +Westside +Westside Park +Weststar +Westthorpe +Westup +Westvale +Westvalley +Westview +Westview Forest +Westville +Westward +Westwater Point +Westway +Westwell +Westwich +Westwind +Westwood +Westwood Center +Westwood Forest +Westwood Glen +Westwood Hills +Westwood Park +Westwoods +Westy +Wet Gate +Wetheral +Wetherall +Wetherbee +Wetherbees +Wetherburn +Wetherby +Wetherden +Wethered +Wetherell +Wetherfield +Wetherill +Wetherole +Wethersfield +Wethington +Wethral +Wetlands +Wetmore +Wetumpka +Wetzel +Wewak +Wewanna +Wewers +Wexford +Wexford Heights +Wexford Hts +Wexhall +Wexham +Wexham Park +Wey +Wey Gates +Weyand +Weyanoke +Weyant +Weybosset +Weybossett +Weybourne +Weybridge +Weybrook +Weyburn +Weycombe +Weydon +Weydon Farm +Weydon Hill +Weydown +Weyerhaeuser +Weyham +Weyhill +Weyland +Weylea +Weyman +Weymanor +Weymisset +Weymoth +Weymouth +Weymouth Hill +Weynton +Weyrauch +Weyraugh +Weyside +Weystone +Weythorne +Weywood +Whack House +Whadcoat +Whaddon +Whalans +Whale +Whale Cove +Whaleboat +Whalebone +Whalebone Gulch +Whalen +Whaleneck +Whaler +Whalers Cove +Whales +Whaleship +Whalewood +Whaley +Whaling +Whalley +Whalom +Whalon +Wham +Wham Bar +Whann +Wharf +Wharfdale +Wharfe +Wharfedale +Wharff +Wharfside +Wharncliffe +Wharton +Whatcom +Whateley +Whately +Whatley +Whatlington +Whatman +Whatmore +Whays +Wheat +Wheat Fall +Wheatash +Wheatberry +Wheatfield +Wheatgrain +Wheathampstead +Wheathelds +Wheathill +Wheatland +Wheatland Farms +Wheatlands +Wheatleigh +Wheatley +Wheatley Terrace +Wheaton +Wheaton Hills +Wheaton Oaks +Wheatridge +Wheatsheaf +Wheatstone +Wheatwheel +Whedbee +Wheedon +Wheel Farm +Wheel House +Wheelbarrow +Wheeldon +Wheeler +Wheeler Hills +Wheeler Knoll +Wheeler Peak +Wheeler Point +Wheelhouse +Wheeling +Wheelock +Wheelock Ridge +Wheelon +Wheelwright +Wheelwright Park +Wheelwrights +Whelan +Whelden +Wheldon +Wheler +Wheller +Whellock +Whempstead +Whenman +Whernside +Wherry +Wherwell +Whetmorhurst +Whetsted +Whetstone +Whetstone Hill +Whewell +Wheystone +Whibley +Whichcote +Whichita +Whidborne +Whidden +Whielden +Whiffle Tree +Whiffletree +Whig +Whigam +Whilaway +Whiley +Whiltshire +Whimberry +Whimbrel +Whimsey +Whinberry +Whinbush +Whincover +Whinfell +Whingate +Whingate Tong +Whingate Wortley +Whingate near Wortley +Whinneys +Whins +Whinslee +Whinyates +Whip +Whip Hill +Whip Owill +Whipoorwill +Whippany +Whippendell +Whippet +Whipple +Whipples +Whippletree +Whippoorwill +Whipporwill +Whipporwill Valley +Whipps Cross +Whipps Cross Wood +Whipsnade +Whirlaway +Whirley +Whiskey +Whiskey Bottom +Whiskey Creek +Whiskey Flat +Whiskey Hill +Whiskey Run +Whiskey Slough +Whiskin +Whisman Park +Whisper +Whisper Creek +Whisper Glen +Whisper Hill +Whisper Oaks +Whisper Willow +Whispering +Whispering Bay +Whispering Brook +Whispering Creek +Whispering Fields +Whispering Hill +Whispering Hills +Whispering Lake +Whispering Leaves +Whispering Oak +Whispering Oaks +Whispering Palms +Whispering Pine +Whispering Pines +Whispering River +Whispering Trails +Whispering Tree +Whispering Willow +Whispering Willows +Whispering Wind +Whispering Winds +Whispering Wood +Whispering Woods +Whisperwillow +Whisperwood +Whisperwood Glen +Whist +Whisterfield +Whistlepost +Whistler +Whistlerhill +Whistlers +Whistley Mill +Whistling Duck +Whistling Pine +Whistling Valley +Whiston +Whit +Whitacre +Whitaker +Whitaker Bluff +Whitall +Whitbarrow +Whitbourne +Whitbread +Whitbreads Farm +Whitburn +Whitby +Whitchurch +Whitclem +Whitcomb +White +White Acre +White Acres +White Ash +White Bagley +White Bank +White Barn +White Barns +White Beach +White Bear +White Beech +White Beeches +White Birch +White Bread +White Bridge +White Butts +White Carr +White Cedar +White Chapel +White Chappel +White Chimney +White Chimneys +White Church +White City +White Cliffs +White Cloud +White Conduit +White Cornus +White Cottage +White Creek +White Deer +White Dove +White Duck +White Eagle +White Elm +White Feather +White Fence +White Ferry +White Fir +White Flint +White Forge +White Fox +White Gate +White Gates +White Granite +White Ground +White Hall +White Hart +White Hart Greenford +White Haven +White Hawk +White Heart +White Heron +White Hill +White Hill Fire +White Holme +White Horn +White Horse +White House +White House Canyon +White Ibis +White Island +White Kennett +White Knights +White Knowle +White Laith +White Laithe +White Lee +White Leghorn Farm +White Lion +White Lyons +White Marsh Park +White Moss +White Mountain +White Oak +White Oak Ridge +White Oak Tree +White Oaks +White Owl +White Pine +White Pine Knoll +White Pines +White Plains +White Pond +White Post +White Ridge +White Rock +White Rock Spring +White Rose +White Rose Access +White Saddle +White Sands +White Space +White Spots +White Sulphur Spring +White Surf +White Swan +White Tail +White Tailed +White Thorn +White Water +White Willow +White Wing +Whiteacre +Whitebank +Whitebark +Whitebarn +Whitebarns +Whitebeam +Whitebick +Whitebirch +Whitebridge +Whitebrook +Whitebroom +Whitecap +Whitecarr +Whitechapel +Whitechapel High +Whitecliff +Whitecliffe +Whitecombe +Whitecote +Whitecroft +Whitecroft Heath +Whitecross +Whited +Whitedown +Whitefence +Whitefield +Whitefields +Whitefir +Whiteford +Whitefriars +Whitefur +Whitegate +Whitegates +Whitehall +Whitehall Beach +Whitehall Farm +Whitehall Park +Whitehall Plains +Whitehave +Whitehaven +Whitehead +Whiteheads +Whiteheath +Whitehill +Whitehills +Whiteholm +Whiteholme +Whitehorse +Whitehough Head +Whitehouse +Whitehurst +Whitekirk +Whiteknights +Whitelake +Whiteland +Whitelands +Whitelaw +Whitelawn +Whitelea +Whiteleaf +Whitelegg +Whitelegge +Whiteley +Whiteley Croft +Whitelock +Whitelow +Whitely +Whiteman +Whitemarsh +Whitemore +Whitenack +Whiteoak +Whiteoaks +Whitepine +Whitepit +Whitepost +Whitepost Wood +Whiterim +Whiteriver +Whiterock +Whiterose +Whites +Whites Cove +Whites Creek +Whites Ferry +Whites Landing +Whites Pond +Whites Ridge +Whitesail +Whitesand +Whitesands +Whitesell +Whiteside +Whitesides +Whitesmead +Whitesmith +Whitespruce +Whitestile +Whitestone +Whitesurf +Whitetail +Whitethorn +Whitethorne +Whitetire +Whitewall +Whitewater +Whiteway +Whitewaybottom +Whitewebbs +Whitewell +Whitewillow +Whitewood +Whitfeld +Whitfield +Whitfield Chapel +Whitford +Whitgift +Whitham +Whithouse +Whitin +Whiting +Whiting Beach +Whitingham +Whitings +Whitington +Whitins +Whitkirk +Whitla +Whitlam +Whitland +Whitlars +Whitlatch +Whitlers Creek +Whitley +Whitley Park +Whitley Wood +Whitling +Whitlock +Whitlowe +Whitman +Whitman Ridge +Whitmarsh +Whitmer +Whitmoor +Whitmoor Vale +Whitmor +Whitmore +Whitmore Brook +Whitmore Vale +Whitnall +Whitnell +Whitney +Whitney Pond +Whitney Tavern +Whitneys Landing +Whiton +Whitridge +Whits +Whits End +Whitsbury +Whitsell +Whitsett +Whitson +Whitstable +Whitstone +Whitta +Whittaker +Whittall +Whitteck +Whittell +Whittemore +Whitten +Whittham +Whittier +Whitting +Whittingham +Whittingstall +Whittington +Whittle +Whittles +Whittlesey +Whittman +Whittney +Whittock +Whitton +Whitton Dene Whitton +Whitton Dene Whitton +Whitton Gladstone +Whitton Lincoln +Whitton Manor +Whittredge +Whitwell +Whitwood +Whitwood Common +Whitworth +Whiznan +WhizzGo Tariff +Whli +Wholfords +Whomerley +Whomsoever +Whoolden +Whopshott +Whorlong +Whorlton +Whortleberry +Whowell +Why Worry +Whyman +Whynstones +Whyse +Whyte +Whyte Park +Whytecliff +Whyteladyes +Whyteleaf +Whyteleafe +Whyteville +Whytingham +Wiak +Wianamatta +Wianno +Wibird +Wiblen +Wicasse +Wichard +Wichbrook +Wichern +Wichett +Wichita +Wichitaw +Wichkam +Wichman +Wick +Wick Beech +Wick Farm +Wick Hill +Wicke +Wickell +Wicken +Wickenby +Wickenden +Wickens +Wickentree +Wicker +Wicker Park +Wickersham +Wickersley +Wicket +Wickett +Wickford +Wickham +Wickham Bishops +Wickhurst +Wicklands +Wickley +Wickliffe +Wicklow +Wicklund +Wicks +Wickshire +Wickson +Wickstead +Wickwood +Wicomico +Wicomoco +Widberg +Widbrook +Widcombe +Widden +Widdenham +Widdicombe +Widdin +Widdington +Widdop +Wide +Widebranch +Widecroft +Widegate +Widemere +Wideview +Widewater +Widford +Widgeon +Widger +Widget +Widgiewa +Widicombe +Widley +Widmer +Widmere +Widmore +Widmore Lodge +Widnell +Widnes +Widows Mite +Wieboldt +Wiebusch +Wieczorkowski +Wiedemann +Wiedner +Wiegman +Wiehle +Wieland +Wield +Wierimus +Wiers +Wierton +Wiesbrock +Wiesbrook +Wiese +Wieuca +Wigan +Wigans +Wigborough +Wigens +Wigeon +Wiget +Wiggenhall +Wiggie +Wiggin +Wiggington +Wiggins +Wigginton +Wiggles +Wigglesworth +Wiggs +Wight +Wight Farm +Wightman +Wigle +Wigley +Wigley Bush +Wigmore +Wigram +Wigsby +Wigsey +Wigshaw +Wigston +Wigton +Wigwam +Wigwam Hill +Wihtred +Wike +Wike Ridge +Wikiup +Wikiup Meadows +Wilandra +Wilaneta +Wilart +Wilbanks +Wilbeam +Wilber +Wilberforce +Wilbert +Wilberta +Wilbr +Wilbraham +Wilbrandt +Wilbung +Wilbur +Wilburdale +Wilburn +Wilburne +Wilbury +Wilbury Hills +Wilby +Wilcarra +Wilco +Wilcock +Wilcot +Wilcott +Wilcox +Wilcoxen +Wilcoxson +Wilcutt +Wild +Wild Acre +Wild Acres +Wild Ash +Wild Bees +Wild Briar +Wild Canyon +Wild Cherry +Wild Cranberry +Wild Creek +Wild Duck +Wild Fire +Wild Flower +Wild Flower Park +Wild Forest +Wild Game +Wild Ginger +Wild Goose +Wild Hedge +Wild Holly +Wild Horse +Wild Horse Valley +Wild Hunt +Wild Indigo +Wild Iris +Wild Ivy +Wild Lilac +Wild Meadow +Wild Meadows +Wild Oak +Wild Olive +Wild Plum +Wild Prairie +Wild River +Wild Rose +Wild Spruce +Wild Timothy +Wild Turkey +Wilda +Wildara +Wildberry +Wildbriar +Wildbrook +Wildcat +Wildcat Canyon +Wildcliff +Wildcrest +Wildcroft +Wilde +Wilde Willow +Wilden +Wilden Park +Wilder +Wilder Point +Wilderfield +Wilderhold +Wildermuth +Wilderness +Wilderness Run +Wilderness Walk +Wildernesse +Wilderswood +Wilderton +Wilderwick +Wilderwood +Wildes +Wildewood +Wildey +Wildfell +Wildfire +Wildflower +Wildgoose +Wildhawk +Wildhawk West +Wildhedge +Wildhill +Wildhorse +Wildhouse +Wildhurst +Wilding +Wildish +Wildley +Wildlife +Wildlife Loop +Wildman +Wildmeadow +Wildmere +Wildmoor +Wildoak +Wildomar +Wildon +Wildpark +Wildpines +Wildridge +Wildridings +Wildrose +Wildrose Springs +Wilds +Wildspring +Wildthorn +Wildview +Wildwing +Wildwood +Wildwood Bay +Wildwood Beach +Wildwood Mountain +Wileden +Wilelinor +Wiles +Wiles Farm +Wiley +Wileys +Wilfield +Wilford +Wilfred +Wilga +Wilgarth +Wilgate Green +Wilgus +Wilhaggin +Wilhaggin Park +Wilhelm +Wilhelmi +Wilhelmina +Wilhemina +Wilhern +Wilk +Wilke +Wilken +Wilkening +Wilkens +Wilker +Wilkerson +Wilkes +Wilkes Barre +Wilkesboro +Wilkie +Wilkin +Wilkins +Wilkins Glen +Wilkinson +Wilks +Wilksch +Wilkshire +Will +Will Cook +Will Merry +Will Rogers +Will Sawyer +Will Scarlet +Will Scarlett +Will Wool +Willa +Willaburra +Willada +Willamette +Willan +Willand +Willandale +Willandra +Willans +Willara +Willarch +Willard +Willard Dunham +Willard Grant +Willard Point +Willarong +Willaroo +Willawa +Willben +Willborough +Willbutts +Willcott +Willcrest +Wille +Willee +Willement +Willems +Willen +Willen Field +Willenhall +Willens +Willerby +Willeroo +Willers +Willersley +Willerval +Willes +Willesden +Willester +Willet +Willets +Willets Point +Willett +Willett Pond +Willetts +Willetts Crossing +Willever +Willey +Willey Broom +Willeys +Willfox +William +William Allen +William B Long Jr +William B Terry +William Beanes +William Berry +William Bird +William Booth +William Campbell +William Carr +William Chambers Jr +William Cunningham +William D Bliss +William Day +William Delameter +William Downes +William Edgar +William Edward +William Evans +William Fairfield +William Foster +William G +William Gooding +William Harrington +William Henry +William Howell +William IV +William Joseph +William Kelley +William Kirk +William Lake Shore +William Mahoney +William Mannix +William May Park +William Mosby +William Moss +William Penn +William Pishner Jr +William Reed +William Rigby +William Shakespeare +William T Morrissey +William Tanner +William Tell +William Terry +William Wade +William Ward +William Wood +Williamo +Williams +Williams Port +Williams Wood +Williams Woods +Williamsberg +Williamsborough +Williamsbridge +Williamsburg +Williamsburgh +Williamson +Williamson Ranch +Williamsport +Williamstown +Willian +Willian Church +Williar +Williard +Willick +Willie +Willie B Kennedy +Willie Johnson +Willie Johnsone +Williford +Willig +Willigan +Willingale +Willingdon +Willington +Willis +Willis Holden +Willis Lake +Willis Miller +Willison +Williston +Williton +Willits +Willius +Willmar +Willmohr +Willmonton +Willmot +Willmott +Willo Mar +Willobrook +Willoby +Willock +Willora +Willotta +Willougby +Willoughby +Willoughby Newton +Willoughby Park +Willoughby Point +Willow +Willow Bank +Willow Bay +Willow Bend +Willow Bottom +Willow Bridge +Willow Brook +Willow Camp Fire +Willow Circle +Willow Creek +Willow Crescent +Willow Cresent +Willow Crest +Willow Dale +Willow Edge +Willow Falls +Willow Farm +Willow Forge +Willow Gate +Willow Glade +Willow Glen +Willow Grove +Willow Hill +Willow Hills +Willow Knoll +Willow Lake +Willow Lakes +Willow Leaf +Willow Oak +Willow Oaks +Willow Oaks Corporate +Willow Park +Willow Pass +Willow Point +Willow Pond +Willow Ridge +Willow River +Willow Run +Willow Shore +Willow Spring +Willow Springs +Willow Springs School +Willow Switch +Willow Terrace +Willow Tree +Willow Valley +Willow View +Willow Way Long +Willow Well +Willow West +Willow Wood +Willow Woods +Willowan +Willoway +Willowbank +Willowbend +Willowbrae +Willowbridge +Willowbrook +Willowcreek +Willowcrest +Willowcroft +Willowdale +Willowdean +Willowdene +Willowfield +Willowgate +Willowgrove +Willowhaven +Willowhayne +Willowhill +Willowhurst +Willowick +Willowie +Willowleaf +Willowmead +Willowmeade +Willowmere +Willowmere Woods +Willowmont +Willowood +Willowpark +Willowpond +Willowridge +Willows +Willows Edge +Willowside +Willowside Ranch +Willowthree +Willowtree +Willowview +Willowwick +Willowwood +Willrush +Willry +Wills +Willshaw +Willshire +Willson +Willston +Willunga +Willvail +Willy +Willyama +Willys +Wilma +Wilmac +Wilman +Wilmar +Wilmarth +Wilmcote +Wilmer +Wilmerding +Wilmerhatch +Wilmett +Wilmette +Wilmington +Wilmington Court +Wilmont +Wilmor +Wilmore +Wilmot +Wilmoth +Wilmott +Wilmount +Wilms +Wilmslow +Wilmslow Old +Wilmur +Wilogreen +Wilona +Wiloughby +Wilpshire +Wilrose +Wilroy +Wilryan +Wilscot +Wilsey +Wilsham +Wilshaw +Wilshere +Wilshire +Wilsman +Wilsmere +Wilsom +Wilson +Wilson Bridge +Wilson Farm +Wilson Fold +Wilson Hall +Wilson Hill +Wilson Park +Wilson Pond +Wilson Ridge +Wilson Valley +Wilson Wood +Wilson Woods Park +Wilsondale +Wilsons +Wilsons Creek +Wilsons Grove +Wilsonville +Wilstone +Wilstrode +Wilt +Wilton +Wilton Croft +Wilton Oaks +Wilton South +Wiltonshire +Wiltsey +Wiltshire +Wilwade +Wilward +Wilwick +Wilwood +Wilzette +Wiman +Wimbart +Wimberry Hill +Wimbledon +Wimbledon Park +Wimblehurst +Wimbleton +Wimbley +Wimblington +Wimborne +Wimbourne +Wimland +Wimlands +Wimmer +Wimple +Wimpole +Wimpory +Wims +Wimsatt +Wimslow +Win Haven +Winafred +Winamac +Winans +Winant +Winberie +Winbolt +Winborne +Winborough +Winbourne +Winburn +Winburndale +Wincanton +Winch +Winch Park +Wincham +Winchat +Winchbottom +Winchcombe +Winchell +Winchelsea +Winchendon +Winchester +Winchester Beach +Winchfield +Winchgrove +Winchmore +Winchmore Hill +Wincliff +Winco +Wincoat +Wincoma +Wincombe +Winconsin +Wincott +Wincrest +Wincroft +Wincrofts +Wind +Wind Creek +Wind Crest +Wind Flower +Wind Hill +Wind Meadow +Wind Mill +Wind Ridge +Wind River +Wind Sock +Wind Song +Windabout +Windamere +Windarra +Windbeam +Windblown +Windborough +Windbreak +Windbridge +Windbrook +Windbrooke +Windchime +Windcliff +Windcloud +Windcrest +Windeler +Windell +Windemere +Winder +Windermere +Winders +Windett +Windett Ridge +Windette +Windeyer +Windfall +Windfeldt +Windfield +Windflower +Windgate +Windham +Windham Cove +Windhaven +Windhill +Windhill Old +Windhorn +Windimer +Winding +Winding Bluff +Winding Branch +Winding Brook +Winding Brooke +Winding Canyon +Winding Creek +Winding Farm +Winding Glenn +Winding Hill +Winding Hills +Winding Lakes +Winding Meadow +Winding Oak +Winding Ridge +Winding River +Winding Rose +Winding Run +Winding Trail +Winding Way +Winding Waye +Winding Wood +Winding Woods +Windjammer +Windkist Farm +Windlass +Windle +Windleaf +Windlehurst +Windlesham +Windley +Windmeadows +Windmere +Windmill +Windmill Canyon +Windmill Cove +Windmill Farms +Windmill Field +Windmill Hill +Windmill Park +Windmill Quay +Windolf +Windom +Windong Wood +Windorra +Windouree +Windover +Windplay +Windrew +Windridge +Windrift +Windrock +Windrose +Windrow +Windrunner +Windrush +Windrush Farm +Windsail +Windscale +Windshire +Windsmere Hill +Windsock +Windsong +Windsong South +Windsor +Windsor Bridge Brocas +Windsor Brook +Windsor Court +Windsor Farm +Windsor Gate +Windsor Hill +Windsor Hills +Windsor Knoll +Windsor Lake +Windsor Manor +Windsor Palms +Windsor Park +Windsor Ridge +Windsor River +Windsor View +Windsor Village +Windspoint +Windspun +Windstar +Windstone +Windstream +Windswept +Windtree +Windus +Windward +Windward Key +Windwhisper +Windwood +Windwood Farms +Windy +Windy Bank +Windy Cove +Windy Creek +Windy Field +Windy Harbour +Windy Hill +Windy Hollow +Windy Knoll +Windy Knolls +Windy Oak +Windy Oaks +Windy Pine +Windy Point +Windy Prairie +Windy Ridge +Windy River +Windy Springs +Windy Valley +Windybush +Windyhill +Wine +Wine Barrel +Wine Country +Wine Creek +Wine Garden +Wine Master +Wineberry +Winedale +Wineham +Winer +Winery +Wines +Winesap +Winewood +Winexburg Manor +Winfal +Winfell +Winfield +Winfield Scott +Winfields +Winfisky +Winford +Winforton +Winfred +Winfrith +Wing +Wing Park +Wing Pointe +Wingara +Wingard +Wingate +Wingates +Winged Cove +Winged Foot +Wingello +Winger +Wingfield +Wingflash +Wingfoot +Wingford +Wingham +Wingle Tye +Wingletye +Wingmore +Wingpointe +Wingra +Wingrave +Wingrove +Wings +Wingsong +Wingstem +Winham +Winiebago +Winifred +Winje +Winkel +Winkelman +Winkers +Winkfield +Winkin +Winkle +Winkle Point +Winklebleck +Winkler +Winkley +Winkurra +Winkworth +Winlock +Winmarith +Winmeade +Winmeyer +Winmill +Winmoor +Winn +Winn Common +Winn Moor +Winn Valley +Winnaleah +Winne +Winnebago +Winnecomac +Winneconnett +Winnegance +Winnemac +Winnemay +Winnemere +Winnepeg +Winnepog +Winnepurkit +Winners +Winnetaska +Winnetka +Winnetka Heights +Winnetka Hts +Winnetou +Winnett +Winnetuxett +Winnie +Winnifred +Winning +Winnington +Winnington Old +Winnipeg +Winnisemette +Winnisimmet +Winnmere +Winnock +Winnow Down +Winnpenny +Winns +Winnsboro +Winnunga +Winoka +Winona +Winonah +Winpark +Winrock +Winrose +Winsby +Winscar +Winscombe +Winsdale +Winsdon +Winser +Winsfield +Winsford +Winshaw +Winship +Winside +Winskill +Winsland +Winslea +Winsley +Winslow +Winslow Cemetery +Winslow Farm +Winslowe +Winsmoor +Winsom +Winsome +Winsor +Winspear +Winstanley +Winstead +Winstead Manor +Winsted +Winsten +Winster +Winston +Winston Forest +Winstone Scott +Winstre +Winstree +Winta +Winten +Winter +Winter Brook +Winter Corn +Winter Creek +Winter Crest +Winter Garden +Winter Haven +Winter Hey +Winter Hill +Winter Hunt +Winter Island +Winter Laurel +Winter Park +Winter Sun +Winter Thicket +Winter View +Winter Walk +Winter Willow +Winterberry +Winterborne +Winterbottom +Winterbourne +Winterbrook +Wintercorn +Wintercress +Winterdown +Winterfield +Winterford +Wintergate +Wintergreen +Wintergrove +Wintergull +Winterhaven +Wintermans +Winterpit +Winterrun +Winters +Winterscroft +Wintersells +Winterset +Wintershutt +Winterslow +Winterson +Winterspoon +Winterstein +Winterstoke +Winterswyk +Winterthur +Winterton +Winterway +Winterwell +Winterwind +Winterwood +Winthorpe +Winthrop +Winthrop New +Winthrop Shore +Winthrope +Wintney +Winton +Wintree +Wintun +Winward +Winwick Link +Winwood +Winyah +Wiobata +Wire +Wire Mill +Wirega +Wireless +Wireton +Wirksmoor +Wirling +Wirrabara +Wirralee +Wirralie +Wirraway +Wirreanda +Wirrinda +Wirruna +Wirt +Wirth +Wirthman +Wirthmore +Wirtz +Wisbeach +Wisbech +Wisbeck +Wisborough +Wiscasset +Wisconsin +Wisden +Wisdom +Wise +Wisely Sq +Wiseman +Wiser +Wises +Wiseton +Wish +Wishanger +Wishart +Wishbone +Wishing +Wishing Rock +Wishing Well +Wishkah +Wishmoor +Wishon +Wisley +Wisner +Wisnev +Wisnom +Wisp +Wispering Hollow +Wiss +Wissahican +Wisse +Wisseman +Wissenden +Wisser +Wissing +Wissioming +Wissman +Wistar +Wistaria +Wisteria +Wiston +Wistow +Wiswall +Witan +Witanhurst +Witby +Witch +Witch Hill +Witchcraft +Witcher +Witches +Witcom +Witek +Witham +Withan +Withenfield +Withens +Witherall +Witherbee +Witherenden +Witheridge +Witherington +Witherly +Withers +Withers Harbor +Withersed +Witherspoon +Witherwin +Withey +Withey Heights +Witheygate +Withies +Withington +Withinlee +Withins +Withins Hall +Withnell +Withorn +Withy +Withyfold +Withyham +Withypool +Witley +Witmer +Witney +Wits End +Witt +Wittama +Witte +Wittem +Wittenberg +Wittenbury +Wittenham +Witter +Wittersham +Wittes +Witthill +Witthoff +Wittington +Wittmead +Witton +Witty +Wituwamat +Wium +Wivelrod +Wivelsfield +Wivenhoe +Wiverton +Wix +Wixon +Wizard +Wm Clifford +Wo Udall +Wobbly +Woburn +Woburn Abbey +Wodecroft +Wodehouse +Woden +Woehrle +Woelfe +Woerd +Wofford +Wogshead +Wohler +Wohseepee +Woids +Woild Goose +Wokindon +Woking +Wokingham +Wokomis +Wolbach +Wolcott +Wolcutt +Woldham +Woldhuis +Woldingham +Woldingham School +Woldzienski +Wolesey +Wolf +Wolf Creek +Wolf Crossing +Wolf Den +Wolf Hill +Wolf Pond +Wolf Ridge +Wolf River +Wolf Rock +Wolf Run +Wolf Run Hills +Wolf Run Shoals +Wolf Valley +Wolfberry +Wolfe +Wolfe Canyon +Wolfe Hill +Wolfeboro +Wolfenden +Wolff +Wolfhill +Wolfington +Wolfle +Wolford +Wolfs +Wolfskill +Wolfson +Wolftrap +Wolftrap Run +Wolftree +Wolger +Wolkoff +Wolkow +Wollam +Wollaston +Wolley +Wolli +Wolli Creek +Wollitzer +Wollmington +Wollombi +Wollondilly +Wollongbar +Wollongong +Wollun +Wollybutt +Wolombi +Wolomolopoag +Wolpers +Wolseley +Wolsey +Wolsfeld +Wolski +Wolsten +Wolstenholme +Wolters +Wolton +Wolumba +Wolvens +Wolver Hollow +Wolvercote +Wolverine +Wolverns +Wolverton +Wolves +Womack +Womantam +Womantum +Wombat +Wombeyan +Wombidgee +Womboyne +Womerah +Womersley +Wompanoag +Wompatuck +Wonder +Wonderama +Wondercolor +Wonderland +Wong +Wonga +Wonga Wonga +Wongala +Wongalee +Wonham +Woniora +Wonston +Wontford +Wontner +Woobly +Wooburn Common +Wood +Wood Acers +Wood Acres +Wood Bridge +Wood Brook +Wood Court +Wood Creek +Wood Duck +Wood Ember +Wood End +Wood End Green +Wood Farm +Wood Glade +Wood Glen +Wood Green +Wood Hampton +Wood Haven +Wood Hill +Wood Hollow +Wood Home +Wood House +Wood Island +Wood Knoll +Wood Lake +Wood Lark +Wood Lily +Wood Lodge +Wood Lot Trail +Wood Mar +Wood Mist +Wood Oak +Wood Park +Wood Pointe +Wood Ranch +Wood Ridge +Wood Rock +Wood Sage +Wood Side +Wood Sorrel +Wood Sorrels +Wood Spice +Wood Thrush +Wood Top +Wood Valley +Wood View +Woodacre +Woodacres +Woodale +Woodall +Woodands +Woodard +Woodbank +Woodbanke +Woodbastwick +Woodbent +Woodberry +Woodbine +Woodbole +Woodboro +Woodborough +Woodbourne +Woodbrae +Woodbray +Woodbriar +Woodbridge +Woodbridge Centre +Woodbrier +Woodbrook +Woodbrooke +Woodbrrok +Woodburn +Woodburn Village +Woodbury +Woodbury Farms +Woodbury Lakes +Woodbury Park +Woodby +Woodchase +Woodchester +Woodchuck +Woodchuck Hill +Woodchuck Hollow +Woodcleft +Woodcliff +Woodcliff Lake +Woodcliffe +Woodclyffe +Woodcock +Woodcock Dell +Woodcote +Woodcote Green +Woodcote Grove +Woodcote Park +Woodcourt +Woodcox +Woodcreek +Woodcrest +Woodcroft +Woodcut +Woodcutter +Woodcutters +Wooddale +Woodduck +Wooded +Wooded Branch +Wooded Brook +Wooded Creek +Wooded Glen +Wooded Hills +Wooded Lake +Wooded Path +Wooded Ridge +Wooded Run +Wooded Trace +Wooded View +Woodedge +Woodelf +Wooden +Wooden Bridge +Wooden Hawk +Wooden Path +Wooden Spoke +Wooden Valley +Wooden Valley Cross +Woodend +Woodewind +Woodfair +Woodfall +Woodfarm +Woodfern +Woodfield +Woodfield Estates +Woodfield Park +Woodfield School +Woodfold +Woodford +Woodford New +Woodforest +Woodgarth +Woodgate +Woodgate Hill +Woodger +Woodglade +Woodglen +Woodglenn +Woodgrange +Woodgreen +Woodgrove +Woodhail +Woodhall +Woodhall Park +Woodhalt +Woodham +Woodham Park +Woodhams +Woodhatch +Woodhaven +Woodhayes +Woodhead +Woodhey +Woodheys +Woodhill +Woodhill Common +Woodhollow +Woodholm +Woodhouse +Woodhouse Hill +Woodhue +Woodhull +Woodhurst +Wooding +Woodington +Woodinville +Woodiris +Woodkirk +Woodknoll +Woodlake +Woodlake Hills +Woodland +Woodland Beach +Woodland Crossing +Woodland Estates +Woodland Falls +Woodland Forest +Woodland Heights +Woodland Hills +Woodland Lake +Woodland Meadow +Woodland Park +Woodland Pond +Woodland Run +Woodland Valley +Woodland Way Abbey +Woodlands +Woodlands Hill +Woodlands Park +Woodlane +Woodlark +Woodlawn +Woodlawn East +Woodlawn Gable +Woodlawn Green +Woodlawn West +Woodlawnd +Woodlea +Woodlea Mill +Woodleaf +Woodledge +Woodlee +Woodleigh +Woodlet +Woodley +Woodley Woods +Woodliffe +Woodloch +Woodlock +Woodloo +Woodlore +Woodlot +Woodlow +Woodlyn +Woodlynn +Woodman +Woodmanhurst +Woodmans +Woodmansterne +Woodmar +Woodmark +Woodmeadow +Woodmere +Woodmill +Woodminister +Woodminster +Woodmire +Woodmont +Woodmoor +Woodmore +Woodmore Oaks +Woodnook +Woodnote +Woodoak +Woodoaks +Woodpark +Woodpath +Woodpecker +Woodpecker Ridge +Woodpiece +Woodplace +Woodpoint +Woodpond +Woodrail +Woodranch +Woodredon Farm +Woodreeve +Woodrest +Woodridge +Woodridings +Woodriff +Woodriffe +Woodring +Woodrock +Woodroe +Woodrolfe +Woodrolfe Farm +Woodrose +Woodrow +Woodrow Wilson +Woodroyd +Woodruff +Woodrush +Woods +Woods Center +Woods Chapel +Woods Cove +Woods Creek +Woods Edge +Woods End +Woods Hill +Woods Hole +Woods Landing +Woods Moor +Woods On Mass. +Woods Pond +Woods Wharf +Woods of Arden +Woodsboro +Woodsbury +Woodscape +Woodsdale +Woodseats +Woodseer +Woodsend +Woodsend Crescent +Woodshire +Woodshole +Woodside +Woodside Court +Woodside Grange +Woodside Meadows +Woodside Park +Woodside Tavern Low +Woodside View +Woodsley +Woodsman +Woodsmoor +Woodsome +Woodson +Woodsong +Woodstock +Woodston +Woodstone +Woodstown +Woodstream +Woodsum +Woodsview +Woodsworth +Woodthorpe +Woodthrush +Woodtree +Woodvale +Woodvale Pond +Woodvalley +Woodview +Woodview Terrace +Woodvill +Woodville +Woodward +Woodwarde +Woodwardia +Woodwards +Woodway +Woodway Park +Woodwaye +Woodwell +Woodwild +Woodwillow +Woodwind +Woodwinds +Woodwise +Woodworth +Woodwren +Woody +Woody Creek +Woody Island +Woody Wolfe +Woodyard +Woodycrest +Wool +Wool Creek +Woolacombe +Woolaroc +Woolbeding +Woolborough +Woolbrook +Woolcott +Wooldeys +Wooldridge +Wooldrige +Wooler +Wooley +Wooleys +Wooleytown +Woolf +Woolfenden +Woolfield +Woolford +Woolgen Park +Woolgoolga +Woolgrove +Woolifers +Woolington +Woollands +Woollard +Woollaston +Woollett +Woolley +Woolley Bridge +Woolley Mill +Woollin +Woolman +Woolmead +Woolmer +Woolmer Hill +Woolmers +Woolmongers +Woolmore +Woolneigh +Woolner +Woolpack +Woolpert +Woolreeds +Woolsey +Woolson +Woolsthorpe +Woolston +Woolstone +Woolsy +Woolwash +Woolwich +Woolwich Burrage +Woolwich Hare +Woolwich Church +Woolwich New +Woolworth +Woomera +Woongarra +Woonsocket Hill +Woonsockett +Woorail +Woorang +Woorarra +Woosehill +Woosley +Wooster +Wooten +Wooton +Wootten +Woottens +Wootton +Woowich +Worbeck +Worbler +Worcester +Worcester County Jail +Worcester Park +Worcester Providence +Worcesters +Worchester +Worden +Wordoo +Wordsworth +Wordswotrh +Wordworth +Worfield +Workesleigh +Workhouse +Workman +Works +Worland +World +World Trade Center +Worldgate +Worlds End +Worley +Worleys +Worlidge +Worlingham +Wormald +Worman +Wormdale +Worminghall +Wormley +Wormstead +Wormwood +Worn Springs Fire +Wornington +Woronoco +Woronora +Woronora Dam +Woronzow +Woropieff +Worple +Worplesdon +Worral +Worrall +Worrel +Worrell +Worrin +Worrobil +Worsefold +Worsel +Worsester +Worsham +Worship +Worslade +Worsley +Worsley Bridge +Worsopp +Worsted +Worster +Worston +Wortendyke +Worth +Worth Park +Wortham +Worthen +Worthern +Worthing +Worthington +Worthley +Worthmor +Worting +Wortley +Wortley Moor +Wortman +Worton +Worts Hill +Wortylko +Worwood +Wostbrock +Wote +Wotton +Wotton Green Sandway +Wouldham +Wounded Knee +Woverley +Wragby +Wragg Canyon +Wraight +Wrangell +Wrangleden +Wrangler +Wrangling +Wrangthorn +Wrath Fold +Wray +Wray Common +Wray Field +Wray Park +Wrayfield +Wraylands +Wraysbury +Wrecclesham +Wreden +Wrekin +Wren +Wren Hollow +Wren Nest +Wrenbeck +Wrenbrook +Wrenbury +Wrench +Wrendale +Wrenfield +Wrenn +Wrenn House +Wrens +Wrenshot +Wrentham +Wrenthorpe +Wrentmore +Wrenwood +Wrexhall +Wrexham +Wricklemarsh +Wride +Wrigglesworth +Wright +Wright Brothers +Wrighton +Wrights +Wrights Endeavor +Wrights Hollow +Wrights Meadow +Wrightsbridge +Wrightson +Wrightwood +Wrigley +Wrin +Writtle +Wrotham +Wrotham Hill +Wrotham Water +Wrottesley +Wroughton +Wroxeter +Wroxham +Wroxton +Wrythe +Wssc Treatment Plant +Wudgong +Wuester +Wulff +Wulfstan +Wunaquit +Wunda +Wunderlich +Wunulla +Wurley +Wurr +Wuthering Heights +Wyaconda +Wyadra +Wyagara +Wyagdon +Wyalong +Wyanbah +Wyandanch +Wyandemere +Wyandot +Wyandotte +Wyanet +Wyanga +Wyanoke +Wyargine +Wyatt +Wyatt Park +Wyatts +Wyatts Green +Wyatts Ridge +Wyatville +Wybalena +Wybeck Valley +Wyberlye +Wybersley +Wybournes +Wyburn +Wych +Wych Elm +Wych Hill +Wychbury +Wychelm +Wychewood +Wychford +Wychperry +Wychview +Wychwood +Wyck +Wycke +Wyckland +Wyckoff +Wyckwood +Wyclif +Wycliff +Wycliffe +Wycoff +Wycomb +Wycombe +Wycombe Park +Wyddial +Wydehurst +Wydeville Manor +Wydown +Wye +Wye Oak +Wyee +Wyena +Wyeth +Wyfold +Wygal +Wykagyl +Wyke +Wykebeck Valley +Wykeham +Wykehurst +Wykoff +Wylands +Wyld +Wyld Green +Wylde +Wyldewood +Wylds +Wyldwood +Wyles +Wyleu +Wylie +Wylie Hill +Wyllie +Wyllis +Wyllyotts +Wylmar +Wylo +Wylvale +Wyman +Wymans Beach +Wymar +Wymering +Wymond +Wymondley +Wymston +Wynan +Wynbrook +Wynbrooke +Wynbury +Wyncham +Wynches Farm +Wynchgate +Wyncrest +Wyndale +Wyndam +Wyndbrook +Wyndcliff +Wyndcliffe +Wyndcrest +Wyndehurst +Wyndemere +Wyndgate +Wyndham +Wyndham Cove +Wyndham Hill +Wyndham Oak +Wyndhill +Wyndhurst +Wyndmere +Wyndmoor +Wyndmuir +Wyndora +Wyndover +Wyndover Woods +Wyndstone +Wyndwood +Wyneham +Wynell +Wyness +Wynford +Wyngaard +Wyngate +Wynhurst +Wynkoop +Wynmore +Wynn +Wynndale +Wynne +Wynnewood +Wynnfield +Wynnleigh +Wynns +Wynnstay +Wynnstay Access +Wynnswick +Wynnwood +Wynot +Wynridge +Wynstone +Wynsum +Wynter +Wynwood +Wynyard +Wynyatt +Wyola +Wyoma +Wyomee +Wyoming +Wyona +Wyong +Wyphurst +Wyralla +Wyre +Wyreema +Wyres +Wyresdale +Wyrick +Wysteria +Wythal +Wythburn +Wythburne +Wythe +Wythens +Wythenshawe +Wyther +Wyther Park +Wythes +Wythfield +Wyton +Wyuna +Wyvern +Wyvil +Wyvile +Wyvill +Wyville +Wyvis +Wyx +Xanadu +Xandria +Xanthippe +Xanthus +Xaveria +Xavier +Xaviers +Xavis +Xebec +Xene +Xenia +Xenium +Xenwood +Xeon +Xerxes +Ximines +Xkimo +Xylon +Y Creek +Y D +YMCA +Yabsley +Yacenda +Yacht +Yacht Club +Yacht Harbor +Yachthaven +Yachtsman +Yachtview +Yackley +Yaffe +Yaffle +Yagar +Yager +Yagoona +Yahara +Yajome +Yakima +Yala +Yaldara +Yalding +Yale +Yalkin +Yallambee +Yallara +Yallaroi +Yalleroi +Yalta +Yamada +Yamane +Yamato +Yamba +Yamburg +Yamma +Yampa +Yampi +Yancey +Yanco +Yancy +Yandarlo +Yanderra +Yangalla +Yangang +Yangoora +Yanilla +Yankee +Yankee Division +Yankee Doodle +Yankee Harbor +Yankee Ridge +Yanko +Yankton +Yankton College +Yannina +Yantacaw Brook +Yantecaw +Yantlet +Yantz +Yapole +Yara +Yaraan +Yarabah +Yaralla +Yarberry +Yarbon +Yarborough +Yarburgh +Yard +Yardarm +Yardley +Yardley Hall +Yardley Manor +Yardley Park +Yare +Yargo +Yaringa +Yarland +Yarm Court +Yarmouth +Yarn +Yarnall +Yarnell +Yarnick +Yarnton Way Norman +Yarra +Yarra Burn +Yarra Burra +Yarrabee +Yarrabin +Yarrabung +Yarralumla +Yarram +Yarraman +Yarramundi +Yarran +Yarranbee +Yarrandale +Yarrangobilly +Yarrara +Yarrawa +Yarren +Yarrennan +Yarrow +Yarrowee +Yarrunga +Yarwood +Yasmar +Yatala +Yatama +Yate +Yateley +Yately +Yates +Yates Ford +Yattendon +Yaugher +Yaverland +Yawl +Yawpo +Yawung +Yeading +Yeadon +Yeadon Harper +Yeadon High +Yeadon Moor +Yeager +Yealand +Yeaman +Yeamans +Yeandle +Yeardon +Yeardsley +Yearling +Yearling Crossing +Yeasted +Yeate +Yeates +Yeatman +Yeaton +Yeats +Yednak +Yeend +Yeldall Manor Service +Yeldham +Yeldman +Yell +Yellambie +Yellow Bank +Yellow Bank Farm +Yellow Bell +Yellow Birch +Yellow Brick +Yellow Brook +Yellow Cab Access +Yellow Circle +Yellow Cote +Yellow Flower +Yellow Jacket Ranch +Yellow Lodge +Yellow Pine +Yellow Poplar +Yellow Rock +Yellow Rose +Yellow Tavern +Yellow Twig +Yellowbrick +Yellowcross +Yellowhammer +Yellowknife +Yellowood +Yellowpine +Yellowstar +Yellowstone +Yellowwood +Yelsted +Yelverton +Yenda +Yender +Yennicock +Yennora +Yeo +Yeoford +Yeomalt +Yeoman +Yeomans +Yeomans Acre Fore +Yeonas +Yeovil +Yeramba +Yeran +Yerba Buena +Yerba Santa +Yerbury +Yerby +Yereance +Yerger +Yerona +Yerong +Yerrick +Yerroulbin +Yerxa +Yeshiva +Yester +Yetholme +Yethonga +Yetman +Yetminster +Yetta +Yettner +Yew +Yew Tree +Yew Tree Bottom +Yew Tree Green +Yew Tree Park +Yewbarrow +Yewdale +Yewdall +Yewfield +Yewlands +Yews +Yewtree +Ygnacio +Ygnacio Valley +Yield Hall +Yillowra +Yimbala +Yindela +Yirak +Yirgella +Yirra +Yoakes +Yoakim +Yoakim Bridge +Yoakley +Yoakum +Yodalla +Yoder +Yoerg +Yoho +Yoke +Yokuts +Yola +Yolanda +Yolande +Yolane +Yolano +Yolano Mills +Yolo +Yolo Creek +Yon +Yona Vista +Yonkers +Yorba +York +York Gardens Lombard +York Mill +York Mills +York River +Yorkdale +Yorke +Yorkfield +Yorkie +Yorknolls +Yorks +Yorkshire +Yorkshire Woods +Yorkton +Yorkton Ridge +Yorktonw +Yorktown +Yorktown Mall +Yorktowne +Yorkview +Yorkville +Yorman +Yorton +Yosefa +Yosemite +Yosemite Park +Yoshida +Yosko +Yosocomico +Yost +Youd +Youens +Youghal +Youlden +Youle +Young +Young Bar +Youngberg +Youngblood +Younger +Younger Creek +Youngfield +Youngheart +Younglove +Youngs +Youngs Branch +Youngs Cliff +Youngs Farm +Youngs Hill +Youngs Valley +Youngsbury +Youngsdale +Youngsters +Youngstown +Youngstroat +Youngwood +Yount +Yountville Cross +Youse +Youth Center +Yovonovitz +Yowie +Yoxley +Ypres +Yreka +Yribarren +Ysabel +Yuba +Yuba Canal +Yucatan +Yucca +Yuhas +Yukka +Yukon +Yulan +Yule +Yule Tree +Yulong +Yuloni +Yulupa +Yuma +Yunga +Yunga Burra +Yurgel +Yurick +Yuro +Yuroka +Yurong +Yuruga +Yurunga +Yutan +Yvette +Yvonne +Yy +Z Line +ZAchary +ZAnzIbar +ZEnith +ZIegler +ZInnia +ZIon +ZOo +Zabelle +Zabriskie +Zabrosky +Zaca +Zacate +Zaccheus Mead +Zacharias +Zachary +Zachery +Zachman +Zack +Zadig +Zafra +Zaft +Zagora +Zahel +Zaininger +Zaleski +Zalman +Zambesi +Zambezie +Zambory +Zambrano +Zamia +Zammit +Zamora +Zampa +Zampatti +Zanco +Zand +Zander +Zane +Zange +Zangwill +Zanibar +Zanker +Zanni +Zanoni +Zanthus +Zanzibar +Zapata +Zapotec +Zara +Zaragosa +Zaragoza +Zardo +Zareh +Zarick +Zarita +Zarlee +Zartop +Zato +Zaton +Zatopeck +Zaunerowicz +Zauratsky +Zausa +Zavatt +Zayante +Zayante Lakes +Zayante School +Zaydee +Zazzetti +Zealand +Zealander +Zeally +Zebedee +Zebra +Zebulon Pike +Zeckendorf +Zeek +Zeeland +Zehnder +Zeigert +Zeigler +Zeim +Zeka +Zekan +Zekiah +Zela +Zelah +Zelda +Zelham +Zeliff +Zelinda +Zelkova +Zeller +Zellerbach +Zelma +Zeman +Zemble +Zemek +Zena +Zenas +Zendzian +Zengele +Zenia +Zenith +Zenith Ridge +Zenner +Zennia +Zennor +Zeno +Zenoria +Zephyr +Zephyr Ranch +Zeppelen +Zeppelin +Zeppi +Zerega +Zerman +Zermat +Zermatt +Zero +Zeta +Zetland +Zetta +Zetts +Zeus +Zieber +Ziegler +Ziele Creek +Zig Zag +Ziggy +Zileman +Zillah +Zils +Zimborski +Zimbro +Zimmer +Zimmerman +Zimpher +Zina +Zindaus +Zinder +Zinfandel +Zinfindel +Zinn +Zinnia +Zinran +Zinzan +Zion +Zion Chapel +Zions +Zipf +Zircon +Zirkel +Zisch +Ziska +Zita +Zito +Zoar +Zodiac +Zoe +Zoeller +Zoffany +Zola +Zoll +Zoller +Zompetti +Zona +Zoo +Zook +Zorah +Zoranne +Zoria Farms +Zorka +Zorrane +Zotti +Zottoli +Zouave +Zouch +Zoumar +Zuelke +Zug +Zulette +Zulmida +Zulu +Zumbra +Zumbro +Zumstein +Zumwalt +Zuni +Zunic +Zurich +Zuttion +Zutton +Zweber +Zwicky +Zygmunt +Zygouras +Zylonite \ No newline at end of file diff --git a/splunk_eventgen/samples/streetSuffixes.sample b/splunk_eventgen/samples/streetSuffixes.sample new file mode 100644 index 00000000..7520a47c --- /dev/null +++ b/splunk_eventgen/samples/streetSuffixes.sample @@ -0,0 +1,24 @@ +Blvd. +Blvd. +St. +St. +St. +St. +St. +St. +Pkwy. +Pkwy. +Pkwy. +Ln. +Ln. +Ln. +Dr. +Dr. +Dr. +Dr. +Way +Way +Ave. +Ave. +Ave. +Hwy. \ No newline at end of file diff --git a/splunk_eventgen/samples/streets b/splunk_eventgen/samples/streets new file mode 100644 index 00000000..d25bf1ad --- /dev/null +++ b/splunk_eventgen/samples/streets @@ -0,0 +1,168 @@ +Acres +Amber +Anchor +Apple +Arbor +Autumn +Avenue +Bank +Barn +Beacon +Bear +Bend +Berry +Blossom +Blue +Bluff +Branch +Bright +Broad +Brook +Burning +Butterfly +Canyon +Chase +Cider +Cinder +Circle +Clear +Cloud +Colonial +Corner +Cotton +Court +Cove +Cozy +Creek +Crest +Crystal +Dale +Dale +Deer +Dell +Dewy +Dusty +Easy +Edge +Elk +Embers +Emerald +Estates +Fallen +Falls +Farms +Fawn +Foggy +Forest +Fox +Gardens +Gate +Gate +Gentle +Glade +Glen +Golden +Goose +Grand +Green +Grove +Grove +Harvest +Hazy +Heather +Hickory +Hidden +High +Highlands +Hills +Hollow +Honey +Horse +Indian +Iron +Island +Isle +Jagged +Jetty +Knoll +Lagoon +Lake +Landing +Lane +Lazy +Leaf +Ledge +Little +Log +Lost +Manor +Meadow +Merry +Mews +Middle +Misty +Mountain +Nectar +Noble +Nook +Oak +Old +Orchard +Panda +Park +Path +Pike +Pine +Pioneer +Place +Pleasant +Point +Pond +Pony +Prairie +Promenade +Quail +Quaking +Quiet +Rabbit +Red +Ridge +Rise +River +Robin +Rocky +Round +Round +Run +Rustic +Shadow +Shady +Silent +Silver +Sky +Sleepy +Spring +Stead +Stony +Sunny +Swale +Tawny +Terrace +Thunder +Timber +Trace +Trail +Treasure +Umber +Vale +Valley +Velvet +View +View +Vista +Wagon +Way +Willow +Wishing +Woods +Zephyr \ No newline at end of file diff --git a/splunk_eventgen/samples/trackIDs.sample b/splunk_eventgen/samples/trackIDs.sample new file mode 100644 index 00000000..a8f20f78 --- /dev/null +++ b/splunk_eventgen/samples/trackIDs.sample @@ -0,0 +1,23 @@ +01011207201000005652000000000021 +01011207201000005652000000000047 +01011207201000005652000000000068 +01011207201000005652000000000018 +01011207201000005652000000000031 +01011207201000005652000000000007 +01011207201000005652000000000013 +01011207201000005652000000000041 +01011207201000005652000000000053 +01011207201000005652000000000023 +01011207201000005652000000000029 +01011207201000005652000000000037 +01011207201000005652000000000011 +01011207201000005652000000000003 +01011207201000005652000000000083 +01011207201000005652000000000017 +01011207201000005652000000000071 +01011207201000005652000000000026 +01011207201000005652000000000055 +01011207201000005652000000000084 +01011207201000005652000000000014 +01011207201000005652000000000025 +01011207201000005652000000000049 \ No newline at end of file diff --git a/splunk_eventgen/samples/transType.sample b/splunk_eventgen/samples/transType.sample new file mode 100644 index 00000000..61c7b11d --- /dev/null +++ b/splunk_eventgen/samples/transType.sample @@ -0,0 +1,6 @@ +New +New +Change +Change +Change +Delete \ No newline at end of file diff --git a/splunk_eventgen/samples/uris.sample b/splunk_eventgen/samples/uris.sample new file mode 100644 index 00000000..27d17be4 --- /dev/null +++ b/splunk_eventgen/samples/uris.sample @@ -0,0 +1,5 @@ +GET /browse/search +GET /browse/tracks +POST /sync/createplaylist +POST /playhistory/uploadhistory +POST /auth \ No newline at end of file diff --git a/splunk_eventgen/samples/userHostIp.sample b/splunk_eventgen/samples/userHostIp.sample new file mode 100644 index 00000000..f33cf601 --- /dev/null +++ b/splunk_eventgen/samples/userHostIp.sample @@ -0,0 +1,1000 @@ +TAYLOR_DYE,TAYLOR_DYE-MPBR16,10.0.0.0 +ARMAND_ARAIZA,ARMAND_ARAIZA-MPBR16,10.0.0.1 +BENJAMIN_VANDEUSEN,BENJAMIN_VANDEUSEN-MPBR16,10.0.0.2 +SHANNON_BERNARDI,SHANNON_BERNARDI-MPBR16,10.0.0.3 +VIRGIL_FOUQUETTE,VIRGIL_FOUQUETTE-MPBR16,10.0.0.4 +LEANN_CHISUM,LEANN_CHISUM-MPBR16,10.0.0.5 +MEGHAN_BIONDI,MEGHAN_BIONDI-MPBR16,10.0.0.6 +JAKE_SPELL,JAKE_SPELL-MPBR16,10.0.0.7 +MIRTHA_SILVESTRI,MIRTHA_SILVESTRI-MPBR16,10.0.0.8 +ORPHA_BLANKS,ORPHA_BLANKS-MPBR16,10.0.0.9 +TOMMY_HENNEY,TOMMY_HENNEY-MPBR16,10.0.0.10 +HORACE_WELSCH,HORACE_WELSCH-MPBR16,10.0.0.11 +JAMAAL_BOEPPLE,JAMAAL_BOEPPLE-MPBR16,10.0.0.12 +JULIE_BLOXHAM,JULIE_BLOXHAM-MPBR16,10.0.0.13 +FREDERICA_SLAYDEN,FREDERICA_SLAYDEN-MPBR16,10.0.0.14 +SEAN_TARLOW,SEAN_TARLOW-MPBR16,10.0.0.15 +ELIZABETH_GAUKEL,ELIZABETH_GAUKEL-MPBR16,10.0.0.16 +HASSAN_SPERIER,HASSAN_SPERIER-MPBR16,10.0.0.17 +MARISELA_COLSTON,MARISELA_COLSTON-MPBR16,10.0.0.18 +LOWELL_SOLBERG,LOWELL_SOLBERG-MPBR16,10.0.0.19 +PAMALA_MUMPER,PAMALA_MUMPER-MPBR16,10.0.0.20 +BREANNE_STEFANIAK,BREANNE_STEFANIAK-MPBR16,10.0.0.21 +WINNIFRED_HARTS,WINNIFRED_HARTS-MPBR16,10.0.0.22 +CASIE_GEMME,CASIE_GEMME-MPBR16,10.0.0.23 +JUSTINE_TAPP,JUSTINE_TAPP-MPBR16,10.0.0.24 +SIDNEY_DRAPKIN,SIDNEY_DRAPKIN-MPBR16,10.0.0.25 +RAY_ETHRIDGE,RAY_ETHRIDGE-MPBR16,10.0.0.26 +GARFIELD_LOSECCO,GARFIELD_LOSECCO-MPBR16,10.0.0.27 +IRVING_HAVARD,IRVING_HAVARD-MPBR16,10.0.0.28 +GRETCHEN_BRIES,GRETCHEN_BRIES-MPBR16,10.0.0.29 +CLETUS_DAY,CLETUS_DAY-MPBR16,10.0.0.30 +SONNY_PAGLINAWAN,SONNY_PAGLINAWAN-MPBR16,10.0.0.31 +BREANNA_EMMER,BREANNA_EMMER-MPBR16,10.0.0.32 +GENARO_EVERSOLE,GENARO_EVERSOLE-MPBR16,10.0.0.33 +HILDA_POLLARO,HILDA_POLLARO-MPBR16,10.0.0.34 +DAMION_VESPIA,DAMION_VESPIA-MPBR16,10.0.0.35 +GROVER_REMALEY,GROVER_REMALEY-MPBR16,10.0.0.36 +EVERETT_SPRIGG,EVERETT_SPRIGG-MPBR16,10.0.0.37 +OLLIE_BEDNARCZYK,OLLIE_BEDNARCZYK-MPBR16,10.0.0.38 +LUPE_GUE,LUPE_GUE-MPBR16,10.0.0.39 +JANN_PITHAN,JANN_PITHAN-MPBR16,10.0.0.40 +TIARA_CEPEDA,TIARA_CEPEDA-MPBR16,10.0.0.41 +ZINA_HOLOM,ZINA_HOLOM-MPBR16,10.0.0.42 +LOUISE_CARLILE,LOUISE_CARLILE-MPBR16,10.0.0.43 +MADGE_EFAW,MADGE_EFAW-MPBR16,10.0.0.44 +OUIDA_RUGGIERI,OUIDA_RUGGIERI-MPBR16,10.0.0.45 +PANDORA_CONNIFF,PANDORA_CONNIFF-MPBR16,10.0.0.46 +CRAIG_BULLERS,CRAIG_BULLERS-MPBR16,10.0.0.47 +RYAN_FRASCA,RYAN_FRASCA-MPBR16,10.0.0.48 +NOVELLA_KASTEL,NOVELLA_KASTEL-MPBR16,10.0.0.49 +AURORE_AHLMAN,AURORE_AHLMAN-MPBR16,10.0.0.50 +CARLTON_KURAMOTO,CARLTON_KURAMOTO-MPBR16,10.0.0.51 +GARY_STINEHELFER,GARY_STINEHELFER-MPBR16,10.0.0.52 +NICHOL_FALKER,NICHOL_FALKER-MPBR16,10.0.0.53 +EVELYN_SCHIER,EVELYN_SCHIER-MPBR16,10.0.0.54 +JARRETT_HUXHOLD,JARRETT_HUXHOLD-MPBR16,10.0.0.55 +JONAS_HEITLAND,JONAS_HEITLAND-MPBR16,10.0.0.56 +ANTONIO_WOLSKI,ANTONIO_WOLSKI-MPBR16,10.0.0.57 +BILLY_PEDLAR,BILLY_PEDLAR-MPBR16,10.0.0.58 +GLADYS_SINNING,GLADYS_SINNING-MPBR16,10.0.0.59 +PAUL_LEHNER,PAUL_LEHNER-MPBR16,10.0.0.60 +MARTHA_KEENEY,MARTHA_KEENEY-MPBR16,10.0.0.61 +JUAN_CURBEAM,JUAN_CURBEAM-MPBR16,10.0.0.62 +ROSITA_DEBELLIS,ROSITA_DEBELLIS-MPBR16,10.0.0.63 +WILFRED_DRAKE,WILFRED_DRAKE-MPBR16,10.0.0.64 +ISIAH_HANAWAY,ISIAH_HANAWAY-MPBR16,10.0.0.65 +INEZ_GREENLER,INEZ_GREENLER-MPBR16,10.0.0.66 +CHARISSA_CAPEZZUTO,CHARISSA_CAPEZZUTO-MPBR16,10.0.0.67 +ARMANDO_MCGRAY,ARMANDO_MCGRAY-MPBR16,10.0.0.68 +JUNIOR_LAFLAMME,JUNIOR_LAFLAMME-MPBR16,10.0.0.69 +RENE_HOUGE,RENE_HOUGE-MPBR16,10.0.0.70 +CARY_RODAL,CARY_RODAL-MPBR16,10.0.0.71 +ERIC_MORITZ,ERIC_MORITZ-MPBR16,10.0.0.72 +TOBY_LAFRANCE,TOBY_LAFRANCE-MPBR16,10.0.0.73 +LUANNE_ESKRIDGE,LUANNE_ESKRIDGE-MPBR16,10.0.0.74 +FREDERICK_PONTORIERO,FREDERICK_PONTORIERO-MPBR16,10.0.0.75 +NIGEL_NEACE,NIGEL_NEACE-MPBR16,10.0.0.76 +ADAM_BUEHRING,ADAM_BUEHRING-MPBR16,10.0.0.77 +IVORY_BONIER,IVORY_BONIER-MPBR16,10.0.0.78 +ISIDRO_ALBANESE,ISIDRO_ALBANESE-MPBR16,10.0.0.79 +ARLENE_SHEEDY,ARLENE_SHEEDY-MPBR16,10.0.0.80 +JAKE_BRADY,JAKE_BRADY-MPBR16,10.0.0.81 +CRYSTAL_CURZ,CRYSTAL_CURZ-MPBR16,10.0.0.82 +ANTOINE_BOWYER,ANTOINE_BOWYER-MPBR16,10.0.0.83 +FANNY_MAULTSBY,FANNY_MAULTSBY-MPBR16,10.0.0.84 +ERIK_KOSS,ERIK_KOSS-MPBR16,10.0.0.85 +DION_GILLOTTI,DION_GILLOTTI-MPBR16,10.0.0.86 +NILDA_SORATOS,NILDA_SORATOS-MPBR16,10.0.0.87 +AMY_WHINERY,AMY_WHINERY-MPBR16,10.0.0.88 +MYLES_RAIL,MYLES_RAIL-MPBR16,10.0.0.89 +JEREMY_PEMBER,JEREMY_PEMBER-MPBR16,10.0.0.90 +CHRISTIN_MINZEL,CHRISTIN_MINZEL-MPBR16,10.0.0.91 +NINA_OKUDA,NINA_OKUDA-MPBR16,10.0.0.92 +LACEY_IANNUCCI,LACEY_IANNUCCI-MPBR16,10.0.0.93 +KIMBERLI_CASALMAN,KIMBERLI_CASALMAN-MPBR16,10.0.0.94 +KIZZY_SOLGOVIC,KIZZY_SOLGOVIC-MPBR16,10.0.0.95 +ROGELIO_KOTERA,ROGELIO_KOTERA-MPBR16,10.0.0.96 +IN_SODHI,IN_SODHI-MPBR16,10.0.0.97 +ZENAIDA_KNIGHTER,ZENAIDA_KNIGHTER-MPBR16,10.0.0.98 +SERINA_WOODELL,SERINA_WOODELL-MPBR16,10.0.0.99 +KRISTEN_LUNEAU,KRISTEN_LUNEAU-MPBR16,10.0.0.100 +JEFFREY_ALVARENGA,JEFFREY_ALVARENGA-MPBR16,10.0.0.101 +CARIDAD_DOUGHTIE,CARIDAD_DOUGHTIE-MPBR16,10.0.0.102 +ISAURA_LUDGOOD,ISAURA_LUDGOOD-MPBR16,10.0.0.103 +ARLENA_FREUDENBURG,ARLENA_FREUDENBURG-MPBR16,10.0.0.104 +MATTHEW_FERRE,MATTHEW_FERRE-MPBR16,10.0.0.105 +WM_RUSH,WM_RUSH-MPBR16,10.0.0.106 +BOBBY_MOON,BOBBY_MOON-MPBR16,10.0.0.107 +KATY_HIPPERT,KATY_HIPPERT-MPBR16,10.0.0.108 +BRENDAN_WAREING,BRENDAN_WAREING-MPBR16,10.0.0.109 +RUSSELL_LEDDON,RUSSELL_LEDDON-MPBR16,10.0.0.110 +DONOVAN_MAHER,DONOVAN_MAHER-MPBR16,10.0.0.111 +MONICA_FRANCESE,MONICA_FRANCESE-MPBR16,10.0.0.112 +CATALINA_DURON,CATALINA_DURON-MPBR16,10.0.0.113 +NIDA_ROMAR,NIDA_ROMAR-MPBR16,10.0.0.114 +LYLE_MIECZKOWSKI,LYLE_MIECZKOWSKI-MPBR16,10.0.0.115 +ARON_HIPP,ARON_HIPP-MPBR16,10.0.0.116 +ORVILLE_NIELAND,ORVILLE_NIELAND-MPBR16,10.0.0.117 +BLYTHE_SHOUN,BLYTHE_SHOUN-MPBR16,10.0.0.118 +JOSEPH_SPADY,JOSEPH_SPADY-MPBR16,10.0.0.119 +JAMEY_STONEBRAKER,JAMEY_STONEBRAKER-MPBR16,10.0.0.120 +JIMMY_LISONBEE,JIMMY_LISONBEE-MPBR16,10.0.0.121 +BELINDA_MISKO,BELINDA_MISKO-MPBR16,10.0.0.122 +IRMA_ROSE,IRMA_ROSE-MPBR16,10.0.0.123 +TAWANNA_FRANZONI,TAWANNA_FRANZONI-MPBR16,10.0.0.124 +HALLIE_DINKIN,HALLIE_DINKIN-MPBR16,10.0.0.125 +SIDNEY_BRUN,SIDNEY_BRUN-MPBR16,10.0.0.126 +NIKI_CHAPIN,NIKI_CHAPIN-MPBR16,10.0.0.127 +TERESA_MORAIS,TERESA_MORAIS-MPBR16,10.0.0.128 +SIMON_SABO,SIMON_SABO-MPBR16,10.0.0.129 +REGINALD_LACHERMEIER,REGINALD_LACHERMEIER-MPBR16,10.0.0.130 +SIMONE_SCHAEFER,SIMONE_SCHAEFER-MPBR16,10.0.0.131 +COREY_SCHAMP,COREY_SCHAMP-MPBR16,10.0.0.132 +CLAYTON_MESZAROS,CLAYTON_MESZAROS-MPBR16,10.0.0.133 +CARLOS_DALLMEYER,CARLOS_DALLMEYER-MPBR16,10.0.0.134 +HUGO_LOUIE,HUGO_LOUIE-MPBR16,10.0.0.135 +FRAN_FANN,FRAN_FANN-MPBR16,10.0.0.136 +DUANE_BENINCASE,DUANE_BENINCASE-MPBR16,10.0.0.137 +ARNOLD_DONAHOE,ARNOLD_DONAHOE-MPBR16,10.0.0.138 +WILLIAM_SHERLEY,WILLIAM_SHERLEY-MPBR16,10.0.0.139 +MALIA_GFELLER,MALIA_GFELLER-MPBR16,10.0.0.140 +LOVIE_TOMERLIN,LOVIE_TOMERLIN-MPBR16,10.0.0.141 +LILLIA_SIMMONEAU,LILLIA_SIMMONEAU-MPBR16,10.0.0.142 +HAILEY_ABDUR,HAILEY_ABDUR-MPBR16,10.0.0.143 +JACOB_ROBICHAUD,JACOB_ROBICHAUD-MPBR16,10.0.0.144 +TAMAR_BALLADARES,TAMAR_BALLADARES-MPBR16,10.0.0.145 +LEEANN_STEMM,LEEANN_STEMM-MPBR16,10.0.0.146 +WINIFRED_STELLMACHER,WINIFRED_STELLMACHER-MPBR16,10.0.0.147 +FELIPE_HAMSHER,FELIPE_HAMSHER-MPBR16,10.0.0.148 +MALORIE_PAULUS,MALORIE_PAULUS-MPBR16,10.0.0.149 +LOUANN_MARESCO,LOUANN_MARESCO-MPBR16,10.0.0.150 +ANTWAN_MOWERS,ANTWAN_MOWERS-MPBR16,10.0.0.151 +WM_IRELAND,WM_IRELAND-MPBR16,10.0.0.152 +JOE_HEYER,JOE_HEYER-MPBR16,10.0.0.153 +KENNETH_BUNDREN,KENNETH_BUNDREN-MPBR16,10.0.0.154 +ANGEL_KILMARTIN,ANGEL_KILMARTIN-MPBR16,10.0.0.155 +HAYDEN_BROADNAX,HAYDEN_BROADNAX-MPBR16,10.0.0.156 +HYON_BOREN,HYON_BOREN-MPBR16,10.0.0.157 +FRANKIE_METCALF,FRANKIE_METCALF-MPBR16,10.0.0.158 +JONATHAN_NETHERLAND,JONATHAN_NETHERLAND-MPBR16,10.0.0.159 +ODILIA_ONEIL,ODILIA_ONEIL-MPBR16,10.0.0.160 +RONNI_DOROUGH,RONNI_DOROUGH-MPBR16,10.0.0.161 +DEIDRA_MANZO,DEIDRA_MANZO-MPBR16,10.0.0.162 +KARL_ALSBROOK,KARL_ALSBROOK-MPBR16,10.0.0.163 +MOHAMED_MCMANAMY,MOHAMED_MCMANAMY-MPBR16,10.0.0.164 +AGATHA_TOLEDO,AGATHA_TOLEDO-MPBR16,10.0.0.165 +CARMEN_FATCHETT,CARMEN_FATCHETT-MPBR16,10.0.0.166 +ANITA_PICKRELL,ANITA_PICKRELL-MPBR16,10.0.0.167 +GLENDA_YEATS,GLENDA_YEATS-MPBR16,10.0.0.168 +ALFREDO_EK,ALFREDO_EK-MPBR16,10.0.0.169 +MARLON_GIRST,MARLON_GIRST-MPBR16,10.0.0.170 +ALISON_GRUNDER,ALISON_GRUNDER-MPBR16,10.0.0.171 +BERT_DEFRANCESCO,BERT_DEFRANCESCO-MPBR16,10.0.0.172 +LAWANDA_VOGELGESANG,LAWANDA_VOGELGESANG-MPBR16,10.0.0.173 +HA_SILBERBERG,HA_SILBERBERG-MPBR16,10.0.0.174 +SANDI_DIMICCO,SANDI_DIMICCO-MPBR16,10.0.0.175 +VINCE_STANDING,VINCE_STANDING-MPBR16,10.0.0.176 +ROBERT_MONTAS,ROBERT_MONTAS-MPBR16,10.0.0.177 +ADOLFO_CHUONG,ADOLFO_CHUONG-MPBR16,10.0.0.178 +LORE_LINGG,LORE_LINGG-MPBR16,10.0.0.179 +KRYSTLE_PENNYPACKER,KRYSTLE_PENNYPACKER-MPBR16,10.0.0.180 +RACHELLE_SCHANER,RACHELLE_SCHANER-MPBR16,10.0.0.181 +VIOLETA_PRATCHER,VIOLETA_PRATCHER-MPBR16,10.0.0.182 +KARI_SHOVER,KARI_SHOVER-MPBR16,10.0.0.183 +DUNG_ENTRIKEN,DUNG_ENTRIKEN-MPBR16,10.0.0.184 +JAQUELINE_VILLALVAZO,JAQUELINE_VILLALVAZO-MPBR16,10.0.0.185 +RUDOLPH_PINELO,RUDOLPH_PINELO-MPBR16,10.0.0.186 +BRET_KURDZIEL,BRET_KURDZIEL-MPBR16,10.0.0.187 +JESSE_WAUCH,JESSE_WAUCH-MPBR16,10.0.0.188 +CINDA_CANUPP,CINDA_CANUPP-MPBR16,10.0.0.189 +JOEL_MCALARNEY,JOEL_MCALARNEY-MPBR16,10.0.0.190 +STEVEN_SVENNUNGSEN,STEVEN_SVENNUNGSEN-MPBR16,10.0.0.191 +FRED_ROZEK,FRED_ROZEK-MPBR16,10.0.0.192 +TERA_ANDRUSS,TERA_ANDRUSS-MPBR16,10.0.0.193 +ESTA_WILHIDE,ESTA_WILHIDE-MPBR16,10.0.0.194 +JEREMY_OLIVERES,JEREMY_OLIVERES-MPBR16,10.0.0.195 +GAIL_HARRELSON,GAIL_HARRELSON-MPBR16,10.0.0.196 +JEWELL_CARNAHAN,JEWELL_CARNAHAN-MPBR16,10.0.0.197 +TYRON_REAVIS,TYRON_REAVIS-MPBR16,10.0.0.198 +JAMAR_SANJOSE,JAMAR_SANJOSE-MPBR16,10.0.0.199 +PENELOPE_ANNIS,PENELOPE_ANNIS-MPBR16,10.0.0.200 +TONY_CASTANON,TONY_CASTANON-MPBR16,10.0.0.201 +RHONDA_HANNAFORD,RHONDA_HANNAFORD-MPBR16,10.0.0.202 +DARYL_BOGUE,DARYL_BOGUE-MPBR16,10.0.0.203 +MARLON_RENOLLET,MARLON_RENOLLET-MPBR16,10.0.0.204 +MARITA_KEYTON,MARITA_KEYTON-MPBR16,10.0.0.205 +DEWEY_WERTHEIMER,DEWEY_WERTHEIMER-MPBR16,10.0.0.206 +CAROLE_SCHIEFFER,CAROLE_SCHIEFFER-MPBR16,10.0.0.207 +RHONDA_SCHAMS,RHONDA_SCHAMS-MPBR16,10.0.0.208 +LENA_MOLTZ,LENA_MOLTZ-MPBR16,10.0.0.209 +LARUE_GENS,LARUE_GENS-MPBR16,10.0.0.210 +DANITA_TEJADA,DANITA_TEJADA-MPBR16,10.0.0.211 +SHERMAN_BEUS,SHERMAN_BEUS-MPBR16,10.0.0.212 +LOURA_BLANCHE,LOURA_BLANCHE-MPBR16,10.0.0.213 +STEVE_TREMBLEY,STEVE_TREMBLEY-MPBR16,10.0.0.214 +KIM_MONTIE,KIM_MONTIE-MPBR16,10.0.0.215 +JULIAN_DEKLE,JULIAN_DEKLE-MPBR16,10.0.0.216 +LONNY_CIRAOLO,LONNY_CIRAOLO-MPBR16,10.0.0.217 +RUSSEL_BOHMER,RUSSEL_BOHMER-MPBR16,10.0.0.218 +LINDSAY_NASCA,LINDSAY_NASCA-MPBR16,10.0.0.219 +CHASITY_FONGER,CHASITY_FONGER-MPBR16,10.0.0.220 +STEPHAINE_HITTMAN,STEPHAINE_HITTMAN-MPBR16,10.0.0.221 +FELICE_DEROSIA,FELICE_DEROSIA-MPBR16,10.0.0.222 +REX_VAINE,REX_VAINE-MPBR16,10.0.0.223 +MERRILEE_OSTERGREN,MERRILEE_OSTERGREN-MPBR16,10.0.0.224 +MAXIMINA_KOLASA,MAXIMINA_KOLASA-MPBR16,10.0.0.225 +RANDA_REMSEN,RANDA_REMSEN-MPBR16,10.0.0.226 +ALEX_MOLOCK,ALEX_MOLOCK-MPBR16,10.0.0.227 +KELLI_LEANOS,KELLI_LEANOS-MPBR16,10.0.0.228 +BOB_GERACE,BOB_GERACE-MPBR16,10.0.0.229 +ALVARO_MONT,ALVARO_MONT-MPBR16,10.0.0.230 +SON_HEDQUIST,SON_HEDQUIST-MPBR16,10.0.0.231 +WELDON_ROSS,WELDON_ROSS-MPBR16,10.0.0.232 +JACKIE_REINBOLD,JACKIE_REINBOLD-MPBR16,10.0.0.233 +DEVIN_BEAUMONTE,DEVIN_BEAUMONTE-MPBR16,10.0.0.234 +MICHELLE_WILLIBRAND,MICHELLE_WILLIBRAND-MPBR16,10.0.0.235 +BERNIE_HYMAS,BERNIE_HYMAS-MPBR16,10.0.0.236 +ADAM_PINGLETON,ADAM_PINGLETON-MPBR16,10.0.0.237 +BETTE_MADRIZ,BETTE_MADRIZ-MPBR16,10.0.0.238 +BRUNO_HARRIOTT,BRUNO_HARRIOTT-MPBR16,10.0.0.239 +ROCKY_SHUTTER,ROCKY_SHUTTER-MPBR16,10.0.0.240 +FAUSTINO_HERSCHELMAN,FAUSTINO_HERSCHELMAN-MPBR16,10.0.0.241 +LENORA_HALLMARK,LENORA_HALLMARK-MPBR16,10.0.0.242 +ALVA_LANDRETH,ALVA_LANDRETH-MPBR16,10.0.0.243 +HIROKO_LANDRIGAN,HIROKO_LANDRIGAN-MPBR16,10.0.0.244 +ROSETTA_PROVINE,ROSETTA_PROVINE-MPBR16,10.0.0.245 +MARLON_DOUBET,MARLON_DOUBET-MPBR16,10.0.0.246 +ROB_WILLINSKY,ROB_WILLINSKY-MPBR16,10.0.0.247 +CESAR_LOCUST,CESAR_LOCUST-MPBR16,10.0.0.248 +ELENORA_GUESS,ELENORA_GUESS-MPBR16,10.0.0.249 +DEVON_HERBOLD,DEVON_HERBOLD-MPBR16,10.0.0.250 +ALTON_BENBOW,ALTON_BENBOW-MPBR16,10.0.0.251 +CARMEN_MILNE,CARMEN_MILNE-MPBR16,10.0.0.252 +OLIN_MAVITY,OLIN_MAVITY-MPBR16,10.0.0.253 +LORENA_WELFORD,LORENA_WELFORD-MPBR16,10.0.0.254 +HUNTER_MARSCH,HUNTER_MARSCH-MPBR16,10.0.0.255 +AUBREY_JANOSIK,AUBREY_JANOSIK-MPBR16,10.0.1.0 +ALLINE_WAGG,ALLINE_WAGG-MPBR16,10.0.1.1 +BRIDGETT_BADDER,BRIDGETT_BADDER-MPBR16,10.0.1.2 +JOSEPH_MARTI,JOSEPH_MARTI-MPBR16,10.0.1.3 +VEDA_COTTEW,VEDA_COTTEW-MPBR16,10.0.1.4 +HOLLEY_FLOREZ,HOLLEY_FLOREZ-MPBR16,10.0.1.5 +CHARLIE_HOLLOMON,CHARLIE_HOLLOMON-MPBR16,10.0.1.6 +DANNY_PITTMAN,DANNY_PITTMAN-MPBR16,10.0.1.7 +ELANOR_DAGG,ELANOR_DAGG-MPBR16,10.0.1.8 +MARGART_TOURIGNY,MARGART_TOURIGNY-MPBR16,10.0.1.9 +MOHAMMAD_PEDROTTI,MOHAMMAD_PEDROTTI-MPBR16,10.0.1.10 +CHRISTIN_VENEMAN,CHRISTIN_VENEMAN-MPBR16,10.0.1.11 +JUSTIN_KER,JUSTIN_KER-MPBR16,10.0.1.12 +LOUIE_VERBECK,LOUIE_VERBECK-MPBR16,10.0.1.13 +BARRETT_CARLOCK,BARRETT_CARLOCK-MPBR16,10.0.1.14 +YVETTE_DEMARS,YVETTE_DEMARS-MPBR16,10.0.1.15 +JAYNA_SYBOUNHEUAN,JAYNA_SYBOUNHEUAN-MPBR16,10.0.1.16 +LYLE_GILYARD,LYLE_GILYARD-MPBR16,10.0.1.17 +ALAYNA_DAVITO,ALAYNA_DAVITO-MPBR16,10.0.1.18 +SIMONNE_ALLBRITTON,SIMONNE_ALLBRITTON-MPBR16,10.0.1.19 +CLINT_SANTACRUZ,CLINT_SANTACRUZ-MPBR16,10.0.1.20 +CHERYLE_FENNELL,CHERYLE_FENNELL-MPBR16,10.0.1.21 +SHARLA_WINDHAM,SHARLA_WINDHAM-MPBR16,10.0.1.22 +EFRAIN_MONTEVERDE,EFRAIN_MONTEVERDE-MPBR16,10.0.1.23 +DAYNA_SOBEY,DAYNA_SOBEY-MPBR16,10.0.1.24 +THEODORE_FARINO,THEODORE_FARINO-MPBR16,10.0.1.25 +FELISA_MERRIFIELD,FELISA_MERRIFIELD-MPBR16,10.0.1.26 +HILMA_DEMENT,HILMA_DEMENT-MPBR16,10.0.1.27 +TRENTON_OSMAN,TRENTON_OSMAN-MPBR16,10.0.1.28 +VINA_PARRENT,VINA_PARRENT-MPBR16,10.0.1.29 +ABDUL_OKUN,ABDUL_OKUN-MPBR16,10.0.1.30 +BOBBY_CERNY,BOBBY_CERNY-MPBR16,10.0.1.31 +JODEE_MAGARELLI,JODEE_MAGARELLI-MPBR16,10.0.1.32 +NADA_TREFF,NADA_TREFF-MPBR16,10.0.1.33 +TYESHA_MATSKO,TYESHA_MATSKO-MPBR16,10.0.1.34 +MOLLY_KOZAR,MOLLY_KOZAR-MPBR16,10.0.1.35 +MELODEE_TRIPPI,MELODEE_TRIPPI-MPBR16,10.0.1.36 +CLARK_BATEY,CLARK_BATEY-MPBR16,10.0.1.37 +KATIE_SMUIN,KATIE_SMUIN-MPBR16,10.0.1.38 +DELPHINE_MATAS,DELPHINE_MATAS-MPBR16,10.0.1.39 +ALVIN_BYRN,ALVIN_BYRN-MPBR16,10.0.1.40 +ALENE_YAWN,ALENE_YAWN-MPBR16,10.0.1.41 +BECKY_KOSAKOWSKI,BECKY_KOSAKOWSKI-MPBR16,10.0.1.42 +JUNG_KVAM,JUNG_KVAM-MPBR16,10.0.1.43 +TAWNY_PALOS,TAWNY_PALOS-MPBR16,10.0.1.44 +JERILYN_SKATTEBO,JERILYN_SKATTEBO-MPBR16,10.0.1.45 +RIGOBERTO_MANJARREZ,RIGOBERTO_MANJARREZ-MPBR16,10.0.1.46 +SONYA_PIERRE,SONYA_PIERRE-MPBR16,10.0.1.47 +KITTY_FANNINGS,KITTY_FANNINGS-MPBR16,10.0.1.48 +MARLIN_FLINT,MARLIN_FLINT-MPBR16,10.0.1.49 +RICHELLE_CARLEW,RICHELLE_CARLEW-MPBR16,10.0.1.50 +MELISSA_PIFER,MELISSA_PIFER-MPBR16,10.0.1.51 +ISRAEL_MASSO,ISRAEL_MASSO-MPBR16,10.0.1.52 +CARLOTTA_ENCISO,CARLOTTA_ENCISO-MPBR16,10.0.1.53 +KACIE_MARSHA,KACIE_MARSHA-MPBR16,10.0.1.54 +NANETTE_CISNEROS,NANETTE_CISNEROS-MPBR16,10.0.1.55 +LILY_MENCER,LILY_MENCER-MPBR16,10.0.1.56 +ANDREW_LABRADA,ANDREW_LABRADA-MPBR16,10.0.1.57 +ALEXIS_PORCH,ALEXIS_PORCH-MPBR16,10.0.1.58 +JOEL_MCKITRICK,JOEL_MCKITRICK-MPBR16,10.0.1.59 +FERN_PETTWAY,FERN_PETTWAY-MPBR16,10.0.1.60 +REID_FEEMSTER,REID_FEEMSTER-MPBR16,10.0.1.61 +MARIA_ARNS,MARIA_ARNS-MPBR16,10.0.1.62 +ALBA_GUMMO,ALBA_GUMMO-MPBR16,10.0.1.63 +JEFFREY_HEIT,JEFFREY_HEIT-MPBR16,10.0.1.64 +JERMAINE_CRESPI,JERMAINE_CRESPI-MPBR16,10.0.1.65 +ODIS_PINCOCK,ODIS_PINCOCK-MPBR16,10.0.1.66 +OLIN_HANKEY,OLIN_HANKEY-MPBR16,10.0.1.67 +EMMANUEL_TAUER,EMMANUEL_TAUER-MPBR16,10.0.1.68 +DETRA_VIVIANI,DETRA_VIVIANI-MPBR16,10.0.1.69 +GORDON_BANCROFT,GORDON_BANCROFT-MPBR16,10.0.1.70 +JENA_ALLOWAY,JENA_ALLOWAY-MPBR16,10.0.1.71 +BRUCE_KARCICH,BRUCE_KARCICH-MPBR16,10.0.1.72 +TITUS_HINCHMAN,TITUS_HINCHMAN-MPBR16,10.0.1.73 +BART_FORDHAM,BART_FORDHAM-MPBR16,10.0.1.74 +ROSIE_GILDERSLEEVE,ROSIE_GILDERSLEEVE-MPBR16,10.0.1.75 +CORAZON_MATKOVIC,CORAZON_MATKOVIC-MPBR16,10.0.1.76 +EDWIN_FADLEY,EDWIN_FADLEY-MPBR16,10.0.1.77 +FRED_HUDDLESTON,FRED_HUDDLESTON-MPBR16,10.0.1.78 +STEWART_MACKYNEN,STEWART_MACKYNEN-MPBR16,10.0.1.79 +OUIDA_HEUNG,OUIDA_HEUNG-MPBR16,10.0.1.80 +FLOYD_DYCE,FLOYD_DYCE-MPBR16,10.0.1.81 +GLEN_JEFFERDS,GLEN_JEFFERDS-MPBR16,10.0.1.82 +BROCK_COGBURN,BROCK_COGBURN-MPBR16,10.0.1.83 +LEONOR_WILKS,LEONOR_WILKS-MPBR16,10.0.1.84 +LAURICE_BELLINGHAM,LAURICE_BELLINGHAM-MPBR16,10.0.1.85 +PENELOPE_PLATH,PENELOPE_PLATH-MPBR16,10.0.1.86 +MARYLOU_KANGAS,MARYLOU_KANGAS-MPBR16,10.0.1.87 +APRIL_KROTZ,APRIL_KROTZ-MPBR16,10.0.1.88 +CARLOTTA_MATTERS,CARLOTTA_MATTERS-MPBR16,10.0.1.89 +KIRA_MCCONNEY,KIRA_MCCONNEY-MPBR16,10.0.1.90 +CARLEY_NERO,CARLEY_NERO-MPBR16,10.0.1.91 +GILBERTO_DESHA,GILBERTO_DESHA-MPBR16,10.0.1.92 +GRISELDA_RAGER,GRISELDA_RAGER-MPBR16,10.0.1.93 +ALLEEN_KANE,ALLEEN_KANE-MPBR16,10.0.1.94 +KATHARINE_NISHIO,KATHARINE_NISHIO-MPBR16,10.0.1.95 +TABATHA_TOMASINO,TABATHA_TOMASINO-MPBR16,10.0.1.96 +ROXANA_POLOSKY,ROXANA_POLOSKY-MPBR16,10.0.1.97 +CODY_SHABAZZ,CODY_SHABAZZ-MPBR16,10.0.1.98 +CHANTELL_HITZEMAN,CHANTELL_HITZEMAN-MPBR16,10.0.1.99 +ALEXANDER_RUTT,ALEXANDER_RUTT-MPBR16,10.0.1.100 +MAYRA_JERNSTROM,MAYRA_JERNSTROM-MPBR16,10.0.1.101 +AMBER_SAUCEDA,AMBER_SAUCEDA-MPBR16,10.0.1.102 +LOUIS_DENLEY,LOUIS_DENLEY-MPBR16,10.0.1.103 +CANDY_ROSER,CANDY_ROSER-MPBR16,10.0.1.104 +WILFORD_TINKLENBERG,WILFORD_TINKLENBERG-MPBR16,10.0.1.105 +ARRON_BOOKWALTER,ARRON_BOOKWALTER-MPBR16,10.0.1.106 +ERNEST_HOUTS,ERNEST_HOUTS-MPBR16,10.0.1.107 +MARIO_KOSIN,MARIO_KOSIN-MPBR16,10.0.1.108 +BESSIE_GILCREST,BESSIE_GILCREST-MPBR16,10.0.1.109 +CHARLES_SCHROEPFER,CHARLES_SCHROEPFER-MPBR16,10.0.1.110 +VIVIENNE_LIERMAN,VIVIENNE_LIERMAN-MPBR16,10.0.1.111 +TAMMIE_GUSCIORA,TAMMIE_GUSCIORA-MPBR16,10.0.1.112 +BERNARDO_BALDER,BERNARDO_BALDER-MPBR16,10.0.1.113 +HANG_BACKMON,HANG_BACKMON-MPBR16,10.0.1.114 +JESSE_ARGUETA,JESSE_ARGUETA-MPBR16,10.0.1.115 +KENNY_TEST,KENNY_TEST-MPBR16,10.0.1.116 +PATTY_FANTON,PATTY_FANTON-MPBR16,10.0.1.117 +DRUSILLA_WINCHENBACH,DRUSILLA_WINCHENBACH-MPBR16,10.0.1.118 +FORREST_DEBARDELABEN,FORREST_DEBARDELABEN-MPBR16,10.0.1.119 +VINCE_MENTO,VINCE_MENTO-MPBR16,10.0.1.120 +KARIE_COUTCHER,KARIE_COUTCHER-MPBR16,10.0.1.121 +NED_SCHULDER,NED_SCHULDER-MPBR16,10.0.1.122 +NIKOLE_TELEP,NIKOLE_TELEP-MPBR16,10.0.1.123 +JUSTINA_NAES,JUSTINA_NAES-MPBR16,10.0.1.124 +MAGDALENA_TONG,MAGDALENA_TONG-MPBR16,10.0.1.125 +FLOYD_SWOPE,FLOYD_SWOPE-MPBR16,10.0.1.126 +SHASTA_MICHITSCH,SHASTA_MICHITSCH-MPBR16,10.0.1.127 +ASHLYN_KNEIP,ASHLYN_KNEIP-MPBR16,10.0.1.128 +OLIMPIA_MANDERS,OLIMPIA_MANDERS-MPBR16,10.0.1.129 +ANTHONY_STANSBERRY,ANTHONY_STANSBERRY-MPBR16,10.0.1.130 +GILBERT_KLEIFGEN,GILBERT_KLEIFGEN-MPBR16,10.0.1.131 +KELLY_APPLEGARTH,KELLY_APPLEGARTH-MPBR16,10.0.1.132 +ANDREA_RATHROCK,ANDREA_RATHROCK-MPBR16,10.0.1.133 +KEN_WEIST,KEN_WEIST-MPBR16,10.0.1.134 +ALLIE_LIND,ALLIE_LIND-MPBR16,10.0.1.135 +BERNIE_GALLISHAW,BERNIE_GALLISHAW-MPBR16,10.0.1.136 +RUBEN_CHAUHAN,RUBEN_CHAUHAN-MPBR16,10.0.1.137 +TIMMY_SHRAMEK,TIMMY_SHRAMEK-MPBR16,10.0.1.138 +DIEDRA_NEUMAYER,DIEDRA_NEUMAYER-MPBR16,10.0.1.139 +SHERMAN_MALIS,SHERMAN_MALIS-MPBR16,10.0.1.140 +LORIE_DELASBOUR,LORIE_DELASBOUR-MPBR16,10.0.1.141 +NEVA_LAMPHIER,NEVA_LAMPHIER-MPBR16,10.0.1.142 +CARMEL_RUHNKE,CARMEL_RUHNKE-MPBR16,10.0.1.143 +CHIN_SACHE,CHIN_SACHE-MPBR16,10.0.1.144 +MINNIE_BURNSWORTH,MINNIE_BURNSWORTH-MPBR16,10.0.1.145 +CORINNE_DANA,CORINNE_DANA-MPBR16,10.0.1.146 +ROSINA_MARANDER,ROSINA_MARANDER-MPBR16,10.0.1.147 +ELINOR_RUDASILL,ELINOR_RUDASILL-MPBR16,10.0.1.148 +JACKIE_SEMPLE,JACKIE_SEMPLE-MPBR16,10.0.1.149 +ADELLA_READNOUR,ADELLA_READNOUR-MPBR16,10.0.1.150 +MARLON_GARNETTE,MARLON_GARNETTE-MPBR16,10.0.1.151 +DOROTHEA_ZENG,DOROTHEA_ZENG-MPBR16,10.0.1.152 +EMILY_MCCLINE,EMILY_MCCLINE-MPBR16,10.0.1.153 +RUBEN_BUSUTTIL,RUBEN_BUSUTTIL-MPBR16,10.0.1.154 +NISHA_BUIST,NISHA_BUIST-MPBR16,10.0.1.155 +ASA_HUTTEN,ASA_HUTTEN-MPBR16,10.0.1.156 +STEPHAN_CASTILO,STEPHAN_CASTILO-MPBR16,10.0.1.157 +SYLVIA_ZAUSCH,SYLVIA_ZAUSCH-MPBR16,10.0.1.158 +JOE_GRAHAM,JOE_GRAHAM-MPBR16,10.0.1.159 +CARRI_DETOMMASO,CARRI_DETOMMASO-MPBR16,10.0.1.160 +FRANCISCO_COLGROVE,FRANCISCO_COLGROVE-MPBR16,10.0.1.161 +CESAR_KOURI,CESAR_KOURI-MPBR16,10.0.1.162 +ALFONSO_BROSEY,ALFONSO_BROSEY-MPBR16,10.0.1.163 +MALCOLM_SWEITZER,MALCOLM_SWEITZER-MPBR16,10.0.1.164 +CLYDE_GIGANTE,CLYDE_GIGANTE-MPBR16,10.0.1.165 +JOYCELYN_ROMANSKI,JOYCELYN_ROMANSKI-MPBR16,10.0.1.166 +CAITLYN_WEST,CAITLYN_WEST-MPBR16,10.0.1.167 +WILLIAM_ENGELKEMIER,WILLIAM_ENGELKEMIER-MPBR16,10.0.1.168 +VIVIANA_INGERSON,VIVIANA_INGERSON-MPBR16,10.0.1.169 +MANUELA_NEISLER,MANUELA_NEISLER-MPBR16,10.0.1.170 +QUENTIN_GOELDNER,QUENTIN_GOELDNER-MPBR16,10.0.1.171 +ALISHA_LATSON,ALISHA_LATSON-MPBR16,10.0.1.172 +NATHAN_LORENZANA,NATHAN_LORENZANA-MPBR16,10.0.1.173 +EDMUND_GIZA,EDMUND_GIZA-MPBR16,10.0.1.174 +KENDRICK_TURRENTINE,KENDRICK_TURRENTINE-MPBR16,10.0.1.175 +BUDDY_CRATCH,BUDDY_CRATCH-MPBR16,10.0.1.176 +ALIA_LITCHFORD,ALIA_LITCHFORD-MPBR16,10.0.1.177 +IESHA_MEDEZ,IESHA_MEDEZ-MPBR16,10.0.1.178 +GABRIELLA_GRINDSTAFF,GABRIELLA_GRINDSTAFF-MPBR16,10.0.1.179 +MARGARITE_BESSARD,MARGARITE_BESSARD-MPBR16,10.0.1.180 +MILTON_WNUK,MILTON_WNUK-MPBR16,10.0.1.181 +CASEY_BARTONE,CASEY_BARTONE-MPBR16,10.0.1.182 +PEGGY_SORUM,PEGGY_SORUM-MPBR16,10.0.1.183 +MARCIA_PECKINPAUGH,MARCIA_PECKINPAUGH-MPBR16,10.0.1.184 +WILLA_BLASETTI,WILLA_BLASETTI-MPBR16,10.0.1.185 +JAVIER_DURALL,JAVIER_DURALL-MPBR16,10.0.1.186 +GAIL_SCHOBER,GAIL_SCHOBER-MPBR16,10.0.1.187 +TRACEY_HEARL,TRACEY_HEARL-MPBR16,10.0.1.188 +TORRIE_LABER,TORRIE_LABER-MPBR16,10.0.1.189 +DEVIN_BALINT,DEVIN_BALINT-MPBR16,10.0.1.190 +ANNALISA_RUF,ANNALISA_RUF-MPBR16,10.0.1.191 +LON_DEJOHN,LON_DEJOHN-MPBR16,10.0.1.192 +SANG_MCDUFFIE,SANG_MCDUFFIE-MPBR16,10.0.1.193 +TONY_AMAYA,TONY_AMAYA-MPBR16,10.0.1.194 +SERGIO_SADOWSKY,SERGIO_SADOWSKY-MPBR16,10.0.1.195 +THOMAS_DUBREUIL,THOMAS_DUBREUIL-MPBR16,10.0.1.196 +NICOLAS_SEIDL,NICOLAS_SEIDL-MPBR16,10.0.1.197 +IRA_JEFFRESS,IRA_JEFFRESS-MPBR16,10.0.1.198 +MELVIN_VILLEDA,MELVIN_VILLEDA-MPBR16,10.0.1.199 +DOMINICK_CAUTHON,DOMINICK_CAUTHON-MPBR16,10.0.1.200 +CLEORA_OGUIN,CLEORA_OGUIN-MPBR16,10.0.1.201 +ANNETTA_SAINTLOUIS,ANNETTA_SAINTLOUIS-MPBR16,10.0.1.202 +KARIE_ALCALDE,KARIE_ALCALDE-MPBR16,10.0.1.203 +EDMUND_FAIRLESS,EDMUND_FAIRLESS-MPBR16,10.0.1.204 +GARTH_TRAMBLE,GARTH_TRAMBLE-MPBR16,10.0.1.205 +PAOLA_SUAREZ,PAOLA_SUAREZ-MPBR16,10.0.1.206 +AUSTIN_LUPTON,AUSTIN_LUPTON-MPBR16,10.0.1.207 +MIGUEL_FANG,MIGUEL_FANG-MPBR16,10.0.1.208 +MELIDA_HEROD,MELIDA_HEROD-MPBR16,10.0.1.209 +NOAH_GALIK,NOAH_GALIK-MPBR16,10.0.1.210 +DENNA_ROLFE,DENNA_ROLFE-MPBR16,10.0.1.211 +MERI_HODA,MERI_HODA-MPBR16,10.0.1.212 +HARLAN_ODONALD,HARLAN_ODONALD-MPBR16,10.0.1.213 +ALLYSON_HENION,ALLYSON_HENION-MPBR16,10.0.1.214 +GARY_LARCH,GARY_LARCH-MPBR16,10.0.1.215 +PRINCE_PEARY,PRINCE_PEARY-MPBR16,10.0.1.216 +LURA_BARINGER,LURA_BARINGER-MPBR16,10.0.1.217 +DARNELL_TABER,DARNELL_TABER-MPBR16,10.0.1.218 +NORBERT_COCUZZA,NORBERT_COCUZZA-MPBR16,10.0.1.219 +DEVIN_GAYLORD,DEVIN_GAYLORD-MPBR16,10.0.1.220 +MAMIE_MACKEN,MAMIE_MACKEN-MPBR16,10.0.1.221 +ARLINE_HODGE,ARLINE_HODGE-MPBR16,10.0.1.222 +LESLIE_URBANO,LESLIE_URBANO-MPBR16,10.0.1.223 +KARISSA_OBERT,KARISSA_OBERT-MPBR16,10.0.1.224 +FREDERICK_ARBALLO,FREDERICK_ARBALLO-MPBR16,10.0.1.225 +STEWART_NOBLIN,STEWART_NOBLIN-MPBR16,10.0.1.226 +DEIRDRE_MIJARES,DEIRDRE_MIJARES-MPBR16,10.0.1.227 +GISELA_WESTBERG,GISELA_WESTBERG-MPBR16,10.0.1.228 +HAL_FRANCES,HAL_FRANCES-MPBR16,10.0.1.229 +JEAN_ZAYAC,JEAN_ZAYAC-MPBR16,10.0.1.230 +TODD_LATTRELL,TODD_LATTRELL-MPBR16,10.0.1.231 +AMPARO_SIRES,AMPARO_SIRES-MPBR16,10.0.1.232 +ROLAND_SHEROD,ROLAND_SHEROD-MPBR16,10.0.1.233 +LOUISE_ELSHANT,LOUISE_ELSHANT-MPBR16,10.0.1.234 +DOREEN_KAUTZ,DOREEN_KAUTZ-MPBR16,10.0.1.235 +ROGELIO_CHIULLI,ROGELIO_CHIULLI-MPBR16,10.0.1.236 +DARIO_GLIDEWELL,DARIO_GLIDEWELL-MPBR16,10.0.1.237 +LESLIE_VANSCOY,LESLIE_VANSCOY-MPBR16,10.0.1.238 +LEE_NIEVES,LEE_NIEVES-MPBR16,10.0.1.239 +LANDON_WIECK,LANDON_WIECK-MPBR16,10.0.1.240 +SIMONE_JUUL,SIMONE_JUUL-MPBR16,10.0.1.241 +REDA_DIETRICK,REDA_DIETRICK-MPBR16,10.0.1.242 +AKILAH_MAIETTA,AKILAH_MAIETTA-MPBR16,10.0.1.243 +RAYE_KINMAN,RAYE_KINMAN-MPBR16,10.0.1.244 +DELFINA_MIKKELSON,DELFINA_MIKKELSON-MPBR16,10.0.1.245 +ORVILLE_SETZLER,ORVILLE_SETZLER-MPBR16,10.0.1.246 +RHODA_MOLDAN,RHODA_MOLDAN-MPBR16,10.0.1.247 +TRISH_SCHILLINGER,TRISH_SCHILLINGER-MPBR16,10.0.1.248 +RODRIGO_SCROGGIN,RODRIGO_SCROGGIN-MPBR16,10.0.1.249 +STERLING_SHRINER,STERLING_SHRINER-MPBR16,10.0.1.250 +HARVEY_TAUBER,HARVEY_TAUBER-MPBR16,10.0.1.251 +CLIFF_MONTOUR,CLIFF_MONTOUR-MPBR16,10.0.1.252 +KURTIS_YARK,KURTIS_YARK-MPBR16,10.0.1.253 +COLLEEN_SLATE,COLLEEN_SLATE-MPBR16,10.0.1.254 +TEQUILA_GROSKREUTZ,TEQUILA_GROSKREUTZ-MPBR16,10.0.1.255 +RUBEN_ALGARIN,RUBEN_ALGARIN-MPBR16,10.0.2.0 +KENNETH_INNOCENTI,KENNETH_INNOCENTI-MPBR16,10.0.2.1 +CHARMAINE_ALTERMATT,CHARMAINE_ALTERMATT-MPBR16,10.0.2.2 +JOHN_MOJICA,JOHN_MOJICA-MPBR16,10.0.2.3 +FREDDY_DELORE,FREDDY_DELORE-MPBR16,10.0.2.4 +FLORENTINO_BLAY,FLORENTINO_BLAY-MPBR16,10.0.2.5 +LANE_ALEXNDER,LANE_ALEXNDER-MPBR16,10.0.2.6 +CAROLINA_FINICAL,CAROLINA_FINICAL-MPBR16,10.0.2.7 +COY_CASHION,COY_CASHION-MPBR16,10.0.2.8 +LISA_ERB,LISA_ERB-MPBR16,10.0.2.9 +NORENE_HODNETT,NORENE_HODNETT-MPBR16,10.0.2.10 +RENE_EDINGER,RENE_EDINGER-MPBR16,10.0.2.11 +LINCOLN_LUCIER,LINCOLN_LUCIER-MPBR16,10.0.2.12 +COLETTE_SLOVER,COLETTE_SLOVER-MPBR16,10.0.2.13 +WILBUR_DEDECKER,WILBUR_DEDECKER-MPBR16,10.0.2.14 +MARTHA_CHESSER,MARTHA_CHESSER-MPBR16,10.0.2.15 +FRANCOISE_LAVINE,FRANCOISE_LAVINE-MPBR16,10.0.2.16 +MARLEN_PAULSHOCK,MARLEN_PAULSHOCK-MPBR16,10.0.2.17 +JULENE_MOUSLEY,JULENE_MOUSLEY-MPBR16,10.0.2.18 +RUFUS_TREZZA,RUFUS_TREZZA-MPBR16,10.0.2.19 +SONNY_DEHNERT,SONNY_DEHNERT-MPBR16,10.0.2.20 +JON_PARVIN,JON_PARVIN-MPBR16,10.0.2.21 +TRINIDAD_SEEVERS,TRINIDAD_SEEVERS-MPBR16,10.0.2.22 +MYRON_WINFREY,MYRON_WINFREY-MPBR16,10.0.2.23 +TASHIA_KNOLTON,TASHIA_KNOLTON-MPBR16,10.0.2.24 +VERNON_CRIVELLO,VERNON_CRIVELLO-MPBR16,10.0.2.25 +CHANA_FRINK,CHANA_FRINK-MPBR16,10.0.2.26 +CHARLIE_REETZ,CHARLIE_REETZ-MPBR16,10.0.2.27 +OSVALDO_GANDY,OSVALDO_GANDY-MPBR16,10.0.2.28 +HONG_SEYMORE,HONG_SEYMORE-MPBR16,10.0.2.29 +CAROLA_RATTRAY,CAROLA_RATTRAY-MPBR16,10.0.2.30 +LANNY_VANDENBERGHE,LANNY_VANDENBERGHE-MPBR16,10.0.2.31 +LAVERN_LONGBOTHAM,LAVERN_LONGBOTHAM-MPBR16,10.0.2.32 +PATRICK_PELT,PATRICK_PELT-MPBR16,10.0.2.33 +MEREDITH_VANLUVEN,MEREDITH_VANLUVEN-MPBR16,10.0.2.34 +WILBUR_PALADINO,WILBUR_PALADINO-MPBR16,10.0.2.35 +CHESTER_STANKO,CHESTER_STANKO-MPBR16,10.0.2.36 +NANNIE_MONTS,NANNIE_MONTS-MPBR16,10.0.2.37 +SCOT_ROOD,SCOT_ROOD-MPBR16,10.0.2.38 +LILLY_WANK,LILLY_WANK-MPBR16,10.0.2.39 +ANTONIO_FATE,ANTONIO_FATE-MPBR16,10.0.2.40 +CARMINA_RIBAUDO,CARMINA_RIBAUDO-MPBR16,10.0.2.41 +DIAMOND_STAUCH,DIAMOND_STAUCH-MPBR16,10.0.2.42 +BRAD_LANDAVERDE,BRAD_LANDAVERDE-MPBR16,10.0.2.43 +FRANK_MICKLES,FRANK_MICKLES-MPBR16,10.0.2.44 +NELLIE_KAMIMURA,NELLIE_KAMIMURA-MPBR16,10.0.2.45 +TAWNY_KURIGER,TAWNY_KURIGER-MPBR16,10.0.2.46 +LAWRENCE_THORELL,LAWRENCE_THORELL-MPBR16,10.0.2.47 +TYLER_FONDOW,TYLER_FONDOW-MPBR16,10.0.2.48 +RUTH_ARMS,RUTH_ARMS-MPBR16,10.0.2.49 +ROMELIA_WIXTED,ROMELIA_WIXTED-MPBR16,10.0.2.50 +ROSALINDA_MINNIEFIELD,ROSALINDA_MINNIEFIELD-MPBR16,10.0.2.51 +HAL_GREAVER,HAL_GREAVER-MPBR16,10.0.2.52 +LARHONDA_GWALTNEY,LARHONDA_GWALTNEY-MPBR16,10.0.2.53 +DARLENE_REIAL,DARLENE_REIAL-MPBR16,10.0.2.54 +CLAUDE_ALLWARDT,CLAUDE_ALLWARDT-MPBR16,10.0.2.55 +FREDDY_PLITT,FREDDY_PLITT-MPBR16,10.0.2.56 +HORACIO_TRISKA,HORACIO_TRISKA-MPBR16,10.0.2.57 +JEFFREY_PETRILLA,JEFFREY_PETRILLA-MPBR16,10.0.2.58 +ROSEMARIE_PEAY,ROSEMARIE_PEAY-MPBR16,10.0.2.59 +EDDIE_MCCANTS,EDDIE_MCCANTS-MPBR16,10.0.2.60 +RON_JACKIEWICZ,RON_JACKIEWICZ-MPBR16,10.0.2.61 +DEE_GENZ,DEE_GENZ-MPBR16,10.0.2.62 +CHARLIE_CRONKHITE,CHARLIE_CRONKHITE-MPBR16,10.0.2.63 +ARDELL_NINKE,ARDELL_NINKE-MPBR16,10.0.2.64 +SHAWN_ASCENCIO,SHAWN_ASCENCIO-MPBR16,10.0.2.65 +MEGAN_REIGH,MEGAN_REIGH-MPBR16,10.0.2.66 +MIRA_NORRELL,MIRA_NORRELL-MPBR16,10.0.2.67 +JAKE_GALLAGHER,JAKE_GALLAGHER-MPBR16,10.0.2.68 +CAROLINA_MCDALE,CAROLINA_MCDALE-MPBR16,10.0.2.69 +BERRY_PHILLPS,BERRY_PHILLPS-MPBR16,10.0.2.70 +ROSEMARIE_FOUTCH,ROSEMARIE_FOUTCH-MPBR16,10.0.2.71 +ERNEST_RIDDER,ERNEST_RIDDER-MPBR16,10.0.2.72 +SIMON_DRAHEIM,SIMON_DRAHEIM-MPBR16,10.0.2.73 +ELMER_DAGNAN,ELMER_DAGNAN-MPBR16,10.0.2.74 +KYLE_ESAW,KYLE_ESAW-MPBR16,10.0.2.75 +KIRA_MADAGAN,KIRA_MADAGAN-MPBR16,10.0.2.76 +HANS_WIBBENS,HANS_WIBBENS-MPBR16,10.0.2.77 +RAY_CAVALIER,RAY_CAVALIER-MPBR16,10.0.2.78 +BEATRICE_CULBERT,BEATRICE_CULBERT-MPBR16,10.0.2.79 +KENNY_LEINONEN,KENNY_LEINONEN-MPBR16,10.0.2.80 +ESTER_CARRIER,ESTER_CARRIER-MPBR16,10.0.2.81 +BRIGETTE_HICIANO,BRIGETTE_HICIANO-MPBR16,10.0.2.82 +DOMINICK_GIRONDA,DOMINICK_GIRONDA-MPBR16,10.0.2.83 +DANA_KUHL,DANA_KUHL-MPBR16,10.0.2.84 +MARVEL_RYKERT,MARVEL_RYKERT-MPBR16,10.0.2.85 +TERRELL_SLY,TERRELL_SLY-MPBR16,10.0.2.86 +ANGELINA_DESROSIERS,ANGELINA_DESROSIERS-MPBR16,10.0.2.87 +MICHELLE_SEELIGER,MICHELLE_SEELIGER-MPBR16,10.0.2.88 +SCOTTY_SIGLIN,SCOTTY_SIGLIN-MPBR16,10.0.2.89 +ISAIAH_PANITZ,ISAIAH_PANITZ-MPBR16,10.0.2.90 +MATILDA_VASCONCELLOS,MATILDA_VASCONCELLOS-MPBR16,10.0.2.91 +VANDA_GILBERTSON,VANDA_GILBERTSON-MPBR16,10.0.2.92 +LARUE_ORTEGO,LARUE_ORTEGO-MPBR16,10.0.2.93 +JOYE_MICHELLI,JOYE_MICHELLI-MPBR16,10.0.2.94 +RICARDO_GOWERS,RICARDO_GOWERS-MPBR16,10.0.2.95 +STAR_SWEENY,STAR_SWEENY-MPBR16,10.0.2.96 +LOVIE_CONNOLLY,LOVIE_CONNOLLY-MPBR16,10.0.2.97 +SON_SCHRADER,SON_SCHRADER-MPBR16,10.0.2.98 +NICK_BONKOWSKI,NICK_BONKOWSKI-MPBR16,10.0.2.99 +SHANTAY_DEGRAVE,SHANTAY_DEGRAVE-MPBR16,10.0.2.100 +MICHELLE_MCCRACKER,MICHELLE_MCCRACKER-MPBR16,10.0.2.101 +MICHEAL_FINLAY,MICHEAL_FINLAY-MPBR16,10.0.2.102 +NELL_LOCKEN,NELL_LOCKEN-MPBR16,10.0.2.103 +REBECKA_AMSDELL,REBECKA_AMSDELL-MPBR16,10.0.2.104 +RUBIN_GREENLY,RUBIN_GREENLY-MPBR16,10.0.2.105 +ARCELIA_VILLANEUVA,ARCELIA_VILLANEUVA-MPBR16,10.0.2.106 +DANIKA_VANWAGNER,DANIKA_VANWAGNER-MPBR16,10.0.2.107 +BONNIE_TESTA,BONNIE_TESTA-MPBR16,10.0.2.108 +AUBREY_LAUTT,AUBREY_LAUTT-MPBR16,10.0.2.109 +JAY_STRATTON,JAY_STRATTON-MPBR16,10.0.2.110 +EDWIN_KAUPHUSMAN,EDWIN_KAUPHUSMAN-MPBR16,10.0.2.111 +IRA_GODLESKI,IRA_GODLESKI-MPBR16,10.0.2.112 +MIKE_TADLOCK,MIKE_TADLOCK-MPBR16,10.0.2.113 +MINNIE_MACHO,MINNIE_MACHO-MPBR16,10.0.2.114 +MARCOS_AMENT,MARCOS_AMENT-MPBR16,10.0.2.115 +ALETA_RODERICK,ALETA_RODERICK-MPBR16,10.0.2.116 +LOUIE_SCUDDER,LOUIE_SCUDDER-MPBR16,10.0.2.117 +ANTOINETTE_GIL,ANTOINETTE_GIL-MPBR16,10.0.2.118 +MAE_VICARS,MAE_VICARS-MPBR16,10.0.2.119 +TODD_ARMAS,TODD_ARMAS-MPBR16,10.0.2.120 +ASHLIE_FLING,ASHLIE_FLING-MPBR16,10.0.2.121 +JAKE_ALEKNA,JAKE_ALEKNA-MPBR16,10.0.2.122 +MICHELLE_HAROLDSON,MICHELLE_HAROLDSON-MPBR16,10.0.2.123 +JON_COLELLO,JON_COLELLO-MPBR16,10.0.2.124 +GILBERTO_SEK,GILBERTO_SEK-MPBR16,10.0.2.125 +HELLEN_BALESTRIERI,HELLEN_BALESTRIERI-MPBR16,10.0.2.126 +PERCY_SANTORE,PERCY_SANTORE-MPBR16,10.0.2.127 +NAOMI_OVERHULSER,NAOMI_OVERHULSER-MPBR16,10.0.2.128 +GERTUDE_RICHARDS,GERTUDE_RICHARDS-MPBR16,10.0.2.129 +GRETA_LASKEY,GRETA_LASKEY-MPBR16,10.0.2.130 +JOHNATHAN_MOBLEY,JOHNATHAN_MOBLEY-MPBR16,10.0.2.131 +LYNETTE_SCHAUMAN,LYNETTE_SCHAUMAN-MPBR16,10.0.2.132 +ROMA_TAMBLYN,ROMA_TAMBLYN-MPBR16,10.0.2.133 +EUGENIO_MANNELLA,EUGENIO_MANNELLA-MPBR16,10.0.2.134 +LANCE_SLOTEMAKER,LANCE_SLOTEMAKER-MPBR16,10.0.2.135 +JANELLE_PERRYMAN,JANELLE_PERRYMAN-MPBR16,10.0.2.136 +LAKESHA_KUYPER,LAKESHA_KUYPER-MPBR16,10.0.2.137 +MICKEY_BALLENSKY,MICKEY_BALLENSKY-MPBR16,10.0.2.138 +REYNALDO_FEDE,REYNALDO_FEDE-MPBR16,10.0.2.139 +KELLY_WEDLOCK,KELLY_WEDLOCK-MPBR16,10.0.2.140 +MOSES_TAPLEY,MOSES_TAPLEY-MPBR16,10.0.2.141 +BIANCA_GANGADYAL,BIANCA_GANGADYAL-MPBR16,10.0.2.142 +MILTON_DARGIN,MILTON_DARGIN-MPBR16,10.0.2.143 +IMOGENE_STENERSON,IMOGENE_STENERSON-MPBR16,10.0.2.144 +ARTIE_BADE,ARTIE_BADE-MPBR16,10.0.2.145 +WILFRED_DEGAETANO,WILFRED_DEGAETANO-MPBR16,10.0.2.146 +ANDRES_PEDROTTI,ANDRES_PEDROTTI-MPBR16,10.0.2.147 +TORY_PESTANO,TORY_PESTANO-MPBR16,10.0.2.148 +FRED_ZANGARA,FRED_ZANGARA-MPBR16,10.0.2.149 +IRA_BLILER,IRA_BLILER-MPBR16,10.0.2.150 +ALLAN_KYTE,ALLAN_KYTE-MPBR16,10.0.2.151 +LAVERNE_CALLICOAT,LAVERNE_CALLICOAT-MPBR16,10.0.2.152 +ARTURO_KILMARTIN,ARTURO_KILMARTIN-MPBR16,10.0.2.153 +TYLER_DERRICK,TYLER_DERRICK-MPBR16,10.0.2.154 +CARMELA_GRITSCH,CARMELA_GRITSCH-MPBR16,10.0.2.155 +CHRISTIAN_DARTER,CHRISTIAN_DARTER-MPBR16,10.0.2.156 +TESSIE_GOLDSBY,TESSIE_GOLDSBY-MPBR16,10.0.2.157 +ALLEGRA_MARAGNO,ALLEGRA_MARAGNO-MPBR16,10.0.2.158 +JEFFERSON_SIEWERS,JEFFERSON_SIEWERS-MPBR16,10.0.2.159 +LEO_HOOGLAND,LEO_HOOGLAND-MPBR16,10.0.2.160 +NANA_BEBEAU,NANA_BEBEAU-MPBR16,10.0.2.161 +ROBYN_HOLROYD,ROBYN_HOLROYD-MPBR16,10.0.2.162 +BETTE_UMBERGER,BETTE_UMBERGER-MPBR16,10.0.2.163 +RACHELL_LAYMON,RACHELL_LAYMON-MPBR16,10.0.2.164 +JERMAINE_DECOSTA,JERMAINE_DECOSTA-MPBR16,10.0.2.165 +DARRYL_THORESEN,DARRYL_THORESEN-MPBR16,10.0.2.166 +FRIEDA_MARANGONI,FRIEDA_MARANGONI-MPBR16,10.0.2.167 +CHONG_GIVENS,CHONG_GIVENS-MPBR16,10.0.2.168 +VERN_STEINER,VERN_STEINER-MPBR16,10.0.2.169 +JOSEPH_KINGTON,JOSEPH_KINGTON-MPBR16,10.0.2.170 +ANDRES_BJORNBERG,ANDRES_BJORNBERG-MPBR16,10.0.2.171 +DOYLE_EVERSMEYER,DOYLE_EVERSMEYER-MPBR16,10.0.2.172 +JAVIER_RACETTE,JAVIER_RACETTE-MPBR16,10.0.2.173 +DARRELL_MIHOR,DARRELL_MIHOR-MPBR16,10.0.2.174 +MYLES_TEDDER,MYLES_TEDDER-MPBR16,10.0.2.175 +RALPH_SKULTETY,RALPH_SKULTETY-MPBR16,10.0.2.176 +ART_GOLDFARB,ART_GOLDFARB-MPBR16,10.0.2.177 +BRYCE_AUGUSTIN,BRYCE_AUGUSTIN-MPBR16,10.0.2.178 +TRACY_OLSEN,TRACY_OLSEN-MPBR16,10.0.2.179 +JODEE_ZIRBEL,JODEE_ZIRBEL-MPBR16,10.0.2.180 +KIRSTEN_SMILER,KIRSTEN_SMILER-MPBR16,10.0.2.181 +CARYN_COMSTOCK,CARYN_COMSTOCK-MPBR16,10.0.2.182 +NANCY_ABERLE,NANCY_ABERLE-MPBR16,10.0.2.183 +DELENA_TATTERSHALL,DELENA_TATTERSHALL-MPBR16,10.0.2.184 +TRACEY_ATCHESON,TRACEY_ATCHESON-MPBR16,10.0.2.185 +KAYLEIGH_COURTEMANCHE,KAYLEIGH_COURTEMANCHE-MPBR16,10.0.2.186 +DONA_DADLANI,DONA_DADLANI-MPBR16,10.0.2.187 +MARCO_MAHA,MARCO_MAHA-MPBR16,10.0.2.188 +MALINDA_VALLIN,MALINDA_VALLIN-MPBR16,10.0.2.189 +ALLIE_MCENTYRE,ALLIE_MCENTYRE-MPBR16,10.0.2.190 +JASPER_GOLDSTON,JASPER_GOLDSTON-MPBR16,10.0.2.191 +BRYNN_GIST,BRYNN_GIST-MPBR16,10.0.2.192 +KIRBY_WICKEY,KIRBY_WICKEY-MPBR16,10.0.2.193 +RACHEL_WENTZ,RACHEL_WENTZ-MPBR16,10.0.2.194 +KIMIKO_ROOD,KIMIKO_ROOD-MPBR16,10.0.2.195 +LEISA_ESPOSTO,LEISA_ESPOSTO-MPBR16,10.0.2.196 +CHERI_BRINKMANN,CHERI_BRINKMANN-MPBR16,10.0.2.197 +VITO_PACHERO,VITO_PACHERO-MPBR16,10.0.2.198 +KRYSTYNA_TANNEHILL,KRYSTYNA_TANNEHILL-MPBR16,10.0.2.199 +TAYLOR_ESSARY,TAYLOR_ESSARY-MPBR16,10.0.2.200 +JOSEFINA_CRALL,JOSEFINA_CRALL-MPBR16,10.0.2.201 +THOMAS_PANNING,THOMAS_PANNING-MPBR16,10.0.2.202 +GRANT_MORREALE,GRANT_MORREALE-MPBR16,10.0.2.203 +EDWIN_VORWERK,EDWIN_VORWERK-MPBR16,10.0.2.204 +RANDALL_NIEHAUS,RANDALL_NIEHAUS-MPBR16,10.0.2.205 +MARTY_PORCHE,MARTY_PORCHE-MPBR16,10.0.2.206 +NERISSA_BEAUCAGE,NERISSA_BEAUCAGE-MPBR16,10.0.2.207 +ALTAGRACIA_SEDBERRY,ALTAGRACIA_SEDBERRY-MPBR16,10.0.2.208 +SERGIO_RAYSON,SERGIO_RAYSON-MPBR16,10.0.2.209 +TRACY_SNELLING,TRACY_SNELLING-MPBR16,10.0.2.210 +SANJUANA_TRINGALI,SANJUANA_TRINGALI-MPBR16,10.0.2.211 +LUTHER_THRAN,LUTHER_THRAN-MPBR16,10.0.2.212 +DANITA_BLOSS,DANITA_BLOSS-MPBR16,10.0.2.213 +RUFUS_WESLEY,RUFUS_WESLEY-MPBR16,10.0.2.214 +CAROLINE_LIVERMORE,CAROLINE_LIVERMORE-MPBR16,10.0.2.215 +LIZZIE_HERSH,LIZZIE_HERSH-MPBR16,10.0.2.216 +SHIRLEY_SANCE,SHIRLEY_SANCE-MPBR16,10.0.2.217 +ARON_PIGNATELLO,ARON_PIGNATELLO-MPBR16,10.0.2.218 +MICHEAL_CASKEY,MICHEAL_CASKEY-MPBR16,10.0.2.219 +NOEL_MELLOTT,NOEL_MELLOTT-MPBR16,10.0.2.220 +MARINA_MATO,MARINA_MATO-MPBR16,10.0.2.221 +ISIDRO_FANNING,ISIDRO_FANNING-MPBR16,10.0.2.222 +JOVITA_BEACHY,JOVITA_BEACHY-MPBR16,10.0.2.223 +KAREEM_SAYLER,KAREEM_SAYLER-MPBR16,10.0.2.224 +VINNIE_GILLUND,VINNIE_GILLUND-MPBR16,10.0.2.225 +KELSEY_SILVERHORN,KELSEY_SILVERHORN-MPBR16,10.0.2.226 +JERROLD_BOGUE,JERROLD_BOGUE-MPBR16,10.0.2.227 +ALECIA_WASOWSKI,ALECIA_WASOWSKI-MPBR16,10.0.2.228 +CLAUDE_SAGGESE,CLAUDE_SAGGESE-MPBR16,10.0.2.229 +KEELY_SMOLINSKY,KEELY_SMOLINSKY-MPBR16,10.0.2.230 +ALVIN_FINNELL,ALVIN_FINNELL-MPBR16,10.0.2.231 +FELIX_MAZZARIELLO,FELIX_MAZZARIELLO-MPBR16,10.0.2.232 +ARLA_KOTTERNA,ARLA_KOTTERNA-MPBR16,10.0.2.233 +EDMUND_LIVINGSTON,EDMUND_LIVINGSTON-MPBR16,10.0.2.234 +MAXWELL_CALCAGNO,MAXWELL_CALCAGNO-MPBR16,10.0.2.235 +CLAIR_HULCY,CLAIR_HULCY-MPBR16,10.0.2.236 +JOHN_SEVIGNY,JOHN_SEVIGNY-MPBR16,10.0.2.237 +KATELYN_SHAPPELL,KATELYN_SHAPPELL-MPBR16,10.0.2.238 +JOYE_NAVARETTE,JOYE_NAVARETTE-MPBR16,10.0.2.239 +IVA_KAPLAN,IVA_KAPLAN-MPBR16,10.0.2.240 +RONALD_SERVISS,RONALD_SERVISS-MPBR16,10.0.2.241 +FORREST_VALDES,FORREST_VALDES-MPBR16,10.0.2.242 +WARREN_GOLLNICK,WARREN_GOLLNICK-MPBR16,10.0.2.243 +VIOLA_BEDDOME,VIOLA_BEDDOME-MPBR16,10.0.2.244 +MARLANA_SAMMER,MARLANA_SAMMER-MPBR16,10.0.2.245 +ODESSA_CORLEW,ODESSA_CORLEW-MPBR16,10.0.2.246 +ORVILLE_PERINO,ORVILLE_PERINO-MPBR16,10.0.2.247 +JEFFRY_WHIPPS,JEFFRY_WHIPPS-MPBR16,10.0.2.248 +DARREN_CAMBRIDGE,DARREN_CAMBRIDGE-MPBR16,10.0.2.249 +KERRIE_MILAND,KERRIE_MILAND-MPBR16,10.0.2.250 +JOHNIE_EASTERDAY,JOHNIE_EASTERDAY-MPBR16,10.0.2.251 +DAN_DESPER,DAN_DESPER-MPBR16,10.0.2.252 +CARMEN_BEDSOLE,CARMEN_BEDSOLE-MPBR16,10.0.2.253 +RUTHIE_EICHNER,RUTHIE_EICHNER-MPBR16,10.0.2.254 +HOWARD_BERSON,HOWARD_BERSON-MPBR16,10.0.2.255 +SON_COSTALES,SON_COSTALES-MPBR16,10.0.3.0 +FANNIE_SCHARFF,FANNIE_SCHARFF-MPBR16,10.0.3.1 +ANDRE_MCKINNIS,ANDRE_MCKINNIS-MPBR16,10.0.3.2 +BARBRA_STAUDE,BARBRA_STAUDE-MPBR16,10.0.3.3 +CARROLL_MCMAKIN,CARROLL_MCMAKIN-MPBR16,10.0.3.4 +ANN_AUMEND,ANN_AUMEND-MPBR16,10.0.3.5 +PATRICK_FACEMIRE,PATRICK_FACEMIRE-MPBR16,10.0.3.6 +CAROLINE_HAKKILA,CAROLINE_HAKKILA-MPBR16,10.0.3.7 +JAMAR_HATKE,JAMAR_HATKE-MPBR16,10.0.3.8 +HUGH_HOVE,HUGH_HOVE-MPBR16,10.0.3.9 +SOPHIA_PAVLOV,SOPHIA_PAVLOV-MPBR16,10.0.3.10 +ANTON_VERMILLION,ANTON_VERMILLION-MPBR16,10.0.3.11 +KYRA_TWEED,KYRA_TWEED-MPBR16,10.0.3.12 +ELLIOT_GIBBON,ELLIOT_GIBBON-MPBR16,10.0.3.13 +DEIDRE_ANDROLEWICZ,DEIDRE_ANDROLEWICZ-MPBR16,10.0.3.14 +NORMAN_GERRITY,NORMAN_GERRITY-MPBR16,10.0.3.15 +JUNITA_TRUEHEART,JUNITA_TRUEHEART-MPBR16,10.0.3.16 +OFELIA_LOCKET,OFELIA_LOCKET-MPBR16,10.0.3.17 +SHIRLENE_VANDEHEY,SHIRLENE_VANDEHEY-MPBR16,10.0.3.18 +KATRICE_THIBEAULT,KATRICE_THIBEAULT-MPBR16,10.0.3.19 +EMORY_FIATO,EMORY_FIATO-MPBR16,10.0.3.20 +KRISTY_BACKLUND,KRISTY_BACKLUND-MPBR16,10.0.3.21 +ALEXANDRIA_LESSLEY,ALEXANDRIA_LESSLEY-MPBR16,10.0.3.22 +MICAELA_BRENES,MICAELA_BRENES-MPBR16,10.0.3.23 +ELFRIEDE_SCHMELZER,ELFRIEDE_SCHMELZER-MPBR16,10.0.3.24 +MAXWELL_TOBIN,MAXWELL_TOBIN-MPBR16,10.0.3.25 +LARISA_RANSFORD,LARISA_RANSFORD-MPBR16,10.0.3.26 +GUY_BALDINI,GUY_BALDINI-MPBR16,10.0.3.27 +JACQUELINE_BROOMFIELD,JACQUELINE_BROOMFIELD-MPBR16,10.0.3.28 +JENAE_NYHUS,JENAE_NYHUS-MPBR16,10.0.3.29 +CASSANDRA_GONSER,CASSANDRA_GONSER-MPBR16,10.0.3.30 +LAMONT_DAIRE,LAMONT_DAIRE-MPBR16,10.0.3.31 +WILLETTE_COOLBAUGH,WILLETTE_COOLBAUGH-MPBR16,10.0.3.32 +EULA_EICHHORST,EULA_EICHHORST-MPBR16,10.0.3.33 +CAROLYN_SCHERPING,CAROLYN_SCHERPING-MPBR16,10.0.3.34 +RICK_FLOYD,RICK_FLOYD-MPBR16,10.0.3.35 +ALANA_HINCHLIFFE,ALANA_HINCHLIFFE-MPBR16,10.0.3.36 +GONZALO_WIRTANEN,GONZALO_WIRTANEN-MPBR16,10.0.3.37 +UTE_PUEBLA,UTE_PUEBLA-MPBR16,10.0.3.38 +SUSIE_SILGUERO,SUSIE_SILGUERO-MPBR16,10.0.3.39 +AARON_BRAMAN,AARON_BRAMAN-MPBR16,10.0.3.40 +TENA_HARTLEN,TENA_HARTLEN-MPBR16,10.0.3.41 +ISSAC_SZWEJBKA,ISSAC_SZWEJBKA-MPBR16,10.0.3.42 +LEVI_ROTERMUND,LEVI_ROTERMUND-MPBR16,10.0.3.43 +MAUDIE_UNTERSEHER,MAUDIE_UNTERSEHER-MPBR16,10.0.3.44 +VELLA_POINTER,VELLA_POINTER-MPBR16,10.0.3.45 +MOLLY_GIESSLER,MOLLY_GIESSLER-MPBR16,10.0.3.46 +SCARLETT_BRINK,SCARLETT_BRINK-MPBR16,10.0.3.47 +BRENDAN_WONDER,BRENDAN_WONDER-MPBR16,10.0.3.48 +JUSTIN_CIRA,JUSTIN_CIRA-MPBR16,10.0.3.49 +NISHA_DYCHES,NISHA_DYCHES-MPBR16,10.0.3.50 +LESTER_MONAHAN,LESTER_MONAHAN-MPBR16,10.0.3.51 +DENIS_TAJ,DENIS_TAJ-MPBR16,10.0.3.52 +DAISEY_GOVIN,DAISEY_GOVIN-MPBR16,10.0.3.53 +TIMMY_DUL,TIMMY_DUL-MPBR16,10.0.3.54 +LEANDRO_KOBACK,LEANDRO_KOBACK-MPBR16,10.0.3.55 +FRED_BASSIL,FRED_BASSIL-MPBR16,10.0.3.56 +JANIE_LAMOREAUX,JANIE_LAMOREAUX-MPBR16,10.0.3.57 +ALLAN_GRANDSTAFF,ALLAN_GRANDSTAFF-MPBR16,10.0.3.58 +NOLAN_REMPE,NOLAN_REMPE-MPBR16,10.0.3.59 +LOREEN_FORRESTER,LOREEN_FORRESTER-MPBR16,10.0.3.60 +LINCOLN_COLLAZO,LINCOLN_COLLAZO-MPBR16,10.0.3.61 +LEVI_ECKLER,LEVI_ECKLER-MPBR16,10.0.3.62 +DARRIN_HAMMERLE,DARRIN_HAMMERLE-MPBR16,10.0.3.63 +TOSHA_EAGLE,TOSHA_EAGLE-MPBR16,10.0.3.64 +GARY_CISCO,GARY_CISCO-MPBR16,10.0.3.65 +TOBY_ROSKE,TOBY_ROSKE-MPBR16,10.0.3.66 +ROXANA_HOBGOOD,ROXANA_HOBGOOD-MPBR16,10.0.3.67 +NANNIE_BALDERSON,NANNIE_BALDERSON-MPBR16,10.0.3.68 +CARMA_KRACKER,CARMA_KRACKER-MPBR16,10.0.3.69 +ARRON_DENISTON,ARRON_DENISTON-MPBR16,10.0.3.70 +NORINE_BRADDOCK,NORINE_BRADDOCK-MPBR16,10.0.3.71 +RENE_LYDIA,RENE_LYDIA-MPBR16,10.0.3.72 +JERALD_SNELLEN,JERALD_SNELLEN-MPBR16,10.0.3.73 +KATRINA_BACOTE,KATRINA_BACOTE-MPBR16,10.0.3.74 +MACK_STEINKUEHLER,MACK_STEINKUEHLER-MPBR16,10.0.3.75 +AJA_WITRY,AJA_WITRY-MPBR16,10.0.3.76 +ALEC_ROBLEDO,ALEC_ROBLEDO-MPBR16,10.0.3.77 +TEQUILA_EBBIGHAUSEN,TEQUILA_EBBIGHAUSEN-MPBR16,10.0.3.78 +KENNETH_LANGILLE,KENNETH_LANGILLE-MPBR16,10.0.3.79 +MABLE_HUBBARD,MABLE_HUBBARD-MPBR16,10.0.3.80 +HIRAM_KELLERHOUSE,HIRAM_KELLERHOUSE-MPBR16,10.0.3.81 +MARLENE_NOLLORA,MARLENE_NOLLORA-MPBR16,10.0.3.82 +LOWELL_CRADDOCK,LOWELL_CRADDOCK-MPBR16,10.0.3.83 +FLOSSIE_ADORNO,FLOSSIE_ADORNO-MPBR16,10.0.3.84 +CARMEL_STEGEMANN,CARMEL_STEGEMANN-MPBR16,10.0.3.85 +VANITA_FOLKERS,VANITA_FOLKERS-MPBR16,10.0.3.86 +ANGELIKA_AHLF,ANGELIKA_AHLF-MPBR16,10.0.3.87 +DELORES_MALPHURS,DELORES_MALPHURS-MPBR16,10.0.3.88 +JAMIE_SIEG,JAMIE_SIEG-MPBR16,10.0.3.89 +JONATHAN_SUMBERA,JONATHAN_SUMBERA-MPBR16,10.0.3.90 +WONDA_WOLAVER,WONDA_WOLAVER-MPBR16,10.0.3.91 +CATHERINE_HUGGINS,CATHERINE_HUGGINS-MPBR16,10.0.3.92 +TAJUANA_GODFREY,TAJUANA_GODFREY-MPBR16,10.0.3.93 +ROSALIA_MCCLURE,ROSALIA_MCCLURE-MPBR16,10.0.3.94 +OTTO_MCCULLAH,OTTO_MCCULLAH-MPBR16,10.0.3.95 +DORTHA_WILDHABER,DORTHA_WILDHABER-MPBR16,10.0.3.96 +MARTHA_RICHARDT,MARTHA_RICHARDT-MPBR16,10.0.3.97 +EILEEN_BOEHMAN,EILEEN_BOEHMAN-MPBR16,10.0.3.98 +KATHRINE_SPAKE,KATHRINE_SPAKE-MPBR16,10.0.3.99 +HANNA_LAPLAUNT,HANNA_LAPLAUNT-MPBR16,10.0.3.100 +BILL_DALES,BILL_DALES-MPBR16,10.0.3.101 +EMILIE_CHONG,EMILIE_CHONG-MPBR16,10.0.3.102 +DENNIS_BARRETTE,DENNIS_BARRETTE-MPBR16,10.0.3.103 +ELISE_DONA,ELISE_DONA-MPBR16,10.0.3.104 +ORVILLE_MILITANO,ORVILLE_MILITANO-MPBR16,10.0.3.105 +FREDERICKA_SUH,FREDERICKA_SUH-MPBR16,10.0.3.106 +GARRY_DEZENZO,GARRY_DEZENZO-MPBR16,10.0.3.107 +LAVONDA_LEBLOND,LAVONDA_LEBLOND-MPBR16,10.0.3.108 +DARWIN_CAHEE,DARWIN_CAHEE-MPBR16,10.0.3.109 +LESLIE_SCHADE,LESLIE_SCHADE-MPBR16,10.0.3.110 +JENNY_FRAIZER,JENNY_FRAIZER-MPBR16,10.0.3.111 +LUCINA_GENIS,LUCINA_GENIS-MPBR16,10.0.3.112 +DANE_FENNELL,DANE_FENNELL-MPBR16,10.0.3.113 +STEFAN_SPEYRER,STEFAN_SPEYRER-MPBR16,10.0.3.114 +JUSTIN_GROMER,JUSTIN_GROMER-MPBR16,10.0.3.115 +JAE_MATTIX,JAE_MATTIX-MPBR16,10.0.3.116 +SAMUEL_KENEBREW,SAMUEL_KENEBREW-MPBR16,10.0.3.117 +ELVA_ARLINGHAUS,ELVA_ARLINGHAUS-MPBR16,10.0.3.118 +OSCAR_KEARSLEY,OSCAR_KEARSLEY-MPBR16,10.0.3.119 +LINETTE_ROHLING,LINETTE_ROHLING-MPBR16,10.0.3.120 +SHELA_SEGOUIA,SHELA_SEGOUIA-MPBR16,10.0.3.121 +PABLO_LINEWEAVER,PABLO_LINEWEAVER-MPBR16,10.0.3.122 +LAURENCE_GROSCLAUDE,LAURENCE_GROSCLAUDE-MPBR16,10.0.3.123 +DAVIS_COOLIDGE,DAVIS_COOLIDGE-MPBR16,10.0.3.124 +NIKKI_INGRASSIA,NIKKI_INGRASSIA-MPBR16,10.0.3.125 +JUDITH_DULIN,JUDITH_DULIN-MPBR16,10.0.3.126 +LANITA_REINEKE,LANITA_REINEKE-MPBR16,10.0.3.127 +NAOMA_LY,NAOMA_LY-MPBR16,10.0.3.128 +SHERRY_NEHER,SHERRY_NEHER-MPBR16,10.0.3.129 +WILSON_MANHART,WILSON_MANHART-MPBR16,10.0.3.130 +BRYCE_JEE,BRYCE_JEE-MPBR16,10.0.3.131 +HUNTER_HOLLIDAY,HUNTER_HOLLIDAY-MPBR16,10.0.3.132 +GARRY_MLENAR,GARRY_MLENAR-MPBR16,10.0.3.133 +DANE_DAVIS,DANE_DAVIS-MPBR16,10.0.3.134 +KIRBY_LOUDEN,KIRBY_LOUDEN-MPBR16,10.0.3.135 +LUZ_JIGGETTS,LUZ_JIGGETTS-MPBR16,10.0.3.136 +RICHARD_HAWKE,RICHARD_HAWKE-MPBR16,10.0.3.137 +THADDEUS_FOLLANSBEE,THADDEUS_FOLLANSBEE-MPBR16,10.0.3.138 +KARI_NESHEIM,KARI_NESHEIM-MPBR16,10.0.3.139 +YADIRA_BRASFIELD,YADIRA_BRASFIELD-MPBR16,10.0.3.140 +DEWAYNE_EREDIA,DEWAYNE_EREDIA-MPBR16,10.0.3.141 +CARMEL_WILL,CARMEL_WILL-MPBR16,10.0.3.142 +TRACIE_WILKERS,TRACIE_WILKERS-MPBR16,10.0.3.143 +DELANA_BEEDLE,DELANA_BEEDLE-MPBR16,10.0.3.144 +SAMMY_GRIPPI,SAMMY_GRIPPI-MPBR16,10.0.3.145 +ELOY_ATES,ELOY_ATES-MPBR16,10.0.3.146 +SANTOS_BLANKENSHIP,SANTOS_BLANKENSHIP-MPBR16,10.0.3.147 +ANNEMARIE_MURRI,ANNEMARIE_MURRI-MPBR16,10.0.3.148 +SALVADOR_LEATH,SALVADOR_LEATH-MPBR16,10.0.3.149 +KESHA_JARDIN,KESHA_JARDIN-MPBR16,10.0.3.150 +JANELL_HILLYARD,JANELL_HILLYARD-MPBR16,10.0.3.151 +DEIRDRE_DERANEY,DEIRDRE_DERANEY-MPBR16,10.0.3.152 +ELLIOTT_TRILL,ELLIOTT_TRILL-MPBR16,10.0.3.153 +EUGENIO_FEINSTEIN,EUGENIO_FEINSTEIN-MPBR16,10.0.3.154 +PAMALA_RONE,PAMALA_RONE-MPBR16,10.0.3.155 +TIMOTHY_NIEMCZYK,TIMOTHY_NIEMCZYK-MPBR16,10.0.3.156 +TERRENCE_AVANCE,TERRENCE_AVANCE-MPBR16,10.0.3.157 +ANNIE_BARRE,ANNIE_BARRE-MPBR16,10.0.3.158 +WADE_GROUNDS,WADE_GROUNDS-MPBR16,10.0.3.159 +SALVATORE_GOLDY,SALVATORE_GOLDY-MPBR16,10.0.3.160 +KENDAL_TACKITT,KENDAL_TACKITT-MPBR16,10.0.3.161 +CONSUELO_BUNN,CONSUELO_BUNN-MPBR16,10.0.3.162 +GILBERTO_METROKA,GILBERTO_METROKA-MPBR16,10.0.3.163 +KELVIN_JACQUIER,KELVIN_JACQUIER-MPBR16,10.0.3.164 +TORRIE_DAVI,TORRIE_DAVI-MPBR16,10.0.3.165 +MARCO_PECKA,MARCO_PECKA-MPBR16,10.0.3.166 +RICARDO_WILLIE,RICARDO_WILLIE-MPBR16,10.0.3.167 +CARMA_WILLIAMSEN,CARMA_WILLIAMSEN-MPBR16,10.0.3.168 +DORIS_SUCHECKI,DORIS_SUCHECKI-MPBR16,10.0.3.169 +DAVE_LEAN,DAVE_LEAN-MPBR16,10.0.3.170 +IAN_QUINTELA,IAN_QUINTELA-MPBR16,10.0.3.171 +SOLOMON_SIMCOE,SOLOMON_SIMCOE-MPBR16,10.0.3.172 +MERLE_ROKER,MERLE_ROKER-MPBR16,10.0.3.173 +DANIEL_ORELLANO,DANIEL_ORELLANO-MPBR16,10.0.3.174 +LORINDA_LYALLS,LORINDA_LYALLS-MPBR16,10.0.3.175 +GENA_KIRCHER,GENA_KIRCHER-MPBR16,10.0.3.176 +MOISES_TSUKAMOTO,MOISES_TSUKAMOTO-MPBR16,10.0.3.177 +CHAD_CUESTAS,CHAD_CUESTAS-MPBR16,10.0.3.178 +TIMMY_GEACH,TIMMY_GEACH-MPBR16,10.0.3.179 +ADRIENE_BRANDNER,ADRIENE_BRANDNER-MPBR16,10.0.3.180 +ZOFIA_HALLAHAN,ZOFIA_HALLAHAN-MPBR16,10.0.3.181 +EVANGELINE_NEAVE,EVANGELINE_NEAVE-MPBR16,10.0.3.182 +DWAIN_MADARIAGA,DWAIN_MADARIAGA-MPBR16,10.0.3.183 +CHRIS_FLEWELLEN,CHRIS_FLEWELLEN-MPBR16,10.0.3.184 +VICTOR_MUNKBERG,VICTOR_MUNKBERG-MPBR16,10.0.3.185 +ELDORA_MANFREDONIA,ELDORA_MANFREDONIA-MPBR16,10.0.3.186 +LEONARDO_WEILER,LEONARDO_WEILER-MPBR16,10.0.3.187 +CELIA_MALONE,CELIA_MALONE-MPBR16,10.0.3.188 +BROCK_ECKERT,BROCK_ECKERT-MPBR16,10.0.3.189 +ARDITH_JUNIUS,ARDITH_JUNIUS-MPBR16,10.0.3.190 +LEONEL_LEAVELL,LEONEL_LEAVELL-MPBR16,10.0.3.191 +LAVINIA_MEINERS,LAVINIA_MEINERS-MPBR16,10.0.3.192 +KERRIE_WITTKE,KERRIE_WITTKE-MPBR16,10.0.3.193 +META_COZZONE,META_COZZONE-MPBR16,10.0.3.194 +LINDSAY_HENK,LINDSAY_HENK-MPBR16,10.0.3.195 +DAPHNE_TAI,DAPHNE_TAI-MPBR16,10.0.3.196 +ABBEY_MORREN,ABBEY_MORREN-MPBR16,10.0.3.197 +BONITA_NJOKU,BONITA_NJOKU-MPBR16,10.0.3.198 +HERSCHEL_LABORDE,HERSCHEL_LABORDE-MPBR16,10.0.3.199 +DUSTIN_SCAGGS,DUSTIN_SCAGGS-MPBR16,10.0.3.200 +BETHANN_COYER,BETHANN_COYER-MPBR16,10.0.3.201 +LLOYD_LEDSOME,LLOYD_LEDSOME-MPBR16,10.0.3.202 +CHET_TERZO,CHET_TERZO-MPBR16,10.0.3.203 +KYLE_PICARELLO,KYLE_PICARELLO-MPBR16,10.0.3.204 +DARIN_CORKRAN,DARIN_CORKRAN-MPBR16,10.0.3.205 +PETE_STOKE,PETE_STOKE-MPBR16,10.0.3.206 +ROSELLA_MORRISROE,ROSELLA_MORRISROE-MPBR16,10.0.3.207 +LEONARDO_KOGAN,LEONARDO_KOGAN-MPBR16,10.0.3.208 +JAYSON_STUNKARD,JAYSON_STUNKARD-MPBR16,10.0.3.209 +CECIL_BURGHER,CECIL_BURGHER-MPBR16,10.0.3.210 +HORTENCIA_KISH,HORTENCIA_KISH-MPBR16,10.0.3.211 +KINDRA_PUNG,KINDRA_PUNG-MPBR16,10.0.3.212 +JOSHUA_KYM,JOSHUA_KYM-MPBR16,10.0.3.213 +BILLY_ZAHN,BILLY_ZAHN-MPBR16,10.0.3.214 +ADRIAN_SCHELLMAN,ADRIAN_SCHELLMAN-MPBR16,10.0.3.215 +OLA_LENOCH,OLA_LENOCH-MPBR16,10.0.3.216 +EARNEST_PALERMO,EARNEST_PALERMO-MPBR16,10.0.3.217 +SUZIE_HUCKABAY,SUZIE_HUCKABAY-MPBR16,10.0.3.218 +QUINN_STUBBLEFIELD,QUINN_STUBBLEFIELD-MPBR16,10.0.3.219 +LUE_MAROHL,LUE_MAROHL-MPBR16,10.0.3.220 +CECIL_FRAPPIER,CECIL_FRAPPIER-MPBR16,10.0.3.221 +JERALD_DIKEMAN,JERALD_DIKEMAN-MPBR16,10.0.3.222 +DEANNA_DECARLO,DEANNA_DECARLO-MPBR16,10.0.3.223 +NICKOLAS_ALBERTO,NICKOLAS_ALBERTO-MPBR16,10.0.3.224 +BENITA_GORENFLO,BENITA_GORENFLO-MPBR16,10.0.3.225 +EUGENIA_VERIATO,EUGENIA_VERIATO-MPBR16,10.0.3.226 +DARIUS_PORTZ,DARIUS_PORTZ-MPBR16,10.0.3.227 +JULES_FANE,JULES_FANE-MPBR16,10.0.3.228 +CLIFFORD_ROBY,CLIFFORD_ROBY-MPBR16,10.0.3.229 +KARLA_RIEL,KARLA_RIEL-MPBR16,10.0.3.230 +ELAINE_RUCKER,ELAINE_RUCKER-MPBR16,10.0.3.231 diff --git a/splunk_eventgen/samples/userName.sample b/splunk_eventgen/samples/userName.sample new file mode 100644 index 00000000..73f1b6a7 --- /dev/null +++ b/splunk_eventgen/samples/userName.sample @@ -0,0 +1,1000 @@ +birodivulga162 +nildajcbonanno +ivettaadelima +pckomono +Looreeto +JooPedro1591 +claaarecurlingg +acciokcavote +JungD +InaraAllves +Haroldmcaol +xNessaa +stylesdofunk +meltemmeltemm +emapujig +cellphones4deal +amisisuvi +MegSeecharran95 +MargueritaYociu +MarcioBFasano +LeonoreKamelame +xecuwace +digufenob +celal1231 +TWOKeyyy +RolandeOkoye2 +Harriettapuum +oieps +mozzaSclavino +loverebeldesxd +livjeffries +keisanm +jaemchaney +ewequfu +alixscottx +Nathanssexyhats +JimmieElbahtity +ItsEmeline +Harrietsdeyj +AndreeOcheltree +AlizeRylieo +AiLuCanch +mandinfortson +erichforever +edukusisot +cuibefuz76 +WorldSophiaA +SharronSuyama54 +SadieTWx +SYKESorSTYLES +RachalLevering4 +McnicolNan3613 +MargariteGreide +LlewlynSa5ai629 +JustSoIssi +ItsGeovana +FatimahFlore472 +DoraAke7703 +Clorindarozne +BradieBeee +BeckieAnfinson5 +tanbasil +saubluchid75 +ribathfunk70 +onderaytac +never7112 +naathaanTW +mylovelyletter +mariaTW20041 +imjosev +georgiabethox +finleyfancy +elafufu +duhamor85 +chlosian +chloeh5595 +chaylamoro +ashlitleatherma +angelmunguia4 +aldawar14fb +aannadavidsson +oGuedes +LegallyBlonde +WilliamsTda +ValeskaAcevedo +TheTeaPartyRat +StevenAbdelaziz +SophieElise13 +SamiiHoran +RicardaSulejman +RetaThoeny3197 +NatoshaSherio +NaimaRandyy3 +FernandaHoran1D +Dannawpyrt +Daniellzeiro +Collenevbunk +CMSulistyo +BridgettVanslan +AlienConsulate +yofranzo +xGlitzMissMia +vivienxqrobison +vidaja87 +shania1D +ruemunnett81 +reactcore +rachelcurryTW +pedrod3001 +nathansykesluv +mariekxjwz +marbellagolden +malyon5a6er +malikmymonkey +keskinozlem +karolynfprbodna +jestrella04 +jessgoodisonx +iloveAMOJ +habkingtram73 +gobarep87 +ferryfbrndk +fapadoranonimo +ceturuxup +cathyorangeTW +ayunarolita +akumezopi +abiefebyan +franlindinhax +BrunoVinicius +Zoe98TW +TomsGoodgirl +ThatWhiteHoe +TasminChloee +TWAreMyStrength +SophiePeppinTW +Sofizamoloo +SharonKatner +Santosyzkir +SambaLivre +Rosemariegfbis +RichelleHirschy +Renitaikjzq +PortiaDiclaudio +PlanetaDoBieber +PhlyAhhSlim +NickieWillibran +NathanMyBF +MonikaByrdieu +MarenDobine9208 +MARIECAEN +LydaWarnack3486 +LuaTodaMinha +LeandroBoyligan +KonevelDaniele8 +KazukoGodfray69 +GoftonSi0bhan45 +GearldineMazurk +GaynellHannai +FlaviaKordas383 +FCOLuanRafael +EllieSykes2012 +DjDabPhlyte +DeneenGraciana5 +Deadraxfuam +Cyndyidorr +Contessasosdx +Colleenanaqe +CodyMartinn +Cinthiafanbx +Chayawkjpg +CasimiraSaam253 +BellinMa5hta461 +AyooCandyy +AlenKarabegovic +xoxoDIANEEExoxo +wizardQi +wh0thehellishe +vilmaramb88 +vestefi86 +thatsjoesmile +sungsik1 +smileinmyworld +sksduf8shf +semakrglu +saelkanderi +roonixr +roetracgil88 +rionm9 +rebeccass3 +realplanetkway +pokannews +piasihu82 +optima20004 +onehysoc +nisehorrrrn +mishatar +mindy135 +megaanbennett +mayu1128 +mahra1998 +ludulcete +liraro85 +kagaminbot +jessPmartinez +javiarduengo +inroebhuv76 +iGOTthatASS +iAmRoc +hrkztiharu +heframi84 +harrysbrilliant +givemethismile +favstar50es +fantasylakegolf +fablede72 +estriquilinawq +ericaholtwhite +currieeeee +clevpunto81 +clairedakin +cierraj2k11 +chelseaTWparker +captainmari +btobdi6 +brendamachado9 +bracuaskey74 +birodivulga163 +betaniacastillo +beautboutique +aziz7217 +asagrou84 +annacdr +angusbcfc +angletz +anecimiq +alzain247 +alyssaTW +aiz3319 +loveDrea +Soiceybaby +KellesahhBOSS +ItsTaeMina +YvonneSykesTW +YoungTaffer7377 +WazzupChile +TudoPelaMel +ThisISMama +Templos90 +TaynaPinkowski8 +SykesTWLover +Stevie0205TW +Stephanygfs +SheeiLaHdeez +SertorisJustina +RubiGautsch1987 +RociolovesJB +ReynaGotay9918 +Rapiika +PetraCredell667 +PerlaaSulvaran +NathanSexyBody +Naeex3 +MyLiifeDiegoM +MrBvlgari +MissMollyTW +MirianVittone30 +MexicoTrafico +MegaLestary +Mcveigh5ickie11 +Mansun4eva +MAUROAMAYA7 +Luv3liiSwagg +Lorieln5 +LizyFigueiredo +LittleMBR +LightfordTien86 +Lesleezouk2526 +LeenaLocatelli8 +LaurenTW1D +LauraBechara07 +LarisaMarcil334 +LICKonSAM +KoloN0na3020 +KidoChild22 +JungHosterman48 +JuliaJayTW +JerilynCuddihee +JaythanLarry +JasmineTWsykes +JacqueseAnn +JDBiebsNavy +Iwanthisblueyes +IrmgardOvington +HermineAbajian5 +HazzasNo1Girl +HardHouseDj +GrlzCalMeSwavey +Glennqxz +Geniocatil +GNJP +FredCuper +FernandoMoehrin +FeltA5line7388 +FatimaQuiroz +FCLoveyouHarry +EmelyMedina +Dinahvxq +DennyHEART +Daniellskkqv +DGAFLiveLife +CruzStrotman959 +CruddyKidd +Credunut +CourtnieQ +Clydexkvqv +ClaudiaSGerpe +Clarawbsbt +Claaricortazar +Christenawyzp +CherSwag +CharXTheWantedX +CatrinaCudmore6 +Carlyvazfb +CakesBieberTW +CCCStunnaRico +Brittenybji +BrianaAmisano69 +AshleighWinterh +ArdeliaWilridge +Annabellew5 +AngelsOfBiebs +AndreaRamos0621 +Aljannah1433H +AleenSavely +ALiaALanziQ8 +693yk +3faryBieber +1DMegC +zainelmohra +yqerexyno +xxlouiseexx +xreplacemyheart +xkuwaitya +xXlautjuuhhhXx +xJvdw +xFillizzx +xDelilaah +xBieberUSmile +winatawira98 +whojaaaxD +wendelpereira +vomafym +viiccttoorriia +vawanitix +vanessaLUVShg +uralekb +uptownworld +unerib75 +transformers89 +tonicruzgon +toafferan83 +tertibi83 +temordia +taigaca83 +taanisefossatti +supcaca77 +sukaeRTe +straatratx +stilcica72 +stelladsouz +stefou1 +spirovin82 +soulmate22 +slaykatart +sigbanan89 +shorouk93 +serotoninetkisi +samaradusj +saarahmartinez +saadromeh +rourkestudio +replaythepast +rbknews +raphaelandria +profhelder +privanun73 +phobubbfoun74 +parasemprebeld +pamellatainara +oupah +otacran89 +orawokuzu +oqree +onoxozo +omarneto12 +okytixabo +odDeneikerM +nohaduc83 +nanashiisapii +mnaay +misskleintjemoi +mishellear +mildmildmild +michsydis86 +melaniemelu +mdfernando +maysasantos17 +matorlo72 +maryannibrahim +marlonbukoski +magranefan90210 +mabalue +luzaliram +loveyoulikeido +lolabatista91 +litlversli77 +lisboami +lelegagaliam +leees0601 +lauprowac76 +lastapk +laristump +larissagoretti +laianerafaela +laahfactum +kurdispba79 +koltl17 +kinqsuperman +kinkindno82 +karolNjc +kakusei +justinAce +juniorfluzaoooo +jooydiz +joassis3 +joannaonthelake +jinkiey +jevysworld +jayshockad +jaquesk8 +j3nni3j +iugossip +itymagibus +itsvinilopes +itsMAM +imThugginThoo +ikhouvanjexp +iiAmDomo +iamDayshaLee +iadoreparade +itoninho +iTeamRebelde +iImagineJB +iHoop4Polo +iCarlaLecaro +hucohika +hospyoura75 +hlooy17 +himajin5589 +hercai87 +hellyeahsykes +head0rheart +hassanalghalia +haerica +habredealcanzar +gyufolra78 +grecolucas +geovanad +gemmaleighTW +gdf10 +gabiewn +gabeAlfassy +foreverwithchay +flexardum89 +ferryfebrian2 +fernandGiancarl +favstar100celeb +fatihbarin +fanningh5 +evengx1 +eternalloveJB +epucahiniw +emilybudgeTW +ellebTW +elizabethwise +edemewe +drumstick155 +drisoouzaa +dlo3a501 +dimspirit +dangerm0use +daddydoo +da7awii +countrygurl1112 +checkupmv +camilasst +businesskent +bubysq +britishsick +blakebritton +bigu +bethsinden +beribi83 +barberaalexpro +banaam1 +axoxynuc +awlule70 +apysesil +anjinha7 +andrypinheiro +anaismr132 +amorXputaria +amandagamer +amandiota +alunes71 +alexogugu +abreulemos +abosalah14 +abbahmakama +abapiwa +a7bk28 +sarahlynnX +robertoT +nacamadademi +mesnina +kimchee +iRoCkHolliSteR +dOUBLeDeeeez +flyGuuy +LoveHer +JellyyBeann +YvdW +YourDreams +SUPERMIKEx +PUREBlondiee +LucasButtowski +JacobsGirl +GuinhoTerrivel +DntGive2FUCKS +Buttabby +BabyJayy +AnaLorenzoniES +1234569 +Yulyuha1983 +Yulemerlodt9 +Yowsa777 +YouDamnDummy +YesungBread +Yassinekx4 +YHateJamarcus +XxRosanneeee +Wuichan +WorldOfMattL +VeroRivas +VannityBolwerk +VaniEscuDiosa +TyishaWeidower4 +Twittyfooty +TurQu +Trungx +TroolATK +TriiciiaBV +ToshikoP +Tishox6 +TheIconicBoyz +TheWanted4Life +TheBeowulf +ThatYouBeMe +ThatNiggJSwagg +TeddyMinnie1104 +TeamBoogGIFI +TeamPhlytePromo +TashaTheTurtle +TalkinToU +TWAbbieL +TW1DGMD3 +THCSports +SyriaFnn +SybilHalbrooks2 +Swannounnet +SwaggRick +StashYourWeed +SrtaPera +SpankyHanky123 +SpainbiebsBTR1D +SoyLoQeQuieres +Sosanxx +SophiaMarieify +Smileforstyles +SincerelyCashe +SinPasadoSV +SimonFurne5290 +SimonFudd +Shirleeyre +ShebaDavtyan362 +ShannonTWanted +ShannanTheard82 +ShaneEstelae +SexyBiebsBitch +SegurosBH +SamellaDetzel36 +SamanaLeanne +SabrinaMimii +SELFMADESKAT +Rosemaryhclnf +Roselynvgskn +RochiCalderini +RoAlvarenga +RideOfMyLife +RetweetsKWT +RekliSpor +ReganTW +RaffoTaffo +RachelBiipolar +QDSmilesPretty +PringleMe5ilyn2 +PhyliciaBaisa +Philomenafdqci +PeteMcVries +Paulaortjim +PatriciaDreamer +ParkersLaugh +Orlanee3 +Ok202o +OdeioFalsidades +ObsessWithZayn +Nohemiiy977 +Nm6 +Nikolasol +Nessagoregous +Naysilva +NaturalliBad +MszKeysha +MrDCsports +MooreTHEWANTED +MikaFreakazoid +MiguelFreitas +MigDT +MeuGuu +MeluchiMendez +Melissa13x +MelanieFUruguay +MeganeWerner +Mcanelly50MCWfq +MayaCeee +Maudiekgr +MattGotTheJuice +Mathioluiz +Mathbelliin +MarianaaNuunes +MariSaysSWAG +Marcelavms +MadlyOdd +MERTOS +LydiaHumess +LuablancofansFC +LuaMeuPeDeMulek +LoveMyTweeets +LoveKiidrauhl +LookAtTheStarss +Liluprieto +Lidipitoko +Leo4ss +LeiLeiyolo +LatinGirlSWAAG +Latias619bot +LadyTripz1 +LOEMPIAk +LKJPhotography +KulkeLashanda76 +KittenCh5ista66 +KimburleyD +KaysTWSykes +KatrineAasland +KarlyPraes +KaiserGDL +JuuhPiano +JuanJo7V +Jorgiit0oRG +JinCourt +JessicaaSykesTW +JazzBEENPretty +JayyBasilio +JaylenneIvanna +JRNoCricket +ItsSara1D +ItbieberOrDiie +IssacBEENRICH +Israhelldid911 +IsiahDearruda33 +ImWhoUWant +Ilovethose5boys +IwearTIArAs +IIrraaMcFly +Hulkanator +HollyWolff201 +HisAddiktion +HeroesRestart +HernettKaylene3 +Hedygicfp +HeCrazyOverTAM +HayleighGMD3x +HausOfMrYessCer +HassanAliQuresh +HPPatrono +GwenaaelleR +GuttaBtchLea +GuiiApolinario +GleudeCe0la8549 +GlennieBby +GiovannaPiccini +Ginaloveyou1 +GhadaMN +Gertietzi +GeritaMija3s +GabiReberte +GAMEX0VER +FreakyyB +FrasesGirlStar +Flykidjames +FloorrAlvarez +Flavio58 +FinleyJaedai +FcFamiliaGL +FarahBlackwater +FansDonJediondo +FLBieberTeam +FCchaysexyS2 +FCLuAr +EuQuisVcRestart +EstherWAYNE +EsAmorBelieber +Erickasxm +Epihk +EminemxKim +ElenaTwiterok +EleaseRulon3998 +DupontRene123 +DritJames +DoooshiiiI +DontCallMeBrah +DominiqueTineo2 +DizBruno +DivulgaKeizy2 +DiscoPanda +DieEnormous +Diamondsda +Deedraznjqn +DearOldBitter +DanielaCuellarr +DaisyyTheWanted +DaantjeKaspers +DaaniKM +CurlsRunDaworld +CreuDaRestart +Coriegjubp +ContessaCleven6 +ConcettaVannorm +CodyXBurguer +CienoBlanche491 +ChocoolaThii +CheutinVella421 +CheneePretty +CharlotteTW +ChantelHorsman4 +CeCeDaaatsMe +Catheyaaeml +Caseykidrauhl +CarolineFerra14 +CarleyTW +CaitGibbonsX +CachinhosDaMel +Bu2FulMASSACRE +BrigidaHoffmann +BriennaLee +BrendaGalea +BobbieStier6590 +BlessYaSoul +BlancESTdopant +BingoPlayersFan +BiinAjeel +BigDudechi +BiancaRaasch +BeylessMa5celen +Bethndwwg +Beforemylife +BeceneLaticia82 +BarbzloveNicki +BadGiiirl +BONECOINFRAVEL +BClementine +BBMQ8 +ArnitaLeys5788 +ArielDemo1 +ApoioOABR2 +AnnikenBrox +AndreaGlasche +Anastasia1905GS +Anais2610 +AmorAubrey +AmieeShaffner48 +AmandaZnz +Alansari42 +Airnais +AirAgenciesLtd +Adorethickems +AMOSORTILEGIO +A7maD25 +25SaRo0n45 +1literofvodka +1Girlciumenta +1Directionarry +1Darethesexxx +19abz +zyLvixD +zumbisemteta +zulu149er +zulfikarADNANI +zoeGmackay +zatchbell555 +yuko125s +youngnay113 +yosem7 +yeyo105 +yesikaMANZANO +yddubhaey +yassofsaad +xxLotjaa +xtyrzagioya +xrudoxod89 +xoxoCLO +xochloxo +xoNayyxo +xfleurtjeeeee +xcamilleloveyou +xbukeet +xLivingVintage +xXWHTNYXx +xTLMN +xSuzann01 +xShannaS +xSSEDDA +xRyaaannnnnn +xPaullaa +xNora +xJSV +xGivanoArnhem +xElevateGrande +xBrokenFake +x3CoOki3zx3 +x0xoMelanie +wzyrenato +wowitskidrauhl +worldrankin +wldkw +wikwikdy +wicovanO +whatsnextdaddy +welove1Dthemost +wcntv +watansport +wardah2020 +walkinthelena +waikhamon71 +voldemortbot +viihmedeirosED +viihkr +vicustarna +victoriaaarose +vemkTeeh +varavale +vanmathiias +v0iceoftreason +utesre81 +upovote +unmikerosas +unicornskingdom +undrgroundking +umsalman12 +umiushi1102 +ultimatezhanee +ulrhinoc82 +udonmarunomi +tweetinyamouth +tryfelynn +trueloka +trueShtOnly +triperim74 +tremyn +tradticha87 +tracitla81 +tororo72 +titdemon84 +timmacy +tigerhzthun +tiffanyvaleria1 +tiffanyhomie +thmovturin83 +thinkerlik +theycallmetara +thecomeUP +thekauaigirl +thatsbeth +thatgirlpinkey +thatMODELtype +thasonvez +thamiigomes +tfi1233 +termpapersonlin +taylorjamieson +talitaestudante +takerui +tahDeetz +tacbadec89 +tablope71 +swarsuschild85 +swaglikebiebs69 +suzanefurst +sunskysun +sunshinekissess +sualilit +stobypinz +stefanyilv +stefaniskil +staystrrrong +staystrongnsn +statweestics +startriotinme +srtabrunaevans +squaidslikewoe +sponhana89 +spicYtRoll +sophmayo +sophieeeeeeex +sonwarnings +smrivieri +smiledrauhl +slemanQ8 +sleekamna87 +skylar0158 +skotic +skittzylicious +sincerelyshella +simplyyjerrika +shyKassie1076 +shogal3yon +servantblessing +senann +seenCHRISnaked +seduKtiveKharm +sealine01 +sdewilde7 +schomwilo81 +scholexef80 +sayyykayleee +savaburry +sarittaa +sarahchancer +saraa31 +sanchezjuanelo +sanjack2001 +samwoote70 +sammi098 +sammiamm +samelahaheuil +samcostello1 +samarkandya +sadybamfx3 +sabrinagoularts +sshauna +ruanmt +roscentno87 +rorroAsdf +rooaguiar +ronnocharas +romerluc +rojonikanta +roisiningle +rissyrisss +rirakkunaX +rienoonpa81 +richieboyswag +riasleekit83 +reutersMarketN +renverbto71 +rentacoderuk +reinventellie +reikazannge +reginexybeer +raymondoesit +rarityguide +raganmckenzi +rafatoda +rafaela1352 +radheam +rachiebabyxo +rabialex +queissorapaiz +purrttykitty \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents.sample b/splunk_eventgen/samples/useragents.sample new file mode 100644 index 00000000..5f021476 --- /dev/null +++ b/splunk_eventgen/samples/useragents.sample @@ -0,0 +1,84 @@ +Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 +BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ +Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 +Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] +BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 +Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/useragents_desktop.sample b/splunk_eventgen/samples/useragents_desktop.sample new file mode 100644 index 00000000..46d79f71 --- /dev/null +++ b/splunk_eventgen/samples/useragents_desktop.sample @@ -0,0 +1,75 @@ +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0) +Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0) +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9) AppleWebKit/537.71 (KHTML, like Gecko) Version/7.0 Safari/537.71 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/28.0.1500.71 Chrome/28.0.1500.71 Safari/537.36 +Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.66 Safari/537.36 +Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Firefox/24.0 +Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0) +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.65 Safari/537.36 +Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36 +Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.66 Safari/537.36 diff --git a/splunk_eventgen/samples/useragents_mobile.sample b/splunk_eventgen/samples/useragents_mobile.sample new file mode 100644 index 00000000..5f021476 --- /dev/null +++ b/splunk_eventgen/samples/useragents_mobile.sample @@ -0,0 +1,84 @@ +Mozilla/5.0 (Linux; U; Android 2.3.7; fr-fr; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/Pelephone;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; nb-no; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; zh-cn; MI-ONE Plus Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC Build/5.5.1_84_DBN-62_MR-11) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/vodafoneUK;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) 1Password/3.6.1/361009 (like Mobile/8C148 Safari/6533.18.5) +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; ADR6400L Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6350 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/AT&T;FBID/phone;FBLC/en_US;FBSF/2.0] +Mozilla/5.0 (Linux; U; Android 2.2.3; en-us; Droid Build/FRK76) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; CPU OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 +BlackBerry9300/5.0.0.955 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 3.1; de-de; GT-P7510 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J3 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_6 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E200 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; en_US) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad1,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/en_US;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.3; en-ca; SAMSUNG-SGH-I997R Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.261 Mobile Safari/534.11+ +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; CPU OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPod; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; es-es) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9A405 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; HUAWEI-M860 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Android; Linux armv7l; rv:8.0) Gecko/20111104 Firefox/8.0 Fennec/8.0 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID3 Build/5.5.1_84_D3G-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Transformer TF101 Build/HTK75) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_7 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E303 Safari/6533.18.5 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9850; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.374 Mobile Safari/534.11+ +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; DROIDX Build/4.5.1_57_DX5-35) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; Sprint APA9292KT Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_10 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8E600 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Incredible 2 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.526 Mobile Safari/534.8+ +Mozilla/5.0 (Linux; U; Android 2.3.3; ro-ro; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7E18 Safari/528.16 +Mozilla/5.0 (Linux; U; Android 2.2; en-us; Comet Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; DROID BIONIC 4G Build/5.5.1_84_DBN-55) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SPH-M930BST Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +BlackBerry9000/4.6.0.297 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102 +Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SAMSUNG-SGH-I927 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; CPU iPhone OS 5_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3 +Mozilla/5.0 (iPad; U; CPU iPhone OS 5_0_1 like Mac OS X; zh_TW) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPad2,1;FBMD/iPad;FBSN/iPhone OS;FBSV/5.0.1;FBSS/1; FBCR/;FBID/tablet;FBLC/zh_TW;FBSF/1.0] +BlackBerry9650/5.0.0.1006 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 +Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; en-GB) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+ +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8J2 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_0_1 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.2;FBBV/4020.0;FBDV/iPhone4,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/5.0.1;FBSS/2; FBCR/ +Mozilla/5.0 (Linux; U; Android 2.3.3; nl-nl; HTC_DesireHD_A9191 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPad; U; CPU OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5 +Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SonyEricssonLT15i Build/4.0.2.A.0.42) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; Sprint APX515CKT Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Opera/9.80 (Android; Opera Mini/6.5.27452/26.1235; U; en) Presto/2.8.119 Version/10.54 +Mozilla/5.0 (Linux; U; Android 2.3.4; ja-jp; SonyEricssonSO-03C Build/4.0.1.C.1.9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.7; en-us; GT-I9100 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_5 like Mac OS X; en-gb) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5 +Mozilla/5.0 (Linux; U; Android 2.1-update1; en-gb; Milestone Build/SHOLS_U2_02.36.0) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 +Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I9000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.5; ja-jp; SC-02C Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 2.3.4; ko-kr; HTC_X515E Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8B117 Safari/6531.22.7 (compatible; Googlebot-Mobile/2.1; +http://www.google.com/bot.html) +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; ja_JP) AppleWebKit (KHTML, like Gecko) Mobile [FBAN/FBForIPhone;FBAV/4.0.3;FBBV/4030.0;FBDV/iPhone2,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/4.3.3;FBSS/1; FBCR/??????????;FBID/phone;FBLC/ja_JP;FBSF/1.0] +Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7E18 +Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; GT-I9100 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 +Mozilla/5.0 (Linux; U; Android 3.2.1; en-us; Xoom Build/HTK75D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13 +BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/120 +Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_4 like Mac OS X; fr-fr) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8K2 Safari/6533.18.5 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv new file mode 100644 index 00000000..383a15ae --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest-aggregate.csv @@ -0,0 +1,847 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"2490.000000","40.695000","2490.000000","40.695000","2490.000000","40.695000","852.000000","0.000000",,,,,,,,,,,,"0.000000","334.500000","669.000000","15.000000","334.500000","334.500000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073320.000000","0.000000","2092704.000000","129468.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","1216348.000000","2073320.000000","2092704.000000","44548.000000","30124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","100.000000","103.000000","115.000000","115.000000","115.000000","0.000000","0.000000","0.000000","95.000000","97.000000","97.000000","113.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","738083.000000",,,,, +"2638.000000","41.390000","2638.000000","41.390000","2638.000000","41.390000","1101.000000","0.000000",,,,,,,,,,,,"7.000000","480.000000","952.000000","10.000000","480.000000","480.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073100.000000","0.000000","2092704.000000","129468.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","1216348.000000","2073100.000000","2092704.000000","44548.000000","30384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9160.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","101.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","96.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738103.000000",,,,, +"2310.000000","39.850000","2310.000000","39.850000","2310.000000","39.850000","766.000000","0.000000",,,,,,,,,,,,"0.000000","476.000000","950.000000","19.000000","476.000000","476.000000",,,,,,,,,,,"1132460.000000","1216348.000000","0.000000","0.000000","2073000.000000","0.000000","2092704.000000","129468.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","1216348.000000","2073000.000000","2092704.000000","44548.000000","30568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9184.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","98.000000","103.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","98.000000","93.000000","97.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738123.000000",,,,, +"976.000000","30.580000","976.000000","30.580000","976.000000","30.580000","473.000000","0.000000",,,,,,,,,,,,"0.000000","257.000000","514.000000","6526.000000","257.000000","257.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2073184.000000","0.000000","2092704.000000","129468.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","1090516.000000","2073184.000000","2092704.000000","44548.000000","30808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","81.000000","99.000000","115.000000","111.000000","111.000000","0.000000","0.000000","0.000000","97.000000","76.000000","93.000000","113.000000","107.000000","107.000000","160.000000","6000.000000","0.000000","738143.000000",,,,, +"1399.000000","32.570000","1399.000000","32.570000","1399.000000","32.570000","611.000000","0.000000",,,,,,,,,,,,"27.000000","331.500000","636.000000","4477.000000","331.500000","331.500000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072828.000000","0.000000","2092704.000000","129468.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","1090516.000000","2072828.000000","2092704.000000","44548.000000","31028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","65.000000","94.000000","115.000000","103.000000","109.000000","0.000000","0.000000","0.000000","96.000000","58.000000","88.000000","113.000000","95.000000","106.000000","160.000000","6000.000000","0.000000","738163.000000",,,,, +"2530.000000","37.880000","2530.000000","37.880000","2530.000000","37.880000","602.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","913.000000","460.000000","458.000000","458.000000",,,,,,,,,,,"1027604.000000","1090516.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","1090516.000000","2072764.000000","2092704.000000","44548.000000","31144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9244.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","67.000000","95.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","97.000000","60.000000","89.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738183.000000",,,,, +"1764.000000","32.285000","1764.000000","32.285000","1764.000000","32.285000","662.000000","0.000000",,,,,,,,,,,,"53.000000","11367.000000","22679.000000","167.000000","11367.000000","11367.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","1006632.000000","2072832.000000","2092704.000000","44548.000000","31000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9248.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","79.000000","93.000000","115.000000","104.000000","109.000000","0.000000","0.000000","0.000000","96.000000","71.000000","88.000000","113.000000","97.000000","106.000000","160.000000","6000.000000","0.000000","738203.000000",,,,, +"2557.000000","36.010000","2557.000000","36.010000","2557.000000","36.010000","526.000000","0.000000",,,,,,,,,,,,"9.000000","1922.500000","3828.000000","17.000000","1922.500000","1922.500000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2073048.000000","0.000000","2092704.000000","129468.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","1006632.000000","2073048.000000","2092704.000000","44548.000000","31196.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9280.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","104.000000","92.000000","93.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","87.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738223.000000",,,,, +"1743.000000","32.185000","1743.000000","32.185000","1743.000000","32.185000","581.000000","0.000000",,,,,,,,,,,,"828.000000","5305.000000","9768.000000","22.000000","5305.000000","5305.000000",,,,,,,,,,,"943716.000000","1006632.000000","0.000000","0.000000","2072736.000000","0.000000","2092704.000000","129468.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","1006632.000000","2072736.000000","2092704.000000","44548.000000","31608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9504.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","104.000000","81.000000","91.000000","115.000000","105.000000","109.000000","0.000000","0.000000","0.000000","96.000000","76.000000","85.000000","113.000000","104.000000","105.000000","160.000000","6000.000000","0.000000","738243.000000",,,,, +"2762.000000","36.475000","2762.000000","36.475000","2762.000000","36.475000","703.000000","0.000000",,,,,,,,,,,,"0.000000","620.500000","1241.000000","7.000000","620.500000","620.500000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072552.000000","0.000000","2092704.000000","129468.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","985660.000000","2072552.000000","2092704.000000","44548.000000","32284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","91.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","86.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738263.000000",,,,, +"2488.000000","35.190000","2488.000000","35.190000","2488.000000","35.190000","760.000000","0.000000",,,,,,,,,,,,"319.000000","486.000000","653.000000","13.000000","486.000000","486.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2072232.000000","0.000000","2092704.000000","129468.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","985660.000000","2072232.000000","2092704.000000","44548.000000","32680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","91.000000","115.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","87.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738283.000000",,,,, +"2542.000000","35.440000","2542.000000","35.440000","2542.000000","35.440000","739.000000","0.000000",,,,,,,,,,,,"1443.000000","1058.000000","673.000000","7.000000","1058.000000","1058.000000",,,,,,,,,,,"922744.000000","985660.000000","0.000000","0.000000","2071664.000000","0.000000","2092704.000000","129468.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","985660.000000","2071664.000000","2092704.000000","44548.000000","33392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","103.000000","90.000000","114.000000","109.000000","109.000000","0.000000","0.000000","0.000000","96.000000","97.000000","85.000000","113.000000","109.000000","106.000000","160.000000","6000.000000","0.000000","738303.000000",,,,, +"2921.000000","39.720000","2921.000000","39.720000","2921.000000","39.720000","439.000000","0.000000",,,,,,,,,,,,"822.000000","1148.000000","1473.000000","18.000000","1148.000000","1148.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071668.000000","0.000000","2092704.000000","129468.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1090516.000000","2071668.000000","2092704.000000","44548.000000","33780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","104.000000","91.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","98.000000","86.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738323.000000",,,,, +"1933.000000","35.075000","1933.000000","35.075000","1933.000000","35.075000","630.000000","0.000000",,,,,,,,,,,,"3822.000000","2383.000000","944.000000","3.000000","2383.000000","2383.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1090516.000000","2071532.000000","2092704.000000","44548.000000","33792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","92.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738343.000000",,,,, +"2517.000000","37.820000","2517.000000","37.820000","2517.000000","37.820000","498.000000","0.000000",,,,,,,,,,,,"1862.000000","1160.000000","458.000000","1.000000","1160.000000","1160.000000",,,,,,,,,,,"880800.000000","1090516.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1090516.000000","2071288.000000","2092704.000000","44548.000000","34092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","89.000000","115.000000","116.000000","109.000000","0.000000","0.000000","0.000000","96.000000","93.000000","84.000000","113.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","738363.000000",,,,, +"2278.000000","42.200000","2278.000000","42.200000","2278.000000","42.200000","640.000000","0.000000",,,,,,,,,,,,"1684.000000","1041.000000","398.000000","4.000000","1041.000000","1041.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070756.000000","0.000000","2092704.000000","129468.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","1321204.000000","2070756.000000","2092704.000000","44548.000000","34468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","94.000000","90.000000","115.000000","108.000000","109.000000","0.000000","0.000000","0.000000","96.000000","85.000000","83.000000","113.000000","97.000000","107.000000","160.000000","6000.000000","0.000000","738383.000000",,,,, +"1994.000000","40.870000","1994.000000","40.870000","1994.000000","40.870000","1052.000000","0.000000",,,,,,,,,,,,"1308.000000","831.000000","354.000000","3.000000","831.000000","831.000000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070720.000000","0.000000","2092704.000000","129468.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","1321204.000000","2070720.000000","2092704.000000","44548.000000","33964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","97.000000","88.000000","115.000000","108.000000","107.000000","0.000000","0.000000","0.000000","96.000000","85.000000","82.000000","113.000000","97.000000","104.000000","160.000000","6000.000000","0.000000","738403.000000",,,,, +"2356.000000","42.570000","2356.000000","42.570000","2356.000000","42.570000","785.000000","0.000000",,,,,,,,,,,,"87.000000","111.500000","135.000000","8.000000","111.500000","111.500000",,,,,,,,,,,"880800.000000","1321204.000000","0.000000","0.000000","2070256.000000","0.000000","2092704.000000","129468.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","1321204.000000","2070256.000000","2092704.000000","44548.000000","34592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","95.000000","89.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","96.000000","83.000000","82.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738423.000000",,,,, +"1843.000000","45.155000","1843.000000","45.155000","1843.000000","45.155000","1227.000000","0.000000",,,,,,,,,,,,"506.000000","711.500000","914.000000","2.000000","711.500000","711.500000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069912.000000","0.000000","2092704.000000","129468.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","1530920.000000","2069912.000000","2092704.000000","44548.000000","34892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11988.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","104.000000","88.000000","91.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","78.000000","84.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738443.000000",,,,, +"2522.000000","48.350000","2522.000000","48.350000","2522.000000","48.350000","753.000000","0.000000",,,,,,,,,,,,"0.000000","126.000000","251.000000","10.000000","126.000000","126.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069700.000000","0.000000","2092704.000000","129468.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","1530920.000000","2069700.000000","2092704.000000","44548.000000","35180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12132.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","104.000000","93.000000","94.000000","115.000000","106.000000","107.000000","0.000000","0.000000","0.000000","95.000000","84.000000","87.000000","113.000000","104.000000","104.000000","160.000000","6000.000000","0.000000","738463.000000",,,,, +"3579.000000","53.315000","3579.000000","53.315000","3579.000000","53.315000","729.000000","0.000000",,,,,,,,,,,,"190.000000","751.000000","1306.000000","4.000000","751.000000","751.000000",,,,,,,,,,,"859832.000000","1530920.000000","0.000000","0.000000","2069508.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","1530920.000000","2069508.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12236.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","105.000000","103.000000","96.000000","115.000000","204.000000","108.000000","0.000000","0.000000","0.000000","96.000000","95.000000","89.000000","114.000000","204.000000","107.000000","160.000000","6000.000000","0.000000","738483.000000",,,,, +"4342.000000","48.900000","4342.000000","48.900000","4342.000000","48.900000","1260.000000","0.000000",,,,,,,,,,,,"206.000000","859.000000","1510.000000","6.000000","859.000000","859.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070624.000000","0.000000","2092704.000000","129468.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","1195376.000000","2070624.000000","2092704.000000","44548.000000","33444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","132.000000","102.000000","120.000000","204.000000","116.000000","0.000000","0.000000","0.000000","97.000000","123.000000","94.000000","116.000000","204.000000","116.000000","160.000000","6000.000000","0.000000","738503.000000",,,,, +"4402.000000","49.180000","4402.000000","49.180000","4402.000000","49.180000","920.000000","0.000000",,,,,,,,,,,,"3.000000","579.500000","1155.000000","20.000000","579.500000","579.500000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","1195376.000000","2071000.000000","2092704.000000","44548.000000","32544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","108.000000","164.000000","109.000000","162.000000","204.000000","178.000000","0.000000","0.000000","0.000000","99.000000","154.000000","100.000000","145.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","738523.000000",,,,, +"3748.000000","46.110000","3748.000000","46.110000","3748.000000","46.110000","593.000000","0.000000",,,,,,,,,,,,"0.000000","577.000000","1153.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"817888.000000","1195376.000000","0.000000","0.000000","2070820.000000","0.000000","2092704.000000","129468.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","1195376.000000","2070820.000000","2092704.000000","44548.000000","32764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12676.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","109.000000","174.000000","115.000000","170.000000","201.000000","178.000000","0.000000","0.000000","0.000000","100.000000","157.000000","105.000000","148.000000","191.000000","159.000000","160.000000","6000.000000","0.000000","738542.000000",,,,, +"4747.000000","49.800000","4747.000000","49.800000","4747.000000","49.800000","853.000000","0.000000",,,,,,,,,,,,"121.000000","1635.000000","3148.000000","17.000000","1635.000000","1635.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","1153432.000000","2070732.000000","2092704.000000","44548.000000","32996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12904.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","179.000000","120.000000","171.000000","201.000000","187.000000","0.000000","0.000000","0.000000","101.000000","162.000000","109.000000","155.000000","191.000000","179.000000","160.000000","6000.000000","0.000000","738563.000000",,,,, +"4843.000000","50.255000","4843.000000","50.255000","4843.000000","50.255000","776.000000","0.000000",,,,,,,,,,,,"124.000000","588.000000","1051.000000","8.000000","588.000000","588.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071272.000000","0.000000","2092704.000000","129468.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","1153432.000000","2071272.000000","2092704.000000","44548.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12820.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","184.000000","127.000000","176.000000","206.000000","196.000000","0.000000","0.000000","0.000000","102.000000","167.000000","116.000000","158.000000","193.000000","187.000000","160.000000","6000.000000","0.000000","738583.000000",,,,, +"4740.000000","49.770000","4740.000000","49.770000","4740.000000","49.770000","880.000000","0.000000",,,,,,,,,,,,"202.000000","2118.000000","4033.000000","25.000000","2118.000000","2118.000000",,,,,,,,,,,"859832.000000","1153432.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","1153432.000000","2071092.000000","2092704.000000","44548.000000","32440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12980.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","111.000000","191.000000","132.000000","179.000000","206.000000","197.000000","0.000000","0.000000","0.000000","103.000000","178.000000","121.000000","166.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738603.000000",,,,, +"4778.000000","49.445000","4778.000000","49.445000","4778.000000","49.445000","880.000000","0.000000",,,,,,,,,,,,"1.000000","513.000000","1023.000000","21.000000","513.000000","513.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070612.000000","0.000000","2092704.000000","129468.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","1132460.000000","2070612.000000","2092704.000000","44548.000000","32660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","189.000000","137.000000","184.000000","206.000000","197.000000","0.000000","0.000000","0.000000","105.000000","177.000000","125.000000","170.000000","200.000000","188.000000","160.000000","6000.000000","0.000000","738623.000000",,,,, +"5030.000000","50.635000","5030.000000","50.635000","5030.000000","50.635000","967.000000","0.000000",,,,,,,,,,,,"1.000000","732.000000","1462.000000","19.000000","732.000000","732.000000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070224.000000","0.000000","2092704.000000","129468.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","1132460.000000","2070224.000000","2092704.000000","44548.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","193.000000","146.000000","188.000000","211.000000","201.000000","0.000000","0.000000","0.000000","105.000000","181.000000","134.000000","171.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738643.000000",,,,, +"4714.000000","49.150000","4714.000000","49.150000","4714.000000","49.150000","725.000000","0.000000",,,,,,,,,,,,"0.000000","450.500000","900.000000","29.000000","450.500000","450.500000",,,,,,,,,,,"1048576.000000","1132460.000000","0.000000","0.000000","2070060.000000","0.000000","2092704.000000","129468.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","1132460.000000","2070060.000000","2092704.000000","44548.000000","33056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","195.000000","152.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","107.000000","182.000000","139.000000","173.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738663.000000",,,,, +"4943.000000","49.725000","4943.000000","49.725000","4943.000000","49.725000","955.000000","0.000000",,,,,,,,,,,,"0.000000","678.500000","1356.000000","61.000000","678.500000","678.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2070072.000000","0.000000","2092704.000000","129468.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","1111488.000000","2070072.000000","2092704.000000","44548.000000","33300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","198.000000","157.000000","195.000000","211.000000","202.000000","0.000000","0.000000","0.000000","109.000000","185.000000","145.000000","179.000000","210.000000","194.000000","160.000000","6000.000000","0.000000","738683.000000",,,,, +"4142.000000","45.960000","4142.000000","45.960000","4142.000000","45.960000","960.000000","0.000000",,,,,,,,,,,,"0.000000","579.500000","1159.000000","18.000000","579.500000","579.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069740.000000","0.000000","2092704.000000","129468.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","1111488.000000","2069740.000000","2092704.000000","44548.000000","33576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","190.000000","165.000000","195.000000","202.000000","202.000000","0.000000","0.000000","0.000000","110.000000","173.000000","152.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738703.000000",,,,, +"3651.000000","43.655000","3651.000000","43.655000","3651.000000","43.655000","1227.000000","0.000000",,,,,,,,,,,,"1.000000","385.000000","769.000000","16.000000","385.000000","385.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2069296.000000","0.000000","2092704.000000","129468.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","1111488.000000","2069296.000000","2092704.000000","44548.000000","34024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14328.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","185.000000","170.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","111.000000","161.000000","155.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738723.000000",,,,, +"3442.000000","42.670000","3442.000000","42.670000","3442.000000","42.670000","1396.000000","0.000000",,,,,,,,,,,,"0.000000","377.500000","755.000000","11.000000","377.500000","377.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2069040.000000","0.000000","2092704.000000","129468.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","1111488.000000","2069040.000000","2092704.000000","44548.000000","33956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","122.000000","181.000000","176.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","144.000000","158.000000","182.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","738743.000000",,,,, +"4002.000000","45.300000","4002.000000","45.300000","4002.000000","45.300000","1442.000000","0.000000",,,,,,,,,,,,"1.000000","822.000000","1643.000000","36.000000","822.000000","822.000000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068752.000000","0.000000","2092704.000000","129468.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","1111488.000000","2068752.000000","2092704.000000","44548.000000","34104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14572.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","182.000000","183.000000","196.000000","202.000000","202.000000","0.000000","0.000000","0.000000","112.000000","139.000000","163.000000","182.000000","187.000000","199.000000","160.000000","6000.000000","0.000000","738763.000000",,,,, +"4596.000000","48.095000","4596.000000","48.095000","4596.000000","48.095000","2221.000000","0.000000",,,,,,,,,,,,"0.000000","525.500000","1050.000000","32.000000","525.500000","525.500000",,,,,,,,,,,"1090516.000000","1111488.000000","0.000000","0.000000","2068660.000000","0.000000","2092704.000000","129468.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","1111488.000000","2068660.000000","2092704.000000","44548.000000","34136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","126.000000","184.000000","186.000000","196.000000","197.000000","202.000000","0.000000","0.000000","0.000000","114.000000","147.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738783.000000",,,,, +"4316.000000","50.275000","4316.000000","50.275000","4316.000000","50.275000","1720.000000","0.000000",,,,,,,,,,,,"8.000000","437.000000","866.000000","24.000000","437.000000","437.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1258288.000000","2072780.000000","2092704.000000","44548.000000","29676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","189.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","116.000000","159.000000","165.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738803.000000",,,,, +"3743.000000","47.585000","3743.000000","47.585000","3743.000000","47.585000","1112.000000","0.000000",,,,,,,,,,,,"4.000000","485.500000","965.000000","18.000000","485.500000","485.500000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072720.000000","0.000000","2092704.000000","129468.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1258288.000000","2072720.000000","2092704.000000","44548.000000","29740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","186.000000","187.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","117.000000","158.000000","164.000000","185.000000","188.000000","194.000000","160.000000","6000.000000","0.000000","738823.000000",,,,, +"4026.000000","48.915000","4026.000000","48.915000","4026.000000","48.915000","927.000000","0.000000",,,,,,,,,,,,"4.000000","578.000000","1152.000000","24.000000","578.000000","578.000000",,,,,,,,,,,"1132460.000000","1258288.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1258288.000000","2072556.000000","2092704.000000","44548.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","185.000000","188.000000","197.000000","204.000000","202.000000","0.000000","0.000000","0.000000","118.000000","152.000000","164.000000","185.000000","177.000000","194.000000","160.000000","6000.000000","0.000000","738843.000000",,,,, +"4860.000000","50.835000","4860.000000","50.835000","4860.000000","50.835000","711.000000","0.000000",,,,,,,,,,,,"2.000000","565.000000","1127.000000","24.000000","565.000000","565.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072452.000000","0.000000","2092704.000000","129468.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","1174404.000000","2072452.000000","2092704.000000","44548.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","133.000000","184.000000","188.000000","198.000000","205.000000","204.000000","0.000000","0.000000","0.000000","119.000000","155.000000","164.000000","186.000000","191.000000","194.000000","160.000000","6000.000000","0.000000","738863.000000",,,,, +"4618.000000","49.695000","4618.000000","49.695000","4618.000000","49.695000","808.000000","0.000000",,,,,,,,,,,,"2.000000","548.000000","1094.000000","20.000000","548.000000","548.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072380.000000","0.000000","2092704.000000","129468.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1174404.000000","2072380.000000","2092704.000000","44548.000000","29864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","135.000000","193.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","122.000000","168.000000","164.000000","187.000000","204.000000","199.000000","160.000000","6000.000000","0.000000","738883.000000",,,,, +"5095.000000","51.940000","5095.000000","51.940000","5095.000000","51.940000","866.000000","0.000000",,,,,,,,,,,,"2.000000","501.000000","999.000000","20.000000","501.000000","501.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1174404.000000","2072296.000000","2092704.000000","44548.000000","29956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","137.000000","196.000000","189.000000","199.000000","207.000000","204.000000","0.000000","0.000000","0.000000","124.000000","181.000000","164.000000","188.000000","204.000000","197.000000","160.000000","6000.000000","0.000000","738902.000000",,,,, +"5609.000000","54.355000","5609.000000","54.355000","5609.000000","54.355000","587.000000","0.000000",,,,,,,,,,,,"2.000000","688.500000","1373.000000","24.000000","688.500000","688.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072300.000000","0.000000","2092704.000000","129468.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","1174404.000000","2072300.000000","2092704.000000","44548.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","201.000000","191.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","126.000000","192.000000","167.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738923.000000",,,,, +"4313.000000","48.265000","4313.000000","48.265000","4313.000000","48.265000","1361.000000","0.000000",,,,,,,,,,,,"3.000000","540.500000","1077.000000","47.000000","540.500000","540.500000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072344.000000","0.000000","2092704.000000","129468.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1174404.000000","2072344.000000","2092704.000000","44552.000000","30192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","197.000000","190.000000","201.000000","215.000000","207.000000","0.000000","0.000000","0.000000","128.000000","188.000000","165.000000","191.000000","215.000000","204.000000","160.000000","6000.000000","0.000000","738943.000000",,,,, +"4995.000000","51.465000","4995.000000","51.465000","4995.000000","51.465000","578.000000","0.000000",,,,,,,,,,,,"2.000000","520.000000","1038.000000","18.000000","520.000000","520.000000",,,,,,,,,,,"1153432.000000","1174404.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","1174404.000000","2072272.000000","2092704.000000","44552.000000","30272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","144.000000","198.000000","190.000000","202.000000","215.000000","207.000000","0.000000","0.000000","0.000000","129.000000","186.000000","165.000000","192.000000","215.000000","206.000000","160.000000","6000.000000","0.000000","738963.000000",,,,, +"4719.000000","48.675000","4719.000000","48.675000","4719.000000","48.675000","836.000000","0.000000",,,,,,,,,,,,"4.000000","669.500000","1334.000000","19.000000","669.500000","669.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072384.000000","0.000000","2092704.000000","129468.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","1111488.000000","2072384.000000","2092704.000000","44552.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","146.000000","192.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","131.000000","177.000000","165.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","738983.000000",,,,, +"4315.000000","46.770000","4315.000000","46.770000","4315.000000","46.770000","1524.000000","0.000000",,,,,,,,,,,,"2.000000","536.000000","1070.000000","19.000000","536.000000","536.000000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072120.000000","0.000000","2092704.000000","129468.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","1111488.000000","2072120.000000","2092704.000000","44552.000000","30432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","190.000000","189.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","133.000000","175.000000","166.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739003.000000",,,,, +"4192.000000","46.195000","4192.000000","46.195000","4192.000000","46.195000","1229.000000","0.000000",,,,,,,,,,,,"5.000000","837.500000","1670.000000","26.000000","837.500000","837.500000",,,,,,,,,,,"1006632.000000","1111488.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","1111488.000000","2072000.000000","2092704.000000","44552.000000","30564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","149.000000","186.000000","190.000000","202.000000","208.000000","207.000000","0.000000","0.000000","0.000000","134.000000","167.000000","167.000000","193.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","739023.000000",,,,, +"4681.000000","47.000000","4681.000000","47.000000","4681.000000","47.000000","779.000000","0.000000",,,,,,,,,,,,"14.000000","595.000000","1174.000000","27.000000","595.000000","595.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072064.000000","0.000000","2092704.000000","129468.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1048576.000000","2072064.000000","2092704.000000","44552.000000","30624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","186.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","137.000000","168.000000","170.000000","194.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739043.000000",,,,, +"4614.000000","46.685000","4614.000000","46.685000","4614.000000","46.685000","779.000000","0.000000",,,,,,,,,,,,"6.000000","520.500000","1033.000000","20.000000","520.500000","520.500000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1048576.000000","2071744.000000","2092704.000000","44552.000000","30720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","188.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","140.000000","169.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739062.000000",,,,, +"4836.000000","47.725000","4836.000000","47.725000","4836.000000","47.725000","1031.000000","0.000000",,,,,,,,,,,,"6.000000","748.000000","1490.000000","32.000000","748.000000","748.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2072592.000000","0.000000","2092704.000000","129468.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","1048576.000000","2072592.000000","2092704.000000","44552.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","190.000000","191.000000","202.000000","200.000000","207.000000","0.000000","0.000000","0.000000","142.000000","176.000000","172.000000","197.000000","198.000000","207.000000","160.000000","6000.000000","0.000000","739082.000000",,,,, +"5162.000000","49.750000","5162.000000","49.750000","5162.000000","49.750000","1246.000000","0.000000",,,,,,,,,,,,"7.000000","1318.500000","2630.000000","25.000000","1318.500000","1318.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072488.000000","0.000000","2092704.000000","129468.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1069544.000000","2072488.000000","2092704.000000","44552.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","194.000000","191.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","145.000000","179.000000","174.000000","198.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739103.000000",,,,, +"4937.000000","48.695000","4937.000000","48.695000","4937.000000","48.695000","973.000000","0.000000",,,,,,,,,,,,"32.000000","5722.000000","11411.000000","58.000000","5722.000000","5722.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2072740.000000","0.000000","2092704.000000","129468.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","1069544.000000","2072740.000000","2092704.000000","44552.000000","29392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10908.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","197.000000","193.000000","204.000000","209.000000","208.000000","0.000000","0.000000","0.000000","147.000000","186.000000","177.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739122.000000",,,,, +"5218.000000","53.515000","5218.000000","53.515000","5218.000000","53.515000","1141.000000","0.000000",,,,,,,,,,,,"7.000000","624.000000","1241.000000","29.000000","624.000000","624.000000",,,,,,,,,,,"1090516.000000","1216348.000000","0.000000","0.000000","2073024.000000","0.000000","2092704.000000","129468.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1216348.000000","2073024.000000","2092704.000000","44552.000000","29080.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","201.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","150.000000","192.000000","180.000000","199.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","739143.000000",,,,, +"4709.000000","56.125000","4709.000000","56.125000","4709.000000","56.125000","1074.000000","0.000000",,,,,,,,,,,,"60.000000","902.000000","1742.000000","25.000000","902.000000","902.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1426060.000000","2072912.000000","2092704.000000","44552.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","197.000000","194.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","151.000000","186.000000","181.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739162.000000",,,,, +"4164.000000","53.560000","4164.000000","53.560000","4164.000000","53.560000","1224.000000","0.000000",,,,,,,,,,,,"4712.000000","13172.500000","21633.000000","54.000000","13172.500000","13172.500000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072948.000000","0.000000","2092704.000000","129468.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","1426060.000000","2072948.000000","2092704.000000","44552.000000","29056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","188.000000","192.000000","205.000000","209.000000","209.000000","0.000000","0.000000","0.000000","153.000000","176.000000","179.000000","199.000000","201.000000","208.000000","160.000000","6000.000000","0.000000","739182.000000",,,,, +"4805.000000","56.575000","4805.000000","56.575000","4805.000000","56.575000","1034.000000","0.000000",,,,,,,,,,,,"17.000000","488.000000","958.000000","11.000000","488.000000","488.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072904.000000","0.000000","2092704.000000","129468.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","1426060.000000","2072904.000000","2092704.000000","44552.000000","29104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","184.000000","192.000000","205.000000","201.000000","209.000000","0.000000","0.000000","0.000000","155.000000","170.000000","178.000000","199.000000","197.000000","208.000000","160.000000","6000.000000","0.000000","739202.000000",,,,, +"4420.000000","54.765000","4420.000000","54.765000","4420.000000","54.765000","697.000000","0.000000",,,,,,,,,,,,"5.000000","381.000000","756.000000","8.000000","381.000000","381.000000",,,,,,,,,,,"1258288.000000","1426060.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1426060.000000","2072996.000000","2092704.000000","44552.000000","29012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","188.000000","191.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","156.000000","171.000000","176.000000","199.000000","204.000000","204.000000","160.000000","6000.000000","0.000000","739222.000000",,,,, +"4214.000000","59.300000","4214.000000","59.300000","4214.000000","59.300000","778.000000","0.000000",,,,,,,,,,,,"2.000000","560.000000","1118.000000","12.000000","560.000000","560.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072744.000000","0.000000","2092704.000000","129468.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1656748.000000","2072744.000000","2092704.000000","44552.000000","29088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","189.000000","190.000000","205.000000","209.000000","207.000000","0.000000","0.000000","0.000000","158.000000","169.000000","175.000000","200.000000","204.000000","201.000000","160.000000","6000.000000","0.000000","739242.000000",,,,, +"4482.000000","60.555000","4482.000000","60.555000","4482.000000","60.555000","682.000000","0.000000",,,,,,,,,,,,"2.000000","398.000000","794.000000","16.000000","398.000000","398.000000",,,,,,,,,,,"1468004.000000","1656748.000000","0.000000","0.000000","2072660.000000","0.000000","2092704.000000","129468.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1656748.000000","2072660.000000","2092704.000000","44552.000000","29172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","187.000000","190.000000","205.000000","209.000000","205.000000","0.000000","0.000000","0.000000","159.000000","163.000000","174.000000","200.000000","204.000000","200.000000","160.000000","6000.000000","0.000000","739262.000000",,,,, +"4657.000000","61.880000","4657.000000","61.880000","4657.000000","61.880000","1073.000000","0.000000",,,,,,,,,,,,"13.000000","292.000000","570.000000","15.000000","292.000000","292.000000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072832.000000","0.000000","2092704.000000","129468.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072832.000000","2092704.000000","44552.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","184.000000","190.000000","205.000000","208.000000","205.000000","0.000000","0.000000","0.000000","161.000000","162.000000","173.000000","200.000000","200.000000","199.000000","160.000000","6000.000000","0.000000","739282.000000",,,,, +"4548.000000","61.370000","4548.000000","61.370000","4548.000000","61.370000","770.000000","0.000000",,,,,,,,,,,,"18.000000","561.500000","1105.000000","18.000000","561.500000","561.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1677720.000000","2072780.000000","2092704.000000","44552.000000","28996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","181.000000","187.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","164.000000","170.000000","174.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739302.000000",,,,, +"4457.000000","60.940000","4457.000000","60.940000","4457.000000","60.940000","923.000000","0.000000",,,,,,,,,,,,"915.000000","2446.500000","3976.000000","20.000000","2446.500000","2446.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072728.000000","0.000000","2092704.000000","129468.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072728.000000","2092704.000000","44552.000000","29028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","189.000000","190.000000","206.000000","208.000000","207.000000","0.000000","0.000000","0.000000","165.000000","172.000000","175.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739322.000000",,,,, +"4602.000000","61.625000","4602.000000","61.625000","4602.000000","61.625000","1564.000000","0.000000",,,,,,,,,,,,"2.000000","644.500000","1287.000000","20.000000","644.500000","644.500000",,,,,,,,,,,"1551892.000000","1677720.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1677720.000000","2072624.000000","2092704.000000","44552.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","168.000000","173.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739342.000000",,,,, +"4478.000000","61.040000","4478.000000","61.040000","4478.000000","61.040000","1824.000000","0.000000",,,,,,,,,,,,"8.000000","378.000000","748.000000","14.000000","378.000000","378.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","1677720.000000","2072400.000000","2092704.000000","44552.000000","29152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","189.000000","190.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","170.000000","174.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739362.000000",,,,, +"4201.000000","59.735000","4201.000000","59.735000","4201.000000","59.735000","1506.000000","0.000000",,,,,,,,,,,,"2.000000","451.000000","899.000000","17.000000","451.000000","451.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1677720.000000","2072272.000000","2092704.000000","44552.000000","29280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","184.000000","189.000000","207.000000","208.000000","208.000000","0.000000","0.000000","0.000000","170.000000","167.000000","173.000000","200.000000","207.000000","200.000000","160.000000","6000.000000","0.000000","739382.000000",,,,, +"4286.000000","60.140000","4286.000000","60.140000","4286.000000","60.140000","943.000000","0.000000",,,,,,,,,,,,"30.000000","1213.000000","2395.000000","19.000000","1213.000000","1213.000000",,,,,,,,,,,"1488976.000000","1677720.000000","0.000000","0.000000","2072376.000000","0.000000","2092704.000000","129468.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1677720.000000","2072376.000000","2092704.000000","44552.000000","29324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","180.000000","188.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","170.000000","161.000000","171.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739402.000000",,,,, +"3519.000000","56.530000","3519.000000","56.530000","3519.000000","56.530000","897.000000","0.000000",,,,,,,,,,,,"6.000000","351.500000","697.000000","10.000000","351.500000","351.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072308.000000","0.000000","2092704.000000","129468.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1677720.000000","2072308.000000","2092704.000000","44552.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","175.000000","186.000000","207.000000","198.000000","207.000000","0.000000","0.000000","0.000000","169.000000","150.000000","167.000000","200.000000","182.000000","199.000000","160.000000","6000.000000","0.000000","739422.000000",,,,, +"5069.000000","63.815000","5069.000000","63.815000","5069.000000","63.815000","981.000000","0.000000",,,,,,,,,,,,"4.000000","703.000000","1402.000000","27.000000","703.000000","703.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1677720.000000","2072276.000000","2092704.000000","44552.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","182.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","159.000000","166.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739443.000000",,,,, +"4774.000000","62.430000","4774.000000","62.430000","4774.000000","62.430000","889.000000","0.000000",,,,,,,,,,,,"2185.000000","2329.000000","2471.000000","20.000000","2329.000000","2329.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2072348.000000","0.000000","2092704.000000","129468.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","1677720.000000","2072348.000000","2092704.000000","44552.000000","29500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","189.000000","186.000000","185.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","170.000000","167.000000","167.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739463.000000",,,,, +"3333.000000","50.655000","3333.000000","50.655000","3333.000000","50.655000","1163.000000","0.000000",,,,,,,,,,,,"6579.000000","6708.500000","6837.000000","34.000000","6708.500000","6708.500000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072556.000000","0.000000","2092704.000000","129468.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1468004.000000","2072556.000000","2092704.000000","44552.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","183.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","169.000000","165.000000","165.000000","200.000000","199.000000","199.000000","160.000000","6000.000000","0.000000","739482.000000",,,,, +"3565.000000","51.750000","3565.000000","51.750000","3565.000000","51.750000","650.000000","0.000000",,,,,,,,,,,,"388.000000","2851.000000","5313.000000","22.000000","2851.000000","2851.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072860.000000","0.000000","2092704.000000","129468.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1468004.000000","2072860.000000","2092704.000000","44552.000000","29112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","170.000000","182.000000","207.000000","202.000000","202.000000","0.000000","0.000000","0.000000","168.000000","150.000000","162.000000","199.000000","195.000000","199.000000","160.000000","6000.000000","0.000000","739502.000000",,,,, +"4392.000000","55.635000","4392.000000","55.635000","4392.000000","55.635000","905.000000","0.000000",,,,,,,,,,,,"4897.000000","9654.000000","14409.000000","107.000000","9654.000000","9654.000000",,,,,,,,,,,"1321204.000000","1468004.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1468004.000000","2072708.000000","2092704.000000","44552.000000","29140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","164.000000","181.000000","207.000000","184.000000","202.000000","0.000000","0.000000","0.000000","168.000000","141.000000","161.000000","199.000000","171.000000","196.000000","160.000000","6000.000000","0.000000","739522.000000",,,,, +"4429.000000","60.810000","4429.000000","60.810000","4429.000000","60.810000","932.000000","0.000000",,,,,,,,,,,,"628.000000","4518.500000","8407.000000","62.000000","4518.500000","4518.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","1677720.000000","2072640.000000","2092704.000000","44552.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","181.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","154.000000","162.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739542.000000",,,,, +"3683.000000","57.300000","3683.000000","57.300000","3683.000000","57.300000","873.000000","0.000000",,,,,,,,,,,,"5406.000000","9346.000000","13285.000000","20.000000","9346.000000","9346.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072584.000000","0.000000","2092704.000000","129468.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","1677720.000000","2072584.000000","2092704.000000","44556.000000","29184.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10680.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","186.000000","173.000000","179.000000","205.000000","201.000000","202.000000","0.000000","0.000000","0.000000","167.000000","159.000000","161.000000","199.000000","191.000000","195.000000","160.000000","6000.000000","0.000000","739562.000000",,,,, +"2890.000000","53.575000","2890.000000","53.575000","2890.000000","53.575000","983.000000","0.000000",,,,,,,,,,,,"14981.000000","9604.000000","4227.000000","22.000000","9604.000000","9604.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2072684.000000","0.000000","2092704.000000","129468.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1677720.000000","2072684.000000","2092704.000000","44556.000000","28972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","153.000000","174.000000","205.000000","201.000000","201.000000","0.000000","0.000000","0.000000","165.000000","141.000000","157.000000","199.000000","191.000000","191.000000","160.000000","6000.000000","0.000000","739582.000000",,,,, +"2773.000000","54.030000","2773.000000","54.030000","2773.000000","54.030000","962.000000","0.000000",,,,,,,,,,,,"13438.000000","10948.500000","8458.000000","9.000000","10948.500000","10948.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072724.000000","0.000000","2092704.000000","129468.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1719664.000000","2072724.000000","2092704.000000","44556.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","127.000000","169.000000","205.000000","181.000000","201.000000","0.000000","0.000000","0.000000","164.000000","117.000000","151.000000","199.000000","180.000000","191.000000","160.000000","6000.000000","0.000000","739602.000000",,,,, +"2556.000000","53.005000","2556.000000","53.005000","2556.000000","53.005000","1566.000000","0.000000",,,,,,,,,,,,"9579.000000","7310.000000","5040.000000","19.000000","7310.000000","7310.000000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072676.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1719664.000000","2072676.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","119.000000","165.000000","205.000000","147.000000","201.000000","0.000000","0.000000","0.000000","163.000000","98.000000","147.000000","199.000000","135.000000","191.000000","160.000000","6000.000000","0.000000","739622.000000",,,,, +"3540.000000","57.630000","3540.000000","57.630000","3540.000000","57.630000","657.000000","0.000000",,,,,,,,,,,,"56.000000","6209.500000","12363.000000","45.000000","6209.500000","6209.500000",,,,,,,,,,,"1593832.000000","1719664.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","1719664.000000","2072400.000000","2092704.000000","44556.000000","28984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10592.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","138.000000","164.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","163.000000","109.000000","144.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739642.000000",,,,, +"3557.000000","57.715000","3557.000000","57.715000","3557.000000","57.715000","792.000000","0.000000",,,,,,,,,,,,"259.000000","2335.000000","4408.000000","61.000000","2335.000000","2335.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1719664.000000","2072020.000000","2092704.000000","44556.000000","29036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","181.000000","160.000000","163.000000","205.000000","190.000000","198.000000","0.000000","0.000000","0.000000","162.000000","120.000000","141.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739662.000000",,,,, +"3087.000000","55.505000","3087.000000","55.505000","3087.000000","55.505000","1388.000000","0.000000",,,,,,,,,,,,"265.000000","2670.000000","5073.000000","23.000000","2670.000000","2670.000000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1719664.000000","2072012.000000","2092704.000000","43172.000000","29048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","180.000000","164.000000","161.000000","205.000000","190.000000","196.000000","0.000000","0.000000","0.000000","161.000000","127.000000","138.000000","199.000000","160.000000","183.000000","160.000000","6000.000000","0.000000","739682.000000",,,,, +"3099.000000","55.560000","3099.000000","55.560000","3099.000000","55.560000","1464.000000","0.000000",,,,,,,,,,,,"217.000000","2940.500000","5662.000000","50.000000","2940.500000","2940.500000",,,,,,,,,,,"1677720.000000","1719664.000000","0.000000","0.000000","2072000.000000","0.000000","2092704.000000","129468.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1719664.000000","2072000.000000","2092704.000000","43172.000000","29108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","180.000000","163.000000","161.000000","205.000000","186.000000","196.000000","0.000000","0.000000","0.000000","160.000000","122.000000","136.000000","199.000000","153.000000","183.000000","160.000000","6000.000000","0.000000","739702.000000",,,,, +"3109.000000","56.105000","3109.000000","56.105000","3109.000000","56.105000","587.000000","0.000000",,,,,,,,,,,,"385.000000","8774.500000","17162.000000","33.000000","8774.500000","8774.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071980.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071980.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","179.000000","156.000000","159.000000","205.000000","176.000000","196.000000","0.000000","0.000000","0.000000","160.000000","116.000000","135.000000","199.000000","133.000000","183.000000","160.000000","6000.000000","0.000000","739722.000000",,,,, +"3324.000000","57.115000","3324.000000","57.115000","3324.000000","57.115000","694.000000","0.000000",,,,,,,,,,,,"445.000000","9452.000000","18459.000000","34.000000","9452.000000","9452.000000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1740636.000000","2071984.000000","2092704.000000","43172.000000","29124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","158.000000","157.000000","205.000000","176.000000","188.000000","0.000000","0.000000","0.000000","159.000000","119.000000","131.000000","199.000000","136.000000","178.000000","160.000000","6000.000000","0.000000","739742.000000",,,,, +"3383.000000","57.395000","3383.000000","57.395000","3383.000000","57.395000","705.000000","0.000000",,,,,,,,,,,,"1364.000000","5928.500000","10493.000000","53.000000","5928.500000","5928.500000",,,,,,,,,,,"1698692.000000","1740636.000000","0.000000","0.000000","2071804.000000","0.000000","2092704.000000","129468.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071804.000000","2092704.000000","43172.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","154.000000","154.000000","205.000000","178.000000","184.000000","0.000000","0.000000","0.000000","158.000000","123.000000","127.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739762.000000",,,,, +"2190.000000","48.785000","2190.000000","48.785000","2190.000000","48.785000","770.000000","0.000000",,,,,,,,,,,,"11461.000000","10816.500000","10171.000000","21.000000","10816.500000","10816.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1614804.000000","2071616.000000","2092704.000000","43172.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","152.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","156.000000","111.000000","124.000000","199.000000","136.000000","163.000000","160.000000","6000.000000","0.000000","739782.000000",,,,, +"2287.000000","49.245000","2287.000000","49.245000","2287.000000","49.245000","809.000000","0.000000",,,,,,,,,,,,"15130.000000","8328.500000","1527.000000","3.000000","8328.500000","8328.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","1614804.000000","2071680.000000","2092704.000000","43172.000000","29068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","131.000000","149.000000","204.000000","178.000000","184.000000","0.000000","0.000000","0.000000","154.000000","102.000000","121.000000","199.000000","134.000000","163.000000","160.000000","6000.000000","0.000000","739802.000000",,,,, +"2401.000000","49.780000","2401.000000","49.780000","2401.000000","49.780000","667.000000","0.000000",,,,,,,,,,,,"13564.000000","11656.500000","9748.000000","33.000000","11656.500000","11656.500000",,,,,,,,,,,"1572864.000000","1614804.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","1614804.000000","2071776.000000","2092704.000000","43172.000000","29076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","122.000000","146.000000","202.000000","169.000000","181.000000","0.000000","0.000000","0.000000","151.000000","88.000000","117.000000","197.000000","125.000000","160.000000","160.000000","6000.000000","0.000000","739822.000000",,,,, +"3429.000000","56.110000","3429.000000","56.110000","3429.000000","56.110000","680.000000","0.000000",,,,,,,,,,,,"1129.000000","1602.000000","2075.000000","27.000000","1602.000000","1602.000000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071756.000000","0.000000","2092704.000000","129468.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1677720.000000","2071756.000000","2092704.000000","43172.000000","29100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","141.000000","145.000000","202.000000","194.000000","178.000000","0.000000","0.000000","0.000000","150.000000","101.000000","113.000000","197.000000","159.000000","152.000000","160.000000","6000.000000","0.000000","739842.000000",,,,, +"3383.000000","55.895000","3383.000000","55.895000","3383.000000","55.895000","606.000000","0.000000",,,,,,,,,,,,"290.000000","457.500000","625.000000","16.000000","457.500000","457.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071692.000000","0.000000","2092704.000000","129468.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1677720.000000","2071692.000000","2092704.000000","43172.000000","29164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","146.000000","201.000000","194.000000","182.000000","0.000000","0.000000","0.000000","149.000000","112.000000","112.000000","196.000000","159.000000","135.000000","160.000000","6000.000000","0.000000","739862.000000",,,,, +"3713.000000","57.445000","3713.000000","57.445000","3713.000000","57.445000","1088.000000","0.000000",,,,,,,,,,,,"10342.000000","5557.500000","772.000000","4.000000","5557.500000","5557.500000",,,,,,,,,,,"1635776.000000","1677720.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","1677720.000000","2071612.000000","2092704.000000","43172.000000","29160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","171.000000","150.000000","201.000000","194.000000","183.000000","0.000000","0.000000","0.000000","148.000000","131.000000","115.000000","196.000000","177.000000","147.000000","160.000000","6000.000000","0.000000","739882.000000",,,,, +"3452.000000","54.220000","3452.000000","54.220000","3452.000000","54.220000","713.000000","0.000000",,,,,,,,,,,,"22184.000000","11377.500000","569.000000","3.000000","11377.500000","11377.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071620.000000","0.000000","2092704.000000","129468.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","1593832.000000","2071620.000000","2092704.000000","43172.000000","29156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10720.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","158.000000","151.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","147.000000","132.000000","116.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739902.000000",,,,, +"2954.000000","51.880000","2954.000000","51.880000","2954.000000","51.880000","1777.000000","0.000000",,,,,,,,,,,,"17443.000000","13003.000000","8563.000000","24.000000","13003.000000","13003.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","1593832.000000","2071508.000000","2092704.000000","43172.000000","29148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10708.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","142.000000","150.000000","201.000000","191.000000","183.000000","0.000000","0.000000","0.000000","146.000000","128.000000","118.000000","196.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739922.000000",,,,, +"3519.000000","54.535000","3519.000000","54.535000","3519.000000","54.535000","1406.000000","0.000000",,,,,,,,,,,,"9508.000000","8017.500000","6527.000000","31.000000","8017.500000","8017.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2071352.000000","2092704.000000","43172.000000","29248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","135.000000","149.000000","201.000000","188.000000","183.000000","0.000000","0.000000","0.000000","145.000000","119.000000","117.000000","195.000000","179.000000","153.000000","160.000000","6000.000000","0.000000","739942.000000",,,,, +"4168.000000","59.080000","4168.000000","59.080000","4168.000000","59.080000","1057.000000","0.000000",,,,,,,,,,,,"5.000000","276.000000","547.000000","11.000000","276.000000","276.000000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071184.000000","0.000000","2092704.000000","129468.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1656748.000000","2071184.000000","2092704.000000","43172.000000","29292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","157.000000","150.000000","201.000000","201.000000","188.000000","0.000000","0.000000","0.000000","145.000000","132.000000","118.000000","192.000000","178.000000","164.000000","160.000000","6000.000000","0.000000","739962.000000",,,,, +"4947.000000","62.745000","4947.000000","62.745000","4947.000000","62.745000","1030.000000","0.000000",,,,,,,,,,,,"8.000000","335.500000","663.000000","15.000000","335.500000","335.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1656748.000000","2071116.000000","2092704.000000","43172.000000","29368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","178.000000","153.000000","201.000000","210.000000","194.000000","0.000000","0.000000","0.000000","145.000000","153.000000","123.000000","195.000000","210.000000","175.000000","160.000000","6000.000000","0.000000","739982.000000",,,,, +"4595.000000","61.085000","4595.000000","61.085000","4595.000000","61.085000","957.000000","0.000000",,,,,,,,,,,,"27.000000","484.500000","942.000000","16.000000","484.500000","484.500000",,,,,,,,,,,"1635776.000000","1656748.000000","0.000000","0.000000","2071028.000000","0.000000","2092704.000000","129468.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","1656748.000000","2071028.000000","2092704.000000","44516.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","193.000000","155.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","144.000000","171.000000","127.000000","192.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740002.000000",,,,, +"3356.000000","53.765000","3356.000000","53.765000","3356.000000","53.765000","1270.000000","0.000000",,,,,,,,,,,,"6.000000","574.500000","1142.000000","23.000000","574.500000","574.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070932.000000","0.000000","2092704.000000","129468.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","1593832.000000","2070932.000000","2092704.000000","44516.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","167.000000","184.000000","156.000000","201.000000","210.000000","197.000000","0.000000","0.000000","0.000000","143.000000","162.000000","128.000000","191.000000","210.000000","177.000000","160.000000","6000.000000","0.000000","740022.000000",,,,, +"3894.000000","56.290000","3894.000000","56.290000","3894.000000","56.290000","1136.000000","0.000000",,,,,,,,,,,,"15.000000","375.500000","735.000000","17.000000","375.500000","375.500000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070852.000000","0.000000","2092704.000000","129468.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1593832.000000","2070852.000000","2092704.000000","44516.000000","29568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","177.000000","157.000000","200.000000","206.000000","197.000000","0.000000","0.000000","0.000000","142.000000","150.000000","129.000000","185.000000","199.000000","177.000000","160.000000","6000.000000","0.000000","740042.000000",,,,, +"3034.000000","52.255000","3034.000000","52.255000","3034.000000","52.255000","1177.000000","0.000000",,,,,,,,,,,,"14545.000000","7711.000000","876.000000","4.000000","7711.000000","7711.000000",,,,,,,,,,,"1551892.000000","1593832.000000","0.000000","0.000000","2070908.000000","0.000000","2092704.000000","129468.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","1593832.000000","2070908.000000","2092704.000000","44516.000000","29612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11104.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","162.000000","157.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","141.000000","137.000000","129.000000","183.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740062.000000",,,,, +"1211.000000","43.685000","1211.000000","43.685000","1211.000000","43.685000","630.000000","0.000000",,,,,,,,,,,,"20303.000000","10183.000000","62.000000","2.000000","10183.000000","10183.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071384.000000","0.000000","2092704.000000","129468.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1593832.000000","2071384.000000","2092704.000000","44516.000000","29380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","115.000000","151.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","138.000000","102.000000","126.000000","182.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740082.000000",,,,, +"1365.000000","44.410000","1365.000000","44.410000","1365.000000","44.410000","698.000000","0.000000",,,,,,,,,,,,"18097.000000","14246.000000","10395.000000","29.000000","14246.000000","14246.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1593832.000000","2071352.000000","2092704.000000","44516.000000","29396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","159.000000","79.000000","147.000000","198.000000","193.000000","197.000000","0.000000","0.000000","0.000000","136.000000","73.000000","123.000000","181.000000","178.000000","178.000000","160.000000","6000.000000","0.000000","740102.000000",,,,, +"991.000000","42.655000","991.000000","42.655000","991.000000","42.655000","838.000000","0.000000",,,,,,,,,,,,"7845.000000","6704.000000","5533.000000","25.000000","6704.000000","6704.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071476.000000","0.000000","2092704.000000","129468.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1593832.000000","2071476.000000","2092704.000000","44520.000000","29116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"0.000000","30.000000",,,,,,,,,,,"0.000000","156.000000","48.000000","142.000000","196.000000","75.000000","197.000000","0.000000","0.000000","0.000000","133.000000","44.000000","121.000000","180.000000","72.000000","178.000000","160.000000","6000.000000","0.000000","740122.000000",,,,, +"662.000000","43.605000","662.000000","43.605000","662.000000","43.605000","538.000000","0.000000",,,,,,,,,,,,"25832.000000","24908.000000","23974.000000","11.000000","24908.000000","24908.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","1698692.000000","2071440.000000","2092704.000000","44520.000000","29128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"0.000000","10.000000",,,,,,,,,,,"0.000000","152.000000","40.000000","131.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","129.000000","37.000000","113.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740142.000000",,,,, +"720.000000","43.880000","720.000000","43.880000","720.000000","43.880000","820.000000","0.000000",,,,,,,,,,,,"23145.000000","25480.000000","27787.000000","15.000000","25480.000000","25480.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071680.000000","0.000000","2092704.000000","129468.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1698692.000000","2071680.000000","2092704.000000","44520.000000","28884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","149.000000","32.000000","122.000000","196.000000","56.000000","197.000000","0.000000","0.000000","0.000000","127.000000","30.000000","107.000000","179.000000","54.000000","178.000000","160.000000","6000.000000","0.000000","740162.000000",,,,, +"554.000000","43.100000","554.000000","43.100000","554.000000","43.100000","586.000000","0.000000",,,,,,,,,,,,"1665.000000","1037.000000","408.000000","3.000000","1037.000000","1037.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071848.000000","0.000000","2092704.000000","129468.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2071848.000000","2092704.000000","44528.000000","28916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","146.000000","26.000000","113.000000","196.000000","32.000000","197.000000","0.000000","0.000000","0.000000","124.000000","24.000000","99.000000","178.000000","28.000000","178.000000","160.000000","6000.000000","0.000000","740182.000000",,,,, +"531.000000","41.990000","531.000000","41.990000","531.000000","41.990000","857.000000","0.000000",,,,,,,,,,,,"121.000000","221.000000","282.000000","4.000000","221.000000","221.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","1656748.000000","2071712.000000","2092704.000000","44528.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10428.000000","0.000000","0.000000",,,,,,"27.000000","11.000000",,,,,,,,,,,"0.000000","141.000000","24.000000","104.000000","195.000000","34.000000","197.000000","0.000000","0.000000","0.000000","119.000000","22.000000","91.000000","178.000000","30.000000","175.000000","160.000000","6000.000000","0.000000","740202.000000",,,,, +"1094.000000","44.635000","1094.000000","44.635000","1094.000000","44.635000","937.000000","0.000000",,,,,,,,,,,,"72.000000","6377.000000","10677.000000","33.000000","6377.000000","6377.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","1656748.000000","2071644.000000","2092704.000000","44528.000000","28976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10448.000000","0.000000","0.000000",,,,,,"1986.000000","19.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","99.000000","195.000000","57.000000","197.000000","0.000000","0.000000","0.000000","117.000000","28.000000","87.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740222.000000",,,,, +"561.000000","42.130000","561.000000","42.130000","561.000000","42.130000","644.000000","0.000000",,,,,,,,,,,,"41.000000","292.000000","541.000000","6.000000","292.000000","292.000000",,,,,,,,,,,"1572864.000000","1656748.000000","0.000000","0.000000","2071532.000000","0.000000","2092704.000000","129468.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1656748.000000","2071532.000000","2092704.000000","44528.000000","29132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","135.000000","30.000000","92.000000","194.000000","57.000000","197.000000","0.000000","0.000000","0.000000","114.000000","28.000000","81.000000","178.000000","55.000000","175.000000","160.000000","6000.000000","0.000000","740242.000000",,,,, +"812.000000","42.310000","812.000000","42.310000","812.000000","42.310000","678.000000","0.000000",,,,,,,,,,,,"18.000000","182.000000","346.000000","4.000000","182.000000","182.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071420.000000","0.000000","2092704.000000","129468.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1614804.000000","2071420.000000","2092704.000000","44528.000000","29240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","32.000000","79.000000","193.000000","57.000000","195.000000","0.000000","0.000000","0.000000","110.000000","30.000000","71.000000","177.000000","55.000000","174.000000","160.000000","6000.000000","0.000000","740262.000000",,,,, +"441.000000","40.570000","441.000000","40.570000","441.000000","40.570000","677.000000","0.000000",,,,,,,,,,,,"6.000000","96.000000","186.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071312.000000","0.000000","2092704.000000","129468.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","1614804.000000","2071312.000000","2092704.000000","44528.000000","29432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10496.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","23.000000","68.000000","193.000000","51.000000","186.000000","0.000000","0.000000","0.000000","107.000000","22.000000","61.000000","175.000000","49.000000","170.000000","160.000000","6000.000000","0.000000","740282.000000",,,,, +"244.000000","39.640000","244.000000","39.640000","244.000000","39.640000","564.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"1530920.000000","1614804.000000","0.000000","0.000000","2071400.000000","0.000000","2092704.000000","129468.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","1614804.000000","2071400.000000","2092704.000000","44528.000000","29752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","124.000000","19.000000","57.000000","191.000000","39.000000","177.000000","0.000000","0.000000","0.000000","104.000000","18.000000","50.000000","175.000000","39.000000","146.000000","160.000000","6000.000000","0.000000","740302.000000",,,,, +"274.000000","41.285000","274.000000","41.285000","274.000000","41.285000","414.000000","0.000000",,,,,,,,,,,,"0.000000","59.000000","117.000000","1.000000","59.000000","59.000000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2071132.000000","0.000000","2092704.000000","129468.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1677720.000000","2071132.000000","2092704.000000","44528.000000","30364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","12.000000","45.000000","191.000000","31.000000","158.000000","0.000000","0.000000","0.000000","101.000000","12.000000","41.000000","175.000000","31.000000","134.000000","160.000000","6000.000000","0.000000","740322.000000",,,,, +"244.000000","41.145000","244.000000","41.145000","244.000000","41.145000","386.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","23.000000","27.500000","27.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1677720.000000","2070708.000000","2092704.000000","44528.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","9.000000","35.000000","190.000000","13.000000","57.000000","0.000000","0.000000","0.000000","97.000000","9.000000","33.000000","173.000000","13.000000","55.000000","160.000000","6000.000000","0.000000","740342.000000",,,,, +"240.000000","41.125000","240.000000","41.125000","240.000000","41.125000","453.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","48.000000","153.000000","24.500000","24.500000",,,,,,,,,,,"1530920.000000","1677720.000000","0.000000","0.000000","2070304.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","1677720.000000","2070304.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10768.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","112.000000","9.000000","26.000000","188.000000","13.000000","55.000000","0.000000","0.000000","0.000000","94.000000","9.000000","25.000000","166.000000","13.000000","53.000000","160.000000","6000.000000","0.000000","740362.000000",,,,, +"288.000000","41.845000","288.000000","41.845000","288.000000","41.845000","406.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","1.000000","48.500000","48.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1698692.000000","2070044.000000","2092704.000000","44528.000000","31788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","109.000000","9.000000","24.000000","188.000000","13.000000","54.000000","0.000000","0.000000","0.000000","91.000000","9.000000","22.000000","166.000000","13.000000","51.000000","160.000000","6000.000000","0.000000","740382.000000",,,,, +"243.000000","41.640000","243.000000","41.640000","243.000000","41.640000","506.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069776.000000","0.000000","2092704.000000","129468.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1698692.000000","2069776.000000","2092704.000000","44528.000000","32216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","21.000000","188.000000","13.000000","46.000000","0.000000","0.000000","0.000000","88.000000","9.000000","20.000000","166.000000","13.000000","45.000000","160.000000","6000.000000","0.000000","740402.000000",,,,, +"237.000000","41.610000","237.000000","41.610000","237.000000","41.610000","472.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","0.000000","23.000000","23.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2069544.000000","0.000000","2092704.000000","129468.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1698692.000000","2069544.000000","2092704.000000","44528.000000","32872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","9.000000","19.000000","188.000000","13.000000","34.000000","0.000000","0.000000","0.000000","85.000000","9.000000","18.000000","166.000000","13.000000","31.000000","160.000000","6000.000000","0.000000","740422.000000",,,,, +"358.000000","34.675000","358.000000","34.675000","358.000000","34.675000","448.000000","0.000000",,,,,,,,,,,,"0.000000","122.000000","243.000000","1.000000","122.000000","122.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069432.000000","0.000000","2092704.000000","129468.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1384120.000000","2069432.000000","2092704.000000","44528.000000","33320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","98.000000","10.000000","18.000000","186.000000","14.000000","34.000000","0.000000","0.000000","0.000000","81.000000","10.000000","17.000000","160.000000","14.000000","31.000000","160.000000","6000.000000","0.000000","740442.000000",,,,, +"711.000000","36.340000","711.000000","36.340000","711.000000","36.340000","688.000000","0.000000",,,,,,,,,,,,"44.000000","237.500000","425.000000","2.000000","237.500000","237.500000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2069264.000000","0.000000","2092704.000000","129468.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1384120.000000","2069264.000000","2092704.000000","44528.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","95.000000","16.000000","18.000000","186.000000","50.000000","39.000000","0.000000","0.000000","0.000000","78.000000","15.000000","17.000000","159.000000","49.000000","39.000000","160.000000","6000.000000","0.000000","740463.000000",,,,, +"1026.000000","37.815000","1026.000000","37.815000","1026.000000","37.815000","724.000000","0.000000",,,,,,,,,,,,"39.000000","466.000000","848.000000","5.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1384120.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1384120.000000","2071040.000000","2092704.000000","44528.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"30.000000","15.000000",,,,,,,,,,,"0.000000","94.000000","27.000000","19.000000","186.000000","58.000000","50.000000","0.000000","0.000000","0.000000","77.000000","25.000000","18.000000","159.000000","57.000000","49.000000","160.000000","6000.000000","0.000000","740482.000000",,,,, +"976.000000","32.580000","976.000000","32.580000","976.000000","32.580000","495.000000","0.000000",,,,,,,,,,,,"1.000000","4386.000000","8755.000000","39.000000","4386.000000","4386.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071468.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","1174404.000000","2071468.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11072.000000","0.000000","0.000000",,,,,,"10.000000","5.000000",,,,,,,,,,,"0.000000","92.000000","37.000000","20.000000","186.000000","68.000000","56.000000","0.000000","0.000000","0.000000","75.000000","34.000000","19.000000","159.000000","68.000000","49.000000","160.000000","6000.000000","0.000000","740502.000000",,,,, +"722.000000","31.390000","722.000000","31.390000","722.000000","31.390000","1146.000000","0.000000",,,,,,,,,,,,"2.000000","293.000000","583.000000","5.000000","293.000000","293.000000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071820.000000","0.000000","2092704.000000","129468.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2071820.000000","2092704.000000","44528.000000","31752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","90.000000","37.000000","19.000000","186.000000","68.000000","50.000000","0.000000","0.000000","0.000000","74.000000","34.000000","18.000000","159.000000","68.000000","41.000000","160.000000","6000.000000","0.000000","740522.000000",,,,, +"455.000000","30.135000","455.000000","30.135000","455.000000","30.135000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","120.500000","241.000000","7.000000","120.500000","120.500000",,,,,,,,,,,"985660.000000","1174404.000000","0.000000","0.000000","2071380.000000","0.000000","2092704.000000","129468.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","1174404.000000","2071380.000000","2092704.000000","44528.000000","32432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","87.000000","29.000000","19.000000","185.000000","68.000000","43.000000","0.000000","0.000000","0.000000","72.000000","27.000000","18.000000","154.000000","68.000000","40.000000","160.000000","6000.000000","0.000000","740542.000000",,,,, +"612.000000","27.370000","612.000000","27.370000","612.000000","27.370000","853.000000","0.000000",,,,,,,,,,,,"0.000000","134.500000","269.000000","2.000000","134.500000","134.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070860.000000","0.000000","2092704.000000","129468.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","1027604.000000","2070860.000000","2092704.000000","44528.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","83.000000","24.000000","19.000000","183.000000","43.000000","43.000000","0.000000","0.000000","0.000000","69.000000","22.000000","17.000000","154.000000","40.000000","40.000000","160.000000","6000.000000","0.000000","740562.000000",,,,, +"243.000000","25.640000","243.000000","25.640000","243.000000","25.640000","695.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","4.000000","61.500000","61.500000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2070356.000000","0.000000","2092704.000000","129468.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","1027604.000000","2070356.000000","2092704.000000","44528.000000","34112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","19.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","67.000000","17.000000","17.000000","154.000000","35.000000","40.000000","160.000000","6000.000000","0.000000","740582.000000",,,,, +"247.000000","25.655000","247.000000","25.655000","247.000000","25.655000","709.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","1.000000","22.000000","22.000000",,,,,,,,,,,"880800.000000","1027604.000000","0.000000","0.000000","2069884.000000","0.000000","2092704.000000","129468.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","1027604.000000","2069884.000000","2092704.000000","44528.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","15.000000","18.000000","183.000000","42.000000","43.000000","0.000000","0.000000","0.000000","65.000000","13.000000","17.000000","154.000000","30.000000","40.000000","160.000000","6000.000000","0.000000","740602.000000",,,,, +"261.000000","22.220000","261.000000","22.220000","261.000000","22.220000","641.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2069480.000000","0.000000","2092704.000000","129468.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","880800.000000","2069480.000000","2092704.000000","44528.000000","35780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","62.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740622.000000",,,,, +"236.000000","22.105000","236.000000","22.105000","236.000000","22.105000","449.000000","0.000000",,,,,,,,,,,,"0.000000","18.500000","37.000000","2.000000","18.500000","18.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068928.000000","0.000000","2092704.000000","129468.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","880800.000000","2068928.000000","2092704.000000","44528.000000","36852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","70.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","59.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740643.000000",,,,, +"222.000000","22.040000","222.000000","22.040000","222.000000","22.040000","765.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2068240.000000","0.000000","2092704.000000","129468.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","880800.000000","2068240.000000","2092704.000000","44528.000000","37660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","57.000000","9.000000","17.000000","154.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740662.000000",,,,, +"258.000000","20.210000","258.000000","20.210000","258.000000","20.210000","475.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","2.000000","55.500000","55.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067808.000000","0.000000","2092704.000000","129468.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","796916.000000","2067808.000000","2092704.000000","44528.000000","38440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","55.000000","9.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740682.000000",,,,, +"219.000000","20.025000","219.000000","20.025000","219.000000","20.025000","527.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","0.000000","11.000000","11.000000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2067324.000000","0.000000","2092704.000000","129468.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","796916.000000","2067324.000000","2092704.000000","44528.000000","39400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","62.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","53.000000","8.000000","17.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740702.000000",,,,, +"220.000000","20.030000","220.000000","20.030000","220.000000","20.030000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","1.000000","20.500000","20.500000",,,,,,,,,,,"671088.000000","796916.000000","0.000000","0.000000","2066748.000000","0.000000","2092704.000000","129468.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","796916.000000","2066748.000000","2092704.000000","44528.000000","40512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","59.000000","8.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","52.000000","8.000000","16.000000","154.000000","12.000000","40.000000","160.000000","6000.000000","0.000000","740722.000000",,,,, +"268.000000","16.755000","268.000000","16.755000","268.000000","16.755000","529.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","3.000000","65.000000","65.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066584.000000","0.000000","2092704.000000","129468.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066584.000000","2092704.000000","44528.000000","41364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","55.000000","9.000000","18.000000","183.000000","13.000000","43.000000","0.000000","0.000000","0.000000","49.000000","8.000000","16.000000","149.000000","13.000000","40.000000","160.000000","6000.000000","0.000000","740742.000000",,,,, +"587.000000","18.255000","587.000000","18.255000","587.000000","18.255000","447.000000","0.000000",,,,,,,,,,,,"1.000000","233.000000","458.000000","2.000000","233.000000","233.000000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066568.000000","0.000000","2092704.000000","129468.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","650116.000000","2066568.000000","2092704.000000","44528.000000","41392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11832.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","52.000000","12.000000","17.000000","182.000000","23.000000","42.000000","0.000000","0.000000","0.000000","46.000000","11.000000","16.000000","149.000000","20.000000","37.000000","160.000000","6000.000000","0.000000","740762.000000",,,,, +"625.000000","18.435000","625.000000","18.435000","625.000000","18.435000","596.000000","0.000000",,,,,,,,,,,,"141.000000","188.500000","236.000000","1.000000","188.500000","188.500000",,,,,,,,,,,"545256.000000","650116.000000","0.000000","0.000000","2066452.000000","0.000000","2092704.000000","129468.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","650116.000000","2066452.000000","2092704.000000","44528.000000","42128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","49.000000","19.000000","16.000000","177.000000","48.000000","42.000000","0.000000","0.000000","0.000000","44.000000","18.000000","15.000000","146.000000","46.000000","37.000000","160.000000","6000.000000","0.000000","740782.000000",,,,, +"395.000000","15.850000","395.000000","15.850000","395.000000","15.850000","914.000000","0.000000",,,,,,,,,,,,"33.000000","104.500000","175.000000","4.000000","104.500000","104.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2065992.000000","0.000000","2092704.000000","129468.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2065992.000000","2092704.000000","44528.000000","43052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","46.000000","21.000000","14.000000","175.000000","48.000000","36.000000","0.000000","0.000000","0.000000","41.000000","19.000000","13.000000","145.000000","46.000000","32.000000","160.000000","6000.000000","0.000000","740802.000000",,,,, +"515.000000","16.415000","515.000000","16.415000","515.000000","16.415000","481.000000","0.000000",,,,,,,,,,,,"13.000000","174.000000","333.000000","4.000000","174.000000","174.000000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066112.000000","0.000000","2092704.000000","129468.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","587200.000000","2066112.000000","2092704.000000","44528.000000","43192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","44.000000","22.000000","14.000000","175.000000","48.000000","34.000000","0.000000","0.000000","0.000000","39.000000","21.000000","13.000000","137.000000","46.000000","29.000000","160.000000","6000.000000","0.000000","740822.000000",,,,, +"455.000000","16.130000","455.000000","16.130000","455.000000","16.130000","626.000000","0.000000",,,,,,,,,,,,"0.000000","74.500000","149.000000","2.000000","74.500000","74.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2066080.000000","0.000000","2092704.000000","129468.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","587200.000000","2066080.000000","2092704.000000","44528.000000","44116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","14.000000","173.000000","26.000000","26.000000","0.000000","0.000000","0.000000","37.000000","16.000000","13.000000","134.000000","23.000000","23.000000","160.000000","6000.000000","0.000000","740842.000000",,,,, +"226.000000","13.565000","226.000000","13.565000","226.000000","13.565000","568.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","2.000000","52.500000","52.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065568.000000","0.000000","2092704.000000","129468.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","524288.000000","2065568.000000","2092704.000000","44528.000000","45164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","16.000000","13.000000","140.000000","25.000000","23.000000","0.000000","0.000000","0.000000","33.000000","15.000000","12.000000","112.000000","23.000000","21.000000","160.000000","6000.000000","0.000000","740862.000000",,,,, +"244.000000","13.645000","244.000000","13.645000","244.000000","13.645000","630.000000","0.000000",,,,,,,,,,,,"42.000000","46.500000","50.000000","1.000000","46.500000","46.500000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2065016.000000","0.000000","2092704.000000","129468.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","524288.000000","2065016.000000","2092704.000000","44528.000000","46312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12156.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","12.000000","13.000000","68.000000","23.000000","23.000000","0.000000","0.000000","0.000000","30.000000","11.000000","12.000000","68.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","740882.000000",,,,, +"277.000000","13.805000","277.000000","13.805000","277.000000","13.805000","660.000000","0.000000",,,,,,,,,,,,"635.000000","365.000000","93.000000","2.000000","365.000000","365.000000",,,,,,,,,,,"398456.000000","524288.000000","0.000000","0.000000","2064928.000000","0.000000","2092704.000000","129468.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","524288.000000","2064928.000000","2092704.000000","44528.000000","46932.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","29.000000","10.000000","13.000000","56.000000","16.000000","23.000000","0.000000","0.000000","0.000000","26.000000","10.000000","12.000000","54.000000","16.000000","21.000000","160.000000","6000.000000","0.000000","740902.000000",,,,, +"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","567.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064284.000000","0.000000","2092704.000000","129468.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","440400.000000","2064284.000000","2092704.000000","44528.000000","48268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","13.000000","54.000000","15.000000","23.000000","0.000000","0.000000","0.000000","23.000000","9.000000","12.000000","49.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740922.000000",,,,, +"224.000000","11.550000","224.000000","11.550000","224.000000","11.550000","426.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2064100.000000","0.000000","2092704.000000","129468.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","440400.000000","2064100.000000","2092704.000000","44528.000000","49476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","13.000000","50.000000","15.000000","23.000000","0.000000","0.000000","0.000000","20.000000","9.000000","12.000000","45.000000","14.000000","21.000000","160.000000","6000.000000","0.000000","740942.000000",,,,, +"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","458.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2063432.000000","0.000000","2092704.000000","129468.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","440400.000000","2063432.000000","2092704.000000","44528.000000","50628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","43.000000","10.000000","23.000000","0.000000","0.000000","0.000000","18.000000","8.000000","12.000000","40.000000","9.000000","21.000000","160.000000","6000.000000","0.000000","740962.000000",,,,, +"233.000000","11.590000","233.000000","11.590000","233.000000","11.590000","444.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2062148.000000","0.000000","2092704.000000","129468.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","440400.000000","2062148.000000","2092704.000000","44528.000000","52100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","42.000000","10.000000","23.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","39.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","740982.000000",,,,, +"241.000000","11.625000","241.000000","11.625000","241.000000","11.625000","410.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2061624.000000","0.000000","2092704.000000","129468.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","440400.000000","2061624.000000","2092704.000000","44528.000000","53160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","13.000000","39.000000","10.000000","23.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","35.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741002.000000",,,,, +"228.000000","11.570000","228.000000","11.570000","228.000000","11.570000","500.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","440400.000000","0.000000","0.000000","2060900.000000","0.000000","2092704.000000","129468.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","440400.000000","2060900.000000","2092704.000000","44528.000000","54228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","13.000000","36.000000","10.000000","23.000000","0.000000","0.000000","0.000000","15.000000","8.000000","12.000000","31.000000","10.000000","21.000000","160.000000","6000.000000","0.000000","741022.000000",,,,, +"438.000000","11.555000","438.000000","11.555000","438.000000","11.555000","509.000000","0.000000",,,,,,,,,,,,"7.000000","179.000000","346.000000","9.000000","179.000000","179.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060984.000000","0.000000","2092704.000000","129468.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","398456.000000","2060984.000000","2092704.000000","44528.000000","55456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12528.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","11.000000","13.000000","36.000000","24.000000","24.000000","0.000000","0.000000","0.000000","15.000000","11.000000","12.000000","31.000000","20.000000","21.000000","160.000000","6000.000000","0.000000","741042.000000",,,,, +"649.000000","12.545000","649.000000","12.545000","649.000000","12.545000","578.000000","0.000000",,,,,,,,,,,,"5.000000","168.500000","329.000000","59.000000","168.500000","168.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061052.000000","0.000000","2092704.000000","129468.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","398456.000000","2061052.000000","2092704.000000","44528.000000","55296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12536.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","16.000000","14.000000","38.000000","39.000000","26.000000","0.000000","0.000000","0.000000","15.000000","16.000000","13.000000","32.000000","38.000000","23.000000","160.000000","6000.000000","0.000000","741062.000000",,,,, +"896.000000","13.705000","896.000000","13.705000","896.000000","13.705000","471.000000","0.000000",,,,,,,,,,,,"0.000000","407.500000","792.000000","17.000000","407.500000","407.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2061072.000000","0.000000","2092704.000000","129468.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","398456.000000","2061072.000000","2092704.000000","44528.000000","55180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"13.000000","9.000000",,,,,,,,,,,"0.000000","16.000000","27.000000","14.000000","39.000000","66.000000","26.000000","0.000000","0.000000","0.000000","15.000000","24.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741082.000000",,,,, +"282.000000","9.820000","282.000000","9.820000","282.000000","9.820000","555.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","95.000000","7.000000","54.000000","54.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060564.000000","0.000000","2092704.000000","129468.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","356512.000000","2060564.000000","2092704.000000","44528.000000","56220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12672.000000","0.000000","0.000000",,,,,,"9.000000","3.000000",,,,,,,,,,,"0.000000","16.000000","25.000000","14.000000","39.000000","66.000000","25.000000","0.000000","0.000000","0.000000","15.000000","22.000000","13.000000","37.000000","50.000000","23.000000","160.000000","6000.000000","0.000000","741102.000000",,,,, +"262.000000","9.725000","262.000000","9.725000","262.000000","9.725000","957.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","8.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2060444.000000","0.000000","2092704.000000","129468.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","356512.000000","2060444.000000","2092704.000000","44528.000000","57328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12720.000000","0.000000","0.000000",,,,,,"10.000000","4.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","13.000000","38.000000","66.000000","24.000000","0.000000","0.000000","0.000000","14.000000","18.000000","12.000000","32.000000","50.000000","20.000000","160.000000","6000.000000","0.000000","741122.000000",,,,, +"916.000000","12.800000","916.000000","12.800000","916.000000","12.800000","756.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4782.000000","33.000000","2918.000000","2918.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","356512.000000","2062024.000000","2092704.000000","44528.000000","54064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12816.000000","0.000000","0.000000",,,,,,"1035.000000","13.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","15.000000","39.000000","57.000000","39.000000","0.000000","0.000000","0.000000","15.000000","18.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741142.000000",,,,, +"493.000000","13.815000","493.000000","13.815000","493.000000","13.815000","991.000000","0.000000",,,,,,,,,,,,"6.000000","173.000000","338.000000","2.000000","173.000000","173.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062296.000000","0.000000","2092704.000000","129468.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","482344.000000","2062296.000000","2092704.000000","44528.000000","53384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","20.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741162.000000",,,,, +"270.000000","12.765000","270.000000","12.765000","270.000000","12.765000","730.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","1.000000","39.500000","39.500000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062556.000000","0.000000","2092704.000000","129468.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","482344.000000","2062556.000000","2092704.000000","44528.000000","54316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12920.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","22.000000","15.000000","38.000000","57.000000","39.000000","0.000000","0.000000","0.000000","14.000000","21.000000","14.000000","35.000000","55.000000","38.000000","160.000000","6000.000000","0.000000","741182.000000",,,,, +"283.000000","12.825000","283.000000","12.825000","283.000000","12.825000","640.000000","0.000000",,,,,,,,,,,,"994.000000","532.000000","65.000000","3.000000","532.000000","532.000000",,,,,,,,,,,"461372.000000","482344.000000","0.000000","0.000000","2062660.000000","0.000000","2092704.000000","129468.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","482344.000000","2062660.000000","2092704.000000","44528.000000","55260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12976.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","15.000000","13.000000","15.000000","38.000000","36.000000","39.000000","0.000000","0.000000","0.000000","14.000000","13.000000","14.000000","35.000000","35.000000","38.000000","160.000000","6000.000000","0.000000","741202.000000",,,,, +"654.000000","13.070000","654.000000","13.070000","654.000000","13.070000","591.000000","0.000000",,,,,,,,,,,,"1550.000000","845.500000","140.000000","1.000000","845.500000","845.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2062344.000000","0.000000","2092704.000000","129468.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","419428.000000","2062344.000000","2092704.000000","44528.000000","55980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","15.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741222.000000",,,,, +"228.000000","11.065000","228.000000","11.065000","228.000000","11.065000","473.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061836.000000","0.000000","2092704.000000","129468.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","419428.000000","2061836.000000","2092704.000000","44528.000000","57112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","15.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","14.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741242.000000",,,,, +"221.000000","11.035000","221.000000","11.035000","221.000000","11.035000","462.000000","0.000000",,,,,,,,,,,,"0.000000","49.000000","98.000000","5.000000","49.000000","49.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2061248.000000","0.000000","2092704.000000","129468.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","419428.000000","2061248.000000","2092704.000000","44528.000000","58108.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","38.000000","37.000000","39.000000","0.000000","0.000000","0.000000","15.000000","13.000000","15.000000","35.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","741262.000000",,,,, +"266.000000","11.745000","266.000000","11.745000","266.000000","11.745000","499.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","1.000000","61.500000","61.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061208.000000","0.000000","2092704.000000","129468.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","440400.000000","2061208.000000","2092704.000000","44528.000000","59228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741282.000000",,,,, +"219.000000","11.525000","219.000000","11.525000","219.000000","11.525000","454.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","21.000000","37.500000","37.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2060644.000000","0.000000","2092704.000000","129468.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","440400.000000","2060644.000000","2092704.000000","44528.000000","60516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","8.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741302.000000",,,,, +"217.000000","11.515000","217.000000","11.515000","217.000000","11.515000","434.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","1.000000","17.500000","17.500000",,,,,,,,,,,"314572.000000","440400.000000","0.000000","0.000000","2061188.000000","0.000000","2092704.000000","129468.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","440400.000000","2061188.000000","2092704.000000","44528.000000","61560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741322.000000",,,,, +"275.000000","12.790000","275.000000","12.790000","275.000000","12.790000","505.000000","0.000000",,,,,,,,,,,,"0.000000","73.000000","146.000000","1.000000","73.000000","73.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061252.000000","0.000000","2092704.000000","129468.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","482344.000000","2061252.000000","2092704.000000","44528.000000","62592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","16.000000","38.000000","13.000000","39.000000","0.000000","0.000000","0.000000","15.000000","8.000000","15.000000","35.000000","13.000000","38.000000","160.000000","6000.000000","0.000000","741342.000000",,,,, +"640.000000","14.505000","640.000000","14.505000","640.000000","14.505000","586.000000","0.000000",,,,,,,,,,,,"18.000000","322.500000","614.000000","1.000000","322.500000","322.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061020.000000","0.000000","2092704.000000","129468.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","482344.000000","2061020.000000","2092704.000000","44532.000000","63160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"6.000000","7.000000",,,,,,,,,,,"0.000000","15.000000","14.000000","16.000000","38.000000","45.000000","43.000000","0.000000","0.000000","0.000000","14.000000","13.000000","15.000000","35.000000","36.000000","37.000000","160.000000","6000.000000","0.000000","741362.000000",,,,, +"595.000000","14.290000","595.000000","14.290000","595.000000","14.290000","522.000000","0.000000",,,,,,,,,,,,"4.000000","194.500000","382.000000","2.000000","194.500000","194.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2061120.000000","0.000000","2092704.000000","129468.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","482344.000000","2061120.000000","2092704.000000","44532.000000","64140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","20.000000","15.000000","36.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","35.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741382.000000",,,,, +"267.000000","12.750000","267.000000","12.750000","267.000000","12.750000","483.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","3.000000","40.500000","40.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2060612.000000","0.000000","2092704.000000","129468.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","482344.000000","2060612.000000","2092704.000000","44532.000000","65360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","20.000000","15.000000","34.000000","54.000000","37.000000","0.000000","0.000000","0.000000","14.000000","18.000000","14.000000","30.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741402.000000",,,,, +"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","614.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2060332.000000","0.000000","2092704.000000","129468.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","503316.000000","2060332.000000","2092704.000000","44532.000000","66844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","15.000000","15.000000","31.000000","54.000000","37.000000","0.000000","0.000000","0.000000","13.000000","14.000000","14.000000","29.000000","53.000000","36.000000","160.000000","6000.000000","0.000000","741422.000000",,,,, +"234.000000","13.095000","234.000000","13.095000","234.000000","13.095000","378.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","15.000000","33.000000","33.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059608.000000","0.000000","2092704.000000","129468.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","503316.000000","2059608.000000","2092704.000000","44532.000000","68212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","13.000000","27.000000","13.000000","31.000000","0.000000","0.000000","0.000000","13.000000","9.000000","12.000000","26.000000","12.000000","29.000000","160.000000","6000.000000","0.000000","741442.000000",,,,, +"472.000000","14.210000","472.000000","14.210000","472.000000","14.210000","501.000000","0.000000",,,,,,,,,,,,"423.000000","296.000000","167.000000","1.000000","296.000000","296.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2059276.000000","0.000000","2092704.000000","129468.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","503316.000000","2059276.000000","2092704.000000","44532.000000","69052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13888.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741462.000000",,,,, +"218.000000","10.520000","218.000000","10.520000","218.000000","10.520000","899.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","4.000000","31.000000","31.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2059400.000000","0.000000","2092704.000000","129468.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","398456.000000","2059400.000000","2092704.000000","44532.000000","70568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","13.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741482.000000",,,,, +"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","761.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058808.000000","0.000000","2092704.000000","129468.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","398456.000000","2058808.000000","2092704.000000","44532.000000","72160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","11.000000","12.000000","26.000000","33.000000","31.000000","0.000000","0.000000","0.000000","13.000000","11.000000","12.000000","23.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","741502.000000",,,,, +"270.000000","10.760000","270.000000","10.760000","270.000000","10.760000","640.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","5.000000","61.000000","61.000000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2058228.000000","0.000000","2092704.000000","129468.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","398456.000000","2058228.000000","2092704.000000","44536.000000","73676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741522.000000",,,,, +"210.000000","9.485000","210.000000","9.485000","210.000000","9.485000","523.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056560.000000","0.000000","2092704.000000","129468.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","356512.000000","2056560.000000","2092704.000000","44536.000000","75500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741542.000000",,,,, +"227.000000","9.560000","227.000000","9.560000","227.000000","9.560000","498.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","2.000000","33.500000","33.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056100.000000","0.000000","2092704.000000","129468.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","356512.000000","2056100.000000","2092704.000000","44536.000000","76952.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14444.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","26.000000","14.000000","16.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","23.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","741562.000000",,,,, +"594.000000","11.285000","594.000000","11.285000","594.000000","11.285000","606.000000","0.000000",,,,,,,,,,,,"2.000000","159.500000","317.000000","2.000000","159.500000","159.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057572.000000","0.000000","2092704.000000","129468.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","356512.000000","2057572.000000","2092704.000000","44536.000000","76284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","13.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","12.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741582.000000",,,,, +"318.000000","9.990000","318.000000","9.990000","318.000000","9.990000","554.000000","0.000000",,,,,,,,,,,,"0.000000","77.000000","154.000000","1.000000","77.000000","77.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2057164.000000","0.000000","2092704.000000","129468.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","356512.000000","2057164.000000","2092704.000000","44536.000000","77420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741602.000000",,,,, +"239.000000","9.615000","239.000000","9.615000","239.000000","9.615000","495.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","7.000000","40.500000","40.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056424.000000","0.000000","2092704.000000","129468.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","356512.000000","2056424.000000","2092704.000000","44536.000000","78856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","14.000000","12.000000","27.000000","45.000000","18.000000","0.000000","0.000000","0.000000","13.000000","14.000000","12.000000","26.000000","44.000000","18.000000","160.000000","6000.000000","0.000000","741622.000000",,,,, +"276.000000","9.790000","276.000000","9.790000","276.000000","9.790000","484.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","0.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2056620.000000","0.000000","2092704.000000","129468.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","356512.000000","2056620.000000","2092704.000000","44536.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","10.000000","12.000000","27.000000","18.000000","18.000000","0.000000","0.000000","0.000000","13.000000","10.000000","12.000000","26.000000","18.000000","18.000000","160.000000","6000.000000","0.000000","741642.000000",,,,, +"227.000000","8.560000","227.000000","8.560000","227.000000","8.560000","622.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","2.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056112.000000","0.000000","2092704.000000","129468.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","314572.000000","2056112.000000","2092704.000000","44540.000000","81584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","27.000000","13.000000","18.000000","0.000000","0.000000","0.000000","13.000000","9.000000","11.000000","26.000000","13.000000","18.000000","160.000000","6000.000000","0.000000","741662.000000",,,,, +"233.000000","8.590000","233.000000","8.590000","233.000000","8.590000","458.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","14.000000","27.500000","27.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2055144.000000","0.000000","2092704.000000","129468.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","314572.000000","2055144.000000","2092704.000000","44540.000000","83288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741682.000000",,,,, +"268.000000","8.750000","268.000000","8.750000","268.000000","8.750000","518.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","31.000000","61.000000","61.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2053592.000000","0.000000","2092704.000000","129468.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","314572.000000","2053592.000000","2092704.000000","44540.000000","84512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14968.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","21.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741702.000000",,,,, +"222.000000","8.540000","222.000000","8.540000","222.000000","8.540000","758.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","2.000000","27.500000","27.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2053108.000000","0.000000","2092704.000000","129468.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","314572.000000","2053108.000000","2092704.000000","44540.000000","85796.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","23.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741722.000000",,,,, +"213.000000","8.495000","213.000000","8.495000","213.000000","8.495000","1046.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","3.000000","15.000000","15.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2052256.000000","0.000000","2092704.000000","129468.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","314572.000000","2052256.000000","2092704.000000","44540.000000","87540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15164.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741742.000000",,,,, +"271.000000","8.770000","271.000000","8.770000","271.000000","8.770000","1246.000000","0.000000",,,,,,,,,,,,"9.000000","73.500000","137.000000","22.000000","73.500000","73.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2051816.000000","0.000000","2092704.000000","129468.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","314572.000000","2051816.000000","2092704.000000","44540.000000","88712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741762.000000",,,,, +"414.000000","8.440000","414.000000","8.440000","414.000000","8.440000","1385.000000","0.000000",,,,,,,,,,,,"0.000000","83.000000","165.000000","3.000000","83.000000","83.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050752.000000","0.000000","2092704.000000","129468.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","272628.000000","2050752.000000","2092704.000000","44540.000000","90048.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741782.000000",,,,, +"481.000000","8.755000","481.000000","8.755000","481.000000","8.755000","1153.000000","0.000000",,,,,,,,,,,,"5.000000","178.500000","352.000000","2.000000","178.500000","178.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051660.000000","0.000000","2092704.000000","129468.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","272628.000000","2051660.000000","2092704.000000","44540.000000","89516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741802.000000",,,,, +"261.000000","7.720000","261.000000","7.720000","261.000000","7.720000","748.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","51.000000","39.500000","39.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2051240.000000","0.000000","2092704.000000","129468.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","272628.000000","2051240.000000","2092704.000000","44540.000000","91044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741822.000000",,,,, +"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","602.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","2.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2050668.000000","0.000000","2092704.000000","129468.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","272628.000000","2050668.000000","2092704.000000","44540.000000","92580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","11.000000","24.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","20.000000","47.000000","13.000000","160.000000","6000.000000","0.000000","741842.000000",,,,, +"244.000000","7.640000","244.000000","7.640000","244.000000","7.640000","513.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","70.000000","4.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048652.000000","0.000000","2092704.000000","129468.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","272628.000000","2048652.000000","2092704.000000","44540.000000","94072.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","24.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","20.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741862.000000",,,,, +"288.000000","7.850000","288.000000","7.850000","288.000000","7.850000","497.000000","0.000000",,,,,,,,,,,,"1.000000","70.000000","138.000000","6.000000","70.000000","70.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2048272.000000","0.000000","2092704.000000","129468.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","272628.000000","2048272.000000","2092704.000000","44540.000000","95656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741882.000000",,,,, +"214.000000","7.000000","214.000000","7.000000","214.000000","7.000000","683.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","1.000000","21.500000","21.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2047596.000000","0.000000","2092704.000000","129468.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","251656.000000","2047596.000000","2092704.000000","44540.000000","97336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741902.000000",,,,, +"225.000000","7.050000","225.000000","7.050000","225.000000","7.050000","484.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","1.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2045296.000000","0.000000","2092704.000000","129468.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","251656.000000","2045296.000000","2092704.000000","44540.000000","98632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","24.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","20.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","741922.000000",,,,, +"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","814.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2044360.000000","0.000000","2092704.000000","129468.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","251656.000000","2044360.000000","2092704.000000","44540.000000","100240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","18.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741942.000000",,,,, +"223.000000","6.040000","223.000000","6.040000","223.000000","6.040000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","1.000000","12.000000","12.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2043788.000000","0.000000","2092704.000000","129468.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","209712.000000","2043788.000000","2092704.000000","44540.000000","101544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","17.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741962.000000",,,,, +"225.000000","6.050000","225.000000","6.050000","225.000000","6.050000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","1.000000","33.000000","33.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044092.000000","0.000000","2092704.000000","129468.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044092.000000","2092704.000000","44540.000000","103104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","741982.000000",,,,, +"683.000000","8.205000","683.000000","8.205000","683.000000","8.205000","2058.000000","0.000000",,,,,,,,,,,,"6.000000","191.000000","375.000000","1.000000","191.000000","191.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044916.000000","0.000000","2092704.000000","129468.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","209712.000000","2044916.000000","2092704.000000","44540.000000","102464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","48.000000","14.000000","0.000000","0.000000","0.000000","12.000000","14.000000","11.000000","17.000000","47.000000","14.000000","160.000000","6000.000000","0.000000","742002.000000",,,,, +"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","1697.000000","0.000000",,,,,,,,,,,,"0.000000","139.500000","278.000000","2.000000","139.500000","139.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2044504.000000","0.000000","2092704.000000","129468.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","209712.000000","2044504.000000","2092704.000000","44540.000000","103468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","12.000000","18.000000","48.000000","18.000000","0.000000","0.000000","0.000000","12.000000","17.000000","11.000000","18.000000","47.000000","17.000000","160.000000","6000.000000","0.000000","742022.000000",,,,, +"585.000000","7.745000","585.000000","7.745000","585.000000","7.745000","938.000000","0.000000",,,,,,,,,,,,"0.000000","142.000000","284.000000","3.000000","142.000000","142.000000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2042156.000000","0.000000","2092704.000000","129468.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","209712.000000","2042156.000000","2092704.000000","44540.000000","104404.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","13.000000","18.000000","51.000000","24.000000","0.000000","0.000000","0.000000","11.000000","21.000000","12.000000","17.000000","47.000000","19.000000","160.000000","6000.000000","0.000000","742042.000000",,,,, +"466.000000","7.185000","466.000000","7.185000","466.000000","7.185000","967.000000","0.000000",,,,,,,,,,,,"0.000000","121.500000","242.000000","2.000000","121.500000","121.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2040940.000000","0.000000","2092704.000000","129468.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","209712.000000","2040940.000000","2092704.000000","44540.000000","105528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16208.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","13.000000","18.000000","51.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","13.000000","17.000000","43.000000","32.000000","160.000000","6000.000000","0.000000","742062.000000",,,,, +"609.000000","7.355000","609.000000","7.355000","609.000000","7.355000","1601.000000","0.000000",,,,,,,,,,,,"3.000000","158.500000","314.000000","2.000000","158.500000","158.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040444.000000","0.000000","2092704.000000","129468.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","188740.000000","2040444.000000","2092704.000000","44540.000000","106628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","21.000000","14.000000","18.000000","51.000000","34.000000","0.000000","0.000000","0.000000","12.000000","20.000000","13.000000","18.000000","44.000000","33.000000","160.000000","6000.000000","0.000000","742082.000000",,,,, +"290.000000","5.860000","290.000000","5.860000","290.000000","5.860000","1237.000000","0.000000",,,,,,,,,,,,"1.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2040508.000000","0.000000","2092704.000000","129468.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","188740.000000","2040508.000000","2092704.000000","44540.000000","107788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","18.000000","45.000000","32.000000","0.000000","0.000000","0.000000","12.000000","17.000000","13.000000","18.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742102.000000",,,,, +"268.000000","5.755000","268.000000","5.755000","268.000000","5.755000","873.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"167772.000000","188740.000000","0.000000","0.000000","2039968.000000","0.000000","2092704.000000","129468.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","188740.000000","2039968.000000","2092704.000000","44540.000000","109092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","13.000000","16.000000","45.000000","32.000000","0.000000","0.000000","0.000000","11.000000","14.000000","13.000000","16.000000","44.000000","32.000000","160.000000","6000.000000","0.000000","742122.000000",,,,, +"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","1069.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2037416.000000","0.000000","2092704.000000","129468.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","314572.000000","2037416.000000","2092704.000000","44540.000000","110792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","13.000000","16.000000","16.000000","32.000000","0.000000","0.000000","0.000000","11.000000","10.000000","13.000000","16.000000","16.000000","32.000000","160.000000","6000.000000","0.000000","742142.000000",,,,, +"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","944.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038888.000000","0.000000","2092704.000000","129468.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","314572.000000","2038888.000000","2092704.000000","44540.000000","112124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","14.000000","32.000000","160.000000","6000.000000","0.000000","742162.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","883.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","3.000000","55.000000","55.000000",,,,,,,,,,,"272628.000000","314572.000000","0.000000","0.000000","2038200.000000","0.000000","2092704.000000","129468.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","314572.000000","2038200.000000","2092704.000000","44540.000000","113740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742182.000000",,,,, +"212.000000","6.990000","212.000000","6.990000","212.000000","6.990000","644.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2037592.000000","0.000000","2092704.000000","129468.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","251656.000000","2037592.000000","2092704.000000","44540.000000","115236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742202.000000",,,,, +"228.000000","7.065000","228.000000","7.065000","228.000000","7.065000","584.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","1.000000","39.000000","39.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036008.000000","0.000000","2092704.000000","129468.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","251656.000000","2036008.000000","2092704.000000","44540.000000","116572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","14.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742222.000000",,,,, +"263.000000","7.230000","263.000000","7.230000","263.000000","7.230000","1013.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","1.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2036300.000000","0.000000","2092704.000000","129468.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","251656.000000","2036300.000000","2092704.000000","44540.000000","118104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","16.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","16.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742242.000000",,,,, +"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","1140.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035644.000000","0.000000","2092704.000000","129468.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","251656.000000","2035644.000000","2092704.000000","44540.000000","119632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","15.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742262.000000",,,,, +"224.000000","7.050000","224.000000","7.050000","224.000000","7.050000","1058.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","0.000000","46.000000","46.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035856.000000","0.000000","2092704.000000","129468.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","251656.000000","2035856.000000","2092704.000000","44540.000000","121128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","14.000000","13.000000","32.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","14.000000","13.000000","32.000000","160.000000","6000.000000","0.000000","742282.000000",,,,, +"249.000000","7.165000","249.000000","7.165000","249.000000","7.165000","1616.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","1.000000","64.500000","64.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035188.000000","0.000000","2092704.000000","129468.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","251656.000000","2035188.000000","2092704.000000","44540.000000","122360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","14.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","742302.000000",,,,, +"248.000000","7.160000","248.000000","7.160000","248.000000","7.160000","785.000000","0.000000",,,,,,,,,,,,"1.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2035064.000000","0.000000","2092704.000000","129468.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","251656.000000","2035064.000000","2092704.000000","44540.000000","122492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17348.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742322.000000",,,,, +"220.000000","7.025000","220.000000","7.025000","220.000000","7.025000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","3.000000","28.500000","28.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034460.000000","0.000000","2092704.000000","129468.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","251656.000000","2034460.000000","2092704.000000","44540.000000","123940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17432.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742342.000000",,,,, +"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","2190.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","1.000000","53.000000","53.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2034168.000000","0.000000","2092704.000000","129468.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","251656.000000","2034168.000000","2092704.000000","44540.000000","125536.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","742362.000000",,,,, +"207.000000","8.465000","207.000000","8.465000","207.000000","8.465000","2339.000000","0.000000",,,,,,,,,,,,"0.000000","30.500000","61.000000","3.000000","30.500000","30.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2033568.000000","0.000000","2092704.000000","129468.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","314572.000000","2033568.000000","2092704.000000","44540.000000","126956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742382.000000",,,,, +"200.000000","8.435000","200.000000","8.435000","200.000000","8.435000","2176.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","2.000000","21.500000","21.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2035532.000000","0.000000","2092704.000000","129468.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","314572.000000","2035532.000000","2092704.000000","44540.000000","128500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17684.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742402.000000",,,,, +"268.000000","8.755000","268.000000","8.755000","268.000000","8.755000","1217.000000","0.000000",,,,,,,,,,,,"0.000000","46.500000","93.000000","6.000000","46.500000","46.500000",,,,,,,,,,,"293600.000000","314572.000000","0.000000","0.000000","2032736.000000","0.000000","2092704.000000","129468.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","314572.000000","2032736.000000","2092704.000000","44540.000000","129924.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742422.000000",,,,, +"234.000000","7.095000","234.000000","7.095000","234.000000","7.095000","699.000000","0.000000",,,,,,,,,,,,"0.000000","36.000000","72.000000","1.000000","36.000000","36.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2032156.000000","0.000000","2092704.000000","129468.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","251656.000000","2032156.000000","2092704.000000","44540.000000","131272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742442.000000",,,,, +"217.000000","7.015000","217.000000","7.015000","217.000000","7.015000","916.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","1.000000","13.500000","13.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2033892.000000","0.000000","2092704.000000","129468.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","251656.000000","2033892.000000","2092704.000000","44540.000000","132780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","742462.000000",,,,, +"270.000000","7.265000","270.000000","7.265000","270.000000","7.265000","582.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2031628.000000","0.000000","2092704.000000","129468.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","251656.000000","2031628.000000","2092704.000000","44540.000000","134232.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17960.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742482.000000",,,,, +"278.000000","6.300000","278.000000","6.300000","278.000000","6.300000","668.000000","0.000000",,,,,,,,,,,,"0.000000","100.500000","201.000000","1.000000","100.500000","100.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2031172.000000","0.000000","2092704.000000","129468.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","209712.000000","2031172.000000","2092704.000000","44540.000000","135440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","15.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","8.000000","14.000000","15.000000","13.000000","160.000000","6000.000000","0.000000","742502.000000",,,,, +"682.000000","9.700000","682.000000","9.700000","682.000000","9.700000","936.000000","0.000000",,,,,,,,,,,,"7.000000","204.500000","401.000000","1.000000","204.500000","204.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2032424.000000","0.000000","2092704.000000","129468.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","272628.000000","2032424.000000","2092704.000000","44540.000000","134148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17728.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","14.000000","57.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742522.000000",,,,, +"275.000000","8.290000","275.000000","8.290000","275.000000","8.290000","746.000000","0.000000",,,,,,,,,,,,"0.000000","81.500000","163.000000","2.000000","81.500000","81.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2031088.000000","0.000000","2092704.000000","129468.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","293600.000000","2031088.000000","2092704.000000","44540.000000","135452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742542.000000",,,,, +"208.000000","7.970000","208.000000","7.970000","208.000000","7.970000","751.000000","0.000000",,,,,,,,,,,,"0.000000","17.500000","35.000000","5.000000","17.500000","17.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030528.000000","0.000000","2092704.000000","129468.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","293600.000000","2030528.000000","2092704.000000","44540.000000","136740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","15.000000","57.000000","15.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","14.000000","57.000000","14.000000","160.000000","6000.000000","0.000000","742562.000000",,,,, +"228.000000","8.065000","228.000000","8.065000","228.000000","8.065000","733.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028792.000000","0.000000","2092704.000000","129468.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","293600.000000","2028792.000000","2092704.000000","44540.000000","137996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","14.000000","18.000000","14.000000","160.000000","6000.000000","0.000000","742582.000000",,,,, +"258.000000","8.205000","258.000000","8.205000","258.000000","8.205000","1172.000000","0.000000",,,,,,,,,,,,"0.000000","50.000000","100.000000","1.000000","50.000000","50.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2030492.000000","0.000000","2092704.000000","129468.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","293600.000000","2030492.000000","2092704.000000","44540.000000","139280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742602.000000",,,,, +"215.000000","7.505000","215.000000","7.505000","215.000000","7.505000","1008.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","1.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030260.000000","0.000000","2092704.000000","129468.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","272628.000000","2030260.000000","2092704.000000","44540.000000","140820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742622.000000",,,,, +"223.000000","7.540000","223.000000","7.540000","223.000000","7.540000","826.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","7.000000","24.000000","24.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2030992.000000","0.000000","2092704.000000","129468.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","272628.000000","2030992.000000","2092704.000000","44540.000000","142040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742642.000000",,,,, +"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","900.000000","0.000000",,,,,,,,,,,,"0.000000","56.000000","112.000000","1.000000","56.000000","56.000000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","272628.000000","2027408.000000","2092704.000000","44540.000000","143428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742662.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","629.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","3.000000","20.500000","20.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2027308.000000","0.000000","2092704.000000","129468.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","251656.000000","2027308.000000","2092704.000000","44540.000000","144760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742682.000000",,,,, +"228.000000","7.070000","228.000000","7.070000","228.000000","7.070000","528.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","1.000000","29.000000","29.000000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2028028.000000","0.000000","2092704.000000","129468.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","251656.000000","2028028.000000","2092704.000000","44540.000000","146148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","16.000000","15.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","742702.000000",,,,, +"344.000000","7.610000","344.000000","7.610000","344.000000","7.610000","863.000000","0.000000",,,,,,,,,,,,"0.000000","147.500000","295.000000","1.000000","147.500000","147.500000",,,,,,,,,,,"146800.000000","251656.000000","0.000000","0.000000","2029432.000000","0.000000","2092704.000000","129468.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","251656.000000","2029432.000000","2092704.000000","44540.000000","147560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","18.000000","15.000000","160.000000","6000.000000","0.000000","742722.000000",,,,, +"866.000000","16.065000","866.000000","16.065000","866.000000","16.065000","1393.000000","0.000000",,,,,,,,,,,,"13526.000000","13915.500000","14303.000000","18.000000","13915.500000","13915.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047976.000000","0.000000","2092704.000000","129468.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","503316.000000","2047976.000000","2092704.000000","44540.000000","104164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13352.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","11.000000","18.000000","12.000000","16.000000","53.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","52.000000","18.000000","160.000000","6000.000000","0.000000","742742.000000",,,,, +"827.000000","15.880000","827.000000","15.880000","827.000000","15.880000","1622.000000","0.000000",,,,,,,,,,,,"1407.000000","1192.000000","722.000000","8.000000","1192.000000","1192.000000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2047880.000000","0.000000","2092704.000000","129468.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","503316.000000","2047880.000000","2092704.000000","44540.000000","97676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10608.000000","0.000000","0.000000",,,,,,"7.000000","246.000000",,,,,,,,,,,"0.000000","12.000000","28.000000","14.000000","18.000000","53.000000","31.000000","0.000000","0.000000","0.000000","11.000000","24.000000","13.000000","18.000000","52.000000","29.000000","160.000000","6000.000000","0.000000","742762.000000",,,,, +"704.000000","15.300000","704.000000","15.300000","704.000000","15.300000","1779.000000","0.000000",,,,,,,,,,,,"817.000000","2030.500000","573.000000","3.000000","2030.500000","2030.500000",,,,,,,,,,,"419428.000000","503316.000000","0.000000","0.000000","2050152.000000","0.000000","2092704.000000","129468.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","503316.000000","2050152.000000","2092704.000000","44540.000000","95896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10744.000000","0.000000","0.000000",,,,,,"2632.000000","38.000000",,,,,,,,,,,"0.000000","13.000000","35.000000","16.000000","24.000000","55.000000","44.000000","0.000000","0.000000","0.000000","12.000000","30.000000","14.000000","20.000000","52.000000","35.000000","160.000000","6000.000000","0.000000","742782.000000",,,,, +"1369.000000","30.430000","1369.000000","30.430000","1369.000000","30.430000","2678.000000","0.000000",,,,,,,,,,,,"0.000000","21091.500000","21618.000000","65.000000","21091.500000","21091.500000",,,,,,,,,,,"713028.000000","1006632.000000","0.000000","0.000000","2057144.000000","0.000000","2092704.000000","129468.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","1006632.000000","2057144.000000","2092704.000000","44544.000000","77188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10736.000000","0.000000","0.000000",,,,,,"20487.000000","78.000000",,,,,,,,,,,"0.000000","14.000000","44.000000","19.000000","30.000000","72.000000","53.000000","0.000000","0.000000","0.000000","13.000000","35.000000","17.000000","24.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742802.000000",,,,, +"1160.000000","29.445000","1160.000000","29.445000","1160.000000","29.445000","4176.000000","0.000000",,,,,,,,,,,,"0.000000","19993.000000","30537.000000","43.000000","19993.000000","19993.000000",,,,,,,,,,,"817888.000000","1006632.000000","0.000000","0.000000","2071676.000000","0.000000","2092704.000000","129468.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","1006632.000000","2071676.000000","2092704.000000","44548.000000","34748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10556.000000","0.000000","0.000000",,,,,,"9414.000000","34.000000",,,,,,,,,,,"0.000000","15.000000","49.000000","21.000000","34.000000","72.000000","55.000000","0.000000","0.000000","0.000000","13.000000","39.000000","18.000000","33.000000","54.000000","48.000000","160.000000","6000.000000","0.000000","742822.000000",,,,, +"1118.000000","32.245000","1118.000000","32.245000","1118.000000","32.245000","2371.000000","0.000000",,,,,,,,,,,,"17.000000","19813.500000","26206.000000","39.000000","19813.500000","19813.500000",,,,,,,,,,,"1090516.000000","1132460.000000","0.000000","0.000000","2071432.000000","0.000000","2092704.000000","129468.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1132460.000000","2071432.000000","2092704.000000","44548.000000","31676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"13348.000000","54.000000",,,,,,,,,,,"0.000000","16.000000","58.000000","24.000000","45.000000","72.000000","59.000000","0.000000","0.000000","0.000000","14.000000","45.000000","20.000000","38.000000","54.000000","49.000000","160.000000","6000.000000","0.000000","742842.000000",,,,, +"1385.000000","43.500000","1385.000000","43.500000","1385.000000","43.500000","2499.000000","0.000000",,,,,,,,,,,,"5046.000000","14525.000000","20558.000000","16.000000","14525.000000","14525.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072780.000000","0.000000","2092704.000000","129468.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","1551892.000000","2072780.000000","2092704.000000","44548.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10288.000000","0.000000","0.000000",,,,,,"3430.000000","16.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","27.000000","47.000000","90.000000","68.000000","0.000000","0.000000","0.000000","15.000000","45.000000","23.000000","40.000000","76.000000","49.000000","160.000000","6000.000000","0.000000","742862.000000",,,,, +"2107.000000","46.895000","2107.000000","46.895000","2107.000000","46.895000","1998.000000","0.000000",,,,,,,,,,,,"627.000000","1466.500000","2305.000000","13.000000","1466.500000","1466.500000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072624.000000","0.000000","2092704.000000","129468.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","1551892.000000","2072624.000000","2092704.000000","44548.000000","29268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","63.000000","31.000000","51.000000","105.000000","71.000000","0.000000","0.000000","0.000000","16.000000","52.000000","26.000000","43.000000","91.000000","54.000000","160.000000","6000.000000","0.000000","742882.000000",,,,, +"1880.000000","45.830000","1880.000000","45.830000","1880.000000","45.830000","3078.000000","0.000000",,,,,,,,,,,,"118.000000","172.000000","226.000000","4.000000","172.000000","172.000000",,,,,,,,,,,"1405088.000000","1551892.000000","0.000000","0.000000","2072508.000000","0.000000","2092704.000000","129468.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","1551892.000000","2072508.000000","2092704.000000","44548.000000","29476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10352.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","78.000000","38.000000","55.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","67.000000","32.000000","48.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742902.000000",,,,, +"1607.000000","50.045000","1607.000000","50.045000","1607.000000","50.045000","2461.000000","0.000000",,,,,,,,,,,,"123.000000","492.500000","857.000000","3.000000","492.500000","492.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072304.000000","0.000000","2092704.000000","129468.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1782576.000000","2072304.000000","2092704.000000","44548.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","21.000000","81.000000","41.000000","62.000000","107.000000","82.000000","0.000000","0.000000","0.000000","18.000000","69.000000","35.000000","50.000000","99.000000","70.000000","160.000000","6000.000000","0.000000","742922.000000",,,,, +"1827.000000","51.080000","1827.000000","51.080000","1827.000000","51.080000","2217.000000","0.000000",,,,,,,,,,,,"0.000000","110.500000","221.000000","4.000000","110.500000","110.500000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2072076.000000","0.000000","2092704.000000","129468.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1782576.000000","2072076.000000","2092704.000000","44548.000000","30316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","87.000000","47.000000","68.000000","107.000000","96.000000","0.000000","0.000000","0.000000","19.000000","70.000000","39.000000","54.000000","99.000000","76.000000","160.000000","6000.000000","0.000000","742942.000000",,,,, +"2392.000000","53.735000","2392.000000","53.735000","2392.000000","53.735000","2052.000000","0.000000",,,,,,,,,,,,"100.000000","422.000000","739.000000","5.000000","422.000000","422.000000",,,,,,,,,,,"1719664.000000","1782576.000000","0.000000","0.000000","2071840.000000","0.000000","2092704.000000","129468.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1782576.000000","2071840.000000","2092704.000000","44548.000000","30860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","85.000000","52.000000","72.000000","106.000000","96.000000","0.000000","0.000000","0.000000","21.000000","68.000000","43.000000","59.000000","80.000000","78.000000","160.000000","6000.000000","0.000000","742962.000000",,,,, +"3168.000000","58.380000","3168.000000","58.380000","3168.000000","58.380000","2186.000000","0.000000",,,,,,,,,,,,"86.000000","753.500000","1417.000000","4.000000","753.500000","753.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","1824520.000000","2071708.000000","2092704.000000","44524.000000","31096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10632.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","120.000000","64.000000","82.000000","166.000000","107.000000","0.000000","0.000000","0.000000","23.000000","91.000000","51.000000","64.000000","125.000000","99.000000","160.000000","6000.000000","0.000000","742982.000000",,,,, +"3690.000000","60.835000","3690.000000","60.835000","3690.000000","60.835000","2161.000000","0.000000",,,,,,,,,,,,"0.000000","506.000000","1011.000000","18.000000","506.000000","506.000000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2071160.000000","0.000000","2092704.000000","129468.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","1824520.000000","2071160.000000","2092704.000000","44524.000000","31588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","31.000000","142.000000","74.000000","90.000000","181.000000","163.000000","0.000000","0.000000","0.000000","26.000000","109.000000","59.000000","76.000000","167.000000","115.000000","160.000000","6000.000000","0.000000","743002.000000",,,,, +"3225.000000","58.650000","3225.000000","58.650000","3225.000000","58.650000","2356.000000","0.000000",,,,,,,,,,,,"3.000000","412.500000","821.000000","16.000000","412.500000","412.500000",,,,,,,,,,,"1782576.000000","1824520.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","1824520.000000","2070880.000000","2092704.000000","44524.000000","31872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","169.000000","86.000000","105.000000","184.000000","169.000000","0.000000","0.000000","0.000000","29.000000","126.000000","68.000000","79.000000","167.000000","120.000000","160.000000","6000.000000","0.000000","743022.000000",,,,, +"3561.000000","54.730000","3561.000000","54.730000","3561.000000","54.730000","2718.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","965.000000","28.000000","483.000000","483.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070704.000000","0.000000","2092704.000000","129468.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1593832.000000","2070704.000000","2092704.000000","44524.000000","32160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","38.000000","171.000000","94.000000","107.000000","194.000000","173.000000","0.000000","0.000000","0.000000","31.000000","131.000000","74.000000","99.000000","167.000000","125.000000","160.000000","6000.000000","0.000000","743042.000000",,,,, +"4761.000000","60.365000","4761.000000","60.365000","4761.000000","60.365000","2452.000000","0.000000",,,,,,,,,,,,"214.000000","1401.000000","2587.000000","21.000000","1401.000000","1401.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070636.000000","0.000000","2092704.000000","129468.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","1593832.000000","2070636.000000","2092704.000000","44524.000000","32260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10844.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","176.000000","103.000000","153.000000","207.000000","181.000000","0.000000","0.000000","0.000000","35.000000","145.000000","83.000000","113.000000","204.000000","152.000000","160.000000","6000.000000","0.000000","743062.000000",,,,, +"4219.000000","57.820000","4219.000000","57.820000","4219.000000","57.820000","2166.000000","0.000000",,,,,,,,,,,,"2.000000","467.500000","932.000000","17.000000","467.500000","467.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1593832.000000","2070708.000000","2092704.000000","44524.000000","31736.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","45.000000","180.000000","113.000000","163.000000","207.000000","184.000000","0.000000","0.000000","0.000000","38.000000","153.000000","91.000000","117.000000","204.000000","158.000000","160.000000","6000.000000","0.000000","743082.000000",,,,, +"4549.000000","59.370000","4549.000000","59.370000","4549.000000","59.370000","1426.000000","0.000000",,,,,,,,,,,,"18.000000","1601.000000","3183.000000","58.000000","1601.000000","1601.000000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","1593832.000000","2072272.000000","2092704.000000","44524.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","187.000000","123.000000","168.000000","213.000000","194.000000","0.000000","0.000000","0.000000","42.000000","169.000000","101.000000","125.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743102.000000",,,,, +"3758.000000","55.655000","3758.000000","55.655000","3758.000000","55.655000","1738.000000","0.000000",,,,,,,,,,,,"0.000000","496.500000","992.000000","33.000000","496.500000","496.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2071968.000000","0.000000","2092704.000000","129468.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","1593832.000000","2071968.000000","2092704.000000","44524.000000","29728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","182.000000","130.000000","173.000000","213.000000","194.000000","0.000000","0.000000","0.000000","45.000000","158.000000","107.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743122.000000",,,,, +"3842.000000","56.050000","3842.000000","56.050000","3842.000000","56.050000","1464.000000","0.000000",,,,,,,,,,,,"1.000000","895.500000","1788.000000","53.000000","895.500000","895.500000",,,,,,,,,,,"1530920.000000","1593832.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1593832.000000","2072020.000000","2092704.000000","44524.000000","29804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","178.000000","137.000000","174.000000","213.000000","194.000000","0.000000","0.000000","0.000000","47.000000","151.000000","112.000000","137.000000","205.000000","167.000000","160.000000","6000.000000","0.000000","743142.000000",,,,, +"3334.000000","46.665000","3334.000000","46.665000","3334.000000","46.665000","1707.000000","0.000000",,,,,,,,,,,,"122.000000","526.000000","929.000000","17.000000","526.000000","526.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071960.000000","0.000000","2092704.000000","129468.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","1300232.000000","2071960.000000","2092704.000000","44524.000000","29872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","174.000000","147.000000","179.000000","194.000000","194.000000","0.000000","0.000000","0.000000","51.000000","137.000000","119.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743162.000000",,,,, +"3524.000000","47.555000","3524.000000","47.555000","3524.000000","47.555000","2030.000000","0.000000",,,,,,,,,,,,"0.000000","422.500000","845.000000","24.000000","422.500000","422.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2071984.000000","0.000000","2092704.000000","129468.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","1300232.000000","2071984.000000","2092704.000000","44524.000000","29660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","169.000000","151.000000","180.000000","194.000000","194.000000","0.000000","0.000000","0.000000","53.000000","132.000000","123.000000","146.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743182.000000",,,,, +"4222.000000","50.835000","4222.000000","50.835000","4222.000000","50.835000","2990.000000","0.000000",,,,,,,,,,,,"0.000000","517.000000","1032.000000","20.000000","517.000000","517.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2072036.000000","0.000000","2092704.000000","129468.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","1300232.000000","2072036.000000","2092704.000000","44524.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9988.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","176.000000","157.000000","180.000000","208.000000","200.000000","0.000000","0.000000","0.000000","56.000000","141.000000","128.000000","150.000000","170.000000","170.000000","160.000000","6000.000000","0.000000","743202.000000",,,,, +"3176.000000","45.920000","3176.000000","45.920000","3176.000000","45.920000","2618.000000","0.000000",,,,,,,,,,,,"0.000000","379.500000","759.000000","12.000000","379.500000","379.500000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071952.000000","0.000000","2092704.000000","129468.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","1300232.000000","2071952.000000","2092704.000000","44524.000000","29916.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","72.000000","175.000000","165.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","59.000000","137.000000","133.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743222.000000",,,,, +"2639.000000","43.395000","2639.000000","43.395000","2639.000000","43.395000","3957.000000","0.000000",,,,,,,,,,,,"0.000000","384.000000","768.000000","26.000000","384.000000","384.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071768.000000","0.000000","2092704.000000","129468.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","1300232.000000","2071768.000000","2092704.000000","44524.000000","30064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","75.000000","171.000000","168.000000","183.000000","208.000000","200.000000","0.000000","0.000000","0.000000","61.000000","129.000000","135.000000","150.000000","169.000000","170.000000","160.000000","6000.000000","0.000000","743242.000000",,,,, +"3197.000000","46.020000","3197.000000","46.020000","3197.000000","46.020000","4861.000000","0.000000",,,,,,,,,,,,"0.000000","444.000000","888.000000","17.000000","444.000000","444.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","1300232.000000","2071696.000000","2092704.000000","44524.000000","30152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","78.000000","165.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","63.000000","113.000000","137.000000","150.000000","140.000000","170.000000","160.000000","6000.000000","0.000000","743262.000000",,,,, +"2422.000000","42.380000","2422.000000","42.380000","2422.000000","42.380000","8036.000000","0.000000",,,,,,,,,,,,"0.000000","320.000000","640.000000","15.000000","320.000000","320.000000",,,,,,,,,,,"1195376.000000","1300232.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","1300232.000000","2071572.000000","2092704.000000","44524.000000","30332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","82.000000","157.000000","173.000000","183.000000","192.000000","200.000000","0.000000","0.000000","0.000000","65.000000","103.000000","135.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743282.000000",,,,, +"2919.000000","44.210000","2919.000000","44.210000","2919.000000","44.210000","11295.000000","0.000000",,,,,,,,,,,,"0.000000","311.000000","622.000000","17.000000","311.000000","311.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071516.000000","0.000000","2092704.000000","129468.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1279260.000000","2071516.000000","2092704.000000","44524.000000","30448.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","68.000000","106.000000","134.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743302.000000",,,,, +"2960.000000","44.405000","2960.000000","44.405000","2960.000000","44.405000","10479.000000","0.000000",,,,,,,,,,,,"1.000000","260.000000","519.000000","22.000000","260.000000","260.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071352.000000","0.000000","2092704.000000","129468.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1279260.000000","2071352.000000","2092704.000000","44524.000000","30548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","167.000000","173.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","69.000000","107.000000","133.000000","150.000000","138.000000","170.000000","160.000000","6000.000000","0.000000","743322.000000",,,,, +"2669.000000","43.040000","2669.000000","43.040000","2669.000000","43.040000","5276.000000","0.000000",,,,,,,,,,,,"0.000000","202.000000","403.000000","5.000000","202.000000","202.000000",,,,,,,,,,,"1174404.000000","1279260.000000","0.000000","0.000000","2071508.000000","0.000000","2092704.000000","129468.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","1279260.000000","2071508.000000","2092704.000000","44524.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","169.000000","172.000000","184.000000","186.000000","200.000000","0.000000","0.000000","0.000000","72.000000","105.000000","130.000000","150.000000","137.000000","170.000000","160.000000","6000.000000","0.000000","743342.000000",,,,, +"2449.000000","40.005000","2449.000000","40.005000","2449.000000","40.005000","11881.000000","0.000000",,,,,,,,,,,,"1.000000","623.000000","1245.000000","39.000000","623.000000","623.000000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","1195376.000000","2071448.000000","2092704.000000","44524.000000","30456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","171.000000","172.000000","184.000000","199.000000","194.000000","0.000000","0.000000","0.000000","74.000000","100.000000","125.000000","150.000000","121.000000","167.000000","160.000000","6000.000000","0.000000","743362.000000",,,,, +"3373.000000","44.350000","3373.000000","44.350000","3373.000000","44.350000","8398.000000","0.000000",,,,,,,,,,,,"0.000000","392.500000","785.000000","25.000000","392.500000","392.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071464.000000","0.000000","2092704.000000","129468.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1195376.000000","2071464.000000","2092704.000000","44524.000000","30616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","100.000000","174.000000","172.000000","186.000000","199.000000","194.000000","0.000000","0.000000","0.000000","76.000000","105.000000","123.000000","151.000000","156.000000","167.000000","160.000000","6000.000000","0.000000","743382.000000",,,,, +"3609.000000","45.455000","3609.000000","45.455000","3609.000000","45.455000","8569.000000","0.000000",,,,,,,,,,,,"0.000000","176.500000","352.000000","12.000000","176.500000","176.500000",,,,,,,,,,,"1090516.000000","1195376.000000","0.000000","0.000000","2071688.000000","0.000000","2092704.000000","129468.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","1195376.000000","2071688.000000","2092704.000000","44524.000000","30208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10184.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","104.000000","184.000000","172.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","79.000000","119.000000","120.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743402.000000",,,,, +"2393.000000","40.240000","2393.000000","40.240000","2393.000000","40.240000","12932.000000","0.000000",,,,,,,,,,,,"0.000000","458.000000","916.000000","50.000000","458.000000","458.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","1216348.000000","2071744.000000","2092704.000000","44524.000000","30096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","173.000000","170.000000","186.000000","201.000000","192.000000","0.000000","0.000000","0.000000","81.000000","118.000000","117.000000","152.000000","156.000000","152.000000","160.000000","6000.000000","0.000000","743422.000000",,,,, +"3004.000000","43.115000","3004.000000","43.115000","3004.000000","43.115000","11131.000000","0.000000",,,,,,,,,,,,"0.000000","283.000000","565.000000","8.000000","283.000000","283.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071780.000000","0.000000","2092704.000000","129468.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","1216348.000000","2071780.000000","2092704.000000","44524.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","110.000000","165.000000","170.000000","186.000000","201.000000","190.000000","0.000000","0.000000","0.000000","83.000000","115.000000","116.000000","152.000000","152.000000","152.000000","160.000000","6000.000000","0.000000","743442.000000",,,,, +"3259.000000","44.310000","3259.000000","44.310000","3259.000000","44.310000","8248.000000","0.000000",,,,,,,,,,,,"0.000000","398.000000","796.000000","23.000000","398.000000","398.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2071748.000000","0.000000","2092704.000000","129468.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","1216348.000000","2071748.000000","2092704.000000","44524.000000","30252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10256.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","166.000000","170.000000","189.000000","200.000000","192.000000","0.000000","0.000000","0.000000","86.000000","109.000000","115.000000","152.000000","137.000000","147.000000","160.000000","6000.000000","0.000000","743462.000000",,,,, +"3703.000000","47.895000","3703.000000","47.895000","3703.000000","47.895000","6019.000000","0.000000",,,,,,,,,,,,"0.000000","401.000000","802.000000","20.000000","401.000000","401.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1279260.000000","2071712.000000","2092704.000000","44524.000000","30352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","118.000000","176.000000","172.000000","190.000000","200.000000","193.000000","0.000000","0.000000","0.000000","88.000000","121.000000","115.000000","152.000000","172.000000","152.000000","160.000000","6000.000000","0.000000","743482.000000",,,,, +"2590.000000","42.665000","2590.000000","42.665000","2590.000000","42.665000","8615.000000","0.000000",,,,,,,,,,,,"0.000000","288.000000","575.000000","11.000000","288.000000","288.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071644.000000","0.000000","2092704.000000","129468.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1279260.000000","2071644.000000","2092704.000000","44524.000000","30460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","175.000000","169.000000","190.000000","200.000000","192.000000","0.000000","0.000000","0.000000","90.000000","116.000000","111.000000","152.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743502.000000",,,,, +"3504.000000","46.960000","3504.000000","46.960000","3504.000000","46.960000","2617.000000","0.000000",,,,,,,,,,,,"1.000000","415.000000","826.000000","26.000000","415.000000","415.000000",,,,,,,,,,,"1258288.000000","1279260.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","1279260.000000","2071556.000000","2092704.000000","44524.000000","30572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10416.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","125.000000","170.000000","169.000000","190.000000","193.000000","192.000000","0.000000","0.000000","0.000000","93.000000","120.000000","111.000000","153.000000","172.000000","138.000000","160.000000","6000.000000","0.000000","743522.000000",,,,, +"2636.000000","41.380000","2636.000000","41.380000","2636.000000","41.380000","5320.000000","0.000000",,,,,,,,,,,,"0.000000","452.500000","905.000000","19.000000","452.500000","452.500000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","1216348.000000","2071220.000000","2092704.000000","44524.000000","30700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","163.000000","170.000000","190.000000","186.000000","189.000000","0.000000","0.000000","0.000000","95.000000","112.000000","112.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743542.000000",,,,, +"2957.000000","42.890000","2957.000000","42.890000","2957.000000","42.890000","5685.000000","0.000000",,,,,,,,,,,,"0.000000","387.000000","774.000000","92.000000","387.000000","387.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071116.000000","0.000000","2092704.000000","129468.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","1216348.000000","2071116.000000","2092704.000000","44524.000000","30812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","132.000000","168.000000","170.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","97.000000","113.000000","111.000000","153.000000","153.000000","138.000000","160.000000","6000.000000","0.000000","743562.000000",,,,, +"3797.000000","46.840000","3797.000000","46.840000","3797.000000","46.840000","3520.000000","0.000000",,,,,,,,,,,,"1.000000","515.000000","1029.000000","20.000000","515.000000","515.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071064.000000","0.000000","2092704.000000","129468.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1216348.000000","2071064.000000","2092704.000000","44528.000000","30876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","172.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","100.000000","117.000000","114.000000","154.000000","158.000000","153.000000","160.000000","6000.000000","0.000000","743582.000000",,,,, +"3881.000000","47.235000","3881.000000","47.235000","3881.000000","47.235000","2934.000000","0.000000",,,,,,,,,,,,"0.000000","466.000000","932.000000","17.000000","466.000000","466.000000",,,,,,,,,,,"1195376.000000","1216348.000000","0.000000","0.000000","2071136.000000","0.000000","2092704.000000","129468.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","1216348.000000","2071136.000000","2092704.000000","44528.000000","30980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","178.000000","172.000000","192.000000","198.000000","198.000000","0.000000","0.000000","0.000000","103.000000","127.000000","116.000000","156.000000","158.000000","154.000000","160.000000","6000.000000","0.000000","743602.000000",,,,, +"4735.000000","51.245000","4735.000000","51.245000","4735.000000","51.245000","1357.000000","0.000000",,,,,,,,,,,,"0.000000","471.000000","941.000000","19.000000","471.000000","471.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070972.000000","0.000000","2092704.000000","129468.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","1216348.000000","2070972.000000","2092704.000000","44528.000000","31100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","143.000000","186.000000","174.000000","194.000000","202.000000","198.000000","0.000000","0.000000","0.000000","106.000000","148.000000","119.000000","158.000000","178.000000","158.000000","160.000000","6000.000000","0.000000","743622.000000",,,,, +"4628.000000","50.740000","4628.000000","50.740000","4628.000000","50.740000","1563.000000","0.000000",,,,,,,,,,,,"0.000000","594.000000","1187.000000","37.000000","594.000000","594.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070884.000000","0.000000","2092704.000000","129468.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1216348.000000","2070884.000000","2092704.000000","44528.000000","31224.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","192.000000","177.000000","195.000000","210.000000","199.000000","0.000000","0.000000","0.000000","110.000000","164.000000","126.000000","162.000000","205.000000","172.000000","160.000000","6000.000000","0.000000","743642.000000",,,,, +"4789.000000","51.500000","4789.000000","51.500000","4789.000000","51.500000","1711.000000","0.000000",,,,,,,,,,,,"0.000000","442.500000","885.000000","37.000000","442.500000","442.500000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2070896.000000","0.000000","2092704.000000","129468.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","1216348.000000","2070896.000000","2092704.000000","44528.000000","31296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10788.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","151.000000","197.000000","177.000000","198.000000","210.000000","201.000000","0.000000","0.000000","0.000000","113.000000","177.000000","131.000000","167.000000","205.000000","178.000000","160.000000","6000.000000","0.000000","743662.000000",,,,, +"4795.000000","51.030000","4795.000000","51.030000","4795.000000","51.030000","1946.000000","0.000000",,,,,,,,,,,,"0.000000","555.500000","1109.000000","46.000000","555.500000","555.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1195376.000000","2070656.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","199.000000","179.000000","199.000000","210.000000","202.000000","0.000000","0.000000","0.000000","116.000000","183.000000","135.000000","172.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","743682.000000",,,,, +"3338.000000","44.180000","3338.000000","44.180000","3338.000000","44.180000","959.000000","0.000000",,,,,,,,,,,,"1.000000","364.000000","726.000000","22.000000","364.000000","364.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070596.000000","0.000000","2092704.000000","129468.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1195376.000000","2070596.000000","2092704.000000","44528.000000","31524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","192.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","119.000000","164.000000","135.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743702.000000",,,,, +"3159.000000","43.340000","3159.000000","43.340000","3159.000000","43.340000","866.000000","0.000000",,,,,,,,,,,,"0.000000","559.000000","1118.000000","19.000000","559.000000","559.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2070460.000000","0.000000","2092704.000000","129468.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1195376.000000","2070460.000000","2092704.000000","44528.000000","31612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","177.000000","178.000000","199.000000","206.000000","202.000000","0.000000","0.000000","0.000000","120.000000","145.000000","136.000000","172.000000","204.000000","184.000000","160.000000","6000.000000","0.000000","743722.000000",,,,, +"3239.000000","43.220000","3239.000000","43.220000","3239.000000","43.220000","1889.000000","0.000000",,,,,,,,,,,,"0.000000","285.500000","570.000000","20.000000","285.500000","285.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070392.000000","0.000000","2092704.000000","129468.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","1174404.000000","2070392.000000","2092704.000000","44528.000000","31712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","164.000000","179.000000","199.000000","190.000000","202.000000","0.000000","0.000000","0.000000","121.000000","121.000000","136.000000","172.000000","147.000000","184.000000","160.000000","6000.000000","0.000000","743742.000000",,,,, +"3103.000000","42.575000","3103.000000","42.575000","3103.000000","42.575000","1391.000000","0.000000",,,,,,,,,,,,"1.000000","380.000000","758.000000","12.000000","380.000000","380.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070324.000000","0.000000","2092704.000000","129468.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","1174404.000000","2070324.000000","2092704.000000","44528.000000","31800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","158.000000","177.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","124.000000","119.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743762.000000",,,,, +"3145.000000","42.775000","3145.000000","42.775000","3145.000000","42.775000","1284.000000","0.000000",,,,,,,,,,,,"15.000000","5220.000000","10424.000000","46.000000","5220.000000","5220.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1174404.000000","2070608.000000","2092704.000000","44528.000000","31332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","163.000000","176.000000","199.000000","176.000000","202.000000","0.000000","0.000000","0.000000","125.000000","118.000000","136.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743782.000000",,,,, +"3305.000000","43.525000","3305.000000","43.525000","3305.000000","43.525000","1718.000000","0.000000",,,,,,,,,,,,"3.000000","376.500000","750.000000","19.000000","376.500000","376.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2070124.000000","0.000000","2092704.000000","129468.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1174404.000000","2070124.000000","2092704.000000","44528.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","168.000000","177.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","125.000000","122.000000","137.000000","172.000000","150.000000","184.000000","160.000000","6000.000000","0.000000","743802.000000",,,,, +"3116.000000","42.635000","3116.000000","42.635000","3116.000000","42.635000","1617.000000","0.000000",,,,,,,,,,,,"16.000000","10448.500000","20881.000000","46.000000","10448.500000","10448.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","1174404.000000","2071588.000000","2092704.000000","44528.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","166.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","127.000000","120.000000","137.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743822.000000",,,,, +"3783.000000","45.775000","3783.000000","45.775000","3783.000000","45.775000","2242.000000","0.000000",,,,,,,,,,,,"38.000000","2202.500000","4365.000000","46.000000","2202.500000","2202.500000",,,,,,,,,,,"1111488.000000","1174404.000000","0.000000","0.000000","2072004.000000","0.000000","2092704.000000","129468.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1174404.000000","2072004.000000","2092704.000000","44528.000000","28888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","167.000000","176.000000","199.000000","186.000000","202.000000","0.000000","0.000000","0.000000","128.000000","124.000000","138.000000","172.000000","134.000000","184.000000","160.000000","6000.000000","0.000000","743842.000000",,,,, +"3152.000000","47.305000","3152.000000","47.305000","3152.000000","47.305000","2052.000000","0.000000",,,,,,,,,,,,"44.000000","951.500000","1858.000000","42.000000","951.500000","951.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072296.000000","0.000000","2092704.000000","129468.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1363148.000000","2072296.000000","2092704.000000","44528.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","161.000000","176.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","127.000000","140.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743862.000000",,,,, +"3057.000000","46.865000","3057.000000","46.865000","3057.000000","46.865000","1879.000000","0.000000",,,,,,,,,,,,"3.000000","580.500000","1157.000000","28.000000","580.500000","580.500000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072204.000000","0.000000","2092704.000000","129468.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1363148.000000","2072204.000000","2092704.000000","44528.000000","28988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","124.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743882.000000",,,,, +"3577.000000","49.305000","3577.000000","49.305000","3577.000000","49.305000","1444.000000","0.000000",,,,,,,,,,,,"0.000000","479.000000","958.000000","19.000000","479.000000","479.000000",,,,,,,,,,,"1132460.000000","1363148.000000","0.000000","0.000000","2072276.000000","0.000000","2092704.000000","129468.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","1363148.000000","2072276.000000","2092704.000000","44524.000000","28904.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","160.000000","173.000000","199.000000","196.000000","202.000000","0.000000","0.000000","0.000000","129.000000","126.000000","138.000000","172.000000","152.000000","184.000000","160.000000","6000.000000","0.000000","743902.000000",,,,, +"3555.000000","52.205000","3555.000000","52.205000","3555.000000","52.205000","1706.000000","0.000000",,,,,,,,,,,,"1.000000","677.500000","1353.000000","29.000000","677.500000","677.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072100.000000","0.000000","2092704.000000","129468.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","1488976.000000","2072100.000000","2092704.000000","44524.000000","28936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10872.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","163.000000","171.000000","199.000000","181.000000","200.000000","0.000000","0.000000","0.000000","129.000000","124.000000","135.000000","172.000000","141.000000","184.000000","160.000000","6000.000000","0.000000","743922.000000",,,,, +"3403.000000","51.485000","3403.000000","51.485000","3403.000000","51.485000","1428.000000","0.000000",,,,,,,,,,,,"92.000000","2309.500000","4525.000000","39.000000","2309.500000","2309.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072028.000000","0.000000","2092704.000000","129468.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1488976.000000","2072028.000000","2092704.000000","44524.000000","29016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","175.000000","170.000000","200.000000","202.000000","200.000000","0.000000","0.000000","0.000000","129.000000","132.000000","132.000000","172.000000","147.000000","177.000000","160.000000","6000.000000","0.000000","743942.000000",,,,, +"3741.000000","53.075000","3741.000000","53.075000","3741.000000","53.075000","1499.000000","0.000000",,,,,,,,,,,,"2268.000000","1792.500000","1316.000000","17.000000","1792.500000","1792.500000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2071728.000000","0.000000","2092704.000000","129468.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1488976.000000","2071728.000000","2092704.000000","44524.000000","29096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","173.000000","173.000000","168.000000","198.000000","202.000000","196.000000","0.000000","0.000000","0.000000","128.000000","133.000000","129.000000","169.000000","162.000000","152.000000","160.000000","6000.000000","0.000000","743962.000000",,,,, +"4139.000000","54.950000","4139.000000","54.950000","4139.000000","54.950000","2321.000000","0.000000",,,,,,,,,,,,"3816.000000","4616.000000","5415.000000","13.000000","4616.000000","4616.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072108.000000","0.000000","2092704.000000","129468.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1488976.000000","2072108.000000","2092704.000000","44524.000000","28712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","202.000000","187.000000","0.000000","0.000000","0.000000","128.000000","141.000000","127.000000","170.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","743982.000000",,,,, +"3588.000000","52.355000","3588.000000","52.355000","3588.000000","52.355000","1315.000000","0.000000",,,,,,,,,,,,"101.000000","2767.000000","5432.000000","20.000000","2767.000000","2767.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072320.000000","0.000000","2092704.000000","129468.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","1488976.000000","2072320.000000","2092704.000000","44524.000000","28504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10420.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","166.000000","198.000000","196.000000","188.000000","0.000000","0.000000","0.000000","127.000000","142.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744002.000000",,,,, +"3026.000000","49.715000","3026.000000","49.715000","3026.000000","49.715000","1891.000000","0.000000",,,,,,,,,,,,"16.000000","390.000000","764.000000","31.000000","390.000000","390.000000",,,,,,,,,,,"1153432.000000","1488976.000000","0.000000","0.000000","2072416.000000","0.000000","2092704.000000","129468.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1488976.000000","2072416.000000","2092704.000000","44524.000000","28316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","175.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","135.000000","127.000000","167.000000","182.000000","150.000000","160.000000","6000.000000","0.000000","744022.000000",,,,, +"3614.000000","53.975000","3614.000000","53.975000","3614.000000","53.975000","1116.000000","0.000000",,,,,,,,,,,,"2.000000","408.000000","814.000000","53.000000","408.000000","408.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072400.000000","0.000000","2092704.000000","129468.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","1551892.000000","2072400.000000","2092704.000000","44524.000000","28348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","172.000000","168.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","128.000000","167.000000","149.000000","150.000000","160.000000","6000.000000","0.000000","744042.000000",,,,, +"3623.000000","54.020000","3623.000000","54.020000","3623.000000","54.020000","1252.000000","0.000000",,,,,,,,,,,,"2.000000","373.000000","744.000000","18.000000","373.000000","373.000000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072352.000000","0.000000","2092704.000000","129468.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","1551892.000000","2072352.000000","2092704.000000","44524.000000","28396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","171.000000","169.000000","198.000000","202.000000","195.000000","0.000000","0.000000","0.000000","127.000000","127.000000","129.000000","162.000000","151.000000","151.000000","160.000000","6000.000000","0.000000","744062.000000",,,,, +"3791.000000","54.810000","3791.000000","54.810000","3791.000000","54.810000","1636.000000","0.000000",,,,,,,,,,,,"6.000000","461.500000","917.000000","23.000000","461.500000","461.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2072604.000000","0.000000","2092704.000000","129468.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1551892.000000","2072604.000000","2092704.000000","44524.000000","28416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","174.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","166.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744082.000000",,,,, +"3988.000000","58.235000","3988.000000","58.235000","3988.000000","58.235000","1852.000000","0.000000",,,,,,,,,,,,"2.000000","317.500000","632.000000","37.000000","317.500000","317.500000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072708.000000","0.000000","2092704.000000","129468.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1656748.000000","2072708.000000","2092704.000000","44524.000000","28496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","178.000000","170.000000","198.000000","194.000000","195.000000","0.000000","0.000000","0.000000","127.000000","138.000000","131.000000","162.000000","166.000000","156.000000","160.000000","6000.000000","0.000000","744102.000000",,,,, +"3827.000000","57.480000","3827.000000","57.480000","3827.000000","57.480000","1512.000000","0.000000",,,,,,,,,,,,"21.000000","431.000000","840.000000","22.000000","431.000000","431.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072640.000000","0.000000","2092704.000000","129468.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","1656748.000000","2072640.000000","2092704.000000","44524.000000","28564.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10456.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","183.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","127.000000","147.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744122.000000",,,,, +"3622.000000","56.515000","3622.000000","56.515000","3622.000000","56.515000","2034.000000","0.000000",,,,,,,,,,,,"4.000000","1117.000000","2229.000000","51.000000","1117.000000","1117.000000",,,,,,,,,,,"1342176.000000","1656748.000000","0.000000","0.000000","2072764.000000","0.000000","2092704.000000","129468.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","1656748.000000","2072764.000000","2092704.000000","44524.000000","28616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","183.000000","173.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","143.000000","135.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744142.000000",,,,, +"3255.000000","55.795000","3255.000000","55.795000","3255.000000","55.795000","1931.000000","0.000000",,,,,,,,,,,,"1243.000000","1317.000000","1391.000000","47.000000","1317.000000","1317.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072752.000000","0.000000","2092704.000000","129468.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","1698692.000000","2072752.000000","2092704.000000","44524.000000","28716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","184.000000","174.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","129.000000","142.000000","134.000000","166.000000","192.000000","162.000000","160.000000","6000.000000","0.000000","744162.000000",,,,, +"2560.000000","52.525000","2560.000000","52.525000","2560.000000","52.525000","1557.000000","0.000000",,,,,,,,,,,,"9365.000000","5795.000000","2225.000000","13.000000","5795.000000","5795.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072916.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072916.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","159.000000","172.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","118.000000","133.000000","166.000000","160.000000","162.000000","160.000000","6000.000000","0.000000","744182.000000",,,,, +"3235.000000","55.695000","3235.000000","55.695000","3235.000000","55.695000","1845.000000","0.000000",,,,,,,,,,,,"3843.000000","7886.500000","11930.000000","21.000000","7886.500000","7886.500000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072912.000000","0.000000","2092704.000000","129468.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1698692.000000","2072912.000000","2092704.000000","44528.000000","28608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","145.000000","170.000000","198.000000","205.000000","196.000000","0.000000","0.000000","0.000000","128.000000","109.000000","132.000000","166.000000","128.000000","162.000000","160.000000","6000.000000","0.000000","744202.000000",,,,, +"3267.000000","55.850000","3267.000000","55.850000","3267.000000","55.850000","1706.000000","0.000000",,,,,,,,,,,,"2244.000000","3148.500000","4052.000000","20.000000","3148.500000","3148.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073196.000000","0.000000","2092704.000000","129468.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","1698692.000000","2073196.000000","2092704.000000","44528.000000","28620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10360.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","172.000000","140.000000","170.000000","198.000000","181.000000","196.000000","0.000000","0.000000","0.000000","129.000000","114.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744222.000000",,,,, +"3604.000000","57.430000","3604.000000","57.430000","3604.000000","57.430000","1729.000000","0.000000",,,,,,,,,,,,"57.000000","5524.000000","10990.000000","30.000000","5524.000000","5524.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073156.000000","0.000000","2092704.000000","129468.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","1698692.000000","2073156.000000","2092704.000000","44528.000000","28660.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10396.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","172.000000","158.000000","169.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","126.000000","132.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744242.000000",,,,, +"2759.000000","53.460000","2759.000000","53.460000","2759.000000","53.460000","1574.000000","0.000000",,,,,,,,,,,,"480.000000","2911.500000","5339.000000","64.000000","2911.500000","2911.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073368.000000","0.000000","2092704.000000","129468.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","1698692.000000","2073368.000000","2092704.000000","44528.000000","28624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10356.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","171.000000","156.000000","166.000000","198.000000","190.000000","196.000000","0.000000","0.000000","0.000000","130.000000","123.000000","130.000000","166.000000","164.000000","164.000000","160.000000","6000.000000","0.000000","744262.000000",,,,, +"3597.000000","57.395000","3597.000000","57.395000","3597.000000","57.395000","1187.000000","0.000000",,,,,,,,,,,,"251.000000","3973.500000","7694.000000","55.000000","3973.500000","3973.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073188.000000","0.000000","2092704.000000","129468.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","1698692.000000","2073188.000000","2092704.000000","44528.000000","28820.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10424.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","170.000000","155.000000","166.000000","198.000000","190.000000","195.000000","0.000000","0.000000","0.000000","130.000000","122.000000","128.000000","166.000000","150.000000","160.000000","160.000000","6000.000000","0.000000","744282.000000",,,,, +"3072.000000","54.930000","3072.000000","54.930000","3072.000000","54.930000","1074.000000","0.000000",,,,,,,,,,,,"272.000000","8873.500000","17474.000000","33.000000","8873.500000","8873.500000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073312.000000","0.000000","2092704.000000","129468.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","1698692.000000","2073312.000000","2092704.000000","44528.000000","28708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10292.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","169.000000","148.000000","164.000000","198.000000","174.000000","194.000000","0.000000","0.000000","0.000000","130.000000","118.000000","127.000000","166.000000","137.000000","160.000000","160.000000","6000.000000","0.000000","744302.000000",,,,, +"3450.000000","56.710000","3450.000000","56.710000","3450.000000","56.710000","1837.000000","0.000000",,,,,,,,,,,,"140.000000","7954.000000","15767.000000","36.000000","7954.000000","7954.000000",,,,,,,,,,,"1488976.000000","1698692.000000","0.000000","0.000000","2073116.000000","0.000000","2092704.000000","129468.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","1698692.000000","2073116.000000","2092704.000000","44528.000000","28760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","162.000000","164.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","131.000000","126.000000","128.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744322.000000",,,,, +"2592.000000","52.680000","2592.000000","52.680000","2592.000000","52.680000","2072.000000","0.000000",,,,,,,,,,,,"8645.000000","11137.000000","13629.000000","46.000000","11137.000000","11137.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2073080.000000","0.000000","2092704.000000","129468.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1698692.000000","2073080.000000","2092704.000000","44528.000000","28684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","169.000000","153.000000","162.000000","198.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","117.000000","126.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744342.000000",,,,, +"3015.000000","54.665000","3015.000000","54.665000","3015.000000","54.665000","1312.000000","0.000000",,,,,,,,,,,,"1516.000000","11797.000000","22076.000000","51.000000","11797.000000","11797.000000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072996.000000","0.000000","2092704.000000","129468.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","1698692.000000","2072996.000000","2092704.000000","44528.000000","28772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10380.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","151.000000","160.000000","197.000000","183.000000","190.000000","0.000000","0.000000","0.000000","130.000000","114.000000","125.000000","166.000000","145.000000","160.000000","160.000000","6000.000000","0.000000","744362.000000",,,,, +"3096.000000","55.040000","3096.000000","55.040000","3096.000000","55.040000","1794.000000","0.000000",,,,,,,,,,,,"333.000000","7155.500000","13978.000000","33.000000","7155.500000","7155.500000",,,,,,,,,,,"1426060.000000","1698692.000000","0.000000","0.000000","2072792.000000","0.000000","2092704.000000","129468.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","1698692.000000","2072792.000000","2092704.000000","44532.000000","28780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","141.000000","157.000000","197.000000","169.000000","188.000000","0.000000","0.000000","0.000000","130.000000","109.000000","122.000000","164.000000","133.000000","155.000000","160.000000","6000.000000","0.000000","744382.000000",,,,, +"3331.000000","56.150000","3331.000000","56.150000","3331.000000","56.150000","1820.000000","0.000000",,,,,,,,,,,,"1799.000000","3938.000000","6077.000000","18.000000","3938.000000","3938.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072512.000000","0.000000","2092704.000000","129468.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1698692.000000","2072512.000000","2092704.000000","43168.000000","28868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","150.000000","156.000000","197.000000","176.000000","188.000000","0.000000","0.000000","0.000000","130.000000","113.000000","121.000000","164.000000","133.000000","150.000000","160.000000","6000.000000","0.000000","744402.000000",,,,, +"2534.000000","52.400000","2534.000000","52.400000","2534.000000","52.400000","1408.000000","0.000000",,,,,,,,,,,,"7824.000000","10464.000000","13103.000000","84.000000","10464.000000","10464.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072464.000000","0.000000","2092704.000000","129468.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","1698692.000000","2072464.000000","2092704.000000","43168.000000","28920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","139.000000","151.000000","197.000000","176.000000","183.000000","0.000000","0.000000","0.000000","130.000000","113.000000","118.000000","164.000000","144.000000","145.000000","160.000000","6000.000000","0.000000","744422.000000",,,,, +"1798.000000","48.945000","1798.000000","48.945000","1798.000000","48.945000","1310.000000","0.000000",,,,,,,,,,,,"10924.000000","8664.000000","6403.000000","64.000000","8664.000000","8664.000000",,,,,,,,,,,"1468004.000000","1698692.000000","0.000000","0.000000","2072468.000000","0.000000","2092704.000000","129468.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","1698692.000000","2072468.000000","2092704.000000","43168.000000","28896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10532.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","122.000000","145.000000","197.000000","176.000000","181.000000","0.000000","0.000000","0.000000","129.000000","100.000000","114.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744442.000000",,,,, +"1359.000000","45.380000","1359.000000","45.380000","1359.000000","45.380000","1413.000000","0.000000",,,,,,,,,,,,"14270.000000","12067.500000","9865.000000","8.000000","12067.500000","12067.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072824.000000","0.000000","2092704.000000","129468.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","1635776.000000","2072824.000000","2092704.000000","43168.000000","28640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","163.000000","93.000000","138.000000","196.000000","152.000000","180.000000","0.000000","0.000000","0.000000","128.000000","81.000000","109.000000","164.000000","144.000000","138.000000","160.000000","6000.000000","0.000000","744462.000000",,,,, +"1710.000000","47.030000","1710.000000","47.030000","1710.000000","47.030000","1541.000000","0.000000",,,,,,,,,,,,"12476.000000","9800.500000","7124.000000","9.000000","9800.500000","9800.500000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","1635776.000000","2072788.000000","2092704.000000","43176.000000","28672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","69.000000","133.000000","196.000000","105.000000","180.000000","0.000000","0.000000","0.000000","126.000000","58.000000","106.000000","164.000000","80.000000","138.000000","160.000000","6000.000000","0.000000","744482.000000",,,,, +"1551.000000","46.285000","1551.000000","46.285000","1551.000000","46.285000","2795.000000","0.000000",,,,,,,,,,,,"20492.000000","13573.000000","6652.000000","53.000000","13573.000000","13573.000000",,,,,,,,,,,"1468004.000000","1635776.000000","0.000000","0.000000","2073168.000000","0.000000","2092704.000000","129468.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","1635776.000000","2073168.000000","2092704.000000","43184.000000","28336.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10236.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","157.000000","67.000000","130.000000","196.000000","129.000000","180.000000","0.000000","0.000000","0.000000","124.000000","56.000000","103.000000","164.000000","107.000000","138.000000","160.000000","6000.000000","0.000000","744502.000000",,,,, +"2678.000000","51.580000","2678.000000","51.580000","2678.000000","51.580000","1434.000000","0.000000",,,,,,,,,,,,"9138.000000","10579.000000","12020.000000","49.000000","10579.000000","10579.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073400.000000","0.000000","2092704.000000","129468.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","1635776.000000","2073400.000000","2092704.000000","43184.000000","28400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","82.000000","126.000000","196.000000","129.000000","174.000000","0.000000","0.000000","0.000000","122.000000","66.000000","100.000000","162.000000","107.000000","137.000000","160.000000","6000.000000","0.000000","744522.000000",,,,, +"2799.000000","52.145000","2799.000000","52.145000","2799.000000","52.145000","1383.000000","0.000000",,,,,,,,,,,,"5576.000000","3555.500000","1535.000000","7.000000","3555.500000","3555.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2073292.000000","0.000000","2092704.000000","129468.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","1635776.000000","2073292.000000","2092704.000000","43184.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","124.000000","126.000000","194.000000","189.000000","174.000000","0.000000","0.000000","0.000000","121.000000","88.000000","98.000000","156.000000","125.000000","135.000000","160.000000","6000.000000","0.000000","744542.000000",,,,, +"3318.000000","54.590000","3318.000000","54.590000","3318.000000","54.590000","883.000000","0.000000",,,,,,,,,,,,"197.000000","2913.000000","5629.000000","38.000000","2913.000000","2913.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2072920.000000","0.000000","2092704.000000","129468.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","1635776.000000","2072920.000000","2092704.000000","43184.000000","28596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","153.000000","129.000000","190.000000","198.000000","176.000000","0.000000","0.000000","0.000000","119.000000","105.000000","99.000000","151.000000","134.000000","135.000000","160.000000","6000.000000","0.000000","744562.000000",,,,, +"3036.000000","54.260000","3036.000000","54.260000","3036.000000","54.260000","1511.000000","0.000000",,,,,,,,,,,,"9290.000000","4985.500000","680.000000","18.000000","4985.500000","4985.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072836.000000","0.000000","2092704.000000","129468.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072836.000000","2092704.000000","43184.000000","28588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","153.000000","163.000000","128.000000","188.000000","198.000000","176.000000","0.000000","0.000000","0.000000","118.000000","116.000000","99.000000","150.000000","134.000000","133.000000","160.000000","6000.000000","0.000000","744582.000000",,,,, +"3164.000000","54.865000","3164.000000","54.865000","3164.000000","54.865000","1816.000000","0.000000",,,,,,,,,,,,"3971.000000","6502.500000","9033.000000","57.000000","6502.500000","6502.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072788.000000","0.000000","2092704.000000","129468.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","1677720.000000","2072788.000000","2092704.000000","43184.000000","28636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","153.000000","127.000000","188.000000","198.000000","178.000000","0.000000","0.000000","0.000000","118.000000","119.000000","98.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744602.000000",,,,, +"2829.000000","53.290000","2829.000000","53.290000","2829.000000","53.290000","1530.000000","0.000000",,,,,,,,,,,,"839.000000","784.500000","729.000000","20.000000","784.500000","784.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072716.000000","0.000000","2092704.000000","129468.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","1677720.000000","2072716.000000","2092704.000000","43184.000000","28776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","146.000000","126.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","118.000000","117.000000","97.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744622.000000",,,,, +"1050.000000","44.930000","1050.000000","44.930000","1050.000000","44.930000","1220.000000","0.000000",,,,,,,,,,,,"13517.000000","7970.000000","2423.000000","5.000000","7970.000000","7970.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072784.000000","0.000000","2092704.000000","129468.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","1677720.000000","2072784.000000","2092704.000000","43184.000000","28836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","116.000000","121.000000","188.000000","195.000000","178.000000","0.000000","0.000000","0.000000","116.000000","94.000000","94.000000","150.000000","139.000000","134.000000","160.000000","6000.000000","0.000000","744642.000000",,,,, +"1107.000000","45.195000","1107.000000","45.195000","1107.000000","45.195000","1564.000000","0.000000",,,,,,,,,,,,"5707.000000","7605.000000","9501.000000","12.000000","7605.000000","7605.000000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072760.000000","0.000000","2092704.000000","129468.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","1677720.000000","2072760.000000","2092704.000000","43184.000000","28864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10604.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","147.000000","79.000000","113.000000","188.000000","180.000000","178.000000","0.000000","0.000000","0.000000","114.000000","64.000000","88.000000","149.000000","134.000000","134.000000","160.000000","6000.000000","0.000000","744662.000000",,,,, +"726.000000","43.405000","726.000000","43.405000","726.000000","43.405000","1211.000000","0.000000",,,,,,,,,,,,"12789.000000","17614.500000","22400.000000","11.000000","17614.500000","17614.500000",,,,,,,,,,,"1614804.000000","1677720.000000","0.000000","0.000000","2072868.000000","0.000000","2092704.000000","129468.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","1677720.000000","2072868.000000","2092704.000000","43184.000000","28792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10452.000000","0.000000","0.000000",,,,,,"0.000000","39.000000",,,,,,,,,,,"0.000000","144.000000","44.000000","106.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","112.000000","38.000000","83.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744682.000000",,,,, +"723.000000","43.895000","723.000000","43.895000","723.000000","43.895000","1861.000000","0.000000",,,,,,,,,,,,"9391.000000","10150.500000","10882.000000","9.000000","10150.500000","10150.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073436.000000","0.000000","2092704.000000","129468.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","1698692.000000","2073436.000000","2092704.000000","44512.000000","28516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10112.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","142.000000","41.000000","99.000000","188.000000","69.000000","178.000000","0.000000","0.000000","0.000000","110.000000","34.000000","78.000000","149.000000","48.000000","134.000000","160.000000","6000.000000","0.000000","744702.000000",,,,, +"542.000000","43.045000","542.000000","43.045000","542.000000","43.045000","1364.000000","0.000000",,,,,,,,,,,,"375.000000","388.500000","380.000000","2.000000","388.500000","388.500000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073412.000000","0.000000","2092704.000000","129468.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","1698692.000000","2073412.000000","2092704.000000","44520.000000","28548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10128.000000","0.000000","0.000000",,,,,,"14.000000","7.000000",,,,,,,,,,,"0.000000","138.000000","30.000000","91.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","108.000000","25.000000","71.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744722.000000",,,,, +"376.000000","42.265000","376.000000","42.265000","376.000000","42.265000","1429.000000","0.000000",,,,,,,,,,,,"1047.000000","616.000000","157.000000","3.000000","616.000000","616.000000",,,,,,,,,,,"1509948.000000","1698692.000000","0.000000","0.000000","2073520.000000","0.000000","2092704.000000","129468.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","1698692.000000","2073520.000000","2092704.000000","44520.000000","28632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10160.000000","0.000000","0.000000",,,,,,"21.000000","7.000000",,,,,,,,,,,"0.000000","135.000000","24.000000","87.000000","188.000000","50.000000","178.000000","0.000000","0.000000","0.000000","105.000000","20.000000","67.000000","149.000000","37.000000","128.000000","160.000000","6000.000000","0.000000","744742.000000",,,,, +"1111.000000","45.215000","1111.000000","45.215000","1111.000000","45.215000","1513.000000","0.000000",,,,,,,,,,,,"765.000000","4216.500000","7663.000000","20.000000","4216.500000","4216.500000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073572.000000","0.000000","2092704.000000","129468.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","1677720.000000","2073572.000000","2092704.000000","44520.000000","28812.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10180.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","133.000000","28.000000","86.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","103.000000","24.000000","67.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744762.000000",,,,, +"655.000000","43.070000","655.000000","43.070000","655.000000","43.070000","1890.000000","0.000000",,,,,,,,,,,,"51.000000","385.000000","717.000000","8.000000","385.000000","385.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073452.000000","0.000000","2092704.000000","129468.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","1677720.000000","2073452.000000","2092704.000000","44520.000000","29032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10204.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","129.000000","30.000000","83.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","101.000000","27.000000","65.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744782.000000",,,,, +"599.000000","42.810000","599.000000","42.810000","599.000000","42.810000","1702.000000","0.000000",,,,,,,,,,,,"993.000000","608.000000","219.000000","7.000000","608.000000","608.000000",,,,,,,,,,,"1509948.000000","1677720.000000","0.000000","0.000000","2073216.000000","0.000000","2092704.000000","129468.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","1677720.000000","2073216.000000","2092704.000000","44520.000000","29304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10224.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","126.000000","32.000000","80.000000","188.000000","80.000000","178.000000","0.000000","0.000000","0.000000","99.000000","28.000000","62.000000","149.000000","70.000000","128.000000","160.000000","6000.000000","0.000000","744802.000000",,,,, +"875.000000","42.605000","875.000000","42.605000","875.000000","42.605000","1457.000000","0.000000",,,,,,,,,,,,"1709.000000","990.000000","266.000000","3.000000","990.000000","990.000000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2073180.000000","0.000000","2092704.000000","129468.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","1614804.000000","2073180.000000","2092704.000000","44520.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10304.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","124.000000","27.000000","75.000000","188.000000","39.000000","178.000000","0.000000","0.000000","0.000000","97.000000","24.000000","58.000000","149.000000","38.000000","128.000000","160.000000","6000.000000","0.000000","744822.000000",,,,, +"242.000000","39.630000","242.000000","39.630000","242.000000","39.630000","1087.000000","0.000000",,,,,,,,,,,,"0.000000","99.500000","199.000000","5.000000","99.500000","99.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072944.000000","0.000000","2092704.000000","129468.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","1614804.000000","2072944.000000","2092704.000000","44520.000000","30216.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10392.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","23.000000","63.000000","187.000000","50.000000","162.000000","0.000000","0.000000","0.000000","94.000000","21.000000","51.000000","149.000000","48.000000","128.000000","160.000000","6000.000000","0.000000","744842.000000",,,,, +"210.000000","39.480000","210.000000","39.480000","210.000000","39.480000","921.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","94.000000","5.000000","47.500000","47.500000",,,,,,,,,,,"1447032.000000","1614804.000000","0.000000","0.000000","2072480.000000","0.000000","2092704.000000","129468.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","1614804.000000","2072480.000000","2092704.000000","44520.000000","30716.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","19.000000","53.000000","187.000000","50.000000","135.000000","0.000000","0.000000","0.000000","91.000000","18.000000","44.000000","146.000000","48.000000","115.000000","160.000000","6000.000000","0.000000","744862.000000",,,,, +"260.000000","42.720000","260.000000","42.720000","260.000000","42.720000","941.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","2.000000","66.500000","66.500000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071900.000000","0.000000","2092704.000000","129468.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","1740636.000000","2071900.000000","2092704.000000","44520.000000","31352.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","113.000000","13.000000","45.000000","187.000000","50.000000","133.000000","0.000000","0.000000","0.000000","88.000000","13.000000","38.000000","144.000000","48.000000","109.000000","160.000000","6000.000000","0.000000","744882.000000",,,,, +"229.000000","42.570000","229.000000","42.570000","229.000000","42.570000","723.000000","0.000000",,,,,,,,,,,,"0.000000","26.000000","52.000000","1.000000","26.000000","26.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071624.000000","0.000000","2092704.000000","129468.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","1740636.000000","2071624.000000","2092704.000000","44520.000000","31848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","108.000000","9.000000","34.000000","183.000000","13.000000","69.000000","0.000000","0.000000","0.000000","85.000000","8.000000","29.000000","138.000000","12.000000","48.000000","160.000000","6000.000000","0.000000","744902.000000",,,,, +"257.000000","42.700000","257.000000","42.700000","257.000000","42.700000","1004.000000","0.000000",,,,,,,,,,,,"13.000000","44.000000","75.000000","3.000000","44.000000","44.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071472.000000","0.000000","2092704.000000","129468.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1740636.000000","2071472.000000","2092704.000000","44520.000000","32400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","105.000000","9.000000","26.000000","182.000000","13.000000","52.000000","0.000000","0.000000","0.000000","83.000000","8.000000","23.000000","138.000000","12.000000","46.000000","160.000000","6000.000000","0.000000","744922.000000",,,,, +"635.000000","44.480000","635.000000","44.480000","635.000000","44.480000","1254.000000","0.000000",,,,,,,,,,,,"10.000000","181.000000","344.000000","1.000000","181.000000","181.000000",,,,,,,,,,,"1384120.000000","1740636.000000","0.000000","0.000000","2071336.000000","0.000000","2092704.000000","129468.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","1740636.000000","2071336.000000","2092704.000000","44520.000000","33120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10624.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","102.000000","15.000000","25.000000","182.000000","47.000000","50.000000","0.000000","0.000000","0.000000","81.000000","14.000000","22.000000","138.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","744942.000000",,,,, +"1112.000000","38.225000","1112.000000","38.225000","1112.000000","38.225000","1594.000000","0.000000",,,,,,,,,,,,"72.000000","551.000000","1011.000000","2.000000","551.000000","551.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071628.000000","0.000000","2092704.000000","129468.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","1384120.000000","2071628.000000","2092704.000000","44520.000000","32428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10696.000000","0.000000","0.000000",,,,,,"10.000000","8.000000",,,,,,,,,,,"0.000000","99.000000","27.000000","24.000000","181.000000","67.000000","50.000000","0.000000","0.000000","0.000000","78.000000","24.000000","21.000000","137.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744962.000000",,,,, +"296.000000","34.390000","296.000000","34.390000","296.000000","34.390000","804.000000","0.000000",,,,,,,,,,,,"0.000000","59.500000","101.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2071512.000000","0.000000","2092704.000000","129468.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1384120.000000","2071512.000000","2092704.000000","44520.000000","33104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"13.000000","4.000000",,,,,,,,,,,"0.000000","95.000000","27.000000","22.000000","180.000000","67.000000","50.000000","0.000000","0.000000","0.000000","75.000000","25.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","744982.000000",,,,, +"940.000000","37.410000","940.000000","37.410000","940.000000","37.410000","1805.000000","0.000000",,,,,,,,,,,,"0.000000","3811.000000","7594.000000","30.000000","3811.000000","3811.000000",,,,,,,,,,,"1132460.000000","1384120.000000","0.000000","0.000000","2072272.000000","0.000000","2092704.000000","129468.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1384120.000000","2072272.000000","2092704.000000","44520.000000","31408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"18.000000","8.000000",,,,,,,,,,,"0.000000","92.000000","27.000000","22.000000","178.000000","67.000000","50.000000","0.000000","0.000000","0.000000","73.000000","24.000000","20.000000","134.000000","66.000000","43.000000","160.000000","6000.000000","0.000000","745002.000000",,,,, +"747.000000","31.505000","747.000000","31.505000","747.000000","31.505000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","313.500000","627.000000","5.000000","313.500000","313.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072080.000000","0.000000","2092704.000000","129468.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1174404.000000","2072080.000000","2092704.000000","44520.000000","31808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","88.000000","27.000000","23.000000","176.000000","58.000000","57.000000","0.000000","0.000000","0.000000","70.000000","25.000000","21.000000","133.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745022.000000",,,,, +"340.000000","29.590000","340.000000","29.590000","340.000000","29.590000","1721.000000","0.000000",,,,,,,,,,,,"0.000000","112.500000","224.000000","1.000000","112.500000","112.500000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2072012.000000","0.000000","2092704.000000","129468.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1174404.000000","2072012.000000","2092704.000000","44520.000000","32316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","85.000000","28.000000","23.000000","172.000000","58.000000","57.000000","0.000000","0.000000","0.000000","67.000000","24.000000","21.000000","132.000000","53.000000","48.000000","160.000000","6000.000000","0.000000","745042.000000",,,,, +"779.000000","31.655000","779.000000","31.655000","779.000000","31.655000","1498.000000","0.000000",,,,,,,,,,,,"565.000000","474.000000","382.000000","2.000000","474.000000","474.000000",,,,,,,,,,,"943716.000000","1174404.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1174404.000000","2071700.000000","2092704.000000","44520.000000","32976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","82.000000","29.000000","22.000000","169.000000","58.000000","50.000000","0.000000","0.000000","0.000000","65.000000","27.000000","20.000000","132.000000","53.000000","47.000000","160.000000","6000.000000","0.000000","745062.000000",,,,, +"480.000000","25.750000","480.000000","25.750000","480.000000","25.750000","1454.000000","0.000000",,,,,,,,,,,,"14.000000","96.000000","178.000000","5.000000","96.000000","96.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","985660.000000","2071212.000000","2092704.000000","44520.000000","33760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","79.000000","22.000000","22.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","63.000000","20.000000","20.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745082.000000",,,,, +"215.000000","24.505000","215.000000","24.505000","215.000000","24.505000","1360.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070776.000000","0.000000","2092704.000000","129468.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","985660.000000","2070776.000000","2092704.000000","44520.000000","34804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11044.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","21.000000","21.000000","169.000000","47.000000","50.000000","0.000000","0.000000","0.000000","61.000000","19.000000","19.000000","132.000000","38.000000","47.000000","160.000000","6000.000000","0.000000","745102.000000",,,,, +"220.000000","24.525000","220.000000","24.525000","220.000000","24.525000","1333.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"775944.000000","985660.000000","0.000000","0.000000","2070708.000000","0.000000","2092704.000000","129468.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","985660.000000","2070708.000000","2092704.000000","44520.000000","35640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11108.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","74.000000","13.000000","19.000000","167.000000","35.000000","50.000000","0.000000","0.000000","0.000000","59.000000","12.000000","18.000000","131.000000","34.000000","47.000000","160.000000","6000.000000","0.000000","745122.000000",,,,, +"253.000000","22.185000","253.000000","22.185000","253.000000","22.185000","1374.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2070240.000000","0.000000","2092704.000000","129468.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","880800.000000","2070240.000000","2092704.000000","44520.000000","36640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11144.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","69.000000","9.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","55.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745142.000000",,,,, +"211.000000","21.990000","211.000000","21.990000","211.000000","21.990000","1237.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2069512.000000","0.000000","2092704.000000","129468.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","880800.000000","2069512.000000","2092704.000000","44520.000000","37600.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11224.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","67.000000","8.000000","19.000000","166.000000","13.000000","48.000000","0.000000","0.000000","0.000000","54.000000","8.000000","17.000000","125.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745162.000000",,,,, +"210.000000","21.980000","210.000000","21.980000","210.000000","21.980000","1417.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","3.000000","10.000000","10.000000",,,,,,,,,,,"692060.000000","880800.000000","0.000000","0.000000","2068924.000000","0.000000","2092704.000000","129468.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","880800.000000","2068924.000000","2092704.000000","44520.000000","38816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","64.000000","8.000000","18.000000","164.000000","13.000000","48.000000","0.000000","0.000000","0.000000","51.000000","8.000000","17.000000","123.000000","12.000000","43.000000","160.000000","6000.000000","0.000000","745182.000000",,,,, +"242.000000","20.135000","242.000000","20.135000","242.000000","20.135000","1204.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","5.000000","33.000000","33.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068524.000000","0.000000","2092704.000000","129468.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","796916.000000","2068524.000000","2092704.000000","44520.000000","39788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11292.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","60.000000","8.000000","19.000000","162.000000","12.000000","48.000000","0.000000","0.000000","0.000000","48.000000","8.000000","17.000000","118.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745202.000000",,,,, +"221.000000","20.035000","221.000000","20.035000","221.000000","20.035000","1205.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","3.000000","8.500000","8.500000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068260.000000","0.000000","2092704.000000","129468.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","796916.000000","2068260.000000","2092704.000000","44520.000000","40760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","57.000000","8.000000","18.000000","155.000000","12.000000","48.000000","0.000000","0.000000","0.000000","46.000000","8.000000","17.000000","115.000000","11.000000","43.000000","160.000000","6000.000000","0.000000","745222.000000",,,,, +"221.000000","20.030000","221.000000","20.030000","221.000000","20.030000","1249.000000","0.000000",,,,,,,,,,,,"1.000000","24.000000","47.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"629144.000000","796916.000000","0.000000","0.000000","2068640.000000","0.000000","2092704.000000","129468.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","796916.000000","2068640.000000","2092704.000000","44520.000000","41632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","8.000000","17.000000","154.000000","12.000000","48.000000","0.000000","0.000000","0.000000","44.000000","8.000000","16.000000","114.000000","11.000000","38.000000","160.000000","6000.000000","0.000000","745242.000000",,,,, +"353.000000","17.150000","353.000000","17.150000","353.000000","17.150000","1486.000000","0.000000",,,,,,,,,,,,"15.000000","96.000000","175.000000","3.000000","96.000000","96.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2068132.000000","0.000000","2092704.000000","129468.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","650116.000000","2068132.000000","2092704.000000","44520.000000","42476.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11504.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","51.000000","10.000000","15.000000","150.000000","17.000000","35.000000","0.000000","0.000000","0.000000","41.000000","9.000000","14.000000","113.000000","17.000000","34.000000","160.000000","6000.000000","0.000000","745262.000000",,,,, +"575.000000","18.195000","575.000000","18.195000","575.000000","18.195000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","160.000000","313.000000","1.000000","160.000000","160.000000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067844.000000","0.000000","2092704.000000","129468.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","650116.000000","2067844.000000","2092704.000000","44524.000000","42596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","48.000000","15.000000","16.000000","143.000000","54.000000","47.000000","0.000000","0.000000","0.000000","39.000000","14.000000","15.000000","112.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745282.000000",,,,, +"637.000000","18.490000","637.000000","18.490000","637.000000","18.490000","1866.000000","0.000000",,,,,,,,,,,,"0.000000","186.500000","371.000000","3.000000","186.500000","186.500000",,,,,,,,,,,"503316.000000","650116.000000","0.000000","0.000000","2067620.000000","0.000000","2092704.000000","129468.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","650116.000000","2067620.000000","2092704.000000","44524.000000","43076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11592.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","46.000000","20.000000","16.000000","135.000000","54.000000","40.000000","0.000000","0.000000","0.000000","37.000000","18.000000","15.000000","109.000000","48.000000","38.000000","160.000000","6000.000000","0.000000","745302.000000",,,,, +"539.000000","16.025000","539.000000","16.025000","539.000000","16.025000","1200.000000","0.000000",,,,,,,,,,,,"0.000000","57.000000","114.000000","3.000000","57.000000","57.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067912.000000","0.000000","2092704.000000","129468.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","566228.000000","2067912.000000","2092704.000000","44524.000000","43864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11664.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","43.000000","22.000000","14.000000","129.000000","54.000000","35.000000","0.000000","0.000000","0.000000","35.000000","21.000000","13.000000","104.000000","48.000000","34.000000","160.000000","6000.000000","0.000000","745322.000000",,,,, +"499.000000","15.840000","499.000000","15.840000","499.000000","15.840000","1748.000000","0.000000",,,,,,,,,,,,"15.000000","133.500000","251.000000","4.000000","133.500000","133.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067972.000000","0.000000","2092704.000000","129468.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","566228.000000","2067972.000000","2092704.000000","44524.000000","44140.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","42.000000","22.000000","15.000000","129.000000","40.000000","35.000000","0.000000","0.000000","0.000000","34.000000","20.000000","14.000000","104.000000","40.000000","34.000000","160.000000","6000.000000","0.000000","745342.000000",,,,, +"272.000000","14.775000","272.000000","14.775000","272.000000","14.775000","1982.000000","0.000000",,,,,,,,,,,,"9.000000","38.500000","67.000000","2.000000","38.500000","38.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2067184.000000","0.000000","2092704.000000","129468.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","566228.000000","2067184.000000","2092704.000000","44524.000000","45372.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11772.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","18.000000","13.000000","129.000000","40.000000","34.000000","0.000000","0.000000","0.000000","33.000000","17.000000","13.000000","104.000000","39.000000","30.000000","160.000000","6000.000000","0.000000","745362.000000",,,,, +"226.000000","13.055000","226.000000","13.055000","226.000000","13.055000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","130.000000","2.000000","65.500000","65.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066756.000000","0.000000","2092704.000000","129468.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","503316.000000","2066756.000000","2092704.000000","44524.000000","46320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11836.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","14.000000","13.000000","129.000000","34.000000","32.000000","0.000000","0.000000","0.000000","32.000000","13.000000","12.000000","104.000000","30.000000","28.000000","160.000000","6000.000000","0.000000","745382.000000",,,,, +"211.000000","12.985000","211.000000","12.985000","211.000000","12.985000","1784.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","5.000000","13.500000","13.500000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066684.000000","0.000000","2092704.000000","129468.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","503316.000000","2066684.000000","2092704.000000","44524.000000","47288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","13.000000","129.000000","16.000000","32.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","101.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","745402.000000",,,,, +"220.000000","13.025000","220.000000","13.025000","220.000000","13.025000","946.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","33.000000","2.000000","17.000000","17.000000",,,,,,,,,,,"377484.000000","503316.000000","0.000000","0.000000","2066324.000000","0.000000","2092704.000000","129468.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","503316.000000","2066324.000000","2092704.000000","44524.000000","48340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","13.000000","129.000000","10.000000","32.000000","0.000000","0.000000","0.000000","29.000000","8.000000","12.000000","101.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745422.000000",,,,, +"219.000000","12.025000","219.000000","12.025000","219.000000","12.025000","767.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","5.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065884.000000","0.000000","2092704.000000","129468.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","461372.000000","2065884.000000","2092704.000000","44524.000000","49376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","8.000000","13.000000","69.000000","10.000000","32.000000","0.000000","0.000000","0.000000","27.000000","8.000000","12.000000","66.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745442.000000",,,,, +"239.000000","12.120000","239.000000","12.120000","239.000000","12.120000","602.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","14.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2065068.000000","0.000000","2092704.000000","129468.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","461372.000000","2065068.000000","2092704.000000","44524.000000","50320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","13.000000","57.000000","10.000000","32.000000","0.000000","0.000000","0.000000","24.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745462.000000",,,,, +"225.000000","12.050000","225.000000","12.050000","225.000000","12.050000","560.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","2.000000","19.000000","19.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2064604.000000","0.000000","2092704.000000","129468.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2064604.000000","2092704.000000","44524.000000","51304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","13.000000","54.000000","10.000000","32.000000","0.000000","0.000000","0.000000","22.000000","8.000000","12.000000","48.000000","10.000000","28.000000","160.000000","6000.000000","0.000000","745482.000000",,,,, +"234.000000","12.090000","234.000000","12.090000","234.000000","12.090000","538.000000","0.000000",,,,,,,,,,,,"0.000000","19.000000","38.000000","4.000000","19.000000","19.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063468.000000","0.000000","2092704.000000","129468.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","461372.000000","2063468.000000","2092704.000000","44524.000000","52500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","13.000000","50.000000","9.000000","32.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","43.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745502.000000",,,,, +"217.000000","12.015000","217.000000","12.015000","217.000000","12.015000","564.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","3.000000","14.000000","14.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063212.000000","0.000000","2092704.000000","129468.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","461372.000000","2063212.000000","2092704.000000","44524.000000","53720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","40.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745522.000000",,,,, +"288.000000","12.350000","288.000000","12.350000","288.000000","12.350000","699.000000","0.000000",,,,,,,,,,,,"8.000000","39.500000","70.000000","3.000000","39.500000","39.500000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2063196.000000","0.000000","2092704.000000","129468.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","461372.000000","2063196.000000","2092704.000000","44524.000000","54720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12388.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","8.000000","13.000000","47.000000","9.000000","32.000000","0.000000","0.000000","0.000000","16.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","745542.000000",,,,, +"598.000000","12.805000","598.000000","12.805000","598.000000","12.805000","928.000000","0.000000",,,,,,,,,,,,"0.000000","181.500000","356.000000","1.000000","181.500000","181.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2063188.000000","0.000000","2092704.000000","129468.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","419428.000000","2063188.000000","2092704.000000","44524.000000","54552.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12512.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","17.000000","15.000000","14.000000","40.000000","55.000000","34.000000","0.000000","0.000000","0.000000","16.000000","13.000000","13.000000","37.000000","45.000000","30.000000","160.000000","6000.000000","0.000000","745562.000000",,,,, +"1052.000000","14.940000","1052.000000","14.940000","1052.000000","14.940000","1200.000000","0.000000",,,,,,,,,,,,"5.000000","493.000000","965.000000","1.000000","493.000000","493.000000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062944.000000","0.000000","2092704.000000","129468.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","419428.000000","2062944.000000","2092704.000000","44532.000000","54604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12532.000000","0.000000","0.000000",,,,,,"8.000000","7.000000",,,,,,,,,,,"0.000000","18.000000","24.000000","14.000000","47.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","21.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745582.000000",,,,, +"219.000000","11.025000","219.000000","11.025000","219.000000","11.025000","1114.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","26.000000","1.000000","14.500000","14.500000",,,,,,,,,,,"314572.000000","419428.000000","0.000000","0.000000","2062500.000000","0.000000","2092704.000000","129468.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","419428.000000","2062500.000000","2092704.000000","44532.000000","55608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12596.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","27.000000","14.000000","40.000000","65.000000","34.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","38.000000","59.000000","30.000000","160.000000","6000.000000","0.000000","745602.000000",,,,, +"229.000000","10.070000","229.000000","10.070000","229.000000","10.070000","886.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","92.000000","4.000000","47.500000","47.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2062048.000000","0.000000","2092704.000000","129468.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","377484.000000","2062048.000000","2092704.000000","44532.000000","56572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12696.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","21.000000","13.000000","40.000000","65.000000","32.000000","0.000000","0.000000","0.000000","15.000000","18.000000","12.000000","38.000000","59.000000","28.000000","160.000000","6000.000000","0.000000","745622.000000",,,,, +"228.000000","10.065000","228.000000","10.065000","228.000000","10.065000","668.000000","0.000000",,,,,,,,,,,,"0.000000","7.500000","11.000000","0.000000","7.500000","7.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2061444.000000","0.000000","2092704.000000","129468.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","377484.000000","2061444.000000","2092704.000000","44532.000000","57884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12744.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","17.000000","11.000000","12.000000","40.000000","36.000000","25.000000","0.000000","0.000000","0.000000","15.000000","10.000000","11.000000","38.000000","35.000000","19.000000","160.000000","6000.000000","0.000000","745642.000000",,,,, +"245.000000","10.150000","245.000000","10.150000","245.000000","10.150000","732.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","10.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2060896.000000","0.000000","2092704.000000","129468.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","377484.000000","2060896.000000","2092704.000000","44532.000000","59000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12892.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","12.000000","38.000000","10.000000","25.000000","0.000000","0.000000","0.000000","15.000000","8.000000","11.000000","36.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745662.000000",,,,, +"226.000000","10.560000","226.000000","10.560000","226.000000","10.560000","783.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060284.000000","0.000000","2092704.000000","129468.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","398456.000000","2060284.000000","2092704.000000","44532.000000","59880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12972.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745682.000000",,,,, +"215.000000","10.505000","215.000000","10.505000","215.000000","10.505000","742.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","5.000000","5.500000","5.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2060172.000000","0.000000","2092704.000000","129468.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","398456.000000","2060172.000000","2092704.000000","44532.000000","60776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13064.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","36.000000","10.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","35.000000","10.000000","19.000000","160.000000","6000.000000","0.000000","745702.000000",,,,, +"226.000000","10.555000","226.000000","10.555000","226.000000","10.555000","619.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","9.000000","0.000000","6.000000","6.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059312.000000","0.000000","2092704.000000","129468.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","398456.000000","2059312.000000","2092704.000000","44532.000000","61912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13128.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","12.000000","35.000000","9.000000","25.000000","0.000000","0.000000","0.000000","14.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745722.000000",,,,, +"241.000000","12.125000","241.000000","12.125000","241.000000","12.125000","544.000000","0.000000",,,,,,,,,,,,"0.000000","9.000000","12.000000","1.000000","9.000000","9.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058812.000000","0.000000","2092704.000000","129468.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","461372.000000","2058812.000000","2092704.000000","44532.000000","62996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13216.000000","0.000000","0.000000",,,,,,"4.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","8.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745742.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","498.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","1.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2058316.000000","0.000000","2092704.000000","129468.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","461372.000000","2058316.000000","2092704.000000","44532.000000","63976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745762.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","596.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","11.000000","2.000000","7.000000","7.000000",,,,,,,,,,,"377484.000000","461372.000000","0.000000","0.000000","2057376.000000","0.000000","2092704.000000","129468.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","461372.000000","2057376.000000","2092704.000000","44532.000000","65100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13372.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","10.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745782.000000",,,,, +"220.000000","9.530000","220.000000","9.530000","220.000000","9.530000","657.000000","0.000000",,,,,,,,,,,,"0.000000","6.500000","10.000000","1.000000","6.500000","6.500000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2056920.000000","0.000000","2092704.000000","129468.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","356512.000000","2056920.000000","2092704.000000","44532.000000","66116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13420.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745802.000000",,,,, +"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","625.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","10.000000","3.000000","6.000000","6.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057116.000000","0.000000","2092704.000000","129468.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","356512.000000","2057116.000000","2092704.000000","44532.000000","67116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13484.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","35.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","34.000000","9.000000","19.000000","160.000000","6000.000000","0.000000","745822.000000",,,,, +"227.000000","9.565000","227.000000","9.565000","227.000000","9.565000","575.000000","0.000000",,,,,,,,,,,,"0.000000","7.000000","12.000000","3.000000","7.000000","7.000000",,,,,,,,,,,"272628.000000","356512.000000","0.000000","0.000000","2057084.000000","0.000000","2092704.000000","129468.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","356512.000000","2057084.000000","2092704.000000","44532.000000","68320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13572.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","34.000000","11.000000","25.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","31.000000","8.000000","19.000000","160.000000","6000.000000","0.000000","745842.000000",,,,, +"840.000000","10.940000","840.000000","10.940000","840.000000","10.940000","695.000000","0.000000",,,,,,,,,,,,"944.000000","2276.000000","3596.000000","21.000000","2276.000000","2276.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2059604.000000","0.000000","2092704.000000","129468.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","293600.000000","2059604.000000","2092704.000000","44532.000000","62188.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13492.000000","0.000000","0.000000",,,,,,"6.000000","4.000000",,,,,,,,,,,"0.000000","14.000000","17.000000","13.000000","34.000000","62.000000","31.000000","0.000000","0.000000","0.000000","13.000000","15.000000","12.000000","28.000000","60.000000","24.000000","160.000000","6000.000000","0.000000","745862.000000",,,,, +"509.000000","9.385000","509.000000","9.385000","509.000000","9.385000","495.000000","0.000000",,,,,,,,,,,,"7.000000","170.000000","331.000000","9.000000","170.000000","170.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2060928.000000","0.000000","2092704.000000","129468.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","293600.000000","2060928.000000","2092704.000000","44532.000000","60632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13528.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","14.000000","21.000000","12.000000","34.000000","62.000000","16.000000","0.000000","0.000000","0.000000","13.000000","19.000000","11.000000","30.000000","60.000000","16.000000","160.000000","6000.000000","0.000000","745882.000000",,,,, +"264.000000","8.235000","264.000000","8.235000","264.000000","8.235000","974.000000","0.000000",,,,,,,,,,,,"0.000000","64.000000","128.000000","2.000000","64.000000","64.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2062024.000000","0.000000","2092704.000000","129468.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","293600.000000","2062024.000000","2092704.000000","44532.000000","61112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","22.000000","11.000000","34.000000","62.000000","15.000000","0.000000","0.000000","0.000000","13.000000","20.000000","10.000000","28.000000","60.000000","15.000000","160.000000","6000.000000","0.000000","745902.000000",,,,, +"218.000000","8.520000","218.000000","8.520000","218.000000","8.520000","449.000000","0.000000",,,,,,,,,,,,"0.000000","48.500000","97.000000","9.000000","48.500000","48.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2061608.000000","0.000000","2092704.000000","129468.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","314572.000000","2061608.000000","2092704.000000","44532.000000","62088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","11.000000","31.000000","37.000000","15.000000","0.000000","0.000000","0.000000","12.000000","13.000000","10.000000","24.000000","35.000000","15.000000","160.000000","6000.000000","0.000000","745922.000000",,,,, +"232.000000","8.585000","232.000000","8.585000","232.000000","8.585000","837.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","79.000000","1.000000","40.000000","40.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060576.000000","0.000000","2092704.000000","129468.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","314572.000000","2060576.000000","2092704.000000","44532.000000","63060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","31.000000","12.000000","15.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","24.000000","12.000000","15.000000","160.000000","6000.000000","0.000000","745942.000000",,,,, +"261.000000","8.720000","261.000000","8.720000","261.000000","8.720000","1135.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","3.000000","31.000000","31.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2060168.000000","0.000000","2092704.000000","129468.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","314572.000000","2060168.000000","2092704.000000","44532.000000","64112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13856.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","25.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","19.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745962.000000",,,,, +"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","1093.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","3.000000","20.000000","20.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059716.000000","0.000000","2092704.000000","129468.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","398456.000000","2059716.000000","2092704.000000","44532.000000","65164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","745982.000000",,,,, +"223.000000","10.540000","223.000000","10.540000","223.000000","10.540000","981.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","5.000000","27.500000","27.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058392.000000","0.000000","2092704.000000","129468.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2058392.000000","2092704.000000","44532.000000","66092.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746002.000000",,,,, +"247.000000","10.655000","247.000000","10.655000","247.000000","10.655000","508.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","4.000000","44.000000","44.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2058020.000000","0.000000","2092704.000000","129468.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","398456.000000","2058020.000000","2092704.000000","44532.000000","67164.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746022.000000",,,,, +"220.000000","8.530000","220.000000","8.530000","220.000000","8.530000","624.000000","0.000000",,,,,,,,,,,,"0.000000","10.000000","20.000000","6.000000","10.000000","10.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2057600.000000","0.000000","2092704.000000","129468.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","314572.000000","2057600.000000","2092704.000000","44532.000000","68132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746042.000000",,,,, +"240.000000","8.620000","240.000000","8.620000","240.000000","8.620000","494.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","6.000000","38.000000","38.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2056600.000000","0.000000","2092704.000000","129468.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","314572.000000","2056600.000000","2092704.000000","44532.000000","69004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","12.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","17.000000","11.000000","15.000000","160.000000","6000.000000","0.000000","746062.000000",,,,, +"480.000000","9.750000","480.000000","9.750000","480.000000","9.750000","537.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","339.000000","5.000000","172.500000","172.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2058168.000000","0.000000","2092704.000000","129468.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","314572.000000","2058168.000000","2092704.000000","44532.000000","69868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","17.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","746082.000000",,,,, +"691.000000","10.740000","691.000000","10.740000","691.000000","10.740000","837.000000","0.000000",,,,,,,,,,,,"17.000000","243.500000","459.000000","3.000000","243.500000","243.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057872.000000","0.000000","2092704.000000","129468.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","314572.000000","2057872.000000","2092704.000000","44532.000000","70436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14432.000000","0.000000","0.000000",,,,,,"4.000000","5.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746102.000000",,,,, +"284.000000","8.830000","284.000000","8.830000","284.000000","8.830000","449.000000","0.000000",,,,,,,,,,,,"3.000000","91.500000","180.000000","2.000000","91.500000","91.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057300.000000","0.000000","2092704.000000","129468.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","314572.000000","2057300.000000","2092704.000000","44532.000000","71488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","18.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746122.000000",,,,, +"234.000000","8.595000","234.000000","8.595000","234.000000","8.595000","502.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2057252.000000","0.000000","2092704.000000","129468.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","314572.000000","2057252.000000","2092704.000000","44532.000000","72860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14680.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","18.000000","13.000000","31.000000","42.000000","35.000000","0.000000","0.000000","0.000000","12.000000","17.000000","12.000000","24.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","746142.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","524.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","7.000000","45.000000","45.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056832.000000","0.000000","2092704.000000","129468.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","314572.000000","2056832.000000","2092704.000000","44532.000000","73912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","31.000000","17.000000","17.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","24.000000","16.000000","16.000000","160.000000","6000.000000","0.000000","746162.000000",,,,, +"245.000000","8.645000","245.000000","8.645000","245.000000","8.645000","371.000000","0.000000",,,,,,,,,,,,"0.000000","14.500000","29.000000","2.000000","14.500000","14.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2056416.000000","0.000000","2092704.000000","129468.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","314572.000000","2056416.000000","2092704.000000","44532.000000","75132.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","26.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","22.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746182.000000",,,,, +"212.000000","8.490000","212.000000","8.490000","212.000000","8.490000","713.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","4.000000","24.000000","24.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2055744.000000","0.000000","2092704.000000","129468.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","314572.000000","2055744.000000","2092704.000000","44532.000000","76236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","17.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746202.000000",,,,, +"257.000000","7.200000","257.000000","7.200000","257.000000","7.200000","807.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","6.000000","37.000000","37.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2055244.000000","0.000000","2092704.000000","129468.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","251656.000000","2055244.000000","2092704.000000","44532.000000","77400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746222.000000",,,,, +"237.000000","7.110000","237.000000","7.110000","237.000000","7.110000","490.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","3.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2054168.000000","0.000000","2092704.000000","129468.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","251656.000000","2054168.000000","2092704.000000","44532.000000","78648.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746242.000000",,,,, +"219.000000","7.020000","219.000000","7.020000","219.000000","7.020000","653.000000","0.000000",,,,,,,,,,,,"0.000000","21.500000","43.000000","4.000000","21.500000","21.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2052588.000000","0.000000","2092704.000000","129468.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","251656.000000","2052588.000000","2092704.000000","44532.000000","79780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746262.000000",,,,, +"272.000000","8.775000","272.000000","8.775000","272.000000","8.775000","556.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","4.000000","36.500000","36.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2052180.000000","0.000000","2092704.000000","129468.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","314572.000000","2052180.000000","2092704.000000","44532.000000","80816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746282.000000",,,,, +"547.000000","10.065000","547.000000","10.065000","547.000000","10.065000","521.000000","0.000000",,,,,,,,,,,,"2.000000","59.500000","116.000000","3.000000","59.500000","59.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2051480.000000","0.000000","2092704.000000","129468.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","314572.000000","2051480.000000","2092704.000000","44532.000000","80712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15284.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","11.000000","16.000000","21.000000","17.000000","0.000000","0.000000","0.000000","11.000000","10.000000","11.000000","15.000000","18.000000","16.000000","160.000000","6000.000000","0.000000","746302.000000",,,,, +"292.000000","8.865000","292.000000","8.865000","292.000000","8.865000","666.000000","0.000000",,,,,,,,,,,,"0.000000","92.500000","185.000000","7.000000","92.500000","92.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","314572.000000","2050652.000000","2092704.000000","44532.000000","81720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746322.000000",,,,, +"264.000000","7.735000","264.000000","7.735000","264.000000","7.735000","389.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","3.000000","71.000000","71.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050140.000000","0.000000","2092704.000000","129468.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","272628.000000","2050140.000000","2092704.000000","44532.000000","82852.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","13.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746342.000000",,,,, +"227.000000","7.565000","227.000000","7.565000","227.000000","7.565000","483.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","1.000000","26.500000","26.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2050032.000000","0.000000","2092704.000000","129468.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","272628.000000","2050032.000000","2092704.000000","44532.000000","83968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","13.000000","12.000000","16.000000","37.000000","21.000000","0.000000","0.000000","0.000000","11.000000","12.000000","11.000000","16.000000","36.000000","18.000000","160.000000","6000.000000","0.000000","746362.000000",,,,, +"240.000000","7.625000","240.000000","7.625000","240.000000","7.625000","469.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049260.000000","0.000000","2092704.000000","129468.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","272628.000000","2049260.000000","2092704.000000","44532.000000","85292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15652.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","12.000000","16.000000","14.000000","21.000000","0.000000","0.000000","0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","18.000000","160.000000","6000.000000","0.000000","746382.000000",,,,, +"259.000000","9.710000","259.000000","9.710000","259.000000","9.710000","465.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048696.000000","0.000000","2092704.000000","129468.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","356512.000000","2048696.000000","2092704.000000","44532.000000","86640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15692.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","746402.000000",,,,, +"225.000000","9.555000","225.000000","9.555000","225.000000","9.555000","315.000000","0.000000",,,,,,,,,,,,"0.000000","15.500000","31.000000","4.000000","15.500000","15.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2048224.000000","0.000000","2092704.000000","129468.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","356512.000000","2048224.000000","2092704.000000","44532.000000","87940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15816.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746422.000000",,,,, +"223.000000","9.545000","223.000000","9.545000","223.000000","9.545000","439.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049652.000000","0.000000","2092704.000000","129468.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","356512.000000","2049652.000000","2092704.000000","44532.000000","89324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746442.000000",,,,, +"265.000000","7.740000","265.000000","7.740000","265.000000","7.740000","371.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","7.000000","29.000000","29.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2049236.000000","0.000000","2092704.000000","129468.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","272628.000000","2049236.000000","2092704.000000","44532.000000","90392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","12.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","16.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746462.000000",,,,, +"224.000000","7.550000","224.000000","7.550000","224.000000","7.550000","414.000000","0.000000",,,,,,,,,,,,"0.000000","16.500000","33.000000","12.000000","16.500000","16.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2047088.000000","0.000000","2092704.000000","129468.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","272628.000000","2047088.000000","2092704.000000","44532.000000","91892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16088.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746482.000000",,,,, +"267.000000","7.750000","267.000000","7.750000","267.000000","7.750000","725.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","13.000000","47.500000","47.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2045500.000000","0.000000","2092704.000000","129468.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","272628.000000","2045500.000000","2092704.000000","44532.000000","92936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","13.000000","12.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","13.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","746502.000000",,,,, +"584.000000","8.740000","584.000000","8.740000","584.000000","8.740000","693.000000","0.000000",,,,,,,,,,,,"6.000000","106.000000","206.000000","9.000000","106.000000","106.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045596.000000","0.000000","2092704.000000","129468.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","251656.000000","2045596.000000","2092704.000000","44532.000000","92624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746522.000000",,,,, +"230.000000","7.075000","230.000000","7.075000","230.000000","7.075000","739.000000","0.000000",,,,,,,,,,,,"0.000000","65.000000","130.000000","6.000000","65.000000","65.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2045888.000000","0.000000","2092704.000000","129468.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","251656.000000","2045888.000000","2092704.000000","44532.000000","93868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16320.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746542.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","667.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2046312.000000","0.000000","2092704.000000","129468.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","251656.000000","2046312.000000","2092704.000000","44532.000000","95136.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","11.000000","14.000000","44.000000","16.000000","0.000000","0.000000","0.000000","10.000000","13.000000","10.000000","14.000000","43.000000","16.000000","160.000000","6000.000000","0.000000","746562.000000",,,,, +"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","886.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045872.000000","0.000000","2092704.000000","129468.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","314572.000000","2045872.000000","2092704.000000","44532.000000","96168.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","14.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","14.000000","13.000000","16.000000","160.000000","6000.000000","0.000000","746582.000000",,,,, +"246.000000","8.650000","246.000000","8.650000","246.000000","8.650000","564.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044336.000000","0.000000","2092704.000000","129468.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","314572.000000","2044336.000000","2092704.000000","44532.000000","97316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16616.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","746602.000000",,,,, +"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","766.000000","0.000000",,,,,,,,,,,,"0.000000","18.000000","36.000000","2.000000","18.000000","18.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2043240.000000","0.000000","2092704.000000","129468.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","314572.000000","2043240.000000","2092704.000000","44532.000000","98568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16740.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746622.000000",,,,, +"275.000000","7.785000","275.000000","7.785000","275.000000","7.785000","620.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","4.000000","37.500000","37.500000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042700.000000","0.000000","2092704.000000","129468.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","272628.000000","2042700.000000","2092704.000000","44532.000000","99808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746642.000000",,,,, +"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","680.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042560.000000","0.000000","2092704.000000","129468.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","272628.000000","2042560.000000","2092704.000000","44532.000000","101160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16932.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746662.000000",,,,, +"217.000000","7.515000","217.000000","7.515000","217.000000","7.515000","754.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","5.000000","13.000000","13.000000",,,,,,,,,,,"230684.000000","272628.000000","0.000000","0.000000","2042448.000000","0.000000","2092704.000000","129468.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","272628.000000","2042448.000000","2092704.000000","44532.000000","102356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746682.000000",,,,, +"276.000000","7.290000","276.000000","7.290000","276.000000","7.290000","506.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","4.000000","43.000000","43.000000",,,,,,,,,,,"167772.000000","251656.000000","0.000000","0.000000","2042020.000000","0.000000","2092704.000000","129468.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","251656.000000","2042020.000000","2092704.000000","44532.000000","103388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17084.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","746702.000000",,,,, +"587.000000","9.255000","587.000000","9.255000","587.000000","9.255000","843.000000","0.000000",,,,,,,,,,,,"32.000000","84.500000","137.000000","5.000000","84.500000","84.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2042600.000000","0.000000","2092704.000000","129468.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2042600.000000","2092704.000000","44532.000000","103364.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","11.000000","16.000000","65.000000","14.000000","0.000000","0.000000","0.000000","11.000000","13.000000","10.000000","16.000000","42.000000","13.000000","160.000000","6000.000000","0.000000","746722.000000",,,,, +"470.000000","9.205000","470.000000","9.205000","470.000000","9.205000","564.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","4.000000","154.500000","154.500000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2041640.000000","0.000000","2092704.000000","129468.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","293600.000000","2041640.000000","2092704.000000","44532.000000","104516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","19.000000","12.000000","16.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","16.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746742.000000",,,,, +"260.000000","8.220000","260.000000","8.220000","260.000000","8.220000","463.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","5.000000","42.000000","42.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041228.000000","0.000000","2092704.000000","129468.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","293600.000000","2041228.000000","2092704.000000","44532.000000","105440.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","15.000000","65.000000","16.000000","0.000000","0.000000","0.000000","11.000000","16.000000","11.000000","15.000000","42.000000","16.000000","160.000000","6000.000000","0.000000","746762.000000",,,,, +"276.000000","8.295000","276.000000","8.295000","276.000000","8.295000","436.000000","0.000000",,,,,,,,,,,,"0.000000","100.000000","200.000000","4.000000","100.000000","100.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039672.000000","0.000000","2092704.000000","129468.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","293600.000000","2039672.000000","2092704.000000","44532.000000","106464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17524.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","13.000000","12.000000","13.000000","34.000000","16.000000","0.000000","0.000000","0.000000","10.000000","12.000000","11.000000","13.000000","34.000000","16.000000","160.000000","6000.000000","0.000000","746782.000000",,,,, +"593.000000","9.785000","593.000000","9.785000","593.000000","9.785000","908.000000","0.000000",,,,,,,,,,,,"0.000000","129.000000","258.000000","6.000000","129.000000","129.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2037544.000000","0.000000","2092704.000000","129468.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","293600.000000","2037544.000000","2092704.000000","44532.000000","107380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","14.000000","29.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","14.000000","28.000000","25.000000","160.000000","6000.000000","0.000000","746802.000000",,,,, +"411.000000","7.430000","411.000000","7.430000","411.000000","7.430000","859.000000","0.000000",,,,,,,,,,,,"0.000000","54.500000","108.000000","6.000000","54.500000","54.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2036936.000000","0.000000","2092704.000000","129468.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","230684.000000","2036936.000000","2092704.000000","44532.000000","108616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17756.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","17.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746822.000000",,,,, +"246.000000","6.650000","246.000000","6.650000","246.000000","6.650000","437.000000","0.000000",,,,,,,,,,,,"0.000000","85.000000","170.000000","6.000000","85.000000","85.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034024.000000","0.000000","2092704.000000","129468.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","230684.000000","2034024.000000","2092704.000000","44532.000000","109780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","16.000000","12.000000","16.000000","29.000000","25.000000","0.000000","0.000000","0.000000","11.000000","15.000000","11.000000","16.000000","28.000000","22.000000","160.000000","6000.000000","0.000000","746842.000000",,,,, +"567.000000","8.160000","567.000000","8.160000","567.000000","8.160000","577.000000","0.000000",,,,,,,,,,,,"2.000000","52.500000","102.000000","4.000000","52.500000","52.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033620.000000","0.000000","2092704.000000","129468.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","230684.000000","2033620.000000","2092704.000000","44532.000000","110840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17996.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","13.000000","17.000000","25.000000","25.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","16.000000","22.000000","22.000000","160.000000","6000.000000","0.000000","746862.000000",,,,, +"304.000000","6.925000","304.000000","6.925000","304.000000","6.925000","606.000000","0.000000",,,,,,,,,,,,"1.000000","116.500000","232.000000","8.000000","116.500000","116.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2033232.000000","0.000000","2092704.000000","129468.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","230684.000000","2033232.000000","2092704.000000","44532.000000","111692.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","14.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746882.000000",,,,, +"224.000000","6.550000","224.000000","6.550000","224.000000","6.550000","464.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2032932.000000","0.000000","2092704.000000","129468.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2032932.000000","2092704.000000","44532.000000","112988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","13.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746902.000000",,,,, +"267.000000","6.750000","267.000000","6.750000","267.000000","6.750000","476.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034120.000000","0.000000","2092704.000000","129468.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","230684.000000","2034120.000000","2092704.000000","44532.000000","113792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18152.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","12.000000","13.000000","17.000000","34.000000","28.000000","0.000000","0.000000","0.000000","11.000000","11.000000","12.000000","17.000000","33.000000","25.000000","160.000000","6000.000000","0.000000","746922.000000",,,,, +"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","481.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033572.000000","0.000000","2092704.000000","129468.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","398456.000000","2033572.000000","2092704.000000","44532.000000","114940.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746942.000000",,,,, +"229.000000","10.570000","229.000000","10.570000","229.000000","10.570000","602.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2033528.000000","0.000000","2092704.000000","129468.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","398456.000000","2033528.000000","2092704.000000","44532.000000","116100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746962.000000",,,,, +"258.000000","10.705000","258.000000","10.705000","258.000000","10.705000","430.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","4.000000","17.000000","17.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2031944.000000","0.000000","2092704.000000","129468.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","398456.000000","2031944.000000","2092704.000000","44532.000000","117204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18492.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","13.000000","17.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","17.000000","14.000000","25.000000","160.000000","6000.000000","0.000000","746982.000000",,,,, +"247.000000","9.155000","247.000000","9.155000","247.000000","9.155000","424.000000","0.000000",,,,,,,,,,,,"0.000000","44.000000","88.000000","5.000000","44.000000","44.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2031416.000000","0.000000","2092704.000000","129468.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","335544.000000","2031416.000000","2092704.000000","44532.000000","118252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","13.000000","28.000000","0.000000","0.000000","0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","160.000000","6000.000000","0.000000","747002.000000",,,,, +"225.000000","9.050000","225.000000","9.050000","225.000000","9.050000","519.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","3.000000","25.000000","25.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2029764.000000","0.000000","2092704.000000","129468.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","335544.000000","2029764.000000","2092704.000000","44532.000000","119400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","13.000000","25.000000","0.000000","0.000000","0.000000","10.000000","9.000000","12.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747022.000000",,,,, +"277.000000","9.295000","277.000000","9.295000","277.000000","9.295000","378.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"293600.000000","335544.000000","0.000000","0.000000","2027712.000000","0.000000","2092704.000000","129468.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","335544.000000","2027712.000000","2092704.000000","44532.000000","120200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","13.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","13.000000","22.000000","160.000000","6000.000000","0.000000","747042.000000",,,,, +"252.000000","7.180000","252.000000","7.180000","252.000000","7.180000","427.000000","0.000000",,,,,,,,,,,,"0.000000","55.000000","110.000000","4.000000","55.000000","55.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2027092.000000","0.000000","2092704.000000","129468.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","251656.000000","2027092.000000","2092704.000000","44532.000000","121436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18860.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747062.000000",,,,, +"222.000000","7.035000","222.000000","7.035000","222.000000","7.035000","397.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","3.000000","42.000000","42.000000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2029612.000000","0.000000","2092704.000000","129468.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","251656.000000","2029612.000000","2092704.000000","44532.000000","122672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18924.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","11.000000","16.000000","14.000000","23.000000","0.000000","0.000000","0.000000","10.000000","9.000000","11.000000","16.000000","14.000000","22.000000","160.000000","6000.000000","0.000000","747082.000000",,,,, +"283.000000","7.325000","283.000000","7.325000","283.000000","7.325000","562.000000","0.000000",,,,,,,,,,,,"1.000000","40.500000","80.000000","2.000000","40.500000","40.500000",,,,,,,,,,,"209712.000000","251656.000000","0.000000","0.000000","2031248.000000","0.000000","2092704.000000","129468.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","251656.000000","2031248.000000","2092704.000000","44532.000000","122444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","14.000000","16.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","16.000000","160.000000","6000.000000","0.000000","747102.000000",,,,, +"207.000000","6.465000","207.000000","6.465000","207.000000","6.465000","985.000000","0.000000",,,,,,,,,,,,"0.000000","34.500000","69.000000","3.000000","34.500000","34.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2031080.000000","0.000000","2092704.000000","129468.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","230684.000000","2031080.000000","2092704.000000","44532.000000","123744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747122.000000",,,,, +"257.000000","6.700000","257.000000","6.700000","257.000000","6.700000","418.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","3.000000","33.000000","33.000000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030692.000000","0.000000","2092704.000000","129468.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","230684.000000","2030692.000000","2092704.000000","44532.000000","125036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19260.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747142.000000",,,,, +"269.000000","6.760000","269.000000","6.760000","269.000000","6.760000","461.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","3.000000","31.500000","31.500000",,,,,,,,,,,"209712.000000","230684.000000","0.000000","0.000000","2030252.000000","0.000000","2092704.000000","129468.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","230684.000000","2030252.000000","2092704.000000","44532.000000","126028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747162.000000",,,,, +"221.000000","6.035000","221.000000","6.035000","221.000000","6.035000","576.000000","0.000000",,,,,,,,,,,,"0.000000","38.000000","76.000000","5.000000","38.000000","38.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029488.000000","0.000000","2092704.000000","129468.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","209712.000000","2029488.000000","2092704.000000","44532.000000","127348.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747182.000000",,,,, +"215.000000","6.005000","215.000000","6.005000","215.000000","6.005000","535.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","209712.000000","2028696.000000","2092704.000000","44532.000000","128324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747202.000000",,,,, +"263.000000","6.230000","263.000000","6.230000","263.000000","6.230000","540.000000","0.000000",,,,,,,,,,,,"0.000000","39.500000","79.000000","2.000000","39.500000","39.500000",,,,,,,,,,,"188740.000000","209712.000000","0.000000","0.000000","2029996.000000","0.000000","2092704.000000","129468.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","209712.000000","2029996.000000","2092704.000000","44532.000000","128996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","13.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747222.000000",,,,, +"216.000000","8.010000","216.000000","8.010000","216.000000","8.010000","449.000000","0.000000",,,,,,,,,,,,"0.000000","44.500000","89.000000","3.000000","44.500000","44.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029456.000000","0.000000","2092704.000000","129468.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","293600.000000","2029456.000000","2092704.000000","44532.000000","130252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747242.000000",,,,, +"222.000000","8.040000","222.000000","8.040000","222.000000","8.040000","504.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","38.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2031016.000000","0.000000","2092704.000000","129468.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","293600.000000","2031016.000000","2092704.000000","44532.000000","131504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19724.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747262.000000",,,,, +"325.000000","8.525000","325.000000","8.525000","325.000000","8.525000","383.000000","0.000000",,,,,,,,,,,,"0.000000","67.000000","134.000000","2.000000","67.000000","67.000000",,,,,,,,,,,"251656.000000","293600.000000","0.000000","0.000000","2029904.000000","0.000000","2092704.000000","129468.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","293600.000000","2029904.000000","2092704.000000","44532.000000","132228.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","14.000000","14.000000","13.000000","0.000000","0.000000","0.000000","10.000000","9.000000","9.000000","14.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","747282.000000",,,,, +"656.000000","8.580000","656.000000","8.580000","656.000000","8.580000","509.000000","0.000000",,,,,,,,,,,,"6.000000","160.500000","314.000000","3.000000","160.500000","160.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2029988.000000","0.000000","2092704.000000","129468.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","230684.000000","2029988.000000","2092704.000000","44532.000000","132288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19520.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747302.000000",,,,, +"222.000000","6.540000","222.000000","6.540000","222.000000","6.540000","427.000000","0.000000",,,,,,,,,,,,"1.000000","57.500000","113.000000","2.000000","57.500000","57.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2030240.000000","0.000000","2092704.000000","129468.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","230684.000000","2030240.000000","2092704.000000","44532.000000","133608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19620.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","15.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747322.000000",,,,, +"205.000000","6.455000","205.000000","6.455000","205.000000","6.455000","570.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2031584.000000","0.000000","2092704.000000","129468.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","230684.000000","2031584.000000","2092704.000000","44532.000000","134792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","16.000000","53.000000","14.000000","160.000000","6000.000000","0.000000","747342.000000",,,,, +"275.000000","7.290000","275.000000","7.290000","275.000000","7.290000","410.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","35.000000","54.000000","54.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2031500.000000","0.000000","2092704.000000","129468.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","251656.000000","2031500.000000","2092704.000000","44532.000000","134912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747362.000000",,,,, +"224.000000","7.045000","224.000000","7.045000","224.000000","7.045000","422.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2030172.000000","0.000000","2092704.000000","129468.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","251656.000000","2030172.000000","2092704.000000","44532.000000","135888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747382.000000",,,,, +"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","392.000000","0.000000",,,,,,,,,,,,"0.000000","6.000000","12.000000","2.000000","6.000000","6.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2028696.000000","0.000000","2092704.000000","129468.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","251656.000000","2028696.000000","2092704.000000","44532.000000","136884.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","15.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","16.000000","15.000000","14.000000","160.000000","6000.000000","0.000000","747402.000000",,,,, +"277.000000","7.295000","277.000000","7.295000","277.000000","7.295000","694.000000","0.000000",,,,,,,,,,,,"0.000000","42.000000","84.000000","4.000000","42.000000","42.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2028208.000000","0.000000","2092704.000000","129468.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","251656.000000","2028208.000000","2092704.000000","44532.000000","137980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747422.000000",,,,, +"227.000000","7.060000","227.000000","7.060000","227.000000","7.060000","423.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","5.000000","21.000000","21.000000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2024908.000000","0.000000","2092704.000000","129468.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","251656.000000","2024908.000000","2092704.000000","44532.000000","139112.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747442.000000",,,,, +"231.000000","7.080000","231.000000","7.080000","231.000000","7.080000","503.000000","0.000000",,,,,,,,,,,,"0.000000","11.500000","23.000000","2.000000","11.500000","11.500000",,,,,,,,,,,"188740.000000","251656.000000","0.000000","0.000000","2021248.000000","0.000000","2092704.000000","129468.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","251656.000000","2021248.000000","2092704.000000","44532.000000","140268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20336.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747462.000000",,,,, +"290.000000","6.355000","290.000000","6.355000","290.000000","6.355000","563.000000","0.000000",,,,,,,,,,,,"0.000000","47.500000","95.000000","2.000000","47.500000","47.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2020788.000000","0.000000","2092704.000000","129468.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","209712.000000","2020788.000000","2092704.000000","44532.000000","141252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","10.000000","15.000000","15.000000","15.000000","0.000000","0.000000","0.000000","10.000000","9.000000","10.000000","14.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","747482.000000",,,,, +"309.000000","6.445000","309.000000","6.445000","309.000000","6.445000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"167772.000000","209712.000000","0.000000","0.000000","2019568.000000","0.000000","2092704.000000","129468.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","209712.000000","2019568.000000","2092704.000000","44532.000000","142144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","19.000000","15.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","19.000000","15.000000","160.000000","6000.000000","0.000000","747502.000000",,,,, +"887.000000","18.665000","887.000000","18.665000","887.000000","18.665000","1100.000000","0.000000",,,,,,,,,,,,"11704.000000","12116.000000","12338.000000","32.000000","12116.000000","12116.000000",,,,,,,,,,,"461372.000000","608172.000000","0.000000","0.000000","2043504.000000","0.000000","2092704.000000","129468.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","608172.000000","2043504.000000","2092704.000000","44540.000000","105888.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12092.000000","0.000000","0.000000",,,,,,"1.000000","188.000000",,,,,,,,,,,"0.000000","11.000000","20.000000","12.000000","17.000000","64.000000","19.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","17.000000","46.000000","19.000000","160.000000","6000.000000","0.000000","747522.000000",,,,, +"1057.000000","24.460000","1057.000000","24.460000","1057.000000","24.460000","858.000000","0.000000",,,,,,,,,,,,"332.000000","11614.000000","10071.000000","49.000000","11614.000000","11614.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2049828.000000","0.000000","2092704.000000","129468.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","817888.000000","2049828.000000","2092704.000000","44540.000000","90436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"12759.000000","65.000000",,,,,,,,,,,"0.000000","12.000000","33.000000","15.000000","21.000000","64.000000","38.000000","0.000000","0.000000","0.000000","11.000000","27.000000","13.000000","20.000000","51.000000","32.000000","160.000000","6000.000000","0.000000","747542.000000",,,,, +"1284.000000","25.525000","1284.000000","25.525000","1284.000000","25.525000","1301.000000","0.000000",,,,,,,,,,,,"0.000000","20819.000000","21350.000000","52.000000","20819.000000","20819.000000",,,,,,,,,,,"608172.000000","817888.000000","0.000000","0.000000","2054784.000000","0.000000","2092704.000000","129468.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","817888.000000","2054784.000000","2092704.000000","44540.000000","74776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"20208.000000","80.000000",,,,,,,,,,,"0.000000","13.000000","50.000000","18.000000","25.000000","75.000000","62.000000","0.000000","0.000000","0.000000","12.000000","38.000000","16.000000","22.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747562.000000",,,,, +"1222.000000","31.740000","1222.000000","31.740000","1222.000000","31.740000","1331.000000","0.000000",,,,,,,,,,,,"0.000000","20673.500000","32382.000000","52.000000","20673.500000","20673.500000",,,,,,,,,,,"1048576.000000","1090516.000000","0.000000","0.000000","2069584.000000","0.000000","2092704.000000","129468.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1090516.000000","2069584.000000","2092704.000000","44540.000000","36176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"8932.000000","31.000000",,,,,,,,,,,"0.000000","15.000000","56.000000","22.000000","29.000000","75.000000","64.000000","0.000000","0.000000","0.000000","13.000000","42.000000","18.000000","28.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","747582.000000",,,,, +"1072.000000","42.030000","1072.000000","42.030000","1072.000000","42.030000","887.000000","0.000000",,,,,,,,,,,,"24.000000","20193.500000","25790.000000","22.000000","20193.500000","20193.500000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069968.000000","0.000000","2092704.000000","129468.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","1551892.000000","2069968.000000","2092704.000000","44548.000000","35416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10732.000000","0.000000","0.000000",,,,,,"14509.000000","63.000000",,,,,,,,,,,"0.000000","16.000000","59.000000","24.000000","49.000000","75.000000","64.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","39.000000","50.000000","46.000000","160.000000","6000.000000","0.000000","747602.000000",,,,, +"1121.000000","42.260000","1121.000000","42.260000","1121.000000","42.260000","703.000000","0.000000",,,,,,,,,,,,"1468.000000","2351.000000","3222.000000","5.000000","2351.000000","2351.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069712.000000","0.000000","2092704.000000","129468.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","1551892.000000","2069712.000000","2092704.000000","44548.000000","35468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10772.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","16.000000","52.000000","26.000000","49.000000","79.000000","64.000000","0.000000","0.000000","0.000000","14.000000","42.000000","21.000000","39.000000","65.000000","46.000000","160.000000","6000.000000","0.000000","747622.000000",,,,, +"1808.000000","45.490000","1808.000000","45.490000","1808.000000","45.490000","820.000000","0.000000",,,,,,,,,,,,"845.000000","1243.000000","1626.000000","12.000000","1243.000000","1243.000000",,,,,,,,,,,"1488976.000000","1551892.000000","0.000000","0.000000","2069368.000000","0.000000","2092704.000000","129468.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","1551892.000000","2069368.000000","2092704.000000","44548.000000","35956.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10820.000000","0.000000","0.000000",,,,,,"0.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","55.000000","30.000000","51.000000","90.000000","70.000000","0.000000","0.000000","0.000000","15.000000","47.000000","25.000000","42.000000","77.000000","50.000000","160.000000","6000.000000","0.000000","747642.000000",,,,, +"2368.000000","52.620000","2368.000000","52.620000","2368.000000","52.620000","757.000000","0.000000",,,,,,,,,,,,"109.000000","519.000000","920.000000","4.000000","519.000000","519.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069384.000000","0.000000","2092704.000000","129468.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","1740636.000000","2069384.000000","2092704.000000","44548.000000","35892.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10852.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","19.000000","71.000000","36.000000","56.000000","104.000000","79.000000","0.000000","0.000000","0.000000","17.000000","65.000000","31.000000","46.000000","100.000000","71.000000","160.000000","6000.000000","0.000000","747662.000000",,,,, +"2429.000000","52.910000","2429.000000","52.910000","2429.000000","52.910000","696.000000","0.000000",,,,,,,,,,,,"49.000000","756.500000","1458.000000","9.000000","756.500000","756.500000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069288.000000","0.000000","2092704.000000","129468.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","1740636.000000","2069288.000000","2092704.000000","44548.000000","36124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10888.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","21.000000","85.000000","41.000000","64.000000","108.000000","84.000000","0.000000","0.000000","0.000000","19.000000","81.000000","36.000000","49.000000","107.000000","81.000000","160.000000","6000.000000","0.000000","747682.000000",,,,, +"2529.000000","53.380000","2529.000000","53.380000","2529.000000","53.380000","815.000000","0.000000",,,,,,,,,,,,"6.000000","346.000000","682.000000","5.000000","346.000000","346.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2069036.000000","0.000000","2092704.000000","129468.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","1740636.000000","2069036.000000","2092704.000000","44548.000000","36580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10936.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","93.000000","47.000000","70.000000","108.000000","99.000000","0.000000","0.000000","0.000000","20.000000","90.000000","41.000000","51.000000","107.000000","92.000000","160.000000","6000.000000","0.000000","747702.000000",,,,, +"2291.000000","52.260000","2291.000000","52.260000","2291.000000","52.260000","1569.000000","0.000000",,,,,,,,,,,,"179.000000","558.000000","926.000000","13.000000","558.000000","558.000000",,,,,,,,,,,"1719664.000000","1740636.000000","0.000000","0.000000","2068880.000000","0.000000","2092704.000000","129468.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1740636.000000","2068880.000000","2092704.000000","44548.000000","36848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","24.000000","93.000000","53.000000","78.000000","108.000000","102.000000","0.000000","0.000000","0.000000","22.000000","89.000000","47.000000","71.000000","107.000000","94.000000","160.000000","6000.000000","0.000000","747722.000000",,,,, +"2266.000000","52.645000","2266.000000","52.645000","2266.000000","52.645000","1448.000000","0.000000",,,,,,,,,,,,"0.000000","238.500000","469.000000","6.000000","238.500000","238.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068904.000000","0.000000","2092704.000000","129468.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","1761604.000000","2068904.000000","2092704.000000","44548.000000","37264.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11036.000000","0.000000","0.000000",,,,,,"0.000000","8.000000",,,,,,,,,,,"0.000000","26.000000","94.000000","58.000000","84.000000","105.000000","102.000000","0.000000","0.000000","0.000000","24.000000","89.000000","52.000000","77.000000","103.000000","94.000000","160.000000","6000.000000","0.000000","747742.000000",,,,, +"2699.000000","54.680000","2699.000000","54.680000","2699.000000","54.680000","759.000000","0.000000",,,,,,,,,,,,"21.000000","348.500000","667.000000","8.000000","348.500000","348.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2068692.000000","0.000000","2092704.000000","129468.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","1761604.000000","2068692.000000","2092704.000000","44548.000000","37860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11132.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","28.000000","96.000000","64.000000","89.000000","108.000000","104.000000","0.000000","0.000000","0.000000","25.000000","91.000000","57.000000","85.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","747762.000000",,,,, +"2345.000000","53.015000","2345.000000","53.015000","2345.000000","53.015000","1128.000000","0.000000",,,,,,,,,,,,"1028.000000","5992.500000","10947.000000","29.000000","5992.500000","5992.500000",,,,,,,,,,,"1761604.000000","1761604.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1761604.000000","2069684.000000","2092704.000000","44548.000000","35756.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","30.000000","98.000000","71.000000","93.000000","113.000000","105.000000","0.000000","0.000000","0.000000","27.000000","92.000000","64.000000","87.000000","111.000000","103.000000","160.000000","6000.000000","0.000000","747782.000000",,,,, +"2726.000000","53.805000","2726.000000","53.805000","2726.000000","53.805000","875.000000","0.000000",,,,,,,,,,,,"267.000000","1066.000000","1858.000000","12.000000","1066.000000","1066.000000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070348.000000","0.000000","2092704.000000","129468.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","1719664.000000","2070348.000000","2092704.000000","44548.000000","33808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11188.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","32.000000","102.000000","77.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","29.000000","96.000000","69.000000","87.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747802.000000",,,,, +"2414.000000","52.335000","2414.000000","52.335000","2414.000000","52.335000","850.000000","0.000000",,,,,,,,,,,,"0.000000","485.500000","970.000000","8.000000","485.500000","485.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2070044.000000","0.000000","2092704.000000","129468.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","1719664.000000","2070044.000000","2092704.000000","44548.000000","34044.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11236.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","99.000000","80.000000","95.000000","120.000000","108.000000","0.000000","0.000000","0.000000","31.000000","93.000000","72.000000","89.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747822.000000",,,,, +"2425.000000","52.390000","2425.000000","52.390000","2425.000000","52.390000","749.000000","0.000000",,,,,,,,,,,,"21.000000","587.500000","1147.000000","12.000000","587.500000","587.500000",,,,,,,,,,,"1698692.000000","1719664.000000","0.000000","0.000000","2069908.000000","0.000000","2092704.000000","129468.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","1719664.000000","2069908.000000","2092704.000000","44548.000000","34304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11248.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","36.000000","99.000000","84.000000","97.000000","120.000000","108.000000","0.000000","0.000000","0.000000","33.000000","95.000000","77.000000","92.000000","116.000000","107.000000","160.000000","6000.000000","0.000000","747842.000000",,,,, +"2267.000000","38.650000","2267.000000","38.650000","2267.000000","38.650000","924.000000","0.000000",,,,,,,,,,,,"0.000000","835.000000","1667.000000","10.000000","835.000000","835.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2069348.000000","0.000000","2092704.000000","129468.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","1174404.000000","2069348.000000","2092704.000000","44548.000000","34732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11308.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","38.000000","94.000000","85.000000","97.000000","107.000000","108.000000","0.000000","0.000000","0.000000","35.000000","90.000000","79.000000","92.000000","106.000000","107.000000","160.000000","6000.000000","0.000000","747862.000000",,,,, +"2604.000000","40.230000","2604.000000","40.230000","2604.000000","40.230000","543.000000","0.000000",,,,,,,,,,,,"0.000000","486.500000","971.000000","7.000000","486.500000","486.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068932.000000","0.000000","2092704.000000","129468.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","1174404.000000","2068932.000000","2092704.000000","44548.000000","35028.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11384.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","39.000000","93.000000","87.000000","97.000000","104.000000","108.000000","0.000000","0.000000","0.000000","36.000000","89.000000","82.000000","93.000000","104.000000","107.000000","160.000000","6000.000000","0.000000","747882.000000",,,,, +"2655.000000","40.475000","2655.000000","40.475000","2655.000000","40.475000","919.000000","0.000000",,,,,,,,,,,,"0.000000","1322.000000","2643.000000","36.000000","1322.000000","1322.000000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2068800.000000","0.000000","2092704.000000","129468.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1174404.000000","2068800.000000","2092704.000000","44548.000000","35268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","42.000000","95.000000","91.000000","102.000000","113.000000","112.000000","0.000000","0.000000","0.000000","39.000000","93.000000","87.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747902.000000",,,,, +"2639.000000","37.895000","2639.000000","37.895000","2639.000000","37.895000","449.000000","0.000000",,,,,,,,,,,,"1.000000","498.000000","993.000000","7.000000","498.000000","498.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068512.000000","0.000000","2092704.000000","129468.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","1069544.000000","2068512.000000","2092704.000000","44548.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11480.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","44.000000","99.000000","95.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","40.000000","97.000000","90.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747922.000000",,,,, +"2473.000000","37.115000","2473.000000","37.115000","2473.000000","37.115000","940.000000","0.000000",,,,,,,,,,,,"186.000000","5576.000000","10947.000000","30.000000","5576.000000","5576.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068608.000000","0.000000","2092704.000000","129468.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","1069544.000000","2068608.000000","2092704.000000","44548.000000","35908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11516.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","45.000000","100.000000","96.000000","103.000000","113.000000","112.000000","0.000000","0.000000","0.000000","42.000000","98.000000","92.000000","100.000000","113.000000","108.000000","160.000000","6000.000000","0.000000","747942.000000",,,,, +"2583.000000","37.635000","2583.000000","37.635000","2583.000000","37.635000","556.000000","0.000000",,,,,,,,,,,,"1.000000","255.000000","497.000000","3.000000","255.000000","255.000000",,,,,,,,,,,"1027604.000000","1069544.000000","0.000000","0.000000","2068496.000000","0.000000","2092704.000000","129468.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","1069544.000000","2068496.000000","2092704.000000","44548.000000","36120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11532.000000","0.000000","0.000000",,,,,,"0.000000","11.000000",,,,,,,,,,,"0.000000","48.000000","99.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","45.000000","97.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747962.000000",,,,, +"2270.000000","36.165000","2270.000000","36.165000","2270.000000","36.165000","770.000000","0.000000",,,,,,,,,,,,"61.000000","415.500000","763.000000","7.000000","415.500000","415.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067892.000000","0.000000","2092704.000000","129468.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","1069544.000000","2067892.000000","2092704.000000","44548.000000","36424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","7.000000",,,,,,,,,,,"0.000000","49.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","46.000000","93.000000","93.000000","100.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","747982.000000",,,,, +"2497.000000","37.230000","2497.000000","37.230000","2497.000000","37.230000","1118.000000","0.000000",,,,,,,,,,,,"32.000000","198.500000","360.000000","5.000000","198.500000","198.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067420.000000","0.000000","2092704.000000","129468.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","1069544.000000","2067420.000000","2092704.000000","44548.000000","36984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11612.000000","0.000000","0.000000",,,,,,"0.000000","5.000000",,,,,,,,,,,"0.000000","51.000000","97.000000","97.000000","104.000000","110.000000","112.000000","0.000000","0.000000","0.000000","48.000000","93.000000","93.000000","102.000000","110.000000","110.000000","160.000000","6000.000000","0.000000","748002.000000",,,,, +"2008.000000","34.930000","2008.000000","34.930000","2008.000000","34.930000","1895.000000","0.000000",,,,,,,,,,,,"16.000000","136.000000","240.000000","3.000000","136.000000","136.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067244.000000","0.000000","2092704.000000","129468.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","1069544.000000","2067244.000000","2092704.000000","44548.000000","37360.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11556.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","53.000000","92.000000","97.000000","105.000000","109.000000","112.000000","0.000000","0.000000","0.000000","50.000000","85.000000","92.000000","102.000000","102.000000","110.000000","160.000000","6000.000000","0.000000","748022.000000",,,,, +"2417.000000","34.355000","2417.000000","34.355000","2417.000000","34.355000","971.000000","0.000000",,,,,,,,,,,,"582.000000","2388.000000","4178.000000","19.000000","2388.000000","2388.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2067144.000000","0.000000","2092704.000000","129468.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","964688.000000","2067144.000000","2092704.000000","44548.000000","37568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11528.000000","0.000000","0.000000",,,,,,"0.000000","16.000000",,,,,,,,,,,"0.000000","55.000000","94.000000","97.000000","106.000000","115.000000","112.000000","0.000000","0.000000","0.000000","51.000000","86.000000","92.000000","103.000000","105.000000","110.000000","160.000000","6000.000000","0.000000","748042.000000",,,,, +"5654.000000","49.570000","5654.000000","49.570000","5654.000000","49.570000","879.000000","0.000000",,,,,,,,,,,,"12.000000","413.000000","805.000000","7.000000","413.000000","413.000000",,,,,,,,,,,"922744.000000","964688.000000","0.000000","0.000000","2072016.000000","0.000000","2092704.000000","129468.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","964688.000000","2072016.000000","2092704.000000","44548.000000","30380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9808.000000","0.000000","0.000000",,,,,,"0.000000","9.000000",,,,,,,,,,,"0.000000","58.000000","117.000000","101.000000","106.000000","339.000000","113.000000","0.000000","0.000000","0.000000","54.000000","105.000000","96.000000","104.000000","291.000000","111.000000","160.000000","6000.000000","0.000000","748062.000000",,,,, +"2422.000000","34.875000","2422.000000","34.875000","2422.000000","34.875000","1433.000000","0.000000",,,,,,,,,,,,"8.000000","714.000000","1416.000000","13.000000","714.000000","714.000000",,,,,,,,,,,"943716.000000","985660.000000","0.000000","0.000000","2071892.000000","0.000000","2092704.000000","129468.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","985660.000000","2071892.000000","2092704.000000","44548.000000","30592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9836.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","63.000000","150.000000","107.000000","107.000000","400.000000","113.000000","0.000000","0.000000","0.000000","58.000000","130.000000","100.000000","105.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748082.000000",,,,, +"2617.000000","45.290000","2617.000000","45.290000","2617.000000","45.290000","985.000000","0.000000",,,,,,,,,,,,"720.000000","2480.000000","4166.000000","17.000000","2480.000000","2480.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2072116.000000","0.000000","2092704.000000","129468.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","1384120.000000","2072116.000000","2092704.000000","44548.000000","30296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9688.000000","0.000000","0.000000",,,,,,"2.000000","72.000000",,,,,,,,,,,"0.000000","65.000000","152.000000","107.000000","108.000000","400.000000","112.000000","0.000000","0.000000","0.000000","60.000000","133.000000","100.000000","105.000000","309.000000","110.000000","160.000000","6000.000000","0.000000","748102.000000",,,,, +"4310.000000","53.250000","4310.000000","53.250000","4310.000000","53.250000","1219.000000","0.000000",,,,,,,,,,,,"324.000000","3148.500000","5945.000000","12.000000","3148.500000","3148.500000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071856.000000","0.000000","2092704.000000","129468.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","1384120.000000","2071856.000000","2092704.000000","44548.000000","30356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9680.000000","0.000000","0.000000",,,,,,"0.000000","26.000000",,,,,,,,,,,"0.000000","68.000000","154.000000","112.000000","108.000000","400.000000","113.000000","0.000000","0.000000","0.000000","62.000000","132.000000","103.000000","106.000000","309.000000","111.000000","160.000000","6000.000000","0.000000","748122.000000",,,,, +"3058.000000","47.365000","3058.000000","47.365000","3058.000000","47.365000","710.000000","0.000000",,,,,,,,,,,,"280.000000","2332.000000","4356.000000","10.000000","2332.000000","2332.000000",,,,,,,,,,,"1321204.000000","1384120.000000","0.000000","0.000000","2071776.000000","0.000000","2092704.000000","129468.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1384120.000000","2071776.000000","2092704.000000","44548.000000","30488.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","27.000000",,,,,,,,,,,"0.000000","72.000000","156.000000","118.000000","109.000000","378.000000","179.000000","0.000000","0.000000","0.000000","65.000000","124.000000","106.000000","107.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748142.000000",,,,, +"2509.000000","44.785000","2509.000000","44.785000","2509.000000","44.785000","891.000000","0.000000",,,,,,,,,,,,"180.000000","1414.500000","2644.000000","15.000000","1414.500000","1414.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071700.000000","0.000000","2092704.000000","129468.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1384120.000000","2071700.000000","2092704.000000","44548.000000","30664.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","75.000000","157.000000","120.000000","111.000000","378.000000","179.000000","0.000000","0.000000","0.000000","67.000000","124.000000","107.000000","108.000000","294.000000","149.000000","160.000000","6000.000000","0.000000","748162.000000",,,,, +"2849.000000","46.385000","2849.000000","46.385000","2849.000000","46.385000","603.000000","0.000000",,,,,,,,,,,,"0.000000","88.000000","176.000000","10.000000","88.000000","88.000000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071612.000000","0.000000","2092704.000000","129468.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","1384120.000000","2071612.000000","2092704.000000","44548.000000","30804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","135.000000","121.000000","111.000000","328.000000","179.000000","0.000000","0.000000","0.000000","69.000000","108.000000","107.000000","109.000000","166.000000","149.000000","160.000000","6000.000000","0.000000","748182.000000",,,,, +"2471.000000","44.605000","2471.000000","44.605000","2471.000000","44.605000","613.000000","0.000000",,,,,,,,,,,,"371.000000","2221.500000","4028.000000","14.000000","2221.500000","2221.500000",,,,,,,,,,,"1279260.000000","1384120.000000","0.000000","0.000000","2071524.000000","0.000000","2092704.000000","129468.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1384120.000000","2071524.000000","2092704.000000","44548.000000","30976.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","44.000000",,,,,,,,,,,"0.000000","79.000000","106.000000","121.000000","111.000000","115.000000","179.000000","0.000000","0.000000","0.000000","71.000000","99.000000","107.000000","109.000000","115.000000","149.000000","160.000000","6000.000000","0.000000","748202.000000",,,,, +"2306.000000","39.330000","2306.000000","39.330000","2306.000000","39.330000","813.000000","0.000000",,,,,,,,,,,,"19.000000","576.000000","1120.000000","15.000000","576.000000","576.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1195376.000000","2071344.000000","2092704.000000","44548.000000","31240.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","80.000000","99.000000","120.000000","111.000000","112.000000","179.000000","0.000000","0.000000","0.000000","73.000000","94.000000","106.000000","109.000000","111.000000","149.000000","160.000000","6000.000000","0.000000","748222.000000",,,,, +"2854.000000","41.905000","2854.000000","41.905000","2854.000000","41.905000","866.000000","0.000000",,,,,,,,,,,,"489.000000","1535.000000","2563.000000","10.000000","1535.000000","1535.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1195376.000000","2071264.000000","2092704.000000","44548.000000","31424.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","17.000000",,,,,,,,,,,"0.000000","82.000000","93.000000","119.000000","111.000000","111.000000","179.000000","0.000000","0.000000","0.000000","74.000000","88.000000","105.000000","109.000000","108.000000","149.000000","160.000000","6000.000000","0.000000","748242.000000",,,,, +"2556.000000","40.505000","2556.000000","40.505000","2556.000000","40.505000","581.000000","0.000000",,,,,,,,,,,,"42.000000","1013.000000","1968.000000","12.000000","1013.000000","1013.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2071200.000000","0.000000","2092704.000000","129468.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","1195376.000000","2071200.000000","2092704.000000","44548.000000","31560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9740.000000","0.000000","0.000000",,,,,,"0.000000","15.000000",,,,,,,,,,,"0.000000","85.000000","102.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","77.000000","95.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748262.000000",,,,, +"2257.000000","45.105000","2257.000000","45.105000","2257.000000","45.105000","823.000000","0.000000",,,,,,,,,,,,"269.000000","1074.500000","1867.000000","19.000000","1074.500000","1074.500000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071196.000000","0.000000","2092704.000000","129468.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","1447032.000000","2071196.000000","2092704.000000","44548.000000","31760.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9748.000000","0.000000","0.000000",,,,,,"0.000000","12.000000",,,,,,,,,,,"0.000000","87.000000","104.000000","121.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","78.000000","97.000000","107.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748282.000000",,,,, +"1956.000000","43.690000","1956.000000","43.690000","1956.000000","43.690000","909.000000","0.000000",,,,,,,,,,,,"40.000000","400.000000","727.000000","5.000000","400.000000","400.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071176.000000","0.000000","2092704.000000","129468.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","1447032.000000","2071176.000000","2092704.000000","44548.000000","31968.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9776.000000","0.000000","0.000000",,,,,,"0.000000","31.000000",,,,,,,,,,,"0.000000","88.000000","103.000000","120.000000","112.000000","187.000000","187.000000","0.000000","0.000000","0.000000","80.000000","95.000000","106.000000","110.000000","174.000000","166.000000","160.000000","6000.000000","0.000000","748302.000000",,,,, +"2576.000000","46.600000","2576.000000","46.600000","2576.000000","46.600000","791.000000","0.000000",,,,,,,,,,,,"604.000000","2436.000000","4261.000000","30.000000","2436.000000","2436.000000",,,,,,,,,,,"1384120.000000","1447032.000000","0.000000","0.000000","2071588.000000","0.000000","2092704.000000","129468.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","1447032.000000","2071588.000000","2092704.000000","44548.000000","31316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9640.000000","0.000000","0.000000",,,,,,"0.000000","6.000000",,,,,,,,,,,"0.000000","90.000000","94.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","82.000000","86.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748322.000000",,,,, +"2453.000000","47.025000","2453.000000","47.025000","2453.000000","47.025000","808.000000","0.000000",,,,,,,,,,,,"10.000000","549.500000","1087.000000","5.000000","549.500000","549.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071364.000000","0.000000","2092704.000000","129468.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","1488976.000000","2071364.000000","2092704.000000","44548.000000","31500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9652.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","92.000000","93.000000","121.000000","112.000000","115.000000","187.000000","0.000000","0.000000","0.000000","84.000000","84.000000","107.000000","110.000000","112.000000","166.000000","160.000000","6000.000000","0.000000","748342.000000",,,,, +"2445.000000","46.985000","2445.000000","46.985000","2445.000000","46.985000","1018.000000","0.000000",,,,,,,,,,,,"0.000000","505.500000","1010.000000","23.000000","505.500000","505.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071232.000000","0.000000","2092704.000000","129468.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","1488976.000000","2071232.000000","2092704.000000","44548.000000","31708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9684.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","94.000000","96.000000","116.000000","112.000000","115.000000","179.000000","0.000000","0.000000","0.000000","85.000000","90.000000","103.000000","110.000000","112.000000","149.000000","160.000000","6000.000000","0.000000","748362.000000",,,,, +"2560.000000","47.525000","2560.000000","47.525000","2560.000000","47.525000","866.000000","0.000000",,,,,,,,,,,,"0.000000","492.500000","984.000000","19.000000","492.500000","492.500000",,,,,,,,,,,"1384120.000000","1488976.000000","0.000000","0.000000","2071168.000000","0.000000","2092704.000000","129468.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","1488976.000000","2071168.000000","2092704.000000","44548.000000","31816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9700.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","96.000000","99.000000","111.000000","112.000000","112.000000","115.000000","0.000000","0.000000","0.000000","88.000000","93.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748382.000000",,,,, +"2655.000000","42.975000","2655.000000","42.975000","2655.000000","42.975000","977.000000","0.000000",,,,,,,,,,,,"995.000000","850.500000","701.000000","44.000000","850.500000","850.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071416.000000","0.000000","2092704.000000","129468.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","1279260.000000","2071416.000000","2092704.000000","44548.000000","31308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9672.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","98.000000","102.000000","111.000000","112.000000","117.000000","117.000000","0.000000","0.000000","0.000000","89.000000","96.000000","99.000000","110.000000","112.000000","115.000000","160.000000","6000.000000","0.000000","748402.000000",,,,, +"3104.000000","45.085000","3104.000000","45.085000","3104.000000","45.085000","700.000000","0.000000",,,,,,,,,,,,"1551.000000","1248.500000","943.000000","3.000000","1248.500000","1248.500000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071496.000000","0.000000","2092704.000000","129468.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1279260.000000","2071496.000000","2092704.000000","44548.000000","31320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","100.000000","111.000000","108.000000","113.000000","155.000000","117.000000","0.000000","0.000000","0.000000","91.000000","105.000000","97.000000","111.000000","155.000000","115.000000","160.000000","6000.000000","0.000000","748422.000000",,,,, +"2998.000000","44.585000","2998.000000","44.585000","2998.000000","44.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","465.000000","929.000000","46.000000","465.000000","465.000000",,,,,,,,,,,"1216348.000000","1279260.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","1279260.000000","2071460.000000","2092704.000000","44548.000000","31388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","114.000000","103.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","93.000000","108.000000","96.000000","112.000000","155.000000","114.000000","160.000000","6000.000000","0.000000","748442.000000",,,,, +"2463.000000","41.070000","2463.000000","41.070000","2463.000000","41.070000","661.000000","0.000000",,,,,,,,,,,,"0.000000","530.500000","1059.000000","28.000000","530.500000","530.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071488.000000","0.000000","2092704.000000","129468.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071488.000000","2092704.000000","44548.000000","31528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","102.000000","112.000000","102.000000","114.000000","155.000000","115.000000","0.000000","0.000000","0.000000","94.000000","108.000000","96.000000","112.000000","155.000000","113.000000","160.000000","6000.000000","0.000000","748462.000000",,,,, +"2685.000000","42.110000","2685.000000","42.110000","2685.000000","42.110000","779.000000","0.000000",,,,,,,,,,,,"2.000000","341.500000","680.000000","17.000000","341.500000","341.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071904.000000","0.000000","2092704.000000","129468.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","1237316.000000","2071904.000000","2092704.000000","44548.000000","30740.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9720.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","105.000000","102.000000","114.000000","116.000000","115.000000","0.000000","0.000000","0.000000","95.000000","99.000000","96.000000","112.000000","115.000000","113.000000","160.000000","6000.000000","0.000000","748482.000000",,,,, +"2621.000000","41.815000","2621.000000","41.815000","2621.000000","41.815000","751.000000","0.000000",,,,,,,,,,,,"6.000000","568.500000","1130.000000","26.000000","568.500000","568.500000",,,,,,,,,,,"1174404.000000","1237316.000000","0.000000","0.000000","2071792.000000","0.000000","2092704.000000","129468.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","1237316.000000","2071792.000000","2092704.000000","44548.000000","30960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9716.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","105.000000","102.000000","102.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","97.000000","98.000000","96.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748502.000000",,,,, +"2537.000000","39.420000","2537.000000","39.420000","2537.000000","39.420000","705.000000","0.000000",,,,,,,,,,,,"1.000000","738.000000","1474.000000","30.000000","738.000000","738.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071424.000000","0.000000","2092704.000000","129468.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","1153432.000000","2071424.000000","2092704.000000","44548.000000","31172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9744.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","106.000000","104.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","99.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748522.000000",,,,, +"2528.000000","39.375000","2528.000000","39.375000","2528.000000","39.375000","649.000000","0.000000",,,,,,,,,,,,"0.000000","503.500000","1006.000000","41.000000","503.500000","503.500000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071696.000000","0.000000","2092704.000000","129468.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","1153432.000000","2071696.000000","2092704.000000","44548.000000","31328.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","106.000000","102.000000","103.000000","114.000000","112.000000","115.000000","0.000000","0.000000","0.000000","98.000000","96.000000","97.000000","112.000000","112.000000","113.000000","160.000000","6000.000000","0.000000","748542.000000",,,,, +"2579.000000","39.615000","2579.000000","39.615000","2579.000000","39.615000","639.000000","0.000000",,,,,,,,,,,,"25.000000","577.000000","1127.000000","17.000000","577.000000","577.000000",,,,,,,,,,,"1069544.000000","1153432.000000","0.000000","0.000000","2071616.000000","0.000000","2092704.000000","129468.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","1153432.000000","2071616.000000","2092704.000000","44548.000000","31452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9796.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748562.000000",,,,, +"2581.000000","37.625000","2581.000000","37.625000","2581.000000","37.625000","810.000000","0.000000",,,,,,,,,,,,"29.000000","7316.000000","14600.000000","63.000000","7316.000000","7316.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071388.000000","0.000000","2092704.000000","129468.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","1069544.000000","2071388.000000","2092704.000000","44552.000000","31284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9832.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","102.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","96.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748582.000000",,,,, +"2340.000000","36.490000","2340.000000","36.490000","2340.000000","36.490000","912.000000","0.000000",,,,,,,,,,,,"725.000000","6886.000000","13027.000000","12.000000","6886.000000","6886.000000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","1069544.000000","2071284.000000","2092704.000000","44560.000000","31024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","9896.000000","0.000000","0.000000",,,,,,"0.000000","19.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","110.000000","115.000000","0.000000","0.000000","0.000000","99.000000","97.000000","98.000000","112.000000","105.000000","112.000000","160.000000","6000.000000","0.000000","748602.000000",,,,, +"2801.000000","38.655000","2801.000000","38.655000","2801.000000","38.655000","668.000000","0.000000",,,,,,,,,,,,"129.000000","712.500000","1295.000000","10.000000","712.500000","712.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","1069544.000000","2070920.000000","2092704.000000","44560.000000","31444.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10192.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","103.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","96.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748622.000000",,,,, +"2475.000000","41.125000","2475.000000","41.125000","2475.000000","41.125000","456.000000","0.000000",,,,,,,,,,,,"941.000000","678.000000","414.000000","18.000000","678.000000","678.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070480.000000","0.000000","2092704.000000","129468.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","1237316.000000","2070480.000000","2092704.000000","44560.000000","31964.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10528.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","100.000000","104.000000","114.000000","112.000000","114.000000","0.000000","0.000000","0.000000","99.000000","94.000000","98.000000","112.000000","111.000000","112.000000","160.000000","6000.000000","0.000000","748642.000000",,,,, +"2359.000000","40.580000","2359.000000","40.580000","2359.000000","40.580000","1076.000000","0.000000",,,,,,,,,,,,"1582.000000","1147.000000","711.000000","7.000000","1147.000000","1147.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2070120.000000","0.000000","2092704.000000","129468.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","1237316.000000","2070120.000000","2092704.000000","44560.000000","32268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10812.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","107.000000","101.000000","104.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","95.000000","99.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748662.000000",,,,, +"2142.000000","39.560000","2142.000000","39.560000","2142.000000","39.560000","1022.000000","0.000000",,,,,,,,,,,,"1611.000000","1347.000000","1083.000000","38.000000","1347.000000","1347.000000",,,,,,,,,,,"1006632.000000","1237316.000000","0.000000","0.000000","2069684.000000","0.000000","2092704.000000","129468.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","1237316.000000","2069684.000000","2092704.000000","44560.000000","32804.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11128.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","103.000000","115.000000","116.000000","115.000000","0.000000","0.000000","0.000000","99.000000","88.000000","97.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748682.000000",,,,, +"2311.000000","39.355000","2311.000000","39.355000","2311.000000","39.355000","1645.000000","0.000000",,,,,,,,,,,,"1601.000000","1340.000000","1079.000000","29.000000","1340.000000","1340.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069472.000000","0.000000","2092704.000000","129468.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","1195376.000000","2069472.000000","2092704.000000","44560.000000","33052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11296.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","97.000000","103.000000","114.000000","116.000000","114.000000","0.000000","0.000000","0.000000","98.000000","85.000000","96.000000","112.000000","112.000000","112.000000","160.000000","6000.000000","0.000000","748702.000000",,,,, +"1921.000000","37.520000","1921.000000","37.520000","1921.000000","37.520000","724.000000","0.000000",,,,,,,,,,,,"2948.000000","1837.000000","726.000000","9.000000","1837.000000","1837.000000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2069256.000000","0.000000","2092704.000000","129468.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","1195376.000000","2069256.000000","2092704.000000","44564.000000","33268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11428.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","90.000000","100.000000","114.000000","109.000000","113.000000","0.000000","0.000000","0.000000","98.000000","77.000000","93.000000","112.000000","99.000000","112.000000","160.000000","6000.000000","0.000000","748722.000000",,,,, +"2511.000000","40.295000","2511.000000","40.295000","2511.000000","40.295000","529.000000","0.000000",,,,,,,,,,,,"1831.000000","1130.500000","429.000000","16.000000","1130.500000","1130.500000",,,,,,,,,,,"1006632.000000","1195376.000000","0.000000","0.000000","2068820.000000","0.000000","2092704.000000","129468.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","1195376.000000","2068820.000000","2092704.000000","44564.000000","33800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11748.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","84.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748742.000000",,,,, +"2422.000000","42.880000","2422.000000","42.880000","2422.000000","42.880000","521.000000","0.000000",,,,,,,,,,,,"1787.000000","1115.500000","444.000000","51.000000","1115.500000","1115.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","1321204.000000","2068500.000000","2092704.000000","44564.000000","33936.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12056.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","99.000000","114.000000","108.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","92.000000","112.000000","99.000000","106.000000","160.000000","6000.000000","0.000000","748762.000000",,,,, +"2283.000000","42.225000","2283.000000","42.225000","2283.000000","42.225000","760.000000","0.000000",,,,,,,,,,,,"576.000000","352.500000","128.000000","3.000000","352.500000","352.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068948.000000","0.000000","2092704.000000","129468.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","1321204.000000","2068948.000000","2092704.000000","44564.000000","33296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","98.000000","98.000000","114.000000","105.000000","110.000000","0.000000","0.000000","0.000000","98.000000","89.000000","91.000000","112.000000","100.000000","106.000000","160.000000","6000.000000","0.000000","748782.000000",,,,, +"2151.000000","41.605000","2151.000000","41.605000","2151.000000","41.605000","719.000000","0.000000",,,,,,,,,,,,"236.000000","248.500000","261.000000","2.000000","248.500000","248.500000",,,,,,,,,,,"943716.000000","1321204.000000","0.000000","0.000000","2068892.000000","0.000000","2092704.000000","129468.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","1321204.000000","2068892.000000","2092704.000000","44564.000000","33172.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","107.000000","95.000000","98.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","98.000000","86.000000","90.000000","112.000000","100.000000","105.000000","160.000000","6000.000000","0.000000","748802.000000",,,,, +"2417.000000","46.355000","2417.000000","46.355000","2417.000000","46.355000","523.000000","0.000000",,,,,,,,,,,,"382.000000","620.500000","854.000000","8.000000","620.500000","620.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068688.000000","0.000000","2092704.000000","129468.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","1468004.000000","2068688.000000","2092704.000000","44564.000000","33588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12624.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","106.000000","91.000000","97.000000","114.000000","109.000000","110.000000","0.000000","0.000000","0.000000","97.000000","84.000000","89.000000","112.000000","107.000000","105.000000","160.000000","6000.000000","0.000000","748822.000000",,,,, +"2886.000000","48.560000","2886.000000","48.560000","2886.000000","48.560000","848.000000","0.000000",,,,,,,,,,,,"134.000000","508.500000","878.000000","5.000000","508.500000","508.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068400.000000","0.000000","2092704.000000","129468.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","1468004.000000","2068400.000000","2092704.000000","44564.000000","33972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12796.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","107.000000","96.000000","97.000000","114.000000","111.000000","110.000000","0.000000","0.000000","0.000000","97.000000","90.000000","90.000000","112.000000","108.000000","107.000000","160.000000","6000.000000","0.000000","748842.000000",,,,, +"4560.000000","56.425000","4560.000000","56.425000","4560.000000","56.425000","998.000000","0.000000",,,,,,,,,,,,"245.000000","853.500000","1459.000000","4.000000","853.500000","853.500000",,,,,,,,,,,"985660.000000","1468004.000000","0.000000","0.000000","2068544.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","1468004.000000","2068544.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12928.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","109.000000","130.000000","103.000000","115.000000","197.000000","116.000000","0.000000","0.000000","0.000000","99.000000","120.000000","95.000000","113.000000","189.000000","112.000000","160.000000","6000.000000","0.000000","748862.000000",,,,, +"4207.000000","47.765000","4207.000000","47.765000","4207.000000","47.765000","984.000000","0.000000",,,,,,,,,,,,"0.000000","675.000000","1349.000000","17.000000","675.000000","675.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068684.000000","0.000000","2092704.000000","129468.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","1174404.000000","2068684.000000","2092704.000000","44568.000000","33004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13112.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","110.000000","157.000000","108.000000","117.000000","200.000000","172.000000","0.000000","0.000000","0.000000","101.000000","143.000000","99.000000","115.000000","189.000000","154.000000","160.000000","6000.000000","0.000000","748882.000000",,,,, +"4612.000000","49.670000","4612.000000","49.670000","4612.000000","49.670000","2901.000000","0.000000",,,,,,,,,,,,"6.000000","650.000000","1292.000000","10.000000","650.000000","650.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068336.000000","0.000000","2092704.000000","129468.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","1174404.000000","2068336.000000","2092704.000000","44568.000000","33244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13308.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","112.000000","183.000000","114.000000","163.000000","203.000000","186.000000","0.000000","0.000000","0.000000","102.000000","167.000000","104.000000","149.000000","196.000000","175.000000","160.000000","6000.000000","0.000000","748902.000000",,,,, +"4527.000000","49.265000","4527.000000","49.265000","4527.000000","49.265000","908.000000","0.000000",,,,,,,,,,,,"9.000000","573.000000","1135.000000","19.000000","573.000000","573.000000",,,,,,,,,,,"901772.000000","1174404.000000","0.000000","0.000000","2068024.000000","0.000000","2092704.000000","129468.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","1174404.000000","2068024.000000","2092704.000000","44568.000000","33596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13564.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","115.000000","183.000000","120.000000","179.000000","203.000000","189.000000","0.000000","0.000000","0.000000","105.000000","166.000000","109.000000","155.000000","196.000000","178.000000","160.000000","6000.000000","0.000000","748922.000000",,,,, +"4990.000000","50.945000","4990.000000","50.945000","4990.000000","50.945000","767.000000","0.000000",,,,,,,,,,,,"236.000000","1692.500000","3147.000000","16.000000","1692.500000","1692.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068476.000000","0.000000","2092704.000000","129468.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","1153432.000000","2068476.000000","2092704.000000","44568.000000","33160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13556.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","125.000000","180.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","175.000000","115.000000","166.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748942.000000",,,,, +"4418.000000","48.260000","4418.000000","48.260000","4418.000000","48.260000","910.000000","0.000000",,,,,,,,,,,,"61.000000","1808.000000","3555.000000","44.000000","1808.000000","1808.000000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","1153432.000000","2068732.000000","2092704.000000","44568.000000","32844.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","186.000000","130.000000","185.000000","211.000000","194.000000","0.000000","0.000000","0.000000","107.000000","173.000000","119.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748962.000000",,,,, +"4310.000000","47.750000","4310.000000","47.750000","4310.000000","47.750000","1200.000000","0.000000",,,,,,,,,,,,"162.000000","666.500000","1170.000000","29.000000","666.500000","666.500000",,,,,,,,,,,"1006632.000000","1153432.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","1153432.000000","2068508.000000","2092704.000000","44568.000000","33088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13784.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","117.000000","188.000000","138.000000","186.000000","211.000000","195.000000","0.000000","0.000000","0.000000","107.000000","172.000000","126.000000","169.000000","211.000000","188.000000","160.000000","6000.000000","0.000000","748982.000000",,,,, +"4985.000000","53.420000","4985.000000","53.420000","4985.000000","53.420000","916.000000","0.000000",,,,,,,,,,,,"0.000000","590.000000","1178.000000","18.000000","590.000000","590.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2068068.000000","0.000000","2092704.000000","129468.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2068068.000000","2092704.000000","44568.000000","33380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","119.000000","188.000000","144.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","171.000000","132.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749002.000000",,,,, +"4211.000000","49.785000","4211.000000","49.785000","4211.000000","49.785000","2143.000000","0.000000",,,,,,,,,,,,"0.000000","490.000000","980.000000","27.000000","490.000000","490.000000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067656.000000","0.000000","2092704.000000","129468.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","1258288.000000","2067656.000000","2092704.000000","44568.000000","33604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","189.000000","150.000000","187.000000","209.000000","197.000000","0.000000","0.000000","0.000000","109.000000","170.000000","138.000000","174.000000","205.000000","189.000000","160.000000","6000.000000","0.000000","749022.000000",,,,, +"4596.000000","51.590000","4596.000000","51.590000","4596.000000","51.590000","1290.000000","0.000000",,,,,,,,,,,,"1.000000","616.500000","1231.000000","19.000000","616.500000","616.500000",,,,,,,,,,,"1174404.000000","1258288.000000","0.000000","0.000000","2067452.000000","0.000000","2092704.000000","129468.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","1258288.000000","2067452.000000","2092704.000000","44568.000000","33832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14372.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","119.000000","187.000000","156.000000","187.000000","209.000000","200.000000","0.000000","0.000000","0.000000","111.000000","174.000000","144.000000","175.000000","205.000000","190.000000","160.000000","6000.000000","0.000000","749042.000000",,,,, +"4377.000000","48.065000","4377.000000","48.065000","4377.000000","48.065000","962.000000","0.000000",,,,,,,,,,,,"0.000000","644.500000","1288.000000","25.000000","644.500000","644.500000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2067056.000000","0.000000","2092704.000000","129468.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","1153432.000000","2067056.000000","2092704.000000","44568.000000","34056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14560.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","121.000000","181.000000","161.000000","189.000000","202.000000","200.000000","0.000000","0.000000","0.000000","112.000000","165.000000","148.000000","175.000000","201.000000","190.000000","160.000000","6000.000000","0.000000","749062.000000",,,,, +"5237.000000","52.105000","5237.000000","52.105000","5237.000000","52.105000","943.000000","0.000000",,,,,,,,,,,,"2.000000","615.000000","1227.000000","21.000000","615.000000","615.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066912.000000","0.000000","2092704.000000","129468.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","1153432.000000","2066912.000000","2092704.000000","44568.000000","34212.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","123.000000","185.000000","167.000000","191.000000","213.000000","202.000000","0.000000","0.000000","0.000000","114.000000","171.000000","154.000000","177.000000","213.000000","196.000000","160.000000","6000.000000","0.000000","749082.000000",,,,, +"5077.000000","51.355000","5077.000000","51.355000","5077.000000","51.355000","786.000000","0.000000",,,,,,,,,,,,"1.000000","651.000000","1301.000000","21.000000","651.000000","651.000000",,,,,,,,,,,"1090516.000000","1153432.000000","0.000000","0.000000","2066876.000000","0.000000","2092704.000000","129468.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","1153432.000000","2066876.000000","2092704.000000","44568.000000","34408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","194.000000","176.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","116.000000","183.000000","163.000000","184.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749102.000000",,,,, +"4878.000000","53.920000","4878.000000","53.920000","4878.000000","53.920000","558.000000","0.000000",,,,,,,,,,,,"1.000000","665.000000","1328.000000","23.000000","665.000000","665.000000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2067136.000000","0.000000","2092704.000000","129468.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","1300232.000000","2067136.000000","2092704.000000","44568.000000","34324.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14972.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","127.000000","198.000000","182.000000","194.000000","213.000000","204.000000","0.000000","0.000000","0.000000","118.000000","190.000000","169.000000","187.000000","213.000000","203.000000","160.000000","6000.000000","0.000000","749122.000000",,,,, +"5149.000000","55.190000","5149.000000","55.190000","5149.000000","55.190000","679.000000","0.000000",,,,,,,,,,,,"6.000000","495.500000","985.000000","19.000000","495.500000","495.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069248.000000","0.000000","2092704.000000","129468.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","1300232.000000","2069248.000000","2092704.000000","44568.000000","32128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","129.000000","196.000000","188.000000","196.000000","208.000000","204.000000","0.000000","0.000000","0.000000","120.000000","189.000000","174.000000","188.000000","205.000000","203.000000","160.000000","6000.000000","0.000000","749142.000000",,,,, +"4683.000000","53.005000","4683.000000","53.005000","4683.000000","53.005000","881.000000","0.000000",,,,,,,,,,,,"5.000000","754.500000","1504.000000","66.000000","754.500000","754.500000",,,,,,,,,,,"1216348.000000","1300232.000000","0.000000","0.000000","2069080.000000","0.000000","2092704.000000","129468.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","1300232.000000","2069080.000000","2092704.000000","44568.000000","32016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12984.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","193.000000","189.000000","198.000000","208.000000","208.000000","0.000000","0.000000","0.000000","122.000000","183.000000","175.000000","188.000000","200.000000","203.000000","160.000000","6000.000000","0.000000","749162.000000",,,,, +"5484.000000","59.765000","5484.000000","59.765000","5484.000000","59.765000","1039.000000","0.000000",,,,,,,,,,,,"5.000000","543.000000","1081.000000","17.000000","543.000000","543.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068884.000000","0.000000","2092704.000000","129468.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","1426060.000000","2068884.000000","2092704.000000","44568.000000","32056.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13020.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","134.000000","198.000000","191.000000","200.000000","213.000000","208.000000","0.000000","0.000000","0.000000","124.000000","190.000000","178.000000","190.000000","213.000000","205.000000","160.000000","6000.000000","0.000000","749182.000000",,,,, +"4817.000000","56.635000","4817.000000","56.635000","4817.000000","56.635000","898.000000","0.000000",,,,,,,,,,,,"2.000000","877.500000","1753.000000","31.000000","877.500000","877.500000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068732.000000","0.000000","2092704.000000","129468.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","1426060.000000","2068732.000000","2092704.000000","44568.000000","32220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","201.000000","191.000000","200.000000","218.000000","209.000000","0.000000","0.000000","0.000000","127.000000","192.000000","179.000000","192.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749202.000000",,,,, +"4453.000000","54.920000","4453.000000","54.920000","4453.000000","54.920000","1616.000000","0.000000",,,,,,,,,,,,"1.000000","576.000000","1151.000000","26.000000","576.000000","576.000000",,,,,,,,,,,"1342176.000000","1426060.000000","0.000000","0.000000","2068508.000000","0.000000","2092704.000000","129468.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","1426060.000000","2068508.000000","2092704.000000","44568.000000","32312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","138.000000","198.000000","192.000000","202.000000","218.000000","209.000000","0.000000","0.000000","0.000000","129.000000","184.000000","179.000000","193.000000","218.000000","206.000000","160.000000","6000.000000","0.000000","749222.000000",,,,, +"4907.000000","52.055000","4907.000000","52.055000","4907.000000","52.055000","1009.000000","0.000000",,,,,,,,,,,,"2.000000","632.000000","1262.000000","27.000000","632.000000","632.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068460.000000","0.000000","2092704.000000","129468.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","1216348.000000","2068460.000000","2092704.000000","44568.000000","32380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13312.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","140.000000","194.000000","192.000000","202.000000","218.000000","208.000000","0.000000","0.000000","0.000000","131.000000","178.000000","179.000000","193.000000","218.000000","205.000000","160.000000","6000.000000","0.000000","749242.000000",,,,, +"5263.000000","53.730000","5263.000000","53.730000","5263.000000","53.730000","434.000000","0.000000",,,,,,,,,,,,"2.000000","468.000000","934.000000","48.000000","468.000000","468.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068312.000000","0.000000","2092704.000000","129468.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","1216348.000000","2068312.000000","2092704.000000","44568.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","142.000000","193.000000","193.000000","202.000000","205.000000","208.000000","0.000000","0.000000","0.000000","133.000000","178.000000","180.000000","193.000000","200.000000","205.000000","160.000000","6000.000000","0.000000","749262.000000",,,,, +"4974.000000","52.370000","4974.000000","52.370000","4974.000000","52.370000","940.000000","0.000000",,,,,,,,,,,,"4.000000","607.000000","1209.000000","22.000000","607.000000","607.000000",,,,,,,,,,,"1153432.000000","1216348.000000","0.000000","0.000000","2068216.000000","0.000000","2092704.000000","129468.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","1216348.000000","2068216.000000","2092704.000000","44568.000000","32636.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","145.000000","199.000000","194.000000","203.000000","216.000000","209.000000","0.000000","0.000000","0.000000","135.000000","190.000000","183.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749282.000000",,,,, +"4725.000000","52.200000","4725.000000","52.200000","4725.000000","52.200000","1142.000000","0.000000",,,,,,,,,,,,"2.000000","549.000000","1095.000000","21.000000","549.000000","549.000000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067956.000000","0.000000","2092704.000000","129468.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","1258288.000000","2067956.000000","2092704.000000","44572.000000","32896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","147.000000","196.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","188.000000","182.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749302.000000",,,,, +"4487.000000","51.080000","4487.000000","51.080000","4487.000000","51.080000","1028.000000","0.000000",,,,,,,,,,,,"4.000000","504.500000","1004.000000","18.000000","504.500000","504.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067856.000000","0.000000","2092704.000000","129468.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","1258288.000000","2067856.000000","2092704.000000","44572.000000","33000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","148.000000","191.000000","193.000000","204.000000","216.000000","209.000000","0.000000","0.000000","0.000000","137.000000","177.000000","181.000000","199.000000","216.000000","207.000000","160.000000","6000.000000","0.000000","749322.000000",,,,, +"4644.000000","51.820000","4644.000000","51.820000","4644.000000","51.820000","1226.000000","0.000000",,,,,,,,,,,,"3.000000","668.500000","1334.000000","27.000000","668.500000","668.500000",,,,,,,,,,,"1216348.000000","1258288.000000","0.000000","0.000000","2067876.000000","0.000000","2092704.000000","129468.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","1258288.000000","2067876.000000","2092704.000000","44576.000000","33148.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14024.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","150.000000","191.000000","195.000000","204.000000","210.000000","210.000000","0.000000","0.000000","0.000000","139.000000","173.000000","183.000000","200.000000","207.000000","207.000000","160.000000","6000.000000","0.000000","749342.000000",,,,, +"5158.000000","52.735000","5158.000000","52.735000","5158.000000","52.735000","972.000000","0.000000",,,,,,,,,,,,"10.000000","671.000000","1331.000000","22.000000","671.000000","671.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067952.000000","0.000000","2092704.000000","129468.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","1195376.000000","2067952.000000","2092704.000000","44576.000000","33292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","152.000000","198.000000","197.000000","205.000000","212.000000","212.000000","0.000000","0.000000","0.000000","141.000000","178.000000","185.000000","201.000000","208.000000","208.000000","160.000000","6000.000000","0.000000","749362.000000",,,,, +"5152.000000","52.705000","5152.000000","52.705000","5152.000000","52.705000","1007.000000","0.000000",,,,,,,,,,,,"15.000000","600.000000","1184.000000","20.000000","600.000000","600.000000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","1195376.000000","2067840.000000","2092704.000000","44576.000000","33412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14240.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","154.000000","203.000000","197.000000","205.000000","212.000000","210.000000","0.000000","0.000000","0.000000","143.000000","188.000000","185.000000","201.000000","208.000000","207.000000","160.000000","6000.000000","0.000000","749382.000000",,,,, +"4716.000000","50.660000","4716.000000","50.660000","4716.000000","50.660000","1169.000000","0.000000",,,,,,,,,,,,"7.000000","576.500000","1145.000000","23.000000","576.500000","576.500000",,,,,,,,,,,"1153432.000000","1195376.000000","0.000000","0.000000","2068060.000000","0.000000","2092704.000000","129468.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","1195376.000000","2068060.000000","2092704.000000","44576.000000","33496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","156.000000","197.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","145.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749402.000000",,,,, +"5008.000000","51.530000","5008.000000","51.530000","5008.000000","51.530000","1149.000000","0.000000",,,,,,,,,,,,"5.000000","551.500000","1097.000000","14.000000","551.500000","551.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071144.000000","0.000000","2092704.000000","129468.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","1174404.000000","2071144.000000","2092704.000000","44576.000000","30024.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11268.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","158.000000","196.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","147.000000","188.000000","184.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749422.000000",,,,, +"4624.000000","49.725000","4624.000000","49.725000","4624.000000","49.725000","1052.000000","0.000000",,,,,,,,,,,,"21.000000","2230.500000","4439.000000","44.000000","2230.500000","2230.500000",,,,,,,,,,,"1132460.000000","1174404.000000","0.000000","0.000000","2071148.000000","0.000000","2092704.000000","129468.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1174404.000000","2071148.000000","2092704.000000","44576.000000","30020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","160.000000","193.000000","196.000000","206.000000","213.000000","212.000000","0.000000","0.000000","0.000000","149.000000","182.000000","183.000000","202.000000","213.000000","208.000000","160.000000","6000.000000","0.000000","749442.000000",,,,, +"4676.000000","50.470000","4676.000000","50.470000","4676.000000","50.470000","743.000000","0.000000",,,,,,,,,,,,"20.000000","4493.000000","8964.000000","76.000000","4493.000000","4493.000000",,,,,,,,,,,"1132460.000000","1195376.000000","0.000000","0.000000","2071048.000000","0.000000","2092704.000000","129468.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","1195376.000000","2071048.000000","2092704.000000","44580.000000","29996.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11220.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","162.000000","190.000000","195.000000","206.000000","219.000000","213.000000","0.000000","0.000000","0.000000","151.000000","178.000000","183.000000","203.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749462.000000",,,,, +"5090.000000","58.915000","5090.000000","58.915000","5090.000000","58.915000","1147.000000","0.000000",,,,,,,,,,,,"45.000000","651.500000","1257.000000","26.000000","651.500000","651.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","1468004.000000","2071256.000000","2092704.000000","44580.000000","29744.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","164.000000","191.000000","195.000000","208.000000","219.000000","213.000000","0.000000","0.000000","0.000000","153.000000","179.000000","182.000000","205.000000","219.000000","213.000000","160.000000","6000.000000","0.000000","749482.000000",,,,, +"4654.000000","56.865000","4654.000000","56.865000","4654.000000","56.865000","1000.000000","0.000000",,,,,,,,,,,,"1523.000000","1798.500000","2072.000000","18.000000","1798.500000","1798.500000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071212.000000","0.000000","2092704.000000","129468.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1468004.000000","2071212.000000","2092704.000000","44580.000000","29792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","166.000000","191.000000","194.000000","208.000000","219.000000","212.000000","0.000000","0.000000","0.000000","155.000000","182.000000","181.000000","205.000000","219.000000","208.000000","160.000000","6000.000000","0.000000","749502.000000",,,,, +"3573.000000","51.785000","3573.000000","51.785000","3573.000000","51.785000","1791.000000","0.000000",,,,,,,,,,,,"2660.000000","15507.000000","28354.000000","37.000000","15507.000000","15507.000000",,,,,,,,,,,"1384120.000000","1468004.000000","0.000000","0.000000","2071460.000000","0.000000","2092704.000000","129468.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","1468004.000000","2071460.000000","2092704.000000","44580.000000","29544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10916.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","184.000000","192.000000","208.000000","217.000000","212.000000","0.000000","0.000000","0.000000","156.000000","168.000000","179.000000","205.000000","217.000000","208.000000","160.000000","6000.000000","0.000000","749522.000000",,,,, +"4112.000000","58.820000","4112.000000","58.820000","4112.000000","58.820000","914.000000","0.000000",,,,,,,,,,,,"15.000000","465.000000","915.000000","31.000000","465.000000","465.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071288.000000","0.000000","2092704.000000","129468.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","1656748.000000","2071288.000000","2092704.000000","44584.000000","29596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","170.000000","177.000000","191.000000","208.000000","205.000000","212.000000","0.000000","0.000000","0.000000","157.000000","157.000000","178.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749542.000000",,,,, +"3809.000000","57.395000","3809.000000","57.395000","3809.000000","57.395000","1231.000000","0.000000",,,,,,,,,,,,"10.000000","397.500000","784.000000","11.000000","397.500000","397.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","1656748.000000","2071368.000000","2092704.000000","44584.000000","29516.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","174.000000","190.000000","208.000000","204.000000","212.000000","0.000000","0.000000","0.000000","158.000000","144.000000","175.000000","205.000000","200.000000","208.000000","160.000000","6000.000000","0.000000","749562.000000",,,,, +"4371.000000","60.040000","4371.000000","60.040000","4371.000000","60.040000","1233.000000","0.000000",,,,,,,,,,,,"3.000000","650.000000","1297.000000","38.000000","650.000000","650.000000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071448.000000","0.000000","2092704.000000","129468.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1656748.000000","2071448.000000","2092704.000000","44584.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","184.000000","189.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","160.000000","154.000000","172.000000","205.000000","200.000000","207.000000","160.000000","6000.000000","0.000000","749582.000000",,,,, +"3595.000000","56.390000","3595.000000","56.390000","3595.000000","56.390000","817.000000","0.000000",,,,,,,,,,,,"5.000000","303.500000","601.000000","19.000000","303.500000","303.500000",,,,,,,,,,,"1384120.000000","1656748.000000","0.000000","0.000000","2071396.000000","0.000000","2092704.000000","129468.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","1656748.000000","2071396.000000","2092704.000000","43152.000000","29580.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10952.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","179.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","161.000000","146.000000","170.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749602.000000",,,,, +"4116.000000","62.840000","4116.000000","62.840000","4116.000000","62.840000","589.000000","0.000000",,,,,,,,,,,,"2.000000","356.500000","710.000000","17.000000","356.500000","356.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071356.000000","0.000000","2092704.000000","129468.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","1824520.000000","2071356.000000","2092704.000000","43164.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","177.000000","180.000000","188.000000","208.000000","209.000000","210.000000","0.000000","0.000000","0.000000","163.000000","150.000000","169.000000","205.000000","195.000000","207.000000","160.000000","6000.000000","0.000000","749622.000000",,,,, +"3382.000000","59.385000","3382.000000","59.385000","3382.000000","59.385000","655.000000","0.000000",,,,,,,,,,,,"5.000000","309.500000","614.000000","32.000000","309.500000","309.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071556.000000","0.000000","2092704.000000","129468.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","1824520.000000","2071556.000000","2092704.000000","43164.000000","29436.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10808.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","171.000000","185.000000","208.000000","191.000000","209.000000","0.000000","0.000000","0.000000","164.000000","138.000000","165.000000","205.000000","162.000000","205.000000","160.000000","6000.000000","0.000000","749642.000000",,,,, +"3543.000000","60.145000","3543.000000","60.145000","3543.000000","60.145000","605.000000","0.000000",,,,,,,,,,,,"7.000000","539.500000","1072.000000","27.000000","539.500000","539.500000",,,,,,,,,,,"1509948.000000","1824520.000000","0.000000","0.000000","2071284.000000","0.000000","2092704.000000","129468.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1824520.000000","2071284.000000","2092704.000000","43168.000000","29460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","174.000000","183.000000","208.000000","192.000000","206.000000","0.000000","0.000000","0.000000","165.000000","139.000000","162.000000","205.000000","162.000000","200.000000","160.000000","6000.000000","0.000000","749662.000000",,,,, +"3628.000000","59.045000","3628.000000","59.045000","3628.000000","59.045000","509.000000","0.000000",,,,,,,,,,,,"925.000000","2231.500000","3537.000000","36.000000","2231.500000","2231.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071276.000000","0.000000","2092704.000000","129468.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","1761604.000000","2071276.000000","2092704.000000","43168.000000","29468.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","182.000000","208.000000","202.000000","206.000000","0.000000","0.000000","0.000000","166.000000","133.000000","158.000000","205.000000","151.000000","200.000000","160.000000","6000.000000","0.000000","749682.000000",,,,, +"3429.000000","58.110000","3429.000000","58.110000","3429.000000","58.110000","657.000000","0.000000",,,,,,,,,,,,"54.000000","511.000000","967.000000","17.000000","511.000000","511.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071500.000000","0.000000","2092704.000000","129468.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071500.000000","2092704.000000","43168.000000","29520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","180.000000","182.000000","208.000000","202.000000","205.000000","0.000000","0.000000","0.000000","167.000000","132.000000","154.000000","205.000000","152.000000","196.000000","160.000000","6000.000000","0.000000","749702.000000",,,,, +"3430.000000","58.110000","3430.000000","58.110000","3430.000000","58.110000","626.000000","0.000000",,,,,,,,,,,,"2.000000","397.000000","792.000000","17.000000","397.000000","397.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2071744.000000","0.000000","2092704.000000","129468.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","1761604.000000","2071744.000000","2092704.000000","43168.000000","29700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","186.000000","177.000000","180.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","131.000000","151.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749722.000000",,,,, +"3539.000000","58.625000","3539.000000","58.625000","3539.000000","58.625000","716.000000","0.000000",,,,,,,,,,,,"5.000000","305.500000","606.000000","12.000000","305.500000","305.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071712.000000","0.000000","2092704.000000","129468.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2071712.000000","2092704.000000","43168.000000","29732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","174.000000","178.000000","208.000000","204.000000","204.000000","0.000000","0.000000","0.000000","168.000000","128.000000","147.000000","205.000000","152.000000","195.000000","160.000000","6000.000000","0.000000","749742.000000",,,,, +"4637.000000","63.785000","4637.000000","63.785000","4637.000000","63.785000","1277.000000","0.000000",,,,,,,,,,,,"6.000000","545.000000","1084.000000","31.000000","545.000000","545.000000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071572.000000","0.000000","2092704.000000","129468.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","1761604.000000","2071572.000000","2092704.000000","43168.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","176.000000","179.000000","208.000000","212.000000","204.000000","0.000000","0.000000","0.000000","169.000000","144.000000","147.000000","205.000000","199.000000","195.000000","160.000000","6000.000000","0.000000","749762.000000",,,,, +"5071.000000","65.825000","5071.000000","65.825000","5071.000000","65.825000","848.000000","0.000000",,,,,,,,,,,,"30.000000","1264.500000","2498.000000","42.000000","1264.500000","1264.500000",,,,,,,,,,,"1593832.000000","1761604.000000","0.000000","0.000000","2071220.000000","0.000000","2092704.000000","129468.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1761604.000000","2071220.000000","2092704.000000","43168.000000","29860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","186.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","162.000000","147.000000","205.000000","210.000000","195.000000","160.000000","6000.000000","0.000000","749782.000000",,,,, +"4446.000000","57.890000","4446.000000","57.890000","4446.000000","57.890000","2008.000000","0.000000",,,,,,,,,,,,"5.000000","449.500000","894.000000","21.000000","449.500000","449.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2071172.000000","0.000000","2092704.000000","129468.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","1551892.000000","2071172.000000","2092704.000000","43168.000000","29908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11264.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","179.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","177.000000","146.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749802.000000",,,,, +"4419.000000","57.760000","4419.000000","57.760000","4419.000000","57.760000","646.000000","0.000000",,,,,,,,,,,,"3.000000","730.500000","1457.000000","30.000000","730.500000","730.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070804.000000","0.000000","2092704.000000","129468.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","1551892.000000","2070804.000000","2092704.000000","43168.000000","29988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","194.000000","181.000000","209.000000","214.000000","204.000000","0.000000","0.000000","0.000000","169.000000","173.000000","148.000000","205.000000","210.000000","184.000000","160.000000","6000.000000","0.000000","749822.000000",,,,, +"4423.000000","57.780000","4423.000000","57.780000","4423.000000","57.780000","1051.000000","0.000000",,,,,,,,,,,,"5983.000000","4288.500000","2592.000000","11.000000","4288.500000","4288.500000",,,,,,,,,,,"1468004.000000","1551892.000000","0.000000","0.000000","2070584.000000","0.000000","2092704.000000","129468.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","1551892.000000","2070584.000000","2092704.000000","43168.000000","30052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","191.000000","181.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","169.000000","171.000000","150.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749842.000000",,,,, +"4272.000000","56.575000","4272.000000","56.575000","4272.000000","56.575000","1508.000000","0.000000",,,,,,,,,,,,"3918.000000","4704.500000","5490.000000","12.000000","4704.500000","4704.500000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071092.000000","0.000000","2092704.000000","129468.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1530920.000000","2071092.000000","2092704.000000","43168.000000","29540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","182.000000","180.000000","208.000000","206.000000","204.000000","0.000000","0.000000","0.000000","168.000000","165.000000","151.000000","205.000000","205.000000","188.000000","160.000000","6000.000000","0.000000","749862.000000",,,,, +"4565.000000","57.945000","4565.000000","57.945000","4565.000000","57.945000","753.000000","0.000000",,,,,,,,,,,,"1649.000000","5228.000000","8806.000000","36.000000","5228.000000","5228.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2071056.000000","0.000000","2092704.000000","129468.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2071056.000000","2092704.000000","43168.000000","29576.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","179.000000","180.000000","208.000000","206.000000","202.000000","0.000000","0.000000","0.000000","169.000000","166.000000","151.000000","205.000000","205.000000","184.000000","160.000000","6000.000000","0.000000","749882.000000",,,,, +"3685.000000","53.810000","3685.000000","53.810000","3685.000000","53.810000","1607.000000","0.000000",,,,,,,,,,,,"4372.000000","7706.000000","11040.000000","23.000000","7706.000000","7706.000000",,,,,,,,,,,"1363148.000000","1530920.000000","0.000000","0.000000","2070864.000000","0.000000","2092704.000000","129468.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","1530920.000000","2070864.000000","2092704.000000","43168.000000","29584.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10940.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","188.000000","177.000000","181.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","168.000000","155.000000","151.000000","205.000000","179.000000","184.000000","160.000000","6000.000000","0.000000","749902.000000",,,,, +"3936.000000","55.995000","3936.000000","55.995000","3936.000000","55.995000","1110.000000","0.000000",,,,,,,,,,,,"631.000000","3126.500000","5621.000000","30.000000","3126.500000","3126.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070924.000000","0.000000","2092704.000000","129468.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1572864.000000","2070924.000000","2092704.000000","44520.000000","29528.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","187.000000","176.000000","180.000000","208.000000","199.000000","202.000000","0.000000","0.000000","0.000000","167.000000","152.000000","151.000000","205.000000","175.000000","184.000000","160.000000","6000.000000","0.000000","749922.000000",,,,, +"4106.000000","56.795000","4106.000000","56.795000","4106.000000","56.795000","731.000000","0.000000",,,,,,,,,,,,"6712.000000","10478.500000","14244.000000","22.000000","10478.500000","10478.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2070904.000000","0.000000","2092704.000000","129468.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","1572864.000000","2070904.000000","2092704.000000","44520.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10900.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","187.000000","171.000000","180.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","167.000000","149.000000","153.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749942.000000",,,,, +"3257.000000","52.805000","3257.000000","52.805000","3257.000000","52.805000","599.000000","0.000000",,,,,,,,,,,,"12746.000000","8306.500000","3866.000000","14.000000","8306.500000","8306.500000",,,,,,,,,,,"1426060.000000","1572864.000000","0.000000","0.000000","2071040.000000","0.000000","2092704.000000","129468.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","1572864.000000","2071040.000000","2092704.000000","44524.000000","29412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10764.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","185.000000","150.000000","176.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","166.000000","139.000000","151.000000","205.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749962.000000",,,,, +"2970.000000","52.955000","2970.000000","52.955000","2970.000000","52.955000","819.000000","0.000000",,,,,,,,,,,,"12855.000000","10446.500000","8037.000000","17.000000","10446.500000","10446.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2071000.000000","0.000000","2092704.000000","129468.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","1635776.000000","2071000.000000","2092704.000000","44524.000000","29456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10800.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","184.000000","142.000000","174.000000","208.000000","202.000000","202.000000","0.000000","0.000000","0.000000","165.000000","133.000000","151.000000","203.000000","187.000000","187.000000","160.000000","6000.000000","0.000000","749982.000000",,,,, +"3689.000000","56.330000","3689.000000","56.330000","3689.000000","56.330000","875.000000","0.000000",,,,,,,,,,,,"10992.000000","9034.000000","7076.000000","17.000000","9034.000000","9034.000000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","183.000000","134.000000","171.000000","206.000000","177.000000","202.000000","0.000000","0.000000","0.000000","163.000000","122.000000","151.000000","201.000000","162.000000","187.000000","160.000000","6000.000000","0.000000","750002.000000",,,,, +"4569.000000","60.465000","4569.000000","60.465000","4569.000000","60.465000","1130.000000","0.000000",,,,,,,,,,,,"44.000000","7173.500000","14302.000000","30.000000","7173.500000","7173.500000",,,,,,,,,,,"1530920.000000","1635776.000000","0.000000","0.000000","2070880.000000","0.000000","2092704.000000","129468.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1635776.000000","2070880.000000","2092704.000000","44524.000000","29608.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","183.000000","156.000000","172.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","163.000000","140.000000","153.000000","201.000000","173.000000","187.000000","160.000000","6000.000000","0.000000","750022.000000",,,,, +"4555.000000","61.900000","4555.000000","61.900000","4555.000000","61.900000","1350.000000","0.000000",,,,,,,,,,,,"493.000000","2970.500000","5444.000000","20.000000","2970.500000","2970.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070700.000000","0.000000","2092704.000000","129468.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1698692.000000","2070700.000000","2092704.000000","44524.000000","29672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"0.000000","4.000000",,,,,,,,,,,"0.000000","182.000000","171.000000","173.000000","206.000000","196.000000","201.000000","0.000000","0.000000","0.000000","162.000000","154.000000","156.000000","201.000000","174.000000","187.000000","160.000000","6000.000000","0.000000","750042.000000",,,,, +"4588.000000","62.055000","4588.000000","62.055000","4588.000000","62.055000","1390.000000","0.000000",,,,,,,,,,,,"545.000000","7811.000000","15075.000000","23.000000","7811.000000","7811.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2070744.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","1698692.000000","2070744.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10960.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","173.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","171.000000","156.000000","201.000000","184.000000","184.000000","160.000000","6000.000000","0.000000","750062.000000",,,,, +"4749.000000","62.815000","4749.000000","62.815000","4749.000000","62.815000","1013.000000","0.000000",,,,,,,,,,,,"486.000000","14987.500000","29488.000000","36.000000","14987.500000","14987.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071120.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2071120.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","172.000000","206.000000","198.000000","199.000000","0.000000","0.000000","0.000000","162.000000","173.000000","155.000000","200.000000","184.000000","182.000000","160.000000","6000.000000","0.000000","750082.000000",,,,, +"4548.000000","61.870000","4548.000000","61.870000","4548.000000","61.870000","949.000000","0.000000",,,,,,,,,,,,"2061.000000","8930.000000","15797.000000","37.000000","8930.000000","8930.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070816.000000","0.000000","2092704.000000","129468.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1698692.000000","2070816.000000","2092704.000000","44524.000000","29620.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","182.000000","187.000000","171.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","161.000000","176.000000","156.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750102.000000",,,,, +"3011.000000","54.645000","3011.000000","54.645000","3011.000000","54.645000","1760.000000","0.000000",,,,,,,,,,,,"20331.000000","10637.500000","942.000000","5.000000","10637.500000","10637.500000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2070796.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","1698692.000000","2070796.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","180.000000","168.000000","167.000000","206.000000","209.000000","199.000000","0.000000","0.000000","0.000000","160.000000","155.000000","153.000000","200.000000","207.000000","184.000000","160.000000","6000.000000","0.000000","750122.000000",,,,, +"3525.000000","57.060000","3525.000000","57.060000","3525.000000","57.060000","1146.000000","0.000000",,,,,,,,,,,,"10774.000000","8118.000000","5461.000000","17.000000","8118.000000","8118.000000",,,,,,,,,,,"1635776.000000","1698692.000000","0.000000","0.000000","2071236.000000","0.000000","2092704.000000","129468.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","1698692.000000","2071236.000000","2092704.000000","44524.000000","29492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10832.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","179.000000","151.000000","164.000000","206.000000","209.000000","196.000000","0.000000","0.000000","0.000000","159.000000","141.000000","149.000000","200.000000","207.000000","181.000000","160.000000","6000.000000","0.000000","750142.000000",,,,, +"3642.000000","55.610000","3642.000000","55.610000","3642.000000","55.610000","1129.000000","0.000000",,,,,,,,,,,,"10114.000000","8836.500000","7559.000000","23.000000","8836.500000","8836.500000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071088.000000","0.000000","2092704.000000","129468.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","1614804.000000","2071088.000000","2092704.000000","44524.000000","29640.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","178.000000","138.000000","163.000000","206.000000","173.000000","196.000000","0.000000","0.000000","0.000000","158.000000","126.000000","148.000000","199.000000","151.000000","181.000000","160.000000","6000.000000","0.000000","750162.000000",,,,, +"3089.000000","53.010000","3089.000000","53.010000","3089.000000","53.010000","822.000000","0.000000",,,,,,,,,,,,"15789.000000","8326.000000","862.000000","3.000000","8326.000000","8326.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2070824.000000","0.000000","2092704.000000","129468.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","1614804.000000","2070824.000000","2092704.000000","44524.000000","29624.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10948.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","176.000000","139.000000","160.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","156.000000","128.000000","145.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750182.000000",,,,, +"3215.000000","53.605000","3215.000000","53.605000","3215.000000","53.605000","1415.000000","0.000000",,,,,,,,,,,,"17195.000000","8894.000000","592.000000","3.000000","8894.000000","8894.000000",,,,,,,,,,,"1614804.000000","1614804.000000","0.000000","0.000000","2071004.000000","0.000000","2092704.000000","129468.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","1614804.000000","2071004.000000","2092704.000000","44524.000000","29616.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10944.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","175.000000","141.000000","157.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","155.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750202.000000",,,,, +"3409.000000","54.515000","3409.000000","54.515000","3409.000000","54.515000","1688.000000","0.000000",,,,,,,,,,,,"16558.000000","12636.500000","8715.000000","20.000000","12636.500000","12636.500000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070992.000000","0.000000","2092704.000000","129468.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","1614804.000000","2070992.000000","2092704.000000","44524.000000","29628.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","140.000000","155.000000","205.000000","184.000000","196.000000","0.000000","0.000000","0.000000","154.000000","125.000000","143.000000","195.000000","165.000000","181.000000","160.000000","6000.000000","0.000000","750222.000000",,,,, +"4152.000000","58.005000","4152.000000","58.005000","4152.000000","58.005000","900.000000","0.000000",,,,,,,,,,,,"9129.000000","7963.000000","6797.000000","11.000000","7963.000000","7963.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","1614804.000000","2070792.000000","2092704.000000","44532.000000","29720.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11040.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","146.000000","155.000000","204.000000","173.000000","194.000000","0.000000","0.000000","0.000000","153.000000","133.000000","142.000000","194.000000","166.000000","179.000000","160.000000","6000.000000","0.000000","750242.000000",,,,, +"5214.000000","63.000000","5214.000000","63.000000","5214.000000","63.000000","1238.000000","0.000000",,,,,,,,,,,,"14.000000","440.000000","865.000000","6.000000","440.000000","440.000000",,,,,,,,,,,"1551892.000000","1614804.000000","0.000000","0.000000","2070748.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","1614804.000000","2070748.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11080.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","165.000000","160.000000","204.000000","211.000000","196.000000","0.000000","0.000000","0.000000","153.000000","155.000000","147.000000","194.000000","209.000000","182.000000","160.000000","6000.000000","0.000000","750262.000000",,,,, +"5252.000000","66.675000","5252.000000","66.675000","5252.000000","66.675000","1677.000000","0.000000",,,,,,,,,,,,"5.000000","335.500000","666.000000","19.000000","335.500000","335.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070828.000000","0.000000","2092704.000000","129468.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","1761604.000000","2070828.000000","2092704.000000","44532.000000","29788.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11100.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","185.000000","164.000000","204.000000","212.000000","205.000000","0.000000","0.000000","0.000000","154.000000","178.000000","152.000000","196.000000","210.000000","198.000000","160.000000","6000.000000","0.000000","750282.000000",,,,, +"5041.000000","65.685000","5041.000000","65.685000","5041.000000","65.685000","1004.000000","0.000000",,,,,,,,,,,,"17.000000","427.500000","838.000000","13.000000","427.500000","427.500000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070792.000000","0.000000","2092704.000000","129468.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","1761604.000000","2070792.000000","2092704.000000","44532.000000","29824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","202.000000","168.000000","204.000000","212.000000","206.000000","0.000000","0.000000","0.000000","154.000000","194.000000","156.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750302.000000",,,,, +"4679.000000","63.985000","4679.000000","63.985000","4679.000000","63.985000","1045.000000","0.000000",,,,,,,,,,,,"8.000000","561.000000","1113.000000","23.000000","561.000000","561.000000",,,,,,,,,,,"1719664.000000","1761604.000000","0.000000","0.000000","2070712.000000","0.000000","2092704.000000","129468.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1761604.000000","2070712.000000","2092704.000000","44532.000000","29856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","173.000000","199.000000","168.000000","204.000000","212.000000","207.000000","0.000000","0.000000","0.000000","154.000000","191.000000","157.000000","196.000000","210.000000","206.000000","160.000000","6000.000000","0.000000","750322.000000",,,,, +"5233.000000","63.585000","5233.000000","63.585000","5233.000000","63.585000","929.000000","0.000000",,,,,,,,,,,,"27.000000","565.500000","1103.000000","15.000000","565.500000","565.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070656.000000","0.000000","2092704.000000","129468.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","1635776.000000","2070656.000000","2092704.000000","44532.000000","29912.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11212.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","174.000000","197.000000","169.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","154.000000","186.000000","158.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750342.000000",,,,, +"1309.000000","45.145000","1309.000000","45.145000","1309.000000","45.145000","615.000000","0.000000",,,,,,,,,,,,"19203.000000","9812.000000","420.000000","3.000000","9812.000000","9812.000000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070732.000000","0.000000","2092704.000000","129468.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","1635776.000000","2070732.000000","2092704.000000","44532.000000","29896.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","171.000000","151.000000","161.000000","205.000000","214.000000","207.000000","0.000000","0.000000","0.000000","151.000000","142.000000","150.000000","197.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750362.000000",,,,, +"1164.000000","44.465000","1164.000000","44.465000","1164.000000","44.465000","628.000000","0.000000",,,,,,,,,,,,"14997.000000","8677.500000","2358.000000","5.000000","8677.500000","8677.500000",,,,,,,,,,,"1614804.000000","1635776.000000","0.000000","0.000000","2070600.000000","0.000000","2092704.000000","129468.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","1635776.000000","2070600.000000","2092704.000000","44532.000000","29772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","168.000000","108.000000","153.000000","204.000000","214.000000","207.000000","0.000000","0.000000","0.000000","148.000000","101.000000","143.000000","196.000000","214.000000","207.000000","160.000000","6000.000000","0.000000","750382.000000",,,,, +"1236.000000","46.805000","1236.000000","46.805000","1236.000000","46.805000","1178.000000","0.000000",,,,,,,,,,,,"17245.000000","13168.500000","9091.000000","17.000000","13168.500000","13168.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070608.000000","0.000000","2092704.000000","129468.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","1719664.000000","2070608.000000","2092704.000000","44532.000000","29776.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","165.000000","62.000000","144.000000","204.000000","201.000000","207.000000","0.000000","0.000000","0.000000","146.000000","58.000000","135.000000","196.000000","198.000000","206.000000","160.000000","6000.000000","0.000000","750402.000000",,,,, +"933.000000","45.380000","933.000000","45.380000","933.000000","45.380000","641.000000","0.000000",,,,,,,,,,,,"7575.000000","6296.500000","4979.000000","10.000000","6296.500000","6296.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070876.000000","0.000000","2092704.000000","129468.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","1719664.000000","2070876.000000","2092704.000000","44532.000000","29504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10904.000000","0.000000","0.000000",,,,,,"0.000000","38.000000",,,,,,,,,,,"0.000000","162.000000","46.000000","137.000000","204.000000","68.000000","207.000000","0.000000","0.000000","0.000000","143.000000","42.000000","128.000000","196.000000","67.000000","206.000000","160.000000","6000.000000","0.000000","750422.000000",,,,, +"591.000000","43.770000","591.000000","43.770000","591.000000","43.770000","599.000000","0.000000",,,,,,,,,,,,"23649.000000","22438.500000","21225.000000","13.000000","22438.500000","22438.500000",,,,,,,,,,,"1635776.000000","1719664.000000","0.000000","0.000000","2070980.000000","0.000000","2092704.000000","129468.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1719664.000000","2070980.000000","2092704.000000","44536.000000","29548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","159.000000","39.000000","130.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","140.000000","36.000000","122.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750442.000000",,,,, +"588.000000","43.255000","588.000000","43.255000","588.000000","43.255000","688.000000","0.000000",,,,,,,,,,,,"19488.000000","20747.000000","22006.000000","16.000000","20747.000000","20747.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071128.000000","0.000000","2092704.000000","129468.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","1698692.000000","2071128.000000","2092704.000000","44536.000000","29484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","155.000000","32.000000","123.000000","204.000000","53.000000","207.000000","0.000000","0.000000","0.000000","138.000000","29.000000","115.000000","195.000000","52.000000","206.000000","160.000000","6000.000000","0.000000","750462.000000",,,,, +"648.000000","43.540000","648.000000","43.540000","648.000000","43.540000","706.000000","0.000000",,,,,,,,,,,,"6846.000000","7643.000000","8411.000000","18.000000","7643.000000","7643.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071344.000000","0.000000","2092704.000000","129468.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","1698692.000000","2071344.000000","2092704.000000","44536.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10580.000000","0.000000","0.000000",,,,,,"0.000000","28.000000",,,,,,,,,,,"0.000000","151.000000","24.000000","114.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","134.000000","23.000000","107.000000","191.000000","30.000000","206.000000","160.000000","6000.000000","0.000000","750482.000000",,,,, +"665.000000","43.620000","665.000000","43.620000","665.000000","43.620000","1234.000000","0.000000",,,,,,,,,,,,"467.000000","440.000000","367.000000","2.000000","440.000000","440.000000",,,,,,,,,,,"1614804.000000","1698692.000000","0.000000","0.000000","2071224.000000","0.000000","2092704.000000","129468.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","1698692.000000","2071224.000000","2092704.000000","44544.000000","29288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10596.000000","0.000000","0.000000",,,,,,"32.000000","14.000000",,,,,,,,,,,"0.000000","148.000000","24.000000","107.000000","202.000000","32.000000","207.000000","0.000000","0.000000","0.000000","132.000000","23.000000","101.000000","191.000000","31.000000","206.000000","160.000000","6000.000000","0.000000","750502.000000",,,,, +"1108.000000","45.700000","1108.000000","45.700000","1108.000000","45.700000","589.000000","0.000000",,,,,,,,,,,,"94.000000","6456.000000","10816.000000","39.000000","6456.000000","6456.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071368.000000","0.000000","2092704.000000","129468.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","1698692.000000","2071368.000000","2092704.000000","44544.000000","29316.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10576.000000","0.000000","0.000000",,,,,,"1982.000000","18.000000",,,,,,,,,,,"0.000000","146.000000","34.000000","102.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","130.000000","31.000000","96.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750522.000000",,,,, +"802.000000","44.265000","802.000000","44.265000","802.000000","44.265000","355.000000","0.000000",,,,,,,,,,,,"41.000000","319.000000","594.000000","3.000000","319.000000","319.000000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071320.000000","0.000000","2092704.000000","129468.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","1698692.000000","2071320.000000","2092704.000000","44544.000000","29384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10600.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","142.000000","34.000000","91.000000","202.000000","77.000000","207.000000","0.000000","0.000000","0.000000","127.000000","32.000000","87.000000","191.000000","71.000000","206.000000","160.000000","6000.000000","0.000000","750542.000000",,,,, +"564.000000","43.145000","564.000000","43.145000","564.000000","43.145000","348.000000","0.000000",,,,,,,,,,,,"18.000000","146.500000","275.000000","2.000000","146.500000","146.500000",,,,,,,,,,,"1656748.000000","1698692.000000","0.000000","0.000000","2071080.000000","0.000000","2092704.000000","129468.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","1698692.000000","2071080.000000","2092704.000000","44544.000000","29816.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","139.000000","34.000000","81.000000","202.000000","77.000000","206.000000","0.000000","0.000000","0.000000","125.000000","32.000000","76.000000","191.000000","71.000000","198.000000","160.000000","6000.000000","0.000000","750562.000000",,,,, +"429.000000","43.010000","429.000000","43.010000","429.000000","43.010000","433.000000","0.000000",,,,,,,,,,,,"5.000000","98.000000","190.000000","2.000000","98.000000","98.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2071152.000000","0.000000","2092704.000000","129468.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","1719664.000000","2071152.000000","2092704.000000","44544.000000","29984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","136.000000","22.000000","69.000000","202.000000","49.000000","201.000000","0.000000","0.000000","0.000000","123.000000","22.000000","65.000000","191.000000","49.000000","197.000000","160.000000","6000.000000","0.000000","750582.000000",,,,, +"238.000000","42.110000","238.000000","42.110000","238.000000","42.110000","329.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","1.000000","37.000000","37.000000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070976.000000","0.000000","2092704.000000","129468.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","1719664.000000","2070976.000000","2092704.000000","44544.000000","30280.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10676.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","131.000000","15.000000","54.000000","201.000000","32.000000","190.000000","0.000000","0.000000","0.000000","119.000000","15.000000","51.000000","191.000000","32.000000","173.000000","160.000000","6000.000000","0.000000","750602.000000",,,,, +"223.000000","42.045000","223.000000","42.045000","223.000000","42.045000","458.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","3.000000","23.500000","23.500000",,,,,,,,,,,"1614804.000000","1719664.000000","0.000000","0.000000","2070412.000000","0.000000","2092704.000000","129468.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","1719664.000000","2070412.000000","2092704.000000","44544.000000","31120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","128.000000","11.000000","43.000000","201.000000","26.000000","84.000000","0.000000","0.000000","0.000000","117.000000","11.000000","40.000000","191.000000","25.000000","82.000000","160.000000","6000.000000","0.000000","750622.000000",,,,, +"284.000000","43.330000","284.000000","43.330000","284.000000","43.330000","436.000000","0.000000",,,,,,,,,,,,"0.000000","53.000000","106.000000","3.000000","53.000000","53.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2070144.000000","0.000000","2092704.000000","129468.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","1761604.000000","2070144.000000","2092704.000000","44544.000000","31508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","125.000000","9.000000","32.000000","201.000000","13.000000","53.000000","0.000000","0.000000","0.000000","115.000000","9.000000","30.000000","191.000000","13.000000","52.000000","160.000000","6000.000000","0.000000","750642.000000",,,,, +"222.000000","43.040000","222.000000","43.040000","222.000000","43.040000","369.000000","0.000000",,,,,,,,,,,,"0.000000","28.000000","56.000000","5.000000","28.000000","28.000000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069736.000000","0.000000","2092704.000000","129468.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","1761604.000000","2069736.000000","2092704.000000","44544.000000","31992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10880.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","120.000000","9.000000","26.000000","201.000000","13.000000","51.000000","0.000000","0.000000","0.000000","110.000000","9.000000","24.000000","188.000000","13.000000","49.000000","160.000000","6000.000000","0.000000","750662.000000",,,,, +"277.000000","43.295000","277.000000","43.295000","277.000000","43.295000","746.000000","0.000000",,,,,,,,,,,,"0.000000","53.500000","107.000000","8.000000","53.500000","53.500000",,,,,,,,,,,"1572864.000000","1761604.000000","0.000000","0.000000","2069708.000000","0.000000","2092704.000000","129468.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","1761604.000000","2069708.000000","2092704.000000","44544.000000","32248.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","116.000000","10.000000","24.000000","199.000000","13.000000","49.000000","0.000000","0.000000","0.000000","107.000000","9.000000","22.000000","187.000000","13.000000","46.000000","160.000000","6000.000000","0.000000","750682.000000",,,,, +"595.000000","39.790000","595.000000","39.790000","595.000000","39.790000","1514.000000","0.000000",,,,,,,,,,,,"10.000000","205.000000","394.000000","1.000000","205.000000","205.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069492.000000","0.000000","2092704.000000","129468.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","1551892.000000","2069492.000000","2092704.000000","44544.000000","32612.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10928.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","113.000000","14.000000","22.000000","199.000000","53.000000","49.000000","0.000000","0.000000","0.000000","104.000000","13.000000","21.000000","187.000000","51.000000","40.000000","160.000000","6000.000000","0.000000","750702.000000",,,,, +"969.000000","41.550000","969.000000","41.550000","969.000000","41.550000","1975.000000","0.000000",,,,,,,,,,,,"72.000000","500.000000","918.000000","3.000000","500.000000","500.000000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2069996.000000","0.000000","2092704.000000","129468.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","1551892.000000","2069996.000000","2092704.000000","44544.000000","31384.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10932.000000","0.000000","0.000000",,,,,,"5.000000","5.000000",,,,,,,,,,,"0.000000","109.000000","25.000000","21.000000","199.000000","67.000000","49.000000","0.000000","0.000000","0.000000","100.000000","22.000000","20.000000","187.000000","58.000000","40.000000","160.000000","6000.000000","0.000000","750722.000000",,,,, +"1237.000000","42.805000","1237.000000","42.805000","1237.000000","42.805000","2987.000000","0.000000",,,,,,,,,,,,"3.000000","4383.500000","8711.000000","26.000000","4383.500000","4383.500000",,,,,,,,,,,"1384120.000000","1551892.000000","0.000000","0.000000","2071264.000000","0.000000","2092704.000000","129468.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","1551892.000000","2071264.000000","2092704.000000","44544.000000","30680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11004.000000","0.000000","0.000000",,,,,,"36.000000","16.000000",,,,,,,,,,,"0.000000","106.000000","38.000000","23.000000","198.000000","67.000000","53.000000","0.000000","0.000000","0.000000","97.000000","32.000000","21.000000","182.000000","63.000000","49.000000","160.000000","6000.000000","0.000000","750742.000000",,,,, +"672.000000","33.650000","672.000000","33.650000","672.000000","33.650000","1739.000000","0.000000",,,,,,,,,,,,"2.000000","350.500000","699.000000","7.000000","350.500000","350.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2071256.000000","0.000000","2092704.000000","129468.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","1279260.000000","2071256.000000","2092704.000000","44544.000000","31004.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11016.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","103.000000","41.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","95.000000","35.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750762.000000",,,,, +"519.000000","32.935000","519.000000","32.935000","519.000000","32.935000","1160.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","220.000000","3.000000","111.000000","111.000000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070920.000000","0.000000","2092704.000000","129468.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","1279260.000000","2070920.000000","2092704.000000","44544.000000","31604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11060.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","99.000000","35.000000","24.000000","198.000000","67.000000","61.000000","0.000000","0.000000","0.000000","91.000000","31.000000","22.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750782.000000",,,,, +"600.000000","33.315000","600.000000","33.315000","600.000000","33.315000","1210.000000","0.000000",,,,,,,,,,,,"0.000000","135.500000","271.000000","5.000000","135.500000","135.500000",,,,,,,,,,,"1132460.000000","1279260.000000","0.000000","0.000000","2070648.000000","0.000000","2092704.000000","129468.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1279260.000000","2070648.000000","2092704.000000","44544.000000","32100.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","96.000000","23.000000","23.000000","198.000000","65.000000","61.000000","0.000000","0.000000","0.000000","89.000000","22.000000","21.000000","182.000000","63.000000","51.000000","160.000000","6000.000000","0.000000","750802.000000",,,,, +"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","884.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2070216.000000","0.000000","2092704.000000","129468.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","1111488.000000","2070216.000000","2092704.000000","44544.000000","32864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11160.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","93.000000","18.000000","21.000000","198.000000","36.000000","53.000000","0.000000","0.000000","0.000000","86.000000","17.000000","19.000000","182.000000","36.000000","49.000000","160.000000","6000.000000","0.000000","750822.000000",,,,, +"261.000000","27.725000","261.000000","27.725000","261.000000","27.725000","598.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","4.000000","61.000000","61.000000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069852.000000","0.000000","2092704.000000","129468.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","1111488.000000","2069852.000000","2092704.000000","44544.000000","33524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","89.000000","14.000000","20.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","82.000000","13.000000","18.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750842.000000",,,,, +"240.000000","27.620000","240.000000","27.620000","240.000000","27.620000","548.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","2.000000","24.500000","24.500000",,,,,,,,,,,"985660.000000","1111488.000000","0.000000","0.000000","2069396.000000","0.000000","2092704.000000","129468.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","1111488.000000","2069396.000000","2092704.000000","44544.000000","34332.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","86.000000","11.000000","19.000000","196.000000","31.000000","53.000000","0.000000","0.000000","0.000000","80.000000","11.000000","17.000000","181.000000","30.000000","36.000000","160.000000","6000.000000","0.000000","750862.000000",,,,, +"259.000000","24.210000","259.000000","24.210000","259.000000","24.210000","524.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","2.000000","42.500000","42.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068572.000000","0.000000","2092704.000000","129468.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","964688.000000","2068572.000000","2092704.000000","44544.000000","35144.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11356.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","84.000000","9.000000","18.000000","196.000000","13.000000","53.000000","0.000000","0.000000","0.000000","78.000000","9.000000","17.000000","181.000000","13.000000","36.000000","160.000000","6000.000000","0.000000","750882.000000",,,,, +"207.000000","23.965000","207.000000","23.965000","207.000000","23.965000","587.000000","0.000000",,,,,,,,,,,,"0.000000","25.500000","51.000000","2.000000","25.500000","25.500000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","35656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","80.000000","9.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","75.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750902.000000",,,,, +"215.000000","24.005000","215.000000","24.005000","215.000000","24.005000","730.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","40.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"859832.000000","964688.000000","0.000000","0.000000","2068276.000000","0.000000","2092704.000000","129468.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","964688.000000","2068276.000000","2092704.000000","44544.000000","36708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11448.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","77.000000","8.000000","18.000000","196.000000","12.000000","53.000000","0.000000","0.000000","0.000000","71.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750922.000000",,,,, +"248.000000","22.160000","248.000000","22.160000","248.000000","22.160000","859.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","1.000000","46.000000","46.000000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067840.000000","0.000000","2092704.000000","129468.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","880800.000000","2067840.000000","2092704.000000","44544.000000","37496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","73.000000","8.000000","18.000000","194.000000","13.000000","53.000000","0.000000","0.000000","0.000000","68.000000","8.000000","17.000000","181.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750942.000000",,,,, +"232.000000","22.085000","232.000000","22.085000","232.000000","22.085000","530.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","1.000000","12.500000","12.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2067284.000000","0.000000","2092704.000000","129468.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","880800.000000","2067284.000000","2092704.000000","44544.000000","38340.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11584.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","68.000000","9.000000","18.000000","192.000000","13.000000","53.000000","0.000000","0.000000","0.000000","64.000000","8.000000","16.000000","179.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750962.000000",,,,, +"225.000000","22.050000","225.000000","22.050000","225.000000","22.050000","1024.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","2.000000","29.500000","29.500000",,,,,,,,,,,"754972.000000","880800.000000","0.000000","0.000000","2066820.000000","0.000000","2092704.000000","129468.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","880800.000000","2066820.000000","2092704.000000","44544.000000","39408.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11640.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","65.000000","9.000000","18.000000","190.000000","13.000000","53.000000","0.000000","0.000000","0.000000","60.000000","8.000000","16.000000","173.000000","12.000000","36.000000","160.000000","6000.000000","0.000000","750982.000000",,,,, +"361.000000","19.690000","361.000000","19.690000","361.000000","19.690000","716.000000","0.000000",,,,,,,,,,,,"0.000000","152.000000","302.000000","3.000000","152.000000","152.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2066352.000000","0.000000","2092704.000000","129468.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","754972.000000","2066352.000000","2092704.000000","44544.000000","40120.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11580.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","61.000000","10.000000","17.000000","187.000000","17.000000","40.000000","0.000000","0.000000","0.000000","57.000000","9.000000","16.000000","168.000000","16.000000","36.000000","160.000000","6000.000000","0.000000","751002.000000",,,,, +"653.000000","21.065000","653.000000","21.065000","653.000000","21.065000","1031.000000","0.000000",,,,,,,,,,,,"0.000000","168.500000","332.000000","1.000000","168.500000","168.500000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065944.000000","0.000000","2092704.000000","129468.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","754972.000000","2065944.000000","2092704.000000","44548.000000","40876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11616.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","58.000000","16.000000","16.000000","187.000000","50.000000","40.000000","0.000000","0.000000","0.000000","54.000000","14.000000","15.000000","168.000000","37.000000","36.000000","160.000000","6000.000000","0.000000","751022.000000",,,,, +"492.000000","20.305000","492.000000","20.305000","492.000000","20.305000","758.000000","0.000000",,,,,,,,,,,,"2.000000","156.000000","308.000000","4.000000","156.000000","156.000000",,,,,,,,,,,"608172.000000","754972.000000","0.000000","0.000000","2065588.000000","0.000000","2092704.000000","129468.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","754972.000000","2065588.000000","2092704.000000","44548.000000","40808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","56.000000","21.000000","14.000000","187.000000","50.000000","34.000000","0.000000","0.000000","0.000000","52.000000","18.000000","14.000000","168.000000","41.000000","34.000000","160.000000","6000.000000","0.000000","751042.000000",,,,, +"641.000000","18.005000","641.000000","18.005000","641.000000","18.005000","837.000000","0.000000",,,,,,,,,,,,"13.000000","135.500000","258.000000","8.000000","135.500000","135.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2065076.000000","0.000000","2092704.000000","129468.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","629144.000000","2065076.000000","2092704.000000","44548.000000","41456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11688.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","54.000000","22.000000","13.000000","187.000000","50.000000","31.000000","0.000000","0.000000","0.000000","50.000000","20.000000","13.000000","168.000000","41.000000","30.000000","160.000000","6000.000000","0.000000","751062.000000",,,,, +"396.000000","16.855000","396.000000","16.855000","396.000000","16.855000","745.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","4.000000","76.500000","76.500000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064648.000000","0.000000","2092704.000000","129468.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","629144.000000","2064648.000000","2092704.000000","44548.000000","42236.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11704.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","50.000000","20.000000","14.000000","187.000000","42.000000","29.000000","0.000000","0.000000","0.000000","47.000000","19.000000","13.000000","168.000000","41.000000","29.000000","160.000000","6000.000000","0.000000","751082.000000",,,,, +"280.000000","16.310000","280.000000","16.310000","280.000000","16.310000","723.000000","0.000000",,,,,,,,,,,,"0.000000","46.000000","92.000000","2.000000","46.000000","46.000000",,,,,,,,,,,"482344.000000","629144.000000","0.000000","0.000000","2064008.000000","0.000000","2092704.000000","129468.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","629144.000000","2064008.000000","2092704.000000","44548.000000","43412.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","48.000000","17.000000","13.000000","187.000000","35.000000","29.000000","0.000000","0.000000","0.000000","45.000000","16.000000","12.000000","168.000000","35.000000","29.000000","160.000000","6000.000000","0.000000","751102.000000",,,,, +"224.000000","15.045000","224.000000","15.045000","224.000000","15.045000","570.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","3.000000","35.500000","35.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2064004.000000","0.000000","2092704.000000","129468.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","587200.000000","2064004.000000","2092704.000000","44548.000000","44300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11824.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","45.000000","13.000000","13.000000","187.000000","29.000000","29.000000","0.000000","0.000000","0.000000","42.000000","13.000000","12.000000","168.000000","29.000000","28.000000","160.000000","6000.000000","0.000000","751122.000000",,,,, +"211.000000","14.990000","211.000000","14.990000","211.000000","14.990000","622.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","2.000000","19.500000","19.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2063532.000000","0.000000","2092704.000000","129468.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","587200.000000","2063532.000000","2092704.000000","44548.000000","45192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11844.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","41.000000","9.000000","12.000000","187.000000","16.000000","29.000000","0.000000","0.000000","0.000000","39.000000","8.000000","12.000000","168.000000","15.000000","28.000000","160.000000","6000.000000","0.000000","751142.000000",,,,, +"226.000000","15.055000","226.000000","15.055000","226.000000","15.055000","462.000000","0.000000",,,,,,,,,,,,"0.000000","27.500000","55.000000","1.000000","27.500000","27.500000",,,,,,,,,,,"461372.000000","587200.000000","0.000000","0.000000","2062560.000000","0.000000","2092704.000000","129468.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","587200.000000","2062560.000000","2092704.000000","44548.000000","46496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11912.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","12.000000","84.000000","9.000000","29.000000","0.000000","0.000000","0.000000","35.000000","8.000000","12.000000","82.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751162.000000",,,,, +"224.000000","14.045000","224.000000","14.045000","224.000000","14.045000","595.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","0.000000","21.000000","21.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061992.000000","0.000000","2092704.000000","129468.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","545256.000000","2061992.000000","2092704.000000","44548.000000","47512.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11980.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","33.000000","8.000000","12.000000","67.000000","9.000000","29.000000","0.000000","0.000000","0.000000","31.000000","8.000000","12.000000","63.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751182.000000",,,,, +"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","475.000000","0.000000",,,,,,,,,,,,"0.000000","12.000000","24.000000","2.000000","12.000000","12.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061744.000000","0.000000","2092704.000000","129468.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","545256.000000","2061744.000000","2092704.000000","44548.000000","48540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12064.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","8.000000","12.000000","53.000000","9.000000","29.000000","0.000000","0.000000","0.000000","26.000000","8.000000","12.000000","51.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751202.000000",,,,, +"213.000000","13.995000","213.000000","13.995000","213.000000","13.995000","636.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","4.000000","22.500000","22.500000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2061344.000000","0.000000","2092704.000000","129468.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","545256.000000","2061344.000000","2092704.000000","44548.000000","49728.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","12.000000","51.000000","9.000000","29.000000","0.000000","0.000000","0.000000","23.000000","8.000000","12.000000","46.000000","8.000000","28.000000","160.000000","6000.000000","0.000000","751222.000000",,,,, +"232.000000","12.085000","232.000000","12.085000","232.000000","12.085000","496.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","2.000000","21.000000","21.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2060732.000000","0.000000","2092704.000000","129468.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","461372.000000","2060732.000000","2092704.000000","44548.000000","50840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12204.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","8.000000","12.000000","49.000000","9.000000","29.000000","0.000000","0.000000","0.000000","19.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751242.000000",,,,, +"234.000000","12.095000","234.000000","12.095000","234.000000","12.095000","432.000000","0.000000",,,,,,,,,,,,"0.000000","15.000000","30.000000","1.000000","15.000000","15.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2059256.000000","0.000000","2092704.000000","129468.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2059256.000000","2092704.000000","44548.000000","51856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","8.000000","12.000000","45.000000","9.000000","29.000000","0.000000","0.000000","0.000000","17.000000","8.000000","12.000000","38.000000","9.000000","28.000000","160.000000","6000.000000","0.000000","751262.000000",,,,, +"320.000000","12.500000","320.000000","12.500000","320.000000","12.500000","784.000000","0.000000",,,,,,,,,,,,"7.000000","105.500000","203.000000","2.000000","105.500000","105.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2058700.000000","0.000000","2092704.000000","129468.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","461372.000000","2058700.000000","2092704.000000","44548.000000","52704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12244.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","9.000000","12.000000","44.000000","17.000000","29.000000","0.000000","0.000000","0.000000","17.000000","9.000000","12.000000","37.000000","16.000000","28.000000","160.000000","6000.000000","0.000000","751282.000000",,,,, +"528.000000","12.475000","528.000000","12.475000","528.000000","12.475000","1548.000000","0.000000",,,,,,,,,,,,"0.000000","169.000000","333.000000","3.000000","169.000000","169.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058192.000000","0.000000","2092704.000000","129468.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","419428.000000","2058192.000000","2092704.000000","44548.000000","53604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12288.000000","0.000000","0.000000",,,,,,"2.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","14.000000","13.000000","40.000000","33.000000","29.000000","0.000000","0.000000","0.000000","16.000000","13.000000","12.000000","36.000000","32.000000","29.000000","160.000000","6000.000000","0.000000","751302.000000",,,,, +"1131.000000","15.310000","1131.000000","15.310000","1131.000000","15.310000","1405.000000","0.000000",,,,,,,,,,,,"5.000000","527.000000","1013.000000","4.000000","527.000000","527.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2058484.000000","0.000000","2092704.000000","129468.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","419428.000000","2058484.000000","2092704.000000","44548.000000","53848.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12348.000000","0.000000","0.000000",,,,,,"23.000000","13.000000",,,,,,,,,,,"0.000000","17.000000","26.000000","14.000000","38.000000","73.000000","35.000000","0.000000","0.000000","0.000000","16.000000","24.000000","13.000000","36.000000","63.000000","32.000000","160.000000","6000.000000","0.000000","751322.000000",,,,, +"942.000000","14.420000","942.000000","14.420000","942.000000","14.420000","1286.000000","0.000000",,,,,,,,,,,,"5.000000","2918.000000","4767.000000","56.000000","2918.000000","2918.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2060328.000000","0.000000","2092704.000000","129468.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","419428.000000","2060328.000000","2092704.000000","44548.000000","52016.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12444.000000","0.000000","0.000000",,,,,,"1046.000000","16.000000",,,,,,,,,,,"0.000000","18.000000","37.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","17.000000","33.000000","15.000000","37.000000","73.000000","35.000000","160.000000","6000.000000","0.000000","751342.000000",,,,, +"471.000000","12.210000","471.000000","12.210000","471.000000","12.210000","1366.000000","0.000000",,,,,,,,,,,,"5.000000","182.500000","358.000000","4.000000","182.500000","182.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060600.000000","0.000000","2092704.000000","129468.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","419428.000000","2060600.000000","2092704.000000","44548.000000","51380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12540.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","36.000000","16.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","31.000000","15.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751362.000000",,,,, +"262.000000","11.230000","262.000000","11.230000","262.000000","11.230000","578.000000","0.000000",,,,,,,,,,,,"0.000000","41.500000","83.000000","6.000000","41.500000","41.500000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060760.000000","0.000000","2092704.000000","129468.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","419428.000000","2060760.000000","2092704.000000","44548.000000","52292.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12628.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","24.000000","15.000000","40.000000","80.000000","35.000000","0.000000","0.000000","0.000000","16.000000","21.000000","14.000000","37.000000","73.000000","32.000000","160.000000","6000.000000","0.000000","751382.000000",,,,, +"224.000000","11.045000","224.000000","11.045000","224.000000","11.045000","870.000000","0.000000",,,,,,,,,,,,"0.000000","39.000000","78.000000","2.000000","39.000000","39.000000",,,,,,,,,,,"356512.000000","419428.000000","0.000000","0.000000","2060868.000000","0.000000","2092704.000000","129468.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","419428.000000","2060868.000000","2092704.000000","44548.000000","53304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12776.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","15.000000","40.000000","30.000000","35.000000","0.000000","0.000000","0.000000","16.000000","12.000000","14.000000","37.000000","29.000000","32.000000","160.000000","6000.000000","0.000000","751402.000000",,,,, +"254.000000","10.690000","254.000000","10.690000","254.000000","10.690000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","56.500000","113.000000","1.000000","56.500000","56.500000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2060280.000000","0.000000","2092704.000000","129468.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","398456.000000","2060280.000000","2092704.000000","44548.000000","54496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","10.000000","15.000000","36.000000","13.000000","35.000000","0.000000","0.000000","0.000000","15.000000","9.000000","14.000000","35.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751422.000000",,,,, +"216.000000","10.510000","216.000000","10.510000","216.000000","10.510000","636.000000","0.000000",,,,,,,,,,,,"0.000000","33.000000","66.000000","2.000000","33.000000","33.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059824.000000","0.000000","2092704.000000","129468.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","398456.000000","2059824.000000","2092704.000000","44548.000000","55672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12884.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751442.000000",,,,, +"222.000000","10.540000","222.000000","10.540000","222.000000","10.540000","747.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","7.000000","11.000000","11.000000",,,,,,,,,,,"356512.000000","398456.000000","0.000000","0.000000","2059988.000000","0.000000","2092704.000000","129468.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","398456.000000","2059988.000000","2092704.000000","44548.000000","56768.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12956.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","8.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","11.000000","32.000000","160.000000","6000.000000","0.000000","751462.000000",,,,, +"266.000000","13.750000","266.000000","13.750000","266.000000","13.750000","484.000000","0.000000",,,,,,,,,,,,"0.000000","65.500000","131.000000","4.000000","65.500000","65.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059428.000000","0.000000","2092704.000000","129468.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","524288.000000","2059428.000000","2092704.000000","44548.000000","57868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13068.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751482.000000",,,,, +"222.000000","13.545000","222.000000","13.545000","222.000000","13.545000","715.000000","0.000000",,,,,,,,,,,,"0.000000","24.000000","48.000000","5.000000","24.000000","24.000000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059264.000000","0.000000","2092704.000000","129468.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","524288.000000","2059264.000000","2092704.000000","44548.000000","59116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13140.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751502.000000",,,,, +"218.000000","13.525000","218.000000","13.525000","218.000000","13.525000","891.000000","0.000000",,,,,,,,,,,,"0.000000","26.500000","53.000000","4.000000","26.500000","26.500000",,,,,,,,,,,"524288.000000","524288.000000","0.000000","0.000000","2059588.000000","0.000000","2092704.000000","129468.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","524288.000000","2059588.000000","2092704.000000","44548.000000","60032.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","13.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751522.000000",,,,, +"260.000000","11.715000","260.000000","11.715000","260.000000","11.715000","891.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","2.000000","61.000000","61.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059012.000000","0.000000","2092704.000000","129468.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","440400.000000","2059012.000000","2092704.000000","44548.000000","61308.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13236.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","9.000000","15.000000","35.000000","12.000000","35.000000","0.000000","0.000000","0.000000","14.000000","8.000000","14.000000","32.000000","12.000000","32.000000","160.000000","6000.000000","0.000000","751542.000000",,,,, +"587.000000","13.255000","587.000000","13.255000","587.000000","13.255000","1003.000000","0.000000",,,,,,,,,,,,"18.000000","310.000000","590.000000","1.000000","310.000000","310.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2058464.000000","0.000000","2092704.000000","129468.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","440400.000000","2058464.000000","2092704.000000","44548.000000","62040.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13280.000000","0.000000","0.000000",,,,,,"5.000000","6.000000",,,,,,,,,,,"0.000000","16.000000","14.000000","16.000000","35.000000","40.000000","40.000000","0.000000","0.000000","0.000000","14.000000","12.000000","15.000000","32.000000","32.000000","32.000000","160.000000","6000.000000","0.000000","751562.000000",,,,, +"600.000000","13.315000","600.000000","13.315000","600.000000","13.315000","679.000000","0.000000",,,,,,,,,,,,"146.000000","253.000000","356.000000","3.000000","253.000000","253.000000",,,,,,,,,,,"377484.000000","440400.000000","0.000000","0.000000","2059204.000000","0.000000","2092704.000000","129468.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","440400.000000","2059204.000000","2092704.000000","44548.000000","63176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13332.000000","0.000000","0.000000",,,,,,"1.000000","2.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","18.000000","36.000000","61.000000","43.000000","0.000000","0.000000","0.000000","15.000000","18.000000","16.000000","34.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751582.000000",,,,, +"253.000000","9.680000","253.000000","9.680000","253.000000","9.680000","957.000000","0.000000",,,,,,,,,,,,"32.000000","81.000000","130.000000","2.000000","81.000000","81.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058552.000000","0.000000","2092704.000000","129468.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","356512.000000","2058552.000000","2092704.000000","44548.000000","64572.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13472.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","16.000000","20.000000","17.000000","35.000000","61.000000","43.000000","0.000000","0.000000","0.000000","14.000000","18.000000","15.000000","32.000000","50.000000","37.000000","160.000000","6000.000000","0.000000","751602.000000",,,,, +"209.000000","9.475000","209.000000","9.475000","209.000000","9.475000","1053.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","17.000000","31.500000","31.500000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058992.000000","0.000000","2092704.000000","129468.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","356512.000000","2058992.000000","2092704.000000","44548.000000","66000.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13596.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","15.000000","15.000000","14.000000","35.000000","61.000000","30.000000","0.000000","0.000000","0.000000","14.000000","13.000000","13.000000","32.000000","50.000000","29.000000","160.000000","6000.000000","0.000000","751622.000000",,,,, +"223.000000","9.540000","223.000000","9.540000","223.000000","9.540000","668.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2059140.000000","0.000000","2092704.000000","129468.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","356512.000000","2059140.000000","2092704.000000","44548.000000","67504.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","14.000000","9.000000","12.000000","31.000000","14.000000","18.000000","0.000000","0.000000","0.000000","13.000000","8.000000","11.000000","29.000000","13.000000","15.000000","160.000000","6000.000000","0.000000","751642.000000",,,,, +"253.000000","9.685000","253.000000","9.685000","253.000000","9.685000","926.000000","0.000000",,,,,,,,,,,,"0.000000","54.000000","108.000000","3.000000","54.000000","54.000000",,,,,,,,,,,"314572.000000","356512.000000","0.000000","0.000000","2058528.000000","0.000000","2092704.000000","129468.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","356512.000000","2058528.000000","2092704.000000","44548.000000","68980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","29.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751662.000000",,,,, +"212.000000","9.990000","212.000000","9.990000","212.000000","9.990000","784.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","4.000000","23.500000","23.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058204.000000","0.000000","2092704.000000","129468.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","377484.000000","2058204.000000","2092704.000000","44548.000000","70868.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","11.000000","29.000000","12.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","12.000000","14.000000","160.000000","6000.000000","0.000000","751682.000000",,,,, +"269.000000","10.260000","269.000000","10.260000","269.000000","10.260000","1187.000000","0.000000",,,,,,,,,,,,"673.000000","369.000000","62.000000","5.000000","369.000000","369.000000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2058060.000000","0.000000","2092704.000000","129468.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","377484.000000","2058060.000000","2092704.000000","44548.000000","71928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13880.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","28.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751702.000000",,,,, +"252.000000","10.180000","252.000000","10.180000","252.000000","10.180000","1539.000000","0.000000",,,,,,,,,,,,"0.000000","76.500000","153.000000","3.000000","76.500000","76.500000",,,,,,,,,,,"314572.000000","377484.000000","0.000000","0.000000","2057700.000000","0.000000","2092704.000000","129468.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","377484.000000","2057700.000000","2092704.000000","44548.000000","72840.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13928.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751722.000000",,,,, +"230.000000","10.575000","230.000000","10.575000","230.000000","10.575000","737.000000","0.000000",,,,,,,,,,,,"0.000000","13.500000","27.000000","3.000000","13.500000","13.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059248.000000","0.000000","2092704.000000","129468.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","398456.000000","2059248.000000","2092704.000000","44548.000000","74320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14000.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751742.000000",,,,, +"240.000000","10.620000","240.000000","10.620000","240.000000","10.620000","878.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059584.000000","0.000000","2092704.000000","129468.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","398456.000000","2059584.000000","2092704.000000","44548.000000","75596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14076.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","25.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","10.000000","22.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","751762.000000",,,,, +"571.000000","12.175000","571.000000","12.175000","571.000000","12.175000","1123.000000","0.000000",,,,,,,,,,,,"2.000000","147.000000","291.000000","2.000000","147.000000","147.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2059724.000000","0.000000","2092704.000000","129468.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","398456.000000","2059724.000000","2092704.000000","44548.000000","75208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14048.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","13.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","15.000000","160.000000","6000.000000","0.000000","751782.000000",,,,, +"295.000000","9.380000","295.000000","9.380000","295.000000","9.380000","944.000000","0.000000",,,,,,,,,,,,"0.000000","96.000000","192.000000","4.000000","96.000000","96.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2058560.000000","0.000000","2092704.000000","129468.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","335544.000000","2058560.000000","2092704.000000","44548.000000","76908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14072.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751802.000000",,,,, +"232.000000","9.085000","232.000000","9.085000","232.000000","9.085000","817.000000","0.000000",,,,,,,,,,,,"0.000000","37.000000","74.000000","3.000000","37.000000","37.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2057276.000000","0.000000","2092704.000000","129468.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","335544.000000","2057276.000000","2092704.000000","44548.000000","78460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14136.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","29.000000","43.000000","18.000000","0.000000","0.000000","0.000000","12.000000","13.000000","11.000000","28.000000","42.000000","17.000000","160.000000","6000.000000","0.000000","751822.000000",,,,, +"260.000000","9.215000","260.000000","9.215000","260.000000","9.215000","1306.000000","0.000000",,,,,,,,,,,,"0.000000","40.500000","81.000000","1.000000","40.500000","40.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2056828.000000","0.000000","2092704.000000","129468.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","335544.000000","2056828.000000","2092704.000000","44548.000000","79696.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14196.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","12.000000","29.000000","18.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","28.000000","17.000000","17.000000","160.000000","6000.000000","0.000000","751842.000000",,,,, +"219.000000","9.020000","219.000000","9.020000","219.000000","9.020000","1055.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056272.000000","0.000000","2092704.000000","129468.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","335544.000000","2056272.000000","2092704.000000","44548.000000","81376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14276.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","29.000000","13.000000","14.000000","0.000000","0.000000","0.000000","12.000000","8.000000","10.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751862.000000",,,,, +"279.000000","9.305000","279.000000","9.305000","279.000000","9.305000","665.000000","0.000000",,,,,,,,,,,,"0.000000","48.000000","96.000000","4.000000","48.000000","48.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056972.000000","0.000000","2092704.000000","129468.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","335544.000000","2056972.000000","2092704.000000","44548.000000","82588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14332.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","751883.000000",,,,, +"188.000000","8.880000","188.000000","8.880000","188.000000","8.880000","1030.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","3.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2056552.000000","0.000000","2092704.000000","129468.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","335544.000000","2056552.000000","2092704.000000","44548.000000","83900.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14344.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","8.000000","10.000000","29.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","28.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751902.000000",,,,, +"227.000000","10.060000","227.000000","10.060000","227.000000","10.060000","850.000000","0.000000",,,,,,,,,,,,"1.000000","38.000000","74.000000","1.000000","38.000000","38.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2053924.000000","0.000000","2092704.000000","129468.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","377484.000000","2053924.000000","2092704.000000","44548.000000","85420.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14460.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","10.000000","25.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","22.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751922.000000",,,,, +"213.000000","9.995000","213.000000","9.995000","213.000000","9.995000","880.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2052348.000000","0.000000","2092704.000000","129468.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","377484.000000","2052348.000000","2092704.000000","44548.000000","86860.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14544.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","22.000000","13.000000","13.000000","0.000000","0.000000","0.000000","12.000000","8.000000","9.000000","18.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751942.000000",,,,, +"275.000000","10.285000","275.000000","10.285000","275.000000","10.285000","573.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","1.000000","58.000000","58.000000",,,,,,,,,,,"293600.000000","377484.000000","0.000000","0.000000","2051868.000000","0.000000","2092704.000000","129468.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","377484.000000","2051868.000000","2092704.000000","44548.000000","88160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14568.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","18.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","17.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","751962.000000",,,,, +"286.000000","9.340000","286.000000","9.340000","286.000000","9.340000","609.000000","0.000000",,,,,,,,,,,,"0.000000","71.000000","142.000000","2.000000","71.000000","71.000000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2048948.000000","0.000000","2092704.000000","129468.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","335544.000000","2048948.000000","2092704.000000","44548.000000","89588.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14632.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","17.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","9.000000","10.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","751982.000000",,,,, +"631.000000","10.960000","631.000000","10.960000","631.000000","10.960000","834.000000","0.000000",,,,,,,,,,,,"1002.000000","688.500000","369.000000","2.000000","688.500000","688.500000",,,,,,,,,,,"230684.000000","335544.000000","0.000000","0.000000","2049356.000000","0.000000","2092704.000000","129468.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","335544.000000","2049356.000000","2092704.000000","44548.000000","86708.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14352.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","11.000000","18.000000","46.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","10.000000","17.000000","44.000000","14.000000","160.000000","6000.000000","0.000000","752002.000000",,,,, +"675.000000","11.665000","675.000000","11.665000","675.000000","11.665000","771.000000","0.000000",,,,,,,,,,,,"1553.000000","819.000000","83.000000","1.000000","819.000000","819.000000",,,,,,,,,,,"251656.000000","356512.000000","0.000000","0.000000","2049884.000000","0.000000","2092704.000000","129468.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","356512.000000","2049884.000000","2092704.000000","44548.000000","85772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14096.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","13.000000","20.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752022.000000",,,,, +"226.000000","11.560000","226.000000","11.560000","226.000000","11.560000","679.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","3.000000","71.500000","71.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2051604.000000","0.000000","2092704.000000","129468.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","440400.000000","2051604.000000","2092704.000000","44548.000000","87380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","19.000000","12.000000","22.000000","46.000000","21.000000","0.000000","0.000000","0.000000","12.000000","19.000000","12.000000","21.000000","44.000000","21.000000","160.000000","6000.000000","0.000000","752042.000000",,,,, +"228.000000","11.565000","228.000000","11.565000","228.000000","11.565000","570.000000","0.000000",,,,,,,,,,,,"0.000000","31.000000","62.000000","1.000000","31.000000","31.000000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2049544.000000","0.000000","2092704.000000","129468.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","440400.000000","2049544.000000","2092704.000000","44548.000000","88672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14288.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","14.000000","12.000000","22.000000","38.000000","21.000000","0.000000","0.000000","0.000000","12.000000","14.000000","12.000000","21.000000","37.000000","21.000000","160.000000","6000.000000","0.000000","752062.000000",,,,, +"271.000000","11.770000","271.000000","11.770000","271.000000","11.770000","574.000000","0.000000",,,,,,,,,,,,"0.000000","64.500000","129.000000","3.000000","64.500000","64.500000",,,,,,,,,,,"356512.000000","440400.000000","0.000000","0.000000","2048892.000000","0.000000","2092704.000000","129468.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","440400.000000","2048892.000000","2092704.000000","44548.000000","90272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14340.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","18.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","17.000000","160.000000","6000.000000","0.000000","752082.000000",,,,, +"230.000000","11.575000","230.000000","11.575000","230.000000","11.575000","517.000000","0.000000",,,,,,,,,,,,"0.000000","17.000000","34.000000","1.000000","17.000000","17.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","440400.000000","2046860.000000","2092704.000000","44548.000000","91856.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14440.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752102.000000",,,,, +"240.000000","11.625000","240.000000","11.625000","240.000000","11.625000","646.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","1.000000","25.000000","25.000000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2047320.000000","0.000000","2092704.000000","129468.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","440400.000000","2047320.000000","2092704.000000","44548.000000","93244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752122.000000",,,,, +"287.000000","11.840000","287.000000","11.840000","287.000000","11.840000","607.000000","0.000000",,,,,,,,,,,,"0.000000","66.500000","133.000000","3.000000","66.500000","66.500000",,,,,,,,,,,"398456.000000","440400.000000","0.000000","0.000000","2046732.000000","0.000000","2092704.000000","129468.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","440400.000000","2046732.000000","2092704.000000","44548.000000","94560.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14660.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752142.000000",,,,, +"227.000000","10.560000","227.000000","10.560000","227.000000","10.560000","611.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","2.000000","12.500000","12.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2045920.000000","0.000000","2092704.000000","129468.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","398456.000000","2045920.000000","2092704.000000","44548.000000","95984.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752162.000000",,,,, +"246.000000","10.650000","246.000000","10.650000","246.000000","10.650000","505.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","3.000000","29.500000","29.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2043404.000000","0.000000","2092704.000000","129468.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","398456.000000","2043404.000000","2092704.000000","44548.000000","97312.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","9.000000","11.000000","22.000000","14.000000","14.000000","0.000000","0.000000","0.000000","12.000000","9.000000","11.000000","21.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752182.000000",,,,, +"411.000000","11.425000","411.000000","11.425000","411.000000","11.425000","786.000000","0.000000",,,,,,,,,,,,"6.000000","129.500000","253.000000","2.000000","129.500000","129.500000",,,,,,,,,,,"335544.000000","398456.000000","0.000000","0.000000","2042844.000000","0.000000","2092704.000000","129468.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","398456.000000","2042844.000000","2092704.000000","44548.000000","98592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","13.000000","10.000000","11.000000","18.000000","15.000000","15.000000","0.000000","0.000000","0.000000","12.000000","10.000000","11.000000","17.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752202.000000",,,,, +"720.000000","13.375000","720.000000","13.375000","720.000000","13.375000","583.000000","0.000000",,,,,,,,,,,,"0.000000","161.500000","323.000000","4.000000","161.500000","161.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2043112.000000","0.000000","2092704.000000","129468.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","419428.000000","2043112.000000","2092704.000000","44548.000000","98604.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14796.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","13.000000","18.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","16.000000","12.000000","17.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752222.000000",,,,, +"280.000000","11.310000","280.000000","11.310000","280.000000","11.310000","466.000000","0.000000",,,,,,,,,,,,"0.000000","91.500000","182.000000","4.000000","91.500000","91.500000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2042328.000000","0.000000","2092704.000000","129468.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","419428.000000","2042328.000000","2092704.000000","44548.000000","100060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14864.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","18.000000","13.000000","17.000000","32.000000","28.000000","0.000000","0.000000","0.000000","11.000000","17.000000","13.000000","15.000000","31.000000","27.000000","160.000000","6000.000000","0.000000","752242.000000",,,,, +"794.000000","13.725000","794.000000","13.725000","794.000000","13.725000","1116.000000","0.000000",,,,,,,,,,,,"425.000000","432.000000","438.000000","2.000000","432.000000","432.000000",,,,,,,,,,,"335544.000000","419428.000000","0.000000","0.000000","2041820.000000","0.000000","2092704.000000","129468.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","419428.000000","2041820.000000","2092704.000000","44548.000000","101152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14952.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","12.000000","23.000000","14.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","22.000000","14.000000","16.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752262.000000",,,,, +"426.000000","10.000000","426.000000","10.000000","426.000000","10.000000","656.000000","0.000000",,,,,,,,,,,,"0.000000","87.000000","173.000000","5.000000","87.000000","87.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2041608.000000","0.000000","2092704.000000","129468.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","335544.000000","2041608.000000","2092704.000000","44548.000000","102416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15016.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","20.000000","15.000000","18.000000","64.000000","32.000000","0.000000","0.000000","0.000000","11.000000","19.000000","14.000000","17.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752282.000000",,,,, +"593.000000","10.785000","593.000000","10.785000","593.000000","10.785000","657.000000","0.000000",,,,,,,,,,,,"3.000000","174.500000","345.000000","2.000000","174.500000","174.500000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042416.000000","0.000000","2092704.000000","129468.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","335544.000000","2042416.000000","2092704.000000","44548.000000","103684.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15088.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","24.000000","15.000000","19.000000","64.000000","32.000000","0.000000","0.000000","0.000000","12.000000","22.000000","14.000000","18.000000","61.000000","31.000000","160.000000","6000.000000","0.000000","752302.000000",,,,, +"299.000000","9.400000","299.000000","9.400000","299.000000","9.400000","804.000000","0.000000",,,,,,,,,,,,"1.000000","98.000000","195.000000","33.000000","98.000000","98.000000",,,,,,,,,,,"251656.000000","335544.000000","0.000000","0.000000","2042184.000000","0.000000","2092704.000000","129468.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","335544.000000","2042184.000000","2092704.000000","44548.000000","104220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15120.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","17.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","16.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752322.000000",,,,, +"266.000000","8.745000","266.000000","8.745000","266.000000","8.745000","1173.000000","0.000000",,,,,,,,,,,,"0.000000","47.000000","94.000000","7.000000","47.000000","47.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2044708.000000","0.000000","2092704.000000","129468.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","314572.000000","2044708.000000","2092704.000000","44548.000000","105780.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","14.000000","19.000000","53.000000","28.000000","0.000000","0.000000","0.000000","12.000000","14.000000","13.000000","18.000000","47.000000","27.000000","160.000000","6000.000000","0.000000","752342.000000",,,,, +"209.000000","8.475000","209.000000","8.475000","209.000000","8.475000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","22.000000","44.000000","4.000000","22.000000","22.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2046268.000000","0.000000","2092704.000000","129468.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","314572.000000","2046268.000000","2092704.000000","44548.000000","107156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15232.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","10.000000","14.000000","19.000000","16.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752362.000000",,,,, +"250.000000","8.670000","250.000000","8.670000","250.000000","8.670000","1249.000000","0.000000",,,,,,,,,,,,"0.000000","58.000000","116.000000","7.000000","58.000000","58.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2045732.000000","0.000000","2092704.000000","129468.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","314572.000000","2045732.000000","2092704.000000","44548.000000","108568.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15316.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","9.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752382.000000",,,,, +"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","1036.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","4.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2043984.000000","0.000000","2092704.000000","129468.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","314572.000000","2043984.000000","2092704.000000","44548.000000","109972.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15416.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752402.000000",,,,, +"216.000000","8.510000","216.000000","8.510000","216.000000","8.510000","732.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041524.000000","0.000000","2092704.000000","129468.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","314572.000000","2041524.000000","2092704.000000","44548.000000","111252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15500.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","13.000000","27.000000","160.000000","6000.000000","0.000000","752422.000000",,,,, +"263.000000","8.730000","263.000000","8.730000","263.000000","8.730000","1040.000000","0.000000",,,,,,,,,,,,"0.000000","61.500000","123.000000","3.000000","61.500000","61.500000",,,,,,,,,,,"209712.000000","314572.000000","0.000000","0.000000","2041052.000000","0.000000","2092704.000000","129468.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","314572.000000","2041052.000000","2092704.000000","44548.000000","112544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15484.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","19.000000","14.000000","28.000000","0.000000","0.000000","0.000000","12.000000","8.000000","13.000000","18.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752442.000000",,,,, +"217.000000","8.515000","217.000000","8.515000","217.000000","8.515000","744.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","1.000000","22.500000","22.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040036.000000","0.000000","2092704.000000","129468.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","314572.000000","2040036.000000","2092704.000000","44548.000000","114272.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15600.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","14.000000","18.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","17.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752462.000000",,,,, +"215.000000","8.505000","215.000000","8.505000","215.000000","8.505000","763.000000","0.000000",,,,,,,,,,,,"0.000000","14.000000","28.000000","11.000000","14.000000","14.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040792.000000","0.000000","2092704.000000","129468.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","314572.000000","2040792.000000","2092704.000000","44548.000000","115652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15760.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","14.000000","16.000000","14.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","14.000000","27.000000","160.000000","6000.000000","0.000000","752482.000000",,,,, +"264.000000","8.735000","264.000000","8.735000","264.000000","8.735000","1153.000000","0.000000",,,,,,,,,,,,"0.000000","75.500000","151.000000","2.000000","75.500000","75.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040232.000000","0.000000","2092704.000000","129468.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","314572.000000","2040232.000000","2092704.000000","44548.000000","116960.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15900.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","13.000000","16.000000","15.000000","28.000000","0.000000","0.000000","0.000000","11.000000","8.000000","13.000000","15.000000","15.000000","27.000000","160.000000","6000.000000","0.000000","752502.000000",,,,, +"201.000000","7.940000","201.000000","7.940000","201.000000","7.940000","1652.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2040180.000000","0.000000","2092704.000000","129468.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","293600.000000","2040180.000000","2092704.000000","44548.000000","118268.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15964.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","12.000000","16.000000","15.000000","17.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","16.000000","160.000000","6000.000000","0.000000","752522.000000",,,,, +"221.000000","8.030000","221.000000","8.030000","221.000000","8.030000","1098.000000","0.000000",,,,,,,,,,,,"1.000000","43.500000","86.000000","3.000000","43.500000","43.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041620.000000","0.000000","2092704.000000","129468.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","293600.000000","2041620.000000","2092704.000000","44548.000000","118508.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","12.000000","16.000000","15.000000","16.000000","0.000000","0.000000","0.000000","11.000000","8.000000","11.000000","15.000000","15.000000","15.000000","160.000000","6000.000000","0.000000","752542.000000",,,,, +"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","1440.000000","0.000000",,,,,,,,,,,,"9.000000","59.500000","109.000000","4.000000","59.500000","59.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2041056.000000","0.000000","2092704.000000","129468.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","293600.000000","2041056.000000","2092704.000000","44548.000000","120036.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","10.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752562.000000",,,,, +"236.000000","8.100000","236.000000","8.100000","236.000000","8.100000","1099.000000","0.000000",,,,,,,,,,,,"0.000000","29.500000","59.000000","1.000000","29.500000","29.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2039892.000000","0.000000","2092704.000000","129468.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","293600.000000","2039892.000000","2092704.000000","44548.000000","121396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752582.000000",,,,, +"215.000000","8.005000","215.000000","8.005000","215.000000","8.005000","1457.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","1.000000","33.500000","33.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038840.000000","0.000000","2092704.000000","129468.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","293600.000000","2038840.000000","2092704.000000","44548.000000","122656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","13.000000","13.000000","160.000000","6000.000000","0.000000","752602.000000",,,,, +"246.000000","8.150000","246.000000","8.150000","246.000000","8.150000","1579.000000","0.000000",,,,,,,,,,,,"0.000000","43.000000","86.000000","1.000000","43.000000","43.000000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2038300.000000","0.000000","2092704.000000","129468.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","293600.000000","2038300.000000","2092704.000000","44548.000000","124076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16384.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","13.000000","160.000000","6000.000000","0.000000","752622.000000",,,,, +"236.000000","7.605000","236.000000","7.605000","236.000000","7.605000","698.000000","0.000000",,,,,,,,,,,,"0.000000","35.000000","69.000000","2.000000","35.000000","35.000000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037436.000000","0.000000","2092704.000000","129468.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","272628.000000","2037436.000000","2092704.000000","44548.000000","125632.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16488.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752642.000000",,,,, +"213.000000","7.495000","213.000000","7.495000","213.000000","7.495000","780.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","0.000000","24.500000","24.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2037276.000000","0.000000","2092704.000000","129468.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","272628.000000","2037276.000000","2092704.000000","44548.000000","127104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16536.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","16.000000","13.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","12.000000","12.000000","160.000000","6000.000000","0.000000","752662.000000",,,,, +"268.000000","7.755000","268.000000","7.755000","268.000000","7.755000","638.000000","0.000000",,,,,,,,,,,,"0.000000","55.500000","111.000000","4.000000","55.500000","55.500000",,,,,,,,,,,"209712.000000","272628.000000","0.000000","0.000000","2036856.000000","0.000000","2092704.000000","129468.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","272628.000000","2036856.000000","2092704.000000","44548.000000","128432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16464.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752682.000000",,,,, +"223.000000","6.545000","223.000000","6.545000","223.000000","6.545000","599.000000","0.000000",,,,,,,,,,,,"0.000000","19.500000","39.000000","1.000000","19.500000","19.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2035764.000000","0.000000","2092704.000000","129468.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","230684.000000","2035764.000000","2092704.000000","44548.000000","129864.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16516.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","13.000000","0.000000","0.000000","0.000000","11.000000","8.000000","8.000000","15.000000","14.000000","12.000000","160.000000","6000.000000","0.000000","752702.000000",,,,, +"583.000000","8.235000","583.000000","8.235000","583.000000","8.235000","1262.000000","0.000000",,,,,,,,,,,,"5.000000","125.000000","245.000000","2.000000","125.000000","125.000000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2038484.000000","0.000000","2092704.000000","129468.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","230684.000000","2038484.000000","2092704.000000","44548.000000","130680.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","8.000000","15.000000","14.000000","13.000000","160.000000","6000.000000","0.000000","752722.000000",,,,, +"337.000000","7.080000","337.000000","7.080000","337.000000","7.080000","1013.000000","0.000000",,,,,,,,,,,,"1.000000","214.500000","426.000000","4.000000","214.500000","214.500000",,,,,,,,,,,"188740.000000","230684.000000","0.000000","0.000000","2034456.000000","0.000000","2092704.000000","129468.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","230684.000000","2034456.000000","2092704.000000","44548.000000","131116.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16376.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752742.000000",,,,, +"260.000000","8.215000","260.000000","8.215000","260.000000","8.215000","1219.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","2.000000","45.000000","45.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2034216.000000","0.000000","2092704.000000","129468.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","293600.000000","2034216.000000","2092704.000000","44548.000000","131644.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16452.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","15.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752762.000000",,,,, +"207.000000","7.970000","207.000000","7.970000","207.000000","7.970000","1035.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","4.000000","25.000000","25.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032580.000000","0.000000","2092704.000000","129468.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","293600.000000","2032580.000000","2092704.000000","44548.000000","133160.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16556.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","14.000000","10.000000","16.000000","54.000000","14.000000","0.000000","0.000000","0.000000","11.000000","14.000000","9.000000","15.000000","54.000000","14.000000","160.000000","6000.000000","0.000000","752782.000000",,,,, +"265.000000","8.240000","265.000000","8.240000","265.000000","8.240000","1161.000000","0.000000",,,,,,,,,,,,"0.000000","61.000000","122.000000","1.000000","61.000000","61.000000",,,,,,,,,,,"209712.000000","293600.000000","0.000000","0.000000","2032272.000000","0.000000","2092704.000000","129468.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","293600.000000","2032272.000000","2092704.000000","44548.000000","134260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16624.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","9.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","9.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752802.000000",,,,, +"206.000000","9.465000","206.000000","9.465000","206.000000","9.465000","1395.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","71.000000","2.000000","35.500000","35.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031756.000000","0.000000","2092704.000000","129468.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","356512.000000","2031756.000000","2092704.000000","44548.000000","135428.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16752.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752822.000000",,,,, +"195.000000","9.410000","195.000000","9.410000","195.000000","9.410000","1131.000000","0.000000",,,,,,,,,,,,"0.000000","11.000000","22.000000","1.000000","11.000000","11.000000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031192.000000","0.000000","2092704.000000","129468.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","356512.000000","2031192.000000","2092704.000000","44548.000000","137376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16896.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","14.000000","14.000000","160.000000","6000.000000","0.000000","752842.000000",,,,, +"258.000000","9.705000","258.000000","9.705000","258.000000","9.705000","1164.000000","0.000000",,,,,,,,,,,,"0.000000","60.500000","121.000000","1.000000","60.500000","60.500000",,,,,,,,,,,"293600.000000","356512.000000","0.000000","0.000000","2031332.000000","0.000000","2092704.000000","129468.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","356512.000000","2031332.000000","2092704.000000","44548.000000","138456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16992.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","12.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752862.000000",,,,, +"197.000000","7.420000","197.000000","7.420000","197.000000","7.420000","1772.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","3.000000","30.000000","30.000000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2030748.000000","0.000000","2092704.000000","129468.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","272628.000000","2030748.000000","2092704.000000","44548.000000","139876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17096.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","16.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752882.000000",,,,, +"200.000000","7.435000","200.000000","7.435000","200.000000","7.435000","1621.000000","0.000000",,,,,,,,,,,,"0.000000","8.500000","17.000000","0.000000","8.500000","8.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2029136.000000","0.000000","2092704.000000","129468.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","272628.000000","2029136.000000","2092704.000000","44548.000000","141180.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17180.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","15.000000","14.000000","14.000000","0.000000","0.000000","0.000000","11.000000","8.000000","9.000000","15.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752902.000000",,,,, +"255.000000","7.695000","255.000000","7.695000","255.000000","7.695000","1707.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","2.000000","71.500000","71.500000",,,,,,,,,,,"188740.000000","272628.000000","0.000000","0.000000","2028672.000000","0.000000","2092704.000000","129468.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","272628.000000","2028672.000000","2092704.000000","44548.000000","142300.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17252.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","8.000000","10.000000","14.000000","13.000000","14.000000","0.000000","0.000000","0.000000","10.000000","8.000000","9.000000","14.000000","13.000000","14.000000","160.000000","6000.000000","0.000000","752922.000000",,,,, +"382.000000","8.290000","382.000000","8.290000","382.000000","8.290000","1483.000000","0.000000",,,,,,,,,,,,"1393.000000","1458.500000","1522.000000","4.000000","1458.500000","1458.500000",,,,,,,,,,,"167772.000000","272628.000000","0.000000","0.000000","2026888.000000","0.000000","2092704.000000","129468.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","272628.000000","2026888.000000","2092704.000000","44548.000000","143452.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17176.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","11.000000","10.000000","10.000000","15.000000","18.000000","14.000000","0.000000","0.000000","0.000000","10.000000","10.000000","10.000000","15.000000","17.000000","14.000000","160.000000","6000.000000","0.000000","752942.000000",,,,, +"801.000000","17.260000","801.000000","17.260000","801.000000","17.260000","1638.000000","0.000000",,,,,,,,,,,,"12530.000000","12847.500000","13163.000000","16.000000","12847.500000","12847.500000",,,,,,,,,,,"356512.000000","566228.000000","0.000000","0.000000","2042860.000000","0.000000","2092704.000000","129468.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","566228.000000","2042860.000000","2092704.000000","44548.000000","102456.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11636.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","11.000000","19.000000","12.000000","17.000000","59.000000","18.000000","0.000000","0.000000","0.000000","11.000000","17.000000","11.000000","15.000000","53.000000","17.000000","160.000000","6000.000000","0.000000","752962.000000",,,,, +"665.000000","18.120000","665.000000","18.120000","665.000000","18.120000","1883.000000","0.000000",,,,,,,,,,,,"1055.000000","887.500000","465.000000","3.000000","887.500000","887.500000",,,,,,,,,,,"419428.000000","629144.000000","0.000000","0.000000","2043312.000000","0.000000","2092704.000000","129468.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","629144.000000","2043312.000000","2092704.000000","44552.000000","98772.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"7.000000","248.000000",,,,,,,,,,,"0.000000","12.000000","25.000000","13.000000","18.000000","59.000000","25.000000","0.000000","0.000000","0.000000","11.000000","22.000000","12.000000","17.000000","53.000000","21.000000","160.000000","6000.000000","0.000000","752982.000000",,,,, +"594.000000","21.285000","594.000000","21.285000","594.000000","21.285000","1239.000000","0.000000",,,,,,,,,,,,"709.000000","1585.000000","902.000000","5.000000","1585.000000","1585.000000",,,,,,,,,,,"440400.000000","775944.000000","0.000000","0.000000","2044032.000000","0.000000","2092704.000000","129468.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","775944.000000","2044032.000000","2092704.000000","44552.000000","96992.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10756.000000","0.000000","0.000000",,,,,,"1515.000000","43.000000",,,,,,,,,,,"0.000000","12.000000","30.000000","14.000000","20.000000","59.000000","31.000000","0.000000","0.000000","0.000000","11.000000","25.000000","13.000000","18.000000","53.000000","28.000000","160.000000","6000.000000","0.000000","753002.000000",,,,, +"1248.000000","24.360000","1248.000000","24.360000","1248.000000","24.360000","2625.000000","0.000000",,,,,,,,,,,,"0.000000","20814.000000","21156.000000","78.000000","20814.000000","20814.000000",,,,,,,,,,,"650116.000000","775944.000000","0.000000","0.000000","2053436.000000","0.000000","2092704.000000","129468.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","775944.000000","2053436.000000","2092704.000000","44552.000000","76880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10784.000000","0.000000","0.000000",,,,,,"20399.000000","72.000000",,,,,,,,,,,"0.000000","13.000000","41.000000","18.000000","25.000000","75.000000","54.000000","0.000000","0.000000","0.000000","12.000000","30.000000","15.000000","21.000000","51.000000","43.000000","160.000000","6000.000000","0.000000","753022.000000",,,,, +"1164.000000","30.965000","1164.000000","30.965000","1164.000000","30.965000","2201.000000","0.000000",,,,,,,,,,,,"0.000000","19665.500000","23179.000000","66.000000","19665.500000","19665.500000",,,,,,,,,,,"1006632.000000","1069544.000000","0.000000","0.000000","2067944.000000","0.000000","2092704.000000","129468.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","1069544.000000","2067944.000000","2092704.000000","44556.000000","43392.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10648.000000","0.000000","0.000000",,,,,,"16094.000000","58.000000",,,,,,,,,,,"0.000000","15.000000","52.000000","20.000000","31.000000","75.000000","68.000000","0.000000","0.000000","0.000000","13.000000","35.000000","16.000000","28.000000","51.000000","44.000000","160.000000","6000.000000","0.000000","753042.000000",,,,, +"1131.000000","41.810000","1131.000000","41.810000","1131.000000","41.810000","1844.000000","0.000000",,,,,,,,,,,,"7.000000","24063.500000","38208.000000","35.000000","24063.500000","24063.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2071392.000000","0.000000","2092704.000000","129468.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2071392.000000","2092704.000000","44556.000000","31792.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"9871.000000","41.000000",,,,,,,,,,,"0.000000","16.000000","66.000000","25.000000","45.000000","75.000000","69.000000","0.000000","0.000000","0.000000","14.000000","44.000000","19.000000","32.000000","51.000000","46.000000","160.000000","6000.000000","0.000000","753062.000000",,,,, +"682.000000","39.700000","682.000000","39.700000","682.000000","39.700000","1590.000000","0.000000",,,,,,,,,,,,"681.000000","8960.500000","8687.000000","15.000000","8960.500000","8960.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072044.000000","0.000000","2092704.000000","129468.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","1530920.000000","2072044.000000","2092704.000000","44560.000000","30836.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10244.000000","0.000000","0.000000",,,,,,"8517.000000","36.000000",,,,,,,,,,,"0.000000","16.000000","54.000000","26.000000","45.000000","70.000000","69.000000","0.000000","0.000000","0.000000","14.000000","38.000000","20.000000","35.000000","47.000000","46.000000","160.000000","6000.000000","0.000000","753082.000000",,,,, +"1467.000000","43.390000","1467.000000","43.390000","1467.000000","43.390000","2267.000000","0.000000",,,,,,,,,,,,"123.000000","17364.500000","26118.000000","65.000000","17364.500000","17364.500000",,,,,,,,,,,"1405088.000000","1530920.000000","0.000000","0.000000","2072184.000000","0.000000","2092704.000000","129468.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","1530920.000000","2072184.000000","2092704.000000","44560.000000","29980.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10308.000000","0.000000","0.000000",,,,,,"8454.000000","34.000000",,,,,,,,,,,"0.000000","17.000000","50.000000","29.000000","53.000000","70.000000","69.000000","0.000000","0.000000","0.000000","15.000000","39.000000","22.000000","40.000000","59.000000","47.000000","160.000000","6000.000000","0.000000","753102.000000",,,,, +"966.000000","46.035000","966.000000","46.035000","966.000000","46.035000","1909.000000","0.000000",,,,,,,,,,,,"6.000000","3669.000000","7329.000000","17.000000","3669.000000","3669.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2072020.000000","0.000000","2092704.000000","129468.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","1740636.000000","2072020.000000","2092704.000000","44560.000000","30204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10400.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","18.000000","46.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","39.000000","25.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753122.000000",,,,, +"403.000000","43.385000","403.000000","43.385000","403.000000","43.385000","2033.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","4.000000","66.000000","66.000000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071580.000000","0.000000","2092704.000000","129468.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","1740636.000000","2071580.000000","2092704.000000","44560.000000","30880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","41.000000","32.000000","59.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","35.000000","26.000000","41.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753142.000000",,,,, +"266.000000","42.745000","266.000000","42.745000","266.000000","42.745000","2295.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","0.000000","31.500000","31.500000",,,,,,,,,,,"1677720.000000","1740636.000000","0.000000","0.000000","2071440.000000","0.000000","2092704.000000","129468.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","1740636.000000","2071440.000000","2092704.000000","44560.000000","31288.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10712.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","28.000000","33.000000","54.000000","85.000000","70.000000","0.000000","0.000000","0.000000","15.000000","25.000000","26.000000","40.000000","72.000000","52.000000","160.000000","6000.000000","0.000000","753162.000000",,,,, +"449.000000","44.105000","449.000000","44.105000","449.000000","44.105000","2345.000000","0.000000",,,,,,,,,,,,"0.000000","72.500000","145.000000","4.000000","72.500000","72.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2071108.000000","0.000000","2092704.000000","129468.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","1761604.000000","2071108.000000","2092704.000000","44560.000000","31764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","10892.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","15.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","13.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753182.000000",,,,, +"223.000000","43.040000","223.000000","43.040000","223.000000","43.040000","2358.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","2.000000","30.000000","30.000000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070724.000000","0.000000","2092704.000000","129468.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","1761604.000000","2070724.000000","2092704.000000","44560.000000","32532.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11092.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753202.000000",,,,, +"231.000000","43.080000","231.000000","43.080000","231.000000","43.080000","2191.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","4.000000","33.500000","33.500000",,,,,,,,,,,"1677720.000000","1761604.000000","0.000000","0.000000","2070296.000000","0.000000","2092704.000000","129468.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","1761604.000000","2070296.000000","2092704.000000","44560.000000","33128.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11272.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","12.000000","33.000000","54.000000","37.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","26.000000","40.000000","34.000000","52.000000","160.000000","6000.000000","0.000000","753222.000000",,,,, +"229.000000","43.570000","229.000000","43.570000","229.000000","43.570000","1664.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","2.000000","23.000000","23.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069796.000000","0.000000","2092704.000000","129468.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","1782576.000000","2069796.000000","2092704.000000","44560.000000","33920.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11468.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","33.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","26.000000","40.000000","9.000000","52.000000","160.000000","6000.000000","0.000000","753242.000000",,,,, +"248.000000","43.660000","248.000000","43.660000","248.000000","43.660000","948.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","2.000000","31.500000","31.500000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2069308.000000","0.000000","2092704.000000","129468.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","1782576.000000","2069308.000000","2092704.000000","44560.000000","34928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","9.000000","31.000000","54.000000","10.000000","70.000000","0.000000","0.000000","0.000000","15.000000","8.000000","25.000000","40.000000","9.000000","51.000000","160.000000","6000.000000","0.000000","753262.000000",,,,, +"535.000000","45.010000","535.000000","45.010000","535.000000","45.010000","1478.000000","0.000000",,,,,,,,,,,,"0.000000","95.000000","190.000000","3.000000","95.000000","95.000000",,,,,,,,,,,"1740636.000000","1782576.000000","0.000000","0.000000","2068920.000000","0.000000","2092704.000000","129468.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","1782576.000000","2068920.000000","2092704.000000","44560.000000","35500.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","11936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","17.000000","13.000000","31.000000","54.000000","42.000000","70.000000","0.000000","0.000000","0.000000","15.000000","11.000000","24.000000","40.000000","30.000000","51.000000","160.000000","6000.000000","0.000000","753282.000000",,,,, +"766.000000","38.595000","766.000000","38.595000","766.000000","38.595000","1335.000000","0.000000",,,,,,,,,,,,"4.000000","198.000000","392.000000","3.000000","198.000000","198.000000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068500.000000","0.000000","2092704.000000","129468.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","1468004.000000","2068500.000000","2092704.000000","44560.000000","36068.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","18.000000","21.000000","31.000000","54.000000","48.000000","70.000000","0.000000","0.000000","0.000000","15.000000","19.000000","25.000000","40.000000","43.000000","51.000000","160.000000","6000.000000","0.000000","753302.000000",,,,, +"882.000000","39.140000","882.000000","39.140000","882.000000","39.140000","1178.000000","0.000000",,,,,,,,,,,,"46.000000","258.500000","471.000000","7.000000","258.500000","258.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068796.000000","0.000000","2092704.000000","129468.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","1468004.000000","2068796.000000","2092704.000000","44560.000000","35356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","29.000000","29.000000","59.000000","60.000000","68.000000","0.000000","0.000000","0.000000","16.000000","24.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753322.000000",,,,, +"676.000000","38.175000","676.000000","38.175000","676.000000","38.175000","1302.000000","0.000000",,,,,,,,,,,,"0.000000","87.500000","174.000000","5.000000","87.500000","87.500000",,,,,,,,,,,"1405088.000000","1468004.000000","0.000000","0.000000","2068128.000000","0.000000","2092704.000000","129468.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","1468004.000000","2068128.000000","2092704.000000","44560.000000","36496.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12588.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","32.000000","27.000000","59.000000","60.000000","64.000000","0.000000","0.000000","0.000000","16.000000","28.000000","23.000000","41.000000","43.000000","47.000000","160.000000","6000.000000","0.000000","753342.000000",,,,, +"876.000000","29.120000","876.000000","29.120000","876.000000","29.120000","1505.000000","0.000000",,,,,,,,,,,,"2163.000000","1493.000000","772.000000","3.000000","1493.000000","1493.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067748.000000","0.000000","2092704.000000","129468.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","1048576.000000","2067748.000000","2092704.000000","44560.000000","37304.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12792.000000","0.000000","0.000000",,,,,,"35.000000","15.000000",,,,,,,,,,,"0.000000","20.000000","34.000000","25.000000","59.000000","60.000000","60.000000","0.000000","0.000000","0.000000","17.000000","30.000000","22.000000","43.000000","48.000000","48.000000","160.000000","6000.000000","0.000000","753362.000000",,,,, +"1000.000000","29.700000","1000.000000","29.700000","1000.000000","29.700000","1341.000000","0.000000",,,,,,,,,,,,"7.000000","4211.000000","8409.000000","26.000000","4211.000000","4211.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067396.000000","0.000000","2092704.000000","129468.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","1048576.000000","2067396.000000","2092704.000000","44560.000000","38356.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12948.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","20.000000","37.000000","26.000000","60.000000","67.000000","64.000000","0.000000","0.000000","0.000000","17.000000","34.000000","22.000000","43.000000","53.000000","52.000000","160.000000","6000.000000","0.000000","753382.000000",,,,, +"760.000000","28.570000","760.000000","28.570000","760.000000","28.570000","1798.000000","0.000000",,,,,,,,,,,,"3.000000","432.000000","859.000000","4.000000","432.000000","432.000000",,,,,,,,,,,"964688.000000","1048576.000000","0.000000","0.000000","2067096.000000","0.000000","2092704.000000","129468.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","1048576.000000","2067096.000000","2092704.000000","44560.000000","39060.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","12864.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","21.000000","39.000000","24.000000","60.000000","73.000000","60.000000","0.000000","0.000000","0.000000","18.000000","34.000000","22.000000","44.000000","65.000000","51.000000","160.000000","6000.000000","0.000000","753402.000000",,,,, +"532.000000","24.495000","532.000000","24.495000","532.000000","24.495000","1234.000000","0.000000",,,,,,,,,,,,"0.000000","118.000000","236.000000","5.000000","118.000000","118.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066516.000000","0.000000","2092704.000000","129468.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","922744.000000","2066516.000000","2092704.000000","44560.000000","40192.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13052.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","21.000000","31.000000","22.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","18.000000","28.000000","20.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753422.000000",,,,, +"740.000000","25.475000","740.000000","25.475000","740.000000","25.475000","1076.000000","0.000000",,,,,,,,,,,,"0.000000","146.000000","291.000000","2.000000","146.000000","146.000000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2066052.000000","0.000000","2092704.000000","129468.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","922744.000000","2066052.000000","2092704.000000","44560.000000","41244.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13228.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","28.000000","23.000000","60.000000","73.000000","48.000000","0.000000","0.000000","0.000000","19.000000","26.000000","21.000000","44.000000","65.000000","43.000000","160.000000","6000.000000","0.000000","753442.000000",,,,, +"235.000000","23.095000","235.000000","23.095000","235.000000","23.095000","1299.000000","0.000000",,,,,,,,,,,,"0.000000","70.500000","140.000000","3.000000","70.500000","70.500000",,,,,,,,,,,"838860.000000","922744.000000","0.000000","0.000000","2065436.000000","0.000000","2092704.000000","129468.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","922744.000000","2065436.000000","2092704.000000","44560.000000","42388.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13364.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","20.000000","23.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","19.000000","19.000000","21.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753462.000000",,,,, +"216.000000","20.510000","216.000000","20.510000","216.000000","20.510000","1606.000000","0.000000",,,,,,,,,,,,"0.000000","40.000000","80.000000","2.000000","40.000000","40.000000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064708.000000","0.000000","2092704.000000","129468.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","817888.000000","2064708.000000","2092704.000000","44560.000000","43704.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","16.000000","22.000000","60.000000","39.000000","48.000000","0.000000","0.000000","0.000000","18.000000","15.000000","20.000000","44.000000","38.000000","43.000000","160.000000","6000.000000","0.000000","753482.000000",,,,, +"231.000000","20.580000","231.000000","20.580000","231.000000","20.580000","1179.000000","0.000000",,,,,,,,,,,,"0.000000","28.500000","57.000000","2.000000","28.500000","28.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2064316.000000","0.000000","2092704.000000","129468.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","817888.000000","2064316.000000","2092704.000000","44560.000000","44944.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13736.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","9.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","19.000000","8.000000","20.000000","44.000000","10.000000","43.000000","160.000000","6000.000000","0.000000","753502.000000",,,,, +"219.000000","20.520000","219.000000","20.520000","219.000000","20.520000","1510.000000","0.000000",,,,,,,,,,,,"0.000000","37.500000","75.000000","1.000000","37.500000","37.500000",,,,,,,,,,,"713028.000000","817888.000000","0.000000","0.000000","2063692.000000","0.000000","2092704.000000","129468.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","817888.000000","2063692.000000","2092704.000000","44560.000000","46052.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","13936.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753522.000000",,,,, +"214.000000","19.500000","214.000000","19.500000","214.000000","19.500000","1223.000000","0.000000",,,,,,,,,,,,"0.000000","42.500000","85.000000","3.000000","42.500000","42.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062896.000000","0.000000","2092704.000000","129468.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","775944.000000","2062896.000000","2092704.000000","44560.000000","47596.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14300.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","8.000000","22.000000","60.000000","10.000000","48.000000","0.000000","0.000000","0.000000","18.000000","8.000000","20.000000","44.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","753542.000000",,,,, +"541.000000","21.035000","541.000000","21.035000","541.000000","21.035000","949.000000","0.000000",,,,,,,,,,,,"6.000000","209.500000","407.000000","1.000000","209.500000","209.500000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2062588.000000","0.000000","2092704.000000","129468.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","775944.000000","2062588.000000","2092704.000000","44560.000000","48764.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14480.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","22.000000","11.000000","23.000000","60.000000","26.000000","48.000000","0.000000","0.000000","0.000000","19.000000","10.000000","20.000000","44.000000","19.000000","43.000000","160.000000","6000.000000","0.000000","753562.000000",,,,, +"674.000000","21.665000","674.000000","21.665000","674.000000","21.665000","1381.000000","0.000000",,,,,,,,,,,,"1.000000","138.000000","275.000000","2.000000","138.000000","138.000000",,,,,,,,,,,"692060.000000","775944.000000","0.000000","0.000000","2061872.000000","0.000000","2092704.000000","129468.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","775944.000000","2061872.000000","2092704.000000","44560.000000","50020.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14744.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","17.000000","23.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","16.000000","21.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753582.000000",,,,, +"499.000000","19.840000","499.000000","19.840000","499.000000","19.840000","1229.000000","0.000000",,,,,,,,,,,,"0.000000","172.500000","344.000000","4.000000","172.500000","172.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060988.000000","0.000000","2092704.000000","129468.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","734000.000000","2060988.000000","2092704.000000","44560.000000","51368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","14904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","22.000000","22.000000","60.000000","40.000000","48.000000","0.000000","0.000000","0.000000","19.000000","20.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753602.000000",,,,, +"535.000000","20.010000","535.000000","20.010000","535.000000","20.010000","1016.000000","0.000000",,,,,,,,,,,,"0.000000","108.000000","216.000000","12.000000","108.000000","108.000000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2060288.000000","0.000000","2092704.000000","129468.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","734000.000000","2060288.000000","2092704.000000","44560.000000","52400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15116.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","23.000000","22.000000","60.000000","40.000000","44.000000","0.000000","0.000000","0.000000","19.000000","21.000000","20.000000","44.000000","39.000000","43.000000","160.000000","6000.000000","0.000000","753622.000000",,,,, +"641.000000","20.505000","641.000000","20.505000","641.000000","20.505000","1413.000000","0.000000",,,,,,,,,,,,"0.000000","277.500000","549.000000","3.000000","277.500000","277.500000",,,,,,,,,,,"629144.000000","734000.000000","0.000000","0.000000","2059488.000000","0.000000","2092704.000000","129468.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","734000.000000","2059488.000000","2092704.000000","44560.000000","53520.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15288.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","23.000000","21.000000","21.000000","60.000000","47.000000","47.000000","0.000000","0.000000","0.000000","19.000000","19.000000","19.000000","44.000000","45.000000","45.000000","160.000000","6000.000000","0.000000","753642.000000",,,,, +"727.000000","18.915000","727.000000","18.915000","727.000000","18.915000","1570.000000","0.000000",,,,,,,,,,,,"0.000000","150.000000","288.000000","6.000000","150.000000","150.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2058680.000000","0.000000","2092704.000000","129468.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","650116.000000","2058680.000000","2092704.000000","44560.000000","54712.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15476.000000","0.000000","0.000000",,,,,,"10.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","26.000000","21.000000","60.000000","52.000000","47.000000","0.000000","0.000000","0.000000","20.000000","24.000000","19.000000","45.000000","46.000000","45.000000","160.000000","6000.000000","0.000000","753662.000000",,,,, +"445.000000","17.585000","445.000000","17.585000","445.000000","17.585000","1082.000000","0.000000",,,,,,,,,,,,"0.000000","154.500000","307.000000","2.000000","154.500000","154.500000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2057680.000000","0.000000","2092704.000000","129468.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","650116.000000","2057680.000000","2092704.000000","44560.000000","56156.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15688.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","23.000000","24.000000","19.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","39.000000","160.000000","6000.000000","0.000000","753682.000000",,,,, +"570.000000","18.175000","570.000000","18.175000","570.000000","18.175000","1796.000000","0.000000",,,,,,,,,,,,"0.000000","125.000000","250.000000","7.000000","125.000000","125.000000",,,,,,,,,,,"524288.000000","650116.000000","0.000000","0.000000","2056988.000000","0.000000","2092704.000000","129468.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","650116.000000","2056988.000000","2092704.000000","44560.000000","57396.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","15876.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","24.000000","18.000000","60.000000","52.000000","40.000000","0.000000","0.000000","0.000000","20.000000","22.000000","17.000000","45.000000","46.000000","38.000000","160.000000","6000.000000","0.000000","753702.000000",,,,, +"493.000000","15.810000","493.000000","15.810000","493.000000","15.810000","1821.000000","0.000000",,,,,,,,,,,,"0.000000","104.000000","207.000000","5.000000","104.000000","104.000000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2056080.000000","0.000000","2092704.000000","129468.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","566228.000000","2056080.000000","2092704.000000","44560.000000","58748.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","20.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","17.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753722.000000",,,,, +"225.000000","14.550000","225.000000","14.550000","225.000000","14.550000","1426.000000","0.000000",,,,,,,,,,,,"0.000000","63.500000","126.000000","24.000000","63.500000","63.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2054420.000000","0.000000","2092704.000000","129468.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","566228.000000","2054420.000000","2092704.000000","44560.000000","60208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16324.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","19.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","18.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753742.000000",,,,, +"204.000000","14.450000","204.000000","14.450000","204.000000","14.450000","1647.000000","0.000000",,,,,,,,,,,,"0.000000","33.500000","67.000000","3.000000","33.500000","33.500000",,,,,,,,,,,"440400.000000","566228.000000","0.000000","0.000000","2053676.000000","0.000000","2092704.000000","129468.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","566228.000000","2053676.000000","2092704.000000","44560.000000","61464.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16548.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","15.000000","17.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","13.000000","16.000000","45.000000","37.000000","38.000000","160.000000","6000.000000","0.000000","753762.000000",,,,, +"215.000000","14.005000","215.000000","14.005000","215.000000","14.005000","1658.000000","0.000000",,,,,,,,,,,,"0.000000","34.000000","68.000000","2.000000","34.000000","34.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2052716.000000","0.000000","2092704.000000","129468.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","545256.000000","2052716.000000","2092704.000000","44560.000000","62824.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16716.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","10.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753782.000000",,,,, +"223.000000","14.040000","223.000000","14.040000","223.000000","14.040000","966.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","0.000000","25.000000","25.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051720.000000","0.000000","2092704.000000","129468.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","545256.000000","2051720.000000","2092704.000000","44560.000000","64380.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","16976.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","8.000000","17.000000","60.000000","9.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","9.000000","38.000000","160.000000","6000.000000","0.000000","753802.000000",,,,, +"487.000000","15.285000","487.000000","15.285000","487.000000","15.285000","1001.000000","0.000000",,,,,,,,,,,,"0.000000","111.000000","222.000000","1.000000","111.000000","111.000000",,,,,,,,,,,"419428.000000","545256.000000","0.000000","0.000000","2051056.000000","0.000000","2092704.000000","129468.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","545256.000000","2051056.000000","2092704.000000","44560.000000","65544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17132.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","9.000000","17.000000","60.000000","15.000000","40.000000","0.000000","0.000000","0.000000","21.000000","8.000000","16.000000","45.000000","15.000000","38.000000","160.000000","6000.000000","0.000000","753822.000000",,,,, +"544.000000","14.055000","544.000000","14.055000","544.000000","14.055000","1339.000000","0.000000",,,,,,,,,,,,"0.000000","195.000000","384.000000","2.000000","195.000000","195.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2050652.000000","0.000000","2092704.000000","129468.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","482344.000000","2050652.000000","2092704.000000","44560.000000","66672.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17272.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","25.000000","16.000000","19.000000","60.000000","40.000000","40.000000","0.000000","0.000000","0.000000","21.000000","15.000000","17.000000","45.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","753842.000000",,,,, +"586.000000","14.250000","586.000000","14.250000","586.000000","14.250000","716.000000","0.000000",,,,,,,,,,,,"0.000000","136.000000","270.000000","1.000000","136.000000","136.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2049504.000000","0.000000","2092704.000000","129468.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","482344.000000","2049504.000000","2092704.000000","44560.000000","68104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17444.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","24.000000","21.000000","19.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","20.000000","18.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753862.000000",,,,, +"444.000000","13.585000","444.000000","13.585000","444.000000","13.585000","530.000000","0.000000",,,,,,,,,,,,"0.000000","85.500000","171.000000","5.000000","85.500000","85.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2048680.000000","0.000000","2092704.000000","129468.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","482344.000000","2048680.000000","2092704.000000","44560.000000","69524.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17648.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","23.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","22.000000","17.000000","45.000000","45.000000","38.000000","160.000000","6000.000000","0.000000","753882.000000",,,,, +"709.000000","12.825000","709.000000","12.825000","709.000000","12.825000","432.000000","0.000000",,,,,,,,,,,,"0.000000","113.500000","227.000000","1.000000","113.500000","113.500000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2047468.000000","0.000000","2092704.000000","129468.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","398456.000000","2047468.000000","2092704.000000","44560.000000","70832.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","17840.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","24.000000","22.000000","18.000000","60.000000","45.000000","40.000000","0.000000","0.000000","0.000000","21.000000","21.000000","17.000000","45.000000","45.000000","39.000000","160.000000","6000.000000","0.000000","753902.000000",,,,, +"253.000000","10.685000","253.000000","10.685000","253.000000","10.685000","510.000000","0.000000",,,,,,,,,,,,"0.000000","45.000000","90.000000","6.000000","45.000000","45.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046860.000000","0.000000","2092704.000000","129468.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","398456.000000","2046860.000000","2092704.000000","44560.000000","72200.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18028.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","23.000000","17.000000","18.000000","52.000000","39.000000","40.000000","0.000000","0.000000","0.000000","20.000000","17.000000","17.000000","45.000000","39.000000","39.000000","160.000000","6000.000000","0.000000","753922.000000",,,,, +"221.000000","10.535000","221.000000","10.535000","221.000000","10.535000","491.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","42.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"314572.000000","398456.000000","0.000000","0.000000","2046084.000000","0.000000","2092704.000000","129468.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","398456.000000","2046084.000000","2092704.000000","44560.000000","73548.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18200.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","22.000000","15.000000","17.000000","48.000000","39.000000","40.000000","0.000000","0.000000","0.000000","19.000000","14.000000","16.000000","43.000000","39.000000","38.000000","160.000000","6000.000000","0.000000","753942.000000",,,,, +"224.000000","9.045000","224.000000","9.045000","224.000000","9.045000","441.000000","0.000000",,,,,,,,,,,,"0.000000","31.500000","63.000000","1.000000","31.500000","31.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2045520.000000","0.000000","2092704.000000","129468.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","335544.000000","2045520.000000","2092704.000000","44560.000000","74908.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18396.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","9.000000","37.000000","160.000000","6000.000000","0.000000","753962.000000",,,,, +"422.000000","9.980000","422.000000","9.980000","422.000000","9.980000","479.000000","0.000000",,,,,,,,,,,,"0.000000","52.500000","105.000000","3.000000","52.500000","52.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2044384.000000","0.000000","2092704.000000","129468.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","335544.000000","2044384.000000","2092704.000000","44560.000000","76540.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18608.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","20.000000","8.000000","15.000000","44.000000","10.000000","38.000000","0.000000","0.000000","0.000000","18.000000","8.000000","14.000000","41.000000","10.000000","37.000000","160.000000","6000.000000","0.000000","753982.000000",,,,, +"534.000000","10.505000","534.000000","10.505000","534.000000","10.505000","765.000000","0.000000",,,,,,,,,,,,"0.000000","99.000000","197.000000","2.000000","99.000000","99.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2043532.000000","0.000000","2092704.000000","129468.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","335544.000000","2043532.000000","2092704.000000","44560.000000","78012.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18804.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","19.000000","14.000000","15.000000","42.000000","39.000000","39.000000","0.000000","0.000000","0.000000","18.000000","13.000000","14.000000","39.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754002.000000",,,,, +"533.000000","10.000000","533.000000","10.000000","533.000000","10.000000","909.000000","0.000000",,,,,,,,,,,,"0.000000","215.500000","425.000000","1.000000","215.500000","215.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2041684.000000","0.000000","2092704.000000","129468.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","314572.000000","2041684.000000","2092704.000000","44560.000000","79416.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","18980.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","18.000000","19.000000","15.000000","40.000000","39.000000","38.000000","0.000000","0.000000","0.000000","17.000000","17.000000","14.000000","38.000000","38.000000","38.000000","160.000000","6000.000000","0.000000","754022.000000",,,,, +"821.000000","11.355000","821.000000","11.355000","821.000000","11.355000","619.000000","0.000000",,,,,,,,,,,,"7.000000","388.500000","764.000000","3.000000","388.500000","388.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2039608.000000","0.000000","2092704.000000","129468.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","314572.000000","2039608.000000","2092704.000000","44560.000000","80204.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19180.000000","0.000000","0.000000",,,,,,"3.000000","3.000000",,,,,,,,,,,"0.000000","19.000000","26.000000","16.000000","42.000000","59.000000","39.000000","0.000000","0.000000","0.000000","17.000000","23.000000","15.000000","39.000000","50.000000","38.000000","160.000000","6000.000000","0.000000","754042.000000",,,,, +"1321.000000","13.700000","1321.000000","13.700000","1321.000000","13.700000","746.000000","0.000000",,,,,,,,,,,,"0.000000","208.500000","416.000000","4.000000","208.500000","208.500000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2040120.000000","0.000000","2092704.000000","129468.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","314572.000000","2040120.000000","2092704.000000","44560.000000","79076.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19436.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","19.000000","30.000000","18.000000","42.000000","69.000000","40.000000","0.000000","0.000000","0.000000","18.000000","28.000000","17.000000","39.000000","68.000000","39.000000","160.000000","6000.000000","0.000000","754062.000000",,,,, +"3092.000000","24.025000","3092.000000","24.025000","3092.000000","24.025000","901.000000","0.000000",,,,,,,,,,,,"0.000000","739.000000","1477.000000","3.000000","739.000000","739.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2042144.000000","0.000000","2092704.000000","129468.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","398456.000000","2042144.000000","2092704.000000","44560.000000","80284.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19648.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","22.000000","73.000000","28.000000","46.000000","182.000000","69.000000","0.000000","0.000000","0.000000","20.000000","65.000000","25.000000","43.000000","165.000000","68.000000","160.000000","6000.000000","0.000000","754082.000000",,,,, +"2229.000000","19.970000","2229.000000","19.970000","2229.000000","19.970000","1079.000000","0.000000",,,,,,,,,,,,"0.000000","825.000000","1647.000000","0.000000","825.000000","825.000000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2040344.000000","0.000000","2092704.000000","129468.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","398456.000000","2040344.000000","2092704.000000","44560.000000","81652.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19872.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","24.000000","89.000000","32.000000","48.000000","182.000000","87.000000","0.000000","0.000000","0.000000","22.000000","80.000000","30.000000","45.000000","165.000000","84.000000","160.000000","6000.000000","0.000000","754102.000000",,,,, +"2212.000000","19.890000","2212.000000","19.890000","2212.000000","19.890000","978.000000","0.000000",,,,,,,,,,,,"0.000000","864.500000","1727.000000","1.000000","864.500000","864.500000",,,,,,,,,,,"377484.000000","398456.000000","0.000000","0.000000","2039468.000000","0.000000","2092704.000000","129468.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","398456.000000","2039468.000000","2092704.000000","44564.000000","83220.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","19976.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","25.000000","104.000000","37.000000","59.000000","182.000000","94.000000","0.000000","0.000000","0.000000","23.000000","94.000000","34.000000","50.000000","165.000000","90.000000","160.000000","6000.000000","0.000000","754122.000000",,,,, +"1829.000000","16.590000","1829.000000","16.590000","1829.000000","16.590000","816.000000","0.000000",,,,,,,,,,,,"0.000000","636.500000","1271.000000","1.000000","636.500000","636.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038572.000000","0.000000","2092704.000000","129468.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","335544.000000","2038572.000000","2092704.000000","44564.000000","84700.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20108.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","27.000000","83.000000","41.000000","69.000000","107.000000","101.000000","0.000000","0.000000","0.000000","25.000000","79.000000","38.000000","65.000000","106.000000","92.000000","160.000000","6000.000000","0.000000","754142.000000",,,,, +"1233.000000","13.790000","1233.000000","13.790000","1233.000000","13.790000","557.000000","0.000000",,,,,,,,,,,,"0.000000","112.000000","216.000000","4.000000","112.000000","112.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2038256.000000","0.000000","2092704.000000","129468.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","335544.000000","2038256.000000","2092704.000000","44564.000000","85320.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20260.000000","0.000000","0.000000",,,,,,"1.000000","7.000000",,,,,,,,,,,"0.000000","28.000000","73.000000","43.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","70.000000","40.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754162.000000",,,,, +"237.000000","9.110000","237.000000","9.110000","237.000000","9.110000","551.000000","0.000000",,,,,,,,,,,,"0.000000","71.500000","143.000000","4.000000","71.500000","71.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2037468.000000","0.000000","2092704.000000","129468.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","335544.000000","2037468.000000","2092704.000000","44564.000000","86676.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20412.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","28.000000","48.000000","42.000000","73.000000","107.000000","101.000000","0.000000","0.000000","0.000000","26.000000","47.000000","39.000000","68.000000","106.000000","93.000000","160.000000","6000.000000","0.000000","754182.000000",,,,, +"221.000000","9.035000","221.000000","9.035000","221.000000","9.035000","525.000000","0.000000",,,,,,,,,,,,"0.000000","23.500000","47.000000","6.000000","23.500000","23.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2036852.000000","0.000000","2092704.000000","129468.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","335544.000000","2036852.000000","2092704.000000","44564.000000","88064.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20656.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","21.000000","41.000000","73.000000","101.000000","101.000000","0.000000","0.000000","0.000000","25.000000","21.000000","38.000000","68.000000","101.000000","93.000000","160.000000","6000.000000","0.000000","754202.000000",,,,, +"221.000000","8.530000","221.000000","8.530000","221.000000","8.530000","456.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","2.000000","20.500000","20.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035836.000000","0.000000","2092704.000000","129468.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","314572.000000","2035836.000000","2092704.000000","44564.000000","89472.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","20852.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","27.000000","8.000000","41.000000","73.000000","10.000000","101.000000","0.000000","0.000000","0.000000","25.000000","8.000000","38.000000","68.000000","10.000000","93.000000","160.000000","6000.000000","0.000000","754222.000000",,,,, +"223.000000","8.540000","223.000000","8.540000","223.000000","8.540000","407.000000","0.000000",,,,,,,,,,,,"0.000000","20.000000","39.000000","1.000000","20.000000","20.000000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2035008.000000","0.000000","2092704.000000","129468.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","314572.000000","2035008.000000","2092704.000000","44564.000000","90880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21036.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","26.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754242.000000",,,,, +"223.000000","8.545000","223.000000","8.545000","223.000000","8.545000","513.000000","0.000000",,,,,,,,,,,,"0.000000","12.500000","25.000000","3.000000","12.500000","12.500000",,,,,,,,,,,"230684.000000","314572.000000","0.000000","0.000000","2034208.000000","0.000000","2092704.000000","129468.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","314572.000000","2034208.000000","2092704.000000","44564.000000","92260.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21216.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","8.000000","41.000000","73.000000","9.000000","101.000000","0.000000","0.000000","0.000000","24.000000","8.000000","38.000000","68.000000","9.000000","93.000000","160.000000","6000.000000","0.000000","754262.000000",,,,, +"573.000000","10.685000","573.000000","10.685000","573.000000","10.685000","621.000000","0.000000",,,,,,,,,,,,"0.000000","163.000000","325.000000","1.000000","163.000000","163.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2033288.000000","0.000000","2092704.000000","129468.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","335544.000000","2033288.000000","2092704.000000","44564.000000","93484.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21404.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","25.000000","9.000000","41.000000","73.000000","17.000000","101.000000","0.000000","0.000000","0.000000","23.000000","9.000000","38.000000","68.000000","17.000000","93.000000","160.000000","6000.000000","0.000000","754282.000000",,,,, +"2602.000000","20.220000","2602.000000","20.220000","2602.000000","20.220000","2202.000000","0.000000",,,,,,,,,,,,"0.000000","946.500000","1890.000000","4.000000","946.500000","946.500000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2032872.000000","0.000000","2092704.000000","129468.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","335544.000000","2032872.000000","2092704.000000","44564.000000","94880.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21572.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","26.000000","38.000000","46.000000","87.000000","105.000000","104.000000","0.000000","0.000000","0.000000","24.000000","35.000000","42.000000","81.000000","100.000000","100.000000","160.000000","6000.000000","0.000000","754302.000000",,,,, +"2372.000000","19.145000","2372.000000","19.145000","2372.000000","19.145000","1973.000000","0.000000",,,,,,,,,,,,"0.000000","918.000000","1833.000000","3.000000","918.000000","918.000000",,,,,,,,,,,"272628.000000","335544.000000","0.000000","0.000000","2031076.000000","0.000000","2092704.000000","129468.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","335544.000000","2031076.000000","2092704.000000","44564.000000","96124.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21692.000000","0.000000","0.000000",,,,,,"0.000000","3.000000",,,,,,,,,,,"0.000000","28.000000","74.000000","52.000000","91.000000","110.000000","105.000000","0.000000","0.000000","0.000000","26.000000","68.000000","48.000000","85.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754322.000000",,,,, +"2467.000000","20.590000","2467.000000","20.590000","2467.000000","20.590000","680.000000","0.000000",,,,,,,,,,,,"0.000000","740.500000","1479.000000","4.000000","740.500000","740.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031324.000000","0.000000","2092704.000000","129468.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","377484.000000","2031324.000000","2092704.000000","44564.000000","97344.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","21800.000000","0.000000","0.000000",,,,,,"0.000000","2.000000",,,,,,,,,,,"0.000000","30.000000","99.000000","56.000000","94.000000","110.000000","105.000000","0.000000","0.000000","0.000000","28.000000","92.000000","52.000000","90.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754342.000000",,,,, +"2474.000000","20.620000","2474.000000","20.620000","2474.000000","20.620000","681.000000","0.000000",,,,,,,,,,,,"0.000000","489.500000","979.000000","3.000000","489.500000","489.500000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2030624.000000","0.000000","2092704.000000","129468.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","377484.000000","2030624.000000","2092704.000000","44564.000000","98492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22008.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","31.000000","96.000000","59.000000","98.000000","110.000000","105.000000","0.000000","0.000000","0.000000","29.000000","91.000000","55.000000","91.000000","103.000000","101.000000","160.000000","6000.000000","0.000000","754362.000000",,,,, +"2462.000000","20.565000","2462.000000","20.565000","2462.000000","20.565000","632.000000","0.000000",,,,,,,,,,,,"0.000000","483.000000","966.000000","1.000000","483.000000","483.000000",,,,,,,,,,,"335544.000000","377484.000000","0.000000","0.000000","2031092.000000","0.000000","2092704.000000","129468.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","377484.000000","2031092.000000","2092704.000000","44564.000000","99656.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22172.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","95.000000","56.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","92.000000","54.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754382.000000",,,,, +"601.000000","9.820000","601.000000","9.820000","601.000000","9.820000","649.000000","0.000000",,,,,,,,,,,,"0.000000","248.500000","486.000000","1.000000","248.500000","248.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2029480.000000","0.000000","2092704.000000","129468.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","293600.000000","2029480.000000","2092704.000000","44568.000000","100988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22340.000000","0.000000","0.000000",,,,,,"6.000000","5.000000",,,,,,,,,,,"0.000000","34.000000","77.000000","53.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","73.000000","50.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754402.000000",,,,, +"256.000000","8.200000","256.000000","8.200000","256.000000","8.200000","519.000000","0.000000",,,,,,,,,,,,"0.000000","35.500000","62.000000","1.000000","35.500000","35.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028640.000000","0.000000","2092704.000000","129468.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","293600.000000","2028640.000000","2092704.000000","44568.000000","102460.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22492.000000","0.000000","0.000000",,,,,,"7.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","51.000000","48.000000","98.000000","104.000000","104.000000","0.000000","0.000000","0.000000","32.000000","48.000000","46.000000","92.000000","102.000000","100.000000","160.000000","6000.000000","0.000000","754422.000000",,,,, +"241.000000","8.130000","241.000000","8.130000","241.000000","8.130000","376.000000","0.000000",,,,,,,,,,,,"0.000000","5.500000","9.000000","26.000000","5.500000","5.500000",,,,,,,,,,,"230684.000000","293600.000000","0.000000","0.000000","2028088.000000","0.000000","2092704.000000","129468.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","293600.000000","2028088.000000","2092704.000000","44568.000000","103752.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22688.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","16.000000","43.000000","98.000000","43.000000","103.000000","0.000000","0.000000","0.000000","32.000000","15.000000","41.000000","92.000000","43.000000","100.000000","160.000000","6000.000000","0.000000","754442.000000",,,,, +"271.000000","7.270000","271.000000","7.270000","271.000000","7.270000","449.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","9.000000","1.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2025096.000000","0.000000","2092704.000000","129468.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","251656.000000","2025096.000000","2092704.000000","44568.000000","105208.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22876.000000","0.000000","0.000000",,,,,,"5.000000","2.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","13.000000","103.000000","0.000000","0.000000","0.000000","32.000000","9.000000","38.000000","92.000000","13.000000","97.000000","160.000000","6000.000000","0.000000","754462.000000",,,,, +"238.000000","7.115000","238.000000","7.115000","238.000000","7.115000","462.000000","0.000000",,,,,,,,,,,,"0.000000","8.000000","13.000000","0.000000","8.000000","8.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024296.000000","0.000000","2092704.000000","129468.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","251656.000000","2024296.000000","2092704.000000","44568.000000","106492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23096.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","34.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754482.000000",,,,, +"219.000000","7.025000","219.000000","7.025000","219.000000","7.025000","557.000000","0.000000",,,,,,,,,,,,"0.000000","5.000000","7.000000","0.000000","5.000000","5.000000",,,,,,,,,,,"230684.000000","251656.000000","0.000000","0.000000","2024544.000000","0.000000","2092704.000000","129468.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","251656.000000","2024544.000000","2092704.000000","44572.000000","107928.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23228.000000","0.000000","0.000000",,,,,,"2.000000","1.000000",,,,,,,,,,,"0.000000","33.000000","9.000000","40.000000","98.000000","12.000000","103.000000","0.000000","0.000000","0.000000","31.000000","9.000000","38.000000","92.000000","12.000000","97.000000","160.000000","6000.000000","0.000000","754502.000000",,,,, +"999.000000","12.190000","999.000000","12.190000","999.000000","12.190000","821.000000","0.000000",,,,,,,,,,,,"0.000000","4304.000000","8588.000000","19.000000","4304.000000","4304.000000",,,,,,,,,,,"251656.000000","314572.000000","0.000000","0.000000","2027408.000000","0.000000","2092704.000000","129468.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","314572.000000","2027408.000000","2092704.000000","44572.000000","102096.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23072.000000","0.000000","0.000000",,,,,,"13.000000","6.000000",,,,,,,,,,,"0.000000","34.000000","21.000000","43.000000","98.000000","68.000000","103.000000","0.000000","0.000000","0.000000","32.000000","18.000000","40.000000","92.000000","68.000000","97.000000","160.000000","6000.000000","0.000000","754522.000000",,,,, +"2004.000000","21.415000","2004.000000","21.415000","2004.000000","21.415000","1226.000000","0.000000",,,,,,,,,,,,"0.000000","421.000000","842.000000","10.000000","421.000000","421.000000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2029164.000000","0.000000","2092704.000000","129468.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","503316.000000","2029164.000000","2092704.000000","44572.000000","99296.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22512.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","36.000000","46.000000","98.000000","149.000000","104.000000","0.000000","0.000000","0.000000","32.000000","29.000000","43.000000","92.000000","108.000000","100.000000","160.000000","6000.000000","0.000000","754542.000000",,,,, +"1618.000000","19.600000","1618.000000","19.600000","1618.000000","19.600000","838.000000","0.000000",,,,,,,,,,,,"0.000000","648.500000","1296.000000","4.000000","648.500000","648.500000",,,,,,,,,,,"440400.000000","503316.000000","0.000000","0.000000","2028456.000000","0.000000","2092704.000000","129468.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","503316.000000","2028456.000000","2092704.000000","44572.000000","100400.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22608.000000","0.000000","0.000000",,,,,,"0.000000","1.000000",,,,,,,,,,,"0.000000","36.000000","74.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","33.000000","57.000000","48.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754562.000000",,,,, +"721.000000","18.380000","721.000000","18.380000","721.000000","18.380000","541.000000","0.000000",,,,,,,,,,,,"0.000000","115.500000","231.000000","6.000000","115.500000","115.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2029660.000000","0.000000","2092704.000000","129468.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","629144.000000","2029660.000000","2092704.000000","44572.000000","101988.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","22756.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","67.000000","54.000000","100.000000","234.000000","105.000000","0.000000","0.000000","0.000000","34.000000","53.000000","49.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754582.000000",,,,, +"245.000000","16.145000","245.000000","16.145000","245.000000","16.145000","486.000000","0.000000",,,,,,,,,,,,"0.000000","66.000000","132.000000","3.000000","66.000000","66.000000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2028740.000000","0.000000","2092704.000000","129468.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","629144.000000","2028740.000000","2092704.000000","44572.000000","103556.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23004.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","53.000000","49.000000","100.000000","234.000000","104.000000","0.000000","0.000000","0.000000","34.000000","42.000000","44.000000","95.000000","139.000000","102.000000","160.000000","6000.000000","0.000000","754602.000000",,,,, +"233.000000","16.090000","233.000000","16.090000","233.000000","16.090000","586.000000","0.000000",,,,,,,,,,,,"0.000000","24.500000","49.000000","17.000000","24.500000","24.500000",,,,,,,,,,,"545256.000000","629144.000000","0.000000","0.000000","2026664.000000","0.000000","2092704.000000","129468.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","629144.000000","2026664.000000","2092704.000000","44572.000000","105088.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23168.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","15.000000","42.000000","100.000000","46.000000","100.000000","0.000000","0.000000","0.000000","33.000000","15.000000","37.000000","95.000000","41.000000","100.000000","160.000000","6000.000000","0.000000","754622.000000",,,,, +"219.000000","15.525000","219.000000","15.525000","219.000000","15.525000","467.000000","0.000000",,,,,,,,,,,,"0.000000","32.500000","65.000000","1.000000","32.500000","32.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2027632.000000","0.000000","2092704.000000","129468.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","608172.000000","2027632.000000","2092704.000000","44572.000000","106808.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23400.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","10.000000","37.000000","100.000000","20.000000","98.000000","0.000000","0.000000","0.000000","33.000000","9.000000","32.000000","95.000000","20.000000","97.000000","160.000000","6000.000000","0.000000","754642.000000",,,,, +"222.000000","15.540000","222.000000","15.540000","222.000000","15.540000","679.000000","0.000000",,,,,,,,,,,,"0.000000","22.500000","45.000000","2.000000","22.500000","22.500000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026620.000000","0.000000","2092704.000000","129468.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","608172.000000","2026620.000000","2092704.000000","44572.000000","108592.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23644.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","31.000000","100.000000","9.000000","98.000000","0.000000","0.000000","0.000000","33.000000","8.000000","27.000000","95.000000","9.000000","97.000000","160.000000","6000.000000","0.000000","754662.000000",,,,, +"223.000000","15.540000","223.000000","15.540000","223.000000","15.540000","736.000000","0.000000",,,,,,,,,,,,"0.000000","13.000000","26.000000","0.000000","13.000000","13.000000",,,,,,,,,,,"524288.000000","608172.000000","0.000000","0.000000","2026760.000000","0.000000","2092704.000000","129468.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","608172.000000","2026760.000000","2092704.000000","44572.000000","110176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","23828.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","24.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","21.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754682.000000",,,,, +"226.000000","18.555000","226.000000","18.555000","226.000000","18.555000","594.000000","0.000000",,,,,,,,,,,,"0.000000","23.000000","46.000000","46.000000","23.000000","23.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2026204.000000","0.000000","2092704.000000","129468.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","734000.000000","2026204.000000","2092704.000000","44572.000000","111872.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24032.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","8.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754702.000000",,,,, +"218.000000","18.520000","218.000000","18.520000","218.000000","18.520000","663.000000","0.000000",,,,,,,,,,,,"0.000000","20.500000","41.000000","19.000000","20.500000","20.500000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2025288.000000","0.000000","2092704.000000","129468.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","734000.000000","2025288.000000","2092704.000000","44572.000000","113492.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24280.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754722.000000",,,,, +"229.000000","18.570000","229.000000","18.570000","229.000000","18.570000","519.000000","0.000000",,,,,,,,,,,,"0.000000","21.000000","41.000000","3.000000","21.000000","21.000000",,,,,,,,,,,"650116.000000","734000.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","734000.000000","2024700.000000","2092704.000000","44572.000000","115104.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24420.000000","0.000000","0.000000",,,,,,"1.000000","0.000000",,,,,,,,,,,"0.000000","36.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","33.000000","8.000000","19.000000","95.000000","8.000000","43.000000","160.000000","6000.000000","0.000000","754742.000000",,,,, +"236.000000","18.105000","236.000000","18.105000","236.000000","18.105000","438.000000","0.000000",,,,,,,,,,,,"0.000000","36.500000","73.000000","1.000000","36.500000","36.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2024276.000000","0.000000","2092704.000000","129468.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","713028.000000","2024276.000000","2092704.000000","44572.000000","116800.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24668.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","35.000000","8.000000","23.000000","100.000000","9.000000","66.000000","0.000000","0.000000","0.000000","32.000000","8.000000","19.000000","95.000000","9.000000","43.000000","160.000000","6000.000000","0.000000","754762.000000",,,,, +"412.000000","18.930000","412.000000","18.930000","412.000000","18.930000","574.000000","0.000000",,,,,,,,,,,,"0.000000","143.000000","284.000000","0.000000","143.000000","143.000000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2023432.000000","0.000000","2092704.000000","129468.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","713028.000000","2023432.000000","2092704.000000","44572.000000","118376.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"1.000000","1.000000",,,,,,,,,,,"0.000000","35.000000","10.000000","23.000000","100.000000","25.000000","66.000000","0.000000","0.000000","0.000000","32.000000","10.000000","20.000000","95.000000","24.000000","43.000000","160.000000","6000.000000","0.000000","754782.000000",,,,, +"886.000000","21.160000","886.000000","21.160000","886.000000","21.160000","671.000000","0.000000",,,,,,,,,,,,"0.000000","226.500000","448.000000","2.000000","226.500000","226.500000",,,,,,,,,,,"608172.000000","713028.000000","0.000000","0.000000","2022828.000000","0.000000","2092704.000000","129468.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","713028.000000","2022828.000000","2092704.000000","44572.000000","118732.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24944.000000","0.000000","0.000000",,,,,,"2.000000","2.000000",,,,,,,,,,,"0.000000","35.000000","19.000000","25.000000","100.000000","47.000000","66.000000","0.000000","0.000000","0.000000","32.000000","18.000000","21.000000","95.000000","44.000000","44.000000","160.000000","6000.000000","0.000000","754802.000000",,,,, +"2615.000000","26.285000","2615.000000","26.285000","2615.000000","26.285000","1547.000000","0.000000",,,,,,,,,,,,"0.000000","518.500000","1036.000000","8.000000","518.500000","518.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026560.000000","0.000000","2092704.000000","129468.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","587200.000000","2026560.000000","2092704.000000","44572.000000","117432.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24480.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","60.000000","31.000000","101.000000","264.000000","123.000000","0.000000","0.000000","0.000000","34.000000","49.000000","25.000000","97.000000","185.000000","108.000000","160.000000","6000.000000","0.000000","754822.000000",,,,, +"617.000000","16.895000","617.000000","16.895000","617.000000","16.895000","641.000000","0.000000",,,,,,,,,,,,"0.000000","286.500000","573.000000","94.000000","286.500000","286.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026092.000000","0.000000","2092704.000000","129468.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","587200.000000","2026092.000000","2092704.000000","44572.000000","118176.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24728.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","62.000000","28.000000","101.000000","264.000000","47.000000","0.000000","0.000000","0.000000","35.000000","50.000000","24.000000","97.000000","185.000000","44.000000","160.000000","6000.000000","0.000000","754842.000000",,,,, +"634.000000","16.975000","634.000000","16.975000","634.000000","16.975000","533.000000","0.000000",,,,,,,,,,,,"0.000000","119.500000","239.000000","1.000000","119.500000","119.500000",,,,,,,,,,,"440400.000000","587200.000000","0.000000","0.000000","2026132.000000","0.000000","2092704.000000","129468.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","587200.000000","2026132.000000","2092704.000000","44572.000000","120152.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","24848.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","60.000000","22.000000","101.000000","264.000000","46.000000","0.000000","0.000000","0.000000","35.000000","49.000000","19.000000","97.000000","185.000000","41.000000","160.000000","6000.000000","0.000000","754862.000000",,,,, +"249.000000","12.665000","249.000000","12.665000","249.000000","12.665000","434.000000","0.000000",,,,,,,,,,,,"0.000000","73.500000","147.000000","35.000000","73.500000","73.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2026272.000000","0.000000","2092704.000000","129468.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","482344.000000","2026272.000000","2092704.000000","44572.000000","121876.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25012.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","39.000000","19.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","18.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754882.000000",,,,, +"222.000000","12.535000","222.000000","12.535000","222.000000","12.535000","830.000000","0.000000",,,,,,,,,,,,"0.000000","30.000000","60.000000","13.000000","30.000000","30.000000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2025336.000000","0.000000","2092704.000000","129468.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","482344.000000","2025336.000000","2092704.000000","44572.000000","123828.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25188.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","15.000000","21.000000","101.000000","56.000000","41.000000","0.000000","0.000000","0.000000","35.000000","15.000000","18.000000","97.000000","56.000000","40.000000","160.000000","6000.000000","0.000000","754902.000000",,,,, +"230.000000","12.575000","230.000000","12.575000","230.000000","12.575000","549.000000","0.000000",,,,,,,,,,,,"0.000000","43.500000","87.000000","2.000000","43.500000","43.500000",,,,,,,,,,,"377484.000000","482344.000000","0.000000","0.000000","2024700.000000","0.000000","2092704.000000","129468.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","482344.000000","2024700.000000","2092704.000000","44572.000000","125724.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25408.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","9.000000","21.000000","101.000000","9.000000","41.000000","0.000000","0.000000","0.000000","35.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754922.000000",,,,, +"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","545.000000","0.000000",,,,,,,,,,,,"0.000000","29.000000","58.000000","3.000000","29.000000","29.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2025392.000000","0.000000","2092704.000000","129468.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","461372.000000","2025392.000000","2092704.000000","44572.000000","127368.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25540.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","38.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754942.000000",,,,, +"231.000000","12.080000","231.000000","12.080000","231.000000","12.080000","911.000000","0.000000",,,,,,,,,,,,"0.000000","25.000000","50.000000","2.000000","25.000000","25.000000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2024356.000000","0.000000","2092704.000000","129468.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","461372.000000","2024356.000000","2092704.000000","44572.000000","129544.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25780.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","37.000000","8.000000","21.000000","101.000000","10.000000","41.000000","0.000000","0.000000","0.000000","34.000000","8.000000","18.000000","97.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754962.000000",,,,, +"230.000000","12.075000","230.000000","12.075000","230.000000","12.075000","632.000000","0.000000",,,,,,,,,,,,"0.000000","38.500000","77.000000","3.000000","38.500000","38.500000",,,,,,,,,,,"356512.000000","461372.000000","0.000000","0.000000","2023372.000000","0.000000","2092704.000000","129468.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","461372.000000","2023372.000000","2092704.000000","44572.000000","131252.000000","0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","25904.000000","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,,,"0.000000","34.000000","8.000000","21.000000","98.000000","10.000000","41.000000","0.000000","0.000000","0.000000","31.000000","8.000000","18.000000","95.000000","9.000000","40.000000","160.000000","6000.000000","0.000000","754982.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest-instance.csv b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv new file mode 100644 index 00000000..95854863 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest-instance.csv @@ -0,0 +1,847 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"621.250000",,"621.250000",,"621.250000",,"213.000000","0.000000",,,,,,,,,"4.250000","4675.000000","14395.250000","0.000000",,"250.875000",,,,"1.600000","0.000000","2.333333","10.333333","3.000000","0.000000","33.800000","0.000000","0.400000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.500000",,"658.500000",,"658.500000",,"275.250000","0.000000",,,,,,,,,"7.500000","4953.250000","14349.750000","2.625000",,"356.875000",,,,"4.800000","0.000000","0.333333","5.000000","8.500000","0.000000","96.600000","0.000000","1.600000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"576.500000",,"576.500000",,"576.500000",,"191.250000","0.000000",,,,,,,,,"6.250000","4338.750000","14378.250000","0.000000",,"356.125000",,,,"3.000000","0.000000","6.333333","7.000000","5.500000","0.000000","62.600000","0.000000","0.800000","61.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"243.000000",,"243.000000",,"243.000000",,"118.250000","0.000000",,,,,,,,,"4.750000","1830.000000","17188.750000","0.000000",,"192.750000",,,,"1.600000","0.000000","4.666667","3078.000000","2.875000","0.000000","34.400000","0.000000","0.200000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"348.750000",,"348.750000",,"348.750000",,"153.000000","0.000000",,,,,,,,,"5.750000","2627.000000","16510.250000","10.125000",,"238.375000",,,,"1.600000","0.375000","852.333333","1623.000000","2.125000","0.000000","33.200000","0.000000","7.800000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"79.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"631.000000",,"631.000000",,"631.000000",,"150.250000","0.000000",,,,,,,,,"4.750000","4749.250000","14454.500000","0.000000",,"342.375000",,,,"1.800000","0.000000","3.333333","304.000000","3.375000","0.000000","38.600000","0.000000","0.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"317.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"439.750000",,"439.750000",,"439.750000",,"165.750000","0.000000",,,,,,,,,"112.250000","3312.250000","15687.500000","19.875000",,"8504.625000",,,,"30.000000","0.750000","61.666667","94.000000","55.125000","0.000000","601.400000","0.000000","10.000000","591.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"131.500000","0.000000",,,,,,,,,"25.250000","4801.750000","14476.500000","3.375000",,"1435.375000",,,,"13.400000","0.000000","3.666667","9.666667","24.750000","0.000000","268.400000","0.000000","3.800000","264.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"73.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"434.500000",,"434.500000",,"434.500000",,"145.000000","0.000000",,,,,,,,,"103.000000","3271.500000","16027.500000","310.500000",,"3663.000000",,,,"56.600000","13.500000","4.333333","14.333333","92.250000","0.000000","1134.200000","0.000000","147.600000","986.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"92.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"689.000000",,"689.000000",,"689.000000",,"176.000000","0.000000",,,,,,,,,"8.750000","5185.750000","14445.000000","0.000000",,"465.375000",,,,"7.600000","0.000000","0.000000","3.000000","14.125000","0.000000","152.600000","0.000000","0.000000","152.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"620.750000",,"620.750000",,"620.750000",,"189.750000","0.000000",,,,,,,,,"7.750000","4672.250000","14427.500000","118.875000",,"244.750000",,,,"1.800000","1.500000","1.333333","10.333333","1.500000","0.000000","39.200000","0.000000","19.400000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"634.250000",,"634.250000",,"634.250000",,"184.750000","0.000000",,,,,,,,,"24.500000","4772.250000","14526.000000","538.500000",,"252.375000",,,,"3.600000","6.000000","2.000000","7.000000","0.750000","0.000000","75.000000","0.000000","65.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"728.750000",,"728.750000",,"728.750000",,"110.000000","0.000000",,,,,,,,,"21.500000","5484.000000","14597.500000","311.500000",,"552.375000",,,,"4.800000","3.000000","2.000000","6.000000","6.000000","0.000000","98.800000","0.000000","33.200000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"482.000000",,"482.000000",,"482.000000",,"157.250000","0.000000",,,,,,,,,"73.750000","3628.750000","15599.000000","1432.750000",,"354.000000",,,,"23.200000","41.625000","1.333333","7.000000","1.875000","0.000000","465.800000","0.000000","445.600000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"628.000000",,"628.000000",,"628.000000",,"124.500000","0.000000",,,,,,,,,"46.000000","4725.500000","14656.500000","698.000000",,"171.625000",,,,"10.400000","16.875000","0.333333","2.666667","2.250000","0.000000","208.200000","0.000000","180.800000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"568.250000",,"568.250000",,"568.250000",,"160.000000","0.000000",,,,,,,,,"33.500000","4275.750000","14718.000000","630.375000",,"149.250000",,,,"9.800000","16.125000","1.000000","3.000000","2.250000","0.000000","199.600000","0.000000","173.400000","26.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"497.250000",,"497.250000",,"497.250000",,"263.000000","0.000000",,,,,,,,,"38.250000","3743.750000","14730.750000","492.125000",,"132.625000",,,,"15.200000","25.500000","1.000000","2.333333","2.500000","0.000000","304.800000","0.000000","275.200000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"588.000000",,"588.000000",,"588.000000",,"196.500000","0.000000",,,,,,,,,"11.500000","4423.500000","14710.500000","32.625000",,"50.625000",,,,"5.400000","4.875000","1.333333","4.666667","4.875000","0.000000","110.800000","0.000000","55.400000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"459.500000",,"459.500000",,"459.500000",,"306.750000","0.000000",,,,,,,,,"39.750000","3458.750000","15256.750000","190.000000",,"342.750000",,,,"30.200000","45.750000","0.333333","2.666667","10.875000","0.000000","606.800000","0.000000","489.000000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"63.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"629.500000",,"629.500000",,"629.500000",,"188.000000","0.000000",,,,,,,,,"6.750000","4737.500000","14473.000000","0.000000",,"94.125000",,,,"4.400000","0.000000","0.000000","3.666667","8.250000","0.000000","90.000000","0.000000","0.200000","89.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"893.750000",,"893.750000",,"893.750000",,"182.750000","0.000000",,,,,,,,,"18.250000","6722.750000","12448.750000","71.250000",,"489.750000",,,,"14.600000","5.625000","1.000000","1.666667","21.375000","0.000000","293.200000","0.000000","63.200000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"84.000000","97.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1084.500000",,"1084.500000",,"1084.500000",,"314.500000","0.000000",,,,,,,,,"22.000000","8157.250000","9744.250000","77.250000",,"566.125000",,,,"12.800000","7.500000","1.000000","3.666667","16.500000","0.000000","259.200000","0.000000","80.200000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"56.000000","62.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1099.500000",,"1099.500000",,"1099.500000",,"230.000000","0.000000",,,,,,,,,"6.500000","8271.000000","9508.750000","1.125000",,"433.125000",,,,"2.200000","0.000000","5.333333","7.000000","4.125000","0.000000","46.200000","0.000000","1.200000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"82.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"936.250000",,"936.250000",,"936.250000",,"148.500000","0.000000",,,,,,,,,"7.750000","7041.500000","9505.750000","0.000000",,"432.375000",,,,"2.600000","0.000000","0.000000","6.000000","4.875000","0.000000","54.200000","0.000000","0.600000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"85.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1185.250000",,"1185.250000",,"1185.250000",,"212.750000","0.000000",,,,,,,,,"27.000000","8916.500000","9777.250000","42.125000",,"1180.375000",,,,"9.600000","5.000000","2.333333","12.333333","12.750000","0.000000","195.400000","0.000000","56.400000","139.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1209.750000",,"1209.750000",,"1209.750000",,"194.500000","0.000000",,,,,,,,,"13.750000","9099.000000","9606.500000","49.750000",,"394.125000",,,,"4.800000","4.500000","0.333333","5.666667","4.500000","0.000000","96.200000","0.000000","48.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1184.000000",,"1184.000000",,"1184.000000",,"220.000000","0.000000",,,,,,,,,"35.000000","8904.250000","9743.000000","75.750000",,"1512.250000",,,,"14.800000","7.500000","2.666667","19.333333","20.125000","0.000000","299.600000","0.000000","81.000000","218.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1193.250000",,"1193.250000",,"1193.250000",,"220.000000","0.000000",,,,,,,,,"7.250000","8977.000000","9522.750000","0.375000",,"383.625000",,,,"1.600000","0.000000","0.000000","11.666667","3.000000","0.000000","35.400000","0.000000","0.800000","34.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1256.750000",,"1256.750000",,"1256.750000",,"241.500000","0.000000",,,,,,,,,"8.500000","9451.250000","9538.000000","0.375000",,"548.250000",,,,"4.800000","0.000000","0.666667","11.666667","9.000000","0.000000","99.600000","0.000000","1.000000","98.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1177.500000",,"1177.500000",,"1177.500000",,"181.500000","0.000000",,,,,,,,,"2.750000","8856.500000","9524.000000","0.000000",,"337.375000",,,,"1.600000","0.000000","4.000000","18.666667","2.875000","0.000000","33.200000","0.000000","0.400000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1234.750000",,"1234.750000",,"1234.750000",,"238.500000","0.000000",,,,,,,,,"5.750000","9288.000000","9527.500000","0.000000",,"508.375000",,,,"2.400000","0.000000","0.000000","27.333333","4.500000","0.000000","51.200000","0.000000","0.000000","51.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1034.500000",,"1034.500000",,"1034.500000",,"240.000000","0.000000",,,,,,,,,"4.750000","7780.750000","9435.250000","0.000000",,"434.625000",,,,"3.000000","0.000000","0.000000","11.000000","5.625000","0.000000","61.200000","0.000000","0.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"911.750000",,"911.750000",,"911.750000",,"307.000000","0.000000",,,,,,,,,"6.000000","6859.000000","9366.000000","0.375000",,"288.250000",,,,"1.200000","0.000000","2.666667","11.000000","2.125000","0.000000","26.000000","0.000000","1.200000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"859.250000",,"859.250000",,"859.250000",,"348.750000","0.000000",,,,,,,,,"4.500000","6465.000000","9312.500000","0.000000",,"283.000000",,,,"2.000000","0.000000","6.666667","7.333333","3.750000","0.000000","43.200000","0.000000","0.400000","42.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"999.250000",,"999.250000",,"999.250000",,"360.750000","0.000000",,,,,,,,,"7.250000","7518.750000","9253.750000","0.125000",,"616.125000",,,,"2.800000","0.000000","1.333333","22.000000","5.250000","0.000000","59.800000","0.000000","0.600000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1148.000000",,"1148.000000",,"1148.000000",,"554.750000","0.000000",,,,,,,,,"6.250000","8635.750000","9197.000000","0.000000",,"393.625000",,,,"3.000000","0.000000","0.000000","21.000000","5.500000","0.000000","60.400000","0.000000","0.000000","60.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.750000",,"1077.750000",,"1077.750000",,"430.250000","0.000000",,,,,,,,,"4.250000","8109.250000","9216.750000","3.000000",,"324.750000",,,,"2.200000","0.000000","1.333333","13.666667","3.750000","0.000000","45.000000","0.000000","2.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"935.000000",,"935.000000",,"935.000000",,"278.250000","0.000000",,,,,,,,,"4.250000","7031.750000","9361.750000","1.500000",,"361.875000",,,,"2.200000","0.000000","1.000000","8.666667","4.000000","0.000000","47.200000","0.000000","2.600000","44.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"71.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1005.750000",,"1005.750000",,"1005.750000",,"231.750000","0.000000",,,,,,,,,"4.500000","7564.750000","9449.750000","1.500000",,"431.875000",,,,"2.600000","0.000000","5.666667","14.666667","4.750000","0.000000","55.400000","0.000000","1.400000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1214.000000",,"1214.000000",,"1214.000000",,"177.500000","0.000000",,,,,,,,,"4.000000","9132.500000","9522.000000","0.750000",,"422.500000",,,,"1.000000","0.000000","1.666667","16.666667","1.750000","0.000000","22.200000","0.000000","1.200000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"69.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1153.500000",,"1153.500000",,"1153.500000",,"202.000000","0.000000",,,,,,,,,"5.250000","8677.500000","9519.750000","0.750000",,"410.125000",,,,"2.200000","0.000000","6.000000","11.666667","4.000000","0.000000","47.200000","0.000000","1.200000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1273.000000",,"1273.000000",,"1273.000000",,"216.750000","0.000000",,,,,,,,,"4.500000","9574.500000","9517.750000","0.750000",,"337.000000",,,,"1.400000","0.000000","1.000000","14.000000","2.000000","0.000000","30.200000","0.000000","1.400000","28.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1401.000000",,"1401.000000",,"1401.000000",,"146.500000","0.000000",,,,,,,,,"9.000000","10537.750000","9641.750000","0.750000",,"552.375000",,,,"3.200000","0.000000","2.666667","12.666667","6.375000","0.000000","67.800000","0.000000","1.400000","66.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.250000",,"1077.250000",,"1077.250000",,"340.250000","0.000000",,,,,,,,,"6.250000","8103.250000","9389.500000","1.125000",,"403.875000",,,,"1.200000","0.000000","1.666667","28.333333","2.250000","0.000000","27.600000","0.000000","1.200000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1247.500000",,"1247.500000",,"1247.500000",,"144.500000","0.000000",,,,,,,,,"4.500000","9384.500000","9593.750000","0.750000",,"389.250000",,,,"1.600000","0.000000","2.333333","10.333333","2.875000","0.000000","34.000000","0.000000","0.800000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1179.000000",,"1179.000000",,"1179.000000",,"209.000000","0.000000",,,,,,,,,"4.500000","8866.750000","9529.500000","1.500000",,"500.250000",,,,"3.200000","0.000000","2.000000","10.000000","5.875000","0.000000","66.200000","0.000000","1.200000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"68.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1077.500000",,"1077.500000",,"1077.500000",,"381.500000","0.000000",,,,,,,,,"4.500000","8105.750000","9426.750000","0.750000",,"401.125000",,,,"1.600000","0.000000","2.666667","13.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1047.000000",,"1047.000000",,"1047.000000",,"306.750000","0.000000",,,,,,,,,"9.500000","7875.000000","9445.250000","1.875000",,"626.125000",,,,"2.800000","0.000000","15.333333","15.333333","5.250000","0.000000","59.200000","0.000000","2.200000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1169.500000",,"1169.500000",,"1169.500000",,"194.750000","0.000000",,,,,,,,,"7.000000","8796.000000","9571.000000","5.250000",,"440.250000",,,,"1.800000","0.375000","2.000000","16.000000","3.000000","0.000000","37.600000","0.000000","5.000000","32.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1152.000000",,"1152.000000",,"1152.000000",,"194.750000","0.000000",,,,,,,,,"6.500000","8668.250000","9542.500000","2.250000",,"387.375000",,,,"2.200000","0.250000","3.000000","14.000000","3.375000","0.000000","44.000000","0.000000","4.200000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"90.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1208.000000",,"1208.000000",,"1208.000000",,"258.000000","0.000000",,,,,,,,,"7.250000","9085.250000","9518.250000","2.125000",,"558.625000",,,,"2.200000","0.375000","3.666667","22.666667","3.625000","0.000000","46.200000","0.000000","5.200000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1289.500000",,"1289.500000",,"1289.500000",,"311.250000","0.000000",,,,,,,,,"14.000000","9698.250000","9481.750000","2.625000",,"954.250000",,,,"4.800000","0.375000","2.333333","15.333333","8.625000","0.000000","98.600000","0.000000","5.200000","93.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1233.000000",,"1233.000000",,"1233.000000",,"243.500000","0.000000",,,,,,,,,"50.000000","9275.500000","9567.250000","12.000000",,"4311.000000",,,,"16.200000","0.750000","1.333333","29.666667","29.375000","0.000000","326.400000","0.000000","11.000000","315.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1303.250000",,"1303.250000",,"1303.250000",,"285.000000","0.000000",,,,,,,,,"4.750000","9803.500000","9431.000000","2.625000",,"465.250000",,,,"1.600000","0.000000","2.000000","18.333333","3.000000","0.000000","35.000000","0.000000","1.400000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1176.250000",,"1176.250000",,"1176.250000",,"268.750000","0.000000",,,,,,,,,"21.500000","8848.500000","9592.250000","22.500000",,"653.250000",,,,"5.400000","2.250000","3.333333","17.666667","7.750000","0.000000","109.200000","0.000000","24.800000","84.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1040.000000",,"1040.000000",,"1040.000000",,"306.000000","0.000000",,,,,,,,,"164.750000","7822.750000","11172.250000","1767.000000",,"8112.375000",,,,"41.200000","31.875000","4.000000","28.000000","44.875000","0.000000","825.600000","0.000000","342.800000","482.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1200.250000",,"1200.250000",,"1200.250000",,"258.500000","0.000000",,,,,,,,,"8.750000","9026.750000","9451.500000","6.375000",,"359.250000",,,,"5.400000","0.375000","1.000000","5.000000","9.625000","0.000000","110.600000","0.000000","5.800000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.750000",,"1103.750000",,"1103.750000",,"174.000000","0.000000",,,,,,,,,"4.250000","8303.250000","9487.750000","1.875000",,"283.500000",,,,"3.000000","0.000000","0.333333","3.000000","5.625000","0.000000","63.800000","0.000000","2.800000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1052.500000",,"1052.500000",,"1052.500000",,"194.500000","0.000000",,,,,,,,,"6.000000","7917.500000","9537.000000","0.750000",,"419.250000",,,,"3.600000","0.000000","1.000000","6.333333","6.750000","0.000000","74.400000","0.000000","1.400000","73.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1119.250000",,"1119.250000",,"1119.250000",,"170.500000","0.000000",,,,,,,,,"4.250000","8421.500000","9519.750000","0.750000",,"297.625000",,,,"2.000000","0.000000","1.000000","5.666667","3.375000","0.000000","41.000000","0.000000","1.400000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1163.000000",,"1163.000000",,"1163.000000",,"268.250000","0.000000",,,,,,,,,"4.000000","8750.000000","9688.500000","4.875000",,"213.750000",,,,"2.000000","0.375000","1.000000","6.000000","3.000000","0.000000","42.200000","0.000000","6.800000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1135.750000",,"1135.750000",,"1135.750000",,"192.500000","0.000000",,,,,,,,,"5.250000","8544.250000","9544.250000","6.750000",,"414.250000",,,,"2.000000","0.375000","1.000000","7.000000","3.000000","0.000000","40.200000","0.000000","5.800000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1113.000000",,"1113.000000",,"1113.000000",,"230.750000","0.000000",,,,,,,,,"30.000000","8372.750000","9744.000000","343.125000",,"1490.875000",,,,"13.600000","11.875000","2.333333","14.666667","13.500000","0.000000","275.000000","0.000000","129.800000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1149.500000",,"1149.500000",,"1149.500000",,"391.000000","0.000000",,,,,,,,,"7.750000","8647.500000","9332.000000","0.750000",,"482.500000",,,,"2.600000","0.000000","1.000000","10.666667","4.875000","0.000000","55.000000","0.000000","0.800000","54.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1118.500000",,"1118.500000",,"1118.500000",,"456.250000","0.000000",,,,,,,,,"3.750000","8413.750000","9287.000000","3.000000",,"280.500000",,,,"1.600000","0.000000","0.666667","5.333333","2.625000","0.000000","33.000000","0.000000","3.800000","29.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1049.250000",,"1049.250000",,"1049.250000",,"376.500000","0.000000",,,,,,,,,"4.750000","7892.000000","9375.000000","0.750000",,"337.000000",,,,"1.600000","0.000000","0.666667","11.000000","3.000000","0.000000","35.000000","0.000000","0.800000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1070.500000",,"1070.500000",,"1070.500000",,"235.750000","0.000000",,,,,,,,,"13.000000","8053.000000","9540.750000","11.250000",,"898.125000",,,,"6.200000","1.125000","1.000000","13.000000","10.125000","0.000000","126.600000","0.000000","14.800000","111.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"879.000000",,"879.000000",,"879.000000",,"224.250000","0.000000",,,,,,,,,"3.250000","6611.250000","9439.250000","2.250000",,"261.375000",,,,"1.400000","0.000000","0.666667","3.666667","2.625000","0.000000","30.800000","0.000000","1.400000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1266.000000",,"1266.000000",,"1266.000000",,"245.250000","0.000000",,,,,,,,,"5.750000","9523.000000","9497.500000","1.500000",,"525.625000",,,,"2.800000","0.000000","1.000000","17.000000","5.250000","0.000000","58.400000","0.000000","1.600000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1192.250000",,"1192.250000",,"1192.250000",,"222.000000","0.000000",,,,,,,,,"39.500000","8970.000000","10132.750000","800.000000",,"926.500000",,,,"12.200000","17.125000","3.000000","24.333333","5.125000","0.000000","246.600000","0.000000","190.400000","56.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.250000",,"832.250000",,"832.250000",,"290.750000","0.000000",,,,,,,,,"138.750000","6261.000000","11618.250000","2486.375000",,"2502.125000",,,,"48.400000","63.125000","4.333333","17.000000","27.250000","0.000000","969.400000","0.000000","670.000000","299.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"890.250000",,"890.250000",,"890.250000",,"162.750000","0.000000",,,,,,,,,"37.500000","6698.000000","9728.250000","145.500000",,"2053.875000",,,,"13.200000","4.750000","2.666667","16.666667","20.500000","0.000000","267.200000","0.000000","52.000000","215.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1097.000000",,"1097.000000",,"1097.000000",,"226.000000","0.000000",,,,,,,,,"132.250000","8252.000000","10489.000000","1836.375000",,"5403.375000",,,,"32.000000","28.875000","4.000000","54.333333","30.625000","0.000000","641.600000","0.000000","310.400000","331.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1106.000000",,"1106.000000",,"1106.000000",,"233.250000","0.000000",,,,,,,,,"59.750000","8320.750000","9779.500000","235.375000",,"3152.500000",,,,"14.800000","6.000000","7.333333","26.000000","21.750000","0.000000","298.000000","0.000000","65.400000","232.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"919.500000",,"919.500000",,"919.500000",,"218.000000","0.000000",,,,,,,,,"132.750000","6918.250000","11311.000000","2017.875000",,"4981.875000",,,,"52.800000","42.500000","3.333333","14.333333","56.250000","0.000000","1058.800000","0.000000","456.400000","602.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"721.500000",,"721.500000",,"721.500000",,"245.750000","0.000000",,,,,,,,,"199.250000","5428.500000","13670.500000","5626.000000",,"1585.000000",,,,"75.600000","124.000000","3.000000","14.666667","17.500000","0.000000","1513.400000","0.000000","1324.800000","188.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"692.500000",,"692.500000",,"692.500000",,"240.750000","0.000000",,,,,,,,,"185.250000","5208.500000","13591.750000","5036.625000",,"3171.750000",,,,"67.800000","103.875000","2.333333","40.000000","22.875000","0.000000","1356.600000","0.000000","1111.000000","245.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"391.250000","0.000000",,,,,,,,,"118.000000","4800.750000","11860.500000","3595.750000",,"1887.250000",,,,"57.200000","83.125000","3.333333","18.666667","23.750000","0.000000","1145.600000","0.000000","887.800000","257.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.250000",,"884.250000",,"884.250000",,"164.500000","0.000000",,,,,,,,,"60.500000","6650.750000","9566.000000","20.875000",,"4638.875000",,,,"19.600000","2.250000","4.000000","23.333333","34.375000","0.000000","394.400000","0.000000","26.600000","367.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"888.500000",,"888.500000",,"888.500000",,"198.000000","0.000000",,,,,,,,,"29.750000","6684.250000","9823.250000","97.125000",,"1653.000000",,,,"11.600000","8.125000","3.000000","26.333333","13.125000","0.000000","233.400000","0.000000","90.000000","143.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"49.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"770.750000",,"770.750000",,"770.750000",,"347.000000","0.000000",,,,,,,,,"35.500000","5800.750000","9857.250000","99.250000",,"1902.375000",,,,"20.200000","11.500000","3.333333","14.333333","26.250000","0.000000","406.600000","0.000000","124.000000","282.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"773.750000",,"773.750000",,"773.750000",,"366.000000","0.000000",,,,,,,,,"36.250000","5821.250000","9557.250000","81.375000",,"2123.125000",,,,"9.800000","6.625000","3.666667","21.666667","11.625000","0.000000","198.200000","0.000000","72.000000","126.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"776.000000",,"776.000000",,"776.000000",,"146.500000","0.000000",,,,,,,,,"97.500000","5839.500000","9938.250000","144.375000",,"6435.750000",,,,"43.800000","7.750000","2.666667","16.666667","74.125000","0.000000","878.400000","0.000000","84.800000","793.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"830.000000",,"830.000000",,"830.000000",,"173.500000","0.000000",,,,,,,,,"96.000000","6245.000000","9766.500000","166.625000",,"6922.000000",,,,"37.000000","5.500000","3.333333","14.333333","63.625000","0.000000","740.600000","0.000000","60.600000","680.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"845.000000",,"845.000000",,"845.000000",,"176.250000","0.000000",,,,,,,,,"61.500000","6355.500000","9618.000000","511.500000",,"3904.125000",,,,"21.800000","15.000000","2.333333","30.666667","25.125000","0.000000","436.000000","0.000000","161.200000","274.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"546.500000",,"546.500000",,"546.500000",,"192.750000","0.000000",,,,,,,,,"152.000000","4113.250000","13040.250000","4297.875000",,"3844.875000",,,,"65.600000","83.250000","1.666667","19.666667","39.750000","0.000000","1312.800000","0.000000","891.000000","421.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"571.000000",,"571.000000",,"571.000000",,"202.000000","0.000000",,,,,,,,,"153.500000","4297.250000","12469.250000","5664.375000",,"572.500000",,,,"77.400000","137.750000","1.666667","10.666667","6.375000","0.000000","1549.400000","0.000000","1478.000000","71.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"16.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"599.000000",,"599.000000",,"599.000000",,"167.000000","0.000000",,,,,,,,,"170.000000","4509.000000","12168.500000","5083.000000",,"3655.375000",,,,"65.000000","99.500000","2.000000","61.000000","22.000000","0.000000","1300.800000","0.000000","1061.200000","239.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.500000",,"856.500000",,"856.500000",,"170.000000","0.000000",,,,,,,,,"34.250000","6444.250000","9763.500000","436.000000",,"778.125000",,,,"16.600000","20.875000","1.333333","19.666667","10.375000","0.000000","335.600000","0.000000","221.400000","114.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"844.750000",,"844.750000",,"844.750000",,"151.250000","0.000000",,,,,,,,,"9.000000","6356.000000","9453.000000","108.625000",,"234.375000",,,,"3.400000","1.875000","2.333333","6.666667","4.375000","0.000000","70.600000","0.000000","22.600000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"927.250000",,"927.250000",,"927.250000",,"272.000000","0.000000",,,,,,,,,"92.500000","6976.000000","10669.250000","3851.000000",,"289.375000",,,,"32.800000","59.000000","1.666667","8.666667","2.125000","0.000000","658.600000","0.000000","634.600000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"92.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"862.250000",,"862.250000",,"862.250000",,"178.500000","0.000000",,,,,,,,,"233.000000","6485.750000","13051.000000","8340.375000",,"213.375000",,,,"90.000000","164.250000","1.666667","3.000000","4.125000","0.000000","1800.600000","0.000000","1754.200000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"152.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"738.000000",,"738.000000",,"738.000000",,"443.750000","0.000000",,,,,,,,,"192.500000","5551.000000","11826.750000","6543.750000",,"3211.125000",,,,"77.200000","128.625000","1.666667","26.666667","16.125000","0.000000","1545.600000","0.000000","1369.800000","175.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"879.000000",,"879.000000",,"879.000000",,"351.750000","0.000000",,,,,,,,,"123.000000","6611.750000","10663.500000","3568.500000",,"2447.625000",,,,"51.600000","73.875000","2.333333","14.000000","22.500000","0.000000","1033.800000","0.000000","790.600000","243.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1041.250000",,"1041.250000",,"1041.250000",,"264.000000","0.000000",,,,,,,,,"2.000000","7831.500000","9382.250000","1.875000",,"205.125000",,,,"2.000000","0.000000","0.333333","4.666667","3.375000","0.000000","41.200000","0.000000","2.800000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1236.000000",,"1236.000000",,"1236.000000",,"258.000000","0.000000",,,,,,,,,"4.000000","9296.000000","9467.250000","3.000000",,"248.500000",,,,"1.000000","0.375000","1.000000","6.333333","1.375000","0.000000","21.600000","0.000000","4.400000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1147.500000",,"1147.500000",,"1147.500000",,"239.250000","0.000000",,,,,,,,,"9.000000","8632.750000","9486.000000","10.125000",,"353.250000",,,,"3.400000","1.125000","2.666667","7.000000","4.875000","0.000000","70.600000","0.000000","15.200000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"838.000000",,"838.000000",,"838.000000",,"317.500000","0.000000",,,,,,,,,"7.000000","6305.750000","9348.750000","2.250000",,"428.250000",,,,"2.400000","0.250000","3.333333","12.000000","4.000000","0.000000","49.200000","0.000000","4.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"972.250000",,"972.250000",,"972.250000",,"284.000000","0.000000",,,,,,,,,"5.250000","7314.250000","9480.000000","5.375000",,"275.625000",,,,"1.800000","0.750000","3.000000","8.000000","2.500000","0.000000","39.600000","0.000000","11.600000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"757.500000",,"757.500000",,"757.500000",,"294.250000","0.000000",,,,,,,,,"128.250000","5700.250000","13223.750000","5434.500000",,"328.500000",,,,"54.800000","99.375000","1.666667","9.333333","2.250000","0.000000","1096.200000","0.000000","1068.600000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"301.750000",,"301.750000",,"301.750000",,"157.250000","0.000000",,,,,,,,,"201.000000","2272.500000","17358.750000","7626.250000",,"23.250000",,,,"83.200000","153.750000","1.666667","0.666667","2.250000","0.000000","1665.400000","0.000000","1638.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"340.250000",,"340.250000",,"340.250000",,"174.500000","0.000000",,,,,,,,,"219.000000","2562.250000","16424.250000","6782.375000",,"3898.125000",,,,"74.000000","122.500000","1.666667","47.666667","15.750000","0.000000","1482.400000","0.000000","1311.000000","171.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"246.750000",,"246.750000",,"246.750000",,"209.750000","0.000000",,,,,,,,,"137.750000","1859.500000","16981.500000","2947.875000",,"2074.875000",,,,"73.800000","120.125000","2.666667","15.333333","17.625000","0.000000","1479.800000","0.000000","1288.400000","191.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","30.000000",,,,,,,,,"145.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"164.250000",,"164.250000",,"164.250000",,"134.000000","0.000000",,,,,,,,,"336.000000","1238.500000","18437.250000","9678.250000",,"8990.250000",,,,"137.200000","222.500000","3.000000","23.000000","34.750000","0.000000","2746.400000","0.000000","2372.200000","374.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","10.000000",,,,,,,,,"64.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.250000",,"179.250000",,"179.250000",,"205.250000","0.000000",,,,,,,,,"318.750000","1351.000000","17913.500000","8686.125000",,"10420.000000",,,,"127.600000","208.750000","1.666667","34.000000","30.375000","0.000000","2552.400000","0.000000","2226.400000","326.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"114.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"137.750000",,"137.750000",,"137.750000",,"147.000000","0.000000",,,,,,,,,"38.250000","1037.750000","18180.000000","631.625000",,"152.750000",,,,"23.200000","31.250000","2.000000","1.666667","11.875000","0.000000","465.600000","0.000000","334.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"89.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"131.750000",,"131.750000",,"131.750000",,"214.000000","0.000000",,,,,,,,,"18.750000","994.250000","17890.000000","45.250000",,"106.000000",,,,"6.400000","3.375000","1.333333","1.666667","8.625000","0.000000","131.800000","0.000000","37.600000","94.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","11.000000",,,,,,,,,"2409.000000","2501.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"272.750000",,"272.750000",,"272.750000",,"234.000000","0.000000",,,,,,,,,"77.250000","2053.250000","16793.000000","27.000000",,"4003.875000",,,,"23.800000","1.500000","7.666667","23.000000","43.000000","0.000000","479.400000","0.000000","18.600000","460.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1986.000000","19.000000",,,,,,,,,"27730.000000","3613.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"139.000000",,"139.000000",,"139.000000",,"160.750000","0.000000",,,,,,,,,"6.250000","1049.000000","18475.000000","15.375000",,"202.750000",,,,"4.000000","0.750000","3.333333","2.666667","6.250000","0.000000","80.000000","0.000000","10.400000","69.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"202.000000",,"202.000000",,"202.000000",,"169.750000","0.000000",,,,,,,,,"4.750000","1521.250000","17906.250000","6.750000",,"129.750000",,,,"5.400000","0.000000","3.333333","1.666667","9.750000","0.000000","109.800000","0.000000","2.200000","107.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"109.250000",,"109.250000",,"109.250000",,"169.500000","0.000000",,,,,,,,,"4.250000","825.500000","18638.750000","2.250000",,"69.750000",,,,"2.200000","0.000000","1.333333","1.333333","4.125000","0.000000","46.800000","0.000000","0.400000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"49.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"140.750000","0.000000",,,,,,,,,"1.250000","453.500000","19198.500000","0.000000",,"42.625000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"103.500000","0.000000",,,,,,,,,"1.750000","510.750000","19209.750000","0.000000",,"43.875000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.600000","0.000000","0.400000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"96.500000","0.000000",,,,,,,,,"1.250000","453.750000","19397.250000","0.000000",,"20.625000",,,,"0.800000","0.000000","0.000000","13.666667","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"113.250000","0.000000",,,,,,,,,"1.000000","445.750000","19323.000000","0.000000",,"18.000000",,,,"0.800000","0.000000","0.000000","87.333333","1.500000","0.000000","19.800000","0.000000","0.200000","19.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.750000",,"70.750000",,"70.750000",,"101.500000","0.000000",,,,,,,,,"1.250000","536.750000","19283.250000","0.000000",,"36.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"126.500000","0.000000",,,,,,,,,"0.750000","452.750000","19248.250000","0.000000",,"27.625000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"118.250000","0.000000",,,,,,,,,"0.750000","441.750000","19263.250000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","0.000000","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"88.250000",,"88.250000",,"88.250000",,"112.000000","0.000000",,,,,,,,,"3.250000","667.500000","19030.000000","0.000000",,"88.125000",,,,"3.800000","0.000000","0.000000","0.333333","7.125000","0.000000","79.800000","0.000000","0.200000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"106.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"177.000000",,"177.000000",,"177.000000",,"171.750000","0.000000",,,,,,,,,"10.500000","1333.750000","17748.750000","16.500000",,"162.250000",,,,"7.400000","1.375000","2.333333","1.333333","12.250000","0.000000","148.000000","0.000000","16.400000","131.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"455.000000","544.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"255.250000",,"255.250000",,"255.250000",,"181.250000","0.000000",,,,,,,,,"19.750000","1923.000000","16834.000000","14.500000",,"317.875000",,,,"9.000000","0.625000","1.333333","3.000000","16.000000","0.000000","181.800000","0.000000","8.200000","173.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","15.000000",,,,,,,,,"2880.000000","3071.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"242.500000",,"242.500000",,"242.500000",,"123.750000","0.000000",,,,,,,,,"42.750000","1827.250000","17293.500000","0.250000",,"3283.000000",,,,"15.600000","0.000000","2.666667","19.000000","28.875000","0.000000","313.000000","0.000000","1.200000","311.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","5.000000",,,,,,,,,"1035.000000","1113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.250000",,"179.250000",,"179.250000",,"286.500000","0.000000",,,,,,,,,"3.750000","1353.000000","17748.250000","0.625000",,"218.625000",,,,"4.000000","0.000000","4.333333","2.333333","7.375000","0.000000","82.200000","0.000000","2.000000","80.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"108.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"112.750000",,"112.750000",,"112.750000",,"301.000000","0.000000",,,,,,,,,"2.500000","850.750000","18167.250000","0.000000",,"90.375000",,,,"3.800000","0.000000","0.333333","4.333333","7.000000","0.000000","77.800000","0.000000","0.200000","77.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"151.750000",,"151.750000",,"151.750000",,"213.500000","0.000000",,,,,,,,,"2.500000","1145.750000","17743.750000","0.000000",,"100.875000",,,,"3.600000","0.000000","0.000000","1.000000","6.625000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"173.500000","0.000000",,,,,,,,,"1.500000","452.500000","19107.750000","0.000000",,"46.125000",,,,"2.000000","0.000000","0.000000","3.000000","3.625000","0.000000","42.600000","0.000000","0.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"177.250000","0.000000",,,,,,,,,"0.500000","460.000000","19198.000000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"160.250000","0.000000",,,,,,,,,"1.250000","486.250000","19026.000000","0.000000",,"37.500000",,,,"1.400000","0.000000","0.000000","0.333333","2.625000","0.000000","29.000000","0.000000","0.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"112.250000","0.000000",,,,,,,,,"0.750000","438.000000","19373.000000","0.000000",,"13.875000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"191.250000","0.000000",,,,,,,,,"0.500000","412.750000","18993.500000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"118.750000","0.000000",,,,,,,,,"2.000000","480.000000","19166.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.000000","2.875000","0.000000","35.200000","0.000000","0.200000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"132.000000","0.000000",,,,,,,,,"0.250000","404.000000","19248.000000","0.000000",,"8.125000",,,,"0.200000","0.000000","0.000000","0.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"157.000000","0.000000",,,,,,,,,"0.750000","408.500000","19278.250000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"132.250000","0.000000",,,,,,,,,"2.000000","497.750000","19234.000000","0.000000",,"48.750000",,,,"2.000000","0.000000","0.000000","1.333333","3.750000","0.000000","42.200000","0.000000","0.000000","42.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"111.750000","0.000000",,,,,,,,,"7.750000","1097.750000","18184.750000","0.250000",,"156.625000",,,,"7.000000","0.000000","6.000000","1.333333","12.000000","0.000000","142.000000","0.000000","1.400000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"488.000000","586.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"154.750000",,"154.750000",,"154.750000",,"149.250000","0.000000",,,,,,,,,"6.000000","1169.500000","17919.750000","52.875000",,"103.375000",,,,"5.400000","3.000000","0.333333","1.000000","7.625000","0.000000","110.200000","0.000000","35.800000","74.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"97.500000",,"97.500000",,"97.500000",,"228.250000","0.000000",,,,,,,,,"2.000000","735.750000","18442.500000","12.375000",,"65.625000",,,,"2.600000","0.375000","1.666667","2.333333","4.125000","0.000000","54.200000","0.000000","7.600000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","95.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"127.500000",,"127.500000",,"127.500000",,"120.250000","0.000000",,,,,,,,,"6.500000","963.000000","18459.500000","4.875000",,"124.750000",,,,"5.600000","0.000000","4.666667","2.000000","10.375000","0.000000","112.800000","0.000000","0.800000","112.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"64.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"112.500000",,"112.500000",,"112.500000",,"156.750000","0.000000",,,,,,,,,"3.250000","850.250000","18498.250000","0.000000",,"55.875000",,,,"1.800000","0.000000","0.000000","1.000000","3.375000","0.000000","39.000000","0.000000","0.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","419.500000","19175.750000","0.000000",,"39.375000",,,,"2.000000","0.000000","1.333333","1.333333","3.750000","0.000000","42.800000","0.000000","0.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"157.500000","0.000000",,,,,,,,,"1.250000","452.750000","19200.500000","12.625000",,"18.750000",,,,"1.600000","1.000000","2.000000","1.000000","1.375000","0.000000","34.800000","0.000000","15.800000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"164.500000","0.000000",,,,,,,,,"13.250000","516.500000","19016.500000","241.000000",,"34.875000",,,,"6.600000","10.625000","1.666667","0.333333","1.375000","0.000000","133.000000","0.000000","114.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"246.000000","302.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"142.000000","0.000000",,,,,,,,,"1.000000","422.000000","19207.750000","0.000000",,"33.375000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","38.400000","0.000000","0.000000","38.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"106.500000","0.000000",,,,,,,,,"0.750000","416.750000","19279.250000","0.000000",,"13.500000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.400000","0.000000","0.000000","10.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"114.250000","0.000000",,,,,,,,,"2.000000","427.000000","19296.000000","0.000000",,"19.500000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"111.000000","0.000000",,,,,,,,,"4.000000","433.000000","19307.500000","0.000000",,"16.125000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.600000","0.000000","0.000000","11.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"102.750000","0.000000",,,,,,,,,"1.750000","447.750000","19294.000000","0.000000",,"16.000000",,,,"0.800000","0.000000","2.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.200000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"125.250000","0.000000",,,,,,,,,"0.750000","423.500000","19229.250000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"108.250000",,"108.250000",,"108.250000",,"127.000000","0.000000",,,,,,,,,"7.500000","817.750000","18757.500000","2.625000",,"126.000000",,,,"5.600000","0.000000","6.000000","6.333333","9.875000","0.000000","112.400000","0.000000","0.800000","111.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"405.000000","480.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"160.750000",,"160.750000",,"160.750000",,"144.500000","0.000000",,,,,,,,,"4.750000","1212.750000","17988.000000","1.875000",,"127.125000",,,,"5.000000","0.000000","0.666667","22.333333","9.500000","0.000000","103.600000","0.000000","2.000000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"245.000000","290.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"222.750000",,"222.750000",,"222.750000",,"117.750000","0.000000",,,,,,,,,"15.750000","1680.250000","17308.250000","0.000000",,"297.000000",,,,"8.200000","0.000000","1.000000","7.666667","15.250000","0.000000","165.000000","0.000000","0.400000","164.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","9.000000",,,,,,,,,"1570.000000","1763.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.750000",,"68.750000",,"68.750000",,"138.750000","0.000000",,,,,,,,,"5.000000","523.000000","19175.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","3.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.000000","3.000000",,,,,,,,,"732.000000","729.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.500000",,"64.500000",,"64.500000",,"239.250000","0.000000",,,,,,,,,"4.000000","487.250000","18849.250000","0.000000",,"3.000000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","4.000000",,,,,,,,,"842.000000","842.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"228.000000",,"228.000000",,"228.000000",,"189.500000","0.000000",,,,,,,,,"35.000000","1717.250000","17721.000000","1.875000",,"1793.250000",,,,"10.200000","0.000000","2.666667","21.000000","18.750000","0.000000","206.600000","0.000000","3.600000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1035.000000","13.000000",,,,,,,,,"14803.000000","2489.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"122.250000",,"122.250000",,"122.250000",,"247.500000","0.000000",,,,,,,,,"5.250000","922.750000","18285.250000","2.250000",,"126.750000",,,,"5.800000","0.000000","0.666667","1.666667","10.750000","0.000000","119.600000","0.000000","1.800000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"158.000000","188.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"182.500000","0.000000",,,,,,,,,"0.750000","501.750000","19063.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.800000","0.000000","0.000000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.750000",,"69.750000",,"69.750000",,"160.000000","0.000000",,,,,,,,,"11.500000","527.250000","19121.250000","372.750000",,"24.375000",,,,"4.400000","6.000000","2.333333","1.000000","2.250000","0.000000","91.400000","0.000000","66.200000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"386.000000","433.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.500000",,"162.500000",,"162.500000",,"147.500000","0.000000",,,,,,,,,"28.250000","1224.000000","18232.250000","581.125000",,"52.375000",,,,"25.600000","44.500000","0.666667","1.000000","3.250000","0.000000","512.800000","0.000000","476.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"160.000000","175.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"118.250000","0.000000",,,,,,,,,"1.000000","422.250000","19271.500000","0.000000",,"28.000000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"115.500000","0.000000",,,,,,,,,"0.500000","410.500000","19302.000000","0.000000",,"36.625000",,,,"0.600000","0.000000","0.000000","1.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"124.750000","0.000000",,,,,,,,,"2.250000","495.000000","19173.250000","0.000000",,"46.000000",,,,"1.600000","0.000000","0.000000","0.333333","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"113.500000","0.000000",,,,,,,,,"0.750000","405.250000","19295.750000","0.000000",,"28.000000",,,,"1.200000","0.000000","0.000000","11.333333","2.125000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"108.750000","0.000000",,,,,,,,,"0.500000","402.750000","19357.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","0.666667","0.625000","0.000000","9.200000","0.000000","0.000000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"126.250000","0.000000",,,,,,,,,"1.500000","511.000000","19204.500000","0.000000",,"54.750000",,,,"2.200000","0.000000","1.333333","0.666667","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"146.500000","0.000000",,,,,,,,,"15.750000","1197.000000","18123.250000","6.750000",,"230.125000",,,,"10.200000","0.375000","0.333333","0.333333","18.375000","0.000000","206.400000","0.000000","7.400000","199.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","7.000000",,,,,,,,,"929.000000","1171.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"130.500000","0.000000",,,,,,,,,"5.750000","1113.250000","18286.500000","1.500000",,"143.125000",,,,"5.400000","0.000000","2.666667","1.000000","10.000000","0.000000","109.800000","0.000000","0.400000","109.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"212.000000","244.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"120.750000","0.000000",,,,,,,,,"1.000000","497.000000","19167.000000","0.000000",,"30.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"153.500000","0.000000",,,,,,,,,"1.000000","406.500000","19257.500000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"94.250000","0.000000",,,,,,,,,"1.000000","434.250000","19351.750000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","5.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.500000",,"116.500000",,"116.500000",,"125.250000","0.000000",,,,,,,,,"14.250000","881.000000","18691.500000","158.625000",,"62.625000",,,,"9.800000","15.000000","0.333333","0.666667","2.875000","0.000000","197.000000","0.000000","163.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"224.500000","0.000000",,,,,,,,,"1.000000","405.500000","19090.750000","0.000000",,"23.250000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"190.500000","0.000000",,,,,,,,,"0.500000","413.750000","19097.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","2.666667","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"160.500000","0.000000",,,,,,,,,"1.000000","500.000000","19105.000000","0.000000",,"45.750000",,,,"1.800000","0.000000","0.000000","3.000000","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"130.250000","0.000000",,,,,,,,,"0.500000","389.750000","19273.750000","0.000000",,"10.375000",,,,"0.200000","0.000000","0.000000","6.666667","0.375000","0.000000","7.400000","0.000000","0.000000","7.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"124.500000","0.000000",,,,,,,,,"1.000000","420.500000","19223.500000","0.000000",,"25.000000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.200000","0.000000","0.000000","24.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.000000",,"147.000000",,"147.000000",,"151.500000","0.000000",,,,,,,,,"6.250000","1111.500000","18403.250000","0.750000",,"118.750000",,,,"5.000000","0.000000","1.666667","1.000000","9.250000","0.000000","100.800000","0.000000","0.600000","100.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"78.250000",,"78.250000",,"78.250000",,"139.000000","0.000000",,,,,,,,,"2.500000","591.250000","19009.500000","0.000000",,"57.750000",,,,"1.800000","0.000000","0.000000","0.666667","3.250000","0.000000","36.800000","0.000000","0.000000","36.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.500000",,"58.500000",,"58.500000",,"123.250000","0.000000",,,,,,,,,"1.000000","443.500000","19295.500000","0.000000",,"30.375000",,,,"1.200000","0.000000","0.000000","3.666667","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"121.000000","0.000000",,,,,,,,,"1.000000","512.500000","19125.250000","0.000000",,"33.000000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"155.500000","0.000000",,,,,,,,,"3.250000","421.250000","19143.000000","0.000000",,"23.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"114.500000","0.000000",,,,,,,,,"0.500000","431.000000","19341.000000","0.000000",,"20.625000",,,,"0.600000","0.000000","0.000000","5.000000","1.000000","0.000000","13.200000","0.000000","0.000000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"129.500000","0.000000",,,,,,,,,"2.000000","497.000000","19211.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","12.333333","2.500000","0.000000","29.400000","0.000000","0.000000","29.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"189.500000","0.000000",,,,,,,,,"5.000000","412.250000","19131.250000","0.000000",,"20.625000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.400000","0.000000","0.000000","23.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"261.750000","0.000000",,,,,,,,,"1.250000","394.250000","19025.000000","0.000000",,"11.125000",,,,"0.200000","0.000000","0.000000","1.333333","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.750000",,"66.750000",,"66.750000",,"311.750000","0.000000",,,,,,,,,"1.750000","506.000000","18766.000000","3.375000",,"51.375000",,,,"2.200000","0.375000","0.666667","9.000000","3.750000","0.000000","45.800000","0.000000","4.400000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"102.250000",,"102.250000",,"102.250000",,"346.000000","0.000000",,,,,,,,,"3.250000","772.750000","18513.500000","0.000000",,"61.875000",,,,"3.000000","0.000000","1.000000","1.333333","5.625000","0.000000","63.000000","0.000000","0.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"288.000000","0.000000",,,,,,,,,"5.250000","897.500000","18532.750000","1.875000",,"131.875000",,,,"4.400000","0.000000","2.000000","1.333333","8.250000","0.000000","91.000000","0.000000","0.600000","90.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"187.250000","0.000000",,,,,,,,,"1.250000","486.500000","19063.500000","0.000000",,"29.625000",,,,"1.000000","0.000000","0.000000","18.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"150.500000","0.000000",,,,,,,,,"0.500000","413.000000","19210.000000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.500000",,"59.500000",,"59.500000",,"128.250000","0.000000",,,,,,,,,"2.000000","452.250000","19229.000000","0.000000",,"26.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.000000",,"71.000000",,"71.000000",,"124.250000","0.000000",,,,,,,,,"2.250000","535.750000","19193.250000","0.375000",,"51.750000",,,,"2.000000","0.000000","2.666667","3.666667","3.750000","0.000000","40.800000","0.000000","0.200000","40.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.250000",,"52.250000",,"52.250000",,"171.000000","0.000000",,,,,,,,,"1.250000","396.250000","19177.500000","0.000000",,"16.000000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","16.200000","0.000000","0.000000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"120.500000","0.000000",,,,,,,,,"0.250000","415.500000","19324.000000","0.000000",,"17.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","14.000000","0.000000","0.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"203.500000","0.000000",,,,,,,,,"1.750000","504.750000","19065.000000","0.000000",,"45.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","34.200000","0.000000","0.000000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"387.000000","0.000000",,,,,,,,,"0.500000","413.750000","18961.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.200000","0.000000","0.000000","5.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"285.000000","0.000000",,,,,,,,,"0.750000","417.750000","19037.250000","0.000000",,"24.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"514.750000","0.000000",,,,,,,,,"6.500000","1279.000000","17760.500000","2.125000",,"140.625000",,,,"4.800000","0.000000","8.333333","0.666667","8.875000","0.000000","98.400000","0.000000","1.600000","96.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"115.250000",,"115.250000",,"115.250000",,"424.500000","0.000000",,,,,,,,,"3.000000","871.250000","18358.250000","0.000000",,"104.250000",,,,"4.200000","0.000000","0.000000","1.333333","7.875000","0.000000","86.200000","0.000000","0.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.000000",,"145.000000",,"145.000000",,"234.000000","0.000000",,,,,,,,,"5.000000","1094.750000","18246.250000","0.000000",,"106.500000",,,,"4.400000","0.000000","0.000000","1.666667","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"115.500000",,"115.500000",,"115.500000",,"241.750000","0.000000",,,,,,,,,"2.250000","871.750000","18636.250000","0.000000",,"90.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","55.400000","0.000000","0.000000","55.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"140.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"151.000000",,"151.000000",,"151.000000",,"400.500000","0.000000",,,,,,,,,"4.250000","1139.750000","17702.000000","1.125000",,"117.750000",,,,"4.600000","0.000000","0.666667","1.333333","8.500000","0.000000","94.000000","0.000000","1.400000","92.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.750000",,"71.750000",,"71.750000",,"309.250000","0.000000",,,,,,,,,"1.750000","540.000000","18743.000000","0.375000",,"73.875000",,,,"2.200000","0.000000","2.000000","1.000000","4.000000","0.000000","45.000000","0.000000","0.200000","44.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"218.000000","0.000000",,,,,,,,,"1.750000","499.250000","19000.500000","0.000000",,"49.000000",,,,"2.200000","0.000000","0.000000","2.000000","4.000000","0.000000","45.000000","0.000000","0.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"267.250000","0.000000",,,,,,,,,"0.500000","411.750000","19043.500000","0.000000",,"9.000000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"236.000000","0.000000",,,,,,,,,"0.500000","413.500000","19090.750000","0.000000",,"27.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"221.000000","0.000000",,,,,,,,,"3.000000","492.250000","18910.000000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","35.400000","0.000000","0.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"160.500000","0.000000",,,,,,,,,"0.250000","393.250000","19235.250000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.250000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"146.250000","0.000000",,,,,,,,,"1.000000","421.750000","19215.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"253.000000","0.000000",,,,,,,,,"0.750000","490.000000","18851.750000","0.000000",,"33.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"285.250000","0.000000",,,,,,,,,"0.500000","401.250000","19002.750000","0.000000",,"15.625000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","15.600000","0.000000","0.000000","15.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"265.000000","0.000000",,,,,,,,,"1.500000","416.000000","19001.750000","0.000000",,"34.500000",,,,"1.200000","0.000000","0.000000","0.000000","2.125000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.500000",,"61.500000",,"61.500000",,"403.500000","0.000000",,,,,,,,,"1.250000","464.250000","18667.500000","0.000000",,"48.250000",,,,"2.200000","0.000000","0.000000","0.666667","4.000000","0.000000","45.200000","0.000000","0.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"196.500000","0.000000",,,,,,,,,"1.250000","460.500000","19128.000000","0.375000",,"25.875000",,,,"1.000000","0.000000","2.333333","1.000000","1.750000","0.000000","21.800000","0.000000","0.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"414.250000","0.000000",,,,,,,,,"0.500000","407.750000","18876.250000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"547.750000","0.000000",,,,,,,,,"1.250000","478.250000","18546.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","34.400000","0.000000","0.000000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"584.750000","0.000000",,,,,,,,,"0.750000","385.250000","18552.500000","0.000000",,"22.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"49.000000",,"49.000000",,"49.000000",,"543.750000","0.000000",,,,,,,,,"0.500000","370.750000","18663.250000","0.000000",,"16.000000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"304.250000","0.000000",,,,,,,,,"1.750000","498.250000","18846.500000","0.000000",,"34.875000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"174.750000","0.000000",,,,,,,,,"2.250000","433.750000","19198.000000","0.000000",,"26.875000",,,,"1.400000","0.000000","0.000000","0.666667","2.500000","0.000000","28.200000","0.000000","0.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"229.250000","0.000000",,,,,,,,,"0.500000","401.500000","19091.000000","0.000000",,"10.125000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.250000",,"66.250000",,"66.250000",,"145.500000","0.000000",,,,,,,,,"1.250000","502.750000","19121.000000","0.000000",,"42.750000",,,,"1.800000","0.000000","0.000000","1.333333","3.250000","0.000000","36.200000","0.000000","0.000000","36.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"166.750000","0.000000",,,,,,,,,"2.500000","516.500000","19013.500000","0.000000",,"75.250000",,,,"4.200000","0.000000","0.000000","0.666667","7.750000","0.000000","87.200000","0.000000","0.000000","87.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"234.000000","0.000000",,,,,,,,,"5.000000","1277.250000","18109.250000","2.625000",,"150.375000",,,,"4.800000","0.000000","0.333333","0.666667","8.875000","0.000000","99.400000","0.000000","3.200000","96.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"41.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"186.500000","0.000000",,,,,,,,,"2.000000","512.250000","19046.000000","0.000000",,"61.125000",,,,"2.600000","0.000000","0.000000","1.333333","4.750000","0.000000","53.400000","0.000000","0.000000","53.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"187.750000","0.000000",,,,,,,,,"0.500000","384.750000","19146.000000","0.000000",,"13.000000",,,,"0.400000","0.000000","0.000000","2.000000","0.625000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"183.250000","0.000000",,,,,,,,,"0.750000","423.000000","19142.750000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"293.000000","0.000000",,,,,,,,,"1.000000","479.750000","18797.250000","0.000000",,"37.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.125000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"252.000000","0.000000",,,,,,,,,"1.250000","399.250000","19075.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"206.500000","0.000000",,,,,,,,,"1.000000","413.000000","19127.250000","0.000000",,"18.000000",,,,"0.400000","0.000000","0.000000","2.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"225.000000","0.000000",,,,,,,,,"1.000000","497.500000","18920.250000","0.000000",,"42.000000",,,,"1.800000","0.000000","0.000000","0.666667","3.375000","0.000000","37.600000","0.000000","0.000000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"157.250000","0.000000",,,,,,,,,"0.750000","405.250000","19162.750000","0.000000",,"15.375000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"132.250000","0.000000",,,,,,,,,"0.750000","424.000000","19264.000000","0.000000",,"21.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.000000","0.000000","13.400000","0.000000","0.000000","13.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"85.000000",,"85.000000",,"85.000000",,"215.750000","0.000000",,,,,,,,,"4.000000","641.250000","18636.500000","0.000000",,"110.500000",,,,"5.600000","0.000000","0.000000","0.666667","10.500000","0.000000","115.600000","0.000000","0.000000","115.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"215.500000",,"215.500000",,"215.500000",,"348.250000","0.000000",,,,,,,,,"224.000000","1623.500000","17417.500000","5071.500000",,"5363.625000",,,,"66.000000","100.625000","1.666667","23.000000","22.500000","0.000000","1321.400000","0.000000","1077.600000","243.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"69.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"205.750000",,"205.750000",,"205.750000",,"405.750000","0.000000",,,,,,,,,"108.750000","1549.000000","17077.250000","527.625000",,"270.750000",,,,"70.000000","121.000000","1.000000","18.666667","9.625000","0.000000","1400.000000","0.000000","1293.600000","106.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","246.000000",,,,,,,,,"2313.000000","4488.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"175.000000",,"175.000000",,"175.000000",,"444.250000","0.000000",,,,,,,,,"102.000000","1318.250000","17540.000000","306.875000",,"214.875000",,,,"40.200000","73.625000","2.000000","2.666667","1.500000","0.000000","805.400000","0.000000","786.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2632.000000","38.000000",,,,,,,,,"36123.000000","4025.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"341.250000",,"341.250000",,"341.250000",,"669.500000","0.000000",,,,,,,,,"285.250000","2569.500000","15648.250000","0.000000",,"8106.750000",,,,"18.800000","0.000000","0.000000","25.666667","35.125000","0.000000","377.800000","0.000000","0.000000","377.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20487.000000","78.000000",,,,,,,,,"277561.000000","24215.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"289.000000",,"289.000000",,"289.000000",,"1043.750000","0.000000",,,,,,,,,"238.750000","2176.750000","15862.000000","0.000000",,"11451.375000",,,,"36.800000","0.000000","4.000000","21.000000","68.875000","0.000000","737.200000","0.000000","0.600000","736.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9414.000000","34.000000",,,,,,,,,"127566.000000","10574.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"278.500000",,"278.500000",,"278.500000",,"593.000000","0.000000",,,,,,,,,"265.750000","2097.500000","16540.750000","6.375000",,"9827.250000",,,,"41.200000","1.125000","2.666667","15.333333","76.125000","0.000000","827.600000","0.000000","12.800000","814.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13348.000000","54.000000",,,,,,,,,"180882.000000","16401.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"345.000000",,"345.000000",,"345.000000",,"625.000000","0.000000",,,,,,,,,"224.250000","2598.500000","16045.000000","1891.875000",,"7637.500000",,,,"80.000000","63.875000","1.333333","10.666667","85.375000","0.000000","1600.000000","0.000000","684.000000","916.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3430.000000","16.000000",,,,,,,,,"46545.000000","4395.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"525.500000",,"525.500000",,"525.500000",,"499.250000","0.000000",,,,,,,,,"36.250000","3956.250000","14345.500000","235.375000",,"936.125000",,,,"15.600000","10.500000","0.666667","8.000000","18.750000","0.000000","312.400000","0.000000","112.800000","199.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"469.000000",,"469.000000",,"469.000000",,"769.750000","0.000000",,,,,,,,,"18.000000","3529.750000","14101.500000","44.250000",,"84.625000",,,,"8.200000","7.500000","1.000000","3.333333","7.500000","0.000000","165.400000","0.000000","82.800000","82.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"400.500000",,"400.500000",,"400.500000",,"615.250000","0.000000",,,,,,,,,"14.750000","3016.750000","13997.750000","46.125000",,"321.375000",,,,"10.000000","10.125000","0.333333","2.333333","8.250000","0.000000","200.600000","0.000000","110.000000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"93.000000","74.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"455.750000",,"455.750000",,"455.750000",,"554.250000","0.000000",,,,,,,,,"3.500000","3430.750000","13868.250000","0.000000",,"82.875000",,,,"4.000000","0.000000","0.000000","1.333333","7.500000","0.000000","81.400000","0.000000","0.000000","81.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"102.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"596.750000",,"596.750000",,"596.750000",,"513.000000","0.000000",,,,,,,,,"8.250000","4491.250000","12623.500000","37.500000",,"277.125000",,,,"6.800000","3.000000","0.666667","2.666667","9.750000","0.000000","139.000000","0.000000","34.200000","104.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"66.000000","78.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"791.000000",,"791.000000",,"791.000000",,"546.250000","0.000000",,,,,,,,,"15.500000","5951.500000","9203.000000","32.250000",,"531.375000",,,,"14.000000","2.250000","1.333333","2.333333","23.625000","0.000000","281.200000","0.000000","25.400000","255.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"76.000000","77.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"921.500000",,"921.500000",,"921.500000",,"540.500000","0.000000",,,,,,,,,"4.750000","6932.500000","9118.500000","0.000000",,"379.125000",,,,"2.800000","0.000000","0.000000","10.333333","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"46.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"805.500000",,"805.500000",,"805.500000",,"589.000000","0.000000",,,,,,,,,"3.250000","6059.250000","9056.500000","1.125000",,"307.750000",,,,"2.000000","0.000000","0.000000","10.333333","3.625000","0.000000","43.600000","0.000000","1.200000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"889.250000",,"889.250000",,"889.250000",,"679.250000","0.000000",,,,,,,,,"3.000000","6690.250000","9006.000000","0.000000",,"361.750000",,,,"2.000000","0.000000","0.000000","15.333333","3.625000","0.000000","42.400000","0.000000","0.400000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1189.250000",,"1189.250000",,"1189.250000",,"613.000000","0.000000",,,,,,,,,"22.500000","8945.250000","9404.750000","80.250000",,"970.000000",,,,"7.200000","8.625000","0.333333","26.333333","4.750000","0.000000","145.800000","0.000000","92.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"57.000000","61.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1053.500000",,"1053.500000",,"1053.500000",,"541.500000","0.000000",,,,,,,,,"8.500000","7924.750000","9234.250000","0.750000",,"349.375000",,,,"3.000000","0.000000","0.666667","10.000000","5.500000","0.000000","63.800000","0.000000","2.200000","61.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1136.250000",,"1136.250000",,"1136.250000",,"356.500000","0.000000",,,,,,,,,"12.750000","8547.250000","9346.500000","6.750000",,"1193.625000",,,,"4.000000","0.375000","0.666667","28.666667","6.625000","0.000000","80.200000","0.000000","7.800000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"938.500000",,"938.500000",,"938.500000",,"435.000000","0.000000",,,,,,,,,"3.750000","7061.000000","9166.250000","0.000000",,"371.875000",,,,"1.800000","0.000000","2.666667","17.000000","3.250000","0.000000","39.400000","0.000000","0.200000","39.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"959.500000",,"959.500000",,"959.500000",,"365.750000","0.000000",,,,,,,,,"6.750000","7218.500000","9310.250000","0.375000",,"670.500000",,,,"1.600000","0.000000","4.000000","32.666667","3.000000","0.000000","35.400000","0.000000","1.400000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.750000",,"832.750000",,"832.750000",,"426.500000","0.000000",,,,,,,,,"5.750000","6264.750000","9285.750000","45.750000",,"348.375000",,,,"4.800000","4.125000","0.333333","9.333333","4.500000","0.000000","99.400000","0.000000","47.800000","51.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"880.000000",,"880.000000",,"880.000000",,"507.750000","0.000000",,,,,,,,,"2.750000","6621.250000","9099.750000","0.000000",,"316.750000",,,,"1.800000","0.000000","6.000000","14.333333","3.250000","0.000000","36.800000","0.000000","0.200000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1054.250000",,"1054.250000",,"1054.250000",,"747.500000","0.000000",,,,,,,,,"5.250000","7931.000000","9011.000000","0.000000",,"387.000000",,,,"2.000000","0.000000","1.000000","10.000000","3.750000","0.000000","43.200000","0.000000","0.800000","42.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"793.250000",,"793.250000",,"793.250000",,"654.500000","0.000000",,,,,,,,,"5.000000","5966.750000","9039.000000","0.000000",,"284.500000",,,,"2.200000","0.000000","2.333333","7.333333","4.000000","0.000000","46.400000","0.000000","0.200000","46.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"659.000000",,"659.000000",,"659.000000",,"989.000000","0.000000",,,,,,,,,"3.250000","4957.750000","8746.750000","0.000000",,"288.000000",,,,"1.200000","0.000000","10.333333","13.666667","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"798.250000",,"798.250000",,"798.250000",,"1215.500000","0.000000",,,,,,,,,"4.750000","6007.000000","8648.500000","0.000000",,"333.000000",,,,"1.600000","0.000000","0.666667","9.666667","3.000000","0.000000","35.400000","0.000000","0.200000","35.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.750000",,"604.750000",,"604.750000",,"2008.500000","0.000000",,,,,,,,,"2.750000","4550.000000","8218.750000","0.000000",,"239.875000",,,,"0.800000","0.000000","1.666667","9.666667","1.375000","0.000000","17.400000","0.000000","0.400000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"728.750000",,"728.750000",,"728.750000",,"2824.250000","0.000000",,,,,,,,,"3.000000","5483.500000","7714.250000","0.000000",,"233.250000",,,,"1.200000","0.000000","0.000000","10.333333","2.250000","0.000000","27.200000","0.000000","0.000000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"739.250000",,"739.250000",,"739.250000",,"2619.750000","0.000000",,,,,,,,,"3.250000","5560.750000","7874.750000","0.375000",,"194.500000",,,,"0.800000","0.000000","0.666667","14.000000","1.125000","0.000000","16.600000","0.000000","0.800000","15.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"666.500000",,"666.500000",,"666.500000",,"1319.000000","0.000000",,,,,,,,,"2.500000","5014.250000","8548.500000","0.000000",,"151.125000",,,,"1.200000","0.000000","1.000000","3.333333","2.250000","0.000000","24.800000","0.000000","0.400000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"611.500000",,"611.500000",,"611.500000",,"2970.000000","0.000000",,,,,,,,,"5.750000","4600.250000","7585.000000","0.250000",,"466.875000",,,,"1.800000","0.000000","3.000000","19.333333","3.250000","0.000000","38.400000","0.000000","0.600000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"842.000000",,"842.000000",,"842.000000",,"2099.500000","0.000000",,,,,,,,,"2.750000","6337.000000","8152.500000","0.000000",,"294.375000",,,,"0.800000","0.000000","3.000000","17.000000","1.500000","0.000000","17.400000","0.000000","0.200000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"901.000000",,"901.000000",,"901.000000",,"2142.250000","0.000000",,,,,,,,,"2.750000","6780.000000","8180.250000","0.000000",,"132.000000",,,,"1.200000","0.000000","0.000000","7.333333","2.250000","0.000000","27.200000","0.000000","0.200000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"597.000000",,"597.000000",,"597.000000",,"3233.000000","0.000000",,,,,,,,,"2.750000","4494.250000","7318.500000","0.000000",,"343.375000",,,,"1.000000","0.000000","3.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"11.000000","8.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"750.250000",,"750.250000",,"750.250000",,"2783.000000","0.000000",,,,,,,,,"2.500000","5644.250000","7714.500000","0.000000",,"211.750000",,,,"1.200000","0.000000","2.000000","5.000000","2.250000","0.000000","24.600000","0.000000","0.200000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"814.000000",,"814.000000",,"814.000000",,"2062.250000","0.000000",,,,,,,,,"6.000000","6124.250000","8049.500000","0.000000",,"298.375000",,,,"0.800000","0.000000","0.000000","14.666667","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"924.750000",,"924.750000",,"924.750000",,"1504.500000","0.000000",,,,,,,,,"4.750000","6956.000000","8562.750000","0.000000",,"300.750000",,,,"1.200000","0.000000","0.000000","11.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"646.750000",,"646.750000",,"646.750000",,"2153.750000","0.000000",,,,,,,,,"4.250000","4866.250000","8053.750000","0.000000",,"215.625000",,,,"1.200000","0.000000","4.666667","6.333333","2.250000","0.000000","27.800000","0.000000","0.600000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"875.000000",,"875.000000",,"875.000000",,"653.750000","0.000000",,,,,,,,,"3.000000","6582.750000","9037.250000","0.375000",,"309.625000",,,,"0.800000","0.000000","1.666667","15.000000","1.375000","0.000000","18.200000","0.000000","0.400000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"152.000000","143.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.000000",,"658.000000",,"658.000000",,"1330.500000","0.000000",,,,,,,,,"3.250000","4951.750000","8637.000000","0.000000",,"339.375000",,,,"1.800000","0.000000","0.000000","9.666667","3.250000","0.000000","36.400000","0.000000","0.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"738.250000",,"738.250000",,"738.250000",,"1421.250000","0.000000",,,,,,,,,"7.250000","5555.000000","8678.750000","0.000000",,"290.125000",,,,"0.800000","0.000000","5.333333","35.666667","1.375000","0.000000","16.600000","0.000000","0.400000","16.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"948.250000",,"948.250000",,"948.250000",,"880.000000","0.000000",,,,,,,,,"4.250000","7134.000000","8969.500000","0.375000",,"385.750000",,,,"1.600000","0.000000","0.666667","11.333333","3.000000","0.000000","35.000000","0.000000","0.600000","34.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"969.500000",,"969.500000",,"969.500000",,"733.500000","0.000000",,,,,,,,,"10.500000","7292.750000","9084.000000","0.000000",,"349.375000",,,,"1.600000","0.000000","6.666667","11.000000","2.875000","0.000000","33.600000","0.000000","0.400000","33.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1182.750000",,"1182.750000",,"1182.750000",,"339.250000","0.000000",,,,,,,,,"4.750000","8896.000000","9404.000000","0.000000",,"352.875000",,,,"1.600000","0.000000","0.000000","11.333333","2.875000","0.000000","32.600000","0.000000","0.200000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1155.750000",,"1155.750000",,"1155.750000",,"390.500000","0.000000",,,,,,,,,"6.500000","8694.000000","9356.750000","0.000000",,"445.000000",,,,"1.800000","0.000000","10.000000","23.666667","3.375000","0.000000","38.000000","0.000000","0.400000","37.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1196.250000",,"1196.250000",,"1196.250000",,"427.750000","0.000000",,,,,,,,,"4.750000","8998.500000","9282.000000","0.000000",,"331.875000",,,,"1.000000","0.000000","23.333333","24.000000","1.750000","0.000000","22.000000","0.000000","0.200000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1197.750000",,"1197.750000",,"1197.750000",,"486.250000","0.000000",,,,,,,,,"4.000000","9009.750000","9251.500000","0.000000",,"415.875000",,,,"1.800000","0.000000","1.000000","26.333333","3.000000","0.000000","36.000000","0.000000","0.400000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"833.750000",,"833.750000",,"833.750000",,"240.000000","0.000000",,,,,,,,,"2.750000","6271.000000","9370.500000","0.250000",,"272.250000",,,,"1.400000","0.000000","3.333333","12.666667","2.250000","0.000000","28.800000","0.000000","1.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"789.000000",,"789.000000",,"789.000000",,"216.500000","0.000000",,,,,,,,,"5.750000","5935.500000","9442.000000","0.000000",,"419.125000",,,,"1.600000","0.000000","2.333333","11.666667","2.875000","0.000000","32.400000","0.000000","0.200000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"809.000000",,"809.000000",,"809.000000",,"472.250000","0.000000",,,,,,,,,"2.000000","6086.250000","9185.250000","0.000000",,"213.750000",,,,"0.600000","0.000000","3.000000","11.333333","1.000000","0.000000","15.200000","0.000000","0.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"774.750000",,"774.750000",,"774.750000",,"348.250000","0.000000",,,,,,,,,"3.250000","5829.250000","9281.500000","0.250000",,"284.250000",,,,"1.400000","0.000000","7.666667","8.333333","2.500000","0.000000","29.200000","0.000000","1.000000","28.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"785.250000",,"785.250000",,"785.250000",,"320.500000","0.000000",,,,,,,,,"47.750000","5908.750000","9309.750000","5.500000",,"3908.875000",,,,"14.800000","0.750000","6.666667","24.000000","26.625000","0.000000","296.800000","0.000000","11.800000","285.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"825.000000",,"825.000000",,"825.000000",,"429.750000","0.000000",,,,,,,,,"2.500000","6209.500000","9160.000000","1.125000",,"281.250000",,,,"0.600000","0.000000","2.666667","11.666667","1.125000","0.000000","15.400000","0.000000","1.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"778.000000",,"778.000000",,"778.000000",,"404.000000","0.000000",,,,,,,,,"83.750000","5853.250000","9461.750000","5.750000",,"7830.250000",,,,"30.400000","0.750000","6.000000","16.333333","55.875000","0.000000","610.200000","0.000000","11.400000","598.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"945.000000",,"945.000000",,"945.000000",,"560.750000","0.000000",,,,,,,,,"19.500000","7109.000000","9162.250000","14.500000",,"1636.750000",,,,"7.400000","1.375000","2.666667","29.000000","12.250000","0.000000","149.600000","0.000000","15.600000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"787.250000",,"787.250000",,"787.250000",,"513.000000","0.000000",,,,,,,,,"11.250000","5921.750000","9364.250000","16.500000",,"696.750000",,,,"5.000000","1.500000","6.000000","26.666667","7.375000","0.000000","100.400000","0.000000","18.000000","82.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"763.750000",,"763.750000",,"763.750000",,"470.000000","0.000000",,,,,,,,,"5.000000","5745.500000","9151.500000","1.125000",,"433.875000",,,,"1.400000","0.000000","2.666667","12.000000","2.625000","0.000000","31.800000","0.000000","1.400000","30.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"893.250000",,"893.250000",,"893.250000",,"360.500000","0.000000",,,,,,,,,"3.750000","6720.250000","9274.000000","0.000000",,"359.125000",,,,"1.600000","0.000000","0.000000","8.666667","3.000000","0.000000","35.800000","0.000000","0.000000","35.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"888.000000",,"888.000000",,"888.000000",,"426.750000","0.000000",,,,,,,,,"5.250000","6680.250000","9217.750000","0.375000",,"507.375000",,,,"1.600000","0.000000","6.000000","13.333333","2.625000","0.000000","32.800000","0.000000","1.600000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"850.000000",,"850.000000",,"850.000000",,"356.750000","0.000000",,,,,,,,,"25.500000","6393.500000","9354.000000","34.500000",,"1696.875000",,,,"8.200000","3.375000","2.333333","27.333333","11.875000","0.000000","165.600000","0.000000","36.800000","128.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"934.500000",,"934.500000",,"934.500000",,"374.500000","0.000000",,,,,,,,,"32.250000","7029.250000","9829.000000","843.500000",,"493.500000",,,,"13.000000","18.750000","2.333333","14.000000","5.250000","0.000000","263.600000","0.000000","205.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"43.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1034.000000",,"1034.000000",,"1034.000000",,"580.750000","0.000000",,,,,,,,,"86.250000","7778.000000","9981.500000","1437.750000",,"2006.250000",,,,"28.800000","37.000000","1.333333","18.666667","16.375000","0.000000","579.400000","0.000000","394.600000","184.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"895.750000",,"895.750000",,"895.750000",,"328.750000","0.000000",,,,,,,,,"36.000000","6740.500000","9422.250000","37.875000",,"2061.625000",,,,"16.600000","3.000000","6.333333","12.666667","28.500000","0.000000","332.800000","0.000000","34.600000","298.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"755.500000",,"755.500000",,"755.500000",,"472.500000","0.000000",,,,,,,,,"4.750000","5684.500000","9128.750000","6.000000",,"286.500000",,,,"1.000000","0.375000","0.666667","13.000000","1.125000","0.000000","22.400000","0.000000","7.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"902.750000",,"902.750000",,"902.750000",,"279.250000","0.000000",,,,,,,,,"3.750000","6789.500000","9328.250000","0.750000",,"305.125000",,,,"1.400000","0.000000","0.666667","21.666667","2.500000","0.000000","31.200000","0.000000","1.200000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"905.000000",,"905.000000",,"905.000000",,"312.750000","0.000000",,,,,,,,,"6.000000","6807.500000","9281.000000","0.750000",,"279.000000",,,,"1.400000","0.000000","0.666667","8.333333","2.250000","0.000000","28.400000","0.000000","0.800000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"946.750000",,"946.750000",,"946.750000",,"409.250000","0.000000",,,,,,,,,"2.750000","7123.250000","9284.000000","2.250000",,"343.750000",,,,"1.000000","0.000000","1.000000","12.000000","1.500000","0.000000","22.600000","0.000000","2.800000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"996.000000",,"996.000000",,"996.000000",,"462.750000","0.000000",,,,,,,,,"2.000000","7493.250000","9215.000000","0.750000",,"236.875000",,,,"1.000000","0.000000","2.666667","13.666667","1.500000","0.000000","21.000000","0.000000","2.400000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"955.750000",,"955.750000",,"955.750000",,"377.750000","0.000000",,,,,,,,,"6.000000","7191.000000","9389.750000","7.875000",,"315.000000",,,,"1.400000","0.750000","5.000000","10.333333","1.375000","0.000000","28.000000","0.000000","9.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"904.500000",,"904.500000",,"904.500000",,"508.750000","0.000000",,,,,,,,,"9.250000","6805.000000","9144.250000","1.500000",,"835.750000",,,,"4.200000","0.000000","1.000000","33.000000","7.875000","0.000000","87.800000","0.000000","1.600000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"812.750000",,"812.750000",,"812.750000",,"483.000000","0.000000",,,,,,,,,"13.000000","6115.750000","9536.250000","462.125000",,"521.625000",,,,"6.600000","8.250000","5.000000","36.666667","3.750000","0.000000","133.800000","0.000000","90.200000","43.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"639.250000",,"639.250000",,"639.250000",,"389.250000","0.000000",,,,,,,,,"116.750000","4808.000000","12682.750000","3511.875000",,"834.250000",,,,"49.400000","81.625000","3.000000","15.666667","10.500000","0.000000","990.000000","0.000000","874.200000","115.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"807.750000",,"807.750000",,"807.750000",,"461.000000","0.000000",,,,,,,,,"109.500000","6076.750000","10908.000000","1444.625000",,"4473.625000",,,,"45.800000","33.375000","4.333333","12.000000","52.125000","0.000000","916.000000","0.000000","358.400000","557.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"80.000000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"815.750000",,"815.750000",,"815.750000",,"426.500000","0.000000",,,,,,,,,"46.500000","6137.750000","10134.750000","841.375000",,"1519.500000",,,,"20.600000","19.000000","2.333333","17.666667","19.125000","0.000000","412.000000","0.000000","205.600000","206.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"135.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"900.000000",,"900.000000",,"900.000000",,"432.500000","0.000000",,,,,,,,,"64.250000","6770.500000","9303.000000","21.125000",,"4121.125000",,,,"26.000000","3.250000","1.666667","15.333333","45.375000","0.000000","521.400000","0.000000","36.400000","485.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"60.000000","59.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"689.000000",,"689.000000",,"689.000000",,"393.500000","0.000000",,,,,,,,,"44.500000","5183.500000","10051.500000","179.875000",,"2002.125000",,,,"14.400000","14.500000","3.000000","39.666667","12.000000","0.000000","289.600000","0.000000","158.600000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"73.000000","79.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"898.250000",,"898.250000",,"898.250000",,"296.750000","0.000000",,,,,,,,,"48.750000","6756.750000","10050.500000","94.125000",,"2885.125000",,,,"16.600000","6.375000","4.000000","30.333333","24.375000","0.000000","335.200000","0.000000","71.600000","263.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"62.000000","72.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"767.000000",,"767.000000",,"767.000000",,"268.500000","0.000000",,,,,,,,,"102.500000","5770.750000","9989.750000","101.875000",,"6552.750000",,,,"39.400000","5.625000","13.333333","21.666667","67.875000","0.000000","788.800000","0.000000","62.400000","726.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"861.750000",,"861.750000",,"861.750000",,"459.000000","0.000000",,,,,,,,,"89.750000","6482.500000","9393.500000","52.375000",,"5912.500000",,,,"33.000000","3.250000","2.333333","21.666667","58.125000","0.000000","662.600000","0.000000","39.000000","623.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"647.250000",,"647.250000",,"647.250000",,"518.000000","0.000000",,,,,,,,,"138.750000","4870.250000","11437.500000","3230.750000",,"5110.750000",,,,"54.200000","64.500000","3.333333","21.666667","36.750000","0.000000","1086.600000","0.000000","691.800000","394.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"752.750000",,"752.750000",,"752.750000",,"328.250000","0.000000",,,,,,,,,"130.750000","5664.250000","10341.500000","579.500000",,"8278.500000",,,,"40.800000","15.875000","2.666667","31.000000","60.375000","0.000000","816.400000","0.000000","170.200000","646.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"773.250000",,"773.250000",,"773.250000",,"448.250000","0.000000",,,,,,,,,"72.000000","5816.250000","9486.750000","118.750000",,"5241.750000",,,,"29.400000","8.000000","2.000000","13.333333","46.875000","0.000000","590.800000","0.000000","88.200000","502.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"832.000000",,"832.000000",,"832.000000",,"455.250000","0.000000",,,,,,,,,"46.500000","6258.750000","9854.750000","680.625000",,"2278.750000",,,,"20.800000","17.625000","3.333333","16.000000","21.250000","0.000000","419.400000","0.000000","189.400000","230.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"632.500000",,"632.500000",,"632.500000",,"352.000000","0.000000",,,,,,,,,"148.000000","4759.000000","12859.000000","2922.750000",,"4913.500000",,,,"48.000000","53.625000","4.666667","51.000000","36.000000","0.000000","963.800000","0.000000","576.200000","387.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"448.500000",,"448.500000",,"448.500000",,"327.500000","0.000000",,,,,,,,,"142.500000","3376.000000","14242.000000","4097.875000",,"2401.125000",,,,"56.800000","90.625000","2.000000","30.333333","15.375000","0.000000","1137.000000","0.000000","971.000000","166.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"339.000000",,"339.000000",,"339.000000",,"353.250000","0.000000",,,,,,,,,"182.750000","2551.500000","15131.250000","5350.750000",,"3699.375000",,,,"88.200000","130.625000","2.666667","9.666667","34.500000","0.000000","1764.000000","0.000000","1395.400000","368.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"426.500000",,"426.500000",,"426.500000",,"385.250000","0.000000",,,,,,,,,"148.000000","3211.500000","14538.750000","4682.125000",,"2671.375000",,,,"66.000000","95.750000","3.000000","11.000000","27.625000","0.000000","1320.400000","0.000000","1024.000000","296.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"386.500000",,"386.500000",,"386.500000",,"698.750000","0.000000",,,,,,,,,"230.250000","2911.750000","14820.750000","7682.000000",,"2494.500000",,,,"98.200000","169.000000","1.666667","26.666667","14.875000","0.000000","1964.200000","0.000000","1803.800000","160.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"260.000000","305.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"668.500000",,"668.500000",,"668.500000",,"358.250000","0.000000",,,,,,,,,"150.250000","5030.500000","11157.250000","3435.750000",,"4507.375000",,,,"65.000000","94.125000","1.666667","18.333333","27.375000","0.000000","1301.000000","0.000000","1006.400000","294.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"698.750000",,"698.750000",,"698.750000",,"345.750000","0.000000",,,,,,,,,"60.250000","5257.250000","10241.000000","2090.875000",,"575.625000",,,,"30.000000","43.000000","2.000000","8.333333","13.125000","0.000000","600.600000","0.000000","460.000000","140.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"828.750000",,"828.750000",,"828.750000",,"220.750000","0.000000",,,,,,,,,"40.000000","6234.500000","9744.250000","73.875000",,"2110.875000",,,,"13.600000","7.750000","3.666667","15.666667","17.500000","0.000000","272.600000","0.000000","84.400000","188.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"757.750000",,"757.750000",,"757.750000",,"378.000000","0.000000",,,,,,,,,"88.000000","5701.750000","10899.250000","3475.500000",,"255.000000",,,,"41.200000","75.000000","3.666667","13.666667","1.875000","0.000000","827.200000","0.000000","805.600000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"790.250000",,"790.250000",,"790.250000",,"454.000000","0.000000",,,,,,,,,"94.250000","5944.250000","10262.750000","1497.625000",,"3387.375000",,,,"34.000000","40.625000","2.333333","22.666667","22.875000","0.000000","680.000000","0.000000","433.400000","246.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"706.500000",,"706.500000",,"706.500000",,"382.250000","0.000000",,,,,,,,,"15.750000","5315.000000","11143.000000","305.625000",,"273.250000",,,,"5.400000","6.625000","1.000000","11.000000","2.875000","0.000000","111.800000","0.000000","78.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"261.500000",,"261.500000",,"261.500000",,"305.000000","0.000000",,,,,,,,,"131.250000","1969.500000","16286.500000","5075.000000",,"907.500000",,,,"55.400000","94.750000","2.000000","9.000000","9.375000","0.000000","1111.600000","0.000000","1008.400000","103.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"275.750000",,"275.750000",,"275.750000",,"391.250000","0.000000",,,,,,,,,"121.000000","2077.250000","15922.250000","2141.875000",,"3563.875000",,,,"55.200000","71.125000","2.666667","11.666667","32.250000","0.000000","1107.000000","0.000000","760.600000","346.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"40.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.250000",,"180.250000",,"180.250000",,"302.750000","0.000000",,,,,,,,,"240.000000","1360.500000","17389.250000","4779.375000",,"8399.875000",,,,"123.600000","177.000000","2.000000","13.666667","54.375000","0.000000","2474.400000","0.000000","1892.200000","582.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","39.000000",,,,,,,,,"180.000000","195.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.000000",,"180.000000",,"180.000000",,"465.250000","0.000000",,,,,,,,,"156.250000","1356.750000","17227.000000","3538.750000",,"4080.750000",,,,"81.400000","122.750000","2.666667","13.000000","29.625000","0.000000","1628.600000","0.000000","1309.400000","319.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"126.000000","138.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"134.500000",,"134.500000",,"134.500000",,"341.000000","0.000000",,,,,,,,,"28.500000","1014.500000","17791.750000","140.625000",,"142.500000",,,,"12.000000","11.875000","1.666667","0.666667","10.375000","0.000000","242.200000","0.000000","128.200000","114.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.000000","7.000000",,,,,,,,,"1397.000000","1510.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"93.000000",,"93.000000",,"93.000000",,"357.000000","0.000000",,,,,,,,,"13.500000","703.750000","18228.750000","359.750000",,"58.875000",,,,"5.200000","3.500000","2.333333","2.000000","5.625000","0.000000","105.600000","0.000000","42.200000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","7.000000",,,,,,,,,"1645.000000","1659.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.750000",,"276.750000",,"276.750000",,"378.500000","0.000000",,,,,,,,,"54.250000","2084.500000","16409.500000","319.625000",,"2873.625000",,,,"21.800000","5.375000","2.333333","14.666667","35.250000","0.000000","437.600000","0.000000","57.800000","379.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"438.000000","512.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.750000",,"162.750000",,"162.750000",,"472.250000","0.000000",,,,,,,,,"12.750000","1227.250000","17394.250000","19.000000",,"268.875000",,,,"9.400000","1.125000","23.000000","5.333333","16.125000","0.000000","188.600000","0.000000","15.400000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"146.000000","179.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.500000",,"148.500000",,"148.500000",,"425.750000","0.000000",,,,,,,,,"14.000000","1121.750000","17488.750000","372.375000",,"82.125000",,,,"6.600000","7.375000","4.000000","2.666667","4.750000","0.000000","134.000000","0.000000","80.400000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"191.000000","224.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"217.500000",,"217.500000",,"217.500000",,"364.500000","0.000000",,,,,,,,,"36.500000","1640.500000","17236.500000","640.875000",,"99.750000",,,,"28.000000","46.500000","1.000000","12.666667","5.875000","0.000000","562.600000","0.000000","497.000000","65.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"382.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"271.500000","0.000000",,,,,,,,,"6.250000","449.750000","18923.000000","0.000000",,"74.500000",,,,"3.200000","0.000000","0.000000","2.666667","6.000000","0.000000","66.000000","0.000000","0.000000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"230.000000","0.000000",,,,,,,,,"0.500000","389.750000","19017.250000","0.000000",,"35.250000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","14.200000","0.000000","0.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.000000",,"64.000000",,"64.000000",,"235.250000","0.000000",,,,,,,,,"3.250000","485.750000","18865.500000","0.000000",,"49.875000",,,,"2.200000","0.000000","0.000000","1.000000","4.125000","0.000000","46.600000","0.000000","0.000000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"181.000000","0.000000",,,,,,,,,"0.750000","424.000000","19168.000000","0.000000",,"19.500000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"250.750000","0.000000",,,,,,,,,"1.000000","477.250000","18872.500000","4.875000",,"28.125000",,,,"1.400000","0.000000","2.000000","1.333333","2.125000","0.000000","29.000000","0.000000","3.200000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"157.750000",,"157.750000",,"157.750000",,"313.750000","0.000000",,,,,,,,,"10.000000","1189.000000","18168.000000","3.750000",,"129.000000",,,,"5.200000","0.000000","0.666667","0.666667","9.250000","0.000000","105.200000","0.000000","2.800000","102.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"512.000000","609.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.750000",,"276.750000",,"276.750000",,"398.500000","0.000000",,,,,,,,,"27.500000","2086.000000","16548.750000","27.000000",,"379.125000",,,,"12.800000","1.750000","3.666667","1.000000","22.000000","0.000000","257.400000","0.000000","21.400000","236.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","8.000000",,,,,,,,,"1409.000000","1609.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"73.000000",,"73.000000",,"73.000000",,"201.000000","0.000000",,,,,,,,,"5.500000","551.500000","18948.750000","0.000000",,"37.750000",,,,"1.600000","0.000000","0.000000","2.333333","2.875000","0.000000","32.400000","0.000000","0.000000","32.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","4.000000",,,,,,,,,"1000.000000","990.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"233.750000",,"233.750000",,"233.750000",,"451.000000","0.000000",,,,,,,,,"41.750000","1762.000000","16370.250000","0.000000",,"2847.750000",,,,"16.800000","0.000000","1.000000","19.333333","31.375000","0.000000","338.800000","0.000000","0.400000","338.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","8.000000",,,,,,,,,"1676.000000","1746.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"185.750000",,"185.750000",,"185.750000",,"401.750000","0.000000",,,,,,,,,"4.750000","1399.250000","17040.250000","0.000000",,"235.000000",,,,"8.200000","0.000000","0.000000","2.333333","15.250000","0.000000","165.600000","0.000000","0.000000","165.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"84.000000",,"84.000000",,"84.000000",,"430.000000","0.000000",,,,,,,,,"2.000000","634.750000","18358.750000","0.000000",,"84.000000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","49.800000","0.000000","0.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"102.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"193.750000",,"193.750000",,"193.750000",,"374.750000","0.000000",,,,,,,,,"24.000000","1459.500000","16929.500000","211.875000",,"143.125000",,,,"15.200000","17.875000","1.333333","1.666667","10.375000","0.000000","305.200000","0.000000","193.000000","112.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"65.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"363.250000","0.000000",,,,,,,,,"1.750000","897.750000","18335.500000","5.250000",,"66.625000",,,,"1.800000","0.375000","4.666667","1.666667","3.000000","0.000000","38.800000","0.000000","5.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"340.000000","0.000000",,,,,,,,,"1.250000","398.750000","18840.750000","0.000000",,"41.125000",,,,"2.200000","0.000000","0.000000","2.666667","4.000000","0.000000","44.600000","0.000000","0.200000","44.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"333.500000","0.000000",,,,,,,,,"1.250000","407.750000","18953.250000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.333333","2.125000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"343.250000","0.000000",,,,,,,,,"0.500000","471.000000","18825.250000","0.000000",,"22.125000",,,,"0.600000","0.000000","0.000000","1.000000","1.000000","0.000000","14.200000","0.000000","0.000000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"309.250000","0.000000",,,,,,,,,"3.750000","392.000000","18945.750000","0.000000",,"17.250000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.250000",,"51.250000",,"51.250000",,"354.500000","0.000000",,,,,,,,,"0.750000","388.750000","18913.750000","0.000000",,"7.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.250000","0.000000","4.600000","0.000000","0.000000","4.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.250000",,"59.250000",,"59.250000",,"301.000000","0.000000",,,,,,,,,"0.500000","450.750000","18876.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"301.000000","0.000000",,,,,,,,,"0.500000","409.750000","19065.250000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","3.200000","0.000000","0.000000","3.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"312.500000","0.000000",,,,,,,,,"0.750000","410.000000","19038.750000","0.250000",,"17.500000",,,,"0.800000","0.000000","1.000000","2.000000","1.375000","0.000000","18.000000","0.000000","1.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"86.750000",,"86.750000",,"86.750000",,"371.250000","0.000000",,,,,,,,,"1.750000","658.000000","18475.000000","5.625000",,"65.625000",,,,"2.600000","0.375000","3.666667","1.333333","4.125000","0.000000","53.800000","0.000000","6.400000","47.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"101.000000","113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"142.500000",,"142.500000",,"142.500000",,"325.500000","0.000000",,,,,,,,,"5.000000","1076.250000","17891.000000","0.000000",,"117.375000",,,,"4.800000","0.000000","0.666667","1.000000","8.875000","0.000000","99.200000","0.000000","0.800000","98.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"465.000000","542.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.000000",,"158.000000",,"158.000000",,"466.500000","0.000000",,,,,,,,,"3.250000","1193.750000","17703.500000","0.000000",,"139.000000",,,,"4.800000","0.000000","0.000000","2.000000","8.875000","0.000000","98.200000","0.000000","0.200000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"125.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"133.750000",,"133.750000",,"133.750000",,"299.750000","0.000000",,,,,,,,,"1.500000","1008.250000","18117.000000","0.000000",,"42.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.400000","0.000000","0.200000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"123.750000",,"123.750000",,"123.750000",,"437.000000","0.000000",,,,,,,,,"2.750000","933.750000","17881.500000","5.625000",,"94.125000",,,,"3.800000","0.000000","2.666667","2.000000","7.125000","0.000000","77.600000","0.000000","1.000000","76.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.000000",,"67.000000",,"67.000000",,"495.750000","0.000000",,,,,,,,,"1.000000","507.750000","18506.500000","3.375000",,"25.125000",,,,"0.800000","0.375000","2.333333","2.000000","1.000000","0.000000","19.800000","0.000000","4.600000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"386.750000","0.000000",,,,,,,,,"1.750000","419.500000","18887.250000","0.000000",,"48.750000",,,,"2.200000","0.000000","0.000000","1.666667","4.125000","0.000000","45.800000","0.000000","0.200000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"445.750000","0.000000",,,,,,,,,"0.500000","392.250000","18772.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","10.600000","0.000000","0.000000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"236.500000","0.000000",,,,,,,,,"0.750000","407.750000","19047.500000","0.000000",,"12.250000",,,,"0.400000","0.000000","0.000000","1.333333","0.625000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"191.500000","0.000000",,,,,,,,,"3.250000","407.250000","19174.250000","0.000000",,"14.875000",,,,"0.600000","0.000000","0.000000","2.000000","1.000000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"150.750000","0.000000",,,,,,,,,"0.250000","443.500000","19314.500000","0.000000",,"5.125000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"140.000000","0.000000",,,,,,,,,"1.000000","415.000000","19258.000000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"135.000000","0.000000",,,,,,,,,"0.500000","432.750000","19234.000000","0.000000",,"14.250000",,,,"0.400000","0.000000","0.000000","1.666667","0.625000","0.000000","9.600000","0.000000","0.000000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","403.000000","19230.750000","0.000000",,"10.500000",,,,"0.400000","0.000000","0.000000","1.666667","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.750000",,"70.750000",,"70.750000",,"174.750000","0.000000",,,,,,,,,"0.750000","536.750000","19004.500000","3.000000",,"26.250000",,,,"1.000000","0.000000","4.000000","1.666667","1.375000","0.000000","20.200000","0.000000","0.800000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.500000",,"148.500000",,"148.500000",,"231.750000","0.000000",,,,,,,,,"6.500000","1118.500000","17781.500000","0.000000",,"133.500000",,,,"5.400000","0.000000","0.333333","0.666667","10.125000","0.000000","109.200000","0.000000","0.200000","109.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"516.000000","607.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"262.000000",,"262.000000",,"262.000000",,"300.250000","0.000000",,,,,,,,,"15.750000","1974.000000","16448.750000","1.875000",,"360.000000",,,,"12.000000","0.000000","1.333333","1.000000","21.875000","0.000000","240.200000","0.000000","3.400000","236.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8.000000","7.000000",,,,,,,,,"1200.000000","1406.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"278.750000","0.000000",,,,,,,,,"1.500000","405.750000","18963.750000","0.000000",,"11.375000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","8.600000","0.000000","0.000000","8.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"223.000000","226.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"221.000000","0.000000",,,,,,,,,"1.750000","425.500000","19112.750000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","2.333333","2.500000","0.000000","29.600000","0.000000","0.000000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","185.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"167.250000","0.000000",,,,,,,,,"1.500000","423.250000","19179.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"233.000000","234.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.750000",,"59.750000",,"59.750000",,"183.000000","0.000000",,,,,,,,,"3.500000","454.750000","19156.000000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"249.000000","240.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"195.750000","0.000000",,,,,,,,,"3.250000","420.000000","19151.500000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"185.250000","0.000000",,,,,,,,,"0.750000","398.750000","19145.500000","0.000000",,"3.375000",,,,"0.200000","0.000000","1.333333","2.000000","0.000000","0.000000","4.000000","0.000000","0.200000","3.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"114.000000","108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"154.750000","0.000000",,,,,,,,,"1.000000","418.750000","19232.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","1.600000","0.000000","0.000000","1.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"187.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"59.000000",,"59.000000",,"59.000000",,"136.250000","0.000000",,,,,,,,,"2.500000","446.500000","19214.750000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","3.600000","0.000000","0.000000","3.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","1.000000",,,,,,,,,"356.000000","338.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"124.250000","0.000000",,,,,,,,,"1.250000","429.000000","19292.000000","0.000000",,"4.125000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"207.000000","193.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"148.750000","0.000000",,,,,,,,,"2.000000","426.500000","19267.500000","0.000000",,"4.125000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"227.000000","207.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"164.750000","0.000000",,,,,,,,,"0.750000","408.250000","19164.750000","0.000000",,"3.750000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.000000","0.000000","0.000000","4.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"215.000000","202.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"156.000000","0.000000",,,,,,,,,"0.750000","417.250000","19142.750000","0.000000",,"3.750000",,,,"0.000000","0.000000","0.000000","1.000000","0.000000","0.000000","2.200000","0.000000","0.000000","2.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"151.000000","126.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"144.000000","0.000000",,,,,,,,,"1.250000","422.000000","19188.000000","0.000000",,"4.500000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"167.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"208.750000",,"208.750000",,"208.750000",,"173.500000","0.000000",,,,,,,,,"33.500000","1573.500000","17366.500000","354.000000",,"1348.375000",,,,"13.000000","3.250000","1.333333","7.666667","20.875000","0.000000","262.000000","0.000000","37.400000","224.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","4.000000",,,,,,,,,"759.000000","863.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"126.000000",,"126.000000",,"126.000000",,"123.750000","0.000000",,,,,,,,,"9.750000","951.000000","18806.500000","2.625000",,"124.125000",,,,"5.000000","0.000000","8.333333","4.000000","9.250000","0.000000","103.200000","0.000000","2.000000","101.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"169.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"244.000000","0.000000",,,,,,,,,"1.000000","490.750000","18937.250000","0.000000",,"47.875000",,,,"1.400000","0.000000","0.000000","1.333333","2.500000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"112.000000","0.000000",,,,,,,,,"2.750000","403.500000","19249.750000","0.000000",,"36.250000",,,,"2.000000","0.000000","0.000000","5.333333","3.625000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"209.250000","0.000000",,,,,,,,,"1.250000","430.500000","19159.000000","0.000000",,"29.500000",,,,"1.000000","0.000000","1.333333","0.666667","1.875000","0.000000","22.800000","0.000000","0.600000","22.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.000000",,"64.000000",,"64.000000",,"283.500000","0.000000",,,,,,,,,"0.750000","484.250000","18995.000000","0.000000",,"23.125000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"273.500000","0.000000",,,,,,,,,"0.750000","401.000000","19017.250000","0.000000",,"14.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"245.250000","0.000000",,,,,,,,,"1.750000","413.500000","18978.500000","0.000000",,"20.500000",,,,"0.600000","0.000000","0.000000","2.333333","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"127.000000","0.000000",,,,,,,,,"1.000000","460.000000","19111.000000","0.000000",,"32.875000",,,,"1.200000","0.000000","0.000000","2.000000","2.250000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"155.750000","0.000000",,,,,,,,,"2.500000","406.750000","19224.250000","0.000000",,"7.375000",,,,"0.200000","0.000000","0.000000","2.000000","0.250000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.500000",,"58.500000",,"58.500000",,"123.500000","0.000000",,,,,,,,,"1.750000","445.000000","19215.250000","0.000000",,"28.500000",,,,"1.200000","0.000000","0.000000","3.333333","2.125000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"118.750000",,"118.750000",,"118.750000",,"134.500000","0.000000",,,,,,,,,"7.250000","895.250000","18545.750000","0.000000",,"127.000000",,,,"6.000000","0.000000","0.000000","2.000000","11.250000","0.000000","123.600000","0.000000","0.000000","123.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"461.000000","545.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"171.500000",,"171.500000",,"171.500000",,"209.000000","0.000000",,,,,,,,,"13.750000","1293.000000","17640.500000","6.375000",,"172.125000",,,,"6.600000","0.750000","5.666667","1.333333","11.625000","0.000000","135.600000","0.000000","8.200000","127.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"4.000000","5.000000",,,,,,,,,"715.000000","915.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.500000",,"69.500000",,"69.500000",,"112.250000","0.000000",,,,,,,,,"2.500000","527.000000","19159.250000","1.125000",,"67.375000",,,,"3.000000","0.000000","3.000000","1.333333","5.500000","0.000000","62.200000","0.000000","1.400000","60.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"125.500000","0.000000",,,,,,,,,"1.000000","434.500000","19269.250000","0.000000",,"25.375000",,,,"0.600000","0.000000","0.000000","1.333333","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"131.500000","0.000000",,,,,,,,,"1.250000","489.750000","19147.750000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","3.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"92.750000","0.000000",,,,,,,,,"0.500000","454.750000","19351.750000","0.000000",,"10.875000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.250000",,"51.250000",,"51.250000",,"177.750000","0.000000",,,,,,,,,"0.750000","391.250000","19218.500000","0.000000",,"18.000000",,,,"1.000000","0.000000","0.000000","2.666667","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"202.000000","0.000000",,,,,,,,,"1.000000","477.000000","19027.500000","0.000000",,"27.625000",,,,"0.600000","0.000000","0.000000","2.333333","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.000000",,"58.000000",,"58.000000",,"122.500000","0.000000",,,,,,,,,"0.750000","439.750000","19317.250000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"163.000000","0.000000",,,,,,,,,"1.000000","406.000000","19183.750000","0.000000",,"16.125000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.000000",,"67.000000",,"67.000000",,"139.250000","0.000000",,,,,,,,,"0.500000","507.000000","19199.000000","0.000000",,"27.375000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"135.250000",,"135.250000",,"135.250000",,"130.250000","0.000000",,,,,,,,,"1.500000","1022.250000","18306.750000","0.750000",,"43.500000",,,,"1.200000","0.000000","1.333333","1.333333","2.250000","0.000000","27.800000","0.000000","1.200000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.500000",,"71.500000",,"71.500000",,"166.500000","0.000000",,,,,,,,,"1.750000","543.000000","18887.000000","0.000000",,"69.375000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","35.600000","0.000000","0.000000","35.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"97.000000","0.000000",,,,,,,,,"4.250000","490.500000","19262.750000","0.000000",,"53.250000",,,,"2.400000","0.000000","0.000000","1.666667","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"120.750000","0.000000",,,,,,,,,"1.000000","422.000000","19276.750000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"117.250000","0.000000",,,,,,,,,"0.750000","446.000000","19261.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.000000","0.000000","0.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"116.500000","0.000000",,,,,,,,,"0.750000","480.250000","19228.250000","0.000000",,"21.000000",,,,"0.800000","0.000000","0.000000","2.333333","1.375000","0.000000","16.800000","0.000000","0.000000","16.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"78.750000","0.000000",,,,,,,,,"1.000000","418.500000","19397.250000","0.000000",,"11.625000",,,,"0.600000","0.000000","0.000000","2.000000","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"109.500000","0.000000",,,,,,,,,"1.250000","413.500000","19277.250000","0.000000",,"29.500000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"92.750000","0.000000",,,,,,,,,"0.750000","492.000000","19323.500000","0.000000",,"21.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"103.750000","0.000000",,,,,,,,,"0.500000","415.500000","19306.250000","0.000000",,"12.375000",,,,"0.600000","0.000000","0.000000","4.000000","1.000000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"181.250000","0.000000",,,,,,,,,"1.000000","495.000000","19124.250000","0.000000",,"35.500000",,,,"1.000000","0.000000","0.000000","5.000000","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.000000",,"145.000000",,"145.000000",,"173.250000","0.000000",,,,,,,,,"1.750000","1092.750000","18288.250000","2.250000",,"77.250000",,,,"2.000000","0.000000","10.666667","4.000000","3.625000","0.000000","43.800000","0.000000","1.200000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"184.750000","0.000000",,,,,,,,,"1.500000","425.250000","19109.500000","0.000000",,"48.750000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","30.000000","0.000000","0.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"166.750000","0.000000",,,,,,,,,"1.250000","407.750000","19259.250000","0.000000",,"28.125000",,,,"1.400000","0.000000","0.000000","2.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"221.500000","0.000000",,,,,,,,,"1.500000","494.000000","19014.750000","0.000000",,"41.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"140.750000","0.000000",,,,,,,,,"0.750000","455.750000","19282.250000","0.000000",,"17.500000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.250000",,"53.250000",,"53.250000",,"191.750000","0.000000",,,,,,,,,"0.750000","402.000000","19154.750000","0.000000",,"13.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"154.750000","0.000000",,,,,,,,,"0.750000","512.000000","19213.000000","0.000000",,"28.000000",,,,"0.800000","0.000000","0.000000","2.666667","1.375000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"170.000000","0.000000",,,,,,,,,"0.500000","401.500000","19127.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","18.000000","0.000000","0.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"188.500000","0.000000",,,,,,,,,"0.500000","400.750000","19228.500000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","2.666667","0.375000","0.000000","7.600000","0.000000","0.000000","7.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.500000",,"67.500000",,"67.500000",,"126.750000","0.000000",,,,,,,,,"0.750000","511.750000","19195.250000","0.000000",,"32.125000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.750000",,"145.750000",,"145.750000",,"210.250000","0.000000",,,,,,,,,"2.250000","1097.500000","17905.750000","12.000000",,"51.375000",,,,"1.400000","0.375000","2.333333","2.000000","2.125000","0.000000","30.400000","0.000000","5.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.250000",,"116.250000",,"116.250000",,"141.500000","0.000000",,,,,,,,,"3.000000","878.000000","18597.250000","0.000000",,"115.125000",,,,"4.000000","0.000000","1.666667","2.000000","7.375000","0.000000","81.000000","0.000000","0.200000","80.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"115.500000","0.000000",,,,,,,,,"0.750000","482.250000","19267.750000","0.000000",,"31.375000",,,,"1.000000","0.000000","0.000000","2.000000","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"109.250000","0.000000",,,,,,,,,"3.000000","512.250000","19157.500000","0.000000",,"75.000000",,,,"3.000000","0.000000","0.000000","2.666667","5.500000","0.000000","62.200000","0.000000","0.000000","62.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.000000",,"147.000000",,"147.000000",,"227.000000","0.000000",,,,,,,,,"2.000000","1110.500000","17759.750000","0.000000",,"96.750000",,,,"3.400000","0.000000","0.000000","3.333333","6.375000","0.000000","70.800000","0.000000","0.000000","70.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"214.500000","0.000000",,,,,,,,,"1.250000","766.750000","18571.250000","0.000000",,"40.375000",,,,"1.000000","0.000000","2.000000","2.666667","1.875000","0.000000","21.000000","0.000000","0.200000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"149.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"109.500000","0.000000",,,,,,,,,"2.750000","456.250000","19301.500000","0.000000",,"63.625000",,,,"2.600000","0.000000","0.000000","3.333333","4.750000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"140.500000",,"140.500000",,"140.500000",,"144.000000","0.000000",,,,,,,,,"1.000000","1060.000000","18089.750000","0.750000",,"38.250000",,,,"1.000000","0.000000","1.666667","2.000000","1.750000","0.000000","22.000000","0.000000","1.400000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"75.000000",,"75.000000",,"75.000000",,"151.750000","0.000000",,,,,,,,,"2.500000","565.000000","19028.000000","0.375000",,"86.875000",,,,"3.400000","0.000000","2.333333","4.333333","6.250000","0.000000","68.400000","0.000000","0.200000","68.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"115.750000","0.000000",,,,,,,,,"1.250000","416.000000","19305.750000","0.000000",,"31.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"119.250000","0.000000",,,,,,,,,"1.250000","496.250000","19229.750000","0.000000",,"35.625000",,,,"1.400000","0.000000","0.000000","1.333333","2.625000","0.000000","30.600000","0.000000","0.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"120.000000","0.000000",,,,,,,,,"0.500000","425.500000","19252.500000","0.000000",,"22.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","11.200000","0.000000","0.000000","11.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"150.750000","0.000000",,,,,,,,,"1.250000","426.000000","19223.500000","0.000000",,"21.375000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.000000",,"63.000000",,"63.000000",,"107.500000","0.000000",,,,,,,,,"0.500000","478.000000","19149.000000","0.000000",,"12.625000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.250000",,"60.250000",,"60.250000",,"106.000000","0.000000",,,,,,,,,"0.750000","456.750000","19356.500000","0.000000",,"33.000000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"129.750000","0.000000",,,,,,,,,"1.000000","417.250000","19185.250000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","18.200000","0.000000","0.000000","18.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.750000",,"67.750000",,"67.750000",,"94.500000","0.000000",,,,,,,,,"0.750000","513.750000","19315.250000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.750000",,"61.750000",,"61.750000",,"106.500000","0.000000",,,,,,,,,"1.000000","467.250000","19338.250000","0.000000",,"41.250000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"99.250000","0.000000",,,,,,,,,"0.750000","411.500000","19256.000000","0.000000",,"31.500000",,,,"0.800000","0.000000","0.000000","1.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.500000",,"69.500000",,"69.500000",,"140.500000","0.000000",,,,,,,,,"0.750000","526.750000","19188.500000","0.375000",,"29.875000",,,,"1.200000","0.000000","2.666667","1.333333","2.250000","0.000000","27.800000","0.000000","0.200000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"246.250000","0.000000",,,,,,,,,"1.000000","384.750000","19001.500000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.666667","2.125000","0.000000","26.600000","0.000000","0.000000","26.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"104.750000","0.000000",,,,,,,,,"0.750000","477.000000","19339.250000","0.000000",,"24.750000",,,,"0.800000","0.000000","0.000000","1.666667","1.375000","0.000000","16.400000","0.000000","0.000000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"115.250000","0.000000",,,,,,,,,"1.000000","500.750000","19152.250000","0.000000",,"23.500000",,,,"0.800000","0.000000","0.000000","1.000000","1.375000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"144.000000","0.000000",,,,,,,,,"1.000000","410.750000","19272.000000","0.000000",,"28.375000",,,,"0.800000","0.000000","2.666667","2.000000","1.375000","0.000000","17.600000","0.000000","0.200000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","12.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"133.500000","0.000000",,,,,,,,,"1.000000","400.000000","19236.750000","0.000000",,"15.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"135.000000","0.000000",,,,,,,,,"0.750000","487.250000","19095.250000","0.000000",,"29.625000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"112.250000","0.000000",,,,,,,,,"1.250000","398.500000","19310.000000","0.000000",,"33.375000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"81.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"126.500000","0.000000",,,,,,,,,"0.750000","411.750000","19243.750000","0.000000",,"14.125000",,,,"0.600000","0.000000","0.000000","0.333333","1.000000","0.000000","13.600000","0.000000","0.000000","13.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"137.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"80.000000",,"80.000000",,"80.000000",,"95.750000","0.000000",,,,,,,,,"1.250000","604.000000","19050.000000","0.000000",,"50.125000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","32.200000","0.000000","0.000000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.750000",,"162.750000",,"162.750000",,"127.000000","0.000000",,,,,,,,,"4.250000","1227.250000","18244.500000","2.250000",,"117.625000",,,,"3.800000","0.250000","2.666667","1.666667","6.750000","0.000000","78.600000","0.000000","4.000000","74.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"106.750000","0.000000",,,,,,,,,"3.000000","411.250000","19277.500000","0.375000",,"42.375000",,,,"1.200000","0.000000","0.333333","1.333333","1.875000","0.000000","24.000000","0.000000","0.200000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.000000",,"50.000000",,"50.000000",,"142.500000","0.000000",,,,,,,,,"0.500000","379.500000","19221.750000","0.000000",,"22.125000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.600000","0.000000","0.000000","25.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"102.500000","0.000000",,,,,,,,,"1.000000","512.000000","19201.750000","0.000000",,"36.625000",,,,"1.200000","0.000000","0.000000","22.000000","2.000000","0.000000","27.400000","0.000000","0.000000","27.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"105.250000","0.000000",,,,,,,,,"0.750000","412.750000","19358.000000","0.000000",,"25.875000",,,,"1.000000","0.000000","0.000000","1.333333","2.125000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"98.250000","0.000000",,,,,,,,,"0.000000","419.250000","19382.500000","0.000000",,"4.500000",,,,"0.000000","0.000000","0.000000","0.666667","0.000000","0.000000","2.800000","0.000000","0.000000","2.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.000000",,"68.000000",,"68.000000",,"173.500000","0.000000",,,,,,,,,"1.000000","514.250000","19135.250000","0.000000",,"31.500000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","27.000000","0.000000","0.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.500000",,"55.500000",,"55.500000",,"105.750000","0.000000",,,,,,,,,"0.750000","420.750000","19295.750000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.666667","1.000000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"125.500000","0.000000",,,,,,,,,"0.750000","429.750000","19313.500000","0.000000",,"8.625000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","5.600000","0.000000","0.000000","5.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"71.250000",,"71.250000",,"71.250000",,"140.750000","0.000000",,,,,,,,,"0.750000","539.000000","19101.750000","0.000000",,"35.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"76.000000",,"76.000000",,"76.000000",,"159.000000","0.000000",,,,,,,,,"1.000000","574.750000","19064.750000","0.000000",,"25.000000",,,,"0.400000","0.000000","0.000000","1.333333","0.750000","0.000000","11.800000","0.000000","0.000000","11.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"220.500000",,"220.500000",,"220.500000",,"275.000000","0.000000",,,,,,,,,"197.750000","1661.500000","16991.000000","4387.875000",,"4626.625000",,,,"82.000000","120.500000","2.333333","28.000000","32.500000","0.000000","1640.400000","0.000000","1291.800000","348.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","188.000000",,,,,,,,,"379.000000","514.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"263.000000",,"263.000000",,"263.000000",,"214.500000","0.000000",,,,,,,,,"159.000000","1980.000000","16686.750000","125.500000",,"3776.625000",,,,"21.400000","28.375000","1.666667","47.666667","11.875000","0.000000","431.600000","0.000000","302.400000","129.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12759.000000","65.000000",,,,,,,,,"173238.000000","17013.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"319.750000",,"319.750000",,"319.750000",,"325.250000","0.000000",,,,,,,,,"228.000000","2408.000000","15818.000000","0.000000",,"8006.125000",,,,"20.200000","0.000000","5.000000","18.666667","37.750000","0.000000","405.800000","0.000000","0.200000","405.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20208.000000","80.000000",,,,,,,,,"273864.000000","24810.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"304.750000",,"304.750000",,"304.750000",,"333.000000","0.000000",,,,,,,,,"217.750000","2293.500000","16005.750000","0.000000",,"12143.250000",,,,"32.400000","0.000000","8.666667","17.666667","60.750000","0.000000","649.200000","0.000000","0.800000","648.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8932.000000","31.000000",,,,,,,,,"121054.000000","9597.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"267.250000",,"267.250000",,"267.250000",,"221.750000","0.000000",,,,,,,,,"272.000000","2010.500000","16706.500000","9.000000",,"9623.625000",,,,"64.800000","1.375000","3.666667","8.333333","119.750000","0.000000","1296.600000","0.000000","16.000000","1280.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14509.000000","63.000000",,,,,,,,,"196715.000000","18309.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"279.000000",,"279.000000",,"279.000000",,"175.750000","0.000000",,,,,,,,,"80.500000","2102.500000","16644.000000","550.375000",,"1256.000000",,,,"44.400000","71.625000","1.000000","10.333333","11.625000","0.000000","891.800000","0.000000","766.200000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"104.000000","127.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"451.000000",,"451.000000",,"451.000000",,"205.000000","0.000000",,,,,,,,,"19.750000","3393.000000","14934.000000","316.875000",,"609.625000",,,,"11.600000","7.875000","0.666667","7.666667","13.875000","0.000000","234.600000","0.000000","86.000000","148.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","13.000000",,,,,,,,,"97.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"590.750000",,"590.750000",,"590.750000",,"189.000000","0.000000",,,,,,,,,"19.500000","4446.250000","14343.750000","40.875000",,"344.875000",,,,"7.800000","3.250000","0.666667","2.000000","11.125000","0.000000","156.800000","0.000000","35.800000","121.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"82.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"606.250000",,"606.250000",,"606.250000",,"174.250000","0.000000",,,,,,,,,"11.000000","4561.750000","14862.000000","18.375000",,"546.625000",,,,"7.400000","0.375000","0.666667","4.333333","13.125000","0.000000","148.200000","0.000000","5.800000","142.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"63.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"631.250000",,"631.250000",,"631.250000",,"203.500000","0.000000",,,,,,,,,"3.750000","4748.500000","14850.250000","2.250000",,"255.625000",,,,"3.000000","0.000000","1.333333","3.000000","5.125000","0.000000","61.000000","0.000000","2.400000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"57.000000","70.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"572.000000",,"572.000000",,"572.000000",,"392.500000","0.000000",,,,,,,,,"8.250000","4302.000000","13463.250000","67.125000",,"347.250000",,,,"5.000000","0.750000","0.666667","5.333333","8.500000","0.000000","103.600000","0.000000","11.600000","92.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"83.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"565.500000",,"565.500000",,"565.500000",,"361.750000","0.000000",,,,,,,,,"4.250000","4256.000000","14062.000000","0.000000",,"175.875000",,,,"3.800000","0.000000","0.000000","3.000000","7.125000","0.000000","79.000000","0.000000","0.200000","78.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","8.000000",,,,,,,,,"98.000000","110.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"673.500000",,"673.500000",,"673.500000",,"190.000000","0.000000",,,,,,,,,"4.250000","5068.000000","14375.250000","7.875000",,"250.125000",,,,"3.400000","0.000000","1.333333","3.000000","6.375000","0.000000","70.000000","0.000000","1.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"75.000000","106.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"585.250000",,"585.250000",,"585.250000",,"282.000000","0.000000",,,,,,,,,"71.000000","4405.000000","14286.250000","385.500000",,"4105.125000",,,,"24.400000","4.125000","1.000000","10.666667","41.625000","0.000000","491.200000","0.000000","46.600000","444.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"85.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"680.500000",,"680.500000",,"680.500000",,"218.750000","0.000000",,,,,,,,,"12.750000","5120.500000","13514.750000","100.000000",,"696.750000",,,,"7.600000","3.000000","1.333333","5.333333","10.875000","0.000000","154.400000","0.000000","35.000000","119.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"602.500000",,"602.500000",,"602.500000",,"212.500000","0.000000",,,,,,,,,"6.500000","4532.500000","14356.750000","0.000000",,"363.750000",,,,"8.600000","0.000000","0.000000","3.000000","16.125000","0.000000","174.400000","0.000000","0.000000","174.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"605.250000",,"605.250000",,"605.250000",,"187.000000","0.000000",,,,,,,,,"8.750000","4554.000000","14375.750000","7.875000",,"430.000000",,,,"4.000000","1.500000","0.333333","5.333333","5.625000","0.000000","82.000000","0.000000","19.400000","62.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"565.250000",,"565.250000",,"565.250000",,"231.000000","0.000000",,,,,,,,,"10.250000","4254.750000","14320.250000","0.000000",,"625.125000",,,,"7.000000","0.000000","0.666667","3.666667","13.125000","0.000000","142.000000","0.000000","0.800000","141.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"73.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"649.500000",,"649.500000",,"649.500000",,"136.000000","0.000000",,,,,,,,,"7.000000","4888.500000","14453.750000","0.000000",,"364.125000",,,,"4.200000","0.000000","0.666667","2.666667","7.875000","0.000000","87.400000","0.000000","0.400000","87.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"662.750000",,"662.750000",,"662.750000",,"229.500000","0.000000",,,,,,,,,"10.500000","4986.750000","14373.000000","0.000000",,"991.125000",,,,"3.600000","0.000000","0.000000","12.000000","6.750000","0.000000","72.600000","0.000000","0.000000","72.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"658.500000",,"658.500000",,"658.500000",,"112.250000","0.000000",,,,,,,,,"7.750000","4955.250000","14495.000000","0.375000",,"372.375000",,,,"5.000000","0.000000","2.000000","6.000000","9.375000","0.000000","103.200000","0.000000","1.600000","101.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"50.000000","60.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"617.000000",,"617.000000",,"617.000000",,"235.000000","0.000000",,,,,,,,,"55.500000","4642.750000","14210.250000","69.750000",,"4105.000000",,,,"20.800000","0.750000","0.666667","12.333333","38.250000","0.000000","419.600000","0.000000","8.000000","411.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"107.000000","134.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"644.750000",,"644.750000",,"644.750000",,"139.250000","0.000000",,,,,,,,,"5.500000","4851.000000","14433.500000","0.375000",,"186.375000",,,,"5.800000","0.000000","0.000000","1.333333","10.875000","0.000000","119.800000","0.000000","0.800000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","11.000000",,,,,,,,,"112.000000","124.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"566.500000",,"566.500000",,"566.500000",,"192.250000","0.000000",,,,,,,,,"5.250000","4261.750000","14338.250000","22.875000",,"286.125000",,,,"3.600000","1.875000","0.333333","3.000000","4.875000","0.000000","75.800000","0.000000","22.800000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","7.000000",,,,,,,,,"82.000000","103.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"622.750000",,"622.750000",,"622.750000",,"279.750000","0.000000",,,,,,,,,"3.750000","4687.250000","14300.000000","12.000000",,"134.875000",,,,"3.400000","0.375000","0.333333","2.333333","5.625000","0.000000","68.200000","0.000000","7.000000","61.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","5.000000",,,,,,,,,"77.000000","91.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"500.750000",,"500.750000",,"500.750000",,"473.500000","0.000000",,,,,,,,,"4.500000","3769.750000","13729.250000","6.000000",,"90.000000",,,,"3.000000","0.375000","0.333333","1.333333","5.250000","0.000000","63.600000","0.000000","6.800000","56.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"120.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"603.250000",,"603.250000",,"603.250000",,"243.000000","0.000000",,,,,,,,,"34.000000","4538.000000","13894.750000","218.250000",,"1566.750000",,,,"11.800000","2.625000","0.666667","11.000000","19.000000","0.000000","237.000000","0.000000","29.600000","207.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","16.000000",,,,,,,,,"108.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1413.000000",,"1413.000000",,"1413.000000",,"219.750000","0.000000",,,,,,,,,"10.500000","10625.250000","6999.000000","4.500000",,"301.750000",,,,"10.600000","0.375000","1.000000","4.666667","19.000000","0.000000","212.400000","0.000000","7.200000","205.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","9.000000",,,,,,,,,"76.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.750000",,"604.750000",,"604.750000",,"357.750000","0.000000",,,,,,,,,"9.750000","4549.750000","12845.750000","3.000000",,"530.875000",,,,"4.600000","0.375000","3.333333","7.333333","7.875000","0.000000","94.200000","0.000000","7.600000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"65.000000","80.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"653.250000",,"653.250000",,"653.250000",,"246.750000","0.000000",,,,,,,,,"37.250000","4914.250000","14143.250000","269.625000",,"1562.125000",,,,"15.800000","13.000000","1.333333","9.666667","16.000000","0.000000","316.200000","0.000000","143.000000","173.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","72.000000",,,,,,,,,"480.000000","555.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1076.500000",,"1076.500000",,"1076.500000",,"304.500000","0.000000",,,,,,,,,"52.500000","8097.250000","7812.250000","121.750000",,"2161.625000",,,,"34.200000","3.250000","3.666667","7.000000","59.625000","0.000000","684.600000","0.000000","37.400000","647.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","26.000000",,,,,,,,,"177.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"763.500000",,"763.500000",,"763.500000",,"177.500000","0.000000",,,,,,,,,"38.500000","5743.500000","12866.250000","105.000000",,"1701.125000",,,,"24.400000","2.250000","1.333333","4.333333","43.875000","0.000000","488.400000","0.000000","25.600000","462.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","27.000000",,,,,,,,,"167.000000","176.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"626.000000",,"626.000000",,"626.000000",,"222.750000","0.000000",,,,,,,,,"21.000000","4710.250000","14315.750000","67.375000",,"991.500000",,,,"9.600000","1.000000","2.000000","10.000000","16.500000","0.000000","192.000000","0.000000","12.400000","179.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"47.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"711.250000",,"711.250000",,"711.250000",,"151.000000","0.000000",,,,,,,,,"1.750000","5350.000000","14462.250000","0.000000",,"65.875000",,,,"0.000000","0.000000","0.000000","3.333333","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"616.500000",,"616.500000",,"616.500000",,"153.250000","0.000000",,,,,,,,,"32.000000","4640.250000","14400.250000","137.375000",,"1510.500000",,,,"15.000000","3.000000","0.666667","6.666667","24.625000","0.000000","303.000000","0.000000","35.800000","267.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","44.000000",,,,,,,,,"182.000000","196.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"575.250000",,"575.250000",,"575.250000",,"203.250000","0.000000",,,,,,,,,"6.750000","4329.750000","14509.500000","8.875000",,"419.875000",,,,"3.400000","0.000000","0.333333","9.666667","6.000000","0.000000","68.400000","0.000000","1.000000","67.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"77.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"712.250000",,"712.250000",,"712.250000",,"216.500000","0.000000",,,,,,,,,"29.750000","5360.250000","12809.750000","183.375000",,"961.125000",,,,"15.200000","4.125000","2.666667","6.000000","24.375000","0.000000","307.200000","0.000000","45.000000","262.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","17.000000",,,,,,,,,"113.000000","141.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.000000",,"638.000000",,"638.000000",,"145.000000","0.000000",,,,,,,,,"18.750000","4800.500000","14352.000000","15.750000",,"680.875000",,,,"11.400000","1.125000","1.666667","5.666667","19.875000","0.000000","231.600000","0.000000","15.600000","216.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","15.000000",,,,,,,,,"106.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"563.250000",,"563.250000",,"563.250000",,"205.750000","0.000000",,,,,,,,,"26.750000","4239.250000","14578.000000","101.000000",,"757.125000",,,,"11.000000","1.250000","1.666667","9.000000","19.250000","0.000000","220.200000","0.000000","15.800000","204.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","12.000000",,,,,,,,,"103.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"488.000000",,"488.000000",,"488.000000",,"227.250000","0.000000",,,,,,,,,"8.250000","3672.750000","14196.250000","15.000000",,"272.625000",,,,"7.200000","0.375000","0.666667","3.333333","13.000000","0.000000","147.200000","0.000000","6.800000","140.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","31.000000",,,,,,,,,"153.000000","173.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"643.000000",,"643.000000",,"643.000000",,"198.000000","0.000000",,,,,,,,,"31.500000","4838.250000","13767.500000","226.625000",,"1597.750000",,,,"11.400000","4.000000","3.000000","14.333333","17.250000","0.000000","230.400000","0.000000","45.200000","185.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","6.000000",,,,,,,,,"68.000000","89.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"612.500000",,"612.500000",,"612.500000",,"201.750000","0.000000",,,,,,,,,"10.750000","4608.000000","14363.500000","3.750000",,"407.625000",,,,"7.400000","0.375000","0.666667","3.666667","13.375000","0.000000","151.400000","0.000000","5.800000","145.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"610.000000",,"610.000000",,"610.000000",,"254.750000","0.000000",,,,,,,,,"3.500000","4591.500000","14285.000000","0.000000",,"378.625000",,,,"1.000000","0.000000","0.000000","8.666667","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"39.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"638.750000",,"638.750000",,"638.750000",,"216.250000","0.000000",,,,,,,,,"3.750000","4808.000000","14369.500000","0.000000",,"369.000000",,,,"1.600000","0.000000","0.000000","8.666667","2.875000","0.000000","33.000000","0.000000","0.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"53.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"662.750000",,"662.750000",,"662.750000",,"244.500000","0.000000",,,,,,,,,"14.500000","4986.500000","14234.500000","373.125000",,"262.875000",,,,"4.200000","6.250000","2.000000","50.000000","1.375000","0.000000","84.600000","0.000000","68.000000","16.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"364.000000","389.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"775.000000",,"775.000000",,"775.000000",,"174.750000","0.000000",,,,,,,,,"38.250000","5831.000000","13690.750000","581.500000",,"353.625000",,,,"25.200000","44.250000","1.000000","10.000000","2.625000","0.000000","505.600000","0.000000","475.000000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"249.000000","250.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"748.250000",,"748.250000",,"748.250000",,"132.500000","0.000000",,,,,,,,,"9.750000","5630.750000","14530.750000","0.000000",,"348.375000",,,,"1.600000","0.000000","3.000000","19.000000","3.000000","0.000000","34.600000","0.000000","0.400000","34.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"614.250000",,"614.250000",,"614.250000",,"165.500000","0.000000",,,,,,,,,"4.250000","4623.750000","14368.750000","0.000000",,"397.125000",,,,"1.200000","0.000000","0.000000","12.333333","2.125000","0.000000","24.800000","0.000000","0.800000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"48.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"670.250000",,"670.250000",,"670.250000",,"194.750000","0.000000",,,,,,,,,"2.750000","5041.750000","14411.750000","0.750000",,"254.875000",,,,"1.200000","0.000000","2.333333","7.000000","2.125000","0.000000","25.400000","0.000000","0.800000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"65.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"654.000000",,"654.000000",,"654.000000",,"187.500000","0.000000",,,,,,,,,"5.250000","4921.000000","14423.500000","2.250000",,"423.625000",,,,"1.600000","0.000000","1.666667","11.000000","2.500000","0.000000","32.200000","0.000000","1.600000","30.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"70.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"633.250000",,"633.250000",,"633.250000",,"176.500000","0.000000",,,,,,,,,"7.250000","4766.250000","14431.250000","0.375000",,"552.750000",,,,"1.600000","0.000000","1.666667","13.000000","2.625000","0.000000","32.000000","0.000000","1.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"73.000000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"630.500000",,"630.500000",,"630.500000",,"162.250000","0.000000",,,,,,,,,"3.250000","4746.750000","14410.000000","0.000000",,"377.250000",,,,"1.200000","0.000000","0.000000","15.666667","2.125000","0.000000","24.600000","0.000000","0.000000","24.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"63.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"643.500000",,"643.500000",,"643.500000",,"159.750000","0.000000",,,,,,,,,"5.000000","4843.750000","14467.250000","9.375000",,"353.625000",,,,"2.000000","0.000000","0.666667","6.000000","3.125000","0.000000","40.600000","0.000000","2.600000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"61.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"644.250000",,"644.250000",,"644.250000",,"202.500000","0.000000",,,,,,,,,"82.750000","4846.500000","14300.000000","10.750000",,"5538.875000",,,,"19.200000","0.375000","4.000000","22.666667","35.250000","0.000000","384.400000","0.000000","6.400000","378.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"59.000000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"584.000000",,"584.000000",,"584.000000",,"228.000000","0.000000",,,,,,,,,"113.750000","4393.500000","15089.500000","268.125000",,"4890.250000",,,,"67.000000","15.375000","4.666667","8.000000","110.250000","0.000000","1343.600000","0.000000","166.600000","1177.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","19.000000",,,,,,,,,"113.000000","129.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"698.750000",,"698.750000",,"698.750000",,"167.000000","0.000000",,,,,,,,,"12.750000","5258.500000","14454.250000","52.125000",,"480.000000",,,,"8.400000","0.750000","1.000000","4.333333","14.500000","0.000000","169.200000","0.000000","11.200000","158.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"18.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"617.500000",,"617.500000",,"617.500000",,"114.000000","0.000000",,,,,,,,,"20.750000","4647.250000","14828.250000","352.875000",,"161.000000",,,,"9.400000","16.875000","1.333333","7.000000","0.375000","0.000000","188.400000","0.000000","182.200000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"588.500000",,"588.500000",,"588.500000",,"269.000000","0.000000",,,,,,,,,"30.250000","4429.500000","13849.750000","593.250000",,"266.625000",,,,"14.400000","22.500000","1.000000","4.000000","4.000000","0.000000","288.600000","0.000000","243.600000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"75.000000","56.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"534.250000",,"534.250000",,"534.250000",,"255.250000","0.000000",,,,,,,,,"23.000000","4021.250000","14328.250000","604.125000",,"406.125000",,,,"4.000000","6.000000","1.000000","14.333333","1.000000","0.000000","80.200000","0.000000","66.200000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"577.000000",,"577.000000",,"577.000000",,"411.500000","0.000000",,,,,,,,,"21.250000","4340.750000","14195.750000","596.625000",,"404.625000",,,,"4.200000","5.375000","0.666667","10.666667","2.125000","0.000000","85.600000","0.000000","60.400000","25.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"82.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"479.250000",,"479.250000",,"479.250000",,"180.500000","0.000000",,,,,,,,,"72.250000","3605.500000","15726.500000","1109.125000",,"272.250000",,,,"26.400000","47.500000","1.000000","13.000000","1.500000","0.000000","528.400000","0.000000","508.600000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"60.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"626.250000",,"626.250000",,"626.250000",,"132.750000","0.000000",,,,,,,,,"41.250000","4713.250000","14864.000000","686.625000",,"160.875000",,,,"9.400000","16.875000","1.000000","7.000000","0.625000","0.000000","190.000000","0.000000","180.800000","9.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"72.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"604.250000",,"604.250000",,"604.250000",,"129.750000","0.000000",,,,,,,,,"37.750000","4547.500000","14743.500000","670.125000",,"166.500000",,,,"9.600000","16.875000","0.333333","17.666667","0.625000","0.000000","192.000000","0.000000","182.400000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"569.750000",,"569.750000",,"569.750000",,"190.500000","0.000000",,,,,,,,,"25.000000","4287.500000","14658.500000","216.000000",,"47.875000",,,,"10.000000","18.000000","0.333333","1.666667","0.750000","0.000000","203.600000","0.000000","192.600000","11.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"181.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"536.750000",,"536.750000",,"536.750000",,"179.500000","0.000000",,,,,,,,,"25.250000","4038.500000","15069.500000","88.000000",,"97.875000",,,,"14.200000","18.000000","2.000000","1.333333","8.250000","0.000000","286.800000","0.000000","195.600000","91.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"603.000000",,"603.000000",,"603.000000",,"131.000000","0.000000",,,,,,,,,"28.250000","4537.750000","15078.500000","143.625000",,"320.250000",,,,"23.600000","34.875000","1.666667","5.666667","9.375000","0.000000","475.000000","0.000000","372.200000","102.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"103.000000","65.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"720.500000",,"720.500000",,"720.500000",,"211.750000","0.000000",,,,,,,,,"12.000000","5420.000000","13650.500000","50.250000",,"329.250000",,,,"10.600000","4.125000","0.666667","3.333333","15.625000","0.000000","214.000000","0.000000","44.200000","169.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"107.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1139.000000",,"1139.000000",,"1139.000000",,"249.500000","0.000000",,,,,,,,,"32.250000","8567.000000","9664.500000","91.875000",,"547.000000",,,,"17.200000","8.625000","0.333333","2.333333","23.125000","0.000000","344.200000","0.000000","95.600000","248.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"60.000000","75.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1050.500000",,"1050.500000",,"1050.500000",,"246.250000","0.000000",,,,,,,,,"9.500000","7903.500000","9529.750000","0.000000",,"505.875000",,,,"2.600000","0.000000","2.333333","7.333333","4.500000","0.000000","52.000000","0.000000","0.200000","51.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"49.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1152.000000",,"1152.000000",,"1152.000000",,"725.000000","0.000000",,,,,,,,,"8.500000","8664.250000","9172.250000","2.250000",,"484.500000",,,,"6.400000","0.000000","0.000000","4.333333","11.500000","0.000000","129.000000","0.000000","2.400000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"88.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1130.250000",,"1130.250000",,"1130.250000",,"227.000000","0.000000",,,,,,,,,"6.500000","8503.250000","9482.750000","3.375000",,"425.625000",,,,"2.000000","0.000000","0.333333","8.000000","3.750000","0.000000","43.200000","0.000000","3.000000","40.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"85.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1246.500000",,"1246.500000",,"1246.500000",,"192.000000","0.000000",,,,,,,,,"33.000000","9376.250000","9891.500000","88.500000",,"1180.125000",,,,"12.200000","9.375000","0.666667","16.000000","13.375000","0.000000","246.600000","0.000000","101.400000","145.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"37.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.500000",,"1103.500000",,"1103.500000",,"227.250000","0.000000",,,,,,,,,"22.000000","8301.750000","9499.250000","22.750000",,"1333.125000",,,,"5.400000","1.875000","3.000000","16.333333","7.875000","0.000000","108.800000","0.000000","23.800000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1076.500000",,"1076.500000",,"1076.500000",,"300.250000","0.000000",,,,,,,,,"12.250000","8098.750000","9617.000000","60.750000",,"438.750000",,,,"4.800000","5.625000","5.333333","15.666667","2.875000","0.000000","96.600000","0.000000","63.800000","32.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1244.750000",,"1244.750000",,"1244.750000",,"228.500000","0.000000",,,,,,,,,"6.500000","9366.000000","9500.250000","0.000000",,"441.750000",,,,"2.600000","0.000000","0.666667","7.333333","4.750000","0.000000","52.600000","0.000000","0.600000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"34.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1051.750000",,"1051.750000",,"1051.750000",,"536.000000","0.000000",,,,,,,,,"3.000000","7911.750000","9218.000000","0.000000",,"367.500000",,,,"1.200000","0.000000","1.333333","11.333333","2.125000","0.000000","24.200000","0.000000","0.200000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1147.750000",,"1147.750000",,"1147.750000",,"322.500000","0.000000",,,,,,,,,"9.250000","8635.000000","9436.500000","0.375000",,"461.625000",,,,"2.200000","0.000000","8.333333","10.000000","4.125000","0.000000","47.000000","0.000000","1.600000","45.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"15.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1093.250000",,"1093.250000",,"1093.250000",,"240.500000","0.000000",,,,,,,,,"5.250000","8224.250000","9486.750000","0.000000",,"482.875000",,,,"1.800000","0.000000","7.333333","16.666667","3.375000","0.000000","39.600000","0.000000","0.200000","39.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"53.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1307.750000",,"1307.750000",,"1307.750000",,"236.000000","0.000000",,,,,,,,,"5.500000","9838.000000","9526.750000","0.625000",,"460.125000",,,,"3.400000","0.000000","2.333333","12.666667","6.000000","0.000000","68.800000","0.000000","1.800000","67.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1268.000000",,"1268.000000",,"1268.000000",,"196.500000","0.000000",,,,,,,,,"6.000000","9537.000000","9543.250000","0.250000",,"487.750000",,,,"2.800000","0.000000","2.000000","13.333333","5.125000","0.000000","57.400000","0.000000","1.000000","56.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1218.500000",,"1218.500000",,"1218.500000",,"139.250000","0.000000",,,,,,,,,"4.500000","9166.250000","9578.250000","0.375000",,"497.875000",,,,"2.600000","0.000000","1.333333","14.333333","4.875000","0.000000","55.600000","0.000000","0.600000","55.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1285.750000",,"1285.750000",,"1285.750000",,"170.000000","0.000000",,,,,,,,,"5.250000","9671.250000","9619.750000","2.250000",,"369.250000",,,,"2.200000","0.000000","2.000000","11.000000","4.000000","0.000000","46.200000","0.000000","0.600000","45.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1169.500000",,"1169.500000",,"1169.500000",,"220.250000","0.000000",,,,,,,,,"6.750000","8797.750000","9545.500000","1.875000",,"563.875000",,,,"1.400000","0.000000","1.333333","38.000000","2.250000","0.000000","30.600000","0.000000","3.400000","27.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1369.500000",,"1369.500000",,"1369.500000",,"259.750000","0.000000",,,,,,,,,"4.750000","10302.500000","9550.500000","1.875000",,"405.375000",,,,"2.600000","0.000000","2.666667","11.000000","4.375000","0.000000","53.400000","0.000000","2.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1203.250000",,"1203.250000",,"1203.250000",,"224.250000","0.000000",,,,,,,,,"7.250000","9049.750000","9516.000000","0.750000",,"657.250000",,,,"3.200000","0.000000","1.333333","20.333333","6.000000","0.000000","65.600000","0.000000","1.000000","64.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1112.250000",,"1112.250000",,"1112.250000",,"404.250000","0.000000",,,,,,,,,"6.500000","8367.750000","9385.000000","0.375000",,"431.625000",,,,"1.600000","0.000000","3.000000","15.333333","3.000000","0.000000","34.800000","0.000000","1.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1225.500000",,"1225.500000",,"1225.500000",,"252.000000","0.000000",,,,,,,,,"4.750000","9219.500000","9517.750000","0.750000",,"473.250000",,,,"1.800000","0.000000","2.666667","17.333333","3.000000","0.000000","36.400000","0.000000","1.000000","35.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1314.750000",,"1314.750000",,"1314.750000",,"108.500000","0.000000",,,,,,,,,"6.250000","9888.500000","9642.000000","0.750000",,"350.125000",,,,"1.000000","0.000000","1.666667","30.000000","1.375000","0.000000","20.000000","0.000000","1.600000","18.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1242.500000",,"1242.500000",,"1242.500000",,"235.250000","0.000000",,,,,,,,,"6.750000","9344.250000","9527.000000","1.375000",,"453.375000",,,,"2.400000","0.000000","2.333333","14.000000","4.125000","0.000000","48.200000","0.000000","1.800000","46.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1180.000000",,"1180.000000",,"1180.000000",,"285.250000","0.000000",,,,,,,,,"6.250000","8876.250000","9440.000000","0.750000",,"410.625000",,,,"2.400000","0.000000","0.666667","14.333333","4.125000","0.000000","49.200000","0.000000","1.600000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1120.750000",,"1120.750000",,"1120.750000",,"257.000000","0.000000",,,,,,,,,"7.000000","8429.500000","9474.250000","1.500000",,"376.375000",,,,"2.400000","0.000000","1.333333","12.000000","4.500000","0.000000","50.000000","0.000000","1.200000","48.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1160.000000",,"1160.000000",,"1160.000000",,"306.500000","0.000000",,,,,,,,,"5.000000","8725.750000","9412.500000","1.125000",,"500.250000",,,,"1.800000","0.000000","1.333333","17.333333","3.250000","0.000000","37.400000","0.000000","1.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1288.500000",,"1288.500000",,"1288.500000",,"243.000000","0.000000",,,,,,,,,"7.500000","9691.750000","9507.000000","3.625000",,"499.000000",,,,"2.400000","0.000000","5.000000","12.333333","4.375000","0.000000","51.200000","0.000000","3.200000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1286.500000",,"1286.500000",,"1286.500000",,"251.750000","0.000000",,,,,,,,,"9.750000","9676.750000","9559.250000","5.500000",,"444.000000",,,,"2.800000","0.375000","3.000000","11.333333","4.375000","0.000000","56.800000","0.000000","7.200000","49.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1178.250000",,"1178.250000",,"1178.250000",,"292.250000","0.000000",,,,,,,,,"6.000000","8862.000000","9494.750000","2.500000",,"429.250000",,,,"1.800000","0.375000","2.333333","13.333333","2.875000","0.000000","39.000000","0.000000","5.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1250.750000",,"1250.750000",,"1250.750000",,"287.500000","0.000000",,,,,,,,,"5.000000","9409.250000","9473.500000","1.750000",,"411.250000",,,,"2.400000","0.000000","2.666667","9.333333","4.125000","0.000000","49.800000","0.000000","3.800000","46.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1154.750000",,"1154.750000",,"1154.750000",,"262.500000","0.000000",,,,,,,,,"24.500000","8688.000000","9617.750000","7.875000",,"1664.625000",,,,"6.400000","0.625000","10.000000","24.333333","11.125000","0.000000","128.400000","0.000000","8.000000","120.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1167.750000",,"1167.750000",,"1167.750000",,"186.000000","0.000000",,,,,,,,,"52.000000","8786.000000","9567.250000","7.500000",,"3361.500000",,,,"10.800000","0.375000","3.000000","43.000000","19.500000","0.000000","217.200000","0.000000","7.400000","209.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1271.500000",,"1271.500000",,"1271.500000",,"287.000000","0.000000",,,,,,,,,"7.500000","9563.750000","9609.750000","16.875000",,"471.375000",,,,"4.600000","1.375000","4.000000","19.000000","7.000000","0.000000","94.200000","0.000000","18.200000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1162.250000",,"1162.250000",,"1162.250000",,"250.000000","0.000000",,,,,,,,,"27.000000","8742.750000","9915.000000","544.750000",,"777.000000",,,,"10.400000","12.125000","3.333333","25.333333","7.000000","0.000000","210.000000","0.000000","134.000000","76.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"56.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"892.250000",,"892.250000",,"892.250000",,"447.500000","0.000000",,,,,,,,,"176.250000","6713.250000","10175.500000","1023.750000",,"10632.750000",,,,"49.400000","15.875000","3.333333","18.000000","76.750000","0.000000","989.400000","0.000000","168.800000","820.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1027.250000",,"1027.250000",,"1027.250000",,"228.750000","0.000000",,,,,,,,,"5.500000","7726.750000","9456.250000","5.625000",,"343.125000",,,,"1.000000","0.375000","0.666667","13.666667","1.375000","0.000000","22.400000","0.000000","4.400000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"951.000000",,"951.000000",,"951.000000",,"307.500000","0.000000",,,,,,,,,"4.500000","7156.000000","9368.500000","3.750000",,"293.875000",,,,"2.800000","0.375000","0.666667","4.333333","4.500000","0.000000","56.800000","0.000000","5.800000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1092.000000",,"1092.000000",,"1092.000000",,"308.500000","0.000000",,,,,,,,,"4.250000","8213.500000","9404.250000","1.125000",,"486.375000",,,,"1.000000","0.000000","0.666667","14.000000","1.750000","0.000000","22.800000","0.000000","1.400000","21.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"898.000000",,"898.000000",,"898.000000",,"204.250000","0.000000",,,,,,,,,"2.250000","6754.250000","9402.000000","1.875000",,"225.375000",,,,"0.800000","0.000000","0.333333","8.666667","1.500000","0.000000","18.800000","0.000000","2.400000","16.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1028.250000",,"1028.250000",,"1028.250000",,"147.250000","0.000000",,,,,,,,,"3.250000","7733.250000","9503.500000","0.750000",,"266.250000",,,,"0.800000","0.000000","0.666667","6.333333","1.125000","0.000000","17.000000","0.000000","2.800000","14.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"844.500000",,"844.500000",,"844.500000",,"163.750000","0.000000",,,,,,,,,"6.500000","6353.750000","9458.250000","1.875000",,"230.250000",,,,"1.800000","0.000000","0.333333","13.333333","3.250000","0.000000","38.400000","0.000000","2.000000","36.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.500000",,"884.500000",,"884.500000",,"151.250000","0.000000",,,,,,,,,"4.500000","6656.250000","9499.000000","2.625000",,"401.875000",,,,"1.000000","0.000000","1.333333","10.333333","1.750000","0.000000","23.800000","0.000000","2.600000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"906.000000",,"906.000000",,"906.000000",,"127.250000","0.000000",,,,,,,,,"25.250000","6816.750000","9766.750000","346.875000",,"1326.375000",,,,"8.600000","5.875000","4.000000","20.666667","10.000000","0.000000","174.200000","0.000000","64.400000","109.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.250000",,"856.250000",,"856.250000",,"164.000000","0.000000",,,,,,,,,"9.000000","6442.250000","9504.250000","20.250000",,"362.625000",,,,"3.400000","2.125000","2.333333","7.000000","4.000000","0.000000","69.200000","0.000000","24.000000","45.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"856.250000",,"856.250000",,"856.250000",,"156.500000","0.000000",,,,,,,,,"3.750000","6442.250000","9418.000000","0.625000",,"297.000000",,,,"1.000000","0.000000","3.000000","8.000000","1.750000","0.000000","22.400000","0.000000","0.800000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"884.000000",,"884.000000",,"884.000000",,"179.000000","0.000000",,,,,,,,,"3.500000","6648.750000","9448.000000","1.875000",,"227.250000",,,,"1.600000","0.000000","0.666667","6.666667","2.500000","0.000000","32.200000","0.000000","2.600000","29.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1158.250000",,"1158.250000",,"1158.250000",,"319.250000","0.000000",,,,,,,,,"3.250000","8712.250000","9407.000000","2.125000",,"406.375000",,,,"1.000000","0.000000","3.333333","12.000000","1.750000","0.000000","23.600000","0.000000","2.600000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1266.500000",,"1266.500000",,"1266.500000",,"212.250000","0.000000",,,,,,,,,"16.750000","9526.750000","9583.250000","11.250000",,"936.625000",,,,"3.800000","1.000000","3.000000","33.333333","5.625000","0.000000","76.000000","0.000000","14.600000","61.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1110.500000",,"1110.500000",,"1110.500000",,"501.500000","0.000000",,,,,,,,,"2.750000","8354.000000","9211.250000","1.875000",,"335.125000",,,,"0.800000","0.000000","0.333333","7.666667","1.375000","0.000000","18.200000","0.000000","0.600000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1103.500000",,"1103.500000",,"1103.500000",,"162.000000","0.000000",,,,,,,,,"9.000000","8302.750000","9535.500000","1.125000",,"546.375000",,,,"2.000000","0.000000","2.666667","11.000000","3.375000","0.000000","40.600000","0.000000","1.000000","39.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1104.500000",,"1104.500000",,"1104.500000",,"262.500000","0.000000",,,,,,,,,"79.250000","8309.500000","10911.000000","2243.625000",,"972.000000",,,,"32.600000","54.375000","1.666667","14.000000","6.375000","0.000000","654.000000","0.000000","583.800000","70.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1067.000000",,"1067.000000",,"1067.000000",,"377.000000","0.000000",,,,,,,,,"87.500000","8026.500000","10848.000000","1455.250000",,"2058.750000",,,,"28.800000","33.125000","3.333333","18.666667","20.125000","0.000000","576.800000","0.000000","358.400000","218.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1140.000000",,"1140.000000",,"1140.000000",,"188.500000","0.000000",,,,,,,,,"78.750000","8576.250000","9930.250000","632.375000",,"3302.250000",,,,"20.200000","13.500000","3.000000","14.333333","24.375000","0.000000","406.600000","0.000000","144.200000","262.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"920.000000",,"920.000000",,"920.000000",,"401.500000","0.000000",,,,,,,,,"94.250000","6922.000000","10113.500000","1639.500000",,"4139.875000",,,,"25.000000","20.250000","2.333333","16.333333","26.250000","0.000000","500.600000","0.000000","219.800000","280.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"983.000000",,"983.000000",,"983.000000",,"277.500000","0.000000",,,,,,,,,"33.250000","7394.250000","9668.250000","236.625000",,"2107.750000",,,,"15.200000","6.625000","3.666667","11.333333","21.750000","0.000000","307.600000","0.000000","72.400000","235.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1025.500000",,"1025.500000",,"1025.500000",,"183.000000","0.000000",,,,,,,,,"157.750000","7713.750000","11370.750000","2502.875000",,"5341.375000",,,,"47.400000","48.750000","2.333333","12.666667","39.625000","0.000000","949.400000","0.000000","525.000000","424.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"45.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"813.000000",,"813.000000",,"813.000000",,"149.750000","0.000000",,,,,,,,,"180.500000","6116.500000","13406.250000","4792.625000",,"1449.750000",,,,"60.400000","101.500000","2.666667","17.333333","11.500000","0.000000","1208.200000","0.000000","1083.400000","124.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"741.500000",,"741.500000",,"741.500000",,"204.750000","0.000000",,,,,,,,,"188.750000","5577.750000","13380.250000","4820.250000",,"3013.875000",,,,"63.800000","104.875000","2.666667","36.333333","14.500000","0.000000","1277.200000","0.000000","1120.000000","157.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"921.250000",,"921.250000",,"921.250000",,"218.500000","0.000000",,,,,,,,,"153.000000","6930.500000","11504.250000","4123.375000",,"2653.250000",,,,"56.400000","86.000000","1.666667","13.666667","19.500000","0.000000","1129.000000","0.000000","918.800000","210.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1141.250000",,"1141.250000",,"1141.250000",,"282.500000","0.000000",,,,,,,,,"81.500000","8584.750000","9455.000000","16.375000",,"5363.125000",,,,"24.400000","2.625000","2.333333","14.000000","43.000000","0.000000","491.800000","0.000000","31.600000","460.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","52.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1137.250000",,"1137.250000",,"1137.250000",,"337.250000","0.000000",,,,,,,,,"59.500000","8555.500000","10272.500000","182.875000",,"2041.375000",,,,"24.000000","17.500000","2.000000","19.333333","27.375000","0.000000","483.000000","0.000000","189.200000","293.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","4.000000",,,,,,,,,"64.000000","81.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1145.750000",,"1145.750000",,"1145.750000",,"347.750000","0.000000",,,,,,,,,"98.750000","8619.250000","9979.250000","206.375000",,"5645.625000",,,,"41.400000","12.000000","2.666667","18.000000","65.250000","0.000000","830.200000","0.000000","130.800000","699.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"47.000000","64.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1186.250000",,"1186.250000",,"1186.250000",,"253.500000","0.000000",,,,,,,,,"187.000000","8922.750000","9698.000000","182.125000",,"11065.375000",,,,"48.600000","7.875000","2.666667","24.666667","83.000000","0.000000","974.400000","0.000000","87.000000","887.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1136.250000",,"1136.250000",,"1136.250000",,"237.250000","0.000000",,,,,,,,,"124.000000","8544.500000","10460.750000","772.875000",,"5834.375000",,,,"39.200000","24.375000","2.333333","23.000000","47.750000","0.000000","784.600000","0.000000","261.200000","523.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"751.750000",,"751.750000",,"751.750000",,"440.250000","0.000000",,,,,,,,,"225.500000","5655.500000","13179.250000","7608.500000",,"442.750000",,,,"77.000000","136.500000","2.000000","12.666667","8.250000","0.000000","1543.400000","0.000000","1463.800000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"168.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"880.250000",,"880.250000",,"880.250000",,"286.250000","0.000000",,,,,,,,,"172.500000","6622.000000","12222.250000","4045.500000",,"2047.750000",,,,"59.200000","102.375000","2.666667","41.666667","8.250000","0.000000","1184.000000","0.000000","1093.400000","90.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"54.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"909.500000",,"909.500000",,"909.500000",,"282.000000","0.000000",,,,,,,,,"160.000000","6842.000000","11520.750000","3802.875000",,"2834.625000",,,,"58.600000","83.000000","1.666667","16.333333","26.625000","0.000000","1172.000000","0.000000","886.000000","286.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"771.250000",,"771.250000",,"771.250000",,"205.500000","0.000000",,,,,,,,,"147.500000","5802.500000","12124.000000","5920.875000",,"323.250000",,,,"57.400000","104.625000","2.000000","8.000000","3.000000","0.000000","1150.000000","0.000000","1116.600000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"802.750000",,"802.750000",,"802.750000",,"354.000000","0.000000",,,,,,,,,"197.500000","6040.000000","12625.000000","6441.750000",,"222.000000",,,,"83.000000","152.625000","2.000000","4.000000","2.625000","0.000000","1663.600000","0.000000","1631.800000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"51.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"851.250000",,"851.250000",,"851.250000",,"422.000000","0.000000",,,,,,,,,"229.000000","6403.000000","12501.000000","6186.750000",,"3268.000000",,,,"72.400000","115.000000","2.333333","33.333333","19.875000","0.000000","1448.600000","0.000000","1233.600000","215.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1036.750000",,"1036.750000",,"1036.750000",,"224.750000","0.000000",,,,,,,,,"148.500000","7798.750000","11141.250000","3452.125000",,"2548.750000",,,,"55.400000","72.250000","1.333333","10.000000","31.875000","0.000000","1109.800000","0.000000","767.800000","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1302.500000",,"1302.500000",,"1302.500000",,"310.000000","0.000000",,,,,,,,,"5.000000","9796.500000","9418.250000","5.250000",,"324.250000",,,,"2.200000","0.375000","0.333333","3.666667","3.375000","0.000000","47.600000","0.000000","7.800000","39.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1312.000000",,"1312.000000",,"1312.000000",,"418.750000","0.000000",,,,,,,,,"4.750000","9868.000000","9420.500000","1.875000",,"249.750000",,,,"2.600000","0.250000","2.666667","11.000000","4.500000","0.000000","54.200000","0.000000","4.200000","50.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1259.000000",,"1259.000000",,"1259.000000",,"251.000000","0.000000",,,,,,,,,"7.250000","9471.500000","9510.250000","6.250000",,"314.125000",,,,"2.200000","0.375000","2.000000","5.666667","3.250000","0.000000","46.400000","0.000000","7.800000","38.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1168.750000",,"1168.750000",,"1168.750000",,"261.500000","0.000000",,,,,,,,,"4.250000","8791.500000","9463.250000","3.000000",,"417.375000",,,,"1.400000","0.375000","2.666667","12.333333","1.875000","0.000000","29.400000","0.000000","5.600000","23.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"1307.000000",,"1307.000000",,"1307.000000",,"232.250000","0.000000",,,,,,,,,"9.250000","9831.000000","9566.750000","10.000000",,"413.625000",,,,"3.600000","1.125000","4.333333","8.333333","5.125000","0.000000","72.000000","0.000000","14.600000","57.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"326.000000",,"326.000000",,"326.000000",,"153.500000","0.000000",,,,,,,,,"168.750000","2455.250000","16998.250000","7192.125000",,"157.500000",,,,"66.800000","123.750000","2.000000","11.333333","1.125000","0.000000","1337.400000","0.000000","1324.200000","13.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"290.000000",,"290.000000",,"290.000000",,"157.000000","0.000000",,,,,,,,,"151.750000","2184.500000","16750.000000","5627.125000",,"884.125000",,,,"69.400000","122.750000","2.000000","10.666667","7.125000","0.000000","1391.400000","0.000000","1311.600000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"307.750000",,"307.750000",,"307.750000",,"294.500000","0.000000",,,,,,,,,"209.500000","2319.250000","16349.750000","6461.875000",,"3409.125000",,,,"81.000000","120.250000","2.000000","10.666667","31.125000","0.000000","1622.400000","0.000000","1286.600000","335.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"232.000000",,"232.000000",,"232.000000",,"160.500000","0.000000",,,,,,,,,"124.500000","1749.750000","17097.500000","2848.750000",,"1853.375000",,,,"74.600000","122.500000","2.333333","15.666667","16.375000","0.000000","1492.600000","0.000000","1311.000000","181.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","38.000000",,,,,,,,,"183.000000","190.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"146.500000",,"146.500000",,"146.500000",,"149.500000","0.000000",,,,,,,,,"293.500000","1106.000000","18391.000000","8867.250000",,"7972.875000",,,,"123.800000","203.125000","3.666667","28.000000","29.375000","0.000000","2479.600000","0.000000","2168.000000","311.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"45.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.750000",,"145.750000",,"145.750000",,"172.250000","0.000000",,,,,,,,,"289.500000","1100.250000","18472.000000","7309.625000",,"8228.875000",,,,"101.800000","170.250000","2.666667","37.666667","20.500000","0.000000","2038.800000","0.000000","1817.200000","221.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"161.000000",,"161.000000",,"161.000000",,"176.250000","0.000000",,,,,,,,,"127.000000","1215.750000","18137.000000","2569.375000",,"3177.625000",,,,"56.800000","87.625000","2.333333","26.333333","19.000000","0.000000","1139.800000","0.000000","936.000000","203.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","28.000000",,,,,,,,,"135.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"165.000000",,"165.000000",,"165.000000",,"308.500000","0.000000",,,,,,,,,"33.500000","1246.000000","17550.250000","175.000000",,"137.625000",,,,"13.200000","13.500000","3.000000","0.666667","10.875000","0.000000","265.000000","0.000000","146.800000","118.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","14.000000",,,,,,,,,"2795.000000","2920.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"276.000000",,"276.000000",,"276.000000",,"147.250000","0.000000",,,,,,,,,"82.750000","2078.250000","17108.500000","35.250000",,"4056.000000",,,,"31.200000","2.875000","4.333333","20.333333","55.125000","0.000000","625.200000","0.000000","34.000000","591.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1982.000000","18.000000",,,,,,,,,"27405.000000","3560.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"199.500000",,"199.500000",,"199.500000",,"88.750000","0.000000",,,,,,,,,"8.000000","1502.250000","18195.000000","15.250000",,"222.750000",,,,"5.000000","0.750000","3.333333","1.666667","8.250000","0.000000","100.600000","0.000000","9.800000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"139.000000","171.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"139.750000",,"139.750000",,"139.750000",,"87.000000","0.000000",,,,,,,,,"3.250000","1055.000000","18501.000000","6.625000",,"103.000000",,,,"4.600000","0.000000","5.333333","1.333333","8.250000","0.000000","93.000000","0.000000","2.200000","90.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"106.000000",,"106.000000",,"106.000000",,"108.250000","0.000000",,,,,,,,,"2.500000","800.500000","18757.750000","1.875000",,"71.250000",,,,"3.000000","0.000000","5.000000","1.000000","5.250000","0.000000","60.000000","0.000000","0.200000","59.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.000000",,"58.000000",,"58.000000",,"82.250000","0.000000",,,,,,,,,"1.250000","440.000000","19448.750000","0.000000",,"24.000000",,,,"1.000000","0.000000","0.000000","0.666667","1.625000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"114.750000","0.000000",,,,,,,,,"1.000000","413.500000","19216.750000","0.000000",,"21.125000",,,,"0.800000","0.000000","0.000000","1.666667","2.000000","0.000000","19.400000","0.000000","0.200000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.000000",,"70.000000",,"70.000000",,"109.000000","0.000000",,,,,,,,,"1.250000","528.250000","19195.000000","0.000000",,"39.750000",,,,"1.600000","0.000000","0.000000","1.333333","2.875000","0.000000","33.400000","0.000000","0.000000","33.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"92.250000","0.000000",,,,,,,,,"0.750000","412.500000","19283.500000","0.000000",,"21.000000",,,,"1.000000","0.000000","0.000000","2.000000","1.875000","0.000000","23.600000","0.000000","0.000000","23.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.250000",,"68.250000",,"68.250000",,"186.250000","0.000000",,,,,,,,,"1.250000","516.750000","19108.750000","0.000000",,"40.125000",,,,"1.800000","0.000000","0.000000","4.666667","3.250000","0.000000","37.000000","0.000000","0.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"378.750000","0.000000",,,,,,,,,"7.000000","1114.000000","17781.000000","3.750000",,"147.625000",,,,"6.200000","0.000000","1.000000","0.666667","11.250000","0.000000","125.400000","0.000000","2.600000","122.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"479.000000","566.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"241.500000",,"241.500000",,"241.500000",,"493.750000","0.000000",,,,,,,,,"18.250000","1818.000000","16396.000000","27.000000",,"343.875000",,,,"9.400000","1.875000","2.333333","1.666667","15.250000","0.000000","189.800000","0.000000","22.800000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","5.000000",,,,,,,,,"781.000000","914.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"308.250000",,"308.250000",,"308.250000",,"746.500000","0.000000",,,,,,,,,"51.500000","2320.750000","15488.750000","1.125000",,"3266.875000",,,,"22.800000","0.000000","0.666667","9.333333","42.250000","0.000000","456.200000","0.000000","3.000000","453.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","16.000000",,,,,,,,,"3224.000000","3381.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.000000",,"167.000000",,"167.000000",,"435.000000","0.000000",,,,,,,,,"5.250000","1258.250000","17547.000000","0.625000",,"259.500000",,,,"8.400000","0.000000","4.000000","2.666667","15.375000","0.000000","169.200000","0.000000","2.000000","167.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"128.750000",,"128.750000",,"128.750000",,"289.750000","0.000000",,,,,,,,,"3.250000","971.000000","18250.250000","0.000000",,"85.125000",,,,"2.600000","0.000000","0.000000","1.666667","4.875000","0.000000","53.000000","0.000000","0.200000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"86.000000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"149.000000",,"149.000000",,"149.000000",,"302.750000","0.000000",,,,,,,,,"4.500000","1123.250000","17899.250000","0.000000",,"101.500000",,,,"4.400000","0.000000","0.000000","2.333333","8.125000","0.000000","88.600000","0.000000","0.000000","88.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"220.750000","0.000000",,,,,,,,,"0.750000","444.000000","19068.250000","0.000000",,"25.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.250000",,"64.250000",,"64.250000",,"149.750000","0.000000",,,,,,,,,"2.000000","485.750000","19164.000000","0.000000",,"45.625000",,,,"2.200000","0.000000","0.000000","2.000000","4.125000","0.000000","47.200000","0.000000","0.200000","47.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"136.750000","0.000000",,,,,,,,,"2.250000","444.500000","19193.250000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"131.000000","0.000000",,,,,,,,,"1.250000","480.250000","19231.500000","0.000000",,"31.750000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","24.800000","0.000000","0.000000","24.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.500000",,"50.500000",,"50.500000",,"147.000000","0.000000",,,,,,,,,"0.750000","382.250000","19094.750000","0.000000",,"19.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"182.500000","0.000000",,,,,,,,,"0.500000","398.500000","19155.750000","0.000000",,"15.000000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","9.400000","0.000000","0.000000","9.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.750000",,"60.750000",,"60.750000",,"214.500000","0.000000",,,,,,,,,"1.250000","461.500000","18973.250000","0.000000",,"34.375000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.400000","0.000000","0.200000","31.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.750000",,"56.750000",,"56.750000",,"132.750000","0.000000",,,,,,,,,"0.250000","429.250000","19274.750000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","6.000000","0.000000","0.000000","6.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"255.750000","0.000000",,,,,,,,,"0.750000","416.500000","18995.500000","0.000000",,"22.125000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.800000","0.000000","0.000000","19.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"89.250000",,"89.250000",,"89.250000",,"179.250000","0.000000",,,,,,,,,"4.250000","673.500000","18695.000000","0.000000",,"113.125000",,,,"5.200000","0.000000","5.666667","1.666667","9.625000","0.000000","105.000000","0.000000","0.800000","104.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"89.000000","102.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"162.250000",,"162.250000",,"162.250000",,"257.500000","0.000000",,,,,,,,,"7.500000","1223.250000","17510.750000","0.000000",,"124.375000",,,,"4.800000","0.000000","0.000000","1.000000","9.000000","0.000000","99.200000","0.000000","0.200000","99.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"434.000000","499.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"121.500000",,"121.500000",,"121.500000",,"189.500000","0.000000",,,,,,,,,"3.750000","918.000000","18342.750000","0.750000",,"115.500000",,,,"5.000000","0.000000","3.333333","2.333333","9.000000","0.000000","100.200000","0.000000","2.400000","97.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"116.000000","119.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"209.250000","0.000000",,,,,,,,,"2.750000","1198.000000","18132.500000","4.875000",,"96.750000",,,,"3.400000","0.000000","7.333333","3.333333","6.250000","0.000000","69.600000","0.000000","0.600000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","43.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"97.750000",,"97.750000",,"97.750000",,"186.500000","0.000000",,,,,,,,,"3.250000","740.250000","18561.750000","0.000000",,"57.375000",,,,"2.600000","0.000000","0.333333","2.666667","4.750000","0.000000","52.400000","0.000000","0.200000","52.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"69.000000",,"69.000000",,"69.000000",,"180.750000","0.000000",,,,,,,,,"1.250000","521.500000","19070.000000","0.000000",,"34.500000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"142.500000","0.000000",,,,,,,,,"1.000000","413.250000","19252.500000","0.000000",,"26.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.400000","0.000000","0.000000","31.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.500000",,"51.500000",,"51.500000",,"155.500000","0.000000",,,,,,,,,"0.750000","392.000000","19174.250000","0.000000",,"14.625000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"115.250000","0.000000",,,,,,,,,"0.750000","417.000000","19361.500000","0.000000",,"20.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"149.000000","0.000000",,,,,,,,,"1.000000","415.000000","19183.750000","0.000000",,"15.750000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","16.200000","0.000000","0.200000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"118.750000","0.000000",,,,,,,,,"0.250000","398.250000","19309.250000","0.000000",,"8.875000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.200000","0.000000","0.000000","6.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"159.000000","0.000000",,,,,,,,,"0.500000","394.750000","19145.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","2.000000","1.375000","0.000000","17.000000","0.000000","0.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.000000",,"57.000000",,"57.000000",,"124.000000","0.000000",,,,,,,,,"0.750000","430.500000","19269.000000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"108.000000","0.000000",,,,,,,,,"1.250000","433.500000","19325.750000","0.000000",,"11.250000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","12.800000","0.000000","0.000000","12.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"78.750000",,"78.750000",,"78.750000",,"196.000000","0.000000",,,,,,,,,"4.000000","595.500000","18793.750000","2.625000",,"76.125000",,,,"3.200000","0.000000","3.000000","1.333333","6.000000","0.000000","66.600000","0.000000","0.600000","66.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"87.000000","96.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"130.750000",,"130.750000",,"130.750000",,"387.250000","0.000000",,,,,,,,,"5.500000","988.000000","17671.000000","0.000000",,"124.750000",,,,"5.800000","0.000000","0.000000","1.666667","10.750000","0.000000","118.200000","0.000000","0.200000","118.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","3.000000",,,,,,,,,"426.000000","505.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"281.750000",,"281.750000",,"281.750000",,"351.000000","0.000000",,,,,,,,,"24.500000","2121.250000","16324.750000","1.875000",,"379.750000",,,,"12.200000","0.000000","6.333333","1.666667","22.875000","0.000000","247.800000","0.000000","2.800000","245.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","13.000000",,,,,,,,,"2376.000000","2596.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"234.250000",,"234.250000",,"234.250000",,"321.500000","0.000000",,,,,,,,,"37.250000","1765.500000","17281.500000","1.875000",,"1787.625000",,,,"10.800000","0.000000","2.000000","32.666667","19.750000","0.000000","218.400000","0.000000","3.800000","214.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1046.000000","16.000000",,,,,,,,,"15655.000000","3207.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"116.500000",,"116.500000",,"116.500000",,"341.250000","0.000000",,,,,,,,,"6.250000","880.750000","18048.500000","1.875000",,"134.125000",,,,"6.200000","0.000000","4.000000","1.666667","11.625000","0.000000","127.000000","0.000000","1.400000","125.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"162.000000","187.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"144.750000","0.000000",,,,,,,,,"1.000000","488.750000","19086.000000","0.000000",,"31.125000",,,,"1.000000","0.000000","0.000000","2.333333","1.875000","0.000000","22.200000","0.000000","0.200000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"217.250000","0.000000",,,,,,,,,"1.250000","414.750000","19086.500000","0.000000",,"29.250000",,,,"1.200000","0.000000","0.000000","1.333333","2.250000","0.000000","26.400000","0.000000","0.000000","26.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"275.000000","0.000000",,,,,,,,,"1.250000","472.250000","18870.750000","0.000000",,"42.250000",,,,"1.600000","0.000000","0.000000","0.666667","2.875000","0.000000","32.000000","0.000000","0.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"158.750000","0.000000",,,,,,,,,"1.000000","401.000000","19134.500000","0.000000",,"24.750000",,,,"1.200000","0.000000","0.000000","1.333333","2.125000","0.000000","24.400000","0.000000","0.000000","24.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"186.750000","0.000000",,,,,,,,,"0.250000","411.000000","19139.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","2.333333","0.375000","0.000000","6.600000","0.000000","0.000000","6.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"121.250000","0.000000",,,,,,,,,"1.750000","495.500000","19232.250000","0.000000",,"49.125000",,,,"2.200000","0.000000","1.333333","1.666667","4.000000","0.000000","44.200000","0.000000","0.200000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"178.750000","0.000000",,,,,,,,,"0.750000","411.250000","19221.500000","0.000000",,"17.875000",,,,"0.800000","0.000000","0.000000","2.333333","1.500000","0.000000","18.800000","0.000000","0.000000","18.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"222.750000","0.000000",,,,,,,,,"0.750000","405.000000","19148.000000","0.000000",,"19.875000",,,,"0.600000","0.000000","0.000000","1.333333","1.125000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.750000",,"63.750000",,"63.750000",,"222.750000","0.000000",,,,,,,,,"1.500000","482.250000","19057.500000","0.000000",,"45.625000",,,,"2.000000","0.000000","0.000000","1.000000","3.625000","0.000000","42.600000","0.000000","0.000000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"250.750000","0.000000",,,,,,,,,"13.750000","1097.750000","17822.250000","6.625000",,"218.750000",,,,"9.600000","0.625000","1.666667","0.333333","16.750000","0.000000","192.000000","0.000000","8.400000","183.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","6.000000",,,,,,,,,"826.000000","1039.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"148.750000",,"148.750000",,"148.750000",,"169.500000","0.000000",,,,,,,,,"7.500000","1122.000000","17912.500000","54.625000",,"136.250000",,,,"7.600000","3.375000","1.333333","1.333333","11.000000","0.000000","154.000000","0.000000","36.200000","117.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","2.000000",,,,,,,,,"299.000000","366.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.750000",,"61.750000",,"61.750000",,"239.250000","0.000000",,,,,,,,,"1.500000","468.250000","19080.000000","12.000000",,"48.750000",,,,"1.800000","0.375000","1.666667","0.666667","2.625000","0.000000","37.200000","0.000000","7.000000","30.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.750000",,"50.750000",,"50.750000",,"263.500000","0.000000",,,,,,,,,"0.750000","386.750000","19093.750000","0.000000",,"23.500000",,,,"1.000000","0.000000","0.000000","8.666667","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"166.750000","0.000000",,,,,,,,,"0.500000","413.500000","19170.500000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","1.000000","1.500000","0.000000","19.400000","0.000000","0.000000","19.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.000000",,"62.000000",,"62.000000",,"231.750000","0.000000",,,,,,,,,"1.500000","470.500000","18971.250000","0.000000",,"40.500000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","29.800000","0.000000","0.000000","29.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.750000",,"51.750000",,"51.750000",,"196.000000","0.000000",,,,,,,,,"0.750000","392.250000","19102.500000","0.000000",,"17.625000",,,,"0.800000","0.000000","0.000000","2.666667","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.000000",,"66.000000",,"66.000000",,"296.500000","0.000000",,,,,,,,,"18.000000","500.000000","18913.750000","252.375000",,"23.250000",,,,"6.800000","12.000000","1.333333","22.666667","0.750000","0.000000","139.400000","0.000000","129.800000","9.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"258.000000","301.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.250000",,"62.250000",,"62.250000",,"385.000000","0.000000",,,,,,,,,"1.750000","469.250000","18764.000000","0.000000",,"57.375000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"184.250000","0.000000",,,,,,,,,"0.750000","426.750000","19292.000000","0.000000",,"10.125000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","8.200000","0.000000","0.000000","8.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"219.500000","0.000000",,,,,,,,,"0.750000","445.000000","19045.750000","0.000000",,"18.625000",,,,"0.800000","0.000000","0.000000","0.333333","1.375000","0.000000","17.800000","0.000000","0.000000","17.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.500000",,"141.500000",,"141.500000",,"280.750000","0.000000",,,,,,,,,"3.000000","1067.500000","18014.500000","0.750000",,"109.125000",,,,"4.000000","0.000000","1.666667","0.666667","7.125000","0.000000","80.800000","0.000000","1.000000","79.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"72.500000",,"72.500000",,"72.500000",,"236.000000","0.000000",,,,,,,,,"2.250000","547.750000","18784.250000","0.000000",,"71.875000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.800000","0.000000","0.000000","63.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.750000",,"56.750000",,"56.750000",,"204.000000","0.000000",,,,,,,,,"1.250000","431.750000","19150.250000","0.000000",,"27.750000",,,,"1.200000","0.000000","0.000000","1.666667","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"326.500000","0.000000",,,,,,,,,"1.250000","482.000000","18921.750000","0.000000",,"30.375000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"264.250000","0.000000",,,,,,,,,"0.750000","405.750000","19030.250000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","1.000000","1.750000","0.000000","22.800000","0.000000","0.000000","22.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.500000",,"68.500000",,"68.500000",,"165.750000","0.000000",,,,,,,,,"1.500000","518.500000","20362.250000","0.000000",,"36.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","20.200000","0.000000","0.000000","20.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"46.000000",,"46.000000",,"46.000000",,"257.500000","0.000000",,,,,,,,,"0.500000","349.000000","17803.250000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","1.666667","1.500000","0.000000","18.600000","0.000000","0.000000","18.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"20.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"212.500000","0.000000",,,,,,,,,"0.750000","420.000000","19057.750000","0.375000",,"27.750000",,,,"1.000000","0.000000","1.666667","0.333333","1.750000","0.000000","21.800000","0.000000","1.200000","20.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"220.250000","0.000000",,,,,,,,,"0.750000","395.500000","19072.000000","0.000000",,"14.625000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.400000","0.000000","0.000000","14.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"67.250000",,"67.250000",,"67.250000",,"143.500000","0.000000",,,,,,,,,"1.250000","510.750000","19216.500000","0.000000",,"43.375000",,,,"1.800000","0.000000","0.000000","0.333333","3.375000","0.000000","37.200000","0.000000","0.000000","37.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.750000","532.250000","19072.000000","0.000000",,"53.125000",,,,"2.600000","0.000000","0.000000","0.666667","4.750000","0.000000","52.800000","0.000000","0.000000","52.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"156.750000",,"156.750000",,"156.750000",,"208.250000","0.000000",,,,,,,,,"15.000000","1182.250000","17896.500000","375.750000",,"138.375000",,,,"8.200000","6.250000","1.666667","1.000000","8.875000","0.000000","167.600000","0.000000","70.000000","97.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"372.000000","428.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.250000",,"167.250000",,"167.250000",,"192.750000","0.000000",,,,,,,,,"25.500000","1263.500000","18166.500000","582.250000",,"31.125000",,,,"24.800000","44.250000","0.666667","0.333333","1.875000","0.000000","497.000000","0.000000","475.800000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"184.000000","203.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"170.000000","0.000000",,,,,,,,,"1.750000","417.750000","19208.250000","0.000000",,"53.500000",,,,"1.400000","0.000000","0.000000","1.666667","2.625000","0.000000","31.800000","0.000000","0.000000","31.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"142.250000","0.000000",,,,,,,,,"0.750000","422.500000","19228.750000","0.000000",,"23.250000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","19.000000","0.000000","0.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"143.500000","0.000000",,,,,,,,,"1.500000","503.250000","19154.250000","0.000000",,"48.250000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","37.800000","0.000000","0.000000","37.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"129.500000","0.000000",,,,,,,,,"0.500000","424.500000","19341.750000","0.000000",,"12.750000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","11.400000","0.000000","0.000000","11.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"161.250000","0.000000",,,,,,,,,"0.500000","444.500000","19246.750000","0.000000",,"18.625000",,,,"0.600000","0.000000","0.000000","0.333333","1.125000","0.000000","15.200000","0.000000","0.000000","15.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"70.500000",,"70.500000",,"70.500000",,"152.000000","0.000000",,,,,,,,,"2.250000","533.500000","19221.750000","0.000000",,"49.875000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","41.400000","0.000000","0.000000","41.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"152.500000","0.000000",,,,,,,,,"0.500000","419.250000","19240.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","0.666667","0.375000","0.000000","6.800000","0.000000","0.000000","6.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"126.500000","0.000000",,,,,,,,,"1.000000","455.750000","19299.250000","0.000000",,"22.000000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","19.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"196.500000","0.000000",,,,,,,,,"3.500000","765.750000","18777.250000","2.125000",,"94.875000",,,,"4.400000","0.000000","4.000000","1.000000","7.750000","0.000000","88.200000","0.000000","2.000000","86.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"178.500000",,"178.500000",,"178.500000",,"145.500000","0.000000",,,,,,,,,"3.250000","1347.000000","18115.750000","0.000000",,"121.000000",,,,"4.000000","0.000000","0.000000","1.666667","7.375000","0.000000","80.600000","0.000000","0.000000","80.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"68.500000",,"68.500000",,"68.500000",,"116.750000","0.000000",,,,,,,,,"2.750000","519.250000","19257.500000","0.000000",,"68.125000",,,,"2.200000","0.000000","0.000000","1.333333","4.125000","0.000000","47.600000","0.000000","0.000000","47.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"197.250000",,"197.250000",,"197.250000",,"279.000000","0.000000",,,,,,,,,"22.250000","1487.000000","17346.000000","159.250000",,"164.125000",,,,"14.400000","15.250000","2.333333","1.666667","11.625000","0.000000","291.200000","0.000000","164.400000","126.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"63.000000","69.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"105.250000",,"105.250000",,"105.250000",,"163.750000","0.000000",,,,,,,,,"4.750000","796.500000","18592.500000","0.000000",,"64.875000",,,,"3.000000","0.000000","0.000000","2.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"193.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.250000",,"147.250000",,"147.250000",,"164.250000","0.000000",,,,,,,,,"5.500000","1109.500000","18225.250000","1.125000",,"129.375000",,,,"4.200000","0.000000","1.333333","0.666667","7.750000","0.000000","87.000000","0.000000","1.800000","85.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"153.000000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"73.250000",,"73.250000",,"73.250000",,"201.250000","0.000000",,,,,,,,,"2.250000","556.000000","18887.250000","0.375000",,"73.125000",,,,"3.200000","0.000000","3.000000","20.333333","6.000000","0.000000","67.800000","0.000000","0.200000","67.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.000000",,"65.000000",,"65.000000",,"293.250000","0.000000",,,,,,,,,"1.250000","493.500000","18930.000000","0.000000",,"35.250000",,,,"1.200000","0.000000","0.000000","2.333333","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"51.000000",,"51.000000",,"51.000000",,"324.750000","0.000000",,,,,,,,,"0.500000","387.750000","18960.500000","0.000000",,"16.375000",,,,"0.800000","0.000000","0.000000","1.333333","1.375000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.500000",,"61.500000",,"61.500000",,"312.000000","0.000000",,,,,,,,,"1.500000","466.000000","18739.000000","0.000000",,"43.375000",,,,"1.600000","0.000000","0.000000","2.666667","2.875000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"259.000000","0.000000",,,,,,,,,"0.500000","400.000000","18935.750000","0.000000",,"18.250000",,,,"1.000000","0.000000","0.000000","2.333333","1.750000","0.000000","20.400000","0.000000","0.000000","20.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"183.000000","0.000000",,,,,,,,,"0.750000","401.250000","19144.250000","0.000000",,"9.375000",,,,"0.200000","0.000000","0.000000","1.000000","0.375000","0.000000","6.400000","0.000000","0.000000","6.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"64.750000",,"64.750000",,"64.750000",,"260.000000","0.000000",,,,,,,,,"1.750000","490.000000","18922.250000","0.000000",,"46.000000",,,,"2.000000","0.000000","0.000000","1.666667","3.625000","0.000000","42.000000","0.000000","0.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"185.750000","0.000000",,,,,,,,,"0.500000","400.500000","19128.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.250000",,"52.250000",,"52.250000",,"191.000000","0.000000",,,,,,,,,"0.500000","397.750000","19199.500000","0.000000",,"10.500000",,,,"0.000000","0.000000","0.000000","3.666667","0.000000","0.000000","3.400000","0.000000","0.000000","3.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.000000",,"65.000000",,"65.000000",,"288.250000","0.000000",,,,,,,,,"2.250000","492.500000","18967.000000","0.000000",,"56.625000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"49.250000",,"49.250000",,"49.250000",,"413.250000","0.000000",,,,,,,,,"0.250000","372.000000","18771.750000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","14.800000","0.000000","0.000000","14.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"274.250000","0.000000",,,,,,,,,"1.000000","410.500000","18897.000000","0.375000",,"32.250000",,,,"1.400000","0.000000","2.666667","1.333333","2.625000","0.000000","31.800000","0.000000","0.200000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.000000",,"63.000000",,"63.000000",,"360.250000","0.000000",,,,,,,,,"1.500000","476.500000","18722.250000","3.375000",,"40.875000",,,,"1.800000","0.375000","1.000000","2.333333","2.875000","0.000000","36.600000","0.000000","4.400000","32.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"274.750000","0.000000",,,,,,,,,"0.750000","437.000000","19069.250000","0.000000",,"22.125000",,,,"1.000000","0.000000","0.000000","0.333333","1.875000","0.000000","22.000000","0.000000","0.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.500000",,"52.500000",,"52.500000",,"364.250000","0.000000",,,,,,,,,"0.750000","399.250000","18990.750000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","0.666667","1.750000","0.000000","20.800000","0.000000","0.000000","20.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"25.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.250000",,"60.250000",,"60.250000",,"394.750000","0.000000",,,,,,,,,"0.750000","456.250000","18710.000000","0.000000",,"32.250000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","25.800000","0.000000","0.000000","25.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"70.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.750000",,"57.750000",,"57.750000",,"174.500000","0.000000",,,,,,,,,"1.000000","438.500000","19223.000000","0.000000",,"25.875000",,,,"1.200000","0.000000","0.000000","1.000000","2.250000","0.000000","25.400000","0.000000","0.000000","25.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"248.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"195.000000","0.000000",,,,,,,,,"0.500000","395.500000","19119.000000","0.000000",,"18.250000",,,,"0.600000","0.000000","0.000000","0.000000","1.000000","0.000000","12.400000","0.000000","0.000000","12.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"108.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.750000",,"65.750000",,"65.750000",,"159.500000","0.000000",,,,,,,,,"1.750000","498.250000","19073.500000","0.000000",,"41.500000",,,,"1.600000","0.000000","0.000000","1.666667","3.000000","0.000000","33.600000","0.000000","0.000000","33.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"149.500000","0.000000",,,,,,,,,"0.750000","413.500000","19206.500000","0.000000",,"14.625000",,,,"0.400000","0.000000","0.000000","0.333333","0.750000","0.000000","10.800000","0.000000","0.000000","10.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"144.500000",,"144.500000",,"144.500000",,"315.750000","0.000000",,,,,,,,,"2.750000","1090.250000","18005.000000","1.875000",,"91.750000",,,,"4.400000","0.000000","2.666667","1.000000","7.750000","0.000000","89.400000","0.000000","2.800000","86.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"83.250000",,"83.250000",,"83.250000",,"253.250000","0.000000",,,,,,,,,"4.500000","629.250000","18626.250000","0.375000",,"159.625000",,,,"6.400000","0.000000","2.666667","1.666667","11.875000","0.000000","129.400000","0.000000","1.000000","128.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.500000",,"63.500000",,"63.500000",,"304.500000","0.000000",,,,,,,,,"1.000000","481.750000","18891.250000","0.000000",,"33.750000",,,,"1.000000","0.000000","0.000000","0.666667","1.875000","0.000000","22.400000","0.000000","0.000000","22.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","18.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.250000",,"50.250000",,"50.250000",,"259.000000","0.000000",,,,,,,,,"0.500000","383.000000","19155.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","2.000000","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.250000",,"65.250000",,"65.250000",,"290.250000","0.000000",,,,,,,,,"1.000000","494.250000","18933.500000","0.000000",,"45.750000",,,,"1.400000","0.000000","0.000000","0.666667","2.625000","0.000000","31.600000","0.000000","0.000000","31.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.250000",,"50.250000",,"50.250000",,"348.500000","0.000000",,,,,,,,,"0.750000","383.250000","18885.000000","0.000000",,"26.625000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","25.000000","0.000000","0.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"47.500000",,"47.500000",,"47.500000",,"283.000000","0.000000",,,,,,,,,"0.250000","362.250000","18954.000000","0.000000",,"8.250000",,,,"0.200000","0.000000","0.000000","0.333333","0.375000","0.000000","4.400000","0.000000","0.000000","4.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","25.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"63.250000",,"63.250000",,"63.250000",,"291.000000","0.000000",,,,,,,,,"1.250000","478.750000","18789.750000","0.000000",,"45.250000",,,,"2.000000","0.000000","0.000000","0.666667","3.625000","0.000000","40.000000","0.000000","0.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"48.250000",,"48.250000",,"48.250000",,"442.750000","0.000000",,,,,,,,,"0.750000","364.250000","18750.750000","0.000000",,"22.375000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"48.750000",,"48.750000",,"48.750000",,"405.250000","0.000000",,,,,,,,,"0.250000","370.500000","18868.000000","0.000000",,"6.375000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","3.000000","0.000000","0.000000","3.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"426.750000","0.000000",,,,,,,,,"1.250000","475.500000","18686.250000","0.000000",,"53.625000",,,,"2.400000","0.000000","0.000000","1.000000","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"28.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"94.250000",,"94.250000",,"94.250000",,"370.500000","0.000000",,,,,,,,,"23.000000","712.750000","18413.000000","479.000000",,"570.750000",,,,"16.200000","16.375000","2.000000","2.666667","13.500000","0.000000","326.600000","0.000000","180.200000","146.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"52.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"199.000000",,"199.000000",,"199.000000",,"410.000000","0.000000",,,,,,,,,"207.250000","1499.750000","16897.250000","4741.250000",,"4936.125000",,,,"82.800000","119.750000","1.666667","15.000000","35.625000","0.000000","1659.400000","0.000000","1276.600000","382.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"29.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"165.000000",,"165.000000",,"165.000000",,"470.500000","0.000000",,,,,,,,,"80.250000","1245.250000","17120.500000","396.125000",,"174.250000",,,,"51.200000","94.500000","2.000000","3.000000","1.125000","0.000000","1024.200000","0.000000","1009.600000","14.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","248.000000",,,,,,,,,"2093.000000","4453.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"147.500000",,"147.500000",,"147.500000",,"309.750000","0.000000",,,,,,,,,"80.500000","1111.750000","17801.250000","266.000000",,"338.250000",,,,"37.400000","63.000000","2.666667","6.666667","6.750000","0.000000","750.400000","0.000000","675.200000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1515.000000","43.000000",,,,,,,,,"21066.000000","2702.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"311.000000",,"311.000000",,"311.000000",,"656.500000","0.000000",,,,,,,,,"238.500000","2340.750000","14923.750000","0.000000",,"7933.375000",,,,"19.200000","0.000000","3.666667","32.333333","35.875000","0.000000","384.800000","0.000000","0.400000","384.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20399.000000","72.000000",,,,,,,,,"276338.000000","22547.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"290.000000",,"290.000000",,"290.000000",,"550.000000","0.000000",,,,,,,,,"166.000000","2185.500000","15213.250000","0.000000",,"8692.125000",,,,"20.200000","0.000000","0.000000","22.000000","37.875000","0.000000","404.800000","0.000000","0.000000","404.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16094.000000","58.000000",,,,,,,,,"218025.000000","18044.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"281.750000",,"281.750000",,"281.750000",,"461.250000","0.000000",,,,,,,,,"229.250000","2122.500000","15662.750000","2.625000",,"14321.625000",,,,"67.400000","0.000000","5.666667","12.333333","125.750000","0.000000","1348.800000","0.000000","3.200000","1345.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9871.000000","41.000000",,,,,,,,,"133843.000000","11478.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"169.500000",,"169.500000",,"169.500000",,"397.250000","0.000000",,,,,,,,,"151.000000","1279.000000","17194.500000","254.625000",,"3263.500000",,,,"50.400000","53.625000","2.000000","9.666667","40.750000","0.000000","1011.600000","0.000000","576.200000","435.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8517.000000","36.000000",,,,,,,,,"115454.000000","10844.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"366.250000",,"366.250000",,"366.250000",,"566.500000","0.000000",,,,,,,,,"174.250000","2755.250000","14565.750000","46.875000",,"9737.000000",,,,"37.600000","7.375000","2.333333","49.333333","62.875000","0.000000","755.800000","0.000000","79.800000","676.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"8454.000000","34.000000",,,,,,,,,"114129.000000","10578.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"240.250000",,"240.250000",,"240.250000",,"477.500000","0.000000",,,,,,,,,"46.000000","1811.500000","16916.000000","2.250000",,"2805.500000",,,,"32.600000","0.000000","10.333333","10.333333","61.250000","0.000000","652.000000","0.000000","3.400000","648.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"59.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"99.500000",,"99.500000",,"99.500000",,"508.250000","0.000000",,,,,,,,,"1.250000","752.250000","18093.500000","0.000000",,"49.500000",,,,"2.400000","0.000000","0.000000","2.000000","4.375000","0.000000","49.200000","0.000000","0.000000","49.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"65.500000",,"65.500000",,"65.500000",,"573.500000","0.000000",,,,,,,,,"1.250000","497.000000","18496.250000","0.000000",,"23.625000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"111.750000",,"111.750000",,"111.750000",,"586.500000","0.000000",,,,,,,,,"1.250000","842.000000","17692.000000","0.000000",,"54.375000",,,,"2.200000","0.000000","0.000000","2.333333","4.000000","0.000000","44.000000","0.000000","0.000000","44.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"45.000000","38.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"589.750000","0.000000",,,,,,,,,"0.750000","414.750000","18523.250000","0.000000",,"22.500000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","16.000000","0.000000","0.000000","16.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"547.500000","0.000000",,,,,,,,,"0.500000","429.750000","18665.500000","0.000000",,"25.000000",,,,"1.000000","0.000000","0.000000","1.666667","1.875000","0.000000","21.800000","0.000000","0.000000","21.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"416.250000","0.000000",,,,,,,,,"0.500000","425.250000","18690.500000","0.000000",,"17.250000",,,,"0.400000","0.000000","0.000000","0.666667","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.000000",,"61.000000",,"61.000000",,"236.750000","0.000000",,,,,,,,,"0.750000","461.250000","19024.000000","0.000000",,"23.625000",,,,"1.000000","0.000000","0.000000","1.333333","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.500000",,"132.500000",,"132.500000",,"369.500000","0.000000",,,,,,,,,"2.750000","999.500000","17743.250000","0.000000",,"71.250000",,,,"3.000000","0.000000","0.000000","1.666667","5.625000","0.000000","63.600000","0.000000","0.000000","63.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"190.250000",,"190.250000",,"190.250000",,"333.750000","0.000000",,,,,,,,,"3.750000","1433.250000","17368.750000","1.375000",,"147.000000",,,,"4.400000","0.000000","1.000000","2.333333","7.750000","0.000000","88.400000","0.000000","3.400000","85.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"22.000000","29.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"219.500000",,"219.500000",,"219.500000",,"294.500000","0.000000",,,,,,,,,"4.500000","1653.750000","17064.000000","17.250000",,"175.750000",,,,"4.800000","1.125000","0.666667","3.000000","7.500000","0.000000","96.800000","0.000000","13.400000","83.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"168.000000",,"168.000000",,"168.000000",,"325.750000","0.000000",,,,,,,,,"3.500000","1265.750000","17719.500000","0.000000",,"66.125000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","41.000000","0.000000","0.200000","40.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"39.000000","35.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"218.000000",,"218.000000",,"218.000000",,"376.000000","0.000000",,,,,,,,,"40.250000","1642.250000","16982.500000","811.000000",,"262.625000",,,,"14.400000","11.875000","2.000000","1.333333","14.625000","0.000000","291.400000","0.000000","129.800000","161.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","15.000000",,,,,,,,,"3037.000000","3153.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"248.750000",,"248.750000",,"248.750000",,"335.500000","0.000000",,,,,,,,,"56.000000","1874.000000","16884.250000","2.625000",,"3180.375000",,,,"20.600000","0.375000","0.666667","9.333333","38.125000","0.000000","413.000000","0.000000","6.000000","407.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"385.000000","451.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"188.750000",,"188.750000",,"188.750000",,"449.500000","0.000000",,,,,,,,,"8.000000","1424.000000","17720.500000","1.000000",,"322.000000",,,,"11.000000","0.000000","2.000000","2.333333","20.125000","0.000000","221.400000","0.000000","3.200000","218.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"143.000000","169.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"131.750000",,"131.750000",,"131.750000",,"308.250000","0.000000",,,,,,,,,"2.250000","995.000000","18026.500000","0.000000",,"88.500000",,,,"3.800000","0.000000","0.000000","2.333333","7.125000","0.000000","79.600000","0.000000","0.000000","79.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"32.000000","30.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"184.000000",,"184.000000",,"184.000000",,"269.250000","0.000000",,,,,,,,,"2.250000","1386.750000","17620.500000","0.000000",,"109.000000",,,,"2.600000","0.000000","0.000000","1.000000","4.875000","0.000000","54.400000","0.000000","0.000000","54.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"52.000000","49.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.500000",,"57.500000",,"57.500000",,"324.750000","0.000000",,,,,,,,,"1.750000","436.250000","18815.500000","0.000000",,"52.500000",,,,"2.600000","0.000000","0.000000","1.666667","4.750000","0.000000","53.600000","0.000000","0.000000","53.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.000000",,"53.000000",,"53.000000",,"401.250000","0.000000",,,,,,,,,"1.250000","401.000000","18790.750000","0.000000",,"30.000000",,,,"1.400000","0.000000","0.000000","1.000000","2.500000","0.000000","31.000000","0.000000","0.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"294.750000","0.000000",,,,,,,,,"0.500000","428.500000","18954.750000","0.000000",,"21.375000",,,,"1.200000","0.000000","0.000000","1.000000","2.125000","0.000000","24.000000","0.000000","0.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"377.750000","0.000000",,,,,,,,,"1.250000","405.750000","18870.750000","0.000000",,"28.125000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.800000","0.000000","0.000000","27.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.000000",,"52.000000",,"52.000000",,"305.500000","0.000000",,,,,,,,,"0.750000","396.000000","18975.500000","0.000000",,"31.875000",,,,"1.800000","0.000000","0.000000","1.333333","3.375000","0.000000","36.600000","0.000000","0.000000","36.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"134.250000",,"134.250000",,"134.250000",,"237.500000","0.000000",,,,,,,,,"7.750000","1011.750000","18019.250000","2.250000",,"152.500000",,,,"7.800000","0.000000","0.666667","0.666667","14.125000","0.000000","156.200000","0.000000","1.400000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"483.000000","573.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"167.250000",,"167.250000",,"167.250000",,"345.000000","0.000000",,,,,,,,,"2.500000","1262.750000","17313.250000","0.375000",,"103.000000",,,,"2.800000","0.000000","2.000000","1.000000","5.250000","0.000000","57.400000","0.000000","0.400000","57.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"123.500000",,"123.500000",,"123.500000",,"307.500000","0.000000",,,,,,,,,"4.750000","933.500000","18124.250000","0.000000",,"129.000000",,,,"5.400000","0.000000","0.000000","2.333333","10.000000","0.000000","109.600000","0.000000","0.000000","109.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"145.000000","152.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.750000",,"132.750000",,"132.750000",,"253.750000","0.000000",,,,,,,,,"2.500000","1000.750000","17994.000000","0.000000",,"81.000000",,,,"2.400000","0.000000","0.000000","6.333333","4.375000","0.000000","48.000000","0.000000","0.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"158.750000",,"158.750000",,"158.750000",,"353.500000","0.000000",,,,,,,,,"8.750000","1199.250000","17422.000000","0.000000",,"205.750000",,,,"9.000000","0.000000","0.000000","1.333333","16.750000","0.000000","180.000000","0.000000","0.000000","180.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"480.000000","570.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"180.750000",,"180.750000",,"180.750000",,"392.000000","0.000000",,,,,,,,,"4.500000","1362.500000","17111.250000","0.000000",,"107.875000",,,,"3.000000","0.000000","0.000000","3.000000","5.625000","0.000000","63.400000","0.000000","0.000000","63.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","1.000000",,,,,,,,,"557.000000","445.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"110.000000",,"110.000000",,"110.000000",,"271.000000","0.000000",,,,,,,,,"3.500000","831.000000","18357.250000","0.000000",,"115.125000",,,,"5.200000","0.000000","0.000000","1.333333","9.750000","0.000000","105.000000","0.000000","0.000000","105.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"130.000000","154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.500000",,"141.500000",,"141.500000",,"449.000000","0.000000",,,,,,,,,"2.750000","1066.750000","17684.250000","0.000000",,"93.625000",,,,"3.600000","0.000000","0.000000","3.000000","6.750000","0.000000","75.200000","0.000000","0.000000","75.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","36.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"122.250000",,"122.250000",,"122.250000",,"455.250000","0.000000",,,,,,,,,"1.500000","922.750000","17728.000000","0.000000",,"77.625000",,,,"2.000000","0.000000","1.666667","2.000000","3.750000","0.000000","43.000000","0.000000","0.400000","42.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.000000",,"55.000000",,"55.000000",,"356.250000","0.000000",,,,,,,,,"1.500000","417.500000","18876.500000","0.000000",,"47.125000",,,,"2.400000","0.000000","0.000000","10.000000","4.375000","0.000000","48.600000","0.000000","0.000000","48.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"57.000000","53.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"50.000000",,"50.000000",,"50.000000",,"412.000000","0.000000",,,,,,,,,"0.500000","379.000000","18798.500000","0.000000",,"25.125000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","23.200000","0.000000","0.000000","23.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"50.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"52.750000",,"52.750000",,"52.750000",,"414.250000","0.000000",,,,,,,,,"1.250000","399.250000","18874.250000","0.000000",,"25.500000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"55.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"241.750000","0.000000",,,,,,,,,"1.000000","412.750000","19130.750000","0.000000",,"18.750000",,,,"0.800000","0.000000","0.000000","0.000000","1.500000","0.000000","17.400000","0.000000","0.000000","17.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"120.500000",,"120.500000",,"120.500000",,"249.750000","0.000000",,,,,,,,,"2.500000","910.750000","18273.500000","0.000000",,"83.250000",,,,"3.600000","0.000000","0.000000","0.333333","6.750000","0.000000","72.400000","0.000000","0.000000","72.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","42.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"135.000000",,"135.000000",,"135.000000",,"335.250000","0.000000",,,,,,,,,"6.250000","1018.250000","17851.000000","0.000000",,"144.000000",,,,"6.200000","0.000000","0.000000","1.333333","11.625000","0.000000","126.600000","0.000000","0.000000","126.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"473.000000","567.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"145.500000",,"145.500000",,"145.500000",,"179.000000","0.000000",,,,,,,,,"3.750000","1096.250000","18212.000000","0.000000",,"101.125000",,,,"3.200000","0.000000","0.000000","0.666667","6.000000","0.000000","65.800000","0.000000","0.000000","65.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"150.000000","168.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"109.750000",,"109.750000",,"109.750000",,"132.750000","0.000000",,,,,,,,,"1.500000","829.000000","18719.250000","0.000000",,"64.000000",,,,"2.800000","0.000000","0.000000","3.333333","5.250000","0.000000","58.600000","0.000000","0.000000","58.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"37.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"176.250000",,"176.250000",,"176.250000",,"107.750000","0.000000",,,,,,,,,"2.500000","1326.750000","18077.750000","0.000000",,"85.125000",,,,"2.200000","0.000000","0.000000","0.666667","4.125000","0.000000","46.800000","0.000000","0.200000","46.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","39.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.000000",,"62.000000",,"62.000000",,"127.250000","0.000000",,,,,,,,,"1.500000","469.500000","19226.500000","0.000000",,"33.750000",,,,"1.600000","0.000000","0.000000","4.000000","3.000000","0.000000","34.800000","0.000000","0.000000","34.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"44.000000","37.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"123.000000","0.000000",,,,,,,,,"0.500000","410.250000","19295.250000","0.000000",,"15.750000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"47.000000","32.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.750000",,"54.750000",,"54.750000",,"110.000000","0.000000",,,,,,,,,"1.250000","414.250000","19291.250000","0.000000",,"23.500000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.000000","0.000000","0.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","40.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"104.000000",,"104.000000",,"104.000000",,"119.750000","0.000000",,,,,,,,,"2.000000","787.000000","18949.000000","0.000000",,"39.375000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.000000","0.000000","0.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.250000",,"132.250000",,"132.250000",,"191.250000","0.000000",,,,,,,,,"3.500000","998.750000","18252.750000","0.000000",,"73.875000",,,,"2.400000","0.000000","0.000000","0.666667","4.375000","0.000000","48.400000","0.000000","0.000000","48.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"86.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"132.000000",,"132.000000",,"132.000000",,"227.500000","0.000000",,,,,,,,,"7.250000","996.250000","18291.000000","0.000000",,"159.375000",,,,"7.600000","0.000000","0.000000","0.666667","14.125000","0.000000","154.800000","0.000000","0.000000","154.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"490.000000","583.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"204.500000",,"204.500000",,"204.500000",,"154.500000","0.000000",,,,,,,,,"9.500000","1538.750000","17675.000000","2.625000",,"284.750000",,,,"6.400000","0.000000","1.000000","1.333333","11.875000","0.000000","131.400000","0.000000","1.400000","130.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3.000000","3.000000",,,,,,,,,"496.000000","585.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"328.750000",,"328.750000",,"328.750000",,"186.250000","0.000000",,,,,,,,,"4.750000","2477.250000","16665.000000","0.000000",,"157.750000",,,,"5.800000","0.000000","0.000000","2.333333","10.875000","0.000000","117.600000","0.000000","0.000000","117.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"118.000000","131.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"771.750000",,"771.750000",,"771.750000",,"225.500000","0.000000",,,,,,,,,"19.500000","5806.500000","12497.250000","0.000000",,"553.750000",,,,"23.000000","0.000000","0.000000","1.666667","43.125000","0.000000","462.400000","0.000000","0.000000","462.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"51.000000","82.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"556.000000",,"556.000000",,"556.000000",,"270.000000","0.000000",,,,,,,,,"35.500000","4185.000000","14859.750000","0.000000",,"617.625000",,,,"29.800000","0.000000","0.000000","0.000000","55.875000","0.000000","597.600000","0.000000","0.000000","597.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"99.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"551.750000",,"551.750000",,"551.750000",,"244.250000","0.000000",,,,,,,,,"31.250000","4153.000000","14291.500000","0.000000",,"646.750000",,,,"26.400000","0.000000","0.000000","0.333333","49.375000","0.000000","531.000000","0.000000","0.000000","531.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"86.000000","142.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"455.750000",,"455.750000",,"455.750000",,"204.250000","0.000000",,,,,,,,,"21.500000","3431.000000","15639.000000","0.000000",,"477.375000",,,,"17.200000","0.000000","0.000000","0.333333","32.250000","0.000000","344.000000","0.000000","0.000000","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"66.000000","107.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"307.000000",,"307.000000",,"307.000000",,"139.000000","0.000000",,,,,,,,,"3.750000","2311.750000","17139.500000","0.000000",,"81.000000",,,,"2.800000","0.000000","0.000000","2.000000","5.250000","0.000000","59.200000","0.000000","0.000000","59.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","7.000000",,,,,,,,,"228.000000","425.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"138.000000","0.000000",,,,,,,,,"0.750000","439.500000","19215.500000","0.000000",,"53.625000",,,,"1.000000","0.000000","0.000000","1.666667","1.750000","0.000000","21.600000","0.000000","0.000000","21.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","20.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"130.750000","0.000000",,,,,,,,,"1.000000","409.000000","19322.500000","0.000000",,"17.500000",,,,"1.000000","0.000000","0.000000","3.333333","1.750000","0.000000","21.000000","0.000000","0.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"19.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"114.750000","0.000000",,,,,,,,,"1.500000","408.250000","19292.250000","0.000000",,"15.375000",,,,"0.400000","0.000000","4.000000","0.666667","0.750000","0.000000","10.800000","0.000000","0.200000","10.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"17.000000","17.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"101.250000","0.000000",,,,,,,,,"0.750000","412.250000","19373.500000","0.000000",,"14.625000",,,,"0.600000","0.000000","2.000000","0.666667","1.000000","0.000000","15.200000","0.000000","0.200000","15.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"21.000000","14.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.500000",,"54.500000",,"54.500000",,"128.500000","0.000000",,,,,,,,,"0.500000","413.750000","19201.000000","0.000000",,"9.375000",,,,"0.400000","0.000000","0.000000","1.000000","0.750000","0.000000","10.200000","0.000000","0.000000","10.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"33.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"141.750000",,"141.750000",,"141.750000",,"155.000000","0.000000",,,,,,,,,"4.750000","1070.750000","18063.500000","0.000000",,"119.125000",,,,"4.800000","0.000000","0.000000","0.333333","8.875000","0.000000","98.000000","0.000000","0.000000","98.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","48.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"649.250000",,"649.250000",,"649.250000",,"550.750000","0.000000",,,,,,,,,"25.250000","4884.500000","13552.750000","0.000000",,"708.250000",,,,"29.200000","0.000000","0.000000","2.000000","54.500000","0.000000","584.200000","0.000000","0.000000","584.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"107.000000","159.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"592.000000",,"592.000000",,"592.000000",,"493.250000","0.000000",,,,,,,,,"26.500000","4454.250000","13974.250000","0.000000",,"690.250000",,,,"30.000000","0.000000","0.000000","1.666667","56.500000","0.000000","603.600000","0.000000","0.000000","603.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","3.000000",,,,,,,,,"105.000000","167.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"615.500000",,"615.500000",,"615.500000",,"170.000000","0.000000",,,,,,,,,"28.250000","4631.250000","14865.250000","0.000000",,"554.625000",,,,"25.800000","0.000000","0.000000","2.000000","48.375000","0.000000","517.800000","0.000000","0.000000","517.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","2.000000",,,,,,,,,"76.000000","123.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"616.750000",,"616.750000",,"616.750000",,"170.000000","0.000000",,,,,,,,,"13.500000","4642.250000","14448.000000","0.000000",,"367.125000",,,,"11.200000","0.000000","0.000000","1.000000","21.000000","0.000000","224.800000","0.000000","0.000000","224.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"614.000000",,"614.000000",,"614.000000",,"158.250000","0.000000",,,,,,,,,"12.500000","4619.000000","14511.750000","0.000000",,"362.250000",,,,"12.000000","0.000000","0.000000","0.333333","22.375000","0.000000","240.400000","0.000000","0.000000","240.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"26.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"149.250000",,"149.250000",,"149.250000",,"162.250000","0.000000",,,,,,,,,"13.250000","1125.750000","17969.750000","0.000000",,"182.250000",,,,"8.200000","0.000000","0.000000","0.333333","15.250000","0.000000","164.200000","0.000000","0.000000","164.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6.000000","5.000000",,,,,,,,,"837.000000","949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"62.750000",,"62.750000",,"62.750000",,"129.500000","0.000000",,,,,,,,,"3.500000","476.500000","19109.000000","0.000000",,"23.125000",,,,"1.600000","0.000000","0.000000","0.666667","3.000000","0.000000","33.800000","0.000000","0.000000","33.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.000000","2.000000",,,,,,,,,"532.000000","525.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.750000",,"58.750000",,"58.750000",,"94.250000","0.000000",,,,,,,,,"1.250000","445.750000","19366.250000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","8.666667","0.000000","0.000000","2.400000","0.000000","0.000000","2.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"172.000000","165.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"66.500000",,"66.500000",,"66.500000",,"112.000000","0.000000",,,,,,,,,"2.500000","503.250000","19235.000000","0.000000",,"3.375000",,,,"0.000000","0.000000","0.000000","0.333333","0.000000","0.000000","2.600000","0.000000","0.000000","2.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.000000","2.000000",,,,,,,,,"408.000000","406.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"58.250000",,"58.250000",,"58.250000",,"115.500000","0.000000",,,,,,,,,"1.250000","441.750000","19286.250000","0.000000",,"4.875000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","4.200000","0.000000","0.000000","4.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"221.000000","218.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"139.250000","0.000000",,,,,,,,,"0.750000","406.500000","19147.500000","0.000000",,"2.625000",,,,"0.000000","0.000000","0.000000","0.000000","0.000000","0.000000","2.000000","0.000000","0.000000","2.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","1.000000",,,,,,,,,"175.000000","163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"248.500000",,"248.500000",,"248.500000",,"205.500000","0.000000",,,,,,,,,"49.750000","1871.000000","17059.250000","0.000000",,"3220.500000",,,,"23.800000","0.000000","3.000000","7.333333","44.625000","0.000000","476.600000","0.000000","0.200000","476.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","6.000000",,,,,,,,,"1222.000000","1295.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"499.750000",,"499.750000",,"499.750000",,"306.250000","0.000000",,,,,,,,,"4.000000","3761.750000","13128.750000","0.000000",,"315.750000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","54.000000","0.000000","0.000000","54.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"40.000000","41.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"403.250000",,"403.250000",,"403.250000",,"209.750000","0.000000",,,,,,,,,"12.000000","3035.500000","15031.000000","0.000000",,"486.000000",,,,"12.200000","0.000000","0.000000","2.000000","22.750000","0.000000","246.200000","0.000000","0.000000","246.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","1.000000",,,,,,,,,"91.000000","104.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"179.000000",,"179.000000",,"179.000000",,"135.000000","0.000000",,,,,,,,,"2.500000","1349.250000","18012.500000","0.000000",,"86.500000",,,,"2.600000","0.000000","0.000000","3.666667","4.875000","0.000000","53.200000","0.000000","0.000000","53.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"46.000000","45.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"60.000000",,"60.000000",,"60.000000",,"121.500000","0.000000",,,,,,,,,"1.750000","454.500000","19139.000000","0.000000",,"49.375000",,,,"2.000000","0.000000","0.000000","1.666667","3.750000","0.000000","43.800000","0.000000","0.000000","43.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.250000",,"57.250000",,"57.250000",,"146.750000","0.000000",,,,,,,,,"1.000000","434.250000","19224.750000","0.000000",,"18.375000",,,,"0.800000","0.000000","0.000000","8.000000","1.500000","0.000000","19.200000","0.000000","0.000000","19.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"30.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.750000",,"53.750000",,"53.750000",,"116.750000","0.000000",,,,,,,,,"1.000000","407.250000","19252.000000","0.000000",,"24.375000",,,,"0.800000","0.000000","0.000000","0.333333","1.500000","0.000000","17.200000","0.000000","0.000000","17.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"42.000000","28.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"169.500000","0.000000",,,,,,,,,"1.000000","413.000000","19130.000000","0.000000",,"16.875000",,,,"0.800000","0.000000","0.000000","0.666667","1.500000","0.000000","17.600000","0.000000","0.000000","17.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"27.000000","21.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.250000",,"54.250000",,"54.250000",,"184.250000","0.000000",,,,,,,,,"0.500000","412.500000","19168.000000","0.000000",,"9.750000",,,,"0.200000","0.000000","0.000000","0.000000","0.375000","0.000000","5.000000","0.000000","0.000000","5.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"34.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.250000",,"55.250000",,"55.250000",,"148.500000","0.000000",,,,,,,,,"0.750000","419.250000","19254.500000","0.000000",,"17.250000",,,,"0.600000","0.000000","0.000000","15.333333","1.125000","0.000000","13.800000","0.000000","0.000000","13.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"35.000000","27.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"53.500000",,"53.500000",,"53.500000",,"165.500000","0.000000",,,,,,,,,"1.000000","405.250000","19159.500000","0.000000",,"15.375000",,,,"0.400000","0.000000","0.000000","6.333333","0.750000","0.000000","10.000000","0.000000","0.000000","10.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"75.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"55.750000",,"55.750000",,"55.750000",,"129.750000","0.000000",,,,,,,,,"1.750000","424.000000","19202.000000","0.000000",,"15.375000",,,,"0.600000","0.000000","0.000000","1.000000","1.125000","0.000000","15.400000","0.000000","0.000000","15.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","0.000000",,,,,,,,,"129.000000","51.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"57.500000",,"57.500000",,"57.500000",,"109.500000","0.000000",,,,,,,,,"1.000000","435.500000","19307.250000","0.000000",,"27.375000",,,,"1.200000","0.000000","0.000000","0.333333","2.250000","0.000000","26.800000","0.000000","0.000000","26.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"38.000000","31.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"101.500000",,"101.500000",,"101.500000",,"143.750000","0.000000",,,,,,,,,"4.000000","767.750000","18547.750000","0.000000",,"106.500000",,,,"4.800000","0.000000","0.000000","0.000000","8.875000","0.000000","96.400000","0.000000","0.000000","96.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1.000000","1.000000",,,,,,,,,"171.000000","205.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"220.000000",,"220.000000",,"220.000000",,"167.500000","0.000000",,,,,,,,,"7.250000","1659.750000","17234.500000","0.000000",,"168.000000",,,,"7.000000","0.000000","0.000000","1.000000","13.125000","0.000000","143.600000","0.000000","0.000000","143.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2.000000","2.000000",,,,,,,,,"350.000000","418.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"652.750000",,"652.750000",,"652.750000",,"386.750000","0.000000",,,,,,,,,"6.500000","4910.250000","11891.750000","0.000000",,"388.375000",,,,"4.400000","0.000000","0.000000","3.000000","8.125000","0.000000","88.400000","0.000000","0.000000","88.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"91.000000","100.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"153.250000",,"153.250000",,"153.250000",,"160.250000","0.000000",,,,,,,,,"5.500000","1155.000000","17940.500000","0.000000",,"214.875000",,,,"4.400000","0.000000","0.000000","35.000000","8.250000","0.000000","91.800000","0.000000","0.000000","91.800000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"36.000000","34.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"157.250000",,"157.250000",,"157.250000",,"133.500000","0.000000",,,,,,,,,"2.500000","1185.750000","18387.750000","0.000000",,"89.625000",,,,"2.800000","0.000000","0.000000","0.333333","5.250000","0.000000","58.000000","0.000000","0.000000","58.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"43.000000","33.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"61.000000",,"61.000000",,"61.000000",,"108.500000","0.000000",,,,,,,,,"2.000000","462.500000","19305.500000","0.000000",,"55.000000",,,,"2.400000","0.000000","0.000000","18.333333","4.500000","0.000000","51.400000","0.000000","0.000000","51.400000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"54.000000",,"54.000000",,"54.000000",,"207.000000","0.000000",,,,,,,,,"1.000000","411.750000","19046.750000","0.000000",,"22.500000",,,,"1.000000","0.000000","0.000000","4.333333","1.875000","0.000000","23.000000","0.000000","0.000000","23.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.000000",,"56.000000",,"56.000000",,"138.000000","0.000000",,,,,,,,,"1.250000","424.250000","19253.250000","0.000000",,"32.625000",,,,"1.200000","0.000000","0.000000","0.666667","2.250000","0.000000","27.600000","0.000000","0.000000","27.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"31.000000","26.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"135.750000","0.000000",,,,,,,,,"0.750000","426.250000","19260.750000","0.000000",,"21.750000",,,,"1.000000","0.000000","0.000000","1.000000","1.875000","0.000000","21.200000","0.000000","0.000000","21.200000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"41.000000","24.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.500000",,"56.500000",,"56.500000",,"228.000000","0.000000",,,,,,,,,"1.250000","428.500000","19079.000000","0.000000",,"18.750000",,,,"0.600000","0.000000","0.000000","0.666667","1.125000","0.000000","13.000000","0.000000","0.000000","13.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"23.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, +"56.250000",,"56.250000",,"56.250000",,"157.750000","0.000000",,,,,,,,,"0.750000","425.250000","19201.750000","0.000000",,"28.875000",,,,"1.400000","0.000000","0.000000","1.000000","2.625000","0.000000","28.600000","0.000000","0.000000","28.600000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0.000000","0.000000",,,,,,,,,"24.000000","22.000000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-guest.csv b/splunk_eventgen/samples/vmware-actuals-guest.csv new file mode 100644 index 00000000..f00a6563 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-guest.csv @@ -0,0 +1,2 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"25.671795","0.662692","25.671795","0.662692","25.671795","0.662692","64.307692","0.000000",,,,,,,,,"0.653846","117.378205","19747.538462","0.051282","8.423077","11.162393","8.423077","8.423077","1.358974","0.606838","0.000000","0.179487","0.705128","1.092308","0.000000","15.145299","0.000000","0.051282","15.094017","54848.102564","87111.692308","0.000000","0.000000","3331793.846154","0.000000","12296292.000000","257584.000000","178164.000000","9886095.076923","0.000000","24.000000","0.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","87111.692308","3331793.846154","12296292.000000","178164.000000","9886095.076923","24.000000","0.000000","0.000000","3100.000000","0.000000","0.000000","8843200.512821","0.000000","0.000000",,,,,,"0.000000","0.000000",,,,,,,,,"2.217949","1.012821","0.000000","2.000000","2.102564","2.000000","4.000000","5.897436","4.666667","0.000000","0.000000","0.000000","2.000000","2.051282","2.000000","3.538462","5.333333","4.153846","160.000000","6000.000000","0.000000","848369.846154",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv new file mode 100644 index 00000000..c9c1a8d1 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host-aggregate.csv @@ -0,0 +1,860 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"14663.000000","57.145000","14663.000000","57.145000","14663.000000","57.145000",,,,,,,,,,,,,,"147.000000","5737.500000","5417.000000","15.000000","5737.500000","5737.500000",,,,,,,,,,,"5619536.000000","7171660.000000","478908.000000","0.000000","68805268.000000","0.000000","89467956.000000",,"3778240.000000","24606548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000","7171660.000000","68805268.000000","89467956.000000","3778240.000000","24606548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19358920.000000",,,,,,,,"135.000000","5775.000000",,,,,,,,,,,"4025.000000","574.000000","584.000000","603.000000","720.000000","690.000000","732.000000","0.000000","0.000000","0.000000","505.000000","516.000000","538.000000","612.000000","572.000000","652.000000","160.000000","6000.000000",,"8959154.000000",,,,, +"14351.000000","56.650000","14351.000000","56.650000","14351.000000","56.650000",,,,,,,,,,,,,,"58.000000","4990.000000","4848.000000","9.000000","4990.000000","4990.000000",,,,,,,,,,,"5325952.000000","7003900.000000","478908.000000","0.000000","68792720.000000","0.000000","89467972.000000",,"3778240.000000","24679496.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000","7003900.000000","68792720.000000","89467972.000000","3778240.000000","24679496.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19369160.000000",,,,,,,,"174.000000","4899.000000",,,,,,,,,,,"4093.000000","574.000000","582.000000","599.000000","716.000000","690.000000","732.000000","0.000000","0.000000","0.000000","506.000000","515.000000","532.000000","612.000000","587.000000","617.000000","160.000000","6000.000000",,"8959174.000000",,,,, +"14265.000000","56.510000","14265.000000","56.510000","14265.000000","56.510000",,,,,,,,,,,,,,"50.000000","4583.000000","4322.000000","1502.000000","4583.000000","4583.000000",,,,,,,,,,,"5389088.000000","7311632.000000","478908.000000","0.000000","68779064.000000","0.000000","89467972.000000",,"3778240.000000","24692344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000","7311632.000000","68779064.000000","89467972.000000","3778240.000000","24692344.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19378292.000000",,,,,,,,"107.000000","4687.000000",,,,,,,,,,,"4122.000000","576.000000","586.000000","590.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","509.000000","516.000000","525.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959194.000000",,,,, +"10021.000000","49.860000","10021.000000","49.860000","10021.000000","49.860000",,,,,,,,,,,,,,"325.000000","1687.500000","1518.000000","3513.000000","1687.500000","1687.500000",,,,,,,,,,,"5493948.000000","7353568.000000","478908.000000","0.000000","68774340.000000","0.000000","89467972.000000",,"3778240.000000","24746656.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000","7353568.000000","68774340.000000","89467972.000000","3778240.000000","24746656.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19383760.000000",,,,,,,,"81.000000","1450.000000",,,,,,,,,,,"3802.000000","574.000000","527.000000","579.000000","720.000000","819.000000","722.000000","0.000000","0.000000","0.000000","508.000000","471.000000","514.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959214.000000",,,,, +"13086.000000","54.655000","13086.000000","54.655000","13086.000000","54.655000",,,,,,,,,,,,,,"79.000000","5175.000000","4788.000000","1670.000000","5175.000000","5175.000000",,,,,,,,,,,"5242292.000000","7143856.000000","478908.000000","0.000000","68773128.000000","0.000000","89467972.000000",,"3778240.000000","24733028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000","7143856.000000","68773128.000000","89467972.000000","3778240.000000","24733028.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19384144.000000",,,,,,,,"369.000000","5114.000000",,,,,,,,,,,"3825.000000","573.000000","495.000000","563.000000","720.000000","819.000000","716.000000","0.000000","0.000000","0.000000","507.000000","436.000000","500.000000","613.000000","737.000000","615.000000","160.000000","6000.000000",,"8959234.000000",,,,, +"13340.000000","55.065000","13340.000000","55.065000","13340.000000","55.065000",,,,,,,,,,,,,,"43.000000","1858.000000","1722.000000","447.000000","1858.000000","1858.000000",,,,,,,,,,,"5340312.000000","7039224.000000","478908.000000","0.000000","68783896.000000","0.000000","89467972.000000",,"3778240.000000","24718808.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000","7039224.000000","68783896.000000","89467972.000000","3778240.000000","24718808.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19367048.000000",,,,,,,,"90.000000","1860.000000",,,,,,,,,,,"3946.000000","571.000000","479.000000","552.000000","720.000000","585.000000","675.000000","0.000000","0.000000","0.000000","506.000000","422.000000","493.000000","613.000000","528.000000","574.000000","160.000000","6000.000000",,"8959254.000000",,,,, +"11080.000000","51.515000","11080.000000","51.515000","11080.000000","51.515000",,,,,,,,,,,,,,"91.000000","23524.000000","23875.000000","487.000000","23524.000000","23524.000000",,,,,,,,,,,"5004764.000000","6598824.000000","478908.000000","0.000000","68767452.000000","0.000000","89467972.000000",,"3778240.000000","24730784.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000","6598824.000000","68767452.000000","89467972.000000","3778240.000000","24730784.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19381384.000000",,,,,,,,"282.000000","22800.000000",,,,,,,,,,,"3824.000000","569.000000","489.000000","538.000000","720.000000","585.000000","664.000000","0.000000","0.000000","0.000000","505.000000","433.000000","481.000000","613.000000","528.000000","570.000000","160.000000","6000.000000",,"8959274.000000",,,,, +"12052.000000","53.030000","12052.000000","53.030000","12052.000000","53.030000",,,,,,,,,,,,,,"54.000000","8894.500000","6927.000000","22.000000","8894.500000","8894.500000",,,,,,,,,,,"5151352.000000","6703472.000000","478908.000000","0.000000","68753228.000000","0.000000","89467768.000000",,"3778240.000000","24718316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000","6703472.000000","68753228.000000","89467768.000000","3778240.000000","24718316.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19391196.000000",,,,,,,,"611.000000","10196.000000",,,,,,,,,,,"3835.000000","564.000000","470.000000","524.000000","715.000000","583.000000","644.000000","0.000000","0.000000","0.000000","501.000000","425.000000","469.000000","613.000000","528.000000","560.000000","160.000000","6000.000000",,"8959294.000000",,,,, +"11178.000000","51.660000","11178.000000","51.660000","11178.000000","51.660000",,,,,,,,,,,,,,"871.000000","15082.000000","13390.000000","58.000000","15082.000000","15082.000000",,,,,,,,,,,"5410076.000000","7080036.000000","478908.000000","0.000000","68749612.000000","0.000000","89467768.000000",,"3778240.000000","24723388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000","7080036.000000","68749612.000000","89467768.000000","3778240.000000","24723388.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19393684.000000",,,,,,,,"1067.000000","14836.000000",,,,,,,,,,,"3801.000000","563.000000","439.000000","518.000000","715.000000","511.000000","644.000000","0.000000","0.000000","0.000000","500.000000","399.000000","464.000000","613.000000","455.000000","560.000000","160.000000","6000.000000",,"8959314.000000",,,,, +"14207.000000","56.400000","14207.000000","56.400000","14207.000000","56.400000",,,,,,,,,,,,,,"58.000000","7853.500000","7654.000000","42.000000","7853.500000","7853.500000",,,,,,,,,,,"5578600.000000","7101756.000000","478908.000000","0.000000","68741120.000000","0.000000","89468516.000000",,"3778240.000000","24765000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000","7101756.000000","68741120.000000","89468516.000000","3778240.000000","24765000.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405984.000000",,,,,,,,"201.000000","7793.000000",,,,,,,,,,,"4006.000000","563.000000","462.000000","522.000000","715.000000","536.000000","644.000000","0.000000","0.000000","0.000000","501.000000","429.000000","468.000000","613.000000","529.000000","560.000000","160.000000","6000.000000",,"8959334.000000",,,,, +"13810.000000","55.770000","13810.000000","55.770000","13810.000000","55.770000",,,,,,,,,,,,,,"359.000000","7443.000000","6731.000000","11.000000","7443.000000","7443.000000",,,,,,,,,,,"5431060.000000","6744500.000000","478908.000000","0.000000","68725116.000000","0.000000","89467768.000000",,"3778240.000000","24786688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000","6744500.000000","68725116.000000","89467768.000000","3778240.000000","24786688.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19417248.000000",,,,,,,,"482.000000","7312.000000",,,,,,,,,,,"3912.000000","564.000000","494.000000","521.000000","715.000000","562.000000","644.000000","0.000000","0.000000","0.000000","502.000000","463.000000","468.000000","613.000000","529.000000","559.000000","160.000000","6000.000000",,"8959354.000000",,,,, +"13305.000000","54.970000","13305.000000","54.970000","13305.000000","54.970000",,,,,,,,,,,,,,"1552.000000","6984.000000","5645.000000","7.000000","6984.000000","6984.000000",,,,,,,,,,,"5158240.000000","6639448.000000","478908.000000","0.000000","68709108.000000","0.000000","89467804.000000",,"3778240.000000","24801052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000","6639448.000000","68709108.000000","89467804.000000","3778240.000000","24801052.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19428396.000000",,,,,,,,"1236.000000","5534.000000",,,,,,,,,,,"3912.000000","566.000000","532.000000","519.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","504.000000","490.000000","466.000000","613.000000","529.000000","555.000000","160.000000","6000.000000",,"8959374.000000",,,,, +"12125.000000","53.130000","12125.000000","53.130000","12125.000000","53.130000",,,,,,,,,,,,,,"863.000000","6061.000000","4935.000000","14.000000","6061.000000","6061.000000",,,,,,,,,,,"5116300.000000","6954020.000000","478908.000000","0.000000","68724184.000000","0.000000","89467804.000000",,"3778240.000000","24702340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000","6954020.000000","68724184.000000","89467804.000000","3778240.000000","24702340.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19410604.000000",,,,,,,,"1344.000000","4980.000000",,,,,,,,,,,"3931.000000","564.000000","506.000000","513.000000","715.000000","586.000000","637.000000","0.000000","0.000000","0.000000","503.000000","466.000000","463.000000","613.000000","521.000000","555.000000","160.000000","6000.000000",,"8959394.000000",,,,, +"12008.000000","52.950000","12008.000000","52.950000","12008.000000","52.950000",,,,,,,,,,,,,,"3867.000000","9876.500000","5735.000000","3.000000","9876.500000","9876.500000",,,,,,,,,,,"5053508.000000","6954148.000000","478908.000000","0.000000","68724000.000000","0.000000","89467924.000000",,"3778240.000000","24701416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000","6954148.000000","68724000.000000","89467924.000000","3778240.000000","24701416.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19405372.000000",,,,,,,,"3944.000000","6207.000000",,,,,,,,,,,"3916.000000","563.000000","481.000000","504.000000","715.000000","586.000000","604.000000","0.000000","0.000000","0.000000","502.000000","442.000000","456.000000","613.000000","487.000000","529.000000","160.000000","6000.000000",,"8959414.000000",,,,, +"12855.000000","54.270000","12855.000000","54.270000","12855.000000","54.270000",,,,,,,,,,,,,,"2180.000000","7716.000000","5536.000000","5.000000","7716.000000","7716.000000",,,,,,,,,,,"4703832.000000","6570524.000000","478908.000000","0.000000","68714564.000000","0.000000","89467924.000000",,"3778240.000000","24709328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000","6570524.000000","68714564.000000","89467924.000000","3778240.000000","24709328.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19409596.000000",,,,,,,,"2319.000000",,,,,,,,,,,,"3782.000000","564.000000","463.000000","500.000000","715.000000","539.000000","604.000000","0.000000","0.000000","0.000000","503.000000","435.000000","452.000000","613.000000","484.000000","528.000000","160.000000","6000.000000",,"8959434.000000",,,,, +"11780.000000","52.575000","11780.000000","52.575000","11780.000000","52.575000",,,,,,,,,,,,,,"1771.000000","6804.000000","4776.000000","7.000000","6804.000000","6804.000000",,,,,,,,,,,"4598972.000000","7052864.000000","478904.000000","0.000000","68700380.000000","0.000000","89467928.000000",,"3778240.000000","24738968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000","7052864.000000","68700380.000000","89467928.000000","3778240.000000","24738968.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419620.000000",,,,,,,,"1849.000000","5210.000000",,,,,,,,,,,"3894.000000","563.000000","478.000000","492.000000","715.000000","607.000000","586.000000","0.000000","0.000000","0.000000","502.000000","437.000000","447.000000","613.000000","530.000000","528.000000","160.000000","6000.000000",,"8959454.000000",,,,, +"14169.000000","56.315000","14169.000000","56.315000","14169.000000","56.315000",,,,,,,,,,,,,,"1345.000000","8281.500000","6850.000000","13.000000","8281.500000","8281.500000",,,,,,,,,,,"4515084.000000","6801204.000000","478904.000000","0.000000","68687572.000000","0.000000","89467928.000000",,"3778240.000000","24776804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000","6801204.000000","68687572.000000","89467928.000000","3778240.000000","24776804.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19429344.000000",,,,,,,,"1530.000000","6836.000000",,,,,,,,,,,"3946.000000","561.000000","516.000000","491.000000","708.000000","736.000000","585.000000","0.000000","0.000000","0.000000","502.000000","460.000000","445.000000","612.000000","574.000000","528.000000","160.000000","6000.000000",,"8959474.000000",,,,, +"14237.000000","56.415000","14237.000000","56.415000","14237.000000","56.415000",,,,,,,,,,,,,,"137.000000","6098.500000","4883.000000","5.000000","6098.500000","6098.500000",,,,,,,,,,,"4682856.000000","6801204.000000","478904.000000","0.000000","68682800.000000","0.000000","89467928.000000",,"3778240.000000","24780992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000","6801204.000000","68682800.000000","89467928.000000","3778240.000000","24780992.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19430156.000000",,,,,,,,"359.000000","6816.000000",,,,,,,,,,,"4160.000000","564.000000","551.000000","493.000000","715.000000","736.000000","585.000000","0.000000","0.000000","0.000000","504.000000","482.000000","445.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959494.000000",,,,, +"14008.000000","56.060000","14008.000000","56.060000","14008.000000","56.060000",,,,,,,,,,,,,,"546.000000","4951.500000","3658.000000","15.000000","4951.500000","4951.500000",,,,,,,,,,,"4787716.000000","6801204.000000","478904.000000","0.000000","68692708.000000","0.000000","89467928.000000",,"3778240.000000","24768280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000","6801204.000000","68692708.000000","89467928.000000","3778240.000000","24768280.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19419076.000000",,,,,,,,"726.000000","4973.000000",,,,,,,,,,,"3906.000000","564.000000","578.000000","503.000000","716.000000","736.000000","586.000000","0.000000","0.000000","0.000000","502.000000","489.000000","451.000000","612.000000","602.000000","528.000000","160.000000","6000.000000",,"8959514.000000",,,,, +"14367.000000","56.620000","14367.000000","56.620000","14367.000000","56.620000",,,,,,,,,,,,,,"56.000000","6582.500000","6323.000000","29.000000","6582.500000","6582.500000",,,,,,,,,,,"4871408.000000","7031692.000000","478904.000000","0.000000","68682312.000000","0.000000","89467732.000000",,"3778240.000000","24712780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000","7031692.000000","68682312.000000","89467732.000000","3778240.000000","24712780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19427844.000000",,,,,,,,"163.000000","6621.000000",,,,,,,,,,,"4001.000000","562.000000","587.000000","510.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","502.000000","500.000000","458.000000","612.000000","602.000000","530.000000","160.000000","6000.000000",,"8959534.000000",,,,, +"14250.000000","56.430000","14250.000000","56.430000","14250.000000","56.430000",,,,,,,,,,,,,,"453.000000","5567.000000","4911.000000","6.000000","5567.000000","5567.000000",,,,,,,,,,,"5256664.000000","7485776.000000","478904.000000","0.000000","68671868.000000","0.000000","89467984.000000",,"3778240.000000","24721716.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000","7485776.000000","68671868.000000","89467984.000000","3778240.000000","24721716.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19433408.000000",,,,,,,,"774.000000","4995.000000",,,,,,,,,,,"3955.000000","561.000000","573.000000","512.000000","716.000000","731.000000","647.000000","0.000000","0.000000","0.000000","501.000000","493.000000","460.000000","603.000000","585.000000","558.000000","160.000000","6000.000000",,"8959554.000000",,,,, +"17611.000000","61.705000","17611.000000","61.705000","17611.000000","61.705000",,,,,,,,,,,,,,"255.000000","8405.500000","7976.000000","6.000000","8405.500000","8405.500000",,,,,,,,,,,"5277632.000000","7338980.000000","478904.000000","0.000000","68683340.000000","0.000000","89467984.000000",,"3778240.000000","24828548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000","7338980.000000","68683340.000000","89467984.000000","3778240.000000","24828548.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19424672.000000",,,,,,,,"441.000000","8138.000000",,,,,,,,,,,"4085.000000","564.000000","623.000000","529.000000","720.000000","816.000000","720.000000","0.000000","0.000000","0.000000","504.000000","540.000000","472.000000","612.000000","668.000000","574.000000","160.000000","6000.000000",,"8959574.000000",,,,, +"16265.000000","59.585000","16265.000000","59.585000","16265.000000","59.585000",,,,,,,,,,,,,,"51.000000","7048.000000","6907.000000","29.000000","7048.000000","7048.000000",,,,,,,,,,,"4774316.000000","6814696.000000","478904.000000","0.000000","68666968.000000","0.000000","89467984.000000",,"3778240.000000","24799284.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000","6814696.000000","68666968.000000","89467984.000000","3778240.000000","24799284.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19437768.000000",,,,,,,,"164.000000","6973.000000",,,,,,,,,,,"4165.000000","568.000000","659.000000","547.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","506.000000","568.000000","487.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959594.000000",,,,, +"13889.000000","55.865000","13889.000000","55.865000","13889.000000","55.865000",,,,,,,,,,,,,,"49.000000","5748.000000","5580.000000","17.000000","5748.000000","5748.000000",,,,,,,,,,,"4655100.000000","6500824.000000","478904.000000","0.000000","68664244.000000","0.000000","89467984.000000",,"3778240.000000","24800524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000","6500824.000000","68664244.000000","89467984.000000","3778240.000000","24800524.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19435780.000000",,,,,,,,"148.000000","5719.000000",,,,,,,,,,,"3877.000000","568.000000","662.000000","556.000000","722.000000","816.000000","731.000000","0.000000","0.000000","0.000000","507.000000","566.000000","493.000000","615.000000","668.000000","585.000000","160.000000","6000.000000",,"8959614.000000",,,,, +"16137.000000","59.380000","16137.000000","59.380000","16137.000000","59.380000",,,,,,,,,,,,,,"160.000000","7943.000000","8628.000000","17.000000","7943.000000","7943.000000",,,,,,,,,,,"4634132.000000","6437904.000000","478904.000000","0.000000","68657148.000000","0.000000","89467984.000000",,"3778240.000000","24851140.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000","6437904.000000","68657148.000000","89467984.000000","3778240.000000","24851140.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19439340.000000",,,,,,,,"231.000000","6866.000000",,,,,,,,,,,"3970.000000","570.000000","635.000000","564.000000","722.000000","767.000000","731.000000","0.000000","0.000000","0.000000","508.000000","560.000000","499.000000","615.000000","654.000000","602.000000","160.000000","6000.000000",,"8959634.000000",,,,, +"15709.000000","58.705000","15709.000000","58.705000","15709.000000","58.705000",,,,,,,,,,,,,,"183.000000","7354.500000","5850.000000","9.000000","7354.500000","7354.500000",,,,,,,,,,,"4675808.000000","6458596.000000","478904.000000","0.000000","68643296.000000","0.000000","89467712.000000",,"3778240.000000","24878444.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000","6458596.000000","68643296.000000","89467712.000000","3778240.000000","24878444.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450132.000000",,,,,,,,"363.000000","8311.000000",,,,,,,,,,,"4089.000000","567.000000","604.000000","569.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","509.000000","548.000000","504.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959654.000000",,,,, +"14640.000000","57.020000","14640.000000","57.020000","14640.000000","57.020000",,,,,,,,,,,,,,"240.000000","8711.500000","8581.000000","22.000000","8711.500000","8711.500000",,,,,,,,,,,"4592248.000000","6458924.000000","478904.000000","0.000000","68626592.000000","0.000000","89468040.000000",,"3778240.000000","24894356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000","6458924.000000","68626592.000000","89468040.000000","3778240.000000","24894356.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19462320.000000",,,,,,,,"345.000000","8257.000000",,,,,,,,,,,"4184.000000","567.000000","606.000000","571.000000","720.000000","697.000000","731.000000","0.000000","0.000000","0.000000","508.000000","556.000000","506.000000","615.000000","654.000000","603.000000","160.000000","6000.000000",,"8959674.000000",,,,, +"15295.000000","58.040000","15295.000000","58.040000","15295.000000","58.040000",,,,,,,,,,,,,,"35.000000","5974.500000","5657.000000","18.000000","5974.500000","5974.500000",,,,,,,,,,,"4969404.000000","6290824.000000","478904.000000","0.000000","68610916.000000","0.000000","89467712.000000",,"3778240.000000","24903780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000","6290824.000000","68610916.000000","89467712.000000","3778240.000000","24903780.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474392.000000",,,,,,,,"131.000000","6124.000000",,,,,,,,,,,"4105.000000","567.000000","584.000000","580.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","508.000000","533.000000","512.000000","615.000000","621.000000","610.000000","160.000000","6000.000000",,"8959694.000000",,,,, +"14994.000000","57.560000","14994.000000","57.560000","14994.000000","57.560000",,,,,,,,,,,,,,"117.000000","5964.000000","5259.000000","16.000000","5964.000000","5964.000000",,,,,,,,,,,"5325912.000000","6752200.000000","478904.000000","0.000000","68595508.000000","0.000000","89467712.000000",,"3778240.000000","24917672.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000","6752200.000000","68595508.000000","89467712.000000","3778240.000000","24917672.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485952.000000",,,,,,,,"200.000000","6350.000000",,,,,,,,,,,"4227.000000","565.000000","584.000000","590.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","507.000000","533.000000","522.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959714.000000",,,,, +"13940.000000","55.910000","13940.000000","55.910000","13940.000000","55.910000",,,,,,,,,,,,,,"330.000000","6138.500000","4442.000000","24.000000","6138.500000","6138.500000",,,,,,,,,,,"5542948.000000","6983364.000000","478904.000000","0.000000","68594600.000000","0.000000","89467964.000000",,"3778240.000000","24916736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000","6983364.000000","68594600.000000","89467964.000000","3778240.000000","24916736.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481328.000000",,,,,,,,"563.000000","6941.000000",,,,,,,,,,,"4079.000000","565.000000","586.000000","595.000000","720.000000","729.000000","731.000000","0.000000","0.000000","0.000000","506.000000","532.000000","526.000000","615.000000","632.000000","621.000000","160.000000","6000.000000",,"8959734.000000",,,,, +"15783.000000","58.790000","15783.000000","58.790000","15783.000000","58.790000",,,,,,,,,,,,,,"38.000000","7028.500000","6947.000000","47.000000","7028.500000","7028.500000",,,,,,,,,,,"5501004.000000","7193080.000000","478904.000000","0.000000","68591984.000000","0.000000","89467964.000000",,"3778240.000000","24854896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000","7193080.000000","68591984.000000","89467964.000000","3778240.000000","24854896.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485340.000000",,,,,,,,"158.000000","6914.000000",,,,,,,,,,,"4056.000000","566.000000","591.000000","602.000000","720.000000","689.000000","731.000000","0.000000","0.000000","0.000000","506.000000","541.000000","533.000000","610.000000","632.000000","621.000000","160.000000","6000.000000",,"8959754.000000",,,,, +"13966.000000","55.945000","13966.000000","55.945000","13966.000000","55.945000",,,,,,,,,,,,,,"55.000000","5918.500000","5732.000000","16.000000","5918.500000","5918.500000",,,,,,,,,,,"5102228.000000","6752360.000000","478904.000000","0.000000","68586904.000000","0.000000","89467648.000000",,"3778240.000000","24838792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000","6752360.000000","68586904.000000","89467648.000000","3778240.000000","24838792.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19481388.000000",,,,,,,,"162.000000","5888.000000",,,,,,,,,,,"4002.000000","564.000000","582.000000","603.000000","720.000000","689.000000","729.000000","0.000000","0.000000","0.000000","504.000000","523.000000","534.000000","605.000000","605.000000","621.000000","160.000000","6000.000000",,"8959774.000000",,,,, +"17060.000000","60.805000","17060.000000","60.805000","17060.000000","60.805000",,,,,,,,,,,,,,"48.000000","6689.000000","6519.000000","60.000000","6689.000000","6689.000000",,,,,,,,,,,"4787428.000000","6436188.000000","478904.000000","0.000000","68614968.000000","0.000000","89467648.000000",,"3778240.000000","24821848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000","6436188.000000","68614968.000000","89467648.000000","3778240.000000","24821848.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19480052.000000",,,,,,,,"144.000000","6666.000000",,,,,,,,,,,"4076.000000","570.000000","707.000000","626.000000","720.000000","1537.000000","767.000000","0.000000","0.000000","0.000000","503.000000","548.000000","539.000000","603.000000","755.000000","632.000000","160.000000","6000.000000",,"8959794.000000",,,,, +"20076.000000","65.525000","20076.000000","65.525000","20076.000000","65.525000",,,,,,,,,,,,,,"55.000000","8553.000000","8189.000000","16.000000","8553.000000","8553.000000",,,,,,,,,,,"5249028.000000","6974828.000000","478904.000000","0.000000","68605460.000000","0.000000","89467648.000000",,"3778240.000000","24809764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000","6974828.000000","68605460.000000","89467648.000000","3778240.000000","24809764.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19489064.000000",,,,,,,,"170.000000","8690.000000",,,,,,,,,,,"4151.000000","577.000000","815.000000","650.000000","729.000000","1537.000000","821.000000","0.000000","0.000000","0.000000","506.000000","596.000000","554.000000","615.000000","755.000000","661.000000","160.000000","6000.000000",,"8959814.000000",,,,, +"24384.000000","72.295000","24384.000000","72.295000","24384.000000","72.295000",,,,,,,,,,,,,,"40.000000","5887.500000","5842.000000","31.000000","5887.500000","5887.500000",,,,,,,,,,,"5577992.000000","6996280.000000","478904.000000","0.000000","68646004.000000","0.000000","89467900.000000",,"3778240.000000","24759156.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000","6996280.000000","68646004.000000","89467900.000000","3778240.000000","24759156.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19484316.000000",,,,,,,,"116.000000","5776.000000",,,,,,,,,,,"4448.000000","592.000000","1094.000000","705.000000","736.000000","1537.000000","1081.000000","0.000000","0.000000","0.000000","513.000000","739.000000","582.000000","621.000000","1058.000000","755.000000","160.000000","6000.000000",,"8959834.000000",,,,, +"23928.000000","71.600000","23928.000000","71.600000","23928.000000","71.600000",,,,,,,,,,,,,,"63.000000","11244.500000","10490.000000","31.000000","11244.500000","11244.500000",,,,,,,,,,,"5787708.000000","7331824.000000","478904.000000","0.000000","68689856.000000","0.000000","89467900.000000",,"3778240.000000","24718336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000","7331824.000000","68689856.000000","89467900.000000","3778240.000000","24718336.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19450536.000000",,,,,,,,"573.000000","11363.000000",,,,,,,,,,,"4474.000000","606.000000","1219.000000","756.000000","771.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","519.000000","818.000000","604.000000","654.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959854.000000",,,,, +"20882.000000","66.825000","20882.000000","66.825000","20882.000000","66.825000",,,,,,,,,,,,,,"182.000000","7143.500000","5949.000000","34.000000","7143.500000","7143.500000",,,,,,,,,,,"5787708.000000","7331820.000000","478904.000000","0.000000","68678300.000000","0.000000","89467900.000000",,"3778240.000000","24696696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000","7331820.000000","68678300.000000","89467900.000000","3778240.000000","24696696.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19457524.000000",,,,,,,,"309.000000","7847.000000",,,,,,,,,,,"4378.000000","615.000000","1263.000000","778.000000","821.000000","1535.000000","1330.000000","0.000000","0.000000","0.000000","522.000000","838.000000","614.000000","706.000000","1058.000000","810.000000","160.000000","6000.000000",,"8959874.000000",,,,, +"18709.000000","63.415000","18709.000000","63.415000","18709.000000","63.415000",,,,,,,,,,,,,,"69.000000","8820.000000","7475.000000","12.000000","8820.000000","8820.000000",,,,,,,,,,,"6647244.000000","8233300.000000","478904.000000","0.000000","68667484.000000","0.000000","89467608.000000",,"3778240.000000","24707256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000","8233300.000000","68667484.000000","89467608.000000","3778240.000000","24707256.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19465392.000000",,,,,,,,"273.000000","9822.000000",,,,,,,,,,,"4178.000000","624.000000","1139.000000","801.000000","958.000000","1508.000000","1330.000000","0.000000","0.000000","0.000000","526.000000","766.000000","622.000000","709.000000","917.000000","810.000000","160.000000","6000.000000",,"8959894.000000",,,,, +"16786.000000","60.395000","16786.000000","60.395000","16786.000000","60.395000",,,,,,,,,,,,,,"45.000000","7295.500000","6077.000000","41.000000","7295.500000","7295.500000",,,,,,,,,,,"6437816.000000","8013960.000000","478904.000000","0.000000","68651952.000000","0.000000","89467892.000000",,"3778240.000000","24784152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000","8013960.000000","68651952.000000","89467892.000000","3778240.000000","24784152.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477064.000000",,,,,,,,"242.000000","8227.000000",,,,,,,,,,,"4102.000000","629.000000","942.000000","812.000000","958.000000","1207.000000","1330.000000","0.000000","0.000000","0.000000","528.000000","689.000000","629.000000","709.000000","798.000000","810.000000","160.000000","6000.000000",,"8959914.000000",,,,, +"16822.000000","60.455000","16822.000000","60.455000","16822.000000","60.455000",,,,,,,,,,,,,,"50.000000","8288.000000","7052.000000","64.000000","8288.000000","8288.000000",,,,,,,,,,,"6409780.000000","8020800.000000","478904.000000","0.000000","68653440.000000","0.000000","89467892.000000",,"3778240.000000","24773352.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000","8020800.000000","68653440.000000","89467892.000000","3778240.000000","24773352.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19479300.000000",,,,,,,,"288.000000","9185.000000",,,,,,,,,,,"4171.000000","633.000000","816.000000","814.000000","958.000000","1093.000000","1330.000000","0.000000","0.000000","0.000000","532.000000","634.000000","628.000000","709.000000","760.000000","810.000000","160.000000","6000.000000",,"8959934.000000",,,,, +"15420.000000","58.255000","15420.000000","58.255000","15420.000000","58.255000",,,,,,,,,,,,,,"43.000000","7885.500000","6645.000000","18.000000","7885.500000","7885.500000",,,,,,,,,,,"6493668.000000","8230520.000000","478904.000000","0.000000","68648060.000000","0.000000","89467892.000000",,"3778240.000000","24750700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000","8230520.000000","68648060.000000","89467892.000000","3778240.000000","24750700.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19476804.000000",,,,,,,,"255.000000","8827.000000",,,,,,,,,,,"4273.000000","635.000000","677.000000","815.000000","958.000000","840.000000","1330.000000","0.000000","0.000000","0.000000","534.000000","584.000000","629.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959954.000000",,,,, +"16162.000000","59.415000","16162.000000","59.415000","16162.000000","59.415000",,,,,,,,,,,,,,"41.000000","7883.500000","6353.000000","20.000000","7883.500000","7883.500000",,,,,,,,,,,"6524548.000000","8303344.000000","478904.000000","0.000000","68645200.000000","0.000000","89467892.000000",,"3778240.000000","24752372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000","8303344.000000","68645200.000000","89467892.000000","3778240.000000","24752372.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19474328.000000",,,,,,,,"258.000000","9114.000000",,,,,,,,,,,"4238.000000","636.000000","641.000000","819.000000","958.000000","730.000000","1330.000000","0.000000","0.000000","0.000000","535.000000","579.000000","633.000000","709.000000","660.000000","810.000000","160.000000","6000.000000",,"8959974.000000",,,,, +"16507.000000","59.950000","16507.000000","59.950000","16507.000000","59.950000",,,,,,,,,,,,,,"54.000000","8160.500000","6703.000000","15.000000","8160.500000","8160.500000",,,,,,,,,,,"6664728.000000","8485472.000000","478904.000000","0.000000","68634596.000000","0.000000","89467892.000000",,"3778240.000000","24784888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000","8485472.000000","68634596.000000","89467892.000000","3778240.000000","24784888.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19477784.000000",,,,,,,,"256.000000","9307.000000",,,,,,,,,,,"4369.000000","638.000000","625.000000","822.000000","958.000000","694.000000","1330.000000","0.000000","0.000000","0.000000","538.000000","587.000000","639.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8959994.000000",,,,, +"16438.000000","59.845000","16438.000000","59.845000","16438.000000","59.845000",,,,,,,,,,,,,,"104.000000","7906.500000","6751.000000","39.000000","7906.500000","7906.500000",,,,,,,,,,,"6853344.000000","8443400.000000","478904.000000","0.000000","68632984.000000","0.000000","89467764.000000",,"3778240.000000","24782868.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000","8443400.000000","68632984.000000","89467764.000000","3778240.000000","24782868.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19485204.000000",,,,,,,,"246.000000","8710.000000",,,,,,,,,,,"4047.000000","640.000000","637.000000","826.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","539.000000","588.000000","640.000000","709.000000","652.000000","810.000000","160.000000","6000.000000",,"8960014.000000",,,,, +"15969.000000","59.105000","15969.000000","59.105000","15969.000000","59.105000",,,,,,,,,,,,,,"336.000000","9609.500000","8002.000000","31.000000","9609.500000","9609.500000",,,,,,,,,,,"6937228.000000","8569232.000000","478904.000000","0.000000","68623876.000000","0.000000","89467764.000000",,"3778240.000000","24788348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000","8569232.000000","68623876.000000","89467764.000000","3778240.000000","24788348.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19493972.000000",,,,,,,,"544.000000","10336.000000",,,,,,,,,,,"4038.000000","641.000000","629.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","540.000000","579.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960034.000000",,,,, +"15475.000000","58.315000","15475.000000","58.315000","15475.000000","58.315000",,,,,,,,,,,,,,"60.000000","7516.000000","6095.000000","12.000000","7516.000000","7516.000000",,,,,,,,,,,"7049156.000000","8800140.000000","478904.000000","0.000000","68602580.000000","0.000000","89467764.000000",,"3778240.000000","24828580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000","8800140.000000","68602580.000000","89467764.000000","3778240.000000","24828580.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19505756.000000",,,,,,,,"290.000000","8586.000000",,,,,,,,,,,"4134.000000","641.000000","619.000000","828.000000","958.000000","788.000000","1330.000000","0.000000","0.000000","0.000000","541.000000","562.000000","643.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960054.000000",,,,, +"16529.000000","59.965000","16529.000000","59.965000","16529.000000","59.965000",,,,,,,,,,,,,,"47.000000","6099.000000","6051.000000","26.000000","6099.000000","6099.000000",,,,,,,,,,,"6440976.000000","8653340.000000","478904.000000","0.000000","68598164.000000","0.000000","89467764.000000",,"3778240.000000","24801760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000","8653340.000000","68598164.000000","89467764.000000","3778240.000000","24801760.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19509752.000000",,,,,,,,"232.000000",,,,,,,,,,,,"4185.000000","643.000000","626.000000","834.000000","958.000000","735.000000","1330.000000","0.000000","0.000000","0.000000","543.000000","570.000000","649.000000","709.000000","655.000000","810.000000","160.000000","6000.000000",,"8960074.000000",,,,, +"20894.000000","66.845000","20894.000000","66.845000","20894.000000","66.845000",,,,,,,,,,,,,,"76.000000","10636.000000","9384.000000","24.000000","10636.000000","10636.000000",,,,,,,,,,,"6598836.000000","8957992.000000","478904.000000","0.000000","68674136.000000","0.000000","89467764.000000",,"3778240.000000","24738076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000","8957992.000000","68674136.000000","89467764.000000","3778240.000000","24738076.000000","1429420.000000","1630920.000000",,,,"10856628.000000","19496668.000000",,,,,,,,"312.000000","11500.000000",,,,,,,,,,,"4340.000000","653.000000","773.000000","841.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","548.000000","631.000000","659.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960094.000000",,,,, +"14945.000000","57.520000","14945.000000","57.520000","14945.000000","57.520000",,,,,,,,,,,,,,"60.000000","5605.500000","4219.000000","33.000000","5605.500000","5605.500000",,,,,,,,,,,"6532872.000000","9080144.000000","478904.000000","0.000000","68669820.000000","0.000000","89457204.000000",,"3778240.000000","24784848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000","9080144.000000","68669820.000000","89457204.000000","3778240.000000","24784848.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19491516.000000",,,,,,,,"251.000000","6679.000000",,,,,,,,,,,"4308.000000","658.000000","782.000000","821.000000","1015.000000","1444.000000","1330.000000","0.000000","0.000000","0.000000","552.000000","637.000000","651.000000","732.000000","857.000000","828.000000","160.000000","6000.000000",,"8960114.000000",,,,, +"15027.000000","57.650000","15027.000000","57.650000","15027.000000","57.650000",,,,,,,,,,,,,,"45.000000","9811.000000","6327.000000","68.000000","9811.000000","9811.000000",,,,,,,,,,,"6197312.000000","8451080.000000","478904.000000","0.000000","68666100.000000","0.000000","89457096.000000",,"3778240.000000","24757968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000","8451080.000000","68666100.000000","89457096.000000","3778240.000000","24757968.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19483948.000000",,,,,,,,"4460.000000","8789.000000",,,,,,,,,,,"3875.000000","660.000000","749.000000","766.000000","1015.000000","1444.000000","1207.000000","0.000000","0.000000","0.000000","554.000000","607.000000","623.000000","732.000000","857.000000","779.000000","160.000000","6000.000000",,"8960134.000000",,,,, +"16680.000000","60.235000","16680.000000","60.235000","16680.000000","60.235000",,,,,,,,,,,,,,"132.000000","7142.000000","6448.000000","29.000000","7142.000000","7142.000000",,,,,,,,,,,"6071484.000000","8094568.000000","478904.000000","0.000000","68670848.000000","0.000000","89457096.000000",,"3778240.000000","24753944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000","8094568.000000","68670848.000000","89457096.000000","3778240.000000","24753944.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19477840.000000",,,,,,,,"621.000000","7081.000000",,,,,,,,,,,"3956.000000","663.000000","618.000000","721.000000","1015.000000","813.000000","1041.000000","0.000000","0.000000","0.000000","556.000000","551.000000","606.000000","732.000000","719.000000","748.000000","160.000000","6000.000000",,"8960154.000000",,,,, +"19314.000000","64.365000","19314.000000","64.365000","19314.000000","64.365000",,,,,,,,,,,,,,"72.000000","13982.000000","12695.000000","29.000000","13982.000000","13982.000000",,,,,,,,,,,"6316004.000000","7870744.000000","478904.000000","0.000000","68667796.000000","0.000000","89457096.000000",,"3778240.000000","24742076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000","7870744.000000","68667796.000000","89457096.000000","3778240.000000","24742076.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19482780.000000",,,,,,,,"309.000000","14886.000000",,,,,,,,,,,"4330.000000","669.000000","659.000000","700.000000","1015.000000","813.000000","915.000000","0.000000","0.000000","0.000000","562.000000","580.000000","600.000000","732.000000","719.000000","697.000000","160.000000","6000.000000",,"8960174.000000",,,,, +"18384.000000","62.900000","18384.000000","62.900000","18384.000000","62.900000",,,,,,,,,,,,,,"92.000000","21775.500000","19425.000000","57.000000","21775.500000","21775.500000",,,,,,,,,,,"6798540.000000","7996764.000000","478892.000000","0.000000","68659660.000000","0.000000","89457300.000000",,"3778240.000000","24783560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000","7996764.000000","68659660.000000","89457300.000000","3778240.000000","24783560.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19494872.000000",,,,,,,,"379.000000","23655.000000",,,,,,,,,,,"4372.000000","678.000000","737.000000","685.000000","1015.000000","930.000000","831.000000","0.000000","0.000000","0.000000","569.000000","644.000000","599.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960194.000000",,,,, +"19239.000000","64.230000","19239.000000","64.230000","19239.000000","64.230000",,,,,,,,,,,,,,"52.000000","20982.000000","20357.000000","61.000000","20982.000000","20982.000000",,,,,,,,,,,"7332736.000000","8635824.000000","478892.000000","0.000000","68641356.000000","0.000000","89457300.000000",,"3778240.000000","24796780.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000","8635824.000000","68641356.000000","89457300.000000","3778240.000000","24796780.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19506904.000000",,,,,,,,"360.000000","21195.000000",,,,,,,,,,,"4432.000000","684.000000","764.000000","685.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","575.000000","677.000000","603.000000","732.000000","728.000000","719.000000","160.000000","6000.000000",,"8960214.000000",,,,, +"16759.000000","60.340000","16759.000000","60.340000","16759.000000","60.340000",,,,,,,,,,,,,,"100.000000","28408.000000","26724.000000","75.000000","28408.000000","28408.000000",,,,,,,,,,,"7521936.000000","9013764.000000","478892.000000","0.000000","68626408.000000","0.000000","89457756.000000",,"3778240.000000","24839200.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000","9013764.000000","68626408.000000","89457756.000000","3778240.000000","24839200.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19518360.000000",,,,,,,,"420.000000","29571.000000",,,,,,,,,,,"4219.000000","689.000000","755.000000","688.000000","1015.000000","930.000000","813.000000","0.000000","0.000000","0.000000","578.000000","667.000000","606.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960234.000000",,,,, +"16894.000000","60.545000","16894.000000","60.545000","16894.000000","60.545000",,,,,,,,,,,,,,"4761.000000","50778.500000","43503.000000","82.000000","50778.500000","50778.500000",,,,,,,,,,,"7521396.000000","8964324.000000","478892.000000","0.000000","68611328.000000","0.000000","89457216.000000",,"3778240.000000","24870036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000","8964324.000000","68611328.000000","89457216.000000","3778240.000000","24870036.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19529016.000000",,,,,,,,"5268.000000","48025.000000",,,,,,,,,,,"4173.000000","692.000000","708.000000","691.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","580.000000","632.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960254.000000",,,,, +"17063.000000","60.805000","17063.000000","60.805000","17063.000000","60.805000",,,,,,,,,,,,,,"67.000000","27770.000000","26749.000000","67.000000","27770.000000","27770.000000",,,,,,,,,,,"7071084.000000","8534980.000000","478892.000000","0.000000","68597192.000000","0.000000","89457216.000000",,"3778240.000000","24883368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000","8534980.000000","68597192.000000","89457216.000000","3778240.000000","24883368.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539108.000000",,,,,,,,"405.000000","28317.000000",,,,,,,,,,,"4295.000000","695.000000","685.000000","694.000000","1015.000000","804.000000","813.000000","0.000000","0.000000","0.000000","582.000000","601.000000","608.000000","732.000000","730.000000","721.000000","160.000000","6000.000000",,"8960274.000000",,,,, +"15804.000000","58.830000","15804.000000","58.830000","15804.000000","58.830000",,,,,,,,,,,,,,"50.000000","26687.000000","25170.000000","77.000000","26687.000000","26687.000000",,,,,,,,,,,"7071224.000000","8535120.000000","478892.000000","0.000000","68594824.000000","0.000000","89457356.000000",,"3778240.000000","24784184.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000","8535120.000000","68594824.000000","89457356.000000","3778240.000000","24784184.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19542820.000000",,,,,,,,"393.000000","27760.000000",,,,,,,,,,,"4412.000000","700.000000","673.000000","697.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","586.000000","595.000000","608.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960294.000000",,,,, +"15400.000000","58.190000","15400.000000","58.190000","15400.000000","58.190000",,,,,,,,,,,,,,"101.000000","24373.000000","24271.000000","84.000000","24373.000000","24373.000000",,,,,,,,,,,"6868556.000000","8346380.000000","478892.000000","0.000000","68586776.000000","0.000000","89457356.000000",,"3778240.000000","24871204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000","8346380.000000","68586776.000000","89457356.000000","3778240.000000","24871204.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19539844.000000",,,,,,,,"337.000000",,,,,,,,,,,,"4079.000000","705.000000","671.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","589.000000","578.000000","606.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960314.000000",,,,, +"15174.000000","57.840000","15174.000000","57.840000","15174.000000","57.840000",,,,,,,,,,,,,,"329.000000","11168.500000","8524.000000","65.000000","11168.500000","11168.500000",,,,,,,,,,,"6826612.000000","8209496.000000","478892.000000","0.000000","68587124.000000","0.000000","89457356.000000",,"3778240.000000","24871236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000","8209496.000000","68587124.000000","89457356.000000","3778240.000000","24871236.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19536700.000000",,,,,,,,"595.000000","12889.000000",,,,,,,,,,,"4050.000000","707.000000","649.000000","698.000000","1015.000000","775.000000","813.000000","0.000000","0.000000","0.000000","591.000000","560.000000","604.000000","732.000000","706.000000","721.000000","160.000000","6000.000000",,"8960334.000000",,,,, +"15305.000000","58.040000","15305.000000","58.040000","15305.000000","58.040000",,,,,,,,,,,,,,"68.000000","6133.000000","5533.000000","15.000000","6133.000000","6133.000000",,,,,,,,,,,"6910500.000000","8545040.000000","478892.000000","0.000000","68577276.000000","0.000000","89457356.000000",,"3778240.000000","24897356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000","8545040.000000","68577276.000000","89457356.000000","3778240.000000","24897356.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19541564.000000",,,,,,,,"215.000000","6448.000000",,,,,,,,,,,"4066.000000","709.000000","622.000000","698.000000","1015.000000","738.000000","813.000000","0.000000","0.000000","0.000000","593.000000","541.000000","604.000000","732.000000","588.000000","721.000000","160.000000","6000.000000",,"8960354.000000",,,,, +"17607.000000","61.635000","17607.000000","61.635000","17607.000000","61.635000",,,,,,,,,,,,,,"66.000000","7071.000000","6945.000000","19.000000","7071.000000","7071.000000",,,,,,,,,,,"6225380.000000","7838940.000000","478892.000000","0.000000","68562364.000000","0.000000","89457148.000000",,"3778240.000000","24909928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000","7838940.000000","68562364.000000","89457148.000000","3778240.000000","24909928.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19551584.000000",,,,,,,,"163.000000","6966.000000",,,,,,,,,,,"4236.000000","713.000000","645.000000","702.000000","1015.000000","783.000000","813.000000","0.000000","0.000000","0.000000","597.000000","572.000000","607.000000","732.000000","676.000000","721.000000","160.000000","6000.000000",,"8960374.000000",,,,, +"17649.000000","61.695000","17649.000000","61.695000","17649.000000","61.695000",,,,,,,,,,,,,,"967.000000","18309.000000","17423.000000","31.000000","18309.000000","18309.000000",,,,,,,,,,,"6120520.000000","7682228.000000","478892.000000","0.000000","68551056.000000","0.000000","89457148.000000",,"3778240.000000","24922212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000","7682228.000000","68551056.000000","89457148.000000","3778240.000000","24922212.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19560080.000000",,,,,,,,"1136.000000","17090.000000",,,,,,,,,,,"4243.000000","716.000000","685.000000","680.000000","1015.000000","838.000000","786.000000","0.000000","0.000000","0.000000","599.000000","605.000000","599.000000","737.000000","759.000000","719.000000","160.000000","6000.000000",,"8960394.000000",,,,, +"20086.000000","65.515000","20086.000000","65.515000","20086.000000","65.515000",,,,,,,,,,,,,,"55.000000","7514.000000","6844.000000","20.000000","7514.000000","7514.000000",,,,,,,,,,,"5952748.000000","7577372.000000","478892.000000","0.000000","68562052.000000","0.000000","89457148.000000",,"3778240.000000","24851796.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000","7577372.000000","68562052.000000","89457148.000000","3778240.000000","24851796.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19550644.000000",,,,,,,,"157.000000","7972.000000",,,,,,,,,,,"4380.000000","721.000000","757.000000","693.000000","1036.000000","1038.000000","804.000000","0.000000","0.000000","0.000000","604.000000","652.000000","607.000000","748.000000","759.000000","725.000000","160.000000","6000.000000",,"8960414.000000",,,,, +"19803.000000","65.080000","19803.000000","65.080000","19803.000000","65.080000",,,,,,,,,,,,,,"70.000000","5896.500000","5785.000000","16.000000","5896.500000","5896.500000",,,,,,,,,,,"5743124.000000","7451636.000000","478892.000000","0.000000","68562628.000000","0.000000","89457148.000000",,"3778240.000000","24828344.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000","7451636.000000","68562628.000000","89457148.000000","3778240.000000","24828344.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19544408.000000",,,,,,,,"162.000000","5776.000000",,,,,,,,,,,"4279.000000","730.000000","832.000000","719.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","610.000000","693.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960434.000000",,,,, +"16291.000000","59.580000","16291.000000","59.580000","16291.000000","59.580000",,,,,,,,,,,,,,"56.000000","4438.500000","3935.000000","15.000000","4438.500000","4438.500000",,,,,,,,,,,"5596328.000000","7357844.000000","478892.000000","0.000000","68563360.000000","0.000000","89457148.000000",,"3778240.000000","24827460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000","7357844.000000","68563360.000000","89457148.000000","3778240.000000","24827460.000000","1429420.000000","1630920.000000",,,,"10867208.000000","19540412.000000",,,,,,,,"428.000000","4457.000000",,,,,,,,,,,"4134.000000","733.000000","828.000000","722.000000","1038.000000","1080.000000","861.000000","0.000000","0.000000","0.000000","611.000000","673.000000","623.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960454.000000",,,,, +"18171.000000","62.520000","18171.000000","62.520000","18171.000000","62.520000",,,,,,,,,,,,,,"132.000000","10073.500000","9786.000000","18.000000","10073.500000","10073.500000",,,,,,,,,,,"5595020.000000","7335344.000000","478892.000000","0.000000","68557660.000000","0.000000","89449972.000000",,"3778240.000000","24830260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000","7335344.000000","68557660.000000","89449972.000000","3778240.000000","24830260.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19533212.000000",,,,,,,,"306.000000","9923.000000",,,,,,,,,,,"4135.000000","735.000000","830.000000","727.000000","1038.000000","1080.000000","897.000000","0.000000","0.000000","0.000000","612.000000","664.000000","624.000000","755.000000","801.000000","730.000000","160.000000","6000.000000",,"8960474.000000",,,,, +"17053.000000","60.765000","17053.000000","60.765000","17053.000000","60.765000",,,,,,,,,,,,,,"62.000000","6870.500000","6611.000000","17.000000","6870.500000","6870.500000",,,,,,,,,,,"6538548.000000","8222832.000000","478892.000000","0.000000","68561300.000000","0.000000","89449772.000000",,"3778240.000000","24882940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000","8222832.000000","68561300.000000","89449772.000000","3778240.000000","24882940.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19528932.000000",,,,,,,,"170.000000","6896.000000",,,,,,,,,,,"4189.000000","736.000000","761.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","613.000000","613.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960494.000000",,,,, +"19157.000000","64.060000","19157.000000","64.060000","19157.000000","64.060000",,,,,,,,,,,,,,"70.000000","17513.500000","17493.000000","23.000000","17513.500000","17513.500000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68553188.000000","0.000000","89449772.000000",,"3778240.000000","24889580.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000","8085936.000000","68553188.000000","89449772.000000","3778240.000000","24889580.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19532792.000000",,,,,,,,"319.000000","17145.000000",,,,,,,,,,,"4284.000000","740.000000","774.000000","724.000000","1038.000000","921.000000","874.000000","0.000000","0.000000","0.000000","616.000000","643.000000","617.000000","755.000000","727.000000","730.000000","160.000000","6000.000000",,"8960514.000000",,,,, +"17289.000000","61.125000","17289.000000","61.125000","17289.000000","61.125000",,,,,,,,,,,,,,"2198.000000","18126.000000","15512.000000","13.000000","18126.000000","18126.000000",,,,,,,,,,,"6475632.000000","8085936.000000","478892.000000","0.000000","68538632.000000","0.000000","89449772.000000",,"3778240.000000","24888848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000","8085936.000000","68538632.000000","89449772.000000","3778240.000000","24888848.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19541176.000000",,,,,,,,"1856.000000","16685.000000",,,,,,,,,,,"4373.000000","741.000000","731.000000","723.000000","1038.000000","839.000000","874.000000","0.000000","0.000000","0.000000","617.000000","632.000000","617.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960534.000000",,,,, +"15447.000000","58.235000","15447.000000","58.235000","15447.000000","58.235000",,,,,,,,,,,,,,"7103.000000","27817.000000","19069.000000","28.000000","27817.000000","27817.000000",,,,,,,,,,,"5972840.000000","7457316.000000","478892.000000","0.000000","68531808.000000","0.000000","89449984.000000",,"3778240.000000","24897304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000","7457316.000000","68531808.000000","89449984.000000","3778240.000000","24897304.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19546968.000000",,,,,,,,"8204.000000","21257.000000",,,,,,,,,,,"4177.000000","743.000000","697.000000","721.000000","1038.000000","806.000000","874.000000","0.000000","0.000000","0.000000","617.000000","621.000000","615.000000","755.000000","689.000000","727.000000","160.000000","6000.000000",,"8960554.000000",,,,, +"15526.000000","58.355000","15526.000000","58.355000","15526.000000","58.355000",,,,,,,,,,,,,,"429.000000","18144.500000","17434.000000","22.000000","18144.500000","18144.500000",,,,,,,,,,,"6182556.000000","7646064.000000","478892.000000","0.000000","68518620.000000","0.000000","89449984.000000",,"3778240.000000","24929948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000","7646064.000000","68518620.000000","89449984.000000","3778240.000000","24929948.000000","1429420.000000","1630920.000000",,,,"10874640.000000","19557672.000000",,,,,,,,"638.000000","17788.000000",,,,,,,,,,,"4046.000000","744.000000","667.000000","721.000000","1038.000000","762.000000","874.000000","0.000000","0.000000","0.000000","618.000000","583.000000","613.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960574.000000",,,,, +"16614.000000","60.050000","16614.000000","60.050000","16614.000000","60.050000",,,,,,,,,,,,,,"4952.000000","26766.500000","21092.000000","60.000000","26766.500000","26766.500000",,,,,,,,,,,"6138972.000000","7718032.000000","478892.000000","0.000000","68494956.000000","0.000000","89440852.000000",,"3778240.000000","24946840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000","7718032.000000","68494956.000000","89440852.000000","3778240.000000","24946840.000000","1429420.000000","1630920.000000",,,,"10883772.000000","19568048.000000",,,,,,,,"5278.000000","22210.000000",,,,,,,,,,,"4110.000000","746.000000","656.000000","719.000000","1038.000000","724.000000","874.000000","0.000000","0.000000","0.000000","620.000000","571.000000","612.000000","755.000000","678.000000","727.000000","160.000000","6000.000000",,"8960594.000000",,,,, +"16589.000000","60.000000","16589.000000","60.000000","16589.000000","60.000000",,,,,,,,,,,,,,"700.000000","19892.000000","18922.000000","43.000000","19892.000000","19892.000000",,,,,,,,,,,"6096872.000000","7550104.000000","478892.000000","0.000000","68479028.000000","0.000000","89440636.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000","7550104.000000","68479028.000000","89440636.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10883848.000000","19576280.000000",,,,,,,,"927.000000","19234.000000",,,,,,,,,,,"4021.000000","748.000000","671.000000","721.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","580.000000","616.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960614.000000",,,,, +"14492.000000","56.710000","14492.000000","56.710000","14492.000000","56.710000",,,,,,,,,,,,,,"5777.000000","22797.000000","17019.000000","14.000000","22797.000000","22797.000000",,,,,,,,,,,"5739672.000000","7297612.000000","478892.000000","0.000000","68463460.000000","0.000000","89436844.000000",,"3778240.000000","25006840.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000","7297612.000000","68463460.000000","89436844.000000","3778240.000000","25006840.000000","1429420.000000","1630920.000000",,,,"10887640.000000","19585420.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"4204.000000","750.000000","663.000000","723.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","582.000000","617.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960634.000000",,,,, +"15202.000000","57.820000","15202.000000","57.820000","15202.000000","57.820000",,,,,,,,,,,,,,"15052.000000","25747.500000","10061.000000","9.000000","25747.500000","25747.500000",,,,,,,,,,,"5759376.000000","7379916.000000","478892.000000","0.000000","68463492.000000","0.000000","89429148.000000",,"3778240.000000","24993404.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000","7379916.000000","68463492.000000","89429148.000000","3778240.000000","24993404.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19580316.000000",,,,,,,,"16217.000000","10164.000000",,,,,,,,,,,"3967.000000","749.000000","638.000000","722.000000","1038.000000","759.000000","874.000000","0.000000","0.000000","0.000000","621.000000","558.000000","615.000000","755.000000","686.000000","727.000000","160.000000","6000.000000",,"8960654.000000",,,,, +"14965.000000","57.445000","14965.000000","57.445000","14965.000000","57.445000",,,,,,,,,,,,,,"13476.000000","30102.000000","16574.000000","86.000000","30102.000000","30102.000000",,,,,,,,,,,"5641160.000000","7156840.000000","478892.000000","0.000000","68459400.000000","0.000000","89429148.000000",,"3778240.000000","24999384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000","7156840.000000","68459400.000000","89429148.000000","3778240.000000","24999384.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575144.000000",,,,,,,,"13341.000000","16813.000000",,,,,,,,,,,"4065.000000","751.000000","621.000000","716.000000","1038.000000","936.000000","897.000000","0.000000","0.000000","0.000000","621.000000","534.000000","608.000000","755.000000","626.000000","727.000000","160.000000","6000.000000",,"8960674.000000",,,,, +"16429.000000","59.750000","16429.000000","59.750000","16429.000000","59.750000",,,,,,,,,,,,,,"9661.000000","23058.000000","12989.000000","12.000000","23058.000000","23058.000000",,,,,,,,,,,"6269364.000000","7555300.000000","478892.000000","0.000000","68475632.000000","0.000000","89429148.000000",,"3778240.000000","24983112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000","7555300.000000","68475632.000000","89429148.000000","3778240.000000","24983112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556296.000000",,,,,,,,"10389.000000","13077.000000",,,,,,,,,,,"4071.000000","748.000000","679.000000","722.000000","1038.000000","1042.000000","921.000000","0.000000","0.000000","0.000000","621.000000","541.000000","604.000000","749.000000","636.000000","725.000000","160.000000","6000.000000",,"8960694.000000",,,,, +"14782.000000","57.170000","14782.000000","57.170000","14782.000000","57.170000",,,,,,,,,,,,,,"118.000000","16021.500000","15706.000000","40.000000","16021.500000","16021.500000",,,,,,,,,,,"6269364.000000","7603920.000000","478888.000000","0.000000","68478092.000000","0.000000","89429152.000000",,"3778240.000000","24993176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000","7603920.000000","68478092.000000","89429152.000000","3778240.000000","24993176.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19549612.000000",,,,,,,,"269.000000","15949.000000",,,,,,,,,,,"4215.000000","741.000000","689.000000","709.000000","1038.000000","1042.000000","897.000000","0.000000","0.000000","0.000000","618.000000","551.000000","595.000000","749.000000","636.000000","696.000000","160.000000","6000.000000",,"8960714.000000",,,,, +"15591.000000","58.435000","15591.000000","58.435000","15591.000000","58.435000",,,,,,,,,,,,,,"312.000000","8063.500000","7271.000000","31.000000","8063.500000","8063.500000",,,,,,,,,,,"6122444.000000","7680076.000000","478888.000000","0.000000","68472940.000000","0.000000","89429032.000000",,"3778240.000000","24969712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000","7680076.000000","68472940.000000","89429032.000000","3778240.000000","24969712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558444.000000",,,,,,,,"415.000000","8129.000000",,,,,,,,,,,"4090.000000","724.000000","682.000000","686.000000","930.000000","1042.000000","839.000000","0.000000","0.000000","0.000000","609.000000","552.000000","580.000000","728.000000","636.000000","686.000000","160.000000","6000.000000",,"8960734.000000",,,,, +"17832.000000","61.955000","17832.000000","61.955000","17832.000000","61.955000",,,,,,,,,,,,,,"319.000000","13451.500000","12792.000000","15.000000","13451.500000","13451.500000",,,,,,,,,,,"5891760.000000","7281616.000000","478888.000000","0.000000","68492216.000000","0.000000","89429032.000000",,"3778240.000000","24954112.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000","7281616.000000","68492216.000000","89429032.000000","3778240.000000","24954112.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540456.000000",,,,,,,,"828.000000","12962.000000",,,,,,,,,,,"4229.000000","713.000000","691.000000","695.000000","905.000000","905.000000","874.000000","0.000000","0.000000","0.000000","604.000000","566.000000","583.000000","721.000000","643.000000","686.000000","160.000000","6000.000000",,"8960754.000000",,,,, +"15395.000000","58.130000","15395.000000","58.130000","15395.000000","58.130000",,,,,,,,,,,,,,"269.000000","11304.000000","10468.000000","31.000000","11304.000000","11304.000000",,,,,,,,,,,"5912732.000000","7281616.000000","478888.000000","0.000000","68477144.000000","0.000000","89429032.000000",,"3778240.000000","24925236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000","7281616.000000","68477144.000000","89429032.000000","3778240.000000","24925236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19545408.000000",,,,,,,,"460.000000","11410.000000",,,,,,,,,,,"4022.000000","705.000000","716.000000","686.000000","861.000000","905.000000","843.000000","0.000000","0.000000","0.000000","600.000000","572.000000","577.000000","711.000000","664.000000","674.000000","160.000000","6000.000000",,"8960774.000000",,,,, +"12823.000000","54.090000","12823.000000","54.090000","12823.000000","54.090000",,,,,,,,,,,,,,"491.000000","21369.000000","19724.000000","22.000000","21369.000000","21369.000000",,,,,,,,,,,"6353136.000000","7736316.000000","478888.000000","0.000000","68460708.000000","0.000000","89429032.000000",,"3778240.000000","24812360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000","7736316.000000","68460708.000000","89429032.000000","3778240.000000","24812360.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19556364.000000",,,,,,,,"724.000000","21798.000000",,,,,,,,,,,"3977.000000","693.000000","683.000000","671.000000","840.000000","905.000000","843.000000","0.000000","8.000000","0.000000","594.000000","545.000000","566.000000","706.000000","664.000000","674.000000","160.000000","6000.000000",,"8960794.000000",,,,, +"13588.000000","55.290000","13588.000000","55.290000","13588.000000","55.290000",,,,,,,,,,,,,,"2272.000000","25670.000000","23398.000000","30.000000","25670.000000","25670.000000",,,,,,,,,,,"6080504.000000","7736312.000000","478888.000000","0.000000","68455040.000000","0.000000","89429032.000000",,"3778240.000000","24818960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000","7736312.000000","68455040.000000","89429032.000000","3778240.000000","24818960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559528.000000",,,,,,,,,"26055.000000",,,,,,,,,,,"3941.000000","689.000000","594.000000","659.000000","839.000000","843.000000","843.000000","0.000000","8.000000","0.000000","592.000000","506.000000","556.000000","706.000000","664.000000","643.000000","160.000000","6000.000000",,"8960814.000000",,,,, +"13844.000000","55.700000","13844.000000","55.700000","13844.000000","55.700000",,,,,,,,,,,,,,"3818.000000","20290.500000","15160.000000","29.000000","20290.500000","20290.500000",,,,,,,,,,,"6038484.000000","7694292.000000","478888.000000","0.000000","68474060.000000","0.000000","89428956.000000",,"3778240.000000","24878240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000","7694292.000000","68474060.000000","89428956.000000","3778240.000000","24878240.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535608.000000",,,,,,,,"4066.000000","17537.000000",,,,,,,,,,,"4028.000000","686.000000","546.000000","649.000000","839.000000","673.000000","843.000000","0.000000","8.000000","0.000000","590.000000","480.000000","546.000000","706.000000","575.000000","640.000000","160.000000","6000.000000",,"8960834.000000",,,,, +"11139.000000","51.465000","11139.000000","51.465000","11139.000000","51.465000",,,,,,,,,,,,,,"13943.000000","28985.000000","13748.000000","10.000000","28985.000000","28985.000000",,,,,,,,,,,"6373040.000000","8259532.000000","478888.000000","0.000000","68487440.000000","0.000000","89428912.000000",,"3778240.000000","24935712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000","8259532.000000","68487440.000000","89428912.000000","3778240.000000","24935712.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517832.000000",,,,,,,,"13487.000000","16791.000000",,,,,,,,,,,"3863.000000","683.000000","519.000000","635.000000","839.000000","620.000000","843.000000","0.000000","0.000000","0.000000","586.000000","454.000000","533.000000","706.000000","565.000000","636.000000","160.000000","6000.000000",,"8960854.000000",,,,, +"13031.000000","54.430000","13031.000000","54.430000","13031.000000","54.430000",,,,,,,,,,,,,,"17739.000000","26951.500000","7538.000000","6.000000","26951.500000","26951.500000",,,,,,,,,,,"6918296.000000","8678964.000000","478888.000000","0.000000","68491668.000000","0.000000","89428912.000000",,"3778240.000000","24929944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000","8678964.000000","68491668.000000","89428912.000000","3778240.000000","24929944.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19508400.000000",,,,,,,,"18210.000000","10415.000000",,,,,,,,,,,"3806.000000","681.000000","517.000000","629.000000","839.000000","580.000000","843.000000","0.000000","0.000000","0.000000","583.000000","449.000000","529.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960874.000000",,,,, +"11749.000000","52.420000","11749.000000","52.420000","11749.000000","52.420000",,,,,,,,,,,,,,"14342.000000","28587.000000","13389.000000","25.000000","28587.000000","28587.000000",,,,,,,,,,,"7002180.000000","8657992.000000","478888.000000","0.000000","68472972.000000","0.000000","89428912.000000",,"3778240.000000","24985000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000","8657992.000000","68472972.000000","89428912.000000","3778240.000000","24985000.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19514368.000000",,,,,,,,"14543.000000","14900.000000",,,,,,,,,,,"3841.000000","679.000000","508.000000","619.000000","839.000000","569.000000","843.000000","0.000000","0.000000","0.000000","579.000000","430.000000","518.000000","706.000000","509.000000","636.000000","160.000000","6000.000000",,"8960894.000000",,,,, +"14026.000000","55.975000","14026.000000","55.975000","14026.000000","55.975000",,,,,,,,,,,,,,"1244.000000","8996.500000","7161.000000","22.000000","8996.500000","8996.500000",,,,,,,,,,,"6806016.000000","8195876.000000","478888.000000","0.000000","68459076.000000","0.000000","89429112.000000",,"3778240.000000","25016252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000","8195876.000000","68459076.000000","89429112.000000","3778240.000000","25016252.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524096.000000",,,,,,,,"2169.000000","7418.000000",,,,,,,,,,,"4052.000000","676.000000","541.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","577.000000","459.000000","509.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960914.000000",,,,, +"13959.000000","55.865000","13959.000000","55.865000","13959.000000","55.865000",,,,,,,,,,,,,,"622.000000","7405.500000","6595.000000","6.000000","7405.500000","7405.500000",,,,,,,,,,,"6281736.000000","7566728.000000","478888.000000","0.000000","68445972.000000","0.000000","89429112.000000",,"3778240.000000","25029196.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000","7566728.000000","68445972.000000","89429112.000000","3778240.000000","25029196.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19534032.000000",,,,,,,,"713.000000","6880.000000",,,,,,,,,,,"4040.000000","677.000000","563.000000","609.000000","839.000000","705.000000","843.000000","0.000000","0.000000","0.000000","576.000000","470.000000","506.000000","706.000000","563.000000","633.000000","160.000000","6000.000000",,"8960934.000000",,,,, +"15191.000000","57.795000","15191.000000","57.795000","15191.000000","57.795000",,,,,,,,,,,,,,"10423.000000","15823.000000","5399.000000","3.000000","15823.000000","15823.000000",,,,,,,,,,,"6344652.000000","7650616.000000","478888.000000","0.000000","68448712.000000","0.000000","89429112.000000",,"3778240.000000","24990228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000","7650616.000000","68448712.000000","89429112.000000","3778240.000000","24990228.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19529780.000000",,,,,,,,"9095.000000",,,,,,,,,,,,"4015.000000","676.000000","585.000000","609.000000","839.000000","714.000000","843.000000","0.000000","0.000000","0.000000","575.000000","503.000000","507.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960954.000000",,,,, +"14373.000000","56.510000","14373.000000","56.510000","14373.000000","56.510000",,,,,,,,,,,,,,"22245.000000","29379.000000","6197.000000","14.000000","29379.000000","29379.000000",,,,,,,,,,,"5947144.000000","7420868.000000","478888.000000","0.000000","68438172.000000","0.000000","89429112.000000",,"3778240.000000","24994364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000","7420868.000000","68438172.000000","89429112.000000","3778240.000000","24994364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19530412.000000",,,,,,,,"23902.000000","6413.000000",,,,,,,,,,,"3935.000000","674.000000","587.000000","602.000000","839.000000","714.000000","799.000000","0.000000","0.000000","0.000000","573.000000","517.000000","505.000000","706.000000","662.000000","636.000000","160.000000","6000.000000",,"8960974.000000",,,,, +"20617.000000","66.290000","20617.000000","66.290000","20617.000000","66.290000",,,,,,,,,,,,,,"17519.000000","33595.500000","16012.000000","18.000000","33595.500000","33595.500000",,,,,,,,,,,"6072972.000000","7693504.000000","478888.000000","0.000000","68433336.000000","0.000000","89429112.000000",,"3778240.000000","25020440.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000","7693504.000000","68433336.000000","89429112.000000","3778240.000000","25020440.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19537568.000000",,,,,,,,"17284.000000","16375.000000",,,,,,,,,,,"4433.000000","677.000000","771.000000","627.000000","843.000000","1649.000000","855.000000","0.000000","0.000000","0.000000","573.000000","594.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8960994.000000",,,,, +"15667.000000","58.545000","15667.000000","58.545000","15667.000000","58.545000",,,,,,,,,,,,,,"9565.000000","25514.500000","10927.000000","14.000000","25514.500000","25514.500000",,,,,,,,,,,"6156816.000000","7630552.000000","478888.000000","0.000000","68454000.000000","0.000000","89429076.000000",,"3778240.000000","24995436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000","7630552.000000","68454000.000000","89429076.000000","3778240.000000","24995436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19525564.000000",,,,,,,,"10692.000000","19844.000000",,,,,,,,,,,"4021.000000","679.000000","825.000000","636.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","573.000000","605.000000","518.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961014.000000",,,,, +"15146.000000","57.725000","15146.000000","57.725000","15146.000000","57.725000",,,,,,,,,,,,,,"49.000000","6901.000000","4425.000000","26.000000","6901.000000","6901.000000",,,,,,,,,,,"6408468.000000","8024628.000000","478888.000000","0.000000","68445000.000000","0.000000","89429076.000000",,"3778240.000000","25004856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000","8024628.000000","68445000.000000","89429076.000000","3778240.000000","25004856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19535816.000000",,,,,,,,"234.000000","9093.000000",,,,,,,,,,,"3965.000000","681.000000","859.000000","638.000000","855.000000","1649.000000","905.000000","0.000000","0.000000","0.000000","574.000000","611.000000","517.000000","706.000000","833.000000","662.000000","160.000000","6000.000000",,"8961034.000000",,,,, +"17198.000000","60.955000","17198.000000","60.955000","17198.000000","60.955000",,,,,,,,,,,,,,"74.000000","6900.000000","6677.000000","10.000000","6900.000000","6900.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68473348.000000","0.000000","89429076.000000",,"3778240.000000","24980628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000","8477440.000000","68473348.000000","89429076.000000","3778240.000000","24980628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19509916.000000",,,,,,,,"540.000000","6509.000000",,,,,,,,,,,"4144.000000","682.000000","697.000000","628.000000","855.000000","1052.000000","852.000000","0.000000","0.000000","0.000000","574.000000","563.000000","516.000000","701.000000","699.000000","664.000000","160.000000","6000.000000",,"8961054.000000",,,,, +"16364.000000","59.640000","16364.000000","59.640000","16364.000000","59.640000",,,,,,,,,,,,,,"144.000000","5734.000000","5444.000000","7.000000","5734.000000","5734.000000",,,,,,,,,,,"6805044.000000","8477440.000000","478888.000000","0.000000","68461532.000000","0.000000","89429076.000000",,"3778240.000000","24984448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000","8477440.000000","68461532.000000","89429076.000000","3778240.000000","24984448.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19519024.000000",,,,,,,,"228.000000","5651.000000",,,,,,,,,,,"4364.000000","680.000000","672.000000","627.000000","855.000000","852.000000","852.000000","0.000000","0.000000","0.000000","573.000000","573.000000","518.000000","701.000000","699.000000","662.000000","160.000000","6000.000000",,"8961074.000000",,,,, +"17080.000000","60.760000","17080.000000","60.760000","17080.000000","60.760000",,,,,,,,,,,,,,"60.000000","6209.000000","5738.000000","38.000000","6209.000000","6209.000000",,,,,,,,,,,"6616308.000000","8477436.000000","478888.000000","0.000000","68461100.000000","0.000000","89429076.000000",,"3778240.000000","24922628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000","8477436.000000","68461100.000000","89429076.000000","3778240.000000","24922628.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19515136.000000",,,,,,,,"180.000000","6438.000000",,,,,,,,,,,"4089.000000","680.000000","718.000000","645.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","571.000000","602.000000","529.000000","696.000000","699.000000","662.000000","160.000000","6000.000000",,"8961094.000000",,,,, +"14338.000000","56.460000","14338.000000","56.460000","14338.000000","56.460000",,,,,,,,,,,,,,"127.000000","4596.000000","4499.000000","11.000000","4596.000000","4596.000000",,,,,,,,,,,"6275972.000000","8143776.000000","478888.000000","0.000000","68447552.000000","0.000000","89429076.000000",,"3778240.000000","24934904.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000","8143776.000000","68447552.000000","89429076.000000","3778240.000000","24934904.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19524540.000000",,,,,,,,"154.000000","4412.000000",,,,,,,,,,,"4080.000000","677.000000","686.000000","647.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","567.000000","568.000000","529.000000","686.000000","647.000000","662.000000","160.000000","6000.000000",,"8961114.000000",,,,, +"13650.000000","55.375000","13650.000000","55.375000","13650.000000","55.375000",,,,,,,,,,,,,,"14569.000000","19336.000000","5250.000000","8.000000","19336.000000","19336.000000",,,,,,,,,,,"6275972.000000","8174660.000000","478888.000000","0.000000","68434736.000000","0.000000","89429076.000000",,"3778240.000000","24963428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000","8174660.000000","68434736.000000","89429076.000000","3778240.000000","24963428.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532196.000000",,,,,,,,"13084.000000","5767.000000",,,,,,,,,,,"4088.000000","675.000000","671.000000","652.000000","855.000000","892.000000","892.000000","0.000000","0.000000","0.000000","565.000000","557.000000","534.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961134.000000",,,,, +"11267.000000","51.630000","11267.000000","51.630000","11267.000000","51.630000",,,,,,,,,,,,,,"20366.000000","25325.000000","4206.000000","4.000000","25325.000000","25325.000000",,,,,,,,,,,"6569572.000000","8636032.000000","478888.000000","0.000000","68420732.000000","0.000000","89429076.000000",,"3778240.000000","24879836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000","8636032.000000","68420732.000000","89429076.000000","3778240.000000","24879836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19542232.000000",,,,,,,,"22015.000000","4061.000000",,,,,,,,,,,"3795.000000","669.000000","540.000000","649.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","560.000000","464.000000","531.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961154.000000",,,,, +"10200.000000","49.965000","10200.000000","49.965000","10200.000000","49.965000",,,,,,,,,,,,,,"18164.000000","32954.000000","14689.000000","9.000000","32954.000000","32954.000000",,,,,,,,,,,"6234024.000000","8233192.000000","478888.000000","0.000000","68422364.000000","0.000000","89429076.000000",,"3778240.000000","24878364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000","8233192.000000","68422364.000000","89429076.000000","3778240.000000","24878364.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538244.000000",,,,,,,,"17585.000000","15469.000000",,,,,,,,,,,"3866.000000","664.000000","496.000000","642.000000","855.000000","774.000000","892.000000","0.000000","0.000000","0.000000","555.000000","425.000000","524.000000","686.000000","684.000000","682.000000","160.000000","6000.000000",,"8961174.000000",,,,, +"10460.000000","50.375000","10460.000000","50.375000","10460.000000","50.375000",,,,,,,,,,,,,,"7903.000000","17929.000000","9799.000000","30.000000","17929.000000","17929.000000",,,,,,,,,,,"6192088.000000","8212228.000000","478888.000000","0.000000","68425120.000000","0.000000","89429084.000000",,"3778240.000000","24963024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000","8212228.000000","68425120.000000","89429084.000000","3778240.000000","24963024.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19531912.000000",,,,,,,,"8776.000000","9379.000000",,,,,,,,,,,"3813.000000","658.000000","420.000000","634.000000","855.000000","644.000000","892.000000","0.000000","0.000000","0.000000","550.000000","356.000000","519.000000","684.000000","474.000000","682.000000","160.000000","6000.000000",,"8961194.000000",,,,, +"9221.000000","48.415000","9221.000000","48.415000","9221.000000","48.415000",,,,,,,,,,,,,,"25855.000000","54017.000000","27985.000000","21.000000","54017.000000","54017.000000",,,,,,,,,,,"6737136.000000","8547568.000000","478888.000000","0.000000","68400916.000000","0.000000","89428880.000000",,"3778240.000000","24949236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000","8547568.000000","68400916.000000","89428880.000000","3778240.000000","24949236.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19543724.000000",,,,,,,,"26318.000000","27874.000000",,,,,,,,,,,"3682.000000","651.000000","405.000000","622.000000","855.000000","509.000000","892.000000","0.000000","0.000000","0.000000","544.000000","347.000000","508.000000","684.000000","429.000000","682.000000","160.000000","6000.000000",,"8961214.000000",,,,, +"10276.000000","50.085000","10276.000000","50.085000","10276.000000","50.085000",,,,,,,,,,,,,,"23510.000000","56052.000000","32542.000000","46.000000","56052.000000","56052.000000",,,,,,,,,,,"6903972.000000","8993712.000000","478888.000000","0.000000","68424412.000000","0.000000","89428880.000000",,"3778240.000000","24925668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000","8993712.000000","68424412.000000","89428880.000000","3778240.000000","24925668.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19517632.000000",,,,,,,,,"33520.000000",,,,,,,,,,,"3733.000000","648.000000","410.000000","612.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","541.000000","344.000000","499.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961234.000000",,,,, +"9437.000000","48.760000","9437.000000","48.760000","9437.000000","48.760000",,,,,,,,,,,,,,"1718.000000","7001.000000","4025.000000","11.000000","7001.000000","7001.000000",,,,,,,,,,,"6924944.000000","8890000.000000","478888.000000","0.000000","68410544.000000","0.000000","89428880.000000",,"3778240.000000","25015960.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000","8890000.000000","68410544.000000","89428880.000000","3778240.000000","25015960.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19528288.000000",,,,,,,,"2423.000000","5836.000000",,,,,,,,,,,"3637.000000","643.000000","409.000000","599.000000","855.000000","667.000000","892.000000","0.000000","0.000000","0.000000","536.000000","342.000000","487.000000","684.000000","432.000000","682.000000","160.000000","6000.000000",,"8961254.000000",,,,, +"12247.000000","53.165000","12247.000000","53.165000","12247.000000","53.165000",,,,,,,,,,,,,,"227.000000","8992.000000","7595.000000","8.000000","8992.000000","8992.000000",,,,,,,,,,,"6883180.000000","8848228.000000","478888.000000","0.000000","68401376.000000","0.000000","89429052.000000",,"3778240.000000","24982300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000","8848228.000000","68401376.000000","89429052.000000","3778240.000000","24982300.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19532160.000000",,,,,,,,"656.000000","9505.000000",,,,,,,,,,,"3771.000000","639.000000","471.000000","599.000000","855.000000","793.000000","892.000000","0.000000","0.000000","0.000000","531.000000","373.000000","479.000000","684.000000","573.000000","682.000000","160.000000","6000.000000",,"8961274.000000",,,,, +"11975.000000","52.735000","11975.000000","52.735000","11975.000000","52.735000",,,,,,,,,,,,,,"143.000000","17900.500000","16196.000000","52.000000","17900.500000","17900.500000",,,,,,,,,,,"6799292.000000","8324876.000000","478888.000000","0.000000","68391708.000000","0.000000","89429052.000000",,"3778240.000000","24993660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000","8324876.000000","68391708.000000","89429052.000000","3778240.000000","24993660.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540756.000000",,,,,,,,"2303.000000","17158.000000",,,,,,,,,,,"3840.000000","635.000000","485.000000","555.000000","855.000000","793.000000","793.000000","0.000000","0.000000","0.000000","527.000000","398.000000","460.000000","682.000000","573.000000","644.000000","160.000000","6000.000000",,"8961294.000000",,,,, +"12465.000000","53.500000","12465.000000","53.500000","12465.000000","53.500000",,,,,,,,,,,,,,"87.000000","5461.500000","5426.000000","46.000000","5461.500000","5461.500000",,,,,,,,,,,"6911708.000000","8437288.000000","478888.000000","0.000000","68392648.000000","0.000000","89436608.000000",,"3778240.000000","24998892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000","8437288.000000","68392648.000000","89436608.000000","3778240.000000","24998892.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19548416.000000",,,,,,,,"178.000000","5231.000000",,,,,,,,,,,"3843.000000","627.000000","510.000000","536.000000","852.000000","793.000000","774.000000","0.000000","7.000000","0.000000","521.000000","421.000000","450.000000","674.000000","573.000000","635.000000","160.000000","6000.000000",,"8961314.000000",,,,, +"13378.000000","54.930000","13378.000000","54.930000","13378.000000","54.930000",,,,,,,,,,,,,,"77.000000","3794.500000","3453.000000","33.000000","3794.500000","3794.500000",,,,,,,,,,,"6618012.000000","8143596.000000","478888.000000","0.000000","68396768.000000","0.000000","89436516.000000",,"3778240.000000","25043612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000","8143596.000000","68396768.000000","89436516.000000","3778240.000000","25043612.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19539892.000000",,,,,,,,"133.000000","3925.000000",,,,,,,,,,,"3915.000000","617.000000","500.000000","527.000000","806.000000","600.000000","774.000000","0.000000","7.000000","0.000000","514.000000","438.000000","445.000000","656.000000","506.000000","635.000000","160.000000","6000.000000",,"8961334.000000",,,,, +"14055.000000","55.990000","14055.000000","55.990000","14055.000000","55.990000",,,,,,,,,,,,,,"108.000000","8475.000000","8030.000000","15.000000","8475.000000","8475.000000",,,,,,,,,,,"6219556.000000","7710812.000000","478888.000000","0.000000","68395340.000000","0.000000","89436516.000000",,"3778240.000000","25050556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000","7710812.000000","68395340.000000","89436516.000000","3778240.000000","25050556.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19546144.000000",,,,,,,,"582.000000","8229.000000",,,,,,,,,,,"3988.000000","615.000000","525.000000","520.000000","806.000000","633.000000","765.000000","0.000000","7.000000","0.000000","512.000000","456.000000","438.000000","656.000000","538.000000","630.000000","160.000000","6000.000000",,"8961354.000000",,,,, +"12909.000000","54.195000","12909.000000","54.195000","12909.000000","54.195000",,,,,,,,,,,,,,"76.000000","5306.500000","5227.000000","9.000000","5306.500000","5306.500000",,,,,,,,,,,"6155520.000000","7708552.000000","478888.000000","0.000000","68396572.000000","0.000000","89436548.000000",,"3778240.000000","25053348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000","7708552.000000","68396572.000000","89436548.000000","3778240.000000","25053348.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19541104.000000",,,,,,,,"209.000000","5100.000000",,,,,,,,,,,"3812.000000","607.000000","531.000000","508.000000","793.000000","633.000000","765.000000","0.000000","0.000000","0.000000","508.000000","466.000000","429.000000","647.000000","538.000000","583.000000","160.000000","6000.000000",,"8961374.000000",,,,, +"11021.000000","51.230000","11021.000000","51.230000","11021.000000","51.230000",,,,,,,,,,,,,,"44.000000","4459.000000","4415.000000","6.000000","4459.000000","4459.000000",,,,,,,,,,,"5673192.000000","7813436.000000","478888.000000","0.000000","68382116.000000","0.000000","89436568.000000",,"3778240.000000","25058984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000","7813436.000000","68382116.000000","89436568.000000","3778240.000000","25058984.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19551236.000000",,,,,,,,"121.000000",,,,,,,,,,,,"3772.000000","599.000000","495.000000","482.000000","793.000000","633.000000","644.000000","0.000000","0.000000","0.000000","503.000000","443.000000","413.000000","644.000000","538.000000","525.000000","160.000000","6000.000000",,"8961394.000000",,,,, +"11680.000000","52.265000","11680.000000","52.265000","11680.000000","52.265000",,,,,,,,,,,,,,"56.000000","5561.500000","5537.000000","65.000000","5561.500000","5561.500000",,,,,,,,,,,"5783788.000000","8175688.000000","478888.000000","0.000000","68390656.000000","0.000000","89436568.000000",,"3778240.000000","25105408.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000","8175688.000000","68390656.000000","89436568.000000","3778240.000000","25105408.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19538832.000000",,,,,,,,"171.000000","5358.000000",,,,,,,,,,,"4008.000000","593.000000","452.000000","473.000000","774.000000","579.000000","644.000000","0.000000","0.000000","0.000000","498.000000","419.000000","408.000000","640.000000","487.000000","515.000000","160.000000","6000.000000",,"8961414.000000",,,,, +"12237.000000","53.140000","12237.000000","53.140000","12237.000000","53.140000",,,,,,,,,,,,,,"123.000000","6875.500000","6623.000000","129.000000","6875.500000","6875.500000",,,,,,,,,,,"5868772.000000","8260672.000000","478888.000000","0.000000","68385152.000000","0.000000","89437664.000000",,"3778240.000000","25061400.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000","8260672.000000","68385152.000000","89437664.000000","3778240.000000","25061400.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19540148.000000",,,,,,,,"187.000000","6816.000000",,,,,,,,,,,"3945.000000","588.000000","441.000000","462.000000","774.000000","579.000000","623.000000","0.000000","0.000000","0.000000","493.000000","412.000000","400.000000","636.000000","487.000000","505.000000","160.000000","6000.000000",,"8961434.000000",,,,, +"10626.000000","50.605000","10626.000000","50.605000","10626.000000","50.605000",,,,,,,,,,,,,,"46.000000","4849.000000","4530.000000","68.000000","4849.000000","4849.000000",,,,,,,,,,,"6007060.000000","8000504.000000","478888.000000","0.000000","68362384.000000","0.000000","89429152.000000",,"3778240.000000","24903168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000","8000504.000000","68362384.000000","89429152.000000","3778240.000000","24903168.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19550020.000000",,,,,,,,"127.000000","4994.000000",,,,,,,,,,,"4004.000000","581.000000","427.000000","460.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","488.000000","403.000000","401.000000","635.000000","464.000000","505.000000","160.000000","6000.000000",,"8961454.000000",,,,, +"11575.000000","52.080000","11575.000000","52.080000","11575.000000","52.080000",,,,,,,,,,,,,,"48.000000","6997.000000","6565.000000","35.000000","6997.000000","6997.000000",,,,,,,,,,,"6078528.000000","8106304.000000","478888.000000","0.000000","68349660.000000","0.000000","89429152.000000",,"3778240.000000","24913816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000","8106304.000000","68349660.000000","89429152.000000","3778240.000000","24913816.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558168.000000",,,,,,,,"205.000000","7174.000000",,,,,,,,,,,"3919.000000","577.000000","420.000000","458.000000","774.000000","503.000000","600.000000","0.000000","0.000000","0.000000","485.000000","399.000000","403.000000","635.000000","458.000000","505.000000","160.000000","6000.000000",,"8961474.000000",,,,, +"10217.000000","49.950000","10217.000000","49.950000","10217.000000","49.950000",,,,,,,,,,,,,,"56.000000","6941.500000","5946.000000","121.000000","6941.500000","6941.500000",,,,,,,,,,,"6119324.000000","8115064.000000","478888.000000","0.000000","68337052.000000","0.000000","89429152.000000",,"3778240.000000","24968836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000","8115064.000000","68337052.000000","89429152.000000","3778240.000000","24968836.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567736.000000",,,,,,,,"239.000000","7640.000000",,,,,,,,,,,"3777.000000","571.000000","406.000000","459.000000","774.000000","486.000000","600.000000","0.000000","0.000000","0.000000","481.000000","385.000000","405.000000","635.000000","450.000000","505.000000","160.000000","6000.000000",,"8961494.000000",,,,, +"10785.000000","50.835000","10785.000000","50.835000","10785.000000","50.835000",,,,,,,,,,,,,,"57.000000","6043.500000","5484.000000","34.000000","6043.500000","6043.500000",,,,,,,,,,,"5699896.000000","7464944.000000","478888.000000","0.000000","68323340.000000","0.000000","89429152.000000",,"3778240.000000","25102636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000","7464944.000000","68323340.000000","89429152.000000","3778240.000000","25102636.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577388.000000",,,,,,,,"175.000000","6369.000000",,,,,,,,,,,"3876.000000","563.000000","402.000000","459.000000","774.000000","453.000000","600.000000","0.000000","0.000000","0.000000","475.000000","382.000000","408.000000","633.000000","419.000000","505.000000","160.000000","6000.000000",,"8961514.000000",,,,, +"10851.000000","50.930000","10851.000000","50.930000","10851.000000","50.930000",,,,,,,,,,,,,,"411.000000","6938.000000","5950.000000","27.000000","6938.000000","6938.000000",,,,,,,,,,,"5518772.000000","7178964.000000","478888.000000","0.000000","68311168.000000","0.000000","89429152.000000",,"3778240.000000","25113336.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000","7178964.000000","68311168.000000","89429152.000000","3778240.000000","25113336.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585408.000000",,,,,,,,"561.000000","6953.000000",,,,,,,,,,,"3791.000000","560.000000","413.000000","459.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","472.000000","378.000000","410.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961534.000000",,,,, +"10770.000000","50.810000","10770.000000","50.810000","10770.000000","50.810000",,,,,,,,,,,,,,"91.000000","6921.000000","5576.000000","24.000000","6921.000000","6921.000000",,,,,,,,,,,"5404996.000000","7128108.000000","478888.000000","0.000000","68329580.000000","0.000000","89429000.000000",,"3778240.000000","25150188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000","7128108.000000","68329580.000000","89429000.000000","3778240.000000","25150188.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577884.000000",,,,,,,,"347.000000","7827.000000",,,,,,,,,,,"3772.000000","556.000000","418.000000","461.000000","774.000000","565.000000","579.000000","0.000000","0.000000","0.000000","469.000000","378.000000","413.000000","633.000000","426.000000","505.000000","160.000000","6000.000000",,"8961554.000000",,,,, +"10438.000000","50.290000","10438.000000","50.290000","10438.000000","50.290000",,,,,,,,,,,,,,"142.000000","13981.500000","13246.000000","29.000000","13981.500000","13981.500000",,,,,,,,,,,"5300084.000000","6960284.000000","478888.000000","0.000000","68323544.000000","0.000000","89428952.000000",,"3778240.000000","25139824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000","6960284.000000","68323544.000000","89428952.000000","3778240.000000","25139824.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19565276.000000",,,,,,,,"268.000000","14307.000000",,,,,,,,,,,"3754.000000","549.000000","412.000000","447.000000","768.000000","565.000000","573.000000","0.000000","0.000000","0.000000","464.000000","374.000000","408.000000","633.000000","458.000000","487.000000","160.000000","6000.000000",,"8961574.000000",,,,, +"17217.000000","60.910000","17217.000000","60.910000","17217.000000","60.910000",,,,,,,,,,,,,,"94.000000","10711.000000","10449.000000","34.000000","10711.000000","10711.000000",,,,,,,,,,,"5272440.000000","6988876.000000","478888.000000","0.000000","68328384.000000","0.000000","89428952.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000","6988876.000000","68328384.000000","89428952.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19558088.000000",,,,,,,,"219.000000","10659.000000",,,,,,,,,,,"4126.000000","549.000000","509.000000","464.000000","774.000000","977.000000","600.000000","0.000000","0.000000","0.000000","465.000000","443.000000","419.000000","635.000000","766.000000","506.000000","160.000000","6000.000000",,"8961594.000000",,,,, +"15256.000000","57.830000","15256.000000","57.830000","15256.000000","57.830000",,,,,,,,,,,,,,"79.000000","10194.500000","9698.000000","42.000000","10194.500000","10194.500000",,,,,,,,,,,"5261380.000000","6957992.000000","478888.000000","0.000000","68320268.000000","0.000000","89428952.000000",,"3778240.000000","25156764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000","6957992.000000","68320268.000000","89428952.000000","3778240.000000","25156764.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19567224.000000",,,,,,,,"206.000000","10404.000000",,,,,,,,,,,"3996.000000","551.000000","612.000000","482.000000","793.000000","977.000000","686.000000","0.000000","0.000000","0.000000","465.000000","497.000000","428.000000","635.000000","766.000000","534.000000","160.000000","6000.000000",,"8961614.000000",,,,, +"14354.000000","56.415000","14354.000000","56.415000","14354.000000","56.415000",,,,,,,,,,,,,,"43.000000","5034.000000","5085.000000","8.000000","5034.000000","5034.000000",,,,,,,,,,,"4723744.000000","6391760.000000","478888.000000","0.000000","68308516.000000","0.000000","89429896.000000",,"3778240.000000","25161856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000","6391760.000000","68308516.000000","89429896.000000","3778240.000000","25161856.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577324.000000",,,,,,,,"139.000000","4801.000000",,,,,,,,,,,"3963.000000","552.000000","719.000000","491.000000","793.000000","977.000000","694.000000","0.000000","0.000000","0.000000","464.000000","555.000000","431.000000","635.000000","766.000000","538.000000","160.000000","6000.000000",,"8961634.000000",,,,, +"14148.000000","56.085000","14148.000000","56.085000","14148.000000","56.085000",,,,,,,,,,,,,,"72.000000","6442.500000","6059.000000","5.000000","6442.500000","6442.500000",,,,,,,,,,,"4806892.000000","6286164.000000","478888.000000","0.000000","68297484.000000","0.000000","89429164.000000",,"3778240.000000","25164884.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000","6286164.000000","68297484.000000","89429164.000000","3778240.000000","25164884.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19577568.000000",,,,,,,,"514.000000","6239.000000",,,,,,,,,,,"3911.000000","546.000000","655.000000","490.000000","765.000000","881.000000","694.000000","0.000000","0.000000","0.000000","462.000000","514.000000","431.000000","617.000000","617.000000","534.000000","160.000000","6000.000000",,"8961654.000000",,,,, +"16438.000000","59.680000","16438.000000","59.680000","16438.000000","59.680000",,,,,,,,,,,,,,"47.000000","6811.000000","6410.000000","6.000000","6811.000000","6811.000000",,,,,,,,,,,"4745128.000000","6224396.000000","478888.000000","0.000000","68310372.000000","0.000000","89429164.000000",,"3778240.000000","25105640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000","6224396.000000","68310372.000000","89429164.000000","3778240.000000","25105640.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19560752.000000",,,,,,,,"151.000000","7014.000000",,,,,,,,,,,"4181.000000","547.000000","648.000000","505.000000","753.000000","753.000000","731.000000","0.000000","0.000000","0.000000","463.000000","532.000000","441.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961674.000000",,,,, +"13816.000000","55.565000","13816.000000","55.565000","13816.000000","55.565000",,,,,,,,,,,,,,"60.000000","6851.000000","6758.000000","6.000000","6851.000000","6851.000000",,,,,,,,,,,"4891856.000000","6350156.000000","478888.000000","0.000000","68297076.000000","0.000000","89429092.000000",,"3778240.000000","25031504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000","6350156.000000","68297076.000000","89429092.000000","3778240.000000","25031504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569372.000000",,,,,,,,"156.000000","6727.000000",,,,,,,,,,,"4054.000000","549.000000","634.000000","519.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","463.000000","524.000000","447.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961694.000000",,,,, +"12163.000000","52.970000","12163.000000","52.970000","12163.000000","52.970000",,,,,,,,,,,,,,"58.000000","6849.000000","6388.000000","14.000000","6849.000000","6849.000000",,,,,,,,,,,"5394232.000000","6768644.000000","478888.000000","0.000000","68283044.000000","0.000000","89429092.000000",,"3778240.000000","25044752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000","6768644.000000","68283044.000000","89429092.000000","3778240.000000","25044752.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579184.000000",,,,,,,,"175.000000","7075.000000",,,,,,,,,,,"3795.000000","548.000000","622.000000","524.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","462.000000","507.000000","448.000000","616.000000","616.000000","613.000000","160.000000","6000.000000",,"8961714.000000",,,,, +"11954.000000","52.650000","11954.000000","52.650000","11954.000000","52.650000",,,,,,,,,,,,,,"101.000000","6733.000000","5921.000000","16.000000","6733.000000","6733.000000",,,,,,,,,,,"5813580.000000","7136136.000000","478888.000000","0.000000","68292920.000000","0.000000","89429008.000000",,"3778240.000000","25104392.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000","7136136.000000","68292920.000000","89429008.000000","3778240.000000","25104392.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19571948.000000",,,,,,,,"261.000000","7181.000000",,,,,,,,,,,"3759.000000","547.000000","550.000000","527.000000","765.000000","784.000000","753.000000","0.000000","0.000000","0.000000","460.000000","446.000000","448.000000","616.000000","591.000000","613.000000","160.000000","6000.000000",,"8961734.000000",,,,, +"11429.000000","51.820000","11429.000000","51.820000","11429.000000","51.820000",,,,,,,,,,,,,,"78.000000","4938.000000","4154.000000","28.000000","4938.000000","4938.000000",,,,,,,,,,,"5540952.000000","7157104.000000","478888.000000","0.000000","68286288.000000","0.000000","89429008.000000",,"3778240.000000","25086900.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000","7157104.000000","68286288.000000","89429008.000000","3778240.000000","25086900.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566688.000000",,,,,,,,"230.000000","5414.000000",,,,,,,,,,,"3807.000000","547.000000","494.000000","532.000000","765.000000","590.000000","753.000000","0.000000","0.000000","0.000000","461.000000","418.000000","450.000000","616.000000","469.000000","613.000000","160.000000","6000.000000",,"8961754.000000",,,,, +"12151.000000","52.955000","12151.000000","52.955000","12151.000000","52.955000",,,,,,,,,,,,,,"52.000000","5558.500000","5175.000000","95.000000","5558.500000","5558.500000",,,,,,,,,,,"5422744.000000","6990276.000000","478888.000000","0.000000","68292980.000000","0.000000","89429008.000000",,"3778240.000000","25078592.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000","6990276.000000","68292980.000000","89429008.000000","3778240.000000","25078592.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19555208.000000",,,,,,,,"157.000000","5733.000000",,,,,,,,,,,"3864.000000","546.000000","490.000000","538.000000","765.000000","576.000000","753.000000","0.000000","0.000000","0.000000","460.000000","421.000000","453.000000","616.000000","495.000000","613.000000","160.000000","6000.000000",,"8961774.000000",,,,, +"13717.000000","55.400000","13717.000000","55.400000","13717.000000","55.400000",,,,,,,,,,,,,,"70.000000","5832.000000","5776.000000","13.000000","5832.000000","5832.000000",,,,,,,,,,,"5348764.000000","7032220.000000","478888.000000","0.000000","68277392.000000","0.000000","89429008.000000",,"3778240.000000","25069720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000","7032220.000000","68277392.000000","89429008.000000","3778240.000000","25069720.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19564228.000000",,,,,,,,"178.000000","5640.000000",,,,,,,,,,,"3894.000000","547.000000","514.000000","548.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","439.000000","459.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961794.000000",,,,, +"13393.000000","54.890000","13393.000000","54.890000","13393.000000","54.890000",,,,,,,,,,,,,,"59.000000","6284.500000","5915.000000","20.000000","6284.500000","6284.500000",,,,,,,,,,,"5222788.000000","6927216.000000","478888.000000","0.000000","68269568.000000","0.000000","89428860.000000",,"3778240.000000","25108152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000","6927216.000000","68269568.000000","89428860.000000","3778240.000000","25108152.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19568428.000000",,,,,,,,"168.000000","6426.000000",,,,,,,,,,,"4074.000000","547.000000","541.000000","560.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","461.000000","465.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961814.000000",,,,, +"11555.000000","52.005000","11555.000000","52.005000","11555.000000","52.005000",,,,,,,,,,,,,,"328.000000","4211.500000","3861.000000","30.000000","4211.500000","4211.500000",,,,,,,,,,,"4921708.000000","6821556.000000","478888.000000","0.000000","68255140.000000","0.000000","89429000.000000",,"3778240.000000","25122004.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000","6821556.000000","68255140.000000","89429000.000000","3778240.000000","25122004.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579700.000000",,,,,,,,"118.000000","4115.000000",,,,,,,,,,,"4096.000000","543.000000","518.000000","559.000000","768.000000","788.000000","784.000000","0.000000","0.000000","0.000000","458.000000","448.000000","467.000000","616.000000","549.000000","613.000000","160.000000","6000.000000",,"8961835.000000",,,,, +"10549.000000","50.430000","10549.000000","50.430000","10549.000000","50.430000",,,,,,,,,,,,,,"203.000000","4260.500000","3723.000000","4.000000","4260.500000","4260.500000",,,,,,,,,,,"4911800.000000","6821556.000000","478888.000000","0.000000","68250944.000000","0.000000","89429000.000000",,"3778240.000000","25139316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000","6821556.000000","68250944.000000","89429000.000000","3778240.000000","25139316.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19587000.000000",,,,,,,,"466.000000","4128.000000",,,,,,,,,,,"3718.000000","541.000000","496.000000","564.000000","768.000000","606.000000","784.000000","0.000000","0.000000","0.000000","456.000000","432.000000","469.000000","613.000000","542.000000","613.000000","160.000000","6000.000000",,"8961854.000000",,,,, +"15120.000000","57.585000","15120.000000","57.585000","15120.000000","57.585000",,,,,,,,,,,,,,"91.000000","8647.500000","8528.000000","8.000000","8647.500000","8647.500000",,,,,,,,,,,"5247348.000000","6947388.000000","478888.000000","0.000000","68242072.000000","0.000000","89429000.000000",,"3778240.000000","25170684.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000","6947388.000000","68242072.000000","89429000.000000","3778240.000000","25170684.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19594992.000000",,,,,,,,"285.000000","8390.000000",,,,,,,,,,,"3908.000000","544.000000","541.000000","586.000000","784.000000","824.000000","795.000000","0.000000","0.000000","0.000000","456.000000","442.000000","481.000000","616.000000","637.000000","616.000000","160.000000","6000.000000",,"8961874.000000",,,,, +"11168.000000","51.395000","11168.000000","51.395000","11168.000000","51.395000",,,,,,,,,,,,,,"135.000000","8788.000000","8418.000000","22.000000","8788.000000","8788.000000",,,,,,,,,,,"5115780.000000","6466920.000000","478888.000000","0.000000","68249708.000000","0.000000","89429000.000000",,"3778240.000000","25163700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000","6466920.000000","68249708.000000","89429000.000000","3778240.000000","25163700.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586292.000000",,,,,,,,"169.000000","8853.000000",,,,,,,,,,,"3877.000000","528.000000","538.000000","564.000000","765.000000","824.000000","784.000000","0.000000","0.000000","0.000000","449.000000","447.000000","467.000000","603.000000","637.000000","606.000000","160.000000","6000.000000",,"8961894.000000",,,,, +"13341.000000","54.800000","13341.000000","54.800000","13341.000000","54.800000",,,,,,,,,,,,,,"111.000000","5116.500000","5070.000000","26.000000","5116.500000","5116.500000",,,,,,,,,,,"5073836.000000","6445948.000000","478888.000000","0.000000","68256536.000000","0.000000","89429000.000000",,"3778240.000000","25091876.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000","6445948.000000","68256536.000000","89429000.000000","3778240.000000","25091876.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19586856.000000",,,,,,,,"165.000000","4886.000000",,,,,,,,,,,"3801.000000","523.000000","546.000000","551.000000","753.000000","824.000000","753.000000","0.000000","0.000000","0.000000","446.000000","453.000000","460.000000","597.000000","637.000000","591.000000","160.000000","6000.000000",,"8961914.000000",,,,, +"12151.000000","52.935000","12151.000000","52.935000","12151.000000","52.935000",,,,,,,,,,,,,,"44.000000","5187.000000","4969.000000","30.000000","5187.000000","5187.000000",,,,,,,,,,,"4969224.000000","6194536.000000","478888.000000","0.000000","68251412.000000","0.000000","89429248.000000",,"3778240.000000","25131724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000","6194536.000000","68251412.000000","89429248.000000","3778240.000000","25131724.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19585768.000000",,,,,,,,"124.000000","5235.000000",,,,,,,,,,,"3852.000000","519.000000","485.000000","539.000000","731.000000","601.000000","753.000000","0.000000","0.000000","0.000000","444.000000","424.000000","455.000000","591.000000","500.000000","591.000000","160.000000","6000.000000",,"8961934.000000",,,,, +"13564.000000","55.150000","13564.000000","55.150000","13564.000000","55.150000",,,,,,,,,,,,,,"89.000000","7838.000000","7097.000000","12.000000","7838.000000","7838.000000",,,,,,,,,,,"5396032.000000","6495520.000000","478888.000000","0.000000","68256308.000000","0.000000","89429012.000000",,"3778240.000000","25123756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000","6495520.000000","68256308.000000","89429012.000000","3778240.000000","25123756.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19574488.000000",,,,,,,,"487.000000","8002.000000",,,,,,,,,,,"3791.000000","516.000000","518.000000","537.000000","723.000000","601.000000","753.000000","0.000000","0.000000","0.000000","441.000000","446.000000","454.000000","583.000000","498.000000","591.000000","160.000000","6000.000000",,"8961954.000000",,,,, +"12987.000000","54.240000","12987.000000","54.240000","12987.000000","54.240000",,,,,,,,,,,,,,"698.000000","9536.500000","7676.000000","5.000000","9536.500000","9536.500000",,,,,,,,,,,"5521864.000000","6800184.000000","478888.000000","0.000000","68243504.000000","0.000000","89429012.000000",,"3778240.000000","25088872.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000","6800184.000000","68243504.000000","89429012.000000","3778240.000000","25088872.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579808.000000",,,,,,,,"1071.000000","9626.000000",,,,,,,,,,,"3847.000000","514.000000","535.000000","528.000000","723.000000","607.000000","607.000000","0.000000","0.000000","0.000000","438.000000","459.000000","446.000000","554.000000","505.000000","516.000000","160.000000","6000.000000",,"8961974.000000",,,,, +"12345.000000","53.245000","12345.000000","53.245000","12345.000000","53.245000",,,,,,,,,,,,,,"62.000000","5982.500000","5751.000000","6.000000","5982.500000","5982.500000",,,,,,,,,,,"4913836.000000","6443808.000000","478888.000000","0.000000","68262384.000000","0.000000","89429152.000000",,"3778240.000000","25080504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000","6443808.000000","68262384.000000","89429152.000000","3778240.000000","25080504.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19569020.000000",,,,,,,,"187.000000","5964.000000",,,,,,,,,,,"3760.000000","507.000000","532.000000","519.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","434.000000","453.000000","440.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8961994.000000",,,,, +"11180.000000","51.420000","11180.000000","51.420000","11180.000000","51.420000",,,,,,,,,,,,,,"49.000000","5273.500000","4930.000000","2.000000","5273.500000","5273.500000",,,,,,,,,,,"4667872.000000","6316988.000000","478888.000000","0.000000","68266012.000000","0.000000","89429104.000000",,"3778240.000000","25075136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000","6316988.000000","68266012.000000","89429104.000000","3778240.000000","25075136.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19559640.000000",,,,,,,,"112.000000","5455.000000",,,,,,,,,,,"3944.000000","503.000000","503.000000","513.000000","689.000000","607.000000","606.000000","0.000000","0.000000","0.000000","432.000000","430.000000","438.000000","538.000000","505.000000","505.000000","160.000000","6000.000000",,"8962014.000000",,,,, +"12072.000000","52.815000","12072.000000","52.815000","12072.000000","52.815000",,,,,,,,,,,,,,"38.000000","6997.000000","5571.000000","3.000000","6997.000000","6997.000000",,,,,,,,,,,"4604960.000000","6137004.000000","478888.000000","0.000000","68254152.000000","0.000000","89429104.000000",,"3778240.000000","25011436.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000","6137004.000000","68254152.000000","89429104.000000","3778240.000000","25011436.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19566504.000000",,,,,,,,"2804.000000","5580.000000",,,,,,,,,,,"3845.000000","501.000000","481.000000","514.000000","667.000000","563.000000","606.000000","0.000000","0.000000","0.000000","429.000000","417.000000","440.000000","518.000000","487.000000","505.000000","160.000000","6000.000000",,"8962034.000000",,,,, +"12359.000000","53.260000","12359.000000","53.260000","12359.000000","53.260000",,,,,,,,,,,,,,"181.000000","7008.000000","6826.000000","3.000000","7008.000000","7008.000000",,,,,,,,,,,"5003232.000000","6493336.000000","478888.000000","0.000000","68242252.000000","0.000000","89428920.000000",,"3778240.000000","25008832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000","6493336.000000","68242252.000000","89428920.000000","3778240.000000","25008832.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19575408.000000",,,,,,,,"5560.000000",,,,,,,,,,,,"3929.000000","502.000000","476.000000","515.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","418.000000","441.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962054.000000",,,,, +"10899.000000","50.985000","10899.000000","50.985000","10899.000000","50.985000",,,,,,,,,,,,,,"51.000000","6882.000000","5312.000000","53.000000","6882.000000","6882.000000",,,,,,,,,,,"5191912.000000","6619108.000000","478888.000000","0.000000","68272596.000000","0.000000","89428860.000000",,"3778240.000000","25001632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000","6619108.000000","68272596.000000","89428860.000000","3778240.000000","25001632.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19582192.000000",,,,,,,,"2783.000000","5616.000000",,,,,,,,,,,"3784.000000","502.000000","473.000000","510.000000","667.000000","603.000000","606.000000","0.000000","0.000000","0.000000","431.000000","417.000000","438.000000","518.000000","506.000000","506.000000","160.000000","6000.000000",,"8962074.000000",,,,, +"12069.000000","52.820000","12069.000000","52.820000","12069.000000","52.820000",,,,,,,,,,,,,,"49.000000","6256.000000","6022.000000","11.000000","6256.000000","6256.000000",,,,,,,,,,,"5094924.000000","6578568.000000","478888.000000","0.000000","68277556.000000","0.000000","89429112.000000",,"3778240.000000","24998320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000","6578568.000000","68277556.000000","89429112.000000","3778240.000000","24998320.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19579672.000000",,,,,,,,"161.000000","6278.000000",,,,,,,,,,,"3888.000000","505.000000","478.000000","507.000000","667.000000","603.000000","603.000000","0.000000","0.000000","0.000000","434.000000","423.000000","437.000000","518.000000","507.000000","506.000000","160.000000","6000.000000",,"8962094.000000",,,,, +"10785.000000","50.805000","10785.000000","50.805000","10785.000000","50.805000",,,,,,,,,,,,,,"82.000000","8109.000000","7963.000000","190.000000","8109.000000","8109.000000",,,,,,,,,,,"5073952.000000","6725364.000000","478888.000000","0.000000","68266380.000000","0.000000","89429112.000000",,"3778240.000000","25106736.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000","6725364.000000","68266380.000000","89429112.000000","3778240.000000","25106736.000000","1429420.000000","1630920.000000",,,,"10895476.000000","19581940.000000",,,,,,,,"200.000000","7971.000000",,,,,,,,,,,"3923.000000","505.000000","441.000000","495.000000","667.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","397.000000","427.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962114.000000",,,,, +"10809.000000","50.845000","10809.000000","50.845000","10809.000000","50.845000",,,,,,,,,,,,,,"55.000000","5568.500000","5230.000000","34.000000","5568.500000","5568.500000",,,,,,,,,,,"4739348.000000","6411932.000000","478888.000000","0.000000","68277576.000000","0.000000","89434064.000000",,"3778240.000000","25097432.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000","6411932.000000","68277576.000000","89434064.000000","3778240.000000","25097432.000000","1429420.000000","1630920.000000",,,,"10890524.000000","19570024.000000",,,,,,,,"169.000000","5682.000000",,,,,,,,,,,"3797.000000","504.000000","439.000000","494.000000","656.000000","599.000000","601.000000","0.000000","0.000000","0.000000","434.000000","391.000000","426.000000","518.000000","507.000000","505.000000","160.000000","6000.000000",,"8962134.000000",,,,, +"10246.000000","49.965000","10246.000000","49.965000","10246.000000","49.965000",,,,,,,,,,,,,,"343.000000","4539.500000","4272.000000","64.000000","4539.500000","4539.500000",,,,,,,,,,,"4669760.000000","6360144.000000","478888.000000","0.000000","68277524.000000","0.000000","89443808.000000",,"3778240.000000","25111424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000","6360144.000000","68277524.000000","89443808.000000","3778240.000000","25111424.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19577400.000000",,,,,,,,"406.000000","4057.000000",,,,,,,,,,,"3688.000000","504.000000","399.000000","488.000000","656.000000","515.000000","601.000000","0.000000","0.000000","0.000000","435.000000","361.000000","422.000000","518.000000","449.000000","505.000000","160.000000","6000.000000",,"8962154.000000",,,,, +"14508.000000","56.640000","14508.000000","56.640000","14508.000000","56.640000",,,,,,,,,,,,,,"65.000000","7258.000000","6842.000000","30.000000","7258.000000","7258.000000",,,,,,,,,,,"4522960.000000","5919744.000000","478888.000000","0.000000","68276188.000000","0.000000","89443808.000000",,"3778240.000000","25110068.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000","5919744.000000","68276188.000000","89443808.000000","3778240.000000","25110068.000000","1429420.000000","1630920.000000",,,,"10890252.000000","19572572.000000",,,,,,,,"181.000000","7428.000000",,,,,,,,,,,"3889.000000","505.000000","475.000000","482.000000","656.000000","863.000000","599.000000","0.000000","0.000000","0.000000","437.000000","418.000000","422.000000","518.000000","688.000000","500.000000","160.000000","6000.000000",,"8962174.000000",,,,, +"16375.000000","59.565000","16375.000000","59.565000","16375.000000","59.565000",,,,,,,,,,,,,,"55.000000","7927.000000","7812.000000","7.000000","7927.000000","7927.000000",,,,,,,,,,,"4440360.000000","6110168.000000","478888.000000","0.000000","68274216.000000","0.000000","89451504.000000",,"3778240.000000","25204356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000","6110168.000000","68274216.000000","89451504.000000","3778240.000000","25204356.000000","1429420.000000","1630920.000000",,,,"10882444.000000","19578888.000000",,,,,,,,"179.000000","7806.000000",,,,,,,,,,,"4104.000000","512.000000","608.000000","508.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","440.000000","487.000000","434.000000","538.000000","709.000000","507.000000","160.000000","6000.000000",,"8962194.000000",,,,, +"13316.000000","54.785000","13316.000000","54.785000","13316.000000","54.785000",,,,,,,,,,,,,,"261.000000","8756.500000","6792.000000","31.000000","8756.500000","8756.500000",,,,,,,,,,,"4866944.000000","6475120.000000","478888.000000","0.000000","68300212.000000","0.000000","89488184.000000",,"3778240.000000","25207012.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000","6475120.000000","68300212.000000","89488184.000000","3778240.000000","25207012.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592280.000000",,,,,,,,"1493.000000","8965.000000",,,,,,,,,,,"3982.000000","514.000000","653.000000","509.000000","694.000000","1124.000000","607.000000","0.000000","0.000000","0.000000","442.000000","527.000000","437.000000","538.000000","709.000000","524.000000","160.000000","6000.000000",,"8962214.000000",,,,, +"14104.000000","56.015000","14104.000000","56.015000","14104.000000","56.015000",,,,,,,,,,,,,,"114.000000","6854.500000","6093.000000","3.000000","6854.500000","6854.500000",,,,,,,,,,,"5307348.000000","6831644.000000","478888.000000","0.000000","68292320.000000","0.000000","89488184.000000",,"3778240.000000","25213964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000","6831644.000000","68292320.000000","89488184.000000","3778240.000000","25213964.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19598676.000000",,,,,,,,"219.000000","7283.000000",,,,,,,,,,,"3985.000000","515.000000","657.000000","516.000000","703.000000","1124.000000","633.000000","0.000000","0.000000","0.000000","442.000000","516.000000","441.000000","542.000000","709.000000","525.000000","160.000000","6000.000000",,"8962234.000000",,,,, +"14397.000000","56.470000","14397.000000","56.470000","14397.000000","56.470000",,,,,,,,,,,,,,"51.000000","7541.500000","7204.000000","5.000000","7541.500000","7541.500000",,,,,,,,,,,"5139572.000000","6873588.000000","478888.000000","0.000000","68284004.000000","0.000000","89488184.000000",,"3778240.000000","25217692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000","6873588.000000","68284004.000000","89488184.000000","3778240.000000","25217692.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19606476.000000",,,,,,,,"508.000000","7319.000000",,,,,,,,,,,"3845.000000","515.000000","563.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","442.000000","485.000000","442.000000","542.000000","556.000000","536.000000","160.000000","6000.000000",,"8962254.000000",,,,, +"14179.000000","56.135000","14179.000000","56.135000","14179.000000","56.135000",,,,,,,,,,,,,,"1047.000000","6638.000000","5384.000000","4.000000","6638.000000","6638.000000",,,,,,,,,,,"5062308.000000","7020940.000000","478888.000000","0.000000","68293804.000000","0.000000","89488184.000000",,"3778240.000000","25235524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000","7020940.000000","68293804.000000","89488184.000000","3778240.000000","25235524.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19597948.000000",,,,,,,,"1188.000000","5655.000000",,,,,,,,,,,"4074.000000","517.000000","576.000000","517.000000","703.000000","703.000000","633.000000","0.000000","0.000000","0.000000","444.000000","496.000000","445.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962274.000000",,,,, +"12487.000000","53.485000","12487.000000","53.485000","12487.000000","53.485000",,,,,,,,,,,,,,"1601.000000","8434.000000","6682.000000","4.000000","8434.000000","8434.000000",,,,,,,,,,,"4936476.000000","7083848.000000","478888.000000","0.000000","68295888.000000","0.000000","89488184.000000",,"3778240.000000","25211388.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000","7083848.000000","68295888.000000","89488184.000000","3778240.000000","25211388.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19592620.000000",,,,,,,,"1725.000000","6859.000000",,,,,,,,,,,"3940.000000","519.000000","548.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","445.000000","482.000000","446.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962294.000000",,,,, +"10970.000000","51.105000","10970.000000","51.105000","10970.000000","51.105000",,,,,,,,,,,,,,"56.000000","6236.500000","6020.000000","4.000000","6236.500000","6236.500000",,,,,,,,,,,"4978376.000000","6853120.000000","478888.000000","0.000000","68299296.000000","0.000000","89488136.000000",,"3778240.000000","25206076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000","6853120.000000","68299296.000000","89488136.000000","3778240.000000","25206076.000000","1429420.000000","1630920.000000",,,,"10845764.000000","19584476.000000",,,,,,,,"170.000000","6227.000000",,,,,,,,,,,"3736.000000","519.000000","512.000000","519.000000","703.000000","633.000000","633.000000","0.000000","0.000000","0.000000","444.000000","455.000000","447.000000","549.000000","581.000000","549.000000","160.000000","6000.000000",,"8962314.000000",,,,, +"10166.000000","49.840000","10166.000000","49.840000","10166.000000","49.840000",,,,,,,,,,,,,,"51.000000","5111.500000","4886.000000","6.000000","5111.500000","5111.500000",,,,,,,,,,,"4747472.000000","6299812.000000","478888.000000","0.000000","68282376.000000","0.000000","89484636.000000",,"3778240.000000","25177120.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000","6299812.000000","68282376.000000","89484636.000000","3778240.000000","25177120.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19594532.000000",,,,,,,,"147.000000","5139.000000",,,,,,,,,,,"3775.000000","518.000000","464.000000","514.000000","703.000000","601.000000","633.000000","0.000000","0.000000","0.000000","443.000000","401.000000","442.000000","549.000000","516.000000","549.000000","160.000000","6000.000000",,"8962334.000000",,,,, +"10004.000000","49.590000","10004.000000","49.590000","10004.000000","49.590000",,,,,,,,,,,,,,"36.000000","4308.000000","4090.000000","2.000000","4308.000000","4308.000000",,,,,,,,,,,"4369984.000000","5796488.000000","478888.000000","0.000000","68284036.000000","0.000000","89484636.000000",,"3778240.000000","25084596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000","5796488.000000","68284036.000000","89484636.000000","3778240.000000","25084596.000000","1429420.000000","1630920.000000",,,,"10849264.000000","19588960.000000",,,,,,,,"125.000000","4363.000000",,,,,,,,,,,"3740.000000","519.000000","422.000000","509.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","442.000000","363.000000","435.000000","549.000000","437.000000","549.000000","160.000000","6000.000000",,"8962354.000000",,,,, +"9902.000000","49.410000","9902.000000","49.410000","9902.000000","49.410000",,,,,,,,,,,,,,"47.000000","3860.000000","3645.000000","43.000000","3860.000000","3860.000000",,,,,,,,,,,"4489756.000000","5915436.000000","478888.000000","0.000000","68243272.000000","0.000000","89456948.000000",,"3778240.000000","25096880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000","5915436.000000","68243272.000000","89456948.000000","3778240.000000","25096880.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19598540.000000",,,,,,,,"137.000000","3890.000000",,,,,,,,,,,"3799.000000","518.000000","410.000000","506.000000","703.000000","562.000000","633.000000","0.000000","0.000000","0.000000","441.000000","350.000000","433.000000","549.000000","432.000000","549.000000","160.000000","6000.000000",,"8962374.000000",,,,, +"11067.000000","51.225000","11067.000000","51.225000","11067.000000","51.225000",,,,,,,,,,,,,,"129.000000","4789.000000","4641.000000","3.000000","4789.000000","4789.000000",,,,,,,,,,,"4944268.000000","6369948.000000","478888.000000","0.000000","68229968.000000","0.000000","89456948.000000",,"3778240.000000","25185764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000","6369948.000000","68229968.000000","89456948.000000","3778240.000000","25185764.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19606100.000000",,,,,,,,"124.000000","4684.000000",,,,,,,,,,,"3944.000000","519.000000","413.000000","501.000000","703.000000","511.000000","633.000000","0.000000","0.000000","0.000000","442.000000","365.000000","430.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962394.000000",,,,, +"10953.000000","51.040000","10953.000000","51.040000","10953.000000","51.040000",,,,,,,,,,,,,,"53.000000","5608.000000","5405.000000","16.000000","5608.000000","5608.000000",,,,,,,,,,,"5049124.000000","6475092.000000","478888.000000","0.000000","68214524.000000","0.000000","89456948.000000",,"3778240.000000","25269452.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000","6475092.000000","68214524.000000","89456948.000000","3778240.000000","25269452.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19616892.000000",,,,,,,,"140.000000","5618.000000",,,,,,,,,,,"3898.000000","519.000000","413.000000","503.000000","703.000000","510.000000","633.000000","0.000000","0.000000","0.000000","442.000000","374.000000","431.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962414.000000",,,,, +"11092.000000","51.255000","11092.000000","51.255000","11092.000000","51.255000",,,,,,,,,,,,,,"65.000000","7863.000000","6799.000000","3.000000","7863.000000","7863.000000",,,,,,,,,,,"5216848.000000","6831552.000000","478888.000000","0.000000","68200444.000000","0.000000","89456900.000000",,"3778240.000000","25282944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000","6831552.000000","68200444.000000","89456900.000000","3778240.000000","25282944.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19627768.000000",,,,,,,,"277.000000","8585.000000",,,,,,,,,,,"3854.000000","519.000000","429.000000","505.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","432.000000","549.000000","471.000000","549.000000","160.000000","6000.000000",,"8962434.000000",,,,, +"10776.000000","50.760000","10776.000000","50.760000","10776.000000","50.760000",,,,,,,,,,,,,,"334.000000","6444.000000","5325.000000","3.000000","6444.000000","6444.000000",,,,,,,,,,,"5119532.000000","6468856.000000","478888.000000","0.000000","68201584.000000","0.000000","89457196.000000",,"3778240.000000","25265084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000","6468856.000000","68201584.000000","89457196.000000","3778240.000000","25265084.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19621056.000000",,,,,,,,"531.000000","6696.000000",,,,,,,,,,,"3727.000000","519.000000","423.000000","506.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","441.000000","374.000000","433.000000","549.000000","460.000000","549.000000","160.000000","6000.000000",,"8962454.000000",,,,, +"11008.000000","51.115000","11008.000000","51.115000","11008.000000","51.115000",,,,,,,,,,,,,,"46.000000","6576.000000","6386.000000","26.000000","6576.000000","6576.000000",,,,,,,,,,,"4972740.000000","6447596.000000","478888.000000","0.000000","68196704.000000","0.000000","89457196.000000",,"3778240.000000","25269348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000","6447596.000000","68196704.000000","89457196.000000","3778240.000000","25269348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19622868.000000",,,,,,,,"143.000000","6576.000000",,,,,,,,,,,"3850.000000","521.000000","433.000000","495.000000","703.000000","567.000000","633.000000","0.000000","0.000000","0.000000","442.000000","385.000000","424.000000","549.000000","459.000000","545.000000","160.000000","6000.000000",,"8962474.000000",,,,, +"13935.000000","55.715000","13935.000000","55.715000","13935.000000","55.715000",,,,,,,,,,,,,,"60.000000","7997.000000","7783.000000","14.000000","7997.000000","7997.000000",,,,,,,,,,,"4658168.000000","5839424.000000","478884.000000","0.000000","68211040.000000","0.000000","89457200.000000",,"3778240.000000","25274372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000","5839424.000000","68211040.000000","89457200.000000","3778240.000000","25274372.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19604016.000000",,,,,,,,"192.000000","7958.000000",,,,,,,,,,,"4051.000000","517.000000","480.000000","479.000000","694.000000","707.000000","633.000000","0.000000","0.000000","0.000000","440.000000","423.000000","419.000000","549.000000","573.000000","545.000000","160.000000","6000.000000",,"8962494.000000",,,,, +"12109.000000","52.840000","12109.000000","52.840000","12109.000000","52.840000",,,,,,,,,,,,,,"98.000000","3494.000000","3308.000000","20.000000","3494.000000","3494.000000",,,,,,,,,,,"4539204.000000","5866872.000000","478884.000000","0.000000","68199608.000000","0.000000","89457200.000000",,"3778240.000000","25302000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000","5866872.000000","68199608.000000","89457200.000000","3778240.000000","25302000.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19611620.000000",,,,,,,,"101.000000","3481.000000",,,,,,,,,,,"3842.000000","511.000000","489.000000","473.000000","635.000000","707.000000","633.000000","0.000000","0.000000","0.000000","437.000000","434.000000","414.000000","545.000000","573.000000","545.000000","160.000000","6000.000000",,"8962514.000000",,,,, +"12449.000000","53.430000","12449.000000","53.430000","12449.000000","53.430000",,,,,,,,,,,,,,"559.000000","13424.000000","8656.000000","9.000000","13424.000000","13424.000000",,,,,,,,,,,"4392396.000000","5615220.000000","478884.000000","0.000000","68302196.000000","0.000000","89503924.000000",,"3778240.000000","25302756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000","5615220.000000","68302196.000000","89503924.000000","3778240.000000","25302756.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19610960.000000",,,,,,,,"8688.000000","8945.000000",,,,,,,,,,,"3955.000000","507.000000","507.000000","465.000000","633.000000","707.000000","603.000000","0.000000","0.000000","0.000000","435.000000","446.000000","410.000000","542.000000","573.000000","536.000000","160.000000","6000.000000",,"8962534.000000",,,,, +"14909.000000","57.460000","14909.000000","57.460000","14909.000000","57.460000",,,,,,,,,,,,,,"138.000000","33119.000000","24738.000000","15.000000","33119.000000","33119.000000",,,,,,,,,,,"4790608.000000","5887600.000000","478884.000000","0.000000","68658380.000000","0.000000","89846920.000000",,"3778240.000000","25268652.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000","5887600.000000","68658380.000000","89846920.000000","3778240.000000","25268652.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19601752.000000",,,,,,,,"14753.000000","26608.000000",,,,,,,,,,,"3994.000000","509.000000","525.000000","471.000000","635.000000","748.000000","633.000000","0.000000","0.000000","0.000000","436.000000","448.000000","412.000000","542.000000","538.000000","538.000000","160.000000","6000.000000",,"8962554.000000",,,,, +"14170.000000","56.495000","14170.000000","56.495000","14170.000000","56.495000",,,,,,,,,,,,,,"194.000000","28579.000000","22406.000000","11.000000","28579.000000","28579.000000",,,,,,,,,,,"4902716.000000","6538100.000000","478884.000000","0.000000","69051420.000000","0.000000","90245440.000000",,"3778240.000000","25269236.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000","6538100.000000","69051420.000000","90245440.000000","3778240.000000","25269236.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19597664.000000",,,,,,,,"9650.000000","24907.000000",,,,,,,,,,,"3850.000000","507.000000","587.000000","475.000000","633.000000","748.000000","635.000000","0.000000","0.000000","0.000000","433.000000","473.000000","409.000000","532.000000","538.000000","516.000000","160.000000","6000.000000",,"8962574.000000",,,,, +"13556.000000","55.755000","13556.000000","55.755000","13556.000000","55.755000",,,,,,,,,,,,,,"199.000000","31499.000000","31300.000000","13.000000","31499.000000","31499.000000",,,,,,,,,,,"5049516.000000","6757728.000000","478884.000000","0.000000","69488452.000000","0.000000","90628368.000000",,"3778240.000000","25275660.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000","6757728.000000","69488452.000000","90628368.000000","3778240.000000","25275660.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19605132.000000",,,,,,,,"5071.000000",,,,,,,,,,,,"3910.000000","507.000000","643.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","433.000000","499.000000","413.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962594.000000",,,,, +"10707.000000","51.425000","10707.000000","51.425000","10707.000000","51.425000",,,,,,,,,,,,,,"738.000000","27646.000000","22778.000000","11.000000","27646.000000","27646.000000",,,,,,,,,,,"5447976.000000","7093272.000000","478884.000000","0.000000","69761852.000000","0.000000","90958392.000000",,"3778240.000000","25270492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000","7093272.000000","69761852.000000","90958392.000000","3778240.000000","25270492.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19596752.000000",,,,,,,,"6531.000000","25243.000000",,,,,,,,,,,"3896.000000","505.000000","575.000000","484.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","452.000000","411.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962614.000000",,,,, +"11213.000000","52.240000","11213.000000","52.240000","11213.000000","52.240000",,,,,,,,,,,,,,"95.000000","7160.000000","5816.000000","6.000000","7160.000000","7160.000000",,,,,,,,,,,"5734860.000000","7072444.000000","478884.000000","0.000000","69801216.000000","0.000000","90986888.000000",,"3778240.000000","25182836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000","7072444.000000","69801216.000000","90986888.000000","3778240.000000","25182836.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577992.000000",,,,,,,,"310.000000","8099.000000",,,,,,,,,,,"3864.000000","505.000000","530.000000","488.000000","633.000000","783.000000","656.000000","0.000000","0.000000","0.000000","432.000000","431.000000","415.000000","532.000000","573.000000","532.000000","160.000000","6000.000000",,"8962634.000000",,,,, +"12522.000000","54.290000","12522.000000","54.290000","12522.000000","54.290000",,,,,,,,,,,,,,"156.000000","7968.000000","6599.000000","6.000000","7968.000000","7968.000000",,,,,,,,,,,"6139996.000000","7240032.000000","478884.000000","0.000000","69807392.000000","0.000000","90994512.000000",,"3778240.000000","25207528.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000","7240032.000000","69807392.000000","90994512.000000","3778240.000000","25207528.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19576836.000000",,,,,,,,"351.000000","8828.000000",,,,,,,,,,,"4028.000000","506.000000","477.000000","494.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","403.000000","422.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962654.000000",,,,, +"11854.000000","53.260000","11854.000000","53.260000","11854.000000","53.260000",,,,,,,,,,,,,,"522.000000","7978.500000","6225.000000","10.000000","7978.500000","7978.500000",,,,,,,,,,,"6119060.000000","7386872.000000","478884.000000","0.000000","69845284.000000","0.000000","91029560.000000",,"3778240.000000","25202932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000","7386872.000000","69845284.000000","91029560.000000","3778240.000000","25202932.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19570084.000000",,,,,,,,"732.000000","8477.000000",,,,,,,,,,,"3762.000000","505.000000","488.000000","499.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","432.000000","418.000000","425.000000","536.000000","554.000000","538.000000","160.000000","6000.000000",,"8962674.000000",,,,, +"11154.000000","52.185000","11154.000000","52.185000","11154.000000","52.185000",,,,,,,,,,,,,,"301.000000","5348.500000","3896.000000","5.000000","5348.500000","5348.500000",,,,,,,,,,,"6817596.000000","8211240.000000","478884.000000","0.000000","69885108.000000","0.000000","91062444.000000",,"3778240.000000","25258076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000","8211240.000000","69885108.000000","91062444.000000","3778240.000000","25258076.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19577840.000000",,,,,,,,"414.000000","6085.000000",,,,,,,,,,,"3767.000000","502.000000","463.000000","498.000000","633.000000","656.000000","656.000000","0.000000","0.000000","0.000000","430.000000","401.000000","423.000000","532.000000","554.000000","538.000000","160.000000","6000.000000",,"8962694.000000",,,,, +"10492.000000","51.160000","10492.000000","51.160000","10492.000000","51.160000",,,,,,,,,,,,,,"101.000000","5746.500000","4326.000000","7.000000","5746.500000","5746.500000",,,,,,,,,,,"6943708.000000","8568040.000000","478884.000000","0.000000","69909564.000000","0.000000","91105336.000000",,"3778240.000000","25231320.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000","8568040.000000","69909564.000000","91105336.000000","3778240.000000","25231320.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19580328.000000",,,,,,,,"305.000000","6760.000000",,,,,,,,,,,"3827.000000","499.000000","441.000000","500.000000","633.000000","562.000000","656.000000","0.000000","0.000000","0.000000","428.000000","390.000000","425.000000","525.000000","481.000000","538.000000","160.000000","6000.000000",,"8962714.000000",,,,, +"11630.000000","52.935000","11630.000000","52.935000","11630.000000","52.935000",,,,,,,,,,,,,,"53.000000","7473.500000","6060.000000","12.000000","7473.500000","7473.500000",,,,,,,,,,,"6587196.000000","8316384.000000","478884.000000","0.000000","69895068.000000","0.000000","91105336.000000",,"3778240.000000","25244940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000","8316384.000000","69895068.000000","91105336.000000","3778240.000000","25244940.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19590620.000000",,,,,,,,"276.000000","8558.000000",,,,,,,,,,,"3753.000000","501.000000","447.000000","503.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","428.000000","391.000000","426.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962734.000000",,,,, +"12829.000000","54.820000","12829.000000","54.820000","12829.000000","54.820000",,,,,,,,,,,,,,"365.000000","7064.000000","5370.000000","10.000000","7064.000000","7064.000000",,,,,,,,,,,"6608552.000000","8355664.000000","478884.000000","0.000000","69902524.000000","0.000000","91105336.000000",,"3778240.000000","25228984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000","8355664.000000","69902524.000000","91105336.000000","3778240.000000","25228984.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19583472.000000",,,,,,,,"575.000000","7816.000000",,,,,,,,,,,"3928.000000","501.000000","473.000000","508.000000","633.000000","620.000000","656.000000","0.000000","0.000000","0.000000","429.000000","417.000000","431.000000","525.000000","523.000000","538.000000","160.000000","6000.000000",,"8962754.000000",,,,, +"12219.000000","53.865000","12219.000000","53.865000","12219.000000","53.865000",,,,,,,,,,,,,,"133.000000","6128.500000","4791.000000","27.000000","6128.500000","6128.500000",,,,,,,,,,,"6838956.000000","8607320.000000","478884.000000","0.000000","69906088.000000","0.000000","91107608.000000",,"3778240.000000","25188740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000","8607320.000000","69906088.000000","91107608.000000","3778240.000000","25188740.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19574956.000000",,,,,,,,"308.000000","7023.000000",,,,,,,,,,,"3971.000000","496.000000","486.000000","511.000000","623.000000","620.000000","656.000000","0.000000","0.000000","0.000000","427.000000","431.000000","434.000000","524.000000","523.000000","538.000000","160.000000","6000.000000",,"8962774.000000",,,,, +"17055.000000","61.435000","17055.000000","61.435000","17055.000000","61.435000",,,,,,,,,,,,,,"90.000000","12522.000000","11192.000000","46.000000","12522.000000","12522.000000",,,,,,,,,,,"7111536.000000","8754072.000000","478884.000000","0.000000","69894992.000000","0.000000","91107560.000000",,"3778240.000000","25200044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000","8754072.000000","69894992.000000","91107560.000000","3778240.000000","25200044.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584000.000000",,,,,,,,"304.000000","13457.000000",,,,,,,,,,,"4105.000000","503.000000","575.000000","522.000000","633.000000","847.000000","715.000000","0.000000","0.000000","0.000000","431.000000","493.000000","440.000000","532.000000","683.000000","538.000000","160.000000","6000.000000",,"8962794.000000",,,,, +"16891.000000","61.175000","16891.000000","61.175000","16891.000000","61.175000",,,,,,,,,,,,,,"54.000000","11334.500000","10187.000000","47.000000","11334.500000","11334.500000",,,,,,,,,,,"6922464.000000","8491404.000000","478884.000000","0.000000","69895848.000000","0.000000","91110464.000000",,"3778240.000000","25226936.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000","8491404.000000","69895848.000000","91110464.000000","3778240.000000","25226936.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19584748.000000",,,,,,,,"308.000000","12119.000000",,,,,,,,,,,"4254.000000","507.000000","639.000000","538.000000","656.000000","847.000000","748.000000","0.000000","0.000000","0.000000","434.000000","533.000000","451.000000","538.000000","683.000000","573.000000","160.000000","6000.000000",,"8962814.000000",,,,, +"18270.000000","63.335000","18270.000000","63.335000","18270.000000","63.335000",,,,,,,,,,,,,,"161.000000","7375.000000","6204.000000","18.000000","7375.000000","7375.000000",,,,,,,,,,,"6649836.000000","8113636.000000","478884.000000","0.000000","69893040.000000","0.000000","91110464.000000",,"3778240.000000","25230328.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000","8113636.000000","69893040.000000","91110464.000000","3778240.000000","25230328.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19586232.000000",,,,,,,,"301.000000","8083.000000",,,,,,,,,,,"4233.000000","515.000000","777.000000","565.000000","709.000000","934.000000","804.000000","0.000000","0.000000","0.000000","440.000000","620.000000","469.000000","556.000000","683.000000","641.000000","160.000000","6000.000000",,"8962834.000000",,,,, +"16695.000000","60.885000","16695.000000","60.885000","16695.000000","60.885000",,,,,,,,,,,,,,"125.000000","21957.000000","15282.000000","25.000000","21957.000000","21957.000000",,,,,,,,,,,"6922464.000000","8281408.000000","478884.000000","0.000000","69926028.000000","0.000000","91110464.000000",,"3778240.000000","25232844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000","8281408.000000","69926028.000000","91110464.000000","3778240.000000","25232844.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19581352.000000",,,,,,,,"10886.000000","17619.000000",,,,,,,,,,,"4171.000000","519.000000","750.000000","567.000000","715.000000","934.000000","804.000000","0.000000","0.000000","0.000000","442.000000","611.000000","473.000000","571.000000","681.000000","645.000000","160.000000","6000.000000",,"8962854.000000",,,,, +"16947.000000","61.360000","16947.000000","61.360000","16947.000000","61.360000",,,,,,,,,,,,,,"89.000000","34448.500000","29353.000000","83.000000","34448.500000","34448.500000",,,,,,,,,,,"6956768.000000","8322584.000000","478884.000000","0.000000","70083000.000000","0.000000","91185084.000000",,"3778240.000000","25150104.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000","8322584.000000","70083000.000000","91185084.000000","3778240.000000","25150104.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19558068.000000",,,,,,,,"7313.000000","32141.000000",,,,,,,,,,,"4213.000000","522.000000","762.000000","573.000000","728.000000","934.000000","804.000000","0.000000","0.000000","0.000000","445.000000","625.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962874.000000",,,,, +"14205.000000","57.140000","14205.000000","57.140000","14205.000000","57.140000",,,,,,,,,,,,,,"240.000000","29860.500000","28067.000000","259.000000","29860.500000","29860.500000",,,,,,,,,,,"6726080.000000","8154808.000000","478884.000000","0.000000","70233964.000000","0.000000","91313728.000000",,"3778240.000000","25035048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000","8154808.000000","70233964.000000","91313728.000000","3778240.000000","25035048.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19556080.000000",,,,,,,,"624.000000","30790.000000",,,,,,,,,,,"3947.000000","525.000000","676.000000","571.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","447.000000","564.000000","482.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962894.000000",,,,, +"12501.000000","54.545000","12501.000000","54.545000","12501.000000","54.545000",,,,,,,,,,,,,,"212.000000","14022.000000","12148.000000","126.000000","14022.000000","14022.000000",,,,,,,,,,,"6747048.000000","8133832.000000","478884.000000","0.000000","70386032.000000","0.000000","91471928.000000",,"3778240.000000","25030632.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000","8133832.000000","70386032.000000","91471928.000000","3778240.000000","25030632.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19561348.000000",,,,,,,,"931.000000","14752.000000",,,,,,,,,,,"3850.000000","526.000000","616.000000","575.000000","728.000000","802.000000","804.000000","0.000000","0.000000","0.000000","448.000000","519.000000","486.000000","573.000000","687.000000","667.000000","160.000000","6000.000000",,"8962914.000000",,,,, +"12721.000000","54.920000","12721.000000","54.920000","12721.000000","54.920000",,,,,,,,,,,,,,"102.000000","4926.000000","3563.000000","53.000000","4926.000000","4926.000000",,,,,,,,,,,"6160620.000000","7889808.000000","478884.000000","0.000000","70444560.000000","0.000000","91522104.000000",,"3778240.000000","25042348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000","7889808.000000","70444560.000000","91522104.000000","3778240.000000","25042348.000000","1429420.000000","1630920.000000",,,,"10877000.000000","19568984.000000",,,,,,,,"248.000000","5937.000000",,,,,,,,,,,"3903.000000","526.000000","548.000000","577.000000","728.000000","665.000000","804.000000","0.000000","0.000000","0.000000","448.000000","465.000000","488.000000","573.000000","557.000000","667.000000","160.000000","6000.000000",,"8962934.000000",,,,, +"12852.000000","55.135000","12852.000000","55.135000","12852.000000","55.135000",,,,,,,,,,,,,,"55.000000","5003.000000","3805.000000","15.000000","5003.000000","5003.000000",,,,,,,,,,,"6663992.000000","8015704.000000","478884.000000","0.000000","70468960.000000","0.000000","91559512.000000",,"3778240.000000","24985180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000","8015704.000000","70468960.000000","91559512.000000","3778240.000000","24985180.000000","1429420.000000","1630920.000000",,,,"10876712.000000","19578112.000000",,,,,,,,"194.000000","5951.000000",,,,,,,,,,,"3977.000000","527.000000","514.000000","579.000000","728.000000","585.000000","804.000000","0.000000","0.000000","0.000000","449.000000","449.000000","491.000000","573.000000","512.000000","667.000000","160.000000","6000.000000",,"8962954.000000",,,,, +"13105.000000","55.525000","13105.000000","55.525000","13105.000000","55.525000",,,,,,,,,,,,,,"66.000000","2945.000000","2879.000000","18.000000","2945.000000","2945.000000",,,,,,,,,,,"6716108.000000","8099892.000000","478884.000000","0.000000","70463412.000000","0.000000","91560776.000000",,"3778240.000000","24991108.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000","8099892.000000","70463412.000000","91560776.000000","3778240.000000","24991108.000000","1429420.000000","1630920.000000",,,,"10875448.000000","19579324.000000",,,,,,,,"171.000000",,,,,,,,,,,,"3890.000000","530.000000","531.000000","584.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","459.000000","495.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962974.000000",,,,, +"12787.000000","55.040000","12787.000000","55.040000","12787.000000","55.040000",,,,,,,,,,,,,,"90.000000","5076.500000","4567.000000","21.000000","5076.500000","5076.500000",,,,,,,,,,,"7806840.000000","9218208.000000","478884.000000","0.000000","70479640.000000","0.000000","91561824.000000",,"3778240.000000","24998264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000","9218208.000000","70479640.000000","91561824.000000","3778240.000000","24998264.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19561208.000000",,,,,,,,"204.000000","5290.000000",,,,,,,,,,,"4013.000000","529.000000","525.000000","589.000000","728.000000","609.000000","804.000000","0.000000","0.000000","0.000000","451.000000","461.000000","500.000000","573.000000","521.000000","667.000000","160.000000","6000.000000",,"8962994.000000",,,,, +"15735.000000","59.700000","15735.000000","59.700000","15735.000000","59.700000",,,,,,,,,,,,,,"109.000000","7774.500000","6573.000000","54.000000","7774.500000","7774.500000",,,,,,,,,,,"7513236.000000","8987520.000000","478884.000000","0.000000","70565956.000000","0.000000","91641952.000000",,"3778240.000000","25023052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000","8987520.000000","70565956.000000","91641952.000000","3778240.000000","25023052.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19549708.000000",,,,,,,,"232.000000","8633.000000",,,,,,,,,,,"3884.000000","535.000000","563.000000","603.000000","748.000000","793.000000","804.000000","0.000000","0.000000","0.000000","456.000000","494.000000","512.000000","581.000000","700.000000","681.000000","160.000000","6000.000000",,"8963014.000000",,,,, +"19420.000000","65.480000","19420.000000","65.480000","19420.000000","65.480000",,,,,,,,,,,,,,"312.000000","10633.000000","9107.000000","37.000000","10633.000000","10633.000000",,,,,,,,,,,"7429304.000000","8840672.000000","478884.000000","0.000000","70576332.000000","0.000000","91642416.000000",,"3778240.000000","25010532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000","8840672.000000","70576332.000000","91642416.000000","3778240.000000","25010532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537736.000000",,,,,,,,"562.000000","11284.000000",,,,,,,,,,,"4402.000000","544.000000","654.000000","625.000000","783.000000","909.000000","816.000000","0.000000","0.000000","0.000000","462.000000","562.000000","529.000000","609.000000","750.000000","683.000000","160.000000","6000.000000",,"8963034.000000",,,,, +"19856.000000","66.195000","19856.000000","66.195000","19856.000000","66.195000",,,,,,,,,,,,,,"341.000000","11153.500000","9602.000000","92.000000","11153.500000","11153.500000",,,,,,,,,,,"7135708.000000","8652240.000000","478884.000000","0.000000","70648244.000000","0.000000","91643440.000000",,"3778240.000000","25027172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000","8652240.000000","70648244.000000","91643440.000000","3778240.000000","25027172.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19522720.000000",,,,,,,,"584.000000","11778.000000",,,,,,,,,,,"4300.000000","556.000000","799.000000","655.000000","793.000000","1141.000000","905.000000","0.000000","0.000000","0.000000","469.000000","637.000000","544.000000","641.000000","759.000000","698.000000","160.000000","6000.000000",,"8963054.000000",,,,, +"21610.000000","68.950000","21610.000000","68.950000","21610.000000","68.950000",,,,,,,,,,,,,,"101.000000","14058.500000","13429.000000","12.000000","14058.500000","14058.500000",,,,,,,,,,,"6632396.000000","8295720.000000","478884.000000","0.000000","70662368.000000","0.000000","91643440.000000",,"3778240.000000","25018700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000","8295720.000000","70662368.000000","91643440.000000","3778240.000000","25018700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19526592.000000",,,,,,,,"298.000000","14289.000000",,,,,,,,,,,"4482.000000","571.000000","1007.000000","707.000000","804.000000","1402.000000","1028.000000","0.000000","0.000000","0.000000","477.000000","736.000000","573.000000","667.000000","904.000000","750.000000","160.000000","6000.000000",,"8963074.000000",,,,, +"20061.000000","66.520000","20061.000000","66.520000","20061.000000","66.520000",,,,,,,,,,,,,,"46.000000","10445.000000","10186.000000","13.000000","10445.000000","10445.000000",,,,,,,,,,,"6716336.000000","8400636.000000","478884.000000","0.000000","70646660.000000","0.000000","91645016.000000",,"3778240.000000","25034532.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000","8400636.000000","70646660.000000","91645016.000000","3778240.000000","25034532.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19537548.000000",,,,,,,,"176.000000","10481.000000",,,,,,,,,,,"4333.000000","575.000000","1073.000000","725.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","749.000000","580.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963094.000000",,,,, +"14279.000000","57.505000","14279.000000","57.505000","14279.000000","57.505000",,,,,,,,,,,,,,"113.000000","19248.500000","18693.000000","23.000000","19248.500000","19248.500000",,,,,,,,,,,"7055748.000000","8463552.000000","478884.000000","0.000000","70737636.000000","0.000000","91749072.000000",,"3778240.000000","25028972.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000","8463552.000000","70737636.000000","91749072.000000","3778240.000000","25028972.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19548872.000000",,,,,,,,"344.000000","19345.000000",,,,,,,,,,,"4016.000000","576.000000","956.000000","718.000000","814.000000","1402.000000","1125.000000","0.000000","0.000000","0.000000","480.000000","690.000000","576.000000","681.000000","904.000000","759.000000","160.000000","6000.000000",,"8963114.000000",,,,, +"16080.000000","60.320000","16080.000000","60.320000","16080.000000","60.320000",,,,,,,,,,,,,,"122.000000","8354.500000","8023.000000","11.000000","8354.500000","8354.500000",,,,,,,,,,,"7076716.000000","8442576.000000","478884.000000","0.000000","70727172.000000","0.000000","91754600.000000",,"3778240.000000","25093300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000","8442576.000000","70727172.000000","91754600.000000","3778240.000000","25093300.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19560536.000000",,,,,,,,"239.000000","8324.000000",,,,,,,,,,,"4042.000000","578.000000","767.000000","705.000000","814.000000","1239.000000","1125.000000","0.000000","0.000000","0.000000","483.000000","599.000000","569.000000","681.000000","825.000000","759.000000","160.000000","6000.000000",,"8963134.000000",,,,, +"16797.000000","61.440000","16797.000000","61.440000","16797.000000","61.440000",,,,,,,,,,,,,,"109.000000","9881.500000","9511.000000","63.000000","9881.500000","9881.500000",,,,,,,,,,,"7013656.000000","8337568.000000","478884.000000","0.000000","70717152.000000","0.000000","91754452.000000",,"3778240.000000","25102092.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000","8337568.000000","70717152.000000","91754452.000000","3778240.000000","25102092.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19565428.000000",,,,,,,,"287.000000","9856.000000",,,,,,,,,,,"4094.000000","582.000000","659.000000","707.000000","816.000000","818.000000","1125.000000","0.000000","0.000000","0.000000","485.000000","556.000000","569.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963154.000000",,,,, +"16334.000000","60.710000","16334.000000","60.710000","16334.000000","60.710000",,,,,,,,,,,,,,"56.000000","10935.000000","10493.000000","5.000000","10935.000000","10935.000000",,,,,,,,,,,"7114176.000000","8749024.000000","478884.000000","0.000000","70712572.000000","0.000000","91756136.000000",,"3778240.000000","25055968.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000","8749024.000000","70712572.000000","91756136.000000","3778240.000000","25055968.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19564724.000000",,,,,,,,"498.000000","10822.000000",,,,,,,,,,,"3979.000000","585.000000","713.000000","708.000000","818.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","486.000000","579.000000","566.000000","681.000000","667.000000","759.000000","160.000000","6000.000000",,"8963174.000000",,,,, +"15386.000000","59.230000","15386.000000","59.230000","15386.000000","59.230000",,,,,,,,,,,,,,"40.000000","8124.500000","7884.000000","16.000000","8124.500000","8124.500000",,,,,,,,,,,"7554692.000000","9546056.000000","478884.000000","0.000000","70720116.000000","0.000000","91762900.000000",,"3778240.000000","25061316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000","9546056.000000","70720116.000000","91762900.000000","3778240.000000","25061316.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19566208.000000",,,,,,,,"151.000000","8173.000000",,,,,,,,,,,"3919.000000","591.000000","733.000000","717.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","489.000000","575.000000","571.000000","681.000000","639.000000","759.000000","160.000000","6000.000000",,"8963194.000000",,,,, +"15692.000000","59.715000","15692.000000","59.715000","15692.000000","59.715000",,,,,,,,,,,,,,"60.000000","10242.500000","10020.000000","9.000000","10242.500000","10242.500000",,,,,,,,,,,"7638576.000000","9650916.000000","478884.000000","0.000000","70731944.000000","0.000000","91794132.000000",,"3778240.000000","25011360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000","9650916.000000","70731944.000000","91794132.000000","3778240.000000","25011360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19576752.000000",,,,,,,,"196.000000","10209.000000",,,,,,,,,,,"3927.000000","597.000000","745.000000","732.000000","820.000000","860.000000","1125.000000","0.000000","0.000000","0.000000","492.000000","564.000000","578.000000","681.000000","632.000000","759.000000","160.000000","6000.000000",,"8963214.000000",,,,, +"15214.000000","58.965000","15214.000000","58.965000","15214.000000","58.965000",,,,,,,,,,,,,,"53.000000","10876.500000","9266.000000","11.000000","10876.500000","10876.500000",,,,,,,,,,,"7261700.000000","9162608.000000","478884.000000","0.000000","70730840.000000","0.000000","91794132.000000",,"3778240.000000","24972668.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000","9162608.000000","70730840.000000","91794132.000000","3778240.000000","24972668.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19569852.000000",,,,,,,,"2876.000000","9558.000000",,,,,,,,,,,"4191.000000","602.000000","714.000000","741.000000","820.000000","851.000000","1125.000000","0.000000","0.000000","0.000000","497.000000","565.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963234.000000",,,,, +"13902.000000","56.905000","13902.000000","56.905000","13902.000000","56.905000",,,,,,,,,,,,,,"72.000000","12629.000000","9636.000000","12.000000","12629.000000","12629.000000",,,,,,,,,,,"6821300.000000","8554432.000000","478884.000000","0.000000","70721112.000000","0.000000","91794132.000000",,"3778240.000000","25008160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000","8554432.000000","70721112.000000","91794132.000000","3778240.000000","25008160.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19574560.000000",,,,,,,,"5564.000000","9985.000000",,,,,,,,,,,"3906.000000","606.000000","659.000000","746.000000","820.000000","813.000000","1125.000000","0.000000","0.000000","0.000000","500.000000","536.000000","588.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963254.000000",,,,, +"12489.000000","54.715000","12489.000000","54.715000","12489.000000","54.715000",,,,,,,,,,,,,,"120.000000","15124.500000","13418.000000","17.000000","15124.500000","15124.500000",,,,,,,,,,,"6884444.000000","8575636.000000","478884.000000","0.000000","70775488.000000","0.000000","91853628.000000",,"3778240.000000","25018924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000","8575636.000000","70775488.000000","91853628.000000","3778240.000000","25018924.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19583564.000000",,,,,,,,"2953.000000","13757.000000",,,,,,,,,,,"3882.000000","609.000000","585.000000","743.000000","820.000000","743.000000","1125.000000","0.000000","0.000000","0.000000","502.000000","501.000000","586.000000","681.000000","648.000000","759.000000","160.000000","6000.000000",,"8963274.000000",,,,, +"13219.000000","55.905000","13219.000000","55.905000","13219.000000","55.905000",,,,,,,,,,,,,,"47.000000","9561.000000","9244.000000","25.000000","9561.000000","9561.000000",,,,,,,,,,,"6993132.000000","8736172.000000","478884.000000","0.000000","70859532.000000","0.000000","91953320.000000",,"3778240.000000","25061516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000","8736172.000000","70859532.000000","91953320.000000","3778240.000000","25061516.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19592712.000000",,,,,,,,"174.000000","9656.000000",,,,,,,,,,,"3774.000000","610.000000","537.000000","744.000000","820.000000","650.000000","1125.000000","0.000000","0.000000","0.000000","503.000000","455.000000","585.000000","681.000000","565.000000","759.000000","160.000000","6000.000000",,"8963294.000000",,,,, +"16321.000000","60.800000","16321.000000","60.800000","16321.000000","60.800000",,,,,,,,,,,,,,"144.000000","12688.000000","11503.000000","4.000000","12688.000000","12688.000000",,,,,,,,,,,"6636616.000000","8568400.000000","478884.000000","0.000000","70929072.000000","0.000000","92035680.000000",,"3778240.000000","25078016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000","8568400.000000","70929072.000000","92035680.000000","3778240.000000","25078016.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602456.000000",,,,,,,,"358.000000","13370.000000",,,,,,,,,,,"4037.000000","621.000000","637.000000","760.000000","847.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","508.000000","497.000000","589.000000","681.000000","628.000000","759.000000","160.000000","6000.000000",,"8963314.000000",,,,, +"14767.000000","58.360000","14767.000000","58.360000","14767.000000","58.360000",,,,,,,,,,,,,,"54.000000","11711.000000","10897.000000","18.000000","11711.000000","11711.000000",,,,,,,,,,,"6699536.000000","8610340.000000","478884.000000","0.000000","70925852.000000","0.000000","92035680.000000",,"3778240.000000","25078700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000","8610340.000000","70925852.000000","92035680.000000","3778240.000000","25078700.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598248.000000",,,,,,,,"294.000000","12176.000000",,,,,,,,,,,"3991.000000","627.000000","701.000000","753.000000","851.000000","972.000000","1125.000000","0.000000","0.000000","0.000000","512.000000","530.000000","580.000000","681.000000","653.000000","759.000000","160.000000","6000.000000",,"8963334.000000",,,,, +"14464.000000","57.885000","14464.000000","57.885000","14464.000000","57.885000",,,,,,,,,,,,,,"379.000000","13414.500000","12782.000000","3.000000","13414.500000","13414.500000",,,,,,,,,,,"6483668.000000","8447476.000000","478884.000000","0.000000","70923980.000000","0.000000","92036412.000000",,"3778240.000000","25045744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000","8447476.000000","70923980.000000","92036412.000000","3778240.000000","25045744.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602556.000000",,,,,,,,"582.000000","13085.000000",,,,,,,,,,,"3850.000000","631.000000","726.000000","729.000000","851.000000","972.000000","1028.000000","0.000000","0.000000","0.000000","514.000000","546.000000","567.000000","681.000000","653.000000","723.000000","160.000000","6000.000000",,"8963354.000000",,,,, +"20036.000000","66.610000","20036.000000","66.610000","20036.000000","66.610000",,,,,,,,,,,,,,"33.000000","10495.500000","10286.000000","27.000000","10495.500000","10495.500000",,,,,,,,,,,"6399328.000000","7754972.000000","478884.000000","0.000000","70909332.000000","0.000000","92035680.000000",,"3778240.000000","25034008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000","7754972.000000","70909332.000000","92035680.000000","3778240.000000","25034008.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19602240.000000",,,,,,,,"166.000000","10504.000000",,,,,,,,,,,"4083.000000","651.000000","885.000000","736.000000","905.000000","1713.000000","972.000000","0.000000","0.000000","0.000000","522.000000","593.000000","560.000000","683.000000","837.000000","676.000000","160.000000","6000.000000",,"8963374.000000",,,,, +"14116.000000","57.330000","14116.000000","57.330000","14116.000000","57.330000",,,,,,,,,,,,,,"82.000000","9328.000000","9246.000000","7.000000","9328.000000","9328.000000",,,,,,,,,,,"6231708.000000","7650264.000000","478884.000000","0.000000","70903772.000000","0.000000","92035832.000000",,"3778240.000000","25040488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000","7650264.000000","70903772.000000","92035832.000000","3778240.000000","25040488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19604720.000000",,,,,,,,"207.000000",,,,,,,,,,,,"3915.000000","651.000000","838.000000","706.000000","905.000000","1713.000000","860.000000","0.000000","0.000000","0.000000","522.000000","583.000000","547.000000","683.000000","837.000000","653.000000","160.000000","6000.000000",,"8963394.000000",,,,, +"19335.000000","65.510000","19335.000000","65.510000","19335.000000","65.510000",,,,,,,,,,,,,,"35.000000","7945.500000","7728.000000","16.000000","7945.500000","7945.500000",,,,,,,,,,,"6105880.000000","7524436.000000","478884.000000","0.000000","70912960.000000","0.000000","92035832.000000",,"3778240.000000","25115360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000","7524436.000000","70912960.000000","92035832.000000","3778240.000000","25115360.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19590408.000000",,,,,,,,"166.000000","7961.000000",,,,,,,,,,,"4159.000000","660.000000","936.000000","725.000000","934.000000","1713.000000","959.000000","0.000000","0.000000","0.000000","527.000000","622.000000","553.000000","687.000000","837.000000","667.000000","160.000000","6000.000000",,"8963414.000000",,,,, +"21196.000000","68.420000","21196.000000","68.420000","21196.000000","68.420000",,,,,,,,,,,,,,"125.000000","7995.000000","7737.000000","4.000000","7995.000000","7995.000000",,,,,,,,,,,"5986960.000000","7909116.000000","478884.000000","0.000000","70902656.000000","0.000000","92035832.000000",,"3778240.000000","25073920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000","7909116.000000","70902656.000000","92035832.000000","3778240.000000","25073920.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19598084.000000",,,,,,,,"231.000000","7896.000000",,,,,,,,,,,"4312.000000","682.000000","966.000000","776.000000","988.000000","1559.000000","1243.000000","0.000000","0.000000","0.000000","536.000000","654.000000","571.000000","702.000000","858.000000","725.000000","160.000000","6000.000000",,"8963434.000000",,,,, +"21659.000000","69.145000","21659.000000","69.145000","21659.000000","69.145000",,,,,,,,,,,,,,"41.000000","5788.000000","5588.000000","6.000000","5788.000000","5788.000000",,,,,,,,,,,"6070848.000000","8195528.000000","478884.000000","0.000000","70906016.000000","0.000000","92035832.000000",,"3778240.000000","25068612.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000","8195528.000000","70906016.000000","92035832.000000","3778240.000000","25068612.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19588056.000000",,,,,,,,"137.000000","5809.000000",,,,,,,,,,,"4505.000000","693.000000","1158.000000","806.000000","1102.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","542.000000","739.000000","583.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963454.000000",,,,, +"19037.000000","65.035000","19037.000000","65.035000","19037.000000","65.035000",,,,,,,,,,,,,,"100.000000","10284.500000","9876.000000","33.000000","10284.500000","10284.500000",,,,,,,,,,,"6315304.000000","8335136.000000","478884.000000","0.000000","70891916.000000","0.000000","92035832.000000",,"3778240.000000","25007892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000","8335136.000000","70891916.000000","92035832.000000","3778240.000000","25007892.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19595732.000000",,,,,,,,"529.000000","10062.000000",,,,,,,,,,,"4122.000000","703.000000","1224.000000","827.000000","1135.000000","1559.000000","1259.000000","0.000000","0.000000","0.000000","546.000000","761.000000","590.000000","725.000000","858.000000","807.000000","160.000000","6000.000000",,"8963474.000000",,,,, +"17504.000000","62.615000","17504.000000","62.615000","17504.000000","62.615000",,,,,,,,,,,,,,"41.000000","7695.000000","7423.000000","14.000000","7695.000000","7695.000000",,,,,,,,,,,"5797908.000000","7859392.000000","478884.000000","0.000000","70866880.000000","0.000000","92035832.000000",,"3778240.000000","25171964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000","7859392.000000","70866880.000000","92035832.000000","3778240.000000","25171964.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19606008.000000",,,,,,,,"167.000000","7757.000000",,,,,,,,,,,"4114.000000","708.000000","1033.000000","836.000000","1135.000000","1259.000000","1259.000000","0.000000","0.000000","0.000000","549.000000","698.000000","596.000000","725.000000","815.000000","807.000000","160.000000","6000.000000",,"8963494.000000",,,,, +"14229.000000","57.485000","14229.000000","57.485000","14229.000000","57.485000",,,,,,,,,,,,,,"41.000000","5376.000000","5241.000000","45.000000","5376.000000","5376.000000",,,,,,,,,,,"5797704.000000","7922104.000000","478884.000000","0.000000","70850888.000000","0.000000","92035632.000000",,"3778240.000000","25186488.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000","7922104.000000","70850888.000000","92035632.000000","3778240.000000","25186488.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615572.000000",,,,,,,,"131.000000","5337.000000",,,,,,,,,,,"3919.000000","711.000000","846.000000","826.000000","1135.000000","1216.000000","1259.000000","0.000000","0.000000","0.000000","552.000000","610.000000","593.000000","725.000000","721.000000","807.000000","160.000000","6000.000000",,"8963514.000000",,,,, +"14547.000000","57.980000","14547.000000","57.980000","14547.000000","57.980000",,,,,,,,,,,,,,"40.000000","8692.500000","8326.000000","7.000000","8692.500000","8692.500000",,,,,,,,,,,"5734792.000000","7901132.000000","478884.000000","0.000000","70856632.000000","0.000000","92035632.000000",,"3778240.000000","25235760.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000","7901132.000000","70856632.000000","92035632.000000","3778240.000000","25235760.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19616924.000000",,,,,,,,"328.000000","8690.000000",,,,,,,,,,,"3881.000000","713.000000","680.000000","821.000000","1135.000000","888.000000","1259.000000","0.000000","0.000000","0.000000","554.000000","554.000000","588.000000","725.000000","668.000000","807.000000","160.000000","6000.000000",,"8963534.000000",,,,, +"13098.000000","55.705000","13098.000000","55.705000","13098.000000","55.705000",,,,,,,,,,,,,,"38.000000","9513.500000","9122.000000","19.000000","9513.500000","9513.500000",,,,,,,,,,,"5916388.000000","7978176.000000","478884.000000","0.000000","70838960.000000","0.000000","92035680.000000",,"3778240.000000","25215464.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000","7978176.000000","70838960.000000","92035680.000000","3778240.000000","25215464.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19620952.000000",,,,,,,,"400.000000","9467.000000",,,,,,,,,,,"3935.000000","714.000000","571.000000","819.000000","1135.000000","635.000000","1259.000000","0.000000","0.000000","0.000000","556.000000","497.000000","588.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963554.000000",,,,, +"13222.000000","55.895000","13222.000000","55.895000","13222.000000","55.895000",,,,,,,,,,,,,,"39.000000","8136.000000","7299.000000","28.000000","8136.000000","8136.000000",,,,,,,,,,,"5832504.000000","7768456.000000","478884.000000","0.000000","70835528.000000","0.000000","92035680.000000",,"3778240.000000","25217776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000","7768456.000000","70835528.000000","92035680.000000","3778240.000000","25217776.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19618400.000000",,,,,,,,"224.000000","8710.000000",,,,,,,,,,,"3887.000000","716.000000","559.000000","820.000000","1135.000000","630.000000","1259.000000","0.000000","0.000000","0.000000","557.000000","489.000000","590.000000","725.000000","574.000000","807.000000","160.000000","6000.000000",,"8963574.000000",,,,, +"14124.000000","57.310000","14124.000000","57.310000","14124.000000","57.310000",,,,,,,,,,,,,,"48.000000","7765.000000","6725.000000","25.000000","7765.000000","7765.000000",,,,,,,,,,,"6189016.000000","7999140.000000","478884.000000","0.000000","70833580.000000","0.000000","92035680.000000",,"3778240.000000","25239908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000","7999140.000000","70833580.000000","92035680.000000","3778240.000000","25239908.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19615820.000000",,,,,,,,"273.000000","8483.000000",,,,,,,,,,,"4018.000000","720.000000","564.000000","826.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","560.000000","483.000000","593.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963594.000000",,,,, +"12669.000000","55.025000","12669.000000","55.025000","12669.000000","55.025000",,,,,,,,,,,,,,"40.000000","6177.000000","5955.000000","4.000000","6177.000000","6177.000000",,,,,,,,,,,"6140188.000000","8208864.000000","478884.000000","0.000000","70826080.000000","0.000000","92035680.000000",,"3778240.000000","25245584.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000","8208864.000000","70826080.000000","92035680.000000","3778240.000000","25245584.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619048.000000",,,,,,,,"143.000000","6215.000000",,,,,,,,,,,"3813.000000","723.000000","570.000000","805.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","561.000000","475.000000","583.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963614.000000",,,,, +"13176.000000","55.815000","13176.000000","55.815000","13176.000000","55.815000",,,,,,,,,,,,,,"99.000000","9337.500000","9126.000000","23.000000","9337.500000","9337.500000",,,,,,,,,,,"6119224.000000","8145960.000000","478884.000000","0.000000","70813256.000000","0.000000","92035688.000000",,"3778240.000000","25258224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000","8145960.000000","70813256.000000","92035688.000000","3778240.000000","25258224.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19628088.000000",,,,,,,,"173.000000","9277.000000",,,,,,,,,,,"3855.000000","724.000000","570.000000","794.000000","1135.000000","830.000000","1259.000000","0.000000","0.000000","0.000000","562.000000","471.000000","578.000000","725.000000","644.000000","807.000000","160.000000","6000.000000",,"8963634.000000",,,,, +"14110.000000","57.270000","14110.000000","57.270000","14110.000000","57.270000",,,,,,,,,,,,,,"368.000000","14582.000000","13897.000000","10.000000","14582.000000","14582.000000",,,,,,,,,,,"5846600.000000","7873336.000000","478884.000000","0.000000","70806552.000000","0.000000","92035688.000000",,"3778240.000000","25262116.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000","7873336.000000","70806552.000000","92035688.000000","3778240.000000","25262116.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19631204.000000",,,,,,,,"570.000000","14328.000000",,,,,,,,,,,"3924.000000","726.000000","566.000000","794.000000","1135.000000","725.000000","1259.000000","0.000000","0.000000","0.000000","563.000000","475.000000","579.000000","725.000000","528.000000","807.000000","160.000000","6000.000000",,"8963654.000000",,,,, +"15180.000000","58.945000","15180.000000","58.945000","15180.000000","58.945000",,,,,,,,,,,,,,"119.000000","14077.000000","13670.000000","12.000000","14077.000000","14077.000000",,,,,,,,,,,"6063200.000000","7726220.000000","478884.000000","0.000000","70790912.000000","0.000000","92035688.000000",,"3778240.000000","25314268.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000","7726220.000000","70790912.000000","92035688.000000","3778240.000000","25314268.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640488.000000",,,,,,,,"298.000000","14066.000000",,,,,,,,,,,"3999.000000","732.000000","618.000000","752.000000","1135.000000","825.000000","1243.000000","0.000000","0.000000","0.000000","566.000000","506.000000","566.000000","725.000000","618.000000","777.000000","160.000000","6000.000000",,"8963674.000000",,,,, +"17514.000000","62.615000","17514.000000","62.615000","17514.000000","62.615000",,,,,,,,,,,,,,"308.000000","10700.500000","10145.000000","25.000000","10700.500000","10700.500000",,,,,,,,,,,"6335832.000000","8292448.000000","478884.000000","0.000000","70822340.000000","0.000000","92036712.000000",,"3778240.000000","25238188.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000","8292448.000000","70822340.000000","92036712.000000","3778240.000000","25238188.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19644668.000000",,,,,,,,"450.000000","10497.000000",,,,,,,,,,,"3909.000000","734.000000","718.000000","770.000000","1135.000000","1108.000000","1243.000000","0.000000","0.000000","0.000000","567.000000","556.000000","573.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963694.000000",,,,, +"14837.000000","58.445000","14837.000000","58.445000","14837.000000","58.445000",,,,,,,,,,,,,,"238.000000","14732.500000","14303.000000","41.000000","14732.500000","14732.500000",,,,,,,,,,,"6148216.000000","8105116.000000","478884.000000","0.000000","70867608.000000","0.000000","92037840.000000",,"3778240.000000","25232836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000","8105116.000000","70867608.000000","92037840.000000","3778240.000000","25232836.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19640820.000000",,,,,,,,"368.000000","14556.000000",,,,,,,,,,,"4171.000000","734.000000","762.000000","759.000000","1135.000000","1108.000000","1216.000000","0.000000","0.000000","0.000000","566.000000","572.000000","569.000000","725.000000","705.000000","777.000000","160.000000","6000.000000",,"8963714.000000",,,,, +"14620.000000","58.110000","14620.000000","58.110000","14620.000000","58.110000",,,,,,,,,,,,,,"119.000000","9540.500000","9142.000000","31.000000","9540.500000","9540.500000",,,,,,,,,,,"6454456.000000","8250784.000000","478884.000000","0.000000","70884844.000000","0.000000","92036704.000000",,"3778240.000000","25222252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000","8250784.000000","70884844.000000","92036704.000000","3778240.000000","25222252.000000","1429420.000000","1630920.000000",,,,"10874400.000000","19619604.000000",,,,,,,,"293.000000","9526.000000",,,,,,,,,,,"3909.000000","729.000000","731.000000","705.000000","1135.000000","1108.000000","1135.000000","0.000000","0.000000","0.000000","562.000000","556.000000","546.000000","725.000000","705.000000","716.000000","160.000000","6000.000000",,"8963734.000000",,,,, +"13115.000000","55.760000","13115.000000","55.760000","13115.000000","55.760000",,,,,,,,,,,,,,"55.000000","9905.000000","9411.000000","30.000000","9905.000000","9905.000000",,,,,,,,,,,"6397208.000000","8102568.000000","478884.000000","0.000000","70901164.000000","0.000000","92031908.000000",,"3778240.000000","25155008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000","8102568.000000","70901164.000000","92031908.000000","3778240.000000","25155008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19627128.000000",,,,,,,,"556.000000","9788.000000",,,,,,,,,,,"3892.000000","726.000000","635.000000","665.000000","1135.000000","952.000000","952.000000","0.000000","0.000000","0.000000","560.000000","505.000000","526.000000","725.000000","617.000000","668.000000","160.000000","6000.000000",,"8963754.000000",,,,, +"13643.000000","56.595000","13643.000000","56.595000","13643.000000","56.595000",,,,,,,,,,,,,,"117.000000","9112.000000","8777.000000","49.000000","9112.000000","9112.000000",,,,,,,,,,,"5893892.000000","7473424.000000","478884.000000","0.000000","70908124.000000","0.000000","92031908.000000",,"3778240.000000","25155616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000","7473424.000000","70908124.000000","92031908.000000","3778240.000000","25155616.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622664.000000",,,,,,,,"260.000000","9068.000000",,,,,,,,,,,"3843.000000","722.000000","575.000000","629.000000","1135.000000","653.000000","872.000000","0.000000","0.000000","0.000000","556.000000","474.000000","512.000000","725.000000","537.000000","644.000000","160.000000","6000.000000",,"8963774.000000",,,,, +"13715.000000","56.715000","13715.000000","56.715000","13715.000000","56.715000",,,,,,,,,,,,,,"46.000000","7845.000000","7588.000000","177.000000","7845.000000","7845.000000",,,,,,,,,,,"5873064.000000","7410656.000000","478884.000000","0.000000","70935908.000000","0.000000","92032052.000000",,"3778240.000000","25130180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000","7410656.000000","70935908.000000","92032052.000000","3778240.000000","25130180.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19593132.000000",,,,,,,,"176.000000","7879.000000",,,,,,,,,,,"3947.000000","722.000000","579.000000","614.000000","1135.000000","692.000000","825.000000","0.000000","0.000000","0.000000","556.000000","474.000000","502.000000","725.000000","520.000000","617.000000","160.000000","6000.000000",,"8963794.000000",,,,, +"14262.000000","57.585000","14262.000000","57.585000","14262.000000","57.585000",,,,,,,,,,,,,,"13654.000000","37151.000000","23496.000000","20.000000","37151.000000","37151.000000",,,,,,,,,,,"6319860.000000","7955020.000000","478884.000000","0.000000","70950068.000000","0.000000","92032056.000000",,"3778240.000000","25117712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000","7955020.000000","70950068.000000","92032056.000000","3778240.000000","25117712.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19591664.000000",,,,,,,,"13939.000000",,,,,,,,,,,,"3991.000000","725.000000","598.000000","616.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","557.000000","484.000000","501.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963814.000000",,,,, +"13501.000000","56.390000","13501.000000","56.390000","13501.000000","56.390000",,,,,,,,,,,,,,"1486.000000","20323.000000","17417.000000","13.000000","20323.000000","20323.000000",,,,,,,,,,,"6277896.000000","8185684.000000","478884.000000","0.000000","70940056.000000","0.000000","92032036.000000",,"3778240.000000","25166424.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000","8185684.000000","70940056.000000","92032036.000000","3778240.000000","25166424.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19597392.000000",,,,,,,,"1897.000000","19846.000000",,,,,,,,,,,"3840.000000","726.000000","616.000000","617.000000","1135.000000","780.000000","825.000000","0.000000","0.000000","0.000000","558.000000","492.000000","499.000000","725.000000","587.000000","617.000000","160.000000","6000.000000",,"8963834.000000",,,,, +"15948.000000","60.215000","15948.000000","60.215000","15948.000000","60.215000",,,,,,,,,,,,,,"921.000000","17901.500000","14732.000000","49.000000","17901.500000","17901.500000",,,,,,,,,,,"6340812.000000","8584140.000000","478884.000000","0.000000","70929596.000000","0.000000","92032036.000000",,"3778240.000000","25139064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000","8584140.000000","70929596.000000","92032036.000000","3778240.000000","25139064.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604040.000000",,,,,,,,"3897.000000","16251.000000",,,,,,,,,,,"3906.000000","732.000000","667.000000","633.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","561.000000","519.000000","506.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963854.000000",,,,, +"14827.000000","58.455000","14827.000000","58.455000","14827.000000","58.455000",,,,,,,,,,,,,,"123.000000","40355.000000","29535.000000","60.000000","40355.000000","40355.000000",,,,,,,,,,,"6725944.000000","9147400.000000","478884.000000","0.000000","70927596.000000","0.000000","92031936.000000",,"3778240.000000","25141984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000","9147400.000000","70927596.000000","92031936.000000","3778240.000000","25141984.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609512.000000",,,,,,,,"20816.000000","30235.000000",,,,,,,,,,,"4002.000000","734.000000","676.000000","639.000000","1135.000000","879.000000","830.000000","0.000000","0.000000","0.000000","562.000000","528.000000","509.000000","725.000000","639.000000","618.000000","160.000000","6000.000000",,"8963874.000000",,,,, +"17543.000000","62.715000","17543.000000","62.715000","17543.000000","62.715000",,,,,,,,,,,,,,"66.000000","44525.000000","39332.000000","44.000000","44525.000000","44525.000000",,,,,,,,,,,"7103436.000000","9336144.000000","478884.000000","0.000000","70933556.000000","0.000000","92031936.000000",,"3778240.000000","25134460.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000","9336144.000000","70933556.000000","92031936.000000","3778240.000000","25134460.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609700.000000",,,,,,,,"9775.000000","39875.000000",,,,,,,,,,,"4138.000000","741.000000","746.000000","653.000000","1135.000000","879.000000","877.000000","0.000000","0.000000","0.000000","565.000000","574.000000","518.000000","725.000000","688.000000","621.000000","160.000000","6000.000000",,"8963894.000000",,,,, +"16932.000000","61.760000","16932.000000","61.760000","16932.000000","61.760000",,,,,,,,,,,,,,"121.000000","41506.000000","34277.000000","47.000000","41506.000000","41506.000000",,,,,,,,,,,"7816464.000000","9734600.000000","478884.000000","0.000000","70937756.000000","0.000000","92031936.000000",,"3778240.000000","25113644.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000","9734600.000000","70937756.000000","92031936.000000","3778240.000000","25113644.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603212.000000",,,,,,,,"13748.000000","34865.000000",,,,,,,,,,,"4017.000000","744.000000","738.000000","667.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","567.000000","588.000000","529.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963914.000000",,,,, +"17260.000000","62.270000","17260.000000","62.270000","17260.000000","62.270000",,,,,,,,,,,,,,"5112.000000","34096.000000","27104.000000","15.000000","34096.000000","34096.000000",,,,,,,,,,,"8445160.000000","10768600.000000","478884.000000","0.000000","70930596.000000","0.000000","92031936.000000",,"3778240.000000","25121492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000","10768600.000000","70930596.000000","92031936.000000","3778240.000000","25121492.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19609856.000000",,,,,,,,"8814.000000","27160.000000",,,,,,,,,,,"4354.000000","742.000000","763.000000","678.000000","1135.000000","901.000000","879.000000","0.000000","0.000000","0.000000","565.000000","614.000000","537.000000","725.000000","725.000000","639.000000","160.000000","6000.000000",,"8963934.000000",,,,, +"16146.000000","60.525000","16146.000000","60.525000","16146.000000","60.525000",,,,,,,,,,,,,,"1077.000000","13145.500000","11650.000000","11.000000","13145.500000","13145.500000",,,,,,,,,,,"7795040.000000","10097512.000000","478884.000000","0.000000","70928112.000000","0.000000","92031936.000000",,"3778240.000000","25009480.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000","10097512.000000","70928112.000000","92031936.000000","3778240.000000","25009480.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19604568.000000",,,,,,,,"1188.000000","12376.000000",,,,,,,,,,,"4030.000000","738.000000","751.000000","690.000000","1125.000000","968.000000","901.000000","0.000000","0.000000","0.000000","563.000000","606.000000","544.000000","723.000000","725.000000","666.000000","160.000000","6000.000000",,"8963954.000000",,,,, +"19704.000000","66.095000","19704.000000","66.095000","19704.000000","66.095000",,,,,,,,,,,,,,"183.000000","13959.000000","13550.000000","24.000000","13959.000000","13959.000000",,,,,,,,,,,"7585324.000000","9887512.000000","478884.000000","0.000000","70925516.000000","0.000000","92031936.000000",,"3778240.000000","25002896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000","9887512.000000","70925516.000000","92031936.000000","3778240.000000","25002896.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19602500.000000",,,,,,,,"338.000000","13846.000000",,,,,,,,,,,"4160.000000","735.000000","865.000000","716.000000","1135.000000","1344.000000","963.000000","0.000000","0.000000","0.000000","561.000000","640.000000","556.000000","721.000000","776.000000","696.000000","160.000000","6000.000000",,"8963974.000000",,,,, +"19188.000000","65.280000","19188.000000","65.280000","19188.000000","65.280000",,,,,,,,,,,,,,"243.000000","13792.500000","13334.000000","32.000000","13792.500000","13792.500000",,,,,,,,,,,"7446388.000000","9825624.000000","478884.000000","0.000000","70915720.000000","0.000000","92032060.000000",,"3778240.000000","25011560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000","9825624.000000","70915720.000000","92032060.000000","3778240.000000","25011560.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19607008.000000",,,,,,,,"404.000000","13604.000000",,,,,,,,,,,"4178.000000","734.000000","959.000000","726.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","560.000000","663.000000","559.000000","717.000000","776.000000","717.000000","160.000000","6000.000000",,"8963994.000000",,,,, +"18836.000000","64.725000","18836.000000","64.725000","18836.000000","64.725000",,,,,,,,,,,,,,"94.000000","6398.000000","6303.000000","17.000000","6398.000000","6398.000000",,,,,,,,,,,"7656100.000000","9993400.000000","478884.000000","0.000000","70902764.000000","0.000000","92032060.000000",,"3778240.000000","24972208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000","9993400.000000","70902764.000000","92032060.000000","3778240.000000","24972208.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616456.000000",,,,,,,,"199.000000",,,,,,,,,,,,"4105.000000","740.000000","996.000000","737.000000","1108.000000","1344.000000","968.000000","0.000000","0.000000","0.000000","563.000000","687.000000","567.000000","721.000000","776.000000","725.000000","160.000000","6000.000000",,"8964014.000000",,,,, +"22218.000000","70.015000","22218.000000","70.015000","22218.000000","70.015000",,,,,,,,,,,,,,"144.000000","7090.500000","6813.000000","14.000000","7090.500000","7090.500000",,,,,,,,,,,"7781932.000000","10077288.000000","478884.000000","0.000000","70893544.000000","0.000000","92032060.000000",,"3778240.000000","25030524.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000","10077288.000000","70893544.000000","92032060.000000","3778240.000000","25030524.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19622728.000000",,,,,,,,"240.000000","6983.000000",,,,,,,,,,,"4464.000000","751.000000","1011.000000","772.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","569.000000","725.000000","589.000000","725.000000","867.000000","764.000000","160.000000","6000.000000",,"8964034.000000",,,,, +"20862.000000","67.895000","20862.000000","67.895000","20862.000000","67.895000",,,,,,,,,,,,,,"141.000000","10370.500000","9803.000000","21.000000","10370.500000","10370.500000",,,,,,,,,,,"7838008.000000","9958748.000000","478884.000000","0.000000","70895844.000000","0.000000","92032060.000000",,"3778240.000000","25025008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000","9958748.000000","70895844.000000","92032060.000000","3778240.000000","25025008.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19613252.000000",,,,,,,,"636.000000","10159.000000",,,,,,,,,,,"4256.000000","758.000000","1024.000000","804.000000","1135.000000","1301.000000","1115.000000","0.000000","0.000000","0.000000","572.000000","742.000000","606.000000","733.000000","867.000000","776.000000","160.000000","6000.000000",,"8964054.000000",,,,, +"21777.000000","69.325000","21777.000000","69.325000","21777.000000","69.325000",,,,,,,,,,,,,,"43.000000","9099.500000","8565.000000","13.000000","9099.500000","9099.500000",,,,,,,,,,,"8089668.000000","10231372.000000","478884.000000","0.000000","70891416.000000","0.000000","92032060.000000",,"3778240.000000","25096832.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000","10231372.000000","70891416.000000","92032060.000000","3778240.000000","25096832.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619548.000000",,,,,,,,"212.000000","9378.000000",,,,,,,,,,,"4405.000000","768.000000","1121.000000","846.000000","1203.000000","1473.000000","1216.000000","0.000000","0.000000","0.000000","576.000000","772.000000","626.000000","754.000000","873.000000","790.000000","160.000000","6000.000000",,"8964074.000000",,,,, +"19644.000000","65.985000","19644.000000","65.985000","19644.000000","65.985000",,,,,,,,,,,,,,"52.000000","8491.000000","7533.000000","16.000000","8491.000000","8491.000000",,,,,,,,,,,"8120428.000000","10419992.000000","478884.000000","0.000000","70892932.000000","0.000000","92031940.000000",,"3778240.000000","25209924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000","10419992.000000","70892932.000000","92031940.000000","3778240.000000","25209924.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612104.000000",,,,,,,,"265.000000","9131.000000",,,,,,,,,,,"4217.000000","781.000000","1184.000000","893.000000","1216.000000","1569.000000","1301.000000","0.000000","0.000000","0.000000","581.000000","750.000000","645.000000","764.000000","873.000000","790.000000","160.000000","6000.000000",,"8964094.000000",,,,, +"20739.000000","67.695000","20739.000000","67.695000","20739.000000","67.695000",,,,,,,,,,,,,,"115.000000","10309.500000","9713.000000","18.000000","10309.500000","10309.500000",,,,,,,,,,,"7952664.000000","10126400.000000","478884.000000","0.000000","70886184.000000","0.000000","92031948.000000",,"3778240.000000","25213944.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000","10126400.000000","70886184.000000","92031948.000000","3778240.000000","25213944.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612076.000000",,,,,,,,"229.000000","10561.000000",,,,,,,,,,,"4169.000000","794.000000","1285.000000","941.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","585.000000","757.000000","661.000000","776.000000","873.000000","806.000000","160.000000","6000.000000",,"8964114.000000",,,,, +"20059.000000","66.630000","20059.000000","66.630000","20059.000000","66.630000",,,,,,,,,,,,,,"261.000000","5702.000000","5267.000000","54.000000","5702.000000","5702.000000",,,,,,,,,,,"8021972.000000","10279592.000000","478884.000000","0.000000","70883292.000000","0.000000","92031948.000000",,"3778240.000000","25194920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000","10279592.000000","70883292.000000","92031948.000000","3778240.000000","25194920.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19611308.000000",,,,,,,,"347.000000","5528.000000",,,,,,,,,,,"4395.000000","799.000000","1183.000000","960.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","588.000000","739.000000","676.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964134.000000",,,,, +"18410.000000","64.040000","18410.000000","64.040000","18410.000000","64.040000",,,,,,,,,,,,,,"90.000000","4670.000000","4434.000000","13.000000","4670.000000","4670.000000",,,,,,,,,,,"8063916.000000","10237648.000000","478884.000000","0.000000","70866136.000000","0.000000","92031948.000000",,"3778240.000000","25120348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000","10237648.000000","70866136.000000","92031948.000000","3778240.000000","25120348.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19616020.000000",,,,,,,,"167.000000","4648.000000",,,,,,,,,,,"4008.000000","804.000000","1046.000000","965.000000","1243.000000","1728.000000","1344.000000","0.000000","0.000000","0.000000","590.000000","710.000000","682.000000","777.000000","864.000000","816.000000","160.000000","6000.000000",,"8964154.000000",,,,, +"21531.000000","68.925000","21531.000000","68.925000","21531.000000","68.925000",,,,,,,,,,,,,,"90.000000","10544.000000","10264.000000","58.000000","10544.000000","10544.000000",,,,,,,,,,,"7980168.000000","9797384.000000","478880.000000","0.000000","70859644.000000","0.000000","92032092.000000",,"3778240.000000","25129472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000","9797384.000000","70859644.000000","92032092.000000","3778240.000000","25129472.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621928.000000",,,,,,,,"221.000000","10512.000000",,,,,,,,,,,"4563.000000","818.000000","940.000000","994.000000","1243.000000","1149.000000","1344.000000","0.000000","0.000000","0.000000","600.000000","727.000000","701.000000","780.000000","897.000000","829.000000","160.000000","6000.000000",,"8964174.000000",,,,, +"20467.000000","67.250000","20467.000000","67.250000","20467.000000","67.250000",,,,,,,,,,,,,,"80.000000","8175.000000","7963.000000","21.000000","8175.000000","8175.000000",,,,,,,,,,,"8154780.000000","10048588.000000","478876.000000","0.000000","70844920.000000","0.000000","92032096.000000",,"3778240.000000","25209396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000","10048588.000000","70844920.000000","92032096.000000","3778240.000000","25209396.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19629576.000000",,,,,,,,"169.000000","8137.000000",,,,,,,,,,,"4307.000000","830.000000","1011.000000","1013.000000","1243.000000","1183.000000","1344.000000","0.000000","0.000000","0.000000","606.000000","736.000000","708.000000","790.000000","897.000000","840.000000","160.000000","6000.000000",,"8964194.000000",,,,, +"19949.000000","66.435000","19949.000000","66.435000","19949.000000","66.435000",,,,,,,,,,,,,,"62.000000","8879.000000","8616.000000","50.000000","8879.000000","8879.000000",,,,,,,,,,,"8354584.000000","10069564.000000","478872.000000","0.000000","70833168.000000","0.000000","92032100.000000",,"3778240.000000","25096136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000","10069564.000000","70833168.000000","92032100.000000","3778240.000000","25096136.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19637700.000000",,,,,,,,"173.000000","8906.000000",,,,,,,,,,,"4254.000000","840.000000","1127.000000","1048.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","610.000000","752.000000","717.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964214.000000",,,,, +"19000.000000","64.940000","19000.000000","64.940000","19000.000000","64.940000",,,,,,,,,,,,,,"241.000000","6321.000000","5988.000000","17.000000","6321.000000","6321.000000",,,,,,,,,,,"7914032.000000","9608040.000000","478872.000000","0.000000","70822068.000000","0.000000","92031948.000000",,"3778240.000000","25106076.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000","9608040.000000","70822068.000000","92031948.000000","3778240.000000","25106076.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19643440.000000",,,,,,,,"321.000000","6092.000000",,,,,,,,,,,"4500.000000","844.000000","1088.000000","1059.000000","1255.000000","1720.000000","1473.000000","0.000000","0.000000","0.000000","613.000000","720.000000","722.000000","806.000000","901.000000","864.000000","160.000000","6000.000000",,"8964234.000000",,,,, +"21752.000000","69.245000","21752.000000","69.245000","21752.000000","69.245000",,,,,,,,,,,,,,"389.000000","8987.000000","8411.000000","18.000000","8987.000000","8987.000000",,,,,,,,,,,"7858408.000000","9322184.000000","478872.000000","0.000000","70808924.000000","0.000000","92031948.000000",,"3778240.000000","25257144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000","9322184.000000","70808924.000000","92031948.000000","3778240.000000","25257144.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19650060.000000",,,,,,,,"461.000000","8712.000000",,,,,,,,,,,"4439.000000","859.000000","1154.000000","1093.000000","1301.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","619.000000","736.000000","734.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964254.000000",,,,, +"22130.000000","69.860000","22130.000000","69.860000","22130.000000","69.860000",,,,,,,,,,,,,,"158.000000","8859.500000","8578.000000","12.000000","8859.500000","8859.500000",,,,,,,,,,,"7648828.000000","9122516.000000","478872.000000","0.000000","70853280.000000","0.000000","92032084.000000",,"3778240.000000","25172468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000","9122516.000000","70853280.000000","92032084.000000","3778240.000000","25172468.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19641128.000000",,,,,,,,"276.000000","8707.000000",,,,,,,,,,,"4485.000000","855.000000","1199.000000","1108.000000","1259.000000","1720.000000","1474.000000","0.000000","0.000000","0.000000","620.000000","774.000000","742.000000","815.000000","901.000000","867.000000","160.000000","6000.000000",,"8964274.000000",,,,, +"21468.000000","68.840000","21468.000000","68.840000","21468.000000","68.840000",,,,,,,,,,,,,,"152.000000","8904.000000","8624.000000","11.000000","8904.000000","8904.000000",,,,,,,,,,,"7921452.000000","9520972.000000","478868.000000","0.000000","70888072.000000","0.000000","92032088.000000",,"3778240.000000","25150448.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000","9520972.000000","70888072.000000","92032088.000000","3778240.000000","25150448.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19639768.000000",,,,,,,,"253.000000","8778.000000",,,,,,,,,,,"4365.000000","884.000000","1437.000000","1155.000000","1333.000000","2103.000000","1569.000000","0.000000","0.000000","0.000000","627.000000","794.000000","748.000000","816.000000","876.000000","867.000000","160.000000","6000.000000",,"8964294.000000",,,,, +"21192.000000","68.420000","21192.000000","68.420000","21192.000000","68.420000",,,,,,,,,,,,,,"77.000000","8814.500000","8525.000000","21.000000","8814.500000","8814.500000",,,,,,,,,,,"8131168.000000","9646800.000000","478868.000000","0.000000","70913076.000000","0.000000","92032088.000000",,"3778240.000000","25131212.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000","9646800.000000","70913076.000000","92032088.000000","3778240.000000","25131212.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621800.000000",,,,,,,,"219.000000","8807.000000",,,,,,,,,,,"4506.000000","898.000000","1522.000000","1198.000000","1343.000000","2103.000000","1720.000000","0.000000","0.000000","0.000000","630.000000","789.000000","754.000000","817.000000","877.000000","873.000000","160.000000","6000.000000",,"8964314.000000",,,,, +"20942.000000","68.030000","20942.000000","68.030000","20942.000000","68.030000",,,,,,,,,,,,,,"166.000000","7981.000000","7624.000000","17.000000","7981.000000","7981.000000",,,,,,,,,,,"7801768.000000","9339076.000000","478868.000000","0.000000","70910056.000000","0.000000","92032088.000000",,"3778240.000000","25137272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000","9339076.000000","70910056.000000","92032088.000000","3778240.000000","25137272.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19620644.000000",,,,,,,,"218.000000","7954.000000",,,,,,,,,,,"4288.000000","908.000000","1713.000000","1246.000000","1410.000000","2103.000000","1971.000000","0.000000","0.000000","0.000000","629.000000","770.000000","751.000000","815.000000","877.000000","873.000000","160.000000","6000.000000",,"8964334.000000",,,,, +"18637.000000","64.405000","18637.000000","64.405000","18637.000000","64.405000",,,,,,,,,,,,,,"57.000000","9389.500000","8234.000000","67.000000","9389.500000","9389.500000",,,,,,,,,,,"7675964.000000","9213268.000000","478868.000000","0.000000","70879884.000000","0.000000","92032108.000000",,"3778240.000000","25145844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000","9213268.000000","70879884.000000","92032108.000000","3778240.000000","25145844.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625216.000000",,,,,,,,"279.000000","10209.000000",,,,,,,,,,,"4161.000000","910.000000","1551.000000","1260.000000","1418.000000","2076.000000","1971.000000","0.000000","0.000000","0.000000","626.000000","732.000000","746.000000","806.000000","877.000000","873.000000","160.000000","6000.000000",,"8964354.000000",,,,, +"20313.000000","67.030000","20313.000000","67.030000","20313.000000","67.030000",,,,,,,,,,,,,,"123.000000","10104.000000","9114.000000","15.000000","10104.000000","10104.000000",,,,,,,,,,,"7990532.000000","9569780.000000","478868.000000","0.000000","70882516.000000","0.000000","92032108.000000",,"3778240.000000","25124596.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000","9569780.000000","70882516.000000","92032108.000000","3778240.000000","25124596.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633100.000000",,,,,,,,"652.000000","10318.000000",,,,,,,,,,,"4299.000000","912.000000","1433.000000","1261.000000","1434.000000","2013.000000","1971.000000","0.000000","0.000000","0.000000","627.000000","716.000000","743.000000","806.000000","793.000000","864.000000","160.000000","6000.000000",,"8964374.000000",,,,, +"21050.000000","68.190000","21050.000000","68.190000","21050.000000","68.190000",,,,,,,,,,,,,,"57.000000","8725.000000","8437.000000","34.000000","8725.000000","8725.000000",,,,,,,,,,,"8019488.000000","9857972.000000","478868.000000","0.000000","70889300.000000","0.000000","92032108.000000",,"3778240.000000","25188756.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000","9857972.000000","70889300.000000","92032108.000000","3778240.000000","25188756.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19624392.000000",,,,,,,,"169.000000","8785.000000",,,,,,,,,,,"4361.000000","921.000000","1296.000000","1263.000000","1458.000000","1823.000000","1971.000000","0.000000","6.000000","0.000000","629.000000","721.000000","743.000000","806.000000","795.000000","864.000000","160.000000","6000.000000",,"8964394.000000",,,,, +"20051.000000","66.605000","20051.000000","66.605000","20051.000000","66.605000",,,,,,,,,,,,,,"313.000000","11101.500000","10773.000000","33.000000","11101.500000","11101.500000",,,,,,,,,,,"8355028.000000","9825936.000000","478868.000000","0.000000","70860328.000000","0.000000","92032108.000000",,"3778240.000000","25201640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000","9825936.000000","70860328.000000","92032108.000000","3778240.000000","25201640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633288.000000",,,,,,,,"364.000000","10752.000000",,,,,,,,,,,"4205.000000","943.000000","1340.000000","1271.000000","1474.000000","1613.000000","1971.000000","0.000000","6.000000","0.000000","634.000000","734.000000","741.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964414.000000",,,,, +"20459.000000","67.240000","20459.000000","67.240000","20459.000000","67.240000",,,,,,,,,,,,,,"77.000000","10129.000000","9866.000000","29.000000","10129.000000","10129.000000",,,,,,,,,,,"8480856.000000","9909828.000000","478868.000000","0.000000","70854752.000000","0.000000","92032108.000000",,"3778240.000000","25112980.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000","9909828.000000","70854752.000000","92032108.000000","3778240.000000","25112980.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19626216.000000",,,,,,,,"195.000000","10118.000000",,,,,,,,,,,"4338.000000","960.000000","1396.000000","1303.000000","1485.000000","1817.000000","1971.000000","0.000000","6.000000","0.000000","640.000000","743.000000","744.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964434.000000",,,,, +"19677.000000","66.020000","19677.000000","66.020000","19677.000000","66.020000",,,,,,,,,,,,,,"129.000000","7633.500000","7320.000000","25.000000","7633.500000","7633.500000",,,,,,,,,,,"8767452.000000","10126384.000000","478868.000000","0.000000","70860344.000000","0.000000","92032108.000000",,"3778240.000000","25069888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000","10126384.000000","70860344.000000","92032108.000000","3778240.000000","25069888.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612560.000000",,,,,,,,"244.000000","7573.000000",,,,,,,,,,,"4221.000000","970.000000","1318.000000","1318.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","643.000000","725.000000","746.000000","806.000000","795.000000","854.000000","160.000000","6000.000000",,"8964454.000000",,,,, +"22365.000000","70.230000","22365.000000","70.230000","22365.000000","70.230000",,,,,,,,,,,,,,"117.000000","9774.500000","9438.000000","12.000000","9774.500000","9774.500000",,,,,,,,,,,"9018908.000000","10524640.000000","478864.000000","0.000000","70848632.000000","0.000000","92031908.000000",,"3778240.000000","25080800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000","10524640.000000","70848632.000000","92031908.000000","3778240.000000","25080800.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619660.000000",,,,,,,,"260.000000","9733.000000",,,,,,,,,,,"4517.000000","988.000000","1245.000000","1332.000000","1485.000000","1817.000000","1971.000000","0.000000","0.000000","0.000000","653.000000","761.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964474.000000",,,,, +"19796.000000","66.210000","19796.000000","66.210000","19796.000000","66.210000",,,,,,,,,,,,,,"66.000000","9739.500000","8481.000000","36.000000","9739.500000","9739.500000",,,,,,,,,,,"8955972.000000","10335872.000000","478860.000000","0.000000","70857604.000000","0.000000","92031888.000000",,"3778240.000000","25146856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000","10335872.000000","70857604.000000","92031888.000000","3778240.000000","25146856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612948.000000",,,,,,,,"302.000000","10630.000000",,,,,,,,,,,"4469.000000","1002.000000","1204.000000","1342.000000","1485.000000","1411.000000","1971.000000","0.000000","0.000000","0.000000","658.000000","757.000000","748.000000","817.000000","848.000000","848.000000","160.000000","6000.000000",,"8964494.000000",,,,, +"20903.000000","67.945000","20903.000000","67.945000","20903.000000","67.945000",,,,,,,,,,,,,,"127.000000","8302.000000","8174.000000","35.000000","8302.000000","8302.000000",,,,,,,,,,,"9270292.000000","10660380.000000","478856.000000","0.000000","70876908.000000","0.000000","92031916.000000",,"3778240.000000","25156168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000","10660380.000000","70876908.000000","92031916.000000","3778240.000000","25156168.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19603060.000000",,,,,,,,"333.000000",,,,,,,,,,,,"4319.000000","1019.000000","1219.000000","1343.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","665.000000","764.000000","750.000000","819.000000","848.000000","844.000000","160.000000","6000.000000",,"8964514.000000",,,,, +"19932.000000","66.420000","19932.000000","66.420000","19932.000000","66.420000",,,,,,,,,,,,,,"130.000000","7484.000000","7096.000000","22.000000","7484.000000","7484.000000",,,,,,,,,,,"9123604.000000","10904408.000000","478856.000000","0.000000","70862832.000000","0.000000","92032028.000000",,"3778240.000000","25169640.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000","10904408.000000","70862832.000000","92032028.000000","3778240.000000","25169640.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612756.000000",,,,,,,,"248.000000","7493.000000",,,,,,,,,,,"4278.000000","1030.000000","1199.000000","1354.000000","1536.000000","1536.000000","1971.000000","0.000000","0.000000","0.000000","670.000000","730.000000","750.000000","819.000000","844.000000","844.000000","160.000000","6000.000000",,"8964534.000000",,,,, +"22066.000000","69.760000","22066.000000","69.760000","22066.000000","69.760000",,,,,,,,,,,,,,"453.000000","10033.000000","9377.000000","15.000000","10033.000000","10033.000000",,,,,,,,,,,"9312344.000000","11051204.000000","478856.000000","0.000000","70851192.000000","0.000000","92032028.000000",,"3778240.000000","25177256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000","11051204.000000","70851192.000000","92032028.000000","3778240.000000","25177256.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19619468.000000",,,,,,,,"572.000000","9663.000000",,,,,,,,,,,"4662.000000","1044.000000","1189.000000","1349.000000","1549.000000","1620.000000","1971.000000","0.000000","0.000000","0.000000","676.000000","751.000000","751.000000","820.000000","930.000000","838.000000","160.000000","6000.000000",,"8964554.000000",,,,, +"22543.000000","70.500000","22543.000000","70.500000","22543.000000","70.500000",,,,,,,,,,,,,,"122.000000","8789.000000","8680.000000","49.000000","8789.000000","8789.000000",,,,,,,,,,,"9459144.000000","11104208.000000","478852.000000","0.000000","70841592.000000","0.000000","92032032.000000",,"3778240.000000","25179692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000","11104208.000000","70841592.000000","92032032.000000","3778240.000000","25179692.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19625696.000000",,,,,,,,"155.000000","8621.000000",,,,,,,,,,,"4537.000000","1066.000000","1373.000000","1391.000000","1554.000000","2227.000000","2023.000000","0.000000","0.000000","0.000000","680.000000","763.000000","752.000000","829.000000","930.000000","844.000000","160.000000","6000.000000",,"8964574.000000",,,,, +"23159.000000","71.470000","23159.000000","71.470000","23159.000000","71.470000",,,,,,,,,,,,,,"113.000000","9016.000000","8681.000000","32.000000","9016.000000","9016.000000",,,,,,,,,,,"9633748.000000","11167116.000000","478844.000000","0.000000","70849524.000000","0.000000","92032032.000000",,"3778240.000000","25174856.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000","11167116.000000","70849524.000000","92032032.000000","3778240.000000","25174856.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19631612.000000",,,,,,,,"241.000000","8996.000000",,,,,,,,,,,"4491.000000","1092.000000","1646.000000","1396.000000","1620.000000","2227.000000","2013.000000","0.000000","0.000000","0.000000","688.000000","830.000000","758.000000","844.000000","932.000000","877.000000","160.000000","6000.000000",,"8964594.000000",,,,, +"21085.000000","68.230000","21085.000000","68.230000","21085.000000","68.230000",,,,,,,,,,,,,,"698.000000","9397.000000","8698.000000","115.000000","9397.000000","9397.000000",,,,,,,,,,,"9696664.000000","11188092.000000","478844.000000","0.000000","70870196.000000","0.000000","92032032.000000",,"3778240.000000","25168848.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000","11188092.000000","70870196.000000","92032032.000000","3778240.000000","25168848.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19633380.000000",,,,,,,,"1357.000000",,,,,,,,,,,,"4520.000000","1111.000000","1761.000000","1397.000000","1720.000000","2227.000000","1971.000000","0.000000","0.000000","0.000000","693.000000","824.000000","758.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964614.000000",,,,, +"19118.000000","65.180000","19118.000000","65.180000","19118.000000","65.180000",,,,,,,,,,,,,,"568.000000","73948.000000","11791.000000","98.000000","73948.000000","73948.000000",,,,,,,,,,,"9738656.000000","11796032.000000","478844.000000","0.000000","70936452.000000","0.000000","92032084.000000",,"3778240.000000","25054504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000","11796032.000000","70936452.000000","92032084.000000","3778240.000000","25054504.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19621204.000000",,,,,,,,"4279.000000","131256.000000",,,,,,,,,,,"4160.000000","1125.000000","1469.000000","1356.000000","1720.000000","2039.000000","1923.000000","0.000000","0.000000","0.000000","698.000000","761.000000","752.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964634.000000",,,,, +"20650.000000","67.655000","20650.000000","67.655000","20650.000000","67.655000",,,,,,,,,,,,,,"524.000000","28227.000000","27702.000000","114.000000","28227.000000","28227.000000",,,,,,,,,,,"9466480.000000","11607744.000000","478844.000000","0.000000","71087800.000000","0.000000","92032084.000000",,"3778240.000000","24956988.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000","11607744.000000","71087800.000000","92032084.000000","3778240.000000","24956988.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19612188.000000",,,,,,,,"6370.000000",,,,,,,,,,,,"4477.000000","1136.000000","1287.000000","1343.000000","1720.000000","1923.000000","1923.000000","0.000000","0.000000","0.000000","703.000000","729.000000","757.000000","845.000000","947.000000","887.000000","160.000000","6000.000000",,"8964654.000000",,,,, +"17769.000000","61.215000","17769.000000","61.215000","17769.000000","61.215000",,,,,,,,,,,,,,"306.000000","56962.500000","30038.000000","75.000000","56962.500000","56962.500000",,,,,,,,,,,"7243500.000000","9426704.000000","478844.000000","0.000000","67206604.000000","0.000000","87856740.000000",,"3623976.000000","24587332.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000","9426704.000000","67206604.000000","87856740.000000","3623976.000000","24587332.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19528356.000000",,,,,,,,"6320.000000","77260.000000",,,,,,,,,,,"4097.000000","1141.000000","1032.000000","1316.000000","1720.000000","1228.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","676.000000","750.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964674.000000",,,,, +"17412.000000","60.710000","17412.000000","60.710000","17412.000000","60.710000",,,,,,,,,,,,,,"43.000000","34630.500000","31058.000000","241.000000","34630.500000","34630.500000",,,,,,,,,,,"9130940.000000","11020540.000000","478844.000000","0.000000","67313532.000000","0.000000","87856740.000000",,"3623976.000000","24420768.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000","11020540.000000","67313532.000000","87856740.000000","3623976.000000","24420768.000000","1429420.000000","1630920.000000",,,,"10879168.000000","19527504.000000",,,,,,,,"5671.000000","32488.000000",,,,,,,,,,,"4240.000000","1143.000000","907.000000","1280.000000","1720.000000","1160.000000","1923.000000","0.000000","0.000000","0.000000","709.000000","666.000000","742.000000","845.000000","792.000000","887.000000","160.000000","6000.000000",,"8964694.000000",,,,, +"17492.000000","60.880000","17492.000000","60.880000","17492.000000","60.880000",,,,,,,,,,,,,,"49.000000","35413.500000","31294.000000","156.000000","35413.500000","35413.500000",,,,,,,,,,,"9101004.000000","10940512.000000","478844.000000","0.000000","67397008.000000","0.000000","87824020.000000",,"3623976.000000","24337056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000","10940512.000000","67397008.000000","87824020.000000","3623976.000000","24337056.000000","1429420.000000","1630920.000000",,,,"10911880.000000","19535836.000000",,,,,,,,"7359.000000","32124.000000",,,,,,,,,,,"4298.000000","1146.000000","748.000000","1225.000000","1720.000000","885.000000","1923.000000","0.000000","0.000000","0.000000","712.000000","624.000000","735.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964714.000000",,,,, +"15765.000000","58.170000","15765.000000","58.170000","15765.000000","58.170000",,,,,,,,,,,,,,"45.000000","37097.000000","37051.000000","76.000000","37097.000000","37097.000000",,,,,,,,,,,"9381348.000000","11260768.000000","478844.000000","0.000000","67390668.000000","0.000000","87773120.000000",,"3623976.000000","24288384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000","11260768.000000","67390668.000000","87773120.000000","3623976.000000","24288384.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19521692.000000",,,,,,,,,,,,,,,,,,,,"4280.000000","1146.000000","695.000000","1176.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","607.000000","723.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964734.000000",,,,, +"16328.000000","59.055000","16328.000000","59.055000","16328.000000","59.055000",,,,,,,,,,,,,,"42.000000","30677.500000","23599.000000","39.000000","30677.500000","30677.500000",,,,,,,,,,,"10304092.000000","12048064.000000","478844.000000","0.000000","67399392.000000","0.000000","87773120.000000",,"3623976.000000","24296164.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000","12048064.000000","67399392.000000","87773120.000000","3623976.000000","24296164.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19529316.000000",,,,,,,,"13462.000000","24250.000000",,,,,,,,,,,"4406.000000","1145.000000","676.000000","1151.000000","1720.000000","746.000000","1923.000000","0.000000","0.000000","0.000000","716.000000","610.000000","719.000000","845.000000","677.000000","887.000000","160.000000","6000.000000",,"8964754.000000",,,,, +"13490.000000","54.630000","13490.000000","54.630000","13490.000000","54.630000",,,,,,,,,,,,,,"52.000000","31231.000000","28061.000000","22.000000","31231.000000","31231.000000",,,,,,,,,,,"10241176.000000","11775432.000000","478840.000000","0.000000","67436152.000000","0.000000","87773124.000000",,"3623976.000000","24261260.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000","11775432.000000","67436152.000000","87773124.000000","3623976.000000","24261260.000000","1429420.000000","1630920.000000",,,,"10962752.000000","19511128.000000",,,,,,,,"5631.000000","28717.000000",,,,,,,,,,,"3994.000000","1142.000000","622.000000","1101.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","714.000000","553.000000","693.000000","845.000000","652.000000","887.000000","160.000000","6000.000000",,"8964774.000000",,,,, +"13003.000000","53.855000","13003.000000","53.855000","13003.000000","53.855000",,,,,,,,,,,,,,"37.000000","7612.500000","7456.000000","17.000000","7612.500000","7612.500000",,,,,,,,,,,"9802376.000000","11588052.000000","478840.000000","0.000000","67418396.000000","0.000000","87767220.000000",,"3623976.000000","24295180.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000","11588052.000000","67418396.000000","87767220.000000","3623976.000000","24295180.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19517072.000000",,,,,,,,"122.000000","7610.000000",,,,,,,,,,,"4038.000000","1136.000000","592.000000","1054.000000","1720.000000","700.000000","1923.000000","0.000000","0.000000","0.000000","711.000000","521.000000","676.000000","845.000000","633.000000","887.000000","160.000000","6000.000000",,"8964794.000000",,,,, +"14951.000000","56.915000","14951.000000","56.915000","14951.000000","56.915000",,,,,,,,,,,,,,"118.000000","5147.500000","4942.000000","16.000000","5147.500000","5147.500000",,,,,,,,,,,"10347632.000000","12100984.000000","478840.000000","0.000000","67428312.000000","0.000000","87767216.000000",,"3623976.000000","24263912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000","12100984.000000","67428312.000000","87767216.000000","3623976.000000","24263912.000000","1429420.000000","1630920.000000",,,,"10968656.000000","19502528.000000",,,,,,,,"162.000000","5072.000000",,,,,,,,,,,"4029.000000","1135.000000","582.000000","1017.000000","1720.000000","763.000000","1923.000000","0.000000","0.000000","0.000000","710.000000","490.000000","662.000000","845.000000","578.000000","887.000000","160.000000","6000.000000",,"8964814.000000",,,,, +"15562.000000","57.855000","15562.000000","57.855000","15562.000000","57.855000",,,,,,,,,,,,,,"52.000000","7253.000000","7123.000000","13.000000","7253.000000","7253.000000",,,,,,,,,,,"10364188.000000","12116796.000000","478840.000000","0.000000","67399400.000000","0.000000","87748424.000000",,"3623976.000000","24275880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000","12116796.000000","67399400.000000","87748424.000000","3623976.000000","24275880.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19510612.000000",,,,,,,,"152.000000","7179.000000",,,,,,,,,,,"4157.000000","1133.000000","618.000000","984.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","707.000000","514.000000","650.000000","845.000000","614.000000","887.000000","160.000000","6000.000000",,"8964834.000000",,,,, +"14436.000000","56.090000","14436.000000","56.090000","14436.000000","56.090000",,,,,,,,,,,,,,"439.000000","15222.500000","14492.000000","45.000000","15222.500000","15222.500000",,,,,,,,,,,"10131436.000000","11800156.000000","478840.000000","0.000000","67396496.000000","0.000000","87748424.000000",,"3623976.000000","24302552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000","11800156.000000","67396496.000000","87748424.000000","3623976.000000","24302552.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19508180.000000",,,,,,,,"586.000000","14927.000000",,,,,,,,,,,"4018.000000","1129.000000","649.000000","946.000000","1720.000000","840.000000","1923.000000","0.000000","0.000000","0.000000","705.000000","526.000000","631.000000","845.000000","614.000000","845.000000","160.000000","6000.000000",,"8964854.000000",,,,, +"18777.000000","62.895000","18777.000000","62.895000","18777.000000","62.895000",,,,,,,,,,,,,,"494.000000","10767.500000","9618.000000","31.000000","10767.500000","10767.500000",,,,,,,,,,,"10466980.000000","11832196.000000","478840.000000","0.000000","67407620.000000","0.000000","87748424.000000",,"3623976.000000","24306748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000","11832196.000000","67407620.000000","87748424.000000","3623976.000000","24306748.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19492476.000000",,,,,,,,"698.000000","10723.000000",,,,,,,,,,,"4155.000000","1130.000000","749.000000","892.000000","1720.000000","1123.000000","1684.000000","0.000000","0.000000","0.000000","706.000000","578.000000","625.000000","845.000000","720.000000","793.000000","160.000000","6000.000000",,"8964874.000000",,,,, +"20174.000000","65.090000","20174.000000","65.090000","20174.000000","65.090000",,,,,,,,,,,,,,"1631.000000","31377.000000","28593.000000","46.000000","31377.000000","31377.000000",,,,,,,,,,,"10634892.000000","11874276.000000","478840.000000","0.000000","67418980.000000","0.000000","87748564.000000",,"3623976.000000","24295560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000","11874276.000000","67418980.000000","87748564.000000","3623976.000000","24295560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19482308.000000",,,,,,,,"1993.000000","30537.000000",,,,,,,,,,,"4378.000000","1134.000000","978.000000","851.000000","1725.000000","1725.000000","1329.000000","0.000000","0.000000","0.000000","706.000000","643.000000","613.000000","845.000000","793.000000","782.000000","160.000000","6000.000000",,"8964894.000000",,,,, +"23433.000000","70.190000","23433.000000","70.190000","23433.000000","70.190000",,,,,,,,,,,,,,"81.000000","13906.500000","13331.000000","36.000000","13906.500000","13906.500000",,,,,,,,,,,"10491788.000000","11563400.000000","478840.000000","0.000000","67409532.000000","0.000000","87748564.000000",,"3623976.000000","24275560.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000","11563400.000000","67409532.000000","87748564.000000","3623976.000000","24275560.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19488448.000000",,,,,,,,"269.000000","14131.000000",,,,,,,,,,,"4498.000000","1146.000000","1252.000000","844.000000","1725.000000","1725.000000","1421.000000","0.000000","0.000000","0.000000","708.000000","727.000000","612.000000","848.000000","861.000000","781.000000","160.000000","6000.000000",,"8964914.000000",,,,, +"22995.000000","69.505000","22995.000000","69.505000","22995.000000","69.505000",,,,,,,,,,,,,,"144.000000","11218.500000","10950.000000","41.000000","11218.500000","11218.500000",,,,,,,,,,,"10596648.000000","12055652.000000","478840.000000","0.000000","67411316.000000","0.000000","87748564.000000",,"3623976.000000","24277072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000","12055652.000000","67411316.000000","87748564.000000","3623976.000000","24277072.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19494444.000000",,,,,,,,"251.000000","11092.000000",,,,,,,,,,,"4808.000000","1153.000000","1398.000000","862.000000","1725.000000","1725.000000","1462.000000","0.000000","0.000000","0.000000","710.000000","800.000000","629.000000","854.000000","1011.000000","793.000000","160.000000","6000.000000",,"8964934.000000",,,,, +"22729.000000","69.080000","22729.000000","69.080000","22729.000000","69.080000",,,,,,,,,,,,,,"54.000000","12000.000000","11462.000000","23.000000","12000.000000","12000.000000",,,,,,,,,,,"10554548.000000","12076468.000000","478840.000000","0.000000","67402148.000000","0.000000","87748408.000000",,"3623976.000000","24286996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000","12076468.000000","67402148.000000","87748408.000000","3623976.000000","24286996.000000","1429420.000000","1630920.000000",,,,"10987320.000000","19500916.000000",,,,,,,,"561.000000","11923.000000",,,,,,,,,,,"4521.000000","1166.000000","1505.000000","894.000000","1725.000000","1612.000000","1539.000000","0.000000","0.000000","0.000000","712.000000","829.000000","633.000000","861.000000","1011.000000","842.000000","160.000000","6000.000000",,"8964954.000000",,,,, +"22134.000000","68.145000","22134.000000","68.145000","22134.000000","68.145000",,,,,,,,,,,,,,"44.000000","9592.500000","9349.000000","16.000000","9592.500000","9592.500000",,,,,,,,,,,"10601900.000000","12305536.000000","478840.000000","0.000000","67393644.000000","0.000000","87744176.000000",,"3623976.000000","24297204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000","12305536.000000","67393644.000000","87744176.000000","3623976.000000","24297204.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19506464.000000",,,,,,,,"176.000000","9615.000000",,,,,,,,,,,"4423.000000","1172.000000","1501.000000","938.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","836.000000","644.000000","854.000000","1011.000000","852.000000","160.000000","6000.000000",,"8964974.000000",,,,, +"22793.000000","69.190000","22793.000000","69.190000","22793.000000","69.190000",,,,,,,,,,,,,,"117.000000","11742.500000","11529.000000","25.000000","11742.500000","11742.500000",,,,,,,,,,,"10307292.000000","12062776.000000","478840.000000","0.000000","67411228.000000","0.000000","87744316.000000",,"3623976.000000","24286000.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000","12062776.000000","67411228.000000","87744316.000000","3623976.000000","24286000.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484988.000000",,,,,,,,"222.000000","11616.000000",,,,,,,,,,,"4459.000000","1170.000000","1428.000000","966.000000","1725.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","795.000000","654.000000","861.000000","896.000000","861.000000","160.000000","6000.000000",,"8964994.000000",,,,, +"21547.000000","67.230000","21547.000000","67.230000","21547.000000","67.230000",,,,,,,,,,,,,,"156.000000","15739.500000","15346.000000","32.000000","15739.500000","15739.500000",,,,,,,,,,,"10244376.000000","12209576.000000","478840.000000","0.000000","67395176.000000","0.000000","87744316.000000",,"3623976.000000","24298520.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000","12209576.000000","67395176.000000","87744316.000000","3623976.000000","24298520.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492720.000000",,,,,,,,"347.000000","15630.000000",,,,,,,,,,,"4706.000000","1165.000000","1263.000000","997.000000","1720.000000","1704.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","808.000000","670.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965014.000000",,,,, +"19386.000000","63.845000","19386.000000","63.845000","19386.000000","63.845000",,,,,,,,,,,,,,"2291.000000","12822.000000","10530.000000","10.000000","12822.000000","12822.000000",,,,,,,,,,,"8502588.000000","10515444.000000","478840.000000","0.000000","67399884.000000","0.000000","87745056.000000",,"3623976.000000","24296168.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000","10515444.000000","67399884.000000","87745056.000000","3623976.000000","24296168.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19484108.000000",,,,,,,,"2307.000000",,,,,,,,,,,,"4290.000000","1166.000000","1107.000000","1020.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","779.000000","678.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965034.000000",,,,, +"20361.000000","65.380000","20361.000000","65.380000","20361.000000","65.380000",,,,,,,,,,,,,,"3888.000000","21597.000000","17326.000000","12.000000","21597.000000","21597.000000",,,,,,,,,,,"8417964.000000","10735480.000000","478840.000000","0.000000","67406404.000000","0.000000","87744316.000000",,"3623976.000000","24313248.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000","10735480.000000","67406404.000000","87744316.000000","3623976.000000","24313248.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19470960.000000",,,,,,,,"4286.000000","17693.000000",,,,,,,,,,,"4463.000000","1170.000000","1050.000000","1041.000000","1720.000000","1543.000000","1602.000000","0.000000","0.000000","0.000000","717.000000","760.000000","685.000000","861.000000","920.000000","874.000000","160.000000","6000.000000",,"8965054.000000",,,,, +"18921.000000","63.110000","18921.000000","63.110000","18921.000000","63.110000",,,,,,,,,,,,,,"140.000000","22579.500000","22135.000000","27.000000","22579.500000","22579.500000",,,,,,,,,,,"8277608.000000","10484556.000000","478840.000000","0.000000","67394392.000000","0.000000","87745048.000000",,"3623976.000000","24325688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000","10484556.000000","67394392.000000","87745048.000000","3623976.000000","24325688.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19479164.000000",,,,,,,,"357.000000","22525.000000",,,,,,,,,,,"4327.000000","1165.000000","948.000000","1063.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","715.000000","715.000000","702.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965074.000000",,,,, +"17829.000000","61.400000","17829.000000","61.400000","17829.000000","61.400000",,,,,,,,,,,,,,"66.000000","9963.000000","9682.000000","16.000000","9963.000000","9963.000000",,,,,,,,,,,"8844996.000000","10912760.000000","478840.000000","0.000000","67389520.000000","0.000000","87744316.000000",,"3623976.000000","24263572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000","10912760.000000","67389520.000000","87744316.000000","3623976.000000","24263572.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19480320.000000",,,,,,,,"208.000000","9969.000000",,,,,,,,,,,"4100.000000","1164.000000","977.000000","1097.000000","1720.000000","1311.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","695.000000","713.000000","854.000000","822.000000","874.000000","160.000000","6000.000000",,"8965094.000000",,,,, +"19716.000000","64.355000","19716.000000","64.355000","19716.000000","64.355000",,,,,,,,,,,,,,"53.000000","11291.000000","10996.000000","32.000000","11291.000000","11291.000000",,,,,,,,,,,"8804016.000000","10473328.000000","478840.000000","0.000000","67381248.000000","0.000000","87744132.000000",,"3623976.000000","24313468.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000","10473328.000000","67381248.000000","87744132.000000","3623976.000000","24313468.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19481956.000000",,,,,,,,"192.000000","11340.000000",,,,,,,,,,,"4287.000000","1163.000000","962.000000","1117.000000","1720.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","713.000000","688.000000","724.000000","854.000000","839.000000","874.000000","160.000000","6000.000000",,"8965114.000000",,,,, +"19884.000000","64.610000","19884.000000","64.610000","19884.000000","64.610000",,,,,,,,,,,,,,"76.000000","12530.500000","11835.000000","12.000000","12530.500000","12530.500000",,,,,,,,,,,"8846148.000000","10725164.000000","478840.000000","0.000000","67364968.000000","0.000000","87744316.000000",,"3623976.000000","24327372.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000","10725164.000000","67364968.000000","87744316.000000","3623976.000000","24327372.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19491388.000000",,,,,,,,"296.000000","12853.000000",,,,,,,,,,,"4321.000000","1161.000000","1025.000000","1144.000000","1704.000000","1198.000000","1602.000000","0.000000","0.000000","0.000000","712.000000","686.000000","736.000000","852.000000","839.000000","874.000000","160.000000","6000.000000",,"8965134.000000",,,,, +"18343.000000","62.190000","18343.000000","62.190000","18343.000000","62.190000",,,,,,,,,,,,,,"393.000000","12405.000000","10930.000000","16.000000","12405.000000","12405.000000",,,,,,,,,,,"8821356.000000","10509732.000000","478840.000000","0.000000","67358224.000000","0.000000","87744316.000000",,"3623976.000000","24343916.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000","10509732.000000","67358224.000000","87744316.000000","3623976.000000","24343916.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19492784.000000",,,,,,,,"621.000000","12864.000000",,,,,,,,,,,"4289.000000","1152.000000","974.000000","1162.000000","1704.000000","1181.000000","1602.000000","0.000000","0.000000","0.000000","710.000000","700.000000","748.000000","845.000000","839.000000","874.000000","160.000000","6000.000000",,"8965154.000000",,,,, +"21580.000000","67.270000","21580.000000","67.270000","21580.000000","67.270000",,,,,,,,,,,,,,"54.000000","15714.000000","15232.000000","25.000000","15714.000000","15714.000000",,,,,,,,,,,"8674556.000000","10288956.000000","478840.000000","0.000000","67371276.000000","0.000000","87744316.000000",,"3623976.000000","24331708.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000","10288956.000000","67371276.000000","87744316.000000","3623976.000000","24331708.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19475248.000000",,,,,,,,"249.000000","15892.000000",,,,,,,,,,,"4329.000000","1156.000000","1091.000000","1186.000000","1704.000000","1645.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","705.000000","750.000000","845.000000","845.000000","874.000000","160.000000","6000.000000",,"8965174.000000",,,,, +"22989.000000","69.475000","22989.000000","69.475000","22989.000000","69.475000",,,,,,,,,,,,,,"72.000000","14572.500000","14316.000000","58.000000","14572.500000","14572.500000",,,,,,,,,,,"8422764.000000","9869396.000000","478840.000000","0.000000","67365784.000000","0.000000","87744184.000000",,"3623976.000000","24334948.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000","9869396.000000","67365784.000000","87744184.000000","3623976.000000","24334948.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19473824.000000",,,,,,,,"218.000000","14537.000000",,,,,,,,,,,"4660.000000","1149.000000","1256.000000","1200.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","711.000000","769.000000","762.000000","861.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965194.000000",,,,, +"20178.000000","65.075000","20178.000000","65.075000","20178.000000","65.075000",,,,,,,,,,,,,,"56.000000","9925.000000","9680.000000","47.000000","9925.000000","9925.000000",,,,,,,,,,,"8632480.000000","9995220.000000","478840.000000","0.000000","67376492.000000","0.000000","87744184.000000",,"3623976.000000","24310516.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000","9995220.000000","67376492.000000","87744184.000000","3623976.000000","24310516.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19472368.000000",,,,,,,,"191.000000","9921.000000",,,,,,,,,,,"4349.000000","1139.000000","1330.000000","1178.000000","1684.000000","1970.000000","1605.000000","0.000000","0.000000","0.000000","709.000000","779.000000","758.000000","852.000000","1015.000000","896.000000","160.000000","6000.000000",,"8965214.000000",,,,, +"22779.000000","69.145000","22779.000000","69.145000","22779.000000","69.145000",,,,,,,,,,,,,,"1318.000000","13088.000000","11585.000000","36.000000","13088.000000","13088.000000",,,,,,,,,,,"8678240.000000","10226676.000000","478840.000000","0.000000","67364876.000000","0.000000","87744184.000000",,"3623976.000000","24331416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000","10226676.000000","67364876.000000","87744184.000000","3623976.000000","24331416.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19477800.000000",,,,,,,,"1426.000000","11845.000000",,,,,,,,,,,"4427.000000","1137.000000","1425.000000","1191.000000","1684.000000","1970.000000","1686.000000","0.000000","0.000000","0.000000","711.000000","805.000000","751.000000","852.000000","1015.000000","884.000000","160.000000","6000.000000",,"8965234.000000",,,,, +"23124.000000","69.675000","23124.000000","69.675000","23124.000000","69.675000",,,,,,,,,,,,,,"9409.000000","23507.500000","13633.000000","9.000000","23507.500000","23507.500000",,,,,,,,,,,"8741152.000000","10289592.000000","478840.000000","0.000000","67347184.000000","0.000000","87744184.000000",,"3623976.000000","24345676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000","10289592.000000","67347184.000000","87744184.000000","3623976.000000","24345676.000000","1429420.000000","1630920.000000",,,,"10991552.000000","19487948.000000",,,,,,,,"9979.000000","13992.000000",,,,,,,,,,,"4539.000000","1134.000000","1326.000000","1164.000000","1684.000000","1904.000000","1696.000000","0.000000","0.000000","0.000000","715.000000","798.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965254.000000",,,,, +"22362.000000","68.480000","22362.000000","68.480000","22362.000000","68.480000",,,,,,,,,,,,,,"3888.000000","27573.500000","23244.000000","32.000000","27573.500000","27573.500000",,,,,,,,,,,"8322880.000000","9955464.000000","478840.000000","0.000000","67334616.000000","0.000000","87749440.000000",,"3623976.000000","24389676.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000","9955464.000000","67334616.000000","87749440.000000","3623976.000000","24389676.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19495372.000000",,,,,,,,"4271.000000","23742.000000",,,,,,,,,,,"4404.000000","1133.000000","1335.000000","1145.000000","1684.000000","1904.000000","1686.000000","0.000000","0.000000","0.000000","716.000000","822.000000","755.000000","856.000000","856.000000","874.000000","160.000000","6000.000000",,"8965274.000000",,,,, +"22521.000000","68.710000","22521.000000","68.710000","22521.000000","68.710000",,,,,,,,,,,,,,"2300.000000","17586.000000","15000.000000","20.000000","17586.000000","17586.000000",,,,,,,,,,,"8155104.000000","9753136.000000","478840.000000","0.000000","67306308.000000","0.000000","87749440.000000",,"3623976.000000","24364304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000","9753136.000000","67306308.000000","87749440.000000","3623976.000000","24364304.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19502648.000000",,,,,,,,"2508.000000","15363.000000",,,,,,,,,,,"4629.000000","1133.000000","1240.000000","1154.000000","1684.000000","1696.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","836.000000","759.000000","874.000000","956.000000","896.000000","160.000000","6000.000000",,"8965294.000000",,,,, +"21424.000000","66.990000","21424.000000","66.990000","21424.000000","66.990000",,,,,,,,,,,,,,"96.000000","22483.000000","22387.000000","51.000000","22483.000000","22483.000000",,,,,,,,,,,"7966224.000000","9794948.000000","478840.000000","0.000000","67294236.000000","0.000000","87749300.000000",,"3623976.000000","24378484.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000","9794948.000000","67294236.000000","87749300.000000","3623976.000000","24378484.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19512828.000000",,,,,,,,"313.000000",,,,,,,,,,,,"4353.000000","1125.000000","1204.000000","1152.000000","1684.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","720.000000","805.000000","755.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965314.000000",,,,, +"19240.000000","63.565000","19240.000000","63.565000","19240.000000","63.565000",,,,,,,,,,,,,,"524.000000","18280.000000","17320.000000","29.000000","18280.000000","18280.000000",,,,,,,,,,,"7631132.000000","9501804.000000","478840.000000","0.000000","67291652.000000","0.000000","87749756.000000",,"3623976.000000","24378604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000","9501804.000000","67291652.000000","87749756.000000","3623976.000000","24378604.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19515996.000000",,,,,,,,"1103.000000","17611.000000",,,,,,,,,,,"4192.000000","1118.000000","1179.000000","1159.000000","1645.000000","1589.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","776.000000","754.000000","874.000000","956.000000","884.000000","160.000000","6000.000000",,"8965334.000000",,,,, +"22323.000000","68.390000","22323.000000","68.390000","22323.000000","68.390000",,,,,,,,,,,,,,"296.000000","18261.500000","17642.000000","39.000000","18261.500000","18261.500000",,,,,,,,,,,"7928092.000000","9597336.000000","478840.000000","0.000000","67291440.000000","0.000000","87749452.000000",,"3623976.000000","24413636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000","9597336.000000","67291440.000000","87749452.000000","3623976.000000","24413636.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19506716.000000",,,,,,,,"503.000000","18082.000000",,,,,,,,,,,"4619.000000","1119.000000","1109.000000","1166.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","721.000000","758.000000","758.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965354.000000",,,,, +"19720.000000","64.320000","19720.000000","64.320000","19720.000000","64.320000",,,,,,,,,,,,,,"321.000000","28277.500000","27665.000000","32.000000","28277.500000","28277.500000",,,,,,,,,,,"8200724.000000","9765100.000000","478840.000000","0.000000","67294692.000000","0.000000","87749452.000000",,"3623976.000000","24410136.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000","9765100.000000","67294692.000000","87749452.000000","3623976.000000","24410136.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19499164.000000",,,,,,,,"591.000000","27977.000000",,,,,,,,,,,"4365.000000","1113.000000","1062.000000","1175.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","744.000000","761.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965374.000000",,,,, +"20325.000000","65.265000","20325.000000","65.265000","20325.000000","65.265000",,,,,,,,,,,,,,"191.000000","24800.000000","24248.000000","29.000000","24800.000000","24800.000000",,,,,,,,,,,"8200724.000000","9828012.000000","478840.000000","0.000000","67296340.000000","0.000000","87749452.000000",,"3623976.000000","24375032.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000","9828012.000000","67296340.000000","87749452.000000","3623976.000000","24375032.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19492948.000000",,,,,,,,"431.000000","24729.000000",,,,,,,,,,,"4367.000000","1107.000000","1033.000000","1170.000000","1645.000000","1300.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","759.000000","767.000000","884.000000","973.000000","896.000000","160.000000","6000.000000",,"8965394.000000",,,,, +"20975.000000","66.285000","20975.000000","66.285000","20975.000000","66.285000",,,,,,,,,,,,,,"8745.000000","32989.000000","24039.000000","18.000000","32989.000000","32989.000000",,,,,,,,,,,"7541168.000000","9389708.000000","478840.000000","0.000000","67297880.000000","0.000000","87749452.000000",,"3623976.000000","24388360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000","9389708.000000","67297880.000000","87749452.000000","3623976.000000","24388360.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19488428.000000",,,,,,,,"8811.000000","24382.000000",,,,,,,,,,,"4194.000000","1105.000000","1035.000000","1180.000000","1645.000000","1231.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","740.000000","769.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965414.000000",,,,, +"20127.000000","64.945000","20127.000000","64.945000","20127.000000","64.945000",,,,,,,,,,,,,,"1583.000000","34497.000000","31214.000000","40.000000","34497.000000","34497.000000",,,,,,,,,,,"7447336.000000","9139156.000000","478840.000000","0.000000","67282040.000000","0.000000","87749416.000000",,"3623976.000000","24402028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000","9139156.000000","67282040.000000","87749416.000000","3623976.000000","24402028.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19497984.000000",,,,,,,,"2204.000000","33992.000000",,,,,,,,,,,"4462.000000","1103.000000","1060.000000","1182.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","719.000000","737.000000","771.000000","884.000000","835.000000","896.000000","160.000000","6000.000000",,"8965434.000000",,,,, +"20122.000000","64.935000","20122.000000","64.935000","20122.000000","64.935000",,,,,,,,,,,,,,"667.000000","25513.000000","24331.000000","32.000000","25513.000000","25513.000000",,,,,,,,,,,"7447388.000000","9118236.000000","478840.000000","0.000000","67269820.000000","0.000000","87749468.000000",,"3623976.000000","24433940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000","9118236.000000","67269820.000000","87749468.000000","3623976.000000","24433940.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19505476.000000",,,,,,,,"807.000000","25220.000000",,,,,,,,,,,"4429.000000","1101.000000","1096.000000","1195.000000","1645.000000","1253.000000","1686.000000","0.000000","0.000000","0.000000","718.000000","735.000000","774.000000","874.000000","772.000000","896.000000","160.000000","6000.000000",,"8965454.000000",,,,, +"21932.000000","67.765000","21932.000000","67.765000","21932.000000","67.765000",,,,,,,,,,,,,,"1844.000000","16545.500000","14418.000000","19.000000","16545.500000","16545.500000",,,,,,,,,,,"7342528.000000","8866576.000000","478828.000000","0.000000","67263556.000000","0.000000","87749480.000000",,"3623976.000000","24414912.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000","8866576.000000","67263556.000000","87749480.000000","3623976.000000","24414912.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19510756.000000",,,,,,,,"2126.000000","14702.000000",,,,,,,,,,,"4554.000000","1093.000000","1201.000000","1202.000000","1612.000000","2000.000000","1696.000000","0.000000","0.000000","0.000000","717.000000","746.000000","777.000000","874.000000","860.000000","896.000000","160.000000","6000.000000",,"8965474.000000",,,,, +"18947.000000","63.095000","18947.000000","63.095000","18947.000000","63.095000",,,,,,,,,,,,,,"7864.000000","36961.000000","29096.000000","69.000000","36961.000000","36961.000000",,,,,,,,,,,"7209360.000000","8908996.000000","478828.000000","0.000000","67269840.000000","0.000000","87749480.000000",,"3623976.000000","24407688.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000","8908996.000000","67269840.000000","87749480.000000","3623976.000000","24407688.000000","1429420.000000","1630920.000000",,,,"10986428.000000","19501508.000000",,,,,,,,"8155.000000",,,,,,,,,,,,"4361.000000","1073.000000","1193.000000","1169.000000","1589.000000","2000.000000","1686.000000","0.000000","0.000000","0.000000","714.000000","748.000000","767.000000","860.000000","861.000000","860.000000","160.000000","6000.000000",,"8965494.000000",,,,, +"19902.000000","64.590000","19902.000000","64.590000","19902.000000","64.590000",,,,,,,,,,,,,,"11021.000000","28991.000000","16694.000000","12.000000","28991.000000","28991.000000",,,,,,,,,,,"7587760.000000","9245604.000000","478828.000000","0.000000","67269988.000000","0.000000","87753140.000000",,"3623976.000000","24383920.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000","9245604.000000","67269988.000000","87753140.000000","3623976.000000","24383920.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19509368.000000",,,,,,,,"11216.000000","19050.000000",,,,,,,,,,,"4373.000000","1059.000000","1129.000000","1154.000000","1543.000000","2000.000000","1589.000000","0.000000","0.000000","0.000000","712.000000","737.000000","766.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965514.000000",,,,, +"18103.000000","61.770000","18103.000000","61.770000","18103.000000","61.770000",,,,,,,,,,,,,,"14319.000000","35316.000000","19667.000000","8.000000","35316.000000","35316.000000",,,,,,,,,,,"7818448.000000","9350460.000000","478828.000000","0.000000","67266780.000000","0.000000","87753140.000000",,"3623976.000000","24442396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000","9350460.000000","67266780.000000","87753140.000000","3623976.000000","24442396.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19503508.000000",,,,,,,,"14677.000000","21968.000000",,,,,,,,,,,"4324.000000","1052.000000","929.000000","1103.000000","1543.000000","1553.000000","1337.000000","0.000000","0.000000","0.000000","712.000000","698.000000","756.000000","856.000000","861.000000","860.000000","160.000000","6000.000000",,"8965534.000000",,,,, +"20337.000000","65.270000","20337.000000","65.270000","20337.000000","65.270000",,,,,,,,,,,,,,"12592.000000","36000.500000","21888.000000","38.000000","36000.500000","36000.500000",,,,,,,,,,,"8069964.000000","9952684.000000","478828.000000","0.000000","67267976.000000","0.000000","87752992.000000",,"3623976.000000","24440064.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000","9952684.000000","67267976.000000","87752992.000000","3623976.000000","24440064.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19497048.000000",,,,,,,,"13151.000000","24369.000000",,,,,,,,,,,"4241.000000","1048.000000","914.000000","1087.000000","1543.000000","1239.000000","1300.000000","0.000000","0.000000","0.000000","711.000000","688.000000","745.000000","856.000000","776.000000","860.000000","160.000000","6000.000000",,"8965554.000000",,,,, +"20978.000000","66.290000","20978.000000","66.290000","20978.000000","66.290000",,,,,,,,,,,,,,"20547.000000","43035.000000","20864.000000","21.000000","43035.000000","43035.000000",,,,,,,,,,,"8028020.000000","9826852.000000","478828.000000","0.000000","67299084.000000","0.000000","87752992.000000",,"3623976.000000","24393256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000","9826852.000000","67299084.000000","87752992.000000","3623976.000000","24393256.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19461584.000000",,,,,,,,"21418.000000","23240.000000",,,,,,,,,,,"4436.000000","1054.000000","967.000000","1081.000000","1543.000000","1338.000000","1337.000000","0.000000","0.000000","0.000000","714.000000","710.000000","743.000000","856.000000","849.000000","860.000000","160.000000","6000.000000",,"8965574.000000",,,,, +"22341.000000","68.415000","22341.000000","68.415000","22341.000000","68.415000",,,,,,,,,,,,,,"9217.000000","37180.000000","26319.000000","41.000000","37180.000000","37180.000000",,,,,,,,,,,"8300792.000000","10183792.000000","478828.000000","0.000000","67278240.000000","0.000000","87753132.000000",,"3623976.000000","24429280.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000","10183792.000000","67278240.000000","87753132.000000","3623976.000000","24429280.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19469744.000000",,,,,,,,"9845.000000","28979.000000",,,,,,,,,,,"4534.000000","1060.000000","1019.000000","1059.000000","1543.000000","1338.000000","1300.000000","0.000000","0.000000","0.000000","717.000000","745.000000","738.000000","857.000000","857.000000","849.000000","160.000000","6000.000000",,"8965594.000000",,,,, +"19414.000000","63.820000","19414.000000","63.820000","19414.000000","63.820000",,,,,,,,,,,,,,"5640.000000","22766.000000","17125.000000","50.000000","22766.000000","22766.000000",,,,,,,,,,,"8088832.000000","9815668.000000","478828.000000","0.000000","67258108.000000","0.000000","87753132.000000",,"3623976.000000","24445160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000","9815668.000000","67258108.000000","87753132.000000","3623976.000000","24445160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19481320.000000",,,,,,,,,"19276.000000",,,,,,,,,,,"4281.000000","1069.000000","1057.000000","1057.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","720.000000","761.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965614.000000",,,,, +"19932.000000","64.615000","19932.000000","64.615000","19932.000000","64.615000",,,,,,,,,,,,,,"239.000000","19682.000000","18430.000000","34.000000","19682.000000","19682.000000",,,,,,,,,,,"8319532.000000","9878592.000000","478828.000000","0.000000","67224652.000000","0.000000","87753140.000000",,"3623976.000000","24459664.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000","9878592.000000","67224652.000000","87753140.000000","3623976.000000","24459664.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19488988.000000",,,,,,,,"530.000000","20164.000000",,,,,,,,,,,"4375.000000","1075.000000","998.000000","1045.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","723.000000","737.000000","736.000000","860.000000","860.000000","857.000000","160.000000","6000.000000",,"8965634.000000",,,,, +"19438.000000","63.840000","19438.000000","63.840000","19438.000000","63.840000",,,,,,,,,,,,,,"9334.000000","28557.500000","17807.000000","24.000000","28557.500000","28557.500000",,,,,,,,,,,"8151756.000000","9605676.000000","478828.000000","0.000000","67231212.000000","0.000000","87753140.000000",,"3623976.000000","24454028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000","9605676.000000","67231212.000000","87753140.000000","3623976.000000","24454028.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19491776.000000",,,,,,,,"9611.000000","20363.000000",,,,,,,,,,,"4342.000000","1079.000000","961.000000","1029.000000","1543.000000","1343.000000","1337.000000","0.000000","0.000000","0.000000","725.000000","723.000000","731.000000","860.000000","860.000000","849.000000","160.000000","6000.000000",,"8965654.000000",,,,, +"19749.000000","64.325000","19749.000000","64.325000","19749.000000","64.325000",,,,,,,,,,,,,,"4090.000000","25298.500000","19650.000000","20.000000","25298.500000","25298.500000",,,,,,,,,,,"7764768.000000","9223948.000000","478828.000000","0.000000","67218852.000000","0.000000","87753000.000000",,"3623976.000000","24465744.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000","9223948.000000","67218852.000000","87753000.000000","3623976.000000","24465744.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19499484.000000",,,,,,,,"4462.000000","22394.000000",,,,,,,,,,,"4342.000000","1092.000000","968.000000","1039.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","731.000000","716.000000","730.000000","860.000000","841.000000","849.000000","160.000000","6000.000000",,"8965674.000000",,,,, +"19231.000000","63.510000","19231.000000","63.510000","19231.000000","63.510000",,,,,,,,,,,,,,"904.000000","12927.000000","10993.000000","6.000000","12927.000000","12927.000000",,,,,,,,,,,"7701852.000000","9161036.000000","478828.000000","0.000000","67208468.000000","0.000000","87753000.000000",,"3623976.000000","24420752.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000","9161036.000000","67208468.000000","87753000.000000","3623976.000000","24420752.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19507148.000000",,,,,,,,"738.000000","13219.000000",,,,,,,,,,,"4193.000000","1102.000000","1000.000000","1038.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","736.000000","715.000000","727.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965694.000000",,,,, +"16486.000000","59.210000","16486.000000","59.210000","16486.000000","59.210000",,,,,,,,,,,,,,"13563.000000","27741.000000","14178.000000","7.000000","27741.000000","27741.000000",,,,,,,,,,,"7827820.000000","9307980.000000","478828.000000","0.000000","67207568.000000","0.000000","87753140.000000",,"3623976.000000","24430696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000","9307980.000000","67207568.000000","87753140.000000","3623976.000000","24430696.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502720.000000",,,,,,,,"14339.000000",,,,,,,,,,,,"4120.000000","1104.000000","957.000000","1013.000000","1543.000000","1207.000000","1337.000000","0.000000","0.000000","0.000000","737.000000","679.000000","718.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965714.000000",,,,, +"16789.000000","59.680000","16789.000000","59.680000","16789.000000","59.680000",,,,,,,,,,,,,,"5747.000000","27894.500000","20817.000000","12.000000","27894.500000","27894.500000",,,,,,,,,,,"8376640.000000","9992532.000000","478828.000000","0.000000","67198968.000000","0.000000","87753140.000000",,"3623976.000000","24435160.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000","9992532.000000","67198968.000000","87753140.000000","3623976.000000","24435160.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502440.000000",,,,,,,,"6162.000000","23062.000000",,,,,,,,,,,"4093.000000","1108.000000","853.000000","997.000000","1543.000000","1152.000000","1337.000000","0.000000","0.000000","0.000000","738.000000","628.000000","708.000000","860.000000","790.000000","849.000000","160.000000","6000.000000",,"8965734.000000",,,,, +"17978.000000","61.540000","17978.000000","61.540000","17978.000000","61.540000",,,,,,,,,,,,,,"13126.000000","48753.500000","34300.000000","11.000000","48753.500000","48753.500000",,,,,,,,,,,"8376640.000000","10076416.000000","478828.000000","0.000000","67197628.000000","0.000000","87753140.000000",,"3623976.000000","24513368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000","10076416.000000","67197628.000000","87753140.000000","3623976.000000","24513368.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19502448.000000",,,,,,,,"13317.000000","36764.000000",,,,,,,,,,,"4184.000000","1111.000000","789.000000","977.000000","1543.000000","951.000000","1337.000000","0.000000","0.000000","0.000000","742.000000","623.000000","704.000000","860.000000","744.000000","849.000000","160.000000","6000.000000",,"8965754.000000",,,,, +"18273.000000","62.000000","18273.000000","62.000000","18273.000000","62.000000",,,,,,,,,,,,,,"9442.000000","32568.500000","21357.000000","10.000000","32568.500000","32568.500000",,,,,,,,,,,"8166924.000000","9929896.000000","478828.000000","0.000000","67192796.000000","0.000000","87753140.000000",,"3623976.000000","24477508.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000","9929896.000000","67192796.000000","87753140.000000","3623976.000000","24477508.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19506080.000000",,,,,,,,"10268.000000","24070.000000",,,,,,,,,,,"4049.000000","1109.000000","831.000000","939.000000","1543.000000","1036.000000","1207.000000","0.000000","0.000000","0.000000","741.000000","633.000000","696.000000","860.000000","744.000000","841.000000","160.000000","6000.000000",,"8965774.000000",,,,, +"19087.000000","63.270000","19087.000000","63.270000","19087.000000","63.270000",,,,,,,,,,,,,,"427.000000","13213.000000","11570.000000","14.000000","13213.000000","13213.000000",,,,,,,,,,,"7615856.000000","9515720.000000","478828.000000","0.000000","67186984.000000","0.000000","87753132.000000",,"3623976.000000","24483860.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000","9515720.000000","67186984.000000","87753132.000000","3623976.000000","24483860.000000","1429420.000000","1630920.000000",,,,"10982768.000000","19508300.000000",,,,,,,,"677.000000","13751.000000",,,,,,,,,,,"4217.000000","1103.000000","901.000000","939.000000","1539.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","740.000000","666.000000","692.000000","860.000000","803.000000","821.000000","160.000000","6000.000000",,"8965794.000000",,,,, +"18360.000000","62.135000","18360.000000","62.135000","18360.000000","62.135000",,,,,,,,,,,,,,"1070.000000","12349.000000","10504.000000","5.000000","12349.000000","12349.000000",,,,,,,,,,,"7616464.000000","9516460.000000","478828.000000","0.000000","67187404.000000","0.000000","87756348.000000",,"3623976.000000","24526056.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000","9516460.000000","67187404.000000","87756348.000000","3623976.000000","24526056.000000","1429420.000000","1630920.000000",,,,"10979552.000000","19512980.000000",,,,,,,,"476.000000","12646.000000",,,,,,,,,,,"4165.000000","1091.000000","946.000000","940.000000","1498.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","738.000000","664.000000","690.000000","857.000000","803.000000","821.000000","160.000000","6000.000000",,"8965814.000000",,,,, +"17084.000000","60.130000","17084.000000","60.130000","17084.000000","60.130000",,,,,,,,,,,,,,"848.000000","19231.500000","16740.000000","20.000000","19231.500000","19231.500000",,,,,,,,,,,"7660192.000000","9623476.000000","478828.000000","0.000000","67178056.000000","0.000000","87765724.000000",,"3623976.000000","24561800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000","9623476.000000","67178056.000000","87765724.000000","3623976.000000","24561800.000000","1429420.000000","1630920.000000",,,,"10970176.000000","19531232.000000",,,,,,,,"1975.000000","18898.000000",,,,,,,,,,,"4014.000000","1077.000000","923.000000","938.000000","1453.000000","1223.000000","1207.000000","0.000000","0.000000","0.000000","731.000000","654.000000","687.000000","852.000000","803.000000","821.000000","160.000000","6000.000000",,"8965834.000000",,,,, +"18532.000000","62.410000","18532.000000","62.410000","18532.000000","62.410000",,,,,,,,,,,,,,"93.000000","12235.500000","10749.000000","8.000000","12235.500000","12235.500000",,,,,,,,,,,"7516576.000000","9816076.000000","478828.000000","0.000000","67194228.000000","0.000000","87782500.000000",,"3623976.000000","24562008.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000","9816076.000000","67194228.000000","87782500.000000","3623976.000000","24562008.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19527868.000000",,,,,,,,"686.000000","12941.000000",,,,,,,,,,,"4207.000000","1062.000000","901.000000","936.000000","1362.000000","1027.000000","1206.000000","0.000000","0.000000","0.000000","727.000000","640.000000","682.000000","850.000000","712.000000","821.000000","160.000000","6000.000000",,"8965854.000000",,,,, +"18686.000000","62.650000","18686.000000","62.650000","18686.000000","62.650000",,,,,,,,,,,,,,"1057.000000","15062.500000","12796.000000","23.000000","15062.500000","15062.500000",,,,,,,,,,,"7426592.000000","9726092.000000","478828.000000","0.000000","67195620.000000","0.000000","87782500.000000",,"3623976.000000","24534556.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000","9726092.000000","67195620.000000","87782500.000000","3623976.000000","24534556.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19528036.000000",,,,,,,,"1318.000000","14953.000000",,,,,,,,,,,"4232.000000","1049.000000","868.000000","920.000000","1338.000000","1027.000000","1152.000000","0.000000","0.000000","0.000000","725.000000","642.000000","676.000000","849.000000","768.000000","803.000000","160.000000","6000.000000",,"8965874.000000",,,,, +"17972.000000","61.540000","17972.000000","61.540000","17972.000000","61.540000",,,,,,,,,,,,,,"1762.000000","14729.500000","11631.000000","37.000000","14729.500000","14729.500000",,,,,,,,,,,"7195900.000000","9662892.000000","478828.000000","0.000000","67217092.000000","0.000000","87782500.000000",,"3623976.000000","24505728.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000","9662892.000000","67217092.000000","87782500.000000","3623976.000000","24505728.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19503216.000000",,,,,,,,"2057.000000","14008.000000",,,,,,,,,,,"4098.000000","1043.000000","910.000000","916.000000","1338.000000","1129.000000","1152.000000","0.000000","0.000000","0.000000","722.000000","662.000000","670.000000","849.000000","768.000000","790.000000","160.000000","6000.000000",,"8965894.000000",,,,, +"16521.000000","59.265000","16521.000000","59.265000","16521.000000","59.265000",,,,,,,,,,,,,,"57.000000","12663.000000","11479.000000","17.000000","12663.000000","12663.000000",,,,,,,,,,,"6629540.000000","8760996.000000","478828.000000","0.000000","67206032.000000","0.000000","87782376.000000",,"3623976.000000","24511648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000","8760996.000000","67206032.000000","87782376.000000","3623976.000000","24511648.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19504872.000000",,,,,,,,"289.000000","13500.000000",,,,,,,,,,,"4069.000000","1035.000000","849.000000","895.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","716.000000","639.000000","658.000000","845.000000","768.000000","775.000000","160.000000","6000.000000",,"8965914.000000",,,,, +"16782.000000","59.670000","16782.000000","59.670000","16782.000000","59.670000",,,,,,,,,,,,,,"124.000000","12825.000000","11718.000000","5.000000","12825.000000","12825.000000",,,,,,,,,,,"6683684.000000","8836108.000000","478828.000000","0.000000","67207664.000000","0.000000","87782376.000000",,"3623976.000000","24508272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000","8836108.000000","67207664.000000","87782376.000000","3623976.000000","24508272.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19499048.000000",,,,,,,,"343.000000","13464.000000",,,,,,,,,,,"4200.000000","1031.000000","840.000000","889.000000","1337.000000","1129.000000","1121.000000","0.000000","0.000000","0.000000","715.000000","626.000000","654.000000","845.000000","701.000000","768.000000","160.000000","6000.000000",,"8965934.000000",,,,, +"16178.000000","58.720000","16178.000000","58.720000","16178.000000","58.720000",,,,,,,,,,,,,,"68.000000","12629.500000","11572.000000","3.000000","12629.500000","12629.500000",,,,,,,,,,,"6641744.000000","8919988.000000","478828.000000","0.000000","67196920.000000","0.000000","87782376.000000",,"3623976.000000","24488052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000","8919988.000000","67196920.000000","87782376.000000","3623976.000000","24488052.000000","1429420.000000","1630920.000000",,,,"10953400.000000","19505264.000000",,,,,,,,"308.000000","13310.000000",,,,,,,,,,,"3896.000000","1024.000000","758.000000","876.000000","1337.000000","1006.000000","1121.000000","0.000000","0.000000","0.000000","711.000000","589.000000","643.000000","845.000000","701.000000","744.000000","160.000000","6000.000000",,"8965954.000000",,,,, +"16237.000000","58.815000","16237.000000","58.815000","16237.000000","58.815000",,,,,,,,,,,,,,"45.000000","9012.000000","8917.000000","25.000000","9012.000000","9012.000000",,,,,,,,,,,"6793836.000000","8978184.000000","478828.000000","0.000000","67198656.000000","0.000000","87808824.000000",,"3623976.000000","24511548.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000","8978184.000000","67198656.000000","87808824.000000","3623976.000000","24511548.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525784.000000",,,,,,,,"157.000000","8905.000000",,,,,,,,,,,"4133.000000","1020.000000","730.000000","847.000000","1337.000000","1006.000000","1027.000000","0.000000","0.000000","0.000000","708.000000","596.000000","634.000000","845.000000","701.000000","712.000000","160.000000","6000.000000",,"8965974.000000",,,,, +"15510.000000","57.675000","15510.000000","57.675000","15510.000000","57.675000",,,,,,,,,,,,,,"84.000000","12597.000000","12513.000000","28.000000","12597.000000","12597.000000",,,,,,,,,,,"6745672.000000","8881716.000000","478828.000000","0.000000","67200340.000000","0.000000","87808964.000000",,"3623976.000000","24419016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000","8881716.000000","67200340.000000","87808964.000000","3623976.000000","24419016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19519172.000000",,,,,,,,"228.000000",,,,,,,,,,,,"4083.000000","1012.000000","699.000000","829.000000","1337.000000","819.000000","1019.000000","0.000000","0.000000","0.000000","706.000000","571.000000","625.000000","845.000000","659.000000","706.000000","160.000000","6000.000000",,"8965994.000000",,,,, +"17348.000000","60.550000","17348.000000","60.550000","17348.000000","60.550000",,,,,,,,,,,,,,"59.000000","8706.000000","8435.000000","7.000000","8706.000000","8706.000000",,,,,,,,,,,"6473040.000000","8734920.000000","478828.000000","0.000000","67187924.000000","0.000000","87808964.000000",,"3623976.000000","24406024.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000","8734920.000000","67187924.000000","87808964.000000","3623976.000000","24406024.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19525956.000000",,,,,,,,"175.000000","8742.000000",,,,,,,,,,,"4137.000000","1009.000000","748.000000","834.000000","1337.000000","942.000000","1019.000000","0.000000","0.000000","0.000000","705.000000","601.000000","628.000000","845.000000","688.000000","706.000000","160.000000","6000.000000",,"8966014.000000",,,,, +"18837.000000","62.870000","18837.000000","62.870000","18837.000000","62.870000",,,,,,,,,,,,,,"116.000000","12471.000000","12118.000000","10.000000","12471.000000","12471.000000",,,,,,,,,,,"6336152.000000","8441324.000000","478828.000000","0.000000","67165792.000000","0.000000","87808968.000000",,"3623976.000000","24418764.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000","8441324.000000","67165792.000000","87808968.000000","3623976.000000","24418764.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19535396.000000",,,,,,,,"280.000000","12427.000000",,,,,,,,,,,"4211.000000","1005.000000","798.000000","836.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","704.000000","622.000000","633.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966034.000000",,,,, +"17218.000000","60.330000","17218.000000","60.330000","17218.000000","60.330000",,,,,,,,,,,,,,"338.000000","10804.500000","10251.000000","3.000000","10804.500000","10804.500000",,,,,,,,,,,"6384456.000000","8537932.000000","478828.000000","0.000000","67153424.000000","0.000000","87808968.000000",,"3623976.000000","24609348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000","8537932.000000","67153424.000000","87808968.000000","3623976.000000","24609348.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19542332.000000",,,,,,,,"498.000000","10521.000000",,,,,,,,,,,"4270.000000","1002.000000","818.000000","834.000000","1337.000000","1015.000000","1019.000000","0.000000","0.000000","0.000000","702.000000","639.000000","628.000000","845.000000","759.000000","712.000000","160.000000","6000.000000",,"8966054.000000",,,,, +"18803.000000","62.820000","18803.000000","62.820000","18803.000000","62.820000",,,,,,,,,,,,,,"174.000000","20841.500000","20313.000000","30.000000","20841.500000","20841.500000",,,,,,,,,,,"6531252.000000","8579876.000000","478828.000000","0.000000","67171696.000000","0.000000","87808968.000000",,"3623976.000000","24546732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000","8579876.000000","67171696.000000","87808968.000000","3623976.000000","24546732.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19536800.000000",,,,,,,,"452.000000","20742.000000",,,,,,,,,,,"4130.000000","993.000000","854.000000","839.000000","1279.000000","1064.000000","1019.000000","0.000000","0.000000","0.000000","701.000000","652.000000","632.000000","844.000000","783.000000","712.000000","160.000000","6000.000000",,"8966074.000000",,,,, +"17791.000000","61.235000","17791.000000","61.235000","17791.000000","61.235000",,,,,,,,,,,,,,"57.000000","12250.000000","10956.000000","6.000000","12250.000000","12250.000000",,,,,,,,,,,"6416484.000000","8056740.000000","478828.000000","0.000000","67170744.000000","0.000000","87808968.000000",,"3623976.000000","24545932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000","8056740.000000","67170744.000000","87808968.000000","3623976.000000","24545932.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19532088.000000",,,,,,,,"313.000000","13172.000000",,,,,,,,,,,"4098.000000","979.000000","860.000000","828.000000","1254.000000","1064.000000","1015.000000","0.000000","0.000000","0.000000","696.000000","645.000000","629.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966094.000000",,,,, +"19099.000000","63.285000","19099.000000","63.285000","19099.000000","63.285000",,,,,,,,,,,,,,"52.000000","14912.500000","13795.000000","12.000000","14912.500000","14912.500000",,,,,,,,,,,"6416484.000000","8224512.000000","478828.000000","0.000000","67182688.000000","0.000000","87808968.000000",,"3623976.000000","24523828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000","8224512.000000","67182688.000000","87808968.000000","3623976.000000","24523828.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19517600.000000",,,,,,,,"353.000000","15624.000000",,,,,,,,,,,"4133.000000","978.000000","973.000000","840.000000","1254.000000","1276.000000","1027.000000","0.000000","0.000000","0.000000","694.000000","661.000000","628.000000","835.000000","783.000000","712.000000","160.000000","6000.000000",,"8966114.000000",,,,, +"19800.000000","64.380000","19800.000000","64.380000","19800.000000","64.380000",,,,,,,,,,,,,,"623.000000","13260.000000","11401.000000","11.000000","13260.000000","13260.000000",,,,,,,,,,,"6018032.000000","7826056.000000","478828.000000","0.000000","67172760.000000","0.000000","87808968.000000",,"3623976.000000","24534228.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000","7826056.000000","67172760.000000","87808968.000000","3623976.000000","24534228.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524664.000000",,,,,,,,"879.000000","13617.000000",,,,,,,,,,,"4224.000000","964.000000","976.000000","849.000000","1239.000000","1276.000000","1053.000000","0.000000","0.000000","0.000000","693.000000","678.000000","636.000000","824.000000","757.000000","729.000000","160.000000","6000.000000",,"8966134.000000",,,,, +"18784.000000","62.790000","18784.000000","62.790000","18784.000000","62.790000",,,,,,,,,,,,,,"61.000000","14703.500000","13503.000000","12.000000","14703.500000","14703.500000",,,,,,,,,,,"6363320.000000","8213280.000000","478828.000000","0.000000","67167084.000000","0.000000","87808804.000000",,"3623976.000000","24573620.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000","8213280.000000","67167084.000000","87808804.000000","3623976.000000","24573620.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19524928.000000",,,,,,,,"665.000000","15176.000000",,,,,,,,,,,"4135.000000","959.000000","1027.000000","853.000000","1236.000000","1276.000000","1118.000000","0.000000","0.000000","0.000000","688.000000","689.000000","638.000000","811.000000","757.000000","733.000000","160.000000","6000.000000",,"8966154.000000",,,,, +"19696.000000","64.220000","19696.000000","64.220000","19696.000000","64.220000",,,,,,,,,,,,,,"204.000000","9854.500000","9594.000000","29.000000","9854.500000","9854.500000",,,,,,,,,,,"6508376.000000","8358336.000000","478828.000000","0.000000","67181368.000000","0.000000","87808944.000000",,"3623976.000000","24597340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000","8358336.000000","67181368.000000","87808944.000000","3623976.000000","24597340.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19508876.000000",,,,,,,,"215.000000","9694.000000",,,,,,,,,,,"4272.000000","955.000000","983.000000","863.000000","1231.000000","1236.000000","1118.000000","0.000000","0.000000","0.000000","687.000000","706.000000","641.000000","803.000000","757.000000","733.000000","160.000000","6000.000000",,"8966174.000000",,,,, +"18028.000000","61.605000","18028.000000","61.605000","18028.000000","61.605000",,,,,,,,,,,,,,"54.000000","11208.500000","10939.000000","15.000000","11208.500000","11208.500000",,,,,,,,,,,"7305292.000000","9071364.000000","478828.000000","0.000000","67168224.000000","0.000000","87808944.000000",,"3623976.000000","24581896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000","9071364.000000","67168224.000000","87808944.000000","3623976.000000","24581896.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19516732.000000",,,,,,,,"203.000000","11221.000000",,,,,,,,,,,"4155.000000","943.000000","933.000000","854.000000","1216.000000","1236.000000","1064.000000","0.000000","0.000000","0.000000","682.000000","678.000000","640.000000","790.000000","752.000000","733.000000","160.000000","6000.000000",,"8966194.000000",,,,, +"19914.000000","64.560000","19914.000000","64.560000","19914.000000","64.560000",,,,,,,,,,,,,,"42.000000","12820.000000","12512.000000","10.000000","12820.000000","12820.000000",,,,,,,,,,,"6822952.000000","8661848.000000","478828.000000","0.000000","67168700.000000","0.000000","87808944.000000",,"3623976.000000","24579016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000","8661848.000000","67168700.000000","87808944.000000","3623976.000000","24579016.000000","1429420.000000","1630920.000000",,,,"10926952.000000","19510092.000000",,,,,,,,"210.000000","12876.000000",,,,,,,,,,,"4169.000000","941.000000","935.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","681.000000","690.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966214.000000",,,,, +"17008.000000","60.000000","17008.000000","60.000000","17008.000000","60.000000",,,,,,,,,,,,,,"69.000000","12710.000000","12412.000000","20.000000","12710.000000","12710.000000",,,,,,,,,,,"6869320.000000","8707892.000000","478828.000000","0.000000","67162580.000000","0.000000","87800868.000000",,"3623976.000000","24572792.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000","8707892.000000","67162580.000000","87800868.000000","3623976.000000","24572792.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19503028.000000",,,,,,,,"236.000000","12702.000000",,,,,,,,,,,"4100.000000","934.000000","877.000000","870.000000","1207.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","679.000000","660.000000","648.000000","789.000000","780.000000","752.000000","160.000000","6000.000000",,"8966234.000000",,,,, +"18335.000000","62.085000","18335.000000","62.085000","18335.000000","62.085000",,,,,,,,,,,,,,"47.000000","12348.000000","12172.000000","5.000000","12348.000000","12348.000000",,,,,,,,,,,"6659604.000000","8498464.000000","478828.000000","0.000000","67164636.000000","0.000000","87800868.000000",,"3623976.000000","24570836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000","8498464.000000","67164636.000000","87800868.000000","3623976.000000","24570836.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497984.000000",,,,,,,,"222.000000","12255.000000",,,,,,,,,,,"3983.000000","929.000000","906.000000","883.000000","1202.000000","1202.000000","1118.000000","0.000000","0.000000","0.000000","676.000000","662.000000","654.000000","783.000000","780.000000","752.000000","160.000000","6000.000000",,"8966254.000000",,,,, +"18978.000000","63.085000","18978.000000","63.085000","18978.000000","63.085000",,,,,,,,,,,,,,"64.000000","10024.500000","9787.000000","16.000000","10024.500000","10024.500000",,,,,,,,,,,"6869180.000000","8928824.000000","478828.000000","0.000000","67158472.000000","0.000000","87800732.000000",,"3623976.000000","24597924.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000","8928824.000000","67158472.000000","87800732.000000","3623976.000000","24597924.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19497248.000000",,,,,,,,"200.000000","9996.000000",,,,,,,,,,,"4126.000000","931.000000","913.000000","906.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","675.000000","656.000000","660.000000","783.000000","811.000000","757.000000","160.000000","6000.000000",,"8966274.000000",,,,, +"17816.000000","61.260000","17816.000000","61.260000","17816.000000","61.260000",,,,,,,,,,,,,,"49.000000","12400.000000","12047.000000","13.000000","12400.000000","12400.000000",,,,,,,,,,,"6556732.000000","8771588.000000","478828.000000","0.000000","67150976.000000","0.000000","87800732.000000",,"3623976.000000","24603176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000","8771588.000000","67150976.000000","87800732.000000","3623976.000000","24603176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19498064.000000",,,,,,,,"226.000000","12477.000000",,,,,,,,,,,"4274.000000","927.000000","922.000000","915.000000","1202.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","673.000000","670.000000","667.000000","783.000000","811.000000","759.000000","160.000000","6000.000000",,"8966294.000000",,,,, +"19215.000000","63.450000","19215.000000","63.450000","19215.000000","63.450000",,,,,,,,,,,,,,"42.000000","12655.500000","12428.000000","7.000000","12655.500000","12655.500000",,,,,,,,,,,"6221188.000000","8373128.000000","478828.000000","0.000000","67138336.000000","0.000000","87800732.000000",,"3623976.000000","24595940.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000","8373128.000000","67138336.000000","87800732.000000","3623976.000000","24595940.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19506516.000000",,,,,,,,"213.000000","12626.000000",,,,,,,,,,,"4283.000000","921.000000","914.000000","917.000000","1164.000000","1146.000000","1146.000000","0.000000","0.000000","0.000000","672.000000","686.000000","671.000000","789.000000","811.000000","780.000000","160.000000","6000.000000",,"8966314.000000",,,,, +"18354.000000","62.095000","18354.000000","62.095000","18354.000000","62.095000",,,,,,,,,,,,,,"70.000000","12529.000000","12458.000000","3.000000","12529.000000","12529.000000",,,,,,,,,,,"6032444.000000","8037584.000000","478828.000000","0.000000","67126084.000000","0.000000","87800732.000000",,"3623976.000000","24658084.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000","8037584.000000","67126084.000000","87800732.000000","3623976.000000","24658084.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19512548.000000",,,,,,,,"234.000000",,,,,,,,,,,,"4241.000000","922.000000","924.000000","931.000000","1164.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","671.000000","674.000000","671.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966334.000000",,,,, +"17603.000000","60.905000","17603.000000","60.905000","17603.000000","60.905000",,,,,,,,,,,,,,"399.000000","12465.500000","11711.000000","3.000000","12465.500000","12465.500000",,,,,,,,,,,"5900400.000000","7821656.000000","478828.000000","0.000000","67113004.000000","0.000000","87800800.000000",,"3623976.000000","24661360.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000","7821656.000000","67113004.000000","87800800.000000","3623976.000000","24661360.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520300.000000",,,,,,,,"527.000000","12293.000000",,,,,,,,,,,"4080.000000","916.000000","926.000000","936.000000","1152.000000","1202.000000","1164.000000","0.000000","0.000000","0.000000","668.000000","663.000000","672.000000","789.000000","796.000000","780.000000","160.000000","6000.000000",,"8966354.000000",,,,, +"22167.000000","68.055000","22167.000000","68.055000","22167.000000","68.055000",,,,,,,,,,,,,,"62.000000","14109.500000","12913.000000","32.000000","14109.500000","14109.500000",,,,,,,,,,,"5858460.000000","7821372.000000","478828.000000","0.000000","67104204.000000","0.000000","87800800.000000",,"3623976.000000","24669016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000","7821372.000000","67104204.000000","87800800.000000","3623976.000000","24669016.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525496.000000",,,,,,,,"325.000000","14919.000000",,,,,,,,,,,"4491.000000","916.000000","1112.000000","968.000000","1152.000000","1881.000000","1202.000000","0.000000","0.000000","0.000000","669.000000","697.000000","680.000000","789.000000","973.000000","788.000000","160.000000","6000.000000",,"8966374.000000",,,,, +"17990.000000","61.510000","17990.000000","61.510000","17990.000000","61.510000",,,,,,,,,,,,,,"53.000000","18263.000000","17512.000000","25.000000","18263.000000","18263.000000",,,,,,,,,,,"6005120.000000","7758312.000000","478828.000000","0.000000","67096036.000000","0.000000","87800660.000000",,"3623976.000000","24657300.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000","7758312.000000","67096036.000000","87800660.000000","3623976.000000","24657300.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19532240.000000",,,,,,,,"289.000000","18671.000000",,,,,,,,,,,"4283.000000","914.000000","1086.000000","977.000000","1152.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","696.000000","681.000000","783.000000","973.000000","788.000000","160.000000","6000.000000",,"8966394.000000",,,,, +"20122.000000","64.845000","20122.000000","64.845000","20122.000000","64.845000",,,,,,,,,,,,,,"108.000000","10569.000000","10231.000000","14.000000","10569.000000","10569.000000",,,,,,,,,,,"6508440.000000","8219688.000000","478828.000000","0.000000","67085876.000000","0.000000","87800660.000000",,"3623976.000000","24655052.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000","8219688.000000","67085876.000000","87800660.000000","3623976.000000","24655052.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19538800.000000",,,,,,,,"244.000000","10555.000000",,,,,,,,,,,"4174.000000","921.000000","1203.000000","982.000000","1202.000000","1881.000000","1236.000000","0.000000","0.000000","0.000000","667.000000","720.000000","684.000000","788.000000","973.000000","791.000000","160.000000","6000.000000",,"8966414.000000",,,,, +"19566.000000","63.980000","19566.000000","63.980000","19566.000000","63.980000",,,,,,,,,,,,,,"184.000000","9621.000000","9421.000000","12.000000","9621.000000","9621.000000",,,,,,,,,,,"6676348.000000","8219828.000000","478828.000000","0.000000","67096052.000000","0.000000","87800800.000000",,"3623976.000000","24674172.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000","8219828.000000","67096052.000000","87800800.000000","3623976.000000","24674172.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531736.000000",,,,,,,,"254.000000","9382.000000",,,,,,,,,,,"4251.000000","935.000000","1221.000000","1017.000000","1207.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","695.000000","684.000000","788.000000","791.000000","791.000000","160.000000","6000.000000",,"8966434.000000",,,,, +"20937.000000","66.125000","20937.000000","66.125000","20937.000000","66.125000",,,,,,,,,,,,,,"52.000000","11039.500000","10714.000000","9.000000","11039.500000","11039.500000",,,,,,,,,,,"6068172.000000","7527772.000000","478828.000000","0.000000","67098604.000000","0.000000","87800800.000000",,"3623976.000000","24670888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000","7527772.000000","67098604.000000","87800800.000000","3623976.000000","24670888.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19525524.000000",,,,,,,,"193.000000","11119.000000",,,,,,,,,,,"4336.000000","941.000000","1309.000000","1033.000000","1217.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","670.000000","728.000000","689.000000","789.000000","837.000000","796.000000","160.000000","6000.000000",,"8966454.000000",,,,, +"20516.000000","65.480000","20516.000000","65.480000","20516.000000","65.480000",,,,,,,,,,,,,,"70.000000","13105.500000","12617.000000","7.000000","13105.500000","13105.500000",,,,,,,,,,,"6319828.000000","7779428.000000","478828.000000","0.000000","67128664.000000","0.000000","87800800.000000",,"3623976.000000","24615536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000","7779428.000000","67128664.000000","87800800.000000","3623976.000000","24615536.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19499064.000000",,,,,,,,"614.000000","12910.000000",,,,,,,,,,,"4295.000000","945.000000","1332.000000","1052.000000","1223.000000","1661.000000","1472.000000","0.000000","0.000000","0.000000","669.000000","742.000000","691.000000","783.000000","837.000000","796.000000","160.000000","6000.000000",,"8966474.000000",,,,, +"16190.000000","58.700000","16190.000000","58.700000","16190.000000","58.700000",,,,,,,,,,,,,,"280.000000","16458.000000","15573.000000","18.000000","16458.000000","16458.000000",,,,,,,,,,,"6101708.000000","7937924.000000","478828.000000","0.000000","67119672.000000","0.000000","87800800.000000",,"3623976.000000","24628648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000","7937924.000000","67119672.000000","87800800.000000","3623976.000000","24628648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19504164.000000",,,,,,,,"455.000000","16608.000000",,,,,,,,,,,"4135.000000","942.000000","1120.000000","1055.000000","1223.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","666.000000","702.000000","688.000000","781.000000","837.000000","796.000000","160.000000","6000.000000",,"8966494.000000",,,,, +"14336.000000","55.790000","14336.000000","55.790000","14336.000000","55.790000",,,,,,,,,,,,,,"131.000000","8518.500000","8122.000000","35.000000","8518.500000","8518.500000",,,,,,,,,,,"6111480.000000","7979724.000000","478828.000000","0.000000","67105136.000000","0.000000","87800660.000000",,"3623976.000000","24640880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000","7979724.000000","67105136.000000","87800660.000000","3623976.000000","24640880.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19511716.000000",,,,,,,,"247.000000","8536.000000",,,,,,,,,,,"4059.000000","929.000000","887.000000","1024.000000","1217.000000","1428.000000","1472.000000","0.000000","0.000000","0.000000","660.000000","616.000000","674.000000","775.000000","781.000000","796.000000","160.000000","6000.000000",,"8966514.000000",,,,, +"14371.000000","55.840000","14371.000000","55.840000","14371.000000","55.840000",,,,,,,,,,,,,,"55.000000","5995.500000","5914.000000","13.000000","5995.500000","5995.500000",,,,,,,,,,,"6573748.000000","8525876.000000","478828.000000","0.000000","67093524.000000","0.000000","87801552.000000",,"3623976.000000","24638812.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000","8525876.000000","67093524.000000","87801552.000000","3623976.000000","24638812.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19516312.000000",,,,,,,,"143.000000","5879.000000",,,,,,,,,,,"4073.000000","922.000000","657.000000","1008.000000","1217.000000","1155.000000","1472.000000","0.000000","0.000000","0.000000","656.000000","540.000000","667.000000","768.000000","727.000000","796.000000","160.000000","6000.000000",,"8966534.000000",,,,, +"11980.000000","52.090000","11980.000000","52.090000","11980.000000","52.090000",,,,,,,,,,,,,,"57.000000","4134.500000","3988.000000","9.000000","4134.500000","4134.500000",,,,,,,,,,,"7598472.000000","9814544.000000","478828.000000","0.000000","67084104.000000","0.000000","87800800.000000",,"3623976.000000","24650892.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000","9814544.000000","67084104.000000","87800800.000000","3623976.000000","24650892.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19523776.000000",,,,,,,,"134.000000","4088.000000",,,,,,,,,,,"3977.000000","915.000000","556.000000","985.000000","1217.000000","644.000000","1472.000000","0.000000","0.000000","0.000000","651.000000","493.000000","655.000000","762.000000","570.000000","796.000000","160.000000","6000.000000",,"8966554.000000",,,,, +"12678.000000","53.175000","12678.000000","53.175000","12678.000000","53.175000",,,,,,,,,,,,,,"56.000000","6150.500000","5695.000000","4.000000","6150.500000","6150.500000",,,,,,,,,,,"7347964.000000","9647928.000000","478828.000000","0.000000","67071532.000000","0.000000","87800800.000000",,"3623976.000000","24689820.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000","9647928.000000","67071532.000000","87800800.000000","3623976.000000","24689820.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19530812.000000",,,,,,,,"141.000000","6407.000000",,,,,,,,,,,"3963.000000","900.000000","530.000000","947.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","644.000000","466.000000","636.000000","759.000000","560.000000","791.000000","160.000000","6000.000000",,"8966574.000000",,,,, +"13298.000000","54.145000","13298.000000","54.145000","13298.000000","54.145000",,,,,,,,,,,,,,"52.000000","5455.500000","5361.000000","25.000000","5455.500000","5455.500000",,,,,,,,,,,"7012424.000000","9312388.000000","478828.000000","0.000000","67065940.000000","0.000000","87800800.000000",,"3623976.000000","24717072.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000","9312388.000000","67065940.000000","87800800.000000","3623976.000000","24717072.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19531204.000000",,,,,,,,"136.000000","5361.000000",,,,,,,,,,,"4035.000000","891.000000","538.000000","931.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","639.000000","460.000000","625.000000","759.000000","560.000000","788.000000","160.000000","6000.000000",,"8966594.000000",,,,, +"12596.000000","53.045000","12596.000000","53.045000","12596.000000","53.045000",,,,,,,,,,,,,,"116.000000","5522.500000","5005.000000","3.000000","5522.500000","5522.500000",,,,,,,,,,,"6800576.000000","8774908.000000","478828.000000","0.000000","67070000.000000","0.000000","87800800.000000",,"3623976.000000","24702996.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000","8774908.000000","67070000.000000","87800800.000000","3623976.000000","24702996.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19521136.000000",,,,,,,,"205.000000","5718.000000",,,,,,,,,,,"3976.000000","886.000000","521.000000","906.000000","1217.000000","716.000000","1472.000000","0.000000","0.000000","0.000000","636.000000","451.000000","608.000000","759.000000","560.000000","781.000000","160.000000","6000.000000",,"8966614.000000",,,,, +"12446.000000","52.810000","12446.000000","52.810000","12446.000000","52.810000",,,,,,,,,,,,,,"61.000000","5831.500000","4780.000000","3.000000","5831.500000","5831.500000",,,,,,,,,,,"6590812.000000","8669996.000000","478828.000000","0.000000","67069088.000000","0.000000","87800752.000000",,"3623976.000000","24704368.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000","8669996.000000","67069088.000000","87800752.000000","3623976.000000","24704368.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19519328.000000",,,,,,,,"266.000000","6556.000000",,,,,,,,,,,"3746.000000","879.000000","541.000000","871.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","632.000000","449.000000","591.000000","759.000000","547.000000","781.000000","160.000000","6000.000000",,"8966634.000000",,,,, +"16241.000000","58.760000","16241.000000","58.760000","16241.000000","58.760000",,,,,,,,,,,,,,"350.000000","13565.000000","12752.000000","24.000000","13565.000000","13565.000000",,,,,,,,,,,"6506924.000000","8753876.000000","478828.000000","0.000000","67079968.000000","0.000000","87800752.000000",,"3623976.000000","24696264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000","8753876.000000","67079968.000000","87800752.000000","3623976.000000","24696264.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19508416.000000",,,,,,,,"538.000000","13488.000000",,,,,,,,,,,"4022.000000","878.000000","585.000000","863.000000","1217.000000","816.000000","1472.000000","0.000000","0.000000","0.000000","630.000000","483.000000","589.000000","759.000000","658.000000","781.000000","160.000000","6000.000000",,"8966654.000000",,,,, +"17283.000000","60.395000","17283.000000","60.395000","17283.000000","60.395000",,,,,,,,,,,,,,"37.000000","8774.500000","8567.000000","23.000000","8774.500000","8774.500000",,,,,,,,,,,"5980608.000000","8290476.000000","478828.000000","0.000000","67083712.000000","0.000000","87800752.000000",,"3623976.000000","24697060.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000","8290476.000000","67083712.000000","87800752.000000","3623976.000000","24697060.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19505060.000000",,,,,,,,"144.000000","8800.000000",,,,,,,,,,,"4032.000000","875.000000","678.000000","819.000000","1217.000000","998.000000","1417.000000","0.000000","0.000000","0.000000","629.000000","530.000000","574.000000","759.000000","663.000000","759.000000","160.000000","6000.000000",,"8966674.000000",,,,, +"15454.000000","57.525000","15454.000000","57.525000","15454.000000","57.525000",,,,,,,,,,,,,,"88.000000","27832.500000","27853.000000","84.000000","27832.500000","27832.500000",,,,,,,,,,,"6064496.000000","8069704.000000","478828.000000","0.000000","67075088.000000","0.000000","87800752.000000",,"3623976.000000","24704364.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000","8069704.000000","67075088.000000","87800752.000000","3623976.000000","24704364.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19509876.000000",,,,,,,,"314.000000","27409.000000",,,,,,,,,,,"4259.000000","870.000000","761.000000","806.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","627.000000","593.000000","570.000000","759.000000","767.000000","762.000000","160.000000","6000.000000",,"8966694.000000",,,,, +"13294.000000","54.135000","13294.000000","54.135000","13294.000000","54.135000",,,,,,,,,,,,,,"184.000000","22602.000000","22418.000000","87.000000","22602.000000","22602.000000",,,,,,,,,,,"6274260.000000","8363352.000000","478828.000000","0.000000","67061364.000000","0.000000","87800800.000000",,"3623976.000000","24690628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000","8363352.000000","67061364.000000","87800800.000000","3623976.000000","24690628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19520436.000000",,,,,,,,"363.000000",,,,,,,,,,,,"3889.000000","863.000000","721.000000","767.000000","1206.000000","1206.000000","1417.000000","0.000000","0.000000","0.000000","623.000000","556.000000","556.000000","759.000000","767.000000","759.000000","160.000000","6000.000000",,"8966714.000000",,,,, +"14892.000000","56.670000","14892.000000","56.670000","14892.000000","56.670000",,,,,,,,,,,,,,"134.000000","25709.000000","24519.000000","128.000000","25709.000000","25709.000000",,,,,,,,,,,"6718816.000000","8499620.000000","478828.000000","0.000000","67127268.000000","0.000000","87800800.000000",,"3623976.000000","24666476.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000","8499620.000000","67127268.000000","87800800.000000","3623976.000000","24666476.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19527448.000000",,,,,,,,"359.000000","26404.000000",,,,,,,,,,,"3958.000000","859.000000","679.000000","711.000000","1206.000000","1206.000000","1206.000000","0.000000","0.000000","0.000000","621.000000","542.000000","544.000000","759.000000","767.000000","750.000000","160.000000","6000.000000",,"8966734.000000",,,,, +"15418.000000","57.515000","15418.000000","57.515000","15418.000000","57.515000",,,,,,,,,,,,,,"65.000000","29759.000000","29387.000000","121.000000","29759.000000","29759.000000",,,,,,,,,,,"7391540.000000","8984740.000000","478828.000000","0.000000","67169992.000000","0.000000","87802432.000000",,"3623976.000000","24590604.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000","8984740.000000","67169992.000000","87802432.000000","3623976.000000","24590604.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19542452.000000",,,,,,,,"320.000000","29746.000000",,,,,,,,,,,"4076.000000","851.000000","620.000000","668.000000","1206.000000","765.000000","1145.000000","0.000000","0.000000","0.000000","618.000000","512.000000","527.000000","759.000000","610.000000","727.000000","160.000000","6000.000000",,"8966754.000000",,,,, +"13208.000000","54.035000","13208.000000","54.035000","13208.000000","54.035000",,,,,,,,,,,,,,"135.000000","27167.000000","26509.000000","132.000000","27167.000000","27167.000000",,,,,,,,,,,"7641428.000000","9234628.000000","478828.000000","0.000000","67134148.000000","0.000000","87800660.000000",,"3623976.000000","24617396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000","9234628.000000","67134148.000000","87800660.000000","3623976.000000","24617396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19572928.000000",,,,,,,,"720.000000","26968.000000",,,,,,,,,,,"3952.000000","846.000000","615.000000","623.000000","1206.000000","765.000000","791.000000","0.000000","0.000000","0.000000","614.000000","511.000000","510.000000","757.000000","610.000000","610.000000","160.000000","6000.000000",,"8966774.000000",,,,, +"13471.000000","54.430000","13471.000000","54.430000","13471.000000","54.430000",,,,,,,,,,,,,,"72.000000","27039.500000","26584.000000","116.000000","27039.500000","27039.500000",,,,,,,,,,,"7318608.000000","8886680.000000","478828.000000","0.000000","67098324.000000","0.000000","87800824.000000",,"3623976.000000","24608296.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000","8886680.000000","67098324.000000","87800824.000000","3623976.000000","24608296.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19595176.000000",,,,,,,,"316.000000","27106.000000",,,,,,,,,,,"3857.000000","838.000000","594.000000","606.000000","1206.000000","765.000000","765.000000","0.000000","0.000000","0.000000","610.000000","487.000000","501.000000","757.000000","610.000000","597.000000","160.000000","6000.000000",,"8966794.000000",,,,, +"11434.000000","51.225000","11434.000000","51.225000","11434.000000","51.225000",,,,,,,,,,,,,,"47.000000","26897.500000","26555.000000","124.000000","26897.500000","26897.500000",,,,,,,,,,,"7957744.000000","10050104.000000","478828.000000","0.000000","67068380.000000","0.000000","87800904.000000",,"3623976.000000","24637396.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000","10050104.000000","67068380.000000","87800904.000000","3623976.000000","24637396.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19620164.000000",,,,,,,,"261.000000","26931.000000",,,,,,,,,,,"4097.000000","830.000000","527.000000","596.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","606.000000","450.000000","494.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966814.000000",,,,, +"12475.000000","52.840000","12475.000000","52.840000","12475.000000","52.840000",,,,,,,,,,,,,,"120.000000","25088.500000","25189.000000","126.000000","25088.500000","25088.500000",,,,,,,,,,,"7874608.000000","10134740.000000","478828.000000","0.000000","67036204.000000","0.000000","87801656.000000",,"3623976.000000","24674964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000","10134740.000000","67036204.000000","87801656.000000","3623976.000000","24674964.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19647792.000000",,,,,,,,"294.000000","24574.000000",,,,,,,,,,,"3991.000000","823.000000","495.000000","591.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","601.000000","436.000000","489.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966834.000000",,,,, +"13222.000000","53.990000","13222.000000","53.990000","13222.000000","53.990000",,,,,,,,,,,,,,"67.000000","34680.500000","33595.000000","67.000000","34680.500000","34680.500000",,,,,,,,,,,"7456556.000000","9513252.000000","478828.000000","0.000000","67000704.000000","0.000000","87800904.000000",,"3623976.000000","24681648.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000","9513252.000000","67000704.000000","87800904.000000","3623976.000000","24681648.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19669988.000000",,,,,,,,"347.000000","35352.000000",,,,,,,,,,,"4014.000000","821.000000","500.000000","594.000000","1206.000000","615.000000","765.000000","0.000000","0.000000","0.000000","600.000000","451.000000","492.000000","757.000000","556.000000","597.000000","160.000000","6000.000000",,"8966854.000000",,,,, +"12451.000000","52.765000","12451.000000","52.765000","12451.000000","52.765000",,,,,,,,,,,,,,"62.000000","22429.000000","22367.000000","71.000000","22429.000000","22429.000000",,,,,,,,,,,"7917932.000000","9817912.000000","478824.000000","0.000000","66969888.000000","0.000000","87800908.000000",,"3623976.000000","24712128.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000","9817912.000000","66969888.000000","87800908.000000","3623976.000000","24712128.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19696432.000000",,,,,,,,"342.000000",,,,,,,,,,,,"3884.000000","815.000000","511.000000","592.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","596.000000","452.000000","491.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966874.000000",,,,, +"11363.000000","51.050000","11363.000000","51.050000","11363.000000","51.050000",,,,,,,,,,,,,,"70.000000","24537.000000","23454.000000","106.000000","24537.000000","24537.000000",,,,,,,,,,,"7959820.000000","9733972.000000","478820.000000","0.000000","66932996.000000","0.000000","87800856.000000",,"3623976.000000","24735804.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000","9733972.000000","66932996.000000","87800856.000000","3623976.000000","24735804.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19728592.000000",,,,,,,,"364.000000","25185.000000",,,,,,,,,,,"3848.000000","811.000000","522.000000","587.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","593.000000","447.000000","487.000000","757.000000","517.000000","597.000000","160.000000","6000.000000",,"8966894.000000",,,,, +"10900.000000","50.305000","10900.000000","50.305000","10900.000000","50.305000",,,,,,,,,,,,,,"70.000000","15666.000000","15687.000000","29.000000","15666.000000","15666.000000",,,,,,,,,,,"7854964.000000","9698316.000000","478820.000000","0.000000","66901428.000000","0.000000","87800856.000000",,"3623976.000000","24789348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000","9698316.000000","66901428.000000","87800856.000000","3623976.000000","24789348.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19763556.000000",,,,,,,,"209.000000","15366.000000",,,,,,,,,,,"3727.000000","804.000000","491.000000","588.000000","1206.000000","593.000000","765.000000","0.000000","0.000000","0.000000","588.000000","410.000000","484.000000","757.000000","504.000000","597.000000","160.000000","6000.000000",,"8966914.000000",,,,, +"11735.000000","51.605000","11735.000000","51.605000","11735.000000","51.605000",,,,,,,,,,,,,,"1016.000000","20944.500000","19346.000000","62.000000","20944.500000","20944.500000",,,,,,,,,,,"7729128.000000","9509580.000000","478820.000000","0.000000","66886012.000000","0.000000","87800856.000000",,"3623976.000000","24806176.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000","9509580.000000","66886012.000000","87800856.000000","3623976.000000","24806176.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19778896.000000",,,,,,,,"1212.000000","20314.000000",,,,,,,,,,,"3865.000000","795.000000","493.000000","582.000000","1206.000000","611.000000","740.000000","0.000000","0.000000","0.000000","581.000000","402.000000","482.000000","752.000000","482.000000","597.000000","160.000000","6000.000000",,"8966934.000000",,,,, +"12085.000000","52.140000","12085.000000","52.140000","12085.000000","52.140000",,,,,,,,,,,,,,"338.000000","9518.500000","9041.000000","43.000000","9518.500000","9518.500000",,,,,,,,,,,"7645060.000000","9425512.000000","478820.000000","0.000000","66853052.000000","0.000000","87800672.000000",,"3623976.000000","24785492.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000","9425512.000000","66853052.000000","87800672.000000","3623976.000000","24785492.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19810220.000000",,,,,,,,"454.000000","9204.000000",,,,,,,,,,,"3934.000000","789.000000","490.000000","569.000000","1206.000000","611.000000","652.000000","0.000000","0.000000","0.000000","577.000000","407.000000","471.000000","752.000000","482.000000","565.000000","160.000000","6000.000000",,"8966954.000000",,,,, +"15193.000000","57.000000","15193.000000","57.000000","15193.000000","57.000000",,,,,,,,,,,,,,"49.000000","7103.000000","6951.000000","12.000000","7103.000000","7103.000000",,,,,,,,,,,"7375308.000000","9092848.000000","478820.000000","0.000000","66839480.000000","0.000000","87800856.000000",,"3623976.000000","24752628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000","9092848.000000","66839480.000000","87800856.000000","3623976.000000","24752628.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19823920.000000",,,,,,,,"170.000000","7036.000000",,,,,,,,,,,"3991.000000","783.000000","538.000000","560.000000","1206.000000","900.000000","652.000000","0.000000","7.000000","0.000000","573.000000","434.000000","465.000000","750.000000","575.000000","565.000000","160.000000","6000.000000",,"8966974.000000",,,,, +"12048.000000","52.055000","12048.000000","52.055000","12048.000000","52.055000",,,,,,,,,,,,,,"74.000000","7662.000000","7312.000000","16.000000","7662.000000","7662.000000",,,,,,,,,,,"6987868.000000","8831228.000000","478820.000000","0.000000","66808224.000000","0.000000","87800808.000000",,"3623976.000000","24782224.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000","8831228.000000","66808224.000000","87800808.000000","3623976.000000","24782224.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19850496.000000",,,,,,,,"195.000000","7743.000000",,,,,,,,,,,"3973.000000","775.000000","564.000000","543.000000","1206.000000","900.000000","629.000000","0.000000","7.000000","0.000000","569.000000","467.000000","456.000000","750.000000","712.000000","556.000000","160.000000","6000.000000",,"8966994.000000",,,,, +"14991.000000","56.655000","14991.000000","56.655000","14991.000000","56.655000",,,,,,,,,,,,,,"36.000000","2766.500000","2629.000000","33.000000","2766.500000","2766.500000",,,,,,,,,,,"7384152.000000","9420408.000000","478820.000000","0.000000","66784116.000000","0.000000","87800760.000000",,"3623976.000000","24866504.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000","9420408.000000","66784116.000000","87800760.000000","3623976.000000","24866504.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19873948.000000",,,,,,,,"97.000000","2769.000000",,,,,,,,,,,"3940.000000","764.000000","599.000000","544.000000","1202.000000","900.000000","633.000000","0.000000","7.000000","0.000000","566.000000","492.000000","459.000000","750.000000","712.000000","565.000000","160.000000","6000.000000",,"8967014.000000",,,,, +"18747.000000","62.530000","18747.000000","62.530000","18747.000000","62.530000",,,,,,,,,,,,,,"68.000000","5449.000000","5294.000000","3.000000","5449.000000","5449.000000",,,,,,,,,,,"7215812.000000","9300572.000000","478820.000000","0.000000","66766724.000000","0.000000","87800760.000000",,"3623976.000000","24919992.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000","9300572.000000","66766724.000000","87800760.000000","3623976.000000","24919992.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19888916.000000",,,,,,,,"225.000000","5310.000000",,,,,,,,,,,"4100.000000","762.000000","670.000000","559.000000","1202.000000","954.000000","837.000000","0.000000","0.000000","0.000000","564.000000","544.000000","465.000000","741.000000","730.000000","610.000000","160.000000","6000.000000",,"8967034.000000",,,,, +"16493.000000","58.985000","16493.000000","58.985000","16493.000000","58.985000",,,,,,,,,,,,,,"104.000000","8463.500000","8111.000000","3.000000","8463.500000","8463.500000",,,,,,,,,,,"6397920.000000","8272972.000000","478820.000000","0.000000","66738320.000000","0.000000","87800760.000000",,"3623976.000000","24953428.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000","8272972.000000","66738320.000000","87800760.000000","3623976.000000","24953428.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19919632.000000",,,,,,,,"459.000000","8253.000000",,,,,,,,,,,"4178.000000","758.000000","775.000000","574.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","563.000000","588.000000","472.000000","741.000000","730.000000","660.000000","160.000000","6000.000000",,"8967054.000000",,,,, +"15192.000000","56.940000","15192.000000","56.940000","15192.000000","56.940000",,,,,,,,,,,,,,"92.000000","6764.000000","6479.000000","6.000000","6764.000000","6764.000000",,,,,,,,,,,"6314080.000000","7937476.000000","478820.000000","0.000000","66726904.000000","0.000000","87800808.000000",,"3623976.000000","24909208.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000","7937476.000000","66726904.000000","87800808.000000","3623976.000000","24909208.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19928512.000000",,,,,,,,"192.000000","6765.000000",,,,,,,,,,,"3815.000000","754.000000","827.000000","587.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","559.000000","597.000000","476.000000","734.000000","730.000000","660.000000","160.000000","6000.000000",,"8967074.000000",,,,, +"10965.000000","50.310000","10965.000000","50.310000","10965.000000","50.310000",,,,,,,,,,,,,,"49.000000","2677.000000","2469.000000","5.000000","2677.000000","2677.000000",,,,,,,,,,,"6425216.000000","7903664.000000","478820.000000","0.000000","66701176.000000","0.000000","87800808.000000",,"3623976.000000","24937724.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000","7903664.000000","66701176.000000","87800808.000000","3623976.000000","24937724.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19949796.000000",,,,,,,,"86.000000","2748.000000",,,,,,,,,,,"3946.000000","749.000000","730.000000","586.000000","1202.000000","1021.000000","873.000000","0.000000","0.000000","0.000000","555.000000","541.000000","476.000000","734.000000","729.000000","660.000000","160.000000","6000.000000",,"8967094.000000",,,,, +"10826.000000","50.085000","10826.000000","50.085000","10826.000000","50.085000",,,,,,,,,,,,,,"1642.000000","8049.500000","6264.000000","10.000000","8049.500000","8049.500000",,,,,,,,,,,"6173560.000000","7505212.000000","478820.000000","0.000000","66689824.000000","0.000000","87800808.000000",,"3623976.000000","24948272.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000","7505212.000000","66689824.000000","87800808.000000","3623976.000000","24948272.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19957316.000000",,,,,,,,"1754.000000","6439.000000",,,,,,,,,,,"3770.000000","733.000000","558.000000","580.000000","1155.000000","832.000000","873.000000","0.000000","0.000000","0.000000","546.000000","443.000000","470.000000","730.000000","583.000000","660.000000","160.000000","6000.000000",,"8967114.000000",,,,, +"10385.000000","49.380000","10385.000000","49.380000","10385.000000","49.380000",,,,,,,,,,,,,,"44.000000","6349.500000","5817.000000","5.000000","6349.500000","6349.500000",,,,,,,,,,,"6005648.000000","7505072.000000","478820.000000","0.000000","66668940.000000","0.000000","87800668.000000",,"3623976.000000","24922572.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000","7505072.000000","66668940.000000","87800668.000000","3623976.000000","24922572.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19974460.000000",,,,,,,,"194.000000","6643.000000",,,,,,,,,,,"3755.000000","725.000000","449.000000","577.000000","1155.000000","731.000000","873.000000","0.000000","0.000000","0.000000","541.000000","387.000000","466.000000","730.000000","566.000000","660.000000","160.000000","6000.000000",,"8967134.000000",,,,, +"10301.000000","49.255000","10301.000000","49.255000","10301.000000","49.255000",,,,,,,,,,,,,,"50.000000","6442.000000","5522.000000","13.000000","6442.000000","6442.000000",,,,,,,,,,,"6211112.000000","7662300.000000","478820.000000","0.000000","66673412.000000","0.000000","87800668.000000",,"3623976.000000","24938412.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000","7662300.000000","66673412.000000","87800668.000000","3623976.000000","24938412.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19965964.000000",,,,,,,,"264.000000","7048.000000",,,,,,,,,,,"3854.000000","716.000000","416.000000","569.000000","1155.000000","521.000000","873.000000","0.000000","0.000000","0.000000","535.000000","363.000000","458.000000","730.000000","442.000000","660.000000","160.000000","6000.000000",,"8967154.000000",,,,, +"12649.000000","52.920000","12649.000000","52.920000","12649.000000","52.920000",,,,,,,,,,,,,,"79.000000","11152.000000","10820.000000","35.000000","11152.000000","11152.000000",,,,,,,,,,,"5917652.000000","7243008.000000","478820.000000","0.000000","66652912.000000","0.000000","87800808.000000",,"3623976.000000","24958816.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000","7243008.000000","66652912.000000","87800808.000000","3623976.000000","24958816.000000","1429420.000000","1630920.000000",,,,"10935028.000000","19982880.000000",,,,,,,,"219.000000","11184.000000",,,,,,,,,,,"3851.000000","703.000000","456.000000","569.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","528.000000","391.000000","458.000000","730.000000","521.000000","660.000000","160.000000","6000.000000",,"8967174.000000",,,,, +"9726.000000","48.330000","9726.000000","48.330000","9726.000000","48.330000",,,,,,,,,,,,,,"51.000000","7134.000000","6917.000000","17.000000","7134.000000","7134.000000",,,,,,,,,,,"6022508.000000","7536608.000000","478820.000000","0.000000","66621496.000000","0.000000","87800840.000000",,"3623976.000000","24982788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000","7536608.000000","66621496.000000","87800840.000000","3623976.000000","24982788.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20009912.000000",,,,,,,,"151.000000","7149.000000",,,,,,,,,,,"3883.000000","693.000000","440.000000","561.000000","1155.000000","558.000000","873.000000","0.000000","0.000000","0.000000","522.000000","384.000000","453.000000","729.000000","521.000000","660.000000","160.000000","6000.000000",,"8967194.000000",,,,, +"11940.000000","51.780000","11940.000000","51.780000","11940.000000","51.780000",,,,,,,,,,,,,,"47.000000","8478.000000","8222.000000","19.000000","8478.000000","8478.000000",,,,,,,,,,,"6085420.000000","7708544.000000","478820.000000","0.000000","66596196.000000","0.000000","87800840.000000",,"3623976.000000","25134896.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000","7708544.000000","66596196.000000","87800840.000000","3623976.000000","25134896.000000","1429420.000000","1630920.000000",,,,"10935028.000000","20029612.000000",,,,,,,,"177.000000","8510.000000",,,,,,,,,,,"3950.000000","687.000000","475.000000","566.000000","1155.000000","609.000000","873.000000","0.000000","0.000000","0.000000","517.000000","407.000000","458.000000","720.000000","521.000000","660.000000","160.000000","6000.000000",,"8967214.000000",,,,, +"11641.000000","51.330000","11641.000000","51.330000","11641.000000","51.330000",,,,,,,,,,,,,,"67.000000","9655.000000","9443.000000","16.000000","9655.000000","9655.000000",,,,,,,,,,,"5771460.000000","7421116.000000","478820.000000","0.000000","66627168.000000","0.000000","87870452.000000",,"3623976.000000","25171740.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000","7421116.000000","66627168.000000","87870452.000000","3623976.000000","25171740.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20062336.000000",,,,,,,,"171.000000","9628.000000",,,,,,,,,,,"3817.000000","671.000000","454.000000","561.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","510.000000","390.000000","456.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967234.000000",,,,, +"8580.000000","46.515000","8580.000000","46.515000","8580.000000","46.515000",,,,,,,,,,,,,,"391.000000","2757.000000","2393.000000","3.000000","2757.000000","2757.000000",,,,,,,,,,,"5645628.000000","7001684.000000","478820.000000","0.000000","66588096.000000","0.000000","87870452.000000",,"3623976.000000","25245616.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000","7001684.000000","66588096.000000","87870452.000000","3623976.000000","25245616.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20095192.000000",,,,,,,,"374.000000","2355.000000",,,,,,,,,,,"3843.000000","661.000000","448.000000","552.000000","1145.000000","634.000000","873.000000","0.000000","0.000000","0.000000","503.000000","387.000000","449.000000","720.000000","502.000000","660.000000","160.000000","6000.000000",,"8967254.000000",,,,, +"12589.000000","52.785000","12589.000000","52.785000","12589.000000","52.785000",,,,,,,,,,,,,,"56.000000","10555.500000","10279.000000","26.000000","10555.500000","10555.500000",,,,,,,,,,,"5093468.000000","6396556.000000","478820.000000","0.000000","66566464.000000","0.000000","87870452.000000",,"3623976.000000","25281304.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000","6396556.000000","66566464.000000","87870452.000000","3623976.000000","25281304.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20114524.000000",,,,,,,,"179.000000","10597.000000",,,,,,,,,,,"3898.000000","641.000000","423.000000","543.000000","1096.000000","634.000000","869.000000","0.000000","0.000000","0.000000","495.000000","372.000000","445.000000","712.000000","502.000000","660.000000","160.000000","6000.000000",,"8967274.000000",,,,, +"12696.000000","52.955000","12696.000000","52.955000","12696.000000","52.955000",,,,,,,,,,,,,,"53.000000","5177.000000","4927.000000","9.000000","5177.000000","5177.000000",,,,,,,,,,,"5369800.000000","6630948.000000","478820.000000","0.000000","66571348.000000","0.000000","87874160.000000",,"3623976.000000","25299696.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000","6630948.000000","66571348.000000","87874160.000000","3623976.000000","25299696.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20130320.000000",,,,,,,,"138.000000","5235.000000",,,,,,,,,,,"3888.000000","630.000000","461.000000","541.000000","1021.000000","672.000000","837.000000","0.000000","0.000000","0.000000","490.000000","401.000000","443.000000","710.000000","549.000000","631.000000","160.000000","6000.000000",,"8967294.000000",,,,, +"11692.000000","51.355000","11692.000000","51.355000","11692.000000","51.355000",,,,,,,,,,,,,,"105.000000","5473.000000","5203.000000","14.000000","5473.000000","5473.000000",,,,,,,,,,,"5282204.000000","6606264.000000","478820.000000","0.000000","66517724.000000","0.000000","87870452.000000",,"3623976.000000","25321244.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000","6606264.000000","66517724.000000","87870452.000000","3623976.000000","25321244.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20156648.000000",,,,,,,,"159.000000","5479.000000",,,,,,,,,,,"3877.000000","613.000000","485.000000","530.000000","990.000000","672.000000","832.000000","0.000000","0.000000","0.000000","483.000000","419.000000","435.000000","676.000000","549.000000","583.000000","160.000000","6000.000000",,"8967314.000000",,,,, +"12428.000000","52.500000","12428.000000","52.500000","12428.000000","52.500000",,,,,,,,,,,,,,"62.000000","5729.000000","5666.000000","5.000000","5729.000000","5729.000000",,,,,,,,,,,"5296196.000000","6578312.000000","478820.000000","0.000000","66501136.000000","0.000000","87870452.000000",,"3623976.000000","25290932.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000","6578312.000000","66501136.000000","87870452.000000","3623976.000000","25290932.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20169908.000000",,,,,,,,"182.000000",,,,,,,,,,,,"3901.000000","594.000000","518.000000","513.000000","873.000000","672.000000","731.000000","0.000000","0.000000","0.000000","478.000000","438.000000","424.000000","660.000000","549.000000","549.000000","160.000000","6000.000000",,"8967334.000000",,,,, +"13638.000000","54.380000","13638.000000","54.380000","13638.000000","54.380000",,,,,,,,,,,,,,"48.000000","8280.500000","7889.000000","10.000000","8280.500000","8280.500000",,,,,,,,,,,"4709000.000000","5897312.000000","478820.000000","0.000000","66476892.000000","0.000000","87870452.000000",,"3623976.000000","25314276.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000","5897312.000000","66476892.000000","87870452.000000","3623976.000000","25314276.000000","1429420.000000","1630920.000000",,,,"10865416.000000","20189308.000000",,,,,,,,"521.000000","8102.000000",,,,,,,,,,,"3904.000000","576.000000","497.000000","485.000000","816.000000","614.000000","672.000000","0.000000","0.000000","0.000000","470.000000","434.000000","412.000000","597.000000","538.000000","538.000000","160.000000","6000.000000",,"8967354.000000",,,,, +"11664.000000","51.260000","11664.000000","51.260000","11664.000000","51.260000",,,,,,,,,,,,,,"37.000000","4794.000000","3887.000000","7.000000","4794.000000","4794.000000",,,,,,,,,,,"4621092.000000","5850508.000000","478820.000000","0.000000","66414684.000000","0.000000","87853432.000000",,"3623976.000000","25366512.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000","5850508.000000","66414684.000000","87853432.000000","3623976.000000","25366512.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20224700.000000",,,,,,,,"210.000000","5453.000000",,,,,,,,,,,"3913.000000","559.000000","511.000000","466.000000","765.000000","614.000000","609.000000","0.000000","0.000000","0.000000","463.000000","440.000000","404.000000","576.000000","538.000000","521.000000","160.000000","6000.000000",,"8967374.000000",,,,, +"10981.000000","50.180000","10981.000000","50.180000","10981.000000","50.180000",,,,,,,,,,,,,,"49.000000","6164.000000","5595.000000","8.000000","6164.000000","6164.000000",,,,,,,,,,,"4523840.000000","5648404.000000","478820.000000","0.000000","66395240.000000","0.000000","87853684.000000",,"3623976.000000","25358732.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000","5648404.000000","66395240.000000","87853684.000000","3623976.000000","25358732.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20246060.000000",,,,,,,,"197.000000","6485.000000",,,,,,,,,,,"3741.000000","552.000000","498.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","460.000000","431.000000","402.000000","570.000000","538.000000","504.000000","160.000000","6000.000000",,"8967394.000000",,,,, +"10288.000000","49.080000","10288.000000","49.080000","10288.000000","49.080000",,,,,,,,,,,,,,"54.000000","5498.000000","5400.000000","3.000000","5498.000000","5498.000000",,,,,,,,,,,"4607728.000000","5837148.000000","478820.000000","0.000000","66363524.000000","0.000000","87853684.000000",,"3623976.000000","25392204.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000","5837148.000000","66363524.000000","87853684.000000","3623976.000000","25392204.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20278188.000000",,,,,,,,"136.000000","5405.000000",,,,,,,,,,,"3855.000000","546.000000","444.000000","463.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","455.000000","384.000000","400.000000","566.000000","466.000000","504.000000","160.000000","6000.000000",,"8967414.000000",,,,, +"10870.000000","49.975000","10870.000000","49.975000","10870.000000","49.975000",,,,,,,,,,,,,,"36.000000","7411.500000","7242.000000","15.000000","7411.500000","7411.500000",,,,,,,,,,,"4524600.000000","6173448.000000","478820.000000","0.000000","66331604.000000","0.000000","87854440.000000",,"3623976.000000","25493928.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000","6173448.000000","66331604.000000","87854440.000000","3623976.000000","25493928.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20306504.000000",,,,,,,,"151.000000","7393.000000",,,,,,,,,,,"3810.000000","544.000000","444.000000","466.000000","740.000000","599.000000","608.000000","0.000000","1.000000","0.000000","453.000000","381.000000","402.000000","566.000000","464.000000","504.000000","160.000000","6000.000000",,"8967434.000000",,,,, +"10712.000000","49.710000","10712.000000","49.710000","10712.000000","49.710000",,,,,,,,,,,,,,"52.000000","6503.000000","6188.000000","8.000000","6503.000000","6503.000000",,,,,,,,,,,"4544820.000000","6207828.000000","478820.000000","0.000000","66293944.000000","0.000000","87853688.000000",,"3623976.000000","25440836.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000","6207828.000000","66293944.000000","87853688.000000","3623976.000000","25440836.000000","1429420.000000","1630920.000000",,,,"10882296.000000","20337984.000000",,,,,,,,"152.000000","6613.000000",,,,,,,,,,,"3690.000000","543.000000","418.000000","466.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","451.000000","368.000000","403.000000","566.000000","405.000000","504.000000","160.000000","6000.000000",,"8967454.000000",,,,, +"10792.000000","49.820000","10792.000000","49.820000","10792.000000","49.820000",,,,,,,,,,,,,,"32.000000","6038.500000","4909.000000","30.000000","6038.500000","6038.500000",,,,,,,,,,,"4963464.000000","6804012.000000","478820.000000","0.000000","66262272.000000","0.000000","87849984.000000",,"3623976.000000","25467536.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000","6804012.000000","66262272.000000","87849984.000000","3623976.000000","25467536.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20360980.000000",,,,,,,,"229.000000","6907.000000",,,,,,,,,,,"3843.000000","539.000000","430.000000","457.000000","740.000000","479.000000","608.000000","0.000000","0.000000","0.000000","449.000000","378.000000","397.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967474.000000",,,,, +"9334.000000","47.525000","9334.000000","47.525000","9334.000000","47.525000",,,,,,,,,,,,,,"100.000000","4140.000000","3488.000000","80.000000","4140.000000","4140.000000",,,,,,,,,,,"4994228.000000","6699040.000000","478820.000000","0.000000","66239128.000000","0.000000","87849868.000000",,"3623976.000000","25373720.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000","6699040.000000","66239128.000000","87849868.000000","3623976.000000","25373720.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378012.000000",,,,,,,,"152.000000","4540.000000",,,,,,,,,,,"3774.000000","535.000000","391.000000","456.000000","740.000000","472.000000","608.000000","0.000000","0.000000","0.000000","446.000000","355.000000","396.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967494.000000",,,,, +"7998.000000","45.425000","7998.000000","45.425000","7998.000000","45.425000",,,,,,,,,,,,,,"48.000000","3174.000000","2973.000000","40.000000","3174.000000","3174.000000",,,,,,,,,,,"4945516.000000","6650324.000000","478820.000000","0.000000","66231912.000000","0.000000","87849868.000000",,"3623976.000000","25435964.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000","6650324.000000","66231912.000000","87849868.000000","3623976.000000","25435964.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20379484.000000",,,,,,,,"124.000000","3202.000000",,,,,,,,,,,"3731.000000","533.000000","367.000000","445.000000","740.000000","445.000000","605.000000","0.000000","0.000000","0.000000","444.000000","337.000000","389.000000","566.000000","404.000000","502.000000","160.000000","6000.000000",,"8967514.000000",,,,, +"11281.000000","50.560000","11281.000000","50.560000","11281.000000","50.560000",,,,,,,,,,,,,,"36.000000","6385.000000","6333.000000","12.000000","6385.000000","6385.000000",,,,,,,,,,,"4358316.000000","5979240.000000","478820.000000","0.000000","66211888.000000","0.000000","87849868.000000",,"3623976.000000","25452824.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000","5979240.000000","66211888.000000","87849868.000000","3623976.000000","25452824.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20392544.000000",,,,,,,,"136.000000","6264.000000",,,,,,,,,,,"3771.000000","528.000000","369.000000","440.000000","731.000000","495.000000","599.000000","0.000000","0.000000","0.000000","441.000000","337.000000","387.000000","566.000000","448.000000","495.000000","160.000000","6000.000000",,"8967534.000000",,,,, +"8572.000000","46.305000","8572.000000","46.305000","8572.000000","46.305000",,,,,,,,,,,,,,"318.000000","3452.500000","3031.000000","14.000000","3452.500000","3452.500000",,,,,,,,,,,"3917920.000000","5790500.000000","478820.000000","0.000000","66192312.000000","0.000000","87849868.000000",,"3623976.000000","25614016.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000","5790500.000000","66192312.000000","87849868.000000","3623976.000000","25614016.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20407792.000000",,,,,,,,"376.000000","3178.000000",,,,,,,,,,,"3733.000000","520.000000","362.000000","439.000000","711.000000","495.000000","599.000000","0.000000","0.000000","0.000000","435.000000","326.000000","384.000000","559.000000","448.000000","495.000000","160.000000","6000.000000",,"8967554.000000",,,,, +"14927.000000","56.315000","14927.000000","56.315000","14927.000000","56.315000",,,,,,,,,,,,,,"48.000000","9044.500000","8952.000000","15.000000","9044.500000","9044.500000",,,,,,,,,,,"4274780.000000","5895708.000000","478820.000000","0.000000","66307388.000000","0.000000","87850216.000000",,"3623976.000000","25514036.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000","5895708.000000","66307388.000000","87850216.000000","3623976.000000","25514036.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20289864.000000",,,,,,,,"176.000000","8912.000000",,,,,,,,,,,"4017.000000","518.000000","447.000000","450.000000","707.000000","686.000000","608.000000","0.000000","0.000000","0.000000","434.000000","387.000000","392.000000","558.000000","558.000000","528.000000","160.000000","6000.000000",,"8967574.000000",,,,, +"13174.000000","53.565000","13174.000000","53.565000","13174.000000","53.565000",,,,,,,,,,,,,,"48.000000","12146.500000","11717.000000","26.000000","12146.500000","12146.500000",,,,,,,,,,,"4270640.000000","6576852.000000","478820.000000","0.000000","66290108.000000","0.000000","87849868.000000",,"3623976.000000","25530144.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000","6576852.000000","66290108.000000","87849868.000000","3623976.000000","25530144.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20302644.000000",,,,,,,,"186.000000","12341.000000",,,,,,,,,,,"4042.000000","510.000000","494.000000","447.000000","690.000000","686.000000","587.000000","0.000000","0.000000","0.000000","430.000000","429.000000","392.000000","549.000000","558.000000","504.000000","160.000000","6000.000000",,"8967594.000000",,,,, +"15060.000000","56.510000","15060.000000","56.510000","15060.000000","56.510000",,,,,,,,,,,,,,"48.000000","7737.500000","7021.000000","17.000000","7737.500000","7737.500000",,,,,,,,,,,"4354524.000000","6607732.000000","478820.000000","0.000000","66271380.000000","0.000000","87849868.000000",,"3623976.000000","25570712.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000","6607732.000000","66271380.000000","87849868.000000","3623976.000000","25570712.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20318516.000000",,,,,,,,"222.000000","8182.000000",,,,,,,,,,,"4029.000000","511.000000","593.000000","460.000000","704.000000","716.000000","614.000000","0.000000","0.000000","0.000000","432.000000","508.000000","402.000000","555.000000","564.000000","538.000000","160.000000","6000.000000",,"8967614.000000",,,,, +"15684.000000","57.475000","15684.000000","57.475000","15684.000000","57.475000",,,,,,,,,,,,,,"51.000000","5488.500000","4655.000000","9.000000","5488.500000","5488.500000",,,,,,,,,,,"4249664.000000","6523844.000000","478820.000000","0.000000","66249104.000000","0.000000","87849868.000000",,"3623976.000000","25571044.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000","6523844.000000","66249104.000000","87849868.000000","3623976.000000","25571044.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20336216.000000",,,,,,,,"210.000000","6060.000000",,,,,,,,,,,"3898.000000","512.000000","592.000000","464.000000","704.000000","716.000000","641.000000","0.000000","0.000000","0.000000","432.000000","511.000000","407.000000","554.000000","564.000000","549.000000","160.000000","6000.000000",,"8967634.000000",,,,, +"15315.000000","56.900000","15315.000000","56.900000","15315.000000","56.900000",,,,,,,,,,,,,,"35.000000","8737.500000","8573.000000","6.000000","8737.500000","8737.500000",,,,,,,,,,,"3607628.000000","5532068.000000","478820.000000","0.000000","66248520.000000","0.000000","87849868.000000",,"3623976.000000","25575264.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000","5532068.000000","66248520.000000","87849868.000000","3623976.000000","25575264.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20338432.000000",,,,,,,,"513.000000","8352.000000",,,,,,,,,,,"4115.000000","512.000000","644.000000","476.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","432.000000","540.000000","414.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967654.000000",,,,, +"14183.000000","55.105000","14183.000000","55.105000","14183.000000","55.105000",,,,,,,,,,,,,,"95.000000","6812.500000","6489.000000","19.000000","6812.500000","6812.500000",,,,,,,,,,,"3775404.000000","5217496.000000","478820.000000","0.000000","66210468.000000","0.000000","87849868.000000",,"3623976.000000","25592028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000","5217496.000000","66210468.000000","87849868.000000","3623976.000000","25592028.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20366700.000000",,,,,,,,"128.000000","6912.000000",,,,,,,,,,,"4031.000000","512.000000","622.000000","483.000000","704.000000","775.000000","664.000000","0.000000","0.000000","0.000000","433.000000","526.000000","419.000000","554.000000","592.000000","554.000000","160.000000","6000.000000",,"8967674.000000",,,,, +"13099.000000","53.405000","13099.000000","53.405000","13099.000000","53.405000",,,,,,,,,,,,,,"55.000000","6356.500000","6076.000000","17.000000","6356.500000","6356.500000",,,,,,,,,,,"3901232.000000","5301664.000000","478820.000000","0.000000","66203544.000000","0.000000","87849868.000000",,"3623976.000000","25616976.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000","5301664.000000","66203544.000000","87849868.000000","3623976.000000","25616976.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20370832.000000",,,,,,,,"167.000000","6414.000000",,,,,,,,,,,"3994.000000","514.000000","622.000000","489.000000","704.000000","775.000000","670.000000","0.000000","0.000000","0.000000","434.000000","523.000000","425.000000","555.000000","597.000000","555.000000","160.000000","6000.000000",,"8967694.000000",,,,, +"13518.000000","54.055000","13518.000000","54.055000","13518.000000","54.055000",,,,,,,,,,,,,,"38.000000","11105.500000","10855.000000","28.000000","11105.500000","11105.500000",,,,,,,,,,,"4945520.000000","6182468.000000","478820.000000","0.000000","66190404.000000","0.000000","87849868.000000",,"3623976.000000","25628252.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000","6182468.000000","66190404.000000","87849868.000000","3623976.000000","25628252.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20378656.000000",,,,,,,,"169.000000","11147.000000",,,,,,,,,,,"3968.000000","515.000000","568.000000","501.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","435.000000","490.000000","435.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967714.000000",,,,, +"12668.000000","52.705000","12668.000000","52.705000","12668.000000","52.705000",,,,,,,,,,,,,,"34.000000","5754.500000","5531.000000","5.000000","5754.500000","5754.500000",,,,,,,,,,,"4882464.000000","6182324.000000","478820.000000","0.000000","66164976.000000","0.000000","87849728.000000",,"3623976.000000","25665984.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000","6182324.000000","66164976.000000","87849728.000000","3623976.000000","25665984.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20400040.000000",,,,,,,,"160.000000","5783.000000",,,,,,,,,,,"4008.000000","516.000000","559.000000","505.000000","704.000000","685.000000","670.000000","0.000000","0.000000","0.000000","436.000000","479.000000","439.000000","554.000000","597.000000","555.000000","160.000000","6000.000000",,"8967734.000000",,,,, +"12957.000000","53.160000","12957.000000","53.160000","12957.000000","53.160000",,,,,,,,,,,,,,"54.000000","6243.000000","5878.000000","8.000000","6243.000000","6243.000000",,,,,,,,,,,"4903436.000000","6098440.000000","478820.000000","0.000000","66162728.000000","0.000000","87849728.000000",,"3623976.000000","25638800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000","6098440.000000","66162728.000000","87849728.000000","3623976.000000","25638800.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20404636.000000",,,,,,,,"177.000000","6377.000000",,,,,,,,,,,"3799.000000","515.000000","519.000000","509.000000","704.000000","569.000000","670.000000","0.000000","0.000000","0.000000","434.000000","450.000000","441.000000","554.000000","514.000000","555.000000","160.000000","6000.000000",,"8967754.000000",,,,, +"11634.000000","51.085000","11634.000000","51.085000","11634.000000","51.085000",,,,,,,,,,,,,,"36.000000","3772.000000","3561.000000","28.000000","3772.000000","3772.000000",,,,,,,,,,,"4641876.000000","6021324.000000","478820.000000","0.000000","66147680.000000","0.000000","87849728.000000",,"3623976.000000","25652628.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000","6021324.000000","66147680.000000","87849728.000000","3623976.000000","25652628.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20414812.000000",,,,,,,,"108.000000","3838.000000",,,,,,,,,,,"3964.000000","514.000000","506.000000","516.000000","704.000000","611.000000","670.000000","0.000000","0.000000","0.000000","434.000000","438.000000","447.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967774.000000",,,,, +"13363.000000","53.775000","13363.000000","53.775000","13363.000000","53.775000",,,,,,,,,,,,,,"86.000000","6921.000000","6622.000000","9.000000","6921.000000","6921.000000",,,,,,,,,,,"4600072.000000","5937580.000000","478820.000000","0.000000","66120256.000000","0.000000","87849868.000000",,"3623976.000000","25687888.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000","5937580.000000","66120256.000000","87849868.000000","3623976.000000","25687888.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20438420.000000",,,,,,,,"186.000000","6947.000000",,,,,,,,,,,"4022.000000","516.000000","524.000000","532.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","449.000000","458.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967794.000000",,,,, +"11976.000000","51.590000","11976.000000","51.590000","11976.000000","51.590000",,,,,,,,,,,,,,"36.000000","5718.000000","5575.000000","14.000000","5718.000000","5718.000000",,,,,,,,,,,"4516184.000000","5916612.000000","478820.000000","0.000000","66093600.000000","0.000000","87849868.000000",,"3623976.000000","25714908.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000","5916612.000000","66093600.000000","87849868.000000","3623976.000000","25714908.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20458696.000000",,,,,,,,"115.000000","5709.000000",,,,,,,,,,,"3946.000000","517.000000","520.000000","540.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","437.000000","451.000000","464.000000","554.000000","550.000000","555.000000","160.000000","6000.000000",,"8967814.000000",,,,, +"10442.000000","49.175000","10442.000000","49.175000","10442.000000","49.175000",,,,,,,,,,,,,,"51.000000","11694.500000","11114.000000","62.000000","11694.500000","11694.500000",,,,,,,,,,,"4274432.000000","5811756.000000","478820.000000","0.000000","66075464.000000","0.000000","87849868.000000",,"3623976.000000","25732240.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000","5811756.000000","66075464.000000","87849868.000000","3623976.000000","25732240.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20473032.000000",,,,,,,,"202.000000","12021.000000",,,,,,,,,,,"3913.000000","514.000000","495.000000","541.000000","704.000000","690.000000","685.000000","0.000000","0.000000","0.000000","436.000000","431.000000","466.000000","554.000000","545.000000","555.000000","160.000000","6000.000000",,"8967834.000000",,,,, +"8853.000000","46.670000","8853.000000","46.670000","8853.000000","46.670000",,,,,,,,,,,,,,"319.000000","4361.500000","3101.000000","5.000000","4361.500000","4361.500000",,,,,,,,,,,"4169532.000000","5664912.000000","478820.000000","0.000000","66044904.000000","0.000000","87849824.000000",,"3623976.000000","25773748.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000","5664912.000000","66044904.000000","87849824.000000","3623976.000000","25773748.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20498728.000000",,,,,,,,"486.000000","4816.000000",,,,,,,,,,,"3778.000000","511.000000","414.000000","542.000000","704.000000","542.000000","685.000000","0.000000","0.000000","0.000000","433.000000","369.000000","466.000000","554.000000","462.000000","555.000000","160.000000","6000.000000",,"8967854.000000",,,,, +"13358.000000","53.730000","13358.000000","53.730000","13358.000000","53.730000",,,,,,,,,,,,,,"103.000000","6442.500000","6322.000000","6.000000","6442.500000","6442.500000",,,,,,,,,,,"4085648.000000","5664628.000000","478820.000000","0.000000","66037096.000000","0.000000","87849824.000000",,"3623976.000000","25797256.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000","5664628.000000","66037096.000000","87849824.000000","3623976.000000","25797256.000000","1429420.000000","1630920.000000",,,,"10886000.000000","20501920.000000",,,,,,,,"162.000000","6297.000000",,,,,,,,,,,"3727.000000","509.000000","423.000000","535.000000","690.000000","632.000000","664.000000","0.000000","0.000000","0.000000","432.000000","361.000000","459.000000","554.000000","462.000000","554.000000","160.000000","6000.000000",,"8967874.000000",,,,, +"13508.000000","53.945000","13508.000000","53.945000","13508.000000","53.945000",,,,,,,,,,,,,,"199.000000","8706.000000","8249.000000","18.000000","8706.000000","8706.000000",,,,,,,,,,,"4224960.000000","5656268.000000","478820.000000","0.000000","65999752.000000","0.000000","87828216.000000",,"3623976.000000","25814048.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000","5656268.000000","65999752.000000","87828216.000000","3623976.000000","25814048.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20516436.000000",,,,,,,,"335.000000","8628.000000",,,,,,,,,,,"3876.000000","512.000000","529.000000","548.000000","704.000000","986.000000","690.000000","0.000000","0.000000","0.000000","433.000000","417.000000","463.000000","554.000000","677.000000","555.000000","160.000000","6000.000000",,"8967894.000000",,,,, +"11892.000000","51.395000","11892.000000","51.395000","11892.000000","51.395000",,,,,,,,,,,,,,"90.000000","3874.500000","3762.000000","15.000000","3874.500000","3874.500000",,,,,,,,,,,"4644392.000000","6243468.000000","478820.000000","0.000000","65971960.000000","0.000000","87828216.000000",,"3623976.000000","25835552.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000","6243468.000000","65971960.000000","87828216.000000","3623976.000000","25835552.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20541380.000000",,,,,,,,"97.000000","3798.000000",,,,,,,,,,,"3936.000000","508.000000","557.000000","535.000000","690.000000","986.000000","685.000000","0.000000","0.000000","0.000000","430.000000","448.000000","454.000000","550.000000","677.000000","554.000000","160.000000","6000.000000",,"8967914.000000",,,,, +"12535.000000","52.400000","12535.000000","52.400000","12535.000000","52.400000",,,,,,,,,,,,,,"49.000000","5684.000000","5565.000000","8.000000","5684.000000","5684.000000",,,,,,,,,,,"4728280.000000","6285412.000000","478816.000000","0.000000","65964764.000000","0.000000","87828220.000000",,"3623976.000000","25810316.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000","6285412.000000","65964764.000000","87828220.000000","3623976.000000","25810316.000000","1429420.000000","1630920.000000",,,,"10907652.000000","20545732.000000",,,,,,,,"134.000000","5619.000000",,,,,,,,,,,"3861.000000","502.000000","560.000000","529.000000","685.000000","986.000000","685.000000","0.000000","0.000000","0.000000","427.000000","468.000000","450.000000","549.000000","677.000000","550.000000","160.000000","6000.000000",,"8967934.000000",,,,, +"13866.000000","54.475000","13866.000000","54.475000","13866.000000","54.475000",,,,,,,,,,,,,,"43.000000","9066.000000","8537.000000","8.000000","9066.000000","9066.000000",,,,,,,,,,,"4503648.000000","6055844.000000","478816.000000","0.000000","65935488.000000","0.000000","87819552.000000",,"3623976.000000","25831692.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000","6055844.000000","65935488.000000","87819552.000000","3623976.000000","25831692.000000","1429420.000000","1630920.000000",,,,"10916320.000000","20564596.000000",,,,,,,,"537.000000","9015.000000",,,,,,,,,,,"3901.000000","494.000000","503.000000","520.000000","660.000000","636.000000","660.000000","0.000000","0.000000","0.000000","423.000000","442.000000","444.000000","544.000000","531.000000","537.000000","160.000000","6000.000000",,"8967954.000000",,,,, +"11118.000000","50.145000","11118.000000","50.145000","11118.000000","50.145000",,,,,,,,,,,,,,"36.000000","2657.000000","2657.000000","10.000000","2657.000000","2657.000000",,,,,,,,,,,"3892684.000000","5276376.000000","478816.000000","0.000000","65885172.000000","0.000000","87804884.000000",,"3623976.000000","25767356.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000","5276376.000000","65885172.000000","87804884.000000","3623976.000000","25767356.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20596040.000000",,,,,,,,"79.000000","2542.000000",,,,,,,,,,,"3873.000000","487.000000","504.000000","512.000000","636.000000","636.000000","660.000000","0.000000","0.000000","0.000000","420.000000","437.000000","437.000000","538.000000","531.000000","531.000000","160.000000","6000.000000",,"8967974.000000",,,,, +"10956.000000","49.870000","10956.000000","49.870000","10956.000000","49.870000",,,,,,,,,,,,,,"49.000000","5939.500000","5600.000000","18.000000","5939.500000","5939.500000",,,,,,,,,,,"3955596.000000","5318604.000000","478816.000000","0.000000","65854352.000000","0.000000","87804884.000000",,"3623976.000000","25845340.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000","5318604.000000","65854352.000000","87804884.000000","3623976.000000","25845340.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20623528.000000",,,,,,,,"162.000000","6066.000000",,,,,,,,,,,"3923.000000","486.000000","488.000000","502.000000","636.000000","636.000000","636.000000","0.000000","0.000000","0.000000","419.000000","425.000000","431.000000","537.000000","531.000000","518.000000","160.000000","6000.000000",,"8967994.000000",,,,, +"10419.000000","49.020000","10419.000000","49.020000","10419.000000","49.020000",,,,,,,,,,,,,,"35.000000","6299.000000","6263.000000","5.000000","6299.000000","6299.000000",,,,,,,,,,,"3974568.000000","5192772.000000","478816.000000","0.000000","65825412.000000","0.000000","87804884.000000",,"3623976.000000","25872800.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000","5192772.000000","65825412.000000","87804884.000000","3623976.000000","25872800.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20647756.000000",,,,,,,,"141.000000",,,,,,,,,,,,"3687.000000","485.000000","433.000000","493.000000","636.000000","548.000000","636.000000","0.000000","0.000000","0.000000","419.000000","383.000000","422.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968014.000000",,,,, +"11342.000000","50.465000","11342.000000","50.465000","11342.000000","50.465000",,,,,,,,,,,,,,"37.000000","7009.000000","6667.000000","3.000000","7009.000000","7009.000000",,,,,,,,,,,"3996292.000000","5487124.000000","478816.000000","0.000000","65833848.000000","0.000000","87805636.000000",,"3623976.000000","25921028.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000","5487124.000000","65833848.000000","87805636.000000","3623976.000000","25921028.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20635496.000000",,,,,,,,"184.000000","7129.000000",,,,,,,,,,,"3720.000000","487.000000","445.000000","489.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","420.000000","389.000000","419.000000","537.000000","518.000000","518.000000","160.000000","6000.000000",,"8968034.000000",,,,, +"10118.000000","48.555000","10118.000000","48.555000","10118.000000","48.555000",,,,,,,,,,,,,,"51.000000","5584.000000","5459.000000","8.000000","5584.000000","5584.000000",,,,,,,,,,,"4184284.000000","5612200.000000","478816.000000","0.000000","65846336.000000","0.000000","87804884.000000",,"3623976.000000","25931788.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000","5612200.000000","65846336.000000","87804884.000000","3623976.000000","25931788.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20616496.000000",,,,,,,,"169.000000","5488.000000",,,,,,,,,,,"3817.000000","486.000000","419.000000","482.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","419.000000","365.000000","414.000000","537.000000","491.000000","518.000000","160.000000","6000.000000",,"8968054.000000",,,,, +"9994.000000","48.350000","9994.000000","48.350000","9994.000000","48.350000",,,,,,,,,,,,,,"100.000000","4551.500000","4384.000000","4.000000","4551.500000","4551.500000",,,,,,,,,,,"3954452.000000","5525584.000000","478816.000000","0.000000","65824024.000000","0.000000","87804884.000000",,"3623976.000000","25951828.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000","5525584.000000","65824024.000000","87804884.000000","3623976.000000","25951828.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20633564.000000",,,,,,,,"119.000000","4500.000000",,,,,,,,,,,"3889.000000","483.000000","416.000000","475.000000","636.000000","585.000000","636.000000","0.000000","0.000000","0.000000","417.000000","366.000000","408.000000","537.000000","491.000000","515.000000","160.000000","6000.000000",,"8968074.000000",,,,, +"9813.000000","48.055000","9813.000000","48.055000","9813.000000","48.055000",,,,,,,,,,,,,,"38.000000","6231.500000","5114.000000","3.000000","6231.500000","6231.500000",,,,,,,,,,,"3996368.000000","5399728.000000","478804.000000","0.000000","65801584.000000","0.000000","87804868.000000",,"3623976.000000","25977636.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000","5399728.000000","65801584.000000","87804868.000000","3623976.000000","25977636.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20650996.000000",,,,,,,,"225.000000","7086.000000",,,,,,,,,,,"3735.000000","484.000000","402.000000","465.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","418.000000","356.000000","400.000000","537.000000","438.000000","500.000000","160.000000","6000.000000",,"8968094.000000",,,,, +"10511.000000","49.145000","10511.000000","49.145000","10511.000000","49.145000",,,,,,,,,,,,,,"33.000000","5589.500000","5302.000000","6.000000","5589.500000","5589.500000",,,,,,,,,,,"4059280.000000","5357500.000000","478804.000000","0.000000","65787580.000000","0.000000","87804868.000000",,"3623976.000000","26014472.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000","5357500.000000","65787580.000000","87804868.000000","3623976.000000","26014472.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20660564.000000",,,,,,,,"164.000000","5679.000000",,,,,,,,,,,"3880.000000","481.000000","408.000000","459.000000","636.000000","519.000000","632.000000","0.000000","0.000000","0.000000","417.000000","365.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968114.000000",,,,, +"10858.000000","49.675000","10858.000000","49.675000","10858.000000","49.675000",,,,,,,,,,,,,,"40.000000","5510.000000","5280.000000","3.000000","5510.000000","5510.000000",,,,,,,,,,,"3815092.000000","5284672.000000","478804.000000","0.000000","65766724.000000","0.000000","87804868.000000",,"3623976.000000","26034348.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000","5284672.000000","65766724.000000","87804868.000000","3623976.000000","26034348.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20677372.000000",,,,,,,,"137.000000","5563.000000",,,,,,,,,,,"3869.000000","480.000000","408.000000","458.000000","636.000000","508.000000","632.000000","0.000000","0.000000","0.000000","416.000000","367.000000","395.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968134.000000",,,,, +"9614.000000","47.720000","9614.000000","47.720000","9614.000000","47.720000",,,,,,,,,,,,,,"316.000000","5480.500000","5092.000000","7.000000","5480.500000","5480.500000",,,,,,,,,,,"3479684.000000","4928296.000000","478804.000000","0.000000","65749604.000000","0.000000","87805008.000000",,"3623976.000000","26010844.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000","4928296.000000","65749604.000000","87805008.000000","3623976.000000","26010844.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20690164.000000",,,,,,,,"397.000000","5155.000000",,,,,,,,,,,"3746.000000","480.000000","390.000000","460.000000","636.000000","497.000000","632.000000","0.000000","0.000000","0.000000","416.000000","355.000000","397.000000","537.000000","446.000000","500.000000","160.000000","6000.000000",,"8968154.000000",,,,, +"11861.000000","51.370000","11861.000000","51.370000","11861.000000","51.370000",,,,,,,,,,,,,,"33.000000","4718.000000","4410.000000","10.000000","4718.000000","4718.000000",,,,,,,,,,,"3647456.000000","5075100.000000","478804.000000","0.000000","66006064.000000","0.000000","87805008.000000",,"3623976.000000","25781772.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000","5075100.000000","66006064.000000","87805008.000000","3623976.000000","25781772.000000","1429420.000000","1630920.000000",,,,"10930988.000000","20431744.000000",,,,,,,,"133.000000","4858.000000",,,,,,,,,,,"3994.000000","480.000000","407.000000","456.000000","636.000000","497.000000","585.000000","0.000000","0.000000","0.000000","416.000000","366.000000","398.000000","537.000000","454.000000","500.000000","160.000000","6000.000000",,"8968174.000000",,,,, +"18266.000000","61.410000","18266.000000","61.410000","18266.000000","61.410000",,,,,,,,,,,,,,"51.000000","8352.000000","8224.000000","3.000000","8352.000000","8352.000000",,,,,,,,,,,"4583268.000000","5695828.000000","478804.000000","0.000000","66029144.000000","0.000000","87779372.000000",,"3623976.000000","25696700.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000","5695828.000000","66029144.000000","87779372.000000","3623976.000000","25696700.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20445800.000000",,,,,,,,"176.000000","8252.000000",,,,,,,,,,,"4111.000000","489.000000","595.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","472.000000","406.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968194.000000",,,,, +"11136.000000","50.235000","11136.000000","50.235000","11136.000000","50.235000",,,,,,,,,,,,,,"51.000000","3388.500000","3212.000000","5.000000","3388.500000","3388.500000",,,,,,,,,,,"4646048.000000","5706752.000000","478800.000000","0.000000","66017400.000000","0.000000","87779236.000000",,"3623976.000000","25739568.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000","5706752.000000","66017400.000000","87779236.000000","3623976.000000","25739568.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20458816.000000",,,,,,,,"101.000000","3412.000000",,,,,,,,,,,"3779.000000","489.000000","615.000000","471.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","421.000000","490.000000","405.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968214.000000",,,,, +"10831.000000","49.755000","10831.000000","49.755000","10831.000000","49.755000",,,,,,,,,,,,,,"94.000000","1560.000000","1350.000000","7.000000","1560.000000","1560.000000",,,,,,,,,,,"4646048.000000","5748976.000000","478796.000000","0.000000","66006616.000000","0.000000","87779240.000000",,"3623976.000000","25747880.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000","5748976.000000","66006616.000000","87779240.000000","3623976.000000","25747880.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20464072.000000",,,,,,,,"114.000000","1561.000000",,,,,,,,,,,"3903.000000","486.000000","604.000000","465.000000","641.000000","1114.000000","636.000000","0.000000","0.000000","0.000000","419.000000","482.000000","400.000000","544.000000","749.000000","518.000000","160.000000","6000.000000",,"8968234.000000",,,,, +"13443.000000","53.835000","13443.000000","53.835000","13443.000000","53.835000",,,,,,,,,,,,,,"40.000000","8005.500000","7738.000000","24.000000","8005.500000","8005.500000",,,,,,,,,,,"5116848.000000","6327928.000000","478796.000000","0.000000","65987492.000000","0.000000","87779300.000000",,"3623976.000000","25746776.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000","6327928.000000","65987492.000000","87779300.000000","3623976.000000","25746776.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20478960.000000",,,,,,,,"501.000000","7730.000000",,,,,,,,,,,"3871.000000","486.000000","459.000000","462.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","419.000000","410.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968254.000000",,,,, +"11103.000000","50.160000","11103.000000","50.160000","11103.000000","50.160000",,,,,,,,,,,,,,"37.000000","4755.000000","4317.000000","2.000000","4755.000000","4755.000000",,,,,,,,,,,"4991032.000000","6212024.000000","478796.000000","0.000000","65967172.000000","0.000000","87779312.000000",,"3623976.000000","25780384.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000","6212024.000000","65967172.000000","87779312.000000","3623976.000000","25780384.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20495492.000000",,,,,,,,"124.000000","5031.000000",,,,,,,,,,,"3911.000000","486.000000","464.000000","463.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","406.000000","399.000000","544.000000","507.000000","507.000000","160.000000","6000.000000",,"8968274.000000",,,,, +"10948.000000","49.915000","10948.000000","49.915000","10948.000000","49.915000",,,,,,,,,,,,,,"44.000000","7369.000000","6145.000000","3.000000","7369.000000","7369.000000",,,,,,,,,,,"4991020.000000","6211724.000000","478796.000000","0.000000","65962192.000000","0.000000","87779300.000000",,"3623976.000000","25802416.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000","6211724.000000","65962192.000000","87779300.000000","3623976.000000","25802416.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20498888.000000",,,,,,,,"255.000000","8294.000000",,,,,,,,,,,"3754.000000","485.000000","480.000000","464.000000","641.000000","589.000000","589.000000","0.000000","0.000000","0.000000","418.000000","411.000000","398.000000","544.000000","507.000000","501.000000","160.000000","6000.000000",,"8968294.000000",,,,, +"9892.000000","48.250000","9892.000000","48.250000","9892.000000","48.250000",,,,,,,,,,,,,,"38.000000","6923.500000","5440.000000","23.000000","6923.500000","6923.500000",,,,,,,,,,,"4748196.000000","5986584.000000","478796.000000","0.000000","65938664.000000","0.000000","87779300.000000",,"3623976.000000","25823152.000000","0.000000","1429420.000000","0.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000","5986584.000000","65938664.000000","87779300.000000","3623976.000000","25823152.000000","1429420.000000","1630920.000000",,,,"10956624.000000","20516768.000000",,,,,,,,"231.000000","8138.000000",,,,,,,,,,,"3699.000000","486.000000","438.000000","463.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","418.000000","371.000000","397.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968314.000000",,,,, +"10013.000000","48.425000","10013.000000","48.425000","10013.000000","48.425000",,,,,,,,,,,,,,"37.000000","6928.000000","5541.000000","8.000000","6928.000000","6928.000000",,,,,,,,,,,"4685248.000000","5955668.000000","478796.000000","0.000000","65905692.000000","0.000000","87779272.000000",,"3623976.000000","25861316.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000","5955668.000000","65905692.000000","87779272.000000","3623976.000000","25861316.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20545496.000000",,,,,,,,"222.000000","8055.000000",,,,,,,,,,,"3803.000000","485.000000","428.000000","460.000000","641.000000","530.000000","589.000000","0.000000","0.000000","0.000000","417.000000","366.000000","395.000000","544.000000","447.000000","501.000000","160.000000","6000.000000",,"8968334.000000",,,,, +"9216.000000","47.155000","9216.000000","47.155000","9216.000000","47.155000",,,,,,,,,,,,,,"37.000000","3885.000000","2578.000000","24.000000","3885.000000","3885.000000",,,,,,,,,,,"4685248.000000","5986832.000000","478796.000000","0.000000","65873052.000000","0.000000","87779272.000000",,"3623976.000000","25868948.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000","5986832.000000","65873052.000000","87779272.000000","3623976.000000","25868948.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20574180.000000",,,,,,,,"199.000000","4955.000000",,,,,,,,,,,"3784.000000","483.000000","392.000000","458.000000","641.000000","492.000000","589.000000","0.000000","0.000000","0.000000","416.000000","345.000000","394.000000","544.000000","390.000000","501.000000","160.000000","6000.000000",,"8968354.000000",,,,, +"10887.000000","49.770000","10887.000000","49.770000","10887.000000","49.770000",,,,,,,,,,,,,,"41.000000","7413.500000","6096.000000","3.000000","7413.500000","7413.500000",,,,,,,,,,,"4496504.000000","5714200.000000","478796.000000","0.000000","65860044.000000","0.000000","87779272.000000",,"3623976.000000","25881684.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000","5714200.000000","65860044.000000","87779272.000000","3623976.000000","25881684.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20584244.000000",,,,,,,,"228.000000","8461.000000",,,,,,,,,,,"3797.000000","483.000000","393.000000","459.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","353.000000","394.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968374.000000",,,,, +"8372.000000","45.815000","8372.000000","45.815000","8372.000000","45.815000",,,,,,,,,,,,,,"36.000000","3980.500000","2952.000000","3.000000","3980.500000","3980.500000",,,,,,,,,,,"4412616.000000","5735172.000000","478796.000000","0.000000","65841604.000000","0.000000","87779272.000000",,"3623976.000000","25739328.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000","5735172.000000","65841604.000000","87779272.000000","3623976.000000","25739328.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20601932.000000",,,,,,,,"189.000000","4784.000000",,,,,,,,,,,"3659.000000","483.000000","363.000000","452.000000","641.000000","484.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968394.000000",,,,, +"9974.000000","48.325000","9974.000000","48.325000","9974.000000","48.325000",,,,,,,,,,,,,,"101.000000","6768.000000","5480.000000","21.000000","6768.000000","6768.000000",,,,,,,,,,,"4517476.000000","5944604.000000","478796.000000","0.000000","65826148.000000","0.000000","87779272.000000",,"3623976.000000","25774492.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000","5944604.000000","65826148.000000","87779272.000000","3623976.000000","25774492.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20608388.000000",,,,,,,,"259.000000","7695.000000",,,,,,,,,,,"3696.000000","485.000000","393.000000","455.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","341.000000","389.000000","544.000000","452.000000","501.000000","160.000000","6000.000000",,"8968414.000000",,,,, +"10347.000000","48.895000","10347.000000","48.895000","10347.000000","48.895000",,,,,,,,,,,,,,"34.000000","6960.000000","5696.000000","27.000000","6960.000000","6960.000000",,,,,,,,,,,"4259752.000000","5651000.000000","478796.000000","0.000000","65810924.000000","0.000000","87779272.000000",,"3623976.000000","25788980.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000","5651000.000000","65810924.000000","87779272.000000","3623976.000000","25788980.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20619796.000000",,,,,,,,"232.000000","7957.000000",,,,,,,,,,,"3741.000000","484.000000","385.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","416.000000","330.000000","387.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968434.000000",,,,, +"10656.000000","49.370000","10656.000000","49.370000","10656.000000","49.370000",,,,,,,,,,,,,,"318.000000","5996.500000","4448.000000","2.000000","5996.500000","5996.500000",,,,,,,,,,,"4175728.000000","5650860.000000","478796.000000","0.000000","65787132.000000","0.000000","87779132.000000",,"3623976.000000","25821488.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000","5650860.000000","65787132.000000","87779132.000000","3623976.000000","25821488.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20638516.000000",,,,,,,,"490.000000","6737.000000",,,,,,,,,,,"3829.000000","485.000000","401.000000","454.000000","641.000000","506.000000","589.000000","0.000000","0.000000","0.000000","417.000000","352.000000","389.000000","544.000000","431.000000","501.000000","160.000000","6000.000000",,"8968454.000000",,,,, +"10049.000000","48.410000","10049.000000","48.410000","10049.000000","48.410000",,,,,,,,,,,,,,"35.000000","5981.000000","4496.000000","4.000000","5981.000000","5981.000000",,,,,,,,,,,"4259612.000000","5755716.000000","478796.000000","0.000000","65770904.000000","0.000000","87779132.000000",,"3623976.000000","25970604.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000","5755716.000000","65770904.000000","87779132.000000","3623976.000000","25970604.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20650144.000000",,,,,,,,"242.000000","7187.000000",,,,,,,,,,,"3844.000000","481.000000","394.000000","453.000000","636.000000","500.000000","589.000000","0.000000","0.000000","0.000000","415.000000","363.000000","388.000000","533.000000","461.000000","501.000000","160.000000","6000.000000",,"8968474.000000",,,,, +"13333.000000","53.545000","13333.000000","53.545000","13333.000000","53.545000",,,,,,,,,,,,,,"41.000000","9188.500000","7961.000000","9.000000","9188.500000","9188.500000",,,,,,,,,,,"4211600.000000","5267308.000000","478796.000000","0.000000","65744812.000000","0.000000","87779132.000000",,"3623976.000000","25995508.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000","5267308.000000","65744812.000000","87779132.000000","3623976.000000","25995508.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20672176.000000",,,,,,,,"279.000000","10095.000000",,,,,,,,,,,"3974.000000","481.000000","437.000000","422.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","414.000000","403.000000","373.000000","537.000000","589.000000","461.000000","160.000000","6000.000000",,"8968494.000000",,,,, +"9926.000000","48.195000","9926.000000","48.195000","9926.000000","48.195000",,,,,,,,,,,,,,"40.000000","4515.500000","3166.000000","11.000000","4515.500000","4515.500000",,,,,,,,,,,"3792172.000000","5183424.000000","478792.000000","0.000000","65725256.000000","0.000000","87779136.000000",,"3623976.000000","26031632.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000","5183424.000000","65725256.000000","87779136.000000","3623976.000000","26031632.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20689332.000000",,,,,,,,"197.000000","5627.000000",,,,,,,,,,,"3796.000000","475.000000","439.000000","419.000000","636.000000","714.000000","525.000000","0.000000","0.000000","0.000000","410.000000","401.000000","371.000000","531.000000","589.000000","461.000000","160.000000","6000.000000",,"8968514.000000",,,,, +"12976.000000","52.960000","12976.000000","52.960000","12976.000000","52.960000",,,,,,,,,,,,,,"93.000000","6296.000000","4949.000000","13.000000","6296.000000","6296.000000",,,,,,,,,,,"3771372.000000","5225536.000000","478788.000000","0.000000","65701384.000000","0.000000","87779308.000000",,"3623976.000000","26024872.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000","5225536.000000","65701384.000000","87779308.000000","3623976.000000","26024872.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20712284.000000",,,,,,,,"220.000000","7330.000000",,,,,,,,,,,"3812.000000","472.000000","448.000000","422.000000","632.000000","714.000000","530.000000","0.000000","0.000000","0.000000","408.000000","399.000000","372.000000","518.000000","589.000000","477.000000","160.000000","6000.000000",,"8968534.000000",,,,, +"13921.000000","54.430000","13921.000000","54.430000","13921.000000","54.430000",,,,,,,,,,,,,,"29.000000","10092.500000","8599.000000","24.000000","10092.500000","10092.500000",,,,,,,,,,,"3798416.000000","5267484.000000","478788.000000","0.000000","65680220.000000","0.000000","87779308.000000",,"3623976.000000","26045584.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000","5267484.000000","65680220.000000","87779308.000000","3623976.000000","26045584.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20730752.000000",,,,,,,,"615.000000","10941.000000",,,,,,,,,,,"3977.000000","469.000000","478.000000","426.000000","593.000000","606.000000","559.000000","0.000000","0.000000","0.000000","407.000000","425.000000","376.000000","514.000000","535.000000","493.000000","160.000000","6000.000000",,"8968554.000000",,,,, +"12973.000000","52.935000","12973.000000","52.935000","12973.000000","52.935000",,,,,,,,,,,,,,"38.000000","6355.000000","5332.000000","2.000000","6355.000000","6355.000000",,,,,,,,,,,"3756304.000000","4993540.000000","478788.000000","0.000000","65654328.000000","0.000000","87779140.000000",,"3623976.000000","26100836.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000","4993540.000000","65654328.000000","87779140.000000","3623976.000000","26100836.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20756232.000000",,,,,,,,"207.000000","7132.000000",,,,,,,,,,,"3936.000000","468.000000","510.000000","428.000000","589.000000","606.000000","559.000000","0.000000","0.000000","0.000000","405.000000","451.000000","380.000000","507.000000","535.000000","493.000000","160.000000","6000.000000",,"8968574.000000",,,,, +"10408.000000","48.925000","10408.000000","48.925000","10408.000000","48.925000",,,,,,,,,,,,,,"11817.000000","29523.000000","17376.000000","11.000000","29523.000000","29523.000000",,,,,,,,,,,"4008124.000000","5266336.000000","478788.000000","0.000000","65673344.000000","0.000000","87779304.000000",,"3623976.000000","26102704.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000","5266336.000000","65673344.000000","87779304.000000","3623976.000000","26102704.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20752440.000000",,,,,,,,"12036.000000","17815.000000",,,,,,,,,,,"3726.000000","465.000000","524.000000","430.000000","589.000000","606.000000","560.000000","0.000000","0.000000","0.000000","403.000000","455.000000","381.000000","501.000000","535.000000","493.000000","160.000000","6000.000000",,"8968594.000000",,,,, +"11125.000000","50.045000","11125.000000","50.045000","11125.000000","50.045000",,,,,,,,,,,,,,"367.000000","23800.000000","16267.000000","42.000000","23800.000000","23800.000000",,,,,,,,,,,"4502684.000000","6246520.000000","478788.000000","0.000000","65667436.000000","0.000000","87779384.000000",,"3623976.000000","26110896.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000","6246520.000000","65667436.000000","87779384.000000","3623976.000000","26110896.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20763392.000000",,,,,,,,"13402.000000","17564.000000",,,,,,,,,,,"3799.000000","464.000000","481.000000","435.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","401.000000","402.000000","383.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968614.000000",,,,, +"10437.000000","48.965000","10437.000000","48.965000","10437.000000","48.965000",,,,,,,,,,,,,,"37.000000","26318.000000","26281.000000","50.000000","26318.000000","26318.000000",,,,,,,,,,,"4785220.000000","6895488.000000","478788.000000","0.000000","65655288.000000","0.000000","87779384.000000",,"3623976.000000","26076004.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000","6895488.000000","65655288.000000","87779384.000000","3623976.000000","26076004.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20779304.000000",,,,,,,,,,,,,,,,,,,,"3705.000000","462.000000","467.000000","436.000000","589.000000","566.000000","560.000000","0.000000","0.000000","0.000000","398.000000","377.000000","382.000000","501.000000","471.000000","493.000000","160.000000","6000.000000",,"8968634.000000",,,,, +"10978.000000","49.810000","10978.000000","49.810000","10978.000000","49.810000",,,,,,,,,,,,,,"40.000000","43050.000000","38221.000000","53.000000","43050.000000","43050.000000",,,,,,,,,,,"5204652.000000","7252004.000000","478788.000000","0.000000","65657664.000000","0.000000","87779384.000000",,"3623976.000000","26015120.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000","7252004.000000","65657664.000000","87779384.000000","3623976.000000","26015120.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20784564.000000",,,,,,,,"9253.000000","38585.000000",,,,,,,,,,,"3664.000000","461.000000","453.000000","443.000000","589.000000","549.000000","560.000000","0.000000","0.000000","0.000000","397.000000","366.000000","385.000000","501.000000","428.000000","493.000000","160.000000","6000.000000",,"8968654.000000",,,,, +"9512.000000","47.510000","9512.000000","47.510000","9512.000000","47.510000",,,,,,,,,,,,,,"59.000000","36825.500000","29936.000000","23.000000","36825.500000","36825.500000",,,,,,,,,,,"5216780.000000","7252012.000000","478788.000000","0.000000","65649204.000000","0.000000","87779384.000000",,"3623976.000000","26024644.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000","7252012.000000","65649204.000000","87779384.000000","3623976.000000","26024644.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20793188.000000",,,,,,,,"14770.000000","28884.000000",,,,,,,,,,,"3639.000000","459.000000","440.000000","444.000000","585.000000","558.000000","560.000000","0.000000","0.000000","0.000000","395.000000","358.000000","384.000000","500.000000","462.000000","493.000000","160.000000","6000.000000",,"8968674.000000",,,,, +"11179.000000","50.110000","11179.000000","50.110000","11179.000000","50.110000",,,,,,,,,,,,,,"1510.000000","12407.000000","9826.000000","16.000000","12407.000000","12407.000000",,,,,,,,,,,"5110644.000000","7092868.000000","478788.000000","0.000000","65628896.000000","0.000000","87779252.000000",,"3623976.000000","25998596.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000","7092868.000000","65628896.000000","87779252.000000","3623976.000000","25998596.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20809872.000000",,,,,,,,"1671.000000","11807.000000",,,,,,,,,,,"3615.000000","457.000000","452.000000","454.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","394.000000","376.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968694.000000",,,,, +"10792.000000","49.495000","10792.000000","49.495000","10792.000000","49.495000",,,,,,,,,,,,,,"881.000000","6898.500000","5824.000000","7.000000","6898.500000","6898.500000",,,,,,,,,,,"5152624.000000","6799304.000000","478788.000000","0.000000","65607692.000000","0.000000","87779288.000000",,"3623976.000000","25986144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000","6799304.000000","65607692.000000","87779288.000000","3623976.000000","25986144.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20826528.000000",,,,,,,,"968.000000","6123.000000",,,,,,,,,,,"3678.000000","455.000000","433.000000","451.000000","569.000000","558.000000","560.000000","0.000000","0.000000","0.000000","392.000000","372.000000","391.000000","493.000000","462.000000","493.000000","160.000000","6000.000000",,"8968714.000000",,,,, +"12843.000000","52.695000","12843.000000","52.695000","12843.000000","52.695000",,,,,,,,,,,,,,"185.000000","7695.500000","7323.000000","4.000000","7695.500000","7695.500000",,,,,,,,,,,"5431316.000000","7029992.000000","478788.000000","0.000000","65590484.000000","0.000000","87779288.000000",,"3623976.000000","26003420.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000","7029992.000000","65590484.000000","87779288.000000","3623976.000000","26003420.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20841300.000000",,,,,,,,"297.000000","7586.000000",,,,,,,,,,,"4037.000000","457.000000","462.000000","460.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","394.000000","411.000000","400.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968734.000000",,,,, +"12393.000000","51.985000","12393.000000","51.985000","12393.000000","51.985000",,,,,,,,,,,,,,"587.000000","6962.500000","6365.000000","8.000000","6962.500000","6962.500000",,,,,,,,,,,"5431316.000000","7052116.000000","478788.000000","0.000000","65577620.000000","0.000000","87779288.000000",,"3623976.000000","25929092.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000","7052116.000000","65577620.000000","87779288.000000","3623976.000000","25929092.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20849568.000000",,,,,,,,"633.000000","6339.000000",,,,,,,,,,,"3920.000000","460.000000","460.000000","466.000000","569.000000","542.000000","560.000000","0.000000","0.000000","0.000000","397.000000","417.000000","404.000000","494.000000","494.000000","494.000000","160.000000","6000.000000",,"8968754.000000",,,,, +"14332.000000","55.025000","14332.000000","55.025000","14332.000000","55.025000",,,,,,,,,,,,,,"50.000000","5887.500000","5636.000000","12.000000","5887.500000","5887.500000",,,,,,,,,,,"5368400.000000","7198916.000000","478788.000000","0.000000","65578952.000000","0.000000","87779288.000000",,"3623976.000000","25978516.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000","7198916.000000","65578952.000000","87779288.000000","3623976.000000","25978516.000000","1429424.000000","1630920.000000",,,,"10956624.000000","20845472.000000",,,,,,,,"149.000000","5940.000000",,,,,,,,,,,"4073.000000","460.000000","493.000000","470.000000","566.000000","562.000000","562.000000","0.000000","0.000000","0.000000","398.000000","453.000000","409.000000","500.000000","528.000000","501.000000","160.000000","6000.000000",,"8968774.000000",,,,, +"17878.000000","60.600000","17878.000000","60.600000","17878.000000","60.600000",,,,,,,,,,,,,,"214.000000","16476.500000","16119.000000","25.000000","16476.500000","16476.500000",,,,,,,,,,,"5702172.000000","7343720.000000","478788.000000","0.000000","65618164.000000","0.000000","87772580.000000",,"3623976.000000","25951940.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000","7343720.000000","65618164.000000","87772580.000000","3623976.000000","25951940.000000","1429424.000000","1630920.000000",,,,"10963672.000000","20849836.000000",,,,,,,,"382.000000","16237.000000",,,,,,,,,,,"4520.000000","465.000000","653.000000","503.000000","569.000000","1274.000000","569.000000","0.000000","0.000000","0.000000","401.000000","528.000000","425.000000","501.000000","741.000000","528.000000","160.000000","6000.000000",,"8968794.000000",,,,, +"16141.000000","57.850000","16141.000000","57.850000","16141.000000","57.850000",,,,,,,,,,,,,,"32.000000","3779.500000","3455.000000","10.000000","3779.500000","3779.500000",,,,,,,,,,,"5531040.000000","7119944.000000","478788.000000","0.000000","65566880.000000","0.000000","87745912.000000",,"3623976.000000","25984272.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000","7119944.000000","65566880.000000","87745912.000000","3623976.000000","25984272.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20870928.000000",,,,,,,,"121.000000","3950.000000",,,,,,,,,,,"4203.000000","471.000000","724.000000","523.000000","589.000000","1274.000000","671.000000","0.000000","0.000000","0.000000","405.000000","574.000000","439.000000","507.000000","741.000000","572.000000","160.000000","6000.000000",,"8968814.000000",,,,, +"16985.000000","59.180000","16985.000000","59.180000","16985.000000","59.180000",,,,,,,,,,,,,,"257.000000","3152.000000","2823.000000","16.000000","3152.000000","3152.000000",,,,,,,,,,,"5426180.000000","7036060.000000","478788.000000","0.000000","65576756.000000","0.000000","87745912.000000",,"3623976.000000","25961336.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000","7036060.000000","65576756.000000","87745912.000000","3623976.000000","25961336.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20858236.000000",,,,,,,,"307.000000","2917.000000",,,,,,,,,,,"4196.000000","475.000000","784.000000","537.000000","616.000000","1274.000000","750.000000","0.000000","0.000000","0.000000","408.000000","617.000000","453.000000","528.000000","741.000000","638.000000","160.000000","6000.000000",,"8968834.000000",,,,, +"15333.000000","56.585000","15333.000000","56.585000","15333.000000","56.585000",,,,,,,,,,,,,,"1109.000000","18599.500000","16281.000000","29.000000","18599.500000","18599.500000",,,,,,,,,,,"5593948.000000","7098980.000000","478788.000000","0.000000","65562916.000000","0.000000","87745912.000000",,"3623976.000000","25976144.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000","7098980.000000","65562916.000000","87745912.000000","3623976.000000","25976144.000000","1429424.000000","1630920.000000",,,,"10989944.000000","20872632.000000",,,,,,,,"1744.000000","18064.000000",,,,,,,,,,,"3936.000000","477.000000","679.000000","543.000000","608.000000","832.000000","775.000000","0.000000","0.000000","0.000000","410.000000","572.000000","454.000000","529.000000","688.000000","638.000000","160.000000","6000.000000",,"8968854.000000",,,,, +"15359.000000","56.615000","15359.000000","56.615000","15359.000000","56.615000",,,,,,,,,,,,,,"315.000000","7614.500000","6116.000000","13.000000","7614.500000","7614.500000",,,,,,,,,,,"5815296.000000","7178740.000000","478788.000000","0.000000","65540260.000000","0.000000","87740472.000000",,"3623976.000000","26120752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000","7178740.000000","65540260.000000","87740472.000000","3623976.000000","26120752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20887720.000000",,,,,,,,"523.000000","8273.000000",,,,,,,,,,,"4053.000000","482.000000","667.000000","554.000000","616.000000","786.000000","786.000000","0.000000","0.000000","0.000000","414.000000","563.000000","461.000000","535.000000","688.000000","649.000000","160.000000","6000.000000",,"8968874.000000",,,,, +"15233.000000","56.405000","15233.000000","56.405000","15233.000000","56.405000",,,,,,,,,,,,,,"37.000000","8353.500000","7297.000000","43.000000","8353.500000","8353.500000",,,,,,,,,,,"5941176.000000","7325592.000000","478788.000000","0.000000","65518472.000000","0.000000","87740520.000000",,"3623976.000000","26118284.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000","7325592.000000","65518472.000000","87740520.000000","3623976.000000","26118284.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20904748.000000",,,,,,,,"239.000000","9134.000000",,,,,,,,,,,"4115.000000","486.000000","652.000000","563.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","416.000000","539.000000","469.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968894.000000",,,,, +"13682.000000","53.965000","13682.000000","53.965000","13682.000000","53.965000",,,,,,,,,,,,,,"61.000000","7190.500000","6962.000000","28.000000","7190.500000","7190.500000",,,,,,,,,,,"6150892.000000","7661136.000000","478788.000000","0.000000","65501680.000000","0.000000","87740520.000000",,"3623976.000000","26135752.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000","7661136.000000","65501680.000000","87740520.000000","3623976.000000","26135752.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20919932.000000",,,,,,,,"172.000000","7186.000000",,,,,,,,,,,"4055.000000","490.000000","628.000000","572.000000","671.000000","786.000000","786.000000","0.000000","0.000000","0.000000","420.000000","531.000000","480.000000","570.000000","649.000000","649.000000","160.000000","6000.000000",,"8968914.000000",,,,, +"13589.000000","53.810000","13589.000000","53.810000","13589.000000","53.810000",,,,,,,,,,,,,,"100.000000","7215.000000","7111.000000","13.000000","7215.000000","7215.000000",,,,,,,,,,,"5184572.000000","6727144.000000","478788.000000","0.000000","65482156.000000","0.000000","87740928.000000",,"3623976.000000","26085772.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000","6727144.000000","65482156.000000","87740928.000000","3623976.000000","26085772.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20934664.000000",,,,,,,,"149.000000","7070.000000",,,,,,,,,,,"3969.000000","492.000000","598.000000","580.000000","671.000000","735.000000","786.000000","0.000000","0.000000","0.000000","421.000000","508.000000","487.000000","570.000000","570.000000","649.000000","160.000000","6000.000000",,"8968934.000000",,,,, +"12989.000000","52.870000","12989.000000","52.870000","12989.000000","52.870000",,,,,,,,,,,,,,"38.000000","5182.000000","4994.000000","8.000000","5182.000000","5182.000000",,,,,,,,,,,"5205088.000000","6999316.000000","478788.000000","0.000000","65476916.000000","0.000000","87740472.000000",,"3623976.000000","26044352.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000","6999316.000000","65476916.000000","87740472.000000","3623976.000000","26044352.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20935412.000000",,,,,,,,"131.000000","5199.000000",,,,,,,,,,,"3989.000000","496.000000","569.000000","586.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","424.000000","484.000000","493.000000","570.000000","537.000000","649.000000","160.000000","6000.000000",,"8968954.000000",,,,, +"14491.000000","55.220000","14491.000000","55.220000","14491.000000","55.220000",,,,,,,,,,,,,,"36.000000","7694.000000","7446.000000","36.000000","7694.000000","7694.000000",,,,,,,,,,,"5121252.000000","6810624.000000","478788.000000","0.000000","65463160.000000","0.000000","87740520.000000",,"3623976.000000","26056460.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000","6810624.000000","65463160.000000","87740520.000000","3623976.000000","26056460.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20944628.000000",,,,,,,,"139.000000","7765.000000",,,,,,,,,,,"4100.000000","500.000000","567.000000","598.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","428.000000","484.000000","505.000000","570.000000","553.000000","649.000000","160.000000","6000.000000",,"8968974.000000",,,,, +"12772.000000","52.515000","12772.000000","52.515000","12772.000000","52.515000",,,,,,,,,,,,,,"36.000000","4411.000000","4226.000000","8.000000","4411.000000","4411.000000",,,,,,,,,,,"5548400.000000","6949844.000000","478788.000000","0.000000","65445396.000000","0.000000","87740520.000000",,"3623976.000000","26195756.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000","6949844.000000","65445396.000000","87740520.000000","3623976.000000","26195756.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20959076.000000",,,,,,,,"98.000000","4462.000000",,,,,,,,,,,"4112.000000","502.000000","553.000000","600.000000","671.000000","619.000000","786.000000","0.000000","0.000000","0.000000","430.000000","479.000000","508.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8968994.000000",,,,, +"13759.000000","54.055000","13759.000000","54.055000","13759.000000","54.055000",,,,,,,,,,,,,,"231.000000","16475.000000","15985.000000","30.000000","16475.000000","16475.000000",,,,,,,,,,,"5716172.000000","6865960.000000","478788.000000","0.000000","65441184.000000","0.000000","87740520.000000",,"3623976.000000","26271160.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000","6865960.000000","65441184.000000","87740520.000000","3623976.000000","26271160.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20960872.000000",,,,,,,,"406.000000","16326.000000",,,,,,,,,,,"4116.000000","507.000000","572.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","433.000000","497.000000","518.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969014.000000",,,,, +"12684.000000","52.370000","12684.000000","52.370000","12684.000000","52.370000",,,,,,,,,,,,,,"36.000000","3341.000000","3165.000000","31.000000","3341.000000","3341.000000",,,,,,,,,,,"5443536.000000","6656232.000000","478788.000000","0.000000","65422392.000000","0.000000","87740528.000000",,"3623976.000000","26289096.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000","6656232.000000","65422392.000000","87740528.000000","3623976.000000","26289096.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20975996.000000",,,,,,,,"118.000000","3361.000000",,,,,,,,,,,"3954.000000","509.000000","543.000000","614.000000","671.000000","668.000000","786.000000","0.000000","0.000000","0.000000","434.000000","469.000000","517.000000","570.000000","556.000000","649.000000","160.000000","6000.000000",,"8969034.000000",,,,, +"13410.000000","53.490000","13410.000000","53.490000","13410.000000","53.490000",,,,,,,,,,,,,,"380.000000","6805.000000","6424.000000","6.000000","6805.000000","6805.000000",,,,,,,,,,,"4911396.000000","6385664.000000","478788.000000","0.000000","65401792.000000","0.000000","87740388.000000",,"3623976.000000","26264364.000000","0.000000","1429424.000000","0.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000","6385664.000000","65401792.000000","87740388.000000","3623976.000000","26264364.000000","1429424.000000","1630920.000000",,,,"10995384.000000","20991504.000000",,,,,,,,"476.000000",,,,,,,,,,,,"4030.000000","514.000000","571.000000","623.000000","677.000000","680.000000","786.000000","0.000000","0.000000","0.000000","438.000000","478.000000","520.000000","570.000000","527.000000","649.000000","160.000000","6000.000000",,"8969054.000000",,,,, +"15908.000000","57.405000","15908.000000","57.405000","15908.000000","57.405000",,,,,,,,,,,,,,"76.000000","7782.500000","7497.000000","29.000000","7782.500000","7782.500000",,,,,,,,,,,"4974452.000000","6155116.000000","478788.000000","0.000000","65410668.000000","0.000000","87740532.000000",,"3623976.000000","26165064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000","6155116.000000","65410668.000000","87740532.000000","3623976.000000","26165064.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20980868.000000",,,,,,,,"210.000000","7782.000000",,,,,,,,,,,"4063.000000","518.000000","582.000000","632.000000","680.000000","719.000000","786.000000","0.000000","0.000000","0.000000","441.000000","488.000000","525.000000","572.000000","605.000000","649.000000","160.000000","6000.000000",,"8969074.000000",,,,, +"17121.000000","59.305000","17121.000000","59.305000","17121.000000","59.305000",,,,,,,,,,,,,,"66.000000","8342.000000","7418.000000","4.000000","8342.000000","8342.000000",,,,,,,,,,,"5393884.000000","6763292.000000","478788.000000","0.000000","65406344.000000","0.000000","87740532.000000",,"3623976.000000","26170980.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000","6763292.000000","65406344.000000","87740532.000000","3623976.000000","26170980.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20985840.000000",,,,,,,,"258.000000","8941.000000",,,,,,,,,,,"4139.000000","517.000000","711.000000","626.000000","680.000000","1093.000000","775.000000","0.000000","0.000000","0.000000","440.000000","553.000000","522.000000","570.000000","656.000000","640.000000","160.000000","6000.000000",,"8969094.000000",,,,, +"14695.000000","55.490000","14695.000000","55.490000","14695.000000","55.490000",,,,,,,,,,,,,,"683.000000","11612.000000","10604.000000","21.000000","11612.000000","11612.000000",,,,,,,,,,,"6289980.000000","7848136.000000","478788.000000","0.000000","65379984.000000","0.000000","87740532.000000",,"3623976.000000","26254736.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000","7848136.000000","65379984.000000","87740532.000000","3623976.000000","26254736.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21011672.000000",,,,,,,,"798.000000","11138.000000",,,,,,,,,,,"3935.000000","522.000000","727.000000","623.000000","687.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","443.000000","571.000000","520.000000","572.000000","656.000000","605.000000","160.000000","6000.000000",,"8969114.000000",,,,, +"16199.000000","57.865000","16199.000000","57.865000","16199.000000","57.865000",,,,,,,,,,,,,,"51.000000","6903.000000","6532.000000","58.000000","6903.000000","6903.000000",,,,,,,,,,,"6373868.000000","8078816.000000","478788.000000","0.000000","65404484.000000","0.000000","87740532.000000",,"3623976.000000","26205084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000","8078816.000000","65404484.000000","87740532.000000","3623976.000000","26205084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20991148.000000",,,,,,,,"147.000000","7074.000000",,,,,,,,,,,"4050.000000","525.000000","705.000000","616.000000","714.000000","1093.000000","764.000000","0.000000","0.000000","0.000000","446.000000","559.000000","513.000000","572.000000","662.000000","605.000000","160.000000","6000.000000",,"8969134.000000",,,,, +"15656.000000","57.005000","15656.000000","57.005000","15656.000000","57.005000",,,,,,,,,,,,,,"97.000000","8521.000000","8060.000000","16.000000","8521.000000","8521.000000",,,,,,,,,,,"6164148.000000","7701332.000000","478788.000000","0.000000","65389700.000000","0.000000","87740532.000000",,"3623976.000000","26217412.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000","7701332.000000","65389700.000000","87740532.000000","3623976.000000","26217412.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21002832.000000",,,,,,,,"523.000000","8362.000000",,,,,,,,,,,"4153.000000","531.000000","667.000000","623.000000","735.000000","860.000000","764.000000","0.000000","0.000000","0.000000","449.000000","549.000000","517.000000","579.000000","691.000000","640.000000","160.000000","6000.000000",,"8969154.000000",,,,, +"15203.000000","56.290000","15203.000000","56.290000","15203.000000","56.290000",,,,,,,,,,,,,,"764.000000","12567.000000","11626.000000","16.000000","12567.000000","12567.000000",,,,,,,,,,,"6137452.000000","7952648.000000","478788.000000","0.000000","65390028.000000","0.000000","87740484.000000",,"3623976.000000","26215156.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000","7952648.000000","65390028.000000","87740484.000000","3623976.000000","26215156.000000","1429428.000000","1630920.000000",,,,"10995384.000000","20998864.000000",,,,,,,,"902.000000","11841.000000",,,,,,,,,,,"4240.000000","534.000000","653.000000","620.000000","735.000000","860.000000","759.000000","0.000000","0.000000","0.000000","453.000000","548.000000","517.000000","589.000000","691.000000","605.000000","160.000000","6000.000000",,"8969174.000000",,,,, +"15683.000000","57.045000","15683.000000","57.045000","15683.000000","57.045000",,,,,,,,,,,,,,"366.000000","11045.500000","10536.000000","11.000000","11045.500000","11045.500000",,,,,,,,,,,"6054092.000000","7470832.000000","478788.000000","0.000000","65382616.000000","0.000000","87741008.000000",,"3623976.000000","26188616.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000","7470832.000000","65382616.000000","87741008.000000","3623976.000000","26188616.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21006656.000000",,,,,,,,"511.000000","10677.000000",,,,,,,,,,,"4236.000000","538.000000","673.000000","620.000000","741.000000","860.000000","764.000000","0.000000","0.000000","0.000000","456.000000","560.000000","517.000000","589.000000","691.000000","640.000000","160.000000","6000.000000",,"8969194.000000",,,,, +"11447.000000","50.400000","11447.000000","50.400000","11447.000000","50.400000",,,,,,,,,,,,,,"320.000000","8308.500000","7564.000000","9.000000","8308.500000","8308.500000",,,,,,,,,,,"5927884.000000","7470452.000000","478788.000000","0.000000","65365216.000000","0.000000","87740628.000000",,"3623976.000000","26204320.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000","7470452.000000","65365216.000000","87740628.000000","3623976.000000","26204320.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21020136.000000",,,,,,,,"436.000000","8296.000000",,,,,,,,,,,"3966.000000","541.000000","595.000000","617.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","458.000000","507.000000","512.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969214.000000",,,,, +"12885.000000","52.645000","12885.000000","52.645000","12885.000000","52.645000",,,,,,,,,,,,,,"219.000000","8899.500000","8505.000000","15.000000","8899.500000","8899.500000",,,,,,,,,,,"5382624.000000","7276324.000000","478788.000000","0.000000","65345136.000000","0.000000","87740628.000000",,"3623976.000000","26224096.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000","7276324.000000","65345136.000000","87740628.000000","3623976.000000","26224096.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21036404.000000",,,,,,,,"352.000000","8722.000000",,,,,,,,,,,"4055.000000","543.000000","556.000000","612.000000","750.000000","845.000000","791.000000","0.000000","6.000000","0.000000","460.000000","480.000000","511.000000","589.000000","688.000000","640.000000","160.000000","6000.000000",,"8969234.000000",,,,, +"12788.000000","52.480000","12788.000000","52.480000","12788.000000","52.480000",,,,,,,,,,,,,,"42.000000","4631.000000","4476.000000","6.000000","4631.000000","4631.000000",,,,,,,,,,,"5634212.000000","7695684.000000","478788.000000","0.000000","65325620.000000","0.000000","87740560.000000",,"3623976.000000","26346572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000","7695684.000000","65325620.000000","87740560.000000","3623976.000000","26346572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21052436.000000",,,,,,,,"125.000000","4619.000000",,,,,,,,,,,"4057.000000","545.000000","507.000000","607.000000","750.000000","842.000000","791.000000","0.000000","6.000000","0.000000","463.000000","448.000000","510.000000","589.000000","566.000000","640.000000","160.000000","6000.000000",,"8969254.000000",,,,, +"11884.000000","51.055000","11884.000000","51.055000","11884.000000","51.055000",,,,,,,,,,,,,,"404.000000","9759.000000","9134.000000","13.000000","9759.000000","9759.000000",,,,,,,,,,,"5529348.000000","7695684.000000","478788.000000","0.000000","65304048.000000","0.000000","87740560.000000",,"3623976.000000","26366792.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000","7695684.000000","65304048.000000","87740560.000000","3623976.000000","26366792.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21069436.000000",,,,,,,,"491.000000","9488.000000",,,,,,,,,,,"4109.000000","547.000000","481.000000","600.000000","750.000000","541.000000","791.000000","0.000000","0.000000","0.000000","465.000000","449.000000","505.000000","589.000000","505.000000","640.000000","160.000000","6000.000000",,"8969274.000000",,,,, +"12568.000000","52.115000","12568.000000","52.115000","12568.000000","52.115000",,,,,,,,,,,,,,"126.000000","6899.500000","6764.000000","26.000000","6899.500000","6899.500000",,,,,,,,,,,"5361504.000000","7165648.000000","478788.000000","0.000000","65286120.000000","0.000000","87740484.000000",,"3623976.000000","26441124.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000","7165648.000000","65286120.000000","87740484.000000","3623976.000000","26441124.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21084060.000000",,,,,,,,"191.000000","6718.000000",,,,,,,,,,,"3947.000000","551.000000","484.000000","598.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","468.000000","444.000000","504.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969294.000000",,,,, +"12970.000000","52.750000","12970.000000","52.750000","12970.000000","52.750000",,,,,,,,,,,,,,"535.000000","9316.500000","8071.000000","10.000000","9316.500000","9316.500000",,,,,,,,,,,"5361504.000000","7249536.000000","478788.000000","0.000000","65297344.000000","0.000000","87740484.000000",,"3623976.000000","26249812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000","7249536.000000","65297344.000000","87740484.000000","3623976.000000","26249812.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21068880.000000",,,,,,,,"735.000000","9291.000000",,,,,,,,,,,"3800.000000","552.000000","485.000000","590.000000","750.000000","614.000000","791.000000","0.000000","0.000000","0.000000","469.000000","438.000000","498.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969314.000000",,,,, +"11064.000000","49.755000","11064.000000","49.755000","11064.000000","49.755000",,,,,,,,,,,,,,"80.000000","5113.500000","4468.000000","12.000000","5113.500000","5113.500000",,,,,,,,,,,"5382528.000000","7291528.000000","478788.000000","0.000000","65279968.000000","0.000000","87740532.000000",,"3623976.000000","26267080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000","7291528.000000","65279968.000000","87740532.000000","3623976.000000","26267080.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21083260.000000",,,,,,,,"244.000000","5435.000000",,,,,,,,,,,"3883.000000","554.000000","481.000000","587.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","471.000000","429.000000","497.000000","589.000000","547.000000","640.000000","160.000000","6000.000000",,"8969334.000000",,,,, +"12420.000000","51.870000","12420.000000","51.870000","12420.000000","51.870000",,,,,,,,,,,,,,"596.000000","8222.000000","7213.000000","11.000000","8222.000000","8222.000000",,,,,,,,,,,"5434084.000000","6997624.000000","478788.000000","0.000000","65261096.000000","0.000000","87740532.000000",,"3623976.000000","26247292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000","6997624.000000","65261096.000000","87740532.000000","3623976.000000","26247292.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21097472.000000",,,,,,,,"721.000000","7912.000000",,,,,,,,,,,"3952.000000","556.000000","476.000000","579.000000","750.000000","619.000000","791.000000","0.000000","0.000000","0.000000","473.000000","432.000000","495.000000","589.000000","525.000000","640.000000","160.000000","6000.000000",,"8969354.000000",,,,, +"14927.000000","55.795000","14927.000000","55.795000","14927.000000","55.795000",,,,,,,,,,,,,,"76.000000","7352.500000","7271.000000","7.000000","7352.500000","7352.500000",,,,,,,,,,,"5014656.000000","6494308.000000","478788.000000","0.000000","65259260.000000","0.000000","87740532.000000",,"3623976.000000","26343444.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000","6494308.000000","65259260.000000","87740532.000000","3623976.000000","26343444.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21096504.000000",,,,,,,,"186.000000","7170.000000",,,,,,,,,,,"4023.000000","560.000000","516.000000","577.000000","755.000000","791.000000","791.000000","0.000000","0.000000","0.000000","476.000000","463.000000","494.000000","598.000000","647.000000","647.000000","160.000000","6000.000000",,"8969374.000000",,,,, +"14943.000000","55.820000","14943.000000","55.820000","14943.000000","55.820000",,,,,,,,,,,,,,"659.000000","9461.500000","8494.000000","23.000000","9461.500000","9461.500000",,,,,,,,,,,"4721060.000000","6053912.000000","478788.000000","0.000000","65251168.000000","0.000000","87740532.000000",,"3623976.000000","26351060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000","6053912.000000","65251168.000000","87740532.000000","3623976.000000","26351060.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21102420.000000",,,,,,,,"792.000000","8976.000000",,,,,,,,,,,"4045.000000","562.000000","565.000000","558.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","478.000000","503.000000","487.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969394.000000",,,,, +"14640.000000","55.335000","14640.000000","55.335000","14640.000000","55.335000",,,,,,,,,,,,,,"48.000000","7387.000000","7127.000000","33.000000","7387.000000","7387.000000",,,,,,,,,,,"4709708.000000","6288540.000000","478788.000000","0.000000","65235112.000000","0.000000","87740532.000000",,"3623976.000000","26426572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000","6288540.000000","65235112.000000","87740532.000000","3623976.000000","26426572.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21116756.000000",,,,,,,,"148.000000","7450.000000",,,,,,,,,,,"4025.000000","566.000000","589.000000","552.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","481.000000","520.000000","485.000000","605.000000","661.000000","647.000000","160.000000","6000.000000",,"8969414.000000",,,,, +"14933.000000","55.790000","14933.000000","55.790000","14933.000000","55.790000",,,,,,,,,,,,,,"44.000000","5617.500000","5537.000000","21.000000","5617.500000","5617.500000",,,,,,,,,,,"4646792.000000","6204652.000000","478788.000000","0.000000","65223732.000000","0.000000","87740532.000000",,"3623976.000000","26362656.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000","6204652.000000","65223732.000000","87740532.000000","3623976.000000","26362656.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21132244.000000",,,,,,,,"128.000000","5525.000000",,,,,,,,,,,"3922.000000","568.000000","575.000000","551.000000","759.000000","794.000000","791.000000","0.000000","0.000000","0.000000","483.000000","512.000000","484.000000","605.000000","661.000000","598.000000","160.000000","6000.000000",,"8969434.000000",,,,, +"14779.000000","55.540000","14779.000000","55.540000","14779.000000","55.540000",,,,,,,,,,,,,,"103.000000","7467.000000","7029.000000","17.000000","7467.000000","7467.000000",,,,,,,,,,,"4772616.000000","6309508.000000","478788.000000","0.000000","65210220.000000","0.000000","87740532.000000",,"3623976.000000","26377084.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000","6309508.000000","65210220.000000","87740532.000000","3623976.000000","26377084.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21145944.000000",,,,,,,,"499.000000","7303.000000",,,,,,,,,,,"4235.000000","570.000000","589.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","484.000000","522.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969454.000000",,,,, +"15799.000000","57.135000","15799.000000","57.135000","15799.000000","57.135000",,,,,,,,,,,,,,"1032.000000","8544.500000","7347.000000","18.000000","8544.500000","8544.500000",,,,,,,,,,,"4652464.000000","5979640.000000","478788.000000","0.000000","65191580.000000","0.000000","87740532.000000",,"3623976.000000","26417140.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000","5979640.000000","65191580.000000","87740532.000000","3623976.000000","26417140.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21160484.000000",,,,,,,,"1152.000000","7557.000000",,,,,,,,,,,"3999.000000","572.000000","606.000000","542.000000","759.000000","712.000000","712.000000","0.000000","0.000000","0.000000","487.000000","535.000000","482.000000","616.000000","620.000000","616.000000","160.000000","6000.000000",,"8969474.000000",,,,, +"14882.000000","55.695000","14882.000000","55.695000","14882.000000","55.695000",,,,,,,,,,,,,,"1593.000000","7873.500000","6128.000000","33.000000","7873.500000","7873.500000",,,,,,,,,,,"4568580.000000","5917012.000000","478788.000000","0.000000","65193768.000000","0.000000","87740532.000000",,"3623976.000000","26468820.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000","5917012.000000","65193768.000000","87740532.000000","3623976.000000","26468820.000000","1429428.000000","1630920.000000",,,,"10995384.000000","21155956.000000",,,,,,,,"1727.000000","6297.000000",,,,,,,,,,,"4170.000000","574.000000","614.000000","540.000000","759.000000","712.000000","707.000000","0.000000","0.000000","0.000000","490.000000","552.000000","483.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969494.000000",,,,, +"13838.000000","54.050000","13838.000000","54.050000","13838.000000","54.050000",,,,,,,,,,,,,,"43.000000","6360.000000","6134.000000","42.000000","6360.000000","6360.000000",,,,,,,,,,,"4229944.000000","5473088.000000","478788.000000","0.000000","65174068.000000","0.000000","87726476.000000",,"3623976.000000","26473636.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000","5473088.000000","65174068.000000","87726476.000000","3623976.000000","26473636.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21158712.000000",,,,,,,,"161.000000","6381.000000",,,,,,,,,,,"4032.000000","575.000000","569.000000","537.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","493.000000","525.000000","486.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969514.000000",,,,, +"11811.000000","50.865000","11811.000000","50.865000","11811.000000","50.865000",,,,,,,,,,,,,,"42.000000","6139.000000","4893.000000","22.000000","6139.000000","6139.000000",,,,,,,,,,,"3961532.000000","5084388.000000","478784.000000","0.000000","65157356.000000","0.000000","87726340.000000",,"3623976.000000","26452296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000","5084388.000000","65157356.000000","87726340.000000","3623976.000000","26452296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21171884.000000",,,,,,,,"253.000000","7090.000000",,,,,,,,,,,"4040.000000","576.000000","525.000000","536.000000","759.000000","666.000000","666.000000","0.000000","0.000000","0.000000","494.000000","491.000000","484.000000","620.000000","622.000000","616.000000","160.000000","6000.000000",,"8969534.000000",,,,, +"12947.000000","52.640000","12947.000000","52.640000","12947.000000","52.640000",,,,,,,,,,,,,,"41.000000","5582.500000","5339.000000","12.000000","5582.500000","5582.500000",,,,,,,,,,,"4213192.000000","5167984.000000","478784.000000","0.000000","65148768.000000","0.000000","87726340.000000",,"3623976.000000","26465932.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000","5167984.000000","65148768.000000","87726340.000000","3623976.000000","26465932.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21177616.000000",,,,,,,,"170.000000","5615.000000",,,,,,,,,,,"3961.000000","577.000000","500.000000","538.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","496.000000","462.000000","485.000000","620.000000","539.000000","616.000000","160.000000","6000.000000",,"8969554.000000",,,,, +"13037.000000","52.775000","13037.000000","52.775000","13037.000000","52.775000",,,,,,,,,,,,,,"47.000000","6647.000000","6350.000000","23.000000","6647.000000","6647.000000",,,,,,,,,,,"4129304.000000","5105068.000000","478784.000000","0.000000","65134304.000000","0.000000","87726340.000000",,"3623976.000000","26479816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000","5105068.000000","65134304.000000","87726340.000000","3623976.000000","26479816.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21189360.000000",,,,,,,,"160.000000","6737.000000",,,,,,,,,,,"4045.000000","579.000000","490.000000","539.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","454.000000","487.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969574.000000",,,,, +"12325.000000","51.650000","12325.000000","51.650000","12325.000000","51.650000",,,,,,,,,,,,,,"130.000000","5808.500000","5766.000000","28.000000","5808.500000","5808.500000",,,,,,,,,,,"4440692.000000","5616280.000000","478784.000000","0.000000","65115576.000000","0.000000","87726340.000000",,"3623976.000000","26575832.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000","5616280.000000","65115576.000000","87726340.000000","3623976.000000","26575832.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21203584.000000",,,,,,,,"134.000000","5586.000000",,,,,,,,,,,"3951.000000","578.000000","487.000000","536.000000","759.000000","584.000000","666.000000","0.000000","0.000000","0.000000","499.000000","450.000000","486.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969594.000000",,,,, +"11768.000000","50.770000","11768.000000","50.770000","11768.000000","50.770000",,,,,,,,,,,,,,"42.000000","5073.500000","4916.000000","37.000000","5073.500000","5073.500000",,,,,,,,,,,"4440976.000000","5532680.000000","478784.000000","0.000000","65099724.000000","0.000000","87726624.000000",,"3623976.000000","26578200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000","5532680.000000","65099724.000000","87726624.000000","3623976.000000","26578200.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21216748.000000",,,,,,,,"113.000000","5075.000000",,,,,,,,,,,"3760.000000","580.000000","471.000000","535.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","433.000000","485.000000","620.000000","516.000000","616.000000","160.000000","6000.000000",,"8969614.000000",,,,, +"12344.000000","51.665000","12344.000000","51.665000","12344.000000","51.665000",,,,,,,,,,,,,,"73.000000","5855.000000","5781.000000","16.000000","5855.000000","5855.000000",,,,,,,,,,,"4713608.000000","5784344.000000","478784.000000","0.000000","65081780.000000","0.000000","87726624.000000",,"3623976.000000","26595112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000","5784344.000000","65081780.000000","87726624.000000","3623976.000000","26595112.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21231420.000000",,,,,,,,"155.000000",,,,,,,,,,,,"3966.000000","579.000000","470.000000","536.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","500.000000","430.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969634.000000",,,,, +"13161.000000","52.935000","13161.000000","52.935000","13161.000000","52.935000",,,,,,,,,,,,,,"354.000000","20761.000000","19979.000000","52.000000","20761.000000","20761.000000",,,,,,,,,,,"4402768.000000","5625824.000000","478784.000000","0.000000","65066032.000000","0.000000","87727172.000000",,"3623976.000000","26623612.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000","5625824.000000","65066032.000000","87727172.000000","3623976.000000","26623612.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21244908.000000",,,,,,,,"543.000000","20645.000000",,,,,,,,,,,"3901.000000","580.000000","484.000000","538.000000","759.000000","570.000000","666.000000","0.000000","0.000000","0.000000","501.000000","441.000000","487.000000","620.000000","526.000000","616.000000","160.000000","6000.000000",,"8969654.000000",,,,, +"14237.000000","54.620000","14237.000000","54.620000","14237.000000","54.620000",,,,,,,,,,,,,,"763.000000","18125.500000","17265.000000","11.000000","18125.500000","18125.500000",,,,,,,,,,,"4234992.000000","5709708.000000","478784.000000","0.000000","65067712.000000","0.000000","87727172.000000",,"3623976.000000","26565356.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000","5709708.000000","65067712.000000","87727172.000000","3623976.000000","26565356.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21242224.000000",,,,,,,,"944.000000","17278.000000",,,,,,,,,,,"4007.000000","582.000000","521.000000","536.000000","764.000000","924.000000","666.000000","0.000000","0.000000","0.000000","501.000000","470.000000","486.000000","622.000000","713.000000","616.000000","160.000000","6000.000000",,"8969674.000000",,,,, +"14018.000000","54.275000","14018.000000","54.275000","14018.000000","54.275000",,,,,,,,,,,,,,"175.000000","7571.500000","7171.000000","25.000000","7571.500000","7571.500000",,,,,,,,,,,"4088444.000000","5416356.000000","478784.000000","0.000000","65060080.000000","0.000000","87727424.000000",,"3623976.000000","26572884.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000","5416356.000000","65060080.000000","87727424.000000","3623976.000000","26572884.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21247828.000000",,,,,,,,"308.000000","7488.000000",,,,,,,,,,,"4135.000000","572.000000","544.000000","532.000000","750.000000","924.000000","665.000000","0.000000","0.000000","0.000000","498.000000","491.000000","484.000000","605.000000","713.000000","572.000000","160.000000","6000.000000",,"8969694.000000",,,,, +"12631.000000","52.095000","12631.000000","52.095000","12631.000000","52.095000",,,,,,,,,,,,,,"978.000000","3491.000000","2267.000000","5.000000","3491.000000","3491.000000",,,,,,,,,,,"4135924.000000","5296064.000000","478784.000000","0.000000","65045084.000000","0.000000","87727424.000000",,"3623976.000000","26621704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000","5296064.000000","65045084.000000","87727424.000000","3623976.000000","26621704.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21261352.000000",,,,,,,,"1030.000000","2706.000000",,,,,,,,,,,"4027.000000","567.000000","532.000000","527.000000","741.000000","924.000000","632.000000","0.000000","0.000000","0.000000","495.000000","482.000000","480.000000","605.000000","713.000000","564.000000","160.000000","6000.000000",,"8969714.000000",,,,, +"13065.000000","52.785000","13065.000000","52.785000","13065.000000","52.785000",,,,,,,,,,,,,,"1628.000000","5913.000000","3475.000000","9.000000","5913.000000","5913.000000",,,,,,,,,,,"4303696.000000","5631612.000000","478784.000000","0.000000","65064576.000000","0.000000","87727424.000000",,"3623976.000000","26598104.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000","5631612.000000","65064576.000000","87727424.000000","3623976.000000","26598104.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21245504.000000",,,,,,,,"1848.000000","4874.000000",,,,,,,,,,,"3918.000000","564.000000","514.000000","524.000000","735.000000","564.000000","632.000000","0.000000","0.000000","0.000000","492.000000","469.000000","477.000000","589.000000","518.000000","564.000000","160.000000","6000.000000",,"8969734.000000",,,,, +"14033.000000","54.290000","14033.000000","54.290000","14033.000000","54.290000",,,,,,,,,,,,,,"1653.000000","10614.000000","8516.000000","13.000000","10614.000000","10614.000000",,,,,,,,,,,"4031068.000000","5463836.000000","478784.000000","0.000000","65049572.000000","0.000000","87727424.000000",,"3623976.000000","26608804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000","5463836.000000","65049572.000000","87727424.000000","3623976.000000","26608804.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21253624.000000",,,,,,,,"1836.000000","9223.000000",,,,,,,,,,,"3777.000000","562.000000","533.000000","521.000000","719.000000","638.000000","625.000000","0.000000","0.000000","0.000000","491.000000","464.000000","473.000000","579.000000","531.000000","548.000000","160.000000","6000.000000",,"8969754.000000",,,,, +"14722.000000","55.375000","14722.000000","55.375000","14722.000000","55.375000",,,,,,,,,,,,,,"1703.000000","9723.500000","7724.000000","7.000000","9723.500000","9723.500000",,,,,,,,,,,"4172564.000000","5373472.000000","478784.000000","0.000000","65050652.000000","0.000000","87726480.000000",,"3623976.000000","26588280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000","5373472.000000","65050652.000000","87726480.000000","3623976.000000","26588280.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21246164.000000",,,,,,,,"2051.000000","7967.000000",,,,,,,,,,,"3963.000000","561.000000","579.000000","521.000000","712.000000","684.000000","638.000000","0.000000","0.000000","0.000000","490.000000","489.000000","471.000000","572.000000","572.000000","539.000000","160.000000","6000.000000",,"8969774.000000",,,,, +"14538.000000","55.080000","14538.000000","55.080000","14538.000000","55.080000",,,,,,,,,,,,,,"2997.000000","10109.500000","6883.000000","4.000000","10109.500000","10109.500000",,,,,,,,,,,"4256448.000000","5625132.000000","478784.000000","0.000000","65040440.000000","0.000000","87726480.000000",,"3623976.000000","26621172.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000","5625132.000000","65040440.000000","87726480.000000","3623976.000000","26621172.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21257244.000000",,,,,,,,"3157.000000","7180.000000",,,,,,,,,,,"4002.000000","560.000000","595.000000","520.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","489.000000","504.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969794.000000",,,,, +"12527.000000","51.925000","12527.000000","51.925000","12527.000000","51.925000",,,,,,,,,,,,,,"1870.000000","6917.000000","4936.000000","53.000000","6917.000000","6917.000000",,,,,,,,,,,"4780736.000000","6380108.000000","478784.000000","0.000000","65038320.000000","0.000000","87726480.000000",,"3623976.000000","26622748.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000","6380108.000000","65038320.000000","87726480.000000","3623976.000000","26622748.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21256204.000000",,,,,,,,"1950.000000","5077.000000",,,,,,,,,,,"4021.000000","558.000000","560.000000","519.000000","707.000000","684.000000","621.000000","0.000000","0.000000","0.000000","488.000000","495.000000","467.000000","572.000000","572.000000","531.000000","160.000000","6000.000000",,"8969814.000000",,,,, +"12079.000000","51.220000","12079.000000","51.220000","12079.000000","51.220000",,,,,,,,,,,,,,"1829.000000","6554.000000","4549.000000","12.000000","6554.000000","6554.000000",,,,,,,,,,,"4860260.000000","6695860.000000","478784.000000","0.000000","65020712.000000","0.000000","87726480.000000",,"3623976.000000","26642900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000","6695860.000000","65020712.000000","87726480.000000","3623976.000000","26642900.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21269872.000000",,,,,,,,"1965.000000","4765.000000",,,,,,,,,,,"3869.000000","555.000000","511.000000","518.000000","707.000000","621.000000","621.000000","0.000000","0.000000","0.000000","487.000000","464.000000","465.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969834.000000",,,,, +"11593.000000","50.455000","11593.000000","50.455000","11593.000000","50.455000",,,,,,,,,,,,,,"627.000000","5474.000000","4631.000000","5.000000","5474.000000","5474.000000",,,,,,,,,,,"5111920.000000","7115288.000000","478784.000000","0.000000","65017516.000000","0.000000","87726480.000000",,"3623976.000000","26657296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000","7115288.000000","65017516.000000","87726480.000000","3623976.000000","26657296.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21270992.000000",,,,,,,,"781.000000","4907.000000",,,,,,,,,,,"3935.000000","555.000000","494.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","487.000000","445.000000","464.000000","572.000000","540.000000","531.000000","160.000000","6000.000000",,"8969854.000000",,,,, +"13167.000000","52.920000","13167.000000","52.920000","13167.000000","52.920000",,,,,,,,,,,,,,"308.000000","6196.500000","5716.000000","9.000000","6196.500000","6196.500000",,,,,,,,,,,"5174828.000000","7073344.000000","478784.000000","0.000000","65010484.000000","0.000000","87726480.000000",,"3623976.000000","26663032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000","7073344.000000","65010484.000000","87726480.000000","3623976.000000","26663032.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21274368.000000",,,,,,,,"403.000000","5965.000000",,,,,,,,,,,"3936.000000","552.000000","488.000000","519.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","436.000000","463.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969874.000000",,,,, +"12314.000000","51.575000","12314.000000","51.575000","12314.000000","51.575000",,,,,,,,,,,,,,"488.000000","5682.000000","4937.000000","4.000000","5682.000000","5682.000000",,,,,,,,,,,"5359308.000000","7278788.000000","478784.000000","0.000000","64994012.000000","0.000000","87726572.000000",,"3623976.000000","26666292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000","7278788.000000","64994012.000000","87726572.000000","3623976.000000","26666292.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21287624.000000",,,,,,,,"558.000000","5379.000000",,,,,,,,,,,"3957.000000","551.000000","494.000000","520.000000","707.000000","629.000000","629.000000","0.000000","0.000000","0.000000","485.000000","442.000000","464.000000","572.000000","505.000000","531.000000","160.000000","6000.000000",,"8969894.000000",,,,, +"13428.000000","53.325000","13428.000000","53.325000","13428.000000","53.325000",,,,,,,,,,,,,,"180.000000","6272.500000","6094.000000","4.000000","6272.500000","6272.500000",,,,,,,,,,,"5023764.000000","6985188.000000","478780.000000","0.000000","64999472.000000","0.000000","87726576.000000",,"3623976.000000","26630496.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000","6985188.000000","64999472.000000","87726576.000000","3623976.000000","26630496.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21278908.000000",,,,,,,,"299.000000","5971.000000",,,,,,,,,,,"3970.000000","549.000000","484.000000","522.000000","707.000000","557.000000","629.000000","0.000000","0.000000","0.000000","483.000000","448.000000","467.000000","572.000000","516.000000","531.000000","160.000000","6000.000000",,"8969914.000000",,,,, +"14210.000000","54.540000","14210.000000","54.540000","14210.000000","54.540000",,,,,,,,,,,,,,"296.000000","6461.000000","5850.000000","6.000000","6461.000000","6461.000000",,,,,,,,,,,"5149596.000000","6985188.000000","478780.000000","0.000000","64980680.000000","0.000000","87726576.000000",,"3623976.000000","26648040.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000","6985188.000000","64980680.000000","87726576.000000","3623976.000000","26648040.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21294232.000000",,,,,,,,"399.000000","6377.000000",,,,,,,,,,,"4162.000000","551.000000","521.000000","529.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","485.000000","475.000000","472.000000","572.000000","553.000000","532.000000","160.000000","6000.000000",,"8969934.000000",,,,, +"14066.000000","54.305000","14066.000000","54.305000","14066.000000","54.305000",,,,,,,,,,,,,,"324.000000","7525.000000","6472.000000","16.000000","7525.000000","7525.000000",,,,,,,,,,,"5007148.000000","6764400.000000","478780.000000","0.000000","64963712.000000","0.000000","87726576.000000",,"3623976.000000","26633152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000","6764400.000000","64963712.000000","87726576.000000","3623976.000000","26633152.000000","1429428.000000","1630920.000000",,,,"11009440.000000","21308088.000000",,,,,,,,"513.000000","7740.000000",,,,,,,,,,,"4054.000000","550.000000","544.000000","532.000000","707.000000","650.000000","638.000000","0.000000","0.000000","0.000000","486.000000","493.000000","474.000000","572.000000","553.000000","533.000000","160.000000","6000.000000",,"8969954.000000",,,,, +"17093.000000","59.250000","17093.000000","59.250000","17093.000000","59.250000",,,,,,,,,,,,,,"241.000000","5989.000000","5165.000000","8.000000","5989.000000","5989.000000",,,,,,,,,,,"5552316.000000","7435400.000000","478780.000000","0.000000","65380004.000000","0.000000","87726484.000000",,"3623976.000000","26323072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000","7435400.000000","65380004.000000","87726484.000000","3623976.000000","26323072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20890460.000000",,,,,,,,"388.000000","6182.000000",,,,,,,,,,,"4172.000000","550.000000","598.000000","537.000000","707.000000","785.000000","644.000000","0.000000","0.000000","0.000000","486.000000","531.000000","479.000000","572.000000","646.000000","553.000000","160.000000","6000.000000",,"8969974.000000",,,,, +"19788.000000","63.465000","19788.000000","63.465000","19788.000000","63.465000",,,,,,,,,,,,,,"52.000000","12885.500000","12637.000000","148.000000","12885.500000","12885.500000",,,,,,,,,,,"6181464.000000","8190376.000000","478780.000000","0.000000","65366212.000000","0.000000","87726484.000000",,"3623976.000000","26338720.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000","8190376.000000","65366212.000000","87726484.000000","3623976.000000","26338720.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20906016.000000",,,,,,,,"190.000000","12890.000000",,,,,,,,,,,"4547.000000","550.000000","692.000000","559.000000","707.000000","900.000000","684.000000","0.000000","0.000000","0.000000","489.000000","608.000000","496.000000","598.000000","856.000000","604.000000","160.000000","6000.000000",,"8969994.000000",,,,, +"18474.000000","61.400000","18474.000000","61.400000","18474.000000","61.400000",,,,,,,,,,,,,,"286.000000","9984.000000","9432.000000","32.000000","9984.000000","9984.000000",,,,,,,,,,,"5761016.000000","7512724.000000","478780.000000","0.000000","65352800.000000","0.000000","87726636.000000",,"3623976.000000","26368640.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000","7512724.000000","65352800.000000","87726636.000000","3623976.000000","26368640.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20919120.000000",,,,,,,,"382.000000","9868.000000",,,,,,,,,,,"4379.000000","551.000000","744.000000","574.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","491.000000","659.000000","509.000000","620.000000","856.000000","647.000000","160.000000","6000.000000",,"8970014.000000",,,,, +"17232.000000","59.450000","17232.000000","59.450000","17232.000000","59.450000",,,,,,,,,,,,,,"180.000000","6142.000000","5937.000000","29.000000","6142.000000","6142.000000",,,,,,,,,,,"5762368.000000","7556016.000000","478776.000000","0.000000","65347860.000000","0.000000","87727992.000000",,"3623976.000000","26344060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000","7556016.000000","65347860.000000","87727992.000000","3623976.000000","26344060.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20922428.000000",,,,,,,,"195.000000","5971.000000",,,,,,,,,,,"4209.000000","553.000000","749.000000","584.000000","712.000000","900.000000","752.000000","0.000000","0.000000","0.000000","494.000000","672.000000","520.000000","622.000000","856.000000","656.000000","160.000000","6000.000000",,"8970034.000000",,,,, +"17680.000000","60.150000","17680.000000","60.150000","17680.000000","60.150000",,,,,,,,,,,,,,"263.000000","8234.500000","7612.000000","12.000000","8234.500000","8234.500000",,,,,,,,,,,"5089856.000000","6694756.000000","478776.000000","0.000000","65338812.000000","0.000000","87726568.000000",,"3623976.000000","26351480.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000","6694756.000000","65338812.000000","87726568.000000","3623976.000000","26351480.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20927468.000000",,,,,,,,"685.000000","7909.000000",,,,,,,,,,,"4155.000000","553.000000","719.000000","596.000000","712.000000","810.000000","785.000000","0.000000","0.000000","0.000000","495.000000","634.000000","530.000000","640.000000","684.000000","662.000000","160.000000","6000.000000",,"8970054.000000",,,,, +"20499.000000","64.560000","20499.000000","64.560000","20499.000000","64.560000",,,,,,,,,,,,,,"53.000000","7673.500000","7506.000000","25.000000","7673.500000","7673.500000",,,,,,,,,,,"5446368.000000","7066716.000000","478776.000000","0.000000","65321752.000000","0.000000","87726568.000000",,"3623976.000000","26324468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000","7066716.000000","65321752.000000","87726568.000000","3623976.000000","26324468.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20942768.000000",,,,,,,,"165.000000","7622.000000",,,,,,,,,,,"4453.000000","557.000000","746.000000","607.000000","752.000000","877.000000","788.000000","0.000000","0.000000","0.000000","499.000000","657.000000","543.000000","647.000000","780.000000","717.000000","160.000000","6000.000000",,"8970074.000000",,,,, +"18402.000000","61.375000","18402.000000","61.375000","18402.000000","61.375000",,,,,,,,,,,,,,"4789.000000","12107.000000","7137.000000","24.000000","12107.000000","12107.000000",,,,,,,,,,,"5278596.000000","6961856.000000","478776.000000","0.000000","65529668.000000","0.000000","87726568.000000",,"3623976.000000","26101588.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000","6961856.000000","65529668.000000","87726568.000000","3623976.000000","26101588.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20732728.000000",,,,,,,,"4970.000000","7317.000000",,,,,,,,,,,"4285.000000","560.000000","778.000000","621.000000","778.000000","877.000000","823.000000","0.000000","0.000000","0.000000","501.000000","673.000000","554.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970094.000000",,,,, +"16313.000000","58.150000","16313.000000","58.150000","16313.000000","58.150000",,,,,,,,,,,,,,"93.000000","7041.000000","6408.000000","18.000000","7041.000000","7041.000000",,,,,,,,,,,"5991628.000000","7465176.000000","478776.000000","0.000000","65625120.000000","0.000000","87726568.000000",,"3623976.000000","26005564.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000","7465176.000000","65625120.000000","87726568.000000","3623976.000000","26005564.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20635000.000000",,,,,,,,"218.000000","7362.000000",,,,,,,,,,,"4125.000000","564.000000","757.000000","635.000000","752.000000","877.000000","823.000000","0.000000","0.000000","0.000000","506.000000","668.000000","564.000000","647.000000","780.000000","726.000000","160.000000","6000.000000",,"8970114.000000",,,,, +"15224.000000","56.430000","15224.000000","56.430000","15224.000000","56.430000",,,,,,,,,,,,,,"43.000000","6387.000000","5188.000000","25.000000","6387.000000","6387.000000",,,,,,,,,,,"6075364.000000","7402116.000000","478776.000000","0.000000","65601996.000000","0.000000","87726420.000000",,"3623976.000000","25981532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000","7402116.000000","65601996.000000","87726420.000000","3623976.000000","25981532.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20654900.000000",,,,,,,,"222.000000","7319.000000",,,,,,,,,,,"3932.000000","566.000000","696.000000","645.000000","752.000000","848.000000","823.000000","0.000000","0.000000","0.000000","507.000000","600.000000","570.000000","647.000000","758.000000","726.000000","160.000000","6000.000000",,"8970134.000000",,,,, +"16372.000000","58.220000","16372.000000","58.220000","16372.000000","58.220000",,,,,,,,,,,,,,"43.000000","5389.500000","5050.000000","17.000000","5389.500000","5389.500000",,,,,,,,,,,"6159316.000000","7606360.000000","478776.000000","0.000000","65580336.000000","0.000000","87726488.000000",,"3623976.000000","26104452.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000","7606360.000000","65580336.000000","87726488.000000","3623976.000000","26104452.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20673796.000000",,,,,,,,"125.000000","5560.000000",,,,,,,,,,,"4204.000000","570.000000","652.000000","652.000000","752.000000","733.000000","823.000000","0.000000","0.000000","0.000000","510.000000","577.000000","580.000000","647.000000","626.000000","726.000000","160.000000","6000.000000",,"8970154.000000",,,,, +"17393.000000","59.810000","17393.000000","59.810000","17393.000000","59.810000",,,,,,,,,,,,,,"51.000000","6649.500000","6222.000000","19.000000","6649.500000","6649.500000",,,,,,,,,,,"6369032.000000","7920932.000000","478776.000000","0.000000","65560140.000000","0.000000","87726488.000000",,"3623976.000000","26123692.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000","7920932.000000","65560140.000000","87726488.000000","3623976.000000","26123692.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20690348.000000",,,,,,,,"171.000000","6854.000000",,,,,,,,,,,"4360.000000","575.000000","645.000000","667.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","515.000000","584.000000","594.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970174.000000",,,,, +"15954.000000","57.550000","15954.000000","57.550000","15954.000000","57.550000",,,,,,,,,,,,,,"47.000000","6627.000000","5604.000000","21.000000","6627.000000","6627.000000",,,,,,,,,,,"6159320.000000","7846956.000000","478776.000000","0.000000","65547728.000000","0.000000","87726488.000000",,"3623976.000000","26161860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000","7846956.000000","65547728.000000","87726488.000000","3623976.000000","26161860.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20700264.000000",,,,,,,,"251.000000","7350.000000",,,,,,,,,,,"4182.000000","577.000000","648.000000","675.000000","752.000000","702.000000","823.000000","0.000000","0.000000","0.000000","517.000000","599.000000","602.000000","648.000000","659.000000","726.000000","160.000000","6000.000000",,"8970194.000000",,,,, +"16716.000000","58.750000","16716.000000","58.750000","16716.000000","58.750000",,,,,,,,,,,,,,"52.000000","4941.000000","4888.000000","15.000000","4941.000000","4941.000000",,,,,,,,,,,"6564492.000000","8394572.000000","478776.000000","0.000000","65557180.000000","0.000000","87726488.000000",,"3623976.000000","26149540.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000","8394572.000000","65557180.000000","87726488.000000","3623976.000000","26149540.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20685484.000000",,,,,,,,"166.000000",,,,,,,,,,,,"4419.000000","581.000000","649.000000","685.000000","752.000000","710.000000","823.000000","0.000000","0.000000","0.000000","521.000000","605.000000","611.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970214.000000",,,,, +"15563.000000","56.935000","15563.000000","56.935000","15563.000000","56.935000",,,,,,,,,,,,,,"119.000000","5666.000000","5567.000000","51.000000","5666.000000","5666.000000",,,,,,,,,,,"6249784.000000","7975004.000000","478776.000000","0.000000","65536392.000000","0.000000","87726348.000000",,"3623976.000000","26168072.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000","7975004.000000","65536392.000000","87726348.000000","3623976.000000","26168072.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20703412.000000",,,,,,,,"139.000000","5507.000000",,,,,,,,,,,"4089.000000","585.000000","636.000000","690.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","525.000000","579.000000","615.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970234.000000",,,,, +"16319.000000","58.105000","16319.000000","58.105000","16319.000000","58.105000",,,,,,,,,,,,,,"329.000000","4742.000000","4228.000000","34.000000","4742.000000","4742.000000",,,,,,,,,,,"6375700.000000","7997216.000000","478776.000000","0.000000","65513436.000000","0.000000","87726440.000000",,"3623976.000000","26184808.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000","7997216.000000","65513436.000000","87726440.000000","3623976.000000","26184808.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20721352.000000",,,,,,,,"411.000000","4515.000000",,,,,,,,,,,"4377.000000","588.000000","634.000000","693.000000","752.000000","725.000000","823.000000","0.000000","0.000000","0.000000","527.000000","589.000000","621.000000","650.000000","664.000000","726.000000","160.000000","6000.000000",,"8970254.000000",,,,, +"13003.000000","52.905000","13003.000000","52.905000","13003.000000","52.905000",,,,,,,,,,,,,,"46.000000","8229.500000","8077.000000","54.000000","8229.500000","8229.500000",,,,,,,,,,,"6339300.000000","7876924.000000","478776.000000","0.000000","65507988.000000","0.000000","87726440.000000",,"3623976.000000","26193752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000","7876924.000000","65507988.000000","87726440.000000","3623976.000000","26193752.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20730348.000000",,,,,,,,"145.000000","8191.000000",,,,,,,,,,,"4150.000000","585.000000","584.000000","682.000000","743.000000","725.000000","823.000000","0.000000","0.000000","0.000000","526.000000","545.000000","614.000000","650.000000","625.000000","726.000000","160.000000","6000.000000",,"8970274.000000",,,,, +"18547.000000","61.590000","18547.000000","61.590000","18547.000000","61.590000",,,,,,,,,,,,,,"81.000000","7082.500000","6889.000000","22.000000","7082.500000","7082.500000",,,,,,,,,,,"6297352.000000","7751092.000000","478776.000000","0.000000","65503120.000000","0.000000","87726440.000000",,"3623976.000000","26213864.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000","7751092.000000","65503120.000000","87726440.000000","3623976.000000","26213864.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20738856.000000",,,,,,,,"176.000000","7018.000000",,,,,,,,,,,"4233.000000","590.000000","638.000000","679.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","529.000000","575.000000","608.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970294.000000",,,,, +"15410.000000","56.670000","15410.000000","56.670000","15410.000000","56.670000",,,,,,,,,,,,,,"68.000000","6507.000000","6237.000000","25.000000","6507.000000","6507.000000",,,,,,,,,,,"6108612.000000","7593232.000000","478776.000000","0.000000","65492420.000000","0.000000","87726440.000000",,"3623976.000000","26202020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000","7593232.000000","65492420.000000","87726440.000000","3623976.000000","26202020.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20747044.000000",,,,,,,,"150.000000","6558.000000",,,,,,,,,,,"4244.000000","591.000000","637.000000","672.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","563.000000","602.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970314.000000",,,,, +"14745.000000","55.620000","14745.000000","55.620000","14745.000000","55.620000",,,,,,,,,,,,,,"53.000000","2073.000000","1918.000000","43.000000","2073.000000","2073.000000",,,,,,,,,,,"6318376.000000","7614252.000000","478776.000000","0.000000","65473556.000000","0.000000","87726488.000000",,"3623976.000000","26221604.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000","7614252.000000","65473556.000000","87726488.000000","3623976.000000","26221604.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20765964.000000",,,,,,,,"99.000000","2075.000000",,,,,,,,,,,"4191.000000","590.000000","654.000000","663.000000","743.000000","1179.000000","810.000000","0.000000","0.000000","0.000000","530.000000","571.000000","594.000000","650.000000","809.000000","717.000000","160.000000","6000.000000",,"8970334.000000",,,,, +"15791.000000","57.250000","15791.000000","57.250000","15791.000000","57.250000",,,,,,,,,,,,,,"57.000000","5451.500000","5099.000000","20.000000","5451.500000","5451.500000",,,,,,,,,,,"5815056.000000","7099876.000000","478776.000000","0.000000","65454560.000000","0.000000","87726488.000000",,"3623976.000000","26204668.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000","7099876.000000","65454560.000000","87726488.000000","3623976.000000","26204668.000000","1429428.000000","1630920.000000",,,,"11009440.000000","20783040.000000",,,,,,,,"492.000000","5254.000000",,,,,,,,,,,"4222.000000","591.000000","597.000000","655.000000","743.000000","673.000000","782.000000","0.000000","0.000000","0.000000","531.000000","544.000000","590.000000","650.000000","629.000000","717.000000","160.000000","6000.000000",,"8970354.000000",,,,, +"16613.000000","58.530000","16613.000000","58.530000","16613.000000","58.530000",,,,,,,,,,,,,,"51.000000","6115.000000","6005.000000","21.000000","6115.000000","6115.000000",,,,,,,,,,,"5951444.000000","7100624.000000","478776.000000","0.000000","65444068.000000","0.000000","87728584.000000",,"3623976.000000","26226408.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000","7100624.000000","65444068.000000","87728584.000000","3623976.000000","26226408.000000","1429428.000000","1630920.000000",,,,"11007436.000000","20794748.000000",,,,,,,,"138.000000","6035.000000",,,,,,,,,,,"4069.000000","591.000000","610.000000","645.000000","743.000000","696.000000","733.000000","0.000000","0.000000","0.000000","531.000000","550.000000","580.000000","650.000000","637.000000","650.000000","160.000000","6000.000000",,"8970374.000000",,,,, +"14821.000000","55.725000","14821.000000","55.725000","14821.000000","55.725000",,,,,,,,,,,,,,"51.000000","5686.500000","4605.000000","18.000000","5686.500000","5686.500000",,,,,,,,,,,"5621576.000000","6986040.000000","478776.000000","0.000000","65444408.000000","0.000000","87728784.000000",,"3623976.000000","26225264.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000","6986040.000000","65444408.000000","87728784.000000","3623976.000000","26225264.000000","1429428.000000","1630920.000000",,,,"11007236.000000","20791252.000000",,,,,,,,"261.000000","6456.000000",,,,,,,,,,,"3965.000000","592.000000","636.000000","635.000000","743.000000","696.000000","711.000000","0.000000","0.000000","0.000000","531.000000","558.000000","571.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970394.000000",,,,, +"14756.000000","55.630000","14756.000000","55.630000","14756.000000","55.630000",,,,,,,,,,,,,,"51.000000","6384.500000","5990.000000","25.000000","6384.500000","6384.500000",,,,,,,,,,,"6177880.000000","7712540.000000","478776.000000","0.000000","65460764.000000","0.000000","87764408.000000",,"3623976.000000","26249284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000","7712540.000000","65460764.000000","87764408.000000","3623976.000000","26249284.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20808480.000000",,,,,,,,"161.000000","6565.000000",,,,,,,,,,,"4132.000000","594.000000","625.000000","628.000000","743.000000","696.000000","702.000000","0.000000","0.000000","0.000000","532.000000","548.000000","566.000000","650.000000","637.000000","646.000000","160.000000","6000.000000",,"8970414.000000",,,,, +"14613.000000","55.400000","14613.000000","55.400000","14613.000000","55.400000",,,,,,,,,,,,,,"63.000000","5010.000000","4911.000000","19.000000","5010.000000","5010.000000",,,,,,,,,,,"6198864.000000","7817412.000000","478776.000000","0.000000","65443124.000000","0.000000","87764420.000000",,"3623976.000000","26286804.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000","7817412.000000","65443124.000000","87764420.000000","3623976.000000","26286804.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20822568.000000",,,,,,,,"133.000000","4912.000000",,,,,,,,,,,"4179.000000","596.000000","592.000000","624.000000","743.000000","695.000000","702.000000","0.000000","0.000000","0.000000","533.000000","523.000000","565.000000","650.000000","591.000000","646.000000","160.000000","6000.000000",,"8970434.000000",,,,, +"16089.000000","57.705000","16089.000000","57.705000","16089.000000","57.705000",,,,,,,,,,,,,,"152.000000","7417.500000","7087.000000","17.000000","7417.500000","7417.500000",,,,,,,,,,,"5863848.000000","7386684.000000","478776.000000","0.000000","65438364.000000","0.000000","87764420.000000",,"3623976.000000","26289516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000","7386684.000000","65438364.000000","87764420.000000","3623976.000000","26289516.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20823944.000000",,,,,,,,"176.000000","7419.000000",,,,,,,,,,,"4367.000000","598.000000","597.000000","624.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","536.000000","547.000000","565.000000","656.000000","683.000000","649.000000","160.000000","6000.000000",,"8970454.000000",,,,, +"14933.000000","55.890000","14933.000000","55.890000","14933.000000","55.890000",,,,,,,,,,,,,,"60.000000","6719.500000","6644.000000","17.000000","6719.500000","6719.500000",,,,,,,,,,,"5234704.000000","6946284.000000","478776.000000","0.000000","65425044.000000","0.000000","87764420.000000",,"3623976.000000","26311328.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000","6946284.000000","65425044.000000","87764420.000000","3623976.000000","26311328.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20837992.000000",,,,,,,,"170.000000","6564.000000",,,,,,,,,,,"4047.000000","601.000000","589.000000","617.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","538.000000","546.000000","558.000000","656.000000","683.000000","646.000000","160.000000","6000.000000",,"8970474.000000",,,,, +"15058.000000","56.080000","15058.000000","56.080000","15058.000000","56.080000",,,,,,,,,,,,,,"39.000000","6464.500000","6211.000000","32.000000","6464.500000","6464.500000",,,,,,,,,,,"5046956.000000","6832512.000000","478776.000000","0.000000","65413676.000000","0.000000","87764268.000000",,"3623976.000000","26321180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000","6832512.000000","65413676.000000","87764268.000000","3623976.000000","26321180.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20843312.000000",,,,,,,,"137.000000","6541.000000",,,,,,,,,,,"4155.000000","603.000000","601.000000","615.000000","743.000000","725.000000","710.000000","0.000000","0.000000","0.000000","541.000000","562.000000","557.000000","656.000000","683.000000","639.000000","160.000000","6000.000000",,"8970494.000000",,,,, +"14597.000000","55.350000","14597.000000","55.350000","14597.000000","55.350000",,,,,,,,,,,,,,"73.000000","9394.500000","9084.000000","40.000000","9394.500000","9394.500000",,,,,,,,,,,"5178760.000000","7026940.000000","478776.000000","0.000000","65394196.000000","0.000000","87764324.000000",,"3623976.000000","26340208.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000","7026940.000000","65394196.000000","87764324.000000","3623976.000000","26340208.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20860444.000000",,,,,,,,"203.000000","9429.000000",,,,,,,,,,,"4137.000000","606.000000","584.000000","611.000000","743.000000","631.000000","696.000000","0.000000","0.000000","0.000000","543.000000","536.000000","552.000000","656.000000","605.000000","629.000000","160.000000","6000.000000",,"8970514.000000",,,,, +"14061.000000","54.505000","14061.000000","54.505000","14061.000000","54.505000",,,,,,,,,,,,,,"77.000000","14021.500000","13801.000000","63.000000","14021.500000","14021.500000",,,,,,,,,,,"5220700.000000","6880148.000000","478776.000000","0.000000","65390696.000000","0.000000","87764324.000000",,"3623976.000000","26337004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000","6880148.000000","65390696.000000","87764324.000000","3623976.000000","26337004.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20861192.000000",,,,,,,,"217.000000","13947.000000",,,,,,,,,,,"4047.000000","609.000000","588.000000","607.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","545.000000","524.000000","547.000000","656.000000","595.000000","629.000000","160.000000","6000.000000",,"8970534.000000",,,,, +"15058.000000","56.060000","15058.000000","56.060000","15058.000000","56.060000",,,,,,,,,,,,,,"382.000000","5720.000000","5320.000000","22.000000","5720.000000","5720.000000",,,,,,,,,,,"5430416.000000","7151624.000000","478776.000000","0.000000","65372456.000000","0.000000","87764324.000000",,"3623976.000000","26376740.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000","7151624.000000","65372456.000000","87764324.000000","3623976.000000","26376740.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20877972.000000",,,,,,,,"438.000000","5299.000000",,,,,,,,,,,"4118.000000","609.000000","574.000000","603.000000","743.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","514.000000","542.000000","656.000000","550.000000","629.000000","160.000000","6000.000000",,"8970554.000000",,,,, +"13477.000000","53.580000","13477.000000","53.580000","13477.000000","53.580000",,,,,,,,,,,,,,"1543.000000","7325.000000","5991.000000","25.000000","7325.000000","7325.000000",,,,,,,,,,,"5155096.000000","6630556.000000","478776.000000","0.000000","65365580.000000","0.000000","87764324.000000",,"3623976.000000","26382484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000","6630556.000000","65365580.000000","87764324.000000","3623976.000000","26382484.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20881584.000000",,,,,,,,"677.000000","6437.000000",,,,,,,,,,,"4118.000000","609.000000","564.000000","607.000000","733.000000","682.000000","695.000000","0.000000","0.000000","0.000000","546.000000","517.000000","546.000000","650.000000","630.000000","630.000000","160.000000","6000.000000",,"8970574.000000",,,,, +"18520.000000","61.475000","18520.000000","61.475000","18520.000000","61.475000",,,,,,,,,,,,,,"2740.000000","38507.000000","34859.000000","35.000000","38507.000000","38507.000000",,,,,,,,,,,"5343840.000000","6630552.000000","478776.000000","0.000000","65355420.000000","0.000000","87764324.000000",,"3623976.000000","26373872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000","6630552.000000","65355420.000000","87764324.000000","3623976.000000","26373872.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20890388.000000",,,,,,,,"4072.000000","35341.000000",,,,,,,,,,,"4119.000000","616.000000","647.000000","609.000000","778.000000","1092.000000","696.000000","0.000000","0.000000","0.000000","550.000000","564.000000","545.000000","659.000000","768.000000","634.000000","160.000000","6000.000000",,"8970594.000000",,,,, +"18741.000000","61.810000","18741.000000","61.810000","18741.000000","61.810000",,,,,,,,,,,,,,"60.000000","6559.000000","5378.000000","22.000000","6559.000000","6559.000000",,,,,,,,,,,"5520340.000000","6871116.000000","478760.000000","0.000000","65333124.000000","0.000000","87764304.000000",,"3623976.000000","26368488.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000","6871116.000000","65333124.000000","87764304.000000","3623976.000000","26368488.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20912148.000000",,,,,,,,"250.000000","7430.000000",,,,,,,,,,,"4178.000000","622.000000","729.000000","621.000000","785.000000","1092.000000","797.000000","0.000000","0.000000","0.000000","554.000000","610.000000","551.000000","662.000000","779.000000","637.000000","160.000000","6000.000000",,"8970614.000000",,,,, +"21977.000000","66.870000","21977.000000","66.870000","21977.000000","66.870000",,,,,,,,,,,,,,"51.000000","3018.500000","2744.000000","6.000000","3018.500000","3018.500000",,,,,,,,,,,"5520160.000000","7185792.000000","478760.000000","0.000000","65321152.000000","0.000000","87764120.000000",,"3623976.000000","26379716.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000","7185792.000000","65321152.000000","87764120.000000","3623976.000000","26379716.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20921604.000000",,,,,,,,"128.000000","3114.000000",,,,,,,,,,,"4355.000000","633.000000","883.000000","653.000000","797.000000","1247.000000","900.000000","0.000000","0.000000","0.000000","560.000000","678.000000","567.000000","672.000000","868.000000","713.000000","160.000000","6000.000000",,"8970634.000000",,,,, +"21223.000000","65.685000","21223.000000","65.685000","21223.000000","65.685000",,,,,,,,,,,,,,"60.000000","7292.000000","6874.000000","30.000000","7292.000000","7292.000000",,,,,,,,,,,"5142856.000000","7269864.000000","478760.000000","0.000000","65305336.000000","0.000000","87764304.000000",,"3623976.000000","26308196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000","7269864.000000","65305336.000000","87764304.000000","3623976.000000","26308196.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20939016.000000",,,,,,,,"546.000000","7104.000000",,,,,,,,,,,"4468.000000","647.000000","1003.000000","691.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","568.000000","742.000000","585.000000","717.000000","868.000000","765.000000","160.000000","6000.000000",,"8970654.000000",,,,, +"19746.000000","63.375000","19746.000000","63.375000","19746.000000","63.375000",,,,,,,,,,,,,,"54.000000","7183.000000","6997.000000","14.000000","7183.000000","7183.000000",,,,,,,,,,,"5092148.000000","7156244.000000","478760.000000","0.000000","65313480.000000","0.000000","87764304.000000",,"3623976.000000","26273372.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000","7156244.000000","65313480.000000","87764304.000000","3623976.000000","26273372.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20922044.000000",,,,,,,,"153.000000","7161.000000",,,,,,,,,,,"4291.000000","652.000000","1019.000000","703.000000","848.000000","1247.000000","1092.000000","0.000000","0.000000","0.000000","572.000000","756.000000","593.000000","726.000000","868.000000","768.000000","160.000000","6000.000000",,"8970674.000000",,,,, +"17637.000000","60.060000","17637.000000","60.060000","17637.000000","60.060000",,,,,,,,,,,,,,"121.000000","5487.500000","5324.000000","12.000000","5487.500000","5487.500000",,,,,,,,,,,"5059368.000000","6808616.000000","478760.000000","0.000000","65296348.000000","0.000000","87764332.000000",,"3623976.000000","26288184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000","6808616.000000","65296348.000000","87764332.000000","3623976.000000","26288184.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20935400.000000",,,,,,,,"137.000000","5391.000000",,,,,,,,,,,"4412.000000","656.000000","932.000000","712.000000","857.000000","1184.000000","1092.000000","0.000000","0.000000","0.000000","575.000000","730.000000","602.000000","727.000000","852.000000","776.000000","160.000000","6000.000000",,"8970694.000000",,,,, +"13666.000000","53.840000","13666.000000","53.840000","13666.000000","53.840000",,,,,,,,,,,,,,"581.000000","7151.000000","6472.000000","17.000000","7151.000000","7151.000000",,,,,,,,,,,"5122280.000000","6577928.000000","478760.000000","0.000000","65297512.000000","0.000000","87764332.000000",,"3623976.000000","26253144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000","6577928.000000","65297512.000000","87764332.000000","3623976.000000","26253144.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20933940.000000",,,,,,,,"672.000000","6577.000000",,,,,,,,,,,"3981.000000","657.000000","710.000000","707.000000","857.000000","913.000000","1092.000000","0.000000","0.000000","0.000000","576.000000","611.000000","597.000000","727.000000","830.000000","776.000000","160.000000","6000.000000",,"8970714.000000",,,,, +"13301.000000","53.260000","13301.000000","53.260000","13301.000000","53.260000",,,,,,,,,,,,,,"60.000000","4931.500000","4850.000000","22.000000","4931.500000","4931.500000",,,,,,,,,,,"5206920.000000","6725480.000000","478760.000000","0.000000","65278336.000000","0.000000","87765084.000000",,"3623976.000000","26422524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000","6725480.000000","65278336.000000","87765084.000000","3623976.000000","26422524.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20949736.000000",,,,,,,,"137.000000","4815.000000",,,,,,,,,,,"4140.000000","659.000000","612.000000","707.000000","857.000000","857.000000","1092.000000","0.000000","0.000000","0.000000","577.000000","536.000000","595.000000","727.000000","776.000000","776.000000","160.000000","6000.000000",,"8970734.000000",,,,, +"13782.000000","54.010000","13782.000000","54.010000","13782.000000","54.010000",,,,,,,,,,,,,,"968.000000","11337.000000","10137.000000","26.000000","11337.000000","11337.000000",,,,,,,,,,,"5433632.000000","6862384.000000","478760.000000","0.000000","65269480.000000","0.000000","87764332.000000",,"3623976.000000","26429364.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000","6862384.000000","65269480.000000","87764332.000000","3623976.000000","26429364.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20954260.000000",,,,,,,,"1138.000000","10429.000000",,,,,,,,,,,"4033.000000","660.000000","550.000000","703.000000","857.000000","594.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","479.000000","588.000000","727.000000","511.000000","776.000000","160.000000","6000.000000",,"8970754.000000",,,,, +"12716.000000","52.330000","12716.000000","52.330000","12716.000000","52.330000",,,,,,,,,,,,,,"104.000000","4438.500000","4074.000000","8.000000","4438.500000","4438.500000",,,,,,,,,,,"5119060.000000","6505864.000000","478760.000000","0.000000","65260124.000000","0.000000","87764332.000000",,"3623976.000000","26476576.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000","6505864.000000","65260124.000000","87764332.000000","3623976.000000","26476576.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20963340.000000",,,,,,,,"188.000000","4510.000000",,,,,,,,,,,"3995.000000","661.000000","554.000000","700.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","475.000000","583.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970774.000000",,,,, +"13041.000000","52.835000","13041.000000","52.835000","13041.000000","52.835000",,,,,,,,,,,,,,"53.000000","5975.000000","5921.000000","16.000000","5975.000000","5975.000000",,,,,,,,,,,"5202980.000000","6526868.000000","478760.000000","0.000000","65242600.000000","0.000000","87764364.000000",,"3623976.000000","26486088.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000","6526868.000000","65242600.000000","87764364.000000","3623976.000000","26486088.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20977424.000000",,,,,,,,"205.000000",,,,,,,,,,,,"3888.000000","663.000000","557.000000","698.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","478.000000","579.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970794.000000",,,,, +"12890.000000","52.595000","12890.000000","52.595000","12890.000000","52.595000",,,,,,,,,,,,,,"56.000000","6023.000000","4717.000000","9.000000","6023.000000","6023.000000",,,,,,,,,,,"5514332.000000","6821240.000000","478760.000000","0.000000","65236200.000000","0.000000","87764364.000000",,"3623976.000000","26490704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000","6821240.000000","65236200.000000","87764364.000000","3623976.000000","26490704.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20979648.000000",,,,,,,,"246.000000","7026.000000",,,,,,,,,,,"3860.000000","663.000000","534.000000","693.000000","857.000000","610.000000","1092.000000","0.000000","0.000000","0.000000","578.000000","455.000000","572.000000","727.000000","515.000000","776.000000","160.000000","6000.000000",,"8970814.000000",,,,, +"15270.000000","56.315000","15270.000000","56.315000","15270.000000","56.315000",,,,,,,,,,,,,,"65.000000","8485.500000","7069.000000","25.000000","8485.500000","8485.500000",,,,,,,,,,,"5556280.000000","6936012.000000","478760.000000","0.000000","65214124.000000","0.000000","87764364.000000",,"3623976.000000","26522796.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000","6936012.000000","65214124.000000","87764364.000000","3623976.000000","26522796.000000","1429428.000000","1630920.000000",,,,"10971612.000000","20998360.000000",,,,,,,,"261.000000","9576.000000",,,,,,,,,,,"4105.000000","664.000000","556.000000","694.000000","857.000000","621.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","488.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970834.000000",,,,, +"14576.000000","55.220000","14576.000000","55.220000","14576.000000","55.220000",,,,,,,,,,,,,,"358.000000","8269.500000","6616.000000","39.000000","8269.500000","8269.500000",,,,,,,,,,,"5577076.000000","7082640.000000","478760.000000","0.000000","65203628.000000","0.000000","87764192.000000",,"3623976.000000","26530856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000","7082640.000000","65203628.000000","87764192.000000","3623976.000000","26530856.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21006904.000000",,,,,,,,"536.000000","9029.000000",,,,,,,,,,,"4064.000000","664.000000","561.000000","696.000000","857.000000","681.000000","1092.000000","0.000000","0.000000","0.000000","580.000000","501.000000","576.000000","727.000000","592.000000","776.000000","160.000000","6000.000000",,"8970854.000000",,,,, +"15993.000000","57.430000","15993.000000","57.430000","15993.000000","57.430000",,,,,,,,,,,,,,"55.000000","7285.000000","5957.000000","18.000000","7285.000000","7285.000000",,,,,,,,,,,"5349748.000000","7013948.000000","478760.000000","0.000000","65190440.000000","0.000000","87764388.000000",,"3623976.000000","26546468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000","7013948.000000","65190440.000000","87764388.000000","3623976.000000","26546468.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21021764.000000",,,,,,,,"241.000000","8315.000000",,,,,,,,,,,"4227.000000","663.000000","598.000000","699.000000","857.000000","737.000000","1092.000000","0.000000","0.000000","0.000000","579.000000","540.000000","576.000000","727.000000","621.000000","776.000000","160.000000","6000.000000",,"8970874.000000",,,,, +"17219.000000","59.345000","17219.000000","59.345000","17219.000000","59.345000",,,,,,,,,,,,,,"49.000000","10588.000000","9133.000000","22.000000","10588.000000","10588.000000",,,,,,,,,,,"5790148.000000","7475324.000000","478760.000000","0.000000","65172840.000000","0.000000","87764388.000000",,"3623976.000000","26535876.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000","7475324.000000","65172840.000000","87764388.000000","3623976.000000","26535876.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21036880.000000",,,,,,,,"271.000000","11722.000000",,,,,,,,,,,"4145.000000","661.000000","649.000000","694.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","577.000000","572.000000","578.000000","726.000000","726.000000","776.000000","160.000000","6000.000000",,"8970894.000000",,,,, +"14678.000000","55.360000","14678.000000","55.360000","14678.000000","55.360000",,,,,,,,,,,,,,"6058.000000","11017.500000","3886.000000","8.000000","11017.500000","11017.500000",,,,,,,,,,,"5790148.000000","7412412.000000","478760.000000","0.000000","65164092.000000","0.000000","87764388.000000",,"3623976.000000","26462568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000","7412412.000000","65164092.000000","87764388.000000","3623976.000000","26462568.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21044936.000000",,,,,,,,"5805.000000","6284.000000",,,,,,,,,,,"4194.000000","658.000000","658.000000","681.000000","848.000000","806.000000","998.000000","0.000000","0.000000","0.000000","574.000000","580.000000","570.000000","726.000000","726.000000","765.000000","160.000000","6000.000000",,"8970914.000000",,,,, +"16621.000000","58.405000","16621.000000","58.405000","16621.000000","58.405000",,,,,,,,,,,,,,"4001.000000","15921.500000","10755.000000","20.000000","15921.500000","15921.500000",,,,,,,,,,,"5828872.000000","7298412.000000","478760.000000","0.000000","65169132.000000","0.000000","87764388.000000",,"3623976.000000","26384032.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000","7298412.000000","65169132.000000","87764388.000000","3623976.000000","26384032.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21038344.000000",,,,,,,,"3877.000000","13209.000000",,,,,,,,,,,"4032.000000","657.000000","664.000000","656.000000","848.000000","806.000000","910.000000","0.000000","0.000000","0.000000","573.000000","584.000000","558.000000","726.000000","726.000000","762.000000","160.000000","6000.000000",,"8970934.000000",,,,, +"14528.000000","55.115000","14528.000000","55.115000","14528.000000","55.115000",,,,,,,,,,,,,,"1750.000000","12482.500000","10221.000000","23.000000","12482.500000","12482.500000",,,,,,,,,,,"5535824.000000","6858564.000000","478760.000000","0.000000","65149108.000000","0.000000","87764944.000000",,"3623976.000000","26402544.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000","6858564.000000","65149108.000000","87764944.000000","3623976.000000","26402544.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21055044.000000",,,,,,,,"2738.000000","10256.000000",,,,,,,,,,,"4113.000000","654.000000","611.000000","616.000000","848.000000","727.000000","818.000000","0.000000","0.000000","0.000000","571.000000","540.000000","537.000000","726.000000","659.000000","659.000000","160.000000","6000.000000",,"8970954.000000",,,,, +"16287.000000","57.880000","16287.000000","57.880000","16287.000000","57.880000",,,,,,,,,,,,,,"4429.000000","25275.000000","18213.000000","23.000000","25275.000000","25275.000000",,,,,,,,,,,"5430364.000000","6984940.000000","478760.000000","0.000000","65166916.000000","0.000000","87764340.000000",,"3623976.000000","26388880.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000","6984940.000000","65166916.000000","87764340.000000","3623976.000000","26388880.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21034128.000000",,,,,,,,"5109.000000","22799.000000",,,,,,,,,,,"4076.000000","652.000000","654.000000","608.000000","839.000000","780.000000","780.000000","0.000000","0.000000","0.000000","568.000000","555.000000","530.000000","683.000000","659.000000","657.000000","160.000000","6000.000000",,"8970974.000000",,,,, +"15332.000000","56.390000","15332.000000","56.390000","15332.000000","56.390000",,,,,,,,,,,,,,"701.000000","12795.000000","10710.000000","24.000000","12795.000000","12795.000000",,,,,,,,,,,"5256672.000000","6958056.000000","478760.000000","0.000000","65172744.000000","0.000000","87764340.000000",,"3623976.000000","26398520.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000","6958056.000000","65172744.000000","87764340.000000","3623976.000000","26398520.000000","1429428.000000","1630920.000000",,,,"10971612.000000","21042932.000000",,,,,,,,"925.000000","13254.000000",,,,,,,,,,,"3974.000000","649.000000","648.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","564.000000","545.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8970994.000000",,,,, +"13337.000000","53.255000","13337.000000","53.255000","13337.000000","53.255000",,,,,,,,,,,,,,"6718.000000","25426.000000","17751.000000","16.000000","25426.000000","25426.000000",,,,,,,,,,,"5318156.000000","7061216.000000","478760.000000","0.000000","65152752.000000","0.000000","87757936.000000",,"3623976.000000","26452556.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000","7061216.000000","65152752.000000","87757936.000000","3623976.000000","26452556.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21051616.000000",,,,,,,,"6273.000000","20108.000000",,,,,,,,,,,"4185.000000","645.000000","625.000000","599.000000","837.000000","780.000000","737.000000","0.000000","0.000000","0.000000","561.000000","531.000000","521.000000","674.000000","657.000000","637.000000","160.000000","6000.000000",,"8971014.000000",,,,, +"13002.000000","52.720000","13002.000000","52.720000","13002.000000","52.720000",,,,,,,,,,,,,,"12831.000000","23631.500000","8879.000000","31.000000","23631.500000","23631.500000",,,,,,,,,,,"5423016.000000","6850352.000000","478760.000000","0.000000","65137676.000000","0.000000","87757936.000000",,"3623976.000000","26483464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000","6850352.000000","65137676.000000","87757936.000000","3623976.000000","26483464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21065708.000000",,,,,,,,"13889.000000","11664.000000",,,,,,,,,,,"3989.000000","642.000000","551.000000","596.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","560.000000","490.000000","521.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971034.000000",,,,, +"13260.000000","53.115000","13260.000000","53.115000","13260.000000","53.115000",,,,,,,,,,,,,,"12906.000000","27727.500000","13426.000000","19.000000","27727.500000","27727.500000",,,,,,,,,,,"5527816.000000","7206800.000000","478760.000000","0.000000","65119288.000000","0.000000","87757876.000000",,"3623976.000000","26498764.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000","7206800.000000","65119288.000000","87757876.000000","3623976.000000","26498764.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21079036.000000",,,,,,,,"13005.000000","16118.000000",,,,,,,,,,,"4107.000000","640.000000","519.000000","593.000000","837.000000","733.000000","737.000000","0.000000","0.000000","0.000000","558.000000","477.000000","520.000000","674.000000","587.000000","637.000000","160.000000","6000.000000",,"8971054.000000",,,,, +"13493.000000","53.475000","13493.000000","53.475000","13493.000000","53.475000",,,,,,,,,,,,,,"11038.000000","22479.000000","11440.000000","86.000000","22479.000000","22479.000000",,,,,,,,,,,"5360044.000000","7329212.000000","478760.000000","0.000000","65101964.000000","0.000000","87757876.000000",,"3623976.000000","26521312.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000","7329212.000000","65101964.000000","87757876.000000","3623976.000000","26521312.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21095056.000000",,,,,,,,,"12374.000000",,,,,,,,,,,"3954.000000","636.000000","508.000000","590.000000","837.000000","571.000000","737.000000","0.000000","0.000000","0.000000","554.000000","471.000000","520.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971074.000000",,,,, +"14068.000000","54.370000","14068.000000","54.370000","14068.000000","54.370000",,,,,,,,,,,,,,"100.000000","19217.500000","18033.000000","28.000000","19217.500000","19217.500000",,,,,,,,,,,"5255248.000000","7245388.000000","478760.000000","0.000000","65093328.000000","0.000000","87757936.000000",,"3623976.000000","26560116.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000","7245388.000000","65093328.000000","87757936.000000","3623976.000000","26560116.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21101204.000000",,,,,,,,"327.000000","19975.000000",,,,,,,,,,,"4032.000000","635.000000","535.000000","592.000000","837.000000","605.000000","737.000000","0.000000","0.000000","0.000000","553.000000","485.000000","522.000000","674.000000","539.000000","637.000000","160.000000","6000.000000",,"8971094.000000",,,,, +"14613.000000","55.220000","14613.000000","55.220000","14613.000000","55.220000",,,,,,,,,,,,,,"539.000000","11285.000000","9409.000000","17.000000","11285.000000","11285.000000",,,,,,,,,,,"5510324.000000","7033248.000000","478760.000000","0.000000","65085004.000000","0.000000","87757936.000000",,"3623976.000000","26594856.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000","7033248.000000","65085004.000000","87757936.000000","3623976.000000","26594856.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21112120.000000",,,,,,,,"809.000000","11813.000000",,,,,,,,,,,"4170.000000","633.000000","547.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","551.000000","496.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971114.000000",,,,, +"15480.000000","56.575000","15480.000000","56.575000","15480.000000","56.575000",,,,,,,,,,,,,,"597.000000","21656.500000","21138.000000","23.000000","21656.500000","21656.500000",,,,,,,,,,,"5678092.000000","7096160.000000","478760.000000","0.000000","65074268.000000","0.000000","87757936.000000",,"3623976.000000","26605000.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000","7096160.000000","65074268.000000","87757936.000000","3623976.000000","26605000.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21119940.000000",,,,,,,,"818.000000","20760.000000",,,,,,,,,,,"4105.000000","632.000000","573.000000","593.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","550.000000","525.000000","528.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971134.000000",,,,, +"14994.000000","55.800000","14994.000000","55.800000","14994.000000","55.800000",,,,,,,,,,,,,,"874.000000","35984.000000","35110.000000","33.000000","35984.000000","35984.000000",,,,,,,,,,,"5573144.000000","7223044.000000","478760.000000","0.000000","65054976.000000","0.000000","87757844.000000",,"3623976.000000","26657388.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000","7223044.000000","65054976.000000","87757844.000000","3623976.000000","26657388.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21133756.000000",,,,,,,,"1100.000000",,,,,,,,,,,,"4104.000000","631.000000","577.000000","595.000000","837.000000","615.000000","737.000000","0.000000","0.000000","0.000000","549.000000","536.000000","529.000000","674.000000","600.000000","637.000000","160.000000","6000.000000",,"8971154.000000",,,,, +"14603.000000","55.185000","14603.000000","55.185000","14603.000000","55.185000",,,,,,,,,,,,,,"2100.000000","21709.500000","20628.000000","44.000000","21709.500000","21709.500000",,,,,,,,,,,"5162988.000000","7274264.000000","478760.000000","0.000000","65048320.000000","0.000000","87757844.000000",,"3623976.000000","26705580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000","7274264.000000","65048320.000000","87757844.000000","3623976.000000","26705580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21139728.000000",,,,,,,,"2339.000000","18351.000000",,,,,,,,,,,"4247.000000","633.000000","585.000000","593.000000","837.000000","620.000000","733.000000","0.000000","0.000000","0.000000","551.000000","548.000000","530.000000","674.000000","592.000000","637.000000","160.000000","6000.000000",,"8971174.000000",,,,, +"17388.000000","59.540000","17388.000000","59.540000","17388.000000","59.540000",,,,,,,,,,,,,,"20396.000000","32420.500000","10753.000000","15.000000","32420.500000","32420.500000",,,,,,,,,,,"5142020.000000","7379120.000000","478760.000000","0.000000","65030248.000000","0.000000","87757844.000000",,"3623976.000000","26723340.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000","7379120.000000","65030248.000000","87757844.000000","3623976.000000","26723340.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21156368.000000",,,,,,,,"19967.000000","13724.000000",,,,,,,,,,,"4248.000000","631.000000","628.000000","589.000000","837.000000","995.000000","709.000000","0.000000","0.000000","0.000000","550.000000","563.000000","526.000000","674.000000","787.000000","628.000000","160.000000","6000.000000",,"8971194.000000",,,,, +"17613.000000","59.890000","17613.000000","59.890000","17613.000000","59.890000",,,,,,,,,,,,,,"10834.000000","26108.500000","14996.000000","42.000000","26108.500000","26108.500000",,,,,,,,,,,"4974108.000000","6896640.000000","478760.000000","0.000000","65027824.000000","0.000000","87757704.000000",,"3623976.000000","26731200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000","6896640.000000","65027824.000000","87757704.000000","3623976.000000","26731200.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21158036.000000",,,,,,,,"11059.000000","15327.000000",,,,,,,,,,,"4379.000000","634.000000","674.000000","598.000000","837.000000","995.000000","733.000000","0.000000","0.000000","0.000000","551.000000","587.000000","531.000000","683.000000","787.000000","628.000000","160.000000","6000.000000",,"8971214.000000",,,,, +"20111.000000","63.795000","20111.000000","63.795000","20111.000000","63.795000",,,,,,,,,,,,,,"10192.000000","24541.000000","13620.000000","11.000000","24541.000000","24541.000000",,,,,,,,,,,"4806292.000000","6561048.000000","478760.000000","0.000000","65011788.000000","0.000000","87757660.000000",,"3623976.000000","26745872.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000","6561048.000000","65011788.000000","87757660.000000","3623976.000000","26745872.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21172620.000000",,,,,,,,"11264.000000","14004.000000",,,,,,,,,,,"4321.000000","639.000000","739.000000","608.000000","839.000000","995.000000","780.000000","0.000000","0.000000","0.000000","555.000000","629.000000","539.000000","687.000000","787.000000","662.000000","160.000000","6000.000000",,"8971234.000000",,,,, +"15542.000000","56.635000","15542.000000","56.635000","15542.000000","56.635000",,,,,,,,,,,,,,"15852.000000","19185.000000","3382.000000","8.000000","19185.000000","19185.000000",,,,,,,,,,,"5088372.000000","6753404.000000","478760.000000","0.000000","65006264.000000","0.000000","87757844.000000",,"3623976.000000","26730732.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000","6753404.000000","65006264.000000","87757844.000000","3623976.000000","26730732.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21177984.000000",,,,,,,,"15348.000000","3787.000000",,,,,,,,,,,"4220.000000","641.000000","749.000000","617.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","555.000000","632.000000","544.000000","713.000000","770.000000","667.000000","160.000000","6000.000000",,"8971254.000000",,,,, +"17628.000000","59.890000","17628.000000","59.890000","17628.000000","59.890000",,,,,,,,,,,,,,"17248.000000","26331.000000","8457.000000","11.000000","26331.000000","26331.000000",,,,,,,,,,,"4962544.000000","6616512.000000","478760.000000","0.000000","64986884.000000","0.000000","87757844.000000",,"3623976.000000","26772816.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000","6616512.000000","64986884.000000","87757844.000000","3623976.000000","26772816.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21194500.000000",,,,,,,,"18405.000000","8551.000000",,,,,,,,,,,"4129.000000","643.000000","755.000000","618.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","556.000000","630.000000","546.000000","713.000000","770.000000","674.000000","160.000000","6000.000000",,"8971274.000000",,,,, +"17862.000000","60.270000","17862.000000","60.270000","17862.000000","60.270000",,,,,,,,,,,,,,"16570.000000","32625.500000","15950.000000","35.000000","32625.500000","32625.500000",,,,,,,,,,,"4857684.000000","6616512.000000","478760.000000","0.000000","65005972.000000","0.000000","87757844.000000",,"3623976.000000","26754284.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000","6616512.000000","65005972.000000","87757844.000000","3623976.000000","26754284.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21175244.000000",,,,,,,,"16307.000000","16423.000000",,,,,,,,,,,"4302.000000","645.000000","734.000000","625.000000","848.000000","950.000000","794.000000","0.000000","0.000000","0.000000","558.000000","614.000000","553.000000","713.000000","725.000000","680.000000","160.000000","6000.000000",,"8971294.000000",,,,, +"16952.000000","58.830000","16952.000000","58.830000","16952.000000","58.830000",,,,,,,,,,,,,,"9218.000000","22607.500000","12733.000000","15.000000","22607.500000","22607.500000",,,,,,,,,,,"4995216.000000","6391676.000000","478760.000000","0.000000","64978860.000000","0.000000","87757844.000000",,"3623976.000000","26742524.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000","6391676.000000","64978860.000000","87757844.000000","3623976.000000","26742524.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21189820.000000",,,,,,,,"10318.000000","12945.000000",,,,,,,,,,,"4314.000000","647.000000","718.000000","635.000000","848.000000","793.000000","794.000000","0.000000","0.000000","0.000000","560.000000","623.000000","563.000000","713.000000","697.000000","687.000000","160.000000","6000.000000",,"8971314.000000",,,,, +"18299.000000","60.940000","18299.000000","60.940000","18299.000000","60.940000",,,,,,,,,,,,,,"82.000000","7079.000000","6028.000000","25.000000","7079.000000","7079.000000",,,,,,,,,,,"5183916.000000","6570464.000000","478760.000000","0.000000","64971260.000000","0.000000","87757796.000000",,"3623976.000000","26736064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000","6570464.000000","64971260.000000","87757796.000000","3623976.000000","26736064.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21198096.000000",,,,,,,,"282.000000","7765.000000",,,,,,,,,,,"4252.000000","651.000000","701.000000","648.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","563.000000","631.000000","574.000000","713.000000","713.000000","697.000000","160.000000","6000.000000",,"8971334.000000",,,,, +"17053.000000","58.980000","17053.000000","58.980000","17053.000000","58.980000",,,,,,,,,,,,,,"762.000000","5353.500000","4206.000000","14.000000","5353.500000","5353.500000",,,,,,,,,,,"5519460.000000","6864064.000000","478760.000000","0.000000","64962188.000000","0.000000","87757796.000000",,"3623976.000000","26753628.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000","6864064.000000","64962188.000000","87757796.000000","3623976.000000","26753628.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21202732.000000",,,,,,,,"895.000000","4843.000000",,,,,,,,,,,"4411.000000","650.000000","675.000000","656.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","564.000000","629.000000","583.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971354.000000",,,,, +"17376.000000","59.475000","17376.000000","59.475000","17376.000000","59.475000",,,,,,,,,,,,,,"85.000000","6413.500000","6214.000000","7.000000","6413.500000","6413.500000",,,,,,,,,,,"5399480.000000","6801148.000000","478760.000000","0.000000","64943472.000000","0.000000","87757796.000000",,"3623976.000000","26770580.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000","6801148.000000","64943472.000000","87757796.000000","3623976.000000","26770580.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21218200.000000",,,,,,,,"172.000000","6355.000000",,,,,,,,,,,"4342.000000","653.000000","677.000000","669.000000","848.000000","764.000000","794.000000","0.000000","0.000000","0.000000","566.000000","636.000000","596.000000","713.000000","713.000000","706.000000","160.000000","6000.000000",,"8971374.000000",,,,, +"16612.000000","58.275000","16612.000000","58.275000","16612.000000","58.275000",,,,,,,,,,,,,,"71.000000","6436.500000","6078.000000","17.000000","6436.500000","6436.500000",,,,,,,,,,,"5273648.000000","6465600.000000","478760.000000","0.000000","64934948.000000","0.000000","87757796.000000",,"3623976.000000","26770528.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000","6465600.000000","64934948.000000","87757796.000000","3623976.000000","26770528.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21225380.000000",,,,,,,,"148.000000","6575.000000",,,,,,,,,,,"4241.000000","656.000000","677.000000","677.000000","848.000000","789.000000","794.000000","0.000000","0.000000","0.000000","568.000000","632.000000","603.000000","713.000000","706.000000","706.000000","160.000000","6000.000000",,"8971394.000000",,,,, +"17535.000000","59.710000","17535.000000","59.710000","17535.000000","59.710000",,,,,,,,,,,,,,"131.000000","6562.000000","6366.000000","15.000000","6562.000000","6562.000000",,,,,,,,,,,"5105924.000000","6276904.000000","478760.000000","0.000000","64918120.000000","0.000000","87757844.000000",,"3623976.000000","26784464.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000","6276904.000000","64918120.000000","87757844.000000","3623976.000000","26784464.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237672.000000",,,,,,,,"158.000000","6468.000000",,,,,,,,,,,"4300.000000","658.000000","696.000000","686.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","570.000000","630.000000","610.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971414.000000",,,,, +"11303.000000","49.950000","11303.000000","49.950000","11303.000000","49.950000",,,,,,,,,,,,,,"19260.000000","29763.500000","10184.000000","81.000000","29763.500000","29763.500000",,,,,,,,,,,"5531204.000000","6759244.000000","478760.000000","0.000000","64917712.000000","0.000000","87757844.000000",,"3623976.000000","26820548.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000","6759244.000000","64917712.000000","87757844.000000","3623976.000000","26820548.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21237164.000000",,,,,,,,"19472.000000","10609.000000",,,,,,,,,,,"4006.000000","655.000000","612.000000","677.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","568.000000","545.000000","600.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971434.000000",,,,, +"9802.000000","47.595000","9802.000000","47.595000","9802.000000","47.595000",,,,,,,,,,,,,,"15321.000000","22219.500000","5840.000000","5.000000","22219.500000","22219.500000",,,,,,,,,,,"5363292.000000","6591332.000000","478760.000000","0.000000","64899916.000000","0.000000","87757704.000000",,"3623976.000000","26848292.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000","6591332.000000","64899916.000000","87757704.000000","3623976.000000","26848292.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21251984.000000",,,,,,,,"15194.000000","8082.000000",,,,,,,,,,,"3744.000000","652.000000","524.000000","666.000000","848.000000","842.000000","811.000000","0.000000","0.000000","0.000000","565.000000","463.000000","589.000000","713.000000","713.000000","713.000000","160.000000","6000.000000",,"8971454.000000",,,,, +"13594.000000","53.540000","13594.000000","53.540000","13594.000000","53.540000",,,,,,,,,,,,,,"17289.000000","34131.500000","16242.000000","16.000000","34131.500000","34131.500000",,,,,,,,,,,"5426208.000000","6591336.000000","478760.000000","0.000000","64909528.000000","0.000000","87757704.000000",,"3623976.000000","26790416.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000","6591336.000000","64909528.000000","87757704.000000","3623976.000000","26790416.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21242644.000000",,,,,,,,"17579.000000","17152.000000",,,,,,,,,,,"3885.000000","654.000000","507.000000","670.000000","857.000000","970.000000","842.000000","0.000000","0.000000","0.000000","564.000000","420.000000","585.000000","713.000000","576.000000","713.000000","160.000000","6000.000000",,"8971474.000000",,,,, +"11184.000000","49.750000","11184.000000","49.750000","11184.000000","49.750000",,,,,,,,,,,,,,"7651.000000","16161.500000","8158.000000","8.000000","16161.500000","16161.500000",,,,,,,,,,,"5282828.000000","6501600.000000","478760.000000","0.000000","64893416.000000","0.000000","87757704.000000",,"3623976.000000","26805776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000","6501600.000000","64893416.000000","87757704.000000","3623976.000000","26805776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21256812.000000",,,,,,,,"8256.000000","8258.000000",,,,,,,,,,,"3766.000000","645.000000","496.000000","651.000000","842.000000","970.000000","811.000000","0.000000","0.000000","0.000000","557.000000","408.000000","569.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971494.000000",,,,, +"10649.000000","48.910000","10649.000000","48.910000","10649.000000","48.910000",,,,,,,,,,,,,,"23708.000000","48739.000000","25031.000000","14.000000","48739.000000","48739.000000",,,,,,,,,,,"5178112.000000","6480772.000000","478760.000000","0.000000","64882768.000000","0.000000","87757844.000000",,"3623976.000000","26854460.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000","6480772.000000","64882768.000000","87757844.000000","3623976.000000","26854460.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21270468.000000",,,,,,,,"23616.000000",,,,,,,,,,,,"3835.000000","638.000000","510.000000","634.000000","839.000000","970.000000","811.000000","0.000000","0.000000","0.000000","552.000000","414.000000","554.000000","713.000000","576.000000","706.000000","160.000000","6000.000000",,"8971514.000000",,,,, +"13349.000000","53.135000","13349.000000","53.135000","13349.000000","53.135000",,,,,,,,,,,,,,"19552.000000","47865.000000","28313.000000","28.000000","47865.000000","47865.000000",,,,,,,,,,,"5309792.000000","6543684.000000","478760.000000","0.000000","64875588.000000","0.000000","87757844.000000",,"3623976.000000","26864184.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000","6543684.000000","64875588.000000","87757844.000000","3623976.000000","26864184.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21276120.000000",,,,,,,,,"28811.000000",,,,,,,,,,,"3796.000000","627.000000","479.000000","618.000000","811.000000","632.000000","789.000000","0.000000","0.000000","0.000000","546.000000","407.000000","540.000000","687.000000","522.000000","697.000000","160.000000","6000.000000",,"8971534.000000",,,,, +"11005.000000","49.465000","11005.000000","49.465000","11005.000000","49.465000",,,,,,,,,,,,,,"6901.000000","22293.500000","13851.000000","26.000000","22293.500000","22293.500000",,,,,,,,,,,"5609240.000000","6723156.000000","478760.000000","0.000000","64876956.000000","0.000000","87757844.000000",,"3623976.000000","26865196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000","6723156.000000","64876956.000000","87757844.000000","3623976.000000","26865196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21281448.000000",,,,,,,,"12680.000000","11154.000000",,,,,,,,,,,"3819.000000","610.000000","480.000000","597.000000","789.000000","632.000000","781.000000","0.000000","0.000000","0.000000","535.000000","401.000000","523.000000","672.000000","522.000000","680.000000","160.000000","6000.000000",,"8971554.000000",,,,, +"12967.000000","52.580000","12967.000000","52.580000","12967.000000","52.580000",,,,,,,,,,,,,,"514.000000","28766.000000","19256.000000","130.000000","28766.000000","28766.000000",,,,,,,,,,,"5525212.000000","6723016.000000","478760.000000","0.000000","64959840.000000","0.000000","87757704.000000",,"3623976.000000","26710532.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000","6723016.000000","64959840.000000","87757704.000000","3623976.000000","26710532.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21264892.000000",,,,,,,,"13335.000000","24426.000000",,,,,,,,,,,"3921.000000","604.000000","515.000000","585.000000","780.000000","632.000000","748.000000","0.000000","0.000000","0.000000","530.000000","429.000000","514.000000","671.000000","552.000000","680.000000","160.000000","6000.000000",,"8971574.000000",,,,, +"10679.000000","49.000000","10679.000000","49.000000","10679.000000","49.000000",,,,,,,,,,,,,,"159.000000","32484.500000","30560.000000","303.000000","32484.500000","32484.500000",,,,,,,,,,,"5966044.000000","7121900.000000","478756.000000","0.000000","64977548.000000","0.000000","87757848.000000",,"3623976.000000","26680572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000","7121900.000000","64977548.000000","87757848.000000","3623976.000000","26680572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21277072.000000",,,,,,,,"2380.000000","31869.000000",,,,,,,,,,,"3815.000000","598.000000","487.000000","569.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","524.000000","405.000000","498.000000","662.000000","552.000000","672.000000","160.000000","6000.000000",,"8971594.000000",,,,, +"8712.000000","45.920000","8712.000000","45.920000","8712.000000","45.920000",,,,,,,,,,,,,,"107.000000","8184.500000","7322.000000","148.000000","8184.500000","8184.500000",,,,,,,,,,,"6019688.000000","7280404.000000","478756.000000","0.000000","64973904.000000","0.000000","87757848.000000",,"3623976.000000","26686860.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000","7280404.000000","64973904.000000","87757848.000000","3623976.000000","26686860.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21288132.000000",,,,,,,,"648.000000","8291.000000",,,,,,,,,,,"3829.000000","592.000000","447.000000","542.000000","764.000000","620.000000","733.000000","0.000000","0.000000","0.000000","519.000000","379.000000","474.000000","662.000000","552.000000","671.000000","160.000000","6000.000000",,"8971614.000000",,,,, +"8069.000000","44.915000","8069.000000","44.915000","8069.000000","44.915000",,,,,,,,,,,,,,"69.000000","6469.500000","6259.000000","137.000000","6469.500000","6469.500000",,,,,,,,,,,"6188200.000000","7239196.000000","478756.000000","0.000000","64972556.000000","0.000000","87758588.000000",,"3623976.000000","26760348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000","7239196.000000","64972556.000000","87758588.000000","3623976.000000","26760348.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21295204.000000",,,,,,,,"134.000000","6476.000000",,,,,,,,,,,"3797.000000","587.000000","361.000000","517.000000","764.000000","499.000000","694.000000","0.000000","0.000000","0.000000","516.000000","321.000000","452.000000","662.000000","403.000000","649.000000","160.000000","6000.000000",,"8971634.000000",,,,, +"9367.000000","46.955000","9367.000000","46.955000","9367.000000","46.955000",,,,,,,,,,,,,,"133.000000","3991.500000","3728.000000","46.000000","3991.500000","3991.500000",,,,,,,,,,,"6061344.000000","7154288.000000","478756.000000","0.000000","64997144.000000","0.000000","87757848.000000",,"3623976.000000","26713708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000","7154288.000000","64997144.000000","87757848.000000","3623976.000000","26713708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21286352.000000",,,,,,,,"151.000000","3970.000000",,,,,,,,,,,"3737.000000","583.000000","339.000000","502.000000","764.000000","421.000000","693.000000","0.000000","0.000000","0.000000","513.000000","309.000000","435.000000","662.000000","367.000000","646.000000","160.000000","6000.000000",,"8971654.000000",,,,, +"7508.000000","44.040000","7508.000000","44.040000","7508.000000","44.040000",,,,,,,,,,,,,,"303.000000","1322.500000","999.000000","17.000000","1322.500000","1322.500000",,,,,,,,,,,"5809684.000000","6725584.000000","478756.000000","0.000000","64980220.000000","0.000000","87757848.000000",,"3623976.000000","26728568.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000","6725584.000000","64980220.000000","87757848.000000","3623976.000000","26728568.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21297180.000000",,,,,,,,"324.000000","1018.000000",,,,,,,,,,,"3769.000000","576.000000","309.000000","469.000000","764.000000","421.000000","683.000000","0.000000","0.000000","0.000000","507.000000","288.000000","404.000000","662.000000","367.000000","576.000000","160.000000","6000.000000",,"8971674.000000",,,,, +"10016.000000","47.950000","10016.000000","47.950000","10016.000000","47.950000",,,,,,,,,,,,,,"46.000000","3684.000000","3622.000000","45.000000","3684.000000","3684.000000",,,,,,,,,,,"6275176.000000","7652448.000000","478756.000000","0.000000","64948772.000000","0.000000","87761964.000000",,"3623976.000000","26777940.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000","7652448.000000","64948772.000000","87761964.000000","3623976.000000","26777940.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21320492.000000",,,,,,,,"105.000000","3594.000000",,,,,,,,,,,"3690.000000","573.000000","336.000000","449.000000","764.000000","490.000000","624.000000","0.000000","0.000000","0.000000","504.000000","308.000000","387.000000","662.000000","442.000000","543.000000","160.000000","6000.000000",,"8971694.000000",,,,, +"10143.000000","48.135000","10143.000000","48.135000","10143.000000","48.135000",,,,,,,,,,,,,,"65.000000","4999.000000","4721.000000","29.000000","4999.000000","4999.000000",,,,,,,,,,,"6292128.000000","7711332.000000","478756.000000","0.000000","64921524.000000","0.000000","87757940.000000",,"3623976.000000","26802704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000","7711332.000000","64921524.000000","87757940.000000","3623976.000000","26802704.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21341304.000000",,,,,,,,"162.000000","5050.000000",,,,,,,,,,,"3834.000000","571.000000","344.000000","431.000000","764.000000","490.000000","550.000000","0.000000","0.000000","0.000000","503.000000","317.000000","372.000000","662.000000","442.000000","473.000000","160.000000","6000.000000",,"8971714.000000",,,,, +"8798.000000","46.025000","8798.000000","46.025000","8798.000000","46.025000",,,,,,,,,,,,,,"52.000000","4172.500000","3973.000000","26.000000","4172.500000","4172.500000",,,,,,,,,,,"6292128.000000","7962996.000000","478756.000000","0.000000","64912340.000000","0.000000","87757940.000000",,"3623976.000000","26841952.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000","7962996.000000","64912340.000000","87757940.000000","3623976.000000","26841952.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21347024.000000",,,,,,,,"122.000000","4197.000000",,,,,,,,,,,"3748.000000","564.000000","373.000000","421.000000","764.000000","490.000000","545.000000","0.000000","0.000000","0.000000","497.000000","339.000000","363.000000","662.000000","442.000000","451.000000","160.000000","6000.000000",,"8971734.000000",,,,, +"12195.000000","51.335000","12195.000000","51.335000","12195.000000","51.335000",,,,,,,,,,,,,,"341.000000","5383.000000","5044.000000","13.000000","5383.000000","5383.000000",,,,,,,,,,,"7193900.000000","8969632.000000","478756.000000","0.000000","64896984.000000","0.000000","87757940.000000",,"3623976.000000","26844128.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000","8969632.000000","64896984.000000","87757940.000000","3623976.000000","26844128.000000","1429428.000000","1630920.000000",,,,"10978156.000000","21359496.000000",,,,,,,,"423.000000","4958.000000",,,,,,,,,,,"3882.000000","562.000000","404.000000","425.000000","764.000000","750.000000","560.000000","0.000000","0.000000","0.000000","495.000000","363.000000","367.000000","662.000000","626.000000","473.000000","160.000000","6000.000000",,"8971754.000000",,,,, +"18145.000000","60.860000","18145.000000","60.860000","18145.000000","60.860000",,,,,,,,,,,,,,"56.000000","9620.000000","9369.000000","8.000000","9620.000000","9620.000000",,,,,,,,,,,"7403932.000000","9620068.000000","478756.000000","0.000000","65305996.000000","0.000000","87757972.000000",,"3623976.000000","26434160.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000","9620068.000000","65305996.000000","87757972.000000","3623976.000000","26434160.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20947696.000000",,,,,,,,"187.000000","9627.000000",,,,,,,,,,,"3919.000000","566.000000","523.000000","435.000000","765.000000","1179.000000","620.000000","0.000000","0.000000","0.000000","496.000000","428.000000","373.000000","667.000000","751.000000","522.000000","160.000000","6000.000000",,"8971774.000000",,,,, +"21634.000000","66.350000","21634.000000","66.350000","21634.000000","66.350000",,,,,,,,,,,,,,"129.000000","10191.000000","9453.000000","9.000000","10191.000000","10191.000000",,,,,,,,,,,"7652172.000000","9616648.000000","478756.000000","0.000000","65352164.000000","0.000000","87757972.000000",,"3623976.000000","26377672.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000","9616648.000000","65352164.000000","87757972.000000","3623976.000000","26377672.000000","1429428.000000","1630920.000000",,,,"10978156.000000","20952308.000000",,,,,,,,"314.000000","10485.000000",,,,,,,,,,,"4373.000000","581.000000","903.000000","502.000000","781.000000","1333.000000","1179.000000","0.000000","0.000000","0.000000","500.000000","617.000000","405.000000","674.000000","802.000000","751.000000","160.000000","6000.000000",,"8971794.000000",,,,, +"19601.000000","63.680000","19601.000000","63.680000","19601.000000","63.680000",,,,,,,,,,,,,,"449.000000","45245.000000","16714.000000","23.000000","45245.000000","45245.000000",,,,,,,,,,,"8323788.000000","10036600.000000","478756.000000","0.000000","66395552.000000","0.000000","90460164.000000",,"3761520.000000","27975252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000","10036600.000000","66395552.000000","90460164.000000","3761520.000000","27975252.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22640344.000000",,,,,,,,"54746.000000","18580.000000",,,,,,,,,,,"4202.000000","593.000000","1120.000000","547.000000","794.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","503.000000","695.000000","423.000000","680.000000","802.000000","751.000000","160.000000","6000.000000",,"8971814.000000",,,,, +"23008.000000","69.020000","23008.000000","69.020000","23008.000000","69.020000",,,,,,,,,,,,,,"92.000000","6666.500000","5294.000000","22.000000","6666.500000","6666.500000",,,,,,,,,,,"8050176.000000","9993676.000000","478756.000000","0.000000","66397860.000000","0.000000","90471840.000000",,"3754376.000000","27987776.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000","9993676.000000","66397860.000000","90471840.000000","3754376.000000","27987776.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22642696.000000",,,,,,,,"2210.000000","5737.000000",,,,,,,,,,,"4371.000000","601.000000","1196.000000","578.000000","891.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","507.000000","752.000000","442.000000","706.000000","806.000000","782.000000","160.000000","6000.000000",,"8971834.000000",,,,, +"20170.000000","64.575000","20170.000000","64.575000","20170.000000","64.575000",,,,,,,,,,,,,,"79.000000","6557.500000","6400.000000","34.000000","6557.500000","6557.500000",,,,,,,,,,,"7981676.000000","9739852.000000","478756.000000","0.000000","66392424.000000","0.000000","90472108.000000",,"3754376.000000","27997428.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000","9739852.000000","66392424.000000","90472108.000000","3754376.000000","27997428.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22649000.000000",,,,,,,,"253.000000","6383.000000",,,,,,,,,,,"4668.000000","609.000000","1043.000000","615.000000","950.000000","1341.000000","1257.000000","0.000000","0.000000","0.000000","514.000000","749.000000","474.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971854.000000",,,,, +"19393.000000","63.340000","19393.000000","63.340000","19393.000000","63.340000",,,,,,,,,,,,,,"42.000000","12075.000000","11818.000000","29.000000","12075.000000","12075.000000",,,,,,,,,,,"7981556.000000","9655848.000000","478756.000000","0.000000","66360932.000000","0.000000","90471988.000000",,"3754376.000000","28077572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000","9655848.000000","66360932.000000","90471988.000000","3754376.000000","28077572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22668732.000000",,,,,,,,"474.000000","11815.000000",,,,,,,,,,,"4319.000000","610.000000","917.000000","628.000000","950.000000","1170.000000","1257.000000","0.000000","0.000000","0.000000","516.000000","755.000000","488.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971874.000000",,,,, +"17637.000000","60.580000","17637.000000","60.580000","17637.000000","60.580000",,,,,,,,,,,,,,"70.000000","8997.000000","8619.000000","8.000000","8997.000000","8997.000000",,,,,,,,,,,"7834760.000000","9403328.000000","478756.000000","0.000000","66339184.000000","0.000000","90471988.000000",,"3754376.000000","28099768.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000","9403328.000000","66339184.000000","90471988.000000","3754376.000000","28099768.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22687152.000000",,,,,,,,"198.000000","9106.000000",,,,,,,,,,,"4308.000000","613.000000","821.000000","645.000000","950.000000","1068.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","717.000000","505.000000","713.000000","969.000000","789.000000","160.000000","6000.000000",,"8971894.000000",,,,, +"14425.000000","55.545000","14425.000000","55.545000","14425.000000","55.545000",,,,,,,,,,,,,,"60.000000","9182.000000","9122.000000","13.000000","9182.000000","9182.000000",,,,,,,,,,,"7676256.000000","9202888.000000","478756.000000","0.000000","66335416.000000","0.000000","90471988.000000",,"3753872.000000","28141152.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000","9202888.000000","66335416.000000","90471988.000000","3753872.000000","28141152.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22686748.000000",,,,,,,,"229.000000",,,,,,,,,,,,"4071.000000","614.000000","701.000000","666.000000","950.000000","809.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","617.000000","522.000000","713.000000","710.000000","789.000000","160.000000","6000.000000",,"8971914.000000",,,,, +"13205.000000","53.625000","13205.000000","53.625000","13205.000000","53.625000",,,,,,,,,,,,,,"49.000000","6798.500000","6574.000000","12.000000","6798.500000","6798.500000",,,,,,,,,,,"7550428.000000","9119000.000000","478756.000000","0.000000","66313700.000000","0.000000","90471988.000000",,"3753872.000000","28171516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000","9119000.000000","66313700.000000","90471988.000000","3753872.000000","28171516.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22702604.000000",,,,,,,,"158.000000","6815.000000",,,,,,,,,,,"3967.000000","615.000000","623.000000","680.000000","950.000000","780.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","544.000000","533.000000","713.000000","668.000000","789.000000","160.000000","6000.000000",,"8971934.000000",,,,, +"13497.000000","54.075000","13497.000000","54.075000","13497.000000","54.075000",,,,,,,,,,,,,,"62.000000","8339.500000","8095.000000","21.000000","8339.500000","8339.500000",,,,,,,,,,,"6585632.000000","8301004.000000","478756.000000","0.000000","66299188.000000","0.000000","90471884.000000",,"3753872.000000","28175572.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000","8301004.000000","66299188.000000","90471884.000000","3753872.000000","28175572.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22718972.000000",,,,,,,,"192.000000","8329.000000",,,,,,,,,,,"4055.000000","616.000000","569.000000","691.000000","950.000000","662.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","492.000000","541.000000","713.000000","551.000000","789.000000","160.000000","6000.000000",,"8971954.000000",,,,, +"12618.000000","52.695000","12618.000000","52.695000","12618.000000","52.695000",,,,,,,,,,,,,,"62.000000","8976.500000","8771.000000","5.000000","8976.500000","8976.500000",,,,,,,,,,,"6839724.000000","8539964.000000","478756.000000","0.000000","66287820.000000","0.000000","90471884.000000",,"3753872.000000","28184708.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000","8539964.000000","66287820.000000","90471884.000000","3753872.000000","28184708.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22725428.000000",,,,,,,,"194.000000","8924.000000",,,,,,,,,,,"3922.000000","616.000000","538.000000","712.000000","950.000000","613.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","465.000000","557.000000","713.000000","534.000000","789.000000","160.000000","6000.000000",,"8971974.000000",,,,, +"14653.000000","55.865000","14653.000000","55.865000","14653.000000","55.865000",,,,,,,,,,,,,,"61.000000","10934.000000","10622.000000","10.000000","10934.000000","10934.000000",,,,,,,,,,,"6986524.000000","8581912.000000","478752.000000","0.000000","66265948.000000","0.000000","90471888.000000",,"3753872.000000","28230196.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000","8581912.000000","66265948.000000","90471888.000000","3753872.000000","28230196.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22743340.000000",,,,,,,,"213.000000","10971.000000",,,,,,,,,,,"3924.000000","617.000000","566.000000","726.000000","950.000000","626.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","486.000000","568.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8971994.000000",,,,, +"14644.000000","55.850000","14644.000000","55.850000","14644.000000","55.850000",,,,,,,,,,,,,,"116.000000","9671.500000","9517.000000","5.000000","9671.500000","9671.500000",,,,,,,,,,,"6713892.000000","8226264.000000","478752.000000","0.000000","66256400.000000","0.000000","90471888.000000",,"3753872.000000","28234912.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000","8226264.000000","66256400.000000","90471888.000000","3753872.000000","28234912.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22744492.000000",,,,,,,,"214.000000","9496.000000",,,,,,,,,,,"3975.000000","618.000000","567.000000","735.000000","950.000000","685.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","485.000000","575.000000","713.000000","557.000000","789.000000","160.000000","6000.000000",,"8972014.000000",,,,, +"14249.000000","55.225000","14249.000000","55.225000","14249.000000","55.225000",,,,,,,,,,,,,,"54.000000","10680.500000","10298.000000","3.000000","10680.500000","10680.500000",,,,,,,,,,,"6444680.000000","7804408.000000","478752.000000","0.000000","66241444.000000","0.000000","90471888.000000",,"3753872.000000","28257536.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000","7804408.000000","66241444.000000","90471888.000000","3753872.000000","28257536.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22756364.000000",,,,,,,,"220.000000","10787.000000",,,,,,,,,,,"4027.000000","618.000000","604.000000","758.000000","950.000000","792.000000","1257.000000","0.000000","0.000000","0.000000","519.000000","521.000000","594.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972034.000000",,,,, +"15867.000000","57.750000","15867.000000","57.750000","15867.000000","57.750000",,,,,,,,,,,,,,"417.000000","13164.500000","11655.000000","7.000000","13164.500000","13164.500000",,,,,,,,,,,"6360796.000000","7930236.000000","478752.000000","0.000000","66221700.000000","0.000000","90471888.000000",,"3753872.000000","28145132.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000","7930236.000000","66221700.000000","90471888.000000","3753872.000000","28145132.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22771128.000000",,,,,,,,"686.000000","13570.000000",,,,,,,,,,,"4132.000000","622.000000","642.000000","774.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","520.000000","536.000000","603.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972054.000000",,,,, +"13950.000000","54.735000","13950.000000","54.735000","13950.000000","54.735000",,,,,,,,,,,,,,"51.000000","8931.000000","8585.000000","32.000000","8931.000000","8931.000000",,,,,,,,,,,"5878312.000000","7049292.000000","478752.000000","0.000000","66205932.000000","0.000000","90471748.000000",,"3753872.000000","28138180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000","7049292.000000","66205932.000000","90471748.000000","3753872.000000","28138180.000000","1429428.000000","1630920.000000",,,,"10978156.000000","22785420.000000",,,,,,,,"188.000000","9036.000000",,,,,,,,,,,"4034.000000","622.000000","650.000000","761.000000","950.000000","810.000000","1257.000000","0.000000","0.000000","0.000000","518.000000","540.000000","597.000000","713.000000","669.000000","789.000000","160.000000","6000.000000",,"8972074.000000",,,,, +"16979.000000","59.500000","16979.000000","59.500000","16979.000000","59.500000",,,,,,,,,,,,,,"47.000000","11209.000000","10939.000000","17.000000","11209.000000","11209.000000",,,,,,,,,,,"5717700.000000","6966352.000000","478752.000000","0.000000","66240804.000000","0.000000","90453616.000000",,"3753872.000000","28097964.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000","6966352.000000","66240804.000000","90453616.000000","3753872.000000","28097964.000000","1429428.000000","1630920.000000",,,,"10996288.000000","22779556.000000",,,,,,,,"238.000000","11193.000000",,,,,,,,,,,"4099.000000","622.000000","676.000000","712.000000","947.000000","810.000000","1068.000000","0.000000","0.000000","0.000000","518.000000","558.000000","582.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972094.000000",,,,, +"14851.000000","56.165000","14851.000000","56.165000","14851.000000","56.165000",,,,,,,,,,,,,,"36.000000","8421.000000","8276.000000","39.000000","8421.000000","8421.000000",,,,,,,,,,,"5597912.000000","7035184.000000","478752.000000","0.000000","66246240.000000","0.000000","90455156.000000",,"3753872.000000","28091960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000","7035184.000000","66246240.000000","90455156.000000","3753872.000000","28091960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22778920.000000",,,,,,,,"152.000000","8376.000000",,,,,,,,,,,"4005.000000","619.000000","631.000000","676.000000","947.000000","747.000000","947.000000","0.000000","6.000000","0.000000","517.000000","541.000000","572.000000","713.000000","707.000000","760.000000","160.000000","6000.000000",,"8972114.000000",,,,, +"15796.000000","57.635000","15796.000000","57.635000","15796.000000","57.635000",,,,,,,,,,,,,,"63.000000","6358.500000","5923.000000","8.000000","6358.500000","6358.500000",,,,,,,,,,,"5221280.000000","6762544.000000","478752.000000","0.000000","66226364.000000","0.000000","90456012.000000",,"3753872.000000","28177664.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000","6762544.000000","66226364.000000","90456012.000000","3753872.000000","28177664.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22793216.000000",,,,,,,,"169.000000","6562.000000",,,,,,,,,,,"4127.000000","616.000000","648.000000","651.000000","947.000000","747.000000","795.000000","0.000000","6.000000","0.000000","514.000000","561.000000","559.000000","710.000000","707.000000","706.000000","160.000000","6000.000000",,"8972134.000000",,,,, +"15349.000000","56.925000","15349.000000","56.925000","15349.000000","56.925000",,,,,,,,,,,,,,"54.000000","5258.000000","4971.000000","46.000000","5258.000000","5258.000000",,,,,,,,,,,"4952064.000000","6767424.000000","478752.000000","0.000000","66206544.000000","0.000000","90455280.000000",,"3753872.000000","28195080.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000","6767424.000000","66206544.000000","90455280.000000","3753872.000000","28195080.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22807376.000000",,,,,,,,"431.000000","5059.000000",,,,,,,,,,,"3902.000000","613.000000","624.000000","629.000000","842.000000","680.000000","780.000000","0.000000","6.000000","0.000000","512.000000","537.000000","539.000000","707.000000","591.000000","669.000000","160.000000","6000.000000",,"8972154.000000",,,,, +"17742.000000","60.670000","17742.000000","60.670000","17742.000000","60.670000",,,,,,,,,,,,,,"36.000000","9572.000000","9401.000000","10.000000","9572.000000","9572.000000",,,,,,,,,,,"5191512.000000","6857780.000000","478752.000000","0.000000","66190668.000000","0.000000","90455280.000000",,"3753872.000000","28242004.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000","6857780.000000","66190668.000000","90455280.000000","3753872.000000","28242004.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22821336.000000",,,,,,,,"222.000000","9483.000000",,,,,,,,,,,"4196.000000","613.000000","667.000000","626.000000","842.000000","752.000000","752.000000","0.000000","0.000000","0.000000","513.000000","574.000000","536.000000","707.000000","674.000000","658.000000","160.000000","6000.000000",,"8972174.000000",,,,, +"14762.000000","56.000000","14762.000000","56.000000","14762.000000","56.000000",,,,,,,,,,,,,,"59.000000","8688.000000","8430.000000","5.000000","8688.000000","8688.000000",,,,,,,,,,,"5107432.000000","6647584.000000","478752.000000","0.000000","66191936.000000","0.000000","90455084.000000",,"3753872.000000","28288960.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000","6647584.000000","66191936.000000","90455084.000000","3753872.000000","28288960.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22814988.000000",,,,,,,,"200.000000","8687.000000",,,,,,,,,,,"4020.000000","611.000000","657.000000","618.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","510.000000","560.000000","528.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972194.000000",,,,, +"12815.000000","52.945000","12815.000000","52.945000","12815.000000","52.945000",,,,,,,,,,,,,,"35.000000","6029.000000","5774.000000","23.000000","6029.000000","6029.000000",,,,,,,,,,,"5048956.000000","6509368.000000","478752.000000","0.000000","66171044.000000","0.000000","90455376.000000",,"3753872.000000","28309064.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000","6509368.000000","66171044.000000","90455376.000000","3753872.000000","28309064.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22831248.000000",,,,,,,,"128.000000","6121.000000",,,,,,,,,,,"3967.000000","608.000000","633.000000","615.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","507.000000","541.000000","524.000000","707.000000","674.000000","623.000000","160.000000","6000.000000",,"8972214.000000",,,,, +"13579.000000","54.130000","13579.000000","54.130000","13579.000000","54.130000",,,,,,,,,,,,,,"118.000000","6824.000000","6658.000000","3.000000","6824.000000","6824.000000",,,,,,,,,,,"5048956.000000","6614228.000000","478752.000000","0.000000","66149272.000000","0.000000","90455376.000000",,"3753872.000000","28271812.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000","6614228.000000","66149272.000000","90455376.000000","3753872.000000","28271812.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22846492.000000",,,,,,,,"129.000000","6742.000000",,,,,,,,,,,"4068.000000","605.000000","575.000000","616.000000","842.000000","755.000000","752.000000","0.000000","0.000000","0.000000","504.000000","495.000000","526.000000","706.000000","623.000000","623.000000","160.000000","6000.000000",,"8972234.000000",,,,, +"14379.000000","55.370000","14379.000000","55.370000","14379.000000","55.370000",,,,,,,,,,,,,,"46.000000","7641.500000","7470.000000","14.000000","7641.500000","7641.500000",,,,,,,,,,,"5030356.000000","6670748.000000","478752.000000","0.000000","66118936.000000","0.000000","90447836.000000",,"3753872.000000","28291676.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000","6670748.000000","66118936.000000","90447836.000000","3753872.000000","28291676.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22862636.000000",,,,,,,,"182.000000","7584.000000",,,,,,,,,,,"4070.000000","603.000000","567.000000","618.000000","842.000000","656.000000","752.000000","0.000000","0.000000","0.000000","501.000000","493.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972254.000000",,,,, +"12669.000000","52.685000","12669.000000","52.685000","12669.000000","52.685000",,,,,,,,,,,,,,"33.000000","6826.500000","6397.000000","5.000000","6826.500000","6826.500000",,,,,,,,,,,"5115704.000000","6986784.000000","478752.000000","0.000000","66112516.000000","0.000000","90447836.000000",,"3753872.000000","28355180.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000","6986784.000000","66112516.000000","90447836.000000","3753872.000000","28355180.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22864776.000000",,,,,,,,"163.000000","7058.000000",,,,,,,,,,,"3990.000000","599.000000","554.000000","618.000000","842.000000","651.000000","752.000000","0.000000","0.000000","0.000000","497.000000","485.000000","528.000000","706.000000","576.000000","623.000000","160.000000","6000.000000",,"8972274.000000",,,,, +"14323.000000","55.275000","14323.000000","55.275000","14323.000000","55.275000",,,,,,,,,,,,,,"59.000000","7843.000000","6803.000000","5.000000","7843.000000","7843.000000",,,,,,,,,,,"5031820.000000","6860956.000000","478752.000000","0.000000","66106996.000000","0.000000","90447836.000000",,"3753872.000000","28223888.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000","6860956.000000","66106996.000000","90447836.000000","3753872.000000","28223888.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22863592.000000",,,,,,,,"293.000000","8530.000000",,,,,,,,,,,"3985.000000","597.000000","567.000000","616.000000","842.000000","635.000000","752.000000","0.000000","0.000000","0.000000","494.000000","483.000000","526.000000","706.000000","568.000000","623.000000","160.000000","6000.000000",,"8972294.000000",,,,, +"13389.000000","53.800000","13389.000000","53.800000","13389.000000","53.800000",,,,,,,,,,,,,,"37.000000","7181.000000","6756.000000","9.000000","7181.000000","7181.000000",,,,,,,,,,,"4739164.000000","6516452.000000","478752.000000","0.000000","66086596.000000","0.000000","90447636.000000",,"3753872.000000","28242784.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000","6516452.000000","66086596.000000","90447636.000000","3753872.000000","28242784.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22878360.000000",,,,,,,,"138.000000","7430.000000",,,,,,,,,,,"3913.000000","594.000000","563.000000","617.000000","810.000000","655.000000","752.000000","0.000000","0.000000","0.000000","491.000000","483.000000","527.000000","698.000000","570.000000","623.000000","160.000000","6000.000000",,"8972314.000000",,,,, +"13211.000000","53.510000","13211.000000","53.510000","13211.000000","53.510000",,,,,,,,,,,,,,"106.000000","4929.000000","4723.000000","49.000000","4929.000000","4929.000000",,,,,,,,,,,"4361824.000000","6076196.000000","478752.000000","0.000000","66065084.000000","0.000000","90447784.000000",,"3753872.000000","28423972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000","6076196.000000","66065084.000000","90447784.000000","3753872.000000","28423972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892616.000000",,,,,,,,"178.000000","4850.000000",,,,,,,,,,,"4109.000000","595.000000","548.000000","607.000000","810.000000","655.000000","747.000000","0.000000","0.000000","0.000000","493.000000","484.000000","521.000000","698.000000","579.000000","615.000000","160.000000","6000.000000",,"8972334.000000",,,,, +"14361.000000","55.305000","14361.000000","55.305000","14361.000000","55.305000",,,,,,,,,,,,,,"324.000000","8214.500000","7803.000000","11.000000","8214.500000","8214.500000",,,,,,,,,,,"4641524.000000","6546108.000000","478752.000000","0.000000","66055168.000000","0.000000","90447784.000000",,"3753872.000000","28432112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000","6546108.000000","66055168.000000","90447784.000000","3753872.000000","28432112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22900276.000000",,,,,,,,"439.000000","7861.000000",,,,,,,,,,,"4091.000000","599.000000","553.000000","599.000000","810.000000","737.000000","737.000000","0.000000","0.000000","0.000000","496.000000","491.000000","517.000000","698.000000","611.000000","615.000000","160.000000","6000.000000",,"8972354.000000",,,,, +"18615.000000","61.985000","18615.000000","61.985000","18615.000000","61.985000",,,,,,,,,,,,,,"43.000000","14905.000000","14564.000000","22.000000","14905.000000","14905.000000",,,,,,,,,,,"5070872.000000","6815292.000000","478752.000000","0.000000","66083500.000000","0.000000","90447784.000000",,"3753872.000000","28405712.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000","6815292.000000","66083500.000000","90447784.000000","3753872.000000","28405712.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22876448.000000",,,,,,,,"227.000000","14975.000000",,,,,,,,,,,"4393.000000","608.000000","707.000000","628.000000","904.000000","1469.000000","752.000000","0.000000","0.000000","0.000000","500.000000","546.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972374.000000",,,,, +"16728.000000","59.020000","16728.000000","59.020000","16728.000000","59.020000",,,,,,,,,,,,,,"54.000000","11334.000000","10943.000000","49.000000","11334.000000","11334.000000",,,,,,,,,,,"5385444.000000","7486380.000000","478752.000000","0.000000","66063456.000000","0.000000","90447784.000000",,"3753872.000000","28343968.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000","7486380.000000","66063456.000000","90447784.000000","3753872.000000","28343968.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22892508.000000",,,,,,,,"196.000000","11474.000000",,,,,,,,,,,"4159.000000","615.000000","796.000000","631.000000","904.000000","1469.000000","755.000000","0.000000","0.000000","0.000000","505.000000","596.000000","529.000000","707.000000","786.000000","644.000000","160.000000","6000.000000",,"8972394.000000",,,,, +"17482.000000","60.200000","17482.000000","60.200000","17482.000000","60.200000",,,,,,,,,,,,,,"127.000000","18573.000000","18445.000000","58.000000","18573.000000","18573.000000",,,,,,,,,,,"5025988.000000","7173016.000000","478752.000000","0.000000","66060348.000000","0.000000","90447776.000000",,"3753872.000000","28305704.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000","7173016.000000","66060348.000000","90447776.000000","3753872.000000","28305704.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22902300.000000",,,,,,,,"1384.000000",,,,,,,,,,,,"4176.000000","621.000000","840.000000","640.000000","904.000000","1469.000000","812.000000","0.000000","0.000000","0.000000","510.000000","629.000000","535.000000","707.000000","786.000000","656.000000","160.000000","6000.000000",,"8972414.000000",,,,, +"18219.000000","61.350000","18219.000000","61.350000","18219.000000","61.350000",,,,,,,,,,,,,,"132.000000","11357.500000","10894.000000","33.000000","11357.500000","11357.500000",,,,,,,,,,,"4828348.000000","6809904.000000","478752.000000","0.000000","66050692.000000","0.000000","90447648.000000",,"3753872.000000","28316516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000","6809904.000000","66050692.000000","90447648.000000","3753872.000000","28316516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22913580.000000",,,,,,,,"257.000000","11431.000000",,,,,,,,,,,"4185.000000","628.000000","783.000000","655.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","513.000000","610.000000","539.000000","707.000000","680.000000","666.000000","160.000000","6000.000000",,"8972434.000000",,,,, +"14622.000000","55.705000","14622.000000","55.705000","14622.000000","55.705000",,,,,,,,,,,,,,"43.000000","9004.000000","8769.000000","9.000000","9004.000000","9004.000000",,,,,,,,,,,"4996128.000000","6977676.000000","478752.000000","0.000000","66039188.000000","0.000000","90447648.000000",,"3753872.000000","28326648.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000","6977676.000000","66039188.000000","90447648.000000","3753872.000000","28326648.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22920900.000000",,,,,,,,"281.000000","8913.000000",,,,,,,,,,,"4221.000000","634.000000","764.000000","659.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","518.000000","596.000000","540.000000","707.000000","680.000000","674.000000","160.000000","6000.000000",,"8972454.000000",,,,, +"17658.000000","60.455000","17658.000000","60.455000","17658.000000","60.455000",,,,,,,,,,,,,,"94.000000","13642.000000","13235.000000","24.000000","13642.000000","13642.000000",,,,,,,,,,,"5007584.000000","6894028.000000","478752.000000","0.000000","66022028.000000","0.000000","90447884.000000",,"3753872.000000","28359468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000","6894028.000000","66022028.000000","90447884.000000","3753872.000000","28359468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22932872.000000",,,,,,,,"503.000000","13451.000000",,,,,,,,,,,"4449.000000","637.000000","752.000000","657.000000","956.000000","956.000000","898.000000","0.000000","0.000000","0.000000","521.000000","595.000000","539.000000","707.000000","695.000000","677.000000","160.000000","6000.000000",,"8972474.000000",,,,, +"16511.000000","58.650000","16511.000000","58.650000","16511.000000","58.650000",,,,,,,,,,,,,,"55.000000","11579.000000","11162.000000","40.000000","11579.000000","11579.000000",,,,,,,,,,,"4954344.000000","6422504.000000","478752.000000","0.000000","66000728.000000","0.000000","90447648.000000",,"3753872.000000","28378028.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000","6422504.000000","66000728.000000","90447648.000000","3753872.000000","28378028.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22947100.000000",,,,,,,,"214.000000","11727.000000",,,,,,,,,,,"4202.000000","644.000000","723.000000","669.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","526.000000","595.000000","545.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972494.000000",,,,, +"16258.000000","58.240000","16258.000000","58.240000","16258.000000","58.240000",,,,,,,,,,,,,,"52.000000","12724.500000","12528.000000","5.000000","12724.500000","12724.500000",,,,,,,,,,,"4534968.000000","5982160.000000","478752.000000","0.000000","65984352.000000","0.000000","90447708.000000",,"3753872.000000","28440972.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000","5982160.000000","65984352.000000","90447708.000000","3753872.000000","28440972.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22958984.000000",,,,,,,,"214.000000","12654.000000",,,,,,,,,,,"4061.000000","652.000000","717.000000","676.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","533.000000","600.000000","552.000000","707.000000","695.000000","680.000000","160.000000","6000.000000",,"8972514.000000",,,,, +"17030.000000","59.445000","17030.000000","59.445000","17030.000000","59.445000",,,,,,,,,,,,,,"51.000000","15008.000000","14646.000000","17.000000","15008.000000","15008.000000",,,,,,,,,,,"4389632.000000","5931928.000000","478752.000000","0.000000","65967392.000000","0.000000","90447708.000000",,"3753872.000000","28445280.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000","5931928.000000","65967392.000000","90447708.000000","3753872.000000","28445280.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22970980.000000",,,,,,,,"259.000000","15059.000000",,,,,,,,,,,"4199.000000","662.000000","733.000000","689.000000","956.000000","887.000000","898.000000","0.000000","0.000000","0.000000","540.000000","604.000000","561.000000","707.000000","687.000000","680.000000","160.000000","6000.000000",,"8972534.000000",,,,, +"15785.000000","57.500000","15785.000000","57.500000","15785.000000","57.500000",,,,,,,,,,,,,,"34.000000","10462.000000","9310.000000","4.000000","10462.000000","10462.000000",,,,,,,,,,,"5228480.000000","7201264.000000","478752.000000","0.000000","65976820.000000","0.000000","90447692.000000",,"3753872.000000","28434552.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000","7201264.000000","65976820.000000","90447692.000000","3753872.000000","28434552.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22955988.000000",,,,,,,,"306.000000","11273.000000",,,,,,,,,,,"4283.000000","666.000000","673.000000","690.000000","956.000000","797.000000","898.000000","0.000000","0.000000","0.000000","544.000000","579.000000","563.000000","707.000000","652.000000","680.000000","160.000000","6000.000000",,"8972554.000000",,,,, +"16106.000000","57.995000","16106.000000","57.995000","16106.000000","57.995000",,,,,,,,,,,,,,"33.000000","7149.000000","6707.000000","11.000000","7149.000000","7149.000000",,,,,,,,,,,"5270428.000000","7033496.000000","478752.000000","0.000000","65957912.000000","0.000000","90447692.000000",,"3753872.000000","28529136.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000","7033496.000000","65957912.000000","90447692.000000","3753872.000000","28529136.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22969724.000000",,,,,,,,"173.000000","7384.000000",,,,,,,,,,,"4179.000000","678.000000","693.000000","704.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","553.000000","584.000000","572.000000","710.000000","720.000000","687.000000","160.000000","6000.000000",,"8972574.000000",,,,, +"17438.000000","60.070000","17438.000000","60.070000","17438.000000","60.070000",,,,,,,,,,,,,,"35.000000","9487.000000","9122.000000","13.000000","9487.000000","9487.000000",,,,,,,,,,,"5442532.000000","7430676.000000","478752.000000","0.000000","65939884.000000","0.000000","90447876.000000",,"3753872.000000","28517432.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000","7430676.000000","65939884.000000","90447876.000000","3753872.000000","28517432.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22983436.000000",,,,,,,,"190.000000","9625.000000",,,,,,,,,,,"4423.000000","685.000000","681.000000","712.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","559.000000","587.000000","581.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972594.000000",,,,, +"17112.000000","59.550000","17112.000000","59.550000","17112.000000","59.550000",,,,,,,,,,,,,,"44.000000","9235.500000","8992.000000","10.000000","9235.500000","9235.500000",,,,,,,,,,,"4929304.000000","6927360.000000","478752.000000","0.000000","65921796.000000","0.000000","90447876.000000",,"3753872.000000","28534200.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000","6927360.000000","65921796.000000","90447876.000000","3753872.000000","28534200.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22996616.000000",,,,,,,,"178.000000","9257.000000",,,,,,,,,,,"4176.000000","691.000000","721.000000","721.000000","956.000000","904.000000","904.000000","0.000000","0.000000","0.000000","563.000000","611.000000","588.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972614.000000",,,,, +"15796.000000","57.490000","15796.000000","57.490000","15796.000000","57.490000",,,,,,,,,,,,,,"52.000000","9463.500000","9557.000000","116.000000","9463.500000","9463.500000",,,,,,,,,,,"4908328.000000","6780552.000000","478752.000000","0.000000","65929732.000000","0.000000","90447876.000000",,"3753872.000000","28551012.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000","6780552.000000","65929732.000000","90447876.000000","3753872.000000","28551012.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22985164.000000",,,,,,,,"179.000000","9138.000000",,,,,,,,,,,"4155.000000","699.000000","695.000000","733.000000","956.000000","756.000000","904.000000","0.000000","0.000000","0.000000","570.000000","602.000000","596.000000","717.000000","734.000000","695.000000","160.000000","6000.000000",,"8972634.000000",,,,, +"15193.000000","56.535000","15193.000000","56.535000","15193.000000","56.535000",,,,,,,,,,,,,,"462.000000","9366.500000","8608.000000","49.000000","9366.500000","9366.500000",,,,,,,,,,,"4971240.000000","6649116.000000","478752.000000","0.000000","65912664.000000","0.000000","90447876.000000",,"3753872.000000","28436192.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000","6649116.000000","65912664.000000","90447876.000000","3753872.000000","28436192.000000","1429428.000000","1630920.000000",,,,"11002284.000000","22998404.000000",,,,,,,,"512.000000","9150.000000",,,,,,,,,,,"4027.000000","702.000000","668.000000","735.000000","956.000000","770.000000","904.000000","0.000000","0.000000","0.000000","573.000000","579.000000","599.000000","717.000000","666.000000","695.000000","160.000000","6000.000000",,"8972654.000000",,,,, +"17678.000000","60.425000","17678.000000","60.425000","17678.000000","60.425000",,,,,,,,,,,,,,"69.000000","8593.500000","8301.000000","5.000000","8593.500000","8593.500000",,,,,,,,,,,"5075768.000000","6397124.000000","478752.000000","0.000000","65895904.000000","0.000000","90447544.000000",,"3753872.000000","28451368.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000","6397124.000000","65895904.000000","90447544.000000","3753872.000000","28451368.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23010308.000000",,,,,,,,"256.000000","8559.000000",,,,,,,,,,,"4365.000000","703.000000","701.000000","720.000000","956.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","574.000000","585.000000","596.000000","717.000000","774.000000","687.000000","160.000000","6000.000000",,"8972674.000000",,,,, +"18225.000000","61.280000","18225.000000","61.280000","18225.000000","61.280000",,,,,,,,,,,,,,"47.000000","9509.500000","9255.000000","16.000000","9509.500000","9509.500000",,,,,,,,,,,"5159904.000000","6544180.000000","478752.000000","0.000000","65897940.000000","0.000000","90447796.000000",,"3753872.000000","28518020.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000","6544180.000000","65897940.000000","90447796.000000","3753872.000000","28518020.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23005836.000000",,,,,,,,"179.000000","9538.000000",,,,,,,,,,,"4120.000000","690.000000","769.000000","728.000000","898.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","570.000000","614.000000","599.000000","698.000000","774.000000","688.000000","160.000000","6000.000000",,"8972694.000000",,,,, +"15501.000000","57.005000","15501.000000","57.005000","15501.000000","57.005000",,,,,,,,,,,,,,"108.000000","6539.000000","6491.000000","3.000000","6539.000000","6539.000000",,,,,,,,,,,"5001888.000000","6433708.000000","478752.000000","0.000000","65879072.000000","0.000000","90447796.000000",,"3753872.000000","28512484.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000","6433708.000000","65879072.000000","90447796.000000","3753872.000000","28512484.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23019344.000000",,,,,,,,"141.000000","6337.000000",,,,,,,,,,,"4051.000000","678.000000","761.000000","719.000000","868.000000","1024.000000","887.000000","0.000000","0.000000","0.000000","567.000000","610.000000","595.000000","695.000000","774.000000","688.000000","160.000000","6000.000000",,"8972714.000000",,,,, +"17242.000000","59.730000","17242.000000","59.730000","17242.000000","59.730000",,,,,,,,,,,,,,"47.000000","9239.500000","8932.000000","11.000000","9239.500000","9239.500000",,,,,,,,,,,"4918004.000000","6203020.000000","478752.000000","0.000000","65880960.000000","0.000000","90447796.000000",,"3753872.000000","28511228.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000","6203020.000000","65880960.000000","90447796.000000","3753872.000000","28511228.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23016048.000000",,,,,,,,"344.000000","9155.000000",,,,,,,,,,,"4136.000000","672.000000","725.000000","709.000000","836.000000","856.000000","868.000000","0.000000","0.000000","0.000000","564.000000","600.000000","594.000000","680.000000","688.000000","688.000000","160.000000","6000.000000",,"8972734.000000",,,,, +"15715.000000","57.335000","15715.000000","57.335000","15715.000000","57.335000",,,,,,,,,,,,,,"32.000000","8178.000000","7836.000000","8.000000","8178.000000","8178.000000",,,,,,,,,,,"4897032.000000","6328848.000000","478752.000000","0.000000","65869852.000000","0.000000","90447796.000000",,"3753872.000000","28391468.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000","6328848.000000","65869852.000000","90447796.000000","3753872.000000","28391468.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23021876.000000",,,,,,,,"361.000000","8127.000000",,,,,,,,,,,"4059.000000","665.000000","670.000000","709.000000","812.000000","791.000000","856.000000","0.000000","0.000000","0.000000","558.000000","573.000000","595.000000","674.000000","635.000000","688.000000","160.000000","6000.000000",,"8972754.000000",,,,, +"18136.000000","61.135000","18136.000000","61.135000","18136.000000","61.135000",,,,,,,,,,,,,,"710.000000","9008.500000","8002.000000","13.000000","9008.500000","9008.500000",,,,,,,,,,,"4765588.000000","6412728.000000","478752.000000","0.000000","65877196.000000","0.000000","90447788.000000",,"3753872.000000","28555024.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000","6412728.000000","65877196.000000","90447788.000000","3753872.000000","28555024.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23018400.000000",,,,,,,,"855.000000","8449.000000",,,,,,,,,,,"4124.000000","666.000000","729.000000","714.000000","830.000000","848.000000","856.000000","0.000000","0.000000","0.000000","558.000000","610.000000","598.000000","672.000000","691.000000","688.000000","160.000000","6000.000000",,"8972774.000000",,,,, +"18445.000000","61.605000","18445.000000","61.605000","18445.000000","61.605000",,,,,,,,,,,,,,"42.000000","8819.000000","8777.000000","10.000000","8819.000000","8819.000000",,,,,,,,,,,"4933328.000000","6717360.000000","478752.000000","0.000000","65863516.000000","0.000000","90447756.000000",,"3753872.000000","28566300.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000","6717360.000000","65863516.000000","90447756.000000","3753872.000000","28566300.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029148.000000",,,,,,,,"282.000000",,,,,,,,,,,,"4123.000000","668.000000","765.000000","717.000000","848.000000","1001.000000","856.000000","0.000000","0.000000","0.000000","557.000000","619.000000","599.000000","674.000000","709.000000","691.000000","160.000000","6000.000000",,"8972794.000000",,,,, +"16642.000000","58.780000","16642.000000","58.780000","16642.000000","58.780000",,,,,,,,,,,,,,"35.000000","6596.000000","6028.000000","4.000000","6596.000000","6596.000000",,,,,,,,,,,"5164060.000000","7157812.000000","478752.000000","0.000000","65858796.000000","0.000000","90447804.000000",,"3753872.000000","28631296.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000","7157812.000000","65858796.000000","90447804.000000","3753872.000000","28631296.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23029084.000000",,,,,,,,"179.000000","6950.000000",,,,,,,,,,,"4350.000000","670.000000","766.000000","718.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","560.000000","638.000000","602.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972814.000000",,,,, +"16346.000000","58.310000","16346.000000","58.310000","16346.000000","58.310000",,,,,,,,,,,,,,"36.000000","7877.000000","7840.000000","5.000000","7877.000000","7877.000000",,,,,,,,,,,"5446440.000000","7482140.000000","478752.000000","0.000000","65840880.000000","0.000000","90447804.000000",,"3753872.000000","28599424.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000","7482140.000000","65840880.000000","90447804.000000","3753872.000000","28599424.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23042984.000000",,,,,,,,"235.000000",,,,,,,,,,,,"4033.000000","673.000000","732.000000","714.000000","848.000000","1001.000000","856.000000","0.000000","2.000000","0.000000","562.000000","609.000000","599.000000","677.000000","709.000000","697.000000","160.000000","6000.000000",,"8972834.000000",,,,, +"16909.000000","59.180000","16909.000000","59.180000","16909.000000","59.180000",,,,,,,,,,,,,,"55.000000","9226.500000","8649.000000","5.000000","9226.500000","9226.500000",,,,,,,,,,,"5278668.000000","7398256.000000","478752.000000","0.000000","65824056.000000","0.000000","90447804.000000",,"3753872.000000","28615900.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000","7398256.000000","65824056.000000","90447804.000000","3753872.000000","28615900.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23056548.000000",,,,,,,,"198.000000","9550.000000",,,,,,,,,,,"4111.000000","676.000000","694.000000","721.000000","851.000000","860.000000","860.000000","0.000000","2.000000","0.000000","564.000000","595.000000","602.000000","678.000000","697.000000","697.000000","160.000000","6000.000000",,"8972854.000000",,,,, +"16342.000000","58.310000","16342.000000","58.310000","16342.000000","58.310000",,,,,,,,,,,,,,"39.000000","7346.000000","6921.000000","5.000000","7346.000000","7346.000000",,,,,,,,,,,"5299512.000000","7188416.000000","478752.000000","0.000000","65845904.000000","0.000000","90447676.000000",,"3753872.000000","28638112.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000","7188416.000000","65845904.000000","90447676.000000","3753872.000000","28638112.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23030068.000000",,,,,,,,"162.000000","7569.000000",,,,,,,,,,,"4097.000000","682.000000","724.000000","725.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","568.000000","595.000000","604.000000","683.000000","768.000000","697.000000","160.000000","6000.000000",,"8972874.000000",,,,, +"17150.000000","59.565000","17150.000000","59.565000","17150.000000","59.565000",,,,,,,,,,,,,,"56.000000","8032.500000","7807.000000","5.000000","8032.500000","8032.500000",,,,,,,,,,,"5305120.000000","7062584.000000","478752.000000","0.000000","65833792.000000","0.000000","90447676.000000",,"3753872.000000","28633400.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000","7062584.000000","65833792.000000","90447676.000000","3753872.000000","28633400.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23037244.000000",,,,,,,,"164.000000","8038.000000",,,,,,,,,,,"4440.000000","685.000000","742.000000","726.000000","860.000000","916.000000","874.000000","0.000000","0.000000","0.000000","571.000000","619.000000","605.000000","687.000000","768.000000","691.000000","160.000000","6000.000000",,"8972894.000000",,,,, +"17486.000000","60.090000","17486.000000","60.090000","17486.000000","60.090000",,,,,,,,,,,,,,"56.000000","9345.000000","9129.000000","3.000000","9345.000000","9345.000000",,,,,,,,,,,"5388960.000000","7398084.000000","478752.000000","0.000000","65831196.000000","0.000000","90447632.000000",,"3753872.000000","28634752.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000","7398084.000000","65831196.000000","90447632.000000","3753872.000000","28634752.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23035164.000000",,,,,,,,"221.000000","9283.000000",,,,,,,,,,,"4097.000000","688.000000","751.000000","727.000000","868.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","617.000000","603.000000","688.000000","768.000000","697.000000","160.000000","6000.000000",,"8972914.000000",,,,, +"16600.000000","58.700000","16600.000000","58.700000","16600.000000","58.700000",,,,,,,,,,,,,,"98.000000","21054.500000","20849.000000","9.000000","21054.500000","21054.500000",,,,,,,,,,,"4996108.000000","7595360.000000","478752.000000","0.000000","65826140.000000","0.000000","90447632.000000",,"3753872.000000","28663516.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000","7595360.000000","65826140.000000","90447632.000000","3753872.000000","28663516.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23039564.000000",,,,,,,,"245.000000","20915.000000",,,,,,,,,,,"4251.000000","692.000000","745.000000","735.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","575.000000","616.000000","607.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972934.000000",,,,, +"14611.000000","55.575000","14611.000000","55.575000","14611.000000","55.575000",,,,,,,,,,,,,,"352.000000","5812.000000","5105.000000","9.000000","5812.000000","5812.000000",,,,,,,,,,,"5029968.000000","7332844.000000","478752.000000","0.000000","65805868.000000","0.000000","90447840.000000",,"3753872.000000","28673360.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000","7332844.000000","65805868.000000","90447840.000000","3753872.000000","28673360.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23055056.000000",,,,,,,,"426.000000","5739.000000",,,,,,,,,,,"4362.000000","688.000000","691.000000","731.000000","874.000000","943.000000","891.000000","0.000000","0.000000","0.000000","573.000000","565.000000","603.000000","688.000000","736.000000","697.000000","160.000000","6000.000000",,"8972955.000000",,,,, +"16890.000000","59.140000","16890.000000","59.140000","16890.000000","59.140000",,,,,,,,,,,,,,"49.000000","4328.500000","4173.000000","65.000000","4328.500000","4328.500000",,,,,,,,,,,"5365512.000000","7500616.000000","478752.000000","0.000000","65798940.000000","0.000000","90447840.000000",,"3753872.000000","28678348.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000","7500616.000000","65798940.000000","90447840.000000","3753872.000000","28678348.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23057928.000000",,,,,,,,"105.000000","4330.000000",,,,,,,,,,,"4021.000000","694.000000","732.000000","733.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","576.000000","585.000000","603.000000","689.000000","789.000000","697.000000","160.000000","6000.000000",,"8972974.000000",,,,, +"15547.000000","57.040000","15547.000000","57.040000","15547.000000","57.040000",,,,,,,,,,,,,,"36.000000","5892.000000","5707.000000","46.000000","5892.000000","5892.000000",,,,,,,,,,,"5659116.000000","7542556.000000","478752.000000","0.000000","65806068.000000","0.000000","90447840.000000",,"3753872.000000","28650632.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000","7542556.000000","65806068.000000","90447840.000000","3753872.000000","28650632.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23046856.000000",,,,,,,,"129.000000","5910.000000",,,,,,,,,,,"4117.000000","694.000000","713.000000","724.000000","876.000000","1190.000000","891.000000","0.000000","0.000000","0.000000","575.000000","565.000000","598.000000","688.000000","789.000000","697.000000","160.000000","6000.000000",,"8972994.000000",,,,, +"15283.000000","56.630000","15283.000000","56.630000","15283.000000","56.630000",,,,,,,,,,,,,,"45.000000","4952.000000","4666.000000","40.000000","4952.000000","4952.000000",,,,,,,,,,,"5990520.000000","7736912.000000","478752.000000","0.000000","65806224.000000","0.000000","90447840.000000",,"3753872.000000","28688252.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000","7736912.000000","65806224.000000","90447840.000000","3753872.000000","28688252.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23051948.000000",,,,,,,,"122.000000","5069.000000",,,,,,,,,,,"3990.000000","696.000000","753.000000","729.000000","887.000000","1190.000000","916.000000","0.000000","0.000000","0.000000","576.000000","582.000000","597.000000","689.000000","789.000000","709.000000","160.000000","6000.000000",,"8973014.000000",,,,, +"15936.000000","57.640000","15936.000000","57.640000","15936.000000","57.640000",,,,,,,,,,,,,,"90.000000","2566.000000","2463.000000","24.000000","2566.000000","2566.000000",,,,,,,,,,,"5696624.000000","7631752.000000","478752.000000","0.000000","65787688.000000","0.000000","90447540.000000",,"3753872.000000","28706060.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000","7631752.000000","65787688.000000","90447540.000000","3753872.000000","28706060.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23066916.000000",,,,,,,,"87.000000","2491.000000",,,,,,,,,,,"4084.000000","695.000000","659.000000","720.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","544.000000","592.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973034.000000",,,,, +"13998.000000","54.595000","13998.000000","54.595000","13998.000000","54.595000",,,,,,,,,,,,,,"41.000000","3205.000000","2019.000000","80.000000","3205.000000","3205.000000",,,,,,,,,,,"5487080.000000","7296384.000000","478752.000000","0.000000","65772584.000000","0.000000","90447712.000000",,"3753872.000000","28674144.000000","0.000000","1429428.000000","0.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000","7296384.000000","65772584.000000","90447712.000000","3753872.000000","28674144.000000","1429428.000000","1630920.000000",,,,"11002284.000000","23079600.000000",,,,,,,,"550.000000","3800.000000",,,,,,,,,,,"4074.000000","695.000000","635.000000","717.000000","887.000000","1061.000000","916.000000","0.000000","0.000000","0.000000","575.000000","532.000000","589.000000","689.000000","714.000000","709.000000","160.000000","6000.000000",,"8973054.000000",,,,, +"16054.000000","57.815000","16054.000000","57.815000","16054.000000","57.815000",,,,,,,,,,,,,,"1051.000000","5513.500000","4035.000000","58.000000","5513.500000","5513.500000",,,,,,,,,,,"5656312.000000","7722892.000000","478740.000000","0.000000","65771880.000000","0.000000","90447728.000000",,"3753872.000000","28727588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000","7722892.000000","65771880.000000","90447728.000000","3753872.000000","28727588.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23084920.000000",,,,,,,,"1173.000000","4767.000000",,,,,,,,,,,"4026.000000","694.000000","627.000000","709.000000","887.000000","854.000000","916.000000","0.000000","0.000000","0.000000","573.000000","542.000000","583.000000","689.000000","654.000000","709.000000","160.000000","6000.000000",,"8973074.000000",,,,, +"15845.000000","57.495000","15845.000000","57.495000","15845.000000","57.495000",,,,,,,,,,,,,,"1617.000000","5345.000000","3631.000000","68.000000","5345.000000","5345.000000",,,,,,,,,,,"5677624.000000","7429636.000000","478740.000000","0.000000","65778860.000000","0.000000","90448072.000000",,"3753872.000000","28721708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000","7429636.000000","65778860.000000","90448072.000000","3753872.000000","28721708.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23076212.000000",,,,,,,,"1715.000000","3726.000000",,,,,,,,,,,"4107.000000","694.000000","643.000000","696.000000","887.000000","854.000000","891.000000","0.000000","0.000000","0.000000","574.000000","544.000000","577.000000","689.000000","654.000000","697.000000","160.000000","6000.000000",,"8973094.000000",,,,, +"15233.000000","56.525000","15233.000000","56.525000","15233.000000","56.525000",,,,,,,,,,,,,,"45.000000","6494.000000","6225.000000","17.000000","6494.000000","6494.000000",,,,,,,,,,,"5928940.000000","7534148.000000","478736.000000","0.000000","65758964.000000","0.000000","90447728.000000",,"3753872.000000","28732644.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000","7534148.000000","65758964.000000","90447728.000000","3753872.000000","28732644.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23090000.000000",,,,,,,,"132.000000","6586.000000",,,,,,,,,,,"4362.000000","696.000000","654.000000","694.000000","887.000000","782.000000","891.000000","0.000000","0.000000","0.000000","576.000000","559.000000","573.000000","689.000000","654.000000","690.000000","160.000000","6000.000000",,"8973114.000000",,,,, +"14075.000000","54.700000","14075.000000","54.700000","14075.000000","54.700000",,,,,,,,,,,,,,"48.000000","3546.000000","3577.000000","52.000000","3546.000000","3546.000000",,,,,,,,,,,"5930408.000000","7552436.000000","478736.000000","0.000000","65735472.000000","0.000000","90447732.000000",,"3753872.000000","28714692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000","7552436.000000","65735472.000000","90447732.000000","3753872.000000","28714692.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101052.000000",,,,,,,,"94.000000","3372.000000",,,,,,,,,,,"4121.000000","696.000000","607.000000","684.000000","887.000000","757.000000","891.000000","0.000000","0.000000","0.000000","576.000000","530.000000","568.000000","689.000000","646.000000","690.000000","160.000000","6000.000000",,"8973134.000000",,,,, +"14789.000000","55.820000","14789.000000","55.820000","14789.000000","55.820000",,,,,,,,,,,,,,"72.000000","9800.000000","8690.000000","23.000000","9800.000000","9800.000000",,,,,,,,,,,"5825476.000000","7657220.000000","478736.000000","0.000000","65734344.000000","0.000000","90447660.000000",,"3753872.000000","28716284.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000","7657220.000000","65734344.000000","90447660.000000","3753872.000000","28716284.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23101768.000000",,,,,,,,"218.000000","10620.000000",,,,,,,,,,,"4237.000000","697.000000","613.000000","680.000000","887.000000","814.000000","891.000000","0.000000","0.000000","0.000000","577.000000","540.000000","566.000000","689.000000","667.000000","690.000000","160.000000","6000.000000",,"8973154.000000",,,,, +"13144.000000","53.320000","13144.000000","53.320000","13144.000000","53.320000",,,,,,,,,,,,,,"60.000000","24042.500000","20791.000000","136.000000","24042.500000","24042.500000",,,,,,,,,,,"5951304.000000","7720140.000000","478736.000000","0.000000","65893572.000000","0.000000","90447660.000000",,"3753872.000000","28591396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000","7720140.000000","65893572.000000","90447660.000000","3753872.000000","28591396.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23077616.000000",,,,,,,,"6002.000000","21231.000000",,,,,,,,,,,"4264.000000","696.000000","554.000000","660.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","577.000000","498.000000","554.000000","689.000000","667.000000","687.000000","160.000000","6000.000000",,"8973174.000000",,,,, +"12966.000000","53.115000","12966.000000","53.115000","12966.000000","53.115000",,,,,,,,,,,,,,"65.000000","35014.500000","31958.000000","206.000000","35014.500000","35014.500000",,,,,,,,,,,"5774996.000000","7212432.000000","478736.000000","0.000000","66044460.000000","0.000000","90447660.000000",,"3753872.000000","28310752.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000","7212432.000000","66044460.000000","90447660.000000","3753872.000000","28310752.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23083940.000000",,,,,,,,"5949.000000","32056.000000",,,,,,,,,,,"4015.000000","695.000000","548.000000","645.000000","887.000000","814.000000","854.000000","0.000000","0.000000","0.000000","576.000000","490.000000","542.000000","689.000000","667.000000","667.000000","160.000000","6000.000000",,"8973194.000000",,,,, +"15546.000000","57.210000","15546.000000","57.210000","15546.000000","57.210000",,,,,,,,,,,,,,"48.000000","35013.000000","31799.000000","113.000000","35013.000000","35013.000000",,,,,,,,,,,"5816944.000000","7191460.000000","478736.000000","0.000000","66152636.000000","0.000000","90447660.000000",,"3753872.000000","28223132.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000","7191460.000000","66152636.000000","90447660.000000","3753872.000000","28223132.000000","1429432.000000","1630920.000000",,,,"11002284.000000","23095812.000000",,,,,,,,"5731.000000","32446.000000",,,,,,,,,,,"4332.000000","695.000000","538.000000","637.000000","887.000000","663.000000","814.000000","0.000000","0.000000","0.000000","577.000000","488.000000","540.000000","689.000000","582.000000","654.000000","160.000000","6000.000000",,"8973214.000000",,,,, +"13412.000000","53.875000","13412.000000","53.875000","13412.000000","53.875000",,,,,,,,,,,,,,"34.000000","32461.000000","32426.000000","102.000000","32461.000000","32461.000000",,,,,,,,,,,"7169096.000000","8646884.000000","478736.000000","0.000000","66176764.000000","0.000000","90408232.000000",,"3753872.000000","28036916.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000","8646884.000000","66176764.000000","90408232.000000","3753872.000000","28036916.000000","1429432.000000","1630920.000000",,,,"11041768.000000","23108768.000000",,,,,,,,"5672.000000",,,,,,,,,,,,"4219.000000","697.000000","555.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","496.000000","530.000000","689.000000","582.000000","649.000000","160.000000","6000.000000",,"8973234.000000",,,,, +"14934.000000","56.265000","14934.000000","56.265000","14934.000000","56.265000",,,,,,,,,,,,,,"46.000000","38786.000000","31375.000000","30.000000","38786.000000","38786.000000",,,,,,,,,,,"7074448.000000","8513252.000000","478736.000000","0.000000","66167008.000000","0.000000","90362948.000000",,"3753872.000000","28018276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000","8513252.000000","66167008.000000","90362948.000000","3753872.000000","28018276.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23113636.000000",,,,,,,,"13836.000000","32314.000000",,,,,,,,,,,"4239.000000","696.000000","573.000000","622.000000","887.000000","663.000000","782.000000","0.000000","0.000000","0.000000","578.000000","522.000000","533.000000","689.000000","590.000000","649.000000","160.000000","6000.000000",,"8973254.000000",,,,, +"17815.000000","60.790000","17815.000000","60.790000","17815.000000","60.790000",,,,,,,,,,,,,,"321.000000","36929.500000","29046.000000","45.000000","36929.500000","36929.500000",,,,,,,,,,,"7074384.000000","8387360.000000","478736.000000","0.000000","66201532.000000","0.000000","90362884.000000",,"3753872.000000","27990628.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000","8387360.000000","66201532.000000","90362884.000000","3753872.000000","27990628.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23103248.000000",,,,,,,,"15207.000000","29284.000000",,,,,,,,,,,"4319.000000","686.000000","570.000000","605.000000","868.000000","663.000000","757.000000","0.000000","0.000000","0.000000","576.000000","522.000000","527.000000","687.000000","620.000000","646.000000","160.000000","6000.000000",,"8973274.000000",,,,, +"16975.000000","59.485000","16975.000000","59.485000","16975.000000","59.485000",,,,,,,,,,,,,,"36.000000","31944.000000","27573.000000","102.000000","31944.000000","31944.000000",,,,,,,,,,,"8710160.000000","10169940.000000","478736.000000","0.000000","66220808.000000","0.000000","90362884.000000",,"3753872.000000","28013292.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000","10169940.000000","66220808.000000","90362884.000000","3753872.000000","28013292.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23102728.000000",,,,,,,,"4502.000000","31777.000000",,,,,,,,,,,"4669.000000","686.000000","640.000000","608.000000","874.000000","935.000000","782.000000","0.000000","0.000000","0.000000","577.000000","594.000000","536.000000","688.000000","835.000000","649.000000","160.000000","6000.000000",,"8973294.000000",,,,, +"17195.000000","59.825000","17195.000000","59.825000","17195.000000","59.825000",,,,,,,,,,,,,,"52.000000","8784.500000","8407.000000","34.000000","8784.500000","8784.500000",,,,,,,,,,,"8449160.000000","9862240.000000","478736.000000","0.000000","66209712.000000","0.000000","90363068.000000",,"3753872.000000","28054512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000","9862240.000000","66209712.000000","90363068.000000","3753872.000000","28054512.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23115096.000000",,,,,,,,"595.000000","8513.000000",,,,,,,,,,,"4481.000000","684.000000","664.000000","604.000000","874.000000","935.000000","757.000000","0.000000","0.000000","0.000000","577.000000","615.000000","540.000000","688.000000","835.000000","646.000000","160.000000","6000.000000",,"8973314.000000",,,,, +"18531.000000","61.905000","18531.000000","61.905000","18531.000000","61.905000",,,,,,,,,,,,,,"459.000000","6856.500000","6109.000000","10.000000","6856.500000","6856.500000",,,,,,,,,,,"8449160.000000","9872152.000000","478736.000000","0.000000","66190820.000000","0.000000","90363068.000000",,"3753872.000000","28067152.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000","9872152.000000","66190820.000000","90363068.000000","3753872.000000","28067152.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23124696.000000",,,,,,,,"545.000000","6599.000000",,,,,,,,,,,"4389.000000","682.000000","720.000000","617.000000","868.000000","972.000000","782.000000","0.000000","0.000000","0.000000","578.000000","642.000000","547.000000","689.000000","835.000000","649.000000","160.000000","6000.000000",,"8973334.000000",,,,, +"18176.000000","61.345000","18176.000000","61.345000","18176.000000","61.345000",,,,,,,,,,,,,,"114.000000","4934.000000","4650.000000","8.000000","4934.000000","4934.000000",,,,,,,,,,,"8113616.000000","9515636.000000","478736.000000","0.000000","66183572.000000","0.000000","90363068.000000",,"3753872.000000","28126660.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000","9515636.000000","66183572.000000","90363068.000000","3753872.000000","28126660.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23125932.000000",,,,,,,,"514.000000","4590.000000",,,,,,,,,,,"4433.000000","683.000000","716.000000","624.000000","860.000000","972.000000","782.000000","0.000000","0.000000","0.000000","580.000000","637.000000","557.000000","691.000000","724.000000","667.000000","160.000000","6000.000000",,"8973354.000000",,,,, +"13581.000000","54.155000","13581.000000","54.155000","13581.000000","54.155000",,,,,,,,,,,,,,"175.000000","2228.500000","1874.000000","3.000000","2228.500000","2228.500000",,,,,,,,,,,"8108856.000000","9406016.000000","478736.000000","0.000000","66202488.000000","0.000000","90363068.000000",,"3753872.000000","28145632.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000","9406016.000000","66202488.000000","90363068.000000","3753872.000000","28145632.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23106708.000000",,,,,,,,"218.000000","2189.000000",,,,,,,,,,,"4315.000000","680.000000","688.000000","616.000000","860.000000","972.000000","757.000000","0.000000","0.000000","0.000000","577.000000","598.000000","551.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973374.000000",,,,, +"16798.000000","59.195000","16798.000000","59.195000","16798.000000","59.195000",,,,,,,,,,,,,,"41.000000","5921.000000","6003.000000","35.000000","5921.000000","5921.000000",,,,,,,,,,,"8381220.000000","9658560.000000","478736.000000","0.000000","66190772.000000","0.000000","90362804.000000",,"3753872.000000","28157588.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000","9658560.000000","66190772.000000","90362804.000000","3753872.000000","28157588.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116044.000000",,,,,,,,"127.000000","5669.000000",,,,,,,,,,,"4016.000000","678.000000","667.000000","622.000000","854.000000","798.000000","788.000000","0.000000","0.000000","0.000000","577.000000","579.000000","554.000000","690.000000","724.000000","667.000000","160.000000","6000.000000",,"8973394.000000",,,,, +"20990.000000","65.765000","20990.000000","65.765000","20990.000000","65.765000",,,,,,,,,,,,,,"36.000000","8922.500000","8650.000000","16.000000","8922.500000","8922.500000",,,,,,,,,,,"8276612.000000","9491328.000000","478736.000000","0.000000","66199684.000000","0.000000","90363056.000000",,"3753872.000000","28177756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000","9491328.000000","66199684.000000","90363056.000000","3753872.000000","28177756.000000","1429432.000000","1630920.000000",,,,"11087052.000000","23116608.000000",,,,,,,,"166.000000","8992.000000",,,,,,,,,,,"4233.000000","687.000000","781.000000","649.000000","860.000000","1253.000000","814.000000","0.000000","0.000000","0.000000","581.000000","612.000000","567.000000","695.000000","902.000000","711.000000","160.000000","6000.000000",,"8973414.000000",,,,, +"19347.000000","63.205000","19347.000000","63.205000","19347.000000","63.205000",,,,,,,,,,,,,,"72.000000","9185.000000","8795.000000","5.000000","9185.000000","9185.000000",,,,,,,,,,,"8206288.000000","9549412.000000","478736.000000","0.000000","66228592.000000","0.000000","90427636.000000",,"3753872.000000","28196900.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000","9549412.000000","66228592.000000","90427636.000000","3753872.000000","28196900.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23149616.000000",,,,,,,,"201.000000","9302.000000",,,,,,,,,,,"4258.000000","693.000000","935.000000","682.000000","891.000000","1281.000000","972.000000","0.000000","0.000000","0.000000","583.000000","682.000000","581.000000","709.000000","902.000000","724.000000","160.000000","6000.000000",,"8973434.000000",,,,, +"21485.000000","66.570000","21485.000000","66.570000","21485.000000","66.570000",,,,,,,,,,,,,,"37.000000","8755.500000","7743.000000","6.000000","8755.500000","8755.500000",,,,,,,,,,,"8101436.000000","9967976.000000","478736.000000","0.000000","66267148.000000","0.000000","90427636.000000",,"3753872.000000","28156520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000","9967976.000000","66267148.000000","90427636.000000","3753872.000000","28156520.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23105676.000000",,,,,,,,"238.000000","9492.000000",,,,,,,,,,,"4352.000000","703.000000","1046.000000","708.000000","916.000000","1281.000000","1124.000000","0.000000","0.000000","0.000000","587.000000","738.000000","594.000000","711.000000","902.000000","784.000000","160.000000","6000.000000",,"8973454.000000",,,,, +"17868.000000","60.905000","17868.000000","60.905000","17868.000000","60.905000",,,,,,,,,,,,,,"39.000000","10935.500000","9541.000000","10.000000","10935.500000","10935.500000",,,,,,,,,,,"8080464.000000","10219632.000000","478736.000000","0.000000","66257584.000000","0.000000","90427636.000000",,"3753872.000000","28196460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000","10219632.000000","66257584.000000","90427636.000000","3753872.000000","28196460.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23110024.000000",,,,,,,,"294.000000","11995.000000",,,,,,,,,,,"4162.000000","709.000000","1015.000000","742.000000","935.000000","1281.000000","1155.000000","0.000000","0.000000","0.000000","590.000000","715.000000","611.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973474.000000",,,,, +"14848.000000","56.160000","14848.000000","56.160000","14848.000000","56.160000",,,,,,,,,,,,,,"50.000000","9321.500000","8080.000000","11.000000","9321.500000","9321.500000",,,,,,,,,,,"8710924.000000","10613996.000000","478736.000000","0.000000","66244960.000000","0.000000","90427636.000000",,"3753872.000000","28199912.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000","10613996.000000","66244960.000000","90427636.000000","3753872.000000","28199912.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23116672.000000",,,,,,,,"274.000000","10238.000000",,,,,,,,,,,"4119.000000","707.000000","880.000000","748.000000","935.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","587.000000","660.000000","615.000000","711.000000","852.000000","784.000000","160.000000","6000.000000",,"8973494.000000",,,,, +"17721.000000","60.660000","17721.000000","60.660000","17721.000000","60.660000",,,,,,,,,,,,,,"39.000000","11777.500000","10219.000000","17.000000","11777.500000","11777.500000",,,,,,,,,,,"8857460.000000","10487336.000000","478736.000000","0.000000","66227668.000000","0.000000","90427372.000000",,"3753872.000000","28215488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000","10487336.000000","66227668.000000","90427372.000000","3753872.000000","28215488.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23128160.000000",,,,,,,,"298.000000","12997.000000",,,,,,,,,,,"4127.000000","709.000000","807.000000","762.000000","943.000000","1173.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","621.000000","620.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973514.000000",,,,, +"15358.000000","56.945000","15358.000000","56.945000","15358.000000","56.945000",,,,,,,,,,,,,,"36.000000","7929.000000","6550.000000","60.000000","7929.000000","7929.000000",,,,,,,,,,,"9046204.000000","10466368.000000","478736.000000","0.000000","66216328.000000","0.000000","90427372.000000",,"3753872.000000","28169536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000","10466368.000000","66216328.000000","90427372.000000","3753872.000000","28169536.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23133224.000000",,,,,,,,"258.000000","9013.000000",,,,,,,,,,,"3975.000000","709.000000","705.000000","771.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","573.000000","626.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973534.000000",,,,, +"15860.000000","57.720000","15860.000000","57.720000","15860.000000","57.720000",,,,,,,,,,,,,,"41.000000","11415.500000","10096.000000","11.000000","11415.500000","11415.500000",,,,,,,,,,,"7934056.000000","9548368.000000","478736.000000","0.000000","66196544.000000","0.000000","90427372.000000",,"3753872.000000","28182244.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000","9548368.000000","66196544.000000","90427372.000000","3753872.000000","28182244.000000","1429432.000000","1630920.000000",,,,"11022472.000000","23147516.000000",,,,,,,,"276.000000","12416.000000",,,,,,,,,,,"4044.000000","710.000000","725.000000","778.000000","943.000000","987.000000","1155.000000","0.000000","0.000000","0.000000","588.000000","589.000000","629.000000","711.000000","742.000000","784.000000","160.000000","6000.000000",,"8973554.000000",,,,, +"20011.000000","64.360000","20011.000000","64.360000","20011.000000","64.360000",,,,,,,,,,,,,,"395.000000","11714.000000","11318.000000","68.000000","11714.000000","11714.000000",,,,,,,,,,,"8668056.000000","10115748.000000","478736.000000","0.000000","66467460.000000","0.000000","90427372.000000",,"3753872.000000","27926784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000","10115748.000000","66467460.000000","90427372.000000","3753872.000000","27926784.000000","1429432.000000","1630920.000000",,,,"11022472.000000","22890104.000000",,,,,,,,"544.000000",,,,,,,,,,,,"4432.000000","713.000000","773.000000","803.000000","943.000000","1454.000000","1173.000000","0.000000","0.000000","0.000000","589.000000","600.000000","636.000000","711.000000","817.000000","812.000000","160.000000","6000.000000",,"8973574.000000",,,,, +"19556.000000","63.750000","19556.000000","63.750000","19556.000000","63.750000",,,,,,,,,,,,,,"148.000000","13750.500000","12543.000000","26.000000","13750.500000","13750.500000",,,,,,,,,,,"8771464.000000","10197932.000000","478736.000000","0.000000","66672260.000000","0.000000","90421136.000000",,"3753872.000000","27730564.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000","10197932.000000","66672260.000000","90421136.000000","3753872.000000","27730564.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22660780.000000",,,,,,,,"371.000000","14438.000000",,,,,,,,,,,"4259.000000","727.000000","1028.000000","849.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","591.000000","668.000000","641.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973594.000000",,,,, +"19346.000000","63.415000","19346.000000","63.415000","19346.000000","63.415000",,,,,,,,,,,,,,"42.000000","11603.000000","10380.000000","20.000000","11603.000000","11603.000000",,,,,,,,,,,"8352036.000000","9799472.000000","478736.000000","0.000000","66654820.000000","0.000000","90421136.000000",,"3753872.000000","27779876.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000","9799472.000000","66654820.000000","90421136.000000","3753872.000000","27779876.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22674640.000000",,,,,,,,"258.000000","12525.000000",,,,,,,,,,,"4178.000000","731.000000","1073.000000","860.000000","999.000000","1743.000000","1253.000000","0.000000","0.000000","0.000000","594.000000","696.000000","645.000000","724.000000","817.000000","795.000000","160.000000","6000.000000",,"8973614.000000",,,,, +"20337.000000","64.960000","20337.000000","64.960000","20337.000000","64.960000",,,,,,,,,,,,,,"117.000000","7854.500000","6572.000000","40.000000","7854.500000","7854.500000",,,,,,,,,,,"8178760.000000","9647448.000000","478736.000000","0.000000","66649380.000000","0.000000","90421092.000000",,"3753872.000000","27787696.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000","9647448.000000","66649380.000000","90421092.000000","3753872.000000","27787696.000000","1429432.000000","1630920.000000",,,,"11028852.000000","22681972.000000",,,,,,,,"263.000000","8756.000000",,,,,,,,,,,"4380.000000","739.000000","1113.000000","881.000000","1006.000000","1743.000000","1281.000000","0.000000","0.000000","0.000000","597.000000","725.000000","653.000000","736.000000","795.000000","795.000000","160.000000","6000.000000",,"8973634.000000",,,,, +"19869.000000","64.215000","19869.000000","64.215000","19869.000000","64.215000",,,,,,,,,,,,,,"37.000000","10468.500000","8944.000000","20.000000","10468.500000","10468.500000",,,,,,,,,,,"8157956.000000","9710468.000000","478736.000000","0.000000","66626104.000000","0.000000","90420148.000000",,"3753872.000000","27816068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000","9710468.000000","66626104.000000","90420148.000000","3753872.000000","27816068.000000","1429432.000000","1630920.000000",,,,"11030236.000000","22696456.000000",,,,,,,,"599.000000","11355.000000",,,,,,,,,,,"4381.000000","743.000000","915.000000","889.000000","1006.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","600.000000","709.000000","655.000000","742.000000","792.000000","795.000000","160.000000","6000.000000",,"8973654.000000",,,,, +"19594.000000","63.770000","19594.000000","63.770000","19594.000000","63.770000",,,,,,,,,,,,,,"36.000000","9981.000000","8797.000000","65.000000","9981.000000","9981.000000",,,,,,,,,,,"7924184.000000","9643936.000000","478736.000000","0.000000","66598840.000000","0.000000","90406268.000000",,"3753872.000000","27779068.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000","9643936.000000","66598840.000000","90406268.000000","3753872.000000","27779068.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22707532.000000",,,,,,,,"245.000000","10883.000000",,,,,,,,,,,"4289.000000","745.000000","935.000000","910.000000","1035.000000","1292.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","720.000000","669.000000","754.000000","792.000000","795.000000","160.000000","6000.000000",,"8973674.000000",,,,, +"18152.000000","61.510000","18152.000000","61.510000","18152.000000","61.510000",,,,,,,,,,,,,,"38.000000","8409.500000","7119.000000","59.000000","8409.500000","8409.500000",,,,,,,,,,,"7399616.000000","9327924.000000","478736.000000","0.000000","66580244.000000","0.000000","90406268.000000",,"3753872.000000","27798788.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000","9327924.000000","66580244.000000","90406268.000000","3753872.000000","27798788.000000","1429432.000000","1630920.000000",,,,"11043732.000000","22726768.000000",,,,,,,,"244.000000","9416.000000",,,,,,,,,,,"4184.000000","748.000000","891.000000","926.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","602.000000","689.000000","675.000000","754.000000","758.000000","795.000000","160.000000","6000.000000",,"8973694.000000",,,,, +"15823.000000","57.855000","15823.000000","57.855000","15823.000000","57.855000",,,,,,,,,,,,,,"41.000000","8512.000000","7007.000000","47.000000","8512.000000","8512.000000",,,,,,,,,,,"7125864.000000","8928124.000000","478736.000000","0.000000","66573612.000000","0.000000","90400660.000000",,"3753872.000000","27829844.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000","8928124.000000","66573612.000000","90400660.000000","3753872.000000","27829844.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22724564.000000",,,,,,,,"262.000000","9714.000000",,,,,,,,,,,"4078.000000","747.000000","832.000000","899.000000","1061.000000","1116.000000","1281.000000","0.000000","0.000000","0.000000","601.000000","642.000000","661.000000","754.000000","758.000000","792.000000","160.000000","6000.000000",,"8973714.000000",,,,, +"15444.000000","57.250000","15444.000000","57.250000","15444.000000","57.250000",,,,,,,,,,,,,,"45.000000","6705.000000","5485.000000","52.000000","6705.000000","6705.000000",,,,,,,,,,,"7084376.000000","8634976.000000","478736.000000","0.000000","66557184.000000","0.000000","90401116.000000",,"3753872.000000","27844976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000","8634976.000000","66557184.000000","90401116.000000","3753872.000000","27844976.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22734728.000000",,,,,,,,"210.000000","7668.000000",,,,,,,,,,,"4082.000000","747.000000","764.000000","876.000000","1061.000000","1116.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","595.000000","652.000000","754.000000","693.000000","784.000000","160.000000","6000.000000",,"8973734.000000",,,,, +"15909.000000","57.970000","15909.000000","57.970000","15909.000000","57.970000",,,,,,,,,,,,,,"41.000000","6989.500000","5938.000000","45.000000","6989.500000","6989.500000",,,,,,,,,,,"6554424.000000","8069380.000000","478736.000000","0.000000","66534020.000000","0.000000","90400596.000000",,"3753872.000000","27866756.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000","8069380.000000","66534020.000000","90400596.000000","3753872.000000","27866756.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22752080.000000",,,,,,,,"212.000000","7787.000000",,,,,,,,,,,"3977.000000","746.000000","667.000000","850.000000","1061.000000","742.000000","1173.000000","0.000000","0.000000","0.000000","600.000000","562.000000","639.000000","754.000000","635.000000","764.000000","160.000000","6000.000000",,"8973754.000000",,,,, +"17603.000000","60.615000","17603.000000","60.615000","17603.000000","60.615000",,,,,,,,,,,,,,"37.000000","8031.000000","7193.000000","40.000000","8031.000000","8031.000000",,,,,,,,,,,"6785296.000000","8384128.000000","478736.000000","0.000000","66514552.000000","0.000000","90400780.000000",,"3753872.000000","27906332.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000","8384128.000000","66514552.000000","90400780.000000","3753872.000000","27906332.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22768188.000000",,,,,,,,"224.000000","8607.000000",,,,,,,,,,,"4201.000000","746.000000","695.000000","835.000000","1061.000000","826.000000","1135.000000","0.000000","0.000000","0.000000","600.000000","586.000000","636.000000","742.000000","731.000000","764.000000","160.000000","6000.000000",,"8973774.000000",,,,, +"19648.000000","63.805000","19648.000000","63.805000","19648.000000","63.805000",,,,,,,,,,,,,,"43.000000","9555.500000","9254.000000","14.000000","9555.500000","9555.500000",,,,,,,,,,,"7036952.000000","8656760.000000","478736.000000","0.000000","66498300.000000","0.000000","90400780.000000",,"3753872.000000","27917764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000","8656760.000000","66498300.000000","90400780.000000","3753872.000000","27917764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22779412.000000",,,,,,,,"169.000000","9645.000000",,,,,,,,,,,"4113.000000","749.000000","767.000000","853.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","601.000000","638.000000","647.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973794.000000",,,,, +"17387.000000","60.270000","17387.000000","60.270000","17387.000000","60.270000",,,,,,,,,,,,,,"42.000000","9569.000000","9510.000000","85.000000","9569.000000","9569.000000",,,,,,,,,,,"7382776.000000","8887160.000000","478736.000000","0.000000","66501864.000000","0.000000","90400780.000000",,"3753872.000000","27929560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000","8887160.000000","66501864.000000","90400780.000000","3753872.000000","27929560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22771120.000000",,,,,,,,"190.000000","9396.000000",,,,,,,,,,,"4216.000000","748.000000","787.000000","846.000000","1061.000000","940.000000","1135.000000","0.000000","0.000000","0.000000","602.000000","648.000000","645.000000","754.000000","759.000000","764.000000","160.000000","6000.000000",,"8973814.000000",,,,, +"19858.000000","64.130000","19858.000000","64.130000","19858.000000","64.130000",,,,,,,,,,,,,,"100.000000","10929.500000","10646.000000","9.000000","10929.500000","10929.500000",,,,,,,,,,,"7382776.000000","8803276.000000","478736.000000","0.000000","66488180.000000","0.000000","90400780.000000",,"3753872.000000","27942036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000","8803276.000000","66488180.000000","90400780.000000","3753872.000000","27942036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22781108.000000",,,,,,,,"222.000000","10891.000000",,,,,,,,,,,"4344.000000","753.000000","861.000000","866.000000","1061.000000","996.000000","1135.000000","0.000000","0.000000","0.000000","605.000000","688.000000","658.000000","758.000000","795.000000","784.000000","160.000000","6000.000000",,"8973834.000000",,,,, +"19171.000000","63.045000","19171.000000","63.045000","19171.000000","63.045000",,,,,,,,,,,,,,"47.000000","10929.000000","9672.000000","20.000000","10929.000000","10929.000000",,,,,,,,,,,"7089868.000000","8657172.000000","478736.000000","0.000000","66461556.000000","0.000000","90401472.000000",,"3753872.000000","27922104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000","8657172.000000","66461556.000000","90401472.000000","3753872.000000","27922104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22797844.000000",,,,,,,,"292.000000","11846.000000",,,,,,,,,,,"4361.000000","758.000000","832.000000","874.000000","1061.000000","1011.000000","1135.000000","0.000000","0.000000","0.000000","609.000000","685.000000","666.000000","759.000000","824.000000","792.000000","160.000000","6000.000000",,"8973854.000000",,,,, +"18785.000000","62.430000","18785.000000","62.430000","18785.000000","62.430000",,,,,,,,,,,,,,"323.000000","14527.000000","13857.000000","28.000000","14527.000000","14527.000000",,,,,,,,,,,"6276576.000000","7938048.000000","478736.000000","0.000000","66443380.000000","0.000000","90400516.000000",,"3753872.000000","27992316.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000","7938048.000000","66443380.000000","90400516.000000","3753872.000000","27992316.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22812100.000000",,,,,,,,"521.000000","14352.000000",,,,,,,,,,,"4239.000000","758.000000","881.000000","868.000000","1035.000000","1011.000000","1116.000000","0.000000","0.000000","0.000000","610.000000","704.000000","666.000000","758.000000","824.000000","784.000000","160.000000","6000.000000",,"8973874.000000",,,,, +"19888.000000","64.150000","19888.000000","64.150000","19888.000000","64.150000",,,,,,,,,,,,,,"40.000000","12011.500000","11763.000000","8.000000","12011.500000","12011.500000",,,,,,,,,,,"6129772.000000","7822132.000000","478736.000000","0.000000","66434964.000000","0.000000","90400516.000000",,"3753872.000000","27999556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000","7822132.000000","66434964.000000","90400516.000000","3753872.000000","27999556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22817724.000000",,,,,,,,"215.000000","12005.000000",,,,,,,,,,,"4461.000000","763.000000","854.000000","832.000000","1035.000000","1011.000000","1018.000000","0.000000","0.000000","0.000000","614.000000","699.000000","665.000000","763.000000","824.000000","774.000000","160.000000","6000.000000",,"8973894.000000",,,,, +"21815.000000","67.160000","21815.000000","67.160000","21815.000000","67.160000",,,,,,,,,,,,,,"36.000000","10039.500000","9719.000000","11.000000","10039.500000","10039.500000",,,,,,,,,,,"5962008.000000","7486596.000000","478736.000000","0.000000","66413840.000000","0.000000","90400524.000000",,"3753872.000000","28019336.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000","7486596.000000","66413840.000000","90400524.000000","3753872.000000","28019336.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22836312.000000",,,,,,,,"172.000000","10151.000000",,,,,,,,,,,"4634.000000","770.000000","933.000000","846.000000","1069.000000","1123.000000","1069.000000","0.000000","0.000000","0.000000","619.000000","721.000000","672.000000","769.000000","823.000000","792.000000","160.000000","6000.000000",,"8973914.000000",,,,, +"21180.000000","66.155000","21180.000000","66.155000","21180.000000","66.155000",,,,,,,,,,,,,,"43.000000","10062.500000","9899.000000","6.000000","10062.500000","10062.500000",,,,,,,,,,,"5642296.000000","7250756.000000","478736.000000","0.000000","66395192.000000","0.000000","90400516.000000",,"3753872.000000","28001924.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000","7250756.000000","66395192.000000","90400516.000000","3753872.000000","28001924.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22852940.000000",,,,,,,,"172.000000","10011.000000",,,,,,,,,,,"4587.000000","778.000000","960.000000","837.000000","1069.000000","1123.000000","1045.000000","0.000000","0.000000","0.000000","624.000000","762.000000","673.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973934.000000",,,,, +"20150.000000","64.535000","20150.000000","64.535000","20150.000000","64.535000",,,,,,,,,,,,,,"41.000000","12700.500000","12448.000000","32.000000","12700.500000","12700.500000",,,,,,,,,,,"5873232.000000","7586552.000000","478736.000000","0.000000","66384188.000000","0.000000","90400768.000000",,"3753872.000000","28012104.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000","7586552.000000","66384188.000000","90400768.000000","3753872.000000","28012104.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22861708.000000",,,,,,,,"556.000000","12354.000000",,,,,,,,,,,"4095.000000","789.000000","1022.000000","853.000000","1084.000000","1221.000000","1045.000000","0.000000","0.000000","0.000000","629.000000","757.000000","674.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973954.000000",,,,, +"21027.000000","65.905000","21027.000000","65.905000","21027.000000","65.905000",,,,,,,,,,,,,,"127.000000","11650.000000","11007.000000","4.000000","11650.000000","11650.000000",,,,,,,,,,,"5726432.000000","7565576.000000","478736.000000","0.000000","66377820.000000","0.000000","90400768.000000",,"3753872.000000","28017196.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000","7565576.000000","66377820.000000","90400768.000000","3753872.000000","28017196.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22870756.000000",,,,,,,,"296.000000","11869.000000",,,,,,,,,,,"4228.000000","797.000000","1024.000000","864.000000","1123.000000","1221.000000","1116.000000","0.000000","0.000000","0.000000","633.000000","751.000000","678.000000","784.000000","848.000000","803.000000","160.000000","6000.000000",,"8973974.000000",,,,, +"19201.000000","63.045000","19201.000000","63.045000","19201.000000","63.045000",,,,,,,,,,,,,,"44.000000","11861.000000","11817.000000","47.000000","11861.000000","11861.000000",,,,,,,,,,,"6055828.000000","7727204.000000","478736.000000","0.000000","66373492.000000","0.000000","90400596.000000",,"3753872.000000","28021692.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000","7727204.000000","66373492.000000","90400596.000000","3753872.000000","28021692.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22872776.000000",,,,,,,,"222.000000",,,,,,,,,,,,"4343.000000","805.000000","1046.000000","868.000000","1124.000000","1221.000000","1123.000000","0.000000","0.000000","0.000000","637.000000","728.000000","681.000000","784.000000","794.000000","803.000000","160.000000","6000.000000",,"8973994.000000",,,,, +"20270.000000","64.715000","20270.000000","64.715000","20270.000000","64.715000",,,,,,,,,,,,,,"1394.000000","14765.500000","14284.000000","10.000000","14765.500000","14765.500000",,,,,,,,,,,"6139968.000000","7685520.000000","478736.000000","0.000000","66358664.000000","0.000000","90400848.000000",,"3753872.000000","28045232.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000","7685520.000000","66358664.000000","90400848.000000","3753872.000000","28045232.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22883624.000000",,,,,,,,"369.000000","13483.000000",,,,,,,,,,,"4326.000000","814.000000","1034.000000","893.000000","1124.000000","1178.000000","1123.000000","0.000000","0.000000","0.000000","640.000000","730.000000","692.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974014.000000",,,,, +"19160.000000","62.970000","19160.000000","62.970000","19160.000000","62.970000",,,,,,,,,,,,,,"12606.000000","38870.500000","24791.000000","12.000000","38870.500000","38870.500000",,,,,,,,,,,"6098024.000000","8000088.000000","478736.000000","0.000000","66354808.000000","0.000000","90400848.000000",,"3753872.000000","28075248.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000","8000088.000000","66354808.000000","90400848.000000","3753872.000000","28075248.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22896724.000000",,,,,,,,"14163.000000","26179.000000",,,,,,,,,,,"4257.000000","820.000000","956.000000","903.000000","1124.000000","1138.000000","1123.000000","0.000000","0.000000","0.000000","644.000000","701.000000","699.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974034.000000",,,,, +"18168.000000","61.415000","18168.000000","61.415000","18168.000000","61.415000",,,,,,,,,,,,,,"1158.000000","14030.000000","12237.000000","3.000000","14030.000000","14030.000000",,,,,,,,,,,"5972568.000000","7843752.000000","478736.000000","0.000000","66340876.000000","0.000000","90400800.000000",,"3753872.000000","28023964.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000","7843752.000000","66340876.000000","90400800.000000","3753872.000000","28023964.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22907296.000000",,,,,,,,"1368.000000","13295.000000",,,,,,,,,,,"4168.000000","826.000000","925.000000","920.000000","1124.000000","1075.000000","1123.000000","0.000000","0.000000","0.000000","646.000000","687.000000","706.000000","792.000000","796.000000","803.000000","160.000000","6000.000000",,"8974054.000000",,,,, +"18140.000000","61.365000","18140.000000","61.365000","18140.000000","61.365000",,,,,,,,,,,,,,"755.000000","13540.000000","11884.000000","5.000000","13540.000000","13540.000000",,,,,,,,,,,"5804796.000000","7800652.000000","478736.000000","0.000000","66337688.000000","0.000000","90400800.000000",,"3753872.000000","28027636.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000","7800652.000000","66337688.000000","90400800.000000","3753872.000000","28027636.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22908696.000000",,,,,,,,"2511.000000","11929.000000",,,,,,,,,,,"4278.000000","835.000000","865.000000","927.000000","1124.000000","1060.000000","1123.000000","0.000000","0.000000","0.000000","652.000000","668.000000","708.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974074.000000",,,,, +"18893.000000","62.545000","18893.000000","62.545000","18893.000000","62.545000",,,,,,,,,,,,,,"34.000000","44033.500000","33021.000000","74.000000","44033.500000","44033.500000",,,,,,,,,,,"5993540.000000","7653852.000000","478736.000000","0.000000","66330992.000000","0.000000","90400800.000000",,"3753872.000000","28050320.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000","7653852.000000","66330992.000000","90400800.000000","3753872.000000","28050320.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22920496.000000",,,,,,,,"20719.000000","34292.000000",,,,,,,,,,,"4087.000000","844.000000","913.000000","932.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","656.000000","675.000000","706.000000","792.000000","758.000000","803.000000","160.000000","6000.000000",,"8974094.000000",,,,, +"18231.000000","61.500000","18231.000000","61.500000","18231.000000","61.500000",,,,,,,,,,,,,,"39.000000","42689.500000","33547.000000","66.000000","42689.500000","42689.500000",,,,,,,,,,,"6491116.000000","7947268.000000","478736.000000","0.000000","66326492.000000","0.000000","90400616.000000",,"3753872.000000","28045376.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000","7947268.000000","66326492.000000","90400616.000000","3753872.000000","28045376.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22927128.000000",,,,,,,,"16475.000000","35318.000000",,,,,,,,,,,"4286.000000","848.000000","860.000000","934.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","658.000000","656.000000","707.000000","792.000000","733.000000","803.000000","160.000000","6000.000000",,"8974114.000000",,,,, +"19226.000000","63.065000","19226.000000","63.065000","19226.000000","63.065000",,,,,,,,,,,,,,"47.000000","53591.500000","49114.000000","35.000000","53591.500000","53591.500000",,,,,,,,,,,"7099456.000000","8681440.000000","478736.000000","0.000000","66328416.000000","0.000000","90400788.000000",,"3753872.000000","28022012.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000","8681440.000000","66328416.000000","90400788.000000","3753872.000000","28022012.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22926904.000000",,,,,,,,"10296.000000","47725.000000",,,,,,,,,,,"4371.000000","858.000000","904.000000","936.000000","1135.000000","1226.000000","1138.000000","0.000000","0.000000","0.000000","664.000000","679.000000","707.000000","794.000000","821.000000","805.000000","160.000000","6000.000000",,"8974134.000000",,,,, +"18973.000000","62.660000","18973.000000","62.660000","18973.000000","62.660000",,,,,,,,,,,,,,"726.000000","27290.000000","20867.000000","14.000000","27290.000000","27290.000000",,,,,,,,,,,"6826828.000000","8366868.000000","478736.000000","0.000000","66313964.000000","0.000000","90400788.000000",,"3753872.000000","27954716.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000","8366868.000000","66313964.000000","90400788.000000","3753872.000000","27954716.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22938644.000000",,,,,,,,"9430.000000","23556.000000",,,,,,,,,,,"4329.000000","863.000000","861.000000","938.000000","1135.000000","1118.000000","1138.000000","0.000000","0.000000","0.000000","667.000000","681.000000","706.000000","794.000000","821.000000","803.000000","160.000000","6000.000000",,"8974154.000000",,,,, +"21758.000000","67.020000","21758.000000","67.020000","21758.000000","67.020000",,,,,,,,,,,,,,"442.000000","38118.000000","37676.000000","55.000000","38118.000000","38118.000000",,,,,,,,,,,"6675316.000000","8110860.000000","478736.000000","0.000000","66311236.000000","0.000000","90400800.000000",,"3753872.000000","28006372.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000","8110860.000000","66311236.000000","90400800.000000","3753872.000000","28006372.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22939032.000000",,,,,,,,"9281.000000",,,,,,,,,,,,"4365.000000","874.000000","964.000000","951.000000","1138.000000","1353.000000","1152.000000","0.000000","0.000000","0.000000","671.000000","719.000000","710.000000","795.000000","861.000000","805.000000","160.000000","6000.000000",,"8974174.000000",,,,, +"21069.000000","65.935000","21069.000000","65.935000","21069.000000","65.935000",,,,,,,,,,,,,,"48.000000","20954.000000","19654.000000","14.000000","20954.000000","20954.000000",,,,,,,,,,,"6906000.000000","8173768.000000","478736.000000","0.000000","66300124.000000","0.000000","90400788.000000",,"3753872.000000","28015492.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000","8173768.000000","66300124.000000","90400788.000000","3753872.000000","28015492.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22945004.000000",,,,,,,,"296.000000","21908.000000",,,,,,,,,,,"4547.000000","884.000000","1031.000000","971.000000","1152.000000","1434.000000","1178.000000","0.000000","0.000000","0.000000","674.000000","750.000000","717.000000","795.000000","923.000000","823.000000","160.000000","6000.000000",,"8974194.000000",,,,, +"19536.000000","63.525000","19536.000000","63.525000","19536.000000","63.525000",,,,,,,,,,,,,,"95.000000","10344.500000","10132.000000","16.000000","10344.500000","10344.500000",,,,,,,,,,,"6654340.000000","8006000.000000","478736.000000","0.000000","66284512.000000","0.000000","90400788.000000",,"3753872.000000","28128024.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000","8006000.000000","66284512.000000","90400788.000000","3753872.000000","28128024.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959100.000000",,,,,,,,"179.000000","10282.000000",,,,,,,,,,,"4211.000000","894.000000","1116.000000","974.000000","1173.000000","1434.000000","1221.000000","0.000000","0.000000","0.000000","676.000000","745.000000","711.000000","795.000000","923.000000","821.000000","160.000000","6000.000000",,"8974214.000000",,,,, +"22583.000000","68.295000","22583.000000","68.295000","22583.000000","68.295000",,,,,,,,,,,,,,"93.000000","11792.500000","11442.000000","2.000000","11792.500000","11792.500000",,,,,,,,,,,"6868988.000000","8163660.000000","478736.000000","0.000000","66268764.000000","0.000000","90400584.000000",,"3753872.000000","28096188.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000","8163660.000000","66268764.000000","90400584.000000","3753872.000000","28096188.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22970784.000000",,,,,,,,"252.000000","11797.000000",,,,,,,,,,,"4399.000000","907.000000","1218.000000","1003.000000","1220.000000","1510.000000","1353.000000","0.000000","0.000000","0.000000","679.000000","763.000000","711.000000","796.000000","923.000000","821.000000","160.000000","6000.000000",,"8974234.000000",,,,, +"21071.000000","65.925000","21071.000000","65.925000","21071.000000","65.925000",,,,,,,,,,,,,,"121.000000","12970.000000","12580.000000","4.000000","12970.000000","12970.000000",,,,,,,,,,,"6952452.000000","8456844.000000","478736.000000","0.000000","66268872.000000","0.000000","90400584.000000",,"3753872.000000","28094164.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000","8456844.000000","66268872.000000","90400584.000000","3753872.000000","28094164.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22965880.000000",,,,,,,,"483.000000","12755.000000",,,,,,,,,,,"4456.000000","929.000000","1389.000000","1045.000000","1281.000000","1694.000000","1496.000000","0.000000","0.000000","0.000000","682.000000","759.000000","717.000000","812.000000","919.000000","828.000000","160.000000","6000.000000",,"8974254.000000",,,,, +"21323.000000","66.320000","21323.000000","66.320000","21323.000000","66.320000",,,,,,,,,,,,,,"36.000000","10835.000000","10555.000000","4.000000","10835.000000","10835.000000",,,,,,,,,,,"7036336.000000","8876276.000000","478736.000000","0.000000","66277172.000000","0.000000","90400584.000000",,"3753872.000000","28061908.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000","8876276.000000","66277172.000000","90400584.000000","3753872.000000","28061908.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22959036.000000",,,,,,,,"274.000000","10804.000000",,,,,,,,,,,"4292.000000","947.000000","1489.000000","1067.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","688.000000","789.000000","718.000000","817.000000","919.000000","828.000000","160.000000","6000.000000",,"8974274.000000",,,,, +"24477.000000","71.250000","24477.000000","71.250000","24477.000000","71.250000",,,,,,,,,,,,,,"43.000000","12026.500000","11522.000000","14.000000","12026.500000","12026.500000",,,,,,,,,,,"7057308.000000","8917068.000000","478736.000000","0.000000","66251640.000000","0.000000","90400584.000000",,"3753872.000000","28057168.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000","8917068.000000","66251640.000000","90400584.000000","3753872.000000","28057168.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22972548.000000",,,,,,,,"216.000000","12270.000000",,,,,,,,,,,"4807.000000","958.000000","1432.000000","1080.000000","1352.000000","1694.000000","1505.000000","0.000000","0.000000","0.000000","694.000000","813.000000","728.000000","820.000000","980.000000","861.000000","160.000000","6000.000000",,"8974294.000000",,,,, +"20439.000000","64.915000","20439.000000","64.915000","20439.000000","64.915000",,,,,,,,,,,,,,"44.000000","12644.500000","11522.000000","7.000000","12644.500000","12644.500000",,,,,,,,,,,"6832316.000000","8733596.000000","478736.000000","0.000000","66233040.000000","0.000000","90400720.000000",,"3753872.000000","28074708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000","8733596.000000","66233040.000000","90400720.000000","3753872.000000","28074708.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22987360.000000",,,,,,,,"300.000000","13423.000000",,,,,,,,,,,"4121.000000","966.000000","1335.000000","1105.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","695.000000","802.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974314.000000",,,,, +"18532.000000","61.930000","18532.000000","61.930000","18532.000000","61.930000",,,,,,,,,,,,,,"39.000000","13940.000000","13021.000000","15.000000","13940.000000","13940.000000",,,,,,,,,,,"6350720.000000","7979368.000000","478736.000000","0.000000","66229136.000000","0.000000","90401464.000000",,"3753872.000000","28056656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000","7979368.000000","66229136.000000","90401464.000000","3753872.000000","28056656.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999592.000000",,,,,,,,"630.000000","14188.000000",,,,,,,,,,,"4375.000000","961.000000","1142.000000","1104.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","694.000000","771.000000","732.000000","819.000000","980.000000","861.000000","160.000000","6000.000000",,"8974334.000000",,,,, +"19674.000000","63.710000","19674.000000","63.710000","19674.000000","63.710000",,,,,,,,,,,,,,"37.000000","14132.000000","14020.000000","7.000000","14132.000000","14132.000000",,,,,,,,,,,"6224024.000000","7800816.000000","478736.000000","0.000000","66220316.000000","0.000000","90400596.000000",,"3753872.000000","28067036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000","7800816.000000","66220316.000000","90400596.000000","3753872.000000","28067036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23006424.000000",,,,,,,,"269.000000","13937.000000",,,,,,,,,,,"4319.000000","957.000000","1026.000000","1100.000000","1353.000000","1701.000000","1510.000000","0.000000","0.000000","0.000000","692.000000","706.000000","731.000000","817.000000","795.000000","861.000000","160.000000","6000.000000",,"8974354.000000",,,,, +"19194.000000","62.955000","19194.000000","62.955000","19194.000000","62.955000",,,,,,,,,,,,,,"44.000000","13790.500000","12837.000000","3.000000","13790.500000","13790.500000",,,,,,,,,,,"5783624.000000","7350140.000000","478736.000000","0.000000","66215984.000000","0.000000","90400596.000000",,"3753872.000000","28121452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000","7350140.000000","66215984.000000","90400596.000000","3753872.000000","28121452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","22999636.000000",,,,,,,,"299.000000","14399.000000",,,,,,,,,,,"4291.000000","959.000000","906.000000","1113.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","693.000000","689.000000","736.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974374.000000",,,,, +"17271.000000","59.940000","17271.000000","59.940000","17271.000000","59.940000",,,,,,,,,,,,,,"90.000000","12372.500000","11466.000000","8.000000","12372.500000","12372.500000",,,,,,,,,,,"6244996.000000","7790544.000000","478736.000000","0.000000","66199796.000000","0.000000","90400596.000000",,"3753872.000000","28098984.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000","7790544.000000","66199796.000000","90400596.000000","3753872.000000","28098984.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23013584.000000",,,,,,,,"328.000000","12860.000000",,,,,,,,,,,"4092.000000","962.000000","900.000000","1102.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","678.000000","733.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974394.000000",,,,, +"19407.000000","63.275000","19407.000000","63.275000","19407.000000","63.275000",,,,,,,,,,,,,,"63.000000","13680.500000","13328.000000","44.000000","13680.500000","13680.500000",,,,,,,,,,,"6454756.000000","7927484.000000","478736.000000","0.000000","66186112.000000","0.000000","90400644.000000",,"3753872.000000","28114512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000","7927484.000000","66186112.000000","90400644.000000","3753872.000000","28114512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23023924.000000",,,,,,,,"234.000000","13735.000000",,,,,,,,,,,"4268.000000","964.000000","919.000000","1112.000000","1353.000000","1223.000000","1510.000000","0.000000","0.000000","0.000000","696.000000","683.000000","737.000000","817.000000","798.000000","861.000000","160.000000","6000.000000",,"8974414.000000",,,,, +"18209.000000","61.395000","18209.000000","61.395000","18209.000000","61.395000",,,,,,,,,,,,,,"2207.000000","13459.000000","12029.000000","4.000000","13459.000000","13459.000000",,,,,,,,,,,"6260032.000000","7827344.000000","478736.000000","0.000000","66182724.000000","0.000000","90400644.000000",,"3753872.000000","28116556.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000","7827344.000000","66182724.000000","90400644.000000","3753872.000000","28116556.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23021776.000000",,,,,,,,"611.000000","12071.000000",,,,,,,,,,,"4250.000000","969.000000","861.000000","1105.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","699.000000","663.000000","732.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974434.000000",,,,, +"17456.000000","60.210000","17456.000000","60.210000","17456.000000","60.210000",,,,,,,,,,,,,,"47.000000","19418.000000","19371.000000","26.000000","19418.000000","19418.000000",,,,,,,,,,,"5861576.000000","7312960.000000","478736.000000","0.000000","66163652.000000","0.000000","90400644.000000",,"3753872.000000","28155648.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000","7312960.000000","66163652.000000","90400644.000000","3753872.000000","28155648.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23034604.000000",,,,,,,,"2105.000000",,,,,,,,,,,,"4367.000000","971.000000","855.000000","1100.000000","1353.000000","1037.000000","1510.000000","0.000000","0.000000","0.000000","701.000000","665.000000","730.000000","817.000000","754.000000","861.000000","160.000000","6000.000000",,"8974454.000000",,,,, +"22443.000000","68.020000","22443.000000","68.020000","22443.000000","68.020000",,,,,,,,,,,,,,"329.000000","15043.500000","14413.000000","5.000000","15043.500000","15043.500000",,,,,,,,,,,"5693752.000000","7208052.000000","478736.000000","0.000000","66165924.000000","0.000000","90400592.000000",,"3753872.000000","28161480.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000","7208052.000000","66165924.000000","90400592.000000","3753872.000000","28161480.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23038928.000000",,,,,,,,"539.000000","14806.000000",,,,,,,,,,,"4441.000000","973.000000","914.000000","1102.000000","1353.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","703.000000","695.000000","732.000000","819.000000","873.000000","866.000000","160.000000","6000.000000",,"8974474.000000",,,,, +"19048.000000","62.695000","19048.000000","62.695000","19048.000000","62.695000",,,,,,,,,,,,,,"103.000000","12770.000000","12457.000000","6.000000","12770.000000","12770.000000",,,,,,,,,,,"5589020.000000","7438856.000000","478736.000000","0.000000","66149564.000000","0.000000","90400712.000000",,"3753872.000000","28134092.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000","7438856.000000","66149564.000000","90400712.000000","3753872.000000","28134092.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23051420.000000",,,,,,,,"207.000000","12771.000000",,,,,,,,,,,"4291.000000","966.000000","982.000000","1095.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","714.000000","725.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974494.000000",,,,, +"18933.000000","62.510000","18933.000000","62.510000","18933.000000","62.510000",,,,,,,,,,,,,,"52.000000","11522.500000","11427.000000","3.000000","11522.500000","11522.500000",,,,,,,,,,,"5924564.000000","7711488.000000","478736.000000","0.000000","66141936.000000","0.000000","90400712.000000",,"3753872.000000","28109444.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000","7711488.000000","66141936.000000","90400712.000000","3753872.000000","28109444.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057472.000000",,,,,,,,"203.000000","11363.000000",,,,,,,,,,,"4357.000000","966.000000","1001.000000","1077.000000","1330.000000","1373.000000","1510.000000","0.000000","0.000000","0.000000","702.000000","719.000000","724.000000","819.000000","873.000000","828.000000","160.000000","6000.000000",,"8974514.000000",,,,, +"20299.000000","64.650000","20299.000000","64.650000","20299.000000","64.650000",,,,,,,,,,,,,,"43.000000","14504.000000","14141.000000","7.000000","14504.000000","14504.000000",,,,,,,,,,,"6323020.000000","8068004.000000","478736.000000","0.000000","66139132.000000","0.000000","90400760.000000",,"3753872.000000","28111000.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000","8068004.000000","66139132.000000","90400760.000000","3753872.000000","28111000.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23056696.000000",,,,,,,,"228.000000","14595.000000",,,,,,,,,,,"4392.000000","961.000000","932.000000","1044.000000","1330.000000","1274.000000","1496.000000","0.000000","0.000000","0.000000","701.000000","701.000000","720.000000","819.000000","797.000000","828.000000","160.000000","6000.000000",,"8974534.000000",,,,, +"22465.000000","68.040000","22465.000000","68.040000","22465.000000","68.040000",,,,,,,,,,,,,,"42.000000","15298.500000","14752.000000","8.000000","15298.500000","15298.500000",,,,,,,,,,,"6406900.000000","7984124.000000","478736.000000","0.000000","66135552.000000","0.000000","90400760.000000",,"3753872.000000","28264520.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000","7984124.000000","66135552.000000","90400760.000000","3753872.000000","28264520.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23057404.000000",,,,,,,,"634.000000","15168.000000",,,,,,,,,,,"4372.000000","969.000000","958.000000","1009.000000","1330.000000","1129.000000","1330.000000","0.000000","0.000000","0.000000","704.000000","738.000000","721.000000","821.000000","833.000000","828.000000","160.000000","6000.000000",,"8974554.000000",,,,, +"18826.000000","62.335000","18826.000000","62.335000","18826.000000","62.335000",,,,,,,,,,,,,,"36.000000","12201.500000","12084.000000","6.000000","12201.500000","12201.500000",,,,,,,,,,,"6454400.000000","8052592.000000","478736.000000","0.000000","66118764.000000","0.000000","90400760.000000",,"3753872.000000","28290404.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000","8052592.000000","66118764.000000","90400760.000000","3753872.000000","28290404.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23072936.000000",,,,,,,,"215.000000","12067.000000",,,,,,,,,,,"4193.000000","968.000000","960.000000","972.000000","1330.000000","1129.000000","1274.000000","0.000000","0.000000","0.000000","704.000000","743.000000","715.000000","821.000000","833.000000","823.000000","160.000000","6000.000000",,"8974574.000000",,,,, +"20902.000000","65.575000","20902.000000","65.575000","20902.000000","65.575000",,,,,,,,,,,,,,"52.000000","12493.500000","12005.000000","36.000000","12493.500000","12493.500000",,,,,,,,,,,"6328460.000000","7926648.000000","478736.000000","0.000000","66103288.000000","0.000000","90400648.000000",,"3753872.000000","28303364.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000","7926648.000000","66103288.000000","90400648.000000","3753872.000000","28303364.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23083888.000000",,,,,,,,"219.000000","12709.000000",,,,,,,,,,,"4300.000000","969.000000","999.000000","958.000000","1330.000000","1154.000000","1235.000000","0.000000","0.000000","0.000000","705.000000","753.000000","708.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974594.000000",,,,, +"19178.000000","62.875000","19178.000000","62.875000","19178.000000","62.875000",,,,,,,,,,,,,,"40.000000","12376.000000","12156.000000","8.000000","12376.000000","12376.000000",,,,,,,,,,,"5972092.000000","7958820.000000","478736.000000","0.000000","66099072.000000","0.000000","90400788.000000",,"3753872.000000","28314460.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000","7958820.000000","66099072.000000","90400788.000000","3753872.000000","28314460.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090304.000000",,,,,,,,"233.000000","12322.000000",,,,,,,,,,,"4369.000000","977.000000","950.000000","931.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","709.000000","707.000000","702.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974614.000000",,,,, +"16589.000000","58.825000","16589.000000","58.825000","16589.000000","58.825000",,,,,,,,,,,,,,"52.000000","12705.500000","12285.000000","2.000000","12705.500000","12705.500000",,,,,,,,,,,"5569372.000000","7566380.000000","478732.000000","0.000000","66114772.000000","0.000000","90401256.000000",,"3753872.000000","28329764.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000","7566380.000000","66114772.000000","90401256.000000","3753872.000000","28329764.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23071556.000000",,,,,,,,"242.000000","12831.000000",,,,,,,,,,,"4177.000000","977.000000","904.000000","924.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","710.000000","681.000000","697.000000","823.000000","845.000000","813.000000","160.000000","6000.000000",,"8974634.000000",,,,, +"20327.000000","64.675000","20327.000000","64.675000","20327.000000","64.675000",,,,,,,,,,,,,,"41.000000","13142.500000","12219.000000","28.000000","13142.500000","13142.500000",,,,,,,,,,,"5652792.000000","7691744.000000","478732.000000","0.000000","66105824.000000","0.000000","90400792.000000",,"3753872.000000","28338252.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000","7691744.000000","66105824.000000","90400792.000000","3753872.000000","28338252.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23077872.000000",,,,,,,,"299.000000","13726.000000",,,,,,,,,,,"4398.000000","983.000000","889.000000","930.000000","1330.000000","1264.000000","1223.000000","0.000000","0.000000","0.000000","712.000000","667.000000","700.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974654.000000",,,,, +"18482.000000","61.780000","18482.000000","61.780000","18482.000000","61.780000",,,,,,,,,,,,,,"48.000000","11704.500000","11120.000000","3.000000","11704.500000","11704.500000",,,,,,,,,,,"5338208.000000","7596784.000000","478732.000000","0.000000","66088376.000000","0.000000","90400784.000000",,"3753872.000000","28357712.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000","7596784.000000","66088376.000000","90400784.000000","3753872.000000","28357712.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23090076.000000",,,,,,,,"229.000000","12012.000000",,,,,,,,,,,"4296.000000","989.000000","886.000000","927.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","670.000000","698.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974674.000000",,,,, +"16048.000000","57.955000","16048.000000","57.955000","16048.000000","57.955000",,,,,,,,,,,,,,"40.000000","10826.000000","10635.000000","11.000000","10826.000000","10826.000000",,,,,,,,,,,"5426816.000000","7622476.000000","478732.000000","0.000000","66072740.000000","0.000000","90400784.000000",,"3753872.000000","28324028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000","7622476.000000","66072740.000000","90400784.000000","3753872.000000","28324028.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23102768.000000",,,,,,,,"195.000000","10781.000000",,,,,,,,,,,"4103.000000","985.000000","887.000000","921.000000","1330.000000","1180.000000","1180.000000","0.000000","0.000000","0.000000","711.000000","667.000000","695.000000","823.000000","761.000000","813.000000","160.000000","6000.000000",,"8974694.000000",,,,, +"20692.000000","65.225000","20692.000000","65.225000","20692.000000","65.225000",,,,,,,,,,,,,,"47.000000","11596.500000","11291.000000","4.000000","11596.500000","11596.500000",,,,,,,,,,,"5258892.000000","7580384.000000","478732.000000","0.000000","66061664.000000","0.000000","90400632.000000",,"3753872.000000","28387452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000","7580384.000000","66061664.000000","90400632.000000","3753872.000000","28387452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23108264.000000",,,,,,,,"222.000000","11631.000000",,,,,,,,,,,"4323.000000","991.000000","895.000000","926.000000","1330.000000","1150.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","679.000000","699.000000","823.000000","880.000000","823.000000","160.000000","6000.000000",,"8974714.000000",,,,, +"20784.000000","65.370000","20784.000000","65.370000","20784.000000","65.370000",,,,,,,,,,,,,,"106.000000","12928.500000","12807.000000","10.000000","12928.500000","12928.500000",,,,,,,,,,,"4839464.000000","7077072.000000","478732.000000","0.000000","66063360.000000","0.000000","90400632.000000",,"3753872.000000","28361852.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000","7077072.000000","66063360.000000","90400632.000000","3753872.000000","28361852.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23100752.000000",,,,,,,,"261.000000","12682.000000",,,,,,,,,,,"4315.000000","993.000000","915.000000","938.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","715.000000","695.000000","705.000000","824.000000","880.000000","833.000000","160.000000","6000.000000",,"8974734.000000",,,,, +"17543.000000","60.285000","17543.000000","60.285000","17543.000000","60.285000",,,,,,,,,,,,,,"48.000000","11144.500000","10757.000000","4.000000","11144.500000","11144.500000",,,,,,,,,,,"4761136.000000","7244848.000000","478732.000000","0.000000","66038548.000000","0.000000","90400632.000000",,"3753872.000000","28385508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000","7244848.000000","66038548.000000","90400632.000000","3753872.000000","28385508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23115024.000000",,,,,,,,"201.000000","11282.000000",,,,,,,,,,,"4143.000000","993.000000","950.000000","940.000000","1330.000000","1214.000000","1214.000000","0.000000","0.000000","0.000000","714.000000","715.000000","705.000000","823.000000","880.000000","833.000000","160.000000","6000.000000",,"8974754.000000",,,,, +"20011.000000","64.145000","20011.000000","64.145000","20011.000000","64.145000",,,,,,,,,,,,,,"333.000000","15312.000000","14979.000000","14.000000","15312.000000","15312.000000",,,,,,,,,,,"5138692.000000","7391716.000000","478732.000000","0.000000","66026244.000000","0.000000","90400700.000000",,"3753872.000000","28397936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000","7391716.000000","66026244.000000","90400700.000000","3753872.000000","28397936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23125608.000000",,,,,,,,"524.000000",,,,,,,,,,,,"4051.000000","996.000000","956.000000","934.000000","1330.000000","1214.000000","1154.000000","0.000000","0.000000","0.000000","714.000000","703.000000","700.000000","823.000000","854.000000","823.000000","160.000000","6000.000000",,"8974774.000000",,,,, +"19742.000000","63.725000","19742.000000","63.725000","19742.000000","63.725000",,,,,,,,,,,,,,"47.000000","14213.500000","13658.000000","122.000000","14213.500000","14213.500000",,,,,,,,,,,"5285496.000000","7056168.000000","478732.000000","0.000000","66026388.000000","0.000000","90400700.000000",,"3753872.000000","28370516.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000","7056168.000000","66026388.000000","90400700.000000","3753872.000000","28370516.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23121696.000000",,,,,,,,"213.000000","14507.000000",,,,,,,,,,,"4264.000000","1010.000000","1105.000000","963.000000","1353.000000","1726.000000","1180.000000","0.000000","0.000000","0.000000","714.000000","695.000000","701.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974794.000000",,,,, +"20689.000000","65.195000","20689.000000","65.195000","20689.000000","65.195000",,,,,,,,,,,,,,"217.000000","12624.500000","11847.000000","23.000000","12624.500000","12624.500000",,,,,,,,,,,"5426744.000000","6977836.000000","478732.000000","0.000000","66012668.000000","0.000000","90400700.000000",,"3753872.000000","28382724.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000","6977836.000000","66012668.000000","90400700.000000","3753872.000000","28382724.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131680.000000",,,,,,,,"336.000000","12848.000000",,,,,,,,,,,"4316.000000","1010.000000","1197.000000","980.000000","1353.000000","1726.000000","1232.000000","0.000000","0.000000","0.000000","713.000000","718.000000","705.000000","823.000000","810.000000","823.000000","160.000000","6000.000000",,"8974814.000000",,,,, +"20624.000000","65.095000","20624.000000","65.095000","20624.000000","65.095000",,,,,,,,,,,,,,"45.000000","9517.500000","9619.000000","8.000000","9517.500000","9517.500000",,,,,,,,,,,"5300936.000000","6956884.000000","478732.000000","0.000000","66012964.000000","0.000000","90400724.000000",,"3753872.000000","28385580.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000","6956884.000000","66012964.000000","90400724.000000","3753872.000000","28385580.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23131308.000000",,,,,,,,"159.000000","9212.000000",,,,,,,,,,,"4282.000000","1014.000000","1240.000000","996.000000","1353.000000","1726.000000","1233.000000","0.000000","0.000000","0.000000","712.000000","730.000000","706.000000","821.000000","788.000000","823.000000","160.000000","6000.000000",,"8974834.000000",,,,, +"22552.000000","68.120000","22552.000000","68.120000","22552.000000","68.120000",,,,,,,,,,,,,,"42.000000","13303.000000","12556.000000","8.000000","13303.000000","13303.000000",,,,,,,,,,,"5384816.000000","7187568.000000","478732.000000","0.000000","66023192.000000","0.000000","90400724.000000",,"3753872.000000","28376192.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000","7187568.000000","66023192.000000","90400724.000000","3753872.000000","28376192.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23129376.000000",,,,,,,,"572.000000","13436.000000",,,,,,,,,,,"4360.000000","1021.000000","1190.000000","1009.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","715.000000","768.000000","707.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974854.000000",,,,, +"18429.000000","61.655000","18429.000000","61.655000","18429.000000","61.655000",,,,,,,,,,,,,,"48.000000","7702.000000","7618.000000","14.000000","7702.000000","7702.000000",,,,,,,,,,,"5243568.000000","7119520.000000","478732.000000","0.000000","66007376.000000","0.000000","90400724.000000",,"3753872.000000","28392452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000","7119520.000000","66007376.000000","90400724.000000","3753872.000000","28392452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23139460.000000",,,,,,,,"153.000000","7584.000000",,,,,,,,,,,"4185.000000","1016.000000","1103.000000","1008.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","713.000000","746.000000","706.000000","825.000000","855.000000","825.000000","160.000000","6000.000000",,"8974874.000000",,,,, +"16889.000000","59.245000","16889.000000","59.245000","16889.000000","59.245000",,,,,,,,,,,,,,"71.000000","16661.000000","15814.000000","13.000000","16661.000000","16661.000000",,,,,,,,,,,"5243568.000000","7329236.000000","478732.000000","0.000000","66007952.000000","0.000000","90400724.000000",,"3753872.000000","28398952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000","7329236.000000","66007952.000000","90400724.000000","3753872.000000","28398952.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23143368.000000",,,,,,,,"278.000000","17158.000000",,,,,,,,,,,"4142.000000","1010.000000","988.000000","994.000000","1353.000000","1339.000000","1264.000000","0.000000","0.000000","0.000000","711.000000","713.000000","698.000000","825.000000","855.000000","815.000000","160.000000","6000.000000",,"8974894.000000",,,,, +"16040.000000","57.920000","16040.000000","57.920000","16040.000000","57.920000",,,,,,,,,,,,,,"273.000000","9545.000000","7982.000000","19.000000","9545.000000","9545.000000",,,,,,,,,,,"5348424.000000","7245356.000000","478732.000000","0.000000","66019916.000000","0.000000","90400724.000000",,"3753872.000000","28384328.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000","7245356.000000","66019916.000000","90400724.000000","3753872.000000","28384328.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23124768.000000",,,,,,,,"562.000000","10273.000000",,,,,,,,,,,"4119.000000","1003.000000","775.000000","974.000000","1353.000000","977.000000","1260.000000","0.000000","0.000000","0.000000","707.000000","613.000000","688.000000","825.000000","734.000000","815.000000","160.000000","6000.000000",,"8974914.000000",,,,, +"14565.000000","55.600000","14565.000000","55.600000","14565.000000","55.600000",,,,,,,,,,,,,,"47.000000","6716.000000","6478.000000","17.000000","6716.000000","6716.000000",,,,,,,,,,,"5961316.000000","8293512.000000","478732.000000","0.000000","66002992.000000","0.000000","90400724.000000",,"3753872.000000","28335236.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000","8293512.000000","66002992.000000","90400724.000000","3753872.000000","28335236.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23136976.000000",,,,,,,,"159.000000","6747.000000",,,,,,,,,,,"4055.000000","999.000000","712.000000","970.000000","1353.000000","803.000000","1260.000000","0.000000","0.000000","0.000000","704.000000","570.000000","683.000000","825.000000","646.000000","815.000000","160.000000","6000.000000",,"8974934.000000",,,,, +"15675.000000","57.335000","15675.000000","57.335000","15675.000000","57.335000",,,,,,,,,,,,,,"113.000000","6189.500000","5940.000000","5.000000","6189.500000","6189.500000",,,,,,,,,,,"5961244.000000","8314416.000000","478732.000000","0.000000","65986496.000000","0.000000","90400652.000000",,"3753872.000000","28349048.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000","8314416.000000","65986496.000000","90400652.000000","3753872.000000","28349048.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23146912.000000",,,,,,,,"141.000000","6185.000000",,,,,,,,,,,"4313.000000","992.000000","651.000000","946.000000","1353.000000","788.000000","1260.000000","0.000000","0.000000","0.000000","702.000000","547.000000","674.000000","825.000000","599.000000","815.000000","160.000000","6000.000000",,"8974954.000000",,,,, +"14210.000000","55.025000","14210.000000","55.025000","14210.000000","55.025000",,,,,,,,,,,,,,"46.000000","4683.000000","4573.000000","4.000000","4683.000000","4683.000000",,,,,,,,,,,"5793476.000000","8000128.000000","478732.000000","0.000000","65975356.000000","0.000000","90400652.000000",,"3753872.000000","28441832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000","8000128.000000","65975356.000000","90400652.000000","3753872.000000","28441832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23152572.000000",,,,,,,,"129.000000","4616.000000",,,,,,,,,,,"4010.000000","986.000000","598.000000","917.000000","1353.000000","711.000000","1260.000000","0.000000","0.000000","0.000000","698.000000","529.000000","660.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974974.000000",,,,, +"14296.000000","55.160000","14296.000000","55.160000","14296.000000","55.160000",,,,,,,,,,,,,,"53.000000","4920.000000","4712.000000","6.000000","4920.000000","4920.000000",,,,,,,,,,,"5977504.000000","7790836.000000","478732.000000","0.000000","65957492.000000","0.000000","90400652.000000",,"3753872.000000","28492036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000","7790836.000000","65957492.000000","90400652.000000","3753872.000000","28492036.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23165132.000000",,,,,,,,"124.000000","4950.000000",,,,,,,,,,,"4252.000000","978.000000","589.000000","910.000000","1353.000000","655.000000","1260.000000","0.000000","0.000000","0.000000","695.000000","530.000000","656.000000","825.000000","593.000000","815.000000","160.000000","6000.000000",,"8974994.000000",,,,, +"14639.000000","55.685000","14639.000000","55.685000","14639.000000","55.685000",,,,,,,,,,,,,,"60.000000","6342.000000","6140.000000","5.000000","6342.000000","6342.000000",,,,,,,,,,,"6061392.000000","7811804.000000","478732.000000","0.000000","65941184.000000","0.000000","90400652.000000",,"3753872.000000","28507688.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000","7811804.000000","65941184.000000","90400652.000000","3753872.000000","28507688.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23177068.000000",,,,,,,,"146.000000","6338.000000",,,,,,,,,,,"4245.000000","975.000000","598.000000","886.000000","1353.000000","685.000000","1260.000000","0.000000","0.000000","0.000000","693.000000","526.000000","644.000000","825.000000","578.000000","810.000000","160.000000","6000.000000",,"8975014.000000",,,,, +"16389.000000","58.415000","16389.000000","58.415000","16389.000000","58.415000",,,,,,,,,,,,,,"43.000000","6495.000000","6498.000000","4.000000","6495.000000","6495.000000",,,,,,,,,,,"5935712.000000","7455440.000000","478732.000000","0.000000","65924356.000000","0.000000","90400800.000000",,"3753872.000000","28483148.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000","7455440.000000","65924356.000000","90400800.000000","3753872.000000","28483148.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23188876.000000",,,,,,,,"145.000000","6303.000000",,,,,,,,,,,"4102.000000","966.000000","610.000000","856.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","689.000000","541.000000","629.000000","825.000000","684.000000","809.000000","160.000000","6000.000000",,"8975034.000000",,,,, +"14824.000000","55.960000","14824.000000","55.960000","14824.000000","55.960000",,,,,,,,,,,,,,"47.000000","4612.000000","4747.000000","10.000000","4612.000000","4612.000000",,,,,,,,,,,"4745892.000000","6328524.000000","478732.000000","0.000000","65908200.000000","0.000000","90400800.000000",,"3753872.000000","28544812.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000","6328524.000000","65908200.000000","90400800.000000","3753872.000000","28544812.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199628.000000",,,,,,,,"126.000000","4304.000000",,,,,,,,,,,"4268.000000","960.000000","595.000000","839.000000","1353.000000","719.000000","1260.000000","0.000000","0.000000","0.000000","685.000000","534.000000","620.000000","825.000000","684.000000","788.000000","160.000000","6000.000000",,"8975054.000000",,,,, +"14754.000000","55.840000","14754.000000","55.840000","14754.000000","55.840000",,,,,,,,,,,,,,"332.000000","11483.500000","10425.000000","19.000000","11483.500000","11483.500000",,,,,,,,,,,"4703800.000000","6265468.000000","478732.000000","0.000000","65891432.000000","0.000000","90400652.000000",,"3753872.000000","28552504.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000","6265468.000000","65891432.000000","90400652.000000","3753872.000000","28552504.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23204004.000000",,,,,,,,"481.000000","11727.000000",,,,,,,,,,,"4228.000000","951.000000","603.000000","816.000000","1352.000000","733.000000","1260.000000","0.000000","0.000000","0.000000","681.000000","544.000000","612.000000","823.000000","684.000000","762.000000","160.000000","6000.000000",,"8975074.000000",,,,, +"17904.000000","60.780000","17904.000000","60.780000","17904.000000","60.780000",,,,,,,,,,,,,,"47.000000","7723.500000","7459.000000","7.000000","7723.500000","7723.500000",,,,,,,,,,,"5301280.000000","6731984.000000","478732.000000","0.000000","65899992.000000","0.000000","90400652.000000",,"3753872.000000","28494560.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000","6731984.000000","65899992.000000","90400652.000000","3753872.000000","28494560.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23199968.000000",,,,,,,,"199.000000","7741.000000",,,,,,,,,,,"4287.000000","940.000000","645.000000","764.000000","1339.000000","939.000000","1233.000000","0.000000","0.000000","0.000000","677.000000","569.000000","604.000000","819.000000","716.000000","762.000000","160.000000","6000.000000",,"8975094.000000",,,,, +"13576.000000","53.995000","13576.000000","53.995000","13576.000000","53.995000",,,,,,,,,,,,,,"55.000000","4659.000000","4336.000000","5.000000","4659.000000","4659.000000",,,,,,,,,,,"5730976.000000","7439456.000000","478732.000000","0.000000","65886948.000000","0.000000","90400652.000000",,"3753872.000000","28542784.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000","7439456.000000","65886948.000000","90400652.000000","3753872.000000","28542784.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23211588.000000",,,,,,,,"147.000000","4779.000000",,,,,,,,,,,"4052.000000","928.000000","642.000000","728.000000","1330.000000","939.000000","1200.000000","0.000000","0.000000","0.000000","673.000000","568.000000","590.000000","819.000000","716.000000","759.000000","160.000000","6000.000000",,"8975114.000000",,,,, +"15570.000000","57.115000","15570.000000","57.115000","15570.000000","57.115000",,,,,,,,,,,,,,"43.000000","4601.000000","3597.000000","4.000000","4601.000000","4601.000000",,,,,,,,,,,"5647276.000000","7418384.000000","478732.000000","0.000000","65876308.000000","0.000000","90400840.000000",,"3753872.000000","28554340.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000","7418384.000000","65876308.000000","90400840.000000","3753872.000000","28554340.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23221408.000000",,,,,,,,"217.000000","5344.000000",,,,,,,,,,,"4133.000000","910.000000","607.000000","689.000000","1280.000000","939.000000","977.000000","0.000000","0.000000","0.000000","667.000000","540.000000","574.000000","815.000000","716.000000","734.000000","160.000000","6000.000000",,"8975134.000000",,,,, +"18470.000000","61.650000","18470.000000","61.650000","18470.000000","61.650000",,,,,,,,,,,,,,"51.000000","9233.500000","8781.000000","23.000000","9233.500000","9233.500000",,,,,,,,,,,"5437560.000000","7250608.000000","478732.000000","0.000000","65874136.000000","0.000000","90400840.000000",,"3753872.000000","28477776.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000","7250608.000000","65874136.000000","90400840.000000","3753872.000000","28477776.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23224664.000000",,,,,,,,"551.000000","9083.000000",,,,,,,,,,,"4406.000000","889.000000","623.000000","650.000000","1246.000000","825.000000","803.000000","0.000000","0.000000","0.000000","664.000000","560.000000","563.000000","809.000000","741.000000","684.000000","160.000000","6000.000000",,"8975154.000000",,,,, +"16946.000000","59.260000","16946.000000","59.260000","16946.000000","59.260000",,,,,,,,,,,,,,"258.000000","7689.000000","7210.000000","3.000000","7689.000000","7689.000000",,,,,,,,,,,"4546812.000000","6103060.000000","478732.000000","0.000000","65863444.000000","0.000000","90401168.000000",,"3753872.000000","28402112.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000","6103060.000000","65863444.000000","90401168.000000","3753872.000000","28402112.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23227612.000000",,,,,,,,"327.000000","7581.000000",,,,,,,,,,,"4149.000000","874.000000","676.000000","643.000000","1233.000000","825.000000","795.000000","0.000000","0.000000","0.000000","660.000000","595.000000","559.000000","806.000000","741.000000","683.000000","160.000000","6000.000000",,"8975174.000000",,,,, +"14698.000000","55.735000","14698.000000","55.735000","14698.000000","55.735000",,,,,,,,,,,,,,"58.000000","6530.500000","6377.000000","6.000000","6530.500000","6530.500000",,,,,,,,,,,"4693152.000000","6291620.000000","478732.000000","0.000000","65854812.000000","0.000000","90400704.000000",,"3753872.000000","28409512.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000","6291620.000000","65854812.000000","90400704.000000","3753872.000000","28409512.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23231216.000000",,,,,,,,"158.000000","6467.000000",,,,,,,,,,,"4190.000000","861.000000","698.000000","631.000000","1224.000000","825.000000","788.000000","0.000000","0.000000","0.000000","653.000000","612.000000","554.000000","795.000000","741.000000","683.000000","160.000000","6000.000000",,"8975194.000000",,,,, +"14571.000000","55.530000","14571.000000","55.530000","14571.000000","55.530000",,,,,,,,,,,,,,"49.000000","6825.500000","6772.000000","3.000000","6825.500000","6825.500000",,,,,,,,,,,"4546416.000000","6207796.000000","478732.000000","0.000000","65839916.000000","0.000000","90400764.000000",,"3753872.000000","28272768.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000","6207796.000000","65839916.000000","90400764.000000","3753872.000000","28272768.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23240780.000000",,,,,,,,"146.000000","6683.000000",,,,,,,,,,,"4257.000000","842.000000","624.000000","620.000000","1200.000000","804.000000","748.000000","0.000000","0.000000","0.000000","647.000000","550.000000","550.000000","788.000000","658.000000","683.000000","160.000000","6000.000000",,"8975214.000000",,,,, +"13856.000000","54.405000","13856.000000","54.405000","13856.000000","54.405000",,,,,,,,,,,,,,"49.000000","5170.000000","4826.000000","3.000000","5170.000000","5170.000000",,,,,,,,,,,"4263512.000000","5956140.000000","478728.000000","0.000000","65832732.000000","0.000000","90400768.000000",,"3753872.000000","28365620.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000","5956140.000000","65832732.000000","90400768.000000","3753872.000000","28365620.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23243216.000000",,,,,,,,"149.000000","5315.000000",,,,,,,,,,,"4211.000000","836.000000","572.000000","615.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","643.000000","515.000000","548.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975234.000000",,,,, +"12379.000000","52.090000","12379.000000","52.090000","12379.000000","52.090000",,,,,,,,,,,,,,"40.000000","5059.500000","4740.000000","4.000000","5059.500000","5059.500000",,,,,,,,,,,"4305452.000000","5956144.000000","478728.000000","0.000000","65828844.000000","0.000000","90400768.000000",,"3753872.000000","28367832.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000","5956144.000000","65828844.000000","90400768.000000","3753872.000000","28367832.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23241800.000000",,,,,,,,"147.000000","5191.000000",,,,,,,,,,,"4136.000000","830.000000","555.000000","612.000000","1200.000000","675.000000","748.000000","0.000000","0.000000","0.000000","639.000000","496.000000","544.000000","788.000000","615.000000","683.000000","160.000000","6000.000000",,"8975254.000000",,,,, +"13295.000000","53.520000","13295.000000","53.520000","13295.000000","53.520000",,,,,,,,,,,,,,"52.000000","6168.500000","6151.000000","8.000000","6168.500000","6168.500000",,,,,,,,,,,"4357304.000000","5913056.000000","478728.000000","0.000000","65821468.000000","0.000000","90400768.000000",,"3753872.000000","28589508.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000","5913056.000000","65821468.000000","90400768.000000","3753872.000000","28589508.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23244192.000000",,,,,,,,"164.000000","5969.000000",,,,,,,,,,,"4011.000000","816.000000","523.000000","605.000000","1180.000000","675.000000","748.000000","0.000000","0.000000","0.000000","632.000000","469.000000","538.000000","787.000000","615.000000","683.000000","160.000000","6000.000000",,"8975274.000000",,,,, +"12982.000000","53.025000","12982.000000","53.025000","12982.000000","53.025000",,,,,,,,,,,,,,"53.000000","5785.500000","5557.000000","3.000000","5785.500000","5785.500000",,,,,,,,,,,"4309388.000000","5865136.000000","478728.000000","0.000000","65804804.000000","0.000000","90400768.000000",,"3753872.000000","28617396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000","5865136.000000","65804804.000000","90400768.000000","3753872.000000","28617396.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23255632.000000",,,,,,,,"146.000000","5815.000000",,,,,,,,,,,"4021.000000","810.000000","509.000000","599.000000","1180.000000","631.000000","748.000000","0.000000","0.000000","0.000000","628.000000","456.000000","533.000000","787.000000","540.000000","683.000000","160.000000","6000.000000",,"8975294.000000",,,,, +"12599.000000","52.420000","12599.000000","52.420000","12599.000000","52.420000",,,,,,,,,,,,,,"34.000000","5371.500000","5080.000000","2.000000","5371.500000","5371.500000",,,,,,,,,,,"4330308.000000","5864796.000000","478728.000000","0.000000","65796504.000000","0.000000","90400720.000000",,"3753872.000000","28628452.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000","5864796.000000","65796504.000000","90400720.000000","3753872.000000","28628452.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23264348.000000",,,,,,,,"118.000000","5510.000000",,,,,,,,,,,"4233.000000","801.000000","492.000000","591.000000","1180.000000","587.000000","748.000000","0.000000","0.000000","0.000000","624.000000","449.000000","528.000000","787.000000","526.000000","683.000000","160.000000","6000.000000",,"8975314.000000",,,,, +"12073.000000","51.585000","12073.000000","51.585000","12073.000000","51.585000",,,,,,,,,,,,,,"52.000000","6416.000000","5738.000000","3.000000","6416.000000","6416.000000",,,,,,,,,,,"4383312.000000","5991772.000000","478728.000000","0.000000","65780080.000000","0.000000","90400720.000000",,"3753872.000000","28640968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000","5991772.000000","65780080.000000","90400720.000000","3753872.000000","28640968.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23276408.000000",,,,,,,,"201.000000","6841.000000",,,,,,,,,,,"4004.000000","792.000000","500.000000","583.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","618.000000","446.000000","519.000000","787.000000","511.000000","658.000000","160.000000","6000.000000",,"8975334.000000",,,,, +"12674.000000","52.525000","12674.000000","52.525000","12674.000000","52.525000",,,,,,,,,,,,,,"35.000000","5496.000000","5461.000000","2.000000","5496.000000","5496.000000",,,,,,,,,,,"4100816.000000","5515404.000000","478728.000000","0.000000","65781260.000000","0.000000","90400720.000000",,"3753872.000000","28662936.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000","5515404.000000","65781260.000000","90400720.000000","3753872.000000","28662936.000000","1429432.000000","1630920.000000",,,,"11049340.000000","23270956.000000",,,,,,,,"234.000000",,,,,,,,,,,,"3923.000000","787.000000","507.000000","581.000000","1180.000000","630.000000","748.000000","0.000000","0.000000","0.000000","614.000000","446.000000","516.000000","787.000000","493.000000","658.000000","160.000000","6000.000000",,"8975354.000000",,,,, +"20842.000000","65.480000","20842.000000","65.480000","20842.000000","65.480000",,,,,,,,,,,,,,"394.000000","7050.000000","6614.000000","4.000000","7050.000000","7050.000000",,,,,,,,,,,"4466336.000000","5812684.000000","478728.000000","0.000000","66106536.000000","0.000000","90394628.000000",,"3753872.000000","28317656.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000","5812684.000000","66106536.000000","90394628.000000","3753872.000000","28317656.000000","1429432.000000","1630920.000000",,,,"11055432.000000","23041168.000000",,,,,,,,"432.000000","6659.000000",,,,,,,,,,,"4394.000000","781.000000","610.000000","592.000000","1154.000000","1073.000000","804.000000","0.000000","0.000000","0.000000","611.000000","513.000000","522.000000","784.000000","920.000000","658.000000","160.000000","6000.000000",,"8975374.000000",,,,, +"19176.000000","62.935000","19176.000000","62.935000","19176.000000","62.935000",,,,,,,,,,,,,,"53.000000","9572.500000","9151.000000","35.000000","9572.500000","9572.500000",,,,,,,,,,,"4881476.000000","6210432.000000","478728.000000","0.000000","66235640.000000","0.000000","90331680.000000",,"3753872.000000","28088488.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000","6210432.000000","66235640.000000","90331680.000000","3753872.000000","28088488.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22878572.000000",,,,,,,,"212.000000","9729.000000",,,,,,,,,,,"4522.000000","777.000000","750.000000","604.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","612.000000","632.000000","531.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975394.000000",,,,, +"15809.000000","57.660000","15809.000000","57.660000","15809.000000","57.660000",,,,,,,,,,,,,,"53.000000","2673.500000","2426.000000","5.000000","2673.500000","2673.500000",,,,,,,,,,,"5095648.000000","6277784.000000","478728.000000","0.000000","66219360.000000","0.000000","90331680.000000",,"3753872.000000","28113976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000","6277784.000000","66219360.000000","90331680.000000","3753872.000000","28113976.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22892820.000000",,,,,,,,"108.000000","2759.000000",,,,,,,,,,,"4307.000000","772.000000","769.000000","607.000000","1150.000000","1073.000000","825.000000","0.000000","0.000000","0.000000","610.000000","664.000000","535.000000","787.000000","920.000000","730.000000","160.000000","6000.000000",,"8975414.000000",,,,, +"14859.000000","56.160000","14859.000000","56.160000","14859.000000","56.160000",,,,,,,,,,,,,,"45.000000","1882.000000","1672.000000","38.000000","1882.000000","1882.000000",,,,,,,,,,,"5053652.000000","6361616.000000","478728.000000","0.000000","66207164.000000","0.000000","90331628.000000",,"3753872.000000","28125804.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000","6361616.000000","66207164.000000","90331628.000000","3753872.000000","28125804.000000","1429432.000000","1630920.000000",,,,"11118424.000000","22901560.000000",,,,,,,,"98.000000","1948.000000",,,,,,,,,,,"4149.000000","765.000000","698.000000","611.000000","1150.000000","1057.000000","825.000000","0.000000","0.000000","0.000000","606.000000","616.000000","537.000000","787.000000","874.000000","730.000000","160.000000","6000.000000",,"8975434.000000",,,,, +"15093.000000","56.525000","15093.000000","56.525000","15093.000000","56.525000",,,,,,,,,,,,,,"49.000000","3138.500000","2819.000000","4.000000","3138.500000","3138.500000",,,,,,,,,,,"5010764.000000","6381568.000000","478728.000000","0.000000","66199440.000000","0.000000","90327692.000000",,"3753872.000000","28120808.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000","6381568.000000","66199440.000000","90327692.000000","3753872.000000","28120808.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22901596.000000",,,,,,,,"477.000000","2931.000000",,,,,,,,,,,"4255.000000","752.000000","590.000000","597.000000","1150.000000","633.000000","808.000000","0.000000","0.000000","0.000000","599.000000","535.000000","526.000000","762.000000","621.000000","658.000000","160.000000","6000.000000",,"8975454.000000",,,,, +"15613.000000","57.330000","15613.000000","57.330000","15613.000000","57.330000",,,,,,,,,,,,,,"45.000000","7734.500000","7541.000000","6.000000","7734.500000","7734.500000",,,,,,,,,,,"5241444.000000","6696148.000000","478728.000000","0.000000","66179740.000000","0.000000","90327692.000000",,"3753872.000000","28117624.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000","6696148.000000","66179740.000000","90327692.000000","3753872.000000","28117624.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22918112.000000",,,,,,,,"156.000000","7727.000000",,,,,,,,,,,"4226.000000","748.000000","604.000000","592.000000","1150.000000","641.000000","808.000000","0.000000","0.000000","0.000000","596.000000","540.000000","524.000000","762.000000","586.000000","621.000000","160.000000","6000.000000",,"8975474.000000",,,,, +"12397.000000","52.285000","12397.000000","52.285000","12397.000000","52.285000",,,,,,,,,,,,,,"45.000000","6719.000000","6597.000000","25.000000","6719.000000","6719.000000",,,,,,,,,,,"5204088.000000","6692988.000000","478728.000000","0.000000","66166040.000000","0.000000","90327868.000000",,"3753872.000000","28132280.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000","6692988.000000","66166040.000000","90327868.000000","3753872.000000","28132280.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22930556.000000",,,,,,,,"148.000000","6648.000000",,,,,,,,,,,"3977.000000","738.000000","587.000000","588.000000","1146.000000","641.000000","808.000000","0.000000","0.000000","0.000000","590.000000","520.000000","519.000000","761.000000","586.000000","621.000000","160.000000","6000.000000",,"8975494.000000",,,,, +"12513.000000","52.455000","12513.000000","52.455000","12513.000000","52.455000",,,,,,,,,,,,,,"50.000000","5044.000000","4815.000000","26.000000","5044.000000","5044.000000",,,,,,,,,,,"5057288.000000","6263644.000000","478728.000000","0.000000","66146408.000000","0.000000","90327868.000000",,"3753872.000000","28186536.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000","6263644.000000","66146408.000000","90327868.000000","3753872.000000","28186536.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22946380.000000",,,,,,,,"132.000000","5089.000000",,,,,,,,,,,"4083.000000","725.000000","543.000000","581.000000","1117.000000","641.000000","808.000000","0.000000","0.000000","0.000000","584.000000","483.000000","513.000000","761.000000","582.000000","621.000000","160.000000","6000.000000",,"8975514.000000",,,,, +"13977.000000","54.750000","13977.000000","54.750000","13977.000000","54.750000",,,,,,,,,,,,,,"44.000000","6543.500000","6484.000000","4.000000","6543.500000","6543.500000",,,,,,,,,,,"4826604.000000","5928096.000000","478724.000000","0.000000","66137988.000000","0.000000","90327872.000000",,"3753872.000000","28153368.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000","5928096.000000","66137988.000000","90327872.000000","3753872.000000","28153368.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22950836.000000",,,,,,,,"183.000000","6375.000000",,,,,,,,,,,"4160.000000","722.000000","515.000000","581.000000","1117.000000","559.000000","808.000000","0.000000","0.000000","0.000000","581.000000","457.000000","512.000000","761.000000","511.000000","621.000000","160.000000","6000.000000",,"8975534.000000",,,,, +"12436.000000","52.325000","12436.000000","52.325000","12436.000000","52.325000",,,,,,,,,,,,,,"40.000000","6087.500000","5252.000000","5.000000","6087.500000","6087.500000",,,,,,,,,,,"4910076.000000","5876924.000000","478724.000000","0.000000","66119612.000000","0.000000","90327460.000000",,"3753872.000000","28171036.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000","5876924.000000","66119612.000000","90327460.000000","3753872.000000","28171036.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22965676.000000",,,,,,,,"192.000000","6691.000000",,,,,,,,,,,"4040.000000","713.000000","513.000000","580.000000","1114.000000","562.000000","808.000000","0.000000","0.000000","0.000000","577.000000","465.000000","512.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975554.000000",,,,, +"12567.000000","52.525000","12567.000000","52.525000","12567.000000","52.525000",,,,,,,,,,,,,,"51.000000","6029.500000","5213.000000","4.000000","6029.500000","6029.500000",,,,,,,,,,,"5078248.000000","6013064.000000","478724.000000","0.000000","66113852.000000","0.000000","90327860.000000",,"3753872.000000","28145464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000","6013064.000000","66113852.000000","90327860.000000","3753872.000000","28145464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22966092.000000",,,,,,,,"213.000000","6582.000000",,,,,,,,,,,"3992.000000","700.000000","514.000000","579.000000","1087.000000","585.000000","808.000000","0.000000","0.000000","0.000000","570.000000","458.000000","511.000000","759.000000","528.000000","621.000000","160.000000","6000.000000",,"8975574.000000",,,,, +"14336.000000","55.290000","14336.000000","55.290000","14336.000000","55.290000",,,,,,,,,,,,,,"110.000000","14842.500000","14514.000000","19.000000","14842.500000","14842.500000",,,,,,,,,,,"4973388.000000","5845296.000000","478724.000000","0.000000","66100572.000000","0.000000","90327860.000000",,"3753872.000000","28240156.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000","5845296.000000","66100572.000000","90327860.000000","3753872.000000","28240156.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22979992.000000",,,,,,,,"243.000000","14817.000000",,,,,,,,,,,"4123.000000","698.000000","523.000000","584.000000","1087.000000","649.000000","808.000000","0.000000","0.000000","0.000000","568.000000","468.000000","515.000000","759.000000","584.000000","621.000000","160.000000","6000.000000",,"8975594.000000",,,,, +"13198.000000","53.510000","13198.000000","53.510000","13198.000000","53.510000",,,,,,,,,,,,,,"57.000000","5434.500000","5290.000000","10.000000","5434.500000","5434.500000",,,,,,,,,,,"5196328.000000","6026292.000000","478724.000000","0.000000","66101272.000000","0.000000","90327860.000000",,"3753872.000000","28239424.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000","6026292.000000","66101272.000000","90327860.000000","3753872.000000","28239424.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22977888.000000",,,,,,,,"137.000000","5383.000000",,,,,,,,,,,"4073.000000","688.000000","522.000000","586.000000","1073.000000","678.000000","808.000000","0.000000","0.000000","0.000000","562.000000","455.000000","514.000000","752.000000","584.000000","621.000000","160.000000","6000.000000",,"8975614.000000",,,,, +"13950.000000","54.680000","13950.000000","54.680000","13950.000000","54.680000",,,,,,,,,,,,,,"49.000000","6232.500000","6044.000000","12.000000","6232.500000","6232.500000",,,,,,,,,,,"5259240.000000","6047268.000000","478724.000000","0.000000","66093716.000000","0.000000","90327860.000000",,"3753872.000000","28252172.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000","6047268.000000","66093716.000000","90327860.000000","3753872.000000","28252172.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22981432.000000",,,,,,,,"173.000000","6197.000000",,,,,,,,,,,"4112.000000","677.000000","571.000000","594.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","556.000000","493.000000","520.000000","741.000000","620.000000","621.000000","160.000000","6000.000000",,"8975634.000000",,,,, +"12855.000000","52.960000","12855.000000","52.960000","12855.000000","52.960000",,,,,,,,,,,,,,"35.000000","6091.500000","5948.000000","23.000000","6091.500000","6091.500000",,,,,,,,,,,"5133416.000000","6026292.000000","478724.000000","0.000000","66083820.000000","0.000000","90327860.000000",,"3753872.000000","28249708.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000","6026292.000000","66083820.000000","90327860.000000","3753872.000000","28249708.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22986588.000000",,,,,,,,"124.000000","6076.000000",,,,,,,,,,,"4195.000000","671.000000","553.000000","593.000000","1057.000000","805.000000","808.000000","0.000000","0.000000","0.000000","552.000000","474.000000","521.000000","734.000000","620.000000","621.000000","160.000000","6000.000000",,"8975654.000000",,,,, +"12159.000000","51.865000","12159.000000","51.865000","12159.000000","51.865000",,,,,,,,,,,,,,"336.000000","5644.500000","5157.000000","3.000000","5644.500000","5644.500000",,,,,,,,,,,"4817524.000000","5836232.000000","478724.000000","0.000000","66068668.000000","0.000000","90327612.000000",,"3753872.000000","28263960.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000","5836232.000000","66068668.000000","90327612.000000","3753872.000000","28263960.000000","1429432.000000","1630920.000000",,,,"11122360.000000","22997860.000000",,,,,,,,"425.000000","5370.000000",,,,,,,,,,,"3922.000000","661.000000","556.000000","575.000000","977.000000","805.000000","678.000000","0.000000","0.000000","0.000000","547.000000","481.000000","507.000000","730.000000","620.000000","620.000000","160.000000","6000.000000",,"8975674.000000",,,,, +"14553.000000","55.600000","14553.000000","55.600000","14553.000000","55.600000",,,,,,,,,,,,,,"47.000000","9475.500000","8321.000000","16.000000","9475.500000","9475.500000",,,,,,,,,,,"4649752.000000","5637576.000000","478724.000000","0.000000","66045288.000000","0.000000","90327612.000000",,"3753872.000000","28300572.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000","5637576.000000","66045288.000000","90327612.000000","3753872.000000","28300572.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23010036.000000",,,,,,,,"256.000000","10326.000000",,,,,,,,,,,"3969.000000","640.000000","550.000000","554.000000","903.000000","757.000000","647.000000","0.000000","0.000000","0.000000","541.000000","468.000000","488.000000","716.000000","601.000000","584.000000","160.000000","6000.000000",,"8975694.000000",,,,, +"11104.000000","50.195000","11104.000000","50.195000","11104.000000","50.195000",,,,,,,,,,,,,,"55.000000","3076.000000","2376.000000","36.000000","3076.000000","3076.000000",,,,,,,,,,,"4356152.000000","5490780.000000","478724.000000","0.000000","66030236.000000","0.000000","90327612.000000",,"3753872.000000","28263972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000","5490780.000000","66030236.000000","90327612.000000","3753872.000000","28263972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23024552.000000",,,,,,,,"163.000000","3558.000000",,,,,,,,,,,"3891.000000","627.000000","530.000000","545.000000","825.000000","757.000000","647.000000","0.000000","0.000000","0.000000","534.000000","449.000000","478.000000","684.000000","601.000000","582.000000","160.000000","6000.000000",,"8975714.000000",,,,, +"15315.000000","56.785000","15315.000000","56.785000","15315.000000","56.785000",,,,,,,,,,,,,,"47.000000","6384.000000","6212.000000","4.000000","6384.000000","6384.000000",,,,,,,,,,,"4368308.000000","5587100.000000","478724.000000","0.000000","66020992.000000","0.000000","90327612.000000",,"3753872.000000","28272500.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000","5587100.000000","66020992.000000","90327612.000000","3753872.000000","28272500.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23032456.000000",,,,,,,,"146.000000","6363.000000",,,,,,,,,,,"3981.000000","616.000000","560.000000","548.000000","804.000000","757.000000","674.000000","0.000000","0.000000","0.000000","529.000000","465.000000","477.000000","668.000000","601.000000","582.000000","160.000000","6000.000000",,"8975734.000000",,,,, +"16056.000000","57.940000","16056.000000","57.940000","16056.000000","57.940000",,,,,,,,,,,,,,"56.000000","7235.500000","6740.000000","34.000000","7235.500000","7235.500000",,,,,,,,,,,"4683920.000000","6091448.000000","478724.000000","0.000000","66007688.000000","0.000000","90328648.000000",,"3753872.000000","28333088.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000","6091448.000000","66007688.000000","90328648.000000","3753872.000000","28333088.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23044928.000000",,,,,,,,"547.000000","7128.000000",,,,,,,,,,,"4199.000000","600.000000","585.000000","553.000000","788.000000","714.000000","689.000000","0.000000","0.000000","0.000000","523.000000","497.000000","480.000000","636.000000","630.000000","582.000000","160.000000","6000.000000",,"8975754.000000",,,,, +"16684.000000","58.915000","16684.000000","58.915000","16684.000000","58.915000",,,,,,,,,,,,,,"51.000000","8111.500000","7884.000000","46.000000","8111.500000","8111.500000",,,,,,,,,,,"4734948.000000","6141332.000000","478724.000000","0.000000","65989984.000000","0.000000","90327824.000000",,"3753872.000000","28340276.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000","6141332.000000","65989984.000000","90327824.000000","3753872.000000","28340276.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23057996.000000",,,,,,,,"188.000000","8099.000000",,,,,,,,,,,"4209.000000","596.000000","648.000000","554.000000","771.000000","721.000000","690.000000","0.000000","0.000000","0.000000","521.000000","555.000000","481.000000","630.000000","672.000000","601.000000","160.000000","6000.000000",,"8975774.000000",,,,, +"13417.000000","53.790000","13417.000000","53.790000","13417.000000","53.790000",,,,,,,,,,,,,,"52.000000","7777.500000","6720.000000","246.000000","7777.500000","7777.500000",,,,,,,,,,,"4944620.000000","6254676.000000","478724.000000","0.000000","65985284.000000","0.000000","90327780.000000",,"3753872.000000","28350264.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000","6254676.000000","65985284.000000","90327780.000000","3753872.000000","28350264.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23064844.000000",,,,,,,,"292.000000","8490.000000",,,,,,,,,,,"4059.000000","592.000000","634.000000","557.000000","733.000000","721.000000","690.000000","0.000000","0.000000","0.000000","519.000000","553.000000","484.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975794.000000",,,,, +"12031.000000","51.620000","12031.000000","51.620000","12031.000000","51.620000",,,,,,,,,,,,,,"53.000000","6347.500000","5765.000000","35.000000","6347.500000","6347.500000",,,,,,,,,,,"4598020.000000","6200536.000000","478724.000000","0.000000","65982208.000000","0.000000","90327788.000000",,"3753872.000000","28379396.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000","6200536.000000","65982208.000000","90327788.000000","3753872.000000","28379396.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23063424.000000",,,,,,,,"214.000000","6663.000000",,,,,,,,,,,"3878.000000","587.000000","580.000000","560.000000","721.000000","721.000000","690.000000","0.000000","1.000000","0.000000","515.000000","499.000000","483.000000","627.000000","672.000000","601.000000","160.000000","6000.000000",,"8975814.000000",,,,, +"13415.000000","53.785000","13415.000000","53.785000","13415.000000","53.785000",,,,,,,,,,,,,,"97.000000","6025.000000","5859.000000","19.000000","6025.000000","6025.000000",,,,,,,,,,,"4368068.000000","6033500.000000","478724.000000","0.000000","65973668.000000","0.000000","90328528.000000",,"3753872.000000","28370840.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000","6033500.000000","65973668.000000","90328528.000000","3753872.000000","28370840.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23067080.000000",,,,,,,,"132.000000","5961.000000",,,,,,,,,,,"4039.000000","585.000000","540.000000","559.000000","721.000000","660.000000","690.000000","0.000000","1.000000","0.000000","514.000000","465.000000","482.000000","627.000000","585.000000","601.000000","160.000000","6000.000000",,"8975834.000000",,,,, +"12897.000000","52.965000","12897.000000","52.965000","12897.000000","52.965000",,,,,,,,,,,,,,"59.000000","8169.000000","7981.000000","38.000000","8169.000000","8169.000000",,,,,,,,,,,"4456668.000000","5831840.000000","478724.000000","0.000000","65959600.000000","0.000000","90327768.000000",,"3753872.000000","28384312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000","5831840.000000","65959600.000000","90327768.000000","3753872.000000","28384312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23077756.000000",,,,,,,,"160.000000","8138.000000",,,,,,,,,,,"4065.000000","584.000000","528.000000","560.000000","721.000000","562.000000","690.000000","0.000000","1.000000","0.000000","513.000000","456.000000","482.000000","627.000000","504.000000","601.000000","160.000000","6000.000000",,"8975854.000000",,,,, +"13402.000000","53.745000","13402.000000","53.745000","13402.000000","53.745000",,,,,,,,,,,,,,"52.000000","6454.500000","6276.000000","32.000000","6454.500000","6454.500000",,,,,,,,,,,"4059692.000000","5320092.000000","478724.000000","0.000000","65943304.000000","0.000000","90328096.000000",,"3753872.000000","28363360.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000","5320092.000000","65943304.000000","90328096.000000","3753872.000000","28363360.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23090844.000000",,,,,,,,"156.000000","6424.000000",,,,,,,,,,,"4120.000000","583.000000","530.000000","563.000000","721.000000","562.000000","690.000000","0.000000","0.000000","0.000000","511.000000","466.000000","485.000000","627.000000","505.000000","601.000000","160.000000","6000.000000",,"8975874.000000",,,,, +"14524.000000","55.505000","14524.000000","55.505000","14524.000000","55.505000",,,,,,,,,,,,,,"43.000000","6854.500000","6631.000000","7.000000","6854.500000","6854.500000",,,,,,,,,,,"3681880.000000","5151996.000000","478724.000000","0.000000","65942040.000000","0.000000","90327768.000000",,"3753872.000000","28393976.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000","5151996.000000","65942040.000000","90327768.000000","3753872.000000","28393976.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23087556.000000",,,,,,,,"176.000000","6859.000000",,,,,,,,,,,"3981.000000","584.000000","571.000000","568.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","512.000000","490.000000","487.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975894.000000",,,,, +"12588.000000","52.465000","12588.000000","52.465000","12588.000000","52.465000",,,,,,,,,,,,,,"50.000000","5718.000000","5531.000000","16.000000","5718.000000","5718.000000",,,,,,,,,,,"3387004.000000","5134160.000000","478724.000000","0.000000","65926568.000000","0.000000","90327564.000000",,"3753872.000000","28408136.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000","5134160.000000","65926568.000000","90327564.000000","3753872.000000","28408136.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23099328.000000",,,,,,,,"142.000000","5713.000000",,,,,,,,,,,"3892.000000","582.000000","569.000000","569.000000","733.000000","852.000000","714.000000","0.000000","0.000000","0.000000","510.000000","483.000000","488.000000","630.000000","676.000000","601.000000","160.000000","6000.000000",,"8975914.000000",,,,, +"13448.000000","53.805000","13448.000000","53.805000","13448.000000","53.805000",,,,,,,,,,,,,,"57.000000","5242.000000","5013.000000","5.000000","5242.000000","5242.000000",,,,,,,,,,,"3815192.000000","5499436.000000","478724.000000","0.000000","65910024.000000","0.000000","90327564.000000",,"3753872.000000","28390540.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000","5499436.000000","65910024.000000","90327564.000000","3753872.000000","28390540.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23112356.000000",,,,,,,,"163.000000","5250.000000",,,,,,,,,,,"4137.000000","579.000000","563.000000","562.000000","733.000000","852.000000","690.000000","0.000000","0.000000","0.000000","507.000000","484.000000","483.000000","627.000000","676.000000","601.000000","160.000000","6000.000000",,"8975934.000000",,,,, +"12917.000000","52.965000","12917.000000","52.965000","12917.000000","52.965000",,,,,,,,,,,,,,"56.000000","5233.000000","5054.000000","21.000000","5233.000000","5233.000000",,,,,,,,,,,"3668536.000000","5226956.000000","478724.000000","0.000000","65900664.000000","0.000000","90327712.000000",,"3753872.000000","28319972.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000","5226956.000000","65900664.000000","90327712.000000","3753872.000000","28319972.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23116724.000000",,,,,,,,"138.000000","5217.000000",,,,,,,,,,,"4089.000000","578.000000","514.000000","561.000000","733.000000","640.000000","690.000000","0.000000","0.000000","0.000000","506.000000","456.000000","483.000000","627.000000","539.000000","601.000000","160.000000","6000.000000",,"8975954.000000",,,,, +"15504.000000","57.020000","15504.000000","57.020000","15504.000000","57.020000",,,,,,,,,,,,,,"317.000000","7192.500000","6726.000000","11.000000","7192.500000","7192.500000",,,,,,,,,,,"3932356.000000","5306432.000000","478720.000000","0.000000","65898268.000000","0.000000","90327716.000000",,"3753872.000000","28319968.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000","5306432.000000","65898268.000000","90327716.000000","3753872.000000","28319968.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23114052.000000",,,,,,,,"420.000000","6921.000000",,,,,,,,,,,"4034.000000","578.000000","545.000000","567.000000","733.000000","884.000000","714.000000","0.000000","0.000000","0.000000","505.000000","467.000000","485.000000","621.000000","577.000000","601.000000","160.000000","6000.000000",,"8975974.000000",,,,, +"16076.000000","57.910000","16076.000000","57.910000","16076.000000","57.910000",,,,,,,,,,,,,,"56.000000","14948.000000","14891.000000","30.000000","14948.000000","14948.000000",,,,,,,,,,,"3649816.000000","4772236.000000","478720.000000","0.000000","65889080.000000","0.000000","90327716.000000",,"3753872.000000","28333308.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000","4772236.000000","65889080.000000","90327716.000000","3753872.000000","28333308.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23120244.000000",,,,,,,,"241.000000",,,,,,,,,,,,"4303.000000","581.000000","667.000000","585.000000","733.000000","1361.000000","714.000000","0.000000","0.000000","0.000000","505.000000","532.000000","496.000000","620.000000","792.000000","617.000000","160.000000","6000.000000",,"8975994.000000",,,,, +"18156.000000","61.165000","18156.000000","61.165000","18156.000000","61.165000",,,,,,,,,,,,,,"58.000000","5549.500000","5380.000000","11.000000","5549.500000","5549.500000",,,,,,,,,,,"3780056.000000","4948828.000000","478716.000000","0.000000","65875864.000000","0.000000","90327720.000000",,"3753872.000000","28336428.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000","4948828.000000","65875864.000000","90327720.000000","3753872.000000","28336428.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23131476.000000",,,,,,,,"135.000000","5525.000000",,,,,,,,,,,"4342.000000","584.000000","721.000000","599.000000","748.000000","1361.000000","721.000000","0.000000","0.000000","0.000000","507.000000","583.000000","510.000000","621.000000","792.000000","630.000000","160.000000","6000.000000",,"8976014.000000",,,,, +"17872.000000","60.710000","17872.000000","60.710000","17872.000000","60.710000",,,,,,,,,,,,,,"104.000000","6486.500000","5622.000000","8.000000","6486.500000","6486.500000",,,,,,,,,,,"3784316.000000","5151216.000000","478716.000000","0.000000","65861956.000000","0.000000","90327572.000000",,"3753872.000000","28349116.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000","5151216.000000","65861956.000000","90327572.000000","3753872.000000","28349116.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23141728.000000",,,,,,,,"228.000000","7018.000000",,,,,,,,,,,"4529.000000","590.000000","778.000000","611.000000","795.000000","1361.000000","852.000000","0.000000","0.000000","0.000000","512.000000","642.000000","520.000000","643.000000","792.000000","676.000000","160.000000","6000.000000",,"8976034.000000",,,,, +"16428.000000","58.435000","16428.000000","58.435000","16428.000000","58.435000",,,,,,,,,,,,,,"54.000000","5499.000000","4860.000000","11.000000","5499.000000","5499.000000",,,,,,,,,,,"3932268.000000","5195452.000000","478716.000000","0.000000","65843528.000000","0.000000","90327572.000000",,"3753872.000000","28393076.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000","5195452.000000","65843528.000000","90327572.000000","3753872.000000","28393076.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23155524.000000",,,,,,,,"332.000000","5751.000000",,,,,,,,,,,"4133.000000","587.000000","717.000000","611.000000","748.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","520.000000","627.000000","791.000000","676.000000","160.000000","6000.000000",,"8976054.000000",,,,, +"17381.000000","59.930000","17381.000000","59.930000","17381.000000","59.930000",,,,,,,,,,,,,,"59.000000","8578.000000","8140.000000","12.000000","8578.000000","8578.000000",,,,,,,,,,,"3953240.000000","5300308.000000","478716.000000","0.000000","65836776.000000","0.000000","90327572.000000",,"3753872.000000","28400124.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000","5300308.000000","65836776.000000","90327572.000000","3753872.000000","28400124.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23156248.000000",,,,,,,,"436.000000","8520.000000",,,,,,,,,,,"4333.000000","588.000000","749.000000","619.000000","757.000000","897.000000","852.000000","0.000000","0.000000","0.000000","509.000000","619.000000","523.000000","621.000000","734.000000","676.000000","160.000000","6000.000000",,"8976074.000000",,,,, +"15687.000000","57.270000","15687.000000","57.270000","15687.000000","57.270000",,,,,,,,,,,,,,"460.000000","8076.000000","7461.000000","13.000000","8076.000000","8076.000000",,,,,,,,,,,"4360516.000000","5820964.000000","478712.000000","0.000000","65833308.000000","0.000000","90327576.000000",,"3753872.000000","28405352.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000","5820964.000000","65833308.000000","90327576.000000","3753872.000000","28405352.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23159036.000000",,,,,,,,"576.000000","7655.000000",,,,,,,,,,,"4196.000000","590.000000","695.000000","623.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","587.000000","527.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976094.000000",,,,, +"14398.000000","55.250000","14398.000000","55.250000","14398.000000","55.250000",,,,,,,,,,,,,,"66.000000","4858.000000","4662.000000","5.000000","4858.000000","4858.000000",,,,,,,,,,,"4612176.000000","6387196.000000","478712.000000","0.000000","65817948.000000","0.000000","90327576.000000",,"3753872.000000","28436140.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000","6387196.000000","65817948.000000","90327576.000000","3753872.000000","28436140.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23171308.000000",,,,,,,,"143.000000","4844.000000",,,,,,,,,,,"4023.000000","590.000000","668.000000","629.000000","757.000000","837.000000","852.000000","0.000000","0.000000","0.000000","510.000000","568.000000","534.000000","621.000000","667.000000","676.000000","160.000000","6000.000000",,"8976114.000000",,,,, +"13780.000000","54.270000","13780.000000","54.270000","13780.000000","54.270000",,,,,,,,,,,,,,"48.000000","5593.000000","5408.000000","15.000000","5593.000000","5593.000000",,,,,,,,,,,"4780092.000000","6429288.000000","478712.000000","0.000000","65802764.000000","0.000000","90327724.000000",,"3753872.000000","28460456.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000","6429288.000000","65802764.000000","90327724.000000","3753872.000000","28460456.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23181912.000000",,,,,,,,"130.000000","5599.000000",,,,,,,,,,,"3994.000000","591.000000","613.000000","634.000000","757.000000","687.000000","852.000000","0.000000","0.000000","0.000000","510.000000","526.000000","535.000000","621.000000","605.000000","676.000000","160.000000","6000.000000",,"8976133.000000",,,,, +"16853.000000","59.090000","16853.000000","59.090000","16853.000000","59.090000",,,,,,,,,,,,,,"54.000000","6214.000000","6022.000000","6.000000","6214.000000","6214.000000",,,,,,,,,,,"4142032.000000","5689428.000000","478712.000000","0.000000","65805508.000000","0.000000","90327624.000000",,"3753872.000000","28462996.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000","5689428.000000","65805508.000000","90327624.000000","3753872.000000","28462996.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23184940.000000",,,,,,,,"148.000000","6203.000000",,,,,,,,,,,"4250.000000","595.000000","644.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","513.000000","542.000000","544.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976154.000000",,,,, +"14298.000000","55.085000","14298.000000","55.085000","14298.000000","55.085000",,,,,,,,,,,,,,"50.000000","4735.500000","4507.000000","6.000000","4735.500000","4735.500000",,,,,,,,,,,"4299160.000000","5910628.000000","478712.000000","0.000000","65804908.000000","0.000000","90328052.000000",,"3753872.000000","28522296.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000","5910628.000000","65804908.000000","90328052.000000","3753872.000000","28522296.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23183960.000000",,,,,,,,"161.000000","4752.000000",,,,,,,,,,,"3978.000000","597.000000","629.000000","649.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","514.000000","536.000000","548.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976173.000000",,,,, +"15093.000000","56.325000","15093.000000","56.325000","15093.000000","56.325000",,,,,,,,,,,,,,"41.000000","6169.000000","5983.000000","4.000000","6169.000000","6169.000000",,,,,,,,,,,"4466508.000000","6015056.000000","478712.000000","0.000000","65795524.000000","0.000000","90327624.000000",,"3753872.000000","28542888.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000","6015056.000000","65795524.000000","90327624.000000","3753872.000000","28542888.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23188036.000000",,,,,,,,"144.000000","6169.000000",,,,,,,,,,,"4194.000000","600.000000","635.000000","646.000000","784.000000","890.000000","872.000000","0.000000","0.000000","0.000000","516.000000","552.000000","547.000000","630.000000","740.000000","678.000000","160.000000","6000.000000",,"8976194.000000",,,,, +"14034.000000","54.655000","14034.000000","54.655000","14034.000000","54.655000",,,,,,,,,,,,,,"56.000000","5221.500000","5049.000000","6.000000","5221.500000","5221.500000",,,,,,,,,,,"4723728.000000","6448860.000000","478712.000000","0.000000","65779708.000000","0.000000","90327708.000000",,"3753872.000000","28557680.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000","6448860.000000","65779708.000000","90327708.000000","3753872.000000","28557680.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23199836.000000",,,,,,,,"146.000000","5190.000000",,,,,,,,,,,"3967.000000","601.000000","582.000000","649.000000","784.000000","698.000000","872.000000","0.000000","0.000000","0.000000","517.000000","510.000000","550.000000","630.000000","566.000000","678.000000","160.000000","6000.000000",,"8976213.000000",,,,, +"14513.000000","55.395000","14513.000000","55.395000","14513.000000","55.395000",,,,,,,,,,,,,,"52.000000","11713.000000","11430.000000","47.000000","11713.000000","11713.000000",,,,,,,,,,,"4891500.000000","6563636.000000","478712.000000","0.000000","65762076.000000","0.000000","90327708.000000",,"3753872.000000","28580028.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000","6563636.000000","65762076.000000","90327708.000000","3753872.000000","28580028.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23212680.000000",,,,,,,,"207.000000","11735.000000",,,,,,,,,,,"4167.000000","604.000000","604.000000","657.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","519.000000","520.000000","555.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976234.000000",,,,, +"13197.000000","53.335000","13197.000000","53.335000","13197.000000","53.335000",,,,,,,,,,,,,,"121.000000","6919.000000","5809.000000","8.000000","6919.000000","6919.000000",,,,,,,,,,,"4828584.000000","6374896.000000","478712.000000","0.000000","65763272.000000","0.000000","90327708.000000",,"3753872.000000","28573952.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000","6374896.000000","65763272.000000","90327708.000000","3753872.000000","28573952.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23208576.000000",,,,,,,,"308.000000","7598.000000",,,,,,,,,,,"4157.000000","604.000000","572.000000","658.000000","784.000000","685.000000","872.000000","0.000000","0.000000","0.000000","520.000000","501.000000","556.000000","630.000000","584.000000","678.000000","160.000000","6000.000000",,"8976253.000000",,,,, +"14599.000000","55.530000","14599.000000","55.530000","14599.000000","55.530000",,,,,,,,,,,,,,"392.000000","8179.000000","6641.000000","5.000000","8179.000000","8179.000000",,,,,,,,,,,"4801996.000000","6260304.000000","478708.000000","0.000000","65754900.000000","0.000000","90327572.000000",,"3753872.000000","28582464.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000","6260304.000000","65754900.000000","90327572.000000","3753872.000000","28582464.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23214248.000000",,,,,,,,"557.000000","8768.000000",,,,,,,,,,,"4075.000000","599.000000","572.000000","654.000000","729.000000","652.000000","837.000000","0.000000","0.000000","0.000000","516.000000","502.000000","557.000000","621.000000","584.000000","678.000000","160.000000","6000.000000",,"8976274.000000",,,,, +"16687.000000","58.805000","16687.000000","58.805000","16687.000000","58.805000",,,,,,,,,,,,,,"75.000000","9394.500000","8011.000000","27.000000","9394.500000","9394.500000",,,,,,,,,,,"4603344.000000","6113500.000000","478708.000000","0.000000","65757556.000000","0.000000","90327572.000000",,"3753872.000000","28571312.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000","6113500.000000","65757556.000000","90327572.000000","3753872.000000","28571312.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23209544.000000",,,,,,,,"273.000000","10429.000000",,,,,,,,,,,"4183.000000","596.000000","629.000000","649.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","513.000000","528.000000","554.000000","617.000000","752.000000","678.000000","160.000000","6000.000000",,"8976294.000000",,,,, +"13518.000000","53.830000","13518.000000","53.830000","13518.000000","53.830000",,,,,,,,,,,,,,"109.000000","4267.000000","3029.000000","16.000000","4267.000000","4267.000000",,,,,,,,,,,"4582624.000000","6218608.000000","478708.000000","0.000000","65742504.000000","0.000000","90327824.000000",,"3753872.000000","28440044.000000","0.000000","1429432.000000","0.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000","6218608.000000","65742504.000000","90327824.000000","3753872.000000","28440044.000000","1429432.000000","1630920.000000",,,,"11122360.000000","23221852.000000",,,,,,,,"205.000000","5191.000000",,,,,,,,,,,"4062.000000","595.000000","638.000000","641.000000","721.000000","981.000000","868.000000","0.000000","0.000000","0.000000","511.000000","527.000000","545.000000","610.000000","752.000000","667.000000","160.000000","6000.000000",,"8976313.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host-instance.csv b/splunk_eventgen/samples/vmware-actuals-host-instance.csv new file mode 100644 index 00000000..1ac2f32d --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host-instance.csv @@ -0,0 +1,852 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxTotLat_ms","MaxUsg_KBps","MinUsg_KBps",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +,"22.964583",,"22.964583",,"22.964583",,,,,,,"3837.916667",,,,,"4593.916667",,"11.311111",,"372.177778",,,,"29.600000","1.422222","1.177778","1.400000","31.422222","0.000000","344.925926","0.000000","13.444444","328.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","721.625000",,,,,"0.000000","0.000000",,,"2147.375000","2729.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.476250",,"22.476250",,"22.476250",,,,,,,"4239.833333",,,,,"4496.125000",,"4.200000",,"330.977778",,,,"24.714286","0.866667","0.488889","1.533333","26.977778","0.000000","300.037037","0.000000","8.888889","289.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","612.125000",,,,,"0.000000","0.000000",,,"1756.500000","2189.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.342917",,"22.342917",,"22.342917",,,,,,,"4169.291667",,,,,"4469.250000",,"3.488889",,"292.155556",,,,"18.857143","0.977778","2.733333","127.733333","19.977778","0.000000","221.296296","0.074074","9.592593","210.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","585.625000",,,,,"0.000000","0.000000",,,"1627.625000","2008.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.693333",,"15.693333",,"15.693333",,,,,,,"5570.625000",,,,,"3139.666667",,"19.466667",,"102.533333",,,,"2117.485714","1.177778","56.377778","636.888889","6.533333","0.000000","86.777778","0.259259","14.481481","70.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.000000","181.125000",,,,,"0.000000","0.000000",,,"695.625000","761.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.493333",,"20.493333",,"20.493333",,,,,,,"4138.666667",,,,,"4099.791667",,"4.377778",,"328.400000",,,,"2540.085714","0.888889","9.888889","329.422222","28.222222","0.000000","307.851852","0.111111","10.333333","296.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","638.875000",,,,,"0.000000","0.000000",,,"1909.000000","2327.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.892917",,"20.892917",,"20.892917",,,,,,,"4545.208333",,,,,"4179.416667",,"3.111111",,"117.088889",,,,"2007.628571","0.800000","0.711111","45.266667","5.800000","0.000000","72.592593","0.000000","8.481481","62.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.000000","232.250000",,,,,"0.000000","0.000000",,,"910.375000","983.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.351667",,"17.351667",,"17.351667",,,,,,,"5112.958333",,,,,"3471.541667",,"6.200000",,"1594.355556",,,,"1545.714286","1.000000","3.444444","41.822222","20.733333","0.000000","210.851852","0.000000","10.000000","199.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","2849.875000",,,,,"0.000000","0.000000",,,"5832.375000","8092.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.875417",,"18.875417",,"18.875417",,,,,,,"5122.458333",,,,,"3776.083333",,"3.822222",,"465.133333",,,,"852.114286","0.977778","0.333333","3.400000","16.111111","0.000000","178.925926","0.000000","9.925926","167.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.250000","1274.375000",,,,,"0.000000","0.000000",,,"6969.625000","7389.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.506667",,"17.506667",,"17.506667",,,,,,,"5386.166667",,,,,"3502.125000",,"58.266667",,"900.933333",,,,"42.371429","3.377778","0.600000","8.222222","44.355556","0.000000","502.333333","0.000000","36.481481","464.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"132.875000","1854.250000",,,,,"0.000000","0.000000",,,"6107.625000","7459.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.251667",,"22.251667",,"22.251667",,,,,,,"4570.833333",,,,,"4451.208333",,"4.400000",,"525.377778",,,,"45.314286","1.177778","0.444444","2.377778","49.311111","0.000000","521.592593","0.000000","11.148148","508.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","974.000000",,,,,"0.000000","0.000000",,,"2777.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.629583",,"21.629583",,"21.629583",,,,,,,"4419.291667",,,,,"4326.625000",,"24.133333",,"461.222222",,,,"38.057143","1.155556","0.266667","1.733333","41.555556","0.000000","445.777778","0.000000","11.555556","433.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.000000","913.750000",,,,,"0.000000","0.000000",,,"2767.000000","3537.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.837917",,"20.837917",,"20.837917",,,,,,,"4725.791667",,,,,"4168.458333",,"105.177778",,"389.488889",,,,"33.942857","2.733333","0.288889","2.066667","35.044444","0.000000","392.518519","0.000000","26.777778","363.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"154.125000","691.500000",,,,,"0.000000","0.000000",,,"2393.375000","2793.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.988750",,"18.988750",,"18.988750",,,,,,,"5670.541667",,,,,"3798.583333",,"57.800000",,"337.444444",,,,"23.685714","1.333333","0.400000","1.555556","25.111111","0.000000","277.222222","0.000000","14.555556","261.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"167.750000","622.250000",,,,,"0.000000","0.000000",,,"2163.125000","2381.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.806250",,"18.806250",,"18.806250",,,,,,,"5040.250000",,,,,"3762.166667",,"257.888889",,"394.177778",,,,"37.542857","8.200000","0.355556","1.400000","33.911111","0.000000","438.925926","0.000000","89.851852","347.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"492.750000","775.625000",,,,,"0.000000","0.000000",,,"3455.500000","3576.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.132917",,"20.132917",,"20.132917",,,,,,,"4924.583333",,,,,"4027.625000",,"145.488889",,"387.755556",,,,"40.114286","4.911111","0.177778","1.088889","39.111111","0.000000","450.333333","0.000000","54.666667","391.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"289.625000","8.285714",,,,,"0.000000","0.000000",,,"2861.250000","3031.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.448750",,"18.448750",,"18.448750",,,,,,,"5074.125000",,,,,"3690.750000",,"118.133333",,"331.933333",,,,"32.285714","4.022222","0.644444","1.400000","31.911111","0.000000","370.703704","0.000000","43.703704","325.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.875000","651.000000",,,,,"0.000000","0.000000",,,"2537.000000","2851.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.191667",,"22.191667",,"22.191667",,,,,,,"3835.208333",,,,,"4439.166667",,"89.844444",,"472.755556",,,,"41.514286","5.422222","0.266667","1.755556","40.755556","0.000000","473.000000","0.000000","59.148148","412.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"191.000000","854.375000",,,,,"0.000000","0.000000",,,"2865.250000","3436.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.297917",,"22.297917",,"22.297917",,,,,,,"4117.208333",,,,,"4460.500000",,"9.377778",,"338.533333",,,,"30.800000","1.844444","0.333333","1.377778","32.222222","0.000000","349.407407","0.000000","19.666667","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","851.875000",,,,,"0.000000","0.000000",,,"5608.125000","6200.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.939167",,"21.939167",,"21.939167",,,,,,,"3914.291667",,,,,"4388.708333",,"36.644444",,"251.800000",,,,"2011.342857","9.066667","0.333333","1.977778","20.200000","0.000000","308.185185","0.000000","99.666667","207.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.625000","621.375000",,,,,"0.000000","0.000000",,,"4747.250000","5122.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.502083",,"22.502083",,"22.502083",,,,,,,"4223.416667",,,,,"4501.333333",,"3.977778",,"436.200000",,,,"2518.285714","0.955556","0.555556","2.533333","28.400000","0.000000","300.444444","0.000000","9.296296","289.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","827.375000",,,,,"0.000000","0.000000",,,"2245.250000","2863.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.317500",,"22.317500",,"22.317500",,,,,,,"4361.833333",,,,,"4464.500000",,"31.844444",,"334.466667",,,,"1829.628571","2.755556","1.822222","1.733333","19.377778","0.000000","233.296296","0.000000","28.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"96.625000","624.250000",,,,,"0.000000","0.000000",,,"2522.000000","2492.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.582500",,"27.582500",,"27.582500",,,,,,,"2615.625000",,,,,"5517.666667",,"17.266667",,"553.600000",,,,"1514.142857","2.177778","0.377778","1.422222","49.777778","0.000000","524.222222","0.000000","23.370370","499.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.000000","1017.125000",,,,,"0.000000","0.000000",,,"3092.125000","3738.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.474167",,"25.474167",,"25.474167",,,,,,,"3153.583333",,,,,"5095.666667",,"3.600000",,"479.800000",,,,"1274.600000","0.977778","1.022222","3.155556","43.333333","0.000000","443.851852","0.000000","9.703704","432.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","871.500000",,,,,"0.000000","0.000000",,,"2500.625000","3097.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.752083",,"21.752083",,"21.752083",,,,,,,"4219.750000",,,,,"4351.375000",,"3.488889",,"386.511111",,,,"32.400000","1.022222","0.133333","2.222222","34.600000","0.000000","358.481481","0.000000","9.851852","347.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","714.750000",,,,,"0.000000","0.000000",,,"2142.625000","2569.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.273750",,"25.273750",,"25.273750",,,,,,,"3686.666667",,,,,"5055.708333",,"11.066667",,"594.377778",,,,"41.942857","1.844444","0.266667","1.733333","44.244444","0.000000","462.000000","0.000000","19.555556","440.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","858.125000",,,,,"0.000000","0.000000",,,"2565.250000","3305.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.602917",,"24.602917",,"24.602917",,,,,,,"3892.000000",,,,,"4921.583333",,"12.266667",,"406.244444",,,,"34.800000","1.577778","0.200000","1.777778","36.666667","0.000000","385.222222","0.000000","17.222222","366.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","1038.625000",,,,,"0.000000","0.000000",,,"2794.000000","3562.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.929583",,"22.929583",,"22.929583",,,,,,,"4382.750000",,,,,"4586.875000",,"16.155556",,"587.400000",,,,"35.485714","2.266667","0.266667","3.800000","37.000000","0.000000","398.222222","0.000000","23.666667","373.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1032.000000",,,,,"0.000000","0.000000",,,"2702.250000","3407.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.956250",,"23.956250",,"23.956250",,,,,,,"4120.625000",,,,,"4792.125000",,"2.577778",,"394.711111",,,,"36.142857","0.888889","0.177778","1.244444","38.755556","0.000000","394.629630","0.000000","8.444444","384.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","765.375000",,,,,"0.000000","0.000000",,,"2260.875000","2818.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.483750",,"23.483750",,"23.483750",,,,,,,"4405.833333",,,,,"4697.625000",,"9.466667",,"365.266667",,,,"27.057143","1.488889","0.777778","2.555556","27.977778","0.000000","297.333333","0.000000","14.222222","280.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","793.625000",,,,,"0.000000","0.000000",,,"4382.875000","4854.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.832083",,"21.832083",,"21.832083",,,,,,,"4539.750000",,,,,"4367.541667",,"22.111111",,"306.777778",,,,"26.828571","1.911111","0.244444","1.866667","27.377778","0.000000","302.925926","0.000000","21.333333","277.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.125000","867.375000",,,,,"0.000000","0.000000",,,"5982.750000","6615.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.718750",,"24.718750",,"24.718750",,,,,,,"4033.958333",,,,,"4944.666667",,"2.711111",,"482.800000",,,,"40.400000","0.933333","0.133333","2.511111","43.555556","0.000000","444.185185","0.000000","8.666667","434.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","864.125000",,,,,"0.000000","0.000000",,,"2486.125000","3033.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.872917",,"21.872917",,"21.872917",,,,,,,"3919.375000",,,,,"4375.583333",,"3.888889",,"396.533333",,,,"32.342857","0.955556","0.133333","2.022222","34.666667","0.000000","358.703704","0.000000","9.518519","347.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","735.625000",,,,,"0.000000","0.000000",,,"2147.625000","2750.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.719583",,"26.719583",,"26.719583",,,,,,,"2485.583333",,,,,"5344.791667",,"3.444444",,"443.533333",,,,"23.828571","1.044444","0.422222","4.200000","25.266667","0.000000","268.629630","0.000000","9.629630","257.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","833.000000",,,,,"0.000000","0.000000",,,"2137.500000","2744.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.444167",,"31.444167",,"31.444167",,,,,,,"1250.958333",,,,,"6289.916667",,"3.866667",,"561.933333",,,,"1557.628571","0.866667","0.622222","1.488889","40.866667","0.000000","425.666667","0.000000","8.444444","416.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","1086.250000",,,,,"0.000000","0.000000",,,"2836.000000","3618.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"38.192917",,"38.192917",,"38.192917",,,,,,,"665.458333",,,,,"7639.458333",,"2.822222",,"401.244444",,,,"2194.857143","0.844444","0.622222","2.066667","26.155556","0.000000","275.074074","0.000000","8.444444","265.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","721.750000",,,,,"0.000000","0.000000",,,"1910.750000","2503.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"37.478333",,"37.478333",,"37.478333",,,,,,,"430.583333",,,,,"7496.791667",,"4.422222",,"711.511111",,,,"1416.285714","0.955556","2.266667","3.088889","39.177778","0.000000","411.592593","0.000000","9.814815","400.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.375000","1420.000000",,,,,"0.000000","0.000000",,,"4759.250000","5401.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.707500",,"32.707500",,"32.707500",,,,,,,"1046.333333",,,,,"6542.458333",,"13.688889",,"412.977778",,,,"1384.228571","1.533333","1.222222","3.488889","29.733333","0.000000","318.407407","0.000000","14.148148","301.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","980.625000",,,,,"0.000000","0.000000",,,"5406.750000","6490.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.303333",,"29.303333",,"29.303333",,,,,,,"1384.750000",,,,,"5861.583333",,"4.755556",,"514.822222",,,,"1464.542857","1.000000","0.577778","1.955556","42.911111","0.000000","449.296296","0.000000","10.296296","437.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1227.625000",,,,,"0.000000","0.000000",,,"5596.750000","6783.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.291667",,"26.291667",,"26.291667",,,,,,,"2767.208333",,,,,"5259.166667",,"3.200000",,"420.111111",,,,"1171.257143","0.933333","0.355556","3.088889","37.155556","0.000000","387.259259","0.000000","9.407407","376.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1028.125000",,,,,"0.000000","0.000000",,,"5272.375000","6411.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.346250",,"26.346250",,"26.346250",,,,,,,"3580.500000",,,,,"5270.208333",,"3.533333",,"486.088889",,,,"39.600000","0.955556","0.355556","4.333333","42.866667","0.000000","446.740741","0.000000","9.703704","435.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.750000","1147.875000",,,,,"0.000000","0.000000",,,"6006.625000","7280.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.151667",,"24.151667",,"24.151667",,,,,,,"3947.916667",,,,,"4831.208333",,"3.066667",,"457.511111",,,,"37.971429","0.800000","0.666667","2.533333","41.266667","0.000000","431.259259","0.000000","8.629630","421.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1103.250000",,,,,"0.000000","0.000000",,,"5842.500000","7036.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.313333",,"25.313333",,"25.313333",,,,,,,"3857.875000",,,,,"5063.500000",,"2.977778",,"436.466667",,,,"30.857143","0.933333","0.288889","2.288889","33.377778","0.000000","353.370370","0.000000","8.851852","343.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1139.000000",,,,,"0.000000","0.000000",,,"5929.000000","7105.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.853750",,"25.853750",,"25.853750",,,,,,,"4312.583333",,,,,"5171.833333",,"3.822222",,"458.933333",,,,"35.800000","0.955556","0.311111","1.777778","38.622222","0.000000","403.074074","0.000000","9.629630","392.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1163.250000",,,,,"0.000000","0.000000",,,"6204.500000","7375.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.745417",,"25.745417",,"25.745417",,,,,,,"3276.208333",,,,,"5150.083333",,"8.555556",,"465.933333",,,,"38.228571","1.466667","0.222222","2.444444","40.755556","0.000000","433.444444","0.000000","13.555556","417.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","1088.625000",,,,,"0.000000","0.000000",,,"5674.125000","6719.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.011250",,"25.011250",,"25.011250",,,,,,,"4086.708333",,,,,"5003.083333",,"22.644444",,"548.977778",,,,"39.171429","2.111111","0.244444","2.533333","40.955556","0.000000","440.296296","0.000000","23.148148","413.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.875000","1291.750000",,,,,"0.000000","0.000000",,,"6326.500000","7610.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.236667",,"24.236667",,"24.236667",,,,,,,"3924.333333",,,,,"4848.250000",,"4.200000",,"419.888889",,,,"34.828571","0.955556","0.311111","1.466667","37.533333","0.000000","392.185185","0.000000","9.296296","381.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1073.125000",,,,,"0.000000","0.000000",,,"5831.125000","7042.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.887500",,"25.887500",,"25.887500",,,,,,,"3637.375000",,,,,"5178.583333",,"3.333333",,"416.911111",,,,"33.400000","0.933333","0.755556","2.200000","36.088889","0.000000","377.370370","0.000000","8.888889","367.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","312.000000",,,,,"0.000000","0.000000",,,"5630.625000","6643.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.725833",,"32.725833",,"32.725833",,,,,,,"1537.458333",,,,,"6546.083333",,"5.333333",,"643.022222",,,,"44.342857","1.044444","1.177778","2.000000","48.111111","0.000000","501.777778","0.000000","10.740741","489.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.625000","1437.375000",,,,,"0.000000","0.000000",,,"6435.500000","7798.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.407083",,"23.407083",,"23.407083",,,,,,,"4021.708333",,,,,"4682.291667",,"4.133333",,"288.022222",,,,"1927.628571","0.844444","0.333333","2.222222","18.355556","0.000000","198.333333","0.000000","8.666667","188.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","834.625000",,,,,"0.000000","0.000000",,,"5070.500000","6029.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.535833",,"23.535833",,"23.535833",,,,,,,"3934.625000",,,,,"4708.000000",,"3.222222",,"424.888889",,,,"2305.514286","1.000000","0.244444","4.422222","10.288889","0.000000","114.259259","0.000000","9.296296","103.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.125000","1098.500000",,,,,"0.000000","0.000000",,,"12402.375000","7026.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.125833",,"26.125833",,"26.125833",,,,,,,"3436.583333",,,,,"5225.708333",,"10.533333",,"439.733333",,,,"1775.428571","1.911111","0.400000","3.355556","26.066667","0.000000","286.111111","0.000000","18.074074","264.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.375000","885.000000",,,,,"0.000000","0.000000",,,"6061.375000","6468.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.251250",,"30.251250",,"30.251250",,,,,,,"2742.750000",,,,,"6051.208333",,"5.555556",,"869.511111",,,,"1563.600000","2.244444","0.466667","2.733333","50.377778","0.000000","525.148148","0.000000","20.407407","499.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.500000","1860.625000",,,,,"0.000000","0.000000",,,"7328.750000","9043.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.794167",,"28.794167",,"28.794167",,,,,,,"2946.666667",,,,,"5759.958333",,"6.311111",,"1305.400000",,,,"1410.028571","1.044444","0.666667","6.377778","37.111111","0.000000","380.555556","0.000000","10.703704","368.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.000000","2956.750000",,,,,"0.000000","0.000000",,,"8895.000000","11428.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.132500",,"30.132500",,"30.132500",,,,,,,"2985.083333",,,,,"6027.416667",,"3.733333",,"1372.088889",,,,"185.800000","0.955556","0.311111","3.933333","46.666667","0.000000","473.296296","0.000000","9.518519","462.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","2649.125000",,,,,"0.000000","0.000000",,,"8579.250000","10945.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.247917",,"26.247917",,"26.247917",,,,,,,"3586.083333",,,,,"5250.541667",,"6.822222",,"1792.822222",,,,"35.971429","1.333333","0.377778","6.400000","37.555556","0.000000","372.888889","0.000000","13.148148","358.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.250000","3696.250000",,,,,"0.000000","0.000000",,,"9983.625000","13190.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.460833",,"26.460833",,"26.460833",,,,,,,"3610.125000",,,,,"5293.166667",,"317.622222",,"2913.555556",,,,"52.485714","6.688889","1.822222","7.688889","50.155556","0.000000","544.481481","0.000000","71.888889","471.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"658.125000","6003.000000",,,,,"0.000000","0.000000",,,"15490.125000","19691.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.725833",,"26.725833",,"26.725833",,,,,,,"3503.375000",,,,,"5345.958333",,"4.688889",,"1796.844444",,,,"34.428571","1.111111","0.733333","4.933333","35.866667","0.000000","353.259259","0.000000","11.000000","340.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","3539.375000",,,,,"0.000000","0.000000",,,"9893.250000","12720.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.754167",,"24.754167",,"24.754167",,,,,,,"3637.333333",,,,,"4951.666667",,"3.466667",,"1687.288889",,,,"33.714286","0.933333","0.311111","4.622222","35.488889","0.000000","349.666667","0.000000","9.000000","339.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.875000","3469.750000",,,,,"0.000000","0.000000",,,"9989.125000","12468.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.119583",,"24.119583",,"24.119583",,,,,,,"3458.333333",,,,,"4824.625000",,"8.288889",,"1632.711111",,,,"34.657143","1.466667","0.333333","4.688889","35.844444","0.000000","359.592593","0.000000","13.407407","343.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","223.285714",,,,,"0.000000","0.000000",,,"8630.125000","10818.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.765833",,"23.765833",,"23.765833",,,,,,,"3944.208333",,,,,"4754.208333",,"22.155556",,"582.155556",,,,"38.714286","2.044444","0.177778","3.133333","40.577778","0.000000","436.888889","0.000000","22.111111","410.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.000000","1610.875000",,,,,"0.000000","0.000000",,,"7299.500000","8270.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.970833",,"23.970833",,"23.970833",,,,,,,"3990.666667",,,,,"4795.333333",,"4.777778",,"385.822222",,,,"35.142857","1.133333","0.266667","1.777778","37.533333","0.000000","388.370370","0.000000","11.185185","375.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","805.875000",,,,,"0.000000","0.000000",,,"3684.125000","4286.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.576250",,"27.576250",,"27.576250",,,,,,,"3005.833333",,,,,"5516.291667",,"4.622222",,"478.844444",,,,"36.142857","1.022222","0.222222","2.622222","38.911111","0.000000","403.814815","0.000000","10.000000","392.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","870.500000",,,,,"0.000000","0.000000",,,"2351.750000","3019.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.643333",,"27.643333",,"27.643333",,,,,,,"3044.541667",,,,,"5529.541667",,"64.644444",,"1175.955556",,,,"37.742857","3.133333","0.488889","4.355556","38.111111","0.000000","406.444444","0.000000","33.037037","371.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.750000","2135.875000",,,,,"0.000000","0.000000",,,"4715.250000","6257.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.459167",,"31.459167",,"31.459167",,,,,,,"1749.458333",,,,,"6293.083333",,"3.844444",,"469.777778",,,,"1581.542857","0.866667","0.422222","2.288889","34.444444","0.000000","358.666667","0.000000","8.703704","348.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","996.250000",,,,,"0.000000","0.000000",,,"2569.875000","3386.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.017500",,"31.017500",,"31.017500",,,,,,,"1735.458333",,,,,"6204.125000",,"4.866667",,"399.711111",,,,"2372.742857","1.088889","0.222222","2.222222","33.177778","0.000000","346.444444","0.000000","10.703704","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","721.625000",,,,,"0.000000","0.000000",,,"2048.250000","2611.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.515417",,"25.515417",,"25.515417",,,,,,,"2905.333333",,,,,"5104.291667",,"3.955556",,"269.333333",,,,"1807.171429","0.955556","0.466667","1.888889","18.200000","0.000000","197.629630","0.000000","9.666667","186.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.250000","557.000000",,,,,"0.000000","0.000000",,,"2262.625000","2340.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.461250",,"28.461250",,"28.461250",,,,,,,"2376.708333",,,,,"5693.041667",,"10.377778",,"666.755556",,,,"1566.885714","1.711111","1.888889","2.488889","41.088889","0.000000","438.000000","0.000000","16.333333","418.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1240.000000",,,,,"0.000000","0.000000",,,"3354.000000","4094.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.708750",,"26.708750",,"26.708750",,,,,,,"2640.333333",,,,,"5342.791667",,"4.511111",,"455.866667",,,,"1565.000000","0.977778","0.133333","2.266667","32.866667","0.000000","337.370370","0.000000","9.481481","326.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","862.000000",,,,,"0.000000","0.000000",,,"2340.500000","3036.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.004167",,"30.004167",,"30.004167",,,,,,,"2952.875000",,,,,"6001.833333",,"4.822222",,"1185.377778",,,,"347.628571","0.911111","0.777778","2.822222","116.111111","0.000000","1251.925926","0.000000","9.185185","1241.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.625000","2143.000000",,,,,"0.000000","0.000000",,,"5799.125000","7420.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.079167",,"27.079167",,"27.079167",,,,,,,"3543.291667",,,,,"5416.833333",,"146.888889",,"1047.355556",,,,"102.657143","3.933333","0.355556","2.644444","113.800000","0.000000","1274.148148","0.000000","42.481481","1230.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"231.875000","2085.500000",,,,,"0.000000","0.000000",,,"7827.500000","9313.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.192083",,"24.192083",,"24.192083",,,,,,,"3570.375000",,,,,"4839.541667",,"473.533333",,"1289.311111",,,,"109.228571","14.022222","0.466667","2.911111","110.777778","0.000000","1342.148148","0.000000","153.777778","1186.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1025.250000","2656.875000",,,,,"0.000000","0.000000",,,"12709.125000","13609.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.317917",,"24.317917",,"24.317917",,,,,,,"3180.750000",,,,,"4864.416667",,"28.755556",,"1176.911111",,,,"92.971429","1.822222","0.333333","2.000000","104.222222","0.000000","1132.703704","0.000000","18.222222","1113.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.500000","2223.250000",,,,,"0.000000","0.000000",,,"6840.875000","8657.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.021667",,"26.021667",,"26.021667",,,,,,,"3431.416667",,,,,"5205.208333",,"330.777778",,"1422.577778",,,,"59.485714","6.133333","0.422222","5.488889","60.200000","0.000000","680.148148","0.000000","65.851852","612.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"659.500000","2776.000000",,,,,"0.000000","0.000000",,,"7590.000000","9186.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.982917",,"25.982917",,"25.982917",,,,,,,"3354.541667",,,,,"5197.375000",,"46.866667",,"1277.155556",,,,"79.514286","2.155556","0.444444","3.533333","87.755556","0.000000","948.629630","0.000000","22.555556","924.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.625000","2404.125000",,,,,"0.000000","0.000000",,,"5945.500000","7793.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.697083",,"22.697083",,"22.697083",,,,,,,"3838.000000",,,,,"4540.291667",,"386.800000",,"1148.755556",,,,"44.628571","10.266667","0.444444","2.177778","38.866667","0.000000","505.000000","0.000000","111.185185","388.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.500000","27.285714",,,,,"0.000000","0.000000",,,"6327.500000","7327.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.809167",,"23.809167",,"23.809167",,,,,,,"3817.083333",,,,,"4762.708333",,"1003.533333",,"689.311111",,,,"58.600000","23.200000","0.444444","2.155556","42.400000","0.000000","678.925926","0.000000","254.814815","422.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2026.875000","1270.375000",,,,,"0.000000","0.000000",,,"8425.750000","7120.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.437500",,"23.437500",,"23.437500",,,,,,,"3851.333333",,,,,"4688.625000",,"898.688889",,"1114.688889",,,,"44.114286","19.466667","0.644444","5.266667","29.755556","0.000000","507.259259","0.000000","214.148148","291.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1667.250000","2101.500000",,,,,"0.000000","0.000000",,,"8415.000000","8224.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.730833",,"25.730833",,"25.730833",,,,,,,"2614.333333",,,,,"5147.291667",,"644.177778",,"882.088889",,,,"58.171429","15.888889","0.711111","3.533333","49.422222","0.000000","682.296296","0.000000","174.296296","506.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1298.375000","1634.375000",,,,,"0.000000","0.000000",,,"7154.750000","7115.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.152083",,"23.152083",,"23.152083",,,,,,,"3951.166667",,,,,"4631.208333",,"7.977778",,"1052.466667",,,,"2694.857143","1.311111","0.711111","4.355556","22.222222","0.000000","234.444444","0.000000","13.666667","219.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.250000","1993.500000",,,,,"0.000000","0.000000",,,"3985.250000","5608.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.417917",,"24.417917",,"24.417917",,,,,,,"3591.208333",,,,,"4884.708333",,"21.022222",,"495.022222",,,,"2548.657143","2.511111","0.488889","3.888889","23.444444","0.000000","261.370370","0.000000","26.592593","233.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","1015.875000",,,,,"0.000000","0.000000",,,"2540.000000","3241.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.929583",,"27.929583",,"27.929583",,,,,,,"2147.083333",,,,,"5586.708333",,"21.533333",,"868.666667",,,,"1876.285714","3.022222","0.533333","1.977778","47.066667","0.000000","515.185185","0.000000","32.481481","481.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"103.375000","1620.125000",,,,,"0.000000","0.000000",,,"4532.250000","5284.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.112500",,"24.112500",,"24.112500",,,,,,,"3121.958333",,,,,"4823.291667",,"18.111111",,"709.733333",,,,"1661.142857","2.066667","0.333333","3.177778","35.377778","0.000000","380.666667","0.000000","21.851852","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1426.000000",,,,,"0.000000","0.000000",,,"4878.250000","5970.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.082500",,"20.082500",,"20.082500",,,,,,,"4590.208333",,,,,"4017.583333",,"34.311111",,"1322.733333",,,,"363.428571","2.977778","0.266667","2.422222","32.333333","0.000000","358.444444","0.000000","30.111111","325.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.250000","2724.625000",,,,,"0.000000","0.000000",,,"9158.750000","11000.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.281667",,"21.281667",,"21.281667",,,,,,,"4209.166667",,,,,"4257.250000",,"151.733333",,"1575.933333",,,,"47.514286","3.622222","1.111111","3.377778","48.733333","0.000000","524.037037","0.000000","38.740741","483.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"7.142857","3256.750000",,,,,"0.000000","0.000000",,,"7761.250000","12288.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.682083",,"21.682083",,"21.682083",,,,,,,"4104.000000",,,,,"4337.208333",,"254.688889",,"1027.733333",,,,"42.685714","5.488889","0.911111","3.111111","41.422222","0.000000","467.592593","0.000000","60.518519","405.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.000000","2192.000000",,,,,"0.000000","0.000000",,,"5907.750000","10556.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.445417",,"17.445417",,"17.445417",,,,,,,"4937.250000",,,,,"3489.875000",,"929.755556",,"924.733333",,,,"43.942857","17.711111","0.822222","2.600000","31.600000","0.000000","515.814815","0.000000","195.185185","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1685.625000","2098.750000",,,,,"0.000000","0.000000",,,"8524.875000","11662.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.408750",,"20.408750",,"20.408750",,,,,,,"4209.791667",,,,,"4082.750000",,"1182.800000",,"520.133333",,,,"63.685714","27.777778","6.955556","1.377778","43.911111","0.000000","753.740741","0.000000","306.111111","446.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2276.000000","1301.625000",,,,,"0.000000","0.000000",,,"9281.250000","11322.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.401250",,"18.401250",,"18.401250",,,,,,,"4867.000000",,,,,"3681.041667",,"956.844444",,"901.733333",,,,"44.428571","19.400000","1.000000","6.666667","30.333333","0.000000","517.407407","0.000000","212.814815","303.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1817.500000","1862.375000",,,,,"0.000000","0.000000",,,"8540.375000","9110.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.967500",,"21.967500",,"21.967500",,,,,,,"4266.583333",,,,,"4394.375000",,"82.644444",,"495.577778",,,,"39.457143","4.644444","0.377778","2.933333","38.800000","0.000000","440.000000","0.000000","51.370370","387.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"270.875000","927.125000",,,,,"0.000000","0.000000",,,"3152.625000","3856.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.862917",,"21.862917",,"21.862917",,,,,,,"4124.875000",,,,,"4373.541667",,"41.488889",,"458.800000",,,,"42.200000","2.222222","0.244444","1.377778","44.266667","0.000000","471.703704","0.000000","24.888889","443.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"88.875000","859.875000",,,,,"0.000000","0.000000",,,"2630.250000","3163.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.792500",,"23.792500",,"23.792500",,,,,,,"3762.458333",,,,,"4759.291667",,"697.288889",,"374.155556",,,,"41.314286","12.177778","0.222222","1.244444","33.800000","0.000000","479.962963","0.000000","131.185185","345.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1136.500000","27.571429",,,,,"0.000000","0.000000",,,"4971.625000","4275.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.510417",,"22.510417",,"22.510417",,,,,,,"4407.416667",,,,,"4503.166667",,"1482.488889",,"425.577778",,,,"58.971429","30.177778","0.622222","1.600000","36.844444","0.000000","716.111111","0.000000","332.148148","382.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2987.625000","801.375000",,,,,"0.000000","0.000000",,,"10085.375000","7308.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.292083",,"32.292083",,"32.292083",,,,,,,"1454.958333",,,,,"6459.333333",,"1168.111111",,"1076.311111",,,,"56.114286","23.911111","0.222222","4.200000","39.400000","0.000000","668.740741","0.000000","263.259259","404.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2160.125000","2046.750000",,,,,"0.000000","0.000000",,,"9864.500000","8941.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.538333",,"24.538333",,"24.538333",,,,,,,"2955.875000",,,,,"4908.625000",,"637.911111",,"737.133333",,,,"1997.085714","14.244444","0.911111","3.111111","32.355556","0.000000","490.259259","0.000000","156.814815","331.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1336.375000","2480.375000",,,,,"0.000000","0.000000",,,"12365.875000","21627.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.722083",,"23.722083",,"23.722083",,,,,,,"3415.291667",,,,,"4745.166667",,"3.488889",,"300.644444",,,,"2256.542857","0.888889","0.200000","3.355556","21.711111","0.000000","238.074074","0.000000","9.111111","227.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","1136.375000",,,,,"0.000000","0.000000",,,"5967.875000","10321.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.935833",,"26.935833",,"26.935833",,,,,,,"3320.791667",,,,,"5388.166667",,"5.200000",,"453.044444",,,,"1802.257143","1.022222","0.244444","1.622222","32.755556","0.000000","355.851852","0.000000","10.148148","344.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.125000","813.375000",,,,,"0.000000","0.000000",,,"2965.875000","3033.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.629583",,"25.629583",,"25.629583",,,,,,,"3299.666667",,,,,"5127.083333",,"9.888889",,"370.622222",,,,"1583.600000","1.355556","0.444444","1.022222","32.711111","0.000000","359.407407","0.000000","13.925926","344.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","706.125000",,,,,"0.000000","0.000000",,,"2131.625000","2673.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.751250",,"26.751250",,"26.751250",,,,,,,"2614.166667",,,,,"5351.125000",,"4.155556",,"388.822222",,,,"1465.571429","0.844444","0.288889","3.111111","31.644444","0.000000","345.333333","0.000000","8.851852","335.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.375000","804.625000",,,,,"0.000000","0.000000",,,"2357.000000","2940.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.454583",,"22.454583",,"22.454583",,,,,,,"3617.291667",,,,,"4491.958333",,"9.977778",,"308.288889",,,,"59.342857","1.911111","0.444444","1.555556","26.200000","0.000000","293.851852","0.000000","17.555556","273.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","551.375000",,,,,"0.000000","0.000000",,,"1697.500000","2222.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.379583",,"21.379583",,"21.379583",,,,,,,"4372.916667",,,,,"4276.791667",,"972.311111",,"356.955556",,,,"42.457143","18.755556","0.222222","1.666667","29.533333","0.000000","520.000000","0.000000","205.703704","312.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1635.250000","720.875000",,,,,"0.000000","0.000000",,,"6365.000000","5111.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.645417",,"17.645417",,"17.645417",,,,,,,"5236.208333",,,,,"3529.750000",,"1357.600000",,"286.355556",,,,"48.714286","28.511111","0.466667","0.933333","27.044444","0.000000","602.037037","0.000000","313.296296","287.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2751.500000","507.625000",,,,,"0.000000","0.000000",,,"8790.125000","6191.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.974167",,"15.974167",,"15.974167",,,,,,,"5382.916667",,,,,"3195.750000",,"1210.733333",,"989.000000",,,,"52.285714","22.844444","0.288889","3.933333","35.866667","0.000000","613.037037","0.000000","251.370370","360.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.875000","1933.500000",,,,,"0.000000","0.000000",,,"9652.000000","8786.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.382083",,"16.382083",,"16.382083",,,,,,,"5057.666667",,,,,"3277.291667",,"527.066667",,"662.311111",,,,"50.885714","22.377778","0.288889","3.688889","35.088889","0.000000","609.777778","0.000000","247.777778","360.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1096.750000","1172.250000",,,,,"0.000000","0.000000",,,"5754.000000","5650.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.439167",,"14.439167",,"14.439167",,,,,,,"5829.458333",,,,,"2888.916667",,"1724.355556",,"1871.288889",,,,"67.457143","40.777778","0.400000","4.866667","35.244444","0.000000","795.148148","0.000000","448.555556","345.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"3289.500000","3484.125000",,,,,"0.000000","0.000000",,,"15080.375000","14269.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.093750",,"16.093750",,"16.093750",,,,,,,"4969.333333",,,,,"3219.666667",,"1567.200000",,"2178.755556",,,,"73.171429","39.355556","0.511111","6.577778","42.311111","0.000000","847.259259","0.000000","434.851852","408.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.142857","4189.750000",,,,,"0.000000","0.000000",,,"15556.875000","15637.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.780000",,"14.780000",,"14.780000",,,,,,,"5772.666667",,,,,"2956.708333",,"114.488889",,"275.200000",,,,"30.285714","6.488889","1.400000","1.822222","27.644444","0.000000","362.777778","0.000000","70.777778","290.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"302.625000","729.250000",,,,,"0.000000","0.000000",,,"4848.000000","5096.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.180417",,"19.180417",,"19.180417",,,,,,,"4019.833333",,,,,"3837.166667",,"16.777778",,"518.066667",,,,"45.600000","2.111111","0.266667","1.422222","49.044444","0.000000","540.333333","0.000000","20.777778","516.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.750000","1187.875000",,,,,"0.000000","0.000000",,,"6836.375000","7633.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.755000",,"18.755000",,"18.755000",,,,,,,"4642.625000",,,,,"3751.958333",,"9.977778",,"1090.666667",,,,"40.857143","1.177778","0.622222","6.844444","44.200000","0.000000","468.592593","0.000000","12.629630","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"287.500000","2144.625000",,,,,"0.000000","0.000000",,,"8776.250000","7374.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.521250",,"19.521250",,"19.521250",,,,,,,"4656.666667",,,,,"3905.416667",,"5.933333",,"369.044444",,,,"2215.828571","1.000000","0.288889","3.511111","33.466667","0.000000","367.592593","0.000000","10.296296","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","653.750000",,,,,"0.000000","0.000000",,,"2033.375000","2523.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.953333",,"20.953333",,"20.953333",,,,,,,"4080.000000",,,,,"4191.500000",,"5.244444",,"234.822222",,,,"2557.285714","0.977778","0.777778","3.822222","21.400000","0.000000","239.222222","0.000000","9.370370","228.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","490.500000",,,,,"0.000000","0.000000",,,"1515.250000","1820.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.012917",,"22.012917",,"22.012917",,,,,,,"3810.583333",,,,,"4403.375000",,"7.355556",,"544.022222",,,,"1976.657143","1.022222","0.755556","1.822222","43.800000","0.000000","476.592593","0.000000","10.222222","464.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1028.375000",,,,,"0.000000","0.000000",,,"3528.625000","3749.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.217500",,"20.217500",,"20.217500",,,,,,,"4423.333333",,,,,"4044.416667",,"5.333333",,"357.711111",,,,"1749.857143","0.977778","0.311111","1.133333","35.933333","0.000000","388.259259","0.000000","10.185185","376.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","637.375000",,,,,"0.000000","0.000000",,,"2064.000000","2502.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.260417",,"17.260417",,"17.260417",,,,,,,"5597.166667",,,,,"3452.958333",,"3.177778",,"301.333333",,,,"639.971429","0.933333","0.133333","0.866667","31.088889","0.000000","338.888889","0.000000","8.740741","328.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","22.571429",,,,,"0.000000","0.000000",,,"1906.625000","2458.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.290417",,"18.290417",,"18.290417",,,,,,,"5549.000000",,,,,"3659.250000",,"3.888889",,"379.377778",,,,"36.028571","0.955556","0.088889","7.022222","39.555556","0.000000","425.370370","0.000000","9.148148","414.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","669.625000",,,,,"0.000000","0.000000",,,"2161.250000","2645.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.166250",,"19.166250",,"19.166250",,,,,,,"5151.791667",,,,,"3834.000000",,"9.888889",,"458.266667",,,,"44.428571","1.666667","0.355556","9.600000","47.800000","0.000000","514.296296","0.000000","14.962963","496.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","851.875000",,,,,"0.000000","0.000000",,,"2580.000000","3283.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.640000",,"16.640000",,"16.640000",,,,,,,"5680.958333",,,,,"3329.291667",,"3.244444",,"311.733333",,,,"30.085714","0.844444","0.177778","6.111111","32.533333","0.000000","345.703704","0.000000","8.222222","336.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","624.000000",,,,,"0.000000","0.000000",,,"1951.000000","2508.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.127500",,"18.127500",,"18.127500",,,,,,,"5104.958333",,,,,"3626.458333",,"3.466667",,"452.044444",,,,"45.028571","0.844444","0.088889","2.577778","49.466667","0.000000","523.148148","0.000000","8.444444","513.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","896.625000",,,,,"0.000000","0.000000",,,"3703.875000","4271.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.001667",,"16.001667",,"16.001667",,,,,,,"5675.250000",,,,,"3201.166667",,"4.022222",,"409.888889",,,,"27.142857","1.044444","0.133333","8.688889","29.133333","0.000000","313.000000","0.000000","9.777778","301.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","954.875000",,,,,"0.000000","0.000000",,,"5902.750000","6507.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.890833",,"16.890833",,"16.890833",,,,,,,"5484.541667",,,,,"3379.166667",,"3.911111",,"376.466667",,,,"36.257143","0.777778","7.444444","2.688889","39.755556","0.000000","424.296296","0.000000","8.111111","414.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","796.000000",,,,,"0.000000","0.000000",,,"3694.250000","4214.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.994583",,"16.994583",,"16.994583",,,,,,,"5031.416667",,,,,"3399.791667",,"27.622222",,"409.288889",,,,"42.971429","2.800000","0.200000","1.911111","44.911111","0.000000","502.555556","0.000000","31.111111","467.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.875000","869.000000",,,,,"0.000000","0.000000",,,"3538.250000","4143.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.867083",,"16.867083",,"16.867083",,,,,,,"5025.000000",,,,,"3374.333333",,"6.311111",,"379.844444",,,,"33.371429","1.022222","0.244444","2.400000","36.488889","0.000000","396.333333","0.000000","10.259259","384.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","978.125000",,,,,"0.000000","0.000000",,,"6206.000000","7067.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.347500",,"16.347500",,"16.347500",,,,,,,"5591.750000",,,,,"3270.458333",,"11.444444",,"892.644444",,,,"38.171429","2.755556","0.466667","3.666667","38.866667","0.000000","428.518519","0.000000","24.814815","397.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.125000","1788.250000",,,,,"0.000000","0.000000",,,"6107.750000","7474.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.967083",,"26.967083",,"26.967083",,,,,,,"2652.458333",,,,,"5394.250000",,"6.622222",,"704.444444",,,,"29.885714","1.133333","0.488889","4.311111","32.133333","0.000000","346.111111","0.000000","11.111111","333.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.125000","1332.125000",,,,,"0.000000","0.000000",,,"3085.000000","4097.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.894583",,"23.894583",,"23.894583",,,,,,,"2993.291667",,,,,"4779.791667",,"5.511111",,"656.777778",,,,"2058.657143","0.955556","0.333333","2.622222","33.977778","0.000000","361.000000","0.000000","9.703704","349.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","1300.500000",,,,,"0.000000","0.000000",,,"3112.250000","4170.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.480833",,"22.480833",,"22.480833",,,,,,,"3264.125000",,,,,"4497.041667",,"3.111111",,"351.533333",,,,"2416.285714","0.844444","0.088889","1.044444","31.511111","0.000000","331.851852","0.000000","8.370370","322.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","600.125000",,,,,"0.000000","0.000000",,,"1822.250000","2352.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.159583",,"22.159583",,"22.159583",,,,,,,"3800.250000",,,,,"4432.708333",,"5.066667",,"412.044444",,,,"1905.314286","1.044444","0.577778","1.066667","28.177778","0.000000","303.962963","0.000000","10.444444","292.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","779.750000",,,,,"0.000000","0.000000",,,"2819.500000","2903.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.746667",,"25.746667",,"25.746667",,,,,,,"3184.875000",,,,,"5150.166667",,"3.377778",,"443.311111",,,,"1794.971429","0.933333","0.555556","1.222222","43.888889","0.000000","459.407407","0.000000","8.777778","449.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","876.500000",,,,,"0.000000","0.000000",,,"2633.625000","3233.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.638333",,"21.638333",,"21.638333",,,,,,,"3609.583333",,,,,"4328.708333",,"4.244444",,"466.200000",,,,"980.828571","1.044444","0.622222","0.933333","44.688889","0.000000","468.555556","0.000000","10.037037","457.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","840.750000",,,,,"0.000000","0.000000",,,"2431.250000","2968.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.048333",,"19.048333",,"19.048333",,,,,,,"4727.583333",,,,,"3810.583333",,"4.044444",,"438.711111",,,,"36.514286","0.866667","0.377778","1.200000","39.644444","0.000000","417.481481","0.000000","8.592593","407.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","884.125000",,,,,"0.000000","0.000000",,,"2901.625000","3521.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.721250",,"18.721250",,"18.721250",,,,,,,"4237.916667",,,,,"3745.208333",,"8.377778",,"410.244444",,,,"34.142857","1.555556","0.244444","1.000000","36.111111","0.000000","384.629630","0.000000","14.074074","367.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","897.625000",,,,,"0.000000","0.000000",,,"5899.375000","6469.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.900000",,"17.900000",,"17.900000",,,,,,,"5318.458333",,,,,"3580.958333",,"5.422222",,"285.444444",,,,"24.600000","0.866667","0.311111","3.133333","26.466667","0.000000","284.407407","0.000000","9.444444","273.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","676.500000",,,,,"0.000000","0.000000",,,"3943.375000","4411.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.029167",,"19.029167",,"19.029167",,,,,,,"4767.000000",,,,,"3806.958333",,"3.600000",,"359.444444",,,,"35.914286","0.933333","0.333333","7.622222","38.844444","0.000000","404.666667","0.000000","9.407407","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","716.500000",,,,,"0.000000","0.000000",,,"2229.000000","2659.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.484167",,"21.484167",,"21.484167",,,,,,,"4425.125000",,,,,"4297.625000",,"4.911111",,"400.600000",,,,"39.285714","1.044444","0.266667","1.288889","42.533333","0.000000","444.777778","0.000000","10.000000","433.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","704.875000",,,,,"0.000000","0.000000",,,"2210.000000","2776.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.976250",,"20.976250",,"20.976250",,,,,,,"4695.791667",,,,,"4196.041667",,"4.222222",,"407.800000",,,,"39.171429","0.955556","0.088889","1.422222","42.800000","0.000000","454.518519","0.000000","9.851852","443.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","803.000000",,,,,"0.000000","0.000000",,,"2422.375000","3400.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.095833",,"18.095833",,"18.095833",,,,,,,"5400.208333",,,,,"3620.250000",,"22.000000",,"265.066667",,,,"25.542857","1.822222","0.466667","2.066667","26.311111","0.000000","298.555556","0.000000","21.037037","273.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","514.375000",,,,,"0.000000","0.000000",,,"1679.125000","2027.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.520000",,"16.520000",,"16.520000",,,,,,,"4888.833333",,,,,"3305.041667",,"13.711111",,"256.822222",,,,"25.371429","1.533333","0.311111","0.800000","26.666667","0.000000","295.111111","0.000000","16.074074","277.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"58.125000","516.000000",,,,,"0.000000","0.000000",,,"1783.750000","2113.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.681250",,"23.681250",,"23.681250",,,,,,,"3077.416667",,,,,"4736.958333",,"6.288889",,"584.177778",,,,"44.371429","1.044444","0.355556","1.244444","48.466667","0.000000","510.296296","0.000000","10.555556","498.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.250000","1048.500000",,,,,"0.000000","0.000000",,,"2854.500000","3606.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.489583",,"17.489583",,"17.489583",,,,,,,"5439.500000",,,,,"3499.291667",,"10.533333",,"568.933333",,,,"26.514286","1.600000","0.311111","2.266667","27.822222","0.000000","305.407407","0.000000","14.518519","288.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1106.375000",,,,,"0.000000","0.000000",,,"2615.000000","3403.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.895417",,"20.895417",,"20.895417",,,,,,,"4113.708333",,,,,"4179.791667",,"5.377778",,"346.377778",,,,"2389.600000","0.888889","0.133333","3.466667","29.533333","0.000000","325.074074","0.000000","11.444444","312.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","610.375000",,,,,"0.000000","0.000000",,,"1899.625000","2370.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.029583",,"19.029583",,"19.029583",,,,,,,"4612.375000",,,,,"3807.041667",,"3.111111",,"339.755556",,,,"2454.742857","0.844444","0.311111","2.155556","33.933333","0.000000","368.740741","0.000000","8.185185","359.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","654.250000",,,,,"0.000000","0.000000",,,"2012.250000","2376.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.242917",,"21.242917",,"21.242917",,,,,,,"4067.625000",,,,,"4249.458333",,"6.177778",,"486.333333",,,,"1955.485714","1.088889","0.355556","1.755556","45.911111","0.000000","498.666667","0.000000","11.037037","486.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","1000.250000",,,,,"0.000000","0.000000",,,"4929.500000","5223.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.339583",,"20.339583",,"20.339583",,,,,,,"4154.458333",,,,,"4069.041667",,"46.688889",,"520.844444",,,,"1620.628571","2.933333","0.222222","1.088889","43.244444","0.000000","490.962963","0.000000","31.555556","457.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"133.625000","1203.125000",,,,,"0.000000","0.000000",,,"7230.250000","7737.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.332917",,"19.332917",,"19.332917",,,,,,,"4467.208333",,,,,"3867.666667",,"4.266667",,"391.688889",,,,"743.857143","0.955556","1.288889","1.133333","39.533333","0.000000","429.592593","0.000000","9.296296","418.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","745.375000",,,,,"0.000000","0.000000",,,"2823.875000","3396.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.508333",,"17.508333",,"17.508333",,,,,,,"4986.541667",,,,,"3502.750000",,"3.422222",,"337.711111",,,,"29.885714","0.755556","0.333333","0.733333","32.711111","0.000000","351.259259","0.000000","8.074074","342.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","681.750000",,,,,"0.000000","0.000000",,,"1968.500000","2470.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.907083",,"18.907083",,"18.907083",,,,,,,"4721.833333",,,,,"3782.250000",,"2.733333",,"380.422222",,,,"35.771429","0.933333","0.733333","0.933333","39.311111","0.000000","424.074074","0.000000","9.074074","413.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"350.125000","697.250000",,,,,"0.000000","0.000000",,,"6989.625000","2715.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.355417",,"19.355417",,"19.355417",,,,,,,"4653.541667",,,,,"3872.125000",,"13.777778",,"469.200000",,,,"43.400000","1.577778","1.377778","0.800000","46.800000","0.000000","504.259259","0.000000","14.629630","486.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"694.750000","9.285714",,,,,"0.000000","0.000000",,,"12139.875000","3149.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.069167",,"17.069167",,"17.069167",,,,,,,"5198.500000",,,,,"3414.666667",,"3.600000",,"362.666667",,,,"30.771429","0.955556","0.266667","4.000000","33.644444","0.000000","367.814815","0.000000","9.481481","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"347.500000","701.875000",,,,,"0.000000","0.000000",,,"6761.750000","2765.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.901667",,"18.901667",,"18.901667",,,,,,,"4823.291667",,,,,"3781.250000",,"3.466667",,"410.711111",,,,"34.285714","0.933333","0.955556","1.733333","37.577778","0.000000","405.518519","0.000000","8.888889","395.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","784.625000",,,,,"0.000000","0.000000",,,"2300.500000","2782.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.889583",,"16.889583",,"16.889583",,,,,,,"5516.916667",,,,,"3379.000000",,"5.577778",,"539.577778",,,,"36.485714","0.955556","0.622222","8.933333","40.066667","0.000000","433.740741","0.000000","9.555556","422.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","996.375000",,,,,"0.000000","0.000000",,,"2664.750000","3528.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.927083",,"16.927083",,"16.927083",,,,,,,"5165.500000",,,,,"3386.416667",,"3.911111",,"354.755556",,,,"31.942857","0.866667","0.155556","3.977778","35.266667","0.000000","389.777778","0.000000","8.740741","379.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.000000","710.000000",,,,,"0.000000","0.000000",,,"2202.625000","2630.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.045833",,"16.045833",,"16.045833",,,,,,,"5484.125000",,,,,"3210.041667",,"23.311111",,"292.377778",,,,"28.571429","2.244444","0.377778","3.800000","29.422222","0.000000","337.592593","0.000000","24.333333","308.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.500000","507.000000",,,,,"0.000000","0.000000",,,"1902.125000","2261.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.724167",,"22.724167",,"22.724167",,,,,,,"3898.916667",,,,,"4545.625000",,"4.555556",,"471.066667",,,,"40.714286","0.911111","1.644444","4.733333","44.377778","0.000000","469.333333","0.000000","9.555556","458.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","928.375000",,,,,"0.000000","0.000000",,,"2699.750000","3358.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.647500",,"25.647500",,"25.647500",,,,,,,"2344.416667",,,,,"5130.250000",,"3.755556",,"531.911111",,,,"39.600000","0.955556","1.666667","1.133333","43.577778","0.000000","470.000000","0.000000","9.555556","458.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.250000","975.750000",,,,,"0.000000","0.000000",,,"2741.000000","3469.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.855417",,"20.855417",,"20.855417",,,,,,,"4416.916667",,,,,"4172.166667",,"17.688889",,"457.200000",,,,"2304.742857","2.066667","0.244444","2.511111","15.711111","0.000000","182.333333","0.000000","21.222222","159.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"186.375000","1120.375000",,,,,"0.000000","0.000000",,,"7955.250000","7187.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.089167",,"22.089167",,"22.089167",,,,,,,"3299.625000",,,,,"4418.833333",,"9.200000",,"418.466667",,,,"2290.428571","1.577778","0.133333","1.000000","38.888889","0.000000","425.333333","0.000000","14.629630","407.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","910.125000",,,,,"0.000000","0.000000",,,"4879.000000","5460.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.548333",,"22.548333",,"22.548333",,,,,,,"3683.750000",,,,,"4510.500000",,"3.688889",,"489.133333",,,,"2029.371429","0.844444","0.266667","1.022222","35.955556","0.000000","391.851852","0.000000","8.666667","381.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.125000","914.750000",,,,,"0.000000","0.000000",,,"3228.750000","3400.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.208333",,"22.208333",,"22.208333",,,,,,,"3911.958333",,,,,"4442.541667",,"70.066667",,"366.866667",,,,"1816.542857","2.066667","0.866667","0.755556","37.066667","0.000000","415.555556","0.000000","21.592593","392.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","706.750000",,,,,"0.000000","0.000000",,,"2609.750000","3049.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.555417",,"19.555417",,"19.555417",,,,,,,"4517.833333",,,,,"3912.333333",,"107.000000",,"457.866667",,,,"714.342857","8.977778","0.711111","0.866667","44.866667","0.000000","568.407407","0.000000","98.000000","468.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.500000","857.375000",,,,,"0.000000","0.000000",,,"3131.625000","3656.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.178750",,"17.178750",,"17.178750",,,,,,,"5252.416667",,,,,"3436.833333",,"3.933333",,"414.755556",,,,"38.942857","0.955556","1.022222","1.177778","42.400000","0.000000","448.370370","0.000000","9.555556","437.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","778.125000",,,,,"0.000000","0.000000",,,"2386.375000","2984.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.921667",,"15.921667",,"15.921667",,,,,,,"5532.750000",,,,,"3185.000000",,"3.622222",,"335.955556",,,,"31.514286","0.933333","0.133333","1.088889","34.244444","0.000000","368.222222","0.000000","9.333333","357.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","642.125000",,,,,"0.000000","0.000000",,,"1990.250000","2511.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.666667",,"15.666667",,"15.666667",,,,,,,"5535.166667",,,,,"3134.166667",,"2.688889",,"279.644444",,,,"27.028571","1.022222","0.088889","0.555556","29.400000","0.000000","321.629630","0.000000","9.296296","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","545.125000",,,,,"0.000000","0.000000",,,"1776.375000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.507917",,"15.507917",,"15.507917",,,,,,,"5821.500000",,,,,"3102.666667",,"3.266667",,"251.311111",,,,"25.257143","0.755556","0.088889","3.600000","27.288889","0.000000","293.962963","0.000000","7.777778","284.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","486.125000",,,,,"0.000000","0.000000",,,"1646.125000","2064.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.332500",,"17.332500",,"17.332500",,,,,,,"5562.416667",,,,,"3467.375000",,"10.600000",,"320.911111",,,,"30.685714","1.555556","0.222222","1.000000","32.466667","0.000000","353.148148","0.000000","13.962963","336.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","585.375000",,,,,"0.000000","0.000000",,,"1896.250000","2292.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.153750",,"17.153750",,"17.153750",,,,,,,"5376.625000",,,,,"3431.750000",,"3.777778",,"371.244444",,,,"34.542857","0.977778","0.266667","1.600000","37.644444","0.000000","404.555556","0.000000","10.074074","392.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","702.125000",,,,,"0.000000","0.000000",,,"2215.500000","2736.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.369583",,"17.369583",,"17.369583",,,,,,,"5201.416667",,,,,"3474.875000",,"4.466667",,"465.800000",,,,"36.257143","1.044444","0.333333","0.888889","39.711111","0.000000","427.481481","0.000000","10.185185","415.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1073.000000",,,,,"0.000000","0.000000",,,"6210.000000","6879.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.876250",,"16.876250",,"16.876250",,,,,,,"5399.541667",,,,,"3376.208333",,"22.444444",,"363.066667",,,,"34.714286","1.911111","0.600000","0.533333","36.777778","0.000000","415.703704","0.000000","21.703704","390.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.250000","836.875000",,,,,"0.000000","0.000000",,,"5151.500000","5560.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.239167",,"17.239167",,"17.239167",,,,,,,"5334.416667",,,,,"3448.791667",,"3.222222",,"437.244444",,,,"39.114286","0.844444","0.466667","1.866667","43.244444","0.000000","464.222222","0.000000","8.407407","454.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","821.750000",,,,,"0.000000","0.000000",,,"2449.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.825417",,"21.825417",,"21.825417",,,,,,,"3945.958333",,,,,"4366.041667",,"4.244444",,"528.711111",,,,"40.028571","0.955556","0.133333","1.222222","44.133333","0.000000","473.888889","0.000000","9.111111","463.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","994.625000",,,,,"0.000000","0.000000",,,"2731.875000","3423.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.965417",,"18.965417",,"18.965417",,,,,,,"5115.083333",,,,,"3793.958333",,"4.444444",,"226.977778",,,,"2657.028571","0.911111","0.244444","3.000000","21.155556","0.000000","234.962963","0.000000","11.666667","221.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","435.000000",,,,,"0.000000","0.000000",,,"1420.125000","1769.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.496250",,"19.496250",,"19.496250",,,,,,,"4834.833333",,,,,"3900.208333",,"37.488889",,"584.266667",,,,"2533.228571","3.844444","0.844444","1.266667","24.288889","0.000000","292.814815","0.000000","42.629630","248.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1085.750000","1117.875000",,,,,"0.000000","0.000000",,,"16312.750000","4906.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.350833",,"23.350833",,"23.350833",,,,,,,"3144.541667",,,,,"4671.000000",,"10.911111",,"1665.377778",,,,"1814.400000","1.533333","0.733333","2.533333","53.355556","0.000000","558.703704","0.000000","14.888889","540.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1843.875000","3325.750000",,,,,"0.000000","0.000000",,,"33192.875000","13694.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.192083",,"22.192083",,"22.192083",,,,,,,"3385.708333",,,,,"4439.375000",,"13.177778",,"1502.222222",,,,"1583.057143","1.533333","1.044444","2.555556","44.333333","0.000000","469.444444","0.000000","16.333333","451.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1206.000000","3113.250000",,,,,"0.000000","0.000000",,,"24731.750000","13626.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.230833",,"21.230833",,"21.230833",,,,,,,"4000.000000",,,,,"4247.125000",,"13.422222",,"2097.800000",,,,"595.542857","1.466667","0.977778","1.711111","63.977778","0.000000","669.333333","0.000000","15.592593","651.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"633.625000","327.428571",,,,,"0.000000","0.000000",,,"18969.000000","15797.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.767500",,"16.767500",,"16.767500",,,,,,,"5232.125000",,,,,"3354.750000",,"49.422222",,"1525.511111",,,,"40.257143","3.333333","1.000000","1.866667","41.377778","0.000000","458.555556","0.000000","35.703704","421.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"816.125000","3155.250000",,,,,"0.000000","0.000000",,,"18560.250000","12837.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.559583",,"17.559583",,"17.559583",,,,,,,"4945.166667",,,,,"3513.000000",,"6.400000",,"398.177778",,,,"30.828571","1.288889","0.666667","1.044444","33.044444","0.000000","355.296296","0.000000","13.370370","340.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1012.125000",,,,,"0.000000","0.000000",,,"5606.500000","6623.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.611667",,"19.611667",,"19.611667",,,,,,,"4356.458333",,,,,"3923.291667",,"10.666667",,"454.755556",,,,"43.142857","1.400000","0.622222","0.933333","46.688889","0.000000","496.148148","0.000000","14.518519","480.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.750000","1103.250000",,,,,"0.000000","0.000000",,,"5888.750000","6988.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.563333",,"18.563333",,"18.563333",,,,,,,"4752.666667",,,,,"3713.791667",,"35.044444",,"433.244444",,,,"37.800000","2.111111","0.688889","1.200000","39.288889","0.000000","413.148148","0.000000","22.037037","389.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.250000","1059.500000",,,,,"0.000000","0.000000",,,"5820.000000","6828.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.468333",,"17.468333",,"17.468333",,,,,,,"5227.083333",,,,,"3494.583333",,"21.733333",,"272.200000",,,,"24.657143","2.200000","0.488889","1.066667","24.755556","0.000000","274.851852","0.000000","21.259259","250.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.625000","760.375000",,,,,"0.000000","0.000000",,,"5123.000000","5947.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.432500",,"16.432500",,"16.432500",,,,,,,"5336.291667",,,,,"3287.291667",,"6.933333",,"297.555556",,,,"25.171429","1.133333","0.288889","0.977778","26.844444","0.000000","289.518519","0.000000","11.666667","276.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","844.875000",,,,,"0.000000","0.000000",,,"5391.000000","6423.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.214167",,"18.214167",,"18.214167",,,,,,,"4625.041667",,,,,"3643.708333",,"3.733333",,"418.977778",,,,"36.971429","0.911111","0.755556","1.622222","40.000000","0.000000","415.888889","0.000000","8.962963","405.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1069.625000",,,,,"0.000000","0.000000",,,"5982.625000","7132.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.092500",,"20.092500",,"20.092500",,,,,,,"4672.916667",,,,,"4019.333333",,"24.533333",,"373.000000",,,,"37.314286","2.244444","0.333333","1.155556","38.733333","0.000000","421.629630","0.000000","24.407407","393.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.625000","977.000000",,,,,"0.000000","0.000000",,,"5869.750000","6938.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.136667",,"19.136667",,"19.136667",,,,,,,"4772.791667",,,,,"3828.083333",,"9.088889",,"331.577778",,,,"30.314286","1.288889","1.000000","2.644444","32.244444","0.000000","343.111111","0.000000","13.296296","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","877.750000",,,,,"0.000000","0.000000",,,"5381.125000","6228.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.710417",,"26.710417",,"26.710417",,,,,,,"2685.250000",,,,,"5343.375000",,"6.066667",,"757.888889",,,,"31.114286","0.911111","0.311111","3.200000","33.266667","0.000000","345.518519","0.000000","9.888889","334.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.750000","1682.000000",,,,,"0.000000","0.000000",,,"6559.375000","8033.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.454583",,"26.454583",,"26.454583",,,,,,,"2795.541667",,,,,"5292.000000",,"3.755556",,"696.866667",,,,"1970.914286","0.844444","0.555556","3.911111","41.444444","0.000000","421.222222","0.000000","8.666667","411.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1514.750000",,,,,"0.000000","0.000000",,,"6970.250000","7983.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.613750",,"28.613750",,"28.613750",,,,,,,"2077.041667",,,,,"5723.750000",,"7.933333",,"432.022222",,,,"2310.028571","1.311111","0.377778","3.733333","39.222222","0.000000","412.333333","0.000000","17.000000","393.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1010.250000",,,,,"0.000000","0.000000",,,"5913.750000","6604.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.148750",,"26.148750",,"26.148750",,,,,,,"2855.958333",,,,,"5230.625000",,"9.888889",,"1033.800000",,,,"1823.200000","1.511111","0.644444","3.400000","38.933333","0.000000","406.259259","0.000000","14.888889","388.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1360.625000","2202.250000",,,,,"0.000000","0.000000",,,"25491.625000","10754.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.542500",,"26.542500",,"26.542500",,,,,,,"2980.583333",,,,,"5309.708333",,"6.266667",,"1967.400000",,,,"1694.885714","1.177778","8.711111","9.844444","45.777778","0.000000","470.555556","0.000000","12.518519","452.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"913.875000","4017.500000",,,,,"0.000000","0.000000",,,"22199.250000","14736.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.247500",,"22.247500",,"22.247500",,,,,,,"3643.000000",,,,,"4450.500000",,"16.177778",,"1875.044444",,,,"1410.428571","1.622222","6.777778","33.177778","72.866667","0.000000","797.407407","0.000000","17.814815","772.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.750000","3848.625000",,,,,"0.000000","0.000000",,,"10782.000000","13969.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.577500",,"19.577500",,"19.577500",,,,,,,"4489.583333",,,,,"3916.541667",,"14.311111",,"818.177778",,,,"48.942857","1.533333","2.822222","11.666667","53.800000","0.000000","589.740741","0.000000","16.000000","571.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"116.125000","1843.875000",,,,,"0.000000","0.000000",,,"8022.375000","9154.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.922500",,"19.922500",,"19.922500",,,,,,,"4614.791667",,,,,"3985.625000",,"6.977778",,"239.977778",,,,"14.057143","1.200000","1.200000","8.422222","14.444444","0.000000","171.481481","0.000000","11.962963","156.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.750000","742.000000",,,,,"0.000000","0.000000",,,"4685.125000","5707.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.128333",,"20.128333",,"20.128333",,,,,,,"4614.708333",,,,,"4026.750000",,"3.866667",,"253.533333",,,,"7.914286","0.977778","1.933333","2.733333","7.644444","0.000000","92.962963","0.000000","9.888889","81.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","743.750000",,,,,"0.000000","0.000000",,,"4617.750000","5487.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.524167",,"20.524167",,"20.524167",,,,,,,"4101.541667",,,,,"4105.916667",,"4.644444",,"193.555556",,,,"8.657143","1.044444","0.644444","2.377778","8.355556","0.000000","100.740741","0.000000","10.814815","88.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","161.714286",,,,,"0.000000","0.000000",,,"2633.125000","3333.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.025833",,"20.025833",,"20.025833",,,,,,,"4754.666667",,,,,"4006.333333",,"6.200000",,"314.088889",,,,"22.857143","1.111111","0.488889","2.288889","23.955556","0.000000","256.481481","0.000000","11.481481","243.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.375000","661.000000",,,,,"0.000000","0.000000",,,"2745.500000","3257.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.644583",,"24.644583",,"24.644583",,,,,,,"3385.083333",,,,,"4929.791667",,"9.000000",,"455.888889",,,,"32.742857","1.866667","1.711111","4.066667","33.533333","0.000000","353.333333","0.000000","16.888889","332.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1079.000000",,,,,"0.000000","0.000000",,,"5806.500000","6764.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.417500",,"30.417500",,"30.417500",,,,,,,"1968.125000",,,,,"6084.416667",,"20.977778",,"620.866667",,,,"39.228571","1.377778","0.755556","3.777778","42.177778","0.000000","446.481481","0.000000","13.592593","431.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1410.375000",,,,,"0.000000","0.000000",,,"6647.000000","7766.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.099583",,"31.099583",,"31.099583",,,,,,,"1622.750000",,,,,"6220.833333",,"22.844444",,"641.511111",,,,"21.457143","1.933333","0.466667","4.711111","21.844444","0.000000","258.333333","0.000000","21.962963","232.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.750000","1472.000000",,,,,"0.000000","0.000000",,,"7079.125000","8198.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.846667",,"33.846667",,"33.846667",,,,,,,"1231.583333",,,,,"6770.291667",,"6.911111",,"910.488889",,,,"55.028571","1.177778","0.977778","2.266667","60.666667","0.000000","644.222222","0.000000","11.629630","631.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.875000","1786.000000",,,,,"0.000000","0.000000",,,"5228.000000","6764.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.419167",,"31.419167",,"31.419167",,,,,,,"1479.583333",,,,,"6285.000000",,"3.311111",,"692.777778",,,,"48.771429","1.022222","0.622222","1.933333","53.666667","0.000000","571.740741","0.000000","10.037037","560.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1310.125000",,,,,"0.000000","0.000000",,,"3380.000000","4489.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.363750",,"22.363750",,"22.363750",,,,,,,"3868.875000",,,,,"4473.625000",,"7.711111",,"1251.933333",,,,"2186.285714","1.155556","0.555556","3.066667","50.711111","0.000000","551.333333","0.000000","11.740741","538.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","2418.000000",,,,,"0.000000","0.000000",,,"5303.000000","7458.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.183750",,"25.183750",,"25.183750",,,,,,,"3059.625000",,,,,"5037.708333",,"8.288889",,"543.155556",,,,"2521.771429","1.266667","0.666667","1.577778","46.088889","0.000000","505.666667","0.000000","12.370370","491.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1040.375000",,,,,"0.000000","0.000000",,,"2897.000000","3725.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.307917",,"26.307917",,"26.307917",,,,,,,"2410.375000",,,,,"5262.416667",,"8.777778",,"649.511111",,,,"1824.571429","1.577778","0.888889","4.066667","52.444444","0.000000","566.407407","0.000000","14.555556","549.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.625000","1231.750000",,,,,"0.000000","0.000000",,,"3575.000000","4529.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.582083",,"25.582083",,"25.582083",,,,,,,"2500.291667",,,,,"5117.583333",,"4.022222",,"706.711111",,,,"1493.371429","0.866667","0.333333","1.400000","50.177778","0.000000","552.111111","0.000000","8.962963","541.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1352.625000",,,,,"0.000000","0.000000",,,"4100.500000","4841.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.095833",,"24.095833",,"24.095833",,,,,,,"2980.208333",,,,,"4820.375000",,"2.844444",,"529.311111",,,,"1179.485714","0.888889","3.466667","1.600000","41.222222","0.000000","458.629630","0.000000","9.037037","448.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","1021.375000",,,,,"0.000000","0.000000",,,"2753.625000","3604.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.577500",,"24.577500",,"24.577500",,,,,,,"2553.458333",,,,,"4916.333333",,"4.266667",,"679.088889",,,,"53.571429","1.000000","0.311111","1.511111","59.755556","0.000000","646.814815","0.000000","9.629630","635.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1276.000000",,,,,"0.000000","0.000000",,,"3411.625000","4392.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.827083",,"23.827083",,"23.827083",,,,,,,"3250.500000",,,,,"4766.500000",,"3.711111",,"628.044444",,,,"50.114286","1.000000","0.733333","1.644444","55.955556","0.000000","609.222222","0.000000","9.703704","598.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"359.250000","1194.500000",,,,,"0.000000","0.000000",,,"8165.375000","4259.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.772500",,"21.772500",,"21.772500",,,,,,,"3418.916667",,,,,"4355.541667",,"4.977778",,"654.266667",,,,"50.228571","1.022222","0.200000","1.733333","55.688889","0.000000","597.222222","0.000000","9.777778","586.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"695.250000","1248.000000",,,,,"0.000000","0.000000",,,"12918.500000","4447.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.560417",,"19.560417",,"19.560417",,,,,,,"4301.541667",,,,,"3912.750000",,"8.288889",,"904.622222",,,,"53.485714","1.355556","0.488889","2.555556","59.177778","0.000000","645.592593","0.000000","13.888889","630.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"368.875000","1719.375000",,,,,"0.000000","0.000000",,,"8976.375000","5812.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.701667",,"20.701667",,"20.701667",,,,,,,"4155.500000",,,,,"4141.458333",,"3.355556",,"618.866667",,,,"37.000000","0.955556","0.600000","2.111111","41.355556","0.000000","460.555556","0.000000","9.037037","450.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1206.875000",,,,,"0.000000","0.000000",,,"3358.250000","4272.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.562917",,"25.562917",,"25.562917",,,,,,,"2528.791667",,,,,"5113.500000",,"11.066667",,"779.911111",,,,"56.657143","1.644444","0.266667","1.044444","62.333333","0.000000","682.370370","0.000000","16.000000","663.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.500000","1671.125000",,,,,"0.000000","0.000000",,,"7806.375000","8922.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.128750",,"23.128750",,"23.128750",,,,,,,"3025.750000",,,,,"4626.625000",,"3.866667",,"741.066667",,,,"58.942857","1.044444","0.622222","1.911111","65.577778","0.000000","704.148148","0.000000","9.777778","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1521.875000",,,,,"0.000000","0.000000",,,"5949.750000","7233.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.652917",,"22.652917",,"22.652917",,,,,,,"3202.041667",,,,,"4531.750000",,"25.377778",,"866.800000",,,,"69.342857","2.200000","0.488889","0.866667","76.133333","0.000000","836.851852","0.000000","24.555556","808.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"72.500000","1635.500000",,,,,"0.000000","0.000000",,,"4478.000000","5761.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.381250",,"31.381250",,"31.381250",,,,,,,"864.000000",,,,,"6277.458333",,"2.422222",,"693.111111",,,,"43.571429","0.844444","0.311111","2.000000","48.622222","0.000000","528.111111","0.000000","7.777778","519.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","1312.875000",,,,,"0.000000","0.000000",,,"3301.250000","4305.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.107917",,"22.107917",,"22.107917",,,,,,,"3755.541667",,,,,"4422.291667",,"5.711111",,"629.600000",,,,"49.114286","1.177778","0.355556","1.244444","54.066667","0.000000","581.296296","0.000000","11.518519","568.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","18.285714",,,,,"0.000000","0.000000",,,"3203.375000","4236.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.283333",,"30.283333",,"30.283333",,,,,,,"1823.416667",,,,,"6057.583333",,"2.444444",,"527.488889",,,,"1741.428571","0.844444","0.088889","1.622222","44.733333","0.000000","479.296296","0.000000","8.222222","469.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","994.875000",,,,,"0.000000","0.000000",,,"2765.875000","3521.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.199583",,"33.199583",,"33.199583",,,,,,,"646.166667",,,,,"6640.875000",,"8.555556",,"529.400000",,,,"1804.371429","1.044444","0.200000","1.088889","42.288889","0.000000","451.037037","0.000000","10.370370","439.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","986.875000",,,,,"0.000000","0.000000",,,"2669.625000","3409.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.924583",,"33.924583",,"33.924583",,,,,,,"729.041667",,,,,"6785.625000",,"2.911111",,"379.888889",,,,"1513.685714","0.933333","0.377778","1.200000","31.533333","0.000000","345.592593","0.000000","9.111111","335.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","726.000000",,,,,"0.000000","0.000000",,,"2076.875000","2626.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.816250",,"29.816250",,"29.816250",,,,,,,"1044.666667",,,,,"5964.166667",,"8.311111",,"673.066667",,,,"1393.685714","1.511111","0.200000","3.200000","48.888889","0.000000","529.555556","0.000000","13.925926","512.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","1257.500000",,,,,"0.000000","0.000000",,,"3963.000000","4588.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.416250",,"27.416250",,"27.416250",,,,,,,"2214.708333",,,,,"5484.083333",,"2.888889",,"507.088889",,,,"1647.171429","0.933333","0.088889","2.200000","45.111111","0.000000","482.962963","0.000000","8.592593","473.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","969.500000",,,,,"0.000000","0.000000",,,"2697.500000","3520.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.286250",,"22.286250",,"22.286250",,,,,,,"3742.500000",,,,,"4458.041667",,"3.000000",,"352.377778",,,,"1107.057143","1.022222","1.066667","2.577778","27.955556","0.000000","315.925926","0.000000","9.629630","304.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","667.000000",,,,,"0.000000","0.000000",,,"1935.500000","2416.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.783750",,"22.783750",,"22.783750",,,,,,,"3420.125000",,,,,"4557.583333",,"2.933333",,"566.088889",,,,"47.000000","1.022222","0.333333","1.111111","51.955556","0.000000","560.814815","0.000000","9.629630","549.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.875000","1085.875000",,,,,"0.000000","0.000000",,,"3340.625000","4170.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.514167",,"20.514167",,"20.514167",,,,,,,"4038.958333",,,,,"4103.625000",,"2.777778",,"615.511111",,,,"41.657143","0.933333","0.244444","2.333333","46.333333","0.000000","505.111111","0.000000","8.555556","495.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.875000","1183.125000",,,,,"0.000000","0.000000",,,"3507.375000","4086.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.709167",,"20.709167",,"20.709167",,,,,,,"4036.000000",,,,,"4142.750000",,"2.755556",,"495.666667",,,,"39.428571","0.844444","1.533333","1.911111","43.711111","0.000000","473.851852","0.000000","8.444444","464.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.750000","1088.375000",,,,,"0.000000","0.000000",,,"5306.375000","6071.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.121250",,"22.121250",,"22.121250",,,,,,,"3625.458333",,,,,"4425.041667",,"3.444444",,"457.955556",,,,"36.742857","0.977778","0.755556","2.622222","40.488889","0.000000","439.148148","0.000000","9.259259","428.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1060.250000",,,,,"0.000000","0.000000",,,"6181.750000","6834.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.841667",,"19.841667",,"19.841667",,,,,,,"4161.083333",,,,,"3969.250000",,"2.933333",,"406.800000",,,,"33.800000","0.933333","0.266667","1.311111","36.977778","0.000000","398.851852","0.000000","9.222222","388.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","776.750000",,,,,"0.000000","0.000000",,,"2275.875000","2937.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.635000",,"20.635000",,"20.635000",,,,,,,"3833.291667",,,,,"4128.208333",,"8.200000",,"617.644444",,,,"53.342857","1.466667","0.533333","2.244444","59.200000","0.000000","653.962963","0.000000","13.222222","638.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","1159.375000",,,,,"0.000000","0.000000",,,"3220.000000","4121.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.099583",,"22.099583",,"22.099583",,,,,,,"3646.958333",,,,,"4420.666667",,"24.688889",,"938.511111",,,,"68.200000","2.155556","0.444444","1.355556","75.333333","0.000000","837.888889","0.000000","23.777778","809.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.000000","1791.000000",,,,,"0.000000","0.000000",,,"4781.625000","6406.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.775833",,"23.775833",,"23.775833",,,,,,,"2577.041667",,,,,"4756.041667",,"8.133333",,"919.377778",,,,"54.714286","1.222222","1.400000","1.955556","60.933333","0.000000","665.222222","0.000000","12.555556","651.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1758.125000",,,,,"0.000000","0.000000",,,"4222.875000","5750.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.430417",,"27.430417",,"27.430417",,,,,,,"2251.708333",,,,,"5487.166667",,"20.644444",,"679.755556",,,,"44.257143","1.377778","1.822222","3.044444","49.222222","0.000000","553.555556","0.000000","15.037037","537.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"55.875000","1312.000000",,,,,"0.000000","0.000000",,,"3398.500000","4433.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.236667",,"23.236667",,"23.236667",,,,,,,"3140.750000",,,,,"4648.458333",,"13.777778",,"966.288889",,,,"2062.971429","1.600000","1.844444","3.644444","71.533333","0.000000","778.851852","0.000000","19.037037","758.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.750000","1819.375000",,,,,"0.000000","0.000000",,,"4505.000000","6075.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.897917",,"22.897917",,"22.897917",,,,,,,"3251.375000",,,,,"4580.416667",,"8.111111",,"617.911111",,,,"2478.342857","1.222222","0.600000","2.533333","51.177778","0.000000","562.407407","0.000000","12.851852","548.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1190.500000",,,,,"0.000000","0.000000",,,"3268.500000","4282.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.540000",,"20.540000",,"20.540000",,,,,,,"3960.583333",,,,,"4109.000000",,"3.844444",,"629.777778",,,,"1955.257143","0.800000","0.688889","3.333333","44.333333","0.000000","497.000000","0.000000","8.777778","486.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.125000","1223.375000",,,,,"0.000000","0.000000",,,"3866.750000","4379.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.366250",,"21.366250",,"21.366250",,,,,,,"4388.791667",,,,,"4274.291667",,"7.955556",,"587.577778",,,,"1843.771429","1.133333","0.911111","3.933333","44.600000","0.000000","503.777778","0.000000","11.777778","490.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.125000","1133.250000",,,,,"0.000000","0.000000",,,"3004.625000","3850.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.480000",,"21.480000",,"21.480000",,,,,,,"3391.333333",,,,,"4296.875000",,"3.266667",,"507.666667",,,,"879.400000","0.933333","1.755556","7.688889","47.400000","0.000000","533.518519","0.000000","9.296296","522.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","984.625000",,,,,"0.000000","0.000000",,,"2846.625000","3636.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.337917",,"22.337917",,"22.337917",,,,,,,"3325.125000",,,,,"4468.458333",,"911.911111",,"1579.977778",,,,"62.971429","19.622222","4.311111","5.577778","50.933333","0.000000","736.444444","0.000000","214.518519","519.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1742.125000","22.142857",,,,,"0.000000","0.000000",,,"10691.750000","11008.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.145417",,"21.145417",,"21.145417",,,,,,,"3489.166667",,,,,"4229.958333",,"99.066667",,"1169.822222",,,,"101.000000","22.533333","2.800000","3.044444","93.622222","0.000000","1266.851852","0.000000","249.814815","1015.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"236.750000","2480.625000",,,,,"0.000000","0.000000",,,"10582.250000","12976.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.977083",,"24.977083",,"24.977083",,,,,,,"2530.041667",,,,,"4996.458333",,"61.511111",,"997.266667",,,,"88.028571","14.111111","0.666667","3.000000","86.311111","0.000000","1077.629630","0.000000","156.296296","919.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"486.875000","2031.250000",,,,,"0.000000","0.000000",,,"12616.500000","10272.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.223750",,"23.223750",,"23.223750",,,,,,,"3329.250000",,,,,"4645.500000",,"8.266667",,"1975.133333",,,,"42.314286","1.155556","1.222222","7.111111","45.555556","0.000000","472.555556","0.000000","12.296296","458.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2601.750000","3779.250000",,,,,"0.000000","0.000000",,,"41947.875000","13184.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.477083",,"27.477083",,"27.477083",,,,,,,"2298.875000",,,,,"5496.250000",,"4.555556",,"2633.977778",,,,"58.371429","1.022222","4.044444","6.177778","63.466667","0.000000","646.962963","0.000000","10.000000","635.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1221.625000","4984.125000",,,,,"0.000000","0.000000",,,"25319.625000","14496.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.519583",,"26.519583",,"26.519583",,,,,,,"2772.916667",,,,,"5304.916667",,"8.222222",,"2293.466667",,,,"57.542857","1.355556","1.400000","5.155556","62.800000","0.000000","658.888889","0.000000","13.814815","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1718.125000","4357.875000",,,,,"0.000000","0.000000",,,"31134.375000","13854.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.034167",,"27.034167",,"27.034167",,,,,,,"2525.416667",,,,,"5407.625000",,"340.911111",,"1819.200000",,,,"59.142857","12.288889","1.311111","3.244444","53.844444","0.000000","686.037037","0.000000","136.074074","548.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.500000","3394.875000",,,,,"0.000000","0.000000",,,"14205.500000","10987.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.288333",,"25.288333",,"25.288333",,,,,,,"2882.833333",,,,,"5058.708333",,"73.222222",,"786.288889",,,,"49.971429","4.644444","0.488889","1.977778","51.044444","0.000000","590.037037","0.000000","50.740741","533.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"148.250000","1546.750000",,,,,"0.000000","0.000000",,,"4060.500000","5173.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.862500",,"30.862500",,"30.862500",,,,,,,"1119.000000",,,,,"6173.333333",,"12.488889",,"910.422222",,,,"37.914286","2.466667","1.577778","3.022222","40.177778","0.000000","450.703704","0.000000","25.814815","423.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.000000","1730.500000",,,,,"0.000000","0.000000",,,"3889.000000","5331.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.054583",,"30.054583",,"30.054583",,,,,,,"1365.833333",,,,,"6011.708333",,"16.377778",,"904.244444",,,,"48.200000","2.955556","0.688889","3.200000","50.822222","0.000000","554.962963","0.000000","32.185185","521.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.375000","1700.250000",,,,,"0.000000","0.000000",,,"4050.625000","5338.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.501667",,"29.501667",,"29.501667",,,,,,,"1614.500000",,,,,"5901.416667",,"6.511111",,"426.422222",,,,"1887.628571","1.000000","0.733333","2.488889","30.622222","0.000000","333.703704","0.000000","10.518519","321.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","26.000000",,,,,"0.000000","0.000000",,,"2306.500000","3044.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.798750",,"34.798750",,"34.798750",,,,,,,"1268.666667",,,,,"6960.875000",,"9.733333",,"462.111111",,,,"2528.771429","1.400000","0.600000","1.844444","29.022222","0.000000","319.370370","0.000000","14.925926","303.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.750000","872.750000",,,,,"0.000000","0.000000",,,"2287.500000","2917.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.674583",,"32.674583",,"32.674583",,,,,,,"886.250000",,,,,"6536.083333",,"9.622222",,"669.466667",,,,"1606.342857","1.377778","0.977778","2.444444","45.200000","0.000000","474.111111","0.000000","14.111111","458.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1269.750000",,,,,"0.000000","0.000000",,,"3955.750000","4441.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.110000",,"34.110000",,"34.110000",,,,,,,"630.333333",,,,,"6822.875000",,"3.111111",,"585.355556",,,,"1182.571429","0.844444","0.444444","3.044444","40.022222","0.000000","418.185185","0.000000","8.518519","407.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1172.000000",,,,,"0.000000","0.000000",,,"4308.375000","5161.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.767917",,"30.767917",,"30.767917",,,,,,,"872.875000",,,,,"6154.458333",,"3.644444",,"513.133333",,,,"1160.657143","0.955556","0.755556","2.644444","30.911111","0.000000","324.370370","0.000000","9.666667","313.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.875000","1141.375000",,,,,"0.000000","0.000000",,,"5756.625000","6475.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.483750",,"32.483750",,"32.483750",,,,,,,"497.583333",,,,,"6497.625000",,"9.266667",,"666.266667",,,,"825.085714","1.488889","1.666667","2.577778","42.288889","0.000000","443.000000","0.000000","14.074074","426.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1320.000000",,,,,"0.000000","0.000000",,,"4641.125000","5600.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.417500",,"31.417500",,"31.417500",,,,,,,"2240.541667",,,,,"6284.250000",,"17.577778",,"353.911111",,,,"13.285714","2.422222","0.600000","5.022222","12.088889","0.000000","152.259259","0.000000","25.962963","124.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.125000","690.875000",,,,,"0.000000","0.000000",,,"1791.750000","2369.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.835000",,"28.835000",,"28.835000",,,,,,,"2035.291667",,,,,"5768.041667",,"6.155556",,"302.155556",,,,"18.857143","0.977778","2.511111","1.577778","19.777778","0.000000","212.888889","0.000000","9.222222","202.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","580.875000",,,,,"0.000000","0.000000",,,"1622.250000","2139.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.724167",,"33.724167",,"33.724167",,,,,,,"1191.250000",,,,,"6745.875000",,"6.155556",,"700.222222",,,,"37.028571","1.155556","0.688889","4.355556","39.511111","0.000000","409.185185","0.000000","12.259259","395.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1313.750000",,,,,"0.000000","0.000000",,,"3159.125000","4151.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.057500",,"32.057500",,"32.057500",,,,,,,"1108.583333",,,,,"6412.250000",,"5.888889",,"545.311111",,,,"33.685714","1.022222","0.311111","1.955556","36.111111","0.000000","374.259259","0.000000","9.814815","363.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1017.000000",,,,,"0.000000","0.000000",,,"2623.625000","3456.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.245417",,"31.245417",,"31.245417",,,,,,,"1439.041667",,,,,"6250.208333",,"4.266667",,"589.777778",,,,"39.057143","1.022222","2.511111","3.377778","42.133333","0.000000","437.222222","0.000000","10.777778","424.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.500000","1113.125000",,,,,"0.000000","0.000000",,,"2812.750000","3640.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.758750",,"29.758750",,"29.758750",,,,,,,"2148.500000",,,,,"5952.583333",,"16.222222",,"408.466667",,,,"25.914286","2.000000","1.333333","2.444444","26.711111","0.000000","294.629630","0.000000","21.000000","272.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.875000","761.375000",,,,,"0.000000","0.000000",,,"2076.000000","2635.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.070000",,"34.070000",,"34.070000",,,,,,,"768.208333",,,,,"6814.958333",,"27.422222",,"577.822222",,,,"41.057143","2.533333","0.622222","2.222222","42.222222","0.000000","456.407407","0.000000","26.629630","424.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.375000","1088.875000",,,,,"0.000000","0.000000",,,"2943.500000","3833.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.662917",,"34.662917",,"34.662917",,,,,,,"958.041667",,,,,"6933.291667",,"10.800000",,"580.333333",,,,"29.742857","1.422222","0.711111","1.933333","31.644444","0.000000","345.851852","0.000000","14.962963","328.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.125000","1088.125000",,,,,"0.000000","0.000000",,,"2698.750000","3447.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.625417",,"33.625417",,"33.625417",,,,,,,"418.875000",,,,,"6726.000000",,"10.355556",,"582.133333",,,,"29.228571","1.400000","0.777778","1.888889","31.266667","0.000000","340.888889","0.000000","14.037037","325.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","1097.125000",,,,,"0.000000","0.000000",,,"2659.625000","3453.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.192917",,"33.192917",,"33.192917",,,,,,,"472.000000",,,,,"6639.541667",,"5.266667",,"582.622222",,,,"1468.085714","0.977778","1.844444","1.911111","38.822222","0.000000","403.407407","0.000000","9.888889","391.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1100.750000",,,,,"0.000000","0.000000",,,"2841.125000","3732.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.800417",,"32.800417",,"32.800417",,,,,,,"491.083333",,,,,"6561.125000",,"8.933333",,"513.466667",,,,"1923.257143","1.244444","1.022222","3.533333","22.066667","0.000000","246.481481","0.000000","15.222222","229.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","994.125000",,,,,"0.000000","0.000000",,,"2639.500000","3461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.190417",,"29.190417",,"29.190417",,,,,,,"622.666667",,,,,"5839.000000",,"3.933333",,"552.111111",,,,"1284.800000","0.955556","1.466667","6.955556","15.422222","0.000000","170.518519","0.000000","9.777778","159.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.500000","1276.000000",,,,,"0.000000","0.000000",,,"6158.125000","7177.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.815000",,"31.815000",,"31.815000",,,,,,,"717.375000",,,,,"6364.083333",,"8.444444",,"614.000000",,,,"1324.971429","1.222222","0.577778","1.644444","27.688889","0.000000","304.629630","0.000000","12.814815","290.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"81.250000","1289.625000",,,,,"0.000000","0.000000",,,"5829.000000","6304.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.971667",,"32.971667",,"32.971667",,,,,,,"511.125000",,,,,"6594.916667",,"3.955556",,"572.488889",,,,"1196.600000","0.777778","1.622222","2.844444","36.488889","0.000000","388.629630","0.000000","8.592593","378.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","1098.000000",,,,,"0.000000","0.000000",,,"2750.625000","3606.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.404583",,"31.404583",,"31.404583",,,,,,,"535.041667",,,,,"6281.791667",,"22.533333",,"729.488889",,,,"1016.600000","2.711111","0.600000","2.466667","37.600000","0.000000","418.444444","0.000000","27.592593","387.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.250000","1343.875000",,,,,"0.000000","0.000000",,,"3156.000000","4089.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.044583",,"32.044583",,"32.044583",,,,,,,"442.541667",,,,,"6410.125000",,"5.422222",,"669.044444",,,,"926.114286","1.111111","0.955556","2.888889","40.200000","0.000000","430.703704","0.000000","11.222222","417.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1264.750000",,,,,"0.000000","0.000000",,,"3095.000000","4031.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.820000",,"30.820000",,"30.820000",,,,,,,"1355.458333",,,,,"6164.833333",,"8.755556",,"493.400000",,,,"81.114286","1.355556","1.200000","2.133333","30.888889","0.000000","336.407407","0.000000","13.666667","321.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","946.375000",,,,,"0.000000","0.000000",,,"2457.250000","3165.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.031667",,"35.031667",,"35.031667",,,,,,,"1027.208333",,,,,"7007.000000",,"8.000000",,"642.822222",,,,"37.685714","1.133333","0.466667","1.777778","40.644444","0.000000","427.592593","0.000000","11.777778","414.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1216.375000",,,,,"0.000000","0.000000",,,"3062.750000","4018.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.005833",,"31.005833",,"31.005833",,,,,,,"678.958333",,,,,"6202.250000",,"4.577778",,"571.111111",,,,"28.028571","0.933333","1.111111","2.533333","30.466667","0.000000","331.074074","0.000000","9.555556","319.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.625000","1328.375000",,,,,"0.000000","0.000000",,,"6042.250000","7186.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.740000",,"32.740000",,"32.740000",,,,,,,"779.791667",,,,,"6549.000000",,"8.666667",,"554.266667",,,,"34.828571","1.355556","1.533333","1.266667","37.555556","0.000000","405.740741","0.000000","13.666667","390.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","10.500000",,,,,"0.000000","0.000000",,,"6098.250000","7130.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.219167",,"31.219167",,"31.219167",,,,,,,"1296.125000",,,,,"6244.666667",,"8.822222",,"479.933333",,,,"28.542857","1.000000","0.688889","2.133333","30.955556","0.000000","335.666667","0.000000","9.592593","324.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","936.500000",,,,,"0.000000","0.000000",,,"2687.750000","3473.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.560000",,"34.560000",,"34.560000",,,,,,,"1094.375000",,,,,"6913.041667",,"30.444444",,"635.133333",,,,"35.514286","2.577778","0.955556","2.600000","36.555556","0.000000","410.592593","0.000000","28.888889","377.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1207.750000",,,,,"0.000000","0.000000",,,"3148.375000","3969.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.308750",,"35.308750",,"35.308750",,,,,,,"286.541667",,,,,"7062.750000",,"9.711111",,"585.800000",,,,"26.828571","1.533333","0.688889","4.644444","28.311111","0.000000","314.888889","0.000000","14.000000","298.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","1077.375000",,,,,"0.000000","0.000000",,,"2533.625000","3336.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.273750",,"36.273750",,"36.273750",,,,,,,"468.208333",,,,,"7255.875000",,"7.644444",,"583.200000",,,,"29.257143","1.111111","3.088889","5.088889","31.911111","0.000000","353.518519","0.000000","11.740741","340.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","1124.250000",,,,,"0.000000","0.000000",,,"2907.500000","3695.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.025417",,"33.025417",,"33.025417",,,,,,,"503.625000",,,,,"6605.916667",,"46.888889",,"585.000000",,,,"1134.428571","41.022222","0.711111","9.844444","37.288889","0.000000","855.148148","0.000000","453.666667","398.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"169.375000","1496.714286",,,,,"0.000000","0.000000",,,"21587.750000","119410.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.943750",,"29.943750",,"29.943750",,,,,,,"938.333333",,,,,"5989.833333",,"39.422222",,"793.400000",,,,"1912.828571","60.311111","1.666667","9.177778","44.111111","0.000000","1139.444444","0.000000","667.037037","469.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"534.625000","16406.750000",,,,,"0.000000","0.000000",,,"41495.875000","208729.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.342917",,"32.342917",,"32.342917",,,,,,,"1141.291667",,,,,"6469.666667",,"35.088889",,"1849.866667",,,,"1755.685714","57.977778","0.800000","11.511111","37.200000","0.000000","1018.814815","0.000000","643.592593","373.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"796.000000","4216.571429",,,,,"0.000000","0.000000",,,"51769.375000","217458.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.830000",,"27.830000",,"27.830000",,,,,,,"2595.166667",,,,,"5566.875000",,"22.000000",,"2006.288889",,,,"1664.285714","28.355556","0.711111","9.888889","28.666667","0.000000","590.814815","0.000000","312.666667","274.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"789.625000","9657.250000",,,,,"0.000000","0.000000",,,"34359.000000","92411.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.271250",,"27.271250",,"27.271250",,,,,,,"3392.541667",,,,,"5455.208333",,"3.133333",,"2074.133333",,,,"1521.685714","0.888889","1.133333","25.577778","15.844444","0.000000","139.333333","0.000000","8.962963","128.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.625000","4060.750000",,,,,"0.000000","0.000000",,,"16335.500000","11084.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.397083",,"27.397083",,"27.397083",,,,,,,"3225.625000",,,,,"5480.208333",,"3.422222",,"2088.333333",,,,"1331.371429","0.866667","1.688889","19.622222","21.933333","0.000000","206.333333","0.000000","8.888889","196.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"919.750000","4015.375000",,,,,"0.000000","0.000000",,,"19097.750000","10986.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.691667",,"24.691667",,"24.691667",,,,,,,"4195.958333",,,,,"4939.250000",,"3.222222",,"2475.555556",,,,"37.114286","0.844444","10.177778","12.422222","39.466667","0.000000","392.148148","0.000000","8.407407","382.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.857143","24.000000",,,,,"0.000000","0.000000",,,"27660.500000","13296.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.572917",,"25.572917",,"25.572917",,,,,,,"4134.333333",,,,,"5115.500000",,"2.977778",,"1577.377778",,,,"23.114286","0.911111","0.577778","4.688889","23.911111","0.000000","238.851852","0.000000","8.888889","228.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1682.500000","3031.000000",,,,,"0.000000","0.000000",,,"27958.875000","9299.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.127917",,"21.127917",,"21.127917",,,,,,,"4327.416667",,,,,"4226.583333",,"3.733333",,"1874.422222",,,,"31.685714","0.955556","0.444444","3.377778","33.755556","0.000000","346.851852","0.000000","9.259259","336.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"703.625000","3589.500000",,,,,"0.000000","0.000000",,,"15764.000000","10077.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.364167",,"20.364167",,"20.364167",,,,,,,"4632.125000",,,,,"4073.708333",,"2.666667",,"501.533333",,,,"20.428571","0.888889","0.844444","2.911111","21.755556","0.000000","236.370370","0.000000","8.518519","226.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","951.125000",,,,,"0.000000","0.000000",,,"2175.500000","2894.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.416250",,"23.416250",,"23.416250",,,,,,,"3664.958333",,,,,"4684.041667",,"9.311111",,"337.177778",,,,"18.142857","1.600000","0.466667","1.600000","18.133333","0.000000","203.333333","0.000000","14.888889","185.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","633.875000",,,,,"0.000000","0.000000",,,"1813.000000","2229.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.372917",,"24.372917",,"24.372917",,,,,,,"3211.208333",,,,,"4875.625000",,"3.755556",,"486.555556",,,,"29.457143","0.933333","0.422222","2.311111","31.844444","0.000000","338.666667","0.000000","8.851852","328.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","897.125000",,,,,"0.000000","0.000000",,,"2431.250000","2974.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.609583",,"22.609583",,"22.609583",,,,,,,"3603.500000",,,,,"4523.041667",,"29.288889",,"974.377778",,,,"29.857143","2.355556","1.066667","3.644444","30.311111","0.000000","335.037037","0.000000","26.222222","305.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.000000","1865.750000",,,,,"0.000000","0.000000",,,"4163.875000","5610.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.408750",,"29.408750",,"29.408750",,,,,,,"1839.291667",,,,,"5882.750000",,"33.066667",,"651.866667",,,,"45.142857","1.488889","2.333333","1.800000","49.400000","0.000000","539.518519","0.000000","15.703704","522.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"87.000000","1340.250000",,,,,"0.000000","0.000000",,,"5396.250000","6344.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.597500",,"31.597500",,"31.597500",,,,,,,"975.541667",,,,,"6320.541667",,"108.933333",,"1912.866667",,,,"54.114286","4.422222","3.488889","3.866667","56.355556","0.000000","636.370370","0.000000","47.851852","586.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"248.875000","3817.000000",,,,,"0.000000","0.000000",,,"11269.625000","13672.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.703333",,"36.703333",,"36.703333",,,,,,,"771.583333",,,,,"7341.625000",,"5.644444",,"898.755556",,,,"2214.857143","1.266667","1.177778","2.466667","51.488889","0.000000","556.148148","0.000000","12.444444","542.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.500000","1766.125000",,,,,"0.000000","0.000000",,,"4972.375000","6286.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.016250",,"36.016250",,"36.016250",,,,,,,"467.416667",,,,,"7204.291667",,"7.466667",,"738.288889",,,,"1993.428571","1.400000","1.822222","4.266667","48.955556","0.000000","539.777778","0.000000","16.000000","522.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1386.375000",,,,,"0.000000","0.000000",,,"3427.875000","4618.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.599583",,"35.599583",,"35.599583",,,,,,,"437.125000",,,,,"7120.875000",,"3.755556",,"773.266667",,,,"1612.000000","0.977778","0.422222","1.688889","46.933333","0.000000","508.111111","0.000000","9.444444","497.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.750000","1490.125000",,,,,"0.000000","0.000000",,,"4225.250000","5007.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.667917",,"34.667917",,"34.667917",,,,,,,"423.250000",,,,,"6934.416667",,"3.200000",,"629.533333",,,,"1201.200000","0.933333","0.288889","1.488889","44.844444","0.000000","490.074074","0.000000","8.703704","479.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1201.625000",,,,,"0.000000","0.000000",,,"3088.125000","4113.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.700000",,"35.700000",,"35.700000",,,,,,,"617.666667",,,,,"7141.041667",,"9.266667",,"781.288889",,,,"1195.428571","1.577778","0.466667","1.977778","57.955556","0.000000","631.851852","0.000000","14.740741","614.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1451.750000",,,,,"0.000000","0.000000",,,"3704.875000","4850.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.749167",,"33.749167",,"33.749167",,,,,,,"1212.541667",,,,,"6750.666667",,"10.733333",,"1030.800000",,,,"1051.200000","1.644444","0.644444","3.777778","59.444444","0.000000","656.592593","0.000000","16.629630","638.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.250000","1953.500000",,,,,"0.000000","0.000000",,,"4607.625000","6157.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.363750",,"30.363750",,"30.363750",,,,,,,"1798.083333",,,,,"6073.791667",,"153.066667",,"708.622222",,,,"50.714286","4.288889","0.400000","2.311111","53.555556","0.000000","623.814815","0.000000","46.481481","575.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"288.000000","15.571429",,,,,"0.000000","0.000000",,,"4208.500000","4986.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.891667",,"31.891667",,"31.891667",,,,,,,"2290.625000",,,,,"6379.208333",,"259.244444",,"1167.977778",,,,"67.885714","7.533333","0.311111","2.355556","69.822222","0.000000","827.222222","0.000000","82.296296","743.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"535.375000","2211.375000",,,,,"0.000000","0.000000",,,"6375.500000","7729.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.634583",,"29.634583",,"29.634583",,,,,,,"2263.416667",,,,,"5927.708333",,"9.622222",,"1564.866667",,,,"54.000000","1.422222","0.444444","4.933333","59.577778","0.000000","645.666667","0.000000","15.259259","629.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.375000","2815.375000",,,,,"0.000000","0.000000",,,"5985.500000","8082.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.924583",,"27.924583",,"27.924583",,,,,,,"1249.875000",,,,,"5585.916667",,"4.622222",,"652.488889",,,,"43.942857","0.911111","0.444444","1.600000","48.977778","0.000000","538.555556","0.000000","9.777778","527.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.750000","1246.000000",,,,,"0.000000","0.000000",,,"3252.750000","4279.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.880000",,"30.880000",,"30.880000",,,,,,,"1665.875000",,,,,"6176.958333",,"3.755556",,"737.533333",,,,"48.142857","1.044444","0.688889","2.088889","54.000000","0.000000","599.185185","0.000000","10.111111","587.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1417.375000",,,,,"0.000000","0.000000",,,"3551.250000","4709.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.144167",,"31.144167",,"31.144167",,,,,,,"1336.041667",,,,,"6229.875000",,"5.266667",,"799.000000",,,,"56.657143","1.288889","0.444444","1.488889","63.177778","0.000000","692.740741","0.000000","13.629630","677.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1606.500000",,,,,"0.000000","0.000000",,,"5676.750000","6903.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.730000",,"28.730000",,"28.730000",,,,,,,"2083.208333",,,,,"5747.000000",,"27.622222",,"738.333333",,,,"52.914286","2.622222","0.577778","1.755556","57.311111","0.000000","649.666667","0.000000","27.148148","617.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"77.500000","1608.000000",,,,,"0.000000","0.000000",,,"7864.000000","9061.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.800000",,"33.800000",,"33.800000",,,,,,,"959.208333",,,,,"6761.000000",,"3.844444",,"1029.200000",,,,"49.542857","0.866667","0.466667","2.422222","54.666667","0.000000","580.111111","0.000000","8.962963","569.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.875000","1986.250000",,,,,"0.000000","0.000000",,,"4975.125000","6502.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.007500",,"36.007500",,"36.007500",,,,,,,"991.666667",,,,,"7202.291667",,"5.000000",,"960.444444",,,,"37.142857","1.022222","0.600000","3.622222","40.666667","0.000000","440.111111","0.000000","10.666667","428.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1816.875000",,,,,"0.000000","0.000000",,,"3914.250000","5339.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.603333",,"31.603333",,"31.603333",,,,,,,"1405.750000",,,,,"6321.875000",,"3.866667",,"649.955556",,,,"1535.485714","0.955556","0.600000","3.022222","35.444444","0.000000","392.666667","0.000000","9.259259","382.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.625000","1239.875000",,,,,"0.000000","0.000000",,,"3018.375000","3938.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.679167",,"35.679167",,"35.679167",,,,,,,"346.125000",,,,,"7136.666667",,"88.022222",,"784.888889",,,,"1911.114286","2.533333","1.866667","4.155556","54.155556","0.000000","596.518519","0.000000","26.592593","568.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"178.125000","1480.500000",,,,,"0.000000","0.000000",,,"4033.500000","5036.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.220000",,"36.220000",,"36.220000",,,,,,,"1105.541667",,,,,"7244.791667",,"627.555556",,"914.400000",,,,"1882.714286","15.622222","1.777778","2.822222","52.311111","0.000000","736.407407","0.000000","171.074074","564.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1247.125000","1749.000000",,,,,"0.000000","0.000000",,,"7899.000000","7413.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.024583",,"35.024583",,"35.024583",,,,,,,"696.375000",,,,,"7005.916667",,"259.222222",,"1560.311111",,,,"1443.457143","6.844444","0.622222","4.311111","71.244444","0.000000","828.555556","0.000000","74.518519","752.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"533.500000","2967.625000",,,,,"0.000000","0.000000",,,"7694.750000","9411.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.274583",,"35.274583",,"35.274583",,,,,,,"885.208333",,,,,"7055.958333",,"153.511111",,"1012.444444",,,,"1364.200000","4.400000","0.577778","3.133333","61.022222","0.000000","689.666667","0.000000","47.037037","641.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.250000","1920.375000",,,,,"0.000000","0.000000",,,"5219.125000","6458.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.555000",,"33.555000",,"33.555000",,,,,,,"1087.666667",,,,,"6712.083333",,"6.622222",,"1507.111111",,,,"1179.942857","1.444444","0.333333","4.155556","66.333333","0.000000","703.444444","0.000000","15.148148","687.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","13.000000",,,,,"0.000000","0.000000",,,"6080.750000","8271.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.135417",,"30.135417",,"30.135417",,,,,,,"1023.625000",,,,,"6028.041667",,"35.177778",,"1164.044444",,,,"54.428571","3.533333","0.600000","4.222222","57.888889","0.000000","648.444444","0.000000","38.296296","608.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.750000","2201.250000",,,,,"0.000000","0.000000",,,"5785.875000","7110.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.964167",,"34.964167",,"34.964167",,,,,,,"1404.250000",,,,,"6993.875000",,"19.911111",,"1187.444444",,,,"55.571429","1.955556","0.666667","3.755556","60.911111","0.000000","661.333333","0.000000","20.888889","639.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","2260.000000",,,,,"0.000000","0.000000",,,"5160.000000","6909.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.886667",,"30.886667",,"30.886667",,,,,,,"1519.750000",,,,,"6178.083333",,"21.622222",,"1854.577778",,,,"64.714286","1.977778","1.422222","3.777778","70.866667","0.000000","761.518519","0.000000","20.888889","739.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"73.500000","3496.875000",,,,,"0.000000","0.000000",,,"7184.000000","9790.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.833333",,"31.833333",,"31.833333",,,,,,,"1585.916667",,,,,"6367.833333",,"12.866667",,"1622.800000",,,,"53.257143","1.577778","0.822222","3.044444","58.644444","0.000000","635.370370","0.000000","16.074074","617.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.625000","3091.000000",,,,,"0.000000","0.000000",,,"6370.000000","8596.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.854167",,"32.854167",,"32.854167",,,,,,,"1132.125000",,,,,"6571.458333",,"584.577778",,"1616.622222",,,,"69.171429","13.111111","0.644444","4.177778","64.355556","0.000000","804.666667","0.000000","141.592593","660.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1101.000000","3047.625000",,,,,"0.000000","0.000000",,,"10069.625000","11215.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.522917",,"31.522917",,"31.522917",,,,,,,"1468.916667",,,,,"6305.625000",,"105.800000",,"2088.644444",,,,"58.657143","3.733333","2.155556","4.200000","62.200000","0.000000","687.666667","0.000000","40.592593","645.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.250000","4248.750000",,,,,"0.000000","0.000000",,,"12468.375000","15294.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.516667",,"31.516667",,"31.516667",,,,,,,"1139.000000",,,,,"6304.375000",,"44.511111",,"1635.355556",,,,"63.914286","3.400000","0.977778","3.111111","67.933333","0.000000","741.888889","0.000000","37.888889","700.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.625000","3152.375000",,,,,"0.000000","0.000000",,,"7792.250000","10154.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.352500",,"34.352500",,"34.352500",,,,,,,"948.791667",,,,,"6871.375000",,"123.066667",,"968.577778",,,,"41.771429","4.000000","1.066667","3.222222","43.044444","0.000000","494.777778","0.000000","43.333333","450.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"265.500000","1837.750000",,,,,"0.000000","0.000000",,,"4645.250000","5821.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.675833",,"29.675833",,"29.675833",,,,,,,"1876.125000",,,,,"5936.291667",,"524.466667",,"1955.977778",,,,"75.571429","10.444444","1.177778","8.644444","74.466667","0.000000","882.925926","0.000000","114.592593","767.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1019.125000","12.428571",,,,,"0.000000","0.000000",,,"10030.500000","11806.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.172083",,"31.172083",,"31.172083",,,,,,,"1666.333333",,,,,"6235.291667",,"735.333333",,"1117.066667",,,,"1968.914286","17.222222","0.888889","3.644444","53.555556","0.000000","759.481481","0.000000","188.629630","569.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1401.875000","2380.875000",,,,,"0.000000","0.000000",,,"10245.500000","10741.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.352917",,"28.352917",,"28.352917",,,,,,,"2065.125000",,,,,"5671.666667",,"954.444444",,"1317.800000",,,,"2448.571429","24.266667","0.466667","2.622222","59.555556","0.000000","903.296296","0.000000","266.777778","635.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1834.375000","2745.875000",,,,,"0.000000","0.000000",,,"13139.625000","13652.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.853750",,"31.853750",,"31.853750",,,,,,,"1553.083333",,,,,"6371.541667",,"837.422222",,"1468.377778",,,,"1856.342857","18.155556","1.155556","4.733333","61.866667","0.000000","853.703704","0.000000","201.703704","650.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1643.750000","3046.000000",,,,,"0.000000","0.000000",,,"13156.625000","13992.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.857083",,"32.857083",,"32.857083",,,,,,,"1128.458333",,,,,"6572.333333",,"1369.844444",,"1407.422222",,,,"1433.857143","31.266667","7.355556","3.955556","68.711111","0.000000","1054.740741","0.000000","343.518519","709.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2677.000000","2904.875000",,,,,"0.000000","0.000000",,,"16369.250000","15606.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.992917",,"34.992917",,"34.992917",,,,,,,"1188.875000",,,,,"6999.500000",,"614.488889",,"1761.888889",,,,"1348.171429","17.733333","1.133333","4.577778","58.000000","0.000000","800.333333","0.000000","195.148148","603.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1230.375000","3622.250000",,,,,"0.000000","0.000000",,,"13131.875000","15031.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.407083",,"30.407083",,"30.407083",,,,,,,"1482.875000",,,,,"6082.250000",,"376.422222",,"1158.777778",,,,"357.714286","8.755556","0.822222","4.888889","63.777778","0.000000","752.370370","0.000000","94.925926","655.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.857143","2409.375000",,,,,"0.000000","0.000000",,,"9898.500000","11360.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.220000",,"31.220000",,"31.220000",,,,,,,"1798.541667",,,,,"6244.833333",,"16.088889",,"1239.755556",,,,"52.114286","2.244444","1.066667","5.844444","56.800000","0.000000","626.370370","0.000000","23.666667","601.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.875000","2520.375000",,,,,"0.000000","0.000000",,,"8286.625000","10444.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.444583",,"30.444583",,"30.444583",,,,,,,"1555.375000",,,,,"6090.041667",,"622.377778",,"1201.488889",,,,"74.542857","14.488889","0.511111","2.644444","69.422222","0.000000","875.074074","0.000000","157.851852","715.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1201.000000","2545.125000",,,,,"0.000000","0.000000",,,"11376.875000","12334.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.931667",,"30.931667",,"30.931667",,,,,,,"1552.166667",,,,,"6187.208333",,"274.266667",,"1325.177778",,,,"57.200000","8.644444","0.266667","3.844444","55.288889","0.000000","665.407407","0.000000","93.629630","569.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"557.500000","2799.125000",,,,,"0.000000","0.000000",,,"9916.375000","11715.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.120417",,"30.120417",,"30.120417",,,,,,,"1712.250000",,,,,"6025.125000",,"60.644444",,"746.111111",,,,"53.314286","2.177778","0.822222","1.600000","58.200000","0.000000","640.259259","0.000000","23.296296","615.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.875000","1652.125000",,,,,"0.000000","0.000000",,,"7027.375000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.821667",,"25.821667",,"25.821667",,,,,,,"2845.666667",,,,,"5165.083333",,"904.177778",,"960.977778",,,,"76.828571","17.733333","1.355556","2.111111","69.666667","0.000000","930.333333","0.000000","194.259259","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1792.125000","293.857143",,,,,"0.000000","0.000000",,,"12381.000000","12246.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.296250",,"26.296250",,"26.296250",,,,,,,"2050.083333",,,,,"5260.166667",,"383.355556",,"1398.911111",,,,"74.457143","13.622222","1.022222","2.377778","71.088889","0.000000","902.925926","0.000000","149.666667","751.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"769.875000","2882.625000",,,,,"0.000000","0.000000",,,"10859.375000","12460.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.159167",,"28.159167",,"28.159167",,,,,,,"2489.583333",,,,,"5632.791667",,"875.577778",,"2303.733333",,,,"105.000000","33.622222","0.422222","3.177778","85.022222","0.000000","1252.111111","0.000000","372.111111","876.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1664.375000","4595.375000",,,,,"0.000000","0.000000",,,"16504.750000","18804.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.620000",,"28.620000",,"28.620000",,,,,,,"1938.916667",,,,,"5724.875000",,"629.133333",,"1436.488889",,,,"74.657143","22.622222","0.666667","3.222222","62.022222","0.000000","897.185185","0.000000","250.148148","645.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1283.000000","3008.625000",,,,,"0.000000","0.000000",,,"12472.125000","13888.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.895000",,"29.895000",,"29.895000",,,,,,,"1525.625000",,,,,"5979.958333",,"28.755556",,"782.911111",,,,"53.942857","2.977778","0.222222","1.444444","58.066667","0.000000","650.037037","0.000000","32.185185","616.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","1718.625000",,,,,"0.000000","0.000000",,,"7075.750000","8657.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.756250",,"28.756250",,"28.756250",,,,,,,"1323.833333",,,,,"5752.500000",,"72.155556",,"713.422222",,,,"1721.371429","1.644444","0.288889","1.022222","59.222222","0.000000","647.000000","0.000000","17.222222","628.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","1580.500000",,,,,"0.000000","0.000000",,,"6754.750000","8203.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.757500",,"26.757500",,"26.757500",,,,,,,"2210.708333",,,,,"5352.250000",,"56.266667",,"1120.977778",,,,"2291.028571","1.888889","0.400000","2.400000","55.711111","0.000000","623.888889","0.000000","20.111111","602.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"246.625000","2362.125000",,,,,"0.000000","0.000000",,,"8426.375000","10123.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.025833",,"29.025833",,"29.025833",,,,,,,"1341.833333",,,,,"5806.208333",,"6.400000",,"729.288889",,,,"1639.228571","1.177778","0.733333","1.733333","60.733333","0.000000","656.518519","0.000000","11.481481","643.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.625000","1617.375000",,,,,"0.000000","0.000000",,,"7303.125000","8401.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.267917",,"29.267917",,"29.267917",,,,,,,"1709.500000",,,,,"5854.416667",,"70.600000",,"865.711111",,,,"1516.800000","2.466667","0.577778","2.200000","64.422222","0.000000","711.629630","0.000000","25.555556","684.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"164.625000","1868.875000",,,,,"0.000000","0.000000",,,"7501.375000","9091.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.148333",,"28.148333",,"28.148333",,,,,,,"1930.750000",,,,,"5630.625000",,"117.666667",,"789.600000",,,,"1491.000000","9.222222","1.044444","3.333333","66.111111","0.000000","800.592593","0.000000","100.814815","698.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.750000","1750.875000",,,,,"0.000000","0.000000",,,"7688.625000","9246.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.875417",,"25.875417",,"25.875417",,,,,,,"2405.125000",,,,,"5176.041667",,"3.977778",,"780.355556",,,,"670.200000","0.955556","0.911111","1.755556","64.333333","0.000000","689.444444","0.000000","9.666667","678.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.875000","1687.250000",,,,,"0.000000","0.000000",,,"6771.250000","8422.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.283333",,"26.283333",,"26.283333",,,,,,,"2668.833333",,,,,"5257.708333",,"9.933333",,"797.644444",,,,"60.171429","1.600000","0.933333","1.400000","66.088889","0.000000","716.000000","0.000000","14.925926","698.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.625000","1682.875000",,,,,"0.000000","0.000000",,,"7456.125000","8730.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.337917",,"25.337917",,"25.337917",,,,,,,"2538.083333",,,,,"5068.500000",,"4.600000",,"789.133333",,,,"59.085714","0.688889","0.466667","1.177778","65.800000","0.000000","695.666667","0.000000","7.703704","686.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","1663.750000",,,,,"0.000000","0.000000",,,"6800.500000","8101.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.430417",,"25.430417",,"25.430417",,,,,,,"3079.166667",,,,,"5087.250000",,"3.200000",,"599.977778",,,,"42.714286","0.933333","0.755556","1.622222","47.911111","0.000000","529.740741","0.000000","9.222222","519.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","1112.875000",,,,,"0.000000","0.000000",,,"2870.750000","3700.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.291250",,"24.291250",,"24.291250",,,,,,,"2798.416667",,,,,"4859.125000",,"6.155556",,"850.755556",,,,"66.371429","0.911111","0.422222","1.644444","74.088889","0.000000","791.111111","0.000000","9.703704","780.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","15.428571",,,,,"0.000000","0.000000",,,"4078.500000","5420.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.172500",,"27.172500",,"27.172500",,,,,,,"2495.000000",,,,,"5435.375000",,"4.200000",,"567.177778",,,,"36.971429","0.911111","0.400000","1.444444","41.111111","0.000000","457.666667","0.000000","9.666667","446.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","1092.500000",,,,,"0.000000","0.000000",,,"2884.125000","3807.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.502917",,"29.502917",,"29.502917",,,,,,,"2226.375000",,,,,"5901.583333",,"7.911111",,"821.911111",,,,"61.228571","1.200000","0.422222","1.333333","68.066667","0.000000","729.666667","0.000000","12.037037","716.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1553.250000",,,,,"0.000000","0.000000",,,"4097.875000","5404.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.967500",,"26.967500",,"26.967500",,,,,,,"2845.916667",,,,,"5394.500000",,"22.688889",,"687.955556",,,,"53.514286","2.000000","0.111111","1.111111","59.022222","0.000000","672.370370","0.000000","22.740741","645.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.000000","1315.000000",,,,,"0.000000","0.000000",,,"3882.125000","4865.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.450417",,"29.450417",,"29.450417",,,,,,,"1569.583333",,,,,"5890.833333",,"11.777778",,"1370.555556",,,,"68.057143","1.022222","0.511111","3.044444","75.711111","0.000000","803.296296","0.000000","10.185185","791.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.250000","2592.625000",,,,,"0.000000","0.000000",,,"6762.375000","8755.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.865417",,"27.865417",,"27.865417",,,,,,,"1758.708333",,,,,"5574.125000",,"3.955556",,"742.088889",,,,"53.000000","0.600000","0.333333","1.533333","59.466667","0.000000","639.444444","0.000000","6.888889","631.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.750000","1646.500000",,,,,"0.000000","0.000000",,,"7368.375000","8525.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.913333",,"29.913333",,"29.913333",,,,,,,"1079.791667",,,,,"5983.708333",,"3.688889",,"941.133333",,,,"1652.200000","0.866667","0.400000","1.177778","78.377778","0.000000","834.555556","0.000000","8.555556","824.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.875000","1952.875000",,,,,"0.000000","0.000000",,,"7825.250000","9406.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.011667",,"31.011667",,"31.011667",,,,,,,"1406.250000",,,,,"6203.416667",,"41.800000",,"766.666667",,,,"2286.228571","4.177778","0.533333","1.533333","62.555556","0.000000","723.148148","0.000000","45.148148","676.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"109.500000","1702.000000",,,,,"0.000000","0.000000",,,"7427.000000","8866.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.420833",,"29.420833",,"29.420833",,,,,,,"1792.250000",,,,,"5885.000000",,"4.311111",,"916.444444",,,,"1761.742857","1.000000","0.644444","1.755556","69.711111","0.000000","747.111111","0.000000","9.592593","736.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"82.875000","1896.875000",,,,,"0.000000","0.000000",,,"7386.250000","8546.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.850417",,"30.850417",,"30.850417",,,,,,,"1424.041667",,,,,"6170.958333",,"13.000000",,"645.088889",,,,"1473.971429","1.777778","0.711111","3.000000","52.266667","0.000000","593.629630","0.000000","19.111111","571.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1211.625000",,,,,"0.000000","0.000000",,,"3209.125000","4171.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.236667",,"28.236667",,"28.236667",,,,,,,"1981.416667",,,,,"5648.291667",,"3.777778",,"741.266667",,,,"1476.057143","0.866667","0.288889","1.466667","61.822222","0.000000","668.222222","0.000000","8.333333","658.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1402.250000",,,,,"0.000000","0.000000",,,"3729.125000","4964.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.190417",,"31.190417",,"31.190417",,,,,,,"1629.625000",,,,,"6238.958333",,"2.977778",,"848.466667",,,,"695.314286","0.755556","0.133333","1.177778","72.400000","0.000000","779.333333","0.000000","7.629630","770.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","1609.250000",,,,,"0.000000","0.000000",,,"4168.750000","5444.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.638333",,"26.638333",,"26.638333",,,,,,,"2278.416667",,,,,"5328.833333",,"4.777778",,"842.044444",,,,"61.857143","0.955556","0.977778","1.844444","69.266667","0.000000","747.703704","0.000000","9.666667","736.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1587.750000",,,,,"0.000000","0.000000",,,"4070.375000","5358.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.717500",,"28.717500",,"28.717500",,,,,,,"1467.125000",,,,,"5744.416667",,"3.377778",,"827.644444",,,,"61.685714","1.111111","0.088889","0.911111","68.600000","0.000000","733.370370","0.000000","10.074074","721.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1531.625000",,,,,"0.000000","0.000000",,,"3996.750000","5177.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.725417",,"29.725417",,"29.725417",,,,,,,"1802.791667",,,,,"5946.000000",,"4.511111",,"664.022222",,,,"48.771429","0.866667","0.200000","2.066667","54.511111","0.000000","591.111111","0.000000","8.703704","581.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1249.375000",,,,,"0.000000","0.000000",,,"3295.000000","4284.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.903333",,"27.903333",,"27.903333",,,,,,,"2625.375000",,,,,"5581.708333",,"3.488889",,"816.800000",,,,"62.771429","0.844444","0.355556","1.244444","70.333333","0.000000","758.592593","0.000000","8.518519","748.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","1559.500000",,,,,"0.000000","0.000000",,,"4141.625000","5265.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.096250",,"30.096250",,"30.096250",,,,,,,"1892.916667",,,,,"6019.958333",,"3.066667",,"843.755556",,,,"63.600000","0.800000","0.311111","1.222222","71.200000","0.000000","764.222222","0.000000","8.444444","754.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1578.125000",,,,,"0.000000","0.000000",,,"4053.375000","5346.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.745833",,"28.745833",,"28.745833",,,,,,,"1493.041667",,,,,"5750.333333",,"4.822222",,"845.755556",,,,"61.857143","0.955556","0.377778","0.933333","69.000000","0.000000","739.074074","0.000000","9.629630","728.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.000000","13.285714",,,,,"0.000000","0.000000",,,"4043.375000","5334.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.570000",,"27.570000",,"27.570000",,,,,,,"2028.208333",,,,,"5514.958333",,"28.066667",,"797.933333",,,,"62.685714","2.644444","0.244444","1.088889","67.711111","0.000000","745.703704","0.000000","27.666667","712.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.500000","1536.375000",,,,,"0.000000","0.000000",,,"4516.125000","5835.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.720000",,"34.720000",,"34.720000",,,,,,,"602.458333",,,,,"6944.791667",,"4.333333",,"874.600000",,,,"47.028571","0.777778","0.311111","3.111111","52.155556","0.000000","554.888889","0.000000","8.000000","545.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.375000","1864.750000",,,,,"0.000000","0.000000",,,"7968.500000","9324.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.176667",,"28.176667",,"28.176667",,,,,,,"2246.916667",,,,,"5636.208333",,"3.755556",,"1181.733333",,,,"51.685714","0.866667","0.266667","1.844444","57.266667","0.000000","609.629630","0.000000","8.851852","599.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.000000","2333.875000",,,,,"0.000000","0.000000",,,"6837.000000","8522.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.516667",,"31.516667",,"31.516667",,,,,,,"796.541667",,,,,"6304.208333",,"7.400000",,"693.000000",,,,"1657.171429","0.844444","0.977778","1.600000","50.377778","0.000000","541.518519","0.000000","8.962963","531.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1319.125000",,,,,"0.000000","0.000000",,,"3373.625000","4335.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.645833",,"30.645833",,"30.645833",,,,,,,"696.375000",,,,,"6130.041667",,"9.466667",,"641.688889",,,,"2068.171429","1.444444","0.755556","2.155556","49.422222","0.000000","533.888889","0.000000","18.148148","514.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1172.625000",,,,,"0.000000","0.000000",,,"3114.500000","4007.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.793333",,"32.793333",,"32.793333",,,,,,,"792.666667",,,,,"6559.458333",,"3.644444",,"725.200000",,,,"1829.257143","0.933333","0.600000","1.400000","55.977778","0.000000","602.111111","0.000000","8.888889","591.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1389.625000",,,,,"0.000000","0.000000",,,"3540.000000","4582.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.132917",,"32.132917",,"32.132917",,,,,,,"679.750000",,,,,"6427.541667",,"4.844444",,"857.800000",,,,"1348.200000","0.955556","0.288889","1.511111","62.444444","0.000000","659.407407","0.000000","9.370370","648.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1613.625000",,,,,"0.000000","0.000000",,,"4757.000000","5548.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.356250",,"25.356250",,"25.356250",,,,,,,"2976.458333",,,,,"5072.375000",,"18.755556",,"1047.822222",,,,"1543.771429","2.200000","0.444444","2.622222","39.622222","0.000000","426.740741","0.000000","24.000000","401.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","2075.875000",,,,,"0.000000","0.000000",,,"4736.750000","7634.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.453333",,"22.453333",,"22.453333",,,,,,,"3901.791667",,,,,"4491.583333",,"8.977778",,"563.377778",,,,"823.085714","1.088889","0.444444","5.555556","49.733333","0.000000","506.814815","0.000000","11.592593","493.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.625000","1066.750000",,,,,"0.000000","0.000000",,,"2944.875000","3669.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.507500",,"22.507500",,"22.507500",,,,,,,"4598.458333",,,,,"4502.375000",,"3.866667",,"413.866667",,,,"36.971429","1.044444","0.133333","1.444444","39.288889","0.000000","397.962963","0.000000","9.851852","386.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","734.750000",,,,,"0.000000","0.000000",,,"2163.250000","2677.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.762917",,"18.762917",,"18.762917",,,,,,,"5041.916667",,,,,"3753.500000",,"4.000000",,"277.777778",,,,"22.571429","0.866667","0.333333","1.444444","23.822222","0.000000","248.000000","0.000000","8.814815","238.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","510.875000",,,,,"0.000000","0.000000",,,"1678.625000","2422.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.855833",,"19.855833",,"19.855833",,,,,,,"4403.791667",,,,,"3972.041667",,"3.911111",,"393.088889",,,,"31.285714","0.777778","0.355556","1.044444","33.600000","0.000000","348.444444","0.000000","8.111111","339.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","800.750000",,,,,"0.000000","0.000000",,,"2230.000000","2697.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.825833",,"20.825833",,"20.825833",,,,,,,"4391.000000",,,,,"4166.500000",,"3.711111",,"374.133333",,,,"35.314286","0.800000","0.133333","1.422222","38.066667","0.000000","390.851852","0.000000","8.444444","381.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.625000","670.000000",,,,,"0.000000","0.000000",,,"2038.375000","2416.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.725833",,"19.725833",,"19.725833",,,,,,,"4732.208333",,,,,"3946.166667",,"9.355556",,"352.511111",,,,"34.257143","1.466667","0.466667","0.755556","35.777778","0.000000","372.481481","0.000000","13.925926","355.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.250000","714.500000",,,,,"0.000000","0.000000",,,"3640.875000","4009.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.491250",,"19.491250",,"19.491250",,,,,,,"4325.250000",,,,,"3899.333333",,"4.244444",,"333.977778",,,,"30.742857","0.955556","0.155556","0.844444","32.733333","0.000000","337.296296","0.000000","9.481481","326.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.000000","819.250000",,,,,"0.000000","0.000000",,,"5880.625000","6300.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.437083",,"25.437083",,"25.437083",,,,,,,"2994.083333",,,,,"5088.375000",,"23.533333",,"869.000000",,,,"44.971429","2.044444","0.222222","1.511111","46.955556","0.000000","494.777778","0.000000","23.370370","467.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1685.750000",,,,,"0.000000","0.000000",,,"4987.000000","6139.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.069583",,"27.069583",,"27.069583",,,,,,,"2464.333333",,,,,"5414.708333",,"2.733333",,"583.755556",,,,"29.057143","0.933333","0.288889","1.555556","30.866667","0.000000","317.666667","0.000000","8.962963","307.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1100.000000",,,,,"0.000000","0.000000",,,"2665.250000","3452.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.204167",,"24.204167",,"24.204167",,,,,,,"3602.166667",,,,,"4841.916667",,"6.377778",,"1882.222222",,,,"50.428571","1.133333","0.644444","5.622222","53.288889","0.000000","520.777778","0.000000","11.333333","507.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.875000","3425.875000",,,,,"0.000000","0.000000",,,"6800.625000","9337.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.820417",,"20.820417",,"20.820417",,,,,,,"4006.500000",,,,,"4165.125000",,"12.533333",,"1496.600000",,,,"1957.285714","1.200000","1.200000","4.977778","21.800000","0.000000","222.222222","0.000000","12.037037","208.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.125000","14.142857",,,,,"0.000000","0.000000",,,"5365.875000","7516.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.324583",,"23.324583",,"23.324583",,,,,,,"4029.791667",,,,,"4665.625000",,"9.133333",,"1642.688889",,,,"2325.628571","1.000000","0.888889","6.377778","24.088889","0.000000","235.592593","0.000000","9.777778","224.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.750000","3300.375000",,,,,"0.000000","0.000000",,,"6345.500000","9176.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.148333",,"24.148333",,"24.148333",,,,,,,"3176.833333",,,,,"4830.375000",,"4.488889",,"1973.688889",,,,"1902.400000","0.977778","0.444444","5.666667","49.955556","0.000000","495.407407","0.000000","9.481481","484.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.750000","3718.000000",,,,,"0.000000","0.000000",,,"7273.625000","9946.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.685833",,"20.685833",,"20.685833",,,,,,,"4068.708333",,,,,"4138.000000",,"9.244444",,"1780.177778",,,,"1603.600000","1.955556","0.600000","5.711111","36.155556","0.000000","362.481481","0.000000","20.296296","340.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"89.750000","3370.875000",,,,,"0.000000","0.000000",,,"7153.500000","9290.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.097500",,"21.097500",,"21.097500",,,,,,,"4415.166667",,,,,"4220.416667",,"4.977778",,"1786.333333",,,,"1362.028571","0.866667","0.133333","5.733333","37.777778","0.000000","366.777778","0.000000","8.925926","356.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.250000","3388.000000",,,,,"0.000000","0.000000",,,"6533.375000","9043.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.907083",,"17.907083",,"17.907083",,,,,,,"5216.166667",,,,,"3582.416667",,"3.333333",,"1780.533333",,,,"32.142857","0.933333","0.733333","5.777778","33.666667","0.000000","328.555556","0.000000","9.111111","317.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","3366.250000",,,,,"0.000000","0.000000",,,"6341.500000","8849.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.537083",,"19.537083",,"19.537083",,,,,,,"5090.291667",,,,,"3908.375000",,"9.577778",,"1692.911111",,,,"33.485714","1.511111","0.288889","8.777778","34.111111","0.000000","336.777778","0.000000","14.259259","319.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","3071.500000",,,,,"0.000000","0.000000",,,"5974.250000","8371.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.708750",,"20.708750",,"20.708750",,,,,,,"4542.625000",,,,,"4142.666667",,"4.800000",,"2252.711111",,,,"37.800000","1.044444","0.444444","4.488889","39.377778","0.000000","378.666667","0.000000","9.851852","367.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.000000","4418.750000",,,,,"0.000000","0.000000",,,"8257.750000","11664.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.500417",,"19.500417",,"19.500417",,,,,,,"4522.833333",,,,,"3900.791667",,"4.377778",,"1501.422222",,,,"26.514286","0.955556","0.200000","4.600000","27.200000","0.000000","262.851852","0.000000","9.518519","252.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.375000","220.285714",,,,,"0.000000","0.000000",,,"8831.875000","10903.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.796667",,"17.796667",,"17.796667",,,,,,,"4638.500000",,,,,"3560.208333",,"4.933333",,"1582.933333",,,,"41.800000","1.000000","0.200000","5.155556","44.044444","0.000000","428.370370","0.000000","9.925926","417.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.375000","3148.000000",,,,,"0.000000","0.000000",,,"8976.625000","11168.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.070417",,"17.070417",,"17.070417",,,,,,,"4887.166667",,,,,"3415.166667",,"4.911111",,"1053.400000",,,,"25.600000","1.044444","0.666667","3.022222","26.755556","0.000000","273.370370","0.000000","10.222222","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","1920.625000",,,,,"0.000000","0.000000",,,"3970.875000","5474.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.378750",,"18.378750",,"18.378750",,,,,,,"4504.291667",,,,,"3676.583333",,"67.933333",,"1308.200000",,,,"42.485714","1.600000","0.511111","3.555556","44.711111","0.000000","452.740741","0.000000","16.481481","434.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"151.375000","2539.000000",,,,,"0.000000","0.000000",,,"5534.375000","7250.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.925833",,"18.925833",,"18.925833",,,,,,,"5157.375000",,,,,"3786.333333",,"22.666667",,"621.133333",,,,"37.285714","2.022222","0.866667","2.111111","38.444444","0.000000","404.370370","0.000000","22.481481","377.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"56.500000","1150.250000",,,,,"0.000000","0.000000",,,"2972.500000","3829.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.795417",,"23.795417",,"23.795417",,,,,,,"3119.083333",,,,,"4760.166667",,"3.422222",,"479.488889",,,,"37.371429","0.844444","0.177778","1.244444","40.600000","0.000000","421.777778","0.000000","8.333333","412.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","879.375000",,,,,"0.000000","0.000000",,,"2511.750000","3093.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.869167",,"18.869167",,"18.869167",,,,,,,"4801.083333",,,,,"3774.666667",,"5.244444",,"505.333333",,,,"38.342857","1.044444","0.133333","1.622222","41.400000","0.000000","431.888889","0.000000","10.407407","420.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","967.625000",,,,,"0.000000","0.000000",,,"2655.125000","3409.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.479583",,"23.479583",,"23.479583",,,,,,,"3359.625000",,,,,"4696.875000",,"2.644444",,"180.400000",,,,"2023.171429","0.933333","0.177778","2.488889","15.044444","0.000000","167.814815","0.000000","8.518519","158.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","346.000000",,,,,"0.000000","0.000000",,,"1189.875000","1432.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.362917",,"29.362917",,"29.362917",,,,,,,"2060.750000",,,,,"5873.458333",,"4.733333",,"373.044444",,,,"2292.142857","0.955556","0.133333","1.022222","34.422222","0.000000","348.000000","0.000000","9.814815","336.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.000000","663.625000",,,,,"0.000000","0.000000",,,"2108.125000","2482.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.831667",,"25.831667",,"25.831667",,,,,,,"2430.083333",,,,,"5167.375000",,"8.333333",,"565.866667",,,,"1721.857143","1.377778","0.133333","1.066667","47.355556","0.000000","483.555556","0.000000","12.592593","468.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"57.125000","1031.250000",,,,,"0.000000","0.000000",,,"3312.625000","3701.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.794167",,"23.794167",,"23.794167",,,,,,,"2934.041667",,,,,"4759.750000",,"6.377778",,"456.866667",,,,"1600.514286","0.933333","0.088889","1.066667","45.733333","0.000000","461.000000","0.000000","9.037037","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","845.375000",,,,,"0.000000","0.000000",,,"2517.125000","3221.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.172083",,"17.172083",,"17.172083",,,,,,,"5485.541667",,,,,"3435.208333",,"3.466667",,"170.666667",,,,"1497.057143","0.933333","0.088889","1.022222","13.266667","0.000000","145.370370","0.000000","9.333333","134.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","343.375000",,,,,"0.000000","0.000000",,,"1130.375000","1451.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.955417",,"16.955417",,"16.955417",,,,,,,"5183.666667",,,,,"3392.125000",,"109.666667",,"433.955556",,,,"40.257143","3.977778","0.466667","1.266667","40.711111","0.000000","457.074074","0.000000","43.296296","412.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"219.000000","804.750000",,,,,"0.000000","0.000000",,,"2838.750000","3191.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.264167",,"16.264167",,"16.264167",,,,,,,"5416.708333",,,,,"3253.541667",,"3.200000",,"405.111111",,,,"37.828571","0.888889","0.088889","0.822222","40.822222","0.000000","419.555556","0.000000","8.407407","409.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","830.250000",,,,,"0.000000","0.000000",,,"4113.250000","4674.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.130833",,"16.130833",,"16.130833",,,,,,,"5390.416667",,,,,"3227.208333",,"3.511111",,"384.822222",,,,"36.742857","0.933333","0.133333","1.200000","39.600000","0.000000","408.740741","0.000000","9.296296","398.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.750000","880.750000",,,,,"0.000000","0.000000",,,"5049.250000","5846.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.808750",,"19.808750",,"19.808750",,,,,,,"4472.583333",,,,,"3963.041667",,"5.422222",,"736.666667",,,,"40.800000","1.088889","0.311111","3.466667","43.955556","0.000000","457.111111","0.000000","11.037037","444.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1397.750000",,,,,"0.000000","0.000000",,,"3463.375000","4536.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.232083",,"15.232083",,"15.232083",,,,,,,"5952.375000",,,,,"3047.250000",,"3.644444",,"472.555556",,,,"29.028571","0.955556","0.400000","1.377778","31.088889","0.000000","325.629630","0.000000","8.962963","315.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.500000","893.500000",,,,,"0.000000","0.000000",,,"2303.125000","3007.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.699167",,"18.699167",,"18.699167",,,,,,,"4859.291667",,,,,"3740.958333",,"3.311111",,"566.822222",,,,"40.428571","0.933333","0.133333","1.488889","43.600000","0.000000","445.407407","0.000000","8.703704","435.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.875000","1063.375000",,,,,"0.000000","0.000000",,,"2806.125000","3550.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.230417",,"18.230417",,"18.230417",,,,,,,"4888.166667",,,,,"3647.083333",,"4.688889",,"642.311111",,,,"32.542857","1.000000","0.133333","1.311111","34.866667","0.000000","359.814815","0.000000","9.740741","348.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","1203.375000",,,,,"0.000000","0.000000",,,"2880.875000","3761.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.436667",,"13.436667",,"13.436667",,,,,,,"6628.500000",,,,,"2688.291667",,"27.600000",,"166.422222",,,,"16.685714","2.533333","0.133333","0.911111","15.377778","0.000000","191.962963","0.000000","26.888889","159.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.375000","294.250000",,,,,"0.000000","0.000000",,,"1199.750000","1329.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.715833",,"19.715833",,"19.715833",,,,,,,"4473.083333",,,,,"3944.083333",,"4.066667",,"698.333333",,,,"35.685714","0.933333","0.177778","2.111111","38.688889","0.000000","405.037037","0.000000","9.148148","394.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1324.375000",,,,,"0.000000","0.000000",,,"3139.125000","4367.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.884167",,"19.884167",,"19.884167",,,,,,,"4239.083333",,,,,"3977.791667",,"3.755556",,"335.533333",,,,"24.085714","0.844444","1.111111","1.333333","26.088889","0.000000","283.370370","0.000000","8.740741","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","654.250000",,,,,"0.000000","0.000000",,,"1885.125000","2607.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.310417",,"18.310417",,"18.310417",,,,,,,"5189.416667",,,,,"3663.000000",,"4.933333",,"358.466667",,,,"2420.400000","1.111111","0.311111","1.822222","32.800000","0.000000","352.925926","0.000000","13.037037","338.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","684.750000",,,,,"0.000000","0.000000",,,"2000.875000","2632.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.465000",,"19.465000",,"19.465000",,,,,,,"4358.958333",,,,,"3893.833333",,"4.333333",,"393.911111",,,,"2362.314286","0.777778","0.177778","1.200000","38.000000","0.000000","394.629630","0.000000","8.370370","384.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","16.428571",,,,,"0.000000","0.000000",,,"2190.000000","2697.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.359583",,"21.359583",,"21.359583",,,,,,,"4336.250000",,,,,"4272.750000",,"3.422222",,"541.200000",,,,"2060.228571","0.933333","0.133333","1.777778","43.777778","0.000000","459.148148","0.000000","9.333333","448.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1012.500000",,,,,"0.000000","0.000000",,,"3425.625000","3691.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.265833",,"18.265833",,"18.265833",,,,,,,"5036.083333",,,,,"3654.333333",,"2.666667",,"269.133333",,,,"1648.057143","0.844444","0.200000","0.977778","26.288889","0.000000","277.333333","0.000000","8.185185","267.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.125000","681.500000",,,,,"0.000000","0.000000",,,"5373.250000","5685.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.197083",,"17.197083",,"17.197083",,,,,,,"4896.041667",,,,,"3440.416667",,"3.422222",,"386.355556",,,,"663.171429","0.844444","0.266667","1.355556","38.800000","0.000000","407.740741","0.000000","8.740741","397.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","810.625000",,,,,"0.000000","0.000000",,,"3328.375000","3915.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.111667",,"16.111667",,"16.111667",,,,,,,"5782.125000",,,,,"3223.458333",,"3.800000",,"374.088889",,,,"34.771429","0.866667","0.133333","1.022222","37.555556","0.000000","391.518519","0.000000","8.555556","381.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","675.250000",,,,,"0.000000","0.000000",,,"2003.125000","2493.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.023750",,"17.023750",,"17.023750",,,,,,,"5190.541667",,,,,"3405.791667",,"2.600000",,"503.044444",,,,"43.371429","0.933333","0.088889","1.511111","46.822222","0.000000","477.296296","0.000000","8.925926","466.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","923.875000",,,,,"0.000000","0.000000",,,"2566.500000","3336.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.775417",,"16.775417",,"16.775417",,,,,,,"5300.708333",,,,,"3356.000000",,"3.666667",,"434.644444",,,,"43.600000","0.933333","0.133333","1.333333","46.866667","0.000000","473.592593","0.000000","9.185185","463.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","826.375000",,,,,"0.000000","0.000000",,,"2465.375000","3035.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.901667",,"16.901667",,"16.901667",,,,,,,"5474.875000",,,,,"3381.458333",,"2.422222",,"343.911111",,,,"32.742857","0.955556","0.155556","1.844444","34.888889","0.000000","355.962963","0.000000","9.074074","345.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","863.125000",,,,,"0.000000","0.000000",,,"5283.375000","6053.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.617500",,"14.617500",,"14.617500",,,,,,,"6402.583333",,,,,"2924.500000",,"8.377778",,"246.955556",,,,"25.257143","1.466667","0.133333","6.466667","25.955556","0.000000","273.111111","0.000000","13.333333","257.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","567.125000",,,,,"0.000000","0.000000",,,"3326.000000","3883.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"12.524583",,"12.524583",,"12.524583",,,,,,,"6376.166667",,,,,"2505.833333",,"3.466667",,"208.688889",,,,"20.228571","0.933333","0.533333","2.200000","21.088889","0.000000","219.370370","0.000000","8.740741","209.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","400.000000",,,,,"0.000000","0.000000",,,"1370.375000","1596.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.667917",,"17.667917",,"17.667917",,,,,,,"5635.708333",,,,,"3534.458333",,"2.622222",,"445.577778",,,,"42.200000","0.933333","0.155556","1.533333","45.311111","0.000000","456.333333","0.000000","8.481481","446.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","782.750000",,,,,"0.000000","0.000000",,,"2283.250000","2742.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.422917",,"13.422917",,"13.422917",,,,,,,"6330.041667",,,,,"2685.500000",,"21.400000",,"210.844444",,,,"20.285714","2.000000","0.111111","1.555556","20.066667","0.000000","228.740741","0.000000","22.111111","202.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.625000","397.250000",,,,,"0.000000","0.000000",,,"1391.750000","1606.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.380417",,"23.380417",,"23.380417",,,,,,,"3806.125000",,,,,"4676.708333",,"3.400000",,"617.177778",,,,"40.771429","0.933333","0.088889","2.377778","43.888889","0.000000","445.370370","0.000000","8.740741","435.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1113.875000",,,,,"0.000000","0.000000",,,"2844.125000","3666.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.631250",,"20.631250",,"20.631250",,,,,,,"4556.416667",,,,,"4127.375000",,"3.400000",,"792.688889",,,,"31.514286","0.933333","1.133333","2.688889","33.800000","0.000000","349.740741","0.000000","8.888889","339.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1542.375000",,,,,"0.000000","0.000000",,,"3396.500000","4612.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.587917",,"23.587917",,"23.587917",,,,,,,"3373.375000",,,,,"4718.166667",,"3.400000",,"481.755556",,,,"1997.800000","0.844444","0.133333","1.377778","41.155556","0.000000","433.370370","0.000000","8.259259","423.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1022.625000",,,,,"0.000000","0.000000",,,"4399.750000","5086.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.564583",,"24.564583",,"24.564583",,,,,,,"3519.416667",,,,,"4914.041667",,"3.688889",,"320.777778",,,,"2565.085714","0.933333","0.133333","1.311111","27.955556","0.000000","298.259259","0.000000","9.333333","287.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","757.375000",,,,,"0.000000","0.000000",,,"4743.500000","5232.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.986667",,"23.986667",,"23.986667",,,,,,,"3394.833333",,,,,"4798.291667",,"2.533333",,"586.377778",,,,"1801.600000","0.933333","0.133333","1.200000","46.400000","0.000000","487.888889","0.000000","8.666667","477.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.875000","1043.875000",,,,,"0.000000","0.000000",,,"3518.250000","3739.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.213750",,"22.213750",,"22.213750",,,,,,,"4269.083333",,,,,"4443.416667",,"7.844444",,"450.377778",,,,"1599.828571","1.466667","0.244444","1.600000","37.266667","0.000000","393.777778","0.000000","13.222222","377.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","863.875000",,,,,"0.000000","0.000000",,,"2342.500000","2918.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.515417",,"20.515417",,"20.515417",,,,,,,"4089.000000",,,,,"4104.250000",,"4.111111",,"420.466667",,,,"1199.285714","1.022222","0.088889","1.444444","37.066667","0.000000","386.555556","0.000000","9.592593","375.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.625000","801.500000",,,,,"0.000000","0.000000",,,"2276.125000","3109.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.172917",,"21.172917",,"21.172917",,,,,,,"4421.125000",,,,,"4235.250000",,"2.755556",,"739.733333",,,,"42.800000","1.022222","0.088889","1.866667","46.222222","0.000000","476.555556","0.000000","9.518519","465.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1393.125000",,,,,"0.000000","0.000000",,,"3344.625000","4535.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.840417",,"19.840417",,"19.840417",,,,,,,"4291.666667",,,,,"3968.791667",,"2.511111",,"385.177778",,,,"32.885714","0.844444","0.088889","0.866667","35.488889","0.000000","366.407407","0.000000","8.037037","356.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","722.750000",,,,,"0.000000","0.000000",,,"2183.125000","3037.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.291667",,"20.291667",,"20.291667",,,,,,,"4614.333333",,,,,"4059.541667",,"3.755556",,"411.244444",,,,"35.628571","0.933333","0.311111","1.155556","38.266667","0.000000","396.074074","0.000000","9.518519","385.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","796.875000",,,,,"0.000000","0.000000",,,"2363.375000","3096.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.220833",,"18.220833",,"18.220833",,,,,,,"5276.166667",,,,,"3645.041667",,"2.644444",,"249.022222",,,,"21.485714","0.888889","0.088889","3.133333","22.688889","0.000000","239.111111","0.000000","8.333333","229.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.250000","479.500000",,,,,"0.000000","0.000000",,,"1498.500000","1986.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.927917",,"20.927917",,"20.927917",,,,,,,"4277.875000",,,,,"4186.791667",,"6.355556",,"462.155556",,,,"38.742857","1.088889","0.355556","1.266667","41.666667","0.000000","430.740741","0.000000","10.148148","419.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","868.125000",,,,,"0.000000","0.000000",,,"2488.375000","3269.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.755417",,"18.755417",,"18.755417",,,,,,,"4936.833333",,,,,"3752.083333",,"2.622222",,"389.022222",,,,"30.171429","0.933333","0.200000","1.644444","32.200000","0.000000","334.037037","0.000000","9.000000","323.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","713.375000",,,,,"0.000000","0.000000",,,"2006.250000","2515.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.352917",,"16.352917",,"16.352917",,,,,,,"5814.666667",,,,,"3271.625000",,"3.711111",,"752.666667",,,,"32.628571","0.933333","0.088889","2.711111","34.755556","0.000000","355.222222","0.000000","9.333333","344.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1502.375000",,,,,"0.000000","0.000000",,,"4342.125000","5370.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.863333",,"13.863333",,"13.863333",,,,,,,"6080.000000",,,,,"2773.791667",,"21.444444",,"215.333333",,,,"21.714286","2.000000","0.133333","0.977778","21.688889","0.000000","248.333333","0.000000","21.962963","222.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.500000","601.750000",,,,,"0.000000","0.000000",,,"5200.875000","5453.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.919167",,"20.919167",,"20.919167",,,,,,,"3703.416667",,,,,"4185.000000",,"8.555556",,"442.866667",,,,"38.428571","1.644444","0.088889","1.311111","40.533333","0.000000","424.888889","0.000000","14.481481","407.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","787.000000",,,,,"0.000000","0.000000",,,"2339.000000","2837.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.155417",,"21.155417",,"21.155417",,,,,,,"4054.458333",,,,,"4232.041667",,"13.577778",,"567.955556",,,,"40.971429","1.400000","0.222222","2.155556","44.111111","0.000000","465.592593","0.000000","13.481481","450.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.625000","1078.375000",,,,,"0.000000","0.000000",,,"2940.250000","3752.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.623750",,"18.623750",,"18.623750",,,,,,,"5099.750000",,,,,"3725.791667",,"3.844444",,"262.911111",,,,"2491.600000","1.044444","0.222222","2.644444","23.955556","0.000000","259.962963","0.000000","12.444444","245.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.750000","474.500000",,,,,"0.000000","0.000000",,,"1468.250000","1861.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.632083",,"19.632083",,"19.632083",,,,,,,"4507.583333",,,,,"3927.250000",,"3.355556",,"388.755556",,,,"2334.228571","0.777778","0.288889","1.355556","35.022222","0.000000","362.296296","0.000000","7.851852","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.375000","702.125000",,,,,"0.000000","0.000000",,,"2038.000000","2476.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.717500",,"21.717500",,"21.717500",,,,,,,"4268.333333",,,,,"4344.250000",,"3.066667",,"587.377778",,,,"1993.600000","0.933333","0.355556","1.444444","46.733333","0.000000","487.407407","0.000000","8.629630","477.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.875000","1126.625000",,,,,"0.000000","0.000000",,,"3664.000000","4042.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.412083",,"17.412083",,"17.412083",,,,,,,"5486.708333",,,,,"3483.375000",,"2.688889",,"184.688889",,,,"1771.457143","0.933333","0.133333","1.288889","17.755556","0.000000","195.185185","0.000000","8.481481","185.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"9.625000","317.625000",,,,,"0.000000","0.000000",,,"1094.625000","1296.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.158750",,"17.158750",,"17.158750",,,,,,,"5362.958333",,,,,"3432.541667",,"3.422222",,"386.377778",,,,"546.400000","0.844444","0.133333","1.177778","37.866667","0.000000","401.259259","0.000000","8.259259","391.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","758.125000",,,,,"0.000000","0.000000",,,"2327.750000","2918.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.318333",,"16.318333",,"16.318333",,,,,,,"5400.041667",,,,,"3264.291667",,"2.600000",,"435.333333",,,,"38.657143","0.933333","0.088889","1.000000","42.044444","0.000000","438.851852","0.000000","8.444444","429.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","18.000000",,,,,"0.000000","0.000000",,,"2272.375000","2846.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.762917",,"17.762917",,"17.762917",,,,,,,"5038.375000",,,,,"3553.416667",,"2.711111",,"460.022222",,,,"36.942857","0.933333","0.088889","1.000000","40.244444","0.000000","424.407407","0.000000","8.888889","414.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.750000","891.000000",,,,,"0.000000","0.000000",,,"2885.375000","3305.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.845000",,"15.845000",,"15.845000",,,,,,,"5632.000000",,,,,"3169.958333",,"3.688889",,"377.311111",,,,"34.485714","0.844444","0.133333","1.000000","37.488889","0.000000","396.296296","0.000000","8.703704","386.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","685.875000",,,,,"0.000000","0.000000",,,"2427.750000","2545.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.650833",,"15.650833",,"15.650833",,,,,,,"5921.583333",,,,,"3131.333333",,"8.333333",,"306.066667",,,,"28.171429","1.555556","0.088889","0.822222","29.511111","0.000000","319.740741","0.000000","14.000000","302.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.500000","562.250000",,,,,"0.000000","0.000000",,,"2005.875000","2331.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.367917",,"15.367917",,"15.367917",,,,,,,"5492.416667",,,,,"3074.583333",,"2.711111",,"354.377778",,,,"32.885714","0.955556","0.133333","0.822222","35.577778","0.000000","376.222222","0.000000","9.444444","365.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","885.500000",,,,,"0.000000","0.000000",,,"5734.125000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.462500",,"16.462500",,"16.462500",,,,,,,"5792.791667",,,,,"3293.291667",,"2.422222",,"365.822222",,,,"34.285714","0.800000","0.088889","0.977778","37.666667","0.000000","402.444444","0.000000","7.518519","393.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","709.625000",,,,,"0.000000","0.000000",,,"3024.375000","3443.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.004583",,"17.004583",,"17.004583",,,,,,,"5650.916667",,,,,"3401.791667",,"2.822222",,"367.355556",,,,"33.714286","0.844444","0.177778","1.044444","36.666667","0.000000","384.629630","0.000000","8.037037","375.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","695.000000",,,,,"0.000000","0.000000",,,"2123.375000","2659.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.058333",,"15.058333",,"15.058333",,,,,,,"5794.625000",,,,,"3012.291667",,"21.222222",,"351.400000",,,,"32.457143","1.911111","0.088889","1.000000","34.133333","0.000000","380.407407","0.000000","21.000000","355.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.375000","644.125000",,,,,"0.000000","0.000000",,,"2016.500000","2425.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.575417",,"18.575417",,"18.575417",,,,,,,"4860.833333",,,,,"3716.083333",,"2.466667",,"305.688889",,,,"28.000000","0.888889","0.422222","1.377778","30.155556","0.000000","321.629630","0.000000","8.851852","311.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","607.125000",,,,,"0.000000","0.000000",,,"1918.250000","2419.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.607917",,"28.607917",,"28.607917",,,,,,,"1975.791667",,,,,"5722.500000",,"3.555556",,"559.844444",,,,"38.742857","0.866667","0.444444","1.022222","42.666667","0.000000","458.851852","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","1031.375000",,,,,"0.000000","0.000000",,,"2735.375000","3532.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.440417",,"17.440417",,"17.440417",,,,,,,"5369.708333",,,,,"3489.166667",,"3.600000",,"220.911111",,,,"2510.228571","1.066667","1.822222","1.111111","16.377778","0.000000","181.444444","0.000000","10.148148","169.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.250000","426.375000",,,,,"0.000000","0.000000",,,"1293.625000","1583.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.963750",,"16.963750",,"16.963750",,,,,,,"5512.583333",,,,,"3393.458333",,"7.755556",,"95.866667",,,,"2484.657143","1.377778","0.088889","1.266667","9.600000","0.000000","114.444444","0.000000","12.703704","99.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.125000","195.000000",,,,,"0.000000","0.000000",,,"893.000000","1139.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.052500",,"21.052500",,"21.052500",,,,,,,"4310.166667",,,,,"4211.666667",,"3.066667",,"531.488889",,,,"1968.885714","1.022222","0.911111","2.444444","41.044444","0.000000","437.370370","0.000000","9.222222","426.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.375000","966.125000",,,,,"0.000000","0.000000",,,"3288.000000","3481.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.387083",,"17.387083",,"17.387083",,,,,,,"4945.458333",,,,,"3478.541667",,"2.733333",,"299.400000",,,,"1527.000000","1.022222","0.222222","0.555556","29.777778","0.000000","317.592593","0.000000","9.518519","306.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.125000","628.625000",,,,,"0.000000","0.000000",,,"2489.125000","2953.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.143750",,"17.143750",,"17.143750",,,,,,,"5214.708333",,,,,"3429.875000",,"3.133333",,"422.422222",,,,"626.114286","0.933333","0.133333","0.711111","41.000000","0.000000","437.555556","0.000000","9.074074","427.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","1036.625000",,,,,"0.000000","0.000000",,,"5725.875000","6731.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.491667",,"15.491667",,"15.491667",,,,,,,"5783.000000",,,,,"3099.166667",,"2.777778",,"375.088889",,,,"29.542857","1.111111","0.088889","2.066667","31.688889","0.000000","335.185185","0.000000","9.851852","323.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1017.125000",,,,,"0.000000","0.000000",,,"5505.750000","6864.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.681250",,"15.681250",,"15.681250",,,,,,,"5588.458333",,,,,"3137.000000",,"2.666667",,"384.377778",,,,"34.971429","1.022222","0.777778","1.022222","37.733333","0.000000","395.518519","0.000000","9.555556","384.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1006.750000",,,,,"0.000000","0.000000",,,"5475.125000","6928.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.431667",,"14.431667",,"14.431667",,,,,,,"6280.291667",,,,,"2887.666667",,"2.688889",,"180.755556",,,,"17.571429","1.022222","0.133333","1.311111","18.177778","0.000000","193.296296","0.000000","9.370370","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","619.125000",,,,,"0.000000","0.000000",,,"4520.375000","5739.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.050417",,"17.050417",,"17.050417",,,,,,,"5428.875000",,,,,"3411.000000",,"2.955556",,"427.400000",,,,"39.400000","0.911111","0.244444","0.844444","42.488889","0.000000","433.666667","0.000000","8.777778","423.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1057.375000",,,,,"0.000000","0.000000",,,"5564.125000","6850.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.108750",,"13.108750",,"13.108750",,,,,,,"6305.708333",,,,,"2622.916667",,"2.555556",,"205.844444",,,,"18.514286","0.844444","0.111111","0.866667","19.311111","0.000000","205.370370","0.000000","8.407407","195.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","597.875000",,,,,"0.000000","0.000000",,,"4809.375000","5457.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.620000",,"15.620000",,"15.620000",,,,,,,"5381.750000",,,,,"3125.041667",,"8.377778",,"387.577778",,,,"37.371429","1.644444","0.155556","1.155556","39.155556","0.000000","405.481481","0.000000","14.333333","388.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","961.750000",,,,,"0.000000","0.000000",,,"5608.875000","6570.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.203750",,"16.203750",,"16.203750",,,,,,,"5696.291667",,,,,"3241.875000",,"2.555556",,"398.711111",,,,"36.714286","0.844444","0.088889","2.444444","39.466667","0.000000","403.296296","0.000000","7.925926","394.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","994.500000",,,,,"0.000000","0.000000",,,"5465.625000","6645.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.687500",,"16.687500",,"16.687500",,,,,,,"5753.208333",,,,,"3338.583333",,"21.377778",,"309.777778",,,,"31.571429","2.000000","0.088889","0.644444","32.577778","0.000000","357.851852","0.000000","22.074074","331.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.875000","842.000000",,,,,"0.000000","0.000000",,,"5259.375000","6447.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.737083",,"15.737083",,"15.737083",,,,,,,"6035.666667",,,,,"3148.250000",,"2.600000",,"315.600000",,,,"29.857143","0.933333","0.088889","0.777778","31.888889","0.000000","328.444444","0.000000","8.518519","318.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","898.250000",,,,,"0.000000","0.000000",,,"5282.875000","6509.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.880417",,"20.880417",,"20.880417",,,,,,,"4238.750000",,,,,"4177.250000",,"2.911111",,"552.444444",,,,"47.200000","0.933333","0.177778","1.111111","51.377778","0.000000","529.444444","0.000000","8.666667","519.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","1261.750000",,,,,"0.000000","0.000000",,,"6176.625000","7568.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.545833",,"15.545833",,"15.545833",,,,,,,"5818.916667",,,,,"3109.750000",,"2.888889",,"221.844444",,,,"2243.600000","0.933333","0.177778","1.222222","20.200000","0.000000","214.148148","0.000000","9.148148","203.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.375000","703.250000",,,,,"0.000000","0.000000",,,"4779.125000","5535.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.322083",,"20.322083",,"20.322083",,,,,,,"4711.833333",,,,,"4065.416667",,"4.111111",,"346.800000",,,,"2537.142857","1.111111","0.288889","1.622222","33.177778","0.000000","346.592593","0.000000","12.555556","332.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","916.000000",,,,,"0.000000","0.000000",,,"5456.250000","6426.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.803750",,"21.803750",,"21.803750",,,,,,,"4158.708333",,,,,"4361.416667",,"2.066667",,"594.377778",,,,"2051.657143","0.688889","0.155556","1.977778","49.333333","0.000000","502.629630","0.000000","6.888889","494.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.500000","1367.375000",,,,,"0.000000","0.000000",,,"7055.500000","7801.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.318333",,"20.318333",,"20.318333",,,,,,,"4452.500000",,,,,"4064.500000",,"2.800000",,"374.711111",,,,"1718.685714","0.933333","0.088889","0.600000","36.888889","0.000000","377.111111","0.000000","9.037037","366.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.625000","891.375000",,,,,"0.000000","0.000000",,,"5062.125000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.300417",,"16.300417",,"16.300417",,,,,,,"4973.041667",,,,,"3261.083333",,"789.822222",,"1180.177778",,,,"628.085714","23.911111","0.244444","2.933333","43.177778","0.000000","684.629630","0.000000","259.666667","419.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1504.375000","2226.750000",,,,,"0.000000","0.000000",,,"8786.500000","8950.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.422917",,"17.422917",,"17.422917",,,,,,,"4840.875000",,,,,"3485.458333",,"24.644444",,"1105.666667",,,,"47.714286","5.800000","0.333333","7.177778","46.444444","0.000000","516.000000","0.000000","63.555556","451.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1675.000000","2195.250000",,,,,"0.000000","0.000000",,,"27946.625000","10134.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.345417",,"16.345417",,"16.345417",,,,,,,"5041.166667",,,,,"3270.125000",,"2.733333",,"1768.200000",,,,"40.771429","0.933333","0.511111","3.888889","43.022222","0.000000","420.666667","0.000000","9.037037","410.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.000000","238.000000",,,,,"0.000000","0.000000",,,"43937.375000","15437.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.193750",,"17.193750",,"17.193750",,,,,,,"4734.041667",,,,,"3439.500000",,"2.866667",,"2564.222222",,,,"46.057143","1.022222","0.888889","5.466667","48.533333","0.000000","467.814815","0.000000","9.555556","456.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1156.500000","4823.000000",,,,,"0.000000","0.000000",,,"24010.750000","13897.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.897500",,"14.897500",,"14.897500",,,,,,,"5484.708333",,,,,"2980.375000",,"4.222222",,"2010.866667",,,,"50.114286","1.200000","0.466667","2.555556","53.955556","0.000000","549.000000","0.000000","11.481481","536.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1846.000000","3610.375000",,,,,"0.000000","0.000000",,,"31614.125000","12006.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.507500",,"17.507500",,"17.507500",,,,,,,"4920.958333",,,,,"3502.416667",,"100.888889",,"678.422222",,,,"56.114286","13.711111","0.622222","2.577778","48.511111","0.000000","632.111111","0.000000","151.074074","479.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"208.750000","1475.625000",,,,,"0.000000","0.000000",,,"4179.000000","5150.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.901250",,"16.901250",,"16.901250",,,,,,,"5194.208333",,,,,"3381.208333",,"59.000000",,"402.600000",,,,"30.514286","2.244444","0.200000","1.155556","31.466667","0.000000","342.296296","0.000000","23.888889","317.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"120.875000","765.125000",,,,,"0.000000","0.000000",,,"2402.875000","2836.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.112083",,"20.112083",,"20.112083",,,,,,,"4601.166667",,,,,"4023.583333",,"12.600000",,"510.444444",,,,"45.685714","2.111111","0.155556","0.844444","48.155556","0.000000","501.925926","0.000000","22.296296","478.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","948.125000",,,,,"0.000000","0.000000",,,"2719.875000","3382.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.409583",,"19.409583",,"19.409583",,,,,,,"5240.000000",,,,,"3882.875000",,"40.488889",,"442.333333",,,,"36.428571","2.933333","0.422222","1.111111","36.511111","0.000000","400.666667","0.000000","30.740741","364.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.000000","792.250000",,,,,"0.000000","0.000000",,,"2400.125000","3078.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.445833",,"22.445833",,"22.445833",,,,,,,"4604.875000",,,,,"4490.166667",,"3.688889",,"394.222222",,,,"34.057143","0.977778","0.266667","1.511111","36.311111","0.000000","371.444444","0.000000","9.333333","360.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","742.375000",,,,,"0.000000","0.000000",,,"2211.625000","2644.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.001667",,"28.001667",,"28.001667",,,,,,,"2361.875000",,,,,"5601.291667",,"14.488889",,"1090.866667",,,,"42.771429","1.111111","0.533333","2.577778","46.000000","0.000000","470.555556","0.000000","10.703704","458.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.250000","2029.500000",,,,,"0.000000","0.000000",,,"4422.875000","5966.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.278750",,"25.278750",,"25.278750",,,,,,,"2888.458333",,,,,"5056.958333",,"2.422222",,"237.044444",,,,"2097.857143","0.888889","0.088889","1.377778","15.511111","0.000000","170.740741","0.000000","8.777778","160.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.875000","493.625000",,,,,"0.000000","0.000000",,,"1526.250000","1966.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.602083",,"26.602083",,"26.602083",,,,,,,"3488.958333",,,,,"5321.250000",,"17.377778",,"194.244444",,,,"2865.685714","2.088889","0.511111","1.733333","12.222222","0.000000","149.888889","0.000000","21.740741","126.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.000000","364.375000",,,,,"0.000000","0.000000",,,"1261.875000","1533.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.015833",,"24.015833",,"24.015833",,,,,,,"3501.000000",,,,,"4804.041667",,"74.111111",,"1094.555556",,,,"1873.057143","1.888889","0.488889","3.000000","34.088889","0.000000","365.518519","0.000000","19.592593","344.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"217.750000","2257.875000",,,,,"0.000000","0.000000",,,"8083.750000","9344.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.054583",,"24.054583",,"24.054583",,,,,,,"3640.375000",,,,,"4812.250000",,"21.222222",,"419.911111",,,,"1652.714286","1.600000","0.822222","1.755556","29.200000","0.000000","311.851852","0.000000","16.259259","294.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1034.000000",,,,,"0.000000","0.000000",,,"6098.750000","6925.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.857083",,"23.857083",,"23.857083",,,,,,,"3570.666667",,,,,"4772.291667",,"2.644444",,"507.066667",,,,"628.314286","0.844444","0.133333","2.266667","44.622222","0.000000","455.037037","0.000000","8.148148","445.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.625000","1141.625000",,,,,"0.000000","0.000000",,,"6010.625000","6730.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.429583",,"21.429583",,"21.429583",,,,,,,"4309.666667",,,,,"4286.666667",,"4.288889",,"482.644444",,,,"35.771429","1.333333","0.177778","2.311111","37.800000","0.000000","389.518519","0.000000","13.148148","374.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","898.000000",,,,,"0.000000","0.000000",,,"2436.375000","3083.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.282500",,"21.282500",,"21.282500",,,,,,,"4127.250000",,,,,"4257.583333",,"8.222222",,"492.355556",,,,"34.000000","1.466667","0.266667","1.644444","35.555556","0.000000","370.259259","0.000000","13.814815","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","883.625000",,,,,"0.000000","0.000000",,,"2379.875000","3081.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.342500",,"20.342500",,"20.342500",,,,,,,"4774.916667",,,,,"4069.458333",,"2.666667",,"347.800000",,,,"28.257143","0.844444","0.133333","1.533333","30.177778","0.000000","311.148148","0.000000","8.000000","301.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","649.750000",,,,,"0.000000","0.000000",,,"1917.875000","2325.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.695833",,"22.695833",,"22.695833",,,,,,,"4217.333333",,,,,"4540.250000",,"2.622222",,"512.644444",,,,"31.657143","0.933333","0.133333","2.377778","33.666667","0.000000","343.851852","0.000000","9.037037","333.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","970.375000",,,,,"0.000000","0.000000",,,"2499.625000","3209.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.001667",,"20.001667",,"20.001667",,,,,,,"4967.208333",,,,,"4001.250000",,"2.622222",,"291.577778",,,,"22.457143","0.844444","0.177778","1.111111","23.955556","0.000000","252.703704","0.000000","8.259259","243.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","557.500000",,,,,"0.000000","0.000000",,,"1609.500000","1970.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.548750",,"21.548750",,"21.548750",,,,,,,"4231.958333",,,,,"4310.625000",,"15.666667",,"1081.222222",,,,"39.485714","1.066667","0.333333","2.733333","42.244444","0.000000","432.222222","0.000000","10.370370","420.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.625000","2040.625000",,,,,"0.000000","0.000000",,,"4484.625000","5878.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.865833",,"19.865833",,"19.865833",,,,,,,"4847.375000",,,,,"3974.041667",,"2.600000",,"219.888889",,,,"18.800000","0.844444","0.133333","2.977778","19.822222","0.000000","209.370370","0.000000","8.222222","199.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.625000","420.000000",,,,,"0.000000","0.000000",,,"1358.250000","1717.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.002917",,"21.002917",,"21.002917",,,,,,,"4095.375000",,,,,"4201.458333",,"25.488889",,"446.800000",,,,"39.600000","2.355556","0.133333","1.222222","41.000000","0.000000","439.629630","0.000000","25.888889","409.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.125000","13.000000",,,,,"0.000000","0.000000",,,"2438.375000","2934.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.914167",,"24.914167",,"24.914167",,,,,,,"3470.000000",,,,,"4984.000000",,"5.311111",,"523.800000",,,,"46.371429","1.044444","7.488889","1.755556","49.800000","0.000000","505.962963","0.000000","10.518519","494.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.000000","972.500000",,,,,"0.000000","0.000000",,,"2792.375000","3615.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.814583",,"26.814583",,"26.814583",,,,,,,"2215.000000",,,,,"5363.791667",,"4.644444",,"510.155556",,,,"36.114286","1.222222","1.955556","1.311111","38.822222","0.000000","406.555556","0.000000","11.555556","393.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1117.500000",,,,,"0.000000","0.000000",,,"5327.125000","6162.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.013333",,"23.013333",,"23.013333",,,,,,,"3520.833333",,,,,"4603.916667",,"47.044444",,"723.644444",,,,"2166.971429","2.044444","0.400000","2.355556","35.311111","0.000000","375.925926","0.000000","19.814815","353.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"99.375000","1392.125000",,,,,"0.000000","0.000000",,,"5113.125000","6090.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.370833",,"25.370833",,"25.370833",,,,,,,"3870.541667",,,,,"5075.208333",,"3.777778",,"443.511111",,,,"2219.714286","0.955556","0.200000","2.666667","20.288889","0.000000","215.666667","0.000000","9.518519","204.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","884.125000",,,,,"0.000000","0.000000",,,"2080.625000","2711.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.520000",,"24.520000",,"24.520000",,,,,,,"2946.083333",,,,,"4905.083333",,"4.288889",,"559.688889",,,,"1835.571429","1.133333","0.244444","2.355556","48.377778","0.000000","499.740741","0.000000","12.925926","485.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.125000","1045.125000",,,,,"0.000000","0.000000",,,"3576.625000","3894.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.810417",,"23.810417",,"23.810417",,,,,,,"3926.291667",,,,,"4762.875000",,"51.200000",,"794.244444",,,,"1706.714286","3.311111","0.222222","2.777778","46.044444","0.000000","496.222222","0.000000","35.740741","459.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"112.500000","1479.875000",,,,,"0.000000","0.000000",,,"3789.125000","4876.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.562083",,"24.562083",,"24.562083",,,,,,,"3507.500000",,,,,"4913.416667",,"24.577778",,"722.066667",,,,"1244.571429","1.533333","0.533333","1.622222","45.444444","0.000000","480.148148","0.000000","16.185185","462.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.625000","1334.375000",,,,,"0.000000","0.000000",,,"3403.125000","4346.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.928333",,"17.928333",,"17.928333",,,,,,,"5468.125000",,,,,"3586.458333",,"21.555556",,"511.911111",,,,"28.342857","1.244444","0.466667","1.777778","30.000000","0.000000","320.629630","0.000000","13.000000","306.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1036.750000",,,,,"0.000000","0.000000",,,"2689.625000","3525.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.181667",,"20.181667",,"20.181667",,,,,,,"4778.958333",,,,,"4037.125000",,"14.888889",,"585.133333",,,,"40.800000","1.222222","0.377778","1.711111","43.822222","0.000000","451.666667","0.000000","11.444444","438.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"43.625000","1090.125000",,,,,"0.000000","0.000000",,,"2918.000000","3766.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.027083",,"20.027083",,"20.027083",,,,,,,"5287.833333",,,,,"4006.458333",,"3.044444",,"313.311111",,,,"28.714286","0.933333","0.133333","0.955556","30.422222","0.000000","314.740741","0.000000","9.185185","304.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","577.375000",,,,,"0.000000","0.000000",,,"1805.375000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.611250",,"18.611250",,"18.611250",,,,,,,"5161.208333",,,,,"3723.250000",,"26.977778",,"624.600000",,,,"37.171429","1.244444","0.311111","1.555556","39.844444","0.000000","415.370370","0.000000","12.925926","401.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","1185.875000",,,,,"0.000000","0.000000",,,"3044.875000","3880.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.683750",,"19.683750",,"19.683750",,,,,,,"4790.583333",,,,,"3937.666667",,"10.044444",,"470.111111",,,,"38.485714","1.488889","0.200000","1.977778","40.711111","0.000000","425.333333","0.000000","13.888889","408.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","839.625000",,,,,"0.000000","0.000000",,,"2389.000000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.312917",,"20.312917",,"20.312917",,,,,,,"4590.666667",,,,,"4063.416667",,"35.800000",,"556.355556",,,,"39.685714","1.577778","0.444444","1.533333","42.200000","0.000000","440.888889","0.000000","16.814815","422.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"91.625000","1161.250000",,,,,"0.000000","0.000000",,,"5508.625000","6181.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.327083",,"17.327083",,"17.327083",,,,,,,"5647.041667",,,,,"3466.250000",,"5.533333",,"307.466667",,,,"20.600000","1.177778","0.422222","1.600000","21.422222","0.000000","230.222222","0.000000","11.518519","217.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","679.125000",,,,,"0.000000","0.000000",,,"3901.500000","4401.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.451667",,"19.451667",,"19.451667",,,,,,,"4898.166667",,,,,"3891.333333",,"39.933333",,"499.666667",,,,"42.200000","2.244444","0.222222","1.577778","43.933333","0.000000","468.851852","0.000000","25.407407","439.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"90.000000","988.875000",,,,,"0.000000","0.000000",,,"2928.125000","3617.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.379583",,"23.379583",,"23.379583",,,,,,,"3589.416667",,,,,"4676.833333",,"5.266667",,"504.844444",,,,"38.685714","0.933333","0.311111","1.288889","41.822222","0.000000","431.111111","0.000000","9.296296","420.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.875000","896.125000",,,,,"0.000000","0.000000",,,"2474.750000","3144.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.403750",,"23.403750",,"23.403750",,,,,,,"3931.666667",,,,,"4681.666667",,"44.177778",,"575.222222",,,,"26.628571","1.688889","0.355556","2.555556","27.755556","0.000000","301.888889","0.000000","17.481481","282.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"98.875000","1121.750000",,,,,"0.000000","0.000000",,,"2903.625000","3741.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.928750",,"22.928750",,"22.928750",,,,,,,"3864.666667",,,,,"4586.750000",,"3.355556",,"496.977778",,,,"1953.200000","1.000000","0.222222","3.244444","45.600000","0.000000","464.666667","0.000000","9.592593","453.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","931.125000",,,,,"0.000000","0.000000",,,"2628.875000","3230.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.387917",,"23.387917",,"23.387917",,,,,,,"3819.583333",,,,,"4678.583333",,"3.200000",,"384.622222",,,,"2469.571429","0.933333","0.133333","1.888889","32.044444","0.000000","331.037037","0.000000","8.888889","320.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","690.375000",,,,,"0.000000","0.000000",,,"1968.250000","2558.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.147083",,"23.147083",,"23.147083",,,,,,,"4048.125000",,,,,"4630.333333",,"8.511111",,"486.000000",,,,"1986.257143","1.511111","0.133333","1.511111","33.222222","0.000000","349.111111","0.000000","14.481481","331.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.125000","912.750000",,,,,"0.000000","0.000000",,,"3127.125000","3271.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.745000",,"24.745000",,"24.745000",,,,,,,"3739.000000",,,,,"4949.916667",,"68.977778",,"513.822222",,,,"1688.514286","2.088889","0.422222","10.333333","48.333333","0.000000","499.777778","0.000000","21.074074","477.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"143.750000","944.500000",,,,,"0.000000","0.000000",,,"3030.125000","3541.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.308333",,"23.308333",,"23.308333",,,,,,,"4263.875000",,,,,"4662.708333",,"106.377778",,"426.022222",,,,"1081.914286","8.866667","0.333333","4.155556","37.088889","0.000000","466.888889","0.000000","97.074074","368.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"215.625000","787.000000",,,,,"0.000000","0.000000",,,"2832.875000","3240.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.671250",,"21.671250",,"21.671250",,,,,,,"5130.041667",,,,,"4335.333333",,"3.044444",,"426.688889",,,,"34.228571","0.933333","1.200000","4.666667","36.600000","0.000000","373.148148","0.000000","9.037037","362.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","797.375000",,,,,"0.000000","0.000000",,,"2765.000000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.496667",,"18.496667",,"18.496667",,,,,,,"5174.750000",,,,,"3700.500000",,"2.977778",,"338.577778",,,,"26.485714","0.755556","0.244444","2.622222","28.244444","0.000000","291.777778","0.000000","8.000000","282.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.500000","886.250000",,,,,"0.000000","0.000000",,,"5908.625000","6575.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.277083",,"20.277083",,"20.277083",,,,,,,"5021.291667",,,,,"4056.291667",,"2.933333",,"373.111111",,,,"33.942857","0.844444","0.288889","1.244444","36.288889","0.000000","369.296296","0.000000","8.444444","359.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","701.750000",,,,,"0.000000","0.000000",,,"2372.500000","2867.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.418750",,"20.418750",,"20.418750",,,,,,,"4930.708333",,,,,"4084.750000",,"3.311111",,"442.777778",,,,"39.057143","0.955556","0.377778","1.977778","41.844444","0.000000","423.555556","0.000000","9.111111","413.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","842.000000",,,,,"0.000000","0.000000",,,"2423.250000","3121.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.302917",,"19.302917",,"19.302917",,,,,,,"5050.833333",,,,,"3861.500000",,"10.622222",,"403.133333",,,,"32.914286","1.577778","0.266667","2.355556","34.088889","0.000000","352.370370","0.000000","14.333333","335.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","698.000000",,,,,"0.000000","0.000000",,,"1987.000000","2465.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.429583",,"18.429583",,"18.429583",,,,,,,"5284.041667",,,,,"3687.000000",,"3.111111",,"343.066667",,,,"27.657143","0.844444","0.177778","1.822222","29.422222","0.000000","299.037037","0.000000","7.888889","289.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.750000","634.250000",,,,,"0.000000","0.000000",,,"1873.375000","2320.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.332917",,"19.332917",,"19.332917",,,,,,,"5159.375000",,,,,"3867.416667",,"5.088889",,"403.977778",,,,"33.685714","0.977778","0.155556","1.355556","35.933333","0.000000","368.666667","0.000000","9.851852","357.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","16.571429",,,,,"0.000000","0.000000",,,"2105.500000","2652.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.611250",,"20.611250",,"20.611250",,,,,,,"4681.875000",,,,,"4123.458333",,"23.733333",,"1348.466667",,,,"47.028571","2.066667","0.355556","3.866667","49.111111","0.000000","506.925926","0.000000","23.037037","479.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.500000","2580.375000",,,,,"0.000000","0.000000",,,"5369.375000","7326.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.296667",,"22.296667",,"22.296667",,,,,,,"4524.791667",,,,,"4460.291667",,"51.088889",,"1164.355556",,,,"47.028571","3.600000","0.600000","2.111111","48.911111","0.000000","539.925926","0.000000","38.777778","499.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"117.875000","2159.625000",,,,,"0.000000","0.000000",,,"4862.250000","6444.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.955000",,"21.955000",,"21.955000",,,,,,,"4732.000000",,,,,"4391.916667",,"11.955556",,"491.666667",,,,"37.257143","1.200000","0.333333","2.711111","40.222222","0.000000","427.037037","0.000000","11.777778","413.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.250000","935.625000",,,,,"0.000000","0.000000",,,"2645.500000","3403.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.781250",,"19.781250",,"19.781250",,,,,,,"4926.541667",,,,,"3957.250000",,"65.400000",,"155.577778",,,,"2099.600000","3.866667","0.333333","1.533333","10.355556","0.000000","150.925926","0.000000","41.555556","108.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"128.625000","338.250000",,,,,"0.000000","0.000000",,,"1353.375000","1542.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.461250",,"20.461250",,"20.461250",,,,,,,"4190.166667",,,,,"4093.083333",,"108.755556",,"237.866667",,,,"2259.885714","4.933333","1.111111","1.311111","16.088889","0.000000","223.444444","0.000000","53.888889","168.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"230.625000","609.125000",,,,,"0.000000","0.000000",,,"5263.875000","5494.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.978750",,"21.978750",,"21.978750",,,,,,,"3665.166667",,,,,"4396.541667",,"110.444444",,"582.111111",,,,"1797.857143","2.111111","0.266667","2.288889","38.155556","0.000000","418.333333","0.000000","21.666667","395.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"229.250000","1152.625000",,,,,"0.000000","0.000000",,,"4748.625000","5321.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.058333",,"23.058333",,"23.058333",,,,,,,"3673.916667",,,,,"4612.583333",,"115.222222",,"529.311111",,,,"1644.285714","2.644444","0.377778","1.688889","36.955556","0.000000","408.074074","0.000000","25.666667","379.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"256.125000","995.750000",,,,,"0.000000","0.000000",,,"3815.625000","3853.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.770000",,"22.770000",,"22.770000",,,,,,,"4052.916667",,,,,"4554.750000",,"199.977778",,"475.488889",,,,"1337.200000","9.244444","0.288889","1.600000","44.111111","0.000000","554.851852","0.000000","102.148148","451.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"394.250000","897.375000",,,,,"0.000000","0.000000",,,"3574.125000","3955.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.617500",,"19.617500",,"19.617500",,,,,,,"5295.583333",,,,,"3924.750000",,"124.866667",,"341.777778",,,,"32.371429","3.800000","0.222222","3.177778","32.333333","0.000000","374.296296","0.000000","41.074074","332.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"243.625000","634.625000",,,,,"0.000000","0.000000",,,"2470.375000","2752.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.918750",,"18.918750",,"18.918750",,,,,,,"5183.291667",,,,,"3784.458333",,"122.177778",,"313.577778",,,,"29.971429","3.977778","0.177778","2.222222","29.466667","0.000000","347.592593","0.000000","43.000000","303.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"245.500000","595.250000",,,,,"0.000000","0.000000",,,"2370.750000","2631.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.155417",,"18.155417",,"18.155417",,,,,,,"5161.291667",,,,,"3631.958333",,"42.066667",,"321.600000",,,,"33.314286","4.133333","0.155556","1.177778","32.844444","0.000000","382.259259","0.000000","45.037037","335.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"97.250000","613.125000",,,,,"0.000000","0.000000",,,"2246.625000","2691.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.621667",,"20.621667",,"20.621667",,,,,,,"4642.333333",,,,,"4125.375000",,"20.844444",,"396.044444",,,,"41.742857","5.666667","0.666667","1.022222","40.844444","0.000000","482.962963","0.000000","60.555556","420.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"50.250000","745.500000",,,,,"0.000000","0.000000",,,"2427.375000","2949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.285000",,"19.285000",,"19.285000",,,,,,,"5316.500000",,,,,"3858.083333",,"34.133333",,"341.177778",,,,"35.028571","7.755556","0.155556","1.111111","31.288889","0.000000","409.185185","0.000000","83.222222","323.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.500000","672.375000",,,,,"0.000000","0.000000",,,"2312.125000","2894.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.031667",,"21.031667",,"21.031667",,,,,,,"4721.416667",,,,,"4207.083333",,"12.177778",,"419.200000",,,,"36.314286","1.666667","0.200000","0.800000","38.933333","0.000000","422.074074","0.000000","17.111111","403.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","746.250000",,,,,"0.000000","0.000000",,,"2353.875000","2799.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.256250",,"22.256250",,"22.256250",,,,,,,"4469.041667",,,,,"4452.208333",,"19.933333",,"401.955556",,,,"33.971429","2.511111","0.200000","0.933333","35.222222","0.000000","391.259259","0.000000","27.000000","362.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"49.625000","797.000000",,,,,"0.000000","0.000000",,,"2391.125000","3007.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.030000",,"22.030000",,"22.030000",,,,,,,"4128.125000",,,,,"4407.000000",,"21.711111",,"445.400000",,,,"37.228571","2.000000","0.266667","1.133333","39.000000","0.000000","426.333333","0.000000","22.333333","399.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.750000","967.375000",,,,,"0.000000","0.000000",,,"5382.875000","5977.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.772083",,"26.772083",,"26.772083",,,,,,,"3155.500000",,,,,"5355.333333",,"16.333333",,"355.155556",,,,"25.342857","1.666667","0.933333","1.666667","26.466667","0.000000","292.333333","0.000000","17.666667","273.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"48.375000","772.625000",,,,,"0.000000","0.000000",,,"3880.625000","4363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.993750",,"30.993750",,"30.993750",,,,,,,"2489.625000",,,,,"6199.458333",,"3.600000",,"853.111111",,,,"32.457143","0.977778","0.266667","9.711111","34.955556","0.000000","367.740741","0.000000","9.555556","356.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1611.000000",,,,,"0.000000","0.000000",,,"3485.875000","4789.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.934167",,"28.934167",,"28.934167",,,,,,,"2990.500000",,,,,"5787.833333",,"19.288889",,"635.600000",,,,"1886.085714","2.555556","0.466667","3.222222","23.000000","0.000000","262.629630","0.000000","27.370370","233.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"47.375000","1233.250000",,,,,"0.000000","0.000000",,,"2735.000000","3695.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.990417",,"26.990417",,"26.990417",,,,,,,"2782.541667",,,,,"5398.750000",,"9.200000",,"400.511111",,,,"2459.628571","1.444444","0.422222","4.533333","15.088889","0.000000","175.444444","0.000000","18.703704","155.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","746.375000",,,,,"0.000000","0.000000",,,"1820.250000","2331.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.690000",,"27.690000",,"27.690000",,,,,,,"2734.083333",,,,,"5539.041667",,"19.111111",,"519.577778",,,,"1731.657143","2.444444","0.311111","2.711111","30.400000","0.000000","338.777778","0.000000","25.111111","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.375000","988.375000",,,,,"0.000000","0.000000",,,"3288.625000","3676.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.105833",,"32.105833",,"32.105833",,,,,,,"2585.583333",,,,,"6422.250000",,"3.866667",,"516.022222",,,,"1737.000000","0.866667","0.044444","1.955556","39.266667","0.000000","411.703704","0.000000","8.666667","401.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.375000","952.500000",,,,,"0.000000","0.000000",,,"2538.250000","3243.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.821667",,"28.821667",,"28.821667",,,,,,,"2430.958333",,,,,"5765.458333",,"319.444444",,"489.933333",,,,"1317.257143","7.844444","2.088889","2.866667","35.977778","0.000000","449.259259","0.000000","81.814815","365.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"621.125000","914.625000",,,,,"0.000000","0.000000",,,"4071.000000","4154.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.548333",,"25.548333",,"25.548333",,,,,,,"3626.416667",,,,,"5110.625000",,"6.400000",,"440.111111",,,,"30.857143","1.044444","1.244444","1.777778","33.177778","0.000000","348.666667","0.000000","10.333333","337.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","920.125000",,,,,"0.000000","0.000000",,,"3585.375000","4280.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.844583",,"23.844583",,"23.844583",,,,,,,"3946.166667",,,,,"4769.958333",,"3.111111",,"355.755556",,,,"25.000000","0.933333","0.866667","2.511111","26.666667","0.000000","283.592593","0.000000","9.333333","272.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","914.750000",,,,,"0.000000","0.000000",,,"5480.500000","6309.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.641667",,"25.641667",,"25.641667",,,,,,,"3980.291667",,,,,"5129.416667",,"3.133333",,"345.644444",,,,"25.742857","1.022222","0.444444","1.800000","27.555556","0.000000","296.148148","0.000000","9.851852","284.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.375000","694.875000",,,,,"0.000000","0.000000",,,"2156.000000","2752.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.242500",,"27.242500",,"27.242500",,,,,,,"3602.958333",,,,,"5449.250000",,"3.600000",,"426.177778",,,,"31.685714","0.955556","0.288889","1.577778","34.355556","0.000000","365.296296","0.000000","9.629630","354.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","856.625000",,,,,"0.000000","0.000000",,,"3376.125000","4004.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.987917",,"24.987917",,"24.987917",,,,,,,"3892.250000",,,,,"4998.375000",,"3.266667",,"384.622222",,,,"28.800000","0.688889","0.977778","1.777778","31.155556","0.000000","327.333333","0.000000","7.407407","318.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","918.625000",,,,,"0.000000","0.000000",,,"5638.625000","6171.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.180833",,"26.180833",,"26.180833",,,,,,,"3954.333333",,,,,"5237.250000",,"3.666667",,"336.822222",,,,"26.628571","0.933333","0.355556","1.755556","28.400000","0.000000","299.518519","0.000000","9.407407","288.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","17.571429",,,,,"0.000000","0.000000",,,"1933.875000","2362.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.375417",,"24.375417",,"24.375417",,,,,,,"3811.041667",,,,,"4875.875000",,"9.488889",,"384.800000",,,,"27.657143","1.600000","0.222222","4.333333","28.488889","0.000000","303.888889","0.000000","14.925926","286.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","688.125000",,,,,"0.000000","0.000000",,,"1897.375000","2363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.558333",,"25.558333",,"25.558333",,,,,,,"4546.125000",,,,,"5112.875000",,"22.066667",,"290.377778",,,,"19.800000","1.911111","0.644444","3.000000","19.400000","0.000000","221.777778","0.000000","21.740741","196.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"51.125000","564.125000",,,,,"0.000000","0.000000",,,"1678.125000","2137.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.363333",,"20.363333",,"20.363333",,,,,,,"5021.291667",,,,,"4073.833333",,"3.266667",,"544.933333",,,,"17.828571","0.777778","0.488889","4.511111","18.577778","0.000000","195.962963","0.000000","8.037037","186.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.750000","1023.625000",,,,,"0.000000","0.000000",,,"2298.125000","3142.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.050417",,"29.050417",,"29.050417",,,,,,,"2981.791667",,,,,"5810.958333",,"5.600000",,"471.577778",,,,"31.600000","1.022222","0.422222","2.488889","34.177778","0.000000","362.259259","0.000000","9.814815","351.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","876.875000",,,,,"0.000000","0.000000",,,"2333.750000","3005.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.135833",,"24.135833",,"24.135833",,,,,,,"4103.583333",,,,,"4827.875000",,"4.800000",,"427.222222",,,,"1936.885714","0.955556","0.444444","5.266667","31.044444","0.000000","330.555556","0.000000","9.629630","319.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","819.500000",,,,,"0.000000","0.000000",,,"2187.250000","2764.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.093333",,"23.093333",,"23.093333",,,,,,,"4516.666667",,,,,"4619.666667",,"3.733333",,"131.222222",,,,"2343.942857","0.800000","0.755556","4.933333","6.511111","0.000000","77.370370","0.000000","8.370370","67.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"12.125000","259.125000",,,,,"0.000000","0.000000",,,"854.625000","1107.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.731667",,"24.731667",,"24.731667",,,,,,,"3873.416667",,,,,"4947.375000",,"4.311111",,"345.377778",,,,"1820.628571","0.977778","0.311111","2.266667","17.577778","0.000000","194.111111","0.000000","10.148148","181.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"61.250000","656.500000",,,,,"0.000000","0.000000",,,"2409.625000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.020000",,"26.020000",,"26.020000",,,,,,,"3419.833333",,,,,"5204.916667",,"3.511111",,"409.622222",,,,"1622.628571","0.777778","0.155556","2.022222","31.466667","0.000000","339.296296","0.000000","8.148148","329.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.000000","754.000000",,,,,"0.000000","0.000000",,,"2048.375000","2616.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.212083",,"23.212083",,"23.212083",,,,,,,"3907.083333",,,,,"4643.416667",,"3.577778",,"316.200000",,,,"1369.000000","0.866667","0.555556","1.733333","25.355556","0.000000","271.481481","0.000000","8.481481","261.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","807.000000",,,,,"0.000000","0.000000",,,"5782.500000","6142.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.110417",,"23.110417",,"23.110417",,,,,,,"4242.791667",,,,,"4623.250000",,"3.577778",,"409.088889",,,,"29.571429","0.866667","0.266667","1.933333","32.111111","0.000000","342.148148","0.000000","8.444444","332.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","820.500000",,,,,"0.000000","0.000000",,,"2967.375000","3440.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.886667",,"22.886667",,"22.886667",,,,,,,"4692.750000",,,,,"4578.291667",,"4.422222",,"338.311111",,,,"24.485714","0.977778","0.444444","1.377778","26.000000","0.000000","276.222222","0.000000","10.074074","264.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","613.750000",,,,,"0.000000","0.000000",,,"1764.500000","2258.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.199167",,"25.199167",,"25.199167",,,,,,,"4138.750000",,,,,"5040.583333",,"12.288889",,"486.866667",,,,"41.514286","3.266667","0.711111","1.733333","41.977778","0.000000","465.148148","0.000000","29.185185","428.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.750000","927.375000",,,,,"0.000000","0.000000",,,"2607.250000","3191.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.387917",,"23.387917",,"23.387917",,,,,,,"4200.000000",,,,,"4678.791667",,"4.355556",,"459.266667",,,,"35.485714","1.133333","0.200000","1.488889","38.200000","0.000000","400.925926","0.000000","10.629630","388.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.125000","820.375000",,,,,"0.000000","0.000000",,,"2342.250000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.585000",,"23.585000",,"23.585000",,,,,,,"4408.333333",,,,,"4717.833333",,"2.844444",,"427.600000",,,,"33.800000","0.977778","0.333333","2.377778","36.688889","0.000000","386.814815","0.000000","9.037037","376.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.750000","817.500000",,,,,"0.000000","0.000000",,,"2398.875000","2851.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.860833",,"22.860833",,"22.860833",,,,,,,"4273.875000",,,,,"4573.208333",,"5.000000",,"617.400000",,,,"32.800000","0.977778","0.755556","2.800000","35.311111","0.000000","369.111111","0.000000","9.814815","358.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.125000","1178.375000",,,,,"0.000000","0.000000",,,"2931.375000","3814.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.021250",,"22.021250",,"22.021250",,,,,,,"4434.583333",,,,,"4405.208333",,"5.355556",,"931.066667",,,,"34.314286","1.066667","0.311111","4.022222","37.000000","0.000000","390.333333","0.000000","10.962963","377.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1743.125000",,,,,"0.000000","0.000000",,,"3817.250000","5044.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.584583",,"23.584583",,"23.584583",,,,,,,"4611.833333",,,,,"4717.833333",,"25.622222",,"365.155556",,,,"29.542857","2.311111","0.711111","1.888889","30.177778","0.000000","340.407407","0.000000","25.555556","310.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.500000","662.125000",,,,,"0.000000","0.000000",,,"2009.875000","2430.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.106250",,"21.106250",,"21.106250",,,,,,,"4887.875000",,,,,"4222.250000",,"103.400000",,"408.311111",,,,"27.400000","2.977778","0.422222","3.000000","27.511111","0.000000","319.222222","0.000000","32.370370","285.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"84.250000","804.625000",,,,,"0.000000","0.000000",,,"2537.375000","2837.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.006667",,"29.006667",,"29.006667",,,,,,,"2160.541667",,,,,"5802.166667",,"182.555556",,"2337.155556",,,,"50.028571","3.911111","0.422222","3.888889","51.355556","0.000000","553.962963","0.000000","41.444444","511.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"508.750000","4417.375000",,,,,"0.000000","0.000000",,,"10063.375000","12718.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.353333",,"29.353333",,"29.353333",,,,,,,"2219.166667",,,,,"5871.708333",,"4.311111",,"367.688889",,,,"1833.342857","1.088889","0.266667","1.777778","24.555556","0.000000","264.111111","0.000000","10.111111","252.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.000000","928.500000",,,,,"0.000000","0.000000",,,"5671.625000","6342.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.422083",,"34.422083",,"34.422083",,,,,,,"1030.708333",,,,,"6885.250000",,"3.488889",,"189.155556",,,,"2206.657143","0.844444","0.266667","1.288889","12.288889","0.000000","135.740741","0.000000","8.481481","126.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","389.125000",,,,,"0.000000","0.000000",,,"1684.000000","1917.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.240833",,"33.240833",,"33.240833",,,,,,,"1358.458333",,,,,"6649.250000",,"4.177778",,"470.688889",,,,"1726.771429","0.955556","0.222222","1.888889","38.022222","0.000000","404.814815","0.000000","9.296296","394.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","887.875000",,,,,"0.000000","0.000000",,,"3387.125000","3392.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.927500",,"30.927500",,"30.927500",,,,,,,"2188.666667",,,,,"6186.416667",,"3.777778",,"477.244444",,,,"1989.428571","0.911111","0.111111","1.622222","34.533333","0.000000","368.148148","0.000000","9.000000","357.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","894.875000",,,,,"0.000000","0.000000",,,"2517.500000","2988.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.624583",,"27.624583",,"27.624583",,,,,,,"3653.875000",,,,,"5525.583333",,"9.755556",,"369.333333",,,,"1366.742857","1.777778","0.222222","1.511111","34.488889","0.000000","370.000000","0.000000","16.777778","349.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","673.750000",,,,,"0.000000","0.000000",,,"2012.500000","2480.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.403750",,"21.403750",,"21.403750",,,,,,,"4175.625000",,,,,"4281.791667",,"39.111111",,"447.355556",,,,"38.914286","1.200000","2.577778","1.844444","41.933333","0.000000","442.592593","0.000000","11.481481","429.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"83.625000","822.000000",,,,,"0.000000","0.000000",,,"2578.375000","3057.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.831250",,"20.831250",,"20.831250",,,,,,,"4506.458333",,,,,"4167.416667",,"4.177778",,"332.466667",,,,"24.942857","0.888889","0.266667","1.466667","26.666667","0.000000","283.703704","0.000000","9.074074","273.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","601.625000",,,,,"0.000000","0.000000",,,"1725.000000","2297.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.585833",,"21.585833",,"21.585833",,,,,,,"4385.916667",,,,,"4317.916667",,"64.755556",,"690.622222",,,,"40.771429","1.955556","0.688889","2.977778","43.200000","0.000000","460.111111","0.000000","20.518519","438.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"141.875000","1303.500000",,,,,"0.000000","0.000000",,,"3527.625000","4381.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.914583",,"19.914583",,"19.914583",,,,,,,"4630.958333",,,,,"3984.125000",,"7.133333",,"279.466667",,,,"22.000000","1.333333","0.244444","1.088889","22.844444","0.000000","249.851852","0.000000","13.740741","234.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","563.625000",,,,,"0.000000","0.000000",,,"1700.250000","2185.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.425417",,"20.425417",,"20.425417",,,,,,,"4162.375000",,,,,"4085.833333",,"3.777778",,"408.511111",,,,"34.771429","0.977778","0.222222","1.422222","37.466667","0.000000","391.740741","0.000000","9.592593","380.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","216.714286",,,,,"0.000000","0.000000",,,"4464.375000","5315.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.187917",,"20.187917",,"20.187917",,,,,,,"4513.583333",,,,,"4038.583333",,"3.888889",,"325.111111",,,,"28.485714","0.800000","0.244444","1.022222","30.755556","0.000000","324.074074","0.000000","8.333333","314.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.500000","878.000000",,,,,"0.000000","0.000000",,,"5278.500000","6432.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.915833",,"23.915833",,"23.915833",,,,,,,"4044.875000",,,,,"4784.166667",,"4.511111",,"484.955556",,,,"38.000000","0.977778","0.400000","2.200000","41.288889","0.000000","434.481481","0.000000","9.666667","423.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1196.875000",,,,,"0.000000","0.000000",,,"5820.000000","7306.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.827917",,"22.827917",,"22.827917",,,,,,,"4715.666667",,,,,"4566.708333",,"24.000000",,"452.733333",,,,"30.628571","2.244444","0.222222","2.577778","31.377778","0.000000","347.259259","0.000000","24.592593","318.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"66.625000","1128.500000",,,,,"0.000000","0.000000",,,"5632.000000","7114.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.049583",,"25.049583",,"25.049583",,,,,,,"3711.625000",,,,,"5010.541667",,"3.844444",,"411.133333",,,,"31.314286","0.688889","0.155556","1.555556","33.933333","0.000000","351.481481","0.000000","7.333333","343.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1039.375000",,,,,"0.000000","0.000000",,,"5402.000000","6802.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.970000",,"26.970000",,"26.970000",,,,,,,"3415.541667",,,,,"5394.833333",,"3.488889",,"627.511111",,,,"46.371429","1.022222","0.288889","1.600000","50.333333","0.000000","522.222222","0.000000","10.185185","510.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.750000","1465.125000",,,,,"0.000000","0.000000",,,"6322.000000","7983.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.988333",,"22.988333",,"22.988333",,,,,,,"4584.083333",,,,,"4598.666667",,"404.111111",,"262.288889",,,,"1861.200000","10.800000","0.377778","2.600000","9.666667","0.000000","218.888889","0.000000","118.518519","98.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"725.375000","785.250000",,,,,"0.000000","0.000000",,,"6485.750000","7040.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.033333",,"26.033333",,"26.033333",,,,,,,"3534.041667",,,,,"5207.458333",,"268.933333",,"734.266667",,,,"2347.085714","8.244444","0.555556","4.000000","43.244444","0.000000","523.185185","0.000000","86.111111","432.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"484.250000","1650.875000",,,,,"0.000000","0.000000",,,"7747.875000","9121.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.753333",,"22.753333",,"22.753333",,,,,,,"4215.791667",,,,,"4551.625000",,"116.533333",,"686.733333",,,,"1781.085714","3.422222","0.533333","3.088889","14.111111","0.000000","175.666667","0.000000","36.518519","137.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"342.000000","1281.750000",,,,,"0.000000","0.000000",,,"6225.625000","7415.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.508750",,"25.508750",,"25.508750",,,,,,,"3113.041667",,,,,"5102.541667",,"295.533333",,"1229.333333",,,,"1659.000000","4.711111","0.622222","2.800000","45.266667","0.000000","504.481481","0.000000","50.518519","452.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"638.500000","2849.750000",,,,,"0.000000","0.000000",,,"10561.875000","12131.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.012917",,"24.012917",,"24.012917",,,,,,,"3588.500000",,,,,"4803.500000",,"46.933333",,"726.111111",,,,"1502.542857","2.200000","0.533333","2.088889","38.222222","0.000000","412.814815","0.000000","22.777778","388.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"115.375000","1656.625000",,,,,"0.000000","0.000000",,,"6671.875000","8329.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.888750",,"20.888750",,"20.888750",,,,,,,"4954.666667",,,,,"4178.583333",,"449.111111",,"1191.933333",,,,"36.714286","9.555556","0.577778","2.644444","31.200000","0.000000","416.518519","0.000000","104.777778","310.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"784.000000","2513.250000",,,,,"0.000000","0.000000",,,"9665.500000","11292.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.364583",,"20.364583",,"20.364583",,,,,,,"5137.708333",,,,,"4073.708333",,"854.622222",,"604.288889",,,,"47.000000","19.133333","0.355556","3.844444","33.533333","0.000000","549.444444","0.000000","210.296296","337.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1735.875000","1457.875000",,,,,"0.000000","0.000000",,,"10736.375000","10653.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.767917",,"20.767917",,"20.767917",,,,,,,"4757.625000",,,,,"4154.500000",,"860.577778",,"908.533333",,,,"53.685714","19.555556","0.622222","4.244444","40.577778","0.000000","623.925926","0.000000","215.370370","407.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1625.375000","2014.500000",,,,,"0.000000","0.000000",,,"11235.875000","11732.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.132500",,"21.132500",,"21.132500",,,,,,,"4617.833333",,,,,"4227.541667",,"736.066667",,"774.977778",,,,"45.657143","16.355556","0.377778","4.422222","34.755556","0.000000","529.518519","0.000000","178.814815","349.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.285714","1546.625000",,,,,"0.000000","0.000000",,,"10344.000000","9835.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.032500",,"22.032500",,"22.032500",,,,,,,"4439.125000",,,,,"4407.500000",,"6.955556",,"1212.955556",,,,"33.200000","1.444444","0.266667","2.533333","35.044444","0.000000","367.185185","0.000000","14.888889","350.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.625000","2496.750000",,,,,"0.000000","0.000000",,,"6941.375000","8642.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.887083",,"22.887083",,"22.887083",,,,,,,"4623.125000",,,,,"4578.166667",,"36.111111",,"639.933333",,,,"33.885714","4.066667","0.288889","2.244444","33.533333","0.000000","384.777778","0.000000","44.148148","339.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"100.875000","1476.375000",,,,,"0.000000","0.000000",,,"7324.875000","8542.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.245000",,"24.245000",,"24.245000",,,,,,,"4126.791667",,,,,"4850.000000",,"40.022222",,"1423.977778",,,,"53.914286","3.088889","0.511111","2.844444","56.822222","0.000000","613.888889","0.000000","33.629630","578.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"102.000000","2594.875000",,,,,"0.000000","0.000000",,,"5679.000000","7386.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.482917",,"23.482917",,"23.482917",,,,,,,"4209.791667",,,,,"4697.541667",,"59.688889",,"2362.977778",,,,"59.542857","3.977778","0.422222","2.933333","60.444444","0.000000","631.888889","0.000000","42.629630","584.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"137.250000","11.571429",,,,,"0.000000","0.000000",,,"8825.000000","11966.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.870833",,"22.870833",,"22.870833",,,,,,,"4536.250000",,,,,"4575.208333",,"140.377778",,"1395.600000",,,,"47.342857","5.200000","0.400000","4.711111","46.800000","0.000000","513.518519","0.000000","56.444444","455.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"292.250000","2293.625000",,,,,"0.000000","0.000000",,,"5536.625000","6930.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.235000",,"27.235000",,"27.235000",,,,,,,"3163.125000",,,,,"5447.750000",,"1359.911111",,"734.088889",,,,"55.457143","25.533333","1.000000","1.911111","36.444444","0.000000","641.185185","0.000000","280.333333","359.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2495.500000","1715.250000",,,,,"0.000000","0.000000",,,"10135.250000","8688.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.585417",,"27.585417",,"27.585417",,,,,,,"3161.750000",,,,,"5518.000000",,"722.422222",,"1016.733333",,,,"2006.200000","19.288889","0.422222","5.555556","35.800000","0.000000","560.555556","0.000000","211.629630","347.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1381.875000","1915.750000",,,,,"0.000000","0.000000",,,"7565.500000","7570.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.499167",,"31.499167",,"31.499167",,,,,,,"1918.166667",,,,,"6300.625000",,"679.711111",,"926.866667",,,,"2397.942857","15.866667","0.377778","2.800000","45.822222","0.000000","626.740741","0.000000","173.740741","451.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1407.875000","1750.500000",,,,,"0.000000","0.000000",,,"7460.375000","7272.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.340833",,"24.340833",,"24.340833",,,,,,,"3643.541667",,,,,"4869.291667",,"1056.933333",,"231.400000",,,,"2063.371429","19.688889","0.333333","1.488889","13.733333","0.000000","357.777778","0.000000","215.925926","140.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1918.250000","473.250000",,,,,"0.000000","0.000000",,,"6299.750000","4447.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.610417",,"27.610417",,"27.610417",,,,,,,"2806.791667",,,,,"5523.000000",,"1150.311111",,"584.244444",,,,"1536.857143","28.400000","0.311111","1.466667","43.444444","0.000000","745.814815","0.000000","312.185185","432.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2300.125000","1068.750000",,,,,"0.000000","0.000000",,,"9381.375000","7172.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.976667",,"27.976667",,"27.976667",,,,,,,"2958.166667",,,,,"5596.125000",,"1105.111111",,"1086.511111",,,,"1245.657143","21.488889","0.400000","4.555556","48.955556","0.000000","716.444444","0.000000","236.592593","478.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2038.250000","2052.750000",,,,,"0.000000","0.000000",,,"9701.125000","8926.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.550000",,"26.550000",,"26.550000",,,,,,,"3721.500000",,,,,"5310.958333",,"614.377778",,"868.866667",,,,"54.228571","13.822222","0.222222","2.333333","46.288889","0.000000","609.629630","0.000000","151.851852","456.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1289.500000","1618.125000",,,,,"0.000000","0.000000",,,"7066.375000","6734.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.659583",,"28.659583",,"28.659583",,,,,,,"3554.125000",,,,,"5733.166667",,"5.666667",,"418.644444",,,,"34.000000","1.066667","0.244444","1.800000","36.266667","0.000000","373.740741","0.000000","11.296296","361.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.125000","970.375000",,,,,"0.000000","0.000000",,,"5646.625000","6314.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.708333",,"26.708333",,"26.708333",,,,,,,"4164.916667",,,,,"5342.708333",,"51.022222",,"291.755556",,,,"24.428571","1.844444","1.800000","1.288889","24.955556","0.000000","269.703704","0.000000","19.333333","249.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"111.625000","605.125000",,,,,"0.000000","0.000000",,,"3260.125000","3502.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.214583",,"27.214583",,"27.214583",,,,,,,"3649.208333",,,,,"5443.875000",,"5.866667",,"431.933333",,,,"35.114286","1.066667","0.266667","0.955556","37.444444","0.000000","384.111111","0.000000","11.222222","371.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","794.125000",,,,,"0.000000","0.000000",,,"2245.375000","2754.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.018333",,"26.018333",,"26.018333",,,,,,,"3707.875000",,,,,"5204.541667",,"5.355556",,"423.355556",,,,"34.085714","1.022222","0.200000","1.422222","36.111111","0.000000","364.629630","0.000000","9.814815","353.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.125000","821.750000",,,,,"0.000000","0.000000",,,"2301.375000","2867.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.464167",,"27.464167",,"27.464167",,,,,,,"3884.833333",,,,,"5493.750000",,"10.155556",,"442.866667",,,,"34.485714","1.622222","0.355556","1.622222","35.777778","0.000000","368.407407","0.000000","15.222222","350.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","808.250000",,,,,"0.000000","0.000000",,,"2240.000000","2816.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.701250",,"17.701250",,"17.701250",,,,,,,"5011.291667",,,,,"3541.208333",,"1284.777778",,"695.266667",,,,"53.142857","23.266667","0.355556","3.688889","36.022222","0.000000","611.407407","0.000000","255.370370","354.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2433.625000","1326.125000",,,,,"0.000000","0.000000",,,"9949.000000","8372.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.350417",,"15.350417",,"15.350417",,,,,,,"5382.250000",,,,,"3071.000000",,"1021.622222",,"401.822222",,,,"47.142857","24.044444","0.311111","1.733333","28.466667","0.000000","552.148148","0.000000","265.185185","283.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1899.125000","1010.125000",,,,,"0.000000","0.000000",,,"10457.625000","9363.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.290833",,"21.290833",,"21.290833",,,,,,,"3619.541667",,,,,"4259.166667",,"1152.755556",,"1107.355556",,,,"66.057143","22.422222","0.288889","2.755556","51.244444","0.000000","752.481481","0.000000","246.555556","504.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2197.000000","2143.750000",,,,,"0.000000","0.000000",,,"11082.375000","10263.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.514583",,"17.514583",,"17.514583",,,,,,,"5009.291667",,,,,"3503.916667",,"509.822222",,"551.244444",,,,"39.342857","22.688889","0.466667","2.733333","21.822222","0.000000","474.296296","0.000000","251.000000","222.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1031.750000","1032.000000",,,,,"0.000000","0.000000",,,"5165.250000","5015.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.677083",,"16.677083",,"16.677083",,,,,,,"4875.791667",,,,,"3336.375000",,"1580.733333",,"1680.155556",,,,"2085.142857","37.311111","0.688889","4.422222","31.422222","0.000000","706.518519","0.000000","410.666667","294.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2951.750000","14.000000",,,,,"0.000000","0.000000",,,"13374.875000","12946.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.907917",,"20.907917",,"20.907917",,,,,,,"3977.750000",,,,,"4182.583333",,"1303.755556",,"1908.777778",,,,"2471.485714","31.622222","1.066667","7.533333","51.777778","0.000000","838.925926","0.000000","347.185185","490.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"5.714286","3601.125000",,,,,"0.000000","0.000000",,,"13378.000000","13419.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.235000",,"17.235000",,"17.235000",,,,,,,"5147.250000",,,,,"3447.916667",,"460.266667",,"927.022222",,,,"1903.028571","16.422222","0.466667","4.577778","14.866667","0.000000","325.148148","0.000000","180.962963","143.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1584.750000","1394.000000",,,,,"0.000000","0.000000",,,"14222.625000","6818.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.307083",,"20.307083",,"20.307083",,,,,,,"3968.958333",,,,,"4062.708333",,"34.555556",,"1291.622222",,,,"1599.142857","3.355556","1.266667","14.333333","28.288889","0.000000","316.296296","0.000000","36.407407","278.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1666.625000","3053.125000",,,,,"0.000000","0.000000",,,"30891.750000","13841.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"16.724167",,"16.724167",,"16.724167",,,,,,,"5358.458333",,,,,"3345.833333",,"10.844444",,"2037.777778",,,,"1145.828571","1.466667","6.844444","39.977778","22.822222","0.000000","233.962963","0.000000","16.037037","215.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"297.250000","3983.375000",,,,,"0.000000","0.000000",,,"11017.000000","11143.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.643750",,"13.643750",,"13.643750",,,,,,,"6606.375000",,,,,"2729.666667",,"7.400000",,"491.866667",,,,"17.371429","1.177778","1.022222","19.600000","17.777778","0.000000","197.666667","0.000000","11.962963","182.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"80.750000","1036.250000",,,,,"0.000000","0.000000",,,"3139.000000","3352.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"12.636667",,"12.636667",,"12.636667",,,,,,,"6646.916667",,,,,"2528.291667",,"4.911111",,"421.444444",,,,"18.114286","1.044444","0.733333","15.133333","19.000000","0.000000","209.444444","0.000000","10.148148","197.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","809.375000",,,,,"0.000000","0.000000",,,"1915.125000","2591.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"14.670000",,"14.670000",,"14.670000",,,,,,,"6072.541667",,,,,"2934.791667",,"10.488889",,"254.955556",,,,"17.685714","1.533333","1.000000","4.444444","17.533333","0.000000","197.592593","0.000000","14.518519","180.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.625000","496.125000",,,,,"0.000000","0.000000",,,"1451.375000","1772.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"11.757083",,"11.757083",,"11.757083",,,,,,,"7023.958333",,,,,"2352.333333",,"20.555556",,"68.733333",,,,"5.800000","1.222222","1.866667","3.222222","5.088889","0.000000","69.037037","0.000000","11.962963","55.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.250000","127.000000",,,,,"0.000000","0.000000",,,"654.750000","682.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.686667",,"15.686667",,"15.686667",,,,,,,"5678.291667",,,,,"3138.208333",,"3.288889",,"249.177778",,,,"19.171429","0.844444","0.088889","3.266667","20.266667","0.000000","216.296296","0.000000","8.296296","206.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","449.250000",,,,,"0.000000","0.000000",,,"1368.250000","1697.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"15.884167",,"15.884167",,"15.884167",,,,,,,"5630.000000",,,,,"3177.666667",,"4.577778",,"322.666667",,,,"23.400000","1.044444","0.244444","2.533333","24.955556","0.000000","269.629630","0.000000","10.333333","257.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","631.000000",,,,,"0.000000","0.000000",,,"1798.125000","2281.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"13.777083",,"13.777083",,"13.777083",,,,,,,"6263.291667",,,,,"2756.500000",,"3.622222",,"273.755556",,,,"24.514286","0.777778","0.200000","1.844444","26.466667","0.000000","281.518519","0.000000","7.888889","272.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","524.375000",,,,,"0.000000","0.000000",,,"1628.125000","1966.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.099583",,"19.099583",,"19.099583",,,,,,,"4743.125000",,,,,"3820.875000",,"22.844444",,"342.533333",,,,"24.914286","2.000000","0.244444","2.400000","25.577778","0.000000","294.444444","0.000000","22.111111","268.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.625000","619.500000",,,,,"0.000000","0.000000",,,"1884.375000","2355.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.419583",,"28.419583",,"28.419583",,,,,,,"2169.083333",,,,,"5684.875000",,"3.866667",,"646.266667",,,,"43.714286","0.866667","0.244444","1.511111","48.311111","0.000000","517.074074","0.000000","9.148148","506.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.000000","1203.250000",,,,,"0.000000","0.000000",,,"3161.125000","4220.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.884167",,"33.884167",,"33.884167",,,,,,,"793.750000",,,,,"6777.958333",,"8.777778",,"642.777778",,,,"41.171429","1.133333","0.311111","1.755556","45.088889","0.000000","485.407407","0.000000","12.185185","472.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"39.000000","1310.375000",,,,,"0.000000","0.000000",,,"5276.625000","6179.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.700417",,"30.700417",,"30.700417",,,,,,,"936.666667",,,,,"6141.000000",,"34.133333",,"1127.155556",,,,"1465.457143","30.133333","0.333333","4.622222","57.044444","0.000000","840.851852","0.000000","255.481481","580.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"6842.875000","2322.125000",,,,,"0.000000","0.000000",,,"100165.250000","24503.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"36.037083",,"36.037083",,"36.037083",,,,,,,"1285.083333",,,,,"7208.291667",,"6.844444",,"357.155556",,,,"2660.600000","4.355556","0.488889","2.800000","24.822222","0.000000","307.777778","0.000000","38.370370","266.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"275.875000","716.875000",,,,,"0.000000","0.000000",,,"5619.750000","3289.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.591667",,"31.591667",,"31.591667",,,,,,,"2267.666667",,,,,"6319.208333",,"5.622222",,"432.044444",,,,"2012.942857","1.288889","0.622222","2.577778","34.755556","0.000000","385.925926","0.000000","12.296296","372.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.250000","797.750000",,,,,"0.000000","0.000000",,,"2391.000000","2918.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.374167",,"30.374167",,"30.374167",,,,,,,"2500.583333",,,,,"6075.875000",,"3.000000",,"800.622222",,,,"1996.600000","0.800000","0.244444","2.311111","65.066667","0.000000","696.111111","0.000000","8.148148","686.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.000000","1476.750000",,,,,"0.000000","0.000000",,,"4373.250000","5211.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.625000",,"27.625000",,"27.625000",,,,,,,"2838.000000",,,,,"5525.750000",,"4.866667",,"582.488889",,,,"1094.257143","0.955556","0.844444","1.311111","49.822222","0.000000","544.370370","0.000000","9.814815","533.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.500000","1138.000000",,,,,"0.000000","0.000000",,,"3051.875000","3931.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.592917",,"22.592917",,"22.592917",,,,,,,"4276.833333",,,,,"4519.416667",,"4.111111",,"618.711111",,,,"50.828571","0.688889","0.088889","1.533333","56.888889","0.000000","611.925926","0.000000","7.592593","603.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","16.428571",,,,,"0.000000","0.000000",,,"3246.625000","4274.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.680417",,"20.680417",,"20.680417",,,,,,,"4539.083333",,,,,"4137.166667",,"3.555556",,"443.822222",,,,"33.485714","1.022222","0.088889","1.733333","37.000000","0.000000","408.629630","0.000000","9.481481","397.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","851.750000",,,,,"0.000000","0.000000",,,"2333.375000","3082.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.137917",,"21.137917",,"21.137917",,,,,,,"4639.083333",,,,,"4228.583333",,"4.333333",,"548.533333",,,,"46.228571","0.911111","0.244444","2.377778","51.600000","0.000000","560.703704","0.000000","8.851852","550.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.750000","1040.875000",,,,,"0.000000","0.000000",,,"2947.625000","3860.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.762083",,"19.762083",,"19.762083",,,,,,,"4567.791667",,,,,"3953.291667",,"4.400000",,"592.800000",,,,"52.542857","0.955556","0.733333","1.066667","58.977778","0.000000","646.222222","0.000000","9.074074","635.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.000000","1115.500000",,,,,"0.000000","0.000000",,,"3134.750000","4069.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.950417",,"22.950417",,"22.950417",,,,,,,"3818.916667",,,,,"4590.958333",,"4.222222",,"721.133333",,,,"62.342857","0.955556","0.622222","1.155556","69.733333","0.000000","749.629630","0.000000","9.222222","738.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1371.125000",,,,,"0.000000","0.000000",,,"3664.750000","4854.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.935000",,"22.935000",,"22.935000",,,,,,,"3686.208333",,,,,"4588.125000",,"9.288889",,"644.888889",,,,"54.342857","1.577778","0.133333","1.066667","59.955556","0.000000","658.296296","0.000000","14.703704","640.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1186.750000",,,,,"0.000000","0.000000",,,"3322.000000","4221.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.317500",,"22.317500",,"22.317500",,,,,,,"4577.541667",,,,,"4464.333333",,"3.977778",,"697.644444",,,,"58.885714","0.844444","0.133333","0.911111","66.133333","0.000000","717.814815","0.000000","8.629630","707.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.250000","1348.000000",,,,,"0.000000","0.000000",,,"4048.625000","5124.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.851250",,"24.851250",,"24.851250",,,,,,,"2913.458333",,,,,"4971.041667",,"28.022222",,"791.111111",,,,"67.771429","2.555556","0.466667","1.333333","73.977778","0.000000","815.259259","0.000000","27.814815","783.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"85.500000","1696.125000",,,,,"0.000000","0.000000",,,"7658.250000","8914.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.849167",,"21.849167",,"21.849167",,,,,,,"3987.916667",,,,,"4370.666667",,"3.600000",,"575.622222",,,,"37.514286","0.955556","0.444444","3.311111","42.044444","0.000000","469.851852","0.000000","9.148148","459.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.250000","1129.250000",,,,,"0.000000","0.000000",,,"3691.625000","4527.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.592500",,"26.592500",,"26.592500",,,,,,,"2948.541667",,,,,"5319.500000",,"3.333333",,"741.222222",,,,"60.942857","0.844444","0.088889","1.977778","68.688889","0.000000","744.370370","0.000000","8.074074","735.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.375000","1399.125000",,,,,"0.000000","0.000000",,,"3833.875000","5015.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.259583",,"23.259583",,"23.259583",,,,,,,"3991.458333",,,,,"4652.958333",,"2.577778",,"560.288889",,,,"2218.914286","0.844444","0.266667","2.666667","46.711111","0.000000","510.814815","0.000000","8.222222","501.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.750000","1046.875000",,,,,"0.000000","0.000000",,,"2781.750000","3624.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.740833",,"24.740833",,"24.740833",,,,,,,"3841.958333",,,,,"4948.833333",,"4.466667",,"399.466667",,,,"2771.942857","0.933333","0.688889","1.844444","33.444444","0.000000","374.666667","0.000000","9.037037","364.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.750000","820.125000",,,,,"0.000000","0.000000",,,"2336.500000","3055.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.040000",,"24.040000",,"24.040000",,,,,,,"3610.625000",,,,,"4808.833333",,"3.800000",,"336.311111",,,,"2002.485714","0.777778","0.244444","2.755556","27.955556","0.000000","312.222222","0.000000","8.222222","302.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.750000","632.250000",,,,,"0.000000","0.000000",,,"2360.500000","2502.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.786250",,"27.786250",,"27.786250",,,,,,,"3126.375000",,,,,"5558.375000",,"2.622222",,"636.155556",,,,"1834.285714","0.933333","0.177778","1.288889","48.844444","0.000000","529.444444","0.000000","8.518519","519.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1185.375000",,,,,"0.000000","0.000000",,,"3201.125000","3944.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.118750",,"23.118750",,"23.118750",,,,,,,"4047.208333",,,,,"4624.875000",,"4.155556",,"575.622222",,,,"348.000000","0.955556","0.577778","1.066667","51.466667","0.000000","548.111111","0.000000","9.444444","537.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.750000","1085.750000",,,,,"0.000000","0.000000",,,"2990.000000","3775.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.070000",,"20.070000",,"20.070000",,,,,,,"4379.375000",,,,,"4015.125000",,"2.511111",,"394.911111",,,,"32.657143","0.933333","0.088889","2.288889","35.666667","0.000000","382.518519","0.000000","8.444444","372.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.750000","764.875000",,,,,"0.000000","0.000000",,,"2210.875000","2806.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.266667",,"21.266667",,"21.266667",,,,,,,"4952.750000",,,,,"4254.208333",,"9.755556",,"455.800000",,,,"39.028571","1.955556","0.088889","1.022222","41.488889","0.000000","458.370370","0.000000","17.925926","436.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.875000","842.500000",,,,,"0.000000","0.000000",,,"2332.500000","3041.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.521250",,"22.521250",,"22.521250",,,,,,,"3924.583333",,,,,"4505.041667",,"3.155556",,"508.266667",,,,"38.942857","0.688889","0.177778","1.666667","43.111111","0.000000","462.259259","0.000000","7.259259","453.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.500000","947.750000",,,,,"0.000000","0.000000",,,"2600.125000","3304.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.841667",,"19.841667",,"19.841667",,,,,,,"4871.375000",,,,,"3969.250000",,"2.422222",,"438.422222",,,,"35.085714","0.755556","0.133333","1.133333","38.400000","0.000000","406.370370","0.000000","7.444444","397.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","882.250000",,,,,"0.000000","0.000000",,,"2997.250000","3664.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.432500",,"22.432500",,"22.432500",,,,,,,"3864.625000",,,,,"4487.416667",,"4.111111",,"463.488889",,,,"36.971429","0.955556","0.177778","1.266667","40.644444","0.000000","436.444444","0.000000","9.185185","425.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.375000","1066.125000",,,,,"0.000000","0.000000",,,"6484.625000","7204.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.970417",,"20.970417",,"20.970417",,,,,,,"4753.125000",,,,,"4194.791667",,"2.688889",,"459.222222",,,,"34.342857","0.933333","0.088889","1.622222","37.666667","0.000000","406.037037","0.000000","8.888889","395.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","928.625000",,,,,"0.000000","0.000000",,,"2739.125000","3488.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.691250",,"20.691250",,"20.691250",,,,,,,"5296.250000",,,,,"4139.166667",,"7.311111",,"322.377778",,,,"24.971429","1.711111","0.288889","3.511111","26.222222","0.000000","294.777778","0.000000","18.296296","275.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","606.000000",,,,,"0.000000","0.000000",,,"1736.375000","2189.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.491250",,"22.491250",,"22.491250",,,,,,,"3847.916667",,,,,"4499.541667",,"21.822222",,"531.533333",,,,"43.971429","2.000000","0.644444","1.977778","47.311111","0.000000","523.925926","0.000000","21.629630","498.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.625000","982.500000",,,,,"0.000000","0.000000",,,"2818.875000","3579.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.157083",,"29.157083",,"29.157083",,,,,,,"1794.333333",,,,,"5832.166667",,"3.000000",,"983.066667",,,,"43.771429","0.666667","0.311111","2.822222","48.266667","0.000000","506.740741","0.000000","7.296296","498.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.250000","1871.625000",,,,,"0.000000","0.000000",,,"4207.875000","5711.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.200417",,"26.200417",,"26.200417",,,,,,,"2723.375000",,,,,"5240.833333",,"3.844444",,"740.444444",,,,"32.028571","0.888889","0.288889","4.933333","35.022222","0.000000","375.370370","0.000000","8.888889","365.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.250000","1434.000000",,,,,"0.000000","0.000000",,,"3506.250000","4709.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.379167",,"27.379167",,"27.379167",,,,,,,"2607.666667",,,,,"5477.125000",,"8.666667",,"1239.644444",,,,"2014.057143","1.111111","0.822222","5.688889","58.355556","0.000000","625.740741","0.000000","11.629630","611.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"172.750000","42.857143",,,,,"0.000000","0.000000",,,"7086.875000","7615.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.535833",,"28.535833",,"28.535833",,,,,,,"1791.083333",,,,,"5708.250000",,"6.666667",,"738.977778",,,,"2322.228571","0.888889","1.022222","3.377778","70.377778","0.000000","760.740741","0.000000","11.629630","747.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1428.625000",,,,,"0.000000","0.000000",,,"3970.250000","5284.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.900000",,"22.900000",,"22.900000",,,,,,,"3955.416667",,,,,"4581.000000",,"2.977778",,"589.822222",,,,"2179.457143","0.711111","0.177778","1.466667","60.066667","0.000000","667.111111","0.000000","7.481481","658.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.750000","1113.875000",,,,,"0.000000","0.000000",,,"3451.500000","4167.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.657083",,"27.657083",,"27.657083",,,,,,,"3029.833333",,,,,"5532.208333",,"7.755556",,"894.844444",,,,"1867.257143","1.555556","0.088889","1.555556","73.177778","0.000000","799.037037","0.000000","13.629630","782.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"62.625000","1681.125000",,,,,"0.000000","0.000000",,,"4914.125000","5990.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.860417",,"25.860417",,"25.860417",,,,,,,"2995.125000",,,,,"5172.875000",,"4.044444",,"757.755556",,,,"897.942857","0.933333","0.155556","1.888889","65.511111","0.000000","703.370370","0.000000","9.111111","692.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1465.625000",,,,,"0.000000","0.000000",,,"3812.375000","5269.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.463750",,"25.463750",,"25.463750",,,,,,,"3348.583333",,,,,"5093.958333",,"3.644444",,"852.466667",,,,"70.685714","0.844444","0.088889","1.022222","79.111111","0.000000","842.777778","0.000000","8.370370","833.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1581.500000",,,,,"0.000000","0.000000",,,"4110.375000","5472.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.671667",,"26.671667",,"26.671667",,,,,,,"3050.958333",,,,,"5335.500000",,"3.600000",,"994.933333",,,,"83.571429","0.933333","0.088889","1.666667","93.733333","0.000000","1001.851852","0.000000","9.000000","991.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.250000","1882.250000",,,,,"0.000000","0.000000",,,"4988.500000","6539.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.721250",,"24.721250",,"24.721250",,,,,,,"4267.291667",,,,,"4945.291667",,"2.444444",,"629.577778",,,,"52.057143","0.844444","0.177778","1.044444","58.377778","0.000000","634.296296","0.000000","7.925926","625.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"38.125000","1409.000000",,,,,"0.000000","0.000000",,,"7282.500000","8152.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.225000",,"25.225000",,"25.225000",,,,,,,"3514.500000",,,,,"5046.083333",,"2.422222",,"457.977778",,,,"37.514286","0.755556","0.088889","1.377778","41.244444","0.000000","439.259259","0.000000","7.370370","430.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.375000","922.875000",,,,,"0.000000","0.000000",,,"3304.125000","4008.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.312500",,"27.312500",,"27.312500",,,,,,,"3346.750000",,,,,"5463.375000",,"2.600000",,"626.200000",,,,"53.828571","1.022222","0.088889","1.555556","59.200000","0.000000","619.814815","0.000000","9.074074","609.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.375000","1202.875000",,,,,"0.000000","0.000000",,,"3281.125000","4236.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.802083",,"26.802083",,"26.802083",,,,,,,"3114.541667",,,,,"5361.166667",,"3.155556",,"613.600000",,,,"48.285714","0.755556","0.200000","1.288889","53.488889","0.000000","564.481481","0.000000","7.851852","555.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1157.000000",,,,,"0.000000","0.000000",,,"3078.625000","3986.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.740000",,"24.740000",,"24.740000",,,,,,,"3631.708333",,,,,"4948.916667",,"3.644444",,"642.755556",,,,"32.400000","0.977778","0.333333","5.088889","35.644444","0.000000","387.629630","0.000000","9.296296","377.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1142.250000",,,,,"0.000000","0.000000",,,"2838.250000","3666.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.794583",,"23.794583",,"23.794583",,,,,,,"4113.250000",,,,,"4759.916667",,"30.955556",,"587.666667",,,,"45.800000","2.511111","0.288889","2.044444","48.311111","0.000000","529.222222","0.000000","28.111111","497.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"63.500000","1143.500000",,,,,"0.000000","0.000000",,,"3186.125000","3999.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.688333",,"27.688333",,"27.688333",,,,,,,"2641.000000",,,,,"5538.375000",,"4.777778",,"559.355556",,,,"34.942857","0.777778","0.311111","1.155556","38.844444","0.000000","424.037037","0.000000","8.222222","414.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1069.750000",,,,,"0.000000","0.000000",,,"2778.125000","3568.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.544583",,"28.544583",,"28.544583",,,,,,,"2194.875000",,,,,"5710.000000",,"3.244444",,"639.377778",,,,"51.971429","0.844444","0.244444","1.888889","56.777778","0.000000","585.777778","0.000000","8.259259","576.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.125000","1192.125000",,,,,"0.000000","0.000000",,,"3251.625000","4120.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.278333",,"24.278333",,"24.278333",,,,,,,"3850.500000",,,,,"4856.416667",,"8.888889",,"445.688889",,,,"2322.685714","1.555556","0.177778","0.933333","37.911111","0.000000","413.814815","0.000000","13.777778","397.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.250000","792.000000",,,,,"0.000000","0.000000",,,"2225.625000","2836.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.004583",,"27.004583",,"27.004583",,,,,,,"2876.166667",,,,,"5401.791667",,"3.311111",,"612.866667",,,,"2405.428571","0.844444","0.244444","1.000000","55.577778","0.000000","581.629630","0.000000","8.481481","571.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"42.750000","1144.250000",,,,,"0.000000","0.000000",,,"3469.250000","4078.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.611250",,"24.611250",,"24.611250",,,,,,,"3367.208333",,,,,"4923.291667",,"2.333333",,"531.511111",,,,"1936.628571","0.755556","0.088889","1.311111","37.666667","0.000000","403.703704","0.000000","7.222222","395.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"44.875000","1015.625000",,,,,"0.000000","0.000000",,,"3026.375000","3505.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.404583",,"28.404583",,"28.404583",,,,,,,"2404.625000",,,,,"5682.166667",,"47.577778",,"550.155556",,,,"1658.428571","3.066667","0.177778","1.711111","50.022222","0.000000","549.259259","0.000000","33.074074","514.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"106.625000","1055.875000",,,,,"0.000000","0.000000",,,"3570.000000","4385.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.889167",,"28.889167",,"28.889167",,,,,,,"2060.666667",,,,,"5778.708333",,"2.933333",,"602.466667",,,,"877.057143","0.800000","0.088889","1.333333","49.155556","0.000000","510.925926","0.000000","7.962963","501.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"35.000000","1294.000000",,,,,"0.000000","0.000000",,,"7080.500000","7990.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.065000",,"26.065000",,"26.065000",,,,,,,"3938.458333",,,,,"5214.000000",,"2.533333",,"414.844444",,,,"30.657143","0.933333","0.266667","1.066667","32.911111","0.000000","341.962963","0.000000","8.407407","332.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","868.500000",,,,,"0.000000","0.000000",,,"3374.375000","4006.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.601667",,"25.601667",,"25.601667",,,,,,,"3118.291667",,,,,"5121.125000",,"2.622222",,"541.133333",,,,"41.685714","1.022222","0.266667","0.955556","45.088889","0.000000","465.333333","0.000000","9.370370","454.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","297.714286",,,,,"0.000000","0.000000",,,"5959.250000","7060.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.481667",,"26.481667",,"26.481667",,,,,,,"3014.833333",,,,,"5297.541667",,"3.888889",,"595.222222",,,,"46.685714","0.866667","0.733333","0.955556","50.866667","0.000000","525.370370","0.000000","8.703704","515.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","1193.625000",,,,,"0.000000","0.000000",,,"3891.250000","4759.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.595833",,"25.595833",,"25.595833",,,,,,,"3289.916667",,,,,"5119.958333",,"2.822222",,"476.755556",,,,"36.800000","0.844444","0.266667","1.066667","39.866667","0.000000","413.888889","0.000000","8.037037","404.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.000000","946.000000",,,,,"0.000000","0.000000",,,"2643.625000","3394.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.859583",,"26.859583",,"26.859583",,,,,,,"3504.875000",,,,,"5373.041667",,"3.933333",,"537.200000",,,,"42.714286","0.955556","0.355556","0.933333","46.466667","0.000000","482.962963","0.000000","9.037037","472.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.250000","1004.625000",,,,,"0.000000","0.000000",,,"2698.875000","3407.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.387083",,"27.387083",,"27.387083",,,,,,,"2532.375000",,,,,"5478.375000",,"3.888889",,"630.800000",,,,"47.828571","0.866667","0.333333","0.977778","51.822222","0.000000","530.000000","0.000000","8.814815","519.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.375000","1160.250000",,,,,"0.000000","0.000000",,,"3123.750000","4036.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.999583",,"25.999583",,"25.999583",,,,,,,"2951.708333",,,,,"5201.041667",,"8.133333",,"1532.377778",,,,"41.085714","1.288889","0.355556","2.222222","43.222222","0.000000","434.000000","0.000000","12.222222","419.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","2614.250000",,,,,"0.000000","0.000000",,,"5101.625000","7566.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.884167",,"22.884167",,"22.884167",,,,,,,"4429.625000",,,,,"4577.791667",,"23.888889",,"347.333333",,,,"24.228571","2.355556","0.533333","1.933333","24.044444","0.000000","276.518519","0.000000","25.444444","246.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.000000","717.125000",,,,,"0.000000","0.000000",,,"2099.125000","2604.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.453750",,"26.453750",,"26.453750",,,,,,,"2846.916667",,,,,"5291.500000",,"3.422222",,"292.266667",,,,"17.400000","0.844444","1.911111","8.400000","18.244444","0.000000","197.444444","0.000000","8.703704","187.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.000000","541.000000",,,,,"0.000000","0.000000",,,"1433.625000","1861.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.348333",,"24.348333",,"24.348333",,,,,,,"3485.041667",,,,,"4871.000000",,"2.688889",,"390.422222",,,,"26.057143","0.933333","1.244444","5.644444","27.888889","0.000000","293.962963","0.000000","8.703704","283.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","738.625000",,,,,"0.000000","0.000000",,,"2005.875000","2539.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.935000",,"23.935000",,"23.935000",,,,,,,"3494.500000",,,,,"4787.875000",,"3.288889",,"323.422222",,,,"1929.114286","0.888889","0.200000","4.177778","26.866667","0.000000","283.000000","0.000000","9.037037","272.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.000000","633.500000",,,,,"0.000000","0.000000",,,"1818.625000","2331.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.958750",,"24.958750",,"24.958750",,,,,,,"4265.208333",,,,,"4992.625000",,"3.866667",,"165.533333",,,,"2919.914286","1.022222","0.155556","4.533333","9.977778","0.000000","121.370370","0.000000","12.074074","107.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"10.625000","311.250000",,,,,"0.000000","0.000000",,,"981.250000","1250.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.922500",,"21.922500",,"21.922500",,,,,,,"4518.375000",,,,,"4385.708333",,"2.844444",,"136.933333",,,,"2077.485714","0.844444","0.155556","8.111111","7.488889","0.000000","89.592593","0.000000","8.111111","80.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","474.750000",,,,,"0.000000","0.000000",,,"5130.125000","4933.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.143333",,"25.143333",,"25.143333",,,,,,,"3648.875000",,,,,"5029.708333",,"70.333333",,"270.688889",,,,"1713.971429","2.200000","0.822222","5.111111","13.800000","0.000000","173.111111","0.000000","22.444444","149.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"146.375000","595.625000",,,,,"0.000000","0.000000",,,"3168.250000","3487.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.817917",,"24.817917",,"24.817917",,,,,,,"3659.250000",,,,,"4964.333333",,"107.955556",,"244.666667",,,,"423.114286","8.777778","0.466667","4.666667","12.177778","0.000000","225.962963","0.000000","96.814815","127.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"214.250000","465.625000",,,,,"0.000000","0.000000",,,"1908.875000","2119.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.857917",,"23.857917",,"23.857917",,,,,,,"3939.541667",,,,,"4772.416667",,"3.400000",,"429.488889",,,,"34.542857","1.000000","0.088889","1.822222","37.022222","0.000000","383.148148","0.000000","9.111111","372.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","823.000000",,,,,"0.000000","0.000000",,,"2292.750000","2906.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.044583",,"22.044583",,"22.044583",,,,,,,"4753.916667",,,,,"4410.041667",,"3.400000",,"244.088889",,,,"15.114286","0.933333","0.177778","4.977778","15.711111","0.000000","172.629630","0.000000","8.851852","162.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.625000","421.375000",,,,,"0.000000","0.000000",,,"1198.500000","1610.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.162500",,"23.162500",,"23.162500",,,,,,,"4451.041667",,,,,"4633.375000",,"6.200000",,"594.333333",,,,"38.828571","1.311111","0.133333","1.955556","41.444444","0.000000","430.925926","0.000000","11.962963","416.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","1327.375000",,,,,"0.000000","0.000000",,,"3326.125000","5989.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.587083",,"20.587083",,"20.587083",,,,,,,"5333.083333",,,,,"4118.250000",,"4.444444",,"1394.266667",,,,"19.342857","0.955556","0.644444","16.111111","19.466667","0.000000","192.074074","0.000000","9.000000","181.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"750.000000","2653.500000",,,,,"0.000000","0.000000",,,"14715.375000","7716.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.306250",,"20.306250",,"20.306250",,,,,,,"4969.416667",,,,,"4062.375000",,"4.933333",,"2136.555556",,,,"20.771429","0.933333","5.466667","24.244444","20.488889","0.000000","186.666667","0.000000","8.925926","176.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"743.375000","4007.000000",,,,,"0.000000","0.000000",,,"16784.875000","10950.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.348333",,"24.348333",,"24.348333",,,,,,,"4729.041667",,,,,"4870.791667",,"3.466667",,"2132.400000",,,,"33.742857","1.022222","1.044444","7.466667","34.644444","0.000000","326.296296","0.000000","9.925926","314.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"716.250000","4055.625000",,,,,"0.000000","0.000000",,,"16677.875000","11120.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.004583",,"21.004583",,"21.004583",,,,,,,"4808.916667",,,,,"4201.958333",,"2.511111",,"2160.288889",,,,"15.000000","0.844444","0.466667","9.866667","14.111111","0.000000","120.814815","0.000000","8.296296","111.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"708.750000","16.142857",,,,,"0.000000","0.000000",,,"16379.375000","10856.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.390833",,"23.390833",,"23.390833",,,,,,,"5002.750000",,,,,"4679.000000",,"3.311111",,"2092.666667",,,,"28.285714","0.888889","2.600000","5.688889","29.844444","0.000000","304.000000","0.000000","9.000000","293.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1729.125000","4039.000000",,,,,"0.000000","0.000000",,,"30124.500000","11668.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.902500",,"27.902500",,"27.902500",,,,,,,"3641.875000",,,,,"5581.333333",,"21.422222",,"1938.888889",,,,"30.142857","1.800000","0.555556","7.466667","30.733333","0.000000","326.370370","0.000000","20.555556","302.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1900.750000","3660.250000",,,,,"0.000000","0.000000",,,"33411.250000","13702.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.585833",,"26.585833",,"26.585833",,,,,,,"4063.625000",,,,,"5318.250000",,"2.577778",,"1843.733333",,,,"27.257143","0.844444","0.955556","17.355556","28.488889","0.000000","282.444444","0.000000","8.444444","272.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"562.500000","3971.875000",,,,,"0.000000","0.000000",,,"16900.375000","13646.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.931250",,"26.931250",,"26.931250",,,,,,,"4304.833333",,,,,"5387.041667",,"3.755556",,"571.666667",,,,"2511.285714","1.022222","0.422222","3.955556","29.977778","0.000000","317.370370","0.000000","9.925926","305.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.125000","1064.000000",,,,,"0.000000","0.000000",,,"3233.750000","3417.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.023750",,"29.023750",,"29.023750",,,,,,,"2811.541667",,,,,"5805.791667",,"30.777778",,"414.911111",,,,"2518.314286","3.488889","0.422222","1.800000","29.777778","0.000000","352.777778","0.000000","37.851852","313.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.000000","824.625000",,,,,"0.000000","0.000000",,,"2297.750000","2933.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.469583",,"28.469583",,"28.469583",,,,,,,"3577.375000",,,,,"5694.666667",,"9.111111",,"314.155556",,,,"2078.828571","1.488889","1.000000","2.222222","12.800000","0.000000","150.851852","0.000000","13.962963","134.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.000000","573.500000",,,,,"0.000000","0.000000",,,"2394.250000","2328.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.269583",,"21.269583",,"21.269583",,,,,,,"4297.791667",,,,,"4255.000000",,"11.844444",,"126.333333",,,,"1667.885714","1.133333","0.533333","0.977778","7.533333","0.000000","94.703704","0.000000","12.111111","81.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.000000","273.500000",,,,,"0.000000","0.000000",,,"945.750000","1102.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.310417",,"26.310417",,"26.310417",,,,,,,"3404.041667",,,,,"5262.833333",,"3.200000",,"407.244444",,,,"324.714286","0.888889","0.288889","2.755556","38.200000","0.000000","421.296296","0.000000","8.555556","411.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","708.625000",,,,,"0.000000","0.000000",,,"2145.875000","2728.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.875000",,"32.875000",,"32.875000",,,,,,,"1576.583333",,,,,"6576.083333",,"2.577778",,"590.266667",,,,"47.742857","0.888889","0.177778","2.044444","52.688889","0.000000","559.925926","0.000000","8.814815","549.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.500000","1123.875000",,,,,"0.000000","0.000000",,,"3096.000000","4114.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.302083",,"30.302083",,"30.302083",,,,,,,"1547.208333",,,,,"6061.291667",,"5.022222",,"596.666667",,,,"45.800000","0.955556","0.622222","1.288889","50.733333","0.000000","548.000000","0.000000","9.925926","536.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1162.500000",,,,,"0.000000","0.000000",,,"3087.875000","4237.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.652500",,"33.652500",,"33.652500",,,,,,,"1314.916667",,,,,"6731.416667",,"2.666667",,"522.355556",,,,"36.200000","0.933333","0.088889","1.333333","40.044444","0.000000","439.000000","0.000000","8.592593","428.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.250000","1186.375000",,,,,"0.000000","0.000000",,,"5157.250000","6392.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.986250",,"27.986250",,"27.986250",,,,,,,"2059.291667",,,,,"5597.875000",,"2.755556",,"643.422222",,,,"48.800000","0.844444","1.311111","1.422222","54.911111","0.000000","602.185185","0.000000","7.962963","593.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","1499.375000",,,,,"0.000000","0.000000",,,"6739.750000","8336.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.255000",,"23.255000",,"23.255000",,,,,,,"3861.416667",,,,,"4651.916667",,"3.466667",,"542.466667",,,,"42.742857","0.777778","0.844444","1.333333","48.155556","0.000000","535.296296","0.000000","8.111111","525.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.875000","1279.500000",,,,,"0.000000","0.000000",,,"6223.875000","7580.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.756250",,"27.756250",,"27.756250",,,,,,,"2520.875000",,,,,"5552.208333",,"2.822222",,"696.777778",,,,"52.971429","0.933333","0.844444","1.644444","58.755556","0.000000","623.407407","0.000000","8.777778","613.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.000000","1624.500000",,,,,"0.000000","0.000000",,,"6874.375000","8664.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.053333",,"24.053333",,"24.053333",,,,,,,"3446.083333",,,,,"4811.708333",,"2.555556",,"441.844444",,,,"29.828571","0.844444","0.133333","3.488889","32.911111","0.000000","362.814815","0.000000","7.962963","353.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.000000","1126.375000",,,,,"0.000000","0.000000",,,"5723.750000","7076.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.840000",,"24.840000",,"24.840000",,,,,,,"3417.333333",,,,,"4968.916667",,"2.933333",,"687.888889",,,,"56.800000","0.933333","0.511111","1.800000","63.022222","0.000000","671.925926","0.000000","9.185185","661.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.250000","1551.750000",,,,,"0.000000","0.000000",,,"6780.375000","8581.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.343333",,"31.343333",,"31.343333",,,,,,,"1672.708333",,,,,"6269.416667",,"28.088889",,"759.377778",,,,"34.171429","2.711111","0.422222","5.533333","35.333333","0.000000","412.296296","0.000000","28.037037","378.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.625000","313.857143",,,,,"0.000000","0.000000",,,"6845.250000","8412.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.628750",,"30.628750",,"30.628750",,,,,,,"909.833333",,,,,"6126.750000",,"10.177778",,"846.466667",,,,"36.685714","1.400000","0.066667","2.311111","39.644444","0.000000","425.518519","0.000000","13.814815","410.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"46.125000","1804.500000",,,,,"0.000000","0.000000",,,"6479.250000","8253.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.300417",,"30.300417",,"30.300417",,,,,,,"1946.500000",,,,,"6061.041667",,"3.022222",,"704.822222",,,,"2137.514286","0.844444","0.444444","2.155556","53.133333","0.000000","569.333333","0.000000","8.407407","559.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.875000","1565.375000",,,,,"0.000000","0.000000",,,"6322.000000","8005.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.853750",,"31.853750",,"31.853750",,,,,,,"1271.791667",,,,,"6371.666667",,"5.000000",,"442.288889",,,,"1980.057143","1.244444","1.066667","3.733333","30.200000","0.000000","343.666667","0.000000","15.222222","326.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.625000","1094.500000",,,,,"0.000000","0.000000",,,"5333.000000","6509.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.118750",,"31.118750",,"31.118750",,,,,,,"2255.250000",,,,,"6225.000000",,"2.666667",,"602.222222",,,,"2159.114286","0.844444","3.955556","2.755556","35.622222","0.000000","389.814815","0.000000","8.074074","380.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"74.625000","1419.250000",,,,,"0.000000","0.000000",,,"6795.500000","7806.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.689583",,"30.689583",,"30.689583",,,,,,,"1582.458333",,,,,"6138.916667",,"2.577778",,"595.733333",,,,"1548.228571","0.800000","0.200000","4.200000","46.600000","0.000000","501.592593","0.000000","8.296296","492.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.375000","1360.250000",,,,,"0.000000","0.000000",,,"6043.125000","7440.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.430417",,"28.430417",,"28.430417",,,,,,,"1871.833333",,,,,"5686.916667",,"2.755556",,"483.822222",,,,"1253.857143","0.933333","0.400000","4.688889","34.177778","0.000000","366.037037","0.000000","8.629630","355.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.250000","1176.875000",,,,,"0.000000","0.000000",,,"5504.375000","6791.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.781250",,"24.781250",,"24.781250",,,,,,,"3682.041667",,,,,"4957.416667",,"2.955556",,"472.377778",,,,"122.171429","0.844444","0.177778","3.600000","35.155556","0.000000","382.740741","0.000000","8.222222","373.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.375000","1214.000000",,,,,"0.000000","0.000000",,,"6057.250000","7318.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.189167",,"24.189167",,"24.189167",,,,,,,"3443.708333",,,,,"4838.500000",,"3.222222",,"368.133333",,,,"21.971429","0.933333","0.288889","4.311111","23.977778","0.000000","270.074074","0.000000","9.111111","259.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.875000","958.125000",,,,,"0.000000","0.000000",,,"5098.875000","6192.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.917500",,"24.917500",,"24.917500",,,,,,,"3779.083333",,,,,"4984.458333",,"2.977778",,"399.733333",,,,"26.742857","0.933333","0.288889","3.155556","29.355556","0.000000","327.148148","0.000000","8.814815","316.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","973.375000",,,,,"0.000000","0.000000",,,"5188.500000","6061.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.570000",,"27.570000",,"27.570000",,,,,,,"3142.833333",,,,,"5515.083333",,"2.666667",,"485.644444",,,,"33.485714","0.844444","0.133333","3.688889","37.155556","0.000000","407.518519","0.000000","8.407407","397.925926",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.875000","1075.750000",,,,,"0.000000","0.000000",,,"5554.375000","6317.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.775000",,"30.775000",,"30.775000",,,,,,,"1832.166667",,,,,"6155.708333",,"3.022222",,"629.888889",,,,"46.571429","0.888889","0.400000","1.800000","51.466667","0.000000","546.111111","0.000000","8.592593","536.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.875000","1205.375000",,,,,"0.000000","0.000000",,,"3166.625000","4096.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.232500",,"27.232500",,"27.232500",,,,,,,"2628.166667",,,,,"5447.333333",,"3.088889",,"642.577778",,,,"46.600000","1.111111","0.355556","3.866667","51.600000","0.000000","561.592593","0.000000","10.518519","549.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.500000","1174.125000",,,,,"0.000000","0.000000",,,"3067.000000","3923.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.102500",,"31.102500",,"31.102500",,,,,,,"1794.916667",,,,,"6221.250000",,"8.355556",,"725.177778",,,,"53.571429","1.600000","0.244444","1.577778","58.377778","0.000000","629.111111","0.000000","14.370370","611.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","1361.250000",,,,,"0.000000","0.000000",,,"3959.500000","5059.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.027083",,"30.027083",,"30.027083",,,,,,,"2266.791667",,,,,"6006.333333",,"3.377778",,"655.355556",,,,"47.257143","0.933333","0.133333","1.755556","52.444444","0.000000","566.518519","0.000000","9.407407","555.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1480.625000",,,,,"0.000000","0.000000",,,"7369.500000","8343.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.421250",,"29.421250",,"29.421250",,,,,,,"2396.833333",,,,,"5885.333333",,"21.733333",,"934.222222",,,,"50.685714","2.088889","0.088889","2.666667","54.622222","0.000000","600.888889","0.000000","23.037037","573.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"64.875000","1793.750000",,,,,"0.000000","0.000000",,,"4624.500000","6034.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.149583",,"31.149583",,"31.149583",,,,,,,"1854.791667",,,,,"6231.000000",,"2.888889",,"800.600000",,,,"58.514286","0.933333","0.133333","1.155556","65.111111","0.000000","691.407407","0.000000","8.629630","681.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.625000","1500.375000",,,,,"0.000000","0.000000",,,"3942.875000","5165.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.168333",,"34.168333",,"34.168333",,,,,,,"1540.291667",,,,,"6834.458333",,"2.577778",,"657.644444",,,,"1816.714286","0.844444","0.133333","1.311111","52.755556","0.000000","575.777778","0.000000","8.370370","566.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1268.750000",,,,,"0.000000","0.000000",,,"3332.500000","4276.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.174167",,"33.174167",,"33.174167",,,,,,,"1695.416667",,,,,"6635.791667",,"3.088889",,"667.644444",,,,"2403.057143","1.022222","0.177778","1.022222","53.400000","0.000000","588.148148","0.000000","9.703704","576.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","1251.250000",,,,,"0.000000","0.000000",,,"3253.250000","4200.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.559583",,"31.559583",,"31.559583",,,,,,,"953.291667",,,,,"6312.833333",,"2.955556",,"845.622222",,,,"1480.371429","0.755556","0.244444","2.333333","61.888889","0.000000","657.518519","0.000000","7.666667","648.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"69.250000","1544.125000",,,,,"0.000000","0.000000",,,"4676.250000","5461.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.934167",,"32.934167",,"32.934167",,,,,,,"1100.458333",,,,,"6587.875000",,"8.666667",,"745.733333",,,,"1498.400000","1.933333","1.088889","1.044444","66.422222","0.000000","729.777778","0.000000","19.740741","708.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.750000","1483.375000",,,,,"0.000000","0.000000",,,"4103.625000","5163.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.075000",,"30.075000",,"30.075000",,,,,,,"1260.750000",,,,,"6015.833333",,"3.155556",,"802.888889",,,,"1296.457143","0.933333","0.088889","2.400000","69.555556","0.000000","745.592593","0.000000","9.148148","734.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.500000","10.428571",,,,,"0.000000","0.000000",,,"3867.250000","5102.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.748333",,"31.748333",,"31.748333",,,,,,,"1287.333333",,,,,"6350.500000",,"93.888889",,"968.666667",,,,"837.028571","3.911111","0.444444","1.533333","77.088889","0.000000","855.555556","0.000000","41.740741","812.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"45.875000","1685.125000",,,,,"0.000000","0.000000",,,"4430.000000","5954.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.010000",,"30.010000",,"30.010000",,,,,,,"2276.333333",,,,,"6002.916667",,"839.888889",,"1663.400000",,,,"87.314286","22.066667","0.311111","3.177778","77.355556","0.000000","1063.222222","0.000000","244.148148","817.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1770.250000","3272.250000",,,,,"0.000000","0.000000",,,"11430.625000","12084.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.455000",,"28.455000",,"28.455000",,,,,,,"1816.750000",,,,,"5692.083333",,"78.844444",,"831.177778",,,,"76.171429","18.288889","0.266667","1.155556","68.244444","0.000000","927.518519","0.000000","200.555556","724.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"170.750000","1661.750000",,,,,"0.000000","0.000000",,,"5195.125000","6927.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.411667",,"28.411667",,"28.411667",,,,,,,"2500.041667",,,,,"5683.083333",,"50.577778",,"801.755556",,,,"68.457143","12.266667","0.511111","1.266667","66.155556","0.000000","848.370370","0.000000","134.370370","712.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"313.500000","1490.875000",,,,,"0.000000","0.000000",,,"6999.375000","5901.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.591667",,"29.591667",,"29.591667",,,,,,,"1833.708333",,,,,"5919.166667",,"2.466667",,"2215.866667",,,,"73.771429","0.977778","0.577778","5.333333","81.600000","0.000000","849.333333","0.000000","9.185185","838.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2589.875000","4286.500000",,,,,"0.000000","0.000000",,,"44002.375000","15611.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.555000",,"28.555000",,"28.555000",,,,,,,"2332.750000",,,,,"5711.708333",,"2.777778",,"2244.644444",,,,"62.971429","0.933333","0.155556","6.666667","69.755556","0.000000","732.185185","0.000000","8.703704","722.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"2059.250000","4414.500000",,,,,"0.000000","0.000000",,,"39366.625000","17783.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.111667",,"30.111667",,"30.111667",,,,,,,"1826.958333",,,,,"6023.500000",,"3.377778",,"3284.600000",,,,"80.600000","0.977778","0.666667","3.733333","89.466667","0.000000","937.814815","0.000000","9.444444","927.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1286.625000","5965.500000",,,,,"0.000000","0.000000",,,"28162.750000","17576.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.715833",,"29.715833",,"29.715833",,,,,,,"2492.666667",,,,,"5944.250000",,"48.688889",,"1402.777778",,,,"82.942857","10.511111","0.711111","2.355556","83.888889","0.000000","1009.074074","0.000000","115.814815","891.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1178.500000","2944.375000",,,,,"0.000000","0.000000",,,"21345.875000","10680.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"34.078333",,"34.078333",,"34.078333",,,,,,,"1127.125000",,,,,"6816.583333",,"29.533333",,"2529.266667",,,,"71.628571","3.244444","0.911111","5.200000","76.266667","0.000000","815.148148","0.000000","36.000000","775.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"1159.750000","21.714286",,,,,"0.000000","0.000000",,,"23473.500000","14184.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.000000",,"33.000000",,"33.000000",,,,,,,"1680.916667",,,,,"6601.000000",,"3.333333",,"1331.155556",,,,"68.171429","0.888889","0.600000","2.044444","75.911111","0.000000","804.592593","0.000000","9.148148","794.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.625000","2738.375000",,,,,"0.000000","0.000000",,,"6028.250000","8233.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.597083",,"30.597083",,"30.597083",,,,,,,"1134.916667",,,,,"6120.583333",,"4.311111",,"686.288889",,,,"1505.257143","1.111111","1.266667","2.311111","54.644444","0.000000","596.703704","0.000000","12.481481","582.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.000000","1285.000000",,,,,"0.000000","0.000000",,,"3351.500000","4390.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.371667",,"35.371667",,"35.371667",,,,,,,"385.416667",,,,,"7075.250000",,"6.355556",,"774.644444",,,,"1871.942857","0.977778","0.133333","0.844444","62.755556","0.000000","677.037037","0.000000","9.407407","666.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.125000","1474.375000",,,,,"0.000000","0.000000",,,"3813.875000","5180.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.002500",,"33.002500",,"33.002500",,,,,,,"318.750000",,,,,"6601.625000",,"10.088889",,"855.600000",,,,"1426.600000","2.355556","0.244444","1.222222","66.644444","0.000000","727.185185","0.000000","20.925926","701.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"60.250000","1594.250000",,,,,"0.000000","0.000000",,,"4575.000000","5659.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"33.398333",,"33.398333",,"33.398333",,,,,,,"471.291667",,,,,"6680.541667",,"2.622222",,"706.777778",,,,"1365.942857","0.888889","0.133333","1.000000","49.955556","0.000000","553.740741","0.000000","8.296296","543.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.000000","1350.375000",,,,,"0.000000","0.000000",,,"3569.875000","4521.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"38.337917",,"38.337917",,"38.337917",,,,,,,"748.541667",,,,,"7668.541667",,"3.111111",,"780.555556",,,,"1466.657143","0.933333","0.088889","1.400000","66.644444","0.000000","718.407407","0.000000","8.962963","708.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.750000","1533.625000",,,,,"0.000000","0.000000",,,"4392.250000","5788.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.012917",,"32.012917",,"32.012917",,,,,,,"940.041667",,,,,"6403.625000",,"3.133333",,"780.711111",,,,"1211.857143","0.933333","0.177778","1.155556","64.688889","0.000000","695.962963","0.000000","9.148148","685.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.250000","1677.625000",,,,,"0.000000","0.000000",,,"6891.375000","8580.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.025833",,"29.025833",,"29.025833",,,,,,,"2310.000000",,,,,"5806.208333",,"2.844444",,"878.422222",,,,"532.285714","0.844444","0.133333","1.466667","71.866667","0.000000","778.777778","0.000000","8.111111","769.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"78.375000","1773.375000",,,,,"0.000000","0.000000",,,"6653.250000","7744.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.813750",,"30.813750",,"30.813750",,,,,,,"1670.041667",,,,,"6163.750000",,"2.711111",,"955.288889",,,,"76.857143","0.844444","0.088889","1.111111","86.000000","0.000000","910.777778","0.000000","8.000000","901.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"33.375000","1742.000000",,,,,"0.000000","0.000000",,,"4622.250000","6201.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.061667",,"30.061667",,"30.061667",,,,,,,"1918.333333",,,,,"6013.333333",,"3.133333",,"871.444444",,,,"69.228571","0.888889","1.000000","0.955556","77.555556","0.000000","829.555556","0.000000","8.666667","819.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1799.625000",,,,,"0.000000","0.000000",,,"6847.875000","8292.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.050833",,"27.050833",,"27.050833",,,,,,,"2461.041667",,,,,"5411.291667",,"6.288889",,"778.355556",,,,"63.342857","1.244444","0.244444","1.133333","70.511111","0.000000","761.074074","0.000000","12.222222","747.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","1607.250000",,,,,"0.000000","0.000000",,,"6460.500000","7611.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.396667",,"30.396667",,"30.396667",,,,,,,"1823.208333",,,,,"6080.291667",,"4.755556",,"911.222222",,,,"72.657143","1.200000","0.333333","3.555556","80.266667","0.000000","845.296296","0.000000","11.185185","832.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.625000","1716.750000",,,,,"0.000000","0.000000",,,"4594.625000","5944.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.520000",,"28.520000",,"28.520000",,,,,,,"2259.125000",,,,,"5705.000000",,"147.288889",,"816.822222",,,,"67.228571","3.088889","0.333333","1.111111","73.200000","0.000000","809.851852","0.000000","32.666667","775.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"76.000000","1508.750000",,,,,"0.000000","0.000000",,,"4714.875000","5707.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.341250",,"27.341250",,"27.341250",,,,,,,"2862.458333",,,,,"5469.250000",,"3.266667",,"1302.022222",,,,"67.571429","0.933333","0.222222","2.200000","75.866667","0.000000","817.407407","0.000000","9.037037","807.185185",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"262.875000","11.571429",,,,,"0.000000","0.000000",,,"6388.375000","7902.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.151667",,"35.151667",,"35.151667",,,,,,,"1238.083333",,,,,"7031.416667",,"22.022222",,"986.511111",,,,"74.800000","2.044444","0.222222","1.288889","81.355556","0.000000","862.925926","0.000000","22.518519","836.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"67.000000","1850.500000",,,,,"0.000000","0.000000",,,"4897.375000","6423.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.833750",,"29.833750",,"29.833750",,,,,,,"1607.583333",,,,,"5967.625000",,"8.444444",,"850.800000",,,,"63.285714","1.555556","0.311111","1.266667","69.377778","0.000000","739.074074","0.000000","13.888889","722.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"25.500000","1596.250000",,,,,"0.000000","0.000000",,,"4254.500000","5428.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.653750",,"29.653750",,"29.653750",,,,,,,"2351.625000",,,,,"5931.791667",,"3.688889",,"772.488889",,,,"2176.542857","0.755556","0.133333","1.066667","67.577778","0.000000","734.370370","0.000000","7.925926","725.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1420.250000",,,,,"0.000000","0.000000",,,"3947.000000","4949.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.793750",,"31.793750",,"31.793750",,,,,,,"1689.333333",,,,,"6359.625000",,"3.022222",,"956.711111",,,,"2378.857143","0.844444","0.155556","1.155556","72.822222","0.000000","782.703704","0.000000","8.222222","773.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.375000","1824.250000",,,,,"0.000000","0.000000",,,"4660.000000","6084.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.185833",,"35.185833",,"35.185833",,,,,,,"1006.750000",,,,,"7038.291667",,"2.977778",,"1001.800000",,,,"1682.428571","0.933333","0.377778","1.400000","79.644444","0.000000","846.037037","0.000000","8.740741","835.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"79.125000","1895.875000",,,,,"0.000000","0.000000",,,"5729.500000","6730.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"29.486250",,"29.486250",,"29.486250",,,,,,,"2281.541667",,,,,"5898.166667",,"2.600000",,"817.244444",,,,"1808.971429","0.800000","0.177778","1.155556","77.244444","0.000000","839.000000","0.000000","8.037037","829.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.375000","1508.125000",,,,,"0.000000","0.000000",,,"4106.625000","5500.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.737917",,"32.737917",,"32.737917",,,,,,,"1318.458333",,,,,"6548.500000",,"3.666667",,"814.288889",,,,"1264.942857","0.955556","0.222222","1.733333","66.133333","0.000000","711.111111","0.000000","9.629630","700.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","1588.375000",,,,,"0.000000","0.000000",,,"4145.250000","5561.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.037500",,"30.037500",,"30.037500",,,,,,,"1938.291667",,,,,"6008.625000",,"2.911111",,"826.888889",,,,"66.771429","0.844444","0.133333","1.155556","74.644444","0.000000","795.629630","0.000000","8.185185","786.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.875000","1540.125000",,,,,"0.000000","0.000000",,,"4343.500000","5458.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.982500",,"25.982500",,"25.982500",,,,,,,"3138.875000",,,,,"5197.500000",,"3.688889",,"834.333333",,,,"69.742857","0.777778","0.200000","0.688889","78.288889","0.000000","839.629630","0.000000","8.037037","830.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.000000","1603.750000",,,,,"0.000000","0.000000",,,"4754.000000","6039.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.836250",,"31.836250",,"31.836250",,,,,,,"1522.583333",,,,,"6368.333333",,"2.888889",,"827.800000",,,,"56.885714","0.844444","0.288889","2.266667","63.533333","0.000000","679.962963","0.000000","8.111111","670.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"37.125000","1715.625000",,,,,"0.000000","0.000000",,,"7846.625000","9012.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.947917",,"28.947917",,"28.947917",,,,,,,"2074.791667",,,,,"5790.333333",,"3.400000",,"750.400000",,,,"57.542857","1.044444","0.600000","0.933333","64.377778","0.000000","703.000000","0.000000","10.407407","691.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.500000","1501.250000",,,,,"0.000000","0.000000",,,"4575.250000","5826.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.134583",,"25.134583",,"25.134583",,,,,,,"3087.250000",,,,,"5028.083333",,"2.911111",,"728.800000",,,,"60.885714","0.844444","0.088889","1.111111","67.555556","0.000000","710.000000","0.000000","8.000000","700.740741",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.125000","1347.375000",,,,,"0.000000","0.000000",,,"3774.875000","4760.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.408750",,"32.408750",,"32.408750",,,,,,,"1631.333333",,,,,"6482.791667",,"3.377778",,"763.666667",,,,"55.342857","0.844444","0.177778","1.133333","61.844444","0.000000","667.703704","0.000000","8.666667","657.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"27.625000","1453.625000",,,,,"0.000000","0.000000",,,"4052.625000","5108.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.552917",,"32.552917",,"32.552917",,,,,,,"1410.416667",,,,,"6511.541667",,"8.555556",,"873.955556",,,,"67.257143","1.466667","0.266667","1.266667","74.177778","0.000000","792.407407","0.000000","13.407407","776.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"32.500000","1585.000000",,,,,"0.000000","0.000000",,,"4488.750000","5543.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.477917",,"27.477917",,"27.477917",,,,,,,"2718.041667",,,,,"5496.375000",,"3.511111",,"728.333333",,,,"56.600000","1.022222","0.155556","0.977778","63.222222","0.000000","686.703704","0.000000","9.888889","675.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","1410.125000",,,,,"0.000000","0.000000",,,"3838.000000","4916.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"31.341250",,"31.341250",,"31.341250",,,,,,,"1204.708333",,,,,"6269.291667",,"22.244444",,"1012.444444",,,,"57.114286","1.911111","0.844444","1.577778","61.866667","0.000000","669.222222","0.000000","21.592593","643.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"65.250000","27.571429",,,,,"0.000000","0.000000",,,"4484.750000","6083.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.920417",,"30.920417",,"30.920417",,,,,,,"775.583333",,,,,"6185.208333",,"3.355556",,"926.422222",,,,"44.971429","0.955556","0.844444","4.911111","49.222222","0.000000","512.333333","0.000000","8.962963","502.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","1813.250000",,,,,"0.000000","0.000000",,,"4092.875000","5454.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.404167",,"32.404167",,"32.404167",,,,,,,"1014.166667",,,,,"6481.875000",,"12.311111",,"804.377778",,,,"1658.571429","1.444444","0.622222","3.111111","63.444444","0.000000","684.296296","0.000000","17.222222","665.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.875000","1605.875000",,,,,"0.000000","0.000000",,,"4137.875000","5451.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.302083",,"32.302083",,"32.302083",,,,,,,"575.833333",,,,,"6461.333333",,"3.133333",,"651.155556",,,,"1839.942857","0.933333","0.777778","1.155556","50.666667","0.000000","549.444444","0.000000","8.777778","539.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.625000","1151.250000",,,,,"0.000000","0.000000",,,"3005.125000","3937.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"35.322083",,"35.322083",,"35.322083",,,,,,,"549.625000",,,,,"7065.625000",,"2.955556",,"853.377778",,,,"1553.742857","0.844444","1.200000","1.288889","63.688889","0.000000","673.777778","0.000000","8.296296","664.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.125000","1679.250000",,,,,"0.000000","0.000000",,,"4901.375000","5783.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.864167",,"28.864167",,"28.864167",,,,,,,"2372.125000",,,,,"5773.750000",,"3.422222",,"525.822222",,,,"1845.142857","0.800000","0.733333","1.533333","40.155556","0.000000","408.296296","0.000000","8.148148","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.000000","947.875000",,,,,"0.000000","0.000000",,,"2498.500000","3216.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.451250",,"26.451250",,"26.451250",,,,,,,"2704.958333",,,,,"5291.250000",,"4.933333",,"1069.311111",,,,"1604.457143","1.311111","0.311111","1.577778","53.644444","0.000000","561.222222","0.000000","13.962963","546.000000",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"34.625000","2144.500000",,,,,"0.000000","0.000000",,,"6584.500000","8275.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.121250",,"25.121250",,"25.121250",,,,,,,"2822.208333",,,,,"5025.291667",,"18.400000",,"552.822222",,,,"777.714286","1.888889","0.288889","1.666667","47.177778","0.000000","490.407407","0.000000","19.370370","469.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"70.000000","1283.875000",,,,,"0.000000","0.000000",,,"6367.125000","8245.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.812083",,"22.812083",,"22.812083",,,,,,,"4040.666667",,,,,"4563.166667",,"3.444444",,"448.888889",,,,"36.600000","1.022222","0.133333","1.200000","39.155556","0.000000","402.518519","0.000000","9.740741","391.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.500000","843.125000",,,,,"0.000000","0.000000",,,"2391.625000","3147.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.550833",,"24.550833",,"24.550833",,,,,,,"4018.583333",,,,,"4911.041667",,"9.333333",,"417.822222",,,,"40.514286","2.000000","0.133333","0.933333","42.044444","0.000000","440.185185","0.000000","18.074074","418.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.375000","773.000000",,,,,"0.000000","0.000000",,,"2304.500000","2846.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.255417",,"22.255417",,"22.255417",,,,,,,"4698.041667",,,,,"4451.916667",,"3.311111",,"316.044444",,,,"28.600000","0.844444","0.177778","1.044444","30.866667","0.000000","324.074074","0.000000","8.037037","314.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","576.750000",,,,,"0.000000","0.000000",,,"1798.375000","2150.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.390833",,"22.390833",,"22.390833",,,,,,,"4463.041667",,,,,"4478.916667",,"4.111111",,"328.444444",,,,"32.142857","0.933333","0.088889","0.888889","34.555556","0.000000","357.333333","0.000000","8.592593","347.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","618.500000",,,,,"0.000000","0.000000",,,"1935.500000","2339.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.926250",,"22.926250",,"22.926250",,,,,,,"4142.458333",,,,,"4586.541667",,"4.400000",,"429.888889",,,,"40.885714","1.000000","0.222222","0.822222","43.755556","0.000000","444.740741","0.000000","9.740741","433.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","792.125000",,,,,"0.000000","0.000000",,,"2370.250000","2891.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.670000",,"25.670000",,"25.670000",,,,,,,"4274.166667",,,,,"5134.666667",,"3.066667",,"454.711111",,,,"44.428571","0.844444","0.333333","0.800000","48.022222","0.000000","488.407407","0.000000","8.259259","478.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","787.625000",,,,,"0.000000","0.000000",,,"2393.250000","3008.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.218750",,"23.218750",,"23.218750",,,,,,,"4665.208333",,,,,"4644.583333",,"3.377778",,"330.466667",,,,"27.400000","0.933333","0.133333","1.177778","29.177778","0.000000","303.481481","0.000000","8.814815","293.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.625000","537.625000",,,,,"0.000000","0.000000",,,"1730.375000","2085.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.106667",,"23.106667",,"23.106667",,,,,,,"4031.125000",,,,,"4622.208333",,"22.311111",,"711.066667",,,,"38.771429","2.022222","0.088889","1.622222","40.177778","0.000000","425.444444","0.000000","22.555556","398.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.750000","1465.750000",,,,,"0.000000","0.000000",,,"3581.875000","4638.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.040417",,"28.040417",,"28.040417",,,,,,,"3055.708333",,,,,"5609.416667",,"3.377778",,"522.133333",,,,"45.285714","1.111111","0.177778","1.022222","48.711111","0.000000","495.962963","0.000000","10.148148","484.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.625000","967.500000",,,,,"0.000000","0.000000",,,"2865.750000","3621.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.262083",,"21.262083",,"21.262083",,,,,,,"4511.083333",,,,,"4253.416667",,"3.911111",,"299.377778",,,,"1994.485714","0.866667","0.244444","0.933333","23.000000","0.000000","242.666667","0.000000","8.555556","232.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","597.125000",,,,,"0.000000","0.000000",,,"2550.875000","3009.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.385000",,"24.385000",,"24.385000",,,,,,,"4324.958333",,,,,"4878.041667",,"3.088889",,"252.022222",,,,"2961.371429","0.844444","0.200000","1.088889","24.088889","0.000000","252.592593","0.000000","8.296296","242.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.875000","668.000000",,,,,"0.000000","0.000000",,,"5413.000000","5703.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.927917",,"28.927917",,"28.927917",,,,,,,"3277.666667",,,,,"5786.458333",,"3.622222",,"601.200000",,,,"2216.371429","0.866667","0.177778","1.711111","47.177778","0.000000","494.629630","0.000000","8.851852","484.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.625000","1135.250000",,,,,"0.000000","0.000000",,,"3768.250000","4117.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.540833",,"26.540833",,"26.540833",,,,,,,"3469.208333",,,,,"5309.125000",,"18.688889",,"499.777778",,,,"1735.285714","1.977778","0.222222","0.777778","49.866667","0.000000","532.370370","0.000000","19.555556","510.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"40.500000","947.500000",,,,,"0.000000","0.000000",,,"2813.375000","3731.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.020417",,"23.020417",,"23.020417",,,,,,,"4317.541667",,,,,"4605.041667",,"4.155556",,"439.266667",,,,"251.200000","0.955556","0.133333","0.933333","40.111111","0.000000","426.370370","0.000000","9.296296","415.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.375000","808.125000",,,,,"0.000000","0.000000",,,"2370.625000","2977.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.820417",,"22.820417",,"22.820417",,,,,,,"4684.416667",,,,,"4565.083333",,"3.511111",,"468.577778",,,,"41.457143","1.022222","0.133333","0.755556","44.955556","0.000000","470.592593","0.000000","9.629630","459.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.000000","835.250000",,,,,"0.000000","0.000000",,,"2458.000000","3103.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.700417",,"21.700417",,"21.700417",,,,,,,"4974.625000",,,,,"4341.000000",,"3.444444",,"334.955556",,,,"31.085714","0.933333","0.088889","0.911111","33.444444","0.000000","349.222222","0.000000","8.740741","339.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","664.250000",,,,,"0.000000","0.000000",,,"2103.250000","2671.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.388333",,"19.388333",,"19.388333",,,,,,,"5157.041667",,,,,"3878.416667",,"2.866667",,"331.111111",,,,"31.257143","0.888889","0.088889","0.911111","33.466667","0.000000","347.777778","0.000000","8.851852","337.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","648.625000",,,,,"0.000000","0.000000",,,"2018.375000","2517.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.821250",,"20.821250",,"20.821250",,,,,,,"4882.625000",,,,,"4165.541667",,"3.755556",,"428.866667",,,,"39.628571","0.955556","0.177778","1.066667","42.733333","0.000000","441.222222","0.000000","9.407407","430.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","745.875000",,,,,"0.000000","0.000000",,,"2245.125000","2736.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.332500",,"20.332500",,"20.332500",,,,,,,"5124.375000",,,,,"4067.250000",,"3.777778",,"389.533333",,,,"37.771429","0.866667","0.422222","0.666667","40.644444","0.000000","417.148148","0.000000","8.703704","406.962963",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","726.625000",,,,,"0.000000","0.000000",,,"2221.375000","2682.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.732500",,"19.732500",,"19.732500",,,,,,,"5277.000000",,,,,"3947.375000",,"2.444444",,"356.533333",,,,"33.542857","0.933333","0.222222","0.577778","36.022222","0.000000","371.629630","0.000000","8.407407","361.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"14.375000","688.500000",,,,,"0.000000","0.000000",,,"2068.250000","2572.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.907083",,"18.907083",,"18.907083",,,,,,,"5005.208333",,,,,"3782.541667",,"3.688889",,"399.088889",,,,"36.742857","0.955556","0.355556","0.955556","39.777778","0.000000","412.074074","0.000000","8.925926","401.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"24.875000","855.000000",,,,,"0.000000","0.000000",,,"4384.125000","4844.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.850417",,"19.850417",,"19.850417",,,,,,,"4846.750000",,,,,"3970.708333",,"2.600000",,"382.266667",,,,"36.428571","0.933333","0.088889","0.888889","39.222222","0.000000","402.518519","0.000000","8.444444","392.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.750000","184.857143",,,,,"0.000000","0.000000",,,"4871.000000","5392.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"32.644167",,"32.644167",,"32.644167",,,,,,,"2276.541667",,,,,"6529.958333",,"27.666667",,"453.911111",,,,"34.828571","2.377778","0.111111","1.155556","36.222222","0.000000","408.518519","0.000000","25.259259","378.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"53.875000","832.375000",,,,,"0.000000","0.000000",,,"2430.125000","2992.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"30.033333",,"30.033333",,"30.033333",,,,,,,"2902.500000",,,,,"6007.666667",,"3.888889",,"627.688889",,,,"45.828571","1.022222","0.133333","2.266667","50.288889","0.000000","534.814815","0.000000","10.074074","523.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.250000","1216.000000",,,,,"0.000000","0.000000",,,"3295.125000","4802.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.760833",,"24.760833",,"24.760833",,,,,,,"4648.333333",,,,,"4953.083333",,"3.711111",,"163.200000",,,,"2598.342857","0.933333","0.133333","1.311111","14.466667","0.000000","169.074074","0.000000","9.296296","158.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"13.125000","344.750000",,,,,"0.000000","0.000000",,,"1145.500000","1842.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.272083",,"23.272083",,"23.272083",,,,,,,"4352.625000",,,,,"4655.333333",,"3.111111",,"112.888889",,,,"2558.228571","0.844444","0.088889","3.711111","7.977778","0.000000","96.740741","0.000000","8.407407","86.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"11.875000","243.250000",,,,,"0.000000","0.000000",,,"859.000000","1164.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.639167",,"23.639167",,"23.639167",,,,,,,"4382.666667",,,,,"4728.583333",,"3.466667",,"191.755556",,,,"2051.714286","0.755556","0.155556","0.800000","12.711111","0.000000","145.000000","0.000000","8.037037","135.629630",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"59.250000","366.125000",,,,,"0.000000","0.000000",,,"1871.000000","1665.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.453333",,"24.453333",,"24.453333",,,,,,,"4011.000000",,,,,"4891.625000",,"3.200000",,"520.244444",,,,"1856.257143","0.933333","0.377778","1.177778","46.555556","0.000000","483.259259","0.000000","8.740741","473.111111",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.125000","965.750000",,,,,"0.000000","0.000000",,,"2767.500000","3457.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.415833",,"19.415833",,"19.415833",,,,,,,"4672.458333",,,,,"3884.083333",,"3.288889",,"457.355556",,,,"42.314286","0.933333","0.577778","1.488889","46.133333","0.000000","482.185185","0.000000","9.000000","471.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.375000","830.875000",,,,,"0.000000","0.000000",,,"2505.125000","3053.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.596667",,"19.596667",,"19.596667",,,,,,,"5570.583333",,,,,"3920.291667",,"3.600000",,"333.911111",,,,"31.342857","0.933333","0.177778","1.666667","33.777778","0.000000","353.925926","0.000000","9.000000","343.444444",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.250000","636.000000",,,,,"0.000000","0.000000",,,"1952.625000","2377.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.889167",,"21.889167",,"21.889167",,,,,,,"4982.875000",,,,,"4379.041667",,"3.088889",,"453.888889",,,,"45.285714","0.844444","0.177778","0.711111","49.066667","0.000000","498.777778","0.000000","8.370370","489.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"22.625000","796.625000",,,,,"0.000000","0.000000",,,"2519.250000","3130.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.477083",,"19.477083",,"19.477083",,,,,,,"5169.333333",,,,,"3896.375000",,"2.888889",,"365.555556",,,,"34.171429","0.888889","0.133333","0.955556","36.777778","0.000000","380.185185","0.000000","8.407407","370.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.875000","836.125000",,,,,"0.000000","0.000000",,,"4260.000000","4784.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.681667",,"19.681667",,"19.681667",,,,,,,"4811.208333",,,,,"3937.416667",,"3.577778",,"365.933333",,,,"36.828571","0.933333","0.088889","0.866667","39.466667","0.000000","401.444444","0.000000","8.888889","391.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","822.625000",,,,,"0.000000","0.000000",,,"4842.000000","5380.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.451667",,"22.451667",,"22.451667",,,,,,,"4657.416667",,,,,"4491.416667",,"8.933333",,"989.200000",,,,"48.942857","1.466667","0.400000","2.000000","52.311111","0.000000","539.666667","0.000000","13.370370","523.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"30.125000","1852.000000",,,,,"0.000000","0.000000",,,"4468.250000","5832.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.670417",,"20.670417",,"20.670417",,,,,,,"4318.000000",,,,,"4135.083333",,"4.222222",,"365.200000",,,,"29.057143","0.955556","0.088889","1.422222","31.222222","0.000000","329.777778","0.000000","8.962963","319.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.875000","672.625000",,,,,"0.000000","0.000000",,,"1964.250000","2379.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.848333",,"21.848333",,"21.848333",,,,,,,"4754.458333",,,,,"4370.666667",,"3.488889",,"416.133333",,,,"33.628571","0.755556","0.088889","1.311111","36.577778","0.000000","385.370370","0.000000","7.888889","376.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.250000","774.500000",,,,,"0.000000","0.000000",,,"2277.875000","2721.875000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.132500",,"20.132500",,"20.132500",,,,,,,"4891.333333",,,,,"4027.625000",,"2.511111",,"414.666667",,,,"37.742857","0.844444","0.088889","2.288889","40.933333","0.000000","423.481481","0.000000","7.888889","414.259259",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"15.250000","759.375000",,,,,"0.000000","0.000000",,,"2231.375000","2711.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.042500",,"19.042500",,"19.042500",,,,,,,"5084.208333",,,,,"3809.416667",,"22.577778",,"357.044444",,,,"34.028571","1.933333","0.088889","0.866667","35.422222","0.000000","386.259259","0.000000","21.592593","360.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.875000","671.125000",,,,,"0.000000","0.000000",,,"2145.500000","2604.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.792500",,"22.792500",,"22.792500",,,,,,,"3789.166667",,,,,"4559.541667",,"3.333333",,"574.711111",,,,"48.800000","0.844444","0.555556","2.177778","53.400000","0.000000","557.148148","0.000000","8.296296","547.518519",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"31.750000","1290.500000",,,,,"0.000000","0.000000",,,"6051.125000","7196.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"17.390417",,"17.390417",,"17.390417",,,,,,,"5659.458333",,,,,"3478.958333",,"3.844444",,"162.977778",,,,"2511.142857","0.955556","0.088889","2.533333","8.644444","0.000000","100.518519","0.000000","8.888889","90.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"20.125000","444.625000",,,,,"0.000000","0.000000",,,"2839.625000","3327.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"23.985833",,"23.985833",,"23.985833",,,,,,,"3771.666667",,,,,"4798.208333",,"3.333333",,"433.133333",,,,"2620.000000","0.844444","0.177778","0.955556","44.466667","0.000000","458.925926","0.000000","8.481481","449.037037",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.875000","795.250000",,,,,"0.000000","0.000000",,,"2395.375000","2897.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.147500",,"25.147500",,"25.147500",,,,,,,"3449.375000",,,,,"5030.291667",,"4.000000",,"474.977778",,,,"2032.428571","0.955556","0.133333","1.822222","48.311111","0.000000","488.185185","0.000000","9.074074","477.703704",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"68.125000","890.750000",,,,,"0.000000","0.000000",,,"3437.375000","3818.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.130417",,"26.130417",,"26.130417",,,,,,,"3912.291667",,,,,"5227.291667",,"3.555556",,"546.422222",,,,"1902.000000","0.755556","0.088889","2.533333","47.333333","0.000000","480.481481","0.000000","7.814815","471.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"23.125000","1012.250000",,,,,"0.000000","0.000000",,,"2820.625000","3614.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.012917",,"21.012917",,"21.012917",,,,,,,"4422.583333",,,,,"4203.416667",,"3.666667",,"468.777778",,,,"105.428571","0.933333","0.133333","6.933333","48.444444","0.000000","498.925926","0.000000","9.370370","488.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"36.250000","1061.125000",,,,,"0.000000","0.000000",,,"6045.125000","6859.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"18.842083",,"18.842083",,"18.842083",,,,,,,"4652.875000",,,,,"3769.333333",,"3.733333",,"403.377778",,,,"38.285714","0.933333","0.088889","4.244444","41.244444","0.000000","424.000000","0.000000","9.333333","413.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"26.500000","832.625000",,,,,"0.000000","0.000000",,,"3866.500000","4384.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.010417",,"21.010417",,"21.010417",,,,,,,"5120.166667",,,,,"4203.166667",,"8.111111",,"407.933333",,,,"39.428571","1.555556","0.088889","1.622222","42.111111","0.000000","447.000000","0.000000","13.518519","430.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.125000","744.875000",,,,,"0.000000","0.000000",,,"2250.125000","2797.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.200000",,"20.200000",,"20.200000",,,,,,,"4722.708333",,,,,"4040.875000",,"4.288889",,"549.155556",,,,"40.542857","1.133333","0.133333","2.711111","44.022222","0.000000","465.629630","0.000000","10.666667","453.407407",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.750000","1017.125000",,,,,"0.000000","0.000000",,,"2748.875000","3460.375000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.990417",,"20.990417",,"20.990417",,,,,,,"4582.750000",,,,,"4198.666667",,"3.577778",,"437.977778",,,,"42.342857","0.844444","0.133333","2.844444","45.844444","0.000000","470.592593","0.000000","8.407407","460.851852",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.250000","802.750000",,,,,"0.000000","0.000000",,,"2460.250000","3028.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.747500",,"22.747500",,"22.747500",,,,,,,"4071.875000",,,,,"4550.541667",,"3.088889",,"464.311111",,,,"41.142857","0.844444","0.088889","1.066667","44.066667","0.000000","440.111111","0.000000","8.185185","430.666667",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"21.625000","857.250000",,,,,"0.000000","0.000000",,,"2492.250000","3075.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"19.713750",,"19.713750",,"19.713750",,,,,,,"4839.208333",,,,,"3943.750000",,"3.622222",,"389.844444",,,,"36.685714","0.977778","0.133333","1.466667","38.888889","0.000000","390.111111","0.000000","9.333333","379.296296",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.500000","714.000000",,,,,"0.000000","0.000000",,,"2135.750000","2635.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.062500",,"21.062500",,"21.062500",,,,,,,"5098.583333",,,,,"4213.583333",,"4.000000",,"353.933333",,,,"34.314286","0.955556","0.133333","0.844444","36.400000","0.000000","367.740741","0.000000","9.518519","356.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"19.875000","656.000000",,,,,"0.000000","0.000000",,,"2067.750000","2605.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"20.229167",,"20.229167",,"20.229167",,,,,,,"5227.708333",,,,,"4046.708333",,"4.111111",,"355.111111",,,,"33.714286","1.111111","0.088889","1.355556","35.800000","0.000000","367.333333","0.000000","10.370370","355.481481",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.125000","651.750000",,,,,"0.000000","0.000000",,,"1999.375000","2461.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.282500",,"24.282500",,"24.282500",,,,,,,"3031.916667",,,,,"4857.416667",,"21.266667",,"473.577778",,,,"43.342857","1.911111","0.200000","1.266667","45.111111","0.000000","465.555556","0.000000","20.962963","440.814815",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"52.125000","865.000000",,,,,"0.000000","0.000000",,,"2582.875000","3175.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.178750",,"25.178750",,"25.178750",,,,,,,"3900.000000",,,,,"5036.666667",,"3.977778",,"1013.777778",,,,"41.400000","0.955556","0.088889","4.066667","44.177778","0.000000","440.222222","0.000000","9.518519","429.370370",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"29.875000","15.714286",,,,,"0.000000","0.000000",,,"4154.375000","5611.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"28.437083",,"28.437083",,"28.437083",,,,,,,"3638.250000",,,,,"5688.375000",,"4.111111",,"373.711111",,,,"2527.771429","0.955556","0.088889","1.377778","30.044444","0.000000","311.259259","0.000000","9.629630","300.148148",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.500000","690.375000",,,,,"0.000000","0.000000",,,"1967.625000","2452.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.992500",,"27.992500",,"27.992500",,,,,,,"2436.458333",,,,,"5599.416667",,"8.577778",,"393.066667",,,,"2317.057143","1.466667","0.133333","1.022222","36.933333","0.000000","386.592593","0.000000","13.629630","370.222222",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"28.125000","876.875000",,,,,"0.000000","0.000000",,,"5075.125000","5665.500000",,,,,,,,,,,,,,,,,,,,,,,,, +,"25.729583",,"25.729583",,"25.729583",,,,,,,"3772.458333",,,,,"5146.875000",,"3.866667",,"338.377778",,,,"2118.114286","0.777778","0.088889","1.066667","30.777778","0.000000","316.740741","0.000000","8.074074","307.333333",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"41.375000","718.750000",,,,,"0.000000","0.000000",,,"4018.750000","4291.250000",,,,,,,,,,,,,,,,,,,,,,,,, +,"27.221667",,"27.221667",,"27.221667",,,,,,,"3001.833333",,,,,"5445.416667",,"4.311111",,"559.244444",,,,"1728.000000","0.955556","0.088889","1.155556","39.400000","0.000000","408.851852","0.000000","9.296296","398.074074",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"54.125000","1064.875000",,,,,"0.000000","0.000000",,,"3247.625000","3960.125000",,,,,,,,,,,,,,,,,,,,,,,,, +,"24.568333",,"24.568333",,"24.568333",,,,,,,"3822.875000",,,,,"4914.708333",,"30.800000",,"519.644444",,,,"470.400000","2.155556","0.577778","1.333333","47.133333","0.000000","495.666667","0.000000","22.629630","471.777778",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"71.750000","956.500000",,,,,"0.000000","0.000000",,,"2842.250000","3512.750000",,,,,,,,,,,,,,,,,,,,,,,,, +,"22.550417",,"22.550417",,"22.550417",,,,,,,"4712.500000",,,,,"4511.041667",,"4.688889",,"322.711111",,,,"29.285714","0.955556","0.111111","0.977778","31.288889","0.000000","328.888889","0.000000","9.851852","317.555556",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"17.625000","605.375000",,,,,"0.000000","0.000000",,,"1876.125000","2323.000000",,,,,,,,,,,,,,,,,,,,,,,,, +,"21.582917",,"21.582917",,"21.582917",,,,,,,"4338.750000",,,,,"4317.333333",,"3.400000",,"379.088889",,,,"36.371429","1.022222","0.133333","1.266667","38.933333","0.000000","398.740741","0.000000","9.740741","387.592593",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"16.000000","699.750000",,,,,"0.000000","0.000000",,,"2141.375000","2700.625000",,,,,,,,,,,,,,,,,,,,,,,,, +,"26.396250",,"26.396250",,"26.396250",,,,,,,"3317.000000",,,,,"5280.041667",,"3.800000",,"417.822222",,,,"35.114286","0.955556","0.088889","1.088889","37.622222","0.000000","385.555556","0.000000","9.185185","374.888889",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"18.250000","775.250000",,,,,"0.000000","0.000000",,,"2226.125000","2770.625000",,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/splunk_eventgen/samples/vmware-actuals-host.csv b/splunk_eventgen/samples/vmware-actuals-host.csv new file mode 100644 index 00000000..905a7128 --- /dev/null +++ b/splunk_eventgen/samples/vmware-actuals-host.csv @@ -0,0 +1,2 @@ +"AvgUsg_mhz","AvgUsg_pct","MaxUsg_mhz","MaxUsg_pct","MinUsg_mhz","MinUsg_pct","SumRdy_ms","SumSwpWait_ms","AvgDemand_MHz","AvgLat_pct","Entitle_MHz","SumCostop_ms","SumIdle_ms","SumMaxLtd_ms","SumOverlap_ms","SumRun_ms","SumSys_ms","SumUsd_ms","SumWait_ms","AvgRd_KBps","AvgUsg_KBps","AvgWr_KBps","MaxUsg_KBps","MinUsg_KBps","MaxTotLat_ms",AvgCmds,AvgRd,"AvgTotRdLat_ms","AvgTotWrLat_ms",AvgWr,SumBusResets,SumCmds,SumCmdsAbort,SumRd,SumWr,"AvgActWr_KB","AvgAct_KB","AvgCmpd_KB","AvgCmpnRate_KBps","AvgConsum_KB","AvgDecmpnRate_KBps","AvgGrtd_KB","AvgOvrhdMax_KB","AvgOvrhd_KB","AvgShrd_KB","AvgSwpIRate_KBps","AvgSwpIn_KB","AvgSwpORate_KBps","AvgSwpOut_KB","AvgSwpTarg_KB","AvgSwpd_KB","AvgVmctlTarg_KB","AvgVmctl_KB","AvgZero_KB","MaxAct_KB","MaxConsum_KB","MaxGrtd_KB","MaxOvrhd_KB","MaxShrd_KB","MaxSwpIn_KB","MaxSwpOut_KB","MaxSwpTarg_KB","MaxSwpd_KB","MaxVmctlTarg_KB","MaxVmctl_KB","MaxZero_KB","MinAct_KB","MinConsum_KB","MinGrtd_KB","MinOvrhd_KB","MinShrd_KB","MinSwpIn_KB","MinSwpOut_KB","MinSwpTarg_KB","MinSwpd_KB","MinVmctlTarg_KB","MinVmctl_KB","MinZero_KB","ZipSaved_KB","Zipped_KB","AvgEntitle_KB","AvgLlSwapUsd_KB","AvgLlSwpIRate_KBps","AvgLlSwpORate_KBps","AvgOvrhdTouch_KB","AvgRvcd_KBps","AvgXmit_KBps","AvgBRx_KBps","AvgBTx_KBps",SumBroadcastRx,SumBroadcastTx,SumDropRx,SumDropTx,SumMulticastRx,SumMulticastTx,SumPktsRx,SumPktsTx,"SumEnergy_j","ActAvg15m_pct","ActAvg1m_pct","ActAvg5m_pct","ActPk15m_pct","ActPk1m_pct","ActPk5m_pct","MaxLtd15_pct","MaxLtd1_pct","MaxLtd5_pct","RunAvg15m_pct","RunAvg1m_pct","RunAvg5m_pct","RunPk15m_pct","RunPk1m_pct","RunPk5m_pct",SmplCnt,"SmplPrd_ms",SumHeartbeat,"Uptime_sec","OsUptime_sec",RdLoadMetric,RdOIO,WrLoadMetric,WrOIO +"18541.239130","32.019766","18541.239130","32.019766","18541.239130","32.019766",,,,,,,"2242.192935",,,,,"5808.996377",,"6.022360","2932.263736","62.349689","2932.263736","2932.263736","23.152174","355.736183","3.348771","0.904537","3.174543","5.590737","0.000000","121.281804","0.000000","43.718196","75.482287","2907027.826087","4960558.086957","1689211.739130","0.000000","77973470.260870","0.000000","135369925.826087",,"6709144.695652","62702811.217391","0.000000","6249914.173913","0.000000","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783","4960558.086957","77973470.260870","135369925.826087","6709144.695652","62702811.217391","6249914.173913","7809036.000000",,,,"9152448.000000","49620352.434783",,,,,,,,"433.638350","655.997585",,,,,"0.000000","0.000000",,,"11695.883152","6019.548913","4219.326087","908.260870","907.608696","904.739130","987.565217","981.000000","983.130435","0.000000","0.847826","0.000000","684.347826","676.326087","677.608696","786.978261","775.304348","777.804348","160.000000","6000.000000",,"8894531.000000",,,,, diff --git a/splunk_eventgen/samples/vmware-fields.csv b/splunk_eventgen/samples/vmware-fields.csv new file mode 100644 index 00000000..45b52ed8 --- /dev/null +++ b/splunk_eventgen/samples/vmware-fields.csv @@ -0,0 +1,136 @@ +perftype,instance,fieldssplit +cpu,no,"AvgUsg_mhz" +cpu,no,"AvgUsg_pct" +cpu,no,"MaxUsg_mhz" +cpu,no,"MaxUsg_pct" +cpu,no,"MinUsg_mhz" +cpu,no,"MinUsg_pct" +cpu,no,"SumRdy_ms" +cpu,no,"SumSwpWait_ms" +cpu,no,"AvgDemand_MHz" +cpu,no,"AvgLat_pct" +cpu,no,"Entitle_MHz" +cpu,no,"SumCostop_ms" +cpu,no,"SumIdle_ms" +cpu,no,"SumMaxLtd_ms" +cpu,no,"SumOverlap_ms" +cpu,no,"SumRun_ms" +cpu,yes,"SumSys_ms" +cpu,yes,"SumUsd_ms" +cpu,yes,"SumWait_ms" +disk,no,"AvgRd_KBps" +disk,no,"AvgUsg_KBps" +disk,no,"AvgWr_KBps" +disk,no,"MaxUsg_KBps" +disk,no,"MinUsg_KBps" +disk,no,"MaxTotLat_ms" +disk,yes,AvgCmds +disk,yes,AvgRd +disk,yes,"AvgTotRdLat_ms" +disk,yes,"AvgTotWrLat_ms" +disk,yes,AvgWr +disk,yes,SumBusResets +disk,yes,SumCmds +disk,yes,SumCmdsAbort +disk,yes,SumRd +disk,yes,SumWr +mem,no,"AvgActWr_KB" +mem,no,"AvgAct_KB" +mem,no,"AvgCmpd_KB" +mem,no,"AvgCmpnRate_KBps" +mem,no,"AvgConsum_KB" +mem,no,"AvgDecmpnRate_KBps" +mem,no,"AvgGrtd_KB" +mem,no,"AvgOvrhdMax_KB" +mem,no,"AvgOvrhd_KB" +mem,no,"AvgShrd_KB" +mem,no,"AvgSwpIRate_KBps" +mem,no,"AvgSwpIn_KB" +mem,no,"AvgSwpORate_KBps" +mem,no,"AvgSwpOut_KB" +mem,no,"AvgSwpTarg_KB" +mem,no,"AvgSwpd_KB" +mem,no,"AvgUsg_pct" +mem,no,"AvgVmctlTarg_KB" +mem,no,"AvgVmctl_KB" +mem,no,"AvgZero_KB" +mem,no,"MaxAct_KB" +mem,no,"MaxConsum_KB" +mem,no,"MaxGrtd_KB" +mem,no,"MaxOvrhd_KB" +mem,no,"MaxShrd_KB" +mem,no,"MaxSwpIn_KB" +mem,no,"MaxSwpOut_KB" +mem,no,"MaxSwpTarg_KB" +mem,no,"MaxSwpd_KB" +mem,no,"MaxUsg_pct" +mem,no,"MaxVmctlTarg_KB" +mem,no,"MaxVmctl_KB" +mem,no,"MaxZero_KB" +mem,no,"MinAct_KB" +mem,no,"MinConsum_KB" +mem,no,"MinGrtd_KB" +mem,no,"MinOvrhd_KB" +mem,no,"MinShrd_KB" +mem,no,"MinSwpIn_KB" +mem,no,"MinSwpOut_KB" +mem,no,"MinSwpTarg_KB" +mem,no,"MinSwpd_KB" +mem,no,"MinUsg_pct" +mem,no,"MinVmctlTarg_KB" +mem,no,"MinVmctl_KB" +mem,no,"MinZero_KB" +mem,no,"ZipSaved_KB" +mem,no,"Zipped_KB" +mem,no,"AvgEntitle_KB" +mem,no,"AvgLat_pct" +mem,no,"AvgLlSwapUsd_KB" +mem,no,"AvgLlSwpIRate_KBps" +mem,no,"AvgLlSwpORate_KBps" +mem,no,"AvgOvrhdTouch_KB" +net,no,"AvgRvcd_KBps" +net,no,"AvgUsg_KBps" +net,no,"AvgXmit_KBps" +net,no,"MaxUsg_KBps" +net,no,"MinUsg_KBps" +net,no,"AvgBRx_KBps" +net,no,"AvgBTx_KBps" +net,no,SumBroadcastRx +net,no,SumBroadcastTx +net,no,SumDropRx +net,no,SumDropTx +net,no,SumMulticastRx +net,no,SumMulticastTx +net,yes,SumPktsRx +net,yes,SumPktsTx +power,no,"SumEnergy_j" +resCpu,no,"ActAvg15m_pct" +resCpu,no,"ActAvg1m_pct" +resCpu,no,"ActAvg5m_pct" +resCpu,no,"ActPk15m_pct" +resCpu,no,"ActPk1m_pct" +resCpu,no,"ActPk5m_pct" +resCpu,no,"MaxLtd15_pct" +resCpu,no,"MaxLtd1_pct" +resCpu,no,"MaxLtd5_pct" +resCpu,no,"RunAvg15m_pct" +resCpu,no,"RunAvg1m_pct" +resCpu,no,"RunAvg5m_pct" +resCpu,no,"RunPk15m_pct" +resCpu,no,"RunPk1m_pct" +resCpu,no,"RunPk5m_pct" +resCpu,no,SmplCnt +resCpu,no,"SmplPrd_ms" +sys,no,SumHeartbeat +sys,no,"Uptime_sec" +sys,no,"OsUptime_sec" +vDisk,yes,AvgRd +vDisk,yes,"AvgRd_KBps" +vDisk,yes,"AvgTotRdLat_ms" +vDisk,yes,"AvgTotWrLat_ms" +vDisk,yes,AvgWr +vDisk,yes,"AvgWr_KBps" +vDisk,yes,RdLoadMetric +vDisk,yes,RdOIO +vDisk,yes,WrLoadMetric +vDisk,yes,WrOIO diff --git a/splunk_eventgen/samples/vmware-hierarchy.csv b/splunk_eventgen/samples/vmware-hierarchy.csv new file mode 100644 index 00000000..40e68dac --- /dev/null +++ b/splunk_eventgen/samples/vmware-hierarchy.csv @@ -0,0 +1,9 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 03:30:26 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ross-datagens/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"" instanceUuid=""5012c4f6-e0b3-9daf-62a0-a1b47e67265e"" uuid=""4212c080-295c-e11e-0eba-a1b41060ae79"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ross-datagens/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ross-datagens/"" moid=""vm-2179"" type=""VirtualMachine"" name=""ross-datagen0044"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435026 +"2012-05-31 03:30:02 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"" instanceUuid=""501200a4-4da4-bfaa-f6d0-d5ce6fa6a913"" uuid=""42124cd4-7654-72f6-a95a-dbbb19b76626"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/QA/"" moid=""vm-1447"" type=""VirtualMachine"" name=""qasvwin7x64-HK1"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338435002 +"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"" instanceUuid=""50127041-04d4-7c04-b381-7daa333399b9"" uuid=""4212c9c0-4b5e-d434-7498-3b17b0605b4e"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-1647"" type=""VirtualMachine"" name=""ANTIVIR01"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 +"2012-05-31 03:29:52 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/ITOps/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host10.foobar.com"" physicalhost=""host10.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-18"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"" instanceUuid=""5277badb-1342-e933-7dda-3d982779747d"" uuid=""564dc31d-0089-1fbb-57cd-a5373ac9c1db"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:ITOps/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/ITOps/"" moid=""vm-16"" type=""VirtualMachine"" name=""vCenter41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434992 +"2012-05-31 03:29:45 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"" uuid=""44454c4c-5800-1052-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-20"" type=""HostSystem"" name=""host2.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434985 +"2012-05-31 03:29:44 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" clustermoid=""domain-c7"" datacentermoid=""datacenter-2"" hostsystemmoid=""host-19"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"" uuid=""44454c4c-5800-1051-8052-c4c04f425031"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/"" moid=""host-19"" type=""HostSystem"" name=""host6.foobar.com"" productLineId=""embeddedEsx"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434984 +"2012-05-31 03:29:40 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"" instanceUuid=""593E6A61-A674-478C-82C2-8EDB92A22906"" typeduipath=""/"" uipath=""/"" moid=""group-d1"" type=""VirtualCenter"" name=""VCENTER41"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434980 +"2012-05-31 03:15:55 UTC view=""Hosts and Clusters"" isvc=""true"" vc=""VCENTER41"" path=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Resources/Solutions/VMware/QA/"" Datacenter=""SPLUNK-VMI"" Cluster=""SV502-Lab-01"" HostSystem=""host2.foobar.com"" physicalhost=""host2.foobar.com"" datacentermoid=""datacenter-2"" clustermoid=""domain-c7"" hostsystemmoid=""host-20"" meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"" instanceUuid=""5012c9a3-1157-774d-6d43-7620a2a399de"" uuid=""4212765e-9013-6bca-547d-4b57f7add71f"" typeduipath=""/Folder:VCENTER41/Datacenter:SPLUNK-VMI/ClusterComputeResource:SV502-Lab-01/ResourcePool:Solutions/ResourcePool:VMware/ResourcePool:QA/"" uipath=""/VCENTER41/SPLUNK-VMI/SV502-Lab-01/Solutions/VMware/QA/"" moid=""vm-744"" type=""VirtualMachine"" name=""io-qa-splunk"" fa=""splunkvmwarefa""",vmware,VCENTER41,EntityViews,"vmware:hierarchy",1338434155 diff --git a/splunk_eventgen/samples/vmware-inventory.csv b/splunk_eventgen/samples/vmware-inventory.csv new file mode 100644 index 00000000..94492c00 --- /dev/null +++ b/splunk_eventgen/samples/vmware-inventory.csv @@ -0,0 +1 @@ +_raw,index,host,source,sourcetype "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=summary/config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",apiType=HostAgent, apiVersion=4.1, build=348481, fullName=VMware ESXi 4.1.0 build-348481, licenseProductName=VMware ESX Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware ESXi, osType=vmnix-x86, productLineId=embeddedEsx, vendor=""VMware, Inc."", version=4.1.0,subpath=config/product",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",apiType=VirtualCenter, apiVersion=4.1, build=345043, fullName=VMware vCenter Server 4.1.0 build-345043, instanceUuid=593E6A61-A674-478C-82C2-8EDB92A22906, licenseProductName=VMware VirtualCenter Server, licenseProductVersion=4.0, localeBuild=000, localeVersion=INTL, name=VMware vCenter Server, osType=win32-x86, productLineId=vpx, vendor=""VMware, Inc."", version=4.1.0,subpath=vim/service_content/about",vmware,VCENTER41,AboutInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=yellow, time=2012-05-31T03:53:31Z,subpath=triggeredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2029, overallStatus=yellow, time=2012-05-31T03:50:39Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1105, overallStatus=yellow, time=2012-05-31T03:44:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-141, overallStatus=yellow, time=2012-05-31T03:50:19Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-5.host-19, overallStatus=green, time=2012-04-27T22:57:23Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-4.host-19, overallStatus=green, time=2012-05-12T02:11:41Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-38.host-19, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-37.host-19, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-36.host-19, overallStatus=green, time=2011-12-01T19:48:26Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-35.host-19, overallStatus=green, time=2011-03-30T23:04:48Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-32.host-19, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-31.host-19, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-3.host-19, overallStatus=green, time=2012-05-14T01:06:22Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-29.host-19, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-27.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-26.host-19, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-24.host-19, overallStatus=gray, time=2012-05-29T16:00:41Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-23.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-22.host-19, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-21.host-19, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-20.host-19, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-19.host-19, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-18.host-19, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-17.host-19, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-16.host-19, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-15.host-19, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-14.host-19, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-13.host-19, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-12.host-19, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",acknowledged=False, key=alarm-1.host-19, overallStatus=green, time=2012-04-27T22:56:31Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-5.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-4.host-20, overallStatus=green, time=2012-05-21T17:23:57Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-38.host-20, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-37.host-20, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-36.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-35.host-20, overallStatus=green, time=2011-11-04T00:53:45Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-32.host-20, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-31.host-20, overallStatus=gray, time=2012-05-14T17:23:26.122531Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-3.host-20, overallStatus=green, time=2012-05-04T00:37:41Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-29.host-20, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-27.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-26.host-20, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-24.host-20, overallStatus=gray, time=2012-05-22T02:01:17Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-23.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-22.host-20, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-21.host-20, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-20.host-20, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-19.host-20, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-18.host-20, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-17.host-20, overallStatus=green, time=2012-05-18T16:22:44Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-16.host-20, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-15.host-20, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-14.host-20, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-13.host-20, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-12.host-20, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",acknowledged=False, key=alarm-1.host-20, overallStatus=green, time=2012-05-04T00:36:07Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-7.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-6.vm-2179, overallStatus=green, time=2012-05-29T17:39:07Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-34.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.164523Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-30.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-28.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-25.vm-2179, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-2.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.941867Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-11.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",acknowledged=False, key=alarm-10.vm-2179, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-954, overallStatus=yellow, time=2012-01-17T19:25:29Z,subpath=triggeredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.datastore-951, overallStatus=red, time=2011-12-21T18:13:06Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=red, time=2012-05-31T03:37:19Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2411, overallStatus=red, time=2012-05-30T23:18:06Z,subpath=triggeredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2169, overallStatus=red, time=2012-05-31T02:06:18Z,subpath=triggeredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2147, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2116, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2112, overallStatus=yellow, time=2012-05-31T03:10:54Z,subpath=triggeredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2080, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2058, overallStatus=red, time=2012-05-31T02:37:40Z,subpath=triggeredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2052, overallStatus=yellow, time=2012-05-31T03:33:51Z,subpath=triggeredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1848, overallStatus=yellow, time=2012-05-31T03:37:54Z,subpath=triggeredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1558, overallStatus=red, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=triggeredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-954, overallStatus=red, time=2011-12-13T21:12:41Z,subpath=triggeredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.datastore-1362, overallStatus=red, time=2012-01-28T00:26:39Z,subpath=triggeredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.host-92, overallStatus=yellow, time=2012-05-31T02:32:38Z,subpath=triggeredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-9.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.279757Z,subpath=declaredAlarmState-40",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-8.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.277804Z,subpath=declaredAlarmState-39",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-7.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.233859Z,subpath=declaredAlarmState-38",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.18796Z,subpath=declaredAlarmState-37",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-5.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186984Z,subpath=declaredAlarmState-36",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-41.group-d1, overallStatus=red, time=2012-05-29T23:24:27Z,subpath=declaredAlarmState-35",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-40.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.186007Z,subpath=declaredAlarmState-34",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-4.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.185031Z,subpath=declaredAlarmState-33",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-39.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.183078Z,subpath=declaredAlarmState-32",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-38.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.182101Z,subpath=declaredAlarmState-31",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-37.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.181125Z,subpath=declaredAlarmState-30",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-36.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.180148Z,subpath=declaredAlarmState-29",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-35.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.178195Z,subpath=declaredAlarmState-28",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-34.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.124484Z,subpath=declaredAlarmState-27",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-33.group-d1, overallStatus=gray, time=2012-05-29T23:23:37Z,subpath=declaredAlarmState-26",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-32.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.123507Z,subpath=declaredAlarmState-25",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-31.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.121554Z,subpath=declaredAlarmState-24",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-30.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.058078Z,subpath=declaredAlarmState-23",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-3.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.057101Z,subpath=declaredAlarmState-22",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-29.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.056125Z,subpath=declaredAlarmState-21",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-28.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.013156Z,subpath=declaredAlarmState-20",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-27.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.012179Z,subpath=declaredAlarmState-19",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-26.group-d1, overallStatus=gray, time=2012-05-14T17:23:26.011203Z,subpath=declaredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-25.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.960421Z,subpath=declaredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-24.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.959445Z,subpath=declaredAlarmState-16",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-23.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.958468Z,subpath=declaredAlarmState-15",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-22.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.957492Z,subpath=declaredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-21.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.955539Z,subpath=declaredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-20.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.954562Z,subpath=declaredAlarmState-12",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-2.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.907687Z,subpath=declaredAlarmState-11",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-19.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.90671Z,subpath=declaredAlarmState-10",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-18.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.905734Z,subpath=declaredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-17.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.904757Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-16.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.903781Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-15.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.902804Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-14.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.901828Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-13.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.900851Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-12.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.899875Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-11.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.857882Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-10.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.813937Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-1.group-d1, overallStatus=gray, time=2012-05-14T17:23:25.811984Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-7.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-6.vm-744, overallStatus=green, time=2012-05-26T02:33:00Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-34.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.174289Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-30.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.117648Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-28.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.054171Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-25.vm-744, overallStatus=gray, time=2012-05-14T17:23:26.008273Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-2.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.950656Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-11.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.896945Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",acknowledged=False, key=alarm-10.vm-744, overallStatus=gray, time=2012-05-14T17:23:25.855929Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-7.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-6.vm-16, overallStatus=green, time=2012-05-02T01:23:50Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-34.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-30.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-28.vm-16, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-25.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-2.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-11.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",acknowledged=False, key=alarm-10.vm-16, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-776, overallStatus=red, time=2012-05-31T03:20:51Z,subpath=triggeredAlarmState-18",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2509, overallStatus=yellow, time=2012-05-31T03:23:38Z,subpath=triggeredAlarmState-17",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2151, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-14",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2149, overallStatus=red, time=2012-05-31T03:21:11Z,subpath=triggeredAlarmState-13",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-2090, overallStatus=yellow, time=2012-05-31T03:26:21Z,subpath=triggeredAlarmState-9",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",acknowledged=False, key=alarm-6.vm-1019, overallStatus=yellow, time=2012-05-31T03:21:21Z,subpath=triggeredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-7.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-6.vm-1647, overallStatus=green, time=2012-05-29T19:52:08Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-34.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.155734Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-30.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.098117Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-28.vm-1647, overallStatus=gray, time=2012-05-14T17:23:26.039523Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-25.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.992648Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-2.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.934054Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-11.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.883273Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",acknowledged=False, key=alarm-10.vm-1647, overallStatus=gray, time=2012-05-14T17:23:25.841281Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-7.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-8",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-6.vm-1447, overallStatus=green, time=2012-05-30T16:32:22Z,subpath=declaredAlarmState-7",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-34.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.1655Z,subpath=declaredAlarmState-6",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-30.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.107882Z,subpath=declaredAlarmState-5",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-28.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.046359Z,subpath=declaredAlarmState-4",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-25.vm-1447, overallStatus=gray, time=2012-05-14T17:23:26.001437Z,subpath=declaredAlarmState-3",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-2.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.942843Z,subpath=declaredAlarmState-2",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-11.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.890109Z,subpath=declaredAlarmState-1",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",acknowledged=False, key=alarm-10.vm-1447, overallStatus=gray, time=2012-05-14T17:23:25.848117Z,subpath=declaredAlarmState-0",vmware,VCENTER41,AlarmState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False, startDelay=120, stopAction=PowerOff, stopDelay=120, waitForHeartbeat=False,subpath=config/autoStart/defaults",vmware,VCENTER41,AutoStartDefaults,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338242306, pnicDevice=vmnic4, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338241606, pnicDevice=vmnic0, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338297110, pnicDevice=vmnic5, uplinkPortKey=264, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=338296399, pnicDevice=vmnic1, uplinkPortKey=263, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914974341, pnicDevice=vmnic6, uplinkPortKey=140, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=1914972820, pnicDevice=vmnic2, uplinkPortKey=138, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261390052, pnicDevice=vmnic4, uplinkPortKey=268, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261389650, pnicDevice=vmnic0, uplinkPortKey=267, uplinkPortgroupKey=dvportgroup-31,subpath=config/network/proxySwitch-2/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411844, pnicDevice=vmnic5, uplinkPortKey=266, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1261411447, pnicDevice=vmnic1, uplinkPortKey=265, uplinkPortgroupKey=dvportgroup-41,subpath=config/network/proxySwitch-1/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965607750, pnicDevice=vmnic6, uplinkPortKey=144, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-1",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1965606247, pnicDevice=vmnic2, uplinkPortKey=142, uplinkPortgroupKey=dvportgroup-27,subpath=config/network/proxySwitch-0/spec/backing/pnicSpec-0",vmware,VCENTER41,DistributedVirtualSwitchHostMemberPnicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721288397, portKey=134, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721179999, portKey=102, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",connectionCookie=721137030, portKey=136, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/vmotion/netConfig/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/vmotion/netConfig/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642992499, portKey=135, portgroupKey=dvportgroup-43, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-2/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642844061, portKey=103, portgroupKey=dvportgroup-42, switchUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36,subpath=config/network/vnic-1/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",connectionCookie=1642800116, portKey=137, portgroupKey=dvportgroup-33, switchUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2,subpath=config/network/vnic-0/spec/distributedVirtualPort",vmware,VCENTER41,DistributedVirtualSwitchPortConnection,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",alarmActionsEnabled=true, childType=[Folder;Datacenter], configStatus=gray, effectiveRole=[301990489], name=Datacenters, overallStatus=gray,subpath=.",vmware,VCENTER41,Folder,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",capacity=8454070272, diskPath=/, freeSpace=6145908736,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=103512064, diskPath=/boot, freeSpace=83556352,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",capacity=105181831168, diskPath=/, freeSpace=102196920320,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=107371032576, diskPath=F:\, freeSpace=102730809344,subpath=guest/disk-2",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=21471686656, diskPath=D:\, freeSpace=4216061952,subpath=guest/disk-1",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",capacity=64316502016, diskPath=C:\, freeSpace=7164432384,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",capacity=85791338496, diskPath=C:\, freeSpace=46226731008,subpath=guest/disk-0",vmware,VCENTER41,GuestDiskInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host8.foobar.com, ipAddress=10.160.27.35, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",appHeartbeatStatus=appStatusGray, guestFamily=linuxGuest, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, guestState=running, hostName=host11.foobar.com, ipAddress=10.160.26.203, screen=400:720, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=VCENTER41, ipAddress=10.160.114.241, screen=768:1024, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",appHeartbeatStatus=appStatusGray, guestFamily=windowsGuest, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, guestState=running, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, screen=600:800, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersion=8295, toolsVersionStatus=guestToolsCurrent,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",guestState=notRunning, toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=guest",vmware,VCENTER41,GuestInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connected=True, deviceConfigId=4000, ipAddress=[10.160.27.35;fe80::250:56ff:fe92:315], macAddress=00:50:56:92:03:15,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connected=True, deviceConfigId=4000, ipAddress=[10.160.26.203], macAddress=00:50:56:92:00:f3,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connected=True, deviceConfigId=4000, ipAddress=[10.160.114.241], macAddress=00:0c:29:c9:c1:db,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",connected=True, deviceConfigId=4000, ipAddress=[2620:70:8000:c201:e050:98b7:ebfb:5a26;fe80::e050:98b7:ebfb:5a26;10.160.20.30], macAddress=00:50:56:92:01:73,subpath=guest/net-0",vmware,VCENTER41,GuestNicInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4103-35b23908, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, device=vmhba34, driver=iscsi_vmk, iScsiName=iqn.1998-01.com.vmware:ESXi4104-5f9a057e, isSoftwareBased=True, key=key-vim.host.InternetScsiHba-vmhba34, model=iSCSI Software Adapter, pci=UNKNOWN - NULL PCI DEV IN VMKCTL, status=online, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba33, driver=ata_piix, key=key-vim.host.BlockHba-vmhba33, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-3",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, device=vmhba2, driver=ethdrv, key=key-vim.host.ParallelScsiHba-vmhba2, model=Coraid EtherDrive HBA, pci=09:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-2",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, device=vmhba1, driver=mptsas, key=key-vim.host.BlockHba-vmhba1, model=Dell SAS 6/iR Integrated, pci=03:00.0, status=unknown,subpath=config/storageDevice/hostBusAdapter-1",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, device=vmhba0, driver=ata_piix, key=key-vim.host.BlockHba-vmhba0, model=PowerEdge R710 SATA IDE Controller, pci=00:1f.2, status=unknown,subpath=config/storageDevice/hostBusAdapter-0",vmware,VCENTER41,HostBlockHba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",backgroundSnapshotsSupported=False, cloneFromSnapshotSupported=True, cpuMemoryResourceConfigurationSupported=True, datastorePrincipalSupported=True, deltaDiskBackingsSupported=True, ftSupported=True, highGuestMemSupported=True, ipmiSupported=True, iscsiSupported=True, localSwapDatastoreSupported=True, loginBySSLThumbprintSupported=True, maintenanceModeSupported=True, maxRunningVMs=0, maxSupportedVMs=1200, maxSupportedVcpus=8, nfsSupported=True, nicTeamingSupported=True, perVMNetworkTrafficShapingSupported=False, perVmSwapFiles=True, preAssignedPCIUnitNumbersSupported=True, rebootSupported=True, recordReplaySupported=True, recursiveResourcePoolsSupported=True, restrictedSnapshotRelocateSupported=True, sanSupported=True, scaledScreenshotSupported=True, screenshotSupported=True, shutdownSupported=True, standbySupported=True, storageIORMSupported=True, storageVMotionSupported=True, suspendedRelocateSupported=True, tpmSupported=False, unsharedSwapVMotionSupported=True, vStorageCapable=True, virtualExecUsageSupported=True, vlanTaggingSupported=True, vmDirectPathGen2Supported=False, vmDirectPathGen2UnsupportedReason=[hostNptDisabled], vmotionSupported=True, vmotionWithStorageVMotionSupported=False,subpath=capability",vmware,VCENTER41,HostCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adminDisabled=False, datastorePrincipal=root,subpath=config",vmware,VCENTER41,HostConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",faultToleranceEnabled=True, name=host6.foobar.com, port=443, sslThumbprint=25:53:43:4A:E9:D8:2A:56:10:4A:6D:35:90:BB:82:8D:FC:F3:6E:F4, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",faultToleranceEnabled=True, name=host2.foobar.com, port=443, sslThumbprint=E2:6A:51:16:98:14:96:83:B6:A2:FF:44:AD:83:30:2E:A5:A2:B5:F2, vmotionEnabled=True,subpath=summary/config",vmware,VCENTER41,HostConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",hz=2659999620, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",hz=2659999560, numCpuCores=12, numCpuPackages=2, numCpuThreads=24,subpath=hardware/cpuInfo",vmware,VCENTER41,HostCpuInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",busHz=132999981, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999620, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=1, threadId=[12;13;14;15;16;17;18;19;20;21;22;23], vendor=intel,subpath=hardware/cpuPkg-1",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",busHz=132999978, cpuFeature=[:-2147483648;:-2147483647;:-2147483640;:0;:1], description=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", hz=2659999560, index=0, threadId=[0;1;2;3;4;5;6;7;8;9;10;11], vendor=intel,subpath=hardware/cpuPkg-0",vmware,VCENTER41,HostCpuPackage,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentPolicy=Not supported, hardwareSupport=Not available,subpath=hardware/cpuPowerManagementInfo",vmware,VCENTER41,HostCpuPowerManagementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",localDatastoreSupported=False, nfsMountCreationRequired=True, nfsMountCreationSupported=True, vmfsExtentExpansionSupported=True,subpath=config/datastoreCapabilities",vmware,VCENTER41,HostDatastoreSystemCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=UTC, gmtOffset=0, key=UTC, name=UTC,subpath=config/dateTimeInfo/timeZone",vmware,VCENTER41,HostDateTimeSystemTimeZone,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diagnosticType=singleHost, slots=1, storageType=directAttached,subpath=config/activeDiagnosticPartition",vmware,VCENTER41,HostDiagnosticPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-26/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-25/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-24/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-23/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-22/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-21/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-20/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-19/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-18/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-17/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-16/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-15/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=2147518464, blockSize=512,subpath=config/storageDevice/scsiLun-14/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-13/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-12/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-11/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-10/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-9/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-8/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-7/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-6/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-5/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-4/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-3/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=4294967296, blockSize=512,subpath=config/storageDevice/scsiLun-2/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",block=143374650, blockSize=512,subpath=config/storageDevice/scsiLun-1/capacity",vmware,VCENTER41,HostDiskDimensionsLba,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4103, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.20.2;10.160.20.3], dhcp=False, domainName=SV.SPLUNK.COM, hostName=ESXi4104, searchDomain=[SPLUNK.COM;SV.SPLUNK.COM],subpath=config/network/dnsConfig",vmware,VCENTER41,HostDnsConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=summary/config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=faultTolerance, value=2.0.1-2.0.0-2.0.0,subpath=config/featureVersion-0",vmware,VCENTER41,HostFeatureVersionInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-9",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnsupported,subpath=config/fileSystemVolume/mountInfo-8",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-7",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-6",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-5",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-4",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-3",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-2",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageSupported,subpath=config/fileSystemVolume/mountInfo-1",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",vStorageSupport=vStorageUnknown,subpath=config/fileSystemVolume/mountInfo-0",vmware,VCENTER41,HostFileSystemMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",volumeTypeList=[vmfs;nfs],subpath=config/fileSystemVolume",vmware,VCENTER41,HostFileSystemVolumeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Memory, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/memoryStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU2, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-1",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=CPU1, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/cpuStatusInfo-0",vmware,VCENTER41,HostHardwareElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuFeature=[:0;:1;:-2147483648;:-2147483647;:-2147483640], memorySize=103065034752,subpath=hardware",vmware,VCENTER41,HostHardwareInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuMhz=2659, cpuModel=""Intel(R) Xeon(R) CPU X5650 @ 2.67GHz"", memorySize=103065034752, model=PowerEdge R710, numCpuCores=12, numCpuPkgs=2, numCpuThreads=24, numHBAs=5, numNics=8, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=summary/hardware",vmware,VCENTER41,HostHardwareSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",active=True, available=True, config=True,subpath=config/hyperThread",vmware,VCENTER41,HostHyperThreadScheduleInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthSettable=True, krb5AuthSettable=False, mutualChapSettable=True, spkmAuthSettable=False, srpAuthSettable=False, targetChapSettable=True, targetMutualChapSettable=True,subpath=config/storageDevice/hostBusAdapter-4/authenticationCapabilities",vmware,VCENTER41,HostInternetScsiHbaAuthenticationCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapInherited=True, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapInherited=True, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",chapAuthEnabled=False, chapAuthenticationType=chapProhibited, chapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX, mutualChapAuthenticationType=chapProhibited, mutualChapSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,subpath=config/storageDevice/hostBusAdapter-4/authenticationProperties",vmware,VCENTER41,HostInternetScsiHbaAuthenticationProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestSettable=True, headerDigestSettable=True, targetDataDigestSettable=True, targetHeaderDigestSettable=True,subpath=config/storageDevice/hostBusAdapter-4/digestCapabilities",vmware,VCENTER41,HostInternetScsiHbaDigestCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestType=digestProhibited, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dataDigestInherited=True, dataDigestType=digestProhibited, headerDigestInherited=True, headerDigestType=digestProhibited,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/digestProperties",vmware,VCENTER41,HostInternetScsiHbaDigestProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoverySettable=False, sendTargetsDiscoverySettable=False, slpDiscoverySettable=False, staticTargetDiscoverySettable=False,subpath=config/storageDevice/hostBusAdapter-4/discoveryCapabilities",vmware,VCENTER41,HostInternetScsiHbaDiscoveryCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",iSnsDiscoveryEnabled=False, sendTargetsDiscoveryEnabled=True, slpDiscoveryEnabled=False, staticTargetDiscoveryEnabled=True,subpath=config/storageDevice/hostBusAdapter-4/discoveryProperties",vmware,VCENTER41,HostInternetScsiHbaDiscoveryProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",addressSettable=False, alternateDnsServerAddressSettable=False, arpRedirectSettable=False, defaultGatewaySettable=False, hostNameAsTargetAddress=True, ipConfigurationMethodSettable=False, ipv6Supported=True, mtuSettable=False, nameAliasSettable=True, primaryDnsServerAddressSettable=False, subnetMaskSettable=False,subpath=config/storageDevice/hostBusAdapter-4/ipCapabilities",vmware,VCENTER41,HostInternetScsiHbaIPCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcpConfigurationEnabled=False,subpath=config/storageDevice/hostBusAdapter-4/ipProperties",vmware,VCENTER41,HostInternetScsiHbaIPProperties,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ImmediateData, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LogoutTimeout, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginTimeout, value=5,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=DefaultTimeToWait, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",isInherited=True, key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DelayedAck, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-16",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ImmediateData, value=true,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-15",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=InitR2T, value=false,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-14",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopInterval, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-13",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=NoopTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-12",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=RecoveryTimeout, value=10,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-11",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LogoutTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-10",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginTimeout, value=15,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-9",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToRetain, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-8",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DefaultTimeToWait, value=2,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-7",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxCommands, value=128,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-6",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxRecvDataSegLen, value=131072,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-5",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-4",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=FirstBurstLength, value=262144,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-3",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=MaxOutstandingR2T, value=1,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-2",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=LoginRetryMax, value=4,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-1",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ErrorRecoveryLevel, value=0,subpath=config/storageDevice/hostBusAdapter-4/advancedOptions-0",vmware,VCENTER41,HostInternetScsiHbaParamValue,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-1",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, parent=vmhba34, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredSendTarget-0",vmware,VCENTER41,HostInternetScsiHbaSendTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.20, iScsiName=iqn.1992-08.com.netapp:sn.1574383237, parent=10.160.100.20:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-1",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=10.160.100.10, iScsiName=iqn.1992-08.com.netapp:sn.1574419639, parent=10.160.100.10:3260, port=3260, supportedAdvancedOptions=[ErrorRecoveryLevel:iSCSI option : Error Recovery Level;LoginRetryMax:iSCSI option : Maximum Retries On Initial Login;MaxOutstandingR2T:iSCSI option : Maximum Outstanding R2T;FirstBurstLength:iSCSI option : First Burst Length;MaxBurstLength:iSCSI option : Max Burst Length;MaxRecvDataSegLen:iSCSI option : Maximum Receive Data Segment Length;MaxCommands:iSCSI option : Maximum Commands;DefaultTimeToWait:iSCSI option : Default Time To Wait;DefaultTimeToRetain:iSCSI option : Default Time To Retain;LoginTimeout:iSCSI option : Login Timeout;LogoutTimeout:iSCSI option : Logout Timeout;RecoveryTimeout:iSCSI option : Session Recovery Timeout;NoopTimeout:iSCSI option : No-Op Timeout;NoopInterval:iSCSI option : No-Op Interval;InitR2T:iSCSI option : Init R2T;ImmediateData:iSCSI option : Immediate Data;DelayedAck:iSCSI option : Delayed Ack],subpath=config/storageDevice/hostBusAdapter-4/configuredStaticTarget-0",vmware,VCENTER41,HostInternetScsiHbaStaticTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/plugStoreTopology/target-3/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/plugStoreTopology/target-2/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-26/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-25/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-24/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-23/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-22/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-21/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-20/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-19/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-18/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-17/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-16/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-15/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-14/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-13/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-12/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-11/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-10/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-9/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-8/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-7/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-6/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-5/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.10:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574419639,subpath=config/storageDevice/multipathInfo/lun-4/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-3/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",address=[10.160.100.20:3260], iScsiName=iqn.1992-08.com.netapp:sn.1574383237,subpath=config/storageDevice/multipathInfo/lun-2/path-0/transport",vmware,VCENTER41,HostInternetScsiTargetTransport,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.123, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.100.23, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.110.13, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.108.13, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False, ipAddress=10.160.114.13, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/vmotion/netConfig/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/vmotion/ipConfig",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.124, subnetMask=255.255.254.0,subpath=config/network/vnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.100.24, subnetMask=255.255.254.0,subpath=config/network/vnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.110.14, subnetMask=255.255.254.0,subpath=config/network/vnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.108.14, subnetMask=255.255.254.0,subpath=config/network/vnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False, ipAddress=10.160.114.14, subnetMask=255.255.254.0,subpath=config/network/vnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-7/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-6/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-5/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-4/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-3/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-2/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-1/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dhcp=False,subpath=config/network/pnic-0/spec/ip",vmware,VCENTER41,HostIpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",defaultGateway=10.160.114.1,subpath=config/network/ipRouteConfig",vmware,VCENTER41,HostIpRouteConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=0.0.0.0, network=10.160.114.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-4",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk2, gateway=0.0.0.0, network=10.160.110.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-3",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk1, gateway=0.0.0.0, network=10.160.108.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-2",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk3, gateway=0.0.0.0, network=10.160.100.0, prefixLength=23,subpath=config/network/routeTableInfo/ipRoute-1",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",deviceName=vmk0, gateway=10.160.114.1, network=0.0.0.0, prefixLength=0,subpath=config/network/routeTableInfo/ipRoute-0",vmware,VCENTER41,HostIpRouteEntry,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",maxEVCModeKey=intel-westmere, overallStatus=green, rebootRequired=False,subpath=summary",vmware,VCENTER41,HostListSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=234, distributedMemoryFairness=291, overallCpuUsage=12881, overallMemoryUsage=65416, uptime=8915576,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=138, distributedMemoryFairness=380, overallCpuUsage=15011, overallMemoryUsage=46562, uptime=8911411,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=134, distributedMemoryFairness=379, overallCpuUsage=12645, overallMemoryUsage=46582, uptime=8910871,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=162, distributedMemoryFairness=286, overallCpuUsage=12131, overallMemoryUsage=68594, uptime=8914976,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",distributedCpuFairness=126, distributedMemoryFairness=288, overallCpuUsage=20193, overallMemoryUsage=68599, uptime=8913956,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",distributedCpuFairness=153, distributedMemoryFairness=382, overallCpuUsage=21654, overallMemoryUsage=46582, uptime=8909791,subpath=summary/quickStats",vmware,VCENTER41,HostListSummaryQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/authenticationManagerInfo/authConfig-1",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=True,subpath=config/authenticationManagerInfo/authConfig-0",vmware,VCENTER41,HostLocalAuthenticationInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf55e8-44794690-b3e8-842b2b76f183,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/c731a500-651c5016,subpath=config/fileSystemVolume/mountInfo-9/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/3fd06fc6-6876f0d9,subpath=config/fileSystemVolume/mountInfo-8/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f341671-3e55c807-2999-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-7/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f4e9ab6-f487a38c-d791-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-6/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f1b4-0bf8c6fc-7058-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-5/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-4/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-3/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4f2339b6-96074928-380f-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-2/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1,subpath=config/fileSystemVolume/mountInfo-1/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",accessMode=readWrite, accessible=True, path=/vmfs/volumes/4daf590b-1ab1f708-0db3-842b2b76ef11,subpath=config/fileSystemVolume/mountInfo-0/mountInfo",vmware,VCENTER41,HostMountInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"",subpath=config/storageDevice/multipathInfo/lun-26/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"",subpath=config/storageDevice/multipathInfo/lun-25/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"",subpath=config/storageDevice/multipathInfo/lun-24/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"",subpath=config/storageDevice/multipathInfo/lun-23/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"",subpath=config/storageDevice/multipathInfo/lun-22/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"",subpath=config/storageDevice/multipathInfo/lun-21/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"",subpath=config/storageDevice/multipathInfo/lun-20/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"",subpath=config/storageDevice/multipathInfo/lun-19/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"",subpath=config/storageDevice/multipathInfo/lun-18/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"",subpath=config/storageDevice/multipathInfo/lun-17/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"",subpath=config/storageDevice/multipathInfo/lun-16/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"",subpath=config/storageDevice/multipathInfo/lun-15/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"",subpath=config/storageDevice/multipathInfo/lun-14/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"",subpath=config/storageDevice/multipathInfo/lun-13/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"",subpath=config/storageDevice/multipathInfo/lun-12/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"",subpath=config/storageDevice/multipathInfo/lun-11/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"",subpath=config/storageDevice/multipathInfo/lun-10/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"",subpath=config/storageDevice/multipathInfo/lun-9/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"",subpath=config/storageDevice/multipathInfo/lun-8/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"",subpath=config/storageDevice/multipathInfo/lun-7/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"",subpath=config/storageDevice/multipathInfo/lun-6/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"",subpath=config/storageDevice/multipathInfo/lun-5/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"",subpath=config/storageDevice/multipathInfo/lun-4/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"",subpath=config/storageDevice/multipathInfo/lun-3/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"",subpath=config/storageDevice/multipathInfo/lun-2/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70,subpath=config/storageDevice/multipathInfo/lun-1/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_PSP_FIXED, prefer=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0,subpath=config/storageDevice/multipathInfo/lun-0/policy",vmware,VCENTER41,HostMultipathInfoFixedLogicalUnitPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/multipathInfo/lun-26",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-25",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/multipathInfo/lun-24",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/multipathInfo/lun-23",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/multipathInfo/lun-22",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/multipathInfo/lun-21",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/multipathInfo/lun-20",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/multipathInfo/lun-19",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/multipathInfo/lun-18",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/multipathInfo/lun-17",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/multipathInfo/lun-16",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/multipathInfo/lun-15",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/multipathInfo/lun-14",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/multipathInfo/lun-13",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/multipathInfo/lun-12",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/multipathInfo/lun-11",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/multipathInfo/lun-10",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/multipathInfo/lun-9",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/multipathInfo/lun-8",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/multipathInfo/lun-7",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/multipathInfo/lun-6",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/multipathInfo/lun-5",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/multipathInfo/lun-4",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/multipathInfo/lun-3",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, key=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/multipathInfo/lun-2",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, key=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/multipathInfo/lun-1",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, key=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/multipathInfo/lun-0",vmware,VCENTER41,HostMultipathInfoLogicalUnit,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-26/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-25/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-24/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-23/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-22/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-21/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-20/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-19/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-18/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-17/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-16/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-15/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-14/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-13/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-12/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-11/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-10/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-9/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-8/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-7/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-6/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-5/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-4/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-3/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_DEFAULT_AA,subpath=config/storageDevice/multipathInfo/lun-2/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-1/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",policy=VMW_SATP_LOCAL,subpath=config/storageDevice/multipathInfo/lun-0/storageArrayTypePolicy",vmware,VCENTER41,HostMultipathInfoLogicalUnitStorageArrayTypePolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa604d4245323037, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a9800064724939504a6a43785a57644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-26/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a9800064724939504a6a43785a526d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-25/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a9800064724939504a6958332f46374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-24/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a9800064724939504a6958334c526b4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-23/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000d000060a980006471682f4f6f69386c3439614c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-22/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000a000060a980006471682f4f6f687366767a464c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-21/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000c000060a980006471682f4f6f6873667868654c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-20/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lun=key-vim.host.MultipathInfo.LogicalUnit-020009000060a980006471682f4f6f6873667673784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-19/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lun=key-vim.host.MultipathInfo.LogicalUnit-02000b000060a980006471682f4f6f6873667733724c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-18/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a9800064724939504a6743696f70374c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-17/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lun=key-vim.host.MultipathInfo.LogicalUnit-020008000060a980006471682f4f6f67436a456a624c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-16/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a9800064724939504a6743696d77394c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-15/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a9800064724939504a6743697465754c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-14/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lun=key-vim.host.MultipathInfo.LogicalUnit-020003000060a980006471682f4f6f67436a4234514c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-13/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a9800064724939504a6743696e79354c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-12/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a9800064724939504a6743696e53694c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-11/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a980006471682f4f6f67436a452d2d4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-10/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a980006471682f4f6f67436a414d444c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-9/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a980006471682f4f6f67436a2d4e484c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-8/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lun=key-vim.host.MultipathInfo.LogicalUnit-020006000060a980006471682f4f6f67436a44654f4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-7/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lun=key-vim.host.MultipathInfo.LogicalUnit-020001000060a9800064724939504a6743697144494c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-6/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lun=key-vim.host.MultipathInfo.LogicalUnit-020007000060a9800064724939504a6743696f4b384c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-5/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lun=key-vim.host.MultipathInfo.LogicalUnit-020002000060a9800064724939504a6743697166644c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-4/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lun=key-vim.host.MultipathInfo.LogicalUnit-020004000060a980006471682f4f6f67436a42584e4c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-3/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, isWorkingPath=True, key=""key-vim.host.MultipathInfo.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lun=key-vim.host.MultipathInfo.LogicalUnit-020005000060a980006471682f4f6f67436a4338784c554e202020, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-2/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lun=key-vim.host.MultipathInfo.LogicalUnit-0200000000500000e116f4aa704d4245323037, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-1/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, isWorkingPath=True, key=key-vim.host.MultipathInfo.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lun=key-vim.host.MultipathInfo.LogicalUnit-0005000000766d686261303a303a30, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active, state=active,subpath=config/storageDevice/multipathInfo/lun-0/path-0",vmware,VCENTER41,HostMultipathInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, pathState=active,subpath=config/multipathState/path-26",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, pathState=active,subpath=config/multipathState/path-25",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", pathState=active,subpath=config/multipathState/path-24",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", pathState=active,subpath=config/multipathState/path-23",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", pathState=active,subpath=config/multipathState/path-22",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", pathState=active,subpath=config/multipathState/path-21",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", pathState=active,subpath=config/multipathState/path-20",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", pathState=active,subpath=config/multipathState/path-19",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", pathState=active,subpath=config/multipathState/path-18",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", pathState=active,subpath=config/multipathState/path-17",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", pathState=active,subpath=config/multipathState/path-16",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", pathState=active,subpath=config/multipathState/path-15",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", pathState=active,subpath=config/multipathState/path-14",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", pathState=active,subpath=config/multipathState/path-13",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", pathState=active,subpath=config/multipathState/path-12",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", pathState=active,subpath=config/multipathState/path-11",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", pathState=active,subpath=config/multipathState/path-10",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", pathState=active,subpath=config/multipathState/path-9",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", pathState=active,subpath=config/multipathState/path-8",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", pathState=active,subpath=config/multipathState/path-7",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", pathState=active,subpath=config/multipathState/path-6",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", pathState=active,subpath=config/multipathState/path-5",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", pathState=active,subpath=config/multipathState/path-4",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", pathState=active,subpath=config/multipathState/path-3",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", pathState=active,subpath=config/multipathState/path-2",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", pathState=active,subpath=config/multipathState/path-1",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", pathState=active,subpath=config/multipathState/path-0",vmware,VCENTER41,HostMultipathStateInfoPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=879609348096, name=TEMPLATES, remoteHost=10.160.114.230, remotePath=/vol/vm_templates, type=NFS,subpath=config/fileSystemVolume/mountInfo-9/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",capacity=549755813888, name=ISO-NETAPP, remoteHost=10.160.100.10, remotePath=/vol/iso, type=NFS,subpath=config/fileSystemVolume/mountInfo-8/volume",vmware,VCENTER41,HostNasVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canSetPhysicalNicLinkSpeed=True, dhcpOnVnicSupported=True, dnsConfigSupported=True, ipRouteConfigSupported=True, ipV6Supported=True, nicTeamingPolicy=[loadbalance_ip;loadbalance_srcmac;loadbalance_srcid;failover_explicit], supportsNetworkHints=True, supportsNicTeaming=True, supportsVlan=True, usesServiceConsoleNic=False, vnicConfigSupported=True, vswitchConfigSupported=True,subpath=config/capabilities",vmware,VCENTER41,HostNetCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/offloadCapabilities",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/vswitch-0/spec/policy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-1/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",csumOffload=True, tcpSegmentation=True, zeroCopyXmit=True,subpath=config/network/portgroup-0/computedPolicy/offloadPolicy",vmware,VCENTER41,HostNetOffloadCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",atBootIpV6Enabled=False, ipV6Enabled=False,subpath=config/network",vmware,VCENTER41,HostNetworkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/vswitch-0/spec/policy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-1/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",allowPromiscuous=False, forgedTransmits=False, macChanges=False,subpath=config/network/portgroup-0/computedPolicy/security",vmware,VCENTER41,HostNetworkSecurityPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/vswitch-0/spec/policy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-1/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",enabled=False,subpath=config/network/portgroup-0/computedPolicy/shapingPolicy",vmware,VCENTER41,HostNetworkTrafficShapingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/vswitch-0/spec/policy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-1/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",checkBeacon=False, checkDuplex=False, checkErrorPercent=False, checkSpeed=minimum, fullDuplex=False, percentage=0, speed=10,subpath=config/network/portgroup-0/computedPolicy/nicTeaming/failureCriteria",vmware,VCENTER41,HostNicFailureCriteria,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3;vmnic7],subpath=config/network/vswitch-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic3], standbyNic=[vmnic7],subpath=config/network/portgroup-1/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/spec/policy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",activeNic=[vmnic7], standbyNic=[vmnic3],subpath=config/network/portgroup-0/computedPolicy/nicTeaming/nicOrder",vmware,VCENTER41,HostNicOrderPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/vswitch-0/spec/policy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-1/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",notifySwitches=True, policy=loadbalance_srcid, reversePolicy=True, rollingOrder=False,subpath=config/network/portgroup-0/computedPolicy/nicTeaming",vmware,VCENTER41,HostNicTeamingPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",server=[10.160.20.3],subpath=config/dateTimeInfo/ntpConfig",vmware,VCENTER41,HostNtpConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numNodes=2, type=Fake Numa,subpath=hardware/numaInfo",vmware,VCENTER41,HostNumaInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[23;22;21;20;19;18;17;16;15;14;13;12], memoryRangeBegin=4294967296, memoryRangeLength=48318382080, typeId=1,subpath=hardware/numaInfo/numaNode-1",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuID=[11;10;9;8;7;6;5;4;3;2;1;0], memoryRangeBegin=52613349376, memoryRangeLength=51141971968, typeId=0,subpath=hardware/numaInfo/numaNode-0",vmware,VCENTER41,HostNumaNode,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Degrees C, currentReading=2100, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Amps, currentReading=88, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Volts, currentReading=20000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",baseUnits=Watts, currentReading=19600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=summary/runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 CMOS Battery 0: Failed - Deassert, sensorType=Battery, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-210",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-209",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VCORE PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-208",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 0.75 VTT CPU2 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-207",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 0.75 VTT CPU1 PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-206",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-205",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.8V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-204",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 3.3V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-203",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 5V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-202",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-201",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 MEM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-200",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-199",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 VTT PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-198",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 0.9V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-197",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-196",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 1.8 PLL PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-195",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 8.0 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-194",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.1 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-193",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 LOM PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-192",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.0 AUX PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-191",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 1.05 V PG 0 - State deasserted, sensorType=voltage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-190",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-189",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-188",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 1 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-187",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Configuration Error - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-186",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: Thermal Trip - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-185",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Processor 2 Status 0: IERR - Deassert, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-184",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-183",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Power Supply AC lost - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-182",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-181",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-180",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Config Error: Vendor Mismatch - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-179",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=Power Supply 2 Status 0: Power Supply AC lost - Assert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-178",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Predictive failure - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-177",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2 Status 0: Failure detected - Deassert, sensorType=power, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-176",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Riser Config 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-175",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power cycle - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-174",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Power down - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-173",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Hard reset - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-172",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 OS Watchdog 0: Timer expired - Deassert, sensorType=Watchdog, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-171",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Intrusion 0: General Chassis intrusion - Deassert, sensorType=Chassis, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-170",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Fan Redundancy 0 - Fully redundant, sensorType=fan, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-169",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-168",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-167",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-166",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-165",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-164",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-163",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 0: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-162",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-161",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-160",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-159",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-158",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-157",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-156",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 1: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-155",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-154",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-153",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-152",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-151",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-150",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-149",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 2: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-148",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-147",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-146",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-145",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-144",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-143",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-142",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 3: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-141",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-140",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-139",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-138",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-137",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-136",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-135",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 4: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-134",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-133",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-132",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-131",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-130",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-129",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-128",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 5: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-127",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-126",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-125",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-124",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-123",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-122",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-121",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 6: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-120",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild Aborted - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-119",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Rebuild In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-118",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Failed Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-117",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: In Critical Array - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-116",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Parity Check In Progress - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-115",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Predictive Failure - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-114",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Drive 7: Drive Fault - Deassert, sensorType=Storage, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-113",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS A 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-112",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Disk Drive Bay 1 Cable SAS B 0: Config Error - Deassert, sensorType=Cable/Interconnect, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-111",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 2: Off Line-Disabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-110",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=870000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1: Running/Full Power-Enabled, sensorType=power, unitModifier=-3,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-109",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-108",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-107",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-106",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-105",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-104",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-103",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb device firmware 1.5-1, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-102",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 device firmware 5.2.3 NCSI 2.0.10, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-101",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-100",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-99",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-98",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-97",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-96",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-95",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=igb driver 1.3.19.12.2-1vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-94",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=bnx2 driver 2.0.7d-3vmw, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-93",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptspi 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-92",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-vmklinux-vmklinux 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-91",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ehci-ehci-hcd 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-90",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-sas 400.4.0.14.1-18vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-89",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-serverworks 400.0.3.7.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-88",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000e 400.1.1.2.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-87",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ips 400.7.12.06.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-86",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-enic 400.1.4.0.261-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-85",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-igb 400.1.3.19.12.2-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-84",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-devintf 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-83",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ioat-ioat 400.2.15.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-82",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cnic 400.1.9.7d.rc2.3.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-81",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-cdc-ether 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-80",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-promise 400.1.04.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-79",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-block-cciss 400.3.6.14.10.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-78",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-sample-iscsi 400.1.0.0-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-77",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-hpsa 400.3.6.14.45-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-76",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-tg3 400.3.86.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-75",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-pseudo-char-dev 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-74",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-fnic 400.1.1.0.113.2-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-73",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aic79xx 400.3.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-72",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-msghandler 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-71",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid2 400.2.00.4.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-70",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-firmware 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-69",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ipmi-ipmi-si-drv 400.39.2.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-68",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-usbnet 400.1.0.0.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-67",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-aacraid 400.4.1.1.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-66",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-random 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-65",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-tpm-tis 400.0.0.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-64",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usbcore-usb 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-63",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-sil 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-62",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-cmd64x 400.0.2.1.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-61",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-megaraid-mbox 400.2.20.5.1.4-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-60",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-usb-storage-usb-storage 400.1.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-59",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-sky2 400.1.20-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-58",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=qlogic-fchba-provider 400.1.1.8-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-57",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-nv 400.2.0.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-56",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-bnx2i 400.1.8.11t5.rc2.8.1-4vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-55",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mpt2sas 400.04.255.03.00.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-54",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-tools-light 4.1.0-1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-53",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-e1000 400.8.0.3.2-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-52",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-amd 400.0.2.4.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-51",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2 400.2.0.7d-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-50",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-ixgbe 400.2.0.38.2.5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-49",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-libata 400.2.00.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-48",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-bnx2x 400.1.54.1.v41.1-2vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-47",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-pdc2027x 400.0.74ac5.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-46",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=lsi-provider 410.04.V0.24-140815 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-45",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ata-piix 400.2.00ac6.1-3vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-44",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-adp94xx 400.1.0.8.12.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-43",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-forcedeth 400.0.61.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-42",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-hpt3x2n 400.0.3.0.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-41",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-mptsas 400.4.21.00.01.1-6vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-40",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-nx-nic 400.4.0.550.1-1vmw.1.4.348481 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-39",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-ethdrv 400.5.0.3-R3OEM 2011-04-15 22:24:26.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-38",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-sil680 400.0.3.2.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-37",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-sata-svw 400.2.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-36",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-iscsi-linux 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-35",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=emulex-cim-provider 410.2.0.32.1-207424 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-34",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-net-s2io 400.2.1.4.13427.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-33",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-char-hpcru 400.1.1.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-32",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-via 400.0.1.14.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-31",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-uhci-usb-uhci 400.3.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-30",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla4xxx 400.5.01.03.1-10vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-29",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-lpfc820 400.8.2.1.30.1-58vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-28",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ohci-usb-ohci 400.1.0.0.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-27",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-sata-ahci 400.2.0.0.1-5vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-26",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-ata-pata-atiixp 400.0.4.3.1-1vmw.1.4.348481 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-25",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-net-vxge 400.2.0.28.21239-1OEM 2010-08-27 19:46:27.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-24",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=oem-vmware-esx-drivers-scsi-3w-9xxx 400.2.26.08.036vm40-1OEM 2010-08-20 05:42:32.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-23",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-hid-hid 400.2.6.0.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-22",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=vmware-esx-drivers-scsi-qla2xxx 400.831.k1.28.1-1vmw.1.4.348481, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-21",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Controller 0 (SAS6IR) 00.25.47.00.06.22.03.00 (Package); 00.25.47.00(Fw) "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-20",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi Alternate Boot Bank 4.1.0 build-348481 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-19",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""VMware, Inc. VMware ESXi 4.1.0 build-348481 2011-01-12 00:00:00.000"", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-18",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=Dell Inc. System BIOS 3.0.0 2011-01-31 00:00:00.000, sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-17",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=""Dell Inc. BMC Firmware (node 0) 46:10000 1.70 "", sensorType=Software Components, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-16",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-15",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-14",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU2 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-13",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-3 Cache is 12582912 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-12",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-2 Cache is 1572864 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-11",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=green:Sensor is operating under normal conditions, name=CPU1 Level-1 Cache is 196608 B, sensorType=Processors, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-10",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",currentReading=0, healthState=red:Sensor is operating under critical conditions, name=VMware Rollup Health State, sensorType=system, unitModifier=0,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-9",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Degrees C, currentReading=1600, healthState=green:Sensor is operating under normal conditions, name=System Board 1 Ambient Temp --- Normal, sensorType=temperature, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-8",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 1 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-7",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 2 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-6",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 3 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-5",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 4 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-4",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=RPM, currentReading=360000, healthState=green:Sensor is operating under normal conditions, name=System Board 1 FAN 5 RPM --- Normal, sensorType=fan, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-3",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Amps, currentReading=80, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Current --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-2",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Volts, currentReading=21000, healthState=green:Sensor is operating under normal conditions, name=Power Supply 1 Voltage --- Normal, sensorType=voltage, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-1",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",baseUnits=Watts, currentReading=16800, healthState=green:Sensor is operating under normal conditions, name=System Board 1 System Level --- Normal, sensorType=power, unitModifier=-2,subpath=runtime/healthSystemRuntime/systemHealthInfo/numericSensorInfo-0",vmware,VCENTER41,HostNumericSensorInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=3, classId=256, deviceId=88, deviceName=Dell SAS 6/iR Integrated, function=0, id=03:00.0, slot=0, subDeviceId=7952, subVendorId=4136, vendorId=4096, vendorName=LSI Logic / Symbios Logic,subpath=hardware/pciDevice-82",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=ff:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-81",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=ff:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-80",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=ff:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-79",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=ff:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-78",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=ff:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-77",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=ff:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-76",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=ff:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-75",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=ff:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-74",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=ff:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-73",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=ff:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-72",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=ff:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-71",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=ff:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-70",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=ff:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-69",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=ff:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-68",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=ff:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-67",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=ff:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-66",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=ff:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-65",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=ff:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-64",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=ff:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-63",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=ff:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-62",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=02:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-61",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=2, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=02:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-60",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=1, id=01:00.1, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-59",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=1, classId=512, deviceId=5689, deviceName=PowerEdge R710 BCM5709 Gigabit Ethernet, function=0, id=01:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=5348, vendorName=Broadcom Corporation,subpath=hardware/pciDevice-58",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=257, deviceId=10529, deviceName=PowerEdge R710 SATA IDE Controller, function=2, id=00:1f.2, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-57",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1537, deviceId=10520, deviceName=""82801IB (ICH9) LPC Interface Controller"", function=0, id=00:1f.0, slot=31, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-56",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=9294, deviceName=82801 PCI Bridge, function=0, id=00:1e.0, slot=30, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-55",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10554, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1d.7, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-54",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10549, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1d.1, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-53",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10548, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1d.0, slot=29, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-52",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10556, deviceName=PowerEdge R710 USB EHCI Controller, function=7, id=00:1a.7, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-51",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10552, deviceName=PowerEdge R710 USB UHCI Controller, function=1, id=00:1a.1, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-50",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=3075, deviceId=10551, deviceName=PowerEdge R710 USB UHCI Controller, function=0, id=00:1a.0, slot=26, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-49",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13347, deviceName=5520/5500/X58 I/O Hub Control Status and RAS Registers, function=2, id=00:14.2, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-48",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13346, deviceName=5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers, function=1, id=00:14.1, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-47",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=2048, deviceId=13358, deviceName=5520/5500/X58 I/O Hub System Management Registers, function=0, id=00:14.0, slot=20, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-46",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13328, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 9, function=0, id=00:09.0, slot=9, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-45",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13326, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 7, function=0, id=00:07.0, slot=7, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-44",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13325, deviceName=5520/X58 I/O Hub PCI Express Root Port 6, function=0, id=00:06.0, slot=6, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-43",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13324, deviceName=5520/X58 I/O Hub PCI Express Root Port 5, function=0, id=00:05.0, slot=5, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-42",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13323, deviceName=5520/X58 I/O Hub PCI Express Root Port 4, function=0, id=00:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-41",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13322, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 3, function=0, id=00:03.0, slot=3, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-40",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1540, deviceId=13320, deviceName=5520/5500/X58 I/O Hub PCI Express Root Port 1, function=0, id=00:01.0, slot=1, subDeviceId=0, subVendorId=0, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-39",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=0, classId=1536, deviceId=13318, deviceName=5520 I/O Hub to ESI Port, function=0, id=00:00.0, slot=0, subDeviceId=565, subVendorId=4136, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-38",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=ff:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-37",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=ff:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-36",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=ff:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-35",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-1, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=ff:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-34",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11699, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control, function=3, id=fe:06.3, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-33",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11698, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Rank, function=2, id=fe:06.2, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-32",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11697, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Address, function=1, id=fe:06.1, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-31",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11696, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 2 Control, function=0, id=fe:06.0, slot=6, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-30",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11691, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control, function=3, id=fe:05.3, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-29",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11690, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Rank, function=2, id=fe:05.2, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-28",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11689, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Address, function=1, id=fe:05.1, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-27",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11688, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 1 Control, function=0, id=fe:05.0, slot=5, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-26",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11683, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control, function=3, id=fe:04.3, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-25",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11682, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Rank, function=2, id=fe:04.2, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-24",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11681, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Address, function=1, id=fe:04.1, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-23",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11680, deviceName=Xeon 5600 Series Integrated Memory Controller Channel 0 Control, function=0, id=fe:04.0, slot=4, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-22",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11676, deviceName=Xeon 5600 Series Integrated Memory Controller Test Registers, function=4, id=fe:03.4, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-21",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11674, deviceName=Xeon 5600 Series Integrated Memory Controller RAS Registers, function=2, id=fe:03.2, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-20",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11673, deviceName=Xeon 5600 Series Integrated Memory Controller Target Address Decoder, function=1, id=fe:03.1, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-19",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11672, deviceName=Xeon 5600 Series Integrated Memory Controller Registers, function=0, id=fe:03.0, slot=3, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-18",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11669, deviceName=Xeon 5600 Series QPI Physical 1, function=5, id=fe:02.5, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-17",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11668, deviceName=Xeon 5600 Series QPI Link 1, function=4, id=fe:02.4, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-16",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11667, deviceName=Xeon 5600 Series Mirror Port Link 1, function=3, id=fe:02.3, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-15",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11666, deviceName=Xeon 5600 Series Mirror Port Link 0, function=2, id=fe:02.2, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-14",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11665, deviceName=Xeon 5600 Series QPI Physical 0, function=1, id=fe:02.1, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-13",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11664, deviceName=Xeon 5600 Series QPI Link 0, function=0, id=fe:02.0, slot=2, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-12",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11649, deviceName=Xeon 5600 Series QuickPath Architecture System Address Decoder, function=1, id=fe:00.1, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-11",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=-2, classId=1536, deviceId=11376, deviceName=Xeon 5600 Series QuickPath Architecture Generic Non-core Registers, function=0, id=fe:00.0, slot=0, subDeviceId=-32634, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-10",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=11, classId=768, deviceId=1330, deviceName=PowerEdge R710 MGA G200eW WPCM450, function=0, id=0b:03.0, slot=3, subDeviceId=565, subVendorId=4136, vendorId=4139, vendorName=""Matrox Graphics, Inc."",subpath=hardware/pciDevice-9",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=1, id=09:00.1, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-8",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=9, classId=512, deviceId=1, deviceName=Coraid EtherDrive HBA, function=0, id=09:00.0, slot=0, subDeviceId=4263, subVendorId=6994, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-7",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=08:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-6",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=8, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=08:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-5",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=1, id=07:00.1, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-4",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=7, classId=512, deviceId=4328, deviceName=82576 Gigabit Network Connection, function=0, id=07:00.0, slot=0, subDeviceId=-24532, subVendorId=-32634, vendorId=-32634, vendorName=Intel Corporation,subpath=hardware/pciDevice-3",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:04.0, slot=4, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-2",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=6, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=06:02.0, slot=2, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-1",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bus=5, classId=1540, deviceId=-32744, deviceName=PES12N3A PCI Express Switch, function=0, id=05:00.0, slot=0, subDeviceId=0, subVendorId=0, vendorId=4381, vendorName=""Integrated Device Technology, Inc."",subpath=hardware/pciDevice-0",vmware,VCENTER41,HostPciDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-82",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-81",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-80",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-79",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-78",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-77",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-76",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-75",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-74",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-73",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-72",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-71",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-70",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-69",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-68",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-67",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-66",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-65",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-64",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-63",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-62",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-61",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-60",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=ff:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-59",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-58",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-57",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-56",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-55",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-54",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-53",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-52",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-51",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-50",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-49",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-48",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-47",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-46",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-45",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-44",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-43",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.5, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-42",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.4, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-41",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.3, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-40",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-39",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-38",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-37",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-36",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=fe:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-35",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1e.0, id=0b:03.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-34",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-33",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:07.0, id=09:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-32",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.1, id=08:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-31",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=08:00.0, id=08:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-30",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.1, id=07:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-29",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=07:00.0, id=07:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-28",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-27",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=06:02.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-26",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=05:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-25",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=03:00.0, id=03:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-24",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-23",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:03.0, id=02:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-22",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-21",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:01.0, id=01:00.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-20",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1f.2, id=00:1f.2, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-19",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1f.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-18",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:1e.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-17",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.7, id=00:1d.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-16",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.1, id=00:1d.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-15",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1d.0, id=00:1d.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-14",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.7, id=00:1a.7, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-13",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.1, id=00:1a.1, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-12",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dependentDevice=00:1a.0, id=00:1a.0, passthruActive=False, passthruCapable=True, passthruEnabled=False,subpath=config/pciPassthruInfo-11",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.2, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-10",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.1, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-9",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:14.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-8",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:09.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-7",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:07.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-6",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:06.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-5",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:05.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-4",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:04.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-3",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:03.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-2",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:01.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-1",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=00:00.0, passthruActive=False, passthruCapable=False, passthruEnabled=False,subpath=config/pciPassthruInfo-0",vmware,VCENTER41,HostPciPassthruInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.PlugStoreTopology.Adapter-vmhba34, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/adapter-4",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.PlugStoreTopology.Adapter-vmhba33,subpath=config/storageDevice/plugStoreTopology/adapter-3",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.PlugStoreTopology.Adapter-vmhba2,subpath=config/storageDevice/plugStoreTopology/adapter-2",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.PlugStoreTopology.Adapter-vmhba1, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/adapter-1",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.PlugStoreTopology.Adapter-vmhba0, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/adapter-0",vmware,VCENTER41,HostPlugStoreTopologyAdapter,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"",subpath=config/storageDevice/plugStoreTopology/device-26",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d]"",subpath=config/storageDevice/plugStoreTopology/device-25",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, lun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b]"",subpath=config/storageDevice/plugStoreTopology/device-24",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637]"",subpath=config/storageDevice/plugStoreTopology/device-23",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961]"",subpath=config/storageDevice/plugStoreTopology/device-22",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372]"",subpath=config/storageDevice/plugStoreTopology/device-21",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46]"",subpath=config/storageDevice/plugStoreTopology/device-20",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, lun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378]"",subpath=config/storageDevice/plugStoreTopology/device-19",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"",subpath=config/storageDevice/plugStoreTopology/device-18",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, lun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037]"",subpath=config/storageDevice/plugStoreTopology/device-17",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, lun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38]"",subpath=config/storageDevice/plugStoreTopology/device-16",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e]"",subpath=config/storageDevice/plugStoreTopology/device-15",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d]"",subpath=config/storageDevice/plugStoreTopology/device-14",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48]"",subpath=config/storageDevice/plugStoreTopology/device-13",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, lun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369]"",subpath=config/storageDevice/plugStoreTopology/device-12",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, lun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739]"",subpath=config/storageDevice/plugStoreTopology/device-11",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f]"",subpath=config/storageDevice/plugStoreTopology/device-10",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451]"",subpath=config/storageDevice/plugStoreTopology/device-9",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878]"",subpath=config/storageDevice/plugStoreTopology/device-8",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62]"",subpath=config/storageDevice/plugStoreTopology/device-7",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, lun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935]"",subpath=config/storageDevice/plugStoreTopology/device-6",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44]"",subpath=config/storageDevice/plugStoreTopology/device-5",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, lun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575]"",subpath=config/storageDevice/plugStoreTopology/device-4",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, lun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449]"",subpath=config/storageDevice/plugStoreTopology/device-3",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, lun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, path=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664]"",subpath=config/storageDevice/plugStoreTopology/device-2",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, lun=key-vim.host.ScsiLun-0005000000766d686261303a303a30, path=[key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0],subpath=config/storageDevice/plugStoreTopology/device-1",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, lun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, path=[key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70],subpath=config/storageDevice/plugStoreTopology/device-0",vmware,VCENTER41,HostPlugStoreTopologyDevice,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, lunNumber=0, name=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-26",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-25",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-24",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-23",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", lunNumber=13, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-22",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", lunNumber=11, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-21",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", lunNumber=10, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-20",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", lunNumber=9, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-19",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", lunNumber=12, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-18",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-17",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-16",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-15",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-14",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", lunNumber=5, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-13",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-12",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-11",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", lunNumber=6, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-10",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", lunNumber=3, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-9",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", lunNumber=1, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-8",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-7",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-6",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", lunNumber=8, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-5",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", lunNumber=2, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-4",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", lunNumber=4, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"", targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-3",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba34, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020, key=""key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", lunNumber=7, name=""iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d"", target=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"", targetNumber=1,subpath=config/storageDevice/plugStoreTopology/path-2",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba1, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037, key=key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, lunNumber=0, name=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, target=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-1",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.PlugStoreTopology.Adapter-vmhba0, channelNumber=0, device=key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30, key=key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, lunNumber=0, name=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, target=key-vim.host.PlugStoreTopology.Target-sata.0:0, targetNumber=0,subpath=config/storageDevice/plugStoreTopology/path-0",vmware,VCENTER41,HostPlugStoreTopologyPath,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764]"", device=[key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa604d4245323037;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",claimedPath=""[key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a414d44;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a423451;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a42584e;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a433878;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a44654f;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a452d2d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a456a62;key-vim.host.PlugStoreTopology.Path-sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0;key-vim.host.PlugStoreTopology.Path-sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696d7739;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e5369;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696e7935;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f4b38;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6743696f7037;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369714449;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369716664;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a674369746575;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a526d;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6a43785a5764;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958332f4637;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000-naa.60a9800064724939504a6958334c526b;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f69386c343961;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767378;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366773372;key-vim.host.PlugStoreTopology.Path-iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366786865]"", device=[key-vim.host.PlugStoreTopology.Device-0200000000500000e116f4aa704d4245323037;key-vim.host.PlugStoreTopology.Device-0005000000766d686261303a303a30;key-vim.host.PlugStoreTopology.Device-020009000060a980006471682f4f6f6873667673784c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a980006471682f4f6f687366767a464c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a980006471682f4f6f6873667733724c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a980006471682f4f6f6873667868654c554e202020;key-vim.host.PlugStoreTopology.Device-02000b000060a9800064724939504a6a43785a526d4c554e202020;key-vim.host.PlugStoreTopology.Device-02000c000060a9800064724939504a6a43785a57644c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a980006471682f4f6f67436a2d4e484c554e202020;key-vim.host.PlugStoreTopology.Device-020001000060a9800064724939504a6743697144494c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a980006471682f4f6f67436a414d444c554e202020;key-vim.host.PlugStoreTopology.Device-020002000060a9800064724939504a6743697166644c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a980006471682f4f6f67436a4234514c554e202020;key-vim.host.PlugStoreTopology.Device-020003000060a9800064724939504a6743697465754c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a980006471682f4f6f67436a42584e4c554e202020;key-vim.host.PlugStoreTopology.Device-020004000060a9800064724939504a6743696d77394c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a980006471682f4f6f67436a4338784c554e202020;key-vim.host.PlugStoreTopology.Device-020005000060a9800064724939504a6743696e53694c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a980006471682f4f6f67436a44654f4c554e202020;key-vim.host.PlugStoreTopology.Device-020006000060a9800064724939504a6743696e79354c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a980006471682f4f6f67436a452d2d4c554e202020;key-vim.host.PlugStoreTopology.Device-020007000060a9800064724939504a6743696f4b384c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a980006471682f4f6f67436a456a624c554e202020;key-vim.host.PlugStoreTopology.Device-020008000060a9800064724939504a6743696f70374c554e202020;key-vim.host.PlugStoreTopology.Device-020009000060a9800064724939504a6958334c526b4c554e202020;key-vim.host.PlugStoreTopology.Device-02000a000060a9800064724939504a6958332f46374c554e202020;key-vim.host.PlugStoreTopology.Device-02000d000060a980006471682f4f6f69386c3439614c554e202020], key=key-vim.host.PlugStoreTopology.Plugin-NMP, name=NMP,subpath=config/storageDevice/plugStoreTopology/plugin-1",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Plugin-MASK_PATH, name=MASK_PATH,subpath=config/storageDevice/plugStoreTopology/plugin-0",vmware,VCENTER41,HostPlugStoreTopologyPlugin,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa62,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574419639,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-3",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=""key-vim.host.PlugStoreTopology.Target-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000"",subpath=config/storageDevice/plugStoreTopology/target-2",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sas.500000e116f4aa72,subpath=config/storageDevice/plugStoreTopology/target-1",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PlugStoreTopology.Target-sata.0:0,subpath=config/storageDevice/plugStoreTopology/target-0",vmware,VCENTER41,HostPlugStoreTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI1, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-1",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup-iSCSI2, vswitch=key-vim.host.VirtualSwitch-vSwitch1,subpath=config/network/portgroup-0",vmware,VCENTER41,HostPortGroup,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:73:10:77], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:7d:3e:c4], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777220, mac=[00:50:56:79:05:e5], type=host,subpath=config/network/portgroup-1/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.PortGroup.Port-16777221, mac=[00:50:56:70:0e:7d], type=host,subpath=config/network/portgroup-0/port-0",vmware,VCENTER41,HostPortGroupPort,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI1, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-1/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=iSCSI2, vlanId=0, vswitchName=vSwitch1,subpath=config/network/portgroup-0/spec",vmware,VCENTER41,HostPortGroupSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemInfo/currentPolicy",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",description=PowerPolicy.off.description, key=0, name=PowerPolicy.off.name, shortName=off,subpath=config/powerSystemCapability/availablePolicy-0",vmware,VCENTER41,HostPowerPolicy,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=233, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[263:dvUplink1;264:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=235, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[137:dvUplink1;138:dvUplink2;139:dvUplink3;140:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Management, dvsUuid=af 21 12 50 34 22 c8 79-a6 cf 2a 49 49 a0 ca d2, key=DvsPortset-2, mtu=1500, numPorts=256, numPortsAvailable=252, pnic=[key-vim.host.PhysicalNic-vmnic0;key-vim.host.PhysicalNic-vmnic4], uplinkPort=[267:dvUplink1;268:dvUplink2],subpath=config/network/proxySwitch-2",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=vMotion-FT, dvsUuid=ae db 12 50 9b 5d 71 9b-7a 94 7c 93 5a 4a af 36, key=DvsPortset-1, mtu=1500, numPorts=256, numPortsAvailable=251, pnic=[key-vim.host.PhysicalNic-vmnic1;key-vim.host.PhysicalNic-vmnic5], uplinkPort=[265:dvUplink1;266:dvUplink2],subpath=config/network/proxySwitch-1",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",dvsName=Splunk Virtual Machines, dvsUuid=a8 2d 12 50 72 f0 9b b7-af b3 0d 00 a8 b1 af 0d, key=DvsPortset-0, mtu=1500, numPorts=256, numPortsAvailable=234, pnic=[key-vim.host.PhysicalNic-vmnic2;key-vim.host.PhysicalNic-vmnic6], uplinkPort=[141:dvUplink1;142:dvUplink2;143:dvUplink3;144:dvUplink4],subpath=config/network/proxySwitch-0",vmware,VCENTER41,HostProxySwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",bootTime=2012-02-18T00:23:17.507Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=summary/runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",bootTime=2012-02-17T23:14:41.972999Z, connectionState=connected, inMaintenanceMode=False, powerState=poweredOn, standbyMode=none,subpath=runtime",vmware,VCENTER41,HostRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=naa.500000e116f4aa60, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f69386c343961, partition=1,subpath=config/fileSystemVolume/mountInfo-7/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a5764, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6a43785a526d, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958332f4637, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6958334c526b, partition=1,subpath=config/fileSystemVolume/mountInfo-6/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a456a62, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a452d2d, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a44654f, partition=1,subpath=config/fileSystemVolume/mountInfo-5/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369746575, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369716664, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a674369714449, partition=1,subpath=config/fileSystemVolume/mountInfo-4/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f7037, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696f4b38, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e7935, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696e5369, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a9800064724939504a6743696d7739, partition=1,subpath=config/fileSystemVolume/mountInfo-3/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366786865, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366773372, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767a46, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f687366767378, partition=1,subpath=config/fileSystemVolume/mountInfo-2/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a433878, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-4",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a42584e, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-3",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a423451, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-2",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a414d44, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-1",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.60a980006471682f4f6f67436a2d4e48, partition=1,subpath=config/fileSystemVolume/mountInfo-1/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=naa.500000e116f4aa70, partition=1,subpath=config/fileSystemVolume/mountInfo-0/volume/extent-0",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",diskName=mpx.vmhba32:C0:T0:L0, partition=7,subpath=config/activeDiagnosticPartition/id",vmware,VCENTER41,HostScsiDiskPartition,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.InternetScsiHba-vmhba34, key=key-vim.host.ScsiTopology.Interface-vmhba34,subpath=config/storageDevice/scsiTopology/adapter-4",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba33, key=key-vim.host.ScsiTopology.Interface-vmhba33,subpath=config/storageDevice/scsiTopology/adapter-3",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.ParallelScsiHba-vmhba2, key=key-vim.host.ScsiTopology.Interface-vmhba2,subpath=config/storageDevice/scsiTopology/adapter-2",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba1, key=key-vim.host.ScsiTopology.Interface-vmhba1,subpath=config/storageDevice/scsiTopology/adapter-1",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",adapter=key-vim.host.BlockHba-vmhba0, key=key-vim.host.ScsiTopology.Interface-vmhba0,subpath=config/storageDevice/scsiTopology/adapter-0",vmware,VCENTER41,HostScsiTopologyInterface,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa604d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000d000060a980006471682f4f6f69386c3439614c554e202020, lun=13, scsiLun=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-12",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a980006471682f4f6f687366767a464c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a980006471682f4f6f6873667868654c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a980006471682f4f6f6873667673784c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a980006471682f4f6f6873667733724c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a980006471682f4f6f67436a456a624c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a980006471682f4f6f67436a4234514c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a980006471682f4f6f67436a414d444c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a980006471682f4f6f67436a44654f4c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a980006471682f4f6f67436a42584e4c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a980006471682f4f6f67436a4338784c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-1/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000c000060a9800064724939504a6a43785a57644c554e202020, lun=12, scsiLun=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-11",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000b000060a9800064724939504a6a43785a526d4c554e202020, lun=11, scsiLun=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-10",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-02000a000060a9800064724939504a6958332f46374c554e202020, lun=10, scsiLun=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-9",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020009000060a9800064724939504a6958334c526b4c554e202020, lun=9, scsiLun=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-8",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020008000060a9800064724939504a6743696f70374c554e202020, lun=8, scsiLun=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-7",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020004000060a9800064724939504a6743696d77394c554e202020, lun=4, scsiLun=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-6",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020003000060a9800064724939504a6743697465754c554e202020, lun=3, scsiLun=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-5",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020006000060a9800064724939504a6743696e79354c554e202020, lun=6, scsiLun=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-4",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020005000060a9800064724939504a6743696e53694c554e202020, lun=5, scsiLun=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-3",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020001000060a9800064724939504a6743697144494c554e202020, lun=1, scsiLun=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-2",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020007000060a9800064724939504a6743696f4b384c554e202020, lun=7, scsiLun=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-1",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-020002000060a9800064724939504a6743697166644c554e202020, lun=2, scsiLun=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020,subpath=config/storageDevice/scsiTopology/adapter-4/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0200000000500000e116f4aa704d4245323037, lun=0, scsiLun=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037,subpath=config/storageDevice/scsiTopology/adapter-1/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a30, lun=0, scsiLun=key-vim.host.ScsiLun-0005000000766d686261303a303a30,subpath=config/storageDevice/scsiTopology/adapter-0/target-0/lun-0",vmware,VCENTER41,HostScsiTopologyLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:1, target=1,subpath=config/storageDevice/scsiTopology/adapter-4/target-1",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba34:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-4/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba1:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-1/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.ScsiTopology.Target-vmhba0:0:0, target=0,subpath=config/storageDevice/scsiTopology/adapter-0/target-0",vmware,VCENTER41,HostScsiTopologyTarget,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=vmware-vpxa, label=VMware vCenter Agent, policy=on, required=False, ruleset=[vpxHeartbeat], running=True, uninstallable=False,subpath=config/service/service-8",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=ntpd, label=NTP Daemon, policy=automatic, required=False, ruleset=[ntpClient], running=True, uninstallable=False,subpath=config/service/service-7",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=netlogond, label=""Network Login Server (Active Directory Service)"", policy=off, required=False, ruleset=[netlogond], running=False, uninstallable=False,subpath=config/service/service-6",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lwiod, label=""I/O Redirector (Active Directory Service)"", policy=off, required=False, ruleset=[lwiod], running=False, uninstallable=False,subpath=config/service/service-5",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lsassd, label=""Local Security Authentication Server (Active Directory Service)"", policy=off, required=False, ruleset=[lsassd], running=False, uninstallable=False,subpath=config/service/service-4",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=lbtd, label=lbtd, policy=on, required=False, ruleset=[lbtd], running=True, uninstallable=False,subpath=config/service/service-3",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM-SSH, label=""Remote Tech Support (SSH)"", policy=on, required=False, ruleset=[TSM-SSH], running=True, uninstallable=False,subpath=config/service/service-2",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=TSM, label=Local Tech Support, policy=on, required=False, ruleset=[TSM], running=True, uninstallable=False,subpath=config/service/service-1",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=DCUI, label=Direct Console UI, policy=on, required=False, ruleset=[DCUI], running=True, uninstallable=False,subpath=config/service/service-0",vmware,VCENTER41,HostService,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",softwareInternetScsiEnabled=True,subpath=config/storageDevice",vmware,VCENTER41,HostStorageDeviceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=summary/runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 7 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-9",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 6 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-8",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 5 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-7",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 4 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-6",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 3 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-5",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 2 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-4",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 1 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-3",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Port 0 on Controller 0, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-2",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=Drive 0 in enclosure 0 on controller 0 Fw: D905 - UNCONFIGURED GOOD, status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-1",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",name=""Controller 0 (SAS6IR)"", status=Green:Physical element is functioning as expected,subpath=runtime/healthSystemRuntime/hardwareStatusInfo/storageStatusInfo-0",vmware,VCENTER41,HostStorageElementInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-1664;vm-2022;vm-744;vm-1667;vm-385;vm-1836;vm-1001;vm-687;vm-1647;vm-480;vm-874;vm-281;vm-885;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1715;vm-1493;vm-1447;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;SC-WIN7-CLEAN;sc-centos-pciContRT-Current;io-qa-splunk;sushant_sandbox_centos2;perfy22;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;soln-am-centos-pm;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;soln_vmware_centos_5.6;qasvwin8r2x64-1;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;perfy67;jyun_test_empty;qasvwin7x64-HK1;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host6.foobar.com, overallStatus=green,vms=""vm-237;vm-1528;vm-1079;vm-1678;vm-1400;vm-975;vm-2502;vm-2556;vm-1522;vm-1375;vm-1187;vm-2498;vm-1934;vm-408;vm-2307;vm-1953;vm-1760;vm-1731;vm-1823;vm-824;vm-358;vm-1971;vm-1478;vm-2303;vm-1960;vm-1309;vm-1492;vm-1931;vm-985;vm-1970"",vmnames=""SOLN-W2008R2-5;beer.sv.splunk.com;soln-essNightly-BieberLR;tlee-rh5;soln-es2.0.0-4.3;VMware HealthAnalyzer;Centos6.2-64Sh01;testad;ivanhook-centos;bamboo-24;rhel6-64bit-p;Centos6.2-64Idx01;gen-win2008r2x64-CN-Trad;perfy39;se-vcenter;iv-wintest;qatwwin3rx64-3;ADH-W2k8R2-TPL;gen-fbsd81x86;soln-am-centos-dev2;perfy03;jason-ubuntu-2;btan_clone_nightly2n2b_FA;splunk_for_vmware_forwarder_appliance_ga-1.0-120502aLEAVE;splunk_for_vmware_forwarder_appliance_beta2-1.0-120403a;qa-vcent42x86;jtsai_fa_1;gen-win7x32-ultimate;soln-btsay-sandbox;jason-ubuntu-1"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[ExitMaintenanceMode_Task;PowerUpHostFromStandBy_Task;ReconnectHost_Task], effectiveRole=[301990489], name=host2.foobar.com, overallStatus=green,vms=""vm-2064;vm-1054;vm-1681;vm-2022;vm-1664;vm-744;vm-1667;vm-385;vm-687;vm-1836;vm-1001;vm-1647;vm-480;vm-874;vm-885;vm-281;vm-1089;vm-1031;vm-2000;vm-1951;vm-322;vm-2262;vm-1062;vm-1113;vm-2179;vm-1093;vm-1493;vm-1447;vm-1715;vm-256;vm-487;vm-2341;vm-1771;vm-1830"",vmnames=""ross-datagen0010;benson_lwf_sandbox_71;gen-Centos54x32;sc-centos-pciContRT-Current;SC-WIN7-CLEAN;io-qa-splunk;sushant_sandbox_centos2;perfy22;soln-am-centos-pm;io-centos-wasCont-forwarderWAS70-bieberlr;bizdev-virtual_seven_3;ANTIVIR01;sc-dl-centos;sc-centos-essCont-HammerLR;qasvwin8r2x64-1;soln_vmware_centos_5.6;qa-centos-amd64-02;soln-essNightly-Bieber;SC-W2008R2-ESSSHP-I2;Solaris10-64Sup00;Win2K8-64Sup00;splunk_for_vmware_forwarder_appliance_ga_slim;svsea-2;soln-dz-centos;ross-datagen0044;qa-vubun-amd64-05;jyun_test_empty;qasvwin7x64-HK1;perfy67;FreeBSB8.0-64Sup00;S4V_LWF;bamboo-43;splunk_for_vmware_forwarder_appliance_beta-2.0-120313a;gen-winXP32"",subpath=.",vmware,VCENTER41,HostSystem,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",model=PowerEdge R710, uuid=44454c4c-5800-1051-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",model=PowerEdge R710, uuid=44454c4c-5800-1052-8052-c4c04f425031, vendor=Dell Inc.,subpath=hardware/systemInfo",vmware,VCENTER41,HostSystemInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/lbt/net-lbt.5224,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/wsman/openwsmand.5425,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/slp/slpd.5338,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/vpxa/vpxa.5453,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/nssquery.5463,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/hostd/hostd.5202,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/esxcfg-rescan.5626,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5486,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5444,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5415,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vprobed.5319,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5309,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vobd.5292,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5282,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/storageRM.5270,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5260,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sensord.5248,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5238,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5214,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5192,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/ntpd.5168,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.5115,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host,subpath=systemResources",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/user,subpath=systemResources/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim,subpath=systemResources/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor,subpath=systemResources/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt,subpath=systemResources/child-2/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/lbt/net-lbt.5226,subpath=systemResources/child-2/child-1/child-10/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman,subpath=systemResources/child-2/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/wsman/openwsmand.5427,subpath=systemResources/child-2/child-1/child-9/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp,subpath=systemResources/child-2/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/slp/slpd.5340,subpath=systemResources/child-2/child-1/child-8/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb_xml,subpath=systemResources/child-2/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/sfcb,subpath=systemResources/child-2/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa,subpath=systemResources/child-2/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/vpxa/vpxa.5455,subpath=systemResources/child-2/child-1/child-5/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/aam,subpath=systemResources/child-2/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd,subpath=systemResources/child-2/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/nssquery.5517,subpath=systemResources/child-2/child-1/child-3/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/hostd/hostd.5204,subpath=systemResources/child-2/child-1/child-3/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/shell,subpath=systemResources/child-2/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init,subpath=systemResources/child-2/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/esxcfg-rescan.5513,subpath=systemResources/child-2/child-1/child-1/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5482,subpath=systemResources/child-2/child-1/child-1/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5446,subpath=systemResources/child-2/child-1/child-1/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5417,subpath=systemResources/child-2/child-1/child-1/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vprobed.5321,subpath=systemResources/child-2/child-1/child-1/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5311,subpath=systemResources/child-2/child-1/child-1/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vobd.5294,subpath=systemResources/child-2/child-1/child-1/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5284,subpath=systemResources/child-2/child-1/child-1/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/storageRM.5272,subpath=systemResources/child-2/child-1/child-1/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5262,subpath=systemResources/child-2/child-1/child-1/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sensord.5250,subpath=systemResources/child-2/child-1/child-1/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5240,subpath=systemResources/child-2/child-1/child-1/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5216,subpath=systemResources/child-2/child-1/child-1/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5194,subpath=systemResources/child-2/child-1/child-1/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/ntpd.5170,subpath=systemResources/child-2/child-1/child-1/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.5117,subpath=systemResources/child-2/child-1/child-1/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.5102,subpath=systemResources/child-2/child-1/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkiscsid.4971,subpath=systemResources/child-2/child-1/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmklogger.4491,subpath=systemResources/child-2/child-1/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/busybox.4487,subpath=systemResources/child-2/child-1/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/vmkeventd.4470,subpath=systemResources/child-2/child-1/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/sh.4401,subpath=systemResources/child-2/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/init/init.4264,subpath=systemResources/child-2/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins,subpath=systemResources/child-2/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmvisor/plugins/likewise,subpath=systemResources/child-2/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/vim/vmci,subpath=systemResources/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system,subpath=systemResources/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/FT,subpath=systemResources/child-1/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmkapimod,subpath=systemResources/child-1/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/vmotion,subpath=systemResources/child-1/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/drivers,subpath=systemResources/child-1/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/helper,subpath=systemResources/child-1/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel,subpath=systemResources/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kunmanaged,subpath=systemResources/child-1/child-1/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged,subpath=systemResources/child-1/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic3,subpath=systemResources/child-1/child-1/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic2,subpath=systemResources/child-1/child-1/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic1,subpath=systemResources/child-1/child-1/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/bnx2i_vmnic0,subpath=systemResources/child-1/child-1/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/LinuxTaskMemPool,subpath=systemResources/child-1/child-1/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs,subpath=systemResources/child-1/child-1/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/hostdstats,subpath=systemResources/child-1/child-1/child-0/child-2/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/updatestg,subpath=systemResources/child-1/child-1/child-0/child-2/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/tmp,subpath=systemResources/child-1/child-1/child-0/child-2/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/visorfs/MAINSYS,subpath=systemResources/child-1/child-1/child-0/child-2/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/netPageSlab,subpath=systemResources/child-1/child-1/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab,subpath=systemResources/child-1/child-1/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_R2TSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-25",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/iscsivmk_TaskSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-24",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/pvscsiSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-23",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vmmData,subpath=systemResources/child-1/child-1/child-0/child-0/child-22",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiSG,subpath=systemResources/child-1/child-1/child-0/child-0/child-21",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/VSCSIAsyncIODoneFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-20",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/vscsiData,subpath=systemResources/child-1/child-1/child-0/child-0/child-19",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab505,subpath=systemResources/child-1/child-1/child-0/child-0/child-18",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab335,subpath=systemResources/child-1/child-1/child-0/child-0/child-17",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab164,subpath=systemResources/child-1/child-1/child-0/child-0/child-16",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab79,subpath=systemResources/child-1/child-1/child-0/child-0/child-15",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/scsiCommandSlab20,subpath=systemResources/child-1/child-1/child-0/child-0/child-14",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray507,subpath=systemResources/child-1/child-1/child-0/child-0/child-13",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray251,subpath=systemResources/child-1/child-1/child-0/child-0/child-12",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray123,subpath=systemResources/child-1/child-1/child-0/child-0/child-11",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray83,subpath=systemResources/child-1/child-1/child-0/child-0/child-10",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray35,subpath=systemResources/child-1/child-1/child-0/child-0/child-9",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray11,subpath=systemResources/child-1/child-1/child-0/child-0/child-8",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/sgArray7,subpath=systemResources/child-1/child-1/child-0/child-0/child-7",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiSplitInfoSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-6",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiFragmentFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-5",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiMidlayerFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-4",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiDeviceCommandFrame,subpath=systemResources/child-1/child-1/child-0/child-0/child-3",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/ScsiCmd,subpath=systemResources/child-1/child-1/child-0/child-0/child-2",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenFrameSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-1",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/kernel/kmanaged/fastslab/asyncTokenSlab,subpath=systemResources/child-1/child-1/child-0/child-0/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/system/minfree,subpath=systemResources/child-1/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=host/idle,subpath=systemResources/child-0",vmware,VCENTER41,HostSystemResourceInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/vmotion/netConfig/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/vmotion/netConfig/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/vmotion/netConfig/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/vmotion/netConfig/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=vmotion.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=vmotion.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=vmotion.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=vmotion.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=management.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=management.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=management.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=management.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=management.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk4, portgroup=iSCSI2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk3, portgroup=iSCSI1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk2,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk1,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=faultToleranceLogging.key-vim.host.VirtualNic-vmk0,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk4, key=key-vim.host.VirtualNic-vmk4, port=key-vim.host.PortGroup.Port-16777221, portgroup=iSCSI2,subpath=config/network/vnic-4",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk3, key=key-vim.host.VirtualNic-vmk3, port=key-vim.host.PortGroup.Port-16777220, portgroup=iSCSI1,subpath=config/network/vnic-3",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk2, key=key-vim.host.VirtualNic-vmk2,subpath=config/network/vnic-2",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk1, key=key-vim.host.VirtualNic-vmk1,subpath=config/network/vnic-1",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",device=vmk0, key=key-vim.host.VirtualNic-vmk0,subpath=config/network/vnic-0",vmware,VCENTER41,HostVirtualNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7d:3e:c4, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:73:10:77, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:71:04:a0, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:7c:52:26, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",mac=00:50:56:78:f8:d6, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/vmotion/netConfig/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-2/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-1/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/virtualNicManagerInfo/netConfig-0/candidateVnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:70:0e:7d, mtu=9000, portgroup=iSCSI2, tsoEnabled=True,subpath=config/network/vnic-4/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:05:e5, mtu=9000, portgroup=iSCSI1, tsoEnabled=True,subpath=config/network/vnic-3/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:7e:9c:9f, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-2/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:79:a6:e5, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-1/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",mac=00:50:56:74:68:9a, mtu=1500, tsoEnabled=True,subpath=config/network/vnic-0/spec",vmware,VCENTER41,HostVirtualNicSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",key=key-vim.host.VirtualSwitch-vSwitch1, mtu=9000, name=vSwitch1, numPorts=128, numPortsAvailable=123, pnic=[key-vim.host.PhysicalNic-vmnic7;key-vim.host.PhysicalNic-vmnic3], portgroup=[key-vim.host.PortGroup-iSCSI2;key-vim.host.PortGroup-iSCSI1],subpath=config/network/vswitch-0",vmware,VCENTER41,HostVirtualSwitch,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",interval=1,subpath=config/network/vswitch-0/spec/bridge/beacon",vmware,VCENTER41,HostVirtualSwitchBeaconConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",nicDevice=[vmnic7;vmnic3],subpath=config/network/vswitch-0/spec/bridge",vmware,VCENTER41,HostVirtualSwitchBondBridge,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",numPorts=128,subpath=config/network/vswitch-0/spec",vmware,VCENTER41,HostVirtualSwitchSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4103-STD, type=VMFS, uuid=4daf55e8-44794690-b3e8-842b2b76f183, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=4, capacity=1099243192320, majorVersion=3, maxBlocks=262144, name=QA03-NETAPP-NA3240-2-SATA-TEMPORARY-1TB, type=VMFS, uuid=4f341671-3e55c807-2999-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-7/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=QA04-NETAPP-NA3240-1-SATA01, type=VMFS, uuid=4f4e9ab6-f487a38c-d791-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-6/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=SUPT01-NETAPP-SN1574383237-LUNS6_8-5TB, type=VMFS, uuid=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-5/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=5496752832512, majorVersion=3, maxBlocks=262144, name=ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB, type=VMFS, uuid=4eb7f266-2a89385a-3643-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-4/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=QA01-NETAPP-SN1574419639-LUNS4_8-10TB, type=VMFS, uuid=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-3/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=8795019280384, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-NA3240-2-SATA01, type=VMFS, uuid=4f2339b6-96074928-380f-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-2/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=8, capacity=10993774100480, majorVersion=3, maxBlocks=262144, name=SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB, type=VMFS, uuid=4eb7f135-2846b028-3627-842b2b772db1, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-1/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",blockSizeMb=1, capacity=73282879488, majorVersion=3, maxBlocks=262144, name=LDS-HDD0-SAS-ESXi4104-STD, type=VMFS, uuid=4daf590b-1ab1f708-0db3-842b2b76ef11, version=3.46, vmfsUpgradable=False,subpath=config/fileSystemVolume/mountInfo-0/volume",vmware,VCENTER41,HostVmfsVolume,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",selectedVnic=VMotionConfig.vmotion.key-vim.host.VirtualNic-vmk1,subpath=config/vmotion/netConfig",vmware,VCENTER41,HostVMotionNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",operation=listen, protocol=cdp,subpath=config/network/vswitch-0/spec/bridge/linkDiscoveryProtocolConfig",vmware,VCENTER41,LinkDiscoveryProtocolConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",dhcp=False, domainName=sv.splunk.com., hostName=host8.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com.;splunk.com.;splunk.local.],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",dhcp=False, domainName=sv.splunk.com, hostName=host11.foobar.com, ipAddress=[10.160.20.2;10.160.20.3;10.1.1.50], searchDomain=[sv.splunk.com],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, domainName=sv.splunk.com, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",dhcp=False, hostName=VCENTER41, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/net-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",dhcp=False, domainName=splunk.local, hostName=antivir01, ipAddress=[10.160.20.2;10.160.20.3],subpath=guest/ipStack-0/dnsConfig",vmware,VCENTER41,NetDnsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=fe80::250:56ff:fe92:315, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",ipAddress=10.160.27.35, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAddress=10.160.26.203, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",ipAddress=10.160.114.241, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=10.160.20.30, origin=manual, prefixLength=23, state=preferred,subpath=guest/net-0/ipConfig/ipAddress-2",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=fe80::e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-1",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",ipAddress=2620:70:8000:c201:e050:98b7:ebfb:5a26, origin=linklayer, prefixLength=64, state=unknown,subpath=guest/net-0/ipConfig/ipAddress-0",vmware,VCENTER41,NetIpConfigInfoIpAddress,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0, ipAddress=10.160.26.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=0, ipAddress=10.160.114.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=fe80::215:2cff:fe0e:6c00,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=0, ipAddress=10.160.20.1,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0/gateway",vmware,VCENTER41,NetIpRouteConfigInfoGateway,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=169.254.0.0, prefixLength=16,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",network=10.160.26.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.115.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.241, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=10.160.114.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=ff00::, prefixLength=8,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-11",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-10",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=fe80::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-9",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201:e050:98b7:ebfb:5a26, prefixLength=128,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-8",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=2620:70:8000:c201::, prefixLength=64,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-7",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=::, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-6",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=255.255.255.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-5",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=224.0.0.0, prefixLength=4,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-4",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.21.255, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-3",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.30, prefixLength=32,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-2",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=10.160.20.0, prefixLength=23,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-1",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",network=0.0.0.0, prefixLength=0,subpath=guest/ipStack-0/ipRouteConfig/ipRoute-0",vmware,VCENTER41,NetIpRouteConfigInfoIpRoute,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Support, propagate=True, roleId=301990089,subpath=permission-4",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Solutions, propagate=True, roleId=301990089,subpath=permission-3",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=QA, propagate=True, roleId=301990089,subpath=permission-2",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=True, principal=Administrators, propagate=True, roleId=-1,subpath=permission-1",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",group=False, principal=vmwareapp, propagate=True, roleId=301990489,subpath=permission-0",vmware,VCENTER41,Permission,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:91:2e:9d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:91:2e:9c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:91:2e:99, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:91:2e:98, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:f1:85, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:f1:83, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:f1:81, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:f1:7f, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic7, driver=igb, key=key-vim.host.PhysicalNic-vmnic7, mac=00:1b:21:90:dd:3d, pci=08:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-7",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic6, driver=igb, key=key-vim.host.PhysicalNic-vmnic6, mac=00:1b:21:90:dd:3c, pci=08:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-6",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic5, driver=igb, key=key-vim.host.PhysicalNic-vmnic5, mac=00:1b:21:90:dd:39, pci=07:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=False,subpath=config/network/pnic-5",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic4, driver=igb, key=key-vim.host.PhysicalNic-vmnic4, mac=00:1b:21:90:dd:38, pci=07:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-4",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic3, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic3, mac=84:2b:2b:76:ef:13, pci=02:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-3",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic2, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic2, mac=84:2b:2b:76:ef:11, pci=02:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-2",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic1, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic1, mac=84:2b:2b:76:ef:0f, pci=01:00.1, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-1",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",autoNegotiateSupported=True, device=vmnic0, driver=bnx2, key=key-vim.host.PhysicalNic-vmnic0, mac=84:2b:2b:76:ef:0d, pci=01:00.0, resourcePoolSchedulerAllowed=True, vmDirectPathGen2Supported=False, wakeOnLanSupported=True,subpath=config/network/pnic-0",vmware,VCENTER41,PhysicalNic,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-7/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-7/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-7/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-6/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-6/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-6/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-5/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-5/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-5/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-4/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-4/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-4/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-3/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-3/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-3/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-2/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-2/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-2/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-1/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-1/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-1/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/validLinkSpecification-4",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-3",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=100,subpath=config/network/pnic-0/validLinkSpecification-2",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-1",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=False, speedMb=10,subpath=config/network/pnic-0/validLinkSpecification-0",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/spec/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",duplex=True, speedMb=1000,subpath=config/network/pnic-0/linkSpeed",vmware,VCENTER41,PhysicalNicLinkInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=22:131094:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=6:106:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=60:131132:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=636:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=31908:31908:0:No:custom:1000000, memoryAllocation=96981:96981:0:No:custom:1000000000,subpath=systemResources/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:9000, memoryAllocation=0:-1:-1:Yes:custom:9000,subpath=systemResources/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=3324:-1:-1:Yes:custom:1000, memoryAllocation=1381:1381:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-10/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-9/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:10:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-8/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:90:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:30:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=0:194:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=23:131095:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-5/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:2000, memoryAllocation=0:512:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:495:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=43:131115:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-3/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:500, memoryAllocation=96:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=7:107:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:52:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:12:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=59:131131:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=1:131073:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=2:131074:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:1000, memoryAllocation=3:131075:-1:Yes:normal:0,subpath=systemResources/child-2/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:210:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:798:0:No:custom:1000, memoryAllocation=0:20:-1:Yes:custom:1000,subpath=systemResources/child-2/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=266:-1:-1:Yes:custom:500, memoryAllocation=0:-1:-1:Yes:custom:500,subpath=systemResources/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:-1:0:No:custom:0,subpath=systemResources/child-1/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:1000,subpath=systemResources/child-1/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=80:-1:-1:Yes:custom:1000, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-1/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=643:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:12:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=8:8:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=136:136:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:750:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:192:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=32:32:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-2/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=129:192:-1:Yes:custom:0,subpath=systemResources/child-1/child-1/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=0:-1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:2:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-25/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:1:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-24/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-23/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-22/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-21/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-20/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-19/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-18/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-17/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-16/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:7:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-15/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-14/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-13/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-12/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-11/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-10/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-9/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:4:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-8/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:5:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-7/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:6:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-6/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:3:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-5/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=1:9:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-4/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:13:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-3/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:18:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-2/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=5:83:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-1/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:0:No:custom:0, memoryAllocation=2:27:-1:Yes:normal:0,subpath=systemResources/child-1/child-1/child-0/child-0/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:0:0:No:custom:0, memoryAllocation=5819:-1:-1:Yes:custom:1000,subpath=systemResources/child-1/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",cpuAllocation=0:-1:-1:Yes:custom:0, memoryAllocation=0:0:0:No:custom:0,subpath=systemResources/child-0/config",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:2048:125:No:normal:20480,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",cpuAllocation=250:-1::No:normal:1000, memoryAllocation=0:4096:193:No:normal:81920,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuAllocation=3000:-1::n/a:high:4000, memoryAllocation=8192:-1:212:n/a:high:163840,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuAllocation=0:-1::No:normal:1000, memoryAllocation=0:-1:200:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",cpuAllocation=0:-1::No:normal:2000, memoryAllocation=0:-1:157:No:normal:40960,subpath=resourceConfig",vmware,VCENTER41,ResourceConfigSpec,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=naa.500000e116f4aa60, deviceName=/vmfs/devices/disks/naa.500000e116f4aa60, devicePath=/vmfs/devices/disks/naa.500000e116f4aa60, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa60)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa604d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa604d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a5764, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a5764, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a5764)"", key=key-vim.host.ScsiDisk-02000c000060a9800064724939504a6a43785a57644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a9800064724939504a6a43785a57644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-26",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6a43785a526d, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6a43785a526d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6a43785a526d)"", key=key-vim.host.ScsiDisk-02000b000060a9800064724939504a6a43785a526d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a9800064724939504a6a43785a526d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-25",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958332f4637, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958332f4637, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958332f4637)"", key=key-vim.host.ScsiDisk-02000a000060a9800064724939504a6958332f46374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a9800064724939504a6958332f46374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-24",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6958334c526b, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6958334c526b, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6958334c526b)"", key=key-vim.host.ScsiDisk-020009000060a9800064724939504a6958334c526b4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a9800064724939504a6958334c526b4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-23",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f69386c343961, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f69386c343961, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f69386c343961)"", key=key-vim.host.ScsiDisk-02000d000060a980006471682f4f6f69386c3439614c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000d000060a980006471682f4f6f69386c3439614c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-22",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767a46, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767a46, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767a46)"", key=key-vim.host.ScsiDisk-02000a000060a980006471682f4f6f687366767a464c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000a000060a980006471682f4f6f687366767a464c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-21",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366786865, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366786865, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366786865)"", key=key-vim.host.ScsiDisk-02000c000060a980006471682f4f6f6873667868654c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000c000060a980006471682f4f6f6873667868654c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-20",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366767378, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366767378, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366767378)"", key=key-vim.host.ScsiDisk-020009000060a980006471682f4f6f6873667673784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020009000060a980006471682f4f6f6873667673784c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-19",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f687366773372, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f687366773372, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f687366773372)"", key=key-vim.host.ScsiDisk-02000b000060a980006471682f4f6f6873667733724c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=02000b000060a980006471682f4f6f6873667733724c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-18",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f7037, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f7037, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f7037)"", key=key-vim.host.ScsiDisk-020008000060a9800064724939504a6743696f70374c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a9800064724939504a6743696f70374c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-17",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a456a62, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a456a62, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a456a62)"", key=key-vim.host.ScsiDisk-020008000060a980006471682f4f6f67436a456a624c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020008000060a980006471682f4f6f67436a456a624c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-16",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696d7739, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696d7739, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696d7739)"", key=key-vim.host.ScsiDisk-020004000060a9800064724939504a6743696d77394c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a9800064724939504a6743696d77394c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-15",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369746575, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369746575, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369746575)"", key=key-vim.host.ScsiDisk-020003000060a9800064724939504a6743697465754c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a9800064724939504a6743697465754c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-14",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a423451, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a423451, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a423451)"", key=key-vim.host.ScsiDisk-020003000060a980006471682f4f6f67436a4234514c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020003000060a980006471682f4f6f67436a4234514c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-13",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e7935, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e7935, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e7935)"", key=key-vim.host.ScsiDisk-020006000060a9800064724939504a6743696e79354c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a9800064724939504a6743696e79354c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-12",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696e5369, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696e5369, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696e5369)"", key=key-vim.host.ScsiDisk-020005000060a9800064724939504a6743696e53694c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a9800064724939504a6743696e53694c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-11",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a452d2d, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a452d2d, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a452d2d)"", key=key-vim.host.ScsiDisk-020007000060a980006471682f4f6f67436a452d2d4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a980006471682f4f6f67436a452d2d4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-10",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a414d44, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a414d44, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a414d44)"", key=key-vim.host.ScsiDisk-020002000060a980006471682f4f6f67436a414d444c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a980006471682f4f6f67436a414d444c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-9",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a2d4e48, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a2d4e48, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a2d4e48)"", key=key-vim.host.ScsiDisk-020001000060a980006471682f4f6f67436a2d4e484c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a980006471682f4f6f67436a2d4e484c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-8",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a44654f, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a44654f, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a44654f)"", key=key-vim.host.ScsiDisk-020006000060a980006471682f4f6f67436a44654f4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020006000060a980006471682f4f6f67436a44654f4c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-7",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369714449, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369714449, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369714449)"", key=key-vim.host.ScsiDisk-020001000060a9800064724939504a6743697144494c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020001000060a9800064724939504a6743697144494c554e202020, vStorageSupport=vStorageSupported, vendor=NETAPP,subpath=config/storageDevice/scsiLun-6",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a6743696f4b38, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a6743696f4b38, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a6743696f4b38)"", key=key-vim.host.ScsiDisk-020007000060a9800064724939504a6743696f4b384c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020007000060a9800064724939504a6743696f4b384c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-5",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a9800064724939504a674369716664, deviceName=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, devicePath=/vmfs/devices/disks/naa.60a9800064724939504a674369716664, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a9800064724939504a674369716664)"", key=key-vim.host.ScsiDisk-020002000060a9800064724939504a6743697166644c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020002000060a9800064724939504a6743697166644c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-4",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a42584e, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a42584e, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a42584e)"", key=key-vim.host.ScsiDisk-020004000060a980006471682f4f6f67436a42584e4c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020004000060a980006471682f4f6f67436a42584e4c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-3",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.60a980006471682f4f6f67436a433878, deviceName=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, devicePath=/vmfs/devices/disks/naa.60a980006471682f4f6f67436a433878, deviceType=disk, displayName=""NETAPP iSCSI Disk (naa.60a980006471682f4f6f67436a433878)"", key=key-vim.host.ScsiDisk-020005000060a980006471682f4f6f67436a4338784c554e202020, lunType=disk, model=LUN, operationalState=[ok], revision=8020, scsiLevel=4, serialNumber=unavailable, standardInquiry=[0;0;4;50;112;8;16;2;78;69;84;65;80;80;32;32;76;85;78;32;32;32;32;32;32;32;32;32;32;32;32;32;56;48;50;48;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0;0;0;0;9;96;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;70;65;83;51;50;52;48;32;32;32;32;32;32;32;32;32;79;78;84;65;80;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=020005000060a980006471682f4f6f67436a4338784c554e202020, vStorageSupport=vStorageUnknown, vendor=NETAPP,subpath=config/storageDevice/scsiLun-2",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=naa.500000e116f4aa70, deviceName=/vmfs/devices/disks/naa.500000e116f4aa70, devicePath=/vmfs/devices/disks/naa.500000e116f4aa70, deviceType=disk, displayName=""Local FUJITSU Disk (naa.500000e116f4aa70)"", key=key-vim.host.ScsiDisk-0200000000500000e116f4aa704d4245323037, lunType=disk, model=MBE2073RC, operationalState=[ok], revision=D905, scsiLevel=5, serialNumber=unavailable, standardInquiry=[0;0;5;18;91;0;16;2;70;85;74;73;84;83;85;32;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0200000000500000e116f4aa704d4245323037, vStorageSupport=vStorageUnknown, vendor=FUJITSU,subpath=config/storageDevice/scsiLun-1",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",canonicalName=mpx.vmhba0:C0:T0:L0, deviceName=/vmfs/devices/cdrom/mpx.vmhba0:C0:T0:L0, deviceType=cdrom, displayName=""Local TEAC CD-ROM (mpx.vmhba0:C0:T0:L0)"", key=key-vim.host.ScsiLun-0005000000766d686261303a303a30, lunType=cdrom, model=DVD-ROM DV-28SW, operationalState=[ok], revision=R.2A, scsiLevel=5, serialNumber=unavailable, standardInquiry=[5;-128;5;50;91;0;0;0;84;69;65;67;32;32;32;32;68;86;68;45;82;79;77;32;68;86;45;50;56;83;87;32;82;46;50;65;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;65;10;0;0;0;0;0;0;0;0;16;17;-92;0;0;0;0;0;0;-48;-93;8;0;0;0;0;0;16;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], uuid=0005000000766d686261303a303a30, vStorageSupport=vStorageUnknown, vendor=TEAC,subpath=config/storageDevice/scsiLun-0",vmware,VCENTER41,ScsiLun,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-26/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-25/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-24/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-23/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-22/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-21/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-20/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-19/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-18/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-17/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-16/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-15/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-14/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-13/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-12/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-11/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-10/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-9/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-8/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-7/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-6/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-5/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-4/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-3/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-2/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=True,subpath=config/storageDevice/scsiLun-1/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",updateDisplayNameSupported=False,subpath=config/storageDevice/scsiLun-0/capabilities",vmware,VCENTER41,ScsiLunCapabilities,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0200000000500000e116f4aa604d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=naa.500000e116f4aa60, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a9800064724939504a6a43785a57644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-26/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a5764, quality=highQuality,subpath=config/storageDevice/scsiLun-26/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a9800064724939504a6a43785a526d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-25/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6a43785a526d, quality=highQuality,subpath=config/storageDevice/scsiLun-25/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a9800064724939504a6958332f46374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-24/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958332f4637, quality=highQuality,subpath=config/storageDevice/scsiLun-24/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a9800064724939504a6958334c526b4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-23/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6958334c526b, quality=highQuality,subpath=config/storageDevice/scsiLun-23/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000d000060a980006471682f4f6f69386c3439614c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-22/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f69386c343961, quality=highQuality,subpath=config/storageDevice/scsiLun-22/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000a000060a980006471682f4f6f687366767a464c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-21/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767a46, quality=highQuality,subpath=config/storageDevice/scsiLun-21/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000c000060a980006471682f4f6f6873667868654c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-20/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366786865, quality=highQuality,subpath=config/storageDevice/scsiLun-20/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020009000060a980006471682f4f6f6873667673784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-19/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366767378, quality=highQuality,subpath=config/storageDevice/scsiLun-19/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.02000b000060a980006471682f4f6f6873667733724c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-18/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f687366773372, quality=highQuality,subpath=config/storageDevice/scsiLun-18/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a9800064724939504a6743696f70374c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-17/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f7037, quality=highQuality,subpath=config/storageDevice/scsiLun-17/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020008000060a980006471682f4f6f67436a456a624c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-16/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a456a62, quality=highQuality,subpath=config/storageDevice/scsiLun-16/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a9800064724939504a6743696d77394c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-15/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696d7739, quality=highQuality,subpath=config/storageDevice/scsiLun-15/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a9800064724939504a6743697465754c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-14/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369746575, quality=highQuality,subpath=config/storageDevice/scsiLun-14/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020003000060a980006471682f4f6f67436a4234514c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-13/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a423451, quality=highQuality,subpath=config/storageDevice/scsiLun-13/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a9800064724939504a6743696e79354c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-12/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e7935, quality=highQuality,subpath=config/storageDevice/scsiLun-12/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a9800064724939504a6743696e53694c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-11/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696e5369, quality=highQuality,subpath=config/storageDevice/scsiLun-11/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a980006471682f4f6f67436a452d2d4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-10/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a452d2d, quality=highQuality,subpath=config/storageDevice/scsiLun-10/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a980006471682f4f6f67436a414d444c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-9/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a414d44, quality=highQuality,subpath=config/storageDevice/scsiLun-9/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a980006471682f4f6f67436a2d4e484c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-8/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a2d4e48, quality=highQuality,subpath=config/storageDevice/scsiLun-8/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020006000060a980006471682f4f6f67436a44654f4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-7/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a44654f, quality=highQuality,subpath=config/storageDevice/scsiLun-7/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020001000060a9800064724939504a6743697144494c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-6/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369714449, quality=highQuality,subpath=config/storageDevice/scsiLun-6/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020007000060a9800064724939504a6743696f4b384c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-5/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a6743696f4b38, quality=highQuality,subpath=config/storageDevice/scsiLun-5/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020002000060a9800064724939504a6743697166644c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-4/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a9800064724939504a674369716664, quality=highQuality,subpath=config/storageDevice/scsiLun-4/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020004000060a980006471682f4f6f67436a42584e4c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-3/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a42584e, quality=highQuality,subpath=config/storageDevice/scsiLun-3/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.020005000060a980006471682f4f6f67436a4338784c554e202020, quality=mediumQuality,subpath=config/storageDevice/scsiLun-2/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.60a980006471682f4f6f67436a433878, quality=highQuality,subpath=config/storageDevice/scsiLun-2/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0200000000500000e116f4aa704d4245323037, quality=mediumQuality,subpath=config/storageDevice/scsiLun-1/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=naa.500000e116f4aa70, quality=highQuality,subpath=config/storageDevice/scsiLun-1/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-2",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=vml.0005000000766d686261303a303a30, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-1",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",id=mpx.vmhba0:C0:T0:L0, quality=lowQuality,subpath=config/storageDevice/scsiLun-0/descriptor-0",vmware,VCENTER41,ScsiLunDescriptor,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;56;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;96;80;0;0;-31;22;-12;-86;98;80;0;0;-31;22;-12;-86;99;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;67;75;81;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;49;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;65;81;75;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;51;54;54;51;55;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;54;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;97], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;98], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;96], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[68;53;65;52;80;66;49;48;49;49;56;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;87;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;87;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-26/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;87;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;87;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-26/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-26/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;106;67;120;90;82;109;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;106;67;120;90;82;109], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-25/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;106;67;120;90;82;109;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;106;67;120;90;82;109], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-25/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-25/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;47;70;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;47;70;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-24/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;47;70;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;47;70;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-24/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-24/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;105;88;51;76;82;107;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;105;88;51;76;82;107], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-23/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;105;88;51;76;82;107;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;105;88;51;76;82;107], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-23/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-23/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;13;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;105;56;108;52;57;97;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;105;56;108;52;57;97], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-22/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;105;56;108;52;57;97;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;105;56;108;52;57;97], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-22/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-22/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;10;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;122;70;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;122;70], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-21/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;122;70;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;122;70], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-21/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-21/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;12;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;120;104;101;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;120;104;101], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-20/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;120;104;101;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;120;104;101], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-20/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-20/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;9;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;118;115;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;118;115;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-19/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;118;115;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;118;115;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-19/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-19/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;11;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;104;115;102;119;51;114;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;104;115;102;119;51;114], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-18/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;104;115;102;119;51;114;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;104;115;102;119;51;114], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-18/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-18/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;112;55;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;112;55], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-17/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;112;55;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;112;55], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-17/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-17/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;8;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;106;98;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;106;98], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-16/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;106;98;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;106;98], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-16/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-16/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;109;119;57;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;109;119;57], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-15/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;109;119;57;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;109;119;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-15/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-15/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;116;101;117;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;116;101;117], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-14/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;116;101;117;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;116;101;117], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-14/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-14/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;3;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;52;81;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;52;81], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-13/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;52;81;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;52;81], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-13/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-13/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;121;53;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;121;53], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-12/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;121;53;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;121;53], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-12/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-12/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;110;83;105;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;110;83;105], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-11/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;110;83;105;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;110;83;105], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-11/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-11/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;69;45;45;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;69;45;45], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-10/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;69;45;45;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;69;45;45], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-10/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-10/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;65;77;68;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;65;77;68], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-9/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;65;77;68;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;65;77;68], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-9/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-9/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;45;78;72;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;45;78;72], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-8/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;45;78;72;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;45;78;72], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-8/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-8/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;6;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;68;101;79;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;68;101;79], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-7/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;68;101;79;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;68;101;79], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-7/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-7/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;1;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;68;73;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;68;73], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-6/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;68;73;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;68;73], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-6/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-6/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;7;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;111;75;56;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;111;75;56], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-5/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;111;75;56;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;111;75;56], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-5/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-5/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;2;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-26;10;-96;100;10], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;48;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;49;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;10;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;74;103;67;105;113;102;100;0;10;-104;0;100;114;73;57;80], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;114;73;57;80;74;103;67;105;113;102;100], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-4/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;114;73;57;80;74;103;67;105;113;102;100;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;114;73;57;80;74;103;67;105;113;102;100], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-4/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-4/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;4;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;66;88;78;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;66;88;78], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-3/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;66;88;78;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;66;88;78], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-3/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-3/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-62;0;20;0;0;-121;-48;0;5;0;0;0;0;0;0;7;105;115;109;95;115;119;49], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-11",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-63;0;16;0;0;0;16;10;-104;10;0;-63;0;0;8;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-64;0;24;0;0;0;24;10;-104;10;0;1;0;0;16;0;0;0;2;10;-96;114;-25;10;-96;100;20], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-80;0;60;0;-1;0;8;0;127;-1;-1;0;0;0;-128;0;0;0;0;0;7;-96;0;0;0;0;4;0;0;0;8;-128;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-123;0;56;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;49;52;46;50;51;49;47;0;0;65;0;0;24;104;116;116;112;58;47;47;49;48;46;49;54;48;46;49;48;48;46;50;48;47;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;33;0;32;78;69;84;65;80;80;32;32;84;65;82;71;69;84;32;55;48;48;48;48;48;55;56;48;50;55;56;32;32;32;32;32], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;19;0;16;96;-87;-128;0;0;0;0;2;10;-96;100;20;0;0;12;-68], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;2;0;16;111;103;67;106;67;56;120;0;10;-104;0;100;113;104;47;79], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;16;96;-87;-128;0;100;113;104;47;79;111;103;67;106;67;56;120], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-2/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[2;1;0;32;78;69;84;65;80;80;32;32;32;76;85;78;32;100;113;104;47;79;111;103;67;106;67;56;120;0;0;0;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[100;113;104;47;79;111;103;67;106;67;56;120], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-2/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;8;0;-128;-125;-123;-80;-64;-63;-62], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-2/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/durableName",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-36;1;30;68;69;76;76;40;116;109;41;77;66;69;50;48;55;51;82;67;32;32;32;32;32;32;32;68;57;48;53;68;53;65;52;80;66;49;48;49;49;56;57;32;32;32;32;32;32;32;32;80;0;0;-31;22;-12;-86;112;80;0;0;-31;22;-12;-86;114;80;0;0;-31;22;-12;-86;115;50;53;48;48;49;53;48;48;50;48;53;49;54;32;32;32;48;50;32;32;32;32;32;32;83;51;48;48;88;78;49;65;66;84;32;32;32;32;32;32;67;65;50;49;51;53;50;45;66;49;55;88;32;32;32;32;70;74;32;32;32;32;32;32;32;32;32;32;32;32;32;32;67;66;65;51;55;52;72;49;32;32;32;32;32;32;32;32;48;53;55;65;66;32;32;32;32;32;32;32;32;32;32;32;84;68;75;32;32;32;32;32;32;32;32;32;32;32;32;32;48;32;32;32;32;32;32;32;32;32;32;32;32;32;32;32;72;77;71;76;57;65;56;67;88;32;32;32;32;32;32;32;80;48;85;50;53;49;53;48;54;53;51;55;55;56;32;32;50;48;49;49;48;50;48;55;55;53;53], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-10",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-79;0;60;58;-104;0;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-9",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-112;0;24;0;1;6;0;0;0;0;4;0;0;0;0;0;2;6;0;0;0;0;4;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-8",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;-122;0;60;0;7;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-7",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[99;-88;0;24;110;97;97;46;53;48;48;48;48;48;69;49;49;54;70;52;65;65;55;49;0;0;0;0], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-6",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-93;0;8;80;0;0;-31;22;-12;-86;113], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-5",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-108;0;4;0;0;0;1], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-4",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[97;-109;0;8;80;0;0;-31;22;-12;-86;114], namespace=UNKNOWN, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-3",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[1;3;0;8;80;0;0;-31;22;-12;-86;112], namespace=NAA, namespaceId=3,subpath=config/storageDevice/scsiLun-1/alternateName-2",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[68;53;65;52;80;66;49;48;49;49;56;57], namespace=SERIALNUM, namespaceId=4,subpath=config/storageDevice/scsiLun-1/alternateName-1",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",data=[0;0;0;7;0;-128;-125;-122;-112;-79;-36], namespace=GENERIC_VPD, namespaceId=5,subpath=config/storageDevice/scsiLun-1/alternateName-0",vmware,VCENTER41,ScsiLunDurableName,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VUM,subpath=tag-1",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=SYSTEM/COM.VMWARE.VIM.VC,subpath=tag-0",vmware,VCENTER41,Tag,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=8295,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",afterPowerOn=True, afterResume=True, beforeGuestShutdown=True, beforeGuestStandby=True, syncTimeWithHost=False, toolsUpgradePolicy=manual, toolsVersion=0,subpath=config/tools",vmware,VCENTER41,ToolsConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",ipAllocationPolicy=fixedPolicy, ipProtocol=IPv4, supportedIpProtocol=[IPv4],subpath=config/vAppConfig/ipAssignment",vmware,VCENTER41,VAppIPAssignmentInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=summary/config/product",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0,subpath=config/vAppConfig/product-0",vmware,VCENTER41,VAppProductInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=group-d1,moname=""Datacenters"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:group-d1"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",_logout_on_disconnect=0, service_url=https://10.160.114.241:443/sdk/webService,subpath=vim",vmware,VCENTER41,Vim,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=2048, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",device=[0:500;12000;1000;4000;0:UNKNOWN;1:3002;0:600;700;0:8000;9000;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;2001;2002;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=8192, numCPU=1,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",device=[0:UNKNOWN;1:3002;0:600;700;0:500;12000;1000;4000;0:8000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN;0:2000;:UNKNOWN;:UNKNOWN;:UNKNOWN;:UNKNOWN], memoryMB=4096, numCPU=2,subpath=config/hardware",vmware,VCENTER41,VirtualHardware,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ross-datagen0044, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=io-qa-splunk, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=vCenter41, overallStatus=green,physicalhost=""host10.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;AnswerVM;UpgradeVM_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=green, name=ANTIVIR01, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",alarmActionsEnabled=true, configStatus=green, disabledMethod=[Destroy_Task;UnregisterVM;RevertToCurrentSnapshot_Task;RemoveAllSnapshots_Task;UnmountToolsInstaller;RebootGuest;StandbyGuest;ShutdownGuest;AnswerVM;UpgradeVM_Task;UpgradeTools_Task;TurnOffFaultToleranceForVM_Task;MakePrimaryVM_Task;TerminateFaultTolerantVM_Task;DisableSecondaryVM_Task;EnableSecondaryVM_Task;StopRecording_Task;StopReplaying_Task;CustomizeVM_Task;MarkAsTemplate;ResetGuestInformation;ExportVm;PowerOnVM_Task;MarkAsVirtualMachine], effectiveRole=[301990489], guestHeartbeatStatus=gray, name=qasvwin7x64-HK1, overallStatus=green,physicalhost=""host2.foobar.com"",subpath=.",vmware,VCENTER41,VirtualMachine,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=True, settingScreenResolutionSupported=True, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=True, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",bootOptionsSupported=True, bootRetryOptionsSupported=True, changeTrackingSupported=True, consolePreferencesSupported=False, cpuFeatureMaskSupported=True, disableSnapshotsSupported=False, diskSharesSupported=True, lockSnapshotsSupported=False, memorySnapshotsSupported=True, multipleSnapshotsSupported=True, npivWwnOnNonRdmVmSupported=True, poweredOffSnapshotsSupported=True, quiescedSnapshotsSupported=True, recordReplaySupported=True, revertToSnapshotSupported=True, s1AcpiManagementSupported=True, settingDisplayTopologySupported=False, settingScreenResolutionSupported=False, settingVideoRamSizeSupported=True, snapshotConfigSupported=True, snapshotOperationsSupported=True, swapPlacementSupported=True, toolsAutoUpdateSupported=False, toolsSyncTimeSupported=True, virtualMmuUsageSupported=True, vmNpivWwnDisableSupported=True, vmNpivWwnSupported=True, vmNpivWwnUpdateSupported=True,subpath=capability",vmware,VCENTER41,VirtualMachineCapability,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T17:37:42.524964Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ross-datagen0044.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;sched.scsi0:0.throughputCap:off;replay.supported:false;pciBridge4.virtualDev:pcieRootPort;replay.filename:;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 29 5c e1 10;vmotion.checkpointFBSize:8388608;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;pciBridge4.functions:8;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;ethernet0.pciSlotNumber:33;guest.commands.sharedSecretLogin.hostd-quiescedsnap:kW/i+hCsafyLreEQ3yOHwjy+Ox59aLOEc9JRJiK0caY=;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ross-datagen0044/ross-datagen0044-e9b89695.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/:, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=2048, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, locationId=564d55f9-88eb-27bf-bbc9-19a9f5bf67d0, memoryAllocation=0:2048:125:No:normal:20480, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ross-datagen0044, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-26T02:32:04.161859Z, cpuAllocation=250:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:tristan_vmware_sandbox.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;pciBridge4.present:true;snapshot.action:keep;replay.supported:false;replay.filename:;pciBridge4.virtualDev:pcieRootPort;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:16;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;vmotion.checkpointFBSize:4194304;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;pciBridge4.functions:8;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;guest.commands.sharedSecretLogin.hostd-quiescedsnap:Tn1Tx/MeRvJnV3A9PPxmrO68sOrwWXjeZOYKzg/Dd74=;sched.swap.derivedName:/vmfs/volumes/4eb7f135-2846b028-3627-842b2b772db1/tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/:, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, locationId=564d1cc5-d58f-f0f0-0b52-36d82c02b7e8, memoryAllocation=0:4096:193:No:normal:81920, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=io-qa-splunk, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-09T17:26:09.144218Z, cpuAllocation=3000:-1::n/a:high:4000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:checkpoint:hard, extraConfig=[nvram:vCenter41.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;sched.scsi0:0.throughputCap:off;sched.scsi0:1.throughputCap:off;pciBridge4.present:true;disk.EnableUUID:true;pciBridge4.virtualDev:pcieRootPort;snapshot.action:keep;replay.supported:false;unity.wasCapable:false;replay.filename:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;ethernet0.pciSlotNumber:192;pciBridge4.functions:8;vmci0.pciSlotNumber:32;vmotion.checkpointFBSize:8388608;ethernet0.generatedAddressOffset:0;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;tools.remindInstall:false;scsi0.pciSlotNumber:160;scsi0.sasWWID:50 05 05 6d 00 89 1f b0;pciBridge5.present:true;scsi0:0.redo:;scsi0:1.ctkEnabled:false;scsi0:1.redo:;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/vCenter41/vCenter41-77aacbc1.vswp;scsi0:2.ctkEnabled:false;scsi0:2.redo:;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, locationId=564d621c-7aa0-f844-42e3-bdc8f49276a6, memoryAllocation=8192:-1:212:n/a:high:163840, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=vCenter41, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-29T19:51:06.433352Z, cpuAllocation=0:-1::No:normal:1000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:ANTIVIR01.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;disk.EnableUUID:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;unity.wasCapable:false;sched.swap.derivedName:/vmfs/volumes/4eb7f266-2a89385a-3643-842b2b772db1/ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:192;vmci0.pciSlotNumber:32;scsi0.sasWWID:50 05 05 60 4b 5e d4 30;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;sched.scsi0:0.throughputCap:off;replay.filename:;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:8295;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/:, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=8192, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, locationId=564dfe2c-fee1-9c3d-65aa-bffaa19198d7, memoryAllocation=0:-1:200:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=ANTIVIR01, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, bootOptions=0:No, changeTrackingEnabled=False, changeVersion=2012-05-30T16:30:46.231117Z, cpuAllocation=0:-1::No:normal:2000, cpuHotAddEnabled=False, cpuHotRemoveEnabled=False, datastoreUrl=[/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1], defaultPowerOps=soft:soft:powerOnSuspend:hard, extraConfig=[nvram:qa-sv-win7x64-HK-1.nvram;virtualHW.productCompatibility:hosted;pciBridge0.present:true;pciBridge4.present:true;snapshot.action:keep;pciBridge4.virtualDev:pcieRootPort;replay.supported:false;sched.swap.derivedName:/vmfs/volumes/4eb7f2fc-0a4c67a7-0c95-842b2b772db1/qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp;scsi0:0.redo:;pciBridge0.pciSlotNumber:17;pciBridge4.pciSlotNumber:21;pciBridge5.pciSlotNumber:22;pciBridge6.pciSlotNumber:23;pciBridge7.pciSlotNumber:24;scsi0.pciSlotNumber:160;ethernet0.pciSlotNumber:32;vmci0.pciSlotNumber:33;scsi0.sasWWID:50 05 05 64 76 54 72 f0;vmotion.checkpointFBSize:8388608;pciBridge4.functions:8;hostCPUID.0:0000000b756e65476c65746e49656e69;hostCPUID.1:000206c220200800029ee3ffbfebfbff;hostCPUID.80000001:0000000000000000000000012c100800;guestCPUID.0:0000000b756e65476c65746e49656e69;guestCPUID.1:000206c200010800829822030febfbff;guestCPUID.80000001:00000000000000000000000128100800;userCPUID.0:0000000b756e65476c65746e49656e69;userCPUID.1:000206c220200800029822030febfbff;userCPUID.80000001:00000000000000000000000128100800;evcCompatibilityMode:false;pciBridge5.present:true;pciBridge5.virtualDev:pcieRootPort;pciBridge5.functions:8;pciBridge6.present:true;pciBridge6.virtualDev:pcieRootPort;pciBridge6.functions:8;pciBridge7.present:true;pciBridge7.virtualDev:pcieRootPort;pciBridge7.functions:8;vmware.tools.internalversion:0;vmware.tools.requiredversion:8295;vmware.tools.installstate:none;vmware.tools.lastInstallStatus:unknown], files=[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/:, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, hotPlugMemoryIncrementSize=0, hotPlugMemoryLimit=4096, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, locationId=564d8ba7-6de9-e312-d4d1-c6078dc5bb5c, memoryAllocation=0:-1:157:No:normal:40960, memoryHotAddEnabled=False, modified=1970-01-01T00:00:00Z, name=qasvwin7x64-HK1, npivTemporaryDisabled=True, swapPlacement=inherit, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vAssertsEnabled=False, version=vmx-07,subpath=config",vmware,VCENTER41,VirtualMachineConfigInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",cpuReservation=0, guestFullName=""Red Hat Enterprise Linux 6 (64-bit)"", guestId=rhel6_64Guest, installBootRequired=False, instanceUuid=5012c4f6-e0b3-9daf-62a0-a1b47e67265e, memoryReservation=0, memorySizeMB=2048, name=ross-datagen0044, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c080-295c-e11e-0eba-a1b41060ae79, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",annotation=This has vmware tools installed, cpuReservation=250, guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, installBootRequired=False, instanceUuid=5012c9a3-1157-774d-6d43-7620a2a399de, memoryReservation=0, memorySizeMB=8192, name=io-qa-splunk, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212765e-9013-6bca-547d-4b57f7add71f, vmPathName=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=5277badb-1342-e933-7dda-3d982779747d, memoryReservation=0, memorySizeMB=8192, name=vCenter41, numCpu=2, numEthernetCards=1, numVirtualDisks=3, template=False, uuid=564dc31d-0089-1fbb-57cd-a5373ac9c1db, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",cpuReservation=0, guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, installBootRequired=False, instanceUuid=50127041-04d4-7c04-b381-7daa333399b9, memoryReservation=0, memorySizeMB=8192, name=ANTIVIR01, numCpu=1, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=4212c9c0-4b5e-d434-7498-3b17b0605b4e, vmPathName=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",annotation=jlin: win7 Profx64 Hong Kong Chinese traditional, cpuReservation=0, guestFullName=""Microsoft Windows 7 (64-bit)"", guestId=windows7_64Guest, installBootRequired=False, instanceUuid=501200a4-4da4-bfaa-f6d0-d5ce6fa6a913, memoryReservation=0, memorySizeMB=4096, name=qasvwin7x64-HK1, numCpu=2, numEthernetCards=1, numVirtualDisks=1, template=False, uuid=42124cd4-7654-72f6-a95a-dbbb19b76626, vmPathName=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"",subpath=summary/config",vmware,VCENTER41,VirtualMachineConfigSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=summary/runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4000,subpath=runtime/device-0",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=summary/runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonOther=[vmNptIncompatibleHost],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",vmDirectPathGen2Active=False, vmDirectPathGen2InactiveReasonVm=[vmNptIncompatibleAdapterType],subpath=runtime/device-0/runtimeState",vmware,VCENTER41,VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",configFile=[ross-datagen0044.vmxf;ross-datagen0044.nvram;ross-datagen0044.vmsd], logFile=[vmware-13.log;vmware-15.log;vmware-11.log;vmware-12.log;vmware-10.log;vmware-14.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",configFile=[tristan_vmware_sandbox.vmxf;tristan_vmware_sandbox.nvram;tristan_vmware_sandbox.vmsd], logFile=[vmware-38.log;vmware-35.log;vmware-37.log;vmware-40.log;vmware-36.log;vmware-39.log;vmware.log], swapFile=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",configFile=[vCenter41.vmxf;vCenter41.nvram;vCenter41-aux.xml;vCenter41.vmsd], logFile=[vmware-49.log;vmware-47.log;vmware-46.log;vmware-45.log;vmware-50.log;vmware-48.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",configFile=[ANTIVIR01.vmxf;ANTIVIR01.nvram;ANTIVIR01.vmsd], logFile=[vmware-1.log;vmware-6.log;vmware-2.log;vmware-3.log;vmware-4.log;vmware-5.log;vmware.log], swapFile=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",configFile=[qa-sv-win7x64-HK-1.vmxf;qa-sv-win7x64-HK-1.nvram;qa-sv-win7x64-HK-1.vmsd], logFile=[vmware-13.log;vmware-8.log;vmware-9.log;vmware-10.log;vmware-11.log;vmware-12.log;vmware.log], swapFile=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"",subpath=layout",vmware,VCENTER41,VirtualMachineFileLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",diskFile=[[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk], key=2002,subpath=layout/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk], key=2001,subpath=layout/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",diskFile=[[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",diskFile=[[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk], key=2000,subpath=layout/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.35446Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643523Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.608367Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.364226Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.383757Z,subpath=layoutEx",vmware,VCENTER41,VirtualMachineFileLayoutEx,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[4;5], key=2002,subpath=layoutEx/disk-2",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[2;3], key=2001,subpath=layoutEx/disk-1",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",chain=[0;1], key=2000,subpath=layoutEx/disk-0",vmware,VCENTER41,VirtualMachineFileLayoutExDiskLayout,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-e9b89695.vswp"", size=2147483648, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmxf"", size=271, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmx"", size=3312, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware.log"", size=67195, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-14.log"", size=72382, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-10.log"", size=72284, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-12.log"", size=69626, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-11.log"", size=73339, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-15.log"", size=73245, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/vmware-13.log"", size=69285, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044-flat.vmdk"", size=8589934592, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ross-datagen0044/ross-datagen0044.vmdk"", size=526, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=13, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-6c897051.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=12, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=11, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=10, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmxf"", size=277, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=9, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmx"", size=3311, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=8, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware.log"", size=67235, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=7, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-39.log"", size=72134, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=6, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-36.log"", size=126025, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=5, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-40.log"", size=73516, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=4, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-37.log"", size=72707, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=3, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-35.log"", size=30703, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=2, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/vmware-38.log"", size=30777, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=1, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox-flat.vmdk"", size=107500011520, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",key=0, name=""[SOLN01-NETAPP-SN1574383237-LUNS1_5-10TB] tristan_vmware_sandbox/tristan_vmware_sandbox.vmdk"", size=560, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=18, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-77aacbc1.vswp"", size=6442450944, type=swap,subpath=layoutEx/file-18",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=17, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-17",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=16, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-aux.xml"", size=13, type=extendedConfig,subpath=layoutEx/file-16",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=15, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.nvram"", size=8684, type=nvram,subpath=layoutEx/file-15",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=14, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-14",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmx"", size=3807, type=config,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware.log"", size=425992, type=log,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-48.log"", size=159242, type=log,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-50.log"", size=153895, type=log,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-45.log"", size=82599, type=log,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-46.log"", size=183591, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-47.log"", size=147229, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vmware-49.log"", size=138228, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2-flat.vmdk"", size=4706009088, type=diskExtent,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_2.vmdk"", size=523, type=diskDescriptor,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1-flat.vmdk"", size=21474836480, type=diskExtent,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41_1.vmdk"", size=495, type=diskDescriptor,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41-flat.vmdk"", size=64424509440, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] vCenter41/vCenter41.vmdk"", size=520, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=13, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-0b9fe1c3.vswp"", size=8589934592, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=11, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmsd"", size=0, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=10, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=9, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmxf"", size=264, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=8, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmx"", size=3190, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=3, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware.log"", size=141802, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=7, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-5.log"", size=76052, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=6, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-4.log"", size=75815, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=5, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-3.log"", size=179473, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=4, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-2.log"", size=75866, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=12, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-6.log"", size=76774, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=2, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/vmware-1.log"", size=1443979, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=1, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01-flat.vmdk"", size=43318771712, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",key=0, name=""[ITOPS01-NETAPP-SN1574419639-LUNS1_3-5TB] ANTIVIR01/ANTIVIR01.vmdk"", size=524, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=13, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-05bf4495.vswp"", size=4294967296, type=swap,subpath=layoutEx/file-13",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=12, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmsd"", size=43, type=snapshotList,subpath=layoutEx/file-12",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=11, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.nvram"", size=8684, type=nvram,subpath=layoutEx/file-11",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=10, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmxf"", size=273, type=extendedConfig,subpath=layoutEx/file-10",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=9, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmx"", size=3182, type=config,subpath=layoutEx/file-9",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=8, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware.log"", size=67964, type=log,subpath=layoutEx/file-8",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=7, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-12.log"", size=492695, type=log,subpath=layoutEx/file-7",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=6, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-11.log"", size=419370, type=log,subpath=layoutEx/file-6",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=5, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-10.log"", size=602123, type=log,subpath=layoutEx/file-5",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=4, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-9.log"", size=190951, type=log,subpath=layoutEx/file-4",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=3, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-8.log"", size=76417, type=log,subpath=layoutEx/file-3",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=2, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/vmware-13.log"", size=76422, type=log,subpath=layoutEx/file-2",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=1, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1-flat.vmdk"", size=53687091200, type=diskExtent,subpath=layoutEx/file-1",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",key=0, name=""[QA01-NETAPP-SN1574419639-LUNS4_8-10TB] qa-sv-win7x64-HK-1/qa-sv-win7x64-HK-1.vmdk"", size=503, type=diskDescriptor,subpath=layoutEx/file-0",vmware,VCENTER41,VirtualMachineFileLayoutExFileInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",disableAcceleration=False, diskUuidEnabled=True, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",disableAcceleration=False, diskUuidEnabled=False, enableLogging=True, htSharing=any, monitorType=release, recordReplayEnabled=False, runWithDebugInfo=False, snapshotPowerOffBehavior=powerOff, useToe=False, virtualExecUsage=hvAuto, virtualMmuUsage=automatic,subpath=config/flags",vmware,VCENTER41,VirtualMachineFlagInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host8.foobar.com, ipAddress=10.160.27.35, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",guestFullName=""CentOS 4/5 (64-bit)"", guestId=centos64Guest, hostName=host11.foobar.com, ipAddress=10.160.26.203, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=VCENTER41, ipAddress=10.160.114.241, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",guestFullName=""Microsoft Windows Server 2008 R2 (64-bit)"", guestId=windows7Server64Guest, hostName=antivir01.splunk.local, ipAddress=10.160.20.30, toolsRunningStatus=guestToolsRunning, toolsStatus=toolsOk, toolsVersionStatus=guestToolsCurrent,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",toolsRunningStatus=guestToolsNotRunning, toolsStatus=toolsNotInstalled, toolsVersionStatus=guestToolsNotInstalled,subpath=summary/guest",vmware,VCENTER41,VirtualMachineGuestSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2448, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=655, hostMemoryUsage=6043, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4904, sharedMemory=3287, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=115605,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=691, distributedMemoryEntitlement=1747, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=983, hostMemoryUsage=3980, overallCpuDemand=930, overallCpuUsage=664, privateMemory=3789, sharedMemory=307, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=41069,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=500, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=122, hostMemoryUsage=1192, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1074, sharedMemory=966, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=123280,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=657, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=436766,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=114, distributedCpuEntitlement=2712, distributedMemoryEntitlement=3842, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=1802, hostMemoryUsage=8101, overallCpuDemand=3775, overallCpuUsage=2978, privateMemory=7821, sharedMemory=370, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2514768,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=491, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=163, hostMemoryUsage=1185, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1076, sharedMemory=964, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=122620,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2560, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=409, hostMemoryUsage=6135, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4912, sharedMemory=3279, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=114585,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=239, distributedMemoryEntitlement=1642, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=573, hostMemoryUsage=4002, overallCpuDemand=239, overallCpuUsage=212, privateMemory=3827, sharedMemory=269, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=40109,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=678, overallCpuDemand=53, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435986,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=112, distributedCpuEntitlement=3031, distributedMemoryEntitlement=4199, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2867, hostMemoryUsage=8118, overallCpuDemand=3084, overallCpuUsage=2206, privateMemory=7827, sharedMemory=364, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513988,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=61, distributedCpuEntitlement=53, distributedMemoryEntitlement=406, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=0, hostMemoryUsage=677, overallCpuDemand=79, overallCpuUsage=53, privateMemory=518, sharedMemory=5353, staticCpuEntitlement=250, staticMemoryEntitlement=3945, swappedMemory=93, uptimeSeconds=435686,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=2579, distributedMemoryEntitlement=3882, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=2621, hostMemoryUsage=8123, overallCpuDemand=2579, overallCpuUsage=2206, privateMemory=7828, sharedMemory=363, staticCpuEntitlement=5318, staticMemoryEntitlement=8404, swappedMemory=0, uptimeSeconds=2513688,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=34, distributedCpuEntitlement=26, distributedMemoryEntitlement=514, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=81, hostMemoryUsage=1194, overallCpuDemand=26, overallCpuUsage=26, privateMemory=1078, sharedMemory=962, staticCpuEntitlement=2023, staticMemoryEntitlement=2173, swappedMemory=0, uptimeSeconds=121660,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=113, distributedCpuEntitlement=53, distributedMemoryEntitlement=2446, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=green, guestMemoryUsage=327, hostMemoryUsage=6139, overallCpuDemand=53, overallCpuUsage=53, privateMemory=4923, sharedMemory=3268, staticCpuEntitlement=2659, staticMemoryEntitlement=8392, swappedMemory=0, uptimeSeconds=113625,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",balloonedMemory=0, compressedMemory=0, consumedOverheadMemory=73, distributedCpuEntitlement=638, distributedMemoryEntitlement=1760, ftLatencyStatus=gray, ftLogBandwidth=-1, ftSecondaryLatency=-1, guestHeartbeatStatus=gray, guestMemoryUsage=614, hostMemoryUsage=4009, overallCpuDemand=824, overallCpuUsage=664, privateMemory=3872, sharedMemory=224, staticCpuEntitlement=421, staticMemoryEntitlement=3040, swappedMemory=0, uptimeSeconds=39149,subpath=summary/quickStats",vmware,VCENTER41,VirtualMachineQuickStats,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=2048, memoryOverhead=112062464, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=4096, memoryOverhead=183697408, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=summary/runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=8192, memoryOverhead=200372224, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",bootTime=2012-05-29T19:50:56.378974Z, connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=2659, maxMemoryUsage=8192, memoryOverhead=187936768, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",connectionState=connected, faultToleranceState=notConfigured, maxCpuUsage=5318, maxMemoryUsage=4096, memoryOverhead=145653760, numMksConnections=0, powerState=poweredOn, recordReplayState=inactive, suspendInterval=0, toolsInstallerMounted=False,subpath=runtime",vmware,VCENTER41,VirtualMachineRuntimeInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",timestamp=2012-05-31T00:34:15.356999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",timestamp=2012-05-31T00:34:13.643Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",timestamp=2012-05-31T01:46:50.609999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",timestamp=2012-05-31T00:34:15.367Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",timestamp=2012-05-31T00:34:15.382999Z,subpath=storage",vmware,VCENTER41,VirtualMachineStorageInfo,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, timestamp=2012-05-31T00:34:15.355437Z, uncommitted=0, unshared=10737928389,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, timestamp=2012-05-31T00:34:13.6445Z, uncommitted=2021654528, unshared=116090432041,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, timestamp=2012-05-31T01:46:50.61032Z, uncommitted=102668173312, unshared=97049111077,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, timestamp=2012-05-31T00:34:15.367156Z, uncommitted=42580574208, unshared=51910788727,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, timestamp=2012-05-31T00:34:15.384734Z, uncommitted=0, unshared=57983997123,subpath=summary/storage",vmware,VCENTER41,VirtualMachineStorageSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",overallStatus=green,subpath=summary",vmware,VCENTER41,VirtualMachineSummary,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-2179,moname=""ross-datagen0044"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"",committed=10737928389, uncommitted=0, unshared=10737928389,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",committed=116090432041, uncommitted=2021654528, unshared=116090432041,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-16,moname=""vCenter41"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-16"",committed=97049111077, uncommitted=102668173312, unshared=97049111077,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1647,moname=""ANTIVIR01"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"",committed=51910788727, uncommitted=42580574208, unshared=51910788727,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:23:58 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-1447,moname=""qasvwin7x64-HK1"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"",committed=57983997123, uncommitted=0, unshared=57983997123,subpath=storage/perDatastoreUsage-0",vmware,VCENTER41,VirtualMachineUsageOnDatastore,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-19,moname=""host6.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=vmotion, selectedVnic=[vmotion.key-vim.host.VirtualNic-vmk1],subpath=config/virtualNicManagerInfo/netConfig-2",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=True, nicType=management, selectedVnic=[management.key-vim.host.VirtualNic-vmk0],subpath=config/virtualNicManagerInfo/netConfig-1",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=host-20,moname=""host2.foobar.com"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"",multiSelectAllowed=False, nicType=faultToleranceLogging, selectedVnic=[faultToleranceLogging.key-vim.host.VirtualNic-vmk2],subpath=config/virtualNicManagerInfo/netConfig-0",vmware,VCENTER41,VirtualNicManagerNetConfig,vmware:inv "2012-05-31 03:49:00 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv "2012-05-31 03:37:18 UTC,fa=splunkvmwarefa,vc=VCENTER41,MOR=vm-744,moname=""io-qa-splunk"",meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"",installBootRequired=False, installBootStopDelay=0,subpath=config/vAppConfig",vmware,VCENTER41,VmConfigInfo,vmware:inv \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-migration.csv b/splunk_eventgen/samples/vmware-migration.csv new file mode 100644 index 00000000..240b52ef --- /dev/null +++ b/splunk_eventgen/samples/vmware-migration.csv @@ -0,0 +1 @@ +host6.foobar.com,host-16 host2.foobar.com,host-20 \ No newline at end of file diff --git a/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv new file mode 100644 index 00000000..bef02f21 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-guest-aggregate.csv @@ -0,0 +1,29 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-guest-instance.csv b/splunk_eventgen/samples/vmware-perf-guest-instance.csv new file mode 100644 index 00000000..da3f27a7 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-guest-instance.csv @@ -0,0 +1,34 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 diff --git a/splunk_eventgen/samples/vmware-perf-host-aggregate.csv b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv new file mode 100644 index 00000000..5e7651b3 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-host-aggregate.csv @@ -0,0 +1,15 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf-host-instance.csv b/splunk_eventgen/samples/vmware-perf-host-instance.csv new file mode 100644 index 00000000..bca11490 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf-host-instance.csv @@ -0,0 +1,211 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/vmware-perf.csv b/splunk_eventgen/samples/vmware-perf.csv new file mode 100644 index 00000000..56022b24 --- /dev/null +++ b/splunk_eventgen/samples/vmware-perf.csv @@ -0,0 +1,286 @@ +"_raw",index,host,source,sourcetype,"_time" +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, ActAvg15m_pct=12.00, ActAvg1m_pct=10.00, ActAvg5m_pct=16.00, ActPk15m_pct=65.00, ActPk1m_pct=65.00, ActPk5m_pct=69.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=11.00, RunAvg1m_pct=9.00, RunAvg5m_pct=14.00, RunPk15m_pct=55.00, RunPk1m_pct=64.00, RunPk5m_pct=64.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgActWr_KB=796916.00, AvgAct_KB=1006632.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=3941144.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=4194304.00, AvgOvrhdMax_KB=142240.00, AvgOvrhd_KB=76516.00, AvgShrd_KB=451900.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=23.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=72668.00, MaxAct_KB=1006632.00, MaxConsum_KB=3941144.00, MaxGrtd_KB=4194304.00, MaxOvrhd_KB=76516.00, MaxShrd_KB=451900.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=23.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=72668.00, MinAct_KB=1006632.00, MinConsum_KB=3941144.00, MinGrtd_KB=4194304.00, MinOvrhd_KB=76516.00, MinShrd_KB=451900.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=23.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=72668.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=24.00, MaxUsg_mhz=24.00, MinUsg_mhz=24.00, SumRdy_ms=14.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=183.00, SumWait_ms=19606.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=8.00, SumBusResets=0.00, SumCmds=20.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=20.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=15.00, SumBusResets=0.00, SumCmds=32.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=32.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=28.00, MaxUsg_mhz=28.00, MinUsg_mhz=28.00, SumRdy_ms=18.00, SumSwpWait_ms=0.00, SumSys_ms=3.00, SumUsd_ms=216.00, SumWait_ms=19555.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgUsg_mhz=57.00, AvgUsg_pct=1.08, MaxUsg_mhz=57.00, MaxUsg_pct=1.08, MinUsg_mhz=57.00, MinUsg_pct=1.08, SumRdy_ms=32.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumHeartbeat=0.00, Uptime_sec=86747.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=19.00, SumPktsTx=9.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=23.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1447,hmoid=5088,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1447"", moname=qasvwin7x64-HK1, AvgRd_KBps=0.00, AvgUsg_KBps=23.00, AvgWr_KBps=23.00, MaxTotLat_ms=0.00, MaxUsg_KBps=23.00, MinUsg_KBps=23.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, ActAvg15m_pct=3.00, ActAvg1m_pct=2.00, ActAvg5m_pct=2.00, ActPk15m_pct=6.00, ActPk1m_pct=5.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=3.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=6.00, RunPk1m_pct=5.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=6.00, SumPktsTx=2.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgActWr_KB=167772.00, AvgAct_KB=335544.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=7251908.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=8388556.00, AvgOvrhdMax_KB=183532.00, AvgOvrhd_KB=116488.00, AvgShrd_KB=1643200.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=277124.00, MaxAct_KB=335544.00, MaxConsum_KB=7251908.00, MaxGrtd_KB=8388556.00, MaxOvrhd_KB=116488.00, MaxShrd_KB=1643200.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=277124.00, MinAct_KB=335544.00, MinConsum_KB=7251908.00, MinGrtd_KB=8388556.00, MinOvrhd_KB=116488.00, MinShrd_KB=1643200.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=277124.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=54.00, MaxUsg_mhz=54.00, MinUsg_mhz=54.00, SumRdy_ms=9.00, SumSwpWait_ms=0.00, SumSys_ms=2.00, SumUsd_ms=409.00, SumWait_ms=19463.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgRd_KBps=0.00, AvgUsg_KBps=9.00, AvgWr_KBps=9.00, MaxTotLat_ms=1.00, MaxUsg_KBps=9.00, MinUsg_KBps=9.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, SumHeartbeat=0.00, Uptime_sec=161163.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgUsg_mhz=61.00, AvgUsg_pct=2.32, MaxUsg_mhz=61.00, MaxUsg_pct=2.32, MinUsg_mhz=61.00, MinUsg_pct=2.32, SumRdy_ms=9.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-1647,hmoid=4944,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-1647"", moname=ANTIVIR01, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=34.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=34.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, ActAvg15m_pct=1.00, ActAvg1m_pct=1.00, ActAvg5m_pct=1.00, ActPk15m_pct=2.00, ActPk1m_pct=2.00, ActPk5m_pct=2.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=1.00, RunAvg1m_pct=1.00, RunAvg5m_pct=1.00, RunPk15m_pct=2.00, RunPk1m_pct=2.00, RunPk5m_pct=2.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgXmit_KBps=14.00, SumPktsRx=263.00, SumPktsTx=280.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgActWr_KB=41940.00, AvgAct_KB=83884.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=1175888.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=2089248.00, AvgOvrhdMax_KB=109436.00, AvgOvrhd_KB=33924.00, AvgShrd_KB=1021180.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=0.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=0.00, AvgSwpd_KB=0.00, AvgUsg_pct=3.99, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=852608.00, MaxAct_KB=83884.00, MaxConsum_KB=1175888.00, MaxGrtd_KB=2089248.00, MaxOvrhd_KB=33924.00, MaxShrd_KB=1021180.00, MaxSwpIn_KB=0.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=0.00, MaxSwpd_KB=0.00, MaxUsg_pct=3.99, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=852608.00, MinAct_KB=83884.00, MinConsum_KB=1175888.00, MinGrtd_KB=2089248.00, MinOvrhd_KB=33924.00, MinShrd_KB=1021180.00, MinSwpIn_KB=0.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=0.00, MinSwpd_KB=0.00, MinUsg_pct=3.99, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=852608.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=1.00, AvgWr_KBps=7.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRvcd_KBps=0.00, AvgUsg_KBps=15.00, AvgXmit_KBps=14.00, MaxUsg_KBps=15.00, MinUsg_KBps=15.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=33.00, MaxUsg_mhz=33.00, MinUsg_mhz=33.00, SumRdy_ms=12.00, SumSwpWait_ms=0.00, SumSys_ms=4.00, SumUsd_ms=253.00, SumWait_ms=19503.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgRd_KBps=0.00, AvgUsg_KBps=7.00, AvgWr_KBps=7.00, MaxTotLat_ms=0.00, MaxUsg_KBps=7.00, MinUsg_KBps=7.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, SumHeartbeat=0.00, Uptime_sec=169138.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgUsg_mhz=35.00, AvgUsg_pct=1.31, MaxUsg_mhz=35.00, MaxUsg_pct=1.31, MinUsg_mhz=35.00, MinUsg_pct=1.31, SumRdy_ms=12.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-2179,hmoid=4912,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-2179"", moname=ross-datagen0044, AvgCmds=1.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=1.00, AvgWr_KBps=7.00, SumBusResets=0.00, SumCmds=21.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=21.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, ActAvg15m_pct=3.00, ActAvg1m_pct=3.00, ActAvg5m_pct=2.00, ActPk15m_pct=3.00, ActPk1m_pct=4.00, ActPk5m_pct=3.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=2.00, RunAvg1m_pct=2.00, RunAvg5m_pct=2.00, RunPk15m_pct=3.00, RunPk1m_pct=4.00, RunPk5m_pct=3.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumPktsRx=10.00, SumPktsTx=3.00, instance=4000, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgActWr_KB=0.00, AvgAct_KB=0.00, AvgCmpd_KB=0.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=611732.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=6012888.00, AvgOvrhdMax_KB=179392.00, AvgOvrhd_KB=63320.00, AvgShrd_KB=5472124.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=41076.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=0.00, AvgSwpTarg_KB=34120.00, AvgSwpd_KB=95292.00, AvgUsg_pct=0.00, AvgVmctlTarg_KB=0.00, AvgVmctl_KB=0.00, AvgZero_KB=5232424.00, MaxAct_KB=0.00, MaxConsum_KB=611732.00, MaxGrtd_KB=6012888.00, MaxOvrhd_KB=63320.00, MaxShrd_KB=5472124.00, MaxSwpIn_KB=41076.00, MaxSwpOut_KB=0.00, MaxSwpTarg_KB=34120.00, MaxSwpd_KB=95292.00, MaxUsg_pct=0.00, MaxVmctlTarg_KB=0.00, MaxVmctl_KB=0.00, MaxZero_KB=5232424.00, MinAct_KB=0.00, MinConsum_KB=611732.00, MinGrtd_KB=6012888.00, MinOvrhd_KB=63320.00, MinShrd_KB=5472124.00, MinSwpIn_KB=41076.00, MinSwpOut_KB=0.00, MinSwpTarg_KB=34120.00, MinSwpd_KB=95292.00, MinUsg_pct=0.00, MinVmctlTarg_KB=0.00, MinVmctl_KB=0.00, MinZero_KB=5232424.00, ZipSaved_KB=0.00, Zipped_KB=0.00, perftype=mem",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumEnergy_j=0.00, perftype=power",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=scsi0:0, perftype=vDisk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRvcd_KBps=0.00, AvgUsg_KBps=0.00, AvgXmit_KBps=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perftype=net",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=68.00, MaxUsg_mhz=68.00, MinUsg_mhz=68.00, SumRdy_ms=253.00, SumSwpWait_ms=0.00, SumSys_ms=0.00, SumUsd_ms=513.00, SumWait_ms=18765.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgRd_KBps=0.00, AvgUsg_KBps=0.00, AvgWr_KBps=0.00, MaxTotLat_ms=0.00, MaxUsg_KBps=0.00, MinUsg_KBps=0.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, SumHeartbeat=30.00, Uptime_sec=482684.00, perftype=sys",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgUsg_mhz=70.00, AvgUsg_pct=2.65, MaxUsg_mhz=70.00, MaxUsg_pct=2.65, MinUsg_mhz=70.00, MinUsg_pct=2.65, SumRdy_ms=253.00, SumSwpWait_ms=0.00, perftype=cpu",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:20 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=vm-744,hmoid=4704,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:vm-744"", moname=io-qa-splunk, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",VirtualMachinePerf,"vmware:perf",1338482240 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, ActAvg15m_pct=840.00, ActAvg1m_pct=777.00, ActAvg5m_pct=782.00, ActPk15m_pct=1309.00, ActPk1m_pct=1093.00, ActPk5m_pct=1093.00, MaxLtd15_pct=0.00, MaxLtd1_pct=0.00, MaxLtd5_pct=0.00, RunAvg15m_pct=571.00, RunAvg1m_pct=479.00, RunAvg5m_pct=550.00, RunPk15m_pct=690.00, RunPk1m_pct=580.00, RunPk5m_pct=679.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14.00, MaxRsrcCpuUsg_MHz=14.00, MinRsrcCpuUsg_MHz=14.00, RsrcMemCow_KB=472.00, RsrcMemMapped_KB=11784.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11784.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, SumBusResets=0.00, SumCmds=143.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=143.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=7.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=55.00, instance=iqn.1998-01.com.vmware:ESXi4103-35b23908-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f687366767a46, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.96, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.96, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.96, SumIdle_ms=4347.00, SumUsd_ms=3439.00, instance=21, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=17.00, AvgXmit_KBps=47.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=800.00, SumPktsTx=1076.00, instance=vmnic0, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=8.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=104.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=8.00, AvgTotWrLat_ms=1.00, AvgWr=19.00, AvgWr_KBps=206.00, SumBusResets=0.00, SumCmds=397.00, SumCmdsAbort=0.00, SumRd=3.00, SumWr=394.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=28.00, MaxRsrcCpuUsg_MHz=28.00, MinRsrcCpuUsg_MHz=28.00, RsrcMemCow_KB=816.00, RsrcMemMapped_KB=62032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=62032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd_KBps=433.00, AvgUsg_KBps=4301.00, AvgWr_KBps=3868.00, MaxTotLat_ms=25.00, MaxUsg_KBps=4301.00, MinUsg_KBps=4301.00, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.10, AvgUsg_pct=17.19, AvgUtil_pct=32.80, MaxCoreUtil_pct=60.10, MaxUsg_pct=17.19, MaxUtil_pct=32.80, MinCoreUtil_pct=60.10, MinUsg_pct=17.19, MinUtil_pct=32.80, SumIdle_ms=4332.00, SumUsd_ms=3439.00, instance=20, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgActWr_KB=6367252.00, AvgAct_KB=8519252.00, AvgCmpd_KB=90613428.00, AvgCmpnRate_KBps=757.00, AvgConsum_KB=47683176.00, AvgDecmpnRate_KBps=683.00, AvgGrtd_KB=64245572.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=27028.00, AvgOvrhd_KB=3370332.00, AvgRsvdCap_MB=6188.00, AvgShrd_KB=22470156.00, AvgShrdcmn_KB=4571436.00, AvgSwpIRate_KBps=261.00, AvgSwpIn_KB=250929524.00, AvgSwpORate_KBps=106.00, AvgSwpOut_KB=251127524.00, AvgSwpUsd_KB=3055164.00, AvgSysUsg_KB=1754752.00, AvgTotCap_MB=88582.00, AvgUnrsvd_KB=84371496.00, AvgUsg_pct=47.37, AvgVmctl_KB=25229452.00, AvgZero_KB=18278548.00, MaxAct_KB=8519252.00, MaxConsum_KB=47683176.00, MaxGrtd_KB=64245572.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=27028.00, MaxOvrhd_KB=3370332.00, MaxShrd_KB=22470156.00, MaxShrdcmn_KB=4571436.00, MaxSwpIn_KB=250929524.00, MaxSwpOut_KB=251127524.00, MaxSwpUsd_KB=3055164.00, MaxSysUsg_KB=1754752.00, MaxUnrsvd_KB=84371496.00, MaxUsg_pct=47.37, MaxVmctl_KB=25229452.00, MaxZero_KB=18278548.00, MinAct_KB=8519252.00, MinConsum_KB=47683176.00, MinGrtd_KB=64245572.00, MinHeap_KB=51200.00, MinHeapfree_KB=27028.00, MinOvrhd_KB=3370332.00, MinShrd_KB=22470156.00, MinShrdcmn_KB=4571436.00, MinSwpIn_KB=250929524.00, MinSwpOut_KB=251127524.00, MinSwpUsd_KB=3055164.00, MinSysUsg_KB=1754752.00, MinUnrsvd_KB=84371496.00, MinUsg_pct=47.37, MinVmctl_KB=25229452.00, MinZero_KB=18278548.00, State=0.00, perftype=mem",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=30.05, AvgUtil_pct=61.54, MaxCoreUtil_pct=96.88, MaxUsg_pct=30.05, MaxUtil_pct=61.54, MinCoreUtil_pct=96.88, MinUsg_pct=30.05, MinUtil_pct=61.54, SumIdle_ms=481.00, SumUsd_ms=6011.00, instance=5, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=10.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=10.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=12.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=12.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=18.09, AvgUtil_pct=33.96, MaxCoreUtil_pct=61.02, MaxUsg_pct=18.09, MaxUtil_pct=33.96, MinCoreUtil_pct=61.02, MinUsg_pct=18.09, MinUtil_pct=33.96, SumIdle_ms=4167.00, SumUsd_ms=3619.00, instance=16, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=33.51, AvgUtil_pct=66.26, MaxCoreUtil_pct=96.42, MaxUsg_pct=33.51, MaxUtil_pct=66.26, MinCoreUtil_pct=96.42, MinUsg_pct=33.51, MinUtil_pct=66.26, SumIdle_ms=529.00, SumUsd_ms=6702.00, instance=7, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, Uptime_sec=8957269.00, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=7944.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=15361.00, AvgUsg_pct=48.12, AvgUtil_pct=47.74, MaxCoreUtil_pct=100.00, MaxUsg_mhz=15361.00, MaxUsg_pct=48.12, MaxUtil_pct=47.74, MinCoreUtil_pct=100.00, MinUsg_mhz=15361.00, MinUsg_pct=48.12, MinUtil_pct=47.74, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15.00, MaxRsrcCpuUsg_MHz=15.00, MinRsrcCpuUsg_MHz=15.00, RsrcMemCow_KB=2676.00, RsrcMemMapped_KB=5584.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=5584.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1399.00, AvgUsg_KBps=6736.00, AvgXmit_KBps=5337.00, MaxUsg_KBps=6736.00, MinUsg_KBps=6736.00, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=5.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, SumBusResets=0.00, SumCmds=394.00, SumCmdsAbort=0.00, SumRd=211.00, SumWr=141.00, instance=naa.500000e116f4aa60, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.32, AvgUtil_pct=32.98, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.32, MaxUtil_pct=32.98, MinCoreUtil_pct=60.78, MinUsg_pct=17.32, MinUtil_pct=32.98, SumIdle_ms=4210.00, SumUsd_ms=3466.00, instance=12, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=134.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgSzNormDsLat_usec=6500.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=22.00, AvgWr_KBps=299.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=15365.00, MaxRsrcCpuUsg_MHz=15365.00, MinRsrcCpuUsg_MHz=15365.00, RsrcMemCow_KB=27048132.00, RsrcMemMapped_KB=64245572.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8519252.00, RsrcMemZero_KB=18278548.00, instance=host, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.21, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.21, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.21, SumIdle_ms=4405.00, SumUsd_ms=3395.00, instance=18, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=11.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=147.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=3.00, AvgRd_KBps=133.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=144.00, AvgWr_KBps=2494.00, SumBusResets=0.00, SumCmds=2943.00, SumCmdsAbort=0.00, SumRd=62.00, SumWr=2881.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=1.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=33.03, AvgUtil_pct=65.80, MaxCoreUtil_pct=97.13, MaxUsg_pct=33.03, MaxUtil_pct=65.80, MinCoreUtil_pct=97.13, MinUsg_pct=33.03, MinUtil_pct=65.80, SumIdle_ms=445.00, SumUsd_ms=6608.00, instance=2, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=17.15, AvgUtil_pct=32.65, MaxCoreUtil_pct=59.75, MaxUsg_pct=17.15, MaxUtil_pct=32.65, MinCoreUtil_pct=59.75, MinUsg_pct=17.15, MinUtil_pct=32.65, SumIdle_ms=4380.00, SumUsd_ms=3431.00, instance=14, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=336.00, MaxRsrcCpuUsg_MHz=336.00, MinRsrcCpuUsg_MHz=336.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=149744.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=149744.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=30.38, AvgUtil_pct=62.09, MaxCoreUtil_pct=96.99, MaxUsg_pct=30.38, MaxUtil_pct=62.09, MinCoreUtil_pct=96.99, MinUsg_pct=30.38, MinUtil_pct=62.09, SumIdle_ms=496.00, SumUsd_ms=6077.00, instance=8, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=88.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=29.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=2.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=29.00, AvgWr_KBps=332.00, SumBusResets=0.00, SumCmds=584.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=583.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=1.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=250.00, SumPktsTx=58.00, instance=vmnic2, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=97.13, AvgUsg_pct=28.70, AvgUtil_pct=58.78, MaxCoreUtil_pct=97.13, MaxUsg_pct=28.70, MaxUtil_pct=58.78, MinCoreUtil_pct=97.13, MinUsg_pct=28.70, MinUtil_pct=58.78, SumIdle_ms=477.00, SumUsd_ms=5741.00, instance=3, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=91.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=91.00, AvgWr_KBps=422.00, SumBusResets=0.00, SumCmds=1825.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1825.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.77, AvgUtil_pct=33.29, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.77, MaxUtil_pct=33.29, MinCoreUtil_pct=61.92, MinUsg_pct=17.77, MinUtil_pct=33.29, SumIdle_ms=4075.00, SumUsd_ms=3555.00, instance=23, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.51, AvgUsg_pct=16.97, AvgUtil_pct=32.27, MaxCoreUtil_pct=59.51, MaxUsg_pct=16.97, MaxUtil_pct=32.27, MinCoreUtil_pct=59.51, MinUsg_pct=16.97, MinUtil_pct=32.27, SumIdle_ms=4433.00, SumUsd_ms=3394.00, instance=19, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.88, AvgUsg_pct=31.76, AvgUtil_pct=62.16, MaxCoreUtil_pct=96.88, MaxUsg_pct=31.76, MaxUtil_pct=62.16, MinCoreUtil_pct=96.88, MinUsg_pct=31.76, MinUtil_pct=62.16, SumIdle_ms=497.00, SumUsd_ms=6352.00, instance=4, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=43.00, MaxRsrcCpuUsg_MHz=43.00, MinRsrcCpuUsg_MHz=43.00, RsrcMemCow_KB=4352.00, RsrcMemMapped_KB=25708.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=25708.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=59.75, AvgUsg_pct=16.98, AvgUtil_pct=32.32, MaxCoreUtil_pct=59.75, MaxUsg_pct=16.98, MaxUtil_pct=32.32, MinCoreUtil_pct=59.75, MinUsg_pct=16.98, MinUtil_pct=32.32, SumIdle_ms=4370.00, SumUsd_ms=3396.00, instance=15, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=29.75, AvgUtil_pct=62.11, MaxCoreUtil_pct=96.75, MaxUsg_pct=29.75, MaxUtil_pct=62.11, MinCoreUtil_pct=96.75, MinUsg_pct=29.75, MinUtil_pct=62.11, SumIdle_ms=516.00, SumUsd_ms=5952.00, instance=10, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.75, AvgUsg_pct=31.63, AvgUtil_pct=64.56, MaxCoreUtil_pct=96.75, MaxUsg_pct=31.63, MaxUtil_pct=64.56, MinCoreUtil_pct=96.75, MinUsg_pct=31.63, MinUtil_pct=64.56, SumIdle_ms=474.00, SumUsd_ms=6328.00, instance=11, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=32.00, SumBusResets=0.00, SumCmds=37.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=37.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=476.00, AvgXmit_KBps=3917.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=11155.00, SumPktsTx=14479.00, instance=vmnic3, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=903.00, AvgXmit_KBps=1372.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21712.00, SumPktsTx=25071.00, instance=vmnic6, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=87.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=60.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=11.00, AvgDevRdLat_ms=13.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=66.00, AvgRd_KBps=271.00, AvgTotLat_ms=11.00, AvgTotRdLat_ms=13.00, AvgTotWrLat_ms=2.00, AvgWr=12.00, AvgWr_KBps=155.00, SumBusResets=0.00, SumCmds=1583.00, SumCmdsAbort=0.00, SumRd=1329.00, SumWr=254.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=4.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=90.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=82.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=57.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=401.00, AvgRd=71.00, AvgRd_KBps=417.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=330.00, AvgWr_KBps=3850.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=3.00, AvgRd_KBps=134.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=271.00, AvgWr_KBps=3284.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=1032.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1032.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=24.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.99, AvgUsg_pct=31.46, AvgUtil_pct=64.74, MaxCoreUtil_pct=96.99, MaxUsg_pct=31.46, MaxUtil_pct=64.74, MinCoreUtil_pct=96.99, MinUsg_pct=31.46, MinUtil_pct=64.74, SumIdle_ms=476.00, SumUsd_ms=6294.00, instance=9, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1.00, MaxRsrcCpuUsg_MHz=1.00, MinRsrcCpuUsg_MHz=1.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=27.61, AvgUtil_pct=56.30, MaxCoreUtil_pct=96.42, MaxUsg_pct=27.61, MaxUtil_pct=56.30, MinCoreUtil_pct=96.42, MinUsg_pct=27.61, MinUtil_pct=56.30, SumIdle_ms=580.00, SumUsd_ms=5523.00, instance=6, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=60.78, AvgUsg_pct=17.68, AvgUtil_pct=33.72, MaxCoreUtil_pct=60.78, MaxUsg_pct=17.68, MaxUtil_pct=33.72, MinCoreUtil_pct=60.78, MinUsg_pct=17.68, MinUtil_pct=33.72, SumIdle_ms=4253.00, SumUsd_ms=3537.00, instance=13, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.81, AvgUtil_pct=62.92, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.81, MaxUtil_pct=62.92, MinCoreUtil_pct=96.42, MinUsg_pct=30.81, MinUtil_pct=62.92, SumIdle_ms=583.00, SumUsd_ms=6162.00, instance=1, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=96.42, AvgUsg_pct=30.45, AvgUtil_pct=62.79, MaxCoreUtil_pct=96.42, MaxUsg_pct=30.45, MaxUtil_pct=62.79, MinCoreUtil_pct=96.42, MinUsg_pct=30.45, MinUtil_pct=62.79, SumIdle_ms=543.00, SumUsd_ms=6090.00, instance=0, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.92, AvgUsg_pct=17.89, AvgUtil_pct=33.90, MaxCoreUtil_pct=61.92, MaxUsg_pct=17.89, MaxUtil_pct=33.90, MinCoreUtil_pct=61.92, MinUsg_pct=17.89, MinUtil_pct=33.90, SumIdle_ms=4161.00, SumUsd_ms=3580.00, instance=22, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCoreUtil_pct=61.02, AvgUsg_pct=17.06, AvgUtil_pct=32.72, MaxCoreUtil_pct=61.02, MaxUsg_pct=17.06, MaxUtil_pct=32.72, MinCoreUtil_pct=61.02, MinUsg_pct=17.06, MinUtil_pct=32.72, SumIdle_ms=4254.00, SumUsd_ms=3413.00, instance=17, perftype=cpu",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=6.00, MaxRsrcCpuUsg_MHz=6.00, MinRsrcCpuUsg_MHz=6.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=30.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=18.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=5.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=5.00, AvgTotWrLat_ms=2.00, AvgWr=5.00, AvgWr_KBps=24.00, SumBusResets=0.00, SumCmds=112.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=110.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=3.00, AvgWr_KBps=23.00, SumBusResets=0.00, SumCmds=66.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=66.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=4daf55e8-44794690-b3e8-842b2b76f183, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgDsIops=244.00, AvgRd=1.00, AvgRd_KBps=12.00, AvgSzNormDsLat_usec=28200.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=1.00, AvgWr=23.00, AvgWr_KBps=209.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcCpuAct1_pct=19.00, RsrcCpuAct5_pct=27.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=16.00, RsrcCpuRun5_pct=22.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, DiskUsg_pct=0.22, instance=/, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=2.00, MaxRsrcCpuUsg_MHz=2.00, MinRsrcCpuUsg_MHz=2.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14531.00, MaxRsrcCpuUsg_MHz=14531.00, MinRsrcCpuUsg_MHz=14531.00, RsrcMemCow_KB=27039048.00, RsrcMemMapped_KB=63986608.00, RsrcMemOvrhd_KB=1558844.00, RsrcMemShrd_KB=22470156.00, RsrcMemSwpd_KB=3055164.00, RsrcMemTouch_KB=8260288.00, RsrcMemZero_KB=18278548.00, instance=host/user, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3620.00, perftype=power",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=444.00, MaxRsrcCpuUsg_MHz=444.00, MinRsrcCpuUsg_MHz=444.00, RsrcMemCow_KB=9084.00, RsrcMemMapped_KB=258964.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=258964.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=25.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=25.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=25.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=25.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgCmds=19.00, AvgRd=10.00, AvgRd_KBps=15.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=5.00, AvgWr=7.00, AvgWr_KBps=17.00, instance=sas.5782bcb005a50700-sas.500000e116f4aa62-naa.500000e116f4aa60, perftype=sPath",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:37:00 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-19,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-19"", moname=ESXi4103.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host6.foobar.com",HostSystemPerf,"vmware:perf",1338482220 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, ActAvg15m_pct=615.00, ActAvg1m_pct=525.00, ActAvg5m_pct=520.00, ActPk15m_pct=806.00, ActPk1m_pct=633.00, ActPk5m_pct=765.00, MaxLtd15_pct=0.00, MaxLtd1_pct=7.00, MaxLtd5_pct=0.00, RunAvg15m_pct=512.00, RunAvg1m_pct=456.00, RunAvg5m_pct=438.00, RunPk15m_pct=656.00, RunPk1m_pct=538.00, RunPk5m_pct=630.00, SmplCnt=160.00, SmplPrd_ms=6000.00, perftype=resCpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=16.00, MaxRsrcCpuUsg_MHz=16.00, MinRsrcCpuUsg_MHz=16.00, RsrcMemCow_KB=480.00, RsrcMemMapped_KB=12164.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=12164.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/init, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f687366767a46, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, instance=iqn.1998-01.com.vmware:ESXi4104-5f9a057e-00023d000001,iqn.1992-08.com.netapp:sn.1574383237,t,2000-naa.60a980006471682f4f6f67436a2d4e48, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4eb7f1b4-0bf8c6fc-7058-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=24.09, AvgUtil_pct=34.19, MaxCoreUtil_pct=61.60, MaxUsg_pct=24.09, MaxUtil_pct=34.19, MinCoreUtil_pct=61.60, MinUsg_pct=24.09, MinUtil_pct=34.19, SumIdle_ms=4166.00, SumUsd_ms=4820.00, instance=21, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=13.00, AvgXmit_KBps=60.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=1081.00, SumPktsTx=1484.00, instance=vmnic0, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=c731a500-651c5016, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=4f341671-3e55c807-2999-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=2.00, SumBusResets=0.00, SumCmds=2.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=2.00, instance=naa.60a9800064724939504a6743696f4b38, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6a43785a5764, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=40.00, MaxRsrcCpuUsg_MHz=40.00, MinRsrcCpuUsg_MHz=40.00, RsrcMemCow_KB=836.00, RsrcMemMapped_KB=64000.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=64000.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd_KBps=108.00, AvgUsg_KBps=8138.00, AvgWr_KBps=8030.00, MaxTotLat_ms=15.00, MaxUsg_KBps=8138.00, MinUsg_KBps=8138.00, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.60, AvgUsg_pct=21.39, AvgUtil_pct=31.54, MaxCoreUtil_pct=61.60, MaxUsg_pct=21.39, MaxUtil_pct=31.54, MinCoreUtil_pct=61.60, MinUsg_pct=21.39, MinUtil_pct=31.54, SumIdle_ms=4216.00, SumUsd_ms=4279.00, instance=20, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=21.00, SumPktsTx=0.00, instance=vmnic7, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgActWr_KB=6219556.00, AvgAct_KB=7710812.00, AvgCmpd_KB=478888.00, AvgCmpnRate_KBps=0.00, AvgConsum_KB=68395340.00, AvgDecmpnRate_KBps=0.00, AvgGrtd_KB=89436516.00, AvgHeap_KB=51200.00, AvgHeapfree_KB=26985.00, AvgOvrhd_KB=3778240.00, AvgRsvdCap_MB=4483.00, AvgShrd_KB=25050556.00, AvgShrdcmn_KB=5468668.00, AvgSwpIRate_KBps=0.00, AvgSwpIn_KB=1429420.00, AvgSwpORate_KBps=0.00, AvgSwpOut_KB=1630920.00, AvgSwpUsd_KB=1948024.00, AvgSysUsg_KB=1787716.00, AvgTotCap_MB=88569.00, AvgUnrsvd_KB=86104260.00, AvgUsg_pct=67.95, AvgVmctl_KB=10895476.00, AvgZero_KB=19546144.00, MaxAct_KB=7710812.00, MaxConsum_KB=68395340.00, MaxGrtd_KB=89436516.00, MaxHeap_KB=51200.00, MaxHeapfree_KB=26985.00, MaxOvrhd_KB=3778240.00, MaxShrd_KB=25050556.00, MaxShrdcmn_KB=5468668.00, MaxSwpIn_KB=1429420.00, MaxSwpOut_KB=1630920.00, MaxSwpUsd_KB=1948024.00, MaxSysUsg_KB=1787716.00, MaxUnrsvd_KB=86104260.00, MaxUsg_pct=67.95, MaxVmctl_KB=10895476.00, MaxZero_KB=19546144.00, MinAct_KB=7710812.00, MinConsum_KB=68395340.00, MinGrtd_KB=89436516.00, MinHeap_KB=51200.00, MinHeapfree_KB=26985.00, MinOvrhd_KB=3778240.00, MinShrd_KB=25050556.00, MinShrdcmn_KB=5468668.00, MinSwpIn_KB=1429420.00, MinSwpOut_KB=1630920.00, MinSwpUsd_KB=1948024.00, MinSysUsg_KB=1787716.00, MinUnrsvd_KB=86104260.00, MinUsg_pct=67.95, MinVmctl_KB=10895476.00, MinZero_KB=19546144.00, State=0.00, perftype=mem",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.26, AvgUtil_pct=34.59, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.26, MaxUtil_pct=34.59, MinCoreUtil_pct=64.51, MinUsg_pct=18.26, MinUtil_pct=34.59, SumIdle_ms=3984.00, SumUsd_ms=3652.00, instance=5, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=16.00, RsrcMemMapped_KB=444.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=444.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/slp, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=17.00, SumPktsTx=0.00, instance=vmnic4, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a6958334c526b, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=sata.vmhba0-sata.0:0-mpx.vmhba0:C0:T0:L0, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=24.57, AvgUtil_pct=35.41, MaxCoreUtil_pct=65.75, MaxUsg_pct=24.57, MaxUtil_pct=35.41, MinCoreUtil_pct=65.75, MinUsg_pct=24.57, MinUtil_pct=35.41, SumIdle_ms=3758.00, SumUsd_ms=4915.00, instance=16, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=7.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=7.00, AvgTotWrLat_ms=1.00, AvgWr=1.00, AvgWr_KBps=49.00, SumBusResets=0.00, SumCmds=23.00, SumCmdsAbort=0.00, SumRd=1.00, SumWr=22.00, instance=naa.60a9800064724939504a6743696d7739, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a452d2d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.23, AvgUtil_pct=34.81, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.23, MaxUtil_pct=34.81, MinCoreUtil_pct=64.95, MinUsg_pct=18.23, MinUtil_pct=34.81, SumIdle_ms=3975.00, SumUsd_ms=3646.00, instance=7, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=100.00, AvgRsvdCap_MHz=2133.00, AvgTotCap_MHz=28318.00, AvgUsg_mhz=14055.00, AvgUsg_pct=44.03, AvgUtil_pct=35.28, MaxCoreUtil_pct=100.00, MaxUsg_mhz=14055.00, MaxUsg_pct=44.03, MaxUtil_pct=35.28, MinCoreUtil_pct=100.00, MinUsg_mhz=14055.00, MinUsg_pct=44.03, MinUtil_pct=35.28, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, Uptime_sec=8961354.00, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=582.00, AvgUsg_KBps=8812.00, AvgXmit_KBps=8229.00, MaxUsg_KBps=8812.00, MinUsg_KBps=8812.00, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=17.00, MaxRsrcCpuUsg_MHz=17.00, MinRsrcCpuUsg_MHz=17.00, RsrcMemCow_KB=3764.00, RsrcMemMapped_KB=11768.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=11768.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/aam, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=30.00, AvgUtil_pct=40.75, MaxCoreUtil_pct=70.60, MaxUsg_pct=30.00, MaxUtil_pct=40.75, MinCoreUtil_pct=70.60, MinUsg_pct=30.00, MinUtil_pct=40.75, SumIdle_ms=3222.00, SumUsd_ms=6001.00, instance=12, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=129.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgSzNormDsLat_usec=8100.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=5.00, AvgWr=3.00, AvgWr_KBps=14.00, instance=4f2339b6-96074928-380f-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=1.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=mpx.vmhba32:C0:T0:L0, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=14055.00, MaxRsrcCpuUsg_MHz=14055.00, MinRsrcCpuUsg_MHz=14055.00, RsrcMemCow_KB=30524876.00, RsrcMemMapped_KB=89436516.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7710812.00, RsrcMemZero_KB=19546144.00, instance=host, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/plugins/likewise, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=20.84, AvgUtil_pct=30.02, MaxCoreUtil_pct=65.40, MaxUsg_pct=20.84, MaxUtil_pct=30.02, MinCoreUtil_pct=65.40, MinUsg_pct=20.84, MinUtil_pct=30.02, SumIdle_ms=3799.00, SumUsd_ms=4169.00, instance=18, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f69386c343961, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=78.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=1.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=1.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgTotLat_ms=4.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=4.00, AvgWr=78.00, AvgWr_KBps=2196.00, SumBusResets=0.00, SumCmds=1574.00, SumCmdsAbort=0.00, SumRd=6.00, SumWr=1568.00, instance=naa.60a980006471682f4f6f67436a423451, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=261.00, instance=4eb7f266-2a89385a-3643-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=5.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=5.00, AvgWr_KBps=78.00, SumBusResets=0.00, SumCmds=104.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=104.00, instance=naa.60a980006471682f4f6f67436a414d44, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=11.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=4.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=6.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=4.00, AvgTotWrLat_ms=2.00, AvgWr=11.00, AvgWr_KBps=186.00, SumBusResets=0.00, SumCmds=234.00, SumCmdsAbort=0.00, SumRd=2.00, SumWr=232.00, instance=naa.60a9800064724939504a6743696e5369, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a674369746575, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/drivers, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=18.48, AvgUtil_pct=35.18, MaxCoreUtil_pct=63.05, MaxUsg_pct=18.48, MaxUtil_pct=35.18, MinCoreUtil_pct=63.05, MinUsg_pct=18.48, MinUtil_pct=35.18, SumIdle_ms=4135.00, SumUsd_ms=3697.00, instance=2, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=24.88, AvgUtil_pct=34.74, MaxCoreUtil_pct=66.20, MaxUsg_pct=24.88, MaxUtil_pct=34.74, MinCoreUtil_pct=66.20, MinUsg_pct=24.88, MinUtil_pct=34.74, SumIdle_ms=3682.00, SumUsd_ms=4977.00, instance=14, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=67793.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba2, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=3.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=3.00, AvgWr=0.00, AvgWr_KBps=9.00, SumBusResets=0.00, SumCmds=14.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=14.00, instance=naa.60a9800064724939504a6a43785a526d, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=15.00, SumPktsTx=0.00, instance=vmnic5, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=19.05, AvgUtil_pct=35.85, MaxCoreUtil_pct=65.12, MaxUsg_pct=19.05, MaxUtil_pct=35.85, MinCoreUtil_pct=65.12, MinUsg_pct=19.05, MinUtil_pct=35.85, SumIdle_ms=3873.00, SumUsd_ms=3811.00, instance=8, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=622.00, MaxRsrcCpuUsg_MHz=622.00, MinRsrcCpuUsg_MHz=622.00, RsrcMemCow_KB=568.00, RsrcMemMapped_KB=153064.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=153064.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/hostd, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb_xml, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=3.00, AvgDevRdLat_ms=12.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=50.00, AvgTotLat_ms=3.00, AvgTotRdLat_ms=12.00, AvgTotWrLat_ms=1.00, AvgWr=2.00, AvgWr_KBps=227.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=7.00, SumWr=53.00, instance=naa.60a9800064724939504a6743696f7037, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=7.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=7.00, AvgWr_KBps=66.00, SumBusResets=0.00, SumCmds=148.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=148.00, instance=naa.60a980006471682f4f6f67436a42584e, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=3.00, AvgXmit_KBps=32.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=830.00, SumPktsTx=670.00, instance=vmnic2, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=63.05, AvgUsg_pct=17.52, AvgUtil_pct=33.69, MaxCoreUtil_pct=63.05, MaxUsg_pct=17.52, MaxUtil_pct=33.69, MinCoreUtil_pct=63.05, MinUsg_pct=17.52, MinUtil_pct=33.69, SumIdle_ms=4144.00, SumUsd_ms=3504.00, instance=3, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=79.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=79.00, AvgWr_KBps=386.00, SumBusResets=0.00, SumCmds=1598.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=1598.00, instance=naa.60a980006471682f4f6f67436a2d4e48, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/visorfs, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=4daf590b-1ab1f708-0db3-842b2b76ef11, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=30.36, AvgUtil_pct=41.00, MaxCoreUtil_pct=73.92, MaxUsg_pct=30.36, MaxUtil_pct=41.00, MinCoreUtil_pct=73.92, MinUsg_pct=30.36, MinUtil_pct=41.00, SumIdle_ms=2854.00, SumUsd_ms=6072.00, instance=23, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=1.00, AvgDevWrLat_ms=6.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=64.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, SumBusResets=0.00, SumCmds=361.00, SumCmdsAbort=0.00, SumRd=195.00, SumWr=128.00, instance=naa.500000e116f4aa70, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.40, AvgUsg_pct=27.65, AvgUtil_pct=39.86, MaxCoreUtil_pct=65.40, MaxUsg_pct=27.65, MaxUtil_pct=39.86, MinCoreUtil_pct=65.40, MinUsg_pct=27.65, MinUtil_pct=39.86, SumIdle_ms=3764.00, SumUsd_ms=5531.00, instance=19, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.51, AvgUsg_pct=18.61, AvgUtil_pct=35.16, MaxCoreUtil_pct=64.51, MaxUsg_pct=18.61, MaxUtil_pct=35.16, MinCoreUtil_pct=64.51, MinUsg_pct=18.61, MinUtil_pct=35.16, SumIdle_ms=3980.00, SumUsd_ms=3724.00, instance=4, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/FT, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/shell, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba0, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=38.00, MaxRsrcCpuUsg_MHz=38.00, MinRsrcCpuUsg_MHz=38.00, RsrcMemCow_KB=4412.00, RsrcMemMapped_KB=32764.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=32764.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/vpxa, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=66.20, AvgUsg_pct=26.52, AvgUtil_pct=35.54, MaxCoreUtil_pct=66.20, MaxUsg_pct=26.52, MaxUtil_pct=35.54, MinCoreUtil_pct=66.20, MinUsg_pct=26.52, MinUtil_pct=35.54, SumIdle_ms=3694.00, SumUsd_ms=5305.00, instance=15, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.46, AvgUtil_pct=35.12, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.46, MaxUtil_pct=35.12, MinCoreUtil_pct=64.98, MinUsg_pct=18.46, MinUtil_pct=35.12, SumIdle_ms=3952.00, SumUsd_ms=3693.00, instance=10, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.98, AvgUsg_pct=18.68, AvgUtil_pct=35.42, MaxCoreUtil_pct=64.98, MaxUsg_pct=18.68, MaxUtil_pct=35.42, MinCoreUtil_pct=64.98, MinUsg_pct=18.68, MinUtil_pct=35.42, SumIdle_ms=3937.00, SumUsd_ms=3737.00, instance=11, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=23.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=6.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=22.00, AvgWr_KBps=195.00, SumBusResets=0.00, SumCmds=464.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=444.00, instance=naa.60a9800064724939504a674369714449, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcCpuAct1_pct=0.00, RsrcCpuAct5_pct=0.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=1000.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=0.00, RsrcCpuRun5_pct=0.00, RsrcMemAllocMax_KB=0.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmotion, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=193.00, AvgXmit_KBps=8128.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=19953.00, SumPktsTx=25785.00, instance=vmnic3, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=371.00, AvgXmit_KBps=7.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=6298.00, SumPktsTx=2060.00, instance=vmnic6, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=100.00, RsrcMemMapped_KB=2216.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=2216.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/sfcb, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=15.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=15.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=15.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=15.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=8.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8.00, instance=naa.60a980006471682f4f6f687366767378, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=3.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=9.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=2.00, AvgWr_KBps=1.00, SumBusResets=0.00, SumCmds=60.00, SumCmdsAbort=0.00, SumRd=20.00, SumWr=40.00, instance=naa.60a980006471682f4f6f687366773372, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=8.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=1.00, AvgRd_KBps=11.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=7.00, AvgWr_KBps=45.00, SumBusResets=0.00, SumCmds=173.00, SumCmdsAbort=0.00, SumRd=25.00, SumWr=148.00, instance=naa.60a9800064724939504a6743696e7935, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=sas.5782bcb005a4e800-sas.500000e116f4aa72-naa.500000e116f4aa70, perftype=sPath",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=638.00, AvgRd=4.00, AvgRd_KBps=93.00, AvgTotRdLat_ms=2.00, AvgTotWrLat_ms=2.00, AvgWr=634.00, AvgWr_KBps=8014.00, instance=vmhba34, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=8.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=1.00, AvgWr=571.00, AvgWr_KBps=7216.00, instance=4eb7f135-2846b028-3627-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=8.00, RsrcMemMapped_KB=1024.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=1024.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/lbt, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=2.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=2.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=2.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=0.00, AvgWr_KBps=65.00, SumBusResets=0.00, SumCmds=7.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=7.00, instance=naa.60a9800064724939504a674369716664, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgSzNormDsLat_usec=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=2.00, AvgWr=1.00, AvgWr_KBps=9.00, instance=4f4e9ab6-f487a38c-d791-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.12, AvgUsg_pct=18.55, AvgUtil_pct=34.93, MaxCoreUtil_pct=65.12, MaxUsg_pct=18.55, MaxUtil_pct=34.93, MinCoreUtil_pct=65.12, MinUsg_pct=18.55, MinUtil_pct=34.93, SumIdle_ms=3850.00, SumUsd_ms=3710.00, instance=9, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=19.00, MaxRsrcCpuUsg_MHz=19.00, MinRsrcCpuUsg_MHz=19.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/vmkapimod, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=64.95, AvgUsg_pct=18.69, AvgUtil_pct=35.52, MaxCoreUtil_pct=64.95, MaxUsg_pct=18.69, MaxUtil_pct=35.52, MinCoreUtil_pct=64.95, MinUsg_pct=18.69, MinUtil_pct=35.52, SumIdle_ms=3968.00, SumUsd_ms=3740.00, instance=6, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=4.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=3fd06fc6-6876f0d9, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a456a62, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=70.60, AvgUsg_pct=24.85, AvgUtil_pct=34.24, MaxCoreUtil_pct=70.60, MaxUsg_pct=24.85, MaxUtil_pct=34.24, MinCoreUtil_pct=70.60, MinUsg_pct=24.85, MinUtil_pct=34.24, SumIdle_ms=3225.00, SumUsd_ms=4972.00, instance=13, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a980006471682f4f6f67436a44654f, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=16.88, AvgUtil_pct=32.96, MaxCoreUtil_pct=61.50, MaxUsg_pct=16.88, MaxUtil_pct=32.96, MinCoreUtil_pct=61.50, MinUsg_pct=16.88, MinUtil_pct=32.96, SumIdle_ms=4358.00, SumUsd_ms=3376.00, instance=1, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRvcd_KBps=0.00, AvgXmit_KBps=0.00, SumDropRx=0.00, SumDropTx=0.00, SumPktsRx=14.00, SumPktsTx=0.00, instance=vmnic1, perftype=net",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=61.50, AvgUsg_pct=17.98, AvgUtil_pct=34.68, MaxCoreUtil_pct=61.50, MaxUsg_pct=17.98, MaxUtil_pct=34.68, MinCoreUtil_pct=61.50, MinUsg_pct=17.98, MinUtil_pct=34.68, SumIdle_ms=4346.00, SumUsd_ms=3596.00, instance=0, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=73.92, AvgUsg_pct=28.17, AvgUtil_pct=37.01, MaxCoreUtil_pct=73.92, MaxUsg_pct=28.17, MaxUtil_pct=37.01, MinCoreUtil_pct=73.92, MinUsg_pct=28.17, MinUtil_pct=37.01, SumIdle_ms=2799.00, SumUsd_ms=5634.00, instance=22, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/vim/vmci, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCoreUtil_pct=65.75, AvgUsg_pct=25.60, AvgUtil_pct=34.44, MaxCoreUtil_pct=65.75, MaxUsg_pct=25.60, MaxUtil_pct=34.44, MinCoreUtil_pct=65.75, MinUsg_pct=25.60, MinUtil_pct=34.44, SumIdle_ms=3773.00, SumUsd_ms=5120.00, instance=17, perftype=cpu",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1976.00, MaxRsrcCpuUsg_MHz=1976.00, MinRsrcCpuUsg_MHz=1976.00, RsrcCpuAct1_pct=78.00, RsrcCpuAct5_pct=29.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=266.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=60.00, RsrcCpuRun5_pct=21.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, instance=vmhba33, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=68.00, RsrcMemMapped_KB=420.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=420.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor/wsman, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=0.00, AvgDevLat_ms=0.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=0.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=0.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=0.00, AvgWr=0.00, AvgWr_KBps=0.00, SumBusResets=0.00, SumCmds=0.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=0.00, instance=naa.60a9800064724939504a6958332f4637, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=400.00, AvgDevLat_ms=1.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=1.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=1.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=1.00, AvgWr=400.00, AvgWr_KBps=4488.00, SumBusResets=0.00, SumCmds=8004.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=8004.00, instance=naa.60a980006471682f4f6f67436a433878, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcCpuAct1_pct=33.00, RsrcCpuAct5_pct=38.00, RsrcCpuAllocMax_MHz=4294967295.00, RsrcCpuAllocMin_MHz=0.00, RsrcCpuAllocShares=500.00, RsrcCpuMaxLtd1_pct=0.00, RsrcCpuMaxLtd5_pct=0.00, RsrcCpuRun1_pct=28.00, RsrcCpuRun5_pct=31.00, RsrcMemAllocMax_KB=4294967295.00, RsrcMemAllocMin_KB=0.00, RsrcMemAllocShares=500.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgDsIops=1506.00, AvgRd=1.00, AvgRd_KBps=69.00, AvgSzNormDsLat_usec=8300.00, AvgTotRdLat_ms=3.00, AvgTotWrLat_ms=1.00, AvgWr=22.00, AvgWr_KBps=511.00, instance=4eb7f2fc-0a4c67a7-0c95-842b2b772db1, perfsubtype=dStore, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=18.00, AvgRd=9.00, AvgRd_KBps=14.00, AvgTotRdLat_ms=1.00, AvgTotWrLat_ms=6.00, AvgWr=6.00, AvgWr_KBps=16.00, instance=vmhba1, perfsubtype=sAdapt, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, DiskUsg_pct=0.23, instance=/, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=1951.00, MaxRsrcCpuUsg_MHz=1951.00, MinRsrcCpuUsg_MHz=1951.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/helper, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=10433.00, MaxRsrcCpuUsg_MHz=10433.00, MinRsrcCpuUsg_MHz=10433.00, RsrcMemCow_KB=30514624.00, RsrcMemMapped_KB=89158652.00, RsrcMemOvrhd_KB=1719744.00, RsrcMemShrd_KB=25050556.00, RsrcMemSwpd_KB=1948024.00, RsrcMemTouch_KB=7432948.00, RsrcMemZero_KB=19546144.00, instance=host/user, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgPowerCap_w=0.00, SumEnergy_j=3988.00, perftype=power",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=735.00, MaxRsrcCpuUsg_MHz=735.00, MinRsrcCpuUsg_MHz=735.00, RsrcMemCow_KB=10252.00, RsrcMemMapped_KB=277864.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=277864.00, RsrcMemZero_KB=0.00, instance=host/vim/vmvisor, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgCmds=1.00, AvgDevLat_ms=9.00, AvgDevRdLat_ms=0.00, AvgDevWrLat_ms=9.00, AvgKrnLat_ms=0.00, AvgKrnRdLat_ms=0.00, AvgKrnWrLat_ms=0.00, AvgMaxQueDepth=128.00, AvgQueLat_ms=0.00, AvgQueRdLat_ms=0.00, AvgQueWrLat_ms=0.00, AvgRd=0.00, AvgRd_KBps=0.00, AvgTotLat_ms=9.00, AvgTotRdLat_ms=0.00, AvgTotWrLat_ms=9.00, AvgWr=1.00, AvgWr_KBps=13.00, SumBusResets=0.00, SumCmds=27.00, SumCmdsAbort=0.00, SumRd=0.00, SumWr=27.00, instance=naa.60a980006471682f4f6f687366786865, perfsubtype=disk, perftype=disk",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 +"2012-05-31 16:36:40 UTC, fa=splunkvmwarefa,vc=VCENTER41, vmoid=host-20,hmoid=ha-host,meid=""vc-593E6A61-A674-478C-82C2-8EDB92A22906:host-20"", moname=ESXi4104.SV.SPLUNK.COM, AvgRsrcCpuUsg_MHz=0.00, MaxRsrcCpuUsg_MHz=0.00, MinRsrcCpuUsg_MHz=0.00, RsrcMemCow_KB=0.00, RsrcMemMapped_KB=0.00, RsrcMemOvrhd_KB=0.00, RsrcMemShrd_KB=0.00, RsrcMemSwpd_KB=0.00, RsrcMemTouch_KB=0.00, RsrcMemZero_KB=0.00, instance=host/system/kernel/kmanaged/fastslab, perftype=sys",vmware,"host2.foobar.com",HostSystemPerf,"vmware:perf",1338482200 diff --git a/splunk_eventgen/samples/webhosts.sample b/splunk_eventgen/samples/webhosts.sample new file mode 100644 index 00000000..66e7e32b --- /dev/null +++ b/splunk_eventgen/samples/webhosts.sample @@ -0,0 +1,3 @@ +10.2.1.33 +10.2.1.34 +10.2.1.35 \ No newline at end of file diff --git a/splunk_eventgen/samples/windbag b/splunk_eventgen/samples/windbag new file mode 100644 index 00000000..c9b52d7d --- /dev/null +++ b/splunk_eventgen/samples/windbag @@ -0,0 +1,5 @@ +2014-01-04 20:54:34 WINDBAG Event 1 of 5 +2014-01-04 20:54:35 WINDBAG Event 2 of 5 +2014-01-04 20:54:36 WINDBAG Event 3 of 5 +2014-01-04 20:54:37 WINDBAG Event 4 of 5 +2014-01-04 20:54:38 WINDBAG Event 5 of 5 \ No newline at end of file From b09272f368dfd7e92ccf62e7d8055296bf3c2806 Mon Sep 17 00:00:00 2001 From: Yangxulight Date: Tue, 28 May 2019 16:59:47 +0800 Subject: [PATCH 61/68] restore unit test file --- tests/unit/conftest.py | 17 ++ tests/unit/test_eventgenconfig.py | 277 ++++++++++++++++++++++++++++++ tests/unit/test_timeparser.py | 105 +++++++++++ 3 files changed, 399 insertions(+) create mode 100644 tests/unit/conftest.py create mode 100644 tests/unit/test_eventgenconfig.py create mode 100644 tests/unit/test_timeparser.py diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py new file mode 100644 index 00000000..528209ef --- /dev/null +++ b/tests/unit/conftest.py @@ -0,0 +1,17 @@ +from os import path as op + +import pytest + +from splunk_eventgen.lib.eventgenconfig import Config + + +@pytest.fixture +def eventgen_config(): + """Returns a function to create config instance based on config file""" + + def _make_eventgen_config_instance(configfile=None): + if configfile is not None: + configfile = op.join(op.dirname(op.dirname(__file__)), 'sample_eventgen_conf', 'unit', configfile) + return Config(configfile=configfile) + + return _make_eventgen_config_instance diff --git a/tests/unit/test_eventgenconfig.py b/tests/unit/test_eventgenconfig.py new file mode 100644 index 00000000..b0391ef6 --- /dev/null +++ b/tests/unit/test_eventgenconfig.py @@ -0,0 +1,277 @@ +import json +import os +from ConfigParser import ConfigParser + +import pytest + +from splunk_eventgen.lib.eventgensamples import Sample + + +def test_makeSplunkEmbedded(eventgen_config): + """Test makeSplunkEmbedded works""" + config_instance = eventgen_config() + session_key = 'ea_IO86v01Xipz8BuB_Ako9rMoc5_HNn6UQrBhVQY5zj68LN2J2xVrLzYD^XEgVTWyKrXva6r8yZ2gtEuv9nnZ' + config_instance.makeSplunkEmbedded(session_key) + assert config_instance.splunkEmbedded + # reset splunkEmbedded since all instances share the attribute + config_instance.splunkEmbedded = False + + +def test_buildConfDict(eventgen_config): + """Test buildConfDict returns the same as reading directly from file""" + config_instance = eventgen_config() + config_instance._buildConfDict() + configparser = ConfigParser() + splunk_eventgen_folder = os.path.join( + os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), 'splunk_eventgen') + configparser.read(os.path.join(splunk_eventgen_folder, 'default', 'eventgen.conf')) + configparser.set('global', 'eai:acl', {'app': 'splunk_eventgen'}) + + for key, value in config_instance._confDict['global'].items(): + assert value == configparser.get('global', key) + + +def test_validate_setting_count(eventgen_config): + """Test count config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'count', '0')) == int + assert config_instance._validateSetting('sample', 'count', '0') == 0 + + +def test_validate_setting_delay(eventgen_config): + """Test delay config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'delay', '10')) == int + assert config_instance._validateSetting('sample', 'delay', '10') == 10 + + +def test_validate_setting_interval(eventgen_config): + """Test interval config is int with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'interval', '3')) == int + assert config_instance._validateSetting('sample', 'interval', '3') == 3 + + +def test_validate_setting_perdayvolume(eventgen_config): + """Test perdayvolume config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'perDayVolume', '1')) == float + assert config_instance._validateSetting('sample', 'perDayVolume', '1') == 1.0 + + +def test_validate_setting_randomizeCount(eventgen_config): + """Test randomizeCount config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeCount', '0.2')) == float + assert config_instance._validateSetting('sample', 'randomizeCount', '0.2') == 0.2 + + +def test_validate_setting_timeMultiple(eventgen_config): + """Test timeMultiple config is float with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'timeMultiple', '2')) == float + assert config_instance._validateSetting('sample', 'timeMultiple', '2') == 2.0 + + +def test_validate_setting_disabled(eventgen_config): + """Test disabled config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'disabled', 'false')) == bool + assert config_instance._validateSetting('sample', 'disabled', 'false') is False + + +def test_validate_setting_profiler(eventgen_config): + """Test profiler config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'profiler', 'false')) == bool + assert config_instance._validateSetting('sample', 'profiler', 'false') is False + + +def test_validate_setting_useOutputQueue(eventgen_config): + """Test useOutputQueue config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'useOutputQueue', 'false')) == bool + assert config_instance._validateSetting('sample', 'useOutputQueue', 'false') is False + + +def test_validate_setting_bundlelines(eventgen_config): + """Test bundlelines config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'bundlelines', 'false')) == bool + assert config_instance._validateSetting('sample', 'bundlelines', 'false') is False + + +def test_validate_setting_httpeventWaitResponse(eventgen_config): + """Test httpeventWaitResponse config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false')) == bool + assert config_instance._validateSetting('sample', 'httpeventWaitResponse', 'false') is False + + +def test_validate_setting_sequentialTimestamp(eventgen_config): + """Test sequentialTimestamp config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'sequentialTimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'sequentialTimestamp', 'false') is False + + +def test_validate_setting_autotimestamp(eventgen_config): + """Test autotimestamp config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'autotimestamp', 'false')) == bool + assert config_instance._validateSetting('sample', 'autotimestamp', 'false') is False + + +def test_validate_setting_randomizeEvents(eventgen_config): + """Test randomizeEvents config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'randomizeEvents', 'false')) == bool + assert config_instance._validateSetting('sample', 'randomizeEvents', 'false') is False + + +def test_validate_setting_outputCounter(eventgen_config): + """Test outputCounter config is bool with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert type(config_instance._validateSetting('sample', 'outputCounter', 'false')) == bool + assert config_instance._validateSetting('sample', 'outputCounter', 'false') is False + + +def test_validate_setting_minuteOfHourRate(eventgen_config): + """Test minuteOfHourRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + minuteOfHourRate = '{ "0": 1, "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1,' \ + ' "10": 1, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1,' \ + ' "19": 1, "20": 1, "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1,' \ + ' "28": 1, "29": 1, "30": 1, "31": 1, "32": 1, "33": 1, "34": 1, "35": 4, "36": 0.1,' \ + ' "37": 0.1, "38": 1, "39": 1, "40": 1, "41": 1, "42": 1, "43": 1, "44": 1, "45": 1,' \ + ' "46": 1, "47": 1, "48": 1, "49": 1, "50": 1, "51": 1, "52": 1, "53": 1, "54": 1,' \ + ' "55": 1, "56": 1, "57": 1, "58": 1, "59": 1 }' + assert type(config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate)) == dict + result = json.loads(minuteOfHourRate) + assert config_instance._validateSetting('sample', 'minuteOfHourRate', minuteOfHourRate) == result + + +def test_validate_setting_hourOfDayRate(eventgen_config): + """Test hourOfDayRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + hourOfDayRate = '{ "0": 0.30, "1": 0.20, "2": 0.20, "3": 0.20, "4": 0.20, "5": 0.25, "6": 0.35, "7": 0.50,' \ + ' "8": 0.60, "9": 0.65, "10": 0.70, "11": 0.75, "12": 0.77, "13": 0.80, "14": 0.82,' \ + ' "15": 0.85, "16": 0.87, "17": 0.90, "18": 0.95, "19": 1.0, "20": 0.85, "21": 0.70,' \ + ' "22": 0.60, "23": 0.45 }' + assert type(config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate)) == dict + result = json.loads(hourOfDayRate) + assert config_instance._validateSetting('sample', 'hourOfDayRate', hourOfDayRate) == result + + +def test_validate_setting_dayOfWeekRate(eventgen_config): + """Test dayOfWeekRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfWeekRate = '{ "0": 0.97, "1": 0.95, "2": 0.90, "3": 0.97, "4": 1.0, "5": 0.99, "6": 0.55 }' + assert type(config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate)) == dict + result = json.loads(dayOfWeekRate) + assert config_instance._validateSetting('sample', 'dayOfWeekRate', dayOfWeekRate) == result + + +def test_validate_setting_dayOfMonthRate(eventgen_config): + """Test dayOfMonthRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + dayOfMonthRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1,' \ + ' "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1, "19": 1, "20": 1,' \ + ' "21": 1, "22": 1, "23": 1, "24": 1, "25": 1, "26": 1, "27": 1, "28": 1, "29": 1, "30": 1,' \ + ' "31": 1 }' + assert type(config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate)) == dict + result = json.loads(dayOfMonthRate) + assert config_instance._validateSetting('sample', 'dayOfMonthRate', dayOfMonthRate) == result + + +def test_validate_setting_monthOfYearRate(eventgen_config): + """Test monthOfYearRate config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + monthOfYearRate = '{ "1": 1, "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1,' \ + ' "8": 1, "9": 1, "10": 1, "11": 1, "12": 1 }' + assert type(config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate)) == dict + result = json.loads(monthOfYearRate) + assert config_instance._validateSetting('sample', 'monthOfYearRate', monthOfYearRate) == result + + +def test_validate_setting_httpeventServers(eventgen_config): + """Test httpeventServers config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + httpeventServers = '{"servers":[{ "protocol":"https", "address":"127.0.0.1",' \ + ' "port":"8088", "key":"8d5ab52c-3759-49e3-b66a-5213ce525692"}]}' + assert type(config_instance._validateSetting('sample', 'httpeventServers', httpeventServers)) == dict + result = json.loads(httpeventServers) + assert config_instance._validateSetting('sample', 'httpeventServers', httpeventServers) == result + + +def test_validate_setting_autotimestamps(eventgen_config): + """Test autotimestamps config is dict with right value""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + autotimestamps = r'[["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ' \ + r'["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ' \ + r'["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ' \ + r'["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ' \ + r'["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ' \ + r'["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ' \ + r'["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ' \ + r'["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ' \ + r'",%m/%d/%Y %I:%M:%S %p,"], ' \ + r'["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ' \ + r'["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ' \ + r'["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"],' \ + r'["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ' \ + r'["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ' \ + r'["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ' \ + r'["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", ' \ + r'"%Y-%m-%dT%H:%M:%S"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ' \ + r'["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]]' + assert type(config_instance._validateSetting('sample', 'autotimestamps', autotimestamps)) == list + result = json.loads(autotimestamps) + assert config_instance._validateSetting('sample', 'autotimestamps', autotimestamps) == result + + +def test_getPlugin(eventgen_config): + """Test getPlugin method without loading any plugins""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + with pytest.raises(KeyError): + config_instance.getPlugin('output.awss3') + + +def test_getSplunkUrl(eventgen_config): + """Test getSplunkUrl with provided sample object""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + sample = Sample('test') + sample.splunkHost = 'localhost' + sample.splunkMethod = 'https' + sample.splunkPort = '8088' + + assert ('https://localhost:8088', 'https', 'localhost', '8088') == config_instance.getSplunkUrl(sample) + + +def test_validateTimeZone(eventgen_config): + """Test _validateTimeZone method""" + pass + + +def test_validateSeed(eventgen_config): + """Test _validateSeed method""" + pass + + +def test_punct(eventgen_config): + """Test _punct method with given string""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + assert '--:\n$^' == config_instance._punct('this-is-a: test \ntest $^') + + +def test_parse(eventgen_config): + """Test parse method with given evengen config""" + config_instance = eventgen_config(configfile='eventgen.conf.config') + config_instance.parse() + assert len(config_instance.samples) == 1 diff --git a/tests/unit/test_timeparser.py b/tests/unit/test_timeparser.py new file mode 100644 index 00000000..4dc7d13d --- /dev/null +++ b/tests/unit/test_timeparser.py @@ -0,0 +1,105 @@ +import datetime + +import pytest + +from splunk_eventgen.lib import timeparser + +time_delta_test_params = [(datetime.timedelta(days=1), 86400), + (datetime.timedelta(days=1, hours=3, minutes=15, seconds=32), 98132), + (datetime.timedelta(hours=1, minutes=10), 4200), (datetime.timedelta(hours=-1), -3600), + (None, 0)] + + +@pytest.mark.parametrize('delta,expect', time_delta_test_params) +def test_time_delta_2_second(delta, expect): + ''' Test timeDelta2secs function, convert time delta object to seconds + Normal cases: + case 1: time delta is 1 day, expect is 86400 + case 2: time delta is 1 day 3 hour 15 minutes 32 seconds, expect is 98132 + case 3: time delta is less than 1 day, only 1 hour 10 minutes, expect is 4200 + case 4: time delta is 1 hour ago, expect is -3600 + + Corner cases: + case 1: delta object is None -- invalid input, expect is + ''' + assert timeparser.timeDelta2secs(delta) == expect + + +def check_datetime_equal(d1, d2): + assert d1.year == d2.year + assert d1.month == d2.month + assert d1.day == d2.day + assert d1.hour == d2.hour + assert d1.minute == d2.minute + assert d1.second == d2.second + + +parse_time_math_params = [('+', '100', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 12, 0)), + ('-', '20', 'm', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2017, 7, 8, 4, 10, 20)), + ('', '3', 'w', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 29, 4, 10, 20)), + ('', '0', 's', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20)), + ('', '123', '', datetime.datetime(2019, 3, 8, 4, 10, 20), + datetime.datetime(2019, 3, 8, 4, 10, 20))] + + +@pytest.mark.parametrize('plusminus,num,unit,ret,expect', parse_time_math_params) +def test_time_parser_time_math(plusminus, num, unit, ret, expect): + ''' + test timeParserTimeMath function, parse the time modifier + Normal Case: + Case 1: input "+100s" -- the parser should translate it as 100 seconds later. + Case 2: input "-20m" -- the parser should handle the month larger than 12 and translate as 20 months ago + Case 3: input '3w' -- the parser should translate as 21 days later. + + Corner Cases: + Case 1: input "0s" -- the time parser should return now + Case 2: input "123" -- unit is the empty string, behavior + ''' + check_datetime_equal(timeparser.timeParserTimeMath(plusminus, num, unichr, ret), expect) + + +def mock_now(): + return datetime.datetime(2019, 3, 10, 13, 20, 15) + + +def mock_utc_now(): + return datetime.datetime(2019, 3, 10, 5, 20, 15) + + +timeparser_params = [ + ('now', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), + ('now', datetime.timedelta(days=0), datetime.datetime(2019, 3, 10, 5, 20, 15)), + ('now', datetime.timedelta(hours=2), datetime.datetime(2019, 3, 10, 7, 20, 15)), + ('now', datetime.timedelta(hours=-3), datetime.datetime(2019, 3, 10, 2, 20, 15)), + ('-7d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 3, 13, 20, 15)), + ('-0mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 3, 1, 0, 0, 0)), + ('-1mon@mon', datetime.timedelta(days=1), datetime.datetime(2019, 2, 1, 0, 0, 0)), + ('-3d@d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 7, 0, 0, 0)), + ('+5d', datetime.timedelta(days=1), datetime.datetime(2019, 3, 15, 13, 20, 15)), + ('', datetime.timedelta(days=1), datetime.datetime(2019, 3, 10, 13, 20, 15)), ] + + +@pytest.mark.parametrize('ts,tz,expect', timeparser_params) +def test_timeparser(ts, tz, expect): + ''' + test timeParser function, parse splunk time modifier + Normal Cases: + Case 1: get now timestamp + Case 2: get utc now timestamp + Case 3: get utc+2 timezone timestamp + Case 4: get utc-2 timezone timestamp + Case 5: get the 7 days ago timestamp + Case 5: get the beginning of this month. check the snap to month + Case 6: get the beginning of last month. check the snap to last month + Case 7: get 3 days ago, snap to day + Case 8: get 5 days later + + Corner Cases: + Case 1: empty string as input. behavior + ''' + r = timeparser.timeParser(ts, tz, mock_now, mock_utc_now) + check_datetime_equal(r, expect) From c1ab6a7bf3469b4c29db5536fd5b9e9b833e6cbb Mon Sep 17 00:00:00 2001 From: Li Wu Date: Wed, 29 May 2019 09:08:38 +0800 Subject: [PATCH 62/68] Add license credits (#222) --- LICENSE | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index d6456956..6116df4d 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2019 Splunk, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -200,3 +200,57 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + +======================================================================= +Splunk Event Generator + +Splunk Event Generator project contains subcomponents with separate copyright +notices and license terms. Your use of the source code for the these +subcomponents is subject to the terms and conditions of the following +licenses. + +======================================================================== +Apache License 2.0 +======================================================================== +The following components are provided under the Apache License 2.0. See project link for details. + + (Apache License 2.0) boto3 (https://github.com/boto/boto3/blob/master/LICENSE) + (Apache License 2.0) requests (https://github.com/kennethreitz/requests/blob/master/LICENSE) + (Apache License 2.0) pyOpenSSL (https://github.com/pyca/pyopenssl/blob/master/LICENSE) + (Apache License 2.0) docker (https://github.com/docker/docker-py/blob/master/LICENSE) + (Apache License 2.0) requests-futures (https://github.com/ross/requests-futures/blob/master/LICENSE) + (Apache License 2.0) nameko (https://github.com/nameko/nameko/blob/master/LICENSE.txt) + +======================================================================== +MIT licenses +======================================================================== +The following components are provided under the MIT License. See project link for details. + + (MIT License) pyyaml (https://github.com/yaml/pyyaml/blob/master/LICENSE) + (MIT License) httplib2 (https://github.com/httplib2/httplib2/blob/master/LICENSE) + (MIT License) urllib3 (https://github.com/urllib3/urllib3/blob/master/LICENSE.txt) + (MIT License) isort (https://github.com/timothycrosley/isort/blob/develop/LICENSE) + (MIT License) flake8 (https://gitlab.com/pycqa/flake8/blob/master/LICENSE) + (MIT License) pytest (https://github.com/pytest-dev/pytest/blob/master/LICENSE) + (MIT License) pytest-mock (https://github.com/pytest-dev/pytest-mock/blob/master/LICENSE) + (MIT License) pytest-xdist (https://github.com/pytest-dev/pytest-xdist/blob/master/LICENSE) + (MIT License) pytest-cov (https://github.com/pytest-dev/pytest-cov/blob/master/LICENSE) + +======================================================================== +BSD-style licenses +======================================================================== + +The following components are provided under a BSD-style license. See project link for details. + + (BSD 2-Clause "Simplified" License) mock (https://github.com/testing-cabal/mock/blob/master/LICENSE.txt) + (BSD 3-Clause) pyrabbit (https://github.com/bkjones/pyrabbit/blob/master/LICENSE) + (BSD 3-Clause) logutils (https://opensource.org/licenses/BSD-3-Clause) + (BSD 3-Clause) jinja2 (https://github.com/pallets/jinja/blob/master/LICENSE) + (BSD 3-Clause) ujson(https://github.com/esnme/ultrajson/blob/master/LICENSE.txt) + +======================================================================== +PSF licenses +======================================================================== + +The following components are provided under a PSF license. See project link for details. + (PSD License) futures (https://github.com/agronholm/pythonfutures/blob/master/LICENSE) From 4f9b7db7edc3f9792b87368b19c33afec24f5bb4 Mon Sep 17 00:00:00 2001 From: Ryan Yeung Date: Wed, 29 May 2019 10:05:29 +0800 Subject: [PATCH 63/68] Feature/multi indexes (#224) * Fix jinja template bug under SA-Eventgen app * Update docs (#146) * Updated docs, added release notes to changelog * Bump version * add python code style lint and format * Add more unit tests for config module * Pep8 (#151) * Format to code standards, addressed linter errors/warnings * add extendIndexes feature * set extendIndexes as a list value * upate doc, change num to weight * calculate generate rate and use sequential index replacement * update dockerfile * randomize index replacement in each batch * Fix jinja template bug under SA-Eventgen app * Update docs (#146) * Updated docs, added release notes to changelog * add python code style lint and format * Add more unit tests for config module * calculate generate rate and use sequential index replacement * update dockerfile * randomize index replacement in each batch * fix no len dict out of range * clean duplicate code --- dockerfiles/Dockerfile | 4 ++-- setup.cfg | 2 +- splunk_eventgen/lib/generatorplugin.py | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index f68354bb..265a06b9 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -22,13 +22,13 @@ RUN apk --no-cache upgrade && \ erlang-asn1 \ erlang-inets \ erlang-os-mon \ - erlang-xmerl \ + erlang-xmerl \ erlang-eldap \ erlang-syntax-tools \ pwgen \ xz \ curl \ - bash && \ + bash && \ rm -rf /var/cache/apk/* && \ curl -sL https://www.rabbitmq.com/releases/rabbitmq-server/v${RABBITMQ_VERSION}/rabbitmq-server-generic-unix-${RABBITMQ_VERSION}.tar.xz | tar -xJ -C /usr/local && \ ln -s /usr/local/rabbitmq_server-${RABBITMQ_VERSION}/sbin/rabbitmq-server /usr/sbin/rabbitmq-server && \ diff --git a/setup.cfg b/setup.cfg index 0a71e5d1..d8f0d78f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,4 +19,4 @@ each_dict_entry_on_separate_line = false [isort] # isort/yapf solutions to below files are not compatible -skip = splunk_eventgen/lib/concurrent,splunk_eventgen/lib/requests_futures \ No newline at end of file +skip = splunk_eventgen/lib/concurrent,splunk_eventgen/lib/requests_futures diff --git a/splunk_eventgen/lib/generatorplugin.py b/splunk_eventgen/lib/generatorplugin.py index 6ab1ecac..7959da76 100644 --- a/splunk_eventgen/lib/generatorplugin.py +++ b/splunk_eventgen/lib/generatorplugin.py @@ -196,6 +196,9 @@ def replace_tokens(self, eventsDict, earliest, latest, ignore_tokens=False): eventcount = 0 send_events = [] total_count = len(eventsDict) + index = None + if total_count > 0: + index = random.choice(self._sample.index_list) if len(self._sample.index_list) else eventsDict[0]['index'] for targetevent in eventsDict: event = targetevent["_raw"] # Maintain state for every token in a given event, Hash contains keys for each file name which is @@ -227,7 +230,7 @@ def replace_tokens(self, eventsDict, earliest, latest, ignore_tokens=False): except Exception: time_val = int(time.mktime(self._sample.now().timetuple())) temp_event = { - '_raw': event, 'index': random.choice(self._sample.index_list)if len(self._sample.index_list) else targetevent['index'], 'host': host, 'hostRegex': self._sample.hostRegex, + '_raw': event, 'index': index, 'host': host, 'hostRegex': self._sample.hostRegex, 'source': targetevent['source'], 'sourcetype': targetevent['sourcetype'], '_time': time_val} send_events.append(temp_event) return send_events From bda7720bad99ca863779639a87469a911ef28be0 Mon Sep 17 00:00:00 2001 From: Li Wu Date: Thu, 30 May 2019 15:05:53 +0800 Subject: [PATCH 64/68] Revert "Metrics output plugin" (#226) --- docs/REFERENCE.md | 3 +- splunk_eventgen/eventgen_core.py | 12 - .../lib/plugins/output/httpevent.py | 19 +- .../lib/plugins/output/httpevent_core.py | 228 ------------------ .../lib/plugins/output/metric_httpevent.py | 105 -------- 5 files changed, 16 insertions(+), 351 deletions(-) delete mode 100644 splunk_eventgen/lib/plugins/output/httpevent_core.py delete mode 100644 splunk_eventgen/lib/plugins/output/metric_httpevent.py diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 17fafd3e..0f089c84 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -114,7 +114,7 @@ outputWorkers = * Generally if using TCP based outputs like splunkstream, more could be required * Defaults to 1 -outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout | metric_httpevent +outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | httpevent | syslogout | tcpout | udpout * Specifies how to output log data. Modinput is default. * If setting spool, should set spoolDir * If setting file, should set fileName @@ -123,7 +123,6 @@ outputMode = modinput | s2s | file | splunkstream | stdout | devnull | spool | h * If setting s2s, should set splunkHost and splunkPort * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort * If setting httpevent, should set httpeventServers - * If setting metric_httpevent, should set httpeventServers and make sure your index is a splunk metric index syslogDestinationHost = * Defaults to 127.0.0.1 diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 56530da8..a4944cca 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -265,7 +265,6 @@ def _setup_loggers(self, args=None, config=None): eventgen_metrics_logger_path = os.path.join(log_path, 'eventgen-metrics.log') eventgen_error_logger_path = os.path.join(log_path, 'eventgen-errors.log') eventgen_server_logger_path = os.path.join(log_path, 'eventgen-server.log') - eventgen_httpevent_logger_path = os.path.join(log_path, 'eventgen-httpevent.log') if not config: log_format = '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s' date_format = '%Y-%m-%d %H:%M:%S' @@ -304,11 +303,6 @@ def _setup_loggers(self, args=None, config=None): server_file_handler.setFormatter(json_formatter) server_file_handler.setLevel(logging.INFO) - httpevent_file_handler = logging.handlers.RotatingFileHandler(eventgen_httpevent_logger_path, maxBytes=2500000, - backupCount=10) - httpevent_file_handler.setFormatter(detailed_formatter) - httpevent_file_handler.setLevel(logging.INFO) - # Configure eventgen logger logger = logging.getLogger('eventgen') logger.setLevel(self.args.verbosity or logging.ERROR) @@ -342,12 +336,6 @@ def _setup_loggers(self, args=None, config=None): logger.handlers = [] logger.addHandler(server_file_handler) logger.addHandler(console_handler) - - logger = logging.getLogger('eventgen_httpeventout') - logger.setLevel(logging.INFO) - logger.propagate = False - logger.handlers = [] - logger.addHandler(httpevent_file_handler) else: self.logger_config = config logging.config.dictConfig(self.logger_config) diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index 09518c0b..1d2488f6 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -1,6 +1,10 @@ from __future__ import division -from httpevent_core import HTTPCoreOutputPlugin +import logging +import random +import urllib + +from outputplugin import OutputPlugin try: import requests @@ -25,7 +29,7 @@ def __init__(self, *args, **kwargs): Exception.__init__(self, *args, **kwargs) -class HTTPEventOutputPlugin(HTTPCoreOutputPlugin): +class HTTPEventOutputPlugin(OutputPlugin): ''' HTTPEvent output will enable events that are generated to be sent directly to splunk through the HTTP event input. In order to use this output plugin, @@ -36,8 +40,13 @@ class HTTPEventOutputPlugin(HTTPCoreOutputPlugin): ''' name = 'httpevent' + MAXQUEUELENGTH = 1000 + useOutputQueue = False + validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] + jsonSettings = ['httpeventServers'] + def __init__(self, sample, output_counter=None): - super(HTTPEventOutputPlugin,self).__init__(sample,output_counter) OutputPlugin.__init__(self, sample, output_counter) # TODO: make workers a param that can be set in eventgen.conf @@ -217,7 +226,6 @@ def _transmitEvents(self, payloadstring): self.logger.debug( "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) raise e - super(HTTPEventOutputPlugin,self).__init__(sample,output_counter) def flush(self, q): self.logger.debug("Flush called on httpevent plugin") @@ -274,6 +282,9 @@ def flush(self, q): except Exception as e: self.logger.error('failed indexing events, reason: %s ' % e) + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_httpeventout') + def load(): """Returns an instance of the plugin""" diff --git a/splunk_eventgen/lib/plugins/output/httpevent_core.py b/splunk_eventgen/lib/plugins/output/httpevent_core.py deleted file mode 100644 index 35284dd3..00000000 --- a/splunk_eventgen/lib/plugins/output/httpevent_core.py +++ /dev/null @@ -1,228 +0,0 @@ -from __future__ import division - -import logging -import random -import urllib - -from outputplugin import OutputPlugin - -try: - import requests - from requests import Session - from requests_futures.sessions import FuturesSession - from concurrent.futures import ThreadPoolExecutor -except ImportError: - pass -try: - import ujson as json -except: - import json - - -class NoServers(Exception): - def __init__(self, *args, **kwargs): - Exception.__init__(self, *args, **kwargs) - - -class BadConnection(Exception): - def __init__(self, *args, **kwargs): - Exception.__init__(self, *args, **kwargs) - - -class HTTPCoreOutputPlugin(OutputPlugin): - name = 'httpcore' - MAXQUEUELENGTH = 1000 - useOutputQueue = False - validSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - defaultableSettings = ['httpeventServers', 'httpeventOutputMode', 'httpeventMaxPayloadSize'] - jsonSettings = ['httpeventServers'] - - def __init__(self, sample, output_counter=None): - OutputPlugin.__init__(self, sample, output_counter) - - # TODO: make workers a param that can be set in eventgen.conf - def _setup_REST_workers(self, session=None, workers=10): - # disable any "requests" warnings - requests.packages.urllib3.disable_warnings() - # Bind passed in samples to the outputter. - self.lastsourcetype = None - if not session: - session = Session() - self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) - self.active_sessions = [] - - @staticmethod - def _urlencode(value): - ''' - Takes a value and make sure everything int he string is URL safe. - :param value: string - :return: urlencoded string - ''' - return urllib.quote(value) - - @staticmethod - def _bg_convert_json(sess, resp): - ''' - Takes a futures session object, and sets the data to a parsed json output. Use this as a background task for the - session queue. Example: future = session.get('http://httpbin.org/get', background_callback=_bg_convert_json) - :param sess: futures session object. Automatically called on a background_callback as aruguments. - :param resp: futures resp object. Automatically called on a background_callback as aruguments. - :return: - ''' - if resp.status_code == 200: - if getattr(resp, "json", None): - resp.data = resp.json() - else: - if type(resp.data) == str: - resp.data = json.loads(resp.data) - - def updateConfig(self, config): - OutputPlugin.updateConfig(self, config) - try: - if hasattr(self.config, 'httpeventServers') is False: - if hasattr(self._sample, 'httpeventServers'): - self.config.httpeventServers = self._sample.httpeventServers - else: - self.logger.error( - 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) - raise NoServers( - 'outputMode %s but httpeventServers not specified for sample %s' % (self.name, self._sample.name)) - # set default output mode to round robin - if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: - self.httpeventoutputmode = config.httpeventOutputMode - else: - if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: - self.httpeventoutputmode = self._sample.httpeventOutputMode - else: - self.httpeventoutputmode = 'roundrobin' - if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: - self.httpeventmaxsize = self.config.httpeventMaxPayloadSize - else: - if hasattr(self._sample, 'httpeventMaxPayloadSize') and self._sample.httpeventMaxPayloadSize: - self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize - else: - self.httpeventmaxsize = 10000 - self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) - if isinstance(config.httpeventServers, str): - self.httpeventServers = json.loads(config.httpeventServers) - else: - self.httpeventServers = config.httpeventServers - self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) - self.createConnections() - self.logger.debug("Pool created.") - self.logger.debug("Finished init of %s plugin." % self.name) - except Exception as e: - self.logger.exception(str(e)) - - def createConnections(self): - self.serverPool = [] - if self.httpeventServers: - for server in self.httpeventServers.get('servers'): - if not server.get('address'): - self.logger.error( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - raise ValueError( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) - if not server.get('port'): - self.logger.error( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) - if not server.get('key'): - self.logger.error( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - raise ValueError( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) - if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - raise ValueError( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) - self.logger.debug( - "Validation Passed, Creating a requests object for server: %s" % server.get('address')) - - setserver = {} - setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), - server.get('port')) - setserver['header'] = "Splunk %s" % server.get('key') - self.logger.debug("Adding server set to pool, server: %s" % setserver) - self.serverPool.append(setserver) - else: - raise NoServers('outputMode %s but httpeventServers not specified for sample %s' %(self.name, self._sample.name)) - - def _sendHTTPEvents(self, payload): - currentreadsize = 0 - stringpayload = "" - totalbytesexpected = 0 - totalbytessent = 0 - numberevents = len(payload) - self.logger.debug("Sending %s events to splunk" % numberevents) - for line in payload: - self.logger.debug("line: %s " % line) - targetline = json.dumps(line) - self.logger.debug("targetline: %s " % targetline) - targetlinesize = len(targetline) - totalbytesexpected += targetlinesize - if (int(currentreadsize) + int(targetlinesize)) <= int(self.httpeventmaxsize): - stringpayload = stringpayload + targetline - currentreadsize = currentreadsize + targetlinesize - self.logger.debug("stringpayload: %s " % stringpayload) - else: - self.logger.debug("Max size for payload hit, sending to splunk then continuing.") - try: - self._transmitEvents(stringpayload) - totalbytessent += len(stringpayload) - currentreadsize = 0 - stringpayload = targetline - except Exception as e: - self.logger.exception(str(e)) - raise e - else: - try: - totalbytessent += len(stringpayload) - self.logger.debug( - "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % - (totalbytessent, totalbytesexpected)) - self._transmitEvents(stringpayload) - except Exception as e: - self.logger.exception(str(e)) - raise e - - def _transmitEvents(self, payloadstring): - targetServer = [] - self.logger.debug("Transmission called with payloadstring: %s " % payloadstring) - if self.httpeventoutputmode == "mirror": - targetServer = self.serverPool - else: - targetServer.append(random.choice(self.serverPool)) - for server in targetServer: - self.logger.debug("Selected targetServer object: %s" % targetServer) - url = server['url'] - headers = {} - headers['Authorization'] = server['header'] - headers['content-type'] = 'application/json' - try: - payloadsize = len(payloadstring) - # response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append( - self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) - except Exception as e: - self.logger.error("Failed for exception: %s" % e) - self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % - (url, self.lastsourcetype, payloadsize)) - self.logger.debug( - "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) - raise e - - - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - - -def load(): - """Returns an instance of the plugin""" - return HTTPCoreOutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/metric_httpevent.py b/splunk_eventgen/lib/plugins/output/metric_httpevent.py deleted file mode 100644 index 161b1420..00000000 --- a/splunk_eventgen/lib/plugins/output/metric_httpevent.py +++ /dev/null @@ -1,105 +0,0 @@ -from __future__ import division - -from httpevent_core import HTTPCoreOutputPlugin - -try: - import requests - from requests import Session - from requests_futures.sessions import FuturesSession - from concurrent.futures import ThreadPoolExecutor -except ImportError: - pass -try: - import ujson as json -except: - import json - - -class NoServers(Exception): - def __init__(self, *args, **kwargs): - Exception.__init__(self, *args, **kwargs) - - -class BadConnection(Exception): - def __init__(self, *args, **kwargs): - Exception.__init__(self, *args, **kwargs) - - -class MetricHTTPEventOutputPlugin(HTTPCoreOutputPlugin): - ''' - MetricHTTPEvent output will enable events that are generated to be sent directly - to splunk metrics indexes through the HTTP event input. In order to use this output plugin, - you will need to supply an attribute 'httpeventServers' as a valid json object. - this json object should look like the following: - - {servers:[{ protocol:http/https, address:127.0.0.1, port:8088, key:12345-12345-123123123123123123}]} - - ''' - name = 'metric_httpevent' - - def __init__(self, sample, output_counter=None): - super(MetricHTTPEventOutputPlugin, self).__init__(sample, output_counter) - - def flush(self, q): - self.logger.debug("Flush called on metric_httpevent plugin") - self._setup_REST_workers() - if len(q) > 0: - try: - payload = [] - for event in q: - self.logger.debug("HTTPEvent proccessing event: %s" % event) - payloadFragment = {} - if event.get('_raw') is None or event['_raw'] == "\n": - self.logger.error('failure outputting event, does not contain _raw') - else: - self.logger.debug("Event contains _raw, attempting to process...") - self.logger.debug(event['_raw']) - fields = json.loads(event['_raw'])['fields'] - payloadFragment['fields'] = fields - payloadFragment['event'] = "metric" - if event.get('source'): - self.logger.debug("Event contains source, adding to httpevent event") - payloadFragment['source'] = event['source'] - if event.get('sourcetype'): - self.logger.debug("Event contains sourcetype, adding to httpevent event") - payloadFragment['sourcetype'] = event['sourcetype'] - self.lastsourcetype = event['sourcetype'] - if event.get('host'): - self.logger.debug("Event contains host, adding to httpevent event") - payloadFragment['host'] = event['host'] - if event.get('_time'): - # make sure _time can be an epoch timestamp - try: - float(event.get("_time")) - self.logger.debug("Event contains _time, adding to httpevent event") - payloadFragment['time'] = event['_time'] - except: - self.logger.error("Timestamp not in epoch format, ignoring event: {0}".format(event)) - if event.get('index'): - self.logger.debug("Event contains index, adding to httpevent event") - payloadFragment['index'] = event['index'] - - self.logger.debug("Full payloadFragment: {}".format(payloadFragment)) - # self.logger.debug("Full payloadFragment: %s" % json.dumps(payloadFragment)) - payload.append(payloadFragment) - self.logger.debug("Metric_httpevent Finished processing events, sending all to splunk") - self._sendHTTPEvents(payload) - if self.config.httpeventWaitResponse: - for session in self.active_sessions: - response = session.result() - if not response.raise_for_status(): - self.logger.debug("Payload successfully sent to httpevent server.") - else: - self.logger.error("Server returned an error while trying to send, response code: %s" % - response.status_code) - raise BadConnection( - "Server returned an error while sending, response code: %s" % response.status_code) - else: - self.logger.debug("Ignoring response from HTTP server, leaving metric_httpevent outputter") - except Exception as e: - self.logger.error('failed indexing events, reason: %s ' % e) - - -def load(): - """Returns an instance of the plugin""" - return MetricHTTPEventOutputPlugin From 65051af3c988cf336befa3b255299201ebe6c073 Mon Sep 17 00:00:00 2001 From: Yifeng Date: Thu, 30 May 2019 15:25:08 +0800 Subject: [PATCH 65/68] [issue 217]disable logging queue in multiprocess mode (#223) * disable logging queue in multiprocess mode --- docs/REFERENCE.md | 6 ++++++ splunk_eventgen/default/eventgen.conf | 1 + splunk_eventgen/eventgen_core.py | 18 +++++++++++++----- splunk_eventgen/lib/eventgenconfig.py | 4 ++-- .../splunk_app/README/eventgen.conf.spec | 1 + 5 files changed, 23 insertions(+), 7 deletions(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 0f089c84..636a531f 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -59,6 +59,7 @@ maxQueueLength = 0 autotimestamps = [ ] autotimestamp = false outputCounter = false +disableLoggingQueue = true [] @@ -105,6 +106,11 @@ useOutputQueue = true | false for instance if you're outputting to a file or to stdout/modular input. * Default value depends on the output plugin being used. +disableLoggingQueue = true | false + * Disable the logging queue for process mode + * In process mode, logs in each process will be collected via a logging queue + * Default is true which will disable the logging queue + ############################# ## OUTPUT RELATED SETTINGS ## ############################# diff --git a/splunk_eventgen/default/eventgen.conf b/splunk_eventgen/default/eventgen.conf index d3cb85c5..421158fb 100644 --- a/splunk_eventgen/default/eventgen.conf +++ b/splunk_eventgen/default/eventgen.conf @@ -48,3 +48,4 @@ useOutputQueue = false autotimestamps = [["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}", "%Y-%m-%d %H:%M:%S"], ["\\d{1,2}\\/\\w{3}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%dT%H:%M:%S.%f"], ["\\d{1,2}/\\w{3}/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y %H:%M:%S:%f"], ["\\d{1,2}/\\d{2}/\\d{2}\\s\\d{1,2}:\\d{2}:\\d{2}", "%m/%d/%y %H:%M:%S"], ["\\d{2}-\\d{2}-\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ["\\w{3} \\w{3} +\\d{1,2} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %H:%M:%S"], ["\\w{3} \\w{3} \\d{2} \\d{4} \\d{2}:\\d{2}:\\d{2}", "%a %b %d %Y %H:%M:%S"], ["^(\\w{3}\\s+\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})", "%b %d %H:%M:%S"], ["(\\w{3}\\s+\\d{1,2}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %H:%M:%S"], ["(\\w{3}\\s\\d{1,2}\\s\\d{1,4}\\s\\d{1,2}:\\d{1,2}:\\d{1,2})", "%b %d %Y %H:%M:%S"], ["\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}", "%Y-%m-%d %H:%M:%S.%f"], ["\\,\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]\\,", ",%m/%d/%Y %I:%M:%S %p,"], ["^\\w{3}\\s+\\d{2}\\s+\\d{2}:\\d{2}:\\d{2}", "%b %d %H:%M:%S"], ["\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}", "%m/%d/%Y %H:%M:%S"], ["^\\d{2}\\/\\d{2}\\/\\d{2,4}\\s+\\d{2}:\\d{2}:\\d{2}\\s+[AaPp][Mm]", "%m/%d/%Y %I:%M:%S %p"], ["\\d{2}\\/\\d{2}\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}", "%m-%d-%Y %H:%M:%S"], ["\\\"timestamp\\\":\\s\\\"(\\d+)", "%s"], ["\\d{2}\\/\\w+\\/\\d{4}\\s\\d{2}:\\d{2}:\\d{2}:\\d{3}", "%d-%b-%Y %H:%M:%S:%f"], ["\\\"created\\\":\\s(\\d+)", "%s"], ["\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}", "%Y-%m-%dT%H:%M:%S"], ["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}:\\d{1,3}", "%d/%b/%Y:%H:%M:%S:%f"], ["\\d{1,2}/\\w{3}/\\d{4}:\\d{2}:\\d{2}:\\d{2}", "%d/%b/%Y:%H:%M:%S"]] autotimestamp = false httpeventWaitResponse = true +disableLoggingQueue = true diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index a4944cca..28f021f2 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -217,9 +217,13 @@ def _create_generator_pool(self, workercount=20): if self.args.multiprocess: import multiprocessing self.manager = multiprocessing.Manager() - self.loggingQueue = self.manager.Queue() - self.logging_pool = Thread(target=self.logger_thread, args=(self.loggingQueue, ), name="LoggerThread") - self.logging_pool.start() + if self.config.disableLoggingQueue: + self.loggingQueue = None + else: + # TODO crash caused by logging Thread https://github.com/splunk/eventgen/issues/217 + self.loggingQueue = self.manager.Queue() + self.logging_pool = Thread(target=self.logger_thread, args=(self.loggingQueue, ), name="LoggerThread") + self.logging_pool.start() # since we're now in multiprocess, we need to use better queues. self.workerQueue = multiprocessing.JoinableQueue(maxsize=500) self.genconfig = self.manager.dict() @@ -388,10 +392,14 @@ def _generator_do_work(self, work_queue, logging_queue, output_counter=None): def _proc_worker_do_work(work_queue, logging_queue, config): genconfig = config stopping = genconfig['stopping'] - qh = logutils.queue.QueueHandler(logging_queue) root = logging.getLogger() root.setLevel(logging.DEBUG) - root.addHandler(qh) + if logging_queue is not None: + # TODO https://github.com/splunk/eventgen/issues/217 + qh = logutils.queue.QueueHandler(logging_queue) + root.addHandler(qh) + else: + root.addHandler(logging.StreamHandler()) while not stopping: try: root.info("Checking for work") diff --git a/splunk_eventgen/lib/eventgenconfig.py b/splunk_eventgen/lib/eventgenconfig.py index 616eaecf..d9df03bb 100644 --- a/splunk_eventgen/lib/eventgenconfig.py +++ b/splunk_eventgen/lib/eventgenconfig.py @@ -88,7 +88,7 @@ class Config(object): 'outputWorkers', 'generator', 'rater', 'generatorWorkers', 'timeField', 'sampleDir', 'threading', 'profiler', 'maxIntervalsBeforeFlush', 'maxQueueLength', 'splunkMethod', 'splunkPort', 'verbosity', 'useOutputQueue', 'seed','end', 'autotimestamps', 'autotimestamp', 'httpeventWaitResponse', - 'outputCounter', 'sequentialTimestamp', 'extendIndexes'] + 'outputCounter', 'sequentialTimestamp', 'extendIndexes', 'disableLoggingQueue'] _validTokenTypes = {'token': 0, 'replacementType': 1, 'replacement': 2} _validHostTokens = {'token': 0, 'replacement': 1} _validReplacementTypes = [ @@ -98,7 +98,7 @@ class Config(object): _floatSettings = ['randomizeCount', 'delay', 'timeMultiple'] _boolSettings = [ 'disabled', 'randomizeEvents', 'bundlelines', 'profiler', 'useOutputQueue', 'autotimestamp', - 'httpeventWaitResponse', 'outputCounter', 'sequentialTimestamp'] + 'httpeventWaitResponse', 'outputCounter', 'sequentialTimestamp', 'disableLoggingQueue'] _jsonSettings = [ 'hourOfDayRate', 'dayOfWeekRate', 'minuteOfHourRate', 'dayOfMonthRate', 'monthOfYearRate', 'autotimestamps'] _defaultableSettings = [ diff --git a/splunk_eventgen/splunk_app/README/eventgen.conf.spec b/splunk_eventgen/splunk_app/README/eventgen.conf.spec index 210743a7..a4b45cea 100644 --- a/splunk_eventgen/splunk_app/README/eventgen.conf.spec +++ b/splunk_eventgen/splunk_app/README/eventgen.conf.spec @@ -61,6 +61,7 @@ maxIntervalsBeforeFlush = 3 maxQueueLength = 0 autotimestamps = [ ] autotimestamp = false +disableLoggingQueue = true [] From a84b4c5317c98ee4451586d2ba6f13967c22caa8 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Tue, 4 Jun 2019 19:22:29 -0700 Subject: [PATCH 66/68] Fixed fileName (#229) --- splunk_eventgen/lib/eventgenconfig.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/splunk_eventgen/lib/eventgenconfig.py b/splunk_eventgen/lib/eventgenconfig.py index d9df03bb..6db8671b 100644 --- a/splunk_eventgen/lib/eventgenconfig.py +++ b/splunk_eventgen/lib/eventgenconfig.py @@ -561,10 +561,14 @@ def parse(self): # Override with real name if s.outputMode == 'spool' and s.spoolFile == self.spoolFile: news.spoolFile = f.split(os.sep)[-1] - if s.outputMode == 'file' and s.fileName is None and s.spoolFile == self.spoolFile: - news.fileName = os.path.join(s.spoolDir, f.split(os.sep)[-1]) - elif s.outputMode == 'file' and s.fileName is None and s.spoolFile is not None: - news.fileName = os.path.join(s.spoolDir, s.spoolFile) + if s.outputMode == 'file' and s.fileName is None: + if self.fileName: + news.fileName = self.fileName + self.logger.debug("Found a global fileName {}. Setting the sample fileName.".format(self.fileName)) + elif s.spoolFile == self.spoolFile: + news.fileName = os.path.join(s.spoolDir, f.split(os.sep)[-1]) + elif s.spoolFile is not None: + news.fileName = os.path.join(s.spoolDir, s.spoolFile) # Override s.name with file name. Usually they'll match unless we've been a regex # 6/22/12 CS Save original name for later matching news._origName = news.name From 57f454960f16adb596650006b6a8ccc3e6a29350 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Tue, 4 Jun 2019 19:22:45 -0700 Subject: [PATCH 67/68] Issue 201 (#221) * Removing unavailable servers * Removed nonresponding httpserver * Added a counter * fixed a bug * Added docs and spec * Addressing unused var * fixing url reference * fixed currentreadsize * Httpevent str formatting --- docs/CONFIGURE.md | 3 + docs/REFERENCE.md | 3 + splunk_eventgen/eventgen_core.py | 4 +- splunk_eventgen/lib/eventgentimer.py | 6 +- .../lib/plugins/output/httpevent.py | 136 ++++++++++-------- 5 files changed, 88 insertions(+), 64 deletions(-) diff --git a/docs/CONFIGURE.md b/docs/CONFIGURE.md index ead6ca50..ed26310f 100644 --- a/docs/CONFIGURE.md +++ b/docs/CONFIGURE.md @@ -459,6 +459,9 @@ specifically be supported by all plugins. Plugins that write to files like spool httpeventWaitResponse = * wait for all responses on a generator output before returning the outputter. * Defaults to true. +--- + httpeventAllowFailureCount = + * Number of transmission failure allowed for a certain httpserver before we remove that server from the pool. For example, 100 means that we will no longer include a specific httpserver after 100 failures. Even after some failures, if we see a success for the server, we will reset the count and continue the transmission. ###### spool spoolDir = diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 636a531f..49227a35 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -167,6 +167,9 @@ httpeventWaitResponse = * wait for all responses on a generator output before returning the outputter. * Defaults to true. +httpeventAllowFailureCount = + * Number of transmission failure allowed for a certain httpserver before we remove that server from the pool. For example, 100 means that we will no longer include a specific httpserver after 100 failures. Even after some failures, if we see a success for the server, we will reset the count and continue the transmission. + spoolDir = * Spool directory is the generated files destination directory. * Only valid in spool outputMode. diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 28f021f2..7b20bc46 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -544,7 +544,7 @@ def join_process(self): try: while not self.sampleQueue.empty() or self.sampleQueue.unfinished_tasks > 0 or not self.workerQueue.empty( ) or self.workerQueue.unfinished_tasks > 0: - time.sleep(10) + time.sleep(5) self.logger.info("All timers have finished, signalling workers to exit.") self.stop() except Exception as e: @@ -575,7 +575,7 @@ def stop(self): count += 1 self.logger.info("All generators working/exited, joining output queue until it's empty.") self.outputQueue.join() - self.logger.info("All items fully processed, stopping.") + self.logger.info("All items fully processed. Cleaning up internal processes.") self.started = False self.stopping = False diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index 3c68248f..effcf4c1 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -182,7 +182,7 @@ def real_run(self): self.sample.config.generatorWorkers, count)) else: # Spawn workers at the beginning of job rather than wait for next interval - self.logger.info("Start '%d' generatorWorkers for sample '%s'" % + self.logger.info("Starting '%d' generatorWorkers for sample '%s'" % (self.sample.config.generatorWorkers, self.sample.name)) for worker_id in range(self.config.generatorWorkers): # self.generatorPlugin is only an instance, now we need a real plugin. Make a copy of @@ -199,8 +199,8 @@ def real_run(self): try: self.generatorQueue.put(genPlugin) self.executions += 1 - self.logger.info(("Worker# {0}: Put {1} MB of events in queue for sample '{2}'" + - "with et '{3}' and lt '{4}'").format( + self.logger.debug(("Worker# {0}: Put {1} MB of events in queue for sample '{2}'" + + "with et '{3}' and lt '{4}'").format( worker_id, round((count / 1024.0 / 1024), 4), self.sample.name, et, lt)) except Full: diff --git a/splunk_eventgen/lib/plugins/output/httpevent.py b/splunk_eventgen/lib/plugins/output/httpevent.py index 1d2488f6..f724f34d 100644 --- a/splunk_eventgen/lib/plugins/output/httpevent.py +++ b/splunk_eventgen/lib/plugins/output/httpevent.py @@ -58,7 +58,7 @@ def _setup_REST_workers(self, session=None, workers=10): if not session: session = Session() self.session = FuturesSession(session=session, executor=ThreadPoolExecutor(max_workers=workers)) - self.active_sessions = [] + self.active_session_info = [] @staticmethod def _urlencode(value): @@ -98,12 +98,13 @@ def updateConfig(self, config): 'outputMode httpevent but httpeventServers not specified for sample %s' % self._sample.name) # set default output mode to round robin if hasattr(self.config, 'httpeventOutputMode') and self.config.httpeventOutputMode: - self.httpeventoutputmode = config.httpeventOutputMode + self.httpeventoutputmode = self.config.httpeventOutputMode else: if hasattr(self._sample, 'httpeventOutputMode') and self._sample.httpeventOutputMode: self.httpeventoutputmode = self._sample.httpeventOutputMode else: self.httpeventoutputmode = 'roundrobin' + if hasattr(self.config, 'httpeventMaxPayloadSize') and self.config.httpeventMaxPayloadSize: self.httpeventmaxsize = self.config.httpeventMaxPayloadSize else: @@ -111,6 +112,15 @@ def updateConfig(self, config): self.httpeventmaxsize = self._sample.httpeventMaxPayloadSize else: self.httpeventmaxsize = 10000 + + if hasattr(self.config, 'httpeventAllowFailureCount') and self.config.httpeventAllowFailureCount: + self.httpeventAllowFailureCount = int(self.config.httpeventAllowFailureCount) + else: + if hasattr(self._sample, 'httpeventAllowFailureCount') and self._sample.httpeventAllowFailureCount: + self.httpeventAllowFailureCount = int(self._sample.httpeventAllowFailureCount) + else: + self.httpeventAllowFailureCount = 100 + self.logger.debug("Currentmax size: %s " % self.httpeventmaxsize) if isinstance(config.httpeventServers, str): self.httpeventServers = json.loads(config.httpeventServers) @@ -118,8 +128,7 @@ def updateConfig(self, config): self.httpeventServers = config.httpeventServers self.logger.debug("Setting up the connection pool for %s in %s" % (self._sample.name, self._app)) self.createConnections() - self.logger.debug("Pool created.") - self.logger.debug("Finished init of httpevent plugin.") + self.logger.debug("Pool created and finished init of httpevent plugin.") except Exception as e: self.logger.exception(str(e)) @@ -128,31 +137,20 @@ def createConnections(self): if self.httpeventServers: for server in self.httpeventServers.get('servers'): if not server.get('address'): - self.logger.error( - 'requested a connection to a httpevent server, but no address specified for sample %s' % - self._sample.name) raise ValueError( 'requested a connection to a httpevent server, but no address specified for sample %s' % self._sample.name) if not server.get('port'): - self.logger.error( - 'requested a connection to a httpevent server, but no port specified for server %s' % server) raise ValueError( 'requested a connection to a httpevent server, but no port specified for server %s' % server) if not server.get('key'): - self.logger.error( - 'requested a connection to a httpevent server, but no key specified for server %s' % server) raise ValueError( 'requested a connection to a httpevent server, but no key specified for server %s' % server) if not ((server.get('protocol') == 'http') or (server.get('protocol') == 'https')): - self.logger.error( - 'requested a connection to a httpevent server, but no protocol specified for server %s' % - server) raise ValueError( 'requested a connection to a httpevent server, but no protocol specified for server %s' % server) - self.logger.debug( - "Validation Passed, Creating a requests object for server: %s" % server.get('address')) + self.logger.debug("Validation Passed, Creating a requests object for server: %s" % server.get('address')) setserver = {} setserver['url'] = "%s://%s:%s/services/collector" % (server.get('protocol'), server.get('address'), @@ -182,32 +180,29 @@ def _sendHTTPEvents(self, payload): self.logger.debugv("stringpayload: %s " % stringpayload) else: self.logger.debug("Max size for payload hit, sending to splunk then continuing.") - try: - self._transmitEvents(stringpayload) - totalbytessent += len(stringpayload) - currentreadsize = 0 - stringpayload = targetline - except Exception as e: - self.logger.exception(str(e)) - raise e - else: - try: - totalbytessent += len(stringpayload) - self.logger.debug( - "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % - (totalbytessent, totalbytesexpected)) self._transmitEvents(stringpayload) - except Exception as e: - self.logger.exception(str(e)) - raise e + totalbytessent += len(stringpayload) + currentreadsize = targetlinesize + stringpayload = targetline + + totalbytessent += len(stringpayload) + self.logger.debug( + "End of for loop hit for sending events to splunk, total bytes sent: %s ---- out of %s -----" % + (totalbytessent, totalbytesexpected)) + self._transmitEvents(stringpayload) def _transmitEvents(self, payloadstring): targetServer = [] - self.logger.debugv("Transmission called with payloadstring: %s " % payloadstring) + self.logger.debug("Transmission called with payloadstring length: %s " % len(payloadstring)) + + if not self.serverPool: + raise Exception("No available servers exist. Please check your httpServers.") + if self.httpeventoutputmode == "mirror": targetServer = self.serverPool else: targetServer.append(random.choice(self.serverPool)) + for server in targetServer: self.logger.debug("Selected targetServer object: %s" % targetServer) url = server['url'] @@ -215,17 +210,45 @@ def _transmitEvents(self, payloadstring): headers['Authorization'] = server['header'] headers['content-type'] = 'application/json' try: - payloadsize = len(payloadstring) - # response = requests.post(url, data=payloadstring, headers=headers, verify=False) - self.active_sessions.append( - self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + session_info = list() + session_info.append(url) + session_info.append(self.session.post(url=url, data=payloadstring, headers=headers, verify=False)) + self.active_session_info.append(session_info) except Exception as e: - self.logger.error("Failed for exception: %s" % e) self.logger.error("Failed sending events to url: %s sourcetype: %s size: %s" % - (url, self.lastsourcetype, payloadsize)) - self.logger.debug( - "Failed sending events to url: %s headers: %s payload: %s" % (url, headers, payloadstring)) - raise e + (url, self.lastsourcetype, len(payloadstring))) + + def reset_count(self, url): + try: + self.config.httpeventServersCountdownMap[url] = self.httpeventAllowFailureCount + except: + pass + + def remove_requets_target(self, url): + httpeventServers = json.loads(self.config.httpeventServers) + + # If url fail more than specified count, we completely remove it from the pool. + try: + countdown_map = self.config.httpeventServersCountdownMap + except: + self.config.httpeventServersCountdownMap = {} + for i, server_info in enumerate(self.serverPool): + # URL is in format: https://2.2.2.2:8088/services/collector + self.config.httpeventServersCountdownMap[server_info.get('url', '')] = self.httpeventAllowFailureCount + countdown_map = self.config.httpeventServersCountdownMap + + for i, server_info in enumerate(httpeventServers.get('servers', [])): + target_url = '{}://{}:{}'.format(server_info.get('protocol', ''), server_info.get('address', ''), server_info.get('port', '')) + if target_url in url: + if countdown_map[url] <= 0: + del httpeventServers.get('servers')[i] + self.logger.warning("Cannot reach {}. Removing from the server pool".format(url)) + else: + countdown_map[url] -= 1 + self.logger.debug("Cannot reach {}. Lowering countdown to {}".format(url, countdown_map[url])) + self.config.httpeventServers = json.dumps(httpeventServers) + self._sample.httpeventServers = httpeventServers + self.config.httpeventServersCountdownMap = countdown_map def flush(self, q): self.logger.debug("Flush called on httpevent plugin") @@ -267,24 +290,19 @@ def flush(self, q): payload.append(payloadFragment) self.logger.debug("Finished processing events, sending all to splunk") self._sendHTTPEvents(payload) - if self.config.httpeventWaitResponse: - for session in self.active_sessions: - response = session.result() - if not response.raise_for_status(): - self.logger.debug("Payload successfully sent to httpevent server.") - else: - self.logger.error("Server returned an error while trying to send, response code: %s" % - response.status_code) - raise BadConnection( - "Server returned an error while sending, response code: %s" % response.status_code) - else: + if not self.config.httpeventWaitResponse: self.logger.debug("Ignoring response from HTTP server, leaving httpevent outputter") + else: + for session_info in self.active_session_info: + url, session = session_info[0], session_info[1] + try: + response = session.result(5) + self.reset_count(url) + self.logger.debug("Payload successfully sent to " + url) + except Exception as e: + self.remove_requets_target(url) except Exception as e: - self.logger.error('failed indexing events, reason: %s ' % e) - - def _setup_logging(self): - self.logger = logging.getLogger('eventgen_httpeventout') - + self.logger.error('Failed sending events, reason: %s ' % e) def load(): """Returns an instance of the plugin""" From cba971cb933ebb35c901951cfa3e07733cb8b74d Mon Sep 17 00:00:00 2001 From: Guodong Wang Date: Wed, 5 Jun 2019 10:42:04 +0800 Subject: [PATCH 68/68] fix #166 (#192) --- splunk_eventgen/__main__.py | 3 ++ splunk_eventgen/eventgen_core.py | 10 +++- splunk_eventgen/lib/eventgentimer.py | 19 ++++--- splunk_eventgen/lib/outputplugin.py | 3 ++ splunk_eventgen/lib/plugins/output/counter.py | 49 +++++++++++++++++++ 5 files changed, 76 insertions(+), 8 deletions(-) create mode 100755 splunk_eventgen/lib/plugins/output/counter.py diff --git a/splunk_eventgen/__main__.py b/splunk_eventgen/__main__.py index 0437cc46..63c829ec 100644 --- a/splunk_eventgen/__main__.py +++ b/splunk_eventgen/__main__.py @@ -53,6 +53,9 @@ def parse_args(): help="Use multiprocesing instead of threading") generate_subparser.add_argument("--profiler", action="store_true", help="Turn on cProfiler") generate_subparser.add_argument("--log-path", type=str, default="{0}/logs".format(FILE_LOCATION)) + generate_subparser.add_argument( + "--generator-queue-size", type=int, default=500, help="the max queue size for the " + "generator queue, timer object puts all the generator tasks into this queue, default max size is 500") # Build subparser build_subparser = subparsers.add_parser('build', help="Will build different forms of sa-eventgen") build_subparser.add_argument("--mode", type=str, default="splunk-app", diff --git a/splunk_eventgen/eventgen_core.py b/splunk_eventgen/eventgen_core.py index 7b20bc46..7be8feec 100644 --- a/splunk_eventgen/eventgen_core.py +++ b/splunk_eventgen/eventgen_core.py @@ -75,9 +75,15 @@ def __init__(self, args=None): # attach to the logging queue self.logger.info("Logging Setup Complete.") + self._generator_queue_size = getattr(self.args, 'generator_queue_size', 500) + if self._generator_queue_size < 0: + self._generator_queue_size = 0 + self.logger.info("set generator queue size to %d", self._generator_queue_size) + if self.args and 'configfile' in self.args and self.args.configfile: self._load_config(self.args.configfile, args=args) + def _load_config(self, configfile, **kwargs): ''' This method will use a configfile and set self.confg as a processeded config object, @@ -225,11 +231,11 @@ def _create_generator_pool(self, workercount=20): self.logging_pool = Thread(target=self.logger_thread, args=(self.loggingQueue, ), name="LoggerThread") self.logging_pool.start() # since we're now in multiprocess, we need to use better queues. - self.workerQueue = multiprocessing.JoinableQueue(maxsize=500) + self.workerQueue = multiprocessing.JoinableQueue(maxsize=self._generator_queue_size) self.genconfig = self.manager.dict() self.genconfig["stopping"] = False else: - self.workerQueue = Queue(maxsize=500) + self.workerQueue = Queue(maxsize=self._generator_queue_size) worker_threads = workercount if hasattr(self.config, 'outputCounter') and self.config.outputCounter: self.output_counters = [] diff --git a/splunk_eventgen/lib/eventgentimer.py b/splunk_eventgen/lib/eventgentimer.py index effcf4c1..095ff6fb 100644 --- a/splunk_eventgen/lib/eventgentimer.py +++ b/splunk_eventgen/lib/eventgentimer.py @@ -80,7 +80,12 @@ def predict_event_size(self): except TypeError: self.logger.error("Error loading sample file for sample '%s'" % self.sample.name) return - return len(self.sample.sampleDict[0]['_raw']) + total_len = sum([len(e['_raw']) for e in self.sample.sampleDict]) + sample_count = len(self.sample.sampleDict) + if sample_count == 0: + return 0 + else: + return total_len/sample_count def run(self): """ @@ -135,9 +140,9 @@ def real_run(self): elif char != "-": backfillletter += char backfillearliest = timeParserTimeMath(plusminus=mathsymbol, num=backfillnumber, unit=backfillletter, - ret=realtime) + ret=realtime) while backfillearliest < realtime: - if self.executions == int(self.end): + if self.end and self.executions == int(self.end): self.logger.info("End executions %d reached, ending generation of sample '%s'" % (int( self.end), self.sample.name)) break @@ -148,11 +153,13 @@ def real_run(self): genPlugin.updateConfig(config=self.config, outqueue=self.outputQueue) genPlugin.updateCounts(count=count, start_time=et, end_time=lt) try: - self.generatorQueue.put(genPlugin) + self.generatorQueue.put(genPlugin, True, 3) self.executions += 1 + backfillearliest = lt except Full: - self.logger.warning("Generator Queue Full. Skipping current generation.") - backfillearliest = lt + self.logger.warning("Generator Queue Full. Reput the backfill generator task later. %d backfill generators are dispatched.", self.executions) + backfillearliest = et + realtime = self.sample.now(realnow=True) self.sample.backfilldone = True else: diff --git a/splunk_eventgen/lib/outputplugin.py b/splunk_eventgen/lib/outputplugin.py index e3bb2fb3..50a0a163 100644 --- a/splunk_eventgen/lib/outputplugin.py +++ b/splunk_eventgen/lib/outputplugin.py @@ -55,7 +55,10 @@ def run(self): if self.output_counter is not None: self.output_counter.collect(len(self.events), sum([len(e['_raw']) for e in self.events])) self.events = None + self._output_end() + def _output_end(self): + pass def load(): return OutputPlugin diff --git a/splunk_eventgen/lib/plugins/output/counter.py b/splunk_eventgen/lib/plugins/output/counter.py new file mode 100755 index 00000000..767bed9a --- /dev/null +++ b/splunk_eventgen/lib/plugins/output/counter.py @@ -0,0 +1,49 @@ +import logging +import datetime +import pprint +import sys + +from outputplugin import OutputPlugin + + +class CounterOutputPlugin(OutputPlugin): + name = 'counter' + MAXQUEUELENGTH = 1000 + useOutputQueue = True + + dataSizeHistogram = {} + eventCountHistogram = {} + flushCount = 0 + lastPrintAt = 0 + + def __init__(self, sample, output_counter=None): + OutputPlugin.__init__(self, sample, output_counter) + + def flush(self, q): + CounterOutputPlugin.flushCount += 1 + for e in q: + ts = datetime.datetime.fromtimestamp(int(e['_time'])) + text = e['_raw'] + day = ts.strftime('%Y-%m-%d') + CounterOutputPlugin.dataSizeHistogram[day] = CounterOutputPlugin.dataSizeHistogram.get(day, 0) + len(text) + CounterOutputPlugin.eventCountHistogram[day] = CounterOutputPlugin.eventCountHistogram.get(day, 0) + 1 + + def _output_end(self): + if CounterOutputPlugin.flushCount - CounterOutputPlugin.lastPrintAt > 0: + self._print_info('----- print the output histogram -----') + self._print_info('--- data size histogram ---') + self._print_info(pprint.pformat(CounterOutputPlugin.dataSizeHistogram)) + self._print_info('--- event count histogram ---') + self._print_info(pprint.pformat(CounterOutputPlugin.eventCountHistogram)) + CounterOutputPlugin.lastPrintAt = CounterOutputPlugin.flushCount + + def _print_info(self, msg): + print >> sys.stderr, '{} {}'.format(datetime.datetime.now(), msg) + + def _setup_logging(self): + self.logger = logging.getLogger('eventgen_counter_out') + + +def load(): + """Returns an instance of the plugin""" + return CounterOutputPlugin